From 677ee497874e8a6f8c3bb49ca46dae61615553cd Mon Sep 17 00:00:00 2001 From: Mark Golden Date: Fri, 31 Jan 2025 12:48:09 +0000 Subject: [PATCH 001/100] testing ios build --- client/Map.js | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/client/Map.js b/client/Map.js index 0715af5..253852c 100644 --- a/client/Map.js +++ b/client/Map.js @@ -107,6 +107,7 @@ export default function MapScreen({ navigation }) { { +// const origin = {latitude: 53.3400, longitude: -6.2550 }; +// const destination = { latitude: 53.3400, longitude: -6.2550}; + +// return ( +// +// +// +// +// ); +// }; + + + + + + + + const styles = StyleSheet.create({ container: { flex: 1, From 37ca1d40fe1ee0a413a3eecffd6c932fbed4b55e Mon Sep 17 00:00:00 2001 From: kahern7 Date: Fri, 31 Jan 2025 13:00:28 +0000 Subject: [PATCH 002/100] Initial test files --- server/main.py | 6 ++++++ tests/__init__.py | 0 tests/client.py | 32 ++++++++++++++++++++++++++++++++ tests/server.py | 31 +++++++++++++++++++++++++++++++ 4 files changed, 69 insertions(+) create mode 100644 tests/__init__.py create mode 100644 tests/client.py create mode 100644 tests/server.py diff --git a/server/main.py b/server/main.py index 0932918..cce0e45 100644 --- a/server/main.py +++ b/server/main.py @@ -33,7 +33,13 @@ def __init__(self): # Login function #self.login_logic.handle_login() + def configure_logging(self): + """configure logging in server + + Returns: + logging object: logging object + """ logging.basicConfig( level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s", diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/client.py b/tests/client.py new file mode 100644 index 0000000..b77ecd6 --- /dev/null +++ b/tests/client.py @@ -0,0 +1,32 @@ +import asyncio +import websockets +import json + +SERVER_URL = "ws://127.0.0.1:8000/ws/" # WebSocket server URL + +async def send_message(username): + async with websockets.connect(SERVER_URL + username) as websocket: + print(f"Connected as {username}!") + + async def receive_messages(): + """Handles incoming messages.""" + while True: + try: + response = await websocket.recv() + message = json.loads(response) + print(f"\n📩 New message from {message['sender']}: {message['content']}") + except websockets.exceptions.ConnectionClosed: + print("Disconnected from server.") + break + + asyncio.create_task(receive_messages()) # Start listening for messages + + while True: + receiver = input("Enter recipient's name: ") + content = input("Enter message: ") + message = json.dumps({"sender": username, "receiver": receiver, "content": content}) + await websocket.send(message) + +if __name__ == "__main__": + user = input("Enter your username: ") + asyncio.run(send_message(user)) diff --git a/tests/server.py b/tests/server.py new file mode 100644 index 0000000..21786ba --- /dev/null +++ b/tests/server.py @@ -0,0 +1,31 @@ +# connect_to_db.py + +import pg8000 +from dotenv import load_dotenv +import os + +# Load environment variables from .env file +load_dotenv() + +# Database connection details +DB_HOST = os.getenv("DB_HOST") +DB_NAME = os.getenv("DB_NAME") +DB_USER = os.getenv("DB_USER") +DB_PASSWORD = os.getenv("DB_PASSWORD") +DB_PORT = int(os.getenv("DB_PORT")) + +try: + # Connect to the database + connection = pg8000.connect( + host=DB_HOST, + database=DB_NAME, + user=DB_USER, + password=DB_PASSWORD, + port=DB_PORT + ) + print("Connection successful!") +except Exception as e: + print("An error occurred while connecting to the database:", e) +finally: + if connection: + connection.close() \ No newline at end of file From 55647dab51f0f89bef00ec1035af898f7b02a75b Mon Sep 17 00:00:00 2001 From: Conor Powderly Date: Wed, 5 Feb 2025 10:19:40 +0000 Subject: [PATCH 003/100] DataBase connection Unit test --- tests/test_database_connection.py | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 tests/test_database_connection.py diff --git a/tests/test_database_connection.py b/tests/test_database_connection.py new file mode 100644 index 0000000..daa3833 --- /dev/null +++ b/tests/test_database_connection.py @@ -0,0 +1,42 @@ +import pytest +import pg8000 +from dotenv import load_dotenv +import os + +# Load environment variables from .env file +load_dotenv() + +@pytest.fixture +def db_credentials(monkeypatch): + """Mock database environment variables.""" + monkeypatch.setenv("DB_HOST", "localhost") # Change to your actual test DB host + monkeypatch.setenv("DB_NAME", "test_db") + monkeypatch.setenv("DB_USER", "test_user") + monkeypatch.setenv("DB_PASSWORD", "test_password") + monkeypatch.setenv("DB_PORT", "5432") + +def test_db_connection(db_credentials): + """Test database connection.""" + DB_HOST = os.getenv("DB_HOST") + DB_NAME = os.getenv("DB_NAME") + DB_USER = os.getenv("DB_USER") + DB_PASSWORD = os.getenv("DB_PASSWORD") + DB_PORT = int(os.getenv("DB_PORT")) + + connection = None + try: + connection = pg8000.connect( + host=DB_HOST, + database=DB_NAME, + user=DB_USER, + password=DB_PASSWORD, + port=DB_PORT + ) + assert connection is not None, "Connection failed" + assert connection.client_encoding is not None, "Invalid connection encoding" + except Exception as e: + pytest.fail(f"Database connection failed with error: {e}") + finally: + if connection: + connection.close() + assert connection is not None, "Connection should not be None" From 1a3caaa0749c6e30ec497addace506e65a811c9b Mon Sep 17 00:00:00 2001 From: FEguare <123463013+FEguare@users.noreply.github.com> Date: Wed, 5 Feb 2025 10:39:10 +0000 Subject: [PATCH 004/100] Sustainability tracking component, first iteration --- server/sustainability.py | 47 +++++++++++++++++++++++++++++++++++ server/test_sustainability.py | 39 +++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 server/sustainability.py create mode 100644 server/test_sustainability.py diff --git a/server/sustainability.py b/server/sustainability.py new file mode 100644 index 0000000..8d53c73 --- /dev/null +++ b/server/sustainability.py @@ -0,0 +1,47 @@ +from enum import Enum + + +class VehicleEnum(Enum): + Bus = 'b' + Car = 'c' + Luas = 'l' + Train = 't' + + +def calc_emissions(distance: float, vehicle_type: VehicleEnum) -> float: + """EF = E/A # EF => E = A * EF = emmisiions factor, E = total emissions, + A = activity level (km travelled) + + Args: + distance (float): distance travelled by vehicle in question + vehicle_type (VehicleEnum): type of vehicle in question + + Returns: + float: Kg of CO2 emitted + """ + + emission_factor = 0 + + if distance < 0: + return -1 + elif vehicle_type == 'b': + emission_factor = 25 + elif vehicle_type == 'c': + emission_factor = 102 + elif vehicle_type == 'l': + emission_factor = 5 + elif vehicle_type == 't': + emission_factor = 28 + else: + return -1 + + emissions = distance * emission_factor + + return emissions + + +def calc_scores(emissions_difference: float) -> float: + if emissions_difference < 0: + return -1 + + return round(emissions_difference / 100, 2) diff --git a/server/test_sustainability.py b/server/test_sustainability.py new file mode 100644 index 0000000..73b1ca3 --- /dev/null +++ b/server/test_sustainability.py @@ -0,0 +1,39 @@ +from sustainability import calc_emissions, calc_scores +import pytest + + +# Test Emissions calculating function + +def test_car_calc_emissions(): + assert calc_emissions(7, 'c') == 714 + + +def test_bus_calc_emissions(): + assert calc_emissions(7, 'b') == 175 + + +def test_train_calc_emissions(): + assert calc_emissions(7, 't') == 196 + + +def test_luas_calc_emissions(): + assert calc_emissions(7, 'l') == 35 + + +def test_invalidDistance_calc_emissions(): + assert calc_emissions(-7, 'c') == -1 + + +def test_invalid_Vehichle_calc_emissions(): + assert calc_emissions(7, 'x') == -1 + + +# Test score calculating function + + +def test_validInput_calc_scores(): + assert calc_scores(138.6) == 1.39 + + +def test_invalidInput_calc_scores(): + assert calc_scores(-1) == -1 From a8454f3387fc561c312dbc74f72934688f9f5519 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Thu, 6 Feb 2025 16:27:39 +0000 Subject: [PATCH 005/100] Basic Database Querying functional --- tests/server.py | 83 ++++++++++++++++++++++++++++++++++++------------- 1 file changed, 61 insertions(+), 22 deletions(-) diff --git a/tests/server.py b/tests/server.py index 21786ba..959806d 100644 --- a/tests/server.py +++ b/tests/server.py @@ -7,25 +7,64 @@ # Load environment variables from .env file load_dotenv() -# Database connection details -DB_HOST = os.getenv("DB_HOST") -DB_NAME = os.getenv("DB_NAME") -DB_USER = os.getenv("DB_USER") -DB_PASSWORD = os.getenv("DB_PASSWORD") -DB_PORT = int(os.getenv("DB_PORT")) - -try: - # Connect to the database - connection = pg8000.connect( - host=DB_HOST, - database=DB_NAME, - user=DB_USER, - password=DB_PASSWORD, - port=DB_PORT - ) - print("Connection successful!") -except Exception as e: - print("An error occurred while connecting to the database:", e) -finally: - if connection: - connection.close() \ No newline at end of file +class DataBase(): + def __init__(self): + # Database connection details + self.DB_HOST = os.getenv("DB_HOST") + self.DB_NAME = os.getenv("DB_NAME") + self.DB_USER = os.getenv("DB_USER") + self.DB_PASSWORD = os.getenv("DB_PASSWORD") + self.DB_PORT = int(os.getenv("DB_PORT")) + + def connect_db(self): + try: + # Connect to the database + self.connection = pg8000.connect( + host=self.DB_HOST, + database=self.DB_NAME, + user=self.DB_USER, + password=self.DB_PASSWORD, + port=self.DB_PORT + ) + print("Connection successful!") + + except Exception as e: + print("An error occurred:", e) + + def query_db(self): + # # Add to database + # query = """UPDATE contacts + # SET first_name = 'Keith' + # WHERE first_name = 'Alice'""" + # cursor.execute(query) + + # Query the database + cursor = self.connection.cursor() + query = "SELECT * FROM contacts;" + cursor.execute(query) + records = cursor.fetchall() + + # Print the results + print("Contacts:") + for record in records: + print(record) + + # Close the cursor + cursor.close() + + + def close_con(self): + # Close the connection + self.connection.close() + +def main(): + # Initiliase database class + db = DataBase() + + # Connect to db + db.connect_db() + db.query_db() + db.close_con() + +if __name__ == "__main__": + main() \ No newline at end of file From 52516bc269730fbb260689dae9e04e3636e0e78d Mon Sep 17 00:00:00 2001 From: kahern7 Date: Thu, 6 Feb 2025 16:34:58 +0000 Subject: [PATCH 006/100] Gitignored myvenv --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 66f8b78..0a63deb 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ *.pyc *.env + +tests/myvenv/ \ No newline at end of file From 85eb3344d20478ed0e5f460fffff9cc9f4d2e454 Mon Sep 17 00:00:00 2001 From: Conor Powderly Date: Thu, 6 Feb 2025 17:53:51 +0000 Subject: [PATCH 007/100] Database class --- tests/server.py | 89 ++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 74 insertions(+), 15 deletions(-) diff --git a/tests/server.py b/tests/server.py index 959806d..f3b5912 100644 --- a/tests/server.py +++ b/tests/server.py @@ -15,6 +15,7 @@ def __init__(self): self.DB_USER = os.getenv("DB_USER") self.DB_PASSWORD = os.getenv("DB_PASSWORD") self.DB_PORT = int(os.getenv("DB_PORT")) + self.connection = None def connect_db(self): try: @@ -30,27 +31,81 @@ def connect_db(self): except Exception as e: print("An error occurred:", e) - - def query_db(self): - # # Add to database - # query = """UPDATE contacts - # SET first_name = 'Keith' - # WHERE first_name = 'Alice'""" - # cursor.execute(query) - - # Query the database + + + def create_table(self, table_name: str, table_info: dict) -> None: + try: + cursor = self.connection.cursor() + query = f"""CREATE TABLE {table_name} (""" + + for key in table_info.keys(): + query += f"{key} {table_info[key]}," + query = query[0:-1] + query += ");" + cursor.execute(query) + cursor.close() + + #print(query) + except Exception as e: + print("An error occurred:", e) + + def add_entry(self, table_name, table_info, table_data): + cursor = self.connection.cursor() - query = "SELECT * FROM contacts;" + + query = f"""INSERT INTO {table_name} (""" + #TODO: Add check for lenght of data and table info dict.values + + for key in table_info.keys(): + query += f"""{key},""" + query = query[0:-1] + query += ") " + + query += """VALUES (""" + + for key in table: + query += f"""{key},""" + query = query[0:-1] + query += ") " + + + cursor.execute(query) + cursor.close() + + + query = f""" {f} (first_name, second_name) + VALUES ('Keith', 'Ahern')""" + + cursor.execute(query) + + query = "SELECT * FROM name;" cursor.execute(query) records = cursor.fetchall() # Print the results - print("Contacts:") + print("name:") for record in records: print(record) - - # Close the cursor cursor.close() + + + def query_db(self, tablename): + + try: + cursor = self.connection.cursor() + query = f"SELECT * FROM {tablename};" + cursor.execute(query) + records = cursor.fetchall() + + # Print the results + print("Contacts:") + for record in records: + print(record) + + # Close the cursor + cursor.close() + except Exception as e: + print("An error occurred:", e) def close_con(self): @@ -60,10 +115,14 @@ def close_con(self): def main(): # Initiliase database class db = DataBase() - + table_info = {"id": "SERIAL PRIMARY KEY", + "first_name": "VARCHAR(50)", + "second_name": "VARCHAR(50)"} + table_name = "testTable" # Connect to db db.connect_db() - db.query_db() + db.create_table(table_name, table_info) + db.query_db(table_name) db.close_con() if __name__ == "__main__": From a9a71c00cd8a75a6bc80c77dd523e168f82d0b80 Mon Sep 17 00:00:00 2001 From: Mark Golden Date: Fri, 7 Feb 2025 09:25:46 +0000 Subject: [PATCH 008/100] Update gitignore to exclude expo folders --- .expo/README.md | 15 --------------- .expo/settings.json | 8 -------- .gitignore | 1 + 3 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 .expo/README.md delete mode 100644 .expo/settings.json diff --git a/.expo/README.md b/.expo/README.md deleted file mode 100644 index fd146b4..0000000 --- a/.expo/README.md +++ /dev/null @@ -1,15 +0,0 @@ -> Why do I have a folder named ".expo" in my project? - -The ".expo" folder is created when an Expo project is started using "expo start" command. - -> What do the files contain? - -- "devices.json": contains information about devices that have recently opened this project. This is used to populate the "Development sessions" list in your development builds. -- "packager-info.json": contains port numbers and process PIDs that are used to serve the application to the mobile device/simulator. -- "settings.json": contains the server configuration that is used to serve the application manifest. - -> Should I commit the ".expo" folder? - -No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine. - -Upon project creation, the ".expo" folder is already added to your ".gitignore" file. diff --git a/.expo/settings.json b/.expo/settings.json deleted file mode 100644 index 92bc513..0000000 --- a/.expo/settings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "hostType": "lan", - "lanType": "ip", - "dev": true, - "minify": false, - "urlRandomness": null, - "https": false -} diff --git a/.gitignore b/.gitignore index 66f8b78..7aad1d4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ *.pyc *.env +**/.expo/ From 5afa2a261180abe0fafc8017abb32d7adc70c51f Mon Sep 17 00:00:00 2001 From: kahern7 Date: Fri, 7 Feb 2025 11:01:46 +0000 Subject: [PATCH 009/100] Added extra databse functionality --- tests/server.py | 138 ++++++++++++++++++++++++++++++++++++------------ 1 file changed, 104 insertions(+), 34 deletions(-) diff --git a/tests/server.py b/tests/server.py index f3b5912..df0bc64 100644 --- a/tests/server.py +++ b/tests/server.py @@ -17,7 +17,13 @@ def __init__(self): self.DB_PORT = int(os.getenv("DB_PORT")) self.connection = None - def connect_db(self): + def connect_db(self) -> None: + """Initialise database connection + + Inputs: None + + Returns: None + """ try: # Connect to the database self.connection = pg8000.connect( @@ -32,8 +38,13 @@ def connect_db(self): except Exception as e: print("An error occurred:", e) - def create_table(self, table_name: str, table_info: dict) -> None: + """ Creates table in database + + Inputs: table name (str), table info (dict[columns, data type]) + + Returns: None + """ try: cursor = self.connection.cursor() query = f"""CREATE TABLE {table_name} (""" @@ -45,52 +56,73 @@ def create_table(self, table_name: str, table_info: dict) -> None: cursor.execute(query) cursor.close() - #print(query) except Exception as e: print("An error occurred:", e) - def add_entry(self, table_name, table_info, table_data): + def add_entry(self, table_name: str, table_data: dict) -> None: + """Add row to database with new entry + + Inputs: table name (str), table data (columns, user data) + Returns: None + """ cursor = self.connection.cursor() query = f"""INSERT INTO {table_name} (""" - #TODO: Add check for lenght of data and table info dict.values - for key in table_info.keys(): + # Insert column names + for key in table_data.keys(): query += f"""{key},""" - query = query[0:-1] - query += ") " - - query += """VALUES (""" + + query = query[0:-1] + query += ") VALUES (" - for key in table: - query += f"""{key},""" - query = query[0:-1] - query += ") " + # Insert entry values for each column + for value in table_data.values(): + query += f"""'{value}',""" + query = query[0:-1] + query += ");" - cursor.execute(query) - cursor.close() + cursor.execute(query) + cursor.close() + def remove_entry(self, table_name: str, username: str) -> None: + """Remove entry (entire row) from table - query = f""" {f} (first_name, second_name) - VALUES ('Keith', 'Ahern')""" - + Args: + table_name (str): name of table to be queried + username (str): username given as identifier in table + """ + cursor = self.connection.cursor() + query = f"DELETE FROM {table_name} WHERE username = '{username}';" cursor.execute(query) + cursor.close() - query = "SELECT * FROM name;" - cursor.execute(query) - records = cursor.fetchall() + def update_entry(self, table_name: str, user: str, column: str, data: str) -> None: + """Update entry of specific column - # Print the results - print("name:") - for record in records: - print(record) + Args: + table_name (str): name of table to be queried + user (str): username given as identifier in table + column (str): column to be edited in table + data (str): data to be inserted in new column entry + """ + cursor = self.connection.cursor() + + query = f"""UPDATE {table_name} + SET {column} = '{data}' + WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic + + cursor.execute(query) cursor.close() - - def query_db(self, tablename): + def print_table(self, tablename: str): + """Prints current selected table + Args: + tablename (str): Name of table to be printed + """ try: cursor = self.connection.cursor() query = f"SELECT * FROM {tablename};" @@ -104,25 +136,63 @@ def query_db(self, tablename): # Close the cursor cursor.close() + except Exception as e: print("An error occurred:", e) - def close_con(self): - # Close the connection + """Close the connection + """ self.connection.close() + def search_user(self, table_name: str, user: str) -> bool: + """Search for user in database + + Args: + table_name (str): Name of table to be queried + user (str): Name of user to search + + Returns: + bool: True if user found, False if user not found in table + """ + try: + cursor = self.connection.cursor() + + query = f"SELECT username FROM {table_name} WHERE username = '{user}';" + cursor.execute(query) + record = list(cursor.fetchall()) + cursor.close() + + if record: + return True + return False + except Exception as e: + print("An error occurred: ", e) + def main(): # Initiliase database class db = DataBase() - table_info = {"id": "SERIAL PRIMARY KEY", - "first_name": "VARCHAR(50)", - "second_name": "VARCHAR(50)"} + table_info = { + "id": "SERIAL PRIMARY KEY", + "username": "VARCHAR(50)", + "password": "VARCHAR(50)", + + } + table_data = { + "username": "Conor", + "password": "abc123" + } table_name = "testTable" + # Connect to db db.connect_db() db.create_table(table_name, table_info) - db.query_db(table_name) + db.add_entry(table_name, table_data) + db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) + # db.remove_entry(table_name, 'Conor') + db.update_entry(table_name, 'Keith', 'password', 'Roots123') + db.print_table(table_name) + print(db.search_user(table_name, 'Conor')) db.close_con() if __name__ == "__main__": From 62bacac718cd992cd1a913c1a35f22e29cf9b150 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Fri, 7 Feb 2025 12:24:59 +0000 Subject: [PATCH 010/100] Added extra comments of functions --- tests/server.py | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/tests/server.py b/tests/server.py index df0bc64..e0bb0b5 100644 --- a/tests/server.py +++ b/tests/server.py @@ -19,10 +19,6 @@ def __init__(self): def connect_db(self) -> None: """Initialise database connection - - Inputs: None - - Returns: None """ try: # Connect to the database @@ -38,12 +34,12 @@ def connect_db(self) -> None: except Exception as e: print("An error occurred:", e) - def create_table(self, table_name: str, table_info: dict) -> None: + def create_table(self, table_name: str, table_info: dict[str, str]) -> None: """ Creates table in database - Inputs: table name (str), table info (dict[columns, data type]) - - Returns: None + Args: + table name (str): name of table to be queried + table info (dict[str, str]): dict containing columns as keys and data type as column type """ try: cursor = self.connection.cursor() @@ -59,12 +55,12 @@ def create_table(self, table_name: str, table_info: dict) -> None: except Exception as e: print("An error occurred:", e) - def add_entry(self, table_name: str, table_data: dict) -> None: + def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: """Add row to database with new entry - Inputs: table name (str), table data (columns, user data) - - Returns: None + Args: + table name (str): name of table to be queried + table data (str, str): keys are columns, values are user data """ cursor = self.connection.cursor() From e75e5078f58447860030cf0e97ae5bd0d7a5e050 Mon Sep 17 00:00:00 2001 From: FEguare <123463013+FEguare@users.noreply.github.com> Date: Fri, 7 Feb 2025 13:02:22 +0000 Subject: [PATCH 011/100] Iteration 1 of sustainability dashboard component (TODO: fix timeframe switch) --- client/App.js | 2 + client/Map.js | 34 +++++-- client/SustainabilityDashboard.js | 156 ++++++++++++++++++++++++++++++ server/README.md | 17 +++- 4 files changed, 201 insertions(+), 8 deletions(-) create mode 100644 client/SustainabilityDashboard.js diff --git a/client/App.js b/client/App.js index 4ec7f71..6f02dbb 100644 --- a/client/App.js +++ b/client/App.js @@ -4,6 +4,7 @@ import { NavigationContainer } from '@react-navigation/native'; import LoginScreen from './LogIn'; import MapScreen from './Map'; import WeatherScreen from './Weather'; +import Dashboard from './SustainabilityDashboard' const Stack = createNativeStackNavigator(); @@ -14,6 +15,7 @@ export default function App() { + ); diff --git a/client/Map.js b/client/Map.js index 0715af5..55c302b 100644 --- a/client/Map.js +++ b/client/Map.js @@ -2,6 +2,7 @@ import React, { useState, useEffect, useRef } from 'react'; import { StyleSheet, View, Text, TouchableOpacity, Alert, Platform } from 'react-native'; import MapView, { Marker } from 'react-native-maps'; import * as Location from 'expo-location'; +import Dashboard from './SustainabilityDashboard'; export default function MapScreen({ navigation }) { const [webSocket, setWebSocket] = useState(null); @@ -129,13 +130,19 @@ export default function MapScreen({ navigation }) { Send Location navigation.navigate('LoginScreen')} > Log In navigation.navigate('Dashboard')} + > + Sustainability Dashboard + + navigation.navigate('WeatherScreen')} > Weather @@ -159,8 +166,8 @@ const styles = StyleSheet.create({ }, sendButton: { position: 'absolute', - bottom: 20, - left: '50%', + bottom: 15, + left: '80%', transform: [{ translateX: -50 }], backgroundColor: '#007bff', paddingVertical: 10, @@ -172,7 +179,7 @@ const styles = StyleSheet.create({ fontWeight: 'bold', textAlign: 'center', }, - TouchableOpacity: { + loginButton: { position: 'absolute', alignItems: 'center', left: '70%', @@ -187,7 +194,7 @@ const styles = StyleSheet.create({ shadowRadius: 5, elevation: 5, }, - TouchableOpacity1: { + weatherButton: { position: 'absolute', alignItems: 'center', left: '0%', @@ -202,6 +209,21 @@ const styles = StyleSheet.create({ shadowRadius: 5, elevation: 5, }, + dashboardButton: { + position: 'absolute', + alignItems: 'center', + left: '0%', + top: '93%', + backgroundColor: '#007bff', + paddingVertical: 10, + paddingHorizontal: 10, + borderRadius: 10, + shadowColor: '#000', + shadowOpacity: 0.2, + shadowOffset: { width: 0, height: 2 }, + shadowRadius: 5, + elevation: 5, + }, error: { flex: 1, textAlign: 'center', diff --git a/client/SustainabilityDashboard.js b/client/SustainabilityDashboard.js new file mode 100644 index 0000000..b07e050 --- /dev/null +++ b/client/SustainabilityDashboard.js @@ -0,0 +1,156 @@ +import { + LineChart, + PieChart +} from "react-native-chart-kit"; +import { StyleSheet, TouchableOpacity, Text } from 'react-native'; + +// Dummy pie chart data +const data = [ + { + name: "Bus", + emissions: 20, + color: "#e0ac2b", + legendFontColor: "#7F7F7F", + legendFontSize: 15 + }, + { + name: "Luas", + emissions: 34, + color: "#e85252", + legendFontColor: "#7F7F7F", + legendFontSize: 15 + }, + { + name: "Train", + emissions: 28, + color: "#6689c6", + legendFontColor: "#7F7F7F", + legendFontSize: 15 + }, + { + name: "Walk", + emissions: 45, + color: "#9a6fb0", + legendFontColor: "#7F7F7F", + legendFontSize: 15 + }, + { + name: "Cycle", + emissions: 75, + color: "#a53253", + legendFontColor: "#7F7F7F", + legendFontSize: 15 + } +]; + +// Dummy line chart data - year +const yearData_lineGraph = { + labels: ["January", "February", "March", "April", "May", "June"], + datasets: [ + { + data: [455, 896, 231, 473, 147, 369], + color: (opacity = 1) => `rgba(7, 32, 114, ${opacity})`, + strokeWidth: 2 + } + ], + legend: ["Rainy Days"], + }; + +// Dummy line chart data - month +const monthData_lineGraph = { + labels: ["Week 1", "Week 2", "Week 3", "Week 4"], + datasets: [ + { + data: [20, 45, 28, 80], + color: (opacity = 1) => `rgba(7, 32, 114, ${opacity})`, + strokeWidth: 2 + } + ], + legend: ["Rainy Days"], +}; + +// chart configuration (for chart kit) +const chartConfig = { + backgroundGradientFrom: "#1E2923", + backgroundGradientFromOpacity: 0, + backgroundGradientTo: "#08130D", + backgroundGradientToOpacity: 0, + color: (opacity = 1) => `rgba(91, 87, 89, ${opacity})`, + strokeWidth: 2, + useShadowColorFromDataset: false +}; + +export default function Dashboard({ navigation }) { + // this needs to be updated reactively, perhaps using usestate + let lineGraphData = yearData_lineGraph; + + const switchTimeframe = (time_frame) => { + + if (time_frame == 'm'){ + lineGraphData = monthData_lineGraph; + } + else if(time_frame == 'y'){ + lineGraphData = yearData_lineGraph; + } + }; + + return ( + <> + + + + Month + + + Year + + + ) + } + +const styles = StyleSheet.create({ + lineChart: { + position: 'absolute', + bottom: 40, + right: '0%', + paddingVertical: 10, + paddingHorizontal: 20, + borderRadius: 10, + }, + monthButton: { + position: 'absolute', + bottom: 15, + left: '80%', + transform: [{ translateX: -50 }], + backgroundColor: '#007bff', + paddingVertical: 10, + paddingHorizontal: 20, + borderRadius: 10, + }, + yearButton: { + position: 'absolute', + bottom: 15, + left: '20%', + transform: [{ translateX: -50 }], + backgroundColor: '#007bff', + paddingVertical: 10, + paddingHorizontal: 20, + borderRadius: 10, + } +}) \ No newline at end of file diff --git a/server/README.md b/server/README.md index 8e30999..2a479da 100644 --- a/server/README.md +++ b/server/README.md @@ -13,8 +13,21 @@ python main.py Do the following from the server directory: ```bash -docker build -t server . -docker run -p 8000:8000 server +docker build -t {image name} . +docker run -p 8000:8000 {image name} +``` +To run an existing container: +```bash +docker start {container ID or name} +``` +To stop an existing container from running: +```bash +docker stop {container ID or name} +``` + +\* To list all containers: +```bash +docker ps ``` ### APIs From 1e4910e298841478acbee6c2de9fb3678ac1a753 Mon Sep 17 00:00:00 2001 From: Conor Powderly Date: Fri, 7 Feb 2025 13:31:32 +0000 Subject: [PATCH 012/100] database class completed --- tests/server.py => server/Database_class.py | 0 tests/Database_class.py | 195 ++++++++++++++++++++ tests/client.py | 32 ---- 3 files changed, 195 insertions(+), 32 deletions(-) rename tests/server.py => server/Database_class.py (100%) create mode 100644 tests/Database_class.py delete mode 100644 tests/client.py diff --git a/tests/server.py b/server/Database_class.py similarity index 100% rename from tests/server.py rename to server/Database_class.py diff --git a/tests/Database_class.py b/tests/Database_class.py new file mode 100644 index 0000000..e0bb0b5 --- /dev/null +++ b/tests/Database_class.py @@ -0,0 +1,195 @@ +# connect_to_db.py + +import pg8000 +from dotenv import load_dotenv +import os + +# Load environment variables from .env file +load_dotenv() + +class DataBase(): + def __init__(self): + # Database connection details + self.DB_HOST = os.getenv("DB_HOST") + self.DB_NAME = os.getenv("DB_NAME") + self.DB_USER = os.getenv("DB_USER") + self.DB_PASSWORD = os.getenv("DB_PASSWORD") + self.DB_PORT = int(os.getenv("DB_PORT")) + self.connection = None + + def connect_db(self) -> None: + """Initialise database connection + """ + try: + # Connect to the database + self.connection = pg8000.connect( + host=self.DB_HOST, + database=self.DB_NAME, + user=self.DB_USER, + password=self.DB_PASSWORD, + port=self.DB_PORT + ) + print("Connection successful!") + + except Exception as e: + print("An error occurred:", e) + + def create_table(self, table_name: str, table_info: dict[str, str]) -> None: + """ Creates table in database + + Args: + table name (str): name of table to be queried + table info (dict[str, str]): dict containing columns as keys and data type as column type + """ + try: + cursor = self.connection.cursor() + query = f"""CREATE TABLE {table_name} (""" + + for key in table_info.keys(): + query += f"{key} {table_info[key]}," + query = query[0:-1] + query += ");" + cursor.execute(query) + cursor.close() + + except Exception as e: + print("An error occurred:", e) + + def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: + """Add row to database with new entry + + Args: + table name (str): name of table to be queried + table data (str, str): keys are columns, values are user data + """ + cursor = self.connection.cursor() + + query = f"""INSERT INTO {table_name} (""" + + # Insert column names + for key in table_data.keys(): + query += f"""{key},""" + + query = query[0:-1] + query += ") VALUES (" + + # Insert entry values for each column + for value in table_data.values(): + query += f"""'{value}',""" + query = query[0:-1] + query += ");" + + + cursor.execute(query) + cursor.close() + + def remove_entry(self, table_name: str, username: str) -> None: + """Remove entry (entire row) from table + + Args: + table_name (str): name of table to be queried + username (str): username given as identifier in table + """ + cursor = self.connection.cursor() + query = f"DELETE FROM {table_name} WHERE username = '{username}';" + cursor.execute(query) + cursor.close() + + def update_entry(self, table_name: str, user: str, column: str, data: str) -> None: + """Update entry of specific column + + Args: + table_name (str): name of table to be queried + user (str): username given as identifier in table + column (str): column to be edited in table + data (str): data to be inserted in new column entry + """ + cursor = self.connection.cursor() + + query = f"""UPDATE {table_name} + SET {column} = '{data}' + WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic + + cursor.execute(query) + cursor.close() + + def print_table(self, tablename: str): + """Prints current selected table + + Args: + tablename (str): Name of table to be printed + """ + try: + cursor = self.connection.cursor() + query = f"SELECT * FROM {tablename};" + cursor.execute(query) + records = cursor.fetchall() + + # Print the results + print("Contacts:") + for record in records: + print(record) + + # Close the cursor + cursor.close() + + except Exception as e: + print("An error occurred:", e) + + def close_con(self): + """Close the connection + """ + self.connection.close() + + def search_user(self, table_name: str, user: str) -> bool: + """Search for user in database + + Args: + table_name (str): Name of table to be queried + user (str): Name of user to search + + Returns: + bool: True if user found, False if user not found in table + """ + try: + cursor = self.connection.cursor() + + query = f"SELECT username FROM {table_name} WHERE username = '{user}';" + cursor.execute(query) + record = list(cursor.fetchall()) + cursor.close() + + if record: + return True + return False + except Exception as e: + print("An error occurred: ", e) + +def main(): + # Initiliase database class + db = DataBase() + table_info = { + "id": "SERIAL PRIMARY KEY", + "username": "VARCHAR(50)", + "password": "VARCHAR(50)", + + } + table_data = { + "username": "Conor", + "password": "abc123" + } + table_name = "testTable" + + # Connect to db + db.connect_db() + db.create_table(table_name, table_info) + db.add_entry(table_name, table_data) + db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) + # db.remove_entry(table_name, 'Conor') + db.update_entry(table_name, 'Keith', 'password', 'Roots123') + db.print_table(table_name) + print(db.search_user(table_name, 'Conor')) + db.close_con() + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/tests/client.py b/tests/client.py deleted file mode 100644 index b77ecd6..0000000 --- a/tests/client.py +++ /dev/null @@ -1,32 +0,0 @@ -import asyncio -import websockets -import json - -SERVER_URL = "ws://127.0.0.1:8000/ws/" # WebSocket server URL - -async def send_message(username): - async with websockets.connect(SERVER_URL + username) as websocket: - print(f"Connected as {username}!") - - async def receive_messages(): - """Handles incoming messages.""" - while True: - try: - response = await websocket.recv() - message = json.loads(response) - print(f"\n📩 New message from {message['sender']}: {message['content']}") - except websockets.exceptions.ConnectionClosed: - print("Disconnected from server.") - break - - asyncio.create_task(receive_messages()) # Start listening for messages - - while True: - receiver = input("Enter recipient's name: ") - content = input("Enter message: ") - message = json.dumps({"sender": username, "receiver": receiver, "content": content}) - await websocket.send(message) - -if __name__ == "__main__": - user = input("Enter your username: ") - asyncio.run(send_message(user)) From 999b43980c477010aa5ffebe1da03e26f8afd5a9 Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Mon, 10 Feb 2025 11:42:05 +0000 Subject: [PATCH 013/100] setup initial users table --- server/Database_class.py | 53 +++++++++++++++++++++++++--------------- 1 file changed, 33 insertions(+), 20 deletions(-) diff --git a/server/Database_class.py b/server/Database_class.py index e0bb0b5..3d469fa 100644 --- a/server/Database_class.py +++ b/server/Database_class.py @@ -7,6 +7,7 @@ # Load environment variables from .env file load_dotenv() + class DataBase(): def __init__(self): # Database connection details @@ -43,7 +44,7 @@ def create_table(self, table_name: str, table_info: dict[str, str]) -> None: """ try: cursor = self.connection.cursor() - query = f"""CREATE TABLE {table_name} (""" + query = f"""CREATE TABLE {table_name} (""" for key in table_info.keys(): query += f"{key} {table_info[key]}," @@ -53,35 +54,37 @@ def create_table(self, table_name: str, table_info: dict[str, str]) -> None: cursor.close() except Exception as e: - print("An error occurred:", e) + print("An error occurred:", e) def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: """Add row to database with new entry - + Args: table name (str): name of table to be queried table data (str, str): keys are columns, values are user data """ cursor = self.connection.cursor() - query = f"""INSERT INTO {table_name} (""" + query = f"""INSERT INTO {table_name} (""" # Insert column names for key in table_data.keys(): query += f"""{key},""" - + query = query[0:-1] query += ") VALUES (" # Insert entry values for each column for value in table_data.values(): - query += f"""'{value}',""" + if "ARRAY" in value: + query += f"""{value},""" + else: + query += f"""'{value}',""" query = query[0:-1] query += ");" - cursor.execute(query) - cursor.close() + cursor.close() def remove_entry(self, table_name: str, username: str) -> None: """Remove entry (entire row) from table @@ -108,7 +111,7 @@ def update_entry(self, table_name: str, user: str, column: str, data: str) -> No query = f"""UPDATE {table_name} SET {column} = '{data}' - WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic + WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic cursor.execute(query) cursor.close() @@ -126,15 +129,15 @@ def print_table(self, tablename: str): records = cursor.fetchall() # Print the results - print("Contacts:") + print(f"{tablename}:") for record in records: print(record) - + # Close the cursor cursor.close() except Exception as e: - print("An error occurred:", e) + print("An error occurred:", e) def close_con(self): """Close the connection @@ -165,31 +168,41 @@ def search_user(self, table_name: str, user: str) -> bool: except Exception as e: print("An error occurred: ", e) + def main(): - # Initiliase database class + # Initialise database class db = DataBase() + + table_name = "user_table" table_info = { "id": "SERIAL PRIMARY KEY", "username": "VARCHAR(50)", "password": "VARCHAR(50)", - + "friends_list": "VARCHAR[]", + "pending_friends": "VARCHAR[]", + "sus_score": "VARCHAR(50)", + "ip": "VARCHAR(50)", } + table_data = { "username": "Conor", - "password": "abc123" + "password": "abc123", + "friends_list": "ARRAY['mark', 'gunjan', 'fiona']", + "pending_friends": "ARRAY['jason', 'keith', 'cormac']", + "sus_score": "100" } - table_name = "testTable" # Connect to db db.connect_db() db.create_table(table_name, table_info) db.add_entry(table_name, table_data) - db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) + # db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) # db.remove_entry(table_name, 'Conor') - db.update_entry(table_name, 'Keith', 'password', 'Roots123') + # db.update_entry(table_name, 'Keith', 'password', 'Roots123') db.print_table(table_name) - print(db.search_user(table_name, 'Conor')) + # print(db.search_user(table_name, 'Conor')) db.close_con() + if __name__ == "__main__": - main() \ No newline at end of file + main() From 071ea09b53f83ea2a8e0f8c415a91acec58d4d0e Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Mon, 10 Feb 2025 11:45:15 +0000 Subject: [PATCH 014/100] started adding networking class --- server/networking.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 server/networking.py diff --git a/server/networking.py b/server/networking.py new file mode 100644 index 0000000..3fa2485 --- /dev/null +++ b/server/networking.py @@ -0,0 +1,4 @@ +from Database_class import DataBase + +class Networking(): + \ No newline at end of file From 91d4a644fe16f7361015c48fbfaf587f4b8d9a58 Mon Sep 17 00:00:00 2001 From: Mark Golden Date: Mon, 10 Feb 2025 11:48:23 +0000 Subject: [PATCH 015/100] reorganising files for CI/CD --- server/assets/GTFS_Realtime/agency.txt | 8 - server/assets/GTFS_Realtime/calendar.txt | 165 - .../assets/GTFS_Realtime/calendar_dates.txt | 473 - server/assets/GTFS_Realtime/feed_info.txt | 2 - server/assets/GTFS_Realtime/routes.txt | 435 - server/assets/GTFS_Realtime/trips.txt | 160019 --------------- {tests => server/tests}/__init__.py | 0 .../tests}/test_database_connection.py | 0 tests/Database_class.py | 195 - 9 files changed, 161297 deletions(-) delete mode 100644 server/assets/GTFS_Realtime/agency.txt delete mode 100644 server/assets/GTFS_Realtime/calendar.txt delete mode 100644 server/assets/GTFS_Realtime/calendar_dates.txt delete mode 100644 server/assets/GTFS_Realtime/feed_info.txt delete mode 100644 server/assets/GTFS_Realtime/routes.txt delete mode 100644 server/assets/GTFS_Realtime/trips.txt rename {tests => server/tests}/__init__.py (100%) rename {tests => server/tests}/test_database_connection.py (100%) delete mode 100644 tests/Database_class.py diff --git a/server/assets/GTFS_Realtime/agency.txt b/server/assets/GTFS_Realtime/agency.txt deleted file mode 100644 index 9026e85..0000000 --- a/server/assets/GTFS_Realtime/agency.txt +++ /dev/null @@ -1,8 +0,0 @@ -agency_id,agency_name,agency_url,agency_timezone -7778006,Go-Ahead Ireland,https://www.goaheadireland.ie/,Europe/London -7778008,Bus Éireann Waterford,https://www.buseireann.ie,Europe/London -7778014,LUAS,https://luas.ie,Europe/London -7778017,Iarnród Éireann / Irish Rail,https://www.irishrail.ie/en-ie/,Europe/London -7778019,Bus Átha Cliath – Dublin Bus,https://www.dublinbus.ie/,Europe/London -7778020,Bus Éireann,https://buseireann.ie,Europe/London -7778021,Go-Ahead Ireland,https://www.goaheadireland.ie/,Europe/London diff --git a/server/assets/GTFS_Realtime/calendar.txt b/server/assets/GTFS_Realtime/calendar.txt deleted file mode 100644 index af915fc..0000000 --- a/server/assets/GTFS_Realtime/calendar.txt +++ /dev/null @@ -1,165 +0,0 @@ -service_id,monday,tuesday,wednesday,thursday,friday,saturday,sunday,start_date,end_date -2,1,0,0,0,0,0,0,20241118,20241118 -23,0,0,0,0,0,1,0,20241123,20241207 -68,1,1,1,1,1,0,0,20241118,20241129 -69,0,0,0,0,0,1,0,20241123,20241130 -70,0,0,0,0,1,0,0,20241122,20241129 -71,1,1,1,1,1,0,1,20241118,20241201 -92,0,1,0,0,0,0,0,20241119,20241119 -93,0,0,1,0,0,0,0,20241120,20241120 -94,0,0,0,1,0,0,0,20241121,20241121 -95,0,0,0,0,1,0,0,20241122,20241122 -96,0,0,0,0,0,1,0,20241123,20241123 -110,0,0,0,0,0,0,1,20241124,20250525 -115,0,0,0,0,0,0,0,20250203,20250505 -126,0,0,0,0,1,0,0,20241122,20241206 -131,1,0,0,0,0,0,0,20250106,20250630 -132,0,1,0,0,0,0,0,20250107,20250624 -133,0,0,1,0,0,0,0,20241120,20241218 -134,0,0,0,1,0,0,0,20241121,20250102 -135,0,0,0,0,1,0,0,20241122,20250103 -136,1,0,0,0,0,0,0,20241118,20241230 -137,0,1,0,0,0,0,0,20241119,20241231 -138,0,0,0,0,0,0,0,20241224,20241224 -139,0,0,1,0,0,0,0,20250108,20250625 -140,0,0,0,1,0,0,0,20250109,20250626 -141,0,0,0,0,1,0,0,20250110,20250627 -142,0,0,0,0,0,1,0,20241123,20250104 -143,0,0,0,0,0,1,0,20250111,20250628 -144,0,0,0,0,0,0,1,20250112,20250629 -145,0,0,0,0,0,0,1,20241124,20250105 -146,0,0,0,0,0,0,0,20241226,20241226 -205,1,1,1,1,1,0,0,20241118,20241122 -211,0,0,0,0,0,0,0,20241207,20241207 -214,0,0,0,0,0,1,0,20241130,20241130 -227,1,1,1,1,1,0,0,20241125,20250221 -228,0,0,0,0,0,1,0,20241130,20250222 -229,0,0,0,0,0,0,1,20241124,20250216 -251,0,0,0,0,0,0,1,20241124,20241124 -259,0,0,0,0,0,1,0,20241130,20250524 -260,1,0,0,0,0,0,0,20241125,20250519 -261,0,1,0,0,0,0,0,20241126,20250520 -262,0,0,1,0,0,0,0,20241127,20250521 -263,0,0,0,1,0,0,0,20241128,20250522 -264,0,0,0,0,1,0,0,20241129,20250523 -265,0,0,0,0,0,0,0,20241223,20250414 -266,0,0,0,0,0,0,0,20241224,20250422 -267,0,0,0,0,0,0,0,20241227,20250425 -268,0,0,0,0,0,0,0,20250102,20250424 -269,0,0,0,0,0,0,0,20250219,20250423 -270,0,0,0,0,0,0,1,20241124,20250518 -271,0,0,0,0,0,0,0,20250101,20250101 -272,1,0,0,0,0,0,0,20241125,20250526 -273,0,1,0,0,0,0,0,20241126,20250527 -274,0,0,1,0,0,0,0,20241127,20250528 -275,0,0,0,1,0,0,0,20241128,20250529 -276,0,0,0,0,1,0,0,20241129,20250530 -277,0,0,0,0,0,1,0,20241130,20250531 -278,0,0,0,0,0,0,1,20241124,20241201 -285,0,0,0,0,0,0,0,20241217,20250415 -286,0,0,0,0,0,0,0,20241218,20250416 -287,0,0,0,0,1,0,0,20241122,20250418 -288,0,0,0,0,0,0,0,20241121,20250417 -289,1,0,0,0,0,0,0,20241118,20250303 -290,0,1,0,0,0,0,0,20241119,20250304 -291,0,0,0,0,0,1,0,20241123,20250419 -292,0,0,1,0,0,0,0,20241120,20250305 -293,0,0,0,1,0,0,0,20241128,20250306 -294,0,0,0,0,1,0,0,20241227,20250307 -295,0,0,0,0,0,0,0,20241216,20250414 -296,0,0,0,0,0,1,0,20241228,20250308 -297,0,0,0,0,0,0,1,20241124,20250420 -314,1,1,1,1,1,0,0,20241119,20241206 -315,1,1,1,1,1,0,0,20241209,20250912 -316,0,0,0,0,0,1,0,20241214,20250913 -317,0,0,0,0,0,0,0,20241227,20241227 -318,0,0,0,0,0,0,0,20241230,20241231 -319,0,0,0,0,0,0,1,20241208,20250914 -320,0,0,0,0,0,0,0,20250203,20250203 -321,1,1,1,1,1,0,0,20241120,20241206 -322,1,1,1,1,1,0,0,20241119,20241206 -323,0,0,0,0,0,1,0,20241221,20250913 -324,0,0,0,0,0,0,0,20241214,20241214 -325,0,0,0,0,0,0,0,20241221,20241221 -326,1,1,1,1,1,0,0,20241209,20250912 -327,0,0,0,0,0,1,0,20241228,20250913 -328,0,0,0,0,0,0,0,20250118,20250118 -329,1,1,1,1,1,0,0,20241119,20241206 -330,0,0,0,0,0,0,0,20241203,20241203 -331,0,0,0,0,0,0,0,20241230,20241230 -332,0,0,0,0,0,0,0,20241231,20241231 -333,1,1,1,1,1,0,0,20241120,20241206 -334,1,1,1,1,1,0,0,20241209,20250912 -335,0,0,0,0,0,0,0,20241224,20241227 -336,1,1,1,1,1,0,0,20241209,20250912 -337,1,1,1,1,1,1,0,20241119,20241207 -338,1,1,1,1,1,1,0,20241209,20250913 -339,1,1,1,1,1,0,0,20241209,20250912 -340,1,1,1,1,1,0,0,20241119,20241207 -341,1,1,1,1,1,1,0,20241209,20250913 -342,0,0,0,0,0,0,1,20241201,20241201 -343,1,1,1,1,1,0,0,20241209,20250912 -344,1,1,1,1,1,1,0,20241209,20250913 -345,1,1,1,1,0,1,0,20241119,20241207 -346,1,1,1,1,0,1,0,20241209,20250913 -347,0,0,0,0,1,0,0,20241213,20250912 -348,1,1,1,1,1,1,0,20241119,20241207 -349,1,1,1,1,1,1,0,20241209,20250913 -350,1,1,1,1,0,0,0,20241119,20241205 -351,1,1,1,1,0,0,0,20241209,20250911 -352,1,1,1,1,1,0,0,20241209,20250912 -353,1,1,1,1,1,0,0,20241209,20250912 -354,0,1,1,1,1,0,0,20241119,20241206 -355,1,1,1,1,1,0,0,20241209,20250912 -356,0,0,0,0,0,1,0,20241130,20241207 -357,1,1,1,1,0,1,0,20241119,20241207 -358,0,0,0,0,1,0,0,20241213,20250912 -359,1,1,1,1,1,1,0,20241209,20250913 -360,0,0,0,0,0,0,0,20250104,20250104 -361,0,0,0,0,0,0,0,20250111,20250111 -362,1,1,1,1,1,0,0,20241209,20250912 -363,1,1,1,1,0,0,0,20241209,20250911 -364,0,0,0,0,0,1,0,20241214,20250913 -365,1,1,1,1,1,1,0,20241209,20250913 -366,1,1,1,1,1,1,0,20241119,20241207 -367,1,1,1,1,1,1,0,20241209,20250913 -368,1,0,0,0,0,0,0,20241125,20241125 -369,1,1,1,1,1,1,0,20241119,20241206 -370,1,1,1,1,1,1,0,20241209,20250913 -371,1,1,1,1,1,1,0,20241119,20241207 -372,1,1,1,1,1,1,0,20241209,20250913 -373,1,0,0,0,0,0,0,20241125,20241202 -374,1,0,0,0,0,0,0,20241209,20250908 -375,0,1,1,1,1,0,0,20241119,20241206 -376,0,1,1,1,1,0,0,20241210,20250912 -377,0,0,0,0,1,1,0,20241122,20241207 -378,0,0,0,0,1,1,0,20241213,20250913 -379,1,1,1,1,1,1,0,20241209,20250913 -380,1,1,1,1,0,1,0,20241209,20250913 -381,1,1,1,1,0,1,0,20241209,20250913 -382,0,1,1,1,1,1,0,20241119,20241207 -383,1,1,1,1,1,1,0,20241209,20250913 -384,0,0,0,1,1,1,0,20241121,20241207 -385,0,1,1,0,0,0,0,20241119,20241120 -386,1,1,1,0,0,0,0,20241125,20241127 -387,0,0,0,0,0,0,0,20241202,20241204 -388,1,1,1,1,1,1,0,20241212,20250913 -389,0,0,0,0,0,0,0,20250106,20250108 -390,0,0,0,0,0,0,0,20250113,20250115 -391,0,0,0,0,0,0,0,20250120,20250122 -392,0,0,0,0,0,0,0,20250127,20250129 -393,0,0,0,0,0,0,0,20250204,20250205 -394,0,0,0,0,0,0,0,20250210,20250212 -395,0,0,0,0,0,0,0,20250217,20250219 -396,0,0,0,0,0,0,0,20250224,20250226 -397,0,0,0,0,0,0,0,20250303,20250305 -398,0,0,0,0,0,0,0,20250310,20250312 -399,0,0,0,0,0,0,0,20250318,20250319 -400,0,0,0,0,0,0,0,20250324,20250326 -401,0,0,0,0,0,0,0,20250331,20250402 -402,0,0,0,0,0,0,0,20250414,20250416 -403,0,0,0,0,0,0,0,20250407,20250409 -404,0,0,0,0,0,0,0,20250422,20250423 -405,0,0,0,0,0,0,0,20241209,20241211 -406,1,0,1,1,1,1,0,20241212,20250913 -407,1,0,0,0,0,0,0,20241209,20250908 diff --git a/server/assets/GTFS_Realtime/calendar_dates.txt b/server/assets/GTFS_Realtime/calendar_dates.txt deleted file mode 100644 index dfb2f59..0000000 --- a/server/assets/GTFS_Realtime/calendar_dates.txt +++ /dev/null @@ -1,473 +0,0 @@ -service_id,date,exception_type -115,20250203,1 -115,20250317,1 -115,20250421,1 -115,20250505,1 -131,20250203,2 -131,20250317,2 -131,20250505,2 -131,20250602,2 -134,20241226,2 -137,20241224,2 -138,20241224,1 -144,20250203,1 -144,20250317,1 -144,20250505,1 -144,20250602,1 -145,20250101,1 -146,20241226,1 -211,20241207,1 -227,20241225,2 -227,20241226,2 -227,20241227,2 -227,20241230,2 -227,20241231,2 -227,20250101,2 -227,20250203,2 -228,20241227,1 -228,20241230,1 -228,20241231,1 -229,20241225,1 -229,20241226,1 -229,20250101,1 -229,20250203,1 -260,20241223,2 -260,20241230,2 -260,20250203,2 -260,20250217,2 -260,20250317,2 -260,20250414,2 -260,20250421,2 -260,20250505,2 -261,20241224,2 -261,20241231,2 -261,20250218,2 -261,20250415,2 -261,20250422,2 -262,20241225,2 -262,20250101,2 -262,20250219,2 -262,20250416,2 -262,20250423,2 -263,20241226,2 -263,20250102,2 -263,20250220,2 -263,20250417,2 -263,20250424,2 -264,20241227,2 -264,20250103,2 -264,20250221,2 -264,20250418,2 -264,20250425,2 -265,20241223,1 -265,20241230,1 -265,20250217,1 -265,20250414,1 -266,20241224,1 -266,20241231,1 -266,20250218,1 -266,20250415,1 -266,20250422,1 -267,20241227,1 -267,20250103,1 -267,20250221,1 -267,20250418,1 -267,20250425,1 -268,20250102,1 -268,20250220,1 -268,20250417,1 -268,20250424,1 -269,20250219,1 -269,20250416,1 -269,20250423,1 -271,20250101,1 -272,20250203,2 -272,20250317,2 -272,20250421,2 -272,20250505,2 -274,20241225,2 -274,20250101,2 -275,20241226,2 -285,20241217,1 -285,20250311,1 -285,20250318,1 -285,20250325,1 -285,20250401,1 -285,20250408,1 -285,20250415,1 -286,20241218,1 -286,20250312,1 -286,20250319,1 -286,20250326,1 -286,20250402,1 -286,20250409,1 -286,20250416,1 -287,20241227,2 -287,20250103,2 -287,20250110,2 -287,20250117,2 -287,20250124,2 -287,20250131,2 -287,20250207,2 -287,20250214,2 -287,20250221,2 -287,20250228,2 -287,20250307,2 -288,20241121,1 -288,20241219,1 -288,20250313,1 -288,20250320,1 -288,20250327,1 -288,20250403,1 -288,20250410,1 -288,20250417,1 -289,20241216,2 -289,20241223,2 -290,20241217,2 -291,20241228,2 -291,20250104,2 -291,20250111,2 -291,20250118,2 -291,20250125,2 -291,20250201,2 -291,20250208,2 -291,20250215,2 -291,20250222,2 -291,20250301,2 -291,20250308,2 -292,20241218,2 -292,20241225,2 -292,20250101,2 -293,20241219,2 -293,20241226,2 -295,20241216,1 -295,20241223,1 -295,20250310,1 -295,20250324,1 -295,20250331,1 -295,20250407,1 -295,20250414,1 -297,20241226,1 -297,20250101,1 -297,20250317,1 -315,20241224,2 -315,20241225,2 -315,20241226,2 -315,20241227,2 -315,20241230,2 -315,20241231,2 -315,20250101,2 -315,20250203,2 -317,20241227,1 -318,20241230,1 -318,20241231,1 -320,20250203,1 -322,20241120,2 -324,20241214,1 -325,20241221,1 -326,20241224,2 -326,20241225,2 -326,20241226,2 -326,20250101,2 -326,20250203,2 -327,20250118,2 -328,20250118,1 -329,20241203,2 -330,20241203,1 -331,20241230,1 -332,20241231,1 -333,20241121,2 -334,20241224,2 -334,20241225,2 -334,20241226,2 -334,20241227,2 -334,20241230,2 -334,20241231,2 -334,20250101,2 -335,20241224,1 -335,20241227,1 -336,20241225,2 -336,20241226,2 -336,20241227,2 -336,20241230,2 -336,20241231,2 -336,20250101,2 -336,20250203,2 -338,20241225,2 -338,20241226,2 -339,20241225,2 -339,20241226,2 -339,20250101,2 -339,20250203,2 -340,20241207,1 -341,20241225,2 -341,20241226,2 -341,20250101,2 -341,20250203,2 -343,20241225,2 -343,20241226,2 -344,20241224,2 -344,20241225,2 -344,20241226,2 -344,20241231,2 -346,20241225,2 -346,20241226,2 -348,20241123,2 -349,20241225,2 -349,20241226,2 -349,20241227,2 -349,20250101,2 -349,20250203,2 -351,20241224,2 -351,20241225,2 -351,20241226,2 -351,20241231,2 -352,20241225,2 -352,20241226,2 -352,20241230,2 -352,20241231,2 -352,20250101,2 -352,20250102,2 -352,20250103,2 -352,20250203,2 -353,20241224,2 -353,20241225,2 -353,20241226,2 -353,20241227,2 -353,20241230,2 -353,20241231,2 -353,20250101,2 -353,20250102,2 -353,20250103,2 -353,20250203,2 -354,20241202,1 -355,20241225,2 -355,20241226,2 -355,20241227,2 -355,20250101,2 -355,20250203,2 -357,20241123,2 -358,20241227,2 -359,20241225,2 -359,20241226,2 -359,20250104,2 -359,20250111,2 -360,20250104,1 -361,20250111,1 -362,20241224,2 -362,20241225,2 -362,20241226,2 -362,20241231,2 -362,20250101,2 -362,20250203,2 -363,20241224,2 -363,20241225,2 -363,20241226,2 -363,20241230,2 -363,20241231,2 -364,20250104,2 -364,20250111,2 -365,20241224,2 -365,20241225,2 -365,20241226,2 -365,20241231,2 -365,20250101,2 -365,20250203,2 -366,20241122,2 -366,20241123,2 -367,20241225,2 -367,20241226,2 -367,20241227,2 -367,20241230,2 -367,20241231,2 -367,20250101,2 -367,20250203,2 -370,20241224,2 -370,20241225,2 -370,20241226,2 -370,20241227,2 -370,20241230,2 -370,20241231,2 -370,20250101,2 -370,20250203,2 -371,20241130,2 -372,20241224,2 -372,20241225,2 -372,20241226,2 -372,20241231,2 -372,20250203,2 -374,20250203,2 -376,20241225,2 -376,20241226,2 -376,20241227,2 -376,20250101,2 -379,20241224,2 -379,20241225,2 -379,20241226,2 -379,20241231,2 -379,20250101,2 -380,20241224,2 -380,20241225,2 -380,20241226,2 -380,20241230,2 -380,20241231,2 -381,20241225,2 -381,20241226,2 -381,20250101,2 -381,20250203,2 -382,20241123,2 -382,20241202,1 -383,20241225,2 -383,20241226,2 -383,20241227,2 -383,20250101,2 -387,20241202,1 -387,20241203,1 -387,20241204,1 -388,20241225,2 -388,20241226,2 -388,20250106,2 -388,20250107,2 -388,20250108,2 -388,20250113,2 -388,20250114,2 -388,20250115,2 -388,20250120,2 -388,20250121,2 -388,20250122,2 -388,20250127,2 -388,20250128,2 -388,20250129,2 -388,20250204,2 -388,20250205,2 -388,20250210,2 -388,20250211,2 -388,20250212,2 -388,20250217,2 -388,20250218,2 -388,20250219,2 -388,20250224,2 -388,20250225,2 -388,20250226,2 -388,20250303,2 -388,20250304,2 -388,20250305,2 -388,20250310,2 -388,20250311,2 -388,20250312,2 -388,20250318,2 -388,20250319,2 -388,20250324,2 -388,20250325,2 -388,20250326,2 -388,20250331,2 -388,20250401,2 -388,20250402,2 -388,20250407,2 -388,20250408,2 -388,20250409,2 -388,20250414,2 -388,20250415,2 -388,20250416,2 -388,20250422,2 -388,20250423,2 -389,20250106,1 -389,20250107,1 -389,20250108,1 -390,20250113,1 -390,20250114,1 -390,20250115,1 -391,20250120,1 -391,20250121,1 -391,20250122,1 -392,20250127,1 -392,20250128,1 -392,20250129,1 -393,20250204,1 -393,20250205,1 -394,20250210,1 -394,20250211,1 -394,20250212,1 -395,20250217,1 -395,20250218,1 -395,20250219,1 -396,20250224,1 -396,20250225,1 -396,20250226,1 -397,20250303,1 -397,20250304,1 -397,20250305,1 -398,20250310,1 -398,20250311,1 -398,20250312,1 -399,20250318,1 -399,20250319,1 -400,20250324,1 -400,20250325,1 -400,20250326,1 -401,20250331,1 -401,20250401,1 -401,20250402,1 -402,20250414,1 -402,20250415,1 -402,20250416,1 -403,20250407,1 -403,20250408,1 -403,20250409,1 -404,20250422,1 -404,20250423,1 -405,20241209,1 -405,20241210,1 -405,20241211,1 -406,20241217,1 -406,20241225,2 -406,20241226,2 -406,20250106,2 -406,20250108,2 -406,20250113,2 -406,20250115,2 -406,20250120,2 -406,20250122,2 -406,20250127,2 -406,20250129,2 -406,20250205,2 -406,20250210,2 -406,20250212,2 -406,20250217,2 -406,20250219,2 -406,20250224,2 -406,20250226,2 -406,20250303,2 -406,20250305,2 -406,20250310,2 -406,20250312,2 -406,20250319,2 -406,20250324,2 -406,20250326,2 -406,20250331,2 -406,20250402,2 -406,20250407,2 -406,20250409,2 -406,20250414,2 -406,20250416,2 -406,20250423,2 -406,20250429,1 -406,20250506,1 -406,20250513,1 -406,20250520,1 -406,20250527,1 -406,20250603,1 -406,20250610,1 -406,20250617,1 -406,20250624,1 -406,20250701,1 -406,20250708,1 -406,20250715,1 -406,20250722,1 -406,20250729,1 -406,20250805,1 -406,20250812,1 -406,20250819,1 -406,20250826,1 -406,20250902,1 -406,20250909,1 diff --git a/server/assets/GTFS_Realtime/feed_info.txt b/server/assets/GTFS_Realtime/feed_info.txt deleted file mode 100644 index 9bd59b1..0000000 --- a/server/assets/GTFS_Realtime/feed_info.txt +++ /dev/null @@ -1,2 +0,0 @@ -feed_publisher_name,feed_publisher_url,feed_lang,feed_start_date,feed_end_date,feed_version -National Transport Authority,https://www.nationaltransport.ie/,en,20241119,20251119,99796A50-A117-4C3F-851A-0D2F7DB4F0F5 diff --git a/server/assets/GTFS_Realtime/routes.txt b/server/assets/GTFS_Realtime/routes.txt deleted file mode 100644 index 7c30c38..0000000 --- a/server/assets/GTFS_Realtime/routes.txt +++ /dev/null @@ -1,435 +0,0 @@ -route_id,agency_id,route_short_name,route_long_name,route_desc,route_type,route_url,route_color,route_text_color -3778_48886,7778014,Green,Parnell - Brides Glen,,0,,, -3778_48887,7778014,Red,The Point - Tallaght,,0,,, -4195_72146,7778006,120,Dublin - Edenderry,,3,,, -4195_72147,7778006,125,UCD - Newbridge,,3,,, -4195_72148,7778006,126,Dublin - Rathangan,,3,,, -4195_72149,7778006,130,Dublin - Athy,,3,,, -4195_72150,7778006,120A,Dublin - Edenderry,,3,,, -4195_72151,7778006,120B,Dublin - Newbridge,,3,,, -4195_72152,7778006,120C,Enfield - Tullamore,,3,,, -4195_72153,7778006,120D,Enfield - Tullamore,,3,,, -4195_72154,7778006,120E,Dublin - Edenderry,,3,,, -4195_72155,7778006,120F,Connolly Station - Newbridge Centre,,3,,, -4195_72156,7778006,120X,Dublin - Edenderry,,3,,, -4195_72157,7778006,126A,Dublin - Kildare,,3,,, -4195_72158,7778006,126B,Dublin - Rathangan,,3,,, -4195_72159,7778006,126D,Dublin - Kildare,,3,,, -4195_72160,7778006,126E,Dublin - Kildare,,3,,, -4195_72161,7778006,126T,Dublin - Kildare,,3,,, -4195_72162,7778006,126U,Dublin UCD - Kildare,,3,,, -4195_72163,7778006,126N,Dublin - Newbridge,,3,,, -4195_72164,7778006,126X,Dublin - Rathangan,,3,,, -4195_72165,7778006,130A,Dublin - Athy,,3,,, -4289_75958,7778021,59,Dun Laoghaire - Killiney Hill Park,,3,,, -4289_75959,7778021,63,Kilternan - Dún Laoghaire,,3,,, -4289_75960,7778021,102,Dublin Airport - Sutton DART,,3,,, -4289_75961,7778021,104,Clontarf Station - DCU (The Helix),,3,,, -4289_75962,7778021,111,Brides Glen - Kilbogget Pk,,3,,, -4289_75963,7778021,114,Ticknock - Blackrock,,3,,, -4289_75964,7778021,161,Rockbrook - Dundrum,,3,,, -4289_75965,7778021,184,Newtownmountkennedy - Greystones - Bray,,3,,, -4289_75966,7778021,185,Powerscourt - Bray,,3,,, -4289_75967,7778021,220,DCU (The Helix) - Lady's Well Road,,3,,, -4289_75968,7778021,236,Blanchardstown - IBM Campus,,3,,, -4289_75969,7778021,238,Tyrrelstown - Mulhuddart,,3,,, -4289_75970,7778021,270,Dunboyne - Blanchardstown,,3,,, -4289_75971,7778021,33A,Dublin Airport - Balbriggan,,3,,, -4289_75972,7778021,33B,Swords - Portrane,,3,,, -4289_75973,7778021,33T,Skerries - Donabate,,3,,, -4289_75974,7778021,45A,Kilmacanogue - Dun Laoghaire,,3,,, -4289_75975,7778021,45B,Kilmacanogue - Dun Laoghaire,,3,,, -4289_75976,7778021,N2,Clontarf Station - Heuston Train Stn,,3,,, -4289_75977,7778021,N6,Finglas Village - Naomh Barróg GAA,,3,,, -4289_75978,7778021,S4,Liffey Valley - UCD,,3,,, -4289_75979,7778021,S6,The Square - Blackrock Station,,3,,, -4289_75980,7778021,S8,Kingswood Avenue - Dun Laoghaire Stn,,3,,, -4289_75981,7778021,W2,The Square - Liffey Valley SC,,3,,, -4289_75982,7778021,W4,The Square - Blanchardstown SC,,3,,, -4289_75983,7778021,63A,Kilternan - Dún Laoghaire,,3,,, -4289_75984,7778021,L51,Liffey Valley SC - Adamstown Station,,3,,, -4289_75985,7778021,L52,Blanchardstown SC - Adamstown Station,,3,,, -4289_75986,7778021,L55,Hollyville Lawn - Glenaulin,,3,,, -4289_75987,7778021,102A,Swords - Sutton,,3,,, -4289_75988,7778021,102C,Balgriffin - Sutton,,3,,, -4289_75989,7778021,102P,Swords - Portmarnock,,3,,, -4289_75990,7778021,102T,Swords - Sutton,,3,,, -4289_75991,7778021,185T,Enniskerry - Bray,,3,,, -4289_75992,7778021,220A,DCU (The Helix) - Lady's Well Road,,3,,, -4289_75993,7778021,220T,Collins Avenue West - Finglas Garda Stn,,3,,, -4289_75994,7778021,236A,Blanchardstown - IBM Campus,,3,,, -4289_75995,7778021,236T,Scoil Oilibheir - Tyrrelstown,,3,,, -4289_75996,7778021,270T,Castaheany Estate - Castleknock Community College,,3,,, -4289_75997,7778021,W61,Hazelhatch Station - Maynooth,,3,,, -4289_75998,7778021,W62,The Square - Newcastle,,3,,, -4318_78159,7778008,W1,Clock Tower - Ballybeg,,3,,, -4318_78160,7778008,W3,Clock Tower - Meagher's Quay,,3,,, -4318_78161,7778008,W2,Clock Tower - WIT - Meagher's Quay,,3,,, -4318_78162,7778008,W4,Peter Street - Brownes Road,,3,,, -4318_78163,7778008,W5,Hospital - Oakwood,,3,,, -4358_80679,7778019,6,Howth Dart Stn - Lower Abbey Street,,3,,, -4358_80680,7778019,11,Sandyford Ind Estate - Wadelai Pk,,3,,, -4358_80681,7778019,4,Monkstown Avenue - Harristown,,3,,, -4358_80682,7778019,13,Grange Castle - Harristown,,3,,, -4358_80683,7778019,14,Dundrum Luas Stn - Ardlea Rd (Beaumont),,3,,, -4358_80684,7778019,15,Ballycullen Road - Clongriffin,,3,,, -4358_80685,7778019,16,Ballinteer - Dublin Airport,,3,,, -4358_80686,7778019,16D,Airport - Beaumont Village - Ballinteer not,,3,,, -4358_80687,7778019,L53,Liffey Valley - Adamstown Stn,,3,,, -4358_80688,7778019,26,Fonthill Rd (Liffey Valley) - Merrion Square,,3,,, -4358_80689,7778019,27,Jobstown - Clare Hall,,3,,, -4358_80690,7778019,27X,Clare Hall - UCD Belfield,,3,,, -4358_80691,7778019,77X,Citywest - UCD Belfield,,3,,, -4358_80692,7778019,32X,UCD Belfield - Malahide,,3,,, -4358_80693,7778019,33,Balbriggan - Lower Abbey St,,3,,, -4358_80694,7778019,33X,Skerries - Custom House Quay / St Stephen Green,,3,,, -4358_80695,7778019,33D,Portrane - St Stephens Green,,3,,, -4358_80696,7778019,33E,Lwr Abbey St - Portrane - Skerries,,3,,, -4358_80697,7778019,37,Blanchardstown Shopping Centre - Wilton Terrace,,3,,, -4358_80698,7778019,38,Damastown - Burlington Road,,3,,, -4358_80699,7778019,38A,Damastown via Navan Rd - Burlington Rd,,3,,, -4358_80700,7778019,38B,Damastown via Ballycoolin Ind Est - Burlington Rd,,3,,, -4358_80701,7778019,70,Dunboyne - Burlington Rd,,3,,, -4358_80702,7778019,38D,IBM Damastown via N3 - Burlington Rd,,3,,, -4358_80703,7778019,70D,Dunboyne - DCU,,3,,, -4358_80704,7778019,39X,Ongar - Burlington Road,,3,,, -4358_80705,7778019,39,Ongar - Burlington Rd,,3,,, -4358_80706,7778019,39A,Ongar - UCD Belfield,,3,,, -4358_80707,7778019,40,Charlestown Shopping Centre - Earlsfort Terrace,,3,,, -4358_80708,7778019,40B,Toberburr - Parnel Street,,3,,, -4358_80709,7778019,40E,Broombridge Luas - Tyrrelstown,,3,,, -4358_80710,7778019,40D,Tyrrelstown - Parnell Street,,3,,, -4358_80711,7778019,41,Swords Manor - Lower Abbey Street,,3,,, -4358_80712,7778019,41D,Swords Business Park - Lwr Abbey St,,3,,, -4358_80713,7778019,41B,Rolestown - Lower Abbey Street,,3,,, -4358_80714,7778019,41C,Swords Manor Via River Valley - Lower Abbey St,,3,,, -4358_80715,7778019,41X,Swords - UCD Belfield,,3,,, -4358_80716,7778019,42,Sand's Hotel Portmarnock - Eden Quay,,3,,, -4358_80717,7778019,43,Talbot Street - Swords Business Park,,3,,, -4358_80718,7778019,44D,Dundrum - OCS,,3,,, -4358_80719,7778019,44,Enniskerry - DCU,,3,,, -4358_80720,7778019,44B,Glencullen - Dundrum Luas,,3,,, -4358_80721,7778019,46A,Dun Laoghaire - Phoenix Park,,3,,, -4358_80722,7778019,46E,Mountjoy Square - Blackrock Station,,3,,, -4358_80723,7778019,7,Brides Glen Luas - Mountjoy Square,,3,,, -4358_80724,7778019,7A,Loughlinstown - Mountjoy Sq,,3,,, -4358_80725,7778019,7B,Shankill - Mountjoy Square,,3,,, -4358_80726,7778019,7D,Dalkey - Mountjoy Square,,3,,, -4358_80727,7778019,7E,Mountjoy Square - Dalkey,,3,,, -4358_80728,7778019,47,Poolbeg Street - Belarmine,,3,,, -4358_80729,7778019,49,Tallaght (The Square) - Pearse St,,3,,, -4358_80730,7778019,51D,Aston Quay - Clondalkin,,3,,, -4358_80731,7778019,52,Intel - Ringsend,,3,,, -4358_80732,7778019,27A,Blunden Drive - Eden Quay,,3,,, -4358_80733,7778019,53,Dublin Ferryport - Talbot St,,3,,, -4358_80735,7778019,54A,Ellensborough - Pearse St,,3,,, -4358_80736,7778019,56A,Tallaght - Ringsend Rd,,3,,, -4358_80737,7778019,60,Forbes Street - Tallaght,,3,,, -4358_80738,7778019,65A,Route 65A Tallaght Sq - Blessington,,3,,, -4358_80739,7778019,65B,Poolbeg Street - Citywest,,3,,, -4358_80740,7778019,65,Poolbeg Street - Blessington/Ballymore,,3,,, -4358_80741,7778019,69,Rathcoole - Hawkins St,,3,,, -4358_80742,7778019,69X,Rathcoole - Hawkins St,,3,,, -4358_80743,7778019,68,Newcastle / Greenogue Business Pk - Hawkins St,,3,,, -4358_80744,7778019,68A,Hawkins Street - Bulfin Road,,3,,, -4358_80745,7778019,74,Dundrum Luas - Eden Quay,,3,,, -4358_80746,7778019,77A,Citywest - Ringsend,,3,,, -4358_80747,7778019,83,Kimmage - Harristown,,3,,, -4358_80748,7778019,83A,Stannaway Ave - Harristown Bus Garage,,3,,, -4358_80749,7778019,84A,Bray Rail Station - Blackrock,,3,,, -4358_80750,7778019,84,Newcastle - Blackrock,,3,,, -4358_80751,7778019,99,Phoenix Park - Phoenix Park,,3,,, -4358_80752,7778019,116,Whitechurch - Parnell Square,,3,,, -4358_80753,7778019,118,Kilternan - Eden Quay,,3,,, -4358_80754,7778019,120,Ashtown Station - Parnell St,,3,,, -4358_80755,7778019,9,Limekiln Avenue - Charlestown,,3,,, -4358_80756,7778019,122,Drimnagh - Ashington,,3,,, -4358_80757,7778019,123,Marino - Walinstown (Kilnamanagh Rd),,3,,, -4358_80758,7778019,130,Talbot Street - Castle Avenue,,3,,, -4358_80759,7778019,140,Palmerston Park - Ballymun (Ikea),,3,,, -4358_80760,7778019,1,Sandymount - O'Connell Street - Santry,,3,,, -4358_80761,7778019,142,Portmarnock - UCD (Belfield),,3,,, -4358_80762,7778019,84X,Hawkins Street - Newcastle / Kilcoole,,3,,, -4358_80763,7778019,145,Heuston Rail Station - Ballywaltrim,,3,,, -4358_80764,7778019,150,Rossmore - Hawkins Street,,3,,, -4358_80765,7778019,151,Foxborough (Balgaddy Rd) - Docklands (East Rd),,3,,, -4358_80766,7778019,155,Bray - IKEA Ballymun,,3,,, -4358_80767,7778019,P29,Adamstown Stn - Ringsend,,3,,, -4358_80768,7778019,X25,Maynooth - Easton Rd - UCD,,3,,, -4358_80769,7778019,X26,Maynooth - Louisa Bridge - Leeson Street Lower,,3,,, -4358_80770,7778019,X27,Salesian College - Aghards Rd - UCD,,3,,, -4358_80771,7778019,X28,Salesian College - Celbridge Main St - UCD,,3,,, -4358_80772,7778019,X30,Dodsboro - UCD,,3,,, -4358_80773,7778019,X31,River Forest - Earlsfort Terrace,,3,,, -4358_80774,7778019,X32,Leixlip - Earlsfort Terrace,,3,,, -4358_80775,7778019,C1,Adamstown Stn - Sandymount,,3,,, -4358_80776,7778019,C2,Adamstown Stn - Sandymount,,3,,, -4358_80777,7778019,C3,Maynooth - Ringsend,,3,,, -4358_80778,7778019,C4,Maynooth - Ringsend,,3,,, -4358_80779,7778019,C6,Maynooth - Celbridge - Ringsend Night Service,,3,,, -4358_80780,7778019,C5,Maynooth - Ringsend Night Service,,3,,, -4358_80781,7778019,G1,Red Cow LUAS - Spencer Dock,,3,,, -4358_80782,7778019,G2,Liffey Valley SC - Spencer Dock,,3,,, -4358_80783,7778019,H1,Baldoyle - Lower Abbey Street,,3,,, -4358_80784,7778019,H2,Malahide - Lower Abbey Street,,3,,, -4358_80785,7778019,H3,Howth Summit - Lower Abbey Street,,3,,, -4358_80786,7778019,N4,Blanchardstown - Point Village,,3,,, -4358_80787,7778019,S2,Sean Moore Road - Heuston Station,,3,,, -4358_80788,7778019,15B,Merrion Square - Stocking Avenue,,3,,, -4358_80789,7778019,15D,Merrion Square - Whitechurch,,3,,, -4358_80790,7778019,15A,Merrion Square - Limekiln Avenue,,3,,, -4358_80791,7778019,720,Watling Street - Heuston Station,,3,,, -4358_80792,7778019,27B,Eden Quay - Harristown,,3,,, -4358_80793,7778019,42D,Portmarnock - DCU,,3,,, -4358_80794,7778019,L25,Dun Laoghaire - Dundrum Town Centre,,3,,, -4358_80795,7778019,L54,River Forest - Red Cow Luas,,3,,, -4358_80796,7778019,L58,River Forest - Castletown - Hazelhatch Stn,,3,,, -4358_80797,7778019,L59,River Forest - Celbridge - Hazelhatch,,3,,, -4367_81458,7778017,rail,Dublin - Belfast,,2,,, -4367_81459,7778017,rail,Belfast - Dublin,,2,,, -4367_81460,7778017,InterCity,Dublin - Cork,,2,,, -4367_81462,7778017,rail,Dublin - Tralee,,2,,, -4367_81464,7778017,rail,Dublin - Limerick,,2,,, -4367_81466,7778017,rail,Limerick - Galway,,2,,, -4367_81467,7778017,rail,Waterford - Limerick,,2,,, -4367_81468,7778017,rail,Limerick - Ballybrophy,,2,,, -4367_81471,7778017,rail,Dublin - Waterford,,2,,, -4367_81473,7778017,rail,Dublin - Europort,,2,,, -4367_81475,7778017,rail,Dublin - Galway,,2,,, -4367_81476,7778017,rail,Dublin - Westport,,2,,, -4367_81479,7778017,rail,Dublin - Sligo,,2,,, -4367_81481,7778017,Commuter,Dublin - Portlaoise,,2,,, -4367_81482,7778017,rail,Dublin - Maynooth,,2,,, -4367_81483,7778017,rail,Mallow - Cobh,,2,,, -4367_81484,7778017,rail,Dublin - Drogheda/Dundalk,,2,,, -4367_81485,7778017,DART,Bray - Howth,,2,,, -4367_81492,7778017,rail,Dublin - Limerick via Nenagh,,2,,, -4376_82530,7778021,W6,Community College - The Square,,3,,, -4380_77929,7778020,2,Dublin Airport - Gorey - Wexford,,3,,, -4380_77930,7778020,4,Dublin Airport - Waterford,,3,,, -4380_77931,7778020,13,Limerick - Adare - Listowel - Tralee,,3,,, -4380_77932,7778020,14,Limerick - Kerry Airport - Killarney,,3,,, -4380_77933,7778020,22,Dublin - Airport - Longford - Ballina,,3,,, -4380_77934,7778020,23,Dublin - Airport - Longford - Sligo,,3,,, -4380_77935,7778020,30,Dublin - Airport - Cavan - Donegal,,3,,, -4380_77936,7778020,32,Dublin Airport - Monaghan - Letterkenny,,3,,, -4380_77937,7778020,40,Tralee - Cork - Waterford - Rosslare,,3,,, -4380_77938,7778020,51,Cork - Limerick - Galway,,3,,, -4380_77939,7778020,52,Ballina - Castlebar - Galway,,3,,, -4380_77940,7778020,55,Limerick - Waterford,,3,,, -4380_77941,7778020,64,Galway Bus Station - Derry (Magee Campus Strand Road),,3,,, -4380_77942,7778020,65,Galway - Athlone - Monaghan,,3,,, -4380_77943,7778020,70,Galway - Mullingar - Dundalk,,3,,, -4380_77944,7778020,72,Limerick - Birr - Athlone,,3,,, -4380_77945,7778020,73,Waterford - Athlone - Longford,,3,,, -4380_77946,7778020,100,Drogheda - Dundalk - Newry,,3,,, -4380_77947,7778020,101,Dublin - Airport - Drogheda,,3,,, -4380_77948,7778020,103,Dublin - Ashbourne - Ratoath,,3,,, -4380_77949,7778020,B1,Rail Station - Millfield Centre,,3,,, -4380_77950,7778020,105,Blanchardstown - Ashbourne - Ashbourne - Drogheda,,3,,, -4380_77951,7778020,107,Dublin - Navan - Nobber - Kingscourt,,3,,, -4380_77952,7778020,108,Dublin - Kells - Bailieboro,,3,,, -4380_77953,7778020,109,Dublin - Navan - Kells - Cavan,,3,,, -4380_77954,7778020,111,Wilton Tce - Trim - Granard - Cavan,,3,,, -4380_77955,7778020,115,Dublin - Mullingar,,3,,, -4380_77956,7778020,131,Bray - Wicklow,,3,,, -4380_77957,7778020,132,Dublin - Carnew - Bunclody,,3,,, -4380_77958,7778020,133,Dublin - Wicklow,,3,,, -4380_77959,7778020,134,Dorey's Forge - Dunsany - Navan,,3,,, -4380_77960,7778020,135,Scurloughstown - Navan,,3,,, -4380_77961,7778020,136,Ross Cross - Navan Shopping Centre,,3,,, -4380_77962,7778020,160,Dundalk - Ravensdale - Newry,,3,,, -4380_77963,7778020,161,Dundalk - Carlingford - Newry,,3,,, -4380_77964,7778020,162,Dundalk - Monaghan - Clones - Cavan,,3,,, -4380_77965,7778020,167,Dundalk - Louth - Ardee,,3,,, -4380_77966,7778020,168,Dundalk - Annagassan,,3,,, -4380_77967,7778020,170,Cavan - Dundalk,,3,,, -4380_77968,7778020,173,Drogheda West St - Dominck St,,3,,, -4380_77969,7778020,174,Long Walk - Muirhevnamuir,,3,,, -4380_77970,7778020,175,Monaghan - Cootehill - Cavan,,3,,, -4380_77971,7778020,182,Drogheda - Collon - Ardee - Monaghan,,3,,, -4380_77972,7778020,187,Kells - Virginia - Ballyjamesduff,,3,,, -4380_77973,7778020,190,Drogheda - Navan - Trim,,3,,, -4380_77974,7778020,201,Lotabeg - Hollyhill - CIT - CUH,,3,,, -4380_77975,7778020,202,Ringmahon - City - Hollyhill (Apple),,3,,, -4380_77976,7778020,203,Lehenaghmore - City Centre - Parklands,,3,,, -4380_77977,7778020,205,Train Station - St. Patrick St - CIT,,3,,, -4380_77978,7778020,206,Grange - Douglas - South Mall,,3,,, -4380_77979,7778020,207,Donnybrook - City Centre - City Centre - Glenheights,,3,,, -4380_77980,7778020,208,Lotabeg - Bishopstown - Curraheen,,3,,, -4380_77981,7778020,209,Patrick St - Audley Place - Lotamore,,3,,, -4380_77982,7778020,212,Kent Station - Blackrock - Mahon Point,,3,,, -4380_77983,7778020,213,Lapps Quay (P&R) - Black Ash,,3,,, -4380_77984,7778020,214,Glanmire - City Centre - CUH,,3,,, -4380_77985,7778020,215,Mahon Point - Ballinlough - Cloghroe,,3,,, -4380_77986,7778020,216,Mount Oval - City - Glasheen - CUH,,3,,, -4380_77987,7778020,219,Mahon - Douglas - CUH/ CIT (South Orb),,3,,, -4380_77988,7778020,220,Ballincollig - Douglas - Carrigaline,,3,,, -4380_77989,7778020,223,Cork - Ringaskiddy - Haulbowline,,3,,, -4380_77990,7778020,225,Cork Airport - Haulbowline,,3,,, -4380_77991,7778020,226,Train Stn - Airport - Kinsale,,3,,, -4380_77992,7778020,233,Cork - Macroom,,3,,, -4380_77993,7778020,235,Cork - Rylane - Stuake,,3,,, -4380_77994,7778020,236,Cork - Bantry - Castletownbere,,3,,, -4380_77995,7778020,237,Cork - Skibereen - Goleen,,3,,, -4380_77996,7778020,239,Cork - Bandon,,3,,, -4380_77997,7778020,240,Cork - Cloyne - Ballycotton,,3,,, -4380_77998,7778020,241,Cork - Midelton - Whitegate,,3,,, -4380_77999,7778020,243,Cork - Newmarket/Doneraile/Charleville,,3,,, -4380_78000,7778020,245,Cork - Fermoy - Mitchelstown - Clonmel,,3,,, -4380_78001,7778020,248,Cork - Carrignavar/ Glenville,,3,,, -4380_78002,7778020,257,Macroom - Killarney,,3,,, -4380_78003,7778020,258,Macroom - Rylane,,3,,, -4380_78004,7778020,259,Macroom - Renaniree,,3,,, -4380_78005,7778020,260,Cork - Youghal - Ardmore,,3,,, -4380_78006,7778020,261,Cork - Midelton - Ballincurra,,3,,, -4380_78007,7778020,270,Killarney - Kenmare - Skibbereen,,3,,, -4380_78008,7778020,271,Tralee - Kerry Airport - Killarney,,3,,, -4380_78009,7778020,272,Tralee - Listowel - Tarbert,,3,,, -4380_78010,7778020,275,Tralee - Dingle,,3,,, -4380_78011,7778020,279,Killarney - Cahersiveen - Waterville,,3,,, -4380_78012,7778020,284,Killarney - Tralee,,3,,, -4380_78013,7778020,301,Westbury - Regional Hospital,,3,,, -4380_78014,7778020,302,City Centre - Caherdavin,,3,,, -4380_78015,7778020,303,O'Malley Park - City Centre - Pineview,,3,,, -4380_78016,7778020,304,UL - City Centre - Raheen,,3,,, -4380_78017,7778020,305,Lynwood Pk - City Centre - St Marys Pk,,3,,, -4380_78018,7778020,306,Brookfield - City Centre - Ballynanty,,3,,, -4380_78019,7778020,313,Limerick - Ardnacrusha,,3,,, -4380_78020,7778020,314,Limerick - Foynes - Glin - Ballybunion,,3,,, -4380_78021,7778020,316,Sixmilebridge - Shannon Airport,,3,,, -4380_78022,7778020,317,Limerick - Ennis,,3,,, -4380_78023,7778020,320,Limerick - Charleville,,3,,, -4380_78024,7778020,321,Limerick - Rathkeale - Newcastlewest,,3,,, -4380_78025,7778020,323,Limerick - Killaloe - Nenagh - Birr,,3,,, -4380_78026,7778020,324,Nenagh - Borrisokane - Kilbarron,,3,,, -4380_78027,7778020,328,Limerick - Mitchellstown,,3,,, -4380_78028,7778020,329,Limerick - Bruff - Kilfinane,,3,,, -4380_78029,7778020,330,Ennis - Shannon Airport,,3,,, -4380_78030,7778020,332,Limerick - Dundrum,,3,,, -4380_78031,7778020,333,Limerick - Ennis - Corofin - Doonbeg,,3,,, -4380_78032,7778020,336,Limerick - Ennis - Kilrush - Kilkee,,3,,, -4380_78033,7778020,343,Limerick - Shannon Airport,,3,,, -4380_78034,7778020,345,Limerick - Killaloe - Scariff,,3,,, -4380_78035,7778020,347,Limerick - Tipperary,,3,,, -4380_78036,7778020,348,Ennis - Tulla - Scariff,,3,,, -4380_78037,7778020,349,Gort - Scariff - Feakle,,3,,, -4380_78038,7778020,350,Galway - Kinvara - Doolin - Ennis,,3,,, -4380_78039,7778020,354,Portlaw - Waterford - Dunmore East,,3,,, -4380_78040,7778020,355,Waterford - Cahir,,3,,, -4380_78041,7778020,360,Waterford - Tramore,,3,,, -4380_78042,7778020,362,Waterford - Dungarvan,,3,,, -4380_78043,7778020,365,Waterford - Thomastown,,3,,, -4380_78044,7778020,366,Waterford - Dungarvan - Lismore,,3,,, -4380_78045,7778020,370,Waterford - New Ross - Wexford,,3,,, -4380_78046,7778020,371,New Ross - Adamstown - Wexford,,3,,, -4380_78047,7778020,372,New Ross - Foulksmills - Wexford,,3,,, -4380_78048,7778020,373,New Ross - Fethard - Wexford,,3,,, -4380_78049,7778020,374,New Ross - Kilkenny,,3,,, -4380_78050,7778020,375,New Ross - Kiltealy - Enniscorthy,,3,,, -4380_78051,7778020,377,Wexford - Edermine - Enniscorthy,,3,,, -4380_78052,7778020,378,Wexford - Churchtown,,3,,, -4380_78053,7778020,379,Wexford - Curracloe - Gorey,,3,,, -4380_78054,7778020,380,Wexford - Crossabeg,,3,,, -4380_78055,7778020,381,Wexford - Blackhall,,3,,, -4380_78056,7778020,382,Adamstown - Wexford,,3,,, -4380_78057,7778020,383,Wexford - Kilmore Quay,,3,,, -4380_78058,7778020,385,Wexford - Rosslare Europort,,3,,, -4380_78059,7778020,401,Parkmore Road - Doctor Mannix Road,,3,,, -4380_78060,7778020,402,Seacrest - Eyre Square - Merlin Park,,3,,, -4380_78061,7778020,404,Eyre Square - Newcastle,,3,,, -4380_78062,7778020,405,Rahoon - Eyre Square - Ballybane,,3,,, -4380_78063,7778020,407,Eyre Square - Bóthar an Chóiste,,3,,, -4380_78064,7778020,409,Eyre Square - Parkmore Ind. Est.,,3,,, -4380_78065,7778020,417,Galway - Corofin Cross - Tuam,,3,,, -4380_78066,7778020,419,Galway - Clifden,,3,,, -4380_78067,7778020,420,Swinford - Claremorris,,3,,, -4380_78068,7778020,421,Ballina - Pontoon - Castlebar,,3,,, -4380_78069,7778020,422,Headford - Castlebar,,3,,, -4380_78070,7778020,423,Westport - Clifden,,3,,, -4380_78071,7778020,424,Galway - Lettermullen,,3,,, -4380_78072,7778020,425,Galway - Roscommon - Longford,,3,,, -4380_78073,7778020,429,Galway - Tuam - Castlerea,,3,,, -4380_78074,7778020,434,Galway - Gort,,3,,, -4380_78075,7778020,440,Knock Airport - Westport - Dooagh,,3,,, -4380_78076,7778020,442,Charlestown - Castlebar - Westport,,3,,, -4380_78077,7778020,443,Ballina - Farragh Cross,,3,,, -4380_78078,7778020,444,Ballina - Dromore West,,3,,, -4380_78079,7778020,445,Ballina - Killala - Ballycastle,,3,,, -4380_78080,7778020,446,Ballina - Blacksod,,3,,, -4380_78081,7778020,447,Finea - Castlepollard - Mullingar,,3,,, -4380_78082,7778020,448,Shandonagh - Ballynacargy - Mullingar,,3,,, -4380_78083,7778020,450,Dooagh - Louisburgh,,3,,, -4380_78084,7778020,451,Ballina - Charlestown - Longford,,3,,, -4380_78085,7778020,455,Ballina - Moygownagh - Crossmolina,,3,,, -4380_78086,7778020,456,Galway - Westport - Ballina,,3,,, -4380_78087,7778020,457,Castlrea - Ballintubber - Roscommon,,3,,, -4380_78088,7778020,458,Sligo - Enniscrone - Ballina,,3,,, -4380_78089,7778020,461,Sligo - Roscommon - Athlone,,3,,, -4380_78090,7778020,462,Carrigallen - Ballinamore - Sligo,,3,,, -4380_78091,7778020,463,Carrigallen - Mohill - Longford,,3,,, -4380_78092,7778020,464,Carrigallen - Eniskillen,,3,,, -4380_78093,7778020,465,Carrigallen - Cavan,,3,,, -4380_78094,7778020,466,Athlone - Longford,,3,,, -4380_78095,7778020,467,Longford - Lanesboro - Roscommon,,3,,, -4380_78096,7778020,468,Strokestown - Carrick on Shannon,,3,,, -4380_78097,7778020,469,Sligo - Drumkeeran - Longford,,3,,, -4380_78098,7778020,470,Sligo - Glenfarne - Rossinver,,3,,, -4380_78099,7778020,471,Sligo - Ballymote - Riverstown,,3,,, -4380_78100,7778020,S2,Strandhill - Rosses Point,,3,,, -4380_78101,7778020,476,Killavil - Ballymote - Tubbercurry,,3,,, -4380_78102,7778020,S1,Cartron - Sligo Town Centre - Cairns,,3,,, -4380_78103,7778020,479,Aclare - Coolaney - Sligo,,3,,, -4380_78104,7778020,480,Sligo - Donegal - Letterkenny - Derry,,3,,, -4380_78105,7778020,483,Ballyshannon - Sligo,,3,,, -4380_78106,7778020,487,Strabane - Raphoe - Letterkenny,,3,,, -4380_78107,7778020,489,Letterkenny - Carrigans - Strabane,,3,,, -4380_78108,7778020,490,Donegal - Killybegs - Glencolumbcille,,3,,, -4380_78109,7778020,491,Letterkenny - Ballybofey,,3,,, -4380_78110,7778020,492,Donegal - Glenties - Dungloe,,3,,, -4380_78111,7778020,494,Strabane - Ballybofey,,3,,, -4380_78112,7778020,495,Ballyshannon - Manorhamilton,,3,,, -4380_78113,7778020,100X,Wilton Tce - Airport - Dundalk,,3,,, -4380_78114,7778020,109A,DCU - Airport - Ratoath - Navan,,3,,, -4380_78115,7778020,115C,Enfield - Killucan - Mullingar,,3,,, -4380_78116,7778020,174A,Long Walk - Fatima,,3,,, -4380_78117,7778020,174B,Long Walk - Bay Estate,,3,,, -4380_78118,7778020,175A,Cavan - Clones - Monaghan,,3,,, -4380_78119,7778020,182A,Drogheda - Hospital - Ardee,,3,,, -4380_78120,7778020,N1,Commons Road - Metges Road,,3,,, -4380_78121,7778020,N2,Aisling Place - Commons Road,,3,,, -4380_78122,7778020,D4,Southgate SC - Ballymakenny,,3,,, -4380_78123,7778020,D5,Colpe Road - Termonabbey,,3,,, -4380_78124,7778020,209A,City Centre - Pouladuff - Connolly Rd,,3,,, -4380_78125,7778020,215A,Mahon Point - Boreenmanna Rd - City,,3,,, -4380_78126,7778020,207A,Merchants Quay - Glen Ave - Glenthorn,,3,,, -4380_78127,7778020,CW1,MSD - Tyndall College,,3,,, -4380_78128,7778020,CW2,Barrow Valley RPK - Business Park,,3,,, -4380_78129,7778020,D1,Drogheda - Laytown,,3,,, -4380_78130,7778020,D2,Drogheda - Coast Road - Laytown,,3,,, -4380_78131,7778020,226X,Kinsale - UCC,,3,,, -4380_78132,7778020,323X,Limerick - Birr - Athlone,,3,,, -4380_78133,7778020,330X,Limerick - Ennis,,3,,, -4380_78134,7778020,317A,Limerick - Ennis,,3,,, -4380_78135,7778020,305A,CC - St.Marys Park - CC,,3,,, -4380_78136,7778020,202A,Ringmahon - City - Hollyhill (Apple),,3,,, -4380_78137,7778020,225L,Carrigaline - NMCI,,3,,, -4380_78138,7778020,425A,Galway - Monivea - Mountbellew,,3,,, -4380_78139,7778020,360A,Waterford - WIT - Tramore,,3,,, -4380_78140,7778020,279A,Waterville - Caherciveen - Killarney,,3,,, -4380_78141,7778020,103X,Dublin - Ashbourne - Duleek - Navan,,3,,, -4380_78142,7778020,105X,UCD - M3 - Ratoath - Ashbourne,,3,,, -4380_78143,7778020,220X,Ovens - Carrigaline - Crosshaven,,3,,, -4380_78144,7778020,101X,Wilton Tce - Drogheda - Termon Abbey,,3,,, -4380_78145,7778020,109B,Dublin - Dunshaughlin - Trim,,3,,, -4380_78146,7778020,245X,Busaras - Fermoy - Cork,,3,,, -4380_78147,7778020,109X,Dublin - Kells - Cavan Hourly Express,,3,,, -4380_78148,7778020,111A,Delvin - Granard - Cavan,,3,,, -4380_78149,7778020,111X,Dublin express - Athboy - Clonmellon,,3,,, -4380_78150,7778020,X30,Dublin - Donegal Express,,3,,, -4380_78151,7778020,223X,South Mall - Haulbowline,,3,,, -4380_78152,7778020,X32,Dublin - Letterkenny,,3,,, -4380_78153,7778020,A1,Bellanamulla - Station - Creggan,,3,,, -4380_78154,7778020,A2,Bellanamulla - Station - Creggan,,3,,, -4380_78155,7778020,304A,Raheen - Bus Station - UL,,3,,, -4380_78156,7778020,NX,Dublin Wilton Terrace - Navan,,3,,, diff --git a/server/assets/GTFS_Realtime/trips.txt b/server/assets/GTFS_Realtime/trips.txt deleted file mode 100644 index 6a67833..0000000 --- a/server/assets/GTFS_Realtime/trips.txt +++ /dev/null @@ -1,160019 +0,0 @@ -route_id,service_id,trip_id,trip_headsign,trip_short_name,direction_id,block_id,shape_id -3778_48886,68,3778_1,Brides Glen,193.MF-BH.93-GRN-y11,0,3778_7778148_Txc104989,3778_1 -3778_48886,68,3778_10,Brides Glen,196.MF-BH.93-GRN-y11,0,3778_7778148_Txc104998,3778_2 -3778_48886,69,3778_1001,Sandyford,241.Sat.93-GRN-y11-1,0,3778_7778148_Txc105158,3778_4 -3778_48886,70,3778_1002,Sandyford,241.gf.93-GRN-y11-16,0,3778_7778148_Txc105159,3778_4 -3778_48886,68,3778_1003,Sandyford,354.MF-BH.93-GRN-y11,0,3778_7778148_Txc105380,3778_4 -3778_48886,69,3778_1007,Brides Glen,240.Sat.93-GRN-y11-1,0,3778_7778148_Txc105155,3778_5 -3778_48886,70,3778_1008,Brides Glen,240.gf.93-GRN-y11-16,0,3778_7778148_Txc105156,3778_5 -3778_48886,68,3778_101,Sandyford,216.MF-BH.93-GRN-y11,0,3778_7778148_Txc105070,3778_7 -3778_48886,68,3778_1012,Brides Glen,353.MF-BH.93-GRN-y11,0,3778_7778148_Txc105379,3778_5 -3778_48886,71,3778_1013,Brides Glen,142.SuBH.93-GRN-y11-,0,3778_7778148_Txc104802,3778_1 -3778_48886,68,3778_1018,Sandyford,356.MF-BH.93-GRN-y11,0,3778_7778148_Txc105382,3778_4 -3778_48886,69,3778_1019,Sandyford,243.Sat.93-GRN-y11-1,0,3778_7778148_Txc105164,3778_4 -3778_48886,69,3778_102,Brides Glen,144.Sat.93-GRN-y11-1,0,3778_7778148_Txc104809,3778_1 -3778_48886,70,3778_1020,Sandyford,243.gf.93-GRN-y11-16,0,3778_7778148_Txc105165,3778_4 -3778_48886,69,3778_1024,Brides Glen,242.Sat.93-GRN-y11-1,0,3778_7778148_Txc105161,3778_5 -3778_48886,70,3778_1025,Brides Glen,242.gf.93-GRN-y11-16,0,3778_7778148_Txc105162,3778_5 -3778_48886,68,3778_1026,Brides Glen,355.MF-BH.93-GRN-y11,0,3778_7778148_Txc105381,3778_5 -3778_48886,70,3778_103,Brides Glen,144.gf.93-GRN-y11-16,0,3778_7778148_Txc104811,3778_1 -3778_48886,71,3778_1030,Brides Glen,143.SuBH.93-GRN-y11-,0,3778_7778148_Txc104806,3778_1 -3778_48886,68,3778_1035,Sandyford,358.MF-BH.93-GRN-y11,0,3778_7778148_Txc105384,3778_4 -3778_48886,69,3778_1036,Sandyford,245.Sat.93-GRN-y11-1,0,3778_7778148_Txc105170,3778_4 -3778_48886,70,3778_1037,Sandyford,245.gf.93-GRN-y11-16,0,3778_7778148_Txc105171,3778_4 -3778_48886,68,3778_1040,Brides Glen,357.MF-BH.93-GRN-y11,0,3778_7778148_Txc105383,3778_5 -3778_48886,69,3778_1041,Brides Glen,244.Sat.93-GRN-y11-1,0,3778_7778148_Txc105167,3778_5 -3778_48886,70,3778_1042,Brides Glen,244.gf.93-GRN-y11-16,0,3778_7778148_Txc105168,3778_5 -3778_48886,71,3778_1045,Brides Glen,144.SuBH.93-GRN-y11-,0,3778_7778148_Txc104810,3778_1 -3778_48886,68,3778_1050,Sandyford,360.MF-BH.93-GRN-y11,0,3778_7778148_Txc105390,3778_4 -3778_48886,69,3778_1051,Sandyford,247.Sat.93-GRN-y11-1,0,3778_7778148_Txc105176,3778_4 -3778_48886,70,3778_1052,Sandyford,247.gf.93-GRN-y11-16,0,3778_7778148_Txc105177,3778_4 -3778_48886,68,3778_1055,Brides Glen,359.MF-BH.93-GRN-y11,0,3778_7778148_Txc105385,3778_5 -3778_48886,69,3778_1056,Brides Glen,246.Sat.93-GRN-y11-1,0,3778_7778148_Txc105173,3778_5 -3778_48886,70,3778_1057,Brides Glen,246.gf.93-GRN-y11-16,0,3778_7778148_Txc105174,3778_5 -3778_48886,71,3778_1060,Brides Glen,145.SuBH.93-GRN-y11-,0,3778_7778148_Txc104814,3778_1 -3778_48886,68,3778_1065,Sandyford,362.MF-BH.93-GRN-y11,0,3778_7778148_Txc105392,3778_4 -3778_48886,69,3778_1066,Sandyford,249.Sat.93-GRN-y11-1,0,3778_7778148_Txc105182,3778_4 -3778_48886,70,3778_1067,Sandyford,249.gf.93-GRN-y11-16,0,3778_7778148_Txc105183,3778_4 -3778_48886,68,3778_1068,Brides Glen,361.MF-BH.93-GRN-y11,0,3778_7778148_Txc105391,3778_5 -3778_48886,68,3778_107,Sandyford,220.MF-BH.93-GRN-y11,0,3778_7778148_Txc105086,3778_4 -3778_48886,71,3778_1071,Brides Glen,146.SuBH.93-GRN-y11-,0,3778_7778148_Txc104818,3778_1 -3778_48886,68,3778_1076,Sandyford,364.MF-BH.93-GRN-y11,0,3778_7778148_Txc105394,3778_4 -3778_48886,69,3778_1077,Brides Glen,248.Sat.93-GRN-y11-1,0,3778_7778148_Txc105179,3778_5 -3778_48886,70,3778_1078,Brides Glen,248.gf.93-GRN-y11-16,0,3778_7778148_Txc105180,3778_5 -3778_48886,68,3778_108,Brides Glen,219.MF-BH.93-GRN-y11,0,3778_7778148_Txc105079,3778_5 -3778_48886,68,3778_1081,Brides Glen,363.MF-BH.93-GRN-y11,0,3778_7778148_Txc105393,3778_5 -3778_48886,69,3778_1082,Sandyford,251.Sat.93-GRN-y11-1,0,3778_7778148_Txc105192,3778_4 -3778_48886,70,3778_1083,Sandyford,251.gf.93-GRN-y11-16,0,3778_7778148_Txc105193,3778_4 -3778_48886,71,3778_1086,Brides Glen,147.SuBH.93-GRN-y11-,0,3778_7778148_Txc104822,3778_1 -3778_48886,68,3778_109,Sandyford,222.MF-BH.93-GRN-y11,0,3778_7778148_Txc105092,3778_4 -3778_48886,68,3778_1091,Sandyford,366.MF-BH.93-GRN-y11,0,3778_7778148_Txc105396,3778_4 -3778_48886,69,3778_1092,Brides Glen,250.Sat.93-GRN-y11-1,0,3778_7778148_Txc105189,3778_5 -3778_48886,70,3778_1093,Brides Glen,250.gf.93-GRN-y11-16,0,3778_7778148_Txc105190,3778_5 -3778_48886,68,3778_1096,Brides Glen,365.MF-BH.93-GRN-y11,0,3778_7778148_Txc105395,3778_5 -3778_48886,71,3778_1097,Brides Glen,148.SuBH.93-GRN-y11-,0,3778_7778148_Txc104826,3778_1 -3778_48886,69,3778_11,Brides Glen,135.Sat.93-GRN-y11-1,0,3778_7778148_Txc104769,3778_2 -3778_48886,71,3778_110,Brides Glen,85.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105628,3778_1 -3778_48886,68,3778_1102,Sandyford,368.MF-BH.93-GRN-y11,0,3778_7778148_Txc105398,3778_4 -3778_48886,69,3778_1103,Sandyford,253.Sat.93-GRN-y11-1,0,3778_7778148_Txc105198,3778_4 -3778_48886,70,3778_1104,Sandyford,253.gf.93-GRN-y11-16,0,3778_7778148_Txc105199,3778_4 -3778_48886,69,3778_1107,Brides Glen,252.Sat.93-GRN-y11-1,0,3778_7778148_Txc105195,3778_5 -3778_48886,70,3778_1108,Brides Glen,252.gf.93-GRN-y11-16,0,3778_7778148_Txc105196,3778_5 -3778_48886,68,3778_1111,Brides Glen,367.MF-BH.93-GRN-y11,0,3778_7778148_Txc105397,3778_5 -3778_48886,71,3778_1112,Brides Glen,149.SuBH.93-GRN-y11-,0,3778_7778148_Txc104830,3778_1 -3778_48886,68,3778_1113,Brides Glen,370.MF-BH.93-GRN-y11,0,3778_7778148_Txc105404,3778_1 -3778_48886,69,3778_1118,Sandyford,255.Sat.93-GRN-y11-1,0,3778_7778148_Txc105204,3778_4 -3778_48886,70,3778_1119,Sandyford,255.gf.93-GRN-y11-16,0,3778_7778148_Txc105205,3778_4 -3778_48886,68,3778_1122,Sandyford,369.MF-BH.93-GRN-y11,0,3778_7778148_Txc105399,3778_8 -3778_48886,69,3778_1123,Brides Glen,254.Sat.93-GRN-y11-1,0,3778_7778148_Txc105201,3778_5 -3778_48886,70,3778_1124,Brides Glen,254.gf.93-GRN-y11-16,0,3778_7778148_Txc105202,3778_5 -3778_48886,71,3778_1127,Brides Glen,150.SuBH.93-GRN-y11-,0,3778_7778148_Txc104838,3778_1 -3778_48886,68,3778_1128,Brides Glen,372.MF-BH.93-GRN-y11,0,3778_7778148_Txc105406,3778_1 -3778_48886,69,3778_1133,Sandyford,257.Sat.93-GRN-y11-1,0,3778_7778148_Txc105210,3778_4 -3778_48886,70,3778_1134,Sandyford,257.gf.93-GRN-y11-16,0,3778_7778148_Txc105211,3778_4 -3778_48886,68,3778_1135,Sandyford,371.MF-BH.93-GRN-y11,0,3778_7778148_Txc105405,3778_8 -3778_48886,69,3778_1138,Brides Glen,256.Sat.93-GRN-y11-1,0,3778_7778148_Txc105207,3778_5 -3778_48886,70,3778_1139,Brides Glen,256.gf.93-GRN-y11-16,0,3778_7778148_Txc105208,3778_5 -3778_48886,69,3778_114,Brides Glen,145.Sat.93-GRN-y11-1,0,3778_7778148_Txc104813,3778_1 -3778_48886,71,3778_1142,Brides Glen,151.SuBH.93-GRN-y11-,0,3778_7778148_Txc104842,3778_1 -3778_48886,68,3778_1143,Brides Glen,373.MF-BH.93-GRN-y11,0,3778_7778148_Txc105407,3778_1 -3778_48886,69,3778_1148,Sandyford,259.Sat.93-GRN-y11-1,0,3778_7778148_Txc105216,3778_4 -3778_48886,70,3778_1149,Sandyford,259.gf.93-GRN-y11-16,0,3778_7778148_Txc105217,3778_4 -3778_48886,70,3778_115,Brides Glen,145.gf.93-GRN-y11-16,0,3778_7778148_Txc104815,3778_1 -3778_48886,69,3778_1152,Brides Glen,258.Sat.93-GRN-y11-1,0,3778_7778148_Txc105213,3778_5 -3778_48886,70,3778_1153,Brides Glen,258.gf.93-GRN-y11-16,0,3778_7778148_Txc105214,3778_5 -3778_48886,71,3778_1156,Brides Glen,152.SuBH.93-GRN-y11-,0,3778_7778148_Txc104846,3778_1 -3778_48886,68,3778_1157,Brides Glen,374.MF-BH.93-GRN-y11,0,3778_7778148_Txc105408,3778_1 -3778_48886,69,3778_1162,Sandyford,261.Sat.93-GRN-y11-1,0,3778_7778148_Txc105226,3778_4 -3778_48886,70,3778_1163,Sandyford,261.gf.93-GRN-y11-16,0,3778_7778148_Txc105227,3778_4 -3778_48886,69,3778_1166,Brides Glen,260.Sat.93-GRN-y11-1,0,3778_7778148_Txc105223,3778_5 -3778_48886,70,3778_1167,Brides Glen,260.gf.93-GRN-y11-16,0,3778_7778148_Txc105224,3778_5 -3778_48886,71,3778_1170,Brides Glen,153.SuBH.93-GRN-y11-,0,3778_7778148_Txc104850,3778_1 -3778_48886,68,3778_1171,Brides Glen,375.MF-BH.93-GRN-y11,0,3778_7778148_Txc105409,3778_1 -3778_48886,69,3778_1176,Sandyford,263.Sat.93-GRN-y11-1,0,3778_7778148_Txc105232,3778_4 -3778_48886,70,3778_1177,Sandyford,263.gf.93-GRN-y11-16,0,3778_7778148_Txc105233,3778_4 -3778_48886,69,3778_1180,Brides Glen,262.Sat.93-GRN-y11-1,0,3778_7778148_Txc105229,3778_5 -3778_48886,70,3778_1181,Brides Glen,262.gf.93-GRN-y11-16,0,3778_7778148_Txc105230,3778_5 -3778_48886,71,3778_1184,Brides Glen,154.SuBH.93-GRN-y11-,0,3778_7778148_Txc104854,3778_1 -3778_48886,69,3778_1185,Brides Glen,264.Sat.93-GRN-y11-1,0,3778_7778148_Txc105235,3778_1 -3778_48886,70,3778_1186,Brides Glen,264.gf.93-GRN-y11-16,0,3778_7778148_Txc105236,3778_1 -3778_48886,68,3778_1187,Brides Glen,376.MF-BH.93-GRN-y11,0,3778_7778148_Txc105410,3778_1 -3778_48886,68,3778_119,Brides Glen,221.MF-BH.93-GRN-y11,0,3778_7778148_Txc105089,3778_5 -3778_48886,71,3778_1194,Brides Glen,155.SuBH.93-GRN-y11-,0,3778_7778148_Txc104858,3778_1 -3778_48886,69,3778_1195,Brides Glen,265.Sat.93-GRN-y11-1,0,3778_7778148_Txc105238,3778_1 -3778_48886,70,3778_1196,Brides Glen,265.gf.93-GRN-y11-16,0,3778_7778148_Txc105239,3778_1 -3778_48886,68,3778_1197,Brides Glen,377.MF-BH.93-GRN-y11,0,3778_7778148_Txc105411,3778_1 -3778_48886,70,3778_12,Brides Glen,135.gf.93-GRN-y11-16,0,3778_7778148_Txc104771,3778_2 -3778_48886,68,3778_120,Sandyford,224.MF-BH.93-GRN-y11,0,3778_7778148_Txc105098,3778_4 -3778_48886,71,3778_1204,Brides Glen,156.SuBH.93-GRN-y11-,0,3778_7778148_Txc104862,3778_1 -3778_48886,69,3778_1205,Brides Glen,266.Sat.93-GRN-y11-1,0,3778_7778148_Txc105241,3778_1 -3778_48886,70,3778_1206,Brides Glen,266.gf.93-GRN-y11-16,0,3778_7778148_Txc105242,3778_1 -3778_48886,68,3778_1207,Brides Glen,378.MF-BH.93-GRN-y11,0,3778_7778148_Txc105412,3778_1 -3778_48886,71,3778_121,Brides Glen,82.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105616,3778_2 -3778_48886,71,3778_1214,Brides Glen,157.SuBH.93-GRN-y11-,0,3778_7778148_Txc104866,3778_1 -3778_48886,69,3778_1215,Brides Glen,267.Sat.93-GRN-y11-1,0,3778_7778148_Txc105244,3778_1 -3778_48886,70,3778_1216,Brides Glen,267.gf.93-GRN-y11-16,0,3778_7778148_Txc105245,3778_1 -3778_48886,68,3778_1217,Brides Glen,379.MF-BH.93-GRN-y11,0,3778_7778148_Txc105413,3778_1 -3778_48886,69,3778_1224,Brides Glen,268.Sat.93-GRN-y11-1,0,3778_7778148_Txc105247,3778_1 -3778_48886,70,3778_1225,Brides Glen,268.gf.93-GRN-y11-16,0,3778_7778148_Txc105248,3778_1 -3778_48886,68,3778_1226,Brides Glen,380.MF-BH.93-GRN-y11,0,3778_7778148_Txc105418,3778_1 -3778_48886,69,3778_1229,Brides Glen,269.Sat.93-GRN-y11-1,0,3778_7778148_Txc105250,3778_1 -3778_48886,70,3778_1230,Brides Glen,269.gf.93-GRN-y11-16,0,3778_7778148_Txc105251,3778_1 -3778_48886,68,3778_1231,Brides Glen,381.MF-BH.93-GRN-y11,0,3778_7778148_Txc105419,3778_1 -3778_48886,69,3778_1234,Brides Glen,270.Sat.93-GRN-y11-1,0,3778_7778148_Txc105257,3778_1 -3778_48886,70,3778_1235,Brides Glen,270.gf.93-GRN-y11-16,0,3778_7778148_Txc105258,3778_1 -3778_48886,68,3778_1236,Brides Glen,382.MF-BH.93-GRN-y11,0,3778_7778148_Txc105420,3778_1 -3778_48886,69,3778_1239,Brides Glen,271.Sat.93-GRN-y11-1,0,3778_7778148_Txc105260,3778_1 -3778_48886,70,3778_1240,Brides Glen,271.gf.93-GRN-y11-16,0,3778_7778148_Txc105261,3778_1 -3778_48886,68,3778_1241,Brides Glen,383.MF-BH.93-GRN-y11,0,3778_7778148_Txc105421,3778_1 -3778_48886,71,3778_125,Brides Glen,86.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105632,3778_1 -3778_48886,68,3778_1250,Broombridge,2.MF-BH.93-GRN-y11-1,1,3778_7778148_Txc105010,3778_12 -3778_48886,68,3778_1251,Broombridge,3.MF-BH.93-GRN-y11-1,1,3778_7778148_Txc105298,3778_13 -3778_48886,68,3778_1252,Broombridge,1.MF-BH.93-GRN-y11-1,1,3778_7778148_Txc104608,3778_11 -3778_48886,68,3778_1253,Broombridge,5.MF-BH.93-GRN-y11-1,1,3778_7778148_Txc105470,3778_13 -3778_48886,68,3778_1254,Parnell,4.MF-BH.93-GRN-y11-1,1,3778_7778148_Txc105426,3778_15 -3778_48886,68,3778_1255,Broombridge,7.MF-BH.93-GRN-y11-1,1,3778_7778148_Txc105558,3778_13 -3778_48886,68,3778_1256,Parnell,6.MF-BH.93-GRN-y11-1,1,3778_7778148_Txc105514,3778_15 -3778_48886,68,3778_1257,Parnell,9.MF-BH.93-GRN-y11-1,1,3778_7778148_Txc105646,3778_14 -3778_48886,69,3778_1258,Broombridge,2.Sat.93-GRN-y11-16.,1,3778_7778148_Txc105011,3778_12 -3778_48886,70,3778_1259,Broombridge,2.gf.93-GRN-y11-16.1,1,3778_7778148_Txc105013,3778_12 -3778_48886,69,3778_1260,Broombridge,3.Sat.93-GRN-y11-16.,1,3778_7778148_Txc105299,3778_13 -3778_48886,70,3778_1261,Broombridge,3.gf.93-GRN-y11-16.2,1,3778_7778148_Txc105301,3778_13 -3778_48886,68,3778_1268,Parnell,11.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104656,3778_14 -3778_48886,68,3778_1269,Broombridge,8.MF-BH.93-GRN-y11-1,1,3778_7778148_Txc105602,3778_12 -3778_48886,69,3778_1270,Broombridge,1.Sat.93-GRN-y11-16.,1,3778_7778148_Txc104609,3778_11 -3778_48886,70,3778_1271,Broombridge,1.gf.93-GRN-y11-16.4,1,3778_7778148_Txc104611,3778_11 -3778_48886,68,3778_1275,Parnell,13.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104744,3778_14 -3778_48886,68,3778_1276,Broombridge,10.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104612,3778_12 -3778_48886,69,3778_1277,Broombridge,4.Sat.93-GRN-y11-16.,1,3778_7778148_Txc105427,3778_13 -3778_48886,70,3778_1278,Broombridge,4.gf.93-GRN-y11-16.2,1,3778_7778148_Txc105429,3778_13 -3778_48886,68,3778_1282,Parnell,15.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104832,3778_14 -3778_48886,68,3778_1283,Broombridge,12.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104700,3778_12 -3778_48886,71,3778_1284,Broombridge,2.SuBH.93-GRN-y11-16,1,3778_7778148_Txc105012,3778_12 -3778_48886,71,3778_1285,Broombridge,3.SuBH.93-GRN-y11-16,1,3778_7778148_Txc105300,3778_13 -3778_48886,68,3778_129,Brides Glen,223.MF-BH.93-GRN-y11,0,3778_7778148_Txc105095,3778_5 -3778_48886,68,3778_1292,Parnell,17.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104908,3778_14 -3778_48886,68,3778_1293,Broombridge,14.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104788,3778_12 -3778_48886,71,3778_1294,Broombridge,1.SuBH.93-GRN-y11-16,1,3778_7778148_Txc104610,3778_11 -3778_48886,69,3778_1298,Broombridge,5.Sat.93-GRN-y11-16.,1,3778_7778148_Txc105471,3778_13 -3778_48886,70,3778_1299,Broombridge,5.gf.93-GRN-y11-16.2,1,3778_7778148_Txc105473,3778_13 -3778_48886,71,3778_13,Brides Glen,79.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105600,3778_1 -3778_48886,68,3778_130,Sandyford,226.MF-BH.93-GRN-y11,0,3778_7778148_Txc105104,3778_4 -3778_48886,68,3778_1303,Parnell,19.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104976,3778_14 -3778_48886,68,3778_1304,Broombridge,16.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104874,3778_12 -3778_48886,71,3778_1305,Broombridge,4.SuBH.93-GRN-y11-16,1,3778_7778148_Txc105428,3778_13 -3778_48886,68,3778_1309,Parnell,21.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105048,3778_14 -3778_48886,69,3778_131,Brides Glen,146.Sat.93-GRN-y11-1,0,3778_7778148_Txc104817,3778_1 -3778_48886,68,3778_1310,Broombridge,18.MF-BH.93-GRN-y11-,1,3778_7778148_Txc104942,3778_12 -3778_48886,68,3778_1311,Parnell,23.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105116,3778_14 -3778_48886,69,3778_1312,Broombridge,6.Sat.93-GRN-y11-16.,1,3778_7778148_Txc105515,3778_13 -3778_48886,70,3778_1313,Broombridge,6.gf.93-GRN-y11-16.2,1,3778_7778148_Txc105517,3778_13 -3778_48886,68,3778_1317,Broombridge,20.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105014,3778_12 -3778_48886,68,3778_1318,Parnell,25.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105184,3778_14 -3778_48886,71,3778_1319,Broombridge,5.SuBH.93-GRN-y11-16,1,3778_7778148_Txc105472,3778_13 -3778_48886,70,3778_132,Brides Glen,146.gf.93-GRN-y11-16,0,3778_7778148_Txc104819,3778_1 -3778_48886,68,3778_1323,Broombridge,22.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105082,3778_12 -3778_48886,68,3778_1324,Parnell,27.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105252,3778_14 -3778_48886,69,3778_1325,Broombridge,7.Sat.93-GRN-y11-16.,1,3778_7778148_Txc105559,3778_13 -3778_48886,70,3778_1326,Broombridge,7.gf.93-GRN-y11-16.2,1,3778_7778148_Txc105561,3778_13 -3778_48886,68,3778_1330,Parnell,28.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105270,3778_14 -3778_48886,68,3778_1331,Broombridge,24.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105150,3778_12 -3778_48886,68,3778_1332,Parnell,30.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105302,3778_14 -3778_48886,68,3778_1333,Broombridge,32.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105330,3778_13 -3778_48886,68,3778_1334,Broombridge,26.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105218,3778_12 -3778_48886,71,3778_1335,Broombridge,6.SuBH.93-GRN-y11-16,1,3778_7778148_Txc105516,3778_13 -3778_48886,69,3778_1336,Broombridge,8.Sat.93-GRN-y11-16.,1,3778_7778148_Txc105603,3778_13 -3778_48886,70,3778_1337,Broombridge,8.gf.93-GRN-y11-16.2,1,3778_7778148_Txc105605,3778_13 -3778_48886,68,3778_1344,Parnell,34.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105358,3778_14 -3778_48886,68,3778_1345,Broombridge,35.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105372,3778_13 -3778_48886,68,3778_1346,Broombridge,29.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105284,3778_12 -3778_48886,68,3778_1347,Parnell,31.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105316,3778_15 -3778_48886,71,3778_1348,Broombridge,7.SuBH.93-GRN-y11-16,1,3778_7778148_Txc105560,3778_13 -3778_48886,69,3778_1349,Broombridge,9.Sat.93-GRN-y11-16.,1,3778_7778148_Txc105647,3778_13 -3778_48886,70,3778_1350,Broombridge,9.gf.93-GRN-y11-16.2,1,3778_7778148_Txc105649,3778_13 -3778_48886,68,3778_1357,Broombridge,38.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105414,3778_13 -3778_48886,68,3778_1358,Parnell,33.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105344,3778_15 -3778_48886,68,3778_1359,Parnell,40.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105430,3778_14 -3778_48886,68,3778_136,Brides Glen,225.MF-BH.93-GRN-y11,0,3778_7778148_Txc105101,3778_5 -3778_48886,68,3778_1360,Broombridge,41.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105434,3778_13 -3778_48886,69,3778_1361,Broombridge,10.Sat.93-GRN-y11-16,1,3778_7778148_Txc104613,3778_13 -3778_48886,70,3778_1362,Broombridge,10.gf.93-GRN-y11-16.,1,3778_7778148_Txc104615,3778_13 -3778_48886,68,3778_1363,Parnell,36.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105386,3778_15 -3778_48886,71,3778_1364,Broombridge,8.SuBH.93-GRN-y11-16,1,3778_7778148_Txc105604,3778_13 -3778_48886,68,3778_137,Sandyford,229.MF-BH.93-GRN-y11,0,3778_7778148_Txc105113,3778_4 -3778_48886,68,3778_1371,Parnell,43.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105442,3778_14 -3778_48886,68,3778_1372,Parnell,37.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105400,3778_15 -3778_48886,68,3778_1373,Broombridge,45.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105450,3778_13 -3778_48886,68,3778_1374,Broombridge,39.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105422,3778_12 -3778_48886,68,3778_1375,Parnell,46.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105454,3778_14 -3778_48886,69,3778_1376,Parnell,11.Sat.93-GRN-y11-16,1,3778_7778148_Txc104657,3778_14 -3778_48886,70,3778_1377,Parnell,11.gf.93-GRN-y11-16.,1,3778_7778148_Txc104659,3778_14 -3778_48886,71,3778_1378,Broombridge,9.SuBH.93-GRN-y11-16,1,3778_7778148_Txc105648,3778_13 -3778_48886,71,3778_138,Brides Glen,87.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105636,3778_1 -3778_48886,68,3778_1385,Broombridge,42.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105438,3778_12 -3778_48886,68,3778_1386,Parnell,48.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105462,3778_14 -3778_48886,68,3778_1387,Broombridge,44.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105446,3778_12 -3778_48886,71,3778_1388,Broombridge,10.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104614,3778_13 -3778_48886,69,3778_1389,Parnell,13.Sat.93-GRN-y11-16,1,3778_7778148_Txc104745,3778_14 -3778_48886,70,3778_1390,Parnell,13.gf.93-GRN-y11-16.,1,3778_7778148_Txc104747,3778_14 -3778_48886,68,3778_1398,Parnell,50.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105474,3778_14 -3778_48886,68,3778_1399,Broombridge,47.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105458,3778_12 -3778_48886,69,3778_1400,Broombridge,12.Sat.93-GRN-y11-16,1,3778_7778148_Txc104701,3778_12 -3778_48886,70,3778_1401,Broombridge,12.gf.93-GRN-y11-16.,1,3778_7778148_Txc104703,3778_12 -3778_48886,68,3778_1405,Parnell,52.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105482,3778_14 -3778_48886,69,3778_1406,Parnell,15.Sat.93-GRN-y11-16,1,3778_7778148_Txc104833,3778_14 -3778_48886,70,3778_1407,Parnell,15.gf.93-GRN-y11-16.,1,3778_7778148_Txc104835,3778_14 -3778_48886,71,3778_1411,Broombridge,11.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104658,3778_13 -3778_48886,68,3778_1416,Broombridge,49.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105466,3778_12 -3778_48886,68,3778_1417,Parnell,54.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105490,3778_14 -3778_48886,69,3778_1418,Broombridge,14.Sat.93-GRN-y11-16,1,3778_7778148_Txc104789,3778_12 -3778_48886,70,3778_1419,Broombridge,14.gf.93-GRN-y11-16.,1,3778_7778148_Txc104791,3778_12 -3778_48886,68,3778_142,Sandyford,227.MF-BH.93-GRN-y11,0,3778_7778148_Txc105107,3778_8 -3778_48886,68,3778_1423,Broombridge,51.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105478,3778_12 -3778_48886,69,3778_1424,Parnell,17.Sat.93-GRN-y11-16,1,3778_7778148_Txc104909,3778_14 -3778_48886,70,3778_1425,Parnell,17.gf.93-GRN-y11-16.,1,3778_7778148_Txc104911,3778_14 -3778_48886,71,3778_1429,Broombridge,12.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104702,3778_13 -3778_48886,69,3778_143,Brides Glen,147.Sat.93-GRN-y11-1,0,3778_7778148_Txc104821,3778_1 -3778_48886,68,3778_1434,Parnell,56.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105498,3778_14 -3778_48886,68,3778_1435,Broombridge,53.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105486,3778_12 -3778_48886,68,3778_1436,Broombridge,57.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105502,3778_13 -3778_48886,69,3778_1437,Broombridge,16.Sat.93-GRN-y11-16,1,3778_7778148_Txc104875,3778_12 -3778_48886,70,3778_1438,Broombridge,16.gf.93-GRN-y11-16.,1,3778_7778148_Txc104877,3778_12 -3778_48886,70,3778_144,Brides Glen,147.gf.93-GRN-y11-16,0,3778_7778148_Txc104823,3778_1 -3778_48886,69,3778_1442,Parnell,19.Sat.93-GRN-y11-16,1,3778_7778148_Txc104977,3778_14 -3778_48886,70,3778_1443,Parnell,19.gf.93-GRN-y11-16.,1,3778_7778148_Txc104979,3778_14 -3778_48886,71,3778_1447,Broombridge,13.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104746,3778_13 -3778_48886,68,3778_1452,Broombridge,55.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105494,3778_12 -3778_48886,68,3778_1453,Parnell,58.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105506,3778_14 -3778_48886,69,3778_1454,Broombridge,18.Sat.93-GRN-y11-16,1,3778_7778148_Txc104943,3778_12 -3778_48886,70,3778_1455,Broombridge,18.gf.93-GRN-y11-16.,1,3778_7778148_Txc104945,3778_12 -3778_48886,69,3778_1459,Parnell,21.Sat.93-GRN-y11-16,1,3778_7778148_Txc105049,3778_14 -3778_48886,70,3778_1460,Parnell,21.gf.93-GRN-y11-16.,1,3778_7778148_Txc105051,3778_14 -3778_48886,71,3778_1464,Broombridge,14.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104790,3778_13 -3778_48886,68,3778_1465,Parnell,60.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105518,3778_14 -3778_48886,69,3778_1470,Broombridge,20.Sat.93-GRN-y11-16,1,3778_7778148_Txc105015,3778_12 -3778_48886,70,3778_1471,Broombridge,20.gf.93-GRN-y11-16.,1,3778_7778148_Txc105017,3778_12 -3778_48886,68,3778_1475,Broombridge,59.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105510,3778_12 -3778_48886,68,3778_1476,Parnell,62.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105526,3778_14 -3778_48886,69,3778_1477,Parnell,23.Sat.93-GRN-y11-16,1,3778_7778148_Txc105117,3778_14 -3778_48886,70,3778_1478,Parnell,23.gf.93-GRN-y11-16.,1,3778_7778148_Txc105119,3778_14 -3778_48886,68,3778_148,Sandyford,232.MF-BH.93-GRN-y11,0,3778_7778148_Txc105126,3778_4 -3778_48886,71,3778_1482,Broombridge,15.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104834,3778_13 -3778_48886,68,3778_1487,Broombridge,63.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105530,3778_13 -3778_48886,69,3778_1488,Broombridge,22.Sat.93-GRN-y11-16,1,3778_7778148_Txc105083,3778_12 -3778_48886,70,3778_1489,Broombridge,22.gf.93-GRN-y11-16.,1,3778_7778148_Txc105085,3778_12 -3778_48886,68,3778_149,Brides Glen,228.MF-BH.93-GRN-y11,0,3778_7778148_Txc105110,3778_5 -3778_48886,68,3778_1490,Broombridge,61.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105522,3778_12 -3778_48886,68,3778_1494,Parnell,64.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105534,3778_14 -3778_48886,69,3778_1495,Parnell,25.Sat.93-GRN-y11-16,1,3778_7778148_Txc105185,3778_14 -3778_48886,70,3778_1496,Parnell,25.gf.93-GRN-y11-16.,1,3778_7778148_Txc105187,3778_14 -3778_48886,68,3778_150,Sandyford,230.MF-BH.93-GRN-y11,0,3778_7778148_Txc105120,3778_8 -3778_48886,71,3778_1500,Broombridge,16.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104876,3778_13 -3778_48886,68,3778_1505,Parnell,66.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105542,3778_14 -3778_48886,69,3778_1506,Broombridge,24.Sat.93-GRN-y11-16,1,3778_7778148_Txc105151,3778_12 -3778_48886,70,3778_1507,Broombridge,24.gf.93-GRN-y11-16.,1,3778_7778148_Txc105153,3778_12 -3778_48886,68,3778_151,Sandyford,235.MF-BH.93-GRN-y11,0,3778_7778148_Txc105135,3778_4 -3778_48886,71,3778_1511,Broombridge,17.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104910,3778_13 -3778_48886,69,3778_1516,Parnell,27.Sat.93-GRN-y11-16,1,3778_7778148_Txc105253,3778_14 -3778_48886,70,3778_1517,Parnell,27.gf.93-GRN-y11-16.,1,3778_7778148_Txc105255,3778_14 -3778_48886,71,3778_152,Brides Glen,88.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105640,3778_1 -3778_48886,68,3778_1521,Broombridge,65.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105538,3778_12 -3778_48886,68,3778_1522,Parnell,68.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105550,3778_14 -3778_48886,71,3778_1523,Broombridge,18.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104944,3778_13 -3778_48886,69,3778_1528,Broombridge,26.Sat.93-GRN-y11-16,1,3778_7778148_Txc105219,3778_12 -3778_48886,70,3778_1529,Broombridge,26.gf.93-GRN-y11-16.,1,3778_7778148_Txc105221,3778_12 -3778_48886,69,3778_1533,Parnell,29.Sat.93-GRN-y11-16,1,3778_7778148_Txc105285,3778_14 -3778_48886,70,3778_1534,Parnell,29.gf.93-GRN-y11-16.,1,3778_7778148_Txc105287,3778_14 -3778_48886,68,3778_1535,Broombridge,69.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105554,3778_13 -3778_48886,68,3778_1539,Broombridge,67.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105546,3778_12 -3778_48886,71,3778_1540,Broombridge,19.SuBH.93-GRN-y11-1,1,3778_7778148_Txc104978,3778_13 -3778_48886,68,3778_1541,Parnell,70.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105562,3778_14 -3778_48886,69,3778_1546,Broombridge,28.Sat.93-GRN-y11-16,1,3778_7778148_Txc105271,3778_12 -3778_48886,70,3778_1547,Broombridge,28.gf.93-GRN-y11-16.,1,3778_7778148_Txc105273,3778_12 -3778_48886,69,3778_1551,Parnell,31.Sat.93-GRN-y11-16,1,3778_7778148_Txc105317,3778_14 -3778_48886,70,3778_1552,Parnell,31.gf.93-GRN-y11-16.,1,3778_7778148_Txc105319,3778_14 -3778_48886,71,3778_1556,Broombridge,20.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105016,3778_13 -3778_48886,68,3778_1557,Parnell,72.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105570,3778_14 -3778_48886,69,3778_156,Brides Glen,148.Sat.93-GRN-y11-1,0,3778_7778148_Txc104825,3778_1 -3778_48886,69,3778_1562,Broombridge,30.Sat.93-GRN-y11-16,1,3778_7778148_Txc105303,3778_12 -3778_48886,70,3778_1563,Broombridge,30.gf.93-GRN-y11-16.,1,3778_7778148_Txc105305,3778_12 -3778_48886,69,3778_1567,Parnell,33.Sat.93-GRN-y11-16,1,3778_7778148_Txc105345,3778_14 -3778_48886,70,3778_1568,Parnell,33.gf.93-GRN-y11-16.,1,3778_7778148_Txc105347,3778_14 -3778_48886,70,3778_157,Brides Glen,148.gf.93-GRN-y11-16,0,3778_7778148_Txc104827,3778_1 -3778_48886,71,3778_1572,Broombridge,21.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105050,3778_13 -3778_48886,68,3778_1573,Broombridge,71.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105566,3778_12 -3778_48886,68,3778_1578,Parnell,74.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105578,3778_14 -3778_48886,69,3778_1579,Broombridge,32.Sat.93-GRN-y11-16,1,3778_7778148_Txc105331,3778_12 -3778_48886,68,3778_158,Brides Glen,231.MF-BH.93-GRN-y11,0,3778_7778148_Txc105123,3778_5 -3778_48886,70,3778_1580,Broombridge,32.gf.93-GRN-y11-16.,1,3778_7778148_Txc105333,3778_12 -3778_48886,71,3778_1584,Broombridge,22.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105084,3778_13 -3778_48886,68,3778_1589,Broombridge,73.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105574,3778_12 -3778_48886,69,3778_1590,Parnell,35.Sat.93-GRN-y11-16,1,3778_7778148_Txc105373,3778_14 -3778_48886,70,3778_1591,Parnell,35.gf.93-GRN-y11-16.,1,3778_7778148_Txc105375,3778_14 -3778_48886,68,3778_1592,Parnell,76.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105586,3778_14 -3778_48886,71,3778_1596,Broombridge,23.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105118,3778_13 -3778_48886,69,3778_1601,Broombridge,34.Sat.93-GRN-y11-16,1,3778_7778148_Txc105359,3778_12 -3778_48886,70,3778_1602,Broombridge,34.gf.93-GRN-y11-16.,1,3778_7778148_Txc105361,3778_12 -3778_48886,68,3778_1606,Broombridge,75.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105582,3778_12 -3778_48886,68,3778_1607,Parnell,78.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105594,3778_14 -3778_48886,69,3778_1608,Parnell,37.Sat.93-GRN-y11-16,1,3778_7778148_Txc105401,3778_14 -3778_48886,70,3778_1609,Parnell,37.gf.93-GRN-y11-16.,1,3778_7778148_Txc105403,3778_14 -3778_48886,71,3778_1613,Broombridge,24.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105152,3778_13 -3778_48886,68,3778_1618,Broombridge,77.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105590,3778_12 -3778_48886,69,3778_1619,Broombridge,36.Sat.93-GRN-y11-16,1,3778_7778148_Txc105387,3778_12 -3778_48886,68,3778_162,Sandyford,233.MF-BH.93-GRN-y11,0,3778_7778148_Txc105129,3778_8 -3778_48886,70,3778_1620,Broombridge,36.gf.93-GRN-y11-16.,1,3778_7778148_Txc105389,3778_12 -3778_48886,68,3778_1621,Parnell,80.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105606,3778_14 -3778_48886,69,3778_1625,Parnell,39.Sat.93-GRN-y11-16,1,3778_7778148_Txc105423,3778_14 -3778_48886,70,3778_1626,Parnell,39.gf.93-GRN-y11-16.,1,3778_7778148_Txc105425,3778_14 -3778_48886,69,3778_163,Sandyford,149.Sat.93-GRN-y11-1,0,3778_7778148_Txc104829,3778_4 -3778_48886,71,3778_1630,Broombridge,25.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105186,3778_13 -3778_48886,68,3778_1635,Broombridge,79.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105598,3778_12 -3778_48886,68,3778_1636,Parnell,82.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105614,3778_14 -3778_48886,69,3778_1637,Broombridge,38.Sat.93-GRN-y11-16,1,3778_7778148_Txc105415,3778_12 -3778_48886,70,3778_1638,Broombridge,38.gf.93-GRN-y11-16.,1,3778_7778148_Txc105417,3778_12 -3778_48886,70,3778_164,Sandyford,149.gf.93-GRN-y11-16,0,3778_7778148_Txc104831,3778_4 -3778_48886,69,3778_1642,Parnell,41.Sat.93-GRN-y11-16,1,3778_7778148_Txc105435,3778_14 -3778_48886,70,3778_1643,Parnell,41.gf.93-GRN-y11-16.,1,3778_7778148_Txc105437,3778_14 -3778_48886,71,3778_1647,Broombridge,26.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105220,3778_13 -3778_48886,68,3778_1652,Broombridge,81.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105610,3778_12 -3778_48886,68,3778_1653,Parnell,84.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105622,3778_14 -3778_48886,69,3778_1654,Broombridge,40.Sat.93-GRN-y11-16,1,3778_7778148_Txc105431,3778_12 -3778_48886,70,3778_1655,Broombridge,40.gf.93-GRN-y11-16.,1,3778_7778148_Txc105433,3778_12 -3778_48886,71,3778_1659,Broombridge,27.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105254,3778_13 -3778_48886,69,3778_1664,Parnell,43.Sat.93-GRN-y11-16,1,3778_7778148_Txc105443,3778_14 -3778_48886,70,3778_1665,Parnell,43.gf.93-GRN-y11-16.,1,3778_7778148_Txc105445,3778_14 -3778_48886,68,3778_1669,Broombridge,83.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105618,3778_12 -3778_48886,68,3778_1670,Parnell,86.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105630,3778_14 -3778_48886,71,3778_1671,Broombridge,28.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105272,3778_13 -3778_48886,69,3778_1676,Broombridge,42.Sat.93-GRN-y11-16,1,3778_7778148_Txc105439,3778_12 -3778_48886,70,3778_1677,Broombridge,42.gf.93-GRN-y11-16.,1,3778_7778148_Txc105441,3778_12 -3778_48886,68,3778_168,Brides Glen,234.MF-BH.93-GRN-y11,0,3778_7778148_Txc105132,3778_5 -3778_48886,69,3778_1681,Parnell,45.Sat.93-GRN-y11-16,1,3778_7778148_Txc105451,3778_14 -3778_48886,70,3778_1682,Parnell,45.gf.93-GRN-y11-16.,1,3778_7778148_Txc105453,3778_14 -3778_48886,68,3778_1686,Broombridge,85.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105626,3778_12 -3778_48886,68,3778_1687,Parnell,88.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105638,3778_14 -3778_48886,71,3778_1688,Broombridge,29.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105286,3778_13 -3778_48886,68,3778_169,Sandyford,238.MF-BH.93-GRN-y11,0,3778_7778148_Txc105144,3778_4 -3778_48886,69,3778_1693,Broombridge,44.Sat.93-GRN-y11-16,1,3778_7778148_Txc105447,3778_12 -3778_48886,70,3778_1694,Broombridge,44.gf.93-GRN-y11-16.,1,3778_7778148_Txc105449,3778_12 -3778_48886,69,3778_1698,Parnell,47.Sat.93-GRN-y11-16,1,3778_7778148_Txc105459,3778_14 -3778_48886,70,3778_1699,Parnell,47.gf.93-GRN-y11-16.,1,3778_7778148_Txc105461,3778_14 -3778_48886,71,3778_170,Brides Glen,89.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105644,3778_1 -3778_48886,68,3778_1703,Broombridge,87.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105634,3778_12 -3778_48886,68,3778_1704,Parnell,90.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105650,3778_14 -3778_48886,71,3778_1705,Broombridge,30.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105304,3778_13 -3778_48886,69,3778_1710,Broombridge,46.Sat.93-GRN-y11-16,1,3778_7778148_Txc105455,3778_12 -3778_48886,70,3778_1711,Broombridge,46.gf.93-GRN-y11-16.,1,3778_7778148_Txc105457,3778_12 -3778_48886,69,3778_1715,Parnell,49.Sat.93-GRN-y11-16,1,3778_7778148_Txc105467,3778_14 -3778_48886,70,3778_1716,Parnell,49.gf.93-GRN-y11-16.,1,3778_7778148_Txc105469,3778_14 -3778_48886,68,3778_1720,Broombridge,89.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105642,3778_12 -3778_48886,68,3778_1721,Parnell,92.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105658,3778_14 -3778_48886,71,3778_1722,Broombridge,31.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105318,3778_13 -3778_48886,69,3778_1727,Broombridge,48.Sat.93-GRN-y11-16,1,3778_7778148_Txc105463,3778_12 -3778_48886,70,3778_1728,Broombridge,48.gf.93-GRN-y11-16.,1,3778_7778148_Txc105465,3778_12 -3778_48886,69,3778_1732,Parnell,51.Sat.93-GRN-y11-16,1,3778_7778148_Txc105479,3778_14 -3778_48886,70,3778_1733,Parnell,51.gf.93-GRN-y11-16.,1,3778_7778148_Txc105481,3778_14 -3778_48886,68,3778_1737,Broombridge,91.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105654,3778_12 -3778_48886,68,3778_1738,Parnell,94.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105666,3778_14 -3778_48886,71,3778_1739,Broombridge,32.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105332,3778_13 -3778_48886,69,3778_1744,Broombridge,50.Sat.93-GRN-y11-16,1,3778_7778148_Txc105475,3778_12 -3778_48886,70,3778_1745,Broombridge,50.gf.93-GRN-y11-16.,1,3778_7778148_Txc105477,3778_12 -3778_48886,69,3778_1749,Parnell,53.Sat.93-GRN-y11-16,1,3778_7778148_Txc105487,3778_14 -3778_48886,68,3778_175,Sandyford,236.MF-BH.93-GRN-y11,0,3778_7778148_Txc105138,3778_8 -3778_48886,70,3778_1750,Parnell,53.gf.93-GRN-y11-16.,1,3778_7778148_Txc105489,3778_14 -3778_48886,68,3778_1754,Broombridge,93.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105662,3778_12 -3778_48886,71,3778_1755,Broombridge,33.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105346,3778_13 -3778_48886,68,3778_1756,Parnell,96.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105674,3778_14 -3778_48886,69,3778_176,Brides Glen,150.Sat.93-GRN-y11-1,0,3778_7778148_Txc104837,3778_1 -3778_48886,69,3778_1761,Broombridge,52.Sat.93-GRN-y11-16,1,3778_7778148_Txc105483,3778_12 -3778_48886,70,3778_1762,Broombridge,52.gf.93-GRN-y11-16.,1,3778_7778148_Txc105485,3778_12 -3778_48886,69,3778_1766,Parnell,55.Sat.93-GRN-y11-16,1,3778_7778148_Txc105495,3778_14 -3778_48886,70,3778_1767,Parnell,55.gf.93-GRN-y11-16.,1,3778_7778148_Txc105497,3778_14 -3778_48886,70,3778_177,Brides Glen,150.gf.93-GRN-y11-16,0,3778_7778148_Txc104839,3778_1 -3778_48886,71,3778_1771,Broombridge,34.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105360,3778_13 -3778_48886,68,3778_1772,Broombridge,95.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105670,3778_12 -3778_48886,68,3778_1777,Parnell,98.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105682,3778_14 -3778_48886,69,3778_1778,Broombridge,54.Sat.93-GRN-y11-16,1,3778_7778148_Txc105491,3778_12 -3778_48886,70,3778_1779,Broombridge,54.gf.93-GRN-y11-16.,1,3778_7778148_Txc105493,3778_12 -3778_48886,69,3778_1783,Parnell,57.Sat.93-GRN-y11-16,1,3778_7778148_Txc105503,3778_14 -3778_48886,70,3778_1784,Parnell,57.gf.93-GRN-y11-16.,1,3778_7778148_Txc105505,3778_14 -3778_48886,71,3778_1788,Broombridge,35.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105374,3778_13 -3778_48886,68,3778_1793,Broombridge,97.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105678,3778_12 -3778_48886,68,3778_1794,Parnell,100.MF-BH.93-GRN-y11,1,3778_7778148_Txc104616,3778_14 -3778_48886,69,3778_1795,Broombridge,56.Sat.93-GRN-y11-16,1,3778_7778148_Txc105499,3778_12 -3778_48886,70,3778_1796,Broombridge,56.gf.93-GRN-y11-16.,1,3778_7778148_Txc105501,3778_12 -3778_48886,71,3778_1800,Broombridge,36.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105388,3778_13 -3778_48886,69,3778_1801,Parnell,59.Sat.93-GRN-y11-16,1,3778_7778148_Txc105511,3778_14 -3778_48886,70,3778_1802,Parnell,59.gf.93-GRN-y11-16.,1,3778_7778148_Txc105513,3778_14 -3778_48886,68,3778_181,Sandyford,240.MF-BH.93-GRN-y11,0,3778_7778148_Txc105154,3778_4 -3778_48886,68,3778_1810,Broombridge,99.MF-BH.93-GRN-y11-,1,3778_7778148_Txc105686,3778_12 -3778_48886,68,3778_1811,Parnell,102.MF-BH.93-GRN-y11,1,3778_7778148_Txc104624,3778_14 -3778_48886,71,3778_1812,Broombridge,37.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105402,3778_13 -3778_48886,69,3778_1813,Broombridge,58.Sat.93-GRN-y11-16,1,3778_7778148_Txc105507,3778_12 -3778_48886,70,3778_1814,Broombridge,58.gf.93-GRN-y11-16.,1,3778_7778148_Txc105509,3778_12 -3778_48886,68,3778_182,Brides Glen,237.MF-BH.93-GRN-y11,0,3778_7778148_Txc105141,3778_5 -3778_48886,69,3778_1822,Parnell,61.Sat.93-GRN-y11-16,1,3778_7778148_Txc105523,3778_14 -3778_48886,70,3778_1823,Parnell,61.gf.93-GRN-y11-16.,1,3778_7778148_Txc105525,3778_14 -3778_48886,68,3778_1827,Broombridge,101.MF-BH.93-GRN-y11,1,3778_7778148_Txc104620,3778_12 -3778_48886,68,3778_1828,Parnell,104.MF-BH.93-GRN-y11,1,3778_7778148_Txc104632,3778_14 -3778_48886,71,3778_1829,Broombridge,38.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105416,3778_13 -3778_48886,69,3778_183,Sandyford,151.Sat.93-GRN-y11-1,0,3778_7778148_Txc104841,3778_4 -3778_48886,69,3778_1834,Broombridge,60.Sat.93-GRN-y11-16,1,3778_7778148_Txc105519,3778_12 -3778_48886,70,3778_1835,Broombridge,60.gf.93-GRN-y11-16.,1,3778_7778148_Txc105521,3778_12 -3778_48886,69,3778_1839,Parnell,63.Sat.93-GRN-y11-16,1,3778_7778148_Txc105531,3778_14 -3778_48886,70,3778_184,Sandyford,151.gf.93-GRN-y11-16,0,3778_7778148_Txc104843,3778_4 -3778_48886,70,3778_1840,Parnell,63.gf.93-GRN-y11-16.,1,3778_7778148_Txc105533,3778_14 -3778_48886,68,3778_1844,Broombridge,103.MF-BH.93-GRN-y11,1,3778_7778148_Txc104628,3778_12 -3778_48886,68,3778_1845,Parnell,106.MF-BH.93-GRN-y11,1,3778_7778148_Txc104640,3778_14 -3778_48886,71,3778_1846,Broombridge,39.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105424,3778_13 -3778_48886,69,3778_1851,Broombridge,62.Sat.93-GRN-y11-16,1,3778_7778148_Txc105527,3778_12 -3778_48886,70,3778_1852,Broombridge,62.gf.93-GRN-y11-16.,1,3778_7778148_Txc105529,3778_12 -3778_48886,69,3778_1856,Parnell,65.Sat.93-GRN-y11-16,1,3778_7778148_Txc105539,3778_14 -3778_48886,70,3778_1857,Parnell,65.gf.93-GRN-y11-16.,1,3778_7778148_Txc105541,3778_14 -3778_48886,68,3778_1861,Broombridge,105.MF-BH.93-GRN-y11,1,3778_7778148_Txc104636,3778_12 -3778_48886,68,3778_1862,Parnell,108.MF-BH.93-GRN-y11,1,3778_7778148_Txc104648,3778_14 -3778_48886,71,3778_1863,Broombridge,40.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105432,3778_13 -3778_48886,69,3778_1868,Broombridge,64.Sat.93-GRN-y11-16,1,3778_7778148_Txc105535,3778_12 -3778_48886,70,3778_1869,Broombridge,64.gf.93-GRN-y11-16.,1,3778_7778148_Txc105537,3778_12 -3778_48886,69,3778_1873,Parnell,67.Sat.93-GRN-y11-16,1,3778_7778148_Txc105547,3778_14 -3778_48886,70,3778_1874,Parnell,67.gf.93-GRN-y11-16.,1,3778_7778148_Txc105549,3778_14 -3778_48886,68,3778_1878,Broombridge,107.MF-BH.93-GRN-y11,1,3778_7778148_Txc104644,3778_12 -3778_48886,68,3778_1879,Parnell,110.MF-BH.93-GRN-y11,1,3778_7778148_Txc104660,3778_14 -3778_48886,68,3778_188,Brides Glen,239.MF-BH.93-GRN-y11,0,3778_7778148_Txc105147,3778_5 -3778_48886,71,3778_1880,Broombridge,41.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105436,3778_13 -3778_48886,69,3778_1885,Broombridge,66.Sat.93-GRN-y11-16,1,3778_7778148_Txc105543,3778_12 -3778_48886,70,3778_1886,Broombridge,66.gf.93-GRN-y11-16.,1,3778_7778148_Txc105545,3778_12 -3778_48886,68,3778_189,Brides Glen,242.MF-BH.93-GRN-y11,0,3778_7778148_Txc105160,3778_1 -3778_48886,69,3778_1890,Parnell,69.Sat.93-GRN-y11-16,1,3778_7778148_Txc105555,3778_14 -3778_48886,70,3778_1891,Parnell,69.gf.93-GRN-y11-16.,1,3778_7778148_Txc105557,3778_14 -3778_48886,68,3778_1895,Broombridge,109.MF-BH.93-GRN-y11,1,3778_7778148_Txc104652,3778_12 -3778_48886,68,3778_1896,Parnell,112.MF-BH.93-GRN-y11,1,3778_7778148_Txc104668,3778_14 -3778_48886,71,3778_1897,Broombridge,42.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105440,3778_13 -3778_48886,71,3778_190,Brides Glen,90.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105652,3778_1 -3778_48886,69,3778_1902,Broombridge,68.Sat.93-GRN-y11-16,1,3778_7778148_Txc105551,3778_12 -3778_48886,70,3778_1903,Broombridge,68.gf.93-GRN-y11-16.,1,3778_7778148_Txc105553,3778_12 -3778_48886,69,3778_1907,Parnell,71.Sat.93-GRN-y11-16,1,3778_7778148_Txc105567,3778_14 -3778_48886,70,3778_1908,Parnell,71.gf.93-GRN-y11-16.,1,3778_7778148_Txc105569,3778_14 -3778_48886,68,3778_1912,Broombridge,111.MF-BH.93-GRN-y11,1,3778_7778148_Txc104664,3778_12 -3778_48886,68,3778_1913,Parnell,114.MF-BH.93-GRN-y11,1,3778_7778148_Txc104676,3778_14 -3778_48886,71,3778_1914,Broombridge,43.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105444,3778_13 -3778_48886,69,3778_1919,Broombridge,70.Sat.93-GRN-y11-16,1,3778_7778148_Txc105563,3778_12 -3778_48886,70,3778_1920,Broombridge,70.gf.93-GRN-y11-16.,1,3778_7778148_Txc105565,3778_12 -3778_48886,68,3778_1924,Parnell,116.MF-BH.93-GRN-y11,1,3778_7778148_Txc104684,3778_14 -3778_48886,69,3778_1925,Parnell,73.Sat.93-GRN-y11-16,1,3778_7778148_Txc105575,3778_17 -3778_48886,70,3778_1926,Parnell,73.gf.93-GRN-y11-16.,1,3778_7778148_Txc105577,3778_17 -3778_48886,68,3778_1930,Broombridge,113.MF-BH.93-GRN-y11,1,3778_7778148_Txc104672,3778_12 -3778_48886,71,3778_1931,Broombridge,44.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105448,3778_13 -3778_48886,68,3778_1936,Parnell,118.MF-BH.93-GRN-y11,1,3778_7778148_Txc104692,3778_14 -3778_48886,69,3778_1937,Broombridge,72.Sat.93-GRN-y11-16,1,3778_7778148_Txc105571,3778_12 -3778_48886,70,3778_1938,Broombridge,72.gf.93-GRN-y11-16.,1,3778_7778148_Txc105573,3778_12 -3778_48886,68,3778_1942,Broombridge,115.MF-BH.93-GRN-y11,1,3778_7778148_Txc104680,3778_12 -3778_48886,69,3778_1943,Parnell,75.Sat.93-GRN-y11-16,1,3778_7778148_Txc105583,3778_14 -3778_48886,70,3778_1944,Parnell,75.gf.93-GRN-y11-16.,1,3778_7778148_Txc105585,3778_14 -3778_48886,68,3778_1948,Parnell,120.MF-BH.93-GRN-y11,1,3778_7778148_Txc104704,3778_14 -3778_48886,71,3778_1949,Broombridge,45.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105452,3778_13 -3778_48886,68,3778_195,Sandyford,241.MF-BH.93-GRN-y11,0,3778_7778148_Txc105157,3778_8 -3778_48886,68,3778_1954,Broombridge,117.MF-BH.93-GRN-y11,1,3778_7778148_Txc104688,3778_12 -3778_48886,68,3778_1955,Parnell,122.MF-BH.93-GRN-y11,1,3778_7778148_Txc104712,3778_14 -3778_48886,69,3778_1956,Broombridge,74.Sat.93-GRN-y11-16,1,3778_7778148_Txc105579,3778_12 -3778_48886,70,3778_1957,Broombridge,74.gf.93-GRN-y11-16.,1,3778_7778148_Txc105581,3778_12 -3778_48886,68,3778_196,Sandyford,244.MF-BH.93-GRN-y11,0,3778_7778148_Txc105166,3778_4 -3778_48886,69,3778_1961,Parnell,77.Sat.93-GRN-y11-16,1,3778_7778148_Txc105591,3778_14 -3778_48886,70,3778_1962,Parnell,77.gf.93-GRN-y11-16.,1,3778_7778148_Txc105593,3778_14 -3778_48886,71,3778_1966,Broombridge,46.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105456,3778_13 -3778_48886,69,3778_197,Sandyford,153.Sat.93-GRN-y11-1,0,3778_7778148_Txc104849,3778_4 -3778_48886,68,3778_1971,Broombridge,119.MF-BH.93-GRN-y11,1,3778_7778148_Txc104696,3778_12 -3778_48886,68,3778_1972,Parnell,124.MF-BH.93-GRN-y11,1,3778_7778148_Txc104720,3778_14 -3778_48886,68,3778_1973,Broombridge,121.MF-BH.93-GRN-y11,1,3778_7778148_Txc104708,3778_12 -3778_48886,69,3778_1974,Broombridge,76.Sat.93-GRN-y11-16,1,3778_7778148_Txc105587,3778_18 -3778_48886,70,3778_1975,Broombridge,76.gf.93-GRN-y11-16.,1,3778_7778148_Txc105589,3778_18 -3778_48886,69,3778_1979,Parnell,79.Sat.93-GRN-y11-16,1,3778_7778148_Txc105599,3778_14 -3778_48886,70,3778_198,Sandyford,153.gf.93-GRN-y11-16,0,3778_7778148_Txc104851,3778_4 -3778_48886,70,3778_1980,Parnell,79.gf.93-GRN-y11-16.,1,3778_7778148_Txc105601,3778_14 -3778_48886,71,3778_1984,Broombridge,47.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105460,3778_13 -3778_48886,68,3778_1989,Broombridge,127.MF-BH.93-GRN-y11,1,3778_7778148_Txc104732,3778_13 -3778_48886,68,3778_1990,Broombridge,123.MF-BH.93-GRN-y11,1,3778_7778148_Txc104716,3778_12 -3778_48886,69,3778_1991,Broombridge,78.Sat.93-GRN-y11-16,1,3778_7778148_Txc105595,3778_12 -3778_48886,70,3778_1992,Broombridge,78.gf.93-GRN-y11-16.,1,3778_7778148_Txc105597,3778_12 -3778_48886,69,3778_1996,Parnell,81.Sat.93-GRN-y11-16,1,3778_7778148_Txc105611,3778_14 -3778_48886,70,3778_1997,Parnell,81.gf.93-GRN-y11-16.,1,3778_7778148_Txc105613,3778_14 -3778_48886,68,3778_2,Brides Glen,191.MF-BH.93-GRN-y11,0,3778_7778148_Txc104983,3778_2 -3778_48886,69,3778_20,Brides Glen,138.Sat.93-GRN-y11-1,0,3778_7778148_Txc104781,3778_1 -3778_48886,71,3778_2001,Broombridge,48.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105464,3778_13 -3778_48886,68,3778_2006,Broombridge,125.MF-BH.93-GRN-y11,1,3778_7778148_Txc104724,3778_12 -3778_48886,68,3778_2007,Parnell,130.MF-BH.93-GRN-y11,1,3778_7778148_Txc104748,3778_14 -3778_48886,68,3778_2008,Parnell,126.MF-BH.93-GRN-y11,1,3778_7778148_Txc104728,3778_15 -3778_48886,68,3778_2009,Parnell,132.MF-BH.93-GRN-y11,1,3778_7778148_Txc104756,3778_14 -3778_48886,69,3778_2010,Broombridge,80.Sat.93-GRN-y11-16,1,3778_7778148_Txc105607,3778_12 -3778_48886,70,3778_2011,Broombridge,80.gf.93-GRN-y11-16.,1,3778_7778148_Txc105609,3778_12 -3778_48886,71,3778_2015,Broombridge,49.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105468,3778_13 -3778_48886,69,3778_2016,Parnell,83.Sat.93-GRN-y11-16,1,3778_7778148_Txc105619,3778_14 -3778_48886,70,3778_2017,Parnell,83.gf.93-GRN-y11-16.,1,3778_7778148_Txc105621,3778_14 -3778_48886,71,3778_202,Brides Glen,91.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105656,3778_1 -3778_48886,68,3778_2025,Parnell,128.MF-BH.93-GRN-y11,1,3778_7778148_Txc104736,3778_15 -3778_48886,68,3778_2026,Broombridge,129.MF-BH.93-GRN-y11,1,3778_7778148_Txc104740,3778_12 -3778_48886,68,3778_2027,Parnell,134.MF-BH.93-GRN-y11,1,3778_7778148_Txc104764,3778_14 -3778_48886,71,3778_2028,Broombridge,50.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105476,3778_13 -3778_48886,69,3778_2029,Broombridge,82.Sat.93-GRN-y11-16,1,3778_7778148_Txc105615,3778_12 -3778_48886,70,3778_2030,Broombridge,82.gf.93-GRN-y11-16.,1,3778_7778148_Txc105617,3778_12 -3778_48886,68,3778_2038,Broombridge,131.MF-BH.93-GRN-y11,1,3778_7778148_Txc104752,3778_12 -3778_48886,69,3778_2039,Parnell,85.Sat.93-GRN-y11-16,1,3778_7778148_Txc105627,3778_14 -3778_48886,70,3778_2040,Parnell,85.gf.93-GRN-y11-16.,1,3778_7778148_Txc105629,3778_14 -3778_48886,68,3778_2044,Broombridge,137.MF-BH.93-GRN-y11,1,3778_7778148_Txc104776,3778_13 -3778_48886,68,3778_2045,Broombridge,133.MF-BH.93-GRN-y11,1,3778_7778148_Txc104760,3778_12 -3778_48886,71,3778_2046,Broombridge,51.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105480,3778_13 -3778_48886,69,3778_2051,Broombridge,84.Sat.93-GRN-y11-16,1,3778_7778148_Txc105623,3778_12 -3778_48886,70,3778_2052,Broombridge,84.gf.93-GRN-y11-16.,1,3778_7778148_Txc105625,3778_12 -3778_48886,69,3778_2056,Parnell,87.Sat.93-GRN-y11-16,1,3778_7778148_Txc105635,3778_14 -3778_48886,70,3778_2057,Parnell,87.gf.93-GRN-y11-16.,1,3778_7778148_Txc105637,3778_14 -3778_48886,68,3778_2061,Broombridge,139.MF-BH.93-GRN-y11,1,3778_7778148_Txc104784,3778_13 -3778_48886,68,3778_2062,Broombridge,135.MF-BH.93-GRN-y11,1,3778_7778148_Txc104768,3778_12 -3778_48886,68,3778_2063,Parnell,136.MF-BH.93-GRN-y11,1,3778_7778148_Txc104772,3778_15 -3778_48886,68,3778_2064,Broombridge,141.MF-BH.93-GRN-y11,1,3778_7778148_Txc104796,3778_13 -3778_48886,71,3778_2065,Broombridge,52.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105484,3778_13 -3778_48886,69,3778_207,Brides Glen,152.Sat.93-GRN-y11-1,0,3778_7778148_Txc104845,3778_5 -3778_48886,69,3778_2070,Broombridge,86.Sat.93-GRN-y11-16,1,3778_7778148_Txc105631,3778_12 -3778_48886,70,3778_2071,Broombridge,86.gf.93-GRN-y11-16.,1,3778_7778148_Txc105633,3778_12 -3778_48886,69,3778_2075,Parnell,89.Sat.93-GRN-y11-16,1,3778_7778148_Txc105643,3778_14 -3778_48886,70,3778_2076,Parnell,89.gf.93-GRN-y11-16.,1,3778_7778148_Txc105645,3778_14 -3778_48886,70,3778_208,Brides Glen,152.gf.93-GRN-y11-16,0,3778_7778148_Txc104847,3778_5 -3778_48886,68,3778_2080,Parnell,138.MF-BH.93-GRN-y11,1,3778_7778148_Txc104780,3778_15 -3778_48886,68,3778_2081,Broombridge,143.MF-BH.93-GRN-y11,1,3778_7778148_Txc104804,3778_13 -3778_48886,71,3778_2082,Broombridge,53.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105488,3778_13 -3778_48886,68,3778_2087,Parnell,140.MF-BH.93-GRN-y11,1,3778_7778148_Txc104792,3778_15 -3778_48886,69,3778_2088,Broombridge,88.Sat.93-GRN-y11-16,1,3778_7778148_Txc105639,3778_12 -3778_48886,70,3778_2089,Broombridge,88.gf.93-GRN-y11-16.,1,3778_7778148_Txc105641,3778_12 -3778_48886,69,3778_2093,Parnell,91.Sat.93-GRN-y11-16,1,3778_7778148_Txc105655,3778_14 -3778_48886,70,3778_2094,Parnell,91.gf.93-GRN-y11-16.,1,3778_7778148_Txc105657,3778_14 -3778_48886,68,3778_2098,Parnell,142.MF-BH.93-GRN-y11,1,3778_7778148_Txc104800,3778_15 -3778_48886,68,3778_2099,Parnell,146.MF-BH.93-GRN-y11,1,3778_7778148_Txc104816,3778_14 -3778_48886,70,3778_21,Brides Glen,138.gf.93-GRN-y11-16,0,3778_7778148_Txc104783,3778_1 -3778_48886,71,3778_2100,Broombridge,54.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105492,3778_13 -3778_48886,69,3778_2105,Broombridge,90.Sat.93-GRN-y11-16,1,3778_7778148_Txc105651,3778_12 -3778_48886,70,3778_2106,Broombridge,90.gf.93-GRN-y11-16.,1,3778_7778148_Txc105653,3778_12 -3778_48886,69,3778_2110,Parnell,93.Sat.93-GRN-y11-16,1,3778_7778148_Txc105663,3778_14 -3778_48886,70,3778_2111,Parnell,93.gf.93-GRN-y11-16.,1,3778_7778148_Txc105665,3778_14 -3778_48886,68,3778_2115,Parnell,144.MF-BH.93-GRN-y11,1,3778_7778148_Txc104808,3778_15 -3778_48886,68,3778_2116,Parnell,148.MF-BH.93-GRN-y11,1,3778_7778148_Txc104824,3778_14 -3778_48886,68,3778_2117,Broombridge,145.MF-BH.93-GRN-y11,1,3778_7778148_Txc104812,3778_12 -3778_48886,71,3778_2118,Broombridge,55.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105496,3778_13 -3778_48886,68,3778_212,Sandyford,243.MF-BH.93-GRN-y11,0,3778_7778148_Txc105163,3778_8 -3778_48886,68,3778_2123,Broombridge,149.MF-BH.93-GRN-y11,1,3778_7778148_Txc104828,3778_13 -3778_48886,69,3778_2124,Broombridge,92.Sat.93-GRN-y11-16,1,3778_7778148_Txc105659,3778_12 -3778_48886,70,3778_2125,Broombridge,92.gf.93-GRN-y11-16.,1,3778_7778148_Txc105661,3778_12 -3778_48886,69,3778_2129,Parnell,95.Sat.93-GRN-y11-16,1,3778_7778148_Txc105671,3778_14 -3778_48886,68,3778_213,Sandyford,246.MF-BH.93-GRN-y11,0,3778_7778148_Txc105172,3778_4 -3778_48886,70,3778_2130,Parnell,95.gf.93-GRN-y11-16.,1,3778_7778148_Txc105673,3778_14 -3778_48886,68,3778_2134,Parnell,150.MF-BH.93-GRN-y11,1,3778_7778148_Txc104836,3778_14 -3778_48886,68,3778_2135,Broombridge,147.MF-BH.93-GRN-y11,1,3778_7778148_Txc104820,3778_12 -3778_48886,71,3778_2136,Broombridge,56.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105500,3778_13 -3778_48886,69,3778_214,Sandyford,155.Sat.93-GRN-y11-1,0,3778_7778148_Txc104857,3778_4 -3778_48886,69,3778_2141,Broombridge,94.Sat.93-GRN-y11-16,1,3778_7778148_Txc105667,3778_12 -3778_48886,70,3778_2142,Broombridge,94.gf.93-GRN-y11-16.,1,3778_7778148_Txc105669,3778_12 -3778_48886,69,3778_2146,Parnell,97.Sat.93-GRN-y11-16,1,3778_7778148_Txc105679,3778_14 -3778_48886,70,3778_2147,Parnell,97.gf.93-GRN-y11-16.,1,3778_7778148_Txc105681,3778_14 -3778_48886,70,3778_215,Sandyford,155.gf.93-GRN-y11-16,0,3778_7778148_Txc104859,3778_4 -3778_48886,68,3778_2151,Parnell,152.MF-BH.93-GRN-y11,1,3778_7778148_Txc104844,3778_14 -3778_48886,71,3778_2152,Broombridge,57.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105504,3778_13 -3778_48886,68,3778_2157,Broombridge,153.MF-BH.93-GRN-y11,1,3778_7778148_Txc104848,3778_13 -3778_48886,69,3778_2158,Broombridge,96.Sat.93-GRN-y11-16,1,3778_7778148_Txc105675,3778_12 -3778_48886,70,3778_2159,Broombridge,96.gf.93-GRN-y11-16.,1,3778_7778148_Txc105677,3778_12 -3778_48886,68,3778_2163,Broombridge,151.MF-BH.93-GRN-y11,1,3778_7778148_Txc104840,3778_12 -3778_48886,68,3778_2164,Parnell,154.MF-BH.93-GRN-y11,1,3778_7778148_Txc104852,3778_14 -3778_48886,69,3778_2165,Parnell,99.Sat.93-GRN-y11-16,1,3778_7778148_Txc105687,3778_14 -3778_48886,70,3778_2166,Parnell,99.gf.93-GRN-y11-16.,1,3778_7778148_Txc105689,3778_14 -3778_48886,71,3778_2170,Broombridge,58.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105508,3778_13 -3778_48886,68,3778_2175,Parnell,156.MF-BH.93-GRN-y11,1,3778_7778148_Txc104860,3778_14 -3778_48886,69,3778_2176,Broombridge,98.Sat.93-GRN-y11-16,1,3778_7778148_Txc105683,3778_12 -3778_48886,70,3778_2177,Broombridge,98.gf.93-GRN-y11-16.,1,3778_7778148_Txc105685,3778_12 -3778_48886,69,3778_2181,Parnell,101.Sat.93-GRN-y11-1,1,3778_7778148_Txc104621,3778_14 -3778_48886,70,3778_2182,Parnell,101.gf.93-GRN-y11-16,1,3778_7778148_Txc104623,3778_14 -3778_48886,71,3778_2186,Broombridge,59.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105512,3778_13 -3778_48886,68,3778_219,Brides Glen,245.MF-BH.93-GRN-y11,0,3778_7778148_Txc105169,3778_5 -3778_48886,68,3778_2191,Broombridge,157.MF-BH.93-GRN-y11,1,3778_7778148_Txc104864,3778_13 -3778_48886,68,3778_2192,Broombridge,155.MF-BH.93-GRN-y11,1,3778_7778148_Txc104856,3778_12 -3778_48886,68,3778_2193,Parnell,158.MF-BH.93-GRN-y11,1,3778_7778148_Txc104868,3778_14 -3778_48886,69,3778_2194,Broombridge,100.Sat.93-GRN-y11-1,1,3778_7778148_Txc104617,3778_12 -3778_48886,70,3778_2195,Broombridge,100.gf.93-GRN-y11-16,1,3778_7778148_Txc104619,3778_12 -3778_48886,69,3778_2199,Parnell,103.Sat.93-GRN-y11-1,1,3778_7778148_Txc104629,3778_14 -3778_48886,68,3778_220,Sandyford,248.MF-BH.93-GRN-y11,0,3778_7778148_Txc105178,3778_4 -3778_48886,70,3778_2200,Parnell,103.gf.93-GRN-y11-16,1,3778_7778148_Txc104631,3778_14 -3778_48886,71,3778_2204,Broombridge,60.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105520,3778_13 -3778_48886,68,3778_2209,Broombridge,159.MF-BH.93-GRN-y11,1,3778_7778148_Txc104871,3778_13 -3778_48886,71,3778_221,Brides Glen,92.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105660,3778_1 -3778_48886,68,3778_2210,Parnell,160.MF-BH.93-GRN-y11,1,3778_7778148_Txc104878,3778_14 -3778_48886,69,3778_2211,Broombridge,102.Sat.93-GRN-y11-1,1,3778_7778148_Txc104625,3778_12 -3778_48886,70,3778_2212,Broombridge,102.gf.93-GRN-y11-16,1,3778_7778148_Txc104627,3778_12 -3778_48886,69,3778_2216,Parnell,105.Sat.93-GRN-y11-1,1,3778_7778148_Txc104637,3778_14 -3778_48886,70,3778_2217,Parnell,105.gf.93-GRN-y11-16,1,3778_7778148_Txc104639,3778_14 -3778_48886,71,3778_2218,Broombridge,61.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105524,3778_13 -3778_48886,68,3778_2226,Parnell,162.MF-BH.93-GRN-y11,1,3778_7778148_Txc104884,3778_14 -3778_48886,69,3778_2227,Broombridge,104.Sat.93-GRN-y11-1,1,3778_7778148_Txc104633,3778_12 -3778_48886,70,3778_2228,Broombridge,104.gf.93-GRN-y11-16,1,3778_7778148_Txc104635,3778_12 -3778_48886,71,3778_2232,Broombridge,62.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105528,3778_13 -3778_48886,68,3778_2237,Broombridge,163.MF-BH.93-GRN-y11,1,3778_7778148_Txc104887,3778_13 -3778_48886,69,3778_2238,Parnell,107.Sat.93-GRN-y11-1,1,3778_7778148_Txc104645,3778_14 -3778_48886,70,3778_2239,Parnell,107.gf.93-GRN-y11-16,1,3778_7778148_Txc104647,3778_14 -3778_48886,68,3778_2243,Broombridge,161.MF-BH.93-GRN-y11,1,3778_7778148_Txc104881,3778_12 -3778_48886,68,3778_2244,Parnell,164.MF-BH.93-GRN-y11,1,3778_7778148_Txc104890,3778_14 -3778_48886,71,3778_2245,Broombridge,63.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105532,3778_13 -3778_48886,69,3778_2250,Broombridge,106.Sat.93-GRN-y11-1,1,3778_7778148_Txc104641,3778_12 -3778_48886,70,3778_2251,Broombridge,106.gf.93-GRN-y11-16,1,3778_7778148_Txc104643,3778_12 -3778_48886,69,3778_2255,Parnell,109.Sat.93-GRN-y11-1,1,3778_7778148_Txc104653,3778_14 -3778_48886,70,3778_2256,Parnell,109.gf.93-GRN-y11-16,1,3778_7778148_Txc104655,3778_14 -3778_48886,69,3778_226,Brides Glen,154.Sat.93-GRN-y11-1,0,3778_7778148_Txc104853,3778_5 -3778_48886,68,3778_2260,Parnell,166.MF-BH.93-GRN-y11,1,3778_7778148_Txc104896,3778_14 -3778_48886,71,3778_2261,Broombridge,64.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105536,3778_13 -3778_48886,69,3778_2266,Broombridge,108.Sat.93-GRN-y11-1,1,3778_7778148_Txc104649,3778_12 -3778_48886,70,3778_2267,Broombridge,108.gf.93-GRN-y11-16,1,3778_7778148_Txc104651,3778_12 -3778_48886,70,3778_227,Brides Glen,154.gf.93-GRN-y11-16,0,3778_7778148_Txc104855,3778_5 -3778_48886,68,3778_2270,Broombridge,165.MF-BH.93-GRN-y11,1,3778_7778148_Txc104893,3778_12 -3778_48886,68,3778_2271,Parnell,168.MF-BH.93-GRN-y11,1,3778_7778148_Txc104902,3778_14 -3778_48886,69,3778_2272,Parnell,111.Sat.93-GRN-y11-1,1,3778_7778148_Txc104665,3778_14 -3778_48886,70,3778_2273,Parnell,111.gf.93-GRN-y11-16,1,3778_7778148_Txc104667,3778_14 -3778_48886,71,3778_2276,Broombridge,65.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105540,3778_13 -3778_48886,69,3778_2281,Broombridge,112.Sat.93-GRN-y11-1,1,3778_7778148_Txc104669,3778_13 -3778_48886,70,3778_2282,Broombridge,112.gf.93-GRN-y11-16,1,3778_7778148_Txc104671,3778_13 -3778_48886,69,3778_2285,Broombridge,110.Sat.93-GRN-y11-1,1,3778_7778148_Txc104661,3778_12 -3778_48886,70,3778_2286,Broombridge,110.gf.93-GRN-y11-16,1,3778_7778148_Txc104663,3778_12 -3778_48886,68,3778_2289,Broombridge,167.MF-BH.93-GRN-y11,1,3778_7778148_Txc104899,3778_12 -3778_48886,68,3778_2290,Parnell,170.MF-BH.93-GRN-y11,1,3778_7778148_Txc104912,3778_14 -3778_48886,69,3778_2291,Parnell,113.Sat.93-GRN-y11-1,1,3778_7778148_Txc104673,3778_14 -3778_48886,70,3778_2292,Parnell,113.gf.93-GRN-y11-16,1,3778_7778148_Txc104675,3778_14 -3778_48886,71,3778_2293,Broombridge,66.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105544,3778_13 -3778_48886,68,3778_2300,Broombridge,169.MF-BH.93-GRN-y11,1,3778_7778148_Txc104905,3778_12 -3778_48886,68,3778_2301,Parnell,172.MF-BH.93-GRN-y11,1,3778_7778148_Txc104918,3778_14 -3778_48886,69,3778_2302,Parnell,115.Sat.93-GRN-y11-1,1,3778_7778148_Txc104681,3778_14 -3778_48886,70,3778_2303,Parnell,115.gf.93-GRN-y11-16,1,3778_7778148_Txc104683,3778_14 -3778_48886,71,3778_2304,Broombridge,67.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105548,3778_13 -3778_48886,68,3778_231,Brides Glen,247.MF-BH.93-GRN-y11,0,3778_7778148_Txc105175,3778_5 -3778_48886,68,3778_2311,Broombridge,171.MF-BH.93-GRN-y11,1,3778_7778148_Txc104915,3778_12 -3778_48886,68,3778_2312,Broombridge,174.MF-BH.93-GRN-y11,1,3778_7778148_Txc104924,3778_13 -3778_48886,69,3778_2313,Broombridge,114.Sat.93-GRN-y11-1,1,3778_7778148_Txc104677,3778_12 -3778_48886,70,3778_2314,Broombridge,114.gf.93-GRN-y11-16,1,3778_7778148_Txc104679,3778_12 -3778_48886,69,3778_2317,Parnell,117.Sat.93-GRN-y11-1,1,3778_7778148_Txc104689,3778_14 -3778_48886,70,3778_2318,Parnell,117.gf.93-GRN-y11-16,1,3778_7778148_Txc104691,3778_14 -3778_48886,71,3778_2319,Broombridge,68.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105552,3778_13 -3778_48886,68,3778_232,Sandyford,250.MF-BH.93-GRN-y11,0,3778_7778148_Txc105188,3778_4 -3778_48886,68,3778_2326,Broombridge,173.MF-BH.93-GRN-y11,1,3778_7778148_Txc104921,3778_12 -3778_48886,68,3778_2327,Broombridge,176.MF-BH.93-GRN-y11,1,3778_7778148_Txc104930,3778_13 -3778_48886,69,3778_2328,Broombridge,116.Sat.93-GRN-y11-1,1,3778_7778148_Txc104685,3778_12 -3778_48886,70,3778_2329,Broombridge,116.gf.93-GRN-y11-16,1,3778_7778148_Txc104687,3778_12 -3778_48886,69,3778_233,Sandyford,157.Sat.93-GRN-y11-1,0,3778_7778148_Txc104865,3778_4 -3778_48886,68,3778_2332,Broombridge,175.MF-BH.93-GRN-y11,1,3778_7778148_Txc104927,3778_12 -3778_48886,68,3778_2333,Broombridge,178.MF-BH.93-GRN-y11,1,3778_7778148_Txc104936,3778_13 -3778_48886,69,3778_2334,Parnell,119.Sat.93-GRN-y11-1,1,3778_7778148_Txc104697,3778_14 -3778_48886,70,3778_2335,Parnell,119.gf.93-GRN-y11-16,1,3778_7778148_Txc104699,3778_14 -3778_48886,71,3778_2336,Broombridge,69.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105556,3778_13 -3778_48886,70,3778_234,Sandyford,157.gf.93-GRN-y11-16,0,3778_7778148_Txc104867,3778_4 -3778_48886,69,3778_2343,Broombridge,118.Sat.93-GRN-y11-1,1,3778_7778148_Txc104693,3778_12 -3778_48886,70,3778_2344,Broombridge,118.gf.93-GRN-y11-16,1,3778_7778148_Txc104695,3778_12 -3778_48886,68,3778_2347,Broombridge,177.MF-BH.93-GRN-y11,1,3778_7778148_Txc104933,3778_12 -3778_48886,69,3778_2348,Parnell,121.Sat.93-GRN-y11-1,1,3778_7778148_Txc104709,3778_14 -3778_48886,70,3778_2349,Parnell,121.gf.93-GRN-y11-16,1,3778_7778148_Txc104711,3778_14 -3778_48886,68,3778_2350,Broombridge,179.MF-BH.93-GRN-y11,1,3778_7778148_Txc104939,3778_13 -3778_48886,71,3778_2351,Broombridge,70.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105564,3778_13 -3778_48886,68,3778_2358,Sandyford,180.MF-BH.93-GRN-y11,1,3778_7778148_Txc104946,3778_16 -3778_48886,69,3778_2359,Broombridge,120.Sat.93-GRN-y11-1,1,3778_7778148_Txc104705,3778_12 -3778_48886,70,3778_2360,Broombridge,120.gf.93-GRN-y11-16,1,3778_7778148_Txc104707,3778_12 -3778_48886,69,3778_2363,Broombridge,123.Sat.93-GRN-y11-1,1,3778_7778148_Txc104717,3778_13 -3778_48886,70,3778_2364,Broombridge,123.gf.93-GRN-y11-16,1,3778_7778148_Txc104719,3778_13 -3778_48886,68,3778_2365,Broombridge,181.MF-BH.93-GRN-y11,1,3778_7778148_Txc104949,3778_13 -3778_48886,71,3778_2366,Broombridge,71.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105568,3778_13 -3778_48886,69,3778_2373,Broombridge,122.Sat.93-GRN-y11-1,1,3778_7778148_Txc104713,3778_12 -3778_48886,70,3778_2374,Broombridge,122.gf.93-GRN-y11-16,1,3778_7778148_Txc104715,3778_12 -3778_48886,69,3778_2377,Broombridge,125.Sat.93-GRN-y11-1,1,3778_7778148_Txc104725,3778_13 -3778_48886,70,3778_2378,Broombridge,125.gf.93-GRN-y11-16,1,3778_7778148_Txc104727,3778_13 -3778_48886,68,3778_2379,Broombridge,182.MF-BH.93-GRN-y11,1,3778_7778148_Txc104952,3778_13 -3778_48886,68,3778_238,Brides Glen,249.MF-BH.93-GRN-y11,0,3778_7778148_Txc105181,3778_5 -3778_48886,71,3778_2380,Broombridge,72.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105572,3778_13 -3778_48886,69,3778_2387,Broombridge,124.Sat.93-GRN-y11-1,1,3778_7778148_Txc104721,3778_12 -3778_48886,70,3778_2388,Broombridge,124.gf.93-GRN-y11-16,1,3778_7778148_Txc104723,3778_12 -3778_48886,71,3778_239,Brides Glen,93.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105664,3778_1 -3778_48886,69,3778_2391,Broombridge,127.Sat.93-GRN-y11-1,1,3778_7778148_Txc104733,3778_13 -3778_48886,70,3778_2392,Broombridge,127.gf.93-GRN-y11-16,1,3778_7778148_Txc104735,3778_13 -3778_48886,68,3778_2393,Broombridge,183.MF-BH.93-GRN-y11,1,3778_7778148_Txc104955,3778_13 -3778_48886,71,3778_2394,Broombridge,73.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105576,3778_13 -3778_48886,69,3778_2401,Broombridge,126.Sat.93-GRN-y11-1,1,3778_7778148_Txc104729,3778_12 -3778_48886,70,3778_2402,Broombridge,126.gf.93-GRN-y11-16,1,3778_7778148_Txc104731,3778_12 -3778_48886,69,3778_2405,Broombridge,128.Sat.93-GRN-y11-1,1,3778_7778148_Txc104737,3778_13 -3778_48886,70,3778_2406,Broombridge,128.gf.93-GRN-y11-16,1,3778_7778148_Txc104739,3778_13 -3778_48886,68,3778_2407,Broombridge,184.MF-BH.93-GRN-y11,1,3778_7778148_Txc104958,3778_13 -3778_48886,71,3778_2408,Broombridge,74.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105580,3778_13 -3778_48886,69,3778_2415,Broombridge,129.Sat.93-GRN-y11-1,1,3778_7778148_Txc104741,3778_13 -3778_48886,70,3778_2416,Broombridge,129.gf.93-GRN-y11-16,1,3778_7778148_Txc104743,3778_13 -3778_48886,68,3778_2417,Broombridge,185.MF-BH.93-GRN-y11,1,3778_7778148_Txc104961,3778_13 -3778_48886,71,3778_2418,Broombridge,75.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105584,3778_13 -3778_48886,69,3778_2425,Broombridge,130.Sat.93-GRN-y11-1,1,3778_7778148_Txc104749,3778_13 -3778_48886,70,3778_2426,Broombridge,130.gf.93-GRN-y11-16,1,3778_7778148_Txc104751,3778_13 -3778_48886,68,3778_2427,Broombridge,186.MF-BH.93-GRN-y11,1,3778_7778148_Txc104964,3778_13 -3778_48886,71,3778_2428,Broombridge,76.SuBH.93-GRN-y11-1,1,3778_7778148_Txc105588,3778_13 -3778_48886,69,3778_2435,Broombridge,131.Sat.93-GRN-y11-1,1,3778_7778148_Txc104753,3778_13 -3778_48886,70,3778_2436,Broombridge,131.gf.93-GRN-y11-16,1,3778_7778148_Txc104755,3778_13 -3778_48886,68,3778_2437,Broombridge,187.MF-BH.93-GRN-y11,1,3778_7778148_Txc104967,3778_13 -3778_48886,69,3778_244,Brides Glen,156.Sat.93-GRN-y11-1,0,3778_7778148_Txc104861,3778_5 -3778_48886,69,3778_2440,Broombridge,132.Sat.93-GRN-y11-1,1,3778_7778148_Txc104757,3778_13 -3778_48886,70,3778_2441,Broombridge,132.gf.93-GRN-y11-16,1,3778_7778148_Txc104759,3778_13 -3778_48886,68,3778_2442,Broombridge,188.MF-BH.93-GRN-y11,1,3778_7778148_Txc104970,3778_13 -3778_48886,69,3778_2445,Broombridge,133.Sat.93-GRN-y11-1,1,3778_7778148_Txc104761,3778_13 -3778_48886,70,3778_2446,Broombridge,133.gf.93-GRN-y11-16,1,3778_7778148_Txc104763,3778_13 -3778_48886,68,3778_2447,Broombridge,189.MF-BH.93-GRN-y11,1,3778_7778148_Txc104973,3778_13 -3778_48886,70,3778_245,Brides Glen,156.gf.93-GRN-y11-16,0,3778_7778148_Txc104863,3778_5 -3778_48886,69,3778_2450,Broombridge,134.Sat.93-GRN-y11-1,1,3778_7778148_Txc104765,3778_13 -3778_48886,70,3778_2451,Broombridge,134.gf.93-GRN-y11-16,1,3778_7778148_Txc104767,3778_13 -3778_48886,68,3778_2452,Broombridge,190.MF-BH.93-GRN-y11,1,3778_7778148_Txc104980,3778_13 -3778_48887,68,3778_2461,Tallaght,235.MF-BH.93-RED-y11,0,3778_7778148_Txc109716,3778_32 -3778_48887,68,3778_2462,Tallaght,230.MF-BH.93-RED-y11,0,3778_7778148_Txc109696,3778_20 -3778_48887,68,3778_2463,Saggart,231.MF-BH.93-RED-y11,0,3778_7778148_Txc109700,3778_21 -3778_48887,68,3778_2464,Tallaght,239.MF-BH.93-RED-y11,0,3778_7778148_Txc109732,3778_32 -3778_48887,68,3778_2465,Tallaght,232.MF-BH.93-RED-y11,0,3778_7778148_Txc109704,3778_20 -3778_48887,68,3778_2466,Saggart,233.MF-BH.93-RED-y11,0,3778_7778148_Txc109708,3778_22 -3778_48887,68,3778_2467,Saggart,234.MF-BH.93-RED-y11,0,3778_7778148_Txc109712,3778_21 -3778_48887,68,3778_2468,Tallaght,244.MF-BH.93-RED-y11,0,3778_7778148_Txc109756,3778_32 -3778_48887,68,3778_2469,Saggart,236.MF-BH.93-RED-y11,0,3778_7778148_Txc109720,3778_22 -3778_48887,68,3778_2470,Tallaght,237.MF-BH.93-RED-y11,0,3778_7778148_Txc109724,3778_20 -3778_48887,68,3778_2471,Saggart,238.MF-BH.93-RED-y11,0,3778_7778148_Txc109728,3778_21 -3778_48887,69,3778_2472,Tallaght,186.Sat.93-RED-y11-1,0,3778_7778148_Txc109497,3778_19 -3778_48887,70,3778_2473,Tallaght,186.gf.93-RED-y11-16,0,3778_7778148_Txc109499,3778_33 -3778_48887,68,3778_2474,Tallaght,248.MF-BH.93-RED-y11,0,3778_7778148_Txc109772,3778_32 -3778_48887,69,3778_2478,Tallaght,182.Sat.93-RED-y11-1,0,3778_7778148_Txc109483,3778_20 -3778_48887,70,3778_2479,Tallaght,182.gf.93-RED-y11-16,0,3778_7778148_Txc109485,3778_20 -3778_48887,68,3778_2483,Saggart,240.MF-BH.93-RED-y11,0,3778_7778148_Txc109740,3778_22 -3778_48887,68,3778_2484,Tallaght,241.MF-BH.93-RED-y11,0,3778_7778148_Txc109744,3778_20 -3778_48887,69,3778_2485,Saggart,183.Sat.93-RED-y11-1,0,3778_7778148_Txc109487,3778_21 -3778_48887,70,3778_2486,Saggart,183.gf.93-RED-y11-16,0,3778_7778148_Txc109488,3778_21 -3778_48886,68,3778_249,Sandyford,252.MF-BH.93-GRN-y11,0,3778_7778148_Txc105194,3778_4 -3778_48887,68,3778_2490,Saggart,242.MF-BH.93-RED-y11,0,3778_7778148_Txc109748,3778_22 -3778_48887,68,3778_2491,Tallaght,251.MF-BH.93-RED-y11,0,3778_7778148_Txc109788,3778_32 -3778_48887,68,3778_2492,Tallaght,243.MF-BH.93-RED-y11,0,3778_7778148_Txc109752,3778_20 -3778_48887,69,3778_2493,Tallaght,188.Sat.93-RED-y11-1,0,3778_7778148_Txc109505,3778_19 -3778_48887,70,3778_2494,Tallaght,188.gf.93-RED-y11-16,0,3778_7778148_Txc109507,3778_33 -3778_48887,68,3778_2498,Saggart,245.MF-BH.93-RED-y11,0,3778_7778148_Txc109760,3778_22 -3778_48887,69,3778_2499,Tallaght,184.Sat.93-RED-y11-1,0,3778_7778148_Txc109490,3778_20 -3778_48886,68,3778_25,Brides Glen,202.MF-BH.93-GRN-y11,0,3778_7778148_Txc105024,3778_1 -3778_48886,69,3778_250,Sandyford,159.Sat.93-GRN-y11-1,0,3778_7778148_Txc104872,3778_4 -3778_48887,70,3778_2500,Tallaght,184.gf.93-RED-y11-16,0,3778_7778148_Txc109491,3778_20 -3778_48887,71,3778_2504,Tallaght,189.SuBH.93-RED-y11-,0,3778_7778148_Txc109510,3778_34 -3778_48887,68,3778_2505,Tallaght,254.MF-BH.93-RED-y11,0,3778_7778148_Txc109800,3778_32 -3778_48887,69,3778_2509,Saggart,185.Sat.93-RED-y11-1,0,3778_7778148_Txc109493,3778_22 -3778_48886,70,3778_251,Sandyford,159.gf.93-GRN-y11-16,0,3778_7778148_Txc104873,3778_4 -3778_48887,70,3778_2510,Saggart,185.gf.93-RED-y11-16,0,3778_7778148_Txc109495,3778_22 -3778_48887,68,3778_2514,Saggart,246.MF-BH.93-RED-y11,0,3778_7778148_Txc109764,3778_22 -3778_48887,71,3778_2515,Tallaght,185.SuBH.93-RED-y11-,0,3778_7778148_Txc109494,3778_20 -3778_48887,68,3778_2519,Tallaght,247.MF-BH.93-RED-y11,0,3778_7778148_Txc109768,3778_20 -3778_48886,68,3778_252,Brides Glen,251.MF-BH.93-GRN-y11,0,3778_7778148_Txc105191,3778_5 -3778_48887,68,3778_2520,Tallaght,257.MF-BH.93-RED-y11,0,3778_7778148_Txc109812,3778_32 -3778_48887,69,3778_2521,Tallaght,192.Sat.93-RED-y11-1,0,3778_7778148_Txc109525,3778_19 -3778_48887,70,3778_2522,Tallaght,192.gf.93-RED-y11-16,0,3778_7778148_Txc109527,3778_33 -3778_48887,68,3778_2523,Saggart,255.MF-BH.93-RED-y11,0,3778_7778148_Txc109804,3778_23 -3778_48887,71,3778_2527,Saggart,186.SuBH.93-RED-y11-,0,3778_7778148_Txc109498,3778_21 -3778_48887,68,3778_2531,Saggart,249.MF-BH.93-RED-y11,0,3778_7778148_Txc109776,3778_21 -3778_48887,69,3778_2532,Saggart,187.Sat.93-RED-y11-1,0,3778_7778148_Txc109501,3778_22 -3778_48887,70,3778_2533,Saggart,187.gf.93-RED-y11-16,0,3778_7778148_Txc109503,3778_22 -3778_48887,68,3778_2537,Tallaght,260.MF-BH.93-RED-y11,0,3778_7778148_Txc109828,3778_32 -3778_48887,71,3778_2538,Tallaght,191.SuBH.93-RED-y11-,0,3778_7778148_Txc109522,3778_34 -3778_48887,68,3778_2539,Saggart,258.MF-BH.93-RED-y11,0,3778_7778148_Txc109816,3778_23 -3778_48887,68,3778_2543,Saggart,261.MF-BH.93-RED-y11,0,3778_7778148_Txc109832,3778_35 -3778_48887,68,3778_2544,Saggart,250.MF-BH.93-RED-y11,0,3778_7778148_Txc109784,3778_21 -3778_48887,71,3778_2545,Saggart,187.SuBH.93-RED-y11-,0,3778_7778148_Txc109502,3778_22 -3778_48887,71,3778_2549,Tallaght,188.SuBH.93-RED-y11-,0,3778_7778148_Txc109506,3778_20 -3778_48887,69,3778_2553,Tallaght,194.Sat.93-RED-y11-1,0,3778_7778148_Txc109533,3778_19 -3778_48887,70,3778_2554,Tallaght,194.gf.93-RED-y11-16,0,3778_7778148_Txc109535,3778_33 -3778_48887,68,3778_2558,Saggart,252.MF-BH.93-RED-y11,0,3778_7778148_Txc109792,3778_21 -3778_48887,68,3778_2559,Saggart,263.MF-BH.93-RED-y11,0,3778_7778148_Txc109840,3778_35 -3778_48886,71,3778_256,Brides Glen,95.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105672,3778_1 -3778_48887,68,3778_2560,Tallaght,262.MF-BH.93-RED-y11,0,3778_7778148_Txc109836,3778_25 -3778_48887,69,3778_2561,Saggart,189.Sat.93-RED-y11-1,0,3778_7778148_Txc109509,3778_22 -3778_48887,70,3778_2562,Saggart,189.gf.93-RED-y11-16,0,3778_7778148_Txc109511,3778_22 -3778_48887,68,3778_2566,Tallaght,253.MF-BH.93-RED-y11,0,3778_7778148_Txc109796,3778_20 -3778_48887,68,3778_2567,Tallaght,264.MF-BH.93-RED-y11,0,3778_7778148_Txc109844,3778_32 -3778_48887,71,3778_2568,Tallaght,195.SuBH.93-RED-y11-,0,3778_7778148_Txc109538,3778_34 -3778_48887,69,3778_2572,Saggart,190.Sat.93-RED-y11-1,0,3778_7778148_Txc109517,3778_21 -3778_48887,70,3778_2573,Saggart,190.gf.93-RED-y11-16,0,3778_7778148_Txc109519,3778_21 -3778_48887,69,3778_2577,Tallaght,196.Sat.93-RED-y11-1,0,3778_7778148_Txc109541,3778_19 -3778_48887,70,3778_2578,Tallaght,196.gf.93-RED-y11-16,0,3778_7778148_Txc109543,3778_33 -3778_48887,71,3778_2582,Saggart,190.SuBH.93-RED-y11-,0,3778_7778148_Txc109518,3778_22 -3778_48887,69,3778_2583,Tallaght,191.Sat.93-RED-y11-1,0,3778_7778148_Txc109521,3778_20 -3778_48887,70,3778_2584,Tallaght,191.gf.93-RED-y11-16,0,3778_7778148_Txc109523,3778_20 -3778_48887,68,3778_2591,Tallaght,266.MF-BH.93-RED-y11,0,3778_7778148_Txc109852,3778_32 -3778_48887,68,3778_2592,Tallaght,256.MF-BH.93-RED-y11,0,3778_7778148_Txc109808,3778_20 -3778_48887,68,3778_2593,Saggart,265.MF-BH.93-RED-y11,0,3778_7778148_Txc109848,3778_23 -3778_48887,68,3778_2594,Saggart,267.MF-BH.93-RED-y11,0,3778_7778148_Txc109856,3778_35 -3778_48887,69,3778_2595,Saggart,193.Sat.93-RED-y11-1,0,3778_7778148_Txc109529,3778_22 -3778_48887,70,3778_2596,Saggart,193.gf.93-RED-y11-16,0,3778_7778148_Txc109531,3778_22 -3778_48886,68,3778_26,Brides Glen,203.MF-BH.93-GRN-y11,0,3778_7778148_Txc105027,3778_1 -3778_48887,68,3778_2600,Tallaght,259.MF-BH.93-RED-y11,0,3778_7778148_Txc109820,3778_20 -3778_48887,71,3778_2601,Tallaght,197.SuBH.93-RED-y11-,0,3778_7778148_Txc109546,3778_34 -3778_48887,69,3778_2602,Tallaght,199.Sat.93-RED-y11-1,0,3778_7778148_Txc109553,3778_19 -3778_48887,70,3778_2603,Tallaght,199.gf.93-RED-y11-16,0,3778_7778148_Txc109555,3778_33 -3778_48886,69,3778_261,Brides Glen,158.Sat.93-GRN-y11-1,0,3778_7778148_Txc104869,3778_5 -3778_48887,68,3778_2610,Saggart,269.MF-BH.93-RED-y11,0,3778_7778148_Txc109864,3778_35 -3778_48887,71,3778_2611,Saggart,192.SuBH.93-RED-y11-,0,3778_7778148_Txc109526,3778_21 -3778_48887,68,3778_2612,Tallaght,268.MF-BH.93-RED-y11,0,3778_7778148_Txc109860,3778_25 -3778_48887,68,3778_2616,Tallaght,270.MF-BH.93-RED-y11,0,3778_7778148_Txc109872,3778_32 -3778_48887,71,3778_2617,Saggart,193.SuBH.93-RED-y11-,0,3778_7778148_Txc109530,3778_22 -3778_48886,70,3778_262,Brides Glen,158.gf.93-GRN-y11-16,0,3778_7778148_Txc104870,3778_5 -3778_48887,71,3778_2621,Tallaght,200.SuBH.93-RED-y11-,0,3778_7778148_Txc109566,3778_34 -3778_48887,69,3778_2622,Tallaght,201.Sat.93-RED-y11-1,0,3778_7778148_Txc109569,3778_19 -3778_48887,70,3778_2623,Tallaght,201.gf.93-RED-y11-16,0,3778_7778148_Txc109571,3778_33 -3778_48886,68,3778_263,Sandyford,254.MF-BH.93-GRN-y11,0,3778_7778148_Txc105200,3778_4 -3778_48887,71,3778_2630,Tallaght,194.SuBH.93-RED-y11-,0,3778_7778148_Txc109534,3778_20 -3778_48887,69,3778_2631,Saggart,195.Sat.93-RED-y11-1,0,3778_7778148_Txc109537,3778_22 -3778_48887,70,3778_2632,Saggart,195.gf.93-RED-y11-16,0,3778_7778148_Txc109539,3778_22 -3778_48887,68,3778_2639,Tallaght,272.MF-BH.93-RED-y11,0,3778_7778148_Txc109880,3778_32 -3778_48887,68,3778_2640,Saggart,271.MF-BH.93-RED-y11,0,3778_7778148_Txc109876,3778_23 -3778_48887,68,3778_2641,Saggart,274.MF-BH.93-RED-y11,0,3778_7778148_Txc109888,3778_35 -3778_48887,71,3778_2642,Saggart,196.SuBH.93-RED-y11-,0,3778_7778148_Txc109542,3778_22 -3778_48887,68,3778_2643,Heuston,273.MF-BH.93-RED-y11,0,3778_7778148_Txc109884,3778_26 -3778_48887,69,3778_2647,Saggart,197.Sat.93-RED-y11-1,0,3778_7778148_Txc109545,3778_21 -3778_48887,70,3778_2648,Saggart,197.gf.93-RED-y11-16,0,3778_7778148_Txc109547,3778_21 -3778_48887,71,3778_2649,Tallaght,202.SuBH.93-RED-y11-,0,3778_7778148_Txc109574,3778_34 -3778_48887,69,3778_2650,Tallaght,203.Sat.93-RED-y11-1,0,3778_7778148_Txc109577,3778_19 -3778_48887,70,3778_2651,Tallaght,203.gf.93-RED-y11-16,0,3778_7778148_Txc109579,3778_33 -3778_48887,68,3778_2661,Saggart,276.MF-BH.93-RED-y11,0,3778_7778148_Txc109896,3778_35 -3778_48887,68,3778_2662,Tallaght,275.MF-BH.93-RED-y11,0,3778_7778148_Txc109892,3778_25 -3778_48887,69,3778_2663,Saggart,198.Sat.93-RED-y11-1,0,3778_7778148_Txc109549,3778_21 -3778_48887,70,3778_2664,Saggart,198.gf.93-RED-y11-16,0,3778_7778148_Txc109551,3778_21 -3778_48887,68,3778_2668,Tallaght,277.MF-BH.93-RED-y11,0,3778_7778148_Txc109900,3778_32 -3778_48887,69,3778_2669,Tallaght,205.Sat.93-RED-y11-1,0,3778_7778148_Txc109585,3778_19 -3778_48886,68,3778_267,Brides Glen,253.MF-BH.93-GRN-y11,0,3778_7778148_Txc105197,3778_5 -3778_48887,70,3778_2670,Tallaght,205.gf.93-RED-y11-16,0,3778_7778148_Txc109587,3778_33 -3778_48887,69,3778_2674,Saggart,200.Sat.93-RED-y11-1,0,3778_7778148_Txc109565,3778_21 -3778_48887,70,3778_2675,Saggart,200.gf.93-RED-y11-16,0,3778_7778148_Txc109567,3778_21 -3778_48887,71,3778_2676,Tallaght,205.SuBH.93-RED-y11-,0,3778_7778148_Txc109586,3778_34 -3778_48886,69,3778_268,Sandyford,161.Sat.93-GRN-y11-1,0,3778_7778148_Txc104882,3778_4 -3778_48887,71,3778_2683,Saggart,198.SuBH.93-RED-y11-,0,3778_7778148_Txc109550,3778_22 -3778_48887,68,3778_2687,Tallaght,279.MF-BH.93-RED-y11,0,3778_7778148_Txc109908,3778_32 -3778_48887,68,3778_2688,Saggart,278.MF-BH.93-RED-y11,0,3778_7778148_Txc109904,3778_23 -3778_48887,71,3778_2689,Saggart,199.SuBH.93-RED-y11-,0,3778_7778148_Txc109554,3778_22 -3778_48886,70,3778_269,Sandyford,161.gf.93-GRN-y11-16,0,3778_7778148_Txc104883,3778_4 -3778_48887,68,3778_2690,Tallaght,281.MF-BH.93-RED-y11,0,3778_7778148_Txc109920,3778_32 -3778_48887,69,3778_2694,Tallaght,207.Sat.93-RED-y11-1,0,3778_7778148_Txc109593,3778_19 -3778_48887,70,3778_2695,Tallaght,207.gf.93-RED-y11-16,0,3778_7778148_Txc109595,3778_33 -3778_48887,68,3778_2699,Saggart,280.MF-BH.93-RED-y11,0,3778_7778148_Txc109916,3778_23 -3778_48886,69,3778_27,Brides Glen,137.Sat.93-GRN-y11-1,0,3778_7778148_Txc104777,3778_3 -3778_48887,68,3778_2700,Saggart,282.MF-BH.93-RED-y11,0,3778_7778148_Txc109924,3778_35 -3778_48887,71,3778_2701,Saggart,201.SuBH.93-RED-y11-,0,3778_7778148_Txc109570,3778_21 -3778_48887,69,3778_2702,Saggart,202.Sat.93-RED-y11-1,0,3778_7778148_Txc109573,3778_21 -3778_48887,70,3778_2703,Saggart,202.gf.93-RED-y11-16,0,3778_7778148_Txc109575,3778_21 -3778_48887,71,3778_2704,Tallaght,207.SuBH.93-RED-y11-,0,3778_7778148_Txc109594,3778_34 -3778_48887,69,3778_2716,Saggart,208.Sat.93-RED-y11-1,0,3778_7778148_Txc109597,3778_24 -3778_48887,70,3778_2717,Saggart,208.gf.93-RED-y11-16,0,3778_7778148_Txc109599,3778_36 -3778_48887,68,3778_2721,Red Cow,283.MF-BH.93-RED-y11,0,3778_7778148_Txc109928,3778_27 -3778_48887,68,3778_2722,Red Cow,285.MF-BH.93-RED-y11,0,3778_7778148_Txc109936,3778_28 -3778_48887,68,3778_2723,Tallaght,284.MF-BH.93-RED-y11,0,3778_7778148_Txc109932,3778_25 -3778_48887,68,3778_2724,Saggart,286.MF-BH.93-RED-y11,0,3778_7778148_Txc109940,3778_35 -3778_48887,68,3778_2725,Saggart,287.MF-BH.93-RED-y11,0,3778_7778148_Txc109944,3778_35 -3778_48887,69,3778_2726,Tallaght,209.Sat.93-RED-y11-1,0,3778_7778148_Txc109601,3778_25 -3778_48887,70,3778_2727,Tallaght,209.gf.93-RED-y11-16,0,3778_7778148_Txc109603,3778_25 -3778_48887,69,3778_2728,Saggart,210.Sat.93-RED-y11-1,0,3778_7778148_Txc109609,3778_24 -3778_48887,70,3778_2729,Saggart,210.gf.93-RED-y11-16,0,3778_7778148_Txc109611,3778_36 -3778_48886,68,3778_273,Sandyford,256.MF-BH.93-GRN-y11,0,3778_7778148_Txc105206,3778_4 -3778_48887,71,3778_2736,Saggart,203.SuBH.93-RED-y11-,0,3778_7778148_Txc109578,3778_22 -3778_48887,69,3778_2737,Saggart,204.Sat.93-RED-y11-1,0,3778_7778148_Txc109581,3778_21 -3778_48887,70,3778_2738,Saggart,204.gf.93-RED-y11-16,0,3778_7778148_Txc109583,3778_21 -3778_48887,71,3778_2739,Tallaght,210.SuBH.93-RED-y11-,0,3778_7778148_Txc109610,3778_34 -3778_48886,71,3778_274,Brides Glen,96.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105676,3778_1 -3778_48887,68,3778_2751,Saggart,289.MF-BH.93-RED-y11,0,3778_7778148_Txc109952,3778_35 -3778_48887,69,3778_2752,Tallaght,211.Sat.93-RED-y11-1,0,3778_7778148_Txc109613,3778_19 -3778_48887,70,3778_2753,Tallaght,211.gf.93-RED-y11-16,0,3778_7778148_Txc109615,3778_33 -3778_48887,71,3778_2757,Tallaght,204.SuBH.93-RED-y11-,0,3778_7778148_Txc109582,3778_29 -3778_48887,68,3778_2758,Tallaght,288.MF-BH.93-RED-y11,0,3778_7778148_Txc109948,3778_25 -3778_48887,69,3778_2763,Saggart,206.Sat.93-RED-y11-1,0,3778_7778148_Txc109589,3778_21 -3778_48887,70,3778_2764,Saggart,206.gf.93-RED-y11-16,0,3778_7778148_Txc109591,3778_21 -3778_48887,68,3778_2768,Saggart,291.MF-BH.93-RED-y11,0,3778_7778148_Txc109964,3778_35 -3778_48887,71,3778_2769,Tallaght,212.SuBH.93-RED-y11-,0,3778_7778148_Txc109618,3778_34 -3778_48887,68,3778_2770,Tallaght,290.MF-BH.93-RED-y11,0,3778_7778148_Txc109960,3778_25 -3778_48887,71,3778_2775,Saggart,206.SuBH.93-RED-y11-,0,3778_7778148_Txc109590,3778_22 -3778_48887,69,3778_2780,Saggart,212.Sat.93-RED-y11-1,0,3778_7778148_Txc109617,3778_23 -3778_48887,70,3778_2781,Saggart,212.gf.93-RED-y11-16,0,3778_7778148_Txc109619,3778_23 -3778_48887,69,3778_2785,Tallaght,213.Sat.93-RED-y11-1,0,3778_7778148_Txc109621,3778_19 -3778_48887,70,3778_2786,Tallaght,213.gf.93-RED-y11-16,0,3778_7778148_Txc109623,3778_33 -3778_48886,69,3778_279,Brides Glen,160.Sat.93-GRN-y11-1,0,3778_7778148_Txc104879,3778_5 -3778_48887,68,3778_2790,Tallaght,292.MF-BH.93-RED-y11,0,3778_7778148_Txc109968,3778_32 -3778_48887,69,3778_2791,Saggart,214.Sat.93-RED-y11-1,0,3778_7778148_Txc109625,3778_24 -3778_48887,70,3778_2792,Saggart,214.gf.93-RED-y11-16,0,3778_7778148_Txc109627,3778_36 -3778_48887,68,3778_2796,Tallaght,294.MF-BH.93-RED-y11,0,3778_7778148_Txc109976,3778_32 -3778_48887,69,3778_2797,Tallaght,215.Sat.93-RED-y11-1,0,3778_7778148_Txc109629,3778_19 -3778_48887,70,3778_2798,Tallaght,215.gf.93-RED-y11-16,0,3778_7778148_Txc109631,3778_33 -3778_48887,71,3778_2799,Tallaght,216.SuBH.93-RED-y11-,0,3778_7778148_Txc109634,3778_34 -3778_48886,70,3778_28,Brides Glen,137.gf.93-GRN-y11-16,0,3778_7778148_Txc104779,3778_3 -3778_48886,70,3778_280,Brides Glen,160.gf.93-GRN-y11-16,0,3778_7778148_Txc104880,3778_5 -3778_48887,68,3778_2800,Saggart,293.MF-BH.93-RED-y11,0,3778_7778148_Txc109972,3778_23 -3778_48887,71,3778_2808,Saggart,208.SuBH.93-RED-y11-,0,3778_7778148_Txc109598,3778_22 -3778_48887,68,3778_2813,Saggart,295.MF-BH.93-RED-y11,0,3778_7778148_Txc109980,3778_35 -3778_48887,71,3778_2814,Saggart,209.SuBH.93-RED-y11-,0,3778_7778148_Txc109602,3778_22 -3778_48887,69,3778_2819,Saggart,216.Sat.93-RED-y11-1,0,3778_7778148_Txc109633,3778_23 -3778_48887,70,3778_2820,Saggart,216.gf.93-RED-y11-16,0,3778_7778148_Txc109635,3778_23 -3778_48887,71,3778_2821,Tallaght,218.SuBH.93-RED-y11-,0,3778_7778148_Txc109642,3778_34 -3778_48887,69,3778_2829,Tallaght,217.Sat.93-RED-y11-1,0,3778_7778148_Txc109637,3778_19 -3778_48887,70,3778_2830,Tallaght,217.gf.93-RED-y11-16,0,3778_7778148_Txc109639,3778_33 -3778_48887,68,3778_2834,Saggart,297.MF-BH.93-RED-y11,0,3778_7778148_Txc109988,3778_35 -3778_48887,71,3778_2835,Saggart,211.SuBH.93-RED-y11-,0,3778_7778148_Txc109614,3778_21 -3778_48887,68,3778_2836,Tallaght,296.MF-BH.93-RED-y11,0,3778_7778148_Txc109984,3778_25 -3778_48886,68,3778_284,Brides Glen,255.MF-BH.93-GRN-y11,0,3778_7778148_Txc105203,3778_5 -3778_48887,69,3778_2841,Saggart,218.Sat.93-RED-y11-1,0,3778_7778148_Txc109641,3778_24 -3778_48887,70,3778_2842,Saggart,218.gf.93-RED-y11-16,0,3778_7778148_Txc109643,3778_36 -3778_48887,68,3778_2843,Tallaght,298.MF-BH.93-RED-y11,0,3778_7778148_Txc109992,3778_32 -3778_48887,71,3778_2847,Tallaght,220.SuBH.93-RED-y11-,0,3778_7778148_Txc109654,3778_34 -3778_48886,69,3778_285,Sandyford,163.Sat.93-GRN-y11-1,0,3778_7778148_Txc104888,3778_4 -3778_48887,68,3778_2852,Tallaght,300.MF-BH.93-RED-y11,0,3778_7778148_Txc110008,3778_32 -3778_48887,71,3778_2853,Saggart,213.SuBH.93-RED-y11-,0,3778_7778148_Txc109622,3778_22 -3778_48887,68,3778_2854,Saggart,299.MF-BH.93-RED-y11,0,3778_7778148_Txc109996,3778_23 -3778_48887,69,3778_2859,Tallaght,219.Sat.93-RED-y11-1,0,3778_7778148_Txc109645,3778_25 -3778_48886,70,3778_286,Sandyford,163.gf.93-GRN-y11-16,0,3778_7778148_Txc104889,3778_4 -3778_48887,70,3778_2860,Tallaght,219.gf.93-RED-y11-16,0,3778_7778148_Txc109647,3778_25 -3778_48887,69,3778_2861,Saggart,220.Sat.93-RED-y11-1,0,3778_7778148_Txc109653,3778_24 -3778_48887,70,3778_2862,Saggart,220.gf.93-RED-y11-16,0,3778_7778148_Txc109655,3778_36 -3778_48887,68,3778_2869,Saggart,301.MF-BH.93-RED-y11,0,3778_7778148_Txc110012,3778_35 -3778_48887,71,3778_2870,Tallaght,214.SuBH.93-RED-y11-,0,3778_7778148_Txc109626,3778_20 -3778_48887,71,3778_2875,Tallaght,222.SuBH.93-RED-y11-,0,3778_7778148_Txc109662,3778_34 -3778_48887,69,3778_2880,Tallaght,221.Sat.93-RED-y11-1,0,3778_7778148_Txc109657,3778_19 -3778_48887,70,3778_2881,Tallaght,221.gf.93-RED-y11-16,0,3778_7778148_Txc109659,3778_33 -3778_48887,71,3778_2885,Saggart,215.SuBH.93-RED-y11-,0,3778_7778148_Txc109630,3778_22 -3778_48887,68,3778_2890,Saggart,303.MF-BH.93-RED-y11,0,3778_7778148_Txc110020,3778_35 -3778_48887,68,3778_2891,Tallaght,302.MF-BH.93-RED-y11,0,3778_7778148_Txc110016,3778_25 -3778_48887,71,3778_2892,Saggart,217.SuBH.93-RED-y11-,0,3778_7778148_Txc109638,3778_22 -3778_48887,71,3778_2897,Tallaght,225.SuBH.93-RED-y11-,0,3778_7778148_Txc109674,3778_34 -3778_48886,68,3778_290,Sandyford,258.MF-BH.93-GRN-y11,0,3778_7778148_Txc105212,3778_4 -3778_48887,68,3778_2902,Tallaght,304.MF-BH.93-RED-y11,0,3778_7778148_Txc110024,3778_32 -3778_48887,69,3778_2903,Saggart,222.Sat.93-RED-y11-1,0,3778_7778148_Txc109661,3778_23 -3778_48887,70,3778_2904,Saggart,222.gf.93-RED-y11-16,0,3778_7778148_Txc109663,3778_23 -3778_48887,69,3778_2905,Tallaght,223.Sat.93-RED-y11-1,0,3778_7778148_Txc109665,3778_19 -3778_48887,70,3778_2906,Tallaght,223.gf.93-RED-y11-16,0,3778_7778148_Txc109667,3778_33 -3778_48886,71,3778_291,Brides Glen,97.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105680,3778_1 -3778_48887,69,3778_2913,Saggart,224.Sat.93-RED-y11-1,0,3778_7778148_Txc109669,3778_24 -3778_48887,70,3778_2914,Saggart,224.gf.93-RED-y11-16,0,3778_7778148_Txc109671,3778_36 -3778_48887,71,3778_2918,Saggart,219.SuBH.93-RED-y11-,0,3778_7778148_Txc109646,3778_22 -3778_48887,68,3778_2923,Tallaght,306.MF-BH.93-RED-y11,0,3778_7778148_Txc110032,3778_32 -3778_48887,71,3778_2924,Tallaght,228.SuBH.93-RED-y11-,0,3778_7778148_Txc109686,3778_34 -3778_48887,68,3778_2925,Saggart,305.MF-BH.93-RED-y11,0,3778_7778148_Txc110028,3778_23 -3778_48887,68,3778_2930,Saggart,307.MF-BH.93-RED-y11,0,3778_7778148_Txc110036,3778_35 -3778_48887,69,3778_2931,Tallaght,226.Sat.93-RED-y11-1,0,3778_7778148_Txc109677,3778_25 -3778_48887,70,3778_2932,Tallaght,226.gf.93-RED-y11-16,0,3778_7778148_Txc109679,3778_25 -3778_48887,69,3778_2933,Saggart,227.Sat.93-RED-y11-1,0,3778_7778148_Txc109681,3778_24 -3778_48887,70,3778_2934,Saggart,227.gf.93-RED-y11-16,0,3778_7778148_Txc109683,3778_36 -3778_48887,71,3778_2941,Saggart,221.SuBH.93-RED-y11-,0,3778_7778148_Txc109658,3778_22 -3778_48887,71,3778_2946,Tallaght,230.SuBH.93-RED-y11-,0,3778_7778148_Txc109698,3778_34 -3778_48887,68,3778_2951,Saggart,309.MF-BH.93-RED-y11,0,3778_7778148_Txc110044,3778_35 -3778_48887,69,3778_2952,Tallaght,228.Sat.93-RED-y11-1,0,3778_7778148_Txc109685,3778_19 -3778_48887,70,3778_2953,Tallaght,228.gf.93-RED-y11-16,0,3778_7778148_Txc109687,3778_33 -3778_48887,68,3778_2954,Tallaght,308.MF-BH.93-RED-y11,0,3778_7778148_Txc110040,3778_25 -3778_48887,68,3778_2958,Tallaght,310.MF-BH.93-RED-y11,0,3778_7778148_Txc110052,3778_32 -3778_48887,71,3778_2959,Saggart,223.SuBH.93-RED-y11-,0,3778_7778148_Txc109666,3778_22 -3778_48886,69,3778_296,Brides Glen,162.Sat.93-GRN-y11-1,0,3778_7778148_Txc104885,3778_5 -3778_48887,71,3778_2964,Tallaght,232.SuBH.93-RED-y11-,0,3778_7778148_Txc109706,3778_34 -3778_48887,71,3778_2969,Tallaght,224.SuBH.93-RED-y11-,0,3778_7778148_Txc109670,3778_20 -3778_48886,70,3778_297,Brides Glen,162.gf.93-GRN-y11-16,0,3778_7778148_Txc104886,3778_5 -3778_48887,69,3778_2970,Saggart,229.Sat.93-RED-y11-1,0,3778_7778148_Txc109689,3778_23 -3778_48887,70,3778_2971,Saggart,229.gf.93-RED-y11-16,0,3778_7778148_Txc109691,3778_23 -3778_48887,69,3778_2979,Tallaght,230.Sat.93-RED-y11-1,0,3778_7778148_Txc109697,3778_19 -3778_48887,70,3778_2980,Tallaght,230.gf.93-RED-y11-16,0,3778_7778148_Txc109699,3778_33 -3778_48887,68,3778_2984,Tallaght,312.MF-BH.93-RED-y11,0,3778_7778148_Txc110060,3778_32 -3778_48887,68,3778_2985,Saggart,311.MF-BH.93-RED-y11,0,3778_7778148_Txc110056,3778_23 -3778_48887,69,3778_2986,Saggart,231.Sat.93-RED-y11-1,0,3778_7778148_Txc109701,3778_24 -3778_48887,70,3778_2987,Saggart,231.gf.93-RED-y11-16,0,3778_7778148_Txc109703,3778_36 -3778_48887,68,3778_2988,Saggart,313.MF-BH.93-RED-y11,0,3778_7778148_Txc110064,3778_35 -3778_48887,71,3778_2992,Saggart,226.SuBH.93-RED-y11-,0,3778_7778148_Txc109678,3778_22 -3778_48887,71,3778_2997,Tallaght,234.SuBH.93-RED-y11-,0,3778_7778148_Txc109714,3778_34 -3778_48886,68,3778_3,Brides Glen,195.MF-BH.93-GRN-y11,0,3778_7778148_Txc104995,3778_1 -3778_48887,71,3778_3002,Saggart,227.SuBH.93-RED-y11-,0,3778_7778148_Txc109682,3778_22 -3778_48887,69,3778_3007,Tallaght,225.Sat.93-RED-y11-1,0,3778_7778148_Txc109673,3778_20 -3778_48887,70,3778_3008,Tallaght,225.gf.93-RED-y11-16,0,3778_7778148_Txc109675,3778_20 -3778_48886,68,3778_301,Brides Glen,257.MF-BH.93-GRN-y11,0,3778_7778148_Txc105209,3778_5 -3778_48887,68,3778_3012,Saggart,315.MF-BH.93-RED-y11,0,3778_7778148_Txc110072,3778_35 -3778_48887,68,3778_3013,Tallaght,314.MF-BH.93-RED-y11,0,3778_7778148_Txc110068,3778_25 -3778_48887,69,3778_3014,Tallaght,232.Sat.93-RED-y11-1,0,3778_7778148_Txc109705,3778_25 -3778_48887,70,3778_3015,Tallaght,232.gf.93-RED-y11-16,0,3778_7778148_Txc109707,3778_25 -3778_48887,69,3778_3016,Saggart,233.Sat.93-RED-y11-1,0,3778_7778148_Txc109709,3778_24 -3778_48887,70,3778_3017,Saggart,233.gf.93-RED-y11-16,0,3778_7778148_Txc109711,3778_36 -3778_48887,71,3778_3018,Tallaght,236.SuBH.93-RED-y11-,0,3778_7778148_Txc109722,3778_34 -3778_48886,68,3778_302,Sandyford,260.MF-BH.93-GRN-y11,0,3778_7778148_Txc105222,3778_4 -3778_48887,71,3778_3029,Saggart,229.SuBH.93-RED-y11-,0,3778_7778148_Txc109690,3778_22 -3778_48886,71,3778_303,Brides Glen,94.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105668,3778_2 -3778_48887,68,3778_3030,Tallaght,316.MF-BH.93-RED-y11,0,3778_7778148_Txc110076,3778_32 -3778_48887,69,3778_3035,Tallaght,234.Sat.93-RED-y11-1,0,3778_7778148_Txc109713,3778_19 -3778_48887,70,3778_3036,Tallaght,234.gf.93-RED-y11-16,0,3778_7778148_Txc109715,3778_33 -3778_48887,71,3778_3040,Tallaght,238.SuBH.93-RED-y11-,0,3778_7778148_Txc109730,3778_34 -3778_48887,68,3778_3045,Tallaght,318.MF-BH.93-RED-y11,0,3778_7778148_Txc110084,3778_32 -3778_48887,71,3778_3046,Saggart,231.SuBH.93-RED-y11-,0,3778_7778148_Txc109702,3778_22 -3778_48887,68,3778_3047,Saggart,317.MF-BH.93-RED-y11,0,3778_7778148_Txc110080,3778_23 -3778_48887,68,3778_3052,Saggart,319.MF-BH.93-RED-y11,0,3778_7778148_Txc110088,3778_35 -3778_48887,69,3778_3053,Saggart,235.Sat.93-RED-y11-1,0,3778_7778148_Txc109717,3778_23 -3778_48887,70,3778_3054,Saggart,235.gf.93-RED-y11-16,0,3778_7778148_Txc109719,3778_23 -3778_48887,69,3778_3055,Tallaght,236.Sat.93-RED-y11-1,0,3778_7778148_Txc109721,3778_19 -3778_48887,70,3778_3056,Tallaght,236.gf.93-RED-y11-16,0,3778_7778148_Txc109723,3778_33 -3778_48887,71,3778_3063,Tallaght,240.SuBH.93-RED-y11-,0,3778_7778148_Txc109742,3778_34 -3778_48887,69,3778_3068,Saggart,237.Sat.93-RED-y11-1,0,3778_7778148_Txc109725,3778_24 -3778_48887,70,3778_3069,Saggart,237.gf.93-RED-y11-16,0,3778_7778148_Txc109727,3778_36 -3778_48887,71,3778_3073,Saggart,233.SuBH.93-RED-y11-,0,3778_7778148_Txc109710,3778_22 -3778_48887,68,3778_3078,Saggart,321.MF-BH.93-RED-y11,0,3778_7778148_Txc110100,3778_35 -3778_48887,68,3778_3079,Tallaght,320.MF-BH.93-RED-y11,0,3778_7778148_Txc110096,3778_25 -3778_48886,69,3778_308,Sandyford,165.Sat.93-GRN-y11-1,0,3778_7778148_Txc104894,3778_4 -3778_48887,71,3778_3080,Tallaght,242.SuBH.93-RED-y11-,0,3778_7778148_Txc109750,3778_34 -3778_48887,68,3778_3085,Tallaght,322.MF-BH.93-RED-y11,0,3778_7778148_Txc110104,3778_32 -3778_48887,71,3778_3086,Saggart,235.SuBH.93-RED-y11-,0,3778_7778148_Txc109718,3778_22 -3778_48887,69,3778_3087,Tallaght,238.Sat.93-RED-y11-1,0,3778_7778148_Txc109729,3778_25 -3778_48887,70,3778_3088,Tallaght,238.gf.93-RED-y11-16,0,3778_7778148_Txc109731,3778_25 -3778_48887,69,3778_3089,Saggart,239.Sat.93-RED-y11-1,0,3778_7778148_Txc109733,3778_24 -3778_48886,70,3778_309,Sandyford,165.gf.93-GRN-y11-16,0,3778_7778148_Txc104895,3778_4 -3778_48887,70,3778_3090,Saggart,239.gf.93-RED-y11-16,0,3778_7778148_Txc109735,3778_36 -3778_48887,71,3778_3101,Tallaght,244.SuBH.93-RED-y11-,0,3778_7778148_Txc109758,3778_34 -3778_48887,68,3778_3106,Tallaght,324.MF-BH.93-RED-y11,0,3778_7778148_Txc110112,3778_32 -3778_48887,69,3778_3107,Tallaght,240.Sat.93-RED-y11-1,0,3778_7778148_Txc109741,3778_19 -3778_48887,70,3778_3108,Tallaght,240.gf.93-RED-y11-16,0,3778_7778148_Txc109743,3778_33 -3778_48887,68,3778_3109,Saggart,323.MF-BH.93-RED-y11,0,3778_7778148_Txc110108,3778_23 -3778_48887,68,3778_3113,Saggart,325.MF-BH.93-RED-y11,0,3778_7778148_Txc110116,3778_35 -3778_48887,71,3778_3114,Saggart,237.SuBH.93-RED-y11-,0,3778_7778148_Txc109726,3778_22 -3778_48887,71,3778_3119,Tallaght,246.SuBH.93-RED-y11-,0,3778_7778148_Txc109766,3778_34 -3778_48887,69,3778_3124,Saggart,241.Sat.93-RED-y11-1,0,3778_7778148_Txc109745,3778_23 -3778_48887,70,3778_3125,Saggart,241.gf.93-RED-y11-16,0,3778_7778148_Txc109747,3778_23 -3778_48887,69,3778_3129,Tallaght,242.Sat.93-RED-y11-1,0,3778_7778148_Txc109749,3778_19 -3778_48886,71,3778_313,Brides Glen,98.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105684,3778_1 -3778_48887,70,3778_3130,Tallaght,242.gf.93-RED-y11-16,0,3778_7778148_Txc109751,3778_33 -3778_48887,68,3778_3131,Saggart,327.MF-BH.93-RED-y11,0,3778_7778148_Txc110124,3778_35 -3778_48887,68,3778_3135,Tallaght,326.MF-BH.93-RED-y11,0,3778_7778148_Txc110120,3778_25 -3778_48887,71,3778_3136,Saggart,239.SuBH.93-RED-y11-,0,3778_7778148_Txc109734,3778_22 -3778_48887,68,3778_3141,Tallaght,328.MF-BH.93-RED-y11,0,3778_7778148_Txc110128,3778_32 -3778_48887,69,3778_3142,Saggart,243.Sat.93-RED-y11-1,0,3778_7778148_Txc109753,3778_24 -3778_48887,70,3778_3143,Saggart,243.gf.93-RED-y11-16,0,3778_7778148_Txc109755,3778_36 -3778_48887,71,3778_3144,Tallaght,248.SuBH.93-RED-y11-,0,3778_7778148_Txc109774,3778_34 -3778_48887,71,3778_3152,Saggart,241.SuBH.93-RED-y11-,0,3778_7778148_Txc109746,3778_22 -3778_48887,68,3778_3157,Tallaght,330.MF-BH.93-RED-y11,0,3778_7778148_Txc110140,3778_32 -3778_48887,68,3778_3158,Saggart,329.MF-BH.93-RED-y11,0,3778_7778148_Txc110132,3778_23 -3778_48887,71,3778_3159,Tallaght,250.SuBH.93-RED-y11-,0,3778_7778148_Txc109786,3778_34 -3778_48887,69,3778_3164,Tallaght,244.Sat.93-RED-y11-1,0,3778_7778148_Txc109757,3778_25 -3778_48887,70,3778_3165,Tallaght,244.gf.93-RED-y11-16,0,3778_7778148_Txc109759,3778_25 -3778_48887,69,3778_3166,Saggart,245.Sat.93-RED-y11-1,0,3778_7778148_Txc109761,3778_24 -3778_48887,70,3778_3167,Saggart,245.gf.93-RED-y11-16,0,3778_7778148_Txc109763,3778_36 -3778_48887,68,3778_3174,Saggart,331.MF-BH.93-RED-y11,0,3778_7778148_Txc110144,3778_35 -3778_48887,71,3778_3175,Saggart,243.SuBH.93-RED-y11-,0,3778_7778148_Txc109754,3778_22 -3778_48886,69,3778_318,Brides Glen,164.Sat.93-GRN-y11-1,0,3778_7778148_Txc104891,3778_5 -3778_48887,69,3778_3180,Tallaght,246.Sat.93-RED-y11-1,0,3778_7778148_Txc109765,3778_19 -3778_48887,70,3778_3181,Tallaght,246.gf.93-RED-y11-16,0,3778_7778148_Txc109767,3778_33 -3778_48887,71,3778_3185,Tallaght,252.SuBH.93-RED-y11-,0,3778_7778148_Txc109794,3778_34 -3778_48886,70,3778_319,Brides Glen,164.gf.93-GRN-y11-16,0,3778_7778148_Txc104892,3778_5 -3778_48887,68,3778_3190,Saggart,333.MF-BH.93-RED-y11,0,3778_7778148_Txc110152,3778_35 -3778_48887,68,3778_3191,Tallaght,332.MF-BH.93-RED-y11,0,3778_7778148_Txc110148,3778_25 -3778_48887,71,3778_3192,Saggart,245.SuBH.93-RED-y11-,0,3778_7778148_Txc109762,3778_22 -3778_48887,68,3778_3193,Tallaght,334.MF-BH.93-RED-y11,0,3778_7778148_Txc110156,3778_32 -3778_48887,69,3778_3198,Saggart,247.Sat.93-RED-y11-1,0,3778_7778148_Txc109769,3778_23 -3778_48887,70,3778_3199,Saggart,247.gf.93-RED-y11-16,0,3778_7778148_Txc109771,3778_23 -3778_48886,68,3778_32,Brides Glen,201.MF-BH.93-GRN-y11,0,3778_7778148_Txc105021,3778_5 -3778_48886,68,3778_320,Brides Glen,259.MF-BH.93-GRN-y11,0,3778_7778148_Txc105215,3778_5 -3778_48887,69,3778_3200,Tallaght,248.Sat.93-RED-y11-1,0,3778_7778148_Txc109773,3778_19 -3778_48887,70,3778_3201,Tallaght,248.gf.93-RED-y11-16,0,3778_7778148_Txc109775,3778_33 -3778_48887,71,3778_3208,Tallaght,254.SuBH.93-RED-y11-,0,3778_7778148_Txc109802,3778_34 -3778_48887,69,3778_3213,Saggart,249.Sat.93-RED-y11-1,0,3778_7778148_Txc109777,3778_24 -3778_48887,70,3778_3214,Saggart,249.gf.93-RED-y11-16,0,3778_7778148_Txc109779,3778_36 -3778_48887,68,3778_3215,Tallaght,336.MF-BH.93-RED-y11,0,3778_7778148_Txc110164,3778_32 -3778_48887,71,3778_3219,Saggart,247.SuBH.93-RED-y11-,0,3778_7778148_Txc109770,3778_22 -3778_48887,68,3778_3220,Saggart,335.MF-BH.93-RED-y11,0,3778_7778148_Txc110160,3778_23 -3778_48887,68,3778_3225,Saggart,337.MF-BH.93-RED-y11,0,3778_7778148_Txc110168,3778_35 -3778_48887,71,3778_3226,Tallaght,256.SuBH.93-RED-y11-,0,3778_7778148_Txc109810,3778_34 -3778_48887,71,3778_3231,Saggart,249.SuBH.93-RED-y11-,0,3778_7778148_Txc109778,3778_22 -3778_48887,69,3778_3236,Tallaght,250.Sat.93-RED-y11-1,0,3778_7778148_Txc109785,3778_25 -3778_48887,70,3778_3237,Tallaght,250.gf.93-RED-y11-16,0,3778_7778148_Txc109787,3778_25 -3778_48887,69,3778_3238,Saggart,251.Sat.93-RED-y11-1,0,3778_7778148_Txc109789,3778_24 -3778_48887,70,3778_3239,Saggart,251.gf.93-RED-y11-16,0,3778_7778148_Txc109791,3778_36 -3778_48886,68,3778_324,Sandyford,262.MF-BH.93-GRN-y11,0,3778_7778148_Txc105228,3778_4 -3778_48887,68,3778_3246,Saggart,339.MF-BH.93-RED-y11,0,3778_7778148_Txc110176,3778_35 -3778_48887,71,3778_3247,Tallaght,258.SuBH.93-RED-y11-,0,3778_7778148_Txc109818,3778_34 -3778_48887,68,3778_3248,Tallaght,338.MF-BH.93-RED-y11,0,3778_7778148_Txc110172,3778_25 -3778_48886,69,3778_325,Sandyford,167.Sat.93-GRN-y11-1,0,3778_7778148_Txc104900,3778_4 -3778_48887,69,3778_3253,Tallaght,252.Sat.93-RED-y11-1,0,3778_7778148_Txc109793,3778_19 -3778_48887,70,3778_3254,Tallaght,252.gf.93-RED-y11-16,0,3778_7778148_Txc109795,3778_33 -3778_48887,68,3778_3255,Tallaght,340.MF-BH.93-RED-y11,0,3778_7778148_Txc110184,3778_32 -3778_48887,71,3778_3259,Saggart,251.SuBH.93-RED-y11-,0,3778_7778148_Txc109790,3778_22 -3778_48886,70,3778_326,Sandyford,167.gf.93-GRN-y11-16,0,3778_7778148_Txc104901,3778_4 -3778_48887,71,3778_3264,Tallaght,260.SuBH.93-RED-y11-,0,3778_7778148_Txc109830,3778_34 -3778_48887,68,3778_3269,Tallaght,342.MF-BH.93-RED-y11,0,3778_7778148_Txc110192,3778_32 -3778_48887,68,3778_3270,Saggart,341.MF-BH.93-RED-y11,0,3778_7778148_Txc110188,3778_23 -3778_48887,69,3778_3271,Saggart,253.Sat.93-RED-y11-1,0,3778_7778148_Txc109797,3778_23 -3778_48887,70,3778_3272,Saggart,253.gf.93-RED-y11-16,0,3778_7778148_Txc109799,3778_23 -3778_48887,71,3778_3276,Saggart,253.SuBH.93-RED-y11-,0,3778_7778148_Txc109798,3778_22 -3778_48887,69,3778_3277,Tallaght,254.Sat.93-RED-y11-1,0,3778_7778148_Txc109801,3778_19 -3778_48887,70,3778_3278,Tallaght,254.gf.93-RED-y11-16,0,3778_7778148_Txc109803,3778_33 -3778_48887,68,3778_3286,Saggart,343.MF-BH.93-RED-y11,0,3778_7778148_Txc110196,3778_35 -3778_48887,71,3778_3287,Tallaght,262.SuBH.93-RED-y11-,0,3778_7778148_Txc109838,3778_34 -3778_48887,69,3778_3292,Saggart,255.Sat.93-RED-y11-1,0,3778_7778148_Txc109805,3778_24 -3778_48887,70,3778_3293,Saggart,255.gf.93-RED-y11-16,0,3778_7778148_Txc109807,3778_36 -3778_48887,68,3778_3297,Saggart,345.MF-BH.93-RED-y11,0,3778_7778148_Txc110204,3778_35 -3778_48887,71,3778_3298,Saggart,255.SuBH.93-RED-y11-,0,3778_7778148_Txc109806,3778_22 -3778_48886,69,3778_33,Brides Glen,136.Sat.93-GRN-y11-1,0,3778_7778148_Txc104773,3778_2 -3778_48886,68,3778_330,Brides Glen,261.MF-BH.93-GRN-y11,0,3778_7778148_Txc105225,3778_5 -3778_48887,68,3778_3303,Tallaght,344.MF-BH.93-RED-y11,0,3778_7778148_Txc110200,3778_25 -3778_48887,71,3778_3304,Tallaght,264.SuBH.93-RED-y11-,0,3778_7778148_Txc109846,3778_34 -3778_48887,68,3778_3305,Tallaght,346.MF-BH.93-RED-y11,0,3778_7778148_Txc110208,3778_32 -3778_48886,71,3778_331,Brides Glen,100.SuBH.93-GRN-y11-,0,3778_7778148_Txc104618,3778_1 -3778_48887,69,3778_3310,Tallaght,256.Sat.93-RED-y11-1,0,3778_7778148_Txc109809,3778_25 -3778_48887,70,3778_3311,Tallaght,256.gf.93-RED-y11-16,0,3778_7778148_Txc109811,3778_25 -3778_48887,69,3778_3312,Saggart,257.Sat.93-RED-y11-1,0,3778_7778148_Txc109813,3778_24 -3778_48887,70,3778_3313,Saggart,257.gf.93-RED-y11-16,0,3778_7778148_Txc109815,3778_36 -3778_48887,71,3778_3320,Saggart,257.SuBH.93-RED-y11-,0,3778_7778148_Txc109814,3778_22 -3778_48887,69,3778_3325,Tallaght,258.Sat.93-RED-y11-1,0,3778_7778148_Txc109817,3778_19 -3778_48887,70,3778_3326,Tallaght,258.gf.93-RED-y11-16,0,3778_7778148_Txc109819,3778_33 -3778_48887,68,3778_3327,Tallaght,348.MF-BH.93-RED-y11,0,3778_7778148_Txc110216,3778_32 -3778_48887,71,3778_3331,Tallaght,266.SuBH.93-RED-y11-,0,3778_7778148_Txc109854,3778_34 -3778_48887,68,3778_3332,Saggart,347.MF-BH.93-RED-y11,0,3778_7778148_Txc110212,3778_23 -3778_48887,68,3778_3337,Saggart,349.MF-BH.93-RED-y11,0,3778_7778148_Txc110220,3778_35 -3778_48887,71,3778_3338,Saggart,259.SuBH.93-RED-y11-,0,3778_7778148_Txc109822,3778_22 -3778_48887,71,3778_3343,Tallaght,268.SuBH.93-RED-y11-,0,3778_7778148_Txc109862,3778_34 -3778_48887,69,3778_3348,Saggart,259.Sat.93-RED-y11-1,0,3778_7778148_Txc109821,3778_23 -3778_48887,70,3778_3349,Saggart,259.gf.93-RED-y11-16,0,3778_7778148_Txc109823,3778_23 -3778_48887,69,3778_3350,Tallaght,260.Sat.93-RED-y11-1,0,3778_7778148_Txc109829,3778_19 -3778_48887,70,3778_3351,Tallaght,260.gf.93-RED-y11-16,0,3778_7778148_Txc109831,3778_33 -3778_48887,68,3778_3358,Saggart,351.MF-BH.93-RED-y11,0,3778_7778148_Txc110232,3778_35 -3778_48887,68,3778_3359,Tallaght,350.MF-BH.93-RED-y11,0,3778_7778148_Txc110228,3778_25 -3778_48886,69,3778_336,Brides Glen,166.Sat.93-GRN-y11-1,0,3778_7778148_Txc104897,3778_5 -3778_48887,71,3778_3360,Saggart,261.SuBH.93-RED-y11-,0,3778_7778148_Txc109834,3778_22 -3778_48887,69,3778_3365,Saggart,261.Sat.93-RED-y11-1,0,3778_7778148_Txc109833,3778_24 -3778_48887,70,3778_3366,Saggart,261.gf.93-RED-y11-16,0,3778_7778148_Txc109835,3778_36 -3778_48886,70,3778_337,Brides Glen,166.gf.93-GRN-y11-16,0,3778_7778148_Txc104898,3778_5 -3778_48887,68,3778_3370,Tallaght,352.MF-BH.93-RED-y11,0,3778_7778148_Txc110236,3778_32 -3778_48887,71,3778_3371,Tallaght,270.SuBH.93-RED-y11-,0,3778_7778148_Txc109874,3778_34 -3778_48887,71,3778_3376,Saggart,263.SuBH.93-RED-y11-,0,3778_7778148_Txc109842,3778_22 -3778_48887,68,3778_3381,Tallaght,354.MF-BH.93-RED-y11,0,3778_7778148_Txc110244,3778_32 -3778_48887,69,3778_3382,Tallaght,262.Sat.93-RED-y11-1,0,3778_7778148_Txc109837,3778_25 -3778_48887,70,3778_3383,Tallaght,262.gf.93-RED-y11-16,0,3778_7778148_Txc109839,3778_25 -3778_48887,69,3778_3384,Saggart,263.Sat.93-RED-y11-1,0,3778_7778148_Txc109841,3778_24 -3778_48887,70,3778_3385,Saggart,263.gf.93-RED-y11-16,0,3778_7778148_Txc109843,3778_36 -3778_48887,68,3778_3386,Saggart,353.MF-BH.93-RED-y11,0,3778_7778148_Txc110240,3778_23 -3778_48887,71,3778_3393,Tallaght,272.SuBH.93-RED-y11-,0,3778_7778148_Txc109882,3778_34 -3778_48887,68,3778_3398,Saggart,355.MF-BH.93-RED-y11,0,3778_7778148_Txc110248,3778_35 -3778_48887,69,3778_3399,Tallaght,264.Sat.93-RED-y11-1,0,3778_7778148_Txc109845,3778_19 -3778_48886,70,3778_34,Brides Glen,136.gf.93-GRN-y11-16,0,3778_7778148_Txc104775,3778_2 -3778_48887,70,3778_3400,Tallaght,264.gf.93-RED-y11-16,0,3778_7778148_Txc109847,3778_33 -3778_48887,71,3778_3404,Saggart,265.SuBH.93-RED-y11-,0,3778_7778148_Txc109850,3778_22 -3778_48887,71,3778_3409,Tallaght,274.SuBH.93-RED-y11-,0,3778_7778148_Txc109890,3778_34 -3778_48886,68,3778_341,Sandyford,264.MF-BH.93-GRN-y11,0,3778_7778148_Txc105234,3778_4 -3778_48887,68,3778_3414,Saggart,358.MF-BH.93-RED-y11,0,3778_7778148_Txc110260,3778_35 -3778_48887,68,3778_3415,Tallaght,356.MF-BH.93-RED-y11,0,3778_7778148_Txc110252,3778_25 -3778_48887,69,3778_3416,Saggart,265.Sat.93-RED-y11-1,0,3778_7778148_Txc109849,3778_23 -3778_48887,70,3778_3417,Saggart,265.gf.93-RED-y11-16,0,3778_7778148_Txc109851,3778_23 -3778_48887,71,3778_3418,Saggart,267.SuBH.93-RED-y11-,0,3778_7778148_Txc109858,3778_22 -3778_48887,68,3778_3419,Tallaght,359.MF-BH.93-RED-y11,0,3778_7778148_Txc110264,3778_32 -3778_48886,69,3778_342,Sandyford,169.Sat.93-GRN-y11-1,0,3778_7778148_Txc104906,3778_4 -3778_48887,69,3778_3427,Tallaght,266.Sat.93-RED-y11-1,0,3778_7778148_Txc109853,3778_19 -3778_48887,70,3778_3428,Tallaght,266.gf.93-RED-y11-16,0,3778_7778148_Txc109855,3778_33 -3778_48886,70,3778_343,Sandyford,169.gf.93-GRN-y11-16,0,3778_7778148_Txc104907,3778_4 -3778_48887,71,3778_3432,Tallaght,276.SuBH.93-RED-y11-,0,3778_7778148_Txc109898,3778_34 -3778_48887,69,3778_3437,Saggart,267.Sat.93-RED-y11-1,0,3778_7778148_Txc109857,3778_24 -3778_48887,70,3778_3438,Saggart,267.gf.93-RED-y11-16,0,3778_7778148_Txc109859,3778_36 -3778_48887,71,3778_3442,Saggart,269.SuBH.93-RED-y11-,0,3778_7778148_Txc109866,3778_22 -3778_48887,68,3778_3443,Tallaght,362.MF-BH.93-RED-y11,0,3778_7778148_Txc110280,3778_32 -3778_48887,68,3778_3448,Saggart,360.MF-BH.93-RED-y11,0,3778_7778148_Txc110272,3778_23 -3778_48887,71,3778_3449,Heuston,277.SuBH.93-RED-y11-,0,3778_7778148_Txc109902,3778_26 -3778_48887,71,3778_3450,Tallaght,279.SuBH.93-RED-y11-,0,3778_7778148_Txc109910,3778_34 -3778_48887,68,3778_3451,Saggart,363.MF-BH.93-RED-y11,0,3778_7778148_Txc110284,3778_35 -3778_48887,69,3778_3460,Tallaght,268.Sat.93-RED-y11-1,0,3778_7778148_Txc109861,3778_25 -3778_48887,70,3778_3461,Tallaght,268.gf.93-RED-y11-16,0,3778_7778148_Txc109863,3778_25 -3778_48887,69,3778_3462,Saggart,269.Sat.93-RED-y11-1,0,3778_7778148_Txc109865,3778_24 -3778_48887,70,3778_3463,Saggart,269.gf.93-RED-y11-16,0,3778_7778148_Txc109867,3778_36 -3778_48886,68,3778_347,Brides Glen,263.MF-BH.93-GRN-y11,0,3778_7778148_Txc105231,3778_5 -3778_48887,71,3778_3470,Saggart,271.SuBH.93-RED-y11-,0,3778_7778148_Txc109878,3778_22 -3778_48887,71,3778_3475,Tallaght,281.SuBH.93-RED-y11-,0,3778_7778148_Txc109922,3778_34 -3778_48887,68,3778_3476,Saggart,365.MF-BH.93-RED-y11,0,3778_7778148_Txc110292,3778_35 -3778_48886,71,3778_348,Brides Glen,101.SuBH.93-GRN-y11-,0,3778_7778148_Txc104622,3778_1 -3778_48887,69,3778_3481,Tallaght,270.Sat.93-RED-y11-1,0,3778_7778148_Txc109873,3778_19 -3778_48887,70,3778_3482,Tallaght,270.gf.93-RED-y11-16,0,3778_7778148_Txc109875,3778_33 -3778_48887,68,3778_3486,Tallaght,364.MF-BH.93-RED-y11,0,3778_7778148_Txc110288,3778_25 -3778_48887,68,3778_3487,Tallaght,366.MF-BH.93-RED-y11,0,3778_7778148_Txc110296,3778_32 -3778_48887,71,3778_3488,Saggart,273.SuBH.93-RED-y11-,0,3778_7778148_Txc109886,3778_22 -3778_48887,71,3778_3493,Heuston,282.SuBH.93-RED-y11-,0,3778_7778148_Txc109926,3778_26 -3778_48887,71,3778_3494,Tallaght,284.SuBH.93-RED-y11-,0,3778_7778148_Txc109934,3778_34 -3778_48887,68,3778_3495,Saggart,357.MF-BH.93-RED-y11,0,3778_7778148_Txc110256,3778_21 -3778_48887,69,3778_3504,Saggart,271.Sat.93-RED-y11-1,0,3778_7778148_Txc109877,3778_23 -3778_48887,70,3778_3505,Saggart,271.gf.93-RED-y11-16,0,3778_7778148_Txc109879,3778_23 -3778_48887,69,3778_3506,Tallaght,272.Sat.93-RED-y11-1,0,3778_7778148_Txc109881,3778_19 -3778_48887,70,3778_3507,Tallaght,272.gf.93-RED-y11-16,0,3778_7778148_Txc109883,3778_33 -3778_48887,68,3778_3514,Tallaght,368.MF-BH.93-RED-y11,0,3778_7778148_Txc110302,3778_32 -3778_48887,71,3778_3515,Saggart,275.SuBH.93-RED-y11-,0,3778_7778148_Txc109894,3778_22 -3778_48887,68,3778_3516,Saggart,367.MF-BH.93-RED-y11,0,3778_7778148_Txc110300,3778_23 -3778_48887,69,3778_3521,Saggart,273.Sat.93-RED-y11-1,0,3778_7778148_Txc109885,3778_24 -3778_48887,70,3778_3522,Saggart,273.gf.93-RED-y11-16,0,3778_7778148_Txc109887,3778_36 -3778_48887,71,3778_3526,Tallaght,286.SuBH.93-RED-y11-,0,3778_7778148_Txc109942,3778_34 -3778_48886,69,3778_353,Brides Glen,168.Sat.93-GRN-y11-1,0,3778_7778148_Txc104903,3778_5 -3778_48887,68,3778_3531,Tallaght,370.MF-BH.93-RED-y11,0,3778_7778148_Txc110310,3778_32 -3778_48887,68,3778_3532,Saggart,369.MF-BH.93-RED-y11,0,3778_7778148_Txc110304,3778_23 -3778_48887,71,3778_3533,Saggart,278.SuBH.93-RED-y11-,0,3778_7778148_Txc109906,3778_22 -3778_48887,68,3778_3534,Tallaght,361.MF-BH.93-RED-y11,0,3778_7778148_Txc110276,3778_20 -3778_48887,68,3778_3539,Saggart,371.MF-BH.93-RED-y11,0,3778_7778148_Txc110312,3778_35 -3778_48886,70,3778_354,Brides Glen,168.gf.93-GRN-y11-16,0,3778_7778148_Txc104904,3778_5 -3778_48887,69,3778_3540,Tallaght,274.Sat.93-RED-y11-1,0,3778_7778148_Txc109889,3778_25 -3778_48887,70,3778_3541,Tallaght,274.gf.93-RED-y11-16,0,3778_7778148_Txc109891,3778_25 -3778_48887,69,3778_3542,Saggart,275.Sat.93-RED-y11-1,0,3778_7778148_Txc109893,3778_24 -3778_48887,70,3778_3543,Saggart,275.gf.93-RED-y11-16,0,3778_7778148_Txc109895,3778_36 -3778_48887,71,3778_3544,Heuston,287.SuBH.93-RED-y11-,0,3778_7778148_Txc109946,3778_26 -3778_48887,71,3778_3545,Tallaght,289.SuBH.93-RED-y11-,0,3778_7778148_Txc109954,3778_34 -3778_48887,69,3778_3560,Tallaght,276.Sat.93-RED-y11-1,0,3778_7778148_Txc109897,3778_19 -3778_48887,70,3778_3561,Tallaght,276.gf.93-RED-y11-16,0,3778_7778148_Txc109899,3778_33 -3778_48887,71,3778_3562,Saggart,280.SuBH.93-RED-y11-,0,3778_7778148_Txc109918,3778_22 -3778_48887,68,3778_3570,Saggart,373.MF-BH.93-RED-y11,0,3778_7778148_Txc110316,3778_35 -3778_48887,68,3778_3571,Tallaght,372.MF-BH.93-RED-y11,0,3778_7778148_Txc110314,3778_25 -3778_48887,71,3778_3572,Tallaght,291.SuBH.93-RED-y11-,0,3778_7778148_Txc109966,3778_34 -3778_48887,68,3778_3577,Tallaght,374.MF-BH.93-RED-y11,0,3778_7778148_Txc110318,3778_32 -3778_48887,71,3778_3578,Saggart,283.SuBH.93-RED-y11-,0,3778_7778148_Txc109930,3778_22 -3778_48886,68,3778_358,Sandyford,266.MF-BH.93-GRN-y11,0,3778_7778148_Txc105240,3778_4 -3778_48887,69,3778_3583,Saggart,277.Sat.93-RED-y11-1,0,3778_7778148_Txc109901,3778_23 -3778_48887,70,3778_3584,Saggart,277.gf.93-RED-y11-16,0,3778_7778148_Txc109903,3778_23 -3778_48887,69,3778_3588,Tallaght,278.Sat.93-RED-y11-1,0,3778_7778148_Txc109905,3778_19 -3778_48887,70,3778_3589,Tallaght,278.gf.93-RED-y11-16,0,3778_7778148_Txc109907,3778_33 -3778_48886,68,3778_359,Brides Glen,265.MF-BH.93-GRN-y11,0,3778_7778148_Txc105237,3778_5 -3778_48887,68,3778_3593,Tallaght,376.MF-BH.93-RED-y11,0,3778_7778148_Txc110322,3778_32 -3778_48887,71,3778_3594,Heuston,292.SuBH.93-RED-y11-,0,3778_7778148_Txc109970,3778_26 -3778_48887,71,3778_3595,Tallaght,294.SuBH.93-RED-y11-,0,3778_7778148_Txc109978,3778_34 -3778_48886,69,3778_360,Sandyford,171.Sat.93-GRN-y11-1,0,3778_7778148_Txc104916,3778_4 -3778_48887,68,3778_3604,Saggart,375.MF-BH.93-RED-y11,0,3778_7778148_Txc110320,3778_23 -3778_48887,69,3778_3605,Saggart,279.Sat.93-RED-y11-1,0,3778_7778148_Txc109909,3778_24 -3778_48887,70,3778_3606,Saggart,279.gf.93-RED-y11-16,0,3778_7778148_Txc109911,3778_36 -3778_48887,68,3778_3607,Saggart,377.MF-BH.93-RED-y11,0,3778_7778148_Txc110324,3778_35 -3778_48886,70,3778_361,Sandyford,171.gf.93-GRN-y11-16,0,3778_7778148_Txc104917,3778_4 -3778_48887,71,3778_3611,Saggart,285.SuBH.93-RED-y11-,0,3778_7778148_Txc109938,3778_22 -3778_48887,71,3778_3616,Tallaght,296.SuBH.93-RED-y11-,0,3778_7778148_Txc109986,3778_34 -3778_48887,68,3778_3621,Saggart,379.MF-BH.93-RED-y11,0,3778_7778148_Txc110328,3778_35 -3778_48887,68,3778_3622,Tallaght,378.MF-BH.93-RED-y11,0,3778_7778148_Txc110326,3778_25 -3778_48887,69,3778_3623,Tallaght,280.Sat.93-RED-y11-1,0,3778_7778148_Txc109917,3778_25 -3778_48887,70,3778_3624,Tallaght,280.gf.93-RED-y11-16,0,3778_7778148_Txc109919,3778_25 -3778_48887,69,3778_3625,Saggart,281.Sat.93-RED-y11-1,0,3778_7778148_Txc109921,3778_24 -3778_48887,70,3778_3626,Saggart,281.gf.93-RED-y11-16,0,3778_7778148_Txc109923,3778_36 -3778_48887,71,3778_3627,Saggart,288.SuBH.93-RED-y11-,0,3778_7778148_Txc109950,3778_22 -3778_48887,68,3778_3638,Tallaght,380.MF-BH.93-RED-y11,0,3778_7778148_Txc110334,3778_32 -3778_48887,71,3778_3639,Heuston,297.SuBH.93-RED-y11-,0,3778_7778148_Txc109990,3778_26 -3778_48887,71,3778_3640,Tallaght,299.SuBH.93-RED-y11-,0,3778_7778148_Txc109998,3778_34 -3778_48887,69,3778_3649,Tallaght,283.Sat.93-RED-y11-1,0,3778_7778148_Txc109929,3778_19 -3778_48886,71,3778_365,Brides Glen,102.SuBH.93-GRN-y11-,0,3778_7778148_Txc104626,3778_1 -3778_48887,70,3778_3650,Tallaght,283.gf.93-RED-y11-16,0,3778_7778148_Txc109931,3778_33 -3778_48887,68,3778_3654,Tallaght,382.MF-BH.93-RED-y11,0,3778_7778148_Txc110336,3778_32 -3778_48887,71,3778_3655,Saggart,290.SuBH.93-RED-y11-,0,3778_7778148_Txc109962,3778_22 -3778_48887,68,3778_3660,Saggart,381.MF-BH.93-RED-y11,0,3778_7778148_Txc110335,3778_23 -3778_48887,71,3778_3661,Tallaght,301.SuBH.93-RED-y11-,0,3778_7778148_Txc110014,3778_34 -3778_48887,68,3778_3662,Saggart,383.MF-BH.93-RED-y11,0,3778_7778148_Txc110337,3778_35 -3778_48887,69,3778_3667,Saggart,284.Sat.93-RED-y11-1,0,3778_7778148_Txc109933,3778_23 -3778_48887,70,3778_3668,Saggart,284.gf.93-RED-y11-16,0,3778_7778148_Txc109935,3778_23 -3778_48887,69,3778_3669,Tallaght,285.Sat.93-RED-y11-1,0,3778_7778148_Txc109937,3778_19 -3778_48887,70,3778_3670,Tallaght,285.gf.93-RED-y11-16,0,3778_7778148_Txc109939,3778_33 -3778_48887,71,3778_3677,Saggart,293.SuBH.93-RED-y11-,0,3778_7778148_Txc109974,3778_22 -3778_48887,68,3778_3682,Saggart,385.MF-BH.93-RED-y11,0,3778_7778148_Txc110339,3778_35 -3778_48887,69,3778_3683,Saggart,286.Sat.93-RED-y11-1,0,3778_7778148_Txc109941,3778_24 -3778_48887,70,3778_3684,Saggart,286.gf.93-RED-y11-16,0,3778_7778148_Txc109943,3778_36 -3778_48887,71,3778_3688,Heuston,302.SuBH.93-RED-y11-,0,3778_7778148_Txc110018,3778_26 -3778_48887,71,3778_3689,Tallaght,304.SuBH.93-RED-y11-,0,3778_7778148_Txc110026,3778_34 -3778_48887,68,3778_3690,Tallaght,384.MF-BH.93-RED-y11,0,3778_7778148_Txc110338,3778_25 -3778_48887,68,3778_3699,Tallaght,386.MF-BH.93-RED-y11,0,3778_7778148_Txc110340,3778_32 -3778_48886,69,3778_370,Brides Glen,170.Sat.93-GRN-y11-1,0,3778_7778148_Txc104913,3778_5 -3778_48887,71,3778_3700,Saggart,295.SuBH.93-RED-y11-,0,3778_7778148_Txc109982,3778_22 -3778_48887,71,3778_3705,Tallaght,306.SuBH.93-RED-y11-,0,3778_7778148_Txc110034,3778_34 -3778_48886,70,3778_371,Brides Glen,170.gf.93-GRN-y11-16,0,3778_7778148_Txc104914,3778_5 -3778_48887,68,3778_3710,Tallaght,388.MF-BH.93-RED-y11,0,3778_7778148_Txc110342,3778_32 -3778_48887,69,3778_3711,Tallaght,287.Sat.93-RED-y11-1,0,3778_7778148_Txc109945,3778_25 -3778_48887,70,3778_3712,Tallaght,287.gf.93-RED-y11-16,0,3778_7778148_Txc109947,3778_25 -3778_48887,69,3778_3713,Saggart,288.Sat.93-RED-y11-1,0,3778_7778148_Txc109949,3778_24 -3778_48887,70,3778_3714,Saggart,288.gf.93-RED-y11-16,0,3778_7778148_Txc109951,3778_36 -3778_48886,68,3778_372,Sandyford,268.MF-BH.93-GRN-y11,0,3778_7778148_Txc105246,3778_4 -3778_48887,68,3778_3721,Saggart,387.MF-BH.93-RED-y11,0,3778_7778148_Txc110341,3778_23 -3778_48887,71,3778_3722,Saggart,298.SuBH.93-RED-y11-,0,3778_7778148_Txc109994,3778_22 -3778_48887,68,3778_3723,Saggart,389.MF-BH.93-RED-y11,0,3778_7778148_Txc110343,3778_35 -3778_48887,69,3778_3728,Tallaght,289.Sat.93-RED-y11-1,0,3778_7778148_Txc109953,3778_19 -3778_48887,70,3778_3729,Tallaght,289.gf.93-RED-y11-16,0,3778_7778148_Txc109955,3778_33 -3778_48887,71,3778_3733,Heuston,307.SuBH.93-RED-y11-,0,3778_7778148_Txc110038,3778_26 -3778_48887,71,3778_3734,Tallaght,309.SuBH.93-RED-y11-,0,3778_7778148_Txc110046,3778_34 -3778_48887,69,3778_3743,Saggart,282.Sat.93-RED-y11-1,0,3778_7778148_Txc109925,3778_21 -3778_48887,70,3778_3744,Saggart,282.gf.93-RED-y11-16,0,3778_7778148_Txc109927,3778_21 -3778_48887,68,3778_3748,Saggart,391.MF-BH.93-RED-y11,0,3778_7778148_Txc110349,3778_35 -3778_48887,71,3778_3749,Saggart,300.SuBH.93-RED-y11-,0,3778_7778148_Txc110010,3778_22 -3778_48887,68,3778_3750,Tallaght,390.MF-BH.93-RED-y11,0,3778_7778148_Txc110348,3778_25 -3778_48887,68,3778_3755,Tallaght,392.MF-BH.93-RED-y11,0,3778_7778148_Txc110350,3778_32 -3778_48887,69,3778_3756,Saggart,290.Sat.93-RED-y11-1,0,3778_7778148_Txc109961,3778_23 -3778_48887,70,3778_3757,Saggart,290.gf.93-RED-y11-16,0,3778_7778148_Txc109963,3778_23 -3778_48886,68,3778_376,Brides Glen,267.MF-BH.93-GRN-y11,0,3778_7778148_Txc105243,3778_5 -3778_48887,69,3778_3761,Tallaght,292.Sat.93-RED-y11-1,0,3778_7778148_Txc109969,3778_19 -3778_48887,70,3778_3762,Tallaght,292.gf.93-RED-y11-16,0,3778_7778148_Txc109971,3778_33 -3778_48887,71,3778_3763,Tallaght,311.SuBH.93-RED-y11-,0,3778_7778148_Txc110058,3778_34 -3778_48886,71,3778_377,Brides Glen,103.SuBH.93-GRN-y11-,0,3778_7778148_Txc104630,3778_1 -3778_48887,69,3778_3771,Saggart,293.Sat.93-RED-y11-1,0,3778_7778148_Txc109973,3778_24 -3778_48887,70,3778_3772,Saggart,293.gf.93-RED-y11-16,0,3778_7778148_Txc109975,3778_36 -3778_48887,71,3778_3773,Saggart,303.SuBH.93-RED-y11-,0,3778_7778148_Txc110022,3778_22 -3778_48886,71,3778_378,Brides Glen,99.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105688,3778_2 -3778_48887,68,3778_3781,Tallaght,394.MF-BH.93-RED-y11,0,3778_7778148_Txc110352,3778_32 -3778_48887,68,3778_3782,Saggart,393.MF-BH.93-RED-y11,0,3778_7778148_Txc110351,3778_23 -3778_48887,71,3778_3783,Heuston,312.SuBH.93-RED-y11-,0,3778_7778148_Txc110062,3778_26 -3778_48887,71,3778_3784,Tallaght,314.SuBH.93-RED-y11-,0,3778_7778148_Txc110070,3778_34 -3778_48887,68,3778_3793,Saggart,395.MF-BH.93-RED-y11,0,3778_7778148_Txc110353,3778_35 -3778_48887,71,3778_3794,Saggart,305.SuBH.93-RED-y11-,0,3778_7778148_Txc110030,3778_22 -3778_48887,69,3778_3799,Tallaght,295.Sat.93-RED-y11-1,0,3778_7778148_Txc109981,3778_25 -3778_48886,68,3778_38,Brides Glen,205.MF-BH.93-GRN-y11,0,3778_7778148_Txc105033,3778_1 -3778_48887,70,3778_3800,Tallaght,295.gf.93-RED-y11-16,0,3778_7778148_Txc109983,3778_25 -3778_48887,69,3778_3801,Saggart,296.Sat.93-RED-y11-1,0,3778_7778148_Txc109985,3778_24 -3778_48887,70,3778_3802,Saggart,296.gf.93-RED-y11-16,0,3778_7778148_Txc109987,3778_36 -3778_48887,71,3778_3809,Tallaght,316.SuBH.93-RED-y11-,0,3778_7778148_Txc110078,3778_34 -3778_48887,68,3778_3810,Saggart,397.MF-BH.93-RED-y11,0,3778_7778148_Txc110355,3778_35 -3778_48887,68,3778_3815,Tallaght,396.MF-BH.93-RED-y11,0,3778_7778148_Txc110354,3778_25 -3778_48887,69,3778_3816,Tallaght,297.Sat.93-RED-y11-1,0,3778_7778148_Txc109989,3778_19 -3778_48887,70,3778_3817,Tallaght,297.gf.93-RED-y11-16,0,3778_7778148_Txc109991,3778_33 -3778_48887,68,3778_3818,Tallaght,398.MF-BH.93-RED-y11,0,3778_7778148_Txc110356,3778_32 -3778_48887,71,3778_3822,Saggart,308.SuBH.93-RED-y11-,0,3778_7778148_Txc110042,3778_22 -3778_48887,71,3778_3827,Heuston,317.SuBH.93-RED-y11-,0,3778_7778148_Txc110082,3778_26 -3778_48887,71,3778_3828,Tallaght,319.SuBH.93-RED-y11-,0,3778_7778148_Txc110090,3778_34 -3778_48887,68,3778_3837,Tallaght,400.MF-BH.93-RED-y11,0,3778_7778148_Txc110366,3778_32 -3778_48887,68,3778_3838,Saggart,399.MF-BH.93-RED-y11,0,3778_7778148_Txc110357,3778_23 -3778_48887,69,3778_3839,Saggart,298.Sat.93-RED-y11-1,0,3778_7778148_Txc109993,3778_23 -3778_48887,70,3778_3840,Saggart,298.gf.93-RED-y11-16,0,3778_7778148_Txc109995,3778_23 -3778_48887,69,3778_3841,Tallaght,299.Sat.93-RED-y11-1,0,3778_7778148_Txc109997,3778_19 -3778_48887,70,3778_3842,Tallaght,299.gf.93-RED-y11-16,0,3778_7778148_Txc109999,3778_33 -3778_48887,71,3778_3849,Saggart,310.SuBH.93-RED-y11-,0,3778_7778148_Txc110054,3778_22 -3778_48887,68,3778_3854,Saggart,401.MF-BH.93-RED-y11,0,3778_7778148_Txc110367,3778_35 -3778_48887,71,3778_3855,Tallaght,321.SuBH.93-RED-y11-,0,3778_7778148_Txc110102,3778_34 -3778_48887,69,3778_3860,Saggart,291.Sat.93-RED-y11-1,0,3778_7778148_Txc109965,3778_22 -3778_48887,70,3778_3861,Saggart,291.gf.93-RED-y11-16,0,3778_7778148_Txc109967,3778_22 -3778_48887,69,3778_3862,Saggart,300.Sat.93-RED-y11-1,0,3778_7778148_Txc110009,3778_24 -3778_48887,70,3778_3863,Saggart,300.gf.93-RED-y11-16,0,3778_7778148_Txc110011,3778_36 -3778_48886,69,3778_387,Sandyford,173.Sat.93-GRN-y11-1,0,3778_7778148_Txc104922,3778_4 -3778_48887,71,3778_3870,Saggart,313.SuBH.93-RED-y11-,0,3778_7778148_Txc110066,3778_22 -3778_48887,68,3778_3871,Saggart,403.MF-BH.93-RED-y11,0,3778_7778148_Txc110369,3778_35 -3778_48887,68,3778_3876,Tallaght,402.MF-BH.93-RED-y11,0,3778_7778148_Txc110368,3778_25 -3778_48887,68,3778_3877,Tallaght,404.MF-BH.93-RED-y11,0,3778_7778148_Txc110370,3778_32 -3778_48887,71,3778_3878,Heuston,322.SuBH.93-RED-y11-,0,3778_7778148_Txc110106,3778_26 -3778_48887,71,3778_3879,Tallaght,324.SuBH.93-RED-y11-,0,3778_7778148_Txc110114,3778_34 -3778_48886,70,3778_388,Sandyford,173.gf.93-GRN-y11-16,0,3778_7778148_Txc104923,3778_4 -3778_48887,69,3778_3888,Tallaght,294.Sat.93-RED-y11-1,0,3778_7778148_Txc109977,3778_29 -3778_48887,70,3778_3889,Tallaght,294.gf.93-RED-y11-16,0,3778_7778148_Txc109979,3778_29 -3778_48887,69,3778_3893,Saggart,302.Sat.93-RED-y11-1,0,3778_7778148_Txc110017,3778_24 -3778_48887,70,3778_3894,Saggart,302.gf.93-RED-y11-16,0,3778_7778148_Txc110019,3778_36 -3778_48887,69,3778_3898,Tallaght,301.Sat.93-RED-y11-1,0,3778_7778148_Txc110013,3778_25 -3778_48887,70,3778_3899,Tallaght,301.gf.93-RED-y11-16,0,3778_7778148_Txc110015,3778_25 -3778_48886,69,3778_39,Brides Glen,139.Sat.93-GRN-y11-1,0,3778_7778148_Txc104785,3778_1 -3778_48887,71,3778_3903,Saggart,315.SuBH.93-RED-y11-,0,3778_7778148_Txc110074,3778_22 -3778_48887,69,3778_3908,Tallaght,303.Sat.93-RED-y11-1,0,3778_7778148_Txc110021,3778_19 -3778_48887,70,3778_3909,Tallaght,303.gf.93-RED-y11-16,0,3778_7778148_Txc110023,3778_33 -3778_48887,68,3778_3913,Tallaght,406.MF-BH.93-RED-y11,0,3778_7778148_Txc110372,3778_32 -3778_48887,71,3778_3914,Tallaght,326.SuBH.93-RED-y11-,0,3778_7778148_Txc110122,3778_34 -3778_48887,68,3778_3915,Saggart,405.MF-BH.93-RED-y11,0,3778_7778148_Txc110371,3778_23 -3778_48886,68,3778_392,Sandyford,270.MF-BH.93-GRN-y11,0,3778_7778148_Txc105256,3778_4 -3778_48887,68,3778_3920,Saggart,407.MF-BH.93-RED-y11,0,3778_7778148_Txc110373,3778_35 -3778_48887,71,3778_3921,Saggart,318.SuBH.93-RED-y11-,0,3778_7778148_Txc110086,3778_22 -3778_48887,69,3778_3926,Saggart,304.Sat.93-RED-y11-1,0,3778_7778148_Txc110025,3778_23 -3778_48887,70,3778_3927,Saggart,304.gf.93-RED-y11-16,0,3778_7778148_Txc110027,3778_23 -3778_48887,69,3778_3928,Tallaght,305.Sat.93-RED-y11-1,0,3778_7778148_Txc110029,3778_30 -3778_48887,70,3778_3929,Tallaght,305.gf.93-RED-y11-16,0,3778_7778148_Txc110031,3778_30 -3778_48886,69,3778_393,Brides Glen,172.Sat.93-GRN-y11-1,0,3778_7778148_Txc104919,3778_5 -3778_48887,71,3778_3936,Red Cow,327.SuBH.93-RED-y11-,0,3778_7778148_Txc110126,3778_27 -3778_48887,71,3778_3937,Tallaght,329.SuBH.93-RED-y11-,0,3778_7778148_Txc110134,3778_31 -3778_48886,70,3778_394,Brides Glen,172.gf.93-GRN-y11-16,0,3778_7778148_Txc104920,3778_5 -3778_48887,69,3778_3946,Saggart,306.Sat.93-RED-y11-1,0,3778_7778148_Txc110033,3778_24 -3778_48887,70,3778_3947,Saggart,306.gf.93-RED-y11-16,0,3778_7778148_Txc110035,3778_36 -3778_48887,68,3778_3951,Saggart,409.MF-BH.93-RED-y11,0,3778_7778148_Txc110375,3778_35 -3778_48887,68,3778_3952,Tallaght,408.MF-BH.93-RED-y11,0,3778_7778148_Txc110374,3778_25 -3778_48887,71,3778_3953,Saggart,320.SuBH.93-RED-y11-,0,3778_7778148_Txc110098,3778_22 -3778_48887,69,3778_3958,Tallaght,307.Sat.93-RED-y11-1,0,3778_7778148_Txc110037,3778_30 -3778_48887,70,3778_3959,Tallaght,307.gf.93-RED-y11-16,0,3778_7778148_Txc110039,3778_30 -3778_48887,68,3778_3963,Tallaght,410.MF-BH.93-RED-y11,0,3778_7778148_Txc110380,3778_32 -3778_48887,71,3778_3964,Tallaght,331.SuBH.93-RED-y11-,0,3778_7778148_Txc110146,3778_34 -3778_48887,69,3778_3969,Tallaght,309.Sat.93-RED-y11-1,0,3778_7778148_Txc110045,3778_19 -3778_48887,70,3778_3970,Tallaght,309.gf.93-RED-y11-16,0,3778_7778148_Txc110047,3778_33 -3778_48887,71,3778_3971,Saggart,323.SuBH.93-RED-y11-,0,3778_7778148_Txc110110,3778_22 -3778_48887,68,3778_3979,Tallaght,412.MF-BH.93-RED-y11,0,3778_7778148_Txc110382,3778_32 -3778_48886,68,3778_398,Brides Glen,269.MF-BH.93-GRN-y11,0,3778_7778148_Txc105249,3778_5 -3778_48887,68,3778_3980,Saggart,411.MF-BH.93-RED-y11,0,3778_7778148_Txc110381,3778_23 -3778_48887,71,3778_3981,Red Cow,332.SuBH.93-RED-y11-,0,3778_7778148_Txc110150,3778_27 -3778_48887,71,3778_3982,Tallaght,334.SuBH.93-RED-y11-,0,3778_7778148_Txc110158,3778_34 -3778_48886,71,3778_399,Brides Glen,104.SuBH.93-GRN-y11-,0,3778_7778148_Txc104634,3778_1 -3778_48887,68,3778_3991,Saggart,413.MF-BH.93-RED-y11,0,3778_7778148_Txc110383,3778_35 -3778_48887,69,3778_3992,Tallaght,311.Sat.93-RED-y11-1,0,3778_7778148_Txc110057,3778_19 -3778_48887,70,3778_3993,Tallaght,311.gf.93-RED-y11-16,0,3778_7778148_Txc110059,3778_33 -3778_48887,71,3778_3997,Saggart,325.SuBH.93-RED-y11-,0,3778_7778148_Txc110118,3778_22 -3778_48886,68,3778_4,Brides Glen,192.MF-BH.93-GRN-y11,0,3778_7778148_Txc104986,3778_2 -3778_48886,70,3778_40,Brides Glen,139.gf.93-GRN-y11-16,0,3778_7778148_Txc104787,3778_1 -3778_48887,71,3778_4002,Tallaght,336.SuBH.93-RED-y11-,0,3778_7778148_Txc110166,3778_34 -3778_48887,68,3778_4007,Saggart,415.MF-BH.93-RED-y11,0,3778_7778148_Txc110385,3778_35 -3778_48887,68,3778_4008,Tallaght,414.MF-BH.93-RED-y11,0,3778_7778148_Txc110384,3778_25 -3778_48887,69,3778_4009,Tallaght,313.Sat.93-RED-y11-1,0,3778_7778148_Txc110065,3778_19 -3778_48887,70,3778_4010,Tallaght,313.gf.93-RED-y11-16,0,3778_7778148_Txc110067,3778_33 -3778_48887,71,3778_4014,Saggart,328.SuBH.93-RED-y11-,0,3778_7778148_Txc110130,3778_22 -3778_48887,68,3778_4019,Tallaght,416.MF-BH.93-RED-y11,0,3778_7778148_Txc110386,3778_32 -3778_48887,71,3778_4020,Tallaght,338.SuBH.93-RED-y11-,0,3778_7778148_Txc110174,3778_34 -3778_48887,69,3778_4025,Tallaght,315.Sat.93-RED-y11-1,0,3778_7778148_Txc110073,3778_19 -3778_48887,70,3778_4026,Tallaght,315.gf.93-RED-y11-16,0,3778_7778148_Txc110075,3778_33 -3778_48887,71,3778_4030,Saggart,330.SuBH.93-RED-y11-,0,3778_7778148_Txc110142,3778_22 -3778_48887,68,3778_4035,Tallaght,418.MF-BH.93-RED-y11,0,3778_7778148_Txc110388,3778_32 -3778_48887,68,3778_4036,Saggart,417.MF-BH.93-RED-y11,0,3778_7778148_Txc110387,3778_23 -3778_48887,71,3778_4037,Tallaght,340.SuBH.93-RED-y11-,0,3778_7778148_Txc110186,3778_34 -3778_48886,69,3778_404,Sandyford,175.Sat.93-GRN-y11-1,0,3778_7778148_Txc104928,3778_4 -3778_48887,69,3778_4042,Saggart,308.Sat.93-RED-y11-1,0,3778_7778148_Txc110041,3778_22 -3778_48887,70,3778_4043,Saggart,308.gf.93-RED-y11-16,0,3778_7778148_Txc110043,3778_22 -3778_48887,69,3778_4047,Tallaght,317.Sat.93-RED-y11-1,0,3778_7778148_Txc110081,3778_19 -3778_48887,70,3778_4048,Tallaght,317.gf.93-RED-y11-16,0,3778_7778148_Txc110083,3778_33 -3778_48887,71,3778_4049,Saggart,333.SuBH.93-RED-y11-,0,3778_7778148_Txc110154,3778_22 -3778_48886,70,3778_405,Sandyford,175.gf.93-GRN-y11-16,0,3778_7778148_Txc104929,3778_4 -3778_48887,68,3778_4057,Tallaght,420.MF-BH.93-RED-y11,0,3778_7778148_Txc110394,3778_32 -3778_48887,69,3778_4058,Saggart,310.Sat.93-RED-y11-1,0,3778_7778148_Txc110053,3778_22 -3778_48887,70,3778_4059,Saggart,310.gf.93-RED-y11-16,0,3778_7778148_Txc110055,3778_22 -3778_48887,71,3778_4063,Tallaght,342.SuBH.93-RED-y11-,0,3778_7778148_Txc110194,3778_34 -3778_48887,69,3778_4068,Tallaght,319.Sat.93-RED-y11-1,0,3778_7778148_Txc110089,3778_19 -3778_48887,70,3778_4069,Tallaght,319.gf.93-RED-y11-16,0,3778_7778148_Txc110091,3778_33 -3778_48887,71,3778_4073,Saggart,335.SuBH.93-RED-y11-,0,3778_7778148_Txc110162,3778_22 -3778_48887,68,3778_4078,Tallaght,422.MF-BH.93-RED-y11,0,3778_7778148_Txc110396,3778_32 -3778_48887,69,3778_4079,Saggart,312.Sat.93-RED-y11-1,0,3778_7778148_Txc110061,3778_22 -3778_48887,70,3778_4080,Saggart,312.gf.93-RED-y11-16,0,3778_7778148_Txc110063,3778_22 -3778_48887,71,3778_4084,Tallaght,344.SuBH.93-RED-y11-,0,3778_7778148_Txc110202,3778_34 -3778_48887,69,3778_4089,Tallaght,321.Sat.93-RED-y11-1,0,3778_7778148_Txc110101,3778_19 -3778_48886,68,3778_409,Sandyford,272.MF-BH.93-GRN-y11,0,3778_7778148_Txc105262,3778_4 -3778_48887,70,3778_4090,Tallaght,321.gf.93-RED-y11-16,0,3778_7778148_Txc110103,3778_33 -3778_48887,71,3778_4094,Saggart,337.SuBH.93-RED-y11-,0,3778_7778148_Txc110170,3778_22 -3778_48887,68,3778_4099,Tallaght,424.MF-BH.93-RED-y11,0,3778_7778148_Txc110398,3778_32 -3778_48886,69,3778_410,Brides Glen,174.Sat.93-GRN-y11-1,0,3778_7778148_Txc104925,3778_5 -3778_48887,69,3778_4100,Saggart,314.Sat.93-RED-y11-1,0,3778_7778148_Txc110069,3778_22 -3778_48887,70,3778_4101,Saggart,314.gf.93-RED-y11-16,0,3778_7778148_Txc110071,3778_22 -3778_48887,71,3778_4104,Tallaght,346.SuBH.93-RED-y11-,0,3778_7778148_Txc110210,3778_34 -3778_48887,69,3778_4109,Tallaght,323.Sat.93-RED-y11-1,0,3778_7778148_Txc110109,3778_19 -3778_48886,70,3778_411,Brides Glen,174.gf.93-GRN-y11-16,0,3778_7778148_Txc104926,3778_5 -3778_48887,70,3778_4110,Tallaght,323.gf.93-RED-y11-16,0,3778_7778148_Txc110111,3778_33 -3778_48887,71,3778_4113,Saggart,339.SuBH.93-RED-y11-,0,3778_7778148_Txc110178,3778_22 -3778_48887,68,3778_4114,Tallaght,426.MF-BH.93-RED-y11,0,3778_7778148_Txc110400,3778_32 -3778_48887,69,3778_4119,Saggart,316.Sat.93-RED-y11-1,0,3778_7778148_Txc110077,3778_22 -3778_48887,70,3778_4120,Saggart,316.gf.93-RED-y11-16,0,3778_7778148_Txc110079,3778_22 -3778_48887,71,3778_4123,Tallaght,348.SuBH.93-RED-y11-,0,3778_7778148_Txc110218,3778_34 -3778_48887,68,3778_4124,Saggart,419.MF-BH.93-RED-y11,0,3778_7778148_Txc110389,3778_22 -3778_48887,69,3778_4129,Tallaght,325.Sat.93-RED-y11-1,0,3778_7778148_Txc110117,3778_19 -3778_48887,70,3778_4130,Tallaght,325.gf.93-RED-y11-16,0,3778_7778148_Txc110119,3778_33 -3778_48887,71,3778_4133,Saggart,341.SuBH.93-RED-y11-,0,3778_7778148_Txc110190,3778_22 -3778_48887,68,3778_4134,Tallaght,428.MF-BH.93-RED-y11,0,3778_7778148_Txc110402,3778_32 -3778_48887,69,3778_4139,Saggart,318.Sat.93-RED-y11-1,0,3778_7778148_Txc110085,3778_22 -3778_48887,70,3778_4140,Saggart,318.gf.93-RED-y11-16,0,3778_7778148_Txc110087,3778_22 -3778_48887,68,3778_4143,Saggart,421.MF-BH.93-RED-y11,0,3778_7778148_Txc110395,3778_22 -3778_48887,71,3778_4144,Tallaght,350.SuBH.93-RED-y11-,0,3778_7778148_Txc110230,3778_34 -3778_48887,69,3778_4149,Tallaght,327.Sat.93-RED-y11-1,0,3778_7778148_Txc110125,3778_19 -3778_48886,71,3778_415,Brides Glen,105.SuBH.93-GRN-y11-,0,3778_7778148_Txc104638,3778_1 -3778_48887,70,3778_4150,Tallaght,327.gf.93-RED-y11-16,0,3778_7778148_Txc110127,3778_33 -3778_48887,68,3778_4153,Tallaght,430.MF-BH.93-RED-y11,0,3778_7778148_Txc110408,3778_32 -3778_48887,71,3778_4154,Saggart,343.SuBH.93-RED-y11-,0,3778_7778148_Txc110198,3778_22 -3778_48887,69,3778_4159,Saggart,320.Sat.93-RED-y11-1,0,3778_7778148_Txc110097,3778_22 -3778_48886,68,3778_416,Brides Glen,271.MF-BH.93-GRN-y11,0,3778_7778148_Txc105259,3778_5 -3778_48887,70,3778_4160,Saggart,320.gf.93-RED-y11-16,0,3778_7778148_Txc110099,3778_22 -3778_48887,68,3778_4163,Saggart,423.MF-BH.93-RED-y11,0,3778_7778148_Txc110397,3778_22 -3778_48887,71,3778_4164,Tallaght,352.SuBH.93-RED-y11-,0,3778_7778148_Txc110238,3778_34 -3778_48887,69,3778_4169,Tallaght,329.Sat.93-RED-y11-1,0,3778_7778148_Txc110133,3778_19 -3778_48887,70,3778_4170,Tallaght,329.gf.93-RED-y11-16,0,3778_7778148_Txc110135,3778_33 -3778_48887,68,3778_4173,Tallaght,432.MF-BH.93-RED-y11,0,3778_7778148_Txc110410,3778_32 -3778_48887,71,3778_4174,Saggart,345.SuBH.93-RED-y11-,0,3778_7778148_Txc110206,3778_22 -3778_48887,69,3778_4179,Saggart,322.Sat.93-RED-y11-1,0,3778_7778148_Txc110105,3778_22 -3778_48887,70,3778_4180,Saggart,322.gf.93-RED-y11-16,0,3778_7778148_Txc110107,3778_22 -3778_48887,68,3778_4183,Saggart,425.MF-BH.93-RED-y11,0,3778_7778148_Txc110399,3778_22 -3778_48887,69,3778_4184,Tallaght,331.Sat.93-RED-y11-1,0,3778_7778148_Txc110145,3778_19 -3778_48887,70,3778_4185,Tallaght,331.gf.93-RED-y11-16,0,3778_7778148_Txc110147,3778_33 -3778_48887,71,3778_4186,Tallaght,354.SuBH.93-RED-y11-,0,3778_7778148_Txc110246,3778_34 -3778_48887,68,3778_4193,Tallaght,434.MF-BH.93-RED-y11,0,3778_7778148_Txc110412,3778_32 -3778_48887,69,3778_4194,Saggart,324.Sat.93-RED-y11-1,0,3778_7778148_Txc110113,3778_22 -3778_48887,70,3778_4195,Saggart,324.gf.93-RED-y11-16,0,3778_7778148_Txc110115,3778_22 -3778_48887,71,3778_4196,Saggart,347.SuBH.93-RED-y11-,0,3778_7778148_Txc110214,3778_22 -3778_48887,68,3778_4203,Saggart,427.MF-BH.93-RED-y11,0,3778_7778148_Txc110401,3778_22 -3778_48887,69,3778_4204,Tallaght,333.Sat.93-RED-y11-1,0,3778_7778148_Txc110153,3778_19 -3778_48887,70,3778_4205,Tallaght,333.gf.93-RED-y11-16,0,3778_7778148_Txc110155,3778_33 -3778_48887,71,3778_4206,Tallaght,356.SuBH.93-RED-y11-,0,3778_7778148_Txc110254,3778_34 -3778_48886,69,3778_421,Sandyford,177.Sat.93-GRN-y11-1,0,3778_7778148_Txc104934,3778_4 -3778_48887,68,3778_4213,Tallaght,436.MF-BH.93-RED-y11,0,3778_7778148_Txc110414,3778_32 -3778_48887,71,3778_4214,Saggart,349.SuBH.93-RED-y11-,0,3778_7778148_Txc110222,3778_22 -3778_48887,69,3778_4219,Saggart,326.Sat.93-RED-y11-1,0,3778_7778148_Txc110121,3778_22 -3778_48886,70,3778_422,Sandyford,177.gf.93-GRN-y11-16,0,3778_7778148_Txc104935,3778_4 -3778_48887,70,3778_4220,Saggart,326.gf.93-RED-y11-16,0,3778_7778148_Txc110123,3778_22 -3778_48887,68,3778_4223,Saggart,429.MF-BH.93-RED-y11,0,3778_7778148_Txc110403,3778_22 -3778_48887,69,3778_4224,Tallaght,335.Sat.93-RED-y11-1,0,3778_7778148_Txc110161,3778_19 -3778_48887,70,3778_4225,Tallaght,335.gf.93-RED-y11-16,0,3778_7778148_Txc110163,3778_33 -3778_48887,71,3778_4228,Tallaght,358.SuBH.93-RED-y11-,0,3778_7778148_Txc110262,3778_34 -3778_48887,68,3778_4229,Tallaght,438.MF-BH.93-RED-y11,0,3778_7778148_Txc110416,3778_32 -3778_48886,68,3778_423,Sandyford,274.MF-BH.93-GRN-y11,0,3778_7778148_Txc105264,3778_4 -3778_48887,71,3778_4234,Saggart,351.SuBH.93-RED-y11-,0,3778_7778148_Txc110234,3778_22 -3778_48887,69,3778_4239,Saggart,328.Sat.93-RED-y11-1,0,3778_7778148_Txc110129,3778_22 -3778_48887,70,3778_4240,Saggart,328.gf.93-RED-y11-16,0,3778_7778148_Txc110131,3778_22 -3778_48887,68,3778_4243,Saggart,431.MF-BH.93-RED-y11,0,3778_7778148_Txc110409,3778_22 -3778_48887,69,3778_4244,Tallaght,337.Sat.93-RED-y11-1,0,3778_7778148_Txc110169,3778_19 -3778_48887,70,3778_4245,Tallaght,337.gf.93-RED-y11-16,0,3778_7778148_Txc110171,3778_33 -3778_48887,68,3778_4246,Tallaght,440.MF-BH.93-RED-y11,0,3778_7778148_Txc110422,3778_32 -3778_48887,71,3778_4249,Tallaght,360.SuBH.93-RED-y11-,0,3778_7778148_Txc110274,3778_34 -3778_48887,71,3778_4254,Saggart,353.SuBH.93-RED-y11-,0,3778_7778148_Txc110242,3778_22 -3778_48887,69,3778_4259,Saggart,330.Sat.93-RED-y11-1,0,3778_7778148_Txc110141,3778_22 -3778_48887,70,3778_4260,Saggart,330.gf.93-RED-y11-16,0,3778_7778148_Txc110143,3778_22 -3778_48887,68,3778_4263,Saggart,433.MF-BH.93-RED-y11,0,3778_7778148_Txc110411,3778_22 -3778_48887,68,3778_4264,Tallaght,442.MF-BH.93-RED-y11,0,3778_7778148_Txc110424,3778_32 -3778_48887,69,3778_4265,Tallaght,339.Sat.93-RED-y11-1,0,3778_7778148_Txc110177,3778_19 -3778_48887,70,3778_4266,Tallaght,339.gf.93-RED-y11-16,0,3778_7778148_Txc110179,3778_33 -3778_48887,69,3778_4269,Saggart,332.Sat.93-RED-y11-1,0,3778_7778148_Txc110149,3778_22 -3778_48886,71,3778_427,Brides Glen,106.SuBH.93-GRN-y11-,0,3778_7778148_Txc104642,3778_1 -3778_48887,70,3778_4270,Saggart,332.gf.93-RED-y11-16,0,3778_7778148_Txc110151,3778_22 -3778_48887,71,3778_4271,Saggart,355.SuBH.93-RED-y11-,0,3778_7778148_Txc110250,3778_22 -3778_48887,71,3778_4272,Tallaght,362.SuBH.93-RED-y11-,0,3778_7778148_Txc110282,3778_34 -3778_48887,68,3778_4283,Saggart,435.MF-BH.93-RED-y11,0,3778_7778148_Txc110413,3778_22 -3778_48887,68,3778_4284,Tallaght,444.MF-BH.93-RED-y11,0,3778_7778148_Txc110426,3778_32 -3778_48887,69,3778_4285,Saggart,334.Sat.93-RED-y11-1,0,3778_7778148_Txc110157,3778_22 -3778_48887,70,3778_4286,Saggart,334.gf.93-RED-y11-16,0,3778_7778148_Txc110159,3778_22 -3778_48887,71,3778_4287,Saggart,357.SuBH.93-RED-y11-,0,3778_7778148_Txc110258,3778_22 -3778_48887,69,3778_4294,Tallaght,341.Sat.93-RED-y11-1,0,3778_7778148_Txc110189,3778_19 -3778_48887,70,3778_4295,Tallaght,341.gf.93-RED-y11-16,0,3778_7778148_Txc110191,3778_33 -3778_48887,71,3778_4298,Tallaght,364.SuBH.93-RED-y11-,0,3778_7778148_Txc110290,3778_34 -3778_48887,68,3778_4303,Saggart,437.MF-BH.93-RED-y11,0,3778_7778148_Txc110415,3778_22 -3778_48887,69,3778_4304,Saggart,336.Sat.93-RED-y11-1,0,3778_7778148_Txc110165,3778_22 -3778_48887,70,3778_4305,Saggart,336.gf.93-RED-y11-16,0,3778_7778148_Txc110167,3778_22 -3778_48887,68,3778_4306,Tallaght,446.MF-BH.93-RED-y11,0,3778_7778148_Txc110428,3778_32 -3778_48887,71,3778_4309,Saggart,359.SuBH.93-RED-y11-,0,3778_7778148_Txc110266,3778_22 -3778_48887,68,3778_4310,Saggart,439.MF-BH.93-RED-y11,0,3778_7778148_Txc110417,3778_22 -3778_48887,69,3778_4315,Tallaght,343.Sat.93-RED-y11-1,0,3778_7778148_Txc110197,3778_19 -3778_48887,70,3778_4316,Tallaght,343.gf.93-RED-y11-16,0,3778_7778148_Txc110199,3778_33 -3778_48887,71,3778_4317,Tallaght,366.SuBH.93-RED-y11-,0,3778_7778148_Txc110298,3778_34 -3778_48886,69,3778_432,Brides Glen,176.Sat.93-GRN-y11-1,0,3778_7778148_Txc104931,3778_5 -3778_48887,69,3778_4324,Saggart,338.Sat.93-RED-y11-1,0,3778_7778148_Txc110173,3778_22 -3778_48887,70,3778_4325,Saggart,338.gf.93-RED-y11-16,0,3778_7778148_Txc110175,3778_22 -3778_48887,68,3778_4326,Tallaght,448.MF-BH.93-RED-y11,0,3778_7778148_Txc110430,3778_32 -3778_48887,68,3778_4329,Saggart,441.MF-BH.93-RED-y11,0,3778_7778148_Txc110423,3778_22 -3778_48886,70,3778_433,Brides Glen,176.gf.93-GRN-y11-16,0,3778_7778148_Txc104932,3778_5 -3778_48887,71,3778_4330,Saggart,361.SuBH.93-RED-y11-,0,3778_7778148_Txc110278,3778_22 -3778_48887,69,3778_4335,Tallaght,345.Sat.93-RED-y11-1,0,3778_7778148_Txc110205,3778_19 -3778_48887,70,3778_4336,Tallaght,345.gf.93-RED-y11-16,0,3778_7778148_Txc110207,3778_33 -3778_48887,71,3778_4337,Tallaght,368.SuBH.93-RED-y11-,0,3778_7778148_Txc110303,3778_34 -3778_48886,68,3778_434,Brides Glen,273.MF-BH.93-GRN-y11,0,3778_7778148_Txc105263,3778_5 -3778_48887,68,3778_4344,Saggart,443.MF-BH.93-RED-y11,0,3778_7778148_Txc110425,3778_22 -3778_48887,68,3778_4345,Tallaght,450.MF-BH.93-RED-y11,0,3778_7778148_Txc110436,3778_32 -3778_48887,69,3778_4346,Saggart,340.Sat.93-RED-y11-1,0,3778_7778148_Txc110185,3778_22 -3778_48887,70,3778_4347,Saggart,340.gf.93-RED-y11-16,0,3778_7778148_Txc110187,3778_22 -3778_48887,71,3778_4350,Saggart,363.SuBH.93-RED-y11-,0,3778_7778148_Txc110286,3778_22 -3778_48887,71,3778_4355,Tallaght,370.SuBH.93-RED-y11-,0,3778_7778148_Txc110311,3778_34 -3778_48887,69,3778_4360,Tallaght,347.Sat.93-RED-y11-1,0,3778_7778148_Txc110213,3778_19 -3778_48887,70,3778_4361,Tallaght,347.gf.93-RED-y11-16,0,3778_7778148_Txc110215,3778_33 -3778_48887,68,3778_4364,Saggart,445.MF-BH.93-RED-y11,0,3778_7778148_Txc110427,3778_22 -3778_48887,68,3778_4365,Tallaght,452.MF-BH.93-RED-y11,0,3778_7778148_Txc110438,3778_32 -3778_48887,69,3778_4366,Saggart,342.Sat.93-RED-y11-1,0,3778_7778148_Txc110193,3778_22 -3778_48887,70,3778_4367,Saggart,342.gf.93-RED-y11-16,0,3778_7778148_Txc110195,3778_22 -3778_48887,71,3778_4370,Saggart,365.SuBH.93-RED-y11-,0,3778_7778148_Txc110294,3778_22 -3778_48887,71,3778_4375,Tallaght,372.SuBH.93-RED-y11-,0,3778_7778148_Txc110315,3778_34 -3778_48886,68,3778_438,Sandyford,276.MF-BH.93-GRN-y11,0,3778_7778148_Txc105266,3778_4 -3778_48887,69,3778_4380,Tallaght,349.Sat.93-RED-y11-1,0,3778_7778148_Txc110221,3778_19 -3778_48887,70,3778_4381,Tallaght,349.gf.93-RED-y11-16,0,3778_7778148_Txc110223,3778_33 -3778_48887,68,3778_4384,Saggart,447.MF-BH.93-RED-y11,0,3778_7778148_Txc110429,3778_22 -3778_48887,69,3778_4385,Saggart,344.Sat.93-RED-y11-1,0,3778_7778148_Txc110201,3778_22 -3778_48887,70,3778_4386,Saggart,344.gf.93-RED-y11-16,0,3778_7778148_Txc110203,3778_22 -3778_48887,71,3778_4387,Saggart,367.SuBH.93-RED-y11-,0,3778_7778148_Txc110301,3778_22 -3778_48886,69,3778_439,Brides Glen,179.Sat.93-GRN-y11-1,0,3778_7778148_Txc104940,3778_1 -3778_48887,71,3778_4394,Tallaght,374.SuBH.93-RED-y11-,0,3778_7778148_Txc110319,3778_34 -3778_48887,68,3778_4395,Tallaght,454.MF-BH.93-RED-y11,0,3778_7778148_Txc110440,3778_32 -3778_48886,68,3778_44,Brides Glen,206.MF-BH.93-GRN-y11,0,3778_7778148_Txc105036,3778_1 -3778_48886,70,3778_440,Brides Glen,179.gf.93-GRN-y11-16,0,3778_7778148_Txc104941,3778_1 -3778_48887,69,3778_4400,Tallaght,351.Sat.93-RED-y11-1,0,3778_7778148_Txc110233,3778_19 -3778_48887,70,3778_4401,Tallaght,351.gf.93-RED-y11-16,0,3778_7778148_Txc110235,3778_33 -3778_48887,68,3778_4404,Saggart,449.MF-BH.93-RED-y11,0,3778_7778148_Txc110431,3778_22 -3778_48887,69,3778_4405,Saggart,346.Sat.93-RED-y11-1,0,3778_7778148_Txc110209,3778_22 -3778_48887,70,3778_4406,Saggart,346.gf.93-RED-y11-16,0,3778_7778148_Txc110211,3778_22 -3778_48887,71,3778_4407,Saggart,369.SuBH.93-RED-y11-,0,3778_7778148_Txc110305,3778_22 -3778_48887,69,3778_4414,Tallaght,353.Sat.93-RED-y11-1,0,3778_7778148_Txc110241,3778_19 -3778_48887,70,3778_4415,Tallaght,353.gf.93-RED-y11-16,0,3778_7778148_Txc110243,3778_33 -3778_48887,71,3778_4416,Tallaght,376.SuBH.93-RED-y11-,0,3778_7778148_Txc110323,3778_34 -3778_48887,68,3778_4417,Tallaght,456.MF-BH.93-RED-y11,0,3778_7778148_Txc110442,3778_32 -3778_48887,68,3778_4424,Saggart,451.MF-BH.93-RED-y11,0,3778_7778148_Txc110437,3778_22 -3778_48887,71,3778_4425,Saggart,377.SuBH.93-RED-y11-,0,3778_7778148_Txc110325,3778_37 -3778_48887,71,3778_4430,Saggart,371.SuBH.93-RED-y11-,0,3778_7778148_Txc110313,3778_22 -3778_48887,69,3778_4435,Saggart,348.Sat.93-RED-y11-1,0,3778_7778148_Txc110217,3778_22 -3778_48887,70,3778_4436,Saggart,348.gf.93-RED-y11-16,0,3778_7778148_Txc110219,3778_22 -3778_48887,69,3778_4439,Tallaght,355.Sat.93-RED-y11-1,0,3778_7778148_Txc110249,3778_19 -3778_48886,71,3778_444,Brides Glen,107.SuBH.93-GRN-y11-,0,3778_7778148_Txc104646,3778_1 -3778_48887,70,3778_4440,Tallaght,355.gf.93-RED-y11-16,0,3778_7778148_Txc110251,3778_33 -3778_48887,71,3778_4443,Tallaght,378.SuBH.93-RED-y11-,0,3778_7778148_Txc110327,3778_34 -3778_48887,68,3778_4444,Saggart,453.MF-BH.93-RED-y11,0,3778_7778148_Txc110439,3778_22 -3778_48887,68,3778_4445,Tallaght,458.MF-BH.93-RED-y11,0,3778_7778148_Txc110444,3778_32 -3778_48887,71,3778_4450,Saggart,373.SuBH.93-RED-y11-,0,3778_7778148_Txc110317,3778_22 -3778_48887,69,3778_4455,Saggart,350.Sat.93-RED-y11-1,0,3778_7778148_Txc110229,3778_22 -3778_48887,70,3778_4456,Saggart,350.gf.93-RED-y11-16,0,3778_7778148_Txc110231,3778_22 -3778_48887,69,3778_4459,Tallaght,357.Sat.93-RED-y11-1,0,3778_7778148_Txc110257,3778_19 -3778_48887,70,3778_4460,Tallaght,357.gf.93-RED-y11-16,0,3778_7778148_Txc110259,3778_33 -3778_48887,71,3778_4463,Saggart,375.SuBH.93-RED-y11-,0,3778_7778148_Txc110321,3778_22 -3778_48887,71,3778_4464,Tallaght,379.SuBH.93-RED-y11-,0,3778_7778148_Txc110329,3778_34 -3778_48887,68,3778_4465,Saggart,455.MF-BH.93-RED-y11,0,3778_7778148_Txc110441,3778_22 -3778_48887,68,3778_4466,Tallaght,460.MF-BH.93-RED-y11,0,3778_7778148_Txc110450,3778_32 -3778_48887,69,3778_4475,Saggart,352.Sat.93-RED-y11-1,0,3778_7778148_Txc110237,3778_22 -3778_48887,70,3778_4476,Saggart,352.gf.93-RED-y11-16,0,3778_7778148_Txc110239,3778_22 -3778_48887,69,3778_4479,Tallaght,359.Sat.93-RED-y11-1,0,3778_7778148_Txc110265,3778_19 -3778_48887,70,3778_4480,Tallaght,359.gf.93-RED-y11-16,0,3778_7778148_Txc110267,3778_33 -3778_48887,69,3778_4483,Tallaght,361.Sat.93-RED-y11-1,0,3778_7778148_Txc110277,3778_19 -3778_48887,70,3778_4484,Tallaght,361.gf.93-RED-y11-16,0,3778_7778148_Txc110279,3778_33 -3778_48887,68,3778_4485,Saggart,457.MF-BH.93-RED-y11,0,3778_7778148_Txc110443,3778_22 -3778_48887,68,3778_4486,Tallaght,462.MF-BH.93-RED-y11,0,3778_7778148_Txc110452,3778_32 -3778_48887,69,3778_4489,Saggart,354.Sat.93-RED-y11-1,0,3778_7778148_Txc110245,3778_22 -3778_48886,68,3778_449,Brides Glen,275.MF-BH.93-GRN-y11,0,3778_7778148_Txc105265,3778_5 -3778_48887,70,3778_4490,Saggart,354.gf.93-RED-y11-16,0,3778_7778148_Txc110247,3778_22 -3778_48887,69,3778_4493,Saggart,356.Sat.93-RED-y11-1,0,3778_7778148_Txc110253,3778_22 -3778_48887,70,3778_4494,Saggart,356.gf.93-RED-y11-16,0,3778_7778148_Txc110255,3778_22 -3778_48887,68,3778_4495,Saggart,459.MF-BH.93-RED-y11,0,3778_7778148_Txc110445,3778_22 -3778_48887,69,3778_4498,Tallaght,363.Sat.93-RED-y11-1,0,3778_7778148_Txc110285,3778_19 -3778_48887,70,3778_4499,Tallaght,363.gf.93-RED-y11-16,0,3778_7778148_Txc110287,3778_33 -3778_48886,68,3778_45,Brides Glen,204.MF-BH.93-GRN-y11,0,3778_7778148_Txc105030,3778_5 -3778_48886,69,3778_450,Brides Glen,178.Sat.93-GRN-y11-1,0,3778_7778148_Txc104937,3778_5 -3778_48887,68,3778_4500,Tallaght,464.MF-BH.93-RED-y11,0,3778_7778148_Txc110454,3778_32 -3778_48887,68,3778_4503,Saggart,465.MF-BH.93-RED-y11,0,3778_7778148_Txc110455,3778_35 -3778_48887,69,3778_4504,Saggart,364.Sat.93-RED-y11-1,0,3778_7778148_Txc110289,3778_24 -3778_48887,70,3778_4505,Saggart,364.gf.93-RED-y11-16,0,3778_7778148_Txc110291,3778_36 -3778_48887,69,3778_4508,Saggart,358.Sat.93-RED-y11-1,0,3778_7778148_Txc110261,3778_22 -3778_48887,70,3778_4509,Saggart,358.gf.93-RED-y11-16,0,3778_7778148_Txc110263,3778_22 -3778_48886,70,3778_451,Brides Glen,178.gf.93-GRN-y11-16,0,3778_7778148_Txc104938,3778_5 -3778_48887,69,3778_4512,Tallaght,365.Sat.93-RED-y11-1,0,3778_7778148_Txc110293,3778_19 -3778_48887,70,3778_4513,Tallaght,365.gf.93-RED-y11-16,0,3778_7778148_Txc110295,3778_33 -3778_48887,68,3778_4514,Saggart,461.MF-BH.93-RED-y11,0,3778_7778148_Txc110451,3778_22 -3778_48887,68,3778_4515,Tallaght,466.MF-BH.93-RED-y11,0,3778_7778148_Txc110456,3778_32 -3778_48887,69,3778_4518,Saggart,360.Sat.93-RED-y11-1,0,3778_7778148_Txc110273,3778_22 -3778_48887,70,3778_4519,Saggart,360.gf.93-RED-y11-16,0,3778_7778148_Txc110275,3778_22 -3778_48887,69,3778_4522,Saggart,362.Sat.93-RED-y11-1,0,3778_7778148_Txc110281,3778_22 -3778_48887,70,3778_4523,Saggart,362.gf.93-RED-y11-16,0,3778_7778148_Txc110283,3778_22 -3778_48887,69,3778_4524,Tallaght,366.Sat.93-RED-y11-1,0,3778_7778148_Txc110297,3778_19 -3778_48887,70,3778_4525,Tallaght,366.gf.93-RED-y11-16,0,3778_7778148_Txc110299,3778_33 -3778_48887,68,3778_4526,Saggart,463.MF-BH.93-RED-y11,0,3778_7778148_Txc110453,3778_22 -3778_48887,68,3778_4527,Tallaght,467.MF-BH.93-RED-y11,0,3778_7778148_Txc110457,3778_32 -3778_48887,68,3778_4537,The Point,1.MF-BH.93-RED-y11-1,1,3778_7778148_Txc109114,3778_38 -3778_48887,68,3778_4538,The Point,2.MF-BH.93-RED-y11-1,1,3778_7778148_Txc109556,3778_50 -3778_48887,68,3778_4539,Belgard,3.MF-BH.93-RED-y11-1,1,3778_7778148_Txc110000,3778_40 -3778_48887,68,3778_4540,The Point,4.MF-BH.93-RED-y11-1,1,3778_7778148_Txc110358,3778_50 -3778_48887,68,3778_4541,Belgard,5.MF-BH.93-RED-y11-1,1,3778_7778148_Txc110470,3778_40 -3778_48887,69,3778_4542,The Point,1.Sat.93-RED-y11-16.,1,3778_7778148_Txc109115,3778_38 -3778_48887,70,3778_4543,The Point,1.gf.93-RED-y11-16.3,1,3778_7778148_Txc109117,3778_38 -3778_48887,68,3778_4547,The Point,7.MF-BH.93-RED-y11-1,1,3778_7778148_Txc110558,3778_50 -3778_48887,68,3778_4548,The Point,6.MF-BH.93-RED-y11-1,1,3778_7778148_Txc110514,3778_38 -3778_48887,68,3778_4549,Belgard,8.MF-BH.93-RED-y11-1,1,3778_7778148_Txc110602,3778_40 -3778_48886,68,3778_455,Sandyford,278.MF-BH.93-GRN-y11,0,3778_7778148_Txc105268,3778_4 -3778_48887,68,3778_4550,The Point,11.MF-BH.93-RED-y11-,1,3778_7778148_Txc109162,3778_43 -3778_48887,69,3778_4551,The Point,2.Sat.93-RED-y11-16.,1,3778_7778148_Txc109557,3778_38 -3778_48887,70,3778_4552,The Point,2.gf.93-RED-y11-16.3,1,3778_7778148_Txc109559,3778_38 -3778_48887,68,3778_4553,Connolly,9.MF-BH.93-RED-y11-1,1,3778_7778148_Txc110646,3778_44 -3778_48887,68,3778_4557,Belgard,12.MF-BH.93-RED-y11-,1,3778_7778148_Txc109206,3778_40 -3778_48887,68,3778_4558,The Point,10.MF-BH.93-RED-y11-,1,3778_7778148_Txc109118,3778_38 -3778_48887,69,3778_4559,The Point,3.Sat.93-RED-y11-16.,1,3778_7778148_Txc110001,3778_51 -3778_48886,71,3778_456,Brides Glen,108.SuBH.93-GRN-y11-,0,3778_7778148_Txc104650,3778_1 -3778_48887,70,3778_4560,The Point,3.gf.93-RED-y11-16.4,1,3778_7778148_Txc110003,3778_52 -3778_48887,68,3778_4564,The Point,14.MF-BH.93-RED-y11-,1,3778_7778148_Txc109294,3778_43 -3778_48887,68,3778_4565,Belgard,15.MF-BH.93-RED-y11-,1,3778_7778148_Txc109338,3778_40 -3778_48887,68,3778_4566,Connolly,13.MF-BH.93-RED-y11-,1,3778_7778148_Txc109250,3778_44 -3778_48887,69,3778_4567,Belgard,4.Sat.93-RED-y11-16.,1,3778_7778148_Txc110359,3778_40 -3778_48887,70,3778_4568,Belgard,4.gf.93-RED-y11-16.7,1,3778_7778148_Txc110361,3778_40 -3778_48887,68,3778_4572,The Point,17.MF-BH.93-RED-y11-,1,3778_7778148_Txc109426,3778_43 -3778_48887,68,3778_4573,Belgard,18.MF-BH.93-RED-y11-,1,3778_7778148_Txc109470,3778_40 -3778_48887,69,3778_4574,The Point,5.Sat.93-RED-y11-16.,1,3778_7778148_Txc110471,3778_51 -3778_48887,70,3778_4575,The Point,5.gf.93-RED-y11-16.4,1,3778_7778148_Txc110473,3778_52 -3778_48887,68,3778_4579,Connolly,16.MF-BH.93-RED-y11-,1,3778_7778148_Txc109382,3778_44 -3778_48887,68,3778_4580,The Point,20.MF-BH.93-RED-y11-,1,3778_7778148_Txc109560,3778_43 -3778_48887,68,3778_4581,Connolly,21.MF-BH.93-RED-y11-,1,3778_7778148_Txc109604,3778_41 -3778_48887,71,3778_4582,The Point,1.SuBH.93-RED-y11-16,1,3778_7778148_Txc109116,3778_56 -3778_48887,68,3778_4586,The Point,19.MF-BH.93-RED-y11-,1,3778_7778148_Txc109512,3778_38 -3778_48887,69,3778_4587,Belgard,6.Sat.93-RED-y11-16.,1,3778_7778148_Txc110515,3778_40 -3778_48887,70,3778_4588,Belgard,6.gf.93-RED-y11-16.7,1,3778_7778148_Txc110517,3778_40 -3778_48887,68,3778_4592,The Point,22.MF-BH.93-RED-y11-,1,3778_7778148_Txc109648,3778_50 -3778_48887,68,3778_4593,The Point,23.MF-BH.93-RED-y11-,1,3778_7778148_Txc109692,3778_60 -3778_48887,69,3778_4594,The Point,8.Sat.93-RED-y11-16.,1,3778_7778148_Txc110603,3778_51 -3778_48887,70,3778_4595,The Point,8.gf.93-RED-y11-16.4,1,3778_7778148_Txc110605,3778_52 -3778_48887,71,3778_4599,Belgard,2.SuBH.93-RED-y11-16,1,3778_7778148_Txc109558,3778_40 -3778_48886,71,3778_46,Brides Glen,77.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105592,3778_2 -3778_48887,69,3778_4600,The Point,7.Sat.93-RED-y11-16.,1,3778_7778148_Txc110559,3778_38 -3778_48887,70,3778_4601,The Point,7.gf.93-RED-y11-16.3,1,3778_7778148_Txc110561,3778_38 -3778_48887,68,3778_4608,Connolly,24.MF-BH.93-RED-y11-,1,3778_7778148_Txc109736,3778_39 -3778_48887,68,3778_4609,The Point,25.MF-BH.93-RED-y11-,1,3778_7778148_Txc109780,3778_60 -3778_48886,69,3778_461,Sandyford,181.Sat.93-GRN-y11-1,0,3778_7778148_Txc104950,3778_4 -3778_48887,71,3778_4610,The Point,3.SuBH.93-RED-y11-16,1,3778_7778148_Txc110002,3778_56 -3778_48887,69,3778_4614,Belgard,9.Sat.93-RED-y11-16.,1,3778_7778148_Txc110647,3778_40 -3778_48887,70,3778_4615,Belgard,9.gf.93-RED-y11-16.7,1,3778_7778148_Txc110649,3778_40 -3778_48887,68,3778_4619,The Point,26.MF-BH.93-RED-y11-,1,3778_7778148_Txc109824,3778_50 -3778_48886,70,3778_462,Sandyford,181.gf.93-GRN-y11-16,0,3778_7778148_Txc104951,3778_4 -3778_48887,68,3778_4620,Connolly,27.MF-BH.93-RED-y11-,1,3778_7778148_Txc109868,3778_41 -3778_48887,69,3778_4621,The Point,10.Sat.93-RED-y11-16,1,3778_7778148_Txc109119,3778_51 -3778_48887,70,3778_4622,The Point,10.gf.93-RED-y11-16.,1,3778_7778148_Txc109121,3778_52 -3778_48887,71,3778_4626,Belgard,4.SuBH.93-RED-y11-16,1,3778_7778148_Txc110360,3778_40 -3778_48887,68,3778_4630,The Point,28.MF-BH.93-RED-y11-,1,3778_7778148_Txc109912,3778_50 -3778_48887,68,3778_4631,The Point,30.MF-BH.93-RED-y11-,1,3778_7778148_Txc110004,3778_60 -3778_48887,69,3778_4632,Belgard,11.Sat.93-RED-y11-16,1,3778_7778148_Txc109163,3778_40 -3778_48887,70,3778_4633,Belgard,11.gf.93-RED-y11-16.,1,3778_7778148_Txc109165,3778_40 -3778_48887,71,3778_4637,The Point,6.SuBH.93-RED-y11-16,1,3778_7778148_Txc110516,3778_56 -3778_48887,68,3778_4641,Connolly,31.MF-BH.93-RED-y11-,1,3778_7778148_Txc110048,3778_39 -3778_48887,68,3778_4642,The Point,32.MF-BH.93-RED-y11-,1,3778_7778148_Txc110092,3778_60 -3778_48887,71,3778_4643,The Point,5.SuBH.93-RED-y11-16,1,3778_7778148_Txc110472,3778_38 -3778_48887,69,3778_4647,The Point,12.Sat.93-RED-y11-16,1,3778_7778148_Txc109207,3778_51 -3778_48887,70,3778_4648,The Point,12.gf.93-RED-y11-16.,1,3778_7778148_Txc109209,3778_52 -3778_48887,68,3778_4652,Connolly,29.MF-BH.93-RED-y11-,1,3778_7778148_Txc109956,3778_47 -3778_48887,68,3778_4653,The Point,33.MF-BH.93-RED-y11-,1,3778_7778148_Txc110136,3778_50 -3778_48887,69,3778_4654,Belgard,13.Sat.93-RED-y11-16,1,3778_7778148_Txc109251,3778_40 -3778_48887,70,3778_4655,Belgard,13.gf.93-RED-y11-16.,1,3778_7778148_Txc109253,3778_40 -3778_48887,71,3778_4656,Belgard,7.SuBH.93-RED-y11-16,1,3778_7778148_Txc110560,3778_40 -3778_48886,68,3778_466,Brides Glen,277.MF-BH.93-GRN-y11,0,3778_7778148_Txc105267,3778_5 -3778_48887,68,3778_4663,The Point,35.MF-BH.93-RED-y11-,1,3778_7778148_Txc110224,3778_60 -3778_48887,68,3778_4664,Connolly,34.MF-BH.93-RED-y11-,1,3778_7778148_Txc110180,3778_39 -3778_48887,69,3778_4665,The Point,14.Sat.93-RED-y11-16,1,3778_7778148_Txc109295,3778_51 -3778_48887,70,3778_4666,The Point,14.gf.93-RED-y11-16.,1,3778_7778148_Txc109297,3778_52 -3778_48887,71,3778_4667,The Point,8.SuBH.93-RED-y11-16,1,3778_7778148_Txc110604,3778_56 -3778_48886,69,3778_467,Brides Glen,180.Sat.93-GRN-y11-1,0,3778_7778148_Txc104947,3778_5 -3778_48887,68,3778_4674,The Point,36.MF-BH.93-RED-y11-,1,3778_7778148_Txc110268,3778_50 -3778_48887,69,3778_4675,The Point,15.Sat.93-RED-y11-16,1,3778_7778148_Txc109339,3778_61 -3778_48887,70,3778_4676,The Point,15.gf.93-RED-y11-16.,1,3778_7778148_Txc109341,3778_62 -3778_48886,70,3778_468,Brides Glen,180.gf.93-GRN-y11-16,0,3778_7778148_Txc104948,3778_5 -3778_48887,68,3778_4680,The Point,38.MF-BH.93-RED-y11-,1,3778_7778148_Txc110330,3778_60 -3778_48887,68,3778_4681,Connolly,37.MF-BH.93-RED-y11-,1,3778_7778148_Txc110306,3778_39 -3778_48887,71,3778_4682,Belgard,9.SuBH.93-RED-y11-16,1,3778_7778148_Txc110648,3778_40 -3778_48887,68,3778_4686,The Point,39.MF-BH.93-RED-y11-,1,3778_7778148_Txc110344,3778_50 -3778_48887,71,3778_4687,The Point,10.SuBH.93-RED-y11-1,1,3778_7778148_Txc109120,3778_56 -3778_48887,69,3778_4688,The Point,16.Sat.93-RED-y11-16,1,3778_7778148_Txc109383,3778_51 -3778_48887,70,3778_4689,The Point,16.gf.93-RED-y11-16.,1,3778_7778148_Txc109385,3778_52 -3778_48887,68,3778_4690,Connolly,40.MF-BH.93-RED-y11-,1,3778_7778148_Txc110362,3778_39 -3778_48887,68,3778_4697,The Point,42.MF-BH.93-RED-y11-,1,3778_7778148_Txc110390,3778_60 -3778_48887,69,3778_4698,Connolly,17.Sat.93-RED-y11-16,1,3778_7778148_Txc109427,3778_41 -3778_48887,70,3778_4699,Connolly,17.gf.93-RED-y11-16.,1,3778_7778148_Txc109429,3778_41 -3778_48887,71,3778_4703,Belgard,11.SuBH.93-RED-y11-1,1,3778_7778148_Txc109164,3778_40 -3778_48887,68,3778_4707,The Point,43.MF-BH.93-RED-y11-,1,3778_7778148_Txc110404,3778_50 -3778_48887,68,3778_4708,Connolly,44.MF-BH.93-RED-y11-,1,3778_7778148_Txc110418,3778_41 -3778_48887,71,3778_4709,The Point,12.SuBH.93-RED-y11-1,1,3778_7778148_Txc109208,3778_56 -3778_48887,69,3778_4710,The Point,19.Sat.93-RED-y11-16,1,3778_7778148_Txc109513,3778_51 -3778_48887,70,3778_4711,The Point,19.gf.93-RED-y11-16.,1,3778_7778148_Txc109515,3778_52 -3778_48887,69,3778_4718,The Point,20.Sat.93-RED-y11-16,1,3778_7778148_Txc109561,3778_61 -3778_48887,70,3778_4719,The Point,20.gf.93-RED-y11-16.,1,3778_7778148_Txc109563,3778_62 -3778_48886,68,3778_472,Sandyford,280.MF-BH.93-GRN-y11,0,3778_7778148_Txc105274,3778_4 -3778_48887,68,3778_4723,The Point,45.MF-BH.93-RED-y11-,1,3778_7778148_Txc110432,3778_50 -3778_48887,68,3778_4724,Connolly,46.MF-BH.93-RED-y11-,1,3778_7778148_Txc110446,3778_41 -3778_48887,71,3778_4725,Belgard,13.SuBH.93-RED-y11-1,1,3778_7778148_Txc109252,3778_40 -3778_48887,69,3778_4726,The Point,18.Sat.93-RED-y11-16,1,3778_7778148_Txc109471,3778_38 -3778_48887,70,3778_4727,The Point,18.gf.93-RED-y11-16.,1,3778_7778148_Txc109473,3778_38 -3778_48886,71,3778_473,Brides Glen,109.SuBH.93-GRN-y11-,0,3778_7778148_Txc104654,3778_1 -3778_48887,68,3778_4734,The Point,47.MF-BH.93-RED-y11-,1,3778_7778148_Txc110458,3778_50 -3778_48887,68,3778_4735,The Point,48.MF-BH.93-RED-y11-,1,3778_7778148_Txc110462,3778_60 -3778_48887,71,3778_4736,The Point,14.SuBH.93-RED-y11-1,1,3778_7778148_Txc109296,3778_56 -3778_48887,69,3778_4737,Connolly,21.Sat.93-RED-y11-16,1,3778_7778148_Txc109605,3778_39 -3778_48887,70,3778_4738,Connolly,21.gf.93-RED-y11-16.,1,3778_7778148_Txc109607,3778_39 -3778_48887,69,3778_4745,The Point,23.Sat.93-RED-y11-16,1,3778_7778148_Txc109693,3778_61 -3778_48887,70,3778_4746,The Point,23.gf.93-RED-y11-16.,1,3778_7778148_Txc109695,3778_62 -3778_48887,68,3778_4747,Connolly,41.MF-BH.93-RED-y11-,1,3778_7778148_Txc110376,3778_42 -3778_48887,71,3778_4751,Belgard,15.SuBH.93-RED-y11-1,1,3778_7778148_Txc109340,3778_40 -3778_48887,68,3778_4755,Connolly,49.MF-BH.93-RED-y11-,1,3778_7778148_Txc110466,3778_39 -3778_48887,68,3778_4756,The Point,50.MF-BH.93-RED-y11-,1,3778_7778148_Txc110474,3778_60 -3778_48887,71,3778_4757,The Point,16.SuBH.93-RED-y11-1,1,3778_7778148_Txc109384,3778_56 -3778_48887,69,3778_4758,The Point,22.Sat.93-RED-y11-16,1,3778_7778148_Txc109649,3778_38 -3778_48887,70,3778_4759,The Point,22.gf.93-RED-y11-16.,1,3778_7778148_Txc109651,3778_38 -3778_48887,69,3778_4760,The Point,24.Sat.93-RED-y11-16,1,3778_7778148_Txc109737,3778_51 -3778_48887,70,3778_4761,The Point,24.gf.93-RED-y11-16.,1,3778_7778148_Txc109739,3778_52 -3778_48887,69,3778_4772,Connolly,25.Sat.93-RED-y11-16,1,3778_7778148_Txc109781,3778_41 -3778_48887,70,3778_4773,Connolly,25.gf.93-RED-y11-16.,1,3778_7778148_Txc109783,3778_41 -3778_48887,68,3778_4777,The Point,51.MF-BH.93-RED-y11-,1,3778_7778148_Txc110478,3778_50 -3778_48887,68,3778_4778,Connolly,52.MF-BH.93-RED-y11-,1,3778_7778148_Txc110482,3778_41 -3778_48887,71,3778_4779,Belgard,17.SuBH.93-RED-y11-1,1,3778_7778148_Txc109428,3778_40 -3778_48886,69,3778_478,Sandyford,183.Sat.93-GRN-y11-1,0,3778_7778148_Txc104956,3778_4 -3778_48887,71,3778_4784,The Point,18.SuBH.93-RED-y11-1,1,3778_7778148_Txc109472,3778_56 -3778_48887,69,3778_4789,The Point,26.Sat.93-RED-y11-16,1,3778_7778148_Txc109825,3778_51 -3778_48886,70,3778_479,Sandyford,183.gf.93-GRN-y11-16,0,3778_7778148_Txc104957,3778_4 -3778_48887,70,3778_4790,The Point,26.gf.93-RED-y11-16.,1,3778_7778148_Txc109827,3778_52 -3778_48887,69,3778_4794,The Point,27.Sat.93-RED-y11-16,1,3778_7778148_Txc109869,3778_61 -3778_48887,70,3778_4795,The Point,27.gf.93-RED-y11-16.,1,3778_7778148_Txc109871,3778_62 -3778_48887,68,3778_4796,The Point,53.MF-BH.93-RED-y11-,1,3778_7778148_Txc110486,3778_50 -3778_48887,68,3778_4797,The Point,54.MF-BH.93-RED-y11-,1,3778_7778148_Txc110490,3778_60 -3778_48886,68,3778_480,Brides Glen,279.MF-BH.93-GRN-y11,0,3778_7778148_Txc105269,3778_5 -3778_48887,71,3778_4801,Belgard,19.SuBH.93-RED-y11-1,1,3778_7778148_Txc109514,3778_40 -3778_48887,71,3778_4806,The Point,20.SuBH.93-RED-y11-1,1,3778_7778148_Txc109562,3778_56 -3778_48887,68,3778_4807,Connolly,55.MF-BH.93-RED-y11-,1,3778_7778148_Txc110494,3778_39 -3778_48887,68,3778_4808,The Point,56.MF-BH.93-RED-y11-,1,3778_7778148_Txc110498,3778_60 -3778_48887,69,3778_4813,Connolly,28.Sat.93-RED-y11-16,1,3778_7778148_Txc109913,3778_39 -3778_48887,70,3778_4814,Connolly,28.gf.93-RED-y11-16.,1,3778_7778148_Txc109915,3778_39 -3778_48887,69,3778_4818,The Point,29.Sat.93-RED-y11-16,1,3778_7778148_Txc109957,3778_61 -3778_48887,70,3778_4819,The Point,29.gf.93-RED-y11-16.,1,3778_7778148_Txc109959,3778_62 -3778_48887,71,3778_4823,Belgard,21.SuBH.93-RED-y11-1,1,3778_7778148_Txc109606,3778_40 -3778_48887,68,3778_4828,The Point,57.MF-BH.93-RED-y11-,1,3778_7778148_Txc110502,3778_50 -3778_48887,68,3778_4829,Connolly,58.MF-BH.93-RED-y11-,1,3778_7778148_Txc110506,3778_41 -3778_48887,71,3778_4830,The Point,22.SuBH.93-RED-y11-1,1,3778_7778148_Txc109650,3778_56 -3778_48887,69,3778_4835,The Point,30.Sat.93-RED-y11-16,1,3778_7778148_Txc110005,3778_51 -3778_48887,70,3778_4836,The Point,30.gf.93-RED-y11-16.,1,3778_7778148_Txc110007,3778_52 -3778_48886,69,3778_484,Brides Glen,182.Sat.93-GRN-y11-1,0,3778_7778148_Txc104953,3778_5 -3778_48887,69,3778_4840,Connolly,31.Sat.93-RED-y11-16,1,3778_7778148_Txc110049,3778_41 -3778_48887,70,3778_4841,Connolly,31.gf.93-RED-y11-16.,1,3778_7778148_Txc110051,3778_41 -3778_48887,71,3778_4845,Belgard,23.SuBH.93-RED-y11-1,1,3778_7778148_Txc109694,3778_40 -3778_48886,70,3778_485,Brides Glen,182.gf.93-GRN-y11-16,0,3778_7778148_Txc104954,3778_5 -3778_48887,68,3778_4850,The Point,59.MF-BH.93-RED-y11-,1,3778_7778148_Txc110510,3778_50 -3778_48887,68,3778_4851,The Point,60.MF-BH.93-RED-y11-,1,3778_7778148_Txc110518,3778_60 -3778_48887,71,3778_4852,The Point,24.SuBH.93-RED-y11-1,1,3778_7778148_Txc109738,3778_43 -3778_48887,69,3778_4857,The Point,32.Sat.93-RED-y11-16,1,3778_7778148_Txc110093,3778_43 -3778_48887,70,3778_4858,The Point,32.gf.93-RED-y11-16.,1,3778_7778148_Txc110095,3778_43 -3778_48887,69,3778_4862,The Point,33.Sat.93-RED-y11-16,1,3778_7778148_Txc110137,3778_61 -3778_48887,70,3778_4863,The Point,33.gf.93-RED-y11-16.,1,3778_7778148_Txc110139,3778_62 -3778_48887,71,3778_4867,Belgard,25.SuBH.93-RED-y11-1,1,3778_7778148_Txc109782,3778_40 -3778_48887,68,3778_4872,Connolly,61.MF-BH.93-RED-y11-,1,3778_7778148_Txc110522,3778_39 -3778_48887,68,3778_4873,The Point,62.MF-BH.93-RED-y11-,1,3778_7778148_Txc110526,3778_60 -3778_48887,71,3778_4874,The Point,26.SuBH.93-RED-y11-1,1,3778_7778148_Txc109826,3778_43 -3778_48887,69,3778_4879,Connolly,34.Sat.93-RED-y11-16,1,3778_7778148_Txc110181,3778_39 -3778_48887,70,3778_4880,Connolly,34.gf.93-RED-y11-16.,1,3778_7778148_Txc110183,3778_39 -3778_48887,68,3778_4881,The Point,63.MF-BH.93-RED-y11-,1,3778_7778148_Txc110530,3778_50 -3778_48887,71,3778_4885,Belgard,27.SuBH.93-RED-y11-1,1,3778_7778148_Txc109870,3778_40 -3778_48887,69,3778_4886,The Point,35.Sat.93-RED-y11-16,1,3778_7778148_Txc110225,3778_61 -3778_48887,70,3778_4887,The Point,35.gf.93-RED-y11-16.,1,3778_7778148_Txc110227,3778_62 -3778_48887,68,3778_4888,Connolly,64.MF-BH.93-RED-y11-,1,3778_7778148_Txc110534,3778_41 -3778_48886,68,3778_489,Sandyford,282.MF-BH.93-GRN-y11,0,3778_7778148_Txc105276,3778_4 -3778_48887,68,3778_4896,Kingswood,65.MF-BH.93-RED-y11-,1,3778_7778148_Txc110538,3778_48 -3778_48887,71,3778_4897,The Point,28.SuBH.93-RED-y11-1,1,3778_7778148_Txc109914,3778_43 -3778_48886,71,3778_490,Brides Glen,110.SuBH.93-GRN-y11-,0,3778_7778148_Txc104662,3778_1 -3778_48887,68,3778_4902,The Point,66.MF-BH.93-RED-y11-,1,3778_7778148_Txc110542,3778_50 -3778_48887,68,3778_4903,The Point,67.MF-BH.93-RED-y11-,1,3778_7778148_Txc110546,3778_60 -3778_48887,69,3778_4904,The Point,36.Sat.93-RED-y11-16,1,3778_7778148_Txc110269,3778_43 -3778_48887,70,3778_4905,The Point,36.gf.93-RED-y11-16.,1,3778_7778148_Txc110271,3778_43 -3778_48887,71,3778_4909,Belgard,29.SuBH.93-RED-y11-1,1,3778_7778148_Txc109958,3778_40 -3778_48887,69,3778_4910,Connolly,37.Sat.93-RED-y11-16,1,3778_7778148_Txc110307,3778_41 -3778_48887,70,3778_4911,Connolly,37.gf.93-RED-y11-16.,1,3778_7778148_Txc110309,3778_41 -3778_48887,68,3778_4919,Connolly,68.MF-BH.93-RED-y11-,1,3778_7778148_Txc110550,3778_39 -3778_48887,68,3778_4920,The Point,69.MF-BH.93-RED-y11-,1,3778_7778148_Txc110554,3778_60 -3778_48887,71,3778_4921,The Point,30.SuBH.93-RED-y11-1,1,3778_7778148_Txc110006,3778_56 -3778_48887,71,3778_4926,Belgard,31.SuBH.93-RED-y11-1,1,3778_7778148_Txc110050,3778_40 -3778_48887,69,3778_4931,The Point,38.Sat.93-RED-y11-16,1,3778_7778148_Txc110331,3778_51 -3778_48887,70,3778_4932,The Point,38.gf.93-RED-y11-16.,1,3778_7778148_Txc110333,3778_52 -3778_48887,69,3778_4936,The Point,39.Sat.93-RED-y11-16,1,3778_7778148_Txc110345,3778_61 -3778_48887,70,3778_4937,The Point,39.gf.93-RED-y11-16.,1,3778_7778148_Txc110347,3778_62 -3778_48887,68,3778_4941,The Point,70.MF-BH.93-RED-y11-,1,3778_7778148_Txc110562,3778_50 -3778_48887,68,3778_4942,Connolly,71.MF-BH.93-RED-y11-,1,3778_7778148_Txc110566,3778_41 -3778_48887,71,3778_4943,The Point,32.SuBH.93-RED-y11-1,1,3778_7778148_Txc110094,3778_56 -3778_48887,71,3778_4948,Belgard,33.SuBH.93-RED-y11-1,1,3778_7778148_Txc110138,3778_40 -3778_48886,68,3778_495,Brides Glen,281.MF-BH.93-GRN-y11,0,3778_7778148_Txc105275,3778_5 -3778_48887,69,3778_4953,Connolly,40.Sat.93-RED-y11-16,1,3778_7778148_Txc110363,3778_39 -3778_48887,70,3778_4954,Connolly,40.gf.93-RED-y11-16.,1,3778_7778148_Txc110365,3778_39 -3778_48887,69,3778_4958,The Point,41.Sat.93-RED-y11-16,1,3778_7778148_Txc110377,3778_61 -3778_48887,70,3778_4959,The Point,41.gf.93-RED-y11-16.,1,3778_7778148_Txc110379,3778_62 -3778_48886,69,3778_496,Sandyford,185.Sat.93-GRN-y11-1,0,3778_7778148_Txc104962,3778_4 -3778_48887,68,3778_4963,The Point,72.MF-BH.93-RED-y11-,1,3778_7778148_Txc110570,3778_50 -3778_48887,68,3778_4964,The Point,73.MF-BH.93-RED-y11-,1,3778_7778148_Txc110574,3778_60 -3778_48887,71,3778_4965,The Point,34.SuBH.93-RED-y11-1,1,3778_7778148_Txc110182,3778_56 -3778_48886,70,3778_497,Sandyford,185.gf.93-GRN-y11-16,0,3778_7778148_Txc104963,3778_4 -3778_48887,71,3778_4970,Belgard,35.SuBH.93-RED-y11-1,1,3778_7778148_Txc110226,3778_40 -3778_48887,69,3778_4975,The Point,42.Sat.93-RED-y11-16,1,3778_7778148_Txc110391,3778_51 -3778_48887,70,3778_4976,The Point,42.gf.93-RED-y11-16.,1,3778_7778148_Txc110393,3778_52 -3778_48887,68,3778_4977,Connolly,74.MF-BH.93-RED-y11-,1,3778_7778148_Txc110578,3778_39 -3778_48887,68,3778_4978,The Point,75.MF-BH.93-RED-y11-,1,3778_7778148_Txc110582,3778_60 -3778_48887,69,3778_4982,Connolly,43.Sat.93-RED-y11-16,1,3778_7778148_Txc110405,3778_41 -3778_48887,70,3778_4983,Connolly,43.gf.93-RED-y11-16.,1,3778_7778148_Txc110407,3778_41 -3778_48887,71,3778_4987,The Point,36.SuBH.93-RED-y11-1,1,3778_7778148_Txc110270,3778_56 -3778_48887,71,3778_4992,Belgard,37.SuBH.93-RED-y11-1,1,3778_7778148_Txc110308,3778_40 -3778_48887,68,3778_4997,The Point,76.MF-BH.93-RED-y11-,1,3778_7778148_Txc110586,3778_50 -3778_48887,68,3778_4998,Connolly,77.MF-BH.93-RED-y11-,1,3778_7778148_Txc110590,3778_41 -3778_48887,69,3778_4999,The Point,44.Sat.93-RED-y11-16,1,3778_7778148_Txc110419,3778_51 -3778_48886,68,3778_5,Brides Glen,197.MF-BH.93-GRN-y11,0,3778_7778148_Txc105001,3778_1 -3778_48886,68,3778_50,Brides Glen,207.MF-BH.93-GRN-y11,0,3778_7778148_Txc105039,3778_1 -3778_48887,70,3778_5000,The Point,44.gf.93-RED-y11-16.,1,3778_7778148_Txc110421,3778_52 -3778_48887,71,3778_5004,The Point,38.SuBH.93-RED-y11-1,1,3778_7778148_Txc110332,3778_56 -3778_48887,69,3778_5005,The Point,45.Sat.93-RED-y11-16,1,3778_7778148_Txc110433,3778_61 -3778_48887,70,3778_5006,The Point,45.gf.93-RED-y11-16.,1,3778_7778148_Txc110435,3778_62 -3778_48886,71,3778_501,Brides Glen,111.SuBH.93-GRN-y11-,0,3778_7778148_Txc104666,3778_1 -3778_48887,71,3778_5014,Belgard,39.SuBH.93-RED-y11-1,1,3778_7778148_Txc110346,3778_40 -3778_48887,68,3778_5019,The Point,78.MF-BH.93-RED-y11-,1,3778_7778148_Txc110594,3778_50 -3778_48886,68,3778_502,Sandyford,284.MF-BH.93-GRN-y11,0,3778_7778148_Txc105278,3778_4 -3778_48887,68,3778_5020,The Point,79.MF-BH.93-RED-y11-,1,3778_7778148_Txc110598,3778_60 -3778_48887,71,3778_5021,The Point,40.SuBH.93-RED-y11-1,1,3778_7778148_Txc110364,3778_56 -3778_48887,71,3778_5026,Belgard,41.SuBH.93-RED-y11-1,1,3778_7778148_Txc110378,3778_40 -3778_48887,69,3778_5027,Connolly,46.Sat.93-RED-y11-16,1,3778_7778148_Txc110447,3778_39 -3778_48887,70,3778_5028,Connolly,46.gf.93-RED-y11-16.,1,3778_7778148_Txc110449,3778_39 -3778_48887,69,3778_5036,The Point,47.Sat.93-RED-y11-16,1,3778_7778148_Txc110459,3778_61 -3778_48887,70,3778_5037,The Point,47.gf.93-RED-y11-16.,1,3778_7778148_Txc110461,3778_62 -3778_48887,68,3778_5041,Connolly,80.MF-BH.93-RED-y11-,1,3778_7778148_Txc110606,3778_39 -3778_48887,68,3778_5042,The Point,81.MF-BH.93-RED-y11-,1,3778_7778148_Txc110610,3778_60 -3778_48887,71,3778_5043,The Point,42.SuBH.93-RED-y11-1,1,3778_7778148_Txc110392,3778_56 -3778_48887,71,3778_5048,Belgard,43.SuBH.93-RED-y11-1,1,3778_7778148_Txc110406,3778_40 -3778_48887,69,3778_5053,The Point,48.Sat.93-RED-y11-16,1,3778_7778148_Txc110463,3778_51 -3778_48887,70,3778_5054,The Point,48.gf.93-RED-y11-16.,1,3778_7778148_Txc110465,3778_52 -3778_48887,69,3778_5058,Connolly,49.Sat.93-RED-y11-16,1,3778_7778148_Txc110467,3778_41 -3778_48887,70,3778_5059,Connolly,49.gf.93-RED-y11-16.,1,3778_7778148_Txc110469,3778_41 -3778_48887,68,3778_5063,The Point,82.MF-BH.93-RED-y11-,1,3778_7778148_Txc110614,3778_50 -3778_48887,68,3778_5064,Connolly,83.MF-BH.93-RED-y11-,1,3778_7778148_Txc110618,3778_41 -3778_48887,71,3778_5065,The Point,44.SuBH.93-RED-y11-1,1,3778_7778148_Txc110420,3778_56 -3778_48886,69,3778_507,Brides Glen,184.Sat.93-GRN-y11-1,0,3778_7778148_Txc104959,3778_5 -3778_48887,71,3778_5070,Belgard,45.SuBH.93-RED-y11-1,1,3778_7778148_Txc110434,3778_40 -3778_48887,69,3778_5075,The Point,50.Sat.93-RED-y11-16,1,3778_7778148_Txc110475,3778_51 -3778_48887,70,3778_5076,The Point,50.gf.93-RED-y11-16.,1,3778_7778148_Txc110477,3778_52 -3778_48887,68,3778_5077,The Point,84.MF-BH.93-RED-y11-,1,3778_7778148_Txc110622,3778_50 -3778_48887,68,3778_5078,The Point,85.MF-BH.93-RED-y11-,1,3778_7778148_Txc110626,3778_60 -3778_48886,70,3778_508,Brides Glen,184.gf.93-GRN-y11-16,0,3778_7778148_Txc104960,3778_5 -3778_48887,69,3778_5082,The Point,51.Sat.93-RED-y11-16,1,3778_7778148_Txc110479,3778_61 -3778_48887,70,3778_5083,The Point,51.gf.93-RED-y11-16.,1,3778_7778148_Txc110481,3778_62 -3778_48887,71,3778_5087,The Point,46.SuBH.93-RED-y11-1,1,3778_7778148_Txc110448,3778_56 -3778_48887,71,3778_5092,Belgard,47.SuBH.93-RED-y11-1,1,3778_7778148_Txc110460,3778_40 -3778_48887,68,3778_5097,Connolly,86.MF-BH.93-RED-y11-,1,3778_7778148_Txc110630,3778_39 -3778_48887,68,3778_5098,The Point,87.MF-BH.93-RED-y11-,1,3778_7778148_Txc110634,3778_60 -3778_48887,69,3778_5099,Connolly,52.Sat.93-RED-y11-16,1,3778_7778148_Txc110483,3778_39 -3778_48886,71,3778_51,Brides Glen,80.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105608,3778_1 -3778_48887,70,3778_5100,Connolly,52.gf.93-RED-y11-16.,1,3778_7778148_Txc110485,3778_39 -3778_48887,69,3778_5104,The Point,53.Sat.93-RED-y11-16,1,3778_7778148_Txc110487,3778_61 -3778_48887,70,3778_5105,The Point,53.gf.93-RED-y11-16.,1,3778_7778148_Txc110489,3778_62 -3778_48887,71,3778_5109,The Point,48.SuBH.93-RED-y11-1,1,3778_7778148_Txc110464,3778_56 -3778_48887,71,3778_5114,Belgard,49.SuBH.93-RED-y11-1,1,3778_7778148_Txc110468,3778_40 -3778_48887,68,3778_5119,The Point,88.MF-BH.93-RED-y11-,1,3778_7778148_Txc110638,3778_50 -3778_48886,68,3778_512,Brides Glen,283.MF-BH.93-GRN-y11,0,3778_7778148_Txc105277,3778_5 -3778_48887,68,3778_5120,Connolly,89.MF-BH.93-RED-y11-,1,3778_7778148_Txc110642,3778_41 -3778_48887,69,3778_5121,The Point,54.Sat.93-RED-y11-16,1,3778_7778148_Txc110491,3778_51 -3778_48887,70,3778_5122,The Point,54.gf.93-RED-y11-16.,1,3778_7778148_Txc110493,3778_52 -3778_48887,71,3778_5126,The Point,50.SuBH.93-RED-y11-1,1,3778_7778148_Txc110476,3778_56 -3778_48887,69,3778_5127,Connolly,55.Sat.93-RED-y11-16,1,3778_7778148_Txc110495,3778_41 -3778_48887,70,3778_5128,Connolly,55.gf.93-RED-y11-16.,1,3778_7778148_Txc110497,3778_41 -3778_48886,69,3778_513,Sandyford,187.Sat.93-GRN-y11-1,0,3778_7778148_Txc104968,3778_4 -3778_48887,71,3778_5136,Belgard,51.SuBH.93-RED-y11-1,1,3778_7778148_Txc110480,3778_40 -3778_48886,70,3778_514,Sandyford,187.gf.93-GRN-y11-16,0,3778_7778148_Txc104969,3778_4 -3778_48887,68,3778_5141,The Point,90.MF-BH.93-RED-y11-,1,3778_7778148_Txc110650,3778_50 -3778_48887,68,3778_5142,The Point,91.MF-BH.93-RED-y11-,1,3778_7778148_Txc110654,3778_60 -3778_48887,71,3778_5143,The Point,52.SuBH.93-RED-y11-1,1,3778_7778148_Txc110484,3778_56 -3778_48887,69,3778_5148,The Point,56.Sat.93-RED-y11-16,1,3778_7778148_Txc110499,3778_51 -3778_48887,70,3778_5149,The Point,56.gf.93-RED-y11-16.,1,3778_7778148_Txc110501,3778_52 -3778_48887,69,3778_5153,The Point,57.Sat.93-RED-y11-16,1,3778_7778148_Txc110503,3778_61 -3778_48887,70,3778_5154,The Point,57.gf.93-RED-y11-16.,1,3778_7778148_Txc110505,3778_62 -3778_48887,71,3778_5158,Belgard,53.SuBH.93-RED-y11-1,1,3778_7778148_Txc110488,3778_40 -3778_48887,68,3778_5159,Connolly,92.MF-BH.93-RED-y11-,1,3778_7778148_Txc110658,3778_39 -3778_48887,68,3778_5160,The Point,93.MF-BH.93-RED-y11-,1,3778_7778148_Txc110662,3778_60 -3778_48887,71,3778_5165,The Point,54.SuBH.93-RED-y11-1,1,3778_7778148_Txc110492,3778_56 -3778_48887,71,3778_5170,Belgard,55.SuBH.93-RED-y11-1,1,3778_7778148_Txc110496,3778_40 -3778_48887,68,3778_5171,The Point,94.MF-BH.93-RED-y11-,1,3778_7778148_Txc110666,3778_50 -3778_48887,68,3778_5172,Connolly,95.MF-BH.93-RED-y11-,1,3778_7778148_Txc110670,3778_41 -3778_48887,69,3778_5177,Connolly,58.Sat.93-RED-y11-16,1,3778_7778148_Txc110507,3778_39 -3778_48887,70,3778_5178,Connolly,58.gf.93-RED-y11-16.,1,3778_7778148_Txc110509,3778_39 -3778_48886,71,3778_518,Brides Glen,112.SuBH.93-GRN-y11-,0,3778_7778148_Txc104670,3778_1 -3778_48887,69,3778_5182,The Point,59.Sat.93-RED-y11-16,1,3778_7778148_Txc110511,3778_61 -3778_48887,70,3778_5183,The Point,59.gf.93-RED-y11-16.,1,3778_7778148_Txc110513,3778_62 -3778_48887,71,3778_5187,The Point,56.SuBH.93-RED-y11-1,1,3778_7778148_Txc110500,3778_56 -3778_48887,68,3778_5192,The Point,96.MF-BH.93-RED-y11-,1,3778_7778148_Txc110674,3778_50 -3778_48887,68,3778_5193,The Point,97.MF-BH.93-RED-y11-,1,3778_7778148_Txc110678,3778_60 -3778_48887,71,3778_5194,Belgard,57.SuBH.93-RED-y11-1,1,3778_7778148_Txc110504,3778_40 -3778_48887,69,3778_5199,The Point,60.Sat.93-RED-y11-16,1,3778_7778148_Txc110519,3778_51 -3778_48887,70,3778_5200,The Point,60.gf.93-RED-y11-16.,1,3778_7778148_Txc110521,3778_52 -3778_48887,69,3778_5204,Connolly,61.Sat.93-RED-y11-16,1,3778_7778148_Txc110523,3778_41 -3778_48887,70,3778_5205,Connolly,61.gf.93-RED-y11-16.,1,3778_7778148_Txc110525,3778_41 -3778_48887,71,3778_5209,The Point,58.SuBH.93-RED-y11-1,1,3778_7778148_Txc110508,3778_56 -3778_48887,68,3778_5210,Connolly,98.MF-BH.93-RED-y11-,1,3778_7778148_Txc110682,3778_39 -3778_48887,68,3778_5211,The Point,99.MF-BH.93-RED-y11-,1,3778_7778148_Txc110686,3778_60 -3778_48887,71,3778_5216,Belgard,59.SuBH.93-RED-y11-1,1,3778_7778148_Txc110512,3778_40 -3778_48887,69,3778_5221,The Point,62.Sat.93-RED-y11-16,1,3778_7778148_Txc110527,3778_51 -3778_48887,70,3778_5222,The Point,62.gf.93-RED-y11-16.,1,3778_7778148_Txc110529,3778_52 -3778_48887,69,3778_5226,The Point,63.Sat.93-RED-y11-16,1,3778_7778148_Txc110531,3778_61 -3778_48887,70,3778_5227,The Point,63.gf.93-RED-y11-16.,1,3778_7778148_Txc110533,3778_62 -3778_48886,68,3778_523,Sandyford,286.MF-BH.93-GRN-y11,0,3778_7778148_Txc105280,3778_4 -3778_48887,68,3778_5231,The Point,100.MF-BH.93-RED-y11,1,3778_7778148_Txc109122,3778_50 -3778_48887,68,3778_5232,Connolly,101.MF-BH.93-RED-y11,1,3778_7778148_Txc109126,3778_41 -3778_48887,71,3778_5233,The Point,60.SuBH.93-RED-y11-1,1,3778_7778148_Txc110520,3778_56 -3778_48887,71,3778_5238,Belgard,61.SuBH.93-RED-y11-1,1,3778_7778148_Txc110524,3778_40 -3778_48886,69,3778_524,Brides Glen,186.Sat.93-GRN-y11-1,0,3778_7778148_Txc104965,3778_5 -3778_48887,68,3778_5243,The Point,102.MF-BH.93-RED-y11,1,3778_7778148_Txc109130,3778_50 -3778_48887,68,3778_5244,The Point,103.MF-BH.93-RED-y11,1,3778_7778148_Txc109134,3778_60 -3778_48887,69,3778_5245,Connolly,64.Sat.93-RED-y11-16,1,3778_7778148_Txc110535,3778_39 -3778_48887,70,3778_5246,Connolly,64.gf.93-RED-y11-16.,1,3778_7778148_Txc110537,3778_39 -3778_48886,70,3778_525,Brides Glen,186.gf.93-GRN-y11-16,0,3778_7778148_Txc104966,3778_5 -3778_48887,69,3778_5250,The Point,65.Sat.93-RED-y11-16,1,3778_7778148_Txc110539,3778_61 -3778_48887,70,3778_5251,The Point,65.gf.93-RED-y11-16.,1,3778_7778148_Txc110541,3778_62 -3778_48887,71,3778_5255,The Point,62.SuBH.93-RED-y11-1,1,3778_7778148_Txc110528,3778_56 -3778_48887,71,3778_5260,Belgard,63.SuBH.93-RED-y11-1,1,3778_7778148_Txc110532,3778_40 -3778_48887,68,3778_5265,Connolly,104.MF-BH.93-RED-y11,1,3778_7778148_Txc109138,3778_39 -3778_48887,68,3778_5266,The Point,105.MF-BH.93-RED-y11,1,3778_7778148_Txc109142,3778_60 -3778_48887,71,3778_5267,The Point,64.SuBH.93-RED-y11-1,1,3778_7778148_Txc110536,3778_56 -3778_48887,69,3778_5272,The Point,66.Sat.93-RED-y11-16,1,3778_7778148_Txc110543,3778_51 -3778_48887,70,3778_5273,The Point,66.gf.93-RED-y11-16.,1,3778_7778148_Txc110545,3778_52 -3778_48887,69,3778_5277,Connolly,67.Sat.93-RED-y11-16,1,3778_7778148_Txc110547,3778_41 -3778_48887,70,3778_5278,Connolly,67.gf.93-RED-y11-16.,1,3778_7778148_Txc110549,3778_41 -3778_48887,71,3778_5282,Belgard,65.SuBH.93-RED-y11-1,1,3778_7778148_Txc110540,3778_40 -3778_48887,68,3778_5287,The Point,106.MF-BH.93-RED-y11,1,3778_7778148_Txc109146,3778_50 -3778_48887,68,3778_5288,Connolly,107.MF-BH.93-RED-y11,1,3778_7778148_Txc109150,3778_41 -3778_48887,71,3778_5289,The Point,66.SuBH.93-RED-y11-1,1,3778_7778148_Txc110544,3778_56 -3778_48886,68,3778_529,Brides Glen,285.MF-BH.93-GRN-y11,0,3778_7778148_Txc105279,3778_5 -3778_48887,71,3778_5294,Belgard,67.SuBH.93-RED-y11-1,1,3778_7778148_Txc110548,3778_40 -3778_48887,69,3778_5295,The Point,68.Sat.93-RED-y11-16,1,3778_7778148_Txc110551,3778_51 -3778_48887,70,3778_5296,The Point,68.gf.93-RED-y11-16.,1,3778_7778148_Txc110553,3778_52 -3778_48886,69,3778_530,Sandyford,189.Sat.93-GRN-y11-1,0,3778_7778148_Txc104974,3778_4 -3778_48887,69,3778_5304,The Point,69.Sat.93-RED-y11-16,1,3778_7778148_Txc110555,3778_61 -3778_48887,70,3778_5305,The Point,69.gf.93-RED-y11-16.,1,3778_7778148_Txc110557,3778_62 -3778_48887,68,3778_5309,The Point,108.MF-BH.93-RED-y11,1,3778_7778148_Txc109154,3778_50 -3778_48886,70,3778_531,Sandyford,189.gf.93-GRN-y11-16,0,3778_7778148_Txc104975,3778_4 -3778_48887,68,3778_5310,The Point,109.MF-BH.93-RED-y11,1,3778_7778148_Txc109158,3778_60 -3778_48887,71,3778_5311,The Point,68.SuBH.93-RED-y11-1,1,3778_7778148_Txc110552,3778_56 -3778_48887,71,3778_5316,Belgard,69.SuBH.93-RED-y11-1,1,3778_7778148_Txc110556,3778_40 -3778_48887,69,3778_5321,Connolly,70.Sat.93-RED-y11-16,1,3778_7778148_Txc110563,3778_39 -3778_48887,70,3778_5322,Connolly,70.gf.93-RED-y11-16.,1,3778_7778148_Txc110565,3778_39 -3778_48887,68,3778_5326,Connolly,110.MF-BH.93-RED-y11,1,3778_7778148_Txc109166,3778_39 -3778_48887,68,3778_5327,The Point,111.MF-BH.93-RED-y11,1,3778_7778148_Txc109170,3778_60 -3778_48887,69,3778_5328,The Point,71.Sat.93-RED-y11-16,1,3778_7778148_Txc110567,3778_61 -3778_48887,70,3778_5329,The Point,71.gf.93-RED-y11-16.,1,3778_7778148_Txc110569,3778_62 -3778_48887,71,3778_5333,The Point,70.SuBH.93-RED-y11-1,1,3778_7778148_Txc110564,3778_56 -3778_48887,71,3778_5338,Belgard,71.SuBH.93-RED-y11-1,1,3778_7778148_Txc110568,3778_40 -3778_48887,68,3778_5343,The Point,112.MF-BH.93-RED-y11,1,3778_7778148_Txc109174,3778_50 -3778_48887,68,3778_5344,Connolly,113.MF-BH.93-RED-y11,1,3778_7778148_Txc109178,3778_41 -3778_48887,69,3778_5345,The Point,72.Sat.93-RED-y11-16,1,3778_7778148_Txc110571,3778_51 -3778_48887,70,3778_5346,The Point,72.gf.93-RED-y11-16.,1,3778_7778148_Txc110573,3778_52 -3778_48886,71,3778_535,Brides Glen,113.SuBH.93-GRN-y11-,0,3778_7778148_Txc104674,3778_1 -3778_48887,69,3778_5350,Connolly,73.Sat.93-RED-y11-16,1,3778_7778148_Txc110575,3778_41 -3778_48887,70,3778_5351,Connolly,73.gf.93-RED-y11-16.,1,3778_7778148_Txc110577,3778_41 -3778_48887,71,3778_5355,The Point,72.SuBH.93-RED-y11-1,1,3778_7778148_Txc110572,3778_56 -3778_48887,71,3778_5360,Belgard,73.SuBH.93-RED-y11-1,1,3778_7778148_Txc110576,3778_40 -3778_48887,68,3778_5365,The Point,114.MF-BH.93-RED-y11,1,3778_7778148_Txc109182,3778_50 -3778_48887,68,3778_5366,The Point,115.MF-BH.93-RED-y11,1,3778_7778148_Txc109186,3778_60 -3778_48887,69,3778_5367,The Point,74.Sat.93-RED-y11-16,1,3778_7778148_Txc110579,3778_51 -3778_48887,70,3778_5368,The Point,74.gf.93-RED-y11-16.,1,3778_7778148_Txc110581,3778_52 -3778_48887,69,3778_5372,The Point,75.Sat.93-RED-y11-16,1,3778_7778148_Txc110583,3778_61 -3778_48887,70,3778_5373,The Point,75.gf.93-RED-y11-16.,1,3778_7778148_Txc110585,3778_62 -3778_48887,71,3778_5377,The Point,74.SuBH.93-RED-y11-1,1,3778_7778148_Txc110580,3778_56 -3778_48887,71,3778_5382,Belgard,75.SuBH.93-RED-y11-1,1,3778_7778148_Txc110584,3778_40 -3778_48887,68,3778_5387,Connolly,116.MF-BH.93-RED-y11,1,3778_7778148_Txc109190,3778_39 -3778_48887,68,3778_5388,The Point,117.MF-BH.93-RED-y11,1,3778_7778148_Txc109194,3778_60 -3778_48887,69,3778_5389,Connolly,76.Sat.93-RED-y11-16,1,3778_7778148_Txc110587,3778_39 -3778_48887,70,3778_5390,Connolly,76.gf.93-RED-y11-16.,1,3778_7778148_Txc110589,3778_39 -3778_48887,71,3778_5391,The Point,77.SuBH.93-RED-y11-1,1,3778_7778148_Txc110592,3778_56 -3778_48887,69,3778_5399,The Point,77.Sat.93-RED-y11-16,1,3778_7778148_Txc110591,3778_61 -3778_48886,68,3778_540,Sandyford,288.MF-BH.93-GRN-y11,0,3778_7778148_Txc105282,3778_4 -3778_48887,70,3778_5400,The Point,77.gf.93-RED-y11-16.,1,3778_7778148_Txc110593,3778_62 -3778_48887,71,3778_5404,Belgard,78.SuBH.93-RED-y11-1,1,3778_7778148_Txc110596,3778_40 -3778_48887,68,3778_5409,The Point,118.MF-BH.93-RED-y11,1,3778_7778148_Txc109198,3778_50 -3778_48886,69,3778_541,Brides Glen,188.Sat.93-GRN-y11-1,0,3778_7778148_Txc104971,3778_5 -3778_48887,68,3778_5410,Connolly,119.MF-BH.93-RED-y11,1,3778_7778148_Txc109202,3778_41 -3778_48887,71,3778_5411,Connolly,76.SuBH.93-RED-y11-1,1,3778_7778148_Txc110588,3778_47 -3778_48887,71,3778_5416,The Point,79.SuBH.93-RED-y11-1,1,3778_7778148_Txc110600,3778_56 -3778_48886,70,3778_542,Brides Glen,188.gf.93-GRN-y11-16,0,3778_7778148_Txc104972,3778_5 -3778_48887,69,3778_5421,The Point,78.Sat.93-RED-y11-16,1,3778_7778148_Txc110595,3778_51 -3778_48887,70,3778_5422,The Point,78.gf.93-RED-y11-16.,1,3778_7778148_Txc110597,3778_52 -3778_48887,71,3778_5423,Belgard,80.SuBH.93-RED-y11-1,1,3778_7778148_Txc110608,3778_40 -3778_48887,68,3778_5431,The Point,120.MF-BH.93-RED-y11,1,3778_7778148_Txc109210,3778_50 -3778_48887,68,3778_5432,The Point,121.MF-BH.93-RED-y11,1,3778_7778148_Txc109214,3778_60 -3778_48887,69,3778_5433,Connolly,79.Sat.93-RED-y11-16,1,3778_7778148_Txc110599,3778_41 -3778_48887,70,3778_5434,Connolly,79.gf.93-RED-y11-16.,1,3778_7778148_Txc110601,3778_41 -3778_48887,71,3778_5438,The Point,82.SuBH.93-RED-y11-1,1,3778_7778148_Txc110616,3778_56 -3778_48887,68,3778_5443,Connolly,122.MF-BH.93-RED-y11,1,3778_7778148_Txc109218,3778_39 -3778_48887,68,3778_5444,The Point,123.MF-BH.93-RED-y11,1,3778_7778148_Txc109222,3778_60 -3778_48887,71,3778_5445,Belgard,83.SuBH.93-RED-y11-1,1,3778_7778148_Txc110620,3778_40 -3778_48887,69,3778_5450,The Point,80.Sat.93-RED-y11-16,1,3778_7778148_Txc110607,3778_51 -3778_48887,70,3778_5451,The Point,80.gf.93-RED-y11-16.,1,3778_7778148_Txc110609,3778_52 -3778_48887,69,3778_5455,The Point,81.Sat.93-RED-y11-16,1,3778_7778148_Txc110611,3778_61 -3778_48887,70,3778_5456,The Point,81.gf.93-RED-y11-16.,1,3778_7778148_Txc110613,3778_62 -3778_48886,68,3778_546,Brides Glen,287.MF-BH.93-GRN-y11,0,3778_7778148_Txc105281,3778_5 -3778_48887,71,3778_5460,Connolly,81.SuBH.93-RED-y11-1,1,3778_7778148_Txc110612,3778_47 -3778_48887,71,3778_5465,The Point,84.SuBH.93-RED-y11-1,1,3778_7778148_Txc110624,3778_56 -3778_48886,71,3778_547,Brides Glen,114.SuBH.93-GRN-y11-,0,3778_7778148_Txc104678,3778_1 -3778_48887,68,3778_5470,Connolly,124.MF-BH.93-RED-y11,1,3778_7778148_Txc109226,3778_39 -3778_48887,68,3778_5471,The Point,125.MF-BH.93-RED-y11,1,3778_7778148_Txc109230,3778_60 -3778_48887,71,3778_5472,Belgard,85.SuBH.93-RED-y11-1,1,3778_7778148_Txc110628,3778_40 -3778_48887,69,3778_5477,Connolly,82.Sat.93-RED-y11-16,1,3778_7778148_Txc110615,3778_39 -3778_48887,70,3778_5478,Connolly,82.gf.93-RED-y11-16.,1,3778_7778148_Txc110617,3778_39 -3778_48886,69,3778_548,Sandyford,191.Sat.93-GRN-y11-1,0,3778_7778148_Txc104984,3778_4 -3778_48887,69,3778_5482,The Point,83.Sat.93-RED-y11-16,1,3778_7778148_Txc110619,3778_61 -3778_48887,70,3778_5483,The Point,83.gf.93-RED-y11-16.,1,3778_7778148_Txc110621,3778_62 -3778_48887,68,3778_5487,The Point,126.MF-BH.93-RED-y11,1,3778_7778148_Txc109234,3778_50 -3778_48887,68,3778_5488,Connolly,127.MF-BH.93-RED-y11,1,3778_7778148_Txc109238,3778_41 -3778_48887,71,3778_5489,The Point,87.SuBH.93-RED-y11-1,1,3778_7778148_Txc110636,3778_56 -3778_48886,70,3778_549,Sandyford,191.gf.93-GRN-y11-16,0,3778_7778148_Txc104985,3778_4 -3778_48887,71,3778_5494,Belgard,88.SuBH.93-RED-y11-1,1,3778_7778148_Txc110640,3778_40 -3778_48887,69,3778_5499,The Point,84.Sat.93-RED-y11-16,1,3778_7778148_Txc110623,3778_51 -3778_48886,69,3778_55,Brides Glen,141.Sat.93-GRN-y11-1,0,3778_7778148_Txc104797,3778_1 -3778_48887,70,3778_5500,The Point,84.gf.93-RED-y11-16.,1,3778_7778148_Txc110625,3778_52 -3778_48887,68,3778_5504,The Point,128.MF-BH.93-RED-y11,1,3778_7778148_Txc109242,3778_50 -3778_48887,68,3778_5505,The Point,129.MF-BH.93-RED-y11,1,3778_7778148_Txc109246,3778_60 -3778_48887,69,3778_5506,Connolly,85.Sat.93-RED-y11-16,1,3778_7778148_Txc110627,3778_41 -3778_48887,70,3778_5507,Connolly,85.gf.93-RED-y11-16.,1,3778_7778148_Txc110629,3778_41 -3778_48887,71,3778_5511,The Point,89.SuBH.93-RED-y11-1,1,3778_7778148_Txc110644,3778_56 -3778_48887,71,3778_5516,Belgard,90.SuBH.93-RED-y11-1,1,3778_7778148_Txc110652,3778_40 -3778_48887,68,3778_5521,Connolly,130.MF-BH.93-RED-y11,1,3778_7778148_Txc109254,3778_39 -3778_48887,68,3778_5522,The Point,131.MF-BH.93-RED-y11,1,3778_7778148_Txc109258,3778_60 -3778_48887,69,3778_5523,The Point,86.Sat.93-RED-y11-16,1,3778_7778148_Txc110631,3778_51 -3778_48887,70,3778_5524,The Point,86.gf.93-RED-y11-16.,1,3778_7778148_Txc110633,3778_52 -3778_48887,71,3778_5525,The Point,92.SuBH.93-RED-y11-1,1,3778_7778148_Txc110660,3778_56 -3778_48887,69,3778_5533,The Point,87.Sat.93-RED-y11-16,1,3778_7778148_Txc110635,3778_61 -3778_48887,70,3778_5534,The Point,87.gf.93-RED-y11-16.,1,3778_7778148_Txc110637,3778_62 -3778_48887,71,3778_5538,Belgard,93.SuBH.93-RED-y11-1,1,3778_7778148_Txc110664,3778_40 -3778_48887,71,3778_5543,Connolly,86.SuBH.93-RED-y11-1,1,3778_7778148_Txc110632,3778_42 -3778_48887,68,3778_5548,The Point,132.MF-BH.93-RED-y11,1,3778_7778148_Txc109262,3778_50 -3778_48887,68,3778_5549,Connolly,133.MF-BH.93-RED-y11,1,3778_7778148_Txc109266,3778_41 -3778_48887,71,3778_5550,The Point,94.SuBH.93-RED-y11-1,1,3778_7778148_Txc110668,3778_56 -3778_48887,69,3778_5555,Connolly,88.Sat.93-RED-y11-16,1,3778_7778148_Txc110639,3778_39 -3778_48887,70,3778_5556,Connolly,88.gf.93-RED-y11-16.,1,3778_7778148_Txc110641,3778_39 -3778_48887,69,3778_5560,The Point,89.Sat.93-RED-y11-16,1,3778_7778148_Txc110643,3778_61 -3778_48887,70,3778_5561,The Point,89.gf.93-RED-y11-16.,1,3778_7778148_Txc110645,3778_62 -3778_48887,71,3778_5562,Belgard,95.SuBH.93-RED-y11-1,1,3778_7778148_Txc110672,3778_40 -3778_48886,68,3778_557,Sandyford,290.MF-BH.93-GRN-y11,0,3778_7778148_Txc105288,3778_4 -3778_48887,68,3778_5570,The Point,134.MF-BH.93-RED-y11,1,3778_7778148_Txc109270,3778_50 -3778_48887,68,3778_5571,The Point,135.MF-BH.93-RED-y11,1,3778_7778148_Txc109274,3778_60 -3778_48887,71,3778_5572,The Point,97.SuBH.93-RED-y11-1,1,3778_7778148_Txc110680,3778_56 -3778_48887,68,3778_5577,Connolly,136.MF-BH.93-RED-y11,1,3778_7778148_Txc109278,3778_39 -3778_48887,68,3778_5578,The Point,137.MF-BH.93-RED-y11,1,3778_7778148_Txc109282,3778_60 -3778_48887,71,3778_5579,Belgard,98.SuBH.93-RED-y11-1,1,3778_7778148_Txc110684,3778_40 -3778_48886,69,3778_558,Brides Glen,190.Sat.93-GRN-y11-1,0,3778_7778148_Txc104981,3778_5 -3778_48887,69,3778_5584,The Point,90.Sat.93-RED-y11-16,1,3778_7778148_Txc110651,3778_51 -3778_48887,70,3778_5585,The Point,90.gf.93-RED-y11-16.,1,3778_7778148_Txc110653,3778_52 -3778_48887,71,3778_5586,Connolly,91.SuBH.93-RED-y11-1,1,3778_7778148_Txc110656,3778_42 -3778_48886,70,3778_559,Brides Glen,190.gf.93-GRN-y11-16,0,3778_7778148_Txc104982,3778_5 -3778_48887,69,3778_5594,Connolly,91.Sat.93-RED-y11-16,1,3778_7778148_Txc110655,3778_41 -3778_48887,70,3778_5595,Connolly,91.gf.93-RED-y11-16.,1,3778_7778148_Txc110657,3778_41 -3778_48887,71,3778_5599,The Point,99.SuBH.93-RED-y11-1,1,3778_7778148_Txc110688,3778_56 -3778_48886,70,3778_56,Brides Glen,141.gf.93-GRN-y11-16,0,3778_7778148_Txc104799,3778_1 -3778_48887,68,3778_5604,The Point,138.MF-BH.93-RED-y11,1,3778_7778148_Txc109286,3778_50 -3778_48887,68,3778_5605,Connolly,139.MF-BH.93-RED-y11,1,3778_7778148_Txc109290,3778_41 -3778_48887,71,3778_5606,Belgard,100.SuBH.93-RED-y11-,1,3778_7778148_Txc109124,3778_40 -3778_48887,69,3778_5611,The Point,92.Sat.93-RED-y11-16,1,3778_7778148_Txc110659,3778_51 -3778_48887,70,3778_5612,The Point,92.gf.93-RED-y11-16.,1,3778_7778148_Txc110661,3778_52 -3778_48887,69,3778_5616,The Point,93.Sat.93-RED-y11-16,1,3778_7778148_Txc110663,3778_61 -3778_48887,70,3778_5617,The Point,93.gf.93-RED-y11-16.,1,3778_7778148_Txc110665,3778_62 -3778_48887,71,3778_5621,The Point,102.SuBH.93-RED-y11-,1,3778_7778148_Txc109132,3778_56 -3778_48887,68,3778_5622,The Point,140.MF-BH.93-RED-y11,1,3778_7778148_Txc109298,3778_50 -3778_48887,68,3778_5623,The Point,141.MF-BH.93-RED-y11,1,3778_7778148_Txc109302,3778_60 -3778_48887,71,3778_5628,Belgard,103.SuBH.93-RED-y11-,1,3778_7778148_Txc109136,3778_40 -3778_48886,68,3778_563,Brides Glen,289.MF-BH.93-GRN-y11,0,3778_7778148_Txc105283,3778_5 -3778_48887,71,3778_5633,Connolly,96.SuBH.93-RED-y11-1,1,3778_7778148_Txc110676,3778_42 -3778_48887,69,3778_5638,Connolly,94.Sat.93-RED-y11-16,1,3778_7778148_Txc110667,3778_39 -3778_48887,70,3778_5639,Connolly,94.gf.93-RED-y11-16.,1,3778_7778148_Txc110669,3778_39 -3778_48886,71,3778_564,Brides Glen,115.SuBH.93-GRN-y11-,0,3778_7778148_Txc104682,3778_1 -3778_48887,68,3778_5643,Connolly,142.MF-BH.93-RED-y11,1,3778_7778148_Txc109306,3778_39 -3778_48887,68,3778_5644,The Point,143.MF-BH.93-RED-y11,1,3778_7778148_Txc109310,3778_60 -3778_48887,69,3778_5645,The Point,95.Sat.93-RED-y11-16,1,3778_7778148_Txc110671,3778_61 -3778_48887,70,3778_5646,The Point,95.gf.93-RED-y11-16.,1,3778_7778148_Txc110673,3778_62 -3778_48887,71,3778_5650,The Point,104.SuBH.93-RED-y11-,1,3778_7778148_Txc109140,3778_56 -3778_48887,71,3778_5655,Belgard,105.SuBH.93-RED-y11-,1,3778_7778148_Txc109144,3778_40 -3778_48887,68,3778_5660,The Point,144.MF-BH.93-RED-y11,1,3778_7778148_Txc109314,3778_50 -3778_48887,68,3778_5661,Connolly,145.MF-BH.93-RED-y11,1,3778_7778148_Txc109318,3778_41 -3778_48887,69,3778_5662,The Point,96.Sat.93-RED-y11-16,1,3778_7778148_Txc110675,3778_51 -3778_48887,70,3778_5663,The Point,96.gf.93-RED-y11-16.,1,3778_7778148_Txc110677,3778_52 -3778_48887,71,3778_5667,The Point,107.SuBH.93-RED-y11-,1,3778_7778148_Txc109152,3778_56 -3778_48887,69,3778_5668,Connolly,97.Sat.93-RED-y11-16,1,3778_7778148_Txc110679,3778_41 -3778_48887,70,3778_5669,Connolly,97.gf.93-RED-y11-16.,1,3778_7778148_Txc110681,3778_41 -3778_48887,71,3778_5677,Belgard,108.SuBH.93-RED-y11-,1,3778_7778148_Txc109156,3778_40 -3778_48887,71,3778_5682,Connolly,101.SuBH.93-RED-y11-,1,3778_7778148_Txc109128,3778_42 -3778_48887,68,3778_5687,The Point,146.MF-BH.93-RED-y11,1,3778_7778148_Txc109322,3778_50 -3778_48887,68,3778_5688,The Point,147.MF-BH.93-RED-y11,1,3778_7778148_Txc109326,3778_60 -3778_48887,71,3778_5689,The Point,109.SuBH.93-RED-y11-,1,3778_7778148_Txc109160,3778_56 -3778_48886,69,3778_569,Sandyford,193.Sat.93-GRN-y11-1,0,3778_7778148_Txc104990,3778_4 -3778_48887,69,3778_5694,The Point,98.Sat.93-RED-y11-16,1,3778_7778148_Txc110683,3778_51 -3778_48887,70,3778_5695,The Point,98.gf.93-RED-y11-16.,1,3778_7778148_Txc110685,3778_52 -3778_48887,71,3778_5699,Belgard,110.SuBH.93-RED-y11-,1,3778_7778148_Txc109168,3778_40 -3778_48886,68,3778_57,Brides Glen,209.MF-BH.93-GRN-y11,0,3778_7778148_Txc105045,3778_1 -3778_48886,70,3778_570,Sandyford,193.gf.93-GRN-y11-16,0,3778_7778148_Txc104991,3778_4 -3778_48887,69,3778_5700,The Point,99.Sat.93-RED-y11-16,1,3778_7778148_Txc110687,3778_61 -3778_48887,70,3778_5701,The Point,99.gf.93-RED-y11-16.,1,3778_7778148_Txc110689,3778_62 -3778_48887,68,3778_5709,Connolly,148.MF-BH.93-RED-y11,1,3778_7778148_Txc109330,3778_39 -3778_48887,68,3778_5710,The Point,149.MF-BH.93-RED-y11,1,3778_7778148_Txc109334,3778_60 -3778_48887,71,3778_5711,The Point,112.SuBH.93-RED-y11-,1,3778_7778148_Txc109176,3778_56 -3778_48887,68,3778_5716,Connolly,151.MF-BH.93-RED-y11,1,3778_7778148_Txc109346,3778_41 -3778_48887,69,3778_5717,Connolly,100.Sat.93-RED-y11-1,1,3778_7778148_Txc109123,3778_39 -3778_48887,70,3778_5718,Connolly,100.gf.93-RED-y11-16,1,3778_7778148_Txc109125,3778_39 -3778_48887,71,3778_5719,Belgard,113.SuBH.93-RED-y11-,1,3778_7778148_Txc109180,3778_40 -3778_48887,68,3778_5720,The Point,150.MF-BH.93-RED-y11,1,3778_7778148_Txc109342,3778_50 -3778_48887,69,3778_5728,The Point,101.Sat.93-RED-y11-1,1,3778_7778148_Txc109127,3778_61 -3778_48887,70,3778_5729,The Point,101.gf.93-RED-y11-16,1,3778_7778148_Txc109129,3778_62 -3778_48887,71,3778_5730,Connolly,106.SuBH.93-RED-y11-,1,3778_7778148_Txc109148,3778_42 -3778_48887,71,3778_5738,The Point,114.SuBH.93-RED-y11-,1,3778_7778148_Txc109184,3778_56 -3778_48886,68,3778_574,Sandyford,292.MF-BH.93-GRN-y11,0,3778_7778148_Txc105290,3778_4 -3778_48887,68,3778_5743,The Point,152.MF-BH.93-RED-y11,1,3778_7778148_Txc109350,3778_50 -3778_48887,68,3778_5744,The Point,153.MF-BH.93-RED-y11,1,3778_7778148_Txc109354,3778_60 -3778_48887,71,3778_5745,Belgard,115.SuBH.93-RED-y11-,1,3778_7778148_Txc109188,3778_40 -3778_48886,69,3778_575,Brides Glen,192.Sat.93-GRN-y11-1,0,3778_7778148_Txc104987,3778_5 -3778_48887,69,3778_5750,The Point,102.Sat.93-RED-y11-1,1,3778_7778148_Txc109131,3778_51 -3778_48887,70,3778_5751,The Point,102.gf.93-RED-y11-16,1,3778_7778148_Txc109133,3778_52 -3778_48887,69,3778_5755,Connolly,103.Sat.93-RED-y11-1,1,3778_7778148_Txc109135,3778_41 -3778_48887,70,3778_5756,Connolly,103.gf.93-RED-y11-16,1,3778_7778148_Txc109137,3778_41 -3778_48886,70,3778_576,Brides Glen,192.gf.93-GRN-y11-16,0,3778_7778148_Txc104988,3778_5 -3778_48887,71,3778_5760,The Point,117.SuBH.93-RED-y11-,1,3778_7778148_Txc109196,3778_56 -3778_48887,68,3778_5761,Connolly,154.MF-BH.93-RED-y11,1,3778_7778148_Txc109358,3778_39 -3778_48887,68,3778_5762,The Point,155.MF-BH.93-RED-y11,1,3778_7778148_Txc109362,3778_60 -3778_48887,71,3778_5767,Belgard,118.SuBH.93-RED-y11-,1,3778_7778148_Txc109200,3778_40 -3778_48887,71,3778_5772,Connolly,111.SuBH.93-RED-y11-,1,3778_7778148_Txc109172,3778_42 -3778_48887,69,3778_5777,The Point,104.Sat.93-RED-y11-1,1,3778_7778148_Txc109139,3778_51 -3778_48887,70,3778_5778,The Point,104.gf.93-RED-y11-16,1,3778_7778148_Txc109141,3778_52 -3778_48887,69,3778_5782,The Point,105.Sat.93-RED-y11-1,1,3778_7778148_Txc109143,3778_61 -3778_48887,70,3778_5783,The Point,105.gf.93-RED-y11-16,1,3778_7778148_Txc109145,3778_62 -3778_48887,68,3778_5787,The Point,156.MF-BH.93-RED-y11,1,3778_7778148_Txc109366,3778_50 -3778_48887,68,3778_5788,Connolly,157.MF-BH.93-RED-y11,1,3778_7778148_Txc109370,3778_41 -3778_48887,71,3778_5789,The Point,119.SuBH.93-RED-y11-,1,3778_7778148_Txc109204,3778_56 -3778_48887,71,3778_5794,Belgard,120.SuBH.93-RED-y11-,1,3778_7778148_Txc109212,3778_40 -3778_48887,68,3778_5799,The Point,158.MF-BH.93-RED-y11,1,3778_7778148_Txc109374,3778_50 -3778_48886,68,3778_580,Brides Glen,291.MF-BH.93-GRN-y11,0,3778_7778148_Txc105289,3778_5 -3778_48887,68,3778_5800,The Point,159.MF-BH.93-RED-y11,1,3778_7778148_Txc109378,3778_60 -3778_48887,69,3778_5801,Connolly,106.Sat.93-RED-y11-1,1,3778_7778148_Txc109147,3778_39 -3778_48887,70,3778_5802,Connolly,106.gf.93-RED-y11-16,1,3778_7778148_Txc109149,3778_39 -3778_48887,69,3778_5806,The Point,107.Sat.93-RED-y11-1,1,3778_7778148_Txc109151,3778_61 -3778_48887,70,3778_5807,The Point,107.gf.93-RED-y11-16,1,3778_7778148_Txc109153,3778_62 -3778_48886,71,3778_581,Brides Glen,116.SuBH.93-GRN-y11-,0,3778_7778148_Txc104686,3778_1 -3778_48887,71,3778_5811,The Point,122.SuBH.93-RED-y11-,1,3778_7778148_Txc109220,3778_56 -3778_48887,71,3778_5816,Belgard,123.SuBH.93-RED-y11-,1,3778_7778148_Txc109224,3778_40 -3778_48887,71,3778_5821,Connolly,116.SuBH.93-RED-y11-,1,3778_7778148_Txc109192,3778_42 -3778_48887,68,3778_5826,Connolly,160.MF-BH.93-RED-y11,1,3778_7778148_Txc109386,3778_39 -3778_48887,68,3778_5827,The Point,161.MF-BH.93-RED-y11,1,3778_7778148_Txc109390,3778_60 -3778_48887,69,3778_5828,The Point,108.Sat.93-RED-y11-1,1,3778_7778148_Txc109155,3778_51 -3778_48887,70,3778_5829,The Point,108.gf.93-RED-y11-16,1,3778_7778148_Txc109157,3778_52 -3778_48887,69,3778_5833,Connolly,109.Sat.93-RED-y11-1,1,3778_7778148_Txc109159,3778_41 -3778_48887,70,3778_5834,Connolly,109.gf.93-RED-y11-16,1,3778_7778148_Txc109161,3778_41 -3778_48887,71,3778_5838,The Point,124.SuBH.93-RED-y11-,1,3778_7778148_Txc109228,3778_56 -3778_48887,71,3778_5843,Belgard,125.SuBH.93-RED-y11-,1,3778_7778148_Txc109232,3778_40 -3778_48887,68,3778_5848,The Point,162.MF-BH.93-RED-y11,1,3778_7778148_Txc109394,3778_50 -3778_48887,68,3778_5849,Connolly,163.MF-BH.93-RED-y11,1,3778_7778148_Txc109398,3778_41 -3778_48887,69,3778_5850,The Point,110.Sat.93-RED-y11-1,1,3778_7778148_Txc109167,3778_51 -3778_48887,70,3778_5851,The Point,110.gf.93-RED-y11-16,1,3778_7778148_Txc109169,3778_52 -3778_48887,71,3778_5855,The Point,127.SuBH.93-RED-y11-,1,3778_7778148_Txc109240,3778_56 -3778_48886,69,3778_586,Sandyford,195.Sat.93-GRN-y11-1,0,3778_7778148_Txc104996,3778_4 -3778_48887,69,3778_5860,Belgard,111.Sat.93-RED-y11-1,1,3778_7778148_Txc109171,3778_40 -3778_48887,70,3778_5861,Belgard,111.gf.93-RED-y11-16,1,3778_7778148_Txc109173,3778_40 -3778_48887,71,3778_5865,Belgard,128.SuBH.93-RED-y11-,1,3778_7778148_Txc109244,3778_40 -3778_48886,70,3778_587,Sandyford,195.gf.93-GRN-y11-16,0,3778_7778148_Txc104997,3778_4 -3778_48887,71,3778_5870,Connolly,121.SuBH.93-RED-y11-,1,3778_7778148_Txc109216,3778_42 -3778_48887,68,3778_5875,The Point,164.MF-BH.93-RED-y11,1,3778_7778148_Txc109402,3778_50 -3778_48887,68,3778_5876,The Point,165.MF-BH.93-RED-y11,1,3778_7778148_Txc109406,3778_60 -3778_48887,69,3778_5877,The Point,112.Sat.93-RED-y11-1,1,3778_7778148_Txc109175,3778_51 -3778_48887,70,3778_5878,The Point,112.gf.93-RED-y11-16,1,3778_7778148_Txc109177,3778_52 -3778_48887,69,3778_5882,Belgard,113.Sat.93-RED-y11-1,1,3778_7778148_Txc109179,3778_40 -3778_48887,70,3778_5883,Belgard,113.gf.93-RED-y11-16,1,3778_7778148_Txc109181,3778_40 -3778_48887,71,3778_5884,The Point,129.SuBH.93-RED-y11-,1,3778_7778148_Txc109248,3778_56 -3778_48887,71,3778_5892,Belgard,130.SuBH.93-RED-y11-,1,3778_7778148_Txc109256,3778_40 -3778_48887,68,3778_5897,Connolly,166.MF-BH.93-RED-y11,1,3778_7778148_Txc109410,3778_39 -3778_48887,68,3778_5898,The Point,167.MF-BH.93-RED-y11,1,3778_7778148_Txc109414,3778_60 -3778_48887,69,3778_5899,The Point,114.Sat.93-RED-y11-1,1,3778_7778148_Txc109183,3778_51 -3778_48887,70,3778_5900,The Point,114.gf.93-RED-y11-16,1,3778_7778148_Txc109185,3778_52 -3778_48887,69,3778_5904,Belgard,115.Sat.93-RED-y11-1,1,3778_7778148_Txc109187,3778_40 -3778_48887,70,3778_5905,Belgard,115.gf.93-RED-y11-16,1,3778_7778148_Txc109189,3778_40 -3778_48887,71,3778_5906,The Point,132.SuBH.93-RED-y11-,1,3778_7778148_Txc109264,3778_56 -3778_48886,68,3778_591,Sandyford,294.MF-BH.93-GRN-y11,0,3778_7778148_Txc105292,3778_4 -3778_48887,71,3778_5914,Belgard,133.SuBH.93-RED-y11-,1,3778_7778148_Txc109268,3778_40 -3778_48887,71,3778_5919,Connolly,126.SuBH.93-RED-y11-,1,3778_7778148_Txc109236,3778_42 -3778_48886,69,3778_592,Brides Glen,194.Sat.93-GRN-y11-1,0,3778_7778148_Txc104993,3778_5 -3778_48887,68,3778_5920,The Point,168.MF-BH.93-RED-y11,1,3778_7778148_Txc109418,3778_50 -3778_48887,68,3778_5921,Connolly,169.MF-BH.93-RED-y11,1,3778_7778148_Txc109422,3778_41 -3778_48887,69,3778_5926,The Point,116.Sat.93-RED-y11-1,1,3778_7778148_Txc109191,3778_51 -3778_48887,70,3778_5927,The Point,116.gf.93-RED-y11-16,1,3778_7778148_Txc109193,3778_52 -3778_48886,70,3778_593,Brides Glen,194.gf.93-GRN-y11-16,0,3778_7778148_Txc104994,3778_5 -3778_48887,69,3778_5931,Belgard,117.Sat.93-RED-y11-1,1,3778_7778148_Txc109195,3778_40 -3778_48887,70,3778_5932,Belgard,117.gf.93-RED-y11-16,1,3778_7778148_Txc109197,3778_40 -3778_48887,71,3778_5936,The Point,134.SuBH.93-RED-y11-,1,3778_7778148_Txc109272,3778_56 -3778_48887,71,3778_5941,Belgard,135.SuBH.93-RED-y11-,1,3778_7778148_Txc109276,3778_40 -3778_48887,68,3778_5946,The Point,170.MF-BH.93-RED-y11,1,3778_7778148_Txc109430,3778_50 -3778_48887,68,3778_5947,Connolly,171.MF-BH.93-RED-y11,1,3778_7778148_Txc109434,3778_41 -3778_48887,69,3778_5948,The Point,118.Sat.93-RED-y11-1,1,3778_7778148_Txc109199,3778_51 -3778_48887,70,3778_5949,The Point,118.gf.93-RED-y11-16,1,3778_7778148_Txc109201,3778_52 -3778_48887,69,3778_5953,Belgard,119.Sat.93-RED-y11-1,1,3778_7778148_Txc109203,3778_40 -3778_48887,70,3778_5954,Belgard,119.gf.93-RED-y11-16,1,3778_7778148_Txc109205,3778_40 -3778_48887,71,3778_5958,The Point,136.SuBH.93-RED-y11-,1,3778_7778148_Txc109280,3778_56 -3778_48887,71,3778_5963,Connolly,131.SuBH.93-RED-y11-,1,3778_7778148_Txc109260,3778_42 -3778_48887,71,3778_5964,Belgard,137.SuBH.93-RED-y11-,1,3778_7778148_Txc109284,3778_40 -3778_48887,68,3778_5965,The Point,172.MF-BH.93-RED-y11,1,3778_7778148_Txc109438,3778_50 -3778_48886,68,3778_597,Brides Glen,293.MF-BH.93-GRN-y11,0,3778_7778148_Txc105291,3778_5 -3778_48887,68,3778_5974,Belgard,173.MF-BH.93-RED-y11,1,3778_7778148_Txc109442,3778_40 -3778_48887,69,3778_5975,The Point,120.Sat.93-RED-y11-1,1,3778_7778148_Txc109211,3778_51 -3778_48887,70,3778_5976,The Point,120.gf.93-RED-y11-16,1,3778_7778148_Txc109213,3778_52 -3778_48886,71,3778_598,Brides Glen,117.SuBH.93-GRN-y11-,0,3778_7778148_Txc104690,3778_1 -3778_48887,69,3778_5980,Belgard,121.Sat.93-RED-y11-1,1,3778_7778148_Txc109215,3778_40 -3778_48887,70,3778_5981,Belgard,121.gf.93-RED-y11-16,1,3778_7778148_Txc109217,3778_40 -3778_48887,71,3778_5985,The Point,138.SuBH.93-RED-y11-,1,3778_7778148_Txc109288,3778_56 -3778_48887,71,3778_5990,Belgard,139.SuBH.93-RED-y11-,1,3778_7778148_Txc109292,3778_40 -3778_48887,68,3778_5991,The Point,174.MF-BH.93-RED-y11,1,3778_7778148_Txc109446,3778_50 -3778_48887,68,3778_5996,Belgard,175.MF-BH.93-RED-y11,1,3778_7778148_Txc109450,3778_40 -3778_48887,69,3778_5997,The Point,122.Sat.93-RED-y11-1,1,3778_7778148_Txc109219,3778_51 -3778_48887,70,3778_5998,The Point,122.gf.93-RED-y11-16,1,3778_7778148_Txc109221,3778_52 -3778_48886,68,3778_6,Brides Glen,198.MF-BH.93-GRN-y11,0,3778_7778148_Txc105004,3778_1 -3778_48887,69,3778_6002,Belgard,123.Sat.93-RED-y11-1,1,3778_7778148_Txc109223,3778_40 -3778_48887,70,3778_6003,Belgard,123.gf.93-RED-y11-16,1,3778_7778148_Txc109225,3778_40 -3778_48887,71,3778_6007,The Point,140.SuBH.93-RED-y11-,1,3778_7778148_Txc109300,3778_56 -3778_48887,68,3778_6012,The Point,176.MF-BH.93-RED-y11,1,3778_7778148_Txc109454,3778_50 -3778_48887,71,3778_6013,Belgard,141.SuBH.93-RED-y11-,1,3778_7778148_Txc109304,3778_40 -3778_48887,68,3778_6018,Belgard,177.MF-BH.93-RED-y11,1,3778_7778148_Txc109458,3778_40 -3778_48887,69,3778_6019,The Point,124.Sat.93-RED-y11-1,1,3778_7778148_Txc109227,3778_51 -3778_48887,70,3778_6020,The Point,124.gf.93-RED-y11-16,1,3778_7778148_Txc109229,3778_52 -3778_48887,69,3778_6024,Belgard,125.Sat.93-RED-y11-1,1,3778_7778148_Txc109231,3778_40 -3778_48887,70,3778_6025,Belgard,125.gf.93-RED-y11-16,1,3778_7778148_Txc109233,3778_40 -3778_48887,71,3778_6029,The Point,142.SuBH.93-RED-y11-,1,3778_7778148_Txc109308,3778_56 -3778_48886,69,3778_603,Sandyford,197.Sat.93-GRN-y11-1,0,3778_7778148_Txc105002,3778_4 -3778_48887,68,3778_6034,The Point,178.MF-BH.93-RED-y11,1,3778_7778148_Txc109462,3778_43 -3778_48887,71,3778_6035,Belgard,143.SuBH.93-RED-y11-,1,3778_7778148_Txc109312,3778_40 -3778_48886,70,3778_604,Sandyford,197.gf.93-GRN-y11-16,0,3778_7778148_Txc105003,3778_4 -3778_48887,68,3778_6040,Belgard,179.MF-BH.93-RED-y11,1,3778_7778148_Txc109466,3778_40 -3778_48887,69,3778_6041,The Point,126.Sat.93-RED-y11-1,1,3778_7778148_Txc109235,3778_51 -3778_48887,70,3778_6042,The Point,126.gf.93-RED-y11-16,1,3778_7778148_Txc109237,3778_52 -3778_48887,69,3778_6046,Belgard,127.Sat.93-RED-y11-1,1,3778_7778148_Txc109239,3778_40 -3778_48887,70,3778_6047,Belgard,127.gf.93-RED-y11-16,1,3778_7778148_Txc109241,3778_40 -3778_48887,71,3778_6051,The Point,144.SuBH.93-RED-y11-,1,3778_7778148_Txc109316,3778_56 -3778_48887,68,3778_6056,The Point,180.MF-BH.93-RED-y11,1,3778_7778148_Txc109474,3778_43 -3778_48887,71,3778_6057,Belgard,145.SuBH.93-RED-y11-,1,3778_7778148_Txc109320,3778_40 -3778_48887,68,3778_6058,Belgard,181.MF-BH.93-RED-y11,1,3778_7778148_Txc109478,3778_40 -3778_48887,69,3778_6063,The Point,128.Sat.93-RED-y11-1,1,3778_7778148_Txc109243,3778_51 -3778_48887,70,3778_6064,The Point,128.gf.93-RED-y11-16,1,3778_7778148_Txc109245,3778_52 -3778_48887,69,3778_6068,Belgard,129.Sat.93-RED-y11-1,1,3778_7778148_Txc109247,3778_40 -3778_48887,70,3778_6069,Belgard,129.gf.93-RED-y11-16,1,3778_7778148_Txc109249,3778_40 -3778_48887,71,3778_6073,The Point,146.SuBH.93-RED-y11-,1,3778_7778148_Txc109324,3778_56 -3778_48887,68,3778_6074,The Point,182.MF-BH.93-RED-y11,1,3778_7778148_Txc109482,3778_43 -3778_48887,71,3778_6079,Belgard,147.SuBH.93-RED-y11-,1,3778_7778148_Txc109328,3778_40 -3778_48886,68,3778_608,Brides Glen,296.MF-BH.93-GRN-y11,0,3778_7778148_Txc105294,3778_1 -3778_48887,68,3778_6080,Belgard,183.MF-BH.93-RED-y11,1,3778_7778148_Txc109486,3778_40 -3778_48887,69,3778_6085,The Point,130.Sat.93-RED-y11-1,1,3778_7778148_Txc109255,3778_51 -3778_48887,70,3778_6086,The Point,130.gf.93-RED-y11-16,1,3778_7778148_Txc109257,3778_52 -3778_48886,69,3778_609,Brides Glen,196.Sat.93-GRN-y11-1,0,3778_7778148_Txc104999,3778_5 -3778_48887,69,3778_6090,Belgard,131.Sat.93-RED-y11-1,1,3778_7778148_Txc109259,3778_40 -3778_48887,70,3778_6091,Belgard,131.gf.93-RED-y11-16,1,3778_7778148_Txc109261,3778_40 -3778_48887,71,3778_6095,The Point,148.SuBH.93-RED-y11-,1,3778_7778148_Txc109332,3778_56 -3778_48887,68,3778_6096,The Point,184.MF-BH.93-RED-y11,1,3778_7778148_Txc109489,3778_43 -3778_48886,71,3778_61,Brides Glen,78.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105596,3778_2 -3778_48886,70,3778_610,Brides Glen,196.gf.93-GRN-y11-16,0,3778_7778148_Txc105000,3778_5 -3778_48887,68,3778_6101,Belgard,185.MF-BH.93-RED-y11,1,3778_7778148_Txc109492,3778_40 -3778_48887,71,3778_6102,Belgard,149.SuBH.93-RED-y11-,1,3778_7778148_Txc109336,3778_40 -3778_48887,69,3778_6107,The Point,132.Sat.93-RED-y11-1,1,3778_7778148_Txc109263,3778_51 -3778_48887,70,3778_6108,The Point,132.gf.93-RED-y11-16,1,3778_7778148_Txc109265,3778_52 -3778_48887,69,3778_6112,Belgard,133.Sat.93-RED-y11-1,1,3778_7778148_Txc109267,3778_40 -3778_48887,70,3778_6113,Belgard,133.gf.93-RED-y11-16,1,3778_7778148_Txc109269,3778_40 -3778_48887,68,3778_6117,The Point,186.MF-BH.93-RED-y11,1,3778_7778148_Txc109496,3778_43 -3778_48887,71,3778_6118,The Point,150.SuBH.93-RED-y11-,1,3778_7778148_Txc109344,3778_56 -3778_48887,68,3778_6123,Belgard,187.MF-BH.93-RED-y11,1,3778_7778148_Txc109500,3778_40 -3778_48887,71,3778_6124,Belgard,151.SuBH.93-RED-y11-,1,3778_7778148_Txc109348,3778_40 -3778_48887,69,3778_6129,The Point,134.Sat.93-RED-y11-1,1,3778_7778148_Txc109271,3778_51 -3778_48887,70,3778_6130,The Point,134.gf.93-RED-y11-16,1,3778_7778148_Txc109273,3778_52 -3778_48887,69,3778_6134,Belgard,135.Sat.93-RED-y11-1,1,3778_7778148_Txc109275,3778_40 -3778_48887,70,3778_6135,Belgard,135.gf.93-RED-y11-16,1,3778_7778148_Txc109277,3778_40 -3778_48887,68,3778_6139,The Point,188.MF-BH.93-RED-y11,1,3778_7778148_Txc109504,3778_43 -3778_48886,71,3778_614,Brides Glen,118.SuBH.93-GRN-y11-,0,3778_7778148_Txc104694,3778_1 -3778_48887,71,3778_6140,The Point,152.SuBH.93-RED-y11-,1,3778_7778148_Txc109352,3778_56 -3778_48887,68,3778_6141,Belgard,189.MF-BH.93-RED-y11,1,3778_7778148_Txc109508,3778_40 -3778_48887,69,3778_6146,The Point,136.Sat.93-RED-y11-1,1,3778_7778148_Txc109279,3778_51 -3778_48887,70,3778_6147,The Point,136.gf.93-RED-y11-16,1,3778_7778148_Txc109281,3778_52 -3778_48887,71,3778_6148,Belgard,153.SuBH.93-RED-y11-,1,3778_7778148_Txc109356,3778_40 -3778_48886,68,3778_615,Brides Glen,295.MF-BH.93-GRN-y11,0,3778_7778148_Txc105293,3778_5 -3778_48887,69,3778_6155,Belgard,137.Sat.93-RED-y11-1,1,3778_7778148_Txc109283,3778_40 -3778_48887,70,3778_6156,Belgard,137.gf.93-RED-y11-16,1,3778_7778148_Txc109285,3778_40 -3778_48887,68,3778_6159,The Point,190.MF-BH.93-RED-y11,1,3778_7778148_Txc109516,3778_43 -3778_48887,68,3778_6160,Belgard,191.MF-BH.93-RED-y11,1,3778_7778148_Txc109520,3778_40 -3778_48887,71,3778_6161,The Point,154.SuBH.93-RED-y11-,1,3778_7778148_Txc109360,3778_56 -3778_48887,69,3778_6166,The Point,138.Sat.93-RED-y11-1,1,3778_7778148_Txc109287,3778_51 -3778_48887,70,3778_6167,The Point,138.gf.93-RED-y11-16,1,3778_7778148_Txc109289,3778_52 -3778_48887,71,3778_6168,Belgard,155.SuBH.93-RED-y11-,1,3778_7778148_Txc109364,3778_40 -3778_48887,69,3778_6175,Belgard,139.Sat.93-RED-y11-1,1,3778_7778148_Txc109291,3778_40 -3778_48887,70,3778_6176,Belgard,139.gf.93-RED-y11-16,1,3778_7778148_Txc109293,3778_40 -3778_48887,68,3778_6179,The Point,192.MF-BH.93-RED-y11,1,3778_7778148_Txc109524,3778_43 -3778_48887,68,3778_6180,Belgard,193.MF-BH.93-RED-y11,1,3778_7778148_Txc109528,3778_40 -3778_48887,71,3778_6181,The Point,156.SuBH.93-RED-y11-,1,3778_7778148_Txc109368,3778_56 -3778_48887,69,3778_6186,The Point,140.Sat.93-RED-y11-1,1,3778_7778148_Txc109299,3778_51 -3778_48887,70,3778_6187,The Point,140.gf.93-RED-y11-16,1,3778_7778148_Txc109301,3778_52 -3778_48887,71,3778_6190,Belgard,157.SuBH.93-RED-y11-,1,3778_7778148_Txc109372,3778_40 -3778_48887,69,3778_6195,Belgard,141.Sat.93-RED-y11-1,1,3778_7778148_Txc109303,3778_40 -3778_48887,70,3778_6196,Belgard,141.gf.93-RED-y11-16,1,3778_7778148_Txc109305,3778_40 -3778_48887,68,3778_6199,The Point,194.MF-BH.93-RED-y11,1,3778_7778148_Txc109532,3778_43 -3778_48886,69,3778_620,Sandyford,199.Sat.93-GRN-y11-1,0,3778_7778148_Txc105008,3778_4 -3778_48887,68,3778_6200,Belgard,195.MF-BH.93-RED-y11,1,3778_7778148_Txc109536,3778_40 -3778_48887,69,3778_6201,The Point,142.Sat.93-RED-y11-1,1,3778_7778148_Txc109307,3778_51 -3778_48887,70,3778_6202,The Point,142.gf.93-RED-y11-16,1,3778_7778148_Txc109309,3778_52 -3778_48887,71,3778_6203,The Point,158.SuBH.93-RED-y11-,1,3778_7778148_Txc109376,3778_56 -3778_48886,70,3778_621,Sandyford,199.gf.93-GRN-y11-16,0,3778_7778148_Txc105009,3778_4 -3778_48887,69,3778_6210,Belgard,143.Sat.93-RED-y11-1,1,3778_7778148_Txc109311,3778_40 -3778_48887,70,3778_6211,Belgard,143.gf.93-RED-y11-16,1,3778_7778148_Txc109313,3778_40 -3778_48887,71,3778_6214,Belgard,159.SuBH.93-RED-y11-,1,3778_7778148_Txc109380,3778_40 -3778_48887,68,3778_6219,The Point,196.MF-BH.93-RED-y11,1,3778_7778148_Txc109540,3778_43 -3778_48887,68,3778_6220,Belgard,197.MF-BH.93-RED-y11,1,3778_7778148_Txc109544,3778_40 -3778_48887,69,3778_6221,The Point,144.Sat.93-RED-y11-1,1,3778_7778148_Txc109315,3778_51 -3778_48887,70,3778_6222,The Point,144.gf.93-RED-y11-16,1,3778_7778148_Txc109317,3778_52 -3778_48887,69,3778_6225,Belgard,145.Sat.93-RED-y11-1,1,3778_7778148_Txc109319,3778_40 -3778_48887,70,3778_6226,Belgard,145.gf.93-RED-y11-16,1,3778_7778148_Txc109321,3778_40 -3778_48887,71,3778_6227,The Point,160.SuBH.93-RED-y11-,1,3778_7778148_Txc109388,3778_56 -3778_48887,68,3778_6234,The Point,198.MF-BH.93-RED-y11,1,3778_7778148_Txc109548,3778_43 -3778_48887,71,3778_6235,Belgard,161.SuBH.93-RED-y11-,1,3778_7778148_Txc109392,3778_40 -3778_48887,68,3778_6236,Belgard,199.MF-BH.93-RED-y11,1,3778_7778148_Txc109552,3778_40 -3778_48887,69,3778_6241,The Point,146.Sat.93-RED-y11-1,1,3778_7778148_Txc109323,3778_51 -3778_48887,70,3778_6242,The Point,146.gf.93-RED-y11-16,1,3778_7778148_Txc109325,3778_52 -3778_48887,69,3778_6245,Belgard,147.Sat.93-RED-y11-1,1,3778_7778148_Txc109327,3778_40 -3778_48887,70,3778_6246,Belgard,147.gf.93-RED-y11-16,1,3778_7778148_Txc109329,3778_40 -3778_48887,71,3778_6247,The Point,162.SuBH.93-RED-y11-,1,3778_7778148_Txc109396,3778_56 -3778_48887,68,3778_6248,The Point,200.MF-BH.93-RED-y11,1,3778_7778148_Txc109564,3778_43 -3778_48886,68,3778_625,Brides Glen,298.MF-BH.93-GRN-y11,0,3778_7778148_Txc105296,3778_1 -3778_48887,71,3778_6255,Belgard,163.SuBH.93-RED-y11-,1,3778_7778148_Txc109400,3778_40 -3778_48886,69,3778_626,Brides Glen,198.Sat.93-GRN-y11-1,0,3778_7778148_Txc105005,3778_5 -3778_48887,68,3778_6260,Belgard,201.MF-BH.93-RED-y11,1,3778_7778148_Txc109568,3778_45 -3778_48887,69,3778_6261,The Point,148.Sat.93-RED-y11-1,1,3778_7778148_Txc109331,3778_51 -3778_48887,70,3778_6262,The Point,148.gf.93-RED-y11-16,1,3778_7778148_Txc109333,3778_52 -3778_48887,68,3778_6263,Belgard,202.MF-BH.93-RED-y11,1,3778_7778148_Txc109572,3778_40 -3778_48887,69,3778_6266,Belgard,149.Sat.93-RED-y11-1,1,3778_7778148_Txc109335,3778_40 -3778_48887,70,3778_6267,Belgard,149.gf.93-RED-y11-16,1,3778_7778148_Txc109337,3778_40 -3778_48886,70,3778_627,Brides Glen,198.gf.93-GRN-y11-16,0,3778_7778148_Txc105006,3778_5 -3778_48887,71,3778_6270,The Point,164.SuBH.93-RED-y11-,1,3778_7778148_Txc109404,3778_56 -3778_48887,68,3778_6275,The Point,203.MF-BH.93-RED-y11,1,3778_7778148_Txc109576,3778_43 -3778_48887,71,3778_6276,Belgard,165.SuBH.93-RED-y11-,1,3778_7778148_Txc109408,3778_40 -3778_48887,69,3778_6281,The Point,150.Sat.93-RED-y11-1,1,3778_7778148_Txc109343,3778_51 -3778_48887,70,3778_6282,The Point,150.gf.93-RED-y11-16,1,3778_7778148_Txc109345,3778_52 -3778_48887,68,3778_6285,Belgard,204.MF-BH.93-RED-y11,1,3778_7778148_Txc109580,3778_40 -3778_48887,69,3778_6286,Belgard,151.Sat.93-RED-y11-1,1,3778_7778148_Txc109347,3778_45 -3778_48887,70,3778_6287,Belgard,151.gf.93-RED-y11-16,1,3778_7778148_Txc109349,3778_45 -3778_48887,69,3778_6290,Belgard,152.Sat.93-RED-y11-1,1,3778_7778148_Txc109351,3778_40 -3778_48887,70,3778_6291,Belgard,152.gf.93-RED-y11-16,1,3778_7778148_Txc109353,3778_40 -3778_48887,71,3778_6292,The Point,166.SuBH.93-RED-y11-,1,3778_7778148_Txc109412,3778_56 -3778_48887,71,3778_6299,Belgard,167.SuBH.93-RED-y11-,1,3778_7778148_Txc109416,3778_40 -3778_48887,68,3778_6304,The Point,205.MF-BH.93-RED-y11,1,3778_7778148_Txc109584,3778_43 -3778_48887,69,3778_6305,The Point,153.Sat.93-RED-y11-1,1,3778_7778148_Txc109355,3778_51 -3778_48887,70,3778_6306,The Point,153.gf.93-RED-y11-16,1,3778_7778148_Txc109357,3778_52 -3778_48887,69,3778_6309,Belgard,154.Sat.93-RED-y11-1,1,3778_7778148_Txc109359,3778_40 -3778_48886,71,3778_631,Brides Glen,119.SuBH.93-GRN-y11-,0,3778_7778148_Txc104698,3778_1 -3778_48887,70,3778_6310,Belgard,154.gf.93-RED-y11-16,1,3778_7778148_Txc109361,3778_40 -3778_48887,71,3778_6311,The Point,168.SuBH.93-RED-y11-,1,3778_7778148_Txc109420,3778_56 -3778_48887,68,3778_6312,Belgard,206.MF-BH.93-RED-y11,1,3778_7778148_Txc109588,3778_45 -3778_48887,68,3778_6319,Belgard,207.MF-BH.93-RED-y11,1,3778_7778148_Txc109592,3778_40 -3778_48887,71,3778_6320,Belgard,169.SuBH.93-RED-y11-,1,3778_7778148_Txc109424,3778_40 -3778_48887,69,3778_6325,The Point,155.Sat.93-RED-y11-1,1,3778_7778148_Txc109363,3778_51 -3778_48887,70,3778_6326,The Point,155.gf.93-RED-y11-16,1,3778_7778148_Txc109365,3778_52 -3778_48887,68,3778_6329,The Point,208.MF-BH.93-RED-y11,1,3778_7778148_Txc109596,3778_43 -3778_48887,69,3778_6330,Belgard,156.Sat.93-RED-y11-1,1,3778_7778148_Txc109367,3778_40 -3778_48887,70,3778_6331,Belgard,156.gf.93-RED-y11-16,1,3778_7778148_Txc109369,3778_40 -3778_48887,71,3778_6332,The Point,170.SuBH.93-RED-y11-,1,3778_7778148_Txc109432,3778_56 -3778_48887,71,3778_6339,Belgard,171.SuBH.93-RED-y11-,1,3778_7778148_Txc109436,3778_40 -3778_48887,68,3778_6340,Belgard,209.MF-BH.93-RED-y11,1,3778_7778148_Txc109600,3778_40 -3778_48887,69,3778_6345,The Point,157.Sat.93-RED-y11-1,1,3778_7778148_Txc109371,3778_51 -3778_48887,70,3778_6346,The Point,157.gf.93-RED-y11-16,1,3778_7778148_Txc109373,3778_52 -3778_48887,69,3778_6349,Belgard,158.Sat.93-RED-y11-1,1,3778_7778148_Txc109375,3778_40 -3778_48887,70,3778_6350,Belgard,158.gf.93-RED-y11-16,1,3778_7778148_Txc109377,3778_40 -3778_48887,71,3778_6351,The Point,172.SuBH.93-RED-y11-,1,3778_7778148_Txc109440,3778_56 -3778_48887,68,3778_6352,The Point,210.MF-BH.93-RED-y11,1,3778_7778148_Txc109608,3778_43 -3778_48887,71,3778_6359,Belgard,173.SuBH.93-RED-y11-,1,3778_7778148_Txc109444,3778_40 -3778_48886,68,3778_636,Brides Glen,297.MF-BH.93-GRN-y11,0,3778_7778148_Txc105295,3778_5 -3778_48887,68,3778_6364,Belgard,211.MF-BH.93-RED-y11,1,3778_7778148_Txc109612,3778_45 -3778_48887,69,3778_6365,The Point,159.Sat.93-RED-y11-1,1,3778_7778148_Txc109379,3778_51 -3778_48887,70,3778_6366,The Point,159.gf.93-RED-y11-16,1,3778_7778148_Txc109381,3778_52 -3778_48887,68,3778_6367,Belgard,212.MF-BH.93-RED-y11,1,3778_7778148_Txc109616,3778_40 -3778_48886,69,3778_637,Sandyford,201.Sat.93-GRN-y11-1,0,3778_7778148_Txc105022,3778_4 -3778_48887,71,3778_6370,The Point,174.SuBH.93-RED-y11-,1,3778_7778148_Txc109448,3778_56 -3778_48887,69,3778_6375,Belgard,160.Sat.93-RED-y11-1,1,3778_7778148_Txc109387,3778_40 -3778_48887,70,3778_6376,Belgard,160.gf.93-RED-y11-16,1,3778_7778148_Txc109389,3778_40 -3778_48887,71,3778_6379,Belgard,175.SuBH.93-RED-y11-,1,3778_7778148_Txc109452,3778_40 -3778_48886,70,3778_638,Sandyford,201.gf.93-GRN-y11-16,0,3778_7778148_Txc105023,3778_4 -3778_48887,68,3778_6384,The Point,213.MF-BH.93-RED-y11,1,3778_7778148_Txc109620,3778_50 -3778_48887,69,3778_6385,The Point,161.Sat.93-RED-y11-1,1,3778_7778148_Txc109391,3778_51 -3778_48887,70,3778_6386,The Point,161.gf.93-RED-y11-16,1,3778_7778148_Txc109393,3778_52 -3778_48887,71,3778_6389,The Point,176.SuBH.93-RED-y11-,1,3778_7778148_Txc109456,3778_56 -3778_48887,68,3778_6394,Belgard,214.MF-BH.93-RED-y11,1,3778_7778148_Txc109624,3778_40 -3778_48887,69,3778_6395,Belgard,162.Sat.93-RED-y11-1,1,3778_7778148_Txc109395,3778_40 -3778_48887,70,3778_6396,Belgard,162.gf.93-RED-y11-16,1,3778_7778148_Txc109397,3778_40 -3778_48887,71,3778_6399,Belgard,177.SuBH.93-RED-y11-,1,3778_7778148_Txc109460,3778_40 -3778_48887,68,3778_6404,The Point,215.MF-BH.93-RED-y11,1,3778_7778148_Txc109628,3778_50 -3778_48887,69,3778_6405,The Point,163.Sat.93-RED-y11-1,1,3778_7778148_Txc109399,3778_51 -3778_48887,70,3778_6406,The Point,163.gf.93-RED-y11-16,1,3778_7778148_Txc109401,3778_52 -3778_48887,71,3778_6409,The Point,178.SuBH.93-RED-y11-,1,3778_7778148_Txc109464,3778_56 -3778_48887,69,3778_6414,Belgard,164.Sat.93-RED-y11-1,1,3778_7778148_Txc109403,3778_40 -3778_48887,70,3778_6415,Belgard,164.gf.93-RED-y11-16,1,3778_7778148_Txc109405,3778_40 -3778_48887,68,3778_6418,Belgard,216.MF-BH.93-RED-y11,1,3778_7778148_Txc109632,3778_40 -3778_48887,71,3778_6419,Belgard,179.SuBH.93-RED-y11-,1,3778_7778148_Txc109468,3778_40 -3778_48886,68,3778_642,Sandyford,300.MF-BH.93-GRN-y11,0,3778_7778148_Txc105306,3778_4 -3778_48887,69,3778_6424,The Point,165.Sat.93-RED-y11-1,1,3778_7778148_Txc109407,3778_51 -3778_48887,70,3778_6425,The Point,165.gf.93-RED-y11-16,1,3778_7778148_Txc109409,3778_52 -3778_48887,68,3778_6428,The Point,217.MF-BH.93-RED-y11,1,3778_7778148_Txc109636,3778_50 -3778_48887,71,3778_6429,The Point,180.SuBH.93-RED-y11-,1,3778_7778148_Txc109476,3778_56 -3778_48886,69,3778_643,Brides Glen,200.Sat.93-GRN-y11-1,0,3778_7778148_Txc105019,3778_5 -3778_48887,69,3778_6434,Belgard,166.Sat.93-RED-y11-1,1,3778_7778148_Txc109411,3778_40 -3778_48887,70,3778_6435,Belgard,166.gf.93-RED-y11-16,1,3778_7778148_Txc109413,3778_40 -3778_48887,71,3778_6438,Belgard,181.SuBH.93-RED-y11-,1,3778_7778148_Txc109480,3778_40 -3778_48886,70,3778_644,Brides Glen,200.gf.93-GRN-y11-16,0,3778_7778148_Txc105020,3778_5 -3778_48887,68,3778_6443,Belgard,218.MF-BH.93-RED-y11,1,3778_7778148_Txc109640,3778_45 -3778_48887,68,3778_6444,Belgard,219.MF-BH.93-RED-y11,1,3778_7778148_Txc109644,3778_40 -3778_48887,69,3778_6445,The Point,167.Sat.93-RED-y11-1,1,3778_7778148_Txc109415,3778_51 -3778_48887,70,3778_6446,The Point,167.gf.93-RED-y11-16,1,3778_7778148_Txc109417,3778_52 -3778_48887,69,3778_6449,Belgard,168.Sat.93-RED-y11-1,1,3778_7778148_Txc109419,3778_40 -3778_48887,70,3778_6450,Belgard,168.gf.93-RED-y11-16,1,3778_7778148_Txc109421,3778_40 -3778_48887,71,3778_6451,The Point,182.SuBH.93-RED-y11-,1,3778_7778148_Txc109484,3778_56 -3778_48887,68,3778_6452,The Point,220.MF-BH.93-RED-y11,1,3778_7778148_Txc109652,3778_50 -3778_48887,68,3778_6459,The Point,221.MF-BH.93-RED-y11,1,3778_7778148_Txc109656,3778_60 -3778_48887,69,3778_6460,The Point,169.Sat.93-RED-y11-1,1,3778_7778148_Txc109423,3778_51 -3778_48887,70,3778_6461,The Point,169.gf.93-RED-y11-16,1,3778_7778148_Txc109425,3778_52 -3778_48887,69,3778_6464,Belgard,170.Sat.93-RED-y11-1,1,3778_7778148_Txc109431,3778_40 -3778_48887,70,3778_6465,Belgard,170.gf.93-RED-y11-16,1,3778_7778148_Txc109433,3778_40 -3778_48887,68,3778_6468,Belgard,223.MF-BH.93-RED-y11,1,3778_7778148_Txc109664,3778_40 -3778_48887,68,3778_6469,The Point,222.MF-BH.93-RED-y11,1,3778_7778148_Txc109660,3778_50 -3778_48887,69,3778_6470,The Point,171.Sat.93-RED-y11-1,1,3778_7778148_Txc109435,3778_51 -3778_48887,70,3778_6471,The Point,171.gf.93-RED-y11-16,1,3778_7778148_Txc109437,3778_52 -3778_48887,68,3778_6474,Belgard,224.MF-BH.93-RED-y11,1,3778_7778148_Txc109668,3778_40 -3778_48887,69,3778_6475,Belgard,172.Sat.93-RED-y11-1,1,3778_7778148_Txc109439,3778_40 -3778_48887,70,3778_6476,Belgard,172.gf.93-RED-y11-16,1,3778_7778148_Txc109441,3778_40 -3778_48887,68,3778_6479,The Point,225.MF-BH.93-RED-y11,1,3778_7778148_Txc109672,3778_50 -3778_48886,71,3778_648,Brides Glen,120.SuBH.93-GRN-y11-,0,3778_7778148_Txc104706,3778_1 -3778_48887,69,3778_6480,The Point,173.Sat.93-RED-y11-1,1,3778_7778148_Txc109443,3778_51 -3778_48887,70,3778_6481,The Point,173.gf.93-RED-y11-16,1,3778_7778148_Txc109445,3778_52 -3778_48887,69,3778_6484,Belgard,174.Sat.93-RED-y11-1,1,3778_7778148_Txc109447,3778_40 -3778_48887,70,3778_6485,Belgard,174.gf.93-RED-y11-16,1,3778_7778148_Txc109449,3778_40 -3778_48887,68,3778_6486,Belgard,226.MF-BH.93-RED-y11,1,3778_7778148_Txc109676,3778_40 -3778_48887,69,3778_6489,The Point,175.Sat.93-RED-y11-1,1,3778_7778148_Txc109451,3778_51 -3778_48887,70,3778_6490,The Point,175.gf.93-RED-y11-16,1,3778_7778148_Txc109453,3778_52 -3778_48887,68,3778_6491,The Point,227.MF-BH.93-RED-y11,1,3778_7778148_Txc109680,3778_50 -3778_48887,69,3778_6494,Belgard,176.Sat.93-RED-y11-1,1,3778_7778148_Txc109455,3778_40 -3778_48887,70,3778_6495,Belgard,176.gf.93-RED-y11-16,1,3778_7778148_Txc109457,3778_40 -3778_48887,68,3778_6496,Belgard,228.MF-BH.93-RED-y11,1,3778_7778148_Txc109684,3778_40 -3778_48887,69,3778_6499,The Point,177.Sat.93-RED-y11-1,1,3778_7778148_Txc109459,3778_51 -3778_48886,68,3778_65,Brides Glen,208.MF-BH.93-GRN-y11,0,3778_7778148_Txc105042,3778_5 -3778_48887,70,3778_6500,The Point,177.gf.93-RED-y11-16,1,3778_7778148_Txc109461,3778_52 -3778_48887,68,3778_6501,The Point,229.MF-BH.93-RED-y11,1,3778_7778148_Txc109688,3778_50 -3778_48887,69,3778_6504,Belgard,179.Sat.93-RED-y11-1,1,3778_7778148_Txc109467,3778_40 -3778_48887,70,3778_6505,Belgard,179.gf.93-RED-y11-16,1,3778_7778148_Txc109469,3778_40 -3778_48887,69,3778_6508,Kingswood,178.Sat.93-RED-y11-1,1,3778_7778148_Txc109463,3778_46 -3778_48887,70,3778_6509,Kingswood,178.gf.93-RED-y11-16,1,3778_7778148_Txc109465,3778_46 -3778_48887,69,3778_6512,Belgard,181.Sat.93-RED-y11-1,1,3778_7778148_Txc109479,3778_40 -3778_48887,70,3778_6513,Belgard,181.gf.93-RED-y11-16,1,3778_7778148_Txc109481,3778_40 -3778_48887,69,3778_6516,Kingswood,180.Sat.93-RED-y11-1,1,3778_7778148_Txc109475,3778_46 -3778_48887,70,3778_6517,Kingswood,180.gf.93-RED-y11-16,1,3778_7778148_Txc109477,3778_46 -3778_48886,68,3778_653,Brides Glen,299.MF-BH.93-GRN-y11,0,3778_7778148_Txc105297,3778_5 -3778_48886,69,3778_654,Sandyford,203.Sat.93-GRN-y11-1,0,3778_7778148_Txc105028,3778_4 -3778_48886,70,3778_655,Sandyford,203.gf.93-GRN-y11-16,0,3778_7778148_Txc105029,3778_4 -3778_48886,68,3778_659,Sandyford,302.MF-BH.93-GRN-y11,0,3778_7778148_Txc105308,3778_4 -3778_48886,68,3778_66,Brides Glen,211.MF-BH.93-GRN-y11,0,3778_7778148_Txc105055,3778_1 -3778_48886,71,3778_660,Brides Glen,121.SuBH.93-GRN-y11-,0,3778_7778148_Txc104710,3778_1 -3778_48886,69,3778_661,Brides Glen,202.Sat.93-GRN-y11-1,0,3778_7778148_Txc105025,3778_5 -3778_48886,70,3778_662,Brides Glen,202.gf.93-GRN-y11-16,0,3778_7778148_Txc105026,3778_5 -3778_48886,71,3778_67,Brides Glen,81.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105612,3778_1 -3778_48886,68,3778_670,Brides Glen,301.MF-BH.93-GRN-y11,0,3778_7778148_Txc105307,3778_5 -3778_48886,69,3778_671,Sandyford,205.Sat.93-GRN-y11-1,0,3778_7778148_Txc105034,3778_4 -3778_48886,70,3778_672,Sandyford,205.gf.93-GRN-y11-16,0,3778_7778148_Txc105035,3778_4 -3778_48886,68,3778_676,Brides Glen,304.MF-BH.93-GRN-y11,0,3778_7778148_Txc105310,3778_1 -3778_48886,71,3778_677,Brides Glen,122.SuBH.93-GRN-y11-,0,3778_7778148_Txc104714,3778_1 -3778_48886,69,3778_682,Brides Glen,204.Sat.93-GRN-y11-1,0,3778_7778148_Txc105031,3778_5 -3778_48886,70,3778_683,Brides Glen,204.gf.93-GRN-y11-16,0,3778_7778148_Txc105032,3778_5 -3778_48886,68,3778_687,Brides Glen,303.MF-BH.93-GRN-y11,0,3778_7778148_Txc105309,3778_5 -3778_48886,69,3778_688,Sandyford,207.Sat.93-GRN-y11-1,0,3778_7778148_Txc105040,3778_4 -3778_48886,70,3778_689,Sandyford,207.gf.93-GRN-y11-16,0,3778_7778148_Txc105041,3778_4 -3778_48886,68,3778_693,Sandyford,306.MF-BH.93-GRN-y11,0,3778_7778148_Txc105312,3778_4 -3778_48886,71,3778_694,Brides Glen,123.SuBH.93-GRN-y11-,0,3778_7778148_Txc104718,3778_1 -3778_48886,69,3778_699,Brides Glen,206.Sat.93-GRN-y11-1,0,3778_7778148_Txc105037,3778_5 -3778_48886,68,3778_7,Brides Glen,194.MF-BH.93-GRN-y11,0,3778_7778148_Txc104992,3778_2 -3778_48886,70,3778_700,Brides Glen,206.gf.93-GRN-y11-16,0,3778_7778148_Txc105038,3778_5 -3778_48886,68,3778_704,Brides Glen,305.MF-BH.93-GRN-y11,0,3778_7778148_Txc105311,3778_5 -3778_48886,68,3778_705,Sandyford,308.MF-BH.93-GRN-y11,0,3778_7778148_Txc105314,3778_4 -3778_48886,69,3778_706,Sandyford,209.Sat.93-GRN-y11-1,0,3778_7778148_Txc105046,3778_4 -3778_48886,70,3778_707,Sandyford,209.gf.93-GRN-y11-16,0,3778_7778148_Txc105047,3778_4 -3778_48886,68,3778_71,Brides Glen,210.MF-BH.93-GRN-y11,0,3778_7778148_Txc105052,3778_5 -3778_48886,71,3778_711,Brides Glen,124.SuBH.93-GRN-y11-,0,3778_7778148_Txc104722,3778_1 -3778_48886,68,3778_716,Brides Glen,309.MF-BH.93-GRN-y11,0,3778_7778148_Txc105315,3778_1 -3778_48886,69,3778_717,Brides Glen,208.Sat.93-GRN-y11-1,0,3778_7778148_Txc105043,3778_5 -3778_48886,70,3778_718,Brides Glen,208.gf.93-GRN-y11-16,0,3778_7778148_Txc105044,3778_5 -3778_48886,69,3778_72,Brides Glen,142.Sat.93-GRN-y11-1,0,3778_7778148_Txc104801,3778_1 -3778_48886,68,3778_722,Brides Glen,307.MF-BH.93-GRN-y11,0,3778_7778148_Txc105313,3778_5 -3778_48886,69,3778_723,Sandyford,211.Sat.93-GRN-y11-1,0,3778_7778148_Txc105056,3778_4 -3778_48886,70,3778_724,Sandyford,211.gf.93-GRN-y11-16,0,3778_7778148_Txc105057,3778_4 -3778_48886,71,3778_728,Brides Glen,125.SuBH.93-GRN-y11-,0,3778_7778148_Txc104726,3778_1 -3778_48886,68,3778_729,Brides Glen,311.MF-BH.93-GRN-y11,0,3778_7778148_Txc105321,3778_6 -3778_48886,70,3778_73,Brides Glen,142.gf.93-GRN-y11-16,0,3778_7778148_Txc104803,3778_1 -3778_48886,69,3778_734,Brides Glen,210.Sat.93-GRN-y11-1,0,3778_7778148_Txc105053,3778_5 -3778_48886,70,3778_735,Brides Glen,210.gf.93-GRN-y11-16,0,3778_7778148_Txc105054,3778_5 -3778_48886,68,3778_736,Sandyford,312.MF-BH.93-GRN-y11,0,3778_7778148_Txc105322,3778_4 -3778_48886,68,3778_74,Brides Glen,213.MF-BH.93-GRN-y11,0,3778_7778148_Txc105061,3778_6 -3778_48886,68,3778_740,Sandyford,310.MF-BH.93-GRN-y11,0,3778_7778148_Txc105320,3778_8 -3778_48886,69,3778_741,Sandyford,213.Sat.93-GRN-y11-1,0,3778_7778148_Txc105062,3778_4 -3778_48886,70,3778_742,Sandyford,213.gf.93-GRN-y11-16,0,3778_7778148_Txc105063,3778_4 -3778_48886,71,3778_746,Brides Glen,126.SuBH.93-GRN-y11-,0,3778_7778148_Txc104730,3778_1 -3778_48886,68,3778_751,Sandyford,314.MF-BH.93-GRN-y11,0,3778_7778148_Txc105324,3778_4 -3778_48886,69,3778_752,Brides Glen,212.Sat.93-GRN-y11-1,0,3778_7778148_Txc105059,3778_5 -3778_48886,70,3778_753,Brides Glen,212.gf.93-GRN-y11-16,0,3778_7778148_Txc105060,3778_5 -3778_48886,68,3778_757,Brides Glen,313.MF-BH.93-GRN-y11,0,3778_7778148_Txc105323,3778_5 -3778_48886,68,3778_758,Sandyford,316.MF-BH.93-GRN-y11,0,3778_7778148_Txc105326,3778_4 -3778_48886,71,3778_759,Brides Glen,127.SuBH.93-GRN-y11-,0,3778_7778148_Txc104734,3778_1 -3778_48886,69,3778_760,Sandyford,215.Sat.93-GRN-y11-1,0,3778_7778148_Txc105068,3778_4 -3778_48886,70,3778_761,Sandyford,215.gf.93-GRN-y11-16,0,3778_7778148_Txc105069,3778_4 -3778_48886,69,3778_769,Brides Glen,214.Sat.93-GRN-y11-1,0,3778_7778148_Txc105065,3778_5 -3778_48886,70,3778_770,Brides Glen,214.gf.93-GRN-y11-16,0,3778_7778148_Txc105066,3778_5 -3778_48886,68,3778_774,Sandyford,318.MF-BH.93-GRN-y11,0,3778_7778148_Txc105328,3778_4 -3778_48886,68,3778_775,Brides Glen,315.MF-BH.93-GRN-y11,0,3778_7778148_Txc105325,3778_5 -3778_48886,71,3778_776,Brides Glen,128.SuBH.93-GRN-y11-,0,3778_7778148_Txc104738,3778_1 -3778_48886,68,3778_78,Brides Glen,212.MF-BH.93-GRN-y11,0,3778_7778148_Txc105058,3778_5 -3778_48886,69,3778_781,Sandyford,217.Sat.93-GRN-y11-1,0,3778_7778148_Txc105074,3778_4 -3778_48886,70,3778_782,Sandyford,217.gf.93-GRN-y11-16,0,3778_7778148_Txc105075,3778_4 -3778_48886,68,3778_786,Sandyford,320.MF-BH.93-GRN-y11,0,3778_7778148_Txc105334,3778_4 -3778_48886,68,3778_787,Brides Glen,317.MF-BH.93-GRN-y11,0,3778_7778148_Txc105327,3778_5 -3778_48886,69,3778_788,Brides Glen,216.Sat.93-GRN-y11-1,0,3778_7778148_Txc105071,3778_5 -3778_48886,70,3778_789,Brides Glen,216.gf.93-GRN-y11-16,0,3778_7778148_Txc105072,3778_5 -3778_48886,68,3778_79,Brides Glen,215.MF-BH.93-GRN-y11,0,3778_7778148_Txc105067,3778_1 -3778_48886,68,3778_793,Sandyford,322.MF-BH.93-GRN-y11,0,3778_7778148_Txc105336,3778_4 -3778_48886,71,3778_794,Brides Glen,129.SuBH.93-GRN-y11-,0,3778_7778148_Txc104742,3778_1 -3778_48886,68,3778_795,Brides Glen,319.MF-BH.93-GRN-y11,0,3778_7778148_Txc105329,3778_5 -3778_48886,68,3778_8,Brides Glen,199.MF-BH.93-GRN-y11,0,3778_7778148_Txc105007,3778_1 -3778_48886,71,3778_80,Brides Glen,83.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105620,3778_6 -3778_48886,69,3778_800,Sandyford,219.Sat.93-GRN-y11-1,0,3778_7778148_Txc105080,3778_4 -3778_48886,70,3778_801,Sandyford,219.gf.93-GRN-y11-16,0,3778_7778148_Txc105081,3778_4 -3778_48886,68,3778_805,Sandyford,324.MF-BH.93-GRN-y11,0,3778_7778148_Txc105338,3778_4 -3778_48886,69,3778_806,Brides Glen,218.Sat.93-GRN-y11-1,0,3778_7778148_Txc105077,3778_5 -3778_48886,70,3778_807,Brides Glen,218.gf.93-GRN-y11-16,0,3778_7778148_Txc105078,3778_5 -3778_48886,68,3778_808,Brides Glen,321.MF-BH.93-GRN-y11,0,3778_7778148_Txc105335,3778_9 -3778_48886,71,3778_812,Brides Glen,130.SuBH.93-GRN-y11-,0,3778_7778148_Txc104750,3778_1 -3778_48886,69,3778_817,Sandyford,221.Sat.93-GRN-y11-1,0,3778_7778148_Txc105090,3778_4 -3778_48886,70,3778_818,Sandyford,221.gf.93-GRN-y11-16,0,3778_7778148_Txc105091,3778_4 -3778_48886,68,3778_819,Sandyford,326.MF-BH.93-GRN-y11,0,3778_7778148_Txc105340,3778_10 -3778_48886,68,3778_823,Brides Glen,323.MF-BH.93-GRN-y11,0,3778_7778148_Txc105337,3778_5 -3778_48886,69,3778_824,Brides Glen,220.Sat.93-GRN-y11-1,0,3778_7778148_Txc105087,3778_5 -3778_48886,70,3778_825,Brides Glen,220.gf.93-GRN-y11-16,0,3778_7778148_Txc105088,3778_5 -3778_48886,68,3778_829,Sandyford,328.MF-BH.93-GRN-y11,0,3778_7778148_Txc105342,3778_4 -3778_48886,71,3778_830,Brides Glen,131.SuBH.93-GRN-y11-,0,3778_7778148_Txc104754,3778_1 -3778_48886,68,3778_831,Brides Glen,325.MF-BH.93-GRN-y11,0,3778_7778148_Txc105339,3778_5 -3778_48886,69,3778_836,Sandyford,223.Sat.93-GRN-y11-1,0,3778_7778148_Txc105096,3778_4 -3778_48886,70,3778_837,Sandyford,223.gf.93-GRN-y11-16,0,3778_7778148_Txc105097,3778_4 -3778_48886,69,3778_84,Brides Glen,143.Sat.93-GRN-y11-1,0,3778_7778148_Txc104805,3778_1 -3778_48886,68,3778_841,Sandyford,330.MF-BH.93-GRN-y11,0,3778_7778148_Txc105348,3778_4 -3778_48886,68,3778_842,Brides Glen,327.MF-BH.93-GRN-y11,0,3778_7778148_Txc105341,3778_5 -3778_48886,69,3778_843,Brides Glen,222.Sat.93-GRN-y11-1,0,3778_7778148_Txc105093,3778_5 -3778_48886,70,3778_844,Brides Glen,222.gf.93-GRN-y11-16,0,3778_7778148_Txc105094,3778_5 -3778_48886,71,3778_848,Brides Glen,132.SuBH.93-GRN-y11-,0,3778_7778148_Txc104758,3778_1 -3778_48886,70,3778_85,Brides Glen,143.gf.93-GRN-y11-16,0,3778_7778148_Txc104807,3778_1 -3778_48886,68,3778_853,Brides Glen,329.MF-BH.93-GRN-y11,0,3778_7778148_Txc105343,3778_5 -3778_48886,68,3778_854,Sandyford,332.MF-BH.93-GRN-y11,0,3778_7778148_Txc105350,3778_4 -3778_48886,69,3778_855,Sandyford,225.Sat.93-GRN-y11-1,0,3778_7778148_Txc105102,3778_4 -3778_48886,70,3778_856,Sandyford,225.gf.93-GRN-y11-16,0,3778_7778148_Txc105103,3778_4 -3778_48886,69,3778_860,Brides Glen,224.Sat.93-GRN-y11-1,0,3778_7778148_Txc105099,3778_5 -3778_48886,70,3778_861,Brides Glen,224.gf.93-GRN-y11-16,0,3778_7778148_Txc105100,3778_5 -3778_48886,68,3778_862,Sandyford,334.MF-BH.93-GRN-y11,0,3778_7778148_Txc105352,3778_4 -3778_48886,71,3778_866,Brides Glen,133.SuBH.93-GRN-y11-,0,3778_7778148_Txc104762,3778_1 -3778_48886,68,3778_867,Brides Glen,331.MF-BH.93-GRN-y11,0,3778_7778148_Txc105349,3778_5 -3778_48886,69,3778_872,Sandyford,227.Sat.93-GRN-y11-1,0,3778_7778148_Txc105108,3778_4 -3778_48886,70,3778_873,Sandyford,227.gf.93-GRN-y11-16,0,3778_7778148_Txc105109,3778_4 -3778_48886,68,3778_877,Sandyford,336.MF-BH.93-GRN-y11,0,3778_7778148_Txc105354,3778_4 -3778_48886,68,3778_878,Brides Glen,333.MF-BH.93-GRN-y11,0,3778_7778148_Txc105351,3778_5 -3778_48886,71,3778_879,Brides Glen,134.SuBH.93-GRN-y11-,0,3778_7778148_Txc104766,3778_1 -3778_48886,69,3778_880,Brides Glen,226.Sat.93-GRN-y11-1,0,3778_7778148_Txc105105,3778_5 -3778_48886,70,3778_881,Brides Glen,226.gf.93-GRN-y11-16,0,3778_7778148_Txc105106,3778_5 -3778_48886,68,3778_889,Sandyford,338.MF-BH.93-GRN-y11,0,3778_7778148_Txc105356,3778_4 -3778_48886,68,3778_89,Sandyford,214.MF-BH.93-GRN-y11,0,3778_7778148_Txc105064,3778_7 -3778_48886,68,3778_890,Brides Glen,335.MF-BH.93-GRN-y11,0,3778_7778148_Txc105353,3778_5 -3778_48886,69,3778_891,Sandyford,229.Sat.93-GRN-y11-1,0,3778_7778148_Txc105114,3778_4 -3778_48886,70,3778_892,Sandyford,229.gf.93-GRN-y11-16,0,3778_7778148_Txc105115,3778_4 -3778_48886,68,3778_896,Sandyford,340.MF-BH.93-GRN-y11,0,3778_7778148_Txc105362,3778_4 -3778_48886,71,3778_897,Brides Glen,135.SuBH.93-GRN-y11-,0,3778_7778148_Txc104770,3778_1 -3778_48886,68,3778_898,Brides Glen,337.MF-BH.93-GRN-y11,0,3778_7778148_Txc105355,3778_5 -3778_48886,68,3778_9,Brides Glen,200.MF-BH.93-GRN-y11,0,3778_7778148_Txc105018,3778_1 -3778_48886,68,3778_90,Brides Glen,217.MF-BH.93-GRN-y11,0,3778_7778148_Txc105073,3778_1 -3778_48886,69,3778_903,Brides Glen,228.Sat.93-GRN-y11-1,0,3778_7778148_Txc105111,3778_5 -3778_48886,70,3778_904,Brides Glen,228.gf.93-GRN-y11-16,0,3778_7778148_Txc105112,3778_5 -3778_48886,68,3778_908,Sandyford,342.MF-BH.93-GRN-y11,0,3778_7778148_Txc105364,3778_4 -3778_48886,69,3778_909,Sandyford,231.Sat.93-GRN-y11-1,0,3778_7778148_Txc105124,3778_4 -3778_48886,69,3778_91,Brides Glen,140.Sat.93-GRN-y11-1,0,3778_7778148_Txc104793,3778_2 -3778_48886,70,3778_910,Sandyford,231.gf.93-GRN-y11-16,0,3778_7778148_Txc105125,3778_4 -3778_48886,68,3778_911,Brides Glen,339.MF-BH.93-GRN-y11,0,3778_7778148_Txc105357,3778_5 -3778_48886,71,3778_915,Brides Glen,136.SuBH.93-GRN-y11-,0,3778_7778148_Txc104774,3778_1 -3778_48886,70,3778_92,Brides Glen,140.gf.93-GRN-y11-16,0,3778_7778148_Txc104795,3778_2 -3778_48886,69,3778_920,Brides Glen,230.Sat.93-GRN-y11-1,0,3778_7778148_Txc105121,3778_5 -3778_48886,70,3778_921,Brides Glen,230.gf.93-GRN-y11-16,0,3778_7778148_Txc105122,3778_5 -3778_48886,68,3778_925,Sandyford,344.MF-BH.93-GRN-y11,0,3778_7778148_Txc105366,3778_4 -3778_48886,68,3778_926,Brides Glen,341.MF-BH.93-GRN-y11,0,3778_7778148_Txc105363,3778_5 -3778_48886,69,3778_927,Sandyford,233.Sat.93-GRN-y11-1,0,3778_7778148_Txc105130,3778_4 -3778_48886,70,3778_928,Sandyford,233.gf.93-GRN-y11-16,0,3778_7778148_Txc105131,3778_4 -3778_48886,71,3778_932,Brides Glen,137.SuBH.93-GRN-y11-,0,3778_7778148_Txc104778,3778_1 -3778_48886,68,3778_933,Brides Glen,343.MF-BH.93-GRN-y11,0,3778_7778148_Txc105365,3778_5 -3778_48886,68,3778_938,Sandyford,346.MF-BH.93-GRN-y11,0,3778_7778148_Txc105368,3778_4 -3778_48886,69,3778_939,Brides Glen,232.Sat.93-GRN-y11-1,0,3778_7778148_Txc105127,3778_5 -3778_48886,70,3778_940,Brides Glen,232.gf.93-GRN-y11-16,0,3778_7778148_Txc105128,3778_5 -3778_48886,68,3778_944,Brides Glen,345.MF-BH.93-GRN-y11,0,3778_7778148_Txc105367,3778_5 -3778_48886,69,3778_945,Sandyford,235.Sat.93-GRN-y11-1,0,3778_7778148_Txc105136,3778_4 -3778_48886,70,3778_946,Sandyford,235.gf.93-GRN-y11-16,0,3778_7778148_Txc105137,3778_4 -3778_48886,71,3778_950,Brides Glen,138.SuBH.93-GRN-y11-,0,3778_7778148_Txc104782,3778_1 -3778_48886,68,3778_955,Sandyford,348.MF-BH.93-GRN-y11,0,3778_7778148_Txc105370,3778_4 -3778_48886,69,3778_956,Brides Glen,234.Sat.93-GRN-y11-1,0,3778_7778148_Txc105133,3778_5 -3778_48886,70,3778_957,Brides Glen,234.gf.93-GRN-y11-16,0,3778_7778148_Txc105134,3778_5 -3778_48886,68,3778_96,Sandyford,218.MF-BH.93-GRN-y11,0,3778_7778148_Txc105076,3778_4 -3778_48886,68,3778_961,Brides Glen,347.MF-BH.93-GRN-y11,0,3778_7778148_Txc105369,3778_5 -3778_48886,69,3778_962,Sandyford,237.Sat.93-GRN-y11-1,0,3778_7778148_Txc105142,3778_4 -3778_48886,70,3778_963,Sandyford,237.gf.93-GRN-y11-16,0,3778_7778148_Txc105143,3778_4 -3778_48886,71,3778_967,Brides Glen,139.SuBH.93-GRN-y11-,0,3778_7778148_Txc104786,3778_1 -3778_48886,71,3778_97,Brides Glen,84.SuBH.93-GRN-y11-1,0,3778_7778148_Txc105624,3778_1 -3778_48886,68,3778_972,Sandyford,350.MF-BH.93-GRN-y11,0,3778_7778148_Txc105376,3778_4 -3778_48886,69,3778_973,Brides Glen,236.Sat.93-GRN-y11-1,0,3778_7778148_Txc105139,3778_5 -3778_48886,70,3778_974,Brides Glen,236.gf.93-GRN-y11-16,0,3778_7778148_Txc105140,3778_5 -3778_48886,68,3778_978,Brides Glen,349.MF-BH.93-GRN-y11,0,3778_7778148_Txc105371,3778_5 -3778_48886,71,3778_979,Brides Glen,140.SuBH.93-GRN-y11-,0,3778_7778148_Txc104794,3778_1 -3778_48886,69,3778_980,Sandyford,239.Sat.93-GRN-y11-1,0,3778_7778148_Txc105148,3778_4 -3778_48886,70,3778_981,Sandyford,239.gf.93-GRN-y11-16,0,3778_7778148_Txc105149,3778_4 -3778_48886,68,3778_989,Sandyford,352.MF-BH.93-GRN-y11,0,3778_7778148_Txc105378,3778_4 -3778_48886,69,3778_990,Brides Glen,238.Sat.93-GRN-y11-1,0,3778_7778148_Txc105145,3778_5 -3778_48886,70,3778_991,Brides Glen,238.gf.93-GRN-y11-16,0,3778_7778148_Txc105146,3778_5 -3778_48886,68,3778_995,Brides Glen,351.MF-BH.93-GRN-y11,0,3778_7778148_Txc105377,3778_5 -3778_48886,71,3778_996,Brides Glen,141.SuBH.93-GRN-y11-,0,3778_7778148_Txc104798,3778_1 -4195_72146,95,4195_10,Edenderry,301051013-00006-1,0,4195_7778007_75020101,4195_1 -4195_72148,93,4195_1000,Dublin,300931032-00004-1,1,4195_7778007_72070101,4195_47 -4195_72148,94,4195_1001,Dublin,300941032-00005-1,1,4195_7778007_72070101,4195_47 -4195_72148,95,4195_1002,Dublin,301051032-00006-1,1,4195_7778007_72070101,4195_47 -4195_72148,96,4195_1003,Dublin,301164002-00007-1,1,4195_7778007_72020101,4195_45 -4195_72148,92,4195_1005,Dublin,300921034-00003-1,1,4195_7778007_72080101,4195_45 -4195_72148,93,4195_1006,Dublin,300931034-00004-1,1,4195_7778007_72080101,4195_45 -4195_72148,94,4195_1007,Dublin,300941034-00005-1,1,4195_7778007_72080101,4195_45 -4195_72148,95,4195_1008,Dublin,301051034-00006-1,1,4195_7778007_72080101,4195_45 -4195_72148,96,4195_1009,Dublin,301164006-00007-1,1,4195_7778007_72010101,4195_46 -4195_72148,96,4195_1010,Dublin,301164008-00007-1,1,4195_7778007_72030101,4195_45 -4195_72148,92,4195_1012,Dublin,300921052-00003-1,1,4195_7778007_72130101,4195_45 -4195_72148,93,4195_1013,Dublin,300931052-00004-1,1,4195_7778007_72130101,4195_45 -4195_72148,94,4195_1014,Dublin,300941052-00005-1,1,4195_7778007_72130101,4195_45 -4195_72148,95,4195_1015,Dublin,301051052-00006-1,1,4195_7778007_72130101,4195_45 -4195_72148,92,4195_1017,Dublin,300921056-00003-1,1,4195_7778007_72150101,4195_45 -4195_72148,93,4195_1018,Dublin,300931056-00004-1,1,4195_7778007_72150101,4195_45 -4195_72148,94,4195_1019,Dublin,300941056-00005-1,1,4195_7778007_72150101,4195_45 -4195_72146,92,4195_102,Edenderry,300921085-00003-1,0,4195_7778007_65050101,4195_3 -4195_72148,95,4195_1020,Dublin,301051056-00006-1,1,4195_7778007_72150101,4195_45 -4195_72148,92,4195_1022,Dublin,300921058-00003-1,1,4195_7778007_72140101,4195_47 -4195_72148,93,4195_1023,Dublin,300931058-00004-1,1,4195_7778007_72140101,4195_47 -4195_72148,94,4195_1024,Dublin,300941058-00005-1,1,4195_7778007_72140101,4195_47 -4195_72148,95,4195_1025,Dublin,301051058-00006-1,1,4195_7778007_72140101,4195_47 -4195_72148,96,4195_1026,Dublin,301164016-00007-1,1,4195_7778007_72080101,4195_45 -4195_72146,93,4195_103,Edenderry,300931085-00004-1,0,4195_7778007_65050101,4195_3 -4195_72148,96,4195_1031,Dublin,301164018-00007-1,1,4195_7778007_72070101,4195_47 -4195_72148,96,4195_1036,Dublin,301164022-00007-1,1,4195_7778007_72090101,4195_46 -4195_72148,96,4195_1037,Dublin,301164026-00007-1,1,4195_7778007_72100101,4195_45 -4195_72148,92,4195_1039,Dublin,300921072-00003-1,1,4195_7778007_72170101,4195_45 -4195_72146,94,4195_104,Edenderry,300941085-00005-1,0,4195_7778007_65050101,4195_3 -4195_72148,93,4195_1040,Dublin,300931072-00004-1,1,4195_7778007_72170101,4195_45 -4195_72148,94,4195_1041,Dublin,300941072-00005-1,1,4195_7778007_72170101,4195_45 -4195_72148,95,4195_1042,Dublin,301051072-00006-1,1,4195_7778007_72170101,4195_45 -4195_72148,92,4195_1048,Dublin,300921078-00003-1,1,4195_7778007_72180101,4195_45 -4195_72148,93,4195_1049,Dublin,300931078-00004-1,1,4195_7778007_72180101,4195_45 -4195_72146,95,4195_105,Edenderry,301051085-00006-1,0,4195_7778007_65050101,4195_3 -4195_72148,94,4195_1050,Dublin,300941078-00005-1,1,4195_7778007_72180101,4195_45 -4195_72148,95,4195_1051,Dublin,301051078-00006-1,1,4195_7778007_72180101,4195_45 -4195_72148,96,4195_1052,Dublin,301164036-00007-1,1,4195_7778007_72120101,4195_50 -4195_72148,92,4195_1058,Dublin,300921084-00003-1,1,4195_7778007_75030101,4195_45 -4195_72148,93,4195_1059,Dublin,300931084-00004-1,1,4195_7778007_75030101,4195_45 -4195_72146,96,4195_106,Edenderry,301164063-00007-1,0,4195_7778007_65020101,4195_5 -4195_72148,94,4195_1060,Dublin,300941084-00005-1,1,4195_7778007_75030101,4195_45 -4195_72148,95,4195_1061,Dublin,301051084-00006-1,1,4195_7778007_75030101,4195_45 -4195_72148,96,4195_1062,Dublin,301164046-00007-1,1,4195_7778007_72130101,4195_45 -4195_72148,96,4195_1071,Dublin,301164050-00007-1,1,4195_7778007_72150101,4195_45 -4195_72148,92,4195_1073,Dublin,300921092-00003-1,1,4195_7778007_75050101,4195_45 -4195_72148,93,4195_1074,Dublin,300931092-00004-1,1,4195_7778007_75050101,4195_45 -4195_72148,94,4195_1075,Dublin,300941092-00005-1,1,4195_7778007_75050101,4195_45 -4195_72148,95,4195_1076,Dublin,301051092-00006-1,1,4195_7778007_75050101,4195_45 -4195_72148,96,4195_1077,Dublin,301164056-00007-1,1,4195_7778007_72140101,4195_46 -4195_72148,96,4195_1078,Dublin,301164052-00007-1,1,4195_7778007_72160101,4195_51 -4195_72148,92,4195_1080,Dublin,300921096-00003-1,1,4195_7778007_72110101,4195_46 -4195_72148,93,4195_1081,Dublin,300931096-00004-1,1,4195_7778007_72110101,4195_46 -4195_72148,94,4195_1082,Dublin,300941096-00005-1,1,4195_7778007_72110101,4195_46 -4195_72148,95,4195_1083,Dublin,301051096-00006-1,1,4195_7778007_72110101,4195_46 -4195_72148,96,4195_1084,Dublin,301164058-00007-1,1,4195_7778007_65010101,4195_45 -4195_72148,92,4195_1086,Dublin,300921100-00003-1,1,4195_7778007_55030101,4195_45 -4195_72148,93,4195_1087,Dublin,300931100-00004-1,1,4195_7778007_55030101,4195_45 -4195_72148,94,4195_1088,Dublin,300941100-00005-1,1,4195_7778007_55030101,4195_45 -4195_72148,95,4195_1089,Dublin,301051100-00006-1,1,4195_7778007_55030101,4195_45 -4195_72148,96,4195_1102,Dublin,301164066-00007-1,1,4195_7778007_65020101,4195_45 -4195_72148,92,4195_1104,Dublin,300921106-00003-1,1,4195_7778007_65050101,4195_45 -4195_72148,93,4195_1105,Dublin,300931106-00004-1,1,4195_7778007_65050101,4195_45 -4195_72148,94,4195_1106,Dublin,300941106-00005-1,1,4195_7778007_65050101,4195_45 -4195_72148,95,4195_1107,Dublin,301051106-00006-1,1,4195_7778007_65050101,4195_45 -4195_72148,96,4195_1112,Dublin,301164068-00007-1,1,4195_7778007_72090101,4195_45 -4195_72148,92,4195_1114,Dublin,300921108-00003-1,1,4195_7778007_72090101,4195_45 -4195_72148,93,4195_1115,Dublin,300931108-00004-1,1,4195_7778007_72090101,4195_45 -4195_72148,94,4195_1116,Dublin,300941108-00005-1,1,4195_7778007_72090101,4195_45 -4195_72148,95,4195_1117,Dublin,301051108-00006-1,1,4195_7778007_72090101,4195_45 -4195_72148,92,4195_1119,Dublin,300921110-00003-1,1,4195_7778007_55020101,4195_46 -4195_72146,92,4195_112,Edenderry,300921093-00003-1,0,4195_7778007_65020101,4195_3 -4195_72148,93,4195_1120,Dublin,300931110-00004-1,1,4195_7778007_55020101,4195_46 -4195_72148,94,4195_1121,Dublin,300941110-00005-1,1,4195_7778007_55020101,4195_46 -4195_72148,95,4195_1122,Dublin,301051110-00006-1,1,4195_7778007_55020101,4195_46 -4195_72148,96,4195_1123,Dublin,301164076-00007-1,1,4195_7778007_72070101,4195_47 -4195_72148,96,4195_1124,Dublin,301164078-00007-1,1,4195_7778007_55010101,4195_45 -4195_72148,92,4195_1126,Dublin,300921118-00003-1,1,4195_7778007_55010101,4195_45 -4195_72148,93,4195_1127,Dublin,300931118-00004-1,1,4195_7778007_55010101,4195_45 -4195_72148,94,4195_1128,Dublin,300941118-00005-1,1,4195_7778007_55010101,4195_45 -4195_72148,95,4195_1129,Dublin,301051118-00006-1,1,4195_7778007_55010101,4195_45 -4195_72146,93,4195_113,Edenderry,300931093-00004-1,0,4195_7778007_65020101,4195_3 -4195_72148,92,4195_1135,Dublin,300921122-00003-1,1,4195_7778007_65010101,4195_45 -4195_72148,93,4195_1136,Dublin,300931122-00004-1,1,4195_7778007_65010101,4195_45 -4195_72148,94,4195_1137,Dublin,300941122-00005-1,1,4195_7778007_65010101,4195_45 -4195_72148,95,4195_1138,Dublin,301051122-00006-1,1,4195_7778007_65010101,4195_45 -4195_72146,94,4195_114,Edenderry,300941093-00005-1,0,4195_7778007_65020101,4195_3 -4195_72148,92,4195_1144,Dublin,300921128-00003-1,1,4195_7778007_72020101,4195_45 -4195_72148,93,4195_1145,Dublin,300931128-00004-1,1,4195_7778007_72020101,4195_45 -4195_72148,94,4195_1146,Dublin,300941128-00005-1,1,4195_7778007_72020101,4195_45 -4195_72148,95,4195_1147,Dublin,301051128-00006-1,1,4195_7778007_72020101,4195_45 -4195_72146,95,4195_115,Edenderry,301051093-00006-1,0,4195_7778007_65020101,4195_3 -4195_72148,96,4195_1152,Dublin,301164086-00007-1,1,4195_7778007_55020101,4195_45 -4195_72148,92,4195_1154,Dublin,300921132-00003-1,1,4195_7778007_55040101,4195_45 -4195_72148,93,4195_1155,Dublin,300931132-00004-1,1,4195_7778007_55040101,4195_45 -4195_72148,94,4195_1156,Dublin,300941132-00005-1,1,4195_7778007_55040101,4195_45 -4195_72148,95,4195_1157,Dublin,301051132-00006-1,1,4195_7778007_55040101,4195_45 -4195_72146,96,4195_116,Edenderry,301164071-00007-1,0,4195_7778007_55010101,4195_5 -4195_72148,92,4195_1163,Dublin,300921134-00003-1,1,4195_7778007_55050101,4195_45 -4195_72148,93,4195_1164,Dublin,300931134-00004-1,1,4195_7778007_55050101,4195_45 -4195_72148,94,4195_1165,Dublin,300941134-00005-1,1,4195_7778007_55050101,4195_45 -4195_72148,95,4195_1166,Dublin,301051134-00006-1,1,4195_7778007_55050101,4195_45 -4195_72148,92,4195_1168,Dublin,300921138-00003-1,1,4195_7778007_72080101,4195_45 -4195_72148,93,4195_1169,Dublin,300931138-00004-1,1,4195_7778007_72080101,4195_45 -4195_72148,94,4195_1170,Dublin,300941138-00005-1,1,4195_7778007_72080101,4195_45 -4195_72148,95,4195_1171,Dublin,301051138-00006-1,1,4195_7778007_72080101,4195_45 -4195_72148,92,4195_1173,Dublin,300921144-00003-1,1,4195_7778007_72100101,4195_45 -4195_72148,93,4195_1174,Dublin,300931144-00004-1,1,4195_7778007_72100101,4195_45 -4195_72148,94,4195_1175,Dublin,300941144-00005-1,1,4195_7778007_72100101,4195_45 -4195_72148,95,4195_1176,Dublin,301051144-00006-1,1,4195_7778007_72100101,4195_45 -4195_72148,96,4195_1177,Dublin,301164098-00007-1,1,4195_7778007_55030101,4195_45 -4195_72146,92,4195_118,Edenderry,300921101-00003-1,0,4195_7778007_62020101,4195_1 -4195_72148,96,4195_1182,Dublin,301164100-00007-1,1,4195_7778007_72160101,4195_45 -4195_72148,92,4195_1184,Dublin,300921148-00003-1,1,4195_7778007_72050101,4195_45 -4195_72148,93,4195_1185,Dublin,300931148-00004-1,1,4195_7778007_72050101,4195_45 -4195_72148,94,4195_1186,Dublin,300941148-00005-1,1,4195_7778007_72050101,4195_45 -4195_72148,95,4195_1187,Dublin,301051148-00006-1,1,4195_7778007_72050101,4195_45 -4195_72148,96,4195_1188,Dublin,301164102-00007-1,1,4195_7778007_72020101,4195_50 -4195_72146,93,4195_119,Edenderry,300931101-00004-1,0,4195_7778007_62020101,4195_1 -4195_72148,92,4195_1194,Dublin,300921152-00003-1,1,4195_7778007_72170101,4195_46 -4195_72148,93,4195_1195,Dublin,300931152-00004-1,1,4195_7778007_72170101,4195_46 -4195_72148,94,4195_1196,Dublin,300941152-00005-1,1,4195_7778007_72170101,4195_46 -4195_72148,95,4195_1197,Dublin,301051152-00006-1,1,4195_7778007_72170101,4195_46 -4195_72148,96,4195_1198,Dublin,301164106-00007-1,1,4195_7778007_72030101,4195_46 -4195_72146,92,4195_12,Edenderry,300921021-00003-1,0,4195_7778007_72040101,4195_1 -4195_72146,94,4195_120,Edenderry,300941101-00005-1,0,4195_7778007_62020101,4195_1 -4195_72148,92,4195_1200,Dublin,300921154-00003-1,1,4195_7778007_72040101,4195_45 -4195_72148,93,4195_1201,Dublin,300931154-00004-1,1,4195_7778007_72040101,4195_45 -4195_72148,94,4195_1202,Dublin,300941154-00005-1,1,4195_7778007_72040101,4195_45 -4195_72148,95,4195_1203,Dublin,301051154-00006-1,1,4195_7778007_72040101,4195_45 -4195_72148,96,4195_1204,Dublin,301164108-00007-1,1,4195_7778007_65040101,4195_50 -4195_72146,95,4195_121,Edenderry,301051101-00006-1,0,4195_7778007_62020101,4195_1 -4195_72148,92,4195_1218,Dublin,300921162-00003-1,1,4195_7778007_72090101,4195_45 -4195_72148,93,4195_1219,Dublin,300931162-00004-1,1,4195_7778007_72090101,4195_45 -4195_72146,96,4195_122,Edenderry,301164075-00007-1,0,4195_7778007_65030101,4195_3 -4195_72148,94,4195_1220,Dublin,300941162-00005-1,1,4195_7778007_72090101,4195_45 -4195_72148,95,4195_1221,Dublin,301051162-00006-1,1,4195_7778007_72090101,4195_45 -4195_72148,96,4195_1222,Dublin,301164112-00007-1,1,4195_7778007_72040101,4195_47 -4195_72148,92,4195_1224,Dublin,300921164-00003-1,1,4195_7778007_72030101,4195_47 -4195_72148,93,4195_1225,Dublin,300931164-00004-1,1,4195_7778007_72030101,4195_47 -4195_72148,94,4195_1226,Dublin,300941164-00005-1,1,4195_7778007_72030101,4195_47 -4195_72148,95,4195_1227,Dublin,301051164-00006-1,1,4195_7778007_72030101,4195_47 -4195_72148,96,4195_1228,Dublin,301164120-00007-1,1,4195_7778007_72070101,4195_45 -4195_72148,92,4195_1230,Dublin,300921168-00003-1,1,4195_7778007_72160101,4195_45 -4195_72148,93,4195_1231,Dublin,300931168-00004-1,1,4195_7778007_72160101,4195_45 -4195_72148,94,4195_1232,Dublin,300941168-00005-1,1,4195_7778007_72160101,4195_45 -4195_72148,95,4195_1233,Dublin,301051168-00006-1,1,4195_7778007_72160101,4195_45 -4195_72148,96,4195_1234,Dublin,301164122-00007-1,1,4195_7778007_72010101,4195_46 -4195_72148,92,4195_1236,Dublin,300921174-00003-1,1,4195_7778007_72180101,4195_46 -4195_72148,93,4195_1237,Dublin,300931174-00004-1,1,4195_7778007_72180101,4195_46 -4195_72148,94,4195_1238,Dublin,300941174-00005-1,1,4195_7778007_72180101,4195_46 -4195_72148,95,4195_1239,Dublin,301051174-00006-1,1,4195_7778007_72180101,4195_46 -4195_72146,92,4195_124,Clane,300921107-00003-1,0,4195_7778007_65030101,4195_4 -4195_72148,96,4195_1248,Dublin,301164126-00007-1,1,4195_7778007_72020101,4195_50 -4195_72146,93,4195_125,Clane,300931107-00004-1,0,4195_7778007_65030101,4195_4 -4195_72148,92,4195_1250,Dublin,300921180-00003-1,1,4195_7778007_72050101,4195_45 -4195_72148,93,4195_1251,Dublin,300931180-00004-1,1,4195_7778007_72050101,4195_45 -4195_72148,94,4195_1252,Dublin,300941180-00005-1,1,4195_7778007_72050101,4195_45 -4195_72148,95,4195_1253,Dublin,301051180-00006-1,1,4195_7778007_72050101,4195_45 -4195_72148,96,4195_1258,Dublin,301164132-00007-1,1,4195_7778007_72060101,4195_47 -4195_72146,94,4195_126,Clane,300941107-00005-1,0,4195_7778007_65030101,4195_4 -4195_72148,92,4195_1260,Dublin,300921184-00003-1,1,4195_7778007_72040101,4195_47 -4195_72148,93,4195_1261,Dublin,300931184-00004-1,1,4195_7778007_72040101,4195_47 -4195_72148,94,4195_1262,Dublin,300941184-00005-1,1,4195_7778007_72040101,4195_47 -4195_72148,95,4195_1263,Dublin,301051184-00006-1,1,4195_7778007_72040101,4195_47 -4195_72148,2,4195_1264,Dublin,300911186-00002-1,1,4195_7778007_72160101,4195_45 -4195_72148,92,4195_1265,Dublin,300921186-00003-1,1,4195_7778007_72160101,4195_45 -4195_72148,93,4195_1266,Dublin,300931186-00004-1,1,4195_7778007_72160101,4195_45 -4195_72148,94,4195_1267,Dublin,300941186-00005-1,1,4195_7778007_72160101,4195_45 -4195_72148,95,4195_1268,Dublin,301051186-00006-1,1,4195_7778007_72160101,4195_45 -4195_72148,96,4195_1269,Dublin,301164134-00007-1,1,4195_7778007_72070101,4195_50 -4195_72146,95,4195_127,Clane,301051107-00006-1,0,4195_7778007_65030101,4195_4 -4195_72157,92,4195_1271,Rathangan,300921027-00003-1,0,4195_7778007_72110101,4195_52 -4195_72157,93,4195_1272,Rathangan,300931027-00004-1,0,4195_7778007_72110101,4195_52 -4195_72157,94,4195_1273,Rathangan,300941027-00005-1,0,4195_7778007_72110101,4195_52 -4195_72157,95,4195_1274,Rathangan,301051027-00006-1,0,4195_7778007_72110101,4195_52 -4195_72157,96,4195_1275,Kildare,301164011-00007-1,0,4195_7778007_72010101,4195_53 -4195_72157,96,4195_1276,Dublin,301164080-00007-1,1,4195_7778007_72110101,4195_54 -4195_72157,92,4195_1278,Dublin,300921130-00003-1,1,4195_7778007_75030101,4195_54 -4195_72157,93,4195_1279,Dublin,300931130-00004-1,1,4195_7778007_75030101,4195_54 -4195_72157,94,4195_1280,Dublin,300941130-00005-1,1,4195_7778007_75030101,4195_54 -4195_72157,95,4195_1281,Dublin,301051130-00006-1,1,4195_7778007_75030101,4195_54 -4195_72158,96,4195_1282,Dublin,301164034-00007-1,1,4195_7778007_72050101,4195_56 -4195_72158,92,4195_1284,Dublin,300921076-00003-1,1,4195_7778007_75010101,4195_55 -4195_72158,93,4195_1285,Dublin,300931076-00004-1,1,4195_7778007_75010101,4195_55 -4195_72158,94,4195_1286,Dublin,300941076-00005-1,1,4195_7778007_75010101,4195_55 -4195_72158,95,4195_1287,Dublin,301051076-00006-1,1,4195_7778007_75010101,4195_55 -4195_72159,92,4195_1289,Kildare,300921053-00003-1,0,4195_7778007_65060101,4195_57 -4195_72159,93,4195_1290,Kildare,300931053-00004-1,0,4195_7778007_65060101,4195_57 -4195_72159,94,4195_1291,Kildare,300941053-00005-1,0,4195_7778007_65060101,4195_57 -4195_72159,95,4195_1292,Kildare,301051053-00006-1,0,4195_7778007_65060101,4195_57 -4195_72159,96,4195_1293,Out of Service,301164027-00007-1,0,4195_7778007_72110101,4195_58 -4195_72159,96,4195_1294,Out of Service,301164053-00007-1,0,4195_7778007_72030101,4195_58 -4195_72159,92,4195_1296,DCU,300921026-00003-1,1,4195_7778007_75030101,4195_59 -4195_72159,93,4195_1297,DCU,300931026-00004-1,1,4195_7778007_75030101,4195_59 -4195_72159,94,4195_1298,DCU,300941026-00005-1,1,4195_7778007_75030101,4195_59 -4195_72159,95,4195_1299,DCU,301051026-00006-1,1,4195_7778007_75030101,4195_59 -4195_72146,93,4195_13,Edenderry,300931021-00004-1,0,4195_7778007_72040101,4195_1 -4195_72160,92,4195_1301,Dublin,300921044-00003-1,1,4195_7778007_72100101,4195_60 -4195_72160,93,4195_1302,Dublin,300931044-00004-1,1,4195_7778007_72100101,4195_60 -4195_72160,94,4195_1303,Dublin,300941044-00005-1,1,4195_7778007_72100101,4195_60 -4195_72160,95,4195_1304,Dublin,301051044-00006-1,1,4195_7778007_72100101,4195_60 -4195_72160,92,4195_1306,Dublin,300921046-00003-1,1,4195_7778007_75040101,4195_61 -4195_72160,93,4195_1307,Dublin,300931046-00004-1,1,4195_7778007_75040101,4195_61 -4195_72160,94,4195_1308,Dublin,300941046-00005-1,1,4195_7778007_75040101,4195_61 -4195_72160,95,4195_1309,Dublin,301051046-00006-1,1,4195_7778007_75040101,4195_61 -4195_72163,95,4195_1310,Newbridge,301051193-00006-1,0,4195_7778007_65040101,4195_62 -4195_72163,96,4195_1311,Newbridge,301164133-00007-1,0,4195_7778007_72060101,4195_63 -4195_72161,92,4195_1313,Rathangan,300921081-00003-1,0,4195_7778007_72110101,4195_64 -4195_72161,93,4195_1314,Rathangan,300931081-00004-1,0,4195_7778007_72110101,4195_64 -4195_72161,94,4195_1315,Rathangan,300941081-00005-1,0,4195_7778007_72110101,4195_64 -4195_72161,95,4195_1316,Rathangan,301051081-00006-1,0,4195_7778007_72110101,4195_64 -4195_72161,92,4195_1318,Dublin,300921064-00003-1,1,4195_7778007_72160101,4195_65 -4195_72161,93,4195_1319,Dublin,300931064-00004-1,1,4195_7778007_72160101,4195_65 -4195_72146,96,4195_132,Edenderry,301164079-00007-1,0,4195_7778007_55020101,4195_3 -4195_72161,94,4195_1320,Dublin,300941064-00005-1,1,4195_7778007_72160101,4195_65 -4195_72161,95,4195_1321,Dublin,301051064-00006-1,1,4195_7778007_72160101,4195_65 -4195_72164,92,4195_1327,Newbridge,300921097-00003-1,0,4195_7778007_72030101,4195_67 -4195_72164,93,4195_1328,Newbridge,300931097-00004-1,0,4195_7778007_72030101,4195_67 -4195_72164,94,4195_1329,Newbridge,300941097-00005-1,0,4195_7778007_72030101,4195_67 -4195_72164,95,4195_1330,Newbridge,301051097-00006-1,0,4195_7778007_72030101,4195_67 -4195_72164,92,4195_1332,Newbridge,300921117-00003-1,0,4195_7778007_72020101,4195_67 -4195_72164,93,4195_1333,Newbridge,300931117-00004-1,0,4195_7778007_72020101,4195_67 -4195_72164,94,4195_1334,Newbridge,300941117-00005-1,0,4195_7778007_72020101,4195_67 -4195_72164,95,4195_1335,Newbridge,301051117-00006-1,0,4195_7778007_72020101,4195_67 -4195_72164,92,4195_1337,Rathangan,300921137-00003-1,0,4195_7778007_72180101,4195_68 -4195_72164,93,4195_1338,Rathangan,300931137-00004-1,0,4195_7778007_72180101,4195_68 -4195_72164,94,4195_1339,Rathangan,300941137-00005-1,0,4195_7778007_72180101,4195_68 -4195_72146,92,4195_134,Prosperous,300921113-00003-1,0,4195_7778007_55010101,4195_2 -4195_72164,95,4195_1340,Rathangan,301051137-00006-1,0,4195_7778007_72180101,4195_68 -4195_72164,92,4195_1342,Newbridge,300921151-00003-1,0,4195_7778007_72120101,4195_67 -4195_72164,93,4195_1343,Newbridge,300931151-00004-1,0,4195_7778007_72120101,4195_67 -4195_72164,94,4195_1344,Newbridge,300941151-00005-1,0,4195_7778007_72120101,4195_67 -4195_72164,95,4195_1345,Newbridge,301051151-00006-1,0,4195_7778007_72120101,4195_67 -4195_72164,92,4195_1347,Dublin,300921030-00003-1,1,4195_7778007_72050101,4195_69 -4195_72164,93,4195_1348,Dublin,300931030-00004-1,1,4195_7778007_72050101,4195_69 -4195_72164,94,4195_1349,Dublin,300941030-00005-1,1,4195_7778007_72050101,4195_69 -4195_72146,93,4195_135,Prosperous,300931113-00004-1,0,4195_7778007_55010101,4195_2 -4195_72164,95,4195_1350,Dublin,301051030-00006-1,1,4195_7778007_72050101,4195_69 -4195_72149,92,4195_1352,Athy,300921063-00003-1,0,4195_7778007_72010101,4195_70 -4195_72149,93,4195_1353,Athy,300931063-00004-1,0,4195_7778007_72010101,4195_70 -4195_72149,94,4195_1354,Athy,300941063-00005-1,0,4195_7778007_72010101,4195_70 -4195_72149,95,4195_1355,Athy,301051063-00006-1,0,4195_7778007_72010101,4195_70 -4195_72149,96,4195_1356,Athy,301164039-00007-1,0,4195_7778007_72060101,4195_70 -4195_72146,94,4195_136,Prosperous,300941113-00005-1,0,4195_7778007_55010101,4195_2 -4195_72149,96,4195_1361,Athy,301164061-00007-1,0,4195_7778007_72060101,4195_70 -4195_72149,92,4195_1363,Athy,300921083-00003-1,0,4195_7778007_72010101,4195_70 -4195_72149,93,4195_1364,Athy,300931083-00004-1,0,4195_7778007_72010101,4195_70 -4195_72149,94,4195_1365,Athy,300941083-00005-1,0,4195_7778007_72010101,4195_70 -4195_72149,95,4195_1366,Athy,301051083-00006-1,0,4195_7778007_72010101,4195_70 -4195_72146,95,4195_137,Prosperous,301051113-00006-1,0,4195_7778007_55010101,4195_2 -4195_72149,92,4195_1372,Kilcullen,300921119-00003-1,0,4195_7778007_72070101,4195_72 -4195_72149,93,4195_1373,Kilcullen,300931119-00004-1,0,4195_7778007_72070101,4195_72 -4195_72149,94,4195_1374,Kilcullen,300941119-00005-1,0,4195_7778007_72070101,4195_72 -4195_72149,95,4195_1375,Kilcullen,301051119-00006-1,0,4195_7778007_72070101,4195_72 -4195_72149,92,4195_1377,Athy,300921147-00003-1,0,4195_7778007_72060101,4195_71 -4195_72149,93,4195_1378,Athy,300931147-00004-1,0,4195_7778007_72060101,4195_71 -4195_72149,94,4195_1379,Athy,300941147-00005-1,0,4195_7778007_72060101,4195_71 -4195_72149,95,4195_1380,Athy,301051147-00006-1,0,4195_7778007_72060101,4195_71 -4195_72149,96,4195_1385,Athy,301164105-00007-1,0,4195_7778007_72060101,4195_70 -4195_72149,92,4195_1387,Athy,300921183-00003-1,0,4195_7778007_72090101,4195_70 -4195_72149,93,4195_1388,Athy,300931183-00004-1,0,4195_7778007_72090101,4195_70 -4195_72149,94,4195_1389,Athy,300941183-00005-1,0,4195_7778007_72090101,4195_70 -4195_72146,92,4195_139,Edenderry,300921123-00003-1,0,4195_7778007_65060101,4195_1 -4195_72149,95,4195_1390,Athy,301051183-00006-1,0,4195_7778007_72090101,4195_70 -4195_72149,92,4195_1392,Dublin,300921018-00003-1,1,4195_7778007_72010101,4195_74 -4195_72149,93,4195_1393,Dublin,300931018-00004-1,1,4195_7778007_72010101,4195_74 -4195_72149,94,4195_1394,Dublin,300941018-00005-1,1,4195_7778007_72010101,4195_74 -4195_72149,95,4195_1395,Dublin,301051018-00006-1,1,4195_7778007_72010101,4195_74 -4195_72149,92,4195_1397,Dublin,300921048-00003-1,1,4195_7778007_72120101,4195_75 -4195_72149,93,4195_1398,Dublin,300931048-00004-1,1,4195_7778007_72120101,4195_75 -4195_72149,94,4195_1399,Dublin,300941048-00005-1,1,4195_7778007_72120101,4195_75 -4195_72146,94,4195_14,Edenderry,300941021-00005-1,0,4195_7778007_72040101,4195_1 -4195_72146,93,4195_140,Edenderry,300931123-00004-1,0,4195_7778007_65060101,4195_1 -4195_72149,95,4195_1400,Dublin,301051048-00006-1,1,4195_7778007_72120101,4195_75 -4195_72149,96,4195_1401,Naas,301164014-00007-1,1,4195_7778007_72060101,4195_76 -4195_72149,92,4195_1403,Naas,300921080-00003-1,1,4195_7778007_75050101,4195_73 -4195_72149,93,4195_1404,Naas,300931080-00004-1,1,4195_7778007_75050101,4195_73 -4195_72149,94,4195_1405,Naas,300941080-00005-1,1,4195_7778007_75050101,4195_73 -4195_72149,95,4195_1406,Naas,301051080-00006-1,1,4195_7778007_75050101,4195_73 -4195_72149,96,4195_1407,Naas,301164038-00007-1,1,4195_7778007_72060101,4195_73 -4195_72146,94,4195_141,Edenderry,300941123-00005-1,0,4195_7778007_65060101,4195_1 -4195_72149,92,4195_1413,Naas,300921112-00003-1,1,4195_7778007_72010101,4195_73 -4195_72149,93,4195_1414,Naas,300931112-00004-1,1,4195_7778007_72010101,4195_73 -4195_72149,94,4195_1415,Naas,300941112-00005-1,1,4195_7778007_72010101,4195_73 -4195_72149,95,4195_1416,Naas,301051112-00006-1,1,4195_7778007_72010101,4195_73 -4195_72149,96,4195_1417,Naas,301164070-00007-1,1,4195_7778007_72060101,4195_73 -4195_72146,95,4195_142,Edenderry,301051123-00006-1,0,4195_7778007_65060101,4195_1 -4195_72149,96,4195_1422,Naas,301164090-00007-1,1,4195_7778007_72060101,4195_73 -4195_72165,92,4195_1428,Dublin,300921136-00003-1,1,4195_7778007_72010101,4195_77 -4195_72165,93,4195_1429,Dublin,300931136-00004-1,1,4195_7778007_72010101,4195_77 -4195_72165,94,4195_1430,Dublin,300941136-00005-1,1,4195_7778007_72010101,4195_77 -4195_72165,95,4195_1431,Dublin,301051136-00006-1,1,4195_7778007_72010101,4195_77 -4195_72146,92,4195_144,Edenderry,300921127-00003-1,0,4195_7778007_55050101,4195_1 -4195_72146,93,4195_145,Edenderry,300931127-00004-1,0,4195_7778007_55050101,4195_1 -4195_72146,94,4195_146,Edenderry,300941127-00005-1,0,4195_7778007_55050101,4195_1 -4195_72146,95,4195_147,Edenderry,301051127-00006-1,0,4195_7778007_55050101,4195_1 -4195_72146,96,4195_148,Edenderry,301164089-00007-1,0,4195_7778007_72120101,4195_1 -4195_72146,95,4195_15,Edenderry,301051021-00006-1,0,4195_7778007_72040101,4195_1 -4195_72146,92,4195_150,Prosperous,300921131-00003-1,0,4195_7778007_72010101,4195_2 -4195_72146,93,4195_151,Prosperous,300931131-00004-1,0,4195_7778007_72010101,4195_2 -4195_72146,94,4195_152,Prosperous,300941131-00005-1,0,4195_7778007_72010101,4195_2 -4195_72146,95,4195_153,Prosperous,301051131-00006-1,0,4195_7778007_72010101,4195_2 -4195_72146,96,4195_158,Edenderry,301164091-00007-1,0,4195_7778007_55030101,4195_3 -4195_72146,96,4195_16,Edenderry,301164005-00007-1,0,4195_7778007_72030101,4195_1 -4195_72146,92,4195_160,Prosperous,300921139-00003-1,0,4195_7778007_75030101,4195_2 -4195_72146,93,4195_161,Prosperous,300931139-00004-1,0,4195_7778007_75030101,4195_2 -4195_72146,94,4195_162,Prosperous,300941139-00005-1,0,4195_7778007_75030101,4195_2 -4195_72146,95,4195_163,Prosperous,301051139-00006-1,0,4195_7778007_75030101,4195_2 -4195_72146,96,4195_164,Edenderry,301164097-00007-1,0,4195_7778007_65050101,4195_1 -4195_72146,92,4195_166,Edenderry,300921145-00003-1,0,4195_7778007_62010101,4195_1 -4195_72146,93,4195_167,Edenderry,300931145-00004-1,0,4195_7778007_62010101,4195_1 -4195_72146,94,4195_168,Edenderry,300941145-00005-1,0,4195_7778007_62010101,4195_1 -4195_72146,95,4195_169,Edenderry,301051145-00006-1,0,4195_7778007_62010101,4195_1 -4195_72146,96,4195_174,Edenderry,301164101-00007-1,0,4195_7778007_65040101,4195_3 -4195_72146,92,4195_176,Edenderry,300921153-00003-1,0,4195_7778007_55030101,4195_1 -4195_72146,93,4195_177,Edenderry,300931153-00004-1,0,4195_7778007_55030101,4195_1 -4195_72146,94,4195_178,Edenderry,300941153-00005-1,0,4195_7778007_55030101,4195_1 -4195_72146,95,4195_179,Edenderry,301051153-00006-1,0,4195_7778007_55030101,4195_1 -4195_72146,92,4195_18,Prosperous,300921029-00003-1,0,4195_7778007_72010101,4195_2 -4195_72146,92,4195_181,Prosperous,300921157-00003-1,0,4195_7778007_65030101,4195_2 -4195_72146,93,4195_182,Prosperous,300931157-00004-1,0,4195_7778007_65030101,4195_2 -4195_72146,94,4195_183,Prosperous,300941157-00005-1,0,4195_7778007_65030101,4195_2 -4195_72146,95,4195_184,Prosperous,301051157-00006-1,0,4195_7778007_65030101,4195_2 -4195_72146,93,4195_19,Prosperous,300931029-00004-1,0,4195_7778007_72010101,4195_2 -4195_72146,92,4195_190,Edenderry,300921163-00003-1,0,4195_7778007_65050101,4195_3 -4195_72146,93,4195_191,Edenderry,300931163-00004-1,0,4195_7778007_65050101,4195_3 -4195_72146,94,4195_192,Edenderry,300941163-00005-1,0,4195_7778007_65050101,4195_3 -4195_72146,95,4195_193,Edenderry,301051163-00006-1,0,4195_7778007_65050101,4195_3 -4195_72146,96,4195_194,Edenderry,301164109-00007-1,0,4195_7778007_65020101,4195_5 -4195_72146,92,4195_196,Edenderry,300921169-00003-1,0,4195_7778007_65010101,4195_1 -4195_72146,93,4195_197,Edenderry,300931169-00004-1,0,4195_7778007_65010101,4195_1 -4195_72146,94,4195_198,Edenderry,300941169-00005-1,0,4195_7778007_65010101,4195_1 -4195_72146,95,4195_199,Edenderry,301051169-00006-1,0,4195_7778007_65010101,4195_1 -4195_72146,92,4195_2,Prosperous,300921003-00003-1,0,4195_7778007_65020101,4195_2 -4195_72146,94,4195_20,Prosperous,300941029-00005-1,0,4195_7778007_72010101,4195_2 -4195_72146,96,4195_200,Edenderry,301164115-00007-1,0,4195_7778007_65060101,4195_3 -4195_72146,92,4195_206,Edenderry,300921175-00003-1,0,4195_7778007_62020101,4195_3 -4195_72146,93,4195_207,Edenderry,300931175-00004-1,0,4195_7778007_62020101,4195_3 -4195_72146,94,4195_208,Edenderry,300941175-00005-1,0,4195_7778007_62020101,4195_3 -4195_72146,95,4195_209,Edenderry,301051175-00006-1,0,4195_7778007_62020101,4195_3 -4195_72146,95,4195_21,Prosperous,301051029-00006-1,0,4195_7778007_72010101,4195_2 -4195_72146,96,4195_210,Edenderry,301164119-00007-1,0,4195_7778007_65030101,4195_5 -4195_72146,2,4195_211,Edenderry,300911181-00002-1,0,4195_7778007_75010101,4195_1 -4195_72146,92,4195_212,Edenderry,300921181-00003-1,0,4195_7778007_75010101,4195_1 -4195_72146,93,4195_213,Edenderry,300931181-00004-1,0,4195_7778007_75010101,4195_1 -4195_72146,94,4195_214,Edenderry,300941181-00005-1,0,4195_7778007_75010101,4195_1 -4195_72146,95,4195_215,Edenderry,301051181-00006-1,0,4195_7778007_75010101,4195_1 -4195_72146,96,4195_216,Edenderry,301164123-00007-1,0,4195_7778007_65050101,4195_3 -4195_72146,2,4195_221,Edenderry,300911187-00002-1,0,4195_7778007_55030101,4195_1 -4195_72146,92,4195_222,Edenderry,300921187-00003-1,0,4195_7778007_55030101,4195_1 -4195_72146,93,4195_223,Edenderry,300931187-00004-1,0,4195_7778007_55030101,4195_1 -4195_72146,94,4195_224,Edenderry,300941187-00005-1,0,4195_7778007_55030101,4195_1 -4195_72146,95,4195_225,Edenderry,301051187-00006-1,0,4195_7778007_55030101,4195_1 -4195_72146,96,4195_226,Edenderry,301164127-00007-1,0,4195_7778007_65040101,4195_3 -4195_72146,92,4195_228,Dublin,300921006-00003-1,1,4195_7778007_65030101,4195_7 -4195_72146,93,4195_229,Dublin,300931006-00004-1,1,4195_7778007_65030101,4195_7 -4195_72146,92,4195_23,Edenderry,300921033-00003-1,0,4195_7778007_72120101,4195_1 -4195_72146,94,4195_230,Dublin,300941006-00005-1,1,4195_7778007_65030101,4195_7 -4195_72146,95,4195_231,Dublin,301051006-00006-1,1,4195_7778007_65030101,4195_7 -4195_72146,92,4195_233,Dublin,300921008-00003-1,1,4195_7778007_65020101,4195_10 -4195_72146,93,4195_234,Dublin,300931008-00004-1,1,4195_7778007_65020101,4195_10 -4195_72146,94,4195_235,Dublin,300941008-00005-1,1,4195_7778007_65020101,4195_10 -4195_72146,95,4195_236,Dublin,301051008-00006-1,1,4195_7778007_65020101,4195_10 -4195_72146,96,4195_237,Dublin,301164004-00007-1,1,4195_7778007_65010101,4195_7 -4195_72146,92,4195_239,Dublin,300921040-00003-1,1,4195_7778007_55040101,4195_7 -4195_72146,93,4195_24,Edenderry,300931033-00004-1,0,4195_7778007_72120101,4195_1 -4195_72146,93,4195_240,Dublin,300931040-00004-1,1,4195_7778007_55040101,4195_7 -4195_72146,94,4195_241,Dublin,300941040-00005-1,1,4195_7778007_55040101,4195_7 -4195_72146,95,4195_242,Dublin,301051040-00006-1,1,4195_7778007_55040101,4195_7 -4195_72146,96,4195_247,Dublin,301164012-00007-1,1,4195_7778007_65020101,4195_9 -4195_72146,92,4195_249,Dublin,300921060-00003-1,1,4195_7778007_65060101,4195_7 -4195_72146,94,4195_25,Edenderry,300941033-00005-1,0,4195_7778007_72120101,4195_1 -4195_72146,93,4195_250,Dublin,300931060-00004-1,1,4195_7778007_65060101,4195_7 -4195_72146,94,4195_251,Dublin,300941060-00005-1,1,4195_7778007_65060101,4195_7 -4195_72146,95,4195_252,Dublin,301051060-00006-1,1,4195_7778007_65060101,4195_7 -4195_72146,92,4195_254,Dublin,300921062-00003-1,1,4195_7778007_65020101,4195_10 -4195_72146,93,4195_255,Dublin,300931062-00004-1,1,4195_7778007_65020101,4195_10 -4195_72146,94,4195_256,Dublin,300941062-00005-1,1,4195_7778007_65020101,4195_10 -4195_72146,95,4195_257,Dublin,301051062-00006-1,1,4195_7778007_65020101,4195_10 -4195_72146,92,4195_259,Dublin,300921066-00003-1,1,4195_7778007_65010101,4195_7 -4195_72146,95,4195_26,Edenderry,301051033-00006-1,0,4195_7778007_72120101,4195_1 -4195_72146,93,4195_260,Dublin,300931066-00004-1,1,4195_7778007_65010101,4195_7 -4195_72146,94,4195_261,Dublin,300941066-00005-1,1,4195_7778007_65010101,4195_7 -4195_72146,95,4195_262,Dublin,301051066-00006-1,1,4195_7778007_65010101,4195_7 -4195_72146,96,4195_263,Dublin,301164020-00007-1,1,4195_7778007_55010101,4195_7 -4195_72146,96,4195_268,Dublin,301164024-00007-1,1,4195_7778007_65030101,4195_10 -4195_72146,92,4195_270,Dublin,300921070-00003-1,1,4195_7778007_72060101,4195_8 -4195_72146,93,4195_271,Dublin,300931070-00004-1,1,4195_7778007_72060101,4195_8 -4195_72146,94,4195_272,Dublin,300941070-00005-1,1,4195_7778007_72060101,4195_8 -4195_72146,95,4195_273,Dublin,301051070-00006-1,1,4195_7778007_72060101,4195_8 -4195_72146,92,4195_275,Dublin,300921074-00003-1,1,4195_7778007_55050101,4195_7 -4195_72146,93,4195_276,Dublin,300931074-00004-1,1,4195_7778007_55050101,4195_7 -4195_72146,94,4195_277,Dublin,300941074-00005-1,1,4195_7778007_55050101,4195_7 -4195_72146,95,4195_278,Dublin,301051074-00006-1,1,4195_7778007_55050101,4195_7 -4195_72146,96,4195_279,Dublin,301164028-00007-1,1,4195_7778007_55020101,4195_7 -4195_72146,96,4195_280,Dublin,301164032-00007-1,1,4195_7778007_72110101,4195_10 -4195_72146,92,4195_286,Dublin,300921082-00003-1,1,4195_7778007_55010101,4195_8 -4195_72146,93,4195_287,Dublin,300931082-00004-1,1,4195_7778007_55010101,4195_8 -4195_72146,94,4195_288,Dublin,300941082-00005-1,1,4195_7778007_55010101,4195_8 -4195_72146,95,4195_289,Dublin,301051082-00006-1,1,4195_7778007_55010101,4195_8 -4195_72146,96,4195_290,Dublin,301164040-00007-1,1,4195_7778007_65050101,4195_7 -4195_72146,96,4195_291,Dublin,301164042-00007-1,1,4195_7778007_62010101,4195_8 -4195_72146,92,4195_293,Dublin,300921086-00003-1,1,4195_7778007_75020101,4195_7 -4195_72146,93,4195_294,Dublin,300931086-00004-1,1,4195_7778007_75020101,4195_7 -4195_72146,94,4195_295,Dublin,300941086-00005-1,1,4195_7778007_75020101,4195_7 -4195_72146,95,4195_296,Dublin,301051086-00006-1,1,4195_7778007_75020101,4195_7 -4195_72146,96,4195_297,Dublin,301164044-00007-1,1,4195_7778007_55030101,4195_9 -4195_72146,93,4195_3,Prosperous,300931003-00004-1,0,4195_7778007_65020101,4195_2 -4195_72146,92,4195_303,Dublin,300921088-00003-1,1,4195_7778007_65030101,4195_10 -4195_72146,93,4195_304,Dublin,300931088-00004-1,1,4195_7778007_65030101,4195_10 -4195_72146,94,4195_305,Dublin,300941088-00005-1,1,4195_7778007_65030101,4195_10 -4195_72146,95,4195_306,Dublin,301051088-00006-1,1,4195_7778007_65030101,4195_10 -4195_72146,92,4195_308,Dublin,300921094-00003-1,1,4195_7778007_72040101,4195_7 -4195_72146,93,4195_309,Dublin,300931094-00004-1,1,4195_7778007_72040101,4195_7 -4195_72146,96,4195_31,Edenderry,301164013-00007-1,0,4195_7778007_72080101,4195_3 -4195_72146,94,4195_310,Dublin,300941094-00005-1,1,4195_7778007_72040101,4195_7 -4195_72146,95,4195_311,Dublin,301051094-00006-1,1,4195_7778007_72040101,4195_7 -4195_72146,96,4195_312,Dublin,301164054-00007-1,1,4195_7778007_72030101,4195_9 -4195_72146,92,4195_318,Dublin,300921102-00003-1,1,4195_7778007_72120101,4195_7 -4195_72146,93,4195_319,Dublin,300931102-00004-1,1,4195_7778007_72120101,4195_7 -4195_72146,94,4195_320,Dublin,300941102-00005-1,1,4195_7778007_72120101,4195_7 -4195_72146,95,4195_321,Dublin,301051102-00006-1,1,4195_7778007_72120101,4195_7 -4195_72146,96,4195_322,Dublin,301164060-00007-1,1,4195_7778007_72080101,4195_9 -4195_72146,92,4195_328,Dublin,300921104-00003-1,1,4195_7778007_72060101,4195_10 -4195_72146,93,4195_329,Dublin,300931104-00004-1,1,4195_7778007_72060101,4195_10 -4195_72146,92,4195_33,Edenderry,300921045-00003-1,0,4195_7778007_75040101,4195_1 -4195_72146,94,4195_330,Dublin,300941104-00005-1,1,4195_7778007_72060101,4195_10 -4195_72146,95,4195_331,Dublin,301051104-00006-1,1,4195_7778007_72060101,4195_10 -4195_72146,96,4195_332,Dublin,301164064-00007-1,1,4195_7778007_72040101,4195_10 -4195_72146,92,4195_334,Dublin,300921114-00003-1,1,4195_7778007_65020101,4195_7 -4195_72146,93,4195_335,Dublin,300931114-00004-1,1,4195_7778007_65020101,4195_7 -4195_72146,94,4195_336,Dublin,300941114-00005-1,1,4195_7778007_65020101,4195_7 -4195_72146,95,4195_337,Dublin,301051114-00006-1,1,4195_7778007_65020101,4195_7 -4195_72146,96,4195_338,Dublin,301164072-00007-1,1,4195_7778007_72100101,4195_9 -4195_72146,93,4195_34,Edenderry,300931045-00004-1,0,4195_7778007_75040101,4195_1 -4195_72146,92,4195_344,Dublin,300921116-00003-1,1,4195_7778007_65030101,4195_10 -4195_72146,93,4195_345,Dublin,300931116-00004-1,1,4195_7778007_65030101,4195_10 -4195_72146,94,4195_346,Dublin,300941116-00005-1,1,4195_7778007_65030101,4195_10 -4195_72146,95,4195_347,Dublin,301051116-00006-1,1,4195_7778007_65030101,4195_10 -4195_72146,96,4195_348,Dublin,301164074-00007-1,1,4195_7778007_65030101,4195_10 -4195_72146,94,4195_35,Edenderry,300941045-00005-1,0,4195_7778007_75040101,4195_1 -4195_72146,92,4195_350,Dublin,300921124-00003-1,1,4195_7778007_72180101,4195_7 -4195_72146,93,4195_351,Dublin,300931124-00004-1,1,4195_7778007_72180101,4195_7 -4195_72146,94,4195_352,Dublin,300941124-00005-1,1,4195_7778007_72180101,4195_7 -4195_72146,95,4195_353,Dublin,301051124-00006-1,1,4195_7778007_72180101,4195_7 -4195_72146,96,4195_354,Dublin,301164082-00007-1,1,4195_7778007_62010101,4195_9 -4195_72146,96,4195_359,Dublin,301164084-00007-1,1,4195_7778007_72010101,4195_10 -4195_72146,95,4195_36,Edenderry,301051045-00006-1,0,4195_7778007_75040101,4195_1 -4195_72146,96,4195_360,Dublin,301164088-00007-1,1,4195_7778007_72120101,4195_7 -4195_72146,92,4195_362,Dublin,300921140-00003-1,1,4195_7778007_75010101,4195_7 -4195_72146,93,4195_363,Dublin,300931140-00004-1,1,4195_7778007_75010101,4195_7 -4195_72146,94,4195_364,Dublin,300941140-00005-1,1,4195_7778007_75010101,4195_7 -4195_72146,95,4195_365,Dublin,301051140-00006-1,1,4195_7778007_75010101,4195_7 -4195_72146,96,4195_366,Dublin,301164092-00007-1,1,4195_7778007_72130101,4195_7 -4195_72146,92,4195_372,Dublin,300921142-00003-1,1,4195_7778007_65060101,4195_10 -4195_72146,93,4195_373,Dublin,300931142-00004-1,1,4195_7778007_65060101,4195_10 -4195_72146,94,4195_374,Dublin,300941142-00005-1,1,4195_7778007_65060101,4195_10 -4195_72146,95,4195_375,Dublin,301051142-00006-1,1,4195_7778007_65060101,4195_10 -4195_72146,96,4195_376,Dublin,301164096-00007-1,1,4195_7778007_65050101,4195_10 -4195_72146,92,4195_378,Dublin,300921150-00003-1,1,4195_7778007_55030101,4195_7 -4195_72146,93,4195_379,Dublin,300931150-00004-1,1,4195_7778007_55030101,4195_7 -4195_72146,94,4195_380,Dublin,300941150-00005-1,1,4195_7778007_55030101,4195_7 -4195_72146,95,4195_381,Dublin,301051150-00006-1,1,4195_7778007_55030101,4195_7 -4195_72146,96,4195_382,Dublin,301164104-00007-1,1,4195_7778007_72150101,4195_7 -4195_72146,92,4195_388,Dublin,300921156-00003-1,1,4195_7778007_65050101,4195_7 -4195_72146,93,4195_389,Dublin,300931156-00004-1,1,4195_7778007_65050101,4195_7 -4195_72146,94,4195_390,Dublin,300941156-00005-1,1,4195_7778007_65050101,4195_7 -4195_72146,95,4195_391,Dublin,301051156-00006-1,1,4195_7778007_65050101,4195_7 -4195_72146,96,4195_392,Dublin,301164110-00007-1,1,4195_7778007_65020101,4195_9 -4195_72146,92,4195_398,Dublin,300921160-00003-1,1,4195_7778007_65030101,4195_8 -4195_72146,93,4195_399,Dublin,300931160-00004-1,1,4195_7778007_65030101,4195_8 -4195_72146,94,4195_4,Prosperous,300941003-00005-1,0,4195_7778007_65020101,4195_2 -4195_72146,94,4195_400,Dublin,300941160-00005-1,1,4195_7778007_65030101,4195_8 -4195_72146,95,4195_401,Dublin,301051160-00006-1,1,4195_7778007_65030101,4195_8 -4195_72146,96,4195_402,Dublin,301164114-00007-1,1,4195_7778007_65060101,4195_7 -4195_72146,92,4195_404,Dublin,300921166-00003-1,1,4195_7778007_65010101,4195_7 -4195_72146,93,4195_405,Dublin,300931166-00004-1,1,4195_7778007_65010101,4195_7 -4195_72146,94,4195_406,Dublin,300941166-00005-1,1,4195_7778007_65010101,4195_7 -4195_72146,95,4195_407,Dublin,301051166-00006-1,1,4195_7778007_65010101,4195_7 -4195_72146,96,4195_408,Dublin,301164118-00007-1,1,4195_7778007_65030101,4195_7 -4195_72146,96,4195_41,Edenderry,301164019-00007-1,0,4195_7778007_72100101,4195_3 -4195_72146,92,4195_414,Dublin,300921172-00003-1,1,4195_7778007_62020101,4195_9 -4195_72146,93,4195_415,Dublin,300931172-00004-1,1,4195_7778007_62020101,4195_9 -4195_72146,94,4195_416,Dublin,300941172-00005-1,1,4195_7778007_62020101,4195_9 -4195_72146,95,4195_417,Dublin,301051172-00006-1,1,4195_7778007_62020101,4195_9 -4195_72146,92,4195_419,Dublin,300921176-00003-1,1,4195_7778007_75010101,4195_7 -4195_72146,93,4195_420,Dublin,300931176-00004-1,1,4195_7778007_75010101,4195_7 -4195_72146,94,4195_421,Dublin,300941176-00005-1,1,4195_7778007_75010101,4195_7 -4195_72146,95,4195_422,Dublin,301051176-00006-1,1,4195_7778007_75010101,4195_7 -4195_72146,96,4195_423,Dublin,301164124-00007-1,1,4195_7778007_65050101,4195_7 -4195_72146,92,4195_429,Dublin,300921182-00003-1,1,4195_7778007_55030101,4195_7 -4195_72146,92,4195_43,Edenderry,300921047-00003-1,0,4195_7778007_65020101,4195_1 -4195_72146,93,4195_430,Dublin,300931182-00004-1,1,4195_7778007_55030101,4195_7 -4195_72146,94,4195_431,Dublin,300941182-00005-1,1,4195_7778007_55030101,4195_7 -4195_72146,95,4195_432,Dublin,301051182-00006-1,1,4195_7778007_55030101,4195_7 -4195_72146,96,4195_433,Dublin,301164130-00007-1,1,4195_7778007_65040101,4195_9 -4195_72150,92,4195_435,UCD Belfield,300921024-00003-1,1,4195_7778007_55010101,4195_11 -4195_72150,93,4195_436,UCD Belfield,300931024-00004-1,1,4195_7778007_55010101,4195_11 -4195_72150,94,4195_437,UCD Belfield,300941024-00005-1,1,4195_7778007_55010101,4195_11 -4195_72150,95,4195_438,UCD Belfield,301051024-00006-1,1,4195_7778007_55010101,4195_11 -4195_72146,93,4195_44,Edenderry,300931047-00004-1,0,4195_7778007_65020101,4195_1 -4195_72150,92,4195_440,Dublin,300921038-00003-1,1,4195_7778007_55020101,4195_12 -4195_72150,93,4195_441,Dublin,300931038-00004-1,1,4195_7778007_55020101,4195_12 -4195_72150,94,4195_442,Dublin,300941038-00005-1,1,4195_7778007_55020101,4195_12 -4195_72150,95,4195_443,Dublin,301051038-00006-1,1,4195_7778007_55020101,4195_12 -4195_72150,92,4195_445,Dublin,300921050-00003-1,1,4195_7778007_62020101,4195_12 -4195_72150,93,4195_446,Dublin,300931050-00004-1,1,4195_7778007_62020101,4195_12 -4195_72150,94,4195_447,Dublin,300941050-00005-1,1,4195_7778007_62020101,4195_12 -4195_72150,95,4195_448,Dublin,301051050-00006-1,1,4195_7778007_62020101,4195_12 -4195_72146,94,4195_45,Edenderry,300941047-00005-1,0,4195_7778007_65020101,4195_1 -4195_72151,92,4195_450,Newbridge,300921041-00003-1,0,4195_7778007_72050101,4195_13 -4195_72151,93,4195_451,Newbridge,300931041-00004-1,0,4195_7778007_72050101,4195_13 -4195_72151,94,4195_452,Newbridge,300941041-00005-1,0,4195_7778007_72050101,4195_13 -4195_72151,95,4195_453,Newbridge,301051041-00006-1,0,4195_7778007_72050101,4195_13 -4195_72151,92,4195_455,Newbridge,300921071-00003-1,0,4195_7778007_72070101,4195_13 -4195_72151,93,4195_456,Newbridge,300931071-00004-1,0,4195_7778007_72070101,4195_13 -4195_72151,94,4195_457,Newbridge,300941071-00005-1,0,4195_7778007_72070101,4195_13 -4195_72151,95,4195_458,Newbridge,301051071-00006-1,0,4195_7778007_72070101,4195_13 -4195_72146,95,4195_46,Edenderry,301051047-00006-1,0,4195_7778007_65020101,4195_1 -4195_72151,92,4195_460,Newbridge,300921091-00003-1,0,4195_7778007_72090101,4195_13 -4195_72151,93,4195_461,Newbridge,300931091-00004-1,0,4195_7778007_72090101,4195_13 -4195_72151,94,4195_462,Newbridge,300941091-00005-1,0,4195_7778007_72090101,4195_13 -4195_72151,95,4195_463,Newbridge,301051091-00006-1,0,4195_7778007_72090101,4195_13 -4195_72151,96,4195_464,Newbridge,301164067-00007-1,0,4195_7778007_72040101,4195_14 -4195_72151,96,4195_465,Newbridge,301164083-00007-1,0,4195_7778007_72110101,4195_13 -4195_72151,96,4195_466,Dublin,301164010-00007-1,1,4195_7778007_72040101,4195_15 -4195_72151,96,4195_467,Dublin,301164048-00007-1,1,4195_7778007_72020101,4195_15 -4195_72151,92,4195_469,Dublin,300921090-00003-1,1,4195_7778007_72070101,4195_15 -4195_72151,93,4195_470,Dublin,300931090-00004-1,1,4195_7778007_72070101,4195_15 -4195_72151,94,4195_471,Dublin,300941090-00005-1,1,4195_7778007_72070101,4195_15 -4195_72151,95,4195_472,Dublin,301051090-00006-1,1,4195_7778007_72070101,4195_15 -4195_72151,92,4195_474,Dublin,300921120-00003-1,1,4195_7778007_62020101,4195_15 -4195_72151,93,4195_475,Dublin,300931120-00004-1,1,4195_7778007_62020101,4195_15 -4195_72151,94,4195_476,Dublin,300941120-00005-1,1,4195_7778007_62020101,4195_15 -4195_72151,95,4195_477,Dublin,301051120-00006-1,1,4195_7778007_62020101,4195_15 -4195_72151,92,4195_479,Dublin,300921146-00003-1,1,4195_7778007_62010101,4195_15 -4195_72146,92,4195_48,Prosperous,300921051-00003-1,0,4195_7778007_72060101,4195_2 -4195_72151,93,4195_480,Dublin,300931146-00004-1,1,4195_7778007_62010101,4195_15 -4195_72151,94,4195_481,Dublin,300941146-00005-1,1,4195_7778007_62010101,4195_15 -4195_72151,95,4195_482,Dublin,301051146-00006-1,1,4195_7778007_62010101,4195_15 -4195_72152,92,4195_484,Tullamore,300921007-00003-1,0,4195_7778007_65040101,4195_16 -4195_72152,93,4195_485,Tullamore,300931007-00004-1,0,4195_7778007_65040101,4195_16 -4195_72152,94,4195_486,Tullamore,300941007-00005-1,0,4195_7778007_65040101,4195_16 -4195_72152,95,4195_487,Tullamore,301051007-00006-1,0,4195_7778007_65040101,4195_16 -4195_72152,92,4195_489,Tullamore,300921039-00003-1,0,4195_7778007_65040101,4195_16 -4195_72146,93,4195_49,Prosperous,300931051-00004-1,0,4195_7778007_72060101,4195_2 -4195_72152,93,4195_490,Tullamore,300931039-00004-1,0,4195_7778007_65040101,4195_16 -4195_72152,94,4195_491,Tullamore,300941039-00005-1,0,4195_7778007_65040101,4195_16 -4195_72152,95,4195_492,Tullamore,301051039-00006-1,0,4195_7778007_65040101,4195_16 -4195_72152,96,4195_497,Tullamore,301164023-00007-1,0,4195_7778007_65040101,4195_17 -4195_72152,92,4195_499,Tullamore,300921069-00003-1,0,4195_7778007_65040101,4195_16 -4195_72146,95,4195_5,Prosperous,301051003-00006-1,0,4195_7778007_65020101,4195_2 -4195_72146,94,4195_50,Prosperous,300941051-00005-1,0,4195_7778007_72060101,4195_2 -4195_72152,93,4195_500,Tullamore,300931069-00004-1,0,4195_7778007_65040101,4195_16 -4195_72152,94,4195_501,Tullamore,300941069-00005-1,0,4195_7778007_65040101,4195_16 -4195_72152,95,4195_502,Tullamore,301051069-00006-1,0,4195_7778007_65040101,4195_16 -4195_72152,96,4195_507,Tullamore,301164055-00007-1,0,4195_7778007_65060101,4195_17 -4195_72152,92,4195_509,Tullamore,300921103-00003-1,0,4195_7778007_65040101,4195_16 -4195_72146,95,4195_51,Prosperous,301051051-00006-1,0,4195_7778007_72060101,4195_2 -4195_72152,93,4195_510,Tullamore,300931103-00004-1,0,4195_7778007_65040101,4195_16 -4195_72152,94,4195_511,Tullamore,300941103-00005-1,0,4195_7778007_65040101,4195_16 -4195_72152,95,4195_512,Tullamore,301051103-00006-1,0,4195_7778007_65040101,4195_16 -4195_72152,96,4195_517,Tullamore,301164085-00007-1,0,4195_7778007_65010101,4195_16 -4195_72152,92,4195_519,Tullamore,300921159-00003-1,0,4195_7778007_65040101,4195_16 -4195_72146,96,4195_52,Prosperous,301164025-00007-1,0,4195_7778007_72040101,4195_6 -4195_72152,93,4195_520,Tullamore,300931159-00004-1,0,4195_7778007_65040101,4195_16 -4195_72152,94,4195_521,Tullamore,300941159-00005-1,0,4195_7778007_65040101,4195_16 -4195_72152,95,4195_522,Tullamore,301051159-00006-1,0,4195_7778007_65040101,4195_16 -4195_72152,96,4195_527,Tullamore,301164111-00007-1,0,4195_7778007_65010101,4195_16 -4195_72152,92,4195_529,Tullamore,300921179-00003-1,0,4195_7778007_65050101,4195_16 -4195_72146,96,4195_53,Edenderry,301164029-00007-1,0,4195_7778007_62010101,4195_1 -4195_72152,93,4195_530,Tullamore,300931179-00004-1,0,4195_7778007_65050101,4195_16 -4195_72152,94,4195_531,Tullamore,300941179-00005-1,0,4195_7778007_65050101,4195_16 -4195_72152,95,4195_532,Tullamore,301051179-00006-1,0,4195_7778007_65050101,4195_16 -4195_72152,92,4195_534,Enfield,300921004-00003-1,1,4195_7778007_65010101,4195_18 -4195_72152,93,4195_535,Enfield,300931004-00004-1,1,4195_7778007_65010101,4195_18 -4195_72152,94,4195_536,Enfield,300941004-00005-1,1,4195_7778007_65010101,4195_18 -4195_72152,95,4195_537,Enfield,301051004-00006-1,1,4195_7778007_65010101,4195_18 -4195_72152,92,4195_539,Enfield,300921068-00003-1,1,4195_7778007_65040101,4195_18 -4195_72152,93,4195_540,Enfield,300931068-00004-1,1,4195_7778007_65040101,4195_18 -4195_72152,94,4195_541,Enfield,300941068-00005-1,1,4195_7778007_65040101,4195_18 -4195_72152,95,4195_542,Enfield,301051068-00006-1,1,4195_7778007_65040101,4195_18 -4195_72152,96,4195_547,Enfield,301164030-00007-1,1,4195_7778007_65040101,4195_19 -4195_72152,92,4195_549,Enfield,300921098-00003-1,1,4195_7778007_65040101,4195_18 -4195_72152,93,4195_550,Enfield,300931098-00004-1,1,4195_7778007_65040101,4195_18 -4195_72152,94,4195_551,Enfield,300941098-00005-1,1,4195_7778007_65040101,4195_18 -4195_72152,95,4195_552,Enfield,301051098-00006-1,1,4195_7778007_65040101,4195_18 -4195_72152,96,4195_557,Enfield,301164062-00007-1,1,4195_7778007_65040101,4195_19 -4195_72152,92,4195_559,Enfield,300921126-00003-1,1,4195_7778007_65040101,4195_18 -4195_72152,93,4195_560,Enfield,300931126-00004-1,1,4195_7778007_65040101,4195_18 -4195_72152,94,4195_561,Enfield,300941126-00005-1,1,4195_7778007_65040101,4195_18 -4195_72152,95,4195_562,Enfield,301051126-00006-1,1,4195_7778007_65040101,4195_18 -4195_72152,96,4195_567,Enfield,301164094-00007-1,1,4195_7778007_65060101,4195_19 -4195_72152,92,4195_569,Enfield,300921158-00003-1,1,4195_7778007_65040101,4195_18 -4195_72152,93,4195_570,Enfield,300931158-00004-1,1,4195_7778007_65040101,4195_18 -4195_72152,94,4195_571,Enfield,300941158-00005-1,1,4195_7778007_65040101,4195_18 -4195_72152,95,4195_572,Enfield,301051158-00006-1,1,4195_7778007_65040101,4195_18 -4195_72152,96,4195_577,Enfield,301164116-00007-1,1,4195_7778007_65010101,4195_19 -4195_72152,92,4195_579,Enfield,300921178-00003-1,1,4195_7778007_65040101,4195_18 -4195_72152,93,4195_580,Enfield,300931178-00004-1,1,4195_7778007_65040101,4195_18 -4195_72152,94,4195_581,Enfield,300941178-00005-1,1,4195_7778007_65040101,4195_18 -4195_72152,95,4195_582,Enfield,301051178-00006-1,1,4195_7778007_65040101,4195_18 -4195_72153,92,4195_584,Tullamore,300921001-00003-1,0,4195_7778007_65010101,4195_20 -4195_72153,93,4195_585,Tullamore,300931001-00004-1,0,4195_7778007_65010101,4195_20 -4195_72153,94,4195_586,Tullamore,300941001-00005-1,0,4195_7778007_65010101,4195_20 -4195_72153,95,4195_587,Tullamore,301051001-00006-1,0,4195_7778007_65010101,4195_20 -4195_72146,92,4195_59,Edenderry,300921055-00003-1,0,4195_7778007_72180101,4195_3 -4195_72153,96,4195_592,Tullamore,301164009-00007-1,0,4195_7778007_65040101,4195_20 -4195_72153,96,4195_597,Edenderry,301164128-00007-1,1,4195_7778007_65010101,4195_22 -4195_72153,2,4195_598,Edenderry,300911188-00002-1,1,4195_7778007_65050101,4195_21 -4195_72153,92,4195_599,Edenderry,300921188-00003-1,1,4195_7778007_65050101,4195_21 -4195_72146,93,4195_60,Edenderry,300931055-00004-1,0,4195_7778007_72180101,4195_3 -4195_72153,93,4195_600,Edenderry,300931188-00004-1,1,4195_7778007_65050101,4195_21 -4195_72153,94,4195_601,Edenderry,300941188-00005-1,1,4195_7778007_65050101,4195_21 -4195_72153,95,4195_602,Edenderry,301051188-00006-1,1,4195_7778007_65050101,4195_21 -4195_72154,92,4195_604,Dublin,300921028-00003-1,1,4195_7778007_55030101,4195_23 -4195_72154,93,4195_605,Dublin,300931028-00004-1,1,4195_7778007_55030101,4195_23 -4195_72154,94,4195_606,Dublin,300941028-00005-1,1,4195_7778007_55030101,4195_23 -4195_72154,95,4195_607,Dublin,301051028-00006-1,1,4195_7778007_55030101,4195_23 -4195_72155,92,4195_609,Newbridge,300921143-00003-1,0,4195_7778007_72100101,4195_24 -4195_72146,94,4195_61,Edenderry,300941055-00005-1,0,4195_7778007_72180101,4195_3 -4195_72155,93,4195_610,Newbridge,300931143-00004-1,0,4195_7778007_72100101,4195_24 -4195_72155,94,4195_611,Newbridge,300941143-00005-1,0,4195_7778007_72100101,4195_24 -4195_72155,95,4195_612,Newbridge,301051143-00006-1,0,4195_7778007_72100101,4195_24 -4195_72155,92,4195_614,Dublin,300921020-00003-1,1,4195_7778007_72040101,4195_25 -4195_72155,93,4195_615,Dublin,300931020-00004-1,1,4195_7778007_72040101,4195_25 -4195_72155,94,4195_616,Dublin,300941020-00005-1,1,4195_7778007_72040101,4195_25 -4195_72155,95,4195_617,Dublin,301051020-00006-1,1,4195_7778007_72040101,4195_25 -4195_72156,92,4195_619,Edenderry,300921099-00003-1,0,4195_7778007_65010101,4195_26 -4195_72146,95,4195_62,Edenderry,301051055-00006-1,0,4195_7778007_72180101,4195_3 -4195_72156,93,4195_620,Edenderry,300931099-00004-1,0,4195_7778007_65010101,4195_26 -4195_72156,94,4195_621,Edenderry,300941099-00005-1,0,4195_7778007_65010101,4195_26 -4195_72156,95,4195_622,Edenderry,301051099-00006-1,0,4195_7778007_65010101,4195_26 -4195_72156,92,4195_624,Edenderry,300921111-00003-1,0,4195_7778007_55040101,4195_26 -4195_72156,93,4195_625,Edenderry,300931111-00004-1,0,4195_7778007_55040101,4195_26 -4195_72156,94,4195_626,Edenderry,300941111-00005-1,0,4195_7778007_55040101,4195_26 -4195_72156,95,4195_627,Edenderry,301051111-00006-1,0,4195_7778007_55040101,4195_26 -4195_72156,92,4195_629,Edenderry,300921135-00003-1,0,4195_7778007_75010101,4195_26 -4195_72146,96,4195_63,Edenderry,301164031-00007-1,0,4195_7778007_72120101,4195_5 -4195_72156,93,4195_630,Edenderry,300931135-00004-1,0,4195_7778007_75010101,4195_26 -4195_72156,94,4195_631,Edenderry,300941135-00005-1,0,4195_7778007_75010101,4195_26 -4195_72156,95,4195_632,Edenderry,301051135-00006-1,0,4195_7778007_75010101,4195_26 -4195_72156,92,4195_634,Dublin,300921014-00003-1,1,4195_7778007_62010101,4195_27 -4195_72156,93,4195_635,Dublin,300931014-00004-1,1,4195_7778007_62010101,4195_27 -4195_72156,94,4195_636,Dublin,300941014-00005-1,1,4195_7778007_62010101,4195_27 -4195_72156,95,4195_637,Dublin,301051014-00006-1,1,4195_7778007_62010101,4195_27 -4195_72156,92,4195_639,Dublin,300921054-00003-1,1,4195_7778007_65050101,4195_27 -4195_72156,93,4195_640,Dublin,300931054-00004-1,1,4195_7778007_65050101,4195_27 -4195_72156,94,4195_641,Dublin,300941054-00005-1,1,4195_7778007_65050101,4195_27 -4195_72156,95,4195_642,Dublin,301051054-00006-1,1,4195_7778007_65050101,4195_27 -4195_72147,92,4195_644,Toughers Ind Est,300921129-00003-1,0,4195_7778007_72130101,4195_28 -4195_72147,93,4195_645,Toughers Ind Est,300931129-00004-1,0,4195_7778007_72130101,4195_28 -4195_72147,94,4195_646,Toughers Ind Est,300941129-00005-1,0,4195_7778007_72130101,4195_28 -4195_72147,95,4195_647,Toughers Ind Est,301051129-00006-1,0,4195_7778007_72130101,4195_28 -4195_72147,92,4195_649,Newbridge,300921133-00003-1,0,4195_7778007_72150101,4195_29 -4195_72146,92,4195_65,Prosperous,300921059-00003-1,0,4195_7778007_65030101,4195_2 -4195_72147,93,4195_650,Newbridge,300931133-00004-1,0,4195_7778007_72150101,4195_29 -4195_72147,94,4195_651,Newbridge,300941133-00005-1,0,4195_7778007_72150101,4195_29 -4195_72147,95,4195_652,Newbridge,301051133-00006-1,0,4195_7778007_72150101,4195_29 -4195_72147,92,4195_654,UCD Belfield,300921036-00003-1,1,4195_7778007_72090101,4195_30 -4195_72147,93,4195_655,UCD Belfield,300931036-00004-1,1,4195_7778007_72090101,4195_30 -4195_72147,94,4195_656,UCD Belfield,300941036-00005-1,1,4195_7778007_72090101,4195_30 -4195_72147,95,4195_657,UCD Belfield,301051036-00006-1,1,4195_7778007_72090101,4195_30 -4195_72147,92,4195_659,Dublin,300921042-00003-1,1,4195_7778007_72110101,4195_31 -4195_72146,93,4195_66,Prosperous,300931059-00004-1,0,4195_7778007_65030101,4195_2 -4195_72147,93,4195_660,Dublin,300931042-00004-1,1,4195_7778007_72110101,4195_31 -4195_72147,94,4195_661,Dublin,300941042-00005-1,1,4195_7778007_72110101,4195_31 -4195_72147,95,4195_662,Dublin,301051042-00006-1,1,4195_7778007_72110101,4195_31 -4195_72148,92,4195_664,Rathangan,300921005-00003-1,0,4195_7778007_75010101,4195_34 -4195_72148,93,4195_665,Rathangan,300931005-00004-1,0,4195_7778007_75010101,4195_34 -4195_72148,94,4195_666,Rathangan,300941005-00005-1,0,4195_7778007_75010101,4195_34 -4195_72148,95,4195_667,Rathangan,301051005-00006-1,0,4195_7778007_75010101,4195_34 -4195_72148,92,4195_669,Kildare,300921009-00003-1,0,4195_7778007_75050101,4195_41 -4195_72146,94,4195_67,Prosperous,300941059-00005-1,0,4195_7778007_65030101,4195_2 -4195_72148,93,4195_670,Kildare,300931009-00004-1,0,4195_7778007_75050101,4195_41 -4195_72148,94,4195_671,Kildare,300941009-00005-1,0,4195_7778007_75050101,4195_41 -4195_72148,95,4195_672,Kildare,301051009-00006-1,0,4195_7778007_75050101,4195_41 -4195_72148,92,4195_674,Newbridge,300921011-00003-1,0,4195_7778007_72020101,4195_32 -4195_72148,93,4195_675,Newbridge,300931011-00004-1,0,4195_7778007_72020101,4195_32 -4195_72148,94,4195_676,Newbridge,300941011-00005-1,0,4195_7778007_72020101,4195_32 -4195_72148,95,4195_677,Newbridge,301051011-00006-1,0,4195_7778007_72020101,4195_32 -4195_72148,92,4195_679,Newbridge,300921015-00003-1,0,4195_7778007_65030101,4195_32 -4195_72146,95,4195_68,Prosperous,301051059-00006-1,0,4195_7778007_65030101,4195_2 -4195_72148,93,4195_680,Newbridge,300931015-00004-1,0,4195_7778007_65030101,4195_32 -4195_72148,94,4195_681,Newbridge,300941015-00005-1,0,4195_7778007_65030101,4195_32 -4195_72148,95,4195_682,Newbridge,301051015-00006-1,0,4195_7778007_65030101,4195_32 -4195_72148,96,4195_683,Kildare,301164001-00007-1,0,4195_7778007_72050101,4195_41 -4195_72148,92,4195_685,Newbridge,300921017-00003-1,0,4195_7778007_62010101,4195_32 -4195_72148,93,4195_686,Newbridge,300931017-00004-1,0,4195_7778007_62010101,4195_32 -4195_72148,94,4195_687,Newbridge,300941017-00005-1,0,4195_7778007_62010101,4195_32 -4195_72148,95,4195_688,Newbridge,301051017-00006-1,0,4195_7778007_62010101,4195_32 -4195_72148,96,4195_689,Newbridge,301164003-00007-1,0,4195_7778007_72020101,4195_32 -4195_72146,96,4195_69,Prosperous,301164035-00007-1,0,4195_7778007_65030101,4195_6 -4195_72148,92,4195_691,Newbridge,300921019-00003-1,0,4195_7778007_72030101,4195_32 -4195_72148,93,4195_692,Newbridge,300931019-00004-1,0,4195_7778007_72030101,4195_32 -4195_72148,94,4195_693,Newbridge,300941019-00005-1,0,4195_7778007_72030101,4195_32 -4195_72148,95,4195_694,Newbridge,301051019-00006-1,0,4195_7778007_72030101,4195_32 -4195_72148,92,4195_696,Newbridge,300921023-00003-1,0,4195_7778007_55020101,4195_32 -4195_72148,93,4195_697,Newbridge,300931023-00004-1,0,4195_7778007_55020101,4195_32 -4195_72148,94,4195_698,Newbridge,300941023-00005-1,0,4195_7778007_55020101,4195_32 -4195_72148,95,4195_699,Newbridge,301051023-00006-1,0,4195_7778007_55020101,4195_32 -4195_72146,92,4195_7,Edenderry,300921013-00003-1,0,4195_7778007_75020101,4195_1 -4195_72148,96,4195_700,Newbridge,301164007-00007-1,0,4195_7778007_65010101,4195_32 -4195_72148,92,4195_702,Newbridge,300921025-00003-1,0,4195_7778007_72080101,4195_32 -4195_72148,93,4195_703,Newbridge,300931025-00004-1,0,4195_7778007_72080101,4195_32 -4195_72148,94,4195_704,Newbridge,300941025-00005-1,0,4195_7778007_72080101,4195_32 -4195_72148,95,4195_705,Newbridge,301051025-00006-1,0,4195_7778007_72080101,4195_32 -4195_72148,92,4195_711,Newbridge,300921031-00003-1,0,4195_7778007_62020101,4195_32 -4195_72148,93,4195_712,Newbridge,300931031-00004-1,0,4195_7778007_62020101,4195_32 -4195_72148,94,4195_713,Newbridge,300941031-00005-1,0,4195_7778007_62020101,4195_32 -4195_72148,95,4195_714,Newbridge,301051031-00006-1,0,4195_7778007_62020101,4195_32 -4195_72148,92,4195_716,Newbridge,300921035-00003-1,0,4195_7778007_55040101,4195_32 -4195_72148,93,4195_717,Newbridge,300931035-00004-1,0,4195_7778007_55040101,4195_32 -4195_72148,94,4195_718,Newbridge,300941035-00005-1,0,4195_7778007_55040101,4195_32 -4195_72148,95,4195_719,Newbridge,301051035-00006-1,0,4195_7778007_55040101,4195_32 -4195_72148,96,4195_724,Newbridge,301164015-00007-1,0,4195_7778007_65020101,4195_37 -4195_72148,92,4195_726,Newbridge,300921037-00003-1,0,4195_7778007_72130101,4195_32 -4195_72148,93,4195_727,Newbridge,300931037-00004-1,0,4195_7778007_72130101,4195_32 -4195_72148,94,4195_728,Newbridge,300941037-00005-1,0,4195_7778007_72130101,4195_32 -4195_72148,95,4195_729,Newbridge,301051037-00006-1,0,4195_7778007_72130101,4195_32 -4195_72148,92,4195_731,Newbridge,300921043-00003-1,0,4195_7778007_65050101,4195_32 -4195_72148,93,4195_732,Newbridge,300931043-00004-1,0,4195_7778007_65050101,4195_32 -4195_72148,94,4195_733,Newbridge,300941043-00005-1,0,4195_7778007_65050101,4195_32 -4195_72148,95,4195_734,Newbridge,301051043-00006-1,0,4195_7778007_65050101,4195_32 -4195_72148,96,4195_735,Newbridge,301164017-00007-1,0,4195_7778007_72070101,4195_37 -4195_72148,92,4195_741,Newbridge,300921049-00003-1,0,4195_7778007_65010101,4195_37 -4195_72148,93,4195_742,Newbridge,300931049-00004-1,0,4195_7778007_65010101,4195_37 -4195_72148,94,4195_743,Newbridge,300941049-00005-1,0,4195_7778007_65010101,4195_37 -4195_72148,95,4195_744,Newbridge,301051049-00006-1,0,4195_7778007_65010101,4195_37 -4195_72148,96,4195_745,Newbridge,301164021-00007-1,0,4195_7778007_55010101,4195_42 -4195_72146,92,4195_75,Edenderry,300921065-00003-1,0,4195_7778007_75010101,4195_3 -4195_72148,92,4195_751,Newbridge,300921057-00003-1,0,4195_7778007_55050101,4195_37 -4195_72148,93,4195_752,Newbridge,300931057-00004-1,0,4195_7778007_55050101,4195_37 -4195_72148,94,4195_753,Newbridge,300941057-00005-1,0,4195_7778007_55050101,4195_37 -4195_72148,95,4195_754,Newbridge,301051057-00006-1,0,4195_7778007_55050101,4195_37 -4195_72148,96,4195_755,Newbridge,301164033-00007-1,0,4195_7778007_55020101,4195_42 -4195_72146,93,4195_76,Edenderry,300931065-00004-1,0,4195_7778007_75010101,4195_3 -4195_72148,92,4195_765,Rathangan,300921061-00003-1,0,4195_7778007_75030101,4195_40 -4195_72148,93,4195_766,Rathangan,300931061-00004-1,0,4195_7778007_75030101,4195_40 -4195_72148,94,4195_767,Rathangan,300941061-00005-1,0,4195_7778007_75030101,4195_40 -4195_72148,95,4195_768,Rathangan,301051061-00006-1,0,4195_7778007_75030101,4195_40 -4195_72148,96,4195_769,Rathangan,301164037-00007-1,0,4195_7778007_72050101,4195_44 -4195_72146,94,4195_77,Edenderry,300941065-00005-1,0,4195_7778007_75010101,4195_3 -4195_72148,92,4195_775,Newbridge,300921067-00003-1,0,4195_7778007_75020101,4195_37 -4195_72148,93,4195_776,Newbridge,300931067-00004-1,0,4195_7778007_75020101,4195_37 -4195_72148,94,4195_777,Newbridge,300941067-00005-1,0,4195_7778007_75020101,4195_37 -4195_72148,95,4195_778,Newbridge,301051067-00006-1,0,4195_7778007_75020101,4195_37 -4195_72148,96,4195_779,Newbridge,301164043-00007-1,0,4195_7778007_55030101,4195_42 -4195_72146,95,4195_78,Edenderry,301051065-00006-1,0,4195_7778007_75010101,4195_3 -4195_72148,96,4195_780,Newbridge,301164045-00007-1,0,4195_7778007_72160101,4195_32 -4195_72148,92,4195_786,Newbridge,300921073-00003-1,0,4195_7778007_62010101,4195_37 -4195_72148,93,4195_787,Newbridge,300931073-00004-1,0,4195_7778007_62010101,4195_37 -4195_72148,94,4195_788,Newbridge,300941073-00005-1,0,4195_7778007_62010101,4195_37 -4195_72148,95,4195_789,Newbridge,301051073-00006-1,0,4195_7778007_62010101,4195_37 -4195_72146,96,4195_79,Edenderry,301164041-00007-1,0,4195_7778007_72130101,4195_5 -4195_72148,96,4195_790,Newbridge,301164049-00007-1,0,4195_7778007_72020101,4195_42 -4195_72148,92,4195_796,Newbridge,300921077-00003-1,0,4195_7778007_72040101,4195_37 -4195_72148,93,4195_797,Newbridge,300931077-00004-1,0,4195_7778007_72040101,4195_37 -4195_72148,94,4195_798,Newbridge,300941077-00005-1,0,4195_7778007_72040101,4195_37 -4195_72148,95,4195_799,Newbridge,301051077-00006-1,0,4195_7778007_72040101,4195_37 -4195_72146,93,4195_8,Edenderry,300931013-00004-1,0,4195_7778007_75020101,4195_1 -4195_72146,96,4195_80,Prosperous,301164047-00007-1,0,4195_7778007_72150101,4195_2 -4195_72148,96,4195_804,Newbridge,301164059-00007-1,0,4195_7778007_72140101,4195_32 -4195_72148,92,4195_810,Newbridge,300921087-00003-1,0,4195_7778007_72120101,4195_37 -4195_72148,93,4195_811,Newbridge,300931087-00004-1,0,4195_7778007_72120101,4195_37 -4195_72148,94,4195_812,Newbridge,300941087-00005-1,0,4195_7778007_72120101,4195_37 -4195_72148,95,4195_813,Newbridge,301051087-00006-1,0,4195_7778007_72120101,4195_37 -4195_72148,96,4195_814,Newbridge,301164065-00007-1,0,4195_7778007_72080101,4195_42 -4195_72148,92,4195_816,Newbridge,300921089-00003-1,0,4195_7778007_72060101,4195_32 -4195_72148,93,4195_817,Newbridge,300931089-00004-1,0,4195_7778007_72060101,4195_32 -4195_72148,94,4195_818,Newbridge,300941089-00005-1,0,4195_7778007_72060101,4195_32 -4195_72148,95,4195_819,Newbridge,301051089-00006-1,0,4195_7778007_72060101,4195_32 -4195_72148,96,4195_824,Newbridge,301164069-00007-1,0,4195_7778007_72090101,4195_32 -4195_72148,92,4195_826,Rathangan,300921095-00003-1,0,4195_7778007_75040101,4195_34 -4195_72148,93,4195_827,Rathangan,300931095-00004-1,0,4195_7778007_75040101,4195_34 -4195_72148,94,4195_828,Rathangan,300941095-00005-1,0,4195_7778007_75040101,4195_34 -4195_72148,95,4195_829,Rathangan,301051095-00006-1,0,4195_7778007_75040101,4195_34 -4195_72148,96,4195_834,Newbridge,301164073-00007-1,0,4195_7778007_72100101,4195_37 -4195_72148,92,4195_840,Newbridge,300921105-00003-1,0,4195_7778007_55020101,4195_32 -4195_72148,93,4195_841,Newbridge,300931105-00004-1,0,4195_7778007_55020101,4195_32 -4195_72148,94,4195_842,Newbridge,300941105-00005-1,0,4195_7778007_55020101,4195_32 -4195_72148,95,4195_843,Newbridge,301051105-00006-1,0,4195_7778007_55020101,4195_32 -4195_72148,96,4195_844,Rathangan,301164077-00007-1,0,4195_7778007_72070101,4195_34 -4195_72148,92,4195_846,Newbridge,300921109-00003-1,0,4195_7778007_72160101,4195_32 -4195_72148,93,4195_847,Newbridge,300931109-00004-1,0,4195_7778007_72160101,4195_32 -4195_72148,94,4195_848,Newbridge,300941109-00005-1,0,4195_7778007_72160101,4195_32 -4195_72148,95,4195_849,Newbridge,301051109-00006-1,0,4195_7778007_72160101,4195_32 -4195_72148,96,4195_854,Newbridge,301164081-00007-1,0,4195_7778007_62010101,4195_37 -4195_72148,92,4195_856,Kildare,300921115-00003-1,0,4195_7778007_72140101,4195_35 -4195_72148,93,4195_857,Kildare,300931115-00004-1,0,4195_7778007_72140101,4195_35 -4195_72148,94,4195_858,Kildare,300941115-00005-1,0,4195_7778007_72140101,4195_35 -4195_72148,95,4195_859,Kildare,301051115-00006-1,0,4195_7778007_72140101,4195_35 -4195_72146,92,4195_86,Edenderry,300921075-00003-1,0,4195_7778007_55030101,4195_3 -4195_72148,92,4195_861,Newbridge,300921121-00003-1,0,4195_7778007_75020101,4195_39 -4195_72148,93,4195_862,Newbridge,300931121-00004-1,0,4195_7778007_75020101,4195_39 -4195_72148,94,4195_863,Newbridge,300941121-00005-1,0,4195_7778007_75020101,4195_39 -4195_72148,95,4195_864,Newbridge,301051121-00006-1,0,4195_7778007_75020101,4195_39 -4195_72146,93,4195_87,Edenderry,300931075-00004-1,0,4195_7778007_55030101,4195_3 -4195_72148,92,4195_870,Newbridge,300921125-00003-1,0,4195_7778007_72080101,4195_32 -4195_72148,93,4195_871,Newbridge,300931125-00004-1,0,4195_7778007_72080101,4195_32 -4195_72148,94,4195_872,Newbridge,300941125-00005-1,0,4195_7778007_72080101,4195_32 -4195_72148,95,4195_873,Newbridge,301051125-00006-1,0,4195_7778007_72080101,4195_32 -4195_72148,96,4195_874,Rathangan,301164087-00007-1,0,4195_7778007_72010101,4195_40 -4195_72148,96,4195_879,Newbridge,301164093-00007-1,0,4195_7778007_72130101,4195_37 -4195_72146,94,4195_88,Edenderry,300941075-00005-1,0,4195_7778007_55030101,4195_3 -4195_72148,92,4195_881,Rathangan,300921141-00003-1,0,4195_7778007_75050101,4195_34 -4195_72148,93,4195_882,Rathangan,300931141-00004-1,0,4195_7778007_75050101,4195_34 -4195_72148,94,4195_883,Rathangan,300941141-00005-1,0,4195_7778007_75050101,4195_34 -4195_72148,95,4195_884,Rathangan,301051141-00006-1,0,4195_7778007_75050101,4195_34 -4195_72148,96,4195_885,Newbridge,301164095-00007-1,0,4195_7778007_72160101,4195_32 -4195_72146,95,4195_89,Edenderry,301051075-00006-1,0,4195_7778007_55030101,4195_3 -4195_72148,96,4195_890,Kildare,301164099-00007-1,0,4195_7778007_72020101,4195_35 -4195_72148,92,4195_892,Newbridge,300921149-00003-1,0,4195_7778007_72050101,4195_32 -4195_72148,93,4195_893,Newbridge,300931149-00004-1,0,4195_7778007_72050101,4195_32 -4195_72148,94,4195_894,Newbridge,300941149-00005-1,0,4195_7778007_72050101,4195_32 -4195_72148,95,4195_895,Newbridge,301051149-00006-1,0,4195_7778007_72050101,4195_32 -4195_72146,94,4195_9,Edenderry,300941013-00005-1,0,4195_7778007_75020101,4195_1 -4195_72146,96,4195_90,Edenderry,301164051-00007-1,0,4195_7778007_65010101,4195_5 -4195_72148,96,4195_900,Newbridge,301164103-00007-1,0,4195_7778007_72150101,4195_37 -4195_72148,92,4195_902,Newbridge,300921155-00003-1,0,4195_7778007_72040101,4195_32 -4195_72148,93,4195_903,Newbridge,300931155-00004-1,0,4195_7778007_72040101,4195_32 -4195_72148,94,4195_904,Newbridge,300941155-00005-1,0,4195_7778007_72040101,4195_32 -4195_72148,95,4195_905,Newbridge,301051155-00006-1,0,4195_7778007_72040101,4195_32 -4195_72148,96,4195_910,Newbridge,301164107-00007-1,0,4195_7778007_72030101,4195_37 -4195_72148,92,4195_912,Newbridge,300921161-00003-1,0,4195_7778007_72170101,4195_32 -4195_72148,93,4195_913,Newbridge,300931161-00004-1,0,4195_7778007_72170101,4195_32 -4195_72148,94,4195_914,Newbridge,300941161-00005-1,0,4195_7778007_72170101,4195_32 -4195_72148,95,4195_915,Newbridge,301051161-00006-1,0,4195_7778007_72170101,4195_32 -4195_72148,92,4195_917,Newbridge,300921165-00003-1,0,4195_7778007_72090101,4195_32 -4195_72148,93,4195_918,Newbridge,300931165-00004-1,0,4195_7778007_72090101,4195_32 -4195_72148,94,4195_919,Newbridge,300941165-00005-1,0,4195_7778007_72090101,4195_32 -4195_72146,92,4195_92,Prosperous,300921079-00003-1,0,4195_7778007_75050101,4195_2 -4195_72148,95,4195_920,Newbridge,301051165-00006-1,0,4195_7778007_72090101,4195_32 -4195_72148,96,4195_925,Rathangan,301164113-00007-1,0,4195_7778007_72040101,4195_40 -4195_72148,92,4195_927,Rathangan,300921167-00003-1,0,4195_7778007_72030101,4195_34 -4195_72148,93,4195_928,Rathangan,300931167-00004-1,0,4195_7778007_72030101,4195_34 -4195_72148,94,4195_929,Rathangan,300941167-00005-1,0,4195_7778007_72030101,4195_34 -4195_72146,93,4195_93,Prosperous,300931079-00004-1,0,4195_7778007_75050101,4195_2 -4195_72148,95,4195_930,Rathangan,301051167-00006-1,0,4195_7778007_72030101,4195_34 -4195_72148,92,4195_936,Newbridge,300921171-00003-1,0,4195_7778007_72160101,4195_37 -4195_72148,93,4195_937,Newbridge,300931171-00004-1,0,4195_7778007_72160101,4195_37 -4195_72148,94,4195_938,Newbridge,300941171-00005-1,0,4195_7778007_72160101,4195_37 -4195_72148,95,4195_939,Newbridge,301051171-00006-1,0,4195_7778007_72160101,4195_37 -4195_72146,94,4195_94,Prosperous,300941079-00005-1,0,4195_7778007_75050101,4195_2 -4195_72148,96,4195_940,Newbridge,301164117-00007-1,0,4195_7778007_72070101,4195_42 -4195_72148,92,4195_946,Newbridge,300921177-00003-1,0,4195_7778007_72180101,4195_37 -4195_72148,93,4195_947,Newbridge,300931177-00004-1,0,4195_7778007_72180101,4195_37 -4195_72148,94,4195_948,Newbridge,300941177-00005-1,0,4195_7778007_72180101,4195_37 -4195_72148,95,4195_949,Newbridge,301051177-00006-1,0,4195_7778007_72180101,4195_37 -4195_72146,95,4195_95,Prosperous,301051079-00006-1,0,4195_7778007_75050101,4195_2 -4195_72148,96,4195_950,Newbridge,301164121-00007-1,0,4195_7778007_72010101,4195_42 -4195_72148,2,4195_955,Kildare,300911185-00002-1,0,4195_7778007_72050101,4195_38 -4195_72148,92,4195_956,Kildare,300921185-00003-1,0,4195_7778007_72050101,4195_38 -4195_72148,93,4195_957,Kildare,300931185-00004-1,0,4195_7778007_72050101,4195_38 -4195_72148,94,4195_958,Kildare,300941185-00005-1,0,4195_7778007_72050101,4195_38 -4195_72148,95,4195_959,Kildare,301051185-00006-1,0,4195_7778007_72050101,4195_38 -4195_72146,96,4195_96,Prosperous,301164057-00007-1,0,4195_7778007_65050101,4195_6 -4195_72148,96,4195_960,Kildare,301164125-00007-1,0,4195_7778007_72020101,4195_43 -4195_72148,2,4195_961,Newbridge,300911189-00002-1,0,4195_7778007_72040101,4195_32 -4195_72148,92,4195_962,Newbridge,300921189-00003-1,0,4195_7778007_72040101,4195_32 -4195_72148,93,4195_963,Newbridge,300931189-00004-1,0,4195_7778007_72040101,4195_32 -4195_72148,94,4195_964,Newbridge,300941189-00005-1,0,4195_7778007_72040101,4195_32 -4195_72148,95,4195_965,Newbridge,301051189-00006-1,0,4195_7778007_72040101,4195_32 -4195_72148,96,4195_966,Newbridge,301164129-00007-1,0,4195_7778007_72060101,4195_37 -4195_72148,2,4195_967,Newbridge,300911191-00002-1,0,4195_7778007_72160101,4195_32 -4195_72148,92,4195_968,Newbridge,300921191-00003-1,0,4195_7778007_72160101,4195_32 -4195_72148,93,4195_969,Newbridge,300931191-00004-1,0,4195_7778007_72160101,4195_32 -4195_72148,94,4195_970,Newbridge,300941191-00005-1,0,4195_7778007_72160101,4195_32 -4195_72148,95,4195_971,Newbridge,301051191-00006-1,0,4195_7778007_72160101,4195_32 -4195_72148,96,4195_972,Newbridge,301164131-00007-1,0,4195_7778007_72070101,4195_37 -4195_72148,92,4195_974,Dublin,300921002-00003-1,1,4195_7778007_75010101,4195_45 -4195_72148,93,4195_975,Dublin,300931002-00004-1,1,4195_7778007_75010101,4195_45 -4195_72148,94,4195_976,Dublin,300941002-00005-1,1,4195_7778007_75010101,4195_45 -4195_72148,95,4195_977,Dublin,301051002-00006-1,1,4195_7778007_75010101,4195_45 -4195_72148,92,4195_979,Dublin,300921010-00003-1,1,4195_7778007_72020101,4195_49 -4195_72148,93,4195_980,Dublin,300931010-00004-1,1,4195_7778007_72020101,4195_49 -4195_72148,94,4195_981,Dublin,300941010-00005-1,1,4195_7778007_72020101,4195_49 -4195_72148,95,4195_982,Dublin,301051010-00006-1,1,4195_7778007_72020101,4195_49 -4195_72148,92,4195_984,Dublin,300921012-00003-1,1,4195_7778007_75020101,4195_45 -4195_72148,93,4195_985,Dublin,300931012-00004-1,1,4195_7778007_75020101,4195_45 -4195_72148,94,4195_986,Dublin,300941012-00005-1,1,4195_7778007_75020101,4195_45 -4195_72148,95,4195_987,Dublin,301051012-00006-1,1,4195_7778007_75020101,4195_45 -4195_72148,92,4195_989,Dublin,300921016-00003-1,1,4195_7778007_72030101,4195_45 -4195_72148,93,4195_990,Dublin,300931016-00004-1,1,4195_7778007_72030101,4195_45 -4195_72148,94,4195_991,Dublin,300941016-00005-1,1,4195_7778007_72030101,4195_45 -4195_72148,95,4195_992,Dublin,301051016-00006-1,1,4195_7778007_72030101,4195_45 -4195_72148,92,4195_994,Dublin,300921022-00003-1,1,4195_7778007_72060101,4195_45 -4195_72148,93,4195_995,Dublin,300931022-00004-1,1,4195_7778007_72060101,4195_45 -4195_72148,94,4195_996,Dublin,300941022-00005-1,1,4195_7778007_72060101,4195_45 -4195_72148,95,4195_997,Dublin,301051022-00006-1,1,4195_7778007_72060101,4195_45 -4195_72148,92,4195_999,Dublin,300921032-00003-1,1,4195_7778007_72070101,4195_47 -4289_75960,96,4289_1,Sutton Station,104064018,0,4289_7778022_103101,4289_1 -4289_75960,94,4289_100,Sutton Station,103841506,0,4289_7778022_103108,4289_1 -4289_75959,95,4289_10000,Dun Laoghaire,103952306,0,4289_7778022_100100,4289_119 -4289_75959,96,4289_10006,Dun Laoghaire,104065082,0,4289_7778022_100110,4289_119 -4289_75959,92,4289_10012,Dun Laoghaire,103622366,0,4289_7778022_100120,4289_119 -4289_75959,93,4289_10013,Dun Laoghaire,103732366,0,4289_7778022_100120,4289_119 -4289_75959,94,4289_10014,Dun Laoghaire,103842366,0,4289_7778022_100120,4289_119 -4289_75959,95,4289_10015,Dun Laoghaire,103952366,0,4289_7778022_100120,4289_119 -4289_75960,96,4289_1002,Dublin Airport,104065623,1,4289_7778022_103502,4289_3 -4289_75959,96,4289_10021,Dun Laoghaire,104065132,0,4289_7778022_100080,4289_119 -4289_75959,92,4289_10027,Dun Laoghaire,103622426,0,4289_7778022_100130,4289_119 -4289_75959,93,4289_10028,Dun Laoghaire,103732426,0,4289_7778022_100130,4289_119 -4289_75959,94,4289_10029,Dun Laoghaire,103842426,0,4289_7778022_100130,4289_119 -4289_75959,95,4289_10030,Dun Laoghaire,103952426,0,4289_7778022_100130,4289_119 -4289_75959,96,4289_10036,Dun Laoghaire,104065186,0,4289_7778022_100120,4289_119 -4289_75959,92,4289_10042,Dun Laoghaire,103622486,0,4289_7778022_100110,4289_119 -4289_75959,93,4289_10043,Dun Laoghaire,103732486,0,4289_7778022_100110,4289_119 -4289_75959,94,4289_10044,Dun Laoghaire,103842486,0,4289_7778022_100110,4289_119 -4289_75959,95,4289_10045,Dun Laoghaire,103952486,0,4289_7778022_100110,4289_119 -4289_75959,96,4289_10051,Dun Laoghaire,104065250,0,4289_7778022_100090,4289_119 -4289_75959,92,4289_10057,Dun Laoghaire,103622548,0,4289_7778022_100100,4289_119 -4289_75959,93,4289_10058,Dun Laoghaire,103732548,0,4289_7778022_100100,4289_119 -4289_75959,94,4289_10059,Dun Laoghaire,103842548,0,4289_7778022_100100,4289_119 -4289_75959,95,4289_10060,Dun Laoghaire,103952548,0,4289_7778022_100100,4289_119 -4289_75959,96,4289_10066,Dun Laoghaire,104065306,0,4289_7778022_100010,4289_119 -4289_75959,92,4289_10072,Dun Laoghaire,103622600,0,4289_7778022_100120,4289_119 -4289_75959,93,4289_10073,Dun Laoghaire,103732600,0,4289_7778022_100120,4289_119 -4289_75959,94,4289_10074,Dun Laoghaire,103842600,0,4289_7778022_100120,4289_119 -4289_75959,95,4289_10075,Dun Laoghaire,103952600,0,4289_7778022_100120,4289_119 -4289_75960,92,4289_1008,Dublin Airport,103622953,1,4289_7778022_103501,4289_3 -4289_75959,96,4289_10081,Dun Laoghaire,104065338,0,4289_7778022_100080,4289_118 -4289_75959,96,4289_10086,Dun Laoghaire,104065384,0,4289_7778022_100090,4289_118 -4289_75960,93,4289_1009,Dublin Airport,103732953,1,4289_7778022_103501,4289_3 -4289_75959,92,4289_10092,Dun Laoghaire,103622684,0,4289_7778022_100130,4289_119 -4289_75959,93,4289_10093,Dun Laoghaire,103732684,0,4289_7778022_100130,4289_119 -4289_75959,94,4289_10094,Dun Laoghaire,103842684,0,4289_7778022_100130,4289_119 -4289_75959,95,4289_10095,Dun Laoghaire,103952684,0,4289_7778022_100130,4289_119 -4289_75960,95,4289_101,Sutton Station,103951506,0,4289_7778022_103108,4289_1 -4289_75960,94,4289_1010,Dublin Airport,103842953,1,4289_7778022_103501,4289_3 -4289_75959,96,4289_10101,Dun Laoghaire,104065426,0,4289_7778022_100120,4289_118 -4289_75959,92,4289_10107,Dun Laoghaire,103622730,0,4289_7778022_100060,4289_119 -4289_75959,93,4289_10108,Dun Laoghaire,103732730,0,4289_7778022_100060,4289_119 -4289_75959,94,4289_10109,Dun Laoghaire,103842730,0,4289_7778022_100060,4289_119 -4289_75960,95,4289_1011,Dublin Airport,103952953,1,4289_7778022_103501,4289_3 -4289_75959,95,4289_10110,Dun Laoghaire,103952730,0,4289_7778022_100060,4289_119 -4289_75959,96,4289_10116,Dun Laoghaire,104065476,0,4289_7778022_100050,4289_118 -4289_75959,92,4289_10122,Dun Laoghaire,103622786,0,4289_7778022_100090,4289_119 -4289_75959,93,4289_10123,Dun Laoghaire,103732786,0,4289_7778022_100090,4289_119 -4289_75959,94,4289_10124,Dun Laoghaire,103842786,0,4289_7778022_100090,4289_119 -4289_75959,95,4289_10125,Dun Laoghaire,103952786,0,4289_7778022_100090,4289_119 -4289_75959,96,4289_10131,Dun Laoghaire,104065518,0,4289_7778022_100090,4289_118 -4289_75959,92,4289_10137,Dun Laoghaire,103622830,0,4289_7778022_100040,4289_119 -4289_75959,93,4289_10138,Dun Laoghaire,103732830,0,4289_7778022_100040,4289_119 -4289_75959,94,4289_10139,Dun Laoghaire,103842830,0,4289_7778022_100040,4289_119 -4289_75959,95,4289_10140,Dun Laoghaire,103952830,0,4289_7778022_100040,4289_119 -4289_75959,96,4289_10146,Dun Laoghaire,104065568,0,4289_7778022_100100,4289_118 -4289_75959,92,4289_10152,Dun Laoghaire,103622884,0,4289_7778022_100060,4289_119 -4289_75959,93,4289_10153,Dun Laoghaire,103732884,0,4289_7778022_100060,4289_119 -4289_75959,94,4289_10154,Dun Laoghaire,103842884,0,4289_7778022_100060,4289_119 -4289_75959,95,4289_10155,Dun Laoghaire,103952884,0,4289_7778022_100060,4289_119 -4289_75959,96,4289_10161,Dun Laoghaire,104065606,0,4289_7778022_100050,4289_118 -4289_75959,92,4289_10167,Dun Laoghaire,103622928,0,4289_7778022_100090,4289_119 -4289_75959,93,4289_10168,Dun Laoghaire,103732928,0,4289_7778022_100090,4289_119 -4289_75959,94,4289_10169,Dun Laoghaire,103842928,0,4289_7778022_100090,4289_119 -4289_75960,96,4289_1017,Dublin Airport,104065673,1,4289_7778022_103503,4289_3 -4289_75959,95,4289_10170,Dun Laoghaire,103952928,0,4289_7778022_100090,4289_119 -4289_75959,92,4289_10177,Dun Laoghaire,103622976,0,4289_7778022_100040,4289_118 -4289_75959,93,4289_10178,Dun Laoghaire,103732976,0,4289_7778022_100040,4289_118 -4289_75959,94,4289_10179,Dun Laoghaire,103842976,0,4289_7778022_100040,4289_118 -4289_75959,95,4289_10180,Dun Laoghaire,103952976,0,4289_7778022_100040,4289_118 -4289_75959,96,4289_10186,Dun Laoghaire,104065654,0,4289_7778022_100090,4289_118 -4289_75959,92,4289_10192,Dun Laoghaire,103623024,0,4289_7778022_100060,4289_118 -4289_75959,93,4289_10193,Dun Laoghaire,103733024,0,4289_7778022_100060,4289_118 -4289_75959,94,4289_10194,Dun Laoghaire,103843024,0,4289_7778022_100060,4289_118 -4289_75959,95,4289_10195,Dun Laoghaire,103953024,0,4289_7778022_100060,4289_118 -4289_75959,96,4289_10201,Dun Laoghaire,104065692,0,4289_7778022_100100,4289_118 -4289_75959,92,4289_10207,Kilternan,103621107,1,4289_7778022_100110,4289_122 -4289_75959,93,4289_10208,Kilternan,103731107,1,4289_7778022_100110,4289_122 -4289_75959,94,4289_10209,Kilternan,103841107,1,4289_7778022_100110,4289_122 -4289_75959,95,4289_10210,Kilternan,103951107,1,4289_7778022_100110,4289_122 -4289_75959,92,4289_10217,Kilternan,103621149,1,4289_7778022_100100,4289_122 -4289_75959,93,4289_10218,Kilternan,103731149,1,4289_7778022_100100,4289_122 -4289_75959,94,4289_10219,Kilternan,103841149,1,4289_7778022_100100,4289_122 -4289_75959,95,4289_10220,Kilternan,103951149,1,4289_7778022_100100,4289_122 -4289_75959,92,4289_10227,Kilternan,103621175,1,4289_7778022_100120,4289_121 -4289_75959,93,4289_10228,Kilternan,103731175,1,4289_7778022_100120,4289_121 -4289_75959,94,4289_10229,Kilternan,103841175,1,4289_7778022_100120,4289_121 -4289_75960,92,4289_1023,Dublin Airport,103623005,1,4289_7778022_103107,4289_3 -4289_75959,95,4289_10230,Kilternan,103951175,1,4289_7778022_100120,4289_121 -4289_75959,96,4289_10236,Kilternan,104064105,1,4289_7778022_100030,4289_122 -4289_75959,96,4289_10237,Kilternan,104064151,1,4289_7778022_100070,4289_122 -4289_75959,92,4289_10239,Kilternan,103621263,1,4289_7778022_100130,4289_121 -4289_75960,93,4289_1024,Dublin Airport,103733005,1,4289_7778022_103107,4289_3 -4289_75959,93,4289_10240,Kilternan,103731263,1,4289_7778022_100130,4289_121 -4289_75959,94,4289_10241,Kilternan,103841263,1,4289_7778022_100130,4289_121 -4289_75959,95,4289_10242,Kilternan,103951263,1,4289_7778022_100130,4289_121 -4289_75959,96,4289_10248,Kilternan,104064195,1,4289_7778022_100080,4289_122 -4289_75960,94,4289_1025,Dublin Airport,103843005,1,4289_7778022_103107,4289_3 -4289_75959,92,4289_10250,Kilternan,103621347,1,4289_7778022_100110,4289_121 -4289_75959,93,4289_10251,Kilternan,103731347,1,4289_7778022_100110,4289_121 -4289_75959,94,4289_10252,Kilternan,103841347,1,4289_7778022_100110,4289_121 -4289_75959,95,4289_10253,Kilternan,103951347,1,4289_7778022_100110,4289_121 -4289_75959,96,4289_10259,Kilternan,104064241,1,4289_7778022_100030,4289_122 -4289_75960,95,4289_1026,Dublin Airport,103953005,1,4289_7778022_103107,4289_3 -4289_75959,92,4289_10261,Kilternan,103621429,1,4289_7778022_100100,4289_121 -4289_75959,93,4289_10262,Kilternan,103731429,1,4289_7778022_100100,4289_121 -4289_75959,94,4289_10263,Kilternan,103841429,1,4289_7778022_100100,4289_121 -4289_75959,95,4289_10264,Kilternan,103951429,1,4289_7778022_100100,4289_121 -4289_75959,96,4289_10270,Kilternan,104064287,1,4289_7778022_100070,4289_122 -4289_75959,92,4289_10276,Kilternan,103621479,1,4289_7778022_100120,4289_121 -4289_75959,93,4289_10277,Kilternan,103731479,1,4289_7778022_100120,4289_121 -4289_75959,94,4289_10278,Kilternan,103841479,1,4289_7778022_100120,4289_121 -4289_75959,95,4289_10279,Kilternan,103951479,1,4289_7778022_100120,4289_121 -4289_75959,96,4289_10285,Kilternan,104064337,1,4289_7778022_100110,4289_121 -4289_75959,92,4289_10291,Kilternan,103621539,1,4289_7778022_100130,4289_121 -4289_75959,93,4289_10292,Kilternan,103731539,1,4289_7778022_100130,4289_121 -4289_75959,94,4289_10293,Kilternan,103841539,1,4289_7778022_100130,4289_121 -4289_75959,95,4289_10294,Kilternan,103951539,1,4289_7778022_100130,4289_121 -4289_75959,96,4289_10300,Kilternan,104064391,1,4289_7778022_100080,4289_121 -4289_75959,92,4289_10306,Kilternan,103621595,1,4289_7778022_100110,4289_121 -4289_75959,93,4289_10307,Kilternan,103731595,1,4289_7778022_100110,4289_121 -4289_75959,94,4289_10308,Kilternan,103841595,1,4289_7778022_100110,4289_121 -4289_75959,95,4289_10309,Kilternan,103951595,1,4289_7778022_100110,4289_121 -4289_75959,96,4289_10315,Kilternan,104064445,1,4289_7778022_100030,4289_121 -4289_75960,96,4289_1032,Dublin Airport,104065707,1,4289_7778022_103101,4289_3 -4289_75959,92,4289_10321,Kilternan,103621651,1,4289_7778022_100100,4289_121 -4289_75959,93,4289_10322,Kilternan,103731651,1,4289_7778022_100100,4289_121 -4289_75959,94,4289_10323,Kilternan,103841651,1,4289_7778022_100100,4289_121 -4289_75959,95,4289_10324,Kilternan,103951651,1,4289_7778022_100100,4289_121 -4289_75959,96,4289_10330,Kilternan,104064499,1,4289_7778022_100070,4289_121 -4289_75959,92,4289_10336,Kilternan,103621707,1,4289_7778022_100120,4289_121 -4289_75959,93,4289_10337,Kilternan,103731707,1,4289_7778022_100120,4289_121 -4289_75959,94,4289_10338,Kilternan,103841707,1,4289_7778022_100120,4289_121 -4289_75959,95,4289_10339,Kilternan,103951707,1,4289_7778022_100120,4289_121 -4289_75959,96,4289_10345,Kilternan,104064551,1,4289_7778022_100110,4289_121 -4289_75959,92,4289_10351,Kilternan,103621763,1,4289_7778022_100130,4289_121 -4289_75959,93,4289_10352,Kilternan,103731763,1,4289_7778022_100130,4289_121 -4289_75959,94,4289_10353,Kilternan,103841763,1,4289_7778022_100130,4289_121 -4289_75959,95,4289_10354,Kilternan,103951763,1,4289_7778022_100130,4289_121 -4289_75959,96,4289_10360,Kilternan,104064605,1,4289_7778022_100080,4289_121 -4289_75959,96,4289_10365,Kilternan,104064659,1,4289_7778022_100030,4289_121 -4289_75960,2,4289_1037,Dublin Airport,103613037,1,4289_7778022_103502,4289_3 -4289_75959,92,4289_10371,Kilternan,103621879,1,4289_7778022_100100,4289_121 -4289_75959,93,4289_10372,Kilternan,103731879,1,4289_7778022_100100,4289_121 -4289_75959,94,4289_10373,Kilternan,103841879,1,4289_7778022_100100,4289_121 -4289_75959,95,4289_10374,Kilternan,103951879,1,4289_7778022_100100,4289_121 -4289_75960,92,4289_1038,Dublin Airport,103623037,1,4289_7778022_103502,4289_3 -4289_75959,96,4289_10380,Kilternan,104064711,1,4289_7778022_100070,4289_121 -4289_75959,92,4289_10386,Kilternan,103621937,1,4289_7778022_100120,4289_121 -4289_75959,93,4289_10387,Kilternan,103731937,1,4289_7778022_100120,4289_121 -4289_75959,94,4289_10388,Kilternan,103841937,1,4289_7778022_100120,4289_121 -4289_75959,95,4289_10389,Kilternan,103951937,1,4289_7778022_100120,4289_121 -4289_75960,93,4289_1039,Dublin Airport,103733037,1,4289_7778022_103502,4289_3 -4289_75959,96,4289_10395,Kilternan,104064765,1,4289_7778022_100110,4289_121 -4289_75960,94,4289_1040,Dublin Airport,103843037,1,4289_7778022_103502,4289_3 -4289_75959,92,4289_10401,Kilternan,103621995,1,4289_7778022_100130,4289_121 -4289_75959,93,4289_10402,Kilternan,103731995,1,4289_7778022_100130,4289_121 -4289_75959,94,4289_10403,Kilternan,103841995,1,4289_7778022_100130,4289_121 -4289_75959,95,4289_10404,Kilternan,103951995,1,4289_7778022_100130,4289_121 -4289_75960,95,4289_1041,Dublin Airport,103953037,1,4289_7778022_103502,4289_3 -4289_75959,96,4289_10410,Kilternan,104064819,1,4289_7778022_100080,4289_121 -4289_75959,92,4289_10416,Kilternan,103622051,1,4289_7778022_100110,4289_121 -4289_75959,93,4289_10417,Kilternan,103732051,1,4289_7778022_100110,4289_121 -4289_75959,94,4289_10418,Kilternan,103842051,1,4289_7778022_100110,4289_121 -4289_75959,95,4289_10419,Kilternan,103952051,1,4289_7778022_100110,4289_121 -4289_75959,96,4289_10425,Kilternan,104064871,1,4289_7778022_100120,4289_123 -4289_75959,92,4289_10431,Kilternan,103622115,1,4289_7778022_100100,4289_121 -4289_75959,93,4289_10432,Kilternan,103732115,1,4289_7778022_100100,4289_121 -4289_75959,94,4289_10433,Kilternan,103842115,1,4289_7778022_100100,4289_121 -4289_75959,95,4289_10434,Kilternan,103952115,1,4289_7778022_100100,4289_121 -4289_75959,96,4289_10440,Kilternan,104064925,1,4289_7778022_100070,4289_123 -4289_75959,92,4289_10446,Kilternan,103622175,1,4289_7778022_100120,4289_121 -4289_75959,93,4289_10447,Kilternan,103732175,1,4289_7778022_100120,4289_121 -4289_75959,94,4289_10448,Kilternan,103842175,1,4289_7778022_100120,4289_121 -4289_75959,95,4289_10449,Kilternan,103952175,1,4289_7778022_100120,4289_121 -4289_75959,96,4289_10455,Kilternan,104064979,1,4289_7778022_100110,4289_123 -4289_75959,92,4289_10461,Kilternan,103622267,1,4289_7778022_100130,4289_121 -4289_75959,93,4289_10462,Kilternan,103732267,1,4289_7778022_100130,4289_121 -4289_75959,94,4289_10463,Kilternan,103842267,1,4289_7778022_100130,4289_121 -4289_75959,95,4289_10464,Kilternan,103952267,1,4289_7778022_100130,4289_121 -4289_75960,96,4289_1047,Dublin Airport,104065743,1,4289_7778022_103501,4289_3 -4289_75959,96,4289_10470,Kilternan,104065031,1,4289_7778022_100080,4289_123 -4289_75959,92,4289_10476,Kilternan,103622339,1,4289_7778022_100110,4289_121 -4289_75959,93,4289_10477,Kilternan,103732339,1,4289_7778022_100110,4289_121 -4289_75959,94,4289_10478,Kilternan,103842339,1,4289_7778022_100110,4289_121 -4289_75959,95,4289_10479,Kilternan,103952339,1,4289_7778022_100110,4289_121 -4289_75959,96,4289_10485,Kilternan,104065085,1,4289_7778022_100120,4289_123 -4289_75959,92,4289_10491,Kilternan,103622399,1,4289_7778022_100100,4289_121 -4289_75959,93,4289_10492,Kilternan,103732399,1,4289_7778022_100100,4289_121 -4289_75959,94,4289_10493,Kilternan,103842399,1,4289_7778022_100100,4289_121 -4289_75959,95,4289_10494,Kilternan,103952399,1,4289_7778022_100100,4289_121 -4289_75959,96,4289_10500,Kilternan,104065139,1,4289_7778022_100090,4289_123 -4289_75959,92,4289_10506,Kilternan,103622459,1,4289_7778022_100120,4289_121 -4289_75959,93,4289_10507,Kilternan,103732459,1,4289_7778022_100120,4289_121 -4289_75959,94,4289_10508,Kilternan,103842459,1,4289_7778022_100120,4289_121 -4289_75959,95,4289_10509,Kilternan,103952459,1,4289_7778022_100120,4289_121 -4289_75959,96,4289_10515,Kilternan,104065187,1,4289_7778022_100010,4289_123 -4289_75960,2,4289_1052,Dublin Airport,103613077,1,4289_7778022_103503,4289_3 -4289_75959,92,4289_10521,Kilternan,103622517,1,4289_7778022_100130,4289_121 -4289_75959,93,4289_10522,Kilternan,103732517,1,4289_7778022_100130,4289_121 -4289_75959,94,4289_10523,Kilternan,103842517,1,4289_7778022_100130,4289_121 -4289_75959,95,4289_10524,Kilternan,103952517,1,4289_7778022_100130,4289_121 -4289_75960,92,4289_1053,Dublin Airport,103623077,1,4289_7778022_103503,4289_3 -4289_75959,96,4289_10530,Kilternan,104065243,1,4289_7778022_100080,4289_123 -4289_75959,92,4289_10536,Kilternan,103622575,1,4289_7778022_100110,4289_121 -4289_75959,93,4289_10537,Kilternan,103732575,1,4289_7778022_100110,4289_121 -4289_75959,94,4289_10538,Kilternan,103842575,1,4289_7778022_100110,4289_121 -4289_75959,95,4289_10539,Kilternan,103952575,1,4289_7778022_100110,4289_121 -4289_75960,93,4289_1054,Dublin Airport,103733077,1,4289_7778022_103503,4289_3 -4289_75959,96,4289_10545,Kilternan,104065297,1,4289_7778022_100120,4289_123 -4289_75960,94,4289_1055,Dublin Airport,103843077,1,4289_7778022_103503,4289_3 -4289_75959,92,4289_10551,Kilternan,103622619,1,4289_7778022_100060,4289_121 -4289_75959,93,4289_10552,Kilternan,103732619,1,4289_7778022_100060,4289_121 -4289_75959,94,4289_10553,Kilternan,103842619,1,4289_7778022_100060,4289_121 -4289_75959,95,4289_10554,Kilternan,103952619,1,4289_7778022_100060,4289_121 -4289_75960,95,4289_1056,Dublin Airport,103953077,1,4289_7778022_103503,4289_3 -4289_75959,96,4289_10560,Kilternan,104065347,1,4289_7778022_100050,4289_121 -4289_75959,92,4289_10566,Kilternan,103622673,1,4289_7778022_100090,4289_121 -4289_75959,93,4289_10567,Kilternan,103732673,1,4289_7778022_100090,4289_121 -4289_75959,94,4289_10568,Kilternan,103842673,1,4289_7778022_100090,4289_121 -4289_75959,95,4289_10569,Kilternan,103952673,1,4289_7778022_100090,4289_121 -4289_75959,96,4289_10575,Kilternan,104065395,1,4289_7778022_100010,4289_121 -4289_75959,92,4289_10581,Kilternan,103622725,1,4289_7778022_100040,4289_121 -4289_75959,93,4289_10582,Kilternan,103732725,1,4289_7778022_100040,4289_121 -4289_75959,94,4289_10583,Kilternan,103842725,1,4289_7778022_100040,4289_121 -4289_75959,95,4289_10584,Kilternan,103952725,1,4289_7778022_100040,4289_121 -4289_75959,96,4289_10590,Kilternan,104065441,1,4289_7778022_100090,4289_122 -4289_75959,92,4289_10596,Kilternan,103622793,1,4289_7778022_100060,4289_121 -4289_75959,93,4289_10597,Kilternan,103732793,1,4289_7778022_100060,4289_121 -4289_75959,94,4289_10598,Kilternan,103842793,1,4289_7778022_100060,4289_121 -4289_75959,95,4289_10599,Kilternan,103952793,1,4289_7778022_100060,4289_121 -4289_75959,96,4289_10605,Kilternan,104065489,1,4289_7778022_100100,4289_122 -4289_75959,92,4289_10611,Kilternan,103622843,1,4289_7778022_100090,4289_121 -4289_75959,93,4289_10612,Kilternan,103732843,1,4289_7778022_100090,4289_121 -4289_75959,94,4289_10613,Kilternan,103842843,1,4289_7778022_100090,4289_121 -4289_75959,95,4289_10614,Kilternan,103952843,1,4289_7778022_100090,4289_121 -4289_75987,95,4289_1062,Swords,103951895,1,4289_7778022_109505,4289_6 -4289_75959,96,4289_10620,Kilternan,104065531,1,4289_7778022_100050,4289_122 -4289_75959,92,4289_10626,Kilternan,103622895,1,4289_7778022_100040,4289_121 -4289_75959,93,4289_10627,Kilternan,103732895,1,4289_7778022_100040,4289_121 -4289_75959,94,4289_10628,Kilternan,103842895,1,4289_7778022_100040,4289_121 -4289_75959,95,4289_10629,Kilternan,103952895,1,4289_7778022_100040,4289_121 -4289_75959,96,4289_10635,Kilternan,104065581,1,4289_7778022_100090,4289_122 -4289_75987,92,4289_1064,Swords,103622199,1,4289_7778022_109103,4289_6 -4289_75959,92,4289_10641,Kilternan,103622941,1,4289_7778022_100060,4289_122 -4289_75959,93,4289_10642,Kilternan,103732941,1,4289_7778022_100060,4289_122 -4289_75959,94,4289_10643,Kilternan,103842941,1,4289_7778022_100060,4289_122 -4289_75959,95,4289_10644,Kilternan,103952941,1,4289_7778022_100060,4289_122 -4289_75987,93,4289_1065,Swords,103732201,1,4289_7778022_109306,4289_7 -4289_75959,96,4289_10650,Kilternan,104065621,1,4289_7778022_100100,4289_122 -4289_75959,92,4289_10656,Kilternan,103622993,1,4289_7778022_100090,4289_122 -4289_75959,93,4289_10657,Kilternan,103732993,1,4289_7778022_100090,4289_122 -4289_75959,94,4289_10658,Kilternan,103842993,1,4289_7778022_100090,4289_122 -4289_75959,95,4289_10659,Kilternan,103952993,1,4289_7778022_100090,4289_122 -4289_75987,94,4289_1066,Swords,103842203,1,4289_7778022_109404,4289_6 -4289_75959,96,4289_10665,Kilternan,104065669,1,4289_7778022_100060,4289_122 -4289_75959,92,4289_10671,Kilternan,103623033,1,4289_7778022_100040,4289_122 -4289_75959,93,4289_10672,Kilternan,103733033,1,4289_7778022_100040,4289_122 -4289_75959,94,4289_10673,Kilternan,103843033,1,4289_7778022_100040,4289_122 -4289_75959,95,4289_10674,Kilternan,103953033,1,4289_7778022_100040,4289_122 -4289_75988,92,4289_1068,Sutton Park School,103621260,0,4289_7778022_109104,4289_8 -4289_75959,96,4289_10680,Kilternan,104065705,1,4289_7778022_100090,4289_122 -4289_75959,2,4289_10685,Kilternan,103613069,1,4289_7778022_100060,4289_122 -4289_75959,92,4289_10686,Kilternan,103623069,1,4289_7778022_100060,4289_122 -4289_75959,93,4289_10687,Kilternan,103733069,1,4289_7778022_100060,4289_122 -4289_75959,94,4289_10688,Kilternan,103843069,1,4289_7778022_100060,4289_122 -4289_75959,95,4289_10689,Kilternan,103953069,1,4289_7778022_100060,4289_122 -4289_75988,93,4289_1069,Sutton Park School,103731262,0,4289_7778022_109304,4289_8 -4289_75959,96,4289_10695,Kilternan,104065741,1,4289_7778022_100100,4289_122 -4289_75960,96,4289_107,Sutton Station,104064326,0,4289_7778022_103501,4289_2 -4289_75988,94,4289_1070,Sutton Park School,103841264,0,4289_7778022_109404,4289_8 -4289_75983,92,4289_10701,Dun Laoghaire,103621624,0,4289_7778022_100120,4289_124 -4289_75983,93,4289_10702,Dun Laoghaire,103731624,0,4289_7778022_100120,4289_124 -4289_75983,94,4289_10703,Dun Laoghaire,103841624,0,4289_7778022_100120,4289_124 -4289_75983,95,4289_10704,Dun Laoghaire,103951624,0,4289_7778022_100120,4289_124 -4289_75988,95,4289_1071,Sutton Park School,103951266,0,4289_7778022_109504,4289_8 -4289_75983,92,4289_10711,Kilternan,103621819,1,4289_7778022_100110,4289_125 -4289_75983,93,4289_10712,Kilternan,103731819,1,4289_7778022_100110,4289_125 -4289_75983,94,4289_10713,Kilternan,103841819,1,4289_7778022_100110,4289_125 -4289_75983,95,4289_10714,Kilternan,103951819,1,4289_7778022_100110,4289_125 -4289_75988,93,4289_1072,Balgriffin Cottages,103732079,1,4289_7778022_109308,4289_9 -4289_75984,96,4289_10720,Adamstown Station,104064020,0,4289_7778022_104230,4289_126 -4289_75984,92,4289_10722,Adamstown Station,103621034,0,4289_7778022_104220,4289_126 -4289_75984,93,4289_10723,Adamstown Station,103731034,0,4289_7778022_104220,4289_126 -4289_75984,94,4289_10724,Adamstown Station,103841034,0,4289_7778022_104220,4289_126 -4289_75984,95,4289_10725,Adamstown Station,103951034,0,4289_7778022_104220,4289_126 -4289_75988,95,4289_1073,Balgriffin Cottages,103952081,1,4289_7778022_109503,4289_9 -4289_75984,96,4289_10731,Adamstown Station,104064086,0,4289_7778022_104220,4289_126 -4289_75984,92,4289_10733,Adamstown Station,103621154,0,4289_7778022_104240,4289_126 -4289_75984,93,4289_10734,Adamstown Station,103731154,0,4289_7778022_104240,4289_126 -4289_75984,94,4289_10735,Adamstown Station,103841154,0,4289_7778022_104240,4289_126 -4289_75984,95,4289_10736,Adamstown Station,103951154,0,4289_7778022_104240,4289_126 -4289_75984,96,4289_10742,Adamstown Station,104064178,0,4289_7778022_104240,4289_126 -4289_75984,92,4289_10748,Adamstown Station,103621320,0,4289_7778022_104210,4289_126 -4289_75984,93,4289_10749,Adamstown Station,103731320,0,4289_7778022_104210,4289_126 -4289_75988,92,4289_1075,Balgriffin Cottages,103622187,1,4289_7778022_109101,4289_9 -4289_75984,94,4289_10750,Adamstown Station,103841320,0,4289_7778022_104210,4289_126 -4289_75984,95,4289_10751,Adamstown Station,103951320,0,4289_7778022_104210,4289_126 -4289_75984,96,4289_10757,Adamstown Station,104064268,0,4289_7778022_104230,4289_126 -4289_75988,94,4289_1076,Balgriffin Cottages,103842189,1,4289_7778022_109401,4289_9 -4289_75984,92,4289_10763,Adamstown Station,103621448,0,4289_7778022_104240,4289_126 -4289_75984,93,4289_10764,Adamstown Station,103731448,0,4289_7778022_104240,4289_126 -4289_75984,94,4289_10765,Adamstown Station,103841448,0,4289_7778022_104240,4289_126 -4289_75984,95,4289_10766,Adamstown Station,103951448,0,4289_7778022_104240,4289_126 -4289_75984,96,4289_10772,Adamstown Station,104064362,0,4289_7778022_104220,4289_126 -4289_75984,92,4289_10778,Adamstown Station,103621558,0,4289_7778022_104210,4289_126 -4289_75984,93,4289_10779,Adamstown Station,103731558,0,4289_7778022_104210,4289_126 -4289_75989,92,4289_1078,Redfern Avenue,103621272,0,4289_7778022_109102,4289_10 -4289_75984,94,4289_10780,Adamstown Station,103841558,0,4289_7778022_104210,4289_126 -4289_75984,95,4289_10781,Adamstown Station,103951558,0,4289_7778022_104210,4289_126 -4289_75984,96,4289_10787,Adamstown Station,104064470,0,4289_7778022_104240,4289_126 -4289_75989,93,4289_1079,Redfern Avenue,103731274,0,4289_7778022_109302,4289_10 -4289_75984,92,4289_10793,Adamstown Station,103621668,0,4289_7778022_104240,4289_126 -4289_75984,93,4289_10794,Adamstown Station,103731668,0,4289_7778022_104240,4289_126 -4289_75984,94,4289_10795,Adamstown Station,103841668,0,4289_7778022_104240,4289_126 -4289_75984,95,4289_10796,Adamstown Station,103951668,0,4289_7778022_104240,4289_126 -4289_75989,94,4289_1080,Redfern Avenue,103841276,0,4289_7778022_109403,4289_10 -4289_75984,96,4289_10802,Adamstown Station,104064578,0,4289_7778022_104230,4289_126 -4289_75984,92,4289_10808,Adamstown Station,103621778,0,4289_7778022_104210,4289_126 -4289_75984,93,4289_10809,Adamstown Station,103731778,0,4289_7778022_104210,4289_126 -4289_75989,95,4289_1081,Redfern Avenue,103951278,0,4289_7778022_109502,4289_10 -4289_75984,94,4289_10810,Adamstown Station,103841778,0,4289_7778022_104210,4289_126 -4289_75984,95,4289_10811,Adamstown Station,103951778,0,4289_7778022_104210,4289_126 -4289_75984,96,4289_10817,Adamstown Station,104064682,0,4289_7778022_104220,4289_126 -4289_75984,92,4289_10823,Adamstown Station,103621892,0,4289_7778022_104240,4289_126 -4289_75984,93,4289_10824,Adamstown Station,103731892,0,4289_7778022_104240,4289_126 -4289_75984,94,4289_10825,Adamstown Station,103841892,0,4289_7778022_104240,4289_126 -4289_75984,95,4289_10826,Adamstown Station,103951892,0,4289_7778022_104240,4289_126 -4289_75989,92,4289_1083,Redfern Avenue,103621296,0,4289_7778022_109105,4289_10 -4289_75984,96,4289_10832,Adamstown Station,104064790,0,4289_7778022_104240,4289_126 -4289_75984,92,4289_10838,Adamstown Station,103622006,0,4289_7778022_104210,4289_126 -4289_75984,93,4289_10839,Adamstown Station,103732006,0,4289_7778022_104210,4289_126 -4289_75989,93,4289_1084,Redfern Avenue,103731298,0,4289_7778022_109305,4289_10 -4289_75984,94,4289_10840,Adamstown Station,103842006,0,4289_7778022_104210,4289_126 -4289_75984,95,4289_10841,Adamstown Station,103952006,0,4289_7778022_104210,4289_126 -4289_75984,96,4289_10847,Adamstown Station,104064896,0,4289_7778022_104230,4289_126 -4289_75989,94,4289_1085,Redfern Avenue,103841300,0,4289_7778022_109405,4289_10 -4289_75984,92,4289_10853,Adamstown Station,103622132,0,4289_7778022_104240,4289_126 -4289_75984,93,4289_10854,Adamstown Station,103732132,0,4289_7778022_104240,4289_126 -4289_75984,94,4289_10855,Adamstown Station,103842132,0,4289_7778022_104240,4289_126 -4289_75984,95,4289_10856,Adamstown Station,103952132,0,4289_7778022_104240,4289_126 -4289_75989,95,4289_1086,Redfern Avenue,103951302,0,4289_7778022_109505,4289_10 -4289_75984,96,4289_10862,Adamstown Station,104065002,0,4289_7778022_104220,4289_126 -4289_75984,92,4289_10864,Adamstown Station,103622258,0,4289_7778022_104210,4289_126 -4289_75984,93,4289_10865,Adamstown Station,103732258,0,4289_7778022_104210,4289_126 -4289_75984,94,4289_10866,Adamstown Station,103842258,0,4289_7778022_104210,4289_126 -4289_75984,95,4289_10867,Adamstown Station,103952258,0,4289_7778022_104210,4289_126 -4289_75989,93,4289_1087,Brookdale Drive,103731875,1,4289_7778022_109305,4289_11 -4289_75984,96,4289_10877,Adamstown Station,104065110,0,4289_7778022_104240,4289_126 -4289_75984,92,4289_10879,Adamstown Station,103622390,0,4289_7778022_104240,4289_126 -4289_75989,93,4289_1088,Brookdale Drive,103731883,1,4289_7778022_109309,4289_11 -4289_75984,93,4289_10880,Adamstown Station,103732390,0,4289_7778022_104240,4289_126 -4289_75984,94,4289_10881,Adamstown Station,103842390,0,4289_7778022_104240,4289_126 -4289_75984,95,4289_10882,Adamstown Station,103952390,0,4289_7778022_104240,4289_126 -4289_75984,96,4289_10892,Adamstown Station,104065216,0,4289_7778022_104230,4289_126 -4289_75984,92,4289_10894,Adamstown Station,103622508,0,4289_7778022_104210,4289_126 -4289_75984,93,4289_10895,Adamstown Station,103732508,0,4289_7778022_104210,4289_126 -4289_75984,94,4289_10896,Adamstown Station,103842508,0,4289_7778022_104210,4289_126 -4289_75984,95,4289_10897,Adamstown Station,103952508,0,4289_7778022_104210,4289_126 -4289_75989,92,4289_1090,Brookdale Drive,103622257,1,4289_7778022_109105,4289_11 -4289_75984,96,4289_10907,Adamstown Station,104065320,0,4289_7778022_104220,4289_126 -4289_75989,94,4289_1091,Brookdale Drive,103842259,1,4289_7778022_109405,4289_11 -4289_75984,92,4289_10913,Adamstown Station,103622626,0,4289_7778022_104240,4289_126 -4289_75984,93,4289_10914,Adamstown Station,103732626,0,4289_7778022_104240,4289_126 -4289_75984,94,4289_10915,Adamstown Station,103842626,0,4289_7778022_104240,4289_126 -4289_75984,95,4289_10916,Adamstown Station,103952626,0,4289_7778022_104240,4289_126 -4289_75989,95,4289_1092,Brookdale Drive,103952261,1,4289_7778022_109505,4289_11 -4289_75984,96,4289_10922,Adamstown Station,104065416,0,4289_7778022_104240,4289_126 -4289_75984,92,4289_10928,Adamstown Station,103622740,0,4289_7778022_104210,4289_126 -4289_75984,93,4289_10929,Adamstown Station,103732740,0,4289_7778022_104210,4289_126 -4289_75984,94,4289_10930,Adamstown Station,103842740,0,4289_7778022_104210,4289_126 -4289_75984,95,4289_10931,Adamstown Station,103952740,0,4289_7778022_104210,4289_126 -4289_75984,96,4289_10937,Adamstown Station,104065508,0,4289_7778022_104230,4289_126 -4289_75989,92,4289_1094,Brookdale Drive,103622271,1,4289_7778022_109109,4289_11 -4289_75984,92,4289_10943,Adamstown Station,103622840,0,4289_7778022_104240,4289_126 -4289_75984,93,4289_10944,Adamstown Station,103732840,0,4289_7778022_104240,4289_126 -4289_75984,94,4289_10945,Adamstown Station,103842840,0,4289_7778022_104240,4289_126 -4289_75984,95,4289_10946,Adamstown Station,103952840,0,4289_7778022_104240,4289_126 -4289_75989,94,4289_1095,Brookdale Drive,103842273,1,4289_7778022_109409,4289_11 -4289_75984,96,4289_10952,Adamstown Station,104065594,0,4289_7778022_104220,4289_126 -4289_75984,92,4289_10958,Adamstown Station,103622934,0,4289_7778022_104210,4289_126 -4289_75984,93,4289_10959,Adamstown Station,103732934,0,4289_7778022_104210,4289_126 -4289_75989,95,4289_1096,Brookdale Drive,103952275,1,4289_7778022_109509,4289_11 -4289_75984,94,4289_10960,Adamstown Station,103842934,0,4289_7778022_104210,4289_126 -4289_75984,95,4289_10961,Adamstown Station,103952934,0,4289_7778022_104210,4289_126 -4289_75984,96,4289_10967,Adamstown Station,104065684,0,4289_7778022_104240,4289_126 -4289_75984,92,4289_10973,Adamstown Station,103623030,0,4289_7778022_104240,4289_126 -4289_75984,93,4289_10974,Adamstown Station,103733030,0,4289_7778022_104240,4289_126 -4289_75984,94,4289_10975,Adamstown Station,103843030,0,4289_7778022_104240,4289_126 -4289_75984,95,4289_10976,Adamstown Station,103953030,0,4289_7778022_104240,4289_126 -4289_75990,92,4289_1098,Sutton Park School,103621212,0,4289_7778022_109101,4289_12 -4289_75984,92,4289_10983,Liffey Valley SC,103621029,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_10984,Liffey Valley SC,103731029,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_10985,Liffey Valley SC,103841029,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_10986,Liffey Valley SC,103951029,1,4289_7778022_104210,4289_128 -4289_75990,93,4289_1099,Sutton Park School,103731214,0,4289_7778022_109301,4289_12 -4289_75984,96,4289_10992,Liffey Valley SC,104064019,1,4289_7778022_104220,4289_129 -4289_75984,92,4289_10994,Liffey Valley SC,103621135,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_10995,Liffey Valley SC,103731135,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_10996,Liffey Valley SC,103841135,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_10997,Liffey Valley SC,103951135,1,4289_7778022_104210,4289_128 -4289_75990,94,4289_1100,Sutton Park School,103841216,0,4289_7778022_109401,4289_12 -4289_75984,96,4289_11003,Liffey Valley SC,104064087,1,4289_7778022_104240,4289_129 -4289_75984,92,4289_11009,Liffey Valley SC,103621261,1,4289_7778022_104240,4289_128 -4289_75990,95,4289_1101,Sutton Park School,103951218,0,4289_7778022_109501,4289_12 -4289_75984,93,4289_11010,Liffey Valley SC,103731261,1,4289_7778022_104240,4289_128 -4289_75984,94,4289_11011,Liffey Valley SC,103841261,1,4289_7778022_104240,4289_128 -4289_75984,95,4289_11012,Liffey Valley SC,103951261,1,4289_7778022_104240,4289_128 -4289_75984,96,4289_11018,Liffey Valley SC,104064165,1,4289_7778022_104230,4289_129 -4289_75984,92,4289_11020,Liffey Valley SC,103621401,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_11021,Liffey Valley SC,103731401,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_11022,Liffey Valley SC,103841401,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_11023,Liffey Valley SC,103951401,1,4289_7778022_104210,4289_128 -4289_75984,96,4289_11029,Liffey Valley SC,104064259,1,4289_7778022_104220,4289_129 -4289_75990,92,4289_1103,Sutton Park School,103621250,0,4289_7778022_109103,4289_12 -4289_75984,92,4289_11035,Liffey Valley SC,103621511,1,4289_7778022_104240,4289_128 -4289_75984,93,4289_11036,Liffey Valley SC,103731511,1,4289_7778022_104240,4289_128 -4289_75984,94,4289_11037,Liffey Valley SC,103841511,1,4289_7778022_104240,4289_128 -4289_75984,95,4289_11038,Liffey Valley SC,103951511,1,4289_7778022_104240,4289_128 -4289_75990,93,4289_1104,Sutton Park School,103731252,0,4289_7778022_109303,4289_12 -4289_75984,96,4289_11044,Liffey Valley SC,104064363,1,4289_7778022_104240,4289_129 -4289_75990,94,4289_1105,Sutton Park School,103841254,0,4289_7778022_109402,4289_12 -4289_75984,92,4289_11050,Liffey Valley SC,103621623,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_11051,Liffey Valley SC,103731623,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_11052,Liffey Valley SC,103841623,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_11053,Liffey Valley SC,103951623,1,4289_7778022_104210,4289_128 -4289_75984,96,4289_11059,Liffey Valley SC,104064473,1,4289_7778022_104230,4289_129 -4289_75990,95,4289_1106,Sutton Park School,103951256,0,4289_7778022_109503,4289_12 -4289_75984,92,4289_11065,Liffey Valley SC,103621737,1,4289_7778022_104240,4289_128 -4289_75984,93,4289_11066,Liffey Valley SC,103731737,1,4289_7778022_104240,4289_128 -4289_75984,94,4289_11067,Liffey Valley SC,103841737,1,4289_7778022_104240,4289_128 -4289_75984,95,4289_11068,Liffey Valley SC,103951737,1,4289_7778022_104240,4289_128 -4289_75990,93,4289_1107,Swords,103732089,1,4289_7778022_109307,4289_13 -4289_75984,96,4289_11074,Liffey Valley SC,104064577,1,4289_7778022_104220,4289_129 -4289_75984,92,4289_11080,Liffey Valley SC,103621851,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_11081,Liffey Valley SC,103731851,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_11082,Liffey Valley SC,103841851,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_11083,Liffey Valley SC,103951851,1,4289_7778022_104210,4289_128 -4289_75984,96,4289_11089,Liffey Valley SC,104064683,1,4289_7778022_104240,4289_129 -4289_75990,92,4289_1109,Swords,103622213,1,4289_7778022_109104,4289_13 -4289_75984,92,4289_11095,Liffey Valley SC,103621965,1,4289_7778022_104240,4289_128 -4289_75984,93,4289_11096,Liffey Valley SC,103731965,1,4289_7778022_104240,4289_128 -4289_75984,94,4289_11097,Liffey Valley SC,103841965,1,4289_7778022_104240,4289_128 -4289_75984,95,4289_11098,Liffey Valley SC,103951965,1,4289_7778022_104240,4289_128 -4289_75990,94,4289_1110,Swords,103842215,1,4289_7778022_109406,4289_13 -4289_75984,96,4289_11104,Liffey Valley SC,104064791,1,4289_7778022_104230,4289_129 -4289_75990,95,4289_1111,Swords,103952217,1,4289_7778022_109506,4289_13 -4289_75984,92,4289_11110,Liffey Valley SC,103622085,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_11111,Liffey Valley SC,103732085,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_11112,Liffey Valley SC,103842085,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_11113,Liffey Valley SC,103952085,1,4289_7778022_104210,4289_128 -4289_75984,96,4289_11119,Liffey Valley SC,104064897,1,4289_7778022_104220,4289_129 -4289_75984,92,4289_11125,Liffey Valley SC,103622227,1,4289_7778022_104240,4289_128 -4289_75984,93,4289_11126,Liffey Valley SC,103732227,1,4289_7778022_104240,4289_128 -4289_75984,94,4289_11127,Liffey Valley SC,103842227,1,4289_7778022_104240,4289_128 -4289_75984,95,4289_11128,Liffey Valley SC,103952227,1,4289_7778022_104240,4289_128 -4289_75961,92,4289_1113,DCU Helix,103621140,0,4289_7778022_104060,4289_14 -4289_75984,96,4289_11134,Liffey Valley SC,104065003,1,4289_7778022_104240,4289_129 -4289_75961,93,4289_1114,DCU Helix,103731140,0,4289_7778022_104060,4289_14 -4289_75984,92,4289_11140,Liffey Valley SC,103622367,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_11141,Liffey Valley SC,103732367,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_11142,Liffey Valley SC,103842367,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_11143,Liffey Valley SC,103952367,1,4289_7778022_104210,4289_128 -4289_75984,96,4289_11149,Liffey Valley SC,104065109,1,4289_7778022_104230,4289_129 -4289_75961,94,4289_1115,DCU Helix,103841140,0,4289_7778022_104060,4289_14 -4289_75984,92,4289_11155,Liffey Valley SC,103622493,1,4289_7778022_104240,4289_128 -4289_75984,93,4289_11156,Liffey Valley SC,103732493,1,4289_7778022_104240,4289_128 -4289_75984,94,4289_11157,Liffey Valley SC,103842493,1,4289_7778022_104240,4289_128 -4289_75984,95,4289_11158,Liffey Valley SC,103952493,1,4289_7778022_104240,4289_128 -4289_75961,95,4289_1116,DCU Helix,103951140,0,4289_7778022_104060,4289_14 -4289_75984,96,4289_11164,Liffey Valley SC,104065219,1,4289_7778022_104220,4289_129 -4289_75984,92,4289_11170,Liffey Valley SC,103622605,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_11171,Liffey Valley SC,103732605,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_11172,Liffey Valley SC,103842605,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_11173,Liffey Valley SC,103952605,1,4289_7778022_104210,4289_128 -4289_75984,96,4289_11179,Liffey Valley SC,104065325,1,4289_7778022_104240,4289_129 -4289_75984,92,4289_11185,Liffey Valley SC,103622717,1,4289_7778022_104240,4289_128 -4289_75984,93,4289_11186,Liffey Valley SC,103732717,1,4289_7778022_104240,4289_128 -4289_75984,94,4289_11187,Liffey Valley SC,103842717,1,4289_7778022_104240,4289_128 -4289_75984,95,4289_11188,Liffey Valley SC,103952717,1,4289_7778022_104240,4289_128 -4289_75984,96,4289_11194,Liffey Valley SC,104065421,1,4289_7778022_104230,4289_129 -4289_75984,92,4289_11200,Liffey Valley SC,103622817,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_11201,Liffey Valley SC,103732817,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_11202,Liffey Valley SC,103842817,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_11203,Liffey Valley SC,103952817,1,4289_7778022_104210,4289_128 -4289_75984,96,4289_11209,Liffey Valley SC,104065509,1,4289_7778022_104220,4289_129 -4289_75984,92,4289_11215,Liffey Valley SC,103622915,1,4289_7778022_104240,4289_128 -4289_75984,93,4289_11216,Liffey Valley SC,103732915,1,4289_7778022_104240,4289_128 -4289_75984,94,4289_11217,Liffey Valley SC,103842915,1,4289_7778022_104240,4289_128 -4289_75984,95,4289_11218,Liffey Valley SC,103952915,1,4289_7778022_104240,4289_128 -4289_75961,96,4289_1122,DCU Helix,104064114,0,4289_7778022_104100,4289_16 -4289_75984,96,4289_11224,Liffey Valley SC,104065599,1,4289_7778022_104240,4289_129 -4289_75984,92,4289_11230,Liffey Valley SC,103623015,1,4289_7778022_104210,4289_128 -4289_75984,93,4289_11231,Liffey Valley SC,103733015,1,4289_7778022_104210,4289_128 -4289_75984,94,4289_11232,Liffey Valley SC,103843015,1,4289_7778022_104210,4289_128 -4289_75984,95,4289_11233,Liffey Valley SC,103953015,1,4289_7778022_104210,4289_128 -4289_75984,96,4289_11239,Liffey Valley SC,104065687,1,4289_7778022_104230,4289_129 -4289_75961,92,4289_1124,DCU Helix,103621312,0,4289_7778022_104110,4289_14 -4289_75985,92,4289_11245,Adamstown Station,103621060,0,4289_7778022_104230,4289_131 -4289_75985,93,4289_11246,Adamstown Station,103731060,0,4289_7778022_104230,4289_131 -4289_75985,94,4289_11247,Adamstown Station,103841060,0,4289_7778022_104230,4289_131 -4289_75985,95,4289_11248,Adamstown Station,103951060,0,4289_7778022_104230,4289_131 -4289_75961,93,4289_1125,DCU Helix,103731312,0,4289_7778022_104110,4289_14 -4289_75985,96,4289_11254,Adamstown Station,104064040,0,4289_7778022_104240,4289_132 -4289_75985,92,4289_11256,Adamstown Station,103621184,0,4289_7778022_104220,4289_131 -4289_75985,93,4289_11257,Adamstown Station,103731184,0,4289_7778022_104220,4289_131 -4289_75985,94,4289_11258,Adamstown Station,103841184,0,4289_7778022_104220,4289_131 -4289_75985,95,4289_11259,Adamstown Station,103951184,0,4289_7778022_104220,4289_131 -4289_75961,94,4289_1126,DCU Helix,103841312,0,4289_7778022_104110,4289_14 -4289_75985,96,4289_11265,Adamstown Station,104064124,0,4289_7778022_104230,4289_131 -4289_75985,92,4289_11267,Adamstown Station,103621364,0,4289_7778022_104230,4289_131 -4289_75985,93,4289_11268,Adamstown Station,103731364,0,4289_7778022_104230,4289_131 -4289_75985,94,4289_11269,Adamstown Station,103841364,0,4289_7778022_104230,4289_131 -4289_75961,95,4289_1127,DCU Helix,103951312,0,4289_7778022_104110,4289_14 -4289_75985,95,4289_11270,Adamstown Station,103951364,0,4289_7778022_104230,4289_131 -4289_75985,96,4289_11276,Adamstown Station,104064212,0,4289_7778022_104220,4289_131 -4289_75985,96,4289_11281,Adamstown Station,104064304,0,4289_7778022_104240,4289_131 -4289_75985,92,4289_11287,Adamstown Station,103621496,0,4289_7778022_104220,4289_131 -4289_75985,93,4289_11288,Adamstown Station,103731496,0,4289_7778022_104220,4289_131 -4289_75985,94,4289_11289,Adamstown Station,103841496,0,4289_7778022_104220,4289_131 -4289_75985,95,4289_11290,Adamstown Station,103951496,0,4289_7778022_104220,4289_131 -4289_75985,96,4289_11296,Adamstown Station,104064414,0,4289_7778022_104230,4289_131 -4289_75960,92,4289_113,Sutton Station,103621562,0,4289_7778022_103501,4289_1 -4289_75985,92,4289_11302,Adamstown Station,103621606,0,4289_7778022_104230,4289_131 -4289_75985,93,4289_11303,Adamstown Station,103731606,0,4289_7778022_104230,4289_131 -4289_75985,94,4289_11304,Adamstown Station,103841606,0,4289_7778022_104230,4289_131 -4289_75985,95,4289_11305,Adamstown Station,103951606,0,4289_7778022_104230,4289_131 -4289_75985,96,4289_11311,Adamstown Station,104064518,0,4289_7778022_104220,4289_131 -4289_75985,92,4289_11317,Adamstown Station,103621718,0,4289_7778022_104220,4289_131 -4289_75985,93,4289_11318,Adamstown Station,103731718,0,4289_7778022_104220,4289_131 -4289_75985,94,4289_11319,Adamstown Station,103841718,0,4289_7778022_104220,4289_131 -4289_75985,95,4289_11320,Adamstown Station,103951718,0,4289_7778022_104220,4289_131 -4289_75985,96,4289_11326,Adamstown Station,104064626,0,4289_7778022_104240,4289_131 -4289_75985,92,4289_11328,Adamstown Station,103621818,0,4289_7778022_104230,4289_131 -4289_75985,93,4289_11329,Adamstown Station,103731818,0,4289_7778022_104230,4289_131 -4289_75961,96,4289_1133,DCU Helix,104064194,0,4289_7778022_104150,4289_14 -4289_75985,94,4289_11330,Adamstown Station,103841818,0,4289_7778022_104230,4289_131 -4289_75985,95,4289_11331,Adamstown Station,103951818,0,4289_7778022_104230,4289_131 -4289_75985,96,4289_11341,Adamstown Station,104064730,0,4289_7778022_104230,4289_131 -4289_75985,92,4289_11343,Adamstown Station,103621930,0,4289_7778022_104220,4289_131 -4289_75985,93,4289_11344,Adamstown Station,103731930,0,4289_7778022_104220,4289_131 -4289_75985,94,4289_11345,Adamstown Station,103841930,0,4289_7778022_104220,4289_131 -4289_75985,95,4289_11346,Adamstown Station,103951930,0,4289_7778022_104220,4289_131 -4289_75961,92,4289_1135,DCU Helix,103621436,0,4289_7778022_104040,4289_14 -4289_75985,96,4289_11356,Adamstown Station,104064838,0,4289_7778022_104220,4289_131 -4289_75985,92,4289_11358,Adamstown Station,103622042,0,4289_7778022_104230,4289_131 -4289_75985,93,4289_11359,Adamstown Station,103732042,0,4289_7778022_104230,4289_131 -4289_75961,93,4289_1136,DCU Helix,103731436,0,4289_7778022_104040,4289_14 -4289_75985,94,4289_11360,Adamstown Station,103842042,0,4289_7778022_104230,4289_131 -4289_75985,95,4289_11361,Adamstown Station,103952042,0,4289_7778022_104230,4289_131 -4289_75961,94,4289_1137,DCU Helix,103841436,0,4289_7778022_104040,4289_14 -4289_75985,96,4289_11371,Adamstown Station,104064948,0,4289_7778022_104240,4289_131 -4289_75985,92,4289_11373,Adamstown Station,103622184,0,4289_7778022_104220,4289_131 -4289_75985,93,4289_11374,Adamstown Station,103732184,0,4289_7778022_104220,4289_131 -4289_75985,94,4289_11375,Adamstown Station,103842184,0,4289_7778022_104220,4289_131 -4289_75985,95,4289_11376,Adamstown Station,103952184,0,4289_7778022_104220,4289_131 -4289_75961,95,4289_1138,DCU Helix,103951436,0,4289_7778022_104040,4289_14 -4289_75985,96,4289_11386,Adamstown Station,104065054,0,4289_7778022_104230,4289_131 -4289_75985,92,4289_11388,Adamstown Station,103622316,0,4289_7778022_104230,4289_131 -4289_75985,93,4289_11389,Adamstown Station,103732316,0,4289_7778022_104230,4289_131 -4289_75985,94,4289_11390,Adamstown Station,103842316,0,4289_7778022_104230,4289_131 -4289_75985,95,4289_11391,Adamstown Station,103952316,0,4289_7778022_104230,4289_131 -4289_75960,93,4289_114,Sutton Station,103731562,0,4289_7778022_103501,4289_1 -4289_75985,96,4289_11401,Adamstown Station,104065156,0,4289_7778022_104220,4289_131 -4289_75985,92,4289_11403,Adamstown Station,103622436,0,4289_7778022_104220,4289_131 -4289_75985,93,4289_11404,Adamstown Station,103732436,0,4289_7778022_104220,4289_131 -4289_75985,94,4289_11405,Adamstown Station,103842436,0,4289_7778022_104220,4289_131 -4289_75985,95,4289_11406,Adamstown Station,103952436,0,4289_7778022_104220,4289_131 -4289_75985,96,4289_11416,Adamstown Station,104065266,0,4289_7778022_104240,4289_131 -4289_75985,92,4289_11418,Adamstown Station,103622554,0,4289_7778022_104230,4289_131 -4289_75985,93,4289_11419,Adamstown Station,103732554,0,4289_7778022_104230,4289_131 -4289_75985,94,4289_11420,Adamstown Station,103842554,0,4289_7778022_104230,4289_131 -4289_75985,95,4289_11421,Adamstown Station,103952554,0,4289_7778022_104230,4289_131 -4289_75985,92,4289_11432,Adamstown Station,103622668,0,4289_7778022_104220,4289_131 -4289_75985,93,4289_11433,Adamstown Station,103732668,0,4289_7778022_104220,4289_131 -4289_75985,94,4289_11434,Adamstown Station,103842668,0,4289_7778022_104220,4289_131 -4289_75985,95,4289_11435,Adamstown Station,103952668,0,4289_7778022_104220,4289_131 -4289_75961,96,4289_1144,DCU Helix,104064286,0,4289_7778022_104110,4289_14 -4289_75985,96,4289_11441,Adamstown Station,104065376,0,4289_7778022_104230,4289_132 -4289_75985,96,4289_11446,Adamstown Station,104065468,0,4289_7778022_104220,4289_131 -4289_75985,92,4289_11448,Adamstown Station,103622778,0,4289_7778022_104230,4289_131 -4289_75985,93,4289_11449,Adamstown Station,103732778,0,4289_7778022_104230,4289_131 -4289_75985,94,4289_11450,Adamstown Station,103842778,0,4289_7778022_104230,4289_131 -4289_75985,95,4289_11451,Adamstown Station,103952778,0,4289_7778022_104230,4289_131 -4289_75985,96,4289_11461,Adamstown Station,104065558,0,4289_7778022_104240,4289_131 -4289_75985,92,4289_11467,Adamstown Station,103622882,0,4289_7778022_104220,4289_131 -4289_75985,93,4289_11468,Adamstown Station,103732882,0,4289_7778022_104220,4289_131 -4289_75985,94,4289_11469,Adamstown Station,103842882,0,4289_7778022_104220,4289_131 -4289_75985,95,4289_11470,Adamstown Station,103952882,0,4289_7778022_104220,4289_131 -4289_75985,96,4289_11476,Adamstown Station,104065642,0,4289_7778022_104230,4289_131 -4289_75985,92,4289_11482,Adamstown Station,103622980,0,4289_7778022_104230,4289_131 -4289_75985,93,4289_11483,Adamstown Station,103732980,0,4289_7778022_104230,4289_131 -4289_75985,94,4289_11484,Adamstown Station,103842980,0,4289_7778022_104230,4289_131 -4289_75985,95,4289_11485,Adamstown Station,103952980,0,4289_7778022_104230,4289_131 -4289_75985,96,4289_11491,Adamstown Station,104065718,0,4289_7778022_104220,4289_131 -4289_75985,92,4289_11497,Adamstown Station,103623058,0,4289_7778022_104220,4289_131 -4289_75985,93,4289_11498,Adamstown Station,103733058,0,4289_7778022_104220,4289_131 -4289_75985,94,4289_11499,Adamstown Station,103843058,0,4289_7778022_104220,4289_131 -4289_75960,94,4289_115,Sutton Station,103841562,0,4289_7778022_103501,4289_1 -4289_75961,92,4289_1150,DCU Helix,103621570,0,4289_7778022_104140,4289_14 -4289_75985,95,4289_11500,Adamstown Station,103953058,0,4289_7778022_104220,4289_131 -4289_75985,96,4289_11506,Blanchardstown,104064047,1,4289_7778022_104230,4289_134 -4289_75985,92,4289_11508,Blanchardstown,103621075,1,4289_7778022_104220,4289_134 -4289_75985,93,4289_11509,Blanchardstown,103731075,1,4289_7778022_104220,4289_134 -4289_75961,93,4289_1151,DCU Helix,103731570,0,4289_7778022_104140,4289_14 -4289_75985,94,4289_11510,Blanchardstown,103841075,1,4289_7778022_104220,4289_134 -4289_75985,95,4289_11511,Blanchardstown,103951075,1,4289_7778022_104220,4289_134 -4289_75985,92,4289_11518,Blanchardstown,103621203,1,4289_7778022_104230,4289_134 -4289_75985,93,4289_11519,Blanchardstown,103731203,1,4289_7778022_104230,4289_134 -4289_75961,94,4289_1152,DCU Helix,103841570,0,4289_7778022_104140,4289_14 -4289_75985,94,4289_11520,Blanchardstown,103841203,1,4289_7778022_104230,4289_134 -4289_75985,95,4289_11521,Blanchardstown,103951203,1,4289_7778022_104230,4289_134 -4289_75985,96,4289_11527,Blanchardstown,104064127,1,4289_7778022_104220,4289_135 -4289_75961,95,4289_1153,DCU Helix,103951570,0,4289_7778022_104140,4289_14 -4289_75985,92,4289_11533,Blanchardstown,103621343,1,4289_7778022_104220,4289_134 -4289_75985,93,4289_11534,Blanchardstown,103731343,1,4289_7778022_104220,4289_134 -4289_75985,94,4289_11535,Blanchardstown,103841343,1,4289_7778022_104220,4289_134 -4289_75985,95,4289_11536,Blanchardstown,103951343,1,4289_7778022_104220,4289_134 -4289_75985,96,4289_11542,Blanchardstown,104064217,1,4289_7778022_104240,4289_135 -4289_75985,92,4289_11544,Blanchardstown,103621457,1,4289_7778022_104230,4289_134 -4289_75985,93,4289_11545,Blanchardstown,103731457,1,4289_7778022_104230,4289_134 -4289_75985,94,4289_11546,Blanchardstown,103841457,1,4289_7778022_104230,4289_134 -4289_75985,95,4289_11547,Blanchardstown,103951457,1,4289_7778022_104230,4289_134 -4289_75985,96,4289_11553,Blanchardstown,104064315,1,4289_7778022_104230,4289_135 -4289_75985,92,4289_11559,Blanchardstown,103621571,1,4289_7778022_104220,4289_134 -4289_75985,93,4289_11560,Blanchardstown,103731571,1,4289_7778022_104220,4289_134 -4289_75985,94,4289_11561,Blanchardstown,103841571,1,4289_7778022_104220,4289_134 -4289_75985,95,4289_11562,Blanchardstown,103951571,1,4289_7778022_104220,4289_134 -4289_75985,96,4289_11568,Blanchardstown,104064421,1,4289_7778022_104220,4289_135 -4289_75985,92,4289_11574,Blanchardstown,103621681,1,4289_7778022_104230,4289_134 -4289_75985,93,4289_11575,Blanchardstown,103731681,1,4289_7778022_104230,4289_134 -4289_75985,94,4289_11576,Blanchardstown,103841681,1,4289_7778022_104230,4289_134 -4289_75985,95,4289_11577,Blanchardstown,103951681,1,4289_7778022_104230,4289_134 -4289_75985,96,4289_11583,Blanchardstown,104064523,1,4289_7778022_104240,4289_135 -4289_75985,92,4289_11589,Blanchardstown,103621797,1,4289_7778022_104220,4289_134 -4289_75961,96,4289_1159,DCU Helix,104064388,0,4289_7778022_104080,4289_15 -4289_75985,93,4289_11590,Blanchardstown,103731797,1,4289_7778022_104220,4289_134 -4289_75985,94,4289_11591,Blanchardstown,103841797,1,4289_7778022_104220,4289_134 -4289_75985,95,4289_11592,Blanchardstown,103951797,1,4289_7778022_104220,4289_134 -4289_75985,96,4289_11598,Blanchardstown,104064635,1,4289_7778022_104230,4289_135 -4289_75960,95,4289_116,Sutton Station,103951562,0,4289_7778022_103501,4289_1 -4289_75985,92,4289_11604,Blanchardstown,103621915,1,4289_7778022_104230,4289_134 -4289_75985,93,4289_11605,Blanchardstown,103731915,1,4289_7778022_104230,4289_134 -4289_75985,94,4289_11606,Blanchardstown,103841915,1,4289_7778022_104230,4289_134 -4289_75985,95,4289_11607,Blanchardstown,103951915,1,4289_7778022_104230,4289_134 -4289_75985,96,4289_11613,Blanchardstown,104064737,1,4289_7778022_104220,4289_135 -4289_75985,92,4289_11619,Blanchardstown,103622027,1,4289_7778022_104220,4289_134 -4289_75985,93,4289_11620,Blanchardstown,103732027,1,4289_7778022_104220,4289_134 -4289_75985,94,4289_11621,Blanchardstown,103842027,1,4289_7778022_104220,4289_134 -4289_75985,95,4289_11622,Blanchardstown,103952027,1,4289_7778022_104220,4289_134 -4289_75985,96,4289_11628,Blanchardstown,104064843,1,4289_7778022_104240,4289_135 -4289_75985,92,4289_11634,Blanchardstown,103622147,1,4289_7778022_104230,4289_134 -4289_75985,93,4289_11635,Blanchardstown,103732147,1,4289_7778022_104230,4289_134 -4289_75985,94,4289_11636,Blanchardstown,103842147,1,4289_7778022_104230,4289_134 -4289_75985,95,4289_11637,Blanchardstown,103952147,1,4289_7778022_104230,4289_134 -4289_75985,96,4289_11643,Blanchardstown,104064949,1,4289_7778022_104230,4289_135 -4289_75985,92,4289_11649,Blanchardstown,103622311,1,4289_7778022_104220,4289_134 -4289_75961,92,4289_1165,DCU Helix,103621682,0,4289_7778022_104080,4289_14 -4289_75985,93,4289_11650,Blanchardstown,103732311,1,4289_7778022_104220,4289_134 -4289_75985,94,4289_11651,Blanchardstown,103842311,1,4289_7778022_104220,4289_134 -4289_75985,95,4289_11652,Blanchardstown,103952311,1,4289_7778022_104220,4289_134 -4289_75985,96,4289_11658,Blanchardstown,104065055,1,4289_7778022_104220,4289_135 -4289_75961,93,4289_1166,DCU Helix,103731682,0,4289_7778022_104080,4289_14 -4289_75985,92,4289_11664,Blanchardstown,103622431,1,4289_7778022_104230,4289_134 -4289_75985,93,4289_11665,Blanchardstown,103732431,1,4289_7778022_104230,4289_134 -4289_75985,94,4289_11666,Blanchardstown,103842431,1,4289_7778022_104230,4289_134 -4289_75985,95,4289_11667,Blanchardstown,103952431,1,4289_7778022_104230,4289_134 -4289_75961,94,4289_1167,DCU Helix,103841682,0,4289_7778022_104080,4289_14 -4289_75985,96,4289_11673,Blanchardstown,104065161,1,4289_7778022_104240,4289_135 -4289_75985,92,4289_11679,Blanchardstown,103622551,1,4289_7778022_104220,4289_134 -4289_75961,95,4289_1168,DCU Helix,103951682,0,4289_7778022_104080,4289_14 -4289_75985,93,4289_11680,Blanchardstown,103732551,1,4289_7778022_104220,4289_134 -4289_75985,94,4289_11681,Blanchardstown,103842551,1,4289_7778022_104220,4289_134 -4289_75985,95,4289_11682,Blanchardstown,103952551,1,4289_7778022_104220,4289_134 -4289_75985,96,4289_11688,Blanchardstown,104065267,1,4289_7778022_104230,4289_135 -4289_75985,92,4289_11694,Blanchardstown,103622663,1,4289_7778022_104230,4289_134 -4289_75985,93,4289_11695,Blanchardstown,103732663,1,4289_7778022_104230,4289_134 -4289_75985,94,4289_11696,Blanchardstown,103842663,1,4289_7778022_104230,4289_134 -4289_75985,95,4289_11697,Blanchardstown,103952663,1,4289_7778022_104230,4289_134 -4289_75985,96,4289_11703,Blanchardstown,104065371,1,4289_7778022_104220,4289_135 -4289_75985,92,4289_11709,Blanchardstown,103622761,1,4289_7778022_104220,4289_134 -4289_75985,93,4289_11710,Blanchardstown,103732761,1,4289_7778022_104220,4289_134 -4289_75985,94,4289_11711,Blanchardstown,103842761,1,4289_7778022_104220,4289_134 -4289_75985,95,4289_11712,Blanchardstown,103952761,1,4289_7778022_104220,4289_134 -4289_75985,96,4289_11718,Blanchardstown,104065459,1,4289_7778022_104240,4289_135 -4289_75985,92,4289_11724,Blanchardstown,103622863,1,4289_7778022_104230,4289_134 -4289_75985,93,4289_11725,Blanchardstown,103732863,1,4289_7778022_104230,4289_134 -4289_75985,94,4289_11726,Blanchardstown,103842863,1,4289_7778022_104230,4289_134 -4289_75985,95,4289_11727,Blanchardstown,103952863,1,4289_7778022_104230,4289_134 -4289_75985,96,4289_11733,Blanchardstown,104065551,1,4289_7778022_104230,4289_135 -4289_75985,92,4289_11739,Blanchardstown,103622963,1,4289_7778022_104220,4289_134 -4289_75961,96,4289_1174,DCU Helix,104064498,0,4289_7778022_104100,4289_15 -4289_75985,93,4289_11740,Blanchardstown,103732963,1,4289_7778022_104220,4289_134 -4289_75985,94,4289_11741,Blanchardstown,103842963,1,4289_7778022_104220,4289_134 -4289_75985,95,4289_11742,Blanchardstown,103952963,1,4289_7778022_104220,4289_134 -4289_75985,96,4289_11748,Blanchardstown,104065641,1,4289_7778022_104220,4289_135 -4289_75985,92,4289_11754,Blanchardstown,103623047,1,4289_7778022_104230,4289_134 -4289_75985,93,4289_11755,Blanchardstown,103733047,1,4289_7778022_104230,4289_134 -4289_75985,94,4289_11756,Blanchardstown,103843047,1,4289_7778022_104230,4289_134 -4289_75985,95,4289_11757,Blanchardstown,103953047,1,4289_7778022_104230,4289_134 -4289_75985,96,4289_11763,Blanchardstown,104065719,1,4289_7778022_104240,4289_135 -4289_75986,92,4289_11769,Chapelizod,103621174,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11770,Chapelizod,103731174,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11771,Chapelizod,103841174,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11772,Chapelizod,103951174,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11778,Chapelizod,104064116,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11780,Chapelizod,103621346,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11781,Chapelizod,103731346,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11782,Chapelizod,103841346,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11783,Chapelizod,103951346,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11789,Chapelizod,104064202,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11795,Chapelizod,103621474,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11796,Chapelizod,103731474,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11797,Chapelizod,103841474,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11798,Chapelizod,103951474,0,4289_7778022_104250,4289_137 -4289_75961,92,4289_1180,DCU Helix,103621790,0,4289_7778022_104170,4289_14 -4289_75986,96,4289_11804,Chapelizod,104064296,0,4289_7778022_104250,4289_137 -4289_75961,93,4289_1181,DCU Helix,103731790,0,4289_7778022_104170,4289_14 -4289_75986,92,4289_11810,Chapelizod,103621582,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11811,Chapelizod,103731582,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11812,Chapelizod,103841582,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11813,Chapelizod,103951582,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11819,Chapelizod,104064404,0,4289_7778022_104250,4289_137 -4289_75961,94,4289_1182,DCU Helix,103841790,0,4289_7778022_104170,4289_14 -4289_75986,92,4289_11825,Chapelizod,103621694,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11826,Chapelizod,103731694,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11827,Chapelizod,103841694,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11828,Chapelizod,103951694,0,4289_7778022_104250,4289_137 -4289_75961,95,4289_1183,DCU Helix,103951790,0,4289_7778022_104170,4289_14 -4289_75986,96,4289_11834,Chapelizod,104064510,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11840,Chapelizod,103621806,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11841,Chapelizod,103731806,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11842,Chapelizod,103841806,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11843,Chapelizod,103951806,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11849,Chapelizod,104064618,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11855,Chapelizod,103621918,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11856,Chapelizod,103731918,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11857,Chapelizod,103841918,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11858,Chapelizod,103951918,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11864,Chapelizod,104064724,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11870,Chapelizod,103622032,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11871,Chapelizod,103732032,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11872,Chapelizod,103842032,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11873,Chapelizod,103952032,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11879,Chapelizod,104064830,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11885,Chapelizod,103622168,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11886,Chapelizod,103732168,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11887,Chapelizod,103842168,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11888,Chapelizod,103952168,0,4289_7778022_104250,4289_137 -4289_75961,96,4289_1189,DCU Helix,104064604,0,4289_7778022_104090,4289_15 -4289_75986,96,4289_11894,Chapelizod,104064938,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11900,Chapelizod,103622296,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11901,Chapelizod,103732296,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11902,Chapelizod,103842296,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11903,Chapelizod,103952296,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11909,Chapelizod,104065042,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11915,Chapelizod,103622416,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11916,Chapelizod,103732416,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11917,Chapelizod,103842416,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11918,Chapelizod,103952416,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11924,Chapelizod,104065146,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11930,Chapelizod,103622536,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11931,Chapelizod,103732536,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11932,Chapelizod,103842536,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11933,Chapelizod,103952536,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11939,Chapelizod,104065254,0,4289_7778022_104250,4289_137 -4289_75986,92,4289_11945,Chapelizod,103622648,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11946,Chapelizod,103732648,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11947,Chapelizod,103842648,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11948,Chapelizod,103952648,0,4289_7778022_104250,4289_137 -4289_75961,92,4289_1195,DCU Helix,103621904,0,4289_7778022_104190,4289_14 -4289_75986,96,4289_11954,Chapelizod,104065360,0,4289_7778022_104250,4289_137 -4289_75961,93,4289_1196,DCU Helix,103731904,0,4289_7778022_104190,4289_14 -4289_75986,92,4289_11960,Chapelizod,103622756,0,4289_7778022_104250,4289_137 -4289_75986,93,4289_11961,Chapelizod,103732756,0,4289_7778022_104250,4289_137 -4289_75986,94,4289_11962,Chapelizod,103842756,0,4289_7778022_104250,4289_137 -4289_75986,95,4289_11963,Chapelizod,103952756,0,4289_7778022_104250,4289_137 -4289_75986,96,4289_11969,Chapelizod,104065450,0,4289_7778022_104250,4289_137 -4289_75961,94,4289_1197,DCU Helix,103841904,0,4289_7778022_104190,4289_14 -4289_75986,92,4289_11975,Palmerstown,103621209,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_11976,Palmerstown,103731209,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_11977,Palmerstown,103841209,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_11978,Palmerstown,103951209,1,4289_7778022_104250,4289_138 -4289_75961,95,4289_1198,DCU Helix,103951904,0,4289_7778022_104190,4289_14 -4289_75986,96,4289_11984,Palmerstown,104064135,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_11986,Palmerstown,103621353,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_11987,Palmerstown,103731353,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_11988,Palmerstown,103841353,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_11989,Palmerstown,103951353,1,4289_7778022_104250,4289_138 -4289_75986,96,4289_11995,Palmerstown,104064223,1,4289_7778022_104250,4289_138 -4289_75960,96,4289_12,Sutton Station,104064044,0,4289_7778022_103502,4289_1 -4289_75986,92,4289_12001,Palmerstown,103621465,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12002,Palmerstown,103731465,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12003,Palmerstown,103841465,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12004,Palmerstown,103951465,1,4289_7778022_104250,4289_138 -4289_75986,96,4289_12010,Palmerstown,104064323,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12016,Palmerstown,103621579,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12017,Palmerstown,103731579,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12018,Palmerstown,103841579,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12019,Palmerstown,103951579,1,4289_7778022_104250,4289_138 -4289_75986,96,4289_12025,Palmerstown,104064429,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12031,Palmerstown,103621691,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12032,Palmerstown,103731691,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12033,Palmerstown,103841691,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12034,Palmerstown,103951691,1,4289_7778022_104250,4289_138 -4289_75961,96,4289_1204,DCU Helix,104064710,0,4289_7778022_104150,4289_15 -4289_75986,96,4289_12040,Palmerstown,104064535,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12046,Palmerstown,103621803,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12047,Palmerstown,103731803,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12048,Palmerstown,103841803,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12049,Palmerstown,103951803,1,4289_7778022_104250,4289_138 -4289_75986,96,4289_12055,Palmerstown,104064643,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12061,Palmerstown,103621923,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12062,Palmerstown,103731923,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12063,Palmerstown,103841923,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12064,Palmerstown,103951923,1,4289_7778022_104250,4289_138 -4289_75986,96,4289_12070,Palmerstown,104064749,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12076,Palmerstown,103622035,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12077,Palmerstown,103732035,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12078,Palmerstown,103842035,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12079,Palmerstown,103952035,1,4289_7778022_104250,4289_138 -4289_75986,96,4289_12085,Palmerstown,104064853,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12091,Palmerstown,103622157,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12092,Palmerstown,103732157,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12093,Palmerstown,103842157,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12094,Palmerstown,103952157,1,4289_7778022_104250,4289_138 -4289_75961,92,4289_1210,DCU Helix,103622018,0,4289_7778022_104060,4289_14 -4289_75986,96,4289_12100,Palmerstown,104064961,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12106,Palmerstown,103622321,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12107,Palmerstown,103732321,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12108,Palmerstown,103842321,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12109,Palmerstown,103952321,1,4289_7778022_104250,4289_138 -4289_75961,93,4289_1211,DCU Helix,103732018,0,4289_7778022_104060,4289_14 -4289_75986,96,4289_12115,Palmerstown,104065067,1,4289_7778022_104250,4289_138 -4289_75961,94,4289_1212,DCU Helix,103842018,0,4289_7778022_104060,4289_14 -4289_75986,92,4289_12121,Palmerstown,103622443,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12122,Palmerstown,103732443,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12123,Palmerstown,103842443,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12124,Palmerstown,103952443,1,4289_7778022_104250,4289_138 -4289_75961,95,4289_1213,DCU Helix,103952018,0,4289_7778022_104060,4289_14 -4289_75986,96,4289_12130,Palmerstown,104065171,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12136,Palmerstown,103622559,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12137,Palmerstown,103732559,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12138,Palmerstown,103842559,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12139,Palmerstown,103952559,1,4289_7778022_104250,4289_138 -4289_75986,96,4289_12145,Palmerstown,104065277,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12151,Palmerstown,103622667,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12152,Palmerstown,103732667,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12153,Palmerstown,103842667,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12154,Palmerstown,103952667,1,4289_7778022_104250,4289_138 -4289_75986,96,4289_12160,Palmerstown,104065373,1,4289_7778022_104250,4289_138 -4289_75986,92,4289_12166,Palmerstown,103622769,1,4289_7778022_104250,4289_138 -4289_75986,93,4289_12167,Palmerstown,103732769,1,4289_7778022_104250,4289_138 -4289_75986,94,4289_12168,Palmerstown,103842769,1,4289_7778022_104250,4289_138 -4289_75986,95,4289_12169,Palmerstown,103952769,1,4289_7778022_104250,4289_138 -4289_75986,96,4289_12175,Palmerstown,104065465,1,4289_7778022_104250,4289_138 -4289_75976,92,4289_12181,Heuston Station,103621008,0,4289_7778022_101121,4289_139 -4289_75976,93,4289_12182,Heuston Station,103731008,0,4289_7778022_101121,4289_139 -4289_75976,94,4289_12183,Heuston Station,103841008,0,4289_7778022_101121,4289_139 -4289_75976,95,4289_12184,Heuston Station,103951008,0,4289_7778022_101121,4289_139 -4289_75961,96,4289_1219,DCU Helix,104064818,0,4289_7778022_104171,4289_15 -4289_75976,96,4289_12190,Heuston Station,104064006,0,4289_7778022_100870,4289_140 -4289_75976,92,4289_12192,Heuston Station,103621024,0,4289_7778022_101150,4289_139 -4289_75976,93,4289_12193,Heuston Station,103731024,0,4289_7778022_101150,4289_139 -4289_75976,94,4289_12194,Heuston Station,103841024,0,4289_7778022_101150,4289_139 -4289_75976,95,4289_12195,Heuston Station,103951024,0,4289_7778022_101150,4289_139 -4289_75960,96,4289_122,Sutton Station,104064382,0,4289_7778022_103101,4289_2 -4289_75976,96,4289_12201,Heuston Station,104064028,0,4289_7778022_100880,4289_139 -4289_75976,92,4289_12203,Heuston Station,103621056,0,4289_7778022_101130,4289_139 -4289_75976,93,4289_12204,Heuston Station,103731056,0,4289_7778022_101130,4289_139 -4289_75976,94,4289_12205,Heuston Station,103841056,0,4289_7778022_101130,4289_139 -4289_75976,95,4289_12206,Heuston Station,103951056,0,4289_7778022_101130,4289_139 -4289_75976,92,4289_12213,Heuston Station,103621088,0,4289_7778022_101141,4289_139 -4289_75976,93,4289_12214,Heuston Station,103731088,0,4289_7778022_101141,4289_139 -4289_75976,94,4289_12215,Heuston Station,103841088,0,4289_7778022_101141,4289_139 -4289_75976,95,4289_12216,Heuston Station,103951088,0,4289_7778022_101141,4289_139 -4289_75976,96,4289_12222,Heuston Station,104064058,0,4289_7778022_100900,4289_140 -4289_75976,92,4289_12224,Heuston Station,103621134,0,4289_7778022_101170,4289_139 -4289_75976,93,4289_12225,Heuston Station,103731134,0,4289_7778022_101170,4289_139 -4289_75976,94,4289_12226,Heuston Station,103841134,0,4289_7778022_101170,4289_139 -4289_75976,95,4289_12227,Heuston Station,103951134,0,4289_7778022_101170,4289_139 -4289_75976,92,4289_12234,Heuston Station,103621160,0,4289_7778022_101161,4289_139 -4289_75976,93,4289_12235,Heuston Station,103731160,0,4289_7778022_101161,4289_139 -4289_75976,94,4289_12236,Heuston Station,103841160,0,4289_7778022_101161,4289_139 -4289_75976,95,4289_12237,Heuston Station,103951160,0,4289_7778022_101161,4289_139 -4289_75976,96,4289_12243,Heuston Station,104064104,0,4289_7778022_100890,4289_140 -4289_75976,92,4289_12245,Heuston Station,103621196,0,4289_7778022_101121,4289_139 -4289_75976,93,4289_12246,Heuston Station,103731196,0,4289_7778022_101121,4289_139 -4289_75976,94,4289_12247,Heuston Station,103841196,0,4289_7778022_101121,4289_139 -4289_75976,95,4289_12248,Heuston Station,103951196,0,4289_7778022_101121,4289_139 -4289_75961,92,4289_1225,DCU Helix,103622148,0,4289_7778022_104110,4289_14 -4289_75976,92,4289_12259,Heuston Station,103621244,0,4289_7778022_101190,4289_139 -4289_75961,93,4289_1226,DCU Helix,103732148,0,4289_7778022_104110,4289_14 -4289_75976,93,4289_12260,Heuston Station,103731244,0,4289_7778022_101190,4289_139 -4289_75976,94,4289_12261,Heuston Station,103841244,0,4289_7778022_101190,4289_139 -4289_75976,95,4289_12262,Heuston Station,103951244,0,4289_7778022_101190,4289_139 -4289_75976,96,4289_12268,Heuston Station,104064146,0,4289_7778022_100870,4289_140 -4289_75961,94,4289_1227,DCU Helix,103842148,0,4289_7778022_104110,4289_14 -4289_75976,92,4289_12270,Heuston Station,103621306,0,4289_7778022_101150,4289_139 -4289_75976,93,4289_12271,Heuston Station,103731306,0,4289_7778022_101150,4289_139 -4289_75976,94,4289_12272,Heuston Station,103841306,0,4289_7778022_101150,4289_139 -4289_75976,95,4289_12273,Heuston Station,103951306,0,4289_7778022_101150,4289_139 -4289_75961,95,4289_1228,DCU Helix,103952148,0,4289_7778022_104110,4289_14 -4289_75976,92,4289_12280,Heuston Station,103621336,0,4289_7778022_101180,4289_139 -4289_75976,93,4289_12281,Heuston Station,103731336,0,4289_7778022_101180,4289_139 -4289_75976,94,4289_12282,Heuston Station,103841336,0,4289_7778022_101180,4289_139 -4289_75976,95,4289_12283,Heuston Station,103951336,0,4289_7778022_101180,4289_139 -4289_75976,96,4289_12289,Heuston Station,104064196,0,4289_7778022_100880,4289_140 -4289_75976,92,4289_12291,Heuston Station,103621370,0,4289_7778022_101130,4289_139 -4289_75976,93,4289_12292,Heuston Station,103731370,0,4289_7778022_101130,4289_139 -4289_75976,94,4289_12293,Heuston Station,103841370,0,4289_7778022_101130,4289_139 -4289_75976,95,4289_12294,Heuston Station,103951370,0,4289_7778022_101130,4289_139 -4289_75976,92,4289_12301,Heuston Station,103621408,0,4289_7778022_101210,4289_139 -4289_75976,93,4289_12302,Heuston Station,103731408,0,4289_7778022_101210,4289_139 -4289_75976,94,4289_12303,Heuston Station,103841408,0,4289_7778022_101210,4289_139 -4289_75976,95,4289_12304,Heuston Station,103951408,0,4289_7778022_101210,4289_139 -4289_75976,96,4289_12310,Heuston Station,104064232,0,4289_7778022_100900,4289_140 -4289_75976,92,4289_12316,Heuston Station,103621430,0,4289_7778022_101141,4289_139 -4289_75976,93,4289_12317,Heuston Station,103731430,0,4289_7778022_101141,4289_139 -4289_75976,94,4289_12318,Heuston Station,103841430,0,4289_7778022_101141,4289_139 -4289_75976,95,4289_12319,Heuston Station,103951430,0,4289_7778022_101141,4289_139 -4289_75976,92,4289_12326,Heuston Station,103621458,0,4289_7778022_101170,4289_139 -4289_75976,93,4289_12327,Heuston Station,103731458,0,4289_7778022_101170,4289_139 -4289_75976,94,4289_12328,Heuston Station,103841458,0,4289_7778022_101170,4289_139 -4289_75976,95,4289_12329,Heuston Station,103951458,0,4289_7778022_101170,4289_139 -4289_75976,96,4289_12335,Heuston Station,104064284,0,4289_7778022_100890,4289_140 -4289_75976,92,4289_12337,Heuston Station,103621498,0,4289_7778022_101200,4289_139 -4289_75976,93,4289_12338,Heuston Station,103731498,0,4289_7778022_101200,4289_139 -4289_75976,94,4289_12339,Heuston Station,103841498,0,4289_7778022_101200,4289_139 -4289_75961,96,4289_1234,DCU Helix,104064924,0,4289_7778022_104180,4289_15 -4289_75976,95,4289_12340,Heuston Station,103951498,0,4289_7778022_101200,4289_139 -4289_75976,96,4289_12346,Heuston Station,104064332,0,4289_7778022_100870,4289_139 -4289_75976,92,4289_12352,Heuston Station,103621526,0,4289_7778022_101190,4289_139 -4289_75976,93,4289_12353,Heuston Station,103731526,0,4289_7778022_101190,4289_139 -4289_75976,94,4289_12354,Heuston Station,103841526,0,4289_7778022_101190,4289_139 -4289_75976,95,4289_12355,Heuston Station,103951526,0,4289_7778022_101190,4289_139 -4289_75976,92,4289_12362,Heuston Station,103621574,0,4289_7778022_101150,4289_139 -4289_75976,93,4289_12363,Heuston Station,103731574,0,4289_7778022_101150,4289_139 -4289_75976,94,4289_12364,Heuston Station,103841574,0,4289_7778022_101150,4289_139 -4289_75976,95,4289_12365,Heuston Station,103951574,0,4289_7778022_101150,4289_139 -4289_75976,96,4289_12371,Heuston Station,104064394,0,4289_7778022_100880,4289_140 -4289_75976,92,4289_12377,Heuston Station,103621600,0,4289_7778022_101180,4289_139 -4289_75976,93,4289_12378,Heuston Station,103731600,0,4289_7778022_101180,4289_139 -4289_75976,94,4289_12379,Heuston Station,103841600,0,4289_7778022_101180,4289_139 -4289_75976,95,4289_12380,Heuston Station,103951600,0,4289_7778022_101180,4289_139 -4289_75976,96,4289_12386,Heuston Station,104064442,0,4289_7778022_100900,4289_139 -4289_75976,92,4289_12392,Heuston Station,103621642,0,4289_7778022_101130,4289_139 -4289_75976,93,4289_12393,Heuston Station,103731642,0,4289_7778022_101130,4289_139 -4289_75976,94,4289_12394,Heuston Station,103841642,0,4289_7778022_101130,4289_139 -4289_75976,95,4289_12395,Heuston Station,103951642,0,4289_7778022_101130,4289_139 -4289_75961,92,4289_1240,DCU Helix,103622300,0,4289_7778022_104040,4289_14 -4289_75976,92,4289_12402,Heuston Station,103621678,0,4289_7778022_101210,4289_139 -4289_75976,93,4289_12403,Heuston Station,103731678,0,4289_7778022_101210,4289_139 -4289_75976,94,4289_12404,Heuston Station,103841678,0,4289_7778022_101210,4289_139 -4289_75976,95,4289_12405,Heuston Station,103951678,0,4289_7778022_101210,4289_139 -4289_75961,93,4289_1241,DCU Helix,103732300,0,4289_7778022_104040,4289_14 -4289_75976,96,4289_12411,Heuston Station,104064502,0,4289_7778022_100890,4289_140 -4289_75976,92,4289_12417,Heuston Station,103621720,0,4289_7778022_101170,4289_139 -4289_75976,93,4289_12418,Heuston Station,103731720,0,4289_7778022_101170,4289_139 -4289_75976,94,4289_12419,Heuston Station,103841720,0,4289_7778022_101170,4289_139 -4289_75961,94,4289_1242,DCU Helix,103842300,0,4289_7778022_104040,4289_14 -4289_75976,95,4289_12420,Heuston Station,103951720,0,4289_7778022_101170,4289_139 -4289_75976,96,4289_12426,Heuston Station,104064556,0,4289_7778022_100870,4289_139 -4289_75961,95,4289_1243,DCU Helix,103952300,0,4289_7778022_104040,4289_14 -4289_75976,92,4289_12432,Heuston Station,103621758,0,4289_7778022_101200,4289_139 -4289_75976,93,4289_12433,Heuston Station,103731758,0,4289_7778022_101200,4289_139 -4289_75976,94,4289_12434,Heuston Station,103841758,0,4289_7778022_101200,4289_139 -4289_75976,95,4289_12435,Heuston Station,103951758,0,4289_7778022_101200,4289_139 -4289_75976,92,4289_12442,Heuston Station,103621788,0,4289_7778022_101190,4289_139 -4289_75976,93,4289_12443,Heuston Station,103731788,0,4289_7778022_101190,4289_139 -4289_75976,94,4289_12444,Heuston Station,103841788,0,4289_7778022_101190,4289_139 -4289_75976,95,4289_12445,Heuston Station,103951788,0,4289_7778022_101190,4289_139 -4289_75976,96,4289_12451,Heuston Station,104064608,0,4289_7778022_100880,4289_140 -4289_75976,92,4289_12457,Heuston Station,103621828,0,4289_7778022_101150,4289_139 -4289_75976,93,4289_12458,Heuston Station,103731828,0,4289_7778022_101150,4289_139 -4289_75976,94,4289_12459,Heuston Station,103841828,0,4289_7778022_101150,4289_139 -4289_75976,95,4289_12460,Heuston Station,103951828,0,4289_7778022_101150,4289_139 -4289_75976,96,4289_12466,Heuston Station,104064662,0,4289_7778022_100900,4289_139 -4289_75976,92,4289_12472,Heuston Station,103621866,0,4289_7778022_101180,4289_139 -4289_75976,93,4289_12473,Heuston Station,103731866,0,4289_7778022_101180,4289_139 -4289_75976,94,4289_12474,Heuston Station,103841866,0,4289_7778022_101180,4289_139 -4289_75976,95,4289_12475,Heuston Station,103951866,0,4289_7778022_101180,4289_139 -4289_75976,92,4289_12482,Heuston Station,103621908,0,4289_7778022_101130,4289_139 -4289_75976,93,4289_12483,Heuston Station,103731908,0,4289_7778022_101130,4289_139 -4289_75976,94,4289_12484,Heuston Station,103841908,0,4289_7778022_101130,4289_139 -4289_75976,95,4289_12485,Heuston Station,103951908,0,4289_7778022_101130,4289_139 -4289_75961,96,4289_1249,DCU Helix,104065046,0,4289_7778022_104110,4289_15 -4289_75976,96,4289_12491,Heuston Station,104064712,0,4289_7778022_100910,4289_140 -4289_75976,92,4289_12497,Heuston Station,103621944,0,4289_7778022_101210,4289_139 -4289_75976,93,4289_12498,Heuston Station,103731944,0,4289_7778022_101210,4289_139 -4289_75976,94,4289_12499,Heuston Station,103841944,0,4289_7778022_101210,4289_139 -4289_75976,95,4289_12500,Heuston Station,103951944,0,4289_7778022_101210,4289_139 -4289_75976,96,4289_12506,Heuston Station,104064770,0,4289_7778022_100890,4289_139 -4289_75976,92,4289_12512,Heuston Station,103621982,0,4289_7778022_101170,4289_139 -4289_75976,93,4289_12513,Heuston Station,103731982,0,4289_7778022_101170,4289_139 -4289_75976,94,4289_12514,Heuston Station,103841982,0,4289_7778022_101170,4289_139 -4289_75976,95,4289_12515,Heuston Station,103951982,0,4289_7778022_101170,4289_139 -4289_75976,92,4289_12522,Heuston Station,103622020,0,4289_7778022_101162,4289_139 -4289_75976,93,4289_12523,Heuston Station,103732020,0,4289_7778022_101162,4289_139 -4289_75976,94,4289_12524,Heuston Station,103842020,0,4289_7778022_101162,4289_139 -4289_75976,95,4289_12525,Heuston Station,103952020,0,4289_7778022_101162,4289_139 -4289_75976,96,4289_12531,Heuston Station,104064814,0,4289_7778022_100870,4289_140 -4289_75976,92,4289_12537,Heuston Station,103622060,0,4289_7778022_101200,4289_139 -4289_75976,93,4289_12538,Heuston Station,103732060,0,4289_7778022_101200,4289_139 -4289_75976,94,4289_12539,Heuston Station,103842060,0,4289_7778022_101200,4289_139 -4289_75976,95,4289_12540,Heuston Station,103952060,0,4289_7778022_101200,4289_139 -4289_75976,96,4289_12546,Heuston Station,104064870,0,4289_7778022_100880,4289_139 -4289_75961,92,4289_1255,DCU Helix,103622418,0,4289_7778022_104140,4289_14 -4289_75976,92,4289_12552,Heuston Station,103622102,0,4289_7778022_101190,4289_139 -4289_75976,93,4289_12553,Heuston Station,103732102,0,4289_7778022_101190,4289_139 -4289_75976,94,4289_12554,Heuston Station,103842102,0,4289_7778022_101190,4289_139 -4289_75976,95,4289_12555,Heuston Station,103952102,0,4289_7778022_101190,4289_139 -4289_75961,93,4289_1256,DCU Helix,103732418,0,4289_7778022_104140,4289_14 -4289_75976,92,4289_12562,Heuston Station,103622152,0,4289_7778022_101150,4289_139 -4289_75976,93,4289_12563,Heuston Station,103732152,0,4289_7778022_101150,4289_139 -4289_75976,94,4289_12564,Heuston Station,103842152,0,4289_7778022_101150,4289_139 -4289_75976,95,4289_12565,Heuston Station,103952152,0,4289_7778022_101150,4289_139 -4289_75961,94,4289_1257,DCU Helix,103842418,0,4289_7778022_104140,4289_14 -4289_75976,96,4289_12571,Heuston Station,104064930,0,4289_7778022_100900,4289_140 -4289_75976,92,4289_12577,Heuston Station,103622182,0,4289_7778022_101180,4289_139 -4289_75976,93,4289_12578,Heuston Station,103732182,0,4289_7778022_101180,4289_139 -4289_75976,94,4289_12579,Heuston Station,103842182,0,4289_7778022_101180,4289_139 -4289_75961,95,4289_1258,DCU Helix,103952418,0,4289_7778022_104140,4289_14 -4289_75976,95,4289_12580,Heuston Station,103952182,0,4289_7778022_101180,4289_139 -4289_75976,92,4289_12587,Heuston Station,103622216,0,4289_7778022_101130,4289_139 -4289_75976,93,4289_12588,Heuston Station,103732216,0,4289_7778022_101130,4289_139 -4289_75976,94,4289_12589,Heuston Station,103842216,0,4289_7778022_101130,4289_139 -4289_75976,95,4289_12590,Heuston Station,103952216,0,4289_7778022_101130,4289_139 -4289_75976,96,4289_12596,Heuston Station,104064976,0,4289_7778022_100910,4289_140 -4289_75976,92,4289_12602,Heuston Station,103622246,0,4289_7778022_101122,4289_139 -4289_75976,93,4289_12603,Heuston Station,103732246,0,4289_7778022_101122,4289_139 -4289_75976,94,4289_12604,Heuston Station,103842246,0,4289_7778022_101122,4289_139 -4289_75976,95,4289_12605,Heuston Station,103952246,0,4289_7778022_101122,4289_139 -4289_75976,92,4289_12612,Heuston Station,103622282,0,4289_7778022_101210,4289_139 -4289_75976,93,4289_12613,Heuston Station,103732282,0,4289_7778022_101210,4289_139 -4289_75976,94,4289_12614,Heuston Station,103842282,0,4289_7778022_101210,4289_139 -4289_75976,95,4289_12615,Heuston Station,103952282,0,4289_7778022_101210,4289_139 -4289_75976,96,4289_12621,Heuston Station,104065026,0,4289_7778022_100890,4289_140 -4289_75976,92,4289_12627,Heuston Station,103622312,0,4289_7778022_101170,4289_139 -4289_75976,93,4289_12628,Heuston Station,103732312,0,4289_7778022_101170,4289_139 -4289_75976,94,4289_12629,Heuston Station,103842312,0,4289_7778022_101170,4289_139 -4289_75976,95,4289_12630,Heuston Station,103952312,0,4289_7778022_101170,4289_139 -4289_75976,92,4289_12637,Heuston Station,103622348,0,4289_7778022_101162,4289_139 -4289_75976,93,4289_12638,Heuston Station,103732348,0,4289_7778022_101162,4289_139 -4289_75976,94,4289_12639,Heuston Station,103842348,0,4289_7778022_101162,4289_139 -4289_75961,96,4289_1264,DCU Helix,104065152,0,4289_7778022_104080,4289_15 -4289_75976,95,4289_12640,Heuston Station,103952348,0,4289_7778022_101162,4289_139 -4289_75976,96,4289_12646,Heuston Station,104065088,0,4289_7778022_100870,4289_140 -4289_75976,92,4289_12652,Heuston Station,103622382,0,4289_7778022_101200,4289_139 -4289_75976,93,4289_12653,Heuston Station,103732382,0,4289_7778022_101200,4289_139 -4289_75976,94,4289_12654,Heuston Station,103842382,0,4289_7778022_101200,4289_139 -4289_75976,95,4289_12655,Heuston Station,103952382,0,4289_7778022_101200,4289_139 -4289_75976,92,4289_12662,Heuston Station,103622404,0,4289_7778022_101142,4289_139 -4289_75976,93,4289_12663,Heuston Station,103732404,0,4289_7778022_101142,4289_139 -4289_75976,94,4289_12664,Heuston Station,103842404,0,4289_7778022_101142,4289_139 -4289_75976,95,4289_12665,Heuston Station,103952404,0,4289_7778022_101142,4289_139 -4289_75976,96,4289_12671,Heuston Station,104065136,0,4289_7778022_100880,4289_140 -4289_75976,92,4289_12677,Heuston Station,103622432,0,4289_7778022_101190,4289_139 -4289_75976,93,4289_12678,Heuston Station,103732432,0,4289_7778022_101190,4289_139 -4289_75976,94,4289_12679,Heuston Station,103842432,0,4289_7778022_101190,4289_139 -4289_75976,95,4289_12680,Heuston Station,103952432,0,4289_7778022_101190,4289_139 -4289_75976,92,4289_12687,Heuston Station,103622470,0,4289_7778022_101150,4289_139 -4289_75976,93,4289_12688,Heuston Station,103732470,0,4289_7778022_101150,4289_139 -4289_75976,94,4289_12689,Heuston Station,103842470,0,4289_7778022_101150,4289_139 -4289_75976,95,4289_12690,Heuston Station,103952470,0,4289_7778022_101150,4289_139 -4289_75976,96,4289_12696,Heuston Station,104065192,0,4289_7778022_100900,4289_140 -4289_75961,92,4289_1270,DCU Helix,103622538,0,4289_7778022_104080,4289_14 -4289_75976,92,4289_12702,Heuston Station,103622498,0,4289_7778022_101180,4289_139 -4289_75976,93,4289_12703,Heuston Station,103732498,0,4289_7778022_101180,4289_139 -4289_75976,94,4289_12704,Heuston Station,103842498,0,4289_7778022_101180,4289_139 -4289_75976,95,4289_12705,Heuston Station,103952498,0,4289_7778022_101180,4289_139 -4289_75961,93,4289_1271,DCU Helix,103732538,0,4289_7778022_104080,4289_14 -4289_75976,92,4289_12712,Heuston Station,103622526,0,4289_7778022_101130,4289_139 -4289_75976,93,4289_12713,Heuston Station,103732526,0,4289_7778022_101130,4289_139 -4289_75976,94,4289_12714,Heuston Station,103842526,0,4289_7778022_101130,4289_139 -4289_75976,95,4289_12715,Heuston Station,103952526,0,4289_7778022_101130,4289_139 -4289_75961,94,4289_1272,DCU Helix,103842538,0,4289_7778022_104080,4289_14 -4289_75976,96,4289_12721,Heuston Station,104065238,0,4289_7778022_100910,4289_140 -4289_75976,92,4289_12727,Heuston Station,103622566,0,4289_7778022_101122,4289_139 -4289_75976,93,4289_12728,Heuston Station,103732566,0,4289_7778022_101122,4289_139 -4289_75976,94,4289_12729,Heuston Station,103842566,0,4289_7778022_101122,4289_139 -4289_75961,95,4289_1273,DCU Helix,103952538,0,4289_7778022_104080,4289_14 -4289_75976,95,4289_12730,Heuston Station,103952566,0,4289_7778022_101122,4289_139 -4289_75976,96,4289_12736,Heuston Station,104065292,0,4289_7778022_100890,4289_139 -4289_75976,92,4289_12742,Heuston Station,103622602,0,4289_7778022_101170,4289_139 -4289_75976,93,4289_12743,Heuston Station,103732602,0,4289_7778022_101170,4289_139 -4289_75976,94,4289_12744,Heuston Station,103842602,0,4289_7778022_101170,4289_139 -4289_75976,95,4289_12745,Heuston Station,103952602,0,4289_7778022_101170,4289_139 -4289_75976,92,4289_12752,Heuston Station,103622638,0,4289_7778022_101200,4289_139 -4289_75976,93,4289_12753,Heuston Station,103732638,0,4289_7778022_101200,4289_139 -4289_75976,94,4289_12754,Heuston Station,103842638,0,4289_7778022_101200,4289_139 -4289_75976,95,4289_12755,Heuston Station,103952638,0,4289_7778022_101200,4289_139 -4289_75976,96,4289_12761,Heuston Station,104065346,0,4289_7778022_100870,4289_140 -4289_75976,92,4289_12767,Heuston Station,103622698,0,4289_7778022_101190,4289_139 -4289_75976,93,4289_12768,Heuston Station,103732698,0,4289_7778022_101190,4289_139 -4289_75976,94,4289_12769,Heuston Station,103842698,0,4289_7778022_101190,4289_139 -4289_75976,95,4289_12770,Heuston Station,103952698,0,4289_7778022_101190,4289_139 -4289_75976,96,4289_12776,Heuston Station,104065394,0,4289_7778022_100880,4289_140 -4289_75976,92,4289_12782,Heuston Station,103622738,0,4289_7778022_101180,4289_139 -4289_75976,93,4289_12783,Heuston Station,103732738,0,4289_7778022_101180,4289_139 -4289_75976,94,4289_12784,Heuston Station,103842738,0,4289_7778022_101180,4289_139 -4289_75976,95,4289_12785,Heuston Station,103952738,0,4289_7778022_101180,4289_139 -4289_75961,96,4289_1279,DCU Helix,104065258,0,4289_7778022_104100,4289_15 -4289_75976,96,4289_12791,Heuston Station,104065438,0,4289_7778022_100910,4289_140 -4289_75976,92,4289_12797,Heuston Station,103622794,0,4289_7778022_101122,4289_139 -4289_75976,93,4289_12798,Heuston Station,103732794,0,4289_7778022_101122,4289_139 -4289_75976,94,4289_12799,Heuston Station,103842794,0,4289_7778022_101122,4289_139 -4289_75960,92,4289_128,Sutton Station,103621614,0,4289_7778022_103502,4289_1 -4289_75976,95,4289_12800,Heuston Station,103952794,0,4289_7778022_101122,4289_139 -4289_75976,96,4289_12806,Heuston Station,104065488,0,4289_7778022_100890,4289_140 -4289_75976,92,4289_12812,Heuston Station,103622838,0,4289_7778022_101200,4289_139 -4289_75976,93,4289_12813,Heuston Station,103732838,0,4289_7778022_101200,4289_139 -4289_75976,94,4289_12814,Heuston Station,103842838,0,4289_7778022_101200,4289_139 -4289_75976,95,4289_12815,Heuston Station,103952838,0,4289_7778022_101200,4289_139 -4289_75976,96,4289_12821,Heuston Station,104065530,0,4289_7778022_100870,4289_140 -4289_75976,92,4289_12827,Heuston Station,103622890,0,4289_7778022_101190,4289_139 -4289_75976,93,4289_12828,Heuston Station,103732890,0,4289_7778022_101190,4289_139 -4289_75976,94,4289_12829,Heuston Station,103842890,0,4289_7778022_101190,4289_139 -4289_75976,95,4289_12830,Heuston Station,103952890,0,4289_7778022_101190,4289_139 -4289_75976,96,4289_12836,Heuston Station,104065574,0,4289_7778022_100880,4289_140 -4289_75976,92,4289_12842,Heuston Station,103622936,0,4289_7778022_101180,4289_139 -4289_75976,93,4289_12843,Heuston Station,103732936,0,4289_7778022_101180,4289_139 -4289_75976,94,4289_12844,Heuston Station,103842936,0,4289_7778022_101180,4289_139 -4289_75976,95,4289_12845,Heuston Station,103952936,0,4289_7778022_101180,4289_139 -4289_75961,92,4289_1285,DCU Helix,103622652,0,4289_7778022_104170,4289_14 -4289_75976,96,4289_12851,Heuston Station,104065618,0,4289_7778022_100910,4289_140 -4289_75976,92,4289_12857,Heuston Station,103622986,0,4289_7778022_101122,4289_139 -4289_75976,93,4289_12858,Heuston Station,103732986,0,4289_7778022_101122,4289_139 -4289_75976,94,4289_12859,Heuston Station,103842986,0,4289_7778022_101122,4289_139 -4289_75961,93,4289_1286,DCU Helix,103732652,0,4289_7778022_104170,4289_14 -4289_75976,95,4289_12860,Heuston Station,103952986,0,4289_7778022_101122,4289_139 -4289_75976,96,4289_12866,Heuston Station,104065658,0,4289_7778022_100890,4289_140 -4289_75961,94,4289_1287,DCU Helix,103842652,0,4289_7778022_104170,4289_14 -4289_75976,92,4289_12872,Heuston Station,103623032,0,4289_7778022_101200,4289_139 -4289_75976,93,4289_12873,Heuston Station,103733032,0,4289_7778022_101200,4289_139 -4289_75976,94,4289_12874,Heuston Station,103843032,0,4289_7778022_101200,4289_139 -4289_75976,95,4289_12875,Heuston Station,103953032,0,4289_7778022_101200,4289_139 -4289_75961,95,4289_1288,DCU Helix,103952652,0,4289_7778022_104170,4289_14 -4289_75976,96,4289_12881,Heuston Station,104065700,0,4289_7778022_100870,4289_140 -4289_75976,2,4289_12886,Heuston Station,103613062,0,4289_7778022_101190,4289_139 -4289_75976,92,4289_12887,Heuston Station,103623062,0,4289_7778022_101190,4289_139 -4289_75976,93,4289_12888,Heuston Station,103733062,0,4289_7778022_101190,4289_139 -4289_75976,94,4289_12889,Heuston Station,103843062,0,4289_7778022_101190,4289_139 -4289_75976,95,4289_12890,Heuston Station,103953062,0,4289_7778022_101190,4289_139 -4289_75976,96,4289_12896,Heuston Station,104065730,0,4289_7778022_100880,4289_140 -4289_75960,93,4289_129,Sutton Station,103731614,0,4289_7778022_103502,4289_1 -4289_75976,2,4289_12901,Heuston Station,103613082,0,4289_7778022_101180,4289_139 -4289_75976,92,4289_12902,Heuston Station,103623082,0,4289_7778022_101180,4289_139 -4289_75976,93,4289_12903,Heuston Station,103733082,0,4289_7778022_101180,4289_139 -4289_75976,94,4289_12904,Heuston Station,103843082,0,4289_7778022_101180,4289_139 -4289_75976,95,4289_12905,Heuston Station,103953082,0,4289_7778022_101180,4289_139 -4289_75976,96,4289_12911,Heuston Station,104065750,0,4289_7778022_100910,4289_140 -4289_75976,92,4289_12917,Clontarf Station,103621005,1,4289_7778022_101130,4289_142 -4289_75976,93,4289_12918,Clontarf Station,103731005,1,4289_7778022_101130,4289_142 -4289_75976,94,4289_12919,Clontarf Station,103841005,1,4289_7778022_101130,4289_142 -4289_75976,95,4289_12920,Clontarf Station,103951005,1,4289_7778022_101130,4289_142 -4289_75976,96,4289_12926,Clontarf Station,104064003,1,4289_7778022_100880,4289_142 -4289_75976,92,4289_12928,Clontarf Station,103621027,1,4289_7778022_101141,4289_142 -4289_75976,93,4289_12929,Clontarf Station,103731027,1,4289_7778022_101141,4289_142 -4289_75976,94,4289_12930,Clontarf Station,103841027,1,4289_7778022_101141,4289_142 -4289_75976,95,4289_12931,Clontarf Station,103951027,1,4289_7778022_101141,4289_142 -4289_75976,96,4289_12937,Clontarf Station,104064023,1,4289_7778022_100890,4289_142 -4289_75976,92,4289_12939,Clontarf Station,103621053,1,4289_7778022_101161,4289_142 -4289_75961,96,4289_1294,DCU Helix,104065366,0,4289_7778022_104090,4289_15 -4289_75976,93,4289_12940,Clontarf Station,103731053,1,4289_7778022_101161,4289_142 -4289_75976,94,4289_12941,Clontarf Station,103841053,1,4289_7778022_101161,4289_142 -4289_75976,95,4289_12942,Clontarf Station,103951053,1,4289_7778022_101161,4289_142 -4289_75976,92,4289_12949,Clontarf Station,103621079,1,4289_7778022_101121,4289_142 -4289_75976,93,4289_12950,Clontarf Station,103731079,1,4289_7778022_101121,4289_142 -4289_75976,94,4289_12951,Clontarf Station,103841079,1,4289_7778022_101121,4289_142 -4289_75976,95,4289_12952,Clontarf Station,103951079,1,4289_7778022_101121,4289_142 -4289_75976,96,4289_12958,Clontarf Station,104064051,1,4289_7778022_100870,4289_143 -4289_75976,92,4289_12960,Clontarf Station,103621109,1,4289_7778022_101150,4289_142 -4289_75976,93,4289_12961,Clontarf Station,103731109,1,4289_7778022_101150,4289_142 -4289_75976,94,4289_12962,Clontarf Station,103841109,1,4289_7778022_101150,4289_142 -4289_75976,95,4289_12963,Clontarf Station,103951109,1,4289_7778022_101150,4289_142 -4289_75976,92,4289_12970,Clontarf Station,103621141,1,4289_7778022_101180,4289_142 -4289_75976,93,4289_12971,Clontarf Station,103731141,1,4289_7778022_101180,4289_142 -4289_75976,94,4289_12972,Clontarf Station,103841141,1,4289_7778022_101180,4289_142 -4289_75976,95,4289_12973,Clontarf Station,103951141,1,4289_7778022_101180,4289_142 -4289_75976,96,4289_12979,Clontarf Station,104064083,1,4289_7778022_100880,4289_143 -4289_75976,92,4289_12981,Clontarf Station,103621173,1,4289_7778022_101130,4289_142 -4289_75976,93,4289_12982,Clontarf Station,103731173,1,4289_7778022_101130,4289_142 -4289_75976,94,4289_12983,Clontarf Station,103841173,1,4289_7778022_101130,4289_142 -4289_75976,95,4289_12984,Clontarf Station,103951173,1,4289_7778022_101130,4289_142 -4289_75976,92,4289_12995,Clontarf Station,103621195,1,4289_7778022_101141,4289_142 -4289_75976,93,4289_12996,Clontarf Station,103731195,1,4289_7778022_101141,4289_142 -4289_75976,94,4289_12997,Clontarf Station,103841195,1,4289_7778022_101141,4289_142 -4289_75976,95,4289_12998,Clontarf Station,103951195,1,4289_7778022_101141,4289_142 -4289_75960,94,4289_130,Sutton Station,103841614,0,4289_7778022_103502,4289_1 -4289_75961,92,4289_1300,DCU Helix,103622762,0,4289_7778022_104190,4289_14 -4289_75976,96,4289_13004,Clontarf Station,104064129,1,4289_7778022_100900,4289_143 -4289_75976,92,4289_13006,Clontarf Station,103621231,1,4289_7778022_101170,4289_142 -4289_75976,93,4289_13007,Clontarf Station,103731231,1,4289_7778022_101170,4289_142 -4289_75976,94,4289_13008,Clontarf Station,103841231,1,4289_7778022_101170,4289_142 -4289_75976,95,4289_13009,Clontarf Station,103951231,1,4289_7778022_101170,4289_142 -4289_75961,93,4289_1301,DCU Helix,103732762,0,4289_7778022_104190,4289_14 -4289_75976,92,4289_13016,Clontarf Station,103621265,1,4289_7778022_101161,4289_142 -4289_75976,93,4289_13017,Clontarf Station,103731265,1,4289_7778022_101161,4289_142 -4289_75976,94,4289_13018,Clontarf Station,103841265,1,4289_7778022_101161,4289_142 -4289_75976,95,4289_13019,Clontarf Station,103951265,1,4289_7778022_101161,4289_142 -4289_75961,94,4289_1302,DCU Helix,103842762,0,4289_7778022_104190,4289_14 -4289_75976,96,4289_13025,Clontarf Station,104064169,1,4289_7778022_100890,4289_143 -4289_75976,92,4289_13027,Clontarf Station,103621313,1,4289_7778022_101200,4289_142 -4289_75976,93,4289_13028,Clontarf Station,103731313,1,4289_7778022_101200,4289_142 -4289_75976,94,4289_13029,Clontarf Station,103841313,1,4289_7778022_101200,4289_142 -4289_75961,95,4289_1303,DCU Helix,103952762,0,4289_7778022_104190,4289_14 -4289_75976,95,4289_13030,Clontarf Station,103951313,1,4289_7778022_101200,4289_142 -4289_75976,92,4289_13037,Clontarf Station,103621345,1,4289_7778022_101121,4289_142 -4289_75976,93,4289_13038,Clontarf Station,103731345,1,4289_7778022_101121,4289_142 -4289_75976,94,4289_13039,Clontarf Station,103841345,1,4289_7778022_101121,4289_142 -4289_75976,95,4289_13040,Clontarf Station,103951345,1,4289_7778022_101121,4289_142 -4289_75976,96,4289_13046,Clontarf Station,104064215,1,4289_7778022_100870,4289_143 -4289_75976,92,4289_13052,Clontarf Station,103621375,1,4289_7778022_101190,4289_142 -4289_75976,93,4289_13053,Clontarf Station,103731375,1,4289_7778022_101190,4289_142 -4289_75976,94,4289_13054,Clontarf Station,103841375,1,4289_7778022_101190,4289_142 -4289_75976,95,4289_13055,Clontarf Station,103951375,1,4289_7778022_101190,4289_142 -4289_75976,92,4289_13062,Clontarf Station,103621399,1,4289_7778022_101150,4289_142 -4289_75976,93,4289_13063,Clontarf Station,103731399,1,4289_7778022_101150,4289_142 -4289_75976,94,4289_13064,Clontarf Station,103841399,1,4289_7778022_101150,4289_142 -4289_75976,95,4289_13065,Clontarf Station,103951399,1,4289_7778022_101150,4289_142 -4289_75976,96,4289_13071,Clontarf Station,104064263,1,4289_7778022_100880,4289_143 -4289_75976,92,4289_13073,Clontarf Station,103621437,1,4289_7778022_101180,4289_142 -4289_75976,93,4289_13074,Clontarf Station,103731437,1,4289_7778022_101180,4289_142 -4289_75976,94,4289_13075,Clontarf Station,103841437,1,4289_7778022_101180,4289_142 -4289_75976,95,4289_13076,Clontarf Station,103951437,1,4289_7778022_101180,4289_142 -4289_75976,96,4289_13082,Clontarf Station,104064317,1,4289_7778022_100900,4289_142 -4289_75976,92,4289_13088,Clontarf Station,103621481,1,4289_7778022_101130,4289_142 -4289_75976,93,4289_13089,Clontarf Station,103731481,1,4289_7778022_101130,4289_142 -4289_75961,96,4289_1309,DCU Helix,104065460,0,4289_7778022_104150,4289_15 -4289_75976,94,4289_13090,Clontarf Station,103841481,1,4289_7778022_101130,4289_142 -4289_75976,95,4289_13091,Clontarf Station,103951481,1,4289_7778022_101130,4289_142 -4289_75976,92,4289_13098,Clontarf Station,103621515,1,4289_7778022_101210,4289_142 -4289_75976,93,4289_13099,Clontarf Station,103731515,1,4289_7778022_101210,4289_142 -4289_75960,95,4289_131,Sutton Station,103951614,0,4289_7778022_103502,4289_1 -4289_75976,94,4289_13100,Clontarf Station,103841515,1,4289_7778022_101210,4289_142 -4289_75976,95,4289_13101,Clontarf Station,103951515,1,4289_7778022_101210,4289_142 -4289_75976,96,4289_13107,Clontarf Station,104064367,1,4289_7778022_100890,4289_143 -4289_75976,92,4289_13113,Clontarf Station,103621553,1,4289_7778022_101170,4289_142 -4289_75976,93,4289_13114,Clontarf Station,103731553,1,4289_7778022_101170,4289_142 -4289_75976,94,4289_13115,Clontarf Station,103841553,1,4289_7778022_101170,4289_142 -4289_75976,95,4289_13116,Clontarf Station,103951553,1,4289_7778022_101170,4289_142 -4289_75976,96,4289_13122,Clontarf Station,104064417,1,4289_7778022_100870,4289_142 -4289_75976,92,4289_13128,Clontarf Station,103621589,1,4289_7778022_101200,4289_142 -4289_75976,93,4289_13129,Clontarf Station,103731589,1,4289_7778022_101200,4289_142 -4289_75976,94,4289_13130,Clontarf Station,103841589,1,4289_7778022_101200,4289_142 -4289_75976,95,4289_13131,Clontarf Station,103951589,1,4289_7778022_101200,4289_142 -4289_75976,92,4289_13138,Clontarf Station,103621627,1,4289_7778022_101190,4289_142 -4289_75976,93,4289_13139,Clontarf Station,103731627,1,4289_7778022_101190,4289_142 -4289_75976,94,4289_13140,Clontarf Station,103841627,1,4289_7778022_101190,4289_142 -4289_75976,95,4289_13141,Clontarf Station,103951627,1,4289_7778022_101190,4289_142 -4289_75976,96,4289_13147,Clontarf Station,104064471,1,4289_7778022_100880,4289_143 -4289_75961,92,4289_1315,DCU Helix,103622866,0,4289_7778022_104060,4289_14 -4289_75976,92,4289_13153,Clontarf Station,103621663,1,4289_7778022_101150,4289_142 -4289_75976,93,4289_13154,Clontarf Station,103731663,1,4289_7778022_101150,4289_142 -4289_75976,94,4289_13155,Clontarf Station,103841663,1,4289_7778022_101150,4289_142 -4289_75976,95,4289_13156,Clontarf Station,103951663,1,4289_7778022_101150,4289_142 -4289_75961,93,4289_1316,DCU Helix,103732866,0,4289_7778022_104060,4289_14 -4289_75976,96,4289_13162,Clontarf Station,104064527,1,4289_7778022_100900,4289_142 -4289_75976,92,4289_13168,Clontarf Station,103621701,1,4289_7778022_101180,4289_142 -4289_75976,93,4289_13169,Clontarf Station,103731701,1,4289_7778022_101180,4289_142 -4289_75961,94,4289_1317,DCU Helix,103842866,0,4289_7778022_104060,4289_14 -4289_75976,94,4289_13170,Clontarf Station,103841701,1,4289_7778022_101180,4289_142 -4289_75976,95,4289_13171,Clontarf Station,103951701,1,4289_7778022_101180,4289_142 -4289_75976,92,4289_13178,Clontarf Station,103621735,1,4289_7778022_101130,4289_142 -4289_75976,93,4289_13179,Clontarf Station,103731735,1,4289_7778022_101130,4289_142 -4289_75961,95,4289_1318,DCU Helix,103952866,0,4289_7778022_104060,4289_14 -4289_75976,94,4289_13180,Clontarf Station,103841735,1,4289_7778022_101130,4289_142 -4289_75976,95,4289_13181,Clontarf Station,103951735,1,4289_7778022_101130,4289_142 -4289_75976,96,4289_13187,Clontarf Station,104064581,1,4289_7778022_100910,4289_143 -4289_75976,92,4289_13193,Clontarf Station,103621775,1,4289_7778022_101210,4289_142 -4289_75976,93,4289_13194,Clontarf Station,103731775,1,4289_7778022_101210,4289_142 -4289_75976,94,4289_13195,Clontarf Station,103841775,1,4289_7778022_101210,4289_142 -4289_75976,95,4289_13196,Clontarf Station,103951775,1,4289_7778022_101210,4289_142 -4289_75976,96,4289_13202,Clontarf Station,104064631,1,4289_7778022_100890,4289_142 -4289_75976,92,4289_13208,Clontarf Station,103621821,1,4289_7778022_101170,4289_142 -4289_75976,93,4289_13209,Clontarf Station,103731821,1,4289_7778022_101170,4289_142 -4289_75976,94,4289_13210,Clontarf Station,103841821,1,4289_7778022_101170,4289_142 -4289_75976,95,4289_13211,Clontarf Station,103951821,1,4289_7778022_101170,4289_142 -4289_75976,92,4289_13218,Clontarf Station,103621855,1,4289_7778022_101200,4289_142 -4289_75976,93,4289_13219,Clontarf Station,103731855,1,4289_7778022_101200,4289_142 -4289_75976,94,4289_13220,Clontarf Station,103841855,1,4289_7778022_101200,4289_142 -4289_75976,95,4289_13221,Clontarf Station,103951855,1,4289_7778022_101200,4289_142 -4289_75976,96,4289_13227,Clontarf Station,104064687,1,4289_7778022_100870,4289_143 -4289_75976,92,4289_13233,Clontarf Station,103621897,1,4289_7778022_101190,4289_142 -4289_75976,93,4289_13234,Clontarf Station,103731897,1,4289_7778022_101190,4289_142 -4289_75976,94,4289_13235,Clontarf Station,103841897,1,4289_7778022_101190,4289_142 -4289_75976,95,4289_13236,Clontarf Station,103951897,1,4289_7778022_101190,4289_142 -4289_75961,96,4289_1324,DCU Helix,104065550,0,4289_7778022_104172,4289_15 -4289_75976,96,4289_13242,Clontarf Station,104064741,1,4289_7778022_100880,4289_142 -4289_75976,92,4289_13248,Clontarf Station,103621939,1,4289_7778022_101150,4289_142 -4289_75976,93,4289_13249,Clontarf Station,103731939,1,4289_7778022_101150,4289_142 -4289_75976,94,4289_13250,Clontarf Station,103841939,1,4289_7778022_101150,4289_142 -4289_75976,95,4289_13251,Clontarf Station,103951939,1,4289_7778022_101150,4289_142 -4289_75976,92,4289_13258,Clontarf Station,103621969,1,4289_7778022_101180,4289_142 -4289_75976,93,4289_13259,Clontarf Station,103731969,1,4289_7778022_101180,4289_142 -4289_75976,94,4289_13260,Clontarf Station,103841969,1,4289_7778022_101180,4289_142 -4289_75976,95,4289_13261,Clontarf Station,103951969,1,4289_7778022_101180,4289_142 -4289_75976,96,4289_13267,Clontarf Station,104064789,1,4289_7778022_100900,4289_143 -4289_75976,92,4289_13273,Clontarf Station,103622007,1,4289_7778022_101130,4289_142 -4289_75976,93,4289_13274,Clontarf Station,103732007,1,4289_7778022_101130,4289_142 -4289_75976,94,4289_13275,Clontarf Station,103842007,1,4289_7778022_101130,4289_142 -4289_75976,95,4289_13276,Clontarf Station,103952007,1,4289_7778022_101130,4289_142 -4289_75976,96,4289_13282,Clontarf Station,104064847,1,4289_7778022_100910,4289_142 -4289_75976,92,4289_13288,Clontarf Station,103622045,1,4289_7778022_101210,4289_142 -4289_75976,93,4289_13289,Clontarf Station,103732045,1,4289_7778022_101210,4289_142 -4289_75976,94,4289_13290,Clontarf Station,103842045,1,4289_7778022_101210,4289_142 -4289_75976,95,4289_13291,Clontarf Station,103952045,1,4289_7778022_101210,4289_142 -4289_75976,92,4289_13298,Clontarf Station,103622091,1,4289_7778022_101170,4289_142 -4289_75976,93,4289_13299,Clontarf Station,103732091,1,4289_7778022_101170,4289_142 -4289_75961,92,4289_1330,Colntarf Station,103621147,1,4289_7778022_104110,4289_18 -4289_75976,94,4289_13300,Clontarf Station,103842091,1,4289_7778022_101170,4289_142 -4289_75976,95,4289_13301,Clontarf Station,103952091,1,4289_7778022_101170,4289_142 -4289_75976,96,4289_13307,Clontarf Station,104064901,1,4289_7778022_100890,4289_143 -4289_75961,93,4289_1331,Colntarf Station,103731147,1,4289_7778022_104110,4289_18 -4289_75976,92,4289_13313,Clontarf Station,103622119,1,4289_7778022_101162,4289_142 -4289_75976,93,4289_13314,Clontarf Station,103732119,1,4289_7778022_101162,4289_142 -4289_75976,94,4289_13315,Clontarf Station,103842119,1,4289_7778022_101162,4289_142 -4289_75976,95,4289_13316,Clontarf Station,103952119,1,4289_7778022_101162,4289_142 -4289_75961,94,4289_1332,Colntarf Station,103841147,1,4289_7778022_104110,4289_18 -4289_75976,92,4289_13323,Clontarf Station,103622151,1,4289_7778022_101200,4289_142 -4289_75976,93,4289_13324,Clontarf Station,103732151,1,4289_7778022_101200,4289_142 -4289_75976,94,4289_13325,Clontarf Station,103842151,1,4289_7778022_101200,4289_142 -4289_75976,95,4289_13326,Clontarf Station,103952151,1,4289_7778022_101200,4289_142 -4289_75961,95,4289_1333,Colntarf Station,103951147,1,4289_7778022_104110,4289_18 -4289_75976,96,4289_13332,Clontarf Station,104064953,1,4289_7778022_100870,4289_143 -4289_75976,92,4289_13338,Clontarf Station,103622193,1,4289_7778022_101142,4289_142 -4289_75976,93,4289_13339,Clontarf Station,103732193,1,4289_7778022_101142,4289_142 -4289_75976,94,4289_13340,Clontarf Station,103842193,1,4289_7778022_101142,4289_142 -4289_75976,95,4289_13341,Clontarf Station,103952193,1,4289_7778022_101142,4289_142 -4289_75976,92,4289_13348,Clontarf Station,103622223,1,4289_7778022_101190,4289_142 -4289_75976,93,4289_13349,Clontarf Station,103732223,1,4289_7778022_101190,4289_142 -4289_75976,94,4289_13350,Clontarf Station,103842223,1,4289_7778022_101190,4289_142 -4289_75976,95,4289_13351,Clontarf Station,103952223,1,4289_7778022_101190,4289_142 -4289_75976,96,4289_13357,Clontarf Station,104065007,1,4289_7778022_100880,4289_143 -4289_75976,92,4289_13363,Clontarf Station,103622269,1,4289_7778022_101150,4289_142 -4289_75976,93,4289_13364,Clontarf Station,103732269,1,4289_7778022_101150,4289_142 -4289_75976,94,4289_13365,Clontarf Station,103842269,1,4289_7778022_101150,4289_142 -4289_75976,95,4289_13366,Clontarf Station,103952269,1,4289_7778022_101150,4289_142 -4289_75976,92,4289_13373,Clontarf Station,103622315,1,4289_7778022_101180,4289_142 -4289_75976,93,4289_13374,Clontarf Station,103732315,1,4289_7778022_101180,4289_142 -4289_75976,94,4289_13375,Clontarf Station,103842315,1,4289_7778022_101180,4289_142 -4289_75976,95,4289_13376,Clontarf Station,103952315,1,4289_7778022_101180,4289_142 -4289_75976,96,4289_13382,Clontarf Station,104065059,1,4289_7778022_100900,4289_143 -4289_75976,92,4289_13388,Clontarf Station,103622343,1,4289_7778022_101130,4289_142 -4289_75976,93,4289_13389,Clontarf Station,103732343,1,4289_7778022_101130,4289_142 -4289_75976,94,4289_13390,Clontarf Station,103842343,1,4289_7778022_101130,4289_142 -4289_75976,95,4289_13391,Clontarf Station,103952343,1,4289_7778022_101130,4289_142 -4289_75976,92,4289_13398,Clontarf Station,103622371,1,4289_7778022_101122,4289_142 -4289_75976,93,4289_13399,Clontarf Station,103732371,1,4289_7778022_101122,4289_142 -4289_75961,92,4289_1340,Colntarf Station,103621251,1,4289_7778022_104040,4289_18 -4289_75976,94,4289_13400,Clontarf Station,103842371,1,4289_7778022_101122,4289_142 -4289_75976,95,4289_13401,Clontarf Station,103952371,1,4289_7778022_101122,4289_142 -4289_75976,96,4289_13407,Clontarf Station,104065107,1,4289_7778022_100910,4289_143 -4289_75961,93,4289_1341,Colntarf Station,103731251,1,4289_7778022_104040,4289_18 -4289_75976,92,4289_13413,Clontarf Station,103622407,1,4289_7778022_101210,4289_142 -4289_75976,93,4289_13414,Clontarf Station,103732407,1,4289_7778022_101210,4289_142 -4289_75976,94,4289_13415,Clontarf Station,103842407,1,4289_7778022_101210,4289_142 -4289_75976,95,4289_13416,Clontarf Station,103952407,1,4289_7778022_101210,4289_142 -4289_75961,94,4289_1342,Colntarf Station,103841251,1,4289_7778022_104040,4289_18 -4289_75976,92,4289_13423,Clontarf Station,103622435,1,4289_7778022_101170,4289_142 -4289_75976,93,4289_13424,Clontarf Station,103732435,1,4289_7778022_101170,4289_142 -4289_75976,94,4289_13425,Clontarf Station,103842435,1,4289_7778022_101170,4289_142 -4289_75976,95,4289_13426,Clontarf Station,103952435,1,4289_7778022_101170,4289_142 -4289_75961,95,4289_1343,Colntarf Station,103951251,1,4289_7778022_104040,4289_18 -4289_75976,96,4289_13432,Clontarf Station,104065165,1,4289_7778022_100890,4289_143 -4289_75976,92,4289_13438,Clontarf Station,103622465,1,4289_7778022_101162,4289_142 -4289_75976,93,4289_13439,Clontarf Station,103732465,1,4289_7778022_101162,4289_142 -4289_75976,94,4289_13440,Clontarf Station,103842465,1,4289_7778022_101162,4289_142 -4289_75976,95,4289_13441,Clontarf Station,103952465,1,4289_7778022_101162,4289_142 -4289_75976,92,4289_13448,Clontarf Station,103622489,1,4289_7778022_101200,4289_142 -4289_75976,93,4289_13449,Clontarf Station,103732489,1,4289_7778022_101200,4289_142 -4289_75976,94,4289_13450,Clontarf Station,103842489,1,4289_7778022_101200,4289_142 -4289_75976,95,4289_13451,Clontarf Station,103952489,1,4289_7778022_101200,4289_142 -4289_75976,96,4289_13457,Clontarf Station,104065217,1,4289_7778022_100870,4289_143 -4289_75976,92,4289_13463,Clontarf Station,103622533,1,4289_7778022_101142,4289_142 -4289_75976,93,4289_13464,Clontarf Station,103732533,1,4289_7778022_101142,4289_142 -4289_75976,94,4289_13465,Clontarf Station,103842533,1,4289_7778022_101142,4289_142 -4289_75976,95,4289_13466,Clontarf Station,103952533,1,4289_7778022_101142,4289_142 -4289_75976,96,4289_13472,Clontarf Station,104065265,1,4289_7778022_100880,4289_142 -4289_75976,92,4289_13478,Clontarf Station,103622573,1,4289_7778022_101190,4289_142 -4289_75976,93,4289_13479,Clontarf Station,103732573,1,4289_7778022_101190,4289_142 -4289_75976,94,4289_13480,Clontarf Station,103842573,1,4289_7778022_101190,4289_142 -4289_75976,95,4289_13481,Clontarf Station,103952573,1,4289_7778022_101190,4289_142 -4289_75976,92,4289_13488,Clontarf Station,103622609,1,4289_7778022_101180,4289_142 -4289_75976,93,4289_13489,Clontarf Station,103732609,1,4289_7778022_101180,4289_142 -4289_75961,96,4289_1349,Colntarf Station,104064205,1,4289_7778022_104110,4289_18 -4289_75976,94,4289_13490,Clontarf Station,103842609,1,4289_7778022_101180,4289_142 -4289_75976,95,4289_13491,Clontarf Station,103952609,1,4289_7778022_101180,4289_142 -4289_75976,96,4289_13497,Clontarf Station,104065327,1,4289_7778022_100910,4289_143 -4289_75976,92,4289_13503,Clontarf Station,103622659,1,4289_7778022_101122,4289_142 -4289_75976,93,4289_13504,Clontarf Station,103732659,1,4289_7778022_101122,4289_142 -4289_75976,94,4289_13505,Clontarf Station,103842659,1,4289_7778022_101122,4289_142 -4289_75976,95,4289_13506,Clontarf Station,103952659,1,4289_7778022_101122,4289_142 -4289_75961,92,4289_1351,Colntarf Station,103621411,1,4289_7778022_104140,4289_18 -4289_75976,96,4289_13512,Clontarf Station,104065369,1,4289_7778022_100890,4289_143 -4289_75976,92,4289_13518,Clontarf Station,103622719,1,4289_7778022_101200,4289_142 -4289_75976,93,4289_13519,Clontarf Station,103732719,1,4289_7778022_101200,4289_142 -4289_75961,93,4289_1352,Colntarf Station,103731411,1,4289_7778022_104140,4289_18 -4289_75976,94,4289_13520,Clontarf Station,103842719,1,4289_7778022_101200,4289_142 -4289_75976,95,4289_13521,Clontarf Station,103952719,1,4289_7778022_101200,4289_142 -4289_75976,96,4289_13527,Clontarf Station,104065417,1,4289_7778022_100870,4289_143 -4289_75961,94,4289_1353,Colntarf Station,103841411,1,4289_7778022_104140,4289_18 -4289_75976,92,4289_13533,Clontarf Station,103622763,1,4289_7778022_101190,4289_142 -4289_75976,93,4289_13534,Clontarf Station,103732763,1,4289_7778022_101190,4289_142 -4289_75976,94,4289_13535,Clontarf Station,103842763,1,4289_7778022_101190,4289_142 -4289_75976,95,4289_13536,Clontarf Station,103952763,1,4289_7778022_101190,4289_142 -4289_75961,95,4289_1354,Colntarf Station,103951411,1,4289_7778022_104140,4289_18 -4289_75976,96,4289_13542,Clontarf Station,104065461,1,4289_7778022_100880,4289_143 -4289_75976,92,4289_13548,Clontarf Station,103622819,1,4289_7778022_101180,4289_142 -4289_75976,93,4289_13549,Clontarf Station,103732819,1,4289_7778022_101180,4289_142 -4289_75976,94,4289_13550,Clontarf Station,103842819,1,4289_7778022_101180,4289_142 -4289_75976,95,4289_13551,Clontarf Station,103952819,1,4289_7778022_101180,4289_142 -4289_75976,96,4289_13557,Clontarf Station,104065507,1,4289_7778022_100910,4289_143 -4289_75976,92,4289_13563,Clontarf Station,103622865,1,4289_7778022_101122,4289_142 -4289_75976,93,4289_13564,Clontarf Station,103732865,1,4289_7778022_101122,4289_142 -4289_75976,94,4289_13565,Clontarf Station,103842865,1,4289_7778022_101122,4289_142 -4289_75976,95,4289_13566,Clontarf Station,103952865,1,4289_7778022_101122,4289_142 -4289_75976,96,4289_13572,Clontarf Station,104065553,1,4289_7778022_100890,4289_143 -4289_75976,92,4289_13578,Clontarf Station,103622919,1,4289_7778022_101200,4289_142 -4289_75976,93,4289_13579,Clontarf Station,103732919,1,4289_7778022_101200,4289_142 -4289_75976,94,4289_13580,Clontarf Station,103842919,1,4289_7778022_101200,4289_142 -4289_75976,95,4289_13581,Clontarf Station,103952919,1,4289_7778022_101200,4289_142 -4289_75976,96,4289_13587,Clontarf Station,104065601,1,4289_7778022_100870,4289_143 -4289_75976,92,4289_13593,Clontarf Station,103622965,1,4289_7778022_101190,4289_142 -4289_75976,93,4289_13594,Clontarf Station,103732965,1,4289_7778022_101190,4289_142 -4289_75976,94,4289_13595,Clontarf Station,103842965,1,4289_7778022_101190,4289_142 -4289_75976,95,4289_13596,Clontarf Station,103952965,1,4289_7778022_101190,4289_142 -4289_75961,96,4289_1360,Colntarf Station,104064295,1,4289_7778022_104080,4289_18 -4289_75976,96,4289_13602,Clontarf Station,104065643,1,4289_7778022_100880,4289_143 -4289_75976,92,4289_13608,Clontarf Station,103623017,1,4289_7778022_101180,4289_142 -4289_75976,93,4289_13609,Clontarf Station,103733017,1,4289_7778022_101180,4289_142 -4289_75976,94,4289_13610,Clontarf Station,103843017,1,4289_7778022_101180,4289_142 -4289_75976,95,4289_13611,Clontarf Station,103953017,1,4289_7778022_101180,4289_142 -4289_75976,96,4289_13617,Clontarf Station,104065689,1,4289_7778022_100910,4289_143 -4289_75976,92,4289_13623,Clontarf Station,103623049,1,4289_7778022_101122,4289_142 -4289_75976,93,4289_13624,Clontarf Station,103733049,1,4289_7778022_101122,4289_142 -4289_75976,94,4289_13625,Clontarf Station,103843049,1,4289_7778022_101122,4289_142 -4289_75976,95,4289_13626,Clontarf Station,103953049,1,4289_7778022_101122,4289_142 -4289_75976,96,4289_13632,Clontarf Station,104065721,1,4289_7778022_100890,4289_143 -4289_75976,2,4289_13637,Clontarf Station,103613081,1,4289_7778022_101200,4289_142 -4289_75976,92,4289_13638,Clontarf Station,103623081,1,4289_7778022_101200,4289_142 -4289_75976,93,4289_13639,Clontarf Station,103733081,1,4289_7778022_101200,4289_142 -4289_75976,94,4289_13640,Clontarf Station,103843081,1,4289_7778022_101200,4289_142 -4289_75976,95,4289_13641,Clontarf Station,103953081,1,4289_7778022_101200,4289_142 -4289_75976,96,4289_13647,Clontarf Station,104065751,1,4289_7778022_100870,4289_143 -4289_75977,92,4289_13653,Naomh Barróg GAA,103621002,0,4289_7778022_100210,4289_145 -4289_75977,93,4289_13654,Naomh Barróg GAA,103731002,0,4289_7778022_100210,4289_145 -4289_75977,94,4289_13655,Naomh Barróg GAA,103841002,0,4289_7778022_100210,4289_145 -4289_75977,95,4289_13656,Naomh Barróg GAA,103951002,0,4289_7778022_100210,4289_145 -4289_75961,92,4289_1366,Colntarf Station,103621545,1,4289_7778022_104080,4289_18 -4289_75977,96,4289_13662,Naomh Barróg GAA,104064002,0,4289_7778022_100170,4289_146 -4289_75977,92,4289_13664,Naomh Barróg GAA,103621016,0,4289_7778022_100230,4289_145 -4289_75977,93,4289_13665,Naomh Barróg GAA,103731016,0,4289_7778022_100230,4289_145 -4289_75977,94,4289_13666,Naomh Barróg GAA,103841016,0,4289_7778022_100230,4289_145 -4289_75977,95,4289_13667,Naomh Barróg GAA,103951016,0,4289_7778022_100230,4289_145 -4289_75961,93,4289_1367,Colntarf Station,103731545,1,4289_7778022_104080,4289_18 -4289_75977,96,4289_13673,Naomh Barróg GAA,104064014,0,4289_7778022_100190,4289_146 -4289_75977,92,4289_13675,Naomh Barróg GAA,103621032,0,4289_7778022_100250,4289_145 -4289_75977,93,4289_13676,Naomh Barróg GAA,103731032,0,4289_7778022_100250,4289_145 -4289_75977,94,4289_13677,Naomh Barróg GAA,103841032,0,4289_7778022_100250,4289_145 -4289_75977,95,4289_13678,Naomh Barróg GAA,103951032,0,4289_7778022_100250,4289_145 -4289_75961,94,4289_1368,Colntarf Station,103841545,1,4289_7778022_104080,4289_18 -4289_75977,96,4289_13684,Naomh Barróg GAA,104064024,0,4289_7778022_100210,4289_145 -4289_75977,92,4289_13686,Naomh Barróg GAA,103621044,0,4289_7778022_100271,4289_145 -4289_75977,93,4289_13687,Naomh Barróg GAA,103731044,0,4289_7778022_100271,4289_145 -4289_75977,94,4289_13688,Naomh Barróg GAA,103841044,0,4289_7778022_100271,4289_145 -4289_75977,95,4289_13689,Naomh Barróg GAA,103951044,0,4289_7778022_100271,4289_145 -4289_75961,95,4289_1369,Colntarf Station,103951545,1,4289_7778022_104080,4289_18 -4289_75977,96,4289_13695,Naomh Barróg GAA,104064034,0,4289_7778022_100160,4289_145 -4289_75977,92,4289_13697,Naomh Barróg GAA,103621070,0,4289_7778022_100200,4289_145 -4289_75977,93,4289_13698,Naomh Barróg GAA,103731070,0,4289_7778022_100200,4289_145 -4289_75977,94,4289_13699,Naomh Barróg GAA,103841070,0,4289_7778022_100200,4289_145 -4289_75960,96,4289_137,Sutton Station,104064432,0,4289_7778022_103103,4289_2 -4289_75977,95,4289_13700,Naomh Barróg GAA,103951070,0,4289_7778022_100200,4289_145 -4289_75977,96,4289_13706,Naomh Barróg GAA,104064050,0,4289_7778022_100180,4289_145 -4289_75977,92,4289_13708,Naomh Barróg GAA,103621086,0,4289_7778022_100220,4289_145 -4289_75977,93,4289_13709,Naomh Barróg GAA,103731086,0,4289_7778022_100220,4289_145 -4289_75977,94,4289_13710,Naomh Barróg GAA,103841086,0,4289_7778022_100220,4289_145 -4289_75977,95,4289_13711,Naomh Barróg GAA,103951086,0,4289_7778022_100220,4289_145 -4289_75977,92,4289_13718,Naomh Barróg GAA,103621108,0,4289_7778022_100290,4289_145 -4289_75977,93,4289_13719,Naomh Barróg GAA,103731108,0,4289_7778022_100290,4289_145 -4289_75977,94,4289_13720,Naomh Barróg GAA,103841108,0,4289_7778022_100290,4289_145 -4289_75977,95,4289_13721,Naomh Barróg GAA,103951108,0,4289_7778022_100290,4289_145 -4289_75977,96,4289_13727,Naomh Barróg GAA,104064072,0,4289_7778022_100200,4289_146 -4289_75977,92,4289_13729,Naomh Barróg GAA,103621152,0,4289_7778022_100240,4289_145 -4289_75977,93,4289_13730,Naomh Barróg GAA,103731152,0,4289_7778022_100240,4289_145 -4289_75977,94,4289_13731,Naomh Barróg GAA,103841152,0,4289_7778022_100240,4289_145 -4289_75977,95,4289_13732,Naomh Barróg GAA,103951152,0,4289_7778022_100240,4289_145 -4289_75977,96,4289_13738,Naomh Barróg GAA,104064096,0,4289_7778022_100170,4289_145 -4289_75977,92,4289_13740,Naomh Barróg GAA,103621172,0,4289_7778022_100260,4289_145 -4289_75977,93,4289_13741,Naomh Barróg GAA,103731172,0,4289_7778022_100260,4289_145 -4289_75977,94,4289_13742,Naomh Barróg GAA,103841172,0,4289_7778022_100260,4289_145 -4289_75977,95,4289_13743,Naomh Barróg GAA,103951172,0,4289_7778022_100260,4289_145 -4289_75977,96,4289_13749,Naomh Barróg GAA,104064118,0,4289_7778022_100220,4289_145 -4289_75961,96,4289_1375,Colntarf Station,104064395,1,4289_7778022_104100,4289_19 -4289_75977,92,4289_13751,Naomh Barróg GAA,103621208,0,4289_7778022_100210,4289_145 -4289_75977,93,4289_13752,Naomh Barróg GAA,103731208,0,4289_7778022_100210,4289_145 -4289_75977,94,4289_13753,Naomh Barróg GAA,103841208,0,4289_7778022_100210,4289_145 -4289_75977,95,4289_13754,Naomh Barróg GAA,103951208,0,4289_7778022_100210,4289_145 -4289_75977,96,4289_13764,Naomh Barróg GAA,104064136,0,4289_7778022_100190,4289_145 -4289_75977,92,4289_13766,Naomh Barróg GAA,103621234,0,4289_7778022_100281,4289_145 -4289_75977,93,4289_13767,Naomh Barróg GAA,103731234,0,4289_7778022_100281,4289_145 -4289_75977,94,4289_13768,Naomh Barróg GAA,103841234,0,4289_7778022_100281,4289_145 -4289_75977,95,4289_13769,Naomh Barróg GAA,103951234,0,4289_7778022_100281,4289_145 -4289_75977,92,4289_13776,Naomh Barróg GAA,103621284,0,4289_7778022_100230,4289_145 -4289_75977,93,4289_13777,Naomh Barróg GAA,103731284,0,4289_7778022_100230,4289_145 -4289_75977,94,4289_13778,Naomh Barróg GAA,103841284,0,4289_7778022_100230,4289_145 -4289_75977,95,4289_13779,Naomh Barróg GAA,103951284,0,4289_7778022_100230,4289_145 -4289_75977,96,4289_13785,Naomh Barróg GAA,104064164,0,4289_7778022_100210,4289_146 -4289_75977,92,4289_13791,Naomh Barróg GAA,103621318,0,4289_7778022_100300,4289_145 -4289_75977,93,4289_13792,Naomh Barróg GAA,103731318,0,4289_7778022_100300,4289_145 -4289_75977,94,4289_13793,Naomh Barróg GAA,103841318,0,4289_7778022_100300,4289_145 -4289_75977,95,4289_13794,Naomh Barróg GAA,103951318,0,4289_7778022_100300,4289_145 -4289_75977,96,4289_13800,Naomh Barróg GAA,104064184,0,4289_7778022_100160,4289_145 -4289_75977,92,4289_13802,Naomh Barróg GAA,103621344,0,4289_7778022_100250,4289_145 -4289_75977,93,4289_13803,Naomh Barróg GAA,103731344,0,4289_7778022_100250,4289_145 -4289_75977,94,4289_13804,Naomh Barróg GAA,103841344,0,4289_7778022_100250,4289_145 -4289_75977,95,4289_13805,Naomh Barróg GAA,103951344,0,4289_7778022_100250,4289_145 -4289_75961,92,4289_1381,Colntarf Station,103621657,1,4289_7778022_104170,4289_18 -4289_75977,96,4289_13811,Naomh Barróg GAA,104064206,0,4289_7778022_100180,4289_145 -4289_75977,92,4289_13817,Naomh Barróg GAA,103621382,0,4289_7778022_100271,4289_145 -4289_75977,93,4289_13818,Naomh Barróg GAA,103731382,0,4289_7778022_100271,4289_145 -4289_75977,94,4289_13819,Naomh Barróg GAA,103841382,0,4289_7778022_100271,4289_145 -4289_75961,93,4289_1382,Colntarf Station,103731657,1,4289_7778022_104170,4289_18 -4289_75977,95,4289_13820,Naomh Barróg GAA,103951382,0,4289_7778022_100271,4289_145 -4289_75977,96,4289_13826,Naomh Barróg GAA,104064226,0,4289_7778022_100200,4289_145 -4289_75977,92,4289_13828,Naomh Barróg GAA,103621398,0,4289_7778022_100200,4289_145 -4289_75977,93,4289_13829,Naomh Barróg GAA,103731398,0,4289_7778022_100200,4289_145 -4289_75961,94,4289_1383,Colntarf Station,103841657,1,4289_7778022_104170,4289_18 -4289_75977,94,4289_13830,Naomh Barróg GAA,103841398,0,4289_7778022_100200,4289_145 -4289_75977,95,4289_13831,Naomh Barróg GAA,103951398,0,4289_7778022_100200,4289_145 -4289_75961,95,4289_1384,Colntarf Station,103951657,1,4289_7778022_104170,4289_18 -4289_75977,92,4289_13842,Naomh Barróg GAA,103621420,0,4289_7778022_100220,4289_145 -4289_75977,93,4289_13843,Naomh Barróg GAA,103731420,0,4289_7778022_100220,4289_145 -4289_75977,94,4289_13844,Naomh Barróg GAA,103841420,0,4289_7778022_100220,4289_145 -4289_75977,95,4289_13845,Naomh Barróg GAA,103951420,0,4289_7778022_100220,4289_145 -4289_75977,96,4289_13851,Naomh Barróg GAA,104064252,0,4289_7778022_100170,4289_146 -4289_75977,92,4289_13857,Naomh Barróg GAA,103621444,0,4289_7778022_100290,4289_145 -4289_75977,93,4289_13858,Naomh Barróg GAA,103731444,0,4289_7778022_100290,4289_145 -4289_75977,94,4289_13859,Naomh Barróg GAA,103841444,0,4289_7778022_100290,4289_145 -4289_75977,95,4289_13860,Naomh Barróg GAA,103951444,0,4289_7778022_100290,4289_145 -4289_75977,96,4289_13866,Naomh Barróg GAA,104064270,0,4289_7778022_100220,4289_146 -4289_75977,92,4289_13868,Naomh Barróg GAA,103621470,0,4289_7778022_100330,4289_145 -4289_75977,93,4289_13869,Naomh Barróg GAA,103731470,0,4289_7778022_100330,4289_145 -4289_75977,94,4289_13870,Naomh Barróg GAA,103841470,0,4289_7778022_100330,4289_145 -4289_75977,95,4289_13871,Naomh Barróg GAA,103951470,0,4289_7778022_100330,4289_145 -4289_75977,96,4289_13877,Naomh Barróg GAA,104064294,0,4289_7778022_100230,4289_146 -4289_75977,92,4289_13883,Naomh Barróg GAA,103621488,0,4289_7778022_100310,4289_145 -4289_75977,93,4289_13884,Naomh Barróg GAA,103731488,0,4289_7778022_100310,4289_145 -4289_75977,94,4289_13885,Naomh Barróg GAA,103841488,0,4289_7778022_100310,4289_145 -4289_75977,95,4289_13886,Naomh Barróg GAA,103951488,0,4289_7778022_100310,4289_145 -4289_75977,96,4289_13892,Naomh Barróg GAA,104064318,0,4289_7778022_100190,4289_146 -4289_75977,92,4289_13894,Naomh Barróg GAA,103621510,0,4289_7778022_100240,4289_145 -4289_75977,93,4289_13895,Naomh Barróg GAA,103731510,0,4289_7778022_100240,4289_145 -4289_75977,94,4289_13896,Naomh Barróg GAA,103841510,0,4289_7778022_100240,4289_145 -4289_75977,95,4289_13897,Naomh Barróg GAA,103951510,0,4289_7778022_100240,4289_145 -4289_75961,96,4289_1390,Colntarf Station,104064505,1,4289_7778022_104090,4289_19 -4289_75977,96,4289_13903,Naomh Barróg GAA,104064328,0,4289_7778022_100250,4289_146 -4289_75977,92,4289_13909,Naomh Barróg GAA,103621532,0,4289_7778022_100260,4289_145 -4289_75977,93,4289_13910,Naomh Barróg GAA,103731532,0,4289_7778022_100260,4289_145 -4289_75977,94,4289_13911,Naomh Barróg GAA,103841532,0,4289_7778022_100260,4289_145 -4289_75977,95,4289_13912,Naomh Barróg GAA,103951532,0,4289_7778022_100260,4289_145 -4289_75977,96,4289_13918,Naomh Barróg GAA,104064358,0,4289_7778022_100210,4289_146 -4289_75977,92,4289_13924,Naomh Barróg GAA,103621556,0,4289_7778022_100210,4289_145 -4289_75977,93,4289_13925,Naomh Barróg GAA,103731556,0,4289_7778022_100210,4289_145 -4289_75977,94,4289_13926,Naomh Barróg GAA,103841556,0,4289_7778022_100210,4289_145 -4289_75977,95,4289_13927,Naomh Barróg GAA,103951556,0,4289_7778022_100210,4289_145 -4289_75977,96,4289_13933,Naomh Barróg GAA,104064378,0,4289_7778022_100160,4289_146 -4289_75977,92,4289_13935,Naomh Barróg GAA,103621580,0,4289_7778022_100230,4289_145 -4289_75977,93,4289_13936,Naomh Barróg GAA,103731580,0,4289_7778022_100230,4289_145 -4289_75977,94,4289_13937,Naomh Barróg GAA,103841580,0,4289_7778022_100230,4289_145 -4289_75977,95,4289_13938,Naomh Barróg GAA,103951580,0,4289_7778022_100230,4289_145 -4289_75977,96,4289_13944,Naomh Barróg GAA,104064402,0,4289_7778022_100180,4289_146 -4289_75977,92,4289_13950,Naomh Barróg GAA,103621598,0,4289_7778022_100320,4289_145 -4289_75977,93,4289_13951,Naomh Barróg GAA,103731598,0,4289_7778022_100320,4289_145 -4289_75977,94,4289_13952,Naomh Barróg GAA,103841598,0,4289_7778022_100320,4289_145 -4289_75977,95,4289_13953,Naomh Barróg GAA,103951598,0,4289_7778022_100320,4289_145 -4289_75977,96,4289_13959,Naomh Barróg GAA,104064422,0,4289_7778022_100240,4289_146 -4289_75961,92,4289_1396,Colntarf Station,103621769,1,4289_7778022_104190,4289_18 -4289_75977,92,4289_13965,Naomh Barróg GAA,103621618,0,4289_7778022_100300,4289_145 -4289_75977,93,4289_13966,Naomh Barróg GAA,103731618,0,4289_7778022_100300,4289_145 -4289_75977,94,4289_13967,Naomh Barróg GAA,103841618,0,4289_7778022_100300,4289_145 -4289_75977,95,4289_13968,Naomh Barróg GAA,103951618,0,4289_7778022_100300,4289_145 -4289_75961,93,4289_1397,Colntarf Station,103731769,1,4289_7778022_104190,4289_18 -4289_75977,96,4289_13974,Naomh Barróg GAA,104064436,0,4289_7778022_100200,4289_146 -4289_75961,94,4289_1398,Colntarf Station,103841769,1,4289_7778022_104190,4289_18 -4289_75977,92,4289_13980,Naomh Barróg GAA,103621646,0,4289_7778022_100250,4289_145 -4289_75977,93,4289_13981,Naomh Barróg GAA,103731646,0,4289_7778022_100250,4289_145 -4289_75977,94,4289_13982,Naomh Barróg GAA,103841646,0,4289_7778022_100250,4289_145 -4289_75977,95,4289_13983,Naomh Barróg GAA,103951646,0,4289_7778022_100250,4289_145 -4289_75977,96,4289_13989,Naomh Barróg GAA,104064466,0,4289_7778022_100170,4289_146 -4289_75961,95,4289_1399,Colntarf Station,103951769,1,4289_7778022_104190,4289_18 -4289_75977,92,4289_13995,Naomh Barróg GAA,103621666,0,4289_7778022_100200,4289_145 -4289_75977,93,4289_13996,Naomh Barróg GAA,103731666,0,4289_7778022_100200,4289_145 -4289_75977,94,4289_13997,Naomh Barróg GAA,103841666,0,4289_7778022_100200,4289_145 -4289_75977,95,4289_13998,Naomh Barróg GAA,103951666,0,4289_7778022_100200,4289_145 -4289_75960,92,4289_14,Sutton Station,103621074,0,4289_7778022_103107,4289_1 -4289_75977,96,4289_14004,Naomh Barróg GAA,104064484,0,4289_7778022_100220,4289_146 -4289_75977,92,4289_14006,Naomh Barróg GAA,103621692,0,4289_7778022_100220,4289_145 -4289_75977,93,4289_14007,Naomh Barróg GAA,103731692,0,4289_7778022_100220,4289_145 -4289_75977,94,4289_14008,Naomh Barróg GAA,103841692,0,4289_7778022_100220,4289_145 -4289_75977,95,4289_14009,Naomh Barróg GAA,103951692,0,4289_7778022_100220,4289_145 -4289_75977,96,4289_14015,Naomh Barróg GAA,104064508,0,4289_7778022_100230,4289_146 -4289_75977,92,4289_14021,Naomh Barróg GAA,103621712,0,4289_7778022_100290,4289_145 -4289_75977,93,4289_14022,Naomh Barróg GAA,103731712,0,4289_7778022_100290,4289_145 -4289_75977,94,4289_14023,Naomh Barróg GAA,103841712,0,4289_7778022_100290,4289_145 -4289_75977,95,4289_14024,Naomh Barróg GAA,103951712,0,4289_7778022_100290,4289_145 -4289_75977,96,4289_14030,Naomh Barróg GAA,104064530,0,4289_7778022_100190,4289_146 -4289_75977,92,4289_14036,Naomh Barróg GAA,103621732,0,4289_7778022_100330,4289_145 -4289_75977,93,4289_14037,Naomh Barróg GAA,103731732,0,4289_7778022_100330,4289_145 -4289_75977,94,4289_14038,Naomh Barróg GAA,103841732,0,4289_7778022_100330,4289_145 -4289_75977,95,4289_14039,Naomh Barróg GAA,103951732,0,4289_7778022_100330,4289_145 -4289_75977,96,4289_14045,Naomh Barróg GAA,104064544,0,4289_7778022_100250,4289_146 -4289_75961,96,4289_1405,Colntarf Station,104064611,1,4289_7778022_104150,4289_19 -4289_75977,92,4289_14051,Naomh Barróg GAA,103621760,0,4289_7778022_100310,4289_145 -4289_75977,93,4289_14052,Naomh Barróg GAA,103731760,0,4289_7778022_100310,4289_145 -4289_75977,94,4289_14053,Naomh Barróg GAA,103841760,0,4289_7778022_100310,4289_145 -4289_75977,95,4289_14054,Naomh Barróg GAA,103951760,0,4289_7778022_100310,4289_145 -4289_75977,96,4289_14060,Naomh Barróg GAA,104064572,0,4289_7778022_100270,4289_146 -4289_75977,92,4289_14066,Naomh Barróg GAA,103621776,0,4289_7778022_100240,4289_145 -4289_75977,93,4289_14067,Naomh Barróg GAA,103731776,0,4289_7778022_100240,4289_145 -4289_75977,94,4289_14068,Naomh Barróg GAA,103841776,0,4289_7778022_100240,4289_145 -4289_75977,95,4289_14069,Naomh Barróg GAA,103951776,0,4289_7778022_100240,4289_145 -4289_75977,96,4289_14075,Naomh Barróg GAA,104064590,0,4289_7778022_100210,4289_146 -4289_75977,92,4289_14077,Naomh Barróg GAA,103621804,0,4289_7778022_100260,4289_145 -4289_75977,93,4289_14078,Naomh Barróg GAA,103731804,0,4289_7778022_100260,4289_145 -4289_75977,94,4289_14079,Naomh Barróg GAA,103841804,0,4289_7778022_100260,4289_145 -4289_75977,95,4289_14080,Naomh Barróg GAA,103951804,0,4289_7778022_100260,4289_145 -4289_75977,96,4289_14086,Naomh Barróg GAA,104064616,0,4289_7778022_100160,4289_146 -4289_75977,92,4289_14092,Naomh Barróg GAA,103621826,0,4289_7778022_100210,4289_145 -4289_75977,93,4289_14093,Naomh Barróg GAA,103731826,0,4289_7778022_100210,4289_145 -4289_75977,94,4289_14094,Naomh Barróg GAA,103841826,0,4289_7778022_100210,4289_145 -4289_75977,95,4289_14095,Naomh Barróg GAA,103951826,0,4289_7778022_100210,4289_145 -4289_75977,96,4289_14101,Naomh Barróg GAA,104064636,0,4289_7778022_100260,4289_146 -4289_75977,92,4289_14107,Naomh Barróg GAA,103621844,0,4289_7778022_100230,4289_145 -4289_75977,93,4289_14108,Naomh Barróg GAA,103731844,0,4289_7778022_100230,4289_145 -4289_75977,94,4289_14109,Naomh Barróg GAA,103841844,0,4289_7778022_100230,4289_145 -4289_75961,92,4289_1411,Colntarf Station,103621887,1,4289_7778022_104060,4289_18 -4289_75977,95,4289_14110,Naomh Barróg GAA,103951844,0,4289_7778022_100230,4289_145 -4289_75977,96,4289_14116,Naomh Barróg GAA,104064650,0,4289_7778022_100180,4289_146 -4289_75961,93,4289_1412,Colntarf Station,103731887,1,4289_7778022_104060,4289_18 -4289_75977,92,4289_14122,Naomh Barróg GAA,103621868,0,4289_7778022_100320,4289_145 -4289_75977,93,4289_14123,Naomh Barróg GAA,103731868,0,4289_7778022_100320,4289_145 -4289_75977,94,4289_14124,Naomh Barróg GAA,103841868,0,4289_7778022_100320,4289_145 -4289_75977,95,4289_14125,Naomh Barróg GAA,103951868,0,4289_7778022_100320,4289_145 -4289_75961,94,4289_1413,Colntarf Station,103841887,1,4289_7778022_104060,4289_18 -4289_75977,96,4289_14131,Naomh Barróg GAA,104064680,0,4289_7778022_100240,4289_146 -4289_75977,92,4289_14137,Naomh Barróg GAA,103621890,0,4289_7778022_100300,4289_145 -4289_75977,93,4289_14138,Naomh Barróg GAA,103731890,0,4289_7778022_100300,4289_145 -4289_75977,94,4289_14139,Naomh Barróg GAA,103841890,0,4289_7778022_100300,4289_145 -4289_75961,95,4289_1414,Colntarf Station,103951887,1,4289_7778022_104060,4289_18 -4289_75977,95,4289_14140,Naomh Barróg GAA,103951890,0,4289_7778022_100300,4289_145 -4289_75977,96,4289_14146,Naomh Barróg GAA,104064698,0,4289_7778022_100200,4289_146 -4289_75977,92,4289_14148,Naomh Barróg GAA,103621916,0,4289_7778022_100250,4289_145 -4289_75977,93,4289_14149,Naomh Barróg GAA,103731916,0,4289_7778022_100250,4289_145 -4289_75977,94,4289_14150,Naomh Barróg GAA,103841916,0,4289_7778022_100250,4289_145 -4289_75977,95,4289_14151,Naomh Barróg GAA,103951916,0,4289_7778022_100250,4289_145 -4289_75977,96,4289_14157,Naomh Barróg GAA,104064722,0,4289_7778022_100170,4289_146 -4289_75977,92,4289_14163,Naomh Barróg GAA,103621938,0,4289_7778022_100200,4289_145 -4289_75977,93,4289_14164,Naomh Barróg GAA,103731938,0,4289_7778022_100200,4289_145 -4289_75977,94,4289_14165,Naomh Barróg GAA,103841938,0,4289_7778022_100200,4289_145 -4289_75977,95,4289_14166,Naomh Barróg GAA,103951938,0,4289_7778022_100200,4289_145 -4289_75977,96,4289_14172,Naomh Barróg GAA,104064742,0,4289_7778022_100220,4289_146 -4289_75977,92,4289_14178,Naomh Barróg GAA,103621956,0,4289_7778022_100220,4289_145 -4289_75977,93,4289_14179,Naomh Barróg GAA,103731956,0,4289_7778022_100220,4289_145 -4289_75977,94,4289_14180,Naomh Barróg GAA,103841956,0,4289_7778022_100220,4289_145 -4289_75977,95,4289_14181,Naomh Barróg GAA,103951956,0,4289_7778022_100220,4289_145 -4289_75977,96,4289_14187,Naomh Barróg GAA,104064758,0,4289_7778022_100230,4289_146 -4289_75977,92,4289_14193,Naomh Barróg GAA,103621986,0,4289_7778022_100290,4289_145 -4289_75977,93,4289_14194,Naomh Barróg GAA,103731986,0,4289_7778022_100290,4289_145 -4289_75977,94,4289_14195,Naomh Barróg GAA,103841986,0,4289_7778022_100290,4289_145 -4289_75977,95,4289_14196,Naomh Barróg GAA,103951986,0,4289_7778022_100290,4289_145 -4289_75961,96,4289_1420,Colntarf Station,104064717,1,4289_7778022_104171,4289_19 -4289_75977,96,4289_14202,Naomh Barróg GAA,104064788,0,4289_7778022_100190,4289_146 -4289_75977,92,4289_14208,Naomh Barróg GAA,103622004,0,4289_7778022_100330,4289_145 -4289_75977,93,4289_14209,Naomh Barróg GAA,103732004,0,4289_7778022_100330,4289_145 -4289_75977,94,4289_14210,Naomh Barróg GAA,103842004,0,4289_7778022_100330,4289_145 -4289_75977,95,4289_14211,Naomh Barróg GAA,103952004,0,4289_7778022_100330,4289_145 -4289_75977,96,4289_14217,Naomh Barróg GAA,104064804,0,4289_7778022_100250,4289_146 -4289_75977,92,4289_14219,Naomh Barróg GAA,103622030,0,4289_7778022_100310,4289_145 -4289_75977,93,4289_14220,Naomh Barróg GAA,103732030,0,4289_7778022_100310,4289_145 -4289_75977,94,4289_14221,Naomh Barróg GAA,103842030,0,4289_7778022_100310,4289_145 -4289_75977,95,4289_14222,Naomh Barróg GAA,103952030,0,4289_7778022_100310,4289_145 -4289_75977,96,4289_14228,Naomh Barróg GAA,104064828,0,4289_7778022_100270,4289_146 -4289_75977,92,4289_14234,Naomh Barróg GAA,103622052,0,4289_7778022_100240,4289_145 -4289_75977,93,4289_14235,Naomh Barróg GAA,103732052,0,4289_7778022_100240,4289_145 -4289_75977,94,4289_14236,Naomh Barróg GAA,103842052,0,4289_7778022_100240,4289_145 -4289_75977,95,4289_14237,Naomh Barróg GAA,103952052,0,4289_7778022_100240,4289_145 -4289_75977,96,4289_14243,Naomh Barróg GAA,104064848,0,4289_7778022_100210,4289_146 -4289_75977,92,4289_14249,Naomh Barróg GAA,103622072,0,4289_7778022_100282,4289_145 -4289_75977,93,4289_14250,Naomh Barróg GAA,103732072,0,4289_7778022_100282,4289_145 -4289_75977,94,4289_14251,Naomh Barróg GAA,103842072,0,4289_7778022_100282,4289_145 -4289_75977,95,4289_14252,Naomh Barróg GAA,103952072,0,4289_7778022_100282,4289_145 -4289_75977,96,4289_14258,Naomh Barróg GAA,104064864,0,4289_7778022_100160,4289_146 -4289_75961,92,4289_1426,Colntarf Station,103622001,1,4289_7778022_104110,4289_18 -4289_75977,92,4289_14264,Naomh Barróg GAA,103622104,0,4289_7778022_100260,4289_145 -4289_75977,93,4289_14265,Naomh Barróg GAA,103732104,0,4289_7778022_100260,4289_145 -4289_75977,94,4289_14266,Naomh Barróg GAA,103842104,0,4289_7778022_100260,4289_145 -4289_75977,95,4289_14267,Naomh Barróg GAA,103952104,0,4289_7778022_100260,4289_145 -4289_75961,93,4289_1427,Colntarf Station,103732001,1,4289_7778022_104110,4289_18 -4289_75977,96,4289_14273,Naomh Barróg GAA,104064894,0,4289_7778022_100260,4289_146 -4289_75977,92,4289_14279,Naomh Barróg GAA,103622130,0,4289_7778022_100210,4289_145 -4289_75961,94,4289_1428,Colntarf Station,103842001,1,4289_7778022_104110,4289_18 -4289_75977,93,4289_14280,Naomh Barróg GAA,103732130,0,4289_7778022_100210,4289_145 -4289_75977,94,4289_14281,Naomh Barróg GAA,103842130,0,4289_7778022_100210,4289_145 -4289_75977,95,4289_14282,Naomh Barróg GAA,103952130,0,4289_7778022_100210,4289_145 -4289_75977,96,4289_14288,Naomh Barróg GAA,104064908,0,4289_7778022_100180,4289_146 -4289_75961,95,4289_1429,Colntarf Station,103952001,1,4289_7778022_104110,4289_18 -4289_75977,92,4289_14290,Naomh Barróg GAA,103622166,0,4289_7778022_100230,4289_145 -4289_75977,93,4289_14291,Naomh Barróg GAA,103732166,0,4289_7778022_100230,4289_145 -4289_75977,94,4289_14292,Naomh Barróg GAA,103842166,0,4289_7778022_100230,4289_145 -4289_75977,95,4289_14293,Naomh Barróg GAA,103952166,0,4289_7778022_100230,4289_145 -4289_75977,96,4289_14299,Naomh Barróg GAA,104064936,0,4289_7778022_100240,4289_146 -4289_75960,92,4289_143,Sutton Station,103621672,0,4289_7778022_103104,4289_1 -4289_75977,92,4289_14305,Naomh Barróg GAA,103622196,0,4289_7778022_100320,4289_145 -4289_75977,93,4289_14306,Naomh Barróg GAA,103732196,0,4289_7778022_100320,4289_145 -4289_75977,94,4289_14307,Naomh Barróg GAA,103842196,0,4289_7778022_100320,4289_145 -4289_75977,95,4289_14308,Naomh Barróg GAA,103952196,0,4289_7778022_100320,4289_145 -4289_75977,96,4289_14314,Naomh Barróg GAA,104064956,0,4289_7778022_100200,4289_146 -4289_75977,92,4289_14320,Naomh Barróg GAA,103622210,0,4289_7778022_100300,4289_145 -4289_75977,93,4289_14321,Naomh Barróg GAA,103732210,0,4289_7778022_100300,4289_145 -4289_75977,94,4289_14322,Naomh Barróg GAA,103842210,0,4289_7778022_100300,4289_145 -4289_75977,95,4289_14323,Naomh Barróg GAA,103952210,0,4289_7778022_100300,4289_145 -4289_75977,96,4289_14329,Naomh Barróg GAA,104064970,0,4289_7778022_100170,4289_146 -4289_75977,92,4289_14335,Naomh Barróg GAA,103622238,0,4289_7778022_100272,4289_145 -4289_75977,93,4289_14336,Naomh Barróg GAA,103732238,0,4289_7778022_100272,4289_145 -4289_75977,94,4289_14337,Naomh Barróg GAA,103842238,0,4289_7778022_100272,4289_145 -4289_75977,95,4289_14338,Naomh Barróg GAA,103952238,0,4289_7778022_100272,4289_145 -4289_75977,96,4289_14344,Naomh Barróg GAA,104065000,0,4289_7778022_100220,4289_146 -4289_75961,96,4289_1435,Colntarf Station,104064825,1,4289_7778022_104180,4289_19 -4289_75977,92,4289_14350,Naomh Barróg GAA,103622266,0,4289_7778022_100250,4289_145 -4289_75977,93,4289_14351,Naomh Barróg GAA,103732266,0,4289_7778022_100250,4289_145 -4289_75977,94,4289_14352,Naomh Barróg GAA,103842266,0,4289_7778022_100250,4289_145 -4289_75977,95,4289_14353,Naomh Barróg GAA,103952266,0,4289_7778022_100250,4289_145 -4289_75977,96,4289_14359,Naomh Barróg GAA,104065014,0,4289_7778022_100230,4289_146 -4289_75977,92,4289_14361,Naomh Barróg GAA,103622294,0,4289_7778022_100200,4289_145 -4289_75977,93,4289_14362,Naomh Barróg GAA,103732294,0,4289_7778022_100200,4289_145 -4289_75977,94,4289_14363,Naomh Barróg GAA,103842294,0,4289_7778022_100200,4289_145 -4289_75977,95,4289_14364,Naomh Barróg GAA,103952294,0,4289_7778022_100200,4289_145 -4289_75977,96,4289_14370,Naomh Barróg GAA,104065040,0,4289_7778022_100190,4289_146 -4289_75977,92,4289_14376,Naomh Barróg GAA,103622326,0,4289_7778022_100220,4289_145 -4289_75977,93,4289_14377,Naomh Barróg GAA,103732326,0,4289_7778022_100220,4289_145 -4289_75977,94,4289_14378,Naomh Barróg GAA,103842326,0,4289_7778022_100220,4289_145 -4289_75977,95,4289_14379,Naomh Barróg GAA,103952326,0,4289_7778022_100220,4289_145 -4289_75977,96,4289_14385,Naomh Barróg GAA,104065062,0,4289_7778022_100250,4289_146 -4289_75977,92,4289_14391,Naomh Barróg GAA,103622340,0,4289_7778022_100290,4289_145 -4289_75977,93,4289_14392,Naomh Barróg GAA,103732340,0,4289_7778022_100290,4289_145 -4289_75977,94,4289_14393,Naomh Barróg GAA,103842340,0,4289_7778022_100290,4289_145 -4289_75977,95,4289_14394,Naomh Barróg GAA,103952340,0,4289_7778022_100290,4289_145 -4289_75960,93,4289_144,Sutton Station,103731672,0,4289_7778022_103104,4289_1 -4289_75977,96,4289_14400,Naomh Barróg GAA,104065074,0,4289_7778022_100270,4289_146 -4289_75977,92,4289_14406,Naomh Barróg GAA,103622368,0,4289_7778022_100330,4289_145 -4289_75977,93,4289_14407,Naomh Barróg GAA,103732368,0,4289_7778022_100330,4289_145 -4289_75977,94,4289_14408,Naomh Barróg GAA,103842368,0,4289_7778022_100330,4289_145 -4289_75977,95,4289_14409,Naomh Barróg GAA,103952368,0,4289_7778022_100330,4289_145 -4289_75961,92,4289_1441,Colntarf Station,103622123,1,4289_7778022_104040,4289_18 -4289_75977,96,4289_14415,Naomh Barróg GAA,104065106,0,4289_7778022_100210,4289_146 -4289_75961,93,4289_1442,Colntarf Station,103732123,1,4289_7778022_104040,4289_18 -4289_75977,92,4289_14421,Naomh Barróg GAA,103622396,0,4289_7778022_100310,4289_145 -4289_75977,93,4289_14422,Naomh Barróg GAA,103732396,0,4289_7778022_100310,4289_145 -4289_75977,94,4289_14423,Naomh Barróg GAA,103842396,0,4289_7778022_100310,4289_145 -4289_75977,95,4289_14424,Naomh Barróg GAA,103952396,0,4289_7778022_100310,4289_145 -4289_75961,94,4289_1443,Colntarf Station,103842123,1,4289_7778022_104040,4289_18 -4289_75977,96,4289_14430,Naomh Barróg GAA,104065120,0,4289_7778022_100160,4289_146 -4289_75977,92,4289_14432,Naomh Barróg GAA,103622414,0,4289_7778022_100240,4289_145 -4289_75977,93,4289_14433,Naomh Barróg GAA,103732414,0,4289_7778022_100240,4289_145 -4289_75977,94,4289_14434,Naomh Barróg GAA,103842414,0,4289_7778022_100240,4289_145 -4289_75977,95,4289_14435,Naomh Barróg GAA,103952414,0,4289_7778022_100240,4289_145 -4289_75961,95,4289_1444,Colntarf Station,103952123,1,4289_7778022_104040,4289_18 -4289_75977,96,4289_14441,Naomh Barróg GAA,104065144,0,4289_7778022_100260,4289_146 -4289_75977,92,4289_14447,Naomh Barróg GAA,103622448,0,4289_7778022_100282,4289_145 -4289_75977,93,4289_14448,Naomh Barróg GAA,103732448,0,4289_7778022_100282,4289_145 -4289_75977,94,4289_14449,Naomh Barróg GAA,103842448,0,4289_7778022_100282,4289_145 -4289_75977,95,4289_14450,Naomh Barróg GAA,103952448,0,4289_7778022_100282,4289_145 -4289_75977,96,4289_14456,Naomh Barróg GAA,104065170,0,4289_7778022_100240,4289_146 -4289_75977,92,4289_14462,Naomh Barróg GAA,103622464,0,4289_7778022_100260,4289_145 -4289_75977,93,4289_14463,Naomh Barróg GAA,103732464,0,4289_7778022_100260,4289_145 -4289_75977,94,4289_14464,Naomh Barróg GAA,103842464,0,4289_7778022_100260,4289_145 -4289_75977,95,4289_14465,Naomh Barróg GAA,103952464,0,4289_7778022_100260,4289_145 -4289_75977,96,4289_14471,Naomh Barróg GAA,104065180,0,4289_7778022_100200,4289_146 -4289_75977,92,4289_14477,Naomh Barróg GAA,103622488,0,4289_7778022_100210,4289_145 -4289_75977,93,4289_14478,Naomh Barróg GAA,103732488,0,4289_7778022_100210,4289_145 -4289_75977,94,4289_14479,Naomh Barróg GAA,103842488,0,4289_7778022_100210,4289_145 -4289_75977,95,4289_14480,Naomh Barróg GAA,103952488,0,4289_7778022_100210,4289_145 -4289_75977,96,4289_14486,Naomh Barróg GAA,104065212,0,4289_7778022_100170,4289_146 -4289_75977,92,4289_14492,Naomh Barróg GAA,103622512,0,4289_7778022_100230,4289_145 -4289_75977,93,4289_14493,Naomh Barróg GAA,103732512,0,4289_7778022_100230,4289_145 -4289_75977,94,4289_14494,Naomh Barróg GAA,103842512,0,4289_7778022_100230,4289_145 -4289_75977,95,4289_14495,Naomh Barróg GAA,103952512,0,4289_7778022_100230,4289_145 -4289_75960,94,4289_145,Sutton Station,103841672,0,4289_7778022_103104,4289_1 -4289_75961,96,4289_1450,Colntarf Station,104064931,1,4289_7778022_104110,4289_19 -4289_75977,96,4289_14501,Naomh Barróg GAA,104065226,0,4289_7778022_100220,4289_146 -4289_75977,92,4289_14503,Naomh Barróg GAA,103622534,0,4289_7778022_100320,4289_145 -4289_75977,93,4289_14504,Naomh Barróg GAA,103732534,0,4289_7778022_100320,4289_145 -4289_75977,94,4289_14505,Naomh Barróg GAA,103842534,0,4289_7778022_100320,4289_145 -4289_75977,95,4289_14506,Naomh Barróg GAA,103952534,0,4289_7778022_100320,4289_145 -4289_75977,96,4289_14512,Naomh Barróg GAA,104065252,0,4289_7778022_100230,4289_146 -4289_75977,92,4289_14518,Naomh Barróg GAA,103622562,0,4289_7778022_100300,4289_145 -4289_75977,93,4289_14519,Naomh Barróg GAA,103732562,0,4289_7778022_100300,4289_145 -4289_75977,94,4289_14520,Naomh Barróg GAA,103842562,0,4289_7778022_100300,4289_145 -4289_75977,95,4289_14521,Naomh Barróg GAA,103952562,0,4289_7778022_100300,4289_145 -4289_75977,96,4289_14527,Naomh Barróg GAA,104065280,0,4289_7778022_100190,4289_146 -4289_75977,92,4289_14533,Naomh Barróg GAA,103622580,0,4289_7778022_100272,4289_145 -4289_75977,93,4289_14534,Naomh Barróg GAA,103732580,0,4289_7778022_100272,4289_145 -4289_75977,94,4289_14535,Naomh Barróg GAA,103842580,0,4289_7778022_100272,4289_145 -4289_75977,95,4289_14536,Naomh Barróg GAA,103952580,0,4289_7778022_100272,4289_145 -4289_75977,96,4289_14542,Naomh Barróg GAA,104065290,0,4289_7778022_100250,4289_146 -4289_75977,92,4289_14548,Naomh Barróg GAA,103622604,0,4289_7778022_100250,4289_145 -4289_75977,93,4289_14549,Naomh Barróg GAA,103732604,0,4289_7778022_100250,4289_145 -4289_75977,94,4289_14550,Naomh Barróg GAA,103842604,0,4289_7778022_100250,4289_145 -4289_75977,95,4289_14551,Naomh Barróg GAA,103952604,0,4289_7778022_100250,4289_145 -4289_75977,96,4289_14557,Naomh Barróg GAA,104065316,0,4289_7778022_100270,4289_146 -4289_75961,92,4289_1456,Colntarf Station,103622279,1,4289_7778022_104140,4289_18 -4289_75977,92,4289_14563,Naomh Barróg GAA,103622622,0,4289_7778022_100220,4289_145 -4289_75977,93,4289_14564,Naomh Barróg GAA,103732622,0,4289_7778022_100220,4289_145 -4289_75977,94,4289_14565,Naomh Barróg GAA,103842622,0,4289_7778022_100220,4289_145 -4289_75977,95,4289_14566,Naomh Barróg GAA,103952622,0,4289_7778022_100220,4289_145 -4289_75961,93,4289_1457,Colntarf Station,103732279,1,4289_7778022_104140,4289_18 -4289_75977,96,4289_14572,Naomh Barróg GAA,104065330,0,4289_7778022_100210,4289_146 -4289_75977,92,4289_14574,Naomh Barróg GAA,103622646,0,4289_7778022_100290,4289_145 -4289_75977,93,4289_14575,Naomh Barróg GAA,103732646,0,4289_7778022_100290,4289_145 -4289_75977,94,4289_14576,Naomh Barróg GAA,103842646,0,4289_7778022_100290,4289_145 -4289_75977,95,4289_14577,Naomh Barróg GAA,103952646,0,4289_7778022_100290,4289_145 -4289_75961,94,4289_1458,Colntarf Station,103842279,1,4289_7778022_104140,4289_18 -4289_75977,96,4289_14583,Naomh Barróg GAA,104065368,0,4289_7778022_100160,4289_145 -4289_75977,92,4289_14589,Naomh Barróg GAA,103622672,0,4289_7778022_100330,4289_145 -4289_75961,95,4289_1459,Colntarf Station,103952279,1,4289_7778022_104140,4289_18 -4289_75977,93,4289_14590,Naomh Barróg GAA,103732672,0,4289_7778022_100330,4289_145 -4289_75977,94,4289_14591,Naomh Barróg GAA,103842672,0,4289_7778022_100330,4289_145 -4289_75977,95,4289_14592,Naomh Barróg GAA,103952672,0,4289_7778022_100330,4289_145 -4289_75977,96,4289_14598,Naomh Barróg GAA,104065380,0,4289_7778022_100260,4289_145 -4289_75960,95,4289_146,Sutton Station,103951672,0,4289_7778022_103104,4289_1 -4289_75977,92,4289_14600,Naomh Barróg GAA,103622686,0,4289_7778022_100310,4289_145 -4289_75977,93,4289_14601,Naomh Barróg GAA,103732686,0,4289_7778022_100310,4289_145 -4289_75977,94,4289_14602,Naomh Barróg GAA,103842686,0,4289_7778022_100310,4289_145 -4289_75977,95,4289_14603,Naomh Barróg GAA,103952686,0,4289_7778022_100310,4289_145 -4289_75977,96,4289_14613,Naomh Barróg GAA,104065406,0,4289_7778022_100170,4289_145 -4289_75977,92,4289_14615,Naomh Barróg GAA,103622712,0,4289_7778022_100240,4289_145 -4289_75977,93,4289_14616,Naomh Barróg GAA,103732712,0,4289_7778022_100240,4289_145 -4289_75977,94,4289_14617,Naomh Barróg GAA,103842712,0,4289_7778022_100240,4289_145 -4289_75977,95,4289_14618,Naomh Barróg GAA,103952712,0,4289_7778022_100240,4289_145 -4289_75977,96,4289_14624,Naomh Barróg GAA,104065422,0,4289_7778022_100220,4289_145 -4289_75977,92,4289_14630,Naomh Barróg GAA,103622724,0,4289_7778022_100210,4289_145 -4289_75977,93,4289_14631,Naomh Barróg GAA,103732724,0,4289_7778022_100210,4289_145 -4289_75977,94,4289_14632,Naomh Barróg GAA,103842724,0,4289_7778022_100210,4289_145 -4289_75977,95,4289_14633,Naomh Barróg GAA,103952724,0,4289_7778022_100210,4289_145 -4289_75977,92,4289_14640,Naomh Barróg GAA,103622754,0,4289_7778022_100230,4289_145 -4289_75977,93,4289_14641,Naomh Barróg GAA,103732754,0,4289_7778022_100230,4289_145 -4289_75977,94,4289_14642,Naomh Barróg GAA,103842754,0,4289_7778022_100230,4289_145 -4289_75977,95,4289_14643,Naomh Barróg GAA,103952754,0,4289_7778022_100230,4289_145 -4289_75977,96,4289_14649,Naomh Barróg GAA,104065454,0,4289_7778022_100230,4289_145 -4289_75961,96,4289_1465,Colntarf Station,104065037,1,4289_7778022_104080,4289_19 -4289_75977,92,4289_14655,Naomh Barróg GAA,103622774,0,4289_7778022_100320,4289_145 -4289_75977,93,4289_14656,Naomh Barróg GAA,103732774,0,4289_7778022_100320,4289_145 -4289_75977,94,4289_14657,Naomh Barróg GAA,103842774,0,4289_7778022_100320,4289_145 -4289_75977,95,4289_14658,Naomh Barróg GAA,103952774,0,4289_7778022_100320,4289_145 -4289_75977,96,4289_14664,Naomh Barróg GAA,104065472,0,4289_7778022_100190,4289_145 -4289_75977,92,4289_14666,Naomh Barróg GAA,103622788,0,4289_7778022_100300,4289_145 -4289_75977,93,4289_14667,Naomh Barróg GAA,103732788,0,4289_7778022_100300,4289_145 -4289_75977,94,4289_14668,Naomh Barróg GAA,103842788,0,4289_7778022_100300,4289_145 -4289_75977,95,4289_14669,Naomh Barróg GAA,103952788,0,4289_7778022_100300,4289_145 -4289_75977,96,4289_14679,Naomh Barróg GAA,104065498,0,4289_7778022_100250,4289_145 -4289_75977,92,4289_14681,Naomh Barróg GAA,103622810,0,4289_7778022_100272,4289_145 -4289_75977,93,4289_14682,Naomh Barróg GAA,103732810,0,4289_7778022_100272,4289_145 -4289_75977,94,4289_14683,Naomh Barróg GAA,103842810,0,4289_7778022_100272,4289_145 -4289_75977,95,4289_14684,Naomh Barróg GAA,103952810,0,4289_7778022_100272,4289_145 -4289_75977,96,4289_14690,Naomh Barróg GAA,104065514,0,4289_7778022_100210,4289_145 -4289_75977,92,4289_14696,Naomh Barróg GAA,103622826,0,4289_7778022_100220,4289_145 -4289_75977,93,4289_14697,Naomh Barróg GAA,103732826,0,4289_7778022_100220,4289_145 -4289_75977,94,4289_14698,Naomh Barróg GAA,103842826,0,4289_7778022_100220,4289_145 -4289_75977,95,4289_14699,Naomh Barróg GAA,103952826,0,4289_7778022_100220,4289_145 -4289_75977,92,4289_14706,Naomh Barróg GAA,103622854,0,4289_7778022_100290,4289_145 -4289_75977,93,4289_14707,Naomh Barróg GAA,103732854,0,4289_7778022_100290,4289_145 -4289_75977,94,4289_14708,Naomh Barróg GAA,103842854,0,4289_7778022_100290,4289_145 -4289_75977,95,4289_14709,Naomh Barróg GAA,103952854,0,4289_7778022_100290,4289_145 -4289_75961,92,4289_1471,Colntarf Station,103622403,1,4289_7778022_104080,4289_18 -4289_75977,96,4289_14715,Naomh Barróg GAA,104065544,0,4289_7778022_100160,4289_145 -4289_75961,93,4289_1472,Colntarf Station,103732403,1,4289_7778022_104080,4289_18 -4289_75977,92,4289_14721,Naomh Barróg GAA,103622876,0,4289_7778022_100330,4289_145 -4289_75977,93,4289_14722,Naomh Barróg GAA,103732876,0,4289_7778022_100330,4289_145 -4289_75977,94,4289_14723,Naomh Barróg GAA,103842876,0,4289_7778022_100330,4289_145 -4289_75977,95,4289_14724,Naomh Barróg GAA,103952876,0,4289_7778022_100330,4289_145 -4289_75961,94,4289_1473,Colntarf Station,103842403,1,4289_7778022_104080,4289_18 -4289_75977,96,4289_14730,Naomh Barróg GAA,104065564,0,4289_7778022_100260,4289_145 -4289_75977,92,4289_14732,Naomh Barróg GAA,103622886,0,4289_7778022_100310,4289_145 -4289_75977,93,4289_14733,Naomh Barróg GAA,103732886,0,4289_7778022_100310,4289_145 -4289_75977,94,4289_14734,Naomh Barróg GAA,103842886,0,4289_7778022_100310,4289_145 -4289_75977,95,4289_14735,Naomh Barróg GAA,103952886,0,4289_7778022_100310,4289_145 -4289_75961,95,4289_1474,Colntarf Station,103952403,1,4289_7778022_104080,4289_18 -4289_75977,96,4289_14745,Naomh Barróg GAA,104065584,0,4289_7778022_100170,4289_145 -4289_75977,92,4289_14747,Naomh Barróg GAA,103622908,0,4289_7778022_100240,4289_145 -4289_75977,93,4289_14748,Naomh Barróg GAA,103732908,0,4289_7778022_100240,4289_145 -4289_75977,94,4289_14749,Naomh Barróg GAA,103842908,0,4289_7778022_100240,4289_145 -4289_75977,95,4289_14750,Naomh Barróg GAA,103952908,0,4289_7778022_100240,4289_145 -4289_75977,96,4289_14756,Naomh Barróg GAA,104065602,0,4289_7778022_100220,4289_145 -4289_75977,92,4289_14762,Naomh Barróg GAA,103622924,0,4289_7778022_100210,4289_145 -4289_75977,93,4289_14763,Naomh Barróg GAA,103732924,0,4289_7778022_100210,4289_145 -4289_75977,94,4289_14764,Naomh Barróg GAA,103842924,0,4289_7778022_100210,4289_145 -4289_75977,95,4289_14765,Naomh Barróg GAA,103952924,0,4289_7778022_100210,4289_145 -4289_75977,92,4289_14772,Naomh Barróg GAA,103622952,0,4289_7778022_100230,4289_145 -4289_75977,93,4289_14773,Naomh Barróg GAA,103732952,0,4289_7778022_100230,4289_145 -4289_75977,94,4289_14774,Naomh Barróg GAA,103842952,0,4289_7778022_100230,4289_145 -4289_75977,95,4289_14775,Naomh Barróg GAA,103952952,0,4289_7778022_100230,4289_145 -4289_75977,96,4289_14781,Naomh Barróg GAA,104065632,0,4289_7778022_100230,4289_145 -4289_75977,92,4289_14787,Naomh Barróg GAA,103622972,0,4289_7778022_100300,4289_145 -4289_75977,93,4289_14788,Naomh Barróg GAA,103732972,0,4289_7778022_100300,4289_145 -4289_75977,94,4289_14789,Naomh Barróg GAA,103842972,0,4289_7778022_100300,4289_145 -4289_75977,95,4289_14790,Naomh Barróg GAA,103952972,0,4289_7778022_100300,4289_145 -4289_75977,96,4289_14796,Naomh Barróg GAA,104065650,0,4289_7778022_100190,4289_145 -4289_75977,92,4289_14798,Naomh Barróg GAA,103622982,0,4289_7778022_100272,4289_145 -4289_75977,93,4289_14799,Naomh Barróg GAA,103732982,0,4289_7778022_100272,4289_145 -4289_75961,96,4289_1480,Colntarf Station,104065145,1,4289_7778022_104100,4289_19 -4289_75977,94,4289_14800,Naomh Barróg GAA,103842982,0,4289_7778022_100272,4289_145 -4289_75977,95,4289_14801,Naomh Barróg GAA,103952982,0,4289_7778022_100272,4289_145 -4289_75977,96,4289_14811,Naomh Barróg GAA,104065672,0,4289_7778022_100250,4289_145 -4289_75977,92,4289_14813,Naomh Barróg GAA,103623008,0,4289_7778022_100220,4289_145 -4289_75977,93,4289_14814,Naomh Barróg GAA,103733008,0,4289_7778022_100220,4289_145 -4289_75977,94,4289_14815,Naomh Barróg GAA,103843008,0,4289_7778022_100220,4289_145 -4289_75977,95,4289_14816,Naomh Barróg GAA,103953008,0,4289_7778022_100220,4289_145 -4289_75977,96,4289_14822,Naomh Barróg GAA,104065690,0,4289_7778022_100210,4289_145 -4289_75977,92,4289_14828,Naomh Barróg GAA,103623022,0,4289_7778022_100290,4289_145 -4289_75977,93,4289_14829,Naomh Barróg GAA,103733022,0,4289_7778022_100290,4289_145 -4289_75977,94,4289_14830,Naomh Barróg GAA,103843022,0,4289_7778022_100290,4289_145 -4289_75977,95,4289_14831,Naomh Barróg GAA,103953022,0,4289_7778022_100290,4289_145 -4289_75977,92,4289_14838,Naomh Barróg GAA,103623044,0,4289_7778022_100330,4289_145 -4289_75977,93,4289_14839,Naomh Barróg GAA,103733044,0,4289_7778022_100330,4289_145 -4289_75977,94,4289_14840,Naomh Barróg GAA,103843044,0,4289_7778022_100330,4289_145 -4289_75977,95,4289_14841,Naomh Barróg GAA,103953044,0,4289_7778022_100330,4289_145 -4289_75977,96,4289_14847,Naomh Barróg GAA,104065712,0,4289_7778022_100160,4289_145 -4289_75977,92,4289_14849,Naomh Barróg GAA,103623052,0,4289_7778022_100310,4289_145 -4289_75977,93,4289_14850,Naomh Barróg GAA,103733052,0,4289_7778022_100310,4289_145 -4289_75977,94,4289_14851,Naomh Barróg GAA,103843052,0,4289_7778022_100310,4289_145 -4289_75977,95,4289_14852,Naomh Barróg GAA,103953052,0,4289_7778022_100310,4289_145 -4289_75977,96,4289_14858,Naomh Barróg GAA,104065724,0,4289_7778022_100260,4289_145 -4289_75961,92,4289_1486,Colntarf Station,103622523,1,4289_7778022_104170,4289_18 -4289_75977,92,4289_14864,Finglas Village,103621007,1,4289_7778022_100200,4289_147 -4289_75977,93,4289_14865,Finglas Village,103731007,1,4289_7778022_100200,4289_147 -4289_75977,94,4289_14866,Finglas Village,103841007,1,4289_7778022_100200,4289_147 -4289_75977,95,4289_14867,Finglas Village,103951007,1,4289_7778022_100200,4289_147 -4289_75961,93,4289_1487,Colntarf Station,103732523,1,4289_7778022_104170,4289_18 -4289_75977,96,4289_14873,Finglas Village,104064005,1,4289_7778022_100160,4289_148 -4289_75977,92,4289_14875,Finglas Village,103621023,1,4289_7778022_100220,4289_147 -4289_75977,93,4289_14876,Finglas Village,103731023,1,4289_7778022_100220,4289_147 -4289_75977,94,4289_14877,Finglas Village,103841023,1,4289_7778022_100220,4289_147 -4289_75977,95,4289_14878,Finglas Village,103951023,1,4289_7778022_100220,4289_147 -4289_75961,94,4289_1488,Colntarf Station,103842523,1,4289_7778022_104170,4289_18 -4289_75977,96,4289_14884,Finglas Village,104064017,1,4289_7778022_100180,4289_148 -4289_75977,92,4289_14886,Finglas Village,103621033,1,4289_7778022_100240,4289_147 -4289_75977,93,4289_14887,Finglas Village,103731033,1,4289_7778022_100240,4289_147 -4289_75977,94,4289_14888,Finglas Village,103841033,1,4289_7778022_100240,4289_147 -4289_75977,95,4289_14889,Finglas Village,103951033,1,4289_7778022_100240,4289_147 -4289_75961,95,4289_1489,Colntarf Station,103952523,1,4289_7778022_104170,4289_18 -4289_75977,96,4289_14895,Finglas Village,104064025,1,4289_7778022_100200,4289_147 -4289_75977,92,4289_14897,Finglas Village,103621045,1,4289_7778022_100260,4289_147 -4289_75977,93,4289_14898,Finglas Village,103731045,1,4289_7778022_100260,4289_147 -4289_75977,94,4289_14899,Finglas Village,103841045,1,4289_7778022_100260,4289_147 -4289_75977,95,4289_14900,Finglas Village,103951045,1,4289_7778022_100260,4289_147 -4289_75977,96,4289_14906,Finglas Village,104064035,1,4289_7778022_100170,4289_147 -4289_75977,92,4289_14908,Finglas Village,103621067,1,4289_7778022_100210,4289_147 -4289_75977,93,4289_14909,Finglas Village,103731067,1,4289_7778022_100210,4289_147 -4289_75977,94,4289_14910,Finglas Village,103841067,1,4289_7778022_100210,4289_147 -4289_75977,95,4289_14911,Finglas Village,103951067,1,4289_7778022_100210,4289_147 -4289_75977,96,4289_14917,Finglas Village,104064053,1,4289_7778022_100190,4289_147 -4289_75977,92,4289_14919,Finglas Village,103621081,1,4289_7778022_100281,4289_147 -4289_75977,93,4289_14920,Finglas Village,103731081,1,4289_7778022_100281,4289_147 -4289_75977,94,4289_14921,Finglas Village,103841081,1,4289_7778022_100281,4289_147 -4289_75977,95,4289_14922,Finglas Village,103951081,1,4289_7778022_100281,4289_147 -4289_75977,92,4289_14929,Finglas Village,103621111,1,4289_7778022_100230,4289_147 -4289_75977,93,4289_14930,Finglas Village,103731111,1,4289_7778022_100230,4289_147 -4289_75977,94,4289_14931,Finglas Village,103841111,1,4289_7778022_100230,4289_147 -4289_75977,95,4289_14932,Finglas Village,103951111,1,4289_7778022_100230,4289_147 -4289_75977,96,4289_14938,Finglas Village,104064071,1,4289_7778022_100210,4289_148 -4289_75977,92,4289_14940,Finglas Village,103621127,1,4289_7778022_100250,4289_147 -4289_75977,93,4289_14941,Finglas Village,103731127,1,4289_7778022_100250,4289_147 -4289_75977,94,4289_14942,Finglas Village,103841127,1,4289_7778022_100250,4289_147 -4289_75977,95,4289_14943,Finglas Village,103951127,1,4289_7778022_100250,4289_147 -4289_75977,96,4289_14949,Finglas Village,104064089,1,4289_7778022_100160,4289_147 -4289_75961,96,4289_1495,Colntarf Station,104065249,1,4289_7778022_104090,4289_19 -4289_75977,92,4289_14951,Finglas Village,103621157,1,4289_7778022_100271,4289_147 -4289_75977,93,4289_14952,Finglas Village,103731157,1,4289_7778022_100271,4289_147 -4289_75977,94,4289_14953,Finglas Village,103841157,1,4289_7778022_100271,4289_147 -4289_75977,95,4289_14954,Finglas Village,103951157,1,4289_7778022_100271,4289_147 -4289_75977,96,4289_14960,Finglas Village,104064107,1,4289_7778022_100180,4289_147 -4289_75977,92,4289_14962,Finglas Village,103621189,1,4289_7778022_100200,4289_147 -4289_75977,93,4289_14963,Finglas Village,103731189,1,4289_7778022_100200,4289_147 -4289_75977,94,4289_14964,Finglas Village,103841189,1,4289_7778022_100200,4289_147 -4289_75977,95,4289_14965,Finglas Village,103951189,1,4289_7778022_100200,4289_147 -4289_75977,96,4289_14975,Finglas Village,104064131,1,4289_7778022_100200,4289_147 -4289_75977,92,4289_14977,Finglas Village,103621205,1,4289_7778022_100220,4289_147 -4289_75977,93,4289_14978,Finglas Village,103731205,1,4289_7778022_100220,4289_147 -4289_75977,94,4289_14979,Finglas Village,103841205,1,4289_7778022_100220,4289_147 -4289_75977,95,4289_14980,Finglas Village,103951205,1,4289_7778022_100220,4289_147 -4289_75977,92,4289_14987,Finglas Village,103621233,1,4289_7778022_100290,4289_147 -4289_75977,93,4289_14988,Finglas Village,103731233,1,4289_7778022_100290,4289_147 -4289_75977,94,4289_14989,Finglas Village,103841233,1,4289_7778022_100290,4289_147 -4289_75977,95,4289_14990,Finglas Village,103951233,1,4289_7778022_100290,4289_147 -4289_75977,96,4289_14996,Finglas Village,104064153,1,4289_7778022_100170,4289_148 -4289_75960,93,4289_15,Sutton Station,103731074,0,4289_7778022_103107,4289_1 -4289_75977,92,4289_15002,Finglas Village,103621255,1,4289_7778022_100310,4289_147 -4289_75977,93,4289_15003,Finglas Village,103731255,1,4289_7778022_100310,4289_147 -4289_75977,94,4289_15004,Finglas Village,103841255,1,4289_7778022_100310,4289_147 -4289_75977,95,4289_15005,Finglas Village,103951255,1,4289_7778022_100310,4289_147 -4289_75961,92,4289_1501,Colntarf Station,103622651,1,4289_7778022_104190,4289_18 -4289_75977,96,4289_15011,Finglas Village,104064171,1,4289_7778022_100220,4289_147 -4289_75977,92,4289_15013,Finglas Village,103621297,1,4289_7778022_100240,4289_147 -4289_75977,93,4289_15014,Finglas Village,103731297,1,4289_7778022_100240,4289_147 -4289_75977,94,4289_15015,Finglas Village,103841297,1,4289_7778022_100240,4289_147 -4289_75977,95,4289_15016,Finglas Village,103951297,1,4289_7778022_100240,4289_147 -4289_75961,93,4289_1502,Colntarf Station,103732651,1,4289_7778022_104190,4289_18 -4289_75977,96,4289_15022,Finglas Village,104064197,1,4289_7778022_100230,4289_147 -4289_75977,92,4289_15028,Finglas Village,103621325,1,4289_7778022_100260,4289_147 -4289_75977,93,4289_15029,Finglas Village,103731325,1,4289_7778022_100260,4289_147 -4289_75961,94,4289_1503,Colntarf Station,103842651,1,4289_7778022_104190,4289_18 -4289_75977,94,4289_15030,Finglas Village,103841325,1,4289_7778022_100260,4289_147 -4289_75977,95,4289_15031,Finglas Village,103951325,1,4289_7778022_100260,4289_147 -4289_75977,96,4289_15037,Finglas Village,104064219,1,4289_7778022_100190,4289_147 -4289_75977,92,4289_15039,Finglas Village,103621349,1,4289_7778022_100210,4289_147 -4289_75961,95,4289_1504,Colntarf Station,103952651,1,4289_7778022_104190,4289_18 -4289_75977,93,4289_15040,Finglas Village,103731349,1,4289_7778022_100210,4289_147 -4289_75977,94,4289_15041,Finglas Village,103841349,1,4289_7778022_100210,4289_147 -4289_75977,95,4289_15042,Finglas Village,103951349,1,4289_7778022_100210,4289_147 -4289_75977,92,4289_15053,Finglas Village,103621379,1,4289_7778022_100281,4289_147 -4289_75977,93,4289_15054,Finglas Village,103731379,1,4289_7778022_100281,4289_147 -4289_75977,94,4289_15055,Finglas Village,103841379,1,4289_7778022_100281,4289_147 -4289_75977,95,4289_15056,Finglas Village,103951379,1,4289_7778022_100281,4289_147 -4289_75977,96,4289_15062,Finglas Village,104064243,1,4289_7778022_100210,4289_148 -4289_75977,92,4289_15068,Finglas Village,103621395,1,4289_7778022_100230,4289_147 -4289_75977,93,4289_15069,Finglas Village,103731395,1,4289_7778022_100230,4289_147 -4289_75977,94,4289_15070,Finglas Village,103841395,1,4289_7778022_100230,4289_147 -4289_75977,95,4289_15071,Finglas Village,103951395,1,4289_7778022_100230,4289_147 -4289_75977,96,4289_15077,Finglas Village,104064257,1,4289_7778022_100160,4289_148 -4289_75977,92,4289_15079,Finglas Village,103621423,1,4289_7778022_100320,4289_147 -4289_75977,93,4289_15080,Finglas Village,103731423,1,4289_7778022_100320,4289_147 -4289_75977,94,4289_15081,Finglas Village,103841423,1,4289_7778022_100320,4289_147 -4289_75977,95,4289_15082,Finglas Village,103951423,1,4289_7778022_100320,4289_147 -4289_75977,96,4289_15088,Finglas Village,104064279,1,4289_7778022_100180,4289_148 -4289_75977,92,4289_15094,Finglas Village,103621443,1,4289_7778022_100300,4289_147 -4289_75977,93,4289_15095,Finglas Village,103731443,1,4289_7778022_100300,4289_147 -4289_75977,94,4289_15096,Finglas Village,103841443,1,4289_7778022_100300,4289_147 -4289_75977,95,4289_15097,Finglas Village,103951443,1,4289_7778022_100300,4289_147 -4289_75961,96,4289_1510,Colntarf Station,104065359,1,4289_7778022_104150,4289_19 -4289_75977,96,4289_15103,Finglas Village,104064303,1,4289_7778022_100240,4289_148 -4289_75977,92,4289_15105,Finglas Village,103621459,1,4289_7778022_100250,4289_147 -4289_75977,93,4289_15106,Finglas Village,103731459,1,4289_7778022_100250,4289_147 -4289_75977,94,4289_15107,Finglas Village,103841459,1,4289_7778022_100250,4289_147 -4289_75977,95,4289_15108,Finglas Village,103951459,1,4289_7778022_100250,4289_147 -4289_75977,96,4289_15114,Finglas Village,104064319,1,4289_7778022_100200,4289_148 -4289_75977,92,4289_15120,Finglas Village,103621491,1,4289_7778022_100200,4289_147 -4289_75977,93,4289_15121,Finglas Village,103731491,1,4289_7778022_100200,4289_147 -4289_75977,94,4289_15122,Finglas Village,103841491,1,4289_7778022_100200,4289_147 -4289_75977,95,4289_15123,Finglas Village,103951491,1,4289_7778022_100200,4289_147 -4289_75977,96,4289_15129,Finglas Village,104064343,1,4289_7778022_100170,4289_148 -4289_75977,92,4289_15135,Finglas Village,103621507,1,4289_7778022_100220,4289_147 -4289_75977,93,4289_15136,Finglas Village,103731507,1,4289_7778022_100220,4289_147 -4289_75977,94,4289_15137,Finglas Village,103841507,1,4289_7778022_100220,4289_147 -4289_75977,95,4289_15138,Finglas Village,103951507,1,4289_7778022_100220,4289_147 -4289_75977,96,4289_15144,Finglas Village,104064361,1,4289_7778022_100220,4289_148 -4289_75977,92,4289_15146,Finglas Village,103621533,1,4289_7778022_100290,4289_147 -4289_75977,93,4289_15147,Finglas Village,103731533,1,4289_7778022_100290,4289_147 -4289_75977,94,4289_15148,Finglas Village,103841533,1,4289_7778022_100290,4289_147 -4289_75977,95,4289_15149,Finglas Village,103951533,1,4289_7778022_100290,4289_147 -4289_75977,96,4289_15155,Finglas Village,104064385,1,4289_7778022_100230,4289_148 -4289_75961,92,4289_1516,Colntarf Station,103622753,1,4289_7778022_104060,4289_18 -4289_75977,92,4289_15161,Finglas Village,103621557,1,4289_7778022_100330,4289_147 -4289_75977,93,4289_15162,Finglas Village,103731557,1,4289_7778022_100330,4289_147 -4289_75977,94,4289_15163,Finglas Village,103841557,1,4289_7778022_100330,4289_147 -4289_75977,95,4289_15164,Finglas Village,103951557,1,4289_7778022_100330,4289_147 -4289_75961,93,4289_1517,Colntarf Station,103732753,1,4289_7778022_104060,4289_18 -4289_75977,96,4289_15170,Finglas Village,104064407,1,4289_7778022_100190,4289_148 -4289_75977,92,4289_15176,Finglas Village,103621575,1,4289_7778022_100310,4289_147 -4289_75977,93,4289_15177,Finglas Village,103731575,1,4289_7778022_100310,4289_147 -4289_75977,94,4289_15178,Finglas Village,103841575,1,4289_7778022_100310,4289_147 -4289_75977,95,4289_15179,Finglas Village,103951575,1,4289_7778022_100310,4289_147 -4289_75961,94,4289_1518,Colntarf Station,103842753,1,4289_7778022_104060,4289_18 -4289_75977,96,4289_15185,Finglas Village,104064425,1,4289_7778022_100250,4289_148 -4289_75961,95,4289_1519,Colntarf Station,103952753,1,4289_7778022_104060,4289_18 -4289_75977,92,4289_15191,Finglas Village,103621601,1,4289_7778022_100240,4289_147 -4289_75977,93,4289_15192,Finglas Village,103731601,1,4289_7778022_100240,4289_147 -4289_75977,94,4289_15193,Finglas Village,103841601,1,4289_7778022_100240,4289_147 -4289_75977,95,4289_15194,Finglas Village,103951601,1,4289_7778022_100240,4289_147 -4289_75960,96,4289_152,Sutton Station,104064490,0,4289_7778022_103105,4289_2 -4289_75977,96,4289_15200,Finglas Village,104064449,1,4289_7778022_100210,4289_148 -4289_75977,92,4289_15206,Finglas Village,103621621,1,4289_7778022_100260,4289_147 -4289_75977,93,4289_15207,Finglas Village,103731621,1,4289_7778022_100260,4289_147 -4289_75977,94,4289_15208,Finglas Village,103841621,1,4289_7778022_100260,4289_147 -4289_75977,95,4289_15209,Finglas Village,103951621,1,4289_7778022_100260,4289_147 -4289_75977,96,4289_15215,Finglas Village,104064469,1,4289_7778022_100160,4289_148 -4289_75977,92,4289_15217,Finglas Village,103621645,1,4289_7778022_100210,4289_147 -4289_75977,93,4289_15218,Finglas Village,103731645,1,4289_7778022_100210,4289_147 -4289_75977,94,4289_15219,Finglas Village,103841645,1,4289_7778022_100210,4289_147 -4289_75977,95,4289_15220,Finglas Village,103951645,1,4289_7778022_100210,4289_147 -4289_75977,96,4289_15226,Finglas Village,104064493,1,4289_7778022_100260,4289_148 -4289_75977,92,4289_15232,Finglas Village,103621667,1,4289_7778022_100230,4289_147 -4289_75977,93,4289_15233,Finglas Village,103731667,1,4289_7778022_100230,4289_147 -4289_75977,94,4289_15234,Finglas Village,103841667,1,4289_7778022_100230,4289_147 -4289_75977,95,4289_15235,Finglas Village,103951667,1,4289_7778022_100230,4289_147 -4289_75977,96,4289_15241,Finglas Village,104064513,1,4289_7778022_100180,4289_148 -4289_75977,92,4289_15247,Finglas Village,103621687,1,4289_7778022_100320,4289_147 -4289_75977,93,4289_15248,Finglas Village,103731687,1,4289_7778022_100320,4289_147 -4289_75977,94,4289_15249,Finglas Village,103841687,1,4289_7778022_100320,4289_147 -4289_75961,96,4289_1525,Colntarf Station,104065451,1,4289_7778022_104172,4289_19 -4289_75977,95,4289_15250,Finglas Village,103951687,1,4289_7778022_100320,4289_147 -4289_75977,96,4289_15256,Finglas Village,104064531,1,4289_7778022_100240,4289_148 -4289_75977,92,4289_15262,Finglas Village,103621715,1,4289_7778022_100300,4289_147 -4289_75977,93,4289_15263,Finglas Village,103731715,1,4289_7778022_100300,4289_147 -4289_75977,94,4289_15264,Finglas Village,103841715,1,4289_7778022_100300,4289_147 -4289_75977,95,4289_15265,Finglas Village,103951715,1,4289_7778022_100300,4289_147 -4289_75977,96,4289_15271,Finglas Village,104064559,1,4289_7778022_100200,4289_148 -4289_75977,92,4289_15277,Finglas Village,103621733,1,4289_7778022_100250,4289_147 -4289_75977,93,4289_15278,Finglas Village,103731733,1,4289_7778022_100250,4289_147 -4289_75977,94,4289_15279,Finglas Village,103841733,1,4289_7778022_100250,4289_147 -4289_75977,95,4289_15280,Finglas Village,103951733,1,4289_7778022_100250,4289_147 -4289_75977,96,4289_15286,Finglas Village,104064575,1,4289_7778022_100170,4289_148 -4289_75977,92,4289_15288,Finglas Village,103621757,1,4289_7778022_100200,4289_147 -4289_75977,93,4289_15289,Finglas Village,103731757,1,4289_7778022_100200,4289_147 -4289_75977,94,4289_15290,Finglas Village,103841757,1,4289_7778022_100200,4289_147 -4289_75977,95,4289_15291,Finglas Village,103951757,1,4289_7778022_100200,4289_147 -4289_75977,96,4289_15297,Finglas Village,104064599,1,4289_7778022_100220,4289_148 -4289_75977,92,4289_15303,Finglas Village,103621779,1,4289_7778022_100220,4289_147 -4289_75977,93,4289_15304,Finglas Village,103731779,1,4289_7778022_100220,4289_147 -4289_75977,94,4289_15305,Finglas Village,103841779,1,4289_7778022_100220,4289_147 -4289_75977,95,4289_15306,Finglas Village,103951779,1,4289_7778022_100220,4289_147 -4289_75961,92,4289_1531,Colntarf Station,103622855,1,4289_7778022_104140,4289_18 -4289_75977,96,4289_15312,Finglas Village,104064619,1,4289_7778022_100230,4289_148 -4289_75977,92,4289_15318,Finglas Village,103621799,1,4289_7778022_100290,4289_147 -4289_75977,93,4289_15319,Finglas Village,103731799,1,4289_7778022_100290,4289_147 -4289_75961,93,4289_1532,Colntarf Station,103732855,1,4289_7778022_104140,4289_18 -4289_75977,94,4289_15320,Finglas Village,103841799,1,4289_7778022_100290,4289_147 -4289_75977,95,4289_15321,Finglas Village,103951799,1,4289_7778022_100290,4289_147 -4289_75977,96,4289_15327,Finglas Village,104064639,1,4289_7778022_100190,4289_148 -4289_75961,94,4289_1533,Colntarf Station,103842855,1,4289_7778022_104140,4289_18 -4289_75977,92,4289_15333,Finglas Village,103621827,1,4289_7778022_100330,4289_147 -4289_75977,93,4289_15334,Finglas Village,103731827,1,4289_7778022_100330,4289_147 -4289_75977,94,4289_15335,Finglas Village,103841827,1,4289_7778022_100330,4289_147 -4289_75977,95,4289_15336,Finglas Village,103951827,1,4289_7778022_100330,4289_147 -4289_75961,95,4289_1534,Colntarf Station,103952855,1,4289_7778022_104140,4289_18 -4289_75977,96,4289_15342,Finglas Village,104064665,1,4289_7778022_100250,4289_148 -4289_75977,92,4289_15348,Finglas Village,103621847,1,4289_7778022_100310,4289_147 -4289_75977,93,4289_15349,Finglas Village,103731847,1,4289_7778022_100310,4289_147 -4289_75977,94,4289_15350,Finglas Village,103841847,1,4289_7778022_100310,4289_147 -4289_75977,95,4289_15351,Finglas Village,103951847,1,4289_7778022_100310,4289_147 -4289_75977,96,4289_15357,Finglas Village,104064681,1,4289_7778022_100270,4289_148 -4289_75977,92,4289_15359,Finglas Village,103621871,1,4289_7778022_100240,4289_147 -4289_75977,93,4289_15360,Finglas Village,103731871,1,4289_7778022_100240,4289_147 -4289_75977,94,4289_15361,Finglas Village,103841871,1,4289_7778022_100240,4289_147 -4289_75977,95,4289_15362,Finglas Village,103951871,1,4289_7778022_100240,4289_147 -4289_75977,96,4289_15368,Finglas Village,104064705,1,4289_7778022_100210,4289_148 -4289_75977,92,4289_15374,Finglas Village,103621901,1,4289_7778022_100260,4289_147 -4289_75977,93,4289_15375,Finglas Village,103731901,1,4289_7778022_100260,4289_147 -4289_75977,94,4289_15376,Finglas Village,103841901,1,4289_7778022_100260,4289_147 -4289_75977,95,4289_15377,Finglas Village,103951901,1,4289_7778022_100260,4289_147 -4289_75977,96,4289_15383,Finglas Village,104064727,1,4289_7778022_100160,4289_148 -4289_75977,92,4289_15389,Finglas Village,103621919,1,4289_7778022_100210,4289_147 -4289_75977,93,4289_15390,Finglas Village,103731919,1,4289_7778022_100210,4289_147 -4289_75977,94,4289_15391,Finglas Village,103841919,1,4289_7778022_100210,4289_147 -4289_75977,95,4289_15392,Finglas Village,103951919,1,4289_7778022_100210,4289_147 -4289_75977,96,4289_15398,Finglas Village,104064745,1,4289_7778022_100260,4289_148 -4289_75961,96,4289_1540,Colntarf Station,104065543,1,4289_7778022_104080,4289_19 -4289_75977,92,4289_15404,Finglas Village,103621947,1,4289_7778022_100230,4289_147 -4289_75977,93,4289_15405,Finglas Village,103731947,1,4289_7778022_100230,4289_147 -4289_75977,94,4289_15406,Finglas Village,103841947,1,4289_7778022_100230,4289_147 -4289_75977,95,4289_15407,Finglas Village,103951947,1,4289_7778022_100230,4289_147 -4289_75977,96,4289_15413,Finglas Village,104064771,1,4289_7778022_100180,4289_148 -4289_75977,92,4289_15419,Finglas Village,103621963,1,4289_7778022_100320,4289_147 -4289_75977,93,4289_15420,Finglas Village,103731963,1,4289_7778022_100320,4289_147 -4289_75977,94,4289_15421,Finglas Village,103841963,1,4289_7778022_100320,4289_147 -4289_75977,95,4289_15422,Finglas Village,103951963,1,4289_7778022_100320,4289_147 -4289_75977,96,4289_15428,Finglas Village,104064787,1,4289_7778022_100240,4289_148 -4289_75977,92,4289_15430,Finglas Village,103621989,1,4289_7778022_100300,4289_147 -4289_75977,93,4289_15431,Finglas Village,103731989,1,4289_7778022_100300,4289_147 -4289_75977,94,4289_15432,Finglas Village,103841989,1,4289_7778022_100300,4289_147 -4289_75977,95,4289_15433,Finglas Village,103951989,1,4289_7778022_100300,4289_147 -4289_75977,96,4289_15439,Finglas Village,104064813,1,4289_7778022_100200,4289_148 -4289_75977,92,4289_15445,Finglas Village,103622011,1,4289_7778022_100272,4289_147 -4289_75977,93,4289_15446,Finglas Village,103732011,1,4289_7778022_100272,4289_147 -4289_75977,94,4289_15447,Finglas Village,103842011,1,4289_7778022_100272,4289_147 -4289_75977,95,4289_15448,Finglas Village,103952011,1,4289_7778022_100272,4289_147 -4289_75977,96,4289_15454,Finglas Village,104064833,1,4289_7778022_100170,4289_148 -4289_75962,92,4289_1546,Dalkey,103621122,0,4289_7778022_104030,4289_21 -4289_75977,92,4289_15460,Finglas Village,103622031,1,4289_7778022_100250,4289_147 -4289_75977,93,4289_15461,Finglas Village,103732031,1,4289_7778022_100250,4289_147 -4289_75977,94,4289_15462,Finglas Village,103842031,1,4289_7778022_100250,4289_147 -4289_75977,95,4289_15463,Finglas Village,103952031,1,4289_7778022_100250,4289_147 -4289_75977,96,4289_15469,Finglas Village,104064849,1,4289_7778022_100220,4289_148 -4289_75962,93,4289_1547,Dalkey,103731122,0,4289_7778022_104030,4289_21 -4289_75977,92,4289_15475,Finglas Village,103622061,1,4289_7778022_100200,4289_147 -4289_75977,93,4289_15476,Finglas Village,103732061,1,4289_7778022_100200,4289_147 -4289_75977,94,4289_15477,Finglas Village,103842061,1,4289_7778022_100200,4289_147 -4289_75977,95,4289_15478,Finglas Village,103952061,1,4289_7778022_100200,4289_147 -4289_75962,94,4289_1548,Dalkey,103841122,0,4289_7778022_104030,4289_21 -4289_75977,96,4289_15484,Finglas Village,104064877,1,4289_7778022_100230,4289_148 -4289_75962,95,4289_1549,Dalkey,103951122,0,4289_7778022_104030,4289_21 -4289_75977,92,4289_15490,Finglas Village,103622083,1,4289_7778022_100220,4289_147 -4289_75977,93,4289_15491,Finglas Village,103732083,1,4289_7778022_100220,4289_147 -4289_75977,94,4289_15492,Finglas Village,103842083,1,4289_7778022_100220,4289_147 -4289_75977,95,4289_15493,Finglas Village,103952083,1,4289_7778022_100220,4289_147 -4289_75977,96,4289_15499,Finglas Village,104064895,1,4289_7778022_100190,4289_148 -4289_75977,92,4289_15501,Finglas Village,103622109,1,4289_7778022_100290,4289_147 -4289_75977,93,4289_15502,Finglas Village,103732109,1,4289_7778022_100290,4289_147 -4289_75977,94,4289_15503,Finglas Village,103842109,1,4289_7778022_100290,4289_147 -4289_75977,95,4289_15504,Finglas Village,103952109,1,4289_7778022_100290,4289_147 -4289_75977,96,4289_15510,Finglas Village,104064919,1,4289_7778022_100250,4289_148 -4289_75977,92,4289_15516,Finglas Village,103622135,1,4289_7778022_100330,4289_147 -4289_75977,93,4289_15517,Finglas Village,103732135,1,4289_7778022_100330,4289_147 -4289_75977,94,4289_15518,Finglas Village,103842135,1,4289_7778022_100330,4289_147 -4289_75977,95,4289_15519,Finglas Village,103952135,1,4289_7778022_100330,4289_147 -4289_75977,96,4289_15525,Finglas Village,104064939,1,4289_7778022_100270,4289_148 -4289_75977,92,4289_15531,Finglas Village,103622153,1,4289_7778022_100310,4289_147 -4289_75977,93,4289_15532,Finglas Village,103732153,1,4289_7778022_100310,4289_147 -4289_75977,94,4289_15533,Finglas Village,103842153,1,4289_7778022_100310,4289_147 -4289_75977,95,4289_15534,Finglas Village,103952153,1,4289_7778022_100310,4289_147 -4289_75977,96,4289_15540,Finglas Village,104064957,1,4289_7778022_100210,4289_148 -4289_75977,92,4289_15546,Finglas Village,103622195,1,4289_7778022_100240,4289_147 -4289_75977,93,4289_15547,Finglas Village,103732195,1,4289_7778022_100240,4289_147 -4289_75977,94,4289_15548,Finglas Village,103842195,1,4289_7778022_100240,4289_147 -4289_75977,95,4289_15549,Finglas Village,103952195,1,4289_7778022_100240,4289_147 -4289_75962,96,4289_1555,Dalkey,104064076,0,4289_7778022_104061,4289_21 -4289_75977,96,4289_15555,Finglas Village,104064985,1,4289_7778022_100160,4289_148 -4289_75977,92,4289_15561,Finglas Village,103622221,1,4289_7778022_100282,4289_147 -4289_75977,93,4289_15562,Finglas Village,103732221,1,4289_7778022_100282,4289_147 -4289_75977,94,4289_15563,Finglas Village,103842221,1,4289_7778022_100282,4289_147 -4289_75977,95,4289_15564,Finglas Village,103952221,1,4289_7778022_100282,4289_147 -4289_75962,92,4289_1557,Dalkey,103621224,0,4289_7778022_104071,4289_21 -4289_75977,96,4289_15570,Finglas Village,104064999,1,4289_7778022_100260,4289_148 -4289_75977,92,4289_15572,Finglas Village,103622253,1,4289_7778022_100260,4289_147 -4289_75977,93,4289_15573,Finglas Village,103732253,1,4289_7778022_100260,4289_147 -4289_75977,94,4289_15574,Finglas Village,103842253,1,4289_7778022_100260,4289_147 -4289_75977,95,4289_15575,Finglas Village,103952253,1,4289_7778022_100260,4289_147 -4289_75962,93,4289_1558,Dalkey,103731224,0,4289_7778022_104071,4289_21 -4289_75977,96,4289_15581,Finglas Village,104065025,1,4289_7778022_100180,4289_148 -4289_75977,92,4289_15587,Finglas Village,103622301,1,4289_7778022_100210,4289_147 -4289_75977,93,4289_15588,Finglas Village,103732301,1,4289_7778022_100210,4289_147 -4289_75977,94,4289_15589,Finglas Village,103842301,1,4289_7778022_100210,4289_147 -4289_75962,94,4289_1559,Dalkey,103841224,0,4289_7778022_104071,4289_21 -4289_75977,95,4289_15590,Finglas Village,103952301,1,4289_7778022_100210,4289_147 -4289_75977,96,4289_15596,Finglas Village,104065047,1,4289_7778022_100240,4289_148 -4289_75962,95,4289_1560,Dalkey,103951224,0,4289_7778022_104071,4289_21 -4289_75977,92,4289_15602,Finglas Village,103622317,1,4289_7778022_100230,4289_147 -4289_75977,93,4289_15603,Finglas Village,103732317,1,4289_7778022_100230,4289_147 -4289_75977,94,4289_15604,Finglas Village,103842317,1,4289_7778022_100230,4289_147 -4289_75977,95,4289_15605,Finglas Village,103952317,1,4289_7778022_100230,4289_147 -4289_75977,96,4289_15611,Finglas Village,104065063,1,4289_7778022_100200,4289_148 -4289_75977,92,4289_15617,Finglas Village,103622349,1,4289_7778022_100320,4289_147 -4289_75977,93,4289_15618,Finglas Village,103732349,1,4289_7778022_100320,4289_147 -4289_75977,94,4289_15619,Finglas Village,103842349,1,4289_7778022_100320,4289_147 -4289_75977,95,4289_15620,Finglas Village,103952349,1,4289_7778022_100320,4289_147 -4289_75977,96,4289_15626,Finglas Village,104065093,1,4289_7778022_100170,4289_148 -4289_75977,92,4289_15632,Finglas Village,103622365,1,4289_7778022_100300,4289_147 -4289_75977,93,4289_15633,Finglas Village,103732365,1,4289_7778022_100300,4289_147 -4289_75977,94,4289_15634,Finglas Village,103842365,1,4289_7778022_100300,4289_147 -4289_75977,95,4289_15635,Finglas Village,103952365,1,4289_7778022_100300,4289_147 -4289_75977,96,4289_15641,Finglas Village,104065105,1,4289_7778022_100220,4289_148 -4289_75977,92,4289_15643,Finglas Village,103622391,1,4289_7778022_100272,4289_147 -4289_75977,93,4289_15644,Finglas Village,103732391,1,4289_7778022_100272,4289_147 -4289_75977,94,4289_15645,Finglas Village,103842391,1,4289_7778022_100272,4289_147 -4289_75977,95,4289_15646,Finglas Village,103952391,1,4289_7778022_100272,4289_147 -4289_75977,96,4289_15652,Finglas Village,104065133,1,4289_7778022_100230,4289_148 -4289_75977,92,4289_15658,Finglas Village,103622421,1,4289_7778022_100250,4289_147 -4289_75977,93,4289_15659,Finglas Village,103732421,1,4289_7778022_100250,4289_147 -4289_75962,96,4289_1566,Dalkey,104064168,0,4289_7778022_104131,4289_21 -4289_75977,94,4289_15660,Finglas Village,103842421,1,4289_7778022_100250,4289_147 -4289_75977,95,4289_15661,Finglas Village,103952421,1,4289_7778022_100250,4289_147 -4289_75977,96,4289_15667,Finglas Village,104065153,1,4289_7778022_100190,4289_148 -4289_75977,92,4289_15673,Finglas Village,103622437,1,4289_7778022_100200,4289_147 -4289_75977,93,4289_15674,Finglas Village,103732437,1,4289_7778022_100200,4289_147 -4289_75977,94,4289_15675,Finglas Village,103842437,1,4289_7778022_100200,4289_147 -4289_75977,95,4289_15676,Finglas Village,103952437,1,4289_7778022_100200,4289_147 -4289_75962,92,4289_1568,Dalkey,103621392,0,4289_7778022_104030,4289_21 -4289_75977,96,4289_15682,Finglas Village,104065167,1,4289_7778022_100250,4289_148 -4289_75977,92,4289_15688,Finglas Village,103622467,1,4289_7778022_100220,4289_147 -4289_75977,93,4289_15689,Finglas Village,103732467,1,4289_7778022_100220,4289_147 -4289_75962,93,4289_1569,Dalkey,103731392,0,4289_7778022_104030,4289_21 -4289_75977,94,4289_15690,Finglas Village,103842467,1,4289_7778022_100220,4289_147 -4289_75977,95,4289_15691,Finglas Village,103952467,1,4289_7778022_100220,4289_147 -4289_75977,96,4289_15697,Finglas Village,104065195,1,4289_7778022_100270,4289_148 -4289_75962,94,4289_1570,Dalkey,103841392,0,4289_7778022_104030,4289_21 -4289_75977,92,4289_15703,Finglas Village,103622487,1,4289_7778022_100290,4289_147 -4289_75977,93,4289_15704,Finglas Village,103732487,1,4289_7778022_100290,4289_147 -4289_75977,94,4289_15705,Finglas Village,103842487,1,4289_7778022_100290,4289_147 -4289_75977,95,4289_15706,Finglas Village,103952487,1,4289_7778022_100290,4289_147 -4289_75962,95,4289_1571,Dalkey,103951392,0,4289_7778022_104030,4289_21 -4289_75977,96,4289_15712,Finglas Village,104065215,1,4289_7778022_100210,4289_148 -4289_75977,92,4289_15714,Finglas Village,103622511,1,4289_7778022_100330,4289_147 -4289_75977,93,4289_15715,Finglas Village,103732511,1,4289_7778022_100330,4289_147 -4289_75977,94,4289_15716,Finglas Village,103842511,1,4289_7778022_100330,4289_147 -4289_75977,95,4289_15717,Finglas Village,103952511,1,4289_7778022_100330,4289_147 -4289_75977,96,4289_15723,Finglas Village,104065235,1,4289_7778022_100160,4289_148 -4289_75977,92,4289_15729,Finglas Village,103622537,1,4289_7778022_100310,4289_147 -4289_75977,93,4289_15730,Finglas Village,103732537,1,4289_7778022_100310,4289_147 -4289_75977,94,4289_15731,Finglas Village,103842537,1,4289_7778022_100310,4289_147 -4289_75977,95,4289_15732,Finglas Village,103952537,1,4289_7778022_100310,4289_147 -4289_75977,96,4289_15738,Finglas Village,104065259,1,4289_7778022_100260,4289_148 -4289_75977,92,4289_15744,Finglas Village,103622555,1,4289_7778022_100240,4289_147 -4289_75977,93,4289_15745,Finglas Village,103732555,1,4289_7778022_100240,4289_147 -4289_75977,94,4289_15746,Finglas Village,103842555,1,4289_7778022_100240,4289_147 -4289_75977,95,4289_15747,Finglas Village,103952555,1,4289_7778022_100240,4289_147 -4289_75977,96,4289_15753,Finglas Village,104065273,1,4289_7778022_100200,4289_148 -4289_75977,92,4289_15759,Finglas Village,103622581,1,4289_7778022_100260,4289_147 -4289_75977,93,4289_15760,Finglas Village,103732581,1,4289_7778022_100260,4289_147 -4289_75977,94,4289_15761,Finglas Village,103842581,1,4289_7778022_100260,4289_147 -4289_75977,95,4289_15762,Finglas Village,103952581,1,4289_7778022_100260,4289_147 -4289_75977,96,4289_15768,Finglas Village,104065303,1,4289_7778022_100170,4289_148 -4289_75962,96,4289_1577,Dalkey,104064258,0,4289_7778022_104161,4289_21 -4289_75977,92,4289_15774,Finglas Village,103622601,1,4289_7778022_100210,4289_147 -4289_75977,93,4289_15775,Finglas Village,103732601,1,4289_7778022_100210,4289_147 -4289_75977,94,4289_15776,Finglas Village,103842601,1,4289_7778022_100210,4289_147 -4289_75977,95,4289_15777,Finglas Village,103952601,1,4289_7778022_100210,4289_147 -4289_75977,96,4289_15783,Finglas Village,104065321,1,4289_7778022_100220,4289_148 -4289_75977,92,4289_15785,Finglas Village,103622629,1,4289_7778022_100230,4289_147 -4289_75977,93,4289_15786,Finglas Village,103732629,1,4289_7778022_100230,4289_147 -4289_75977,94,4289_15787,Finglas Village,103842629,1,4289_7778022_100230,4289_147 -4289_75977,95,4289_15788,Finglas Village,103952629,1,4289_7778022_100230,4289_147 -4289_75962,92,4289_1579,Dalkey,103621504,0,4289_7778022_104071,4289_21 -4289_75977,96,4289_15794,Finglas Village,104065345,1,4289_7778022_100230,4289_147 -4289_75960,92,4289_158,Sutton Station,103621728,0,4289_7778022_103102,4289_1 -4289_75962,93,4289_1580,Dalkey,103731504,0,4289_7778022_104071,4289_21 -4289_75977,92,4289_15800,Finglas Village,103622649,1,4289_7778022_100320,4289_147 -4289_75977,93,4289_15801,Finglas Village,103732649,1,4289_7778022_100320,4289_147 -4289_75977,94,4289_15802,Finglas Village,103842649,1,4289_7778022_100320,4289_147 -4289_75977,95,4289_15803,Finglas Village,103952649,1,4289_7778022_100320,4289_147 -4289_75977,96,4289_15809,Finglas Village,104065361,1,4289_7778022_100190,4289_147 -4289_75962,94,4289_1581,Dalkey,103841504,0,4289_7778022_104071,4289_21 -4289_75977,92,4289_15811,Finglas Village,103622665,1,4289_7778022_100300,4289_147 -4289_75977,93,4289_15812,Finglas Village,103732665,1,4289_7778022_100300,4289_147 -4289_75977,94,4289_15813,Finglas Village,103842665,1,4289_7778022_100300,4289_147 -4289_75977,95,4289_15814,Finglas Village,103952665,1,4289_7778022_100300,4289_147 -4289_75962,95,4289_1582,Dalkey,103951504,0,4289_7778022_104071,4289_21 -4289_75977,96,4289_15824,Finglas Village,104065393,1,4289_7778022_100250,4289_147 -4289_75977,92,4289_15826,Finglas Village,103622693,1,4289_7778022_100272,4289_147 -4289_75977,93,4289_15827,Finglas Village,103732693,1,4289_7778022_100272,4289_147 -4289_75977,94,4289_15828,Finglas Village,103842693,1,4289_7778022_100272,4289_147 -4289_75977,95,4289_15829,Finglas Village,103952693,1,4289_7778022_100272,4289_147 -4289_75977,96,4289_15835,Finglas Village,104065409,1,4289_7778022_100210,4289_147 -4289_75977,92,4289_15841,Finglas Village,103622713,1,4289_7778022_100220,4289_147 -4289_75977,93,4289_15842,Finglas Village,103732713,1,4289_7778022_100220,4289_147 -4289_75977,94,4289_15843,Finglas Village,103842713,1,4289_7778022_100220,4289_147 -4289_75977,95,4289_15844,Finglas Village,103952713,1,4289_7778022_100220,4289_147 -4289_75977,92,4289_15851,Finglas Village,103622733,1,4289_7778022_100290,4289_147 -4289_75977,93,4289_15852,Finglas Village,103732733,1,4289_7778022_100290,4289_147 -4289_75977,94,4289_15853,Finglas Village,103842733,1,4289_7778022_100290,4289_147 -4289_75977,95,4289_15854,Finglas Village,103952733,1,4289_7778022_100290,4289_147 -4289_75977,96,4289_15860,Finglas Village,104065439,1,4289_7778022_100160,4289_147 -4289_75977,92,4289_15866,Finglas Village,103622751,1,4289_7778022_100330,4289_147 -4289_75977,93,4289_15867,Finglas Village,103732751,1,4289_7778022_100330,4289_147 -4289_75977,94,4289_15868,Finglas Village,103842751,1,4289_7778022_100330,4289_147 -4289_75977,95,4289_15869,Finglas Village,103952751,1,4289_7778022_100330,4289_147 -4289_75977,96,4289_15875,Finglas Village,104065453,1,4289_7778022_100260,4289_147 -4289_75977,92,4289_15877,Finglas Village,103622767,1,4289_7778022_100310,4289_147 -4289_75977,93,4289_15878,Finglas Village,103732767,1,4289_7778022_100310,4289_147 -4289_75977,94,4289_15879,Finglas Village,103842767,1,4289_7778022_100310,4289_147 -4289_75962,96,4289_1588,Dalkey,104064338,0,4289_7778022_104022,4289_21 -4289_75977,95,4289_15880,Finglas Village,103952767,1,4289_7778022_100310,4289_147 -4289_75977,96,4289_15890,Finglas Village,104065483,1,4289_7778022_100170,4289_147 -4289_75977,92,4289_15892,Finglas Village,103622795,1,4289_7778022_100240,4289_147 -4289_75977,93,4289_15893,Finglas Village,103732795,1,4289_7778022_100240,4289_147 -4289_75977,94,4289_15894,Finglas Village,103842795,1,4289_7778022_100240,4289_147 -4289_75977,95,4289_15895,Finglas Village,103952795,1,4289_7778022_100240,4289_147 -4289_75960,93,4289_159,Sutton Station,103731728,0,4289_7778022_103102,4289_1 -4289_75977,96,4289_15901,Finglas Village,104065503,1,4289_7778022_100220,4289_147 -4289_75977,92,4289_15907,Finglas Village,103622813,1,4289_7778022_100210,4289_147 -4289_75977,93,4289_15908,Finglas Village,103732813,1,4289_7778022_100210,4289_147 -4289_75977,94,4289_15909,Finglas Village,103842813,1,4289_7778022_100210,4289_147 -4289_75977,95,4289_15910,Finglas Village,103952813,1,4289_7778022_100210,4289_147 -4289_75977,92,4289_15917,Finglas Village,103622831,1,4289_7778022_100230,4289_147 -4289_75977,93,4289_15918,Finglas Village,103732831,1,4289_7778022_100230,4289_147 -4289_75977,94,4289_15919,Finglas Village,103842831,1,4289_7778022_100230,4289_147 -4289_75977,95,4289_15920,Finglas Village,103952831,1,4289_7778022_100230,4289_147 -4289_75977,96,4289_15926,Finglas Village,104065529,1,4289_7778022_100230,4289_147 -4289_75977,92,4289_15932,Finglas Village,103622853,1,4289_7778022_100320,4289_147 -4289_75977,93,4289_15933,Finglas Village,103732853,1,4289_7778022_100320,4289_147 -4289_75977,94,4289_15934,Finglas Village,103842853,1,4289_7778022_100320,4289_147 -4289_75977,95,4289_15935,Finglas Village,103952853,1,4289_7778022_100320,4289_147 -4289_75962,92,4289_1594,Dalkey,103621628,0,4289_7778022_104030,4289_21 -4289_75977,96,4289_15941,Finglas Village,104065545,1,4289_7778022_100190,4289_147 -4289_75977,92,4289_15943,Finglas Village,103622869,1,4289_7778022_100300,4289_147 -4289_75977,93,4289_15944,Finglas Village,103732869,1,4289_7778022_100300,4289_147 -4289_75977,94,4289_15945,Finglas Village,103842869,1,4289_7778022_100300,4289_147 -4289_75977,95,4289_15946,Finglas Village,103952869,1,4289_7778022_100300,4289_147 -4289_75962,93,4289_1595,Dalkey,103731628,0,4289_7778022_104030,4289_21 -4289_75977,96,4289_15956,Finglas Village,104065573,1,4289_7778022_100250,4289_147 -4289_75977,92,4289_15958,Finglas Village,103622897,1,4289_7778022_100272,4289_147 -4289_75977,93,4289_15959,Finglas Village,103732897,1,4289_7778022_100272,4289_147 -4289_75962,94,4289_1596,Dalkey,103841628,0,4289_7778022_104030,4289_21 -4289_75977,94,4289_15960,Finglas Village,103842897,1,4289_7778022_100272,4289_147 -4289_75977,95,4289_15961,Finglas Village,103952897,1,4289_7778022_100272,4289_147 -4289_75977,96,4289_15967,Finglas Village,104065593,1,4289_7778022_100210,4289_147 -4289_75962,95,4289_1597,Dalkey,103951628,0,4289_7778022_104030,4289_21 -4289_75977,92,4289_15973,Finglas Village,103622913,1,4289_7778022_100220,4289_147 -4289_75977,93,4289_15974,Finglas Village,103732913,1,4289_7778022_100220,4289_147 -4289_75977,94,4289_15975,Finglas Village,103842913,1,4289_7778022_100220,4289_147 -4289_75977,95,4289_15976,Finglas Village,103952913,1,4289_7778022_100220,4289_147 -4289_75977,92,4289_15983,Finglas Village,103622929,1,4289_7778022_100290,4289_147 -4289_75977,93,4289_15984,Finglas Village,103732929,1,4289_7778022_100290,4289_147 -4289_75977,94,4289_15985,Finglas Village,103842929,1,4289_7778022_100290,4289_147 -4289_75977,95,4289_15986,Finglas Village,103952929,1,4289_7778022_100290,4289_147 -4289_75977,96,4289_15992,Finglas Village,104065617,1,4289_7778022_100160,4289_147 -4289_75977,92,4289_15998,Finglas Village,103622955,1,4289_7778022_100330,4289_147 -4289_75977,93,4289_15999,Finglas Village,103732955,1,4289_7778022_100330,4289_147 -4289_75960,94,4289_16,Sutton Station,103841074,0,4289_7778022_103107,4289_1 -4289_75960,94,4289_160,Sutton Station,103841728,0,4289_7778022_103102,4289_1 -4289_75977,94,4289_16000,Finglas Village,103842955,1,4289_7778022_100330,4289_147 -4289_75977,95,4289_16001,Finglas Village,103952955,1,4289_7778022_100330,4289_147 -4289_75977,96,4289_16007,Finglas Village,104065635,1,4289_7778022_100260,4289_147 -4289_75977,92,4289_16009,Finglas Village,103622967,1,4289_7778022_100310,4289_147 -4289_75977,93,4289_16010,Finglas Village,103732967,1,4289_7778022_100310,4289_147 -4289_75977,94,4289_16011,Finglas Village,103842967,1,4289_7778022_100310,4289_147 -4289_75977,95,4289_16012,Finglas Village,103952967,1,4289_7778022_100310,4289_147 -4289_75977,96,4289_16022,Finglas Village,104065661,1,4289_7778022_100170,4289_147 -4289_75977,92,4289_16024,Finglas Village,103622995,1,4289_7778022_100210,4289_147 -4289_75977,93,4289_16025,Finglas Village,103732995,1,4289_7778022_100210,4289_147 -4289_75977,94,4289_16026,Finglas Village,103842995,1,4289_7778022_100210,4289_147 -4289_75977,95,4289_16027,Finglas Village,103952995,1,4289_7778022_100210,4289_147 -4289_75962,96,4289_1603,Dalkey,104064450,0,4289_7778022_104161,4289_21 -4289_75977,96,4289_16033,Finglas Village,104065681,1,4289_7778022_100220,4289_147 -4289_75977,92,4289_16039,Finglas Village,103623011,1,4289_7778022_100230,4289_147 -4289_75977,93,4289_16040,Finglas Village,103733011,1,4289_7778022_100230,4289_147 -4289_75977,94,4289_16041,Finglas Village,103843011,1,4289_7778022_100230,4289_147 -4289_75977,95,4289_16042,Finglas Village,103953011,1,4289_7778022_100230,4289_147 -4289_75977,92,4289_16049,Finglas Village,103623027,1,4289_7778022_100300,4289_147 -4289_75977,93,4289_16050,Finglas Village,103733027,1,4289_7778022_100300,4289_147 -4289_75977,94,4289_16051,Finglas Village,103843027,1,4289_7778022_100300,4289_147 -4289_75977,95,4289_16052,Finglas Village,103953027,1,4289_7778022_100300,4289_147 -4289_75977,96,4289_16058,Finglas Village,104065701,1,4289_7778022_100230,4289_147 -4289_75977,92,4289_16060,Finglas Village,103623039,1,4289_7778022_100272,4289_147 -4289_75977,93,4289_16061,Finglas Village,103733039,1,4289_7778022_100272,4289_147 -4289_75977,94,4289_16062,Finglas Village,103843039,1,4289_7778022_100272,4289_147 -4289_75977,95,4289_16063,Finglas Village,103953039,1,4289_7778022_100272,4289_147 -4289_75977,96,4289_16069,Finglas Village,104065711,1,4289_7778022_100190,4289_147 -4289_75978,92,4289_16075,UCD Belfield,103621012,0,4289_7778022_100621,4289_149 -4289_75978,93,4289_16076,UCD Belfield,103731012,0,4289_7778022_100621,4289_149 -4289_75978,94,4289_16077,UCD Belfield,103841012,0,4289_7778022_100621,4289_149 -4289_75978,95,4289_16078,UCD Belfield,103951012,0,4289_7778022_100621,4289_149 -4289_75978,92,4289_16085,UCD Belfield,103621026,0,4289_7778022_100640,4289_149 -4289_75978,93,4289_16086,UCD Belfield,103731026,0,4289_7778022_100640,4289_149 -4289_75978,94,4289_16087,UCD Belfield,103841026,0,4289_7778022_100640,4289_149 -4289_75978,95,4289_16088,UCD Belfield,103951026,0,4289_7778022_100640,4289_149 -4289_75962,92,4289_1609,Dalkey,103621742,0,4289_7778022_104071,4289_21 -4289_75978,96,4289_16094,UCD Belfield,104064026,0,4289_7778022_100510,4289_149 -4289_75978,92,4289_16096,UCD Belfield,103621046,0,4289_7778022_100661,4289_149 -4289_75978,93,4289_16097,UCD Belfield,103731046,0,4289_7778022_100661,4289_149 -4289_75978,94,4289_16098,UCD Belfield,103841046,0,4289_7778022_100661,4289_149 -4289_75978,95,4289_16099,UCD Belfield,103951046,0,4289_7778022_100661,4289_149 -4289_75960,95,4289_161,Sutton Station,103951728,0,4289_7778022_103102,4289_1 -4289_75962,93,4289_1610,Dalkey,103731742,0,4289_7778022_104071,4289_21 -4289_75978,96,4289_16105,UCD Belfield,104064042,0,4289_7778022_100530,4289_149 -4289_75978,92,4289_16107,UCD Belfield,103621076,0,4289_7778022_100610,4289_149 -4289_75978,93,4289_16108,UCD Belfield,103731076,0,4289_7778022_100610,4289_149 -4289_75978,94,4289_16109,UCD Belfield,103841076,0,4289_7778022_100610,4289_149 -4289_75962,94,4289_1611,Dalkey,103841742,0,4289_7778022_104071,4289_21 -4289_75978,95,4289_16110,UCD Belfield,103951076,0,4289_7778022_100610,4289_149 -4289_75978,92,4289_16117,UCD Belfield,103621094,0,4289_7778022_100700,4289_149 -4289_75978,93,4289_16118,UCD Belfield,103731094,0,4289_7778022_100700,4289_149 -4289_75978,94,4289_16119,UCD Belfield,103841094,0,4289_7778022_100700,4289_149 -4289_75962,95,4289_1612,Dalkey,103951742,0,4289_7778022_104071,4289_21 -4289_75978,95,4289_16120,UCD Belfield,103951094,0,4289_7778022_100700,4289_149 -4289_75978,96,4289_16126,UCD Belfield,104064060,0,4289_7778022_100540,4289_150 -4289_75978,92,4289_16128,UCD Belfield,103621114,0,4289_7778022_100630,4289_149 -4289_75978,93,4289_16129,UCD Belfield,103731114,0,4289_7778022_100630,4289_149 -4289_75978,94,4289_16130,UCD Belfield,103841114,0,4289_7778022_100630,4289_149 -4289_75978,95,4289_16131,UCD Belfield,103951114,0,4289_7778022_100630,4289_149 -4289_75978,92,4289_16138,UCD Belfield,103621124,0,4289_7778022_100720,4289_149 -4289_75978,93,4289_16139,UCD Belfield,103731124,0,4289_7778022_100720,4289_149 -4289_75978,94,4289_16140,UCD Belfield,103841124,0,4289_7778022_100720,4289_149 -4289_75978,95,4289_16141,UCD Belfield,103951124,0,4289_7778022_100720,4289_149 -4289_75978,96,4289_16147,UCD Belfield,104064082,0,4289_7778022_100490,4289_149 -4289_75978,92,4289_16149,UCD Belfield,103621144,0,4289_7778022_100740,4289_149 -4289_75978,93,4289_16150,UCD Belfield,103731144,0,4289_7778022_100740,4289_149 -4289_75978,94,4289_16151,UCD Belfield,103841144,0,4289_7778022_100740,4289_149 -4289_75978,95,4289_16152,UCD Belfield,103951144,0,4289_7778022_100740,4289_149 -4289_75978,92,4289_16159,UCD Belfield,103621150,0,4289_7778022_100760,4289_149 -4289_75978,93,4289_16160,UCD Belfield,103731150,0,4289_7778022_100760,4289_149 -4289_75978,94,4289_16161,UCD Belfield,103841150,0,4289_7778022_100760,4289_149 -4289_75978,95,4289_16162,UCD Belfield,103951150,0,4289_7778022_100760,4289_149 -4289_75978,92,4289_16169,UCD Belfield,103621166,0,4289_7778022_100770,4289_149 -4289_75978,93,4289_16170,UCD Belfield,103731166,0,4289_7778022_100770,4289_149 -4289_75978,94,4289_16171,UCD Belfield,103841166,0,4289_7778022_100770,4289_149 -4289_75978,95,4289_16172,UCD Belfield,103951166,0,4289_7778022_100770,4289_149 -4289_75978,96,4289_16178,UCD Belfield,104064106,0,4289_7778022_100500,4289_150 -4289_75962,96,4289_1618,Dalkey,104064552,0,4289_7778022_104191,4289_21 -4289_75978,92,4289_16180,UCD Belfield,103621190,0,4289_7778022_100650,4289_149 -4289_75978,93,4289_16181,UCD Belfield,103731190,0,4289_7778022_100650,4289_149 -4289_75978,94,4289_16182,UCD Belfield,103841190,0,4289_7778022_100650,4289_149 -4289_75978,95,4289_16183,UCD Belfield,103951190,0,4289_7778022_100650,4289_149 -4289_75978,96,4289_16189,UCD Belfield,104064126,0,4289_7778022_100520,4289_149 -4289_75978,92,4289_16191,UCD Belfield,103621210,0,4289_7778022_100791,4289_149 -4289_75978,93,4289_16192,UCD Belfield,103731210,0,4289_7778022_100791,4289_149 -4289_75978,94,4289_16193,UCD Belfield,103841210,0,4289_7778022_100791,4289_149 -4289_75978,95,4289_16194,UCD Belfield,103951210,0,4289_7778022_100791,4289_149 -4289_75978,92,4289_16205,UCD Belfield,103621240,0,4289_7778022_100621,4289_149 -4289_75978,93,4289_16206,UCD Belfield,103731240,0,4289_7778022_100621,4289_149 -4289_75978,94,4289_16207,UCD Belfield,103841240,0,4289_7778022_100621,4289_149 -4289_75978,95,4289_16208,UCD Belfield,103951240,0,4289_7778022_100621,4289_149 -4289_75978,96,4289_16214,UCD Belfield,104064142,0,4289_7778022_100510,4289_150 -4289_75978,92,4289_16216,UCD Belfield,103621288,0,4289_7778022_100670,4289_149 -4289_75978,93,4289_16217,UCD Belfield,103731288,0,4289_7778022_100670,4289_149 -4289_75978,94,4289_16218,UCD Belfield,103841288,0,4289_7778022_100670,4289_149 -4289_75978,95,4289_16219,UCD Belfield,103951288,0,4289_7778022_100670,4289_149 -4289_75978,96,4289_16225,UCD Belfield,104064174,0,4289_7778022_100530,4289_149 -4289_75978,92,4289_16231,UCD Belfield,103621316,0,4289_7778022_100680,4289_149 -4289_75978,93,4289_16232,UCD Belfield,103731316,0,4289_7778022_100680,4289_149 -4289_75978,94,4289_16233,UCD Belfield,103841316,0,4289_7778022_100680,4289_149 -4289_75978,95,4289_16234,UCD Belfield,103951316,0,4289_7778022_100680,4289_149 -4289_75962,92,4289_1624,Dalkey,103621850,0,4289_7778022_104030,4289_21 -4289_75978,92,4289_16241,UCD Belfield,103621342,0,4289_7778022_100690,4289_149 -4289_75978,93,4289_16242,UCD Belfield,103731342,0,4289_7778022_100690,4289_149 -4289_75978,94,4289_16243,UCD Belfield,103841342,0,4289_7778022_100690,4289_149 -4289_75978,95,4289_16244,UCD Belfield,103951342,0,4289_7778022_100690,4289_149 -4289_75962,93,4289_1625,Dalkey,103731850,0,4289_7778022_104030,4289_21 -4289_75978,96,4289_16250,UCD Belfield,104064198,0,4289_7778022_100540,4289_150 -4289_75978,92,4289_16256,UCD Belfield,103621358,0,4289_7778022_100640,4289_149 -4289_75978,93,4289_16257,UCD Belfield,103731358,0,4289_7778022_100640,4289_149 -4289_75978,94,4289_16258,UCD Belfield,103841358,0,4289_7778022_100640,4289_149 -4289_75978,95,4289_16259,UCD Belfield,103951358,0,4289_7778022_100640,4289_149 -4289_75962,94,4289_1626,Dalkey,103841850,0,4289_7778022_104030,4289_21 -4289_75978,96,4289_16265,UCD Belfield,104064218,0,4289_7778022_100560,4289_149 -4289_75978,92,4289_16267,UCD Belfield,103621388,0,4289_7778022_100710,4289_149 -4289_75978,93,4289_16268,UCD Belfield,103731388,0,4289_7778022_100710,4289_149 -4289_75978,94,4289_16269,UCD Belfield,103841388,0,4289_7778022_100710,4289_149 -4289_75962,95,4289_1627,Dalkey,103951850,0,4289_7778022_104030,4289_21 -4289_75978,95,4289_16270,UCD Belfield,103951388,0,4289_7778022_100710,4289_149 -4289_75978,92,4289_16281,UCD Belfield,103621410,0,4289_7778022_100730,4289_149 -4289_75978,93,4289_16282,UCD Belfield,103731410,0,4289_7778022_100730,4289_149 -4289_75978,94,4289_16283,UCD Belfield,103841410,0,4289_7778022_100730,4289_149 -4289_75978,95,4289_16284,UCD Belfield,103951410,0,4289_7778022_100730,4289_149 -4289_75978,96,4289_16290,UCD Belfield,104064238,0,4289_7778022_100490,4289_150 -4289_75978,92,4289_16292,UCD Belfield,103621422,0,4289_7778022_100750,4289_149 -4289_75978,93,4289_16293,UCD Belfield,103731422,0,4289_7778022_100750,4289_149 -4289_75978,94,4289_16294,UCD Belfield,103841422,0,4289_7778022_100750,4289_149 -4289_75978,95,4289_16295,UCD Belfield,103951422,0,4289_7778022_100750,4289_149 -4289_75978,96,4289_16301,UCD Belfield,104064264,0,4289_7778022_100550,4289_149 -4289_75978,92,4289_16307,UCD Belfield,103621440,0,4289_7778022_100661,4289_149 -4289_75978,93,4289_16308,UCD Belfield,103731440,0,4289_7778022_100661,4289_149 -4289_75978,94,4289_16309,UCD Belfield,103841440,0,4289_7778022_100661,4289_149 -4289_75978,95,4289_16310,UCD Belfield,103951440,0,4289_7778022_100661,4289_149 -4289_75978,92,4289_16317,UCD Belfield,103621464,0,4289_7778022_100610,4289_149 -4289_75978,93,4289_16318,UCD Belfield,103731464,0,4289_7778022_100610,4289_149 -4289_75978,94,4289_16319,UCD Belfield,103841464,0,4289_7778022_100610,4289_149 -4289_75978,95,4289_16320,UCD Belfield,103951464,0,4289_7778022_100610,4289_149 -4289_75978,96,4289_16326,UCD Belfield,104064282,0,4289_7778022_100500,4289_150 -4289_75962,96,4289_1633,Dalkey,104064658,0,4289_7778022_104023,4289_21 -4289_75978,92,4289_16332,UCD Belfield,103621476,0,4289_7778022_100700,4289_149 -4289_75978,93,4289_16333,UCD Belfield,103731476,0,4289_7778022_100700,4289_149 -4289_75978,94,4289_16334,UCD Belfield,103841476,0,4289_7778022_100700,4289_149 -4289_75978,95,4289_16335,UCD Belfield,103951476,0,4289_7778022_100700,4289_149 -4289_75978,96,4289_16341,UCD Belfield,104064308,0,4289_7778022_100580,4289_150 -4289_75978,92,4289_16343,UCD Belfield,103621500,0,4289_7778022_100781,4289_149 -4289_75978,93,4289_16344,UCD Belfield,103731500,0,4289_7778022_100781,4289_149 -4289_75978,94,4289_16345,UCD Belfield,103841500,0,4289_7778022_100781,4289_149 -4289_75978,95,4289_16346,UCD Belfield,103951500,0,4289_7778022_100781,4289_149 -4289_75978,96,4289_16352,UCD Belfield,104064320,0,4289_7778022_100520,4289_150 -4289_75978,92,4289_16358,UCD Belfield,103621514,0,4289_7778022_100630,4289_149 -4289_75978,93,4289_16359,UCD Belfield,103731514,0,4289_7778022_100630,4289_149 -4289_75978,94,4289_16360,UCD Belfield,103841514,0,4289_7778022_100630,4289_149 -4289_75978,95,4289_16361,UCD Belfield,103951514,0,4289_7778022_100630,4289_149 -4289_75978,96,4289_16367,UCD Belfield,104064340,0,4289_7778022_100510,4289_150 -4289_75978,92,4289_16369,UCD Belfield,103621534,0,4289_7778022_100720,4289_149 -4289_75978,93,4289_16370,UCD Belfield,103731534,0,4289_7778022_100720,4289_149 -4289_75978,94,4289_16371,UCD Belfield,103841534,0,4289_7778022_100720,4289_149 -4289_75978,95,4289_16372,UCD Belfield,103951534,0,4289_7778022_100720,4289_149 -4289_75978,96,4289_16378,UCD Belfield,104064360,0,4289_7778022_100600,4289_150 -4289_75978,92,4289_16384,UCD Belfield,103621548,0,4289_7778022_100740,4289_149 -4289_75978,93,4289_16385,UCD Belfield,103731548,0,4289_7778022_100740,4289_149 -4289_75978,94,4289_16386,UCD Belfield,103841548,0,4289_7778022_100740,4289_149 -4289_75978,95,4289_16387,UCD Belfield,103951548,0,4289_7778022_100740,4289_149 -4289_75962,92,4289_1639,Dalkey,103621962,0,4289_7778022_104071,4289_21 -4289_75978,96,4289_16393,UCD Belfield,104064374,0,4289_7778022_100530,4289_150 -4289_75978,92,4289_16395,UCD Belfield,103621566,0,4289_7778022_100760,4289_149 -4289_75978,93,4289_16396,UCD Belfield,103731566,0,4289_7778022_100760,4289_149 -4289_75978,94,4289_16397,UCD Belfield,103841566,0,4289_7778022_100760,4289_149 -4289_75978,95,4289_16398,UCD Belfield,103951566,0,4289_7778022_100760,4289_149 -4289_75962,93,4289_1640,Dalkey,103731962,0,4289_7778022_104071,4289_21 -4289_75978,96,4289_16404,UCD Belfield,104064396,0,4289_7778022_100620,4289_150 -4289_75962,94,4289_1641,Dalkey,103841962,0,4289_7778022_104071,4289_21 -4289_75978,92,4289_16410,UCD Belfield,103621586,0,4289_7778022_100770,4289_149 -4289_75978,93,4289_16411,UCD Belfield,103731586,0,4289_7778022_100770,4289_149 -4289_75978,94,4289_16412,UCD Belfield,103841586,0,4289_7778022_100770,4289_149 -4289_75978,95,4289_16413,UCD Belfield,103951586,0,4289_7778022_100770,4289_149 -4289_75978,96,4289_16419,UCD Belfield,104064410,0,4289_7778022_100540,4289_150 -4289_75962,95,4289_1642,Dalkey,103951962,0,4289_7778022_104071,4289_21 -4289_75978,92,4289_16421,UCD Belfield,103621608,0,4289_7778022_100650,4289_149 -4289_75978,93,4289_16422,UCD Belfield,103731608,0,4289_7778022_100650,4289_149 -4289_75978,94,4289_16423,UCD Belfield,103841608,0,4289_7778022_100650,4289_149 -4289_75978,95,4289_16424,UCD Belfield,103951608,0,4289_7778022_100650,4289_149 -4289_75978,96,4289_16430,UCD Belfield,104064428,0,4289_7778022_100571,4289_150 -4289_75978,92,4289_16436,UCD Belfield,103621622,0,4289_7778022_100791,4289_149 -4289_75978,93,4289_16437,UCD Belfield,103731622,0,4289_7778022_100791,4289_149 -4289_75978,94,4289_16438,UCD Belfield,103841622,0,4289_7778022_100791,4289_149 -4289_75978,95,4289_16439,UCD Belfield,103951622,0,4289_7778022_100791,4289_149 -4289_75978,96,4289_16445,UCD Belfield,104064440,0,4289_7778022_100560,4289_150 -4289_75978,92,4289_16451,UCD Belfield,103621648,0,4289_7778022_100670,4289_149 -4289_75978,93,4289_16452,UCD Belfield,103731648,0,4289_7778022_100670,4289_149 -4289_75978,94,4289_16453,UCD Belfield,103841648,0,4289_7778022_100670,4289_149 -4289_75978,95,4289_16454,UCD Belfield,103951648,0,4289_7778022_100670,4289_149 -4289_75978,96,4289_16460,UCD Belfield,104064468,0,4289_7778022_100490,4289_150 -4289_75978,92,4289_16462,UCD Belfield,103621662,0,4289_7778022_100680,4289_149 -4289_75978,93,4289_16463,UCD Belfield,103731662,0,4289_7778022_100680,4289_149 -4289_75978,94,4289_16464,UCD Belfield,103841662,0,4289_7778022_100680,4289_149 -4289_75978,95,4289_16465,UCD Belfield,103951662,0,4289_7778022_100680,4289_149 -4289_75978,96,4289_16471,UCD Belfield,104064480,0,4289_7778022_100590,4289_150 -4289_75978,92,4289_16477,UCD Belfield,103621686,0,4289_7778022_100690,4289_149 -4289_75978,93,4289_16478,UCD Belfield,103731686,0,4289_7778022_100690,4289_149 -4289_75978,94,4289_16479,UCD Belfield,103841686,0,4289_7778022_100690,4289_149 -4289_75962,96,4289_1648,Dalkey,104064768,0,4289_7778022_104042,4289_22 -4289_75978,95,4289_16480,UCD Belfield,103951686,0,4289_7778022_100690,4289_149 -4289_75978,96,4289_16486,UCD Belfield,104064494,0,4289_7778022_100550,4289_150 -4289_75978,92,4289_16492,UCD Belfield,103621698,0,4289_7778022_100640,4289_149 -4289_75978,93,4289_16493,UCD Belfield,103731698,0,4289_7778022_100640,4289_149 -4289_75978,94,4289_16494,UCD Belfield,103841698,0,4289_7778022_100640,4289_149 -4289_75978,95,4289_16495,UCD Belfield,103951698,0,4289_7778022_100640,4289_149 -4289_75978,96,4289_16501,UCD Belfield,104064520,0,4289_7778022_100610,4289_150 -4289_75978,92,4289_16503,UCD Belfield,103621722,0,4289_7778022_100710,4289_149 -4289_75978,93,4289_16504,UCD Belfield,103731722,0,4289_7778022_100710,4289_149 -4289_75978,94,4289_16505,UCD Belfield,103841722,0,4289_7778022_100710,4289_149 -4289_75978,95,4289_16506,UCD Belfield,103951722,0,4289_7778022_100710,4289_149 -4289_75978,96,4289_16512,UCD Belfield,104064536,0,4289_7778022_100500,4289_149 -4289_75978,92,4289_16518,UCD Belfield,103621736,0,4289_7778022_100730,4289_149 -4289_75978,93,4289_16519,UCD Belfield,103731736,0,4289_7778022_100730,4289_149 -4289_75978,94,4289_16520,UCD Belfield,103841736,0,4289_7778022_100730,4289_149 -4289_75978,95,4289_16521,UCD Belfield,103951736,0,4289_7778022_100730,4289_149 -4289_75978,96,4289_16527,UCD Belfield,104064558,0,4289_7778022_100580,4289_149 -4289_75978,92,4289_16533,UCD Belfield,103621754,0,4289_7778022_100750,4289_149 -4289_75978,93,4289_16534,UCD Belfield,103731754,0,4289_7778022_100750,4289_149 -4289_75978,94,4289_16535,UCD Belfield,103841754,0,4289_7778022_100750,4289_149 -4289_75978,95,4289_16536,UCD Belfield,103951754,0,4289_7778022_100750,4289_149 -4289_75962,92,4289_1654,Dalkey,103622066,0,4289_7778022_104030,4289_21 -4289_75978,96,4289_16542,UCD Belfield,104064574,0,4289_7778022_100520,4289_149 -4289_75978,92,4289_16544,UCD Belfield,103621772,0,4289_7778022_100610,4289_149 -4289_75978,93,4289_16545,UCD Belfield,103731772,0,4289_7778022_100610,4289_149 -4289_75978,94,4289_16546,UCD Belfield,103841772,0,4289_7778022_100610,4289_149 -4289_75978,95,4289_16547,UCD Belfield,103951772,0,4289_7778022_100610,4289_149 -4289_75962,93,4289_1655,Dalkey,103732066,0,4289_7778022_104030,4289_21 -4289_75978,96,4289_16553,UCD Belfield,104064586,0,4289_7778022_100640,4289_149 -4289_75978,92,4289_16559,UCD Belfield,103621796,0,4289_7778022_100700,4289_149 -4289_75962,94,4289_1656,Dalkey,103842066,0,4289_7778022_104030,4289_21 -4289_75978,93,4289_16560,UCD Belfield,103731796,0,4289_7778022_100700,4289_149 -4289_75978,94,4289_16561,UCD Belfield,103841796,0,4289_7778022_100700,4289_149 -4289_75978,95,4289_16562,UCD Belfield,103951796,0,4289_7778022_100700,4289_149 -4289_75978,96,4289_16568,UCD Belfield,104064600,0,4289_7778022_100510,4289_149 -4289_75962,95,4289_1657,Dalkey,103952066,0,4289_7778022_104030,4289_21 -4289_75978,92,4289_16574,UCD Belfield,103621814,0,4289_7778022_100630,4289_149 -4289_75978,93,4289_16575,UCD Belfield,103731814,0,4289_7778022_100630,4289_149 -4289_75978,94,4289_16576,UCD Belfield,103841814,0,4289_7778022_100630,4289_149 -4289_75978,95,4289_16577,UCD Belfield,103951814,0,4289_7778022_100630,4289_149 -4289_75978,96,4289_16583,UCD Belfield,104064628,0,4289_7778022_100600,4289_149 -4289_75978,92,4289_16585,UCD Belfield,103621830,0,4289_7778022_100720,4289_149 -4289_75978,93,4289_16586,UCD Belfield,103731830,0,4289_7778022_100720,4289_149 -4289_75978,94,4289_16587,UCD Belfield,103841830,0,4289_7778022_100720,4289_149 -4289_75978,95,4289_16588,UCD Belfield,103951830,0,4289_7778022_100720,4289_149 -4289_75978,96,4289_16594,UCD Belfield,104064638,0,4289_7778022_100630,4289_150 -4289_75978,92,4289_16600,UCD Belfield,103621856,0,4289_7778022_100740,4289_149 -4289_75978,93,4289_16601,UCD Belfield,103731856,0,4289_7778022_100740,4289_149 -4289_75978,94,4289_16602,UCD Belfield,103841856,0,4289_7778022_100740,4289_149 -4289_75978,95,4289_16603,UCD Belfield,103951856,0,4289_7778022_100740,4289_149 -4289_75978,96,4289_16609,UCD Belfield,104064664,0,4289_7778022_100530,4289_150 -4289_75978,92,4289_16615,UCD Belfield,103621870,0,4289_7778022_100760,4289_149 -4289_75978,93,4289_16616,UCD Belfield,103731870,0,4289_7778022_100760,4289_149 -4289_75978,94,4289_16617,UCD Belfield,103841870,0,4289_7778022_100760,4289_149 -4289_75978,95,4289_16618,UCD Belfield,103951870,0,4289_7778022_100760,4289_149 -4289_75978,96,4289_16624,UCD Belfield,104064676,0,4289_7778022_100620,4289_150 -4289_75978,92,4289_16626,UCD Belfield,103621886,0,4289_7778022_100770,4289_149 -4289_75978,93,4289_16627,UCD Belfield,103731886,0,4289_7778022_100770,4289_149 -4289_75978,94,4289_16628,UCD Belfield,103841886,0,4289_7778022_100770,4289_149 -4289_75978,95,4289_16629,UCD Belfield,103951886,0,4289_7778022_100770,4289_149 -4289_75962,96,4289_1663,Dalkey,104064874,0,4289_7778022_104201,4289_21 -4289_75978,96,4289_16635,UCD Belfield,104064694,0,4289_7778022_100660,4289_150 -4289_75978,92,4289_16641,UCD Belfield,103621912,0,4289_7778022_100622,4289_149 -4289_75978,93,4289_16642,UCD Belfield,103731912,0,4289_7778022_100622,4289_149 -4289_75978,94,4289_16643,UCD Belfield,103841912,0,4289_7778022_100622,4289_149 -4289_75978,95,4289_16644,UCD Belfield,103951912,0,4289_7778022_100622,4289_149 -4289_75978,96,4289_16650,UCD Belfield,104064716,0,4289_7778022_100540,4289_150 -4289_75978,92,4289_16656,UCD Belfield,103621926,0,4289_7778022_100650,4289_149 -4289_75978,93,4289_16657,UCD Belfield,103731926,0,4289_7778022_100650,4289_149 -4289_75978,94,4289_16658,UCD Belfield,103841926,0,4289_7778022_100650,4289_149 -4289_75978,95,4289_16659,UCD Belfield,103951926,0,4289_7778022_100650,4289_149 -4289_75978,96,4289_16665,UCD Belfield,104064734,0,4289_7778022_100571,4289_150 -4289_75978,92,4289_16667,UCD Belfield,103621946,0,4289_7778022_100791,4289_149 -4289_75978,93,4289_16668,UCD Belfield,103731946,0,4289_7778022_100791,4289_149 -4289_75978,94,4289_16669,UCD Belfield,103841946,0,4289_7778022_100791,4289_149 -4289_75978,95,4289_16670,UCD Belfield,103951946,0,4289_7778022_100791,4289_149 -4289_75978,96,4289_16676,UCD Belfield,104064744,0,4289_7778022_100560,4289_150 -4289_75978,92,4289_16682,UCD Belfield,103621966,0,4289_7778022_100670,4289_149 -4289_75978,93,4289_16683,UCD Belfield,103731966,0,4289_7778022_100670,4289_149 -4289_75978,94,4289_16684,UCD Belfield,103841966,0,4289_7778022_100670,4289_149 -4289_75978,95,4289_16685,UCD Belfield,103951966,0,4289_7778022_100670,4289_149 -4289_75962,92,4289_1669,Dalkey,103622204,0,4289_7778022_100172,4289_21 -4289_75978,96,4289_16691,UCD Belfield,104064762,0,4289_7778022_100490,4289_150 -4289_75978,92,4289_16697,UCD Belfield,103621980,0,4289_7778022_100680,4289_149 -4289_75978,93,4289_16698,UCD Belfield,103731980,0,4289_7778022_100680,4289_149 -4289_75978,94,4289_16699,UCD Belfield,103841980,0,4289_7778022_100680,4289_149 -4289_75960,96,4289_167,Sutton Station,104064540,0,4289_7778022_103503,4289_2 -4289_75962,93,4289_1670,Dalkey,103732204,0,4289_7778022_100172,4289_21 -4289_75978,95,4289_16700,UCD Belfield,103951980,0,4289_7778022_100680,4289_149 -4289_75978,96,4289_16706,UCD Belfield,104064784,0,4289_7778022_100590,4289_150 -4289_75978,92,4289_16708,UCD Belfield,103621998,0,4289_7778022_100690,4289_149 -4289_75978,93,4289_16709,UCD Belfield,103731998,0,4289_7778022_100690,4289_149 -4289_75962,94,4289_1671,Dalkey,103842204,0,4289_7778022_100172,4289_21 -4289_75978,94,4289_16710,UCD Belfield,103841998,0,4289_7778022_100690,4289_149 -4289_75978,95,4289_16711,UCD Belfield,103951998,0,4289_7778022_100690,4289_149 -4289_75978,96,4289_16717,UCD Belfield,104064798,0,4289_7778022_100550,4289_149 -4289_75962,95,4289_1672,Dalkey,103952204,0,4289_7778022_100172,4289_21 -4289_75978,92,4289_16723,UCD Belfield,103622024,0,4289_7778022_100640,4289_149 -4289_75978,93,4289_16724,UCD Belfield,103732024,0,4289_7778022_100640,4289_149 -4289_75978,94,4289_16725,UCD Belfield,103842024,0,4289_7778022_100640,4289_149 -4289_75978,95,4289_16726,UCD Belfield,103952024,0,4289_7778022_100640,4289_149 -4289_75978,96,4289_16732,UCD Belfield,104064822,0,4289_7778022_100610,4289_149 -4289_75978,92,4289_16738,UCD Belfield,103622038,0,4289_7778022_100662,4289_149 -4289_75978,93,4289_16739,UCD Belfield,103732038,0,4289_7778022_100662,4289_149 -4289_75978,94,4289_16740,UCD Belfield,103842038,0,4289_7778022_100662,4289_149 -4289_75978,95,4289_16741,UCD Belfield,103952038,0,4289_7778022_100662,4289_149 -4289_75978,96,4289_16747,UCD Belfield,104064840,0,4289_7778022_100650,4289_149 -4289_75978,92,4289_16749,UCD Belfield,103622054,0,4289_7778022_100710,4289_149 -4289_75978,93,4289_16750,UCD Belfield,103732054,0,4289_7778022_100710,4289_149 -4289_75978,94,4289_16751,UCD Belfield,103842054,0,4289_7778022_100710,4289_149 -4289_75978,95,4289_16752,UCD Belfield,103952054,0,4289_7778022_100710,4289_149 -4289_75978,96,4289_16758,UCD Belfield,104064856,0,4289_7778022_100500,4289_150 -4289_75978,92,4289_16764,UCD Belfield,103622076,0,4289_7778022_100730,4289_149 -4289_75978,93,4289_16765,UCD Belfield,103732076,0,4289_7778022_100730,4289_149 -4289_75978,94,4289_16766,UCD Belfield,103842076,0,4289_7778022_100730,4289_149 -4289_75978,95,4289_16767,UCD Belfield,103952076,0,4289_7778022_100730,4289_149 -4289_75978,96,4289_16773,UCD Belfield,104064878,0,4289_7778022_100580,4289_150 -4289_75978,92,4289_16779,UCD Belfield,103622098,0,4289_7778022_100750,4289_149 -4289_75962,96,4289_1678,Dalkey,104064980,0,4289_7778022_104032,4289_21 -4289_75978,93,4289_16780,UCD Belfield,103732098,0,4289_7778022_100750,4289_149 -4289_75978,94,4289_16781,UCD Belfield,103842098,0,4289_7778022_100750,4289_149 -4289_75978,95,4289_16782,UCD Belfield,103952098,0,4289_7778022_100750,4289_149 -4289_75978,96,4289_16788,UCD Belfield,104064890,0,4289_7778022_100520,4289_150 -4289_75978,92,4289_16790,UCD Belfield,103622126,0,4289_7778022_100610,4289_149 -4289_75978,93,4289_16791,UCD Belfield,103732126,0,4289_7778022_100610,4289_149 -4289_75978,94,4289_16792,UCD Belfield,103842126,0,4289_7778022_100610,4289_149 -4289_75978,95,4289_16793,UCD Belfield,103952126,0,4289_7778022_100610,4289_149 -4289_75978,96,4289_16799,UCD Belfield,104064904,0,4289_7778022_100640,4289_150 -4289_75978,92,4289_16805,UCD Belfield,103622154,0,4289_7778022_100700,4289_149 -4289_75978,93,4289_16806,UCD Belfield,103732154,0,4289_7778022_100700,4289_149 -4289_75978,94,4289_16807,UCD Belfield,103842154,0,4289_7778022_100700,4289_149 -4289_75978,95,4289_16808,UCD Belfield,103952154,0,4289_7778022_100700,4289_149 -4289_75978,96,4289_16814,UCD Belfield,104064932,0,4289_7778022_100510,4289_150 -4289_75978,92,4289_16820,UCD Belfield,103622176,0,4289_7778022_100630,4289_149 -4289_75978,93,4289_16821,UCD Belfield,103732176,0,4289_7778022_100630,4289_149 -4289_75978,94,4289_16822,UCD Belfield,103842176,0,4289_7778022_100630,4289_149 -4289_75978,95,4289_16823,UCD Belfield,103952176,0,4289_7778022_100630,4289_149 -4289_75978,96,4289_16829,UCD Belfield,104064944,0,4289_7778022_100600,4289_150 -4289_75978,92,4289_16831,UCD Belfield,103622200,0,4289_7778022_100800,4289_149 -4289_75978,93,4289_16832,UCD Belfield,103732200,0,4289_7778022_100800,4289_149 -4289_75978,94,4289_16833,UCD Belfield,103842200,0,4289_7778022_100800,4289_149 -4289_75978,95,4289_16834,UCD Belfield,103952200,0,4289_7778022_100800,4289_149 -4289_75962,92,4289_1684,Dalkey,103622334,0,4289_7778022_104030,4289_21 -4289_75978,96,4289_16840,UCD Belfield,104064960,0,4289_7778022_100630,4289_150 -4289_75978,92,4289_16846,UCD Belfield,103622220,0,4289_7778022_100720,4289_149 -4289_75978,93,4289_16847,UCD Belfield,103732220,0,4289_7778022_100720,4289_149 -4289_75978,94,4289_16848,UCD Belfield,103842220,0,4289_7778022_100720,4289_149 -4289_75978,95,4289_16849,UCD Belfield,103952220,0,4289_7778022_100720,4289_149 -4289_75962,93,4289_1685,Dalkey,103732334,0,4289_7778022_104030,4289_21 -4289_75978,96,4289_16855,UCD Belfield,104064984,0,4289_7778022_100530,4289_150 -4289_75962,94,4289_1686,Dalkey,103842334,0,4289_7778022_104030,4289_21 -4289_75978,92,4289_16861,UCD Belfield,103622240,0,4289_7778022_100740,4289_149 -4289_75978,93,4289_16862,UCD Belfield,103732240,0,4289_7778022_100740,4289_149 -4289_75978,94,4289_16863,UCD Belfield,103842240,0,4289_7778022_100740,4289_149 -4289_75978,95,4289_16864,UCD Belfield,103952240,0,4289_7778022_100740,4289_149 -4289_75962,95,4289_1687,Dalkey,103952334,0,4289_7778022_104030,4289_21 -4289_75978,96,4289_16870,UCD Belfield,104064996,0,4289_7778022_100620,4289_150 -4289_75978,92,4289_16872,UCD Belfield,103622260,0,4289_7778022_100760,4289_149 -4289_75978,93,4289_16873,UCD Belfield,103732260,0,4289_7778022_100760,4289_149 -4289_75978,94,4289_16874,UCD Belfield,103842260,0,4289_7778022_100760,4289_149 -4289_75978,95,4289_16875,UCD Belfield,103952260,0,4289_7778022_100760,4289_149 -4289_75978,96,4289_16881,UCD Belfield,104065012,0,4289_7778022_100660,4289_150 -4289_75978,92,4289_16887,UCD Belfield,103622286,0,4289_7778022_100770,4289_149 -4289_75978,93,4289_16888,UCD Belfield,103732286,0,4289_7778022_100770,4289_149 -4289_75978,94,4289_16889,UCD Belfield,103842286,0,4289_7778022_100770,4289_149 -4289_75978,95,4289_16890,UCD Belfield,103952286,0,4289_7778022_100770,4289_149 -4289_75978,96,4289_16896,UCD Belfield,104065032,0,4289_7778022_100540,4289_150 -4289_75978,92,4289_16902,UCD Belfield,103622310,0,4289_7778022_100622,4289_149 -4289_75978,93,4289_16903,UCD Belfield,103732310,0,4289_7778022_100622,4289_149 -4289_75978,94,4289_16904,UCD Belfield,103842310,0,4289_7778022_100622,4289_149 -4289_75978,95,4289_16905,UCD Belfield,103952310,0,4289_7778022_100622,4289_149 -4289_75978,96,4289_16911,UCD Belfield,104065050,0,4289_7778022_100560,4289_150 -4289_75978,92,4289_16913,UCD Belfield,103622328,0,4289_7778022_100650,4289_149 -4289_75978,93,4289_16914,UCD Belfield,103732328,0,4289_7778022_100650,4289_149 -4289_75978,94,4289_16915,UCD Belfield,103842328,0,4289_7778022_100650,4289_149 -4289_75978,95,4289_16916,UCD Belfield,103952328,0,4289_7778022_100650,4289_149 -4289_75978,96,4289_16922,UCD Belfield,104065066,0,4289_7778022_100490,4289_150 -4289_75978,92,4289_16928,UCD Belfield,103622354,0,4289_7778022_100670,4289_149 -4289_75978,93,4289_16929,UCD Belfield,103732354,0,4289_7778022_100670,4289_149 -4289_75962,96,4289_1693,Dalkey,104065086,0,4289_7778022_104024,4289_21 -4289_75978,94,4289_16930,UCD Belfield,103842354,0,4289_7778022_100670,4289_149 -4289_75978,95,4289_16931,UCD Belfield,103952354,0,4289_7778022_100670,4289_149 -4289_75978,96,4289_16937,UCD Belfield,104065090,0,4289_7778022_100590,4289_150 -4289_75978,92,4289_16943,UCD Belfield,103622370,0,4289_7778022_100792,4289_149 -4289_75978,93,4289_16944,UCD Belfield,103732370,0,4289_7778022_100792,4289_149 -4289_75978,94,4289_16945,UCD Belfield,103842370,0,4289_7778022_100792,4289_149 -4289_75978,95,4289_16946,UCD Belfield,103952370,0,4289_7778022_100792,4289_149 -4289_75978,96,4289_16952,UCD Belfield,104065108,0,4289_7778022_100550,4289_150 -4289_75978,92,4289_16954,UCD Belfield,103622394,0,4289_7778022_100680,4289_149 -4289_75978,93,4289_16955,UCD Belfield,103732394,0,4289_7778022_100680,4289_149 -4289_75978,94,4289_16956,UCD Belfield,103842394,0,4289_7778022_100680,4289_149 -4289_75978,95,4289_16957,UCD Belfield,103952394,0,4289_7778022_100680,4289_149 -4289_75978,96,4289_16963,UCD Belfield,104065118,0,4289_7778022_100650,4289_150 -4289_75978,92,4289_16969,UCD Belfield,103622408,0,4289_7778022_100690,4289_149 -4289_75978,93,4289_16970,UCD Belfield,103732408,0,4289_7778022_100690,4289_149 -4289_75978,94,4289_16971,UCD Belfield,103842408,0,4289_7778022_100690,4289_149 -4289_75978,95,4289_16972,UCD Belfield,103952408,0,4289_7778022_100690,4289_149 -4289_75978,96,4289_16978,UCD Belfield,104065130,0,4289_7778022_100500,4289_150 -4289_75978,92,4289_16984,UCD Belfield,103622428,0,4289_7778022_100782,4289_149 -4289_75978,93,4289_16985,UCD Belfield,103732428,0,4289_7778022_100782,4289_149 -4289_75978,94,4289_16986,UCD Belfield,103842428,0,4289_7778022_100782,4289_149 -4289_75978,95,4289_16987,UCD Belfield,103952428,0,4289_7778022_100782,4289_149 -4289_75962,92,4289_1699,Dalkey,103622458,0,4289_7778022_104072,4289_21 -4289_75978,96,4289_16993,UCD Belfield,104065160,0,4289_7778022_100580,4289_150 -4289_75978,92,4289_16995,UCD Belfield,103622454,0,4289_7778022_100640,4289_149 -4289_75978,93,4289_16996,UCD Belfield,103732454,0,4289_7778022_100640,4289_149 -4289_75978,94,4289_16997,UCD Belfield,103842454,0,4289_7778022_100640,4289_149 -4289_75978,95,4289_16998,UCD Belfield,103952454,0,4289_7778022_100640,4289_149 -4289_75960,95,4289_17,Sutton Station,103951074,0,4289_7778022_103107,4289_1 -4289_75962,93,4289_1700,Dalkey,103732458,0,4289_7778022_104072,4289_21 -4289_75978,96,4289_17004,UCD Belfield,104065174,0,4289_7778022_100520,4289_150 -4289_75962,94,4289_1701,Dalkey,103842458,0,4289_7778022_104072,4289_21 -4289_75978,92,4289_17010,UCD Belfield,103622472,0,4289_7778022_100662,4289_149 -4289_75978,93,4289_17011,UCD Belfield,103732472,0,4289_7778022_100662,4289_149 -4289_75978,94,4289_17012,UCD Belfield,103842472,0,4289_7778022_100662,4289_149 -4289_75978,95,4289_17013,UCD Belfield,103952472,0,4289_7778022_100662,4289_149 -4289_75978,96,4289_17019,UCD Belfield,104065194,0,4289_7778022_100640,4289_150 -4289_75962,95,4289_1702,Dalkey,103952458,0,4289_7778022_104072,4289_21 -4289_75978,92,4289_17025,UCD Belfield,103622490,0,4289_7778022_100710,4289_149 -4289_75978,93,4289_17026,UCD Belfield,103732490,0,4289_7778022_100710,4289_149 -4289_75978,94,4289_17027,UCD Belfield,103842490,0,4289_7778022_100710,4289_149 -4289_75978,95,4289_17028,UCD Belfield,103952490,0,4289_7778022_100710,4289_149 -4289_75978,96,4289_17034,UCD Belfield,104065214,0,4289_7778022_100572,4289_150 -4289_75978,92,4289_17036,UCD Belfield,103622510,0,4289_7778022_100730,4289_149 -4289_75978,93,4289_17037,UCD Belfield,103732510,0,4289_7778022_100730,4289_149 -4289_75978,94,4289_17038,UCD Belfield,103842510,0,4289_7778022_100730,4289_149 -4289_75978,95,4289_17039,UCD Belfield,103952510,0,4289_7778022_100730,4289_149 -4289_75978,96,4289_17045,UCD Belfield,104065222,0,4289_7778022_100600,4289_150 -4289_75978,92,4289_17051,UCD Belfield,103622522,0,4289_7778022_100750,4289_149 -4289_75978,93,4289_17052,UCD Belfield,103732522,0,4289_7778022_100750,4289_149 -4289_75978,94,4289_17053,UCD Belfield,103842522,0,4289_7778022_100750,4289_149 -4289_75978,95,4289_17054,UCD Belfield,103952522,0,4289_7778022_100750,4289_149 -4289_75978,96,4289_17060,UCD Belfield,104065242,0,4289_7778022_100630,4289_150 -4289_75978,92,4289_17066,UCD Belfield,103622544,0,4289_7778022_100610,4289_149 -4289_75978,93,4289_17067,UCD Belfield,103732544,0,4289_7778022_100610,4289_149 -4289_75978,94,4289_17068,UCD Belfield,103842544,0,4289_7778022_100610,4289_149 -4289_75978,95,4289_17069,UCD Belfield,103952544,0,4289_7778022_100610,4289_149 -4289_75978,96,4289_17075,UCD Belfield,104065268,0,4289_7778022_100530,4289_150 -4289_75978,92,4289_17077,UCD Belfield,103622568,0,4289_7778022_100700,4289_149 -4289_75978,93,4289_17078,UCD Belfield,103732568,0,4289_7778022_100700,4289_149 -4289_75978,94,4289_17079,UCD Belfield,103842568,0,4289_7778022_100700,4289_149 -4289_75962,96,4289_1708,Dalkey,104065188,0,4289_7778022_104043,4289_21 -4289_75978,95,4289_17080,UCD Belfield,103952568,0,4289_7778022_100700,4289_149 -4289_75978,96,4289_17086,UCD Belfield,104065282,0,4289_7778022_100620,4289_150 -4289_75978,92,4289_17092,UCD Belfield,103622588,0,4289_7778022_100630,4289_149 -4289_75978,93,4289_17093,UCD Belfield,103732588,0,4289_7778022_100630,4289_149 -4289_75978,94,4289_17094,UCD Belfield,103842588,0,4289_7778022_100630,4289_149 -4289_75978,95,4289_17095,UCD Belfield,103952588,0,4289_7778022_100630,4289_149 -4289_75978,96,4289_17101,UCD Belfield,104065298,0,4289_7778022_100660,4289_150 -4289_75978,92,4289_17107,UCD Belfield,103622606,0,4289_7778022_100800,4289_149 -4289_75978,93,4289_17108,UCD Belfield,103732606,0,4289_7778022_100800,4289_149 -4289_75978,94,4289_17109,UCD Belfield,103842606,0,4289_7778022_100800,4289_149 -4289_75978,95,4289_17110,UCD Belfield,103952606,0,4289_7778022_100800,4289_149 -4289_75978,96,4289_17116,UCD Belfield,104065318,0,4289_7778022_100540,4289_150 -4289_75978,92,4289_17118,UCD Belfield,103622618,0,4289_7778022_100740,4289_149 -4289_75978,93,4289_17119,UCD Belfield,103732618,0,4289_7778022_100740,4289_149 -4289_75978,94,4289_17120,UCD Belfield,103842618,0,4289_7778022_100740,4289_149 -4289_75978,95,4289_17121,UCD Belfield,103952618,0,4289_7778022_100740,4289_149 -4289_75978,96,4289_17127,UCD Belfield,104065328,0,4289_7778022_100560,4289_150 -4289_75978,92,4289_17133,UCD Belfield,103622634,0,4289_7778022_100760,4289_149 -4289_75978,93,4289_17134,UCD Belfield,103732634,0,4289_7778022_100760,4289_149 -4289_75978,94,4289_17135,UCD Belfield,103842634,0,4289_7778022_100760,4289_149 -4289_75978,95,4289_17136,UCD Belfield,103952634,0,4289_7778022_100760,4289_149 -4289_75962,92,4289_1714,Dalkey,103622576,0,4289_7778022_104030,4289_21 -4289_75978,96,4289_17142,UCD Belfield,104065348,0,4289_7778022_100590,4289_150 -4289_75978,92,4289_17148,UCD Belfield,103622658,0,4289_7778022_100770,4289_149 -4289_75978,93,4289_17149,UCD Belfield,103732658,0,4289_7778022_100770,4289_149 -4289_75962,93,4289_1715,Dalkey,103732576,0,4289_7778022_104030,4289_21 -4289_75978,94,4289_17150,UCD Belfield,103842658,0,4289_7778022_100770,4289_149 -4289_75978,95,4289_17151,UCD Belfield,103952658,0,4289_7778022_100770,4289_149 -4289_75978,96,4289_17157,UCD Belfield,104065378,0,4289_7778022_100550,4289_149 -4289_75978,92,4289_17159,UCD Belfield,103622676,0,4289_7778022_100650,4289_149 -4289_75962,94,4289_1716,Dalkey,103842576,0,4289_7778022_104030,4289_21 -4289_75978,93,4289_17160,UCD Belfield,103732676,0,4289_7778022_100650,4289_149 -4289_75978,94,4289_17161,UCD Belfield,103842676,0,4289_7778022_100650,4289_149 -4289_75978,95,4289_17162,UCD Belfield,103952676,0,4289_7778022_100650,4289_149 -4289_75962,95,4289_1717,Dalkey,103952576,0,4289_7778022_104030,4289_21 -4289_75978,92,4289_17173,UCD Belfield,103622692,0,4289_7778022_100670,4289_149 -4289_75978,93,4289_17174,UCD Belfield,103732692,0,4289_7778022_100670,4289_149 -4289_75978,94,4289_17175,UCD Belfield,103842692,0,4289_7778022_100670,4289_149 -4289_75978,95,4289_17176,UCD Belfield,103952692,0,4289_7778022_100670,4289_149 -4289_75978,96,4289_17182,UCD Belfield,104065396,0,4289_7778022_100500,4289_150 -4289_75978,92,4289_17184,UCD Belfield,103622708,0,4289_7778022_100792,4289_149 -4289_75978,93,4289_17185,UCD Belfield,103732708,0,4289_7778022_100792,4289_149 -4289_75978,94,4289_17186,UCD Belfield,103842708,0,4289_7778022_100792,4289_149 -4289_75978,95,4289_17187,UCD Belfield,103952708,0,4289_7778022_100792,4289_149 -4289_75978,96,4289_17193,UCD Belfield,104065420,0,4289_7778022_100520,4289_149 -4289_75978,92,4289_17199,UCD Belfield,103622720,0,4289_7778022_100690,4289_149 -4289_75978,93,4289_17200,UCD Belfield,103732720,0,4289_7778022_100690,4289_149 -4289_75978,94,4289_17201,UCD Belfield,103842720,0,4289_7778022_100690,4289_149 -4289_75978,95,4289_17202,UCD Belfield,103952720,0,4289_7778022_100690,4289_149 -4289_75978,92,4289_17209,UCD Belfield,103622736,0,4289_7778022_100782,4289_149 -4289_75978,93,4289_17210,UCD Belfield,103732736,0,4289_7778022_100782,4289_149 -4289_75978,94,4289_17211,UCD Belfield,103842736,0,4289_7778022_100782,4289_149 -4289_75978,95,4289_17212,UCD Belfield,103952736,0,4289_7778022_100782,4289_149 -4289_75978,96,4289_17218,UCD Belfield,104065440,0,4289_7778022_100572,4289_150 -4289_75978,92,4289_17224,UCD Belfield,103622764,0,4289_7778022_100640,4289_149 -4289_75978,93,4289_17225,UCD Belfield,103732764,0,4289_7778022_100640,4289_149 -4289_75978,94,4289_17226,UCD Belfield,103842764,0,4289_7778022_100640,4289_149 -4289_75978,95,4289_17227,UCD Belfield,103952764,0,4289_7778022_100640,4289_149 -4289_75962,96,4289_1723,Dalkey,104065294,0,4289_7778022_104024,4289_21 -4289_75978,96,4289_17233,UCD Belfield,104065470,0,4289_7778022_100630,4289_149 -4289_75978,92,4289_17235,UCD Belfield,103622776,0,4289_7778022_100662,4289_149 -4289_75978,93,4289_17236,UCD Belfield,103732776,0,4289_7778022_100662,4289_149 -4289_75978,94,4289_17237,UCD Belfield,103842776,0,4289_7778022_100662,4289_149 -4289_75978,95,4289_17238,UCD Belfield,103952776,0,4289_7778022_100662,4289_149 -4289_75978,92,4289_17249,UCD Belfield,103622798,0,4289_7778022_100710,4289_149 -4289_75978,93,4289_17250,UCD Belfield,103732798,0,4289_7778022_100710,4289_149 -4289_75978,94,4289_17251,UCD Belfield,103842798,0,4289_7778022_100710,4289_149 -4289_75978,95,4289_17252,UCD Belfield,103952798,0,4289_7778022_100710,4289_149 -4289_75978,96,4289_17258,UCD Belfield,104065490,0,4289_7778022_100620,4289_150 -4289_75978,92,4289_17260,UCD Belfield,103622812,0,4289_7778022_100610,4289_149 -4289_75978,93,4289_17261,UCD Belfield,103732812,0,4289_7778022_100610,4289_149 -4289_75978,94,4289_17262,UCD Belfield,103842812,0,4289_7778022_100610,4289_149 -4289_75978,95,4289_17263,UCD Belfield,103952812,0,4289_7778022_100610,4289_149 -4289_75978,96,4289_17269,UCD Belfield,104065512,0,4289_7778022_100660,4289_149 -4289_75978,92,4289_17275,UCD Belfield,103622822,0,4289_7778022_100700,4289_149 -4289_75978,93,4289_17276,UCD Belfield,103732822,0,4289_7778022_100700,4289_149 -4289_75978,94,4289_17277,UCD Belfield,103842822,0,4289_7778022_100700,4289_149 -4289_75978,95,4289_17278,UCD Belfield,103952822,0,4289_7778022_100700,4289_149 -4289_75978,92,4289_17285,UCD Belfield,103622836,0,4289_7778022_100630,4289_149 -4289_75978,93,4289_17286,UCD Belfield,103732836,0,4289_7778022_100630,4289_149 -4289_75978,94,4289_17287,UCD Belfield,103842836,0,4289_7778022_100630,4289_149 -4289_75978,95,4289_17288,UCD Belfield,103952836,0,4289_7778022_100630,4289_149 -4289_75962,92,4289_1729,Dalkey,103622680,0,4289_7778022_100173,4289_21 -4289_75978,96,4289_17294,UCD Belfield,104065528,0,4289_7778022_100560,4289_150 -4289_75960,92,4289_173,Sutton Station,103621782,0,4289_7778022_103106,4289_1 -4289_75962,93,4289_1730,Dalkey,103732680,0,4289_7778022_100173,4289_21 -4289_75978,92,4289_17300,UCD Belfield,103622860,0,4289_7778022_100800,4289_149 -4289_75978,93,4289_17301,UCD Belfield,103732860,0,4289_7778022_100800,4289_149 -4289_75978,94,4289_17302,UCD Belfield,103842860,0,4289_7778022_100800,4289_149 -4289_75978,95,4289_17303,UCD Belfield,103952860,0,4289_7778022_100800,4289_149 -4289_75978,96,4289_17309,UCD Belfield,104065560,0,4289_7778022_100550,4289_149 -4289_75962,94,4289_1731,Dalkey,103842680,0,4289_7778022_100173,4289_21 -4289_75978,92,4289_17311,UCD Belfield,103622878,0,4289_7778022_100740,4289_149 -4289_75978,93,4289_17312,UCD Belfield,103732878,0,4289_7778022_100740,4289_149 -4289_75978,94,4289_17313,UCD Belfield,103842878,0,4289_7778022_100740,4289_149 -4289_75978,95,4289_17314,UCD Belfield,103952878,0,4289_7778022_100740,4289_149 -4289_75962,95,4289_1732,Dalkey,103952680,0,4289_7778022_100173,4289_21 -4289_75978,92,4289_17325,UCD Belfield,103622894,0,4289_7778022_100760,4289_149 -4289_75978,93,4289_17326,UCD Belfield,103732894,0,4289_7778022_100760,4289_149 -4289_75978,94,4289_17327,UCD Belfield,103842894,0,4289_7778022_100760,4289_149 -4289_75978,95,4289_17328,UCD Belfield,103952894,0,4289_7778022_100760,4289_149 -4289_75978,96,4289_17334,UCD Belfield,104065572,0,4289_7778022_100500,4289_150 -4289_75978,92,4289_17336,UCD Belfield,103622906,0,4289_7778022_100770,4289_149 -4289_75978,93,4289_17337,UCD Belfield,103732906,0,4289_7778022_100770,4289_149 -4289_75978,94,4289_17338,UCD Belfield,103842906,0,4289_7778022_100770,4289_149 -4289_75978,95,4289_17339,UCD Belfield,103952906,0,4289_7778022_100770,4289_149 -4289_75978,96,4289_17345,UCD Belfield,104065598,0,4289_7778022_100520,4289_149 -4289_75978,92,4289_17351,UCD Belfield,103622920,0,4289_7778022_100670,4289_149 -4289_75978,93,4289_17352,UCD Belfield,103732920,0,4289_7778022_100670,4289_149 -4289_75978,94,4289_17353,UCD Belfield,103842920,0,4289_7778022_100670,4289_149 -4289_75978,95,4289_17354,UCD Belfield,103952920,0,4289_7778022_100670,4289_149 -4289_75978,92,4289_17361,UCD Belfield,103622940,0,4289_7778022_100690,4289_149 -4289_75978,93,4289_17362,UCD Belfield,103732940,0,4289_7778022_100690,4289_149 -4289_75978,94,4289_17363,UCD Belfield,103842940,0,4289_7778022_100690,4289_149 -4289_75978,95,4289_17364,UCD Belfield,103952940,0,4289_7778022_100690,4289_149 -4289_75978,96,4289_17370,UCD Belfield,104065614,0,4289_7778022_100572,4289_150 -4289_75978,92,4289_17376,UCD Belfield,103622960,0,4289_7778022_100782,4289_149 -4289_75978,93,4289_17377,UCD Belfield,103732960,0,4289_7778022_100782,4289_149 -4289_75978,94,4289_17378,UCD Belfield,103842960,0,4289_7778022_100782,4289_149 -4289_75978,95,4289_17379,UCD Belfield,103952960,0,4289_7778022_100782,4289_149 -4289_75978,96,4289_17385,UCD Belfield,104065646,0,4289_7778022_100630,4289_149 -4289_75978,92,4289_17387,UCD Belfield,103622974,0,4289_7778022_100640,4289_149 -4289_75978,93,4289_17388,UCD Belfield,103732974,0,4289_7778022_100640,4289_149 -4289_75978,94,4289_17389,UCD Belfield,103842974,0,4289_7778022_100640,4289_149 -4289_75978,95,4289_17390,UCD Belfield,103952974,0,4289_7778022_100640,4289_149 -4289_75960,93,4289_174,Sutton Station,103731782,0,4289_7778022_103106,4289_1 -4289_75978,92,4289_17401,UCD Belfield,103622990,0,4289_7778022_100662,4289_149 -4289_75978,93,4289_17402,UCD Belfield,103732990,0,4289_7778022_100662,4289_149 -4289_75978,94,4289_17403,UCD Belfield,103842990,0,4289_7778022_100662,4289_149 -4289_75978,95,4289_17404,UCD Belfield,103952990,0,4289_7778022_100662,4289_149 -4289_75978,96,4289_17410,UCD Belfield,104065660,0,4289_7778022_100620,4289_150 -4289_75978,92,4289_17412,UCD Belfield,103623006,0,4289_7778022_100710,4289_149 -4289_75978,93,4289_17413,UCD Belfield,103733006,0,4289_7778022_100710,4289_149 -4289_75978,94,4289_17414,UCD Belfield,103843006,0,4289_7778022_100710,4289_149 -4289_75978,95,4289_17415,UCD Belfield,103953006,0,4289_7778022_100710,4289_149 -4289_75962,96,4289_1742,Dalkey,104065414,0,4289_7778022_104043,4289_21 -4289_75978,96,4289_17421,UCD Belfield,104065682,0,4289_7778022_100660,4289_149 -4289_75978,92,4289_17427,UCD Belfield,103623018,0,4289_7778022_100630,4289_149 -4289_75978,93,4289_17428,UCD Belfield,103733018,0,4289_7778022_100630,4289_149 -4289_75978,94,4289_17429,UCD Belfield,103843018,0,4289_7778022_100630,4289_149 -4289_75978,95,4289_17430,UCD Belfield,103953018,0,4289_7778022_100630,4289_149 -4289_75978,92,4289_17437,UCD Belfield,103623034,0,4289_7778022_100800,4289_149 -4289_75978,93,4289_17438,UCD Belfield,103733034,0,4289_7778022_100800,4289_149 -4289_75978,94,4289_17439,UCD Belfield,103843034,0,4289_7778022_100800,4289_149 -4289_75978,95,4289_17440,UCD Belfield,103953034,0,4289_7778022_100800,4289_149 -4289_75978,96,4289_17446,UCD Belfield,104065702,0,4289_7778022_100560,4289_150 -4289_75978,2,4289_17451,UCD Belfield,103613054,0,4289_7778022_100770,4289_149 -4289_75978,92,4289_17452,UCD Belfield,103623054,0,4289_7778022_100770,4289_149 -4289_75978,93,4289_17453,UCD Belfield,103733054,0,4289_7778022_100770,4289_149 -4289_75978,94,4289_17454,UCD Belfield,103843054,0,4289_7778022_100770,4289_149 -4289_75978,95,4289_17455,UCD Belfield,103953054,0,4289_7778022_100770,4289_149 -4289_75978,96,4289_17461,UCD Belfield,104065722,0,4289_7778022_100500,4289_150 -4289_75978,92,4289_17467,Liffey Valley SC,103621015,1,4289_7778022_100610,4289_152 -4289_75978,93,4289_17468,Liffey Valley SC,103731015,1,4289_7778022_100610,4289_152 -4289_75978,94,4289_17469,Liffey Valley SC,103841015,1,4289_7778022_100610,4289_152 -4289_75978,95,4289_17470,Liffey Valley SC,103951015,1,4289_7778022_100610,4289_152 -4289_75978,92,4289_17477,Liffey Valley SC,103621031,1,4289_7778022_100630,4289_152 -4289_75978,93,4289_17478,Liffey Valley SC,103731031,1,4289_7778022_100630,4289_152 -4289_75978,94,4289_17479,Liffey Valley SC,103841031,1,4289_7778022_100630,4289_152 -4289_75962,92,4289_1748,Dalkey,103622814,0,4289_7778022_100192,4289_21 -4289_75978,95,4289_17480,Liffey Valley SC,103951031,1,4289_7778022_100630,4289_152 -4289_75978,96,4289_17486,Liffey Valley SC,104064027,1,4289_7778022_100490,4289_152 -4289_75978,92,4289_17488,Liffey Valley SC,103621057,1,4289_7778022_100650,4289_152 -4289_75978,93,4289_17489,Liffey Valley SC,103731057,1,4289_7778022_100650,4289_152 -4289_75962,93,4289_1749,Dalkey,103732814,0,4289_7778022_100192,4289_21 -4289_75978,94,4289_17490,Liffey Valley SC,103841057,1,4289_7778022_100650,4289_152 -4289_75978,95,4289_17491,Liffey Valley SC,103951057,1,4289_7778022_100650,4289_152 -4289_75978,96,4289_17497,Liffey Valley SC,104064043,1,4289_7778022_100500,4289_152 -4289_75978,92,4289_17499,Liffey Valley SC,103621071,1,4289_7778022_100621,4289_152 -4289_75960,94,4289_175,Sutton Station,103841782,0,4289_7778022_103106,4289_1 -4289_75962,94,4289_1750,Dalkey,103842814,0,4289_7778022_100192,4289_21 -4289_75978,93,4289_17500,Liffey Valley SC,103731071,1,4289_7778022_100621,4289_152 -4289_75978,94,4289_17501,Liffey Valley SC,103841071,1,4289_7778022_100621,4289_152 -4289_75978,95,4289_17502,Liffey Valley SC,103951071,1,4289_7778022_100621,4289_152 -4289_75978,92,4289_17509,Liffey Valley SC,103621087,1,4289_7778022_100670,4289_152 -4289_75962,95,4289_1751,Dalkey,103952814,0,4289_7778022_100192,4289_21 -4289_75978,93,4289_17510,Liffey Valley SC,103731087,1,4289_7778022_100670,4289_152 -4289_75978,94,4289_17511,Liffey Valley SC,103841087,1,4289_7778022_100670,4289_152 -4289_75978,95,4289_17512,Liffey Valley SC,103951087,1,4289_7778022_100670,4289_152 -4289_75978,96,4289_17518,Liffey Valley SC,104064061,1,4289_7778022_100520,4289_153 -4289_75978,92,4289_17520,Liffey Valley SC,103621099,1,4289_7778022_100680,4289_152 -4289_75978,93,4289_17521,Liffey Valley SC,103731099,1,4289_7778022_100680,4289_152 -4289_75978,94,4289_17522,Liffey Valley SC,103841099,1,4289_7778022_100680,4289_152 -4289_75978,95,4289_17523,Liffey Valley SC,103951099,1,4289_7778022_100680,4289_152 -4289_75978,92,4289_17530,Liffey Valley SC,103621113,1,4289_7778022_100690,4289_152 -4289_75978,93,4289_17531,Liffey Valley SC,103731113,1,4289_7778022_100690,4289_152 -4289_75978,94,4289_17532,Liffey Valley SC,103841113,1,4289_7778022_100690,4289_152 -4289_75978,95,4289_17533,Liffey Valley SC,103951113,1,4289_7778022_100690,4289_152 -4289_75978,96,4289_17539,Liffey Valley SC,104064075,1,4289_7778022_100510,4289_152 -4289_75978,92,4289_17541,Liffey Valley SC,103621123,1,4289_7778022_100640,4289_152 -4289_75978,93,4289_17542,Liffey Valley SC,103731123,1,4289_7778022_100640,4289_152 -4289_75978,94,4289_17543,Liffey Valley SC,103841123,1,4289_7778022_100640,4289_152 -4289_75978,95,4289_17544,Liffey Valley SC,103951123,1,4289_7778022_100640,4289_152 -4289_75978,92,4289_17551,Liffey Valley SC,103621153,1,4289_7778022_100710,4289_152 -4289_75978,93,4289_17552,Liffey Valley SC,103731153,1,4289_7778022_100710,4289_152 -4289_75978,94,4289_17553,Liffey Valley SC,103841153,1,4289_7778022_100710,4289_152 -4289_75978,95,4289_17554,Liffey Valley SC,103951153,1,4289_7778022_100710,4289_152 -4289_75978,96,4289_17560,Liffey Valley SC,104064097,1,4289_7778022_100530,4289_153 -4289_75978,92,4289_17562,Liffey Valley SC,103621167,1,4289_7778022_100730,4289_152 -4289_75978,93,4289_17563,Liffey Valley SC,103731167,1,4289_7778022_100730,4289_152 -4289_75978,94,4289_17564,Liffey Valley SC,103841167,1,4289_7778022_100730,4289_152 -4289_75978,95,4289_17565,Liffey Valley SC,103951167,1,4289_7778022_100730,4289_152 -4289_75962,96,4289_1757,Dalkey,104065506,0,4289_7778022_104033,4289_21 -4289_75978,92,4289_17572,Liffey Valley SC,103621177,1,4289_7778022_100750,4289_152 -4289_75978,93,4289_17573,Liffey Valley SC,103731177,1,4289_7778022_100750,4289_152 -4289_75978,94,4289_17574,Liffey Valley SC,103841177,1,4289_7778022_100750,4289_152 -4289_75978,95,4289_17575,Liffey Valley SC,103951177,1,4289_7778022_100750,4289_152 -4289_75978,96,4289_17581,Liffey Valley SC,104064119,1,4289_7778022_100540,4289_152 -4289_75978,92,4289_17583,Liffey Valley SC,103621193,1,4289_7778022_100661,4289_152 -4289_75978,93,4289_17584,Liffey Valley SC,103731193,1,4289_7778022_100661,4289_152 -4289_75978,94,4289_17585,Liffey Valley SC,103841193,1,4289_7778022_100661,4289_152 -4289_75978,95,4289_17586,Liffey Valley SC,103951193,1,4289_7778022_100661,4289_152 -4289_75978,92,4289_17597,Liffey Valley SC,103621213,1,4289_7778022_100610,4289_152 -4289_75978,93,4289_17598,Liffey Valley SC,103731213,1,4289_7778022_100610,4289_152 -4289_75978,94,4289_17599,Liffey Valley SC,103841213,1,4289_7778022_100610,4289_152 -4289_75960,95,4289_176,Sutton Station,103951782,0,4289_7778022_103106,4289_1 -4289_75978,95,4289_17600,Liffey Valley SC,103951213,1,4289_7778022_100610,4289_152 -4289_75978,96,4289_17606,Liffey Valley SC,104064139,1,4289_7778022_100490,4289_153 -4289_75978,92,4289_17608,Liffey Valley SC,103621235,1,4289_7778022_100700,4289_152 -4289_75978,93,4289_17609,Liffey Valley SC,103731235,1,4289_7778022_100700,4289_152 -4289_75978,94,4289_17610,Liffey Valley SC,103841235,1,4289_7778022_100700,4289_152 -4289_75978,95,4289_17611,Liffey Valley SC,103951235,1,4289_7778022_100700,4289_152 -4289_75978,96,4289_17617,Liffey Valley SC,104064161,1,4289_7778022_100550,4289_152 -4289_75978,92,4289_17623,Liffey Valley SC,103621253,1,4289_7778022_100781,4289_152 -4289_75978,93,4289_17624,Liffey Valley SC,103731253,1,4289_7778022_100781,4289_152 -4289_75978,94,4289_17625,Liffey Valley SC,103841253,1,4289_7778022_100781,4289_152 -4289_75978,95,4289_17626,Liffey Valley SC,103951253,1,4289_7778022_100781,4289_152 -4289_75962,92,4289_1763,Dalkey,103622912,0,4289_7778022_104073,4289_21 -4289_75978,92,4289_17633,Liffey Valley SC,103621291,1,4289_7778022_100630,4289_152 -4289_75978,93,4289_17634,Liffey Valley SC,103731291,1,4289_7778022_100630,4289_152 -4289_75978,94,4289_17635,Liffey Valley SC,103841291,1,4289_7778022_100630,4289_152 -4289_75978,95,4289_17636,Liffey Valley SC,103951291,1,4289_7778022_100630,4289_152 -4289_75962,93,4289_1764,Dalkey,103732912,0,4289_7778022_104073,4289_21 -4289_75978,96,4289_17642,Liffey Valley SC,104064181,1,4289_7778022_100500,4289_153 -4289_75978,92,4289_17648,Liffey Valley SC,103621311,1,4289_7778022_100720,4289_152 -4289_75978,93,4289_17649,Liffey Valley SC,103731311,1,4289_7778022_100720,4289_152 -4289_75962,94,4289_1765,Dalkey,103842912,0,4289_7778022_104073,4289_21 -4289_75978,94,4289_17650,Liffey Valley SC,103841311,1,4289_7778022_100720,4289_152 -4289_75978,95,4289_17651,Liffey Valley SC,103951311,1,4289_7778022_100720,4289_152 -4289_75978,96,4289_17657,Liffey Valley SC,104064209,1,4289_7778022_100520,4289_152 -4289_75978,92,4289_17659,Liffey Valley SC,103621339,1,4289_7778022_100740,4289_152 -4289_75962,95,4289_1766,Dalkey,103952912,0,4289_7778022_104073,4289_21 -4289_75978,93,4289_17660,Liffey Valley SC,103731339,1,4289_7778022_100740,4289_152 -4289_75978,94,4289_17661,Liffey Valley SC,103841339,1,4289_7778022_100740,4289_152 -4289_75978,95,4289_17662,Liffey Valley SC,103951339,1,4289_7778022_100740,4289_152 -4289_75978,92,4289_17673,Liffey Valley SC,103621357,1,4289_7778022_100760,4289_152 -4289_75978,93,4289_17674,Liffey Valley SC,103731357,1,4289_7778022_100760,4289_152 -4289_75978,94,4289_17675,Liffey Valley SC,103841357,1,4289_7778022_100760,4289_152 -4289_75978,95,4289_17676,Liffey Valley SC,103951357,1,4289_7778022_100760,4289_152 -4289_75978,96,4289_17682,Liffey Valley SC,104064227,1,4289_7778022_100510,4289_153 -4289_75978,92,4289_17684,Liffey Valley SC,103621381,1,4289_7778022_100770,4289_152 -4289_75978,93,4289_17685,Liffey Valley SC,103731381,1,4289_7778022_100770,4289_152 -4289_75978,94,4289_17686,Liffey Valley SC,103841381,1,4289_7778022_100770,4289_152 -4289_75978,95,4289_17687,Liffey Valley SC,103951381,1,4289_7778022_100770,4289_152 -4289_75978,96,4289_17693,Liffey Valley SC,104064253,1,4289_7778022_100530,4289_152 -4289_75978,92,4289_17699,Liffey Valley SC,103621393,1,4289_7778022_100650,4289_152 -4289_75978,93,4289_17700,Liffey Valley SC,103731393,1,4289_7778022_100650,4289_152 -4289_75978,94,4289_17701,Liffey Valley SC,103841393,1,4289_7778022_100650,4289_152 -4289_75978,95,4289_17702,Liffey Valley SC,103951393,1,4289_7778022_100650,4289_152 -4289_75978,92,4289_17709,Liffey Valley SC,103621415,1,4289_7778022_100791,4289_152 -4289_75978,93,4289_17710,Liffey Valley SC,103731415,1,4289_7778022_100791,4289_152 -4289_75978,94,4289_17711,Liffey Valley SC,103841415,1,4289_7778022_100791,4289_152 -4289_75978,95,4289_17712,Liffey Valley SC,103951415,1,4289_7778022_100791,4289_152 -4289_75978,96,4289_17718,Liffey Valley SC,104064271,1,4289_7778022_100540,4289_153 -4289_75962,96,4289_1772,Dalkey,104065592,0,4289_7778022_104193,4289_21 -4289_75978,92,4289_17724,Liffey Valley SC,103621433,1,4289_7778022_100621,4289_152 -4289_75978,93,4289_17725,Liffey Valley SC,103731433,1,4289_7778022_100621,4289_152 -4289_75978,94,4289_17726,Liffey Valley SC,103841433,1,4289_7778022_100621,4289_152 -4289_75978,95,4289_17727,Liffey Valley SC,103951433,1,4289_7778022_100621,4289_152 -4289_75978,96,4289_17733,Liffey Valley SC,104064289,1,4289_7778022_100571,4289_153 -4289_75978,92,4289_17735,Liffey Valley SC,103621447,1,4289_7778022_100670,4289_152 -4289_75978,93,4289_17736,Liffey Valley SC,103731447,1,4289_7778022_100670,4289_152 -4289_75978,94,4289_17737,Liffey Valley SC,103841447,1,4289_7778022_100670,4289_152 -4289_75978,95,4289_17738,Liffey Valley SC,103951447,1,4289_7778022_100670,4289_152 -4289_75962,92,4289_1774,Dalkey,103622996,0,4289_7778022_100192,4289_21 -4289_75978,96,4289_17744,Liffey Valley SC,104064305,1,4289_7778022_100560,4289_153 -4289_75962,93,4289_1775,Dalkey,103732996,0,4289_7778022_100192,4289_21 -4289_75978,92,4289_17750,Liffey Valley SC,103621471,1,4289_7778022_100680,4289_152 -4289_75978,93,4289_17751,Liffey Valley SC,103731471,1,4289_7778022_100680,4289_152 -4289_75978,94,4289_17752,Liffey Valley SC,103841471,1,4289_7778022_100680,4289_152 -4289_75978,95,4289_17753,Liffey Valley SC,103951471,1,4289_7778022_100680,4289_152 -4289_75978,96,4289_17759,Liffey Valley SC,104064325,1,4289_7778022_100490,4289_153 -4289_75962,94,4289_1776,Dalkey,103842996,0,4289_7778022_100192,4289_21 -4289_75978,92,4289_17761,Liffey Valley SC,103621489,1,4289_7778022_100690,4289_152 -4289_75978,93,4289_17762,Liffey Valley SC,103731489,1,4289_7778022_100690,4289_152 -4289_75978,94,4289_17763,Liffey Valley SC,103841489,1,4289_7778022_100690,4289_152 -4289_75978,95,4289_17764,Liffey Valley SC,103951489,1,4289_7778022_100690,4289_152 -4289_75962,95,4289_1777,Dalkey,103952996,0,4289_7778022_100192,4289_21 -4289_75978,96,4289_17770,Liffey Valley SC,104064345,1,4289_7778022_100590,4289_153 -4289_75978,92,4289_17776,Liffey Valley SC,103621505,1,4289_7778022_100640,4289_152 -4289_75978,93,4289_17777,Liffey Valley SC,103731505,1,4289_7778022_100640,4289_152 -4289_75978,94,4289_17778,Liffey Valley SC,103841505,1,4289_7778022_100640,4289_152 -4289_75978,95,4289_17779,Liffey Valley SC,103951505,1,4289_7778022_100640,4289_152 -4289_75978,96,4289_17785,Liffey Valley SC,104064359,1,4289_7778022_100550,4289_153 -4289_75978,92,4289_17787,Liffey Valley SC,103621523,1,4289_7778022_100710,4289_152 -4289_75978,93,4289_17788,Liffey Valley SC,103731523,1,4289_7778022_100710,4289_152 -4289_75978,94,4289_17789,Liffey Valley SC,103841523,1,4289_7778022_100710,4289_152 -4289_75978,95,4289_17790,Liffey Valley SC,103951523,1,4289_7778022_100710,4289_152 -4289_75978,96,4289_17796,Liffey Valley SC,104064373,1,4289_7778022_100610,4289_153 -4289_75978,92,4289_17802,Liffey Valley SC,103621547,1,4289_7778022_100730,4289_152 -4289_75978,93,4289_17803,Liffey Valley SC,103731547,1,4289_7778022_100730,4289_152 -4289_75978,94,4289_17804,Liffey Valley SC,103841547,1,4289_7778022_100730,4289_152 -4289_75978,95,4289_17805,Liffey Valley SC,103951547,1,4289_7778022_100730,4289_152 -4289_75978,96,4289_17811,Liffey Valley SC,104064397,1,4289_7778022_100500,4289_153 -4289_75978,92,4289_17813,Liffey Valley SC,103621563,1,4289_7778022_100750,4289_152 -4289_75978,93,4289_17814,Liffey Valley SC,103731563,1,4289_7778022_100750,4289_152 -4289_75978,94,4289_17815,Liffey Valley SC,103841563,1,4289_7778022_100750,4289_152 -4289_75978,95,4289_17816,Liffey Valley SC,103951563,1,4289_7778022_100750,4289_152 -4289_75978,96,4289_17822,Liffey Valley SC,104064411,1,4289_7778022_100580,4289_153 -4289_75978,92,4289_17828,Liffey Valley SC,103621585,1,4289_7778022_100610,4289_152 -4289_75978,93,4289_17829,Liffey Valley SC,103731585,1,4289_7778022_100610,4289_152 -4289_75962,96,4289_1783,Dalkey,104065666,0,4289_7778022_104033,4289_21 -4289_75978,94,4289_17830,Liffey Valley SC,103841585,1,4289_7778022_100610,4289_152 -4289_75978,95,4289_17831,Liffey Valley SC,103951585,1,4289_7778022_100610,4289_152 -4289_75978,96,4289_17837,Liffey Valley SC,104064435,1,4289_7778022_100520,4289_153 -4289_75978,92,4289_17843,Liffey Valley SC,103621605,1,4289_7778022_100700,4289_152 -4289_75978,93,4289_17844,Liffey Valley SC,103731605,1,4289_7778022_100700,4289_152 -4289_75978,94,4289_17845,Liffey Valley SC,103841605,1,4289_7778022_100700,4289_152 -4289_75978,95,4289_17846,Liffey Valley SC,103951605,1,4289_7778022_100700,4289_152 -4289_75978,96,4289_17852,Liffey Valley SC,104064451,1,4289_7778022_100510,4289_153 -4289_75978,92,4289_17854,Liffey Valley SC,103621617,1,4289_7778022_100630,4289_152 -4289_75978,93,4289_17855,Liffey Valley SC,103731617,1,4289_7778022_100630,4289_152 -4289_75978,94,4289_17856,Liffey Valley SC,103841617,1,4289_7778022_100630,4289_152 -4289_75978,95,4289_17857,Liffey Valley SC,103951617,1,4289_7778022_100630,4289_152 -4289_75978,96,4289_17863,Liffey Valley SC,104064465,1,4289_7778022_100600,4289_153 -4289_75978,92,4289_17869,Liffey Valley SC,103621639,1,4289_7778022_100720,4289_152 -4289_75978,93,4289_17870,Liffey Valley SC,103731639,1,4289_7778022_100720,4289_152 -4289_75978,94,4289_17871,Liffey Valley SC,103841639,1,4289_7778022_100720,4289_152 -4289_75978,95,4289_17872,Liffey Valley SC,103951639,1,4289_7778022_100720,4289_152 -4289_75978,96,4289_17878,Liffey Valley SC,104064485,1,4289_7778022_100630,4289_153 -4289_75962,2,4289_1788,Dalkey,103613070,0,4289_7778022_104073,4289_21 -4289_75978,92,4289_17884,Liffey Valley SC,103621659,1,4289_7778022_100740,4289_152 -4289_75978,93,4289_17885,Liffey Valley SC,103731659,1,4289_7778022_100740,4289_152 -4289_75978,94,4289_17886,Liffey Valley SC,103841659,1,4289_7778022_100740,4289_152 -4289_75978,95,4289_17887,Liffey Valley SC,103951659,1,4289_7778022_100740,4289_152 -4289_75962,92,4289_1789,Dalkey,103623070,0,4289_7778022_104073,4289_21 -4289_75978,96,4289_17893,Liffey Valley SC,104064509,1,4289_7778022_100530,4289_153 -4289_75978,92,4289_17895,Liffey Valley SC,103621673,1,4289_7778022_100760,4289_152 -4289_75978,93,4289_17896,Liffey Valley SC,103731673,1,4289_7778022_100760,4289_152 -4289_75978,94,4289_17897,Liffey Valley SC,103841673,1,4289_7778022_100760,4289_152 -4289_75978,95,4289_17898,Liffey Valley SC,103951673,1,4289_7778022_100760,4289_152 -4289_75962,93,4289_1790,Dalkey,103733070,0,4289_7778022_104073,4289_21 -4289_75978,96,4289_17904,Liffey Valley SC,104064521,1,4289_7778022_100620,4289_153 -4289_75962,94,4289_1791,Dalkey,103843070,0,4289_7778022_104073,4289_21 -4289_75978,92,4289_17910,Liffey Valley SC,103621697,1,4289_7778022_100770,4289_152 -4289_75978,93,4289_17911,Liffey Valley SC,103731697,1,4289_7778022_100770,4289_152 -4289_75978,94,4289_17912,Liffey Valley SC,103841697,1,4289_7778022_100770,4289_152 -4289_75978,95,4289_17913,Liffey Valley SC,103951697,1,4289_7778022_100770,4289_152 -4289_75978,96,4289_17919,Liffey Valley SC,104064541,1,4289_7778022_100540,4289_153 -4289_75962,95,4289_1792,Dalkey,103953070,0,4289_7778022_104073,4289_21 -4289_75978,92,4289_17925,Liffey Valley SC,103621713,1,4289_7778022_100650,4289_152 -4289_75978,93,4289_17926,Liffey Valley SC,103731713,1,4289_7778022_100650,4289_152 -4289_75978,94,4289_17927,Liffey Valley SC,103841713,1,4289_7778022_100650,4289_152 -4289_75978,95,4289_17928,Liffey Valley SC,103951713,1,4289_7778022_100650,4289_152 -4289_75978,96,4289_17934,Liffey Valley SC,104064557,1,4289_7778022_100571,4289_153 -4289_75978,92,4289_17936,Liffey Valley SC,103621731,1,4289_7778022_100791,4289_152 -4289_75978,93,4289_17937,Liffey Valley SC,103731731,1,4289_7778022_100791,4289_152 -4289_75978,94,4289_17938,Liffey Valley SC,103841731,1,4289_7778022_100791,4289_152 -4289_75978,95,4289_17939,Liffey Valley SC,103951731,1,4289_7778022_100791,4289_152 -4289_75978,96,4289_17945,Liffey Valley SC,104064573,1,4289_7778022_100560,4289_152 -4289_75978,92,4289_17951,Liffey Valley SC,103621749,1,4289_7778022_100670,4289_152 -4289_75978,93,4289_17952,Liffey Valley SC,103731749,1,4289_7778022_100670,4289_152 -4289_75978,94,4289_17953,Liffey Valley SC,103841749,1,4289_7778022_100670,4289_152 -4289_75978,95,4289_17954,Liffey Valley SC,103951749,1,4289_7778022_100670,4289_152 -4289_75978,96,4289_17960,Liffey Valley SC,104064593,1,4289_7778022_100490,4289_152 -4289_75978,92,4289_17966,Liffey Valley SC,103621773,1,4289_7778022_100680,4289_152 -4289_75978,93,4289_17967,Liffey Valley SC,103731773,1,4289_7778022_100680,4289_152 -4289_75978,94,4289_17968,Liffey Valley SC,103841773,1,4289_7778022_100680,4289_152 -4289_75978,95,4289_17969,Liffey Valley SC,103951773,1,4289_7778022_100680,4289_152 -4289_75978,96,4289_17975,Liffey Valley SC,104064615,1,4289_7778022_100590,4289_152 -4289_75978,92,4289_17977,Liffey Valley SC,103621789,1,4289_7778022_100690,4289_152 -4289_75978,93,4289_17978,Liffey Valley SC,103731789,1,4289_7778022_100690,4289_152 -4289_75978,94,4289_17979,Liffey Valley SC,103841789,1,4289_7778022_100690,4289_152 -4289_75962,96,4289_1798,Dalkey,104065738,0,4289_7778022_104193,4289_21 -4289_75978,95,4289_17980,Liffey Valley SC,103951789,1,4289_7778022_100690,4289_152 -4289_75978,96,4289_17986,Liffey Valley SC,104064627,1,4289_7778022_100550,4289_152 -4289_75978,92,4289_17992,Liffey Valley SC,103621807,1,4289_7778022_100640,4289_152 -4289_75978,93,4289_17993,Liffey Valley SC,103731807,1,4289_7778022_100640,4289_152 -4289_75978,94,4289_17994,Liffey Valley SC,103841807,1,4289_7778022_100640,4289_152 -4289_75978,95,4289_17995,Liffey Valley SC,103951807,1,4289_7778022_100640,4289_152 -4289_75978,96,4289_18001,Liffey Valley SC,104064649,1,4289_7778022_100610,4289_152 -4289_75978,92,4289_18007,Liffey Valley SC,103621833,1,4289_7778022_100662,4289_152 -4289_75978,93,4289_18008,Liffey Valley SC,103731833,1,4289_7778022_100662,4289_152 -4289_75978,94,4289_18009,Liffey Valley SC,103841833,1,4289_7778022_100662,4289_152 -4289_75978,95,4289_18010,Liffey Valley SC,103951833,1,4289_7778022_100662,4289_152 -4289_75978,96,4289_18016,Liffey Valley SC,104064669,1,4289_7778022_100650,4289_152 -4289_75978,92,4289_18018,Liffey Valley SC,103621843,1,4289_7778022_100710,4289_152 -4289_75978,93,4289_18019,Liffey Valley SC,103731843,1,4289_7778022_100710,4289_152 -4289_75978,94,4289_18020,Liffey Valley SC,103841843,1,4289_7778022_100710,4289_152 -4289_75978,95,4289_18021,Liffey Valley SC,103951843,1,4289_7778022_100710,4289_152 -4289_75978,96,4289_18027,Liffey Valley SC,104064679,1,4289_7778022_100500,4289_153 -4289_75978,92,4289_18033,Liffey Valley SC,103621865,1,4289_7778022_100730,4289_152 -4289_75978,93,4289_18034,Liffey Valley SC,103731865,1,4289_7778022_100730,4289_152 -4289_75978,94,4289_18035,Liffey Valley SC,103841865,1,4289_7778022_100730,4289_152 -4289_75978,95,4289_18036,Liffey Valley SC,103951865,1,4289_7778022_100730,4289_152 -4289_75962,92,4289_1804,Brides Glen,103621059,1,4289_7778022_104030,4289_26 -4289_75978,96,4289_18042,Liffey Valley SC,104064697,1,4289_7778022_100580,4289_153 -4289_75978,92,4289_18048,Liffey Valley SC,103621891,1,4289_7778022_100750,4289_152 -4289_75978,93,4289_18049,Liffey Valley SC,103731891,1,4289_7778022_100750,4289_152 -4289_75962,93,4289_1805,Brides Glen,103731059,1,4289_7778022_104030,4289_26 -4289_75978,94,4289_18050,Liffey Valley SC,103841891,1,4289_7778022_100750,4289_152 -4289_75978,95,4289_18051,Liffey Valley SC,103951891,1,4289_7778022_100750,4289_152 -4289_75978,96,4289_18057,Liffey Valley SC,104064719,1,4289_7778022_100520,4289_153 -4289_75978,92,4289_18059,Liffey Valley SC,103621909,1,4289_7778022_100610,4289_152 -4289_75962,94,4289_1806,Brides Glen,103841059,1,4289_7778022_104030,4289_26 -4289_75978,93,4289_18060,Liffey Valley SC,103731909,1,4289_7778022_100610,4289_152 -4289_75978,94,4289_18061,Liffey Valley SC,103841909,1,4289_7778022_100610,4289_152 -4289_75978,95,4289_18062,Liffey Valley SC,103951909,1,4289_7778022_100610,4289_152 -4289_75978,96,4289_18068,Liffey Valley SC,104064735,1,4289_7778022_100640,4289_153 -4289_75962,95,4289_1807,Brides Glen,103951059,1,4289_7778022_104030,4289_26 -4289_75978,92,4289_18074,Liffey Valley SC,103621927,1,4289_7778022_100700,4289_152 -4289_75978,93,4289_18075,Liffey Valley SC,103731927,1,4289_7778022_100700,4289_152 -4289_75978,94,4289_18076,Liffey Valley SC,103841927,1,4289_7778022_100700,4289_152 -4289_75978,95,4289_18077,Liffey Valley SC,103951927,1,4289_7778022_100700,4289_152 -4289_75978,96,4289_18083,Liffey Valley SC,104064755,1,4289_7778022_100510,4289_153 -4289_75978,92,4289_18089,Liffey Valley SC,103621951,1,4289_7778022_100630,4289_152 -4289_75978,93,4289_18090,Liffey Valley SC,103731951,1,4289_7778022_100630,4289_152 -4289_75978,94,4289_18091,Liffey Valley SC,103841951,1,4289_7778022_100630,4289_152 -4289_75978,95,4289_18092,Liffey Valley SC,103951951,1,4289_7778022_100630,4289_152 -4289_75978,96,4289_18098,Liffey Valley SC,104064777,1,4289_7778022_100600,4289_153 -4289_75978,92,4289_18100,Liffey Valley SC,103621961,1,4289_7778022_100720,4289_152 -4289_75978,93,4289_18101,Liffey Valley SC,103731961,1,4289_7778022_100720,4289_152 -4289_75978,94,4289_18102,Liffey Valley SC,103841961,1,4289_7778022_100720,4289_152 -4289_75978,95,4289_18103,Liffey Valley SC,103951961,1,4289_7778022_100720,4289_152 -4289_75978,96,4289_18109,Liffey Valley SC,104064785,1,4289_7778022_100630,4289_153 -4289_75978,92,4289_18115,Liffey Valley SC,103621981,1,4289_7778022_100740,4289_152 -4289_75978,93,4289_18116,Liffey Valley SC,103731981,1,4289_7778022_100740,4289_152 -4289_75978,94,4289_18117,Liffey Valley SC,103841981,1,4289_7778022_100740,4289_152 -4289_75978,95,4289_18118,Liffey Valley SC,103951981,1,4289_7778022_100740,4289_152 -4289_75978,96,4289_18124,Liffey Valley SC,104064803,1,4289_7778022_100530,4289_153 -4289_75962,96,4289_1813,Brides Glen,104064037,1,4289_7778022_104021,4289_26 -4289_75978,92,4289_18130,Liffey Valley SC,103622003,1,4289_7778022_100760,4289_152 -4289_75978,93,4289_18131,Liffey Valley SC,103732003,1,4289_7778022_100760,4289_152 -4289_75978,94,4289_18132,Liffey Valley SC,103842003,1,4289_7778022_100760,4289_152 -4289_75978,95,4289_18133,Liffey Valley SC,103952003,1,4289_7778022_100760,4289_152 -4289_75978,96,4289_18139,Liffey Valley SC,104064827,1,4289_7778022_100620,4289_153 -4289_75978,92,4289_18141,Liffey Valley SC,103622019,1,4289_7778022_100770,4289_152 -4289_75978,93,4289_18142,Liffey Valley SC,103732019,1,4289_7778022_100770,4289_152 -4289_75978,94,4289_18143,Liffey Valley SC,103842019,1,4289_7778022_100770,4289_152 -4289_75978,95,4289_18144,Liffey Valley SC,103952019,1,4289_7778022_100770,4289_152 -4289_75962,92,4289_1815,Brides Glen,103621115,1,4289_7778022_104071,4289_26 -4289_75978,96,4289_18150,Liffey Valley SC,104064841,1,4289_7778022_100660,4289_153 -4289_75978,92,4289_18156,Liffey Valley SC,103622041,1,4289_7778022_100622,4289_152 -4289_75978,93,4289_18157,Liffey Valley SC,103732041,1,4289_7778022_100622,4289_152 -4289_75978,94,4289_18158,Liffey Valley SC,103842041,1,4289_7778022_100622,4289_152 -4289_75978,95,4289_18159,Liffey Valley SC,103952041,1,4289_7778022_100622,4289_152 -4289_75962,93,4289_1816,Brides Glen,103731115,1,4289_7778022_104071,4289_26 -4289_75978,96,4289_18165,Liffey Valley SC,104064857,1,4289_7778022_100540,4289_153 -4289_75962,94,4289_1817,Brides Glen,103841115,1,4289_7778022_104071,4289_26 -4289_75978,92,4289_18171,Liffey Valley SC,103622065,1,4289_7778022_100650,4289_152 -4289_75978,93,4289_18172,Liffey Valley SC,103732065,1,4289_7778022_100650,4289_152 -4289_75978,94,4289_18173,Liffey Valley SC,103842065,1,4289_7778022_100650,4289_152 -4289_75978,95,4289_18174,Liffey Valley SC,103952065,1,4289_7778022_100650,4289_152 -4289_75962,95,4289_1818,Brides Glen,103951115,1,4289_7778022_104071,4289_26 -4289_75978,96,4289_18180,Liffey Valley SC,104064881,1,4289_7778022_100571,4289_153 -4289_75978,92,4289_18182,Liffey Valley SC,103622077,1,4289_7778022_100670,4289_152 -4289_75978,93,4289_18183,Liffey Valley SC,103732077,1,4289_7778022_100670,4289_152 -4289_75978,94,4289_18184,Liffey Valley SC,103842077,1,4289_7778022_100670,4289_152 -4289_75978,95,4289_18185,Liffey Valley SC,103952077,1,4289_7778022_100670,4289_152 -4289_75978,96,4289_18191,Liffey Valley SC,104064893,1,4289_7778022_100560,4289_153 -4289_75978,92,4289_18197,Liffey Valley SC,103622101,1,4289_7778022_100680,4289_152 -4289_75978,93,4289_18198,Liffey Valley SC,103732101,1,4289_7778022_100680,4289_152 -4289_75978,94,4289_18199,Liffey Valley SC,103842101,1,4289_7778022_100680,4289_152 -4289_75960,96,4289_182,Sutton Station,104064596,0,4289_7778022_103106,4289_2 -4289_75978,95,4289_18200,Liffey Valley SC,103952101,1,4289_7778022_100680,4289_152 -4289_75978,96,4289_18206,Liffey Valley SC,104064913,1,4289_7778022_100490,4289_153 -4289_75978,92,4289_18212,Liffey Valley SC,103622125,1,4289_7778022_100690,4289_152 -4289_75978,93,4289_18213,Liffey Valley SC,103732125,1,4289_7778022_100690,4289_152 -4289_75978,94,4289_18214,Liffey Valley SC,103842125,1,4289_7778022_100690,4289_152 -4289_75978,95,4289_18215,Liffey Valley SC,103952125,1,4289_7778022_100690,4289_152 -4289_75978,96,4289_18221,Liffey Valley SC,104064933,1,4289_7778022_100590,4289_153 -4289_75978,92,4289_18223,Liffey Valley SC,103622139,1,4289_7778022_100782,4289_152 -4289_75978,93,4289_18224,Liffey Valley SC,103732139,1,4289_7778022_100782,4289_152 -4289_75978,94,4289_18225,Liffey Valley SC,103842139,1,4289_7778022_100782,4289_152 -4289_75978,95,4289_18226,Liffey Valley SC,103952139,1,4289_7778022_100782,4289_152 -4289_75978,96,4289_18232,Liffey Valley SC,104064947,1,4289_7778022_100550,4289_153 -4289_75978,92,4289_18238,Liffey Valley SC,103622165,1,4289_7778022_100640,4289_152 -4289_75978,93,4289_18239,Liffey Valley SC,103732165,1,4289_7778022_100640,4289_152 -4289_75962,96,4289_1824,Brides Glen,104064111,1,4289_7778022_104131,4289_26 -4289_75978,94,4289_18240,Liffey Valley SC,103842165,1,4289_7778022_100640,4289_152 -4289_75978,95,4289_18241,Liffey Valley SC,103952165,1,4289_7778022_100640,4289_152 -4289_75978,96,4289_18247,Liffey Valley SC,104064965,1,4289_7778022_100650,4289_153 -4289_75978,92,4289_18253,Liffey Valley SC,103622191,1,4289_7778022_100662,4289_152 -4289_75978,93,4289_18254,Liffey Valley SC,103732191,1,4289_7778022_100662,4289_152 -4289_75978,94,4289_18255,Liffey Valley SC,103842191,1,4289_7778022_100662,4289_152 -4289_75978,95,4289_18256,Liffey Valley SC,103952191,1,4289_7778022_100662,4289_152 -4289_75962,92,4289_1826,Brides Glen,103621207,1,4289_7778022_104030,4289_25 -4289_75978,96,4289_18262,Liffey Valley SC,104064989,1,4289_7778022_100500,4289_153 -4289_75978,92,4289_18264,Liffey Valley SC,103622219,1,4289_7778022_100710,4289_152 -4289_75978,93,4289_18265,Liffey Valley SC,103732219,1,4289_7778022_100710,4289_152 -4289_75978,94,4289_18266,Liffey Valley SC,103842219,1,4289_7778022_100710,4289_152 -4289_75978,95,4289_18267,Liffey Valley SC,103952219,1,4289_7778022_100710,4289_152 -4289_75962,93,4289_1827,Brides Glen,103731207,1,4289_7778022_104030,4289_25 -4289_75978,96,4289_18273,Liffey Valley SC,104064997,1,4289_7778022_100580,4289_153 -4289_75978,92,4289_18279,Liffey Valley SC,103622247,1,4289_7778022_100730,4289_152 -4289_75962,94,4289_1828,Brides Glen,103841207,1,4289_7778022_104030,4289_25 -4289_75978,93,4289_18280,Liffey Valley SC,103732247,1,4289_7778022_100730,4289_152 -4289_75978,94,4289_18281,Liffey Valley SC,103842247,1,4289_7778022_100730,4289_152 -4289_75978,95,4289_18282,Liffey Valley SC,103952247,1,4289_7778022_100730,4289_152 -4289_75978,96,4289_18288,Liffey Valley SC,104065019,1,4289_7778022_100520,4289_153 -4289_75962,95,4289_1829,Brides Glen,103951207,1,4289_7778022_104030,4289_25 -4289_75978,92,4289_18294,Liffey Valley SC,103622281,1,4289_7778022_100750,4289_152 -4289_75978,93,4289_18295,Liffey Valley SC,103732281,1,4289_7778022_100750,4289_152 -4289_75978,94,4289_18296,Liffey Valley SC,103842281,1,4289_7778022_100750,4289_152 -4289_75978,95,4289_18297,Liffey Valley SC,103952281,1,4289_7778022_100750,4289_152 -4289_75978,96,4289_18303,Liffey Valley SC,104065039,1,4289_7778022_100640,4289_153 -4289_75978,92,4289_18305,Liffey Valley SC,103622309,1,4289_7778022_100610,4289_152 -4289_75978,93,4289_18306,Liffey Valley SC,103732309,1,4289_7778022_100610,4289_152 -4289_75978,94,4289_18307,Liffey Valley SC,103842309,1,4289_7778022_100610,4289_152 -4289_75978,95,4289_18308,Liffey Valley SC,103952309,1,4289_7778022_100610,4289_152 -4289_75978,96,4289_18314,Liffey Valley SC,104065053,1,4289_7778022_100510,4289_153 -4289_75978,92,4289_18320,Liffey Valley SC,103622327,1,4289_7778022_100700,4289_152 -4289_75978,93,4289_18321,Liffey Valley SC,103732327,1,4289_7778022_100700,4289_152 -4289_75978,94,4289_18322,Liffey Valley SC,103842327,1,4289_7778022_100700,4289_152 -4289_75978,95,4289_18323,Liffey Valley SC,103952327,1,4289_7778022_100700,4289_152 -4289_75978,96,4289_18329,Liffey Valley SC,104065073,1,4289_7778022_100600,4289_153 -4289_75978,92,4289_18335,Liffey Valley SC,103622347,1,4289_7778022_100630,4289_152 -4289_75978,93,4289_18336,Liffey Valley SC,103732347,1,4289_7778022_100630,4289_152 -4289_75978,94,4289_18337,Liffey Valley SC,103842347,1,4289_7778022_100630,4289_152 -4289_75978,95,4289_18338,Liffey Valley SC,103952347,1,4289_7778022_100630,4289_152 -4289_75978,96,4289_18344,Liffey Valley SC,104065091,1,4289_7778022_100630,4289_153 -4289_75978,92,4289_18346,Liffey Valley SC,103622363,1,4289_7778022_100800,4289_152 -4289_75978,93,4289_18347,Liffey Valley SC,103732363,1,4289_7778022_100800,4289_152 -4289_75978,94,4289_18348,Liffey Valley SC,103842363,1,4289_7778022_100800,4289_152 -4289_75978,95,4289_18349,Liffey Valley SC,103952363,1,4289_7778022_100800,4289_152 -4289_75962,96,4289_1835,Brides Glen,104064143,1,4289_7778022_104061,4289_25 -4289_75978,96,4289_18355,Liffey Valley SC,104065103,1,4289_7778022_100530,4289_153 -4289_75978,92,4289_18361,Liffey Valley SC,103622387,1,4289_7778022_100720,4289_152 -4289_75978,93,4289_18362,Liffey Valley SC,103732387,1,4289_7778022_100720,4289_152 -4289_75978,94,4289_18363,Liffey Valley SC,103842387,1,4289_7778022_100720,4289_152 -4289_75978,95,4289_18364,Liffey Valley SC,103952387,1,4289_7778022_100720,4289_152 -4289_75962,92,4289_1837,Brides Glen,103621351,1,4289_7778022_104071,4289_25 -4289_75978,96,4289_18370,Liffey Valley SC,104065123,1,4289_7778022_100620,4289_153 -4289_75978,92,4289_18376,Liffey Valley SC,103622405,1,4289_7778022_100740,4289_152 -4289_75978,93,4289_18377,Liffey Valley SC,103732405,1,4289_7778022_100740,4289_152 -4289_75978,94,4289_18378,Liffey Valley SC,103842405,1,4289_7778022_100740,4289_152 -4289_75978,95,4289_18379,Liffey Valley SC,103952405,1,4289_7778022_100740,4289_152 -4289_75962,93,4289_1838,Brides Glen,103731351,1,4289_7778022_104071,4289_25 -4289_75978,96,4289_18385,Liffey Valley SC,104065147,1,4289_7778022_100660,4289_153 -4289_75978,92,4289_18387,Liffey Valley SC,103622427,1,4289_7778022_100760,4289_152 -4289_75978,93,4289_18388,Liffey Valley SC,103732427,1,4289_7778022_100760,4289_152 -4289_75978,94,4289_18389,Liffey Valley SC,103842427,1,4289_7778022_100760,4289_152 -4289_75962,94,4289_1839,Brides Glen,103841351,1,4289_7778022_104071,4289_25 -4289_75978,95,4289_18390,Liffey Valley SC,103952427,1,4289_7778022_100760,4289_152 -4289_75978,96,4289_18396,Liffey Valley SC,104065157,1,4289_7778022_100540,4289_153 -4289_75962,95,4289_1840,Brides Glen,103951351,1,4289_7778022_104071,4289_25 -4289_75978,92,4289_18402,Liffey Valley SC,103622449,1,4289_7778022_100770,4289_152 -4289_75978,93,4289_18403,Liffey Valley SC,103732449,1,4289_7778022_100770,4289_152 -4289_75978,94,4289_18404,Liffey Valley SC,103842449,1,4289_7778022_100770,4289_152 -4289_75978,95,4289_18405,Liffey Valley SC,103952449,1,4289_7778022_100770,4289_152 -4289_75978,96,4289_18411,Liffey Valley SC,104065177,1,4289_7778022_100560,4289_153 -4289_75978,92,4289_18417,Liffey Valley SC,103622471,1,4289_7778022_100622,4289_152 -4289_75978,93,4289_18418,Liffey Valley SC,103732471,1,4289_7778022_100622,4289_152 -4289_75978,94,4289_18419,Liffey Valley SC,103842471,1,4289_7778022_100622,4289_152 -4289_75978,95,4289_18420,Liffey Valley SC,103952471,1,4289_7778022_100622,4289_152 -4289_75978,96,4289_18426,Liffey Valley SC,104065197,1,4289_7778022_100490,4289_153 -4289_75978,92,4289_18428,Liffey Valley SC,103622485,1,4289_7778022_100650,4289_152 -4289_75978,93,4289_18429,Liffey Valley SC,103732485,1,4289_7778022_100650,4289_152 -4289_75978,94,4289_18430,Liffey Valley SC,103842485,1,4289_7778022_100650,4289_152 -4289_75978,95,4289_18431,Liffey Valley SC,103952485,1,4289_7778022_100650,4289_152 -4289_75978,96,4289_18437,Liffey Valley SC,104065213,1,4289_7778022_100590,4289_153 -4289_75978,92,4289_18443,Liffey Valley SC,103622505,1,4289_7778022_100670,4289_152 -4289_75978,93,4289_18444,Liffey Valley SC,103732505,1,4289_7778022_100670,4289_152 -4289_75978,94,4289_18445,Liffey Valley SC,103842505,1,4289_7778022_100670,4289_152 -4289_75978,95,4289_18446,Liffey Valley SC,103952505,1,4289_7778022_100670,4289_152 -4289_75978,96,4289_18452,Liffey Valley SC,104065225,1,4289_7778022_100550,4289_153 -4289_75978,92,4289_18458,Liffey Valley SC,103622527,1,4289_7778022_100792,4289_152 -4289_75978,93,4289_18459,Liffey Valley SC,103732527,1,4289_7778022_100792,4289_152 -4289_75962,96,4289_1846,Brides Glen,104064231,1,4289_7778022_104131,4289_25 -4289_75978,94,4289_18460,Liffey Valley SC,103842527,1,4289_7778022_100792,4289_152 -4289_75978,95,4289_18461,Liffey Valley SC,103952527,1,4289_7778022_100792,4289_152 -4289_75978,96,4289_18467,Liffey Valley SC,104065251,1,4289_7778022_100650,4289_153 -4289_75978,92,4289_18469,Liffey Valley SC,103622543,1,4289_7778022_100680,4289_152 -4289_75978,93,4289_18470,Liffey Valley SC,103732543,1,4289_7778022_100680,4289_152 -4289_75978,94,4289_18471,Liffey Valley SC,103842543,1,4289_7778022_100680,4289_152 -4289_75978,95,4289_18472,Liffey Valley SC,103952543,1,4289_7778022_100680,4289_152 -4289_75978,96,4289_18478,Liffey Valley SC,104065261,1,4289_7778022_100500,4289_153 -4289_75978,92,4289_18484,Liffey Valley SC,103622563,1,4289_7778022_100690,4289_152 -4289_75978,93,4289_18485,Liffey Valley SC,103732563,1,4289_7778022_100690,4289_152 -4289_75978,94,4289_18486,Liffey Valley SC,103842563,1,4289_7778022_100690,4289_152 -4289_75978,95,4289_18487,Liffey Valley SC,103952563,1,4289_7778022_100690,4289_152 -4289_75978,96,4289_18493,Liffey Valley SC,104065281,1,4289_7778022_100520,4289_153 -4289_75978,92,4289_18499,Liffey Valley SC,103622587,1,4289_7778022_100782,4289_152 -4289_75978,93,4289_18500,Liffey Valley SC,103732587,1,4289_7778022_100782,4289_152 -4289_75978,94,4289_18501,Liffey Valley SC,103842587,1,4289_7778022_100782,4289_152 -4289_75978,95,4289_18502,Liffey Valley SC,103952587,1,4289_7778022_100782,4289_152 -4289_75978,96,4289_18508,Liffey Valley SC,104065305,1,4289_7778022_100640,4289_153 -4289_75978,92,4289_18510,Liffey Valley SC,103622599,1,4289_7778022_100640,4289_152 -4289_75978,93,4289_18511,Liffey Valley SC,103732599,1,4289_7778022_100640,4289_152 -4289_75978,94,4289_18512,Liffey Valley SC,103842599,1,4289_7778022_100640,4289_152 -4289_75978,95,4289_18513,Liffey Valley SC,103952599,1,4289_7778022_100640,4289_152 -4289_75978,96,4289_18519,Liffey Valley SC,104065315,1,4289_7778022_100572,4289_153 -4289_75962,92,4289_1852,Brides Glen,103621463,1,4289_7778022_104030,4289_25 -4289_75978,92,4289_18525,Liffey Valley SC,103622621,1,4289_7778022_100662,4289_152 -4289_75978,93,4289_18526,Liffey Valley SC,103732621,1,4289_7778022_100662,4289_152 -4289_75978,94,4289_18527,Liffey Valley SC,103842621,1,4289_7778022_100662,4289_152 -4289_75978,95,4289_18528,Liffey Valley SC,103952621,1,4289_7778022_100662,4289_152 -4289_75962,93,4289_1853,Brides Glen,103731463,1,4289_7778022_104030,4289_25 -4289_75978,96,4289_18534,Liffey Valley SC,104065333,1,4289_7778022_100600,4289_153 -4289_75962,94,4289_1854,Brides Glen,103841463,1,4289_7778022_104030,4289_25 -4289_75978,92,4289_18540,Liffey Valley SC,103622639,1,4289_7778022_100710,4289_152 -4289_75978,93,4289_18541,Liffey Valley SC,103732639,1,4289_7778022_100710,4289_152 -4289_75978,94,4289_18542,Liffey Valley SC,103842639,1,4289_7778022_100710,4289_152 -4289_75978,95,4289_18543,Liffey Valley SC,103952639,1,4289_7778022_100710,4289_152 -4289_75978,96,4289_18549,Liffey Valley SC,104065355,1,4289_7778022_100630,4289_152 -4289_75962,95,4289_1855,Brides Glen,103951463,1,4289_7778022_104030,4289_25 -4289_75978,92,4289_18551,Liffey Valley SC,103622655,1,4289_7778022_100750,4289_152 -4289_75978,93,4289_18552,Liffey Valley SC,103732655,1,4289_7778022_100750,4289_152 -4289_75978,94,4289_18553,Liffey Valley SC,103842655,1,4289_7778022_100750,4289_152 -4289_75978,95,4289_18554,Liffey Valley SC,103952655,1,4289_7778022_100750,4289_152 -4289_75978,92,4289_18565,Liffey Valley SC,103622675,1,4289_7778022_100610,4289_152 -4289_75978,93,4289_18566,Liffey Valley SC,103732675,1,4289_7778022_100610,4289_152 -4289_75978,94,4289_18567,Liffey Valley SC,103842675,1,4289_7778022_100610,4289_152 -4289_75978,95,4289_18568,Liffey Valley SC,103952675,1,4289_7778022_100610,4289_152 -4289_75978,96,4289_18574,Liffey Valley SC,104065375,1,4289_7778022_100620,4289_153 -4289_75978,92,4289_18576,Liffey Valley SC,103622695,1,4289_7778022_100700,4289_152 -4289_75978,93,4289_18577,Liffey Valley SC,103732695,1,4289_7778022_100700,4289_152 -4289_75978,94,4289_18578,Liffey Valley SC,103842695,1,4289_7778022_100700,4289_152 -4289_75978,95,4289_18579,Liffey Valley SC,103952695,1,4289_7778022_100700,4289_152 -4289_75978,96,4289_18585,Liffey Valley SC,104065405,1,4289_7778022_100660,4289_152 -4289_75978,92,4289_18591,Liffey Valley SC,103622705,1,4289_7778022_100630,4289_152 -4289_75978,93,4289_18592,Liffey Valley SC,103732705,1,4289_7778022_100630,4289_152 -4289_75978,94,4289_18593,Liffey Valley SC,103842705,1,4289_7778022_100630,4289_152 -4289_75978,95,4289_18594,Liffey Valley SC,103952705,1,4289_7778022_100630,4289_152 -4289_75978,92,4289_18601,Liffey Valley SC,103622727,1,4289_7778022_100800,4289_152 -4289_75978,93,4289_18602,Liffey Valley SC,103732727,1,4289_7778022_100800,4289_152 -4289_75978,94,4289_18603,Liffey Valley SC,103842727,1,4289_7778022_100800,4289_152 -4289_75978,95,4289_18604,Liffey Valley SC,103952727,1,4289_7778022_100800,4289_152 -4289_75962,96,4289_1861,Brides Glen,104064321,1,4289_7778022_104161,4289_25 -4289_75978,96,4289_18610,Liffey Valley SC,104065425,1,4289_7778022_100560,4289_153 -4289_75978,92,4289_18616,Liffey Valley SC,103622743,1,4289_7778022_100740,4289_152 -4289_75978,93,4289_18617,Liffey Valley SC,103732743,1,4289_7778022_100740,4289_152 -4289_75978,94,4289_18618,Liffey Valley SC,103842743,1,4289_7778022_100740,4289_152 -4289_75978,95,4289_18619,Liffey Valley SC,103952743,1,4289_7778022_100740,4289_152 -4289_75978,96,4289_18625,Liffey Valley SC,104065449,1,4289_7778022_100550,4289_152 -4289_75978,92,4289_18627,Liffey Valley SC,103622755,1,4289_7778022_100760,4289_152 -4289_75978,93,4289_18628,Liffey Valley SC,103732755,1,4289_7778022_100760,4289_152 -4289_75978,94,4289_18629,Liffey Valley SC,103842755,1,4289_7778022_100760,4289_152 -4289_75978,95,4289_18630,Liffey Valley SC,103952755,1,4289_7778022_100760,4289_152 -4289_75978,92,4289_18641,Liffey Valley SC,103622771,1,4289_7778022_100770,4289_152 -4289_75978,93,4289_18642,Liffey Valley SC,103732771,1,4289_7778022_100770,4289_152 -4289_75978,94,4289_18643,Liffey Valley SC,103842771,1,4289_7778022_100770,4289_152 -4289_75978,95,4289_18644,Liffey Valley SC,103952771,1,4289_7778022_100770,4289_152 -4289_75978,96,4289_18650,Liffey Valley SC,104065469,1,4289_7778022_100500,4289_153 -4289_75978,92,4289_18652,Liffey Valley SC,103622797,1,4289_7778022_100670,4289_152 -4289_75978,93,4289_18653,Liffey Valley SC,103732797,1,4289_7778022_100670,4289_152 -4289_75978,94,4289_18654,Liffey Valley SC,103842797,1,4289_7778022_100670,4289_152 -4289_75978,95,4289_18655,Liffey Valley SC,103952797,1,4289_7778022_100670,4289_152 -4289_75978,96,4289_18661,Liffey Valley SC,104065501,1,4289_7778022_100520,4289_152 -4289_75978,92,4289_18667,Liffey Valley SC,103622809,1,4289_7778022_100792,4289_152 -4289_75978,93,4289_18668,Liffey Valley SC,103732809,1,4289_7778022_100792,4289_152 -4289_75978,94,4289_18669,Liffey Valley SC,103842809,1,4289_7778022_100792,4289_152 -4289_75962,92,4289_1867,Brides Glen,103621577,1,4289_7778022_104071,4289_25 -4289_75978,95,4289_18670,Liffey Valley SC,103952809,1,4289_7778022_100792,4289_152 -4289_75978,92,4289_18677,Liffey Valley SC,103622823,1,4289_7778022_100690,4289_152 -4289_75978,93,4289_18678,Liffey Valley SC,103732823,1,4289_7778022_100690,4289_152 -4289_75978,94,4289_18679,Liffey Valley SC,103842823,1,4289_7778022_100690,4289_152 -4289_75962,93,4289_1868,Brides Glen,103731577,1,4289_7778022_104071,4289_25 -4289_75978,95,4289_18680,Liffey Valley SC,103952823,1,4289_7778022_100690,4289_152 -4289_75978,96,4289_18686,Liffey Valley SC,104065513,1,4289_7778022_100572,4289_153 -4289_75962,94,4289_1869,Brides Glen,103841577,1,4289_7778022_104071,4289_25 -4289_75978,92,4289_18692,Liffey Valley SC,103622845,1,4289_7778022_100782,4289_152 -4289_75978,93,4289_18693,Liffey Valley SC,103732845,1,4289_7778022_100782,4289_152 -4289_75978,94,4289_18694,Liffey Valley SC,103842845,1,4289_7778022_100782,4289_152 -4289_75978,95,4289_18695,Liffey Valley SC,103952845,1,4289_7778022_100782,4289_152 -4289_75962,95,4289_1870,Brides Glen,103951577,1,4289_7778022_104071,4289_25 -4289_75978,96,4289_18701,Liffey Valley SC,104065541,1,4289_7778022_100630,4289_152 -4289_75978,92,4289_18703,Liffey Valley SC,103622857,1,4289_7778022_100640,4289_152 -4289_75978,93,4289_18704,Liffey Valley SC,103732857,1,4289_7778022_100640,4289_152 -4289_75978,94,4289_18705,Liffey Valley SC,103842857,1,4289_7778022_100640,4289_152 -4289_75978,95,4289_18706,Liffey Valley SC,103952857,1,4289_7778022_100640,4289_152 -4289_75978,92,4289_18717,Liffey Valley SC,103622873,1,4289_7778022_100662,4289_152 -4289_75978,93,4289_18718,Liffey Valley SC,103732873,1,4289_7778022_100662,4289_152 -4289_75978,94,4289_18719,Liffey Valley SC,103842873,1,4289_7778022_100662,4289_152 -4289_75978,95,4289_18720,Liffey Valley SC,103952873,1,4289_7778022_100662,4289_152 -4289_75978,96,4289_18726,Liffey Valley SC,104065559,1,4289_7778022_100620,4289_152 -4289_75978,92,4289_18728,Liffey Valley SC,103622899,1,4289_7778022_100710,4289_152 -4289_75978,93,4289_18729,Liffey Valley SC,103732899,1,4289_7778022_100710,4289_152 -4289_75978,94,4289_18730,Liffey Valley SC,103842899,1,4289_7778022_100710,4289_152 -4289_75978,95,4289_18731,Liffey Valley SC,103952899,1,4289_7778022_100710,4289_152 -4289_75978,96,4289_18737,Liffey Valley SC,104065591,1,4289_7778022_100660,4289_152 -4289_75978,92,4289_18743,Liffey Valley SC,103622909,1,4289_7778022_100610,4289_152 -4289_75978,93,4289_18744,Liffey Valley SC,103732909,1,4289_7778022_100610,4289_152 -4289_75978,94,4289_18745,Liffey Valley SC,103842909,1,4289_7778022_100610,4289_152 -4289_75978,95,4289_18746,Liffey Valley SC,103952909,1,4289_7778022_100610,4289_152 -4289_75978,92,4289_18753,Liffey Valley SC,103622923,1,4289_7778022_100630,4289_152 -4289_75978,93,4289_18754,Liffey Valley SC,103732923,1,4289_7778022_100630,4289_152 -4289_75978,94,4289_18755,Liffey Valley SC,103842923,1,4289_7778022_100630,4289_152 -4289_75978,95,4289_18756,Liffey Valley SC,103952923,1,4289_7778022_100630,4289_152 -4289_75962,96,4289_1876,Brides Glen,104064427,1,4289_7778022_104022,4289_25 -4289_75978,96,4289_18762,Liffey Valley SC,104065605,1,4289_7778022_100560,4289_153 -4289_75978,92,4289_18768,Liffey Valley SC,103622943,1,4289_7778022_100800,4289_152 -4289_75978,93,4289_18769,Liffey Valley SC,103732943,1,4289_7778022_100800,4289_152 -4289_75978,94,4289_18770,Liffey Valley SC,103842943,1,4289_7778022_100800,4289_152 -4289_75978,95,4289_18771,Liffey Valley SC,103952943,1,4289_7778022_100800,4289_152 -4289_75978,96,4289_18777,Liffey Valley SC,104065633,1,4289_7778022_100550,4289_152 -4289_75978,92,4289_18779,Liffey Valley SC,103622957,1,4289_7778022_100760,4289_152 -4289_75978,93,4289_18780,Liffey Valley SC,103732957,1,4289_7778022_100760,4289_152 -4289_75978,94,4289_18781,Liffey Valley SC,103842957,1,4289_7778022_100760,4289_152 -4289_75978,95,4289_18782,Liffey Valley SC,103952957,1,4289_7778022_100760,4289_152 -4289_75978,92,4289_18793,Liffey Valley SC,103622971,1,4289_7778022_100770,4289_152 -4289_75978,93,4289_18794,Liffey Valley SC,103732971,1,4289_7778022_100770,4289_152 -4289_75978,94,4289_18795,Liffey Valley SC,103842971,1,4289_7778022_100770,4289_152 -4289_75978,95,4289_18796,Liffey Valley SC,103952971,1,4289_7778022_100770,4289_152 -4289_75960,92,4289_188,Sutton Station,103621840,0,4289_7778022_103108,4289_1 -4289_75978,96,4289_18802,Liffey Valley SC,104065647,1,4289_7778022_100500,4289_153 -4289_75978,92,4289_18804,Liffey Valley SC,103622997,1,4289_7778022_100670,4289_152 -4289_75978,93,4289_18805,Liffey Valley SC,103732997,1,4289_7778022_100670,4289_152 -4289_75978,94,4289_18806,Liffey Valley SC,103842997,1,4289_7778022_100670,4289_152 -4289_75978,95,4289_18807,Liffey Valley SC,103952997,1,4289_7778022_100670,4289_152 -4289_75978,96,4289_18813,Liffey Valley SC,104065677,1,4289_7778022_100572,4289_152 -4289_75978,92,4289_18819,Liffey Valley SC,103623007,1,4289_7778022_100690,4289_152 -4289_75962,92,4289_1882,Brides Glen,103621689,1,4289_7778022_104030,4289_25 -4289_75978,93,4289_18820,Liffey Valley SC,103733007,1,4289_7778022_100690,4289_152 -4289_75978,94,4289_18821,Liffey Valley SC,103843007,1,4289_7778022_100690,4289_152 -4289_75978,95,4289_18822,Liffey Valley SC,103953007,1,4289_7778022_100690,4289_152 -4289_75978,92,4289_18829,Liffey Valley SC,103623021,1,4289_7778022_100782,4289_152 -4289_75962,93,4289_1883,Brides Glen,103731689,1,4289_7778022_104030,4289_25 -4289_75978,93,4289_18830,Liffey Valley SC,103733021,1,4289_7778022_100782,4289_152 -4289_75978,94,4289_18831,Liffey Valley SC,103843021,1,4289_7778022_100782,4289_152 -4289_75978,95,4289_18832,Liffey Valley SC,103953021,1,4289_7778022_100782,4289_152 -4289_75978,96,4289_18838,Liffey Valley SC,104065693,1,4289_7778022_100630,4289_153 -4289_75962,94,4289_1884,Brides Glen,103841689,1,4289_7778022_104030,4289_25 -4289_75978,2,4289_18843,Liffey Valley SC,103613041,1,4289_7778022_100662,4289_152 -4289_75978,92,4289_18844,Liffey Valley SC,103623041,1,4289_7778022_100662,4289_152 -4289_75978,93,4289_18845,Liffey Valley SC,103733041,1,4289_7778022_100662,4289_152 -4289_75978,94,4289_18846,Liffey Valley SC,103843041,1,4289_7778022_100662,4289_152 -4289_75978,95,4289_18847,Liffey Valley SC,103953041,1,4289_7778022_100662,4289_152 -4289_75962,95,4289_1885,Brides Glen,103951689,1,4289_7778022_104030,4289_25 -4289_75978,96,4289_18853,Liffey Valley SC,104065709,1,4289_7778022_100620,4289_153 -4289_75979,92,4289_18859,Blackrock,103621014,0,4289_7778022_100820,4289_155 -4289_75979,93,4289_18860,Blackrock,103731014,0,4289_7778022_100820,4289_155 -4289_75979,94,4289_18861,Blackrock,103841014,0,4289_7778022_100820,4289_155 -4289_75979,95,4289_18862,Blackrock,103951014,0,4289_7778022_100820,4289_155 -4289_75979,92,4289_18869,Blackrock,103621040,0,4289_7778022_100851,4289_155 -4289_75979,93,4289_18870,Blackrock,103731040,0,4289_7778022_100851,4289_155 -4289_75979,94,4289_18871,Blackrock,103841040,0,4289_7778022_100851,4289_155 -4289_75979,95,4289_18872,Blackrock,103951040,0,4289_7778022_100851,4289_155 -4289_75979,96,4289_18878,Blackrock,104064030,0,4289_7778022_100681,4289_156 -4289_75979,92,4289_18880,Blackrock,103621066,0,4289_7778022_100870,4289_155 -4289_75979,93,4289_18881,Blackrock,103731066,0,4289_7778022_100870,4289_155 -4289_75979,94,4289_18882,Blackrock,103841066,0,4289_7778022_100870,4289_155 -4289_75979,95,4289_18883,Blackrock,103951066,0,4289_7778022_100870,4289_155 -4289_75979,96,4289_18889,Blackrock,104064046,0,4289_7778022_100701,4289_155 -4289_75979,92,4289_18891,Blackrock,103621092,0,4289_7778022_100810,4289_155 -4289_75979,93,4289_18892,Blackrock,103731092,0,4289_7778022_100810,4289_155 -4289_75979,94,4289_18893,Blackrock,103841092,0,4289_7778022_100810,4289_155 -4289_75979,95,4289_18894,Blackrock,103951092,0,4289_7778022_100810,4289_155 -4289_75960,93,4289_189,Sutton Station,103731840,0,4289_7778022_103108,4289_1 -4289_75979,92,4289_18901,Blackrock,103621102,0,4289_7778022_100891,4289_155 -4289_75979,93,4289_18902,Blackrock,103731102,0,4289_7778022_100891,4289_155 -4289_75979,94,4289_18903,Blackrock,103841102,0,4289_7778022_100891,4289_155 -4289_75979,95,4289_18904,Blackrock,103951102,0,4289_7778022_100891,4289_155 -4289_75962,96,4289_1891,Brides Glen,104064533,1,4289_7778022_104161,4289_25 -4289_75979,96,4289_18910,Blackrock,104064074,0,4289_7778022_100721,4289_155 -4289_75979,92,4289_18912,Blackrock,103621138,0,4289_7778022_100911,4289_155 -4289_75979,93,4289_18913,Blackrock,103731138,0,4289_7778022_100911,4289_155 -4289_75979,94,4289_18914,Blackrock,103841138,0,4289_7778022_100911,4289_155 -4289_75979,95,4289_18915,Blackrock,103951138,0,4289_7778022_100911,4289_155 -4289_75979,92,4289_18922,Blackrock,103621164,0,4289_7778022_100920,4289_155 -4289_75979,93,4289_18923,Blackrock,103731164,0,4289_7778022_100920,4289_155 -4289_75979,94,4289_18924,Blackrock,103841164,0,4289_7778022_100920,4289_155 -4289_75979,95,4289_18925,Blackrock,103951164,0,4289_7778022_100920,4289_155 -4289_75979,96,4289_18931,Blackrock,104064108,0,4289_7778022_100670,4289_156 -4289_75979,92,4289_18933,Blackrock,103621180,0,4289_7778022_100930,4289_155 -4289_75979,93,4289_18934,Blackrock,103731180,0,4289_7778022_100930,4289_155 -4289_75979,94,4289_18935,Blackrock,103841180,0,4289_7778022_100930,4289_155 -4289_75979,95,4289_18936,Blackrock,103951180,0,4289_7778022_100930,4289_155 -4289_75979,92,4289_18943,Blackrock,103621206,0,4289_7778022_100831,4289_155 -4289_75979,93,4289_18944,Blackrock,103731206,0,4289_7778022_100831,4289_155 -4289_75979,94,4289_18945,Blackrock,103841206,0,4289_7778022_100831,4289_155 -4289_75979,95,4289_18946,Blackrock,103951206,0,4289_7778022_100831,4289_155 -4289_75979,96,4289_18952,Blackrock,104064130,0,4289_7778022_100691,4289_155 -4289_75979,92,4289_18954,Blackrock,103621248,0,4289_7778022_100841,4289_155 -4289_75979,93,4289_18955,Blackrock,103731248,0,4289_7778022_100841,4289_155 -4289_75979,94,4289_18956,Blackrock,103841248,0,4289_7778022_100841,4289_155 -4289_75979,95,4289_18957,Blackrock,103951248,0,4289_7778022_100841,4289_155 -4289_75979,96,4289_18967,Blackrock,104064166,0,4289_7778022_100711,4289_155 -4289_75979,92,4289_18969,Blackrock,103621310,0,4289_7778022_100820,4289_155 -4289_75962,92,4289_1897,Brides Glen,103621801,1,4289_7778022_104071,4289_25 -4289_75979,93,4289_18970,Blackrock,103731310,0,4289_7778022_100820,4289_155 -4289_75979,94,4289_18971,Blackrock,103841310,0,4289_7778022_100820,4289_155 -4289_75979,95,4289_18972,Blackrock,103951310,0,4289_7778022_100820,4289_155 -4289_75979,92,4289_18979,Blackrock,103621340,0,4289_7778022_100860,4289_155 -4289_75962,93,4289_1898,Brides Glen,103731801,1,4289_7778022_104071,4289_25 -4289_75979,93,4289_18980,Blackrock,103731340,0,4289_7778022_100860,4289_155 -4289_75979,94,4289_18981,Blackrock,103841340,0,4289_7778022_100860,4289_155 -4289_75979,95,4289_18982,Blackrock,103951340,0,4289_7778022_100860,4289_155 -4289_75979,96,4289_18988,Blackrock,104064200,0,4289_7778022_100681,4289_156 -4289_75962,94,4289_1899,Brides Glen,103841801,1,4289_7778022_104071,4289_25 -4289_75979,92,4289_18994,Blackrock,103621380,0,4289_7778022_100881,4289_155 -4289_75979,93,4289_18995,Blackrock,103731380,0,4289_7778022_100881,4289_155 -4289_75979,94,4289_18996,Blackrock,103841380,0,4289_7778022_100881,4289_155 -4289_75979,95,4289_18997,Blackrock,103951380,0,4289_7778022_100881,4289_155 -4289_75960,94,4289_190,Sutton Station,103841840,0,4289_7778022_103108,4289_1 -4289_75962,95,4289_1900,Brides Glen,103951801,1,4289_7778022_104071,4289_25 -4289_75979,96,4289_19003,Blackrock,104064222,0,4289_7778022_100701,4289_155 -4289_75979,92,4289_19005,Blackrock,103621412,0,4289_7778022_100940,4289_155 -4289_75979,93,4289_19006,Blackrock,103731412,0,4289_7778022_100940,4289_155 -4289_75979,94,4289_19007,Blackrock,103841412,0,4289_7778022_100940,4289_155 -4289_75979,95,4289_19008,Blackrock,103951412,0,4289_7778022_100940,4289_155 -4289_75979,96,4289_19018,Blackrock,104064254,0,4289_7778022_100721,4289_155 -4289_75979,92,4289_19020,Blackrock,103621432,0,4289_7778022_100900,4289_155 -4289_75979,93,4289_19021,Blackrock,103731432,0,4289_7778022_100900,4289_155 -4289_75979,94,4289_19022,Blackrock,103841432,0,4289_7778022_100900,4289_155 -4289_75979,95,4289_19023,Blackrock,103951432,0,4289_7778022_100900,4289_155 -4289_75979,92,4289_19030,Blackrock,103621466,0,4289_7778022_100851,4289_155 -4289_75979,93,4289_19031,Blackrock,103731466,0,4289_7778022_100851,4289_155 -4289_75979,94,4289_19032,Blackrock,103841466,0,4289_7778022_100851,4289_155 -4289_75979,95,4289_19033,Blackrock,103951466,0,4289_7778022_100851,4289_155 -4289_75979,96,4289_19039,Blackrock,104064290,0,4289_7778022_100741,4289_156 -4289_75979,92,4289_19045,Blackrock,103621486,0,4289_7778022_100870,4289_155 -4289_75979,93,4289_19046,Blackrock,103731486,0,4289_7778022_100870,4289_155 -4289_75979,94,4289_19047,Blackrock,103841486,0,4289_7778022_100870,4289_155 -4289_75979,95,4289_19048,Blackrock,103951486,0,4289_7778022_100870,4289_155 -4289_75979,96,4289_19054,Blackrock,104064316,0,4289_7778022_100670,4289_156 -4289_75979,92,4289_19056,Blackrock,103621520,0,4289_7778022_100810,4289_155 -4289_75979,93,4289_19057,Blackrock,103731520,0,4289_7778022_100810,4289_155 -4289_75979,94,4289_19058,Blackrock,103841520,0,4289_7778022_100810,4289_155 -4289_75979,95,4289_19059,Blackrock,103951520,0,4289_7778022_100810,4289_155 -4289_75962,96,4289_1906,Brides Glen,104064641,1,4289_7778022_104191,4289_25 -4289_75979,96,4289_19065,Blackrock,104064342,0,4289_7778022_100691,4289_156 -4289_75979,92,4289_19071,Blackrock,103621544,0,4289_7778022_100911,4289_155 -4289_75979,93,4289_19072,Blackrock,103731544,0,4289_7778022_100911,4289_155 -4289_75979,94,4289_19073,Blackrock,103841544,0,4289_7778022_100911,4289_155 -4289_75979,95,4289_19074,Blackrock,103951544,0,4289_7778022_100911,4289_155 -4289_75979,96,4289_19080,Blackrock,104064368,0,4289_7778022_100760,4289_156 -4289_75979,92,4289_19082,Blackrock,103621576,0,4289_7778022_100920,4289_155 -4289_75979,93,4289_19083,Blackrock,103731576,0,4289_7778022_100920,4289_155 -4289_75979,94,4289_19084,Blackrock,103841576,0,4289_7778022_100920,4289_155 -4289_75979,95,4289_19085,Blackrock,103951576,0,4289_7778022_100920,4289_155 -4289_75979,96,4289_19091,Blackrock,104064398,0,4289_7778022_100711,4289_155 -4289_75979,92,4289_19097,Blackrock,103621596,0,4289_7778022_100930,4289_155 -4289_75979,93,4289_19098,Blackrock,103731596,0,4289_7778022_100930,4289_155 -4289_75979,94,4289_19099,Blackrock,103841596,0,4289_7778022_100930,4289_155 -4289_75960,95,4289_191,Sutton Station,103951840,0,4289_7778022_103108,4289_1 -4289_75979,95,4289_19100,Blackrock,103951596,0,4289_7778022_100930,4289_155 -4289_75979,96,4289_19106,Blackrock,104064420,0,4289_7778022_100731,4289_155 -4289_75979,92,4289_19112,Blackrock,103621630,0,4289_7778022_100831,4289_155 -4289_75979,93,4289_19113,Blackrock,103731630,0,4289_7778022_100831,4289_155 -4289_75979,94,4289_19114,Blackrock,103841630,0,4289_7778022_100831,4289_155 -4289_75979,95,4289_19115,Blackrock,103951630,0,4289_7778022_100831,4289_155 -4289_75962,92,4289_1912,Brides Glen,103621921,1,4289_7778022_104030,4289_25 -4289_75979,96,4289_19121,Blackrock,104064452,0,4289_7778022_100681,4289_156 -4289_75979,92,4289_19127,Blackrock,103621656,0,4289_7778022_100841,4289_155 -4289_75979,93,4289_19128,Blackrock,103731656,0,4289_7778022_100841,4289_155 -4289_75979,94,4289_19129,Blackrock,103841656,0,4289_7778022_100841,4289_155 -4289_75962,93,4289_1913,Brides Glen,103731921,1,4289_7778022_104030,4289_25 -4289_75979,95,4289_19130,Blackrock,103951656,0,4289_7778022_100841,4289_155 -4289_75979,96,4289_19136,Blackrock,104064474,0,4289_7778022_100701,4289_156 -4289_75979,92,4289_19138,Blackrock,103621688,0,4289_7778022_100820,4289_155 -4289_75979,93,4289_19139,Blackrock,103731688,0,4289_7778022_100820,4289_155 -4289_75962,94,4289_1914,Brides Glen,103841921,1,4289_7778022_104030,4289_25 -4289_75979,94,4289_19140,Blackrock,103841688,0,4289_7778022_100820,4289_155 -4289_75979,95,4289_19141,Blackrock,103951688,0,4289_7778022_100820,4289_155 -4289_75979,96,4289_19147,Blackrock,104064504,0,4289_7778022_100721,4289_156 -4289_75962,95,4289_1915,Brides Glen,103951921,1,4289_7778022_104030,4289_25 -4289_75979,92,4289_19153,Blackrock,103621710,0,4289_7778022_100860,4289_155 -4289_75979,93,4289_19154,Blackrock,103731710,0,4289_7778022_100860,4289_155 -4289_75979,94,4289_19155,Blackrock,103841710,0,4289_7778022_100860,4289_155 -4289_75979,95,4289_19156,Blackrock,103951710,0,4289_7778022_100860,4289_155 -4289_75979,96,4289_19162,Blackrock,104064528,0,4289_7778022_100750,4289_156 -4289_75979,92,4289_19168,Blackrock,103621744,0,4289_7778022_100881,4289_155 -4289_75979,93,4289_19169,Blackrock,103731744,0,4289_7778022_100881,4289_155 -4289_75979,94,4289_19170,Blackrock,103841744,0,4289_7778022_100881,4289_155 -4289_75979,95,4289_19171,Blackrock,103951744,0,4289_7778022_100881,4289_155 -4289_75979,96,4289_19177,Blackrock,104064562,0,4289_7778022_100780,4289_156 -4289_75979,92,4289_19183,Blackrock,103621766,0,4289_7778022_100940,4289_155 -4289_75979,93,4289_19184,Blackrock,103731766,0,4289_7778022_100940,4289_155 -4289_75979,94,4289_19185,Blackrock,103841766,0,4289_7778022_100940,4289_155 -4289_75979,95,4289_19186,Blackrock,103951766,0,4289_7778022_100940,4289_155 -4289_75979,96,4289_19192,Blackrock,104064580,0,4289_7778022_100741,4289_156 -4289_75979,92,4289_19194,Blackrock,103621798,0,4289_7778022_100900,4289_155 -4289_75979,93,4289_19195,Blackrock,103731798,0,4289_7778022_100900,4289_155 -4289_75979,94,4289_19196,Blackrock,103841798,0,4289_7778022_100900,4289_155 -4289_75979,95,4289_19197,Blackrock,103951798,0,4289_7778022_100900,4289_155 -4289_75979,96,4289_19203,Blackrock,104064610,0,4289_7778022_100670,4289_156 -4289_75979,92,4289_19209,Blackrock,103621824,0,4289_7778022_100870,4289_155 -4289_75962,96,4289_1921,Brides Glen,104064747,1,4289_7778022_104023,4289_25 -4289_75979,93,4289_19210,Blackrock,103731824,0,4289_7778022_100870,4289_155 -4289_75979,94,4289_19211,Blackrock,103841824,0,4289_7778022_100870,4289_155 -4289_75979,95,4289_19212,Blackrock,103951824,0,4289_7778022_100870,4289_155 -4289_75979,96,4289_19218,Blackrock,104064634,0,4289_7778022_100691,4289_156 -4289_75979,92,4289_19224,Blackrock,103621858,0,4289_7778022_100810,4289_155 -4289_75979,93,4289_19225,Blackrock,103731858,0,4289_7778022_100810,4289_155 -4289_75979,94,4289_19226,Blackrock,103841858,0,4289_7778022_100810,4289_155 -4289_75979,95,4289_19227,Blackrock,103951858,0,4289_7778022_100810,4289_155 -4289_75979,96,4289_19233,Blackrock,104064668,0,4289_7778022_100760,4289_156 -4289_75979,92,4289_19239,Blackrock,103621880,0,4289_7778022_100911,4289_155 -4289_75979,93,4289_19240,Blackrock,103731880,0,4289_7778022_100911,4289_155 -4289_75979,94,4289_19241,Blackrock,103841880,0,4289_7778022_100911,4289_155 -4289_75979,95,4289_19242,Blackrock,103951880,0,4289_7778022_100911,4289_155 -4289_75979,96,4289_19248,Blackrock,104064688,0,4289_7778022_100711,4289_156 -4289_75979,92,4289_19250,Blackrock,103621914,0,4289_7778022_100920,4289_155 -4289_75979,93,4289_19251,Blackrock,103731914,0,4289_7778022_100920,4289_155 -4289_75979,94,4289_19252,Blackrock,103841914,0,4289_7778022_100920,4289_155 -4289_75979,95,4289_19253,Blackrock,103951914,0,4289_7778022_100920,4289_155 -4289_75979,96,4289_19259,Blackrock,104064718,0,4289_7778022_100770,4289_156 -4289_75979,92,4289_19265,Blackrock,103621936,0,4289_7778022_100930,4289_155 -4289_75979,93,4289_19266,Blackrock,103731936,0,4289_7778022_100930,4289_155 -4289_75979,94,4289_19267,Blackrock,103841936,0,4289_7778022_100930,4289_155 -4289_75979,95,4289_19268,Blackrock,103951936,0,4289_7778022_100930,4289_155 -4289_75962,92,4289_1927,Brides Glen,103622033,1,4289_7778022_104071,4289_25 -4289_75979,96,4289_19274,Blackrock,104064740,0,4289_7778022_100731,4289_156 -4289_75962,93,4289_1928,Brides Glen,103732033,1,4289_7778022_104071,4289_25 -4289_75979,92,4289_19280,Blackrock,103621970,0,4289_7778022_100831,4289_155 -4289_75979,93,4289_19281,Blackrock,103731970,0,4289_7778022_100831,4289_155 -4289_75979,94,4289_19282,Blackrock,103841970,0,4289_7778022_100831,4289_155 -4289_75979,95,4289_19283,Blackrock,103951970,0,4289_7778022_100831,4289_155 -4289_75979,96,4289_19289,Blackrock,104064776,0,4289_7778022_100681,4289_155 -4289_75962,94,4289_1929,Brides Glen,103842033,1,4289_7778022_104071,4289_25 -4289_75979,92,4289_19295,Blackrock,103621994,0,4289_7778022_100841,4289_155 -4289_75979,93,4289_19296,Blackrock,103731994,0,4289_7778022_100841,4289_155 -4289_75979,94,4289_19297,Blackrock,103841994,0,4289_7778022_100841,4289_155 -4289_75979,95,4289_19298,Blackrock,103951994,0,4289_7778022_100841,4289_155 -4289_75962,95,4289_1930,Brides Glen,103952033,1,4289_7778022_104071,4289_25 -4289_75979,96,4289_19304,Blackrock,104064794,0,4289_7778022_100701,4289_155 -4289_75979,92,4289_19306,Blackrock,103622026,0,4289_7778022_100820,4289_155 -4289_75979,93,4289_19307,Blackrock,103732026,0,4289_7778022_100820,4289_155 -4289_75979,94,4289_19308,Blackrock,103842026,0,4289_7778022_100820,4289_155 -4289_75979,95,4289_19309,Blackrock,103952026,0,4289_7778022_100820,4289_155 -4289_75979,96,4289_19315,Blackrock,104064824,0,4289_7778022_100721,4289_156 -4289_75979,92,4289_19321,Blackrock,103622050,0,4289_7778022_100892,4289_155 -4289_75979,93,4289_19322,Blackrock,103732050,0,4289_7778022_100892,4289_155 -4289_75979,94,4289_19323,Blackrock,103842050,0,4289_7778022_100892,4289_155 -4289_75979,95,4289_19324,Blackrock,103952050,0,4289_7778022_100892,4289_155 -4289_75979,96,4289_19330,Blackrock,104064846,0,4289_7778022_100750,4289_156 -4289_75979,92,4289_19336,Blackrock,103622084,0,4289_7778022_100860,4289_155 -4289_75979,93,4289_19337,Blackrock,103732084,0,4289_7778022_100860,4289_155 -4289_75979,94,4289_19338,Blackrock,103842084,0,4289_7778022_100860,4289_155 -4289_75979,95,4289_19339,Blackrock,103952084,0,4289_7778022_100860,4289_155 -4289_75979,96,4289_19345,Blackrock,104064880,0,4289_7778022_100780,4289_156 -4289_75979,92,4289_19351,Blackrock,103622122,0,4289_7778022_100881,4289_155 -4289_75979,93,4289_19352,Blackrock,103732122,0,4289_7778022_100881,4289_155 -4289_75979,94,4289_19353,Blackrock,103842122,0,4289_7778022_100881,4289_155 -4289_75979,95,4289_19354,Blackrock,103952122,0,4289_7778022_100881,4289_155 -4289_75962,96,4289_1936,Brides Glen,104064851,1,4289_7778022_104042,4289_27 -4289_75979,96,4289_19360,Blackrock,104064900,0,4289_7778022_100741,4289_156 -4289_75979,92,4289_19362,Blackrock,103622156,0,4289_7778022_100940,4289_155 -4289_75979,93,4289_19363,Blackrock,103732156,0,4289_7778022_100940,4289_155 -4289_75979,94,4289_19364,Blackrock,103842156,0,4289_7778022_100940,4289_155 -4289_75979,95,4289_19365,Blackrock,103952156,0,4289_7778022_100940,4289_155 -4289_75979,96,4289_19371,Blackrock,104064934,0,4289_7778022_100670,4289_156 -4289_75979,92,4289_19377,Blackrock,103622192,0,4289_7778022_100900,4289_155 -4289_75979,93,4289_19378,Blackrock,103732192,0,4289_7778022_100900,4289_155 -4289_75979,94,4289_19379,Blackrock,103842192,0,4289_7778022_100900,4289_155 -4289_75979,95,4289_19380,Blackrock,103952192,0,4289_7778022_100900,4289_155 -4289_75979,96,4289_19386,Blackrock,104064954,0,4289_7778022_100691,4289_156 -4289_75979,92,4289_19392,Blackrock,103622224,0,4289_7778022_100870,4289_155 -4289_75979,93,4289_19393,Blackrock,103732224,0,4289_7778022_100870,4289_155 -4289_75979,94,4289_19394,Blackrock,103842224,0,4289_7778022_100870,4289_155 -4289_75979,95,4289_19395,Blackrock,103952224,0,4289_7778022_100870,4289_155 -4289_75979,96,4289_19401,Blackrock,104064986,0,4289_7778022_100760,4289_156 -4289_75979,92,4289_19407,Blackrock,103622250,0,4289_7778022_100810,4289_155 -4289_75979,93,4289_19408,Blackrock,103732250,0,4289_7778022_100810,4289_155 -4289_75979,94,4289_19409,Blackrock,103842250,0,4289_7778022_100810,4289_155 -4289_75979,95,4289_19410,Blackrock,103952250,0,4289_7778022_100810,4289_155 -4289_75979,96,4289_19416,Blackrock,104065008,0,4289_7778022_100711,4289_156 -4289_75979,92,4289_19418,Blackrock,103622288,0,4289_7778022_100911,4289_155 -4289_75979,93,4289_19419,Blackrock,103732288,0,4289_7778022_100911,4289_155 -4289_75962,92,4289_1942,Brides Glen,103622155,1,4289_7778022_104030,4289_25 -4289_75979,94,4289_19420,Blackrock,103842288,0,4289_7778022_100911,4289_155 -4289_75979,95,4289_19421,Blackrock,103952288,0,4289_7778022_100911,4289_155 -4289_75979,96,4289_19427,Blackrock,104065036,0,4289_7778022_100770,4289_156 -4289_75962,93,4289_1943,Brides Glen,103732155,1,4289_7778022_104030,4289_25 -4289_75979,92,4289_19433,Blackrock,103622322,0,4289_7778022_100920,4289_155 -4289_75979,93,4289_19434,Blackrock,103732322,0,4289_7778022_100920,4289_155 -4289_75979,94,4289_19435,Blackrock,103842322,0,4289_7778022_100920,4289_155 -4289_75979,95,4289_19436,Blackrock,103952322,0,4289_7778022_100920,4289_155 -4289_75962,94,4289_1944,Brides Glen,103842155,1,4289_7778022_104030,4289_25 -4289_75979,96,4289_19442,Blackrock,104065060,0,4289_7778022_100731,4289_156 -4289_75979,92,4289_19448,Blackrock,103622356,0,4289_7778022_100930,4289_155 -4289_75979,93,4289_19449,Blackrock,103732356,0,4289_7778022_100930,4289_155 -4289_75962,95,4289_1945,Brides Glen,103952155,1,4289_7778022_104030,4289_25 -4289_75979,94,4289_19450,Blackrock,103842356,0,4289_7778022_100930,4289_155 -4289_75979,95,4289_19451,Blackrock,103952356,0,4289_7778022_100930,4289_155 -4289_75979,96,4289_19457,Blackrock,104065094,0,4289_7778022_100681,4289_156 -4289_75979,92,4289_19463,Blackrock,103622384,0,4289_7778022_100831,4289_155 -4289_75979,93,4289_19464,Blackrock,103732384,0,4289_7778022_100831,4289_155 -4289_75979,94,4289_19465,Blackrock,103842384,0,4289_7778022_100831,4289_155 -4289_75979,95,4289_19466,Blackrock,103952384,0,4289_7778022_100831,4289_155 -4289_75979,96,4289_19472,Blackrock,104065114,0,4289_7778022_100701,4289_156 -4289_75979,92,4289_19474,Blackrock,103622410,0,4289_7778022_100841,4289_155 -4289_75979,93,4289_19475,Blackrock,103732410,0,4289_7778022_100841,4289_155 -4289_75979,94,4289_19476,Blackrock,103842410,0,4289_7778022_100841,4289_155 -4289_75979,95,4289_19477,Blackrock,103952410,0,4289_7778022_100841,4289_155 -4289_75979,96,4289_19483,Blackrock,104065138,0,4289_7778022_100721,4289_156 -4289_75979,92,4289_19489,Blackrock,103622444,0,4289_7778022_100820,4289_155 -4289_75979,93,4289_19490,Blackrock,103732444,0,4289_7778022_100820,4289_155 -4289_75979,94,4289_19491,Blackrock,103842444,0,4289_7778022_100820,4289_155 -4289_75979,95,4289_19492,Blackrock,103952444,0,4289_7778022_100820,4289_155 -4289_75979,96,4289_19498,Blackrock,104065166,0,4289_7778022_100750,4289_156 -4289_75979,92,4289_19504,Blackrock,103622474,0,4289_7778022_100892,4289_155 -4289_75979,93,4289_19505,Blackrock,103732474,0,4289_7778022_100892,4289_155 -4289_75979,94,4289_19506,Blackrock,103842474,0,4289_7778022_100892,4289_155 -4289_75979,95,4289_19507,Blackrock,103952474,0,4289_7778022_100892,4289_155 -4289_75962,96,4289_1951,Brides Glen,104064959,1,4289_7778022_104201,4289_27 -4289_75979,96,4289_19513,Blackrock,104065196,0,4289_7778022_100780,4289_156 -4289_75979,92,4289_19519,Blackrock,103622500,0,4289_7778022_100860,4289_155 -4289_75979,93,4289_19520,Blackrock,103732500,0,4289_7778022_100860,4289_155 -4289_75979,94,4289_19521,Blackrock,103842500,0,4289_7778022_100860,4289_155 -4289_75979,95,4289_19522,Blackrock,103952500,0,4289_7778022_100860,4289_155 -4289_75979,96,4289_19528,Blackrock,104065220,0,4289_7778022_100741,4289_156 -4289_75979,92,4289_19530,Blackrock,103622530,0,4289_7778022_100881,4289_155 -4289_75979,93,4289_19531,Blackrock,103732530,0,4289_7778022_100881,4289_155 -4289_75979,94,4289_19532,Blackrock,103842530,0,4289_7778022_100881,4289_155 -4289_75979,95,4289_19533,Blackrock,103952530,0,4289_7778022_100881,4289_155 -4289_75979,96,4289_19539,Blackrock,104065244,0,4289_7778022_100670,4289_156 -4289_75979,92,4289_19545,Blackrock,103622560,0,4289_7778022_100852,4289_155 -4289_75979,93,4289_19546,Blackrock,103732560,0,4289_7778022_100852,4289_155 -4289_75979,94,4289_19547,Blackrock,103842560,0,4289_7778022_100852,4289_155 -4289_75979,95,4289_19548,Blackrock,103952560,0,4289_7778022_100852,4289_155 -4289_75979,96,4289_19554,Blackrock,104065278,0,4289_7778022_100691,4289_156 -4289_75979,92,4289_19560,Blackrock,103622590,0,4289_7778022_100940,4289_155 -4289_75979,93,4289_19561,Blackrock,103732590,0,4289_7778022_100940,4289_155 -4289_75979,94,4289_19562,Blackrock,103842590,0,4289_7778022_100940,4289_155 -4289_75979,95,4289_19563,Blackrock,103952590,0,4289_7778022_100940,4289_155 -4289_75979,96,4289_19569,Blackrock,104065300,0,4289_7778022_100760,4289_156 -4289_75962,92,4289_1957,Brides Glen,103622319,1,4289_7778022_100172,4289_25 -4289_75979,92,4289_19575,Blackrock,103622614,0,4289_7778022_100900,4289_155 -4289_75979,93,4289_19576,Blackrock,103732614,0,4289_7778022_100900,4289_155 -4289_75979,94,4289_19577,Blackrock,103842614,0,4289_7778022_100900,4289_155 -4289_75979,95,4289_19578,Blackrock,103952614,0,4289_7778022_100900,4289_155 -4289_75962,93,4289_1958,Brides Glen,103732319,1,4289_7778022_100172,4289_25 -4289_75979,96,4289_19584,Blackrock,104065324,0,4289_7778022_100770,4289_156 -4289_75979,92,4289_19586,Blackrock,103622640,0,4289_7778022_100870,4289_155 -4289_75979,93,4289_19587,Blackrock,103732640,0,4289_7778022_100870,4289_155 -4289_75979,94,4289_19588,Blackrock,103842640,0,4289_7778022_100870,4289_155 -4289_75979,95,4289_19589,Blackrock,103952640,0,4289_7778022_100870,4289_155 -4289_75962,94,4289_1959,Brides Glen,103842319,1,4289_7778022_100172,4289_25 -4289_75979,96,4289_19595,Blackrock,104065350,0,4289_7778022_100712,4289_156 -4289_75962,95,4289_1960,Brides Glen,103952319,1,4289_7778022_100172,4289_25 -4289_75979,92,4289_19601,Blackrock,103622670,0,4289_7778022_100810,4289_155 -4289_75979,93,4289_19602,Blackrock,103732670,0,4289_7778022_100810,4289_155 -4289_75979,94,4289_19603,Blackrock,103842670,0,4289_7778022_100810,4289_155 -4289_75979,95,4289_19604,Blackrock,103952670,0,4289_7778022_100810,4289_155 -4289_75979,96,4289_19610,Blackrock,104065382,0,4289_7778022_100701,4289_155 -4289_75979,92,4289_19612,Blackrock,103622700,0,4289_7778022_100920,4289_155 -4289_75979,93,4289_19613,Blackrock,103732700,0,4289_7778022_100920,4289_155 -4289_75979,94,4289_19614,Blackrock,103842700,0,4289_7778022_100920,4289_155 -4289_75979,95,4289_19615,Blackrock,103952700,0,4289_7778022_100920,4289_155 -4289_75979,96,4289_19625,Blackrock,104065412,0,4289_7778022_100750,4289_155 -4289_75979,92,4289_19627,Blackrock,103622718,0,4289_7778022_100930,4289_155 -4289_75979,93,4289_19628,Blackrock,103732718,0,4289_7778022_100930,4289_155 -4289_75979,94,4289_19629,Blackrock,103842718,0,4289_7778022_100930,4289_155 -4289_75979,95,4289_19630,Blackrock,103952718,0,4289_7778022_100930,4289_155 -4289_75979,92,4289_19637,Blackrock,103622744,0,4289_7778022_100912,4289_155 -4289_75979,93,4289_19638,Blackrock,103732744,0,4289_7778022_100912,4289_155 -4289_75979,94,4289_19639,Blackrock,103842744,0,4289_7778022_100912,4289_155 -4289_75979,95,4289_19640,Blackrock,103952744,0,4289_7778022_100912,4289_155 -4289_75979,96,4289_19646,Blackrock,104065442,0,4289_7778022_100722,4289_156 -4289_75979,92,4289_19652,Blackrock,103622772,0,4289_7778022_100893,4289_155 -4289_75979,93,4289_19653,Blackrock,103732772,0,4289_7778022_100893,4289_155 -4289_75979,94,4289_19654,Blackrock,103842772,0,4289_7778022_100893,4289_155 -4289_75979,95,4289_19655,Blackrock,103952772,0,4289_7778022_100893,4289_155 -4289_75962,96,4289_1966,Brides Glen,104065065,1,4289_7778022_104032,4289_27 -4289_75979,96,4289_19661,Blackrock,104065474,0,4289_7778022_100682,4289_155 -4289_75979,92,4289_19663,Blackrock,103622800,0,4289_7778022_100832,4289_155 -4289_75979,93,4289_19664,Blackrock,103732800,0,4289_7778022_100832,4289_155 -4289_75979,94,4289_19665,Blackrock,103842800,0,4289_7778022_100832,4289_155 -4289_75979,95,4289_19666,Blackrock,103952800,0,4289_7778022_100832,4289_155 -4289_75979,96,4289_19676,Blackrock,104065502,0,4289_7778022_100732,4289_155 -4289_75979,92,4289_19678,Blackrock,103622820,0,4289_7778022_100842,4289_155 -4289_75979,93,4289_19679,Blackrock,103732820,0,4289_7778022_100842,4289_155 -4289_75979,94,4289_19680,Blackrock,103842820,0,4289_7778022_100842,4289_155 -4289_75979,95,4289_19681,Blackrock,103952820,0,4289_7778022_100842,4289_155 -4289_75979,92,4289_19688,Blackrock,103622846,0,4289_7778022_100940,4289_155 -4289_75979,93,4289_19689,Blackrock,103732846,0,4289_7778022_100940,4289_155 -4289_75979,94,4289_19690,Blackrock,103842846,0,4289_7778022_100940,4289_155 -4289_75979,95,4289_19691,Blackrock,103952846,0,4289_7778022_100940,4289_155 -4289_75979,96,4289_19697,Blackrock,104065532,0,4289_7778022_100742,4289_156 -4289_75960,96,4289_197,Sutton Station,104064646,0,4289_7778022_103108,4289_2 -4289_75979,92,4289_19703,Blackrock,103622874,0,4289_7778022_100900,4289_155 -4289_75979,93,4289_19704,Blackrock,103732874,0,4289_7778022_100900,4289_155 -4289_75979,94,4289_19705,Blackrock,103842874,0,4289_7778022_100900,4289_155 -4289_75979,95,4289_19706,Blackrock,103952874,0,4289_7778022_100900,4289_155 -4289_75979,96,4289_19712,Blackrock,104065566,0,4289_7778022_100712,4289_155 -4289_75979,92,4289_19714,Blackrock,103622896,0,4289_7778022_100882,4289_155 -4289_75979,93,4289_19715,Blackrock,103732896,0,4289_7778022_100882,4289_155 -4289_75979,94,4289_19716,Blackrock,103842896,0,4289_7778022_100882,4289_155 -4289_75979,95,4289_19717,Blackrock,103952896,0,4289_7778022_100882,4289_155 -4289_75962,92,4289_1972,Brides Glen,103622441,1,4289_7778022_104030,4289_25 -4289_75979,96,4289_19727,Blackrock,104065590,0,4289_7778022_100692,4289_155 -4289_75979,92,4289_19729,Blackrock,103622918,0,4289_7778022_100810,4289_155 -4289_75962,93,4289_1973,Brides Glen,103732441,1,4289_7778022_104030,4289_25 -4289_75979,93,4289_19730,Blackrock,103732918,0,4289_7778022_100810,4289_155 -4289_75979,94,4289_19731,Blackrock,103842918,0,4289_7778022_100810,4289_155 -4289_75979,95,4289_19732,Blackrock,103952918,0,4289_7778022_100810,4289_155 -4289_75979,92,4289_19739,Blackrock,103622942,0,4289_7778022_100920,4289_155 -4289_75962,94,4289_1974,Brides Glen,103842441,1,4289_7778022_104030,4289_25 -4289_75979,93,4289_19740,Blackrock,103732942,0,4289_7778022_100920,4289_155 -4289_75979,94,4289_19741,Blackrock,103842942,0,4289_7778022_100920,4289_155 -4289_75979,95,4289_19742,Blackrock,103952942,0,4289_7778022_100920,4289_155 -4289_75979,96,4289_19748,Blackrock,104065620,0,4289_7778022_100722,4289_156 -4289_75962,95,4289_1975,Brides Glen,103952441,1,4289_7778022_104030,4289_25 -4289_75979,92,4289_19754,Blackrock,103622970,0,4289_7778022_100912,4289_155 -4289_75979,93,4289_19755,Blackrock,103732970,0,4289_7778022_100912,4289_155 -4289_75979,94,4289_19756,Blackrock,103842970,0,4289_7778022_100912,4289_155 -4289_75979,95,4289_19757,Blackrock,103952970,0,4289_7778022_100912,4289_155 -4289_75979,96,4289_19763,Blackrock,104065652,0,4289_7778022_100682,4289_155 -4289_75979,92,4289_19765,Blackrock,103622992,0,4289_7778022_100893,4289_155 -4289_75979,93,4289_19766,Blackrock,103732992,0,4289_7778022_100893,4289_155 -4289_75979,94,4289_19767,Blackrock,103842992,0,4289_7778022_100893,4289_155 -4289_75979,95,4289_19768,Blackrock,103952992,0,4289_7778022_100893,4289_155 -4289_75979,96,4289_19778,Blackrock,104065680,0,4289_7778022_100732,4289_155 -4289_75979,92,4289_19780,Blackrock,103623016,0,4289_7778022_100832,4289_155 -4289_75979,93,4289_19781,Blackrock,103733016,0,4289_7778022_100832,4289_155 -4289_75979,94,4289_19782,Blackrock,103843016,0,4289_7778022_100832,4289_155 -4289_75979,95,4289_19783,Blackrock,103953016,0,4289_7778022_100832,4289_155 -4289_75979,92,4289_19790,Blackrock,103623036,0,4289_7778022_100842,4289_155 -4289_75979,93,4289_19791,Blackrock,103733036,0,4289_7778022_100842,4289_155 -4289_75979,94,4289_19792,Blackrock,103843036,0,4289_7778022_100842,4289_155 -4289_75979,95,4289_19793,Blackrock,103953036,0,4289_7778022_100842,4289_155 -4289_75979,96,4289_19799,Blackrock,104065704,0,4289_7778022_100742,4289_155 -4289_75979,2,4289_19804,Blackrock,103613064,0,4289_7778022_100882,4289_155 -4289_75979,92,4289_19805,Blackrock,103623064,0,4289_7778022_100882,4289_155 -4289_75979,93,4289_19806,Blackrock,103733064,0,4289_7778022_100882,4289_155 -4289_75979,94,4289_19807,Blackrock,103843064,0,4289_7778022_100882,4289_155 -4289_75979,95,4289_19808,Blackrock,103953064,0,4289_7778022_100882,4289_155 -4289_75962,96,4289_1981,Brides Glen,104065169,1,4289_7778022_104024,4289_27 -4289_75979,96,4289_19814,Blackrock,104065732,0,4289_7778022_100692,4289_156 -4289_75979,92,4289_19820,The Square,103621017,1,4289_7778022_100810,4289_158 -4289_75979,93,4289_19821,The Square,103731017,1,4289_7778022_100810,4289_158 -4289_75979,94,4289_19822,The Square,103841017,1,4289_7778022_100810,4289_158 -4289_75979,95,4289_19823,The Square,103951017,1,4289_7778022_100810,4289_158 -4289_75979,92,4289_19830,The Square,103621043,1,4289_7778022_100831,4289_158 -4289_75979,93,4289_19831,The Square,103731043,1,4289_7778022_100831,4289_158 -4289_75979,94,4289_19832,The Square,103841043,1,4289_7778022_100831,4289_158 -4289_75979,95,4289_19833,The Square,103951043,1,4289_7778022_100831,4289_158 -4289_75979,96,4289_19839,The Square,104064029,1,4289_7778022_100670,4289_159 -4289_75979,92,4289_19841,The Square,103621061,1,4289_7778022_100841,4289_158 -4289_75979,93,4289_19842,The Square,103731061,1,4289_7778022_100841,4289_158 -4289_75979,94,4289_19843,The Square,103841061,1,4289_7778022_100841,4289_158 -4289_75979,95,4289_19844,The Square,103951061,1,4289_7778022_100841,4289_158 -4289_75979,96,4289_19850,The Square,104064049,1,4289_7778022_100691,4289_158 -4289_75979,92,4289_19852,The Square,103621091,1,4289_7778022_100820,4289_158 -4289_75979,93,4289_19853,The Square,103731091,1,4289_7778022_100820,4289_158 -4289_75979,94,4289_19854,The Square,103841091,1,4289_7778022_100820,4289_158 -4289_75979,95,4289_19855,The Square,103951091,1,4289_7778022_100820,4289_158 -4289_75979,92,4289_19862,The Square,103621101,1,4289_7778022_100860,4289_158 -4289_75979,93,4289_19863,The Square,103731101,1,4289_7778022_100860,4289_158 -4289_75979,94,4289_19864,The Square,103841101,1,4289_7778022_100860,4289_158 -4289_75979,95,4289_19865,The Square,103951101,1,4289_7778022_100860,4289_158 -4289_75962,92,4289_1987,Brides Glen,103622557,1,4289_7778022_104072,4289_25 -4289_75979,96,4289_19871,The Square,104064073,1,4289_7778022_100711,4289_158 -4289_75979,92,4289_19873,The Square,103621125,1,4289_7778022_100881,4289_158 -4289_75979,93,4289_19874,The Square,103731125,1,4289_7778022_100881,4289_158 -4289_75979,94,4289_19875,The Square,103841125,1,4289_7778022_100881,4289_158 -4289_75979,95,4289_19876,The Square,103951125,1,4289_7778022_100881,4289_158 -4289_75962,93,4289_1988,Brides Glen,103732557,1,4289_7778022_104072,4289_25 -4289_75979,96,4289_19882,The Square,104064099,1,4289_7778022_100681,4289_158 -4289_75979,92,4289_19884,The Square,103621169,1,4289_7778022_100900,4289_158 -4289_75979,93,4289_19885,The Square,103731169,1,4289_7778022_100900,4289_158 -4289_75979,94,4289_19886,The Square,103841169,1,4289_7778022_100900,4289_158 -4289_75979,95,4289_19887,The Square,103951169,1,4289_7778022_100900,4289_158 -4289_75962,94,4289_1989,Brides Glen,103842557,1,4289_7778022_104072,4289_25 -4289_75979,92,4289_19894,The Square,103621185,1,4289_7778022_100851,4289_158 -4289_75979,93,4289_19895,The Square,103731185,1,4289_7778022_100851,4289_158 -4289_75979,94,4289_19896,The Square,103841185,1,4289_7778022_100851,4289_158 -4289_75979,95,4289_19897,The Square,103951185,1,4289_7778022_100851,4289_158 -4289_75962,95,4289_1990,Brides Glen,103952557,1,4289_7778022_104072,4289_25 -4289_75979,96,4289_19903,The Square,104064123,1,4289_7778022_100701,4289_158 -4289_75979,92,4289_19905,The Square,103621217,1,4289_7778022_100870,4289_158 -4289_75979,93,4289_19906,The Square,103731217,1,4289_7778022_100870,4289_158 -4289_75979,94,4289_19907,The Square,103841217,1,4289_7778022_100870,4289_158 -4289_75979,95,4289_19908,The Square,103951217,1,4289_7778022_100870,4289_158 -4289_75979,96,4289_19918,The Square,104064155,1,4289_7778022_100721,4289_158 -4289_75979,92,4289_19920,The Square,103621243,1,4289_7778022_100810,4289_158 -4289_75979,93,4289_19921,The Square,103731243,1,4289_7778022_100810,4289_158 -4289_75979,94,4289_19922,The Square,103841243,1,4289_7778022_100810,4289_158 -4289_75979,95,4289_19923,The Square,103951243,1,4289_7778022_100810,4289_158 -4289_75979,92,4289_19930,The Square,103621293,1,4289_7778022_100891,4289_158 -4289_75979,93,4289_19931,The Square,103731293,1,4289_7778022_100891,4289_158 -4289_75979,94,4289_19932,The Square,103841293,1,4289_7778022_100891,4289_158 -4289_75979,95,4289_19933,The Square,103951293,1,4289_7778022_100891,4289_158 -4289_75979,96,4289_19939,The Square,104064183,1,4289_7778022_100670,4289_159 -4289_75979,92,4289_19945,The Square,103621321,1,4289_7778022_100911,4289_158 -4289_75979,93,4289_19946,The Square,103731321,1,4289_7778022_100911,4289_158 -4289_75979,94,4289_19947,The Square,103841321,1,4289_7778022_100911,4289_158 -4289_75979,95,4289_19948,The Square,103951321,1,4289_7778022_100911,4289_158 -4289_75979,96,4289_19954,The Square,104064211,1,4289_7778022_100691,4289_158 -4289_75979,92,4289_19956,The Square,103621359,1,4289_7778022_100920,4289_158 -4289_75979,93,4289_19957,The Square,103731359,1,4289_7778022_100920,4289_158 -4289_75979,94,4289_19958,The Square,103841359,1,4289_7778022_100920,4289_158 -4289_75979,95,4289_19959,The Square,103951359,1,4289_7778022_100920,4289_158 -4289_75962,96,4289_1996,Brides Glen,104065291,1,4289_7778022_104043,4289_25 -4289_75979,96,4289_19969,The Square,104064247,1,4289_7778022_100711,4289_158 -4289_75979,92,4289_19971,The Square,103621387,1,4289_7778022_100930,4289_158 -4289_75979,93,4289_19972,The Square,103731387,1,4289_7778022_100930,4289_158 -4289_75979,94,4289_19973,The Square,103841387,1,4289_7778022_100930,4289_158 -4289_75979,95,4289_19974,The Square,103951387,1,4289_7778022_100930,4289_158 -4289_75979,92,4289_19981,The Square,103621417,1,4289_7778022_100831,4289_158 -4289_75979,93,4289_19982,The Square,103731417,1,4289_7778022_100831,4289_158 -4289_75979,94,4289_19983,The Square,103841417,1,4289_7778022_100831,4289_158 -4289_75979,95,4289_19984,The Square,103951417,1,4289_7778022_100831,4289_158 -4289_75979,96,4289_19990,The Square,104064273,1,4289_7778022_100731,4289_159 -4289_75979,92,4289_19996,The Square,103621441,1,4289_7778022_100841,4289_158 -4289_75979,93,4289_19997,The Square,103731441,1,4289_7778022_100841,4289_158 -4289_75979,94,4289_19998,The Square,103841441,1,4289_7778022_100841,4289_158 -4289_75979,95,4289_19999,The Square,103951441,1,4289_7778022_100841,4289_158 -4289_75979,96,4289_20005,The Square,104064301,1,4289_7778022_100681,4289_159 -4289_75979,92,4289_20007,The Square,103621473,1,4289_7778022_100820,4289_158 -4289_75979,93,4289_20008,The Square,103731473,1,4289_7778022_100820,4289_158 -4289_75979,94,4289_20009,The Square,103841473,1,4289_7778022_100820,4289_158 -4289_75979,95,4289_20010,The Square,103951473,1,4289_7778022_100820,4289_158 -4289_75979,96,4289_20016,The Square,104064329,1,4289_7778022_100701,4289_159 -4289_75962,92,4289_2002,Brides Glen,103622683,1,4289_7778022_104030,4289_25 -4289_75979,92,4289_20022,The Square,103621499,1,4289_7778022_100860,4289_158 -4289_75979,93,4289_20023,The Square,103731499,1,4289_7778022_100860,4289_158 -4289_75979,94,4289_20024,The Square,103841499,1,4289_7778022_100860,4289_158 -4289_75979,95,4289_20025,The Square,103951499,1,4289_7778022_100860,4289_158 -4289_75962,93,4289_2003,Brides Glen,103732683,1,4289_7778022_104030,4289_25 -4289_75979,96,4289_20031,The Square,104064353,1,4289_7778022_100721,4289_159 -4289_75979,92,4289_20033,The Square,103621527,1,4289_7778022_100881,4289_158 -4289_75979,93,4289_20034,The Square,103731527,1,4289_7778022_100881,4289_158 -4289_75979,94,4289_20035,The Square,103841527,1,4289_7778022_100881,4289_158 -4289_75979,95,4289_20036,The Square,103951527,1,4289_7778022_100881,4289_158 -4289_75962,94,4289_2004,Brides Glen,103842683,1,4289_7778022_104030,4289_25 -4289_75979,96,4289_20042,The Square,104064379,1,4289_7778022_100750,4289_159 -4289_75979,92,4289_20048,The Square,103621555,1,4289_7778022_100940,4289_158 -4289_75979,93,4289_20049,The Square,103731555,1,4289_7778022_100940,4289_158 -4289_75962,95,4289_2005,Brides Glen,103952683,1,4289_7778022_104030,4289_25 -4289_75979,94,4289_20050,The Square,103841555,1,4289_7778022_100940,4289_158 -4289_75979,95,4289_20051,The Square,103951555,1,4289_7778022_100940,4289_158 -4289_75979,96,4289_20057,The Square,104064405,1,4289_7778022_100741,4289_159 -4289_75979,92,4289_20063,The Square,103621587,1,4289_7778022_100900,4289_158 -4289_75979,93,4289_20064,The Square,103731587,1,4289_7778022_100900,4289_158 -4289_75979,94,4289_20065,The Square,103841587,1,4289_7778022_100900,4289_158 -4289_75979,95,4289_20066,The Square,103951587,1,4289_7778022_100900,4289_158 -4289_75979,96,4289_20072,The Square,104064437,1,4289_7778022_100670,4289_159 -4289_75979,92,4289_20078,The Square,103621611,1,4289_7778022_100870,4289_158 -4289_75979,93,4289_20079,The Square,103731611,1,4289_7778022_100870,4289_158 -4289_75979,94,4289_20080,The Square,103841611,1,4289_7778022_100870,4289_158 -4289_75979,95,4289_20081,The Square,103951611,1,4289_7778022_100870,4289_158 -4289_75979,96,4289_20087,The Square,104064459,1,4289_7778022_100691,4289_159 -4289_75979,92,4289_20089,The Square,103621641,1,4289_7778022_100810,4289_158 -4289_75979,93,4289_20090,The Square,103731641,1,4289_7778022_100810,4289_158 -4289_75979,94,4289_20091,The Square,103841641,1,4289_7778022_100810,4289_158 -4289_75979,95,4289_20092,The Square,103951641,1,4289_7778022_100810,4289_158 -4289_75979,96,4289_20098,The Square,104064487,1,4289_7778022_100760,4289_159 -4289_75979,92,4289_20104,The Square,103621665,1,4289_7778022_100911,4289_158 -4289_75979,93,4289_20105,The Square,103731665,1,4289_7778022_100911,4289_158 -4289_75979,94,4289_20106,The Square,103841665,1,4289_7778022_100911,4289_158 -4289_75979,95,4289_20107,The Square,103951665,1,4289_7778022_100911,4289_158 -4289_75962,96,4289_2011,Brides Glen,104065385,1,4289_7778022_104024,4289_25 -4289_75979,96,4289_20113,The Square,104064511,1,4289_7778022_100711,4289_159 -4289_75979,92,4289_20119,The Square,103621699,1,4289_7778022_100920,4289_158 -4289_75979,93,4289_20120,The Square,103731699,1,4289_7778022_100920,4289_158 -4289_75979,94,4289_20121,The Square,103841699,1,4289_7778022_100920,4289_158 -4289_75979,95,4289_20122,The Square,103951699,1,4289_7778022_100920,4289_158 -4289_75979,96,4289_20128,The Square,104064543,1,4289_7778022_100770,4289_159 -4289_75979,92,4289_20134,The Square,103621725,1,4289_7778022_100930,4289_158 -4289_75979,93,4289_20135,The Square,103731725,1,4289_7778022_100930,4289_158 -4289_75979,94,4289_20136,The Square,103841725,1,4289_7778022_100930,4289_158 -4289_75979,95,4289_20137,The Square,103951725,1,4289_7778022_100930,4289_158 -4289_75979,96,4289_20143,The Square,104064567,1,4289_7778022_100731,4289_159 -4289_75979,92,4289_20145,The Square,103621753,1,4289_7778022_100831,4289_158 -4289_75979,93,4289_20146,The Square,103731753,1,4289_7778022_100831,4289_158 -4289_75979,94,4289_20147,The Square,103841753,1,4289_7778022_100831,4289_158 -4289_75979,95,4289_20148,The Square,103951753,1,4289_7778022_100831,4289_158 -4289_75979,96,4289_20154,The Square,104064595,1,4289_7778022_100681,4289_159 -4289_75979,92,4289_20160,The Square,103621777,1,4289_7778022_100841,4289_158 -4289_75979,93,4289_20161,The Square,103731777,1,4289_7778022_100841,4289_158 -4289_75979,94,4289_20162,The Square,103841777,1,4289_7778022_100841,4289_158 -4289_75979,95,4289_20163,The Square,103951777,1,4289_7778022_100841,4289_158 -4289_75979,96,4289_20169,The Square,104064617,1,4289_7778022_100701,4289_159 -4289_75962,92,4289_2017,Brides Glen,103622781,1,4289_7778022_100173,4289_25 -4289_75979,92,4289_20175,The Square,103621811,1,4289_7778022_100820,4289_158 -4289_75979,93,4289_20176,The Square,103731811,1,4289_7778022_100820,4289_158 -4289_75979,94,4289_20177,The Square,103841811,1,4289_7778022_100820,4289_158 -4289_75979,95,4289_20178,The Square,103951811,1,4289_7778022_100820,4289_158 -4289_75962,93,4289_2018,Brides Glen,103732781,1,4289_7778022_100173,4289_25 -4289_75979,96,4289_20184,The Square,104064651,1,4289_7778022_100721,4289_159 -4289_75962,94,4289_2019,Brides Glen,103842781,1,4289_7778022_100173,4289_25 -4289_75979,92,4289_20190,The Square,103621837,1,4289_7778022_100860,4289_158 -4289_75979,93,4289_20191,The Square,103731837,1,4289_7778022_100860,4289_158 -4289_75979,94,4289_20192,The Square,103841837,1,4289_7778022_100860,4289_158 -4289_75979,95,4289_20193,The Square,103951837,1,4289_7778022_100860,4289_158 -4289_75979,96,4289_20199,The Square,104064673,1,4289_7778022_100750,4289_159 -4289_75962,95,4289_2020,Brides Glen,103952781,1,4289_7778022_100173,4289_25 -4289_75979,92,4289_20201,The Square,103621867,1,4289_7778022_100881,4289_158 -4289_75979,93,4289_20202,The Square,103731867,1,4289_7778022_100881,4289_158 -4289_75979,94,4289_20203,The Square,103841867,1,4289_7778022_100881,4289_158 -4289_75979,95,4289_20204,The Square,103951867,1,4289_7778022_100881,4289_158 -4289_75979,96,4289_20210,The Square,104064701,1,4289_7778022_100780,4289_159 -4289_75979,92,4289_20216,The Square,103621899,1,4289_7778022_100940,4289_158 -4289_75979,93,4289_20217,The Square,103731899,1,4289_7778022_100940,4289_158 -4289_75979,94,4289_20218,The Square,103841899,1,4289_7778022_100940,4289_158 -4289_75979,95,4289_20219,The Square,103951899,1,4289_7778022_100940,4289_158 -4289_75979,96,4289_20225,The Square,104064725,1,4289_7778022_100741,4289_159 -4289_75979,92,4289_20231,The Square,103621931,1,4289_7778022_100900,4289_158 -4289_75979,93,4289_20232,The Square,103731931,1,4289_7778022_100900,4289_158 -4289_75979,94,4289_20233,The Square,103841931,1,4289_7778022_100900,4289_158 -4289_75979,95,4289_20234,The Square,103951931,1,4289_7778022_100900,4289_158 -4289_75979,96,4289_20240,The Square,104064757,1,4289_7778022_100670,4289_159 -4289_75979,92,4289_20246,The Square,103621955,1,4289_7778022_100870,4289_158 -4289_75979,93,4289_20247,The Square,103731955,1,4289_7778022_100870,4289_158 -4289_75979,94,4289_20248,The Square,103841955,1,4289_7778022_100870,4289_158 -4289_75979,95,4289_20249,The Square,103951955,1,4289_7778022_100870,4289_158 -4289_75979,96,4289_20255,The Square,104064779,1,4289_7778022_100691,4289_159 -4289_75979,92,4289_20257,The Square,103621985,1,4289_7778022_100810,4289_158 -4289_75979,93,4289_20258,The Square,103731985,1,4289_7778022_100810,4289_158 -4289_75979,94,4289_20259,The Square,103841985,1,4289_7778022_100810,4289_158 -4289_75962,96,4289_2026,Brides Glen,104065475,1,4289_7778022_104043,4289_25 -4289_75979,95,4289_20260,The Square,103951985,1,4289_7778022_100810,4289_158 -4289_75979,96,4289_20266,The Square,104064809,1,4289_7778022_100760,4289_159 -4289_75979,92,4289_20272,The Square,103622009,1,4289_7778022_100911,4289_158 -4289_75979,93,4289_20273,The Square,103732009,1,4289_7778022_100911,4289_158 -4289_75979,94,4289_20274,The Square,103842009,1,4289_7778022_100911,4289_158 -4289_75979,95,4289_20275,The Square,103952009,1,4289_7778022_100911,4289_158 -4289_75979,96,4289_20281,The Square,104064831,1,4289_7778022_100711,4289_159 -4289_75979,92,4289_20287,The Square,103622043,1,4289_7778022_100920,4289_158 -4289_75979,93,4289_20288,The Square,103732043,1,4289_7778022_100920,4289_158 -4289_75979,94,4289_20289,The Square,103842043,1,4289_7778022_100920,4289_158 -4289_75979,95,4289_20290,The Square,103952043,1,4289_7778022_100920,4289_158 -4289_75979,96,4289_20296,The Square,104064861,1,4289_7778022_100770,4289_159 -4289_75960,92,4289_203,Sutton Station,103621896,0,4289_7778022_103502,4289_1 -4289_75979,92,4289_20302,The Square,103622071,1,4289_7778022_100930,4289_158 -4289_75979,93,4289_20303,The Square,103732071,1,4289_7778022_100930,4289_158 -4289_75979,94,4289_20304,The Square,103842071,1,4289_7778022_100930,4289_158 -4289_75979,95,4289_20305,The Square,103952071,1,4289_7778022_100930,4289_158 -4289_75979,96,4289_20311,The Square,104064887,1,4289_7778022_100731,4289_159 -4289_75979,92,4289_20313,The Square,103622105,1,4289_7778022_100831,4289_158 -4289_75979,93,4289_20314,The Square,103732105,1,4289_7778022_100831,4289_158 -4289_75979,94,4289_20315,The Square,103842105,1,4289_7778022_100831,4289_158 -4289_75979,95,4289_20316,The Square,103952105,1,4289_7778022_100831,4289_158 -4289_75962,92,4289_2032,Brides Glen,103622883,1,4289_7778022_100192,4289_25 -4289_75979,96,4289_20322,The Square,104064915,1,4289_7778022_100681,4289_159 -4289_75979,92,4289_20328,The Square,103622131,1,4289_7778022_100841,4289_158 -4289_75979,93,4289_20329,The Square,103732131,1,4289_7778022_100841,4289_158 -4289_75962,93,4289_2033,Brides Glen,103732883,1,4289_7778022_100192,4289_25 -4289_75979,94,4289_20330,The Square,103842131,1,4289_7778022_100841,4289_158 -4289_75979,95,4289_20331,The Square,103952131,1,4289_7778022_100841,4289_158 -4289_75979,96,4289_20337,The Square,104064937,1,4289_7778022_100701,4289_159 -4289_75962,94,4289_2034,Brides Glen,103842883,1,4289_7778022_100192,4289_25 -4289_75979,92,4289_20343,The Square,103622167,1,4289_7778022_100820,4289_158 -4289_75979,93,4289_20344,The Square,103732167,1,4289_7778022_100820,4289_158 -4289_75979,94,4289_20345,The Square,103842167,1,4289_7778022_100820,4289_158 -4289_75979,95,4289_20346,The Square,103952167,1,4289_7778022_100820,4289_158 -4289_75962,95,4289_2035,Brides Glen,103952883,1,4289_7778022_100192,4289_25 -4289_75979,96,4289_20352,The Square,104064969,1,4289_7778022_100721,4289_159 -4289_75979,92,4289_20358,The Square,103622209,1,4289_7778022_100892,4289_158 -4289_75979,93,4289_20359,The Square,103732209,1,4289_7778022_100892,4289_158 -4289_75979,94,4289_20360,The Square,103842209,1,4289_7778022_100892,4289_158 -4289_75979,95,4289_20361,The Square,103952209,1,4289_7778022_100892,4289_158 -4289_75979,96,4289_20367,The Square,104064993,1,4289_7778022_100750,4289_159 -4289_75979,92,4289_20369,The Square,103622245,1,4289_7778022_100860,4289_158 -4289_75979,93,4289_20370,The Square,103732245,1,4289_7778022_100860,4289_158 -4289_75979,94,4289_20371,The Square,103842245,1,4289_7778022_100860,4289_158 -4289_75979,95,4289_20372,The Square,103952245,1,4289_7778022_100860,4289_158 -4289_75979,96,4289_20378,The Square,104065021,1,4289_7778022_100780,4289_159 -4289_75979,92,4289_20384,The Square,103622297,1,4289_7778022_100881,4289_158 -4289_75979,93,4289_20385,The Square,103732297,1,4289_7778022_100881,4289_158 -4289_75979,94,4289_20386,The Square,103842297,1,4289_7778022_100881,4289_158 -4289_75979,95,4289_20387,The Square,103952297,1,4289_7778022_100881,4289_158 -4289_75979,96,4289_20393,The Square,104065045,1,4289_7778022_100741,4289_159 -4289_75979,92,4289_20399,The Square,103622329,1,4289_7778022_100852,4289_158 -4289_75960,93,4289_204,Sutton Station,103731896,0,4289_7778022_103502,4289_1 -4289_75979,93,4289_20400,The Square,103732329,1,4289_7778022_100852,4289_158 -4289_75979,94,4289_20401,The Square,103842329,1,4289_7778022_100852,4289_158 -4289_75979,95,4289_20402,The Square,103952329,1,4289_7778022_100852,4289_158 -4289_75979,96,4289_20408,The Square,104065075,1,4289_7778022_100670,4289_159 -4289_75962,96,4289_2041,Brides Glen,104065565,1,4289_7778022_104033,4289_25 -4289_75979,92,4289_20414,The Square,103622359,1,4289_7778022_100940,4289_158 -4289_75979,93,4289_20415,The Square,103732359,1,4289_7778022_100940,4289_158 -4289_75979,94,4289_20416,The Square,103842359,1,4289_7778022_100940,4289_158 -4289_75979,95,4289_20417,The Square,103952359,1,4289_7778022_100940,4289_158 -4289_75979,96,4289_20423,The Square,104065099,1,4289_7778022_100691,4289_159 -4289_75979,92,4289_20425,The Square,103622385,1,4289_7778022_100900,4289_158 -4289_75979,93,4289_20426,The Square,103732385,1,4289_7778022_100900,4289_158 -4289_75979,94,4289_20427,The Square,103842385,1,4289_7778022_100900,4289_158 -4289_75979,95,4289_20428,The Square,103952385,1,4289_7778022_100900,4289_158 -4289_75979,96,4289_20434,The Square,104065127,1,4289_7778022_100760,4289_159 -4289_75979,92,4289_20440,The Square,103622417,1,4289_7778022_100870,4289_158 -4289_75979,93,4289_20441,The Square,103732417,1,4289_7778022_100870,4289_158 -4289_75979,94,4289_20442,The Square,103842417,1,4289_7778022_100870,4289_158 -4289_75979,95,4289_20443,The Square,103952417,1,4289_7778022_100870,4289_158 -4289_75979,96,4289_20449,The Square,104065151,1,4289_7778022_100711,4289_159 -4289_75979,92,4289_20455,The Square,103622451,1,4289_7778022_100810,4289_158 -4289_75979,93,4289_20456,The Square,103732451,1,4289_7778022_100810,4289_158 -4289_75979,94,4289_20457,The Square,103842451,1,4289_7778022_100810,4289_158 -4289_75979,95,4289_20458,The Square,103952451,1,4289_7778022_100810,4289_158 -4289_75979,96,4289_20464,The Square,104065179,1,4289_7778022_100770,4289_159 -4289_75962,92,4289_2047,Brides Glen,103622979,1,4289_7778022_104073,4289_25 -4289_75979,92,4289_20470,The Square,103622479,1,4289_7778022_100911,4289_158 -4289_75979,93,4289_20471,The Square,103732479,1,4289_7778022_100911,4289_158 -4289_75979,94,4289_20472,The Square,103842479,1,4289_7778022_100911,4289_158 -4289_75979,95,4289_20473,The Square,103952479,1,4289_7778022_100911,4289_158 -4289_75979,96,4289_20479,The Square,104065209,1,4289_7778022_100731,4289_159 -4289_75962,93,4289_2048,Brides Glen,103732979,1,4289_7778022_104073,4289_25 -4289_75979,92,4289_20481,The Square,103622507,1,4289_7778022_100920,4289_158 -4289_75979,93,4289_20482,The Square,103732507,1,4289_7778022_100920,4289_158 -4289_75979,94,4289_20483,The Square,103842507,1,4289_7778022_100920,4289_158 -4289_75979,95,4289_20484,The Square,103952507,1,4289_7778022_100920,4289_158 -4289_75962,94,4289_2049,Brides Glen,103842979,1,4289_7778022_104073,4289_25 -4289_75979,96,4289_20490,The Square,104065229,1,4289_7778022_100681,4289_159 -4289_75979,92,4289_20496,The Square,103622535,1,4289_7778022_100930,4289_158 -4289_75979,93,4289_20497,The Square,103732535,1,4289_7778022_100930,4289_158 -4289_75979,94,4289_20498,The Square,103842535,1,4289_7778022_100930,4289_158 -4289_75979,95,4289_20499,The Square,103952535,1,4289_7778022_100930,4289_158 -4289_75960,94,4289_205,Sutton Station,103841896,0,4289_7778022_103502,4289_1 -4289_75962,95,4289_2050,Brides Glen,103952979,1,4289_7778022_104073,4289_25 -4289_75979,96,4289_20505,The Square,104065257,1,4289_7778022_100721,4289_159 -4289_75979,92,4289_20511,The Square,103622567,1,4289_7778022_100831,4289_158 -4289_75979,93,4289_20512,The Square,103732567,1,4289_7778022_100831,4289_158 -4289_75979,94,4289_20513,The Square,103842567,1,4289_7778022_100831,4289_158 -4289_75979,95,4289_20514,The Square,103952567,1,4289_7778022_100831,4289_158 -4289_75979,96,4289_20520,The Square,104065285,1,4289_7778022_100750,4289_159 -4289_75979,92,4289_20526,The Square,103622595,1,4289_7778022_100841,4289_158 -4289_75979,93,4289_20527,The Square,103732595,1,4289_7778022_100841,4289_158 -4289_75979,94,4289_20528,The Square,103842595,1,4289_7778022_100841,4289_158 -4289_75979,95,4289_20529,The Square,103952595,1,4289_7778022_100841,4289_158 -4289_75979,96,4289_20535,The Square,104065309,1,4289_7778022_100780,4289_159 -4289_75979,92,4289_20537,The Square,103622623,1,4289_7778022_100820,4289_158 -4289_75979,93,4289_20538,The Square,103732623,1,4289_7778022_100820,4289_158 -4289_75979,94,4289_20539,The Square,103842623,1,4289_7778022_100820,4289_158 -4289_75979,95,4289_20540,The Square,103952623,1,4289_7778022_100820,4289_158 -4289_75979,96,4289_20546,The Square,104065335,1,4289_7778022_100741,4289_159 -4289_75979,92,4289_20552,The Square,103622647,1,4289_7778022_100860,4289_158 -4289_75979,93,4289_20553,The Square,103732647,1,4289_7778022_100860,4289_158 -4289_75979,94,4289_20554,The Square,103842647,1,4289_7778022_100860,4289_158 -4289_75979,95,4289_20555,The Square,103952647,1,4289_7778022_100860,4289_158 -4289_75962,96,4289_2056,Brides Glen,104065653,1,4289_7778022_104193,4289_25 -4289_75979,96,4289_20561,The Square,104065363,1,4289_7778022_100670,4289_158 -4289_75979,92,4289_20563,The Square,103622677,1,4289_7778022_100852,4289_158 -4289_75979,93,4289_20564,The Square,103732677,1,4289_7778022_100852,4289_158 -4289_75979,94,4289_20565,The Square,103842677,1,4289_7778022_100852,4289_158 -4289_75979,95,4289_20566,The Square,103952677,1,4289_7778022_100852,4289_158 -4289_75979,96,4289_20576,The Square,104065401,1,4289_7778022_100760,4289_158 -4289_75979,92,4289_20578,The Square,103622701,1,4289_7778022_100940,4289_158 -4289_75979,93,4289_20579,The Square,103732701,1,4289_7778022_100940,4289_158 -4289_75979,94,4289_20580,The Square,103842701,1,4289_7778022_100940,4289_158 -4289_75979,95,4289_20581,The Square,103952701,1,4289_7778022_100940,4289_158 -4289_75979,92,4289_20588,The Square,103622729,1,4289_7778022_100900,4289_158 -4289_75979,93,4289_20589,The Square,103732729,1,4289_7778022_100900,4289_158 -4289_75979,94,4289_20590,The Square,103842729,1,4289_7778022_100900,4289_158 -4289_75979,95,4289_20591,The Square,103952729,1,4289_7778022_100900,4289_158 -4289_75979,96,4289_20597,The Square,104065429,1,4289_7778022_100770,4289_159 -4289_75960,95,4289_206,Sutton Station,103951896,0,4289_7778022_103502,4289_1 -4289_75979,92,4289_20603,The Square,103622747,1,4289_7778022_100870,4289_158 -4289_75979,93,4289_20604,The Square,103732747,1,4289_7778022_100870,4289_158 -4289_75979,94,4289_20605,The Square,103842747,1,4289_7778022_100870,4289_158 -4289_75979,95,4289_20606,The Square,103952747,1,4289_7778022_100870,4289_158 -4289_75962,2,4289_2061,Brides Glen,103613043,1,4289_7778022_100192,4289_25 -4289_75979,96,4289_20612,The Square,104065455,1,4289_7778022_100712,4289_158 -4289_75979,92,4289_20614,The Square,103622775,1,4289_7778022_100810,4289_158 -4289_75979,93,4289_20615,The Square,103732775,1,4289_7778022_100810,4289_158 -4289_75979,94,4289_20616,The Square,103842775,1,4289_7778022_100810,4289_158 -4289_75979,95,4289_20617,The Square,103952775,1,4289_7778022_100810,4289_158 -4289_75962,92,4289_2062,Brides Glen,103623043,1,4289_7778022_100192,4289_25 -4289_75979,96,4289_20627,The Square,104065491,1,4289_7778022_100701,4289_158 -4289_75979,92,4289_20629,The Square,103622805,1,4289_7778022_100920,4289_158 -4289_75962,93,4289_2063,Brides Glen,103733043,1,4289_7778022_100192,4289_25 -4289_75979,93,4289_20630,The Square,103732805,1,4289_7778022_100920,4289_158 -4289_75979,94,4289_20631,The Square,103842805,1,4289_7778022_100920,4289_158 -4289_75979,95,4289_20632,The Square,103952805,1,4289_7778022_100920,4289_158 -4289_75979,92,4289_20639,The Square,103622825,1,4289_7778022_100930,4289_158 -4289_75962,94,4289_2064,Brides Glen,103843043,1,4289_7778022_100192,4289_25 -4289_75979,93,4289_20640,The Square,103732825,1,4289_7778022_100930,4289_158 -4289_75979,94,4289_20641,The Square,103842825,1,4289_7778022_100930,4289_158 -4289_75979,95,4289_20642,The Square,103952825,1,4289_7778022_100930,4289_158 -4289_75979,96,4289_20648,The Square,104065517,1,4289_7778022_100722,4289_159 -4289_75962,95,4289_2065,Brides Glen,103953043,1,4289_7778022_100192,4289_25 -4289_75979,92,4289_20654,The Square,103622849,1,4289_7778022_100912,4289_158 -4289_75979,93,4289_20655,The Square,103732849,1,4289_7778022_100912,4289_158 -4289_75979,94,4289_20656,The Square,103842849,1,4289_7778022_100912,4289_158 -4289_75979,95,4289_20657,The Square,103952849,1,4289_7778022_100912,4289_158 -4289_75979,96,4289_20663,The Square,104065547,1,4289_7778022_100682,4289_158 -4289_75979,92,4289_20665,The Square,103622875,1,4289_7778022_100893,4289_158 -4289_75979,93,4289_20666,The Square,103732875,1,4289_7778022_100893,4289_158 -4289_75979,94,4289_20667,The Square,103842875,1,4289_7778022_100893,4289_158 -4289_75979,95,4289_20668,The Square,103952875,1,4289_7778022_100893,4289_158 -4289_75979,96,4289_20678,The Square,104065583,1,4289_7778022_100732,4289_158 -4289_75979,92,4289_20680,The Square,103622905,1,4289_7778022_100832,4289_158 -4289_75979,93,4289_20681,The Square,103732905,1,4289_7778022_100832,4289_158 -4289_75979,94,4289_20682,The Square,103842905,1,4289_7778022_100832,4289_158 -4289_75979,95,4289_20683,The Square,103952905,1,4289_7778022_100832,4289_158 -4289_75979,92,4289_20690,The Square,103622925,1,4289_7778022_100842,4289_158 -4289_75979,93,4289_20691,The Square,103732925,1,4289_7778022_100842,4289_158 -4289_75979,94,4289_20692,The Square,103842925,1,4289_7778022_100842,4289_158 -4289_75979,95,4289_20693,The Square,103952925,1,4289_7778022_100842,4289_158 -4289_75979,96,4289_20699,The Square,104065607,1,4289_7778022_100742,4289_159 -4289_75979,92,4289_20705,The Square,103622951,1,4289_7778022_100900,4289_158 -4289_75979,93,4289_20706,The Square,103732951,1,4289_7778022_100900,4289_158 -4289_75979,94,4289_20707,The Square,103842951,1,4289_7778022_100900,4289_158 -4289_75979,95,4289_20708,The Square,103952951,1,4289_7778022_100900,4289_158 -4289_75962,96,4289_2071,Brides Glen,104065713,1,4289_7778022_104033,4289_25 -4289_75979,96,4289_20714,The Square,104065637,1,4289_7778022_100712,4289_158 -4289_75979,92,4289_20716,The Square,103622973,1,4289_7778022_100882,4289_158 -4289_75979,93,4289_20717,The Square,103732973,1,4289_7778022_100882,4289_158 -4289_75979,94,4289_20718,The Square,103842973,1,4289_7778022_100882,4289_158 -4289_75979,95,4289_20719,The Square,103952973,1,4289_7778022_100882,4289_158 -4289_75979,96,4289_20729,The Square,104065671,1,4289_7778022_100692,4289_158 -4289_75963,92,4289_2073,Blackrock,103621052,0,4289_7778022_100150,4289_30 -4289_75979,92,4289_20731,The Square,103623003,1,4289_7778022_100810,4289_158 -4289_75979,93,4289_20732,The Square,103733003,1,4289_7778022_100810,4289_158 -4289_75979,94,4289_20733,The Square,103843003,1,4289_7778022_100810,4289_158 -4289_75979,95,4289_20734,The Square,103953003,1,4289_7778022_100810,4289_158 -4289_75963,93,4289_2074,Blackrock,103731052,0,4289_7778022_100150,4289_30 -4289_75979,92,4289_20741,The Square,103623023,1,4289_7778022_100920,4289_158 -4289_75979,93,4289_20742,The Square,103733023,1,4289_7778022_100920,4289_158 -4289_75979,94,4289_20743,The Square,103843023,1,4289_7778022_100920,4289_158 -4289_75979,95,4289_20744,The Square,103953023,1,4289_7778022_100920,4289_158 -4289_75963,94,4289_2075,Blackrock,103841052,0,4289_7778022_100150,4289_30 -4289_75979,96,4289_20750,The Square,104065695,1,4289_7778022_100722,4289_159 -4289_75979,2,4289_20755,The Square,103613055,1,4289_7778022_100893,4289_158 -4289_75979,92,4289_20756,The Square,103623055,1,4289_7778022_100893,4289_158 -4289_75979,93,4289_20757,The Square,103733055,1,4289_7778022_100893,4289_158 -4289_75979,94,4289_20758,The Square,103843055,1,4289_7778022_100893,4289_158 -4289_75979,95,4289_20759,The Square,103953055,1,4289_7778022_100893,4289_158 -4289_75963,95,4289_2076,Blackrock,103951052,0,4289_7778022_100150,4289_30 -4289_75979,96,4289_20765,The Square,104065727,1,4289_7778022_100732,4289_159 -4289_75980,92,4289_20771,Dun Laoghaire,103621000,0,4289_7778022_100971,4289_161 -4289_75980,93,4289_20772,Dun Laoghaire,103731000,0,4289_7778022_100971,4289_161 -4289_75980,94,4289_20773,Dun Laoghaire,103841000,0,4289_7778022_100971,4289_161 -4289_75980,95,4289_20774,Dun Laoghaire,103951000,0,4289_7778022_100971,4289_161 -4289_75980,96,4289_20780,Dun Laoghaire,104064000,0,4289_7778022_100800,4289_162 -4289_75980,92,4289_20782,Dun Laoghaire,103621004,0,4289_7778022_100991,4289_161 -4289_75980,93,4289_20783,Dun Laoghaire,103731004,0,4289_7778022_100991,4289_161 -4289_75980,94,4289_20784,Dun Laoghaire,103841004,0,4289_7778022_100991,4289_161 -4289_75980,95,4289_20785,Dun Laoghaire,103951004,0,4289_7778022_100991,4289_161 -4289_75980,96,4289_20791,Dun Laoghaire,104064010,0,4289_7778022_100820,4289_161 -4289_75980,92,4289_20793,Dun Laoghaire,103621018,0,4289_7778022_101011,4289_161 -4289_75980,93,4289_20794,Dun Laoghaire,103731018,0,4289_7778022_101011,4289_161 -4289_75980,94,4289_20795,Dun Laoghaire,103841018,0,4289_7778022_101011,4289_161 -4289_75980,95,4289_20796,Dun Laoghaire,103951018,0,4289_7778022_101011,4289_161 -4289_75980,92,4289_20803,Dun Laoghaire,103621030,0,4289_7778022_101020,4289_161 -4289_75980,93,4289_20804,Dun Laoghaire,103731030,0,4289_7778022_101020,4289_161 -4289_75980,94,4289_20805,Dun Laoghaire,103841030,0,4289_7778022_101020,4289_161 -4289_75980,95,4289_20806,Dun Laoghaire,103951030,0,4289_7778022_101020,4289_161 -4289_75980,92,4289_20813,Dun Laoghaire,103621042,0,4289_7778022_100950,4289_161 -4289_75980,93,4289_20814,Dun Laoghaire,103731042,0,4289_7778022_100950,4289_161 -4289_75980,94,4289_20815,Dun Laoghaire,103841042,0,4289_7778022_100950,4289_161 -4289_75980,95,4289_20816,Dun Laoghaire,103951042,0,4289_7778022_100950,4289_161 -4289_75963,96,4289_2082,Blackrock,104064056,0,4289_7778022_100141,4289_30 -4289_75980,96,4289_20822,Dun Laoghaire,104064032,0,4289_7778022_100790,4289_162 -4289_75980,92,4289_20824,Dun Laoghaire,103621068,0,4289_7778022_101031,4289_161 -4289_75980,93,4289_20825,Dun Laoghaire,103731068,0,4289_7778022_101031,4289_161 -4289_75980,94,4289_20826,Dun Laoghaire,103841068,0,4289_7778022_101031,4289_161 -4289_75980,95,4289_20827,Dun Laoghaire,103951068,0,4289_7778022_101031,4289_161 -4289_75980,92,4289_20834,Dun Laoghaire,103621078,0,4289_7778022_100960,4289_161 -4289_75980,93,4289_20835,Dun Laoghaire,103731078,0,4289_7778022_100960,4289_161 -4289_75980,94,4289_20836,Dun Laoghaire,103841078,0,4289_7778022_100960,4289_161 -4289_75980,95,4289_20837,Dun Laoghaire,103951078,0,4289_7778022_100960,4289_161 -4289_75963,92,4289_2084,Blackrock,103621104,0,4289_7778022_100160,4289_30 -4289_75980,96,4289_20843,Dun Laoghaire,104064064,0,4289_7778022_100830,4289_161 -4289_75980,92,4289_20845,Dun Laoghaire,103621100,0,4289_7778022_101051,4289_161 -4289_75980,93,4289_20846,Dun Laoghaire,103731100,0,4289_7778022_101051,4289_161 -4289_75980,94,4289_20847,Dun Laoghaire,103841100,0,4289_7778022_101051,4289_161 -4289_75980,95,4289_20848,Dun Laoghaire,103951100,0,4289_7778022_101051,4289_161 -4289_75963,93,4289_2085,Blackrock,103731104,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_20855,Dun Laoghaire,103621120,0,4289_7778022_101061,4289_161 -4289_75980,93,4289_20856,Dun Laoghaire,103731120,0,4289_7778022_101061,4289_161 -4289_75980,94,4289_20857,Dun Laoghaire,103841120,0,4289_7778022_101061,4289_161 -4289_75980,95,4289_20858,Dun Laoghaire,103951120,0,4289_7778022_101061,4289_161 -4289_75963,94,4289_2086,Blackrock,103841104,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_20865,Dun Laoghaire,103621158,0,4289_7778022_101071,4289_161 -4289_75980,93,4289_20866,Dun Laoghaire,103731158,0,4289_7778022_101071,4289_161 -4289_75980,94,4289_20867,Dun Laoghaire,103841158,0,4289_7778022_101071,4289_161 -4289_75980,95,4289_20868,Dun Laoghaire,103951158,0,4289_7778022_101071,4289_161 -4289_75963,95,4289_2087,Blackrock,103951104,0,4289_7778022_100160,4289_30 -4289_75980,96,4289_20874,Dun Laoghaire,104064112,0,4289_7778022_100810,4289_161 -4289_75980,92,4289_20880,Dun Laoghaire,103621192,0,4289_7778022_100981,4289_161 -4289_75980,93,4289_20881,Dun Laoghaire,103731192,0,4289_7778022_100981,4289_161 -4289_75980,94,4289_20882,Dun Laoghaire,103841192,0,4289_7778022_100981,4289_161 -4289_75980,95,4289_20883,Dun Laoghaire,103951192,0,4289_7778022_100981,4289_161 -4289_75980,92,4289_20890,Dun Laoghaire,103621232,0,4289_7778022_101090,4289_161 -4289_75980,93,4289_20891,Dun Laoghaire,103731232,0,4289_7778022_101090,4289_161 -4289_75980,94,4289_20892,Dun Laoghaire,103841232,0,4289_7778022_101090,4289_161 -4289_75980,95,4289_20893,Dun Laoghaire,103951232,0,4289_7778022_101090,4289_161 -4289_75980,96,4289_20899,Dun Laoghaire,104064150,0,4289_7778022_100800,4289_161 -4289_75980,92,4289_20905,Dun Laoghaire,103621290,0,4289_7778022_101001,4289_161 -4289_75980,93,4289_20906,Dun Laoghaire,103731290,0,4289_7778022_101001,4289_161 -4289_75980,94,4289_20907,Dun Laoghaire,103841290,0,4289_7778022_101001,4289_161 -4289_75980,95,4289_20908,Dun Laoghaire,103951290,0,4289_7778022_101001,4289_161 -4289_75980,92,4289_20915,Dun Laoghaire,103621326,0,4289_7778022_100971,4289_161 -4289_75980,93,4289_20916,Dun Laoghaire,103731326,0,4289_7778022_100971,4289_161 -4289_75980,94,4289_20917,Dun Laoghaire,103841326,0,4289_7778022_100971,4289_161 -4289_75980,95,4289_20918,Dun Laoghaire,103951326,0,4289_7778022_100971,4289_161 -4289_75980,96,4289_20924,Dun Laoghaire,104064192,0,4289_7778022_100820,4289_161 -4289_75980,92,4289_20930,Dun Laoghaire,103621348,0,4289_7778022_100991,4289_161 -4289_75980,93,4289_20931,Dun Laoghaire,103731348,0,4289_7778022_100991,4289_161 -4289_75980,94,4289_20932,Dun Laoghaire,103841348,0,4289_7778022_100991,4289_161 -4289_75980,95,4289_20933,Dun Laoghaire,103951348,0,4289_7778022_100991,4289_161 -4289_75963,92,4289_2094,Blackrock,103621176,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_20940,Dun Laoghaire,103621396,0,4289_7778022_101041,4289_161 -4289_75980,93,4289_20941,Dun Laoghaire,103731396,0,4289_7778022_101041,4289_161 -4289_75980,94,4289_20942,Dun Laoghaire,103841396,0,4289_7778022_101041,4289_161 -4289_75980,95,4289_20943,Dun Laoghaire,103951396,0,4289_7778022_101041,4289_161 -4289_75980,96,4289_20949,Dun Laoghaire,104064240,0,4289_7778022_100790,4289_161 -4289_75963,93,4289_2095,Blackrock,103731176,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_20955,Dun Laoghaire,103621416,0,4289_7778022_101111,4289_161 -4289_75980,93,4289_20956,Dun Laoghaire,103731416,0,4289_7778022_101111,4289_161 -4289_75980,94,4289_20957,Dun Laoghaire,103841416,0,4289_7778022_101111,4289_161 -4289_75980,95,4289_20958,Dun Laoghaire,103951416,0,4289_7778022_101111,4289_161 -4289_75963,94,4289_2096,Blackrock,103841176,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_20965,Dun Laoghaire,103621454,0,4289_7778022_101011,4289_161 -4289_75980,93,4289_20966,Dun Laoghaire,103731454,0,4289_7778022_101011,4289_161 -4289_75980,94,4289_20967,Dun Laoghaire,103841454,0,4289_7778022_101011,4289_161 -4289_75980,95,4289_20968,Dun Laoghaire,103951454,0,4289_7778022_101011,4289_161 -4289_75963,95,4289_2097,Blackrock,103951176,0,4289_7778022_100150,4289_30 -4289_75980,96,4289_20974,Dun Laoghaire,104064292,0,4289_7778022_100830,4289_162 -4289_75980,92,4289_20980,Dun Laoghaire,103621490,0,4289_7778022_101020,4289_161 -4289_75980,93,4289_20981,Dun Laoghaire,103731490,0,4289_7778022_101020,4289_161 -4289_75980,94,4289_20982,Dun Laoghaire,103841490,0,4289_7778022_101020,4289_161 -4289_75980,95,4289_20983,Dun Laoghaire,103951490,0,4289_7778022_101020,4289_161 -4289_75980,96,4289_20989,Dun Laoghaire,104064344,0,4289_7778022_100840,4289_161 -4289_75980,92,4289_20995,Dun Laoghaire,103621536,0,4289_7778022_100950,4289_161 -4289_75980,93,4289_20996,Dun Laoghaire,103731536,0,4289_7778022_100950,4289_161 -4289_75980,94,4289_20997,Dun Laoghaire,103841536,0,4289_7778022_100950,4289_161 -4289_75980,95,4289_20998,Dun Laoghaire,103951536,0,4289_7778022_100950,4289_161 -4289_75980,92,4289_21005,Dun Laoghaire,103621578,0,4289_7778022_101080,4289_161 -4289_75980,93,4289_21006,Dun Laoghaire,103731578,0,4289_7778022_101080,4289_161 -4289_75980,94,4289_21007,Dun Laoghaire,103841578,0,4289_7778022_101080,4289_161 -4289_75980,95,4289_21008,Dun Laoghaire,103951578,0,4289_7778022_101080,4289_161 -4289_75980,96,4289_21014,Dun Laoghaire,104064400,0,4289_7778022_100810,4289_162 -4289_75980,92,4289_21020,Dun Laoghaire,103621610,0,4289_7778022_100960,4289_161 -4289_75980,93,4289_21021,Dun Laoghaire,103731610,0,4289_7778022_100960,4289_161 -4289_75980,94,4289_21022,Dun Laoghaire,103841610,0,4289_7778022_100960,4289_161 -4289_75980,95,4289_21023,Dun Laoghaire,103951610,0,4289_7778022_100960,4289_161 -4289_75980,96,4289_21029,Dun Laoghaire,104064456,0,4289_7778022_100800,4289_161 -4289_75963,96,4289_2103,Blackrock,104064144,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21035,Dun Laoghaire,103621650,0,4289_7778022_101100,4289_161 -4289_75980,93,4289_21036,Dun Laoghaire,103731650,0,4289_7778022_101100,4289_161 -4289_75980,94,4289_21037,Dun Laoghaire,103841650,0,4289_7778022_101100,4289_161 -4289_75980,95,4289_21038,Dun Laoghaire,103951650,0,4289_7778022_101100,4289_161 -4289_75980,92,4289_21045,Dun Laoghaire,103621690,0,4289_7778022_101051,4289_161 -4289_75980,93,4289_21046,Dun Laoghaire,103731690,0,4289_7778022_101051,4289_161 -4289_75980,94,4289_21047,Dun Laoghaire,103841690,0,4289_7778022_101051,4289_161 -4289_75980,95,4289_21048,Dun Laoghaire,103951690,0,4289_7778022_101051,4289_161 -4289_75963,92,4289_2105,Blackrock,103621280,0,4289_7778022_100160,4289_30 -4289_75980,96,4289_21054,Dun Laoghaire,104064506,0,4289_7778022_100820,4289_162 -4289_75963,93,4289_2106,Blackrock,103731280,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_21060,Dun Laoghaire,103621724,0,4289_7778022_101072,4289_161 -4289_75980,93,4289_21061,Dun Laoghaire,103731724,0,4289_7778022_101072,4289_161 -4289_75980,94,4289_21062,Dun Laoghaire,103841724,0,4289_7778022_101072,4289_161 -4289_75980,95,4289_21063,Dun Laoghaire,103951724,0,4289_7778022_101072,4289_161 -4289_75980,96,4289_21069,Dun Laoghaire,104064564,0,4289_7778022_100860,4289_161 -4289_75963,94,4289_2107,Blackrock,103841280,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_21075,Dun Laoghaire,103621752,0,4289_7778022_101090,4289_161 -4289_75980,93,4289_21076,Dun Laoghaire,103731752,0,4289_7778022_101090,4289_161 -4289_75980,94,4289_21077,Dun Laoghaire,103841752,0,4289_7778022_101090,4289_161 -4289_75980,95,4289_21078,Dun Laoghaire,103951752,0,4289_7778022_101090,4289_161 -4289_75963,95,4289_2108,Blackrock,103951280,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_21085,Dun Laoghaire,103621800,0,4289_7778022_101062,4289_161 -4289_75980,93,4289_21086,Dun Laoghaire,103731800,0,4289_7778022_101062,4289_161 -4289_75980,94,4289_21087,Dun Laoghaire,103841800,0,4289_7778022_101062,4289_161 -4289_75980,95,4289_21088,Dun Laoghaire,103951800,0,4289_7778022_101062,4289_161 -4289_75980,96,4289_21094,Dun Laoghaire,104064612,0,4289_7778022_100790,4289_162 -4289_75980,92,4289_21100,Dun Laoghaire,103621836,0,4289_7778022_101112,4289_161 -4289_75980,93,4289_21101,Dun Laoghaire,103731836,0,4289_7778022_101112,4289_161 -4289_75980,94,4289_21102,Dun Laoghaire,103841836,0,4289_7778022_101112,4289_161 -4289_75980,95,4289_21103,Dun Laoghaire,103951836,0,4289_7778022_101112,4289_161 -4289_75980,96,4289_21109,Dun Laoghaire,104064670,0,4289_7778022_100830,4289_161 -4289_75980,92,4289_21115,Dun Laoghaire,103621872,0,4289_7778022_101002,4289_161 -4289_75980,93,4289_21116,Dun Laoghaire,103731872,0,4289_7778022_101002,4289_161 -4289_75980,94,4289_21117,Dun Laoghaire,103841872,0,4289_7778022_101002,4289_161 -4289_75980,95,4289_21118,Dun Laoghaire,103951872,0,4289_7778022_101002,4289_161 -4289_75980,92,4289_21125,Dun Laoghaire,103621902,0,4289_7778022_101020,4289_161 -4289_75980,93,4289_21126,Dun Laoghaire,103731902,0,4289_7778022_101020,4289_161 -4289_75980,94,4289_21127,Dun Laoghaire,103841902,0,4289_7778022_101020,4289_161 -4289_75980,95,4289_21128,Dun Laoghaire,103951902,0,4289_7778022_101020,4289_161 -4289_75980,96,4289_21134,Dun Laoghaire,104064720,0,4289_7778022_100840,4289_162 -4289_75980,92,4289_21140,Dun Laoghaire,103621948,0,4289_7778022_100950,4289_161 -4289_75980,93,4289_21141,Dun Laoghaire,103731948,0,4289_7778022_100950,4289_161 -4289_75980,94,4289_21142,Dun Laoghaire,103841948,0,4289_7778022_100950,4289_161 -4289_75980,95,4289_21143,Dun Laoghaire,103951948,0,4289_7778022_100950,4289_161 -4289_75980,96,4289_21149,Dun Laoghaire,104064778,0,4289_7778022_100850,4289_161 -4289_75963,92,4289_2115,Blackrock,103621404,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21155,Dun Laoghaire,103621988,0,4289_7778022_101042,4289_161 -4289_75980,93,4289_21156,Dun Laoghaire,103731988,0,4289_7778022_101042,4289_161 -4289_75980,94,4289_21157,Dun Laoghaire,103841988,0,4289_7778022_101042,4289_161 -4289_75980,95,4289_21158,Dun Laoghaire,103951988,0,4289_7778022_101042,4289_161 -4289_75963,93,4289_2116,Blackrock,103731404,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21165,Dun Laoghaire,103622028,0,4289_7778022_101080,4289_161 -4289_75980,93,4289_21166,Dun Laoghaire,103732028,0,4289_7778022_101080,4289_161 -4289_75980,94,4289_21167,Dun Laoghaire,103842028,0,4289_7778022_101080,4289_161 -4289_75980,95,4289_21168,Dun Laoghaire,103952028,0,4289_7778022_101080,4289_161 -4289_75963,94,4289_2117,Blackrock,103841404,0,4289_7778022_100150,4289_30 -4289_75980,96,4289_21174,Dun Laoghaire,104064826,0,4289_7778022_100810,4289_162 -4289_75963,95,4289_2118,Blackrock,103951404,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21180,Dun Laoghaire,103622062,0,4289_7778022_100960,4289_161 -4289_75980,93,4289_21181,Dun Laoghaire,103732062,0,4289_7778022_100960,4289_161 -4289_75980,94,4289_21182,Dun Laoghaire,103842062,0,4289_7778022_100960,4289_161 -4289_75980,95,4289_21183,Dun Laoghaire,103952062,0,4289_7778022_100960,4289_161 -4289_75980,96,4289_21189,Dun Laoghaire,104064882,0,4289_7778022_100800,4289_161 -4289_75980,92,4289_21195,Dun Laoghaire,103622106,0,4289_7778022_101100,4289_161 -4289_75980,93,4289_21196,Dun Laoghaire,103732106,0,4289_7778022_101100,4289_161 -4289_75980,94,4289_21197,Dun Laoghaire,103842106,0,4289_7778022_101100,4289_161 -4289_75980,95,4289_21198,Dun Laoghaire,103952106,0,4289_7778022_101100,4289_161 -4289_75960,96,4289_212,Sutton Station,104064702,0,4289_7778022_103103,4289_2 -4289_75980,92,4289_21205,Dun Laoghaire,103622160,0,4289_7778022_101072,4289_161 -4289_75980,93,4289_21206,Dun Laoghaire,103732160,0,4289_7778022_101072,4289_161 -4289_75980,94,4289_21207,Dun Laoghaire,103842160,0,4289_7778022_101072,4289_161 -4289_75980,95,4289_21208,Dun Laoghaire,103952160,0,4289_7778022_101072,4289_161 -4289_75980,96,4289_21214,Dun Laoghaire,104064922,0,4289_7778022_100820,4289_162 -4289_75980,92,4289_21220,Dun Laoghaire,103622194,0,4289_7778022_101090,4289_161 -4289_75980,93,4289_21221,Dun Laoghaire,103732194,0,4289_7778022_101090,4289_161 -4289_75980,94,4289_21222,Dun Laoghaire,103842194,0,4289_7778022_101090,4289_161 -4289_75980,95,4289_21223,Dun Laoghaire,103952194,0,4289_7778022_101090,4289_161 -4289_75980,92,4289_21230,Dun Laoghaire,103622226,0,4289_7778022_101012,4289_161 -4289_75980,93,4289_21231,Dun Laoghaire,103732226,0,4289_7778022_101012,4289_161 -4289_75980,94,4289_21232,Dun Laoghaire,103842226,0,4289_7778022_101012,4289_161 -4289_75980,95,4289_21233,Dun Laoghaire,103952226,0,4289_7778022_101012,4289_161 -4289_75980,96,4289_21239,Dun Laoghaire,104064988,0,4289_7778022_100860,4289_162 -4289_75963,96,4289_2124,Blackrock,104064234,0,4289_7778022_100150,4289_31 -4289_75980,92,4289_21245,Dun Laoghaire,103622252,0,4289_7778022_101062,4289_161 -4289_75980,93,4289_21246,Dun Laoghaire,103732252,0,4289_7778022_101062,4289_161 -4289_75980,94,4289_21247,Dun Laoghaire,103842252,0,4289_7778022_101062,4289_161 -4289_75980,95,4289_21248,Dun Laoghaire,103952252,0,4289_7778022_101062,4289_161 -4289_75963,96,4289_2125,Blackrock,104064334,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21255,Dun Laoghaire,103622292,0,4289_7778022_100992,4289_161 -4289_75980,93,4289_21256,Dun Laoghaire,103732292,0,4289_7778022_100992,4289_161 -4289_75980,94,4289_21257,Dun Laoghaire,103842292,0,4289_7778022_100992,4289_161 -4289_75980,95,4289_21258,Dun Laoghaire,103952292,0,4289_7778022_100992,4289_161 -4289_75980,96,4289_21264,Dun Laoghaire,104065038,0,4289_7778022_100790,4289_162 -4289_75963,92,4289_2127,Blackrock,103621528,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_21270,Dun Laoghaire,103622324,0,4289_7778022_101112,4289_161 -4289_75980,93,4289_21271,Dun Laoghaire,103732324,0,4289_7778022_101112,4289_161 -4289_75980,94,4289_21272,Dun Laoghaire,103842324,0,4289_7778022_101112,4289_161 -4289_75980,95,4289_21273,Dun Laoghaire,103952324,0,4289_7778022_101112,4289_161 -4289_75963,93,4289_2128,Blackrock,103731528,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_21280,Dun Laoghaire,103622342,0,4289_7778022_101052,4289_161 -4289_75980,93,4289_21281,Dun Laoghaire,103732342,0,4289_7778022_101052,4289_161 -4289_75980,94,4289_21282,Dun Laoghaire,103842342,0,4289_7778022_101052,4289_161 -4289_75980,95,4289_21283,Dun Laoghaire,103952342,0,4289_7778022_101052,4289_161 -4289_75980,96,4289_21289,Dun Laoghaire,104065096,0,4289_7778022_100830,4289_162 -4289_75963,94,4289_2129,Blackrock,103841528,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_21295,Dun Laoghaire,103622372,0,4289_7778022_101002,4289_161 -4289_75980,93,4289_21296,Dun Laoghaire,103732372,0,4289_7778022_101002,4289_161 -4289_75980,94,4289_21297,Dun Laoghaire,103842372,0,4289_7778022_101002,4289_161 -4289_75980,95,4289_21298,Dun Laoghaire,103952372,0,4289_7778022_101002,4289_161 -4289_75963,95,4289_2130,Blackrock,103951528,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_21305,Dun Laoghaire,103622412,0,4289_7778022_101032,4289_161 -4289_75980,93,4289_21306,Dun Laoghaire,103732412,0,4289_7778022_101032,4289_161 -4289_75980,94,4289_21307,Dun Laoghaire,103842412,0,4289_7778022_101032,4289_161 -4289_75980,95,4289_21308,Dun Laoghaire,103952412,0,4289_7778022_101032,4289_161 -4289_75980,96,4289_21314,Dun Laoghaire,104065142,0,4289_7778022_100840,4289_162 -4289_75980,92,4289_21320,Dun Laoghaire,103622446,0,4289_7778022_101020,4289_161 -4289_75980,93,4289_21321,Dun Laoghaire,103732446,0,4289_7778022_101020,4289_161 -4289_75980,94,4289_21322,Dun Laoghaire,103842446,0,4289_7778022_101020,4289_161 -4289_75980,95,4289_21323,Dun Laoghaire,103952446,0,4289_7778022_101020,4289_161 -4289_75980,92,4289_21330,Dun Laoghaire,103622476,0,4289_7778022_100950,4289_161 -4289_75980,93,4289_21331,Dun Laoghaire,103732476,0,4289_7778022_100950,4289_161 -4289_75980,94,4289_21332,Dun Laoghaire,103842476,0,4289_7778022_100950,4289_161 -4289_75980,95,4289_21333,Dun Laoghaire,103952476,0,4289_7778022_100950,4289_161 -4289_75980,96,4289_21339,Dun Laoghaire,104065200,0,4289_7778022_100850,4289_162 -4289_75980,92,4289_21345,Dun Laoghaire,103622502,0,4289_7778022_101042,4289_161 -4289_75980,93,4289_21346,Dun Laoghaire,103732502,0,4289_7778022_101042,4289_161 -4289_75980,94,4289_21347,Dun Laoghaire,103842502,0,4289_7778022_101042,4289_161 -4289_75980,95,4289_21348,Dun Laoghaire,103952502,0,4289_7778022_101042,4289_161 -4289_75980,92,4289_21355,Dun Laoghaire,103622532,0,4289_7778022_100972,4289_161 -4289_75980,93,4289_21356,Dun Laoghaire,103732532,0,4289_7778022_100972,4289_161 -4289_75980,94,4289_21357,Dun Laoghaire,103842532,0,4289_7778022_100972,4289_161 -4289_75980,95,4289_21358,Dun Laoghaire,103952532,0,4289_7778022_100972,4289_161 -4289_75963,96,4289_2136,Blackrock,104064444,0,4289_7778022_100142,4289_30 -4289_75980,96,4289_21364,Dun Laoghaire,104065248,0,4289_7778022_100810,4289_162 -4289_75980,92,4289_21370,Dun Laoghaire,103622570,0,4289_7778022_101080,4289_161 -4289_75980,93,4289_21371,Dun Laoghaire,103732570,0,4289_7778022_101080,4289_161 -4289_75980,94,4289_21372,Dun Laoghaire,103842570,0,4289_7778022_101080,4289_161 -4289_75980,95,4289_21373,Dun Laoghaire,103952570,0,4289_7778022_101080,4289_161 -4289_75980,96,4289_21379,Dun Laoghaire,104065304,0,4289_7778022_100800,4289_161 -4289_75980,92,4289_21385,Dun Laoghaire,103622608,0,4289_7778022_100960,4289_161 -4289_75980,93,4289_21386,Dun Laoghaire,103732608,0,4289_7778022_100960,4289_161 -4289_75980,94,4289_21387,Dun Laoghaire,103842608,0,4289_7778022_100960,4289_161 -4289_75980,95,4289_21388,Dun Laoghaire,103952608,0,4289_7778022_100960,4289_161 -4289_75980,92,4289_21395,Dun Laoghaire,103622644,0,4289_7778022_100982,4289_161 -4289_75980,93,4289_21396,Dun Laoghaire,103732644,0,4289_7778022_100982,4289_161 -4289_75980,94,4289_21397,Dun Laoghaire,103842644,0,4289_7778022_100982,4289_161 -4289_75980,95,4289_21398,Dun Laoghaire,103952644,0,4289_7778022_100982,4289_161 -4289_75980,96,4289_21404,Dun Laoghaire,104065354,0,4289_7778022_100820,4289_162 -4289_75980,92,4289_21410,Dun Laoghaire,103622704,0,4289_7778022_101012,4289_161 -4289_75980,93,4289_21411,Dun Laoghaire,103732704,0,4289_7778022_101012,4289_161 -4289_75980,94,4289_21412,Dun Laoghaire,103842704,0,4289_7778022_101012,4289_161 -4289_75980,95,4289_21413,Dun Laoghaire,103952704,0,4289_7778022_101012,4289_161 -4289_75980,96,4289_21419,Dun Laoghaire,104065400,0,4289_7778022_100790,4289_162 -4289_75963,92,4289_2142,Blackrock,103621640,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21425,Dun Laoghaire,103622748,0,4289_7778022_100992,4289_161 -4289_75980,93,4289_21426,Dun Laoghaire,103732748,0,4289_7778022_100992,4289_161 -4289_75980,94,4289_21427,Dun Laoghaire,103842748,0,4289_7778022_100992,4289_161 -4289_75980,95,4289_21428,Dun Laoghaire,103952748,0,4289_7778022_100992,4289_161 -4289_75963,93,4289_2143,Blackrock,103731640,0,4289_7778022_100150,4289_30 -4289_75980,96,4289_21434,Dun Laoghaire,104065444,0,4289_7778022_100830,4289_162 -4289_75963,94,4289_2144,Blackrock,103841640,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21440,Dun Laoghaire,103622802,0,4289_7778022_101003,4289_161 -4289_75980,93,4289_21441,Dun Laoghaire,103732802,0,4289_7778022_101003,4289_161 -4289_75980,94,4289_21442,Dun Laoghaire,103842802,0,4289_7778022_101003,4289_161 -4289_75980,95,4289_21443,Dun Laoghaire,103952802,0,4289_7778022_101003,4289_161 -4289_75980,96,4289_21449,Dun Laoghaire,104065492,0,4289_7778022_100840,4289_162 -4289_75963,95,4289_2145,Blackrock,103951640,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21455,Dun Laoghaire,103622848,0,4289_7778022_101042,4289_161 -4289_75980,93,4289_21456,Dun Laoghaire,103732848,0,4289_7778022_101042,4289_161 -4289_75980,94,4289_21457,Dun Laoghaire,103842848,0,4289_7778022_101042,4289_161 -4289_75980,95,4289_21458,Dun Laoghaire,103952848,0,4289_7778022_101042,4289_161 -4289_75980,96,4289_21464,Dun Laoghaire,104065536,0,4289_7778022_100850,4289_162 -4289_75980,92,4289_21470,Dun Laoghaire,103622898,0,4289_7778022_101080,4289_161 -4289_75980,93,4289_21471,Dun Laoghaire,103732898,0,4289_7778022_101080,4289_161 -4289_75980,94,4289_21472,Dun Laoghaire,103842898,0,4289_7778022_101080,4289_161 -4289_75980,95,4289_21473,Dun Laoghaire,103952898,0,4289_7778022_101080,4289_161 -4289_75980,96,4289_21479,Dun Laoghaire,104065578,0,4289_7778022_100800,4289_161 -4289_75980,92,4289_21485,Dun Laoghaire,103622946,0,4289_7778022_101033,4289_161 -4289_75980,93,4289_21486,Dun Laoghaire,103732946,0,4289_7778022_101033,4289_161 -4289_75980,94,4289_21487,Dun Laoghaire,103842946,0,4289_7778022_101033,4289_161 -4289_75980,95,4289_21488,Dun Laoghaire,103952946,0,4289_7778022_101033,4289_161 -4289_75980,96,4289_21494,Dun Laoghaire,104065624,0,4289_7778022_100820,4289_162 -4289_75980,92,4289_21500,Dun Laoghaire,103622994,0,4289_7778022_101012,4289_161 -4289_75980,93,4289_21501,Dun Laoghaire,103732994,0,4289_7778022_101012,4289_161 -4289_75980,94,4289_21502,Dun Laoghaire,103842994,0,4289_7778022_101012,4289_161 -4289_75980,95,4289_21503,Dun Laoghaire,103952994,0,4289_7778022_101012,4289_161 -4289_75980,96,4289_21509,Dun Laoghaire,104065664,0,4289_7778022_100790,4289_162 -4289_75963,96,4289_2151,Blackrock,104064548,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21515,Dun Laoghaire,103623038,0,4289_7778022_100992,4289_161 -4289_75980,93,4289_21516,Dun Laoghaire,103733038,0,4289_7778022_100992,4289_161 -4289_75980,94,4289_21517,Dun Laoghaire,103843038,0,4289_7778022_100992,4289_161 -4289_75980,95,4289_21518,Dun Laoghaire,103953038,0,4289_7778022_100992,4289_161 -4289_75980,96,4289_21524,Dun Laoghaire,104065706,0,4289_7778022_100830,4289_161 -4289_75980,2,4289_21529,Dun Laoghaire,103613068,0,4289_7778022_101003,4289_161 -4289_75980,92,4289_21530,Dun Laoghaire,103623068,0,4289_7778022_101003,4289_161 -4289_75980,93,4289_21531,Dun Laoghaire,103733068,0,4289_7778022_101003,4289_161 -4289_75980,94,4289_21532,Dun Laoghaire,103843068,0,4289_7778022_101003,4289_161 -4289_75980,95,4289_21533,Dun Laoghaire,103953068,0,4289_7778022_101003,4289_161 -4289_75980,96,4289_21539,Dun Laoghaire,104065736,0,4289_7778022_100840,4289_161 -4289_75980,92,4289_21545,Citywest,103621003,1,4289_7778022_100950,4289_164 -4289_75980,93,4289_21546,Citywest,103731003,1,4289_7778022_100950,4289_164 -4289_75980,94,4289_21547,Citywest,103841003,1,4289_7778022_100950,4289_164 -4289_75980,95,4289_21548,Citywest,103951003,1,4289_7778022_100950,4289_164 -4289_75980,96,4289_21554,Citywest,104064001,1,4289_7778022_100790,4289_165 -4289_75980,92,4289_21556,Citywest,103621009,1,4289_7778022_100960,4289_164 -4289_75980,93,4289_21557,Citywest,103731009,1,4289_7778022_100960,4289_164 -4289_75980,94,4289_21558,Citywest,103841009,1,4289_7778022_100960,4289_164 -4289_75980,95,4289_21559,Citywest,103951009,1,4289_7778022_100960,4289_164 -4289_75980,96,4289_21565,Citywest,104064011,1,4289_7778022_100810,4289_164 -4289_75980,92,4289_21567,Citywest,103621025,1,4289_7778022_100981,4289_164 -4289_75980,93,4289_21568,Citywest,103731025,1,4289_7778022_100981,4289_164 -4289_75980,94,4289_21569,Citywest,103841025,1,4289_7778022_100981,4289_164 -4289_75963,92,4289_2157,Blackrock,103621750,0,4289_7778022_100160,4289_30 -4289_75980,95,4289_21570,Citywest,103951025,1,4289_7778022_100981,4289_164 -4289_75980,92,4289_21577,Citywest,103621037,1,4289_7778022_101001,4289_164 -4289_75980,93,4289_21578,Citywest,103731037,1,4289_7778022_101001,4289_164 -4289_75980,94,4289_21579,Citywest,103841037,1,4289_7778022_101001,4289_164 -4289_75963,93,4289_2158,Blackrock,103731750,0,4289_7778022_100160,4289_30 -4289_75980,95,4289_21580,Citywest,103951037,1,4289_7778022_101001,4289_164 -4289_75980,96,4289_21586,Citywest,104064033,1,4289_7778022_100800,4289_164 -4289_75980,92,4289_21588,Citywest,103621063,1,4289_7778022_100971,4289_164 -4289_75980,93,4289_21589,Citywest,103731063,1,4289_7778022_100971,4289_164 -4289_75963,94,4289_2159,Blackrock,103841750,0,4289_7778022_100160,4289_30 -4289_75980,94,4289_21590,Citywest,103841063,1,4289_7778022_100971,4289_164 -4289_75980,95,4289_21591,Citywest,103951063,1,4289_7778022_100971,4289_164 -4289_75980,92,4289_21598,Citywest,103621093,1,4289_7778022_100991,4289_164 -4289_75980,93,4289_21599,Citywest,103731093,1,4289_7778022_100991,4289_164 -4289_75963,95,4289_2160,Blackrock,103951750,0,4289_7778022_100160,4289_30 -4289_75980,94,4289_21600,Citywest,103841093,1,4289_7778022_100991,4289_164 -4289_75980,95,4289_21601,Citywest,103951093,1,4289_7778022_100991,4289_164 -4289_75980,96,4289_21607,Citywest,104064063,1,4289_7778022_100820,4289_165 -4289_75980,92,4289_21609,Citywest,103621121,1,4289_7778022_101041,4289_164 -4289_75980,93,4289_21610,Citywest,103731121,1,4289_7778022_101041,4289_164 -4289_75980,94,4289_21611,Citywest,103841121,1,4289_7778022_101041,4289_164 -4289_75980,95,4289_21612,Citywest,103951121,1,4289_7778022_101041,4289_164 -4289_75980,92,4289_21619,Citywest,103621145,1,4289_7778022_101011,4289_164 -4289_75980,93,4289_21620,Citywest,103731145,1,4289_7778022_101011,4289_164 -4289_75980,94,4289_21621,Citywest,103841145,1,4289_7778022_101011,4289_164 -4289_75980,95,4289_21622,Citywest,103951145,1,4289_7778022_101011,4289_164 -4289_75980,96,4289_21628,Citywest,104064101,1,4289_7778022_100790,4289_164 -4289_75980,92,4289_21634,Citywest,103621187,1,4289_7778022_101020,4289_164 -4289_75980,93,4289_21635,Citywest,103731187,1,4289_7778022_101020,4289_164 -4289_75980,94,4289_21636,Citywest,103841187,1,4289_7778022_101020,4289_164 -4289_75980,95,4289_21637,Citywest,103951187,1,4289_7778022_101020,4289_164 -4289_75980,92,4289_21644,Citywest,103621219,1,4289_7778022_100950,4289_164 -4289_75980,93,4289_21645,Citywest,103731219,1,4289_7778022_100950,4289_164 -4289_75980,94,4289_21646,Citywest,103841219,1,4289_7778022_100950,4289_164 -4289_75980,95,4289_21647,Citywest,103951219,1,4289_7778022_100950,4289_164 -4289_75980,96,4289_21653,Citywest,104064141,1,4289_7778022_100830,4289_165 -4289_75980,92,4289_21659,Citywest,103621245,1,4289_7778022_101080,4289_164 -4289_75963,96,4289_2166,Blackrock,104064654,0,4289_7778022_100142,4289_30 -4289_75980,93,4289_21660,Citywest,103731245,1,4289_7778022_101080,4289_164 -4289_75980,94,4289_21661,Citywest,103841245,1,4289_7778022_101080,4289_164 -4289_75980,95,4289_21662,Citywest,103951245,1,4289_7778022_101080,4289_164 -4289_75980,92,4289_21669,Citywest,103621295,1,4289_7778022_101031,4289_164 -4289_75980,93,4289_21670,Citywest,103731295,1,4289_7778022_101031,4289_164 -4289_75980,94,4289_21671,Citywest,103841295,1,4289_7778022_101031,4289_164 -4289_75980,95,4289_21672,Citywest,103951295,1,4289_7778022_101031,4289_164 -4289_75980,96,4289_21678,Citywest,104064185,1,4289_7778022_100840,4289_165 -4289_75980,92,4289_21684,Citywest,103621323,1,4289_7778022_100960,4289_164 -4289_75980,93,4289_21685,Citywest,103731323,1,4289_7778022_100960,4289_164 -4289_75980,94,4289_21686,Citywest,103841323,1,4289_7778022_100960,4289_164 -4289_75980,95,4289_21687,Citywest,103951323,1,4289_7778022_100960,4289_164 -4289_75980,92,4289_21694,Citywest,103621361,1,4289_7778022_101100,4289_164 -4289_75980,93,4289_21695,Citywest,103731361,1,4289_7778022_101100,4289_164 -4289_75980,94,4289_21696,Citywest,103841361,1,4289_7778022_101100,4289_164 -4289_75980,95,4289_21697,Citywest,103951361,1,4289_7778022_101100,4289_164 -4289_75980,96,4289_21703,Citywest,104064229,1,4289_7778022_100810,4289_165 -4289_75980,92,4289_21709,Citywest,103621389,1,4289_7778022_101051,4289_164 -4289_75980,93,4289_21710,Citywest,103731389,1,4289_7778022_101051,4289_164 -4289_75980,94,4289_21711,Citywest,103841389,1,4289_7778022_101051,4289_164 -4289_75980,95,4289_21712,Citywest,103951389,1,4289_7778022_101051,4289_164 -4289_75980,92,4289_21719,Citywest,103621419,1,4289_7778022_101061,4289_164 -4289_75963,92,4289_2172,Blackrock,103621862,0,4289_7778022_100150,4289_30 -4289_75980,93,4289_21720,Citywest,103731419,1,4289_7778022_101061,4289_164 -4289_75980,94,4289_21721,Citywest,103841419,1,4289_7778022_101061,4289_164 -4289_75980,95,4289_21722,Citywest,103951419,1,4289_7778022_101061,4289_164 -4289_75980,96,4289_21728,Citywest,104064275,1,4289_7778022_100800,4289_165 -4289_75963,93,4289_2173,Blackrock,103731862,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21734,Citywest,103621451,1,4289_7778022_100981,4289_164 -4289_75980,93,4289_21735,Citywest,103731451,1,4289_7778022_100981,4289_164 -4289_75980,94,4289_21736,Citywest,103841451,1,4289_7778022_100981,4289_164 -4289_75980,95,4289_21737,Citywest,103951451,1,4289_7778022_100981,4289_164 -4289_75963,94,4289_2174,Blackrock,103841862,0,4289_7778022_100150,4289_30 -4289_75980,96,4289_21743,Citywest,104064331,1,4289_7778022_100820,4289_164 -4289_75980,92,4289_21749,Citywest,103621497,1,4289_7778022_101090,4289_164 -4289_75963,95,4289_2175,Blackrock,103951862,0,4289_7778022_100150,4289_30 -4289_75980,93,4289_21750,Citywest,103731497,1,4289_7778022_101090,4289_164 -4289_75980,94,4289_21751,Citywest,103841497,1,4289_7778022_101090,4289_164 -4289_75980,95,4289_21752,Citywest,103951497,1,4289_7778022_101090,4289_164 -4289_75980,92,4289_21759,Citywest,103621531,1,4289_7778022_100971,4289_164 -4289_75980,93,4289_21760,Citywest,103731531,1,4289_7778022_100971,4289_164 -4289_75980,94,4289_21761,Citywest,103841531,1,4289_7778022_100971,4289_164 -4289_75980,95,4289_21762,Citywest,103951531,1,4289_7778022_100971,4289_164 -4289_75980,96,4289_21768,Citywest,104064381,1,4289_7778022_100790,4289_165 -4289_75980,92,4289_21774,Citywest,103621567,1,4289_7778022_100991,4289_164 -4289_75980,93,4289_21775,Citywest,103731567,1,4289_7778022_100991,4289_164 -4289_75980,94,4289_21776,Citywest,103841567,1,4289_7778022_100991,4289_164 -4289_75980,95,4289_21777,Citywest,103951567,1,4289_7778022_100991,4289_164 -4289_75980,96,4289_21783,Citywest,104064439,1,4289_7778022_100830,4289_164 -4289_75980,92,4289_21789,Citywest,103621609,1,4289_7778022_101041,4289_164 -4289_75980,93,4289_21790,Citywest,103731609,1,4289_7778022_101041,4289_164 -4289_75980,94,4289_21791,Citywest,103841609,1,4289_7778022_101041,4289_164 -4289_75980,95,4289_21792,Citywest,103951609,1,4289_7778022_101041,4289_164 -4289_75980,92,4289_21799,Citywest,103621643,1,4289_7778022_101011,4289_164 -4289_75960,92,4289_218,Sutton Station,103621952,0,4289_7778022_103101,4289_1 -4289_75980,93,4289_21800,Citywest,103731643,1,4289_7778022_101011,4289_164 -4289_75980,94,4289_21801,Citywest,103841643,1,4289_7778022_101011,4289_164 -4289_75980,95,4289_21802,Citywest,103951643,1,4289_7778022_101011,4289_164 -4289_75980,96,4289_21808,Citywest,104064489,1,4289_7778022_100840,4289_165 -4289_75963,96,4289_2181,Blackrock,104064764,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_21814,Citywest,103621677,1,4289_7778022_101020,4289_164 -4289_75980,93,4289_21815,Citywest,103731677,1,4289_7778022_101020,4289_164 -4289_75980,94,4289_21816,Citywest,103841677,1,4289_7778022_101020,4289_164 -4289_75980,95,4289_21817,Citywest,103951677,1,4289_7778022_101020,4289_164 -4289_75980,96,4289_21823,Citywest,104064545,1,4289_7778022_100850,4289_164 -4289_75980,92,4289_21829,Citywest,103621721,1,4289_7778022_100950,4289_164 -4289_75980,93,4289_21830,Citywest,103731721,1,4289_7778022_100950,4289_164 -4289_75980,94,4289_21831,Citywest,103841721,1,4289_7778022_100950,4289_164 -4289_75980,95,4289_21832,Citywest,103951721,1,4289_7778022_100950,4289_164 -4289_75980,92,4289_21839,Citywest,103621755,1,4289_7778022_101080,4289_164 -4289_75980,93,4289_21840,Citywest,103731755,1,4289_7778022_101080,4289_164 -4289_75980,94,4289_21841,Citywest,103841755,1,4289_7778022_101080,4289_164 -4289_75980,95,4289_21842,Citywest,103951755,1,4289_7778022_101080,4289_164 -4289_75980,96,4289_21848,Citywest,104064597,1,4289_7778022_100810,4289_165 -4289_75980,92,4289_21854,Citywest,103621791,1,4289_7778022_100960,4289_164 -4289_75980,93,4289_21855,Citywest,103731791,1,4289_7778022_100960,4289_164 -4289_75980,94,4289_21856,Citywest,103841791,1,4289_7778022_100960,4289_164 -4289_75980,95,4289_21857,Citywest,103951791,1,4289_7778022_100960,4289_164 -4289_75980,96,4289_21863,Citywest,104064653,1,4289_7778022_100800,4289_164 -4289_75980,92,4289_21869,Citywest,103621835,1,4289_7778022_101100,4289_164 -4289_75963,92,4289_2187,Blackrock,103621978,0,4289_7778022_100160,4289_30 -4289_75980,93,4289_21870,Citywest,103731835,1,4289_7778022_101100,4289_164 -4289_75980,94,4289_21871,Citywest,103841835,1,4289_7778022_101100,4289_164 -4289_75980,95,4289_21872,Citywest,103951835,1,4289_7778022_101100,4289_164 -4289_75980,92,4289_21879,Citywest,103621869,1,4289_7778022_101072,4289_164 -4289_75963,93,4289_2188,Blackrock,103731978,0,4289_7778022_100160,4289_30 -4289_75980,93,4289_21880,Citywest,103731869,1,4289_7778022_101072,4289_164 -4289_75980,94,4289_21881,Citywest,103841869,1,4289_7778022_101072,4289_164 -4289_75980,95,4289_21882,Citywest,103951869,1,4289_7778022_101072,4289_164 -4289_75980,96,4289_21888,Citywest,104064703,1,4289_7778022_100820,4289_165 -4289_75963,94,4289_2189,Blackrock,103841978,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_21894,Citywest,103621913,1,4289_7778022_101090,4289_164 -4289_75980,93,4289_21895,Citywest,103731913,1,4289_7778022_101090,4289_164 -4289_75980,94,4289_21896,Citywest,103841913,1,4289_7778022_101090,4289_164 -4289_75980,95,4289_21897,Citywest,103951913,1,4289_7778022_101090,4289_164 -4289_75960,93,4289_219,Sutton Station,103731952,0,4289_7778022_103101,4289_1 -4289_75963,95,4289_2190,Blackrock,103951978,0,4289_7778022_100160,4289_30 -4289_75980,96,4289_21903,Citywest,104064759,1,4289_7778022_100860,4289_164 -4289_75980,92,4289_21909,Citywest,103621953,1,4289_7778022_101062,4289_164 -4289_75980,93,4289_21910,Citywest,103731953,1,4289_7778022_101062,4289_164 -4289_75980,94,4289_21911,Citywest,103841953,1,4289_7778022_101062,4289_164 -4289_75980,95,4289_21912,Citywest,103951953,1,4289_7778022_101062,4289_164 -4289_75980,92,4289_21919,Citywest,103621987,1,4289_7778022_101112,4289_164 -4289_75980,93,4289_21920,Citywest,103731987,1,4289_7778022_101112,4289_164 -4289_75980,94,4289_21921,Citywest,103841987,1,4289_7778022_101112,4289_164 -4289_75980,95,4289_21922,Citywest,103951987,1,4289_7778022_101112,4289_164 -4289_75980,96,4289_21928,Citywest,104064811,1,4289_7778022_100790,4289_165 -4289_75980,92,4289_21934,Citywest,103622023,1,4289_7778022_101052,4289_164 -4289_75980,93,4289_21935,Citywest,103732023,1,4289_7778022_101052,4289_164 -4289_75980,94,4289_21936,Citywest,103842023,1,4289_7778022_101052,4289_164 -4289_75980,95,4289_21937,Citywest,103952023,1,4289_7778022_101052,4289_164 -4289_75980,96,4289_21943,Citywest,104064863,1,4289_7778022_100830,4289_164 -4289_75980,92,4289_21949,Citywest,103622067,1,4289_7778022_101002,4289_164 -4289_75980,93,4289_21950,Citywest,103732067,1,4289_7778022_101002,4289_164 -4289_75980,94,4289_21951,Citywest,103842067,1,4289_7778022_101002,4289_164 -4289_75980,95,4289_21952,Citywest,103952067,1,4289_7778022_101002,4289_164 -4289_75980,92,4289_21959,Citywest,103622107,1,4289_7778022_101020,4289_164 -4289_75963,96,4289_2196,Blackrock,104064868,0,4289_7778022_100142,4289_30 -4289_75980,93,4289_21960,Citywest,103732107,1,4289_7778022_101020,4289_164 -4289_75980,94,4289_21961,Citywest,103842107,1,4289_7778022_101020,4289_164 -4289_75980,95,4289_21962,Citywest,103952107,1,4289_7778022_101020,4289_164 -4289_75980,96,4289_21968,Citywest,104064917,1,4289_7778022_100840,4289_165 -4289_75980,92,4289_21974,Citywest,103622133,1,4289_7778022_100950,4289_164 -4289_75980,93,4289_21975,Citywest,103732133,1,4289_7778022_100950,4289_164 -4289_75980,94,4289_21976,Citywest,103842133,1,4289_7778022_100950,4289_164 -4289_75980,95,4289_21977,Citywest,103952133,1,4289_7778022_100950,4289_164 -4289_75980,92,4289_21984,Citywest,103622169,1,4289_7778022_101042,4289_164 -4289_75980,93,4289_21985,Citywest,103732169,1,4289_7778022_101042,4289_164 -4289_75980,94,4289_21986,Citywest,103842169,1,4289_7778022_101042,4289_164 -4289_75980,95,4289_21987,Citywest,103952169,1,4289_7778022_101042,4289_164 -4289_75980,96,4289_21993,Citywest,104064971,1,4289_7778022_100850,4289_165 -4289_75980,92,4289_21999,Citywest,103622211,1,4289_7778022_100972,4289_164 -4289_75960,94,4289_220,Sutton Station,103841952,0,4289_7778022_103101,4289_1 -4289_75980,93,4289_22000,Citywest,103732211,1,4289_7778022_100972,4289_164 -4289_75980,94,4289_22001,Citywest,103842211,1,4289_7778022_100972,4289_164 -4289_75980,95,4289_22002,Citywest,103952211,1,4289_7778022_100972,4289_164 -4289_75980,92,4289_22009,Citywest,103622249,1,4289_7778022_101080,4289_164 -4289_75980,93,4289_22010,Citywest,103732249,1,4289_7778022_101080,4289_164 -4289_75980,94,4289_22011,Citywest,103842249,1,4289_7778022_101080,4289_164 -4289_75980,95,4289_22012,Citywest,103952249,1,4289_7778022_101080,4289_164 -4289_75980,96,4289_22018,Citywest,104065023,1,4289_7778022_100810,4289_165 -4289_75963,92,4289_2202,Blackrock,103622096,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_22024,Citywest,103622299,1,4289_7778022_100960,4289_164 -4289_75980,93,4289_22025,Citywest,103732299,1,4289_7778022_100960,4289_164 -4289_75980,94,4289_22026,Citywest,103842299,1,4289_7778022_100960,4289_164 -4289_75980,95,4289_22027,Citywest,103952299,1,4289_7778022_100960,4289_164 -4289_75963,93,4289_2203,Blackrock,103732096,0,4289_7778022_100150,4289_30 -4289_75980,92,4289_22034,Citywest,103622331,1,4289_7778022_101100,4289_164 -4289_75980,93,4289_22035,Citywest,103732331,1,4289_7778022_101100,4289_164 -4289_75980,94,4289_22036,Citywest,103842331,1,4289_7778022_101100,4289_164 -4289_75980,95,4289_22037,Citywest,103952331,1,4289_7778022_101100,4289_164 -4289_75963,94,4289_2204,Blackrock,103842096,0,4289_7778022_100150,4289_30 -4289_75980,96,4289_22043,Citywest,104065077,1,4289_7778022_100800,4289_165 -4289_75980,92,4289_22049,Citywest,103622361,1,4289_7778022_100982,4289_164 -4289_75963,95,4289_2205,Blackrock,103952096,0,4289_7778022_100150,4289_30 -4289_75980,93,4289_22050,Citywest,103732361,1,4289_7778022_100982,4289_164 -4289_75980,94,4289_22051,Citywest,103842361,1,4289_7778022_100982,4289_164 -4289_75980,95,4289_22052,Citywest,103952361,1,4289_7778022_100982,4289_164 -4289_75980,92,4289_22059,Citywest,103622389,1,4289_7778022_101072,4289_164 -4289_75980,93,4289_22060,Citywest,103732389,1,4289_7778022_101072,4289_164 -4289_75980,94,4289_22061,Citywest,103842389,1,4289_7778022_101072,4289_164 -4289_75980,95,4289_22062,Citywest,103952389,1,4289_7778022_101072,4289_164 -4289_75980,96,4289_22068,Citywest,104065129,1,4289_7778022_100820,4289_165 -4289_75980,92,4289_22074,Citywest,103622419,1,4289_7778022_101090,4289_164 -4289_75980,93,4289_22075,Citywest,103732419,1,4289_7778022_101090,4289_164 -4289_75980,94,4289_22076,Citywest,103842419,1,4289_7778022_101090,4289_164 -4289_75980,95,4289_22077,Citywest,103952419,1,4289_7778022_101090,4289_164 -4289_75980,92,4289_22084,Citywest,103622453,1,4289_7778022_101012,4289_164 -4289_75980,93,4289_22085,Citywest,103732453,1,4289_7778022_101012,4289_164 -4289_75980,94,4289_22086,Citywest,103842453,1,4289_7778022_101012,4289_164 -4289_75980,95,4289_22087,Citywest,103952453,1,4289_7778022_101012,4289_164 -4289_75980,96,4289_22093,Citywest,104065181,1,4289_7778022_100860,4289_165 -4289_75980,92,4289_22099,Citywest,103622481,1,4289_7778022_101062,4289_164 -4289_75960,95,4289_221,Sutton Station,103951952,0,4289_7778022_103101,4289_1 -4289_75980,93,4289_22100,Citywest,103732481,1,4289_7778022_101062,4289_164 -4289_75980,94,4289_22101,Citywest,103842481,1,4289_7778022_101062,4289_164 -4289_75980,95,4289_22102,Citywest,103952481,1,4289_7778022_101062,4289_164 -4289_75980,92,4289_22109,Citywest,103622509,1,4289_7778022_100992,4289_164 -4289_75963,96,4289_2211,Blackrock,104064974,0,4289_7778022_100150,4289_30 -4289_75980,93,4289_22110,Citywest,103732509,1,4289_7778022_100992,4289_164 -4289_75980,94,4289_22111,Citywest,103842509,1,4289_7778022_100992,4289_164 -4289_75980,95,4289_22112,Citywest,103952509,1,4289_7778022_100992,4289_164 -4289_75980,96,4289_22118,Citywest,104065233,1,4289_7778022_100790,4289_165 -4289_75980,92,4289_22124,Citywest,103622545,1,4289_7778022_101112,4289_164 -4289_75980,93,4289_22125,Citywest,103732545,1,4289_7778022_101112,4289_164 -4289_75980,94,4289_22126,Citywest,103842545,1,4289_7778022_101112,4289_164 -4289_75980,95,4289_22127,Citywest,103952545,1,4289_7778022_101112,4289_164 -4289_75980,96,4289_22133,Citywest,104065287,1,4289_7778022_100830,4289_164 -4289_75980,92,4289_22139,Citywest,103622591,1,4289_7778022_101052,4289_164 -4289_75980,93,4289_22140,Citywest,103732591,1,4289_7778022_101052,4289_164 -4289_75980,94,4289_22141,Citywest,103842591,1,4289_7778022_101052,4289_164 -4289_75980,95,4289_22142,Citywest,103952591,1,4289_7778022_101052,4289_164 -4289_75980,92,4289_22149,Citywest,103622627,1,4289_7778022_101032,4289_164 -4289_75980,93,4289_22150,Citywest,103732627,1,4289_7778022_101032,4289_164 -4289_75980,94,4289_22151,Citywest,103842627,1,4289_7778022_101032,4289_164 -4289_75980,95,4289_22152,Citywest,103952627,1,4289_7778022_101032,4289_164 -4289_75980,96,4289_22158,Citywest,104065337,1,4289_7778022_100840,4289_165 -4289_75980,92,4289_22164,Citywest,103622679,1,4289_7778022_101042,4289_164 -4289_75980,93,4289_22165,Citywest,103732679,1,4289_7778022_101042,4289_164 -4289_75980,94,4289_22166,Citywest,103842679,1,4289_7778022_101042,4289_164 -4289_75980,95,4289_22167,Citywest,103952679,1,4289_7778022_101042,4289_164 -4289_75963,92,4289_2217,Blackrock,103622230,0,4289_7778022_100160,4289_30 -4289_75980,96,4289_22173,Citywest,104065379,1,4289_7778022_100850,4289_165 -4289_75980,92,4289_22179,Citywest,103622731,1,4289_7778022_101080,4289_164 -4289_75963,93,4289_2218,Blackrock,103732230,0,4289_7778022_100160,4289_30 -4289_75980,93,4289_22180,Citywest,103732731,1,4289_7778022_101080,4289_164 -4289_75980,94,4289_22181,Citywest,103842731,1,4289_7778022_101080,4289_164 -4289_75980,95,4289_22182,Citywest,103952731,1,4289_7778022_101080,4289_164 -4289_75980,96,4289_22188,Citywest,104065431,1,4289_7778022_100800,4289_165 -4289_75963,94,4289_2219,Blackrock,103842230,0,4289_7778022_100160,4289_30 -4289_75980,92,4289_22194,Citywest,103622777,1,4289_7778022_100982,4289_164 -4289_75980,93,4289_22195,Citywest,103732777,1,4289_7778022_100982,4289_164 -4289_75980,94,4289_22196,Citywest,103842777,1,4289_7778022_100982,4289_164 -4289_75980,95,4289_22197,Citywest,103952777,1,4289_7778022_100982,4289_164 -4289_75963,95,4289_2220,Blackrock,103952230,0,4289_7778022_100160,4289_30 -4289_75980,96,4289_22203,Citywest,104065471,1,4289_7778022_100820,4289_164 -4289_75980,92,4289_22209,Citywest,103622829,1,4289_7778022_101012,4289_164 -4289_75980,93,4289_22210,Citywest,103732829,1,4289_7778022_101012,4289_164 -4289_75980,94,4289_22211,Citywest,103842829,1,4289_7778022_101012,4289_164 -4289_75980,95,4289_22212,Citywest,103952829,1,4289_7778022_101012,4289_164 -4289_75980,96,4289_22218,Citywest,104065521,1,4289_7778022_100790,4289_165 -4289_75980,92,4289_22224,Citywest,103622879,1,4289_7778022_100992,4289_164 -4289_75980,93,4289_22225,Citywest,103732879,1,4289_7778022_100992,4289_164 -4289_75980,94,4289_22226,Citywest,103842879,1,4289_7778022_100992,4289_164 -4289_75980,95,4289_22227,Citywest,103952879,1,4289_7778022_100992,4289_164 -4289_75980,96,4289_22233,Citywest,104065561,1,4289_7778022_100830,4289_165 -4289_75980,92,4289_22239,Citywest,103622927,1,4289_7778022_101003,4289_164 -4289_75980,93,4289_22240,Citywest,103732927,1,4289_7778022_101003,4289_164 -4289_75980,94,4289_22241,Citywest,103842927,1,4289_7778022_101003,4289_164 -4289_75980,95,4289_22242,Citywest,103952927,1,4289_7778022_101003,4289_164 -4289_75980,96,4289_22248,Citywest,104065609,1,4289_7778022_100840,4289_165 -4289_75980,92,4289_22254,Citywest,103622975,1,4289_7778022_101042,4289_164 -4289_75980,93,4289_22255,Citywest,103732975,1,4289_7778022_101042,4289_164 -4289_75980,94,4289_22256,Citywest,103842975,1,4289_7778022_101042,4289_164 -4289_75980,95,4289_22257,Citywest,103952975,1,4289_7778022_101042,4289_164 -4289_75963,96,4289_2226,Blackrock,104065080,0,4289_7778022_100142,4289_30 -4289_75980,96,4289_22263,Citywest,104065649,1,4289_7778022_100850,4289_165 -4289_75980,2,4289_22268,Citywest,103613025,1,4289_7778022_101080,4289_164 -4289_75980,92,4289_22269,Citywest,103623025,1,4289_7778022_101080,4289_164 -4289_75980,93,4289_22270,Citywest,103733025,1,4289_7778022_101080,4289_164 -4289_75980,94,4289_22271,Citywest,103843025,1,4289_7778022_101080,4289_164 -4289_75980,95,4289_22272,Citywest,103953025,1,4289_7778022_101080,4289_164 -4289_75980,96,4289_22278,Citywest,104065697,1,4289_7778022_100800,4289_165 -4289_75980,2,4289_22283,Citywest,103613057,1,4289_7778022_101033,4289_164 -4289_75980,92,4289_22284,Citywest,103623057,1,4289_7778022_101033,4289_164 -4289_75980,93,4289_22285,Citywest,103733057,1,4289_7778022_101033,4289_164 -4289_75980,94,4289_22286,Citywest,103843057,1,4289_7778022_101033,4289_164 -4289_75980,95,4289_22287,Citywest,103953057,1,4289_7778022_101033,4289_164 -4289_75980,96,4289_22293,Citywest,104065729,1,4289_7778022_100790,4289_165 -4289_75981,92,4289_22299,Tallaght,103621006,0,4289_7778022_100341,4289_167 -4289_75981,93,4289_22300,Tallaght,103731006,0,4289_7778022_100341,4289_167 -4289_75981,94,4289_22301,Tallaght,103841006,0,4289_7778022_100341,4289_167 -4289_75981,95,4289_22302,Tallaght,103951006,0,4289_7778022_100341,4289_167 -4289_75981,96,4289_22308,Tallaght,104064004,0,4289_7778022_100280,4289_168 -4289_75981,92,4289_22310,Tallaght,103621036,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_22311,Tallaght,103731036,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_22312,Tallaght,103841036,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_22313,Tallaght,103951036,0,4289_7778022_100350,4289_167 -4289_75981,96,4289_22319,Tallaght,104064022,0,4289_7778022_100290,4289_168 -4289_75963,92,4289_2232,Blackrock,103622388,0,4289_7778022_100150,4289_30 -4289_75981,92,4289_22321,Tallaght,103621054,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_22322,Tallaght,103731054,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_22323,Tallaght,103841054,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_22324,Tallaght,103951054,0,4289_7778022_100360,4289_167 -4289_75963,93,4289_2233,Blackrock,103732388,0,4289_7778022_100150,4289_30 -4289_75981,96,4289_22330,Tallaght,104064038,0,4289_7778022_100300,4289_167 -4289_75981,92,4289_22332,Tallaght,103621082,0,4289_7778022_100341,4289_167 -4289_75981,93,4289_22333,Tallaght,103731082,0,4289_7778022_100341,4289_167 -4289_75981,94,4289_22334,Tallaght,103841082,0,4289_7778022_100341,4289_167 -4289_75981,95,4289_22335,Tallaght,103951082,0,4289_7778022_100341,4289_167 -4289_75963,94,4289_2234,Blackrock,103842388,0,4289_7778022_100150,4289_30 -4289_75981,96,4289_22341,Tallaght,104064068,0,4289_7778022_100280,4289_167 -4289_75981,92,4289_22343,Tallaght,103621106,0,4289_7778022_100390,4289_167 -4289_75981,93,4289_22344,Tallaght,103731106,0,4289_7778022_100390,4289_167 -4289_75981,94,4289_22345,Tallaght,103841106,0,4289_7778022_100390,4289_167 -4289_75981,95,4289_22346,Tallaght,103951106,0,4289_7778022_100390,4289_167 -4289_75963,95,4289_2235,Blackrock,103952388,0,4289_7778022_100150,4289_30 -4289_75981,92,4289_22353,Tallaght,103621156,0,4289_7778022_100370,4289_167 -4289_75981,93,4289_22354,Tallaght,103731156,0,4289_7778022_100370,4289_167 -4289_75981,94,4289_22355,Tallaght,103841156,0,4289_7778022_100370,4289_167 -4289_75981,95,4289_22356,Tallaght,103951156,0,4289_7778022_100370,4289_167 -4289_75981,96,4289_22362,Tallaght,104064094,0,4289_7778022_100310,4289_168 -4289_75981,92,4289_22364,Tallaght,103621186,0,4289_7778022_100380,4289_167 -4289_75981,93,4289_22365,Tallaght,103731186,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_22366,Tallaght,103841186,0,4289_7778022_100380,4289_167 -4289_75981,95,4289_22367,Tallaght,103951186,0,4289_7778022_100380,4289_167 -4289_75981,96,4289_22373,Tallaght,104064122,0,4289_7778022_100290,4289_167 -4289_75981,92,4289_22375,Tallaght,103621220,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_22376,Tallaght,103731220,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_22377,Tallaght,103841220,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_22378,Tallaght,103951220,0,4289_7778022_100350,4289_167 -4289_75981,96,4289_22388,Tallaght,104064158,0,4289_7778022_100300,4289_167 -4289_75981,92,4289_22390,Tallaght,103621282,0,4289_7778022_100410,4289_167 -4289_75981,93,4289_22391,Tallaght,103731282,0,4289_7778022_100410,4289_167 -4289_75981,94,4289_22392,Tallaght,103841282,0,4289_7778022_100410,4289_167 -4289_75981,95,4289_22393,Tallaght,103951282,0,4289_7778022_100410,4289_167 -4289_75981,92,4289_22400,Tallaght,103621322,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_22401,Tallaght,103731322,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_22402,Tallaght,103841322,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_22403,Tallaght,103951322,0,4289_7778022_100360,4289_167 -4289_75981,96,4289_22409,Tallaght,104064182,0,4289_7778022_100280,4289_168 -4289_75963,96,4289_2241,Blackrock,104065184,0,4289_7778022_100150,4289_30 -4289_75981,92,4289_22415,Tallaght,103621362,0,4289_7778022_100341,4289_167 -4289_75981,93,4289_22416,Tallaght,103731362,0,4289_7778022_100341,4289_167 -4289_75981,94,4289_22417,Tallaght,103841362,0,4289_7778022_100341,4289_167 -4289_75981,95,4289_22418,Tallaght,103951362,0,4289_7778022_100341,4289_167 -4289_75981,96,4289_22424,Tallaght,104064214,0,4289_7778022_100310,4289_167 -4289_75981,92,4289_22426,Tallaght,103621390,0,4289_7778022_100390,4289_167 -4289_75981,93,4289_22427,Tallaght,103731390,0,4289_7778022_100390,4289_167 -4289_75981,94,4289_22428,Tallaght,103841390,0,4289_7778022_100390,4289_167 -4289_75981,95,4289_22429,Tallaght,103951390,0,4289_7778022_100390,4289_167 -4289_75981,96,4289_22439,Tallaght,104064248,0,4289_7778022_100290,4289_167 -4289_75981,92,4289_22441,Tallaght,103621418,0,4289_7778022_100400,4289_167 -4289_75981,93,4289_22442,Tallaght,103731418,0,4289_7778022_100400,4289_167 -4289_75981,94,4289_22443,Tallaght,103841418,0,4289_7778022_100400,4289_167 -4289_75981,95,4289_22444,Tallaght,103951418,0,4289_7778022_100400,4289_167 -4289_75981,92,4289_22451,Tallaght,103621450,0,4289_7778022_100370,4289_167 -4289_75981,93,4289_22452,Tallaght,103731450,0,4289_7778022_100370,4289_167 -4289_75981,94,4289_22453,Tallaght,103841450,0,4289_7778022_100370,4289_167 -4289_75981,95,4289_22454,Tallaght,103951450,0,4289_7778022_100370,4289_167 -4289_75981,96,4289_22460,Tallaght,104064272,0,4289_7778022_100300,4289_168 -4289_75981,92,4289_22466,Tallaght,103621478,0,4289_7778022_100380,4289_167 -4289_75981,93,4289_22467,Tallaght,103731478,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_22468,Tallaght,103841478,0,4289_7778022_100380,4289_167 -4289_75981,95,4289_22469,Tallaght,103951478,0,4289_7778022_100380,4289_167 -4289_75963,92,4289_2247,Blackrock,103622480,0,4289_7778022_100160,4289_30 -4289_75981,96,4289_22475,Tallaght,104064302,0,4289_7778022_100320,4289_168 -4289_75981,92,4289_22477,Tallaght,103621502,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_22478,Tallaght,103731502,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_22479,Tallaght,103841502,0,4289_7778022_100350,4289_167 -4289_75963,93,4289_2248,Blackrock,103732480,0,4289_7778022_100160,4289_30 -4289_75981,95,4289_22480,Tallaght,103951502,0,4289_7778022_100350,4289_167 -4289_75981,96,4289_22486,Tallaght,104064324,0,4289_7778022_100280,4289_168 -4289_75963,94,4289_2249,Blackrock,103842480,0,4289_7778022_100160,4289_30 -4289_75981,92,4289_22492,Tallaght,103621530,0,4289_7778022_100410,4289_167 -4289_75981,93,4289_22493,Tallaght,103731530,0,4289_7778022_100410,4289_167 -4289_75981,94,4289_22494,Tallaght,103841530,0,4289_7778022_100410,4289_167 -4289_75981,95,4289_22495,Tallaght,103951530,0,4289_7778022_100410,4289_167 -4289_75963,95,4289_2250,Blackrock,103952480,0,4289_7778022_100160,4289_30 -4289_75981,96,4289_22501,Tallaght,104064356,0,4289_7778022_100310,4289_168 -4289_75981,92,4289_22503,Tallaght,103621560,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_22504,Tallaght,103731560,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_22505,Tallaght,103841560,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_22506,Tallaght,103951560,0,4289_7778022_100360,4289_167 -4289_75981,96,4289_22512,Tallaght,104064380,0,4289_7778022_100330,4289_168 -4289_75981,92,4289_22518,Tallaght,103621588,0,4289_7778022_100390,4289_167 -4289_75981,93,4289_22519,Tallaght,103731588,0,4289_7778022_100390,4289_167 -4289_75981,94,4289_22520,Tallaght,103841588,0,4289_7778022_100390,4289_167 -4289_75981,95,4289_22521,Tallaght,103951588,0,4289_7778022_100390,4289_167 -4289_75981,96,4289_22527,Tallaght,104064412,0,4289_7778022_100290,4289_168 -4289_75981,92,4289_22533,Tallaght,103621612,0,4289_7778022_100400,4289_167 -4289_75981,93,4289_22534,Tallaght,103731612,0,4289_7778022_100400,4289_167 -4289_75981,94,4289_22535,Tallaght,103841612,0,4289_7778022_100400,4289_167 -4289_75981,95,4289_22536,Tallaght,103951612,0,4289_7778022_100400,4289_167 -4289_75981,96,4289_22542,Tallaght,104064430,0,4289_7778022_100300,4289_168 -4289_75981,92,4289_22548,Tallaght,103621644,0,4289_7778022_100370,4289_167 -4289_75981,93,4289_22549,Tallaght,103731644,0,4289_7778022_100370,4289_167 -4289_75981,94,4289_22550,Tallaght,103841644,0,4289_7778022_100370,4289_167 -4289_75981,95,4289_22551,Tallaght,103951644,0,4289_7778022_100370,4289_167 -4289_75981,96,4289_22557,Tallaght,104064464,0,4289_7778022_100320,4289_168 -4289_75981,92,4289_22559,Tallaght,103621670,0,4289_7778022_100380,4289_167 -4289_75963,96,4289_2256,Blackrock,104065284,0,4289_7778022_100142,4289_30 -4289_75981,93,4289_22560,Tallaght,103731670,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_22561,Tallaght,103841670,0,4289_7778022_100380,4289_167 -4289_75981,95,4289_22562,Tallaght,103951670,0,4289_7778022_100380,4289_167 -4289_75981,96,4289_22568,Tallaght,104064488,0,4289_7778022_100280,4289_168 -4289_75981,92,4289_22574,Tallaght,103621700,0,4289_7778022_100342,4289_167 -4289_75981,93,4289_22575,Tallaght,103731700,0,4289_7778022_100342,4289_167 -4289_75981,94,4289_22576,Tallaght,103841700,0,4289_7778022_100342,4289_167 -4289_75981,95,4289_22577,Tallaght,103951700,0,4289_7778022_100342,4289_167 -4289_75981,96,4289_22583,Tallaght,104064516,0,4289_7778022_100310,4289_168 -4289_75981,92,4289_22589,Tallaght,103621726,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_22590,Tallaght,103731726,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_22591,Tallaght,103841726,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_22592,Tallaght,103951726,0,4289_7778022_100350,4289_167 -4289_75981,96,4289_22598,Tallaght,104064538,0,4289_7778022_100340,4289_168 -4289_75981,92,4289_22604,Tallaght,103621756,0,4289_7778022_100410,4289_167 -4289_75981,93,4289_22605,Tallaght,103731756,0,4289_7778022_100410,4289_167 -4289_75981,94,4289_22606,Tallaght,103841756,0,4289_7778022_100410,4289_167 -4289_75981,95,4289_22607,Tallaght,103951756,0,4289_7778022_100410,4289_167 -4289_75981,96,4289_22613,Tallaght,104064570,0,4289_7778022_100330,4289_168 -4289_75981,92,4289_22615,Tallaght,103621780,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_22616,Tallaght,103731780,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_22617,Tallaght,103841780,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_22618,Tallaght,103951780,0,4289_7778022_100360,4289_167 -4289_75963,92,4289_2262,Blackrock,103622594,0,4289_7778022_100150,4289_30 -4289_75981,96,4289_22624,Tallaght,104064594,0,4289_7778022_100290,4289_168 -4289_75963,93,4289_2263,Blackrock,103732594,0,4289_7778022_100150,4289_30 -4289_75981,92,4289_22630,Tallaght,103621812,0,4289_7778022_100390,4289_167 -4289_75981,93,4289_22631,Tallaght,103731812,0,4289_7778022_100390,4289_167 -4289_75981,94,4289_22632,Tallaght,103841812,0,4289_7778022_100390,4289_167 -4289_75981,95,4289_22633,Tallaght,103951812,0,4289_7778022_100390,4289_167 -4289_75981,96,4289_22639,Tallaght,104064624,0,4289_7778022_100300,4289_168 -4289_75963,94,4289_2264,Blackrock,103842594,0,4289_7778022_100150,4289_30 -4289_75981,92,4289_22645,Tallaght,103621838,0,4289_7778022_100400,4289_167 -4289_75981,93,4289_22646,Tallaght,103731838,0,4289_7778022_100400,4289_167 -4289_75981,94,4289_22647,Tallaght,103841838,0,4289_7778022_100400,4289_167 -4289_75981,95,4289_22648,Tallaght,103951838,0,4289_7778022_100400,4289_167 -4289_75963,95,4289_2265,Blackrock,103952594,0,4289_7778022_100150,4289_30 -4289_75981,96,4289_22654,Tallaght,104064644,0,4289_7778022_100320,4289_168 -4289_75981,92,4289_22660,Tallaght,103621864,0,4289_7778022_100370,4289_167 -4289_75981,93,4289_22661,Tallaght,103731864,0,4289_7778022_100370,4289_167 -4289_75981,94,4289_22662,Tallaght,103841864,0,4289_7778022_100370,4289_167 -4289_75981,95,4289_22663,Tallaght,103951864,0,4289_7778022_100370,4289_167 -4289_75981,96,4289_22669,Tallaght,104064678,0,4289_7778022_100350,4289_167 -4289_75981,92,4289_22671,Tallaght,103621894,0,4289_7778022_100380,4289_167 -4289_75981,93,4289_22672,Tallaght,103731894,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_22673,Tallaght,103841894,0,4289_7778022_100380,4289_167 -4289_75981,95,4289_22674,Tallaght,103951894,0,4289_7778022_100380,4289_167 -4289_75981,96,4289_22680,Tallaght,104064700,0,4289_7778022_100280,4289_167 -4289_75981,92,4289_22686,Tallaght,103621924,0,4289_7778022_100342,4289_167 -4289_75981,93,4289_22687,Tallaght,103731924,0,4289_7778022_100342,4289_167 -4289_75981,94,4289_22688,Tallaght,103841924,0,4289_7778022_100342,4289_167 -4289_75981,95,4289_22689,Tallaght,103951924,0,4289_7778022_100342,4289_167 -4289_75981,96,4289_22695,Tallaght,104064732,0,4289_7778022_100310,4289_168 -4289_75960,96,4289_227,Sutton Station,104064752,0,4289_7778022_103105,4289_2 -4289_75981,92,4289_22701,Tallaght,103621950,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_22702,Tallaght,103731950,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_22703,Tallaght,103841950,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_22704,Tallaght,103951950,0,4289_7778022_100350,4289_167 -4289_75963,96,4289_2271,Blackrock,104065386,0,4289_7778022_100150,4289_30 -4289_75981,96,4289_22710,Tallaght,104064750,0,4289_7778022_100340,4289_168 -4289_75981,92,4289_22716,Tallaght,103621984,0,4289_7778022_100410,4289_167 -4289_75981,93,4289_22717,Tallaght,103731984,0,4289_7778022_100410,4289_167 -4289_75981,94,4289_22718,Tallaght,103841984,0,4289_7778022_100410,4289_167 -4289_75981,95,4289_22719,Tallaght,103951984,0,4289_7778022_100410,4289_167 -4289_75981,96,4289_22725,Tallaght,104064786,0,4289_7778022_100330,4289_168 -4289_75981,92,4289_22727,Tallaght,103622008,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_22728,Tallaght,103732008,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_22729,Tallaght,103842008,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_22730,Tallaght,103952008,0,4289_7778022_100360,4289_167 -4289_75981,96,4289_22736,Tallaght,104064808,0,4289_7778022_100290,4289_168 -4289_75981,92,4289_22742,Tallaght,103622036,0,4289_7778022_100390,4289_167 -4289_75981,93,4289_22743,Tallaght,103732036,0,4289_7778022_100390,4289_167 -4289_75981,94,4289_22744,Tallaght,103842036,0,4289_7778022_100390,4289_167 -4289_75981,95,4289_22745,Tallaght,103952036,0,4289_7778022_100390,4289_167 -4289_75981,96,4289_22751,Tallaght,104064836,0,4289_7778022_100300,4289_168 -4289_75981,92,4289_22757,Tallaght,103622064,0,4289_7778022_100400,4289_167 -4289_75981,93,4289_22758,Tallaght,103732064,0,4289_7778022_100400,4289_167 -4289_75981,94,4289_22759,Tallaght,103842064,0,4289_7778022_100400,4289_167 -4289_75981,95,4289_22760,Tallaght,103952064,0,4289_7778022_100400,4289_167 -4289_75981,96,4289_22766,Tallaght,104064858,0,4289_7778022_100320,4289_168 -4289_75963,92,4289_2277,Blackrock,103622694,0,4289_7778022_100160,4289_30 -4289_75981,92,4289_22772,Tallaght,103622100,0,4289_7778022_100370,4289_167 -4289_75981,93,4289_22773,Tallaght,103732100,0,4289_7778022_100370,4289_167 -4289_75981,94,4289_22774,Tallaght,103842100,0,4289_7778022_100370,4289_167 -4289_75981,95,4289_22775,Tallaght,103952100,0,4289_7778022_100370,4289_167 -4289_75963,93,4289_2278,Blackrock,103732694,0,4289_7778022_100160,4289_30 -4289_75981,96,4289_22781,Tallaght,104064892,0,4289_7778022_100350,4289_168 -4289_75981,92,4289_22783,Tallaght,103622134,0,4289_7778022_100380,4289_167 -4289_75981,93,4289_22784,Tallaght,103732134,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_22785,Tallaght,103842134,0,4289_7778022_100380,4289_167 -4289_75981,95,4289_22786,Tallaght,103952134,0,4289_7778022_100380,4289_167 -4289_75963,94,4289_2279,Blackrock,103842694,0,4289_7778022_100160,4289_30 -4289_75981,96,4289_22792,Tallaght,104064914,0,4289_7778022_100280,4289_168 -4289_75981,92,4289_22798,Tallaght,103622178,0,4289_7778022_100342,4289_167 -4289_75981,93,4289_22799,Tallaght,103732178,0,4289_7778022_100342,4289_167 -4289_75963,95,4289_2280,Blackrock,103952694,0,4289_7778022_100160,4289_30 -4289_75981,94,4289_22800,Tallaght,103842178,0,4289_7778022_100342,4289_167 -4289_75981,95,4289_22801,Tallaght,103952178,0,4289_7778022_100342,4289_167 -4289_75981,96,4289_22807,Tallaght,104064946,0,4289_7778022_100310,4289_168 -4289_75981,92,4289_22813,Tallaght,103622202,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_22814,Tallaght,103732202,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_22815,Tallaght,103842202,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_22816,Tallaght,103952202,0,4289_7778022_100350,4289_167 -4289_75981,96,4289_22822,Tallaght,104064964,0,4289_7778022_100340,4289_168 -4289_75981,92,4289_22828,Tallaght,103622236,0,4289_7778022_100410,4289_167 -4289_75981,93,4289_22829,Tallaght,103732236,0,4289_7778022_100410,4289_167 -4289_75981,94,4289_22830,Tallaght,103842236,0,4289_7778022_100410,4289_167 -4289_75981,95,4289_22831,Tallaght,103952236,0,4289_7778022_100410,4289_167 -4289_75981,96,4289_22837,Tallaght,104064998,0,4289_7778022_100330,4289_168 -4289_75981,92,4289_22839,Tallaght,103622268,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_22840,Tallaght,103732268,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_22841,Tallaght,103842268,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_22842,Tallaght,103952268,0,4289_7778022_100360,4289_167 -4289_75981,96,4289_22848,Tallaght,104065022,0,4289_7778022_100290,4289_168 -4289_75981,92,4289_22854,Tallaght,103622304,0,4289_7778022_100390,4289_167 -4289_75981,93,4289_22855,Tallaght,103732304,0,4289_7778022_100390,4289_167 -4289_75981,94,4289_22856,Tallaght,103842304,0,4289_7778022_100390,4289_167 -4289_75981,95,4289_22857,Tallaght,103952304,0,4289_7778022_100390,4289_167 -4289_75963,96,4289_2286,Blackrock,104065478,0,4289_7778022_100150,4289_30 -4289_75981,96,4289_22863,Tallaght,104065052,0,4289_7778022_100300,4289_168 -4289_75981,92,4289_22869,Tallaght,103622332,0,4289_7778022_100400,4289_167 -4289_75981,93,4289_22870,Tallaght,103732332,0,4289_7778022_100400,4289_167 -4289_75981,94,4289_22871,Tallaght,103842332,0,4289_7778022_100400,4289_167 -4289_75981,95,4289_22872,Tallaght,103952332,0,4289_7778022_100400,4289_167 -4289_75981,96,4289_22878,Tallaght,104065068,0,4289_7778022_100320,4289_168 -4289_75963,92,4289_2288,Blackrock,103622792,0,4289_7778022_100150,4289_30 -4289_75981,92,4289_22884,Tallaght,103622364,0,4289_7778022_100370,4289_167 -4289_75981,93,4289_22885,Tallaght,103732364,0,4289_7778022_100370,4289_167 -4289_75981,94,4289_22886,Tallaght,103842364,0,4289_7778022_100370,4289_167 -4289_75981,95,4289_22887,Tallaght,103952364,0,4289_7778022_100370,4289_167 -4289_75963,93,4289_2289,Blackrock,103732792,0,4289_7778022_100150,4289_30 -4289_75981,96,4289_22893,Tallaght,104065104,0,4289_7778022_100350,4289_168 -4289_75981,92,4289_22895,Tallaght,103622398,0,4289_7778022_100380,4289_167 -4289_75981,93,4289_22896,Tallaght,103732398,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_22897,Tallaght,103842398,0,4289_7778022_100380,4289_167 -4289_75981,95,4289_22898,Tallaght,103952398,0,4289_7778022_100380,4289_167 -4289_75963,94,4289_2290,Blackrock,103842792,0,4289_7778022_100150,4289_30 -4289_75981,96,4289_22904,Tallaght,104065126,0,4289_7778022_100280,4289_168 -4289_75963,95,4289_2291,Blackrock,103952792,0,4289_7778022_100150,4289_30 -4289_75981,92,4289_22910,Tallaght,103622424,0,4289_7778022_100342,4289_167 -4289_75981,93,4289_22911,Tallaght,103732424,0,4289_7778022_100342,4289_167 -4289_75981,94,4289_22912,Tallaght,103842424,0,4289_7778022_100342,4289_167 -4289_75981,95,4289_22913,Tallaght,103952424,0,4289_7778022_100342,4289_167 -4289_75981,96,4289_22919,Tallaght,104065158,0,4289_7778022_100310,4289_168 -4289_75981,92,4289_22925,Tallaght,103622456,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_22926,Tallaght,103732456,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_22927,Tallaght,103842456,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_22928,Tallaght,103952456,0,4289_7778022_100350,4289_167 -4289_75981,96,4289_22934,Tallaght,104065176,0,4289_7778022_100340,4289_168 -4289_75981,92,4289_22940,Tallaght,103622484,0,4289_7778022_100410,4289_167 -4289_75981,93,4289_22941,Tallaght,103732484,0,4289_7778022_100410,4289_167 -4289_75981,94,4289_22942,Tallaght,103842484,0,4289_7778022_100410,4289_167 -4289_75981,95,4289_22943,Tallaght,103952484,0,4289_7778022_100410,4289_167 -4289_75981,96,4289_22949,Tallaght,104065210,0,4289_7778022_100330,4289_168 -4289_75981,92,4289_22951,Tallaght,103622514,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_22952,Tallaght,103732514,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_22953,Tallaght,103842514,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_22954,Tallaght,103952514,0,4289_7778022_100360,4289_167 -4289_75981,96,4289_22960,Tallaght,104065228,0,4289_7778022_100290,4289_168 -4289_75981,92,4289_22966,Tallaght,103622546,0,4289_7778022_100390,4289_167 -4289_75981,93,4289_22967,Tallaght,103732546,0,4289_7778022_100390,4289_167 -4289_75981,94,4289_22968,Tallaght,103842546,0,4289_7778022_100390,4289_167 -4289_75981,95,4289_22969,Tallaght,103952546,0,4289_7778022_100390,4289_167 -4289_75981,96,4289_22975,Tallaght,104065264,0,4289_7778022_100300,4289_168 -4289_75963,92,4289_2298,Ticknock,103621229,1,4289_7778022_100150,4289_32 -4289_75981,92,4289_22981,Tallaght,103622574,0,4289_7778022_100400,4289_167 -4289_75981,93,4289_22982,Tallaght,103732574,0,4289_7778022_100400,4289_167 -4289_75981,94,4289_22983,Tallaght,103842574,0,4289_7778022_100400,4289_167 -4289_75981,95,4289_22984,Tallaght,103952574,0,4289_7778022_100400,4289_167 -4289_75963,93,4289_2299,Ticknock,103731229,1,4289_7778022_100150,4289_32 -4289_75981,96,4289_22990,Tallaght,104065286,0,4289_7778022_100320,4289_167 -4289_75981,92,4289_22996,Tallaght,103622598,0,4289_7778022_100370,4289_167 -4289_75981,93,4289_22997,Tallaght,103732598,0,4289_7778022_100370,4289_167 -4289_75981,94,4289_22998,Tallaght,103842598,0,4289_7778022_100370,4289_167 -4289_75981,95,4289_22999,Tallaght,103952598,0,4289_7778022_100370,4289_167 -4289_75963,94,4289_2300,Ticknock,103841229,1,4289_7778022_100150,4289_32 -4289_75981,96,4289_23005,Tallaght,104065314,0,4289_7778022_100280,4289_167 -4289_75981,92,4289_23007,Tallaght,103622624,0,4289_7778022_100380,4289_167 -4289_75981,93,4289_23008,Tallaght,103732624,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_23009,Tallaght,103842624,0,4289_7778022_100380,4289_167 -4289_75963,95,4289_2301,Ticknock,103951229,1,4289_7778022_100150,4289_32 -4289_75981,95,4289_23010,Tallaght,103952624,0,4289_7778022_100380,4289_167 -4289_75981,96,4289_23016,Tallaght,104065334,0,4289_7778022_100340,4289_168 -4289_75981,92,4289_23022,Tallaght,103622660,0,4289_7778022_100342,4289_167 -4289_75981,93,4289_23023,Tallaght,103732660,0,4289_7778022_100342,4289_167 -4289_75981,94,4289_23024,Tallaght,103842660,0,4289_7778022_100342,4289_167 -4289_75981,95,4289_23025,Tallaght,103952660,0,4289_7778022_100342,4289_167 -4289_75981,96,4289_23031,Tallaght,104065374,0,4289_7778022_100330,4289_167 -4289_75981,92,4289_23033,Tallaght,103622678,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_23034,Tallaght,103732678,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_23035,Tallaght,103842678,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_23036,Tallaght,103952678,0,4289_7778022_100350,4289_167 -4289_75981,96,4289_23046,Tallaght,104065402,0,4289_7778022_100300,4289_167 -4289_75981,92,4289_23048,Tallaght,103622710,0,4289_7778022_100410,4289_167 -4289_75981,93,4289_23049,Tallaght,103732710,0,4289_7778022_100410,4289_167 -4289_75981,94,4289_23050,Tallaght,103842710,0,4289_7778022_100410,4289_167 -4289_75981,95,4289_23051,Tallaght,103952710,0,4289_7778022_100410,4289_167 -4289_75981,92,4289_23058,Tallaght,103622726,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_23059,Tallaght,103732726,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_23060,Tallaght,103842726,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_23061,Tallaght,103952726,0,4289_7778022_100360,4289_167 -4289_75981,96,4289_23067,Tallaght,104065428,0,4289_7778022_100320,4289_167 -4289_75981,92,4289_23073,Tallaght,103622760,0,4289_7778022_100370,4289_167 -4289_75981,93,4289_23074,Tallaght,103732760,0,4289_7778022_100370,4289_167 -4289_75981,94,4289_23075,Tallaght,103842760,0,4289_7778022_100370,4289_167 -4289_75981,95,4289_23076,Tallaght,103952760,0,4289_7778022_100370,4289_167 -4289_75963,92,4289_2308,Ticknock,103621383,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_23082,Tallaght,104065466,0,4289_7778022_100340,4289_167 -4289_75981,92,4289_23084,Tallaght,103622780,0,4289_7778022_100380,4289_167 -4289_75981,93,4289_23085,Tallaght,103732780,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_23086,Tallaght,103842780,0,4289_7778022_100380,4289_167 -4289_75981,95,4289_23087,Tallaght,103952780,0,4289_7778022_100380,4289_167 -4289_75963,93,4289_2309,Ticknock,103731383,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_23097,Tallaght,104065494,0,4289_7778022_100330,4289_167 -4289_75981,92,4289_23099,Tallaght,103622808,0,4289_7778022_100342,4289_167 -4289_75963,94,4289_2310,Ticknock,103841383,1,4289_7778022_100160,4289_32 -4289_75981,93,4289_23100,Tallaght,103732808,0,4289_7778022_100342,4289_167 -4289_75981,94,4289_23101,Tallaght,103842808,0,4289_7778022_100342,4289_167 -4289_75981,95,4289_23102,Tallaght,103952808,0,4289_7778022_100342,4289_167 -4289_75981,92,4289_23109,Tallaght,103622828,0,4289_7778022_100350,4289_167 -4289_75963,95,4289_2311,Ticknock,103951383,1,4289_7778022_100160,4289_32 -4289_75981,93,4289_23110,Tallaght,103732828,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_23111,Tallaght,103842828,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_23112,Tallaght,103952828,0,4289_7778022_100350,4289_167 -4289_75981,96,4289_23118,Tallaght,104065520,0,4289_7778022_100300,4289_168 -4289_75981,92,4289_23124,Tallaght,103622864,0,4289_7778022_100410,4289_167 -4289_75981,93,4289_23125,Tallaght,103732864,0,4289_7778022_100410,4289_167 -4289_75981,94,4289_23126,Tallaght,103842864,0,4289_7778022_100410,4289_167 -4289_75981,95,4289_23127,Tallaght,103952864,0,4289_7778022_100410,4289_167 -4289_75981,96,4289_23133,Tallaght,104065554,0,4289_7778022_100320,4289_167 -4289_75981,92,4289_23135,Tallaght,103622880,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_23136,Tallaght,103732880,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_23137,Tallaght,103842880,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_23138,Tallaght,103952880,0,4289_7778022_100360,4289_167 -4289_75981,96,4289_23148,Tallaght,104065580,0,4289_7778022_100340,4289_167 -4289_75981,92,4289_23150,Tallaght,103622904,0,4289_7778022_100370,4289_167 -4289_75981,93,4289_23151,Tallaght,103732904,0,4289_7778022_100370,4289_167 -4289_75981,94,4289_23152,Tallaght,103842904,0,4289_7778022_100370,4289_167 -4289_75981,95,4289_23153,Tallaght,103952904,0,4289_7778022_100370,4289_167 -4289_75981,92,4289_23160,Tallaght,103622926,0,4289_7778022_100380,4289_167 -4289_75981,93,4289_23161,Tallaght,103732926,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_23162,Tallaght,103842926,0,4289_7778022_100380,4289_167 -4289_75981,95,4289_23163,Tallaght,103952926,0,4289_7778022_100380,4289_167 -4289_75981,96,4289_23169,Tallaght,104065608,0,4289_7778022_100330,4289_167 -4289_75981,92,4289_23175,Tallaght,103622956,0,4289_7778022_100342,4289_167 -4289_75981,93,4289_23176,Tallaght,103732956,0,4289_7778022_100342,4289_167 -4289_75981,94,4289_23177,Tallaght,103842956,0,4289_7778022_100342,4289_167 -4289_75981,95,4289_23178,Tallaght,103952956,0,4289_7778022_100342,4289_167 -4289_75963,92,4289_2318,Ticknock,103621503,1,4289_7778022_100150,4289_32 -4289_75981,96,4289_23184,Tallaght,104065640,0,4289_7778022_100300,4289_167 -4289_75981,92,4289_23186,Tallaght,103622978,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_23187,Tallaght,103732978,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_23188,Tallaght,103842978,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_23189,Tallaght,103952978,0,4289_7778022_100350,4289_167 -4289_75963,93,4289_2319,Ticknock,103731503,1,4289_7778022_100150,4289_32 -4289_75981,96,4289_23199,Tallaght,104065668,0,4289_7778022_100320,4289_167 -4289_75963,94,4289_2320,Ticknock,103841503,1,4289_7778022_100150,4289_32 -4289_75981,92,4289_23201,Tallaght,103623004,0,4289_7778022_100360,4289_167 -4289_75981,93,4289_23202,Tallaght,103733004,0,4289_7778022_100360,4289_167 -4289_75981,94,4289_23203,Tallaght,103843004,0,4289_7778022_100360,4289_167 -4289_75981,95,4289_23204,Tallaght,103953004,0,4289_7778022_100360,4289_167 -4289_75963,95,4289_2321,Ticknock,103951503,1,4289_7778022_100150,4289_32 -4289_75981,92,4289_23211,Tallaght,103623026,0,4289_7778022_100380,4289_167 -4289_75981,93,4289_23212,Tallaght,103733026,0,4289_7778022_100380,4289_167 -4289_75981,94,4289_23213,Tallaght,103843026,0,4289_7778022_100380,4289_167 -4289_75981,95,4289_23214,Tallaght,103953026,0,4289_7778022_100380,4289_167 -4289_75981,96,4289_23220,Tallaght,104065694,0,4289_7778022_100340,4289_168 -4289_75981,92,4289_23226,Tallaght,103623056,0,4289_7778022_100350,4289_167 -4289_75981,93,4289_23227,Tallaght,103733056,0,4289_7778022_100350,4289_167 -4289_75981,94,4289_23228,Tallaght,103843056,0,4289_7778022_100350,4289_167 -4289_75981,95,4289_23229,Tallaght,103953056,0,4289_7778022_100350,4289_167 -4289_75981,96,4289_23235,Tallaght,104065726,0,4289_7778022_100300,4289_168 -4289_75981,92,4289_23241,Liffey Valley SC,103621011,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_23242,Liffey Valley SC,103731011,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_23243,Liffey Valley SC,103841011,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_23244,Liffey Valley SC,103951011,1,4289_7778022_100350,4289_170 -4289_75981,96,4289_23250,Liffey Valley SC,104064007,1,4289_7778022_100290,4289_171 -4289_75981,92,4289_23252,Liffey Valley SC,103621035,1,4289_7778022_100341,4289_170 -4289_75981,93,4289_23253,Liffey Valley SC,103731035,1,4289_7778022_100341,4289_170 -4289_75981,94,4289_23254,Liffey Valley SC,103841035,1,4289_7778022_100341,4289_170 -4289_75981,95,4289_23255,Liffey Valley SC,103951035,1,4289_7778022_100341,4289_170 -4289_75981,96,4289_23261,Liffey Valley SC,104064021,1,4289_7778022_100280,4289_171 -4289_75981,92,4289_23263,Liffey Valley SC,103621055,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_23264,Liffey Valley SC,103731055,1,4289_7778022_100370,4289_170 -4289_75981,94,4289_23265,Liffey Valley SC,103841055,1,4289_7778022_100370,4289_170 -4289_75981,95,4289_23266,Liffey Valley SC,103951055,1,4289_7778022_100370,4289_170 -4289_75963,96,4289_2327,Ticknock,104064357,1,4289_7778022_100142,4289_33 -4289_75981,96,4289_23272,Liffey Valley SC,104064041,1,4289_7778022_100310,4289_170 -4289_75981,92,4289_23274,Liffey Valley SC,103621073,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_23275,Liffey Valley SC,103731073,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_23276,Liffey Valley SC,103841073,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_23277,Liffey Valley SC,103951073,1,4289_7778022_100380,4289_170 -4289_75981,96,4289_23283,Liffey Valley SC,104064065,1,4289_7778022_100290,4289_170 -4289_75981,92,4289_23285,Liffey Valley SC,103621105,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_23286,Liffey Valley SC,103731105,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_23287,Liffey Valley SC,103841105,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_23288,Liffey Valley SC,103951105,1,4289_7778022_100350,4289_170 -4289_75963,92,4289_2329,Ticknock,103621615,1,4289_7778022_100160,4289_32 -4289_75981,92,4289_23295,Liffey Valley SC,103621137,1,4289_7778022_100360,4289_170 -4289_75981,93,4289_23296,Liffey Valley SC,103731137,1,4289_7778022_100360,4289_170 -4289_75981,94,4289_23297,Liffey Valley SC,103841137,1,4289_7778022_100360,4289_170 -4289_75981,95,4289_23298,Liffey Valley SC,103951137,1,4289_7778022_100360,4289_170 -4289_75960,92,4289_233,Sutton Station,103622010,0,4289_7778022_103104,4289_1 -4289_75963,93,4289_2330,Ticknock,103731615,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_23304,Liffey Valley SC,104064085,1,4289_7778022_100300,4289_171 -4289_75981,92,4289_23306,Liffey Valley SC,103621171,1,4289_7778022_100341,4289_170 -4289_75981,93,4289_23307,Liffey Valley SC,103731171,1,4289_7778022_100341,4289_170 -4289_75981,94,4289_23308,Liffey Valley SC,103841171,1,4289_7778022_100341,4289_170 -4289_75981,95,4289_23309,Liffey Valley SC,103951171,1,4289_7778022_100341,4289_170 -4289_75963,94,4289_2331,Ticknock,103841615,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_23315,Liffey Valley SC,104064117,1,4289_7778022_100280,4289_170 -4289_75981,92,4289_23317,Liffey Valley SC,103621199,1,4289_7778022_100390,4289_170 -4289_75981,93,4289_23318,Liffey Valley SC,103731199,1,4289_7778022_100390,4289_170 -4289_75981,94,4289_23319,Liffey Valley SC,103841199,1,4289_7778022_100390,4289_170 -4289_75963,95,4289_2332,Ticknock,103951615,1,4289_7778022_100160,4289_32 -4289_75981,95,4289_23320,Liffey Valley SC,103951199,1,4289_7778022_100390,4289_170 -4289_75981,96,4289_23330,Liffey Valley SC,104064149,1,4289_7778022_100310,4289_170 -4289_75981,92,4289_23332,Liffey Valley SC,103621227,1,4289_7778022_100400,4289_170 -4289_75981,93,4289_23333,Liffey Valley SC,103731227,1,4289_7778022_100400,4289_170 -4289_75981,94,4289_23334,Liffey Valley SC,103841227,1,4289_7778022_100400,4289_170 -4289_75981,95,4289_23335,Liffey Valley SC,103951227,1,4289_7778022_100400,4289_170 -4289_75981,92,4289_23342,Liffey Valley SC,103621259,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_23343,Liffey Valley SC,103731259,1,4289_7778022_100370,4289_170 -4289_75981,94,4289_23344,Liffey Valley SC,103841259,1,4289_7778022_100370,4289_170 -4289_75981,95,4289_23345,Liffey Valley SC,103951259,1,4289_7778022_100370,4289_170 -4289_75981,96,4289_23351,Liffey Valley SC,104064167,1,4289_7778022_100290,4289_171 -4289_75981,92,4289_23357,Liffey Valley SC,103621309,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_23358,Liffey Valley SC,103731309,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_23359,Liffey Valley SC,103841309,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_23360,Liffey Valley SC,103951309,1,4289_7778022_100380,4289_170 -4289_75981,96,4289_23366,Liffey Valley SC,104064203,1,4289_7778022_100300,4289_170 -4289_75981,92,4289_23368,Liffey Valley SC,103621341,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_23369,Liffey Valley SC,103731341,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_23370,Liffey Valley SC,103841341,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_23371,Liffey Valley SC,103951341,1,4289_7778022_100350,4289_170 -4289_75963,96,4289_2338,Ticknock,104064463,1,4289_7778022_100150,4289_33 -4289_75981,96,4289_23381,Liffey Valley SC,104064235,1,4289_7778022_100280,4289_170 -4289_75981,92,4289_23383,Liffey Valley SC,103621373,1,4289_7778022_100410,4289_170 -4289_75981,93,4289_23384,Liffey Valley SC,103731373,1,4289_7778022_100410,4289_170 -4289_75981,94,4289_23385,Liffey Valley SC,103841373,1,4289_7778022_100410,4289_170 -4289_75981,95,4289_23386,Liffey Valley SC,103951373,1,4289_7778022_100410,4289_170 -4289_75981,92,4289_23393,Liffey Valley SC,103621403,1,4289_7778022_100360,4289_170 -4289_75981,93,4289_23394,Liffey Valley SC,103731403,1,4289_7778022_100360,4289_170 -4289_75981,94,4289_23395,Liffey Valley SC,103841403,1,4289_7778022_100360,4289_170 -4289_75981,95,4289_23396,Liffey Valley SC,103951403,1,4289_7778022_100360,4289_170 -4289_75960,93,4289_234,Sutton Station,103732010,0,4289_7778022_103104,4289_1 -4289_75963,92,4289_2340,Ticknock,103621729,1,4289_7778022_100150,4289_32 -4289_75981,96,4289_23402,Liffey Valley SC,104064261,1,4289_7778022_100310,4289_171 -4289_75981,92,4289_23408,Liffey Valley SC,103621431,1,4289_7778022_100341,4289_170 -4289_75981,93,4289_23409,Liffey Valley SC,103731431,1,4289_7778022_100341,4289_170 -4289_75963,93,4289_2341,Ticknock,103731729,1,4289_7778022_100150,4289_32 -4289_75981,94,4289_23410,Liffey Valley SC,103841431,1,4289_7778022_100341,4289_170 -4289_75981,95,4289_23411,Liffey Valley SC,103951431,1,4289_7778022_100341,4289_170 -4289_75981,96,4289_23417,Liffey Valley SC,104064285,1,4289_7778022_100330,4289_171 -4289_75981,92,4289_23419,Liffey Valley SC,103621455,1,4289_7778022_100390,4289_170 -4289_75963,94,4289_2342,Ticknock,103841729,1,4289_7778022_100150,4289_32 -4289_75981,93,4289_23420,Liffey Valley SC,103731455,1,4289_7778022_100390,4289_170 -4289_75981,94,4289_23421,Liffey Valley SC,103841455,1,4289_7778022_100390,4289_170 -4289_75981,95,4289_23422,Liffey Valley SC,103951455,1,4289_7778022_100390,4289_170 -4289_75981,96,4289_23428,Liffey Valley SC,104064313,1,4289_7778022_100290,4289_171 -4289_75963,95,4289_2343,Ticknock,103951729,1,4289_7778022_100150,4289_32 -4289_75981,92,4289_23434,Liffey Valley SC,103621487,1,4289_7778022_100400,4289_170 -4289_75981,93,4289_23435,Liffey Valley SC,103731487,1,4289_7778022_100400,4289_170 -4289_75981,94,4289_23436,Liffey Valley SC,103841487,1,4289_7778022_100400,4289_170 -4289_75981,95,4289_23437,Liffey Valley SC,103951487,1,4289_7778022_100400,4289_170 -4289_75981,96,4289_23443,Liffey Valley SC,104064341,1,4289_7778022_100300,4289_171 -4289_75981,92,4289_23445,Liffey Valley SC,103621513,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_23446,Liffey Valley SC,103731513,1,4289_7778022_100370,4289_170 -4289_75981,94,4289_23447,Liffey Valley SC,103841513,1,4289_7778022_100370,4289_170 -4289_75981,95,4289_23448,Liffey Valley SC,103951513,1,4289_7778022_100370,4289_170 -4289_75981,96,4289_23454,Liffey Valley SC,104064365,1,4289_7778022_100320,4289_171 -4289_75981,92,4289_23460,Liffey Valley SC,103621543,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_23461,Liffey Valley SC,103731543,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_23462,Liffey Valley SC,103841543,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_23463,Liffey Valley SC,103951543,1,4289_7778022_100380,4289_170 -4289_75981,96,4289_23469,Liffey Valley SC,104064393,1,4289_7778022_100280,4289_171 -4289_75981,92,4289_23475,Liffey Valley SC,103621569,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_23476,Liffey Valley SC,103731569,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_23477,Liffey Valley SC,103841569,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_23478,Liffey Valley SC,103951569,1,4289_7778022_100350,4289_170 -4289_75981,96,4289_23484,Liffey Valley SC,104064419,1,4289_7778022_100310,4289_171 -4289_75963,96,4289_2349,Ticknock,104064571,1,4289_7778022_100142,4289_33 -4289_75981,92,4289_23490,Liffey Valley SC,103621599,1,4289_7778022_100410,4289_170 -4289_75981,93,4289_23491,Liffey Valley SC,103731599,1,4289_7778022_100410,4289_170 -4289_75981,94,4289_23492,Liffey Valley SC,103841599,1,4289_7778022_100410,4289_170 -4289_75981,95,4289_23493,Liffey Valley SC,103951599,1,4289_7778022_100410,4289_170 -4289_75981,96,4289_23499,Liffey Valley SC,104064447,1,4289_7778022_100330,4289_171 -4289_75960,94,4289_235,Sutton Station,103842010,0,4289_7778022_103104,4289_1 -4289_75981,92,4289_23501,Liffey Valley SC,103621625,1,4289_7778022_100360,4289_170 -4289_75981,93,4289_23502,Liffey Valley SC,103731625,1,4289_7778022_100360,4289_170 -4289_75981,94,4289_23503,Liffey Valley SC,103841625,1,4289_7778022_100360,4289_170 -4289_75981,95,4289_23504,Liffey Valley SC,103951625,1,4289_7778022_100360,4289_170 -4289_75963,92,4289_2351,Ticknock,103621841,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_23510,Liffey Valley SC,104064475,1,4289_7778022_100290,4289_171 -4289_75981,92,4289_23516,Liffey Valley SC,103621655,1,4289_7778022_100390,4289_170 -4289_75981,93,4289_23517,Liffey Valley SC,103731655,1,4289_7778022_100390,4289_170 -4289_75981,94,4289_23518,Liffey Valley SC,103841655,1,4289_7778022_100390,4289_170 -4289_75981,95,4289_23519,Liffey Valley SC,103951655,1,4289_7778022_100390,4289_170 -4289_75963,93,4289_2352,Ticknock,103731841,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_23525,Liffey Valley SC,104064503,1,4289_7778022_100300,4289_171 -4289_75963,94,4289_2353,Ticknock,103841841,1,4289_7778022_100160,4289_32 -4289_75981,92,4289_23531,Liffey Valley SC,103621683,1,4289_7778022_100400,4289_170 -4289_75981,93,4289_23532,Liffey Valley SC,103731683,1,4289_7778022_100400,4289_170 -4289_75981,94,4289_23533,Liffey Valley SC,103841683,1,4289_7778022_100400,4289_170 -4289_75981,95,4289_23534,Liffey Valley SC,103951683,1,4289_7778022_100400,4289_170 -4289_75963,95,4289_2354,Ticknock,103951841,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_23540,Liffey Valley SC,104064525,1,4289_7778022_100320,4289_171 -4289_75981,92,4289_23546,Liffey Valley SC,103621711,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_23547,Liffey Valley SC,103731711,1,4289_7778022_100370,4289_170 -4289_75981,94,4289_23548,Liffey Valley SC,103841711,1,4289_7778022_100370,4289_170 -4289_75981,95,4289_23549,Liffey Valley SC,103951711,1,4289_7778022_100370,4289_170 -4289_75981,96,4289_23555,Liffey Valley SC,104064555,1,4289_7778022_100350,4289_171 -4289_75981,92,4289_23557,Liffey Valley SC,103621739,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_23558,Liffey Valley SC,103731739,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_23559,Liffey Valley SC,103841739,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_23560,Liffey Valley SC,103951739,1,4289_7778022_100380,4289_170 -4289_75981,96,4289_23566,Liffey Valley SC,104064579,1,4289_7778022_100280,4289_171 -4289_75981,92,4289_23572,Liffey Valley SC,103621767,1,4289_7778022_100342,4289_170 -4289_75981,93,4289_23573,Liffey Valley SC,103731767,1,4289_7778022_100342,4289_170 -4289_75981,94,4289_23574,Liffey Valley SC,103841767,1,4289_7778022_100342,4289_170 -4289_75981,95,4289_23575,Liffey Valley SC,103951767,1,4289_7778022_100342,4289_170 -4289_75981,96,4289_23581,Liffey Valley SC,104064609,1,4289_7778022_100310,4289_171 -4289_75981,92,4289_23587,Liffey Valley SC,103621795,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_23588,Liffey Valley SC,103731795,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_23589,Liffey Valley SC,103841795,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_23590,Liffey Valley SC,103951795,1,4289_7778022_100350,4289_170 -4289_75981,96,4289_23596,Liffey Valley SC,104064633,1,4289_7778022_100340,4289_171 -4289_75960,95,4289_236,Sutton Station,103952010,0,4289_7778022_103104,4289_1 -4289_75963,96,4289_2360,Ticknock,104064677,1,4289_7778022_100150,4289_33 -4289_75981,92,4289_23602,Liffey Valley SC,103621825,1,4289_7778022_100410,4289_170 -4289_75981,93,4289_23603,Liffey Valley SC,103731825,1,4289_7778022_100410,4289_170 -4289_75981,94,4289_23604,Liffey Valley SC,103841825,1,4289_7778022_100410,4289_170 -4289_75981,95,4289_23605,Liffey Valley SC,103951825,1,4289_7778022_100410,4289_170 -4289_75981,96,4289_23611,Liffey Valley SC,104064663,1,4289_7778022_100330,4289_171 -4289_75981,92,4289_23613,Liffey Valley SC,103621853,1,4289_7778022_100360,4289_170 -4289_75981,93,4289_23614,Liffey Valley SC,103731853,1,4289_7778022_100360,4289_170 -4289_75981,94,4289_23615,Liffey Valley SC,103841853,1,4289_7778022_100360,4289_170 -4289_75981,95,4289_23616,Liffey Valley SC,103951853,1,4289_7778022_100360,4289_170 -4289_75981,96,4289_23622,Liffey Valley SC,104064685,1,4289_7778022_100290,4289_171 -4289_75981,92,4289_23628,Liffey Valley SC,103621885,1,4289_7778022_100390,4289_170 -4289_75981,93,4289_23629,Liffey Valley SC,103731885,1,4289_7778022_100390,4289_170 -4289_75981,94,4289_23630,Liffey Valley SC,103841885,1,4289_7778022_100390,4289_170 -4289_75981,95,4289_23631,Liffey Valley SC,103951885,1,4289_7778022_100390,4289_170 -4289_75981,96,4289_23637,Liffey Valley SC,104064715,1,4289_7778022_100300,4289_171 -4289_75981,92,4289_23643,Liffey Valley SC,103621917,1,4289_7778022_100400,4289_170 -4289_75981,93,4289_23644,Liffey Valley SC,103731917,1,4289_7778022_100400,4289_170 -4289_75981,94,4289_23645,Liffey Valley SC,103841917,1,4289_7778022_100400,4289_170 -4289_75981,95,4289_23646,Liffey Valley SC,103951917,1,4289_7778022_100400,4289_170 -4289_75981,96,4289_23652,Liffey Valley SC,104064739,1,4289_7778022_100320,4289_171 -4289_75981,92,4289_23658,Liffey Valley SC,103621943,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_23659,Liffey Valley SC,103731943,1,4289_7778022_100370,4289_170 -4289_75963,92,4289_2366,Ticknock,103621959,1,4289_7778022_100150,4289_32 -4289_75981,94,4289_23660,Liffey Valley SC,103841943,1,4289_7778022_100370,4289_170 -4289_75981,95,4289_23661,Liffey Valley SC,103951943,1,4289_7778022_100370,4289_170 -4289_75981,96,4289_23667,Liffey Valley SC,104064769,1,4289_7778022_100350,4289_170 -4289_75981,92,4289_23669,Liffey Valley SC,103621967,1,4289_7778022_100380,4289_170 -4289_75963,93,4289_2367,Ticknock,103731959,1,4289_7778022_100150,4289_32 -4289_75981,93,4289_23670,Liffey Valley SC,103731967,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_23671,Liffey Valley SC,103841967,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_23672,Liffey Valley SC,103951967,1,4289_7778022_100380,4289_170 -4289_75981,96,4289_23678,Liffey Valley SC,104064793,1,4289_7778022_100280,4289_170 -4289_75963,94,4289_2368,Ticknock,103841959,1,4289_7778022_100150,4289_32 -4289_75981,92,4289_23684,Liffey Valley SC,103621999,1,4289_7778022_100342,4289_170 -4289_75981,93,4289_23685,Liffey Valley SC,103731999,1,4289_7778022_100342,4289_170 -4289_75981,94,4289_23686,Liffey Valley SC,103841999,1,4289_7778022_100342,4289_170 -4289_75981,95,4289_23687,Liffey Valley SC,103951999,1,4289_7778022_100342,4289_170 -4289_75963,95,4289_2369,Ticknock,103951959,1,4289_7778022_100150,4289_32 -4289_75981,96,4289_23693,Liffey Valley SC,104064823,1,4289_7778022_100310,4289_170 -4289_75981,92,4289_23699,Liffey Valley SC,103622029,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_23700,Liffey Valley SC,103732029,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_23701,Liffey Valley SC,103842029,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_23702,Liffey Valley SC,103952029,1,4289_7778022_100350,4289_170 -4289_75981,96,4289_23708,Liffey Valley SC,104064845,1,4289_7778022_100340,4289_171 -4289_75981,92,4289_23714,Liffey Valley SC,103622055,1,4289_7778022_100410,4289_170 -4289_75981,93,4289_23715,Liffey Valley SC,103732055,1,4289_7778022_100410,4289_170 -4289_75981,94,4289_23716,Liffey Valley SC,103842055,1,4289_7778022_100410,4289_170 -4289_75981,95,4289_23717,Liffey Valley SC,103952055,1,4289_7778022_100410,4289_170 -4289_75981,96,4289_23723,Liffey Valley SC,104064875,1,4289_7778022_100330,4289_171 -4289_75981,92,4289_23725,Liffey Valley SC,103622087,1,4289_7778022_100360,4289_170 -4289_75981,93,4289_23726,Liffey Valley SC,103732087,1,4289_7778022_100360,4289_170 -4289_75981,94,4289_23727,Liffey Valley SC,103842087,1,4289_7778022_100360,4289_170 -4289_75981,95,4289_23728,Liffey Valley SC,103952087,1,4289_7778022_100360,4289_170 -4289_75981,96,4289_23734,Liffey Valley SC,104064899,1,4289_7778022_100290,4289_171 -4289_75981,92,4289_23740,Liffey Valley SC,103622121,1,4289_7778022_100390,4289_170 -4289_75981,93,4289_23741,Liffey Valley SC,103732121,1,4289_7778022_100390,4289_170 -4289_75981,94,4289_23742,Liffey Valley SC,103842121,1,4289_7778022_100390,4289_170 -4289_75981,95,4289_23743,Liffey Valley SC,103952121,1,4289_7778022_100390,4289_170 -4289_75981,96,4289_23749,Liffey Valley SC,104064929,1,4289_7778022_100300,4289_171 -4289_75963,96,4289_2375,Ticknock,104064783,1,4289_7778022_100142,4289_33 -4289_75981,92,4289_23755,Liffey Valley SC,103622149,1,4289_7778022_100400,4289_170 -4289_75981,93,4289_23756,Liffey Valley SC,103732149,1,4289_7778022_100400,4289_170 -4289_75981,94,4289_23757,Liffey Valley SC,103842149,1,4289_7778022_100400,4289_170 -4289_75981,95,4289_23758,Liffey Valley SC,103952149,1,4289_7778022_100400,4289_170 -4289_75981,96,4289_23764,Liffey Valley SC,104064951,1,4289_7778022_100320,4289_171 -4289_75981,92,4289_23770,Liffey Valley SC,103622185,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_23771,Liffey Valley SC,103732185,1,4289_7778022_100370,4289_170 -4289_75981,94,4289_23772,Liffey Valley SC,103842185,1,4289_7778022_100370,4289_170 -4289_75981,95,4289_23773,Liffey Valley SC,103952185,1,4289_7778022_100370,4289_170 -4289_75981,96,4289_23779,Liffey Valley SC,104064983,1,4289_7778022_100350,4289_171 -4289_75981,92,4289_23781,Liffey Valley SC,103622229,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_23782,Liffey Valley SC,103732229,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_23783,Liffey Valley SC,103842229,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_23784,Liffey Valley SC,103952229,1,4289_7778022_100380,4289_170 -4289_75981,96,4289_23790,Liffey Valley SC,104065005,1,4289_7778022_100280,4289_171 -4289_75981,92,4289_23796,Liffey Valley SC,103622277,1,4289_7778022_100342,4289_170 -4289_75981,93,4289_23797,Liffey Valley SC,103732277,1,4289_7778022_100342,4289_170 -4289_75981,94,4289_23798,Liffey Valley SC,103842277,1,4289_7778022_100342,4289_170 -4289_75981,95,4289_23799,Liffey Valley SC,103952277,1,4289_7778022_100342,4289_170 -4289_75981,96,4289_23805,Liffey Valley SC,104065035,1,4289_7778022_100310,4289_171 -4289_75963,92,4289_2381,Ticknock,103622075,1,4289_7778022_100160,4289_32 -4289_75981,92,4289_23811,Liffey Valley SC,103622313,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_23812,Liffey Valley SC,103732313,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_23813,Liffey Valley SC,103842313,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_23814,Liffey Valley SC,103952313,1,4289_7778022_100350,4289_170 -4289_75963,93,4289_2382,Ticknock,103732075,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_23820,Liffey Valley SC,104065057,1,4289_7778022_100340,4289_171 -4289_75981,92,4289_23826,Liffey Valley SC,103622345,1,4289_7778022_100410,4289_170 -4289_75981,93,4289_23827,Liffey Valley SC,103732345,1,4289_7778022_100410,4289_170 -4289_75981,94,4289_23828,Liffey Valley SC,103842345,1,4289_7778022_100410,4289_170 -4289_75981,95,4289_23829,Liffey Valley SC,103952345,1,4289_7778022_100410,4289_170 -4289_75963,94,4289_2383,Ticknock,103842075,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_23835,Liffey Valley SC,104065089,1,4289_7778022_100330,4289_171 -4289_75981,92,4289_23837,Liffey Valley SC,103622369,1,4289_7778022_100360,4289_170 -4289_75981,93,4289_23838,Liffey Valley SC,103732369,1,4289_7778022_100360,4289_170 -4289_75981,94,4289_23839,Liffey Valley SC,103842369,1,4289_7778022_100360,4289_170 -4289_75963,95,4289_2384,Ticknock,103952075,1,4289_7778022_100160,4289_32 -4289_75981,95,4289_23840,Liffey Valley SC,103952369,1,4289_7778022_100360,4289_170 -4289_75981,96,4289_23846,Liffey Valley SC,104065111,1,4289_7778022_100290,4289_171 -4289_75981,92,4289_23852,Liffey Valley SC,103622401,1,4289_7778022_100390,4289_170 -4289_75981,93,4289_23853,Liffey Valley SC,103732401,1,4289_7778022_100390,4289_170 -4289_75981,94,4289_23854,Liffey Valley SC,103842401,1,4289_7778022_100390,4289_170 -4289_75981,95,4289_23855,Liffey Valley SC,103952401,1,4289_7778022_100390,4289_170 -4289_75981,96,4289_23861,Liffey Valley SC,104065143,1,4289_7778022_100300,4289_171 -4289_75981,92,4289_23867,Liffey Valley SC,103622433,1,4289_7778022_100400,4289_170 -4289_75981,93,4289_23868,Liffey Valley SC,103732433,1,4289_7778022_100400,4289_170 -4289_75981,94,4289_23869,Liffey Valley SC,103842433,1,4289_7778022_100400,4289_170 -4289_75981,95,4289_23870,Liffey Valley SC,103952433,1,4289_7778022_100400,4289_170 -4289_75981,96,4289_23876,Liffey Valley SC,104065163,1,4289_7778022_100320,4289_171 -4289_75981,92,4289_23882,Liffey Valley SC,103622463,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_23883,Liffey Valley SC,103732463,1,4289_7778022_100370,4289_170 -4289_75981,94,4289_23884,Liffey Valley SC,103842463,1,4289_7778022_100370,4289_170 -4289_75981,95,4289_23885,Liffey Valley SC,103952463,1,4289_7778022_100370,4289_170 -4289_75981,96,4289_23891,Liffey Valley SC,104065193,1,4289_7778022_100350,4289_171 -4289_75981,92,4289_23893,Liffey Valley SC,103622491,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_23894,Liffey Valley SC,103732491,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_23895,Liffey Valley SC,103842491,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_23896,Liffey Valley SC,103952491,1,4289_7778022_100380,4289_170 -4289_75963,96,4289_2390,Ticknock,104064891,1,4289_7778022_100150,4289_33 -4289_75981,96,4289_23902,Liffey Valley SC,104065221,1,4289_7778022_100280,4289_171 -4289_75981,92,4289_23908,Liffey Valley SC,103622521,1,4289_7778022_100342,4289_170 -4289_75981,93,4289_23909,Liffey Valley SC,103732521,1,4289_7778022_100342,4289_170 -4289_75981,94,4289_23910,Liffey Valley SC,103842521,1,4289_7778022_100342,4289_170 -4289_75981,95,4289_23911,Liffey Valley SC,103952521,1,4289_7778022_100342,4289_170 -4289_75981,96,4289_23917,Liffey Valley SC,104065247,1,4289_7778022_100340,4289_171 -4289_75981,92,4289_23923,Liffey Valley SC,103622549,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_23924,Liffey Valley SC,103732549,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_23925,Liffey Valley SC,103842549,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_23926,Liffey Valley SC,103952549,1,4289_7778022_100350,4289_170 -4289_75981,96,4289_23932,Liffey Valley SC,104065269,1,4289_7778022_100330,4289_171 -4289_75981,92,4289_23938,Liffey Valley SC,103622577,1,4289_7778022_100410,4289_170 -4289_75981,93,4289_23939,Liffey Valley SC,103732577,1,4289_7778022_100410,4289_170 -4289_75981,94,4289_23940,Liffey Valley SC,103842577,1,4289_7778022_100410,4289_170 -4289_75981,95,4289_23941,Liffey Valley SC,103952577,1,4289_7778022_100410,4289_170 -4289_75981,96,4289_23947,Liffey Valley SC,104065301,1,4289_7778022_100290,4289_171 -4289_75981,92,4289_23949,Liffey Valley SC,103622607,1,4289_7778022_100360,4289_170 -4289_75963,96,4289_2395,Ticknock,104064995,1,4289_7778022_100142,4289_32 -4289_75981,93,4289_23950,Liffey Valley SC,103732607,1,4289_7778022_100360,4289_170 -4289_75981,94,4289_23951,Liffey Valley SC,103842607,1,4289_7778022_100360,4289_170 -4289_75981,95,4289_23952,Liffey Valley SC,103952607,1,4289_7778022_100360,4289_170 -4289_75981,96,4289_23958,Liffey Valley SC,104065323,1,4289_7778022_100300,4289_171 -4289_75981,92,4289_23964,Liffey Valley SC,103622637,1,4289_7778022_100400,4289_170 -4289_75981,93,4289_23965,Liffey Valley SC,103732637,1,4289_7778022_100400,4289_170 -4289_75981,94,4289_23966,Liffey Valley SC,103842637,1,4289_7778022_100400,4289_170 -4289_75981,95,4289_23967,Liffey Valley SC,103952637,1,4289_7778022_100400,4289_170 -4289_75981,96,4289_23973,Liffey Valley SC,104065353,1,4289_7778022_100320,4289_170 -4289_75981,92,4289_23975,Liffey Valley SC,103622661,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_23976,Liffey Valley SC,103732661,1,4289_7778022_100370,4289_170 -4289_75981,94,4289_23977,Liffey Valley SC,103842661,1,4289_7778022_100370,4289_170 -4289_75981,95,4289_23978,Liffey Valley SC,103952661,1,4289_7778022_100370,4289_170 -4289_75981,96,4289_23988,Liffey Valley SC,104065389,1,4289_7778022_100340,4289_170 -4289_75981,92,4289_23990,Liffey Valley SC,103622691,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_23991,Liffey Valley SC,103732691,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_23992,Liffey Valley SC,103842691,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_23993,Liffey Valley SC,103952691,1,4289_7778022_100380,4289_170 -4289_75960,92,4289_24,Sutton Station,103621110,0,4289_7778022_103108,4289_1 -4289_75981,92,4289_24000,Liffey Valley SC,103622715,1,4289_7778022_100342,4289_170 -4289_75981,93,4289_24001,Liffey Valley SC,103732715,1,4289_7778022_100342,4289_170 -4289_75981,94,4289_24002,Liffey Valley SC,103842715,1,4289_7778022_100342,4289_170 -4289_75981,95,4289_24003,Liffey Valley SC,103952715,1,4289_7778022_100342,4289_170 -4289_75981,96,4289_24009,Liffey Valley SC,104065419,1,4289_7778022_100330,4289_171 -4289_75963,92,4289_2401,Ticknock,103622239,1,4289_7778022_100150,4289_32 -4289_75981,92,4289_24015,Liffey Valley SC,103622741,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_24016,Liffey Valley SC,103732741,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_24017,Liffey Valley SC,103842741,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_24018,Liffey Valley SC,103952741,1,4289_7778022_100350,4289_170 -4289_75963,93,4289_2402,Ticknock,103732239,1,4289_7778022_100150,4289_32 -4289_75981,96,4289_24024,Liffey Valley SC,104065445,1,4289_7778022_100300,4289_170 -4289_75981,92,4289_24026,Liffey Valley SC,103622759,1,4289_7778022_100410,4289_170 -4289_75981,93,4289_24027,Liffey Valley SC,103732759,1,4289_7778022_100410,4289_170 -4289_75981,94,4289_24028,Liffey Valley SC,103842759,1,4289_7778022_100410,4289_170 -4289_75981,95,4289_24029,Liffey Valley SC,103952759,1,4289_7778022_100410,4289_170 -4289_75963,94,4289_2403,Ticknock,103842239,1,4289_7778022_100150,4289_32 -4289_75981,96,4289_24039,Liffey Valley SC,104065479,1,4289_7778022_100320,4289_170 -4289_75963,95,4289_2404,Ticknock,103952239,1,4289_7778022_100150,4289_32 -4289_75981,92,4289_24041,Liffey Valley SC,103622791,1,4289_7778022_100360,4289_170 -4289_75981,93,4289_24042,Liffey Valley SC,103732791,1,4289_7778022_100360,4289_170 -4289_75981,94,4289_24043,Liffey Valley SC,103842791,1,4289_7778022_100360,4289_170 -4289_75981,95,4289_24044,Liffey Valley SC,103952791,1,4289_7778022_100360,4289_170 -4289_75981,92,4289_24051,Liffey Valley SC,103622815,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_24052,Liffey Valley SC,103732815,1,4289_7778022_100370,4289_170 -4289_75981,94,4289_24053,Liffey Valley SC,103842815,1,4289_7778022_100370,4289_170 -4289_75981,95,4289_24054,Liffey Valley SC,103952815,1,4289_7778022_100370,4289_170 -4289_75981,96,4289_24060,Liffey Valley SC,104065511,1,4289_7778022_100340,4289_170 -4289_75981,92,4289_24066,Liffey Valley SC,103622841,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_24067,Liffey Valley SC,103732841,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_24068,Liffey Valley SC,103842841,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_24069,Liffey Valley SC,103952841,1,4289_7778022_100380,4289_170 -4289_75981,96,4289_24075,Liffey Valley SC,104065537,1,4289_7778022_100330,4289_170 -4289_75981,92,4289_24077,Liffey Valley SC,103622861,1,4289_7778022_100342,4289_170 -4289_75981,93,4289_24078,Liffey Valley SC,103732861,1,4289_7778022_100342,4289_170 -4289_75981,94,4289_24079,Liffey Valley SC,103842861,1,4289_7778022_100342,4289_170 -4289_75981,95,4289_24080,Liffey Valley SC,103952861,1,4289_7778022_100342,4289_170 -4289_75981,96,4289_24090,Liffey Valley SC,104065567,1,4289_7778022_100300,4289_170 -4289_75981,92,4289_24092,Liffey Valley SC,103622893,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_24093,Liffey Valley SC,103732893,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_24094,Liffey Valley SC,103842893,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_24095,Liffey Valley SC,103952893,1,4289_7778022_100350,4289_170 -4289_75981,92,4289_24102,Liffey Valley SC,103622917,1,4289_7778022_100360,4289_170 -4289_75981,93,4289_24103,Liffey Valley SC,103732917,1,4289_7778022_100360,4289_170 -4289_75981,94,4289_24104,Liffey Valley SC,103842917,1,4289_7778022_100360,4289_170 -4289_75981,95,4289_24105,Liffey Valley SC,103952917,1,4289_7778022_100360,4289_170 -4289_75963,92,4289_2411,Ticknock,103622353,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_24111,Liffey Valley SC,104065597,1,4289_7778022_100320,4289_171 -4289_75981,92,4289_24117,Liffey Valley SC,103622939,1,4289_7778022_100370,4289_170 -4289_75981,93,4289_24118,Liffey Valley SC,103732939,1,4289_7778022_100370,4289_170 -4289_75981,94,4289_24119,Liffey Valley SC,103842939,1,4289_7778022_100370,4289_170 -4289_75963,93,4289_2412,Ticknock,103732353,1,4289_7778022_100160,4289_32 -4289_75981,95,4289_24120,Liffey Valley SC,103952939,1,4289_7778022_100370,4289_170 -4289_75981,96,4289_24126,Liffey Valley SC,104065629,1,4289_7778022_100340,4289_170 -4289_75981,92,4289_24128,Liffey Valley SC,103622961,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_24129,Liffey Valley SC,103732961,1,4289_7778022_100380,4289_170 -4289_75963,94,4289_2413,Ticknock,103842353,1,4289_7778022_100160,4289_32 -4289_75981,94,4289_24130,Liffey Valley SC,103842961,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_24131,Liffey Valley SC,103952961,1,4289_7778022_100380,4289_170 -4289_75963,95,4289_2414,Ticknock,103952353,1,4289_7778022_100160,4289_32 -4289_75981,96,4289_24141,Liffey Valley SC,104065655,1,4289_7778022_100330,4289_170 -4289_75981,92,4289_24143,Liffey Valley SC,103622991,1,4289_7778022_100342,4289_170 -4289_75981,93,4289_24144,Liffey Valley SC,103732991,1,4289_7778022_100342,4289_170 -4289_75981,94,4289_24145,Liffey Valley SC,103842991,1,4289_7778022_100342,4289_170 -4289_75981,95,4289_24146,Liffey Valley SC,103952991,1,4289_7778022_100342,4289_170 -4289_75981,92,4289_24153,Liffey Valley SC,103623013,1,4289_7778022_100350,4289_170 -4289_75981,93,4289_24154,Liffey Valley SC,103733013,1,4289_7778022_100350,4289_170 -4289_75981,94,4289_24155,Liffey Valley SC,103843013,1,4289_7778022_100350,4289_170 -4289_75981,95,4289_24156,Liffey Valley SC,103953013,1,4289_7778022_100350,4289_170 -4289_75981,96,4289_24162,Liffey Valley SC,104065685,1,4289_7778022_100300,4289_170 -4289_75981,92,4289_24168,Liffey Valley SC,103623045,1,4289_7778022_100380,4289_170 -4289_75981,93,4289_24169,Liffey Valley SC,103733045,1,4289_7778022_100380,4289_170 -4289_75981,94,4289_24170,Liffey Valley SC,103843045,1,4289_7778022_100380,4289_170 -4289_75981,95,4289_24171,Liffey Valley SC,103953045,1,4289_7778022_100380,4289_170 -4289_75981,96,4289_24177,Liffey Valley SC,104065717,1,4289_7778022_100340,4289_171 -4289_75982,92,4289_24183,Tallaght,103621010,0,4289_7778022_100421,4289_173 -4289_75982,93,4289_24184,Tallaght,103731010,0,4289_7778022_100421,4289_173 -4289_75982,94,4289_24185,Tallaght,103841010,0,4289_7778022_100421,4289_173 -4289_75982,95,4289_24186,Tallaght,103951010,0,4289_7778022_100421,4289_173 -4289_75982,96,4289_24192,Tallaght,104064008,0,4289_7778022_100360,4289_174 -4289_75982,92,4289_24194,Tallaght,103621038,0,4289_7778022_100441,4289_173 -4289_75982,93,4289_24195,Tallaght,103731038,0,4289_7778022_100441,4289_173 -4289_75982,94,4289_24196,Tallaght,103841038,0,4289_7778022_100441,4289_173 -4289_75982,95,4289_24197,Tallaght,103951038,0,4289_7778022_100441,4289_173 -4289_75960,96,4289_242,Sutton Station,104064810,0,4289_7778022_103104,4289_2 -4289_75963,96,4289_2420,Ticknock,104065101,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24204,Tallaght,103621090,0,4289_7778022_100431,4289_173 -4289_75982,93,4289_24205,Tallaght,103731090,0,4289_7778022_100431,4289_173 -4289_75982,94,4289_24206,Tallaght,103841090,0,4289_7778022_100431,4289_173 -4289_75982,95,4289_24207,Tallaght,103951090,0,4289_7778022_100431,4289_173 -4289_75982,96,4289_24213,Tallaght,104064062,0,4289_7778022_100370,4289_174 -4289_75982,92,4289_24215,Tallaght,103621136,0,4289_7778022_100461,4289_173 -4289_75982,93,4289_24216,Tallaght,103731136,0,4289_7778022_100461,4289_173 -4289_75982,94,4289_24217,Tallaght,103841136,0,4289_7778022_100461,4289_173 -4289_75982,95,4289_24218,Tallaght,103951136,0,4289_7778022_100461,4289_173 -4289_75982,92,4289_24225,Tallaght,103621162,0,4289_7778022_100451,4289_173 -4289_75982,93,4289_24226,Tallaght,103731162,0,4289_7778022_100451,4289_173 -4289_75982,94,4289_24227,Tallaght,103841162,0,4289_7778022_100451,4289_173 -4289_75982,95,4289_24228,Tallaght,103951162,0,4289_7778022_100451,4289_173 -4289_75982,92,4289_24235,Tallaght,103621204,0,4289_7778022_100490,4289_173 -4289_75982,93,4289_24236,Tallaght,103731204,0,4289_7778022_100490,4289_173 -4289_75982,94,4289_24237,Tallaght,103841204,0,4289_7778022_100490,4289_173 -4289_75982,95,4289_24238,Tallaght,103951204,0,4289_7778022_100490,4289_173 -4289_75982,92,4289_24245,Tallaght,103621246,0,4289_7778022_100421,4289_173 -4289_75982,93,4289_24246,Tallaght,103731246,0,4289_7778022_100421,4289_173 -4289_75982,94,4289_24247,Tallaght,103841246,0,4289_7778022_100421,4289_173 -4289_75982,95,4289_24248,Tallaght,103951246,0,4289_7778022_100421,4289_173 -4289_75982,96,4289_24254,Tallaght,104064148,0,4289_7778022_100360,4289_174 -4289_75963,92,4289_2426,Ticknock,103622475,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24260,Tallaght,103621308,0,4289_7778022_100470,4289_173 -4289_75982,93,4289_24261,Tallaght,103731308,0,4289_7778022_100470,4289_173 -4289_75982,94,4289_24262,Tallaght,103841308,0,4289_7778022_100470,4289_173 -4289_75982,95,4289_24263,Tallaght,103951308,0,4289_7778022_100470,4289_173 -4289_75963,93,4289_2427,Ticknock,103732475,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24270,Tallaght,103621334,0,4289_7778022_100510,4289_173 -4289_75982,93,4289_24271,Tallaght,103731334,0,4289_7778022_100510,4289_173 -4289_75982,94,4289_24272,Tallaght,103841334,0,4289_7778022_100510,4289_173 -4289_75982,95,4289_24273,Tallaght,103951334,0,4289_7778022_100510,4289_173 -4289_75963,94,4289_2428,Ticknock,103842475,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24280,Tallaght,103621376,0,4289_7778022_100481,4289_173 -4289_75982,93,4289_24281,Tallaght,103731376,0,4289_7778022_100481,4289_173 -4289_75982,94,4289_24282,Tallaght,103841376,0,4289_7778022_100481,4289_173 -4289_75982,95,4289_24283,Tallaght,103951376,0,4289_7778022_100481,4289_173 -4289_75963,95,4289_2429,Ticknock,103952475,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24290,Tallaght,103621406,0,4289_7778022_100441,4289_173 -4289_75982,93,4289_24291,Tallaght,103731406,0,4289_7778022_100441,4289_173 -4289_75982,94,4289_24292,Tallaght,103841406,0,4289_7778022_100441,4289_173 -4289_75982,95,4289_24293,Tallaght,103951406,0,4289_7778022_100441,4289_173 -4289_75982,96,4289_24299,Tallaght,104064236,0,4289_7778022_100370,4289_174 -4289_75982,92,4289_24305,Tallaght,103621462,0,4289_7778022_100500,4289_173 -4289_75982,93,4289_24306,Tallaght,103731462,0,4289_7778022_100500,4289_173 -4289_75982,94,4289_24307,Tallaght,103841462,0,4289_7778022_100500,4289_173 -4289_75982,95,4289_24308,Tallaght,103951462,0,4289_7778022_100500,4289_173 -4289_75982,96,4289_24314,Tallaght,104064288,0,4289_7778022_100380,4289_174 -4289_75982,92,4289_24316,Tallaght,103621518,0,4289_7778022_100490,4289_173 -4289_75982,93,4289_24317,Tallaght,103731518,0,4289_7778022_100490,4289_173 -4289_75982,94,4289_24318,Tallaght,103841518,0,4289_7778022_100490,4289_173 -4289_75982,95,4289_24319,Tallaght,103951518,0,4289_7778022_100490,4289_173 -4289_75982,96,4289_24325,Tallaght,104064336,0,4289_7778022_100360,4289_174 -4289_75982,92,4289_24331,Tallaght,103621572,0,4289_7778022_100470,4289_173 -4289_75982,93,4289_24332,Tallaght,103731572,0,4289_7778022_100470,4289_173 -4289_75982,94,4289_24333,Tallaght,103841572,0,4289_7778022_100470,4289_173 -4289_75982,95,4289_24334,Tallaght,103951572,0,4289_7778022_100470,4289_173 -4289_75982,96,4289_24340,Tallaght,104064392,0,4289_7778022_100390,4289_174 -4289_75982,92,4289_24346,Tallaght,103621626,0,4289_7778022_100510,4289_173 -4289_75982,93,4289_24347,Tallaght,103731626,0,4289_7778022_100510,4289_173 -4289_75982,94,4289_24348,Tallaght,103841626,0,4289_7778022_100510,4289_173 -4289_75982,95,4289_24349,Tallaght,103951626,0,4289_7778022_100510,4289_173 -4289_75963,96,4289_2435,Ticknock,104065211,1,4289_7778022_100142,4289_32 -4289_75982,96,4289_24355,Tallaght,104064448,0,4289_7778022_100370,4289_174 -4289_75982,92,4289_24361,Tallaght,103621684,0,4289_7778022_100500,4289_173 -4289_75982,93,4289_24362,Tallaght,103731684,0,4289_7778022_100500,4289_173 -4289_75982,94,4289_24363,Tallaght,103841684,0,4289_7778022_100500,4289_173 -4289_75982,95,4289_24364,Tallaght,103951684,0,4289_7778022_100500,4289_173 -4289_75982,96,4289_24370,Tallaght,104064500,0,4289_7778022_100380,4289_174 -4289_75982,92,4289_24376,Tallaght,103621740,0,4289_7778022_100490,4289_173 -4289_75982,93,4289_24377,Tallaght,103731740,0,4289_7778022_100490,4289_173 -4289_75982,94,4289_24378,Tallaght,103841740,0,4289_7778022_100490,4289_173 -4289_75982,95,4289_24379,Tallaght,103951740,0,4289_7778022_100490,4289_173 -4289_75982,96,4289_24385,Tallaght,104064554,0,4289_7778022_100360,4289_174 -4289_75982,92,4289_24391,Tallaght,103621794,0,4289_7778022_100470,4289_173 -4289_75982,93,4289_24392,Tallaght,103731794,0,4289_7778022_100470,4289_173 -4289_75982,94,4289_24393,Tallaght,103841794,0,4289_7778022_100470,4289_173 -4289_75982,95,4289_24394,Tallaght,103951794,0,4289_7778022_100470,4289_173 -4289_75982,96,4289_24400,Tallaght,104064606,0,4289_7778022_100390,4289_174 -4289_75982,92,4289_24406,Tallaght,103621852,0,4289_7778022_100510,4289_173 -4289_75982,93,4289_24407,Tallaght,103731852,0,4289_7778022_100510,4289_173 -4289_75982,94,4289_24408,Tallaght,103841852,0,4289_7778022_100510,4289_173 -4289_75982,95,4289_24409,Tallaght,103951852,0,4289_7778022_100510,4289_173 -4289_75963,92,4289_2441,Ticknock,103622597,1,4289_7778022_100160,4289_32 -4289_75982,96,4289_24415,Tallaght,104064660,0,4289_7778022_100370,4289_174 -4289_75963,93,4289_2442,Ticknock,103732597,1,4289_7778022_100160,4289_32 -4289_75982,92,4289_24421,Tallaght,103621910,0,4289_7778022_100482,4289_173 -4289_75982,93,4289_24422,Tallaght,103731910,0,4289_7778022_100482,4289_173 -4289_75982,94,4289_24423,Tallaght,103841910,0,4289_7778022_100482,4289_173 -4289_75982,95,4289_24424,Tallaght,103951910,0,4289_7778022_100482,4289_173 -4289_75963,94,4289_2443,Ticknock,103842597,1,4289_7778022_100160,4289_32 -4289_75982,96,4289_24430,Tallaght,104064714,0,4289_7778022_100400,4289_174 -4289_75982,92,4289_24436,Tallaght,103621964,0,4289_7778022_100500,4289_173 -4289_75982,93,4289_24437,Tallaght,103731964,0,4289_7778022_100500,4289_173 -4289_75982,94,4289_24438,Tallaght,103841964,0,4289_7778022_100500,4289_173 -4289_75982,95,4289_24439,Tallaght,103951964,0,4289_7778022_100500,4289_173 -4289_75963,95,4289_2444,Ticknock,103952597,1,4289_7778022_100160,4289_32 -4289_75982,96,4289_24445,Tallaght,104064772,0,4289_7778022_100380,4289_174 -4289_75982,92,4289_24451,Tallaght,103622022,0,4289_7778022_100462,4289_173 -4289_75982,93,4289_24452,Tallaght,103732022,0,4289_7778022_100462,4289_173 -4289_75982,94,4289_24453,Tallaght,103842022,0,4289_7778022_100462,4289_173 -4289_75982,95,4289_24454,Tallaght,103952022,0,4289_7778022_100462,4289_173 -4289_75982,96,4289_24460,Tallaght,104064820,0,4289_7778022_100410,4289_174 -4289_75982,92,4289_24466,Tallaght,103622080,0,4289_7778022_100490,4289_173 -4289_75982,93,4289_24467,Tallaght,103732080,0,4289_7778022_100490,4289_173 -4289_75982,94,4289_24468,Tallaght,103842080,0,4289_7778022_100490,4289_173 -4289_75982,95,4289_24469,Tallaght,103952080,0,4289_7778022_100490,4289_173 -4289_75982,96,4289_24475,Tallaght,104064876,0,4289_7778022_100360,4289_174 -4289_75982,92,4289_24481,Tallaght,103622120,0,4289_7778022_100470,4289_173 -4289_75982,93,4289_24482,Tallaght,103732120,0,4289_7778022_100470,4289_173 -4289_75982,94,4289_24483,Tallaght,103842120,0,4289_7778022_100470,4289_173 -4289_75982,95,4289_24484,Tallaght,103952120,0,4289_7778022_100470,4289_173 -4289_75982,92,4289_24491,Tallaght,103622150,0,4289_7778022_100432,4289_173 -4289_75982,93,4289_24492,Tallaght,103732150,0,4289_7778022_100432,4289_173 -4289_75982,94,4289_24493,Tallaght,103842150,0,4289_7778022_100432,4289_173 -4289_75982,95,4289_24494,Tallaght,103952150,0,4289_7778022_100432,4289_173 -4289_75963,96,4289_2450,Ticknock,104065311,1,4289_7778022_100150,4289_33 -4289_75982,96,4289_24500,Tallaght,104064928,0,4289_7778022_100390,4289_174 -4289_75982,92,4289_24506,Tallaght,103622190,0,4289_7778022_100510,4289_173 -4289_75982,93,4289_24507,Tallaght,103732190,0,4289_7778022_100510,4289_173 -4289_75982,94,4289_24508,Tallaght,103842190,0,4289_7778022_100510,4289_173 -4289_75982,95,4289_24509,Tallaght,103952190,0,4289_7778022_100510,4289_173 -4289_75982,92,4289_24516,Tallaght,103622218,0,4289_7778022_100452,4289_173 -4289_75982,93,4289_24517,Tallaght,103732218,0,4289_7778022_100452,4289_173 -4289_75982,94,4289_24518,Tallaght,103842218,0,4289_7778022_100452,4289_173 -4289_75982,95,4289_24519,Tallaght,103952218,0,4289_7778022_100452,4289_173 -4289_75982,96,4289_24525,Tallaght,104064982,0,4289_7778022_100370,4289_174 -4289_75982,92,4289_24531,Tallaght,103622248,0,4289_7778022_100482,4289_173 -4289_75982,93,4289_24532,Tallaght,103732248,0,4289_7778022_100482,4289_173 -4289_75982,94,4289_24533,Tallaght,103842248,0,4289_7778022_100482,4289_173 -4289_75982,95,4289_24534,Tallaght,103952248,0,4289_7778022_100482,4289_173 -4289_75982,92,4289_24541,Tallaght,103622284,0,4289_7778022_100500,4289_173 -4289_75982,93,4289_24542,Tallaght,103732284,0,4289_7778022_100500,4289_173 -4289_75982,94,4289_24543,Tallaght,103842284,0,4289_7778022_100500,4289_173 -4289_75982,95,4289_24544,Tallaght,103952284,0,4289_7778022_100500,4289_173 -4289_75982,96,4289_24550,Tallaght,104065030,0,4289_7778022_100400,4289_174 -4289_75982,92,4289_24556,Tallaght,103622320,0,4289_7778022_100422,4289_173 -4289_75982,93,4289_24557,Tallaght,103732320,0,4289_7778022_100422,4289_173 -4289_75982,94,4289_24558,Tallaght,103842320,0,4289_7778022_100422,4289_173 -4289_75982,95,4289_24559,Tallaght,103952320,0,4289_7778022_100422,4289_173 -4289_75963,92,4289_2456,Ticknock,103622703,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24566,Tallaght,103622346,0,4289_7778022_100462,4289_173 -4289_75982,93,4289_24567,Tallaght,103732346,0,4289_7778022_100462,4289_173 -4289_75982,94,4289_24568,Tallaght,103842346,0,4289_7778022_100462,4289_173 -4289_75982,95,4289_24569,Tallaght,103952346,0,4289_7778022_100462,4289_173 -4289_75963,93,4289_2457,Ticknock,103732703,1,4289_7778022_100150,4289_32 -4289_75982,96,4289_24575,Tallaght,104065084,0,4289_7778022_100380,4289_174 -4289_75963,94,4289_2458,Ticknock,103842703,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24581,Tallaght,103622380,0,4289_7778022_100442,4289_173 -4289_75982,93,4289_24582,Tallaght,103732380,0,4289_7778022_100442,4289_173 -4289_75982,94,4289_24583,Tallaght,103842380,0,4289_7778022_100442,4289_173 -4289_75982,95,4289_24584,Tallaght,103952380,0,4289_7778022_100442,4289_173 -4289_75963,95,4289_2459,Ticknock,103952703,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24591,Tallaght,103622406,0,4289_7778022_100490,4289_173 -4289_75982,93,4289_24592,Tallaght,103732406,0,4289_7778022_100490,4289_173 -4289_75982,94,4289_24593,Tallaght,103842406,0,4289_7778022_100490,4289_173 -4289_75982,95,4289_24594,Tallaght,103952406,0,4289_7778022_100490,4289_173 -4289_75982,96,4289_24600,Tallaght,104065134,0,4289_7778022_100360,4289_174 -4289_75982,92,4289_24606,Tallaght,103622440,0,4289_7778022_100470,4289_173 -4289_75982,93,4289_24607,Tallaght,103732440,0,4289_7778022_100470,4289_173 -4289_75982,94,4289_24608,Tallaght,103842440,0,4289_7778022_100470,4289_173 -4289_75982,95,4289_24609,Tallaght,103952440,0,4289_7778022_100470,4289_173 -4289_75982,92,4289_24616,Tallaght,103622468,0,4289_7778022_100432,4289_173 -4289_75982,93,4289_24617,Tallaght,103732468,0,4289_7778022_100432,4289_173 -4289_75982,94,4289_24618,Tallaght,103842468,0,4289_7778022_100432,4289_173 -4289_75982,95,4289_24619,Tallaght,103952468,0,4289_7778022_100432,4289_173 -4289_75982,96,4289_24625,Tallaght,104065190,0,4289_7778022_100390,4289_174 -4289_75982,92,4289_24631,Tallaght,103622524,0,4289_7778022_100452,4289_173 -4289_75982,93,4289_24632,Tallaght,103732524,0,4289_7778022_100452,4289_173 -4289_75982,94,4289_24633,Tallaght,103842524,0,4289_7778022_100452,4289_173 -4289_75982,95,4289_24634,Tallaght,103952524,0,4289_7778022_100452,4289_173 -4289_75982,96,4289_24640,Tallaght,104065240,0,4289_7778022_100370,4289_174 -4289_75982,92,4289_24646,Tallaght,103622586,0,4289_7778022_100500,4289_173 -4289_75982,93,4289_24647,Tallaght,103732586,0,4289_7778022_100500,4289_173 -4289_75982,94,4289_24648,Tallaght,103842586,0,4289_7778022_100500,4289_173 -4289_75982,95,4289_24649,Tallaght,103952586,0,4289_7778022_100500,4289_173 -4289_75963,96,4289_2465,Ticknock,104065407,1,4289_7778022_100150,4289_33 -4289_75982,96,4289_24655,Tallaght,104065296,0,4289_7778022_100400,4289_174 -4289_75982,92,4289_24661,Tallaght,103622636,0,4289_7778022_100442,4289_173 -4289_75982,93,4289_24662,Tallaght,103732636,0,4289_7778022_100442,4289_173 -4289_75982,94,4289_24663,Tallaght,103842636,0,4289_7778022_100442,4289_173 -4289_75982,95,4289_24664,Tallaght,103952636,0,4289_7778022_100442,4289_173 -4289_75982,96,4289_24670,Tallaght,104065344,0,4289_7778022_100380,4289_174 -4289_75982,92,4289_24676,Tallaght,103622696,0,4289_7778022_100470,4289_173 -4289_75982,93,4289_24677,Tallaght,103732696,0,4289_7778022_100470,4289_173 -4289_75982,94,4289_24678,Tallaght,103842696,0,4289_7778022_100470,4289_173 -4289_75982,95,4289_24679,Tallaght,103952696,0,4289_7778022_100470,4289_173 -4289_75982,96,4289_24685,Tallaght,104065392,0,4289_7778022_100360,4289_174 -4289_75982,92,4289_24691,Tallaght,103622742,0,4289_7778022_100432,4289_173 -4289_75982,93,4289_24692,Tallaght,103732742,0,4289_7778022_100432,4289_173 -4289_75982,94,4289_24693,Tallaght,103842742,0,4289_7778022_100432,4289_173 -4289_75982,95,4289_24694,Tallaght,103952742,0,4289_7778022_100432,4289_173 -4289_75982,96,4289_24700,Tallaght,104065436,0,4289_7778022_100370,4289_174 -4289_75982,92,4289_24706,Tallaght,103622796,0,4289_7778022_100452,4289_173 -4289_75982,93,4289_24707,Tallaght,103732796,0,4289_7778022_100452,4289_173 -4289_75982,94,4289_24708,Tallaght,103842796,0,4289_7778022_100452,4289_173 -4289_75982,95,4289_24709,Tallaght,103952796,0,4289_7778022_100452,4289_173 -4289_75963,92,4289_2471,Ticknock,103622801,1,4289_7778022_100160,4289_32 -4289_75982,96,4289_24715,Tallaght,104065486,0,4289_7778022_100400,4289_174 -4289_75963,93,4289_2472,Ticknock,103732801,1,4289_7778022_100160,4289_32 -4289_75982,92,4289_24721,Tallaght,103622842,0,4289_7778022_100442,4289_173 -4289_75982,93,4289_24722,Tallaght,103732842,0,4289_7778022_100442,4289_173 -4289_75982,94,4289_24723,Tallaght,103842842,0,4289_7778022_100442,4289_173 -4289_75982,95,4289_24724,Tallaght,103952842,0,4289_7778022_100442,4289_173 -4289_75963,94,4289_2473,Ticknock,103842801,1,4289_7778022_100160,4289_32 -4289_75982,96,4289_24730,Tallaght,104065526,0,4289_7778022_100380,4289_174 -4289_75982,92,4289_24736,Tallaght,103622892,0,4289_7778022_100470,4289_173 -4289_75982,93,4289_24737,Tallaght,103732892,0,4289_7778022_100470,4289_173 -4289_75982,94,4289_24738,Tallaght,103842892,0,4289_7778022_100470,4289_173 -4289_75982,95,4289_24739,Tallaght,103952892,0,4289_7778022_100470,4289_173 -4289_75963,95,4289_2474,Ticknock,103952801,1,4289_7778022_100160,4289_32 -4289_75982,96,4289_24745,Tallaght,104065576,0,4289_7778022_100360,4289_174 -4289_75982,92,4289_24751,Tallaght,103622938,0,4289_7778022_100432,4289_173 -4289_75982,93,4289_24752,Tallaght,103732938,0,4289_7778022_100432,4289_173 -4289_75982,94,4289_24753,Tallaght,103842938,0,4289_7778022_100432,4289_173 -4289_75982,95,4289_24754,Tallaght,103952938,0,4289_7778022_100432,4289_173 -4289_75982,96,4289_24760,Tallaght,104065616,0,4289_7778022_100370,4289_174 -4289_75982,92,4289_24766,Tallaght,103622988,0,4289_7778022_100452,4289_173 -4289_75982,93,4289_24767,Tallaght,103732988,0,4289_7778022_100452,4289_173 -4289_75982,94,4289_24768,Tallaght,103842988,0,4289_7778022_100452,4289_173 -4289_75982,95,4289_24769,Tallaght,103952988,0,4289_7778022_100452,4289_173 -4289_75982,96,4289_24775,Tallaght,104065662,0,4289_7778022_100400,4289_174 -4289_75982,2,4289_24780,Tallaght,103613060,0,4289_7778022_100470,4289_173 -4289_75982,92,4289_24781,Tallaght,103623060,0,4289_7778022_100470,4289_173 -4289_75982,93,4289_24782,Tallaght,103733060,0,4289_7778022_100470,4289_173 -4289_75982,94,4289_24783,Tallaght,103843060,0,4289_7778022_100470,4289_173 -4289_75982,95,4289_24784,Tallaght,103953060,0,4289_7778022_100470,4289_173 -4289_75982,96,4289_24790,Tallaght,104065728,0,4289_7778022_100360,4289_174 -4289_75982,92,4289_24796,Blanchardstown,103621013,1,4289_7778022_100431,4289_176 -4289_75982,93,4289_24797,Blanchardstown,103731013,1,4289_7778022_100431,4289_176 -4289_75982,94,4289_24798,Blanchardstown,103841013,1,4289_7778022_100431,4289_176 -4289_75982,95,4289_24799,Blanchardstown,103951013,1,4289_7778022_100431,4289_176 -4289_75960,92,4289_248,Sutton Station,103622068,0,4289_7778022_103503,4289_1 -4289_75963,96,4289_2480,Ticknock,104065497,1,4289_7778022_100143,4289_33 -4289_75982,96,4289_24805,Blanchardstown,104064009,1,4289_7778022_100370,4289_177 -4289_75982,92,4289_24807,Blanchardstown,103621039,1,4289_7778022_100451,4289_176 -4289_75982,93,4289_24808,Blanchardstown,103731039,1,4289_7778022_100451,4289_176 -4289_75982,94,4289_24809,Blanchardstown,103841039,1,4289_7778022_100451,4289_176 -4289_75982,95,4289_24810,Blanchardstown,103951039,1,4289_7778022_100451,4289_176 -4289_75982,92,4289_24817,Blanchardstown,103621083,1,4289_7778022_100421,4289_176 -4289_75982,93,4289_24818,Blanchardstown,103731083,1,4289_7778022_100421,4289_176 -4289_75982,94,4289_24819,Blanchardstown,103841083,1,4289_7778022_100421,4289_176 -4289_75982,95,4289_24820,Blanchardstown,103951083,1,4289_7778022_100421,4289_176 -4289_75982,96,4289_24826,Blanchardstown,104064059,1,4289_7778022_100360,4289_177 -4289_75982,92,4289_24828,Blanchardstown,103621117,1,4289_7778022_100470,4289_176 -4289_75982,93,4289_24829,Blanchardstown,103731117,1,4289_7778022_100470,4289_176 -4289_75982,94,4289_24830,Blanchardstown,103841117,1,4289_7778022_100470,4289_176 -4289_75982,95,4289_24831,Blanchardstown,103951117,1,4289_7778022_100470,4289_176 -4289_75982,92,4289_24838,Blanchardstown,103621151,1,4289_7778022_100481,4289_176 -4289_75982,93,4289_24839,Blanchardstown,103731151,1,4289_7778022_100481,4289_176 -4289_75982,94,4289_24840,Blanchardstown,103841151,1,4289_7778022_100481,4289_176 -4289_75982,95,4289_24841,Blanchardstown,103951151,1,4289_7778022_100481,4289_176 -4289_75982,92,4289_24848,Blanchardstown,103621179,1,4289_7778022_100441,4289_176 -4289_75982,93,4289_24849,Blanchardstown,103731179,1,4289_7778022_100441,4289_176 -4289_75982,94,4289_24850,Blanchardstown,103841179,1,4289_7778022_100441,4289_176 -4289_75982,95,4289_24851,Blanchardstown,103951179,1,4289_7778022_100441,4289_176 -4289_75982,92,4289_24858,Blanchardstown,103621215,1,4289_7778022_100500,4289_176 -4289_75982,93,4289_24859,Blanchardstown,103731215,1,4289_7778022_100500,4289_176 -4289_75963,92,4289_2486,Ticknock,103622901,1,4289_7778022_100150,4289_32 -4289_75982,94,4289_24860,Blanchardstown,103841215,1,4289_7778022_100500,4289_176 -4289_75982,95,4289_24861,Blanchardstown,103951215,1,4289_7778022_100500,4289_176 -4289_75982,96,4289_24867,Blanchardstown,104064137,1,4289_7778022_100370,4289_177 -4289_75963,93,4289_2487,Ticknock,103732901,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24873,Blanchardstown,103621237,1,4289_7778022_100431,4289_176 -4289_75982,93,4289_24874,Blanchardstown,103731237,1,4289_7778022_100431,4289_176 -4289_75982,94,4289_24875,Blanchardstown,103841237,1,4289_7778022_100431,4289_176 -4289_75982,95,4289_24876,Blanchardstown,103951237,1,4289_7778022_100431,4289_176 -4289_75963,94,4289_2488,Ticknock,103842901,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24883,Blanchardstown,103621289,1,4289_7778022_100461,4289_176 -4289_75982,93,4289_24884,Blanchardstown,103731289,1,4289_7778022_100461,4289_176 -4289_75982,94,4289_24885,Blanchardstown,103841289,1,4289_7778022_100461,4289_176 -4289_75982,95,4289_24886,Blanchardstown,103951289,1,4289_7778022_100461,4289_176 -4289_75963,95,4289_2489,Ticknock,103952901,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_24893,Blanchardstown,103621317,1,4289_7778022_100451,4289_176 -4289_75982,93,4289_24894,Blanchardstown,103731317,1,4289_7778022_100451,4289_176 -4289_75982,94,4289_24895,Blanchardstown,103841317,1,4289_7778022_100451,4289_176 -4289_75982,95,4289_24896,Blanchardstown,103951317,1,4289_7778022_100451,4289_176 -4289_75960,93,4289_249,Sutton Station,103732068,0,4289_7778022_103503,4289_1 -4289_75982,92,4289_24903,Blanchardstown,103621355,1,4289_7778022_100490,4289_176 -4289_75982,93,4289_24904,Blanchardstown,103731355,1,4289_7778022_100490,4289_176 -4289_75982,94,4289_24905,Blanchardstown,103841355,1,4289_7778022_100490,4289_176 -4289_75982,95,4289_24906,Blanchardstown,103951355,1,4289_7778022_100490,4289_176 -4289_75982,96,4289_24912,Blanchardstown,104064225,1,4289_7778022_100360,4289_177 -4289_75982,92,4289_24918,Blanchardstown,103621409,1,4289_7778022_100470,4289_176 -4289_75982,93,4289_24919,Blanchardstown,103731409,1,4289_7778022_100470,4289_176 -4289_75982,94,4289_24920,Blanchardstown,103841409,1,4289_7778022_100470,4289_176 -4289_75982,95,4289_24921,Blanchardstown,103951409,1,4289_7778022_100470,4289_176 -4289_75982,96,4289_24927,Blanchardstown,104064269,1,4289_7778022_100390,4289_177 -4289_75982,92,4289_24929,Blanchardstown,103621469,1,4289_7778022_100510,4289_176 -4289_75982,93,4289_24930,Blanchardstown,103731469,1,4289_7778022_100510,4289_176 -4289_75982,94,4289_24931,Blanchardstown,103841469,1,4289_7778022_100510,4289_176 -4289_75982,95,4289_24932,Blanchardstown,103951469,1,4289_7778022_100510,4289_176 -4289_75982,96,4289_24938,Blanchardstown,104064327,1,4289_7778022_100370,4289_177 -4289_75982,92,4289_24944,Blanchardstown,103621525,1,4289_7778022_100500,4289_176 -4289_75982,93,4289_24945,Blanchardstown,103731525,1,4289_7778022_100500,4289_176 -4289_75982,94,4289_24946,Blanchardstown,103841525,1,4289_7778022_100500,4289_176 -4289_75982,95,4289_24947,Blanchardstown,103951525,1,4289_7778022_100500,4289_176 -4289_75963,96,4289_2495,Ticknock,104065587,1,4289_7778022_100150,4289_33 -4289_75982,96,4289_24953,Blanchardstown,104064375,1,4289_7778022_100380,4289_177 -4289_75982,92,4289_24959,Blanchardstown,103621583,1,4289_7778022_100490,4289_176 -4289_75982,93,4289_24960,Blanchardstown,103731583,1,4289_7778022_100490,4289_176 -4289_75982,94,4289_24961,Blanchardstown,103841583,1,4289_7778022_100490,4289_176 -4289_75982,95,4289_24962,Blanchardstown,103951583,1,4289_7778022_100490,4289_176 -4289_75982,96,4289_24968,Blanchardstown,104064433,1,4289_7778022_100360,4289_177 -4289_75982,92,4289_24974,Blanchardstown,103621635,1,4289_7778022_100470,4289_176 -4289_75982,93,4289_24975,Blanchardstown,103731635,1,4289_7778022_100470,4289_176 -4289_75982,94,4289_24976,Blanchardstown,103841635,1,4289_7778022_100470,4289_176 -4289_75982,95,4289_24977,Blanchardstown,103951635,1,4289_7778022_100470,4289_176 -4289_75982,96,4289_24983,Blanchardstown,104064481,1,4289_7778022_100390,4289_177 -4289_75982,92,4289_24989,Blanchardstown,103621695,1,4289_7778022_100510,4289_176 -4289_75982,93,4289_24990,Blanchardstown,103731695,1,4289_7778022_100510,4289_176 -4289_75982,94,4289_24991,Blanchardstown,103841695,1,4289_7778022_100510,4289_176 -4289_75982,95,4289_24992,Blanchardstown,103951695,1,4289_7778022_100510,4289_176 -4289_75982,96,4289_24998,Blanchardstown,104064539,1,4289_7778022_100370,4289_177 -4289_75960,93,4289_25,Sutton Station,103731110,0,4289_7778022_103108,4289_1 -4289_75960,94,4289_250,Sutton Station,103842068,0,4289_7778022_103503,4289_1 -4289_75982,92,4289_25004,Blanchardstown,103621747,1,4289_7778022_100482,4289_176 -4289_75982,93,4289_25005,Blanchardstown,103731747,1,4289_7778022_100482,4289_176 -4289_75982,94,4289_25006,Blanchardstown,103841747,1,4289_7778022_100482,4289_176 -4289_75982,95,4289_25007,Blanchardstown,103951747,1,4289_7778022_100482,4289_176 -4289_75963,92,4289_2501,Ticknock,103622999,1,4289_7778022_100150,4289_32 -4289_75982,96,4289_25013,Blanchardstown,104064589,1,4289_7778022_100400,4289_177 -4289_75982,92,4289_25019,Blanchardstown,103621809,1,4289_7778022_100500,4289_176 -4289_75963,93,4289_2502,Ticknock,103732999,1,4289_7778022_100150,4289_32 -4289_75982,93,4289_25020,Blanchardstown,103731809,1,4289_7778022_100500,4289_176 -4289_75982,94,4289_25021,Blanchardstown,103841809,1,4289_7778022_100500,4289_176 -4289_75982,95,4289_25022,Blanchardstown,103951809,1,4289_7778022_100500,4289_176 -4289_75982,96,4289_25028,Blanchardstown,104064647,1,4289_7778022_100380,4289_177 -4289_75963,94,4289_2503,Ticknock,103842999,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_25034,Blanchardstown,103621863,1,4289_7778022_100490,4289_176 -4289_75982,93,4289_25035,Blanchardstown,103731863,1,4289_7778022_100490,4289_176 -4289_75982,94,4289_25036,Blanchardstown,103841863,1,4289_7778022_100490,4289_176 -4289_75982,95,4289_25037,Blanchardstown,103951863,1,4289_7778022_100490,4289_176 -4289_75963,95,4289_2504,Ticknock,103952999,1,4289_7778022_100150,4289_32 -4289_75982,96,4289_25043,Blanchardstown,104064699,1,4289_7778022_100360,4289_177 -4289_75982,92,4289_25049,Blanchardstown,103621929,1,4289_7778022_100470,4289_176 -4289_75982,93,4289_25050,Blanchardstown,103731929,1,4289_7778022_100470,4289_176 -4289_75982,94,4289_25051,Blanchardstown,103841929,1,4289_7778022_100470,4289_176 -4289_75982,95,4289_25052,Blanchardstown,103951929,1,4289_7778022_100470,4289_176 -4289_75982,96,4289_25058,Blanchardstown,104064753,1,4289_7778022_100390,4289_177 -4289_75982,92,4289_25064,Blanchardstown,103621979,1,4289_7778022_100510,4289_176 -4289_75982,93,4289_25065,Blanchardstown,103731979,1,4289_7778022_100510,4289_176 -4289_75982,94,4289_25066,Blanchardstown,103841979,1,4289_7778022_100510,4289_176 -4289_75982,95,4289_25067,Blanchardstown,103951979,1,4289_7778022_100510,4289_176 -4289_75982,96,4289_25073,Blanchardstown,104064805,1,4289_7778022_100370,4289_177 -4289_75982,92,4289_25079,Blanchardstown,103622039,1,4289_7778022_100482,4289_176 -4289_75982,93,4289_25080,Blanchardstown,103732039,1,4289_7778022_100482,4289_176 -4289_75982,94,4289_25081,Blanchardstown,103842039,1,4289_7778022_100482,4289_176 -4289_75982,95,4289_25082,Blanchardstown,103952039,1,4289_7778022_100482,4289_176 -4289_75982,96,4289_25088,Blanchardstown,104064859,1,4289_7778022_100400,4289_177 -4289_75982,92,4289_25094,Blanchardstown,103622069,1,4289_7778022_100500,4289_176 -4289_75982,93,4289_25095,Blanchardstown,103732069,1,4289_7778022_100500,4289_176 -4289_75982,94,4289_25096,Blanchardstown,103842069,1,4289_7778022_100500,4289_176 -4289_75982,95,4289_25097,Blanchardstown,103952069,1,4289_7778022_100500,4289_176 -4289_75960,95,4289_251,Sutton Station,103952068,0,4289_7778022_103503,4289_1 -4289_75963,96,4289_2510,Ticknock,104065675,1,4289_7778022_100150,4289_33 -4289_75982,92,4289_25104,Blanchardstown,103622099,1,4289_7778022_100422,4289_176 -4289_75982,93,4289_25105,Blanchardstown,103732099,1,4289_7778022_100422,4289_176 -4289_75982,94,4289_25106,Blanchardstown,103842099,1,4289_7778022_100422,4289_176 -4289_75982,95,4289_25107,Blanchardstown,103952099,1,4289_7778022_100422,4289_176 -4289_75963,2,4289_2511,Ticknock,103613075,1,4289_7778022_100150,4289_32 -4289_75982,96,4289_25113,Blanchardstown,104064909,1,4289_7778022_100380,4289_177 -4289_75982,92,4289_25119,Blanchardstown,103622129,1,4289_7778022_100462,4289_176 -4289_75963,92,4289_2512,Ticknock,103623075,1,4289_7778022_100150,4289_32 -4289_75982,93,4289_25120,Blanchardstown,103732129,1,4289_7778022_100462,4289_176 -4289_75982,94,4289_25121,Blanchardstown,103842129,1,4289_7778022_100462,4289_176 -4289_75982,95,4289_25122,Blanchardstown,103952129,1,4289_7778022_100462,4289_176 -4289_75982,92,4289_25129,Blanchardstown,103622163,1,4289_7778022_100442,4289_176 -4289_75963,93,4289_2513,Ticknock,103733075,1,4289_7778022_100150,4289_32 -4289_75982,93,4289_25130,Blanchardstown,103732163,1,4289_7778022_100442,4289_176 -4289_75982,94,4289_25131,Blanchardstown,103842163,1,4289_7778022_100442,4289_176 -4289_75982,95,4289_25132,Blanchardstown,103952163,1,4289_7778022_100442,4289_176 -4289_75982,96,4289_25138,Blanchardstown,104064967,1,4289_7778022_100410,4289_177 -4289_75963,94,4289_2514,Ticknock,103843075,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_25144,Blanchardstown,103622205,1,4289_7778022_100490,4289_176 -4289_75982,93,4289_25145,Blanchardstown,103732205,1,4289_7778022_100490,4289_176 -4289_75982,94,4289_25146,Blanchardstown,103842205,1,4289_7778022_100490,4289_176 -4289_75982,95,4289_25147,Blanchardstown,103952205,1,4289_7778022_100490,4289_176 -4289_75963,95,4289_2515,Ticknock,103953075,1,4289_7778022_100150,4289_32 -4289_75982,92,4289_25154,Blanchardstown,103622241,1,4289_7778022_100470,4289_176 -4289_75982,93,4289_25155,Blanchardstown,103732241,1,4289_7778022_100470,4289_176 -4289_75982,94,4289_25156,Blanchardstown,103842241,1,4289_7778022_100470,4289_176 -4289_75982,95,4289_25157,Blanchardstown,103952241,1,4289_7778022_100470,4289_176 -4289_75982,96,4289_25163,Blanchardstown,104065015,1,4289_7778022_100360,4289_177 -4289_75982,92,4289_25169,Blanchardstown,103622291,1,4289_7778022_100432,4289_176 -4289_75982,93,4289_25170,Blanchardstown,103732291,1,4289_7778022_100432,4289_176 -4289_75982,94,4289_25171,Blanchardstown,103842291,1,4289_7778022_100432,4289_176 -4289_75982,95,4289_25172,Blanchardstown,103952291,1,4289_7778022_100432,4289_176 -4289_75982,92,4289_25179,Blanchardstown,103622325,1,4289_7778022_100510,4289_176 -4289_75982,93,4289_25180,Blanchardstown,103732325,1,4289_7778022_100510,4289_176 -4289_75982,94,4289_25181,Blanchardstown,103842325,1,4289_7778022_100510,4289_176 -4289_75982,95,4289_25182,Blanchardstown,103952325,1,4289_7778022_100510,4289_176 -4289_75982,96,4289_25188,Blanchardstown,104065071,1,4289_7778022_100390,4289_177 -4289_75982,92,4289_25194,Blanchardstown,103622355,1,4289_7778022_100452,4289_176 -4289_75982,93,4289_25195,Blanchardstown,103732355,1,4289_7778022_100452,4289_176 -4289_75982,94,4289_25196,Blanchardstown,103842355,1,4289_7778022_100452,4289_176 -4289_75982,95,4289_25197,Blanchardstown,103952355,1,4289_7778022_100452,4289_176 -4289_75982,92,4289_25204,Blanchardstown,103622379,1,4289_7778022_100482,4289_176 -4289_75982,93,4289_25205,Blanchardstown,103732379,1,4289_7778022_100482,4289_176 -4289_75982,94,4289_25206,Blanchardstown,103842379,1,4289_7778022_100482,4289_176 -4289_75982,95,4289_25207,Blanchardstown,103952379,1,4289_7778022_100482,4289_176 -4289_75963,96,4289_2521,Ticknock,104065747,1,4289_7778022_100150,4289_32 -4289_75982,96,4289_25213,Blanchardstown,104065121,1,4289_7778022_100370,4289_177 -4289_75982,92,4289_25219,Blanchardstown,103622413,1,4289_7778022_100500,4289_176 -4289_75982,93,4289_25220,Blanchardstown,103732413,1,4289_7778022_100500,4289_176 -4289_75982,94,4289_25221,Blanchardstown,103842413,1,4289_7778022_100500,4289_176 -4289_75982,95,4289_25222,Blanchardstown,103952413,1,4289_7778022_100500,4289_176 -4289_75982,92,4289_25229,Blanchardstown,103622447,1,4289_7778022_100422,4289_176 -4289_75964,92,4289_2523,Dundrum Luas,103621126,0,4289_7778022_100060,4289_35 -4289_75982,93,4289_25230,Blanchardstown,103732447,1,4289_7778022_100422,4289_176 -4289_75982,94,4289_25231,Blanchardstown,103842447,1,4289_7778022_100422,4289_176 -4289_75982,95,4289_25232,Blanchardstown,103952447,1,4289_7778022_100422,4289_176 -4289_75982,96,4289_25238,Blanchardstown,104065175,1,4289_7778022_100400,4289_177 -4289_75964,93,4289_2524,Dundrum Luas,103731126,0,4289_7778022_100060,4289_35 -4289_75982,92,4289_25244,Blanchardstown,103622501,1,4289_7778022_100442,4289_176 -4289_75982,93,4289_25245,Blanchardstown,103732501,1,4289_7778022_100442,4289_176 -4289_75982,94,4289_25246,Blanchardstown,103842501,1,4289_7778022_100442,4289_176 -4289_75982,95,4289_25247,Blanchardstown,103952501,1,4289_7778022_100442,4289_176 -4289_75964,94,4289_2525,Dundrum Luas,103841126,0,4289_7778022_100060,4289_35 -4289_75982,96,4289_25253,Blanchardstown,104065227,1,4289_7778022_100380,4289_177 -4289_75982,92,4289_25259,Blanchardstown,103622565,1,4289_7778022_100470,4289_176 -4289_75964,95,4289_2526,Dundrum Luas,103951126,0,4289_7778022_100060,4289_35 -4289_75982,93,4289_25260,Blanchardstown,103732565,1,4289_7778022_100470,4289_176 -4289_75982,94,4289_25261,Blanchardstown,103842565,1,4289_7778022_100470,4289_176 -4289_75982,95,4289_25262,Blanchardstown,103952565,1,4289_7778022_100470,4289_176 -4289_75982,96,4289_25268,Blanchardstown,104065283,1,4289_7778022_100360,4289_177 -4289_75982,92,4289_25274,Blanchardstown,103622617,1,4289_7778022_100432,4289_176 -4289_75982,93,4289_25275,Blanchardstown,103732617,1,4289_7778022_100432,4289_176 -4289_75982,94,4289_25276,Blanchardstown,103842617,1,4289_7778022_100432,4289_176 -4289_75982,95,4289_25277,Blanchardstown,103952617,1,4289_7778022_100432,4289_176 -4289_75982,96,4289_25283,Blanchardstown,104065331,1,4289_7778022_100370,4289_177 -4289_75982,92,4289_25289,Blanchardstown,103622671,1,4289_7778022_100452,4289_176 -4289_75982,93,4289_25290,Blanchardstown,103732671,1,4289_7778022_100452,4289_176 -4289_75982,94,4289_25291,Blanchardstown,103842671,1,4289_7778022_100452,4289_176 -4289_75982,95,4289_25292,Blanchardstown,103952671,1,4289_7778022_100452,4289_176 -4289_75982,96,4289_25298,Blanchardstown,104065377,1,4289_7778022_100400,4289_177 -4289_75982,92,4289_25304,Blanchardstown,103622723,1,4289_7778022_100442,4289_176 -4289_75982,93,4289_25305,Blanchardstown,103732723,1,4289_7778022_100442,4289_176 -4289_75982,94,4289_25306,Blanchardstown,103842723,1,4289_7778022_100442,4289_176 -4289_75982,95,4289_25307,Blanchardstown,103952723,1,4289_7778022_100442,4289_176 -4289_75982,96,4289_25313,Blanchardstown,104065427,1,4289_7778022_100380,4289_177 -4289_75982,92,4289_25319,Blanchardstown,103622773,1,4289_7778022_100470,4289_176 -4289_75982,93,4289_25320,Blanchardstown,103732773,1,4289_7778022_100470,4289_176 -4289_75982,94,4289_25321,Blanchardstown,103842773,1,4289_7778022_100470,4289_176 -4289_75982,95,4289_25322,Blanchardstown,103952773,1,4289_7778022_100470,4289_176 -4289_75982,96,4289_25328,Blanchardstown,104065467,1,4289_7778022_100360,4289_177 -4289_75964,92,4289_2533,Dundrum Luas,103621242,0,4289_7778022_100181,4289_35 -4289_75982,92,4289_25334,Blanchardstown,103622821,1,4289_7778022_100432,4289_176 -4289_75982,93,4289_25335,Blanchardstown,103732821,1,4289_7778022_100432,4289_176 -4289_75982,94,4289_25336,Blanchardstown,103842821,1,4289_7778022_100432,4289_176 -4289_75982,95,4289_25337,Blanchardstown,103952821,1,4289_7778022_100432,4289_176 -4289_75964,93,4289_2534,Dundrum Luas,103731242,0,4289_7778022_100181,4289_35 -4289_75982,96,4289_25343,Blanchardstown,104065515,1,4289_7778022_100370,4289_177 -4289_75982,92,4289_25349,Blanchardstown,103622871,1,4289_7778022_100452,4289_176 -4289_75964,94,4289_2535,Dundrum Luas,103841242,0,4289_7778022_100181,4289_35 -4289_75982,93,4289_25350,Blanchardstown,103732871,1,4289_7778022_100452,4289_176 -4289_75982,94,4289_25351,Blanchardstown,103842871,1,4289_7778022_100452,4289_176 -4289_75982,95,4289_25352,Blanchardstown,103952871,1,4289_7778022_100452,4289_176 -4289_75982,96,4289_25358,Blanchardstown,104065557,1,4289_7778022_100400,4289_177 -4289_75964,95,4289_2536,Dundrum Luas,103951242,0,4289_7778022_100181,4289_35 -4289_75982,92,4289_25364,Blanchardstown,103622921,1,4289_7778022_100442,4289_176 -4289_75982,93,4289_25365,Blanchardstown,103732921,1,4289_7778022_100442,4289_176 -4289_75982,94,4289_25366,Blanchardstown,103842921,1,4289_7778022_100442,4289_176 -4289_75982,95,4289_25367,Blanchardstown,103952921,1,4289_7778022_100442,4289_176 -4289_75982,96,4289_25373,Blanchardstown,104065603,1,4289_7778022_100380,4289_177 -4289_75982,92,4289_25379,Blanchardstown,103622969,1,4289_7778022_100470,4289_176 -4289_75982,93,4289_25380,Blanchardstown,103732969,1,4289_7778022_100470,4289_176 -4289_75982,94,4289_25381,Blanchardstown,103842969,1,4289_7778022_100470,4289_176 -4289_75982,95,4289_25382,Blanchardstown,103952969,1,4289_7778022_100470,4289_176 -4289_75982,96,4289_25388,Blanchardstown,104065645,1,4289_7778022_100360,4289_177 -4289_75982,2,4289_25393,Blanchardstown,103613053,1,4289_7778022_100452,4289_176 -4289_75982,92,4289_25394,Blanchardstown,103623053,1,4289_7778022_100452,4289_176 -4289_75982,93,4289_25395,Blanchardstown,103733053,1,4289_7778022_100452,4289_176 -4289_75982,94,4289_25396,Blanchardstown,103843053,1,4289_7778022_100452,4289_176 -4289_75982,95,4289_25397,Blanchardstown,103953053,1,4289_7778022_100452,4289_176 -4289_75982,96,4289_25403,Blanchardstown,104065725,1,4289_7778022_100400,4289_177 -4289_75997,92,4289_25409,Hazelhatch Station,103621022,0,4289_7778022_100530,4289_179 -4289_75997,93,4289_25410,Hazelhatch Station,103731022,0,4289_7778022_100530,4289_179 -4289_75997,94,4289_25411,Hazelhatch Station,103841022,0,4289_7778022_100530,4289_179 -4289_75997,95,4289_25412,Hazelhatch Station,103951022,0,4289_7778022_100530,4289_179 -4289_75997,96,4289_25418,Hazelhatch Station,104064016,0,4289_7778022_100430,4289_180 -4289_75997,92,4289_25420,Hazelhatch Station,103621062,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25421,Hazelhatch Station,103731062,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25422,Hazelhatch Station,103841062,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25423,Hazelhatch Station,103951062,0,4289_7778022_100520,4289_179 -4289_75964,92,4289_2543,Dundrum Luas,103621446,0,4289_7778022_100181,4289_35 -4289_75997,92,4289_25430,Hazelhatch Station,103621130,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25431,Hazelhatch Station,103731130,0,4289_7778022_100540,4289_179 -4289_75997,94,4289_25432,Hazelhatch Station,103841130,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25433,Hazelhatch Station,103951130,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25439,Hazelhatch Station,104064080,0,4289_7778022_100420,4289_180 -4289_75964,93,4289_2544,Dundrum Luas,103731446,0,4289_7778022_100181,4289_35 -4289_75997,92,4289_25441,Hazelhatch Station,103621200,0,4289_7778022_100530,4289_179 -4289_75997,93,4289_25442,Hazelhatch Station,103731200,0,4289_7778022_100530,4289_179 -4289_75997,94,4289_25443,Hazelhatch Station,103841200,0,4289_7778022_100530,4289_179 -4289_75997,95,4289_25444,Hazelhatch Station,103951200,0,4289_7778022_100530,4289_179 -4289_75964,94,4289_2545,Dundrum Luas,103841446,0,4289_7778022_100181,4289_35 -4289_75997,92,4289_25451,Hazelhatch Station,103621294,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25452,Hazelhatch Station,103731294,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25453,Hazelhatch Station,103841294,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25454,Hazelhatch Station,103951294,0,4289_7778022_100520,4289_179 -4289_75964,95,4289_2546,Dundrum Luas,103951446,0,4289_7778022_100181,4289_35 -4289_75997,96,4289_25460,Hazelhatch Station,104064172,0,4289_7778022_100430,4289_180 -4289_75997,92,4289_25466,Hazelhatch Station,103621372,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25467,Hazelhatch Station,103731372,0,4289_7778022_100540,4289_179 -4289_75997,94,4289_25468,Hazelhatch Station,103841372,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25469,Hazelhatch Station,103951372,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25475,Hazelhatch Station,104064216,0,4289_7778022_100420,4289_180 -4289_75997,92,4289_25477,Hazelhatch Station,103621426,0,4289_7778022_100530,4289_179 -4289_75997,93,4289_25478,Hazelhatch Station,103731426,0,4289_7778022_100530,4289_179 -4289_75997,94,4289_25479,Hazelhatch Station,103841426,0,4289_7778022_100530,4289_179 -4289_75997,95,4289_25480,Hazelhatch Station,103951426,0,4289_7778022_100530,4289_179 -4289_75997,96,4289_25486,Hazelhatch Station,104064262,0,4289_7778022_100440,4289_180 -4289_75997,92,4289_25492,Hazelhatch Station,103621482,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25493,Hazelhatch Station,103731482,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25494,Hazelhatch Station,103841482,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25495,Hazelhatch Station,103951482,0,4289_7778022_100520,4289_179 -4289_75997,96,4289_25501,Hazelhatch Station,104064312,0,4289_7778022_100430,4289_180 -4289_75997,92,4289_25503,Hazelhatch Station,103621538,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25504,Hazelhatch Station,103731538,0,4289_7778022_100540,4289_179 -4289_75997,94,4289_25505,Hazelhatch Station,103841538,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25506,Hazelhatch Station,103951538,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25512,Hazelhatch Station,104064364,0,4289_7778022_100420,4289_180 -4289_75997,92,4289_25518,Hazelhatch Station,103621592,0,4289_7778022_100530,4289_179 -4289_75997,93,4289_25519,Hazelhatch Station,103731592,0,4289_7778022_100530,4289_179 -4289_75997,94,4289_25520,Hazelhatch Station,103841592,0,4289_7778022_100530,4289_179 -4289_75997,95,4289_25521,Hazelhatch Station,103951592,0,4289_7778022_100530,4289_179 -4289_75997,96,4289_25527,Hazelhatch Station,104064418,0,4289_7778022_100440,4289_180 -4289_75964,92,4289_2553,Dundrum Luas,103621638,0,4289_7778022_100181,4289_35 -4289_75997,92,4289_25533,Hazelhatch Station,103621652,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25534,Hazelhatch Station,103731652,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25535,Hazelhatch Station,103841652,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25536,Hazelhatch Station,103951652,0,4289_7778022_100520,4289_179 -4289_75964,93,4289_2554,Dundrum Luas,103731638,0,4289_7778022_100181,4289_35 -4289_75997,96,4289_25542,Hazelhatch Station,104064472,0,4289_7778022_100430,4289_180 -4289_75997,92,4289_25548,Hazelhatch Station,103621704,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25549,Hazelhatch Station,103731704,0,4289_7778022_100540,4289_179 -4289_75964,94,4289_2555,Dundrum Luas,103841638,0,4289_7778022_100181,4289_35 -4289_75997,94,4289_25550,Hazelhatch Station,103841704,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25551,Hazelhatch Station,103951704,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25557,Hazelhatch Station,104064524,0,4289_7778022_100420,4289_180 -4289_75964,95,4289_2556,Dundrum Luas,103951638,0,4289_7778022_100181,4289_35 -4289_75997,92,4289_25563,Hazelhatch Station,103621762,0,4289_7778022_100530,4289_179 -4289_75997,93,4289_25564,Hazelhatch Station,103731762,0,4289_7778022_100530,4289_179 -4289_75997,94,4289_25565,Hazelhatch Station,103841762,0,4289_7778022_100530,4289_179 -4289_75997,95,4289_25566,Hazelhatch Station,103951762,0,4289_7778022_100530,4289_179 -4289_75997,96,4289_25572,Hazelhatch Station,104064576,0,4289_7778022_100440,4289_180 -4289_75997,92,4289_25578,Hazelhatch Station,103621820,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25579,Hazelhatch Station,103731820,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25580,Hazelhatch Station,103841820,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25581,Hazelhatch Station,103951820,0,4289_7778022_100520,4289_179 -4289_75997,96,4289_25587,Hazelhatch Station,104064632,0,4289_7778022_100430,4289_179 -4289_75997,92,4289_25593,Hazelhatch Station,103621874,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25594,Hazelhatch Station,103731874,0,4289_7778022_100540,4289_179 -4289_75997,94,4289_25595,Hazelhatch Station,103841874,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25596,Hazelhatch Station,103951874,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25602,Hazelhatch Station,104064684,0,4289_7778022_100420,4289_180 -4289_75997,92,4289_25608,Hazelhatch Station,103621932,0,4289_7778022_100530,4289_179 -4289_75997,93,4289_25609,Hazelhatch Station,103731932,0,4289_7778022_100530,4289_179 -4289_75997,94,4289_25610,Hazelhatch Station,103841932,0,4289_7778022_100530,4289_179 -4289_75997,95,4289_25611,Hazelhatch Station,103951932,0,4289_7778022_100530,4289_179 -4289_75997,96,4289_25617,Hazelhatch Station,104064738,0,4289_7778022_100440,4289_180 -4289_75997,92,4289_25623,Hazelhatch Station,103621990,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25624,Hazelhatch Station,103731990,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25625,Hazelhatch Station,103841990,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25626,Hazelhatch Station,103951990,0,4289_7778022_100520,4289_179 -4289_75964,92,4289_2563,Dundrum Luas,103621808,0,4289_7778022_104201,4289_35 -4289_75997,96,4289_25632,Hazelhatch Station,104064792,0,4289_7778022_100430,4289_180 -4289_75997,92,4289_25638,Hazelhatch Station,103622044,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25639,Hazelhatch Station,103732044,0,4289_7778022_100540,4289_179 -4289_75964,93,4289_2564,Dundrum Luas,103731808,0,4289_7778022_104201,4289_35 -4289_75997,94,4289_25640,Hazelhatch Station,103842044,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25641,Hazelhatch Station,103952044,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25647,Hazelhatch Station,104064842,0,4289_7778022_100420,4289_180 -4289_75964,94,4289_2565,Dundrum Luas,103841808,0,4289_7778022_104201,4289_35 -4289_75997,92,4289_25653,Hazelhatch Station,103622116,0,4289_7778022_100530,4289_179 -4289_75997,93,4289_25654,Hazelhatch Station,103732116,0,4289_7778022_100530,4289_179 -4289_75997,94,4289_25655,Hazelhatch Station,103842116,0,4289_7778022_100530,4289_179 -4289_75997,95,4289_25656,Hazelhatch Station,103952116,0,4289_7778022_100530,4289_179 -4289_75964,95,4289_2566,Dundrum Luas,103951808,0,4289_7778022_104201,4289_35 -4289_75997,96,4289_25662,Hazelhatch Station,104064898,0,4289_7778022_100440,4289_180 -4289_75997,92,4289_25668,Hazelhatch Station,103622186,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25669,Hazelhatch Station,103732186,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25670,Hazelhatch Station,103842186,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25671,Hazelhatch Station,103952186,0,4289_7778022_100520,4289_179 -4289_75997,96,4289_25677,Hazelhatch Station,104064952,0,4289_7778022_100430,4289_180 -4289_75997,92,4289_25683,Hazelhatch Station,103622242,0,4289_7778022_100550,4289_179 -4289_75997,93,4289_25684,Hazelhatch Station,103732242,0,4289_7778022_100550,4289_179 -4289_75997,94,4289_25685,Hazelhatch Station,103842242,0,4289_7778022_100550,4289_179 -4289_75997,95,4289_25686,Hazelhatch Station,103952242,0,4289_7778022_100550,4289_179 -4289_75997,96,4289_25692,Hazelhatch Station,104065004,0,4289_7778022_100420,4289_180 -4289_75997,92,4289_25698,Hazelhatch Station,103622314,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25699,Hazelhatch Station,103732314,0,4289_7778022_100540,4289_179 -4289_75960,96,4289_257,Sutton Station,104064860,0,4289_7778022_103106,4289_2 -4289_75997,94,4289_25700,Hazelhatch Station,103842314,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25701,Hazelhatch Station,103952314,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25707,Hazelhatch Station,104065058,0,4289_7778022_100440,4289_180 -4289_75997,92,4289_25713,Hazelhatch Station,103622376,0,4289_7778022_100530,4289_179 -4289_75997,93,4289_25714,Hazelhatch Station,103732376,0,4289_7778022_100530,4289_179 -4289_75997,94,4289_25715,Hazelhatch Station,103842376,0,4289_7778022_100530,4289_179 -4289_75997,95,4289_25716,Hazelhatch Station,103952376,0,4289_7778022_100530,4289_179 -4289_75997,96,4289_25722,Hazelhatch Station,104065112,0,4289_7778022_100430,4289_180 -4289_75997,92,4289_25728,Hazelhatch Station,103622434,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25729,Hazelhatch Station,103732434,0,4289_7778022_100520,4289_179 -4289_75964,92,4289_2573,Dundrum Luas,103621976,0,4289_7778022_104201,4289_35 -4289_75997,94,4289_25730,Hazelhatch Station,103842434,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25731,Hazelhatch Station,103952434,0,4289_7778022_100520,4289_179 -4289_75997,96,4289_25737,Hazelhatch Station,104065164,0,4289_7778022_100420,4289_180 -4289_75964,93,4289_2574,Dundrum Luas,103731976,0,4289_7778022_104201,4289_35 -4289_75997,92,4289_25743,Hazelhatch Station,103622494,0,4289_7778022_100550,4289_179 -4289_75997,93,4289_25744,Hazelhatch Station,103732494,0,4289_7778022_100550,4289_179 -4289_75997,94,4289_25745,Hazelhatch Station,103842494,0,4289_7778022_100550,4289_179 -4289_75997,95,4289_25746,Hazelhatch Station,103952494,0,4289_7778022_100550,4289_179 -4289_75964,94,4289_2575,Dundrum Luas,103841976,0,4289_7778022_104201,4289_35 -4289_75997,96,4289_25752,Hazelhatch Station,104065218,0,4289_7778022_100440,4289_180 -4289_75997,92,4289_25758,Hazelhatch Station,103622552,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25759,Hazelhatch Station,103732552,0,4289_7778022_100540,4289_179 -4289_75964,95,4289_2576,Dundrum Luas,103951976,0,4289_7778022_104201,4289_35 -4289_75997,94,4289_25760,Hazelhatch Station,103842552,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25761,Hazelhatch Station,103952552,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25767,Hazelhatch Station,104065272,0,4289_7778022_100430,4289_180 -4289_75997,92,4289_25773,Hazelhatch Station,103622610,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25774,Hazelhatch Station,103732610,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25775,Hazelhatch Station,103842610,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25776,Hazelhatch Station,103952610,0,4289_7778022_100520,4289_179 -4289_75997,96,4289_25782,Hazelhatch Station,104065322,0,4289_7778022_100420,4289_180 -4289_75997,92,4289_25788,Hazelhatch Station,103622664,0,4289_7778022_100550,4289_179 -4289_75997,93,4289_25789,Hazelhatch Station,103732664,0,4289_7778022_100550,4289_179 -4289_75997,94,4289_25790,Hazelhatch Station,103842664,0,4289_7778022_100550,4289_179 -4289_75997,95,4289_25791,Hazelhatch Station,103952664,0,4289_7778022_100550,4289_179 -4289_75997,96,4289_25797,Hazelhatch Station,104065372,0,4289_7778022_100440,4289_180 -4289_75997,92,4289_25803,Hazelhatch Station,103622714,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25804,Hazelhatch Station,103732714,0,4289_7778022_100540,4289_179 -4289_75997,94,4289_25805,Hazelhatch Station,103842714,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25806,Hazelhatch Station,103952714,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25812,Hazelhatch Station,104065418,0,4289_7778022_100430,4289_180 -4289_75997,92,4289_25818,Hazelhatch Station,103622768,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25819,Hazelhatch Station,103732768,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25820,Hazelhatch Station,103842768,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25821,Hazelhatch Station,103952768,0,4289_7778022_100520,4289_179 -4289_75997,96,4289_25827,Hazelhatch Station,104065464,0,4289_7778022_100420,4289_180 -4289_75964,92,4289_2583,Dundrum Luas,103622170,0,4289_7778022_100182,4289_35 -4289_75997,92,4289_25833,Hazelhatch Station,103622816,0,4289_7778022_100550,4289_179 -4289_75997,93,4289_25834,Hazelhatch Station,103732816,0,4289_7778022_100550,4289_179 -4289_75997,94,4289_25835,Hazelhatch Station,103842816,0,4289_7778022_100550,4289_179 -4289_75997,95,4289_25836,Hazelhatch Station,103952816,0,4289_7778022_100550,4289_179 -4289_75964,93,4289_2584,Dundrum Luas,103732170,0,4289_7778022_100182,4289_35 -4289_75997,96,4289_25842,Hazelhatch Station,104065510,0,4289_7778022_100440,4289_180 -4289_75997,92,4289_25848,Hazelhatch Station,103622870,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25849,Hazelhatch Station,103732870,0,4289_7778022_100540,4289_179 -4289_75964,94,4289_2585,Dundrum Luas,103842170,0,4289_7778022_100182,4289_35 -4289_75997,94,4289_25850,Hazelhatch Station,103842870,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25851,Hazelhatch Station,103952870,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25857,Hazelhatch Station,104065556,0,4289_7778022_100430,4289_179 -4289_75964,95,4289_2586,Dundrum Luas,103952170,0,4289_7778022_100182,4289_35 -4289_75997,92,4289_25863,Hazelhatch Station,103622914,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25864,Hazelhatch Station,103732914,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25865,Hazelhatch Station,103842914,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25866,Hazelhatch Station,103952914,0,4289_7778022_100520,4289_179 -4289_75997,96,4289_25872,Hazelhatch Station,104065596,0,4289_7778022_100420,4289_179 -4289_75997,92,4289_25878,Hazelhatch Station,103622966,0,4289_7778022_100550,4289_179 -4289_75997,93,4289_25879,Hazelhatch Station,103732966,0,4289_7778022_100550,4289_179 -4289_75997,94,4289_25880,Hazelhatch Station,103842966,0,4289_7778022_100550,4289_179 -4289_75997,95,4289_25881,Hazelhatch Station,103952966,0,4289_7778022_100550,4289_179 -4289_75997,96,4289_25887,Hazelhatch Station,104065644,0,4289_7778022_100440,4289_179 -4289_75997,92,4289_25893,Hazelhatch Station,103623012,0,4289_7778022_100540,4289_179 -4289_75997,93,4289_25894,Hazelhatch Station,103733012,0,4289_7778022_100540,4289_179 -4289_75997,94,4289_25895,Hazelhatch Station,103843012,0,4289_7778022_100540,4289_179 -4289_75997,95,4289_25896,Hazelhatch Station,103953012,0,4289_7778022_100540,4289_179 -4289_75997,96,4289_25902,Hazelhatch Station,104065686,0,4289_7778022_100430,4289_179 -4289_75997,2,4289_25907,Hazelhatch Station,103613078,0,4289_7778022_100520,4289_179 -4289_75997,92,4289_25908,Hazelhatch Station,103623078,0,4289_7778022_100520,4289_179 -4289_75997,93,4289_25909,Hazelhatch Station,103733078,0,4289_7778022_100520,4289_179 -4289_75997,94,4289_25910,Hazelhatch Station,103843078,0,4289_7778022_100520,4289_179 -4289_75997,95,4289_25911,Hazelhatch Station,103953078,0,4289_7778022_100520,4289_179 -4289_75997,96,4289_25917,Hazelhatch Station,104065746,0,4289_7778022_100420,4289_179 -4289_75997,92,4289_25923,Community College,103621019,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_25924,Community College,103731019,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_25925,Community College,103841019,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_25926,Community College,103951019,1,4289_7778022_100520,4289_182 -4289_75964,92,4289_2593,Dundrum Luas,103622274,0,4289_7778022_100182,4289_35 -4289_75997,96,4289_25932,Community College,104064013,1,4289_7778022_100420,4289_183 -4289_75997,92,4289_25934,Community College,103621049,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_25935,Community College,103731049,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_25936,Community College,103841049,1,4289_7778022_100540,4289_182 -4289_75997,95,4289_25937,Community College,103951049,1,4289_7778022_100540,4289_182 -4289_75964,93,4289_2594,Dundrum Luas,103732274,0,4289_7778022_100182,4289_35 -4289_75997,92,4289_25944,Community College,103621095,1,4289_7778022_100530,4289_182 -4289_75997,93,4289_25945,Community College,103731095,1,4289_7778022_100530,4289_182 -4289_75997,94,4289_25946,Community College,103841095,1,4289_7778022_100530,4289_182 -4289_75997,95,4289_25947,Community College,103951095,1,4289_7778022_100530,4289_182 -4289_75964,94,4289_2595,Dundrum Luas,103842274,0,4289_7778022_100182,4289_35 -4289_75997,96,4289_25953,Community College,104064067,1,4289_7778022_100430,4289_183 -4289_75997,92,4289_25955,Community College,103621161,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_25956,Community College,103731161,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_25957,Community College,103841161,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_25958,Community College,103951161,1,4289_7778022_100520,4289_182 -4289_75964,95,4289_2596,Dundrum Luas,103952274,0,4289_7778022_100182,4289_35 -4289_75997,92,4289_25965,Community College,103621221,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_25966,Community College,103731221,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_25967,Community College,103841221,1,4289_7778022_100540,4289_182 -4289_75997,95,4289_25968,Community College,103951221,1,4289_7778022_100540,4289_182 -4289_75997,96,4289_25974,Community College,104064145,1,4289_7778022_100420,4289_183 -4289_75997,92,4289_25980,Community College,103621301,1,4289_7778022_100530,4289_182 -4289_75997,93,4289_25981,Community College,103731301,1,4289_7778022_100530,4289_182 -4289_75997,94,4289_25982,Community College,103841301,1,4289_7778022_100530,4289_182 -4289_75997,95,4289_25983,Community College,103951301,1,4289_7778022_100530,4289_182 -4289_75997,96,4289_25989,Community College,104064191,1,4289_7778022_100440,4289_183 -4289_75997,92,4289_25991,Community College,103621365,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_25992,Community College,103731365,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_25993,Community College,103841365,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_25994,Community College,103951365,1,4289_7778022_100520,4289_182 -4289_75960,94,4289_26,Sutton Station,103841110,0,4289_7778022_103108,4289_1 -4289_75997,96,4289_26000,Community College,104064233,1,4289_7778022_100430,4289_183 -4289_75997,92,4289_26006,Community College,103621425,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26007,Community College,103731425,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26008,Community College,103841425,1,4289_7778022_100540,4289_182 -4289_75997,95,4289_26009,Community College,103951425,1,4289_7778022_100540,4289_182 -4289_75997,96,4289_26015,Community College,104064281,1,4289_7778022_100420,4289_183 -4289_75997,92,4289_26017,Community College,103621475,1,4289_7778022_100530,4289_182 -4289_75997,93,4289_26018,Community College,103731475,1,4289_7778022_100530,4289_182 -4289_75997,94,4289_26019,Community College,103841475,1,4289_7778022_100530,4289_182 -4289_75997,95,4289_26020,Community College,103951475,1,4289_7778022_100530,4289_182 -4289_75997,96,4289_26026,Community College,104064333,1,4289_7778022_100440,4289_183 -4289_75964,92,4289_2603,Dundrum Luas,103622374,0,4289_7778022_104202,4289_35 -4289_75997,92,4289_26032,Community College,103621535,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_26033,Community College,103731535,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_26034,Community College,103841535,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_26035,Community College,103951535,1,4289_7778022_100520,4289_182 -4289_75964,93,4289_2604,Dundrum Luas,103732374,0,4289_7778022_104202,4289_35 -4289_75997,96,4289_26041,Community College,104064389,1,4289_7778022_100430,4289_182 -4289_75997,92,4289_26047,Community College,103621591,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26048,Community College,103731591,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26049,Community College,103841591,1,4289_7778022_100540,4289_182 -4289_75964,94,4289_2605,Dundrum Luas,103842374,0,4289_7778022_104202,4289_35 -4289_75997,95,4289_26050,Community College,103951591,1,4289_7778022_100540,4289_182 -4289_75997,96,4289_26056,Community College,104064441,1,4289_7778022_100420,4289_182 -4289_75964,95,4289_2606,Dundrum Luas,103952374,0,4289_7778022_104202,4289_35 -4289_75997,92,4289_26062,Community College,103621647,1,4289_7778022_100530,4289_182 -4289_75997,93,4289_26063,Community College,103731647,1,4289_7778022_100530,4289_182 -4289_75997,94,4289_26064,Community College,103841647,1,4289_7778022_100530,4289_182 -4289_75997,95,4289_26065,Community College,103951647,1,4289_7778022_100530,4289_182 -4289_75997,96,4289_26071,Community College,104064495,1,4289_7778022_100440,4289_183 -4289_75997,92,4289_26077,Community College,103621703,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_26078,Community College,103731703,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_26079,Community College,103841703,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_26080,Community College,103951703,1,4289_7778022_100520,4289_182 -4289_75997,96,4289_26086,Community College,104064547,1,4289_7778022_100430,4289_183 -4289_75997,92,4289_26092,Community College,103621759,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26093,Community College,103731759,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26094,Community College,103841759,1,4289_7778022_100540,4289_182 -4289_75997,95,4289_26095,Community College,103951759,1,4289_7778022_100540,4289_182 -4289_75997,96,4289_26101,Community College,104064601,1,4289_7778022_100420,4289_183 -4289_75997,92,4289_26107,Community College,103621815,1,4289_7778022_100530,4289_182 -4289_75997,93,4289_26108,Community College,103731815,1,4289_7778022_100530,4289_182 -4289_75997,94,4289_26109,Community College,103841815,1,4289_7778022_100530,4289_182 -4289_75997,95,4289_26110,Community College,103951815,1,4289_7778022_100530,4289_182 -4289_75997,96,4289_26116,Community College,104064655,1,4289_7778022_100440,4289_183 -4289_75997,92,4289_26122,Community College,103621873,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_26123,Community College,103731873,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_26124,Community College,103841873,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_26125,Community College,103951873,1,4289_7778022_100520,4289_182 -4289_75964,92,4289_2613,Dundrum Luas,103622550,0,4289_7778022_104202,4289_35 -4289_75997,96,4289_26131,Community College,104064709,1,4289_7778022_100430,4289_183 -4289_75997,92,4289_26137,Community College,103621933,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26138,Community College,103731933,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26139,Community College,103841933,1,4289_7778022_100540,4289_182 -4289_75964,93,4289_2614,Dundrum Luas,103732550,0,4289_7778022_104202,4289_35 -4289_75997,95,4289_26140,Community College,103951933,1,4289_7778022_100540,4289_182 -4289_75997,96,4289_26146,Community College,104064761,1,4289_7778022_100420,4289_183 -4289_75964,94,4289_2615,Dundrum Luas,103842550,0,4289_7778022_104202,4289_35 -4289_75997,92,4289_26152,Community College,103621991,1,4289_7778022_100530,4289_182 -4289_75997,93,4289_26153,Community College,103731991,1,4289_7778022_100530,4289_182 -4289_75997,94,4289_26154,Community College,103841991,1,4289_7778022_100530,4289_182 -4289_75997,95,4289_26155,Community College,103951991,1,4289_7778022_100530,4289_182 -4289_75964,95,4289_2616,Dundrum Luas,103952550,0,4289_7778022_104202,4289_35 -4289_75997,96,4289_26161,Community College,104064815,1,4289_7778022_100440,4289_182 -4289_75997,92,4289_26167,Community College,103622047,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_26168,Community College,103732047,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_26169,Community College,103842047,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_26170,Community College,103952047,1,4289_7778022_100520,4289_182 -4289_75997,96,4289_26176,Community College,104064867,1,4289_7778022_100430,4289_182 -4289_75997,92,4289_26182,Community College,103622111,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26183,Community College,103732111,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26184,Community College,103842111,1,4289_7778022_100540,4289_182 -4289_75997,95,4289_26185,Community College,103952111,1,4289_7778022_100540,4289_182 -4289_75997,96,4289_26191,Community College,104064921,1,4289_7778022_100420,4289_183 -4289_75997,92,4289_26197,Community College,103622171,1,4289_7778022_100530,4289_182 -4289_75997,93,4289_26198,Community College,103732171,1,4289_7778022_100530,4289_182 -4289_75997,94,4289_26199,Community College,103842171,1,4289_7778022_100530,4289_182 -4289_75997,95,4289_26200,Community College,103952171,1,4289_7778022_100530,4289_182 -4289_75997,96,4289_26206,Community College,104064975,1,4289_7778022_100440,4289_183 -4289_75997,92,4289_26212,Community College,103622255,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_26213,Community College,103732255,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_26214,Community College,103842255,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_26215,Community College,103952255,1,4289_7778022_100520,4289_182 -4289_75997,96,4289_26221,Community College,104065027,1,4289_7778022_100430,4289_183 -4289_75997,92,4289_26227,Community College,103622333,1,4289_7778022_100550,4289_182 -4289_75997,93,4289_26228,Community College,103732333,1,4289_7778022_100550,4289_182 -4289_75997,94,4289_26229,Community College,103842333,1,4289_7778022_100550,4289_182 -4289_75964,92,4289_2623,Rockbrook,103621305,1,4289_7778022_100181,4289_36 -4289_75997,95,4289_26230,Community College,103952333,1,4289_7778022_100550,4289_182 -4289_75997,96,4289_26236,Community College,104065081,1,4289_7778022_100420,4289_183 -4289_75964,93,4289_2624,Rockbrook,103731305,1,4289_7778022_100181,4289_36 -4289_75997,92,4289_26242,Community College,103622393,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26243,Community College,103732393,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26244,Community College,103842393,1,4289_7778022_100540,4289_182 -4289_75997,95,4289_26245,Community College,103952393,1,4289_7778022_100540,4289_182 -4289_75964,94,4289_2625,Rockbrook,103841305,1,4289_7778022_100181,4289_36 -4289_75997,96,4289_26251,Community College,104065135,1,4289_7778022_100440,4289_183 -4289_75997,92,4289_26257,Community College,103622455,1,4289_7778022_100530,4289_182 -4289_75997,93,4289_26258,Community College,103732455,1,4289_7778022_100530,4289_182 -4289_75997,94,4289_26259,Community College,103842455,1,4289_7778022_100530,4289_182 -4289_75964,95,4289_2626,Rockbrook,103951305,1,4289_7778022_100181,4289_36 -4289_75997,95,4289_26260,Community College,103952455,1,4289_7778022_100530,4289_182 -4289_75997,96,4289_26266,Community College,104065183,1,4289_7778022_100430,4289_183 -4289_75997,92,4289_26272,Community College,103622513,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_26273,Community College,103732513,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_26274,Community College,103842513,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_26275,Community College,103952513,1,4289_7778022_100520,4289_182 -4289_75997,96,4289_26281,Community College,104065239,1,4289_7778022_100420,4289_183 -4289_75997,92,4289_26287,Community College,103622569,1,4289_7778022_100550,4289_182 -4289_75997,93,4289_26288,Community College,103732569,1,4289_7778022_100550,4289_182 -4289_75997,94,4289_26289,Community College,103842569,1,4289_7778022_100550,4289_182 -4289_75997,95,4289_26290,Community College,103952569,1,4289_7778022_100550,4289_182 -4289_75997,96,4289_26296,Community College,104065293,1,4289_7778022_100440,4289_183 -4289_75960,92,4289_263,Sutton Station,103622136,0,4289_7778022_103108,4289_1 -4289_75997,92,4289_26302,Community College,103622631,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26303,Community College,103732631,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26304,Community College,103842631,1,4289_7778022_100540,4289_182 -4289_75997,95,4289_26305,Community College,103952631,1,4289_7778022_100540,4289_182 -4289_75997,96,4289_26311,Community College,104065341,1,4289_7778022_100430,4289_182 -4289_75997,92,4289_26317,Community College,103622685,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_26318,Community College,103732685,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_26319,Community College,103842685,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_26320,Community College,103952685,1,4289_7778022_100520,4289_182 -4289_75997,96,4289_26326,Community College,104065387,1,4289_7778022_100420,4289_182 -4289_75964,92,4289_2633,Rockbrook,103621509,1,4289_7778022_100181,4289_36 -4289_75997,92,4289_26332,Community College,103622739,1,4289_7778022_100550,4289_182 -4289_75997,93,4289_26333,Community College,103732739,1,4289_7778022_100550,4289_182 -4289_75997,94,4289_26334,Community College,103842739,1,4289_7778022_100550,4289_182 -4289_75997,95,4289_26335,Community College,103952739,1,4289_7778022_100550,4289_182 -4289_75964,93,4289_2634,Rockbrook,103731509,1,4289_7778022_100181,4289_36 -4289_75997,96,4289_26341,Community College,104065435,1,4289_7778022_100440,4289_182 -4289_75997,92,4289_26347,Community College,103622785,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26348,Community College,103732785,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26349,Community College,103842785,1,4289_7778022_100540,4289_182 -4289_75964,94,4289_2635,Rockbrook,103841509,1,4289_7778022_100181,4289_36 -4289_75997,95,4289_26350,Community College,103952785,1,4289_7778022_100540,4289_182 -4289_75997,96,4289_26356,Community College,104065477,1,4289_7778022_100430,4289_183 -4289_75964,95,4289_2636,Rockbrook,103951509,1,4289_7778022_100181,4289_36 -4289_75997,92,4289_26362,Community College,103622837,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_26363,Community College,103732837,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_26364,Community College,103842837,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_26365,Community College,103952837,1,4289_7778022_100520,4289_182 -4289_75997,96,4289_26371,Community College,104065525,1,4289_7778022_100420,4289_183 -4289_75997,92,4289_26377,Community College,103622885,1,4289_7778022_100550,4289_182 -4289_75997,93,4289_26378,Community College,103732885,1,4289_7778022_100550,4289_182 -4289_75997,94,4289_26379,Community College,103842885,1,4289_7778022_100550,4289_182 -4289_75997,95,4289_26380,Community College,103952885,1,4289_7778022_100550,4289_182 -4289_75997,96,4289_26386,Community College,104065569,1,4289_7778022_100440,4289_182 -4289_75997,92,4289_26392,Community College,103622933,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26393,Community College,103732933,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26394,Community College,103842933,1,4289_7778022_100540,4289_182 -4289_75997,95,4289_26395,Community College,103952933,1,4289_7778022_100540,4289_182 -4289_75960,93,4289_264,Sutton Station,103732136,0,4289_7778022_103108,4289_1 -4289_75997,96,4289_26401,Community College,104065613,1,4289_7778022_100430,4289_182 -4289_75997,92,4289_26407,Community College,103622981,1,4289_7778022_100520,4289_182 -4289_75997,93,4289_26408,Community College,103732981,1,4289_7778022_100520,4289_182 -4289_75997,94,4289_26409,Community College,103842981,1,4289_7778022_100520,4289_182 -4289_75997,95,4289_26410,Community College,103952981,1,4289_7778022_100520,4289_182 -4289_75997,96,4289_26416,Community College,104065657,1,4289_7778022_100420,4289_182 -4289_75997,2,4289_26421,Community College,103613063,1,4289_7778022_100540,4289_182 -4289_75997,92,4289_26422,Community College,103623063,1,4289_7778022_100540,4289_182 -4289_75997,93,4289_26423,Community College,103733063,1,4289_7778022_100540,4289_182 -4289_75997,94,4289_26424,Community College,103843063,1,4289_7778022_100540,4289_182 -4289_75997,95,4289_26425,Community College,103953063,1,4289_7778022_100540,4289_182 -4289_75964,92,4289_2643,Rockbrook,103621679,1,4289_7778022_104201,4289_36 -4289_75997,96,4289_26431,Community College,104065735,1,4289_7778022_100430,4289_182 -4289_75998,96,4289_26436,Tallaght,104064012,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26438,Tallaght,103621020,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26439,Tallaght,103731020,0,4289_7778022_100570,4289_185 -4289_75964,93,4289_2644,Rockbrook,103731679,1,4289_7778022_104201,4289_36 -4289_75998,94,4289_26440,Tallaght,103841020,0,4289_7778022_100570,4289_185 -4289_75998,95,4289_26441,Tallaght,103951020,0,4289_7778022_100570,4289_185 -4289_75998,92,4289_26448,Tallaght,103621064,0,4289_7778022_100560,4289_185 -4289_75998,93,4289_26449,Tallaght,103731064,0,4289_7778022_100560,4289_185 -4289_75964,94,4289_2645,Rockbrook,103841679,1,4289_7778022_104201,4289_36 -4289_75998,94,4289_26450,Tallaght,103841064,0,4289_7778022_100560,4289_185 -4289_75998,95,4289_26451,Tallaght,103951064,0,4289_7778022_100560,4289_185 -4289_75998,96,4289_26457,Tallaght,104064070,0,4289_7778022_100461,4289_185 -4289_75998,92,4289_26459,Tallaght,103621132,0,4289_7778022_100581,4289_185 -4289_75964,95,4289_2646,Rockbrook,103951679,1,4289_7778022_104201,4289_36 -4289_75998,93,4289_26460,Tallaght,103731132,0,4289_7778022_100581,4289_185 -4289_75998,94,4289_26461,Tallaght,103841132,0,4289_7778022_100581,4289_185 -4289_75998,95,4289_26462,Tallaght,103951132,0,4289_7778022_100581,4289_185 -4289_75998,92,4289_26469,Tallaght,103621202,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26470,Tallaght,103731202,0,4289_7778022_100570,4289_185 -4289_75998,94,4289_26471,Tallaght,103841202,0,4289_7778022_100570,4289_185 -4289_75998,95,4289_26472,Tallaght,103951202,0,4289_7778022_100570,4289_185 -4289_75998,96,4289_26478,Tallaght,104064160,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26480,Tallaght,103621304,0,4289_7778022_100590,4289_185 -4289_75998,93,4289_26481,Tallaght,103731304,0,4289_7778022_100590,4289_185 -4289_75998,94,4289_26482,Tallaght,103841304,0,4289_7778022_100590,4289_185 -4289_75998,95,4289_26483,Tallaght,103951304,0,4289_7778022_100590,4289_185 -4289_75998,96,4289_26493,Tallaght,104064204,0,4289_7778022_100461,4289_185 -4289_75998,92,4289_26495,Tallaght,103621374,0,4289_7778022_100560,4289_185 -4289_75998,93,4289_26496,Tallaght,103731374,0,4289_7778022_100560,4289_185 -4289_75998,94,4289_26497,Tallaght,103841374,0,4289_7778022_100560,4289_185 -4289_75998,95,4289_26498,Tallaght,103951374,0,4289_7778022_100560,4289_185 -4289_75960,94,4289_265,Sutton Station,103842136,0,4289_7778022_103108,4289_1 -4289_75998,96,4289_26504,Tallaght,104064250,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26506,Tallaght,103621428,0,4289_7778022_100581,4289_185 -4289_75998,93,4289_26507,Tallaght,103731428,0,4289_7778022_100581,4289_185 -4289_75998,94,4289_26508,Tallaght,103841428,0,4289_7778022_100581,4289_185 -4289_75998,95,4289_26509,Tallaght,103951428,0,4289_7778022_100581,4289_185 -4289_75998,96,4289_26519,Tallaght,104064298,0,4289_7778022_100470,4289_185 -4289_75998,92,4289_26521,Tallaght,103621484,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26522,Tallaght,103731484,0,4289_7778022_100570,4289_185 -4289_75998,94,4289_26523,Tallaght,103841484,0,4289_7778022_100570,4289_185 -4289_75998,95,4289_26524,Tallaght,103951484,0,4289_7778022_100570,4289_185 -4289_75964,92,4289_2653,Rockbrook,103621849,1,4289_7778022_104201,4289_36 -4289_75998,96,4289_26530,Tallaght,104064352,0,4289_7778022_100461,4289_185 -4289_75998,92,4289_26532,Tallaght,103621540,0,4289_7778022_100600,4289_185 -4289_75998,93,4289_26533,Tallaght,103731540,0,4289_7778022_100600,4289_185 -4289_75998,94,4289_26534,Tallaght,103841540,0,4289_7778022_100600,4289_185 -4289_75998,95,4289_26535,Tallaght,103951540,0,4289_7778022_100600,4289_185 -4289_75964,93,4289_2654,Rockbrook,103731849,1,4289_7778022_104201,4289_36 -4289_75998,96,4289_26545,Tallaght,104064406,0,4289_7778022_100480,4289_185 -4289_75998,92,4289_26547,Tallaght,103621594,0,4289_7778022_100590,4289_185 -4289_75998,93,4289_26548,Tallaght,103731594,0,4289_7778022_100590,4289_185 -4289_75998,94,4289_26549,Tallaght,103841594,0,4289_7778022_100590,4289_185 -4289_75964,94,4289_2655,Rockbrook,103841849,1,4289_7778022_104201,4289_36 -4289_75998,95,4289_26550,Tallaght,103951594,0,4289_7778022_100590,4289_185 -4289_75964,95,4289_2656,Rockbrook,103951849,1,4289_7778022_104201,4289_36 -4289_75998,96,4289_26560,Tallaght,104064462,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26562,Tallaght,103621654,0,4289_7778022_100560,4289_185 -4289_75998,93,4289_26563,Tallaght,103731654,0,4289_7778022_100560,4289_185 -4289_75998,94,4289_26564,Tallaght,103841654,0,4289_7778022_100560,4289_185 -4289_75998,95,4289_26565,Tallaght,103951654,0,4289_7778022_100560,4289_185 -4289_75998,96,4289_26575,Tallaght,104064512,0,4289_7778022_100470,4289_185 -4289_75998,92,4289_26577,Tallaght,103621706,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26578,Tallaght,103731706,0,4289_7778022_100570,4289_185 -4289_75998,94,4289_26579,Tallaght,103841706,0,4289_7778022_100570,4289_185 -4289_75998,95,4289_26580,Tallaght,103951706,0,4289_7778022_100570,4289_185 -4289_75998,96,4289_26590,Tallaght,104064568,0,4289_7778022_100461,4289_185 -4289_75998,92,4289_26592,Tallaght,103621764,0,4289_7778022_100600,4289_185 -4289_75998,93,4289_26593,Tallaght,103731764,0,4289_7778022_100600,4289_185 -4289_75998,94,4289_26594,Tallaght,103841764,0,4289_7778022_100600,4289_185 -4289_75998,95,4289_26595,Tallaght,103951764,0,4289_7778022_100600,4289_185 -4289_75960,95,4289_266,Sutton Station,103952136,0,4289_7778022_103108,4289_1 -4289_75998,96,4289_26605,Tallaght,104064620,0,4289_7778022_100480,4289_185 -4289_75998,92,4289_26607,Tallaght,103621822,0,4289_7778022_100590,4289_185 -4289_75998,93,4289_26608,Tallaght,103731822,0,4289_7778022_100590,4289_185 -4289_75998,94,4289_26609,Tallaght,103841822,0,4289_7778022_100590,4289_185 -4289_75998,95,4289_26610,Tallaght,103951822,0,4289_7778022_100590,4289_185 -4289_75998,96,4289_26620,Tallaght,104064674,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26622,Tallaght,103621876,0,4289_7778022_100560,4289_185 -4289_75998,93,4289_26623,Tallaght,103731876,0,4289_7778022_100560,4289_185 -4289_75998,94,4289_26624,Tallaght,103841876,0,4289_7778022_100560,4289_185 -4289_75998,95,4289_26625,Tallaght,103951876,0,4289_7778022_100560,4289_185 -4289_75964,92,4289_2663,Rockbrook,103622025,1,4289_7778022_100182,4289_36 -4289_75998,96,4289_26635,Tallaght,104064726,0,4289_7778022_100470,4289_185 -4289_75998,92,4289_26637,Tallaght,103621934,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26638,Tallaght,103731934,0,4289_7778022_100570,4289_185 -4289_75998,94,4289_26639,Tallaght,103841934,0,4289_7778022_100570,4289_185 -4289_75964,93,4289_2664,Rockbrook,103732025,1,4289_7778022_100182,4289_36 -4289_75998,95,4289_26640,Tallaght,103951934,0,4289_7778022_100570,4289_185 -4289_75964,94,4289_2665,Rockbrook,103842025,1,4289_7778022_100182,4289_36 -4289_75998,96,4289_26650,Tallaght,104064782,0,4289_7778022_100461,4289_185 -4289_75998,92,4289_26652,Tallaght,103621992,0,4289_7778022_100600,4289_185 -4289_75998,93,4289_26653,Tallaght,103731992,0,4289_7778022_100600,4289_185 -4289_75998,94,4289_26654,Tallaght,103841992,0,4289_7778022_100600,4289_185 -4289_75998,95,4289_26655,Tallaght,103951992,0,4289_7778022_100600,4289_185 -4289_75964,95,4289_2666,Rockbrook,103952025,1,4289_7778022_100182,4289_36 -4289_75998,96,4289_26665,Tallaght,104064832,0,4289_7778022_100480,4289_185 -4289_75998,92,4289_26667,Tallaght,103622046,0,4289_7778022_100582,4289_185 -4289_75998,93,4289_26668,Tallaght,103732046,0,4289_7778022_100582,4289_185 -4289_75998,94,4289_26669,Tallaght,103842046,0,4289_7778022_100582,4289_185 -4289_75998,95,4289_26670,Tallaght,103952046,0,4289_7778022_100582,4289_185 -4289_75998,96,4289_26680,Tallaght,104064888,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26682,Tallaght,103622118,0,4289_7778022_100590,4289_185 -4289_75998,93,4289_26683,Tallaght,103732118,0,4289_7778022_100590,4289_185 -4289_75998,94,4289_26684,Tallaght,103842118,0,4289_7778022_100590,4289_185 -4289_75998,95,4289_26685,Tallaght,103952118,0,4289_7778022_100590,4289_185 -4289_75998,96,4289_26695,Tallaght,104064940,0,4289_7778022_100470,4289_185 -4289_75998,92,4289_26697,Tallaght,103622188,0,4289_7778022_100560,4289_185 -4289_75998,93,4289_26698,Tallaght,103732188,0,4289_7778022_100560,4289_185 -4289_75998,94,4289_26699,Tallaght,103842188,0,4289_7778022_100560,4289_185 -4289_75998,95,4289_26700,Tallaght,103952188,0,4289_7778022_100560,4289_185 -4289_75998,96,4289_26710,Tallaght,104064994,0,4289_7778022_100461,4289_185 -4289_75998,92,4289_26712,Tallaght,103622244,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26713,Tallaght,103732244,0,4289_7778022_100570,4289_185 -4289_75998,94,4289_26714,Tallaght,103842244,0,4289_7778022_100570,4289_185 -4289_75998,95,4289_26715,Tallaght,103952244,0,4289_7778022_100570,4289_185 -4289_75998,96,4289_26725,Tallaght,104065044,0,4289_7778022_100480,4289_185 -4289_75998,92,4289_26727,Tallaght,103622318,0,4289_7778022_100600,4289_185 -4289_75998,93,4289_26728,Tallaght,103732318,0,4289_7778022_100600,4289_185 -4289_75998,94,4289_26729,Tallaght,103842318,0,4289_7778022_100600,4289_185 -4289_75964,92,4289_2673,Rockbrook,103622225,1,4289_7778022_104202,4289_36 -4289_75998,95,4289_26730,Tallaght,103952318,0,4289_7778022_100600,4289_185 -4289_75964,93,4289_2674,Rockbrook,103732225,1,4289_7778022_104202,4289_36 -4289_75998,96,4289_26740,Tallaght,104065102,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26742,Tallaght,103622378,0,4289_7778022_100582,4289_185 -4289_75998,93,4289_26743,Tallaght,103732378,0,4289_7778022_100582,4289_185 -4289_75998,94,4289_26744,Tallaght,103842378,0,4289_7778022_100582,4289_185 -4289_75998,95,4289_26745,Tallaght,103952378,0,4289_7778022_100582,4289_185 -4289_75964,94,4289_2675,Rockbrook,103842225,1,4289_7778022_104202,4289_36 -4289_75998,96,4289_26755,Tallaght,104065150,0,4289_7778022_100470,4289_185 -4289_75998,92,4289_26757,Tallaght,103622438,0,4289_7778022_100590,4289_185 -4289_75998,93,4289_26758,Tallaght,103732438,0,4289_7778022_100590,4289_185 -4289_75998,94,4289_26759,Tallaght,103842438,0,4289_7778022_100590,4289_185 -4289_75964,95,4289_2676,Rockbrook,103952225,1,4289_7778022_104202,4289_36 -4289_75998,95,4289_26760,Tallaght,103952438,0,4289_7778022_100590,4289_185 -4289_75998,96,4289_26770,Tallaght,104065204,0,4289_7778022_100461,4289_185 -4289_75998,92,4289_26772,Tallaght,103622496,0,4289_7778022_100560,4289_185 -4289_75998,93,4289_26773,Tallaght,103732496,0,4289_7778022_100560,4289_185 -4289_75998,94,4289_26774,Tallaght,103842496,0,4289_7778022_100560,4289_185 -4289_75998,95,4289_26775,Tallaght,103952496,0,4289_7778022_100560,4289_185 -4289_75998,96,4289_26785,Tallaght,104065256,0,4289_7778022_100480,4289_185 -4289_75998,92,4289_26787,Tallaght,103622556,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26788,Tallaght,103732556,0,4289_7778022_100570,4289_185 -4289_75998,94,4289_26789,Tallaght,103842556,0,4289_7778022_100570,4289_185 -4289_75998,95,4289_26790,Tallaght,103952556,0,4289_7778022_100570,4289_185 -4289_75998,96,4289_26800,Tallaght,104065310,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26802,Tallaght,103622612,0,4289_7778022_100600,4289_185 -4289_75998,93,4289_26803,Tallaght,103732612,0,4289_7778022_100600,4289_185 -4289_75998,94,4289_26804,Tallaght,103842612,0,4289_7778022_100600,4289_185 -4289_75998,95,4289_26805,Tallaght,103952612,0,4289_7778022_100600,4289_185 -4289_75998,96,4289_26815,Tallaght,104065364,0,4289_7778022_100470,4289_185 -4289_75998,92,4289_26817,Tallaght,103622666,0,4289_7778022_100582,4289_185 -4289_75998,93,4289_26818,Tallaght,103732666,0,4289_7778022_100582,4289_185 -4289_75998,94,4289_26819,Tallaght,103842666,0,4289_7778022_100582,4289_185 -4289_75998,95,4289_26820,Tallaght,103952666,0,4289_7778022_100582,4289_185 -4289_75964,92,4289_2683,Rockbrook,103622429,1,4289_7778022_104202,4289_36 -4289_75998,96,4289_26830,Tallaght,104065404,0,4289_7778022_100461,4289_185 -4289_75998,92,4289_26832,Tallaght,103622716,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26833,Tallaght,103732716,0,4289_7778022_100570,4289_185 -4289_75998,94,4289_26834,Tallaght,103842716,0,4289_7778022_100570,4289_185 -4289_75998,95,4289_26835,Tallaght,103952716,0,4289_7778022_100570,4289_185 -4289_75964,93,4289_2684,Rockbrook,103732429,1,4289_7778022_104202,4289_36 -4289_75998,96,4289_26845,Tallaght,104065452,0,4289_7778022_100480,4289_185 -4289_75998,92,4289_26847,Tallaght,103622770,0,4289_7778022_100600,4289_185 -4289_75998,93,4289_26848,Tallaght,103732770,0,4289_7778022_100600,4289_185 -4289_75998,94,4289_26849,Tallaght,103842770,0,4289_7778022_100600,4289_185 -4289_75964,94,4289_2685,Rockbrook,103842429,1,4289_7778022_104202,4289_36 -4289_75998,95,4289_26850,Tallaght,103952770,0,4289_7778022_100600,4289_185 -4289_75964,95,4289_2686,Rockbrook,103952429,1,4289_7778022_104202,4289_36 -4289_75998,96,4289_26860,Tallaght,104065496,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26862,Tallaght,103622818,0,4289_7778022_100582,4289_185 -4289_75998,93,4289_26863,Tallaght,103732818,0,4289_7778022_100582,4289_185 -4289_75998,94,4289_26864,Tallaght,103842818,0,4289_7778022_100582,4289_185 -4289_75998,95,4289_26865,Tallaght,103952818,0,4289_7778022_100582,4289_185 -4289_75998,96,4289_26875,Tallaght,104065542,0,4289_7778022_100470,4289_185 -4289_75998,92,4289_26877,Tallaght,103622872,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26878,Tallaght,103732872,0,4289_7778022_100570,4289_185 -4289_75998,94,4289_26879,Tallaght,103842872,0,4289_7778022_100570,4289_185 -4289_75998,95,4289_26880,Tallaght,103952872,0,4289_7778022_100570,4289_185 -4289_75998,96,4289_26890,Tallaght,104065582,0,4289_7778022_100461,4289_185 -4289_75998,92,4289_26892,Tallaght,103622916,0,4289_7778022_100600,4289_185 -4289_75998,93,4289_26893,Tallaght,103732916,0,4289_7778022_100600,4289_185 -4289_75998,94,4289_26894,Tallaght,103842916,0,4289_7778022_100600,4289_185 -4289_75998,95,4289_26895,Tallaght,103952916,0,4289_7778022_100600,4289_185 -4289_75998,96,4289_26905,Tallaght,104065630,0,4289_7778022_100480,4289_185 -4289_75998,92,4289_26907,Tallaght,103622968,0,4289_7778022_100582,4289_185 -4289_75998,93,4289_26908,Tallaght,103732968,0,4289_7778022_100582,4289_185 -4289_75998,94,4289_26909,Tallaght,103842968,0,4289_7778022_100582,4289_185 -4289_75998,95,4289_26910,Tallaght,103952968,0,4289_7778022_100582,4289_185 -4289_75998,96,4289_26920,Tallaght,104065670,0,4289_7778022_100450,4289_185 -4289_75998,92,4289_26922,Tallaght,103623014,0,4289_7778022_100570,4289_185 -4289_75998,93,4289_26923,Tallaght,103733014,0,4289_7778022_100570,4289_185 -4289_75998,94,4289_26924,Tallaght,103843014,0,4289_7778022_100570,4289_185 -4289_75998,95,4289_26925,Tallaght,103953014,0,4289_7778022_100570,4289_185 -4289_75964,92,4289_2693,Rockbrook,103622531,1,4289_7778022_100183,4289_36 -4289_75998,96,4289_26935,Tallaght,104065742,0,4289_7778022_100462,4289_185 -4289_75998,2,4289_26936,Tallaght,103613080,0,4289_7778022_100600,4289_185 -4289_75998,92,4289_26937,Tallaght,103623080,0,4289_7778022_100600,4289_185 -4289_75998,93,4289_26938,Tallaght,103733080,0,4289_7778022_100600,4289_185 -4289_75998,94,4289_26939,Tallaght,103843080,0,4289_7778022_100600,4289_185 -4289_75964,93,4289_2694,Rockbrook,103732531,1,4289_7778022_100183,4289_36 -4289_75998,95,4289_26940,Tallaght,103953080,0,4289_7778022_100600,4289_185 -4289_75964,94,4289_2695,Rockbrook,103842531,1,4289_7778022_100183,4289_36 -4289_75998,92,4289_26951,St Finian's NS,103621021,1,4289_7778022_100560,4289_187 -4289_75998,93,4289_26952,St Finian's NS,103731021,1,4289_7778022_100560,4289_187 -4289_75998,94,4289_26953,St Finian's NS,103841021,1,4289_7778022_100560,4289_187 -4289_75998,95,4289_26954,St Finian's NS,103951021,1,4289_7778022_100560,4289_187 -4289_75964,95,4289_2696,Rockbrook,103952531,1,4289_7778022_100183,4289_36 -4289_75998,96,4289_26960,St Finian's NS,104064015,1,4289_7778022_100461,4289_188 -4289_75998,92,4289_26962,St Finian's NS,103621051,1,4289_7778022_100581,4289_187 -4289_75998,93,4289_26963,St Finian's NS,103731051,1,4289_7778022_100581,4289_187 -4289_75998,94,4289_26964,St Finian's NS,103841051,1,4289_7778022_100581,4289_187 -4289_75998,95,4289_26965,St Finian's NS,103951051,1,4289_7778022_100581,4289_187 -4289_75998,92,4289_26972,St Finian's NS,103621097,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_26973,St Finian's NS,103731097,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_26974,St Finian's NS,103841097,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_26975,St Finian's NS,103951097,1,4289_7778022_100570,4289_187 -4289_75998,96,4289_26981,St Finian's NS,104064069,1,4289_7778022_100450,4289_188 -4289_75998,92,4289_26983,St Finian's NS,103621163,1,4289_7778022_100560,4289_187 -4289_75998,93,4289_26984,St Finian's NS,103731163,1,4289_7778022_100560,4289_187 -4289_75998,94,4289_26985,St Finian's NS,103841163,1,4289_7778022_100560,4289_187 -4289_75998,95,4289_26986,St Finian's NS,103951163,1,4289_7778022_100560,4289_187 -4289_75998,92,4289_26993,St Finian's NS,103621223,1,4289_7778022_100581,4289_187 -4289_75998,93,4289_26994,St Finian's NS,103731223,1,4289_7778022_100581,4289_187 -4289_75998,94,4289_26995,St Finian's NS,103841223,1,4289_7778022_100581,4289_187 -4289_75998,95,4289_26996,St Finian's NS,103951223,1,4289_7778022_100581,4289_187 -4289_75960,95,4289_27,Sutton Station,103951110,0,4289_7778022_103108,4289_1 -4289_75998,96,4289_27002,St Finian's NS,104064147,1,4289_7778022_100461,4289_188 -4289_75998,92,4289_27008,St Finian's NS,103621303,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_27009,St Finian's NS,103731303,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_27010,St Finian's NS,103841303,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_27011,St Finian's NS,103951303,1,4289_7778022_100570,4289_187 -4289_75998,96,4289_27017,St Finian's NS,104064193,1,4289_7778022_100450,4289_188 -4289_75998,92,4289_27019,St Finian's NS,103621367,1,4289_7778022_100600,4289_187 -4289_75998,93,4289_27020,St Finian's NS,103731367,1,4289_7778022_100600,4289_187 -4289_75998,94,4289_27021,St Finian's NS,103841367,1,4289_7778022_100600,4289_187 -4289_75998,95,4289_27022,St Finian's NS,103951367,1,4289_7778022_100600,4289_187 -4289_75998,96,4289_27028,St Finian's NS,104064237,1,4289_7778022_100461,4289_188 -4289_75964,92,4289_2703,Rockbrook,103622603,1,4289_7778022_104202,4289_36 -4289_75998,92,4289_27034,St Finian's NS,103621427,1,4289_7778022_100590,4289_187 -4289_75998,93,4289_27035,St Finian's NS,103731427,1,4289_7778022_100590,4289_187 -4289_75998,94,4289_27036,St Finian's NS,103841427,1,4289_7778022_100590,4289_187 -4289_75998,95,4289_27037,St Finian's NS,103951427,1,4289_7778022_100590,4289_187 -4289_75964,93,4289_2704,Rockbrook,103732603,1,4289_7778022_104202,4289_36 -4289_75998,96,4289_27043,St Finian's NS,104064283,1,4289_7778022_100480,4289_188 -4289_75998,92,4289_27045,St Finian's NS,103621477,1,4289_7778022_100560,4289_187 -4289_75998,93,4289_27046,St Finian's NS,103731477,1,4289_7778022_100560,4289_187 -4289_75998,94,4289_27047,St Finian's NS,103841477,1,4289_7778022_100560,4289_187 -4289_75998,95,4289_27048,St Finian's NS,103951477,1,4289_7778022_100560,4289_187 -4289_75964,94,4289_2705,Rockbrook,103842603,1,4289_7778022_104202,4289_36 -4289_75998,96,4289_27054,St Finian's NS,104064335,1,4289_7778022_100450,4289_188 -4289_75964,95,4289_2706,Rockbrook,103952603,1,4289_7778022_104202,4289_36 -4289_75998,92,4289_27060,St Finian's NS,103621537,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_27061,St Finian's NS,103731537,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_27062,St Finian's NS,103841537,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_27063,St Finian's NS,103951537,1,4289_7778022_100570,4289_187 -4289_75998,96,4289_27069,St Finian's NS,104064387,1,4289_7778022_100470,4289_188 -4289_75998,92,4289_27075,St Finian's NS,103621593,1,4289_7778022_100600,4289_187 -4289_75998,93,4289_27076,St Finian's NS,103731593,1,4289_7778022_100600,4289_187 -4289_75998,94,4289_27077,St Finian's NS,103841593,1,4289_7778022_100600,4289_187 -4289_75998,95,4289_27078,St Finian's NS,103951593,1,4289_7778022_100600,4289_187 -4289_75998,96,4289_27084,St Finian's NS,104064443,1,4289_7778022_100461,4289_188 -4289_75998,92,4289_27090,St Finian's NS,103621649,1,4289_7778022_100590,4289_187 -4289_75998,93,4289_27091,St Finian's NS,103731649,1,4289_7778022_100590,4289_187 -4289_75998,94,4289_27092,St Finian's NS,103841649,1,4289_7778022_100590,4289_187 -4289_75998,95,4289_27093,St Finian's NS,103951649,1,4289_7778022_100590,4289_187 -4289_75998,96,4289_27099,St Finian's NS,104064497,1,4289_7778022_100480,4289_188 -4289_75998,92,4289_27105,St Finian's NS,103621705,1,4289_7778022_100560,4289_187 -4289_75998,93,4289_27106,St Finian's NS,103731705,1,4289_7778022_100560,4289_187 -4289_75998,94,4289_27107,St Finian's NS,103841705,1,4289_7778022_100560,4289_187 -4289_75998,95,4289_27108,St Finian's NS,103951705,1,4289_7778022_100560,4289_187 -4289_75998,96,4289_27114,St Finian's NS,104064549,1,4289_7778022_100450,4289_188 -4289_75998,92,4289_27120,St Finian's NS,103621761,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_27121,St Finian's NS,103731761,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_27122,St Finian's NS,103841761,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_27123,St Finian's NS,103951761,1,4289_7778022_100570,4289_187 -4289_75998,96,4289_27129,St Finian's NS,104064603,1,4289_7778022_100470,4289_188 -4289_75965,92,4289_2713,Bray Station,103621072,0,4289_7778022_104021,4289_37 -4289_75998,92,4289_27135,St Finian's NS,103621817,1,4289_7778022_100600,4289_187 -4289_75998,93,4289_27136,St Finian's NS,103731817,1,4289_7778022_100600,4289_187 -4289_75998,94,4289_27137,St Finian's NS,103841817,1,4289_7778022_100600,4289_187 -4289_75998,95,4289_27138,St Finian's NS,103951817,1,4289_7778022_100600,4289_187 -4289_75965,93,4289_2714,Bray Station,103731072,0,4289_7778022_104021,4289_37 -4289_75998,96,4289_27144,St Finian's NS,104064657,1,4289_7778022_100461,4289_188 -4289_75965,94,4289_2715,Bray Station,103841072,0,4289_7778022_104021,4289_37 -4289_75998,92,4289_27150,St Finian's NS,103621877,1,4289_7778022_100582,4289_187 -4289_75998,93,4289_27151,St Finian's NS,103731877,1,4289_7778022_100582,4289_187 -4289_75998,94,4289_27152,St Finian's NS,103841877,1,4289_7778022_100582,4289_187 -4289_75998,95,4289_27153,St Finian's NS,103951877,1,4289_7778022_100582,4289_187 -4289_75998,96,4289_27159,St Finian's NS,104064707,1,4289_7778022_100480,4289_188 -4289_75965,95,4289_2716,Bray Station,103951072,0,4289_7778022_104021,4289_37 -4289_75998,92,4289_27165,St Finian's NS,103621935,1,4289_7778022_100590,4289_187 -4289_75998,93,4289_27166,St Finian's NS,103731935,1,4289_7778022_100590,4289_187 -4289_75998,94,4289_27167,St Finian's NS,103841935,1,4289_7778022_100590,4289_187 -4289_75998,95,4289_27168,St Finian's NS,103951935,1,4289_7778022_100590,4289_187 -4289_75998,96,4289_27174,St Finian's NS,104064763,1,4289_7778022_100450,4289_188 -4289_75998,92,4289_27180,St Finian's NS,103621993,1,4289_7778022_100560,4289_187 -4289_75998,93,4289_27181,St Finian's NS,103731993,1,4289_7778022_100560,4289_187 -4289_75998,94,4289_27182,St Finian's NS,103841993,1,4289_7778022_100560,4289_187 -4289_75998,95,4289_27183,St Finian's NS,103951993,1,4289_7778022_100560,4289_187 -4289_75998,96,4289_27189,St Finian's NS,104064817,1,4289_7778022_100470,4289_188 -4289_75998,92,4289_27195,St Finian's NS,103622049,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_27196,St Finian's NS,103732049,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_27197,St Finian's NS,103842049,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_27198,St Finian's NS,103952049,1,4289_7778022_100570,4289_187 -4289_75960,96,4289_272,Sutton Station,104064916,0,4289_7778022_103108,4289_2 -4289_75998,96,4289_27204,St Finian's NS,104064869,1,4289_7778022_100461,4289_188 -4289_75998,92,4289_27210,St Finian's NS,103622113,1,4289_7778022_100600,4289_187 -4289_75998,93,4289_27211,St Finian's NS,103732113,1,4289_7778022_100600,4289_187 -4289_75998,94,4289_27212,St Finian's NS,103842113,1,4289_7778022_100600,4289_187 -4289_75998,95,4289_27213,St Finian's NS,103952113,1,4289_7778022_100600,4289_187 -4289_75998,96,4289_27219,St Finian's NS,104064923,1,4289_7778022_100480,4289_188 -4289_75965,96,4289_2722,Bray Station,104064054,0,4289_7778022_104031,4289_37 -4289_75998,92,4289_27225,St Finian's NS,103622173,1,4289_7778022_100582,4289_187 -4289_75998,93,4289_27226,St Finian's NS,103732173,1,4289_7778022_100582,4289_187 -4289_75998,94,4289_27227,St Finian's NS,103842173,1,4289_7778022_100582,4289_187 -4289_75998,95,4289_27228,St Finian's NS,103952173,1,4289_7778022_100582,4289_187 -4289_75998,96,4289_27234,St Finian's NS,104064977,1,4289_7778022_100450,4289_188 -4289_75965,92,4289_2724,Bray Station,103621142,0,4289_7778022_104050,4289_37 -4289_75998,92,4289_27240,St Finian's NS,103622263,1,4289_7778022_100590,4289_187 -4289_75998,93,4289_27241,St Finian's NS,103732263,1,4289_7778022_100590,4289_187 -4289_75998,94,4289_27242,St Finian's NS,103842263,1,4289_7778022_100590,4289_187 -4289_75998,95,4289_27243,St Finian's NS,103952263,1,4289_7778022_100590,4289_187 -4289_75998,96,4289_27249,St Finian's NS,104065029,1,4289_7778022_100470,4289_188 -4289_75965,93,4289_2725,Bray Station,103731142,0,4289_7778022_104050,4289_37 -4289_75998,92,4289_27255,St Finian's NS,103622335,1,4289_7778022_100560,4289_187 -4289_75998,93,4289_27256,St Finian's NS,103732335,1,4289_7778022_100560,4289_187 -4289_75998,94,4289_27257,St Finian's NS,103842335,1,4289_7778022_100560,4289_187 -4289_75998,95,4289_27258,St Finian's NS,103952335,1,4289_7778022_100560,4289_187 -4289_75965,94,4289_2726,Bray Station,103841142,0,4289_7778022_104050,4289_37 -4289_75998,96,4289_27264,St Finian's NS,104065083,1,4289_7778022_100461,4289_188 -4289_75965,95,4289_2727,Bray Station,103951142,0,4289_7778022_104050,4289_37 -4289_75998,92,4289_27270,St Finian's NS,103622395,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_27271,St Finian's NS,103732395,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_27272,St Finian's NS,103842395,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_27273,St Finian's NS,103952395,1,4289_7778022_100570,4289_187 -4289_75998,96,4289_27279,St Finian's NS,104065137,1,4289_7778022_100480,4289_188 -4289_75998,92,4289_27285,St Finian's NS,103622457,1,4289_7778022_100600,4289_187 -4289_75998,93,4289_27286,St Finian's NS,103732457,1,4289_7778022_100600,4289_187 -4289_75998,94,4289_27287,St Finian's NS,103842457,1,4289_7778022_100600,4289_187 -4289_75998,95,4289_27288,St Finian's NS,103952457,1,4289_7778022_100600,4289_187 -4289_75998,96,4289_27294,St Finian's NS,104065185,1,4289_7778022_100450,4289_188 -4289_75998,92,4289_27300,St Finian's NS,103622515,1,4289_7778022_100582,4289_187 -4289_75998,93,4289_27301,St Finian's NS,103732515,1,4289_7778022_100582,4289_187 -4289_75998,94,4289_27302,St Finian's NS,103842515,1,4289_7778022_100582,4289_187 -4289_75998,95,4289_27303,St Finian's NS,103952515,1,4289_7778022_100582,4289_187 -4289_75998,96,4289_27309,St Finian's NS,104065241,1,4289_7778022_100470,4289_188 -4289_75998,92,4289_27315,St Finian's NS,103622571,1,4289_7778022_100590,4289_187 -4289_75998,93,4289_27316,St Finian's NS,103732571,1,4289_7778022_100590,4289_187 -4289_75998,94,4289_27317,St Finian's NS,103842571,1,4289_7778022_100590,4289_187 -4289_75998,95,4289_27318,St Finian's NS,103952571,1,4289_7778022_100590,4289_187 -4289_75998,96,4289_27324,St Finian's NS,104065295,1,4289_7778022_100461,4289_188 -4289_75965,96,4289_2733,Bray Station,104064100,0,4289_7778022_104041,4289_37 -4289_75998,92,4289_27330,St Finian's NS,103622633,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_27331,St Finian's NS,103732633,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_27332,St Finian's NS,103842633,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_27333,St Finian's NS,103952633,1,4289_7778022_100570,4289_187 -4289_75998,96,4289_27339,St Finian's NS,104065343,1,4289_7778022_100480,4289_188 -4289_75998,92,4289_27345,St Finian's NS,103622687,1,4289_7778022_100600,4289_187 -4289_75998,93,4289_27346,St Finian's NS,103732687,1,4289_7778022_100600,4289_187 -4289_75998,94,4289_27347,St Finian's NS,103842687,1,4289_7778022_100600,4289_187 -4289_75998,95,4289_27348,St Finian's NS,103952687,1,4289_7778022_100600,4289_187 -4289_75965,92,4289_2735,Bray Station,103621194,0,4289_7778022_100171,4289_37 -4289_75998,96,4289_27354,St Finian's NS,104065391,1,4289_7778022_100450,4289_188 -4289_75965,93,4289_2736,Bray Station,103731194,0,4289_7778022_100171,4289_37 -4289_75998,92,4289_27360,St Finian's NS,103622737,1,4289_7778022_100582,4289_187 -4289_75998,93,4289_27361,St Finian's NS,103732737,1,4289_7778022_100582,4289_187 -4289_75998,94,4289_27362,St Finian's NS,103842737,1,4289_7778022_100582,4289_187 -4289_75998,95,4289_27363,St Finian's NS,103952737,1,4289_7778022_100582,4289_187 -4289_75998,96,4289_27369,St Finian's NS,104065437,1,4289_7778022_100470,4289_188 -4289_75965,94,4289_2737,Bray Station,103841194,0,4289_7778022_100171,4289_37 -4289_75998,92,4289_27375,St Finian's NS,103622783,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_27376,St Finian's NS,103732783,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_27377,St Finian's NS,103842783,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_27378,St Finian's NS,103952783,1,4289_7778022_100570,4289_187 -4289_75965,95,4289_2738,Bray Station,103951194,0,4289_7778022_100171,4289_37 -4289_75998,96,4289_27384,St Finian's NS,104065481,1,4289_7778022_100461,4289_188 -4289_75998,92,4289_27390,St Finian's NS,103622835,1,4289_7778022_100600,4289_187 -4289_75998,93,4289_27391,St Finian's NS,103732835,1,4289_7778022_100600,4289_187 -4289_75998,94,4289_27392,St Finian's NS,103842835,1,4289_7778022_100600,4289_187 -4289_75998,95,4289_27393,St Finian's NS,103952835,1,4289_7778022_100600,4289_187 -4289_75998,96,4289_27399,St Finian's NS,104065527,1,4289_7778022_100480,4289_187 -4289_75998,92,4289_27405,St Finian's NS,103622887,1,4289_7778022_100582,4289_187 -4289_75998,93,4289_27406,St Finian's NS,103732887,1,4289_7778022_100582,4289_187 -4289_75998,94,4289_27407,St Finian's NS,103842887,1,4289_7778022_100582,4289_187 -4289_75998,95,4289_27408,St Finian's NS,103952887,1,4289_7778022_100582,4289_187 -4289_75998,96,4289_27414,St Finian's NS,104065571,1,4289_7778022_100450,4289_187 -4289_75998,92,4289_27420,St Finian's NS,103622935,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_27421,St Finian's NS,103732935,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_27422,St Finian's NS,103842935,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_27423,St Finian's NS,103952935,1,4289_7778022_100570,4289_187 -4289_75998,96,4289_27429,St Finian's NS,104065615,1,4289_7778022_100470,4289_187 -4289_75998,92,4289_27435,St Finian's NS,103622983,1,4289_7778022_100600,4289_187 -4289_75998,93,4289_27436,St Finian's NS,103732983,1,4289_7778022_100600,4289_187 -4289_75998,94,4289_27437,St Finian's NS,103842983,1,4289_7778022_100600,4289_187 -4289_75998,95,4289_27438,St Finian's NS,103952983,1,4289_7778022_100600,4289_187 -4289_75965,96,4289_2744,Bray Station,104064140,0,4289_7778022_104011,4289_37 -4289_75998,96,4289_27444,St Finian's NS,104065659,1,4289_7778022_100462,4289_187 -4289_75998,2,4289_27449,St Finian's NS,103613065,1,4289_7778022_100570,4289_187 -4289_75998,92,4289_27450,St Finian's NS,103623065,1,4289_7778022_100570,4289_187 -4289_75998,93,4289_27451,St Finian's NS,103733065,1,4289_7778022_100570,4289_187 -4289_75998,94,4289_27452,St Finian's NS,103843065,1,4289_7778022_100570,4289_187 -4289_75998,95,4289_27453,St Finian's NS,103953065,1,4289_7778022_100570,4289_187 -4289_75998,96,4289_27459,St Finian's NS,104065737,1,4289_7778022_100450,4289_187 -4289_75965,92,4289_2746,Bray Station,103621292,0,4289_7778022_104101,4289_37 -4289_75965,93,4289_2747,Bray Station,103731292,0,4289_7778022_104101,4289_37 -4289_75965,94,4289_2748,Bray Station,103841292,0,4289_7778022_104101,4289_37 -4289_75965,95,4289_2749,Bray Station,103951292,0,4289_7778022_104101,4289_37 -4289_75965,96,4289_2755,Bray Station,104064188,0,4289_7778022_104140,4289_37 -4289_75965,92,4289_2757,Bray Station,103621366,0,4289_7778022_104021,4289_37 -4289_75965,93,4289_2758,Bray Station,103731366,0,4289_7778022_104021,4289_37 -4289_75965,94,4289_2759,Bray Station,103841366,0,4289_7778022_104021,4289_37 -4289_75965,95,4289_2760,Bray Station,103951366,0,4289_7778022_104021,4289_37 -4289_75965,96,4289_2766,Bray Station,104064230,0,4289_7778022_104120,4289_37 -4289_75965,92,4289_2772,Bray Station,103621434,0,4289_7778022_104161,4289_37 -4289_75965,93,4289_2773,Bray Station,103731434,0,4289_7778022_104161,4289_37 -4289_75965,94,4289_2774,Bray Station,103841434,0,4289_7778022_104161,4289_37 -4289_75965,95,4289_2775,Bray Station,103951434,0,4289_7778022_104161,4289_37 -4289_75960,92,4289_278,Sutton Station,103622206,0,4289_7778022_103106,4289_1 -4289_75965,96,4289_2781,Bray Station,104064278,0,4289_7778022_104071,4289_37 -4289_75965,92,4289_2787,Bray Station,103621508,0,4289_7778022_100171,4289_37 -4289_75965,93,4289_2788,Bray Station,103731508,0,4289_7778022_100171,4289_37 -4289_75965,94,4289_2789,Bray Station,103841508,0,4289_7778022_100171,4289_37 -4289_75960,93,4289_279,Sutton Station,103732206,0,4289_7778022_103106,4289_1 -4289_75965,95,4289_2790,Bray Station,103951508,0,4289_7778022_100171,4289_37 -4289_75965,96,4289_2796,Bray Station,104064330,0,4289_7778022_104041,4289_37 -4289_75960,94,4289_280,Sutton Station,103842206,0,4289_7778022_103106,4289_1 -4289_75965,92,4289_2802,Bray Station,103621564,0,4289_7778022_104180,4289_37 -4289_75965,93,4289_2803,Bray Station,103731564,0,4289_7778022_104180,4289_37 -4289_75965,94,4289_2804,Bray Station,103841564,0,4289_7778022_104180,4289_37 -4289_75965,95,4289_2805,Bray Station,103951564,0,4289_7778022_104180,4289_37 -4289_75960,95,4289_281,Sutton Station,103952206,0,4289_7778022_103106,4289_1 -4289_75965,96,4289_2811,Bray Station,104064386,0,4289_7778022_104140,4289_37 -4289_75965,92,4289_2817,Bray Station,103621616,0,4289_7778022_104010,4289_37 -4289_75965,93,4289_2818,Bray Station,103731616,0,4289_7778022_104010,4289_37 -4289_75965,94,4289_2819,Bray Station,103841616,0,4289_7778022_104010,4289_37 -4289_75965,95,4289_2820,Bray Station,103951616,0,4289_7778022_104010,4289_37 -4289_75965,96,4289_2826,Bray Station,104064434,0,4289_7778022_104031,4289_37 -4289_75965,92,4289_2832,Bray Station,103621676,0,4289_7778022_104150,4289_37 -4289_75965,93,4289_2833,Bray Station,103731676,0,4289_7778022_104150,4289_37 -4289_75965,94,4289_2834,Bray Station,103841676,0,4289_7778022_104150,4289_37 -4289_75965,95,4289_2835,Bray Station,103951676,0,4289_7778022_104150,4289_37 -4289_75965,96,4289_2841,Bray Station,104064492,0,4289_7778022_104062,4289_37 -4289_75965,92,4289_2847,Bray Station,103621730,0,4289_7778022_104021,4289_37 -4289_75965,93,4289_2848,Bray Station,103731730,0,4289_7778022_104021,4289_37 -4289_75965,94,4289_2849,Bray Station,103841730,0,4289_7778022_104021,4289_37 -4289_75965,95,4289_2850,Bray Station,103951730,0,4289_7778022_104021,4289_37 -4289_75965,96,4289_2856,Bray Station,104064542,0,4289_7778022_104132,4289_37 -4289_75965,92,4289_2862,Bray Station,103621786,0,4289_7778022_104101,4289_37 -4289_75965,93,4289_2863,Bray Station,103731786,0,4289_7778022_104101,4289_37 -4289_75965,94,4289_2864,Bray Station,103841786,0,4289_7778022_104101,4289_37 -4289_75965,95,4289_2865,Bray Station,103951786,0,4289_7778022_104101,4289_37 -4289_75960,96,4289_287,Sutton Station,104064966,0,4289_7778022_103101,4289_2 -4289_75965,96,4289_2871,Bray Station,104064598,0,4289_7778022_104011,4289_37 -4289_75965,92,4289_2877,Bray Station,103621842,0,4289_7778022_100171,4289_37 -4289_75965,93,4289_2878,Bray Station,103731842,0,4289_7778022_100171,4289_37 -4289_75965,94,4289_2879,Bray Station,103841842,0,4289_7778022_100171,4289_37 -4289_75965,95,4289_2880,Bray Station,103951842,0,4289_7778022_100171,4289_37 -4289_75965,96,4289_2886,Bray Station,104064648,0,4289_7778022_104031,4289_37 -4289_75965,92,4289_2892,Bray Station,103621900,0,4289_7778022_104050,4289_37 -4289_75965,93,4289_2893,Bray Station,103731900,0,4289_7778022_104050,4289_37 -4289_75965,94,4289_2894,Bray Station,103841900,0,4289_7778022_104050,4289_37 -4289_75965,95,4289_2895,Bray Station,103951900,0,4289_7778022_104050,4289_37 -4289_75965,96,4289_2901,Bray Station,104064706,0,4289_7778022_104062,4289_37 -4289_75965,92,4289_2907,Bray Station,103621954,0,4289_7778022_104021,4289_37 -4289_75965,93,4289_2908,Bray Station,103731954,0,4289_7778022_104021,4289_37 -4289_75965,94,4289_2909,Bray Station,103841954,0,4289_7778022_104021,4289_37 -4289_75965,95,4289_2910,Bray Station,103951954,0,4289_7778022_104021,4289_37 -4289_75965,96,4289_2916,Bray Station,104064756,0,4289_7778022_104140,4289_37 -4289_75965,92,4289_2922,Bray Station,103622014,0,4289_7778022_100192,4289_37 -4289_75965,93,4289_2923,Bray Station,103732014,0,4289_7778022_100192,4289_37 -4289_75965,94,4289_2924,Bray Station,103842014,0,4289_7778022_100192,4289_37 -4289_75965,95,4289_2925,Bray Station,103952014,0,4289_7778022_100192,4289_37 -4289_75960,92,4289_293,Sutton Station,103622270,0,4289_7778022_103502,4289_1 -4289_75965,96,4289_2931,Bray Station,104064812,0,4289_7778022_104011,4289_37 -4289_75965,92,4289_2937,Bray Station,103622070,0,4289_7778022_104010,4289_37 -4289_75965,93,4289_2938,Bray Station,103732070,0,4289_7778022_104010,4289_37 -4289_75965,94,4289_2939,Bray Station,103842070,0,4289_7778022_104010,4289_37 -4289_75960,93,4289_294,Sutton Station,103732270,0,4289_7778022_103502,4289_1 -4289_75965,95,4289_2940,Bray Station,103952070,0,4289_7778022_104010,4289_37 -4289_75965,96,4289_2946,Bray Station,104064862,0,4289_7778022_104071,4289_37 -4289_75960,94,4289_295,Sutton Station,103842270,0,4289_7778022_103502,4289_1 -4289_75965,92,4289_2952,Bray Station,103622138,0,4289_7778022_104162,4289_37 -4289_75965,93,4289_2953,Bray Station,103732138,0,4289_7778022_104162,4289_37 -4289_75965,94,4289_2954,Bray Station,103842138,0,4289_7778022_104162,4289_37 -4289_75965,95,4289_2955,Bray Station,103952138,0,4289_7778022_104162,4289_37 -4289_75960,95,4289_296,Sutton Station,103952270,0,4289_7778022_103502,4289_1 -4289_75965,96,4289_2961,Bray Station,104064920,0,4289_7778022_104133,4289_37 -4289_75965,92,4289_2967,Bray Station,103622208,0,4289_7778022_104050,4289_37 -4289_75965,93,4289_2968,Bray Station,103732208,0,4289_7778022_104050,4289_37 -4289_75965,94,4289_2969,Bray Station,103842208,0,4289_7778022_104050,4289_37 -4289_75965,95,4289_2970,Bray Station,103952208,0,4289_7778022_104050,4289_37 -4289_75965,96,4289_2976,Bray Station,104064968,0,4289_7778022_104140,4289_37 -4289_75965,92,4289_2982,Bray Station,103622272,0,4289_7778022_104180,4289_37 -4289_75965,93,4289_2983,Bray Station,103732272,0,4289_7778022_104180,4289_37 -4289_75965,94,4289_2984,Bray Station,103842272,0,4289_7778022_104180,4289_37 -4289_75965,95,4289_2985,Bray Station,103952272,0,4289_7778022_104180,4289_37 -4289_75965,96,4289_2991,Bray Station,104065024,0,4289_7778022_104062,4289_37 -4289_75965,92,4289_2997,Bray Station,103622338,0,4289_7778022_104150,4289_37 -4289_75965,93,4289_2998,Bray Station,103732338,0,4289_7778022_104150,4289_37 -4289_75965,94,4289_2999,Bray Station,103842338,0,4289_7778022_104150,4289_37 -4289_75960,92,4289_3,Sutton Station,103621028,0,4289_7778022_103503,4289_1 -4289_75965,95,4289_3000,Bray Station,103952338,0,4289_7778022_104150,4289_37 -4289_75965,96,4289_3006,Bray Station,104065072,0,4289_7778022_104192,4289_37 -4289_75965,92,4289_3012,Bray Station,103622402,0,4289_7778022_100192,4289_37 -4289_75965,93,4289_3013,Bray Station,103732402,0,4289_7778022_100192,4289_37 -4289_75965,94,4289_3014,Bray Station,103842402,0,4289_7778022_100192,4289_37 -4289_75965,95,4289_3015,Bray Station,103952402,0,4289_7778022_100192,4289_37 -4289_75960,96,4289_302,Sutton Station,104065034,0,4289_7778022_103502,4289_1 -4289_75965,96,4289_3021,Bray Station,104065128,0,4289_7778022_104133,4289_37 -4289_75965,92,4289_3027,Bray Station,103622462,0,4289_7778022_104162,4289_37 -4289_75965,93,4289_3028,Bray Station,103732462,0,4289_7778022_104162,4289_37 -4289_75965,94,4289_3029,Bray Station,103842462,0,4289_7778022_104162,4289_37 -4289_75965,95,4289_3030,Bray Station,103952462,0,4289_7778022_104162,4289_37 -4289_75965,96,4289_3036,Bray Station,104065178,0,4289_7778022_104072,4289_37 -4289_75965,92,4289_3042,Bray Station,103622520,0,4289_7778022_104102,4289_37 -4289_75965,93,4289_3043,Bray Station,103732520,0,4289_7778022_104102,4289_37 -4289_75965,94,4289_3044,Bray Station,103842520,0,4289_7778022_104102,4289_37 -4289_75965,95,4289_3045,Bray Station,103952520,0,4289_7778022_104102,4289_37 -4289_75965,96,4289_3051,Bray Station,104065234,0,4289_7778022_104062,4289_37 -4289_75965,96,4289_3056,Bray Station,104065288,0,4289_7778022_104192,4289_37 -4289_75965,92,4289_3058,Bray Station,103622582,0,4289_7778022_104180,4289_37 -4289_75965,93,4289_3059,Bray Station,103732582,0,4289_7778022_104180,4289_37 -4289_75965,94,4289_3060,Bray Station,103842582,0,4289_7778022_104180,4289_37 -4289_75965,95,4289_3061,Bray Station,103952582,0,4289_7778022_104180,4289_37 -4289_75965,92,4289_3072,Bray Station,103622632,0,4289_7778022_104050,4289_37 -4289_75965,93,4289_3073,Bray Station,103732632,0,4289_7778022_104050,4289_37 -4289_75965,94,4289_3074,Bray Station,103842632,0,4289_7778022_104050,4289_37 -4289_75965,95,4289_3075,Bray Station,103952632,0,4289_7778022_104050,4289_37 -4289_75960,92,4289_308,Sutton Station,103622336,0,4289_7778022_103101,4289_1 -4289_75965,96,4289_3081,Bray Station,104065340,0,4289_7778022_104210,4289_37 -4289_75965,92,4289_3087,Bray Station,103622688,0,4289_7778022_104162,4289_37 -4289_75965,93,4289_3088,Bray Station,103732688,0,4289_7778022_104162,4289_37 -4289_75965,94,4289_3089,Bray Station,103842688,0,4289_7778022_104162,4289_37 -4289_75960,93,4289_309,Sutton Station,103732336,0,4289_7778022_103101,4289_1 -4289_75965,95,4289_3090,Bray Station,103952688,0,4289_7778022_104162,4289_37 -4289_75965,96,4289_3096,Bray Station,104065390,0,4289_7778022_104012,4289_37 -4289_75960,94,4289_310,Sutton Station,103842336,0,4289_7778022_103101,4289_1 -4289_75965,92,4289_3102,Bray Station,103622732,0,4289_7778022_104122,4289_37 -4289_75965,93,4289_3103,Bray Station,103732732,0,4289_7778022_104122,4289_37 -4289_75965,94,4289_3104,Bray Station,103842732,0,4289_7778022_104122,4289_37 -4289_75965,95,4289_3105,Bray Station,103952732,0,4289_7778022_104122,4289_37 -4289_75960,95,4289_311,Sutton Station,103952336,0,4289_7778022_103101,4289_1 -4289_75965,96,4289_3111,Bray Station,104065432,0,4289_7778022_104133,4289_37 -4289_75965,92,4289_3117,Bray Station,103622790,0,4289_7778022_100080,4289_37 -4289_75965,93,4289_3118,Bray Station,103732790,0,4289_7778022_100080,4289_37 -4289_75965,94,4289_3119,Bray Station,103842790,0,4289_7778022_100080,4289_37 -4289_75965,95,4289_3120,Bray Station,103952790,0,4289_7778022_100080,4289_37 -4289_75965,96,4289_3126,Bray Station,104065484,0,4289_7778022_104162,4289_37 -4289_75965,92,4289_3132,Bray Station,103622832,0,4289_7778022_104050,4289_37 -4289_75965,93,4289_3133,Bray Station,103732832,0,4289_7778022_104050,4289_37 -4289_75965,94,4289_3134,Bray Station,103842832,0,4289_7778022_104050,4289_37 -4289_75965,95,4289_3135,Bray Station,103952832,0,4289_7778022_104050,4289_37 -4289_75965,96,4289_3141,Bray Station,104065522,0,4289_7778022_104072,4289_37 -4289_75965,92,4289_3147,Bray Station,103622888,0,4289_7778022_104010,4289_37 -4289_75965,93,4289_3148,Bray Station,103732888,0,4289_7778022_104010,4289_37 -4289_75965,94,4289_3149,Bray Station,103842888,0,4289_7778022_104010,4289_37 -4289_75965,95,4289_3150,Bray Station,103952888,0,4289_7778022_104010,4289_37 -4289_75965,96,4289_3156,Bray Station,104065570,0,4289_7778022_104210,4289_37 -4289_75965,92,4289_3162,Bray Station,103622930,0,4289_7778022_104122,4289_37 -4289_75965,93,4289_3163,Bray Station,103732930,0,4289_7778022_104122,4289_37 -4289_75965,94,4289_3164,Bray Station,103842930,0,4289_7778022_104122,4289_37 -4289_75965,95,4289_3165,Bray Station,103952930,0,4289_7778022_104122,4289_37 -4289_75960,96,4289_317,Sutton Station,104065092,0,4289_7778022_103104,4289_1 -4289_75965,96,4289_3171,Bray Station,104065610,0,4289_7778022_104133,4289_37 -4289_75965,92,4289_3177,Bray Station,103622984,0,4289_7778022_104102,4289_37 -4289_75965,93,4289_3178,Bray Station,103732984,0,4289_7778022_104102,4289_37 -4289_75965,94,4289_3179,Bray Station,103842984,0,4289_7778022_104102,4289_37 -4289_75965,95,4289_3180,Bray Station,103952984,0,4289_7778022_104102,4289_37 -4289_75965,96,4289_3186,Bray Station,104065656,0,4289_7778022_104202,4289_37 -4289_75965,92,4289_3192,Bray Station,103623028,0,4289_7778022_104030,4289_37 -4289_75965,93,4289_3193,Bray Station,103733028,0,4289_7778022_104030,4289_37 -4289_75965,94,4289_3194,Bray Station,103843028,0,4289_7778022_104030,4289_37 -4289_75965,95,4289_3195,Bray Station,103953028,0,4289_7778022_104030,4289_37 -4289_75965,96,4289_3201,Bray Station,104065696,0,4289_7778022_104072,4289_37 -4289_75965,96,4289_3206,Newtownmountkennedy,104064045,1,4289_7778022_104041,4289_38 -4289_75965,92,4289_3208,Newtownmountkennedy,103621077,1,4289_7778022_100171,4289_38 -4289_75965,93,4289_3209,Newtownmountkennedy,103731077,1,4289_7778022_100171,4289_38 -4289_75965,94,4289_3210,Newtownmountkennedy,103841077,1,4289_7778022_100171,4289_38 -4289_75965,95,4289_3211,Newtownmountkennedy,103951077,1,4289_7778022_100171,4289_38 -4289_75965,96,4289_3217,Newtownmountkennedy,104064077,1,4289_7778022_104011,4289_38 -4289_75965,92,4289_3219,Newtownmountkennedy,103621139,1,4289_7778022_104101,4289_38 -4289_75965,93,4289_3220,Newtownmountkennedy,103731139,1,4289_7778022_104101,4289_38 -4289_75965,94,4289_3221,Newtownmountkennedy,103841139,1,4289_7778022_104101,4289_38 -4289_75965,95,4289_3222,Newtownmountkennedy,103951139,1,4289_7778022_104101,4289_38 -4289_75965,96,4289_3228,Newtownmountkennedy,104064121,1,4289_7778022_104140,4289_38 -4289_75960,92,4289_323,Sutton Station,103622400,0,4289_7778022_103102,4289_1 -4289_75965,92,4289_3230,Newtownmountkennedy,103621201,1,4289_7778022_104021,4289_38 -4289_75965,93,4289_3231,Newtownmountkennedy,103731201,1,4289_7778022_104021,4289_38 -4289_75965,94,4289_3232,Newtownmountkennedy,103841201,1,4289_7778022_104021,4289_38 -4289_75965,95,4289_3233,Newtownmountkennedy,103951201,1,4289_7778022_104021,4289_38 -4289_75965,96,4289_3239,Newtownmountkennedy,104064159,1,4289_7778022_104120,4289_38 -4289_75960,93,4289_324,Sutton Station,103732400,0,4289_7778022_103102,4289_1 -4289_75965,92,4289_3241,Newtownmountkennedy,103621257,1,4289_7778022_104161,4289_38 -4289_75965,93,4289_3242,Newtownmountkennedy,103731257,1,4289_7778022_104161,4289_38 -4289_75965,94,4289_3243,Newtownmountkennedy,103841257,1,4289_7778022_104161,4289_38 -4289_75965,95,4289_3244,Newtownmountkennedy,103951257,1,4289_7778022_104161,4289_38 -4289_75960,94,4289_325,Sutton Station,103842400,0,4289_7778022_103102,4289_1 -4289_75965,96,4289_3250,Newtownmountkennedy,104064207,1,4289_7778022_104071,4289_38 -4289_75965,92,4289_3256,Newtownmountkennedy,103621363,1,4289_7778022_100171,4289_38 -4289_75965,93,4289_3257,Newtownmountkennedy,103731363,1,4289_7778022_100171,4289_38 -4289_75965,94,4289_3258,Newtownmountkennedy,103841363,1,4289_7778022_100171,4289_38 -4289_75965,95,4289_3259,Newtownmountkennedy,103951363,1,4289_7778022_100171,4289_38 -4289_75960,95,4289_326,Sutton Station,103952400,0,4289_7778022_103102,4289_1 -4289_75965,96,4289_3265,Newtownmountkennedy,104064251,1,4289_7778022_104041,4289_38 -4289_75965,92,4289_3271,Newtownmountkennedy,103621421,1,4289_7778022_104180,4289_38 -4289_75965,93,4289_3272,Newtownmountkennedy,103731421,1,4289_7778022_104180,4289_38 -4289_75965,94,4289_3273,Newtownmountkennedy,103841421,1,4289_7778022_104180,4289_38 -4289_75965,95,4289_3274,Newtownmountkennedy,103951421,1,4289_7778022_104180,4289_38 -4289_75965,96,4289_3280,Newtownmountkennedy,104064297,1,4289_7778022_104140,4289_38 -4289_75965,92,4289_3286,Newtownmountkennedy,103621483,1,4289_7778022_104010,4289_38 -4289_75965,93,4289_3287,Newtownmountkennedy,103731483,1,4289_7778022_104010,4289_38 -4289_75965,94,4289_3288,Newtownmountkennedy,103841483,1,4289_7778022_104010,4289_38 -4289_75965,95,4289_3289,Newtownmountkennedy,103951483,1,4289_7778022_104010,4289_38 -4289_75965,96,4289_3295,Newtownmountkennedy,104064351,1,4289_7778022_104031,4289_38 -4289_75960,96,4289_33,Sutton Station,104064084,0,4289_7778022_103104,4289_1 -4289_75965,92,4289_3301,Newtownmountkennedy,103621541,1,4289_7778022_104150,4289_38 -4289_75965,93,4289_3302,Newtownmountkennedy,103731541,1,4289_7778022_104150,4289_38 -4289_75965,94,4289_3303,Newtownmountkennedy,103841541,1,4289_7778022_104150,4289_38 -4289_75965,95,4289_3304,Newtownmountkennedy,103951541,1,4289_7778022_104150,4289_38 -4289_75965,96,4289_3310,Newtownmountkennedy,104064403,1,4289_7778022_104062,4289_38 -4289_75965,92,4289_3316,Newtownmountkennedy,103621597,1,4289_7778022_104021,4289_38 -4289_75965,93,4289_3317,Newtownmountkennedy,103731597,1,4289_7778022_104021,4289_38 -4289_75965,94,4289_3318,Newtownmountkennedy,103841597,1,4289_7778022_104021,4289_38 -4289_75965,95,4289_3319,Newtownmountkennedy,103951597,1,4289_7778022_104021,4289_38 -4289_75960,96,4289_332,Sutton Station,104065140,0,4289_7778022_103503,4289_1 -4289_75965,96,4289_3325,Newtownmountkennedy,104064457,1,4289_7778022_104132,4289_38 -4289_75965,92,4289_3331,Newtownmountkennedy,103621653,1,4289_7778022_104101,4289_38 -4289_75965,93,4289_3332,Newtownmountkennedy,103731653,1,4289_7778022_104101,4289_38 -4289_75965,94,4289_3333,Newtownmountkennedy,103841653,1,4289_7778022_104101,4289_38 -4289_75965,95,4289_3334,Newtownmountkennedy,103951653,1,4289_7778022_104101,4289_38 -4289_75965,96,4289_3340,Newtownmountkennedy,104064501,1,4289_7778022_104011,4289_38 -4289_75965,92,4289_3346,Newtownmountkennedy,103621709,1,4289_7778022_100171,4289_38 -4289_75965,93,4289_3347,Newtownmountkennedy,103731709,1,4289_7778022_100171,4289_38 -4289_75965,94,4289_3348,Newtownmountkennedy,103841709,1,4289_7778022_100171,4289_38 -4289_75965,95,4289_3349,Newtownmountkennedy,103951709,1,4289_7778022_100171,4289_38 -4289_75965,96,4289_3355,Newtownmountkennedy,104064553,1,4289_7778022_104031,4289_38 -4289_75965,92,4289_3361,Newtownmountkennedy,103621765,1,4289_7778022_104050,4289_38 -4289_75965,93,4289_3362,Newtownmountkennedy,103731765,1,4289_7778022_104050,4289_38 -4289_75965,94,4289_3363,Newtownmountkennedy,103841765,1,4289_7778022_104050,4289_38 -4289_75965,95,4289_3364,Newtownmountkennedy,103951765,1,4289_7778022_104050,4289_38 -4289_75965,96,4289_3370,Newtownmountkennedy,104064607,1,4289_7778022_104062,4289_38 -4289_75965,92,4289_3376,Newtownmountkennedy,103621823,1,4289_7778022_104021,4289_38 -4289_75965,93,4289_3377,Newtownmountkennedy,103731823,1,4289_7778022_104021,4289_38 -4289_75965,94,4289_3378,Newtownmountkennedy,103841823,1,4289_7778022_104021,4289_38 -4289_75965,95,4289_3379,Newtownmountkennedy,103951823,1,4289_7778022_104021,4289_38 -4289_75960,92,4289_338,Sutton Station,103622460,0,4289_7778022_103104,4289_1 -4289_75965,96,4289_3385,Newtownmountkennedy,104064661,1,4289_7778022_104140,4289_38 -4289_75960,93,4289_339,Sutton Station,103732460,0,4289_7778022_103104,4289_1 -4289_75965,92,4289_3391,Newtownmountkennedy,103621881,1,4289_7778022_100192,4289_38 -4289_75965,93,4289_3392,Newtownmountkennedy,103731881,1,4289_7778022_100192,4289_38 -4289_75965,94,4289_3393,Newtownmountkennedy,103841881,1,4289_7778022_100192,4289_38 -4289_75965,95,4289_3394,Newtownmountkennedy,103951881,1,4289_7778022_100192,4289_38 -4289_75960,94,4289_340,Sutton Station,103842460,0,4289_7778022_103104,4289_1 -4289_75965,96,4289_3400,Newtownmountkennedy,104064713,1,4289_7778022_104011,4289_38 -4289_75965,92,4289_3406,Newtownmountkennedy,103621941,1,4289_7778022_104010,4289_38 -4289_75965,93,4289_3407,Newtownmountkennedy,103731941,1,4289_7778022_104010,4289_38 -4289_75965,94,4289_3408,Newtownmountkennedy,103841941,1,4289_7778022_104010,4289_38 -4289_75965,95,4289_3409,Newtownmountkennedy,103951941,1,4289_7778022_104010,4289_38 -4289_75960,95,4289_341,Sutton Station,103952460,0,4289_7778022_103104,4289_1 -4289_75965,96,4289_3415,Newtownmountkennedy,104064767,1,4289_7778022_104071,4289_38 -4289_75965,92,4289_3421,Newtownmountkennedy,103621997,1,4289_7778022_104050,4289_38 -4289_75965,93,4289_3422,Newtownmountkennedy,103731997,1,4289_7778022_104050,4289_38 -4289_75965,94,4289_3423,Newtownmountkennedy,103841997,1,4289_7778022_104050,4289_38 -4289_75965,95,4289_3424,Newtownmountkennedy,103951997,1,4289_7778022_104050,4289_38 -4289_75965,96,4289_3430,Newtownmountkennedy,104064821,1,4289_7778022_104133,4289_38 -4289_75965,92,4289_3436,Newtownmountkennedy,103622053,1,4289_7778022_104180,4289_38 -4289_75965,93,4289_3437,Newtownmountkennedy,103732053,1,4289_7778022_104180,4289_38 -4289_75965,94,4289_3438,Newtownmountkennedy,103842053,1,4289_7778022_104180,4289_38 -4289_75965,95,4289_3439,Newtownmountkennedy,103952053,1,4289_7778022_104180,4289_38 -4289_75965,96,4289_3445,Newtownmountkennedy,104064873,1,4289_7778022_104140,4289_38 -4289_75965,92,4289_3451,Newtownmountkennedy,103622117,1,4289_7778022_104150,4289_38 -4289_75965,93,4289_3452,Newtownmountkennedy,103732117,1,4289_7778022_104150,4289_38 -4289_75965,94,4289_3453,Newtownmountkennedy,103842117,1,4289_7778022_104150,4289_38 -4289_75965,95,4289_3454,Newtownmountkennedy,103952117,1,4289_7778022_104150,4289_38 -4289_75965,96,4289_3460,Newtownmountkennedy,104064927,1,4289_7778022_104062,4289_38 -4289_75965,92,4289_3466,Newtownmountkennedy,103622177,1,4289_7778022_100192,4289_38 -4289_75965,93,4289_3467,Newtownmountkennedy,103732177,1,4289_7778022_100192,4289_38 -4289_75965,94,4289_3468,Newtownmountkennedy,103842177,1,4289_7778022_100192,4289_38 -4289_75965,95,4289_3469,Newtownmountkennedy,103952177,1,4289_7778022_100192,4289_38 -4289_75960,96,4289_347,Sutton Station,104065198,0,4289_7778022_103501,4289_1 -4289_75965,96,4289_3475,Newtownmountkennedy,104064981,1,4289_7778022_104192,4289_38 -4289_75965,92,4289_3481,Newtownmountkennedy,103622265,1,4289_7778022_104162,4289_38 -4289_75965,93,4289_3482,Newtownmountkennedy,103732265,1,4289_7778022_104162,4289_38 -4289_75965,94,4289_3483,Newtownmountkennedy,103842265,1,4289_7778022_104162,4289_38 -4289_75965,95,4289_3484,Newtownmountkennedy,103952265,1,4289_7778022_104162,4289_38 -4289_75965,96,4289_3490,Newtownmountkennedy,104065033,1,4289_7778022_104133,4289_38 -4289_75965,92,4289_3496,Newtownmountkennedy,103622337,1,4289_7778022_104102,4289_38 -4289_75965,93,4289_3497,Newtownmountkennedy,103732337,1,4289_7778022_104102,4289_38 -4289_75965,94,4289_3498,Newtownmountkennedy,103842337,1,4289_7778022_104102,4289_38 -4289_75965,95,4289_3499,Newtownmountkennedy,103952337,1,4289_7778022_104102,4289_38 -4289_75960,92,4289_35,Sutton Station,103621178,0,4289_7778022_103501,4289_1 -4289_75965,96,4289_3505,Newtownmountkennedy,104065087,1,4289_7778022_104072,4289_38 -4289_75965,92,4289_3511,Newtownmountkennedy,103622397,1,4289_7778022_104180,4289_38 -4289_75965,93,4289_3512,Newtownmountkennedy,103732397,1,4289_7778022_104180,4289_38 -4289_75965,94,4289_3513,Newtownmountkennedy,103842397,1,4289_7778022_104180,4289_38 -4289_75965,95,4289_3514,Newtownmountkennedy,103952397,1,4289_7778022_104180,4289_38 -4289_75965,96,4289_3520,Newtownmountkennedy,104065141,1,4289_7778022_104062,4289_38 -4289_75965,92,4289_3526,Newtownmountkennedy,103622461,1,4289_7778022_104050,4289_38 -4289_75965,93,4289_3527,Newtownmountkennedy,103732461,1,4289_7778022_104050,4289_38 -4289_75965,94,4289_3528,Newtownmountkennedy,103842461,1,4289_7778022_104050,4289_38 -4289_75965,95,4289_3529,Newtownmountkennedy,103952461,1,4289_7778022_104050,4289_38 -4289_75960,92,4289_353,Sutton Station,103622518,0,4289_7778022_103108,4289_1 -4289_75965,96,4289_3535,Newtownmountkennedy,104065191,1,4289_7778022_104192,4289_39 -4289_75960,93,4289_354,Sutton Station,103732518,0,4289_7778022_103108,4289_1 -4289_75965,92,4289_3541,Newtownmountkennedy,103622519,1,4289_7778022_100192,4289_38 -4289_75965,93,4289_3542,Newtownmountkennedy,103732519,1,4289_7778022_100192,4289_38 -4289_75965,94,4289_3543,Newtownmountkennedy,103842519,1,4289_7778022_100192,4289_38 -4289_75965,95,4289_3544,Newtownmountkennedy,103952519,1,4289_7778022_100192,4289_38 -4289_75960,94,4289_355,Sutton Station,103842518,0,4289_7778022_103108,4289_1 -4289_75965,96,4289_3550,Newtownmountkennedy,104065245,1,4289_7778022_104210,4289_39 -4289_75965,96,4289_3555,Newtownmountkennedy,104065299,1,4289_7778022_104012,4289_38 -4289_75965,92,4289_3557,Newtownmountkennedy,103622579,1,4289_7778022_104162,4289_38 -4289_75965,93,4289_3558,Newtownmountkennedy,103732579,1,4289_7778022_104162,4289_38 -4289_75965,94,4289_3559,Newtownmountkennedy,103842579,1,4289_7778022_104162,4289_38 -4289_75960,95,4289_356,Sutton Station,103952518,0,4289_7778022_103108,4289_1 -4289_75965,95,4289_3560,Newtownmountkennedy,103952579,1,4289_7778022_104162,4289_38 -4289_75965,92,4289_3571,Newtownmountkennedy,103622641,1,4289_7778022_104122,4289_38 -4289_75965,93,4289_3572,Newtownmountkennedy,103732641,1,4289_7778022_104122,4289_38 -4289_75965,94,4289_3573,Newtownmountkennedy,103842641,1,4289_7778022_104122,4289_38 -4289_75965,95,4289_3574,Newtownmountkennedy,103952641,1,4289_7778022_104122,4289_38 -4289_75965,96,4289_3580,Newtownmountkennedy,104065357,1,4289_7778022_104133,4289_38 -4289_75965,92,4289_3586,Newtownmountkennedy,103622699,1,4289_7778022_100080,4289_38 -4289_75965,93,4289_3587,Newtownmountkennedy,103732699,1,4289_7778022_100080,4289_38 -4289_75965,94,4289_3588,Newtownmountkennedy,103842699,1,4289_7778022_100080,4289_38 -4289_75965,95,4289_3589,Newtownmountkennedy,103952699,1,4289_7778022_100080,4289_38 -4289_75965,96,4289_3595,Newtownmountkennedy,104065403,1,4289_7778022_104162,4289_38 -4289_75960,93,4289_36,Sutton Station,103731178,0,4289_7778022_103501,4289_1 -4289_75965,92,4289_3601,Newtownmountkennedy,103622745,1,4289_7778022_104050,4289_38 -4289_75965,93,4289_3602,Newtownmountkennedy,103732745,1,4289_7778022_104050,4289_38 -4289_75965,94,4289_3603,Newtownmountkennedy,103842745,1,4289_7778022_104050,4289_38 -4289_75965,95,4289_3604,Newtownmountkennedy,103952745,1,4289_7778022_104050,4289_38 -4289_75965,96,4289_3610,Newtownmountkennedy,104065447,1,4289_7778022_104072,4289_38 -4289_75965,92,4289_3616,Newtownmountkennedy,103622803,1,4289_7778022_104010,4289_38 -4289_75965,93,4289_3617,Newtownmountkennedy,103732803,1,4289_7778022_104010,4289_38 -4289_75965,94,4289_3618,Newtownmountkennedy,103842803,1,4289_7778022_104010,4289_38 -4289_75965,95,4289_3619,Newtownmountkennedy,103952803,1,4289_7778022_104010,4289_38 -4289_75960,96,4289_362,Sutton Station,104065246,0,4289_7778022_103101,4289_1 -4289_75965,96,4289_3625,Newtownmountkennedy,104065499,1,4289_7778022_104210,4289_38 -4289_75965,92,4289_3631,Newtownmountkennedy,103622847,1,4289_7778022_104122,4289_38 -4289_75965,93,4289_3632,Newtownmountkennedy,103732847,1,4289_7778022_104122,4289_38 -4289_75965,94,4289_3633,Newtownmountkennedy,103842847,1,4289_7778022_104122,4289_38 -4289_75965,95,4289_3634,Newtownmountkennedy,103952847,1,4289_7778022_104122,4289_38 -4289_75965,96,4289_3640,Newtownmountkennedy,104065539,1,4289_7778022_104133,4289_38 -4289_75965,92,4289_3646,Newtownmountkennedy,103622903,1,4289_7778022_104102,4289_38 -4289_75965,93,4289_3647,Newtownmountkennedy,103732903,1,4289_7778022_104102,4289_38 -4289_75965,94,4289_3648,Newtownmountkennedy,103842903,1,4289_7778022_104102,4289_38 -4289_75965,95,4289_3649,Newtownmountkennedy,103952903,1,4289_7778022_104102,4289_38 -4289_75965,96,4289_3655,Newtownmountkennedy,104065589,1,4289_7778022_104202,4289_38 -4289_75965,92,4289_3661,Newtownmountkennedy,103622949,1,4289_7778022_104030,4289_38 -4289_75965,93,4289_3662,Newtownmountkennedy,103732949,1,4289_7778022_104030,4289_38 -4289_75965,94,4289_3663,Newtownmountkennedy,103842949,1,4289_7778022_104030,4289_38 -4289_75965,95,4289_3664,Newtownmountkennedy,103952949,1,4289_7778022_104030,4289_38 -4289_75965,96,4289_3670,Newtownmountkennedy,104065631,1,4289_7778022_104072,4289_38 -4289_75965,92,4289_3676,Newtownmountkennedy,103623001,1,4289_7778022_104162,4289_38 -4289_75965,93,4289_3677,Newtownmountkennedy,103733001,1,4289_7778022_104162,4289_38 -4289_75965,94,4289_3678,Newtownmountkennedy,103843001,1,4289_7778022_104162,4289_38 -4289_75965,95,4289_3679,Newtownmountkennedy,103953001,1,4289_7778022_104162,4289_38 -4289_75960,92,4289_368,Sutton Station,103622578,0,4289_7778022_103501,4289_1 -4289_75965,96,4289_3685,Newtownmountkennedy,104065679,1,4289_7778022_104012,4289_38 -4289_75960,93,4289_369,Sutton Station,103732578,0,4289_7778022_103501,4289_1 -4289_75965,92,4289_3691,Newtownmountkennedy,103623035,1,4289_7778022_104010,4289_38 -4289_75965,93,4289_3692,Newtownmountkennedy,103733035,1,4289_7778022_104010,4289_38 -4289_75965,94,4289_3693,Newtownmountkennedy,103843035,1,4289_7778022_104010,4289_38 -4289_75965,95,4289_3694,Newtownmountkennedy,103953035,1,4289_7778022_104010,4289_38 -4289_75960,94,4289_37,Sutton Station,103841178,0,4289_7778022_103501,4289_1 -4289_75960,94,4289_370,Sutton Station,103842578,0,4289_7778022_103501,4289_1 -4289_75965,96,4289_3700,Newtownmountkennedy,104065715,1,4289_7778022_104210,4289_38 -4289_75965,2,4289_3705,Newtownmountkennedy,103613079,1,4289_7778022_104030,4289_38 -4289_75965,92,4289_3706,Newtownmountkennedy,103623079,1,4289_7778022_104030,4289_38 -4289_75965,93,4289_3707,Newtownmountkennedy,103733079,1,4289_7778022_104030,4289_38 -4289_75965,94,4289_3708,Newtownmountkennedy,103843079,1,4289_7778022_104030,4289_38 -4289_75965,95,4289_3709,Newtownmountkennedy,103953079,1,4289_7778022_104030,4289_38 -4289_75960,95,4289_371,Sutton Station,103952578,0,4289_7778022_103501,4289_1 -4289_75966,96,4289_3715,Bray Station,104064036,0,4289_7778022_104011,4289_41 -4289_75966,92,4289_3717,Bray Station,103621058,0,4289_7778022_104010,4289_41 -4289_75966,93,4289_3718,Bray Station,103731058,0,4289_7778022_104010,4289_41 -4289_75966,94,4289_3719,Bray Station,103841058,0,4289_7778022_104010,4289_41 -4289_75966,95,4289_3720,Bray Station,103951058,0,4289_7778022_104010,4289_41 -4289_75966,96,4289_3726,Bray Station,104064102,0,4289_7778022_104071,4289_40 -4289_75966,92,4289_3728,Bray Station,103621170,0,4289_7778022_104010,4289_40 -4289_75966,93,4289_3729,Bray Station,103731170,0,4289_7778022_104010,4289_40 -4289_75966,94,4289_3730,Bray Station,103841170,0,4289_7778022_104010,4289_40 -4289_75966,95,4289_3731,Bray Station,103951170,0,4289_7778022_104010,4289_40 -4289_75966,96,4289_3737,Bray Station,104064120,0,4289_7778022_104120,4289_41 -4289_75966,92,4289_3739,Bray Station,103621198,0,4289_7778022_104121,4289_41 -4289_75966,93,4289_3740,Bray Station,103731198,0,4289_7778022_104121,4289_41 -4289_75966,94,4289_3741,Bray Station,103841198,0,4289_7778022_104121,4289_41 -4289_75966,95,4289_3742,Bray Station,103951198,0,4289_7778022_104121,4289_41 -4289_75966,92,4289_3753,Bray Station,103621328,0,4289_7778022_104121,4289_40 -4289_75966,93,4289_3754,Bray Station,103731328,0,4289_7778022_104121,4289_40 -4289_75966,94,4289_3755,Bray Station,103841328,0,4289_7778022_104121,4289_40 -4289_75966,95,4289_3756,Bray Station,103951328,0,4289_7778022_104121,4289_40 -4289_75966,96,4289_3762,Bray Station,104064190,0,4289_7778022_104071,4289_43 -4289_75966,92,4289_3764,Bray Station,103621360,0,4289_7778022_104010,4289_41 -4289_75966,93,4289_3765,Bray Station,103731360,0,4289_7778022_104010,4289_41 -4289_75966,94,4289_3766,Bray Station,103841360,0,4289_7778022_104010,4289_41 -4289_75966,95,4289_3767,Bray Station,103951360,0,4289_7778022_104010,4289_41 -4289_75960,96,4289_377,Sutton Station,104065302,0,4289_7778022_103502,4289_1 -4289_75966,96,4289_3773,Bray Station,104064210,0,4289_7778022_104031,4289_41 -4289_75966,96,4289_3778,Bray Station,104064280,0,4289_7778022_104140,4289_40 -4289_75966,92,4289_3780,Bray Station,103621472,0,4289_7778022_104010,4289_40 -4289_75966,93,4289_3781,Bray Station,103731472,0,4289_7778022_104010,4289_40 -4289_75966,94,4289_3782,Bray Station,103841472,0,4289_7778022_104010,4289_40 -4289_75966,95,4289_3783,Bray Station,103951472,0,4289_7778022_104010,4289_40 -4289_75966,96,4289_3793,Bray Station,104064310,0,4289_7778022_104011,4289_41 -4289_75966,92,4289_3795,Bray Station,103621494,0,4289_7778022_104121,4289_41 -4289_75966,93,4289_3796,Bray Station,103731494,0,4289_7778022_104121,4289_41 -4289_75966,94,4289_3797,Bray Station,103841494,0,4289_7778022_104121,4289_41 -4289_75966,95,4289_3798,Bray Station,103951494,0,4289_7778022_104121,4289_41 -4289_75960,95,4289_38,Sutton Station,103951178,0,4289_7778022_103501,4289_1 -4289_75966,92,4289_3813,Bray Station,103621584,0,4289_7778022_104121,4289_40 -4289_75966,93,4289_3814,Bray Station,103731584,0,4289_7778022_104121,4289_40 -4289_75966,94,4289_3815,Bray Station,103841584,0,4289_7778022_104121,4289_40 -4289_75966,95,4289_3816,Bray Station,103951584,0,4289_7778022_104121,4289_40 -4289_75966,96,4289_3822,Bray Station,104064408,0,4289_7778022_104071,4289_40 -4289_75966,92,4289_3824,Bray Station,103621604,0,4289_7778022_104101,4289_41 -4289_75966,93,4289_3825,Bray Station,103731604,0,4289_7778022_104101,4289_41 -4289_75966,94,4289_3826,Bray Station,103841604,0,4289_7778022_104101,4289_41 -4289_75966,95,4289_3827,Bray Station,103951604,0,4289_7778022_104101,4289_41 -4289_75960,92,4289_383,Sutton Station,103622642,0,4289_7778022_103105,4289_1 -4289_75966,96,4289_3833,Bray Station,104064426,0,4289_7778022_104120,4289_41 -4289_75966,92,4289_3839,Bray Station,103621696,0,4289_7778022_104180,4289_40 -4289_75960,93,4289_384,Sutton Station,103732642,0,4289_7778022_103105,4289_1 -4289_75966,93,4289_3840,Bray Station,103731696,0,4289_7778022_104180,4289_40 -4289_75966,94,4289_3841,Bray Station,103841696,0,4289_7778022_104180,4289_40 -4289_75966,95,4289_3842,Bray Station,103951696,0,4289_7778022_104180,4289_40 -4289_75966,96,4289_3848,Bray Station,104064514,0,4289_7778022_104140,4289_40 -4289_75960,94,4289_385,Sutton Station,103842642,0,4289_7778022_103105,4289_1 -4289_75966,92,4289_3854,Bray Station,103621716,0,4289_7778022_104121,4289_41 -4289_75966,93,4289_3855,Bray Station,103731716,0,4289_7778022_104121,4289_41 -4289_75966,94,4289_3856,Bray Station,103841716,0,4289_7778022_104121,4289_41 -4289_75966,95,4289_3857,Bray Station,103951716,0,4289_7778022_104121,4289_41 -4289_75960,95,4289_386,Sutton Station,103952642,0,4289_7778022_103105,4289_1 -4289_75966,96,4289_3863,Bray Station,104064534,0,4289_7778022_104041,4289_41 -4289_75966,92,4289_3869,Bray Station,103621810,0,4289_7778022_104150,4289_40 -4289_75966,93,4289_3870,Bray Station,103731810,0,4289_7778022_104150,4289_40 -4289_75966,94,4289_3871,Bray Station,103841810,0,4289_7778022_104150,4289_40 -4289_75966,95,4289_3872,Bray Station,103951810,0,4289_7778022_104150,4289_40 -4289_75966,96,4289_3878,Bray Station,104064622,0,4289_7778022_104120,4289_40 -4289_75966,92,4289_3884,Bray Station,103621834,0,4289_7778022_104180,4289_41 -4289_75966,93,4289_3885,Bray Station,103731834,0,4289_7778022_104180,4289_41 -4289_75966,94,4289_3886,Bray Station,103841834,0,4289_7778022_104180,4289_41 -4289_75966,95,4289_3887,Bray Station,103951834,0,4289_7778022_104180,4289_41 -4289_75966,96,4289_3893,Bray Station,104064642,0,4289_7778022_104071,4289_41 -4289_75966,92,4289_3899,Bray Station,103621920,0,4289_7778022_104101,4289_40 -4289_75966,93,4289_3900,Bray Station,103731920,0,4289_7778022_104101,4289_40 -4289_75966,94,4289_3901,Bray Station,103841920,0,4289_7778022_104101,4289_40 -4289_75966,95,4289_3902,Bray Station,103951920,0,4289_7778022_104101,4289_40 -4289_75966,96,4289_3908,Bray Station,104064728,0,4289_7778022_104071,4289_40 -4289_75966,92,4289_3914,Bray Station,103621942,0,4289_7778022_104150,4289_41 -4289_75966,93,4289_3915,Bray Station,103731942,0,4289_7778022_104150,4289_41 -4289_75966,94,4289_3916,Bray Station,103841942,0,4289_7778022_104150,4289_41 -4289_75966,95,4289_3917,Bray Station,103951942,0,4289_7778022_104150,4289_41 -4289_75960,96,4289_392,Sutton Station,104065352,0,4289_7778022_103105,4289_2 -4289_75966,96,4289_3923,Bray Station,104064748,0,4289_7778022_104120,4289_41 -4289_75966,92,4289_3929,Bray Station,103622034,0,4289_7778022_104180,4289_40 -4289_75966,93,4289_3930,Bray Station,103732034,0,4289_7778022_104180,4289_40 -4289_75966,94,4289_3931,Bray Station,103842034,0,4289_7778022_104180,4289_40 -4289_75966,95,4289_3932,Bray Station,103952034,0,4289_7778022_104180,4289_40 -4289_75966,96,4289_3938,Bray Station,104064834,0,4289_7778022_104120,4289_40 -4289_75966,92,4289_3944,Bray Station,103622058,0,4289_7778022_104101,4289_41 -4289_75966,93,4289_3945,Bray Station,103732058,0,4289_7778022_104101,4289_41 -4289_75966,94,4289_3946,Bray Station,103842058,0,4289_7778022_104101,4289_41 -4289_75966,95,4289_3947,Bray Station,103952058,0,4289_7778022_104101,4289_41 -4289_75966,96,4289_3953,Bray Station,104064854,0,4289_7778022_104162,4289_41 -4289_75966,92,4289_3959,Bray Station,103622174,0,4289_7778022_100192,4289_40 -4289_75966,93,4289_3960,Bray Station,103732174,0,4289_7778022_100192,4289_40 -4289_75966,94,4289_3961,Bray Station,103842174,0,4289_7778022_100192,4289_40 -4289_75966,95,4289_3962,Bray Station,103952174,0,4289_7778022_100192,4289_40 -4289_75966,96,4289_3968,Bray Station,104064942,0,4289_7778022_104162,4289_40 -4289_75966,92,4289_3974,Bray Station,103622198,0,4289_7778022_104122,4289_41 -4289_75966,93,4289_3975,Bray Station,103732198,0,4289_7778022_104122,4289_41 -4289_75966,94,4289_3976,Bray Station,103842198,0,4289_7778022_104122,4289_41 -4289_75966,95,4289_3977,Bray Station,103952198,0,4289_7778022_104122,4289_41 -4289_75960,92,4289_398,Sutton Station,103622702,0,4289_7778022_103502,4289_1 -4289_75966,96,4289_3983,Bray Station,104064958,0,4289_7778022_104120,4289_41 -4289_75966,92,4289_3989,Bray Station,103622302,0,4289_7778022_104122,4289_40 -4289_75960,93,4289_399,Sutton Station,103732702,0,4289_7778022_103502,4289_1 -4289_75966,93,4289_3990,Bray Station,103732302,0,4289_7778022_104122,4289_40 -4289_75966,94,4289_3991,Bray Station,103842302,0,4289_7778022_104122,4289_40 -4289_75966,95,4289_3992,Bray Station,103952302,0,4289_7778022_104122,4289_40 -4289_75966,96,4289_3998,Bray Station,104065048,0,4289_7778022_104210,4289_40 -4289_75960,93,4289_4,Sutton Station,103731028,0,4289_7778022_103503,4289_1 -4289_75960,94,4289_400,Sutton Station,103842702,0,4289_7778022_103502,4289_1 -4289_75966,92,4289_4004,Bray Station,103622330,0,4289_7778022_104010,4289_41 -4289_75966,93,4289_4005,Bray Station,103732330,0,4289_7778022_104010,4289_41 -4289_75966,94,4289_4006,Bray Station,103842330,0,4289_7778022_104010,4289_41 -4289_75966,95,4289_4007,Bray Station,103952330,0,4289_7778022_104010,4289_41 -4289_75960,95,4289_401,Sutton Station,103952702,0,4289_7778022_103502,4289_1 -4289_75966,96,4289_4013,Bray Station,104065064,0,4289_7778022_104162,4289_41 -4289_75966,92,4289_4019,Bray Station,103622422,0,4289_7778022_104010,4289_40 -4289_75966,93,4289_4020,Bray Station,103732422,0,4289_7778022_104010,4289_40 -4289_75966,94,4289_4021,Bray Station,103842422,0,4289_7778022_104010,4289_40 -4289_75966,95,4289_4022,Bray Station,103952422,0,4289_7778022_104010,4289_40 -4289_75966,96,4289_4028,Bray Station,104065154,0,4289_7778022_104162,4289_40 -4289_75966,92,4289_4034,Bray Station,103622452,0,4289_7778022_104122,4289_41 -4289_75966,93,4289_4035,Bray Station,103732452,0,4289_7778022_104122,4289_41 -4289_75966,94,4289_4036,Bray Station,103842452,0,4289_7778022_104122,4289_41 -4289_75966,95,4289_4037,Bray Station,103952452,0,4289_7778022_104122,4289_41 -4289_75966,96,4289_4043,Bray Station,104065172,0,4289_7778022_104210,4289_41 -4289_75966,92,4289_4049,Bray Station,103622542,0,4289_7778022_104010,4289_40 -4289_75966,93,4289_4050,Bray Station,103732542,0,4289_7778022_104010,4289_40 -4289_75966,94,4289_4051,Bray Station,103842542,0,4289_7778022_104010,4289_40 -4289_75966,95,4289_4052,Bray Station,103952542,0,4289_7778022_104010,4289_40 -4289_75966,96,4289_4058,Bray Station,104065262,0,4289_7778022_104133,4289_40 -4289_75966,96,4289_4063,Bray Station,104065274,0,4289_7778022_104202,4289_41 -4289_75966,92,4289_4065,Bray Station,103622564,0,4289_7778022_104150,4289_41 -4289_75966,93,4289_4066,Bray Station,103732564,0,4289_7778022_104150,4289_41 -4289_75966,94,4289_4067,Bray Station,103842564,0,4289_7778022_104150,4289_41 -4289_75966,95,4289_4068,Bray Station,103952564,0,4289_7778022_104150,4289_41 -4289_75960,96,4289_407,Sutton Station,104065398,0,4289_7778022_103503,4289_2 -4289_75966,96,4289_4078,Bray Station,104065342,0,4289_7778022_104202,4289_40 -4289_75966,92,4289_4084,Bray Station,103622656,0,4289_7778022_104102,4289_40 -4289_75966,93,4289_4085,Bray Station,103732656,0,4289_7778022_104102,4289_40 -4289_75966,94,4289_4086,Bray Station,103842656,0,4289_7778022_104102,4289_40 -4289_75966,95,4289_4087,Bray Station,103952656,0,4289_7778022_104102,4289_40 -4289_75966,92,4289_4094,Bray Station,103622662,0,4289_7778022_104010,4289_41 -4289_75966,93,4289_4095,Bray Station,103732662,0,4289_7778022_104010,4289_41 -4289_75966,94,4289_4096,Bray Station,103842662,0,4289_7778022_104010,4289_41 -4289_75966,95,4289_4097,Bray Station,103952662,0,4289_7778022_104010,4289_41 -4289_75966,96,4289_4103,Bray Station,104065370,0,4289_7778022_104162,4289_41 -4289_75966,92,4289_4109,Bray Station,103622734,0,4289_7778022_104050,4289_40 -4289_75966,93,4289_4110,Bray Station,103732734,0,4289_7778022_104050,4289_40 -4289_75966,94,4289_4111,Bray Station,103842734,0,4289_7778022_104050,4289_40 -4289_75966,95,4289_4112,Bray Station,103952734,0,4289_7778022_104050,4289_40 -4289_75966,96,4289_4118,Bray Station,104065434,0,4289_7778022_104072,4289_40 -4289_75966,92,4289_4124,Bray Station,103622766,0,4289_7778022_104180,4289_41 -4289_75966,93,4289_4125,Bray Station,103732766,0,4289_7778022_104180,4289_41 -4289_75966,94,4289_4126,Bray Station,103842766,0,4289_7778022_104180,4289_41 -4289_75966,95,4289_4127,Bray Station,103952766,0,4289_7778022_104180,4289_41 -4289_75960,92,4289_413,Sutton Station,103622746,0,4289_7778022_103104,4289_1 -4289_75966,96,4289_4133,Bray Station,104065462,0,4289_7778022_104202,4289_41 -4289_75966,92,4289_4139,Bray Station,103622834,0,4289_7778022_104122,4289_40 -4289_75960,93,4289_414,Sutton Station,103732746,0,4289_7778022_103104,4289_1 -4289_75966,93,4289_4140,Bray Station,103732834,0,4289_7778022_104122,4289_40 -4289_75966,94,4289_4141,Bray Station,103842834,0,4289_7778022_104122,4289_40 -4289_75966,95,4289_4142,Bray Station,103952834,0,4289_7778022_104122,4289_40 -4289_75966,96,4289_4148,Bray Station,104065524,0,4289_7778022_104133,4289_40 -4289_75960,94,4289_415,Sutton Station,103842746,0,4289_7778022_103104,4289_1 -4289_75966,92,4289_4154,Bray Station,103622868,0,4289_7778022_104102,4289_41 -4289_75966,93,4289_4155,Bray Station,103732868,0,4289_7778022_104102,4289_41 -4289_75966,94,4289_4156,Bray Station,103842868,0,4289_7778022_104102,4289_41 -4289_75966,95,4289_4157,Bray Station,103952868,0,4289_7778022_104102,4289_41 -4289_75960,95,4289_416,Sutton Station,103952746,0,4289_7778022_103104,4289_1 -4289_75966,96,4289_4163,Bray Station,104065552,0,4289_7778022_104012,4289_41 -4289_75966,92,4289_4169,Bray Station,103622932,0,4289_7778022_104030,4289_40 -4289_75966,93,4289_4170,Bray Station,103732932,0,4289_7778022_104030,4289_40 -4289_75966,94,4289_4171,Bray Station,103842932,0,4289_7778022_104030,4289_40 -4289_75966,95,4289_4172,Bray Station,103952932,0,4289_7778022_104030,4289_40 -4289_75966,96,4289_4178,Bray Station,104065612,0,4289_7778022_104072,4289_40 -4289_75966,92,4289_4184,Bray Station,103622964,0,4289_7778022_104162,4289_41 -4289_75966,93,4289_4185,Bray Station,103732964,0,4289_7778022_104162,4289_41 -4289_75966,94,4289_4186,Bray Station,103842964,0,4289_7778022_104162,4289_41 -4289_75966,95,4289_4187,Bray Station,103952964,0,4289_7778022_104162,4289_41 -4289_75966,96,4289_4193,Bray Station,104065638,0,4289_7778022_104162,4289_41 -4289_75966,92,4289_4199,Bray Station,103623020,0,4289_7778022_104010,4289_42 -4289_75966,93,4289_4200,Bray Station,103733020,0,4289_7778022_104010,4289_42 -4289_75966,94,4289_4201,Bray Station,103843020,0,4289_7778022_104010,4289_42 -4289_75966,95,4289_4202,Bray Station,103953020,0,4289_7778022_104010,4289_42 -4289_75966,96,4289_4208,Bray Station,104065698,0,4289_7778022_104210,4289_42 -4289_75966,96,4289_4213,Palermo,104064081,1,4289_7778022_104071,4289_45 -4289_75966,92,4289_4215,Palermo,103621129,1,4289_7778022_104010,4289_45 -4289_75966,93,4289_4216,Palermo,103731129,1,4289_7778022_104010,4289_45 -4289_75966,94,4289_4217,Palermo,103841129,1,4289_7778022_104010,4289_45 -4289_75966,95,4289_4218,Palermo,103951129,1,4289_7778022_104010,4289_45 -4289_75960,96,4289_422,Sutton Station,104065456,0,4289_7778022_103102,4289_1 -4289_75966,96,4289_4224,Enniskerry,104064125,1,4289_7778022_104031,4289_46 -4289_75966,92,4289_4226,Enniskerry,103621197,1,4289_7778022_104010,4289_46 -4289_75966,93,4289_4227,Enniskerry,103731197,1,4289_7778022_104010,4289_46 -4289_75966,94,4289_4228,Enniskerry,103841197,1,4289_7778022_104010,4289_46 -4289_75966,95,4289_4229,Enniskerry,103951197,1,4289_7778022_104010,4289_46 -4289_75966,92,4289_4236,Palermo,103621247,1,4289_7778022_104121,4289_45 -4289_75966,93,4289_4237,Palermo,103731247,1,4289_7778022_104121,4289_45 -4289_75966,94,4289_4238,Palermo,103841247,1,4289_7778022_104121,4289_45 -4289_75966,95,4289_4239,Palermo,103951247,1,4289_7778022_104121,4289_45 -4289_75966,96,4289_4245,Palermo,104064163,1,4289_7778022_104071,4289_45 -4289_75966,92,4289_4247,Enniskerry,103621335,1,4289_7778022_104121,4289_46 -4289_75966,93,4289_4248,Enniskerry,103731335,1,4289_7778022_104121,4289_46 -4289_75966,94,4289_4249,Enniskerry,103841335,1,4289_7778022_104121,4289_46 -4289_75966,95,4289_4250,Enniskerry,103951335,1,4289_7778022_104121,4289_46 -4289_75966,96,4289_4256,Enniskerry,104064213,1,4289_7778022_104011,4289_46 -4289_75966,96,4289_4261,Palermo,104064255,1,4289_7778022_104140,4289_45 -4289_75966,92,4289_4263,Palermo,103621397,1,4289_7778022_104010,4289_45 -4289_75966,93,4289_4264,Palermo,103731397,1,4289_7778022_104010,4289_45 -4289_75966,94,4289_4265,Palermo,103841397,1,4289_7778022_104010,4289_45 -4289_75966,95,4289_4266,Palermo,103951397,1,4289_7778022_104010,4289_45 -4289_75966,96,4289_4276,Enniskerry,104064309,1,4289_7778022_104120,4289_46 -4289_75966,92,4289_4278,Enniskerry,103621467,1,4289_7778022_104101,4289_46 -4289_75966,93,4289_4279,Enniskerry,103731467,1,4289_7778022_104101,4289_46 -4289_75960,92,4289_428,Sutton Station,103622804,0,4289_7778022_103503,4289_1 -4289_75966,94,4289_4280,Enniskerry,103841467,1,4289_7778022_104101,4289_46 -4289_75966,95,4289_4281,Enniskerry,103951467,1,4289_7778022_104101,4289_46 -4289_75960,93,4289_429,Sutton Station,103732804,0,4289_7778022_103503,4289_1 -4289_75966,92,4289_4292,Palermo,103621519,1,4289_7778022_104121,4289_45 -4289_75966,93,4289_4293,Palermo,103731519,1,4289_7778022_104121,4289_45 -4289_75966,94,4289_4294,Palermo,103841519,1,4289_7778022_104121,4289_45 -4289_75966,95,4289_4295,Palermo,103951519,1,4289_7778022_104121,4289_45 -4289_75960,94,4289_430,Sutton Station,103842804,0,4289_7778022_103503,4289_1 -4289_75966,96,4289_4301,Palermo,104064369,1,4289_7778022_104071,4289_45 -4289_75966,92,4289_4307,Enniskerry,103621581,1,4289_7778022_104121,4289_46 -4289_75966,93,4289_4308,Enniskerry,103731581,1,4289_7778022_104121,4289_46 -4289_75966,94,4289_4309,Enniskerry,103841581,1,4289_7778022_104121,4289_46 -4289_75960,95,4289_431,Sutton Station,103952804,0,4289_7778022_103503,4289_1 -4289_75966,95,4289_4310,Enniskerry,103951581,1,4289_7778022_104121,4289_46 -4289_75966,96,4289_4316,Enniskerry,104064431,1,4289_7778022_104041,4289_46 -4289_75966,92,4289_4322,Palermo,103621631,1,4289_7778022_104180,4289_45 -4289_75966,93,4289_4323,Palermo,103731631,1,4289_7778022_104180,4289_45 -4289_75966,94,4289_4324,Palermo,103841631,1,4289_7778022_104180,4289_45 -4289_75966,95,4289_4325,Palermo,103951631,1,4289_7778022_104180,4289_45 -4289_75966,96,4289_4331,Palermo,104064477,1,4289_7778022_104140,4289_45 -4289_75966,92,4289_4337,Enniskerry,103621693,1,4289_7778022_104180,4289_46 -4289_75966,93,4289_4338,Enniskerry,103731693,1,4289_7778022_104180,4289_46 -4289_75966,94,4289_4339,Enniskerry,103841693,1,4289_7778022_104180,4289_46 -4289_75966,95,4289_4340,Enniskerry,103951693,1,4289_7778022_104180,4289_46 -4289_75966,96,4289_4346,Enniskerry,104064537,1,4289_7778022_104071,4289_46 -4289_75966,92,4289_4352,Palermo,103621743,1,4289_7778022_104150,4289_45 -4289_75966,93,4289_4353,Palermo,103731743,1,4289_7778022_104150,4289_45 -4289_75966,94,4289_4354,Palermo,103841743,1,4289_7778022_104150,4289_45 -4289_75966,95,4289_4355,Palermo,103951743,1,4289_7778022_104150,4289_45 -4289_75966,96,4289_4361,Palermo,104064585,1,4289_7778022_104120,4289_45 -4289_75966,92,4289_4367,Enniskerry,103621805,1,4289_7778022_104150,4289_46 -4289_75966,93,4289_4368,Enniskerry,103731805,1,4289_7778022_104150,4289_46 -4289_75966,94,4289_4369,Enniskerry,103841805,1,4289_7778022_104150,4289_46 -4289_75960,96,4289_437,Sutton Station,104065504,0,4289_7778022_103501,4289_1 -4289_75966,95,4289_4370,Enniskerry,103951805,1,4289_7778022_104150,4289_46 -4289_75966,96,4289_4376,Enniskerry,104064645,1,4289_7778022_104120,4289_46 -4289_75966,92,4289_4382,Palermo,103621859,1,4289_7778022_104101,4289_45 -4289_75966,93,4289_4383,Palermo,103731859,1,4289_7778022_104101,4289_45 -4289_75966,94,4289_4384,Palermo,103841859,1,4289_7778022_104101,4289_45 -4289_75966,95,4289_4385,Palermo,103951859,1,4289_7778022_104101,4289_45 -4289_75966,96,4289_4391,Palermo,104064693,1,4289_7778022_104071,4289_45 -4289_75966,92,4289_4397,Enniskerry,103621925,1,4289_7778022_104101,4289_46 -4289_75966,93,4289_4398,Enniskerry,103731925,1,4289_7778022_104101,4289_46 -4289_75966,94,4289_4399,Enniskerry,103841925,1,4289_7778022_104101,4289_46 -4289_75960,96,4289_44,Sutton Station,104064128,0,4289_7778022_103501,4289_1 -4289_75966,95,4289_4400,Enniskerry,103951925,1,4289_7778022_104101,4289_46 -4289_75966,96,4289_4406,Enniskerry,104064751,1,4289_7778022_104162,4289_46 -4289_75966,92,4289_4412,Palermo,103621975,1,4289_7778022_104180,4289_45 -4289_75966,93,4289_4413,Palermo,103731975,1,4289_7778022_104180,4289_45 -4289_75966,94,4289_4414,Palermo,103841975,1,4289_7778022_104180,4289_45 -4289_75966,95,4289_4415,Palermo,103951975,1,4289_7778022_104180,4289_45 -4289_75966,96,4289_4421,Palermo,104064799,1,4289_7778022_104120,4289_45 -4289_75966,92,4289_4427,Enniskerry,103622037,1,4289_7778022_104122,4289_46 -4289_75966,93,4289_4428,Enniskerry,103732037,1,4289_7778022_104122,4289_46 -4289_75966,94,4289_4429,Enniskerry,103842037,1,4289_7778022_104122,4289_46 -4289_75960,92,4289_443,Sutton Station,103622856,0,4289_7778022_103501,4289_1 -4289_75966,95,4289_4430,Enniskerry,103952037,1,4289_7778022_104122,4289_46 -4289_75966,96,4289_4436,Enniskerry,104064855,1,4289_7778022_104120,4289_46 -4289_75960,93,4289_444,Sutton Station,103732856,0,4289_7778022_103501,4289_1 -4289_75966,92,4289_4442,Palermo,103622095,1,4289_7778022_100192,4289_45 -4289_75966,93,4289_4443,Palermo,103732095,1,4289_7778022_100192,4289_45 -4289_75966,94,4289_4444,Palermo,103842095,1,4289_7778022_100192,4289_45 -4289_75966,95,4289_4445,Palermo,103952095,1,4289_7778022_100192,4289_45 -4289_75960,94,4289_445,Sutton Station,103842856,0,4289_7778022_103501,4289_1 -4289_75966,96,4289_4451,Palermo,104064905,1,4289_7778022_104162,4289_45 -4289_75966,92,4289_4457,Enniskerry,103622161,1,4289_7778022_104010,4289_46 -4289_75966,93,4289_4458,Enniskerry,103732161,1,4289_7778022_104010,4289_46 -4289_75966,94,4289_4459,Enniskerry,103842161,1,4289_7778022_104010,4289_46 -4289_75960,95,4289_446,Sutton Station,103952856,0,4289_7778022_103501,4289_1 -4289_75966,95,4289_4460,Enniskerry,103952161,1,4289_7778022_104010,4289_46 -4289_75966,96,4289_4466,Enniskerry,104064963,1,4289_7778022_104162,4289_46 -4289_75966,92,4289_4472,Palermo,103622233,1,4289_7778022_104122,4289_45 -4289_75966,93,4289_4473,Palermo,103732233,1,4289_7778022_104122,4289_45 -4289_75966,94,4289_4474,Palermo,103842233,1,4289_7778022_104122,4289_45 -4289_75966,95,4289_4475,Palermo,103952233,1,4289_7778022_104122,4289_45 -4289_75966,96,4289_4481,Palermo,104065011,1,4289_7778022_104210,4289_45 -4289_75966,92,4289_4487,Enniskerry,103622323,1,4289_7778022_104122,4289_46 -4289_75966,93,4289_4488,Enniskerry,103732323,1,4289_7778022_104122,4289_46 -4289_75966,94,4289_4489,Enniskerry,103842323,1,4289_7778022_104122,4289_46 -4289_75966,95,4289_4490,Enniskerry,103952323,1,4289_7778022_104122,4289_46 -4289_75966,96,4289_4496,Enniskerry,104065069,1,4289_7778022_104210,4289_46 -4289_75966,92,4289_4502,Palermo,103622375,1,4289_7778022_104010,4289_45 -4289_75966,93,4289_4503,Palermo,103732375,1,4289_7778022_104010,4289_45 -4289_75966,94,4289_4504,Palermo,103842375,1,4289_7778022_104010,4289_45 -4289_75966,95,4289_4505,Palermo,103952375,1,4289_7778022_104010,4289_45 -4289_75966,96,4289_4511,Palermo,104065117,1,4289_7778022_104162,4289_45 -4289_75966,92,4289_4517,Enniskerry,103622445,1,4289_7778022_104150,4289_46 -4289_75966,93,4289_4518,Enniskerry,103732445,1,4289_7778022_104150,4289_46 -4289_75966,94,4289_4519,Enniskerry,103842445,1,4289_7778022_104150,4289_46 -4289_75966,95,4289_4520,Enniskerry,103952445,1,4289_7778022_104150,4289_46 -4289_75966,96,4289_4526,Enniskerry,104065173,1,4289_7778022_104202,4289_46 -4289_75966,92,4289_4532,Palermo,103622497,1,4289_7778022_104010,4289_45 -4289_75966,93,4289_4533,Palermo,103732497,1,4289_7778022_104010,4289_45 -4289_75966,94,4289_4534,Palermo,103842497,1,4289_7778022_104010,4289_45 -4289_75966,95,4289_4535,Palermo,103952497,1,4289_7778022_104010,4289_45 -4289_75966,96,4289_4541,Palermo,104065223,1,4289_7778022_104133,4289_45 -4289_75966,92,4289_4547,Enniskerry,103622561,1,4289_7778022_104010,4289_46 -4289_75966,93,4289_4548,Enniskerry,103732561,1,4289_7778022_104010,4289_46 -4289_75966,94,4289_4549,Enniskerry,103842561,1,4289_7778022_104010,4289_46 -4289_75966,95,4289_4550,Enniskerry,103952561,1,4289_7778022_104010,4289_46 -4289_75966,96,4289_4556,Enniskerry,104065279,1,4289_7778022_104162,4289_46 -4289_75960,96,4289_456,Sutton Station,104065562,0,4289_7778022_103502,4289_1 -4289_75966,96,4289_4561,Palermo,104065319,1,4289_7778022_104202,4289_45 -4289_75966,92,4289_4563,Palermo,103622613,1,4289_7778022_104102,4289_45 -4289_75966,93,4289_4564,Palermo,103732613,1,4289_7778022_104102,4289_45 -4289_75966,94,4289_4565,Palermo,103842613,1,4289_7778022_104102,4289_45 -4289_75966,95,4289_4566,Palermo,103952613,1,4289_7778022_104102,4289_45 -4289_75966,92,4289_4577,Enniskerry,103622657,1,4289_7778022_104180,4289_46 -4289_75966,93,4289_4578,Enniskerry,103732657,1,4289_7778022_104180,4289_46 -4289_75966,94,4289_4579,Enniskerry,103842657,1,4289_7778022_104180,4289_46 -4289_75960,92,4289_458,Sutton Station,103622910,0,4289_7778022_103107,4289_1 -4289_75966,95,4289_4580,Enniskerry,103952657,1,4289_7778022_104180,4289_46 -4289_75966,96,4289_4586,Enniskerry,104065367,1,4289_7778022_104202,4289_46 -4289_75960,93,4289_459,Sutton Station,103732910,0,4289_7778022_103107,4289_1 -4289_75966,92,4289_4592,Palermo,103622711,1,4289_7778022_104050,4289_45 -4289_75966,93,4289_4593,Palermo,103732711,1,4289_7778022_104050,4289_45 -4289_75966,94,4289_4594,Palermo,103842711,1,4289_7778022_104050,4289_45 -4289_75966,95,4289_4595,Palermo,103952711,1,4289_7778022_104050,4289_45 -4289_75960,92,4289_46,Sutton Station,103621228,0,4289_7778022_103502,4289_1 -4289_75960,94,4289_460,Sutton Station,103842910,0,4289_7778022_103107,4289_1 -4289_75966,96,4289_4601,Palermo,104065413,1,4289_7778022_104072,4289_45 -4289_75966,92,4289_4607,Enniskerry,103622757,1,4289_7778022_104102,4289_46 -4289_75966,93,4289_4608,Enniskerry,103732757,1,4289_7778022_104102,4289_46 -4289_75966,94,4289_4609,Enniskerry,103842757,1,4289_7778022_104102,4289_46 -4289_75960,95,4289_461,Sutton Station,103952910,0,4289_7778022_103107,4289_1 -4289_75966,95,4289_4610,Enniskerry,103952757,1,4289_7778022_104102,4289_46 -4289_75966,96,4289_4616,Enniskerry,104065457,1,4289_7778022_104012,4289_46 -4289_75966,92,4289_4622,Palermo,103622811,1,4289_7778022_104122,4289_45 -4289_75966,93,4289_4623,Palermo,103732811,1,4289_7778022_104122,4289_45 -4289_75966,94,4289_4624,Palermo,103842811,1,4289_7778022_104122,4289_45 -4289_75966,95,4289_4625,Palermo,103952811,1,4289_7778022_104122,4289_45 -4289_75966,96,4289_4631,Palermo,104065505,1,4289_7778022_104133,4289_45 -4289_75966,92,4289_4637,Enniskerry,103622859,1,4289_7778022_104162,4289_46 -4289_75966,93,4289_4638,Enniskerry,103732859,1,4289_7778022_104162,4289_46 -4289_75966,94,4289_4639,Enniskerry,103842859,1,4289_7778022_104162,4289_46 -4289_75966,95,4289_4640,Enniskerry,103952859,1,4289_7778022_104162,4289_46 -4289_75966,96,4289_4646,Enniskerry,104065549,1,4289_7778022_104162,4289_46 -4289_75966,92,4289_4652,Palermo,103622911,1,4289_7778022_104030,4289_45 -4289_75966,93,4289_4653,Palermo,103732911,1,4289_7778022_104030,4289_45 -4289_75966,94,4289_4654,Palermo,103842911,1,4289_7778022_104030,4289_45 -4289_75966,95,4289_4655,Palermo,103952911,1,4289_7778022_104030,4289_45 -4289_75966,96,4289_4661,Palermo,104065595,1,4289_7778022_104072,4289_45 -4289_75966,92,4289_4667,Enniskerry,103622959,1,4289_7778022_104010,4289_46 -4289_75966,93,4289_4668,Enniskerry,103732959,1,4289_7778022_104010,4289_46 -4289_75966,94,4289_4669,Enniskerry,103842959,1,4289_7778022_104010,4289_46 -4289_75966,95,4289_4670,Enniskerry,103952959,1,4289_7778022_104010,4289_46 -4289_75966,96,4289_4676,Enniskerry,104065639,1,4289_7778022_104210,4289_46 -4289_75966,92,4289_4682,Palermo,103623009,1,4289_7778022_104122,4289_45 -4289_75966,93,4289_4683,Palermo,103733009,1,4289_7778022_104122,4289_45 -4289_75966,94,4289_4684,Palermo,103843009,1,4289_7778022_104122,4289_45 -4289_75966,95,4289_4685,Palermo,103953009,1,4289_7778022_104122,4289_45 -4289_75966,96,4289_4691,Palermo,104065683,1,4289_7778022_104133,4289_45 -4289_75966,92,4289_4697,Enniskerry,103623051,1,4289_7778022_104102,4289_47 -4289_75966,93,4289_4698,Enniskerry,103733051,1,4289_7778022_104102,4289_47 -4289_75966,94,4289_4699,Enniskerry,103843051,1,4289_7778022_104102,4289_47 -4289_75960,93,4289_47,Sutton Station,103731228,0,4289_7778022_103502,4289_1 -4289_75966,95,4289_4700,Enniskerry,103953051,1,4289_7778022_104102,4289_47 -4289_75966,96,4289_4706,Enniskerry,104065723,1,4289_7778022_104202,4289_47 -4289_75960,96,4289_471,Sutton Station,104065600,0,4289_7778022_103503,4289_1 -4289_75991,92,4289_4712,Southern Cross,103621332,0,4289_7778022_104150,4289_50 -4289_75991,93,4289_4713,Southern Cross,103731332,0,4289_7778022_104150,4289_50 -4289_75991,94,4289_4714,Southern Cross,103841332,0,4289_7778022_104150,4289_50 -4289_75991,95,4289_4715,Southern Cross,103951332,0,4289_7778022_104150,4289_50 -4289_75967,92,4289_4717,Mulhuddart,103621118,0,4289_7778022_104080,4289_52 -4289_75967,93,4289_4718,Mulhuddart,103731118,0,4289_7778022_104080,4289_52 -4289_75967,94,4289_4719,Mulhuddart,103841118,0,4289_7778022_104080,4289_52 -4289_75967,95,4289_4720,Mulhuddart,103951118,0,4289_7778022_104080,4289_52 -4289_75967,96,4289_4726,Mulhuddart,104064088,0,4289_7778022_104080,4289_52 -4289_75967,96,4289_4727,Mulhuddart,104064132,0,4289_7778022_104100,4289_51 -4289_75967,92,4289_4729,Mulhuddart,103621268,0,4289_7778022_104060,4289_51 -4289_75960,92,4289_473,Sutton Station,103622962,0,4289_7778022_103502,4289_1 -4289_75967,93,4289_4730,Mulhuddart,103731268,0,4289_7778022_104060,4289_51 -4289_75967,94,4289_4731,Mulhuddart,103841268,0,4289_7778022_104060,4289_51 -4289_75967,95,4289_4732,Mulhuddart,103951268,0,4289_7778022_104060,4289_51 -4289_75960,93,4289_474,Sutton Station,103732962,0,4289_7778022_103502,4289_1 -4289_75967,96,4289_4742,Mulhuddart,104064266,0,4289_7778022_104150,4289_51 -4289_75967,92,4289_4744,Mulhuddart,103621554,0,4289_7778022_104040,4289_51 -4289_75967,93,4289_4745,Mulhuddart,103731554,0,4289_7778022_104040,4289_51 -4289_75967,94,4289_4746,Mulhuddart,103841554,0,4289_7778022_104040,4289_51 -4289_75967,95,4289_4747,Mulhuddart,103951554,0,4289_7778022_104040,4289_51 -4289_75960,94,4289_475,Sutton Station,103842962,0,4289_7778022_103502,4289_1 -4289_75967,96,4289_4753,Mulhuddart,104064372,0,4289_7778022_104110,4289_53 -4289_75967,92,4289_4759,Mulhuddart,103621674,0,4289_7778022_104140,4289_51 -4289_75960,95,4289_476,Sutton Station,103952962,0,4289_7778022_103502,4289_1 -4289_75967,93,4289_4760,Mulhuddart,103731674,0,4289_7778022_104140,4289_51 -4289_75967,94,4289_4761,Mulhuddart,103841674,0,4289_7778022_104140,4289_51 -4289_75967,95,4289_4762,Mulhuddart,103951674,0,4289_7778022_104140,4289_51 -4289_75967,96,4289_4768,Mulhuddart,104064486,0,4289_7778022_104080,4289_53 -4289_75967,92,4289_4774,Mulhuddart,103621784,0,4289_7778022_104080,4289_51 -4289_75967,93,4289_4775,Mulhuddart,103731784,0,4289_7778022_104080,4289_51 -4289_75967,94,4289_4776,Mulhuddart,103841784,0,4289_7778022_104080,4289_51 -4289_75967,95,4289_4777,Mulhuddart,103951784,0,4289_7778022_104080,4289_51 -4289_75967,96,4289_4783,Mulhuddart,104064592,0,4289_7778022_104100,4289_53 -4289_75967,92,4289_4789,Mulhuddart,103621898,0,4289_7778022_104170,4289_51 -4289_75967,93,4289_4790,Mulhuddart,103731898,0,4289_7778022_104170,4289_51 -4289_75967,94,4289_4791,Mulhuddart,103841898,0,4289_7778022_104170,4289_51 -4289_75967,95,4289_4792,Mulhuddart,103951898,0,4289_7778022_104170,4289_51 -4289_75967,96,4289_4798,Mulhuddart,104064704,0,4289_7778022_104090,4289_53 -4289_75960,94,4289_48,Sutton Station,103841228,0,4289_7778022_103502,4289_1 -4289_75967,92,4289_4804,Mulhuddart,103622012,0,4289_7778022_104190,4289_51 -4289_75967,93,4289_4805,Mulhuddart,103732012,0,4289_7778022_104190,4289_51 -4289_75967,94,4289_4806,Mulhuddart,103842012,0,4289_7778022_104190,4289_51 -4289_75967,95,4289_4807,Mulhuddart,103952012,0,4289_7778022_104190,4289_51 -4289_75967,96,4289_4813,Mulhuddart,104064806,0,4289_7778022_104150,4289_53 -4289_75967,96,4289_4818,Mulhuddart,104064912,0,4289_7778022_104171,4289_51 -4289_75967,92,4289_4824,Mulhuddart,103622158,0,4289_7778022_104060,4289_51 -4289_75967,93,4289_4825,Mulhuddart,103732158,0,4289_7778022_104060,4289_51 -4289_75967,94,4289_4826,Mulhuddart,103842158,0,4289_7778022_104060,4289_51 -4289_75967,95,4289_4827,Mulhuddart,103952158,0,4289_7778022_104060,4289_51 -4289_75967,96,4289_4833,Mulhuddart,104065018,0,4289_7778022_104180,4289_51 -4289_75967,92,4289_4839,Mulhuddart,103622290,0,4289_7778022_104110,4289_51 -4289_75967,93,4289_4840,Mulhuddart,103732290,0,4289_7778022_104110,4289_51 -4289_75967,94,4289_4841,Mulhuddart,103842290,0,4289_7778022_104110,4289_51 -4289_75967,95,4289_4842,Mulhuddart,103952290,0,4289_7778022_104110,4289_51 -4289_75967,96,4289_4848,Mulhuddart,104065124,0,4289_7778022_104110,4289_51 -4289_75967,92,4289_4854,Mulhuddart,103622420,0,4289_7778022_104040,4289_51 -4289_75967,93,4289_4855,Mulhuddart,103732420,0,4289_7778022_104040,4289_51 -4289_75967,94,4289_4856,Mulhuddart,103842420,0,4289_7778022_104040,4289_51 -4289_75967,95,4289_4857,Mulhuddart,103952420,0,4289_7778022_104040,4289_51 -4289_75960,96,4289_486,Sutton Station,104065648,0,4289_7778022_103101,4289_1 -4289_75967,96,4289_4863,Mulhuddart,104065236,0,4289_7778022_104080,4289_51 -4289_75967,92,4289_4869,Mulhuddart,103622540,0,4289_7778022_104140,4289_51 -4289_75967,93,4289_4870,Mulhuddart,103732540,0,4289_7778022_104140,4289_51 -4289_75967,94,4289_4871,Mulhuddart,103842540,0,4289_7778022_104140,4289_51 -4289_75967,95,4289_4872,Mulhuddart,103952540,0,4289_7778022_104140,4289_51 -4289_75967,92,4289_4879,Mulhuddart,103622630,0,4289_7778022_104080,4289_51 -4289_75960,92,4289_488,Sutton Station,103623010,0,4289_7778022_103503,4289_1 -4289_75967,93,4289_4880,Mulhuddart,103732630,0,4289_7778022_104080,4289_51 -4289_75967,94,4289_4881,Mulhuddart,103842630,0,4289_7778022_104080,4289_51 -4289_75967,95,4289_4882,Mulhuddart,103952630,0,4289_7778022_104080,4289_51 -4289_75967,96,4289_4888,Mulhuddart,104065332,0,4289_7778022_104100,4289_53 -4289_75960,93,4289_489,Sutton Station,103733010,0,4289_7778022_103503,4289_1 -4289_75967,92,4289_4894,Mulhuddart,103622722,0,4289_7778022_104170,4289_51 -4289_75967,93,4289_4895,Mulhuddart,103732722,0,4289_7778022_104170,4289_51 -4289_75967,94,4289_4896,Mulhuddart,103842722,0,4289_7778022_104170,4289_51 -4289_75967,95,4289_4897,Mulhuddart,103952722,0,4289_7778022_104170,4289_51 -4289_75960,95,4289_49,Sutton Station,103951228,0,4289_7778022_103502,4289_1 -4289_75960,94,4289_490,Sutton Station,103843010,0,4289_7778022_103503,4289_1 -4289_75967,96,4289_4903,Mulhuddart,104065424,0,4289_7778022_104090,4289_53 -4289_75967,92,4289_4909,Mulhuddart,103622824,0,4289_7778022_104190,4289_51 -4289_75960,95,4289_491,Sutton Station,103953010,0,4289_7778022_103503,4289_1 -4289_75967,93,4289_4910,Mulhuddart,103732824,0,4289_7778022_104190,4289_51 -4289_75967,94,4289_4911,Mulhuddart,103842824,0,4289_7778022_104190,4289_51 -4289_75967,95,4289_4912,Mulhuddart,103952824,0,4289_7778022_104190,4289_51 -4289_75967,96,4289_4918,Mulhuddart,104065516,0,4289_7778022_104150,4289_53 -4289_75967,92,4289_4924,Mulhuddart,103622922,0,4289_7778022_104060,4289_51 -4289_75967,93,4289_4925,Mulhuddart,103732922,0,4289_7778022_104060,4289_51 -4289_75967,94,4289_4926,Mulhuddart,103842922,0,4289_7778022_104060,4289_51 -4289_75967,95,4289_4927,Mulhuddart,103952922,0,4289_7778022_104060,4289_51 -4289_75967,96,4289_4933,Mulhuddart,104065604,0,4289_7778022_104172,4289_53 -4289_75967,92,4289_4939,DCU Helix,103621065,1,4289_7778022_104040,4289_55 -4289_75967,93,4289_4940,DCU Helix,103731065,1,4289_7778022_104040,4289_55 -4289_75967,94,4289_4941,DCU Helix,103841065,1,4289_7778022_104040,4289_55 -4289_75967,95,4289_4942,DCU Helix,103951065,1,4289_7778022_104040,4289_55 -4289_75967,96,4289_4948,DCU Helix,104064093,1,4289_7778022_104110,4289_55 -4289_75967,92,4289_4950,DCU Helix,103621155,1,4289_7778022_104140,4289_55 -4289_75967,93,4289_4951,DCU Helix,103731155,1,4289_7778022_104140,4289_55 -4289_75967,94,4289_4952,DCU Helix,103841155,1,4289_7778022_104140,4289_55 -4289_75967,95,4289_4953,DCU Helix,103951155,1,4289_7778022_104140,4289_55 -4289_75967,96,4289_4959,DCU Helix,104064177,1,4289_7778022_104080,4289_55 -4289_75967,92,4289_4961,DCU Helix,103621315,1,4289_7778022_104080,4289_55 -4289_75967,93,4289_4962,DCU Helix,103731315,1,4289_7778022_104080,4289_55 -4289_75967,94,4289_4963,DCU Helix,103841315,1,4289_7778022_104080,4289_55 -4289_75967,95,4289_4964,DCU Helix,103951315,1,4289_7778022_104080,4289_55 -4289_75967,96,4289_4970,DCU Helix,104064239,1,4289_7778022_104100,4289_55 -4289_75967,92,4289_4976,DCU Helix,103621461,1,4289_7778022_104170,4289_55 -4289_75967,93,4289_4977,DCU Helix,103731461,1,4289_7778022_104170,4289_55 -4289_75967,94,4289_4978,DCU Helix,103841461,1,4289_7778022_104170,4289_55 -4289_75967,95,4289_4979,DCU Helix,103951461,1,4289_7778022_104170,4289_55 -4289_75967,96,4289_4989,DCU Helix,104064339,1,4289_7778022_104090,4289_55 -4289_75967,92,4289_4991,DCU Helix,103621573,1,4289_7778022_104190,4289_55 -4289_75967,93,4289_4992,DCU Helix,103731573,1,4289_7778022_104190,4289_55 -4289_75967,94,4289_4993,DCU Helix,103841573,1,4289_7778022_104190,4289_55 -4289_75967,95,4289_4994,DCU Helix,103951573,1,4289_7778022_104190,4289_55 -4289_75960,94,4289_5,Sutton Station,103841028,0,4289_7778022_103503,4289_1 -4289_75967,96,4289_5000,DCU Helix,104064423,1,4289_7778022_104150,4289_55 -4289_75967,92,4289_5006,DCU Helix,103621685,1,4289_7778022_104060,4289_55 -4289_75967,93,4289_5007,DCU Helix,103731685,1,4289_7778022_104060,4289_55 -4289_75967,94,4289_5008,DCU Helix,103841685,1,4289_7778022_104060,4289_55 -4289_75967,95,4289_5009,DCU Helix,103951685,1,4289_7778022_104060,4289_55 -4289_75960,96,4289_501,Sutton Station,104065688,0,4289_7778022_103501,4289_1 -4289_75967,96,4289_5015,DCU Helix,104064529,1,4289_7778022_104171,4289_55 -4289_75967,92,4289_5021,DCU Helix,103621783,1,4289_7778022_104110,4289_55 -4289_75967,93,4289_5022,DCU Helix,103731783,1,4289_7778022_104110,4289_55 -4289_75967,94,4289_5023,DCU Helix,103841783,1,4289_7778022_104110,4289_55 -4289_75967,95,4289_5024,DCU Helix,103951783,1,4289_7778022_104110,4289_55 -4289_75960,92,4289_503,Sutton Station,103623050,0,4289_7778022_103501,4289_1 -4289_75967,96,4289_5030,DCU Helix,104064637,1,4289_7778022_104180,4289_55 -4289_75967,92,4289_5036,DCU Helix,103621905,1,4289_7778022_104040,4289_55 -4289_75967,93,4289_5037,DCU Helix,103731905,1,4289_7778022_104040,4289_55 -4289_75967,94,4289_5038,DCU Helix,103841905,1,4289_7778022_104040,4289_55 -4289_75967,95,4289_5039,DCU Helix,103951905,1,4289_7778022_104040,4289_55 -4289_75960,93,4289_504,Sutton Station,103733050,0,4289_7778022_103501,4289_1 -4289_75967,96,4289_5045,DCU Helix,104064743,1,4289_7778022_104110,4289_55 -4289_75960,94,4289_505,Sutton Station,103843050,0,4289_7778022_103501,4289_1 -4289_75967,92,4289_5051,DCU Helix,103622015,1,4289_7778022_104140,4289_55 -4289_75967,93,4289_5052,DCU Helix,103732015,1,4289_7778022_104140,4289_55 -4289_75967,94,4289_5053,DCU Helix,103842015,1,4289_7778022_104140,4289_55 -4289_75967,95,4289_5054,DCU Helix,103952015,1,4289_7778022_104140,4289_55 -4289_75960,95,4289_506,Sutton Station,103953050,0,4289_7778022_103501,4289_1 -4289_75967,96,4289_5060,DCU Helix,104064865,1,4289_7778022_104080,4289_55 -4289_75967,96,4289_5065,DCU Helix,104064973,1,4289_7778022_104100,4289_55 -4289_75967,92,4289_5071,DCU Helix,103622303,1,4289_7778022_104170,4289_55 -4289_75967,93,4289_5072,DCU Helix,103732303,1,4289_7778022_104170,4289_55 -4289_75967,94,4289_5073,DCU Helix,103842303,1,4289_7778022_104170,4289_55 -4289_75967,95,4289_5074,DCU Helix,103952303,1,4289_7778022_104170,4289_55 -4289_75967,96,4289_5080,DCU Helix,104065079,1,4289_7778022_104090,4289_55 -4289_75967,92,4289_5086,DCU Helix,103622439,1,4289_7778022_104190,4289_55 -4289_75967,93,4289_5087,DCU Helix,103732439,1,4289_7778022_104190,4289_55 -4289_75967,94,4289_5088,DCU Helix,103842439,1,4289_7778022_104190,4289_55 -4289_75967,95,4289_5089,DCU Helix,103952439,1,4289_7778022_104190,4289_55 -4289_75967,96,4289_5095,DCU Helix,104065205,1,4289_7778022_104150,4289_55 -4289_75967,92,4289_5101,DCU Helix,103622589,1,4289_7778022_104060,4289_55 -4289_75967,93,4289_5102,DCU Helix,103732589,1,4289_7778022_104060,4289_55 -4289_75967,94,4289_5103,DCU Helix,103842589,1,4289_7778022_104060,4289_55 -4289_75967,95,4289_5104,DCU Helix,103952589,1,4289_7778022_104060,4289_55 -4289_75967,96,4289_5114,DCU Helix,104065329,1,4289_7778022_104172,4289_55 -4289_75967,92,4289_5116,DCU Helix,103622709,1,4289_7778022_104140,4289_55 -4289_75967,93,4289_5117,DCU Helix,103732709,1,4289_7778022_104140,4289_55 -4289_75967,94,4289_5118,DCU Helix,103842709,1,4289_7778022_104140,4289_55 -4289_75967,95,4289_5119,DCU Helix,103952709,1,4289_7778022_104140,4289_55 -4289_75967,96,4289_5125,DCU Helix,104065415,1,4289_7778022_104080,4289_55 -4289_75967,92,4289_5131,Ballymun,103622839,1,4289_7778022_104080,4289_56 -4289_75967,93,4289_5132,Ballymun,103732839,1,4289_7778022_104080,4289_56 -4289_75967,94,4289_5133,Ballymun,103842839,1,4289_7778022_104080,4289_56 -4289_75967,95,4289_5134,Ballymun,103952839,1,4289_7778022_104080,4289_56 -4289_75967,96,4289_5140,Ballymun,104065535,1,4289_7778022_104090,4289_57 -4289_75967,92,4289_5146,Ballymun,103622945,1,4289_7778022_104190,4289_56 -4289_75967,93,4289_5147,Ballymun,103732945,1,4289_7778022_104190,4289_56 -4289_75967,94,4289_5148,Ballymun,103842945,1,4289_7778022_104190,4289_56 -4289_75967,95,4289_5149,Ballymun,103952945,1,4289_7778022_104190,4289_56 -4289_75967,96,4289_5155,Ballymun,104065625,1,4289_7778022_104150,4289_57 -4289_75960,96,4289_516,Sutton Station,104065720,0,4289_7778022_103502,4289_1 -4289_75992,92,4289_5161,Mulhuddart,103621442,0,4289_7778022_104110,4289_60 -4289_75992,93,4289_5162,Mulhuddart,103731442,0,4289_7778022_104110,4289_60 -4289_75992,94,4289_5163,Mulhuddart,103841442,0,4289_7778022_104110,4289_60 -4289_75992,95,4289_5164,Mulhuddart,103951442,0,4289_7778022_104110,4289_60 -4289_75960,2,4289_517,Sutton Station,103613076,0,4289_7778022_103107,4289_1 -4289_75992,92,4289_5171,DCU Helix,103622143,1,4289_7778022_104080,4289_61 -4289_75992,93,4289_5172,DCU Helix,103732143,1,4289_7778022_104080,4289_61 -4289_75992,94,4289_5173,DCU Helix,103842143,1,4289_7778022_104080,4289_61 -4289_75992,95,4289_5174,DCU Helix,103952143,1,4289_7778022_104080,4289_61 -4289_75960,92,4289_518,Sutton Station,103623076,0,4289_7778022_103107,4289_1 -4289_75993,92,4289_5181,Finglas Garda Stn,103622140,0,4289_7778022_109106,4289_62 -4289_75993,93,4289_5182,Finglas Garda Stn,103732142,0,4289_7778022_109304,4289_62 -4289_75993,94,4289_5183,Finglas Garda Stn,103842144,0,4289_7778022_109407,4289_62 -4289_75993,95,4289_5184,Finglas Garda Stn,103952146,0,4289_7778022_109507,4289_62 -4289_75993,92,4289_5186,Whitehall,103621281,1,4289_7778022_109106,4289_63 -4289_75993,93,4289_5187,Whitehall,103731283,1,4289_7778022_109306,4289_63 -4289_75993,94,4289_5188,Whitehall,103841285,1,4289_7778022_109406,4289_63 -4289_75993,95,4289_5189,Whitehall,103951287,1,4289_7778022_109506,4289_63 -4289_75960,93,4289_519,Sutton Station,103733076,0,4289_7778022_103107,4289_1 -4289_75968,92,4289_5191,Dublin Tech Campus,103621148,0,4289_7778022_104130,4289_64 -4289_75968,93,4289_5192,Dublin Tech Campus,103731148,0,4289_7778022_104130,4289_64 -4289_75968,94,4289_5193,Dublin Tech Campus,103841148,0,4289_7778022_104130,4289_64 -4289_75968,95,4289_5194,Dublin Tech Campus,103951148,0,4289_7778022_104130,4289_64 -4289_75960,94,4289_520,Sutton Station,103843076,0,4289_7778022_103107,4289_1 -4289_75968,92,4289_5201,Dublin Tech Campus,103621330,0,4289_7778022_104130,4289_64 -4289_75968,93,4289_5202,Dublin Tech Campus,103731330,0,4289_7778022_104130,4289_64 -4289_75968,94,4289_5203,Dublin Tech Campus,103841330,0,4289_7778022_104130,4289_64 -4289_75968,95,4289_5204,Dublin Tech Campus,103951330,0,4289_7778022_104130,4289_64 -4289_75960,95,4289_521,Sutton Station,103953076,0,4289_7778022_103107,4289_1 -4289_75968,92,4289_5211,Dublin Tech Campus,103621456,0,4289_7778022_100191,4289_64 -4289_75968,93,4289_5212,Dublin Tech Campus,103731456,0,4289_7778022_100191,4289_64 -4289_75968,94,4289_5213,Dublin Tech Campus,103841456,0,4289_7778022_100191,4289_64 -4289_75968,95,4289_5214,Dublin Tech Campus,103951456,0,4289_7778022_100191,4289_64 -4289_75968,92,4289_5221,Blanchardstown,103622289,1,4289_7778022_104092,4289_65 -4289_75968,93,4289_5222,Blanchardstown,103732289,1,4289_7778022_104092,4289_65 -4289_75968,94,4289_5223,Blanchardstown,103842289,1,4289_7778022_104092,4289_65 -4289_75968,95,4289_5224,Blanchardstown,103952289,1,4289_7778022_104092,4289_65 -4289_75968,92,4289_5231,Blanchardstown,103622411,1,4289_7778022_104022,4289_65 -4289_75968,93,4289_5232,Blanchardstown,103732411,1,4289_7778022_104022,4289_65 -4289_75968,94,4289_5233,Blanchardstown,103842411,1,4289_7778022_104022,4289_65 -4289_75968,95,4289_5234,Blanchardstown,103952411,1,4289_7778022_104022,4289_65 -4289_75968,92,4289_5241,Blanchardstown,103622529,1,4289_7778022_100510,4289_65 -4289_75968,93,4289_5242,Blanchardstown,103732529,1,4289_7778022_100510,4289_65 -4289_75968,94,4289_5243,Blanchardstown,103842529,1,4289_7778022_100510,4289_65 -4289_75968,95,4289_5244,Blanchardstown,103952529,1,4289_7778022_100510,4289_65 -4289_75994,92,4289_5251,Dublin Tech Campus,103622234,0,4289_7778022_104092,4289_66 -4289_75994,93,4289_5252,Dublin Tech Campus,103732234,0,4289_7778022_104092,4289_66 -4289_75994,94,4289_5253,Dublin Tech Campus,103842234,0,4289_7778022_104092,4289_66 -4289_75994,95,4289_5254,Dublin Tech Campus,103952234,0,4289_7778022_104092,4289_66 -4289_75994,92,4289_5261,Dublin Tech Campus,103622360,0,4289_7778022_104022,4289_66 -4289_75994,93,4289_5262,Dublin Tech Campus,103732360,0,4289_7778022_104022,4289_66 -4289_75994,94,4289_5263,Dublin Tech Campus,103842360,0,4289_7778022_104022,4289_66 -4289_75994,95,4289_5264,Dublin Tech Campus,103952360,0,4289_7778022_104022,4289_66 -4289_75994,92,4289_5271,Dublin Tech Campus,103622492,0,4289_7778022_100510,4289_66 -4289_75994,93,4289_5272,Dublin Tech Campus,103732492,0,4289_7778022_100510,4289_66 -4289_75994,94,4289_5273,Dublin Tech Campus,103842492,0,4289_7778022_100510,4289_66 -4289_75994,95,4289_5274,Dublin Tech Campus,103952492,0,4289_7778022_100510,4289_66 -4289_75994,92,4289_5281,Blanchardstown,103621211,1,4289_7778022_104130,4289_67 -4289_75994,93,4289_5282,Blanchardstown,103731211,1,4289_7778022_104130,4289_67 -4289_75994,94,4289_5283,Blanchardstown,103841211,1,4289_7778022_104130,4289_67 -4289_75994,95,4289_5284,Blanchardstown,103951211,1,4289_7778022_104130,4289_67 -4289_75994,92,4289_5291,Blanchardstown,103621371,1,4289_7778022_104130,4289_67 -4289_75994,93,4289_5292,Blanchardstown,103731371,1,4289_7778022_104130,4289_67 -4289_75994,94,4289_5293,Blanchardstown,103841371,1,4289_7778022_104130,4289_67 -4289_75994,95,4289_5294,Blanchardstown,103951371,1,4289_7778022_104130,4289_67 -4289_75994,92,4289_5301,Blanchardstown,103621485,1,4289_7778022_100191,4289_67 -4289_75994,93,4289_5302,Blanchardstown,103731485,1,4289_7778022_100191,4289_67 -4289_75994,94,4289_5303,Blanchardstown,103841485,1,4289_7778022_100191,4289_67 -4289_75994,95,4289_5304,Blanchardstown,103951485,1,4289_7778022_100191,4289_67 -4289_75960,96,4289_531,Sutton Station,104065748,0,4289_7778022_103503,4289_1 -4289_75995,93,4289_5310,Tyrrelstown,103731922,0,4289_7778022_109308,4289_68 -4289_75995,92,4289_5312,Tyrrelstown,103622276,0,4289_7778022_109108,4289_68 -4289_75995,94,4289_5313,Tyrrelstown,103842278,0,4289_7778022_109408,4289_68 -4289_75995,95,4289_5314,Tyrrelstown,103952280,0,4289_7778022_109508,4289_68 -4289_75995,92,4289_5316,Scoil Oilibheir,103621273,1,4289_7778022_109107,4289_69 -4289_75995,93,4289_5317,Scoil Oilibheir,103731275,1,4289_7778022_109307,4289_69 -4289_75995,94,4289_5318,Scoil Oilibheir,103841277,1,4289_7778022_109407,4289_69 -4289_75995,95,4289_5319,Scoil Oilibheir,103951279,1,4289_7778022_109507,4289_69 -4289_75969,92,4289_5321,Mulhuddart,103621128,0,4289_7778022_104091,4289_70 -4289_75969,93,4289_5322,Mulhuddart,103731128,0,4289_7778022_104091,4289_70 -4289_75969,94,4289_5323,Mulhuddart,103841128,0,4289_7778022_104091,4289_70 -4289_75969,95,4289_5324,Mulhuddart,103951128,0,4289_7778022_104091,4289_70 -4289_75960,92,4289_533,Dublin Airport,103621041,1,4289_7778022_103501,4289_3 -4289_75969,96,4289_5330,Mulhuddart,104064090,0,4289_7778022_104090,4289_70 -4289_75969,92,4289_5332,Mulhuddart,103621258,0,4289_7778022_104091,4289_70 -4289_75969,93,4289_5333,Mulhuddart,103731258,0,4289_7778022_104091,4289_70 -4289_75969,94,4289_5334,Mulhuddart,103841258,0,4289_7778022_104091,4289_70 -4289_75969,95,4289_5335,Mulhuddart,103951258,0,4289_7778022_104091,4289_70 -4289_75960,93,4289_534,Dublin Airport,103731041,1,4289_7778022_103501,4289_3 -4289_75969,96,4289_5341,Mulhuddart,104064154,0,4289_7778022_104090,4289_70 -4289_75969,92,4289_5343,Mulhuddart,103621414,0,4289_7778022_104170,4289_70 -4289_75969,93,4289_5344,Mulhuddart,103731414,0,4289_7778022_104170,4289_70 -4289_75969,94,4289_5345,Mulhuddart,103841414,0,4289_7778022_104170,4289_70 -4289_75969,95,4289_5346,Mulhuddart,103951414,0,4289_7778022_104170,4289_70 -4289_75960,94,4289_535,Dublin Airport,103841041,1,4289_7778022_103501,4289_3 -4289_75969,96,4289_5352,Mulhuddart,104064244,0,4289_7778022_104090,4289_70 -4289_75969,92,4289_5354,Mulhuddart,103621524,0,4289_7778022_104190,4289_70 -4289_75969,93,4289_5355,Mulhuddart,103731524,0,4289_7778022_104190,4289_70 -4289_75969,94,4289_5356,Mulhuddart,103841524,0,4289_7778022_104190,4289_70 -4289_75969,95,4289_5357,Mulhuddart,103951524,0,4289_7778022_104190,4289_70 -4289_75960,95,4289_536,Dublin Airport,103951041,1,4289_7778022_103501,4289_3 -4289_75969,96,4289_5363,Mulhuddart,104064346,0,4289_7778022_104171,4289_70 -4289_75969,92,4289_5369,Mulhuddart,103621636,0,4289_7778022_104060,4289_70 -4289_75969,93,4289_5370,Mulhuddart,103731636,0,4289_7778022_104060,4289_70 -4289_75969,94,4289_5371,Mulhuddart,103841636,0,4289_7778022_104060,4289_70 -4289_75969,95,4289_5372,Mulhuddart,103951636,0,4289_7778022_104060,4289_70 -4289_75969,96,4289_5378,Mulhuddart,104064460,0,4289_7778022_104171,4289_70 -4289_75969,92,4289_5384,Mulhuddart,103621748,0,4289_7778022_104110,4289_70 -4289_75969,93,4289_5385,Mulhuddart,103731748,0,4289_7778022_104110,4289_70 -4289_75969,94,4289_5386,Mulhuddart,103841748,0,4289_7778022_104110,4289_70 -4289_75969,95,4289_5387,Mulhuddart,103951748,0,4289_7778022_104110,4289_70 -4289_75969,96,4289_5393,Mulhuddart,104064566,0,4289_7778022_104180,4289_70 -4289_75969,92,4289_5399,Mulhuddart,103621860,0,4289_7778022_104040,4289_70 -4289_75969,93,4289_5400,Mulhuddart,103731860,0,4289_7778022_104040,4289_70 -4289_75969,94,4289_5401,Mulhuddart,103841860,0,4289_7778022_104040,4289_70 -4289_75969,95,4289_5402,Mulhuddart,103951860,0,4289_7778022_104040,4289_70 -4289_75969,96,4289_5408,Mulhuddart,104064672,0,4289_7778022_104110,4289_70 -4289_75969,92,4289_5414,Mulhuddart,103621974,0,4289_7778022_104140,4289_70 -4289_75969,93,4289_5415,Mulhuddart,103731974,0,4289_7778022_104140,4289_70 -4289_75969,94,4289_5416,Mulhuddart,103841974,0,4289_7778022_104140,4289_70 -4289_75969,95,4289_5417,Mulhuddart,103951974,0,4289_7778022_104140,4289_70 -4289_75960,96,4289_542,Dublin Airport,104064031,1,4289_7778022_103501,4289_4 -4289_75969,96,4289_5423,Mulhuddart,104064780,0,4289_7778022_104080,4289_70 -4289_75969,92,4289_5429,Mulhuddart,103622086,0,4289_7778022_104080,4289_70 -4289_75969,93,4289_5430,Mulhuddart,103732086,0,4289_7778022_104080,4289_70 -4289_75969,94,4289_5431,Mulhuddart,103842086,0,4289_7778022_104080,4289_70 -4289_75969,95,4289_5432,Mulhuddart,103952086,0,4289_7778022_104080,4289_70 -4289_75969,96,4289_5438,Mulhuddart,104064884,0,4289_7778022_104100,4289_70 -4289_75960,92,4289_544,Dublin Airport,103621089,1,4289_7778022_103104,4289_3 -4289_75969,92,4289_5444,Mulhuddart,103622088,0,4289_7778022_109104,4289_70 -4289_75969,93,4289_5445,Mulhuddart,103732090,0,4289_7778022_109303,4289_70 -4289_75969,94,4289_5446,Mulhuddart,103842092,0,4289_7778022_109406,4289_70 -4289_75969,95,4289_5447,Mulhuddart,103952094,0,4289_7778022_109502,4289_70 -4289_75969,92,4289_5449,Mulhuddart,103622228,0,4289_7778022_104170,4289_70 -4289_75960,93,4289_545,Dublin Airport,103731089,1,4289_7778022_103104,4289_3 -4289_75969,93,4289_5450,Mulhuddart,103732228,0,4289_7778022_104170,4289_70 -4289_75969,94,4289_5451,Mulhuddart,103842228,0,4289_7778022_104170,4289_70 -4289_75969,95,4289_5452,Mulhuddart,103952228,0,4289_7778022_104170,4289_70 -4289_75969,96,4289_5458,Mulhuddart,104064990,0,4289_7778022_104090,4289_70 -4289_75960,94,4289_546,Dublin Airport,103841089,1,4289_7778022_103104,4289_3 -4289_75969,92,4289_5464,Mulhuddart,103622358,0,4289_7778022_104190,4289_70 -4289_75969,93,4289_5465,Mulhuddart,103732358,0,4289_7778022_104190,4289_70 -4289_75969,94,4289_5466,Mulhuddart,103842358,0,4289_7778022_104190,4289_70 -4289_75969,95,4289_5467,Mulhuddart,103952358,0,4289_7778022_104190,4289_70 -4289_75960,95,4289_547,Dublin Airport,103951089,1,4289_7778022_103104,4289_3 -4289_75969,96,4289_5473,Mulhuddart,104065098,0,4289_7778022_104150,4289_70 -4289_75969,92,4289_5479,Mulhuddart,103622478,0,4289_7778022_104060,4289_70 -4289_75969,93,4289_5480,Mulhuddart,103732478,0,4289_7778022_104060,4289_70 -4289_75969,94,4289_5481,Mulhuddart,103842478,0,4289_7778022_104060,4289_70 -4289_75969,95,4289_5482,Mulhuddart,103952478,0,4289_7778022_104060,4289_70 -4289_75969,96,4289_5488,Mulhuddart,104065202,0,4289_7778022_104171,4289_70 -4289_75969,96,4289_5493,Blanchardstown,104065260,0,4289_7778022_104180,4289_72 -4289_75969,92,4289_5499,Mulhuddart,103622592,0,4289_7778022_104093,4289_70 -4289_75960,96,4289_55,Sutton Station,104064176,0,4289_7778022_103101,4289_1 -4289_75969,93,4289_5500,Mulhuddart,103732592,0,4289_7778022_104093,4289_70 -4289_75969,94,4289_5501,Mulhuddart,103842592,0,4289_7778022_104093,4289_70 -4289_75969,95,4289_5502,Mulhuddart,103952592,0,4289_7778022_104093,4289_70 -4289_75969,96,4289_5508,Mulhuddart,104065358,0,4289_7778022_104110,4289_70 -4289_75969,92,4289_5514,Blanchardstown,103622654,0,4289_7778022_104110,4289_72 -4289_75969,93,4289_5515,Blanchardstown,103732654,0,4289_7778022_104110,4289_72 -4289_75969,94,4289_5516,Blanchardstown,103842654,0,4289_7778022_104110,4289_72 -4289_75969,95,4289_5517,Blanchardstown,103952654,0,4289_7778022_104110,4289_72 -4289_75969,92,4289_5524,Mulhuddart,103622674,0,4289_7778022_104093,4289_71 -4289_75969,93,4289_5525,Mulhuddart,103732674,0,4289_7778022_104093,4289_71 -4289_75969,94,4289_5526,Mulhuddart,103842674,0,4289_7778022_104093,4289_71 -4289_75969,95,4289_5527,Mulhuddart,103952674,0,4289_7778022_104093,4289_71 -4289_75969,92,4289_5534,Mulhuddart,103622752,0,4289_7778022_104093,4289_70 -4289_75969,93,4289_5535,Mulhuddart,103732752,0,4289_7778022_104093,4289_70 -4289_75969,94,4289_5536,Mulhuddart,103842752,0,4289_7778022_104093,4289_70 -4289_75969,95,4289_5537,Mulhuddart,103952752,0,4289_7778022_104093,4289_70 -4289_75960,92,4289_554,Dublin Airport,103621119,1,4289_7778022_103503,4289_3 -4289_75969,96,4289_5543,Mulhuddart,104065448,0,4289_7778022_104110,4289_70 -4289_75969,92,4289_5549,Mulhuddart,103622852,0,4289_7778022_104093,4289_70 -4289_75960,93,4289_555,Dublin Airport,103731119,1,4289_7778022_103503,4289_3 -4289_75969,93,4289_5550,Mulhuddart,103732852,0,4289_7778022_104093,4289_70 -4289_75969,94,4289_5551,Mulhuddart,103842852,0,4289_7778022_104093,4289_70 -4289_75969,95,4289_5552,Mulhuddart,103952852,0,4289_7778022_104093,4289_70 -4289_75969,96,4289_5558,Mulhuddart,104065540,0,4289_7778022_104100,4289_70 -4289_75960,94,4289_556,Dublin Airport,103841119,1,4289_7778022_103503,4289_3 -4289_75969,92,4289_5564,Mulhuddart,103622950,0,4289_7778022_104170,4289_70 -4289_75969,93,4289_5565,Mulhuddart,103732950,0,4289_7778022_104170,4289_70 -4289_75969,94,4289_5566,Mulhuddart,103842950,0,4289_7778022_104170,4289_70 -4289_75969,95,4289_5567,Mulhuddart,103952950,0,4289_7778022_104170,4289_70 -4289_75960,95,4289_557,Dublin Airport,103951119,1,4289_7778022_103503,4289_3 -4289_75969,96,4289_5573,Mulhuddart,104065628,0,4289_7778022_104100,4289_70 -4289_75969,92,4289_5579,Mulhuddart,103623042,0,4289_7778022_104170,4289_70 -4289_75969,93,4289_5580,Mulhuddart,103733042,0,4289_7778022_104170,4289_70 -4289_75969,94,4289_5581,Mulhuddart,103843042,0,4289_7778022_104170,4289_70 -4289_75969,95,4289_5582,Mulhuddart,103953042,0,4289_7778022_104170,4289_70 -4289_75969,96,4289_5588,Mulhuddart,104065710,0,4289_7778022_104100,4289_70 -4289_75969,92,4289_5594,Carlton Hotel,103621269,1,4289_7778022_104170,4289_73 -4289_75969,93,4289_5595,Carlton Hotel,103731269,1,4289_7778022_104170,4289_73 -4289_75969,94,4289_5596,Carlton Hotel,103841269,1,4289_7778022_104170,4289_73 -4289_75969,95,4289_5597,Carlton Hotel,103951269,1,4289_7778022_104170,4289_73 -4289_75969,96,4289_5603,Carlton Hotel,104064187,1,4289_7778022_104090,4289_73 -4289_75969,92,4289_5605,Carlton Hotel,103621405,1,4289_7778022_104190,4289_73 -4289_75969,93,4289_5606,Carlton Hotel,103731405,1,4289_7778022_104190,4289_73 -4289_75969,94,4289_5607,Carlton Hotel,103841405,1,4289_7778022_104190,4289_73 -4289_75969,95,4289_5608,Carlton Hotel,103951405,1,4289_7778022_104190,4289_73 -4289_75969,96,4289_5614,Carlton Hotel,104064277,1,4289_7778022_104171,4289_73 -4289_75969,92,4289_5620,Carlton Hotel,103621517,1,4289_7778022_104060,4289_73 -4289_75969,93,4289_5621,Carlton Hotel,103731517,1,4289_7778022_104060,4289_73 -4289_75969,94,4289_5622,Carlton Hotel,103841517,1,4289_7778022_104060,4289_73 -4289_75969,95,4289_5623,Carlton Hotel,103951517,1,4289_7778022_104060,4289_73 -4289_75969,96,4289_5629,Carlton Hotel,104064383,1,4289_7778022_104171,4289_73 -4289_75960,96,4289_563,Dublin Airport,104064079,1,4289_7778022_103101,4289_4 -4289_75969,92,4289_5635,Carlton Hotel,103621629,1,4289_7778022_104110,4289_73 -4289_75969,93,4289_5636,Carlton Hotel,103731629,1,4289_7778022_104110,4289_73 -4289_75969,94,4289_5637,Carlton Hotel,103841629,1,4289_7778022_104110,4289_73 -4289_75969,95,4289_5638,Carlton Hotel,103951629,1,4289_7778022_104110,4289_73 -4289_75960,96,4289_564,Dublin Airport,104064109,1,4289_7778022_103502,4289_3 -4289_75969,96,4289_5644,Carlton Hotel,104064491,1,4289_7778022_104180,4289_73 -4289_75969,92,4289_5650,Carlton Hotel,103621741,1,4289_7778022_104040,4289_73 -4289_75969,93,4289_5651,Carlton Hotel,103731741,1,4289_7778022_104040,4289_73 -4289_75969,94,4289_5652,Carlton Hotel,103841741,1,4289_7778022_104040,4289_73 -4289_75969,95,4289_5653,Carlton Hotel,103951741,1,4289_7778022_104040,4289_73 -4289_75969,96,4289_5659,Carlton Hotel,104064583,1,4289_7778022_104110,4289_73 -4289_75960,92,4289_566,Dublin Airport,103621183,1,4289_7778022_103107,4289_3 -4289_75969,92,4289_5665,Carlton Hotel,103621857,1,4289_7778022_104140,4289_73 -4289_75969,93,4289_5666,Carlton Hotel,103731857,1,4289_7778022_104140,4289_73 -4289_75969,94,4289_5667,Carlton Hotel,103841857,1,4289_7778022_104140,4289_73 -4289_75969,95,4289_5668,Carlton Hotel,103951857,1,4289_7778022_104140,4289_73 -4289_75960,93,4289_567,Dublin Airport,103731183,1,4289_7778022_103107,4289_3 -4289_75969,96,4289_5674,Carlton Hotel,104064691,1,4289_7778022_104080,4289_73 -4289_75960,94,4289_568,Dublin Airport,103841183,1,4289_7778022_103107,4289_3 -4289_75969,92,4289_5680,Carlton Hotel,103621973,1,4289_7778022_104080,4289_73 -4289_75969,93,4289_5681,Carlton Hotel,103731973,1,4289_7778022_104080,4289_73 -4289_75969,94,4289_5682,Carlton Hotel,103841973,1,4289_7778022_104080,4289_73 -4289_75969,95,4289_5683,Carlton Hotel,103951973,1,4289_7778022_104080,4289_73 -4289_75969,96,4289_5689,Carlton Hotel,104064797,1,4289_7778022_104100,4289_73 -4289_75960,95,4289_569,Dublin Airport,103951183,1,4289_7778022_103107,4289_3 -4289_75969,92,4289_5695,Carlton Hotel,103622093,1,4289_7778022_104170,4289_73 -4289_75969,93,4289_5696,Carlton Hotel,103732093,1,4289_7778022_104170,4289_73 -4289_75969,94,4289_5697,Carlton Hotel,103842093,1,4289_7778022_104170,4289_73 -4289_75969,95,4289_5698,Carlton Hotel,103952093,1,4289_7778022_104170,4289_73 -4289_75960,92,4289_57,Sutton Station,103621324,0,4289_7778022_103503,4289_1 -4289_75969,96,4289_5704,Carlton Hotel,104064903,1,4289_7778022_104090,4289_73 -4289_75969,92,4289_5710,Carlton Hotel,103622231,1,4289_7778022_104190,4289_73 -4289_75969,93,4289_5711,Carlton Hotel,103732231,1,4289_7778022_104190,4289_73 -4289_75969,94,4289_5712,Carlton Hotel,103842231,1,4289_7778022_104190,4289_73 -4289_75969,95,4289_5713,Carlton Hotel,103952231,1,4289_7778022_104190,4289_73 -4289_75969,96,4289_5719,Carlton Hotel,104065009,1,4289_7778022_104150,4289_73 -4289_75969,92,4289_5725,Carlton Hotel,103622373,1,4289_7778022_104060,4289_73 -4289_75969,93,4289_5726,Carlton Hotel,103732373,1,4289_7778022_104060,4289_73 -4289_75969,94,4289_5727,Carlton Hotel,103842373,1,4289_7778022_104060,4289_73 -4289_75969,95,4289_5728,Carlton Hotel,103952373,1,4289_7778022_104060,4289_73 -4289_75969,96,4289_5734,Carlton Hotel,104065115,1,4289_7778022_104171,4289_73 -4289_75969,96,4289_5739,Carlton Hotel,104065207,1,4289_7778022_104180,4289_75 -4289_75969,92,4289_5745,Carlton Hotel,103622495,1,4289_7778022_104093,4289_73 -4289_75969,93,4289_5746,Carlton Hotel,103732495,1,4289_7778022_104093,4289_73 -4289_75969,94,4289_5747,Carlton Hotel,103842495,1,4289_7778022_104093,4289_73 -4289_75969,95,4289_5748,Carlton Hotel,103952495,1,4289_7778022_104093,4289_73 -4289_75960,96,4289_575,Dublin Airport,104064157,1,4289_7778022_103104,4289_3 -4289_75969,96,4289_5754,Carlton Hotel,104065289,1,4289_7778022_104110,4289_73 -4289_75969,92,4289_5760,Carlton Hotel,103622593,1,4289_7778022_104110,4289_75 -4289_75969,93,4289_5761,Carlton Hotel,103732593,1,4289_7778022_104110,4289_75 -4289_75969,94,4289_5762,Carlton Hotel,103842593,1,4289_7778022_104110,4289_75 -4289_75969,95,4289_5763,Carlton Hotel,103952593,1,4289_7778022_104110,4289_75 -4289_75960,92,4289_577,Dublin Airport,103621241,1,4289_7778022_103108,4289_3 -4289_75969,92,4289_5770,Blanchardstown,103622635,1,4289_7778022_104093,4289_74 -4289_75969,93,4289_5771,Blanchardstown,103732635,1,4289_7778022_104093,4289_74 -4289_75969,94,4289_5772,Blanchardstown,103842635,1,4289_7778022_104093,4289_74 -4289_75969,95,4289_5773,Blanchardstown,103952635,1,4289_7778022_104093,4289_74 -4289_75960,93,4289_578,Dublin Airport,103731241,1,4289_7778022_103108,4289_3 -4289_75969,92,4289_5780,Carlton Hotel,103622681,1,4289_7778022_104093,4289_73 -4289_75969,93,4289_5781,Carlton Hotel,103732681,1,4289_7778022_104093,4289_73 -4289_75969,94,4289_5782,Carlton Hotel,103842681,1,4289_7778022_104093,4289_73 -4289_75969,95,4289_5783,Carlton Hotel,103952681,1,4289_7778022_104093,4289_73 -4289_75969,96,4289_5789,Carlton Hotel,104065383,1,4289_7778022_104110,4289_73 -4289_75960,94,4289_579,Dublin Airport,103841241,1,4289_7778022_103108,4289_3 -4289_75969,92,4289_5795,Carlton Hotel,103622779,1,4289_7778022_104093,4289_73 -4289_75969,93,4289_5796,Carlton Hotel,103732779,1,4289_7778022_104093,4289_73 -4289_75969,94,4289_5797,Carlton Hotel,103842779,1,4289_7778022_104093,4289_73 -4289_75969,95,4289_5798,Carlton Hotel,103952779,1,4289_7778022_104093,4289_73 -4289_75960,93,4289_58,Sutton Station,103731324,0,4289_7778022_103503,4289_1 -4289_75960,95,4289_580,Dublin Airport,103951241,1,4289_7778022_103108,4289_3 -4289_75969,96,4289_5804,Carlton Hotel,104065473,1,4289_7778022_104100,4289_73 -4289_75969,92,4289_5810,Carlton Hotel,103622881,1,4289_7778022_104170,4289_73 -4289_75969,93,4289_5811,Carlton Hotel,103732881,1,4289_7778022_104170,4289_73 -4289_75969,94,4289_5812,Carlton Hotel,103842881,1,4289_7778022_104170,4289_73 -4289_75969,95,4289_5813,Carlton Hotel,103952881,1,4289_7778022_104170,4289_73 -4289_75969,96,4289_5819,Carlton Hotel,104065563,1,4289_7778022_104100,4289_73 -4289_75969,92,4289_5825,Carlton Hotel,103622977,1,4289_7778022_104170,4289_73 -4289_75969,93,4289_5826,Carlton Hotel,103732977,1,4289_7778022_104170,4289_73 -4289_75969,94,4289_5827,Carlton Hotel,103842977,1,4289_7778022_104170,4289_73 -4289_75969,95,4289_5828,Carlton Hotel,103952977,1,4289_7778022_104170,4289_73 -4289_75969,96,4289_5834,Carlton Hotel,104065651,1,4289_7778022_104100,4289_73 -4289_75969,92,4289_5840,Carlton Hotel,103623059,1,4289_7778022_104130,4289_75 -4289_75969,93,4289_5841,Carlton Hotel,103733059,1,4289_7778022_104130,4289_75 -4289_75969,94,4289_5842,Carlton Hotel,103843059,1,4289_7778022_104130,4289_75 -4289_75969,95,4289_5843,Carlton Hotel,103953059,1,4289_7778022_104130,4289_75 -4289_75969,96,4289_5849,Carlton Hotel,104065731,1,4289_7778022_104050,4289_75 -4289_75970,92,4289_5851,Blanchardstown,103621096,0,4289_7778022_100191,4289_76 -4289_75970,93,4289_5852,Blanchardstown,103731096,0,4289_7778022_100191,4289_76 -4289_75970,94,4289_5853,Blanchardstown,103841096,0,4289_7778022_100191,4289_76 -4289_75970,95,4289_5854,Blanchardstown,103951096,0,4289_7778022_100191,4289_76 -4289_75960,96,4289_586,Dublin Airport,104064199,1,4289_7778022_103501,4289_3 -4289_75970,96,4289_5860,Blanchardstown,104064066,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_5862,Blanchardstown,103621236,0,4289_7778022_100191,4289_76 -4289_75970,93,4289_5863,Blanchardstown,103731236,0,4289_7778022_100191,4289_76 -4289_75970,94,4289_5864,Blanchardstown,103841236,0,4289_7778022_100191,4289_76 -4289_75970,95,4289_5865,Blanchardstown,103951236,0,4289_7778022_100191,4289_76 -4289_75970,96,4289_5871,Blanchardstown,104064152,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_5877,Blanchardstown,103621402,0,4289_7778022_100191,4289_76 -4289_75970,93,4289_5878,Blanchardstown,103731402,0,4289_7778022_100191,4289_76 -4289_75970,94,4289_5879,Blanchardstown,103841402,0,4289_7778022_100191,4289_76 -4289_75960,92,4289_588,Dublin Airport,103621319,1,4289_7778022_103501,4289_3 -4289_75970,95,4289_5880,Blanchardstown,103951402,0,4289_7778022_100191,4289_76 -4289_75970,96,4289_5886,Blanchardstown,104064242,0,4289_7778022_104050,4289_76 -4289_75960,93,4289_589,Dublin Airport,103731319,1,4289_7778022_103501,4289_3 -4289_75970,92,4289_5892,Blanchardstown,103621546,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_5893,Blanchardstown,103731546,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_5894,Blanchardstown,103841546,0,4289_7778022_104130,4289_76 -4289_75970,95,4289_5895,Blanchardstown,103951546,0,4289_7778022_104130,4289_76 -4289_75960,94,4289_59,Sutton Station,103841324,0,4289_7778022_103503,4289_1 -4289_75960,94,4289_590,Dublin Airport,103841319,1,4289_7778022_103501,4289_3 -4289_75970,96,4289_5901,Blanchardstown,104064370,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_5907,Blanchardstown,103621658,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_5908,Blanchardstown,103731658,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_5909,Blanchardstown,103841658,0,4289_7778022_104130,4289_76 -4289_75960,95,4289_591,Dublin Airport,103951319,1,4289_7778022_103501,4289_3 -4289_75970,95,4289_5910,Blanchardstown,103951658,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_5916,Blanchardstown,104064476,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_5922,Blanchardstown,103621768,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_5923,Blanchardstown,103731768,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_5924,Blanchardstown,103841768,0,4289_7778022_104130,4289_76 -4289_75970,95,4289_5925,Blanchardstown,103951768,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_5931,Blanchardstown,104064582,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_5937,Blanchardstown,103621882,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_5938,Blanchardstown,103731882,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_5939,Blanchardstown,103841882,0,4289_7778022_104130,4289_76 -4289_75970,95,4289_5940,Blanchardstown,103951882,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_5946,Blanchardstown,104064690,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_5952,Blanchardstown,103621996,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_5953,Blanchardstown,103731996,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_5954,Blanchardstown,103841996,0,4289_7778022_104130,4289_76 -4289_75970,95,4289_5955,Blanchardstown,103951996,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_5961,Blanchardstown,104064796,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_5967,Blanchardstown,103622124,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_5968,Blanchardstown,103732124,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_5969,Blanchardstown,103842124,0,4289_7778022_104130,4289_76 -4289_75960,96,4289_597,Dublin Airport,104064245,1,4289_7778022_103101,4289_3 -4289_75970,95,4289_5970,Blanchardstown,103952124,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_5976,Blanchardstown,104064902,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_5982,Blanchardstown,103622254,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_5983,Blanchardstown,103732254,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_5984,Blanchardstown,103842254,0,4289_7778022_104130,4289_76 -4289_75970,95,4289_5985,Blanchardstown,103952254,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_5991,Blanchardstown,104065010,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_5997,Blanchardstown,103622386,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_5998,Blanchardstown,103732386,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_5999,Blanchardstown,103842386,0,4289_7778022_104130,4289_76 -4289_75960,95,4289_6,Sutton Station,103951028,0,4289_7778022_103503,4289_1 -4289_75960,95,4289_60,Sutton Station,103951324,0,4289_7778022_103503,4289_1 -4289_75970,95,4289_6000,Blanchardstown,103952386,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_6006,Blanchardstown,104065116,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_6012,Blanchardstown,103622504,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_6013,Blanchardstown,103732504,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_6014,Blanchardstown,103842504,0,4289_7778022_104130,4289_76 -4289_75970,95,4289_6015,Blanchardstown,103952504,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_6021,Blanchardstown,104065224,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_6027,Blanchardstown,103622620,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_6028,Blanchardstown,103732620,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_6029,Blanchardstown,103842620,0,4289_7778022_104130,4289_76 -4289_75960,92,4289_603,Dublin Airport,103621385,1,4289_7778022_103502,4289_3 -4289_75970,95,4289_6030,Blanchardstown,103952620,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_6036,Blanchardstown,104065356,0,4289_7778022_104050,4289_76 -4289_75960,93,4289_604,Dublin Airport,103731385,1,4289_7778022_103502,4289_3 -4289_75970,92,4289_6042,Blanchardstown,103622750,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_6043,Blanchardstown,103732750,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_6044,Blanchardstown,103842750,0,4289_7778022_104130,4289_76 -4289_75970,95,4289_6045,Blanchardstown,103952750,0,4289_7778022_104130,4289_76 -4289_75960,94,4289_605,Dublin Airport,103841385,1,4289_7778022_103502,4289_3 -4289_75970,96,4289_6051,Blanchardstown,104065446,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_6057,Blanchardstown,103622850,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_6058,Blanchardstown,103732850,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_6059,Blanchardstown,103842850,0,4289_7778022_104130,4289_76 -4289_75960,95,4289_606,Dublin Airport,103951385,1,4289_7778022_103502,4289_3 -4289_75970,95,4289_6060,Blanchardstown,103952850,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_6066,Blanchardstown,104065538,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_6072,Blanchardstown,103622948,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_6073,Blanchardstown,103732948,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_6074,Blanchardstown,103842948,0,4289_7778022_104130,4289_76 -4289_75970,95,4289_6075,Blanchardstown,103952948,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_6081,Blanchardstown,104065626,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_6087,Blanchardstown,103623040,0,4289_7778022_104130,4289_76 -4289_75970,93,4289_6088,Blanchardstown,103733040,0,4289_7778022_104130,4289_76 -4289_75970,94,4289_6089,Blanchardstown,103843040,0,4289_7778022_104130,4289_76 -4289_75970,95,4289_6090,Blanchardstown,103953040,0,4289_7778022_104130,4289_76 -4289_75970,96,4289_6096,Blanchardstown,104065708,0,4289_7778022_104050,4289_76 -4289_75970,92,4289_6102,Dunboyne,103621159,1,4289_7778022_100191,4289_77 -4289_75970,93,4289_6103,Dunboyne,103731159,1,4289_7778022_100191,4289_77 -4289_75970,94,4289_6104,Dunboyne,103841159,1,4289_7778022_100191,4289_77 -4289_75970,95,4289_6105,Dunboyne,103951159,1,4289_7778022_100191,4289_77 -4289_75970,96,4289_6111,Dunboyne,104064103,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6113,Dunboyne,103621299,1,4289_7778022_100191,4289_77 -4289_75970,93,4289_6114,Dunboyne,103731299,1,4289_7778022_100191,4289_77 -4289_75970,94,4289_6115,Dunboyne,103841299,1,4289_7778022_100191,4289_77 -4289_75970,95,4289_6116,Dunboyne,103951299,1,4289_7778022_100191,4289_77 -4289_75960,96,4289_612,Dublin Airport,104064291,1,4289_7778022_103502,4289_3 -4289_75970,96,4289_6122,Dunboyne,104064189,1,4289_7778022_104050,4289_78 -4289_75970,92,4289_6128,Dunboyne,103621445,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6129,Dunboyne,103731445,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6130,Dunboyne,103841445,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6131,Dunboyne,103951445,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6137,Dunboyne,104064311,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6143,Dunboyne,103621561,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6144,Dunboyne,103731561,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6145,Dunboyne,103841561,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6146,Dunboyne,103951561,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6152,Dunboyne,104064415,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6158,Dunboyne,103621671,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6159,Dunboyne,103731671,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6160,Dunboyne,103841671,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6161,Dunboyne,103951671,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6167,Dunboyne,104064517,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6173,Dunboyne,103621785,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6174,Dunboyne,103731785,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6175,Dunboyne,103841785,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6176,Dunboyne,103951785,1,4289_7778022_104130,4289_77 -4289_75960,92,4289_618,Dublin Airport,103621439,1,4289_7778022_103503,4289_3 -4289_75970,96,4289_6182,Dunboyne,104064623,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6188,Dunboyne,103621907,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6189,Dunboyne,103731907,1,4289_7778022_104130,4289_77 -4289_75960,93,4289_619,Dublin Airport,103731439,1,4289_7778022_103503,4289_3 -4289_75970,94,4289_6190,Dunboyne,103841907,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6191,Dunboyne,103951907,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6197,Dunboyne,104064731,1,4289_7778022_104050,4289_77 -4289_75960,94,4289_620,Dublin Airport,103841439,1,4289_7778022_103503,4289_3 -4289_75970,92,4289_6203,Dunboyne,103622017,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6204,Dunboyne,103732017,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6205,Dunboyne,103842017,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6206,Dunboyne,103952017,1,4289_7778022_104130,4289_77 -4289_75960,95,4289_621,Dublin Airport,103951439,1,4289_7778022_103503,4289_3 -4289_75970,96,4289_6212,Dunboyne,104064837,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6218,Dunboyne,103622137,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6219,Dunboyne,103732137,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6220,Dunboyne,103842137,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6221,Dunboyne,103952137,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6227,Dunboyne,104064943,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6233,Dunboyne,103622305,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6234,Dunboyne,103732305,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6235,Dunboyne,103842305,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6236,Dunboyne,103952305,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6242,Dunboyne,104065049,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6248,Dunboyne,103622423,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6249,Dunboyne,103732423,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6250,Dunboyne,103842423,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6251,Dunboyne,103952423,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6257,Dunboyne,104065155,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6263,Dunboyne,103622539,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6264,Dunboyne,103732539,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6265,Dunboyne,103842539,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6266,Dunboyne,103952539,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6272,Dunboyne,104065275,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6278,Dunboyne,103622669,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6279,Dunboyne,103732669,1,4289_7778022_104130,4289_77 -4289_75960,92,4289_628,Dublin Airport,103621493,1,4289_7778022_103107,4289_3 -4289_75970,94,4289_6280,Dunboyne,103842669,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6281,Dunboyne,103952669,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6287,Dunboyne,104065397,1,4289_7778022_104050,4289_77 -4289_75960,93,4289_629,Dublin Airport,103731493,1,4289_7778022_103107,4289_3 -4289_75970,92,4289_6293,Dunboyne,103622789,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6294,Dunboyne,103732789,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6295,Dunboyne,103842789,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6296,Dunboyne,103952789,1,4289_7778022_104130,4289_77 -4289_75960,94,4289_630,Dublin Airport,103841493,1,4289_7778022_103107,4289_3 -4289_75970,96,4289_6302,Dunboyne,104065487,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6308,Dunboyne,103622891,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6309,Dunboyne,103732891,1,4289_7778022_104130,4289_77 -4289_75960,95,4289_631,Dublin Airport,103951493,1,4289_7778022_103107,4289_3 -4289_75970,94,4289_6310,Dunboyne,103842891,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6311,Dunboyne,103952891,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6317,Dunboyne,104065579,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6323,Dunboyne,103622989,1,4289_7778022_104130,4289_77 -4289_75970,93,4289_6324,Dunboyne,103732989,1,4289_7778022_104130,4289_77 -4289_75970,94,4289_6325,Dunboyne,103842989,1,4289_7778022_104130,4289_77 -4289_75970,95,4289_6326,Dunboyne,103952989,1,4289_7778022_104130,4289_77 -4289_75970,96,4289_6332,Dunboyne,104065667,1,4289_7778022_104050,4289_77 -4289_75970,92,4289_6338,Dunboyne,103623067,1,4289_7778022_104170,4289_77 -4289_75970,93,4289_6339,Dunboyne,103733067,1,4289_7778022_104170,4289_77 -4289_75970,94,4289_6340,Dunboyne,103843067,1,4289_7778022_104170,4289_77 -4289_75970,95,4289_6341,Dunboyne,103953067,1,4289_7778022_104170,4289_77 -4289_75970,96,4289_6347,Dunboyne,104065739,1,4289_7778022_104100,4289_77 -4289_75996,92,4289_6353,Catleknock College,103621350,0,4289_7778022_109109,4289_79 -4289_75996,93,4289_6354,Catleknock College,103731352,0,4289_7778022_109309,4289_79 -4289_75996,94,4289_6355,Catleknock College,103841354,0,4289_7778022_109409,4289_79 -4289_75996,95,4289_6356,Catleknock College,103951356,0,4289_7778022_109509,4289_79 -4289_75996,93,4289_6357,Littlepace Park,103731813,1,4289_7778022_109308,4289_80 -4289_75996,92,4289_6359,Littlepace Park,103622283,1,4289_7778022_109106,4289_80 -4289_75996,94,4289_6360,Littlepace Park,103842285,1,4289_7778022_109407,4289_80 -4289_75996,95,4289_6361,Littlepace Park,103952287,1,4289_7778022_109507,4289_80 -4289_75971,92,4289_6363,Balbriggan,103621050,0,4289_7778022_103103,4289_81 -4289_75971,93,4289_6364,Balbriggan,103731050,0,4289_7778022_103103,4289_81 -4289_75971,94,4289_6365,Balbriggan,103841050,0,4289_7778022_103103,4289_81 -4289_75971,95,4289_6366,Balbriggan,103951050,0,4289_7778022_103103,4289_81 -4289_75960,96,4289_637,Dublin Airport,104064349,1,4289_7778022_103104,4289_4 -4289_75971,92,4289_6373,Skerries,103621112,0,4289_7778022_103109,4289_82 -4289_75971,93,4289_6374,Skerries,103731112,0,4289_7778022_103109,4289_82 -4289_75971,94,4289_6375,Skerries,103841112,0,4289_7778022_103109,4289_82 -4289_75971,95,4289_6376,Skerries,103951112,0,4289_7778022_103109,4289_82 -4289_75971,96,4289_6382,Skerries,104064110,0,4289_7778022_103106,4289_82 -4289_75971,92,4289_6384,Balbriggan,103621226,0,4289_7778022_103101,4289_81 -4289_75971,93,4289_6385,Balbriggan,103731226,0,4289_7778022_103101,4289_81 -4289_75971,94,4289_6386,Balbriggan,103841226,0,4289_7778022_103101,4289_81 -4289_75971,95,4289_6387,Balbriggan,103951226,0,4289_7778022_103101,4289_81 -4289_75971,96,4289_6393,Balbriggan,104064162,0,4289_7778022_103103,4289_81 -4289_75971,92,4289_6395,Skerries,103621378,0,4289_7778022_103104,4289_82 -4289_75971,93,4289_6396,Skerries,103731378,0,4289_7778022_103104,4289_82 -4289_75971,94,4289_6397,Skerries,103841378,0,4289_7778022_103104,4289_82 -4289_75971,95,4289_6398,Skerries,103951378,0,4289_7778022_103104,4289_82 -4289_75971,96,4289_6404,Skerries,104064220,0,4289_7778022_103105,4289_82 -4289_75971,92,4289_6406,Balbriggan,103621468,0,4289_7778022_103106,4289_81 -4289_75971,93,4289_6407,Balbriggan,103731468,0,4289_7778022_103106,4289_81 -4289_75971,94,4289_6408,Balbriggan,103841468,0,4289_7778022_103106,4289_81 -4289_75971,95,4289_6409,Balbriggan,103951468,0,4289_7778022_103106,4289_81 -4289_75971,96,4289_6415,Balbriggan,104064300,0,4289_7778022_103106,4289_81 -4289_75971,92,4289_6417,Skerries,103621542,0,4289_7778022_103103,4289_82 -4289_75971,93,4289_6418,Skerries,103731542,0,4289_7778022_103103,4289_82 -4289_75971,94,4289_6419,Skerries,103841542,0,4289_7778022_103103,4289_82 -4289_75971,95,4289_6420,Skerries,103951542,0,4289_7778022_103103,4289_82 -4289_75971,96,4289_6426,Skerries,104064366,0,4289_7778022_103108,4289_83 -4289_75960,92,4289_643,Dublin Airport,103621549,1,4289_7778022_103102,4289_3 -4289_75971,92,4289_6432,Balbriggan,103621634,0,4289_7778022_103101,4289_81 -4289_75971,93,4289_6433,Balbriggan,103731634,0,4289_7778022_103101,4289_81 -4289_75971,94,4289_6434,Balbriggan,103841634,0,4289_7778022_103101,4289_81 -4289_75971,95,4289_6435,Balbriggan,103951634,0,4289_7778022_103101,4289_81 -4289_75960,93,4289_644,Dublin Airport,103731549,1,4289_7778022_103102,4289_3 -4289_75971,96,4289_6441,Balbriggan,104064458,0,4289_7778022_103502,4289_84 -4289_75971,92,4289_6447,Skerries,103621708,0,4289_7778022_103503,4289_82 -4289_75971,93,4289_6448,Skerries,103731708,0,4289_7778022_103503,4289_82 -4289_75971,94,4289_6449,Skerries,103841708,0,4289_7778022_103503,4289_82 -4289_75960,94,4289_645,Dublin Airport,103841549,1,4289_7778022_103102,4289_3 -4289_75971,95,4289_6450,Skerries,103951708,0,4289_7778022_103503,4289_82 -4289_75971,96,4289_6456,Skerries,104064526,0,4289_7778022_103104,4289_83 -4289_75960,95,4289_646,Dublin Airport,103951549,1,4289_7778022_103102,4289_3 -4289_75971,92,4289_6462,Balbriggan,103621802,0,4289_7778022_103107,4289_81 -4289_75971,93,4289_6463,Balbriggan,103731802,0,4289_7778022_103107,4289_81 -4289_75971,94,4289_6464,Balbriggan,103841802,0,4289_7778022_103107,4289_81 -4289_75971,95,4289_6465,Balbriggan,103951802,0,4289_7778022_103107,4289_81 -4289_75971,96,4289_6471,Balbriggan,104064614,0,4289_7778022_103501,4289_84 -4289_75971,92,4289_6477,Skerries,103621878,0,4289_7778022_103501,4289_82 -4289_75971,93,4289_6478,Skerries,103731878,0,4289_7778022_103501,4289_82 -4289_75971,94,4289_6479,Skerries,103841878,0,4289_7778022_103501,4289_82 -4289_75971,95,4289_6480,Skerries,103951878,0,4289_7778022_103501,4289_82 -4289_75971,96,4289_6486,Skerries,104064686,0,4289_7778022_103101,4289_83 -4289_75971,96,4289_6491,Balbriggan,104064754,0,4289_7778022_103502,4289_81 -4289_75971,92,4289_6493,Balbriggan,103621972,0,4289_7778022_103105,4289_81 -4289_75971,93,4289_6494,Balbriggan,103731972,0,4289_7778022_103105,4289_81 -4289_75971,94,4289_6495,Balbriggan,103841972,0,4289_7778022_103105,4289_81 -4289_75971,95,4289_6496,Balbriggan,103951972,0,4289_7778022_103105,4289_81 -4289_75971,92,4289_6507,Skerries,103622048,0,4289_7778022_103102,4289_82 -4289_75971,93,4289_6508,Skerries,103732048,0,4289_7778022_103102,4289_82 -4289_75971,94,4289_6509,Skerries,103842048,0,4289_7778022_103102,4289_82 -4289_75971,95,4289_6510,Skerries,103952048,0,4289_7778022_103102,4289_82 -4289_75971,96,4289_6516,Skerries,104064844,0,4289_7778022_103503,4289_83 -4289_75960,96,4289_652,Dublin Airport,104064399,1,4289_7778022_103503,4289_4 -4289_75971,96,4289_6521,Balbriggan,104064918,0,4289_7778022_103501,4289_81 -4289_75971,92,4289_6523,Balbriggan,103622162,0,4289_7778022_103107,4289_81 -4289_75971,93,4289_6524,Balbriggan,103732162,0,4289_7778022_103107,4289_81 -4289_75971,94,4289_6525,Balbriggan,103842162,0,4289_7778022_103107,4289_81 -4289_75971,95,4289_6526,Balbriggan,103952162,0,4289_7778022_103107,4289_81 -4289_75971,96,4289_6536,Skerries,104065006,0,4289_7778022_103103,4289_82 -4289_75971,92,4289_6538,Skerries,103622256,0,4289_7778022_103501,4289_82 -4289_75971,93,4289_6539,Skerries,103732256,0,4289_7778022_103501,4289_82 -4289_75971,94,4289_6540,Skerries,103842256,0,4289_7778022_103501,4289_82 -4289_75971,95,4289_6541,Skerries,103952256,0,4289_7778022_103501,4289_82 -4289_75971,96,4289_6551,Balbriggan,104065070,0,4289_7778022_103105,4289_81 -4289_75971,92,4289_6553,Balbriggan,103622350,0,4289_7778022_103105,4289_81 -4289_75971,93,4289_6554,Balbriggan,103732350,0,4289_7778022_103105,4289_81 -4289_75971,94,4289_6555,Balbriggan,103842350,0,4289_7778022_103105,4289_81 -4289_75971,95,4289_6556,Balbriggan,103952350,0,4289_7778022_103105,4289_81 -4289_75971,96,4289_6566,Skerries,104065168,0,4289_7778022_103106,4289_82 -4289_75971,92,4289_6568,Skerries,103622450,0,4289_7778022_103503,4289_82 -4289_75971,93,4289_6569,Skerries,103732450,0,4289_7778022_103503,4289_82 -4289_75971,94,4289_6570,Skerries,103842450,0,4289_7778022_103503,4289_82 -4289_75971,95,4289_6571,Skerries,103952450,0,4289_7778022_103503,4289_82 -4289_75960,92,4289_658,Dublin Airport,103621607,1,4289_7778022_103108,4289_3 -4289_75971,96,4289_6581,Balbriggan,104065232,0,4289_7778022_103108,4289_81 -4289_75971,92,4289_6583,Balbriggan,103622528,0,4289_7778022_103107,4289_81 -4289_75971,93,4289_6584,Balbriggan,103732528,0,4289_7778022_103107,4289_81 -4289_75971,94,4289_6585,Balbriggan,103842528,0,4289_7778022_103107,4289_81 -4289_75971,95,4289_6586,Balbriggan,103952528,0,4289_7778022_103107,4289_81 -4289_75960,93,4289_659,Dublin Airport,103731607,1,4289_7778022_103108,4289_3 -4289_75971,96,4289_6596,Skerries,104065326,0,4289_7778022_103103,4289_82 -4289_75971,92,4289_6598,Skerries,103622616,0,4289_7778022_103106,4289_82 -4289_75971,93,4289_6599,Skerries,103732616,0,4289_7778022_103106,4289_82 -4289_75960,96,4289_66,Sutton Station,104064208,0,4289_7778022_103502,4289_1 -4289_75960,94,4289_660,Dublin Airport,103841607,1,4289_7778022_103108,4289_3 -4289_75971,94,4289_6600,Skerries,103842616,0,4289_7778022_103106,4289_82 -4289_75971,95,4289_6601,Skerries,103952616,0,4289_7778022_103106,4289_82 -4289_75960,95,4289_661,Dublin Airport,103951607,1,4289_7778022_103108,4289_3 -4289_75971,92,4289_6612,Balbriggan,103622706,0,4289_7778022_103102,4289_81 -4289_75971,93,4289_6613,Balbriggan,103732706,0,4289_7778022_103102,4289_81 -4289_75971,94,4289_6614,Balbriggan,103842706,0,4289_7778022_103102,4289_81 -4289_75971,95,4289_6615,Balbriggan,103952706,0,4289_7778022_103102,4289_81 -4289_75971,96,4289_6621,Balbriggan,104065408,0,4289_7778022_103106,4289_81 -4289_75971,92,4289_6627,Skerries,103622782,0,4289_7778022_103108,4289_82 -4289_75971,93,4289_6628,Skerries,103732782,0,4289_7778022_103108,4289_82 -4289_75971,94,4289_6629,Skerries,103842782,0,4289_7778022_103108,4289_82 -4289_75971,95,4289_6630,Skerries,103952782,0,4289_7778022_103108,4289_82 -4289_75971,96,4289_6636,Skerries,104065480,0,4289_7778022_103108,4289_83 -4289_75971,92,4289_6642,Balbriggan,103622858,0,4289_7778022_103106,4289_81 -4289_75971,93,4289_6643,Balbriggan,103732858,0,4289_7778022_103106,4289_81 -4289_75971,94,4289_6644,Balbriggan,103842858,0,4289_7778022_103106,4289_81 -4289_75971,95,4289_6645,Balbriggan,103952858,0,4289_7778022_103106,4289_81 -4289_75971,96,4289_6651,Balbriggan,104065546,0,4289_7778022_103103,4289_84 -4289_75971,92,4289_6657,Skerries,103622944,0,4289_7778022_103105,4289_82 -4289_75971,93,4289_6658,Skerries,103732944,0,4289_7778022_103105,4289_82 -4289_75971,94,4289_6659,Skerries,103842944,0,4289_7778022_103105,4289_82 -4289_75971,95,4289_6660,Skerries,103952944,0,4289_7778022_103105,4289_82 -4289_75971,96,4289_6666,Skerries,104065622,0,4289_7778022_103106,4289_83 -4289_75960,96,4289_667,Dublin Airport,104064455,1,4289_7778022_103501,4289_4 -4289_75971,92,4289_6672,Balbriggan,103623000,0,4289_7778022_103102,4289_81 -4289_75971,93,4289_6673,Balbriggan,103733000,0,4289_7778022_103102,4289_81 -4289_75971,94,4289_6674,Balbriggan,103843000,0,4289_7778022_103102,4289_81 -4289_75971,95,4289_6675,Balbriggan,103953000,0,4289_7778022_103102,4289_81 -4289_75971,96,4289_6681,Balbriggan,104065676,0,4289_7778022_103108,4289_84 -4289_75971,2,4289_6686,Skerries,103613066,0,4289_7778022_103104,4289_82 -4289_75971,92,4289_6687,Skerries,103623066,0,4289_7778022_103104,4289_82 -4289_75971,93,4289_6688,Skerries,103733066,0,4289_7778022_103104,4289_82 -4289_75971,94,4289_6689,Skerries,103843066,0,4289_7778022_103104,4289_82 -4289_75971,95,4289_6690,Skerries,103953066,0,4289_7778022_103104,4289_82 -4289_75971,96,4289_6696,Skerries,104065734,0,4289_7778022_103103,4289_83 -4289_75971,2,4289_6701,Skerries,103613086,0,4289_7778022_103106,4289_82 -4289_75971,92,4289_6702,Skerries,103623086,0,4289_7778022_103106,4289_82 -4289_75971,93,4289_6703,Skerries,103733086,0,4289_7778022_103106,4289_82 -4289_75971,94,4289_6704,Skerries,103843086,0,4289_7778022_103106,4289_82 -4289_75971,95,4289_6705,Skerries,103953086,0,4289_7778022_103106,4289_82 -4289_75971,96,4289_6711,Skerries,104065754,0,4289_7778022_103106,4289_83 -4289_75971,92,4289_6713,Dublin Airport,103621001,1,4289_7778022_103101,4289_87 -4289_75971,93,4289_6714,Dublin Airport,103731001,1,4289_7778022_103101,4289_87 -4289_75971,94,4289_6715,Dublin Airport,103841001,1,4289_7778022_103101,4289_87 -4289_75971,95,4289_6716,Dublin Airport,103951001,1,4289_7778022_103101,4289_87 -4289_75971,92,4289_6723,Dublin Airport,103621069,1,4289_7778022_103502,4289_87 -4289_75971,93,4289_6724,Dublin Airport,103731069,1,4289_7778022_103502,4289_87 -4289_75971,94,4289_6725,Dublin Airport,103841069,1,4289_7778022_103502,4289_87 -4289_75971,95,4289_6726,Dublin Airport,103951069,1,4289_7778022_103502,4289_87 -4289_75960,92,4289_673,Dublin Airport,103621661,1,4289_7778022_103501,4289_3 -4289_75971,96,4289_6732,Dublin Airport,104064057,1,4289_7778022_103103,4289_87 -4289_75971,92,4289_6734,Carlton Court,103621165,1,4289_7778022_103103,4289_88 -4289_75971,93,4289_6735,Carlton Court,103731165,1,4289_7778022_103103,4289_88 -4289_75971,94,4289_6736,Carlton Court,103841165,1,4289_7778022_103103,4289_88 -4289_75971,95,4289_6737,Carlton Court,103951165,1,4289_7778022_103103,4289_88 -4289_75960,93,4289_674,Dublin Airport,103731661,1,4289_7778022_103501,4289_3 -4289_75971,96,4289_6743,Carlton Court,104064115,1,4289_7778022_103105,4289_88 -4289_75971,92,4289_6745,Dublin Airport,103621239,1,4289_7778022_103109,4289_87 -4289_75971,93,4289_6746,Dublin Airport,103731239,1,4289_7778022_103109,4289_87 -4289_75971,94,4289_6747,Dublin Airport,103841239,1,4289_7778022_103109,4289_87 -4289_75971,95,4289_6748,Dublin Airport,103951239,1,4289_7778022_103109,4289_87 -4289_75960,94,4289_675,Dublin Airport,103841661,1,4289_7778022_103501,4289_3 -4289_75971,96,4289_6754,Dublin Airport,104064175,1,4289_7778022_103106,4289_87 -4289_75971,92,4289_6756,Carlton Court,103621369,1,4289_7778022_103101,4289_88 -4289_75971,93,4289_6757,Carlton Court,103731369,1,4289_7778022_103101,4289_88 -4289_75971,94,4289_6758,Carlton Court,103841369,1,4289_7778022_103101,4289_88 -4289_75971,95,4289_6759,Carlton Court,103951369,1,4289_7778022_103101,4289_88 -4289_75960,95,4289_676,Dublin Airport,103951661,1,4289_7778022_103501,4289_3 -4289_75971,96,4289_6765,Carlton Court,104064249,1,4289_7778022_103103,4289_88 -4289_75971,92,4289_6771,Dublin Airport,103621453,1,4289_7778022_103104,4289_87 -4289_75971,93,4289_6772,Dublin Airport,103731453,1,4289_7778022_103104,4289_87 -4289_75971,94,4289_6773,Dublin Airport,103841453,1,4289_7778022_103104,4289_87 -4289_75971,95,4289_6774,Dublin Airport,103951453,1,4289_7778022_103104,4289_87 -4289_75971,96,4289_6780,Dublin Airport,104064307,1,4289_7778022_103105,4289_90 -4289_75971,92,4289_6786,Carlton Court,103621551,1,4289_7778022_103106,4289_88 -4289_75971,93,4289_6787,Carlton Court,103731551,1,4289_7778022_103106,4289_88 -4289_75971,94,4289_6788,Carlton Court,103841551,1,4289_7778022_103106,4289_88 -4289_75971,95,4289_6789,Carlton Court,103951551,1,4289_7778022_103106,4289_88 -4289_75971,96,4289_6795,Carlton Court,104064401,1,4289_7778022_103106,4289_91 -4289_75960,92,4289_68,Sutton Station,103621394,0,4289_7778022_103107,4289_1 -4289_75971,92,4289_6801,Dublin Airport,103621619,1,4289_7778022_103103,4289_87 -4289_75971,93,4289_6802,Dublin Airport,103731619,1,4289_7778022_103103,4289_87 -4289_75971,94,4289_6803,Dublin Airport,103841619,1,4289_7778022_103103,4289_87 -4289_75971,95,4289_6804,Dublin Airport,103951619,1,4289_7778022_103103,4289_87 -4289_75971,96,4289_6810,Dublin Airport,104064467,1,4289_7778022_103108,4289_90 -4289_75971,92,4289_6816,Carlton Court,103621723,1,4289_7778022_103101,4289_88 -4289_75971,93,4289_6817,Carlton Court,103731723,1,4289_7778022_103101,4289_88 -4289_75971,94,4289_6818,Carlton Court,103841723,1,4289_7778022_103101,4289_88 -4289_75971,95,4289_6819,Carlton Court,103951723,1,4289_7778022_103101,4289_88 -4289_75960,96,4289_682,Dublin Airport,104064507,1,4289_7778022_103101,4289_4 -4289_75971,96,4289_6825,Carlton Court,104064565,1,4289_7778022_103502,4289_91 -4289_75971,92,4289_6831,Dublin Airport,103621793,1,4289_7778022_103503,4289_87 -4289_75971,93,4289_6832,Dublin Airport,103731793,1,4289_7778022_103503,4289_87 -4289_75971,94,4289_6833,Dublin Airport,103841793,1,4289_7778022_103503,4289_87 -4289_75971,95,4289_6834,Dublin Airport,103951793,1,4289_7778022_103503,4289_87 -4289_75971,96,4289_6840,Dublin Airport,104064629,1,4289_7778022_103104,4289_90 -4289_75971,92,4289_6846,Carlton Court,103621893,1,4289_7778022_103107,4289_88 -4289_75971,93,4289_6847,Carlton Court,103731893,1,4289_7778022_103107,4289_88 -4289_75971,94,4289_6848,Carlton Court,103841893,1,4289_7778022_103107,4289_88 -4289_75971,95,4289_6849,Carlton Court,103951893,1,4289_7778022_103107,4289_88 -4289_75971,96,4289_6855,Carlton Court,104064723,1,4289_7778022_103501,4289_91 -4289_75971,92,4289_6861,Dublin Airport,103621971,1,4289_7778022_103501,4289_87 -4289_75971,93,4289_6862,Dublin Airport,103731971,1,4289_7778022_103501,4289_87 -4289_75971,94,4289_6863,Dublin Airport,103841971,1,4289_7778022_103501,4289_87 -4289_75971,95,4289_6864,Dublin Airport,103951971,1,4289_7778022_103501,4289_87 -4289_75971,96,4289_6870,Dublin Airport,104064795,1,4289_7778022_103101,4289_90 -4289_75971,92,4289_6876,Carlton Court,103622057,1,4289_7778022_103105,4289_88 -4289_75971,93,4289_6877,Carlton Court,103732057,1,4289_7778022_103105,4289_88 -4289_75971,94,4289_6878,Carlton Court,103842057,1,4289_7778022_103105,4289_88 -4289_75971,95,4289_6879,Carlton Court,103952057,1,4289_7778022_103105,4289_88 -4289_75960,92,4289_688,Dublin Airport,103621719,1,4289_7778022_103502,4289_3 -4289_75971,96,4289_6885,Carlton Court,104064885,1,4289_7778022_103502,4289_88 -4289_75960,93,4289_689,Dublin Airport,103731719,1,4289_7778022_103502,4289_3 -4289_75971,92,4289_6891,Dublin Airport,103622141,1,4289_7778022_103102,4289_87 -4289_75971,93,4289_6892,Dublin Airport,103732141,1,4289_7778022_103102,4289_87 -4289_75971,94,4289_6893,Dublin Airport,103842141,1,4289_7778022_103102,4289_87 -4289_75971,95,4289_6894,Dublin Airport,103952141,1,4289_7778022_103102,4289_87 -4289_75960,93,4289_69,Sutton Station,103731394,0,4289_7778022_103107,4289_1 -4289_75960,94,4289_690,Dublin Airport,103841719,1,4289_7778022_103502,4289_3 -4289_75971,96,4289_6900,Dublin Airport,104064955,1,4289_7778022_103503,4289_87 -4289_75971,93,4289_6905,Station Road,103732179,1,4289_7778022_109309,4289_89 -4289_75971,94,4289_6906,Station Road,103842181,1,4289_7778022_109402,4289_89 -4289_75971,95,4289_6907,Station Road,103952183,1,4289_7778022_109504,4289_89 -4289_75971,92,4289_6909,Station Road,103622237,1,4289_7778022_109107,4289_89 -4289_75960,95,4289_691,Dublin Airport,103951719,1,4289_7778022_103502,4289_3 -4289_75971,96,4289_6910,Carlton Court,104065043,1,4289_7778022_103501,4289_88 -4289_75971,92,4289_6916,Carlton Court,103622293,1,4289_7778022_103107,4289_88 -4289_75971,93,4289_6917,Carlton Court,103732293,1,4289_7778022_103107,4289_88 -4289_75971,94,4289_6918,Carlton Court,103842293,1,4289_7778022_103107,4289_88 -4289_75971,95,4289_6919,Carlton Court,103952293,1,4289_7778022_103107,4289_88 -4289_75971,96,4289_6925,Dublin Airport,104065113,1,4289_7778022_103103,4289_87 -4289_75971,92,4289_6931,Dublin Airport,103622381,1,4289_7778022_103501,4289_87 -4289_75971,93,4289_6932,Dublin Airport,103732381,1,4289_7778022_103501,4289_87 -4289_75971,94,4289_6933,Dublin Airport,103842381,1,4289_7778022_103501,4289_87 -4289_75971,95,4289_6934,Dublin Airport,103952381,1,4289_7778022_103501,4289_87 -4289_75971,92,4289_6941,Carlton Court,103622473,1,4289_7778022_103105,4289_88 -4289_75971,93,4289_6942,Carlton Court,103732473,1,4289_7778022_103105,4289_88 -4289_75971,94,4289_6943,Carlton Court,103842473,1,4289_7778022_103105,4289_88 -4289_75971,95,4289_6944,Carlton Court,103952473,1,4289_7778022_103105,4289_88 -4289_75971,96,4289_6950,Carlton Court,104065201,1,4289_7778022_103105,4289_91 -4289_75971,96,4289_6955,Dublin Airport,104065271,1,4289_7778022_103106,4289_87 -4289_75971,92,4289_6957,Dublin Airport,103622553,1,4289_7778022_103503,4289_87 -4289_75971,93,4289_6958,Dublin Airport,103732553,1,4289_7778022_103503,4289_87 -4289_75971,94,4289_6959,Dublin Airport,103842553,1,4289_7778022_103503,4289_87 -4289_75971,95,4289_6960,Dublin Airport,103952553,1,4289_7778022_103503,4289_87 -4289_75960,96,4289_697,Dublin Airport,104064563,1,4289_7778022_103103,4289_4 -4289_75971,92,4289_6971,Carlton Court,103622645,1,4289_7778022_103107,4289_88 -4289_75971,93,4289_6972,Carlton Court,103732645,1,4289_7778022_103107,4289_88 -4289_75971,94,4289_6973,Carlton Court,103842645,1,4289_7778022_103107,4289_88 -4289_75971,95,4289_6974,Carlton Court,103952645,1,4289_7778022_103107,4289_88 -4289_75971,96,4289_6980,Carlton Court,104065349,1,4289_7778022_103108,4289_91 -4289_75971,92,4289_6986,Dublin Airport,103622721,1,4289_7778022_103106,4289_87 -4289_75971,93,4289_6987,Dublin Airport,103732721,1,4289_7778022_103106,4289_87 -4289_75971,94,4289_6988,Dublin Airport,103842721,1,4289_7778022_103106,4289_87 -4289_75971,95,4289_6989,Dublin Airport,103952721,1,4289_7778022_103106,4289_87 -4289_75971,96,4289_6995,Dublin Airport,104065423,1,4289_7778022_103103,4289_90 -4289_75960,94,4289_70,Sutton Station,103841394,0,4289_7778022_103107,4289_1 -4289_75971,96,4289_7000,Carlton Court,104065495,1,4289_7778022_103106,4289_88 -4289_75971,92,4289_7002,Carlton Court,103622799,1,4289_7778022_103102,4289_88 -4289_75971,93,4289_7003,Carlton Court,103732799,1,4289_7778022_103102,4289_88 -4289_75971,94,4289_7004,Carlton Court,103842799,1,4289_7778022_103102,4289_88 -4289_75971,95,4289_7005,Carlton Court,103952799,1,4289_7778022_103102,4289_88 -4289_75971,92,4289_7016,Dublin Airport,103622867,1,4289_7778022_103108,4289_87 -4289_75971,93,4289_7017,Dublin Airport,103732867,1,4289_7778022_103108,4289_87 -4289_75971,94,4289_7018,Dublin Airport,103842867,1,4289_7778022_103108,4289_87 -4289_75971,95,4289_7019,Dublin Airport,103952867,1,4289_7778022_103108,4289_87 -4289_75971,96,4289_7025,Dublin Airport,104065555,1,4289_7778022_103108,4289_90 -4289_75960,92,4289_703,Dublin Airport,103621771,1,4289_7778022_103104,4289_3 -4289_75971,92,4289_7031,Carlton Court,103622947,1,4289_7778022_103106,4289_88 -4289_75971,93,4289_7032,Carlton Court,103732947,1,4289_7778022_103106,4289_88 -4289_75971,94,4289_7033,Carlton Court,103842947,1,4289_7778022_103106,4289_88 -4289_75971,95,4289_7034,Carlton Court,103952947,1,4289_7778022_103106,4289_88 -4289_75960,93,4289_704,Dublin Airport,103731771,1,4289_7778022_103104,4289_3 -4289_75971,96,4289_7040,Carlton Court,104065627,1,4289_7778022_103103,4289_91 -4289_75971,92,4289_7046,Dublin Airport,103623019,1,4289_7778022_103105,4289_87 -4289_75971,93,4289_7047,Dublin Airport,103733019,1,4289_7778022_103105,4289_87 -4289_75971,94,4289_7048,Dublin Airport,103843019,1,4289_7778022_103105,4289_87 -4289_75971,95,4289_7049,Dublin Airport,103953019,1,4289_7778022_103105,4289_87 -4289_75960,94,4289_705,Dublin Airport,103841771,1,4289_7778022_103104,4289_3 -4289_75971,96,4289_7055,Dublin Airport,104065691,1,4289_7778022_103106,4289_90 -4289_75960,95,4289_706,Dublin Airport,103951771,1,4289_7778022_103104,4289_3 -4289_75971,2,4289_7060,Carlton Court,103613073,1,4289_7778022_103102,4289_88 -4289_75971,92,4289_7061,Carlton Court,103623073,1,4289_7778022_103102,4289_88 -4289_75971,93,4289_7062,Carlton Court,103733073,1,4289_7778022_103102,4289_88 -4289_75971,94,4289_7063,Carlton Court,103843073,1,4289_7778022_103102,4289_88 -4289_75971,95,4289_7064,Carlton Court,103953073,1,4289_7778022_103102,4289_88 -4289_75971,96,4289_7070,Carlton Court,104065745,1,4289_7778022_103108,4289_91 -4289_75972,92,4289_7076,Portrane,103621080,0,4289_7778022_103106,4289_94 -4289_75972,93,4289_7077,Portrane,103731080,0,4289_7778022_103106,4289_94 -4289_75972,94,4289_7078,Portrane,103841080,0,4289_7778022_103106,4289_94 -4289_75972,95,4289_7079,Portrane,103951080,0,4289_7778022_103106,4289_94 -4289_75972,96,4289_7085,Portrane,104064078,0,4289_7778022_103102,4289_94 -4289_75972,92,4289_7087,Portrane,103621146,0,4289_7778022_103102,4289_94 -4289_75972,93,4289_7088,Portrane,103731146,0,4289_7778022_103102,4289_94 -4289_75972,94,4289_7089,Portrane,103841146,0,4289_7778022_103102,4289_94 -4289_75972,95,4289_7090,Portrane,103951146,0,4289_7778022_103102,4289_94 -4289_75972,92,4289_7097,Portrane,103621182,0,4289_7778022_103105,4289_94 -4289_75972,93,4289_7098,Portrane,103731182,0,4289_7778022_103105,4289_94 -4289_75972,94,4289_7099,Portrane,103841182,0,4289_7778022_103105,4289_94 -4289_75960,95,4289_71,Sutton Station,103951394,0,4289_7778022_103107,4289_1 -4289_75972,95,4289_7100,Portrane,103951182,0,4289_7778022_103105,4289_94 -4289_75972,92,4289_7107,Portrane,103621238,0,4289_7778022_103106,4289_94 -4289_75972,93,4289_7108,Portrane,103731238,0,4289_7778022_103106,4289_94 -4289_75972,94,4289_7109,Portrane,103841238,0,4289_7778022_103106,4289_94 -4289_75972,95,4289_7110,Portrane,103951238,0,4289_7778022_103106,4289_94 -4289_75972,96,4289_7116,Portrane,104064170,0,4289_7778022_103102,4289_94 -4289_75972,92,4289_7118,Portrane,103621368,0,4289_7778022_103103,4289_94 -4289_75972,93,4289_7119,Portrane,103731368,0,4289_7778022_103103,4289_94 -4289_75960,96,4289_712,Dublin Airport,104064613,1,4289_7778022_103105,4289_4 -4289_75972,94,4289_7120,Portrane,103841368,0,4289_7778022_103103,4289_94 -4289_75972,95,4289_7121,Portrane,103951368,0,4289_7778022_103103,4289_94 -4289_75972,92,4289_7132,Seaview,103621424,0,4289_7778022_103105,4289_95 -4289_75972,93,4289_7133,Seaview,103731424,0,4289_7778022_103105,4289_95 -4289_75972,94,4289_7134,Seaview,103841424,0,4289_7778022_103105,4289_95 -4289_75972,95,4289_7135,Seaview,103951424,0,4289_7778022_103105,4289_95 -4289_75972,96,4289_7141,Portrane,104064260,0,4289_7778022_103102,4289_94 -4289_75972,92,4289_7143,Portrane,103621492,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7144,Portrane,103731492,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7145,Portrane,103841492,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7146,Portrane,103951492,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7152,Portrane,104064322,0,4289_7778022_103107,4289_96 -4289_75972,92,4289_7158,Seaview,103621550,0,4289_7778022_103105,4289_95 -4289_75972,93,4289_7159,Seaview,103731550,0,4289_7778022_103105,4289_95 -4289_75972,94,4289_7160,Seaview,103841550,0,4289_7778022_103105,4289_95 -4289_75972,95,4289_7161,Seaview,103951550,0,4289_7778022_103105,4289_95 -4289_75972,96,4289_7167,Seaview,104064376,0,4289_7778022_103102,4289_95 -4289_75972,92,4289_7173,Portrane,103621602,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7174,Portrane,103731602,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7175,Portrane,103841602,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7176,Portrane,103951602,0,4289_7778022_103109,4289_94 -4289_75960,92,4289_718,Dublin Airport,103621831,1,4289_7778022_103102,4289_3 -4289_75972,96,4289_7182,Portrane,104064424,0,4289_7778022_103107,4289_94 -4289_75972,92,4289_7188,Seaview,103621660,0,4289_7778022_103105,4289_95 -4289_75972,93,4289_7189,Seaview,103731660,0,4289_7778022_103105,4289_95 -4289_75960,93,4289_719,Dublin Airport,103731831,1,4289_7778022_103102,4289_3 -4289_75972,94,4289_7190,Seaview,103841660,0,4289_7778022_103105,4289_95 -4289_75972,95,4289_7191,Seaview,103951660,0,4289_7778022_103105,4289_95 -4289_75972,96,4289_7197,Seaview,104064478,0,4289_7778022_103102,4289_95 -4289_75972,92,4289_7199,Portrane,103621714,0,4289_7778022_103109,4289_94 -4289_75960,94,4289_720,Dublin Airport,103841831,1,4289_7778022_103102,4289_3 -4289_75972,93,4289_7200,Portrane,103731714,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7201,Portrane,103841714,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7202,Portrane,103951714,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7208,Portrane,104064532,0,4289_7778022_103107,4289_94 -4289_75960,95,4289_721,Dublin Airport,103951831,1,4289_7778022_103102,4289_3 -4289_75972,92,4289_7214,Seaview,103621770,0,4289_7778022_103105,4289_95 -4289_75972,93,4289_7215,Seaview,103731770,0,4289_7778022_103105,4289_95 -4289_75972,94,4289_7216,Seaview,103841770,0,4289_7778022_103105,4289_95 -4289_75972,95,4289_7217,Seaview,103951770,0,4289_7778022_103105,4289_95 -4289_75972,96,4289_7223,Seaview,104064584,0,4289_7778022_103102,4289_95 -4289_75972,92,4289_7229,Portrane,103621832,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7230,Portrane,103731832,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7231,Portrane,103841832,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7232,Portrane,103951832,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7238,Portrane,104064640,0,4289_7778022_103107,4289_94 -4289_75972,92,4289_7244,Seaview,103621884,0,4289_7778022_103103,4289_95 -4289_75972,93,4289_7245,Seaview,103731884,0,4289_7778022_103103,4289_95 -4289_75972,94,4289_7246,Seaview,103841884,0,4289_7778022_103103,4289_95 -4289_75972,95,4289_7247,Seaview,103951884,0,4289_7778022_103103,4289_95 -4289_75972,96,4289_7253,Seaview,104064692,0,4289_7778022_103102,4289_95 -4289_75972,92,4289_7259,Portrane,103621940,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7260,Portrane,103731940,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7261,Portrane,103841940,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7262,Portrane,103951940,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7268,Portrane,104064746,0,4289_7778022_103107,4289_94 -4289_75960,96,4289_727,Dublin Airport,104064671,1,4289_7778022_103503,4289_4 -4289_75972,92,4289_7274,Seaview,103622000,0,4289_7778022_103103,4289_95 -4289_75972,93,4289_7275,Seaview,103732000,0,4289_7778022_103103,4289_95 -4289_75972,94,4289_7276,Seaview,103842000,0,4289_7778022_103103,4289_95 -4289_75972,95,4289_7277,Seaview,103952000,0,4289_7778022_103103,4289_95 -4289_75972,96,4289_7283,Seaview,104064800,0,4289_7778022_103102,4289_95 -4289_75972,92,4289_7289,Portrane,103622056,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7290,Portrane,103732056,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7291,Portrane,103842056,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7292,Portrane,103952056,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7298,Portrane,104064852,0,4289_7778022_103107,4289_94 -4289_75972,96,4289_7303,Seaview,104064906,0,4289_7778022_103102,4289_95 -4289_75972,92,4289_7309,Seaview,103622164,0,4289_7778022_103103,4289_95 -4289_75972,93,4289_7310,Seaview,103732164,0,4289_7778022_103103,4289_95 -4289_75972,94,4289_7311,Seaview,103842164,0,4289_7778022_103103,4289_95 -4289_75972,95,4289_7312,Seaview,103952164,0,4289_7778022_103103,4289_95 -4289_75972,96,4289_7318,Portrane,104064962,0,4289_7778022_103107,4289_94 -4289_75972,92,4289_7324,Portrane,103622214,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7325,Portrane,103732214,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7326,Portrane,103842214,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7327,Portrane,103952214,0,4289_7778022_103109,4289_94 -4289_75960,92,4289_733,Dublin Airport,103621889,1,4289_7778022_103106,4289_3 -4289_75972,96,4289_7333,Seaview,104065020,0,4289_7778022_103102,4289_95 -4289_75972,92,4289_7339,Seaview,103622298,0,4289_7778022_103103,4289_95 -4289_75960,93,4289_734,Dublin Airport,103731889,1,4289_7778022_103106,4289_3 -4289_75972,93,4289_7340,Seaview,103732298,0,4289_7778022_103103,4289_95 -4289_75972,94,4289_7341,Seaview,103842298,0,4289_7778022_103103,4289_95 -4289_75972,95,4289_7342,Seaview,103952298,0,4289_7778022_103103,4289_95 -4289_75972,96,4289_7348,Portrane,104065078,0,4289_7778022_103107,4289_94 -4289_75960,94,4289_735,Dublin Airport,103841889,1,4289_7778022_103106,4289_3 -4289_75972,92,4289_7354,Portrane,103622362,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7355,Portrane,103732362,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7356,Portrane,103842362,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7357,Portrane,103952362,0,4289_7778022_103109,4289_94 -4289_75960,95,4289_736,Dublin Airport,103951889,1,4289_7778022_103106,4289_3 -4289_75972,96,4289_7363,Seaview,104065148,0,4289_7778022_103102,4289_95 -4289_75972,92,4289_7369,Seaview,103622430,0,4289_7778022_103103,4289_95 -4289_75972,93,4289_7370,Seaview,103732430,0,4289_7778022_103103,4289_95 -4289_75972,94,4289_7371,Seaview,103842430,0,4289_7778022_103103,4289_95 -4289_75972,95,4289_7372,Seaview,103952430,0,4289_7778022_103103,4289_95 -4289_75972,96,4289_7378,Portrane,104065208,0,4289_7778022_103107,4289_94 -4289_75972,92,4289_7380,Portrane,103622506,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7381,Portrane,103732506,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7382,Portrane,103842506,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7383,Portrane,103952506,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7393,Seaview,104065270,0,4289_7778022_103102,4289_95 -4289_75972,92,4289_7395,Seaview,103622572,0,4289_7778022_103103,4289_95 -4289_75972,93,4289_7396,Seaview,103732572,0,4289_7778022_103103,4289_95 -4289_75972,94,4289_7397,Seaview,103842572,0,4289_7778022_103103,4289_95 -4289_75972,95,4289_7398,Seaview,103952572,0,4289_7778022_103103,4289_95 -4289_75972,92,4289_7405,Portrane,103622650,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7406,Portrane,103732650,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7407,Portrane,103842650,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7408,Portrane,103952650,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7414,Portrane,104065362,0,4289_7778022_103107,4289_96 -4289_75960,96,4289_742,Dublin Airport,104064721,1,4289_7778022_103106,4289_4 -4289_75972,92,4289_7420,Portrane,103622758,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7421,Portrane,103732758,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7422,Portrane,103842758,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7423,Portrane,103952758,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7429,Portrane,104065458,0,4289_7778022_103107,4289_94 -4289_75972,92,4289_7435,Portrane,103622862,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7436,Portrane,103732862,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7437,Portrane,103842862,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7438,Portrane,103952862,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7444,Portrane,104065548,0,4289_7778022_103107,4289_94 -4289_75972,92,4289_7450,Portrane,103622958,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7451,Portrane,103732958,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7452,Portrane,103842958,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7453,Portrane,103952958,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7459,Portrane,104065636,0,4289_7778022_103107,4289_94 -4289_75972,92,4289_7465,Portrane,103623048,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7466,Portrane,103733048,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7467,Portrane,103843048,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7468,Portrane,103953048,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7474,Portrane,104065716,0,4289_7778022_103107,4289_96 -4289_75972,2,4289_7479,Portrane,103613084,0,4289_7778022_103109,4289_94 -4289_75960,92,4289_748,Dublin Airport,103621949,1,4289_7778022_103108,4289_3 -4289_75972,92,4289_7480,Portrane,103623084,0,4289_7778022_103109,4289_94 -4289_75972,93,4289_7481,Portrane,103733084,0,4289_7778022_103109,4289_94 -4289_75972,94,4289_7482,Portrane,103843084,0,4289_7778022_103109,4289_94 -4289_75972,95,4289_7483,Portrane,103953084,0,4289_7778022_103109,4289_94 -4289_75972,96,4289_7489,Portrane,104065752,0,4289_7778022_103107,4289_96 -4289_75960,93,4289_749,Dublin Airport,103731949,1,4289_7778022_103108,4289_3 -4289_75972,92,4289_7495,Swords,103621047,1,4289_7778022_103102,4289_97 -4289_75972,93,4289_7496,Swords,103731047,1,4289_7778022_103102,4289_97 -4289_75972,94,4289_7497,Swords,103841047,1,4289_7778022_103102,4289_97 -4289_75972,95,4289_7498,Swords,103951047,1,4289_7778022_103102,4289_97 -4289_75960,94,4289_750,Dublin Airport,103841949,1,4289_7778022_103108,4289_3 -4289_75972,96,4289_7504,Swords,104064039,1,4289_7778022_103102,4289_97 -4289_75972,92,4289_7506,Swords,103621103,1,4289_7778022_103105,4289_97 -4289_75972,93,4289_7507,Swords,103731103,1,4289_7778022_103105,4289_97 -4289_75972,94,4289_7508,Swords,103841103,1,4289_7778022_103105,4289_97 -4289_75972,95,4289_7509,Swords,103951103,1,4289_7778022_103105,4289_97 -4289_75960,95,4289_751,Dublin Airport,103951949,1,4289_7778022_103108,4289_3 -4289_75972,92,4289_7516,Swords,103621133,1,4289_7778022_103106,4289_97 -4289_75972,93,4289_7517,Swords,103731133,1,4289_7778022_103106,4289_97 -4289_75972,94,4289_7518,Swords,103841133,1,4289_7778022_103106,4289_97 -4289_75972,95,4289_7519,Swords,103951133,1,4289_7778022_103106,4289_97 -4289_75972,96,4289_7525,Swords,104064113,1,4289_7778022_103102,4289_97 -4289_75972,92,4289_7527,Swords,103621191,1,4289_7778022_103102,4289_97 -4289_75972,93,4289_7528,Swords,103731191,1,4289_7778022_103102,4289_97 -4289_75972,94,4289_7529,Swords,103841191,1,4289_7778022_103102,4289_97 -4289_75972,95,4289_7530,Swords,103951191,1,4289_7778022_103102,4289_97 -4289_75972,92,4289_7537,Swords,103621249,1,4289_7778022_103105,4289_97 -4289_75972,93,4289_7538,Swords,103731249,1,4289_7778022_103105,4289_97 -4289_75972,94,4289_7539,Swords,103841249,1,4289_7778022_103105,4289_97 -4289_75972,95,4289_7540,Swords,103951249,1,4289_7778022_103105,4289_97 -4289_75972,92,4289_7551,Swords,103621307,1,4289_7778022_103106,4289_97 -4289_75972,93,4289_7552,Swords,103731307,1,4289_7778022_103106,4289_97 -4289_75972,94,4289_7553,Swords,103841307,1,4289_7778022_103106,4289_97 -4289_75972,95,4289_7554,Swords,103951307,1,4289_7778022_103106,4289_97 -4289_75972,96,4289_7560,Swords,104064201,1,4289_7778022_103102,4289_97 -4289_75972,92,4289_7562,Swords,103621391,1,4289_7778022_103103,4289_97 -4289_75972,93,4289_7563,Swords,103731391,1,4289_7778022_103103,4289_97 -4289_75972,94,4289_7564,Swords,103841391,1,4289_7778022_103103,4289_97 -4289_75972,95,4289_7565,Swords,103951391,1,4289_7778022_103103,4289_97 -4289_75960,96,4289_757,Dublin Airport,104064775,1,4289_7778022_103108,4289_4 -4289_75972,96,4289_7575,Swords,104064293,1,4289_7778022_103102,4289_97 -4289_75972,92,4289_7577,Swords,103621435,1,4289_7778022_103105,4289_98 -4289_75972,93,4289_7578,Swords,103731435,1,4289_7778022_103105,4289_98 -4289_75972,94,4289_7579,Swords,103841435,1,4289_7778022_103105,4289_98 -4289_75972,95,4289_7580,Swords,103951435,1,4289_7778022_103105,4289_98 -4289_75972,96,4289_7586,Swords,104064355,1,4289_7778022_103107,4289_97 -4289_75972,92,4289_7588,Swords,103621501,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7589,Swords,103731501,1,4289_7778022_103109,4289_99 -4289_75972,94,4289_7590,Swords,103841501,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7591,Swords,103951501,1,4289_7778022_103109,4289_99 -4289_75972,92,4289_7602,Swords,103621559,1,4289_7778022_103105,4289_98 -4289_75972,93,4289_7603,Swords,103731559,1,4289_7778022_103105,4289_98 -4289_75972,94,4289_7604,Swords,103841559,1,4289_7778022_103105,4289_98 -4289_75972,95,4289_7605,Swords,103951559,1,4289_7778022_103105,4289_98 -4289_75972,96,4289_7611,Swords,104064409,1,4289_7778022_103102,4289_100 -4289_75972,92,4289_7617,Swords,103621613,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7618,Swords,103731613,1,4289_7778022_103109,4289_99 -4289_75972,94,4289_7619,Swords,103841613,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7620,Swords,103951613,1,4289_7778022_103109,4289_99 -4289_75972,96,4289_7626,Swords,104064461,1,4289_7778022_103107,4289_101 -4289_75960,92,4289_763,Dublin Airport,103622005,1,4289_7778022_103502,4289_3 -4289_75972,92,4289_7632,Swords,103621669,1,4289_7778022_103105,4289_98 -4289_75972,93,4289_7633,Swords,103731669,1,4289_7778022_103105,4289_98 -4289_75972,94,4289_7634,Swords,103841669,1,4289_7778022_103105,4289_98 -4289_75972,95,4289_7635,Swords,103951669,1,4289_7778022_103105,4289_98 -4289_75960,93,4289_764,Dublin Airport,103732005,1,4289_7778022_103502,4289_3 -4289_75972,96,4289_7641,Swords,104064515,1,4289_7778022_103102,4289_100 -4289_75972,92,4289_7643,Swords,103621727,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7644,Swords,103731727,1,4289_7778022_103109,4289_99 -4289_75972,94,4289_7645,Swords,103841727,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7646,Swords,103951727,1,4289_7778022_103109,4289_99 -4289_75960,94,4289_765,Dublin Airport,103842005,1,4289_7778022_103502,4289_3 -4289_75972,96,4289_7652,Swords,104064569,1,4289_7778022_103107,4289_101 -4289_75972,92,4289_7658,Swords,103621781,1,4289_7778022_103105,4289_98 -4289_75972,93,4289_7659,Swords,103731781,1,4289_7778022_103105,4289_98 -4289_75960,95,4289_766,Dublin Airport,103952005,1,4289_7778022_103502,4289_3 -4289_75972,94,4289_7660,Swords,103841781,1,4289_7778022_103105,4289_98 -4289_75972,95,4289_7661,Swords,103951781,1,4289_7778022_103105,4289_98 -4289_75972,96,4289_7667,Swords,104064621,1,4289_7778022_103102,4289_100 -4289_75972,92,4289_7673,Swords,103621839,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7674,Swords,103731839,1,4289_7778022_103109,4289_99 -4289_75972,94,4289_7675,Swords,103841839,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7676,Swords,103951839,1,4289_7778022_103109,4289_99 -4289_75972,96,4289_7682,Swords,104064675,1,4289_7778022_103107,4289_101 -4289_75972,92,4289_7688,Swords,103621903,1,4289_7778022_103103,4289_98 -4289_75972,93,4289_7689,Swords,103731903,1,4289_7778022_103103,4289_98 -4289_75972,94,4289_7690,Swords,103841903,1,4289_7778022_103103,4289_98 -4289_75972,95,4289_7691,Swords,103951903,1,4289_7778022_103103,4289_98 -4289_75972,96,4289_7697,Swords,104064729,1,4289_7778022_103102,4289_100 -4289_75960,96,4289_77,Sutton Station,104064256,0,4289_7778022_103104,4289_1 -4289_75972,92,4289_7703,Swords,103621957,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7704,Swords,103731957,1,4289_7778022_103109,4289_99 -4289_75972,94,4289_7705,Swords,103841957,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7706,Swords,103951957,1,4289_7778022_103109,4289_99 -4289_75972,96,4289_7712,Swords,104064781,1,4289_7778022_103107,4289_101 -4289_75972,92,4289_7718,Swords,103622013,1,4289_7778022_103103,4289_98 -4289_75972,93,4289_7719,Swords,103732013,1,4289_7778022_103103,4289_98 -4289_75960,96,4289_772,Dublin Airport,104064829,1,4289_7778022_103103,4289_4 -4289_75972,94,4289_7720,Swords,103842013,1,4289_7778022_103103,4289_98 -4289_75972,95,4289_7721,Swords,103952013,1,4289_7778022_103103,4289_98 -4289_75972,96,4289_7727,Swords,104064835,1,4289_7778022_103102,4289_100 -4289_75972,92,4289_7733,Swords,103622073,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7734,Swords,103732073,1,4289_7778022_103109,4289_99 -4289_75972,94,4289_7735,Swords,103842073,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7736,Swords,103952073,1,4289_7778022_103109,4289_99 -4289_75972,96,4289_7742,Swords,104064889,1,4289_7778022_103107,4289_99 -4289_75972,96,4289_7747,Swords,104064941,1,4289_7778022_103102,4289_98 -4289_75972,92,4289_7753,Swords,103622159,1,4289_7778022_103103,4289_98 -4289_75972,93,4289_7754,Swords,103732159,1,4289_7778022_103103,4289_98 -4289_75972,94,4289_7755,Swords,103842159,1,4289_7778022_103103,4289_98 -4289_75972,95,4289_7756,Swords,103952159,1,4289_7778022_103103,4289_98 -4289_75972,96,4289_7762,Swords,104065001,1,4289_7778022_103107,4289_99 -4289_75972,92,4289_7768,Swords,103622251,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7769,Swords,103732251,1,4289_7778022_103109,4289_99 -4289_75972,94,4289_7770,Swords,103842251,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7771,Swords,103952251,1,4289_7778022_103109,4289_99 -4289_75972,96,4289_7777,Swords,104065061,1,4289_7778022_103102,4289_98 -4289_75960,92,4289_778,Dublin Airport,103622059,1,4289_7778022_103101,4289_3 -4289_75972,92,4289_7783,Swords,103622341,1,4289_7778022_103103,4289_98 -4289_75972,93,4289_7784,Swords,103732341,1,4289_7778022_103103,4289_98 -4289_75972,94,4289_7785,Swords,103842341,1,4289_7778022_103103,4289_98 -4289_75972,95,4289_7786,Swords,103952341,1,4289_7778022_103103,4289_98 -4289_75960,93,4289_779,Dublin Airport,103732059,1,4289_7778022_103101,4289_3 -4289_75972,96,4289_7792,Swords,104065131,1,4289_7778022_103107,4289_99 -4289_75972,92,4289_7798,Swords,103622409,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7799,Swords,103732409,1,4289_7778022_103109,4289_99 -4289_75960,94,4289_780,Dublin Airport,103842059,1,4289_7778022_103101,4289_3 -4289_75972,94,4289_7800,Swords,103842409,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7801,Swords,103952409,1,4289_7778022_103109,4289_99 -4289_75972,96,4289_7807,Swords,104065189,1,4289_7778022_103102,4289_98 -4289_75960,95,4289_781,Dublin Airport,103952059,1,4289_7778022_103101,4289_3 -4289_75972,92,4289_7813,Swords,103622483,1,4289_7778022_103103,4289_98 -4289_75972,93,4289_7814,Swords,103732483,1,4289_7778022_103103,4289_98 -4289_75972,94,4289_7815,Swords,103842483,1,4289_7778022_103103,4289_98 -4289_75972,95,4289_7816,Swords,103952483,1,4289_7778022_103103,4289_98 -4289_75972,96,4289_7822,Swords,104065255,1,4289_7778022_103107,4289_99 -4289_75972,92,4289_7824,Swords,103622547,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7825,Swords,103732547,1,4289_7778022_103109,4289_99 -4289_75972,94,4289_7826,Swords,103842547,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7827,Swords,103952547,1,4289_7778022_103109,4289_99 -4289_75972,96,4289_7837,Swords,104065313,1,4289_7778022_103102,4289_98 -4289_75972,92,4289_7839,Swords,103622611,1,4289_7778022_103103,4289_98 -4289_75972,93,4289_7840,Swords,103732611,1,4289_7778022_103103,4289_98 -4289_75972,94,4289_7841,Swords,103842611,1,4289_7778022_103103,4289_98 -4289_75972,95,4289_7842,Swords,103952611,1,4289_7778022_103103,4289_98 -4289_75972,96,4289_7848,Swords,104065381,1,4289_7778022_103107,4289_97 -4289_75972,92,4289_7850,Swords,103622689,1,4289_7778022_103109,4289_97 -4289_75972,93,4289_7851,Swords,103732689,1,4289_7778022_103109,4289_97 -4289_75972,94,4289_7852,Swords,103842689,1,4289_7778022_103109,4289_97 -4289_75972,95,4289_7853,Swords,103952689,1,4289_7778022_103109,4289_97 -4289_75972,92,4289_7864,Swords,103622787,1,4289_7778022_103109,4289_97 -4289_75972,93,4289_7865,Swords,103732787,1,4289_7778022_103109,4289_97 -4289_75972,94,4289_7866,Swords,103842787,1,4289_7778022_103109,4289_97 -4289_75972,95,4289_7867,Swords,103952787,1,4289_7778022_103109,4289_97 -4289_75960,96,4289_787,Dublin Airport,104064883,1,4289_7778022_103105,4289_4 -4289_75972,96,4289_7873,Swords,104065485,1,4289_7778022_103107,4289_97 -4289_75972,92,4289_7879,Swords,103622889,1,4289_7778022_103109,4289_97 -4289_75972,93,4289_7880,Swords,103732889,1,4289_7778022_103109,4289_97 -4289_75972,94,4289_7881,Swords,103842889,1,4289_7778022_103109,4289_97 -4289_75972,95,4289_7882,Swords,103952889,1,4289_7778022_103109,4289_97 -4289_75972,96,4289_7888,Swords,104065577,1,4289_7778022_103107,4289_97 -4289_75972,92,4289_7894,Swords,103622987,1,4289_7778022_103109,4289_97 -4289_75972,93,4289_7895,Swords,103732987,1,4289_7778022_103109,4289_97 -4289_75972,94,4289_7896,Swords,103842987,1,4289_7778022_103109,4289_97 -4289_75972,95,4289_7897,Swords,103952987,1,4289_7778022_103109,4289_97 -4289_75972,96,4289_7903,Swords,104065665,1,4289_7778022_103107,4289_97 -4289_75972,92,4289_7909,Swords,103623061,1,4289_7778022_103109,4289_99 -4289_75972,93,4289_7910,Swords,103733061,1,4289_7778022_103109,4289_99 -4289_75972,94,4289_7911,Swords,103843061,1,4289_7778022_103109,4289_99 -4289_75972,95,4289_7912,Swords,103953061,1,4289_7778022_103109,4289_99 -4289_75972,96,4289_7918,Swords,104065733,1,4289_7778022_103107,4289_101 -4289_75973,92,4289_7924,Station Road,103622108,0,4289_7778022_109107,4289_102 -4289_75973,93,4289_7925,Station Road,103732110,0,4289_7778022_109305,4289_102 -4289_75973,94,4289_7926,Station Road,103842112,0,4289_7778022_109402,4289_102 -4289_75973,95,4289_7927,Station Road,103952114,0,4289_7778022_109504,4289_102 -4289_75973,92,4289_7929,Donabate NS,103621327,1,4289_7778022_109108,4289_103 -4289_75960,92,4289_793,Dublin Airport,103622127,1,4289_7778022_103104,4289_3 -4289_75973,93,4289_7930,Donabate NS,103731329,1,4289_7778022_109308,4289_103 -4289_75973,94,4289_7931,Donabate NS,103841331,1,4289_7778022_109408,4289_103 -4289_75973,95,4289_7932,Donabate NS,103951333,1,4289_7778022_109508,4289_103 -4289_75974,92,4289_7934,Dun Laoghaire,103621084,0,4289_7778022_100010,4289_104 -4289_75974,93,4289_7935,Dun Laoghaire,103731084,0,4289_7778022_100010,4289_104 -4289_75974,94,4289_7936,Dun Laoghaire,103841084,0,4289_7778022_100010,4289_104 -4289_75974,95,4289_7937,Dun Laoghaire,103951084,0,4289_7778022_100010,4289_104 -4289_75960,93,4289_794,Dublin Airport,103732127,1,4289_7778022_103104,4289_3 -4289_75974,96,4289_7943,Dun Laoghaire,104064052,0,4289_7778022_100010,4289_105 -4289_75974,92,4289_7945,Dun Laoghaire,103621116,0,4289_7778022_100030,4289_104 -4289_75974,93,4289_7946,Dun Laoghaire,103731116,0,4289_7778022_100030,4289_104 -4289_75974,94,4289_7947,Dun Laoghaire,103841116,0,4289_7778022_100030,4289_104 -4289_75974,95,4289_7948,Dun Laoghaire,103951116,0,4289_7778022_100030,4289_104 -4289_75960,94,4289_795,Dublin Airport,103842127,1,4289_7778022_103104,4289_3 -4289_75974,96,4289_7954,Dun Laoghaire,104064098,0,4289_7778022_100040,4289_105 -4289_75974,92,4289_7956,Dun Laoghaire,103621188,0,4289_7778022_100070,4289_104 -4289_75974,93,4289_7957,Dun Laoghaire,103731188,0,4289_7778022_100070,4289_104 -4289_75974,94,4289_7958,Dun Laoghaire,103841188,0,4289_7778022_100070,4289_104 -4289_75974,95,4289_7959,Dun Laoghaire,103951188,0,4289_7778022_100070,4289_104 -4289_75960,95,4289_796,Dublin Airport,103952127,1,4289_7778022_103104,4289_3 -4289_75974,92,4289_7966,Dun Laoghaire,103621230,0,4289_7778022_100020,4289_104 -4289_75974,93,4289_7967,Dun Laoghaire,103731230,0,4289_7778022_100020,4289_104 -4289_75974,94,4289_7968,Dun Laoghaire,103841230,0,4289_7778022_100020,4289_104 -4289_75974,95,4289_7969,Dun Laoghaire,103951230,0,4289_7778022_100020,4289_104 -4289_75974,96,4289_7975,Dun Laoghaire,104064138,0,4289_7778022_100020,4289_105 -4289_75974,92,4289_7977,Dun Laoghaire,103621286,0,4289_7778022_100040,4289_104 -4289_75974,93,4289_7978,Dun Laoghaire,103731286,0,4289_7778022_100040,4289_104 -4289_75974,94,4289_7979,Dun Laoghaire,103841286,0,4289_7778022_100040,4289_104 -4289_75974,95,4289_7980,Dun Laoghaire,103951286,0,4289_7778022_100040,4289_104 -4289_75974,96,4289_7986,Dun Laoghaire,104064186,0,4289_7778022_100050,4289_105 -4289_75974,92,4289_7988,Dun Laoghaire,103621338,0,4289_7778022_100050,4289_104 -4289_75974,93,4289_7989,Dun Laoghaire,103731338,0,4289_7778022_100050,4289_104 -4289_75974,94,4289_7990,Dun Laoghaire,103841338,0,4289_7778022_100050,4289_104 -4289_75974,95,4289_7991,Dun Laoghaire,103951338,0,4289_7778022_100050,4289_104 -4289_75974,92,4289_7998,Dun Laoghaire,103621386,0,4289_7778022_100080,4289_104 -4289_75974,93,4289_7999,Dun Laoghaire,103731386,0,4289_7778022_100080,4289_104 -4289_75974,94,4289_8000,Dun Laoghaire,103841386,0,4289_7778022_100080,4289_104 -4289_75974,95,4289_8001,Dun Laoghaire,103951386,0,4289_7778022_100080,4289_104 -4289_75974,96,4289_8007,Dun Laoghaire,104064228,0,4289_7778022_100010,4289_105 -4289_75974,92,4289_8013,Dun Laoghaire,103621438,0,4289_7778022_100010,4289_104 -4289_75974,93,4289_8014,Dun Laoghaire,103731438,0,4289_7778022_100010,4289_104 -4289_75974,94,4289_8015,Dun Laoghaire,103841438,0,4289_7778022_100010,4289_104 -4289_75974,95,4289_8016,Dun Laoghaire,103951438,0,4289_7778022_100010,4289_104 -4289_75960,96,4289_802,Dublin Airport,104064935,1,4289_7778022_103104,4289_4 -4289_75974,96,4289_8022,Dun Laoghaire,104064274,0,4289_7778022_100040,4289_105 -4289_75974,92,4289_8028,Dun Laoghaire,103621480,0,4289_7778022_100060,4289_105 -4289_75974,93,4289_8029,Dun Laoghaire,103731480,0,4289_7778022_100060,4289_105 -4289_75974,94,4289_8030,Dun Laoghaire,103841480,0,4289_7778022_100060,4289_105 -4289_75974,95,4289_8031,Dun Laoghaire,103951480,0,4289_7778022_100060,4289_105 -4289_75974,96,4289_8037,Dun Laoghaire,104064314,0,4289_7778022_100100,4289_105 -4289_75974,96,4289_8042,Dun Laoghaire,104064354,0,4289_7778022_100020,4289_105 -4289_75974,92,4289_8044,Dun Laoghaire,103621552,0,4289_7778022_100070,4289_105 -4289_75974,93,4289_8045,Dun Laoghaire,103731552,0,4289_7778022_100070,4289_105 -4289_75974,94,4289_8046,Dun Laoghaire,103841552,0,4289_7778022_100070,4289_105 -4289_75974,95,4289_8047,Dun Laoghaire,103951552,0,4289_7778022_100070,4289_105 -4289_75974,96,4289_8053,Dun Laoghaire,104064384,0,4289_7778022_100050,4289_105 -4289_75974,92,4289_8059,Dun Laoghaire,103621590,0,4289_7778022_100020,4289_105 -4289_75974,93,4289_8060,Dun Laoghaire,103731590,0,4289_7778022_100020,4289_105 -4289_75974,94,4289_8061,Dun Laoghaire,103841590,0,4289_7778022_100020,4289_105 -4289_75974,95,4289_8062,Dun Laoghaire,103951590,0,4289_7778022_100020,4289_105 -4289_75960,96,4289_807,Dublin Airport,104064991,1,4289_7778022_103106,4289_3 -4289_75974,92,4289_8073,Dun Laoghaire,103621632,0,4289_7778022_100040,4289_105 -4289_75974,93,4289_8074,Dun Laoghaire,103731632,0,4289_7778022_100040,4289_105 -4289_75974,94,4289_8075,Dun Laoghaire,103841632,0,4289_7778022_100040,4289_105 -4289_75974,95,4289_8076,Dun Laoghaire,103951632,0,4289_7778022_100040,4289_105 -4289_75974,96,4289_8082,Dun Laoghaire,104064454,0,4289_7778022_100120,4289_105 -4289_75974,92,4289_8084,Dun Laoghaire,103621664,0,4289_7778022_100050,4289_105 -4289_75974,93,4289_8085,Dun Laoghaire,103731664,0,4289_7778022_100050,4289_105 -4289_75974,94,4289_8086,Dun Laoghaire,103841664,0,4289_7778022_100050,4289_105 -4289_75974,95,4289_8087,Dun Laoghaire,103951664,0,4289_7778022_100050,4289_105 -4289_75974,96,4289_8093,Dun Laoghaire,104064482,0,4289_7778022_100010,4289_105 -4289_75974,92,4289_8099,Dun Laoghaire,103621702,0,4289_7778022_100080,4289_105 -4289_75974,93,4289_8100,Dun Laoghaire,103731702,0,4289_7778022_100080,4289_105 -4289_75974,94,4289_8101,Dun Laoghaire,103841702,0,4289_7778022_100080,4289_105 -4289_75974,95,4289_8102,Dun Laoghaire,103951702,0,4289_7778022_100080,4289_105 -4289_75974,96,4289_8108,Dun Laoghaire,104064522,0,4289_7778022_100040,4289_105 -4289_75974,92,4289_8114,Dun Laoghaire,103621746,0,4289_7778022_100010,4289_105 -4289_75974,93,4289_8115,Dun Laoghaire,103731746,0,4289_7778022_100010,4289_105 -4289_75974,94,4289_8116,Dun Laoghaire,103841746,0,4289_7778022_100010,4289_105 -4289_75974,95,4289_8117,Dun Laoghaire,103951746,0,4289_7778022_100010,4289_105 -4289_75974,96,4289_8123,Dun Laoghaire,104064560,0,4289_7778022_100100,4289_105 -4289_75974,92,4289_8125,Dun Laoghaire,103621774,0,4289_7778022_100060,4289_105 -4289_75974,93,4289_8126,Dun Laoghaire,103731774,0,4289_7778022_100060,4289_105 -4289_75974,94,4289_8127,Dun Laoghaire,103841774,0,4289_7778022_100060,4289_105 -4289_75974,95,4289_8128,Dun Laoghaire,103951774,0,4289_7778022_100060,4289_105 -4289_75960,92,4289_813,Dublin Airport,103622207,1,4289_7778022_103503,4289_3 -4289_75974,96,4289_8134,Dun Laoghaire,104064588,0,4289_7778022_100020,4289_105 -4289_75960,93,4289_814,Dublin Airport,103732207,1,4289_7778022_103503,4289_3 -4289_75974,92,4289_8140,Dun Laoghaire,103621816,0,4289_7778022_100030,4289_105 -4289_75974,93,4289_8141,Dun Laoghaire,103731816,0,4289_7778022_100030,4289_105 -4289_75974,94,4289_8142,Dun Laoghaire,103841816,0,4289_7778022_100030,4289_105 -4289_75974,95,4289_8143,Dun Laoghaire,103951816,0,4289_7778022_100030,4289_105 -4289_75974,96,4289_8149,Dun Laoghaire,104064630,0,4289_7778022_100130,4289_105 -4289_75960,94,4289_815,Dublin Airport,103842207,1,4289_7778022_103503,4289_3 -4289_75974,92,4289_8155,Dun Laoghaire,103621854,0,4289_7778022_100070,4289_105 -4289_75974,93,4289_8156,Dun Laoghaire,103731854,0,4289_7778022_100070,4289_105 -4289_75974,94,4289_8157,Dun Laoghaire,103841854,0,4289_7778022_100070,4289_105 -4289_75974,95,4289_8158,Dun Laoghaire,103951854,0,4289_7778022_100070,4289_105 -4289_75960,95,4289_816,Dublin Airport,103952207,1,4289_7778022_103503,4289_3 -4289_75974,96,4289_8164,Dun Laoghaire,104064666,0,4289_7778022_100050,4289_105 -4289_75974,92,4289_8166,Dun Laoghaire,103621888,0,4289_7778022_100020,4289_105 -4289_75974,93,4289_8167,Dun Laoghaire,103731888,0,4289_7778022_100020,4289_105 -4289_75974,94,4289_8168,Dun Laoghaire,103841888,0,4289_7778022_100020,4289_105 -4289_75974,95,4289_8169,Dun Laoghaire,103951888,0,4289_7778022_100020,4289_105 -4289_75974,96,4289_8175,Dun Laoghaire,104064696,0,4289_7778022_100090,4289_105 -4289_75974,92,4289_8181,Dun Laoghaire,103621928,0,4289_7778022_100040,4289_105 -4289_75974,93,4289_8182,Dun Laoghaire,103731928,0,4289_7778022_100040,4289_105 -4289_75974,94,4289_8183,Dun Laoghaire,103841928,0,4289_7778022_100040,4289_105 -4289_75974,95,4289_8184,Dun Laoghaire,103951928,0,4289_7778022_100040,4289_105 -4289_75974,96,4289_8190,Dun Laoghaire,104064736,0,4289_7778022_100120,4289_105 -4289_75974,92,4289_8196,Dun Laoghaire,103621968,0,4289_7778022_100050,4289_105 -4289_75974,93,4289_8197,Dun Laoghaire,103731968,0,4289_7778022_100050,4289_105 -4289_75974,94,4289_8198,Dun Laoghaire,103841968,0,4289_7778022_100050,4289_105 -4289_75974,95,4289_8199,Dun Laoghaire,103951968,0,4289_7778022_100050,4289_105 -4289_75974,96,4289_8205,Dun Laoghaire,104064774,0,4289_7778022_100010,4289_105 -4289_75974,92,4289_8207,Dun Laoghaire,103622002,0,4289_7778022_100080,4289_105 -4289_75974,93,4289_8208,Dun Laoghaire,103732002,0,4289_7778022_100080,4289_105 -4289_75974,94,4289_8209,Dun Laoghaire,103842002,0,4289_7778022_100080,4289_105 -4289_75974,95,4289_8210,Dun Laoghaire,103952002,0,4289_7778022_100080,4289_105 -4289_75974,96,4289_8216,Dun Laoghaire,104064802,0,4289_7778022_100040,4289_105 -4289_75960,96,4289_822,Dublin Airport,104065041,1,4289_7778022_103108,4289_3 -4289_75974,92,4289_8222,Dun Laoghaire,103622040,0,4289_7778022_100010,4289_105 -4289_75974,93,4289_8223,Dun Laoghaire,103732040,0,4289_7778022_100010,4289_105 -4289_75974,94,4289_8224,Dun Laoghaire,103842040,0,4289_7778022_100010,4289_105 -4289_75974,95,4289_8225,Dun Laoghaire,103952040,0,4289_7778022_100010,4289_105 -4289_75974,96,4289_8231,Dun Laoghaire,104064850,0,4289_7778022_100100,4289_105 -4289_75974,92,4289_8237,Dun Laoghaire,103622082,0,4289_7778022_100060,4289_105 -4289_75974,93,4289_8238,Dun Laoghaire,103732082,0,4289_7778022_100060,4289_105 -4289_75974,94,4289_8239,Dun Laoghaire,103842082,0,4289_7778022_100060,4289_105 -4289_75974,95,4289_8240,Dun Laoghaire,103952082,0,4289_7778022_100060,4289_105 -4289_75974,96,4289_8246,Dun Laoghaire,104064886,0,4289_7778022_100020,4289_105 -4289_75974,92,4289_8248,Dun Laoghaire,103622128,0,4289_7778022_100030,4289_104 -4289_75974,93,4289_8249,Dun Laoghaire,103732128,0,4289_7778022_100030,4289_104 -4289_75974,94,4289_8250,Dun Laoghaire,103842128,0,4289_7778022_100030,4289_104 -4289_75974,95,4289_8251,Dun Laoghaire,103952128,0,4289_7778022_100030,4289_104 -4289_75974,96,4289_8261,Dun Laoghaire,104064910,0,4289_7778022_100130,4289_105 -4289_75974,92,4289_8263,Dun Laoghaire,103622180,0,4289_7778022_100090,4289_104 -4289_75974,93,4289_8264,Dun Laoghaire,103732180,0,4289_7778022_100090,4289_104 -4289_75974,94,4289_8265,Dun Laoghaire,103842180,0,4289_7778022_100090,4289_104 -4289_75974,95,4289_8266,Dun Laoghaire,103952180,0,4289_7778022_100090,4289_104 -4289_75974,96,4289_8272,Dun Laoghaire,104064950,0,4289_7778022_100050,4289_105 -4289_75974,92,4289_8278,Dun Laoghaire,103622222,0,4289_7778022_100070,4289_104 -4289_75974,93,4289_8279,Dun Laoghaire,103732222,0,4289_7778022_100070,4289_104 -4289_75960,92,4289_828,Dublin Airport,103622295,1,4289_7778022_103108,4289_3 -4289_75974,94,4289_8280,Dun Laoghaire,103842222,0,4289_7778022_100070,4289_104 -4289_75974,95,4289_8281,Dun Laoghaire,103952222,0,4289_7778022_100070,4289_104 -4289_75974,96,4289_8287,Dun Laoghaire,104064992,0,4289_7778022_100090,4289_105 -4289_75974,92,4289_8289,Dun Laoghaire,103622262,0,4289_7778022_100020,4289_104 -4289_75960,93,4289_829,Dublin Airport,103732295,1,4289_7778022_103108,4289_3 -4289_75974,93,4289_8290,Dun Laoghaire,103732262,0,4289_7778022_100020,4289_104 -4289_75974,94,4289_8291,Dun Laoghaire,103842262,0,4289_7778022_100020,4289_104 -4289_75974,95,4289_8292,Dun Laoghaire,103952262,0,4289_7778022_100020,4289_104 -4289_75960,92,4289_83,Sutton Station,103621452,0,4289_7778022_103102,4289_1 -4289_75960,94,4289_830,Dublin Airport,103842295,1,4289_7778022_103108,4289_3 -4289_75974,96,4289_8302,Dun Laoghaire,104065016,0,4289_7778022_100030,4289_105 -4289_75974,92,4289_8304,Dun Laoghaire,103622308,0,4289_7778022_100040,4289_104 -4289_75974,93,4289_8305,Dun Laoghaire,103732308,0,4289_7778022_100040,4289_104 -4289_75974,94,4289_8306,Dun Laoghaire,103842308,0,4289_7778022_100040,4289_104 -4289_75974,95,4289_8307,Dun Laoghaire,103952308,0,4289_7778022_100040,4289_104 -4289_75960,95,4289_831,Dublin Airport,103952295,1,4289_7778022_103108,4289_3 -4289_75974,96,4289_8313,Dun Laoghaire,104065056,0,4289_7778022_100010,4289_105 -4289_75974,92,4289_8319,Dun Laoghaire,103622352,0,4289_7778022_100050,4289_104 -4289_75974,93,4289_8320,Dun Laoghaire,103732352,0,4289_7778022_100050,4289_104 -4289_75974,94,4289_8321,Dun Laoghaire,103842352,0,4289_7778022_100050,4289_104 -4289_75974,95,4289_8322,Dun Laoghaire,103952352,0,4289_7778022_100050,4289_104 -4289_75974,96,4289_8328,Dun Laoghaire,104065100,0,4289_7778022_100040,4289_105 -4289_75974,92,4289_8330,Dun Laoghaire,103622392,0,4289_7778022_100080,4289_104 -4289_75974,93,4289_8331,Dun Laoghaire,103732392,0,4289_7778022_100080,4289_104 -4289_75974,94,4289_8332,Dun Laoghaire,103842392,0,4289_7778022_100080,4289_104 -4289_75974,95,4289_8333,Dun Laoghaire,103952392,0,4289_7778022_100080,4289_104 -4289_75974,96,4289_8343,Dun Laoghaire,104065122,0,4289_7778022_100100,4289_105 -4289_75974,96,4289_8344,Dun Laoghaire,104065162,0,4289_7778022_100020,4289_105 -4289_75974,92,4289_8346,Dun Laoghaire,103622442,0,4289_7778022_100010,4289_104 -4289_75974,93,4289_8347,Dun Laoghaire,103732442,0,4289_7778022_100010,4289_104 -4289_75974,94,4289_8348,Dun Laoghaire,103842442,0,4289_7778022_100010,4289_104 -4289_75974,95,4289_8349,Dun Laoghaire,103952442,0,4289_7778022_100010,4289_104 -4289_75974,92,4289_8360,Dun Laoghaire,103622482,0,4289_7778022_100060,4289_104 -4289_75974,93,4289_8361,Dun Laoghaire,103732482,0,4289_7778022_100060,4289_104 -4289_75974,94,4289_8362,Dun Laoghaire,103842482,0,4289_7778022_100060,4289_104 -4289_75974,95,4289_8363,Dun Laoghaire,103952482,0,4289_7778022_100060,4289_104 -4289_75974,96,4289_8369,Dun Laoghaire,104065206,0,4289_7778022_100130,4289_105 -4289_75960,96,4289_837,Dublin Airport,104065097,1,4289_7778022_103101,4289_3 -4289_75974,92,4289_8371,Dun Laoghaire,103622516,0,4289_7778022_100030,4289_104 -4289_75974,93,4289_8372,Dun Laoghaire,103732516,0,4289_7778022_100030,4289_104 -4289_75974,94,4289_8373,Dun Laoghaire,103842516,0,4289_7778022_100030,4289_104 -4289_75974,95,4289_8374,Dun Laoghaire,103952516,0,4289_7778022_100030,4289_104 -4289_75974,96,4289_8380,Dun Laoghaire,104065230,0,4289_7778022_100050,4289_105 -4289_75974,92,4289_8386,Dun Laoghaire,103622558,0,4289_7778022_100090,4289_104 -4289_75974,93,4289_8387,Dun Laoghaire,103732558,0,4289_7778022_100090,4289_104 -4289_75974,94,4289_8388,Dun Laoghaire,103842558,0,4289_7778022_100090,4289_104 -4289_75974,95,4289_8389,Dun Laoghaire,103952558,0,4289_7778022_100090,4289_104 -4289_75974,96,4289_8395,Dun Laoghaire,104065276,0,4289_7778022_100070,4289_105 -4289_75960,93,4289_84,Sutton Station,103731452,0,4289_7778022_103102,4289_1 -4289_75974,92,4289_8401,Dun Laoghaire,103622596,0,4289_7778022_100020,4289_104 -4289_75974,93,4289_8402,Dun Laoghaire,103732596,0,4289_7778022_100020,4289_104 -4289_75974,94,4289_8403,Dun Laoghaire,103842596,0,4289_7778022_100020,4289_104 -4289_75974,95,4289_8404,Dun Laoghaire,103952596,0,4289_7778022_100020,4289_104 -4289_75974,96,4289_8410,Dun Laoghaire,104065312,0,4289_7778022_100030,4289_105 -4289_75974,92,4289_8412,Dun Laoghaire,103622628,0,4289_7778022_100040,4289_105 -4289_75974,93,4289_8413,Dun Laoghaire,103732628,0,4289_7778022_100040,4289_105 -4289_75974,94,4289_8414,Dun Laoghaire,103842628,0,4289_7778022_100040,4289_105 -4289_75974,95,4289_8415,Dun Laoghaire,103952628,0,4289_7778022_100040,4289_105 -4289_75974,96,4289_8421,Dun Laoghaire,104065336,0,4289_7778022_100110,4289_106 -4289_75974,92,4289_8427,Dun Laoghaire,103622682,0,4289_7778022_100050,4289_105 -4289_75974,93,4289_8428,Dun Laoghaire,103732682,0,4289_7778022_100050,4289_105 -4289_75974,94,4289_8429,Dun Laoghaire,103842682,0,4289_7778022_100050,4289_105 -4289_75960,92,4289_843,Dublin Airport,103622357,1,4289_7778022_103106,4289_3 -4289_75974,95,4289_8430,Dun Laoghaire,103952682,0,4289_7778022_100050,4289_105 -4289_75974,96,4289_8436,Dun Laoghaire,104065388,0,4289_7778022_100100,4289_106 -4289_75960,93,4289_844,Dublin Airport,103732357,1,4289_7778022_103106,4289_3 -4289_75974,92,4289_8442,Dun Laoghaire,103622728,0,4289_7778022_100010,4289_105 -4289_75974,93,4289_8443,Dun Laoghaire,103732728,0,4289_7778022_100010,4289_105 -4289_75974,94,4289_8444,Dun Laoghaire,103842728,0,4289_7778022_100010,4289_105 -4289_75974,95,4289_8445,Dun Laoghaire,103952728,0,4289_7778022_100010,4289_105 -4289_75960,94,4289_845,Dublin Airport,103842357,1,4289_7778022_103106,4289_3 -4289_75974,96,4289_8451,Dun Laoghaire,104065430,0,4289_7778022_100130,4289_106 -4289_75974,92,4289_8457,Dun Laoghaire,103622784,0,4289_7778022_100100,4289_105 -4289_75974,93,4289_8458,Dun Laoghaire,103732784,0,4289_7778022_100100,4289_105 -4289_75974,94,4289_8459,Dun Laoghaire,103842784,0,4289_7778022_100100,4289_105 -4289_75960,95,4289_846,Dublin Airport,103952357,1,4289_7778022_103106,4289_3 -4289_75974,95,4289_8460,Dun Laoghaire,103952784,0,4289_7778022_100100,4289_105 -4289_75974,96,4289_8466,Dun Laoghaire,104065482,0,4289_7778022_100070,4289_106 -4289_75974,92,4289_8472,Dun Laoghaire,103622844,0,4289_7778022_100020,4289_105 -4289_75974,93,4289_8473,Dun Laoghaire,103732844,0,4289_7778022_100020,4289_105 -4289_75974,94,4289_8474,Dun Laoghaire,103842844,0,4289_7778022_100020,4289_105 -4289_75974,95,4289_8475,Dun Laoghaire,103952844,0,4289_7778022_100020,4289_105 -4289_75974,96,4289_8481,Dun Laoghaire,104065534,0,4289_7778022_100080,4289_105 -4289_75974,92,4289_8487,Dun Laoghaire,103622900,0,4289_7778022_100130,4289_105 -4289_75974,93,4289_8488,Dun Laoghaire,103732900,0,4289_7778022_100130,4289_105 -4289_75974,94,4289_8489,Dun Laoghaire,103842900,0,4289_7778022_100130,4289_105 -4289_75974,95,4289_8490,Dun Laoghaire,103952900,0,4289_7778022_100130,4289_105 -4289_75974,96,4289_8496,Dun Laoghaire,104065586,0,4289_7778022_100060,4289_105 -4289_75960,94,4289_85,Sutton Station,103841452,0,4289_7778022_103102,4289_1 -4289_75974,92,4289_8502,Dun Laoghaire,103622954,0,4289_7778022_100010,4289_105 -4289_75974,93,4289_8503,Dun Laoghaire,103732954,0,4289_7778022_100010,4289_105 -4289_75974,94,4289_8504,Dun Laoghaire,103842954,0,4289_7778022_100010,4289_105 -4289_75974,95,4289_8505,Dun Laoghaire,103952954,0,4289_7778022_100010,4289_105 -4289_75974,96,4289_8511,Dun Laoghaire,104065634,0,4289_7778022_100130,4289_105 -4289_75974,92,4289_8517,Dun Laoghaire,103622998,0,4289_7778022_100100,4289_105 -4289_75974,93,4289_8518,Dun Laoghaire,103732998,0,4289_7778022_100100,4289_105 -4289_75974,94,4289_8519,Dun Laoghaire,103842998,0,4289_7778022_100100,4289_105 -4289_75960,96,4289_852,Dublin Airport,104065149,1,4289_7778022_103502,4289_3 -4289_75974,95,4289_8520,Dun Laoghaire,103952998,0,4289_7778022_100100,4289_105 -4289_75974,96,4289_8526,Dun Laoghaire,104065674,0,4289_7778022_100070,4289_105 -4289_75974,92,4289_8532,Dun Laoghaire,103623046,0,4289_7778022_100020,4289_105 -4289_75974,93,4289_8533,Dun Laoghaire,103733046,0,4289_7778022_100020,4289_105 -4289_75974,94,4289_8534,Dun Laoghaire,103843046,0,4289_7778022_100020,4289_105 -4289_75974,95,4289_8535,Dun Laoghaire,103953046,0,4289_7778022_100020,4289_105 -4289_75974,96,4289_8541,Dun Laoghaire,104065714,0,4289_7778022_100080,4289_105 -4289_75974,2,4289_8546,Dun Laoghaire,103613074,0,4289_7778022_100130,4289_105 -4289_75974,92,4289_8547,Dun Laoghaire,103623074,0,4289_7778022_100130,4289_105 -4289_75974,93,4289_8548,Dun Laoghaire,103733074,0,4289_7778022_100130,4289_105 -4289_75974,94,4289_8549,Dun Laoghaire,103843074,0,4289_7778022_100130,4289_105 -4289_75974,95,4289_8550,Dun Laoghaire,103953074,0,4289_7778022_100130,4289_105 -4289_75974,96,4289_8556,Dun Laoghaire,104065744,0,4289_7778022_100050,4289_105 -4289_75974,96,4289_8561,Kilmacanogue,104064055,1,4289_7778022_100020,4289_109 -4289_75974,92,4289_8563,Kilmacanogue,103621085,1,4289_7778022_100020,4289_108 -4289_75974,93,4289_8564,Kilmacanogue,103731085,1,4289_7778022_100020,4289_108 -4289_75974,94,4289_8565,Kilmacanogue,103841085,1,4289_7778022_100020,4289_108 -4289_75974,95,4289_8566,Kilmacanogue,103951085,1,4289_7778022_100020,4289_108 -4289_75974,92,4289_8573,Kilmacanogue,103621143,1,4289_7778022_100050,4289_108 -4289_75974,93,4289_8574,Kilmacanogue,103731143,1,4289_7778022_100050,4289_108 -4289_75974,94,4289_8575,Kilmacanogue,103841143,1,4289_7778022_100050,4289_108 -4289_75974,95,4289_8576,Kilmacanogue,103951143,1,4289_7778022_100050,4289_108 -4289_75960,92,4289_858,Dublin Airport,103622415,1,4289_7778022_103502,4289_3 -4289_75974,96,4289_8582,Kilmacanogue,104064091,1,4289_7778022_100050,4289_109 -4289_75974,92,4289_8584,Kilmacanogue,103621181,1,4289_7778022_100080,4289_108 -4289_75974,93,4289_8585,Kilmacanogue,103731181,1,4289_7778022_100080,4289_108 -4289_75974,94,4289_8586,Kilmacanogue,103841181,1,4289_7778022_100080,4289_108 -4289_75974,95,4289_8587,Kilmacanogue,103951181,1,4289_7778022_100080,4289_108 -4289_75960,93,4289_859,Dublin Airport,103732415,1,4289_7778022_103502,4289_3 -4289_75974,96,4289_8593,Kilmacanogue,104064133,1,4289_7778022_100010,4289_109 -4289_75974,92,4289_8595,Kilmacanogue,103621225,1,4289_7778022_100010,4289_108 -4289_75974,93,4289_8596,Kilmacanogue,103731225,1,4289_7778022_100010,4289_108 -4289_75974,94,4289_8597,Kilmacanogue,103841225,1,4289_7778022_100010,4289_108 -4289_75974,95,4289_8598,Kilmacanogue,103951225,1,4289_7778022_100010,4289_108 -4289_75960,95,4289_86,Sutton Station,103951452,0,4289_7778022_103102,4289_1 -4289_75960,94,4289_860,Dublin Airport,103842415,1,4289_7778022_103502,4289_3 -4289_75974,92,4289_8605,Kilmacanogue,103621267,1,4289_7778022_100060,4289_108 -4289_75974,93,4289_8606,Kilmacanogue,103731267,1,4289_7778022_100060,4289_108 -4289_75974,94,4289_8607,Kilmacanogue,103841267,1,4289_7778022_100060,4289_108 -4289_75974,95,4289_8608,Kilmacanogue,103951267,1,4289_7778022_100060,4289_108 -4289_75960,95,4289_861,Dublin Airport,103952415,1,4289_7778022_103502,4289_3 -4289_75974,96,4289_8614,Kilmacanogue,104064173,1,4289_7778022_100040,4289_109 -4289_75974,92,4289_8616,Kilmacanogue,103621337,1,4289_7778022_100030,4289_108 -4289_75974,93,4289_8617,Kilmacanogue,103731337,1,4289_7778022_100030,4289_108 -4289_75974,94,4289_8618,Kilmacanogue,103841337,1,4289_7778022_100030,4289_108 -4289_75974,95,4289_8619,Kilmacanogue,103951337,1,4289_7778022_100030,4289_108 -4289_75974,96,4289_8625,Kilmacanogue,104064221,1,4289_7778022_100020,4289_109 -4289_75974,92,4289_8631,Kilmacanogue,103621377,1,4289_7778022_100070,4289_108 -4289_75974,93,4289_8632,Kilmacanogue,103731377,1,4289_7778022_100070,4289_108 -4289_75974,94,4289_8633,Kilmacanogue,103841377,1,4289_7778022_100070,4289_108 -4289_75974,95,4289_8634,Kilmacanogue,103951377,1,4289_7778022_100070,4289_108 -4289_75974,96,4289_8640,Kilmacanogue,104064265,1,4289_7778022_100050,4289_109 -4289_75974,92,4289_8646,Kilmacanogue,103621413,1,4289_7778022_100020,4289_108 -4289_75974,93,4289_8647,Kilmacanogue,103731413,1,4289_7778022_100020,4289_108 -4289_75974,94,4289_8648,Kilmacanogue,103841413,1,4289_7778022_100020,4289_108 -4289_75974,95,4289_8649,Kilmacanogue,103951413,1,4289_7778022_100020,4289_108 -4289_75974,96,4289_8655,Kilmacanogue,104064299,1,4289_7778022_100090,4289_109 -4289_75974,92,4289_8657,Kilmacanogue,103621449,1,4289_7778022_100040,4289_109 -4289_75974,93,4289_8658,Kilmacanogue,103731449,1,4289_7778022_100040,4289_109 -4289_75974,94,4289_8659,Kilmacanogue,103841449,1,4289_7778022_100040,4289_109 -4289_75974,95,4289_8660,Kilmacanogue,103951449,1,4289_7778022_100040,4289_109 -4289_75960,96,4289_867,Dublin Airport,104065203,1,4289_7778022_103104,4289_3 -4289_75974,92,4289_8671,Kilmacanogue,103621495,1,4289_7778022_100050,4289_109 -4289_75974,93,4289_8672,Kilmacanogue,103731495,1,4289_7778022_100050,4289_109 -4289_75974,94,4289_8673,Kilmacanogue,103841495,1,4289_7778022_100050,4289_109 -4289_75974,95,4289_8674,Kilmacanogue,103951495,1,4289_7778022_100050,4289_109 -4289_75974,96,4289_8680,Kilmacanogue,104064347,1,4289_7778022_100010,4289_110 -4289_75974,92,4289_8686,Kilmacanogue,103621529,1,4289_7778022_100080,4289_109 -4289_75974,93,4289_8687,Kilmacanogue,103731529,1,4289_7778022_100080,4289_109 -4289_75974,94,4289_8688,Kilmacanogue,103841529,1,4289_7778022_100080,4289_109 -4289_75974,95,4289_8689,Kilmacanogue,103951529,1,4289_7778022_100080,4289_109 -4289_75974,96,4289_8695,Kilmacanogue,104064377,1,4289_7778022_100040,4289_110 -4289_75974,92,4289_8697,Kilmacanogue,103621565,1,4289_7778022_100010,4289_109 -4289_75974,93,4289_8698,Kilmacanogue,103731565,1,4289_7778022_100010,4289_109 -4289_75974,94,4289_8699,Kilmacanogue,103841565,1,4289_7778022_100010,4289_109 -4289_75974,95,4289_8700,Kilmacanogue,103951565,1,4289_7778022_100010,4289_109 -4289_75974,96,4289_8706,Kilmacanogue,104064413,1,4289_7778022_100100,4289_110 -4289_75974,92,4289_8712,Kilmacanogue,103621603,1,4289_7778022_100060,4289_109 -4289_75974,93,4289_8713,Kilmacanogue,103731603,1,4289_7778022_100060,4289_109 -4289_75974,94,4289_8714,Kilmacanogue,103841603,1,4289_7778022_100060,4289_109 -4289_75974,95,4289_8715,Kilmacanogue,103951603,1,4289_7778022_100060,4289_109 -4289_75974,96,4289_8721,Kilmacanogue,104064453,1,4289_7778022_100020,4289_110 -4289_75974,92,4289_8727,Kilmacanogue,103621637,1,4289_7778022_100030,4289_109 -4289_75974,93,4289_8728,Kilmacanogue,103731637,1,4289_7778022_100030,4289_109 -4289_75974,94,4289_8729,Kilmacanogue,103841637,1,4289_7778022_100030,4289_109 -4289_75960,92,4289_873,Dublin Airport,103622477,1,4289_7778022_103101,4289_3 -4289_75974,95,4289_8730,Kilmacanogue,103951637,1,4289_7778022_100030,4289_109 -4289_75974,96,4289_8736,Kilmacanogue,104064483,1,4289_7778022_100130,4289_110 -4289_75974,92,4289_8738,Kilmacanogue,103621675,1,4289_7778022_100070,4289_109 -4289_75974,93,4289_8739,Kilmacanogue,103731675,1,4289_7778022_100070,4289_109 -4289_75960,93,4289_874,Dublin Airport,103732477,1,4289_7778022_103101,4289_3 -4289_75974,94,4289_8740,Kilmacanogue,103841675,1,4289_7778022_100070,4289_109 -4289_75974,95,4289_8741,Kilmacanogue,103951675,1,4289_7778022_100070,4289_109 -4289_75974,96,4289_8747,Kilmacanogue,104064519,1,4289_7778022_100050,4289_110 -4289_75960,94,4289_875,Dublin Airport,103842477,1,4289_7778022_103101,4289_3 -4289_75974,92,4289_8753,Kilmacanogue,103621717,1,4289_7778022_100020,4289_109 -4289_75974,93,4289_8754,Kilmacanogue,103731717,1,4289_7778022_100020,4289_109 -4289_75974,94,4289_8755,Kilmacanogue,103841717,1,4289_7778022_100020,4289_109 -4289_75974,95,4289_8756,Kilmacanogue,103951717,1,4289_7778022_100020,4289_109 -4289_75960,95,4289_876,Dublin Airport,103952477,1,4289_7778022_103101,4289_3 -4289_75974,96,4289_8762,Kilmacanogue,104064561,1,4289_7778022_100090,4289_110 -4289_75974,92,4289_8768,Kilmacanogue,103621751,1,4289_7778022_100040,4289_109 -4289_75974,93,4289_8769,Kilmacanogue,103731751,1,4289_7778022_100040,4289_109 -4289_75974,94,4289_8770,Kilmacanogue,103841751,1,4289_7778022_100040,4289_109 -4289_75974,95,4289_8771,Kilmacanogue,103951751,1,4289_7778022_100040,4289_109 -4289_75974,96,4289_8777,Kilmacanogue,104064591,1,4289_7778022_100120,4289_110 -4289_75974,92,4289_8783,Kilmacanogue,103621787,1,4289_7778022_100050,4289_109 -4289_75974,93,4289_8784,Kilmacanogue,103731787,1,4289_7778022_100050,4289_109 -4289_75974,94,4289_8785,Kilmacanogue,103841787,1,4289_7778022_100050,4289_109 -4289_75974,95,4289_8786,Kilmacanogue,103951787,1,4289_7778022_100050,4289_109 -4289_75974,96,4289_8792,Kilmacanogue,104064625,1,4289_7778022_100010,4289_110 -4289_75974,92,4289_8794,Kilmacanogue,103621829,1,4289_7778022_100080,4289_109 -4289_75974,93,4289_8795,Kilmacanogue,103731829,1,4289_7778022_100080,4289_109 -4289_75974,94,4289_8796,Kilmacanogue,103841829,1,4289_7778022_100080,4289_109 -4289_75974,95,4289_8797,Kilmacanogue,103951829,1,4289_7778022_100080,4289_109 -4289_75974,96,4289_8803,Kilmacanogue,104064667,1,4289_7778022_100040,4289_110 -4289_75974,92,4289_8813,Kilmacanogue,103621911,1,4289_7778022_100060,4289_109 -4289_75974,93,4289_8814,Kilmacanogue,103731911,1,4289_7778022_100060,4289_109 -4289_75974,94,4289_8815,Kilmacanogue,103841911,1,4289_7778022_100060,4289_109 -4289_75974,95,4289_8816,Kilmacanogue,103951911,1,4289_7778022_100060,4289_109 -4289_75974,96,4289_8822,Kilmacanogue,104064733,1,4289_7778022_100020,4289_110 -4289_75974,92,4289_8824,Kilmacanogue,103621945,1,4289_7778022_100030,4289_109 -4289_75974,93,4289_8825,Kilmacanogue,103731945,1,4289_7778022_100030,4289_109 -4289_75974,94,4289_8826,Kilmacanogue,103841945,1,4289_7778022_100030,4289_109 -4289_75974,95,4289_8827,Kilmacanogue,103951945,1,4289_7778022_100030,4289_109 -4289_75960,92,4289_883,Dublin Airport,103622525,1,4289_7778022_103102,4289_3 -4289_75974,96,4289_8833,Kilmacanogue,104064773,1,4289_7778022_100130,4289_110 -4289_75974,92,4289_8839,Kilmacanogue,103621983,1,4289_7778022_100070,4289_109 -4289_75960,93,4289_884,Dublin Airport,103732525,1,4289_7778022_103102,4289_3 -4289_75974,93,4289_8840,Kilmacanogue,103731983,1,4289_7778022_100070,4289_109 -4289_75974,94,4289_8841,Kilmacanogue,103841983,1,4289_7778022_100070,4289_109 -4289_75974,95,4289_8842,Kilmacanogue,103951983,1,4289_7778022_100070,4289_109 -4289_75974,96,4289_8848,Kilmacanogue,104064807,1,4289_7778022_100050,4289_110 -4289_75960,94,4289_885,Dublin Airport,103842525,1,4289_7778022_103102,4289_3 -4289_75974,92,4289_8854,Kilmacanogue,103622021,1,4289_7778022_100020,4289_108 -4289_75974,93,4289_8855,Kilmacanogue,103732021,1,4289_7778022_100020,4289_108 -4289_75974,94,4289_8856,Kilmacanogue,103842021,1,4289_7778022_100020,4289_108 -4289_75974,95,4289_8857,Kilmacanogue,103952021,1,4289_7778022_100020,4289_108 -4289_75960,95,4289_886,Dublin Airport,103952525,1,4289_7778022_103102,4289_3 -4289_75974,96,4289_8863,Kilmacanogue,104064839,1,4289_7778022_100090,4289_109 -4289_75974,92,4289_8865,Kilmacanogue,103622063,1,4289_7778022_100040,4289_108 -4289_75974,93,4289_8866,Kilmacanogue,103732063,1,4289_7778022_100040,4289_108 -4289_75974,94,4289_8867,Kilmacanogue,103842063,1,4289_7778022_100040,4289_108 -4289_75974,95,4289_8868,Kilmacanogue,103952063,1,4289_7778022_100040,4289_108 -4289_75974,96,4289_8874,Kilmacanogue,104064879,1,4289_7778022_100030,4289_109 -4289_75974,92,4289_8880,Kilmacanogue,103622103,1,4289_7778022_100050,4289_108 -4289_75974,93,4289_8881,Kilmacanogue,103732103,1,4289_7778022_100050,4289_108 -4289_75974,94,4289_8882,Kilmacanogue,103842103,1,4289_7778022_100050,4289_108 -4289_75974,95,4289_8883,Kilmacanogue,103952103,1,4289_7778022_100050,4289_108 -4289_75974,96,4289_8889,Kilmacanogue,104064911,1,4289_7778022_100010,4289_109 -4289_75974,92,4289_8895,Kilmacanogue,103622145,1,4289_7778022_100080,4289_108 -4289_75974,93,4289_8896,Kilmacanogue,103732145,1,4289_7778022_100080,4289_108 -4289_75974,94,4289_8897,Kilmacanogue,103842145,1,4289_7778022_100080,4289_108 -4289_75974,95,4289_8898,Kilmacanogue,103952145,1,4289_7778022_100080,4289_108 -4289_75974,96,4289_8904,Kilmacanogue,104064945,1,4289_7778022_100040,4289_109 -4289_75974,92,4289_8906,Kilmacanogue,103622197,1,4289_7778022_100010,4289_108 -4289_75974,93,4289_8907,Kilmacanogue,103732197,1,4289_7778022_100010,4289_108 -4289_75974,94,4289_8908,Kilmacanogue,103842197,1,4289_7778022_100010,4289_108 -4289_75974,95,4289_8909,Kilmacanogue,103952197,1,4289_7778022_100010,4289_108 -4289_75974,96,4289_8915,Kilmacanogue,104064987,1,4289_7778022_100100,4289_109 -4289_75974,92,4289_8921,Kilmacanogue,103622243,1,4289_7778022_100060,4289_108 -4289_75974,93,4289_8922,Kilmacanogue,103732243,1,4289_7778022_100060,4289_108 -4289_75974,94,4289_8923,Kilmacanogue,103842243,1,4289_7778022_100060,4289_108 -4289_75974,95,4289_8924,Kilmacanogue,103952243,1,4289_7778022_100060,4289_108 -4289_75974,96,4289_8930,Kilmacanogue,104065017,1,4289_7778022_100020,4289_109 -4289_75974,92,4289_8936,Kilmacanogue,103622307,1,4289_7778022_100030,4289_108 -4289_75974,93,4289_8937,Kilmacanogue,103732307,1,4289_7778022_100030,4289_108 -4289_75974,94,4289_8938,Kilmacanogue,103842307,1,4289_7778022_100030,4289_108 -4289_75974,95,4289_8939,Kilmacanogue,103952307,1,4289_7778022_100030,4289_108 -4289_75974,96,4289_8945,Kilmacanogue,104065051,1,4289_7778022_100130,4289_109 -4289_75974,92,4289_8947,Kilmacanogue,103622351,1,4289_7778022_100090,4289_108 -4289_75974,93,4289_8948,Kilmacanogue,103732351,1,4289_7778022_100090,4289_108 -4289_75974,94,4289_8949,Kilmacanogue,103842351,1,4289_7778022_100090,4289_108 -4289_75974,95,4289_8950,Kilmacanogue,103952351,1,4289_7778022_100090,4289_108 -4289_75974,96,4289_8956,Kilmacanogue,104065095,1,4289_7778022_100050,4289_109 -4289_75960,96,4289_896,Dublin Airport,104065253,1,4289_7778022_103503,4289_3 -4289_75974,92,4289_8962,Kilmacanogue,103622383,1,4289_7778022_100070,4289_108 -4289_75974,93,4289_8963,Kilmacanogue,103732383,1,4289_7778022_100070,4289_108 -4289_75974,94,4289_8964,Kilmacanogue,103842383,1,4289_7778022_100070,4289_108 -4289_75974,95,4289_8965,Kilmacanogue,103952383,1,4289_7778022_100070,4289_108 -4289_75974,96,4289_8971,Kilmacanogue,104065125,1,4289_7778022_100070,4289_109 -4289_75974,92,4289_8977,Kilmacanogue,103622425,1,4289_7778022_100020,4289_108 -4289_75974,93,4289_8978,Kilmacanogue,103732425,1,4289_7778022_100020,4289_108 -4289_75974,94,4289_8979,Kilmacanogue,103842425,1,4289_7778022_100020,4289_108 -4289_75960,92,4289_898,Dublin Airport,103622583,1,4289_7778022_103104,4289_3 -4289_75974,95,4289_8980,Kilmacanogue,103952425,1,4289_7778022_100020,4289_108 -4289_75974,96,4289_8986,Kilmacanogue,104065159,1,4289_7778022_100030,4289_109 -4289_75974,92,4289_8988,Kilmacanogue,103622469,1,4289_7778022_100040,4289_108 -4289_75974,93,4289_8989,Kilmacanogue,103732469,1,4289_7778022_100040,4289_108 -4289_75960,93,4289_899,Dublin Airport,103732583,1,4289_7778022_103104,4289_3 -4289_75974,94,4289_8990,Kilmacanogue,103842469,1,4289_7778022_100040,4289_108 -4289_75974,95,4289_8991,Kilmacanogue,103952469,1,4289_7778022_100040,4289_108 -4289_75974,96,4289_8997,Kilmacanogue,104065199,1,4289_7778022_100110,4289_109 -4289_75960,94,4289_900,Dublin Airport,103842583,1,4289_7778022_103104,4289_3 -4289_75974,92,4289_9003,Kilmacanogue,103622503,1,4289_7778022_100050,4289_109 -4289_75974,93,4289_9004,Kilmacanogue,103732503,1,4289_7778022_100050,4289_109 -4289_75974,94,4289_9005,Kilmacanogue,103842503,1,4289_7778022_100050,4289_109 -4289_75974,95,4289_9006,Kilmacanogue,103952503,1,4289_7778022_100050,4289_109 -4289_75960,95,4289_901,Dublin Airport,103952583,1,4289_7778022_103104,4289_3 -4289_75974,96,4289_9012,Kilmacanogue,104065231,1,4289_7778022_100040,4289_110 -4289_75974,92,4289_9018,Kilmacanogue,103622541,1,4289_7778022_100080,4289_109 -4289_75974,93,4289_9019,Kilmacanogue,103732541,1,4289_7778022_100080,4289_109 -4289_75974,94,4289_9020,Kilmacanogue,103842541,1,4289_7778022_100080,4289_109 -4289_75974,95,4289_9021,Kilmacanogue,103952541,1,4289_7778022_100080,4289_109 -4289_75974,96,4289_9027,Kilmacanogue,104065263,1,4289_7778022_100100,4289_110 -4289_75974,92,4289_9029,Kilmacanogue,103622585,1,4289_7778022_100010,4289_109 -4289_75974,93,4289_9030,Kilmacanogue,103732585,1,4289_7778022_100010,4289_109 -4289_75974,94,4289_9031,Kilmacanogue,103842585,1,4289_7778022_100010,4289_109 -4289_75974,95,4289_9032,Kilmacanogue,103952585,1,4289_7778022_100010,4289_109 -4289_75974,96,4289_9042,Kilmacanogue,104065317,1,4289_7778022_100130,4289_109 -4289_75974,92,4289_9044,Kilmacanogue,103622625,1,4289_7778022_100030,4289_109 -4289_75974,93,4289_9045,Kilmacanogue,103732625,1,4289_7778022_100030,4289_109 -4289_75974,94,4289_9046,Kilmacanogue,103842625,1,4289_7778022_100030,4289_109 -4289_75974,95,4289_9047,Kilmacanogue,103952625,1,4289_7778022_100030,4289_109 -4289_75974,92,4289_9058,Kilmacanogue,103622653,1,4289_7778022_100100,4289_109 -4289_75974,93,4289_9059,Kilmacanogue,103732653,1,4289_7778022_100100,4289_109 -4289_75974,94,4289_9060,Kilmacanogue,103842653,1,4289_7778022_100100,4289_109 -4289_75974,95,4289_9061,Kilmacanogue,103952653,1,4289_7778022_100100,4289_109 -4289_75974,96,4289_9067,Kilmacanogue,104065365,1,4289_7778022_100070,4289_109 -4289_75974,92,4289_9069,Kilmacanogue,103622707,1,4289_7778022_100020,4289_109 -4289_75974,93,4289_9070,Kilmacanogue,103732707,1,4289_7778022_100020,4289_109 -4289_75974,94,4289_9071,Kilmacanogue,103842707,1,4289_7778022_100020,4289_109 -4289_75974,95,4289_9072,Kilmacanogue,103952707,1,4289_7778022_100020,4289_109 -4289_75974,96,4289_9078,Kilmacanogue,104065411,1,4289_7778022_100080,4289_109 -4289_75974,92,4289_9084,Kilmacanogue,103622765,1,4289_7778022_100130,4289_109 -4289_75974,93,4289_9085,Kilmacanogue,103732765,1,4289_7778022_100130,4289_109 -4289_75974,94,4289_9086,Kilmacanogue,103842765,1,4289_7778022_100130,4289_109 -4289_75974,95,4289_9087,Kilmacanogue,103952765,1,4289_7778022_100130,4289_109 -4289_75974,96,4289_9093,Kilmacanogue,104065463,1,4289_7778022_100060,4289_110 -4289_75974,92,4289_9099,Kilmacanogue,103622827,1,4289_7778022_100010,4289_109 -4289_75974,93,4289_9100,Kilmacanogue,103732827,1,4289_7778022_100010,4289_109 -4289_75974,94,4289_9101,Kilmacanogue,103842827,1,4289_7778022_100010,4289_109 -4289_75974,95,4289_9102,Kilmacanogue,103952827,1,4289_7778022_100010,4289_109 -4289_75974,96,4289_9108,Kilmacanogue,104065519,1,4289_7778022_100130,4289_110 -4289_75960,96,4289_911,Dublin Airport,104065307,1,4289_7778022_103501,4289_3 -4289_75974,92,4289_9114,Kilmacanogue,103622877,1,4289_7778022_100100,4289_109 -4289_75974,93,4289_9115,Kilmacanogue,103732877,1,4289_7778022_100100,4289_109 -4289_75974,94,4289_9116,Kilmacanogue,103842877,1,4289_7778022_100100,4289_109 -4289_75974,95,4289_9117,Kilmacanogue,103952877,1,4289_7778022_100100,4289_109 -4289_75974,96,4289_9123,Kilmacanogue,104065575,1,4289_7778022_100070,4289_109 -4289_75974,92,4289_9129,Kilmacanogue,103622937,1,4289_7778022_100020,4289_109 -4289_75960,92,4289_913,Dublin Airport,103622643,1,4289_7778022_103108,4289_3 -4289_75974,93,4289_9130,Kilmacanogue,103732937,1,4289_7778022_100020,4289_109 -4289_75974,94,4289_9131,Kilmacanogue,103842937,1,4289_7778022_100020,4289_109 -4289_75974,95,4289_9132,Kilmacanogue,103952937,1,4289_7778022_100020,4289_109 -4289_75974,96,4289_9138,Kilmacanogue,104065619,1,4289_7778022_100080,4289_109 -4289_75960,93,4289_914,Dublin Airport,103732643,1,4289_7778022_103108,4289_3 -4289_75974,92,4289_9144,Kilmacanogue,103622985,1,4289_7778022_100130,4289_109 -4289_75974,93,4289_9145,Kilmacanogue,103732985,1,4289_7778022_100130,4289_109 -4289_75974,94,4289_9146,Kilmacanogue,103842985,1,4289_7778022_100130,4289_109 -4289_75974,95,4289_9147,Kilmacanogue,103952985,1,4289_7778022_100130,4289_109 -4289_75960,94,4289_915,Dublin Airport,103842643,1,4289_7778022_103108,4289_3 -4289_75974,96,4289_9153,Kilmacanogue,104065663,1,4289_7778022_100050,4289_109 -4289_75974,92,4289_9159,Kilmacanogue,103623031,1,4289_7778022_100010,4289_109 -4289_75960,95,4289_916,Dublin Airport,103952643,1,4289_7778022_103108,4289_3 -4289_75974,93,4289_9160,Kilmacanogue,103733031,1,4289_7778022_100010,4289_109 -4289_75974,94,4289_9161,Kilmacanogue,103843031,1,4289_7778022_100010,4289_109 -4289_75974,95,4289_9162,Kilmacanogue,103953031,1,4289_7778022_100010,4289_109 -4289_75974,96,4289_9168,Kilmacanogue,104065703,1,4289_7778022_100130,4289_109 -4289_75974,2,4289_9177,Kilmacanogue,103613071,1,4289_7778022_100100,4289_109 -4289_75974,92,4289_9178,Kilmacanogue,103623071,1,4289_7778022_100100,4289_109 -4289_75974,93,4289_9179,Kilmacanogue,103733071,1,4289_7778022_100100,4289_109 -4289_75974,94,4289_9180,Kilmacanogue,103843071,1,4289_7778022_100100,4289_109 -4289_75974,95,4289_9181,Kilmacanogue,103953071,1,4289_7778022_100100,4289_109 -4289_75974,96,4289_9187,Kilmacanogue,104065749,1,4289_7778022_100070,4289_109 -4289_75975,92,4289_9189,Dun Laoghaire,103621522,0,4289_7778022_100030,4289_112 -4289_75975,93,4289_9190,Dun Laoghaire,103731522,0,4289_7778022_100030,4289_112 -4289_75975,94,4289_9191,Dun Laoghaire,103841522,0,4289_7778022_100030,4289_112 -4289_75975,95,4289_9192,Dun Laoghaire,103951522,0,4289_7778022_100030,4289_112 -4289_75975,96,4289_9198,Dun Laoghaire,104064416,0,4289_7778022_100090,4289_112 -4289_75960,96,4289_92,Sutton Station,104064306,0,4289_7778022_103503,4289_1 -4289_75975,92,4289_9200,Kilmacanogue,103621845,1,4289_7778022_100010,4289_113 -4289_75975,93,4289_9201,Kilmacanogue,103731845,1,4289_7778022_100010,4289_113 -4289_75975,94,4289_9202,Kilmacanogue,103841845,1,4289_7778022_100010,4289_113 -4289_75975,95,4289_9203,Kilmacanogue,103951845,1,4289_7778022_100010,4289_113 -4289_75975,96,4289_9209,Kilmacanogue,104064689,1,4289_7778022_100100,4289_113 -4289_75958,92,4289_9211,Killiney,103621270,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9212,Killiney,103731270,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9213,Killiney,103841270,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9214,Killiney,103951270,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9220,Killiney,104064156,0,4289_7778022_100060,4289_114 -4289_75958,92,4289_9222,Killiney,103621400,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9223,Killiney,103731400,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9224,Killiney,103841400,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9225,Killiney,103951400,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9231,Killiney,104064246,0,4289_7778022_100060,4289_114 -4289_75958,92,4289_9237,Killiney,103621512,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9238,Killiney,103731512,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9239,Killiney,103841512,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9240,Killiney,103951512,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9246,Killiney,104064350,0,4289_7778022_100060,4289_114 -4289_75958,92,4289_9252,Killiney,103621620,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9253,Killiney,103731620,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9254,Killiney,103841620,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9255,Killiney,103951620,0,4289_7778022_100140,4289_114 -4289_75960,96,4289_926,Dublin Airport,104065351,1,4289_7778022_103101,4289_3 -4289_75958,96,4289_9261,Killiney,104064438,0,4289_7778022_100060,4289_114 -4289_75958,92,4289_9267,Killiney,103621734,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9268,Killiney,103731734,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9269,Killiney,103841734,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9270,Killiney,103951734,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9276,Killiney,104064546,0,4289_7778022_100060,4289_114 -4289_75960,92,4289_928,Dublin Airport,103622697,1,4289_7778022_103501,4289_3 -4289_75958,92,4289_9282,Killiney,103621846,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9283,Killiney,103731846,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9284,Killiney,103841846,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9285,Killiney,103951846,0,4289_7778022_100140,4289_114 -4289_75960,93,4289_929,Dublin Airport,103732697,1,4289_7778022_103501,4289_3 -4289_75958,96,4289_9291,Killiney,104064652,0,4289_7778022_100060,4289_114 -4289_75958,92,4289_9297,Killiney,103621958,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9298,Killiney,103731958,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9299,Killiney,103841958,0,4289_7778022_100140,4289_114 -4289_75960,94,4289_930,Dublin Airport,103842697,1,4289_7778022_103501,4289_3 -4289_75958,95,4289_9300,Killiney,103951958,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9306,Killiney,104064760,0,4289_7778022_100060,4289_114 -4289_75960,95,4289_931,Dublin Airport,103952697,1,4289_7778022_103501,4289_3 -4289_75958,92,4289_9312,Killiney,103622074,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9313,Killiney,103732074,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9314,Killiney,103842074,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9315,Killiney,103952074,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9321,Killiney,104064866,0,4289_7778022_100060,4289_115 -4289_75958,92,4289_9327,Killiney,103622212,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9328,Killiney,103732212,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9329,Killiney,103842212,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9330,Killiney,103952212,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9336,Killiney,104064972,0,4289_7778022_100060,4289_115 -4289_75958,92,4289_9342,Killiney,103622264,0,4289_7778022_100982,4289_114 -4289_75958,93,4289_9343,Killiney,103732264,0,4289_7778022_100982,4289_114 -4289_75958,94,4289_9344,Killiney,103842264,0,4289_7778022_100982,4289_114 -4289_75958,95,4289_9345,Killiney,103952264,0,4289_7778022_100982,4289_114 -4289_75958,92,4289_9352,Killiney,103622344,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9353,Killiney,103732344,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9354,Killiney,103842344,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9355,Killiney,103952344,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9361,Killiney,104065076,0,4289_7778022_100060,4289_115 -4289_75958,92,4289_9367,Killiney,103622466,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9368,Killiney,103732466,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9369,Killiney,103842466,0,4289_7778022_100140,4289_114 -4289_75960,96,4289_937,Dublin Airport,104065399,1,4289_7778022_103502,4289_4 -4289_75958,95,4289_9370,Killiney,103952466,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9376,Killiney,104065182,0,4289_7778022_100060,4289_115 -4289_75958,92,4289_9382,Killiney,103622584,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9383,Killiney,103732584,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9384,Killiney,103842584,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9385,Killiney,103952584,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9395,Killiney,104065308,0,4289_7778022_100060,4289_114 -4289_75958,92,4289_9401,Killiney,103622690,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9402,Killiney,103732690,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9403,Killiney,103842690,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9404,Killiney,103952690,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9410,Killiney,104065410,0,4289_7778022_100060,4289_114 -4289_75958,92,4289_9416,Killiney,103622806,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9417,Killiney,103732806,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9418,Killiney,103842806,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9419,Killiney,103952806,0,4289_7778022_100140,4289_114 -4289_75960,96,4289_942,Dublin Airport,104065443,1,4289_7778022_103105,4289_3 -4289_75958,96,4289_9425,Killiney,104065500,0,4289_7778022_100120,4289_114 -4289_75958,92,4289_9431,Killiney,103622902,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9432,Killiney,103732902,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9433,Killiney,103842902,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9434,Killiney,103952902,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9440,Killiney,104065588,0,4289_7778022_100120,4289_114 -4289_75958,92,4289_9446,Killiney,103623002,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9447,Killiney,103733002,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9448,Killiney,103843002,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9449,Killiney,103953002,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9455,Killiney,104065678,0,4289_7778022_100120,4289_114 -4289_75958,92,4289_9461,Killiney,103623072,0,4289_7778022_100140,4289_114 -4289_75958,93,4289_9462,Killiney,103733072,0,4289_7778022_100140,4289_114 -4289_75958,94,4289_9463,Killiney,103843072,0,4289_7778022_100140,4289_114 -4289_75958,95,4289_9464,Killiney,103953072,0,4289_7778022_100140,4289_114 -4289_75958,96,4289_9470,Killiney,104065740,0,4289_7778022_100120,4289_114 -4289_75958,92,4289_9472,Dun Laoghaire,103621131,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9473,Dun Laoghaire,103731131,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9474,Dun Laoghaire,103841131,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9475,Dun Laoghaire,103951131,1,4289_7778022_100140,4289_116 -4289_75960,92,4289_948,Dublin Airport,103622749,1,4289_7778022_103105,4289_3 -4289_75958,96,4289_9481,Dun Laoghaire,104064095,1,4289_7778022_100060,4289_116 -4289_75958,92,4289_9483,Dun Laoghaire,103621271,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9484,Dun Laoghaire,103731271,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9485,Dun Laoghaire,103841271,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9486,Dun Laoghaire,103951271,1,4289_7778022_100140,4289_116 -4289_75960,93,4289_949,Dublin Airport,103732749,1,4289_7778022_103105,4289_3 -4289_75958,96,4289_9492,Dun Laoghaire,104064179,1,4289_7778022_100060,4289_117 -4289_75958,92,4289_9494,Dun Laoghaire,103621407,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9495,Dun Laoghaire,103731407,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9496,Dun Laoghaire,103841407,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9497,Dun Laoghaire,103951407,1,4289_7778022_100140,4289_116 -4289_75960,94,4289_950,Dublin Airport,103842749,1,4289_7778022_103105,4289_3 -4289_75958,96,4289_9503,Dun Laoghaire,104064267,1,4289_7778022_100060,4289_116 -4289_75958,92,4289_9509,Dun Laoghaire,103621521,1,4289_7778022_100140,4289_116 -4289_75960,95,4289_951,Dublin Airport,103952749,1,4289_7778022_103105,4289_3 -4289_75958,93,4289_9510,Dun Laoghaire,103731521,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9511,Dun Laoghaire,103841521,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9512,Dun Laoghaire,103951521,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9518,Dun Laoghaire,104064371,1,4289_7778022_100060,4289_116 -4289_75958,92,4289_9524,Dun Laoghaire,103621633,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9525,Dun Laoghaire,103731633,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9526,Dun Laoghaire,103841633,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9527,Dun Laoghaire,103951633,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9533,Dun Laoghaire,104064479,1,4289_7778022_100060,4289_116 -4289_75958,92,4289_9539,Dun Laoghaire,103621745,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9540,Dun Laoghaire,103731745,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9541,Dun Laoghaire,103841745,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9542,Dun Laoghaire,103951745,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9548,Dun Laoghaire,104064587,1,4289_7778022_100060,4289_116 -4289_75958,92,4289_9554,Dun Laoghaire,103621861,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9555,Dun Laoghaire,103731861,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9556,Dun Laoghaire,103841861,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9557,Dun Laoghaire,103951861,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9563,Dun Laoghaire,104064695,1,4289_7778022_100060,4289_116 -4289_75958,92,4289_9569,Dun Laoghaire,103621977,1,4289_7778022_100140,4289_116 -4289_75960,96,4289_957,Dublin Airport,104065493,1,4289_7778022_103503,4289_3 -4289_75958,93,4289_9570,Dun Laoghaire,103731977,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9571,Dun Laoghaire,103841977,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9572,Dun Laoghaire,103951977,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9578,Dun Laoghaire,104064801,1,4289_7778022_100060,4289_117 -4289_75958,92,4289_9584,Dun Laoghaire,103622097,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9585,Dun Laoghaire,103732097,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9586,Dun Laoghaire,103842097,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9587,Dun Laoghaire,103952097,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9593,Dun Laoghaire,104064907,1,4289_7778022_100060,4289_117 -4289_75958,92,4289_9599,Dun Laoghaire,103622235,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9600,Dun Laoghaire,103732235,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9601,Dun Laoghaire,103842235,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9602,Dun Laoghaire,103952235,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9608,Dun Laoghaire,104065013,1,4289_7778022_100060,4289_117 -4289_75958,92,4289_9614,Dun Laoghaire,103622377,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9615,Dun Laoghaire,103732377,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9616,Dun Laoghaire,103842377,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9617,Dun Laoghaire,103952377,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9623,Dun Laoghaire,104065119,1,4289_7778022_100060,4289_117 -4289_75958,92,4289_9629,Dun Laoghaire,103622499,1,4289_7778022_100140,4289_116 -4289_75960,92,4289_963,Dublin Airport,103622807,1,4289_7778022_103502,4289_3 -4289_75958,93,4289_9630,Dun Laoghaire,103732499,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9631,Dun Laoghaire,103842499,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9632,Dun Laoghaire,103952499,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9638,Dun Laoghaire,104065237,1,4289_7778022_100060,4289_116 -4289_75960,93,4289_964,Dublin Airport,103732807,1,4289_7778022_103502,4289_3 -4289_75958,92,4289_9648,Dun Laoghaire,103622615,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9649,Dun Laoghaire,103732615,1,4289_7778022_100140,4289_116 -4289_75960,94,4289_965,Dublin Airport,103842807,1,4289_7778022_103502,4289_3 -4289_75958,94,4289_9650,Dun Laoghaire,103842615,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9651,Dun Laoghaire,103952615,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9657,Dun Laoghaire,104065339,1,4289_7778022_100060,4289_116 -4289_75960,95,4289_966,Dublin Airport,103952807,1,4289_7778022_103502,4289_3 -4289_75958,92,4289_9663,Dun Laoghaire,103622735,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9664,Dun Laoghaire,103732735,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9665,Dun Laoghaire,103842735,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9666,Dun Laoghaire,103952735,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9672,Dun Laoghaire,104065433,1,4289_7778022_100060,4289_116 -4289_75958,92,4289_9678,Dun Laoghaire,103622833,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9679,Dun Laoghaire,103732833,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9680,Dun Laoghaire,103842833,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9681,Dun Laoghaire,103952833,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9687,Dun Laoghaire,104065523,1,4289_7778022_100120,4289_116 -4289_75958,92,4289_9693,Dun Laoghaire,103622931,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9694,Dun Laoghaire,103732931,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9695,Dun Laoghaire,103842931,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9696,Dun Laoghaire,103952931,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9702,Dun Laoghaire,104065611,1,4289_7778022_100120,4289_116 -4289_75958,92,4289_9708,Dun Laoghaire,103623029,1,4289_7778022_100140,4289_116 -4289_75958,93,4289_9709,Dun Laoghaire,103733029,1,4289_7778022_100140,4289_116 -4289_75958,94,4289_9710,Dun Laoghaire,103843029,1,4289_7778022_100140,4289_116 -4289_75958,95,4289_9711,Dun Laoghaire,103953029,1,4289_7778022_100140,4289_116 -4289_75958,96,4289_9717,Dun Laoghaire,104065699,1,4289_7778022_100120,4289_116 -4289_75960,96,4289_972,Dublin Airport,104065533,1,4289_7778022_103102,4289_3 -4289_75959,92,4289_9723,Dun Laoghaire,103621048,0,4289_7778022_100100,4289_118 -4289_75959,93,4289_9724,Dun Laoghaire,103731048,0,4289_7778022_100100,4289_118 -4289_75959,94,4289_9725,Dun Laoghaire,103841048,0,4289_7778022_100100,4289_118 -4289_75959,95,4289_9726,Dun Laoghaire,103951048,0,4289_7778022_100100,4289_118 -4289_75959,96,4289_9732,Dun Laoghaire,104064048,0,4289_7778022_100030,4289_118 -4289_75959,92,4289_9734,Dun Laoghaire,103621098,0,4289_7778022_100040,4289_118 -4289_75959,93,4289_9735,Dun Laoghaire,103731098,0,4289_7778022_100040,4289_118 -4289_75959,94,4289_9736,Dun Laoghaire,103841098,0,4289_7778022_100040,4289_118 -4289_75959,95,4289_9737,Dun Laoghaire,103951098,0,4289_7778022_100040,4289_118 -4289_75959,96,4289_9743,Dun Laoghaire,104064092,0,4289_7778022_100070,4289_118 -4289_75959,92,4289_9745,Dun Laoghaire,103621168,0,4289_7778022_100130,4289_118 -4289_75959,93,4289_9746,Dun Laoghaire,103731168,0,4289_7778022_100130,4289_118 -4289_75959,94,4289_9747,Dun Laoghaire,103841168,0,4289_7778022_100130,4289_118 -4289_75959,95,4289_9748,Dun Laoghaire,103951168,0,4289_7778022_100130,4289_118 -4289_75959,96,4289_9754,Dun Laoghaire,104064134,0,4289_7778022_100080,4289_118 -4289_75959,92,4289_9756,Dun Laoghaire,103621222,0,4289_7778022_100110,4289_118 -4289_75959,93,4289_9757,Dun Laoghaire,103731222,0,4289_7778022_100110,4289_118 -4289_75959,94,4289_9758,Dun Laoghaire,103841222,0,4289_7778022_100110,4289_118 -4289_75959,95,4289_9759,Dun Laoghaire,103951222,0,4289_7778022_100110,4289_118 -4289_75959,92,4289_9766,Dun Laoghaire,103621314,0,4289_7778022_100100,4289_118 -4289_75959,93,4289_9767,Dun Laoghaire,103731314,0,4289_7778022_100100,4289_118 -4289_75959,94,4289_9768,Dun Laoghaire,103841314,0,4289_7778022_100100,4289_118 -4289_75959,95,4289_9769,Dun Laoghaire,103951314,0,4289_7778022_100100,4289_118 -4289_75959,96,4289_9775,Dun Laoghaire,104064180,0,4289_7778022_100030,4289_118 -4289_75959,92,4289_9777,Dun Laoghaire,103621384,0,4289_7778022_100120,4289_119 -4289_75959,93,4289_9778,Dun Laoghaire,103731384,0,4289_7778022_100120,4289_119 -4289_75959,94,4289_9779,Dun Laoghaire,103841384,0,4289_7778022_100120,4289_119 -4289_75960,92,4289_978,Dublin Airport,103622851,1,4289_7778022_103104,4289_3 -4289_75959,95,4289_9780,Dun Laoghaire,103951384,0,4289_7778022_100120,4289_119 -4289_75959,96,4289_9786,Dun Laoghaire,104064224,0,4289_7778022_100070,4289_118 -4289_75960,93,4289_979,Dublin Airport,103732851,1,4289_7778022_103104,4289_3 -4289_75959,96,4289_9795,Dun Laoghaire,104064276,0,4289_7778022_100080,4289_118 -4289_75959,92,4289_9797,Dun Laoghaire,103621460,0,4289_7778022_100130,4289_119 -4289_75959,93,4289_9798,Dun Laoghaire,103731460,0,4289_7778022_100130,4289_119 -4289_75959,94,4289_9799,Dun Laoghaire,103841460,0,4289_7778022_100130,4289_119 -4289_75960,92,4289_98,Sutton Station,103621506,0,4289_7778022_103108,4289_1 -4289_75960,94,4289_980,Dublin Airport,103842851,1,4289_7778022_103104,4289_3 -4289_75959,95,4289_9800,Dun Laoghaire,103951460,0,4289_7778022_100130,4289_119 -4289_75960,95,4289_981,Dublin Airport,103952851,1,4289_7778022_103104,4289_3 -4289_75959,92,4289_9811,Dun Laoghaire,103621516,0,4289_7778022_100110,4289_119 -4289_75959,93,4289_9812,Dun Laoghaire,103731516,0,4289_7778022_100110,4289_119 -4289_75959,94,4289_9813,Dun Laoghaire,103841516,0,4289_7778022_100110,4289_119 -4289_75959,95,4289_9814,Dun Laoghaire,103951516,0,4289_7778022_100110,4289_119 -4289_75959,96,4289_9820,Dun Laoghaire,104064348,0,4289_7778022_100030,4289_118 -4289_75959,92,4289_9826,Dun Laoghaire,103621568,0,4289_7778022_100100,4289_119 -4289_75959,93,4289_9827,Dun Laoghaire,103731568,0,4289_7778022_100100,4289_119 -4289_75959,94,4289_9828,Dun Laoghaire,103841568,0,4289_7778022_100100,4289_119 -4289_75959,95,4289_9829,Dun Laoghaire,103951568,0,4289_7778022_100100,4289_119 -4289_75959,96,4289_9835,Dun Laoghaire,104064390,0,4289_7778022_100070,4289_119 -4289_75959,96,4289_9840,Dun Laoghaire,104064446,0,4289_7778022_100110,4289_119 -4289_75959,92,4289_9842,Dun Laoghaire,103621680,0,4289_7778022_100130,4289_119 -4289_75959,93,4289_9843,Dun Laoghaire,103731680,0,4289_7778022_100130,4289_119 -4289_75959,94,4289_9844,Dun Laoghaire,103841680,0,4289_7778022_100130,4289_119 -4289_75959,95,4289_9845,Dun Laoghaire,103951680,0,4289_7778022_100130,4289_119 -4289_75959,96,4289_9851,Dun Laoghaire,104064496,0,4289_7778022_100080,4289_119 -4289_75959,92,4289_9857,Dun Laoghaire,103621738,0,4289_7778022_100110,4289_119 -4289_75959,93,4289_9858,Dun Laoghaire,103731738,0,4289_7778022_100110,4289_119 -4289_75959,94,4289_9859,Dun Laoghaire,103841738,0,4289_7778022_100110,4289_119 -4289_75959,95,4289_9860,Dun Laoghaire,103951738,0,4289_7778022_100110,4289_119 -4289_75959,96,4289_9866,Dun Laoghaire,104064550,0,4289_7778022_100030,4289_119 -4289_75960,96,4289_987,Dublin Airport,104065585,1,4289_7778022_103501,4289_3 -4289_75959,92,4289_9872,Dun Laoghaire,103621792,0,4289_7778022_100100,4289_119 -4289_75959,93,4289_9873,Dun Laoghaire,103731792,0,4289_7778022_100100,4289_119 -4289_75959,94,4289_9874,Dun Laoghaire,103841792,0,4289_7778022_100100,4289_119 -4289_75959,95,4289_9875,Dun Laoghaire,103951792,0,4289_7778022_100100,4289_119 -4289_75959,96,4289_9881,Dun Laoghaire,104064602,0,4289_7778022_100070,4289_120 -4289_75959,92,4289_9887,Dun Laoghaire,103621848,0,4289_7778022_100120,4289_119 -4289_75959,93,4289_9888,Dun Laoghaire,103731848,0,4289_7778022_100120,4289_119 -4289_75959,94,4289_9889,Dun Laoghaire,103841848,0,4289_7778022_100120,4289_119 -4289_75959,95,4289_9890,Dun Laoghaire,103951848,0,4289_7778022_100120,4289_119 -4289_75959,96,4289_9896,Dun Laoghaire,104064656,0,4289_7778022_100110,4289_120 -4289_75960,93,4289_99,Sutton Station,103731506,0,4289_7778022_103108,4289_1 -4289_75959,92,4289_9902,Dun Laoghaire,103621906,0,4289_7778022_100130,4289_119 -4289_75959,93,4289_9903,Dun Laoghaire,103731906,0,4289_7778022_100130,4289_119 -4289_75959,94,4289_9904,Dun Laoghaire,103841906,0,4289_7778022_100130,4289_119 -4289_75959,95,4289_9905,Dun Laoghaire,103951906,0,4289_7778022_100130,4289_119 -4289_75959,96,4289_9911,Dun Laoghaire,104064708,0,4289_7778022_100080,4289_120 -4289_75959,92,4289_9917,Dun Laoghaire,103621960,0,4289_7778022_100110,4289_119 -4289_75959,93,4289_9918,Dun Laoghaire,103731960,0,4289_7778022_100110,4289_119 -4289_75959,94,4289_9919,Dun Laoghaire,103841960,0,4289_7778022_100110,4289_119 -4289_75959,95,4289_9920,Dun Laoghaire,103951960,0,4289_7778022_100110,4289_119 -4289_75959,96,4289_9926,Dun Laoghaire,104064766,0,4289_7778022_100030,4289_120 -4289_75960,92,4289_993,Dublin Airport,103622907,1,4289_7778022_103503,4289_3 -4289_75959,92,4289_9932,Dun Laoghaire,103622016,0,4289_7778022_100100,4289_119 -4289_75959,93,4289_9933,Dun Laoghaire,103732016,0,4289_7778022_100100,4289_119 -4289_75959,94,4289_9934,Dun Laoghaire,103842016,0,4289_7778022_100100,4289_119 -4289_75959,95,4289_9935,Dun Laoghaire,103952016,0,4289_7778022_100100,4289_119 -4289_75960,93,4289_994,Dublin Airport,103732907,1,4289_7778022_103503,4289_3 -4289_75959,96,4289_9941,Dun Laoghaire,104064816,0,4289_7778022_100070,4289_120 -4289_75959,92,4289_9947,Dun Laoghaire,103622078,0,4289_7778022_100120,4289_119 -4289_75959,93,4289_9948,Dun Laoghaire,103732078,0,4289_7778022_100120,4289_119 -4289_75959,94,4289_9949,Dun Laoghaire,103842078,0,4289_7778022_100120,4289_119 -4289_75960,94,4289_995,Dublin Airport,103842907,1,4289_7778022_103503,4289_3 -4289_75959,95,4289_9950,Dun Laoghaire,103952078,0,4289_7778022_100120,4289_119 -4289_75959,96,4289_9956,Dun Laoghaire,104064872,0,4289_7778022_100110,4289_120 -4289_75960,95,4289_996,Dublin Airport,103952907,1,4289_7778022_103503,4289_3 -4289_75959,96,4289_9961,Dun Laoghaire,104064926,0,4289_7778022_100080,4289_119 -4289_75959,92,4289_9967,Dun Laoghaire,103622172,0,4289_7778022_100130,4289_119 -4289_75959,93,4289_9968,Dun Laoghaire,103732172,0,4289_7778022_100130,4289_119 -4289_75959,94,4289_9969,Dun Laoghaire,103842172,0,4289_7778022_100130,4289_119 -4289_75959,95,4289_9970,Dun Laoghaire,103952172,0,4289_7778022_100130,4289_119 -4289_75959,96,4289_9976,Dun Laoghaire,104064978,0,4289_7778022_100120,4289_119 -4289_75959,92,4289_9982,Dun Laoghaire,103622232,0,4289_7778022_100110,4289_119 -4289_75959,93,4289_9983,Dun Laoghaire,103732232,0,4289_7778022_100110,4289_119 -4289_75959,94,4289_9984,Dun Laoghaire,103842232,0,4289_7778022_100110,4289_119 -4289_75959,95,4289_9985,Dun Laoghaire,103952232,0,4289_7778022_100110,4289_119 -4289_75959,96,4289_9991,Dun Laoghaire,104065028,0,4289_7778022_100070,4289_119 -4289_75959,92,4289_9997,Dun Laoghaire,103622306,0,4289_7778022_100100,4289_119 -4289_75959,93,4289_9998,Dun Laoghaire,103732306,0,4289_7778022_100100,4289_119 -4289_75959,94,4289_9999,Dun Laoghaire,103842306,0,4289_7778022_100100,4289_119 -4318_78159,131,4318_1,The Quay,1-00002-1,0,4318_7778009_6010801,4318_1 -4318_78159,140,4318_10,The Quay,2664-00015-1,0,4318_7778009_6010801,4318_1 -4318_78159,146,4318_100,The Quay,2687-00013-1,0,4318_7778009_6010801,4318_1 -4318_78161,134,4318_1000,The Quay,101-00005-1,0,4318_7778009_6010801,4318_4 -4318_78161,135,4318_1001,The Quay,125-00006-1,0,4318_7778009_6010801,4318_4 -4318_78161,142,4318_1002,The Quay,340-00007-1,0,4318_7778009_6010802,4318_5 -4318_78161,136,4318_1003,The Quay,2739-00009-1,0,4318_7778009_6010801,4318_4 -4318_78161,137,4318_1004,The Quay,2740-00010-1,0,4318_7778009_6010801,4318_4 -4318_78161,138,4318_1005,The Quay,34-00011-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1006,The Quay,2737-00014-1,0,4318_7778009_6010801,4318_4 -4318_78161,140,4318_1007,The Quay,2738-00015-1,0,4318_7778009_6010801,4318_4 -4318_78161,141,4318_1008,The Quay,2736-00016-1,0,4318_7778009_6010801,4318_4 -4318_78161,143,4318_1009,The Quay,2931-00017-1,0,4318_7778009_6010802,4318_5 -4318_78159,143,4318_101,The Quay,2681-00017-1,0,4318_7778009_6010801,4318_2 -4318_78161,144,4318_1010,The Quay,175-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1011,The Quay,2741-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,146,4318_1012,The Quay,2742-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1013,The Quay,389-00002-1,0,4318_7778009_6010803,4318_4 -4318_78161,132,4318_1014,The Quay,404-00003-1,0,4318_7778009_6010803,4318_4 -4318_78161,133,4318_1015,The Quay,419-00004-1,0,4318_7778009_6010803,4318_4 -4318_78161,134,4318_1016,The Quay,434-00005-1,0,4318_7778009_6010803,4318_4 -4318_78161,135,4318_1017,The Quay,449-00006-1,0,4318_7778009_6010803,4318_4 -4318_78161,142,4318_1018,The Quay,151-00007-1,0,4318_7778009_6010801,4318_5 -4318_78161,136,4318_1019,The Quay,3123-00009-1,0,4318_7778009_6010803,4318_4 -4318_78159,131,4318_102,The Quay,194-00002-1,0,4318_7778009_6010802,4318_1 -4318_78161,137,4318_1020,The Quay,3119-00010-1,0,4318_7778009_6010803,4318_4 -4318_78161,138,4318_1021,The Quay,3120-00011-1,0,4318_7778009_6010803,4318_4 -4318_78161,139,4318_1022,The Quay,3122-00014-1,0,4318_7778009_6010803,4318_4 -4318_78161,140,4318_1023,The Quay,3124-00015-1,0,4318_7778009_6010803,4318_4 -4318_78161,141,4318_1024,The Quay,3121-00016-1,0,4318_7778009_6010803,4318_4 -4318_78161,143,4318_1025,The Quay,2743-00017-1,0,4318_7778009_6010801,4318_5 -4318_78161,131,4318_1026,The Quay,577-00002-1,0,4318_7778009_6010805,4318_4 -4318_78161,132,4318_1027,The Quay,591-00003-1,0,4318_7778009_6010805,4318_4 -4318_78161,133,4318_1028,The Quay,605-00004-1,0,4318_7778009_6010805,4318_4 -4318_78161,134,4318_1029,The Quay,619-00005-1,0,4318_7778009_6010805,4318_4 -4318_78159,132,4318_103,The Quay,218-00003-1,0,4318_7778009_6010802,4318_1 -4318_78161,135,4318_1030,The Quay,633-00006-1,0,4318_7778009_6010805,4318_4 -4318_78161,142,4318_1031,The Quay,643-00007-1,0,4318_7778009_6010805,4318_5 -4318_78161,136,4318_1032,The Quay,3342-00009-1,0,4318_7778009_6010805,4318_4 -4318_78161,137,4318_1033,The Quay,3344-00010-1,0,4318_7778009_6010805,4318_4 -4318_78161,138,4318_1034,The Quay,3345-00011-1,0,4318_7778009_6010805,4318_4 -4318_78161,139,4318_1035,The Quay,3343-00014-1,0,4318_7778009_6010805,4318_4 -4318_78161,140,4318_1036,The Quay,3341-00015-1,0,4318_7778009_6010805,4318_4 -4318_78161,141,4318_1037,The Quay,3340-00016-1,0,4318_7778009_6010805,4318_4 -4318_78161,143,4318_1038,The Quay,3346-00017-1,0,4318_7778009_6010805,4318_5 -4318_78161,144,4318_1039,The Quay,471-00001-1,0,4318_7778009_6010803,4318_4 -4318_78159,133,4318_104,The Quay,261-00004-1,0,4318_7778009_6010802,4318_1 -4318_78161,145,4318_1040,The Quay,3126-00008-1,0,4318_7778009_6010803,4318_4 -4318_78161,146,4318_1041,The Quay,3127-00013-1,0,4318_7778009_6010803,4318_4 -4318_78161,131,4318_1042,The Quay,201-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1043,The Quay,225-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1044,The Quay,268-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_1045,The Quay,292-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1046,The Quay,316-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1047,The Quay,563-00007-1,0,4318_7778009_6010804,4318_5 -4318_78161,136,4318_1048,The Quay,2944-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_1049,The Quay,2941-00010-1,0,4318_7778009_6010802,4318_4 -4318_78159,134,4318_105,The Quay,285-00005-1,0,4318_7778009_6010802,4318_1 -4318_78161,138,4318_1050,The Quay,249-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,139,4318_1051,The Quay,2942-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1052,The Quay,2940-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1053,The Quay,2943-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_1054,The Quay,3240-00017-1,0,4318_7778009_6010804,4318_5 -4318_78161,144,4318_1055,The Quay,365-00001-1,0,4318_7778009_6010802,4318_4 -4318_78161,145,4318_1056,The Quay,2945-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1057,The Quay,2946-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_1058,The Quay,487-00002-1,0,4318_7778009_6010804,4318_4 -4318_78161,132,4318_1059,The Quay,503-00003-1,0,4318_7778009_6010804,4318_4 -4318_78159,135,4318_106,The Quay,309-00006-1,0,4318_7778009_6010802,4318_1 -4318_78161,133,4318_1060,The Quay,519-00004-1,0,4318_7778009_6010804,4318_4 -4318_78161,134,4318_1061,The Quay,535-00005-1,0,4318_7778009_6010804,4318_4 -4318_78161,135,4318_1062,The Quay,551-00006-1,0,4318_7778009_6010804,4318_4 -4318_78161,142,4318_1063,The Quay,462-00007-1,0,4318_7778009_6010803,4318_5 -4318_78161,136,4318_1064,The Quay,3246-00009-1,0,4318_7778009_6010804,4318_4 -4318_78161,137,4318_1065,The Quay,3244-00010-1,0,4318_7778009_6010804,4318_4 -4318_78161,138,4318_1066,The Quay,3245-00011-1,0,4318_7778009_6010804,4318_4 -4318_78161,139,4318_1067,The Quay,3243-00014-1,0,4318_7778009_6010804,4318_4 -4318_78161,140,4318_1068,The Quay,3241-00015-1,0,4318_7778009_6010804,4318_4 -4318_78161,141,4318_1069,The Quay,3242-00016-1,0,4318_7778009_6010804,4318_4 -4318_78159,136,4318_107,The Quay,2878-00009-1,0,4318_7778009_6010802,4318_1 -4318_78161,143,4318_1070,The Quay,3134-00017-1,0,4318_7778009_6010803,4318_5 -4318_78161,131,4318_1071,The Quay,12-00002-1,0,4318_7778009_6010801,4318_4 -4318_78161,132,4318_1072,The Quay,55-00003-1,0,4318_7778009_6010801,4318_4 -4318_78161,133,4318_1073,The Quay,79-00004-1,0,4318_7778009_6010801,4318_4 -4318_78161,134,4318_1074,The Quay,103-00005-1,0,4318_7778009_6010801,4318_4 -4318_78161,135,4318_1075,The Quay,127-00006-1,0,4318_7778009_6010801,4318_4 -4318_78161,142,4318_1076,The Quay,342-00007-1,0,4318_7778009_6010802,4318_5 -4318_78161,136,4318_1077,The Quay,2753-00009-1,0,4318_7778009_6010801,4318_4 -4318_78161,137,4318_1078,The Quay,2755-00010-1,0,4318_7778009_6010801,4318_4 -4318_78161,138,4318_1079,The Quay,36-00011-1,0,4318_7778009_6010801,4318_4 -4318_78159,137,4318_108,The Quay,2881-00010-1,0,4318_7778009_6010802,4318_1 -4318_78161,139,4318_1080,The Quay,2752-00014-1,0,4318_7778009_6010801,4318_4 -4318_78161,140,4318_1081,The Quay,2756-00015-1,0,4318_7778009_6010801,4318_4 -4318_78161,141,4318_1082,The Quay,2754-00016-1,0,4318_7778009_6010801,4318_4 -4318_78161,143,4318_1083,The Quay,2947-00017-1,0,4318_7778009_6010802,4318_5 -4318_78161,144,4318_1084,The Quay,177-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1085,The Quay,2757-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,146,4318_1086,The Quay,2758-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1087,The Quay,391-00002-1,0,4318_7778009_6010803,4318_4 -4318_78161,132,4318_1088,The Quay,406-00003-1,0,4318_7778009_6010803,4318_4 -4318_78161,133,4318_1089,The Quay,421-00004-1,0,4318_7778009_6010803,4318_4 -4318_78159,138,4318_109,The Quay,242-00011-1,0,4318_7778009_6010802,4318_1 -4318_78161,134,4318_1090,The Quay,436-00005-1,0,4318_7778009_6010803,4318_4 -4318_78161,135,4318_1091,The Quay,451-00006-1,0,4318_7778009_6010803,4318_4 -4318_78161,142,4318_1092,The Quay,153-00007-1,0,4318_7778009_6010801,4318_5 -4318_78161,136,4318_1093,The Quay,3142-00009-1,0,4318_7778009_6010803,4318_4 -4318_78161,137,4318_1094,The Quay,3139-00010-1,0,4318_7778009_6010803,4318_4 -4318_78161,138,4318_1095,The Quay,3140-00011-1,0,4318_7778009_6010803,4318_4 -4318_78161,139,4318_1096,The Quay,3138-00014-1,0,4318_7778009_6010803,4318_4 -4318_78161,140,4318_1097,The Quay,3137-00015-1,0,4318_7778009_6010803,4318_4 -4318_78161,141,4318_1098,The Quay,3141-00016-1,0,4318_7778009_6010803,4318_4 -4318_78161,143,4318_1099,The Quay,2759-00017-1,0,4318_7778009_6010801,4318_5 -4318_78159,141,4318_11,The Quay,2665-00016-1,0,4318_7778009_6010801,4318_1 -4318_78159,139,4318_110,The Quay,2877-00014-1,0,4318_7778009_6010802,4318_1 -4318_78161,144,4318_1100,The Quay,473-00001-1,0,4318_7778009_6010803,4318_4 -4318_78161,145,4318_1101,The Quay,3144-00008-1,0,4318_7778009_6010803,4318_4 -4318_78161,146,4318_1102,The Quay,3145-00013-1,0,4318_7778009_6010803,4318_4 -4318_78161,131,4318_1103,The Quay,579-00002-1,0,4318_7778009_6010805,4318_4 -4318_78161,132,4318_1104,The Quay,593-00003-1,0,4318_7778009_6010805,4318_4 -4318_78161,133,4318_1105,The Quay,607-00004-1,0,4318_7778009_6010805,4318_4 -4318_78161,134,4318_1106,The Quay,621-00005-1,0,4318_7778009_6010805,4318_4 -4318_78161,135,4318_1107,The Quay,635-00006-1,0,4318_7778009_6010805,4318_4 -4318_78161,142,4318_1108,The Quay,645-00007-1,0,4318_7778009_6010805,4318_5 -4318_78161,136,4318_1109,The Quay,3359-00009-1,0,4318_7778009_6010805,4318_4 -4318_78159,140,4318_111,The Quay,2879-00015-1,0,4318_7778009_6010802,4318_1 -4318_78161,137,4318_1110,The Quay,3356-00010-1,0,4318_7778009_6010805,4318_4 -4318_78161,138,4318_1111,The Quay,3357-00011-1,0,4318_7778009_6010805,4318_4 -4318_78161,139,4318_1112,The Quay,3358-00014-1,0,4318_7778009_6010805,4318_4 -4318_78161,140,4318_1113,The Quay,3355-00015-1,0,4318_7778009_6010805,4318_4 -4318_78161,141,4318_1114,The Quay,3360-00016-1,0,4318_7778009_6010805,4318_4 -4318_78161,143,4318_1115,The Quay,3354-00017-1,0,4318_7778009_6010805,4318_5 -4318_78161,131,4318_1116,The Quay,203-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1117,The Quay,227-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1118,The Quay,270-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_1119,The Quay,294-00005-1,0,4318_7778009_6010802,4318_4 -4318_78159,141,4318_112,The Quay,2880-00016-1,0,4318_7778009_6010802,4318_1 -4318_78161,135,4318_1120,The Quay,318-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1121,The Quay,565-00007-1,0,4318_7778009_6010804,4318_5 -4318_78161,136,4318_1122,The Quay,2958-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_1123,The Quay,2960-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,138,4318_1124,The Quay,251-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,139,4318_1125,The Quay,2957-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1126,The Quay,2959-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1127,The Quay,2956-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_1128,The Quay,3254-00017-1,0,4318_7778009_6010804,4318_5 -4318_78161,144,4318_1129,The Quay,367-00001-1,0,4318_7778009_6010802,4318_4 -4318_78159,144,4318_113,The Quay,167-00001-1,0,4318_7778009_6010801,4318_1 -4318_78161,145,4318_1130,The Quay,2961-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1131,The Quay,2962-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_1132,The Quay,489-00002-1,0,4318_7778009_6010804,4318_4 -4318_78161,132,4318_1133,The Quay,505-00003-1,0,4318_7778009_6010804,4318_4 -4318_78161,133,4318_1134,The Quay,521-00004-1,0,4318_7778009_6010804,4318_4 -4318_78161,134,4318_1135,The Quay,537-00005-1,0,4318_7778009_6010804,4318_4 -4318_78161,135,4318_1136,The Quay,553-00006-1,0,4318_7778009_6010804,4318_4 -4318_78161,142,4318_1137,The Quay,464-00007-1,0,4318_7778009_6010803,4318_5 -4318_78161,136,4318_1138,The Quay,3258-00009-1,0,4318_7778009_6010804,4318_4 -4318_78161,137,4318_1139,The Quay,3259-00010-1,0,4318_7778009_6010804,4318_4 -4318_78159,131,4318_114,The Quay,480-00002-1,0,4318_7778009_6010804,4318_2 -4318_78161,138,4318_1140,The Quay,3260-00011-1,0,4318_7778009_6010804,4318_4 -4318_78161,139,4318_1141,The Quay,3257-00014-1,0,4318_7778009_6010804,4318_4 -4318_78161,140,4318_1142,The Quay,3255-00015-1,0,4318_7778009_6010804,4318_4 -4318_78161,141,4318_1143,The Quay,3256-00016-1,0,4318_7778009_6010804,4318_4 -4318_78161,143,4318_1144,The Quay,3152-00017-1,0,4318_7778009_6010803,4318_5 -4318_78161,144,4318_1145,The Quay,179-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1146,The Quay,2768-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,146,4318_1147,The Quay,2769-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1148,The Quay,14-00002-1,0,4318_7778009_6010801,4318_4 -4318_78161,132,4318_1149,The Quay,57-00003-1,0,4318_7778009_6010801,4318_4 -4318_78159,132,4318_115,The Quay,496-00003-1,0,4318_7778009_6010804,4318_2 -4318_78161,133,4318_1150,The Quay,81-00004-1,0,4318_7778009_6010801,4318_4 -4318_78161,134,4318_1151,The Quay,105-00005-1,0,4318_7778009_6010801,4318_4 -4318_78161,135,4318_1152,The Quay,129-00006-1,0,4318_7778009_6010801,4318_4 -4318_78161,142,4318_1153,The Quay,344-00007-1,0,4318_7778009_6010802,4318_5 -4318_78161,136,4318_1154,The Quay,2770-00009-1,0,4318_7778009_6010801,4318_4 -4318_78161,137,4318_1155,The Quay,2772-00010-1,0,4318_7778009_6010801,4318_4 -4318_78161,138,4318_1156,The Quay,38-00011-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1157,The Quay,2773-00014-1,0,4318_7778009_6010801,4318_4 -4318_78161,140,4318_1158,The Quay,2774-00015-1,0,4318_7778009_6010801,4318_4 -4318_78161,141,4318_1159,The Quay,2771-00016-1,0,4318_7778009_6010801,4318_4 -4318_78159,133,4318_116,The Quay,512-00004-1,0,4318_7778009_6010804,4318_2 -4318_78161,143,4318_1160,The Quay,2963-00017-1,0,4318_7778009_6010802,4318_5 -4318_78161,131,4318_1161,The Quay,393-00002-1,0,4318_7778009_6010803,4318_4 -4318_78161,132,4318_1162,The Quay,408-00003-1,0,4318_7778009_6010803,4318_4 -4318_78161,133,4318_1163,The Quay,423-00004-1,0,4318_7778009_6010803,4318_4 -4318_78161,134,4318_1164,The Quay,438-00005-1,0,4318_7778009_6010803,4318_4 -4318_78161,135,4318_1165,The Quay,453-00006-1,0,4318_7778009_6010803,4318_4 -4318_78161,142,4318_1166,The Quay,465-00007-1,0,4318_7778009_6010803,4318_5 -4318_78161,136,4318_1167,The Quay,3161-00009-1,0,4318_7778009_6010803,4318_4 -4318_78161,137,4318_1168,The Quay,3155-00010-1,0,4318_7778009_6010803,4318_4 -4318_78161,138,4318_1169,The Quay,3156-00011-1,0,4318_7778009_6010803,4318_4 -4318_78159,134,4318_117,The Quay,528-00005-1,0,4318_7778009_6010804,4318_2 -4318_78161,139,4318_1170,The Quay,3158-00014-1,0,4318_7778009_6010803,4318_4 -4318_78161,140,4318_1171,The Quay,3157-00015-1,0,4318_7778009_6010803,4318_4 -4318_78161,141,4318_1172,The Quay,3160-00016-1,0,4318_7778009_6010803,4318_4 -4318_78161,143,4318_1173,The Quay,3159-00017-1,0,4318_7778009_6010803,4318_5 -4318_78161,144,4318_1174,The Quay,475-00001-1,0,4318_7778009_6010803,4318_4 -4318_78161,145,4318_1175,The Quay,3162-00008-1,0,4318_7778009_6010803,4318_4 -4318_78161,146,4318_1176,The Quay,3163-00013-1,0,4318_7778009_6010803,4318_4 -4318_78161,131,4318_1177,The Quay,581-00002-1,0,4318_7778009_6010805,4318_4 -4318_78161,132,4318_1178,The Quay,595-00003-1,0,4318_7778009_6010805,4318_4 -4318_78161,133,4318_1179,The Quay,609-00004-1,0,4318_7778009_6010805,4318_4 -4318_78159,135,4318_118,The Quay,544-00006-1,0,4318_7778009_6010804,4318_2 -4318_78161,134,4318_1180,The Quay,623-00005-1,0,4318_7778009_6010805,4318_4 -4318_78161,135,4318_1181,The Quay,637-00006-1,0,4318_7778009_6010805,4318_4 -4318_78161,142,4318_1182,The Quay,647-00007-1,0,4318_7778009_6010805,4318_5 -4318_78161,136,4318_1183,The Quay,3372-00009-1,0,4318_7778009_6010805,4318_4 -4318_78161,137,4318_1184,The Quay,3370-00010-1,0,4318_7778009_6010805,4318_4 -4318_78161,138,4318_1185,The Quay,3371-00011-1,0,4318_7778009_6010805,4318_4 -4318_78161,139,4318_1186,The Quay,3369-00014-1,0,4318_7778009_6010805,4318_4 -4318_78161,140,4318_1187,The Quay,3368-00015-1,0,4318_7778009_6010805,4318_4 -4318_78161,141,4318_1188,The Quay,3374-00016-1,0,4318_7778009_6010805,4318_4 -4318_78161,143,4318_1189,The Quay,3373-00017-1,0,4318_7778009_6010805,4318_5 -4318_78159,142,4318_119,The Quay,455-00007-1,0,4318_7778009_6010803,4318_3 -4318_78161,144,4318_1190,The Quay,369-00001-1,0,4318_7778009_6010802,4318_4 -4318_78161,145,4318_1191,The Quay,2972-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1192,The Quay,2973-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_1193,The Quay,205-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1194,The Quay,229-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1195,The Quay,272-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_1196,The Quay,296-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1197,The Quay,320-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1198,The Quay,567-00007-1,0,4318_7778009_6010804,4318_5 -4318_78161,136,4318_1199,The Quay,2977-00009-1,0,4318_7778009_6010802,4318_4 -4318_78159,131,4318_12,The Quay,380-00002-1,0,4318_7778009_6010803,4318_1 -4318_78159,145,4318_120,The Quay,2689-00008-1,0,4318_7778009_6010801,4318_1 -4318_78161,137,4318_1200,The Quay,2978-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,138,4318_1201,The Quay,253-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,139,4318_1202,The Quay,2975-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1203,The Quay,2974-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1204,The Quay,2976-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_1205,The Quay,3268-00017-1,0,4318_7778009_6010804,4318_5 -4318_78161,131,4318_1206,The Quay,491-00002-1,0,4318_7778009_6010804,4318_4 -4318_78161,132,4318_1207,The Quay,507-00003-1,0,4318_7778009_6010804,4318_4 -4318_78161,133,4318_1208,The Quay,523-00004-1,0,4318_7778009_6010804,4318_4 -4318_78161,134,4318_1209,The Quay,539-00005-1,0,4318_7778009_6010804,4318_4 -4318_78159,136,4318_121,The Quay,3194-00009-1,0,4318_7778009_6010804,4318_2 -4318_78161,135,4318_1210,The Quay,555-00006-1,0,4318_7778009_6010804,4318_4 -4318_78161,142,4318_1211,The Quay,156-00007-1,0,4318_7778009_6010801,4318_5 -4318_78161,136,4318_1212,The Quay,3274-00009-1,0,4318_7778009_6010804,4318_4 -4318_78161,137,4318_1213,The Quay,3270-00010-1,0,4318_7778009_6010804,4318_4 -4318_78161,138,4318_1214,The Quay,3271-00011-1,0,4318_7778009_6010804,4318_4 -4318_78161,139,4318_1215,The Quay,3273-00014-1,0,4318_7778009_6010804,4318_4 -4318_78161,140,4318_1216,The Quay,3272-00015-1,0,4318_7778009_6010804,4318_4 -4318_78161,141,4318_1217,The Quay,3269-00016-1,0,4318_7778009_6010804,4318_4 -4318_78161,143,4318_1218,The Quay,2783-00017-1,0,4318_7778009_6010801,4318_5 -4318_78161,144,4318_1219,The Quay,181-00001-1,0,4318_7778009_6010801,4318_4 -4318_78159,137,4318_122,The Quay,3196-00010-1,0,4318_7778009_6010804,4318_2 -4318_78161,145,4318_1220,The Quay,2784-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,146,4318_1221,The Quay,2785-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,144,4318_1222,The Quay,182-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1223,The Quay,206-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1224,The Quay,230-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1225,The Quay,273-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_1226,The Quay,297-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1227,The Quay,321-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1228,The Quay,157-00007-1,0,4318_7778009_6010801,4318_5 -4318_78161,145,4318_1229,The Quay,2792-00008-1,0,4318_7778009_6010801,4318_4 -4318_78159,138,4318_123,The Quay,3197-00011-1,0,4318_7778009_6010804,4318_2 -4318_78161,136,4318_1230,The Quay,2984-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_1231,The Quay,2982-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,138,4318_1232,The Quay,254-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1233,The Quay,2793-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1234,The Quay,2985-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1235,The Quay,2983-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1236,The Quay,2986-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_1237,The Quay,2791-00017-1,0,4318_7778009_6010801,4318_5 -4318_78161,144,4318_1238,The Quay,183-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1239,The Quay,207-00002-1,0,4318_7778009_6010802,4318_5 -4318_78159,146,4318_124,The Quay,2690-00013-1,0,4318_7778009_6010801,4318_1 -4318_78161,132,4318_1240,The Quay,231-00003-1,0,4318_7778009_6010802,4318_5 -4318_78161,133,4318_1241,The Quay,274-00004-1,0,4318_7778009_6010802,4318_5 -4318_78161,134,4318_1242,The Quay,298-00005-1,0,4318_7778009_6010802,4318_5 -4318_78161,135,4318_1243,The Quay,322-00006-1,0,4318_7778009_6010802,4318_5 -4318_78161,142,4318_1244,The Quay,158-00007-1,0,4318_7778009_6010801,4318_6 -4318_78161,145,4318_1245,The Quay,2795-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_1246,The Quay,2992-00009-1,0,4318_7778009_6010802,4318_5 -4318_78161,137,4318_1247,The Quay,2990-00010-1,0,4318_7778009_6010802,4318_5 -4318_78161,138,4318_1248,The Quay,255-00011-1,0,4318_7778009_6010802,4318_5 -4318_78161,146,4318_1249,The Quay,2796-00013-1,0,4318_7778009_6010801,4318_4 -4318_78159,139,4318_125,The Quay,3192-00014-1,0,4318_7778009_6010804,4318_2 -4318_78161,139,4318_1250,The Quay,2991-00014-1,0,4318_7778009_6010802,4318_5 -4318_78161,140,4318_1251,The Quay,2993-00015-1,0,4318_7778009_6010802,4318_5 -4318_78161,141,4318_1252,The Quay,2989-00016-1,0,4318_7778009_6010802,4318_5 -4318_78161,143,4318_1253,The Quay,2794-00017-1,0,4318_7778009_6010801,4318_6 -4318_78161,144,4318_1254,The Quay,184-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1255,The Quay,208-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1256,The Quay,232-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1257,The Quay,275-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_1258,The Quay,299-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1259,The Quay,323-00006-1,0,4318_7778009_6010802,4318_4 -4318_78159,140,4318_126,The Quay,3195-00015-1,0,4318_7778009_6010804,4318_2 -4318_78161,142,4318_1260,The Quay,159-00007-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1261,The Quay,2802-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_1262,The Quay,3001-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_1263,The Quay,3000-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,138,4318_1264,The Quay,256-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1265,The Quay,2803-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1266,The Quay,2997-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1267,The Quay,2999-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1268,The Quay,2998-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_1269,The Quay,2804-00017-1,0,4318_7778009_6010801,4318_4 -4318_78159,141,4318_127,The Quay,3193-00016-1,0,4318_7778009_6010804,4318_2 -4318_78161,144,4318_1270,The Quay,185-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1271,The Quay,209-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1272,The Quay,233-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1273,The Quay,276-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_1274,The Quay,300-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1275,The Quay,324-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1276,The Quay,160-00007-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1277,The Quay,2811-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_1278,The Quay,3005-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_1279,The Quay,3006-00010-1,0,4318_7778009_6010802,4318_4 -4318_78159,143,4318_128,The Quay,3077-00017-1,0,4318_7778009_6010803,4318_3 -4318_78161,138,4318_1280,The Quay,257-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1281,The Quay,2812-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1282,The Quay,3007-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1283,The Quay,3009-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1284,The Quay,3008-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_1285,The Quay,2810-00017-1,0,4318_7778009_6010801,4318_4 -4318_78161,144,4318_1286,The Quay,186-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1287,The Quay,210-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1288,The Quay,234-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1289,The Quay,277-00004-1,0,4318_7778009_6010802,4318_4 -4318_78159,131,4318_129,The Quay,5-00002-1,0,4318_7778009_6010801,4318_1 -4318_78161,134,4318_1290,The Quay,301-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1291,The Quay,325-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1292,The Quay,161-00007-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1293,The Quay,2818-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_1294,The Quay,3013-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_1295,The Quay,3016-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1296,The Quay,2819-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1297,The Quay,3017-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1298,The Quay,3015-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1299,The Quay,3014-00016-1,0,4318_7778009_6010802,4318_4 -4318_78159,132,4318_13,The Quay,395-00003-1,0,4318_7778009_6010803,4318_1 -4318_78159,132,4318_130,The Quay,48-00003-1,0,4318_7778009_6010801,4318_1 -4318_78161,143,4318_1300,The Quay,2820-00017-1,0,4318_7778009_6010801,4318_4 -4318_78161,144,4318_1301,The Quay,187-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1302,The Quay,211-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1303,The Quay,235-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1304,The Quay,278-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_1305,The Quay,302-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1306,The Quay,326-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1307,The Quay,162-00007-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1308,The Quay,2826-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_1309,The Quay,3025-00009-1,0,4318_7778009_6010802,4318_4 -4318_78159,133,4318_131,The Quay,72-00004-1,0,4318_7778009_6010801,4318_1 -4318_78161,137,4318_1310,The Quay,3021-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1311,The Quay,2827-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1312,The Quay,3023-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1313,The Quay,3022-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1314,The Quay,3024-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_1315,The Quay,2828-00017-1,0,4318_7778009_6010801,4318_4 -4318_78161,144,4318_1316,The Quay,188-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1317,The Quay,212-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1318,The Quay,236-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1319,The Quay,279-00004-1,0,4318_7778009_6010802,4318_4 -4318_78159,134,4318_132,The Quay,96-00005-1,0,4318_7778009_6010801,4318_1 -4318_78161,134,4318_1320,The Quay,303-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1321,The Quay,327-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1322,The Quay,163-00007-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1323,The Quay,2835-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_1324,The Quay,3029-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_1325,The Quay,3033-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1326,The Quay,2836-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1327,The Quay,3030-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1328,The Quay,3032-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1329,The Quay,3031-00016-1,0,4318_7778009_6010802,4318_4 -4318_78159,135,4318_133,The Quay,120-00006-1,0,4318_7778009_6010801,4318_1 -4318_78161,143,4318_1330,The Quay,2834-00017-1,0,4318_7778009_6010801,4318_4 -4318_78161,144,4318_1331,The Quay,189-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1332,The Quay,213-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1333,The Quay,237-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1334,The Quay,280-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_1335,The Quay,304-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1336,The Quay,328-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1337,The Quay,164-00007-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1338,The Quay,2842-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_1339,The Quay,3037-00009-1,0,4318_7778009_6010802,4318_4 -4318_78159,142,4318_134,The Quay,335-00007-1,0,4318_7778009_6010802,4318_2 -4318_78161,137,4318_1340,The Quay,3039-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1341,The Quay,2843-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1342,The Quay,3041-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1343,The Quay,3038-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1344,The Quay,3040-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_1345,The Quay,2844-00017-1,0,4318_7778009_6010801,4318_4 -4318_78161,144,4318_1346,The Quay,190-00001-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_1347,The Quay,214-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_1348,The Quay,238-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_1349,The Quay,281-00004-1,0,4318_7778009_6010802,4318_4 -4318_78159,136,4318_135,The Quay,2692-00009-1,0,4318_7778009_6010801,4318_1 -4318_78161,134,4318_1350,The Quay,305-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_1351,The Quay,329-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_1352,The Quay,165-00007-1,0,4318_7778009_6010801,4318_4 -4318_78161,145,4318_1353,The Quay,2850-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_1354,The Quay,3047-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_1355,The Quay,3046-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_1356,The Quay,2851-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_1357,The Quay,3049-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_1358,The Quay,3048-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_1359,The Quay,3045-00016-1,0,4318_7778009_6010802,4318_4 -4318_78159,137,4318_136,The Quay,2693-00010-1,0,4318_7778009_6010801,4318_1 -4318_78161,143,4318_1360,The Quay,2852-00017-1,0,4318_7778009_6010801,4318_4 -4318_78160,131,4318_1361,The Quay,648-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1362,The Quay,677-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1363,The Quay,730-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1364,The Quay,759-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1365,The Quay,788-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,136,4318_1366,The Quay,3375-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1367,The Quay,3379-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1368,The Quay,706-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1369,The Quay,3377-00014-1,0,4318_7778009_6020801,4318_7 -4318_78159,138,4318_137,The Quay,29-00011-1,0,4318_7778009_6010801,4318_1 -4318_78160,140,4318_1370,The Quay,3376-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1371,The Quay,3378-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,131,4318_1372,The Quay,817-00002-1,0,4318_7778009_6020802,4318_7 -4318_78160,132,4318_1373,The Quay,835-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1374,The Quay,853-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1375,The Quay,871-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1376,The Quay,889-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,136,4318_1377,The Quay,3520-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1378,The Quay,3521-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1379,The Quay,3522-00011-1,0,4318_7778009_6020802,4318_7 -4318_78159,139,4318_138,The Quay,2694-00014-1,0,4318_7778009_6010801,4318_1 -4318_78160,139,4318_1380,The Quay,3523-00014-1,0,4318_7778009_6020802,4318_7 -4318_78160,140,4318_1381,The Quay,3525-00015-1,0,4318_7778009_6020802,4318_7 -4318_78160,141,4318_1382,The Quay,3524-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,131,4318_1383,The Quay,649-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1384,The Quay,678-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1385,The Quay,731-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1386,The Quay,760-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1387,The Quay,789-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,136,4318_1388,The Quay,3381-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1389,The Quay,3380-00010-1,0,4318_7778009_6020801,4318_7 -4318_78159,140,4318_139,The Quay,2696-00015-1,0,4318_7778009_6010801,4318_1 -4318_78160,138,4318_1390,The Quay,707-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1391,The Quay,3384-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1392,The Quay,3383-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1393,The Quay,3382-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,131,4318_1394,The Quay,818-00002-1,0,4318_7778009_6020802,4318_7 -4318_78160,132,4318_1395,The Quay,836-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1396,The Quay,854-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1397,The Quay,872-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1398,The Quay,890-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,136,4318_1399,The Quay,3529-00009-1,0,4318_7778009_6020802,4318_7 -4318_78159,133,4318_14,The Quay,410-00004-1,0,4318_7778009_6010803,4318_1 -4318_78159,141,4318_140,The Quay,2695-00016-1,0,4318_7778009_6010801,4318_1 -4318_78160,137,4318_1400,The Quay,3526-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1401,The Quay,3527-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1402,The Quay,3531-00014-1,0,4318_7778009_6020802,4318_7 -4318_78160,140,4318_1403,The Quay,3530-00015-1,0,4318_7778009_6020802,4318_7 -4318_78160,141,4318_1404,The Quay,3528-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,131,4318_1405,The Quay,650-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1406,The Quay,679-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1407,The Quay,732-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1408,The Quay,761-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1409,The Quay,790-00006-1,0,4318_7778009_6020801,4318_7 -4318_78159,143,4318_141,The Quay,2887-00017-1,0,4318_7778009_6010802,4318_2 -4318_78160,136,4318_1410,The Quay,3387-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1411,The Quay,3389-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1412,The Quay,708-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1413,The Quay,3386-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1414,The Quay,3388-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1415,The Quay,3385-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,131,4318_1416,The Quay,819-00002-1,0,4318_7778009_6020802,4318_7 -4318_78160,132,4318_1417,The Quay,837-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1418,The Quay,855-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1419,The Quay,873-00005-1,0,4318_7778009_6020802,4318_7 -4318_78159,144,4318_142,The Quay,168-00001-1,0,4318_7778009_6010801,4318_1 -4318_78160,135,4318_1420,The Quay,891-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,142,4318_1421,The Quay,907-00007-1,0,4318_7778009_6030801,4318_8 -4318_78160,136,4318_1422,The Quay,3534-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1423,The Quay,3536-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1424,The Quay,3537-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1425,The Quay,3533-00014-1,0,4318_7778009_6020802,4318_7 -4318_78160,140,4318_1426,The Quay,3535-00015-1,0,4318_7778009_6020802,4318_7 -4318_78160,141,4318_1427,The Quay,3532-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,143,4318_1428,The Quay,3628-00017-1,0,4318_7778009_6030801,4318_8 -4318_78160,131,4318_1429,The Quay,651-00002-1,0,4318_7778009_6020801,4318_7 -4318_78159,145,4318_143,The Quay,2697-00008-1,0,4318_7778009_6010801,4318_1 -4318_78160,132,4318_1430,The Quay,680-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1431,The Quay,733-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1432,The Quay,762-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1433,The Quay,791-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,136,4318_1434,The Quay,3391-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1435,The Quay,3392-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1436,The Quay,709-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1437,The Quay,3393-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1438,The Quay,3394-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1439,The Quay,3390-00016-1,0,4318_7778009_6020801,4318_7 -4318_78159,146,4318_144,The Quay,2698-00013-1,0,4318_7778009_6010801,4318_1 -4318_78160,144,4318_1440,The Quay,935-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,142,4318_1441,The Quay,908-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1442,The Quay,3629-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,143,4318_1443,The Quay,3630-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1444,The Quay,820-00002-1,0,4318_7778009_6020802,4318_7 -4318_78160,132,4318_1445,The Quay,838-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1446,The Quay,856-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1447,The Quay,874-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1448,The Quay,892-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,136,4318_1449,The Quay,3542-00009-1,0,4318_7778009_6020802,4318_7 -4318_78159,131,4318_145,The Quay,384-00002-1,0,4318_7778009_6010803,4318_1 -4318_78160,137,4318_1450,The Quay,3539-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1451,The Quay,3540-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1452,The Quay,3538-00014-1,0,4318_7778009_6020802,4318_7 -4318_78160,140,4318_1453,The Quay,3541-00015-1,0,4318_7778009_6020802,4318_7 -4318_78160,141,4318_1454,The Quay,3543-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,144,4318_1455,The Quay,936-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1456,The Quay,652-00002-1,0,4318_7778009_6020801,4318_8 -4318_78160,132,4318_1457,The Quay,681-00003-1,0,4318_7778009_6020801,4318_8 -4318_78160,133,4318_1458,The Quay,734-00004-1,0,4318_7778009_6020801,4318_8 -4318_78160,134,4318_1459,The Quay,763-00005-1,0,4318_7778009_6020801,4318_8 -4318_78159,132,4318_146,The Quay,399-00003-1,0,4318_7778009_6010803,4318_1 -4318_78160,135,4318_1460,The Quay,792-00006-1,0,4318_7778009_6020801,4318_8 -4318_78160,142,4318_1461,The Quay,909-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1462,The Quay,3631-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1463,The Quay,3399-00009-1,0,4318_7778009_6020801,4318_8 -4318_78160,137,4318_1464,The Quay,3396-00010-1,0,4318_7778009_6020801,4318_8 -4318_78160,138,4318_1465,The Quay,710-00011-1,0,4318_7778009_6020801,4318_8 -4318_78160,146,4318_1466,The Quay,966-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1467,The Quay,3395-00014-1,0,4318_7778009_6020801,4318_8 -4318_78160,140,4318_1468,The Quay,3397-00015-1,0,4318_7778009_6020801,4318_8 -4318_78160,141,4318_1469,The Quay,3398-00016-1,0,4318_7778009_6020801,4318_8 -4318_78159,133,4318_147,The Quay,414-00004-1,0,4318_7778009_6010803,4318_1 -4318_78160,143,4318_1470,The Quay,3632-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1471,The Quay,821-00002-1,0,4318_7778009_6020802,4318_7 -4318_78160,132,4318_1472,The Quay,839-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1473,The Quay,857-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1474,The Quay,875-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1475,The Quay,893-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,136,4318_1476,The Quay,3544-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1477,The Quay,3545-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1478,The Quay,3546-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1479,The Quay,3548-00014-1,0,4318_7778009_6020802,4318_7 -4318_78159,134,4318_148,The Quay,429-00005-1,0,4318_7778009_6010803,4318_1 -4318_78160,140,4318_1480,The Quay,3547-00015-1,0,4318_7778009_6020802,4318_7 -4318_78160,141,4318_1481,The Quay,3549-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,144,4318_1482,The Quay,937-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,142,4318_1483,The Quay,910-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1484,The Quay,3633-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,146,4318_1485,The Quay,967-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,143,4318_1486,The Quay,3634-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1487,The Quay,653-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1488,The Quay,682-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1489,The Quay,735-00004-1,0,4318_7778009_6020801,4318_7 -4318_78159,135,4318_149,The Quay,444-00006-1,0,4318_7778009_6010803,4318_1 -4318_78160,134,4318_1490,The Quay,764-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1491,The Quay,793-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,136,4318_1492,The Quay,3400-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1493,The Quay,3403-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1494,The Quay,711-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1495,The Quay,3404-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1496,The Quay,3401-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1497,The Quay,3402-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,144,4318_1498,The Quay,938-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1499,The Quay,822-00002-1,0,4318_7778009_6020802,4318_8 -4318_78159,134,4318_15,The Quay,425-00005-1,0,4318_7778009_6010803,4318_1 -4318_78159,142,4318_150,The Quay,146-00007-1,0,4318_7778009_6010801,4318_2 -4318_78160,132,4318_1500,The Quay,840-00003-1,0,4318_7778009_6020802,4318_8 -4318_78160,133,4318_1501,The Quay,858-00004-1,0,4318_7778009_6020802,4318_8 -4318_78160,134,4318_1502,The Quay,876-00005-1,0,4318_7778009_6020802,4318_8 -4318_78160,135,4318_1503,The Quay,894-00006-1,0,4318_7778009_6020802,4318_8 -4318_78160,142,4318_1504,The Quay,911-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1505,The Quay,3636-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1506,The Quay,3551-00009-1,0,4318_7778009_6020802,4318_8 -4318_78160,137,4318_1507,The Quay,3553-00010-1,0,4318_7778009_6020802,4318_8 -4318_78160,138,4318_1508,The Quay,3554-00011-1,0,4318_7778009_6020802,4318_8 -4318_78160,146,4318_1509,The Quay,968-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,136,4318_151,The Quay,3079-00009-1,0,4318_7778009_6010803,4318_1 -4318_78160,139,4318_1510,The Quay,3550-00014-1,0,4318_7778009_6020802,4318_8 -4318_78160,140,4318_1511,The Quay,3552-00015-1,0,4318_7778009_6020802,4318_8 -4318_78160,141,4318_1512,The Quay,3555-00016-1,0,4318_7778009_6020802,4318_8 -4318_78160,143,4318_1513,The Quay,3635-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1514,The Quay,654-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1515,The Quay,683-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1516,The Quay,736-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1517,The Quay,765-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1518,The Quay,794-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1519,The Quay,996-00007-1,0,4318_7778009_6030802,4318_8 -4318_78159,137,4318_152,The Quay,3082-00010-1,0,4318_7778009_6010803,4318_1 -4318_78160,136,4318_1520,The Quay,3408-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1521,The Quay,3407-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1522,The Quay,712-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1523,The Quay,3406-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1524,The Quay,3405-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1525,The Quay,3409-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1526,The Quay,3687-00017-1,0,4318_7778009_6030802,4318_8 -4318_78160,144,4318_1527,The Quay,939-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1528,The Quay,3637-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,146,4318_1529,The Quay,969-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,138,4318_153,The Quay,3083-00011-1,0,4318_7778009_6010803,4318_1 -4318_78160,131,4318_1530,The Quay,823-00002-1,0,4318_7778009_6020802,4318_7 -4318_78160,132,4318_1531,The Quay,841-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1532,The Quay,859-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1533,The Quay,877-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1534,The Quay,895-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,142,4318_1535,The Quay,912-00007-1,0,4318_7778009_6030801,4318_8 -4318_78160,136,4318_1536,The Quay,3556-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1537,The Quay,3559-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1538,The Quay,3560-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1539,The Quay,3558-00014-1,0,4318_7778009_6020802,4318_7 -4318_78159,139,4318_154,The Quay,3080-00014-1,0,4318_7778009_6010803,4318_1 -4318_78160,140,4318_1540,The Quay,3561-00015-1,0,4318_7778009_6020802,4318_7 -4318_78160,141,4318_1541,The Quay,3557-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,143,4318_1542,The Quay,3638-00017-1,0,4318_7778009_6030801,4318_8 -4318_78160,144,4318_1543,The Quay,940-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1544,The Quay,655-00002-1,0,4318_7778009_6020801,4318_8 -4318_78160,132,4318_1545,The Quay,684-00003-1,0,4318_7778009_6020801,4318_8 -4318_78160,133,4318_1546,The Quay,737-00004-1,0,4318_7778009_6020801,4318_8 -4318_78160,134,4318_1547,The Quay,766-00005-1,0,4318_7778009_6020801,4318_8 -4318_78160,135,4318_1548,The Quay,795-00006-1,0,4318_7778009_6020801,4318_8 -4318_78160,142,4318_1549,The Quay,997-00007-1,0,4318_7778009_6030802,4318_7 -4318_78159,140,4318_155,The Quay,3081-00015-1,0,4318_7778009_6010803,4318_1 -4318_78160,145,4318_1550,The Quay,3639-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1551,The Quay,3414-00009-1,0,4318_7778009_6020801,4318_8 -4318_78160,137,4318_1552,The Quay,3410-00010-1,0,4318_7778009_6020801,4318_8 -4318_78160,138,4318_1553,The Quay,713-00011-1,0,4318_7778009_6020801,4318_8 -4318_78160,146,4318_1554,The Quay,970-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1555,The Quay,3411-00014-1,0,4318_7778009_6020801,4318_8 -4318_78160,140,4318_1556,The Quay,3412-00015-1,0,4318_7778009_6020801,4318_8 -4318_78160,141,4318_1557,The Quay,3413-00016-1,0,4318_7778009_6020801,4318_8 -4318_78160,143,4318_1558,The Quay,3688-00017-1,0,4318_7778009_6030802,4318_7 -4318_78160,131,4318_1559,The Quay,824-00002-1,0,4318_7778009_6020802,4318_7 -4318_78159,141,4318_156,The Quay,3078-00016-1,0,4318_7778009_6010803,4318_1 -4318_78160,132,4318_1560,The Quay,842-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1561,The Quay,860-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1562,The Quay,878-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1563,The Quay,896-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,142,4318_1564,The Quay,913-00007-1,0,4318_7778009_6030801,4318_8 -4318_78160,136,4318_1565,The Quay,3566-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1566,The Quay,3562-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1567,The Quay,3563-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1568,The Quay,3567-00014-1,0,4318_7778009_6020802,4318_7 -4318_78160,140,4318_1569,The Quay,3564-00015-1,0,4318_7778009_6020802,4318_7 -4318_78159,143,4318_157,The Quay,2699-00017-1,0,4318_7778009_6010801,4318_2 -4318_78160,141,4318_1570,The Quay,3565-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,143,4318_1571,The Quay,3640-00017-1,0,4318_7778009_6030801,4318_8 -4318_78160,144,4318_1572,The Quay,941-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1573,The Quay,3641-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,146,4318_1574,The Quay,971-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1575,The Quay,656-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1576,The Quay,685-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1577,The Quay,738-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1578,The Quay,767-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1579,The Quay,796-00006-1,0,4318_7778009_6020801,4318_7 -4318_78159,144,4318_158,The Quay,169-00001-1,0,4318_7778009_6010801,4318_1 -4318_78160,142,4318_1580,The Quay,998-00007-1,0,4318_7778009_6030802,4318_8 -4318_78160,136,4318_1581,The Quay,3416-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1582,The Quay,3418-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1583,The Quay,714-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1584,The Quay,3419-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1585,The Quay,3415-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1586,The Quay,3417-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1587,The Quay,3689-00017-1,0,4318_7778009_6030802,4318_8 -4318_78160,144,4318_1588,The Quay,942-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1589,The Quay,825-00002-1,0,4318_7778009_6020802,4318_8 -4318_78159,131,4318_159,The Quay,572-00002-1,0,4318_7778009_6010805,4318_2 -4318_78160,132,4318_1590,The Quay,843-00003-1,0,4318_7778009_6020802,4318_8 -4318_78160,133,4318_1591,The Quay,861-00004-1,0,4318_7778009_6020802,4318_8 -4318_78160,134,4318_1592,The Quay,879-00005-1,0,4318_7778009_6020802,4318_8 -4318_78160,135,4318_1593,The Quay,897-00006-1,0,4318_7778009_6020802,4318_8 -4318_78160,142,4318_1594,The Quay,914-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1595,The Quay,3643-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1596,The Quay,3571-00009-1,0,4318_7778009_6020802,4318_8 -4318_78160,137,4318_1597,The Quay,3569-00010-1,0,4318_7778009_6020802,4318_8 -4318_78160,138,4318_1598,The Quay,3570-00011-1,0,4318_7778009_6020802,4318_8 -4318_78160,146,4318_1599,The Quay,972-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,135,4318_16,The Quay,440-00006-1,0,4318_7778009_6010803,4318_1 -4318_78159,132,4318_160,The Quay,586-00003-1,0,4318_7778009_6010805,4318_2 -4318_78160,139,4318_1600,The Quay,3573-00014-1,0,4318_7778009_6020802,4318_8 -4318_78160,140,4318_1601,The Quay,3572-00015-1,0,4318_7778009_6020802,4318_8 -4318_78160,141,4318_1602,The Quay,3568-00016-1,0,4318_7778009_6020802,4318_8 -4318_78160,143,4318_1603,The Quay,3642-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1604,The Quay,657-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1605,The Quay,686-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1606,The Quay,739-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1607,The Quay,768-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1608,The Quay,797-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1609,The Quay,999-00007-1,0,4318_7778009_6030802,4318_8 -4318_78159,133,4318_161,The Quay,600-00004-1,0,4318_7778009_6010805,4318_2 -4318_78160,136,4318_1610,The Quay,3423-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1611,The Quay,3421-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1612,The Quay,715-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1613,The Quay,3420-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1614,The Quay,3424-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1615,The Quay,3422-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1616,The Quay,3690-00017-1,0,4318_7778009_6030802,4318_8 -4318_78160,144,4318_1617,The Quay,943-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1618,The Quay,3644-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,146,4318_1619,The Quay,973-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,134,4318_162,The Quay,614-00005-1,0,4318_7778009_6010805,4318_2 -4318_78160,131,4318_1620,The Quay,826-00002-1,0,4318_7778009_6020802,4318_7 -4318_78160,132,4318_1621,The Quay,844-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1622,The Quay,862-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1623,The Quay,880-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1624,The Quay,898-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,142,4318_1625,The Quay,915-00007-1,0,4318_7778009_6030801,4318_8 -4318_78160,136,4318_1626,The Quay,3574-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1627,The Quay,3575-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1628,The Quay,3576-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1629,The Quay,3577-00014-1,0,4318_7778009_6020802,4318_7 -4318_78159,135,4318_163,The Quay,628-00006-1,0,4318_7778009_6010805,4318_2 -4318_78160,140,4318_1630,The Quay,3579-00015-1,0,4318_7778009_6020802,4318_7 -4318_78160,141,4318_1631,The Quay,3578-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,143,4318_1632,The Quay,3645-00017-1,0,4318_7778009_6030801,4318_8 -4318_78160,144,4318_1633,The Quay,944-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1634,The Quay,658-00002-1,0,4318_7778009_6020801,4318_8 -4318_78160,132,4318_1635,The Quay,687-00003-1,0,4318_7778009_6020801,4318_8 -4318_78160,133,4318_1636,The Quay,740-00004-1,0,4318_7778009_6020801,4318_8 -4318_78160,134,4318_1637,The Quay,769-00005-1,0,4318_7778009_6020801,4318_8 -4318_78160,135,4318_1638,The Quay,798-00006-1,0,4318_7778009_6020801,4318_8 -4318_78160,142,4318_1639,The Quay,1000-00007-1,0,4318_7778009_6030802,4318_7 -4318_78159,142,4318_164,The Quay,638-00007-1,0,4318_7778009_6010805,4318_3 -4318_78160,145,4318_1640,The Quay,3646-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1641,The Quay,3427-00009-1,0,4318_7778009_6020801,4318_8 -4318_78160,137,4318_1642,The Quay,3428-00010-1,0,4318_7778009_6020801,4318_8 -4318_78160,138,4318_1643,The Quay,716-00011-1,0,4318_7778009_6020801,4318_8 -4318_78160,146,4318_1644,The Quay,974-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1645,The Quay,3425-00014-1,0,4318_7778009_6020801,4318_8 -4318_78160,140,4318_1646,The Quay,3429-00015-1,0,4318_7778009_6020801,4318_8 -4318_78160,141,4318_1647,The Quay,3426-00016-1,0,4318_7778009_6020801,4318_8 -4318_78160,143,4318_1648,The Quay,3691-00017-1,0,4318_7778009_6030802,4318_7 -4318_78160,131,4318_1649,The Quay,827-00002-1,0,4318_7778009_6020802,4318_7 -4318_78159,145,4318_165,The Quay,2700-00008-1,0,4318_7778009_6010801,4318_1 -4318_78160,132,4318_1650,The Quay,845-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1651,The Quay,863-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1652,The Quay,881-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1653,The Quay,899-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,142,4318_1654,The Quay,916-00007-1,0,4318_7778009_6030801,4318_8 -4318_78160,136,4318_1655,The Quay,3582-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1656,The Quay,3584-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1657,The Quay,3585-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1658,The Quay,3583-00014-1,0,4318_7778009_6020802,4318_7 -4318_78160,140,4318_1659,The Quay,3580-00015-1,0,4318_7778009_6020802,4318_7 -4318_78159,136,4318_166,The Quay,3311-00009-1,0,4318_7778009_6010805,4318_2 -4318_78160,141,4318_1660,The Quay,3581-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,143,4318_1661,The Quay,3647-00017-1,0,4318_7778009_6030801,4318_8 -4318_78160,144,4318_1662,The Quay,945-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1663,The Quay,3648-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,146,4318_1664,The Quay,975-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1665,The Quay,659-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1666,The Quay,688-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1667,The Quay,741-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1668,The Quay,770-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1669,The Quay,799-00006-1,0,4318_7778009_6020801,4318_7 -4318_78159,137,4318_167,The Quay,3308-00010-1,0,4318_7778009_6010805,4318_2 -4318_78160,142,4318_1670,The Quay,1001-00007-1,0,4318_7778009_6030802,4318_8 -4318_78160,136,4318_1671,The Quay,3434-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1672,The Quay,3432-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1673,The Quay,717-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1674,The Quay,3431-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1675,The Quay,3430-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1676,The Quay,3433-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1677,The Quay,3692-00017-1,0,4318_7778009_6030802,4318_8 -4318_78160,144,4318_1678,The Quay,946-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1679,The Quay,828-00002-1,0,4318_7778009_6020802,4318_8 -4318_78159,138,4318_168,The Quay,3309-00011-1,0,4318_7778009_6010805,4318_2 -4318_78160,132,4318_1680,The Quay,846-00003-1,0,4318_7778009_6020802,4318_8 -4318_78160,133,4318_1681,The Quay,864-00004-1,0,4318_7778009_6020802,4318_8 -4318_78160,134,4318_1682,The Quay,882-00005-1,0,4318_7778009_6020802,4318_8 -4318_78160,135,4318_1683,The Quay,900-00006-1,0,4318_7778009_6020802,4318_8 -4318_78160,142,4318_1684,The Quay,917-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1685,The Quay,3649-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1686,The Quay,3588-00009-1,0,4318_7778009_6020802,4318_8 -4318_78160,137,4318_1687,The Quay,3590-00010-1,0,4318_7778009_6020802,4318_8 -4318_78160,138,4318_1688,The Quay,3591-00011-1,0,4318_7778009_6020802,4318_8 -4318_78160,146,4318_1689,The Quay,976-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,146,4318_169,The Quay,2701-00013-1,0,4318_7778009_6010801,4318_1 -4318_78160,139,4318_1690,The Quay,3589-00014-1,0,4318_7778009_6020802,4318_8 -4318_78160,140,4318_1691,The Quay,3587-00015-1,0,4318_7778009_6020802,4318_8 -4318_78160,141,4318_1692,The Quay,3586-00016-1,0,4318_7778009_6020802,4318_8 -4318_78160,143,4318_1693,The Quay,3650-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1694,The Quay,660-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1695,The Quay,689-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1696,The Quay,742-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1697,The Quay,771-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1698,The Quay,800-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1699,The Quay,1002-00007-1,0,4318_7778009_6030802,4318_8 -4318_78159,136,4318_17,The Quay,3053-00009-1,0,4318_7778009_6010803,4318_1 -4318_78159,139,4318_170,The Quay,3305-00014-1,0,4318_7778009_6010805,4318_2 -4318_78160,136,4318_1700,The Quay,3435-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1701,The Quay,3439-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1702,The Quay,718-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1703,The Quay,3438-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1704,The Quay,3437-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1705,The Quay,3436-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1706,The Quay,3693-00017-1,0,4318_7778009_6030802,4318_8 -4318_78160,144,4318_1707,The Quay,947-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1708,The Quay,3651-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,146,4318_1709,The Quay,977-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,140,4318_171,The Quay,3306-00015-1,0,4318_7778009_6010805,4318_2 -4318_78160,131,4318_1710,The Quay,829-00002-1,0,4318_7778009_6020802,4318_7 -4318_78160,132,4318_1711,The Quay,847-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1712,The Quay,865-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1713,The Quay,883-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1714,The Quay,901-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,142,4318_1715,The Quay,918-00007-1,0,4318_7778009_6030801,4318_8 -4318_78160,136,4318_1716,The Quay,3592-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1717,The Quay,3594-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1718,The Quay,3595-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1719,The Quay,3596-00014-1,0,4318_7778009_6020802,4318_7 -4318_78159,141,4318_172,The Quay,3307-00016-1,0,4318_7778009_6010805,4318_2 -4318_78160,140,4318_1720,The Quay,3593-00015-1,0,4318_7778009_6020802,4318_7 -4318_78160,141,4318_1721,The Quay,3597-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,143,4318_1722,The Quay,3652-00017-1,0,4318_7778009_6030801,4318_8 -4318_78160,144,4318_1723,The Quay,948-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1724,The Quay,661-00002-1,0,4318_7778009_6020801,4318_8 -4318_78160,132,4318_1725,The Quay,690-00003-1,0,4318_7778009_6020801,4318_8 -4318_78160,133,4318_1726,The Quay,743-00004-1,0,4318_7778009_6020801,4318_8 -4318_78160,134,4318_1727,The Quay,772-00005-1,0,4318_7778009_6020801,4318_8 -4318_78160,135,4318_1728,The Quay,801-00006-1,0,4318_7778009_6020801,4318_8 -4318_78160,142,4318_1729,The Quay,1003-00007-1,0,4318_7778009_6030802,4318_7 -4318_78159,143,4318_173,The Quay,3310-00017-1,0,4318_7778009_6010805,4318_3 -4318_78160,145,4318_1730,The Quay,3653-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1731,The Quay,3440-00009-1,0,4318_7778009_6020801,4318_8 -4318_78160,137,4318_1732,The Quay,3444-00010-1,0,4318_7778009_6020801,4318_8 -4318_78160,138,4318_1733,The Quay,719-00011-1,0,4318_7778009_6020801,4318_8 -4318_78160,146,4318_1734,The Quay,978-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1735,The Quay,3442-00014-1,0,4318_7778009_6020801,4318_8 -4318_78160,140,4318_1736,The Quay,3443-00015-1,0,4318_7778009_6020801,4318_8 -4318_78160,141,4318_1737,The Quay,3441-00016-1,0,4318_7778009_6020801,4318_8 -4318_78160,143,4318_1738,The Quay,3694-00017-1,0,4318_7778009_6030802,4318_7 -4318_78160,131,4318_1739,The Quay,830-00002-1,0,4318_7778009_6020802,4318_7 -4318_78159,131,4318_174,The Quay,196-00002-1,0,4318_7778009_6010802,4318_1 -4318_78160,132,4318_1740,The Quay,848-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1741,The Quay,866-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1742,The Quay,884-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1743,The Quay,902-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,142,4318_1744,The Quay,919-00007-1,0,4318_7778009_6030801,4318_8 -4318_78160,136,4318_1745,The Quay,3598-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1746,The Quay,3602-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1747,The Quay,3603-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1748,The Quay,3600-00014-1,0,4318_7778009_6020802,4318_7 -4318_78160,140,4318_1749,The Quay,3599-00015-1,0,4318_7778009_6020802,4318_7 -4318_78159,132,4318_175,The Quay,220-00003-1,0,4318_7778009_6010802,4318_1 -4318_78160,141,4318_1750,The Quay,3601-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,143,4318_1751,The Quay,3654-00017-1,0,4318_7778009_6030801,4318_8 -4318_78160,144,4318_1752,The Quay,949-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1753,The Quay,3655-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,146,4318_1754,The Quay,979-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1755,The Quay,662-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1756,The Quay,691-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1757,The Quay,744-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1758,The Quay,773-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1759,The Quay,802-00006-1,0,4318_7778009_6020801,4318_7 -4318_78159,133,4318_176,The Quay,263-00004-1,0,4318_7778009_6010802,4318_1 -4318_78160,142,4318_1760,The Quay,1004-00007-1,0,4318_7778009_6030802,4318_8 -4318_78160,136,4318_1761,The Quay,3446-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1762,The Quay,3449-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1763,The Quay,720-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1764,The Quay,3445-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1765,The Quay,3447-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1766,The Quay,3448-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1767,The Quay,3695-00017-1,0,4318_7778009_6030802,4318_8 -4318_78160,144,4318_1768,The Quay,950-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1769,The Quay,831-00002-1,0,4318_7778009_6020802,4318_8 -4318_78159,134,4318_177,The Quay,287-00005-1,0,4318_7778009_6010802,4318_1 -4318_78160,132,4318_1770,The Quay,849-00003-1,0,4318_7778009_6020802,4318_8 -4318_78160,133,4318_1771,The Quay,867-00004-1,0,4318_7778009_6020802,4318_8 -4318_78160,134,4318_1772,The Quay,885-00005-1,0,4318_7778009_6020802,4318_8 -4318_78160,135,4318_1773,The Quay,903-00006-1,0,4318_7778009_6020802,4318_8 -4318_78160,142,4318_1774,The Quay,920-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1775,The Quay,3656-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1776,The Quay,3604-00009-1,0,4318_7778009_6020802,4318_8 -4318_78160,137,4318_1777,The Quay,3608-00010-1,0,4318_7778009_6020802,4318_8 -4318_78160,138,4318_1778,The Quay,3609-00011-1,0,4318_7778009_6020802,4318_8 -4318_78160,146,4318_1779,The Quay,980-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,135,4318_178,The Quay,311-00006-1,0,4318_7778009_6010802,4318_1 -4318_78160,139,4318_1780,The Quay,3606-00014-1,0,4318_7778009_6020802,4318_8 -4318_78160,140,4318_1781,The Quay,3607-00015-1,0,4318_7778009_6020802,4318_8 -4318_78160,141,4318_1782,The Quay,3605-00016-1,0,4318_7778009_6020802,4318_8 -4318_78160,143,4318_1783,The Quay,3657-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1784,The Quay,663-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1785,The Quay,692-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1786,The Quay,745-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1787,The Quay,774-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1788,The Quay,803-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1789,The Quay,1005-00007-1,0,4318_7778009_6030802,4318_8 -4318_78159,142,4318_179,The Quay,558-00007-1,0,4318_7778009_6010804,4318_2 -4318_78160,136,4318_1790,The Quay,3454-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1791,The Quay,3451-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1792,The Quay,721-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1793,The Quay,3453-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1794,The Quay,3452-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1795,The Quay,3450-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1796,The Quay,3696-00017-1,0,4318_7778009_6030802,4318_8 -4318_78160,144,4318_1797,The Quay,951-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1798,The Quay,3658-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,146,4318_1799,The Quay,981-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,137,4318_18,The Quay,3057-00010-1,0,4318_7778009_6010803,4318_1 -4318_78159,136,4318_180,The Quay,2901-00009-1,0,4318_7778009_6010802,4318_1 -4318_78160,131,4318_1800,The Quay,832-00002-1,0,4318_7778009_6020802,4318_7 -4318_78160,132,4318_1801,The Quay,850-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1802,The Quay,868-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1803,The Quay,886-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1804,The Quay,904-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,142,4318_1805,The Quay,921-00007-1,0,4318_7778009_6030801,4318_8 -4318_78160,136,4318_1806,The Quay,3613-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1807,The Quay,3614-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1808,The Quay,3615-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1809,The Quay,3611-00014-1,0,4318_7778009_6020802,4318_7 -4318_78159,137,4318_181,The Quay,2900-00010-1,0,4318_7778009_6010802,4318_1 -4318_78160,140,4318_1810,The Quay,3610-00015-1,0,4318_7778009_6020802,4318_7 -4318_78160,141,4318_1811,The Quay,3612-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,143,4318_1812,The Quay,3659-00017-1,0,4318_7778009_6030801,4318_8 -4318_78160,144,4318_1813,The Quay,952-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1814,The Quay,664-00002-1,0,4318_7778009_6020801,4318_8 -4318_78160,132,4318_1815,The Quay,693-00003-1,0,4318_7778009_6020801,4318_8 -4318_78160,133,4318_1816,The Quay,746-00004-1,0,4318_7778009_6020801,4318_8 -4318_78160,134,4318_1817,The Quay,775-00005-1,0,4318_7778009_6020801,4318_8 -4318_78160,135,4318_1818,The Quay,804-00006-1,0,4318_7778009_6020801,4318_8 -4318_78160,142,4318_1819,The Quay,1006-00007-1,0,4318_7778009_6030802,4318_7 -4318_78159,138,4318_182,The Quay,244-00011-1,0,4318_7778009_6010802,4318_1 -4318_78160,145,4318_1820,The Quay,3660-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1821,The Quay,3457-00009-1,0,4318_7778009_6020801,4318_8 -4318_78160,137,4318_1822,The Quay,3456-00010-1,0,4318_7778009_6020801,4318_8 -4318_78160,138,4318_1823,The Quay,722-00011-1,0,4318_7778009_6020801,4318_8 -4318_78160,146,4318_1824,The Quay,982-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1825,The Quay,3459-00014-1,0,4318_7778009_6020801,4318_8 -4318_78160,140,4318_1826,The Quay,3455-00015-1,0,4318_7778009_6020801,4318_8 -4318_78160,141,4318_1827,The Quay,3458-00016-1,0,4318_7778009_6020801,4318_8 -4318_78160,143,4318_1828,The Quay,3697-00017-1,0,4318_7778009_6030802,4318_7 -4318_78160,131,4318_1829,The Quay,833-00002-1,0,4318_7778009_6020802,4318_7 -4318_78159,139,4318_183,The Quay,2898-00014-1,0,4318_7778009_6010802,4318_1 -4318_78160,132,4318_1830,The Quay,851-00003-1,0,4318_7778009_6020802,4318_7 -4318_78160,133,4318_1831,The Quay,869-00004-1,0,4318_7778009_6020802,4318_7 -4318_78160,134,4318_1832,The Quay,887-00005-1,0,4318_7778009_6020802,4318_7 -4318_78160,135,4318_1833,The Quay,905-00006-1,0,4318_7778009_6020802,4318_7 -4318_78160,142,4318_1834,The Quay,922-00007-1,0,4318_7778009_6030801,4318_8 -4318_78160,136,4318_1835,The Quay,3619-00009-1,0,4318_7778009_6020802,4318_7 -4318_78160,137,4318_1836,The Quay,3616-00010-1,0,4318_7778009_6020802,4318_7 -4318_78160,138,4318_1837,The Quay,3617-00011-1,0,4318_7778009_6020802,4318_7 -4318_78160,139,4318_1838,The Quay,3618-00014-1,0,4318_7778009_6020802,4318_7 -4318_78160,140,4318_1839,The Quay,3620-00015-1,0,4318_7778009_6020802,4318_7 -4318_78159,140,4318_184,The Quay,2902-00015-1,0,4318_7778009_6010802,4318_1 -4318_78160,141,4318_1840,The Quay,3621-00016-1,0,4318_7778009_6020802,4318_7 -4318_78160,143,4318_1841,The Quay,3661-00017-1,0,4318_7778009_6030801,4318_8 -4318_78160,144,4318_1842,The Quay,953-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1843,The Quay,3662-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,146,4318_1844,The Quay,983-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1845,The Quay,665-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1846,The Quay,694-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1847,The Quay,747-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1848,The Quay,776-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1849,The Quay,805-00006-1,0,4318_7778009_6020801,4318_7 -4318_78159,141,4318_185,The Quay,2899-00016-1,0,4318_7778009_6010802,4318_1 -4318_78160,142,4318_1850,The Quay,1007-00007-1,0,4318_7778009_6030802,4318_8 -4318_78160,136,4318_1851,The Quay,3464-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1852,The Quay,3460-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1853,The Quay,723-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,139,4318_1854,The Quay,3463-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1855,The Quay,3461-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1856,The Quay,3462-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1857,The Quay,3698-00017-1,0,4318_7778009_6030802,4318_8 -4318_78160,144,4318_1858,The Quay,954-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1859,The Quay,834-00002-1,0,4318_7778009_6020802,4318_8 -4318_78159,143,4318_186,The Quay,3205-00017-1,0,4318_7778009_6010804,4318_2 -4318_78160,132,4318_1860,The Quay,852-00003-1,0,4318_7778009_6020802,4318_8 -4318_78160,133,4318_1861,The Quay,870-00004-1,0,4318_7778009_6020802,4318_8 -4318_78160,134,4318_1862,The Quay,888-00005-1,0,4318_7778009_6020802,4318_8 -4318_78160,135,4318_1863,The Quay,906-00006-1,0,4318_7778009_6020802,4318_8 -4318_78160,142,4318_1864,The Quay,923-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1865,The Quay,3663-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1866,The Quay,3625-00009-1,0,4318_7778009_6020802,4318_8 -4318_78160,137,4318_1867,The Quay,3622-00010-1,0,4318_7778009_6020802,4318_8 -4318_78160,138,4318_1868,The Quay,3754-00011-1,0,4318_7778009_6020802,4318_8 -4318_78160,146,4318_1869,The Quay,984-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,144,4318_187,The Quay,170-00001-1,0,4318_7778009_6010801,4318_1 -4318_78160,139,4318_1870,The Quay,3626-00014-1,0,4318_7778009_6020802,4318_8 -4318_78160,140,4318_1871,The Quay,3624-00015-1,0,4318_7778009_6020802,4318_8 -4318_78160,141,4318_1872,The Quay,3627-00016-1,0,4318_7778009_6020802,4318_8 -4318_78160,143,4318_1873,The Quay,3664-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,144,4318_1874,The Quay,955-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1875,The Quay,666-00002-1,0,4318_7778009_6020801,4318_8 -4318_78160,132,4318_1876,The Quay,695-00003-1,0,4318_7778009_6020801,4318_8 -4318_78160,133,4318_1877,The Quay,748-00004-1,0,4318_7778009_6020801,4318_8 -4318_78160,134,4318_1878,The Quay,777-00005-1,0,4318_7778009_6020801,4318_8 -4318_78160,135,4318_1879,The Quay,806-00006-1,0,4318_7778009_6020801,4318_8 -4318_78159,145,4318_188,The Quay,2708-00008-1,0,4318_7778009_6010801,4318_1 -4318_78160,142,4318_1880,The Quay,924-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1881,The Quay,3665-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1882,The Quay,3468-00009-1,0,4318_7778009_6020801,4318_8 -4318_78160,137,4318_1883,The Quay,3467-00010-1,0,4318_7778009_6020801,4318_8 -4318_78160,138,4318_1884,The Quay,724-00011-1,0,4318_7778009_6020801,4318_8 -4318_78160,146,4318_1885,The Quay,985-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1886,The Quay,3466-00014-1,0,4318_7778009_6020801,4318_8 -4318_78160,140,4318_1887,The Quay,3465-00015-1,0,4318_7778009_6020801,4318_8 -4318_78160,141,4318_1888,The Quay,3469-00016-1,0,4318_7778009_6020801,4318_8 -4318_78160,143,4318_1889,The Quay,3666-00017-1,0,4318_7778009_6030801,4318_7 -4318_78159,146,4318_189,The Quay,2709-00013-1,0,4318_7778009_6010801,4318_1 -4318_78160,144,4318_1890,The Quay,956-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1891,The Quay,667-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1892,The Quay,696-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1893,The Quay,749-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1894,The Quay,778-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1895,The Quay,807-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1896,The Quay,925-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1897,The Quay,3667-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1898,The Quay,3473-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1899,The Quay,3474-00010-1,0,4318_7778009_6020801,4318_7 -4318_78159,138,4318_19,The Quay,3058-00011-1,0,4318_7778009_6010803,4318_1 -4318_78159,131,4318_190,The Quay,482-00002-1,0,4318_7778009_6010804,4318_1 -4318_78160,138,4318_1900,The Quay,725-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,146,4318_1901,The Quay,986-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1902,The Quay,3472-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1903,The Quay,3471-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1904,The Quay,3470-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1905,The Quay,3668-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,144,4318_1906,The Quay,957-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1907,The Quay,668-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1908,The Quay,697-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1909,The Quay,750-00004-1,0,4318_7778009_6020801,4318_7 -4318_78159,132,4318_191,The Quay,498-00003-1,0,4318_7778009_6010804,4318_1 -4318_78160,134,4318_1910,The Quay,779-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1911,The Quay,808-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1912,The Quay,926-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1913,The Quay,3669-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1914,The Quay,3475-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1915,The Quay,3478-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1916,The Quay,726-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,146,4318_1917,The Quay,987-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1918,The Quay,3476-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1919,The Quay,3479-00015-1,0,4318_7778009_6020801,4318_7 -4318_78159,133,4318_192,The Quay,514-00004-1,0,4318_7778009_6010804,4318_1 -4318_78160,141,4318_1920,The Quay,3477-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1921,The Quay,3670-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,144,4318_1922,The Quay,958-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1923,The Quay,669-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1924,The Quay,698-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1925,The Quay,751-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1926,The Quay,780-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1927,The Quay,809-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1928,The Quay,927-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1929,The Quay,3671-00008-1,0,4318_7778009_6030801,4318_7 -4318_78159,134,4318_193,The Quay,530-00005-1,0,4318_7778009_6010804,4318_1 -4318_78160,136,4318_1930,The Quay,3483-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1931,The Quay,3482-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1932,The Quay,727-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,146,4318_1933,The Quay,988-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1934,The Quay,3481-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1935,The Quay,3480-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1936,The Quay,3484-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1937,The Quay,3672-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,144,4318_1938,The Quay,959-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1939,The Quay,670-00002-1,0,4318_7778009_6020801,4318_7 -4318_78159,135,4318_194,The Quay,546-00006-1,0,4318_7778009_6010804,4318_1 -4318_78160,132,4318_1940,The Quay,699-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1941,The Quay,752-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1942,The Quay,781-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1943,The Quay,810-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1944,The Quay,928-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1945,The Quay,3673-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1946,The Quay,3489-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1947,The Quay,3486-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1948,The Quay,728-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,146,4318_1949,The Quay,989-00013-1,0,4318_7778009_6030801,4318_7 -4318_78159,142,4318_195,The Quay,457-00007-1,0,4318_7778009_6010803,4318_2 -4318_78160,139,4318_1950,The Quay,3488-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1951,The Quay,3485-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1952,The Quay,3487-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1953,The Quay,3674-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,144,4318_1954,The Quay,960-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1955,The Quay,671-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1956,The Quay,700-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1957,The Quay,753-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1958,The Quay,782-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1959,The Quay,811-00006-1,0,4318_7778009_6020801,4318_7 -4318_78159,136,4318_196,The Quay,3211-00009-1,0,4318_7778009_6010804,4318_1 -4318_78160,142,4318_1960,The Quay,929-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1961,The Quay,3675-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1962,The Quay,3492-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1963,The Quay,3491-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,138,4318_1964,The Quay,729-00011-1,0,4318_7778009_6020801,4318_7 -4318_78160,146,4318_1965,The Quay,990-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1966,The Quay,3493-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1967,The Quay,3494-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1968,The Quay,3490-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1969,The Quay,3676-00017-1,0,4318_7778009_6030801,4318_7 -4318_78159,137,4318_197,The Quay,3209-00010-1,0,4318_7778009_6010804,4318_1 -4318_78160,144,4318_1970,The Quay,961-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1971,The Quay,672-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1972,The Quay,701-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1973,The Quay,754-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1974,The Quay,783-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_1975,The Quay,812-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1976,The Quay,930-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1977,The Quay,3677-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1978,The Quay,3495-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1979,The Quay,3499-00010-1,0,4318_7778009_6020801,4318_7 -4318_78159,138,4318_198,The Quay,3210-00011-1,0,4318_7778009_6010804,4318_1 -4318_78160,146,4318_1980,The Quay,991-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1981,The Quay,3498-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1982,The Quay,3497-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1983,The Quay,3496-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1984,The Quay,3678-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,144,4318_1985,The Quay,962-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_1986,The Quay,673-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_1987,The Quay,702-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_1988,The Quay,755-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_1989,The Quay,784-00005-1,0,4318_7778009_6020801,4318_7 -4318_78159,139,4318_199,The Quay,3207-00014-1,0,4318_7778009_6010804,4318_1 -4318_78160,135,4318_1990,The Quay,813-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_1991,The Quay,931-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_1992,The Quay,3680-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_1993,The Quay,3503-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_1994,The Quay,3502-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,146,4318_1995,The Quay,992-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_1996,The Quay,3501-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_1997,The Quay,3500-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_1998,The Quay,3504-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_1999,The Quay,3679-00017-1,0,4318_7778009_6030801,4318_7 -4318_78159,132,4318_2,The Quay,44-00003-1,0,4318_7778009_6010801,4318_1 -4318_78159,139,4318_20,The Quay,3054-00014-1,0,4318_7778009_6010803,4318_1 -4318_78159,140,4318_200,The Quay,3208-00015-1,0,4318_7778009_6010804,4318_1 -4318_78160,144,4318_2000,The Quay,963-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_2001,The Quay,674-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_2002,The Quay,703-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_2003,The Quay,756-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_2004,The Quay,785-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_2005,The Quay,814-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_2006,The Quay,932-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_2007,The Quay,3682-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_2008,The Quay,3509-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_2009,The Quay,3506-00010-1,0,4318_7778009_6020801,4318_7 -4318_78159,141,4318_201,The Quay,3206-00016-1,0,4318_7778009_6010804,4318_1 -4318_78160,146,4318_2010,The Quay,993-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_2011,The Quay,3505-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_2012,The Quay,3507-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_2013,The Quay,3508-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_2014,The Quay,3681-00017-1,0,4318_7778009_6030801,4318_7 -4318_78160,144,4318_2015,The Quay,964-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_2016,The Quay,675-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_2017,The Quay,704-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_2018,The Quay,757-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_2019,The Quay,786-00005-1,0,4318_7778009_6020801,4318_7 -4318_78159,143,4318_202,The Quay,3091-00017-1,0,4318_7778009_6010803,4318_2 -4318_78160,135,4318_2020,The Quay,815-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_2021,The Quay,933-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_2022,The Quay,3683-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_2023,The Quay,3513-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_2024,The Quay,3510-00010-1,0,4318_7778009_6020801,4318_7 -4318_78160,146,4318_2025,The Quay,994-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_2026,The Quay,3511-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_2027,The Quay,3512-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_2028,The Quay,3514-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_2029,The Quay,3684-00017-1,0,4318_7778009_6030801,4318_7 -4318_78159,144,4318_203,The Quay,171-00001-1,0,4318_7778009_6010801,4318_1 -4318_78160,144,4318_2030,The Quay,965-00001-1,0,4318_7778009_6030801,4318_7 -4318_78160,131,4318_2031,The Quay,676-00002-1,0,4318_7778009_6020801,4318_7 -4318_78160,132,4318_2032,The Quay,705-00003-1,0,4318_7778009_6020801,4318_7 -4318_78160,133,4318_2033,The Quay,758-00004-1,0,4318_7778009_6020801,4318_7 -4318_78160,134,4318_2034,The Quay,787-00005-1,0,4318_7778009_6020801,4318_7 -4318_78160,135,4318_2035,The Quay,816-00006-1,0,4318_7778009_6020801,4318_7 -4318_78160,142,4318_2036,The Quay,934-00007-1,0,4318_7778009_6030801,4318_7 -4318_78160,145,4318_2037,The Quay,3686-00008-1,0,4318_7778009_6030801,4318_7 -4318_78160,136,4318_2038,The Quay,3518-00009-1,0,4318_7778009_6020801,4318_7 -4318_78160,137,4318_2039,The Quay,3517-00010-1,0,4318_7778009_6020801,4318_7 -4318_78159,131,4318_204,The Quay,7-00002-1,0,4318_7778009_6010801,4318_2 -4318_78160,146,4318_2040,The Quay,995-00013-1,0,4318_7778009_6030801,4318_7 -4318_78160,139,4318_2041,The Quay,3515-00014-1,0,4318_7778009_6020801,4318_7 -4318_78160,140,4318_2042,The Quay,3516-00015-1,0,4318_7778009_6020801,4318_7 -4318_78160,141,4318_2043,The Quay,3519-00016-1,0,4318_7778009_6020801,4318_7 -4318_78160,143,4318_2044,The Quay,3685-00017-1,0,4318_7778009_6030801,4318_7 -4318_78162,131,4318_2045,Brownes Road/W.I.T.,1044-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2046,Brownes Road/W.I.T.,1079-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2047,Brownes Road/W.I.T.,1214-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2048,Brownes Road/W.I.T.,1284-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2049,Brownes Road/W.I.T.,1354-00006-1,0,4318_7778009_6040801,4318_10 -4318_78159,132,4318_205,The Quay,50-00003-1,0,4318_7778009_6010801,4318_2 -4318_78162,142,4318_2050,Brownes Road/W.I.T.,1916-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2051,Brownes Road/W.I.T.,1009-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2052,Brownes Road/W.I.T.,1114-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2053,Brownes Road/W.I.T.,1149-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2054,Brownes Road/W.I.T.,1179-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2055,Brownes Road/W.I.T.,1249-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2056,Brownes Road/W.I.T.,1319-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2057,Brownes Road/W.I.T.,1951-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2058,Brownes Road/W.I.T.,1547-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2059,Brownes Road/W.I.T.,1615-00003-1,0,4318_7778009_6040802,4318_9 -4318_78159,133,4318_206,The Quay,74-00004-1,0,4318_7778009_6010801,4318_2 -4318_78162,133,4318_2060,Brownes Road/W.I.T.,1746-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2061,Brownes Road/W.I.T.,1780-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2062,Brownes Road/W.I.T.,1882-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2063,Brownes Road/W.I.T.,1423-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2064,Brownes Road/W.I.T.,1581-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2065,Brownes Road/W.I.T.,1649-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2066,Brownes Road/W.I.T.,1683-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2067,Brownes Road/W.I.T.,1712-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2068,Brownes Road/W.I.T.,1814-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2069,Brownes Road/W.I.T.,1848-00016-1,0,4318_7778009_6040802,4318_9 -4318_78159,134,4318_207,The Quay,98-00005-1,0,4318_7778009_6010801,4318_2 -4318_78162,143,4318_2070,Brownes Road/W.I.T.,1389-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2071,Brownes Road/W.I.T.,1046-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2072,Brownes Road/W.I.T.,1081-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2073,Brownes Road/W.I.T.,1216-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2074,Brownes Road/W.I.T.,1286-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2075,Brownes Road/W.I.T.,1356-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2076,Brownes Road/W.I.T.,1918-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2077,Brownes Road/W.I.T.,1011-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2078,Brownes Road/W.I.T.,1116-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2079,Brownes Road/W.I.T.,1151-00011-1,0,4318_7778009_6040801,4318_10 -4318_78159,135,4318_208,The Quay,122-00006-1,0,4318_7778009_6010801,4318_2 -4318_78162,139,4318_2080,Brownes Road/W.I.T.,1181-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2081,Brownes Road/W.I.T.,1251-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2082,Brownes Road/W.I.T.,1321-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2083,Brownes Road/W.I.T.,1953-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2084,Brownes Road/W.I.T.,1549-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2085,Brownes Road/W.I.T.,1617-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2086,Brownes Road/W.I.T.,1748-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2087,Brownes Road/W.I.T.,1782-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2088,Brownes Road/W.I.T.,1884-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2089,Brownes Road/W.I.T.,1425-00007-1,0,4318_7778009_6040801,4318_10 -4318_78159,142,4318_209,The Quay,337-00007-1,0,4318_7778009_6010802,4318_3 -4318_78162,136,4318_2090,Brownes Road/W.I.T.,1583-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2091,Brownes Road/W.I.T.,1651-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2092,Brownes Road/W.I.T.,1685-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2093,Brownes Road/W.I.T.,1714-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2094,Brownes Road/W.I.T.,1816-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2095,Brownes Road/W.I.T.,1850-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2096,Brownes Road/W.I.T.,1391-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2097,Brownes Road/W.I.T.,2047-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2098,Brownes Road/W.I.T.,1048-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2099,Brownes Road/W.I.T.,1083-00003-1,0,4318_7778009_6040801,4318_9 -4318_78159,140,4318_21,The Quay,3055-00015-1,0,4318_7778009_6010803,4318_1 -4318_78159,145,4318_210,The Quay,2714-00008-1,0,4318_7778009_6010801,4318_1 -4318_78162,133,4318_2100,Brownes Road/W.I.T.,1218-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2101,Brownes Road/W.I.T.,1288-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2102,Brownes Road/W.I.T.,1358-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2103,Brownes Road/W.I.T.,1920-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2104,Brownes Road/W.I.T.,1986-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2105,Brownes Road/W.I.T.,1013-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2106,Brownes Road/W.I.T.,1118-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2107,Brownes Road/W.I.T.,1153-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2108,Brownes Road/W.I.T.,2016-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2109,Brownes Road/W.I.T.,1183-00014-1,0,4318_7778009_6040801,4318_9 -4318_78159,136,4318_211,The Quay,2712-00009-1,0,4318_7778009_6010801,4318_2 -4318_78162,140,4318_2110,Brownes Road/W.I.T.,1253-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2111,Brownes Road/W.I.T.,1323-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2112,Brownes Road/W.I.T.,1955-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2113,Brownes Road/W.I.T.,1457-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2114,Brownes Road/W.I.T.,1551-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2115,Brownes Road/W.I.T.,1619-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2116,Brownes Road/W.I.T.,1750-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2117,Brownes Road/W.I.T.,1784-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2118,Brownes Road/W.I.T.,1886-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2119,Brownes Road/W.I.T.,1427-00007-1,0,4318_7778009_6040801,4318_10 -4318_78159,137,4318_212,The Quay,2710-00010-1,0,4318_7778009_6010801,4318_2 -4318_78162,145,4318_2120,Brownes Road/W.I.T.,1517-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2121,Brownes Road/W.I.T.,1585-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2122,Brownes Road/W.I.T.,1653-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2123,Brownes Road/W.I.T.,1687-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2124,Brownes Road/W.I.T.,1487-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2125,Brownes Road/W.I.T.,1716-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2126,Brownes Road/W.I.T.,1818-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2127,Brownes Road/W.I.T.,1852-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2128,Brownes Road/W.I.T.,1393-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2129,Brownes Road/W.I.T.,2049-00001-1,0,4318_7778009_6040802,4318_9 -4318_78159,138,4318_213,The Quay,31-00011-1,0,4318_7778009_6010801,4318_2 -4318_78162,131,4318_2130,Brownes Road/W.I.T.,1050-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2131,Brownes Road/W.I.T.,1085-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2132,Brownes Road/W.I.T.,1220-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2133,Brownes Road/W.I.T.,1290-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2134,Brownes Road/W.I.T.,1360-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2135,Brownes Road/W.I.T.,1922-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2136,Brownes Road/W.I.T.,1988-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2137,Brownes Road/W.I.T.,1015-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2138,Brownes Road/W.I.T.,1120-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2139,Brownes Road/W.I.T.,1155-00011-1,0,4318_7778009_6040801,4318_10 -4318_78159,146,4318_214,The Quay,2715-00013-1,0,4318_7778009_6010801,4318_1 -4318_78162,146,4318_2140,Brownes Road/W.I.T.,2018-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2141,Brownes Road/W.I.T.,1185-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2142,Brownes Road/W.I.T.,1255-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2143,Brownes Road/W.I.T.,1325-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2144,Brownes Road/W.I.T.,1957-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2145,Brownes Road/W.I.T.,1459-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2146,Brownes Road/W.I.T.,1553-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2147,Brownes Road/W.I.T.,1621-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2148,Brownes Road/W.I.T.,1752-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2149,Brownes Road/W.I.T.,1786-00005-1,0,4318_7778009_6040802,4318_10 -4318_78159,139,4318_215,The Quay,2716-00014-1,0,4318_7778009_6010801,4318_2 -4318_78162,135,4318_2150,Brownes Road/W.I.T.,1888-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2151,Brownes Road/W.I.T.,1429-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2152,Brownes Road/W.I.T.,1519-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2153,Brownes Road/W.I.T.,1587-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2154,Brownes Road/W.I.T.,1655-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2155,Brownes Road/W.I.T.,1689-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2156,Brownes Road/W.I.T.,1489-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2157,Brownes Road/W.I.T.,1718-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2158,Brownes Road/W.I.T.,1820-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2159,Brownes Road/W.I.T.,1854-00016-1,0,4318_7778009_6040802,4318_9 -4318_78159,140,4318_216,The Quay,2713-00015-1,0,4318_7778009_6010801,4318_2 -4318_78162,143,4318_2160,Brownes Road/W.I.T.,1395-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2161,Brownes Road/W.I.T.,2051-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2162,Brownes Road/W.I.T.,1052-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2163,Brownes Road/W.I.T.,1087-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2164,Brownes Road/W.I.T.,1222-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2165,Brownes Road/W.I.T.,1292-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2166,Brownes Road/W.I.T.,1362-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2167,Brownes Road/W.I.T.,1924-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2168,Brownes Road/W.I.T.,1990-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2169,Brownes Road/W.I.T.,1017-00009-1,0,4318_7778009_6040801,4318_10 -4318_78159,141,4318_217,The Quay,2711-00016-1,0,4318_7778009_6010801,4318_2 -4318_78162,137,4318_2170,Brownes Road/W.I.T.,1122-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2171,Brownes Road/W.I.T.,1157-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2172,Brownes Road/W.I.T.,2020-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2173,Brownes Road/W.I.T.,1187-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2174,Brownes Road/W.I.T.,1257-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2175,Brownes Road/W.I.T.,1327-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2176,Brownes Road/W.I.T.,1959-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2177,Brownes Road/W.I.T.,1461-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2178,Brownes Road/W.I.T.,1555-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2179,Brownes Road/W.I.T.,1623-00003-1,0,4318_7778009_6040802,4318_9 -4318_78159,143,4318_218,The Quay,2905-00017-1,0,4318_7778009_6010802,4318_3 -4318_78162,133,4318_2180,Brownes Road/W.I.T.,1754-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2181,Brownes Road/W.I.T.,1788-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2182,Brownes Road/W.I.T.,1890-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2183,Brownes Road/W.I.T.,1431-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2184,Brownes Road/W.I.T.,1521-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2185,Brownes Road/W.I.T.,1589-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2186,Brownes Road/W.I.T.,1657-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2187,Brownes Road/W.I.T.,1691-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2188,Brownes Road/W.I.T.,1491-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2189,Brownes Road/W.I.T.,1720-00014-1,0,4318_7778009_6040802,4318_9 -4318_78159,131,4318_219,The Quay,386-00002-1,0,4318_7778009_6010803,4318_1 -4318_78162,140,4318_2190,Brownes Road/W.I.T.,1822-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2191,Brownes Road/W.I.T.,1856-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2192,Brownes Road/W.I.T.,1397-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2193,Brownes Road/W.I.T.,2053-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2194,Brownes Road/W.I.T.,1054-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2195,Brownes Road/W.I.T.,1089-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2196,Brownes Road/W.I.T.,1224-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2197,Brownes Road/W.I.T.,1294-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2198,Brownes Road/W.I.T.,1364-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2199,Brownes Road/W.I.T.,1926-00007-1,0,4318_7778009_6040802,4318_10 -4318_78159,141,4318_22,The Quay,3056-00016-1,0,4318_7778009_6010803,4318_1 -4318_78159,132,4318_220,The Quay,401-00003-1,0,4318_7778009_6010803,4318_1 -4318_78162,145,4318_2200,Brownes Road/W.I.T.,1992-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2201,Brownes Road/W.I.T.,1019-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2202,Brownes Road/W.I.T.,1124-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2203,Brownes Road/W.I.T.,1159-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2204,Brownes Road/W.I.T.,2022-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2205,Brownes Road/W.I.T.,1189-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2206,Brownes Road/W.I.T.,1259-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2207,Brownes Road/W.I.T.,1329-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2208,Brownes Road/W.I.T.,1961-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2209,Brownes Road/W.I.T.,1463-00001-1,0,4318_7778009_6040801,4318_9 -4318_78159,133,4318_221,The Quay,416-00004-1,0,4318_7778009_6010803,4318_1 -4318_78162,131,4318_2210,Brownes Road/W.I.T.,1557-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2211,Brownes Road/W.I.T.,1625-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2212,Brownes Road/W.I.T.,1756-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2213,Brownes Road/W.I.T.,1790-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2214,Brownes Road/W.I.T.,1892-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2215,Brownes Road/W.I.T.,1433-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2216,Brownes Road/W.I.T.,1523-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2217,Brownes Road/W.I.T.,1591-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2218,Brownes Road/W.I.T.,1659-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2219,Brownes Road/W.I.T.,1693-00011-1,0,4318_7778009_6040802,4318_10 -4318_78159,134,4318_222,The Quay,431-00005-1,0,4318_7778009_6010803,4318_1 -4318_78162,146,4318_2220,Brownes Road/W.I.T.,1493-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2221,Brownes Road/W.I.T.,1722-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2222,Brownes Road/W.I.T.,1824-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2223,Brownes Road/W.I.T.,1858-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2224,Brownes Road/W.I.T.,1399-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2225,Brownes Road/W.I.T.,2055-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2226,Brownes Road/W.I.T.,1056-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2227,Brownes Road/W.I.T.,1091-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2228,Brownes Road/W.I.T.,1226-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2229,Brownes Road/W.I.T.,1296-00005-1,0,4318_7778009_6040801,4318_10 -4318_78159,135,4318_223,The Quay,446-00006-1,0,4318_7778009_6010803,4318_1 -4318_78162,135,4318_2230,Brownes Road/W.I.T.,1366-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2231,Brownes Road/W.I.T.,1928-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2232,Brownes Road/W.I.T.,1994-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2233,Brownes Road/W.I.T.,1021-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2234,Brownes Road/W.I.T.,1126-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2235,Brownes Road/W.I.T.,1161-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2236,Brownes Road/W.I.T.,2024-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2237,Brownes Road/W.I.T.,1191-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2238,Brownes Road/W.I.T.,1261-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2239,Brownes Road/W.I.T.,1331-00016-1,0,4318_7778009_6040801,4318_9 -4318_78159,142,4318_224,The Quay,148-00007-1,0,4318_7778009_6010801,4318_1 -4318_78162,143,4318_2240,Brownes Road/W.I.T.,1963-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2241,Brownes Road/W.I.T.,1465-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2242,Brownes Road/W.I.T.,1559-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2243,Brownes Road/W.I.T.,1627-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2244,Brownes Road/W.I.T.,1758-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2245,Brownes Road/W.I.T.,1792-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2246,Brownes Road/W.I.T.,1894-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2247,Brownes Road/W.I.T.,1435-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2248,Brownes Road/W.I.T.,1525-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2249,Brownes Road/W.I.T.,1593-00009-1,0,4318_7778009_6040802,4318_10 -4318_78159,136,4318_225,The Quay,3095-00009-1,0,4318_7778009_6010803,4318_1 -4318_78162,137,4318_2250,Brownes Road/W.I.T.,1661-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2251,Brownes Road/W.I.T.,1695-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2252,Brownes Road/W.I.T.,1495-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2253,Brownes Road/W.I.T.,1724-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2254,Brownes Road/W.I.T.,1826-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2255,Brownes Road/W.I.T.,1860-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2256,Brownes Road/W.I.T.,1401-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2257,Brownes Road/W.I.T.,2057-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2258,Brownes Road/W.I.T.,1058-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2259,Brownes Road/W.I.T.,1093-00003-1,0,4318_7778009_6040801,4318_9 -4318_78159,137,4318_226,The Quay,3093-00010-1,0,4318_7778009_6010803,4318_1 -4318_78162,133,4318_2260,Brownes Road/W.I.T.,1228-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2261,Brownes Road/W.I.T.,1298-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2262,Brownes Road/W.I.T.,1368-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2263,Brownes Road/W.I.T.,1930-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2264,Brownes Road/W.I.T.,1996-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2265,Brownes Road/W.I.T.,1023-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2266,Brownes Road/W.I.T.,1128-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2267,Brownes Road/W.I.T.,1163-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2268,Brownes Road/W.I.T.,2026-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2269,Brownes Road/W.I.T.,1193-00014-1,0,4318_7778009_6040801,4318_9 -4318_78159,138,4318_227,The Quay,3094-00011-1,0,4318_7778009_6010803,4318_1 -4318_78162,140,4318_2270,Brownes Road/W.I.T.,1263-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2271,Brownes Road/W.I.T.,1333-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2272,Brownes Road/W.I.T.,1965-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2273,Brownes Road/W.I.T.,1467-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2274,Brownes Road/W.I.T.,1561-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2275,Brownes Road/W.I.T.,1629-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2276,Brownes Road/W.I.T.,1760-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2277,Brownes Road/W.I.T.,1794-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2278,Brownes Road/W.I.T.,1896-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2279,Brownes Road/W.I.T.,1437-00007-1,0,4318_7778009_6040801,4318_10 -4318_78159,139,4318_228,The Quay,3096-00014-1,0,4318_7778009_6010803,4318_1 -4318_78162,145,4318_2280,Brownes Road/W.I.T.,1527-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2281,Brownes Road/W.I.T.,1595-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2282,Brownes Road/W.I.T.,1663-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2283,Brownes Road/W.I.T.,1697-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2284,Brownes Road/W.I.T.,1497-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2285,Brownes Road/W.I.T.,1726-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2286,Brownes Road/W.I.T.,1828-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2287,Brownes Road/W.I.T.,1862-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2288,Brownes Road/W.I.T.,1403-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2289,Brownes Road/W.I.T.,2059-00001-1,0,4318_7778009_6040802,4318_9 -4318_78159,140,4318_229,The Quay,3092-00015-1,0,4318_7778009_6010803,4318_1 -4318_78162,131,4318_2290,Brownes Road/W.I.T.,1060-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2291,Brownes Road/W.I.T.,1095-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2292,Brownes Road/W.I.T.,1230-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2293,Brownes Road/W.I.T.,1300-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2294,Brownes Road/W.I.T.,1370-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2295,Brownes Road/W.I.T.,1932-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2296,Brownes Road/W.I.T.,1998-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2297,Brownes Road/W.I.T.,1025-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2298,Brownes Road/W.I.T.,1130-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2299,Brownes Road/W.I.T.,1165-00011-1,0,4318_7778009_6040801,4318_10 -4318_78159,142,4318_23,The Quay,140-00007-1,0,4318_7778009_6010801,4318_1 -4318_78159,141,4318_230,The Quay,3097-00016-1,0,4318_7778009_6010803,4318_1 -4318_78162,146,4318_2300,Brownes Road/W.I.T.,2028-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2301,Brownes Road/W.I.T.,1195-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2302,Brownes Road/W.I.T.,1265-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2303,Brownes Road/W.I.T.,1335-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2304,Brownes Road/W.I.T.,1967-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2305,Brownes Road/W.I.T.,1469-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2306,Brownes Road/W.I.T.,1563-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2307,Brownes Road/W.I.T.,1631-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2308,Brownes Road/W.I.T.,1762-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2309,Brownes Road/W.I.T.,1796-00005-1,0,4318_7778009_6040802,4318_10 -4318_78159,143,4318_231,The Quay,2717-00017-1,0,4318_7778009_6010801,4318_1 -4318_78162,135,4318_2310,Brownes Road/W.I.T.,1898-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2311,Brownes Road/W.I.T.,1439-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2312,Brownes Road/W.I.T.,1529-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2313,Brownes Road/W.I.T.,1597-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2314,Brownes Road/W.I.T.,1665-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2315,Brownes Road/W.I.T.,1699-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2316,Brownes Road/W.I.T.,1499-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2317,Brownes Road/W.I.T.,1728-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2318,Brownes Road/W.I.T.,1830-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2319,Brownes Road/W.I.T.,1864-00016-1,0,4318_7778009_6040802,4318_9 -4318_78159,144,4318_232,The Quay,172-00001-1,0,4318_7778009_6010801,4318_1 -4318_78162,143,4318_2320,Brownes Road/W.I.T.,1405-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2321,Brownes Road/W.I.T.,2061-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2322,Brownes Road/W.I.T.,1062-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2323,Brownes Road/W.I.T.,1097-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2324,Brownes Road/W.I.T.,1232-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2325,Brownes Road/W.I.T.,1302-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2326,Brownes Road/W.I.T.,1372-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2327,Brownes Road/W.I.T.,1934-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2328,Brownes Road/W.I.T.,2000-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2329,Brownes Road/W.I.T.,1027-00009-1,0,4318_7778009_6040801,4318_10 -4318_78159,145,4318_233,The Quay,2718-00008-1,0,4318_7778009_6010801,4318_1 -4318_78162,137,4318_2330,Brownes Road/W.I.T.,1132-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2331,Brownes Road/W.I.T.,1167-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2332,Brownes Road/W.I.T.,2030-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2333,Brownes Road/W.I.T.,1197-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2334,Brownes Road/W.I.T.,1267-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2335,Brownes Road/W.I.T.,1337-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2336,Brownes Road/W.I.T.,1969-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2337,Brownes Road/W.I.T.,1471-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2338,Brownes Road/W.I.T.,1565-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2339,Brownes Road/W.I.T.,1633-00003-1,0,4318_7778009_6040802,4318_9 -4318_78159,146,4318_234,The Quay,2719-00013-1,0,4318_7778009_6010801,4318_1 -4318_78162,133,4318_2340,Brownes Road/W.I.T.,1764-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2341,Brownes Road/W.I.T.,1798-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2342,Brownes Road/W.I.T.,1900-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2343,Brownes Road/W.I.T.,1441-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2344,Brownes Road/W.I.T.,1531-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2345,Brownes Road/W.I.T.,1599-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2346,Brownes Road/W.I.T.,1667-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2347,Brownes Road/W.I.T.,1701-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2348,Brownes Road/W.I.T.,1501-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2349,Brownes Road/W.I.T.,1730-00014-1,0,4318_7778009_6040802,4318_9 -4318_78159,131,4318_235,The Quay,574-00002-1,0,4318_7778009_6010805,4318_1 -4318_78162,140,4318_2350,Brownes Road/W.I.T.,1832-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2351,Brownes Road/W.I.T.,1866-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2352,Brownes Road/W.I.T.,1407-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2353,Brownes Road/W.I.T.,2063-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2354,Brownes Road/W.I.T.,1064-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2355,Brownes Road/W.I.T.,1099-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2356,Brownes Road/W.I.T.,1234-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2357,Brownes Road/W.I.T.,1304-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2358,Brownes Road/W.I.T.,1374-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2359,Brownes Road/W.I.T.,1936-00007-1,0,4318_7778009_6040802,4318_10 -4318_78159,132,4318_236,The Quay,588-00003-1,0,4318_7778009_6010805,4318_1 -4318_78162,145,4318_2360,Brownes Road/W.I.T.,2002-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2361,Brownes Road/W.I.T.,1029-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2362,Brownes Road/W.I.T.,1134-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2363,Brownes Road/W.I.T.,1169-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2364,Brownes Road/W.I.T.,2032-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2365,Brownes Road/W.I.T.,1199-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2366,Brownes Road/W.I.T.,1269-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2367,Brownes Road/W.I.T.,1339-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2368,Brownes Road/W.I.T.,1971-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2369,Brownes Road/W.I.T.,1473-00001-1,0,4318_7778009_6040801,4318_9 -4318_78159,133,4318_237,The Quay,602-00004-1,0,4318_7778009_6010805,4318_1 -4318_78162,131,4318_2370,Brownes Road/W.I.T.,1567-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2371,Brownes Road/W.I.T.,1635-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2372,Brownes Road/W.I.T.,1766-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2373,Brownes Road/W.I.T.,1800-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2374,Brownes Road/W.I.T.,1902-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2375,Brownes Road/W.I.T.,1443-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2376,Brownes Road/W.I.T.,1533-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2377,Brownes Road/W.I.T.,1601-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2378,Brownes Road/W.I.T.,1669-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2379,Brownes Road/W.I.T.,1703-00011-1,0,4318_7778009_6040802,4318_10 -4318_78159,134,4318_238,The Quay,616-00005-1,0,4318_7778009_6010805,4318_1 -4318_78162,146,4318_2380,Brownes Road/W.I.T.,1503-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2381,Brownes Road/W.I.T.,1732-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2382,Brownes Road/W.I.T.,1834-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2383,Brownes Road/W.I.T.,1868-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2384,Brownes Road/W.I.T.,1409-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2385,Brownes Road/W.I.T.,2065-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2386,Brownes Road/W.I.T.,1066-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2387,Brownes Road/W.I.T.,1101-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2388,Brownes Road/W.I.T.,1236-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2389,Brownes Road/W.I.T.,1306-00005-1,0,4318_7778009_6040801,4318_10 -4318_78159,135,4318_239,The Quay,630-00006-1,0,4318_7778009_6010805,4318_1 -4318_78162,135,4318_2390,Brownes Road/W.I.T.,1376-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2391,Brownes Road/W.I.T.,1938-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2392,Brownes Road/W.I.T.,2004-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2393,Brownes Road/W.I.T.,1031-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2394,Brownes Road/W.I.T.,1136-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2395,Brownes Road/W.I.T.,1171-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2396,Brownes Road/W.I.T.,2034-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2397,Brownes Road/W.I.T.,1201-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2398,Brownes Road/W.I.T.,1271-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2399,Brownes Road/W.I.T.,1341-00016-1,0,4318_7778009_6040801,4318_9 -4318_78159,143,4318_24,The Quay,2667-00017-1,0,4318_7778009_6010801,4318_1 -4318_78159,142,4318_240,The Quay,640-00007-1,0,4318_7778009_6010805,4318_1 -4318_78162,143,4318_2400,Brownes Road/W.I.T.,1973-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2401,Brownes Road/W.I.T.,1475-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2402,Brownes Road/W.I.T.,1569-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2403,Brownes Road/W.I.T.,1637-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2404,Brownes Road/W.I.T.,1768-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2405,Brownes Road/W.I.T.,1802-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2406,Brownes Road/W.I.T.,1904-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2407,Brownes Road/W.I.T.,1445-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2408,Brownes Road/W.I.T.,1535-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2409,Brownes Road/W.I.T.,1603-00009-1,0,4318_7778009_6040802,4318_10 -4318_78159,136,4318_241,The Quay,3322-00009-1,0,4318_7778009_6010805,4318_1 -4318_78162,137,4318_2410,Brownes Road/W.I.T.,1671-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2411,Brownes Road/W.I.T.,1705-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2412,Brownes Road/W.I.T.,1505-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2413,Brownes Road/W.I.T.,1734-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2414,Brownes Road/W.I.T.,1836-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2415,Brownes Road/W.I.T.,1870-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2416,Brownes Road/W.I.T.,1411-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2417,Brownes Road/W.I.T.,2067-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2418,Brownes Road/W.I.T.,1068-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2419,Brownes Road/W.I.T.,1103-00003-1,0,4318_7778009_6040801,4318_9 -4318_78159,137,4318_242,The Quay,3320-00010-1,0,4318_7778009_6010805,4318_1 -4318_78162,133,4318_2420,Brownes Road/W.I.T.,1238-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2421,Brownes Road/W.I.T.,1308-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2422,Brownes Road/W.I.T.,1378-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2423,Brownes Road/W.I.T.,1940-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2424,Brownes Road/W.I.T.,2006-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2425,Brownes Road/W.I.T.,1033-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2426,Brownes Road/W.I.T.,1138-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2427,Brownes Road/W.I.T.,1173-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2428,Brownes Road/W.I.T.,2036-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2429,Brownes Road/W.I.T.,1203-00014-1,0,4318_7778009_6040801,4318_9 -4318_78159,138,4318_243,The Quay,3321-00011-1,0,4318_7778009_6010805,4318_1 -4318_78162,140,4318_2430,Brownes Road/W.I.T.,1273-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2431,Brownes Road/W.I.T.,1343-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2432,Brownes Road/W.I.T.,1975-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2433,Brownes Road/W.I.T.,1477-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2434,Brownes Road/W.I.T.,1571-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2435,Brownes Road/W.I.T.,1639-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2436,Brownes Road/W.I.T.,1770-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2437,Brownes Road/W.I.T.,1804-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2438,Brownes Road/W.I.T.,1906-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2439,Brownes Road/W.I.T.,1447-00007-1,0,4318_7778009_6040801,4318_10 -4318_78159,139,4318_244,The Quay,3325-00014-1,0,4318_7778009_6010805,4318_1 -4318_78162,145,4318_2440,Brownes Road/W.I.T.,1537-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2441,Brownes Road/W.I.T.,1605-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2442,Brownes Road/W.I.T.,1673-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2443,Brownes Road/W.I.T.,1707-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2444,Brownes Road/W.I.T.,1507-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2445,Brownes Road/W.I.T.,1736-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2446,Brownes Road/W.I.T.,1838-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2447,Brownes Road/W.I.T.,1872-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2448,Brownes Road/W.I.T.,1413-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2449,Brownes Road/W.I.T.,2069-00001-1,0,4318_7778009_6040802,4318_9 -4318_78159,140,4318_245,The Quay,3323-00015-1,0,4318_7778009_6010805,4318_1 -4318_78162,131,4318_2450,Brownes Road/W.I.T.,1070-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2451,Brownes Road/W.I.T.,1105-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2452,Brownes Road/W.I.T.,1240-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2453,Brownes Road/W.I.T.,1310-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2454,Brownes Road/W.I.T.,1380-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2455,Brownes Road/W.I.T.,1942-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2456,Brownes Road/W.I.T.,2008-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2457,Brownes Road/W.I.T.,1035-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2458,Brownes Road/W.I.T.,1140-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2459,Brownes Road/W.I.T.,1175-00011-1,0,4318_7778009_6040801,4318_10 -4318_78159,141,4318_246,The Quay,3324-00016-1,0,4318_7778009_6010805,4318_1 -4318_78162,146,4318_2460,Brownes Road/W.I.T.,2038-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2461,Brownes Road/W.I.T.,1205-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2462,Brownes Road/W.I.T.,1275-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2463,Brownes Road/W.I.T.,1345-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2464,Brownes Road/W.I.T.,1977-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2465,Brownes Road/W.I.T.,1479-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2466,Brownes Road/W.I.T.,1573-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2467,Brownes Road/W.I.T.,1641-00003-1,0,4318_7778009_6040802,4318_9 -4318_78162,133,4318_2468,Brownes Road/W.I.T.,1772-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2469,Brownes Road/W.I.T.,1806-00005-1,0,4318_7778009_6040802,4318_10 -4318_78159,143,4318_247,The Quay,3319-00017-1,0,4318_7778009_6010805,4318_1 -4318_78162,135,4318_2470,Brownes Road/W.I.T.,1908-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2471,Brownes Road/W.I.T.,1449-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2472,Brownes Road/W.I.T.,1607-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2473,Brownes Road/W.I.T.,1675-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,138,4318_2474,Brownes Road/W.I.T.,1709-00011-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2475,Brownes Road/W.I.T.,1738-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2476,Brownes Road/W.I.T.,1840-00015-1,0,4318_7778009_6040802,4318_9 -4318_78162,141,4318_2477,Brownes Road/W.I.T.,1874-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2478,Brownes Road/W.I.T.,1415-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,145,4318_2479,Brownes Road/W.I.T.,1539-00008-1,0,4318_7778009_6040801,4318_10 -4318_78159,144,4318_248,The Quay,468-00001-1,0,4318_7778009_6010803,4318_1 -4318_78162,146,4318_2480,Brownes Road/W.I.T.,1509-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,144,4318_2481,Brownes Road/W.I.T.,2071-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2482,Brownes Road/W.I.T.,1072-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2483,Brownes Road/W.I.T.,1107-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2484,Brownes Road/W.I.T.,1242-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2485,Brownes Road/W.I.T.,1312-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2486,Brownes Road/W.I.T.,1382-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2487,Brownes Road/W.I.T.,1944-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2488,Brownes Road/W.I.T.,2010-00008-1,0,4318_7778009_6040802,4318_10 -4318_78162,136,4318_2489,Brownes Road/W.I.T.,1037-00009-1,0,4318_7778009_6040801,4318_10 -4318_78159,131,4318_249,The Quay,198-00002-1,0,4318_7778009_6010802,4318_2 -4318_78162,137,4318_2490,Brownes Road/W.I.T.,1142-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,138,4318_2491,Brownes Road/W.I.T.,1177-00011-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2492,Brownes Road/W.I.T.,2040-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2493,Brownes Road/W.I.T.,1207-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2494,Brownes Road/W.I.T.,1277-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2495,Brownes Road/W.I.T.,1347-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2496,Brownes Road/W.I.T.,1979-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2497,Brownes Road/W.I.T.,1481-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2498,Brownes Road/W.I.T.,1575-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2499,Brownes Road/W.I.T.,1643-00003-1,0,4318_7778009_6040802,4318_9 -4318_78159,131,4318_25,The Quay,568-00002-1,0,4318_7778009_6010805,4318_1 -4318_78159,132,4318_250,The Quay,222-00003-1,0,4318_7778009_6010802,4318_2 -4318_78162,133,4318_2500,Brownes Road/W.I.T.,1774-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2501,Brownes Road/W.I.T.,1808-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2502,Brownes Road/W.I.T.,1910-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2503,Brownes Road/W.I.T.,1451-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2504,Brownes Road/W.I.T.,1541-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2505,Brownes Road/W.I.T.,1609-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2506,Brownes Road/W.I.T.,1677-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2507,Brownes Road/W.I.T.,1511-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2508,Brownes Road/W.I.T.,1740-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2509,Brownes Road/W.I.T.,1842-00015-1,0,4318_7778009_6040802,4318_9 -4318_78159,133,4318_251,The Quay,265-00004-1,0,4318_7778009_6010802,4318_2 -4318_78162,141,4318_2510,Brownes Road/W.I.T.,1876-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2511,Brownes Road/W.I.T.,1417-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2512,Brownes Road/W.I.T.,2073-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2513,Brownes Road/W.I.T.,1074-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2514,Brownes Road/W.I.T.,1109-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2515,Brownes Road/W.I.T.,1244-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2516,Brownes Road/W.I.T.,1314-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2517,Brownes Road/W.I.T.,1384-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2518,Brownes Road/W.I.T.,1946-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2519,Brownes Road/W.I.T.,2012-00008-1,0,4318_7778009_6040802,4318_10 -4318_78159,134,4318_252,The Quay,289-00005-1,0,4318_7778009_6010802,4318_2 -4318_78162,136,4318_2520,Brownes Road/W.I.T.,1039-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2521,Brownes Road/W.I.T.,1144-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2522,Brownes Road/W.I.T.,2042-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2523,Brownes Road/W.I.T.,1209-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2524,Brownes Road/W.I.T.,1279-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2525,Brownes Road/W.I.T.,1349-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2526,Brownes Road/W.I.T.,1981-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2527,Brownes Road/W.I.T.,1483-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2528,Brownes Road/W.I.T.,1577-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2529,Brownes Road/W.I.T.,1645-00003-1,0,4318_7778009_6040802,4318_9 -4318_78159,135,4318_253,The Quay,313-00006-1,0,4318_7778009_6010802,4318_2 -4318_78162,133,4318_2530,Brownes Road/W.I.T.,1776-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2531,Brownes Road/W.I.T.,1810-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2532,Brownes Road/W.I.T.,1912-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2533,Brownes Road/W.I.T.,1453-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2534,Brownes Road/W.I.T.,1543-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2535,Brownes Road/W.I.T.,1611-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2536,Brownes Road/W.I.T.,1679-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2537,Brownes Road/W.I.T.,1513-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2538,Brownes Road/W.I.T.,1742-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2539,Brownes Road/W.I.T.,1844-00015-1,0,4318_7778009_6040802,4318_9 -4318_78159,142,4318_254,The Quay,560-00007-1,0,4318_7778009_6010804,4318_2 -4318_78162,141,4318_2540,Brownes Road/W.I.T.,1878-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2541,Brownes Road/W.I.T.,1419-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,144,4318_2542,Brownes Road/W.I.T.,2075-00001-1,0,4318_7778009_6040802,4318_9 -4318_78162,131,4318_2543,Brownes Road/W.I.T.,1076-00002-1,0,4318_7778009_6040801,4318_9 -4318_78162,132,4318_2544,Brownes Road/W.I.T.,1111-00003-1,0,4318_7778009_6040801,4318_9 -4318_78162,133,4318_2545,Brownes Road/W.I.T.,1246-00004-1,0,4318_7778009_6040801,4318_10 -4318_78162,134,4318_2546,Brownes Road/W.I.T.,1316-00005-1,0,4318_7778009_6040801,4318_10 -4318_78162,135,4318_2547,Brownes Road/W.I.T.,1386-00006-1,0,4318_7778009_6040801,4318_10 -4318_78162,142,4318_2548,Brownes Road/W.I.T.,1948-00007-1,0,4318_7778009_6040802,4318_10 -4318_78162,145,4318_2549,Brownes Road/W.I.T.,2014-00008-1,0,4318_7778009_6040802,4318_10 -4318_78159,145,4318_255,The Quay,3099-00008-1,0,4318_7778009_6010803,4318_1 -4318_78162,136,4318_2550,Brownes Road/W.I.T.,1041-00009-1,0,4318_7778009_6040801,4318_10 -4318_78162,137,4318_2551,Brownes Road/W.I.T.,1146-00010-1,0,4318_7778009_6040801,4318_10 -4318_78162,146,4318_2552,Brownes Road/W.I.T.,2044-00013-1,0,4318_7778009_6040802,4318_10 -4318_78162,139,4318_2553,Brownes Road/W.I.T.,1211-00014-1,0,4318_7778009_6040801,4318_9 -4318_78162,140,4318_2554,Brownes Road/W.I.T.,1281-00015-1,0,4318_7778009_6040801,4318_9 -4318_78162,141,4318_2555,Brownes Road/W.I.T.,1351-00016-1,0,4318_7778009_6040801,4318_9 -4318_78162,143,4318_2556,Brownes Road/W.I.T.,1983-00017-1,0,4318_7778009_6040802,4318_9 -4318_78162,144,4318_2557,Brownes Road/W.I.T.,1485-00001-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2558,Brownes Road/W.I.T.,1579-00002-1,0,4318_7778009_6040802,4318_9 -4318_78162,132,4318_2559,Brownes Road/W.I.T.,1647-00003-1,0,4318_7778009_6040802,4318_9 -4318_78159,136,4318_256,The Quay,2917-00009-1,0,4318_7778009_6010802,4318_2 -4318_78162,133,4318_2560,Brownes Road/W.I.T.,1778-00004-1,0,4318_7778009_6040802,4318_10 -4318_78162,134,4318_2561,Brownes Road/W.I.T.,1812-00005-1,0,4318_7778009_6040802,4318_10 -4318_78162,135,4318_2562,Brownes Road/W.I.T.,1914-00006-1,0,4318_7778009_6040802,4318_10 -4318_78162,142,4318_2563,Brownes Road/W.I.T.,1455-00007-1,0,4318_7778009_6040801,4318_10 -4318_78162,145,4318_2564,Brownes Road/W.I.T.,1545-00008-1,0,4318_7778009_6040801,4318_10 -4318_78162,136,4318_2565,Brownes Road/W.I.T.,1613-00009-1,0,4318_7778009_6040802,4318_10 -4318_78162,137,4318_2566,Brownes Road/W.I.T.,1681-00010-1,0,4318_7778009_6040802,4318_10 -4318_78162,146,4318_2567,Brownes Road/W.I.T.,1515-00013-1,0,4318_7778009_6040801,4318_10 -4318_78162,139,4318_2568,Brownes Road/W.I.T.,1744-00014-1,0,4318_7778009_6040802,4318_9 -4318_78162,140,4318_2569,Brownes Road/W.I.T.,1846-00015-1,0,4318_7778009_6040802,4318_9 -4318_78159,137,4318_257,The Quay,2918-00010-1,0,4318_7778009_6010802,4318_2 -4318_78162,141,4318_2570,Brownes Road/W.I.T.,1880-00016-1,0,4318_7778009_6040802,4318_9 -4318_78162,143,4318_2571,Brownes Road/W.I.T.,1421-00017-1,0,4318_7778009_6040801,4318_9 -4318_78162,131,4318_2572,City Centre,1043-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2573,City Centre,1078-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2574,The Quay,1213-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2575,The Quay,1283-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2576,The Quay,1353-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2577,The Quay,1915-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2578,The Quay,1008-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2579,The Quay,1113-00010-1,1,4318_7778009_6040801,4318_12 -4318_78159,138,4318_258,The Quay,246-00011-1,0,4318_7778009_6010802,4318_2 -4318_78162,138,4318_2580,The Quay,1148-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2581,City Centre,1178-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2582,City Centre,1248-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2583,City Centre,1318-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2584,City Centre,1950-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,131,4318_2585,City Centre,1546-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2586,City Centre,1614-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2587,The Quay,1745-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2588,The Quay,1779-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2589,The Quay,1881-00006-1,1,4318_7778009_6040802,4318_12 -4318_78159,146,4318_259,The Quay,3100-00013-1,0,4318_7778009_6010803,4318_1 -4318_78162,142,4318_2590,The Quay,1422-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2591,The Quay,1580-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2592,The Quay,1648-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2593,The Quay,1682-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2594,City Centre,1711-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2595,City Centre,1813-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2596,City Centre,1847-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2597,City Centre,1388-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,131,4318_2598,City Centre,1045-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2599,City Centre,1080-00003-1,1,4318_7778009_6040801,4318_11 -4318_78159,132,4318_26,The Quay,582-00003-1,0,4318_7778009_6010805,4318_1 -4318_78159,139,4318_260,The Quay,2916-00014-1,0,4318_7778009_6010802,4318_2 -4318_78162,133,4318_2600,The Quay,1215-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2601,The Quay,1285-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2602,The Quay,1355-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2603,The Quay,1917-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2604,The Quay,1010-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2605,The Quay,1115-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2606,The Quay,1150-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2607,City Centre,1180-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2608,City Centre,1250-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2609,City Centre,1320-00016-1,1,4318_7778009_6040801,4318_11 -4318_78159,140,4318_261,The Quay,2920-00015-1,0,4318_7778009_6010802,4318_2 -4318_78162,143,4318_2610,City Centre,1952-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,131,4318_2611,City Centre,1548-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2612,City Centre,1616-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2613,The Quay,1747-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2614,The Quay,1781-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2615,The Quay,1883-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2616,The Quay,1424-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2617,The Quay,1582-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2618,The Quay,1650-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2619,The Quay,1684-00011-1,1,4318_7778009_6040802,4318_12 -4318_78159,141,4318_262,The Quay,2919-00016-1,0,4318_7778009_6010802,4318_2 -4318_78162,139,4318_2620,City Centre,1713-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2621,City Centre,1815-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2622,City Centre,1849-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2623,City Centre,1390-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2624,City Centre,2046-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2625,City Centre,1047-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2626,City Centre,1082-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2627,The Quay,1217-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2628,The Quay,1287-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2629,The Quay,1357-00006-1,1,4318_7778009_6040801,4318_12 -4318_78159,143,4318_263,The Quay,3219-00017-1,0,4318_7778009_6010804,4318_2 -4318_78162,142,4318_2630,The Quay,1919-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2631,The Quay,1985-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2632,The Quay,1012-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2633,The Quay,1117-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2634,The Quay,1152-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2635,City Centre,1182-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2636,City Centre,1252-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2637,City Centre,1322-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2638,City Centre,1954-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2639,City Centre,1456-00001-1,1,4318_7778009_6040801,4318_11 -4318_78159,131,4318_264,The Quay,484-00002-1,0,4318_7778009_6010804,4318_1 -4318_78162,131,4318_2640,City Centre,1550-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2641,City Centre,1618-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2642,The Quay,1749-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2643,The Quay,1783-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2644,The Quay,1885-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2645,The Quay,1426-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2646,The Quay,1516-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2647,The Quay,1584-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2648,The Quay,1652-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2649,The Quay,1686-00011-1,1,4318_7778009_6040802,4318_12 -4318_78159,132,4318_265,The Quay,500-00003-1,0,4318_7778009_6010804,4318_1 -4318_78162,146,4318_2650,The Quay,1486-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2651,City Centre,1715-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2652,City Centre,1817-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2653,City Centre,1851-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2654,City Centre,1392-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2655,City Centre,2048-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2656,City Centre,1049-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2657,City Centre,1084-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2658,The Quay,1219-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2659,The Quay,1289-00005-1,1,4318_7778009_6040801,4318_12 -4318_78159,133,4318_266,The Quay,516-00004-1,0,4318_7778009_6010804,4318_1 -4318_78162,135,4318_2660,The Quay,1359-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2661,The Quay,1921-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2662,The Quay,1987-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2663,The Quay,1014-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2664,The Quay,1119-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2665,The Quay,1154-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_2666,The Quay,2017-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2667,City Centre,1184-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2668,City Centre,1254-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2669,City Centre,1324-00016-1,1,4318_7778009_6040801,4318_11 -4318_78159,134,4318_267,The Quay,532-00005-1,0,4318_7778009_6010804,4318_1 -4318_78162,143,4318_2670,City Centre,1956-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2671,City Centre,1458-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_2672,City Centre,1552-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2673,City Centre,1620-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2674,The Quay,1751-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2675,The Quay,1785-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2676,The Quay,1887-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2677,The Quay,1428-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2678,The Quay,1518-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2679,The Quay,1586-00009-1,1,4318_7778009_6040802,4318_12 -4318_78159,135,4318_268,The Quay,548-00006-1,0,4318_7778009_6010804,4318_1 -4318_78162,137,4318_2680,The Quay,1654-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2681,The Quay,1688-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_2682,The Quay,1488-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2683,City Centre,1717-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2684,City Centre,1819-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2685,City Centre,1853-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2686,City Centre,1394-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2687,City Centre,2050-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2688,City Centre,1051-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2689,City Centre,1086-00003-1,1,4318_7778009_6040801,4318_11 -4318_78159,142,4318_269,The Quay,459-00007-1,0,4318_7778009_6010803,4318_1 -4318_78162,133,4318_2690,The Quay,1221-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2691,The Quay,1291-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2692,The Quay,1361-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2693,The Quay,1923-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2694,The Quay,1989-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2695,The Quay,1016-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2696,The Quay,1121-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2697,The Quay,1156-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_2698,The Quay,2019-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2699,City Centre,1186-00014-1,1,4318_7778009_6040801,4318_11 -4318_78159,133,4318_27,The Quay,596-00004-1,0,4318_7778009_6010805,4318_1 -4318_78159,136,4318_270,The Quay,3221-00009-1,0,4318_7778009_6010804,4318_1 -4318_78162,140,4318_2700,City Centre,1256-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2701,City Centre,1326-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2702,City Centre,1958-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2703,City Centre,1460-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_2704,City Centre,1554-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2705,City Centre,1622-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2706,The Quay,1753-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2707,The Quay,1787-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2708,The Quay,1889-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2709,The Quay,1430-00007-1,1,4318_7778009_6040801,4318_12 -4318_78159,137,4318_271,The Quay,3223-00010-1,0,4318_7778009_6010804,4318_1 -4318_78162,145,4318_2710,The Quay,1520-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2711,The Quay,1588-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2712,The Quay,1656-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2713,The Quay,1690-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_2714,The Quay,1490-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2715,City Centre,1719-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2716,City Centre,1821-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2717,City Centre,1855-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2718,City Centre,1396-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2719,City Centre,2052-00001-1,1,4318_7778009_6040802,4318_11 -4318_78159,138,4318_272,The Quay,3224-00011-1,0,4318_7778009_6010804,4318_1 -4318_78162,131,4318_2720,City Centre,1053-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2721,City Centre,1088-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2722,The Quay,1223-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2723,The Quay,1293-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2724,The Quay,1363-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2725,The Quay,1925-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2726,The Quay,1991-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2727,The Quay,1018-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2728,The Quay,1123-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2729,The Quay,1158-00011-1,1,4318_7778009_6040801,4318_12 -4318_78159,139,4318_273,The Quay,3222-00014-1,0,4318_7778009_6010804,4318_1 -4318_78162,146,4318_2730,The Quay,2021-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2731,City Centre,1188-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2732,City Centre,1258-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2733,City Centre,1328-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2734,City Centre,1960-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2735,City Centre,1462-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_2736,City Centre,1556-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2737,City Centre,1624-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2738,The Quay,1755-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2739,The Quay,1789-00005-1,1,4318_7778009_6040802,4318_12 -4318_78159,140,4318_274,The Quay,3220-00015-1,0,4318_7778009_6010804,4318_1 -4318_78162,135,4318_2740,The Quay,1891-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2741,The Quay,1432-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2742,The Quay,1522-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2743,The Quay,1590-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2744,The Quay,1658-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2745,The Quay,1692-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_2746,The Quay,1492-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2747,City Centre,1721-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2748,City Centre,1823-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2749,City Centre,1857-00016-1,1,4318_7778009_6040802,4318_11 -4318_78159,141,4318_275,The Quay,3225-00016-1,0,4318_7778009_6010804,4318_1 -4318_78162,143,4318_2750,City Centre,1398-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2751,City Centre,2054-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2752,City Centre,1055-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2753,City Centre,1090-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2754,The Quay,1225-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2755,The Quay,1295-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2756,The Quay,1365-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2757,The Quay,1927-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2758,The Quay,1993-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2759,The Quay,1020-00009-1,1,4318_7778009_6040801,4318_12 -4318_78159,143,4318_276,The Quay,3107-00017-1,0,4318_7778009_6010803,4318_1 -4318_78162,137,4318_2760,The Quay,1125-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2761,The Quay,1160-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_2762,The Quay,2023-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2763,City Centre,1190-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2764,City Centre,1260-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2765,City Centre,1330-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2766,City Centre,1962-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2767,City Centre,1464-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_2768,City Centre,1558-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2769,City Centre,1626-00003-1,1,4318_7778009_6040802,4318_11 -4318_78159,144,4318_277,The Quay,362-00001-1,0,4318_7778009_6010802,4318_1 -4318_78162,133,4318_2770,The Quay,1757-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2771,The Quay,1791-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2772,The Quay,1893-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2773,The Quay,1434-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2774,The Quay,1524-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2775,The Quay,1592-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2776,The Quay,1660-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2777,The Quay,1694-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_2778,The Quay,1494-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2779,City Centre,1723-00014-1,1,4318_7778009_6040802,4318_11 -4318_78159,145,4318_278,The Quay,2921-00008-1,0,4318_7778009_6010802,4318_1 -4318_78162,140,4318_2780,City Centre,1825-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2781,City Centre,1859-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2782,City Centre,1400-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2783,City Centre,2056-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2784,City Centre,1057-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2785,City Centre,1092-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2786,The Quay,1227-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2787,The Quay,1297-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2788,The Quay,1367-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2789,The Quay,1929-00007-1,1,4318_7778009_6040802,4318_12 -4318_78159,146,4318_279,The Quay,2922-00013-1,0,4318_7778009_6010802,4318_1 -4318_78162,145,4318_2790,The Quay,1995-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2791,The Quay,1022-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2792,The Quay,1127-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2793,The Quay,1162-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_2794,The Quay,2025-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2795,City Centre,1192-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2796,City Centre,1262-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2797,City Centre,1332-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2798,City Centre,1964-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2799,City Centre,1466-00001-1,1,4318_7778009_6040801,4318_11 -4318_78159,134,4318_28,The Quay,610-00005-1,0,4318_7778009_6010805,4318_1 -4318_78159,131,4318_280,The Quay,9-00002-1,0,4318_7778009_6010801,4318_1 -4318_78162,131,4318_2800,City Centre,1560-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2801,City Centre,1628-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2802,The Quay,1759-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2803,The Quay,1793-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2804,The Quay,1895-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2805,The Quay,1436-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2806,The Quay,1526-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2807,The Quay,1594-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2808,The Quay,1662-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2809,The Quay,1696-00011-1,1,4318_7778009_6040802,4318_12 -4318_78159,132,4318_281,The Quay,52-00003-1,0,4318_7778009_6010801,4318_1 -4318_78162,146,4318_2810,The Quay,1496-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2811,City Centre,1725-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2812,City Centre,1827-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2813,City Centre,1861-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2814,City Centre,1402-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2815,City Centre,2058-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2816,City Centre,1059-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2817,City Centre,1094-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2818,The Quay,1229-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2819,The Quay,1299-00005-1,1,4318_7778009_6040801,4318_12 -4318_78159,133,4318_282,The Quay,76-00004-1,0,4318_7778009_6010801,4318_1 -4318_78162,135,4318_2820,The Quay,1369-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2821,The Quay,1931-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2822,The Quay,1997-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2823,The Quay,1024-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2824,The Quay,1129-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2825,The Quay,1164-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_2826,The Quay,2027-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2827,City Centre,1194-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2828,City Centre,1264-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2829,City Centre,1334-00016-1,1,4318_7778009_6040801,4318_11 -4318_78159,134,4318_283,The Quay,100-00005-1,0,4318_7778009_6010801,4318_1 -4318_78162,143,4318_2830,City Centre,1966-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2831,City Centre,1468-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_2832,City Centre,1562-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2833,City Centre,1630-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2834,The Quay,1761-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2835,The Quay,1795-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2836,The Quay,1897-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2837,The Quay,1438-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2838,The Quay,1528-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2839,The Quay,1596-00009-1,1,4318_7778009_6040802,4318_12 -4318_78159,135,4318_284,The Quay,124-00006-1,0,4318_7778009_6010801,4318_1 -4318_78162,137,4318_2840,The Quay,1664-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2841,The Quay,1698-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_2842,The Quay,1498-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2843,City Centre,1727-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2844,City Centre,1829-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2845,City Centre,1863-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2846,City Centre,1404-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2847,City Centre,2060-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2848,City Centre,1061-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2849,City Centre,1096-00003-1,1,4318_7778009_6040801,4318_11 -4318_78159,142,4318_285,The Quay,339-00007-1,0,4318_7778009_6010802,4318_2 -4318_78162,133,4318_2850,The Quay,1231-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2851,The Quay,1301-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2852,The Quay,1371-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2853,The Quay,1933-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2854,The Quay,1999-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2855,The Quay,1026-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2856,The Quay,1131-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2857,The Quay,1166-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_2858,The Quay,2029-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2859,City Centre,1196-00014-1,1,4318_7778009_6040801,4318_11 -4318_78159,136,4318_286,The Quay,2729-00009-1,0,4318_7778009_6010801,4318_1 -4318_78162,140,4318_2860,City Centre,1266-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2861,City Centre,1336-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2862,City Centre,1968-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2863,City Centre,1470-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_2864,City Centre,1564-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2865,City Centre,1632-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2866,The Quay,1763-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2867,The Quay,1797-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2868,The Quay,1899-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2869,The Quay,1440-00007-1,1,4318_7778009_6040801,4318_12 -4318_78159,137,4318_287,The Quay,2728-00010-1,0,4318_7778009_6010801,4318_1 -4318_78162,145,4318_2870,The Quay,1530-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2871,The Quay,1598-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2872,The Quay,1666-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2873,The Quay,1700-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_2874,The Quay,1500-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2875,City Centre,1729-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2876,City Centre,1831-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2877,City Centre,1865-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2878,City Centre,1406-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2879,City Centre,2062-00001-1,1,4318_7778009_6040802,4318_11 -4318_78159,138,4318_288,The Quay,33-00011-1,0,4318_7778009_6010801,4318_1 -4318_78162,131,4318_2880,City Centre,1063-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2881,City Centre,1098-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2882,The Quay,1233-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2883,The Quay,1303-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2884,The Quay,1373-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2885,The Quay,1935-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2886,The Quay,2001-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2887,The Quay,1028-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2888,The Quay,1133-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2889,The Quay,1168-00011-1,1,4318_7778009_6040801,4318_12 -4318_78159,139,4318_289,The Quay,2731-00014-1,0,4318_7778009_6010801,4318_1 -4318_78162,146,4318_2890,The Quay,2031-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2891,City Centre,1198-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2892,City Centre,1268-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2893,City Centre,1338-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2894,City Centre,1970-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2895,City Centre,1472-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_2896,City Centre,1566-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2897,City Centre,1634-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2898,The Quay,1765-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2899,The Quay,1799-00005-1,1,4318_7778009_6040802,4318_12 -4318_78159,135,4318_29,The Quay,624-00006-1,0,4318_7778009_6010805,4318_1 -4318_78159,140,4318_290,The Quay,2730-00015-1,0,4318_7778009_6010801,4318_1 -4318_78162,135,4318_2900,The Quay,1901-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2901,The Quay,1442-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2902,The Quay,1532-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2903,The Quay,1600-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2904,The Quay,1668-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2905,The Quay,1702-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_2906,The Quay,1502-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2907,City Centre,1731-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2908,City Centre,1833-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2909,City Centre,1867-00016-1,1,4318_7778009_6040802,4318_11 -4318_78159,141,4318_291,The Quay,2732-00016-1,0,4318_7778009_6010801,4318_1 -4318_78162,143,4318_2910,City Centre,1408-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2911,City Centre,2064-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2912,City Centre,1065-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2913,City Centre,1100-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2914,The Quay,1235-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2915,The Quay,1305-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2916,The Quay,1375-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2917,The Quay,1937-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2918,The Quay,2003-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2919,The Quay,1030-00009-1,1,4318_7778009_6040801,4318_12 -4318_78159,143,4318_292,The Quay,2923-00017-1,0,4318_7778009_6010802,4318_2 -4318_78162,137,4318_2920,The Quay,1135-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2921,The Quay,1170-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_2922,The Quay,2033-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2923,City Centre,1200-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2924,City Centre,1270-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2925,City Centre,1340-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2926,City Centre,1972-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2927,City Centre,1474-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_2928,City Centre,1568-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2929,City Centre,1636-00003-1,1,4318_7778009_6040802,4318_11 -4318_78159,144,4318_293,The Quay,174-00001-1,0,4318_7778009_6010801,4318_1 -4318_78162,133,4318_2930,The Quay,1767-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2931,The Quay,1801-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2932,The Quay,1903-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2933,The Quay,1444-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2934,The Quay,1534-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2935,The Quay,1602-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2936,The Quay,1670-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2937,The Quay,1704-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_2938,The Quay,1504-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2939,City Centre,1733-00014-1,1,4318_7778009_6040802,4318_11 -4318_78159,131,4318_294,The Quay,388-00002-1,0,4318_7778009_6010803,4318_2 -4318_78162,140,4318_2940,City Centre,1835-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2941,City Centre,1869-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2942,City Centre,1410-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2943,City Centre,2066-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2944,City Centre,1067-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2945,City Centre,1102-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2946,The Quay,1237-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2947,The Quay,1307-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_2948,The Quay,1377-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2949,The Quay,1939-00007-1,1,4318_7778009_6040802,4318_12 -4318_78159,132,4318_295,The Quay,403-00003-1,0,4318_7778009_6010803,4318_2 -4318_78162,145,4318_2950,The Quay,2005-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2951,The Quay,1032-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2952,The Quay,1137-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2953,The Quay,1172-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_2954,The Quay,2035-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2955,City Centre,1202-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2956,City Centre,1272-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2957,City Centre,1342-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_2958,City Centre,1974-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2959,City Centre,1476-00001-1,1,4318_7778009_6040801,4318_11 -4318_78159,133,4318_296,The Quay,418-00004-1,0,4318_7778009_6010803,4318_2 -4318_78162,131,4318_2960,City Centre,1570-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2961,City Centre,1638-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2962,The Quay,1769-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2963,The Quay,1803-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2964,The Quay,1905-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2965,The Quay,1446-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2966,The Quay,1536-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2967,The Quay,1604-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_2968,The Quay,1672-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_2969,The Quay,1706-00011-1,1,4318_7778009_6040802,4318_12 -4318_78159,134,4318_297,The Quay,433-00005-1,0,4318_7778009_6010803,4318_2 -4318_78162,146,4318_2970,The Quay,1506-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_2971,City Centre,1735-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_2972,City Centre,1837-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_2973,City Centre,1871-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_2974,City Centre,1412-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_2975,City Centre,2068-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_2976,City Centre,1069-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_2977,City Centre,1104-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_2978,The Quay,1239-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_2979,The Quay,1309-00005-1,1,4318_7778009_6040801,4318_12 -4318_78159,135,4318_298,The Quay,448-00006-1,0,4318_7778009_6010803,4318_2 -4318_78162,135,4318_2980,The Quay,1379-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_2981,The Quay,1941-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_2982,The Quay,2007-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_2983,The Quay,1034-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_2984,The Quay,1139-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_2985,The Quay,1174-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_2986,The Quay,2037-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_2987,City Centre,1204-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_2988,City Centre,1274-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_2989,City Centre,1344-00016-1,1,4318_7778009_6040801,4318_11 -4318_78159,142,4318_299,The Quay,150-00007-1,0,4318_7778009_6010801,4318_3 -4318_78162,143,4318_2990,City Centre,1976-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_2991,City Centre,1478-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_2992,City Centre,1572-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_2993,City Centre,1640-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_2994,The Quay,1771-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_2995,The Quay,1805-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_2996,The Quay,1907-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_2997,The Quay,1448-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_2998,The Quay,1538-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_2999,The Quay,1606-00009-1,1,4318_7778009_6040802,4318_12 -4318_78159,133,4318_3,The Quay,68-00004-1,0,4318_7778009_6010801,4318_1 -4318_78159,136,4318_30,The Quay,3281-00009-1,0,4318_7778009_6010805,4318_1 -4318_78159,145,4318_300,The Quay,2733-00008-1,0,4318_7778009_6010801,4318_1 -4318_78162,137,4318_3000,The Quay,1674-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_3001,The Quay,1708-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_3002,The Quay,1508-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_3003,City Centre,1737-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_3004,City Centre,1839-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_3005,City Centre,1873-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_3006,City Centre,1414-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_3007,City Centre,2070-00001-1,1,4318_7778009_6040802,4318_11 -4318_78162,131,4318_3008,City Centre,1071-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_3009,City Centre,1106-00003-1,1,4318_7778009_6040801,4318_11 -4318_78159,136,4318_301,The Quay,3114-00009-1,0,4318_7778009_6010803,4318_2 -4318_78162,133,4318_3010,The Quay,1241-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_3011,The Quay,1311-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_3012,The Quay,1381-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_3013,The Quay,1943-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_3014,The Quay,2009-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_3015,The Quay,1036-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_3016,The Quay,1141-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,138,4318_3017,The Quay,1176-00011-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_3018,The Quay,2039-00013-1,1,4318_7778009_6040802,4318_12 -4318_78162,139,4318_3019,City Centre,1206-00014-1,1,4318_7778009_6040801,4318_11 -4318_78159,137,4318_302,The Quay,3111-00010-1,0,4318_7778009_6010803,4318_2 -4318_78162,140,4318_3020,City Centre,1276-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_3021,City Centre,1346-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_3022,City Centre,1978-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_3023,City Centre,1480-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_3024,City Centre,1574-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_3025,City Centre,1642-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_3026,The Quay,1773-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_3027,The Quay,1807-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_3028,The Quay,1909-00006-1,1,4318_7778009_6040802,4318_12 -4318_78162,142,4318_3029,The Quay,1450-00007-1,1,4318_7778009_6040801,4318_12 -4318_78159,138,4318_303,The Quay,3112-00011-1,0,4318_7778009_6010803,4318_2 -4318_78162,145,4318_3030,The Quay,1540-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_3031,The Quay,1608-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_3032,The Quay,1676-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,138,4318_3033,The Quay,1710-00011-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_3034,The Quay,1510-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_3035,City Centre,1739-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_3036,City Centre,1841-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_3037,City Centre,1875-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_3038,City Centre,1416-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_3039,City Centre,2072-00001-1,1,4318_7778009_6040802,4318_11 -4318_78159,146,4318_304,The Quay,2734-00013-1,0,4318_7778009_6010801,4318_1 -4318_78162,131,4318_3040,City Centre,1073-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_3041,City Centre,1108-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_3042,The Quay,1243-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_3043,The Quay,1313-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_3044,The Quay,1383-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_3045,The Quay,1945-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_3046,The Quay,2011-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_3047,The Quay,1038-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_3048,The Quay,1143-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_3049,The Quay,2041-00013-1,1,4318_7778009_6040802,4318_12 -4318_78159,139,4318_305,The Quay,3115-00014-1,0,4318_7778009_6010803,4318_2 -4318_78162,139,4318_3050,City Centre,1208-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_3051,City Centre,1278-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_3052,City Centre,1348-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_3053,City Centre,1980-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_3054,City Centre,1482-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_3055,City Centre,1576-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_3056,City Centre,1644-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_3057,The Quay,1775-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_3058,The Quay,1809-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_3059,The Quay,1911-00006-1,1,4318_7778009_6040802,4318_12 -4318_78159,140,4318_306,The Quay,3113-00015-1,0,4318_7778009_6010803,4318_2 -4318_78162,142,4318_3060,The Quay,1452-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_3061,The Quay,1542-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_3062,The Quay,1610-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_3063,The Quay,1678-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_3064,The Quay,1512-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_3065,City Centre,1741-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_3066,City Centre,1843-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_3067,City Centre,1877-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_3068,City Centre,1418-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_3069,City Centre,2074-00001-1,1,4318_7778009_6040802,4318_11 -4318_78159,141,4318_307,The Quay,3110-00016-1,0,4318_7778009_6010803,4318_2 -4318_78162,131,4318_3070,City Centre,1075-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_3071,City Centre,1110-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_3072,The Quay,1245-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_3073,The Quay,1315-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_3074,The Quay,1385-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_3075,The Quay,1947-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_3076,The Quay,2013-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_3077,The Quay,1040-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_3078,The Quay,1145-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_3079,The Quay,2043-00013-1,1,4318_7778009_6040802,4318_12 -4318_78159,143,4318_308,The Quay,2735-00017-1,0,4318_7778009_6010801,4318_3 -4318_78162,139,4318_3080,City Centre,1210-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_3081,City Centre,1280-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_3082,City Centre,1350-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_3083,City Centre,1982-00017-1,1,4318_7778009_6040802,4318_13 -4318_78162,144,4318_3084,City Centre,1484-00001-1,1,4318_7778009_6040801,4318_11 -4318_78162,131,4318_3085,City Centre,1578-00002-1,1,4318_7778009_6040802,4318_11 -4318_78162,132,4318_3086,City Centre,1646-00003-1,1,4318_7778009_6040802,4318_11 -4318_78162,133,4318_3087,The Quay,1777-00004-1,1,4318_7778009_6040802,4318_12 -4318_78162,134,4318_3088,The Quay,1811-00005-1,1,4318_7778009_6040802,4318_12 -4318_78162,135,4318_3089,The Quay,1913-00006-1,1,4318_7778009_6040802,4318_12 -4318_78159,131,4318_309,The Quay,576-00002-1,0,4318_7778009_6010805,4318_1 -4318_78162,142,4318_3090,The Quay,1454-00007-1,1,4318_7778009_6040801,4318_12 -4318_78162,145,4318_3091,The Quay,1544-00008-1,1,4318_7778009_6040801,4318_12 -4318_78162,136,4318_3092,The Quay,1612-00009-1,1,4318_7778009_6040802,4318_12 -4318_78162,137,4318_3093,The Quay,1680-00010-1,1,4318_7778009_6040802,4318_12 -4318_78162,146,4318_3094,The Quay,1514-00013-1,1,4318_7778009_6040801,4318_12 -4318_78162,139,4318_3095,City Centre,1743-00014-1,1,4318_7778009_6040802,4318_11 -4318_78162,140,4318_3096,City Centre,1845-00015-1,1,4318_7778009_6040802,4318_11 -4318_78162,141,4318_3097,City Centre,1879-00016-1,1,4318_7778009_6040802,4318_11 -4318_78162,143,4318_3098,City Centre,1420-00017-1,1,4318_7778009_6040801,4318_13 -4318_78162,144,4318_3099,City Centre,2076-00001-1,1,4318_7778009_6040802,4318_11 -4318_78159,137,4318_31,The Quay,3283-00010-1,0,4318_7778009_6010805,4318_1 -4318_78159,132,4318_310,The Quay,590-00003-1,0,4318_7778009_6010805,4318_1 -4318_78162,131,4318_3100,City Centre,1077-00002-1,1,4318_7778009_6040801,4318_11 -4318_78162,132,4318_3101,City Centre,1112-00003-1,1,4318_7778009_6040801,4318_11 -4318_78162,133,4318_3102,The Quay,1247-00004-1,1,4318_7778009_6040801,4318_12 -4318_78162,134,4318_3103,The Quay,1317-00005-1,1,4318_7778009_6040801,4318_12 -4318_78162,135,4318_3104,The Quay,1387-00006-1,1,4318_7778009_6040801,4318_12 -4318_78162,142,4318_3105,The Quay,1949-00007-1,1,4318_7778009_6040802,4318_12 -4318_78162,145,4318_3106,The Quay,2015-00008-1,1,4318_7778009_6040802,4318_12 -4318_78162,136,4318_3107,The Quay,1042-00009-1,1,4318_7778009_6040801,4318_12 -4318_78162,137,4318_3108,The Quay,1147-00010-1,1,4318_7778009_6040801,4318_12 -4318_78162,146,4318_3109,The Quay,2045-00013-1,1,4318_7778009_6040802,4318_12 -4318_78159,133,4318_311,The Quay,604-00004-1,0,4318_7778009_6010805,4318_1 -4318_78162,139,4318_3110,City Centre,1212-00014-1,1,4318_7778009_6040801,4318_11 -4318_78162,140,4318_3111,City Centre,1282-00015-1,1,4318_7778009_6040801,4318_11 -4318_78162,141,4318_3112,City Centre,1352-00016-1,1,4318_7778009_6040801,4318_11 -4318_78162,143,4318_3113,City Centre,1984-00017-1,1,4318_7778009_6040802,4318_13 -4318_78163,131,4318_3114,Oakwood,2275-00002-1,0,4318_7778009_6050802,4318_14 -4318_78163,132,4318_3115,Oakwood,2298-00003-1,0,4318_7778009_6050802,4318_14 -4318_78163,133,4318_3116,Oakwood,2341-00004-1,0,4318_7778009_6050802,4318_14 -4318_78163,134,4318_3117,Oakwood,2364-00005-1,0,4318_7778009_6050802,4318_14 -4318_78163,135,4318_3118,Oakwood,2387-00006-1,0,4318_7778009_6050802,4318_14 -4318_78163,142,4318_3119,Oakwood,2212-00007-1,0,4318_7778009_6050801,4318_15 -4318_78159,134,4318_312,The Quay,618-00005-1,0,4318_7778009_6010805,4318_1 -4318_78163,136,4318_3120,Oakwood,3858-00009-1,0,4318_7778009_6050802,4318_14 -4318_78163,137,4318_3121,Oakwood,3861-00010-1,0,4318_7778009_6050802,4318_14 -4318_78163,138,4318_3122,Oakwood,2321-00011-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3123,Oakwood,3859-00014-1,0,4318_7778009_6050802,4318_14 -4318_78163,140,4318_3124,Oakwood,3862-00015-1,0,4318_7778009_6050802,4318_14 -4318_78163,141,4318_3125,Oakwood,3860-00016-1,0,4318_7778009_6050802,4318_14 -4318_78163,143,4318_3126,Oakwood,3704-00017-1,0,4318_7778009_6050801,4318_15 -4318_78163,131,4318_3127,Oakwood,2078-00002-1,0,4318_7778009_6050801,4318_14 -4318_78163,132,4318_3128,Oakwood,2101-00003-1,0,4318_7778009_6050801,4318_14 -4318_78163,133,4318_3129,Oakwood,2144-00004-1,0,4318_7778009_6050801,4318_14 -4318_78159,135,4318_313,The Quay,632-00006-1,0,4318_7778009_6010805,4318_1 -4318_78163,134,4318_3130,Oakwood,2167-00005-1,0,4318_7778009_6050801,4318_14 -4318_78163,135,4318_3131,Oakwood,2190-00006-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3132,Oakwood,3709-00009-1,0,4318_7778009_6050801,4318_14 -4318_78163,137,4318_3133,Oakwood,3708-00010-1,0,4318_7778009_6050801,4318_14 -4318_78163,138,4318_3134,Oakwood,2124-00011-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3135,Oakwood,3707-00014-1,0,4318_7778009_6050801,4318_14 -4318_78163,140,4318_3136,Oakwood,3706-00015-1,0,4318_7778009_6050801,4318_14 -4318_78163,141,4318_3137,Oakwood,3705-00016-1,0,4318_7778009_6050801,4318_14 -4318_78163,131,4318_3138,Oakwood,2474-00002-1,0,4318_7778009_6050803,4318_14 -4318_78163,132,4318_3139,Oakwood,2496-00003-1,0,4318_7778009_6050803,4318_14 -4318_78159,142,4318_314,The Quay,642-00007-1,0,4318_7778009_6010805,4318_2 -4318_78163,133,4318_3140,Oakwood,2537-00004-1,0,4318_7778009_6050803,4318_14 -4318_78163,134,4318_3141,Oakwood,2559-00005-1,0,4318_7778009_6050803,4318_14 -4318_78163,135,4318_3142,Oakwood,2581-00006-1,0,4318_7778009_6050803,4318_14 -4318_78163,142,4318_3143,Oakwood,2411-00007-1,0,4318_7778009_6050802,4318_15 -4318_78163,136,4318_3144,Oakwood,4021-00009-1,0,4318_7778009_6050803,4318_14 -4318_78163,137,4318_3145,Oakwood,4023-00010-1,0,4318_7778009_6050803,4318_14 -4318_78163,138,4318_3146,Oakwood,2518-00011-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3147,Oakwood,4024-00014-1,0,4318_7778009_6050803,4318_14 -4318_78163,140,4318_3148,Oakwood,4025-00015-1,0,4318_7778009_6050803,4318_14 -4318_78163,141,4318_3149,Oakwood,4022-00016-1,0,4318_7778009_6050803,4318_14 -4318_78159,136,4318_315,The Quay,3333-00009-1,0,4318_7778009_6010805,4318_1 -4318_78163,143,4318_3150,Oakwood,3869-00017-1,0,4318_7778009_6050802,4318_15 -4318_78163,144,4318_3151,Oakwood,2432-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3152,Oakwood,2277-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3153,Oakwood,2300-00003-1,0,4318_7778009_6050802,4318_15 -4318_78163,133,4318_3154,Oakwood,2343-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3155,Oakwood,2366-00005-1,0,4318_7778009_6050802,4318_15 -4318_78163,135,4318_3156,Oakwood,2389-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3157,Oakwood,2214-00007-1,0,4318_7778009_6050801,4318_14 -4318_78163,145,4318_3158,Oakwood,3874-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3159,Oakwood,3875-00009-1,0,4318_7778009_6050802,4318_15 -4318_78159,137,4318_316,The Quay,3335-00010-1,0,4318_7778009_6010805,4318_1 -4318_78163,137,4318_3160,Oakwood,3873-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,138,4318_3161,Oakwood,2323-00011-1,0,4318_7778009_6050802,4318_15 -4318_78163,139,4318_3162,Oakwood,3872-00014-1,0,4318_7778009_6050802,4318_15 -4318_78163,140,4318_3163,Oakwood,3871-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3164,Oakwood,3870-00016-1,0,4318_7778009_6050802,4318_15 -4318_78163,143,4318_3165,Oakwood,3717-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3166,Oakwood,2236-00001-1,0,4318_7778009_6050801,4318_14 -4318_78163,131,4318_3167,Oakwood,2080-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3168,Oakwood,2103-00003-1,0,4318_7778009_6050801,4318_15 -4318_78163,133,4318_3169,Oakwood,2146-00004-1,0,4318_7778009_6050801,4318_15 -4318_78159,138,4318_317,The Quay,3336-00011-1,0,4318_7778009_6010805,4318_1 -4318_78163,134,4318_3170,Oakwood,2169-00005-1,0,4318_7778009_6050801,4318_15 -4318_78163,135,4318_3171,Oakwood,2192-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3172,Oakwood,2603-00007-1,0,4318_7778009_6050803,4318_14 -4318_78163,145,4318_3173,Oakwood,3721-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3174,Oakwood,3718-00009-1,0,4318_7778009_6050801,4318_15 -4318_78163,137,4318_3175,Oakwood,3720-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,138,4318_3176,Oakwood,2126-00011-1,0,4318_7778009_6050801,4318_15 -4318_78163,139,4318_3177,Oakwood,3723-00014-1,0,4318_7778009_6050801,4318_15 -4318_78163,140,4318_3178,Oakwood,3719-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3179,Oakwood,3722-00016-1,0,4318_7778009_6050801,4318_15 -4318_78159,139,4318_318,The Quay,3338-00014-1,0,4318_7778009_6010805,4318_1 -4318_78163,143,4318_3180,Oakwood,4033-00017-1,0,4318_7778009_6050803,4318_14 -4318_78163,144,4318_3181,Oakwood,2624-00001-1,0,4318_7778009_6050803,4318_14 -4318_78163,131,4318_3182,Oakwood,2476-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3183,Oakwood,2498-00003-1,0,4318_7778009_6050803,4318_15 -4318_78163,133,4318_3184,Oakwood,2539-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3185,Oakwood,2561-00005-1,0,4318_7778009_6050803,4318_15 -4318_78163,135,4318_3186,Oakwood,2583-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3187,Oakwood,2413-00007-1,0,4318_7778009_6050802,4318_14 -4318_78163,145,4318_3188,Oakwood,4039-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3189,Oakwood,4038-00009-1,0,4318_7778009_6050803,4318_15 -4318_78159,140,4318_319,The Quay,3334-00015-1,0,4318_7778009_6010805,4318_1 -4318_78163,137,4318_3190,Oakwood,4036-00010-1,0,4318_7778009_6050803,4318_15 -4318_78163,138,4318_3191,Oakwood,2520-00011-1,0,4318_7778009_6050803,4318_15 -4318_78163,146,4318_3192,Oakwood,2643-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3193,Oakwood,4034-00014-1,0,4318_7778009_6050803,4318_15 -4318_78163,140,4318_3194,Oakwood,4037-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3195,Oakwood,4035-00016-1,0,4318_7778009_6050803,4318_15 -4318_78163,143,4318_3196,Oakwood,3883-00017-1,0,4318_7778009_6050802,4318_14 -4318_78163,144,4318_3197,Oakwood,2434-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3198,Oakwood,2279-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3199,Oakwood,2302-00003-1,0,4318_7778009_6050802,4318_15 -4318_78159,138,4318_32,The Quay,3284-00011-1,0,4318_7778009_6010805,4318_1 -4318_78159,141,4318_320,The Quay,3339-00016-1,0,4318_7778009_6010805,4318_1 -4318_78163,133,4318_3200,Oakwood,2345-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3201,Oakwood,2368-00005-1,0,4318_7778009_6050802,4318_15 -4318_78163,135,4318_3202,Oakwood,2391-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3203,Oakwood,2216-00007-1,0,4318_7778009_6050801,4318_14 -4318_78163,145,4318_3204,Oakwood,3889-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3205,Oakwood,3885-00009-1,0,4318_7778009_6050802,4318_15 -4318_78163,137,4318_3206,Oakwood,3886-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,138,4318_3207,Oakwood,2325-00011-1,0,4318_7778009_6050802,4318_15 -4318_78163,146,4318_3208,Oakwood,2454-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3209,Oakwood,3884-00014-1,0,4318_7778009_6050802,4318_15 -4318_78159,143,4318_321,The Quay,3337-00017-1,0,4318_7778009_6010805,4318_2 -4318_78163,140,4318_3210,Oakwood,3888-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3211,Oakwood,3887-00016-1,0,4318_7778009_6050802,4318_15 -4318_78163,143,4318_3212,Oakwood,3731-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3213,Oakwood,2238-00001-1,0,4318_7778009_6050801,4318_14 -4318_78163,131,4318_3214,Oakwood,2082-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3215,Oakwood,2105-00003-1,0,4318_7778009_6050801,4318_15 -4318_78163,133,4318_3216,Oakwood,2148-00004-1,0,4318_7778009_6050801,4318_15 -4318_78163,134,4318_3217,Oakwood,2171-00005-1,0,4318_7778009_6050801,4318_15 -4318_78163,135,4318_3218,Oakwood,2194-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3219,Oakwood,2605-00007-1,0,4318_7778009_6050803,4318_14 -4318_78159,144,4318_322,The Quay,470-00001-1,0,4318_7778009_6010803,4318_1 -4318_78163,145,4318_3220,Oakwood,3735-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3221,Oakwood,3734-00009-1,0,4318_7778009_6050801,4318_15 -4318_78163,137,4318_3222,Oakwood,3733-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,138,4318_3223,Oakwood,2128-00011-1,0,4318_7778009_6050801,4318_15 -4318_78163,146,4318_3224,Oakwood,2257-00013-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3225,Oakwood,3732-00014-1,0,4318_7778009_6050801,4318_15 -4318_78163,140,4318_3226,Oakwood,3736-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3227,Oakwood,3737-00016-1,0,4318_7778009_6050801,4318_15 -4318_78163,143,4318_3228,Oakwood,4047-00017-1,0,4318_7778009_6050803,4318_14 -4318_78163,144,4318_3229,Oakwood,2626-00001-1,0,4318_7778009_6050803,4318_14 -4318_78159,145,4318_323,The Quay,3117-00008-1,0,4318_7778009_6010803,4318_1 -4318_78163,131,4318_3230,Oakwood,2478-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3231,Oakwood,2500-00003-1,0,4318_7778009_6050803,4318_15 -4318_78163,133,4318_3232,Oakwood,2541-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3233,Oakwood,2563-00005-1,0,4318_7778009_6050803,4318_15 -4318_78163,135,4318_3234,Oakwood,2585-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3235,Oakwood,2415-00007-1,0,4318_7778009_6050802,4318_14 -4318_78163,145,4318_3236,Oakwood,4051-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3237,Oakwood,4050-00009-1,0,4318_7778009_6050803,4318_15 -4318_78163,137,4318_3238,Oakwood,4053-00010-1,0,4318_7778009_6050803,4318_15 -4318_78163,138,4318_3239,Oakwood,2522-00011-1,0,4318_7778009_6050803,4318_15 -4318_78159,146,4318_324,The Quay,3118-00013-1,0,4318_7778009_6010803,4318_1 -4318_78163,146,4318_3240,Oakwood,2645-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3241,Oakwood,4049-00014-1,0,4318_7778009_6050803,4318_15 -4318_78163,140,4318_3242,Oakwood,4048-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3243,Oakwood,4052-00016-1,0,4318_7778009_6050803,4318_15 -4318_78163,143,4318_3244,Oakwood,3897-00017-1,0,4318_7778009_6050802,4318_14 -4318_78163,144,4318_3245,Oakwood,2436-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3246,Oakwood,2281-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3247,Oakwood,2304-00003-1,0,4318_7778009_6050802,4318_15 -4318_78163,133,4318_3248,Oakwood,2347-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3249,Oakwood,2370-00005-1,0,4318_7778009_6050802,4318_15 -4318_78159,131,4318_325,The Quay,200-00002-1,0,4318_7778009_6010802,4318_1 -4318_78163,135,4318_3250,Oakwood,2393-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3251,Oakwood,2218-00007-1,0,4318_7778009_6050801,4318_14 -4318_78163,145,4318_3252,Oakwood,3902-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3253,Oakwood,3901-00009-1,0,4318_7778009_6050802,4318_15 -4318_78163,137,4318_3254,Oakwood,3898-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,138,4318_3255,Oakwood,2327-00011-1,0,4318_7778009_6050802,4318_15 -4318_78163,146,4318_3256,Oakwood,2456-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3257,Oakwood,3899-00014-1,0,4318_7778009_6050802,4318_15 -4318_78163,140,4318_3258,Oakwood,3900-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3259,Oakwood,3903-00016-1,0,4318_7778009_6050802,4318_15 -4318_78159,132,4318_326,The Quay,224-00003-1,0,4318_7778009_6010802,4318_1 -4318_78163,143,4318_3260,Oakwood,3745-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3261,Oakwood,2240-00001-1,0,4318_7778009_6050801,4318_14 -4318_78163,131,4318_3262,Oakwood,2084-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3263,Oakwood,2107-00003-1,0,4318_7778009_6050801,4318_15 -4318_78163,133,4318_3264,Oakwood,2150-00004-1,0,4318_7778009_6050801,4318_15 -4318_78163,134,4318_3265,Oakwood,2173-00005-1,0,4318_7778009_6050801,4318_15 -4318_78163,135,4318_3266,Oakwood,2196-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3267,Oakwood,2607-00007-1,0,4318_7778009_6050803,4318_14 -4318_78163,145,4318_3268,Oakwood,3748-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3269,Oakwood,3747-00009-1,0,4318_7778009_6050801,4318_15 -4318_78159,133,4318_327,The Quay,267-00004-1,0,4318_7778009_6010802,4318_1 -4318_78163,137,4318_3270,Oakwood,3749-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,138,4318_3271,Oakwood,2130-00011-1,0,4318_7778009_6050801,4318_15 -4318_78163,146,4318_3272,Oakwood,2259-00013-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3273,Oakwood,3751-00014-1,0,4318_7778009_6050801,4318_15 -4318_78163,140,4318_3274,Oakwood,3750-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3275,Oakwood,3746-00016-1,0,4318_7778009_6050801,4318_15 -4318_78163,143,4318_3276,Oakwood,4061-00017-1,0,4318_7778009_6050803,4318_14 -4318_78163,144,4318_3277,Oakwood,2628-00001-1,0,4318_7778009_6050803,4318_14 -4318_78163,131,4318_3278,Oakwood,2480-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3279,Oakwood,2502-00003-1,0,4318_7778009_6050803,4318_15 -4318_78159,134,4318_328,The Quay,291-00005-1,0,4318_7778009_6010802,4318_1 -4318_78163,133,4318_3280,Oakwood,2543-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3281,Oakwood,2565-00005-1,0,4318_7778009_6050803,4318_15 -4318_78163,135,4318_3282,Oakwood,2587-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3283,Oakwood,2417-00007-1,0,4318_7778009_6050802,4318_14 -4318_78163,145,4318_3284,Oakwood,4062-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3285,Oakwood,4066-00009-1,0,4318_7778009_6050803,4318_15 -4318_78163,137,4318_3286,Oakwood,4065-00010-1,0,4318_7778009_6050803,4318_15 -4318_78163,138,4318_3287,Oakwood,2524-00011-1,0,4318_7778009_6050803,4318_15 -4318_78163,146,4318_3288,Oakwood,2647-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3289,Oakwood,4064-00014-1,0,4318_7778009_6050803,4318_15 -4318_78159,135,4318_329,The Quay,315-00006-1,0,4318_7778009_6010802,4318_1 -4318_78163,140,4318_3290,Oakwood,4067-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3291,Oakwood,4063-00016-1,0,4318_7778009_6050803,4318_15 -4318_78163,143,4318_3292,Oakwood,3911-00017-1,0,4318_7778009_6050802,4318_14 -4318_78163,144,4318_3293,Oakwood,2438-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3294,Oakwood,2283-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3295,Oakwood,2306-00003-1,0,4318_7778009_6050802,4318_15 -4318_78163,133,4318_3296,Oakwood,2349-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3297,Oakwood,2372-00005-1,0,4318_7778009_6050802,4318_15 -4318_78163,135,4318_3298,Oakwood,2395-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3299,Oakwood,2220-00007-1,0,4318_7778009_6050801,4318_14 -4318_78159,139,4318_33,The Quay,3286-00014-1,0,4318_7778009_6010805,4318_1 -4318_78159,142,4318_330,The Quay,562-00007-1,0,4318_7778009_6010804,4318_2 -4318_78163,145,4318_3300,Oakwood,3914-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3301,Oakwood,3915-00009-1,0,4318_7778009_6050802,4318_15 -4318_78163,137,4318_3302,Oakwood,3912-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,138,4318_3303,Oakwood,2329-00011-1,0,4318_7778009_6050802,4318_15 -4318_78163,146,4318_3304,Oakwood,2458-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3305,Oakwood,3917-00014-1,0,4318_7778009_6050802,4318_15 -4318_78163,140,4318_3306,Oakwood,3913-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3307,Oakwood,3916-00016-1,0,4318_7778009_6050802,4318_15 -4318_78163,143,4318_3308,Oakwood,3759-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3309,Oakwood,2242-00001-1,0,4318_7778009_6050801,4318_14 -4318_78159,136,4318_331,The Quay,2936-00009-1,0,4318_7778009_6010802,4318_1 -4318_78163,131,4318_3310,Oakwood,2086-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3311,Oakwood,2109-00003-1,0,4318_7778009_6050801,4318_15 -4318_78163,133,4318_3312,Oakwood,2152-00004-1,0,4318_7778009_6050801,4318_15 -4318_78163,134,4318_3313,Oakwood,2175-00005-1,0,4318_7778009_6050801,4318_15 -4318_78163,135,4318_3314,Oakwood,2198-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3315,Oakwood,2609-00007-1,0,4318_7778009_6050803,4318_14 -4318_78163,145,4318_3316,Oakwood,3762-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3317,Oakwood,3763-00009-1,0,4318_7778009_6050801,4318_15 -4318_78163,137,4318_3318,Oakwood,3760-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,138,4318_3319,Oakwood,2132-00011-1,0,4318_7778009_6050801,4318_15 -4318_78159,137,4318_332,The Quay,2934-00010-1,0,4318_7778009_6010802,4318_1 -4318_78163,146,4318_3320,Oakwood,2261-00013-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3321,Oakwood,3761-00014-1,0,4318_7778009_6050801,4318_15 -4318_78163,140,4318_3322,Oakwood,3764-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3323,Oakwood,3765-00016-1,0,4318_7778009_6050801,4318_15 -4318_78163,143,4318_3324,Oakwood,4075-00017-1,0,4318_7778009_6050803,4318_14 -4318_78163,144,4318_3325,Oakwood,2630-00001-1,0,4318_7778009_6050803,4318_14 -4318_78163,131,4318_3326,Oakwood,2482-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3327,Oakwood,2504-00003-1,0,4318_7778009_6050803,4318_15 -4318_78163,133,4318_3328,Oakwood,2545-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3329,Oakwood,2567-00005-1,0,4318_7778009_6050803,4318_15 -4318_78159,138,4318_333,The Quay,248-00011-1,0,4318_7778009_6010802,4318_1 -4318_78163,135,4318_3330,Oakwood,2589-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3331,Oakwood,2419-00007-1,0,4318_7778009_6050802,4318_14 -4318_78163,145,4318_3332,Oakwood,4076-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3333,Oakwood,4077-00009-1,0,4318_7778009_6050803,4318_15 -4318_78163,137,4318_3334,Oakwood,4080-00010-1,0,4318_7778009_6050803,4318_15 -4318_78163,138,4318_3335,Oakwood,2526-00011-1,0,4318_7778009_6050803,4318_15 -4318_78163,146,4318_3336,Oakwood,2649-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3337,Oakwood,4079-00014-1,0,4318_7778009_6050803,4318_15 -4318_78163,140,4318_3338,Oakwood,4081-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3339,Oakwood,4078-00016-1,0,4318_7778009_6050803,4318_15 -4318_78159,139,4318_334,The Quay,2933-00014-1,0,4318_7778009_6010802,4318_1 -4318_78163,143,4318_3340,Oakwood,3925-00017-1,0,4318_7778009_6050802,4318_14 -4318_78163,144,4318_3341,Oakwood,2440-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3342,Oakwood,2285-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3343,Oakwood,2308-00003-1,0,4318_7778009_6050802,4318_15 -4318_78163,133,4318_3344,Oakwood,2351-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3345,Oakwood,2374-00005-1,0,4318_7778009_6050802,4318_15 -4318_78163,135,4318_3346,Oakwood,2397-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3347,Oakwood,2222-00007-1,0,4318_7778009_6050801,4318_14 -4318_78163,145,4318_3348,Oakwood,3928-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3349,Oakwood,3927-00009-1,0,4318_7778009_6050802,4318_15 -4318_78159,140,4318_335,The Quay,2932-00015-1,0,4318_7778009_6010802,4318_1 -4318_78163,137,4318_3350,Oakwood,3931-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,138,4318_3351,Oakwood,2331-00011-1,0,4318_7778009_6050802,4318_15 -4318_78163,146,4318_3352,Oakwood,2460-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3353,Oakwood,3930-00014-1,0,4318_7778009_6050802,4318_15 -4318_78163,140,4318_3354,Oakwood,3926-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3355,Oakwood,3929-00016-1,0,4318_7778009_6050802,4318_15 -4318_78163,143,4318_3356,Oakwood,3773-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3357,Oakwood,2244-00001-1,0,4318_7778009_6050801,4318_14 -4318_78163,131,4318_3358,Oakwood,2088-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3359,Oakwood,2111-00003-1,0,4318_7778009_6050801,4318_15 -4318_78159,141,4318_336,The Quay,2935-00016-1,0,4318_7778009_6010802,4318_1 -4318_78163,133,4318_3360,Oakwood,2154-00004-1,0,4318_7778009_6050801,4318_15 -4318_78163,134,4318_3361,Oakwood,2177-00005-1,0,4318_7778009_6050801,4318_15 -4318_78163,135,4318_3362,Oakwood,2200-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3363,Oakwood,2611-00007-1,0,4318_7778009_6050803,4318_14 -4318_78163,145,4318_3364,Oakwood,3778-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3365,Oakwood,3776-00009-1,0,4318_7778009_6050801,4318_15 -4318_78163,137,4318_3366,Oakwood,3775-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,138,4318_3367,Oakwood,2134-00011-1,0,4318_7778009_6050801,4318_15 -4318_78163,146,4318_3368,Oakwood,2263-00013-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3369,Oakwood,3774-00014-1,0,4318_7778009_6050801,4318_15 -4318_78159,143,4318_337,The Quay,3233-00017-1,0,4318_7778009_6010804,4318_2 -4318_78163,140,4318_3370,Oakwood,3779-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3371,Oakwood,3777-00016-1,0,4318_7778009_6050801,4318_15 -4318_78163,143,4318_3372,Oakwood,4089-00017-1,0,4318_7778009_6050803,4318_14 -4318_78163,144,4318_3373,Oakwood,2632-00001-1,0,4318_7778009_6050803,4318_14 -4318_78163,131,4318_3374,Oakwood,2484-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3375,Oakwood,2506-00003-1,0,4318_7778009_6050803,4318_15 -4318_78163,133,4318_3376,Oakwood,2547-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3377,Oakwood,2569-00005-1,0,4318_7778009_6050803,4318_15 -4318_78163,135,4318_3378,Oakwood,2591-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3379,Oakwood,2421-00007-1,0,4318_7778009_6050802,4318_14 -4318_78159,144,4318_338,The Quay,364-00001-1,0,4318_7778009_6010802,4318_1 -4318_78163,145,4318_3380,Oakwood,4093-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3381,Oakwood,4095-00009-1,0,4318_7778009_6050803,4318_15 -4318_78163,137,4318_3382,Oakwood,4094-00010-1,0,4318_7778009_6050803,4318_15 -4318_78163,138,4318_3383,Oakwood,2528-00011-1,0,4318_7778009_6050803,4318_15 -4318_78163,146,4318_3384,Oakwood,2651-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3385,Oakwood,4091-00014-1,0,4318_7778009_6050803,4318_15 -4318_78163,140,4318_3386,Oakwood,4092-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3387,Oakwood,4090-00016-1,0,4318_7778009_6050803,4318_15 -4318_78163,143,4318_3388,Oakwood,3939-00017-1,0,4318_7778009_6050802,4318_14 -4318_78163,144,4318_3389,Oakwood,2442-00001-1,0,4318_7778009_6050802,4318_14 -4318_78159,131,4318_339,The Quay,486-00002-1,0,4318_7778009_6010804,4318_2 -4318_78163,131,4318_3390,Oakwood,2287-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3391,Oakwood,2310-00003-1,0,4318_7778009_6050802,4318_15 -4318_78163,133,4318_3392,Oakwood,2353-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3393,Oakwood,2376-00005-1,0,4318_7778009_6050802,4318_15 -4318_78163,135,4318_3394,Oakwood,2399-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3395,Oakwood,2224-00007-1,0,4318_7778009_6050801,4318_14 -4318_78163,145,4318_3396,Oakwood,3944-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3397,Oakwood,3942-00009-1,0,4318_7778009_6050802,4318_15 -4318_78163,137,4318_3398,Oakwood,3943-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,138,4318_3399,Oakwood,2333-00011-1,0,4318_7778009_6050802,4318_15 -4318_78159,140,4318_34,The Quay,3282-00015-1,0,4318_7778009_6010805,4318_1 -4318_78159,132,4318_340,The Quay,502-00003-1,0,4318_7778009_6010804,4318_2 -4318_78163,146,4318_3400,Oakwood,2462-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3401,Oakwood,3940-00014-1,0,4318_7778009_6050802,4318_15 -4318_78163,140,4318_3402,Oakwood,3945-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3403,Oakwood,3941-00016-1,0,4318_7778009_6050802,4318_15 -4318_78163,143,4318_3404,Oakwood,3787-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3405,Oakwood,2246-00001-1,0,4318_7778009_6050801,4318_14 -4318_78163,131,4318_3406,Oakwood,2090-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3407,Oakwood,2113-00003-1,0,4318_7778009_6050801,4318_15 -4318_78163,133,4318_3408,Oakwood,2156-00004-1,0,4318_7778009_6050801,4318_15 -4318_78163,134,4318_3409,Oakwood,2179-00005-1,0,4318_7778009_6050801,4318_15 -4318_78159,133,4318_341,The Quay,518-00004-1,0,4318_7778009_6010804,4318_2 -4318_78163,135,4318_3410,Oakwood,2202-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3411,Oakwood,2613-00007-1,0,4318_7778009_6050803,4318_14 -4318_78163,145,4318_3412,Oakwood,3791-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3413,Oakwood,3789-00009-1,0,4318_7778009_6050801,4318_15 -4318_78163,137,4318_3414,Oakwood,3790-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,138,4318_3415,Oakwood,2136-00011-1,0,4318_7778009_6050801,4318_15 -4318_78163,146,4318_3416,Oakwood,2265-00013-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3417,Oakwood,3788-00014-1,0,4318_7778009_6050801,4318_15 -4318_78163,140,4318_3418,Oakwood,3792-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3419,Oakwood,3793-00016-1,0,4318_7778009_6050801,4318_15 -4318_78159,134,4318_342,The Quay,534-00005-1,0,4318_7778009_6010804,4318_2 -4318_78163,143,4318_3420,Oakwood,4103-00017-1,0,4318_7778009_6050803,4318_14 -4318_78163,144,4318_3421,Oakwood,2634-00001-1,0,4318_7778009_6050803,4318_14 -4318_78163,131,4318_3422,Oakwood,2486-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3423,Oakwood,2508-00003-1,0,4318_7778009_6050803,4318_15 -4318_78163,133,4318_3424,Oakwood,2549-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3425,Oakwood,2571-00005-1,0,4318_7778009_6050803,4318_15 -4318_78163,135,4318_3426,Oakwood,2593-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3427,Oakwood,2423-00007-1,0,4318_7778009_6050802,4318_14 -4318_78163,145,4318_3428,Oakwood,4109-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3429,Oakwood,4107-00009-1,0,4318_7778009_6050803,4318_15 -4318_78159,135,4318_343,The Quay,550-00006-1,0,4318_7778009_6010804,4318_2 -4318_78163,137,4318_3430,Oakwood,4105-00010-1,0,4318_7778009_6050803,4318_15 -4318_78163,138,4318_3431,Oakwood,2530-00011-1,0,4318_7778009_6050803,4318_15 -4318_78163,146,4318_3432,Oakwood,2653-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3433,Oakwood,4104-00014-1,0,4318_7778009_6050803,4318_15 -4318_78163,140,4318_3434,Oakwood,4108-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3435,Oakwood,4106-00016-1,0,4318_7778009_6050803,4318_15 -4318_78163,143,4318_3436,Oakwood,3953-00017-1,0,4318_7778009_6050802,4318_14 -4318_78163,144,4318_3437,Oakwood,2444-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3438,Oakwood,2289-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3439,Oakwood,2312-00003-1,0,4318_7778009_6050802,4318_15 -4318_78159,142,4318_344,The Quay,461-00007-1,0,4318_7778009_6010803,4318_3 -4318_78163,133,4318_3440,Oakwood,2355-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3441,Oakwood,2378-00005-1,0,4318_7778009_6050802,4318_15 -4318_78163,135,4318_3442,Oakwood,2401-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3443,Oakwood,2226-00007-1,0,4318_7778009_6050801,4318_14 -4318_78163,145,4318_3444,Oakwood,3957-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3445,Oakwood,3956-00009-1,0,4318_7778009_6050802,4318_15 -4318_78163,137,4318_3446,Oakwood,3954-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,138,4318_3447,Oakwood,2335-00011-1,0,4318_7778009_6050802,4318_15 -4318_78163,146,4318_3448,Oakwood,2464-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3449,Oakwood,3955-00014-1,0,4318_7778009_6050802,4318_15 -4318_78159,145,4318_345,The Quay,2937-00008-1,0,4318_7778009_6010802,4318_1 -4318_78163,140,4318_3450,Oakwood,3959-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3451,Oakwood,3958-00016-1,0,4318_7778009_6050802,4318_15 -4318_78163,143,4318_3452,Oakwood,3801-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3453,Oakwood,2248-00001-1,0,4318_7778009_6050801,4318_14 -4318_78163,131,4318_3454,Oakwood,2092-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3455,Oakwood,2115-00003-1,0,4318_7778009_6050801,4318_15 -4318_78163,133,4318_3456,Oakwood,2158-00004-1,0,4318_7778009_6050801,4318_15 -4318_78163,134,4318_3457,Oakwood,2181-00005-1,0,4318_7778009_6050801,4318_15 -4318_78163,135,4318_3458,Oakwood,2204-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3459,Oakwood,2615-00007-1,0,4318_7778009_6050803,4318_14 -4318_78159,136,4318_346,The Quay,3234-00009-1,0,4318_7778009_6010804,4318_2 -4318_78163,145,4318_3460,Oakwood,3803-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3461,Oakwood,3802-00009-1,0,4318_7778009_6050801,4318_15 -4318_78163,137,4318_3462,Oakwood,3805-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,138,4318_3463,Oakwood,2138-00011-1,0,4318_7778009_6050801,4318_15 -4318_78163,146,4318_3464,Oakwood,2267-00013-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3465,Oakwood,3807-00014-1,0,4318_7778009_6050801,4318_15 -4318_78163,140,4318_3466,Oakwood,3806-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3467,Oakwood,3804-00016-1,0,4318_7778009_6050801,4318_15 -4318_78163,143,4318_3468,Oakwood,4117-00017-1,0,4318_7778009_6050803,4318_14 -4318_78163,144,4318_3469,Oakwood,2636-00001-1,0,4318_7778009_6050803,4318_14 -4318_78159,137,4318_347,The Quay,3237-00010-1,0,4318_7778009_6010804,4318_2 -4318_78163,131,4318_3470,Oakwood,2488-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3471,Oakwood,2510-00003-1,0,4318_7778009_6050803,4318_15 -4318_78163,133,4318_3472,Oakwood,2551-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3473,Oakwood,2573-00005-1,0,4318_7778009_6050803,4318_15 -4318_78163,135,4318_3474,Oakwood,2595-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3475,Oakwood,2425-00007-1,0,4318_7778009_6050802,4318_14 -4318_78163,145,4318_3476,Oakwood,4123-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3477,Oakwood,4118-00009-1,0,4318_7778009_6050803,4318_15 -4318_78163,137,4318_3478,Oakwood,4122-00010-1,0,4318_7778009_6050803,4318_15 -4318_78163,138,4318_3479,Oakwood,2532-00011-1,0,4318_7778009_6050803,4318_15 -4318_78159,138,4318_348,The Quay,3238-00011-1,0,4318_7778009_6010804,4318_2 -4318_78163,146,4318_3480,Oakwood,2655-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3481,Oakwood,4120-00014-1,0,4318_7778009_6050803,4318_15 -4318_78163,140,4318_3482,Oakwood,4121-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3483,Oakwood,4119-00016-1,0,4318_7778009_6050803,4318_15 -4318_78163,143,4318_3484,Oakwood,3967-00017-1,0,4318_7778009_6050802,4318_14 -4318_78163,144,4318_3485,Oakwood,2446-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3486,Oakwood,2291-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3487,Oakwood,2314-00003-1,0,4318_7778009_6050802,4318_15 -4318_78163,133,4318_3488,Oakwood,2357-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3489,Oakwood,2380-00005-1,0,4318_7778009_6050802,4318_15 -4318_78159,146,4318_349,The Quay,2938-00013-1,0,4318_7778009_6010802,4318_1 -4318_78163,135,4318_3490,Oakwood,2403-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3491,Oakwood,2228-00007-1,0,4318_7778009_6050801,4318_14 -4318_78163,145,4318_3492,Oakwood,3969-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3493,Oakwood,3968-00009-1,0,4318_7778009_6050802,4318_15 -4318_78163,137,4318_3494,Oakwood,3971-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,138,4318_3495,Oakwood,2337-00011-1,0,4318_7778009_6050802,4318_15 -4318_78163,146,4318_3496,Oakwood,2466-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3497,Oakwood,3970-00014-1,0,4318_7778009_6050802,4318_15 -4318_78163,140,4318_3498,Oakwood,3972-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3499,Oakwood,3973-00016-1,0,4318_7778009_6050802,4318_15 -4318_78159,141,4318_35,The Quay,3285-00016-1,0,4318_7778009_6010805,4318_1 -4318_78159,139,4318_350,The Quay,3239-00014-1,0,4318_7778009_6010804,4318_2 -4318_78163,143,4318_3500,Oakwood,3815-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3501,Oakwood,2250-00001-1,0,4318_7778009_6050801,4318_14 -4318_78163,131,4318_3502,Oakwood,2094-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3503,Oakwood,2117-00003-1,0,4318_7778009_6050801,4318_15 -4318_78163,133,4318_3504,Oakwood,2160-00004-1,0,4318_7778009_6050801,4318_15 -4318_78163,134,4318_3505,Oakwood,2183-00005-1,0,4318_7778009_6050801,4318_15 -4318_78163,135,4318_3506,Oakwood,2206-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3507,Oakwood,2617-00007-1,0,4318_7778009_6050803,4318_14 -4318_78163,145,4318_3508,Oakwood,3817-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3509,Oakwood,3820-00009-1,0,4318_7778009_6050801,4318_15 -4318_78159,140,4318_351,The Quay,3236-00015-1,0,4318_7778009_6010804,4318_2 -4318_78163,137,4318_3510,Oakwood,3816-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,138,4318_3511,Oakwood,2140-00011-1,0,4318_7778009_6050801,4318_15 -4318_78163,146,4318_3512,Oakwood,2269-00013-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3513,Oakwood,3821-00014-1,0,4318_7778009_6050801,4318_15 -4318_78163,140,4318_3514,Oakwood,3818-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3515,Oakwood,3819-00016-1,0,4318_7778009_6050801,4318_15 -4318_78163,143,4318_3516,Oakwood,4131-00017-1,0,4318_7778009_6050803,4318_14 -4318_78163,144,4318_3517,Oakwood,2638-00001-1,0,4318_7778009_6050803,4318_14 -4318_78163,131,4318_3518,Oakwood,2490-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3519,Oakwood,2512-00003-1,0,4318_7778009_6050803,4318_15 -4318_78159,141,4318_352,The Quay,3235-00016-1,0,4318_7778009_6010804,4318_2 -4318_78163,133,4318_3520,Oakwood,2553-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3521,Oakwood,2575-00005-1,0,4318_7778009_6050803,4318_15 -4318_78163,135,4318_3522,Oakwood,2597-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3523,Oakwood,2427-00007-1,0,4318_7778009_6050802,4318_14 -4318_78163,145,4318_3524,Oakwood,4136-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3525,Oakwood,4132-00009-1,0,4318_7778009_6050803,4318_15 -4318_78163,137,4318_3526,Oakwood,4135-00010-1,0,4318_7778009_6050803,4318_15 -4318_78163,138,4318_3527,Oakwood,2534-00011-1,0,4318_7778009_6050803,4318_15 -4318_78163,146,4318_3528,Oakwood,2657-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3529,Oakwood,4133-00014-1,0,4318_7778009_6050803,4318_15 -4318_78159,143,4318_353,The Quay,3125-00017-1,0,4318_7778009_6010803,4318_3 -4318_78163,140,4318_3530,Oakwood,4137-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3531,Oakwood,4134-00016-1,0,4318_7778009_6050803,4318_15 -4318_78163,143,4318_3532,Oakwood,3981-00017-1,0,4318_7778009_6050802,4318_14 -4318_78163,144,4318_3533,Oakwood,2448-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3534,Oakwood,2293-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3535,Oakwood,2316-00003-1,0,4318_7778009_6050802,4318_15 -4318_78163,133,4318_3536,Oakwood,2359-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3537,Oakwood,2382-00005-1,0,4318_7778009_6050802,4318_15 -4318_78163,135,4318_3538,Oakwood,2405-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3539,Oakwood,2230-00007-1,0,4318_7778009_6050801,4318_14 -4318_78159,131,4318_354,The Quay,11-00002-1,0,4318_7778009_6010801,4318_1 -4318_78163,145,4318_3540,Oakwood,3984-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3541,Oakwood,3986-00009-1,0,4318_7778009_6050802,4318_15 -4318_78163,137,4318_3542,Oakwood,3985-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,138,4318_3543,Oakwood,2339-00011-1,0,4318_7778009_6050802,4318_15 -4318_78163,146,4318_3544,Oakwood,2468-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3545,Oakwood,3983-00014-1,0,4318_7778009_6050802,4318_15 -4318_78163,140,4318_3546,Oakwood,3982-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3547,Oakwood,3987-00016-1,0,4318_7778009_6050802,4318_15 -4318_78163,143,4318_3548,Oakwood,3829-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3549,Oakwood,2252-00001-1,0,4318_7778009_6050801,4318_14 -4318_78159,132,4318_355,The Quay,54-00003-1,0,4318_7778009_6010801,4318_1 -4318_78163,131,4318_3550,Oakwood,2096-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3551,Oakwood,2119-00003-1,0,4318_7778009_6050801,4318_15 -4318_78163,133,4318_3552,Oakwood,2162-00004-1,0,4318_7778009_6050801,4318_15 -4318_78163,134,4318_3553,Oakwood,2185-00005-1,0,4318_7778009_6050801,4318_15 -4318_78163,135,4318_3554,Oakwood,2208-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3555,Oakwood,2619-00007-1,0,4318_7778009_6050803,4318_14 -4318_78163,145,4318_3556,Oakwood,3831-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3557,Oakwood,3833-00009-1,0,4318_7778009_6050801,4318_15 -4318_78163,137,4318_3558,Oakwood,3830-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,138,4318_3559,Oakwood,2142-00011-1,0,4318_7778009_6050801,4318_15 -4318_78159,133,4318_356,The Quay,78-00004-1,0,4318_7778009_6010801,4318_1 -4318_78163,146,4318_3560,Oakwood,2271-00013-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3561,Oakwood,3835-00014-1,0,4318_7778009_6050801,4318_15 -4318_78163,140,4318_3562,Oakwood,3832-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3563,Oakwood,3834-00016-1,0,4318_7778009_6050801,4318_15 -4318_78163,143,4318_3564,Oakwood,4145-00017-1,0,4318_7778009_6050803,4318_14 -4318_78163,144,4318_3565,Oakwood,2640-00001-1,0,4318_7778009_6050803,4318_14 -4318_78163,131,4318_3566,Oakwood,2492-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3567,Oakwood,2514-00003-1,0,4318_7778009_6050803,4318_15 -4318_78163,133,4318_3568,Oakwood,2555-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3569,Oakwood,2577-00005-1,0,4318_7778009_6050803,4318_15 -4318_78159,134,4318_357,The Quay,102-00005-1,0,4318_7778009_6010801,4318_1 -4318_78163,135,4318_3570,Oakwood,2599-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3571,Oakwood,2429-00007-1,0,4318_7778009_6050802,4318_14 -4318_78163,145,4318_3572,Oakwood,4147-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3573,Oakwood,4149-00009-1,0,4318_7778009_6050803,4318_15 -4318_78163,137,4318_3574,Oakwood,4148-00010-1,0,4318_7778009_6050803,4318_15 -4318_78163,146,4318_3575,Oakwood,2659-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3576,Oakwood,4151-00014-1,0,4318_7778009_6050803,4318_15 -4318_78163,140,4318_3577,Oakwood,4146-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3578,Oakwood,4150-00016-1,0,4318_7778009_6050803,4318_15 -4318_78163,143,4318_3579,Oakwood,3995-00017-1,0,4318_7778009_6050802,4318_14 -4318_78159,135,4318_358,The Quay,126-00006-1,0,4318_7778009_6010801,4318_1 -4318_78163,144,4318_3580,Oakwood,2450-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3581,Oakwood,2295-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3582,Oakwood,2318-00003-1,0,4318_7778009_6050802,4318_15 -4318_78163,133,4318_3583,Oakwood,2361-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3584,Oakwood,2384-00005-1,0,4318_7778009_6050802,4318_15 -4318_78163,135,4318_3585,Oakwood,2407-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3586,Oakwood,2232-00007-1,0,4318_7778009_6050801,4318_14 -4318_78163,145,4318_3587,Oakwood,3996-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3588,Oakwood,3997-00009-1,0,4318_7778009_6050802,4318_15 -4318_78163,137,4318_3589,Oakwood,3998-00010-1,0,4318_7778009_6050802,4318_15 -4318_78159,142,4318_359,The Quay,341-00007-1,0,4318_7778009_6010802,4318_2 -4318_78163,146,4318_3590,Oakwood,2470-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3591,Oakwood,4000-00014-1,0,4318_7778009_6050802,4318_15 -4318_78163,140,4318_3592,Oakwood,3999-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3593,Oakwood,4001-00016-1,0,4318_7778009_6050802,4318_15 -4318_78163,143,4318_3594,Oakwood,3843-00017-1,0,4318_7778009_6050801,4318_14 -4318_78163,144,4318_3595,Oakwood,2254-00001-1,0,4318_7778009_6050801,4318_14 -4318_78163,131,4318_3596,Oakwood,2098-00002-1,0,4318_7778009_6050801,4318_15 -4318_78163,132,4318_3597,Oakwood,2121-00003-1,0,4318_7778009_6050801,4318_15 -4318_78163,133,4318_3598,Oakwood,2164-00004-1,0,4318_7778009_6050801,4318_15 -4318_78163,134,4318_3599,Oakwood,2187-00005-1,0,4318_7778009_6050801,4318_15 -4318_78159,131,4318_36,The Quay,192-00002-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_360,The Quay,2745-00009-1,0,4318_7778009_6010801,4318_1 -4318_78163,135,4318_3600,Oakwood,2210-00006-1,0,4318_7778009_6050801,4318_15 -4318_78163,142,4318_3601,Oakwood,2621-00007-1,0,4318_7778009_6050803,4318_14 -4318_78163,145,4318_3602,Oakwood,3848-00008-1,0,4318_7778009_6050801,4318_14 -4318_78163,136,4318_3603,Oakwood,3845-00009-1,0,4318_7778009_6050801,4318_15 -4318_78163,137,4318_3604,Oakwood,3846-00010-1,0,4318_7778009_6050801,4318_15 -4318_78163,146,4318_3605,Oakwood,2273-00013-1,0,4318_7778009_6050801,4318_14 -4318_78163,139,4318_3606,Oakwood,3849-00014-1,0,4318_7778009_6050801,4318_15 -4318_78163,140,4318_3607,Oakwood,3844-00015-1,0,4318_7778009_6050801,4318_15 -4318_78163,141,4318_3608,Oakwood,3847-00016-1,0,4318_7778009_6050801,4318_15 -4318_78163,143,4318_3609,Oakwood,4159-00017-1,0,4318_7778009_6050803,4318_14 -4318_78159,137,4318_361,The Quay,2748-00010-1,0,4318_7778009_6010801,4318_1 -4318_78163,144,4318_3610,Oakwood,2745-00001-1,0,4318_7778009_6050803,4318_14 -4318_78163,131,4318_3611,Oakwood,2650-00002-1,0,4318_7778009_6050803,4318_15 -4318_78163,132,4318_3612,Oakwood,2672-00003-1,0,4318_7778009_6050803,4318_15 -4318_78163,133,4318_3613,Oakwood,2747-00004-1,0,4318_7778009_6050803,4318_15 -4318_78163,134,4318_3614,Oakwood,2769-00005-1,0,4318_7778009_6050803,4318_15 -4318_78163,135,4318_3615,Oakwood,2791-00006-1,0,4318_7778009_6050803,4318_15 -4318_78163,142,4318_3616,Oakwood,2431-00007-1,0,4318_7778009_6050802,4318_14 -4318_78163,145,4318_3617,Oakwood,4296-00008-1,0,4318_7778009_6050803,4318_14 -4318_78163,136,4318_3618,Oakwood,4355-00009-1,0,4318_7778009_6050803,4318_15 -4318_78163,137,4318_3619,Oakwood,4351-00010-1,0,4318_7778009_6050803,4318_15 -4318_78159,138,4318_362,The Quay,35-00011-1,0,4318_7778009_6010801,4318_1 -4318_78163,146,4318_3620,Oakwood,2661-00013-1,0,4318_7778009_6050803,4318_14 -4318_78163,139,4318_3621,Oakwood,4318-00014-1,0,4318_7778009_6050803,4318_15 -4318_78163,140,4318_3622,Oakwood,4316-00015-1,0,4318_7778009_6050803,4318_15 -4318_78163,141,4318_3623,Oakwood,4320-00016-1,0,4318_7778009_6050803,4318_15 -4318_78163,143,4318_3624,Oakwood,4009-00017-1,0,4318_7778009_6050802,4318_14 -4318_78163,144,4318_3625,Oakwood,2452-00001-1,0,4318_7778009_6050802,4318_14 -4318_78163,131,4318_3626,Oakwood,2297-00002-1,0,4318_7778009_6050802,4318_15 -4318_78163,132,4318_3627,Oakwood,2320-00003-1,0,4318_7778009_6050802,4318_15 -4318_78163,133,4318_3628,Oakwood,2363-00004-1,0,4318_7778009_6050802,4318_15 -4318_78163,134,4318_3629,Oakwood,2386-00005-1,0,4318_7778009_6050802,4318_15 -4318_78159,139,4318_363,The Quay,2747-00014-1,0,4318_7778009_6010801,4318_1 -4318_78163,135,4318_3630,Oakwood,2409-00006-1,0,4318_7778009_6050802,4318_15 -4318_78163,142,4318_3631,Oakwood,2234-00007-1,0,4318_7778009_6050801,4318_14 -4318_78163,145,4318_3632,Oakwood,4012-00008-1,0,4318_7778009_6050802,4318_14 -4318_78163,136,4318_3633,Oakwood,4014-00009-1,0,4318_7778009_6050802,4318_15 -4318_78163,137,4318_3634,Oakwood,4010-00010-1,0,4318_7778009_6050802,4318_15 -4318_78163,146,4318_3635,Oakwood,2472-00013-1,0,4318_7778009_6050802,4318_14 -4318_78163,139,4318_3636,Oakwood,4015-00014-1,0,4318_7778009_6050802,4318_15 -4318_78163,140,4318_3637,Oakwood,4013-00015-1,0,4318_7778009_6050802,4318_15 -4318_78163,141,4318_3638,Oakwood,4011-00016-1,0,4318_7778009_6050802,4318_15 -4318_78163,143,4318_3639,Oakwood,3857-00017-1,0,4318_7778009_6050801,4318_14 -4318_78159,140,4318_364,The Quay,2746-00015-1,0,4318_7778009_6010801,4318_1 -4318_78163,131,4318_3640,University Hospital,2077-00002-1,1,4318_7778009_6050801,4318_16 -4318_78163,132,4318_3641,University Hospital,2100-00003-1,1,4318_7778009_6050801,4318_16 -4318_78163,133,4318_3642,University Hospital,2143-00004-1,1,4318_7778009_6050801,4318_16 -4318_78163,134,4318_3643,University Hospital,2166-00005-1,1,4318_7778009_6050801,4318_16 -4318_78163,135,4318_3644,University Hospital,2189-00006-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_3645,University Hospital,3699-00009-1,1,4318_7778009_6050801,4318_16 -4318_78163,137,4318_3646,University Hospital,3703-00010-1,1,4318_7778009_6050801,4318_16 -4318_78163,138,4318_3647,University Hospital,2123-00011-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_3648,University Hospital,3700-00014-1,1,4318_7778009_6050801,4318_16 -4318_78163,140,4318_3649,University Hospital,3702-00015-1,1,4318_7778009_6050801,4318_16 -4318_78159,141,4318_365,The Quay,2744-00016-1,0,4318_7778009_6010801,4318_1 -4318_78163,141,4318_3650,University Hospital,3701-00016-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_3651,University Hospital,2473-00002-1,1,4318_7778009_6050803,4318_16 -4318_78163,132,4318_3652,University Hospital,2495-00003-1,1,4318_7778009_6050803,4318_16 -4318_78163,133,4318_3653,University Hospital,2536-00004-1,1,4318_7778009_6050803,4318_16 -4318_78163,134,4318_3654,University Hospital,2558-00005-1,1,4318_7778009_6050803,4318_16 -4318_78163,135,4318_3655,University Hospital,2580-00006-1,1,4318_7778009_6050803,4318_16 -4318_78163,142,4318_3656,University Hospital,2410-00007-1,1,4318_7778009_6050802,4318_17 -4318_78163,136,4318_3657,University Hospital,4016-00009-1,1,4318_7778009_6050803,4318_16 -4318_78163,137,4318_3658,University Hospital,4018-00010-1,1,4318_7778009_6050803,4318_16 -4318_78163,138,4318_3659,University Hospital,2517-00011-1,1,4318_7778009_6050803,4318_16 -4318_78159,143,4318_366,The Quay,2939-00017-1,0,4318_7778009_6010802,4318_2 -4318_78163,139,4318_3660,University Hospital,4017-00014-1,1,4318_7778009_6050803,4318_16 -4318_78163,140,4318_3661,University Hospital,4020-00015-1,1,4318_7778009_6050803,4318_16 -4318_78163,141,4318_3662,University Hospital,4019-00016-1,1,4318_7778009_6050803,4318_16 -4318_78163,143,4318_3663,University Hospital,3863-00017-1,1,4318_7778009_6050802,4318_17 -4318_78163,131,4318_3664,University Hospital,2276-00002-1,1,4318_7778009_6050802,4318_16 -4318_78163,132,4318_3665,University Hospital,2299-00003-1,1,4318_7778009_6050802,4318_16 -4318_78163,133,4318_3666,University Hospital,2342-00004-1,1,4318_7778009_6050802,4318_16 -4318_78163,134,4318_3667,University Hospital,2365-00005-1,1,4318_7778009_6050802,4318_16 -4318_78163,135,4318_3668,University Hospital,2388-00006-1,1,4318_7778009_6050802,4318_16 -4318_78163,142,4318_3669,University Hospital,2213-00007-1,1,4318_7778009_6050801,4318_17 -4318_78159,144,4318_367,The Quay,176-00001-1,0,4318_7778009_6010801,4318_1 -4318_78163,136,4318_3670,University Hospital,3865-00009-1,1,4318_7778009_6050802,4318_16 -4318_78163,137,4318_3671,University Hospital,3868-00010-1,1,4318_7778009_6050802,4318_16 -4318_78163,138,4318_3672,University Hospital,2322-00011-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_3673,University Hospital,3864-00014-1,1,4318_7778009_6050802,4318_16 -4318_78163,140,4318_3674,University Hospital,3867-00015-1,1,4318_7778009_6050802,4318_16 -4318_78163,141,4318_3675,University Hospital,3866-00016-1,1,4318_7778009_6050802,4318_16 -4318_78163,143,4318_3676,University Hospital,3710-00017-1,1,4318_7778009_6050801,4318_17 -4318_78163,144,4318_3677,University Hospital,2235-00001-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_3678,University Hospital,2079-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_3679,University Hospital,2102-00003-1,1,4318_7778009_6050801,4318_17 -4318_78159,145,4318_368,The Quay,2749-00008-1,0,4318_7778009_6010801,4318_1 -4318_78163,133,4318_3680,University Hospital,2145-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_3681,University Hospital,2168-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_3682,University Hospital,2191-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_3683,University Hospital,2602-00007-1,1,4318_7778009_6050803,4318_16 -4318_78163,145,4318_3684,University Hospital,3716-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_3685,University Hospital,3715-00009-1,1,4318_7778009_6050801,4318_17 -4318_78163,137,4318_3686,University Hospital,3712-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,138,4318_3687,University Hospital,2125-00011-1,1,4318_7778009_6050801,4318_17 -4318_78163,139,4318_3688,University Hospital,3713-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_3689,University Hospital,3714-00015-1,1,4318_7778009_6050801,4318_17 -4318_78159,146,4318_369,The Quay,2750-00013-1,0,4318_7778009_6010801,4318_1 -4318_78163,141,4318_3690,University Hospital,3711-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_3691,University Hospital,4026-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_3692,University Hospital,2623-00001-1,1,4318_7778009_6050803,4318_16 -4318_78163,131,4318_3693,University Hospital,2475-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_3694,University Hospital,2497-00003-1,1,4318_7778009_6050803,4318_17 -4318_78163,133,4318_3695,University Hospital,2538-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_3696,University Hospital,2560-00005-1,1,4318_7778009_6050803,4318_17 -4318_78163,135,4318_3697,University Hospital,2582-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_3698,University Hospital,2412-00007-1,1,4318_7778009_6050802,4318_16 -4318_78163,145,4318_3699,University Hospital,4031-00008-1,1,4318_7778009_6050803,4318_16 -4318_78159,132,4318_37,The Quay,216-00003-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_370,The Quay,390-00002-1,0,4318_7778009_6010803,4318_1 -4318_78163,136,4318_3700,University Hospital,4028-00009-1,1,4318_7778009_6050803,4318_17 -4318_78163,137,4318_3701,University Hospital,4029-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,138,4318_3702,University Hospital,2519-00011-1,1,4318_7778009_6050803,4318_17 -4318_78163,139,4318_3703,University Hospital,4027-00014-1,1,4318_7778009_6050803,4318_17 -4318_78163,140,4318_3704,University Hospital,4032-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_3705,University Hospital,4030-00016-1,1,4318_7778009_6050803,4318_17 -4318_78163,143,4318_3706,University Hospital,3876-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_3707,University Hospital,2433-00001-1,1,4318_7778009_6050802,4318_16 -4318_78163,131,4318_3708,University Hospital,2278-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_3709,University Hospital,2301-00003-1,1,4318_7778009_6050802,4318_17 -4318_78159,132,4318_371,The Quay,405-00003-1,0,4318_7778009_6010803,4318_1 -4318_78163,133,4318_3710,University Hospital,2344-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_3711,University Hospital,2367-00005-1,1,4318_7778009_6050802,4318_17 -4318_78163,135,4318_3712,University Hospital,2390-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_3713,University Hospital,2215-00007-1,1,4318_7778009_6050801,4318_16 -4318_78163,145,4318_3714,University Hospital,3877-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_3715,University Hospital,3878-00009-1,1,4318_7778009_6050802,4318_17 -4318_78163,137,4318_3716,University Hospital,3880-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,138,4318_3717,University Hospital,2324-00011-1,1,4318_7778009_6050802,4318_17 -4318_78163,146,4318_3718,University Hospital,2453-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_3719,University Hospital,3882-00014-1,1,4318_7778009_6050802,4318_17 -4318_78159,133,4318_372,The Quay,420-00004-1,0,4318_7778009_6010803,4318_1 -4318_78163,140,4318_3720,University Hospital,3881-00015-1,1,4318_7778009_6050802,4318_17 -4318_78163,141,4318_3721,University Hospital,3879-00016-1,1,4318_7778009_6050802,4318_17 -4318_78163,143,4318_3722,University Hospital,3724-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_3723,University Hospital,2237-00001-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_3724,University Hospital,2081-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_3725,University Hospital,2104-00003-1,1,4318_7778009_6050801,4318_17 -4318_78163,133,4318_3726,University Hospital,2147-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_3727,University Hospital,2170-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_3728,University Hospital,2193-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_3729,University Hospital,2604-00007-1,1,4318_7778009_6050803,4318_16 -4318_78159,134,4318_373,The Quay,435-00005-1,0,4318_7778009_6010803,4318_1 -4318_78163,145,4318_3730,University Hospital,3727-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_3731,University Hospital,3730-00009-1,1,4318_7778009_6050801,4318_17 -4318_78163,137,4318_3732,University Hospital,3725-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,138,4318_3733,University Hospital,2127-00011-1,1,4318_7778009_6050801,4318_17 -4318_78163,146,4318_3734,University Hospital,2256-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_3735,University Hospital,3729-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_3736,University Hospital,3726-00015-1,1,4318_7778009_6050801,4318_17 -4318_78163,141,4318_3737,University Hospital,3728-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_3738,University Hospital,4040-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_3739,University Hospital,2625-00001-1,1,4318_7778009_6050803,4318_16 -4318_78159,135,4318_374,The Quay,450-00006-1,0,4318_7778009_6010803,4318_1 -4318_78163,131,4318_3740,University Hospital,2477-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_3741,University Hospital,2499-00003-1,1,4318_7778009_6050803,4318_17 -4318_78163,133,4318_3742,University Hospital,2540-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_3743,University Hospital,2562-00005-1,1,4318_7778009_6050803,4318_17 -4318_78163,135,4318_3744,University Hospital,2584-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_3745,University Hospital,2414-00007-1,1,4318_7778009_6050802,4318_16 -4318_78163,145,4318_3746,University Hospital,4046-00008-1,1,4318_7778009_6050803,4318_16 -4318_78163,136,4318_3747,University Hospital,4043-00009-1,1,4318_7778009_6050803,4318_17 -4318_78163,137,4318_3748,University Hospital,4045-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,138,4318_3749,University Hospital,2521-00011-1,1,4318_7778009_6050803,4318_17 -4318_78159,142,4318_375,The Quay,152-00007-1,0,4318_7778009_6010801,4318_2 -4318_78163,146,4318_3750,University Hospital,2644-00013-1,1,4318_7778009_6050803,4318_16 -4318_78163,139,4318_3751,University Hospital,4042-00014-1,1,4318_7778009_6050803,4318_17 -4318_78163,140,4318_3752,University Hospital,4041-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_3753,University Hospital,4044-00016-1,1,4318_7778009_6050803,4318_17 -4318_78163,143,4318_3754,University Hospital,3890-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_3755,University Hospital,2435-00001-1,1,4318_7778009_6050802,4318_16 -4318_78163,131,4318_3756,University Hospital,2280-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_3757,University Hospital,2303-00003-1,1,4318_7778009_6050802,4318_17 -4318_78163,133,4318_3758,University Hospital,2346-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_3759,University Hospital,2369-00005-1,1,4318_7778009_6050802,4318_17 -4318_78159,136,4318_376,The Quay,3131-00009-1,0,4318_7778009_6010803,4318_1 -4318_78163,135,4318_3760,University Hospital,2392-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_3761,University Hospital,2217-00007-1,1,4318_7778009_6050801,4318_16 -4318_78163,145,4318_3762,University Hospital,3896-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_3763,University Hospital,3895-00009-1,1,4318_7778009_6050802,4318_17 -4318_78163,137,4318_3764,University Hospital,3893-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,138,4318_3765,University Hospital,2326-00011-1,1,4318_7778009_6050802,4318_17 -4318_78163,146,4318_3766,University Hospital,2455-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_3767,University Hospital,3894-00014-1,1,4318_7778009_6050802,4318_17 -4318_78163,140,4318_3768,University Hospital,3892-00015-1,1,4318_7778009_6050802,4318_17 -4318_78163,141,4318_3769,University Hospital,3891-00016-1,1,4318_7778009_6050802,4318_17 -4318_78159,137,4318_377,The Quay,3128-00010-1,0,4318_7778009_6010803,4318_1 -4318_78163,143,4318_3770,University Hospital,3738-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_3771,University Hospital,2239-00001-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_3772,University Hospital,2083-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_3773,University Hospital,2106-00003-1,1,4318_7778009_6050801,4318_17 -4318_78163,133,4318_3774,University Hospital,2149-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_3775,University Hospital,2172-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_3776,University Hospital,2195-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_3777,University Hospital,2606-00007-1,1,4318_7778009_6050803,4318_16 -4318_78163,145,4318_3778,University Hospital,3740-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_3779,University Hospital,3741-00009-1,1,4318_7778009_6050801,4318_17 -4318_78159,138,4318_378,The Quay,3129-00011-1,0,4318_7778009_6010803,4318_1 -4318_78163,137,4318_3780,University Hospital,3743-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,138,4318_3781,University Hospital,2129-00011-1,1,4318_7778009_6050801,4318_17 -4318_78163,146,4318_3782,University Hospital,2258-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_3783,University Hospital,3739-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_3784,University Hospital,3742-00015-1,1,4318_7778009_6050801,4318_17 -4318_78163,141,4318_3785,University Hospital,3744-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_3786,University Hospital,4054-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_3787,University Hospital,2627-00001-1,1,4318_7778009_6050803,4318_16 -4318_78163,131,4318_3788,University Hospital,2479-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_3789,University Hospital,2501-00003-1,1,4318_7778009_6050803,4318_17 -4318_78159,139,4318_379,The Quay,3130-00014-1,0,4318_7778009_6010803,4318_1 -4318_78163,133,4318_3790,University Hospital,2542-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_3791,University Hospital,2564-00005-1,1,4318_7778009_6050803,4318_17 -4318_78163,135,4318_3792,University Hospital,2586-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_3793,University Hospital,2416-00007-1,1,4318_7778009_6050802,4318_16 -4318_78163,145,4318_3794,University Hospital,4057-00008-1,1,4318_7778009_6050803,4318_16 -4318_78163,136,4318_3795,University Hospital,4055-00009-1,1,4318_7778009_6050803,4318_17 -4318_78163,137,4318_3796,University Hospital,4059-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,138,4318_3797,University Hospital,2523-00011-1,1,4318_7778009_6050803,4318_17 -4318_78163,146,4318_3798,University Hospital,2646-00013-1,1,4318_7778009_6050803,4318_16 -4318_78163,139,4318_3799,University Hospital,4056-00014-1,1,4318_7778009_6050803,4318_17 -4318_78159,133,4318_38,The Quay,259-00004-1,0,4318_7778009_6010802,4318_1 -4318_78159,140,4318_380,The Quay,3133-00015-1,0,4318_7778009_6010803,4318_1 -4318_78163,140,4318_3800,University Hospital,4060-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_3801,University Hospital,4058-00016-1,1,4318_7778009_6050803,4318_17 -4318_78163,143,4318_3802,University Hospital,3904-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_3803,University Hospital,2437-00001-1,1,4318_7778009_6050802,4318_16 -4318_78163,131,4318_3804,University Hospital,2282-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_3805,University Hospital,2305-00003-1,1,4318_7778009_6050802,4318_17 -4318_78163,133,4318_3806,University Hospital,2348-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_3807,University Hospital,2371-00005-1,1,4318_7778009_6050802,4318_17 -4318_78163,135,4318_3808,University Hospital,2394-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_3809,University Hospital,2219-00007-1,1,4318_7778009_6050801,4318_16 -4318_78159,141,4318_381,The Quay,3132-00016-1,0,4318_7778009_6010803,4318_1 -4318_78163,145,4318_3810,University Hospital,3909-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_3811,University Hospital,3906-00009-1,1,4318_7778009_6050802,4318_17 -4318_78163,137,4318_3812,University Hospital,3910-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,138,4318_3813,University Hospital,2328-00011-1,1,4318_7778009_6050802,4318_17 -4318_78163,146,4318_3814,University Hospital,2457-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_3815,University Hospital,3908-00014-1,1,4318_7778009_6050802,4318_17 -4318_78163,140,4318_3816,University Hospital,3905-00015-1,1,4318_7778009_6050802,4318_17 -4318_78163,141,4318_3817,University Hospital,3907-00016-1,1,4318_7778009_6050802,4318_17 -4318_78163,143,4318_3818,University Hospital,3752-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_3819,University Hospital,2241-00001-1,1,4318_7778009_6050801,4318_16 -4318_78159,143,4318_382,The Quay,2751-00017-1,0,4318_7778009_6010801,4318_2 -4318_78163,131,4318_3820,University Hospital,2085-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_3821,University Hospital,2108-00003-1,1,4318_7778009_6050801,4318_17 -4318_78163,133,4318_3822,University Hospital,2151-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_3823,University Hospital,2174-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_3824,University Hospital,2197-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_3825,University Hospital,2608-00007-1,1,4318_7778009_6050803,4318_16 -4318_78163,145,4318_3826,University Hospital,3756-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_3827,University Hospital,3753-00009-1,1,4318_7778009_6050801,4318_17 -4318_78163,137,4318_3828,University Hospital,3754-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,138,4318_3829,University Hospital,2131-00011-1,1,4318_7778009_6050801,4318_17 -4318_78159,144,4318_383,The Quay,472-00001-1,0,4318_7778009_6010803,4318_1 -4318_78163,146,4318_3830,University Hospital,2260-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_3831,University Hospital,3757-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_3832,University Hospital,3758-00015-1,1,4318_7778009_6050801,4318_17 -4318_78163,141,4318_3833,University Hospital,3755-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_3834,University Hospital,4068-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_3835,University Hospital,2629-00001-1,1,4318_7778009_6050803,4318_16 -4318_78163,131,4318_3836,University Hospital,2481-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_3837,University Hospital,2503-00003-1,1,4318_7778009_6050803,4318_17 -4318_78163,133,4318_3838,University Hospital,2544-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_3839,University Hospital,2566-00005-1,1,4318_7778009_6050803,4318_17 -4318_78159,131,4318_384,The Quay,578-00002-1,0,4318_7778009_6010805,4318_2 -4318_78163,135,4318_3840,University Hospital,2588-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_3841,University Hospital,2418-00007-1,1,4318_7778009_6050802,4318_16 -4318_78163,145,4318_3842,University Hospital,4074-00008-1,1,4318_7778009_6050803,4318_16 -4318_78163,136,4318_3843,University Hospital,4069-00009-1,1,4318_7778009_6050803,4318_17 -4318_78163,137,4318_3844,University Hospital,4073-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,138,4318_3845,University Hospital,2525-00011-1,1,4318_7778009_6050803,4318_17 -4318_78163,146,4318_3846,University Hospital,2648-00013-1,1,4318_7778009_6050803,4318_16 -4318_78163,139,4318_3847,University Hospital,4072-00014-1,1,4318_7778009_6050803,4318_17 -4318_78163,140,4318_3848,University Hospital,4071-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_3849,University Hospital,4070-00016-1,1,4318_7778009_6050803,4318_17 -4318_78159,132,4318_385,The Quay,592-00003-1,0,4318_7778009_6010805,4318_2 -4318_78163,143,4318_3850,University Hospital,3918-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_3851,University Hospital,2439-00001-1,1,4318_7778009_6050802,4318_16 -4318_78163,131,4318_3852,University Hospital,2284-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_3853,University Hospital,2307-00003-1,1,4318_7778009_6050802,4318_17 -4318_78163,133,4318_3854,University Hospital,2350-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_3855,University Hospital,2373-00005-1,1,4318_7778009_6050802,4318_17 -4318_78163,135,4318_3856,University Hospital,2396-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_3857,University Hospital,2221-00007-1,1,4318_7778009_6050801,4318_16 -4318_78163,145,4318_3858,University Hospital,3919-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_3859,University Hospital,3921-00009-1,1,4318_7778009_6050802,4318_17 -4318_78159,133,4318_386,The Quay,606-00004-1,0,4318_7778009_6010805,4318_2 -4318_78163,137,4318_3860,University Hospital,3922-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,138,4318_3861,University Hospital,2330-00011-1,1,4318_7778009_6050802,4318_17 -4318_78163,146,4318_3862,University Hospital,2459-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_3863,University Hospital,3923-00014-1,1,4318_7778009_6050802,4318_17 -4318_78163,140,4318_3864,University Hospital,3920-00015-1,1,4318_7778009_6050802,4318_17 -4318_78163,141,4318_3865,University Hospital,3924-00016-1,1,4318_7778009_6050802,4318_17 -4318_78163,143,4318_3866,University Hospital,3766-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_3867,University Hospital,2243-00001-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_3868,University Hospital,2087-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_3869,University Hospital,2110-00003-1,1,4318_7778009_6050801,4318_17 -4318_78159,134,4318_387,The Quay,620-00005-1,0,4318_7778009_6010805,4318_2 -4318_78163,133,4318_3870,University Hospital,2153-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_3871,University Hospital,2176-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_3872,University Hospital,2199-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_3873,University Hospital,2610-00007-1,1,4318_7778009_6050803,4318_16 -4318_78163,145,4318_3874,University Hospital,3771-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_3875,University Hospital,3768-00009-1,1,4318_7778009_6050801,4318_17 -4318_78163,137,4318_3876,University Hospital,3769-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,138,4318_3877,University Hospital,2133-00011-1,1,4318_7778009_6050801,4318_17 -4318_78163,146,4318_3878,University Hospital,2262-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_3879,University Hospital,3767-00014-1,1,4318_7778009_6050801,4318_17 -4318_78159,135,4318_388,The Quay,634-00006-1,0,4318_7778009_6010805,4318_2 -4318_78163,140,4318_3880,University Hospital,3772-00015-1,1,4318_7778009_6050801,4318_17 -4318_78163,141,4318_3881,University Hospital,3770-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_3882,University Hospital,4082-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_3883,University Hospital,2631-00001-1,1,4318_7778009_6050803,4318_16 -4318_78163,131,4318_3884,University Hospital,2483-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_3885,University Hospital,2505-00003-1,1,4318_7778009_6050803,4318_17 -4318_78163,133,4318_3886,University Hospital,2546-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_3887,University Hospital,2568-00005-1,1,4318_7778009_6050803,4318_17 -4318_78163,135,4318_3888,University Hospital,2590-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_3889,University Hospital,2420-00007-1,1,4318_7778009_6050802,4318_16 -4318_78159,142,4318_389,The Quay,644-00007-1,0,4318_7778009_6010805,4318_1 -4318_78163,145,4318_3890,University Hospital,4087-00008-1,1,4318_7778009_6050803,4318_16 -4318_78163,136,4318_3891,University Hospital,4085-00009-1,1,4318_7778009_6050803,4318_17 -4318_78163,137,4318_3892,University Hospital,4086-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,138,4318_3893,University Hospital,2527-00011-1,1,4318_7778009_6050803,4318_17 -4318_78163,146,4318_3894,University Hospital,2650-00013-1,1,4318_7778009_6050803,4318_16 -4318_78163,139,4318_3895,University Hospital,4083-00014-1,1,4318_7778009_6050803,4318_17 -4318_78163,140,4318_3896,University Hospital,4084-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_3897,University Hospital,4088-00016-1,1,4318_7778009_6050803,4318_17 -4318_78163,143,4318_3898,University Hospital,3932-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_3899,University Hospital,2441-00001-1,1,4318_7778009_6050802,4318_16 -4318_78159,134,4318_39,The Quay,283-00005-1,0,4318_7778009_6010802,4318_1 -4318_78159,145,4318_390,The Quay,3135-00008-1,0,4318_7778009_6010803,4318_1 -4318_78163,131,4318_3900,University Hospital,2286-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_3901,University Hospital,2309-00003-1,1,4318_7778009_6050802,4318_17 -4318_78163,133,4318_3902,University Hospital,2352-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_3903,University Hospital,2375-00005-1,1,4318_7778009_6050802,4318_17 -4318_78163,135,4318_3904,University Hospital,2398-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_3905,University Hospital,2223-00007-1,1,4318_7778009_6050801,4318_16 -4318_78163,145,4318_3906,University Hospital,3936-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_3907,University Hospital,3938-00009-1,1,4318_7778009_6050802,4318_17 -4318_78163,137,4318_3908,University Hospital,3934-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,138,4318_3909,University Hospital,2332-00011-1,1,4318_7778009_6050802,4318_17 -4318_78159,136,4318_391,The Quay,3352-00009-1,0,4318_7778009_6010805,4318_2 -4318_78163,146,4318_3910,University Hospital,2461-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_3911,University Hospital,3933-00014-1,1,4318_7778009_6050802,4318_17 -4318_78163,140,4318_3912,University Hospital,3937-00015-1,1,4318_7778009_6050802,4318_17 -4318_78163,141,4318_3913,University Hospital,3935-00016-1,1,4318_7778009_6050802,4318_17 -4318_78163,143,4318_3914,University Hospital,3780-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_3915,University Hospital,2245-00001-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_3916,University Hospital,2089-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_3917,University Hospital,2112-00003-1,1,4318_7778009_6050801,4318_17 -4318_78163,133,4318_3918,University Hospital,2155-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_3919,University Hospital,2178-00005-1,1,4318_7778009_6050801,4318_17 -4318_78159,137,4318_392,The Quay,3349-00010-1,0,4318_7778009_6010805,4318_2 -4318_78163,135,4318_3920,University Hospital,2201-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_3921,University Hospital,2612-00007-1,1,4318_7778009_6050803,4318_16 -4318_78163,145,4318_3922,University Hospital,3783-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_3923,University Hospital,3781-00009-1,1,4318_7778009_6050801,4318_17 -4318_78163,137,4318_3924,University Hospital,3784-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,138,4318_3925,University Hospital,2135-00011-1,1,4318_7778009_6050801,4318_17 -4318_78163,146,4318_3926,University Hospital,2264-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_3927,University Hospital,3785-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_3928,University Hospital,3786-00015-1,1,4318_7778009_6050801,4318_17 -4318_78163,141,4318_3929,University Hospital,3782-00016-1,1,4318_7778009_6050801,4318_17 -4318_78159,138,4318_393,The Quay,3350-00011-1,0,4318_7778009_6010805,4318_2 -4318_78163,143,4318_3930,University Hospital,4096-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_3931,University Hospital,2633-00001-1,1,4318_7778009_6050803,4318_16 -4318_78163,131,4318_3932,University Hospital,2485-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_3933,University Hospital,2507-00003-1,1,4318_7778009_6050803,4318_17 -4318_78163,133,4318_3934,University Hospital,2548-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_3935,University Hospital,2570-00005-1,1,4318_7778009_6050803,4318_17 -4318_78163,135,4318_3936,University Hospital,2592-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_3937,University Hospital,2422-00007-1,1,4318_7778009_6050802,4318_16 -4318_78163,145,4318_3938,University Hospital,4099-00008-1,1,4318_7778009_6050803,4318_16 -4318_78163,136,4318_3939,University Hospital,4102-00009-1,1,4318_7778009_6050803,4318_17 -4318_78159,146,4318_394,The Quay,3136-00013-1,0,4318_7778009_6010803,4318_1 -4318_78163,137,4318_3940,University Hospital,4101-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,138,4318_3941,University Hospital,2529-00011-1,1,4318_7778009_6050803,4318_17 -4318_78163,146,4318_3942,University Hospital,2652-00013-1,1,4318_7778009_6050803,4318_16 -4318_78163,139,4318_3943,University Hospital,4100-00014-1,1,4318_7778009_6050803,4318_17 -4318_78163,140,4318_3944,University Hospital,4098-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_3945,University Hospital,4097-00016-1,1,4318_7778009_6050803,4318_17 -4318_78163,143,4318_3946,University Hospital,3946-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_3947,University Hospital,2443-00001-1,1,4318_7778009_6050802,4318_16 -4318_78163,131,4318_3948,University Hospital,2288-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_3949,University Hospital,2311-00003-1,1,4318_7778009_6050802,4318_17 -4318_78159,139,4318_395,The Quay,3353-00014-1,0,4318_7778009_6010805,4318_2 -4318_78163,133,4318_3950,University Hospital,2354-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_3951,University Hospital,2377-00005-1,1,4318_7778009_6050802,4318_17 -4318_78163,135,4318_3952,University Hospital,2400-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_3953,University Hospital,2225-00007-1,1,4318_7778009_6050801,4318_16 -4318_78163,145,4318_3954,University Hospital,3950-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_3955,University Hospital,3952-00009-1,1,4318_7778009_6050802,4318_17 -4318_78163,137,4318_3956,University Hospital,3947-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,138,4318_3957,University Hospital,2334-00011-1,1,4318_7778009_6050802,4318_17 -4318_78163,146,4318_3958,University Hospital,2463-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_3959,University Hospital,3948-00014-1,1,4318_7778009_6050802,4318_17 -4318_78159,140,4318_396,The Quay,3347-00015-1,0,4318_7778009_6010805,4318_2 -4318_78163,140,4318_3960,University Hospital,3951-00015-1,1,4318_7778009_6050802,4318_17 -4318_78163,141,4318_3961,University Hospital,3949-00016-1,1,4318_7778009_6050802,4318_17 -4318_78163,143,4318_3962,University Hospital,3794-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_3963,University Hospital,2247-00001-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_3964,University Hospital,2091-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_3965,University Hospital,2114-00003-1,1,4318_7778009_6050801,4318_17 -4318_78163,133,4318_3966,University Hospital,2157-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_3967,University Hospital,2180-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_3968,University Hospital,2203-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_3969,University Hospital,2614-00007-1,1,4318_7778009_6050803,4318_16 -4318_78159,141,4318_397,The Quay,3348-00016-1,0,4318_7778009_6010805,4318_2 -4318_78163,145,4318_3970,University Hospital,3797-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_3971,University Hospital,3800-00009-1,1,4318_7778009_6050801,4318_17 -4318_78163,137,4318_3972,University Hospital,3796-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,138,4318_3973,University Hospital,2137-00011-1,1,4318_7778009_6050801,4318_17 -4318_78163,146,4318_3974,University Hospital,2266-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_3975,University Hospital,3795-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_3976,University Hospital,3798-00015-1,1,4318_7778009_6050801,4318_17 -4318_78163,141,4318_3977,University Hospital,3799-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_3978,University Hospital,4110-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_3979,University Hospital,2635-00001-1,1,4318_7778009_6050803,4318_16 -4318_78159,143,4318_398,The Quay,3351-00017-1,0,4318_7778009_6010805,4318_1 -4318_78163,131,4318_3980,University Hospital,2487-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_3981,University Hospital,2509-00003-1,1,4318_7778009_6050803,4318_17 -4318_78163,133,4318_3982,University Hospital,2550-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_3983,University Hospital,2572-00005-1,1,4318_7778009_6050803,4318_17 -4318_78163,135,4318_3984,University Hospital,2594-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_3985,University Hospital,2424-00007-1,1,4318_7778009_6050802,4318_16 -4318_78163,145,4318_3986,University Hospital,4116-00008-1,1,4318_7778009_6050803,4318_16 -4318_78163,136,4318_3987,University Hospital,4112-00009-1,1,4318_7778009_6050803,4318_17 -4318_78163,137,4318_3988,University Hospital,4113-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,138,4318_3989,University Hospital,2531-00011-1,1,4318_7778009_6050803,4318_17 -4318_78159,131,4318_399,The Quay,202-00002-1,0,4318_7778009_6010802,4318_1 -4318_78163,146,4318_3990,University Hospital,2654-00013-1,1,4318_7778009_6050803,4318_16 -4318_78163,139,4318_3991,University Hospital,4115-00014-1,1,4318_7778009_6050803,4318_17 -4318_78163,140,4318_3992,University Hospital,4114-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_3993,University Hospital,4111-00016-1,1,4318_7778009_6050803,4318_17 -4318_78163,143,4318_3994,University Hospital,3960-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_3995,University Hospital,2445-00001-1,1,4318_7778009_6050802,4318_16 -4318_78163,131,4318_3996,University Hospital,2290-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_3997,University Hospital,2313-00003-1,1,4318_7778009_6050802,4318_17 -4318_78163,133,4318_3998,University Hospital,2356-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_3999,University Hospital,2379-00005-1,1,4318_7778009_6050802,4318_17 -4318_78159,134,4318_4,The Quay,92-00005-1,0,4318_7778009_6010801,4318_1 -4318_78159,135,4318_40,The Quay,307-00006-1,0,4318_7778009_6010802,4318_1 -4318_78159,132,4318_400,The Quay,226-00003-1,0,4318_7778009_6010802,4318_1 -4318_78163,135,4318_4000,University Hospital,2402-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_4001,University Hospital,2227-00007-1,1,4318_7778009_6050801,4318_16 -4318_78163,145,4318_4002,University Hospital,3966-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_4003,University Hospital,3964-00009-1,1,4318_7778009_6050802,4318_17 -4318_78163,137,4318_4004,University Hospital,3963-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,138,4318_4005,University Hospital,2336-00011-1,1,4318_7778009_6050802,4318_17 -4318_78163,146,4318_4006,University Hospital,2465-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_4007,University Hospital,3961-00014-1,1,4318_7778009_6050802,4318_17 -4318_78163,140,4318_4008,University Hospital,3965-00015-1,1,4318_7778009_6050802,4318_17 -4318_78163,141,4318_4009,University Hospital,3962-00016-1,1,4318_7778009_6050802,4318_17 -4318_78159,133,4318_401,The Quay,269-00004-1,0,4318_7778009_6010802,4318_1 -4318_78163,143,4318_4010,University Hospital,3808-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_4011,University Hospital,2249-00001-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_4012,University Hospital,2093-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_4013,University Hospital,2116-00003-1,1,4318_7778009_6050801,4318_17 -4318_78163,133,4318_4014,University Hospital,2159-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_4015,University Hospital,2182-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_4016,University Hospital,2205-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_4017,University Hospital,2616-00007-1,1,4318_7778009_6050803,4318_16 -4318_78163,145,4318_4018,University Hospital,3810-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_4019,University Hospital,3813-00009-1,1,4318_7778009_6050801,4318_17 -4318_78159,134,4318_402,The Quay,293-00005-1,0,4318_7778009_6010802,4318_1 -4318_78163,137,4318_4020,University Hospital,3809-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,138,4318_4021,University Hospital,2139-00011-1,1,4318_7778009_6050801,4318_17 -4318_78163,146,4318_4022,University Hospital,2268-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_4023,University Hospital,3814-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_4024,University Hospital,3812-00015-1,1,4318_7778009_6050801,4318_17 -4318_78163,141,4318_4025,University Hospital,3811-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_4026,University Hospital,4124-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_4027,University Hospital,2637-00001-1,1,4318_7778009_6050803,4318_16 -4318_78163,131,4318_4028,University Hospital,2489-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_4029,University Hospital,2511-00003-1,1,4318_7778009_6050803,4318_17 -4318_78159,135,4318_403,The Quay,317-00006-1,0,4318_7778009_6010802,4318_1 -4318_78163,133,4318_4030,University Hospital,2552-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_4031,University Hospital,2574-00005-1,1,4318_7778009_6050803,4318_17 -4318_78163,135,4318_4032,University Hospital,2596-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_4033,University Hospital,2426-00007-1,1,4318_7778009_6050802,4318_16 -4318_78163,145,4318_4034,University Hospital,4126-00008-1,1,4318_7778009_6050803,4318_16 -4318_78163,136,4318_4035,University Hospital,4130-00009-1,1,4318_7778009_6050803,4318_17 -4318_78163,137,4318_4036,University Hospital,4129-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,138,4318_4037,University Hospital,2533-00011-1,1,4318_7778009_6050803,4318_17 -4318_78163,146,4318_4038,University Hospital,2656-00013-1,1,4318_7778009_6050803,4318_16 -4318_78163,139,4318_4039,University Hospital,4128-00014-1,1,4318_7778009_6050803,4318_17 -4318_78159,142,4318_404,The Quay,564-00007-1,0,4318_7778009_6010804,4318_2 -4318_78163,140,4318_4040,University Hospital,4125-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_4041,University Hospital,4127-00016-1,1,4318_7778009_6050803,4318_17 -4318_78163,143,4318_4042,University Hospital,3974-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_4043,University Hospital,2447-00001-1,1,4318_7778009_6050802,4318_16 -4318_78163,131,4318_4044,University Hospital,2292-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_4045,University Hospital,2315-00003-1,1,4318_7778009_6050802,4318_17 -4318_78163,133,4318_4046,University Hospital,2358-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_4047,University Hospital,2381-00005-1,1,4318_7778009_6050802,4318_17 -4318_78163,135,4318_4048,University Hospital,2404-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_4049,University Hospital,2229-00007-1,1,4318_7778009_6050801,4318_16 -4318_78159,136,4318_405,The Quay,2948-00009-1,0,4318_7778009_6010802,4318_1 -4318_78163,145,4318_4050,University Hospital,3978-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_4051,University Hospital,3980-00009-1,1,4318_7778009_6050802,4318_17 -4318_78163,137,4318_4052,University Hospital,3977-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,138,4318_4053,University Hospital,2338-00011-1,1,4318_7778009_6050802,4318_17 -4318_78163,146,4318_4054,University Hospital,2467-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_4055,University Hospital,3975-00014-1,1,4318_7778009_6050802,4318_17 -4318_78163,140,4318_4056,University Hospital,3976-00015-1,1,4318_7778009_6050802,4318_17 -4318_78163,141,4318_4057,University Hospital,3979-00016-1,1,4318_7778009_6050802,4318_17 -4318_78163,143,4318_4058,University Hospital,3822-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_4059,University Hospital,2251-00001-1,1,4318_7778009_6050801,4318_16 -4318_78159,137,4318_406,The Quay,2950-00010-1,0,4318_7778009_6010802,4318_1 -4318_78163,131,4318_4060,University Hospital,2095-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_4061,University Hospital,2118-00003-1,1,4318_7778009_6050801,4318_17 -4318_78163,133,4318_4062,University Hospital,2161-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_4063,University Hospital,2184-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_4064,University Hospital,2207-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_4065,University Hospital,2618-00007-1,1,4318_7778009_6050803,4318_16 -4318_78163,145,4318_4066,University Hospital,3823-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_4067,University Hospital,3827-00009-1,1,4318_7778009_6050801,4318_17 -4318_78163,137,4318_4068,University Hospital,3824-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,138,4318_4069,University Hospital,2141-00011-1,1,4318_7778009_6050801,4318_17 -4318_78159,138,4318_407,The Quay,250-00011-1,0,4318_7778009_6010802,4318_1 -4318_78163,146,4318_4070,University Hospital,2270-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_4071,University Hospital,3825-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_4072,University Hospital,3826-00015-1,1,4318_7778009_6050801,4318_17 -4318_78163,141,4318_4073,University Hospital,3828-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_4074,University Hospital,4138-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_4075,University Hospital,2639-00001-1,1,4318_7778009_6050803,4318_16 -4318_78163,131,4318_4076,University Hospital,2491-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_4077,University Hospital,2513-00003-1,1,4318_7778009_6050803,4318_17 -4318_78163,133,4318_4078,University Hospital,2554-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_4079,University Hospital,2576-00005-1,1,4318_7778009_6050803,4318_17 -4318_78159,139,4318_408,The Quay,2951-00014-1,0,4318_7778009_6010802,4318_1 -4318_78163,135,4318_4080,University Hospital,2598-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_4081,University Hospital,2428-00007-1,1,4318_7778009_6050802,4318_16 -4318_78163,145,4318_4082,University Hospital,4139-00008-1,1,4318_7778009_6050803,4318_16 -4318_78163,136,4318_4083,University Hospital,4142-00009-1,1,4318_7778009_6050803,4318_17 -4318_78163,137,4318_4084,University Hospital,4140-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,138,4318_4085,University Hospital,2535-00011-1,1,4318_7778009_6050803,4318_17 -4318_78163,146,4318_4086,University Hospital,2658-00013-1,1,4318_7778009_6050803,4318_16 -4318_78163,139,4318_4087,University Hospital,4141-00014-1,1,4318_7778009_6050803,4318_17 -4318_78163,140,4318_4088,University Hospital,4144-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_4089,University Hospital,4143-00016-1,1,4318_7778009_6050803,4318_17 -4318_78159,140,4318_409,The Quay,2949-00015-1,0,4318_7778009_6010802,4318_1 -4318_78163,143,4318_4090,University Hospital,3988-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_4091,University Hospital,2449-00001-1,1,4318_7778009_6050802,4318_16 -4318_78163,131,4318_4092,University Hospital,2294-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_4093,University Hospital,2317-00003-1,1,4318_7778009_6050802,4318_17 -4318_78163,133,4318_4094,University Hospital,2360-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_4095,University Hospital,2383-00005-1,1,4318_7778009_6050802,4318_17 -4318_78163,135,4318_4096,University Hospital,2406-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_4097,University Hospital,2231-00007-1,1,4318_7778009_6050801,4318_16 -4318_78163,145,4318_4098,University Hospital,3991-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_4099,University Hospital,3994-00009-1,1,4318_7778009_6050802,4318_17 -4318_78159,142,4318_41,The Quay,141-00007-1,0,4318_7778009_6010801,4318_2 -4318_78159,141,4318_410,The Quay,2952-00016-1,0,4318_7778009_6010802,4318_1 -4318_78163,137,4318_4100,University Hospital,3992-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,138,4318_4101,University Hospital,2340-00011-1,1,4318_7778009_6050802,4318_17 -4318_78163,146,4318_4102,University Hospital,2469-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_4103,University Hospital,3990-00014-1,1,4318_7778009_6050802,4318_17 -4318_78163,140,4318_4104,University Hospital,3993-00015-1,1,4318_7778009_6050802,4318_17 -4318_78163,141,4318_4105,University Hospital,3989-00016-1,1,4318_7778009_6050802,4318_17 -4318_78163,143,4318_4106,University Hospital,3836-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_4107,University Hospital,2253-00001-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_4108,University Hospital,2097-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_4109,University Hospital,2120-00003-1,1,4318_7778009_6050801,4318_17 -4318_78159,143,4318_411,The Quay,3247-00017-1,0,4318_7778009_6010804,4318_2 -4318_78163,133,4318_4110,University Hospital,2163-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_4111,University Hospital,2186-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_4112,University Hospital,2209-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_4113,University Hospital,2620-00007-1,1,4318_7778009_6050803,4318_16 -4318_78163,145,4318_4114,University Hospital,3837-00008-1,1,4318_7778009_6050801,4318_16 -4318_78163,136,4318_4115,University Hospital,3838-00009-1,1,4318_7778009_6050801,4318_17 -4318_78163,137,4318_4116,University Hospital,3840-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,146,4318_4117,University Hospital,2272-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_4118,University Hospital,3839-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_4119,University Hospital,3842-00015-1,1,4318_7778009_6050801,4318_17 -4318_78159,144,4318_412,The Quay,366-00001-1,0,4318_7778009_6010802,4318_1 -4318_78163,141,4318_4120,University Hospital,3841-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_4121,University Hospital,4152-00017-1,1,4318_7778009_6050803,4318_16 -4318_78163,144,4318_4122,University Hospital,2641-00001-1,1,4318_7778009_6050803,4318_16 -4318_78163,131,4318_4123,University Hospital,2493-00002-1,1,4318_7778009_6050803,4318_17 -4318_78163,132,4318_4124,University Hospital,2515-00003-1,1,4318_7778009_6050803,4318_17 -4318_78163,133,4318_4125,University Hospital,2556-00004-1,1,4318_7778009_6050803,4318_17 -4318_78163,134,4318_4126,University Hospital,2578-00005-1,1,4318_7778009_6050803,4318_17 -4318_78163,135,4318_4127,University Hospital,2600-00006-1,1,4318_7778009_6050803,4318_17 -4318_78163,142,4318_4128,University Hospital,2430-00007-1,1,4318_7778009_6050802,4318_16 -4318_78163,145,4318_4129,University Hospital,4155-00008-1,1,4318_7778009_6050803,4318_16 -4318_78159,145,4318_413,The Quay,2953-00008-1,0,4318_7778009_6010802,4318_1 -4318_78163,136,4318_4130,University Hospital,4156-00009-1,1,4318_7778009_6050803,4318_17 -4318_78163,137,4318_4131,University Hospital,4157-00010-1,1,4318_7778009_6050803,4318_17 -4318_78163,146,4318_4132,University Hospital,2660-00013-1,1,4318_7778009_6050803,4318_16 -4318_78163,139,4318_4133,University Hospital,4153-00014-1,1,4318_7778009_6050803,4318_17 -4318_78163,140,4318_4134,University Hospital,4154-00015-1,1,4318_7778009_6050803,4318_17 -4318_78163,141,4318_4135,University Hospital,4158-00016-1,1,4318_7778009_6050803,4318_17 -4318_78163,143,4318_4136,University Hospital,4002-00017-1,1,4318_7778009_6050802,4318_16 -4318_78163,144,4318_4137,University Hospital,2451-00001-1,1,4318_7778009_6050802,4318_16 -4318_78163,131,4318_4138,University Hospital,2296-00002-1,1,4318_7778009_6050802,4318_17 -4318_78163,132,4318_4139,University Hospital,2319-00003-1,1,4318_7778009_6050802,4318_17 -4318_78159,146,4318_414,The Quay,2954-00013-1,0,4318_7778009_6010802,4318_1 -4318_78163,133,4318_4140,University Hospital,2362-00004-1,1,4318_7778009_6050802,4318_17 -4318_78163,134,4318_4141,University Hospital,2385-00005-1,1,4318_7778009_6050802,4318_17 -4318_78163,135,4318_4142,University Hospital,2408-00006-1,1,4318_7778009_6050802,4318_17 -4318_78163,142,4318_4143,University Hospital,2233-00007-1,1,4318_7778009_6050801,4318_16 -4318_78163,145,4318_4144,University Hospital,4006-00008-1,1,4318_7778009_6050802,4318_16 -4318_78163,136,4318_4145,University Hospital,4007-00009-1,1,4318_7778009_6050802,4318_17 -4318_78163,137,4318_4146,University Hospital,4008-00010-1,1,4318_7778009_6050802,4318_17 -4318_78163,146,4318_4147,University Hospital,2471-00013-1,1,4318_7778009_6050802,4318_16 -4318_78163,139,4318_4148,University Hospital,4004-00014-1,1,4318_7778009_6050802,4318_17 -4318_78163,140,4318_4149,University Hospital,4005-00015-1,1,4318_7778009_6050802,4318_17 -4318_78159,131,4318_415,The Quay,488-00002-1,0,4318_7778009_6010804,4318_1 -4318_78163,141,4318_4150,University Hospital,4003-00016-1,1,4318_7778009_6050802,4318_17 -4318_78163,143,4318_4151,University Hospital,3850-00017-1,1,4318_7778009_6050801,4318_16 -4318_78163,144,4318_4152,University Hospital,2255-00001-1,1,4318_7778009_6050801,4318_16 -4318_78163,131,4318_4153,University Hospital,2099-00002-1,1,4318_7778009_6050801,4318_17 -4318_78163,132,4318_4154,University Hospital,2122-00003-1,1,4318_7778009_6050801,4318_17 -4318_78163,133,4318_4155,University Hospital,2165-00004-1,1,4318_7778009_6050801,4318_17 -4318_78163,134,4318_4156,University Hospital,2188-00005-1,1,4318_7778009_6050801,4318_17 -4318_78163,135,4318_4157,University Hospital,2211-00006-1,1,4318_7778009_6050801,4318_17 -4318_78163,142,4318_4158,University Hospital,2797-00007-1,1,4318_7778009_6050803,4318_16 -4318_78163,145,4318_4159,University Hospital,3855-00008-1,1,4318_7778009_6050801,4318_16 -4318_78159,132,4318_416,The Quay,504-00003-1,0,4318_7778009_6010804,4318_1 -4318_78163,136,4318_4160,University Hospital,3853-00009-1,1,4318_7778009_6050801,4318_17 -4318_78163,137,4318_4161,University Hospital,3852-00010-1,1,4318_7778009_6050801,4318_17 -4318_78163,146,4318_4162,University Hospital,2274-00013-1,1,4318_7778009_6050801,4318_16 -4318_78163,139,4318_4163,University Hospital,3856-00014-1,1,4318_7778009_6050801,4318_17 -4318_78163,140,4318_4164,University Hospital,3854-00015-1,1,4318_7778009_6050801,4318_17 -4318_78163,141,4318_4165,University Hospital,3851-00016-1,1,4318_7778009_6050801,4318_17 -4318_78163,143,4318_4166,University Hospital,4307-00017-1,1,4318_7778009_6050803,4318_16 -4318_78159,133,4318_417,The Quay,520-00004-1,0,4318_7778009_6010804,4318_1 -4318_78159,134,4318_418,The Quay,536-00005-1,0,4318_7778009_6010804,4318_1 -4318_78159,135,4318_419,The Quay,552-00006-1,0,4318_7778009_6010804,4318_1 -4318_78159,136,4318_42,The Quay,2865-00009-1,0,4318_7778009_6010802,4318_1 -4318_78159,142,4318_420,The Quay,463-00007-1,0,4318_7778009_6010803,4318_2 -4318_78159,136,4318_421,The Quay,3253-00009-1,0,4318_7778009_6010804,4318_1 -4318_78159,137,4318_422,The Quay,3249-00010-1,0,4318_7778009_6010804,4318_1 -4318_78159,138,4318_423,The Quay,3250-00011-1,0,4318_7778009_6010804,4318_1 -4318_78159,139,4318_424,The Quay,3248-00014-1,0,4318_7778009_6010804,4318_1 -4318_78159,140,4318_425,The Quay,3252-00015-1,0,4318_7778009_6010804,4318_1 -4318_78159,141,4318_426,The Quay,3251-00016-1,0,4318_7778009_6010804,4318_1 -4318_78159,143,4318_427,The Quay,3143-00017-1,0,4318_7778009_6010803,4318_2 -4318_78159,144,4318_428,The Quay,178-00001-1,0,4318_7778009_6010801,4318_1 -4318_78159,131,4318_429,The Quay,13-00002-1,0,4318_7778009_6010801,4318_2 -4318_78159,137,4318_43,The Quay,2867-00010-1,0,4318_7778009_6010802,4318_1 -4318_78159,132,4318_430,The Quay,56-00003-1,0,4318_7778009_6010801,4318_2 -4318_78159,133,4318_431,The Quay,80-00004-1,0,4318_7778009_6010801,4318_2 -4318_78159,134,4318_432,The Quay,104-00005-1,0,4318_7778009_6010801,4318_2 -4318_78159,135,4318_433,The Quay,128-00006-1,0,4318_7778009_6010801,4318_2 -4318_78159,142,4318_434,The Quay,343-00007-1,0,4318_7778009_6010802,4318_1 -4318_78159,145,4318_435,The Quay,2765-00008-1,0,4318_7778009_6010801,4318_1 -4318_78159,136,4318_436,The Quay,2763-00009-1,0,4318_7778009_6010801,4318_2 -4318_78159,137,4318_437,The Quay,2761-00010-1,0,4318_7778009_6010801,4318_2 -4318_78159,92,4318_4378,The Quay,3128-00010-2,0,,4318_1 -4318_78159,138,4318_438,The Quay,37-00011-1,0,4318_7778009_6010801,4318_2 -4318_78159,146,4318_439,The Quay,2766-00013-1,0,4318_7778009_6010801,4318_1 -4318_78159,138,4318_44,The Quay,240-00011-1,0,4318_7778009_6010802,4318_1 -4318_78159,139,4318_440,The Quay,2760-00014-1,0,4318_7778009_6010801,4318_2 -4318_78159,140,4318_441,The Quay,2764-00015-1,0,4318_7778009_6010801,4318_2 -4318_78159,141,4318_442,The Quay,2762-00016-1,0,4318_7778009_6010801,4318_2 -4318_78159,143,4318_443,The Quay,2955-00017-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_444,The Quay,392-00002-1,0,4318_7778009_6010803,4318_1 -4318_78159,132,4318_445,The Quay,407-00003-1,0,4318_7778009_6010803,4318_1 -4318_78159,133,4318_446,The Quay,422-00004-1,0,4318_7778009_6010803,4318_1 -4318_78159,134,4318_447,The Quay,437-00005-1,0,4318_7778009_6010803,4318_1 -4318_78159,135,4318_448,The Quay,452-00006-1,0,4318_7778009_6010803,4318_1 -4318_78159,142,4318_449,The Quay,154-00007-1,0,4318_7778009_6010801,4318_2 -4318_78159,139,4318_45,The Quay,2866-00014-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_450,The Quay,3150-00009-1,0,4318_7778009_6010803,4318_1 -4318_78159,137,4318_451,The Quay,3148-00010-1,0,4318_7778009_6010803,4318_1 -4318_78159,138,4318_452,The Quay,3149-00011-1,0,4318_7778009_6010803,4318_1 -4318_78159,139,4318_453,The Quay,3146-00014-1,0,4318_7778009_6010803,4318_1 -4318_78159,140,4318_454,The Quay,3147-00015-1,0,4318_7778009_6010803,4318_1 -4318_78159,141,4318_455,The Quay,3151-00016-1,0,4318_7778009_6010803,4318_1 -4318_78159,143,4318_456,The Quay,2767-00017-1,0,4318_7778009_6010801,4318_2 -4318_78159,144,4318_457,The Quay,474-00001-1,0,4318_7778009_6010803,4318_1 -4318_78159,145,4318_458,The Quay,3153-00008-1,0,4318_7778009_6010803,4318_1 -4318_78159,146,4318_459,The Quay,3154-00013-1,0,4318_7778009_6010803,4318_1 -4318_78159,140,4318_46,The Quay,2868-00015-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_460,The Quay,580-00002-1,0,4318_7778009_6010805,4318_1 -4318_78159,132,4318_461,The Quay,594-00003-1,0,4318_7778009_6010805,4318_1 -4318_78159,133,4318_462,The Quay,608-00004-1,0,4318_7778009_6010805,4318_1 -4318_78159,134,4318_463,The Quay,622-00005-1,0,4318_7778009_6010805,4318_1 -4318_78159,135,4318_464,The Quay,636-00006-1,0,4318_7778009_6010805,4318_1 -4318_78159,142,4318_465,The Quay,646-00007-1,0,4318_7778009_6010805,4318_2 -4318_78159,136,4318_466,The Quay,3363-00009-1,0,4318_7778009_6010805,4318_1 -4318_78159,137,4318_467,The Quay,3365-00010-1,0,4318_7778009_6010805,4318_1 -4318_78159,138,4318_468,The Quay,3366-00011-1,0,4318_7778009_6010805,4318_1 -4318_78159,139,4318_469,The Quay,3361-00014-1,0,4318_7778009_6010805,4318_1 -4318_78159,141,4318_47,The Quay,2864-00016-1,0,4318_7778009_6010802,4318_1 -4318_78159,140,4318_470,The Quay,3364-00015-1,0,4318_7778009_6010805,4318_1 -4318_78159,141,4318_471,The Quay,3367-00016-1,0,4318_7778009_6010805,4318_1 -4318_78159,143,4318_472,The Quay,3362-00017-1,0,4318_7778009_6010805,4318_2 -4318_78159,144,4318_473,The Quay,368-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_474,The Quay,204-00002-1,0,4318_7778009_6010802,4318_2 -4318_78159,132,4318_475,The Quay,228-00003-1,0,4318_7778009_6010802,4318_2 -4318_78159,133,4318_476,The Quay,271-00004-1,0,4318_7778009_6010802,4318_2 -4318_78159,134,4318_477,The Quay,295-00005-1,0,4318_7778009_6010802,4318_2 -4318_78159,135,4318_478,The Quay,319-00006-1,0,4318_7778009_6010802,4318_2 -4318_78159,142,4318_479,The Quay,566-00007-1,0,4318_7778009_6010804,4318_1 -4318_78159,143,4318_48,The Quay,2673-00017-1,0,4318_7778009_6010801,4318_2 -4318_78159,145,4318_480,The Quay,2967-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_481,The Quay,2966-00009-1,0,4318_7778009_6010802,4318_2 -4318_78159,137,4318_482,The Quay,2964-00010-1,0,4318_7778009_6010802,4318_2 -4318_78159,138,4318_483,The Quay,252-00011-1,0,4318_7778009_6010802,4318_2 -4318_78159,146,4318_484,The Quay,2968-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,139,4318_485,The Quay,2969-00014-1,0,4318_7778009_6010802,4318_2 -4318_78159,140,4318_486,The Quay,2970-00015-1,0,4318_7778009_6010802,4318_2 -4318_78159,141,4318_487,The Quay,2965-00016-1,0,4318_7778009_6010802,4318_2 -4318_78159,143,4318_488,The Quay,3261-00017-1,0,4318_7778009_6010804,4318_1 -4318_78159,131,4318_489,The Quay,490-00002-1,0,4318_7778009_6010804,4318_1 -4318_78159,131,4318_49,The Quay,478-00002-1,0,4318_7778009_6010804,4318_1 -4318_78159,132,4318_490,The Quay,506-00003-1,0,4318_7778009_6010804,4318_1 -4318_78159,133,4318_491,The Quay,522-00004-1,0,4318_7778009_6010804,4318_1 -4318_78159,134,4318_492,The Quay,538-00005-1,0,4318_7778009_6010804,4318_1 -4318_78159,135,4318_493,The Quay,554-00006-1,0,4318_7778009_6010804,4318_1 -4318_78159,142,4318_494,The Quay,155-00007-1,0,4318_7778009_6010801,4318_2 -4318_78159,136,4318_495,The Quay,3262-00009-1,0,4318_7778009_6010804,4318_1 -4318_78159,137,4318_496,The Quay,3263-00010-1,0,4318_7778009_6010804,4318_1 -4318_78159,138,4318_497,The Quay,3264-00011-1,0,4318_7778009_6010804,4318_1 -4318_78159,139,4318_498,The Quay,3267-00014-1,0,4318_7778009_6010804,4318_1 -4318_78159,140,4318_499,The Quay,3266-00015-1,0,4318_7778009_6010804,4318_1 -4318_78159,135,4318_5,The Quay,116-00006-1,0,4318_7778009_6010801,4318_1 -4318_78159,132,4318_50,The Quay,494-00003-1,0,4318_7778009_6010804,4318_1 -4318_78159,141,4318_500,The Quay,3265-00016-1,0,4318_7778009_6010804,4318_1 -4318_78159,143,4318_501,The Quay,2775-00017-1,0,4318_7778009_6010801,4318_2 -4318_78159,144,4318_502,The Quay,180-00001-1,0,4318_7778009_6010801,4318_1 -4318_78159,145,4318_503,The Quay,2776-00008-1,0,4318_7778009_6010801,4318_1 -4318_78159,146,4318_504,The Quay,2777-00013-1,0,4318_7778009_6010801,4318_1 -4318_78159,131,4318_505,The Quay,15-00002-1,0,4318_7778009_6010801,4318_1 -4318_78159,132,4318_506,The Quay,58-00003-1,0,4318_7778009_6010801,4318_1 -4318_78159,133,4318_507,The Quay,82-00004-1,0,4318_7778009_6010801,4318_1 -4318_78159,134,4318_508,The Quay,106-00005-1,0,4318_7778009_6010801,4318_1 -4318_78159,135,4318_509,The Quay,130-00006-1,0,4318_7778009_6010801,4318_1 -4318_78159,133,4318_51,The Quay,510-00004-1,0,4318_7778009_6010804,4318_1 -4318_78159,142,4318_510,The Quay,345-00007-1,0,4318_7778009_6010802,4318_2 -4318_78159,136,4318_511,The Quay,2780-00009-1,0,4318_7778009_6010801,4318_1 -4318_78159,137,4318_512,The Quay,2781-00010-1,0,4318_7778009_6010801,4318_1 -4318_78159,138,4318_513,The Quay,39-00011-1,0,4318_7778009_6010801,4318_1 -4318_78159,139,4318_514,The Quay,2782-00014-1,0,4318_7778009_6010801,4318_1 -4318_78159,140,4318_515,The Quay,2779-00015-1,0,4318_7778009_6010801,4318_1 -4318_78159,141,4318_516,The Quay,2778-00016-1,0,4318_7778009_6010801,4318_1 -4318_78159,143,4318_517,The Quay,2971-00017-1,0,4318_7778009_6010802,4318_2 -4318_78159,144,4318_518,The Quay,476-00001-1,0,4318_7778009_6010803,4318_1 -4318_78159,131,4318_519,The Quay,394-00002-1,0,4318_7778009_6010803,4318_2 -4318_78159,134,4318_52,The Quay,526-00005-1,0,4318_7778009_6010804,4318_1 -4318_78159,132,4318_520,The Quay,409-00003-1,0,4318_7778009_6010803,4318_2 -4318_78159,133,4318_521,The Quay,424-00004-1,0,4318_7778009_6010803,4318_2 -4318_78159,134,4318_522,The Quay,439-00005-1,0,4318_7778009_6010803,4318_2 -4318_78159,135,4318_523,The Quay,454-00006-1,0,4318_7778009_6010803,4318_2 -4318_78159,142,4318_524,The Quay,466-00007-1,0,4318_7778009_6010803,4318_3 -4318_78159,145,4318_525,The Quay,3170-00008-1,0,4318_7778009_6010803,4318_1 -4318_78159,136,4318_526,The Quay,3172-00009-1,0,4318_7778009_6010803,4318_2 -4318_78159,137,4318_527,The Quay,3167-00010-1,0,4318_7778009_6010803,4318_2 -4318_78159,138,4318_528,The Quay,3168-00011-1,0,4318_7778009_6010803,4318_2 -4318_78159,146,4318_529,The Quay,3232-00013-1,0,4318_7778009_6010803,4318_1 -4318_78159,135,4318_53,The Quay,542-00006-1,0,4318_7778009_6010804,4318_1 -4318_78159,139,4318_530,The Quay,3166-00014-1,0,4318_7778009_6010803,4318_2 -4318_78159,140,4318_531,The Quay,3169-00015-1,0,4318_7778009_6010803,4318_2 -4318_78159,141,4318_532,The Quay,3164-00016-1,0,4318_7778009_6010803,4318_2 -4318_78159,143,4318_533,The Quay,3165-00017-1,0,4318_7778009_6010803,4318_3 -4318_78159,144,4318_534,The Quay,370-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_535,The Quay,16-00002-1,0,4318_7778009_6010801,4318_2 -4318_78159,132,4318_536,The Quay,59-00003-1,0,4318_7778009_6010801,4318_2 -4318_78159,133,4318_537,The Quay,83-00004-1,0,4318_7778009_6010801,4318_2 -4318_78159,134,4318_538,The Quay,107-00005-1,0,4318_7778009_6010801,4318_2 -4318_78159,135,4318_539,The Quay,131-00006-1,0,4318_7778009_6010801,4318_2 -4318_78159,136,4318_54,The Quay,3183-00009-1,0,4318_7778009_6010804,4318_1 -4318_78159,142,4318_540,The Quay,346-00007-1,0,4318_7778009_6010802,4318_3 -4318_78159,145,4318_541,The Quay,2980-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_542,The Quay,2788-00009-1,0,4318_7778009_6010801,4318_2 -4318_78159,137,4318_543,The Quay,2786-00010-1,0,4318_7778009_6010801,4318_2 -4318_78159,138,4318_544,The Quay,40-00011-1,0,4318_7778009_6010801,4318_2 -4318_78159,146,4318_545,The Quay,2981-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,139,4318_546,The Quay,2787-00014-1,0,4318_7778009_6010801,4318_2 -4318_78159,140,4318_547,The Quay,2790-00015-1,0,4318_7778009_6010801,4318_2 -4318_78159,141,4318_548,The Quay,2789-00016-1,0,4318_7778009_6010801,4318_2 -4318_78159,143,4318_549,The Quay,2979-00017-1,0,4318_7778009_6010802,4318_3 -4318_78159,137,4318_55,The Quay,3181-00010-1,0,4318_7778009_6010804,4318_1 -4318_78159,144,4318_550,The Quay,371-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_551,The Quay,492-00002-1,0,4318_7778009_6010804,4318_2 -4318_78159,132,4318_552,The Quay,508-00003-1,0,4318_7778009_6010804,4318_2 -4318_78159,133,4318_553,The Quay,524-00004-1,0,4318_7778009_6010804,4318_2 -4318_78159,134,4318_554,The Quay,540-00005-1,0,4318_7778009_6010804,4318_2 -4318_78159,135,4318_555,The Quay,556-00006-1,0,4318_7778009_6010804,4318_2 -4318_78159,142,4318_556,The Quay,467-00007-1,0,4318_7778009_6010803,4318_2 -4318_78159,145,4318_557,The Quay,2987-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_558,The Quay,3277-00009-1,0,4318_7778009_6010804,4318_2 -4318_78159,137,4318_559,The Quay,3279-00010-1,0,4318_7778009_6010804,4318_2 -4318_78159,138,4318_56,The Quay,3182-00011-1,0,4318_7778009_6010804,4318_1 -4318_78159,138,4318_560,The Quay,3280-00011-1,0,4318_7778009_6010804,4318_2 -4318_78159,146,4318_561,The Quay,2988-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,139,4318_562,The Quay,3276-00014-1,0,4318_7778009_6010804,4318_2 -4318_78159,140,4318_563,The Quay,3278-00015-1,0,4318_7778009_6010804,4318_2 -4318_78159,141,4318_564,The Quay,3275-00016-1,0,4318_7778009_6010804,4318_2 -4318_78159,143,4318_565,The Quay,3173-00017-1,0,4318_7778009_6010803,4318_2 -4318_78159,144,4318_566,The Quay,372-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_567,The Quay,17-00002-1,0,4318_7778009_6010801,4318_1 -4318_78159,132,4318_568,The Quay,60-00003-1,0,4318_7778009_6010801,4318_1 -4318_78159,133,4318_569,The Quay,84-00004-1,0,4318_7778009_6010801,4318_1 -4318_78159,139,4318_57,The Quay,3180-00014-1,0,4318_7778009_6010804,4318_1 -4318_78159,134,4318_570,The Quay,108-00005-1,0,4318_7778009_6010801,4318_1 -4318_78159,135,4318_571,The Quay,132-00006-1,0,4318_7778009_6010801,4318_1 -4318_78159,142,4318_572,The Quay,347-00007-1,0,4318_7778009_6010802,4318_1 -4318_78159,145,4318_573,The Quay,2995-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_574,The Quay,2797-00009-1,0,4318_7778009_6010801,4318_1 -4318_78159,137,4318_575,The Quay,2800-00010-1,0,4318_7778009_6010801,4318_1 -4318_78159,138,4318_576,The Quay,41-00011-1,0,4318_7778009_6010801,4318_1 -4318_78159,146,4318_577,The Quay,2996-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,139,4318_578,The Quay,2801-00014-1,0,4318_7778009_6010801,4318_1 -4318_78159,140,4318_579,The Quay,2799-00015-1,0,4318_7778009_6010801,4318_1 -4318_78159,140,4318_58,The Quay,3185-00015-1,0,4318_7778009_6010804,4318_1 -4318_78159,141,4318_580,The Quay,2798-00016-1,0,4318_7778009_6010801,4318_1 -4318_78159,143,4318_581,The Quay,2994-00017-1,0,4318_7778009_6010802,4318_1 -4318_78159,144,4318_582,The Quay,373-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_583,The Quay,18-00002-1,0,4318_7778009_6010801,4318_1 -4318_78159,132,4318_584,The Quay,61-00003-1,0,4318_7778009_6010801,4318_1 -4318_78159,133,4318_585,The Quay,85-00004-1,0,4318_7778009_6010801,4318_1 -4318_78159,134,4318_586,The Quay,109-00005-1,0,4318_7778009_6010801,4318_1 -4318_78159,135,4318_587,The Quay,133-00006-1,0,4318_7778009_6010801,4318_1 -4318_78159,142,4318_588,The Quay,348-00007-1,0,4318_7778009_6010802,4318_1 -4318_78159,145,4318_589,The Quay,3003-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,141,4318_59,The Quay,3184-00016-1,0,4318_7778009_6010804,4318_1 -4318_78159,136,4318_590,The Quay,2806-00009-1,0,4318_7778009_6010801,4318_1 -4318_78159,137,4318_591,The Quay,2809-00010-1,0,4318_7778009_6010801,4318_1 -4318_78159,138,4318_592,The Quay,42-00011-1,0,4318_7778009_6010801,4318_1 -4318_78159,146,4318_593,The Quay,3004-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,139,4318_594,The Quay,2808-00014-1,0,4318_7778009_6010801,4318_1 -4318_78159,140,4318_595,The Quay,2805-00015-1,0,4318_7778009_6010801,4318_1 -4318_78159,141,4318_596,The Quay,2807-00016-1,0,4318_7778009_6010801,4318_1 -4318_78159,143,4318_597,The Quay,3002-00017-1,0,4318_7778009_6010802,4318_1 -4318_78159,144,4318_598,The Quay,374-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_599,The Quay,19-00002-1,0,4318_7778009_6010801,4318_2 -4318_78159,136,4318_6,The Quay,2662-00009-1,0,4318_7778009_6010801,4318_1 -4318_78159,142,4318_60,The Quay,142-00007-1,0,4318_7778009_6010801,4318_1 -4318_78159,132,4318_600,The Quay,62-00003-1,0,4318_7778009_6010801,4318_2 -4318_78159,133,4318_601,The Quay,86-00004-1,0,4318_7778009_6010801,4318_2 -4318_78159,134,4318_602,The Quay,110-00005-1,0,4318_7778009_6010801,4318_2 -4318_78159,135,4318_603,The Quay,134-00006-1,0,4318_7778009_6010801,4318_2 -4318_78159,142,4318_604,The Quay,349-00007-1,0,4318_7778009_6010802,4318_3 -4318_78159,145,4318_605,The Quay,3011-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_606,The Quay,2816-00009-1,0,4318_7778009_6010801,4318_2 -4318_78159,137,4318_607,The Quay,2813-00010-1,0,4318_7778009_6010801,4318_2 -4318_78159,138,4318_608,The Quay,43-00011-1,0,4318_7778009_6010801,4318_2 -4318_78159,146,4318_609,The Quay,3012-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,143,4318_61,The Quay,2674-00017-1,0,4318_7778009_6010801,4318_1 -4318_78159,139,4318_610,The Quay,2814-00014-1,0,4318_7778009_6010801,4318_2 -4318_78159,140,4318_611,The Quay,2815-00015-1,0,4318_7778009_6010801,4318_2 -4318_78159,141,4318_612,The Quay,2817-00016-1,0,4318_7778009_6010801,4318_2 -4318_78159,143,4318_613,The Quay,3010-00017-1,0,4318_7778009_6010802,4318_3 -4318_78159,144,4318_614,The Quay,375-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_615,The Quay,20-00002-1,0,4318_7778009_6010801,4318_2 -4318_78159,132,4318_616,The Quay,63-00003-1,0,4318_7778009_6010801,4318_2 -4318_78159,133,4318_617,The Quay,87-00004-1,0,4318_7778009_6010801,4318_2 -4318_78159,134,4318_618,The Quay,111-00005-1,0,4318_7778009_6010801,4318_2 -4318_78159,135,4318_619,The Quay,135-00006-1,0,4318_7778009_6010801,4318_2 -4318_78159,131,4318_62,The Quay,3-00002-1,0,4318_7778009_6010801,4318_1 -4318_78159,142,4318_620,The Quay,350-00007-1,0,4318_7778009_6010802,4318_3 -4318_78159,145,4318_621,The Quay,3019-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_622,The Quay,2823-00009-1,0,4318_7778009_6010801,4318_2 -4318_78159,137,4318_623,The Quay,2821-00010-1,0,4318_7778009_6010801,4318_2 -4318_78159,146,4318_624,The Quay,3020-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,139,4318_625,The Quay,2825-00014-1,0,4318_7778009_6010801,4318_2 -4318_78159,140,4318_626,The Quay,2822-00015-1,0,4318_7778009_6010801,4318_2 -4318_78159,141,4318_627,The Quay,2824-00016-1,0,4318_7778009_6010801,4318_2 -4318_78159,143,4318_628,The Quay,3018-00017-1,0,4318_7778009_6010802,4318_3 -4318_78159,144,4318_629,The Quay,376-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,132,4318_63,The Quay,46-00003-1,0,4318_7778009_6010801,4318_1 -4318_78159,131,4318_630,The Quay,21-00002-1,0,4318_7778009_6010801,4318_2 -4318_78159,132,4318_631,The Quay,64-00003-1,0,4318_7778009_6010801,4318_2 -4318_78159,133,4318_632,The Quay,88-00004-1,0,4318_7778009_6010801,4318_2 -4318_78159,134,4318_633,The Quay,112-00005-1,0,4318_7778009_6010801,4318_2 -4318_78159,135,4318_634,The Quay,136-00006-1,0,4318_7778009_6010801,4318_2 -4318_78159,142,4318_635,The Quay,351-00007-1,0,4318_7778009_6010802,4318_2 -4318_78159,145,4318_636,The Quay,3027-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_637,The Quay,2831-00009-1,0,4318_7778009_6010801,4318_2 -4318_78159,137,4318_638,The Quay,2830-00010-1,0,4318_7778009_6010801,4318_2 -4318_78159,146,4318_639,The Quay,3028-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,133,4318_64,The Quay,70-00004-1,0,4318_7778009_6010801,4318_1 -4318_78159,139,4318_640,The Quay,2832-00014-1,0,4318_7778009_6010801,4318_2 -4318_78159,140,4318_641,The Quay,2833-00015-1,0,4318_7778009_6010801,4318_2 -4318_78159,141,4318_642,The Quay,2829-00016-1,0,4318_7778009_6010801,4318_2 -4318_78159,143,4318_643,The Quay,3026-00017-1,0,4318_7778009_6010802,4318_2 -4318_78159,144,4318_644,The Quay,377-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_645,The Quay,22-00002-1,0,4318_7778009_6010801,4318_2 -4318_78159,132,4318_646,The Quay,65-00003-1,0,4318_7778009_6010801,4318_2 -4318_78159,133,4318_647,The Quay,89-00004-1,0,4318_7778009_6010801,4318_2 -4318_78159,134,4318_648,The Quay,113-00005-1,0,4318_7778009_6010801,4318_2 -4318_78159,135,4318_649,The Quay,137-00006-1,0,4318_7778009_6010801,4318_2 -4318_78159,134,4318_65,The Quay,94-00005-1,0,4318_7778009_6010801,4318_1 -4318_78159,142,4318_650,The Quay,352-00007-1,0,4318_7778009_6010802,4318_2 -4318_78159,145,4318_651,The Quay,3034-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_652,The Quay,2837-00009-1,0,4318_7778009_6010801,4318_2 -4318_78159,137,4318_653,The Quay,2839-00010-1,0,4318_7778009_6010801,4318_2 -4318_78159,146,4318_654,The Quay,3035-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,139,4318_655,The Quay,2838-00014-1,0,4318_7778009_6010801,4318_2 -4318_78159,140,4318_656,The Quay,2841-00015-1,0,4318_7778009_6010801,4318_2 -4318_78159,141,4318_657,The Quay,2840-00016-1,0,4318_7778009_6010801,4318_2 -4318_78159,143,4318_658,The Quay,3036-00017-1,0,4318_7778009_6010802,4318_2 -4318_78159,144,4318_659,The Quay,378-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,135,4318_66,The Quay,118-00006-1,0,4318_7778009_6010801,4318_1 -4318_78159,131,4318_660,The Quay,23-00002-1,0,4318_7778009_6010801,4318_1 -4318_78159,132,4318_661,The Quay,66-00003-1,0,4318_7778009_6010801,4318_1 -4318_78159,133,4318_662,The Quay,90-00004-1,0,4318_7778009_6010801,4318_1 -4318_78159,134,4318_663,The Quay,114-00005-1,0,4318_7778009_6010801,4318_1 -4318_78159,135,4318_664,The Quay,138-00006-1,0,4318_7778009_6010801,4318_1 -4318_78159,142,4318_665,The Quay,353-00007-1,0,4318_7778009_6010802,4318_1 -4318_78159,145,4318_666,The Quay,3042-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_667,The Quay,2846-00009-1,0,4318_7778009_6010801,4318_1 -4318_78159,137,4318_668,The Quay,2849-00010-1,0,4318_7778009_6010801,4318_1 -4318_78159,146,4318_669,The Quay,3043-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_67,The Quay,2678-00009-1,0,4318_7778009_6010801,4318_1 -4318_78159,139,4318_670,The Quay,2848-00014-1,0,4318_7778009_6010801,4318_1 -4318_78159,140,4318_671,The Quay,2847-00015-1,0,4318_7778009_6010801,4318_1 -4318_78159,141,4318_672,The Quay,2845-00016-1,0,4318_7778009_6010801,4318_1 -4318_78159,143,4318_673,The Quay,3044-00017-1,0,4318_7778009_6010802,4318_1 -4318_78159,144,4318_674,The Quay,379-00001-1,0,4318_7778009_6010802,4318_1 -4318_78159,131,4318_675,The Quay,24-00002-1,0,4318_7778009_6010801,4318_1 -4318_78159,132,4318_676,The Quay,67-00003-1,0,4318_7778009_6010801,4318_1 -4318_78159,133,4318_677,The Quay,91-00004-1,0,4318_7778009_6010801,4318_1 -4318_78159,134,4318_678,The Quay,115-00005-1,0,4318_7778009_6010801,4318_1 -4318_78159,135,4318_679,The Quay,139-00006-1,0,4318_7778009_6010801,4318_1 -4318_78159,137,4318_68,The Quay,2675-00010-1,0,4318_7778009_6010801,4318_1 -4318_78159,142,4318_680,The Quay,354-00007-1,0,4318_7778009_6010802,4318_1 -4318_78159,145,4318_681,The Quay,3050-00008-1,0,4318_7778009_6010802,4318_1 -4318_78159,136,4318_682,The Quay,2854-00009-1,0,4318_7778009_6010801,4318_1 -4318_78159,137,4318_683,The Quay,2856-00010-1,0,4318_7778009_6010801,4318_1 -4318_78159,146,4318_684,The Quay,3051-00013-1,0,4318_7778009_6010802,4318_1 -4318_78159,139,4318_685,The Quay,2855-00014-1,0,4318_7778009_6010801,4318_1 -4318_78159,140,4318_686,The Quay,2853-00015-1,0,4318_7778009_6010801,4318_1 -4318_78159,141,4318_687,The Quay,2857-00016-1,0,4318_7778009_6010801,4318_1 -4318_78159,143,4318_688,The Quay,3052-00017-1,0,4318_7778009_6010802,4318_1 -4318_78161,131,4318_689,The Quay,191-00002-1,0,4318_7778009_6010802,4318_4 -4318_78159,138,4318_69,The Quay,27-00011-1,0,4318_7778009_6010801,4318_1 -4318_78161,132,4318_690,The Quay,215-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_691,The Quay,258-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_692,The Quay,282-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_693,The Quay,306-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,136,4318_694,The Quay,2858-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_695,The Quay,2860-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,138,4318_696,The Quay,239-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,139,4318_697,The Quay,2859-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_698,The Quay,2861-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_699,The Quay,2862-00016-1,0,4318_7778009_6010802,4318_4 -4318_78159,137,4318_7,The Quay,2663-00010-1,0,4318_7778009_6010801,4318_1 -4318_78159,139,4318_70,The Quay,2676-00014-1,0,4318_7778009_6010801,4318_1 -4318_78161,131,4318_700,The Quay,477-00002-1,0,4318_7778009_6010804,4318_4 -4318_78161,132,4318_701,The Quay,493-00003-1,0,4318_7778009_6010804,4318_4 -4318_78161,133,4318_702,The Quay,509-00004-1,0,4318_7778009_6010804,4318_4 -4318_78161,134,4318_703,The Quay,525-00005-1,0,4318_7778009_6010804,4318_4 -4318_78161,135,4318_704,The Quay,541-00006-1,0,4318_7778009_6010804,4318_4 -4318_78161,136,4318_705,The Quay,3174-00009-1,0,4318_7778009_6010804,4318_4 -4318_78161,137,4318_706,The Quay,3175-00010-1,0,4318_7778009_6010804,4318_4 -4318_78161,138,4318_707,The Quay,3176-00011-1,0,4318_7778009_6010804,4318_4 -4318_78161,139,4318_708,The Quay,3178-00014-1,0,4318_7778009_6010804,4318_4 -4318_78161,140,4318_709,The Quay,3177-00015-1,0,4318_7778009_6010804,4318_4 -4318_78159,140,4318_71,The Quay,2677-00015-1,0,4318_7778009_6010801,4318_1 -4318_78161,141,4318_710,The Quay,3179-00016-1,0,4318_7778009_6010804,4318_4 -4318_78161,142,4318_711,The Quay,330-00007-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_712,The Quay,2863-00017-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_713,The Quay,2-00002-1,0,4318_7778009_6010801,4318_4 -4318_78161,132,4318_714,The Quay,45-00003-1,0,4318_7778009_6010801,4318_4 -4318_78161,133,4318_715,The Quay,69-00004-1,0,4318_7778009_6010801,4318_4 -4318_78161,134,4318_716,The Quay,93-00005-1,0,4318_7778009_6010801,4318_4 -4318_78161,135,4318_717,The Quay,117-00006-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_718,The Quay,2670-00009-1,0,4318_7778009_6010801,4318_4 -4318_78161,137,4318_719,The Quay,2669-00010-1,0,4318_7778009_6010801,4318_4 -4318_78159,141,4318_72,The Quay,2679-00016-1,0,4318_7778009_6010801,4318_1 -4318_78161,138,4318_720,The Quay,26-00011-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_721,The Quay,2668-00014-1,0,4318_7778009_6010801,4318_4 -4318_78161,140,4318_722,The Quay,2671-00015-1,0,4318_7778009_6010801,4318_4 -4318_78161,141,4318_723,The Quay,2672-00016-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_724,The Quay,381-00002-1,0,4318_7778009_6010803,4318_4 -4318_78161,132,4318_725,The Quay,396-00003-1,0,4318_7778009_6010803,4318_4 -4318_78161,133,4318_726,The Quay,411-00004-1,0,4318_7778009_6010803,4318_4 -4318_78161,134,4318_727,The Quay,426-00005-1,0,4318_7778009_6010803,4318_4 -4318_78161,135,4318_728,The Quay,441-00006-1,0,4318_7778009_6010803,4318_4 -4318_78161,136,4318_729,The Quay,3060-00009-1,0,4318_7778009_6010803,4318_4 -4318_78159,131,4318_73,The Quay,382-00002-1,0,4318_7778009_6010803,4318_1 -4318_78161,137,4318_730,The Quay,3061-00010-1,0,4318_7778009_6010803,4318_4 -4318_78161,138,4318_731,The Quay,3062-00011-1,0,4318_7778009_6010803,4318_4 -4318_78161,139,4318_732,The Quay,3059-00014-1,0,4318_7778009_6010803,4318_4 -4318_78161,140,4318_733,The Quay,3063-00015-1,0,4318_7778009_6010803,4318_4 -4318_78161,141,4318_734,The Quay,3064-00016-1,0,4318_7778009_6010803,4318_4 -4318_78161,142,4318_735,The Quay,331-00007-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_736,The Quay,2869-00017-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_737,The Quay,569-00002-1,0,4318_7778009_6010805,4318_4 -4318_78161,132,4318_738,The Quay,583-00003-1,0,4318_7778009_6010805,4318_4 -4318_78161,133,4318_739,The Quay,597-00004-1,0,4318_7778009_6010805,4318_4 -4318_78159,132,4318_74,The Quay,397-00003-1,0,4318_7778009_6010803,4318_1 -4318_78161,134,4318_740,The Quay,611-00005-1,0,4318_7778009_6010805,4318_4 -4318_78161,135,4318_741,The Quay,625-00006-1,0,4318_7778009_6010805,4318_4 -4318_78161,136,4318_742,The Quay,3288-00009-1,0,4318_7778009_6010805,4318_4 -4318_78161,137,4318_743,The Quay,3290-00010-1,0,4318_7778009_6010805,4318_4 -4318_78161,138,4318_744,The Quay,3291-00011-1,0,4318_7778009_6010805,4318_4 -4318_78161,139,4318_745,The Quay,3287-00014-1,0,4318_7778009_6010805,4318_4 -4318_78161,140,4318_746,The Quay,3289-00015-1,0,4318_7778009_6010805,4318_4 -4318_78161,141,4318_747,The Quay,3292-00016-1,0,4318_7778009_6010805,4318_4 -4318_78161,142,4318_748,The Quay,332-00007-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_749,The Quay,2870-00017-1,0,4318_7778009_6010802,4318_4 -4318_78159,133,4318_75,The Quay,412-00004-1,0,4318_7778009_6010803,4318_1 -4318_78161,131,4318_750,The Quay,193-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_751,The Quay,217-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_752,The Quay,260-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_753,The Quay,284-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_754,The Quay,308-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,136,4318_755,The Quay,2875-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_756,The Quay,2871-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,138,4318_757,The Quay,241-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,139,4318_758,The Quay,2874-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_759,The Quay,2873-00015-1,0,4318_7778009_6010802,4318_4 -4318_78159,134,4318_76,The Quay,427-00005-1,0,4318_7778009_6010803,4318_1 -4318_78161,141,4318_760,The Quay,2872-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_761,The Quay,479-00002-1,0,4318_7778009_6010804,4318_4 -4318_78161,132,4318_762,The Quay,495-00003-1,0,4318_7778009_6010804,4318_4 -4318_78161,133,4318_763,The Quay,511-00004-1,0,4318_7778009_6010804,4318_4 -4318_78161,134,4318_764,The Quay,527-00005-1,0,4318_7778009_6010804,4318_4 -4318_78161,135,4318_765,The Quay,543-00006-1,0,4318_7778009_6010804,4318_4 -4318_78161,136,4318_766,The Quay,3191-00009-1,0,4318_7778009_6010804,4318_4 -4318_78161,137,4318_767,The Quay,3188-00010-1,0,4318_7778009_6010804,4318_4 -4318_78161,138,4318_768,The Quay,3189-00011-1,0,4318_7778009_6010804,4318_4 -4318_78161,139,4318_769,The Quay,3186-00014-1,0,4318_7778009_6010804,4318_4 -4318_78159,135,4318_77,The Quay,442-00006-1,0,4318_7778009_6010803,4318_1 -4318_78161,140,4318_770,The Quay,3190-00015-1,0,4318_7778009_6010804,4318_4 -4318_78161,141,4318_771,The Quay,3187-00016-1,0,4318_7778009_6010804,4318_4 -4318_78161,142,4318_772,The Quay,333-00007-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_773,The Quay,2876-00017-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_774,The Quay,4-00002-1,0,4318_7778009_6010801,4318_4 -4318_78161,132,4318_775,The Quay,47-00003-1,0,4318_7778009_6010801,4318_4 -4318_78161,133,4318_776,The Quay,71-00004-1,0,4318_7778009_6010801,4318_4 -4318_78161,134,4318_777,The Quay,95-00005-1,0,4318_7778009_6010801,4318_4 -4318_78161,135,4318_778,The Quay,119-00006-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_779,The Quay,2688-00009-1,0,4318_7778009_6010801,4318_4 -4318_78159,142,4318_78,The Quay,143-00007-1,0,4318_7778009_6010801,4318_2 -4318_78161,137,4318_780,The Quay,2685-00010-1,0,4318_7778009_6010801,4318_4 -4318_78161,138,4318_781,The Quay,28-00011-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_782,The Quay,2682-00014-1,0,4318_7778009_6010801,4318_4 -4318_78161,140,4318_783,The Quay,2684-00015-1,0,4318_7778009_6010801,4318_4 -4318_78161,141,4318_784,The Quay,2683-00016-1,0,4318_7778009_6010801,4318_4 -4318_78161,144,4318_785,The Quay,355-00001-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_786,The Quay,334-00007-1,0,4318_7778009_6010802,4318_5 -4318_78161,145,4318_787,The Quay,2883-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_788,The Quay,2884-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_789,The Quay,2882-00017-1,0,4318_7778009_6010802,4318_5 -4318_78159,136,4318_79,The Quay,3070-00009-1,0,4318_7778009_6010803,4318_1 -4318_78161,131,4318_790,The Quay,383-00002-1,0,4318_7778009_6010803,4318_4 -4318_78161,132,4318_791,The Quay,398-00003-1,0,4318_7778009_6010803,4318_4 -4318_78161,133,4318_792,The Quay,413-00004-1,0,4318_7778009_6010803,4318_4 -4318_78161,134,4318_793,The Quay,428-00005-1,0,4318_7778009_6010803,4318_4 -4318_78161,135,4318_794,The Quay,443-00006-1,0,4318_7778009_6010803,4318_4 -4318_78161,136,4318_795,The Quay,3071-00009-1,0,4318_7778009_6010803,4318_4 -4318_78161,137,4318_796,The Quay,3075-00010-1,0,4318_7778009_6010803,4318_4 -4318_78161,138,4318_797,The Quay,3076-00011-1,0,4318_7778009_6010803,4318_4 -4318_78161,139,4318_798,The Quay,3074-00014-1,0,4318_7778009_6010803,4318_4 -4318_78161,140,4318_799,The Quay,3072-00015-1,0,4318_7778009_6010803,4318_4 -4318_78159,138,4318_8,The Quay,25-00011-1,0,4318_7778009_6010801,4318_1 -4318_78159,137,4318_80,The Quay,3067-00010-1,0,4318_7778009_6010803,4318_1 -4318_78161,141,4318_800,The Quay,3073-00016-1,0,4318_7778009_6010803,4318_4 -4318_78161,131,4318_801,The Quay,571-00002-1,0,4318_7778009_6010805,4318_4 -4318_78161,132,4318_802,The Quay,585-00003-1,0,4318_7778009_6010805,4318_4 -4318_78161,133,4318_803,The Quay,599-00004-1,0,4318_7778009_6010805,4318_4 -4318_78161,134,4318_804,The Quay,613-00005-1,0,4318_7778009_6010805,4318_4 -4318_78161,135,4318_805,The Quay,627-00006-1,0,4318_7778009_6010805,4318_4 -4318_78161,142,4318_806,The Quay,145-00007-1,0,4318_7778009_6010801,4318_5 -4318_78161,136,4318_807,The Quay,3304-00009-1,0,4318_7778009_6010805,4318_4 -4318_78161,137,4318_808,The Quay,3301-00010-1,0,4318_7778009_6010805,4318_4 -4318_78161,138,4318_809,The Quay,3302-00011-1,0,4318_7778009_6010805,4318_4 -4318_78159,138,4318_81,The Quay,3068-00011-1,0,4318_7778009_6010803,4318_1 -4318_78161,139,4318_810,The Quay,3300-00014-1,0,4318_7778009_6010805,4318_4 -4318_78161,140,4318_811,The Quay,3299-00015-1,0,4318_7778009_6010805,4318_4 -4318_78161,141,4318_812,The Quay,3303-00016-1,0,4318_7778009_6010805,4318_4 -4318_78161,143,4318_813,The Quay,2691-00017-1,0,4318_7778009_6010801,4318_5 -4318_78161,144,4318_814,The Quay,356-00001-1,0,4318_7778009_6010802,4318_4 -4318_78161,145,4318_815,The Quay,2885-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_816,The Quay,2886-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_817,The Quay,195-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_818,The Quay,219-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_819,The Quay,262-00004-1,0,4318_7778009_6010802,4318_4 -4318_78159,139,4318_82,The Quay,3065-00014-1,0,4318_7778009_6010803,4318_1 -4318_78161,134,4318_820,The Quay,286-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_821,The Quay,310-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_822,The Quay,557-00007-1,0,4318_7778009_6010804,4318_5 -4318_78161,136,4318_823,The Quay,2888-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_824,The Quay,2889-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,138,4318_825,The Quay,243-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,139,4318_826,The Quay,2890-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_827,The Quay,2892-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_828,The Quay,2891-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_829,The Quay,3198-00017-1,0,4318_7778009_6010804,4318_5 -4318_78159,140,4318_83,The Quay,3066-00015-1,0,4318_7778009_6010803,4318_1 -4318_78161,144,4318_830,The Quay,357-00001-1,0,4318_7778009_6010802,4318_4 -4318_78161,145,4318_831,The Quay,2893-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_832,The Quay,2894-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_833,The Quay,481-00002-1,0,4318_7778009_6010804,4318_4 -4318_78161,132,4318_834,The Quay,497-00003-1,0,4318_7778009_6010804,4318_4 -4318_78161,133,4318_835,The Quay,513-00004-1,0,4318_7778009_6010804,4318_4 -4318_78161,134,4318_836,The Quay,529-00005-1,0,4318_7778009_6010804,4318_4 -4318_78161,135,4318_837,The Quay,545-00006-1,0,4318_7778009_6010804,4318_4 -4318_78161,142,4318_838,The Quay,456-00007-1,0,4318_7778009_6010803,4318_5 -4318_78161,136,4318_839,The Quay,3200-00009-1,0,4318_7778009_6010804,4318_4 -4318_78159,141,4318_84,The Quay,3069-00016-1,0,4318_7778009_6010803,4318_1 -4318_78161,137,4318_840,The Quay,3203-00010-1,0,4318_7778009_6010804,4318_4 -4318_78161,138,4318_841,The Quay,3204-00011-1,0,4318_7778009_6010804,4318_4 -4318_78161,139,4318_842,The Quay,3202-00014-1,0,4318_7778009_6010804,4318_4 -4318_78161,140,4318_843,The Quay,3199-00015-1,0,4318_7778009_6010804,4318_4 -4318_78161,141,4318_844,The Quay,3201-00016-1,0,4318_7778009_6010804,4318_4 -4318_78161,143,4318_845,The Quay,3084-00017-1,0,4318_7778009_6010803,4318_5 -4318_78161,131,4318_846,The Quay,6-00002-1,0,4318_7778009_6010801,4318_4 -4318_78161,132,4318_847,The Quay,49-00003-1,0,4318_7778009_6010801,4318_4 -4318_78161,133,4318_848,The Quay,73-00004-1,0,4318_7778009_6010801,4318_4 -4318_78161,134,4318_849,The Quay,97-00005-1,0,4318_7778009_6010801,4318_4 -4318_78159,143,4318_85,The Quay,2680-00017-1,0,4318_7778009_6010801,4318_2 -4318_78161,135,4318_850,The Quay,121-00006-1,0,4318_7778009_6010801,4318_4 -4318_78161,142,4318_851,The Quay,336-00007-1,0,4318_7778009_6010802,4318_5 -4318_78161,136,4318_852,The Quay,2705-00009-1,0,4318_7778009_6010801,4318_4 -4318_78161,137,4318_853,The Quay,2704-00010-1,0,4318_7778009_6010801,4318_4 -4318_78161,138,4318_854,The Quay,30-00011-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_855,The Quay,2703-00014-1,0,4318_7778009_6010801,4318_4 -4318_78161,140,4318_856,The Quay,2702-00015-1,0,4318_7778009_6010801,4318_4 -4318_78161,141,4318_857,The Quay,2706-00016-1,0,4318_7778009_6010801,4318_4 -4318_78161,143,4318_858,The Quay,2895-00017-1,0,4318_7778009_6010802,4318_5 -4318_78161,144,4318_859,The Quay,358-00001-1,0,4318_7778009_6010802,4318_4 -4318_78159,131,4318_86,The Quay,570-00002-1,0,4318_7778009_6010805,4318_1 -4318_78161,145,4318_860,The Quay,2896-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_861,The Quay,2897-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_862,The Quay,385-00002-1,0,4318_7778009_6010803,4318_4 -4318_78161,132,4318_863,The Quay,400-00003-1,0,4318_7778009_6010803,4318_4 -4318_78161,133,4318_864,The Quay,415-00004-1,0,4318_7778009_6010803,4318_4 -4318_78161,134,4318_865,The Quay,430-00005-1,0,4318_7778009_6010803,4318_4 -4318_78161,135,4318_866,The Quay,445-00006-1,0,4318_7778009_6010803,4318_4 -4318_78161,142,4318_867,The Quay,147-00007-1,0,4318_7778009_6010801,4318_5 -4318_78161,136,4318_868,The Quay,3086-00009-1,0,4318_7778009_6010803,4318_4 -4318_78161,137,4318_869,The Quay,3087-00010-1,0,4318_7778009_6010803,4318_4 -4318_78159,132,4318_87,The Quay,584-00003-1,0,4318_7778009_6010805,4318_1 -4318_78161,138,4318_870,The Quay,3088-00011-1,0,4318_7778009_6010803,4318_4 -4318_78161,139,4318_871,The Quay,3090-00014-1,0,4318_7778009_6010803,4318_4 -4318_78161,140,4318_872,The Quay,3085-00015-1,0,4318_7778009_6010803,4318_4 -4318_78161,141,4318_873,The Quay,3089-00016-1,0,4318_7778009_6010803,4318_4 -4318_78161,143,4318_874,The Quay,2707-00017-1,0,4318_7778009_6010801,4318_5 -4318_78161,144,4318_875,The Quay,359-00001-1,0,4318_7778009_6010802,4318_4 -4318_78161,145,4318_876,The Quay,2903-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_877,The Quay,2904-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_878,The Quay,573-00002-1,0,4318_7778009_6010805,4318_4 -4318_78161,132,4318_879,The Quay,587-00003-1,0,4318_7778009_6010805,4318_4 -4318_78159,133,4318_88,The Quay,598-00004-1,0,4318_7778009_6010805,4318_1 -4318_78161,133,4318_880,The Quay,601-00004-1,0,4318_7778009_6010805,4318_4 -4318_78161,134,4318_881,The Quay,615-00005-1,0,4318_7778009_6010805,4318_4 -4318_78161,135,4318_882,The Quay,629-00006-1,0,4318_7778009_6010805,4318_4 -4318_78161,142,4318_883,The Quay,639-00007-1,0,4318_7778009_6010805,4318_5 -4318_78161,136,4318_884,The Quay,3316-00009-1,0,4318_7778009_6010805,4318_4 -4318_78161,137,4318_885,The Quay,3312-00010-1,0,4318_7778009_6010805,4318_4 -4318_78161,138,4318_886,The Quay,3313-00011-1,0,4318_7778009_6010805,4318_4 -4318_78161,139,4318_887,The Quay,3314-00014-1,0,4318_7778009_6010805,4318_4 -4318_78161,140,4318_888,The Quay,3317-00015-1,0,4318_7778009_6010805,4318_4 -4318_78161,141,4318_889,The Quay,3318-00016-1,0,4318_7778009_6010805,4318_4 -4318_78159,134,4318_89,The Quay,612-00005-1,0,4318_7778009_6010805,4318_1 -4318_78161,143,4318_890,The Quay,3315-00017-1,0,4318_7778009_6010805,4318_5 -4318_78161,131,4318_891,The Quay,197-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_892,The Quay,221-00003-1,0,4318_7778009_6010802,4318_4 -4318_78161,133,4318_893,The Quay,264-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_894,The Quay,288-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_895,The Quay,312-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_896,The Quay,559-00007-1,0,4318_7778009_6010804,4318_4 -4318_78161,136,4318_897,The Quay,2907-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_898,The Quay,2906-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,138,4318_899,The Quay,245-00011-1,0,4318_7778009_6010802,4318_4 -4318_78159,139,4318_9,The Quay,2666-00014-1,0,4318_7778009_6010801,4318_1 -4318_78159,135,4318_90,The Quay,626-00006-1,0,4318_7778009_6010805,4318_1 -4318_78161,139,4318_900,The Quay,2908-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_901,The Quay,2909-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_902,The Quay,2910-00016-1,0,4318_7778009_6010802,4318_4 -4318_78161,143,4318_903,The Quay,3212-00017-1,0,4318_7778009_6010804,4318_4 -4318_78161,144,4318_904,The Quay,360-00001-1,0,4318_7778009_6010802,4318_4 -4318_78161,145,4318_905,The Quay,2911-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_906,The Quay,2912-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_907,The Quay,483-00002-1,0,4318_7778009_6010804,4318_4 -4318_78161,132,4318_908,The Quay,499-00003-1,0,4318_7778009_6010804,4318_4 -4318_78161,133,4318_909,The Quay,515-00004-1,0,4318_7778009_6010804,4318_4 -4318_78159,136,4318_91,The Quay,3297-00009-1,0,4318_7778009_6010805,4318_1 -4318_78161,134,4318_910,The Quay,531-00005-1,0,4318_7778009_6010804,4318_4 -4318_78161,135,4318_911,The Quay,547-00006-1,0,4318_7778009_6010804,4318_4 -4318_78161,142,4318_912,The Quay,458-00007-1,0,4318_7778009_6010803,4318_4 -4318_78161,136,4318_913,The Quay,3213-00009-1,0,4318_7778009_6010804,4318_4 -4318_78161,137,4318_914,The Quay,3215-00010-1,0,4318_7778009_6010804,4318_4 -4318_78161,138,4318_915,The Quay,3216-00011-1,0,4318_7778009_6010804,4318_4 -4318_78161,139,4318_916,The Quay,3217-00014-1,0,4318_7778009_6010804,4318_4 -4318_78161,140,4318_917,The Quay,3214-00015-1,0,4318_7778009_6010804,4318_4 -4318_78161,141,4318_918,The Quay,3218-00016-1,0,4318_7778009_6010804,4318_4 -4318_78161,143,4318_919,The Quay,3098-00017-1,0,4318_7778009_6010803,4318_4 -4318_78159,137,4318_92,The Quay,3293-00010-1,0,4318_7778009_6010805,4318_1 -4318_78161,144,4318_920,The Quay,361-00001-1,0,4318_7778009_6010802,4318_4 -4318_78161,145,4318_921,The Quay,2913-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_922,The Quay,2914-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_923,The Quay,8-00002-1,0,4318_7778009_6010801,4318_4 -4318_78161,132,4318_924,The Quay,51-00003-1,0,4318_7778009_6010801,4318_4 -4318_78161,133,4318_925,The Quay,75-00004-1,0,4318_7778009_6010801,4318_4 -4318_78161,134,4318_926,The Quay,99-00005-1,0,4318_7778009_6010801,4318_4 -4318_78161,135,4318_927,The Quay,123-00006-1,0,4318_7778009_6010801,4318_4 -4318_78161,142,4318_928,The Quay,338-00007-1,0,4318_7778009_6010802,4318_4 -4318_78161,136,4318_929,The Quay,2722-00009-1,0,4318_7778009_6010801,4318_4 -4318_78159,138,4318_93,The Quay,3294-00011-1,0,4318_7778009_6010805,4318_1 -4318_78161,137,4318_930,The Quay,2721-00010-1,0,4318_7778009_6010801,4318_4 -4318_78161,138,4318_931,The Quay,32-00011-1,0,4318_7778009_6010801,4318_4 -4318_78161,139,4318_932,The Quay,2720-00014-1,0,4318_7778009_6010801,4318_4 -4318_78161,140,4318_933,The Quay,2723-00015-1,0,4318_7778009_6010801,4318_4 -4318_78161,141,4318_934,The Quay,2724-00016-1,0,4318_7778009_6010801,4318_4 -4318_78161,143,4318_935,The Quay,2915-00017-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_936,The Quay,387-00002-1,0,4318_7778009_6010803,4318_4 -4318_78161,132,4318_937,The Quay,402-00003-1,0,4318_7778009_6010803,4318_4 -4318_78161,133,4318_938,The Quay,417-00004-1,0,4318_7778009_6010803,4318_4 -4318_78161,134,4318_939,The Quay,432-00005-1,0,4318_7778009_6010803,4318_4 -4318_78159,139,4318_94,The Quay,3298-00014-1,0,4318_7778009_6010805,4318_1 -4318_78161,135,4318_940,The Quay,447-00006-1,0,4318_7778009_6010803,4318_4 -4318_78161,142,4318_941,The Quay,149-00007-1,0,4318_7778009_6010801,4318_4 -4318_78161,136,4318_942,The Quay,3101-00009-1,0,4318_7778009_6010803,4318_4 -4318_78161,137,4318_943,The Quay,3105-00010-1,0,4318_7778009_6010803,4318_4 -4318_78161,138,4318_944,The Quay,3106-00011-1,0,4318_7778009_6010803,4318_4 -4318_78161,139,4318_945,The Quay,3103-00014-1,0,4318_7778009_6010803,4318_4 -4318_78161,140,4318_946,The Quay,3104-00015-1,0,4318_7778009_6010803,4318_4 -4318_78161,141,4318_947,The Quay,3102-00016-1,0,4318_7778009_6010803,4318_4 -4318_78161,143,4318_948,The Quay,2725-00017-1,0,4318_7778009_6010801,4318_4 -4318_78161,144,4318_949,The Quay,173-00001-1,0,4318_7778009_6010801,4318_4 -4318_78159,140,4318_95,The Quay,3296-00015-1,0,4318_7778009_6010805,4318_1 -4318_78161,145,4318_950,The Quay,2726-00008-1,0,4318_7778009_6010801,4318_4 -4318_78161,146,4318_951,The Quay,2727-00013-1,0,4318_7778009_6010801,4318_4 -4318_78161,131,4318_952,The Quay,575-00002-1,0,4318_7778009_6010805,4318_4 -4318_78161,132,4318_953,The Quay,589-00003-1,0,4318_7778009_6010805,4318_4 -4318_78161,133,4318_954,The Quay,603-00004-1,0,4318_7778009_6010805,4318_4 -4318_78161,134,4318_955,The Quay,617-00005-1,0,4318_7778009_6010805,4318_4 -4318_78161,135,4318_956,The Quay,631-00006-1,0,4318_7778009_6010805,4318_4 -4318_78161,142,4318_957,The Quay,641-00007-1,0,4318_7778009_6010805,4318_5 -4318_78161,136,4318_958,The Quay,3326-00009-1,0,4318_7778009_6010805,4318_4 -4318_78161,137,4318_959,The Quay,3328-00010-1,0,4318_7778009_6010805,4318_4 -4318_78159,141,4318_96,The Quay,3295-00016-1,0,4318_7778009_6010805,4318_1 -4318_78161,138,4318_960,The Quay,3329-00011-1,0,4318_7778009_6010805,4318_4 -4318_78161,139,4318_961,The Quay,3327-00014-1,0,4318_7778009_6010805,4318_4 -4318_78161,140,4318_962,The Quay,3332-00015-1,0,4318_7778009_6010805,4318_4 -4318_78161,141,4318_963,The Quay,3331-00016-1,0,4318_7778009_6010805,4318_4 -4318_78161,143,4318_964,The Quay,3330-00017-1,0,4318_7778009_6010805,4318_5 -4318_78161,144,4318_965,The Quay,469-00001-1,0,4318_7778009_6010803,4318_4 -4318_78161,145,4318_966,The Quay,3108-00008-1,0,4318_7778009_6010803,4318_4 -4318_78161,146,4318_967,The Quay,3109-00013-1,0,4318_7778009_6010803,4318_4 -4318_78161,131,4318_968,The Quay,199-00002-1,0,4318_7778009_6010802,4318_4 -4318_78161,132,4318_969,The Quay,223-00003-1,0,4318_7778009_6010802,4318_4 -4318_78159,144,4318_97,The Quay,166-00001-1,0,4318_7778009_6010801,4318_1 -4318_78161,133,4318_970,The Quay,266-00004-1,0,4318_7778009_6010802,4318_4 -4318_78161,134,4318_971,The Quay,290-00005-1,0,4318_7778009_6010802,4318_4 -4318_78161,135,4318_972,The Quay,314-00006-1,0,4318_7778009_6010802,4318_4 -4318_78161,142,4318_973,The Quay,561-00007-1,0,4318_7778009_6010804,4318_5 -4318_78161,136,4318_974,The Quay,2924-00009-1,0,4318_7778009_6010802,4318_4 -4318_78161,137,4318_975,The Quay,2927-00010-1,0,4318_7778009_6010802,4318_4 -4318_78161,138,4318_976,The Quay,247-00011-1,0,4318_7778009_6010802,4318_4 -4318_78161,139,4318_977,The Quay,2926-00014-1,0,4318_7778009_6010802,4318_4 -4318_78161,140,4318_978,The Quay,2925-00015-1,0,4318_7778009_6010802,4318_4 -4318_78161,141,4318_979,The Quay,2928-00016-1,0,4318_7778009_6010802,4318_4 -4318_78159,142,4318_98,The Quay,144-00007-1,0,4318_7778009_6010801,4318_2 -4318_78161,143,4318_980,The Quay,3226-00017-1,0,4318_7778009_6010804,4318_5 -4318_78161,131,4318_981,The Quay,485-00002-1,0,4318_7778009_6010804,4318_4 -4318_78161,132,4318_982,The Quay,501-00003-1,0,4318_7778009_6010804,4318_4 -4318_78161,133,4318_983,The Quay,517-00004-1,0,4318_7778009_6010804,4318_4 -4318_78161,134,4318_984,The Quay,533-00005-1,0,4318_7778009_6010804,4318_4 -4318_78161,135,4318_985,The Quay,549-00006-1,0,4318_7778009_6010804,4318_4 -4318_78161,142,4318_986,The Quay,460-00007-1,0,4318_7778009_6010803,4318_5 -4318_78161,136,4318_987,The Quay,3227-00009-1,0,4318_7778009_6010804,4318_4 -4318_78161,137,4318_988,The Quay,3230-00010-1,0,4318_7778009_6010804,4318_4 -4318_78161,138,4318_989,The Quay,3231-00011-1,0,4318_7778009_6010804,4318_4 -4318_78159,145,4318_99,The Quay,2686-00008-1,0,4318_7778009_6010801,4318_1 -4318_78161,139,4318_990,The Quay,3228-00014-1,0,4318_7778009_6010804,4318_4 -4318_78161,140,4318_991,The Quay,3232-00015-1,0,4318_7778009_6010804,4318_4 -4318_78161,141,4318_992,The Quay,3229-00016-1,0,4318_7778009_6010804,4318_4 -4318_78161,143,4318_993,The Quay,3116-00017-1,0,4318_7778009_6010803,4318_5 -4318_78161,144,4318_994,The Quay,363-00001-1,0,4318_7778009_6010802,4318_4 -4318_78161,145,4318_995,The Quay,2929-00008-1,0,4318_7778009_6010802,4318_4 -4318_78161,146,4318_996,The Quay,2930-00013-1,0,4318_7778009_6010802,4318_4 -4318_78161,131,4318_997,The Quay,10-00002-1,0,4318_7778009_6010801,4318_4 -4318_78161,132,4318_998,The Quay,53-00003-1,0,4318_7778009_6010801,4318_4 -4318_78161,133,4318_999,The Quay,77-00004-1,0,4318_7778009_6010801,4318_4 -4358_80760,205,4358_1,Shaw street,1813,0,4358_7778195_9001001,4358_1 -4358_80760,205,4358_10,Shaw street,1861,0,4358_7778195_9001009,4358_1 -4358_80760,96,4358_100,Shaw street,9460,0,4358_7778195_9001003,4358_1 -4358_80756,205,4358_1000,Ashington,3627,1,4358_7778195_7122021,4358_33 -4358_80711,205,4358_10000,Abbey St,2645,1,4358_7778195_5041001,4358_323 -4358_80711,96,4358_10002,Abbey St,10256,1,4358_7778195_5041002,4358_325 -4358_80711,205,4358_10003,Abbey St,2481,1,4358_7778195_5041005,4358_323 -4358_80711,205,4358_10004,Abbey St,2659,1,4358_7778195_5041003,4358_323 -4358_80711,96,4358_10005,Abbey St,9964,1,4358_7778195_5041003,4358_323 -4358_80711,205,4358_10007,Abbey St,2764,1,4358_7778195_5041009,4358_323 -4358_80711,205,4358_10008,Abbey St,2614,1,4358_7778195_5041007,4358_323 -4358_80711,96,4358_10009,Abbey St,10052,1,4358_7778195_5041004,4358_323 -4358_80756,96,4358_1001,Ashington,13153,1,4358_7778195_7122006,4358_33 -4358_80711,205,4358_10011,Abbey St,2472,1,4358_7778195_5041013,4358_325 -4358_80711,205,4358_10012,Abbey St,2631,1,4358_7778195_5041010,4358_323 -4358_80711,205,4358_10014,Abbey St,2690,1,4358_7778195_5041017,4358_323 -4358_80711,96,4358_10015,Abbey St,10173,1,4358_7778195_5041001,4358_323 -4358_80711,205,4358_10016,Abbey St,2430,1,4358_7778195_5041018,4358_323 -4358_80711,96,4358_10018,Abbey St,10146,1,4358_7778195_5041007,4358_323 -4358_80711,205,4358_10019,Abbey St,2372,1,4358_7778195_5041019,4358_323 -4358_80756,205,4358_1002,Ashington,3444,1,4358_7778195_7122006,4358_33 -4358_80711,205,4358_10021,Abbey St,2647,1,4358_7778195_5041001,4358_323 -4358_80711,96,4358_10022,Abbey St,9966,1,4358_7778195_5041003,4358_323 -4358_80711,205,4358_10024,Abbey St,2661,1,4358_7778195_5041003,4358_323 -4358_80711,96,4358_10025,Abbey St,10054,1,4358_7778195_5041004,4358_323 -4358_80711,205,4358_10026,Abbey St,2766,1,4358_7778195_5041009,4358_323 -4358_80711,205,4358_10028,Abbey St,2486,1,4358_7778195_5041011,4358_323 -4358_80711,96,4358_10029,Abbey St,10175,1,4358_7778195_5041001,4358_324 -4358_80711,205,4358_10031,Abbey St,2560,1,4358_7778195_5041015,4358_323 -4358_80711,96,4358_10032,Abbey St,10268,1,4358_7778195_5041008,4358_323 -4358_80711,205,4358_10033,Abbey St,2692,1,4358_7778195_5041017,4358_323 -4358_80711,96,4358_10035,Abbey St,10148,1,4358_7778195_5041007,4358_323 -4358_80711,205,4358_10036,Abbey St,2432,1,4358_7778195_5041018,4358_323 -4358_80711,96,4358_10037,Abbey St,10184,1,4358_7778195_5041011,4358_323 -4358_80711,205,4358_10039,Abbey St,2374,1,4358_7778195_5041019,4358_323 -4358_80756,205,4358_1004,Ashington,3603,1,4358_7778195_7122008,4358_33 -4358_80711,96,4358_10040,Abbey St,10122,1,4358_7778195_5041009,4358_323 -4358_80711,205,4358_10041,Abbey St,2649,1,4358_7778195_5041001,4358_323 -4358_80711,96,4358_10043,Abbey St,10056,1,4358_7778195_5041004,4358_323 -4358_80711,205,4358_10044,Abbey St,2663,1,4358_7778195_5041003,4358_323 -4358_80711,96,4358_10045,Abbey St,10029,1,4358_7778195_5041006,4358_323 -4358_80711,205,4358_10047,Abbey St,2439,1,4358_7778195_5041021,4358_323 -4358_80711,96,4358_10048,Abbey St,10282,1,4358_7778195_5041016,4358_323 -4358_80711,205,4358_10049,Abbey St,2488,1,4358_7778195_5041011,4358_323 -4358_80756,96,4358_1005,Ashington,13177,1,4358_7778195_7122009,4358_33 -4358_80711,96,4358_10051,Abbey St,10167,1,4358_7778195_5041010,4358_323 -4358_80711,205,4358_10052,Abbey St,2673,1,4358_7778195_5041022,4358_323 -4358_80711,96,4358_10053,Abbey St,9956,1,4358_7778195_5041012,4358_323 -4358_80711,205,4358_10055,Abbey St,2737,1,4358_7778195_5041024,4358_323 -4358_80711,96,4358_10056,Abbey St,10262,1,4358_7778195_5041002,4358_323 -4358_80711,205,4358_10057,Abbey St,2332,1,4358_7778195_5041014,4358_323 -4358_80711,96,4358_10059,Abbey St,9970,1,4358_7778195_5041003,4358_323 -4358_80711,205,4358_10060,Abbey St,2376,1,4358_7778195_5041019,4358_323 -4358_80711,96,4358_10061,Abbey St,10124,1,4358_7778195_5041009,4358_323 -4358_80711,205,4358_10063,Abbey St,2651,1,4358_7778195_5041001,4358_323 -4358_80711,96,4358_10064,Abbey St,10299,1,4358_7778195_5041018,4358_323 -4358_80711,205,4358_10065,Abbey St,2665,1,4358_7778195_5041003,4358_323 -4358_80711,96,4358_10067,Abbey St,10246,1,4358_7778195_5041005,4358_323 -4358_80711,205,4358_10068,Abbey St,2441,1,4358_7778195_5041021,4358_323 -4358_80711,96,4358_10069,Abbey St,10284,1,4358_7778195_5041016,4358_323 -4358_80756,205,4358_1007,Ashington,3561,1,4358_7778195_7122017,4358_35 -4358_80711,205,4358_10071,Abbey St,2490,1,4358_7778195_5041011,4358_323 -4358_80711,96,4358_10072,Abbey St,10142,1,4358_7778195_5041020,4358_323 -4358_80711,205,4358_10073,Abbey St,2675,1,4358_7778195_5041022,4358_323 -4358_80711,96,4358_10075,Abbey St,10321,1,4358_7778195_5041019,4358_323 -4358_80711,205,4358_10076,Abbey St,7831,1,4358_7778195_8818225,4358_323 -4358_80711,205,4358_10077,Abbey St,7827,1,4358_7778195_8818224,4358_323 -4358_80711,96,4358_10078,Abbey St,9958,1,4358_7778195_5041012,4358_323 -4358_80756,205,4358_1008,Ashington,3622,1,4358_7778195_7122019,4358_33 -4358_80711,205,4358_10080,Abbey St,2739,1,4358_7778195_5041024,4358_323 -4358_80711,96,4358_10081,Abbey St,10188,1,4358_7778195_5041011,4358_323 -4358_80711,205,4358_10082,Abbey St,2334,1,4358_7778195_5041014,4358_323 -4358_80711,96,4358_10084,Abbey St,10126,1,4358_7778195_5041009,4358_323 -4358_80711,205,4358_10085,Abbey St,2699,1,4358_7778195_5041030,4358_323 -4358_80711,96,4358_10086,Abbey St,10323,1,4358_7778195_5041021,4358_323 -4358_80711,205,4358_10088,Abbey St,7833,1,4358_7778195_8818226,4358_323 -4358_80711,96,4358_10089,Abbey St,10248,1,4358_7778195_5041005,4358_323 -4358_80756,96,4358_1009,Ashington,13114,1,4358_7778195_7122001,4358_33 -4358_80711,205,4358_10090,Abbey St,2670,1,4358_7778195_5041026,4358_323 -4358_80711,96,4358_10092,Abbey St,10286,1,4358_7778195_5041016,4358_323 -4358_80711,205,4358_10093,Abbey St,2371,1,4358_7778195_5041028,4358_323 -4358_80711,205,4358_10094,Abbey St,2443,1,4358_7778195_5041021,4358_323 -4358_80711,96,4358_10095,Abbey St,10155,1,4358_7778195_5041023,4358_324 -4358_80711,96,4358_10097,Abbey St,10016,1,4358_7778195_5041015,4358_323 -4358_80711,205,4358_10098,Abbey St,2492,1,4358_7778195_5041011,4358_324 -4358_80760,205,4358_101,Shaw street,1851,0,4358_7778195_9001006,4358_1 -4358_80711,205,4358_10100,Abbey St,2677,1,4358_7778195_5041022,4358_323 -4358_80711,96,4358_10101,Abbey St,10325,1,4358_7778195_5041022,4358_323 -4358_80711,205,4358_10102,Abbey St,2617,1,4358_7778195_5041037,4358_323 -4358_80711,205,4358_10104,Abbey St,2698,1,4358_7778195_5041017,4358_323 -4358_80711,96,4358_10105,Abbey St,10236,1,4358_7778195_5041013,4358_324 -4358_80711,205,4358_10107,Abbey St,2438,1,4358_7778195_5041018,4358_323 -4358_80711,96,4358_10108,Abbey St,10250,1,4358_7778195_5041005,4358_323 -4358_80711,205,4358_10109,Abbey St,2756,1,4358_7778195_5041034,4358_323 -4358_80756,205,4358_1011,Ashington,3612,1,4358_7778195_7122011,4358_33 -4358_80711,205,4358_10111,Abbey St,2454,1,4358_7778195_5041008,4358_323 -4358_80711,96,4358_10112,Abbey St,10072,1,4358_7778195_5041014,4358_324 -4358_80711,96,4358_10114,Abbey St,10018,1,4358_7778195_5041015,4358_323 -4358_80711,205,4358_10115,Abbey St,2746,1,4358_7778195_5041027,4358_324 -4358_80711,205,4358_10117,Abbey St,2732,1,4358_7778195_5041023,4358_323 -4358_80711,96,4358_10118,Abbey St,10327,1,4358_7778195_5041022,4358_324 -4358_80756,96,4358_1012,Ashington,13130,1,4358_7778195_7122003,4358_33 -4358_80711,96,4358_10120,Abbey St,10238,1,4358_7778195_5041013,4358_323 -4358_80711,205,4358_10121,Abbey St,2359,1,4358_7778195_5041035,4358_324 -4358_80711,205,4358_10123,Abbey St,2758,1,4358_7778195_5041034,4358_323 -4358_80711,96,4358_10125,Abbey St,10061,1,4358_7778195_5041025,4358_325 -4358_80711,205,4358_10126,Abbey St,2428,1,4358_7778195_5041041,4358_323 -4358_80711,96,4358_10127,Abbey St,10159,1,4358_7778195_5041023,4358_324 -4358_80711,205,4358_10129,Abbey St,2723,1,4358_7778195_5041038,4358_323 -4358_80756,205,4358_1013,Ashington,3620,1,4358_7778195_7122001,4358_33 -4358_80711,96,4358_10131,Abbey St,10252,1,4358_7778195_5041027,4358_325 -4358_80711,96,4358_10132,Abbey St,10107,1,4358_7778195_5041026,4358_323 -4358_80711,205,4358_10134,Abbey St,2424,1,4358_7778195_5041039,4358_325 -4358_80711,96,4358_10135,Abbey St,9972,1,4358_7778195_5041030,4358_323 -4358_80711,205,4358_10137,Abbey St,2493,1,4358_7778195_5041040,4358_325 -4358_80711,96,4358_10139,Abbey St,9998,1,4358_7778195_5041028,4358_324 -4358_80711,205,4358_10140,Abbey St,2610,1,4358_7778195_5041043,4358_325 -4358_80711,205,4358_10141,Abbey St,2725,1,4358_7778195_5041038,4358_323 -4358_80711,96,4358_10143,Abbey St,10254,1,4358_7778195_5041027,4358_325 -4358_80711,96,4358_10144,Abbey St,10109,1,4358_7778195_5041026,4358_323 -4358_80711,205,4358_10146,Abbey St,2426,1,4358_7778195_5041039,4358_325 -4358_80711,96,4358_10147,Abbey St,9974,1,4358_7778195_5041030,4358_323 -4358_80711,205,4358_10149,Abbey St,2495,1,4358_7778195_5041040,4358_325 -4358_80756,205,4358_1015,Ashington,3539,1,4358_7778195_7122020,4358_33 -4358_80711,96,4358_10151,Abbey St,10000,1,4358_7778195_5041028,4358_324 -4358_80711,205,4358_10152,Abbey St,2612,1,4358_7778195_5041043,4358_325 -4358_80711,205,4358_10153,Abbey St,2641,1,4358_7778195_5041044,4358_323 -4358_80711,96,4358_10154,Abbey St,10022,1,4358_7778195_5041031,4358_324 -4358_80711,205,4358_10157,Abbey St,2626,1,4358_7778195_5041045,4358_324 -4358_80711,96,4358_10158,Abbey St,10169,1,4358_7778195_5041032,4358_325 -4358_80711,96,4358_10159,Abbey St,9976,1,4358_7778195_5041030,4358_323 -4358_80756,96,4358_1016,Ashington,13163,1,4358_7778195_7122005,4358_33 -4358_80711,205,4358_10161,Abbey St,2497,1,4358_7778195_5041040,4358_325 -4358_80711,205,4358_10162,Abbey St,2525,1,4358_7778195_5041046,4358_323 -4358_80711,96,4358_10164,Abbey St,10064,1,4358_7778195_5041033,4358_325 -4358_80711,205,4358_10165,Abbey St,2643,1,4358_7778195_5041044,4358_323 -4358_80711,96,4358_10166,Abbey St,10024,1,4358_7778195_5041031,4358_324 -4358_80713,205,4358_10168,Rolestown,2551,0,4358_7778195_5041012,4358_326 -4358_80713,96,4358_10169,Rolestown,10026,0,4358_7778195_5041006,4358_326 -4358_80756,205,4358_1017,Ashington,3401,1,4358_7778195_7122005,4358_33 -4358_80713,96,4358_10170,Rolestown,10011,0,4358_7778195_5041015,4358_326 -4358_80713,205,4358_10171,Rolestown,2693,0,4358_7778195_5041017,4358_326 -4358_80713,205,4358_10173,Rolestown,2743,0,4358_7778195_5041027,4358_326 -4358_80713,96,4358_10174,Rolestown,9959,0,4358_7778195_5041012,4358_326 -4358_80713,205,4358_10175,Rolestown,2671,0,4358_7778195_5041026,4358_326 -4358_80713,96,4358_10178,Rolestown,9997,0,4358_7778195_5041028,4358_328 -4358_80713,205,4358_10179,Rolestown,2689,0,4358_7778195_5041042,4358_329 -4358_80713,96,4358_10180,Abbey St,10025,1,4358_7778195_5041006,4358_330 -4358_80713,205,4358_10181,Abbey St,2552,1,4358_7778195_5041012,4358_330 -4358_80713,96,4358_10182,Abbey St,10027,1,4358_7778195_5041006,4358_330 -4358_80713,96,4358_10183,Abbey St,10012,1,4358_7778195_5041015,4358_330 -4358_80713,205,4358_10185,Abbey St,2694,1,4358_7778195_5041017,4358_331 -4358_80713,205,4358_10186,Abbey St,2744,1,4358_7778195_5041027,4358_330 -4358_80713,96,4358_10187,Abbey St,9960,1,4358_7778195_5041012,4358_330 -4358_80713,205,4358_10188,Abbey St,2672,1,4358_7778195_5041026,4358_330 -4358_80756,96,4358_1019,Ashington,13172,1,4358_7778195_7122008,4358_33 -4358_80714,96,4358_10190,Swords Manor,10239,0,4358_7778195_5041005,4358_332 -4358_80714,205,4358_10191,Swords Manor,2703,0,4358_7778195_5041004,4358_332 -4358_80714,96,4358_10192,Swords Manor,10257,0,4358_7778195_5041002,4358_332 -4358_80714,205,4358_10193,Swords Manor,2347,0,4358_7778195_5041006,4358_332 -4358_80714,96,4358_10194,Swords Manor,10119,0,4358_7778195_5041009,4358_332 -4358_80714,205,4358_10195,Swords Manor,2485,0,4358_7778195_5041011,4358_332 -4358_80714,96,4358_10196,Swords Manor,10241,0,4358_7778195_5041005,4358_332 -4358_80714,205,4358_10197,Swords Manor,2473,0,4358_7778195_5041013,4358_332 -4358_80714,205,4358_10198,Swords Manor,2734,0,4358_7778195_5041016,4358_332 -4358_80714,96,4358_10199,Swords Manor,10164,0,4358_7778195_5041010,4358_332 -4358_80756,205,4358_1020,Ashington,3592,1,4358_7778195_7122022,4358_33 -4358_80714,205,4358_10200,Swords Manor,2553,0,4358_7778195_5041012,4358_332 -4358_80714,96,4358_10201,Swords Manor,10147,0,4358_7778195_5041007,4358_332 -4358_80714,205,4358_10203,Swords Manor,2431,0,4358_7778195_5041018,4358_332 -4358_80714,96,4358_10204,Swords Manor,10183,0,4358_7778195_5041011,4358_332 -4358_80714,205,4358_10205,Swords Manor,2373,0,4358_7778195_5041019,4358_332 -4358_80714,96,4358_10207,Swords Manor,10121,0,4358_7778195_5041009,4358_332 -4358_80714,205,4358_10208,Swords Manor,2648,0,4358_7778195_5041001,4358_332 -4358_80714,96,4358_10209,Swords Manor,10055,0,4358_7778195_5041004,4358_332 -4358_80714,205,4358_10211,Swords Manor,2662,0,4358_7778195_5041003,4358_332 -4358_80714,96,4358_10212,Swords Manor,10028,0,4358_7778195_5041006,4358_332 -4358_80714,205,4358_10213,Swords Manor,2352,0,4358_7778195_5041020,4358_332 -4358_80714,96,4358_10215,Swords Manor,10065,0,4358_7778195_5041014,4358_332 -4358_80714,205,4358_10216,Swords Manor,2475,0,4358_7778195_5041013,4358_332 -4358_80714,96,4358_10217,Swords Manor,10269,0,4358_7778195_5041008,4358_332 -4358_80714,205,4358_10219,Swords Manor,2736,0,4358_7778195_5041016,4358_332 -4358_80756,96,4358_1022,Ashington,13187,1,4358_7778195_7122007,4358_33 -4358_80714,205,4358_10220,Swords Manor,2331,0,4358_7778195_5041014,4358_332 -4358_80714,96,4358_10222,Swords Manor,10261,0,4358_7778195_5041002,4358_333 -4358_80714,205,4358_10223,Swords Manor,6464,0,4358_7778195_7041576,4358_332 -4358_80714,96,4358_10224,Swords Manor,9969,0,4358_7778195_5041003,4358_332 -4358_80714,205,4358_10226,Swords Manor,2707,0,4358_7778195_5041004,4358_332 -4358_80714,96,4358_10227,Swords Manor,10123,0,4358_7778195_5041009,4358_332 -4358_80714,205,4358_10228,Swords Manor,2667,0,4358_7778195_5041026,4358_332 -4358_80714,96,4358_10229,Swords Manor,10057,0,4358_7778195_5041004,4358_332 -4358_80714,205,4358_10231,Swords Manor,2449,0,4358_7778195_5041008,4358_332 -4358_80714,96,4358_10232,Swords Manor,10030,0,4358_7778195_5041006,4358_332 -4358_80714,205,4358_10234,Swords Manor,2354,0,4358_7778195_5041020,4358_332 -4358_80714,96,4358_10235,Swords Manor,10283,0,4358_7778195_5041016,4358_332 -4358_80714,205,4358_10236,Swords Manor,2477,0,4358_7778195_5041013,4358_332 -4358_80714,96,4358_10237,Swords Manor,10013,0,4358_7778195_5041015,4358_332 -4358_80714,205,4358_10239,Swords Manor,2727,0,4358_7778195_5041023,4358_332 -4358_80756,205,4358_1024,Ashington,3590,1,4358_7778195_7122012,4358_35 -4358_80714,96,4358_10240,Swords Manor,9957,0,4358_7778195_5041012,4358_332 -4358_80714,205,4358_10242,Swords Manor,2695,0,4358_7778195_5041017,4358_332 -4358_80714,96,4358_10243,Swords Manor,10263,0,4358_7778195_5041002,4358_332 -4358_80714,205,4358_10244,Swords Manor,2333,0,4358_7778195_5041014,4358_332 -4358_80714,96,4358_10245,Swords Manor,9971,0,4358_7778195_5041003,4358_332 -4358_80714,205,4358_10247,Swords Manor,2377,0,4358_7778195_5041019,4358_332 -4358_80714,96,4358_10248,Swords Manor,10125,0,4358_7778195_5041009,4358_332 -4358_80756,96,4358_1025,Ashington,13121,1,4358_7778195_7122010,4358_33 -4358_80714,205,4358_10250,Swords Manor,2652,0,4358_7778195_5041001,4358_332 -4358_80714,96,4358_10251,Swords Manor,10300,0,4358_7778195_5041018,4358_332 -4358_80714,205,4358_10252,Swords Manor,2451,0,4358_7778195_5041008,4358_332 -4358_80714,96,4358_10254,Swords Manor,10247,0,4358_7778195_5041005,4358_333 -4358_80714,205,4358_10255,Swords Manor,2442,0,4358_7778195_5041021,4358_332 -4358_80714,96,4358_10256,Swords Manor,10285,0,4358_7778195_5041016,4358_332 -4358_80714,205,4358_10258,Swords Manor,2491,0,4358_7778195_5041011,4358_332 -4358_80714,96,4358_10259,Swords Manor,10143,0,4358_7778195_5041020,4358_332 -4358_80714,205,4358_10260,Swords Manor,2676,0,4358_7778195_5041022,4358_332 -4358_80714,96,4358_10262,Swords Manor,10322,0,4358_7778195_5041019,4358_333 -4358_80714,205,4358_10263,Swords Manor,7843,0,4358_7778195_8818229,4358_332 -4358_80714,96,4358_10264,Swords Manor,10265,0,4358_7778195_5041002,4358_332 -4358_80714,205,4358_10266,Swords Manor,2740,0,4358_7778195_5041024,4358_332 -4358_80714,96,4358_10267,Swords Manor,10293,0,4358_7778195_5041017,4358_332 -4358_80714,205,4358_10268,Swords Manor,2335,0,4358_7778195_5041014,4358_332 -4358_80714,96,4358_10269,Swords Manor,10235,0,4358_7778195_5041013,4358_332 -4358_80756,205,4358_1027,Ashington,3524,1,4358_7778195_7122018,4358_35 -4358_80714,205,4358_10271,Swords Manor,2700,0,4358_7778195_5041030,4358_332 -4358_80714,96,4358_10272,Swords Manor,10302,0,4358_7778195_5041018,4358_332 -4358_80714,205,4358_10274,Swords Manor,6465,0,4358_7778195_7041676,4358_332 -4358_80714,96,4358_10275,Swords Manor,10182,0,4358_7778195_5041001,4358_332 -4358_80714,205,4358_10276,Swords Manor,2453,0,4358_7778195_5041008,4358_332 -4358_80714,96,4358_10278,Swords Manor,10071,0,4358_7778195_5041014,4358_334 -4358_80714,96,4358_10279,Swords Manor,10017,0,4358_7778195_5041015,4358_332 -4358_80756,96,4358_1028,Ashington,13143,1,4358_7778195_7122004,4358_33 -4358_80714,205,4358_10281,Swords Manor,2745,0,4358_7778195_5041027,4358_334 -4358_80714,205,4358_10282,Swords Manor,2731,0,4358_7778195_5041023,4358_332 -4358_80714,96,4358_10284,Swords Manor,10326,0,4358_7778195_5041022,4358_334 -4358_80714,96,4358_10285,Swords Manor,10237,0,4358_7778195_5041013,4358_332 -4358_80714,205,4358_10287,Swords Manor,2358,0,4358_7778195_5041035,4358_334 -4358_80714,205,4358_10289,Swords Manor,2757,0,4358_7778195_5041034,4358_333 -4358_80714,96,4358_10290,Swords Manor,10060,0,4358_7778195_5041025,4358_334 -4358_80714,205,4358_10291,Swords Manor,2427,0,4358_7778195_5041041,4358_332 -4358_80714,96,4358_10292,Swords Manor,10158,0,4358_7778195_5041023,4358_333 -4358_80714,205,4358_10294,Swords Manor,2749,0,4358_7778195_5041032,4358_332 -4358_80714,96,4358_10296,Swords Manor,10251,0,4358_7778195_5041027,4358_334 -4358_80714,96,4358_10297,Swords Manor,10297,0,4358_7778195_5041017,4358_332 -4358_80714,205,4358_10299,Swords Manor,2753,0,4358_7778195_5041033,4358_334 -4358_80760,205,4358_103,Shaw street,1707,0,4358_7778195_9001008,4358_1 -4358_80756,205,4358_1030,Ashington,3582,1,4358_7778195_7122014,4358_35 -4358_80714,96,4358_10301,Swords Manor,10114,0,4358_7778195_5041024,4358_333 -4358_80714,205,4358_10302,Swords Manor,2762,0,4358_7778195_5041036,4358_334 -4358_80714,205,4358_10303,Abbey St,2702,1,4358_7778195_5041004,4358_337 -4358_80714,205,4358_10304,Abbey St,2346,1,4358_7778195_5041006,4358_337 -4358_80714,205,4358_10305,Abbey St,2444,1,4358_7778195_5041008,4358_335 -4358_80714,205,4358_10306,Abbey St,2484,1,4358_7778195_5041011,4358_335 -4358_80714,205,4358_10307,Abbey St,2558,1,4358_7778195_5041015,4358_335 -4358_80714,205,4358_10308,Abbey St,2733,1,4358_7778195_5041016,4358_335 -4358_80714,96,4358_10309,Abbey St,10240,1,4358_7778195_5041005,4358_336 -4358_80756,96,4358_1031,Ashington,13155,1,4358_7778195_7122006,4358_33 -4358_80714,205,4358_10311,Abbey St,2328,1,4358_7778195_5041014,4358_335 -4358_80714,96,4358_10312,Abbey St,10266,1,4358_7778195_5041008,4358_335 -4358_80714,205,4358_10313,Abbey St,2504,1,4358_7778195_5041002,4358_335 -4358_80714,205,4358_10314,Abbey St,2704,1,4358_7778195_5041004,4358_335 -4358_80714,96,4358_10315,Abbey St,10258,1,4358_7778195_5041002,4358_336 -4358_80714,205,4358_10316,Abbey St,2348,1,4358_7778195_5041006,4358_335 -4358_80714,205,4358_10317,Abbey St,2483,1,4358_7778195_5041005,4358_337 -4358_80714,96,4358_10318,Abbey St,10120,1,4358_7778195_5041009,4358_335 -4358_80756,205,4358_1032,Ashington,3629,1,4358_7778195_7122021,4358_33 -4358_80714,96,4358_10320,Abbey St,10242,1,4358_7778195_5041005,4358_335 -4358_80714,205,4358_10321,Abbey St,2351,1,4358_7778195_5041020,4358_335 -4358_80714,205,4358_10322,Abbey St,2474,1,4358_7778195_5041013,4358_335 -4358_80714,96,4358_10323,Abbey St,10165,1,4358_7778195_5041010,4358_335 -4358_80714,205,4358_10324,Abbey St,2735,1,4358_7778195_5041016,4358_335 -4358_80714,96,4358_10326,Abbey St,9954,1,4358_7778195_5041012,4358_335 -4358_80714,205,4358_10327,Abbey St,2330,1,4358_7778195_5041014,4358_335 -4358_80714,96,4358_10329,Abbey St,10260,1,4358_7778195_5041002,4358_336 -4358_80714,205,4358_10330,Abbey St,6463,1,4358_7778195_7041576,4358_335 -4358_80714,96,4358_10331,Abbey St,9968,1,4358_7778195_5041003,4358_335 -4358_80714,205,4358_10332,Abbey St,2706,1,4358_7778195_5041004,4358_335 -4358_80714,96,4358_10334,Abbey St,10230,1,4358_7778195_5041013,4358_335 -4358_80714,205,4358_10335,Abbey St,2666,1,4358_7778195_5041026,4358_335 -4358_80714,96,4358_10337,Abbey St,10244,1,4358_7778195_5041005,4358_336 -4358_80714,205,4358_10338,Abbey St,2448,1,4358_7778195_5041008,4358_335 -4358_80714,96,4358_10339,Abbey St,10177,1,4358_7778195_5041001,4358_335 -4358_80756,96,4358_1034,Ashington,13179,1,4358_7778195_7122009,4358_33 -4358_80714,205,4358_10340,Abbey St,2353,1,4358_7778195_5041020,4358_335 -4358_80714,96,4358_10342,Abbey St,10066,1,4358_7778195_5041014,4358_335 -4358_80714,205,4358_10343,Abbey St,2476,1,4358_7778195_5041013,4358_335 -4358_80714,96,4358_10344,Abbey St,10270,1,4358_7778195_5041008,4358_335 -4358_80714,205,4358_10346,Abbey St,2726,1,4358_7778195_5041023,4358_335 -4358_80714,96,4358_10347,Abbey St,10150,1,4358_7778195_5041007,4358_335 -4358_80714,205,4358_10348,Abbey St,2563,1,4358_7778195_5041025,4358_335 -4358_80756,205,4358_1035,Ashington,3605,1,4358_7778195_7122008,4358_33 -4358_80714,96,4358_10350,Abbey St,10186,1,4358_7778195_5041011,4358_335 -4358_80714,205,4358_10351,Abbey St,2434,1,4358_7778195_5041018,4358_335 -4358_80714,96,4358_10353,Abbey St,10290,1,4358_7778195_5041017,4358_336 -4358_80714,205,4358_10354,Abbey St,2708,1,4358_7778195_5041004,4358_335 -4358_80714,96,4358_10355,Abbey St,10232,1,4358_7778195_5041013,4358_335 -4358_80714,205,4358_10356,Abbey St,2668,1,4358_7778195_5041026,4358_335 -4358_80714,96,4358_10358,Abbey St,10058,1,4358_7778195_5041004,4358_335 -4358_80714,205,4358_10359,Abbey St,2450,1,4358_7778195_5041008,4358_335 -4358_80714,96,4358_10361,Abbey St,10179,1,4358_7778195_5041001,4358_336 -4358_80714,205,4358_10362,Abbey St,2355,1,4358_7778195_5041020,4358_335 -4358_80714,96,4358_10363,Abbey St,10068,1,4358_7778195_5041014,4358_335 -4358_80714,205,4358_10364,Abbey St,2742,1,4358_7778195_5041027,4358_335 -4358_80714,96,4358_10366,Abbey St,10014,1,4358_7778195_5041015,4358_335 -4358_80714,205,4358_10367,Abbey St,2728,1,4358_7778195_5041023,4358_335 -4358_80714,96,4358_10369,Abbey St,10152,1,4358_7778195_5041007,4358_336 -4358_80756,96,4358_1037,Ashington,13116,1,4358_7778195_7122001,4358_33 -4358_80714,205,4358_10370,Abbey St,7842,1,4358_7778195_8818229,4358_335 -4358_80714,96,4358_10371,Abbey St,10264,1,4358_7778195_5041002,4358_335 -4358_80714,205,4358_10372,Abbey St,2696,1,4358_7778195_5041017,4358_335 -4358_80714,96,4358_10374,Abbey St,10292,1,4358_7778195_5041017,4358_335 -4358_80714,205,4358_10375,Abbey St,2436,1,4358_7778195_5041018,4358_335 -4358_80714,96,4358_10376,Abbey St,10234,1,4358_7778195_5041013,4358_335 -4358_80714,205,4358_10378,Abbey St,2378,1,4358_7778195_5041019,4358_335 -4358_80714,96,4358_10379,Abbey St,10301,1,4358_7778195_5041018,4358_335 -4358_80714,205,4358_10380,Abbey St,2653,1,4358_7778195_5041001,4358_335 -4358_80714,96,4358_10382,Abbey St,10181,1,4358_7778195_5041001,4358_335 -4358_80714,205,4358_10383,Abbey St,2452,1,4358_7778195_5041008,4358_335 -4358_80714,96,4358_10385,Abbey St,10070,1,4358_7778195_5041014,4358_336 -4358_80714,205,4358_10386,Abbey St,2357,1,4358_7778195_5041020,4358_335 -4358_80714,96,4358_10387,Abbey St,10144,1,4358_7778195_5041020,4358_336 -4358_80714,205,4358_10389,Abbey St,2350,1,4358_7778195_5041029,4358_335 -4358_80756,205,4358_1039,Ashington,3563,1,4358_7778195_7122017,4358_33 -4358_80714,96,4358_10390,Abbey St,10154,1,4358_7778195_5041007,4358_335 -4358_80714,205,4358_10391,Abbey St,2730,1,4358_7778195_5041023,4358_335 -4358_80714,96,4358_10393,Abbey St,10294,1,4358_7778195_5041017,4358_335 -4358_80714,205,4358_10394,Abbey St,2741,1,4358_7778195_5041024,4358_335 -4358_80714,205,4358_10396,Abbey St,2336,1,4358_7778195_5041014,4358_335 -4358_80714,96,4358_10397,Abbey St,10111,1,4358_7778195_5041024,4358_335 -4358_80714,205,4358_10399,Abbey St,2701,1,4358_7778195_5041030,4358_336 -4358_80760,96,4358_104,Shaw street,9498,0,4358_7778195_9001004,4358_1 -4358_80756,96,4358_1040,Ashington,13132,1,4358_7778195_7122003,4358_33 -4358_80714,96,4358_10400,Abbey St,10288,1,4358_7778195_5041016,4358_335 -4358_80714,205,4358_10401,Abbey St,2655,1,4358_7778195_5041001,4358_335 -4358_80714,205,4358_10403,Abbey St,2479,1,4358_7778195_5041031,4358_335 -4358_80714,96,4358_10404,Abbey St,10157,1,4358_7778195_5041023,4358_336 -4358_80714,205,4358_10406,Abbey St,2748,1,4358_7778195_5041032,4358_335 -4358_80714,96,4358_10407,Abbey St,9962,1,4358_7778195_5041012,4358_336 -4358_80714,96,4358_10409,Abbey St,10296,1,4358_7778195_5041017,4358_335 -4358_80714,205,4358_10410,Abbey St,2752,1,4358_7778195_5041033,4358_336 -4358_80714,96,4358_10412,Abbey St,10113,1,4358_7778195_5041024,4358_335 -4358_80714,205,4358_10413,Abbey St,2761,1,4358_7778195_5041036,4358_336 -4358_80714,205,4358_10415,Abbey St,2688,1,4358_7778195_5041042,4358_336 -4358_80714,96,4358_10416,Abbey St,10074,1,4358_7778195_5041014,4358_338 -4358_80714,205,4358_10417,Abbey St,2750,1,4358_7778195_5041032,4358_335 -4358_80714,96,4358_10418,Abbey St,10020,1,4358_7778195_5041015,4358_336 -4358_80756,205,4358_1042,Ashington,3624,1,4358_7778195_7122019,4358_36 -4358_80714,96,4358_10420,Abbey St,10298,1,4358_7778195_5041017,4358_335 -4358_80714,205,4358_10422,Abbey St,2754,1,4358_7778195_5041033,4358_338 -4358_80712,205,4358_10423,Swords Bus.Pk,2482,0,4358_7778195_5041005,4358_339 -4358_80712,205,4358_10424,Swords Bus.Pk,2445,0,4358_7778195_5041008,4358_339 -4358_80712,205,4358_10425,Abbey St,2446,1,4358_7778195_5041008,4358_340 -4358_80712,205,4358_10426,Abbey St,7839,1,4358_7778195_8818228,4358_340 -4358_80715,205,4358_10427,Swords Manor,7847,0,4358_7778195_8818231,4358_342 -4358_80715,205,4358_10428,Knocksedan,7832,0,4358_7778195_8818225,4358_341 -4358_80715,205,4358_10429,Swords Manor,7828,0,4358_7778195_8818224,4358_342 -4358_80756,205,4358_1043,Ashington,3594,1,4358_7778195_7122022,4358_33 -4358_80715,205,4358_10430,UCD,7829,1,4358_7778195_8818124,4358_345 -4358_80715,205,4358_10431,UCD,7841,1,4358_7778195_8818129,4358_344 -4358_80715,205,4358_10432,UCD,7837,1,4358_7778195_8818127,4358_343 -4358_80715,205,4358_10433,UCD,7817,1,4358_7778195_8818119,4358_346 -4358_80715,205,4358_10434,UCD,7830,1,4358_7778195_8818125,4358_347 -4358_80715,205,4358_10435,UCD,7840,1,4358_7778195_8818128,4358_343 -4358_80715,205,4358_10436,UCD,7846,1,4358_7778195_8818131,4358_343 -4358_80716,205,4358_10437,Portmarnock,5894,0,4358_7778195_6042005,4358_348 -4358_80716,205,4358_10438,Portmarnock,5845,0,4358_7778195_6042011,4358_348 -4358_80716,205,4358_10439,Portmarnock,5659,0,4358_7778195_6042012,4358_348 -4358_80756,96,4358_1044,Ashington,13165,1,4358_7778195_7122005,4358_35 -4358_80716,205,4358_10440,Portmarnock,5766,0,4358_7778195_6042001,4358_348 -4358_80716,96,4358_10441,Portmarnock,12927,0,4358_7778195_6042002,4358_348 -4358_80716,205,4358_10442,Portmarnock,5733,0,4358_7778195_6042002,4358_348 -4358_80716,205,4358_10443,Portmarnock,5695,0,4358_7778195_6042007,4358_348 -4358_80716,96,4358_10444,Portmarnock,12901,0,4358_7778195_6042004,4358_348 -4358_80716,205,4358_10445,Portmarnock,5741,0,4358_7778195_6042010,4358_348 -4358_80716,96,4358_10446,Portmarnock,12702,0,4358_7778195_6042005,4358_348 -4358_80716,205,4358_10447,Portmarnock,5878,0,4358_7778195_6042015,4358_348 -4358_80716,205,4358_10448,Portmarnock,5896,0,4358_7778195_6042005,4358_348 -4358_80716,96,4358_10450,Portmarnock,12881,0,4358_7778195_6042006,4358_349 -4358_80716,205,4358_10451,Portmarnock,5847,0,4358_7778195_6042011,4358_348 -4358_80716,96,4358_10452,Portmarnock,12929,0,4358_7778195_6042002,4358_348 -4358_80716,205,4358_10453,Portmarnock,5661,0,4358_7778195_6042012,4358_348 -4358_80716,96,4358_10454,Portmarnock,12912,0,4358_7778195_6042008,4358_348 -4358_80716,205,4358_10456,Portmarnock,5697,0,4358_7778195_6042007,4358_348 -4358_80716,96,4358_10457,Portmarnock,12903,0,4358_7778195_6042004,4358_348 -4358_80716,205,4358_10458,Portmarnock,5743,0,4358_7778195_6042010,4358_348 -4358_80716,96,4358_10460,Portmarnock,12704,0,4358_7778195_6042005,4358_349 -4358_80716,205,4358_10461,Portmarnock,5880,0,4358_7778195_6042015,4358_348 -4358_80716,96,4358_10462,Portmarnock,12883,0,4358_7778195_6042006,4358_348 -4358_80716,205,4358_10464,Portmarnock,5849,0,4358_7778195_6042011,4358_348 -4358_80716,96,4358_10465,Portmarnock,12931,0,4358_7778195_6042002,4358_348 -4358_80716,96,4358_10467,Portmarnock,12803,0,4358_7778195_6042010,4358_349 -4358_80716,205,4358_10468,Portmarnock,5663,0,4358_7778195_6042012,4358_350 -4358_80716,96,4358_10469,Portmarnock,12914,0,4358_7778195_6042008,4358_348 -4358_80756,96,4358_1047,Ashington,13189,1,4358_7778195_7122007,4358_35 -4358_80716,205,4358_10470,Portmarnock,5699,0,4358_7778195_6042007,4358_348 -4358_80716,96,4358_10472,Portmarnock,12905,0,4358_7778195_6042004,4358_348 -4358_80716,205,4358_10473,Portmarnock,5745,0,4358_7778195_6042010,4358_348 -4358_80716,96,4358_10474,Portmarnock,12917,0,4358_7778195_6042011,4358_349 -4358_80716,96,4358_10476,Portmarnock,12706,0,4358_7778195_6042005,4358_348 -4358_80716,205,4358_10477,Portmarnock,5882,0,4358_7778195_6042015,4358_348 -4358_80716,96,4358_10479,Portmarnock,12795,0,4358_7778195_6042013,4358_349 -4358_80756,205,4358_1048,Ashington,3526,1,4358_7778195_7122018,4358_36 -4358_80716,205,4358_10480,Portmarnock,5851,0,4358_7778195_6042011,4358_348 -4358_80716,96,4358_10481,Portmarnock,12885,0,4358_7778195_6042006,4358_349 -4358_80716,96,4358_10483,Portmarnock,12933,0,4358_7778195_6042002,4358_348 -4358_80716,205,4358_10484,Portmarnock,5687,0,4358_7778195_6042017,4358_348 -4358_80716,96,4358_10486,Portmarnock,12805,0,4358_7778195_6042010,4358_349 -4358_80716,205,4358_10487,Portmarnock,5665,0,4358_7778195_6042012,4358_348 -4358_80716,96,4358_10488,Portmarnock,12916,0,4358_7778195_6042008,4358_348 -4358_80716,205,4358_10489,Portmarnock,5725,0,4358_7778195_6042024,4358_348 -4358_80756,96,4358_1049,Ashington,13145,1,4358_7778195_7122004,4358_33 -4358_80716,96,4358_10491,Portmarnock,12907,0,4358_7778195_6042004,4358_348 -4358_80716,205,4358_10492,Portmarnock,5701,0,4358_7778195_6042007,4358_348 -4358_80716,96,4358_10493,Portmarnock,12919,0,4358_7778195_6042011,4358_348 -4358_80716,205,4358_10495,Portmarnock,5747,0,4358_7778195_6042010,4358_348 -4358_80716,96,4358_10496,Portmarnock,12708,0,4358_7778195_6042005,4358_348 -4358_80716,205,4358_10497,Portmarnock,5921,0,4358_7778195_6042025,4358_348 -4358_80716,96,4358_10498,Portmarnock,12797,0,4358_7778195_6042013,4358_348 -4358_80760,205,4358_105,Shaw street,1825,0,4358_7778195_9001001,4358_1 -4358_80716,205,4358_10500,Portmarnock,5884,0,4358_7778195_6042015,4358_348 -4358_80716,96,4358_10501,Portmarnock,12691,0,4358_7778195_6042014,4358_348 -4358_80716,205,4358_10503,Portmarnock,5853,0,4358_7778195_6042011,4358_348 -4358_80716,96,4358_10504,Portmarnock,12816,0,4358_7778195_6042015,4358_348 -4358_80716,205,4358_10505,Portmarnock,5689,0,4358_7778195_6042017,4358_348 -4358_80716,96,4358_10507,Portmarnock,12887,0,4358_7778195_6042016,4358_349 -4358_80716,205,4358_10508,Portmarnock,5667,0,4358_7778195_6042012,4358_348 -4358_80716,96,4358_10509,Portmarnock,12711,0,4358_7778195_6042017,4358_348 -4358_80756,205,4358_1051,Ashington,3631,1,4358_7778195_7122021,4358_36 -4358_80716,205,4358_10511,Portmarnock,5727,0,4358_7778195_6042024,4358_348 -4358_80716,96,4358_10513,Portmarnock,12909,0,4358_7778195_6042004,4358_349 -4358_80716,205,4358_10514,Portmarnock,5703,0,4358_7778195_6042007,4358_348 -4358_80716,96,4358_10515,Portmarnock,12921,0,4358_7778195_6042011,4358_349 -4358_80716,205,4358_10517,Portmarnock,5749,0,4358_7778195_6042010,4358_348 -4358_80716,96,4358_10518,Portmarnock,12799,0,4358_7778195_6042013,4358_349 -4358_80756,96,4358_1052,Ashington,13118,1,4358_7778195_7122001,4358_33 -4358_80716,205,4358_10520,Portmarnock,5886,0,4358_7778195_6042015,4358_348 -4358_80716,96,4358_10521,Portmarnock,12693,0,4358_7778195_6042014,4358_349 -4358_80716,96,4358_10523,Portmarnock,12889,0,4358_7778195_6042016,4358_348 -4358_80716,205,4358_10524,Portmarnock,5855,0,4358_7778195_6042011,4358_349 -4358_80716,205,4358_10526,Portmarnock,5691,0,4358_7778195_6042017,4358_348 -4358_80716,96,4358_10527,Portmarnock,12713,0,4358_7778195_6042017,4358_349 -4358_80716,205,4358_10528,Portmarnock,5737,0,4358_7778195_6042026,4358_348 -4358_80716,96,4358_10529,Portmarnock,12923,0,4358_7778195_6042011,4358_349 -4358_80716,205,4358_10531,Portmarnock,5729,0,4358_7778195_6042024,4358_348 -4358_80716,96,4358_10532,Portmarnock,12801,0,4358_7778195_6042013,4358_349 -4358_80716,205,4358_10533,Portmarnock,5720,0,4358_7778195_6042027,4358_348 -4358_80716,96,4358_10534,Portmarnock,12695,0,4358_7778195_6042014,4358_349 -4358_80716,205,4358_10536,Portmarnock,5693,0,4358_7778195_6042017,4358_348 -4358_80716,96,4358_10537,Portmarnock,12891,0,4358_7778195_6042016,4358_349 -4358_80716,96,4358_10538,Portmarnock,12715,0,4358_7778195_6042017,4358_348 -4358_80716,205,4358_10539,Portmarnock,5739,0,4358_7778195_6042026,4358_349 -4358_80756,205,4358_1054,Ashington,3565,1,4358_7778195_7122017,4358_36 -4358_80716,205,4358_10541,Portmarnock,5731,0,4358_7778195_6042024,4358_348 -4358_80716,96,4358_10542,Portmarnock,12925,0,4358_7778195_6042011,4358_349 -4358_80716,205,4358_10543,Talbot Street,5765,1,4358_7778195_6042001,4358_351 -4358_80716,205,4358_10544,Talbot Street,5732,1,4358_7778195_6042002,4358_351 -4358_80716,96,4358_10545,Talbot Street,12926,1,4358_7778195_6042002,4358_351 -4358_80716,205,4358_10546,Talbot Street,5694,1,4358_7778195_6042007,4358_352 -4358_80716,205,4358_10547,Talbot Street,5740,1,4358_7778195_6042010,4358_351 -4358_80716,96,4358_10548,Talbot Street,12900,1,4358_7778195_6042004,4358_352 -4358_80716,205,4358_10549,Talbot Street,5877,1,4358_7778195_6042015,4358_351 -4358_80756,96,4358_1055,Ashington,13134,1,4358_7778195_7122003,4358_33 -4358_80716,96,4358_10550,Talbot Street,12701,1,4358_7778195_6042005,4358_351 -4358_80716,205,4358_10551,Talbot Street,5895,1,4358_7778195_6042005,4358_351 -4358_80716,205,4358_10552,Talbot Street,5846,1,4358_7778195_6042011,4358_351 -4358_80716,96,4358_10553,Talbot Street,12880,1,4358_7778195_6042006,4358_352 -4358_80716,205,4358_10555,Talbot Street,5660,1,4358_7778195_6042012,4358_351 -4358_80716,96,4358_10556,Talbot Street,12928,1,4358_7778195_6042002,4358_351 -4358_80716,205,4358_10557,Talbot Street,5767,1,4358_7778195_6042001,4358_351 -4358_80716,96,4358_10558,Talbot Street,12911,1,4358_7778195_6042008,4358_351 -4358_80716,205,4358_10559,Talbot Street,5734,1,4358_7778195_6042002,4358_352 -4358_80716,205,4358_10561,Talbot Street,5696,1,4358_7778195_6042007,4358_351 -4358_80716,96,4358_10562,Talbot Street,12902,1,4358_7778195_6042004,4358_351 -4358_80716,205,4358_10563,Talbot Street,5742,1,4358_7778195_6042010,4358_351 -4358_80716,96,4358_10564,Talbot Street,12703,1,4358_7778195_6042005,4358_351 -4358_80716,205,4358_10566,Talbot Street,5879,1,4358_7778195_6042015,4358_352 -4358_80716,96,4358_10567,Talbot Street,12882,1,4358_7778195_6042006,4358_351 -4358_80716,205,4358_10568,Talbot Street,5848,1,4358_7778195_6042011,4358_351 -4358_80716,96,4358_10569,Talbot Street,12930,1,4358_7778195_6042002,4358_351 -4358_80756,205,4358_1057,Ashington,3626,1,4358_7778195_7122019,4358_36 -4358_80716,205,4358_10571,Talbot Street,5662,1,4358_7778195_6042012,4358_352 -4358_80716,96,4358_10572,Talbot Street,12913,1,4358_7778195_6042008,4358_351 -4358_80716,205,4358_10573,Talbot Street,5698,1,4358_7778195_6042007,4358_351 -4358_80716,96,4358_10575,Talbot Street,12904,1,4358_7778195_6042004,4358_351 -4358_80716,205,4358_10576,Talbot Street,5744,1,4358_7778195_6042010,4358_351 -4358_80716,96,4358_10578,Talbot Street,12705,1,4358_7778195_6042005,4358_351 -4358_80716,205,4358_10579,Talbot Street,5881,1,4358_7778195_6042015,4358_351 -4358_80756,205,4358_1058,O'Connell Street,3596,1,4358_7778195_7122022,4358_34 -4358_80716,96,4358_10581,Talbot Street,12884,1,4358_7778195_6042006,4358_351 -4358_80716,205,4358_10582,Talbot Street,5850,1,4358_7778195_6042011,4358_351 -4358_80716,96,4358_10584,Talbot Street,12932,1,4358_7778195_6042002,4358_351 -4358_80716,205,4358_10585,Talbot Street,5686,1,4358_7778195_6042017,4358_351 -4358_80716,96,4358_10587,Talbot Street,12804,1,4358_7778195_6042010,4358_352 -4358_80716,96,4358_10588,Talbot Street,12915,1,4358_7778195_6042008,4358_351 -4358_80716,205,4358_10589,Talbot Street,5664,1,4358_7778195_6042012,4358_352 -4358_80716,96,4358_10591,Talbot Street,12906,1,4358_7778195_6042004,4358_351 -4358_80716,205,4358_10592,Talbot Street,5700,1,4358_7778195_6042007,4358_351 -4358_80716,96,4358_10594,Talbot Street,12918,1,4358_7778195_6042011,4358_352 -4358_80716,205,4358_10595,Talbot Street,5746,1,4358_7778195_6042010,4358_351 -4358_80716,96,4358_10596,Talbot Street,12707,1,4358_7778195_6042005,4358_352 -4358_80716,96,4358_10598,Talbot Street,12796,1,4358_7778195_6042013,4358_352 -4358_80716,205,4358_10599,Talbot Street,5883,1,4358_7778195_6042015,4358_351 -4358_80756,96,4358_1060,O'Connell Street,13106,1,4358_7778195_7122011,4358_38 -4358_80716,96,4358_10600,Talbot Street,12690,1,4358_7778195_6042014,4358_351 -4358_80716,96,4358_10602,Talbot Street,12815,1,4358_7778195_6042015,4358_351 -4358_80716,205,4358_10603,Talbot Street,5852,1,4358_7778195_6042011,4358_352 -4358_80716,205,4358_10605,Talbot Street,5688,1,4358_7778195_6042017,4358_351 -4358_80716,96,4358_10606,Talbot Street,12886,1,4358_7778195_6042016,4358_352 -4358_80716,96,4358_10607,Talbot Street,12710,1,4358_7778195_6042017,4358_351 -4358_80716,205,4358_10609,Talbot Street,5666,1,4358_7778195_6042012,4358_353 -4358_80757,205,4358_1061,Marino,2233,0,4358_7778195_5123001,4358_39 -4358_80716,205,4358_10610,Talbot Street,5726,1,4358_7778195_6042024,4358_351 -4358_80716,96,4358_10611,Talbot Street,12908,1,4358_7778195_6042004,4358_352 -4358_80716,205,4358_10613,Talbot Street,5702,1,4358_7778195_6042007,4358_351 -4358_80716,96,4358_10614,Talbot Street,12920,1,4358_7778195_6042011,4358_352 -4358_80716,205,4358_10615,Talbot Street,5748,1,4358_7778195_6042010,4358_351 -4358_80716,96,4358_10616,Talbot Street,12709,1,4358_7778195_6042005,4358_352 -4358_80716,96,4358_10618,Talbot Street,12798,1,4358_7778195_6042013,4358_351 -4358_80716,205,4358_10619,Talbot Street,5922,1,4358_7778195_6042025,4358_351 -4358_80757,205,4358_1062,Marino,2245,0,4358_7778195_5123002,4358_39 -4358_80716,96,4358_10621,Talbot Street,12692,1,4358_7778195_6042014,4358_352 -4358_80716,205,4358_10622,Talbot Street,5885,1,4358_7778195_6042015,4358_351 -4358_80716,96,4358_10623,Talbot Street,12817,1,4358_7778195_6042015,4358_351 -4358_80716,205,4358_10624,Talbot Street,5854,1,4358_7778195_6042011,4358_351 -4358_80716,96,4358_10626,Talbot Street,12888,1,4358_7778195_6042016,4358_351 -4358_80716,205,4358_10627,Talbot Street,5690,1,4358_7778195_6042017,4358_351 -4358_80716,96,4358_10629,Talbot Street,12712,1,4358_7778195_6042017,4358_352 -4358_80757,205,4358_1063,Marino,2255,0,4358_7778195_5123004,4358_39 -4358_80716,96,4358_10630,Talbot Street,12910,1,4358_7778195_6042004,4358_351 -4358_80716,205,4358_10631,Talbot Street,5728,1,4358_7778195_6042024,4358_351 -4358_80716,96,4358_10632,Talbot Street,12922,1,4358_7778195_6042011,4358_351 -4358_80716,205,4358_10633,Talbot Street,5750,1,4358_7778195_6042010,4358_351 -4358_80716,96,4358_10635,Talbot Street,12800,1,4358_7778195_6042013,4358_352 -4358_80716,205,4358_10636,Talbot Street,5887,1,4358_7778195_6042015,4358_351 -4358_80716,96,4358_10637,Talbot Street,12694,1,4358_7778195_6042014,4358_351 -4358_80716,205,4358_10638,Talbot Street,5856,1,4358_7778195_6042011,4358_351 -4358_80757,96,4358_1064,Marino,9845,0,4358_7778195_5123002,4358_39 -4358_80716,96,4358_10640,Talbot Street,12890,1,4358_7778195_6042016,4358_352 -4358_80716,205,4358_10641,Talbot Street,5692,1,4358_7778195_6042017,4358_351 -4358_80716,96,4358_10642,Talbot Street,12714,1,4358_7778195_6042017,4358_351 -4358_80716,205,4358_10643,Talbot Street,5738,1,4358_7778195_6042026,4358_351 -4358_80716,96,4358_10645,Talbot Street,12924,1,4358_7778195_6042011,4358_352 -4358_80716,205,4358_10646,Talbot Street,5730,1,4358_7778195_6042024,4358_351 -4358_80716,96,4358_10647,Talbot Street,12802,1,4358_7778195_6042013,4358_351 -4358_80716,205,4358_10649,Talbot Street,5721,1,4358_7778195_6042027,4358_352 -4358_80757,205,4358_1065,Marino,2223,0,4358_7778195_5123007,4358_39 -4358_80716,96,4358_10650,Talbot Street,12696,1,4358_7778195_6042014,4358_353 -4358_80793,205,4358_10651,Strand Road,6102,0,4358_7778195_6826207,4358_354 -4358_80793,205,4358_10652,DCU,6101,1,4358_7778195_6826107,4358_355 -4358_80717,205,4358_10653,Swords Bus.Pk,5809,0,4358_7778195_6042004,4358_356 -4358_80717,205,4358_10654,Swords Bus.Pk,5751,0,4358_7778195_6042008,4358_356 -4358_80717,96,4358_10655,Swords Bus.Pk,12878,0,4358_7778195_6042001,4358_356 -4358_80717,205,4358_10656,Swords Bus.Pk,5735,0,4358_7778195_6042014,4358_356 -4358_80717,205,4358_10657,Swords Bus.Pk,5723,0,4358_7778195_6042003,4358_356 -4358_80717,96,4358_10658,Swords Bus.Pk,12849,0,4358_7778195_6042003,4358_356 -4358_80717,205,4358_10659,Swords Bus.Pk,5907,0,4358_7778195_6042006,4358_357 -4358_80757,205,4358_1066,Marino,2278,0,4358_7778195_5123009,4358_39 -4358_80717,205,4358_10660,Swords Bus.Pk,5914,0,4358_7778195_6042009,4358_356 -4358_80717,205,4358_10661,Swords Bus.Pk,5823,0,4358_7778195_6042013,4358_356 -4358_80717,96,4358_10662,Swords Bus.Pk,12763,0,4358_7778195_6042007,4358_357 -4358_80717,205,4358_10663,Swords Bus.Pk,5769,0,4358_7778195_6042016,4358_356 -4358_80717,205,4358_10664,Swords Bus.Pk,5753,0,4358_7778195_6042008,4358_356 -4358_80717,96,4358_10665,Swords Bus.Pk,12892,0,4358_7778195_6042009,4358_356 -4358_80717,205,4358_10667,Swords Bus.Pk,5909,0,4358_7778195_6042006,4358_356 -4358_80717,96,4358_10668,Swords Bus.Pk,12851,0,4358_7778195_6042003,4358_356 -4358_80757,96,4358_1067,Marino,9879,0,4358_7778195_5123001,4358_39 -4358_80717,96,4358_10670,Swords Bus.Pk,12765,0,4358_7778195_6042007,4358_356 -4358_80717,205,4358_10671,Swords Bus.Pk,5916,0,4358_7778195_6042009,4358_357 -4358_80717,205,4358_10673,Swords Bus.Pk,5755,0,4358_7778195_6042008,4358_356 -4358_80717,96,4358_10674,Swords Bus.Pk,12894,0,4358_7778195_6042009,4358_357 -4358_80717,96,4358_10676,Swords Bus.Pk,12853,0,4358_7778195_6042003,4358_356 -4358_80717,205,4358_10677,Swords Bus.Pk,5911,0,4358_7778195_6042006,4358_357 -4358_80717,96,4358_10679,Swords Bus.Pk,12716,0,4358_7778195_6042012,4358_356 -4358_80757,205,4358_1068,Marino,2115,0,4358_7778195_5123003,4358_39 -4358_80717,205,4358_10680,Swords Bus.Pk,5897,0,4358_7778195_6042018,4358_357 -4358_80717,205,4358_10682,Swords Bus.Pk,5757,0,4358_7778195_6042008,4358_356 -4358_80717,96,4358_10683,Swords Bus.Pk,12896,0,4358_7778195_6042009,4358_356 -4358_80717,205,4358_10685,Swords Bus.Pk,5811,0,4358_7778195_6042021,4358_356 -4358_80717,96,4358_10686,Swords Bus.Pk,12855,0,4358_7778195_6042003,4358_356 -4358_80717,205,4358_10688,Swords Bus.Pk,5918,0,4358_7778195_6042022,4358_356 -4358_80757,96,4358_1069,Marino,9789,0,4358_7778195_5123004,4358_39 -4358_80717,205,4358_10690,Swords Bus.Pk,5899,0,4358_7778195_6042018,4358_357 -4358_80717,96,4358_10691,Swords Bus.Pk,12718,0,4358_7778195_6042012,4358_356 -4358_80717,205,4358_10692,Swords Bus.Pk,5762,0,4358_7778195_6042019,4358_356 -4358_80717,205,4358_10693,Swords Bus.Pk,5759,0,4358_7778195_6042008,4358_356 -4358_80717,205,4358_10695,Swords Bus.Pk,5808,0,4358_7778195_6042020,4358_356 -4358_80717,96,4358_10696,Swords Bus.Pk,12898,0,4358_7778195_6042009,4358_357 -4358_80717,205,4358_10698,Swords Bus.Pk,5685,0,4358_7778195_6042023,4358_357 -4358_80717,205,4358_10699,Swords Bus.Pk,6474,0,4358_7778195_6043618,4358_356 -4358_80760,205,4358_107,Shaw street,1662,0,4358_7778195_9001003,4358_1 -4358_80757,205,4358_1070,Marino,2194,0,4358_7778195_5123005,4358_39 -4358_80717,205,4358_10700,Swords Bus.Pk,5813,0,4358_7778195_6042021,4358_356 -4358_80717,96,4358_10701,Swords Bus.Pk,12857,0,4358_7778195_6042003,4358_356 -4358_80717,205,4358_10702,Swords Bus.Pk,5920,0,4358_7778195_6042022,4358_356 -4358_80717,96,4358_10704,Swords Bus.Pk,12767,0,4358_7778195_6042018,4358_356 -4358_80717,205,4358_10706,Swords Bus.Pk,5901,0,4358_7778195_6042018,4358_357 -4358_80717,96,4358_10707,Swords Bus.Pk,12758,0,4358_7778195_6042019,4358_356 -4358_80717,205,4358_10708,Swords Bus.Pk,5764,0,4358_7778195_6042019,4358_357 -4358_80757,205,4358_1071,Marino,2312,0,4358_7778195_5123013,4358_39 -4358_80717,96,4358_10710,Swords Bus.Pk,12859,0,4358_7778195_6042003,4358_356 -4358_80717,205,4358_10711,Swords Bus.Pk,5815,0,4358_7778195_6042021,4358_357 -4358_80717,96,4358_10714,Swords Bus.Pk,12760,0,4358_7778195_6042019,4358_356 -4358_80717,205,4358_10715,Swords Bus.Pk,5903,0,4358_7778195_6042018,4358_357 -4358_80717,96,4358_10717,Swords Bus.Pk,12861,0,4358_7778195_6042003,4358_356 -4358_80717,205,4358_10718,Swords Bus.Pk,5817,0,4358_7778195_6042021,4358_357 -4358_80757,96,4358_1072,Marino,9907,0,4358_7778195_5123007,4358_39 -4358_80717,96,4358_10720,Swords Bus.Pk,12762,0,4358_7778195_6042019,4358_356 -4358_80717,205,4358_10721,Swords Bus.Pk,5905,0,4358_7778195_6042018,4358_357 -4358_80717,96,4358_10722,Talbot Street,12877,1,4358_7778195_6042001,4358_359 -4358_80717,205,4358_10723,Talbot Street,5722,1,4358_7778195_6042003,4358_359 -4358_80717,205,4358_10724,Talbot Street,5906,1,4358_7778195_6042006,4358_359 -4358_80717,96,4358_10725,Talbot Street,12848,1,4358_7778195_6042003,4358_359 -4358_80717,205,4358_10726,Talbot Street,5913,1,4358_7778195_6042009,4358_359 -4358_80717,205,4358_10727,Talbot Street,5822,1,4358_7778195_6042013,4358_358 -4358_80717,205,4358_10728,Talbot Street,6473,1,4358_7778195_6043518,4358_359 -4358_80717,205,4358_10729,Talbot Street,5810,1,4358_7778195_6042004,4358_359 -4358_80757,205,4358_1073,Marino,2171,0,4358_7778195_5123006,4358_39 -4358_80717,205,4358_10730,Talbot Street,5768,1,4358_7778195_6042016,4358_358 -4358_80717,205,4358_10731,Talbot Street,5752,1,4358_7778195_6042008,4358_359 -4358_80717,96,4358_10732,Talbot Street,12879,1,4358_7778195_6042001,4358_359 -4358_80717,205,4358_10734,Talbot Street,5736,1,4358_7778195_6042014,4358_360 -4358_80717,205,4358_10735,Talbot Street,5724,1,4358_7778195_6042003,4358_359 -4358_80717,96,4358_10736,Talbot Street,12850,1,4358_7778195_6042003,4358_359 -4358_80717,205,4358_10737,Talbot Street,5908,1,4358_7778195_6042006,4358_360 -4358_80717,205,4358_10739,Talbot Street,5915,1,4358_7778195_6042009,4358_359 -4358_80757,96,4358_1074,Marino,9762,0,4358_7778195_5123003,4358_39 -4358_80717,96,4358_10740,Talbot Street,12764,1,4358_7778195_6042007,4358_359 -4358_80717,205,4358_10742,Talbot Street,5754,1,4358_7778195_6042008,4358_359 -4358_80717,96,4358_10743,Talbot Street,12893,1,4358_7778195_6042009,4358_359 -4358_80717,205,4358_10745,Talbot Street,5910,1,4358_7778195_6042006,4358_359 -4358_80717,96,4358_10746,Talbot Street,12852,1,4358_7778195_6042003,4358_359 -4358_80717,96,4358_10748,Talbot Street,12766,1,4358_7778195_6042007,4358_359 -4358_80717,205,4358_10749,Talbot Street,5917,1,4358_7778195_6042009,4358_360 -4358_80757,205,4358_1075,Marino,2314,0,4358_7778195_5123014,4358_39 -4358_80717,205,4358_10751,Talbot Street,5756,1,4358_7778195_6042008,4358_359 -4358_80717,96,4358_10752,Talbot Street,12895,1,4358_7778195_6042009,4358_360 -4358_80717,96,4358_10754,Talbot Street,12854,1,4358_7778195_6042003,4358_359 -4358_80717,205,4358_10755,Talbot Street,5912,1,4358_7778195_6042006,4358_360 -4358_80717,205,4358_10757,Talbot Street,5898,1,4358_7778195_6042018,4358_359 -4358_80717,96,4358_10758,Talbot Street,12717,1,4358_7778195_6042012,4358_359 -4358_80717,205,4358_10759,Talbot Street,5761,1,4358_7778195_6042019,4358_359 -4358_80757,96,4358_1076,Marino,9899,0,4358_7778195_5123005,4358_39 -4358_80717,205,4358_10761,Talbot Street,5758,1,4358_7778195_6042008,4358_359 -4358_80717,96,4358_10762,Talbot Street,12897,1,4358_7778195_6042009,4358_359 -4358_80717,205,4358_10763,Talbot Street,5807,1,4358_7778195_6042020,4358_359 -4358_80717,205,4358_10765,Talbot Street,5684,1,4358_7778195_6042023,4358_359 -4358_80717,205,4358_10766,Talbot Street,5812,1,4358_7778195_6042021,4358_359 -4358_80717,96,4358_10767,Talbot Street,12856,1,4358_7778195_6042003,4358_359 -4358_80717,205,4358_10769,Talbot Street,5919,1,4358_7778195_6042022,4358_359 -4358_80757,205,4358_1077,Marino,2269,0,4358_7778195_5123008,4358_39 -4358_80717,205,4358_10771,Talbot Street,5900,1,4358_7778195_6042018,4358_360 -4358_80717,96,4358_10772,Talbot Street,12719,1,4358_7778195_6042012,4358_359 -4358_80717,205,4358_10773,Talbot Street,5763,1,4358_7778195_6042019,4358_359 -4358_80717,205,4358_10775,Talbot Street,5760,1,4358_7778195_6042008,4358_359 -4358_80717,96,4358_10776,Talbot Street,12899,1,4358_7778195_6042009,4358_359 -4358_80717,96,4358_10778,Talbot Street,12858,1,4358_7778195_6042003,4358_359 -4358_80717,205,4358_10779,Talbot Street,5814,1,4358_7778195_6042021,4358_360 -4358_80757,205,4358_1078,Marino,2243,0,4358_7778195_5123010,4358_39 -4358_80717,96,4358_10782,Talbot Street,12759,1,4358_7778195_6042019,4358_359 -4358_80717,205,4358_10783,Talbot Street,5902,1,4358_7778195_6042018,4358_360 -4358_80717,96,4358_10785,Talbot Street,12860,1,4358_7778195_6042003,4358_359 -4358_80717,205,4358_10786,Talbot Street,5816,1,4358_7778195_6042021,4358_360 -4358_80717,96,4358_10788,Talbot Street,12761,1,4358_7778195_6042019,4358_359 -4358_80717,205,4358_10789,Talbot Street,5904,1,4358_7778195_6042018,4358_360 -4358_80757,96,4358_1079,Marino,9835,0,4358_7778195_5123006,4358_39 -4358_80717,96,4358_10790,Talbot Street,12862,1,4358_7778195_6042003,4358_359 -4358_80717,205,4358_10791,Talbot Street,5818,1,4358_7778195_6042021,4358_360 -4358_80719,205,4358_10793,Enniskerry,2887,0,4358_7778195_1044001,4358_361 -4358_80719,205,4358_10794,O'Connell Street,7834,0,4358_7778195_8818126,4358_364 -4358_80719,205,4358_10795,Enniskerry,2933,0,4358_7778195_1044004,4358_362 -4358_80719,96,4358_10796,Enniskerry,10646,0,4358_7778195_1044002,4358_363 -4358_80719,205,4358_10797,O'Connell Street,7863,0,4358_7778195_8828104,4358_364 -4358_80719,96,4358_10798,Enniskerry,10603,0,4358_7778195_1044001,4358_362 -4358_80719,205,4358_10799,Enniskerry,2856,0,4358_7778195_1044002,4358_363 -4358_80760,96,4358_108,Shaw street,9330,0,4358_7778195_9001002,4358_1 -4358_80757,205,4358_1080,Marino,2292,0,4358_7778195_5123011,4358_39 -4358_80719,96,4358_10801,Enniskerry,10640,0,4358_7778195_1044003,4358_363 -4358_80719,205,4358_10802,Enniskerry,3039,0,4358_7778195_1044003,4358_365 -4358_80719,205,4358_10803,Enniskerry,2889,0,4358_7778195_1044001,4358_362 -4358_80719,96,4358_10804,Enniskerry,10648,0,4358_7778195_1044002,4358_363 -4358_80719,205,4358_10806,Enniskerry,2935,0,4358_7778195_1044004,4358_362 -4358_80719,96,4358_10808,Enniskerry,10762,0,4358_7778195_1044004,4358_365 -4358_80719,96,4358_10809,Enniskerry,10605,0,4358_7778195_1044001,4358_362 -4358_80757,96,4358_1081,Marino,9918,0,4358_7778195_5123008,4358_39 -4358_80719,205,4358_10811,Enniskerry,2858,0,4358_7778195_1044002,4358_365 -4358_80719,96,4358_10813,Enniskerry,10642,0,4358_7778195_1044003,4358_363 -4358_80719,205,4358_10814,Enniskerry,3041,0,4358_7778195_1044003,4358_365 -4358_80719,205,4358_10815,Enniskerry,2891,0,4358_7778195_1044001,4358_362 -4358_80719,96,4358_10816,Enniskerry,10650,0,4358_7778195_1044002,4358_363 -4358_80719,205,4358_10819,Enniskerry,2947,0,4358_7778195_1044005,4358_363 -4358_80757,205,4358_1082,Marino,2300,0,4358_7778195_5123012,4358_39 -4358_80719,96,4358_10820,Enniskerry,10764,0,4358_7778195_1044004,4358_365 -4358_80719,96,4358_10821,Enniskerry,10607,0,4358_7778195_1044001,4358_362 -4358_80719,205,4358_10823,Enniskerry,2860,0,4358_7778195_1044002,4358_365 -4358_80719,96,4358_10825,Enniskerry,10644,0,4358_7778195_1044003,4358_363 -4358_80719,205,4358_10826,Enniskerry,3043,0,4358_7778195_1044003,4358_365 -4358_80719,96,4358_10827,Enniskerry,10652,0,4358_7778195_1044002,4358_362 -4358_80719,205,4358_10829,Enniskerry,2893,0,4358_7778195_1044001,4358_362 -4358_80757,96,4358_1083,Marino,9847,0,4358_7778195_5123002,4358_39 -4358_80719,205,4358_10831,Enniskerry,2949,0,4358_7778195_1044005,4358_363 -4358_80719,96,4358_10832,Enniskerry,10766,0,4358_7778195_1044004,4358_365 -4358_80719,96,4358_10833,Enniskerry,10609,0,4358_7778195_1044001,4358_362 -4358_80719,205,4358_10835,Enniskerry,2862,0,4358_7778195_1044002,4358_365 -4358_80719,205,4358_10836,Enniskerry,2895,0,4358_7778195_1044001,4358_362 -4358_80719,96,4358_10837,Enniskerry,10654,0,4358_7778195_1044002,4358_363 -4358_80757,205,4358_1084,Marino,2235,0,4358_7778195_5123001,4358_39 -4358_80719,205,4358_10840,Enniskerry,2951,0,4358_7778195_1044005,4358_363 -4358_80719,96,4358_10841,Enniskerry,10768,0,4358_7778195_1044004,4358_365 -4358_80719,205,4358_10842,DCU,2855,1,4358_7778195_1044002,4358_366 -4358_80719,96,4358_10843,DCU,10602,1,4358_7778195_1044001,4358_366 -4358_80719,205,4358_10844,DCU,3038,1,4358_7778195_1044003,4358_366 -4358_80719,96,4358_10845,DCU,10639,1,4358_7778195_1044003,4358_366 -4358_80719,205,4358_10846,DCU,2888,1,4358_7778195_1044001,4358_366 -4358_80719,96,4358_10847,DCU,10647,1,4358_7778195_1044002,4358_366 -4358_80719,205,4358_10849,DCU,2934,1,4358_7778195_1044004,4358_366 -4358_80719,96,4358_10851,DCU,10604,1,4358_7778195_1044001,4358_366 -4358_80719,205,4358_10852,DCU,2857,1,4358_7778195_1044002,4358_366 -4358_80719,96,4358_10854,DCU,10641,1,4358_7778195_1044003,4358_366 -4358_80719,205,4358_10855,DCU,3040,1,4358_7778195_1044003,4358_368 -4358_80719,205,4358_10857,DCU,2890,1,4358_7778195_1044001,4358_366 -4358_80719,96,4358_10858,DCU,10649,1,4358_7778195_1044002,4358_368 -4358_80757,96,4358_1086,Marino,9881,0,4358_7778195_5123001,4358_39 -4358_80719,205,4358_10860,DCU,2946,1,4358_7778195_1044005,4358_366 -4358_80719,96,4358_10861,DCU,10763,1,4358_7778195_1044004,4358_368 -4358_80719,96,4358_10862,DCU,10606,1,4358_7778195_1044001,4358_366 -4358_80719,205,4358_10864,DCU,2859,1,4358_7778195_1044002,4358_370 -4358_80719,96,4358_10866,DCU,10643,1,4358_7778195_1044003,4358_368 -4358_80719,205,4358_10867,DCU,3042,1,4358_7778195_1044003,4358_370 -4358_80719,205,4358_10868,DCU,2892,1,4358_7778195_1044001,4358_366 -4358_80719,96,4358_10869,DCU,10651,1,4358_7778195_1044002,4358_368 -4358_80757,205,4358_1087,Marino,2247,0,4358_7778195_5123002,4358_39 -4358_80719,205,4358_10872,DCU,2948,1,4358_7778195_1044005,4358_368 -4358_80719,96,4358_10873,DCU,10765,1,4358_7778195_1044004,4358_370 -4358_80719,96,4358_10874,DCU,10608,1,4358_7778195_1044001,4358_366 -4358_80719,205,4358_10876,DCU,2861,1,4358_7778195_1044002,4358_366 -4358_80719,96,4358_10878,DCU,10645,1,4358_7778195_1044003,4358_368 -4358_80719,205,4358_10879,DCU,3044,1,4358_7778195_1044003,4358_366 -4358_80757,205,4358_1088,Marino,2213,0,4358_7778195_5123015,4358_39 -4358_80719,205,4358_10880,DCU,2894,1,4358_7778195_1044001,4358_366 -4358_80719,96,4358_10881,DCU,10653,1,4358_7778195_1044002,4358_368 -4358_80719,205,4358_10884,DCU,2950,1,4358_7778195_1044005,4358_368 -4358_80719,96,4358_10885,DCU,10767,1,4358_7778195_1044004,4358_370 -4358_80719,96,4358_10886,DCU,10610,1,4358_7778195_1044001,4358_366 -4358_80719,205,4358_10888,DCU,2863,1,4358_7778195_1044002,4358_370 -4358_80719,205,4358_10889,Dundrum Road,2896,1,4358_7778195_1044001,4358_367 -4358_80757,96,4358_1089,Marino,9791,0,4358_7778195_5123004,4358_39 -4358_80719,96,4358_10890,Dundrum Road,10655,1,4358_7778195_1044002,4358_369 -4358_80720,205,4358_10892,Glencullen,3089,0,4358_7778195_1821106,4358_372 -4358_80720,205,4358_10893,Glencullen,3091,0,4358_7778195_1821106,4358_372 -4358_80720,205,4358_10894,Glencullen,3093,0,4358_7778195_1821106,4358_372 -4358_80720,205,4358_10895,Glencullen,3164,0,4358_7778195_1821206,4358_372 -4358_80720,205,4358_10896,Glencullen,3166,0,4358_7778195_1821206,4358_372 -4358_80720,205,4358_10897,Dundrum Luas,3090,1,4358_7778195_1821106,4358_373 -4358_80720,205,4358_10898,Dundrum Luas,3092,1,4358_7778195_1821106,4358_373 -4358_80720,205,4358_10899,Dundrum Luas,3094,1,4358_7778195_1821106,4358_373 -4358_80760,205,4358_109,Shaw street,1596,0,4358_7778195_9001005,4358_1 -4358_80720,205,4358_10900,Dundrum Luas,3165,1,4358_7778195_1821206,4358_373 -4358_80720,205,4358_10901,Dundrum Luas,3167,1,4358_7778195_1821206,4358_373 -4358_80718,205,4358_10902,Dundrum Luas,2959,0,4358_7778195_1044006,4358_374 -4358_80718,205,4358_10903,O'Connell Street,3169,1,4358_7778195_1014003,4358_375 -4358_80718,205,4358_10904,O'Connell Street,3174,1,4358_7778195_1074005,4358_375 -4358_80721,205,4358_10905,UCD,550,0,4358_7778195_2832101,4358_381 -4358_80721,205,4358_10906,Dun Laoghaire,252,0,4358_7778195_2046004,4358_376 -4358_80721,205,4358_10907,Dun Laoghaire,337,0,4358_7778195_2046007,4358_376 -4358_80721,205,4358_10908,Dun Laoghaire,535,0,4358_7778195_2046009,4358_376 -4358_80721,205,4358_10909,Dun Laoghaire,213,0,4358_7778195_2046011,4358_376 -4358_80757,205,4358_1091,Marino,2257,0,4358_7778195_5123004,4358_40 -4358_80721,205,4358_10910,Dun Laoghaire,240,0,4358_7778195_2046006,4358_376 -4358_80721,205,4358_10911,Dun Laoghaire,452,0,4358_7778195_2046013,4358_376 -4358_80721,205,4358_10912,Dun Laoghaire,430,0,4358_7778195_2046015,4358_376 -4358_80721,96,4358_10913,Dun Laoghaire,8102,0,4358_7778195_2046001,4358_376 -4358_80721,205,4358_10914,Dun Laoghaire,472,0,4358_7778195_2046016,4358_376 -4358_80721,205,4358_10915,Dun Laoghaire,479,0,4358_7778195_2046018,4358_376 -4358_80721,96,4358_10916,Dun Laoghaire,8129,0,4358_7778195_2046003,4358_376 -4358_80721,205,4358_10917,Dun Laoghaire,221,0,4358_7778195_2046001,4358_376 -4358_80721,205,4358_10918,Dun Laoghaire,386,0,4358_7778195_2046020,4358_384 -4358_80721,205,4358_10919,Dun Laoghaire,510,0,4358_7778195_2046002,4358_376 -4358_80757,96,4358_1092,Marino,9909,0,4358_7778195_5123007,4358_39 -4358_80721,96,4358_10920,Dun Laoghaire,8163,0,4358_7778195_2046005,4358_376 -4358_80721,205,4358_10921,Dun Laoghaire,446,0,4358_7778195_2046003,4358_376 -4358_80721,205,4358_10922,Dun Laoghaire,525,0,4358_7778195_2046005,4358_376 -4358_80721,96,4358_10923,Dun Laoghaire,8183,0,4358_7778195_2046007,4358_376 -4358_80721,205,4358_10924,Dun Laoghaire,278,0,4358_7778195_2046008,4358_376 -4358_80721,205,4358_10925,Dun Laoghaire,322,0,4358_7778195_2046010,4358_376 -4358_80721,96,4358_10926,Dun Laoghaire,8083,0,4358_7778195_2046009,4358_378 -4358_80721,205,4358_10927,Dun Laoghaire,285,0,4358_7778195_2046022,4358_376 -4358_80721,96,4358_10928,Dun Laoghaire,8121,0,4358_7778195_2046002,4358_376 -4358_80721,205,4358_10929,Dun Laoghaire,202,0,4358_7778195_2046012,4358_376 -4358_80757,205,4358_1093,Marino,2225,0,4358_7778195_5123007,4358_39 -4358_80721,96,4358_10930,Dun Laoghaire,8111,0,4358_7778195_2046011,4358_376 -4358_80721,205,4358_10931,Dun Laoghaire,348,0,4358_7778195_2046024,4358_376 -4358_80721,96,4358_10933,Dun Laoghaire,8152,0,4358_7778195_2046004,4358_378 -4358_80721,205,4358_10934,Dun Laoghaire,420,0,4358_7778195_2046014,4358_376 -4358_80721,96,4358_10935,Dun Laoghaire,8175,0,4358_7778195_2046006,4358_376 -4358_80721,205,4358_10936,Dun Laoghaire,462,0,4358_7778195_2046017,4358_378 -4358_80721,205,4358_10937,Dun Laoghaire,438,0,4358_7778195_2046025,4358_376 -4358_80721,96,4358_10938,Dun Laoghaire,8211,0,4358_7778195_2046013,4358_376 -4358_80757,96,4358_1094,Marino,9764,0,4358_7778195_5123003,4358_39 -4358_80721,205,4358_10940,Dun Laoghaire,6634,0,4358_7778195_2822109,4358_382 -4358_80721,205,4358_10941,Dun Laoghaire,120,0,4358_7778195_2822108,4358_382 -4358_80721,205,4358_10942,Dun Laoghaire,491,0,4358_7778195_2046019,4358_376 -4358_80721,96,4358_10943,Dun Laoghaire,7983,0,4358_7778195_2046008,4358_376 -4358_80721,205,4358_10944,Dun Laoghaire,254,0,4358_7778195_2046004,4358_376 -4358_80721,96,4358_10946,Dun Laoghaire,8141,0,4358_7778195_2046014,4358_378 -4358_80721,205,4358_10947,Dun Laoghaire,339,0,4358_7778195_2046007,4358_376 -4358_80721,205,4358_10948,Dun Laoghaire,413,0,4358_7778195_2046023,4358_376 -4358_80721,96,4358_10949,Dun Laoghaire,8195,0,4358_7778195_2046010,4358_378 -4358_80757,205,4358_1095,Marino,2280,0,4358_7778195_5123009,4358_39 -4358_80721,205,4358_10950,Dun Laoghaire,537,0,4358_7778195_2046009,4358_376 -4358_80721,96,4358_10951,Dun Laoghaire,8104,0,4358_7778195_2046001,4358_376 -4358_80721,205,4358_10953,Dun Laoghaire,215,0,4358_7778195_2046011,4358_376 -4358_80721,96,4358_10954,Dun Laoghaire,8131,0,4358_7778195_2046003,4358_376 -4358_80721,205,4358_10955,Dun Laoghaire,500,0,4358_7778195_2046021,4358_376 -4358_80721,96,4358_10957,Dun Laoghaire,8206,0,4358_7778195_2046012,4358_376 -4358_80721,205,4358_10958,Dun Laoghaire,242,0,4358_7778195_2046006,4358_376 -4358_80721,205,4358_10959,Dun Laoghaire,454,0,4358_7778195_2046013,4358_376 -4358_80721,96,4358_10961,Dun Laoghaire,8165,0,4358_7778195_2046005,4358_379 -4358_80721,205,4358_10962,Dun Laoghaire,432,0,4358_7778195_2046015,4358_376 -4358_80721,96,4358_10963,Dun Laoghaire,8185,0,4358_7778195_2046007,4358_376 -4358_80721,205,4358_10965,Dun Laoghaire,474,0,4358_7778195_2046016,4358_376 -4358_80721,96,4358_10966,Dun Laoghaire,8222,0,4358_7778195_2046015,4358_376 -4358_80721,205,4358_10967,Dun Laoghaire,388,0,4358_7778195_2046020,4358_376 -4358_80721,96,4358_10968,Dun Laoghaire,8085,0,4358_7778195_2046009,4358_376 -4358_80757,96,4358_1097,Marino,9901,0,4358_7778195_5123005,4358_39 -4358_80721,205,4358_10970,Dun Laoghaire,481,0,4358_7778195_2046018,4358_376 -4358_80721,96,4358_10971,Dun Laoghaire,8123,0,4358_7778195_2046002,4358_376 -4358_80721,205,4358_10972,Dun Laoghaire,223,0,4358_7778195_2046001,4358_378 -4358_80721,205,4358_10974,Dun Laoghaire,366,0,4358_7778195_2046027,4358_376 -4358_80721,96,4358_10975,Dun Laoghaire,8238,0,4358_7778195_2046017,4358_376 -4358_80721,205,4358_10976,Dun Laoghaire,512,0,4358_7778195_2046002,4358_376 -4358_80721,96,4358_10977,Dun Laoghaire,8113,0,4358_7778195_2046011,4358_376 -4358_80721,205,4358_10979,Dun Laoghaire,448,0,4358_7778195_2046003,4358_376 -4358_80757,205,4358_1098,Marino,2117,0,4358_7778195_5123003,4358_39 -4358_80721,96,4358_10980,Dun Laoghaire,8154,0,4358_7778195_2046004,4358_376 -4358_80721,205,4358_10981,Dun Laoghaire,527,0,4358_7778195_2046005,4358_376 -4358_80721,205,4358_10983,Dun Laoghaire,280,0,4358_7778195_2046008,4358_376 -4358_80721,96,4358_10984,Dun Laoghaire,8177,0,4358_7778195_2046006,4358_378 -4358_80721,205,4358_10985,Dun Laoghaire,287,0,4358_7778195_2046022,4358_376 -4358_80721,96,4358_10986,Dun Laoghaire,8229,0,4358_7778195_2046016,4358_376 -4358_80721,205,4358_10988,Dun Laoghaire,350,0,4358_7778195_2046024,4358_376 -4358_80721,96,4358_10989,Dun Laoghaire,8213,0,4358_7778195_2046013,4358_376 -4358_80757,205,4358_1099,Marino,2196,0,4358_7778195_5123005,4358_39 -4358_80721,205,4358_10990,Dun Laoghaire,422,0,4358_7778195_2046014,4358_376 -4358_80721,96,4358_10992,Dun Laoghaire,7985,0,4358_7778195_2046008,4358_376 -4358_80721,205,4358_10993,Dun Laoghaire,464,0,4358_7778195_2046017,4358_376 -4358_80721,205,4358_10994,Dun Laoghaire,440,0,4358_7778195_2046025,4358_376 -4358_80721,96,4358_10996,Dun Laoghaire,8143,0,4358_7778195_2046014,4358_379 -4358_80721,205,4358_10997,Dun Laoghaire,493,0,4358_7778195_2046019,4358_376 -4358_80721,96,4358_10998,Dun Laoghaire,8197,0,4358_7778195_2046010,4358_376 -4358_80760,205,4358_11,Shaw street,1697,0,4358_7778195_9001008,4358_1 -4358_80757,96,4358_1100,Marino,9837,0,4358_7778195_5123006,4358_39 -4358_80721,205,4358_11000,Dun Laoghaire,256,0,4358_7778195_2046004,4358_376 -4358_80721,96,4358_11001,Dun Laoghaire,8106,0,4358_7778195_2046001,4358_376 -4358_80721,205,4358_11003,Dun Laoghaire,341,0,4358_7778195_2046007,4358_376 -4358_80721,96,4358_11005,Dun Laoghaire,8246,0,4358_7778195_2046019,4358_378 -4358_80721,205,4358_11006,Dun Laoghaire,415,0,4358_7778195_2046023,4358_376 -4358_80721,96,4358_11007,Dun Laoghaire,8133,0,4358_7778195_2046003,4358_376 -4358_80721,205,4358_11009,Dun Laoghaire,539,0,4358_7778195_2046009,4358_379 -4358_80721,205,4358_11010,Dun Laoghaire,543,0,4358_7778195_2046028,4358_376 -4358_80721,96,4358_11011,Dun Laoghaire,8001,0,4358_7778195_2046018,4358_376 -4358_80721,205,4358_11013,Dun Laoghaire,502,0,4358_7778195_2046021,4358_376 -4358_80721,96,4358_11014,Dun Laoghaire,8208,0,4358_7778195_2046012,4358_376 -4358_80721,205,4358_11016,Dun Laoghaire,244,0,4358_7778195_2046006,4358_376 -4358_80721,96,4358_11018,Dun Laoghaire,8167,0,4358_7778195_2046005,4358_378 -4358_80721,205,4358_11019,Dun Laoghaire,456,0,4358_7778195_2046013,4358_376 -4358_80757,205,4358_1102,Marino,2173,0,4358_7778195_5123006,4358_40 -4358_80721,205,4358_11020,Dun Laoghaire,434,0,4358_7778195_2046015,4358_376 -4358_80721,96,4358_11021,Dun Laoghaire,8187,0,4358_7778195_2046007,4358_378 -4358_80721,205,4358_11023,Dun Laoghaire,476,0,4358_7778195_2046016,4358_376 -4358_80721,96,4358_11024,Dun Laoghaire,8224,0,4358_7778195_2046015,4358_376 -4358_80721,205,4358_11026,Dun Laoghaire,390,0,4358_7778195_2046020,4358_376 -4358_80721,96,4358_11027,Dun Laoghaire,8087,0,4358_7778195_2046009,4358_376 -4358_80721,205,4358_11029,Dun Laoghaire,483,0,4358_7778195_2046018,4358_376 -4358_80757,96,4358_1103,Marino,9771,0,4358_7778195_5123010,4358_39 -4358_80721,96,4358_11031,Dun Laoghaire,8125,0,4358_7778195_2046002,4358_378 -4358_80721,205,4358_11032,Dun Laoghaire,225,0,4358_7778195_2046001,4358_376 -4358_80721,205,4358_11034,Dun Laoghaire,368,0,4358_7778195_2046027,4358_378 -4358_80721,96,4358_11035,Dun Laoghaire,8240,0,4358_7778195_2046017,4358_379 -4358_80721,205,4358_11036,Dun Laoghaire,514,0,4358_7778195_2046002,4358_376 -4358_80721,96,4358_11037,Dun Laoghaire,8115,0,4358_7778195_2046011,4358_376 -4358_80721,205,4358_11039,Dun Laoghaire,450,0,4358_7778195_2046003,4358_376 -4358_80757,205,4358_1104,Marino,2316,0,4358_7778195_5123014,4358_39 -4358_80721,96,4358_11041,Dun Laoghaire,8156,0,4358_7778195_2046004,4358_378 -4358_80721,205,4358_11042,Dun Laoghaire,529,0,4358_7778195_2046005,4358_376 -4358_80721,96,4358_11043,Dun Laoghaire,8179,0,4358_7778195_2046006,4358_376 -4358_80721,205,4358_11045,Dun Laoghaire,282,0,4358_7778195_2046008,4358_376 -4358_80721,96,4358_11046,Dun Laoghaire,8231,0,4358_7778195_2046016,4358_376 -4358_80721,205,4358_11047,Dun Laoghaire,289,0,4358_7778195_2046022,4358_378 -4358_80721,205,4358_11049,Dun Laoghaire,352,0,4358_7778195_2046024,4358_376 -4358_80721,96,4358_11050,Dun Laoghaire,8215,0,4358_7778195_2046013,4358_376 -4358_80721,205,4358_11052,Dun Laoghaire,424,0,4358_7778195_2046014,4358_376 -4358_80721,96,4358_11054,Dun Laoghaire,7987,0,4358_7778195_2046008,4358_378 -4358_80721,205,4358_11055,Dun Laoghaire,466,0,4358_7778195_2046017,4358_376 -4358_80721,96,4358_11057,Dun Laoghaire,8145,0,4358_7778195_2046014,4358_378 -4358_80721,205,4358_11058,Dun Laoghaire,263,0,4358_7778195_2046029,4358_376 -4358_80721,205,4358_11059,Dun Laoghaire,442,0,4358_7778195_2046025,4358_376 -4358_80757,96,4358_1106,Marino,9921,0,4358_7778195_5123009,4358_40 -4358_80721,96,4358_11061,Dun Laoghaire,8199,0,4358_7778195_2046010,4358_379 -4358_80721,205,4358_11062,Dun Laoghaire,495,0,4358_7778195_2046019,4358_376 -4358_80721,96,4358_11063,Dun Laoghaire,8108,0,4358_7778195_2046001,4358_376 -4358_80721,205,4358_11065,Dun Laoghaire,517,0,4358_7778195_2046030,4358_376 -4358_80721,96,4358_11067,Dun Laoghaire,8248,0,4358_7778195_2046019,4358_378 -4358_80721,205,4358_11068,Dun Laoghaire,258,0,4358_7778195_2046004,4358_376 -4358_80721,96,4358_11069,Dun Laoghaire,8135,0,4358_7778195_2046003,4358_376 -4358_80757,205,4358_1107,Marino,2090,0,4358_7778195_5123016,4358_39 -4358_80721,205,4358_11071,Dun Laoghaire,343,0,4358_7778195_2046007,4358_376 -4358_80721,205,4358_11072,Dun Laoghaire,331,0,4358_7778195_2046031,4358_376 -4358_80721,96,4358_11074,Dun Laoghaire,8003,0,4358_7778195_2046018,4358_379 -4358_80721,205,4358_11075,Dun Laoghaire,417,0,4358_7778195_2046023,4358_376 -4358_80721,96,4358_11076,Dun Laoghaire,8210,0,4358_7778195_2046012,4358_376 -4358_80721,205,4358_11078,Dun Laoghaire,541,0,4358_7778195_2046009,4358_376 -4358_80721,96,4358_11079,Dun Laoghaire,8255,0,4358_7778195_2046020,4358_376 -4358_80757,96,4358_1108,Marino,9849,0,4358_7778195_5123002,4358_39 -4358_80721,205,4358_11081,Dun Laoghaire,545,0,4358_7778195_2046028,4358_376 -4358_80721,96,4358_11082,Dun Laoghaire,8169,0,4358_7778195_2046005,4358_376 -4358_80721,205,4358_11084,Dun Laoghaire,504,0,4358_7778195_2046021,4358_376 -4358_80721,205,4358_11085,Dun Laoghaire,246,0,4358_7778195_2046006,4358_376 -4358_80721,96,4358_11086,Dun Laoghaire,8189,0,4358_7778195_2046007,4358_378 -4358_80721,205,4358_11088,Dun Laoghaire,6428,0,4358_7778195_2822204,4358_376 -4358_80721,205,4358_11089,Dun Laoghaire,458,0,4358_7778195_2046013,4358_376 -4358_80757,205,4358_1109,Marino,2271,0,4358_7778195_5123008,4358_39 -4358_80721,96,4358_11091,Dun Laoghaire,8226,0,4358_7778195_2046015,4358_378 -4358_80721,205,4358_11092,Dun Laoghaire,469,0,4358_7778195_2046032,4358_376 -4358_80721,96,4358_11094,Dun Laoghaire,8089,0,4358_7778195_2046009,4358_378 -4358_80721,205,4358_11095,Dun Laoghaire,436,0,4358_7778195_2046015,4358_376 -4358_80721,96,4358_11097,Dun Laoghaire,8127,0,4358_7778195_2046002,4358_378 -4358_80721,205,4358_11098,Dun Laoghaire,478,0,4358_7778195_2046016,4358_376 -4358_80760,96,4358_111,Shaw street,9392,0,4358_7778195_9001001,4358_1 -4358_80721,96,4358_11100,Dun Laoghaire,8242,0,4358_7778195_2046017,4358_378 -4358_80721,205,4358_11101,Dun Laoghaire,392,0,4358_7778195_2046020,4358_379 -4358_80721,205,4358_11102,Dun Laoghaire,485,0,4358_7778195_2046018,4358_376 -4358_80721,96,4358_11103,Dun Laoghaire,8117,0,4358_7778195_2046011,4358_376 -4358_80721,205,4358_11105,Dun Laoghaire,227,0,4358_7778195_2046001,4358_376 -4358_80721,96,4358_11107,Dun Laoghaire,8158,0,4358_7778195_2046004,4358_378 -4358_80721,205,4358_11108,Dun Laoghaire,370,0,4358_7778195_2046027,4358_376 -4358_80757,205,4358_1111,Marino,2294,0,4358_7778195_5123011,4358_39 -4358_80721,96,4358_11110,Dun Laoghaire,8181,0,4358_7778195_2046006,4358_378 -4358_80721,205,4358_11111,Dun Laoghaire,516,0,4358_7778195_2046002,4358_376 -4358_80721,96,4358_11112,Dun Laoghaire,8233,0,4358_7778195_2046016,4358_376 -4358_80721,205,4358_11113,Dun Laoghaire,531,0,4358_7778195_2046005,4358_378 -4358_80721,205,4358_11115,Dun Laoghaire,284,0,4358_7778195_2046008,4358_376 -4358_80721,96,4358_11116,Dun Laoghaire,8217,0,4358_7778195_2046013,4358_376 -4358_80721,205,4358_11118,Dun Laoghaire,291,0,4358_7778195_2046022,4358_376 -4358_80757,96,4358_1112,Marino,9883,0,4358_7778195_5123001,4358_39 -4358_80721,96,4358_11120,Dun Laoghaire,7989,0,4358_7778195_2046008,4358_378 -4358_80721,205,4358_11121,Dun Laoghaire,354,0,4358_7778195_2046024,4358_376 -4358_80721,96,4358_11123,Dun Laoghaire,8147,0,4358_7778195_2046014,4358_378 -4358_80721,205,4358_11124,Dun Laoghaire,426,0,4358_7778195_2046014,4358_376 -4358_80721,96,4358_11126,Dun Laoghaire,8201,0,4358_7778195_2046010,4358_378 -4358_80721,205,4358_11127,Dun Laoghaire,468,0,4358_7778195_2046017,4358_379 -4358_80721,205,4358_11128,Dun Laoghaire,265,0,4358_7778195_2046029,4358_376 -4358_80721,96,4358_11129,Dun Laoghaire,8110,0,4358_7778195_2046001,4358_376 -4358_80757,205,4358_1113,Marino,2302,0,4358_7778195_5123012,4358_39 -4358_80721,205,4358_11131,Dun Laoghaire,444,0,4358_7778195_2046025,4358_376 -4358_80721,96,4358_11133,Dun Laoghaire,8250,0,4358_7778195_2046019,4358_378 -4358_80721,205,4358_11134,Dun Laoghaire,497,0,4358_7778195_2046019,4358_376 -4358_80721,96,4358_11135,Dun Laoghaire,8137,0,4358_7778195_2046003,4358_376 -4358_80721,205,4358_11136,Dun Laoghaire,519,0,4358_7778195_2046030,4358_378 -4358_80721,96,4358_11138,Dun Laoghaire,8257,0,4358_7778195_2046020,4358_376 -4358_80721,205,4358_11139,Dun Laoghaire,231,0,4358_7778195_2046033,4358_378 -4358_80721,205,4358_11140,Dun Laoghaire,260,0,4358_7778195_2046004,4358_376 -4358_80721,96,4358_11141,Dun Laoghaire,8171,0,4358_7778195_2046005,4358_378 -4358_80721,205,4358_11143,Dun Laoghaire,333,0,4358_7778195_2046031,4358_376 -4358_80721,96,4358_11145,Dun Laoghaire,8191,0,4358_7778195_2046007,4358_378 -4358_80721,205,4358_11146,Dun Laoghaire,547,0,4358_7778195_2046028,4358_376 -4358_80721,205,4358_11147,Dun Laoghaire,506,0,4358_7778195_2046021,4358_376 -4358_80721,96,4358_11149,Dun Laoghaire,8091,0,4358_7778195_2046009,4358_379 -4358_80757,96,4358_1115,Marino,9793,0,4358_7778195_5123004,4358_39 -4358_80721,205,4358_11150,Dun Laoghaire,460,0,4358_7778195_2046013,4358_376 -4358_80721,96,4358_11152,Dun Laoghaire,8244,0,4358_7778195_2046017,4358_378 -4358_80721,205,4358_11153,Dun Laoghaire,471,0,4358_7778195_2046032,4358_376 -4358_80721,96,4358_11154,Dun Laoghaire,8119,0,4358_7778195_2046011,4358_376 -4358_80721,205,4358_11156,Dun Laoghaire,394,0,4358_7778195_2046020,4358_379 -4358_80721,205,4358_11157,Dun Laoghaire,487,0,4358_7778195_2046018,4358_376 -4358_80721,96,4358_11159,Dun Laoghaire,8160,0,4358_7778195_2046004,4358_378 -4358_80757,205,4358_1116,Marino,2237,0,4358_7778195_5123001,4358_39 -4358_80721,205,4358_11160,Dun Laoghaire,229,0,4358_7778195_2046001,4358_376 -4358_80721,96,4358_11161,Dun Laoghaire,8235,0,4358_7778195_2046016,4358_376 -4358_80721,205,4358_11163,Dun Laoghaire,372,0,4358_7778195_2046027,4358_379 -4358_80721,205,4358_11164,Dun Laoghaire,533,0,4358_7778195_2046005,4358_376 -4358_80721,96,4358_11165,Dun Laoghaire,8219,0,4358_7778195_2046013,4358_378 -4358_80721,205,4358_11167,Dun Laoghaire,428,0,4358_7778195_2046014,4358_376 -4358_80721,96,4358_11168,Dun Laoghaire,8149,0,4358_7778195_2046014,4358_378 -4358_80757,96,4358_1117,Marino,9911,0,4358_7778195_5123007,4358_39 -4358_80721,205,4358_11170,Dun Laoghaire,267,0,4358_7778195_2046029,4358_376 -4358_80721,96,4358_11172,Dun Laoghaire,8203,0,4358_7778195_2046010,4358_379 -4358_80721,205,4358_11173,Dun Laoghaire,521,0,4358_7778195_2046030,4358_376 -4358_80721,96,4358_11174,Dun Laoghaire,8252,0,4358_7778195_2046019,4358_378 -4358_80721,205,4358_11177,Dun Laoghaire,335,0,4358_7778195_2046031,4358_378 -4358_80721,96,4358_11178,Dun Laoghaire,8139,0,4358_7778195_2046003,4358_379 -4358_80721,205,4358_11180,Dun Laoghaire,549,0,4358_7778195_2046028,4358_378 -4358_80721,96,4358_11181,Dun Laoghaire,8173,0,4358_7778195_2046005,4358_379 -4358_80721,205,4358_11182,Dun Laoghaire,508,0,4358_7778195_2046021,4358_376 -4358_80721,96,4358_11184,Dun Laoghaire,8193,0,4358_7778195_2046007,4358_379 -4358_80721,96,4358_11185,Dun Laoghaire,8093,0,4358_7778195_2046009,4358_376 -4358_80721,205,4358_11187,Dun Laoghaire,396,0,4358_7778195_2046020,4358_379 -4358_80721,205,4358_11189,Dun Laoghaire,489,0,4358_7778195_2046018,4358_378 -4358_80757,205,4358_1119,Marino,2249,0,4358_7778195_5123002,4358_39 -4358_80721,96,4358_11190,Dun Laoghaire,8162,0,4358_7778195_2046004,4358_379 -4358_80721,96,4358_11191,D'Olier St,8237,0,4358_7778195_2046016,4358_377 -4358_80721,205,4358_11193,D'Olier St,374,0,4358_7778195_2046027,4358_383 -4358_80721,205,4358_11194,Phoenix Pk,220,1,4358_7778195_2046001,4358_385 -4358_80721,205,4358_11195,Phoenix Pk,239,1,4358_7778195_2046006,4358_389 -4358_80721,205,4358_11196,Phoenix Pk,509,1,4358_7778195_2046002,4358_385 -4358_80721,205,4358_11197,Phoenix Pk,445,1,4358_7778195_2046003,4358_385 -4358_80721,205,4358_11198,Phoenix Pk,524,1,4358_7778195_2046005,4358_385 -4358_80721,205,4358_11199,Phoenix Pk,277,1,4358_7778195_2046008,4358_385 -4358_80760,205,4358_112,Shaw street,1731,0,4358_7778195_9001013,4358_1 -4358_80757,96,4358_1120,Marino,9766,0,4358_7778195_5123003,4358_39 -4358_80721,205,4358_11200,Phoenix Pk,321,1,4358_7778195_2046010,4358_385 -4358_80721,205,4358_11201,Phoenix Pk,201,1,4358_7778195_2046012,4358_385 -4358_80721,205,4358_11202,Phoenix Pk,419,1,4358_7778195_2046014,4358_385 -4358_80721,96,4358_11203,Phoenix Pk,8120,1,4358_7778195_2046002,4358_386 -4358_80721,205,4358_11204,Phoenix Pk,461,1,4358_7778195_2046017,4358_385 -4358_80721,96,4358_11205,Phoenix Pk,8151,1,4358_7778195_2046004,4358_385 -4358_80721,205,4358_11206,Phoenix Pk,490,1,4358_7778195_2046019,4358_385 -4358_80721,205,4358_11207,Phoenix Pk,253,1,4358_7778195_2046004,4358_385 -4358_80721,96,4358_11208,Phoenix Pk,8174,1,4358_7778195_2046006,4358_385 -4358_80721,205,4358_11209,Phoenix Pk,338,1,4358_7778195_2046007,4358_385 -4358_80757,205,4358_1121,Marino,2215,0,4358_7778195_5123015,4358_39 -4358_80721,205,4358_11210,Phoenix Pk,536,1,4358_7778195_2046009,4358_385 -4358_80721,96,4358_11211,Phoenix Pk,7982,1,4358_7778195_2046008,4358_385 -4358_80721,205,4358_11212,Phoenix Pk,214,1,4358_7778195_2046011,4358_385 -4358_80721,205,4358_11213,Phoenix Pk,499,1,4358_7778195_2046021,4358_385 -4358_80721,205,4358_11214,Phoenix Park,412,1,4358_7778195_2046023,4358_387 -4358_80721,96,4358_11215,Phoenix Pk,8194,1,4358_7778195_2046010,4358_385 -4358_80721,205,4358_11216,Phoenix Pk,241,1,4358_7778195_2046006,4358_385 -4358_80721,96,4358_11217,Phoenix Pk,8103,1,4358_7778195_2046001,4358_385 -4358_80721,205,4358_11218,Phoenix Pk,453,1,4358_7778195_2046013,4358_385 -4358_80721,205,4358_11219,Phoenix Pk,431,1,4358_7778195_2046015,4358_385 -4358_80721,96,4358_11220,Phoenix Pk,8130,1,4358_7778195_2046003,4358_386 -4358_80721,205,4358_11221,Phoenix Pk,473,1,4358_7778195_2046016,4358_385 -4358_80721,96,4358_11222,Phoenix Pk,8205,1,4358_7778195_2046012,4358_385 -4358_80721,205,4358_11224,Phoenix Pk,387,1,4358_7778195_2046020,4358_385 -4358_80721,96,4358_11225,Phoenix Pk,8164,1,4358_7778195_2046005,4358_385 -4358_80721,205,4358_11226,Phoenix Pk,480,1,4358_7778195_2046018,4358_385 -4358_80721,96,4358_11227,Phoenix Pk,8184,1,4358_7778195_2046007,4358_385 -4358_80721,205,4358_11229,Phoenix Pk,523,1,4358_7778195_2046026,4358_385 -4358_80757,205,4358_1123,Marino,2259,0,4358_7778195_5123004,4358_39 -4358_80721,96,4358_11230,Phoenix Pk,8221,1,4358_7778195_2046015,4358_385 -4358_80721,205,4358_11231,Phoenix Pk,222,1,4358_7778195_2046001,4358_386 -4358_80721,205,4358_11232,Phoenix Pk,365,1,4358_7778195_2046027,4358_385 -4358_80721,96,4358_11233,Phoenix Pk,8084,1,4358_7778195_2046009,4358_385 -4358_80721,205,4358_11235,Phoenix Pk,511,1,4358_7778195_2046002,4358_385 -4358_80721,96,4358_11236,Phoenix Pk,8122,1,4358_7778195_2046002,4358_385 -4358_80721,205,4358_11237,Phoenix Pk,447,1,4358_7778195_2046003,4358_385 -4358_80721,96,4358_11238,Phoenix Pk,8112,1,4358_7778195_2046011,4358_385 -4358_80757,96,4358_1124,Marino,9903,0,4358_7778195_5123011,4358_39 -4358_80721,205,4358_11240,Phoenix Pk,526,1,4358_7778195_2046005,4358_385 -4358_80721,205,4358_11241,Phoenix Pk,279,1,4358_7778195_2046008,4358_385 -4358_80721,96,4358_11242,Phoenix Pk,8153,1,4358_7778195_2046004,4358_386 -4358_80721,205,4358_11244,Phoenix Pk,286,1,4358_7778195_2046022,4358_385 -4358_80721,96,4358_11245,Phoenix Pk,8176,1,4358_7778195_2046006,4358_385 -4358_80721,205,4358_11246,Phoenix Pk,203,1,4358_7778195_2046012,4358_385 -4358_80721,96,4358_11247,Phoenix Pk,8228,1,4358_7778195_2046016,4358_385 -4358_80721,205,4358_11249,Phoenix Pk,349,1,4358_7778195_2046024,4358_385 -4358_80757,205,4358_1125,Marino,2227,0,4358_7778195_5123007,4358_39 -4358_80721,96,4358_11250,Phoenix Pk,8212,1,4358_7778195_2046013,4358_385 -4358_80721,205,4358_11251,Phoenix Pk,421,1,4358_7778195_2046014,4358_385 -4358_80721,96,4358_11253,Phoenix Pk,7984,1,4358_7778195_2046008,4358_385 -4358_80721,205,4358_11254,Phoenix Pk,463,1,4358_7778195_2046017,4358_386 -4358_80721,205,4358_11255,Phoenix Pk,439,1,4358_7778195_2046025,4358_385 -4358_80721,96,4358_11257,Phoenix Pk,8142,1,4358_7778195_2046014,4358_386 -4358_80721,205,4358_11258,Phoenix Pk,492,1,4358_7778195_2046019,4358_385 -4358_80721,96,4358_11259,Phoenix Pk,8196,1,4358_7778195_2046010,4358_385 -4358_80721,205,4358_11260,Phoenix Pk,255,1,4358_7778195_2046004,4358_385 -4358_80721,96,4358_11262,Phoenix Pk,8105,1,4358_7778195_2046001,4358_385 -4358_80721,205,4358_11263,Phoenix Pk,340,1,4358_7778195_2046007,4358_385 -4358_80721,205,4358_11264,Phoenix Pk,414,1,4358_7778195_2046023,4358_385 -4358_80721,96,4358_11266,Phoenix Pk,8132,1,4358_7778195_2046003,4358_390 -4358_80721,205,4358_11267,Phoenix Pk,538,1,4358_7778195_2046009,4358_385 -4358_80721,96,4358_11268,Phoenix Pk,8000,1,4358_7778195_2046018,4358_385 -4358_80757,96,4358_1127,Marino,9839,0,4358_7778195_5123006,4358_39 -4358_80721,205,4358_11270,Phoenix Pk,501,1,4358_7778195_2046021,4358_385 -4358_80721,96,4358_11271,Phoenix Pk,8207,1,4358_7778195_2046012,4358_385 -4358_80721,205,4358_11272,Phoenix Pk,243,1,4358_7778195_2046006,4358_385 -4358_80721,96,4358_11274,Phoenix Pk,8166,1,4358_7778195_2046005,4358_386 -4358_80721,205,4358_11275,Phoenix Pk,455,1,4358_7778195_2046013,4358_385 -4358_80721,205,4358_11276,Phoenix Pk,433,1,4358_7778195_2046015,4358_385 -4358_80721,96,4358_11277,Phoenix Pk,8186,1,4358_7778195_2046007,4358_386 -4358_80721,205,4358_11279,Phoenix Pk,475,1,4358_7778195_2046016,4358_385 -4358_80757,205,4358_1128,Marino,2282,0,4358_7778195_5123009,4358_39 -4358_80721,96,4358_11280,Phoenix Pk,8223,1,4358_7778195_2046015,4358_385 -4358_80721,205,4358_11281,Phoenix Pk,389,1,4358_7778195_2046020,4358_385 -4358_80721,96,4358_11282,Phoenix Pk,8086,1,4358_7778195_2046009,4358_385 -4358_80721,205,4358_11284,Phoenix Pk,482,1,4358_7778195_2046018,4358_385 -4358_80721,96,4358_11285,Phoenix Pk,8124,1,4358_7778195_2046002,4358_385 -4358_80721,205,4358_11287,Phoenix Pk,224,1,4358_7778195_2046001,4358_385 -4358_80721,205,4358_11289,Phoenix Pk,367,1,4358_7778195_2046027,4358_386 -4358_80757,96,4358_1129,Marino,9773,0,4358_7778195_5123010,4358_39 -4358_80721,96,4358_11290,Phoenix Pk,8239,1,4358_7778195_2046017,4358_390 -4358_80721,205,4358_11291,Phoenix Pk,513,1,4358_7778195_2046002,4358_385 -4358_80721,96,4358_11292,Phoenix Pk,8114,1,4358_7778195_2046011,4358_385 -4358_80721,205,4358_11294,Phoenix Pk,449,1,4358_7778195_2046003,4358_385 -4358_80721,96,4358_11296,Phoenix Pk,8155,1,4358_7778195_2046004,4358_386 -4358_80721,205,4358_11297,Phoenix Pk,528,1,4358_7778195_2046005,4358_385 -4358_80721,96,4358_11299,Phoenix Pk,8178,1,4358_7778195_2046006,4358_386 -4358_80721,205,4358_11300,Phoenix Pk,281,1,4358_7778195_2046008,4358_385 -4358_80721,96,4358_11301,Phoenix Pk,8230,1,4358_7778195_2046016,4358_385 -4358_80721,205,4358_11302,Phoenix Pk,288,1,4358_7778195_2046022,4358_386 -4358_80721,205,4358_11304,Phoenix Pk,351,1,4358_7778195_2046024,4358_385 -4358_80721,96,4358_11305,Phoenix Pk,8214,1,4358_7778195_2046013,4358_385 -4358_80721,205,4358_11307,Phoenix Pk,423,1,4358_7778195_2046014,4358_385 -4358_80721,96,4358_11309,Phoenix Pk,7986,1,4358_7778195_2046008,4358_386 -4358_80757,205,4358_1131,Marino,2119,0,4358_7778195_5123003,4358_39 -4358_80721,205,4358_11310,Phoenix Pk,465,1,4358_7778195_2046017,4358_385 -4358_80721,96,4358_11311,Phoenix Pk,8144,1,4358_7778195_2046014,4358_385 -4358_80721,205,4358_11313,Phoenix Pk,262,1,4358_7778195_2046029,4358_385 -4358_80721,205,4358_11314,Phoenix Pk,441,1,4358_7778195_2046025,4358_385 -4358_80721,96,4358_11316,Phoenix Pk,8198,1,4358_7778195_2046010,4358_390 -4358_80721,205,4358_11317,Phoenix Pk,494,1,4358_7778195_2046019,4358_385 -4358_80721,96,4358_11318,Phoenix Pk,8107,1,4358_7778195_2046001,4358_385 -4358_80757,96,4358_1132,Marino,9932,0,4358_7778195_5123013,4358_39 -4358_80721,205,4358_11320,Phoenix Pk,257,1,4358_7778195_2046004,4358_385 -4358_80721,96,4358_11322,Phoenix Pk,8247,1,4358_7778195_2046019,4358_386 -4358_80721,205,4358_11323,Phoenix Pk,342,1,4358_7778195_2046007,4358_385 -4358_80721,96,4358_11324,Phoenix Pk,8134,1,4358_7778195_2046003,4358_385 -4358_80721,205,4358_11326,Phoenix Pk,416,1,4358_7778195_2046023,4358_385 -4358_80721,96,4358_11327,Phoenix Pk,8002,1,4358_7778195_2046018,4358_385 -4358_80721,205,4358_11328,Phoenix Pk,540,1,4358_7778195_2046009,4358_386 -4358_80757,205,4358_1133,Marino,2198,0,4358_7778195_5123005,4358_39 -4358_80721,205,4358_11330,Phoenix Pk,544,1,4358_7778195_2046028,4358_385 -4358_80721,96,4358_11331,Phoenix Pk,8209,1,4358_7778195_2046012,4358_385 -4358_80721,205,4358_11333,Phoenix Pk,503,1,4358_7778195_2046021,4358_385 -4358_80721,96,4358_11335,Phoenix Pk,8254,1,4358_7778195_2046020,4358_386 -4358_80721,205,4358_11336,Phoenix Pk,245,1,4358_7778195_2046006,4358_385 -4358_80721,96,4358_11338,Phoenix Pk,8168,1,4358_7778195_2046005,4358_386 -4358_80721,205,4358_11339,Phoenix Pk,457,1,4358_7778195_2046013,4358_385 -4358_80721,205,4358_11340,Phoenix Pk,435,1,4358_7778195_2046015,4358_385 -4358_80721,96,4358_11341,Phoenix Pk,8188,1,4358_7778195_2046007,4358_386 -4358_80721,205,4358_11343,Phoenix Pk,477,1,4358_7778195_2046016,4358_385 -4358_80721,96,4358_11344,Phoenix Pk,8225,1,4358_7778195_2046015,4358_385 -4358_80721,205,4358_11346,Phoenix Pk,391,1,4358_7778195_2046020,4358_385 -4358_80721,96,4358_11348,Phoenix Pk,8088,1,4358_7778195_2046009,4358_386 -4358_80721,205,4358_11349,Phoenix Pk,484,1,4358_7778195_2046018,4358_385 -4358_80757,205,4358_1135,Marino,2175,0,4358_7778195_5123006,4358_39 -4358_80721,96,4358_11351,Phoenix Pk,8126,1,4358_7778195_2046002,4358_386 -4358_80721,205,4358_11352,Phoenix Pk,226,1,4358_7778195_2046001,4358_385 -4358_80721,205,4358_11354,Phoenix Pk,369,1,4358_7778195_2046027,4358_386 -4358_80721,96,4358_11355,Phoenix Pk,8241,1,4358_7778195_2046017,4358_390 -4358_80721,205,4358_11356,Phoenix Pk,515,1,4358_7778195_2046002,4358_385 -4358_80721,96,4358_11357,Phoenix Pk,8116,1,4358_7778195_2046011,4358_385 -4358_80721,205,4358_11359,Phoenix Pk,451,1,4358_7778195_2046003,4358_385 -4358_80757,96,4358_1136,Marino,9923,0,4358_7778195_5123009,4358_39 -4358_80721,96,4358_11361,Phoenix Pk,8157,1,4358_7778195_2046004,4358_386 -4358_80721,205,4358_11362,Phoenix Pk,530,1,4358_7778195_2046005,4358_385 -4358_80721,96,4358_11363,Phoenix Pk,8180,1,4358_7778195_2046006,4358_385 -4358_80721,205,4358_11365,Phoenix Pk,283,1,4358_7778195_2046008,4358_385 -4358_80721,96,4358_11366,Phoenix Pk,8232,1,4358_7778195_2046016,4358_385 -4358_80721,205,4358_11368,Phoenix Pk,290,1,4358_7778195_2046022,4358_390 -4358_80721,205,4358_11369,Phoenix Pk,353,1,4358_7778195_2046024,4358_385 -4358_80757,205,4358_1137,Marino,2318,0,4358_7778195_5123014,4358_39 -4358_80721,96,4358_11371,Phoenix Pk,8216,1,4358_7778195_2046013,4358_386 -4358_80721,205,4358_11372,Phoenix Pk,425,1,4358_7778195_2046014,4358_385 -4358_80721,96,4358_11374,Phoenix Pk,7988,1,4358_7778195_2046008,4358_386 -4358_80721,205,4358_11375,Phoenix Pk,467,1,4358_7778195_2046017,4358_385 -4358_80721,96,4358_11377,Phoenix Pk,8146,1,4358_7778195_2046014,4358_386 -4358_80721,205,4358_11378,Phoenix Pk,264,1,4358_7778195_2046029,4358_385 -4358_80721,205,4358_11379,Phoenix Pk,443,1,4358_7778195_2046025,4358_385 -4358_80721,96,4358_11381,Phoenix Pk,8200,1,4358_7778195_2046010,4358_390 -4358_80721,205,4358_11382,Phoenix Pk,496,1,4358_7778195_2046019,4358_385 -4358_80721,96,4358_11383,Phoenix Pk,8109,1,4358_7778195_2046001,4358_385 -4358_80721,205,4358_11385,Phoenix Pk,518,1,4358_7778195_2046030,4358_385 -4358_80721,96,4358_11386,Phoenix Pk,8249,1,4358_7778195_2046019,4358_385 -4358_80721,205,4358_11388,Phoenix Pk,230,1,4358_7778195_2046033,4358_385 -4358_80757,96,4358_1139,Marino,9851,0,4358_7778195_5123002,4358_39 -4358_80721,96,4358_11390,Phoenix Pk,8136,1,4358_7778195_2046003,4358_386 -4358_80721,205,4358_11391,Phoenix Pk,259,1,4358_7778195_2046004,4358_385 -4358_80721,205,4358_11393,Phoenix Pk,344,1,4358_7778195_2046007,4358_386 -4358_80721,96,4358_11394,Phoenix Pk,8004,1,4358_7778195_2046018,4358_390 -4358_80721,205,4358_11395,Phoenix Pk,332,1,4358_7778195_2046031,4358_385 -4358_80721,96,4358_11396,Phoenix Pk,8256,1,4358_7778195_2046020,4358_385 -4358_80721,205,4358_11398,Phoenix Pk,418,1,4358_7778195_2046023,4358_385 -4358_80721,96,4358_11399,Phoenix Pk,8170,1,4358_7778195_2046005,4358_385 -4358_80760,205,4358_114,Shaw street,1549,0,4358_7778195_9001010,4358_1 -4358_80757,205,4358_1140,Marino,2092,0,4358_7778195_5123016,4358_39 -4358_80721,205,4358_11401,Phoenix Pk,542,1,4358_7778195_2046009,4358_385 -4358_80721,96,4358_11402,Phoenix Pk,8190,1,4358_7778195_2046007,4358_385 -4358_80721,205,4358_11404,Phoenix Pk,546,1,4358_7778195_2046028,4358_385 -4358_80721,205,4358_11405,Phoenix Pk,505,1,4358_7778195_2046021,4358_385 -4358_80721,96,4358_11407,Phoenix Pk,8227,1,4358_7778195_2046015,4358_390 -4358_80721,205,4358_11408,Phoenix Pk,247,1,4358_7778195_2046006,4358_385 -4358_80721,96,4358_11410,Phoenix Pk,8090,1,4358_7778195_2046009,4358_386 -4358_80721,205,4358_11411,Phoenix Pk,459,1,4358_7778195_2046013,4358_385 -4358_80721,96,4358_11413,Phoenix Pk,8128,1,4358_7778195_2046002,4358_386 -4358_80721,205,4358_11414,Phoenix Pk,470,1,4358_7778195_2046032,4358_385 -4358_80721,96,4358_11416,Phoenix Pk,8243,1,4358_7778195_2046017,4358_386 -4358_80721,205,4358_11417,Phoenix Pk,437,1,4358_7778195_2046015,4358_385 -4358_80721,96,4358_11418,Phoenix Pk,8118,1,4358_7778195_2046011,4358_385 -4358_80757,96,4358_1142,Marino,9885,0,4358_7778195_5123001,4358_40 -4358_80721,205,4358_11420,Phoenix Pk,393,1,4358_7778195_2046020,4358_390 -4358_80721,205,4358_11421,Phoenix Pk,486,1,4358_7778195_2046018,4358_385 -4358_80721,96,4358_11422,Phoenix Pk,8159,1,4358_7778195_2046004,4358_386 -4358_80721,96,4358_11424,Phoenix Pk,8182,1,4358_7778195_2046006,4358_385 -4358_80721,205,4358_11425,Phoenix Pk,228,1,4358_7778195_2046001,4358_386 -4358_80721,96,4358_11426,Phoenix Pk,8234,1,4358_7778195_2046016,4358_385 -4358_80721,205,4358_11428,Phoenix Pk,371,1,4358_7778195_2046027,4358_390 -4358_80721,205,4358_11429,Phoenix Pk,532,1,4358_7778195_2046005,4358_385 -4358_80757,205,4358_1143,Marino,2273,0,4358_7778195_5123008,4358_39 -4358_80721,96,4358_11430,Phoenix Pk,8218,1,4358_7778195_2046013,4358_385 -4358_80721,205,4358_11432,Phoenix Pk,292,1,4358_7778195_2046022,4358_385 -4358_80721,96,4358_11434,Phoenix Pk,8148,1,4358_7778195_2046014,4358_386 -4358_80721,205,4358_11435,Phoenix Pk,355,1,4358_7778195_2046024,4358_390 -4358_80721,205,4358_11436,Phoenix Pk,427,1,4358_7778195_2046014,4358_385 -4358_80721,96,4358_11437,Phoenix Pk,8202,1,4358_7778195_2046010,4358_385 -4358_80721,205,4358_11439,Phoenix Pk,266,1,4358_7778195_2046029,4358_385 -4358_80757,96,4358_1144,Marino,9829,0,4358_7778195_5123012,4358_39 -4358_80721,205,4358_11440,Phoenix Pk,498,1,4358_7778195_2046019,4358_385 -4358_80721,96,4358_11442,Phoenix Pk,8251,1,4358_7778195_2046019,4358_390 -4358_80721,205,4358_11443,Phoenix Pk,520,1,4358_7778195_2046030,4358_385 -4358_80721,96,4358_11444,Phoenix Pk,8138,1,4358_7778195_2046003,4358_385 -4358_80721,205,4358_11446,Phoenix Pk,261,1,4358_7778195_2046004,4358_385 -4358_80721,205,4358_11448,Phoenix Pk,334,1,4358_7778195_2046031,4358_386 -4358_80721,96,4358_11449,Phoenix Pk,8172,1,4358_7778195_2046005,4358_390 -4358_80757,205,4358_1145,Marino,2296,0,4358_7778195_5123011,4358_39 -4358_80721,205,4358_11451,Phoenix Pk,548,1,4358_7778195_2046028,4358_386 -4358_80721,96,4358_11452,Phoenix Pk,8192,1,4358_7778195_2046007,4358_390 -4358_80721,205,4358_11453,Phoenix Pk,507,1,4358_7778195_2046021,4358_385 -4358_80721,96,4358_11455,Phoenix Pk,8092,1,4358_7778195_2046009,4358_390 -4358_80721,96,4358_11457,Phoenix Pk,8245,1,4358_7778195_2046017,4358_386 -4358_80721,205,4358_11458,Phoenix Pk,395,1,4358_7778195_2046020,4358_390 -4358_80721,205,4358_11460,Phoenix Pk,488,1,4358_7778195_2046018,4358_386 -4358_80721,96,4358_11461,Phoenix Pk,8161,1,4358_7778195_2046004,4358_390 -4358_80721,96,4358_11462,Phoenix Pk,8236,1,4358_7778195_2046016,4358_385 -4358_80721,205,4358_11464,Phoenix Pk,373,1,4358_7778195_2046027,4358_390 -4358_80721,205,4358_11465,Phoenix Pk,534,1,4358_7778195_2046005,4358_385 -4358_80721,96,4358_11466,Phoenix Pk,8220,1,4358_7778195_2046013,4358_386 -4358_80721,205,4358_11468,Phoenix Pk,429,1,4358_7778195_2046014,4358_385 -4358_80721,96,4358_11469,Phoenix Pk,8150,1,4358_7778195_2046014,4358_386 -4358_80757,205,4358_1147,Marino,2304,0,4358_7778195_5123012,4358_39 -4358_80721,205,4358_11471,Westmoreland St,268,1,4358_7778195_2046029,4358_388 -4358_80721,96,4358_11472,Westmoreland St,8204,1,4358_7778195_2046010,4358_391 -4358_80721,205,4358_11474,Westmoreland St,522,1,4358_7778195_2046030,4358_388 -4358_80721,96,4358_11475,Westmoreland St,8253,1,4358_7778195_2046019,4358_391 -4358_80721,205,4358_11477,Westmoreland St,336,1,4358_7778195_2046031,4358_391 -4358_80721,96,4358_11478,Westmoreland St,8140,1,4358_7778195_2046003,4358_392 -4358_80722,205,4358_11479,Mountjoy Sq,122,1,4358_7778195_2822107,4358_393 -4358_80757,96,4358_1148,Marino,9795,0,4358_7778195_5123004,4358_39 -4358_80722,205,4358_11480,Mountjoy Sq,5968,1,4358_7778195_2822102,4358_393 -4358_80728,96,4358_11481,Belarmine,8400,0,4358_7778195_2047002,4358_394 -4358_80728,205,4358_11482,Belarmine,131,0,4358_7778195_2047001,4358_394 -4358_80728,205,4358_11483,Belarmine,103,0,4358_7778195_2047002,4358_394 -4358_80728,96,4358_11484,Belarmine,8397,0,4358_7778195_2047001,4358_397 -4358_80728,205,4358_11485,Belarmine,110,0,4358_7778195_2047003,4358_394 -4358_80728,96,4358_11486,Belarmine,8402,0,4358_7778195_2047002,4358_394 -4358_80728,205,4358_11488,Belarmine,133,0,4358_7778195_2047001,4358_396 -4358_80757,205,4358_1149,Marino,2239,0,4358_7778195_5123001,4358_39 -4358_80728,96,4358_11490,Belarmine,8399,0,4358_7778195_2047001,4358_397 -4358_80728,96,4358_11491,Belarmine,8404,0,4358_7778195_2047002,4358_394 -4358_80728,205,4358_11492,Belarmine,105,0,4358_7778195_2047002,4358_396 -4358_80728,96,4358_11494,Belarmine,8408,0,4358_7778195_2047004,4358_394 -4358_80728,205,4358_11496,Belarmine,135,0,4358_7778195_2047001,4358_396 -4358_80728,96,4358_11497,Belarmine,8406,0,4358_7778195_2047002,4358_394 -4358_80728,205,4358_11499,Belarmine,107,0,4358_7778195_2047002,4358_396 -4358_80760,96,4358_115,Shaw street,9522,0,4358_7778195_9001005,4358_1 -4358_80728,96,4358_11500,Belarmine,8409,0,4358_7778195_2047004,4358_394 -4358_80728,205,4358_11502,Belarmine,137,0,4358_7778195_2047001,4358_394 -4358_80728,96,4358_11503,Belarmine,8411,0,4358_7778195_2047007,4358_394 -4358_80728,205,4358_11505,Belarmine,5969,0,4358_7778195_2822208,4358_395 -4358_80728,205,4358_11506,Belarmine,146,0,4358_7778195_2047006,4358_394 -4358_80728,96,4358_11508,Belarmine,8421,0,4358_7778195_2047008,4358_397 -4358_80728,205,4358_11509,Belarmine,112,0,4358_7778195_2047005,4358_398 -4358_80757,96,4358_1151,Marino,9913,0,4358_7778195_5123007,4358_39 -4358_80728,205,4358_11510,Belarmine,125,0,4358_7778195_2047007,4358_394 -4358_80728,205,4358_11511,Belarmine,129,0,4358_7778195_2047008,4358_394 -4358_80728,96,4358_11512,Belarmine,8413,0,4358_7778195_2047007,4358_397 -4358_80728,205,4358_11514,Belarmine,139,0,4358_7778195_2047001,4358_394 -4358_80728,205,4358_11515,Belarmine,148,0,4358_7778195_2047006,4358_394 -4358_80728,96,4358_11517,Belarmine,8423,0,4358_7778195_2047008,4358_398 -4358_80728,96,4358_11518,Belarmine,8415,0,4358_7778195_2047007,4358_394 -4358_80757,205,4358_1152,Marino,2251,0,4358_7778195_5123002,4358_39 -4358_80728,205,4358_11520,Belarmine,114,0,4358_7778195_2047005,4358_398 -4358_80728,96,4358_11522,Belarmine,8425,0,4358_7778195_2047008,4358_397 -4358_80728,205,4358_11523,Belarmine,141,0,4358_7778195_2047001,4358_398 -4358_80728,96,4358_11524,Belarmine,8417,0,4358_7778195_2047007,4358_394 -4358_80728,205,4358_11526,Belarmine,116,0,4358_7778195_2047005,4358_398 -4358_80728,96,4358_11528,Belarmine,8427,0,4358_7778195_2047008,4358_397 -4358_80728,205,4358_11529,Belarmine,143,0,4358_7778195_2047001,4358_398 -4358_80728,96,4358_11530,Belarmine,8419,0,4358_7778195_2047007,4358_394 -4358_80728,205,4358_11532,Belarmine,118,0,4358_7778195_2047005,4358_398 -4358_80728,205,4358_11533,Poolbeg St,130,1,4358_7778195_2047001,4358_399 -4358_80728,205,4358_11534,Poolbeg St,102,1,4358_7778195_2047002,4358_399 -4358_80728,205,4358_11535,Poolbeg St,109,1,4358_7778195_2047003,4358_399 -4358_80728,96,4358_11536,Poolbeg St,8396,1,4358_7778195_2047001,4358_401 -4358_80728,205,4358_11537,Poolbeg St,6633,1,4358_7778195_2822109,4358_399 -4358_80728,205,4358_11538,Poolbeg St,145,1,4358_7778195_2047004,4358_399 -4358_80728,96,4358_11539,Poolbeg St,8401,1,4358_7778195_2047002,4358_399 -4358_80757,96,4358_1154,Marino,9768,0,4358_7778195_5123003,4358_40 -4358_80728,205,4358_11540,Poolbeg St,132,1,4358_7778195_2047001,4358_399 -4358_80728,96,4358_11542,Poolbeg St,8398,1,4358_7778195_2047001,4358_401 -4358_80728,205,4358_11543,Poolbeg St,104,1,4358_7778195_2047002,4358_400 -4358_80728,96,4358_11544,Poolbeg St,8403,1,4358_7778195_2047002,4358_399 -4358_80728,96,4358_11546,Poolbeg St,8270,1,4358_7778195_2047003,4358_399 -4358_80728,205,4358_11548,Poolbeg St,134,1,4358_7778195_2047001,4358_400 -4358_80728,96,4358_11549,Poolbeg St,8405,1,4358_7778195_2047002,4358_399 -4358_80757,205,4358_1155,Marino,2217,0,4358_7778195_5123015,4358_39 -4358_80728,205,4358_11551,Poolbeg St,106,1,4358_7778195_2047002,4358_400 -4358_80728,96,4358_11553,Poolbeg St,8410,1,4358_7778195_2047005,4358_401 -4358_80728,205,4358_11554,Poolbeg St,136,1,4358_7778195_2047001,4358_400 -4358_80728,96,4358_11555,Poolbeg St,8407,1,4358_7778195_2047002,4358_399 -4358_80728,205,4358_11557,Poolbeg St,111,1,4358_7778195_2047005,4358_400 -4358_80728,96,4358_11558,Poolbeg St,8420,1,4358_7778195_2047006,4358_399 -4358_80757,96,4358_1156,Marino,9905,0,4358_7778195_5123011,4358_39 -4358_80728,96,4358_11560,Poolbeg St,8412,1,4358_7778195_2047007,4358_399 -4358_80728,205,4358_11562,Poolbeg St,138,1,4358_7778195_2047001,4358_402 -4358_80728,205,4358_11563,Poolbeg St,147,1,4358_7778195_2047006,4358_399 -4358_80728,96,4358_11565,Poolbeg St,8422,1,4358_7778195_2047008,4358_401 -4358_80728,205,4358_11566,Poolbeg St,113,1,4358_7778195_2047005,4358_399 -4358_80728,96,4358_11567,Poolbeg St,8414,1,4358_7778195_2047007,4358_399 -4358_80728,205,4358_11569,Poolbeg St,126,1,4358_7778195_2047007,4358_402 -4358_80757,205,4358_1157,Marino,2261,0,4358_7778195_5123004,4358_39 -4358_80728,96,4358_11571,Poolbeg St,8424,1,4358_7778195_2047008,4358_401 -4358_80728,205,4358_11572,Poolbeg St,140,1,4358_7778195_2047001,4358_402 -4358_80728,96,4358_11573,Poolbeg St,8416,1,4358_7778195_2047007,4358_399 -4358_80728,205,4358_11575,Poolbeg St,115,1,4358_7778195_2047005,4358_402 -4358_80728,96,4358_11577,Poolbeg St,8426,1,4358_7778195_2047008,4358_401 -4358_80728,205,4358_11578,Poolbeg St,142,1,4358_7778195_2047001,4358_402 -4358_80728,96,4358_11579,Poolbeg St,8418,1,4358_7778195_2047007,4358_399 -4358_80728,205,4358_11581,Poolbeg St,117,1,4358_7778195_2047005,4358_402 -4358_80728,96,4358_11583,Poolbeg St,8428,1,4358_7778195_2047008,4358_401 -4358_80728,205,4358_11584,Poolbeg St,144,1,4358_7778195_2047001,4358_402 -4358_80729,205,4358_11585,The Square,6670,0,4358_7778195_3049003,4358_403 -4358_80729,205,4358_11586,The Square,1507,0,4358_7778195_3049005,4358_403 -4358_80729,96,4358_11587,The Square,13425,0,4358_7778195_3049002,4358_403 -4358_80729,205,4358_11588,The Square,1509,0,4358_7778195_3049006,4358_403 -4358_80729,205,4358_11589,The Square,1485,0,4358_7778195_3049001,4358_403 -4358_80757,205,4358_1159,Marino,2229,0,4358_7778195_5123007,4358_39 -4358_80729,205,4358_11590,The Square,1488,0,4358_7778195_3049002,4358_403 -4358_80729,96,4358_11591,The Square,13449,0,4358_7778195_3049001,4358_404 -4358_80729,205,4358_11592,The Square,1501,0,4358_7778195_3049004,4358_403 -4358_80729,96,4358_11593,The Square,13435,0,4358_7778195_3049003,4358_403 -4358_80729,205,4358_11594,The Square,6672,0,4358_7778195_3049003,4358_403 -4358_80729,96,4358_11595,The Square,13427,0,4358_7778195_3049002,4358_403 -4358_80729,205,4358_11596,The Square,1512,0,4358_7778195_3049007,4358_403 -4358_80729,96,4358_11597,The Square,8939,0,4358_7778195_3049004,4358_403 -4358_80729,205,4358_11598,The Square,6689,0,4358_7778195_3049008,4358_403 -4358_80729,96,4358_11599,The Square,13451,0,4358_7778195_3049001,4358_403 -4358_80760,205,4358_116,Shaw street,1643,0,4358_7778195_9001011,4358_1 -4358_80757,96,4358_1160,Marino,9841,0,4358_7778195_5123006,4358_39 -4358_80729,205,4358_11600,The Square,1490,0,4358_7778195_3049002,4358_403 -4358_80729,96,4358_11601,The Square,13437,0,4358_7778195_3049003,4358_403 -4358_80729,205,4358_11603,The Square,1503,0,4358_7778195_3049004,4358_403 -4358_80729,96,4358_11604,The Square,13463,0,4358_7778195_3049005,4358_403 -4358_80729,205,4358_11605,The Square,6674,0,4358_7778195_3049003,4358_403 -4358_80729,96,4358_11607,The Square,13429,0,4358_7778195_3049002,4358_404 -4358_80729,205,4358_11608,The Square,1514,0,4358_7778195_3049007,4358_403 -4358_80729,96,4358_11609,The Square,8941,0,4358_7778195_3049004,4358_403 -4358_80757,205,4358_1161,Marino,2284,0,4358_7778195_5123009,4358_39 -4358_80729,205,4358_11610,The Square,6691,0,4358_7778195_3049008,4358_403 -4358_80729,96,4358_11611,The Square,13453,0,4358_7778195_3049001,4358_403 -4358_80729,205,4358_11613,The Square,1492,0,4358_7778195_3049002,4358_403 -4358_80729,96,4358_11614,The Square,13439,0,4358_7778195_3049003,4358_403 -4358_80729,205,4358_11615,The Square,1505,0,4358_7778195_3049004,4358_403 -4358_80729,96,4358_11617,The Square,13465,0,4358_7778195_3049005,4358_404 -4358_80729,205,4358_11618,The Square,6676,0,4358_7778195_3049003,4358_403 -4358_80729,96,4358_11619,The Square,13431,0,4358_7778195_3049002,4358_403 -4358_80729,205,4358_11620,The Square,1516,0,4358_7778195_3049007,4358_403 -4358_80729,96,4358_11621,The Square,8943,0,4358_7778195_3049004,4358_403 -4358_80729,205,4358_11623,The Square,6693,0,4358_7778195_3049008,4358_403 -4358_80729,96,4358_11624,The Square,13455,0,4358_7778195_3049001,4358_403 -4358_80729,205,4358_11625,The Square,6681,0,4358_7778195_3049009,4358_403 -4358_80729,96,4358_11626,The Square,13441,0,4358_7778195_3049003,4358_403 -4358_80729,205,4358_11628,The Square,1494,0,4358_7778195_3049002,4358_403 -4358_80729,96,4358_11629,The Square,13467,0,4358_7778195_3049005,4358_403 -4358_80757,96,4358_1163,Marino,9775,0,4358_7778195_5123010,4358_39 -4358_80729,205,4358_11630,The Square,6699,0,4358_7778195_3049010,4358_403 -4358_80729,205,4358_11631,The Square,6678,0,4358_7778195_3049003,4358_403 -4358_80729,96,4358_11632,The Square,13433,0,4358_7778195_3049002,4358_404 -4358_80729,205,4358_11634,The Square,1518,0,4358_7778195_3049007,4358_403 -4358_80729,96,4358_11635,The Square,8945,0,4358_7778195_3049004,4358_403 -4358_80729,205,4358_11636,The Square,6706,0,4358_7778195_3049011,4358_404 -4358_80729,205,4358_11637,The Square,1522,0,4358_7778195_3823205,4358_403 -4358_80729,205,4358_11638,The Square,6695,0,4358_7778195_3049008,4358_403 -4358_80729,96,4358_11639,The Square,13457,0,4358_7778195_3049001,4358_404 -4358_80757,205,4358_1164,Marino,2121,0,4358_7778195_5123003,4358_39 -4358_80729,205,4358_11641,The Square,6683,0,4358_7778195_3049009,4358_403 -4358_80729,96,4358_11642,The Square,13443,0,4358_7778195_3049003,4358_403 -4358_80729,205,4358_11643,The Square,1496,0,4358_7778195_3049002,4358_403 -4358_80729,96,4358_11644,The Square,13469,0,4358_7778195_3049005,4358_403 -4358_80729,205,4358_11646,The Square,6701,0,4358_7778195_3049010,4358_403 -4358_80729,96,4358_11647,The Square,8947,0,4358_7778195_3049004,4358_403 -4358_80729,205,4358_11648,The Square,6680,0,4358_7778195_3049003,4358_404 -4358_80729,205,4358_11650,The Square,6684,0,4358_7778195_3049009,4358_403 -4358_80729,96,4358_11651,The Square,13459,0,4358_7778195_3049001,4358_403 -4358_80729,205,4358_11652,The Square,6697,0,4358_7778195_3049008,4358_403 -4358_80729,96,4358_11654,The Square,13445,0,4358_7778195_3049003,4358_403 -4358_80729,205,4358_11655,The Square,6703,0,4358_7778195_3049010,4358_403 -4358_80729,96,4358_11656,The Square,8949,0,4358_7778195_3049004,4358_403 -4358_80729,205,4358_11658,The Square,1498,0,4358_7778195_3049002,4358_403 -4358_80729,96,4358_11659,The Square,13461,0,4358_7778195_3049001,4358_403 -4358_80757,96,4358_1166,Marino,9934,0,4358_7778195_5123013,4358_40 -4358_80729,205,4358_11661,The Square,6686,0,4358_7778195_3049009,4358_405 -4358_80729,96,4358_11662,The Square,13447,0,4358_7778195_3049003,4358_403 -4358_80729,205,4358_11663,The Square,6705,0,4358_7778195_3049010,4358_404 -4358_80729,205,4358_11665,Pearse St,1484,1,4358_7778195_3049001,4358_406 -4358_80729,205,4358_11666,Pearse St,1487,1,4358_7778195_3049002,4358_407 -4358_80729,96,4358_11667,Pearse St,13448,1,4358_7778195_3049001,4358_407 -4358_80729,205,4358_11668,Pearse St,1500,1,4358_7778195_3049004,4358_407 -4358_80729,205,4358_11669,Pearse St,6671,1,4358_7778195_3049003,4358_407 -4358_80757,205,4358_1167,Marino,2200,0,4358_7778195_5123005,4358_39 -4358_80729,205,4358_11670,Pearse St,1508,1,4358_7778195_3049005,4358_407 -4358_80729,205,4358_11671,Pearse St,1511,1,4358_7778195_3049007,4358_407 -4358_80729,96,4358_11672,Pearse St,13426,1,4358_7778195_3049002,4358_407 -4358_80729,205,4358_11673,Pearse St,1510,1,4358_7778195_3049006,4358_407 -4358_80729,205,4358_11674,Pearse St,6688,1,4358_7778195_3049008,4358_407 -4358_80729,205,4358_11675,Pearse St,1486,1,4358_7778195_3049001,4358_407 -4358_80729,96,4358_11676,Pearse St,13450,1,4358_7778195_3049001,4358_407 -4358_80729,205,4358_11677,Pearse St,1489,1,4358_7778195_3049002,4358_407 -4358_80729,96,4358_11678,Pearse St,13436,1,4358_7778195_3049003,4358_407 -4358_80729,205,4358_11679,Pearse St,1502,1,4358_7778195_3049004,4358_408 -4358_80757,205,4358_1168,Marino,2177,0,4358_7778195_5123006,4358_39 -4358_80729,205,4358_11681,Pearse St,6673,1,4358_7778195_3049003,4358_407 -4358_80729,96,4358_11682,Pearse St,13428,1,4358_7778195_3049002,4358_407 -4358_80729,205,4358_11684,Pearse St,1513,1,4358_7778195_3049007,4358_408 -4358_80729,96,4358_11685,Pearse St,8940,1,4358_7778195_3049004,4358_407 -4358_80729,205,4358_11686,Pearse St,6690,1,4358_7778195_3049008,4358_407 -4358_80729,96,4358_11687,Pearse St,13452,1,4358_7778195_3049001,4358_407 -4358_80729,205,4358_11688,Pearse St,1491,1,4358_7778195_3049002,4358_407 -4358_80757,96,4358_1169,Marino,9925,0,4358_7778195_5123009,4358_39 -4358_80729,96,4358_11690,Pearse St,13438,1,4358_7778195_3049003,4358_407 -4358_80729,205,4358_11691,Pearse St,1504,1,4358_7778195_3049004,4358_407 -4358_80729,96,4358_11692,Pearse St,13464,1,4358_7778195_3049005,4358_407 -4358_80729,205,4358_11694,Pearse St,6675,1,4358_7778195_3049003,4358_408 -4358_80729,96,4358_11695,Pearse St,13430,1,4358_7778195_3049002,4358_407 -4358_80729,205,4358_11696,Pearse St,1515,1,4358_7778195_3049007,4358_407 -4358_80729,96,4358_11697,Pearse St,8942,1,4358_7778195_3049004,4358_407 -4358_80729,205,4358_11698,Pearse St,6692,1,4358_7778195_3049008,4358_407 -4358_80729,96,4358_11700,Pearse St,13454,1,4358_7778195_3049001,4358_407 -4358_80729,205,4358_11701,Pearse St,1493,1,4358_7778195_3049002,4358_407 -4358_80729,96,4358_11702,Pearse St,13440,1,4358_7778195_3049003,4358_407 -4358_80729,205,4358_11704,Pearse St,1506,1,4358_7778195_3049004,4358_408 -4358_80729,96,4358_11705,Pearse St,13466,1,4358_7778195_3049005,4358_407 -4358_80729,205,4358_11706,Pearse St,6677,1,4358_7778195_3049003,4358_407 -4358_80729,96,4358_11707,Pearse St,13432,1,4358_7778195_3049002,4358_407 -4358_80729,205,4358_11709,Pearse St,1517,1,4358_7778195_3049007,4358_408 -4358_80757,205,4358_1171,Marino,2320,0,4358_7778195_5123014,4358_39 -4358_80729,96,4358_11710,Pearse St,8944,1,4358_7778195_3049004,4358_407 -4358_80729,205,4358_11711,Pearse St,6694,1,4358_7778195_3049008,4358_407 -4358_80729,96,4358_11712,Pearse St,13456,1,4358_7778195_3049001,4358_407 -4358_80729,205,4358_11714,Pearse St,6682,1,4358_7778195_3049009,4358_408 -4358_80729,96,4358_11715,Pearse St,13442,1,4358_7778195_3049003,4358_407 -4358_80729,205,4358_11716,Pearse St,1495,1,4358_7778195_3049002,4358_407 -4358_80729,96,4358_11717,Pearse St,13468,1,4358_7778195_3049005,4358_407 -4358_80729,205,4358_11718,Pearse St,6700,1,4358_7778195_3049010,4358_407 -4358_80757,96,4358_1172,Marino,9853,0,4358_7778195_5123002,4358_39 -4358_80729,96,4358_11720,Pearse St,13434,1,4358_7778195_3049002,4358_407 -4358_80729,205,4358_11721,Pearse St,6679,1,4358_7778195_3049003,4358_407 -4358_80729,96,4358_11722,Pearse St,8946,1,4358_7778195_3049004,4358_407 -4358_80729,205,4358_11724,Pearse St,6707,1,4358_7778195_3049011,4358_408 -4358_80729,96,4358_11725,Pearse St,13458,1,4358_7778195_3049001,4358_407 -4358_80729,205,4358_11726,Pearse St,6696,1,4358_7778195_3049008,4358_407 -4358_80729,96,4358_11727,Pearse St,13444,1,4358_7778195_3049003,4358_407 -4358_80729,205,4358_11728,Pearse St,1497,1,4358_7778195_3049002,4358_407 -4358_80757,205,4358_1173,Marino,2321,0,4358_7778195_5123017,4358_39 -4358_80729,205,4358_11730,Pearse St,6702,1,4358_7778195_3049010,4358_407 -4358_80729,96,4358_11731,Pearse St,8948,1,4358_7778195_3049004,4358_407 -4358_80729,205,4358_11733,Pearse St,6685,1,4358_7778195_3049009,4358_407 -4358_80729,96,4358_11734,Pearse St,13460,1,4358_7778195_3049001,4358_407 -4358_80729,205,4358_11735,Pearse St,6698,1,4358_7778195_3049008,4358_407 -4358_80729,205,4358_11737,Pearse St,6704,1,4358_7778195_3049010,4358_407 -4358_80729,96,4358_11738,Pearse St,13446,1,4358_7778195_3049003,4358_407 -4358_80729,205,4358_11740,Pearse St,1499,1,4358_7778195_3049002,4358_407 -4358_80729,96,4358_11741,Pearse St,13462,1,4358_7778195_3049001,4358_407 -4358_80729,205,4358_11743,Pearse St,6687,1,4358_7778195_3049009,4358_409 -4358_80730,205,4358_11744,Woodford Hill,4335,0,4358_7778195_4824205,4358_410 -4358_80730,205,4358_11745,Waterloo Rd,6620,1,4358_7778195_4824105,4358_411 -4358_80730,205,4358_11746,Waterloo Rd,4336,1,4358_7778195_4824106,4358_411 -4358_80731,205,4358_11747,Leixlip Intel,986,0,4358_7778195_3423005,4358_412 -4358_80731,205,4358_11748,Leixlip Intel,978,0,4358_7778195_3423001,4358_412 -4358_80731,96,4358_11749,Leixlip Intel,9120,0,4358_7778195_3423010,4358_413 -4358_80757,205,4358_1175,Marino,2094,0,4358_7778195_5123016,4358_39 -4358_80731,205,4358_11750,Leixlip Intel,1060,0,4358_7778195_3423017,4358_412 -4358_80731,96,4358_11751,Leixlip Intel,10384,0,4358_7778195_3423013,4358_412 -4358_80731,205,4358_11752,Leixlip Intel,988,0,4358_7778195_3423005,4358_412 -4358_80731,96,4358_11754,Leixlip Intel,9154,0,4358_7778195_3423015,4358_413 -4358_80731,205,4358_11755,Leixlip Intel,980,0,4358_7778195_3423001,4358_412 -4358_80731,96,4358_11757,Leixlip Intel,9122,0,4358_7778195_3423010,4358_413 -4358_80731,205,4358_11758,Leixlip Intel,1062,0,4358_7778195_3423017,4358_412 -4358_80731,96,4358_11759,Leixlip Intel,10386,0,4358_7778195_3423013,4358_412 -4358_80757,96,4358_1176,Marino,9831,0,4358_7778195_5123012,4358_39 -4358_80731,205,4358_11761,Leixlip Intel,990,0,4358_7778195_3423005,4358_412 -4358_80731,96,4358_11762,Leixlip Intel,9156,0,4358_7778195_3423015,4358_412 -4358_80731,205,4358_11764,Leixlip Intel,982,0,4358_7778195_3423001,4358_412 -4358_80731,96,4358_11765,Leixlip Intel,9247,0,4358_7778195_3423019,4358_412 -4358_80731,205,4358_11767,Leixlip Intel,1064,0,4358_7778195_3423017,4358_412 -4358_80731,96,4358_11768,Leixlip Intel,10388,0,4358_7778195_3423013,4358_412 -4358_80757,205,4358_1177,Marino,2275,0,4358_7778195_5123008,4358_39 -4358_80731,205,4358_11770,Leixlip Intel,992,0,4358_7778195_3423005,4358_412 -4358_80731,96,4358_11771,Leixlip Intel,9158,0,4358_7778195_3423015,4358_412 -4358_80731,205,4358_11773,Leixlip Intel,984,0,4358_7778195_3423001,4358_412 -4358_80731,96,4358_11774,Leixlip Intel,9249,0,4358_7778195_3423019,4358_412 -4358_80731,205,4358_11776,Leixlip Intel,1066,0,4358_7778195_3423017,4358_412 -4358_80731,96,4358_11777,Leixlip Intel,10390,0,4358_7778195_3423013,4358_412 -4358_80731,205,4358_11779,Leixlip Intel,1091,0,4358_7778195_3423016,4358_412 -4358_80757,96,4358_1178,Marino,9797,0,4358_7778195_5123004,4358_39 -4358_80731,96,4358_11780,Leixlip Intel,9149,0,4358_7778195_3423024,4358_412 -4358_80731,205,4358_11782,Leixlip Intel,1048,0,4358_7778195_3423024,4358_412 -4358_80731,96,4358_11783,Leixlip Intel,9251,0,4358_7778195_3423019,4358_412 -4358_80731,205,4358_11785,Leixlip Intel,1068,0,4358_7778195_3423017,4358_412 -4358_80731,96,4358_11786,Leixlip Intel,10392,0,4358_7778195_3423013,4358_412 -4358_80731,205,4358_11788,Leixlip Intel,1093,0,4358_7778195_3423016,4358_412 -4358_80731,96,4358_11789,Leixlip Intel,9262,0,4358_7778195_3423031,4358_412 -4358_80731,205,4358_11791,Leixlip Intel,1050,0,4358_7778195_3423024,4358_412 -4358_80731,96,4358_11792,Leixlip Intel,9253,0,4358_7778195_3423019,4358_413 -4358_80731,96,4358_11794,Leixlip Intel,9081,0,4358_7778195_3423035,4358_412 -4358_80731,205,4358_11795,Leixlip Intel,1070,0,4358_7778195_3423017,4358_412 -4358_80731,205,4358_11797,Leixlip Intel,1095,0,4358_7778195_3423016,4358_412 -4358_80731,96,4358_11799,Leixlip Intel,9264,0,4358_7778195_3423031,4358_414 -4358_80760,205,4358_118,Shaw street,3147,0,4358_7778195_9001004,4358_1 -4358_80757,205,4358_1180,Marino,2298,0,4358_7778195_5123011,4358_39 -4358_80731,205,4358_11800,Ringsend Road,997,1,4358_7778195_3423003,4358_415 -4358_80731,205,4358_11801,Ringsend Road,987,1,4358_7778195_3423005,4358_415 -4358_80731,96,4358_11802,Ringsend Road,9102,1,4358_7778195_3423008,4358_416 -4358_80731,205,4358_11803,Ringsend Road,979,1,4358_7778195_3423001,4358_415 -4358_80731,96,4358_11804,Ringsend Road,9121,1,4358_7778195_3423010,4358_416 -4358_80731,205,4358_11805,Ringsend Road,1061,1,4358_7778195_3423017,4358_415 -4358_80731,96,4358_11806,Ringsend Road,10385,1,4358_7778195_3423013,4358_416 -4358_80731,205,4358_11809,Ringsend Road,989,1,4358_7778195_3423005,4358_416 -4358_80757,205,4358_1181,Marino,2306,0,4358_7778195_5123012,4358_39 -4358_80731,96,4358_11810,Ringsend Road,9155,1,4358_7778195_3423015,4358_417 -4358_80731,205,4358_11811,Ringsend Road,981,1,4358_7778195_3423001,4358_415 -4358_80731,96,4358_11813,Ringsend Road,9123,1,4358_7778195_3423010,4358_417 -4358_80731,205,4358_11814,Ringsend Road,1063,1,4358_7778195_3423017,4358_415 -4358_80731,96,4358_11815,Ringsend Road,10387,1,4358_7778195_3423013,4358_416 -4358_80731,205,4358_11818,Ringsend Road,991,1,4358_7778195_3423005,4358_416 -4358_80731,96,4358_11819,Ringsend Road,9157,1,4358_7778195_3423015,4358_417 -4358_80757,96,4358_1182,Marino,9945,0,4358_7778195_5123014,4358_39 -4358_80731,205,4358_11820,Ringsend Road,983,1,4358_7778195_3423001,4358_415 -4358_80731,96,4358_11822,Ringsend Road,9248,1,4358_7778195_3423019,4358_417 -4358_80731,205,4358_11823,Ringsend Road,1065,1,4358_7778195_3423017,4358_415 -4358_80731,96,4358_11824,Ringsend Road,10389,1,4358_7778195_3423013,4358_416 -4358_80731,205,4358_11827,Ringsend Road,993,1,4358_7778195_3423005,4358_416 -4358_80731,96,4358_11828,Ringsend Road,9148,1,4358_7778195_3423024,4358_417 -4358_80731,205,4358_11829,Ringsend Road,985,1,4358_7778195_3423001,4358_415 -4358_80731,96,4358_11831,Ringsend Road,9250,1,4358_7778195_3423019,4358_417 -4358_80731,205,4358_11832,Ringsend Road,1067,1,4358_7778195_3423017,4358_415 -4358_80731,96,4358_11833,Ringsend Road,10391,1,4358_7778195_3423013,4358_416 -4358_80731,205,4358_11836,Ringsend Road,1092,1,4358_7778195_3423016,4358_416 -4358_80731,96,4358_11837,Ringsend Road,9150,1,4358_7778195_3423024,4358_417 -4358_80731,205,4358_11839,Ringsend Road,1049,1,4358_7778195_3423024,4358_416 -4358_80757,205,4358_1184,Marino,2241,0,4358_7778195_5123001,4358_39 -4358_80731,96,4358_11840,Ringsend Road,9252,1,4358_7778195_3423019,4358_417 -4358_80731,205,4358_11841,Ringsend Road,1069,1,4358_7778195_3423017,4358_415 -4358_80731,96,4358_11842,Ringsend Road,10393,1,4358_7778195_3423013,4358_416 -4358_80731,205,4358_11844,Ringsend Road,1094,1,4358_7778195_3423016,4358_415 -4358_80731,96,4358_11846,Ringsend Road,9263,1,4358_7778195_3423031,4358_417 -4358_80731,205,4358_11848,Ringsend Road,1051,1,4358_7778195_3423024,4358_416 -4358_80731,96,4358_11849,Ringsend Road,9254,1,4358_7778195_3423019,4358_417 -4358_80757,96,4358_1185,Marino,9915,0,4358_7778195_5123007,4358_39 -4358_80731,205,4358_11850,Ringsend Road,1071,1,4358_7778195_3423017,4358_415 -4358_80731,96,4358_11852,Ringsend Road,9082,1,4358_7778195_3423035,4358_417 -4358_80733,205,4358_11853,Dublin Ferryport,7,0,4358_7778195_6053101,4358_418 -4358_80733,205,4358_11854,Dublin Ferryport,21,0,4358_7778195_6053102,4358_418 -4358_80733,205,4358_11855,Dublin Ferryport,9,0,4358_7778195_6053101,4358_418 -4358_80733,205,4358_11856,Dublin Ferryport,23,0,4358_7778195_6053102,4358_418 -4358_80733,205,4358_11857,Dublin Ferryport,11,0,4358_7778195_6053101,4358_418 -4358_80733,205,4358_11858,Dublin Ferryport,25,0,4358_7778195_6053102,4358_418 -4358_80733,205,4358_11859,Dublin Ferryport,13,0,4358_7778195_6053101,4358_418 -4358_80757,205,4358_1186,Marino,2253,0,4358_7778195_5123002,4358_39 -4358_80733,205,4358_11860,Dublin Ferryport,27,0,4358_7778195_6053102,4358_418 -4358_80733,205,4358_11861,Dublin Ferryport,800,0,4358_7778195_6826205,4358_418 -4358_80733,205,4358_11862,Dublin Ferryport,15,0,4358_7778195_6053101,4358_418 -4358_80733,205,4358_11863,Dublin Ferryport,29,0,4358_7778195_6053102,4358_418 -4358_80733,205,4358_11864,Dublin Ferryport,801,0,4358_7778195_6826205,4358_418 -4358_80733,205,4358_11865,Dublin Ferryport,17,0,4358_7778195_6053101,4358_418 -4358_80733,205,4358_11866,Dublin Ferryport,31,0,4358_7778195_6053102,4358_418 -4358_80733,205,4358_11867,Dublin Ferryport,19,0,4358_7778195_6053101,4358_418 -4358_80733,205,4358_11868,Dublin Ferryport,33,0,4358_7778195_6053102,4358_418 -4358_80733,205,4358_11869,Talbot Street,20,1,4358_7778195_6053102,4358_419 -4358_80733,96,4358_11870,Talbot Street,7947,1,4358_7778195_6053101,4358_419 -4358_80733,205,4358_11871,Talbot Street,8,1,4358_7778195_6053101,4358_419 -4358_80733,96,4358_11872,Talbot Street,7949,1,4358_7778195_6053101,4358_419 -4358_80733,205,4358_11873,Talbot Street,22,1,4358_7778195_6053102,4358_419 -4358_80733,96,4358_11874,Talbot Street,7951,1,4358_7778195_6053101,4358_419 -4358_80733,205,4358_11875,Talbot Street,10,1,4358_7778195_6053101,4358_419 -4358_80733,96,4358_11877,Talbot Street,7953,1,4358_7778195_6053101,4358_420 -4358_80733,205,4358_11878,Talbot Street,24,1,4358_7778195_6053102,4358_419 -4358_80757,96,4358_1188,Marino,9770,0,4358_7778195_5123003,4358_39 -4358_80733,96,4358_11880,Talbot Street,7955,1,4358_7778195_6053101,4358_420 -4358_80733,205,4358_11882,Talbot Street,916,1,4358_7778195_6826105,4358_420 -4358_80733,205,4358_11883,Talbot Street,12,1,4358_7778195_6053101,4358_419 -4358_80733,96,4358_11885,Talbot Street,7957,1,4358_7778195_6053101,4358_420 -4358_80733,205,4358_11886,Talbot Street,26,1,4358_7778195_6053102,4358_419 -4358_80733,96,4358_11888,Talbot Street,7959,1,4358_7778195_6053101,4358_420 -4358_80733,205,4358_11889,Talbot Street,14,1,4358_7778195_6053101,4358_419 -4358_80757,205,4358_1189,Marino,2219,0,4358_7778195_5123015,4358_39 -4358_80733,96,4358_11890,Talbot Street,7961,1,4358_7778195_6053101,4358_419 -4358_80733,205,4358_11891,Talbot Street,28,1,4358_7778195_6053102,4358_419 -4358_80733,96,4358_11893,Talbot Street,7963,1,4358_7778195_6053101,4358_420 -4358_80733,205,4358_11894,Talbot Street,16,1,4358_7778195_6053101,4358_419 -4358_80733,96,4358_11896,Talbot Street,7965,1,4358_7778195_6053101,4358_420 -4358_80733,205,4358_11897,Talbot Street,30,1,4358_7778195_6053102,4358_419 -4358_80733,96,4358_11899,Talbot Street,7967,1,4358_7778195_6053101,4358_420 -4358_80760,96,4358_119,Shaw street,9462,0,4358_7778195_9001003,4358_1 -4358_80757,205,4358_1190,Marino,2184,0,4358_7778195_5123018,4358_39 -4358_80733,205,4358_11900,Talbot Street,18,1,4358_7778195_6053101,4358_419 -4358_80733,96,4358_11901,Talbot Street,7969,1,4358_7778195_6053101,4358_419 -4358_80733,205,4358_11902,Talbot Street,32,1,4358_7778195_6053102,4358_419 -4358_80733,96,4358_11903,Talbot Street,7971,1,4358_7778195_6053101,4358_419 -4358_80735,205,4358_11904,Kiltipper,90,0,4358_7778195_2054002,4358_421 -4358_80735,205,4358_11905,Kiltipper,53,0,4358_7778195_2054005,4358_421 -4358_80735,96,4358_11906,Kiltipper,13316,0,4358_7778195_2054001,4358_421 -4358_80735,205,4358_11907,Kiltipper,75,0,4358_7778195_2054007,4358_421 -4358_80735,205,4358_11908,Kiltipper,86,0,4358_7778195_2054001,4358_421 -4358_80735,96,4358_11909,Kiltipper,8258,0,4358_7778195_2054003,4358_421 -4358_80757,96,4358_1191,Marino,9843,0,4358_7778195_5123006,4358_40 -4358_80735,205,4358_11910,Kiltipper,35,0,4358_7778195_2054003,4358_421 -4358_80735,205,4358_11911,Kiltipper,46,0,4358_7778195_2054004,4358_421 -4358_80735,96,4358_11912,Kiltipper,13297,0,4358_7778195_2054002,4358_421 -4358_80735,205,4358_11913,Kiltipper,64,0,4358_7778195_2054006,4358_421 -4358_80735,96,4358_11914,Kiltipper,13318,0,4358_7778195_2054001,4358_421 -4358_80735,205,4358_11916,Kiltipper,55,0,4358_7778195_2054005,4358_422 -4358_80735,96,4358_11917,Kiltipper,13289,0,4358_7778195_2054004,4358_421 -4358_80735,205,4358_11918,Kiltipper,77,0,4358_7778195_2054007,4358_421 -4358_80735,96,4358_11919,Kiltipper,8260,0,4358_7778195_2054003,4358_421 -4358_80735,205,4358_11920,Kiltipper,92,0,4358_7778195_2054002,4358_421 -4358_80735,96,4358_11922,Kiltipper,13310,0,4358_7778195_2054005,4358_421 -4358_80735,205,4358_11923,Kiltipper,37,0,4358_7778195_2054003,4358_421 -4358_80735,96,4358_11924,Kiltipper,13299,0,4358_7778195_2054002,4358_421 -4358_80735,205,4358_11925,Kiltipper,48,0,4358_7778195_2054004,4358_421 -4358_80735,96,4358_11927,Kiltipper,13320,0,4358_7778195_2054001,4358_421 -4358_80735,205,4358_11928,Kiltipper,66,0,4358_7778195_2054006,4358_421 -4358_80735,96,4358_11929,Kiltipper,13291,0,4358_7778195_2054004,4358_421 -4358_80757,205,4358_1193,Marino,2263,0,4358_7778195_5123004,4358_39 -4358_80735,205,4358_11931,Kiltipper,57,0,4358_7778195_2054005,4358_422 -4358_80735,96,4358_11932,Kiltipper,8262,0,4358_7778195_2054003,4358_421 -4358_80735,205,4358_11933,Kiltipper,79,0,4358_7778195_2054007,4358_421 -4358_80735,96,4358_11934,Kiltipper,13312,0,4358_7778195_2054005,4358_421 -4358_80735,205,4358_11935,Kiltipper,94,0,4358_7778195_2054002,4358_421 -4358_80735,96,4358_11937,Kiltipper,13301,0,4358_7778195_2054002,4358_421 -4358_80735,205,4358_11938,Kiltipper,39,0,4358_7778195_2054003,4358_421 -4358_80735,96,4358_11939,Kiltipper,13322,0,4358_7778195_2054001,4358_421 -4358_80757,96,4358_1194,Marino,9927,0,4358_7778195_5123015,4358_39 -4358_80735,205,4358_11941,Kiltipper,50,0,4358_7778195_2054004,4358_422 -4358_80735,96,4358_11942,Kiltipper,13293,0,4358_7778195_2054004,4358_421 -4358_80735,205,4358_11943,Kiltipper,68,0,4358_7778195_2054006,4358_421 -4358_80735,96,4358_11944,Kiltipper,8264,0,4358_7778195_2054003,4358_421 -4358_80735,205,4358_11946,Kiltipper,59,0,4358_7778195_2054005,4358_422 -4358_80735,96,4358_11947,Kiltipper,13314,0,4358_7778195_2054005,4358_421 -4358_80735,205,4358_11948,Kiltipper,81,0,4358_7778195_2054007,4358_421 -4358_80735,96,4358_11949,Kiltipper,13303,0,4358_7778195_2054002,4358_421 -4358_80735,205,4358_11950,Kiltipper,96,0,4358_7778195_2054002,4358_421 -4358_80735,96,4358_11952,Kiltipper,13324,0,4358_7778195_2054001,4358_421 -4358_80735,205,4358_11953,Kiltipper,41,0,4358_7778195_2054003,4358_421 -4358_80735,205,4358_11954,Kiltipper,52,0,4358_7778195_2054004,4358_421 -4358_80735,96,4358_11955,Kiltipper,13295,0,4358_7778195_2054004,4358_422 -4358_80735,205,4358_11957,Kiltipper,88,0,4358_7778195_2054008,4358_422 -4358_80735,96,4358_11958,Kiltipper,8266,0,4358_7778195_2054003,4358_421 -4358_80735,205,4358_11959,Kiltipper,70,0,4358_7778195_2054006,4358_421 -4358_80757,205,4358_1196,Marino,2231,0,4358_7778195_5123007,4358_39 -4358_80735,205,4358_11961,Kiltipper,61,0,4358_7778195_2054005,4358_422 -4358_80735,96,4358_11962,Kiltipper,13305,0,4358_7778195_2054002,4358_423 -4358_80735,205,4358_11963,Kiltipper,83,0,4358_7778195_2054007,4358_421 -4358_80735,96,4358_11964,Kiltipper,13326,0,4358_7778195_2054001,4358_421 -4358_80735,205,4358_11965,Kiltipper,98,0,4358_7778195_2054002,4358_421 -4358_80735,205,4358_11967,Kiltipper,43,0,4358_7778195_2054003,4358_421 -4358_80735,96,4358_11969,Kiltipper,13307,0,4358_7778195_2054002,4358_422 -4358_80757,96,4358_1197,Marino,9777,0,4358_7778195_5123010,4358_39 -4358_80735,205,4358_11970,Kiltipper,72,0,4358_7778195_2054006,4358_421 -4358_80735,96,4358_11972,Kiltipper,8268,0,4358_7778195_2054006,4358_421 -4358_80735,205,4358_11973,Kiltipper,100,0,4358_7778195_2054002,4358_421 -4358_80735,205,4358_11975,Kiltipper,74,0,4358_7778195_2054006,4358_421 -4358_80735,96,4358_11976,Kiltipper,13309,0,4358_7778195_2054002,4358_422 -4358_80735,205,4358_11977,Pearse St,85,1,4358_7778195_2054001,4358_424 -4358_80735,205,4358_11978,Pearse St,34,1,4358_7778195_2054003,4358_424 -4358_80735,205,4358_11979,Pearse St,45,1,4358_7778195_2054004,4358_424 -4358_80757,205,4358_1198,Marino,2134,0,4358_7778195_5123019,4358_39 -4358_80735,96,4358_11980,Pearse St,13296,1,4358_7778195_2054002,4358_424 -4358_80735,205,4358_11981,Pearse St,91,1,4358_7778195_2054002,4358_424 -4358_80735,205,4358_11982,Pearse St,63,1,4358_7778195_2054006,4358_424 -4358_80735,96,4358_11983,Pearse St,13317,1,4358_7778195_2054001,4358_424 -4358_80735,205,4358_11984,Pearse St,54,1,4358_7778195_2054005,4358_425 -4358_80735,205,4358_11985,Pearse St,76,1,4358_7778195_2054007,4358_424 -4358_80735,96,4358_11987,Pearse St,8259,1,4358_7778195_2054003,4358_424 -4358_80735,205,4358_11988,Pearse St,87,1,4358_7778195_2054001,4358_425 -4358_80735,205,4358_11990,Pearse St,36,1,4358_7778195_2054003,4358_425 -4358_80735,205,4358_11991,Pearse St,47,1,4358_7778195_2054004,4358_424 -4358_80735,96,4358_11992,Pearse St,13298,1,4358_7778195_2054002,4358_425 -4358_80735,96,4358_11993,Pearse St,13319,1,4358_7778195_2054001,4358_424 -4358_80735,205,4358_11994,Pearse St,65,1,4358_7778195_2054006,4358_425 -4358_80735,96,4358_11996,Pearse St,13290,1,4358_7778195_2054004,4358_424 -4358_80735,205,4358_11997,Pearse St,56,1,4358_7778195_2054005,4358_425 -4358_80735,205,4358_11999,Pearse St,78,1,4358_7778195_2054007,4358_425 -4358_80760,96,4358_12,Shaw street,9450,0,4358_7778195_9001003,4358_2 -4358_80760,205,4358_120,Shaw street,1801,0,4358_7778195_9001012,4358_1 -4358_80757,96,4358_1200,Marino,9936,0,4358_7778195_5123013,4358_39 -4358_80735,96,4358_12000,Pearse St,8261,1,4358_7778195_2054003,4358_426 -4358_80735,205,4358_12001,Pearse St,93,1,4358_7778195_2054002,4358_424 -4358_80735,96,4358_12002,Pearse St,13311,1,4358_7778195_2054005,4358_425 -4358_80735,205,4358_12003,Pearse St,38,1,4358_7778195_2054003,4358_424 -4358_80735,96,4358_12005,Pearse St,13300,1,4358_7778195_2054002,4358_426 -4358_80735,96,4358_12006,Pearse St,13321,1,4358_7778195_2054001,4358_424 -4358_80735,205,4358_12007,Pearse St,49,1,4358_7778195_2054004,4358_425 -4358_80735,205,4358_12009,Pearse St,67,1,4358_7778195_2054006,4358_425 -4358_80757,205,4358_1201,Marino,2286,0,4358_7778195_5123009,4358_39 -4358_80735,96,4358_12010,Pearse St,13292,1,4358_7778195_2054004,4358_426 -4358_80735,96,4358_12011,Pearse St,8263,1,4358_7778195_2054003,4358_424 -4358_80735,205,4358_12012,Pearse St,58,1,4358_7778195_2054005,4358_425 -4358_80735,96,4358_12013,Pearse St,13313,1,4358_7778195_2054005,4358_424 -4358_80735,205,4358_12014,Pearse St,80,1,4358_7778195_2054007,4358_425 -4358_80735,205,4358_12016,Pearse St,95,1,4358_7778195_2054002,4358_424 -4358_80735,96,4358_12017,Pearse St,13302,1,4358_7778195_2054002,4358_425 -4358_80735,96,4358_12018,Pearse St,13323,1,4358_7778195_2054001,4358_424 -4358_80757,96,4358_1202,Marino,9833,0,4358_7778195_5123012,4358_39 -4358_80735,205,4358_12020,Pearse St,40,1,4358_7778195_2054003,4358_426 -4358_80735,205,4358_12021,Pearse St,51,1,4358_7778195_2054004,4358_424 -4358_80735,96,4358_12022,Pearse St,13294,1,4358_7778195_2054004,4358_425 -4358_80735,205,4358_12023,Pearse St,69,1,4358_7778195_2054006,4358_424 -4358_80735,96,4358_12024,Pearse St,8265,1,4358_7778195_2054003,4358_425 -4358_80735,96,4358_12026,Pearse St,13315,1,4358_7778195_2054005,4358_424 -4358_80735,205,4358_12027,Pearse St,60,1,4358_7778195_2054005,4358_425 -4358_80735,205,4358_12029,Pearse St,82,1,4358_7778195_2054007,4358_425 -4358_80757,205,4358_1203,Marino,2202,0,4358_7778195_5123005,4358_40 -4358_80735,96,4358_12030,Pearse St,13304,1,4358_7778195_2054002,4358_426 -4358_80735,205,4358_12031,Pearse St,97,1,4358_7778195_2054002,4358_424 -4358_80735,96,4358_12032,Pearse St,13325,1,4358_7778195_2054001,4358_425 -4358_80735,205,4358_12033,Pearse St,42,1,4358_7778195_2054003,4358_424 -4358_80735,96,4358_12035,Pearse St,8267,1,4358_7778195_2054003,4358_424 -4358_80735,205,4358_12036,Pearse St,89,1,4358_7778195_2054008,4358_424 -4358_80735,205,4358_12038,Pearse St,71,1,4358_7778195_2054006,4358_425 -4358_80735,96,4358_12039,Pearse St,13306,1,4358_7778195_2054002,4358_426 -4358_80735,205,4358_12040,Pearse St,62,1,4358_7778195_2054005,4358_424 -4358_80735,205,4358_12041,Pearse St,99,1,4358_7778195_2054002,4358_424 -4358_80735,96,4358_12042,Pearse St,13327,1,4358_7778195_2054001,4358_425 -4358_80735,205,4358_12044,Pearse St,44,1,4358_7778195_2054003,4358_424 -4358_80735,96,4358_12046,Pearse St,13308,1,4358_7778195_2054002,4358_424 -4358_80735,205,4358_12047,Pearse St,73,1,4358_7778195_2054006,4358_424 -4358_80735,205,4358_12049,Pearse St,101,1,4358_7778195_2054002,4358_424 -4358_80757,205,4358_1205,Marino,2179,0,4358_7778195_5123006,4358_39 -4358_80735,96,4358_12050,Pearse St,8269,1,4358_7778195_2054006,4358_425 -4358_80736,96,4358_12051,The Square,8862,0,4358_7778195_3056002,4358_427 -4358_80736,205,4358_12052,The Square,1137,0,4358_7778195_3056002,4358_428 -4358_80736,96,4358_12053,The Square,13411,0,4358_7778195_3056001,4358_427 -4358_80736,205,4358_12054,The Square,1271,0,4358_7778195_3056001,4358_428 -4358_80736,96,4358_12055,The Square,8864,0,4358_7778195_3056002,4358_427 -4358_80736,205,4358_12056,The Square,1198,0,4358_7778195_3056003,4358_428 -4358_80736,205,4358_12057,The Square,1224,0,4358_7778195_3056004,4358_427 -4358_80736,96,4358_12058,The Square,13413,0,4358_7778195_3056001,4358_428 -4358_80757,96,4358_1206,Marino,9799,0,4358_7778195_5123004,4358_39 -4358_80736,96,4358_12060,The Square,8866,0,4358_7778195_3056002,4358_427 -4358_80736,205,4358_12061,The Square,1200,0,4358_7778195_3056003,4358_428 -4358_80736,205,4358_12063,The Square,1226,0,4358_7778195_3056004,4358_427 -4358_80736,96,4358_12064,The Square,13415,0,4358_7778195_3056001,4358_428 -4358_80736,96,4358_12066,The Square,8839,0,4358_7778195_3056003,4358_427 -4358_80736,205,4358_12067,The Square,1202,0,4358_7778195_3056003,4358_428 -4358_80736,205,4358_12069,The Square,1228,0,4358_7778195_3056004,4358_427 -4358_80736,96,4358_12070,The Square,13417,0,4358_7778195_3056001,4358_428 -4358_80736,96,4358_12072,The Square,8841,0,4358_7778195_3056003,4358_427 -4358_80736,205,4358_12073,The Square,1204,0,4358_7778195_3056003,4358_428 -4358_80736,205,4358_12075,The Square,1230,0,4358_7778195_3056004,4358_427 -4358_80736,96,4358_12076,The Square,13419,0,4358_7778195_3056001,4358_428 -4358_80736,96,4358_12078,The Square,8843,0,4358_7778195_3056003,4358_427 -4358_80736,205,4358_12079,The Square,1299,0,4358_7778195_3056005,4358_428 -4358_80757,205,4358_1208,Marino,2323,0,4358_7778195_5123017,4358_39 -4358_80736,96,4358_12081,The Square,13421,0,4358_7778195_3056001,4358_427 -4358_80736,205,4358_12082,The Square,1314,0,4358_7778195_3056006,4358_428 -4358_80736,96,4358_12084,The Square,8845,0,4358_7778195_3056003,4358_427 -4358_80736,205,4358_12085,The Square,1301,0,4358_7778195_3056005,4358_428 -4358_80736,96,4358_12087,The Square,13423,0,4358_7778195_3056001,4358_427 -4358_80736,205,4358_12088,The Square,1316,0,4358_7778195_3056006,4358_428 -4358_80757,96,4358_1209,Marino,9947,0,4358_7778195_5123014,4358_39 -4358_80736,96,4358_12090,The Square,8847,0,4358_7778195_3056003,4358_427 -4358_80736,205,4358_12091,The Square,1303,0,4358_7778195_3056005,4358_428 -4358_80736,96,4358_12093,Ringsend Road,13410,1,4358_7778195_3056001,4358_430 -4358_80736,205,4358_12094,Ringsend Road,1270,1,4358_7778195_3056001,4358_431 -4358_80736,96,4358_12095,Ringsend Road,8863,1,4358_7778195_3056002,4358_430 -4358_80736,205,4358_12096,Ringsend Road,1138,1,4358_7778195_3056002,4358_431 -4358_80736,96,4358_12097,Ringsend Road,13412,1,4358_7778195_3056001,4358_430 -4358_80736,205,4358_12098,Ringsend Road,1272,1,4358_7778195_3056001,4358_431 -4358_80736,96,4358_12099,Ringsend Road,8865,1,4358_7778195_3056002,4358_430 -4358_80736,205,4358_12100,Ringsend Road,1199,1,4358_7778195_3056003,4358_431 -4358_80736,205,4358_12101,Ringsend Road,1225,1,4358_7778195_3056004,4358_430 -4358_80736,96,4358_12102,Ringsend Road,13414,1,4358_7778195_3056001,4358_431 -4358_80736,96,4358_12104,Ringsend Road,8867,1,4358_7778195_3056002,4358_430 -4358_80736,205,4358_12105,Ringsend Road,1201,1,4358_7778195_3056003,4358_431 -4358_80736,205,4358_12107,Ringsend Road,1227,1,4358_7778195_3056004,4358_430 -4358_80736,96,4358_12108,Ringsend Road,13416,1,4358_7778195_3056001,4358_431 -4358_80757,205,4358_1211,Marino,2096,0,4358_7778195_5123016,4358_39 -4358_80736,96,4358_12110,Ringsend Road,8840,1,4358_7778195_3056003,4358_430 -4358_80736,205,4358_12111,Ringsend Road,1203,1,4358_7778195_3056003,4358_431 -4358_80736,205,4358_12113,Ringsend Road,1229,1,4358_7778195_3056004,4358_430 -4358_80736,96,4358_12114,Ringsend Road,13418,1,4358_7778195_3056001,4358_431 -4358_80736,96,4358_12116,Ringsend Road,8842,1,4358_7778195_3056003,4358_430 -4358_80736,205,4358_12117,Ringsend Road,1298,1,4358_7778195_3056005,4358_431 -4358_80736,96,4358_12119,Ringsend Road,13420,1,4358_7778195_3056001,4358_430 -4358_80757,96,4358_1212,Marino,9941,0,4358_7778195_5123016,4358_39 -4358_80736,205,4358_12120,Ringsend Road,1313,1,4358_7778195_3056006,4358_431 -4358_80736,96,4358_12122,Ringsend Road,8844,1,4358_7778195_3056003,4358_430 -4358_80736,205,4358_12123,Ringsend Road,1300,1,4358_7778195_3056005,4358_431 -4358_80736,96,4358_12125,Ringsend Road,13422,1,4358_7778195_3056001,4358_430 -4358_80736,205,4358_12126,Ringsend Road,1315,1,4358_7778195_3056006,4358_431 -4358_80736,96,4358_12128,Ringsend Road,8846,1,4358_7778195_3056003,4358_430 -4358_80736,205,4358_12129,Ringsend Road,1302,1,4358_7778195_3056005,4358_431 -4358_80757,205,4358_1213,Marino,2277,0,4358_7778195_5123008,4358_40 -4358_80736,96,4358_12131,Ringsend Road,13424,1,4358_7778195_3056001,4358_430 -4358_80736,205,4358_12132,Ringsend Road,1317,1,4358_7778195_3056006,4358_431 -4358_80679,205,4358_12134,Howth Station,5488,0,4358_7778195_6006002,4358_433 -4358_80679,96,4358_12135,Howth Station,12239,0,4358_7778195_6006001,4358_433 -4358_80679,205,4358_12136,Howth Station,5544,0,4358_7778195_6006001,4358_433 -4358_80679,96,4358_12138,Howth Station,12310,0,4358_7778195_6006003,4358_433 -4358_80679,205,4358_12139,Howth Station,799,0,4358_7778195_6826112,4358_433 -4358_80679,205,4358_12140,Howth Station,5537,0,4358_7778195_6006004,4358_433 -4358_80679,96,4358_12142,Howth Station,12351,0,4358_7778195_6006002,4358_433 -4358_80679,205,4358_12143,Howth Station,5490,0,4358_7778195_6006002,4358_433 -4358_80679,96,4358_12145,Howth Station,12241,0,4358_7778195_6006001,4358_435 -4358_80679,205,4358_12146,Howth Station,5649,0,4358_7778195_6006005,4358_433 -4358_80679,96,4358_12147,Howth Station,12312,0,4358_7778195_6006003,4358_434 -4358_80679,205,4358_12149,Howth Station,5539,0,4358_7778195_6006004,4358_433 -4358_80757,205,4358_1215,Marino,2308,0,4358_7778195_5123012,4358_39 -4358_80679,96,4358_12150,Howth Station,12353,0,4358_7778195_6006002,4358_434 -4358_80679,205,4358_12152,Howth Station,5492,0,4358_7778195_6006002,4358_433 -4358_80679,96,4358_12154,Howth Station,12243,0,4358_7778195_6006001,4358_435 -4358_80679,205,4358_12155,Howth Station,5651,0,4358_7778195_6006005,4358_433 -4358_80679,96,4358_12156,Howth Station,12314,0,4358_7778195_6006003,4358_434 -4358_80679,205,4358_12158,Howth Station,5541,0,4358_7778195_6006004,4358_433 -4358_80679,96,4358_12159,Howth Station,12355,0,4358_7778195_6006002,4358_434 -4358_80757,96,4358_1216,Marino,9951,0,4358_7778195_5123017,4358_40 -4358_80679,205,4358_12161,Howth Station,5494,0,4358_7778195_6006002,4358_433 -4358_80679,96,4358_12163,Howth Station,12245,0,4358_7778195_6006001,4358_435 -4358_80679,205,4358_12164,Howth Station,5653,0,4358_7778195_6006005,4358_433 -4358_80679,96,4358_12165,Howth Station,12316,0,4358_7778195_6006003,4358_434 -4358_80679,96,4358_12167,Howth Station,12274,0,4358_7778195_6006004,4358_433 -4358_80679,205,4358_12169,Howth Station,5555,0,4358_7778195_6006006,4358_435 -4358_80679,205,4358_12170,Howth Station,5496,0,4358_7778195_6006002,4358_433 -4358_80679,96,4358_12172,Howth Station,12247,0,4358_7778195_6006001,4358_435 -4358_80679,205,4358_12173,Howth Station,5655,0,4358_7778195_6006005,4358_433 -4358_80679,96,4358_12174,Howth Station,12318,0,4358_7778195_6006003,4358_434 -4358_80679,96,4358_12176,Howth Station,12276,0,4358_7778195_6006004,4358_433 -4358_80679,205,4358_12178,Howth Station,5557,0,4358_7778195_6006006,4358_435 -4358_80679,205,4358_12179,Howth Station,5498,0,4358_7778195_6006002,4358_433 -4358_80757,96,4358_1218,Marino,9929,0,4358_7778195_5123015,4358_39 -4358_80679,96,4358_12181,Howth Station,12249,0,4358_7778195_6006001,4358_435 -4358_80679,205,4358_12182,Howth Station,5657,0,4358_7778195_6006005,4358_433 -4358_80679,96,4358_12183,Howth Station,12320,0,4358_7778195_6006003,4358_434 -4358_80679,96,4358_12185,Howth Station,12278,0,4358_7778195_6006004,4358_433 -4358_80679,205,4358_12187,Howth Station,5559,0,4358_7778195_6006006,4358_435 -4358_80679,205,4358_12188,Howth Station,5500,0,4358_7778195_6006002,4358_433 -4358_80757,205,4358_1219,Marino,2265,0,4358_7778195_5123004,4358_40 -4358_80679,96,4358_12190,Howth Station,12251,0,4358_7778195_6006001,4358_435 -4358_80679,205,4358_12191,Abbey St Lower,5543,1,4358_7778195_6006001,4358_436 -4358_80679,96,4358_12192,Abbey St Lower,12350,1,4358_7778195_6006002,4358_436 -4358_80679,205,4358_12193,Abbey St Lower,5595,1,4358_7778195_6006003,4358_436 -4358_80679,205,4358_12194,Abbey St Lower,5489,1,4358_7778195_6006002,4358_436 -4358_80679,96,4358_12196,Abbey St Lower,12240,1,4358_7778195_6006001,4358_437 -4358_80679,205,4358_12197,Abbey St Lower,5545,1,4358_7778195_6006001,4358_436 -4358_80679,205,4358_12198,Abbey St Lower,5648,1,4358_7778195_6006005,4358_436 -4358_80679,96,4358_12199,Abbey St Lower,12311,1,4358_7778195_6006003,4358_437 -4358_80760,96,4358_122,Shaw street,9500,0,4358_7778195_9001004,4358_1 -4358_80757,96,4358_1220,Marino,9779,0,4358_7778195_5123010,4358_39 -4358_80679,205,4358_12201,Abbey St Lower,5538,1,4358_7778195_6006004,4358_436 -4358_80679,96,4358_12202,Abbey St Lower,12352,1,4358_7778195_6006002,4358_437 -4358_80679,205,4358_12204,Abbey St Lower,5491,1,4358_7778195_6006002,4358_436 -4358_80679,96,4358_12206,Abbey St Lower,12242,1,4358_7778195_6006001,4358_438 -4358_80679,205,4358_12207,Abbey St Lower,5650,1,4358_7778195_6006005,4358_436 -4358_80679,96,4358_12208,Abbey St Lower,12313,1,4358_7778195_6006003,4358_437 -4358_80757,205,4358_1221,Marino,2288,0,4358_7778195_5123009,4358_40 -4358_80679,205,4358_12210,Abbey St Lower,5540,1,4358_7778195_6006004,4358_436 -4358_80679,96,4358_12211,Abbey St Lower,12354,1,4358_7778195_6006002,4358_437 -4358_80679,205,4358_12213,Abbey St Lower,5493,1,4358_7778195_6006002,4358_436 -4358_80679,96,4358_12215,Abbey St Lower,12244,1,4358_7778195_6006001,4358_438 -4358_80679,205,4358_12216,Abbey St Lower,5652,1,4358_7778195_6006005,4358_436 -4358_80679,96,4358_12217,Abbey St Lower,12315,1,4358_7778195_6006003,4358_437 -4358_80679,205,4358_12219,Abbey St Lower,5542,1,4358_7778195_6006004,4358_436 -4358_80679,96,4358_12220,Abbey St Lower,12356,1,4358_7778195_6006002,4358_437 -4358_80679,205,4358_12222,Abbey St Lower,5495,1,4358_7778195_6006002,4358_436 -4358_80679,96,4358_12224,Abbey St Lower,12246,1,4358_7778195_6006001,4358_438 -4358_80679,205,4358_12225,Abbey St Lower,5654,1,4358_7778195_6006005,4358_436 -4358_80679,96,4358_12226,Abbey St Lower,12317,1,4358_7778195_6006003,4358_437 -4358_80679,96,4358_12228,Abbey St Lower,12275,1,4358_7778195_6006004,4358_436 -4358_80757,205,4358_1223,Marino,2204,0,4358_7778195_5123005,4358_39 -4358_80679,205,4358_12230,Abbey St Lower,5556,1,4358_7778195_6006006,4358_438 -4358_80679,205,4358_12231,Abbey St Lower,5497,1,4358_7778195_6006002,4358_436 -4358_80679,96,4358_12233,Abbey St Lower,12248,1,4358_7778195_6006001,4358_438 -4358_80679,205,4358_12234,Abbey St Lower,5656,1,4358_7778195_6006005,4358_436 -4358_80679,96,4358_12235,Abbey St Lower,12319,1,4358_7778195_6006003,4358_437 -4358_80679,96,4358_12237,Abbey St Lower,12277,1,4358_7778195_6006004,4358_436 -4358_80679,205,4358_12239,Abbey St Lower,5558,1,4358_7778195_6006006,4358_438 -4358_80757,96,4358_1224,Marino,9938,0,4358_7778195_5123013,4358_40 -4358_80679,205,4358_12240,Abbey St Lower,5499,1,4358_7778195_6006002,4358_436 -4358_80679,96,4358_12242,Abbey St Lower,12250,1,4358_7778195_6006001,4358_438 -4358_80679,205,4358_12243,Abbey St Lower,5658,1,4358_7778195_6006005,4358_436 -4358_80679,96,4358_12244,Abbey St Lower,12321,1,4358_7778195_6006003,4358_437 -4358_80737,205,4358_12246,Red Cow Luas,6615,0,4358_7778195_4060002,4358_439 -4358_80737,96,4358_12247,Red Cow Luas,11580,0,4358_7778195_4060002,4358_439 -4358_80737,205,4358_12248,Red Cow Luas,4411,0,4358_7778195_4060001,4358_440 -4358_80737,205,4358_12250,Red Cow Luas,4414,0,4358_7778195_4060003,4358_440 -4358_80737,96,4358_12251,Red Cow Luas,11569,0,4358_7778195_4060001,4358_441 -4358_80737,205,4358_12252,Red Cow Luas,6617,0,4358_7778195_4060002,4358_439 -4358_80737,96,4358_12254,Red Cow Luas,11593,0,4358_7778195_4060003,4358_441 -4358_80737,96,4358_12255,Red Cow Luas,11582,0,4358_7778195_4060002,4358_439 -4358_80737,205,4358_12256,Red Cow Luas,4421,0,4358_7778195_4060004,4358_440 -4358_80737,205,4358_12259,Red Cow Luas,4416,0,4358_7778195_4060003,4358_440 -4358_80757,96,4358_1226,Marino,9801,0,4358_7778195_5123004,4358_39 -4358_80737,96,4358_12260,Red Cow Luas,11571,0,4358_7778195_4060001,4358_441 -4358_80737,205,4358_12261,Red Cow Luas,6619,0,4358_7778195_4060002,4358_439 -4358_80737,96,4358_12263,Red Cow Luas,11595,0,4358_7778195_4060003,4358_441 -4358_80737,96,4358_12264,Red Cow Luas,11584,0,4358_7778195_4060002,4358_439 -4358_80737,205,4358_12265,Red Cow Luas,4423,0,4358_7778195_4060004,4358_440 -4358_80737,205,4358_12268,Red Cow Luas,4418,0,4358_7778195_4060003,4358_440 -4358_80737,96,4358_12269,Red Cow Luas,11573,0,4358_7778195_4060001,4358_441 -4358_80757,205,4358_1227,Marino,2325,0,4358_7778195_5123017,4358_40 -4358_80737,205,4358_12270,Red Cow Luas,4432,0,4358_7778195_4060005,4358_439 -4358_80737,96,4358_12271,Red Cow Luas,11597,0,4358_7778195_4060004,4358_440 -4358_80737,96,4358_12273,Red Cow Luas,11586,0,4358_7778195_4060002,4358_439 -4358_80737,205,4358_12274,Red Cow Luas,4425,0,4358_7778195_4060004,4358_440 -4358_80737,205,4358_12276,Red Cow Luas,5243,0,4358_7778195_4824216,4358_439 -4358_80737,205,4358_12278,Red Cow Luas,4420,0,4358_7778195_4060003,4358_440 -4358_80737,96,4358_12279,Red Cow Luas,11575,0,4358_7778195_4060001,4358_441 -4358_80757,205,4358_1228,Marino,2098,0,4358_7778195_5123016,4358_39 -4358_80737,205,4358_12280,Red Cow Luas,4434,0,4358_7778195_4060005,4358_439 -4358_80737,96,4358_12281,Red Cow Luas,11599,0,4358_7778195_4060004,4358_440 -4358_80737,96,4358_12283,Red Cow Luas,11588,0,4358_7778195_4060002,4358_439 -4358_80737,205,4358_12284,Red Cow Luas,4427,0,4358_7778195_4060004,4358_440 -4358_80737,205,4358_12286,Red Cow Luas,4440,0,4358_7778195_4060006,4358_439 -4358_80737,96,4358_12288,Red Cow Luas,11577,0,4358_7778195_4060001,4358_441 -4358_80737,205,4358_12289,Red Cow Luas,4436,0,4358_7778195_4060005,4358_439 -4358_80757,96,4358_1229,Marino,9949,0,4358_7778195_5123014,4358_40 -4358_80737,96,4358_12290,Red Cow Luas,11601,0,4358_7778195_4060004,4358_440 -4358_80737,96,4358_12292,Red Cow Luas,11590,0,4358_7778195_4060002,4358_439 -4358_80737,205,4358_12293,Red Cow Luas,4429,0,4358_7778195_4060004,4358_440 -4358_80737,205,4358_12295,Red Cow Luas,4442,0,4358_7778195_4060006,4358_439 -4358_80737,96,4358_12297,Red Cow Luas,11579,0,4358_7778195_4060001,4358_441 -4358_80737,205,4358_12298,Red Cow Luas,4438,0,4358_7778195_4060005,4358_439 -4358_80737,96,4358_12299,Red Cow Luas,11603,0,4358_7778195_4060004,4358_440 -4358_80760,205,4358_123,Shaw street,1853,0,4358_7778195_9001006,4358_1 -4358_80737,205,4358_12301,John Rogerson Qy,4410,1,4358_7778195_4060001,4358_442 -4358_80737,205,4358_12302,John Rogerson Qy,4413,1,4358_7778195_4060003,4358_442 -4358_80737,96,4358_12303,John Rogerson Qy,11568,1,4358_7778195_4060001,4358_443 -4358_80737,205,4358_12304,John Rogerson Qy,6616,1,4358_7778195_4060002,4358_442 -4358_80737,96,4358_12305,John Rogerson Qy,11592,1,4358_7778195_4060003,4358_443 -4358_80737,96,4358_12306,John Rogerson Qy,11581,1,4358_7778195_4060002,4358_442 -4358_80737,205,4358_12307,John Rogerson Qy,4412,1,4358_7778195_4060001,4358_443 -4358_80737,205,4358_12309,John Rogerson Qy,5242,1,4358_7778195_4824116,4358_445 -4358_80757,96,4358_1231,Marino,9943,0,4358_7778195_5123016,4358_39 -4358_80737,205,4358_12311,John Rogerson Qy,4415,1,4358_7778195_4060003,4358_443 -4358_80737,96,4358_12312,John Rogerson Qy,11570,1,4358_7778195_4060001,4358_444 -4358_80737,205,4358_12313,John Rogerson Qy,6618,1,4358_7778195_4060002,4358_442 -4358_80737,96,4358_12315,John Rogerson Qy,11594,1,4358_7778195_4060003,4358_444 -4358_80737,96,4358_12316,John Rogerson Qy,11583,1,4358_7778195_4060002,4358_442 -4358_80737,205,4358_12317,John Rogerson Qy,4422,1,4358_7778195_4060004,4358_443 -4358_80757,205,4358_1232,Marino,2310,0,4358_7778195_5123012,4358_40 -4358_80737,205,4358_12320,John Rogerson Qy,4417,1,4358_7778195_4060003,4358_443 -4358_80737,96,4358_12321,John Rogerson Qy,11572,1,4358_7778195_4060001,4358_444 -4358_80737,205,4358_12322,John Rogerson Qy,4431,1,4358_7778195_4060005,4358_442 -4358_80737,96,4358_12323,John Rogerson Qy,11596,1,4358_7778195_4060004,4358_443 -4358_80737,96,4358_12325,John Rogerson Qy,11585,1,4358_7778195_4060002,4358_442 -4358_80737,205,4358_12326,John Rogerson Qy,4424,1,4358_7778195_4060004,4358_443 -4358_80737,205,4358_12329,John Rogerson Qy,4419,1,4358_7778195_4060003,4358_443 -4358_80737,96,4358_12330,John Rogerson Qy,11574,1,4358_7778195_4060001,4358_444 -4358_80737,205,4358_12331,John Rogerson Qy,4433,1,4358_7778195_4060005,4358_442 -4358_80737,96,4358_12332,John Rogerson Qy,11598,1,4358_7778195_4060004,4358_443 -4358_80737,96,4358_12334,John Rogerson Qy,11587,1,4358_7778195_4060002,4358_442 -4358_80737,205,4358_12335,John Rogerson Qy,4426,1,4358_7778195_4060004,4358_443 -4358_80737,205,4358_12337,John Rogerson Qy,4439,1,4358_7778195_4060006,4358_442 -4358_80737,96,4358_12339,John Rogerson Qy,11576,1,4358_7778195_4060001,4358_444 -4358_80757,205,4358_1234,Marino,2267,0,4358_7778195_5123004,4358_39 -4358_80737,205,4358_12340,John Rogerson Qy,4435,1,4358_7778195_4060005,4358_442 -4358_80737,96,4358_12341,John Rogerson Qy,11600,1,4358_7778195_4060004,4358_443 -4358_80737,96,4358_12343,John Rogerson Qy,11589,1,4358_7778195_4060002,4358_442 -4358_80737,205,4358_12344,John Rogerson Qy,4428,1,4358_7778195_4060004,4358_443 -4358_80737,205,4358_12346,John Rogerson Qy,4441,1,4358_7778195_4060006,4358_442 -4358_80737,96,4358_12348,John Rogerson Qy,11578,1,4358_7778195_4060001,4358_444 -4358_80737,205,4358_12349,John Rogerson Qy,4437,1,4358_7778195_4060005,4358_442 -4358_80757,96,4358_1235,Marino,9953,0,4358_7778195_5123017,4358_40 -4358_80737,96,4358_12350,John Rogerson Qy,11602,1,4358_7778195_4060004,4358_443 -4358_80737,96,4358_12352,John Rogerson Qy,11591,1,4358_7778195_4060002,4358_442 -4358_80737,205,4358_12353,John Rogerson Qy,4430,1,4358_7778195_4060004,4358_443 -4358_80740,205,4358_12355,Ballyknockan,6106,0,4358_7778195_3065001,4358_447 -4358_80740,205,4358_12356,Ballymore,6114,0,4358_7778195_3065002,4358_448 -4358_80740,96,4358_12357,Ballymore,8994,0,4358_7778195_3065002,4358_450 -4358_80740,205,4358_12358,Blessington,1482,0,4358_7778195_3065006,4358_446 -4358_80740,96,4358_12359,Blessington,8978,0,4358_7778195_3065004,4358_446 -4358_80757,205,4358_1236,Marino,2290,0,4358_7778195_5123009,4358_39 -4358_80740,205,4358_12360,Ballymore,6117,0,4358_7778195_3065004,4358_448 -4358_80740,96,4358_12361,Ballymore,9009,0,4358_7778195_3065006,4358_448 -4358_80740,205,4358_12363,Blessington,6108,0,4358_7778195_3065001,4358_446 -4358_80740,96,4358_12365,Blessington,8996,0,4358_7778195_3065002,4358_449 -4358_80740,205,4358_12366,Blessington,6119,0,4358_7778195_3065004,4358_446 -4358_80740,96,4358_12367,Ballymore,9011,0,4358_7778195_3065006,4358_448 -4358_80740,205,4358_12369,Blessington,6110,0,4358_7778195_3065001,4358_446 -4358_80740,96,4358_12371,Ballymore,8998,0,4358_7778195_3065002,4358_448 -4358_80740,205,4358_12372,Blessington,6407,0,4358_7778195_3065521,4358_446 -4358_80740,205,4358_12373,Blessington,6121,0,4358_7778195_3065004,4358_446 -4358_80740,96,4358_12374,Blessington,9013,0,4358_7778195_3065006,4358_449 -4358_80740,205,4358_12376,Blessington,7889,0,4358_7778195_1065023,4358_446 -4358_80740,205,4358_12377,Blessington,1388,0,4358_7778195_3065008,4358_446 -4358_80740,205,4358_12378,Blessington,6131,0,4358_7778195_3065522,4358_446 -4358_80740,205,4358_12379,Ballyknockan,6112,0,4358_7778195_3065001,4358_447 -4358_80757,96,4358_1238,Marino,9931,0,4358_7778195_5123015,4358_44 -4358_80740,96,4358_12381,Ballymore,9000,0,4358_7778195_3065002,4358_450 -4358_80740,96,4358_12382,Ballymore,9015,0,4358_7778195_3065006,4358_448 -4358_80740,205,4358_12383,Ballymore,1443,0,4358_7778195_3065010,4358_450 -4358_80740,205,4358_12385,Blessington,1390,0,4358_7778195_3065008,4358_446 -4358_80740,96,4358_12387,Blessington,9002,0,4358_7778195_3065002,4358_446 -4358_80740,205,4358_12388,Blessington,1361,0,4358_7778195_3065009,4358_446 -4358_80740,96,4358_12389,Ballymore,9017,0,4358_7778195_3065006,4358_448 -4358_80757,96,4358_1239,O'Connell Street,9781,0,4358_7778195_5123010,4358_41 -4358_80740,205,4358_12391,Ballymore,1392,0,4358_7778195_3065008,4358_448 -4358_80740,96,4358_12393,Blessington,9004,0,4358_7778195_3065002,4358_449 -4358_80740,205,4358_12394,Poolbeg St,6116,1,4358_7778195_3065004,4358_451 -4358_80740,205,4358_12395,Poolbeg St,6127,1,4358_7778195_3065511,4358_451 -4358_80740,205,4358_12396,Poolbeg St,6107,1,4358_7778195_3065001,4358_452 -4358_80740,205,4358_12397,Poolbeg St,6115,1,4358_7778195_3065002,4358_453 -4358_80740,96,4358_12398,Poolbeg St,8995,1,4358_7778195_3065002,4358_453 -4358_80740,205,4358_12399,Poolbeg St,7890,1,4358_7778195_3065513,4358_451 -4358_80740,205,4358_12400,Poolbeg St,1483,1,4358_7778195_3065006,4358_451 -4358_80740,96,4358_12401,Poolbeg St,8979,1,4358_7778195_3065004,4358_451 -4358_80740,205,4358_12402,Poolbeg St,6118,1,4358_7778195_3065004,4358_453 -4358_80740,96,4358_12403,Poolbeg St,9010,1,4358_7778195_3065006,4358_455 -4358_80740,205,4358_12405,Poolbeg St,6109,1,4358_7778195_3065001,4358_451 -4358_80740,96,4358_12407,Poolbeg St,8997,1,4358_7778195_3065002,4358_454 -4358_80740,205,4358_12408,Poolbeg St,6120,1,4358_7778195_3065004,4358_451 -4358_80740,96,4358_12409,Poolbeg St,9012,1,4358_7778195_3065006,4358_453 -4358_80757,205,4358_1241,O'Connell Street,2206,0,4358_7778195_5123005,4358_43 -4358_80740,205,4358_12411,Poolbeg St,6111,1,4358_7778195_3065001,4358_451 -4358_80740,96,4358_12413,Poolbeg St,8999,1,4358_7778195_3065002,4358_453 -4358_80740,205,4358_12414,Poolbeg St,6408,1,4358_7778195_3065521,4358_451 -4358_80740,96,4358_12415,Poolbeg St,9014,1,4358_7778195_3065006,4358_451 -4358_80740,205,4358_12417,Poolbeg St,6122,1,4358_7778195_3065004,4358_451 -4358_80740,205,4358_12418,Poolbeg St,1389,1,4358_7778195_3065008,4358_451 -4358_80757,205,4358_1242,Kilnamanagh Rd,2114,1,4358_7778195_5123003,4358_45 -4358_80740,96,4358_12420,Poolbeg St,9001,1,4358_7778195_3065002,4358_455 -4358_80740,205,4358_12421,Poolbeg St,6113,1,4358_7778195_3065001,4358_452 -4358_80740,96,4358_12422,Poolbeg St,9016,1,4358_7778195_3065006,4358_453 -4358_80740,205,4358_12424,Poolbeg St,1444,1,4358_7778195_3065010,4358_453 -4358_80740,205,4358_12425,Poolbeg St,1391,1,4358_7778195_3065008,4358_451 -4358_80740,96,4358_12427,Poolbeg St,9003,1,4358_7778195_3065002,4358_451 -4358_80740,96,4358_12428,Poolbeg St,9018,1,4358_7778195_3065006,4358_453 -4358_80757,205,4358_1243,Kilnamanagh Rd,2193,1,4358_7778195_5123005,4358_45 -4358_80740,205,4358_12430,Poolbeg St,1362,1,4358_7778195_3065009,4358_451 -4358_80740,205,4358_12431,Poolbeg St,1393,1,4358_7778195_3065008,4358_453 -4358_80740,96,4358_12433,Poolbeg St,9005,1,4358_7778195_3065002,4358_454 -4358_80738,205,4358_12434,Blessington,6129,0,4358_7778195_3065512,4358_456 -4358_80738,205,4358_12435,The Square,6128,1,4358_7778195_3065512,4358_457 -4358_80738,205,4358_12436,The Square,6130,1,4358_7778195_3065512,4358_457 -4358_80739,96,4358_12437,Citywest,8980,0,4358_7778195_3065001,4358_458 -4358_80739,205,4358_12438,Citywest,1423,0,4358_7778195_3065003,4358_459 -4358_80739,96,4358_12439,Citywest,8965,0,4358_7778195_3065003,4358_458 -4358_80757,205,4358_1244,Kilnamanagh Rd,2170,1,4358_7778195_5123006,4358_45 -4358_80739,205,4358_12440,Citywest,1363,0,4358_7778195_3065005,4358_459 -4358_80739,205,4358_12441,Citywest,1350,0,4358_7778195_3065007,4358_458 -4358_80739,96,4358_12442,Citywest,8956,0,4358_7778195_3065005,4358_458 -4358_80739,96,4358_12443,Citywest,8982,0,4358_7778195_3065001,4358_458 -4358_80739,205,4358_12444,Citywest,1425,0,4358_7778195_3065003,4358_459 -4358_80739,96,4358_12445,Citywest,8967,0,4358_7778195_3065003,4358_458 -4358_80739,205,4358_12447,Citywest,1365,0,4358_7778195_3065005,4358_460 -4358_80739,205,4358_12448,Citywest,1352,0,4358_7778195_3065007,4358_458 -4358_80757,205,4358_1245,Kilnamanagh Rd,2268,1,4358_7778195_5123008,4358_45 -4358_80739,96,4358_12450,Citywest,8958,0,4358_7778195_3065005,4358_460 -4358_80739,96,4358_12451,Citywest,8984,0,4358_7778195_3065001,4358_458 -4358_80739,205,4358_12453,Citywest,1427,0,4358_7778195_3065003,4358_460 -4358_80739,96,4358_12454,Citywest,8969,0,4358_7778195_3065003,4358_458 -4358_80739,205,4358_12456,Citywest,1367,0,4358_7778195_3065005,4358_460 -4358_80739,205,4358_12457,Citywest,1354,0,4358_7778195_3065007,4358_458 -4358_80739,96,4358_12459,Citywest,8960,0,4358_7778195_3065005,4358_460 -4358_80757,96,4358_1246,Kilnamanagh Rd,9761,1,4358_7778195_5123003,4358_45 -4358_80739,96,4358_12460,Citywest,8986,0,4358_7778195_3065001,4358_458 -4358_80739,205,4358_12462,Citywest,1429,0,4358_7778195_3065003,4358_460 -4358_80739,96,4358_12463,Citywest,8971,0,4358_7778195_3065003,4358_458 -4358_80739,205,4358_12465,Citywest,1369,0,4358_7778195_3065005,4358_460 -4358_80739,205,4358_12466,Citywest,1356,0,4358_7778195_3065007,4358_458 -4358_80739,96,4358_12468,Citywest,8962,0,4358_7778195_3065005,4358_460 -4358_80739,205,4358_12469,Citywest,1431,0,4358_7778195_3065003,4358_458 -4358_80757,205,4358_1247,Kilnamanagh Rd,2242,1,4358_7778195_5123010,4358_45 -4358_80739,96,4358_12470,Citywest,8988,0,4358_7778195_3065001,4358_458 -4358_80739,205,4358_12472,Citywest,1359,0,4358_7778195_3065009,4358_458 -4358_80739,96,4358_12473,Citywest,8973,0,4358_7778195_3065003,4358_458 -4358_80739,205,4358_12475,Citywest,1371,0,4358_7778195_3065005,4358_460 -4358_80739,205,4358_12476,Citywest,1358,0,4358_7778195_3065007,4358_458 -4358_80739,96,4358_12478,Citywest,8964,0,4358_7778195_3065005,4358_460 -4358_80739,96,4358_12479,Citywest,8990,0,4358_7778195_3065001,4358_458 -4358_80757,96,4358_1248,Kilnamanagh Rd,9898,1,4358_7778195_5123005,4358_45 -4358_80739,205,4358_12481,Citywest,6123,0,4358_7778195_3065004,4358_460 -4358_80739,96,4358_12482,Citywest,8975,0,4358_7778195_3065003,4358_458 -4358_80739,205,4358_12484,Citywest,1373,0,4358_7778195_3065005,4358_458 -4358_80739,96,4358_12485,Citywest,8992,0,4358_7778195_3065001,4358_458 -4358_80739,205,4358_12487,Citywest,6125,0,4358_7778195_3065004,4358_460 -4358_80739,96,4358_12488,Citywest,8977,0,4358_7778195_3065003,4358_458 -4358_80757,205,4358_1249,Kilnamanagh Rd,2291,1,4358_7778195_5123011,4358_45 -4358_80739,205,4358_12490,Citywest,1375,0,4358_7778195_3065005,4358_460 -4358_80739,205,4358_12491,Poolbeg St,1424,1,4358_7778195_3065003,4358_461 -4358_80739,96,4358_12492,Poolbeg St,8981,1,4358_7778195_3065001,4358_461 -4358_80739,205,4358_12493,Poolbeg St,1364,1,4358_7778195_3065005,4358_461 -4358_80739,96,4358_12494,Poolbeg St,8966,1,4358_7778195_3065003,4358_461 -4358_80739,205,4358_12495,Poolbeg St,1351,1,4358_7778195_3065007,4358_461 -4358_80739,96,4358_12497,Poolbeg St,8957,1,4358_7778195_3065005,4358_462 -4358_80739,96,4358_12499,Poolbeg St,8983,1,4358_7778195_3065001,4358_461 -4358_80760,205,4358_125,Shaw street,1709,0,4358_7778195_9001008,4358_1 -4358_80757,205,4358_1250,Kilnamanagh Rd,2299,1,4358_7778195_5123012,4358_45 -4358_80739,205,4358_12500,Poolbeg St,1426,1,4358_7778195_3065003,4358_462 -4358_80739,96,4358_12501,Poolbeg St,8968,1,4358_7778195_3065003,4358_461 -4358_80739,205,4358_12503,Poolbeg St,1366,1,4358_7778195_3065005,4358_463 -4358_80739,205,4358_12504,Poolbeg St,1353,1,4358_7778195_3065007,4358_461 -4358_80739,96,4358_12506,Poolbeg St,8959,1,4358_7778195_3065005,4358_463 -4358_80739,96,4358_12507,Poolbeg St,8985,1,4358_7778195_3065001,4358_461 -4358_80739,205,4358_12509,Poolbeg St,1428,1,4358_7778195_3065003,4358_463 -4358_80757,96,4358_1251,Kilnamanagh Rd,9834,1,4358_7778195_5123006,4358_46 -4358_80739,96,4358_12510,Poolbeg St,8970,1,4358_7778195_3065003,4358_461 -4358_80739,205,4358_12512,Poolbeg St,1368,1,4358_7778195_3065005,4358_463 -4358_80739,205,4358_12513,Poolbeg St,1355,1,4358_7778195_3065007,4358_461 -4358_80739,96,4358_12515,Poolbeg St,8961,1,4358_7778195_3065005,4358_463 -4358_80739,96,4358_12516,Poolbeg St,8987,1,4358_7778195_3065001,4358_461 -4358_80739,205,4358_12518,Poolbeg St,1430,1,4358_7778195_3065003,4358_463 -4358_80739,96,4358_12519,Poolbeg St,8972,1,4358_7778195_3065003,4358_461 -4358_80757,205,4358_1252,Kilnamanagh Rd,2234,1,4358_7778195_5123001,4358_45 -4358_80739,205,4358_12521,Poolbeg St,1370,1,4358_7778195_3065005,4358_463 -4358_80739,205,4358_12522,Poolbeg St,1357,1,4358_7778195_3065007,4358_461 -4358_80739,96,4358_12524,Poolbeg St,8963,1,4358_7778195_3065005,4358_463 -4358_80739,96,4358_12525,Poolbeg St,8989,1,4358_7778195_3065001,4358_461 -4358_80739,205,4358_12527,Poolbeg St,1432,1,4358_7778195_3065003,4358_463 -4358_80739,205,4358_12528,Poolbeg St,1360,1,4358_7778195_3065009,4358_461 -4358_80739,96,4358_12529,Poolbeg St,8974,1,4358_7778195_3065003,4358_461 -4358_80757,96,4358_1253,Kilnamanagh Rd,9917,1,4358_7778195_5123008,4358_45 -4358_80739,205,4358_12531,Poolbeg St,1372,1,4358_7778195_3065005,4358_461 -4358_80739,96,4358_12532,Poolbeg St,8991,1,4358_7778195_3065001,4358_461 -4358_80739,205,4358_12534,Poolbeg St,6124,1,4358_7778195_3065004,4358_463 -4358_80739,96,4358_12535,Poolbeg St,8976,1,4358_7778195_3065003,4358_461 -4358_80739,205,4358_12537,Poolbeg St,1374,1,4358_7778195_3065005,4358_461 -4358_80739,96,4358_12538,Poolbeg St,8993,1,4358_7778195_3065001,4358_461 -4358_80757,205,4358_1254,Kilnamanagh Rd,2246,1,4358_7778195_5123002,4358_45 -4358_80739,205,4358_12540,Poolbeg St,6126,1,4358_7778195_3065004,4358_463 -4358_80743,205,4358_12541,Greenogue,4353,0,4358_7778195_4068005,4358_464 -4358_80743,96,4358_12542,Greenogue,13339,0,4358_7778195_4068005,4358_464 -4358_80743,205,4358_12543,Greenogue,4338,0,4358_7778195_4068001,4358_464 -4358_80743,96,4358_12544,Greenogue,11516,0,4358_7778195_4068008,4358_464 -4358_80743,96,4358_12545,Greenogue,11548,0,4358_7778195_4068006,4358_465 -4358_80743,205,4358_12546,Greenogue,4359,0,4358_7778195_4068006,4358_465 -4358_80743,96,4358_12548,Greenogue,13341,0,4358_7778195_4068005,4358_465 -4358_80743,205,4358_12549,Greenogue,4381,0,4358_7778195_4068010,4358_469 -4358_80757,205,4358_1255,Kilnamanagh Rd,2212,1,4358_7778195_5123015,4358_45 -4358_80743,205,4358_12551,Greenogue,4340,0,4358_7778195_4068001,4358_465 -4358_80743,96,4358_12552,Greenogue,13349,0,4358_7778195_4068009,4358_469 -4358_80743,96,4358_12553,Greenogue,11550,0,4358_7778195_4068006,4358_465 -4358_80743,205,4358_12555,Greenogue,4361,0,4358_7778195_4068006,4358_469 -4358_80743,96,4358_12556,Greenogue,13343,0,4358_7778195_4068005,4358_465 -4358_80743,205,4358_12557,Greenogue,4383,0,4358_7778195_4068010,4358_469 -4358_80743,205,4358_12559,Greenogue,4342,0,4358_7778195_4068001,4358_465 -4358_80757,96,4358_1256,Kilnamanagh Rd,9846,1,4358_7778195_5123002,4358_46 -4358_80743,96,4358_12560,Greenogue,13351,0,4358_7778195_4068009,4358_469 -4358_80743,96,4358_12562,Greenogue,11552,0,4358_7778195_4068006,4358_464 -4358_80743,205,4358_12563,Greenogue,4363,0,4358_7778195_4068006,4358_471 -4358_80743,96,4358_12565,Greenogue,13345,0,4358_7778195_4068005,4358_465 -4358_80743,205,4358_12566,Greenogue,4385,0,4358_7778195_4068010,4358_469 -4358_80743,205,4358_12568,Greenogue,4390,0,4358_7778195_4068011,4358_465 -4358_80743,96,4358_12569,Greenogue,13353,0,4358_7778195_4068009,4358_469 -4358_80757,205,4358_1257,Kilnamanagh Rd,2256,1,4358_7778195_5123004,4358_45 -4358_80743,96,4358_12570,Greenogue,11554,0,4358_7778195_4068006,4358_465 -4358_80743,205,4358_12571,Greenogue,4355,0,4358_7778195_4068016,4358_469 -4358_80743,96,4358_12573,Greenogue,13347,0,4358_7778195_4068005,4358_465 -4358_80743,205,4358_12574,Greenogue,4351,0,4358_7778195_4068002,4358_465 -4358_80743,96,4358_12576,Newcastle,13355,0,4358_7778195_4068009,4358_467 -4358_80743,205,4358_12578,Newcastle,4387,0,4358_7778195_4068010,4358_467 -4358_80743,96,4358_12579,Newcastle,11556,0,4358_7778195_4068006,4358_466 -4358_80757,96,4358_1258,Kilnamanagh Rd,9880,1,4358_7778195_5123001,4358_45 -4358_80743,205,4358_12580,Newcastle,4394,0,4358_7778195_4068012,4358_466 -4358_80743,96,4358_12582,Newcastle,13357,0,4358_7778195_4068009,4358_466 -4358_80743,205,4358_12583,Newcastle,4375,0,4358_7778195_4068004,4358_466 -4358_80743,96,4358_12585,Newcastle,11558,0,4358_7778195_4068006,4358_467 -4358_80743,205,4358_12586,Newcastle,4396,0,4358_7778195_4068012,4358_468 -4358_80743,205,4358_12588,Poolbeg St,4337,1,4358_7778195_4068001,4358_472 -4358_80743,205,4358_12589,Poolbeg St,4357,1,4358_7778195_4068003,4358_476 -4358_80743,96,4358_12590,Poolbeg St,11531,1,4358_7778195_4068002,4358_476 -4358_80743,205,4358_12591,Poolbeg St,4377,1,4358_7778195_4068007,4358_472 -4358_80743,96,4358_12592,Poolbeg St,11547,1,4358_7778195_4068006,4358_472 -4358_80743,205,4358_12593,Poolbeg St,4354,1,4358_7778195_4068005,4358_472 -4358_80743,96,4358_12594,Poolbeg St,13340,1,4358_7778195_4068005,4358_472 -4358_80743,205,4358_12595,Poolbeg St,4339,1,4358_7778195_4068001,4358_473 -4358_80743,96,4358_12596,Poolbeg St,11517,1,4358_7778195_4068008,4358_473 -4358_80743,96,4358_12597,Poolbeg St,11549,1,4358_7778195_4068006,4358_472 -4358_80743,205,4358_12598,Poolbeg St,4360,1,4358_7778195_4068006,4358_472 -4358_80760,96,4358_126,Shaw street,9332,0,4358_7778195_9001002,4358_1 -4358_80757,205,4358_1260,Kilnamanagh Rd,2224,1,4358_7778195_5123007,4358_46 -4358_80743,96,4358_12600,Poolbeg St,13342,1,4358_7778195_4068005,4358_472 -4358_80743,205,4358_12601,Poolbeg St,4382,1,4358_7778195_4068010,4358_479 -4358_80743,205,4358_12603,Poolbeg St,4341,1,4358_7778195_4068001,4358_472 -4358_80743,96,4358_12604,Poolbeg St,13350,1,4358_7778195_4068009,4358_479 -4358_80743,96,4358_12606,Poolbeg St,11551,1,4358_7778195_4068006,4358_472 -4358_80743,205,4358_12607,Poolbeg St,4362,1,4358_7778195_4068006,4358_479 -4358_80743,96,4358_12608,Poolbeg St,13344,1,4358_7778195_4068005,4358_472 -4358_80743,205,4358_12609,Poolbeg St,4384,1,4358_7778195_4068010,4358_479 -4358_80757,96,4358_1261,Kilnamanagh Rd,9790,1,4358_7778195_5123004,4358_45 -4358_80743,205,4358_12611,Poolbeg St,4389,1,4358_7778195_4068011,4358_472 -4358_80743,96,4358_12612,Poolbeg St,13352,1,4358_7778195_4068009,4358_479 -4358_80743,96,4358_12614,Poolbeg St,11553,1,4358_7778195_4068006,4358_473 -4358_80743,205,4358_12615,Poolbeg St,4391,1,4358_7778195_4068012,4358_477 -4358_80743,96,4358_12617,Poolbeg St,13346,1,4358_7778195_4068005,4358_473 -4358_80743,205,4358_12618,Poolbeg St,4364,1,4358_7778195_4068006,4358_473 -4358_80757,205,4358_1262,Kilnamanagh Rd,2279,1,4358_7778195_5123009,4358_46 -4358_80743,96,4358_12620,Poolbeg St,13354,1,4358_7778195_4068009,4358_472 -4358_80743,205,4358_12621,Poolbeg St,4386,1,4358_7778195_4068010,4358_472 -4358_80743,96,4358_12622,Poolbeg St,11555,1,4358_7778195_4068006,4358_472 -4358_80743,205,4358_12624,Poolbeg St,4356,1,4358_7778195_4068016,4358_472 -4358_80743,96,4358_12625,Poolbeg St,13348,1,4358_7778195_4068005,4358_472 -4358_80743,205,4358_12627,Poolbeg St,4352,1,4358_7778195_4068002,4358_472 -4358_80743,96,4358_12628,Poolbeg St,13356,1,4358_7778195_4068009,4358_474 -4358_80743,205,4358_12629,Poolbeg St,4388,1,4358_7778195_4068010,4358_474 -4358_80757,205,4358_1263,Kilnamanagh Rd,2116,1,4358_7778195_5123003,4358_45 -4358_80743,96,4358_12631,Poolbeg St,11557,1,4358_7778195_4068006,4358_474 -4358_80743,205,4358_12632,Poolbeg St,4395,1,4358_7778195_4068012,4358_474 -4358_80743,96,4358_12634,Poolbeg St,13358,1,4358_7778195_4068009,4358_474 -4358_80743,205,4358_12635,Conyngham Rd,4376,1,4358_7778195_4068004,4358_475 -4358_80743,96,4358_12637,Conyngham Rd,11559,1,4358_7778195_4068006,4358_475 -4358_80743,205,4358_12638,Conyngham Rd,4397,1,4358_7778195_4068012,4358_478 -4358_80757,96,4358_1264,Kilnamanagh Rd,9908,1,4358_7778195_5123007,4358_45 -4358_80744,205,4358_12640,Bulfin Road,4407,0,4358_7778195_4068013,4358_480 -4358_80744,205,4358_12641,Bulfin Road,4350,0,4358_7778195_4068002,4358_480 -4358_80744,205,4358_12642,Bulfin Road,6628,0,4358_7778195_4068009,4358_480 -4358_80744,205,4358_12643,Poolbeg St,4380,1,4358_7778195_4068010,4358_481 -4358_80744,205,4358_12644,Poolbeg St,4378,1,4358_7778195_4068007,4358_481 -4358_80741,205,4358_12645,Rathcoole,4365,0,4358_7778195_4068004,4358_482 -4358_80741,96,4358_12646,Rathcoole,11532,0,4358_7778195_4068003,4358_482 -4358_80741,96,4358_12647,Rathcoole,11514,0,4358_7778195_4068001,4358_482 -4358_80741,205,4358_12648,Rathcoole,4344,0,4358_7778195_4068002,4358_483 -4358_80741,96,4358_12649,Rathcoole,11519,0,4358_7778195_4068004,4358_482 -4358_80741,205,4358_12650,Rathcoole,4334,0,4358_7778195_4824103,4358_482 -4358_80741,205,4358_12651,Rathcoole,6622,0,4358_7778195_4068009,4358_482 -4358_80741,96,4358_12652,Rathcoole,11534,0,4358_7778195_4068003,4358_483 -4358_80741,205,4358_12654,Rathcoole,4367,0,4358_7778195_4068004,4358_483 -4358_80741,96,4358_12655,Rathcoole,11545,0,4358_7778195_4068007,4358_484 -4358_80741,205,4358_12656,Rathcoole,4346,0,4358_7778195_4068002,4358_482 -4358_80741,96,4358_12657,Rathcoole,11521,0,4358_7778195_4068004,4358_483 -4358_80741,205,4358_12659,Rathcoole,6624,0,4358_7778195_4068009,4358_482 -4358_80757,205,4358_1266,Kilnamanagh Rd,2195,1,4358_7778195_5123005,4358_45 -4358_80741,96,4358_12660,Rathcoole,11536,0,4358_7778195_4068003,4358_483 -4358_80741,96,4358_12662,Rathcoole,11560,0,4358_7778195_4068010,4358_482 -4358_80741,205,4358_12663,Rathcoole,4369,0,4358_7778195_4068004,4358_483 -4358_80741,205,4358_12665,Rathcoole,4348,0,4358_7778195_4068002,4358_482 -4358_80741,96,4358_12666,Rathcoole,11523,0,4358_7778195_4068004,4358_483 -4358_80741,205,4358_12668,Rathcoole,6626,0,4358_7778195_4068009,4358_483 -4358_80741,96,4358_12669,Rathcoole,11538,0,4358_7778195_4068003,4358_484 -4358_80757,96,4358_1267,Kilnamanagh Rd,9763,1,4358_7778195_5123003,4358_45 -4358_80741,96,4358_12670,Rathcoole,11562,0,4358_7778195_4068010,4358_482 -4358_80741,205,4358_12671,Rathcoole,4371,0,4358_7778195_4068004,4358_483 -4358_80741,96,4358_12673,Rathcoole,11525,0,4358_7778195_4068004,4358_482 -4358_80741,205,4358_12674,Rathcoole,4409,0,4358_7778195_4068014,4358_483 -4358_80741,205,4358_12676,Rathcoole,4392,0,4358_7778195_4068012,4358_482 -4358_80741,96,4358_12677,Rathcoole,11540,0,4358_7778195_4068003,4358_483 -4358_80741,205,4358_12679,Rathcoole,4399,0,4358_7778195_4068015,4358_482 -4358_80757,205,4358_1268,Kilnamanagh Rd,2313,1,4358_7778195_5123013,4358_45 -4358_80741,96,4358_12680,Rathcoole,11564,0,4358_7778195_4068010,4358_483 -4358_80741,205,4358_12682,Rathcoole,4373,0,4358_7778195_4068004,4358_483 -4358_80741,96,4358_12683,Rathcoole,11527,0,4358_7778195_4068004,4358_484 -4358_80741,205,4358_12684,Rathcoole,4401,0,4358_7778195_4068017,4358_482 -4358_80741,96,4358_12685,Rathcoole,11542,0,4358_7778195_4068003,4358_483 -4358_80741,205,4358_12687,Rathcoole,4405,0,4358_7778195_4068018,4358_482 -4358_80741,96,4358_12688,Rathcoole,11566,0,4358_7778195_4068010,4358_483 -4358_80757,96,4358_1269,Kilnamanagh Rd,9900,1,4358_7778195_5123005,4358_45 -4358_80741,205,4358_12690,Rathcoole,4403,0,4358_7778195_4068017,4358_482 -4358_80741,96,4358_12692,Rathcoole,11529,0,4358_7778195_4068004,4358_484 -4358_80741,205,4358_12693,Poolbeg St,4343,1,4358_7778195_4068002,4358_485 -4358_80741,96,4358_12694,Poolbeg St,11513,1,4358_7778195_4068001,4358_485 -4358_80741,205,4358_12695,Poolbeg St,4358,1,4358_7778195_4068006,4358_485 -4358_80741,96,4358_12696,Poolbeg St,11518,1,4358_7778195_4068004,4358_485 -4358_80741,205,4358_12697,Poolbeg St,4379,1,4358_7778195_4068008,4358_485 -4358_80741,96,4358_12698,Poolbeg St,11533,1,4358_7778195_4068003,4358_485 -4358_80741,205,4358_12699,Poolbeg St,4366,1,4358_7778195_4068004,4358_485 -4358_80760,205,4358_127,Shaw street,1827,0,4358_7778195_9001001,4358_1 -4358_80757,205,4358_1270,Kilnamanagh Rd,2172,1,4358_7778195_5123006,4358_45 -4358_80741,96,4358_12700,Poolbeg St,11544,1,4358_7778195_4068007,4358_486 -4358_80741,96,4358_12701,Poolbeg St,11515,1,4358_7778195_4068001,4358_485 -4358_80741,205,4358_12702,Poolbeg St,4345,1,4358_7778195_4068002,4358_485 -4358_80741,96,4358_12703,Poolbeg St,11520,1,4358_7778195_4068004,4358_485 -4358_80741,205,4358_12704,Poolbeg St,6623,1,4358_7778195_4068009,4358_485 -4358_80741,96,4358_12705,Poolbeg St,11535,1,4358_7778195_4068003,4358_486 -4358_80741,205,4358_12707,Poolbeg St,4368,1,4358_7778195_4068004,4358_485 -4358_80741,96,4358_12708,Poolbeg St,11546,1,4358_7778195_4068007,4358_486 -4358_80741,205,4358_12709,Poolbeg St,4347,1,4358_7778195_4068002,4358_485 -4358_80741,96,4358_12710,Poolbeg St,11522,1,4358_7778195_4068004,4358_486 -4358_80741,205,4358_12712,Poolbeg St,6625,1,4358_7778195_4068009,4358_485 -4358_80741,96,4358_12713,Poolbeg St,11537,1,4358_7778195_4068003,4358_486 -4358_80741,96,4358_12715,Poolbeg St,11561,1,4358_7778195_4068010,4358_485 -4358_80741,205,4358_12716,Poolbeg St,4370,1,4358_7778195_4068004,4358_486 -4358_80741,205,4358_12718,Poolbeg St,4349,1,4358_7778195_4068002,4358_485 -4358_80741,96,4358_12719,Poolbeg St,11524,1,4358_7778195_4068004,4358_486 -4358_80757,205,4358_1272,Kilnamanagh Rd,2315,1,4358_7778195_5123014,4358_45 -4358_80741,205,4358_12721,Poolbeg St,6627,1,4358_7778195_4068009,4358_485 -4358_80741,96,4358_12722,Poolbeg St,11539,1,4358_7778195_4068003,4358_486 -4358_80741,205,4358_12723,Poolbeg St,4398,1,4358_7778195_4068015,4358_485 -4358_80741,96,4358_12725,Poolbeg St,11563,1,4358_7778195_4068010,4358_487 -4358_80741,205,4358_12726,Poolbeg St,4372,1,4358_7778195_4068004,4358_485 -4358_80741,96,4358_12727,Poolbeg St,11526,1,4358_7778195_4068004,4358_486 -4358_80741,205,4358_12729,Poolbeg St,4393,1,4358_7778195_4068012,4358_485 -4358_80757,96,4358_1273,Kilnamanagh Rd,9836,1,4358_7778195_5123006,4358_45 -4358_80741,96,4358_12730,Poolbeg St,11541,1,4358_7778195_4068003,4358_486 -4358_80741,205,4358_12732,Poolbeg St,4400,1,4358_7778195_4068015,4358_485 -4358_80741,96,4358_12733,Poolbeg St,11565,1,4358_7778195_4068010,4358_485 -4358_80741,205,4358_12735,Poolbeg St,4374,1,4358_7778195_4068004,4358_485 -4358_80741,96,4358_12736,Poolbeg St,11528,1,4358_7778195_4068004,4358_485 -4358_80741,96,4358_12737,Poolbeg St,11543,1,4358_7778195_4068003,4358_485 -4358_80741,205,4358_12738,Poolbeg St,4402,1,4358_7778195_4068017,4358_485 -4358_80757,205,4358_1274,Kilnamanagh Rd,2270,1,4358_7778195_5123008,4358_45 -4358_80741,96,4358_12740,Poolbeg St,11567,1,4358_7778195_4068010,4358_485 -4358_80741,205,4358_12741,Poolbeg St,4406,1,4358_7778195_4068018,4358_485 -4358_80741,205,4358_12743,Conyngham Rd,4404,1,4358_7778195_4068017,4358_488 -4358_80741,96,4358_12744,Conyngham Rd,11530,1,4358_7778195_4068004,4358_489 -4358_80742,205,4358_12746,Rathcoole,4408,0,4358_7778195_4068013,4358_490 -4358_80742,205,4358_12747,Poolbeg St,6621,1,4358_7778195_4068009,4358_491 -4358_80723,205,4358_12748,Brides Glen,6296,0,4358_7778195_2007002,4358_492 -4358_80723,205,4358_12749,Brides Glen,6396,0,4358_7778195_2007005,4358_492 -4358_80757,96,4358_1275,Kilnamanagh Rd,9919,1,4358_7778195_5123008,4358_45 -4358_80723,96,4358_12750,Brides Glen,8312,0,4358_7778195_2007005,4358_492 -4358_80723,205,4358_12751,Brides Glen,6405,0,4358_7778195_2007001,4358_492 -4358_80723,96,4358_12752,Brides Glen,8294,0,4358_7778195_2007008,4358_492 -4358_80723,205,4358_12753,Brides Glen,6398,0,4358_7778195_2007011,4358_492 -4358_80723,205,4358_12754,Brides Glen,6258,0,4358_7778195_2007003,4358_492 -4358_80723,96,4358_12755,Brides Glen,8344,0,4358_7778195_2007009,4358_492 -4358_80723,205,4358_12756,Brides Glen,6287,0,4358_7778195_2007007,4358_492 -4358_80723,96,4358_12758,Brides Glen,8336,0,4358_7778195_2007006,4358_492 -4358_80723,205,4358_12759,Brides Glen,6323,0,4358_7778195_2007009,4358_492 -4358_80723,96,4358_12760,Brides Glen,8355,0,4358_7778195_2007010,4358_492 -4358_80723,205,4358_12762,Brides Glen,6401,0,4358_7778195_2007012,4358_492 -4358_80723,96,4358_12763,Brides Glen,8314,0,4358_7778195_2007005,4358_494 -4358_80723,205,4358_12765,Brides Glen,6356,0,4358_7778195_2007014,4358_492 -4358_80723,96,4358_12766,Brides Glen,8296,0,4358_7778195_2007008,4358_494 -4358_80723,96,4358_12767,Brides Glen,8346,0,4358_7778195_2007009,4358_492 -4358_80723,205,4358_12768,Brides Glen,6261,0,4358_7778195_2007018,4358_492 -4358_80757,205,4358_1277,Kilnamanagh Rd,2244,1,4358_7778195_5123010,4358_45 -4358_80723,96,4358_12770,Brides Glen,8287,0,4358_7778195_2007004,4358_492 -4358_80723,205,4358_12771,Brides Glen,6336,0,4358_7778195_2007010,4358_492 -4358_80723,96,4358_12773,Brides Glen,8325,0,4358_7778195_2007007,4358_494 -4358_80723,205,4358_12774,Brides Glen,6289,0,4358_7778195_2007007,4358_492 -4358_80723,96,4358_12775,Brides Glen,8375,0,4358_7778195_2007012,4358_492 -4358_80723,205,4358_12777,Brides Glen,6325,0,4358_7778195_2007009,4358_492 -4358_80723,96,4358_12778,Brides Glen,8316,0,4358_7778195_2007005,4358_492 -4358_80757,96,4358_1278,Kilnamanagh Rd,9920,1,4358_7778195_5123009,4358_45 -4358_80723,205,4358_12780,Brides Glen,6403,0,4358_7778195_2007012,4358_492 -4358_80723,96,4358_12781,Brides Glen,8298,0,4358_7778195_2007008,4358_492 -4358_80723,205,4358_12783,Brides Glen,6358,0,4358_7778195_2007014,4358_494 -4358_80723,96,4358_12784,Brides Glen,8348,0,4358_7778195_2007009,4358_492 -4358_80723,205,4358_12786,Brides Glen,6263,0,4358_7778195_2007018,4358_492 -4358_80723,96,4358_12787,Brides Glen,8289,0,4358_7778195_2007004,4358_492 -4358_80723,205,4358_12788,Brides Glen,6338,0,4358_7778195_2007010,4358_492 -4358_80757,205,4358_1279,Kilnamanagh Rd,2293,1,4358_7778195_5123011,4358_45 -4358_80723,96,4358_12790,Brides Glen,8327,0,4358_7778195_2007007,4358_492 -4358_80723,205,4358_12791,Brides Glen,6291,0,4358_7778195_2007007,4358_492 -4358_80723,96,4358_12792,Brides Glen,8377,0,4358_7778195_2007012,4358_492 -4358_80723,205,4358_12794,Brides Glen,6327,0,4358_7778195_2007009,4358_492 -4358_80723,96,4358_12795,Brides Glen,8318,0,4358_7778195_2007005,4358_492 -4358_80723,205,4358_12797,Brides Glen,6375,0,4358_7778195_2007020,4358_492 -4358_80723,96,4358_12798,Brides Glen,8745,0,4358_7778195_2007001,4358_492 -4358_80723,205,4358_12799,Brides Glen,6360,0,4358_7778195_2007014,4358_492 -4358_80757,96,4358_1280,Kilnamanagh Rd,9848,1,4358_7778195_5123002,4358_45 -4358_80723,96,4358_12800,Brides Glen,8278,0,4358_7778195_2007003,4358_494 -4358_80723,205,4358_12802,Brides Glen,6371,0,4358_7778195_2007016,4358_492 -4358_80723,96,4358_12803,Brides Glen,8372,0,4358_7778195_2007011,4358_492 -4358_80723,205,4358_12804,Brides Glen,6390,0,4358_7778195_2007017,4358_492 -4358_80723,96,4358_12806,Brides Glen,8291,0,4358_7778195_2007004,4358_492 -4358_80723,205,4358_12807,Brides Glen,6317,0,4358_7778195_2007006,4358_492 -4358_80723,96,4358_12809,Brides Glen,8329,0,4358_7778195_2007007,4358_492 -4358_80757,205,4358_1281,Kilnamanagh Rd,2301,1,4358_7778195_5123012,4358_45 -4358_80723,205,4358_12810,Brides Glen,6271,0,4358_7778195_2007022,4358_492 -4358_80723,96,4358_12812,Brides Glen,8388,0,4358_7778195_2007013,4358_492 -4358_80723,205,4358_12813,Brides Glen,6279,0,4358_7778195_2007019,4358_492 -4358_80723,96,4358_12815,Brides Glen,8363,0,4358_7778195_2007014,4358_492 -4358_80723,205,4358_12816,Brides Glen,6353,0,4358_7778195_2007013,4358_492 -4358_80723,96,4358_12817,Brides Glen,8302,0,4358_7778195_2007008,4358_492 -4358_80723,205,4358_12819,Brides Glen,6256,0,4358_7778195_2007021,4358_492 -4358_80723,96,4358_12820,Brides Glen,8374,0,4358_7778195_2007011,4358_492 -4358_80723,205,4358_12821,Brides Glen,6267,0,4358_7778195_2007018,4358_493 -4358_80723,96,4358_12823,Brides Glen,8392,0,4358_7778195_2007015,4358_493 -4358_80723,205,4358_12824,Brides Glen,6342,0,4358_7778195_2007010,4358_495 -4358_80723,205,4358_12826,Brides Glen,6319,0,4358_7778195_2007006,4358_493 -4358_80723,96,4358_12827,Brides Glen,8381,0,4358_7778195_2007012,4358_493 -4358_80723,205,4358_12829,Brides Glen,6331,0,4358_7778195_2007009,4358_493 -4358_80757,96,4358_1283,Kilnamanagh Rd,9882,1,4358_7778195_5123001,4358_46 -4358_80723,96,4358_12831,Brides Glen,8365,0,4358_7778195_2007014,4358_493 -4358_80723,205,4358_12832,Brides Glen,6379,0,4358_7778195_2007020,4358_493 -4358_80723,205,4358_12834,Brides Glen,6269,0,4358_7778195_2007018,4358_493 -4358_80723,96,4358_12835,Brides Glen,8282,0,4358_7778195_2007003,4358_495 -4358_80723,205,4358_12836,Brides Glen,6344,0,4358_7778195_2007010,4358_493 -4358_80723,96,4358_12838,Brides Glen,8333,0,4358_7778195_2007007,4358_493 -4358_80723,205,4358_12839,Brides Glen,6321,0,4358_7778195_2007006,4358_493 -4358_80757,205,4358_1284,Kilnamanagh Rd,2236,1,4358_7778195_5123001,4358_45 -4358_80723,96,4358_12841,Brides Glen,8354,0,4358_7778195_2007009,4358_493 -4358_80723,205,4358_12842,Brides Glen,6333,0,4358_7778195_2007009,4358_493 -4358_80723,205,4358_12844,Brides Glen,6381,0,4358_7778195_2007020,4358_493 -4358_80723,96,4358_12845,Brides Glen,8306,0,4358_7778195_2007008,4358_495 -4358_80723,205,4358_12846,Mountjoy Square,6310,1,4358_7778195_2007006,4358_496 -4358_80723,96,4358_12847,Mountjoy Square,8284,1,4358_7778195_2007004,4358_496 -4358_80723,205,4358_12848,Mountjoy Square,6297,1,4358_7778195_2007002,4358_496 -4358_80723,96,4358_12849,Mountjoy Square,8322,1,4358_7778195_2007007,4358_496 -4358_80757,96,4358_1285,Kilnamanagh Rd,9792,1,4358_7778195_5123004,4358_45 -4358_80723,205,4358_12850,Mountjoy Square,6397,1,4358_7778195_2007005,4358_496 -4358_80723,96,4358_12851,Mountjoy Square,8313,1,4358_7778195_2007005,4358_496 -4358_80723,205,4358_12852,Mountjoy Square,6366,1,4358_7778195_2007016,4358_496 -4358_80723,96,4358_12853,Mountjoy Square,8295,1,4358_7778195_2007008,4358_496 -4358_80723,205,4358_12854,Mountjoy Square,6406,1,4358_7778195_2007001,4358_496 -4358_80723,205,4358_12856,Mountjoy Square,6399,1,4358_7778195_2007011,4358_496 -4358_80723,96,4358_12857,Mountjoy Square,8345,1,4358_7778195_2007009,4358_499 -4358_80723,205,4358_12858,Mountjoy Square,6259,1,4358_7778195_2007003,4358_496 -4358_80757,205,4358_1286,Kilnamanagh Rd,2248,1,4358_7778195_5123002,4358_45 -4358_80723,96,4358_12860,Mountjoy Square,8337,1,4358_7778195_2007006,4358_499 -4358_80723,205,4358_12861,Mountjoy Square,6288,1,4358_7778195_2007007,4358_496 -4358_80723,96,4358_12862,Mountjoy Square,8356,1,4358_7778195_2007010,4358_496 -4358_80723,205,4358_12864,Mountjoy Square,6324,1,4358_7778195_2007009,4358_496 -4358_80723,96,4358_12865,Mountjoy Square,8315,1,4358_7778195_2007005,4358_496 -4358_80723,205,4358_12866,Mountjoy Square,6402,1,4358_7778195_2007012,4358_496 -4358_80723,96,4358_12868,Mountjoy Square,8297,1,4358_7778195_2007008,4358_496 -4358_80723,205,4358_12869,Mountjoy Square,6357,1,4358_7778195_2007014,4358_496 -4358_80723,96,4358_12871,Mountjoy Square,8347,1,4358_7778195_2007009,4358_499 -4358_80723,205,4358_12872,Mountjoy Square,6262,1,4358_7778195_2007018,4358_496 -4358_80723,96,4358_12873,Mountjoy Square,8288,1,4358_7778195_2007004,4358_496 -4358_80723,205,4358_12875,Mountjoy Square,6337,1,4358_7778195_2007010,4358_496 -4358_80723,96,4358_12876,Mountjoy Square,8326,1,4358_7778195_2007007,4358_496 -4358_80723,205,4358_12877,Mountjoy Square,6290,1,4358_7778195_2007007,4358_496 -4358_80723,96,4358_12879,Mountjoy Square,8376,1,4358_7778195_2007012,4358_496 -4358_80757,96,4358_1288,Kilnamanagh Rd,9910,1,4358_7778195_5123007,4358_45 -4358_80723,205,4358_12880,Mountjoy Square,6326,1,4358_7778195_2007009,4358_496 -4358_80723,96,4358_12882,Mountjoy Square,8317,1,4358_7778195_2007005,4358_499 -4358_80723,205,4358_12883,Mountjoy Square,6374,1,4358_7778195_2007020,4358_496 -4358_80723,96,4358_12884,Mountjoy Square,8299,1,4358_7778195_2007008,4358_496 -4358_80723,205,4358_12886,Mountjoy Square,6359,1,4358_7778195_2007014,4358_496 -4358_80723,96,4358_12887,Mountjoy Square,8349,1,4358_7778195_2007009,4358_496 -4358_80723,205,4358_12888,Mountjoy Square,6264,1,4358_7778195_2007018,4358_496 -4358_80757,205,4358_1289,Kilnamanagh Rd,2214,1,4358_7778195_5123015,4358_45 -4358_80723,96,4358_12890,Mountjoy Square,8290,1,4358_7778195_2007004,4358_496 -4358_80723,205,4358_12891,Mountjoy Square,6339,1,4358_7778195_2007010,4358_496 -4358_80723,96,4358_12893,Mountjoy Square,8328,1,4358_7778195_2007007,4358_499 -4358_80723,205,4358_12894,Mountjoy Square,6292,1,4358_7778195_2007007,4358_496 -4358_80723,96,4358_12895,Mountjoy Square,8378,1,4358_7778195_2007012,4358_496 -4358_80723,205,4358_12897,Mountjoy Square,6328,1,4358_7778195_2007009,4358_496 -4358_80723,96,4358_12898,Mountjoy Square,8319,1,4358_7778195_2007005,4358_496 -4358_80723,205,4358_12899,Mountjoy Square,6376,1,4358_7778195_2007020,4358_496 -4358_80760,205,4358_129,Shaw street,1664,0,4358_7778195_9001003,4358_1 -4358_80723,96,4358_12901,Mountjoy Square,8746,1,4358_7778195_2007001,4358_496 -4358_80723,205,4358_12902,Mountjoy Square,6361,1,4358_7778195_2007014,4358_496 -4358_80723,96,4358_12904,Mountjoy Square,8279,1,4358_7778195_2007003,4358_499 -4358_80723,205,4358_12905,Mountjoy Square,6372,1,4358_7778195_2007016,4358_496 -4358_80723,96,4358_12906,Mountjoy Square,8373,1,4358_7778195_2007011,4358_496 -4358_80723,205,4358_12908,Mountjoy Square,6391,1,4358_7778195_2007017,4358_496 -4358_80723,96,4358_12909,Parnell Square,8292,1,4358_7778195_2007004,4358_497 -4358_80757,205,4358_1291,Kilnamanagh Rd,2258,1,4358_7778195_5123004,4358_45 -4358_80723,205,4358_12910,Parnell Square,6318,1,4358_7778195_2007006,4358_497 -4358_80723,96,4358_12912,Parnell Square,8330,1,4358_7778195_2007007,4358_497 -4358_80723,205,4358_12913,Parnell Square,6272,1,4358_7778195_2007022,4358_497 -4358_80723,96,4358_12914,Parnell Square,8389,1,4358_7778195_2007013,4358_497 -4358_80723,205,4358_12916,Parnell Square,6280,1,4358_7778195_2007019,4358_497 -4358_80723,96,4358_12917,Parnell Square,8364,1,4358_7778195_2007014,4358_497 -4358_80723,205,4358_12919,Parnell Square,6354,1,4358_7778195_2007013,4358_497 -4358_80757,96,4358_1292,Kilnamanagh Rd,9765,1,4358_7778195_5123003,4358_45 -4358_80723,96,4358_12920,Parnell Square,8303,1,4358_7778195_2007008,4358_497 -4358_80723,205,4358_12921,Parnell Square,6268,1,4358_7778195_2007018,4358_497 -4358_80723,96,4358_12923,Parnell Square,8393,1,4358_7778195_2007015,4358_497 -4358_80723,205,4358_12924,Parnell Square,6343,1,4358_7778195_2007010,4358_497 -4358_80723,205,4358_12926,Parnell Square,6320,1,4358_7778195_2007006,4358_497 -4358_80723,96,4358_12927,Parnell Square,8382,1,4358_7778195_2007012,4358_497 -4358_80723,205,4358_12929,Parnell Square,6332,1,4358_7778195_2007009,4358_497 -4358_80757,205,4358_1293,Kilnamanagh Rd,2226,1,4358_7778195_5123007,4358_45 -4358_80723,96,4358_12930,Parnell Square,8366,1,4358_7778195_2007014,4358_497 -4358_80723,205,4358_12931,Parnell Square,6380,1,4358_7778195_2007020,4358_497 -4358_80723,96,4358_12933,Parnell Square,8283,1,4358_7778195_2007003,4358_497 -4358_80723,205,4358_12934,Parnell Square,6270,1,4358_7778195_2007018,4358_497 -4358_80723,205,4358_12936,Parnell Square,6345,1,4358_7778195_2007010,4358_497 -4358_80723,96,4358_12937,Parnell Square,8334,1,4358_7778195_2007007,4358_498 -4358_80701,96,4358_12938,Dunboyne,11289,0,4358_7778195_9070002,4358_500 -4358_80701,205,4358_12939,Dunboyne,4192,0,4358_7778195_9070002,4358_501 -4358_80757,96,4358_1294,Kilnamanagh Rd,9902,1,4358_7778195_5123005,4358_45 -4358_80701,205,4358_12940,Dunboyne,4186,0,4358_7778195_9070001,4358_500 -4358_80701,96,4358_12941,Dunboyne,11280,0,4358_7778195_9070001,4358_501 -4358_80701,205,4358_12943,Dunboyne,4200,0,4358_7778195_9070003,4358_501 -4358_80701,96,4358_12944,Dunboyne,11270,0,4358_7778195_9070003,4358_500 -4358_80701,205,4358_12945,Dunboyne,7796,0,4358_7778195_8818108,4358_501 -4358_80701,205,4358_12947,Dunboyne,5979,0,4358_7778195_6826116,4358_501 -4358_80701,96,4358_12948,Dunboyne,11291,0,4358_7778195_9070004,4358_500 -4358_80701,205,4358_12949,Dunboyne,4194,0,4358_7778195_9070002,4358_501 -4358_80701,205,4358_12951,Dunboyne,4188,0,4358_7778195_9070001,4358_500 -4358_80701,96,4358_12952,Dunboyne,11282,0,4358_7778195_9070001,4358_500 -4358_80701,205,4358_12954,Dunboyne,4202,0,4358_7778195_9070003,4358_500 -4358_80701,96,4358_12955,Dunboyne,11272,0,4358_7778195_9070003,4358_500 -4358_80701,205,4358_12957,Dunboyne,4196,0,4358_7778195_9070002,4358_500 -4358_80701,96,4358_12958,Dunboyne,11293,0,4358_7778195_9070004,4358_500 -4358_80757,205,4358_1296,Kilnamanagh Rd,2281,1,4358_7778195_5123009,4358_45 -4358_80701,205,4358_12960,Dunboyne,4190,0,4358_7778195_9070001,4358_500 -4358_80701,96,4358_12961,Dunboyne,11308,0,4358_7778195_9070007,4358_500 -4358_80701,205,4358_12963,Dunboyne,4204,0,4358_7778195_9070003,4358_500 -4358_80701,96,4358_12964,Dunboyne,11297,0,4358_7778195_9070006,4358_500 -4358_80701,205,4358_12966,Dunboyne,4198,0,4358_7778195_9070002,4358_500 -4358_80701,96,4358_12967,Dunboyne,11295,0,4358_7778195_9070004,4358_500 -4358_80701,205,4358_12968,Dunboyne,7853,0,4358_7778195_8818234,4358_500 -4358_80757,96,4358_1297,Kilnamanagh Rd,9838,1,4358_7778195_5123006,4358_45 -4358_80701,205,4358_12970,Dunboyne,4210,0,4358_7778195_9070004,4358_501 -4358_80701,205,4358_12971,Dunboyne,7794,0,4358_7778195_8818208,4358_500 -4358_80701,96,4358_12972,Dunboyne,11274,0,4358_7778195_9070008,4358_500 -4358_80701,205,4358_12973,Dunboyne,7811,0,4358_7778195_8818216,4358_500 -4358_80701,205,4358_12974,Dunboyne,7816,0,4358_7778195_8818219,4358_500 -4358_80701,205,4358_12975,Dunboyne,4222,0,4358_7778195_9070006,4358_500 -4358_80701,205,4358_12977,Dunboyne,6435,0,4358_7778195_7070654,4358_500 -4358_80701,205,4358_12978,Dunboyne,6433,0,4358_7778195_7070653,4358_500 -4358_80701,96,4358_12979,Dunboyne,11299,0,4358_7778195_9070006,4358_500 -4358_80757,205,4358_1298,Kilnamanagh Rd,2118,1,4358_7778195_5123003,4358_45 -4358_80701,205,4358_12980,Dunboyne,4206,0,4358_7778195_9070003,4358_500 -4358_80701,205,4358_12982,Dunboyne,4217,0,4358_7778195_9070005,4358_500 -4358_80701,96,4358_12983,Dunboyne,11314,0,4358_7778195_9070009,4358_500 -4358_80701,205,4358_12984,Dunboyne,4221,0,4358_7778195_9070007,4358_500 -4358_80701,205,4358_12986,Dunboyne,4212,0,4358_7778195_9070004,4358_500 -4358_80701,96,4358_12987,Dunboyne,11276,0,4358_7778195_9070008,4358_500 -4358_80701,205,4358_12989,Dunboyne,4207,0,4358_7778195_9070008,4358_501 -4358_80701,96,4358_12990,Dunboyne,11319,0,4358_7778195_9070010,4358_500 -4358_80701,205,4358_12991,Dunboyne,4219,0,4358_7778195_9070005,4358_500 -4358_80701,96,4358_12993,Dunboyne,11316,0,4358_7778195_9070009,4358_500 -4358_80701,205,4358_12994,Dunboyne,4214,0,4358_7778195_9070004,4358_500 -4358_80701,96,4358_12996,Dunboyne,11278,0,4358_7778195_9070008,4358_500 -4358_80701,205,4358_12998,Dunboyne,4209,0,4358_7778195_9070008,4358_502 -4358_80701,205,4358_12999,Burlington Road,4224,1,4358_7778195_9038002,4358_503 -4358_80760,205,4358_13,Shaw street,1815,0,4358_7778195_9001001,4358_1 -4358_80760,96,4358_130,Shaw street,9394,0,4358_7778195_9001001,4358_1 -4358_80757,96,4358_1300,Kilnamanagh Rd,9772,1,4358_7778195_5123010,4358_45 -4358_80701,205,4358_13000,Burlington Road,4145,1,4358_7778195_9038005,4358_503 -4358_80701,96,4358_13001,Burlington Road,11279,1,4358_7778195_9070001,4358_503 -4358_80701,205,4358_13002,Burlington Road,4185,1,4358_7778195_9070001,4358_503 -4358_80701,205,4358_13003,Burlington Road,7793,1,4358_7778195_8818107,4358_503 -4358_80701,205,4358_13004,Burlington Road,7795,1,4358_7778195_8818108,4358_503 -4358_80701,205,4358_13005,Burlington Road,7798,1,4358_7778195_8818109,4358_503 -4358_80701,96,4358_13006,Burlington Road,11269,1,4358_7778195_9070003,4358_503 -4358_80701,205,4358_13007,Burlington Road,7782,1,4358_7778195_8818101,4358_504 -4358_80701,205,4358_13008,Burlington Road,5972,1,4358_7778195_6826109,4358_503 -4358_80701,205,4358_13009,Burlington Road,7805,1,4358_7778195_8818113,4358_503 -4358_80757,205,4358_1301,Kilnamanagh Rd,2197,1,4358_7778195_5123005,4358_45 -4358_80701,205,4358_13011,Burlington Road,6434,1,4358_7778195_7070554,4358_504 -4358_80701,205,4358_13012,Burlington Road,4193,1,4358_7778195_9070002,4358_503 -4358_80701,96,4358_13013,Burlington Road,11290,1,4358_7778195_9070002,4358_503 -4358_80701,205,4358_13014,Burlington Road,6429,1,4358_7778195_7070551,4358_503 -4358_80701,205,4358_13016,Burlington Road,4187,1,4358_7778195_9070001,4358_503 -4358_80701,96,4358_13017,Burlington Road,11281,1,4358_7778195_9070001,4358_503 -4358_80701,205,4358_13019,Burlington Road,4201,1,4358_7778195_9070003,4358_503 -4358_80701,96,4358_13020,Burlington Road,11271,1,4358_7778195_9070003,4358_503 -4358_80701,205,4358_13022,Burlington Road,4195,1,4358_7778195_9070002,4358_503 -4358_80701,96,4358_13023,Burlington Road,11292,1,4358_7778195_9070004,4358_503 -4358_80701,205,4358_13025,Burlington Road,4189,1,4358_7778195_9070001,4358_503 -4358_80701,96,4358_13026,Burlington Road,13386,1,4358_7778195_9070005,4358_503 -4358_80701,205,4358_13028,Burlington Road,4203,1,4358_7778195_9070003,4358_503 -4358_80701,96,4358_13029,Burlington Road,11296,1,4358_7778195_9070006,4358_503 -4358_80757,205,4358_1303,Kilnamanagh Rd,2174,1,4358_7778195_5123006,4358_45 -4358_80701,205,4358_13031,Burlington Road,4197,1,4358_7778195_9070002,4358_503 -4358_80701,96,4358_13032,Burlington Road,11294,1,4358_7778195_9070004,4358_503 -4358_80701,205,4358_13034,Burlington Road,4191,1,4358_7778195_9070001,4358_503 -4358_80701,96,4358_13035,Burlington Road,11273,1,4358_7778195_9070008,4358_503 -4358_80701,205,4358_13037,Burlington Road,4205,1,4358_7778195_9070003,4358_503 -4358_80701,96,4358_13038,Burlington Road,11298,1,4358_7778195_9070006,4358_503 -4358_80757,96,4358_1304,Kilnamanagh Rd,9922,1,4358_7778195_5123009,4358_45 -4358_80701,205,4358_13040,Burlington Road,4216,1,4358_7778195_9070005,4358_503 -4358_80701,96,4358_13041,Burlington Road,11313,1,4358_7778195_9070009,4358_503 -4358_80701,205,4358_13042,Burlington Road,4199,1,4358_7778195_9070002,4358_503 -4358_80701,205,4358_13044,Burlington Road,4211,1,4358_7778195_9070004,4358_503 -4358_80701,96,4358_13045,Burlington Road,11275,1,4358_7778195_9070008,4358_503 -4358_80701,205,4358_13047,Burlington Road,4223,1,4358_7778195_9070006,4358_503 -4358_80701,96,4358_13048,Burlington Road,11318,1,4358_7778195_9070010,4358_503 -4358_80757,205,4358_1305,Kilnamanagh Rd,2317,1,4358_7778195_5123014,4358_45 -4358_80701,205,4358_13050,Burlington Road,4218,1,4358_7778195_9070005,4358_503 -4358_80701,96,4358_13051,Burlington Road,11315,1,4358_7778195_9070009,4358_503 -4358_80701,205,4358_13053,Burlington Road,4213,1,4358_7778195_9070004,4358_503 -4358_80701,96,4358_13054,Burlington Road,11277,1,4358_7778195_9070008,4358_503 -4358_80701,205,4358_13055,Burlington Road,4208,1,4358_7778195_9070008,4358_503 -4358_80701,96,4358_13057,Burlington Road,11320,1,4358_7778195_9070010,4358_503 -4358_80701,205,4358_13058,Burlington Road,4220,1,4358_7778195_9070005,4358_503 -4358_80757,96,4358_1306,Kilnamanagh Rd,9850,1,4358_7778195_5123002,4358_45 -4358_80701,96,4358_13060,Bachelors Walk,11317,1,4358_7778195_9070009,4358_505 -4358_80701,205,4358_13061,Bachelors Walk,4215,1,4358_7778195_9070004,4358_506 -4358_80703,205,4358_13062,Dunboyne,6440,0,4358_7778195_7070657,4358_507 -4358_80703,205,4358_13063,DCU,6439,1,4358_7778195_7070557,4358_508 -4358_80791,205,4358_13064,Out of Service ACW,7885,0,4358_7778195_7720002,4358_509 -4358_80791,205,4358_13065,Out of Service ACW,7882,0,4358_7778195_7720001,4358_509 -4358_80791,96,4358_13066,Out of Service ACW,14371,0,4358_7778195_7720002,4358_509 -4358_80791,96,4358_13067,Out of Service ACW,14369,0,4358_7778195_7720001,4358_509 -4358_80791,205,4358_13068,Out of Service ACW,7883,0,4358_7778195_7720004,4358_509 -4358_80791,96,4358_13069,Out of Service ACW,14373,0,4358_7778195_7720002,4358_509 -4358_80791,205,4358_13070,Out of Service ACW,7888,0,4358_7778195_7720003,4358_509 -4358_80791,205,4358_13071,Out of Service CW,7881,1,4358_7778195_7720001,4358_510 -4358_80791,205,4358_13072,Out of Service CW,7886,1,4358_7778195_7720002,4358_510 -4358_80791,96,4358_13073,Out of Service CW,14368,1,4358_7778195_7720001,4358_510 -4358_80791,96,4358_13074,Out of Service CW,14372,1,4358_7778195_7720002,4358_510 -4358_80791,205,4358_13075,Out of Service CW,7887,1,4358_7778195_7720003,4358_510 -4358_80791,96,4358_13076,Out of Service CW,14370,1,4358_7778195_7720001,4358_510 -4358_80791,205,4358_13077,Out of Service CW,7884,1,4358_7778195_7720004,4358_510 -4358_80745,205,4358_13078,Dundrum,2917,0,4358_7778195_1074002,4358_511 -4358_80745,205,4358_13079,Dundrum,3013,0,4358_7778195_1074004,4358_511 -4358_80757,205,4358_1308,Kilnamanagh Rd,2091,1,4358_7778195_5123016,4358_45 -4358_80745,96,4358_13080,Dundrum,10584,0,4358_7778195_1074001,4358_512 -4358_80745,205,4358_13081,Dundrum,2847,0,4358_7778195_1074001,4358_511 -4358_80745,96,4358_13082,Dundrum,10538,0,4358_7778195_1074002,4358_511 -4358_80745,205,4358_13083,Dundrum,2877,0,4358_7778195_1074003,4358_512 -4358_80745,205,4358_13085,Dundrum,3029,0,4358_7778195_1074007,4358_512 -4358_80745,205,4358_13086,Dundrum,2919,0,4358_7778195_1074002,4358_511 -4358_80745,96,4358_13087,Dundrum,10586,0,4358_7778195_1074001,4358_512 -4358_80745,205,4358_13088,Dundrum,3015,0,4358_7778195_1074004,4358_511 -4358_80757,96,4358_1309,Kilnamanagh Rd,9884,1,4358_7778195_5123001,4358_45 -4358_80745,205,4358_13090,Dundrum,3175,0,4358_7778195_1074005,4358_511 -4358_80745,96,4358_13091,Dundrum,10592,0,4358_7778195_1074003,4358_512 -4358_80745,205,4358_13092,Dundrum,2835,0,4358_7778195_1074006,4358_511 -4358_80745,96,4358_13094,Dundrum,10540,0,4358_7778195_1074002,4358_513 -4358_80745,205,4358_13095,Dundrum,2849,0,4358_7778195_1074001,4358_511 -4358_80745,96,4358_13096,Dundrum,10549,0,4358_7778195_1074006,4358_512 -4358_80745,205,4358_13097,Dundrum,2879,0,4358_7778195_1074003,4358_511 -4358_80745,96,4358_13099,Dundrum,10588,0,4358_7778195_1074001,4358_513 -4358_80760,205,4358_131,Shaw street,1598,0,4358_7778195_9001005,4358_1 -4358_80745,205,4358_13101,Dundrum,3083,0,4358_7778195_1074008,4358_512 -4358_80745,96,4358_13102,Dundrum,10692,0,4358_7778195_1074004,4358_513 -4358_80745,205,4358_13103,Dundrum,2921,0,4358_7778195_1074002,4358_511 -4358_80745,96,4358_13105,Dundrum,10564,0,4358_7778195_1074005,4358_513 -4358_80745,205,4358_13106,Dundrum,3017,0,4358_7778195_1074004,4358_511 -4358_80745,96,4358_13108,Dundrum,10594,0,4358_7778195_1074003,4358_513 -4358_80745,205,4358_13109,Dundrum,2837,0,4358_7778195_1074006,4358_511 -4358_80757,205,4358_1311,Kilnamanagh Rd,2272,1,4358_7778195_5123008,4358_46 -4358_80745,96,4358_13111,Dundrum,10542,0,4358_7778195_1074002,4358_513 -4358_80745,205,4358_13112,Dundrum,2851,0,4358_7778195_1074001,4358_511 -4358_80745,96,4358_13113,Dundrum,10633,0,4358_7778195_1074008,4358_512 -4358_80745,205,4358_13115,Dundrum,2881,0,4358_7778195_1074003,4358_511 -4358_80745,96,4358_13117,Dundrum,10551,0,4358_7778195_1074006,4358_513 -4358_80745,96,4358_13119,Dundrum,10590,0,4358_7778195_1074001,4358_512 -4358_80757,96,4358_1312,Kilnamanagh Rd,9828,1,4358_7778195_5123012,4358_45 -4358_80745,205,4358_13120,Dundrum,3023,0,4358_7778195_1074009,4358_513 -4358_80745,205,4358_13121,Dundrum,2923,0,4358_7778195_1074002,4358_511 -4358_80745,96,4358_13123,Dundrum,10694,0,4358_7778195_1074004,4358_513 -4358_80745,205,4358_13125,Dundrum,2976,0,4358_7778195_1074010,4358_512 -4358_80745,96,4358_13126,Dundrum,10623,0,4358_7778195_1074007,4358_513 -4358_80745,205,4358_13127,Dundrum,2839,0,4358_7778195_1074006,4358_511 -4358_80745,96,4358_13129,Dundrum,10566,0,4358_7778195_1074005,4358_513 -4358_80757,205,4358_1313,Kilnamanagh Rd,2295,1,4358_7778195_5123011,4358_45 -4358_80745,96,4358_13130,Dundrum,10596,0,4358_7778195_1074003,4358_511 -4358_80745,205,4358_13131,Dundrum,2853,0,4358_7778195_1074001,4358_512 -4358_80745,96,4358_13133,Dundrum,10544,0,4358_7778195_1074002,4358_511 -4358_80745,205,4358_13134,Dundrum,2883,0,4358_7778195_1074003,4358_512 -4358_80745,96,4358_13137,Dundrum,10635,0,4358_7778195_1074008,4358_512 -4358_80745,205,4358_13138,Dundrum,3008,0,4358_7778195_1074011,4358_513 -4358_80745,96,4358_13140,Dundrum,10553,0,4358_7778195_1074006,4358_512 -4358_80745,205,4358_13141,Dundrum,3025,0,4358_7778195_1074009,4358_513 -4358_80745,205,4358_13143,Dundrum,2925,0,4358_7778195_1074002,4358_512 -4358_80745,96,4358_13144,Dundrum,10696,0,4358_7778195_1074004,4358_513 -4358_80745,205,4358_13146,Dundrum,2978,0,4358_7778195_1074010,4358_512 -4358_80745,96,4358_13147,Dundrum,10568,0,4358_7778195_1074005,4358_513 -4358_80745,96,4358_13148,Dundrum,10598,0,4358_7778195_1074003,4358_511 -4358_80757,205,4358_1315,Kilnamanagh Rd,2303,1,4358_7778195_5123012,4358_45 -4358_80745,205,4358_13150,Dundrum,2955,0,4358_7778195_1074012,4358_513 -4358_80745,205,4358_13151,Dundrum,2841,0,4358_7778195_1074006,4358_511 -4358_80745,96,4358_13152,Dundrum,10546,0,4358_7778195_1074002,4358_512 -4358_80745,205,4358_13155,Dundrum,2885,0,4358_7778195_1074003,4358_512 -4358_80745,96,4358_13156,Dundrum,10637,0,4358_7778195_1074008,4358_513 -4358_80745,96,4358_13158,Dundrum,10555,0,4358_7778195_1074006,4358_512 -4358_80745,205,4358_13159,Dundrum,3010,0,4358_7778195_1074011,4358_513 -4358_80757,96,4358_1316,Kilnamanagh Rd,9794,1,4358_7778195_5123004,4358_45 -4358_80745,96,4358_13161,Dundrum,10698,0,4358_7778195_1074004,4358_512 -4358_80745,205,4358_13162,Dundrum,3027,0,4358_7778195_1074009,4358_513 -4358_80745,205,4358_13164,Dundrum,2927,0,4358_7778195_1074002,4358_512 -4358_80745,96,4358_13165,Dundrum,10570,0,4358_7778195_1074005,4358_513 -4358_80745,96,4358_13166,Dundrum,10600,0,4358_7778195_1074003,4358_511 -4358_80745,205,4358_13167,Dundrum,2980,0,4358_7778195_1074010,4358_512 -4358_80745,96,4358_13169,Dundrum,10548,0,4358_7778195_1074002,4358_511 -4358_80757,205,4358_1317,Kilnamanagh Rd,2238,1,4358_7778195_5123001,4358_45 -4358_80745,205,4358_13171,Dundrum,2957,0,4358_7778195_1074012,4358_513 -4358_80745,96,4358_13173,Dundrum,10557,0,4358_7778195_1074006,4358_512 -4358_80745,205,4358_13174,Dundrum,3012,0,4358_7778195_1074011,4358_513 -4358_80745,205,4358_13175,Eden Quay,2846,1,4358_7778195_1074001,4358_514 -4358_80745,96,4358_13176,Eden Quay,10537,1,4358_7778195_1074002,4358_514 -4358_80745,205,4358_13177,Eden Quay,2876,1,4358_7778195_1074003,4358_515 -4358_80745,205,4358_13178,Eden Quay,2918,1,4358_7778195_1074002,4358_514 -4358_80745,205,4358_13179,Eden Quay,3014,1,4358_7778195_1074004,4358_514 -4358_80757,96,4358_1318,Kilnamanagh Rd,9912,1,4358_7778195_5123007,4358_45 -4358_80745,96,4358_13180,Eden Quay,10585,1,4358_7778195_1074001,4358_515 -4358_80745,205,4358_13181,Eden Quay,2834,1,4358_7778195_1074006,4358_514 -4358_80745,96,4358_13183,Eden Quay,10539,1,4358_7778195_1074002,4358_514 -4358_80745,205,4358_13184,Eden Quay,2848,1,4358_7778195_1074001,4358_515 -4358_80745,205,4358_13186,Eden Quay,2878,1,4358_7778195_1074003,4358_515 -4358_80745,205,4358_13187,Eden Quay,3082,1,4358_7778195_1074008,4358_514 -4358_80745,96,4358_13188,Eden Quay,10587,1,4358_7778195_1074001,4358_515 -4358_80745,205,4358_13189,Eden Quay,3030,1,4358_7778195_1074007,4358_514 -4358_80745,96,4358_13191,Eden Quay,10691,1,4358_7778195_1074004,4358_516 -4358_80745,205,4358_13192,Eden Quay,2920,1,4358_7778195_1074002,4358_514 -4358_80745,96,4358_13193,Eden Quay,10563,1,4358_7778195_1074005,4358_515 -4358_80745,205,4358_13194,Eden Quay,3016,1,4358_7778195_1074004,4358_514 -4358_80745,96,4358_13196,Eden Quay,10593,1,4358_7778195_1074003,4358_516 -4358_80745,205,4358_13197,Eden Quay,2836,1,4358_7778195_1074006,4358_514 -4358_80745,96,4358_13199,Eden Quay,10541,1,4358_7778195_1074002,4358_516 -4358_80757,205,4358_1320,Kilnamanagh Rd,2250,1,4358_7778195_5123002,4358_45 -4358_80745,205,4358_13200,Eden Quay,2850,1,4358_7778195_1074001,4358_514 -4358_80745,96,4358_13201,Eden Quay,10550,1,4358_7778195_1074006,4358_515 -4358_80745,205,4358_13203,Eden Quay,2880,1,4358_7778195_1074003,4358_514 -4358_80745,96,4358_13205,Eden Quay,10589,1,4358_7778195_1074001,4358_516 -4358_80745,96,4358_13207,Eden Quay,10693,1,4358_7778195_1074004,4358_515 -4358_80745,205,4358_13208,Eden Quay,3022,1,4358_7778195_1074009,4358_516 -4358_80745,205,4358_13209,Eden Quay,2922,1,4358_7778195_1074002,4358_514 -4358_80757,96,4358_1321,Kilnamanagh Rd,9767,1,4358_7778195_5123003,4358_45 -4358_80745,96,4358_13211,Eden Quay,10622,1,4358_7778195_1074007,4358_516 -4358_80745,205,4358_13212,Eden Quay,3018,1,4358_7778195_1074004,4358_514 -4358_80745,96,4358_13214,Eden Quay,10565,1,4358_7778195_1074005,4358_516 -4358_80745,205,4358_13215,Eden Quay,2838,1,4358_7778195_1074006,4358_514 -4358_80745,96,4358_13217,Eden Quay,10595,1,4358_7778195_1074003,4358_516 -4358_80745,96,4358_13218,Eden Quay,10543,1,4358_7778195_1074002,4358_514 -4358_80745,205,4358_13219,Eden Quay,2852,1,4358_7778195_1074001,4358_515 -4358_80745,205,4358_13221,Eden Quay,2882,1,4358_7778195_1074003,4358_514 -4358_80745,96,4358_13223,Eden Quay,10634,1,4358_7778195_1074008,4358_516 -4358_80745,96,4358_13225,Eden Quay,10552,1,4358_7778195_1074006,4358_515 -4358_80745,205,4358_13226,Eden Quay,3024,1,4358_7778195_1074009,4358_516 -4358_80745,205,4358_13227,Eden Quay,2924,1,4358_7778195_1074002,4358_514 -4358_80745,96,4358_13229,Eden Quay,10591,1,4358_7778195_1074001,4358_516 -4358_80757,205,4358_1323,Kilnamanagh Rd,2216,1,4358_7778195_5123015,4358_46 -4358_80745,96,4358_13231,Eden Quay,10695,1,4358_7778195_1074004,4358_515 -4358_80745,205,4358_13232,Eden Quay,2977,1,4358_7778195_1074010,4358_516 -4358_80745,96,4358_13234,Eden Quay,10567,1,4358_7778195_1074005,4358_515 -4358_80745,205,4358_13235,Eden Quay,2954,1,4358_7778195_1074012,4358_516 -4358_80745,205,4358_13236,Eden Quay,2840,1,4358_7778195_1074006,4358_514 -4358_80745,96,4358_13237,Eden Quay,10597,1,4358_7778195_1074003,4358_515 -4358_80745,96,4358_13239,Eden Quay,10545,1,4358_7778195_1074002,4358_514 -4358_80757,96,4358_1324,Kilnamanagh Rd,9904,1,4358_7778195_5123011,4358_45 -4358_80745,205,4358_13240,Eden Quay,2854,1,4358_7778195_1074001,4358_515 -4358_80745,205,4358_13243,Eden Quay,2884,1,4358_7778195_1074003,4358_515 -4358_80745,96,4358_13244,Eden Quay,10636,1,4358_7778195_1074008,4358_516 -4358_80745,96,4358_13246,Eden Quay,10554,1,4358_7778195_1074006,4358_515 -4358_80745,205,4358_13247,Eden Quay,3009,1,4358_7778195_1074011,4358_516 -4358_80745,96,4358_13249,Eden Quay,10697,1,4358_7778195_1074004,4358_515 -4358_80757,205,4358_1325,Kilnamanagh Rd,2260,1,4358_7778195_5123004,4358_45 -4358_80745,205,4358_13250,Eden Quay,3026,1,4358_7778195_1074009,4358_516 -4358_80745,205,4358_13252,Eden Quay,2926,1,4358_7778195_1074002,4358_515 -4358_80745,96,4358_13253,Eden Quay,10569,1,4358_7778195_1074005,4358_516 -4358_80745,96,4358_13254,Eden Quay,10599,1,4358_7778195_1074003,4358_514 -4358_80745,205,4358_13255,Eden Quay,2979,1,4358_7778195_1074010,4358_515 -4358_80745,96,4358_13257,Eden Quay,10547,1,4358_7778195_1074002,4358_514 -4358_80745,205,4358_13259,Eden Quay,2956,1,4358_7778195_1074012,4358_516 -4358_80745,205,4358_13261,Eden Quay,2886,1,4358_7778195_1074003,4358_515 -4358_80745,96,4358_13262,Eden Quay,10638,1,4358_7778195_1074008,4358_516 -4358_80745,96,4358_13264,Eden Quay,10556,1,4358_7778195_1074006,4358_515 -4358_80745,205,4358_13265,Eden Quay,3011,1,4358_7778195_1074011,4358_516 -4358_80745,96,4358_13267,Eden Quay,10699,1,4358_7778195_1074004,4358_515 -4358_80745,205,4358_13268,Eden Quay,3028,1,4358_7778195_1074009,4358_516 -4358_80745,96,4358_13269,Eden Quay,10601,1,4358_7778195_1074003,4358_514 -4358_80757,205,4358_1327,Kilnamanagh Rd,2228,1,4358_7778195_5123007,4358_45 -4358_80745,205,4358_13270,Eden Quay,2981,1,4358_7778195_1074010,4358_515 -4358_80746,205,4358_13272,Citywest,1160,0,4358_7778195_3027010,4358_517 -4358_80746,96,4358_13273,Citywest,8754,0,4358_7778195_3027005,4358_517 -4358_80746,205,4358_13274,Citywest,1140,0,4358_7778195_3027014,4358_517 -4358_80746,205,4358_13275,Citywest,1305,0,4358_7778195_3027001,4358_517 -4358_80746,96,4358_13276,Citywest,8880,0,4358_7778195_3027007,4358_517 -4358_80746,205,4358_13277,Citywest,1210,0,4358_7778195_3027018,4358_517 -4358_80746,96,4358_13278,Citywest,8780,0,4358_7778195_3027008,4358_517 -4358_80746,205,4358_13279,Citywest,1212,0,4358_7778195_3027021,4358_518 -4358_80757,96,4358_1328,Kilnamanagh Rd,9840,1,4358_7778195_5123006,4358_45 -4358_80746,205,4358_13281,Citywest,6661,0,4358_7778195_3027023,4358_517 -4358_80746,96,4358_13283,Citywest,8902,0,4358_7778195_3027003,4358_518 -4358_80746,205,4358_13284,Citywest,1330,0,4358_7778195_3027027,4358_517 -4358_80746,96,4358_13286,Citywest,8849,0,4358_7778195_3027006,4358_518 -4358_80746,205,4358_13287,Citywest,6652,0,4358_7778195_3027005,4358_519 -4358_80746,205,4358_13288,Citywest,1184,0,4358_7778195_3027009,4358_517 -4358_80746,96,4358_13289,Citywest,8868,0,4358_7778195_3027011,4358_518 -4358_80757,205,4358_1329,Kilnamanagh Rd,2283,1,4358_7778195_5123009,4358_45 -4358_80746,96,4358_13291,Citywest,8756,0,4358_7778195_3027005,4358_517 -4358_80746,205,4358_13292,Citywest,6645,0,4358_7778195_3027013,4358_518 -4358_80746,96,4358_13293,Citywest,8797,0,4358_7778195_3027016,4358_517 -4358_80746,205,4358_13294,Citywest,1162,0,4358_7778195_3027010,4358_518 -4358_80746,96,4358_13296,Citywest,8882,0,4358_7778195_3027007,4358_517 -4358_80746,205,4358_13297,Citywest,1142,0,4358_7778195_3027014,4358_518 -4358_80746,96,4358_13299,Citywest,8782,0,4358_7778195_3027008,4358_517 -4358_80760,96,4358_133,Shaw street,9524,0,4358_7778195_9001005,4358_1 -4358_80757,96,4358_1330,Kilnamanagh Rd,9774,1,4358_7778195_5123010,4358_45 -4358_80746,205,4358_13300,Citywest,1168,0,4358_7778195_3027019,4358_518 -4358_80746,96,4358_13301,Citywest,8821,0,4358_7778195_3027010,4358_517 -4358_80746,205,4358_13302,Citywest,1190,0,4358_7778195_3027022,4358_518 -4358_80746,96,4358_13304,Citywest,8904,0,4358_7778195_3027003,4358_517 -4358_80746,205,4358_13305,Citywest,1320,0,4358_7778195_3027024,4358_518 -4358_80746,96,4358_13307,Citywest,8851,0,4358_7778195_3027006,4358_517 -4358_80746,205,4358_13308,Citywest,1214,0,4358_7778195_3027021,4358_518 -4358_80746,205,4358_13310,Citywest,1525,0,4358_7778195_3027030,4358_518 -4358_80746,96,4358_13311,Citywest,8870,0,4358_7778195_3027011,4358_519 -4358_80746,205,4358_13312,Citywest,6663,0,4358_7778195_3027023,4358_517 -4358_80746,96,4358_13313,Citywest,8758,0,4358_7778195_3027005,4358_518 -4358_80746,96,4358_13315,Citywest,8804,0,4358_7778195_3027017,4358_517 -4358_80746,205,4358_13316,Citywest,1343,0,4358_7778195_3027032,4358_518 -4358_80746,96,4358_13317,Citywest,8799,0,4358_7778195_3027016,4358_517 -4358_80746,205,4358_13318,Citywest,6654,0,4358_7778195_3027005,4358_518 -4358_80757,205,4358_1332,Kilnamanagh Rd,2120,1,4358_7778195_5123003,4358_45 -4358_80746,205,4358_13320,Citywest,1186,0,4358_7778195_3027009,4358_517 -4358_80746,96,4358_13321,Citywest,8855,0,4358_7778195_3027023,4358_518 -4358_80746,96,4358_13323,Citywest,8884,0,4358_7778195_3027007,4358_517 -4358_80746,205,4358_13324,Citywest,6647,0,4358_7778195_3027013,4358_518 -4358_80746,96,4358_13325,Citywest,8784,0,4358_7778195_3027008,4358_517 -4358_80746,205,4358_13327,Citywest,1164,0,4358_7778195_3027010,4358_519 -4358_80746,96,4358_13328,Citywest,8823,0,4358_7778195_3027010,4358_517 -4358_80746,205,4358_13329,Citywest,1144,0,4358_7778195_3027014,4358_518 -4358_80757,96,4358_1333,Kilnamanagh Rd,9933,1,4358_7778195_5123013,4358_45 -4358_80746,96,4358_13331,Citywest,8906,0,4358_7778195_3027003,4358_517 -4358_80746,205,4358_13332,Citywest,1170,0,4358_7778195_3027019,4358_518 -4358_80746,96,4358_13334,Citywest,8853,0,4358_7778195_3027006,4358_518 -4358_80746,205,4358_13335,Citywest,1322,0,4358_7778195_3027024,4358_519 -4358_80746,205,4358_13336,Citywest,1216,0,4358_7778195_3027021,4358_517 -4358_80746,96,4358_13337,Citywest,8872,0,4358_7778195_3027011,4358_518 -4358_80746,205,4358_13339,Citywest,1527,0,4358_7778195_3027030,4358_517 -4358_80746,96,4358_13340,Citywest,8760,0,4358_7778195_3027005,4358_518 -4358_80746,205,4358_13341,Citywest,6665,0,4358_7778195_3027023,4358_517 -4358_80746,96,4358_13343,Citywest,8806,0,4358_7778195_3027017,4358_519 -4358_80746,96,4358_13344,Citywest,8801,0,4358_7778195_3027016,4358_517 -4358_80746,205,4358_13345,Citywest,1219,0,4358_7778195_3027033,4358_518 -4358_80746,205,4358_13347,Citywest,1345,0,4358_7778195_3027032,4358_517 -4358_80746,96,4358_13348,Citywest,8857,0,4358_7778195_3027023,4358_518 -4358_80757,205,4358_1335,Kilnamanagh Rd,2199,1,4358_7778195_5123005,4358_46 -4358_80746,96,4358_13350,Citywest,8786,0,4358_7778195_3027008,4358_518 -4358_80746,205,4358_13351,Citywest,6656,0,4358_7778195_3027005,4358_519 -4358_80746,96,4358_13352,Citywest,8894,0,4358_7778195_3027024,4358_517 -4358_80746,205,4358_13353,Citywest,1188,0,4358_7778195_3027009,4358_518 -4358_80746,96,4358_13355,Citywest,8825,0,4358_7778195_3027010,4358_517 -4358_80746,205,4358_13356,Citywest,6649,0,4358_7778195_3027013,4358_518 -4358_80746,205,4358_13357,Citywest,1166,0,4358_7778195_3027010,4358_517 -4358_80746,96,4358_13358,Citywest,8908,0,4358_7778195_3027003,4358_517 -4358_80757,96,4358_1336,Kilnamanagh Rd,9924,1,4358_7778195_5123009,4358_45 -4358_80746,205,4358_13360,Citywest,1146,0,4358_7778195_3027014,4358_517 -4358_80746,96,4358_13361,Citywest,8838,0,4358_7778195_3027026,4358_517 -4358_80746,205,4358_13362,Citywest,1139,0,4358_7778195_3027039,4358_517 -4358_80746,205,4358_13364,Citywest,1172,0,4358_7778195_3027019,4358_517 -4358_80746,96,4358_13365,Citywest,8874,0,4358_7778195_3027011,4358_518 -4358_80746,205,4358_13366,Citywest,1324,0,4358_7778195_3027024,4358_517 -4358_80746,96,4358_13368,Citywest,8762,0,4358_7778195_3027005,4358_518 -4358_80746,205,4358_13369,Citywest,1309,0,4358_7778195_3027034,4358_517 -4358_80757,205,4358_1337,Kilnamanagh Rd,2176,1,4358_7778195_5123006,4358_45 -4358_80746,96,4358_13371,Citywest,8808,0,4358_7778195_3027017,4358_518 -4358_80746,205,4358_13372,Citywest,1269,0,4358_7778195_3027035,4358_519 -4358_80746,205,4358_13373,Citywest,1206,0,4358_7778195_3027037,4358_517 -4358_80746,96,4358_13374,Citywest,8859,0,4358_7778195_3027023,4358_517 -4358_80746,205,4358_13376,Citywest,6667,0,4358_7778195_3027023,4358_517 -4358_80746,96,4358_13378,Citywest,8788,0,4358_7778195_3027008,4358_518 -4358_80746,205,4358_13379,Citywest,1221,0,4358_7778195_3027033,4358_519 -4358_80746,96,4358_13380,Citywest,8827,0,4358_7778195_3027010,4358_517 -4358_80746,205,4358_13382,Citywest,6658,0,4358_7778195_3027005,4358_519 -4358_80746,96,4358_13383,Citywest,8910,0,4358_7778195_3027003,4358_517 -4358_80746,205,4358_13385,Citywest,1148,0,4358_7778195_3027014,4358_519 -4358_80746,205,4358_13387,Citywest,1174,0,4358_7778195_3027019,4358_518 -4358_80746,96,4358_13388,Citywest,8876,0,4358_7778195_3027011,4358_519 -4358_80757,205,4358_1339,Kilnamanagh Rd,2319,1,4358_7778195_5123014,4358_45 -4358_80746,205,4358_13390,Citywest,1311,0,4358_7778195_3027034,4358_518 -4358_80746,96,4358_13391,Citywest,8764,0,4358_7778195_3027005,4358_519 -4358_80746,96,4358_13392,Citywest,8810,0,4358_7778195_3027017,4358_517 -4358_80746,205,4358_13393,Citywest,1208,0,4358_7778195_3027037,4358_518 -4358_80746,205,4358_13396,Citywest,1223,0,4358_7778195_3027033,4358_518 -4358_80746,96,4358_13397,Citywest,8861,0,4358_7778195_3027023,4358_519 -4358_80746,96,4358_13398,Citywest,8790,0,4358_7778195_3027008,4358_517 -4358_80760,205,4358_134,Shaw street,1551,0,4358_7778195_9001010,4358_1 -4358_80757,96,4358_1340,Kilnamanagh Rd,9852,1,4358_7778195_5123002,4358_45 -4358_80746,205,4358_13400,Citywest,6660,0,4358_7778195_3027005,4358_519 -4358_80746,96,4358_13401,Citywest,8912,0,4358_7778195_3027003,4358_517 -4358_80746,205,4358_13402,Citywest,1150,0,4358_7778195_3027014,4358_518 -4358_80746,205,4358_13404,Ringsend Road,6651,1,4358_7778195_3027005,4358_520 -4358_80746,96,4358_13405,Ringsend Road,8901,1,4358_7778195_3027003,4358_520 -4358_80746,205,4358_13406,Ringsend Road,1183,1,4358_7778195_3027009,4358_521 -4358_80746,205,4358_13407,Ringsend Road,6644,1,4358_7778195_3027013,4358_520 -4358_80746,96,4358_13408,Ringsend Road,8848,1,4358_7778195_3027006,4358_520 -4358_80746,205,4358_13409,Ringsend Road,1161,1,4358_7778195_3027010,4358_520 -4358_80757,205,4358_1341,Kilnamanagh Rd,2093,1,4358_7778195_5123016,4358_45 -4358_80746,96,4358_13410,Ringsend Road,8755,1,4358_7778195_3027005,4358_520 -4358_80746,205,4358_13411,Ringsend Road,1141,1,4358_7778195_3027014,4358_521 -4358_80746,205,4358_13412,Ringsend Road,1167,1,4358_7778195_3027019,4358_520 -4358_80746,205,4358_13413,Ringsend Road,1293,1,4358_7778195_3027020,4358_520 -4358_80746,205,4358_13414,Ringsend Road,1306,1,4358_7778195_3027001,4358_520 -4358_80746,96,4358_13415,Ringsend Road,8881,1,4358_7778195_3027007,4358_521 -4358_80746,205,4358_13417,Ringsend Road,1189,1,4358_7778195_3027022,4358_521 -4358_80746,205,4358_13418,Ringsend Road,1211,1,4358_7778195_3027018,4358_520 -4358_80746,96,4358_13419,Ringsend Road,8781,1,4358_7778195_3027008,4358_521 -4358_80746,205,4358_13420,Ringsend Road,1319,1,4358_7778195_3027024,4358_520 -4358_80746,205,4358_13421,Ringsend Road,1318,1,4358_7778195_3027025,4358_520 -4358_80746,96,4358_13422,Ringsend Road,8820,1,4358_7778195_3027010,4358_521 -4358_80746,205,4358_13424,Ringsend Road,1213,1,4358_7778195_3027021,4358_520 -4358_80746,96,4358_13425,Ringsend Road,8903,1,4358_7778195_3027003,4358_520 -4358_80746,205,4358_13427,Ringsend Road,1524,1,4358_7778195_3027030,4358_521 -4358_80746,96,4358_13428,Ringsend Road,8850,1,4358_7778195_3027006,4358_520 -4358_80746,205,4358_13429,Ringsend Road,6662,1,4358_7778195_3027023,4358_520 -4358_80757,96,4358_1343,Kilnamanagh Rd,9886,1,4358_7778195_5123001,4358_46 -4358_80746,96,4358_13431,Ringsend Road,8869,1,4358_7778195_3027011,4358_521 -4358_80746,205,4358_13432,Ringsend Road,1331,1,4358_7778195_3027027,4358_520 -4358_80746,96,4358_13433,Ringsend Road,8757,1,4358_7778195_3027005,4358_520 -4358_80746,205,4358_13435,Ringsend Road,6653,1,4358_7778195_3027005,4358_521 -4358_80746,96,4358_13436,Ringsend Road,8803,1,4358_7778195_3027017,4358_520 -4358_80746,205,4358_13437,Ringsend Road,1185,1,4358_7778195_3027009,4358_520 -4358_80746,96,4358_13438,Ringsend Road,8798,1,4358_7778195_3027016,4358_520 -4358_80757,205,4358_1344,Kilnamanagh Rd,2274,1,4358_7778195_5123008,4358_45 -4358_80746,205,4358_13440,Ringsend Road,6646,1,4358_7778195_3027013,4358_520 -4358_80746,96,4358_13441,Ringsend Road,8883,1,4358_7778195_3027007,4358_520 -4358_80746,205,4358_13443,Ringsend Road,1163,1,4358_7778195_3027010,4358_521 -4358_80746,96,4358_13444,Ringsend Road,8783,1,4358_7778195_3027008,4358_520 -4358_80746,205,4358_13445,Ringsend Road,1143,1,4358_7778195_3027014,4358_520 -4358_80746,96,4358_13446,Ringsend Road,8822,1,4358_7778195_3027010,4358_520 -4358_80746,205,4358_13448,Ringsend Road,1169,1,4358_7778195_3027019,4358_520 -4358_80746,96,4358_13449,Ringsend Road,8905,1,4358_7778195_3027003,4358_520 -4358_80757,96,4358_1345,Kilnamanagh Rd,9830,1,4358_7778195_5123012,4358_45 -4358_80746,205,4358_13451,Ringsend Road,1321,1,4358_7778195_3027024,4358_521 -4358_80746,96,4358_13452,Ringsend Road,8852,1,4358_7778195_3027006,4358_520 -4358_80746,205,4358_13453,Ringsend Road,1215,1,4358_7778195_3027021,4358_520 -4358_80746,96,4358_13455,Ringsend Road,8871,1,4358_7778195_3027011,4358_521 -4358_80746,205,4358_13456,Ringsend Road,1526,1,4358_7778195_3027030,4358_520 -4358_80746,96,4358_13457,Ringsend Road,8759,1,4358_7778195_3027005,4358_520 -4358_80746,205,4358_13458,Ringsend Road,6664,1,4358_7778195_3027023,4358_520 -4358_80746,96,4358_13460,Ringsend Road,8805,1,4358_7778195_3027017,4358_520 -4358_80746,205,4358_13461,Ringsend Road,1218,1,4358_7778195_3027033,4358_520 -4358_80746,96,4358_13462,Ringsend Road,8800,1,4358_7778195_3027016,4358_520 -4358_80746,205,4358_13464,Ringsend Road,1344,1,4358_7778195_3027032,4358_520 -4358_80746,96,4358_13465,Ringsend Road,8856,1,4358_7778195_3027023,4358_520 -4358_80746,205,4358_13467,Ringsend Road,6655,1,4358_7778195_3027005,4358_521 -4358_80746,96,4358_13468,Ringsend Road,8885,1,4358_7778195_3027007,4358_520 -4358_80746,205,4358_13469,Ringsend Road,1187,1,4358_7778195_3027009,4358_520 -4358_80757,205,4358_1347,Kilnamanagh Rd,2297,1,4358_7778195_5123011,4358_46 -4358_80746,96,4358_13470,Ringsend Road,8785,1,4358_7778195_3027008,4358_520 -4358_80746,205,4358_13472,Ringsend Road,6648,1,4358_7778195_3027013,4358_520 -4358_80746,96,4358_13473,Ringsend Road,8893,1,4358_7778195_3027024,4358_520 -4358_80746,205,4358_13475,Ringsend Road,1165,1,4358_7778195_3027010,4358_521 -4358_80746,96,4358_13476,Ringsend Road,8824,1,4358_7778195_3027010,4358_520 -4358_80746,205,4358_13477,Ringsend Road,1145,1,4358_7778195_3027014,4358_520 -4358_80746,96,4358_13478,Ringsend Road,8907,1,4358_7778195_3027003,4358_520 -4358_80757,96,4358_1348,Kilnamanagh Rd,9796,1,4358_7778195_5123004,4358_45 -4358_80746,205,4358_13480,Ringsend Road,1171,1,4358_7778195_3027019,4358_520 -4358_80746,96,4358_13481,Ringsend Road,8854,1,4358_7778195_3027006,4358_520 -4358_80746,205,4358_13482,Ringsend Road,1323,1,4358_7778195_3027024,4358_520 -4358_80746,205,4358_13484,Ringsend Road,1308,1,4358_7778195_3027034,4358_520 -4358_80746,96,4358_13485,Ringsend Road,8873,1,4358_7778195_3027011,4358_521 -4358_80746,205,4358_13486,Ringsend Road,1217,1,4358_7778195_3027021,4358_520 -4358_80746,205,4358_13488,Ringsend Road,1268,1,4358_7778195_3027035,4358_521 -4358_80746,96,4358_13489,Ringsend Road,8761,1,4358_7778195_3027005,4358_522 -4358_80757,205,4358_1349,Kilnamanagh Rd,2305,1,4358_7778195_5123012,4358_45 -4358_80746,205,4358_13490,Ringsend Road,1528,1,4358_7778195_3027030,4358_520 -4358_80746,96,4358_13491,Ringsend Road,8807,1,4358_7778195_3027017,4358_520 -4358_80746,205,4358_13493,Ringsend Road,1205,1,4358_7778195_3027037,4358_521 -4358_80746,96,4358_13494,Ringsend Road,8802,1,4358_7778195_3027016,4358_520 -4358_80746,205,4358_13495,Ringsend Road,6666,1,4358_7778195_3027023,4358_520 -4358_80746,205,4358_13496,Ringsend Road,1220,1,4358_7778195_3027033,4358_520 -4358_80746,96,4358_13497,Ringsend Road,8858,1,4358_7778195_3027023,4358_521 -4358_80746,205,4358_13499,Ringsend Road,1307,1,4358_7778195_3027038,4358_520 -4358_80746,96,4358_13500,Ringsend Road,8787,1,4358_7778195_3027008,4358_520 -4358_80746,205,4358_13502,Ringsend Road,1346,1,4358_7778195_3027032,4358_521 -4358_80746,96,4358_13503,Ringsend Road,8895,1,4358_7778195_3027024,4358_520 -4358_80746,205,4358_13504,Ringsend Road,6657,1,4358_7778195_3027005,4358_520 -4358_80746,96,4358_13505,Ringsend Road,8826,1,4358_7778195_3027010,4358_520 -4358_80746,205,4358_13507,Ringsend Road,6650,1,4358_7778195_3027013,4358_520 -4358_80746,96,4358_13508,Ringsend Road,8909,1,4358_7778195_3027003,4358_520 -4358_80757,205,4358_1351,Kilnamanagh Rd,2240,1,4358_7778195_5123001,4358_45 -4358_80746,205,4358_13510,Ringsend Road,1147,1,4358_7778195_3027014,4358_521 -4358_80746,96,4358_13511,Ringsend Road,8875,1,4358_7778195_3027011,4358_520 -4358_80746,205,4358_13513,Ringsend Road,1173,1,4358_7778195_3027019,4358_521 -4358_80746,96,4358_13514,Ringsend Road,8763,1,4358_7778195_3027005,4358_520 -4358_80746,205,4358_13516,Ringsend Road,1310,1,4358_7778195_3027034,4358_521 -4358_80746,96,4358_13517,Ringsend Road,8809,1,4358_7778195_3027017,4358_520 -4358_80746,205,4358_13518,Ringsend Road,1207,1,4358_7778195_3027037,4358_520 -4358_80757,96,4358_1352,Kilnamanagh Rd,9914,1,4358_7778195_5123007,4358_45 -4358_80746,96,4358_13520,Ringsend Road,8860,1,4358_7778195_3027023,4358_520 -4358_80746,205,4358_13522,Ringsend Road,1222,1,4358_7778195_3027033,4358_521 -4358_80746,96,4358_13523,Ringsend Road,8789,1,4358_7778195_3027008,4358_520 -4358_80746,205,4358_13525,Ringsend Road,6659,1,4358_7778195_3027005,4358_521 -4358_80746,96,4358_13526,Ringsend Road,8911,1,4358_7778195_3027003,4358_520 -4358_80746,205,4358_13528,Ringsend Road,1149,1,4358_7778195_3027014,4358_521 -4358_80746,96,4358_13529,Ringsend Road,8877,1,4358_7778195_3027011,4358_520 -4358_80757,205,4358_1353,Kilnamanagh Rd,2252,1,4358_7778195_5123002,4358_45 -4358_80746,205,4358_13531,Ringsend Road,1175,1,4358_7778195_3027019,4358_521 -4358_80746,96,4358_13532,Ringsend Road,8765,1,4358_7778195_3027005,4358_520 -4358_80746,205,4358_13534,Ringsend Road,1312,1,4358_7778195_3027034,4358_521 -4358_80746,96,4358_13535,Ringsend Road,8811,1,4358_7778195_3027017,4358_520 -4358_80746,205,4358_13536,Ringsend Road,1209,1,4358_7778195_3027037,4358_520 -4358_80691,205,4358_13538,UCD,1521,1,4358_7778195_3823101,4358_523 -4358_80724,205,4358_13539,Loughlinstown Pk,6305,0,4358_7778195_2007004,4358_524 -4358_80724,96,4358_13540,Loughlinstown Pk,8307,0,4358_7778195_2007002,4358_524 -4358_80724,205,4358_13541,Loughlinstown Pk,6284,0,4358_7778195_2007008,4358_524 -4358_80724,96,4358_13542,Loughlinstown Pk,8739,0,4358_7778195_2007001,4358_524 -4358_80724,205,4358_13543,Loughlinstown Pk,6334,0,4358_7778195_2007010,4358_524 -4358_80724,96,4358_13544,Loughlinstown Pk,8272,0,4358_7778195_2007003,4358_524 -4358_80724,205,4358_13545,Loughlinstown Pk,6311,0,4358_7778195_2007006,4358_524 -4358_80724,96,4358_13546,Loughlinstown Pk,8285,0,4358_7778195_2007004,4358_524 -4358_80724,205,4358_13547,Loughlinstown Pk,6298,0,4358_7778195_2007002,4358_524 -4358_80724,96,4358_13549,Loughlinstown Pk,8323,0,4358_7778195_2007007,4358_526 -4358_80757,96,4358_1355,Kilnamanagh Rd,9769,1,4358_7778195_5123003,4358_46 -4358_80724,205,4358_13550,Loughlinstown Pk,6307,0,4358_7778195_2007004,4358_524 -4358_80724,96,4358_13551,Loughlinstown Pk,8309,0,4358_7778195_2007002,4358_526 -4358_80724,96,4358_13553,Loughlinstown Pk,8741,0,4358_7778195_2007001,4358_524 -4358_80724,205,4358_13554,Loughlinstown Pk,6347,0,4358_7778195_2007013,4358_526 -4358_80724,205,4358_13556,Loughlinstown Pk,6367,0,4358_7778195_2007016,4358_526 -4358_80724,96,4358_13557,Loughlinstown Pk,8274,0,4358_7778195_2007003,4358_527 -4358_80724,96,4358_13558,Loughlinstown Pk,8368,0,4358_7778195_2007011,4358_524 -4358_80724,205,4358_13559,Loughlinstown Pk,6386,0,4358_7778195_2007017,4358_524 -4358_80757,205,4358_1356,Kilnamanagh Rd,2218,1,4358_7778195_5123015,4358_45 -4358_80724,96,4358_13561,Loughlinstown Pk,8338,0,4358_7778195_2007006,4358_524 -4358_80724,205,4358_13562,Loughlinstown Pk,6313,0,4358_7778195_2007006,4358_524 -4358_80724,96,4358_13563,Loughlinstown Pk,8357,0,4358_7778195_2007010,4358_524 -4358_80724,205,4358_13565,Loughlinstown Pk,6300,0,4358_7778195_2007002,4358_524 -4358_80724,96,4358_13566,Loughlinstown Pk,8311,0,4358_7778195_2007002,4358_524 -4358_80724,205,4358_13568,Loughlinstown Pk,6309,0,4358_7778195_2007004,4358_524 -4358_80724,96,4358_13569,Loughlinstown Pk,8743,0,4358_7778195_2007001,4358_524 -4358_80757,96,4358_1357,Kilnamanagh Rd,9906,1,4358_7778195_5123011,4358_45 -4358_80724,205,4358_13570,Loughlinstown Pk,6349,0,4358_7778195_2007013,4358_524 -4358_80724,96,4358_13572,Loughlinstown Pk,8276,0,4358_7778195_2007003,4358_524 -4358_80724,205,4358_13574,Loughlinstown Pk,6369,0,4358_7778195_2007016,4358_526 -4358_80724,96,4358_13575,Loughlinstown Pk,8370,0,4358_7778195_2007011,4358_524 -4358_80724,205,4358_13577,Loughlinstown Pk,6388,0,4358_7778195_2007017,4358_526 -4358_80724,96,4358_13578,Loughlinstown Pk,8340,0,4358_7778195_2007006,4358_524 -4358_80724,205,4358_13579,Loughlinstown Pk,6315,0,4358_7778195_2007006,4358_524 -4358_80757,205,4358_1358,Kilnamanagh Rd,2183,1,4358_7778195_5123018,4358_45 -4358_80724,96,4358_13581,Loughlinstown Pk,8359,0,4358_7778195_2007010,4358_524 -4358_80724,205,4358_13582,Loughlinstown Pk,6302,0,4358_7778195_2007002,4358_524 -4358_80724,96,4358_13583,Loughlinstown Pk,8386,0,4358_7778195_2007013,4358_524 -4358_80724,205,4358_13585,Loughlinstown Pk,6277,0,4358_7778195_2007019,4358_524 -4358_80724,96,4358_13586,Loughlinstown Pk,8361,0,4358_7778195_2007014,4358_524 -4358_80724,205,4358_13587,Loughlinstown Pk,6351,0,4358_7778195_2007013,4358_524 -4358_80724,96,4358_13589,Loughlinstown Pk,8300,0,4358_7778195_2007008,4358_527 -4358_80724,205,4358_13590,Loughlinstown Pk,6254,0,4358_7778195_2007021,4358_524 -4358_80724,96,4358_13591,Loughlinstown Pk,8350,0,4358_7778195_2007009,4358_524 -4358_80724,205,4358_13593,Loughlinstown Pk,6265,0,4358_7778195_2007018,4358_524 -4358_80724,96,4358_13594,Loughlinstown Pk,8390,0,4358_7778195_2007015,4358_524 -4358_80724,205,4358_13595,Loughlinstown Pk,6340,0,4358_7778195_2007010,4358_524 -4358_80724,96,4358_13597,Loughlinstown Pk,8342,0,4358_7778195_2007006,4358_524 -4358_80724,205,4358_13598,Loughlinstown Pk,6293,0,4358_7778195_2007007,4358_524 -4358_80760,96,4358_136,Shaw street,9464,0,4358_7778195_9001003,4358_1 -4358_80757,205,4358_1360,Kilnamanagh Rd,2262,1,4358_7778195_5123004,4358_45 -4358_80724,96,4358_13600,Loughlinstown Pk,8379,0,4358_7778195_2007012,4358_524 -4358_80724,205,4358_13601,Loughlinstown Pk,6329,0,4358_7778195_2007009,4358_524 -4358_80724,96,4358_13603,Loughlinstown Pk,8320,0,4358_7778195_2007005,4358_524 -4358_80724,205,4358_13604,Loughlinstown Pk,6377,0,4358_7778195_2007020,4358_524 -4358_80724,96,4358_13605,Loughlinstown Pk,8747,0,4358_7778195_2007001,4358_525 -4358_80724,205,4358_13607,Loughlinstown Pk,6362,0,4358_7778195_2007014,4358_524 -4358_80724,96,4358_13608,Loughlinstown Pk,8280,0,4358_7778195_2007003,4358_525 -4358_80757,96,4358_1361,Kilnamanagh Rd,9842,1,4358_7778195_5123006,4358_45 -4358_80724,205,4358_13610,Loughlinstown Pk,6373,0,4358_7778195_2007016,4358_524 -4358_80724,96,4358_13611,Loughlinstown Pk,8293,0,4358_7778195_2007004,4358_525 -4358_80724,205,4358_13612,Loughlinstown Pk,6392,0,4358_7778195_2007017,4358_525 -4358_80724,205,4358_13614,Loughlinstown Pk,6295,0,4358_7778195_2007007,4358_525 -4358_80724,96,4358_13615,Loughlinstown Pk,8331,0,4358_7778195_2007007,4358_525 -4358_80724,205,4358_13617,Loughlinstown Pk,6273,0,4358_7778195_2007022,4358_525 -4358_80724,96,4358_13619,Loughlinstown Pk,8352,0,4358_7778195_2007009,4358_525 -4358_80724,205,4358_13620,Loughlinstown Pk,6281,0,4358_7778195_2007019,4358_525 -4358_80724,96,4358_13622,Loughlinstown Pk,8304,0,4358_7778195_2007008,4358_525 -4358_80724,205,4358_13623,Loughlinstown Pk,6364,0,4358_7778195_2007014,4358_525 -4358_80724,205,4358_13625,Loughlinstown Pk,6394,0,4358_7778195_2007017,4358_525 -4358_80724,96,4358_13626,Loughlinstown Pk,8394,0,4358_7778195_2007015,4358_525 -4358_80724,205,4358_13627,Loughlinstown Pk,6383,0,4358_7778195_2007027,4358_525 -4358_80724,96,4358_13629,Loughlinstown Pk,8383,0,4358_7778195_2007012,4358_525 -4358_80757,205,4358_1363,Kilnamanagh Rd,2230,1,4358_7778195_5123007,4358_46 -4358_80724,205,4358_13630,Loughlinstown Pk,6275,0,4358_7778195_2007022,4358_525 -4358_80724,96,4358_13632,Loughlinstown Pk,8367,0,4358_7778195_2007014,4358_525 -4358_80724,205,4358_13633,Loughlinstown Pk,6283,0,4358_7778195_2007019,4358_525 -4358_80724,205,4358_13635,Mountjoy Square,6257,1,4358_7778195_2007003,4358_528 -4358_80724,96,4358_13636,Mountjoy Square,8271,1,4358_7778195_2007003,4358_528 -4358_80724,205,4358_13637,Mountjoy Square,6286,1,4358_7778195_2007007,4358_528 -4358_80724,96,4358_13638,Mountjoy Square,8335,1,4358_7778195_2007006,4358_528 -4358_80724,205,4358_13639,Mountjoy Square,6306,1,4358_7778195_2007004,4358_528 -4358_80757,96,4358_1364,Kilnamanagh Rd,9776,1,4358_7778195_5123010,4358_45 -4358_80724,96,4358_13640,Mountjoy Square,8308,1,4358_7778195_2007002,4358_528 -4358_80724,205,4358_13641,Mountjoy Square,6285,1,4358_7778195_2007008,4358_528 -4358_80724,96,4358_13642,Mountjoy Square,8740,1,4358_7778195_2007001,4358_528 -4358_80724,205,4358_13643,Mountjoy Square,6260,1,4358_7778195_2007018,4358_528 -4358_80724,96,4358_13645,Mountjoy Square,8273,1,4358_7778195_2007003,4358_528 -4358_80724,205,4358_13646,Mountjoy Square,6335,1,4358_7778195_2007010,4358_528 -4358_80724,96,4358_13648,Mountjoy Square,8286,1,4358_7778195_2007004,4358_528 -4358_80724,205,4358_13649,Mountjoy Square,6312,1,4358_7778195_2007006,4358_528 -4358_80757,205,4358_1365,Kilnamanagh Rd,2133,1,4358_7778195_5123019,4358_45 -4358_80724,96,4358_13650,Mountjoy Square,8324,1,4358_7778195_2007007,4358_528 -4358_80724,205,4358_13652,Mountjoy Square,6299,1,4358_7778195_2007002,4358_528 -4358_80724,96,4358_13653,Mountjoy Square,8310,1,4358_7778195_2007002,4358_528 -4358_80724,205,4358_13654,Mountjoy Square,6308,1,4358_7778195_2007004,4358_528 -4358_80724,96,4358_13656,Mountjoy Square,8742,1,4358_7778195_2007001,4358_528 -4358_80724,205,4358_13657,Mountjoy Square,6348,1,4358_7778195_2007013,4358_528 -4358_80724,96,4358_13659,Mountjoy Square,8275,1,4358_7778195_2007003,4358_528 -4358_80724,205,4358_13660,Mountjoy Square,6368,1,4358_7778195_2007016,4358_528 -4358_80724,96,4358_13661,Mountjoy Square,8369,1,4358_7778195_2007011,4358_528 -4358_80724,205,4358_13663,Mountjoy Square,6387,1,4358_7778195_2007017,4358_528 -4358_80724,96,4358_13664,Mountjoy Square,8339,1,4358_7778195_2007006,4358_528 -4358_80724,205,4358_13666,Mountjoy Square,6314,1,4358_7778195_2007006,4358_531 -4358_80724,96,4358_13667,Mountjoy Square,8358,1,4358_7778195_2007010,4358_528 -4358_80724,205,4358_13668,Mountjoy Square,6301,1,4358_7778195_2007002,4358_528 -4358_80757,96,4358_1367,Kilnamanagh Rd,9935,1,4358_7778195_5123013,4358_46 -4358_80724,96,4358_13670,Mountjoy Square,8385,1,4358_7778195_2007013,4358_528 -4358_80724,205,4358_13671,Mountjoy Square,6276,1,4358_7778195_2007019,4358_528 -4358_80724,96,4358_13672,Mountjoy Square,8744,1,4358_7778195_2007001,4358_528 -4358_80724,205,4358_13674,Mountjoy Square,6350,1,4358_7778195_2007013,4358_528 -4358_80724,96,4358_13675,Mountjoy Square,8277,1,4358_7778195_2007003,4358_528 -4358_80724,205,4358_13677,Mountjoy Square,6370,1,4358_7778195_2007016,4358_531 -4358_80724,96,4358_13678,Mountjoy Square,8371,1,4358_7778195_2007011,4358_528 -4358_80724,205,4358_13679,Mountjoy Square,6389,1,4358_7778195_2007017,4358_528 -4358_80757,205,4358_1368,Kilnamanagh Rd,2285,1,4358_7778195_5123009,4358_45 -4358_80724,96,4358_13681,Mountjoy Square,8341,1,4358_7778195_2007006,4358_528 -4358_80724,205,4358_13682,Mountjoy Square,6316,1,4358_7778195_2007006,4358_528 -4358_80724,96,4358_13683,Mountjoy Square,8360,1,4358_7778195_2007010,4358_528 -4358_80724,205,4358_13685,Mountjoy Square,6303,1,4358_7778195_2007002,4358_528 -4358_80724,96,4358_13686,Mountjoy Square,8387,1,4358_7778195_2007013,4358_528 -4358_80724,205,4358_13688,Mountjoy Square,6278,1,4358_7778195_2007019,4358_531 -4358_80724,96,4358_13689,Mountjoy Square,8362,1,4358_7778195_2007014,4358_528 -4358_80757,96,4358_1369,Kilnamanagh Rd,9926,1,4358_7778195_5123009,4358_45 -4358_80724,205,4358_13690,Mountjoy Square,6352,1,4358_7778195_2007013,4358_528 -4358_80724,96,4358_13692,Mountjoy Square,8301,1,4358_7778195_2007008,4358_528 -4358_80724,205,4358_13693,Mountjoy Square,6255,1,4358_7778195_2007021,4358_528 -4358_80724,96,4358_13694,Mountjoy Square,8351,1,4358_7778195_2007009,4358_528 -4358_80724,205,4358_13696,Mountjoy Square,6266,1,4358_7778195_2007018,4358_528 -4358_80724,96,4358_13697,Parnell Square,8391,1,4358_7778195_2007015,4358_529 -4358_80724,205,4358_13699,Parnell Square,6341,1,4358_7778195_2007010,4358_530 -4358_80757,205,4358_1370,Kilnamanagh Rd,2122,1,4358_7778195_5123003,4358_45 -4358_80724,96,4358_13700,Parnell Square,8343,1,4358_7778195_2007006,4358_529 -4358_80724,205,4358_13701,Parnell Square,6294,1,4358_7778195_2007007,4358_529 -4358_80724,96,4358_13703,Parnell Square,8380,1,4358_7778195_2007012,4358_529 -4358_80724,205,4358_13704,Parnell Square,6330,1,4358_7778195_2007009,4358_529 -4358_80724,96,4358_13705,Parnell Square,8321,1,4358_7778195_2007005,4358_529 -4358_80724,205,4358_13707,Parnell Square,6378,1,4358_7778195_2007020,4358_529 -4358_80724,96,4358_13708,Parnell Square,8748,1,4358_7778195_2007001,4358_529 -4358_80724,205,4358_13710,Parnell Square,6363,1,4358_7778195_2007014,4358_530 -4358_80724,96,4358_13711,Parnell Square,8281,1,4358_7778195_2007003,4358_529 -4358_80724,205,4358_13712,Parnell Square,6393,1,4358_7778195_2007017,4358_529 -4358_80724,205,4358_13714,Parnell Square,6382,1,4358_7778195_2007027,4358_529 -4358_80724,96,4358_13715,Parnell Square,8332,1,4358_7778195_2007007,4358_530 -4358_80724,205,4358_13717,Parnell Square,6274,1,4358_7778195_2007022,4358_529 -4358_80724,96,4358_13718,Parnell Square,8353,1,4358_7778195_2007009,4358_529 -4358_80757,205,4358_1372,Kilnamanagh Rd,2201,1,4358_7778195_5123005,4358_45 -4358_80724,205,4358_13720,Parnell Square,6282,1,4358_7778195_2007019,4358_530 -4358_80724,96,4358_13721,Parnell Square,8305,1,4358_7778195_2007008,4358_529 -4358_80724,205,4358_13722,Parnell Square,6365,1,4358_7778195_2007014,4358_529 -4358_80724,205,4358_13724,Parnell Square,6395,1,4358_7778195_2007017,4358_529 -4358_80724,96,4358_13725,Parnell Square,8395,1,4358_7778195_2007015,4358_530 -4358_80724,96,4358_13726,Parnell Square,8384,1,4358_7778195_2007012,4358_529 -4358_80724,205,4358_13727,Parnell Square,6384,1,4358_7778195_2007027,4358_530 -4358_80725,205,4358_13729,Shankill,6304,0,4358_7778195_2007002,4358_533 -4358_80757,96,4358_1373,Kilnamanagh Rd,9832,1,4358_7778195_5123012,4358_45 -4358_80725,205,4358_13730,Shankill,124,0,4358_7778195_2007023,4358_533 -4358_80725,205,4358_13731,Shankill,127,0,4358_7778195_2007024,4358_533 -4358_80725,205,4358_13732,Shankill,108,0,4358_7778195_2007026,4358_533 -4358_80725,205,4358_13733,Mountjoy Square,6322,1,4358_7778195_2007009,4358_534 -4358_80725,205,4358_13734,Mountjoy Square,6346,1,4358_7778195_2007013,4358_534 -4358_80725,205,4358_13735,Mountjoy Square,6355,1,4358_7778195_2007014,4358_534 -4358_80725,205,4358_13736,Mountjoy Square,121,1,4358_7778195_2007015,4358_534 -4358_80725,205,4358_13737,Mountjoy Square,6385,1,4358_7778195_2007017,4358_534 -4358_80726,205,4358_13738,Dalkey,128,0,4358_7778195_2007025,4358_535 -4358_80726,205,4358_13739,Mountjoy Square,6400,1,4358_7778195_2007012,4358_536 -4358_80727,205,4358_13740,Mountjoy Square,6404,1,4358_7778195_2007001,4358_537 -4358_80727,96,4358_13741,Mountjoy Square,8738,1,4358_7778195_2007001,4358_537 -4358_80747,205,4358_13742,Kimmage,7689,0,4358_7778195_8083002,4358_539 -4358_80747,96,4358_13743,Kimmage,14147,0,4358_7778195_8083003,4358_539 -4358_80747,205,4358_13744,Kimmage,7589,0,4358_7778195_8083005,4358_539 -4358_80747,96,4358_13745,Kimmage,14295,0,4358_7778195_8083005,4358_539 -4358_80747,205,4358_13746,Kimmage,7575,0,4358_7778195_8083007,4358_540 -4358_80747,205,4358_13747,Kimmage,7553,0,4358_7778195_8083010,4358_539 -4358_80747,96,4358_13748,Kimmage,14305,0,4358_7778195_8083006,4358_539 -4358_80747,205,4358_13749,Kimmage,7713,0,4358_7778195_8083011,4358_540 -4358_80757,205,4358_1375,Kilnamanagh Rd,2178,1,4358_7778195_5123006,4358_46 -4358_80747,205,4358_13750,Kimmage,7767,0,4358_7778195_8083012,4358_539 -4358_80747,96,4358_13751,Kimmage,14264,0,4358_7778195_8083007,4358_539 -4358_80747,205,4358_13752,Kimmage,7701,0,4358_7778195_8083013,4358_540 -4358_80747,205,4358_13753,Kimmage,7776,0,4358_7778195_8083014,4358_539 -4358_80747,205,4358_13754,Kimmage,7566,0,4358_7778195_8083015,4358_539 -4358_80747,96,4358_13755,Kimmage,14315,0,4358_7778195_8083008,4358_540 -4358_80747,205,4358_13757,Kimmage,7723,0,4358_7778195_8083016,4358_539 -4358_80747,205,4358_13758,Kimmage,7644,0,4358_7778195_8083017,4358_539 -4358_80747,96,4358_13759,Kimmage,14279,0,4358_7778195_8083001,4358_540 -4358_80757,96,4358_1376,Kilnamanagh Rd,9798,1,4358_7778195_5123004,4358_45 -4358_80747,205,4358_13760,Kimmage,7745,0,4358_7778195_8083018,4358_539 -4358_80747,205,4358_13762,Kimmage,7619,0,4358_7778195_8083001,4358_539 -4358_80747,96,4358_13763,Kimmage,14289,0,4358_7778195_8083002,4358_540 -4358_80747,205,4358_13764,Kimmage,7759,0,4358_7778195_8083008,4358_539 -4358_80747,96,4358_13765,Kimmage,14228,0,4358_7778195_8083004,4358_539 -4358_80747,205,4358_13766,Kimmage,7543,0,4358_7778195_8083003,4358_540 -4358_80747,205,4358_13768,Kimmage,7675,0,4358_7778195_8083004,4358_539 -4358_80747,96,4358_13769,Kimmage,14149,0,4358_7778195_8083003,4358_539 -4358_80757,205,4358_1377,Kilnamanagh Rd,2322,1,4358_7778195_5123017,4358_45 -4358_80747,205,4358_13771,Kimmage,7740,0,4358_7778195_8083006,4358_539 -4358_80747,96,4358_13772,Kimmage,14297,0,4358_7778195_8083005,4358_539 -4358_80747,205,4358_13774,Kimmage,7753,0,4358_7778195_8083020,4358_539 -4358_80747,96,4358_13775,Kimmage,14331,0,4358_7778195_8083011,4358_539 -4358_80747,205,4358_13777,Kimmage,7708,0,4358_7778195_8083021,4358_539 -4358_80747,96,4358_13778,Kimmage,14266,0,4358_7778195_8083007,4358_539 -4358_80747,205,4358_13779,Kimmage,7691,0,4358_7778195_8083002,4358_539 -4358_80757,96,4358_1378,Kilnamanagh Rd,9946,1,4358_7778195_5123014,4358_45 -4358_80747,205,4358_13780,Kimmage,7591,0,4358_7778195_8083005,4358_539 -4358_80747,96,4358_13781,Kimmage,14345,0,4358_7778195_8083013,4358_539 -4358_80747,205,4358_13783,Kimmage,7577,0,4358_7778195_8083007,4358_539 -4358_80747,96,4358_13784,Kimmage,14317,0,4358_7778195_8083008,4358_539 -4358_80747,205,4358_13786,Kimmage,7715,0,4358_7778195_8083011,4358_539 -4358_80747,96,4358_13787,Kimmage,14326,0,4358_7778195_8083009,4358_539 -4358_80747,205,4358_13788,Kimmage,7769,0,4358_7778195_8083012,4358_539 -4358_80747,205,4358_13789,Kimmage,7703,0,4358_7778195_8083013,4358_539 -4358_80747,96,4358_13790,Kimmage,14353,0,4358_7778195_8083014,4358_539 -4358_80747,205,4358_13792,Kimmage,7778,0,4358_7778195_8083014,4358_539 -4358_80747,96,4358_13793,Kimmage,14291,0,4358_7778195_8083002,4358_539 -4358_80747,205,4358_13795,Kimmage,7568,0,4358_7778195_8083015,4358_539 -4358_80747,96,4358_13796,Kimmage,14244,0,4358_7778195_8083010,4358_539 -4358_80747,205,4358_13797,Kimmage,7725,0,4358_7778195_8083016,4358_539 -4358_80747,205,4358_13798,Kimmage,7646,0,4358_7778195_8083017,4358_539 -4358_80747,96,4358_13799,Kimmage,14151,0,4358_7778195_8083003,4358_539 -4358_80760,205,4358_138,Shaw street,3149,0,4358_7778195_9001004,4358_2 -4358_80757,205,4358_1380,Kilnamanagh Rd,2095,1,4358_7778195_5123016,4358_45 -4358_80747,205,4358_13801,Kimmage,7747,0,4358_7778195_8083018,4358_539 -4358_80747,96,4358_13802,Kimmage,14338,0,4358_7778195_8083012,4358_539 -4358_80747,205,4358_13805,Kimmage,7761,0,4358_7778195_8083008,4358_539 -4358_80747,96,4358_13806,Kimmage,14333,0,4358_7778195_8083011,4358_539 -4358_80747,205,4358_13807,Kimmage,7545,0,4358_7778195_8083003,4358_539 -4358_80747,205,4358_13808,Kimmage,7742,0,4358_7778195_8083006,4358_539 -4358_80747,96,4358_13809,Kimmage,14309,0,4358_7778195_8083006,4358_539 -4358_80757,96,4358_1381,Kilnamanagh Rd,9916,1,4358_7778195_5123007,4358_45 -4358_80747,205,4358_13811,Kimmage,7755,0,4358_7778195_8083020,4358_539 -4358_80747,96,4358_13813,Kimmage,14268,0,4358_7778195_8083007,4358_539 -4358_80747,205,4358_13815,Kimmage,7710,0,4358_7778195_8083021,4358_539 -4358_80747,96,4358_13816,Kimmage,14144,0,4358_7778195_8083016,4358_539 -4358_80747,205,4358_13817,Kimmage,7693,0,4358_7778195_8083002,4358_539 -4358_80747,205,4358_13818,Kimmage,7593,0,4358_7778195_8083005,4358_539 -4358_80757,205,4358_1382,Kilnamanagh Rd,2276,1,4358_7778195_5123008,4358_45 -4358_80747,96,4358_13820,Kimmage,14319,0,4358_7778195_8083008,4358_539 -4358_80747,205,4358_13821,Kimmage,7579,0,4358_7778195_8083007,4358_539 -4358_80747,96,4358_13822,Kimmage,14283,0,4358_7778195_8083001,4358_539 -4358_80747,205,4358_13825,Kimmage,7717,0,4358_7778195_8083011,4358_539 -4358_80747,96,4358_13826,Kimmage,14174,0,4358_7778195_8083015,4358_539 -4358_80747,205,4358_13827,Kimmage,7771,0,4358_7778195_8083012,4358_539 -4358_80747,205,4358_13828,Kimmage,7705,0,4358_7778195_8083013,4358_539 -4358_80747,96,4358_13830,Kimmage,14355,0,4358_7778195_8083014,4358_539 -4358_80747,205,4358_13831,Kimmage,7780,0,4358_7778195_8083014,4358_539 -4358_80747,96,4358_13832,Kimmage,14293,0,4358_7778195_8083002,4358_539 -4358_80747,205,4358_13835,Kimmage,7595,0,4358_7778195_8083023,4358_539 -4358_80747,96,4358_13836,Kimmage,14246,0,4358_7778195_8083010,4358_539 -4358_80747,205,4358_13837,Kimmage,7570,0,4358_7778195_8083015,4358_539 -4358_80747,205,4358_13838,Kimmage,7727,0,4358_7778195_8083016,4358_539 -4358_80747,96,4358_13839,Kimmage,14153,0,4358_7778195_8083003,4358_539 -4358_80757,205,4358_1384,Kilnamanagh Rd,2307,1,4358_7778195_5123012,4358_45 -4358_80747,205,4358_13841,Kimmage,7648,0,4358_7778195_8083017,4358_539 -4358_80747,96,4358_13843,Kimmage,14340,0,4358_7778195_8083012,4358_539 -4358_80747,205,4358_13845,Kimmage,7623,0,4358_7778195_8083001,4358_539 -4358_80747,96,4358_13846,Kimmage,14335,0,4358_7778195_8083011,4358_539 -4358_80747,205,4358_13847,Kimmage,7763,0,4358_7778195_8083008,4358_539 -4358_80747,205,4358_13848,Kimmage,7547,0,4358_7778195_8083003,4358_539 -4358_80747,96,4358_13849,Kimmage,14311,0,4358_7778195_8083006,4358_539 -4358_80757,96,4358_1385,Kilnamanagh Rd,9940,1,4358_7778195_5123016,4358_45 -4358_80747,205,4358_13851,Kimmage,7744,0,4358_7778195_8083006,4358_539 -4358_80747,96,4358_13853,Kimmage,14270,0,4358_7778195_8083007,4358_539 -4358_80747,205,4358_13854,Kimmage,7757,0,4358_7778195_8083020,4358_539 -4358_80747,205,4358_13856,Kimmage,7610,0,4358_7778195_8083009,4358_539 -4358_80747,96,4358_13857,Kimmage,14146,0,4358_7778195_8083016,4358_539 -4358_80747,205,4358_13858,Kimmage,7712,0,4358_7778195_8083021,4358_539 -4358_80747,205,4358_13859,Kimmage,7695,0,4358_7778195_8083002,4358_539 -4358_80757,205,4358_1386,Kilnamanagh Rd,2254,1,4358_7778195_5123002,4358_45 -4358_80747,96,4358_13861,Kimmage,14321,0,4358_7778195_8083008,4358_540 -4358_80747,96,4358_13863,Kimmage,14285,0,4358_7778195_8083001,4358_539 -4358_80747,205,4358_13864,Kimmage,7615,0,4358_7778195_8083022,4358_539 -4358_80747,96,4358_13866,Kimmage,14176,0,4358_7778195_8083015,4358_539 -4358_80747,96,4358_13867,Kimmage,14357,0,4358_7778195_8083014,4358_539 -4358_80747,205,4358_13869,Kimmage,7773,0,4358_7778195_8083012,4358_540 -4358_80747,205,4358_13871,Kimmage,7707,0,4358_7778195_8083013,4358_539 -4358_80747,96,4358_13872,Kimmage,14248,0,4358_7778195_8083010,4358_539 -4358_80747,205,4358_13873,Kimmage,7572,0,4358_7778195_8083015,4358_539 -4358_80747,96,4358_13874,Kimmage,14342,0,4358_7778195_8083012,4358_540 -4358_80747,205,4358_13876,Kimmage,7650,0,4358_7778195_8083017,4358_539 -4358_80747,96,4358_13878,Kimmage,14313,0,4358_7778195_8083006,4358_539 -4358_80757,96,4358_1388,Kilnamanagh Rd,9844,1,4358_7778195_5123006,4358_45 -4358_80747,205,4358_13880,Kimmage,7765,0,4358_7778195_8083008,4358_539 -4358_80747,96,4358_13881,Kimmage,14272,0,4358_7778195_8083007,4358_540 -4358_80747,205,4358_13883,Kimmage,7612,0,4358_7778195_8083009,4358_539 -4358_80747,96,4358_13884,Kimmage,14323,0,4358_7778195_8083008,4358_539 -4358_80747,205,4358_13886,Kimmage,7617,0,4358_7778195_8083022,4358_539 -4358_80747,96,4358_13887,Kimmage,14287,0,4358_7778195_8083001,4358_540 -4358_80747,205,4358_13889,Kimmage,7561,0,4358_7778195_8083010,4358_539 -4358_80757,205,4358_1389,Kilnamanagh Rd,2185,1,4358_7778195_5123018,4358_45 -4358_80747,96,4358_13890,Kimmage,14236,0,4358_7778195_8083004,4358_539 -4358_80747,205,4358_13891,Kimmage,7599,0,4358_7778195_8083023,4358_539 -4358_80747,96,4358_13892,Bachelors Walk,14250,0,4358_7778195_8083010,4358_541 -4358_80747,205,4358_13894,Kimmage,7574,0,4358_7778195_8083015,4358_539 -4358_80747,96,4358_13895,Bachelors Walk,14344,0,4358_7778195_8083012,4358_541 -4358_80747,205,4358_13897,Harristown,7618,1,4358_7778195_8083001,4358_543 -4358_80747,96,4358_13898,Harristown,14278,1,4358_7778195_8083001,4358_543 -4358_80747,205,4358_13899,Harristown,7542,1,4358_7778195_8083003,4358_543 -4358_80760,96,4358_139,Shaw street,9502,0,4358_7778195_9001004,4358_1 -4358_80747,96,4358_13900,Harristown,14288,1,4358_7778195_8083002,4358_543 -4358_80747,205,4358_13901,Harristown,7674,1,4358_7778195_8083004,4358_543 -4358_80747,205,4358_13902,Harristown,7758,1,4358_7778195_8083008,4358_546 -4358_80747,96,4358_13903,Harristown,14227,1,4358_7778195_8083004,4358_543 -4358_80747,205,4358_13904,Harristown,7739,1,4358_7778195_8083006,4358_545 -4358_80747,205,4358_13905,Harristown,7605,1,4358_7778195_8083009,4358_543 -4358_80747,96,4358_13906,Harristown,14148,1,4358_7778195_8083003,4358_543 -4358_80747,205,4358_13907,Harristown,7690,1,4358_7778195_8083002,4358_543 -4358_80747,96,4358_13908,Harristown,14296,1,4358_7778195_8083005,4358_543 -4358_80747,205,4358_13909,Harristown,7590,1,4358_7778195_8083005,4358_543 -4358_80757,96,4358_1391,Kilnamanagh Rd,9928,1,4358_7778195_5123015,4358_45 -4358_80747,96,4358_13910,Harristown,14306,1,4358_7778195_8083006,4358_543 -4358_80747,205,4358_13912,Harristown,7576,1,4358_7778195_8083007,4358_545 -4358_80747,205,4358_13913,Harristown,7554,1,4358_7778195_8083010,4358_543 -4358_80747,96,4358_13915,Harristown,14265,1,4358_7778195_8083007,4358_543 -4358_80747,205,4358_13916,Harristown,7714,1,4358_7778195_8083011,4358_543 -4358_80747,96,4358_13917,Harristown,14316,1,4358_7778195_8083008,4358_543 -4358_80747,205,4358_13919,Harristown,7768,1,4358_7778195_8083012,4358_543 -4358_80757,205,4358_1392,Kilnamanagh Rd,2264,1,4358_7778195_5123004,4358_46 -4358_80747,96,4358_13921,Harristown,14280,1,4358_7778195_8083001,4358_543 -4358_80747,205,4358_13922,Harristown,7702,1,4358_7778195_8083013,4358_545 -4358_80747,205,4358_13923,Harristown,7777,1,4358_7778195_8083014,4358_543 -4358_80747,96,4358_13924,Harristown,14325,1,4358_7778195_8083009,4358_543 -4358_80747,205,4358_13925,Harristown,7567,1,4358_7778195_8083015,4358_543 -4358_80747,96,4358_13927,Harristown,14229,1,4358_7778195_8083004,4358_543 -4358_80747,205,4358_13928,Harristown,7724,1,4358_7778195_8083016,4358_543 -4358_80747,205,4358_13929,Harristown,7645,1,4358_7778195_8083017,4358_543 -4358_80747,96,4358_13930,Harristown,14243,1,4358_7778195_8083010,4358_545 -4358_80747,205,4358_13932,Harristown,7746,1,4358_7778195_8083018,4358_543 -4358_80747,96,4358_13933,Harristown,14150,1,4358_7778195_8083003,4358_543 -4358_80747,205,4358_13934,Harristown,7760,1,4358_7778195_8083008,4358_543 -4358_80747,96,4358_13936,Harristown,14298,1,4358_7778195_8083005,4358_543 -4358_80747,205,4358_13937,Harristown,7544,1,4358_7778195_8083003,4358_543 -4358_80747,205,4358_13938,Harristown,7741,1,4358_7778195_8083006,4358_543 -4358_80757,205,4358_1394,Kilnamanagh Rd,2232,1,4358_7778195_5123007,4358_45 -4358_80747,96,4358_13940,Harristown,14332,1,4358_7778195_8083011,4358_545 -4358_80747,205,4358_13941,Harristown,7754,1,4358_7778195_8083020,4358_543 -4358_80747,96,4358_13942,Harristown,14308,1,4358_7778195_8083006,4358_543 -4358_80747,205,4358_13944,Harristown,7709,1,4358_7778195_8083021,4358_543 -4358_80747,205,4358_13945,Harristown,7692,1,4358_7778195_8083002,4358_543 -4358_80747,205,4358_13947,Harristown,7592,1,4358_7778195_8083005,4358_543 -4358_80747,96,4358_13948,Harristown,14318,1,4358_7778195_8083008,4358_545 -4358_80747,205,4358_13949,Harristown,7578,1,4358_7778195_8083007,4358_543 -4358_80757,96,4358_1395,Kilnamanagh Rd,9778,1,4358_7778195_5123010,4358_45 -4358_80747,96,4358_13951,Harristown,14282,1,4358_7778195_8083001,4358_543 -4358_80747,205,4358_13952,Harristown,7716,1,4358_7778195_8083011,4358_543 -4358_80747,96,4358_13953,Harristown,14173,1,4358_7778195_8083015,4358_543 -4358_80747,205,4358_13955,Harristown,7770,1,4358_7778195_8083012,4358_543 -4358_80747,96,4358_13956,Harristown,14354,1,4358_7778195_8083014,4358_543 -4358_80747,205,4358_13958,Harristown,7704,1,4358_7778195_8083013,4358_545 -4358_80747,205,4358_13959,Harristown,7779,1,4358_7778195_8083014,4358_543 -4358_80747,96,4358_13960,Harristown,14292,1,4358_7778195_8083002,4358_543 -4358_80747,205,4358_13962,Harristown,7569,1,4358_7778195_8083015,4358_543 -4358_80747,96,4358_13963,Harristown,14245,1,4358_7778195_8083010,4358_543 -4358_80747,205,4358_13965,Harristown,7726,1,4358_7778195_8083016,4358_543 -4358_80747,96,4358_13966,Harristown,14152,1,4358_7778195_8083003,4358_543 -4358_80747,205,4358_13967,Harristown,7647,1,4358_7778195_8083017,4358_545 -4358_80747,205,4358_13969,Harristown,7748,1,4358_7778195_8083018,4358_543 -4358_80757,205,4358_1397,Kilnamanagh Rd,2287,1,4358_7778195_5123009,4358_46 -4358_80747,96,4358_13971,Harristown,14339,1,4358_7778195_8083012,4358_543 -4358_80747,205,4358_13972,Harristown,7762,1,4358_7778195_8083008,4358_543 -4358_80747,96,4358_13974,Harristown,14334,1,4358_7778195_8083011,4358_543 -4358_80747,205,4358_13975,Harristown,7546,1,4358_7778195_8083003,4358_543 -4358_80747,96,4358_13976,Harristown,14310,1,4358_7778195_8083006,4358_543 -4358_80747,205,4358_13978,Harristown,7743,1,4358_7778195_8083006,4358_545 -4358_80747,205,4358_13979,Harristown,7756,1,4358_7778195_8083020,4358_543 -4358_80757,96,4358_1398,Kilnamanagh Rd,9937,1,4358_7778195_5123013,4358_45 -4358_80747,96,4358_13981,Harristown,14269,1,4358_7778195_8083007,4358_543 -4358_80747,205,4358_13982,Harristown,7711,1,4358_7778195_8083021,4358_543 -4358_80747,96,4358_13983,Harristown,14145,1,4358_7778195_8083016,4358_543 -4358_80747,205,4358_13985,Harristown,7694,1,4358_7778195_8083002,4358_543 -4358_80747,205,4358_13986,Harristown,7594,1,4358_7778195_8083005,4358_543 -4358_80747,96,4358_13987,Harristown,14320,1,4358_7778195_8083008,4358_545 -4358_80747,205,4358_13989,Harristown,7614,1,4358_7778195_8083022,4358_543 -4358_80757,205,4358_1399,Kilnamanagh Rd,2203,1,4358_7778195_5123005,4358_45 -4358_80747,96,4358_13991,Harristown,14284,1,4358_7778195_8083001,4358_543 -4358_80747,205,4358_13992,Harristown,7558,1,4358_7778195_8083010,4358_543 -4358_80747,96,4358_13994,Harristown,14175,1,4358_7778195_8083015,4358_543 -4358_80747,205,4358_13995,Harristown,7718,1,4358_7778195_8083011,4358_543 -4358_80747,96,4358_13996,Harristown,14356,1,4358_7778195_8083014,4358_543 -4358_80747,205,4358_13997,Harristown,7772,1,4358_7778195_8083012,4358_545 -4358_80747,205,4358_13999,Harristown,7706,1,4358_7778195_8083013,4358_543 -4358_80760,205,4358_14,Shaw street,1652,0,4358_7778195_9001003,4358_1 -4358_80760,205,4358_140,Shaw street,1855,0,4358_7778195_9001006,4358_1 -4358_80757,96,4358_1400,Kilnamanagh Rd,9800,1,4358_7778195_5123004,4358_45 -4358_80747,96,4358_14001,Harristown,14294,1,4358_7778195_8083002,4358_543 -4358_80747,205,4358_14002,Harristown,7781,1,4358_7778195_8083014,4358_543 -4358_80747,205,4358_14003,Harristown,7673,1,4358_7778195_8083019,4358_543 -4358_80747,96,4358_14004,Harristown,14247,1,4358_7778195_8083010,4358_543 -4358_80747,205,4358_14006,Harristown,7596,1,4358_7778195_8083023,4358_543 -4358_80747,96,4358_14008,Harristown,14154,1,4358_7778195_8083003,4358_543 -4358_80747,205,4358_14009,Harristown,7571,1,4358_7778195_8083015,4358_545 -4358_80747,205,4358_14010,Harristown,7728,1,4358_7778195_8083016,4358_543 -4358_80747,96,4358_14011,Harristown,14341,1,4358_7778195_8083012,4358_545 -4358_80747,205,4358_14014,Harristown,7750,1,4358_7778195_8083018,4358_543 -4358_80747,96,4358_14015,Harristown,14336,1,4358_7778195_8083011,4358_545 -4358_80747,96,4358_14016,Harristown,14312,1,4358_7778195_8083006,4358_543 -4358_80747,205,4358_14017,Harristown,7764,1,4358_7778195_8083008,4358_545 -4358_80747,205,4358_14019,Harristown,7548,1,4358_7778195_8083003,4358_543 -4358_80757,205,4358_1402,Kilnamanagh Rd,2324,1,4358_7778195_5123017,4358_45 -4358_80747,96,4358_14021,Harristown,14350,1,4358_7778195_8083013,4358_543 -4358_80747,205,4358_14023,Harristown,7696,1,4358_7778195_8083002,4358_543 -4358_80747,96,4358_14024,Harristown,14322,1,4358_7778195_8083008,4358_545 -4358_80747,205,4358_14025,Harristown,7616,1,4358_7778195_8083022,4358_543 -4358_80747,96,4358_14027,Harristown,14177,1,4358_7778195_8083015,4358_543 -4358_80747,96,4358_14028,Harristown,14235,1,4358_7778195_8083004,4358_543 -4358_80757,96,4358_1403,Kilnamanagh Rd,9948,1,4358_7778195_5123014,4358_45 -4358_80747,205,4358_14030,Harristown,7774,1,4358_7778195_8083012,4358_545 -4358_80747,205,4358_14031,Harristown,7598,1,4358_7778195_8083023,4358_543 -4358_80747,96,4358_14033,Harristown,14343,1,4358_7778195_8083012,4358_543 -4358_80747,205,4358_14034,Harristown,7651,1,4358_7778195_8083017,4358_543 -4358_80747,96,4358_14036,Harristown,14304,1,4358_7778195_8083005,4358_545 -4358_80747,205,4358_14038,Harristown,7752,1,4358_7778195_8083018,4358_543 -4358_80747,96,4358_14039,Harristown,14273,1,4358_7778195_8083007,4358_543 -4358_80757,205,4358_1404,Kilnamanagh Rd,2097,1,4358_7778195_5123016,4358_45 -4358_80747,96,4358_14040,Harristown,14352,1,4358_7778195_8083013,4358_543 -4358_80747,205,4358_14041,Harristown,7613,1,4358_7778195_8083009,4358_545 -4358_80747,205,4358_14043,Harristown,7698,1,4358_7778195_8083002,4358_543 -4358_80747,96,4358_14044,Westmoreland St,14324,1,4358_7778195_8083008,4358_547 -4358_80748,205,4358_14046,Kimmage,7606,0,4358_7778195_8083009,4358_549 -4358_80748,96,4358_14047,Kimmage,14307,0,4358_7778195_8083006,4358_549 -4358_80748,205,4358_14049,Kimmage,7555,0,4358_7778195_8083010,4358_549 -4358_80748,96,4358_14050,Kimmage,14281,0,4358_7778195_8083001,4358_549 -4358_80748,205,4358_14052,Kimmage,7670,0,4358_7778195_8083019,4358_549 -4358_80748,96,4358_14053,Kimmage,14230,0,4358_7778195_8083004,4358_549 -4358_80748,205,4358_14055,Kimmage,7621,0,4358_7778195_8083001,4358_549 -4358_80748,96,4358_14056,Kimmage,14299,0,4358_7778195_8083005,4358_549 -4358_80748,205,4358_14058,Kimmage,7608,0,4358_7778195_8083009,4358_549 -4358_80748,96,4358_14059,Kimmage,14347,0,4358_7778195_8083013,4358_549 -4358_80757,96,4358_1406,Kilnamanagh Rd,9942,1,4358_7778195_5123016,4358_45 -4358_80748,205,4358_14061,Kimmage,7557,0,4358_7778195_8083010,4358_549 -4358_80748,96,4358_14062,Kimmage,14328,0,4358_7778195_8083009,4358_549 -4358_80748,205,4358_14064,Kimmage,7672,0,4358_7778195_8083019,4358_549 -4358_80748,96,4358_14065,Kimmage,14232,0,4358_7778195_8083004,4358_549 -4358_80748,205,4358_14067,Kimmage,7749,0,4358_7778195_8083018,4358_549 -4358_80748,96,4358_14068,Kimmage,14301,0,4358_7778195_8083005,4358_549 -4358_80757,205,4358_1407,Kilnamanagh Rd,2309,1,4358_7778195_5123012,4358_45 -4358_80748,96,4358_14070,Kimmage,14349,0,4358_7778195_8083013,4358_549 -4358_80748,96,4358_14072,Kimmage,14330,0,4358_7778195_8083009,4358_549 -4358_80748,205,4358_14073,Kimmage,7559,0,4358_7778195_8083010,4358_549 -4358_80748,96,4358_14075,Kimmage,14234,0,4358_7778195_8083004,4358_549 -4358_80748,205,4358_14077,Kimmage,7597,0,4358_7778195_8083023,4358_549 -4358_80748,96,4358_14078,Kimmage,14303,0,4358_7778195_8083005,4358_549 -4358_80748,205,4358_14079,Kimmage,7751,0,4358_7778195_8083018,4358_549 -4358_80748,96,4358_14081,Kimmage,14351,0,4358_7778195_8083013,4358_549 -4358_80748,205,4358_14082,Kimmage,7697,0,4358_7778195_8083002,4358_549 -4358_80748,96,4358_14084,Kimmage,14178,0,4358_7778195_8083015,4358_549 -4358_80748,205,4358_14085,Kimmage,7775,0,4358_7778195_8083012,4358_549 -4358_80748,205,4358_14088,Harristown,7669,1,4358_7778195_8083019,4358_552 -4358_80748,96,4358_14089,Harristown,14290,1,4358_7778195_8083002,4358_552 -4358_80757,96,4358_1409,Kilnamanagh Rd,9952,1,4358_7778195_5123017,4358_46 -4358_80748,205,4358_14091,Harristown,7620,1,4358_7778195_8083001,4358_552 -4358_80748,96,4358_14092,Harristown,14337,1,4358_7778195_8083012,4358_552 -4358_80748,205,4358_14093,Harristown,7607,1,4358_7778195_8083009,4358_552 -4358_80748,96,4358_14094,Harristown,14267,1,4358_7778195_8083007,4358_552 -4358_80748,96,4358_14096,Harristown,14346,1,4358_7778195_8083013,4358_552 -4358_80748,205,4358_14097,Harristown,7556,1,4358_7778195_8083010,4358_552 -4358_80748,96,4358_14099,Harristown,14327,1,4358_7778195_8083009,4358_552 -4358_80757,205,4358_1410,Kilnamanagh Rd,2266,1,4358_7778195_5123004,4358_45 -4358_80748,205,4358_14100,Harristown,7671,1,4358_7778195_8083019,4358_552 -4358_80748,96,4358_14101,Harristown,14231,1,4358_7778195_8083004,4358_552 -4358_80748,205,4358_14103,Harristown,7622,1,4358_7778195_8083001,4358_552 -4358_80748,96,4358_14104,Harristown,14300,1,4358_7778195_8083005,4358_552 -4358_80748,205,4358_14106,Harristown,7609,1,4358_7778195_8083009,4358_552 -4358_80748,96,4358_14107,Harristown,14348,1,4358_7778195_8083013,4358_552 -4358_80748,205,4358_14109,Harristown,7580,1,4358_7778195_8083007,4358_552 -4358_80757,96,4358_1411,Kilnamanagh Rd,9930,1,4358_7778195_5123015,4358_45 -4358_80748,96,4358_14111,Harristown,14329,1,4358_7778195_8083009,4358_552 -4358_80748,96,4358_14112,Harristown,14233,1,4358_7778195_8083004,4358_552 -4358_80748,205,4358_14114,Harristown,7649,1,4358_7778195_8083017,4358_552 -4358_80748,96,4358_14116,Harristown,14302,1,4358_7778195_8083005,4358_553 -4358_80748,96,4358_14117,Harristown,14271,1,4358_7778195_8083007,4358_552 -4358_80748,205,4358_14119,Harristown,7611,1,4358_7778195_8083009,4358_552 -4358_80757,205,4358_1412,Kilnamanagh Rd,2289,1,4358_7778195_5123009,4358_45 -4358_80748,96,4358_14120,Harristown,14286,1,4358_7778195_8083001,4358_552 -4358_80748,205,4358_14122,Harristown,7560,1,4358_7778195_8083010,4358_552 -4358_80748,96,4358_14123,Harristown,14249,1,4358_7778195_8083010,4358_552 -4358_80748,205,4358_14124,Harristown,7573,1,4358_7778195_8083015,4358_552 -4358_80748,96,4358_14126,Harristown,14314,1,4358_7778195_8083006,4358_552 -4358_80748,205,4358_14128,Harristown,7766,1,4358_7778195_8083008,4358_552 -4358_80750,205,4358_14129,Newcastle,149,0,4358_7778195_1084001,4358_558 -4358_80750,96,4358_14130,Newcastle,8430,0,4358_7778195_1084001,4358_554 -4358_80750,205,4358_14131,Newcastle,151,0,4358_7778195_1084001,4358_554 -4358_80750,205,4358_14132,Newcastle,184,0,4358_7778195_1084007,4358_558 -4358_80750,96,4358_14133,Newcastle,8441,0,4358_7778195_1084002,4358_554 -4358_80750,205,4358_14134,Newcastle,162,0,4358_7778195_1084003,4358_554 -4358_80750,96,4358_14135,Newcastle,8452,0,4358_7778195_1084003,4358_554 -4358_80750,205,4358_14136,Newcastle,175,0,4358_7778195_1084006,4358_556 -4358_80750,205,4358_14137,Newcastle,186,0,4358_7778195_1084007,4358_554 -4358_80750,96,4358_14139,Newcastle,8432,0,4358_7778195_1084001,4358_555 -4358_80757,96,4358_1414,Kilnamanagh Rd,9780,1,4358_7778195_5123010,4358_45 -4358_80750,205,4358_14140,Newcastle,153,0,4358_7778195_1084001,4358_555 -4358_80750,96,4358_14141,Newcastle,8443,0,4358_7778195_1084002,4358_554 -4358_80750,205,4358_14143,Newcastle,164,0,4358_7778195_1084003,4358_554 -4358_80750,96,4358_14144,Newcastle,8454,0,4358_7778195_1084003,4358_555 -4358_80750,205,4358_14146,Newcastle,177,0,4358_7778195_1084006,4358_554 -4358_80750,96,4358_14147,Newcastle,8434,0,4358_7778195_1084001,4358_554 -4358_80750,205,4358_14148,Newcastle,188,0,4358_7778195_1084007,4358_555 -4358_80757,205,4358_1415,Kilnamanagh Rd,2205,1,4358_7778195_5123005,4358_45 -4358_80750,205,4358_14150,Newcastle,6085,0,4358_7778195_1821202,4358_554 -4358_80750,205,4358_14151,Newcastle,155,0,4358_7778195_1084001,4358_554 -4358_80750,96,4358_14152,Newcastle,8445,0,4358_7778195_1084002,4358_554 -4358_80750,205,4358_14154,Newcastle,166,0,4358_7778195_1084003,4358_554 -4358_80750,96,4358_14155,Newcastle,8456,0,4358_7778195_1084003,4358_555 -4358_80750,205,4358_14157,Newcastle,179,0,4358_7778195_1084006,4358_554 -4358_80750,96,4358_14158,Newcastle,8436,0,4358_7778195_1084001,4358_554 -4358_80750,205,4358_14160,Newcastle,190,0,4358_7778195_1084007,4358_555 -4358_80750,96,4358_14161,Newcastle,8447,0,4358_7778195_1084002,4358_555 -4358_80750,205,4358_14163,Newcastle,157,0,4358_7778195_1084001,4358_554 -4358_80750,205,4358_14164,Newcastle,168,0,4358_7778195_1084003,4358_555 -4358_80750,96,4358_14165,Newcastle,8458,0,4358_7778195_1084003,4358_554 -4358_80750,205,4358_14167,Newcastle,181,0,4358_7778195_1084006,4358_554 -4358_80750,96,4358_14168,Newcastle,8438,0,4358_7778195_1084001,4358_554 -4358_80757,96,4358_1417,Kilnamanagh Rd,9939,1,4358_7778195_5123013,4358_46 -4358_80750,205,4358_14170,Newcastle,192,0,4358_7778195_1084007,4358_554 -4358_80750,96,4358_14171,Newcastle,8449,0,4358_7778195_1084002,4358_554 -4358_80750,205,4358_14173,Newcastle,170,0,4358_7778195_1084003,4358_554 -4358_80750,96,4358_14174,Newcastle,8460,0,4358_7778195_1084003,4358_554 -4358_80750,205,4358_14176,Newcastle,183,0,4358_7778195_1084006,4358_557 -4358_80750,205,4358_14177,Blackrock,150,1,4358_7778195_1084001,4358_559 -4358_80750,96,4358_14178,Blackrock,8429,1,4358_7778195_1084001,4358_559 -4358_80750,205,4358_14179,Blackrock,161,1,4358_7778195_1084003,4358_559 -4358_80757,205,4358_1418,Kilnamanagh Rd,2326,1,4358_7778195_5123017,4358_45 -4358_80750,96,4358_14180,Blackrock,8440,1,4358_7778195_1084002,4358_559 -4358_80750,205,4358_14181,Blackrock,174,1,4358_7778195_1084006,4358_562 -4358_80750,96,4358_14182,Blackrock,8451,1,4358_7778195_1084003,4358_559 -4358_80750,205,4358_14183,Blackrock,6089,1,4358_7778195_1821102,4358_562 -4358_80750,205,4358_14184,Blackrock,185,1,4358_7778195_1084007,4358_559 -4358_80750,96,4358_14185,Blackrock,8431,1,4358_7778195_1084001,4358_562 -4358_80750,205,4358_14187,Blackrock,152,1,4358_7778195_1084001,4358_559 -4358_80750,205,4358_14188,Blackrock,163,1,4358_7778195_1084003,4358_559 -4358_80750,96,4358_14189,Blackrock,8442,1,4358_7778195_1084002,4358_560 -4358_80757,96,4358_1419,Kilnamanagh Rd,9802,1,4358_7778195_5123004,4358_45 -4358_80750,96,4358_14191,Blackrock,8453,1,4358_7778195_1084003,4358_562 -4358_80750,205,4358_14192,Blackrock,176,1,4358_7778195_1084006,4358_564 -4358_80750,205,4358_14194,Blackrock,187,1,4358_7778195_1084007,4358_559 -4358_80750,96,4358_14195,Blackrock,8433,1,4358_7778195_1084001,4358_559 -4358_80750,205,4358_14197,Blackrock,154,1,4358_7778195_1084001,4358_562 -4358_80750,96,4358_14198,Blackrock,8444,1,4358_7778195_1084002,4358_559 -4358_80760,96,4358_142,Shaw street,9334,0,4358_7778195_9001002,4358_1 -4358_80757,205,4358_1420,Kilnamanagh Rd,2099,1,4358_7778195_5123016,4358_45 -4358_80750,205,4358_14200,Blackrock,165,1,4358_7778195_1084003,4358_559 -4358_80750,96,4358_14201,Blackrock,8455,1,4358_7778195_1084003,4358_562 -4358_80750,205,4358_14203,Blackrock,178,1,4358_7778195_1084006,4358_562 -4358_80750,96,4358_14204,Blackrock,8435,1,4358_7778195_1084001,4358_559 -4358_80750,205,4358_14205,Blackrock,189,1,4358_7778195_1084007,4358_559 -4358_80750,205,4358_14207,Bray Station,6086,1,4358_7778195_1821202,4358_561 -4358_80750,96,4358_14208,Blackrock,8446,1,4358_7778195_1084002,4358_559 -4358_80750,205,4358_14209,Blackrock,156,1,4358_7778195_1084001,4358_562 -4358_80757,96,4358_1421,Kilnamanagh Rd,9950,1,4358_7778195_5123014,4358_46 -4358_80750,205,4358_14211,Blackrock,167,1,4358_7778195_1084003,4358_559 -4358_80750,96,4358_14213,Blackrock,8457,1,4358_7778195_1084003,4358_559 -4358_80750,205,4358_14214,Blackrock,180,1,4358_7778195_1084006,4358_559 -4358_80750,96,4358_14215,Blackrock,8437,1,4358_7778195_1084001,4358_562 -4358_80750,205,4358_14217,Blackrock,191,1,4358_7778195_1084007,4358_559 -4358_80750,96,4358_14218,Blackrock,8448,1,4358_7778195_1084002,4358_559 -4358_80750,205,4358_14220,Blackrock,169,1,4358_7778195_1084003,4358_559 -4358_80750,96,4358_14222,Blackrock,8459,1,4358_7778195_1084003,4358_559 -4358_80750,205,4358_14223,Blackrock,182,1,4358_7778195_1084006,4358_560 -4358_80750,96,4358_14224,Blackrock,8439,1,4358_7778195_1084001,4358_559 -4358_80750,205,4358_14225,Blackrock,193,1,4358_7778195_1084007,4358_560 -4358_80750,96,4358_14227,Bray Station,8450,1,4358_7778195_1084002,4358_561 -4358_80749,205,4358_14229,Bray Station,913,0,4358_7778195_1084005,4358_565 -4358_80757,96,4358_1423,O'Connell Street,9944,1,4358_7778195_5123016,4358_47 -4358_80749,205,4358_14230,Bray Station,159,0,4358_7778195_1084002,4358_565 -4358_80749,205,4358_14231,Bray Station,172,0,4358_7778195_1084004,4358_565 -4358_80749,205,4358_14232,Bray Station,915,0,4358_7778195_1084005,4358_566 -4358_80749,205,4358_14233,Bray Station,195,0,4358_7778195_1084008,4358_565 -4358_80749,205,4358_14234,Bray Station,198,0,4358_7778195_1084009,4358_565 -4358_80749,205,4358_14235,Blackrock,912,1,4358_7778195_1084005,4358_567 -4358_80749,205,4358_14236,Blackrock,158,1,4358_7778195_1084002,4358_567 -4358_80749,205,4358_14237,St Vincents Hosp,914,1,4358_7778195_1084005,4358_568 -4358_80749,205,4358_14238,St Vincents Hosp,160,1,4358_7778195_1084002,4358_568 -4358_80749,205,4358_14239,St Vincents Hosp,173,1,4358_7778195_1084004,4358_568 -4358_80757,205,4358_1424,O'Connell Street,2311,1,4358_7778195_5123012,4358_48 -4358_80749,205,4358_14240,Blackrock,194,1,4358_7778195_1084008,4358_567 -4358_80749,205,4358_14241,Blackrock,197,1,4358_7778195_1084009,4358_567 -4358_80749,205,4358_14242,Blackrock,196,1,4358_7778195_1084008,4358_567 -4358_80749,205,4358_14243,Blackrock,199,1,4358_7778195_1084009,4358_567 -4358_80762,205,4358_14244,Newcastle,557,0,4358_7778195_1145115,4358_570 -4358_80762,205,4358_14245,Newcastle,5967,0,4358_7778195_2822201,4358_570 -4358_80762,205,4358_14246,Newcastle,6094,0,4358_7778195_2822209,4358_570 -4358_80762,205,4358_14247,Kilcoole,559,0,4358_7778195_1145118,4358_569 -4358_80762,205,4358_14248,Newcastle,560,0,4358_7778195_1145119,4358_570 -4358_80762,205,4358_14249,Kilcoole,561,0,4358_7778195_1145120,4358_569 -4358_80762,205,4358_14250,Kilcoole,552,0,4358_7778195_1145417,4358_569 -4358_80762,205,4358_14251,Kilcoole,3095,0,4358_7778195_1821204,4358_569 -4358_80762,205,4358_14252,Eden Quay,5965,1,4358_7778195_2821103,4358_572 -4358_80762,205,4358_14253,Eden Quay,3228,1,4358_7778195_1145402,4358_572 -4358_80762,205,4358_14254,Eden Quay,171,1,4358_7778195_1084004,4358_571 -4358_80762,205,4358_14255,Eden Quay,3332,1,4358_7778195_1145408,4358_571 -4358_80762,205,4358_14256,Eden Quay,551,1,4358_7778195_1145411,4358_571 -4358_80762,205,4358_14257,Eden Quay,84,1,4358_7778195_1145401,4358_572 -4358_80762,205,4358_14258,Eden Quay,553,1,4358_7778195_1145107,4358_571 -4358_80762,205,4358_14259,Eden Quay,554,1,4358_7778195_1145110,4358_571 -4358_80682,205,4358_1426,Grange Castle,6811,0,4358_7778195_8013003,4358_51 -4358_80762,205,4358_14260,Eden Quay,555,1,4358_7778195_1145111,4358_571 -4358_80762,205,4358_14261,UCD,5966,1,4358_7778195_2821103,4358_573 -4358_80762,205,4358_14262,Eden Quay,556,1,4358_7778195_1145115,4358_572 -4358_80762,205,4358_14263,Eden Quay,558,1,4358_7778195_1145115,4358_572 -4358_80755,205,4358_14264,Limekiln Avenue,3387,0,4358_7778195_7009005,4358_574 -4358_80755,96,4358_14265,Limekiln Avenue,10891,0,4358_7778195_7009002,4358_574 -4358_80755,205,4358_14266,Limekiln Avenue,3370,0,4358_7778195_7009006,4358_575 -4358_80755,205,4358_14267,Limekiln Avenue,3528,0,4358_7778195_7009008,4358_574 -4358_80755,96,4358_14268,Limekiln Avenue,13261,0,4358_7778195_7009004,4358_574 -4358_80755,205,4358_14269,Limekiln Avenue,3550,0,4358_7778195_7009011,4358_574 -4358_80682,205,4358_1427,Grange Castle,6827,0,4358_7778195_8013006,4358_53 -4358_80755,96,4358_14270,Limekiln Avenue,13279,0,4358_7778195_7009006,4358_574 -4358_80755,205,4358_14271,Limekiln Avenue,3516,0,4358_7778195_7009013,4358_574 -4358_80755,205,4358_14272,Limekiln Avenue,3404,0,4358_7778195_7009015,4358_574 -4358_80755,96,4358_14273,Limekiln Avenue,13236,0,4358_7778195_7009008,4358_574 -4358_80755,205,4358_14274,Limekiln Avenue,3481,0,4358_7778195_7009002,4358_574 -4358_80755,205,4358_14275,Limekiln Avenue,3410,0,4358_7778195_7009003,4358_574 -4358_80755,96,4358_14276,Limekiln Avenue,13204,0,4358_7778195_7009009,4358_574 -4358_80755,205,4358_14277,Limekiln Avenue,5227,0,4358_7778195_7009004,4358_574 -4358_80755,205,4358_14278,Limekiln Avenue,802,0,4358_7778195_7827101,4358_574 -4358_80755,205,4358_14279,Limekiln Avenue,3567,0,4358_7778195_7009017,4358_574 -4358_80682,96,4358_1428,Grange Castle,13599,0,4358_7778195_8013003,4358_51 -4358_80755,96,4358_14280,Limekiln Avenue,13252,0,4358_7778195_7009001,4358_574 -4358_80755,205,4358_14281,Limekiln Avenue,3420,0,4358_7778195_7009007,4358_574 -4358_80755,96,4358_14282,Limekiln Avenue,13230,0,4358_7778195_7009003,4358_574 -4358_80755,205,4358_14283,Limekiln Avenue,3446,0,4358_7778195_7009009,4358_574 -4358_80755,205,4358_14284,Limekiln Avenue,3541,0,4358_7778195_7009010,4358_574 -4358_80755,96,4358_14285,Limekiln Avenue,13244,0,4358_7778195_7009005,4358_575 -4358_80755,205,4358_14287,Limekiln Avenue,3430,0,4358_7778195_7009012,4358_574 -4358_80755,96,4358_14288,Limekiln Avenue,10903,0,4358_7778195_7009007,4358_574 -4358_80755,205,4358_14289,Limekiln Avenue,3475,0,4358_7778195_7009001,4358_574 -4358_80682,205,4358_1429,Grange Castle,6882,0,4358_7778195_8013009,4358_53 -4358_80755,205,4358_14291,Limekiln Avenue,3489,0,4358_7778195_7009014,4358_574 -4358_80755,96,4358_14292,Limekiln Avenue,10893,0,4358_7778195_7009002,4358_574 -4358_80755,205,4358_14293,Limekiln Avenue,3389,0,4358_7778195_7009005,4358_574 -4358_80755,205,4358_14295,Limekiln Avenue,3456,0,4358_7778195_7009016,4358_574 -4358_80755,96,4358_14296,Limekiln Avenue,13263,0,4358_7778195_7009004,4358_575 -4358_80755,205,4358_14297,Limekiln Avenue,3372,0,4358_7778195_7009006,4358_574 -4358_80755,96,4358_14299,Limekiln Avenue,13281,0,4358_7778195_7009006,4358_575 -4358_80760,205,4358_143,Shaw street,1711,0,4358_7778195_9001008,4358_1 -4358_80682,96,4358_1430,Grange Castle,13612,0,4358_7778195_8013005,4358_51 -4358_80755,205,4358_14300,Limekiln Avenue,3511,0,4358_7778195_7009018,4358_574 -4358_80755,96,4358_14301,Limekiln Avenue,13238,0,4358_7778195_7009008,4358_574 -4358_80755,205,4358_14302,Limekiln Avenue,3530,0,4358_7778195_7009008,4358_574 -4358_80755,96,4358_14304,Limekiln Avenue,10908,0,4358_7778195_7009010,4358_574 -4358_80755,205,4358_14305,Limekiln Avenue,3552,0,4358_7778195_7009011,4358_574 -4358_80755,96,4358_14306,Limekiln Avenue,13206,0,4358_7778195_7009009,4358_574 -4358_80755,205,4358_14307,Limekiln Avenue,3468,0,4358_7778195_7009019,4358_575 -4358_80755,205,4358_14309,Limekiln Avenue,3518,0,4358_7778195_7009013,4358_574 -4358_80682,205,4358_1431,Grange Castle,6710,0,4358_7778195_8013001,4358_53 -4358_80755,96,4358_14310,Limekiln Avenue,13219,0,4358_7778195_7009011,4358_574 -4358_80755,205,4358_14312,Limekiln Avenue,3406,0,4358_7778195_7009015,4358_574 -4358_80755,96,4358_14313,Limekiln Avenue,13254,0,4358_7778195_7009001,4358_574 -4358_80755,205,4358_14314,Limekiln Avenue,3483,0,4358_7778195_7009002,4358_574 -4358_80755,96,4358_14316,Limekiln Avenue,13272,0,4358_7778195_7009013,4358_574 -4358_80755,205,4358_14317,Limekiln Avenue,3412,0,4358_7778195_7009003,4358_574 -4358_80755,205,4358_14318,Limekiln Avenue,5229,0,4358_7778195_7009004,4358_574 -4358_80755,96,4358_14319,Limekiln Avenue,13232,0,4358_7778195_7009003,4358_575 -4358_80682,96,4358_1432,Grange Castle,13625,0,4358_7778195_8013007,4358_51 -4358_80755,205,4358_14321,Limekiln Avenue,3569,0,4358_7778195_7009017,4358_574 -4358_80755,96,4358_14323,Limekiln Avenue,13246,0,4358_7778195_7009005,4358_575 -4358_80755,205,4358_14324,Limekiln Avenue,3448,0,4358_7778195_7009009,4358_574 -4358_80755,96,4358_14326,Limekiln Avenue,10905,0,4358_7778195_7009007,4358_575 -4358_80755,205,4358_14327,Limekiln Avenue,3543,0,4358_7778195_7009010,4358_574 -4358_80755,96,4358_14328,Limekiln Avenue,10895,0,4358_7778195_7009002,4358_574 -4358_80755,205,4358_14330,Limekiln Avenue,3432,0,4358_7778195_7009012,4358_574 -4358_80755,205,4358_14332,Limekiln Avenue,3477,0,4358_7778195_7009001,4358_575 -4358_80755,96,4358_14333,Limekiln Avenue,13199,0,4358_7778195_7009014,4358_576 -4358_80755,205,4358_14334,Limekiln Avenue,3491,0,4358_7778195_7009014,4358_574 -4358_80755,96,4358_14335,Limekiln Avenue,13215,0,4358_7778195_7009012,4358_574 -4358_80755,205,4358_14337,Limekiln Avenue,3391,0,4358_7778195_7009005,4358_574 -4358_80755,96,4358_14339,Limekiln Avenue,13265,0,4358_7778195_7009004,4358_575 -4358_80682,205,4358_1434,Grange Castle,6890,0,4358_7778195_8013011,4358_53 -4358_80755,205,4358_14340,Limekiln Avenue,3458,0,4358_7778195_7009016,4358_574 -4358_80755,96,4358_14342,Limekiln Avenue,13283,0,4358_7778195_7009006,4358_575 -4358_80755,205,4358_14343,Limekiln Avenue,3374,0,4358_7778195_7009006,4358_574 -4358_80755,205,4358_14344,Limekiln Avenue,3513,0,4358_7778195_7009018,4358_574 -4358_80755,96,4358_14346,Limekiln Avenue,13223,0,4358_7778195_7009015,4358_576 -4358_80755,205,4358_14347,Limekiln Avenue,3532,0,4358_7778195_7009008,4358_574 -4358_80755,96,4358_14349,Limekiln Avenue,13240,0,4358_7778195_7009008,4358_575 -4358_80682,96,4358_1435,Grange Castle,13640,0,4358_7778195_8013009,4358_51 -4358_80755,205,4358_14350,Limekiln Avenue,3554,0,4358_7778195_7009011,4358_574 -4358_80755,96,4358_14351,Limekiln Avenue,10910,0,4358_7778195_7009010,4358_574 -4358_80755,205,4358_14353,Limekiln Avenue,3470,0,4358_7778195_7009019,4358_574 -4358_80755,96,4358_14354,Limekiln Avenue,13208,0,4358_7778195_7009009,4358_574 -4358_80755,205,4358_14356,Limekiln Avenue,3520,0,4358_7778195_7009013,4358_574 -4358_80755,205,4358_14358,Limekiln Avenue,3408,0,4358_7778195_7009015,4358_575 -4358_80755,96,4358_14359,Limekiln Avenue,13221,0,4358_7778195_7009011,4358_576 -4358_80682,205,4358_1436,Grange Castle,6903,0,4358_7778195_8013013,4358_51 -4358_80755,205,4358_14360,Limekiln Avenue,3485,0,4358_7778195_7009002,4358_574 -4358_80755,96,4358_14362,Limekiln Avenue,13256,0,4358_7778195_7009001,4358_575 -4358_80755,205,4358_14363,Limekiln Avenue,3414,0,4358_7778195_7009003,4358_574 -4358_80755,96,4358_14364,Limekiln Avenue,13274,0,4358_7778195_7009013,4358_574 -4358_80755,205,4358_14366,Limekiln Avenue,5231,0,4358_7778195_7009004,4358_574 -4358_80755,96,4358_14368,Limekiln Avenue,13234,0,4358_7778195_7009003,4358_575 -4358_80755,205,4358_14369,Limekiln Avenue,3571,0,4358_7778195_7009017,4358_574 -4358_80682,205,4358_1437,Grange Castle,6905,0,4358_7778195_8013015,4358_51 -4358_80755,205,4358_14371,Limekiln Avenue,3450,0,4358_7778195_7009009,4358_575 -4358_80755,96,4358_14372,Limekiln Avenue,13248,0,4358_7778195_7009005,4358_576 -4358_80755,205,4358_14373,Limekiln Avenue,3472,0,4358_7778195_7009021,4358_574 -4358_80755,96,4358_14374,Limekiln Avenue,10897,0,4358_7778195_7009002,4358_574 -4358_80755,205,4358_14376,Limekiln Avenue,3545,0,4358_7778195_7009010,4358_574 -4358_80755,96,4358_14378,Limekiln Avenue,13201,0,4358_7778195_7009014,4358_575 -4358_80755,205,4358_14379,Limekiln Avenue,3434,0,4358_7778195_7009012,4358_574 -4358_80682,96,4358_1438,Grange Castle,13645,0,4358_7778195_8013010,4358_51 -4358_80755,96,4358_14380,Limekiln Avenue,13217,0,4358_7778195_7009012,4358_574 -4358_80755,205,4358_14382,Limekiln Avenue,3479,0,4358_7778195_7009001,4358_574 -4358_80755,205,4358_14383,Limekiln Avenue,3493,0,4358_7778195_7009014,4358_574 -4358_80755,96,4358_14384,Limekiln Avenue,13267,0,4358_7778195_7009004,4358_575 -4358_80755,205,4358_14386,Limekiln Avenue,3460,0,4358_7778195_7009016,4358_574 -4358_80755,96,4358_14388,Limekiln Avenue,13285,0,4358_7778195_7009006,4358_576 -4358_80755,205,4358_14390,Limekiln Avenue,3376,0,4358_7778195_7009006,4358_575 -4358_80755,96,4358_14391,Limekiln Avenue,13225,0,4358_7778195_7009015,4358_576 -4358_80755,205,4358_14392,Limekiln Avenue,3381,0,4358_7778195_7009020,4358_574 -4358_80755,96,4358_14393,Limekiln Avenue,13242,0,4358_7778195_7009008,4358_575 -4358_80755,96,4358_14395,Limekiln Avenue,10912,0,4358_7778195_7009010,4358_574 -4358_80755,205,4358_14396,Limekiln Avenue,3515,0,4358_7778195_7009018,4358_575 -4358_80755,205,4358_14399,Limekiln Avenue,3534,0,4358_7778195_7009008,4358_575 -4358_80682,205,4358_1440,Grange Castle,6908,0,4358_7778195_8013016,4358_53 -4358_80755,96,4358_14400,Limekiln Avenue,13210,0,4358_7778195_7009009,4358_574 -4358_80755,205,4358_14402,Limekiln Avenue,3556,0,4358_7778195_7009011,4358_575 -4358_80755,96,4358_14403,Limekiln Avenue,13258,0,4358_7778195_7009001,4358_574 -4358_80755,205,4358_14404,Limekiln Avenue,3487,0,4358_7778195_7009002,4358_574 -4358_80755,96,4358_14406,Limekiln Avenue,13276,0,4358_7778195_7009013,4358_574 -4358_80755,205,4358_14407,Limekiln Avenue,3463,0,4358_7778195_7009022,4358_575 -4358_80755,205,4358_14409,Limekiln Avenue,3416,0,4358_7778195_7009003,4358_574 -4358_80682,205,4358_1441,Grange Castle,6717,0,4358_7778195_8013002,4358_51 -4358_80755,96,4358_14410,Limekiln Avenue,13250,0,4358_7778195_7009005,4358_575 -4358_80755,96,4358_14412,Limekiln Avenue,10899,0,4358_7778195_7009002,4358_574 -4358_80755,205,4358_14413,Limekiln Avenue,3452,0,4358_7778195_7009009,4358_575 -4358_80755,205,4358_14415,Limekiln Avenue,3547,0,4358_7778195_7009010,4358_574 -4358_80755,96,4358_14416,Limekiln Avenue,13203,0,4358_7778195_7009014,4358_575 -4358_80755,205,4358_14418,Limekiln Avenue,3436,0,4358_7778195_7009012,4358_574 -4358_80755,96,4358_14419,Limekiln Avenue,13269,0,4358_7778195_7009004,4358_575 -4358_80682,96,4358_1442,Grange Castle,13582,0,4358_7778195_8013001,4358_51 -4358_80755,205,4358_14421,Limekiln Avenue,3495,0,4358_7778195_7009014,4358_574 -4358_80755,96,4358_14422,Limekiln Avenue,13287,0,4358_7778195_7009006,4358_575 -4358_80755,205,4358_14424,Limekiln Avenue,3378,0,4358_7778195_7009006,4358_574 -4358_80755,96,4358_14425,Limekiln Avenue,13227,0,4358_7778195_7009015,4358_575 -4358_80755,205,4358_14427,Limekiln Avenue,3383,0,4358_7778195_7009020,4358_574 -4358_80755,96,4358_14429,Limekiln Avenue,13212,0,4358_7778195_7009009,4358_575 -4358_80682,205,4358_1443,Grange Castle,6821,0,4358_7778195_8013004,4358_51 -4358_80755,205,4358_14430,Limekiln Avenue,3558,0,4358_7778195_7009011,4358_574 -4358_80755,205,4358_14432,Limekiln Avenue,3465,0,4358_7778195_7009022,4358_574 -4358_80755,96,4358_14433,Limekiln Avenue,13260,0,4358_7778195_7009001,4358_575 -4358_80755,205,4358_14435,Limekiln Avenue,3418,0,4358_7778195_7009003,4358_574 -4358_80755,96,4358_14436,Limekiln Avenue,13278,0,4358_7778195_7009013,4358_574 -4358_80755,205,4358_14438,Limekiln Avenue,3454,0,4358_7778195_7009009,4358_574 -4358_80755,96,4358_14440,Limekiln Avenue,10901,0,4358_7778195_7009002,4358_574 -4358_80755,205,4358_14441,Limekiln Avenue,3549,0,4358_7778195_7009010,4358_575 -4358_80755,205,4358_14443,Limekiln Avenue,3497,0,4358_7778195_7009014,4358_574 -4358_80755,96,4358_14445,O'Connell St,13271,0,4358_7778195_7009004,4358_577 -4358_80755,205,4358_14446,Charlestown,3480,1,4358_7778195_7009002,4358_578 -4358_80755,205,4358_14447,Charlestown,5226,1,4358_7778195_7009004,4358_578 -4358_80755,205,4358_14448,Charlestown,3419,1,4358_7778195_7009007,4358_578 -4358_80755,96,4358_14449,Charlestown,13251,1,4358_7778195_7009001,4358_579 -4358_80682,96,4358_1445,Grange Castle,13592,0,4358_7778195_8013002,4358_51 -4358_80755,205,4358_14450,Charlestown,3445,1,4358_7778195_7009009,4358_578 -4358_80755,96,4358_14451,Charlestown,13229,1,4358_7778195_7009003,4358_579 -4358_80755,205,4358_14452,Charlestown,3540,1,4358_7778195_7009010,4358_578 -4358_80755,96,4358_14453,Charlestown,13243,1,4358_7778195_7009005,4358_578 -4358_80755,205,4358_14454,Charlestown,3429,1,4358_7778195_7009012,4358_578 -4358_80755,96,4358_14455,Charlestown,10902,1,4358_7778195_7009007,4358_578 -4358_80755,205,4358_14456,Charlestown,3474,1,4358_7778195_7009001,4358_579 -4358_80755,205,4358_14457,Charlestown,3488,1,4358_7778195_7009014,4358_578 -4358_80755,96,4358_14458,Charlestown,10892,1,4358_7778195_7009002,4358_578 -4358_80755,205,4358_14459,Charlestown,3388,1,4358_7778195_7009005,4358_578 -4358_80682,205,4358_1446,Grange Castle,6976,0,4358_7778195_8013019,4358_51 -4358_80755,205,4358_14460,Charlestown,3455,1,4358_7778195_7009016,4358_578 -4358_80755,96,4358_14461,Charlestown,13262,1,4358_7778195_7009004,4358_578 -4358_80755,205,4358_14462,Charlestown,3371,1,4358_7778195_7009006,4358_578 -4358_80755,205,4358_14463,Charlestown,3510,1,4358_7778195_7009018,4358_578 -4358_80755,96,4358_14464,Charlestown,13280,1,4358_7778195_7009006,4358_579 -4358_80755,205,4358_14465,Charlestown,3529,1,4358_7778195_7009008,4358_578 -4358_80755,96,4358_14466,Charlestown,13237,1,4358_7778195_7009008,4358_578 -4358_80755,205,4358_14467,Charlestown,3551,1,4358_7778195_7009011,4358_578 -4358_80755,96,4358_14468,Charlestown,10907,1,4358_7778195_7009010,4358_578 -4358_80755,205,4358_14469,Charlestown,3467,1,4358_7778195_7009019,4358_578 -4358_80682,205,4358_1447,Grange Castle,6984,0,4358_7778195_8013020,4358_51 -4358_80755,205,4358_14470,Charlestown,3517,1,4358_7778195_7009013,4358_578 -4358_80755,96,4358_14471,Charlestown,13205,1,4358_7778195_7009009,4358_578 -4358_80755,205,4358_14473,Charlestown,3405,1,4358_7778195_7009015,4358_578 -4358_80755,205,4358_14474,Charlestown,3482,1,4358_7778195_7009002,4358_578 -4358_80755,96,4358_14475,Charlestown,13253,1,4358_7778195_7009001,4358_578 -4358_80755,205,4358_14477,Charlestown,3411,1,4358_7778195_7009003,4358_578 -4358_80755,96,4358_14478,Charlestown,13231,1,4358_7778195_7009003,4358_578 -4358_80755,205,4358_14479,Charlestown,5228,1,4358_7778195_7009004,4358_578 -4358_80755,205,4358_14481,Charlestown,3568,1,4358_7778195_7009017,4358_578 -4358_80755,96,4358_14482,Charlestown,13245,1,4358_7778195_7009005,4358_578 -4358_80755,205,4358_14483,Charlestown,3447,1,4358_7778195_7009009,4358_578 -4358_80755,205,4358_14485,Charlestown,3542,1,4358_7778195_7009010,4358_578 -4358_80755,96,4358_14486,Charlestown,10904,1,4358_7778195_7009007,4358_578 -4358_80755,205,4358_14487,Charlestown,3431,1,4358_7778195_7009012,4358_578 -4358_80755,96,4358_14488,Charlestown,10894,1,4358_7778195_7009002,4358_578 -4358_80682,96,4358_1449,Grange Castle,13607,0,4358_7778195_8013004,4358_55 -4358_80755,205,4358_14490,Charlestown,3476,1,4358_7778195_7009001,4358_578 -4358_80755,205,4358_14491,Charlestown,3490,1,4358_7778195_7009014,4358_578 -4358_80755,96,4358_14492,Charlestown,13214,1,4358_7778195_7009012,4358_578 -4358_80755,205,4358_14494,Charlestown,3390,1,4358_7778195_7009005,4358_578 -4358_80755,96,4358_14495,Charlestown,13264,1,4358_7778195_7009004,4358_578 -4358_80755,205,4358_14496,Charlestown,3457,1,4358_7778195_7009016,4358_578 -4358_80755,205,4358_14498,Charlestown,3373,1,4358_7778195_7009006,4358_579 -4358_80755,96,4358_14499,Charlestown,13282,1,4358_7778195_7009006,4358_580 -4358_80760,96,4358_145,Shaw street,9396,0,4358_7778195_9001001,4358_1 -4358_80682,205,4358_1450,Grange Castle,6823,0,4358_7778195_8013005,4358_51 -4358_80755,205,4358_14500,Charlestown,3512,1,4358_7778195_7009018,4358_578 -4358_80755,96,4358_14501,Charlestown,13239,1,4358_7778195_7009008,4358_578 -4358_80755,205,4358_14503,Charlestown,3531,1,4358_7778195_7009008,4358_578 -4358_80755,96,4358_14504,Charlestown,10909,1,4358_7778195_7009010,4358_578 -4358_80755,205,4358_14506,Charlestown,3553,1,4358_7778195_7009011,4358_578 -4358_80755,96,4358_14507,Charlestown,13207,1,4358_7778195_7009009,4358_578 -4358_80755,205,4358_14509,Charlestown,3469,1,4358_7778195_7009019,4358_578 -4358_80682,96,4358_1451,Grange Castle,13620,0,4358_7778195_8013006,4358_51 -4358_80755,205,4358_14510,Charlestown,3519,1,4358_7778195_7009013,4358_578 -4358_80755,96,4358_14511,Charlestown,13220,1,4358_7778195_7009011,4358_579 -4358_80755,205,4358_14513,Charlestown,3407,1,4358_7778195_7009015,4358_578 -4358_80755,96,4358_14515,Charlestown,13255,1,4358_7778195_7009001,4358_579 -4358_80755,205,4358_14516,Charlestown,3484,1,4358_7778195_7009002,4358_578 -4358_80755,96,4358_14517,Charlestown,13273,1,4358_7778195_7009013,4358_578 -4358_80755,205,4358_14519,Charlestown,3413,1,4358_7778195_7009003,4358_578 -4358_80682,205,4358_1452,Grange Castle,6835,0,4358_7778195_8013007,4358_51 -4358_80755,96,4358_14520,Charlestown,13233,1,4358_7778195_7009003,4358_578 -4358_80755,205,4358_14522,Charlestown,5230,1,4358_7778195_7009004,4358_578 -4358_80755,205,4358_14523,Charlestown,3570,1,4358_7778195_7009017,4358_578 -4358_80755,96,4358_14525,Charlestown,13247,1,4358_7778195_7009005,4358_580 -4358_80755,205,4358_14526,Charlestown,3449,1,4358_7778195_7009009,4358_578 -4358_80755,96,4358_14528,Charlestown,10906,1,4358_7778195_7009007,4358_579 -4358_80755,205,4358_14529,Charlestown,3544,1,4358_7778195_7009010,4358_578 -4358_80682,205,4358_1453,Grange Castle,6874,0,4358_7778195_8013008,4358_51 -4358_80755,96,4358_14530,Charlestown,10896,1,4358_7778195_7009002,4358_578 -4358_80755,205,4358_14532,Charlestown,3433,1,4358_7778195_7009012,4358_578 -4358_80755,96,4358_14534,Charlestown,13200,1,4358_7778195_7009014,4358_579 -4358_80755,205,4358_14535,Charlestown,3478,1,4358_7778195_7009001,4358_578 -4358_80755,205,4358_14536,Charlestown,3492,1,4358_7778195_7009014,4358_578 -4358_80755,96,4358_14537,Charlestown,13216,1,4358_7778195_7009012,4358_579 -4358_80755,205,4358_14539,Charlestown,3392,1,4358_7778195_7009005,4358_578 -4358_80755,96,4358_14541,Charlestown,13266,1,4358_7778195_7009004,4358_579 -4358_80755,205,4358_14542,Charlestown,3459,1,4358_7778195_7009016,4358_578 -4358_80755,96,4358_14544,Charlestown,13284,1,4358_7778195_7009006,4358_579 -4358_80755,205,4358_14545,Charlestown,3375,1,4358_7778195_7009006,4358_578 -4358_80755,96,4358_14547,Charlestown,13224,1,4358_7778195_7009015,4358_579 -4358_80755,205,4358_14548,Charlestown,3380,1,4358_7778195_7009020,4358_578 -4358_80682,96,4358_1455,Grange Castle,13635,0,4358_7778195_8013008,4358_57 -4358_80755,205,4358_14550,Charlestown,3514,1,4358_7778195_7009018,4358_579 -4358_80755,96,4358_14551,Charlestown,13241,1,4358_7778195_7009008,4358_580 -4358_80755,205,4358_14552,Charlestown,3533,1,4358_7778195_7009008,4358_578 -4358_80755,96,4358_14553,Charlestown,10911,1,4358_7778195_7009010,4358_578 -4358_80755,205,4358_14555,Charlestown,3555,1,4358_7778195_7009011,4358_578 -4358_80755,96,4358_14556,Charlestown,13209,1,4358_7778195_7009009,4358_578 -4358_80755,205,4358_14557,Charlestown,3471,1,4358_7778195_7009019,4358_579 -4358_80755,205,4358_14559,Charlestown,3521,1,4358_7778195_7009013,4358_578 -4358_80682,96,4358_1456,Grange Castle,13656,0,4358_7778195_8013012,4358_51 -4358_80755,96,4358_14561,Charlestown,13222,1,4358_7778195_7009011,4358_579 -4358_80755,205,4358_14562,Charlestown,3409,1,4358_7778195_7009015,4358_578 -4358_80755,96,4358_14564,Charlestown,13257,1,4358_7778195_7009001,4358_579 -4358_80755,205,4358_14565,Charlestown,3486,1,4358_7778195_7009002,4358_580 -4358_80755,205,4358_14566,Charlestown,3462,1,4358_7778195_7009022,4358_578 -4358_80755,96,4358_14567,Charlestown,13275,1,4358_7778195_7009013,4358_578 -4358_80755,205,4358_14569,Charlestown,3415,1,4358_7778195_7009003,4358_578 -4358_80682,205,4358_1457,Grange Castle,6885,0,4358_7778195_8013010,4358_55 -4358_80755,96,4358_14571,Charlestown,13235,1,4358_7778195_7009003,4358_579 -4358_80755,205,4358_14572,Charlestown,3572,1,4358_7778195_7009017,4358_578 -4358_80755,96,4358_14574,Charlestown,13249,1,4358_7778195_7009005,4358_579 -4358_80755,205,4358_14575,Charlestown,3451,1,4358_7778195_7009009,4358_578 -4358_80755,96,4358_14576,Charlestown,10898,1,4358_7778195_7009002,4358_578 -4358_80755,205,4358_14578,Charlestown,3473,1,4358_7778195_7009021,4358_578 -4358_80682,96,4358_1458,Grange Castle,13601,0,4358_7778195_8013003,4358_51 -4358_80755,96,4358_14580,Charlestown,13202,1,4358_7778195_7009014,4358_579 -4358_80755,205,4358_14581,Charlestown,3546,1,4358_7778195_7009010,4358_578 -4358_80755,96,4358_14582,Charlestown,13218,1,4358_7778195_7009012,4358_578 -4358_80755,205,4358_14584,Charlestown,3435,1,4358_7778195_7009012,4358_578 -4358_80755,96,4358_14585,Charlestown,13268,1,4358_7778195_7009004,4358_578 -4358_80755,205,4358_14587,Charlestown,3494,1,4358_7778195_7009014,4358_578 -4358_80755,96,4358_14588,Charlestown,13286,1,4358_7778195_7009006,4358_578 -4358_80682,205,4358_1459,Grange Castle,6813,0,4358_7778195_8013003,4358_55 -4358_80755,205,4358_14590,Charlestown,3461,1,4358_7778195_7009016,4358_579 -4358_80755,205,4358_14591,Charlestown,3377,1,4358_7778195_7009006,4358_578 -4358_80755,96,4358_14592,Charlestown,13226,1,4358_7778195_7009015,4358_579 -4358_80755,205,4358_14594,Charlestown,3382,1,4358_7778195_7009020,4358_578 -4358_80755,96,4358_14595,Charlestown,10913,1,4358_7778195_7009010,4358_579 -4358_80755,205,4358_14597,Charlestown,3535,1,4358_7778195_7009008,4358_578 -4358_80755,96,4358_14598,Charlestown,13211,1,4358_7778195_7009009,4358_579 -4358_80760,205,4358_146,Shaw street,1666,0,4358_7778195_9001003,4358_1 -4358_80755,96,4358_14600,Charlestown,13259,1,4358_7778195_7009001,4358_578 -4358_80755,205,4358_14601,Charlestown,3557,1,4358_7778195_7009011,4358_578 -4358_80755,205,4358_14603,Charlestown,3464,1,4358_7778195_7009022,4358_578 -4358_80755,96,4358_14604,Charlestown,13277,1,4358_7778195_7009013,4358_578 -4358_80755,205,4358_14606,Charlestown,3417,1,4358_7778195_7009003,4358_578 -4358_80755,96,4358_14608,Charlestown,10900,1,4358_7778195_7009002,4358_578 -4358_80755,205,4358_14609,Charlestown,3453,1,4358_7778195_7009009,4358_578 -4358_80682,205,4358_1461,Grange Castle,6989,0,4358_7778195_8013023,4358_51 -4358_80755,205,4358_14611,Charlestown,3548,1,4358_7778195_7009010,4358_578 -4358_80755,96,4358_14612,Charlestown,13270,1,4358_7778195_7009004,4358_578 -4358_80755,205,4358_14614,Charlestown,3496,1,4358_7778195_7009014,4358_578 -4358_80755,96,4358_14616,Charlestown,13288,1,4358_7778195_7009006,4358_578 -4358_80755,205,4358_14617,Charlestown,3379,1,4358_7778195_7009006,4358_578 -4358_80755,205,4358_14619,Charlestown,3384,1,4358_7778195_7009020,4358_578 -4358_80682,96,4358_1462,Grange Castle,13614,0,4358_7778195_8013005,4358_51 -4358_80755,96,4358_14620,Charlestown,13228,1,4358_7778195_7009015,4358_578 -4358_80755,205,4358_14622,Charlestown,3559,1,4358_7778195_7009011,4358_578 -4358_80755,96,4358_14624,Parnell Sq,13213,1,4358_7778195_7009009,4358_581 -4358_80755,205,4358_14625,Charlestown,3466,1,4358_7778195_7009022,4358_578 -4358_80751,205,4358_14627,Visitor Centre,5207,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14628,Visitor Centre,13086,1,4358_7778195_7827106,4358_583 -4358_80682,205,4358_1463,Grange Castle,6894,0,4358_7778195_8013012,4358_51 -4358_80751,205,4358_14630,Visitor Centre,5208,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14631,Visitor Centre,13087,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14633,Visitor Centre,5209,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14634,Visitor Centre,13088,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14636,Visitor Centre,5210,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14637,Visitor Centre,13089,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14639,Visitor Centre,5211,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14640,Visitor Centre,13090,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14642,Visitor Centre,5212,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14643,Visitor Centre,13091,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14645,Visitor Centre,5213,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14646,Visitor Centre,13092,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14648,Visitor Centre,5214,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14649,Visitor Centre,13093,1,4358_7778195_7827106,4358_583 -4358_80682,96,4358_1465,Grange Castle,13627,0,4358_7778195_8013007,4358_55 -4358_80751,205,4358_14651,Visitor Centre,5215,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14652,Visitor Centre,13094,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14654,Visitor Centre,5216,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14655,Visitor Centre,13095,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14657,Visitor Centre,5217,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14658,Visitor Centre,13096,1,4358_7778195_7827106,4358_583 -4358_80682,205,4358_1466,Grange Castle,6898,0,4358_7778195_8013014,4358_51 -4358_80751,205,4358_14660,Visitor Centre,5218,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14661,Visitor Centre,13097,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14663,Visitor Centre,5219,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14664,Visitor Centre,13098,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14666,Visitor Centre,5220,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14667,Visitor Centre,13099,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14669,Visitor Centre,5221,1,4358_7778195_7827106,4358_582 -4358_80682,96,4358_1467,Grange Castle,13663,0,4358_7778195_8013014,4358_51 -4358_80751,96,4358_14670,Visitor Centre,13100,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14672,Visitor Centre,5222,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14673,Visitor Centre,13101,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14675,Visitor Centre,5223,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14676,Visitor Centre,13102,1,4358_7778195_7827106,4358_583 -4358_80751,205,4358_14678,Visitor Centre,5224,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14679,Visitor Centre,13103,1,4358_7778195_7827106,4358_583 -4358_80682,205,4358_1468,Grange Castle,6829,0,4358_7778195_8013006,4358_51 -4358_80751,205,4358_14681,Visitor Centre,5225,1,4358_7778195_7827106,4358_582 -4358_80751,96,4358_14682,Visitor Centre,13104,1,4358_7778195_7827106,4358_583 -4358_80775,205,4358_14684,Adamstown Station,3923,0,4358_7778195_7421101,4358_585 -4358_80775,96,4358_14685,Adamstown Station,9019,0,4358_7778195_3421002,4358_586 -4358_80775,205,4358_14687,Adamstown Station,1412,0,4358_7778195_3421004,4358_585 -4358_80775,96,4358_14688,Adamstown Station,10997,0,4358_7778195_7421103,4358_585 -4358_80682,205,4358_1469,Grange Castle,6930,0,4358_7778195_8013017,4358_51 -4358_80775,205,4358_14690,Adamstown Station,3738,0,4358_7778195_7421108,4358_585 -4358_80775,96,4358_14691,Adamstown Station,10914,0,4358_7778195_7421105,4358_585 -4358_80775,205,4358_14692,Adamstown Station,3952,0,4358_7778195_7421110,4358_585 -4358_80775,96,4358_14693,Adamstown Station,11071,0,4358_7778195_7421101,4358_585 -4358_80775,205,4358_14695,Adamstown Station,1377,0,4358_7778195_3421002,4358_585 -4358_80775,205,4358_14696,Adamstown Station,3945,0,4358_7778195_7421103,4358_585 -4358_80775,96,4358_14697,Adamstown Station,10936,0,4358_7778195_7421102,4358_585 -4358_80775,205,4358_14698,Adamstown Station,3925,0,4358_7778195_7421101,4358_585 -4358_80775,96,4358_14699,Adamstown Station,10980,0,4358_7778195_7421104,4358_585 -4358_80682,96,4358_1470,Grange Castle,13642,0,4358_7778195_8013009,4358_55 -4358_80775,205,4358_14701,Adamstown Station,3705,0,4358_7778195_7421107,4358_585 -4358_80775,205,4358_14702,Adamstown Station,3840,0,4358_7778195_7421109,4358_585 -4358_80775,96,4358_14703,Adamstown Station,10925,0,4358_7778195_7421107,4358_585 -4358_80775,205,4358_14705,Adamstown Station,1438,0,4358_7778195_3421006,4358_585 -4358_80775,96,4358_14707,Adamstown Station,9047,0,4358_7778195_3421004,4358_585 -4358_80775,205,4358_14708,Adamstown Station,4043,0,4358_7778195_7421118,4358_585 -4358_80775,96,4358_14710,Adamstown Station,9064,0,4358_7778195_3421001,4358_585 -4358_80775,205,4358_14711,Adamstown Station,3740,0,4358_7778195_7421108,4358_585 -4358_80775,96,4358_14712,Adamstown Station,10958,0,4358_7778195_7421106,4358_585 -4358_80775,205,4358_14714,Adamstown Station,3966,0,4358_7778195_7421122,4358_585 -4358_80775,96,4358_14715,Adamstown Station,10989,0,4358_7778195_7421108,4358_585 -4358_80775,205,4358_14717,Adamstown Station,3781,0,4358_7778195_7421102,4358_585 -4358_80775,96,4358_14718,Adamstown Station,10982,0,4358_7778195_7421104,4358_585 -4358_80682,205,4358_1472,Grange Castle,6975,0,4358_7778195_8013018,4358_51 -4358_80775,205,4358_14720,Adamstown Station,3918,0,4358_7778195_7421104,4358_585 -4358_80775,96,4358_14721,Adamstown Station,10927,0,4358_7778195_7421107,4358_585 -4358_80775,205,4358_14723,Adamstown Station,1417,0,4358_7778195_3421005,4358_585 -4358_80775,96,4358_14724,Adamstown Station,11001,0,4358_7778195_7421103,4358_585 -4358_80775,205,4358_14726,Adamstown Station,3937,0,4358_7778195_7421111,4358_585 -4358_80775,96,4358_14727,Adamstown Station,10918,0,4358_7778195_7421105,4358_585 -4358_80775,205,4358_14729,Adamstown Station,3811,0,4358_7778195_7421114,4358_585 -4358_80682,96,4358_1473,Grange Castle,13647,0,4358_7778195_8013010,4358_51 -4358_80775,96,4358_14730,Adamstown Station,11075,0,4358_7778195_7421101,4358_585 -4358_80775,205,4358_14732,Adamstown Station,3742,0,4358_7778195_7421108,4358_585 -4358_80775,96,4358_14733,Adamstown Station,10975,0,4358_7778195_7421109,4358_585 -4358_80775,205,4358_14735,Adamstown Station,3968,0,4358_7778195_7421122,4358_585 -4358_80775,96,4358_14736,Adamstown Station,10991,0,4358_7778195_7421108,4358_585 -4358_80775,205,4358_14738,Adamstown Station,3783,0,4358_7778195_7421102,4358_585 -4358_80775,96,4358_14739,Adamstown Station,10984,0,4358_7778195_7421104,4358_585 -4358_80682,205,4358_1474,Grange Castle,6712,0,4358_7778195_8013001,4358_51 -4358_80775,205,4358_14741,Adamstown Station,6425,0,4358_7778195_3421603,4358_585 -4358_80775,205,4358_14742,Adamstown Station,3920,0,4358_7778195_7421104,4358_585 -4358_80775,96,4358_14743,Adamstown Station,10929,0,4358_7778195_7421107,4358_585 -4358_80775,205,4358_14745,Adamstown Station,3957,0,4358_7778195_7421125,4358_585 -4358_80775,96,4358_14746,Adamstown Station,11003,0,4358_7778195_7421103,4358_585 -4358_80775,205,4358_14748,Adamstown Station,3844,0,4358_7778195_7421109,4358_585 -4358_80775,96,4358_14749,Adamstown Station,10920,0,4358_7778195_7421105,4358_585 -4358_80682,96,4358_1475,Grange Castle,13655,0,4358_7778195_8013011,4358_51 -4358_80775,205,4358_14751,Adamstown Station,3634,0,4358_7778195_7872209,4358_585 -4358_80775,205,4358_14752,Adamstown Station,6411,0,4358_7778195_7421673,4358_585 -4358_80775,96,4358_14753,Adamstown Station,11077,0,4358_7778195_7421101,4358_586 -4358_80775,205,4358_14755,Adamstown Station,3638,0,4358_7778195_7872211,4358_585 -4358_80775,205,4358_14756,Adamstown Station,4047,0,4358_7778195_7421118,4358_585 -4358_80775,96,4358_14757,Adamstown Station,10977,0,4358_7778195_7421109,4358_585 -4358_80775,205,4358_14758,Adamstown Station,6410,0,4358_7778195_7421672,4358_587 -4358_80775,205,4358_14760,Adamstown Station,3744,0,4358_7778195_7421108,4358_585 -4358_80775,205,4358_14761,Adamstown Station,3658,0,4358_7778195_7421129,4358_587 -4358_80775,205,4358_14762,Adamstown Station,1410,0,4358_7778195_3421019,4358_585 -4358_80775,205,4358_14763,Adamstown Station,6423,0,4358_7778195_3421602,4358_585 -4358_80775,205,4358_14764,Adamstown Station,1475,0,4358_7778195_3421014,4358_585 -4358_80775,205,4358_14765,Adamstown Station,3970,0,4358_7778195_7421122,4358_585 -4358_80775,96,4358_14766,Adamstown Station,10993,0,4358_7778195_7421108,4358_585 -4358_80775,205,4358_14768,Adamstown Station,3961,0,4358_7778195_7421133,4358_587 -4358_80775,205,4358_14769,Adamstown Station,1383,0,4358_7778195_3421002,4358_585 -4358_80682,205,4358_1477,Grange Castle,6998,0,4358_7778195_8013025,4358_51 -4358_80775,96,4358_14770,Adamstown Station,10986,0,4358_7778195_7421104,4358_585 -4358_80775,205,4358_14771,Adamstown Station,3765,0,4358_7778195_7421126,4358_585 -4358_80775,205,4358_14773,Adamstown Station,3909,0,4358_7778195_7421135,4358_587 -4358_80775,205,4358_14774,Adamstown Station,3785,0,4358_7778195_7421102,4358_585 -4358_80775,205,4358_14775,Adamstown Station,3951,0,4358_7778195_7421103,4358_585 -4358_80775,96,4358_14776,Adamstown Station,10931,0,4358_7778195_7421107,4358_585 -4358_80775,205,4358_14777,Adamstown Station,3682,0,4358_7778195_7421127,4358_585 -4358_80775,205,4358_14779,Adamstown Station,3955,0,4358_7778195_7421128,4358_585 -4358_80682,96,4358_1478,Grange Castle,13584,0,4358_7778195_8013001,4358_51 -4358_80775,96,4358_14780,Adamstown Station,11005,0,4358_7778195_7421103,4358_585 -4358_80775,205,4358_14781,Adamstown Station,3933,0,4358_7778195_7421105,4358_585 -4358_80775,205,4358_14783,Adamstown Station,3959,0,4358_7778195_7421125,4358_585 -4358_80775,96,4358_14784,Adamstown Station,10922,0,4358_7778195_7421105,4358_585 -4358_80775,205,4358_14785,Adamstown Station,1421,0,4358_7778195_3421005,4358_585 -4358_80775,96,4358_14787,Adamstown Station,11079,0,4358_7778195_7421101,4358_585 -4358_80775,205,4358_14788,Adamstown Station,3941,0,4358_7778195_7421111,4358_585 -4358_80775,96,4358_14790,Adamstown Station,9074,0,4358_7778195_3421005,4358_585 -4358_80775,205,4358_14791,Adamstown Station,3815,0,4358_7778195_7421114,4358_585 -4358_80775,205,4358_14793,Adamstown Station,3788,0,4358_7778195_7421131,4358_585 -4358_80775,96,4358_14794,Adamstown Station,10995,0,4358_7778195_7421108,4358_585 -4358_80775,96,4358_14796,Adamstown Station,8950,0,4358_7778195_3421006,4358_585 -4358_80775,205,4358_14797,Adamstown Station,3894,0,4358_7778195_7421134,4358_586 -4358_80775,205,4358_14799,Adamstown Station,1400,0,4358_7778195_3421026,4358_585 -4358_80760,96,4358_148,Shaw street,9526,0,4358_7778195_9001005,4358_1 -4358_80682,205,4358_1480,Grange Castle,6986,0,4358_7778195_8013021,4358_51 -4358_80775,96,4358_14800,Adamstown Station,10952,0,4358_7778195_7421110,4358_586 -4358_80775,96,4358_14802,Adamstown Station,10924,0,4358_7778195_7421105,4358_585 -4358_80775,205,4358_14803,Adamstown Station,3663,0,4358_7778195_7421130,4358_586 -4358_80775,205,4358_14805,Adamstown Station,3848,0,4358_7778195_7421109,4358_585 -4358_80775,96,4358_14806,Adamstown Station,11081,0,4358_7778195_7421101,4358_586 -4358_80775,205,4358_14808,Adamstown Station,1457,0,4358_7778195_3421029,4358_585 -4358_80682,205,4358_1481,Grange Castle,7003,0,4358_7778195_8013026,4358_51 -4358_80775,96,4358_14810,Adamstown Station,9041,0,4358_7778195_3421003,4358_586 -4358_80775,96,4358_14811,Adamstown Station,9057,0,4358_7778195_3421004,4358_585 -4358_80775,205,4358_14812,Adamstown Station,1478,0,4358_7778195_3421027,4358_585 -4358_80775,96,4358_14814,Adamstown Station,9078,0,4358_7778195_3421005,4358_585 -4358_80775,205,4358_14815,Adamstown Station,1454,0,4358_7778195_3421030,4358_585 -4358_80775,96,4358_14817,Adamstown Station,8954,0,4358_7778195_3421006,4358_585 -4358_80775,205,4358_14818,Adamstown Station,1466,0,4358_7778195_3421025,4358_585 -4358_80682,96,4358_1482,Grange Castle,13594,0,4358_7778195_8013002,4358_55 -4358_80775,205,4358_14820,Adamstown Station,1449,0,4358_7778195_3421028,4358_585 -4358_80775,96,4358_14822,Adamstown Station,9008,0,4358_7778195_3421007,4358_588 -4358_80775,205,4358_14823,Sandymount,1397,1,4358_7778195_3421001,4358_589 -4358_80775,96,4358_14824,Sandymount,9061,1,4358_7778195_3421001,4358_589 -4358_80775,205,4358_14826,Sandymount,3778,1,4358_7778195_7421102,4358_589 -4358_80775,205,4358_14827,Sandymount,3915,1,4358_7778195_7421104,4358_589 -4358_80775,96,4358_14828,Sandymount,10935,1,4358_7778195_7421102,4358_589 -4358_80775,205,4358_14830,Sandymount,3926,1,4358_7778195_7421105,4358_589 -4358_80775,205,4358_14831,Sandymount,3704,1,4358_7778195_7421107,4358_589 -4358_80775,96,4358_14832,Sandymount,10979,1,4358_7778195_7421104,4358_589 -4358_80775,205,4358_14833,Sandymount,1414,1,4358_7778195_3421005,4358_589 -4358_80775,205,4358_14834,Sandymount,3934,1,4358_7778195_7421111,4358_589 -4358_80775,205,4358_14835,Sandymount,3943,1,4358_7778195_7421112,4358_589 -4358_80775,96,4358_14836,Sandymount,10998,1,4358_7778195_7421103,4358_590 -4358_80775,205,4358_14837,Sandymount,3751,1,4358_7778195_7421113,4358_589 -4358_80775,205,4358_14839,Sandymount,3896,1,4358_7778195_7421115,4358_589 -4358_80682,205,4358_1484,Grange Castle,6892,0,4358_7778195_8013011,4358_51 -4358_80775,205,4358_14840,Sandymount,4041,1,4358_7778195_7421116,4358_589 -4358_80775,205,4358_14841,Sandymount,3895,1,4358_7778195_7421117,4358_589 -4358_80775,96,4358_14842,Sandymount,10915,1,4358_7778195_7421105,4358_589 -4358_80775,205,4358_14843,Sandymount,4042,1,4358_7778195_7421118,4358_589 -4358_80775,205,4358_14844,Sandymount,6422,1,4358_7778195_3421502,4358_589 -4358_80775,205,4358_14845,Sandymount,3910,1,4358_7778195_7421119,4358_589 -4358_80775,205,4358_14846,Sandymount,6424,1,4358_7778195_3421503,4358_589 -4358_80775,205,4358_14847,Sandymount,3739,1,4358_7778195_7421108,4358_589 -4358_80775,205,4358_14848,Sandymount,1403,1,4358_7778195_3421007,4358_589 -4358_80682,96,4358_1485,Grange Castle,13670,0,4358_7778195_8013016,4358_51 -4358_80775,96,4358_14850,Sandymount,11072,1,4358_7778195_7421101,4358_590 -4358_80775,205,4358_14851,Sandymount,3643,1,4358_7778195_7421121,4358_589 -4358_80775,205,4358_14852,Sandymount,3965,1,4358_7778195_7421122,4358_589 -4358_80775,205,4358_14853,Sandymount,3971,1,4358_7778195_7421123,4358_589 -4358_80775,96,4358_14854,Sandymount,10937,1,4358_7778195_7421102,4358_589 -4358_80775,205,4358_14856,Sandymount,3801,1,4358_7778195_7421124,4358_589 -4358_80775,205,4358_14857,Sandymount,1436,1,4358_7778195_3421003,4358_589 -4358_80775,205,4358_14858,Sandymount,3780,1,4358_7778195_7421102,4358_589 -4358_80775,96,4358_14859,Sandymount,9022,1,4358_7778195_3421002,4358_589 -4358_80775,205,4358_14861,Sandymount,3917,1,4358_7778195_7421104,4358_589 -4358_80775,96,4358_14862,Sandymount,9032,1,4358_7778195_3421003,4358_589 -4358_80775,205,4358_14864,Sandymount,3928,1,4358_7778195_7421105,4358_589 -4358_80775,96,4358_14865,Sandymount,11000,1,4358_7778195_7421103,4358_589 -4358_80775,205,4358_14867,Sandymount,3841,1,4358_7778195_7421109,4358_589 -4358_80775,96,4358_14868,Sandymount,10917,1,4358_7778195_7421105,4358_589 -4358_80682,205,4358_1487,Grange Castle,6907,0,4358_7778195_8013015,4358_51 -4358_80775,205,4358_14870,Sandymount,1439,1,4358_7778195_3421006,4358_589 -4358_80775,96,4358_14871,Sandymount,11074,1,4358_7778195_7421101,4358_589 -4358_80775,205,4358_14873,Sandymount,4044,1,4358_7778195_7421118,4358_589 -4358_80775,96,4358_14874,Sandymount,10974,1,4358_7778195_7421109,4358_589 -4358_80775,205,4358_14876,Sandymount,1472,1,4358_7778195_3421014,4358_589 -4358_80775,96,4358_14877,Sandymount,10990,1,4358_7778195_7421108,4358_589 -4358_80775,205,4358_14879,Sandymount,1380,1,4358_7778195_3421002,4358_589 -4358_80682,96,4358_1488,Grange Castle,13662,0,4358_7778195_8013013,4358_51 -4358_80775,96,4358_14880,Sandymount,10983,1,4358_7778195_7421104,4358_589 -4358_80775,205,4358_14882,Sandymount,3948,1,4358_7778195_7421103,4358_589 -4358_80775,96,4358_14883,Sandymount,10928,1,4358_7778195_7421107,4358_589 -4358_80775,205,4358_14885,Sandymount,3930,1,4358_7778195_7421105,4358_589 -4358_80775,96,4358_14886,Sandymount,11002,1,4358_7778195_7421103,4358_589 -4358_80775,205,4358_14888,Sandymount,1418,1,4358_7778195_3421005,4358_589 -4358_80775,96,4358_14889,Sandymount,10919,1,4358_7778195_7421105,4358_589 -4358_80775,205,4358_14891,Sandymount,3938,1,4358_7778195_7421111,4358_589 -4358_80775,96,4358_14892,Sandymount,11076,1,4358_7778195_7421101,4358_589 -4358_80775,205,4358_14894,Sandymount,3812,1,4358_7778195_7421114,4358_589 -4358_80775,96,4358_14895,Sandymount,10976,1,4358_7778195_7421109,4358_589 -4358_80775,205,4358_14897,Sandymount,3743,1,4358_7778195_7421108,4358_589 -4358_80775,96,4358_14898,Sandymount,10992,1,4358_7778195_7421108,4358_589 -4358_80760,205,4358_149,Shaw street,1600,0,4358_7778195_9001005,4358_1 -4358_80682,205,4358_1490,Grange Castle,6988,0,4358_7778195_8013022,4358_51 -4358_80775,205,4358_14900,Sandymount,3969,1,4358_7778195_7421122,4358_589 -4358_80775,205,4358_14901,Sandymount,3764,1,4358_7778195_7421126,4358_589 -4358_80775,96,4358_14903,Sandymount,10985,1,4358_7778195_7421104,4358_589 -4358_80775,205,4358_14904,Sandymount,3950,1,4358_7778195_7421103,4358_589 -4358_80775,96,4358_14906,Sandymount,10930,1,4358_7778195_7421107,4358_589 -4358_80775,205,4358_14907,Sandymount,3921,1,4358_7778195_7421104,4358_589 -4358_80775,205,4358_14908,Sandymount,3932,1,4358_7778195_7421105,4358_589 -4358_80775,96,4358_14910,Sandymount,11004,1,4358_7778195_7421103,4358_590 -4358_80775,205,4358_14911,Sandymount,3660,1,4358_7778195_7421130,4358_589 -4358_80775,96,4358_14913,Sandymount,10921,1,4358_7778195_7421105,4358_590 -4358_80775,205,4358_14914,Sandymount,3845,1,4358_7778195_7421109,4358_589 -4358_80775,96,4358_14915,Sandymount,11078,1,4358_7778195_7421101,4358_589 -4358_80775,205,4358_14917,Sandymount,1406,1,4358_7778195_3421020,4358_589 -4358_80775,96,4358_14918,Sandymount,10978,1,4358_7778195_7421109,4358_589 -4358_80682,96,4358_1492,Grange Castle,13609,0,4358_7778195_8013004,4358_55 -4358_80775,205,4358_14920,Sandymount,4048,1,4358_7778195_7421118,4358_589 -4358_80775,96,4358_14921,Sandymount,10994,1,4358_7778195_7421108,4358_589 -4358_80775,205,4358_14923,Sandymount,3787,1,4358_7778195_7421131,4358_589 -4358_80775,96,4358_14924,Sandymount,10987,1,4358_7778195_7421104,4358_589 -4358_80775,205,4358_14926,Sandymount,3893,1,4358_7778195_7421134,4358_589 -4358_80775,96,4358_14927,Sandymount,10932,1,4358_7778195_7421107,4358_589 -4358_80775,205,4358_14929,Sandymount,6709,1,4358_7778195_3823107,4358_589 -4358_80682,205,4358_1493,Grange Castle,6995,0,4358_7778195_8013024,4358_51 -4358_80775,96,4358_14930,Sandymount,11006,1,4358_7778195_7421103,4358_589 -4358_80775,205,4358_14932,Sandymount,1348,1,4358_7778195_3421024,4358_589 -4358_80775,96,4358_14934,Sandymount,10923,1,4358_7778195_7421105,4358_590 -4358_80775,205,4358_14935,Sandymount,1422,1,4358_7778195_3421005,4358_589 -4358_80775,96,4358_14937,Sandymount,11080,1,4358_7778195_7421101,4358_589 -4358_80775,205,4358_14938,Sandymount,3942,1,4358_7778195_7421111,4358_589 -4358_80775,96,4358_14939,Sandymount,10945,1,4358_7778195_7421102,4358_589 -4358_80682,205,4358_1494,Grange Castle,6978,0,4358_7778195_8013019,4358_51 -4358_80775,205,4358_14941,Sandymount,3816,1,4358_7778195_7421114,4358_589 -4358_80775,96,4358_14943,Sandymount,9040,1,4358_7778195_3421003,4358_590 -4358_80775,96,4358_14944,Sandymount,10934,1,4358_7778195_7421107,4358_589 -4358_80775,205,4358_14946,Sandymount,1463,1,4358_7778195_3421025,4358_589 -4358_80775,96,4358_14947,Sandymount,9073,1,4358_7778195_3421001,4358_589 -4358_80775,205,4358_14949,Sandymount,1446,1,4358_7778195_3421028,4358_589 -4358_80775,205,4358_14950,Sandymount,1458,1,4358_7778195_3421029,4358_589 -4358_80775,96,4358_14952,Sandymount,9042,1,4358_7778195_3421003,4358_590 -4358_80775,205,4358_14953,Sandymount,1479,1,4358_7778195_3421027,4358_589 -4358_80775,96,4358_14954,Sandymount,9058,1,4358_7778195_3421004,4358_589 -4358_80775,205,4358_14956,Sandymount,1455,1,4358_7778195_3421030,4358_589 -4358_80775,96,4358_14958,Sandymount,9079,1,4358_7778195_3421005,4358_590 -4358_80775,96,4358_14959,Sandymount,8955,1,4358_7778195_3421006,4358_589 -4358_80682,96,4358_1496,Grange Castle,13622,0,4358_7778195_8013006,4358_57 -4358_80775,205,4358_14960,Sandymount,1467,1,4358_7778195_3421025,4358_590 -4358_80776,205,4358_14962,Adamstown Station,1434,0,4358_7778195_3421003,4358_591 -4358_80776,96,4358_14964,Adamstown Station,9029,0,4358_7778195_3421003,4358_591 -4358_80776,205,4358_14965,Adamstown Station,1398,0,4358_7778195_3421001,4358_591 -4358_80776,96,4358_14966,Adamstown Station,9045,0,4358_7778195_3421004,4358_591 -4358_80776,205,4358_14968,Adamstown Station,1402,0,4358_7778195_3421007,4358_591 -4358_80776,96,4358_14969,Adamstown Station,9062,0,4358_7778195_3421001,4358_591 -4358_80682,205,4358_1497,Grange Castle,6825,0,4358_7778195_8013005,4358_51 -4358_80776,205,4358_14970,Adamstown Station,1468,0,4358_7778195_3421010,4358_591 -4358_80776,96,4358_14971,Adamstown Station,10956,0,4358_7778195_7421106,4358_591 -4358_80776,205,4358_14972,Adamstown Station,3779,0,4358_7778195_7421102,4358_591 -4358_80776,205,4358_14974,Adamstown Station,3916,0,4358_7778195_7421104,4358_591 -4358_80776,96,4358_14975,Adamstown Station,9021,0,4358_7778195_3421002,4358_591 -4358_80776,205,4358_14976,Adamstown Station,3927,0,4358_7778195_7421105,4358_591 -4358_80776,96,4358_14977,Adamstown Station,9031,0,4358_7778195_3421003,4358_591 -4358_80776,205,4358_14978,Adamstown Station,1415,0,4358_7778195_3421005,4358_593 -4358_80776,205,4358_14980,Adamstown Station,3935,0,4358_7778195_7421111,4358_591 -4358_80776,96,4358_14981,Adamstown Station,10999,0,4358_7778195_7421103,4358_591 -4358_80776,205,4358_14983,Adamstown Station,3809,0,4358_7778195_7421114,4358_591 -4358_80776,96,4358_14984,Adamstown Station,10916,0,4358_7778195_7421105,4358_591 -4358_80776,205,4358_14986,Adamstown Station,3911,0,4358_7778195_7421119,4358_591 -4358_80776,96,4358_14987,Adamstown Station,11073,0,4358_7778195_7421101,4358_591 -4358_80776,205,4358_14989,Adamstown Station,1471,0,4358_7778195_3421014,4358_591 -4358_80682,96,4358_1499,Grange Castle,13637,0,4358_7778195_8013008,4358_55 -4358_80776,96,4358_14990,Adamstown Station,10938,0,4358_7778195_7421102,4358_591 -4358_80776,205,4358_14992,Adamstown Station,1379,0,4358_7778195_3421002,4358_591 -4358_80776,96,4358_14993,Adamstown Station,9023,0,4358_7778195_3421002,4358_591 -4358_80776,205,4358_14995,Adamstown Station,3947,0,4358_7778195_7421103,4358_591 -4358_80776,96,4358_14996,Adamstown Station,9033,0,4358_7778195_3421003,4358_591 -4358_80776,205,4358_14998,Adamstown Station,3929,0,4358_7778195_7421105,4358_591 -4358_80776,96,4358_14999,Adamstown Station,10946,0,4358_7778195_7421110,4358_591 -4358_80760,96,4358_15,Shaw street,9488,0,4358_7778195_9001004,4358_1 -4358_80682,205,4358_1500,Grange Castle,7015,0,4358_7778195_8013029,4358_51 -4358_80776,205,4358_15001,Adamstown Station,3842,0,4358_7778195_7421109,4358_591 -4358_80776,96,4358_15002,Adamstown Station,9049,0,4358_7778195_3421004,4358_591 -4358_80776,205,4358_15004,Adamstown Station,1440,0,4358_7778195_3421006,4358_591 -4358_80776,96,4358_15005,Adamstown Station,9066,0,4358_7778195_3421001,4358_591 -4358_80776,205,4358_15007,Adamstown Station,4045,0,4358_7778195_7421118,4358_591 -4358_80776,96,4358_15008,Adamstown Station,10960,0,4358_7778195_7421106,4358_591 -4358_80776,205,4358_15010,Adamstown Station,1473,0,4358_7778195_3421014,4358_591 -4358_80776,96,4358_15011,Adamstown Station,10940,0,4358_7778195_7421102,4358_591 -4358_80776,205,4358_15013,Adamstown Station,1381,0,4358_7778195_3421002,4358_591 -4358_80776,96,4358_15014,Adamstown Station,9025,0,4358_7778195_3421002,4358_591 -4358_80776,205,4358_15016,Adamstown Station,3949,0,4358_7778195_7421103,4358_591 -4358_80776,96,4358_15017,Adamstown Station,9035,0,4358_7778195_3421003,4358_591 -4358_80776,205,4358_15019,Adamstown Station,3931,0,4358_7778195_7421105,4358_591 -4358_80682,96,4358_1502,Grange Castle,13658,0,4358_7778195_8013012,4358_55 -4358_80776,96,4358_15020,Adamstown Station,10948,0,4358_7778195_7421110,4358_591 -4358_80776,205,4358_15022,Adamstown Station,1419,0,4358_7778195_3421005,4358_591 -4358_80776,96,4358_15023,Adamstown Station,9051,0,4358_7778195_3421004,4358_591 -4358_80776,205,4358_15025,Adamstown Station,3939,0,4358_7778195_7421111,4358_591 -4358_80776,205,4358_15026,Adamstown Station,6476,0,4358_7778195_3421604,4358_591 -4358_80776,96,4358_15027,Adamstown Station,9068,0,4358_7778195_3421001,4358_591 -4358_80776,205,4358_15029,Adamstown Station,1442,0,4358_7778195_3421006,4358_591 -4358_80682,205,4358_1503,Grange Castle,6876,0,4358_7778195_8013008,4358_51 -4358_80776,205,4358_15030,Adamstown Station,3813,0,4358_7778195_7421114,4358_591 -4358_80776,96,4358_15031,Adamstown Station,10962,0,4358_7778195_7421106,4358_591 -4358_80776,205,4358_15033,Adamstown Station,1349,0,4358_7778195_3421017,4358_592 -4358_80776,205,4358_15034,Adamstown Station,1411,0,4358_7778195_3421016,4358_591 -4358_80776,205,4358_15035,Adamstown Station,1405,0,4358_7778195_3421020,4358_592 -4358_80776,205,4358_15036,Adamstown Station,1433,0,4358_7778195_3421021,4358_592 -4358_80776,205,4358_15037,Adamstown Station,1387,0,4358_7778195_3421018,4358_591 -4358_80776,96,4358_15038,Adamstown Station,10942,0,4358_7778195_7421102,4358_591 -4358_80776,205,4358_15040,Adamstown Station,3786,0,4358_7778195_7421131,4358_591 -4358_80776,205,4358_15041,Adamstown Station,3960,0,4358_7778195_7421132,4358_592 -4358_80776,205,4358_15042,Adamstown Station,1519,0,4358_7778195_3823106,4358_591 -4358_80776,96,4358_15043,Adamstown Station,9027,0,4358_7778195_3421002,4358_591 -4358_80776,205,4358_15044,Adamstown Station,3636,0,4358_7778195_7872210,4358_592 -4358_80776,205,4358_15046,Adamstown Station,3892,0,4358_7778195_7421134,4358_591 -4358_80776,205,4358_15047,Adamstown Station,1401,0,4358_7778195_3421022,4358_592 -4358_80776,205,4358_15048,Adamstown Station,6708,0,4358_7778195_3823107,4358_591 -4358_80776,96,4358_15049,Adamstown Station,9037,0,4358_7778195_3421003,4358_591 -4358_80682,96,4358_1505,Grange Castle,13603,0,4358_7778195_8013003,4358_55 -4358_80776,205,4358_15051,Adamstown Station,1395,0,4358_7778195_3421023,4358_591 -4358_80776,205,4358_15052,Adamstown Station,3678,0,4358_7778195_7421136,4358_592 -4358_80776,205,4358_15053,Adamstown Station,3922,0,4358_7778195_7421104,4358_591 -4358_80776,96,4358_15054,Adamstown Station,10950,0,4358_7778195_7421110,4358_591 -4358_80776,205,4358_15055,Adamstown Station,6478,0,4358_7778195_3421608,4358_591 -4358_80776,205,4358_15057,Adamstown Station,3723,0,4358_7778195_7421137,4358_591 -4358_80776,205,4358_15058,Adamstown Station,1347,0,4358_7778195_3421024,4358_591 -4358_80776,96,4358_15059,Adamstown Station,9053,0,4358_7778195_3421004,4358_591 -4358_80682,205,4358_1506,Grange Castle,6887,0,4358_7778195_8013010,4358_51 -4358_80776,205,4358_15061,Adamstown Station,3661,0,4358_7778195_7421130,4358_591 -4358_80776,205,4358_15062,Adamstown Station,3846,0,4358_7778195_7421109,4358_591 -4358_80776,96,4358_15063,Adamstown Station,9070,0,4358_7778195_3421001,4358_591 -4358_80776,205,4358_15065,Adamstown Station,1407,0,4358_7778195_3421020,4358_591 -4358_80776,96,4358_15066,Adamstown Station,10964,0,4358_7778195_7421106,4358_591 -4358_80776,96,4358_15068,Adamstown Station,10944,0,4358_7778195_7421102,4358_591 -4358_80776,205,4358_15070,Adamstown Station,4049,0,4358_7778195_7421118,4358_593 -4358_80776,96,4358_15071,Adamstown Station,9039,0,4358_7778195_3421003,4358_591 -4358_80776,205,4358_15072,Adamstown Station,1385,0,4358_7778195_3421002,4358_591 -4358_80776,96,4358_15074,Adamstown Station,10933,0,4358_7778195_7421107,4358_591 -4358_80776,205,4358_15075,Adamstown Station,1462,0,4358_7778195_3421025,4358_591 -4358_80776,96,4358_15077,Adamstown Station,9055,0,4358_7778195_3421004,4358_591 -4358_80776,205,4358_15078,Adamstown Station,1476,0,4358_7778195_3421027,4358_591 -4358_80682,205,4358_1508,Grange Castle,6815,0,4358_7778195_8013003,4358_55 -4358_80776,96,4358_15080,Adamstown Station,9072,0,4358_7778195_3421001,4358_591 -4358_80776,205,4358_15082,Adamstown Station,1445,0,4358_7778195_3421028,4358_591 -4358_80776,96,4358_15083,Adamstown Station,9076,0,4358_7778195_3421005,4358_591 -4358_80776,205,4358_15084,Adamstown Station,1409,0,4358_7778195_3421020,4358_591 -4358_80776,205,4358_15086,Adamstown Station,1464,0,4358_7778195_3421025,4358_591 -4358_80776,96,4358_15087,Adamstown Station,8952,0,4358_7778195_3421006,4358_591 -4358_80776,205,4358_15089,Adamstown Station,1447,0,4358_7778195_3421028,4358_591 -4358_80682,96,4358_1509,Grange Castle,13616,0,4358_7778195_8013005,4358_57 -4358_80776,96,4358_15091,Adamstown Station,9006,0,4358_7778195_3421007,4358_593 -4358_80776,205,4358_15092,Adamstown Station,1459,0,4358_7778195_3421029,4358_591 -4358_80776,96,4358_15094,Adamstown Station,9043,0,4358_7778195_3421003,4358_593 -4358_80776,205,4358_15095,Adamstown Station,1480,0,4358_7778195_3421027,4358_591 -4358_80776,96,4358_15096,Adamstown Station,9059,0,4358_7778195_3421004,4358_591 -4358_80776,205,4358_15098,Adamstown Station,1456,0,4358_7778195_3421030,4358_591 -4358_80760,96,4358_151,Shaw street,9466,0,4358_7778195_9001003,4358_1 -4358_80682,205,4358_1510,Grange Castle,6991,0,4358_7778195_8013023,4358_51 -4358_80776,96,4358_15100,Adamstown Station,9080,0,4358_7778195_3421005,4358_593 -4358_80776,205,4358_15101,Sandymount,1376,1,4358_7778195_3421002,4358_594 -4358_80776,96,4358_15103,Sandymount,11070,1,4358_7778195_7421101,4358_595 -4358_80776,205,4358_15104,Sandymount,3944,1,4358_7778195_7421103,4358_594 -4358_80776,205,4358_15105,Sandymount,3924,1,4358_7778195_7421101,4358_594 -4358_80776,96,4358_15106,Sandymount,9020,1,4358_7778195_3421002,4358_594 -4358_80776,205,4358_15107,Sandymount,3683,1,4358_7778195_7421106,4358_594 -4358_80776,205,4358_15108,Sandymount,1435,1,4358_7778195_3421003,4358_594 -4358_80682,96,4358_1511,Grange Castle,13669,0,4358_7778195_8013015,4358_51 -4358_80776,96,4358_15110,Sandymount,9030,1,4358_7778195_3421003,4358_594 -4358_80776,205,4358_15111,Sandymount,3839,1,4358_7778195_7421109,4358_594 -4358_80776,205,4358_15112,Sandymount,1437,1,4358_7778195_3421006,4358_594 -4358_80776,205,4358_15113,Sandymount,1394,1,4358_7778195_3421008,4358_594 -4358_80776,205,4358_15114,Sandymount,3808,1,4358_7778195_7421114,4358_594 -4358_80776,96,4358_15115,Sandymount,9046,1,4358_7778195_3421004,4358_594 -4358_80776,205,4358_15116,Sandymount,1451,1,4358_7778195_3421009,4358_594 -4358_80776,205,4358_15117,Sandymount,1413,1,4358_7778195_3421004,4358_594 -4358_80776,205,4358_15118,Sandymount,6475,1,4358_7778195_3421504,4358_594 -4358_80776,205,4358_15119,Sandymount,1399,1,4358_7778195_3421001,4358_594 -4358_80776,205,4358_15120,Sandymount,1450,1,4358_7778195_3421011,4358_594 -4358_80776,96,4358_15122,Sandymount,9063,1,4358_7778195_3421001,4358_594 -4358_80776,205,4358_15123,Sandymount,1452,1,4358_7778195_3421012,4358_594 -4358_80776,205,4358_15124,Sandymount,7874,1,4358_7778195_7421514,4358_594 -4358_80776,205,4358_15125,Sandymount,3684,1,4358_7778195_7421120,4358_594 -4358_80776,205,4358_15126,Sandymount,1404,1,4358_7778195_3421013,4358_594 -4358_80776,205,4358_15127,Sandymount,1470,1,4358_7778195_3421014,4358_594 -4358_80776,96,4358_15128,Sandymount,10957,1,4358_7778195_7421106,4358_594 -4358_80682,205,4358_1513,Grange Castle,6896,0,4358_7778195_8013012,4358_51 -4358_80776,205,4358_15130,Sandymount,1461,1,4358_7778195_3421015,4358_594 -4358_80776,205,4358_15131,Sandymount,3953,1,4358_7778195_7421110,4358_594 -4358_80776,205,4358_15132,Sandymount,1469,1,4358_7778195_3421010,4358_594 -4358_80776,96,4358_15134,Sandymount,10988,1,4358_7778195_7421108,4358_595 -4358_80776,205,4358_15135,Sandymount,1378,1,4358_7778195_3421002,4358_594 -4358_80776,205,4358_15136,Sandymount,3946,1,4358_7778195_7421103,4358_594 -4358_80776,96,4358_15137,Sandymount,10981,1,4358_7778195_7421104,4358_594 -4358_80776,205,4358_15139,Sandymount,3706,1,4358_7778195_7421107,4358_594 -4358_80776,96,4358_15140,Sandymount,10926,1,4358_7778195_7421107,4358_594 -4358_80776,205,4358_15142,Sandymount,1416,1,4358_7778195_3421005,4358_594 -4358_80776,96,4358_15143,Sandymount,9048,1,4358_7778195_3421004,4358_594 -4358_80776,205,4358_15145,Sandymount,3936,1,4358_7778195_7421111,4358_594 -4358_80776,96,4358_15146,Sandymount,9065,1,4358_7778195_3421001,4358_594 -4358_80776,205,4358_15148,Sandymount,3810,1,4358_7778195_7421114,4358_594 -4358_80776,96,4358_15149,Sandymount,10959,1,4358_7778195_7421106,4358_594 -4358_80682,96,4358_1515,Grange Castle,13629,0,4358_7778195_8013007,4358_55 -4358_80776,205,4358_15151,Sandymount,3741,1,4358_7778195_7421108,4358_594 -4358_80776,96,4358_15152,Sandymount,10939,1,4358_7778195_7421102,4358_594 -4358_80776,205,4358_15154,Sandymount,3967,1,4358_7778195_7421122,4358_594 -4358_80776,96,4358_15155,Sandymount,9024,1,4358_7778195_3421002,4358_594 -4358_80776,205,4358_15157,Sandymount,3782,1,4358_7778195_7421102,4358_594 -4358_80776,96,4358_15158,Sandymount,9034,1,4358_7778195_3421003,4358_594 -4358_80682,205,4358_1516,Grange Castle,6900,0,4358_7778195_8013014,4358_51 -4358_80776,205,4358_15160,Sandymount,3919,1,4358_7778195_7421104,4358_594 -4358_80776,96,4358_15161,Sandymount,10947,1,4358_7778195_7421110,4358_594 -4358_80776,205,4358_15163,Sandymount,3956,1,4358_7778195_7421125,4358_594 -4358_80776,96,4358_15164,Sandymount,9050,1,4358_7778195_3421004,4358_594 -4358_80776,205,4358_15166,Sandymount,3843,1,4358_7778195_7421109,4358_594 -4358_80776,96,4358_15167,Sandymount,9067,1,4358_7778195_3421001,4358_594 -4358_80776,205,4358_15169,Sandymount,1441,1,4358_7778195_3421006,4358_594 -4358_80776,96,4358_15170,Sandymount,10961,1,4358_7778195_7421106,4358_594 -4358_80776,205,4358_15172,Sandymount,4046,1,4358_7778195_7421118,4358_594 -4358_80776,96,4358_15174,Sandymount,10941,1,4358_7778195_7421102,4358_594 -4358_80776,205,4358_15175,Sandymount,1474,1,4358_7778195_3421014,4358_594 -4358_80776,205,4358_15176,Sandymount,1382,1,4358_7778195_3421002,4358_594 -4358_80776,96,4358_15178,Sandymount,9026,1,4358_7778195_3421002,4358_594 -4358_80776,205,4358_15179,Sandymount,3784,1,4358_7778195_7421102,4358_594 -4358_80682,96,4358_1518,Grange Castle,13665,0,4358_7778195_8013014,4358_55 -4358_80776,96,4358_15180,Sandymount,9036,1,4358_7778195_3421003,4358_594 -4358_80776,205,4358_15182,Sandymount,3681,1,4358_7778195_7421127,4358_594 -4358_80776,205,4358_15183,Sandymount,3954,1,4358_7778195_7421128,4358_594 -4358_80776,96,4358_15184,Sandymount,10949,1,4358_7778195_7421110,4358_594 -4358_80776,205,4358_15186,Sandymount,3958,1,4358_7778195_7421125,4358_594 -4358_80776,96,4358_15187,Sandymount,9052,1,4358_7778195_3421004,4358_594 -4358_80776,205,4358_15189,Sandymount,1420,1,4358_7778195_3421005,4358_594 -4358_80682,205,4358_1519,Grange Castle,7030,0,4358_7778195_8013034,4358_51 -4358_80776,96,4358_15190,Sandymount,9069,1,4358_7778195_3421001,4358_594 -4358_80776,205,4358_15192,Sandymount,3940,1,4358_7778195_7421111,4358_594 -4358_80776,96,4358_15193,Sandymount,10963,1,4358_7778195_7421106,4358_594 -4358_80776,205,4358_15195,Sandymount,3814,1,4358_7778195_7421114,4358_594 -4358_80776,96,4358_15196,Sandymount,10943,1,4358_7778195_7421102,4358_594 -4358_80776,205,4358_15198,Sandymount,1520,1,4358_7778195_3823106,4358_594 -4358_80760,205,4358_152,Shaw street,1553,0,4358_7778195_9001010,4358_1 -4358_80682,96,4358_1520,Grange Castle,13644,0,4358_7778195_8013009,4358_51 -4358_80776,96,4358_15200,Sandymount,9028,1,4358_7778195_3421002,4358_594 -4358_80776,205,4358_15201,Sandymount,1384,1,4358_7778195_3421002,4358_594 -4358_80776,96,4358_15203,Sandymount,9038,1,4358_7778195_3421003,4358_594 -4358_80776,205,4358_15204,Sandymount,1396,1,4358_7778195_3421023,4358_594 -4358_80776,96,4358_15206,Sandymount,10951,1,4358_7778195_7421110,4358_594 -4358_80776,205,4358_15207,Sandymount,3724,1,4358_7778195_7421137,4358_594 -4358_80776,96,4358_15209,Sandymount,9054,1,4358_7778195_3421004,4358_594 -4358_80682,205,4358_1521,Grange Castle,6831,0,4358_7778195_8013006,4358_55 -4358_80776,205,4358_15210,Sandymount,3662,1,4358_7778195_7421130,4358_594 -4358_80776,96,4358_15211,Sandymount,9071,1,4358_7778195_3421001,4358_594 -4358_80776,205,4358_15213,Sandymount,3847,1,4358_7778195_7421109,4358_594 -4358_80776,96,4358_15215,Sandymount,9075,1,4358_7778195_3421005,4358_594 -4358_80776,205,4358_15216,Sandymount,1408,1,4358_7778195_3421020,4358_594 -4358_80776,96,4358_15217,Sandymount,10996,1,4358_7778195_7421108,4358_594 -4358_80776,205,4358_15219,Sandymount,1386,1,4358_7778195_3421002,4358_594 -4358_80776,96,4358_15220,Sandymount,8951,1,4358_7778195_3421006,4358_594 -4358_80776,96,4358_15222,Sandymount,9056,1,4358_7778195_3421004,4358_594 -4358_80776,205,4358_15224,Sandymount,1477,1,4358_7778195_3421027,4358_596 -4358_80776,205,4358_15226,Sandymount,1453,1,4358_7778195_3421030,4358_595 -4358_80776,96,4358_15227,Sandymount,9077,1,4358_7778195_3421005,4358_596 -4358_80776,205,4358_15228,Sandymount,1465,1,4358_7778195_3421025,4358_594 -4358_80776,96,4358_15229,Sandymount,8953,1,4358_7778195_3421006,4358_594 -4358_80682,205,4358_1523,Grange Castle,7033,0,4358_7778195_8013035,4358_53 -4358_80776,205,4358_15231,Sandymount,1448,1,4358_7778195_3421028,4358_594 -4358_80776,96,4358_15233,Sandymount,9007,1,4358_7778195_3421007,4358_595 -4358_80776,205,4358_15234,Sandymount,1460,1,4358_7778195_3421029,4358_594 -4358_80776,96,4358_15236,Sandymount,9044,1,4358_7778195_3421003,4358_595 -4358_80776,205,4358_15237,Sandymount,1481,1,4358_7778195_3421027,4358_594 -4358_80776,96,4358_15238,Sandymount,9060,1,4358_7778195_3421004,4358_594 -4358_80777,96,4358_15240,Maynooth,9083,0,4358_7778195_3423005,4358_597 -4358_80777,205,4358_15241,Maynooth,1004,0,4358_7778195_3423008,4358_597 -4358_80777,205,4358_15243,Maynooth,1052,0,4358_7778195_3423011,4358_597 -4358_80777,96,4358_15244,Maynooth,9232,0,4358_7778195_3423009,4358_597 -4358_80777,205,4358_15245,Maynooth,1079,0,4358_7778195_3423013,4358_597 -4358_80777,205,4358_15246,Maynooth,1085,0,4358_7778195_3423016,4358_597 -4358_80777,96,4358_15247,Maynooth,9126,0,4358_7778195_3423012,4358_597 -4358_80777,205,4358_15249,Maynooth,926,0,4358_7778195_3423002,4358_597 -4358_80682,96,4358_1525,Grange Castle,13649,0,4358_7778195_8013010,4358_55 -4358_80777,96,4358_15250,Maynooth,9200,0,4358_7778195_3423003,4358_597 -4358_80777,205,4358_15251,Maynooth,917,0,4358_7778195_3423018,4358_597 -4358_80777,205,4358_15252,Maynooth,939,0,4358_7778195_3423007,4358_597 -4358_80777,96,4358_15253,Maynooth,9103,0,4358_7778195_3423008,4358_597 -4358_80777,205,4358_15255,Maynooth,1033,0,4358_7778195_3423020,4358_597 -4358_80777,96,4358_15256,Maynooth,9085,0,4358_7778195_3423005,4358_597 -4358_80777,205,4358_15258,Maynooth,1006,0,4358_7778195_3423008,4358_597 -4358_80777,96,4358_15259,Maynooth,9234,0,4358_7778195_3423009,4358_597 -4358_80682,205,4358_1526,Grange Castle,7007,0,4358_7778195_8013027,4358_51 -4358_80777,205,4358_15261,Maynooth,1054,0,4358_7778195_3423011,4358_597 -4358_80777,96,4358_15262,Maynooth,9128,0,4358_7778195_3423012,4358_597 -4358_80777,205,4358_15264,Maynooth,1074,0,4358_7778195_3423012,4358_597 -4358_80777,96,4358_15265,Maynooth,9202,0,4358_7778195_3423003,4358_597 -4358_80777,205,4358_15267,Maynooth,1087,0,4358_7778195_3423016,4358_597 -4358_80777,96,4358_15269,Maynooth,9237,0,4358_7778195_3423014,4358_597 -4358_80682,96,4358_1527,Grange Castle,13676,0,4358_7778195_8013017,4358_51 -4358_80777,205,4358_15270,Maynooth,954,0,4358_7778195_3423004,4358_597 -4358_80777,96,4358_15271,Maynooth,9105,0,4358_7778195_3423008,4358_597 -4358_80777,205,4358_15273,Maynooth,1100,0,4358_7778195_3423019,4358_597 -4358_80777,96,4358_15274,Maynooth,9087,0,4358_7778195_3423005,4358_597 -4358_80777,205,4358_15276,Maynooth,1035,0,4358_7778195_3423020,4358_597 -4358_80777,96,4358_15278,Maynooth,9113,0,4358_7778195_3423017,4358_598 -4358_80777,205,4358_15279,Maynooth,1008,0,4358_7778195_3423008,4358_597 -4358_80777,96,4358_15280,Maynooth,9192,0,4358_7778195_3423007,4358_597 -4358_80777,205,4358_15282,Maynooth,1056,0,4358_7778195_3423011,4358_597 -4358_80777,96,4358_15283,Maynooth,9275,0,4358_7778195_3423001,4358_597 -4358_80777,205,4358_15285,Maynooth,1076,0,4358_7778195_3423012,4358_597 -4358_80777,96,4358_15286,Maynooth,9182,0,4358_7778195_3423002,4358_597 -4358_80777,205,4358_15288,Maynooth,1089,0,4358_7778195_3423016,4358_597 -4358_80777,96,4358_15289,Maynooth,9226,0,4358_7778195_3423006,4358_597 -4358_80682,205,4358_1529,Grange Castle,6714,0,4358_7778195_8013001,4358_51 -4358_80777,205,4358_15291,Maynooth,956,0,4358_7778195_3423004,4358_597 -4358_80777,96,4358_15292,Maynooth,9215,0,4358_7778195_3423004,4358_597 -4358_80777,205,4358_15294,Maynooth,1102,0,4358_7778195_3423019,4358_597 -4358_80777,96,4358_15295,Maynooth,10380,0,4358_7778195_3423020,4358_597 -4358_80777,205,4358_15297,Maynooth,1037,0,4358_7778195_3423020,4358_597 -4358_80777,96,4358_15298,Maynooth,9098,0,4358_7778195_3423011,4358_597 -4358_80682,96,4358_1530,Grange Castle,13586,0,4358_7778195_8013001,4358_51 -4358_80777,205,4358_15300,Maynooth,1000,0,4358_7778195_3423023,4358_597 -4358_80777,96,4358_15301,Maynooth,9242,0,4358_7778195_3423018,4358_597 -4358_80777,205,4358_15303,Maynooth,1021,0,4358_7778195_3423009,4358_597 -4358_80777,96,4358_15304,Maynooth,9132,0,4358_7778195_3423012,4358_597 -4358_80777,205,4358_15305,Maynooth,1058,0,4358_7778195_3423011,4358_597 -4358_80777,205,4358_15307,Maynooth,1110,0,4358_7778195_3423026,4358_597 -4358_80777,96,4358_15308,Maynooth,9259,0,4358_7778195_3423021,4358_598 -4358_80777,96,4358_15309,Maynooth,9206,0,4358_7778195_3423003,4358_597 -4358_80777,205,4358_15311,Maynooth,1078,0,4358_7778195_3423012,4358_597 -4358_80777,96,4358_15313,Maynooth,9256,0,4358_7778195_3423023,4358_597 -4358_80777,205,4358_15314,Maynooth,1106,0,4358_7778195_3423021,4358_598 -4358_80777,96,4358_15316,Maynooth,9162,0,4358_7778195_3423025,4358_597 -4358_80777,205,4358_15317,Maynooth,994,0,4358_7778195_3423005,4358_598 -4358_80777,205,4358_15319,Maynooth,958,0,4358_7778195_3423004,4358_597 -4358_80682,205,4358_1532,Grange Castle,7000,0,4358_7778195_8013025,4358_51 -4358_80777,96,4358_15320,Maynooth,9109,0,4358_7778195_3423008,4358_598 -4358_80777,205,4358_15322,Maynooth,1104,0,4358_7778195_3423019,4358_597 -4358_80777,96,4358_15323,Maynooth,9174,0,4358_7778195_3423027,4358_598 -4358_80777,96,4358_15325,Maynooth,9091,0,4358_7778195_3423005,4358_597 -4358_80777,205,4358_15326,Maynooth,975,0,4358_7778195_3423006,4358_597 -4358_80777,96,4358_15328,Maynooth,9171,0,4358_7778195_3423026,4358_597 -4358_80777,96,4358_15329,Maynooth,9134,0,4358_7778195_3423012,4358_597 -4358_80682,96,4358_1533,Grange Castle,13596,0,4358_7778195_8013002,4358_51 -4358_80777,205,4358_15330,Maynooth,1023,0,4358_7778195_3423009,4358_597 -4358_80777,96,4358_15332,Maynooth,9159,0,4358_7778195_3423029,4358_597 -4358_80777,205,4358_15333,Maynooth,1012,0,4358_7778195_3423008,4358_597 -4358_80777,96,4358_15335,Maynooth,9208,0,4358_7778195_3423003,4358_597 -4358_80777,205,4358_15336,Maynooth,1116,0,4358_7778195_3423029,4358_597 -4358_80777,96,4358_15337,Maynooth,9151,0,4358_7778195_3423030,4358_597 -4358_80777,205,4358_15339,Maynooth,1131,0,4358_7778195_3423031,4358_597 -4358_80777,96,4358_15340,Maynooth,9164,0,4358_7778195_3423025,4358_597 -4358_80777,205,4358_15342,Maynooth,960,0,4358_7778195_3423004,4358_597 -4358_80777,96,4358_15343,Maynooth,9111,0,4358_7778195_3423008,4358_598 -4358_80777,205,4358_15345,Maynooth,1120,0,4358_7778195_3423032,4358_597 -4358_80777,96,4358_15346,Maynooth,9101,0,4358_7778195_3423033,4358_598 -4358_80777,205,4358_15348,Maynooth,962,0,4358_7778195_3423034,4358_597 -4358_80777,96,4358_15349,Maynooth,9265,0,4358_7778195_3423034,4358_598 -4358_80682,205,4358_1535,Grange Castle,7010,0,4358_7778195_8013028,4358_57 -4358_80777,96,4358_15351,Maynooth,9115,0,4358_7778195_3423037,4358_597 -4358_80777,205,4358_15353,Maynooth,1014,0,4358_7778195_3423008,4358_597 -4358_80777,205,4358_15354,Maynooth,1133,0,4358_7778195_3423031,4358_597 -4358_80777,96,4358_15355,Maynooth,9144,0,4358_7778195_3423038,4358_598 -4358_80777,205,4358_15357,Ringsend Road,925,1,4358_7778195_3423002,4358_599 -4358_80777,96,4358_15358,Ringsend Road,9177,1,4358_7778195_3423002,4358_599 -4358_80682,205,4358_1536,Grange Castle,7005,0,4358_7778195_8013026,4358_53 -4358_80777,205,4358_15360,Ringsend Road,938,1,4358_7778195_3423007,4358_599 -4358_80777,96,4358_15361,Ringsend Road,9221,1,4358_7778195_3423006,4358_599 -4358_80777,96,4358_15362,Ringsend Road,9084,1,4358_7778195_3423005,4358_599 -4358_80777,205,4358_15364,Ringsend Road,1005,1,4358_7778195_3423008,4358_599 -4358_80777,96,4358_15365,Ringsend Road,9233,1,4358_7778195_3423009,4358_599 -4358_80777,205,4358_15366,Ringsend Road,1053,1,4358_7778195_3423011,4358_599 -4358_80777,205,4358_15367,Ringsend Road,1026,1,4358_7778195_3423014,4358_599 -4358_80777,205,4358_15368,Ringsend Road,1080,1,4358_7778195_3423013,4358_599 -4358_80777,96,4358_15369,Ringsend Road,9127,1,4358_7778195_3423012,4358_599 -4358_80682,96,4358_1537,Grange Castle,13672,0,4358_7778195_8013016,4358_51 -4358_80777,205,4358_15371,Ringsend Road,1086,1,4358_7778195_3423016,4358_599 -4358_80777,96,4358_15372,Ringsend Road,9201,1,4358_7778195_3423003,4358_599 -4358_80777,205,4358_15374,Ringsend Road,927,1,4358_7778195_3423002,4358_599 -4358_80777,205,4358_15375,Ringsend Road,918,1,4358_7778195_3423018,4358_599 -4358_80777,96,4358_15376,Ringsend Road,9236,1,4358_7778195_3423014,4358_599 -4358_80777,205,4358_15378,Ringsend Road,940,1,4358_7778195_3423007,4358_599 -4358_80777,96,4358_15379,Ringsend Road,9104,1,4358_7778195_3423008,4358_600 -4358_80777,96,4358_15381,Ringsend Road,9086,1,4358_7778195_3423005,4358_599 -4358_80777,205,4358_15382,Ringsend Road,1034,1,4358_7778195_3423020,4358_599 -4358_80777,96,4358_15384,Ringsend Road,9235,1,4358_7778195_3423009,4358_599 -4358_80777,205,4358_15386,Ringsend Road,1007,1,4358_7778195_3423008,4358_599 -4358_80777,96,4358_15387,Ringsend Road,9129,1,4358_7778195_3423012,4358_599 -4358_80777,205,4358_15389,Ringsend Road,1055,1,4358_7778195_3423011,4358_599 -4358_80682,205,4358_1539,Grange Castle,7019,0,4358_7778195_8013030,4358_51 -4358_80777,96,4358_15390,Ringsend Road,9203,1,4358_7778195_3423003,4358_599 -4358_80777,205,4358_15392,Ringsend Road,1075,1,4358_7778195_3423012,4358_599 -4358_80777,96,4358_15393,Ringsend Road,9238,1,4358_7778195_3423014,4358_599 -4358_80777,205,4358_15395,Ringsend Road,1088,1,4358_7778195_3423016,4358_599 -4358_80777,96,4358_15396,Ringsend Road,9140,1,4358_7778195_3423016,4358_599 -4358_80777,205,4358_15398,Ringsend Road,955,1,4358_7778195_3423004,4358_599 -4358_80777,96,4358_15399,Ringsend Road,9106,1,4358_7778195_3423008,4358_599 -4358_80760,96,4358_154,Shaw street,9504,0,4358_7778195_9001004,4358_1 -4358_80777,205,4358_15401,Ringsend Road,1101,1,4358_7778195_3423019,4358_599 -4358_80777,96,4358_15402,Ringsend Road,9088,1,4358_7778195_3423005,4358_599 -4358_80777,205,4358_15404,Ringsend Road,1036,1,4358_7778195_3423020,4358_599 -4358_80777,205,4358_15406,Ringsend Road,1009,1,4358_7778195_3423008,4358_599 -4358_80777,96,4358_15407,Ringsend Road,9114,1,4358_7778195_3423017,4358_599 -4358_80777,96,4358_15408,Ringsend Road,9193,1,4358_7778195_3423007,4358_599 -4358_80682,96,4358_1541,Grange Castle,13678,0,4358_7778195_8013018,4358_55 -4358_80777,205,4358_15410,Ringsend Road,1057,1,4358_7778195_3423011,4358_599 -4358_80777,96,4358_15411,Ringsend Road,9276,1,4358_7778195_3423001,4358_599 -4358_80777,205,4358_15413,Ringsend Road,1077,1,4358_7778195_3423012,4358_599 -4358_80777,96,4358_15414,Ringsend Road,9136,1,4358_7778195_3423022,4358_599 -4358_80777,205,4358_15415,Ringsend Road,1105,1,4358_7778195_3423021,4358_599 -4358_80777,96,4358_15416,Ringsend Road,9183,1,4358_7778195_3423002,4358_599 -4358_80777,205,4358_15418,Ringsend Road,1090,1,4358_7778195_3423016,4358_599 -4358_80777,96,4358_15419,Ringsend Road,9227,1,4358_7778195_3423006,4358_599 -4358_80682,205,4358_1542,Grange Castle,7021,0,4358_7778195_8013031,4358_51 -4358_80777,205,4358_15421,Ringsend Road,1108,1,4358_7778195_3423022,4358_599 -4358_80777,96,4358_15422,Ringsend Road,9161,1,4358_7778195_3423025,4358_599 -4358_80777,205,4358_15423,Ringsend Road,957,1,4358_7778195_3423004,4358_599 -4358_80777,96,4358_15424,Ringsend Road,9216,1,4358_7778195_3423004,4358_599 -4358_80777,205,4358_15426,Ringsend Road,1103,1,4358_7778195_3423019,4358_599 -4358_80777,96,4358_15427,Ringsend Road,10381,1,4358_7778195_3423020,4358_599 -4358_80777,205,4358_15429,Ringsend Road,1038,1,4358_7778195_3423020,4358_599 -4358_80777,96,4358_15430,Ringsend Road,9099,1,4358_7778195_3423011,4358_599 -4358_80777,205,4358_15431,Ringsend Road,1001,1,4358_7778195_3423023,4358_599 -4358_80777,96,4358_15432,Ringsend Road,9243,1,4358_7778195_3423018,4358_599 -4358_80777,205,4358_15434,Ringsend Road,6105,1,4358_7778195_7872231,4358_599 -4358_80777,205,4358_15435,Ringsend Road,1022,1,4358_7778195_3423009,4358_599 -4358_80777,96,4358_15436,Ringsend Road,9133,1,4358_7778195_3423012,4358_599 -4358_80777,205,4358_15438,Ringsend Road,1115,1,4358_7778195_3423028,4358_599 -4358_80777,205,4358_15439,Ringsend Road,1059,1,4358_7778195_3423011,4358_599 -4358_80682,96,4358_1544,Grange Castle,13611,0,4358_7778195_8013004,4358_55 -4358_80777,96,4358_15440,Ringsend Road,9207,1,4358_7778195_3423003,4358_599 -4358_80777,96,4358_15442,Ringsend Road,9257,1,4358_7778195_3423023,4358_599 -4358_80777,205,4358_15443,Ringsend Road,1111,1,4358_7778195_3423026,4358_599 -4358_80777,96,4358_15446,Ringsend Road,9163,1,4358_7778195_3423025,4358_599 -4358_80777,205,4358_15447,Ringsend Road,1107,1,4358_7778195_3423021,4358_599 -4358_80777,96,4358_15449,Ringsend Road,9110,1,4358_7778195_3423008,4358_599 -4358_80682,205,4358_1545,Grange Castle,7026,0,4358_7778195_8013032,4358_51 -4358_80777,205,4358_15450,Ringsend Road,959,1,4358_7778195_3423004,4358_599 -4358_80777,96,4358_15452,Ringsend Road,9092,1,4358_7778195_3423005,4358_599 -4358_80777,205,4358_15453,Ringsend Road,976,1,4358_7778195_3423006,4358_599 -4358_80777,96,4358_15455,Ringsend Road,9135,1,4358_7778195_3423012,4358_599 -4358_80777,205,4358_15456,Ringsend Road,1024,1,4358_7778195_3423009,4358_599 -4358_80777,96,4358_15457,Ringsend Road,9160,1,4358_7778195_3423029,4358_599 -4358_80777,205,4358_15459,Ringsend Road,1013,1,4358_7778195_3423008,4358_599 -4358_80682,205,4358_1546,Grange Castle,7028,0,4358_7778195_8013033,4358_51 -4358_80777,96,4358_15460,Ringsend Road,9152,1,4358_7778195_3423030,4358_599 -4358_80777,205,4358_15462,Ringsend Road,1117,1,4358_7778195_3423029,4358_599 -4358_80777,96,4358_15463,Ringsend Road,9165,1,4358_7778195_3423025,4358_599 -4358_80777,205,4358_15465,Ringsend Road,1132,1,4358_7778195_3423031,4358_599 -4358_80777,205,4358_15466,Ringsend Road,961,1,4358_7778195_3423004,4358_599 -4358_80777,96,4358_15467,Ringsend Road,9112,1,4358_7778195_3423008,4358_600 -4358_80777,205,4358_15469,Ringsend Road,1130,1,4358_7778195_3423037,4358_599 -4358_80777,96,4358_15470,Ringsend Road,9176,1,4358_7778195_3423042,4358_599 -4358_80778,96,4358_15473,Maynooth,9209,0,4358_7778195_3423004,4358_601 -4358_80778,205,4358_15474,Maynooth,967,0,4358_7778195_3423006,4358_602 -4358_80778,205,4358_15475,Maynooth,1015,0,4358_7778195_3423009,4358_601 -4358_80778,96,4358_15476,Maynooth,9188,0,4358_7778195_3423007,4358_601 -4358_80778,205,4358_15477,Maynooth,1072,0,4358_7778195_3423012,4358_601 -4358_80778,96,4358_15479,Maynooth,9271,0,4358_7778195_3423001,4358_601 -4358_80682,96,4358_1548,Grange Castle,13624,0,4358_7778195_8013006,4358_57 -4358_80778,205,4358_15480,Maynooth,941,0,4358_7778195_3423015,4358_601 -4358_80778,205,4358_15481,Maynooth,998,0,4358_7778195_3423003,4358_601 -4358_80778,96,4358_15482,Maynooth,9178,0,4358_7778195_3423002,4358_601 -4358_80778,205,4358_15483,Maynooth,952,0,4358_7778195_3423004,4358_601 -4358_80778,96,4358_15485,Maynooth,9222,0,4358_7778195_3423006,4358_601 -4358_80778,205,4358_15486,Maynooth,1098,0,4358_7778195_3423019,4358_601 -4358_80778,205,4358_15487,Maynooth,969,0,4358_7778195_3423006,4358_601 -4358_80778,96,4358_15488,Maynooth,9211,0,4358_7778195_3423004,4358_601 -4358_80682,205,4358_1549,Grange Castle,7038,0,4358_7778195_8013038,4358_53 -4358_80778,205,4358_15490,Maynooth,1041,0,4358_7778195_3423010,4358_601 -4358_80778,96,4358_15491,Maynooth,9094,0,4358_7778195_3423011,4358_601 -4358_80778,205,4358_15493,Maynooth,1017,0,4358_7778195_3423009,4358_601 -4358_80778,96,4358_15494,Maynooth,9190,0,4358_7778195_3423007,4358_601 -4358_80778,205,4358_15496,Maynooth,1027,0,4358_7778195_3423014,4358_601 -4358_80778,96,4358_15497,Maynooth,9273,0,4358_7778195_3423001,4358_601 -4358_80778,205,4358_15499,Maynooth,943,0,4358_7778195_3423015,4358_601 -4358_80760,205,4358_155,Shaw street,3151,0,4358_7778195_9001004,4358_1 -4358_80778,96,4358_15500,Maynooth,9180,0,4358_7778195_3423002,4358_601 -4358_80778,205,4358_15502,Maynooth,928,0,4358_7778195_3423002,4358_601 -4358_80778,96,4358_15503,Maynooth,9224,0,4358_7778195_3423006,4358_601 -4358_80778,205,4358_15505,Maynooth,919,0,4358_7778195_3423018,4358_601 -4358_80778,96,4358_15506,Maynooth,9213,0,4358_7778195_3423004,4358_601 -4358_80778,205,4358_15508,Maynooth,971,0,4358_7778195_3423006,4358_601 -4358_80778,96,4358_15509,Maynooth,9096,0,4358_7778195_3423011,4358_601 -4358_80682,96,4358_1551,Grange Castle,13639,0,4358_7778195_8013008,4358_55 -4358_80778,205,4358_15511,Maynooth,1043,0,4358_7778195_3423010,4358_601 -4358_80778,96,4358_15512,Maynooth,9240,0,4358_7778195_3423018,4358_601 -4358_80778,205,4358_15514,Maynooth,1019,0,4358_7778195_3423009,4358_601 -4358_80778,96,4358_15515,Maynooth,9130,0,4358_7778195_3423012,4358_601 -4358_80778,205,4358_15517,Maynooth,1029,0,4358_7778195_3423014,4358_601 -4358_80778,96,4358_15518,Maynooth,9204,0,4358_7778195_3423003,4358_601 -4358_80682,205,4358_1552,Grange Castle,6997,0,4358_7778195_8013024,4358_51 -4358_80778,205,4358_15520,Maynooth,945,0,4358_7778195_3423015,4358_601 -4358_80778,96,4358_15521,Maynooth,9239,0,4358_7778195_3423014,4358_601 -4358_80778,205,4358_15523,Maynooth,930,0,4358_7778195_3423002,4358_601 -4358_80778,96,4358_15524,Maynooth,9141,0,4358_7778195_3423016,4358_601 -4358_80778,205,4358_15526,Maynooth,921,0,4358_7778195_3423018,4358_601 -4358_80778,96,4358_15527,Maynooth,9107,0,4358_7778195_3423008,4358_601 -4358_80778,205,4358_15529,Maynooth,973,0,4358_7778195_3423006,4358_601 -4358_80778,96,4358_15530,Maynooth,9089,0,4358_7778195_3423005,4358_601 -4358_80778,205,4358_15532,Maynooth,1045,0,4358_7778195_3423010,4358_601 -4358_80778,96,4358_15533,Maynooth,9169,0,4358_7778195_3423026,4358_601 -4358_80778,205,4358_15535,Maynooth,1010,0,4358_7778195_3423008,4358_601 -4358_80778,96,4358_15536,Maynooth,9194,0,4358_7778195_3423007,4358_601 -4358_80778,205,4358_15537,Maynooth,1081,0,4358_7778195_3423025,4358_601 -4358_80778,205,4358_15539,Maynooth,1031,0,4358_7778195_3423014,4358_601 -4358_80682,96,4358_1554,Grange Castle,13660,0,4358_7778195_8013012,4358_55 -4358_80778,96,4358_15540,Maynooth,9277,0,4358_7778195_3423001,4358_602 -4358_80778,96,4358_15542,Maynooth,9137,0,4358_7778195_3423022,4358_601 -4358_80778,205,4358_15543,Maynooth,7860,0,4358_7778195_8828203,4358_602 -4358_80778,96,4358_15544,Maynooth,9184,0,4358_7778195_3423002,4358_601 -4358_80778,205,4358_15546,Maynooth,947,0,4358_7778195_3423015,4358_601 -4358_80778,205,4358_15548,Maynooth,932,0,4358_7778195_3423002,4358_601 -4358_80778,96,4358_15549,Maynooth,9228,0,4358_7778195_3423006,4358_602 -4358_80682,205,4358_1555,Grange Castle,6980,0,4358_7778195_8013019,4358_51 -4358_80778,205,4358_15551,Maynooth,1109,0,4358_7778195_3423022,4358_601 -4358_80778,96,4358_15552,Maynooth,9143,0,4358_7778195_3423016,4358_602 -4358_80778,96,4358_15554,Maynooth,9217,0,4358_7778195_3423004,4358_601 -4358_80778,205,4358_15555,Maynooth,923,0,4358_7778195_3423018,4358_602 -4358_80778,96,4358_15557,Maynooth,10382,0,4358_7778195_3423020,4358_601 -4358_80778,205,4358_15558,Maynooth,1039,0,4358_7778195_3423020,4358_601 -4358_80778,96,4358_15560,Maynooth,9100,0,4358_7778195_3423011,4358_601 -4358_80778,96,4358_15561,Maynooth,9196,0,4358_7778195_3423007,4358_601 -4358_80778,205,4358_15563,Maynooth,1002,0,4358_7778195_3423023,4358_602 -4358_80778,96,4358_15564,Maynooth,9138,0,4358_7778195_3423028,4358_601 -4358_80778,205,4358_15566,Maynooth,936,0,4358_7778195_3423027,4358_602 -4358_80778,96,4358_15567,Maynooth,9279,0,4358_7778195_3423001,4358_601 -4358_80778,96,4358_15568,Maynooth,9186,0,4358_7778195_3423002,4358_601 -4358_80778,205,4358_15569,Maynooth,1083,0,4358_7778195_3423025,4358_602 -4358_80682,96,4358_1557,Grange Castle,13605,0,4358_7778195_8013003,4358_55 -4358_80778,96,4358_15571,Maynooth,9230,0,4358_7778195_3423006,4358_601 -4358_80778,205,4358_15572,Maynooth,1118,0,4358_7778195_3423030,4358_602 -4358_80778,205,4358_15574,Maynooth,949,0,4358_7778195_3423015,4358_601 -4358_80778,96,4358_15575,Maynooth,9219,0,4358_7778195_3423004,4358_602 -4358_80778,205,4358_15577,Maynooth,934,0,4358_7778195_3423002,4358_601 -4358_80778,96,4358_15578,Maynooth,9124,0,4358_7778195_3423032,4358_601 -4358_80682,205,4358_1558,Grange Castle,7017,0,4358_7778195_8013029,4358_51 -4358_80778,205,4358_15580,Maynooth,995,0,4358_7778195_3423033,4358_601 -4358_80778,96,4358_15581,Maynooth,9198,0,4358_7778195_3423007,4358_602 -4358_80778,205,4358_15583,Maynooth,1025,0,4358_7778195_3423009,4358_601 -4358_80778,96,4358_15584,Maynooth,9172,0,4358_7778195_3423036,4358_602 -4358_80778,96,4358_15586,Maynooth,9153,0,4358_7778195_3423030,4358_601 -4358_80778,205,4358_15587,Maynooth,1121,0,4358_7778195_3423035,4358_602 -4358_80778,205,4358_15589,Ringsend Road,977,1,4358_7778195_3423001,4358_603 -4358_80682,205,4358_1559,Grange Castle,7042,0,4358_7778195_8013039,4358_53 -4358_80778,96,4358_15591,Ringsend Road,9270,1,4358_7778195_3423001,4358_603 -4358_80778,205,4358_15592,Ringsend Road,951,1,4358_7778195_3423004,4358_603 -4358_80778,96,4358_15593,Ringsend Road,9199,1,4358_7778195_3423003,4358_603 -4358_80778,96,4358_15595,Ringsend Road,9210,1,4358_7778195_3423004,4358_603 -4358_80778,205,4358_15596,Ringsend Road,968,1,4358_7778195_3423006,4358_603 -4358_80778,205,4358_15597,Ringsend Road,1040,1,4358_7778195_3423010,4358_603 -4358_80778,96,4358_15598,Ringsend Road,9093,1,4358_7778195_3423011,4358_603 -4358_80778,205,4358_15599,Ringsend Road,1016,1,4358_7778195_3423009,4358_603 -4358_80778,96,4358_15601,Ringsend Road,9189,1,4358_7778195_3423007,4358_603 -4358_80778,205,4358_15602,Ringsend Road,1073,1,4358_7778195_3423012,4358_603 -4358_80778,205,4358_15603,Ringsend Road,942,1,4358_7778195_3423015,4358_603 -4358_80778,96,4358_15604,Ringsend Road,9272,1,4358_7778195_3423001,4358_603 -4358_80778,205,4358_15606,Ringsend Road,999,1,4358_7778195_3423003,4358_603 -4358_80778,96,4358_15607,Ringsend Road,9179,1,4358_7778195_3423002,4358_603 -4358_80778,205,4358_15609,Ringsend Road,953,1,4358_7778195_3423004,4358_603 -4358_80682,96,4358_1561,Grange Castle,13618,0,4358_7778195_8013005,4358_55 -4358_80778,96,4358_15610,Ringsend Road,9223,1,4358_7778195_3423006,4358_603 -4358_80778,205,4358_15612,Ringsend Road,1099,1,4358_7778195_3423019,4358_603 -4358_80778,96,4358_15613,Ringsend Road,9212,1,4358_7778195_3423004,4358_603 -4358_80778,205,4358_15615,Ringsend Road,970,1,4358_7778195_3423006,4358_603 -4358_80778,96,4358_15616,Ringsend Road,9095,1,4358_7778195_3423011,4358_603 -4358_80778,205,4358_15618,Ringsend Road,1042,1,4358_7778195_3423010,4358_603 -4358_80778,96,4358_15619,Ringsend Road,9191,1,4358_7778195_3423007,4358_603 -4358_80778,205,4358_15621,Ringsend Road,1018,1,4358_7778195_3423009,4358_603 -4358_80778,96,4358_15622,Ringsend Road,9274,1,4358_7778195_3423001,4358_603 -4358_80778,205,4358_15624,Ringsend Road,1028,1,4358_7778195_3423014,4358_603 -4358_80778,96,4358_15625,Ringsend Road,9181,1,4358_7778195_3423002,4358_603 -4358_80778,205,4358_15627,Ringsend Road,944,1,4358_7778195_3423015,4358_603 -4358_80778,96,4358_15628,Ringsend Road,9225,1,4358_7778195_3423006,4358_603 -4358_80682,205,4358_1563,Grange Castle,6878,0,4358_7778195_8013008,4358_55 -4358_80778,205,4358_15630,Ringsend Road,929,1,4358_7778195_3423002,4358_603 -4358_80778,96,4358_15631,Ringsend Road,9214,1,4358_7778195_3423004,4358_603 -4358_80778,205,4358_15633,Ringsend Road,920,1,4358_7778195_3423018,4358_603 -4358_80778,96,4358_15634,Ringsend Road,10379,1,4358_7778195_3423020,4358_603 -4358_80778,205,4358_15636,Ringsend Road,972,1,4358_7778195_3423006,4358_603 -4358_80778,96,4358_15638,Ringsend Road,9097,1,4358_7778195_3423011,4358_603 -4358_80778,205,4358_15639,Ringsend Road,1044,1,4358_7778195_3423010,4358_604 -4358_80682,96,4358_1564,Grange Castle,13683,0,4358_7778195_8013019,4358_57 -4358_80778,96,4358_15641,Ringsend Road,9241,1,4358_7778195_3423018,4358_603 -4358_80778,205,4358_15642,Ringsend Road,1020,1,4358_7778195_3423009,4358_604 -4358_80778,96,4358_15643,Ringsend Road,9131,1,4358_7778195_3423012,4358_603 -4358_80778,205,4358_15645,Ringsend Road,1030,1,4358_7778195_3423014,4358_603 -4358_80778,96,4358_15646,Ringsend Road,9258,1,4358_7778195_3423021,4358_603 -4358_80778,205,4358_15648,Ringsend Road,946,1,4358_7778195_3423015,4358_603 -4358_80778,96,4358_15649,Ringsend Road,9205,1,4358_7778195_3423003,4358_603 -4358_80778,205,4358_15650,Ringsend Road,931,1,4358_7778195_3423002,4358_603 -4358_80778,96,4358_15651,Ringsend Road,9255,1,4358_7778195_3423023,4358_603 -4358_80778,205,4358_15653,Ringsend Road,7861,1,4358_7778195_8828204,4358_603 -4358_80778,96,4358_15654,Ringsend Road,9142,1,4358_7778195_3423016,4358_603 -4358_80778,205,4358_15655,Ringsend Road,922,1,4358_7778195_3423018,4358_603 -4358_80778,96,4358_15657,Ringsend Road,9108,1,4358_7778195_3423008,4358_603 -4358_80778,96,4358_15658,Ringsend Road,9173,1,4358_7778195_3423027,4358_603 -4358_80778,205,4358_15659,Ringsend Road,1047,1,4358_7778195_3423024,4358_604 -4358_80682,96,4358_1566,Grange Castle,13631,0,4358_7778195_8013007,4358_55 -4358_80778,96,4358_15661,Ringsend Road,9090,1,4358_7778195_3423005,4358_603 -4358_80778,205,4358_15662,Ringsend Road,974,1,4358_7778195_3423006,4358_604 -4358_80778,205,4358_15663,Ringsend Road,1046,1,4358_7778195_3423010,4358_603 -4358_80778,96,4358_15665,Ringsend Road,9170,1,4358_7778195_3423026,4358_605 -4358_80778,205,4358_15666,Ringsend Road,935,1,4358_7778195_3423027,4358_603 -4358_80778,96,4358_15668,Ringsend Road,9195,1,4358_7778195_3423007,4358_604 -4358_80778,205,4358_15669,Ringsend Road,1011,1,4358_7778195_3423008,4358_603 -4358_80682,205,4358_1567,Grange Castle,6889,0,4358_7778195_8013010,4358_57 -4358_80778,205,4358_15670,Ringsend Road,1082,1,4358_7778195_3423025,4358_603 -4358_80778,96,4358_15671,Ringsend Road,9278,1,4358_7778195_3423001,4358_603 -4358_80778,96,4358_15673,Ringsend Road,9185,1,4358_7778195_3423002,4358_603 -4358_80778,205,4358_15675,Ringsend Road,1032,1,4358_7778195_3423014,4358_603 -4358_80778,96,4358_15676,Ringsend Road,9229,1,4358_7778195_3423006,4358_603 -4358_80778,205,4358_15678,Ringsend Road,948,1,4358_7778195_3423015,4358_603 -4358_80682,205,4358_1568,Grange Castle,6817,0,4358_7778195_8013003,4358_51 -4358_80778,96,4358_15680,Ringsend Road,9218,1,4358_7778195_3423004,4358_604 -4358_80778,205,4358_15681,Ringsend Road,933,1,4358_7778195_3423002,4358_603 -4358_80778,96,4358_15682,Ringsend Road,10383,1,4358_7778195_3423020,4358_603 -4358_80778,205,4358_15684,Ringsend Road,924,1,4358_7778195_3423018,4358_603 -4358_80778,96,4358_15686,Ringsend Road,9197,1,4358_7778195_3423007,4358_604 -4358_80778,205,4358_15687,Ringsend Road,1003,1,4358_7778195_3423023,4358_603 -4358_80778,96,4358_15688,Ringsend Road,9139,1,4358_7778195_3423028,4358_603 -4358_80682,96,4358_1569,Grange Castle,13667,0,4358_7778195_8013014,4358_55 -4358_80778,205,4358_15690,Ringsend Road,937,1,4358_7778195_3423027,4358_603 -4358_80778,96,4358_15691,Ringsend Road,9187,1,4358_7778195_3423002,4358_603 -4358_80778,205,4358_15693,Ringsend Road,1084,1,4358_7778195_3423025,4358_603 -4358_80778,96,4358_15694,Ringsend Road,9231,1,4358_7778195_3423006,4358_603 -4358_80778,205,4358_15696,Ringsend Road,1119,1,4358_7778195_3423030,4358_603 -4358_80778,96,4358_15697,Ringsend Road,9220,1,4358_7778195_3423004,4358_603 -4358_80778,205,4358_15699,Ringsend Road,950,1,4358_7778195_3423015,4358_603 -4358_80760,96,4358_157,Shaw street,9336,0,4358_7778195_9001002,4358_1 -4358_80778,96,4358_15700,Ringsend Road,9125,1,4358_7778195_3423032,4358_603 -4358_80778,205,4358_15701,Ringsend Road,996,1,4358_7778195_3423033,4358_603 -4358_80780,96,4358_15703,Maynooth,9166,0,4358_7778195_3423041,4358_606 -4358_80780,205,4358_15704,Maynooth,1112,0,4358_7778195_3423039,4358_607 -4358_80780,96,4358_15706,Maynooth,9117,0,4358_7778195_3423037,4358_606 -4358_80780,205,4358_15707,Maynooth,1126,0,4358_7778195_3423036,4358_607 -4358_80780,205,4358_15709,Maynooth,1135,0,4358_7778195_3423038,4358_606 -4358_80780,96,4358_15710,Maynooth,9146,0,4358_7778195_3423038,4358_607 -4358_80780,96,4358_15712,Maynooth,9168,0,4358_7778195_3423041,4358_606 -4358_80780,205,4358_15713,Maynooth,1114,0,4358_7778195_3423039,4358_606 -4358_80780,96,4358_15715,Maynooth,9119,0,4358_7778195_3423037,4358_606 -4358_80780,205,4358_15717,Maynooth,1097,0,4358_7778195_3423040,4358_607 -4358_80780,96,4358_15718,Ringsend Road,9266,1,4358_7778195_3423034,4358_608 -4358_80780,205,4358_15719,Ringsend Road,963,1,4358_7778195_3423034,4358_608 -4358_80682,96,4358_1572,Grange Castle,13698,0,4358_7778195_8013020,4358_55 -4358_80780,96,4358_15721,Ringsend Road,9244,1,4358_7778195_3423039,4358_608 -4358_80780,205,4358_15723,Ringsend Road,1122,1,4358_7778195_3423035,4358_608 -4358_80780,96,4358_15724,Ringsend Road,9261,1,4358_7778195_3423040,4358_608 -4358_80780,205,4358_15726,Ringsend Road,1128,1,4358_7778195_3423037,4358_608 -4358_80780,96,4358_15727,Ringsend Road,9268,1,4358_7778195_3423034,4358_608 -4358_80780,205,4358_15729,Ringsend Road,965,1,4358_7778195_3423034,4358_608 -4358_80682,205,4358_1573,Grange Castle,6993,0,4358_7778195_8013023,4358_53 -4358_80780,205,4358_15730,Ringsend Road,1124,1,4358_7778195_3423035,4358_608 -4358_80780,96,4358_15732,Ringsend Road,9246,1,4358_7778195_3423039,4358_608 -4358_80779,96,4358_15733,Maynooth,9260,0,4358_7778195_3423040,4358_610 -4358_80779,205,4358_15735,Maynooth,1127,0,4358_7778195_3423037,4358_611 -4358_80779,96,4358_15736,Maynooth,9267,0,4358_7778195_3423034,4358_610 -4358_80779,205,4358_15737,Maynooth,964,0,4358_7778195_3423034,4358_610 -4358_80779,96,4358_15739,Maynooth,9245,0,4358_7778195_3423039,4358_610 -4358_80682,205,4358_1574,Grange Castle,6902,0,4358_7778195_8013014,4358_51 -4358_80779,205,4358_15740,Maynooth,1123,0,4358_7778195_3423035,4358_610 -4358_80779,96,4358_15742,Maynooth,9175,0,4358_7778195_3423042,4358_610 -4358_80779,205,4358_15744,Maynooth,1129,0,4358_7778195_3423037,4358_611 -4358_80779,96,4358_15745,Maynooth,9269,0,4358_7778195_3423034,4358_610 -4358_80779,205,4358_15746,Maynooth,966,0,4358_7778195_3423034,4358_610 -4358_80779,96,4358_15748,Ringsend Road,9116,1,4358_7778195_3423037,4358_612 -4358_80779,205,4358_15750,Ringsend Road,1125,1,4358_7778195_3423036,4358_612 -4358_80779,205,4358_15751,Ringsend Road,1134,1,4358_7778195_3423038,4358_612 -4358_80779,96,4358_15752,Ringsend Road,9145,1,4358_7778195_3423038,4358_612 -4358_80779,205,4358_15754,Ringsend Road,1113,1,4358_7778195_3423039,4358_612 -4358_80779,96,4358_15755,Ringsend Road,9167,1,4358_7778195_3423041,4358_612 -4358_80779,205,4358_15757,Ringsend Road,1096,1,4358_7778195_3423040,4358_612 -4358_80779,96,4358_15758,Ringsend Road,9118,1,4358_7778195_3423037,4358_612 -4358_80682,96,4358_1576,Grange Castle,13651,0,4358_7778195_8013010,4358_57 -4358_80779,205,4358_15760,Ringsend Road,1136,1,4358_7778195_3423038,4358_612 -4358_80779,96,4358_15762,Ringsend Road,9147,1,4358_7778195_3423038,4358_612 -4358_80781,205,4358_15763,Red Cow Luas,4525,0,4358_7778195_4461002,4358_614 -4358_80781,96,4358_15764,Red Cow Luas,11711,0,4358_7778195_4461004,4358_614 -4358_80781,205,4358_15766,Red Cow Luas,4557,0,4358_7778195_4461007,4358_614 -4358_80781,205,4358_15767,Red Cow Luas,4497,0,4358_7778195_4461003,4358_614 -4358_80781,96,4358_15768,Red Cow Luas,11605,0,4358_7778195_4461001,4358_614 -4358_80781,205,4358_15769,Red Cow Luas,4486,0,4358_7778195_4461004,4358_614 -4358_80682,96,4358_1577,Grange Castle,13716,0,4358_7778195_8013021,4358_51 -4358_80781,205,4358_15771,Red Cow Luas,4573,0,4358_7778195_4461006,4358_614 -4358_80781,96,4358_15772,Red Cow Luas,11730,0,4358_7778195_4461008,4358_614 -4358_80781,205,4358_15773,Red Cow Luas,4671,0,4358_7778195_4461020,4358_614 -4358_80781,205,4358_15774,Red Cow Luas,4470,0,4358_7778195_4461008,4358_614 -4358_80781,96,4358_15775,Red Cow Luas,11657,0,4358_7778195_4461002,4358_614 -4358_80781,205,4358_15776,Red Cow Luas,4527,0,4358_7778195_4461002,4358_614 -4358_80781,205,4358_15777,Red Cow Luas,4687,0,4358_7778195_4461024,4358_614 -4358_80781,96,4358_15778,Red Cow Luas,11713,0,4358_7778195_4461004,4358_614 -4358_80781,205,4358_15780,Red Cow Luas,4706,0,4358_7778195_4461028,4358_614 -4358_80781,96,4358_15781,Red Cow Luas,11792,0,4358_7778195_4461013,4358_614 -4358_80781,205,4358_15782,Red Cow Luas,4719,0,4358_7778195_4461030,4358_614 -4358_80781,205,4358_15783,Red Cow Luas,4656,0,4358_7778195_4461018,4358_614 -4358_80781,96,4358_15784,Red Cow Luas,11622,0,4358_7778195_4461010,4358_614 -4358_80781,205,4358_15786,Red Cow Luas,4446,0,4358_7778195_4461001,4358_614 -4358_80781,205,4358_15787,Red Cow Luas,4679,0,4358_7778195_4461023,4358_614 -4358_80781,96,4358_15788,Red Cow Luas,11674,0,4358_7778195_4461003,4358_614 -4358_80781,205,4358_15789,Red Cow Luas,4617,0,4358_7778195_4461013,4358_614 -4358_80682,205,4358_1579,Grange Castle,7032,0,4358_7778195_8013034,4358_57 -4358_80781,96,4358_15791,Red Cow Luas,11697,0,4358_7778195_4461005,4358_614 -4358_80781,205,4358_15792,Red Cow Luas,4488,0,4358_7778195_4461004,4358_614 -4358_80781,205,4358_15793,Red Cow Luas,4575,0,4358_7778195_4461006,4358_614 -4358_80781,96,4358_15794,Red Cow Luas,11891,0,4358_7778195_4461015,4358_614 -4358_80781,205,4358_15796,Red Cow Luas,4543,0,4358_7778195_4461010,4358_614 -4358_80781,96,4358_15797,Red Cow Luas,11806,0,4358_7778195_4461017,4358_614 -4358_80781,205,4358_15798,Red Cow Luas,4736,0,4358_7778195_4461027,4358_614 -4358_80781,96,4358_15799,Red Cow Luas,11715,0,4358_7778195_4461004,4358_614 -4358_80760,205,4358_158,Shaw street,1809,0,4358_7778195_9001014,4358_1 -4358_80682,96,4358_1580,Grange Castle,13588,0,4358_7778195_8013001,4358_51 -4358_80781,205,4358_15801,Red Cow Luas,4752,0,4358_7778195_4461032,4358_614 -4358_80781,96,4358_15802,Red Cow Luas,11743,0,4358_7778195_4461009,4358_614 -4358_80781,205,4358_15803,Red Cow Luas,4472,0,4358_7778195_4461008,4358_614 -4358_80781,96,4358_15804,Red Cow Luas,11609,0,4358_7778195_4461001,4358_614 -4358_80781,205,4358_15806,Red Cow Luas,4599,0,4358_7778195_4461012,4358_614 -4358_80781,96,4358_15807,Red Cow Luas,11766,0,4358_7778195_4461016,4358_614 -4358_80781,205,4358_15809,Red Cow Luas,4623,0,4358_7778195_4461014,4358_614 -4358_80781,96,4358_15810,Red Cow Luas,11754,0,4358_7778195_4461011,4358_614 -4358_80781,205,4358_15812,Red Cow Luas,4564,0,4358_7778195_4461005,4358_615 -4358_80781,96,4358_15813,Red Cow Luas,11650,0,4358_7778195_4461025,4358_614 -4358_80781,205,4358_15814,Red Cow Luas,4658,0,4358_7778195_4461018,4358_614 -4358_80781,96,4358_15815,Red Cow Luas,11699,0,4358_7778195_4461005,4358_614 -4358_80781,205,4358_15817,Red Cow Luas,4501,0,4358_7778195_4461003,4358_614 -4358_80781,96,4358_15818,Red Cow Luas,11893,0,4358_7778195_4461015,4358_614 -4358_80682,205,4358_1582,Grange Castle,6833,0,4358_7778195_8013006,4358_57 -4358_80781,205,4358_15820,Red Cow Luas,4780,0,4358_7778195_4461035,4358_614 -4358_80781,96,4358_15821,Red Cow Luas,11692,0,4358_7778195_4461007,4358_615 -4358_80781,96,4358_15823,Red Cow Luas,11808,0,4358_7778195_4461017,4358_614 -4358_80781,205,4358_15824,Red Cow Luas,4631,0,4358_7778195_4461015,4358_614 -4358_80781,96,4358_15826,Red Cow Luas,11717,0,4358_7778195_4461004,4358_615 -4358_80781,205,4358_15827,Red Cow Luas,4696,0,4358_7778195_4461026,4358_614 -4358_80781,96,4358_15828,Red Cow Luas,11745,0,4358_7778195_4461009,4358_614 -4358_80781,205,4358_15829,Red Cow Luas,4637,0,4358_7778195_4461029,4358_614 -4358_80682,96,4358_1583,Grange Castle,13598,0,4358_7778195_8013002,4358_51 -4358_80781,96,4358_15831,Red Cow Luas,11611,0,4358_7778195_4461001,4358_614 -4358_80781,205,4358_15832,Red Cow Luas,4773,0,4358_7778195_4461033,4358_614 -4358_80781,96,4358_15834,Red Cow Luas,11768,0,4358_7778195_4461016,4358_614 -4358_80781,205,4358_15835,Red Cow Luas,4452,0,4358_7778195_4461021,4358_614 -4358_80781,96,4358_15836,Red Cow Luas,11756,0,4358_7778195_4461011,4358_614 -4358_80781,205,4358_15838,Red Cow Luas,4531,0,4358_7778195_4461002,4358_614 -4358_80781,96,4358_15839,Red Cow Luas,11652,0,4358_7778195_4461025,4358_614 -4358_80781,205,4358_15840,Red Cow Luas,4790,0,4358_7778195_4461036,4358_614 -4358_80781,96,4358_15842,Red Cow Luas,11736,0,4358_7778195_4461008,4358_614 -4358_80781,205,4358_15843,Red Cow Luas,4710,0,4358_7778195_4461028,4358_614 -4358_80781,96,4358_15845,Red Cow Luas,11701,0,4358_7778195_4461005,4358_614 -4358_80781,205,4358_15846,Red Cow Luas,4723,0,4358_7778195_4461030,4358_614 -4358_80781,96,4358_15848,Red Cow Luas,11841,0,4358_7778195_4461022,4358_615 -4358_80781,205,4358_15849,Red Cow Luas,4683,0,4358_7778195_4461023,4358_614 -4358_80682,205,4358_1585,Grange Castle,7035,0,4358_7778195_8013035,4358_57 -4358_80781,96,4358_15850,Red Cow Luas,11810,0,4358_7778195_4461017,4358_614 -4358_80781,205,4358_15851,Red Cow Luas,4552,0,4358_7778195_4461043,4358_614 -4358_80781,96,4358_15853,Red Cow Luas,11719,0,4358_7778195_4461004,4358_614 -4358_80781,205,4358_15854,Red Cow Luas,4492,0,4358_7778195_4461004,4358_615 -4358_80781,96,4358_15856,Red Cow Luas,11747,0,4358_7778195_4461009,4358_614 -4358_80781,205,4358_15857,Red Cow Luas,4750,0,4358_7778195_4461031,4358_615 -4358_80781,205,4358_15858,Red Cow Luas,4547,0,4358_7778195_4461010,4358_614 -4358_80781,96,4358_15859,Red Cow Luas,11638,0,4358_7778195_4461026,4358_615 -4358_80682,205,4358_1586,Grange Castle,7002,0,4358_7778195_8013025,4358_51 -4358_80781,205,4358_15861,Red Cow Luas,4740,0,4358_7778195_4461027,4358_614 -4358_80781,96,4358_15862,Red Cow Luas,11613,0,4358_7778195_4461001,4358_615 -4358_80781,96,4358_15864,Red Cow Luas,11758,0,4358_7778195_4461011,4358_614 -4358_80781,205,4358_15865,Red Cow Luas,4756,0,4358_7778195_4461032,4358_614 -4358_80781,96,4358_15867,Red Cow Luas,11821,0,4358_7778195_4461018,4358_614 -4358_80781,205,4358_15868,Red Cow Luas,4476,0,4358_7778195_4461008,4358_614 -4358_80781,205,4358_15869,Red Cow Luas,4603,0,4358_7778195_4461012,4358_614 -4358_80682,96,4358_1587,Grange Castle,13674,0,4358_7778195_8013016,4358_55 -4358_80781,96,4358_15871,Red Cow Luas,11680,0,4358_7778195_4461003,4358_615 -4358_80781,205,4358_15872,Red Cow Luas,4805,0,4358_7778195_4461039,4358_614 -4358_80781,96,4358_15873,Red Cow Luas,11869,0,4358_7778195_4461030,4358_614 -4358_80781,205,4358_15875,Red Cow Luas,4712,0,4358_7778195_4461028,4358_614 -4358_80781,96,4358_15876,Red Cow Luas,11874,0,4358_7778195_4461032,4358_614 -4358_80781,205,4358_15877,Red Cow Luas,4725,0,4358_7778195_4461030,4358_614 -4358_80781,96,4358_15878,Red Cow Luas,11916,0,4358_7778195_4461028,4358_614 -4358_80781,205,4358_15880,Red Cow Luas,4794,0,4358_7778195_4461054,4358_614 -4358_80781,96,4358_15881,Red Cow Luas,11862,0,4358_7778195_4461029,4358_614 -4358_80781,205,4358_15882,Red Cow Luas,4610,0,4358_7778195_4461047,4358_614 -4358_80781,205,4358_15884,Red Cow Luas,4554,0,4358_7778195_4461043,4358_614 -4358_80781,96,4358_15885,Red Cow Luas,11721,0,4358_7778195_4461004,4358_614 -4358_80781,205,4358_15887,Red Cow Luas,4494,0,4358_7778195_4461004,4358_614 -4358_80781,96,4358_15888,Red Cow Luas,11786,0,4358_7778195_4461012,4358_614 -4358_80781,205,4358_15889,Red Cow Luas,4511,0,4358_7778195_4461048,4358_614 -4358_80781,96,4358_15891,Red Cow Luas,11834,0,4358_7778195_4461020,4358_614 -4358_80781,205,4358_15892,Red Cow Luas,4818,0,4358_7778195_4461052,4358_615 -4358_80781,205,4358_15893,Red Cow Luas,4549,0,4358_7778195_4461010,4358_614 -4358_80781,96,4358_15895,Red Cow Luas,11760,0,4358_7778195_4461011,4358_614 -4358_80781,205,4358_15896,Red Cow Luas,4520,0,4358_7778195_4461044,4358_614 -4358_80781,96,4358_15897,Red Cow Luas,11823,0,4358_7778195_4461018,4358_614 -4358_80781,205,4358_15899,Red Cow Luas,4742,0,4358_7778195_4461027,4358_614 -4358_80682,205,4358_1590,Grange Castle,7012,0,4358_7778195_8013028,4358_54 -4358_80781,96,4358_15900,Red Cow Luas,11934,0,4358_7778195_4461042,4358_614 -4358_80781,205,4358_15901,Red Cow Luas,4758,0,4358_7778195_4461032,4358_614 -4358_80781,96,4358_15902,Red Cow Luas,11924,0,4358_7778195_4461039,4358_614 -4358_80781,205,4358_15904,Red Cow Luas,4478,0,4358_7778195_4461008,4358_614 -4358_80781,96,4358_15905,Red Cow Luas,11876,0,4358_7778195_4461032,4358_614 -4358_80781,205,4358_15907,Red Cow Luas,4605,0,4358_7778195_4461012,4358_615 -4358_80781,96,4358_15908,Red Cow Luas,11918,0,4358_7778195_4461028,4358_614 -4358_80781,205,4358_15909,Red Cow Luas,4807,0,4358_7778195_4461039,4358_614 -4358_80682,96,4358_1591,Grange Castle,13680,0,4358_7778195_8013018,4358_56 -4358_80781,205,4358_15910,Red Cow Luas,4727,0,4358_7778195_4461030,4358_614 -4358_80781,96,4358_15912,Red Cow Luas,11667,0,4358_7778195_4461002,4358_614 -4358_80781,205,4358_15913,Red Cow Luas,4664,0,4358_7778195_4461018,4358_614 -4358_80781,96,4358_15914,Red Cow Luas,11723,0,4358_7778195_4461004,4358_614 -4358_80781,205,4358_15916,Red Cow Luas,4507,0,4358_7778195_4461003,4358_615 -4358_80781,96,4358_15917,Red Cow Luas,11642,0,4358_7778195_4461026,4358_614 -4358_80781,205,4358_15918,Red Cow Luas,4513,0,4358_7778195_4461048,4358_614 -4358_80682,205,4358_1592,Grange Castle,7052,0,4358_7778195_8013044,4358_52 -4358_80781,205,4358_15920,Red Cow Luas,4702,0,4358_7778195_4461026,4358_615 -4358_80781,96,4358_15921,Red Cow Luas,11825,0,4358_7778195_4461018,4358_614 -4358_80781,205,4358_15922,Red Cow Luas,4643,0,4358_7778195_4461029,4358_614 -4358_80781,96,4358_15923,Red Cow Luas,11936,0,4358_7778195_4461042,4358_614 -4358_80781,205,4358_15924,Red Cow Luas,4828,0,4358_7778195_4461058,4358_614 -4358_80781,205,4358_15926,Red Cow Luas,4458,0,4358_7778195_4461021,4358_614 -4358_80781,96,4358_15927,Red Cow Luas,11926,0,4358_7778195_4461039,4358_614 -4358_80781,205,4358_15928,Red Cow Luas,4809,0,4358_7778195_4461039,4358_614 -4358_80781,96,4358_15930,Red Cow Luas,11878,0,4358_7778195_4461032,4358_614 -4358_80781,205,4358_15931,Red Cow Luas,4666,0,4358_7778195_4461018,4358_614 -4358_80781,96,4358_15932,Red Cow Luas,11866,0,4358_7778195_4461029,4358_614 -4358_80781,205,4358_15933,Red Cow Luas,4509,0,4358_7778195_4461003,4358_614 -4358_80781,205,4358_15935,Red Cow Luas,4733,0,4358_7778195_4461061,4358_614 -4358_80781,96,4358_15936,Red Cow Luas,11790,0,4358_7778195_4461012,4358_614 -4358_80781,205,4358_15937,Red Cow Luas,4515,0,4358_7778195_4461048,4358_614 -4358_80781,96,4358_15939,Red Cow Luas,11889,0,4358_7778195_4461043,4358_614 -4358_80682,96,4358_1594,Grange Castle,13718,0,4358_7778195_8013022,4358_56 -4358_80781,205,4358_15940,Red Cow Luas,4645,0,4358_7778195_4461029,4358_614 -4358_80781,96,4358_15941,Red Cow Luas,11619,0,4358_7778195_4461045,4358_614 -4358_80781,205,4358_15942,Red Cow Luas,4830,0,4358_7778195_4461058,4358_614 -4358_80781,96,4358_15944,Red Cow Luas,11928,0,4358_7778195_4461039,4358_614 -4358_80781,205,4358_15945,Red Cow Luas,4811,0,4358_7778195_4461039,4358_614 -4358_80781,96,4358_15947,Red Cow Luas,11906,0,4358_7778195_4461046,4358_614 -4358_80781,205,4358_15948,Red Cow Luas,4833,0,4358_7778195_4461063,4358_614 -4358_80682,96,4358_1595,Grange Castle,13765,0,4358_7778195_8013023,4358_52 -4358_80781,96,4358_15950,Red Cow Luas,11853,0,4358_7778195_4461049,4358_614 -4358_80781,205,4358_15951,Red Cow Luas,4579,0,4358_7778195_4461062,4358_614 -4358_80781,96,4358_15953,Red Cow Luas,11908,0,4358_7778195_4461046,4358_614 -4358_80781,205,4358_15954,Red Cow Luas,4835,0,4358_7778195_4461063,4358_614 -4358_80781,205,4358_15956,Red Cow Luas,4581,0,4358_7778195_4461062,4358_614 -4358_80781,96,4358_15958,Red Cow Luas,11855,0,4358_7778195_4461049,4358_615 -4358_80781,205,4358_15959,Red Cow Luas,4837,0,4358_7778195_4461063,4358_614 -4358_80781,96,4358_15960,Red Cow Luas,11910,0,4358_7778195_4461046,4358_615 -4358_80781,205,4358_15962,Spencer Dock,4443,1,4358_7778195_4461001,4358_616 -4358_80781,96,4358_15963,Spencer Dock,11671,1,4358_7778195_4461003,4358_616 -4358_80781,205,4358_15964,Spencer Dock,4485,1,4358_7778195_4461004,4358_617 -4358_80781,96,4358_15966,Spencer Dock,11694,1,4358_7778195_4461005,4358_616 -4358_80781,205,4358_15967,Spencer Dock,4469,1,4358_7778195_4461008,4358_617 -4358_80781,205,4358_15968,Spencer Dock,4526,1,4358_7778195_4461002,4358_616 -4358_80781,205,4358_15969,Spencer Dock,4620,1,4358_7778195_4461014,4358_616 -4358_80682,205,4358_1597,Grange Castle,7045,0,4358_7778195_8013040,4358_56 -4358_80781,96,4358_15970,Spencer Dock,11712,1,4358_7778195_4461004,4358_616 -4358_80781,205,4358_15972,Spencer Dock,4646,1,4358_7778195_4461017,4358_616 -4358_80781,205,4358_15973,Spencer Dock,4558,1,4358_7778195_4461007,4358_616 -4358_80781,96,4358_15974,Spencer Dock,11606,1,4358_7778195_4461001,4358_616 -4358_80781,205,4358_15975,Spencer Dock,4673,1,4358_7778195_4461022,4358_616 -4358_80781,205,4358_15976,Spencer Dock,4498,1,4358_7778195_4461003,4358_616 -4358_80781,96,4358_15977,Spencer Dock,11751,1,4358_7778195_4461011,4358_616 -4358_80781,205,4358_15979,Spencer Dock,4487,1,4358_7778195_4461004,4358_617 -4358_80781,96,4358_15980,Spencer Dock,11731,1,4358_7778195_4461008,4358_616 -4358_80781,205,4358_15981,Spencer Dock,4574,1,4358_7778195_4461006,4358_616 -4358_80781,205,4358_15982,Spencer Dock,4542,1,4358_7778195_4461010,4358_616 -4358_80781,205,4358_15984,Spencer Dock,4735,1,4358_7778195_4461027,4358_616 -4358_80781,96,4358_15985,Spencer Dock,11800,1,4358_7778195_4461014,4358_616 -4358_80781,205,4358_15986,Spencer Dock,4672,1,4358_7778195_4461020,4358_616 -4358_80781,205,4358_15987,Spencer Dock,4751,1,4358_7778195_4461032,4358_616 -4358_80781,96,4358_15988,Spencer Dock,11658,1,4358_7778195_4461002,4358_616 -4358_80682,96,4358_1599,Grange Castle,13808,0,4358_7778195_8013024,4358_54 -4358_80781,205,4358_15990,Spencer Dock,4471,1,4358_7778195_4461008,4358_616 -4358_80781,205,4358_15991,Spencer Dock,4528,1,4358_7778195_4461002,4358_616 -4358_80781,96,4358_15992,Spencer Dock,11714,1,4358_7778195_4461004,4358_616 -4358_80781,205,4358_15994,Spencer Dock,4688,1,4358_7778195_4461024,4358_616 -4358_80781,96,4358_15995,Spencer Dock,11793,1,4358_7778195_4461013,4358_616 -4358_80781,205,4358_15996,Spencer Dock,4707,1,4358_7778195_4461028,4358_616 -4358_80781,96,4358_15997,Spencer Dock,11623,1,4358_7778195_4461010,4358_616 -4358_80781,205,4358_15999,Spencer Dock,4720,1,4358_7778195_4461030,4358_616 -4358_80760,205,4358_16,Shaw street,1586,0,4358_7778195_9001005,4358_1 -4358_80760,96,4358_160,Shaw street,9398,0,4358_7778195_9001001,4358_1 -4358_80682,205,4358_1600,Grange Castle,7023,0,4358_7778195_8013031,4358_56 -4358_80781,96,4358_16000,Spencer Dock,11816,1,4358_7778195_4461018,4358_616 -4358_80781,205,4358_16001,Spencer Dock,4657,1,4358_7778195_4461018,4358_616 -4358_80781,96,4358_16002,Spencer Dock,11675,1,4358_7778195_4461003,4358_616 -4358_80781,205,4358_16004,Spencer Dock,4680,1,4358_7778195_4461023,4358_616 -4358_80781,96,4358_16005,Spencer Dock,11698,1,4358_7778195_4461005,4358_616 -4358_80781,205,4358_16006,Spencer Dock,4691,1,4358_7778195_4461025,4358_616 -4358_80781,96,4358_16007,Spencer Dock,11892,1,4358_7778195_4461015,4358_616 -4358_80781,205,4358_16009,Spencer Dock,4489,1,4358_7778195_4461004,4358_616 -4358_80781,96,4358_16010,Spencer Dock,11691,1,4358_7778195_4461007,4358_616 -4358_80781,205,4358_16012,Spencer Dock,4747,1,4358_7778195_4461031,4358_616 -4358_80781,96,4358_16013,Spencer Dock,11807,1,4358_7778195_4461017,4358_616 -4358_80781,205,4358_16015,Spencer Dock,4544,1,4358_7778195_4461010,4358_616 -4358_80781,96,4358_16016,Spencer Dock,11716,1,4358_7778195_4461004,4358_616 -4358_80781,205,4358_16017,Spencer Dock,4737,1,4358_7778195_4461027,4358_616 -4358_80781,96,4358_16018,Spencer Dock,11744,1,4358_7778195_4461009,4358_616 -4358_80682,96,4358_1602,Grange Castle,13845,0,4358_7778195_8013025,4358_54 -4358_80781,96,4358_16020,Spencer Dock,11610,1,4358_7778195_4461001,4358_616 -4358_80781,205,4358_16021,Spencer Dock,4753,1,4358_7778195_4461032,4358_616 -4358_80781,96,4358_16023,Spencer Dock,11767,1,4358_7778195_4461016,4358_616 -4358_80781,205,4358_16024,Spencer Dock,4473,1,4358_7778195_4461008,4358_616 -4358_80781,96,4358_16026,Spencer Dock,11755,1,4358_7778195_4461011,4358_616 -4358_80781,205,4358_16027,Spencer Dock,4600,1,4358_7778195_4461012,4358_617 -4358_80781,205,4358_16029,Spencer Dock,4802,1,4358_7778195_4461039,4358_617 -4358_80682,205,4358_1603,Grange Castle,7040,0,4358_7778195_8013038,4358_56 -4358_80781,96,4358_16030,Spencer Dock,11651,1,4358_7778195_4461025,4358_618 -4358_80781,205,4358_16031,Spencer Dock,4812,1,4358_7778195_4461040,4358_616 -4358_80781,96,4358_16032,Spencer Dock,11700,1,4358_7778195_4461005,4358_617 -4358_80781,96,4358_16034,Spencer Dock,11913,1,4358_7778195_4461028,4358_616 -4358_80781,205,4358_16035,Spencer Dock,4659,1,4358_7778195_4461018,4358_617 -4358_80781,96,4358_16037,Spencer Dock,11693,1,4358_7778195_4461007,4358_616 -4358_80781,205,4358_16038,Spencer Dock,4502,1,4358_7778195_4461003,4358_617 -4358_80781,205,4358_16039,Spencer Dock,4781,1,4358_7778195_4461035,4358_616 -4358_80781,96,4358_16041,Spencer Dock,11809,1,4358_7778195_4461017,4358_618 -4358_80781,96,4358_16042,Spencer Dock,11718,1,4358_7778195_4461004,4358_616 -4358_80781,205,4358_16043,Spencer Dock,4651,1,4358_7778195_4461038,4358_617 -4358_80781,96,4358_16045,Spencer Dock,11746,1,4358_7778195_4461009,4358_616 -4358_80781,205,4358_16046,Spencer Dock,4697,1,4358_7778195_4461026,4358_617 -4358_80781,96,4358_16048,Spencer Dock,11637,1,4358_7778195_4461026,4358_616 -4358_80781,205,4358_16049,Spencer Dock,4638,1,4358_7778195_4461029,4358_617 -4358_80682,205,4358_1605,Grange Castle,7048,0,4358_7778195_8013041,4358_54 -4358_80781,205,4358_16050,Spencer Dock,4774,1,4358_7778195_4461033,4358_616 -4358_80781,96,4358_16051,Spencer Dock,11612,1,4358_7778195_4461001,4358_617 -4358_80781,96,4358_16053,Spencer Dock,11757,1,4358_7778195_4461011,4358_616 -4358_80781,205,4358_16054,Spencer Dock,4453,1,4358_7778195_4461021,4358_616 -4358_80781,96,4358_16056,Spencer Dock,11653,1,4358_7778195_4461025,4358_616 -4358_80781,205,4358_16057,Spencer Dock,4532,1,4358_7778195_4461002,4358_616 -4358_80781,96,4358_16059,Spencer Dock,11737,1,4358_7778195_4461008,4358_616 -4358_80682,96,4358_1606,Grange Castle,13871,0,4358_7778195_8013026,4358_56 -4358_80781,205,4358_16060,Spencer Dock,4791,1,4358_7778195_4461036,4358_616 -4358_80781,96,4358_16061,Spencer Dock,11702,1,4358_7778195_4461005,4358_616 -4358_80781,205,4358_16063,Spencer Dock,4711,1,4358_7778195_4461028,4358_617 -4358_80781,205,4358_16064,Spencer Dock,4724,1,4358_7778195_4461030,4358_616 -4358_80781,96,4358_16065,Spencer Dock,11842,1,4358_7778195_4461022,4358_616 -4358_80781,205,4358_16067,Spencer Dock,4609,1,4358_7778195_4461047,4358_616 -4358_80781,96,4358_16068,Spencer Dock,11811,1,4358_7778195_4461017,4358_616 -4358_80781,205,4358_16069,Spencer Dock,4553,1,4358_7778195_4461043,4358_616 -4358_80781,96,4358_16071,Spencer Dock,11720,1,4358_7778195_4461004,4358_616 -4358_80781,205,4358_16072,Spencer Dock,4493,1,4358_7778195_4461004,4358_616 -4358_80781,96,4358_16073,Spencer Dock,11748,1,4358_7778195_4461009,4358_616 -4358_80781,205,4358_16075,Spencer Dock,4510,1,4358_7778195_4461048,4358_616 -4358_80781,96,4358_16076,Spencer Dock,11639,1,4358_7778195_4461026,4358_616 -4358_80781,205,4358_16077,Spencer Dock,4817,1,4358_7778195_4461052,4358_616 -4358_80781,205,4358_16079,Spencer Dock,4548,1,4358_7778195_4461010,4358_616 -4358_80682,205,4358_1608,Grange Castle,6982,0,4358_7778195_8013019,4358_54 -4358_80781,96,4358_16080,Spencer Dock,11614,1,4358_7778195_4461001,4358_616 -4358_80781,205,4358_16081,Spencer Dock,4519,1,4358_7778195_4461044,4358_616 -4358_80781,96,4358_16083,Spencer Dock,11759,1,4358_7778195_4461011,4358_616 -4358_80781,205,4358_16084,Spencer Dock,4741,1,4358_7778195_4461027,4358_616 -4358_80781,96,4358_16085,Spencer Dock,11822,1,4358_7778195_4461018,4358_616 -4358_80781,205,4358_16087,Spencer Dock,4757,1,4358_7778195_4461032,4358_616 -4358_80781,96,4358_16088,Spencer Dock,11681,1,4358_7778195_4461003,4358_616 -4358_80781,205,4358_16089,Spencer Dock,4477,1,4358_7778195_4461008,4358_617 -4358_80682,96,4358_1609,Grange Castle,13880,0,4358_7778195_8013027,4358_56 -4358_80781,205,4358_16091,Spencer Dock,4604,1,4358_7778195_4461012,4358_616 -4358_80781,96,4358_16092,Spencer Dock,11870,1,4358_7778195_4461030,4358_616 -4358_80781,205,4358_16094,Spencer Dock,4806,1,4358_7778195_4461039,4358_617 -4358_80781,96,4358_16095,Spencer Dock,11875,1,4358_7778195_4461032,4358_616 -4358_80781,205,4358_16096,Spencer Dock,4713,1,4358_7778195_4461028,4358_616 -4358_80781,96,4358_16097,Spencer Dock,11917,1,4358_7778195_4461028,4358_616 -4358_80781,205,4358_16099,Spencer Dock,4726,1,4358_7778195_4461030,4358_616 -4358_80760,205,4358_161,Shaw street,1713,0,4358_7778195_9001008,4358_1 -4358_80781,205,4358_16100,Spencer Dock,4795,1,4358_7778195_4461054,4358_616 -4358_80781,96,4358_16101,Spencer Dock,11863,1,4358_7778195_4461029,4358_616 -4358_80781,205,4358_16103,Spencer Dock,4611,1,4358_7778195_4461047,4358_616 -4358_80781,96,4358_16104,Spencer Dock,11722,1,4358_7778195_4461004,4358_616 -4358_80781,205,4358_16106,Spencer Dock,4495,1,4358_7778195_4461004,4358_616 -4358_80781,96,4358_16107,Spencer Dock,11787,1,4358_7778195_4461012,4358_616 -4358_80781,205,4358_16108,Spencer Dock,4512,1,4358_7778195_4461048,4358_616 -4358_80682,205,4358_1611,Grange Castle,6880,0,4358_7778195_8013008,4358_54 -4358_80781,96,4358_16110,Spencer Dock,11835,1,4358_7778195_4461020,4358_617 -4358_80781,205,4358_16111,Spencer Dock,4550,1,4358_7778195_4461010,4358_616 -4358_80781,96,4358_16112,Spencer Dock,11824,1,4358_7778195_4461018,4358_616 -4358_80781,205,4358_16113,Spencer Dock,4521,1,4358_7778195_4461044,4358_616 -4358_80781,205,4358_16115,Spencer Dock,4759,1,4358_7778195_4461032,4358_616 -4358_80781,96,4358_16116,Spencer Dock,11935,1,4358_7778195_4461042,4358_616 -4358_80781,205,4358_16117,Spencer Dock,4479,1,4358_7778195_4461008,4358_616 -4358_80781,96,4358_16119,Spencer Dock,11925,1,4358_7778195_4461039,4358_617 -4358_80682,96,4358_1612,Grange Castle,13633,0,4358_7778195_8013007,4358_56 -4358_80781,205,4358_16120,Spencer Dock,4606,1,4358_7778195_4461012,4358_616 -4358_80781,96,4358_16121,Spencer Dock,11877,1,4358_7778195_4461032,4358_616 -4358_80781,205,4358_16122,Spencer Dock,4808,1,4358_7778195_4461039,4358_616 -4358_80781,96,4358_16124,Spencer Dock,11668,1,4358_7778195_4461002,4358_616 -4358_80781,205,4358_16125,Spencer Dock,4665,1,4358_7778195_4461018,4358_617 -4358_80781,205,4358_16126,Spencer Dock,4508,1,4358_7778195_4461003,4358_616 -4358_80781,96,4358_16128,Spencer Dock,11724,1,4358_7778195_4461004,4358_616 -4358_80781,205,4358_16129,Spencer Dock,4732,1,4358_7778195_4461061,4358_616 -4358_80682,96,4358_1613,Grange Castle,13883,0,4358_7778195_8013028,4358_52 -4358_80781,96,4358_16130,Spencer Dock,11643,1,4358_7778195_4461026,4358_616 -4358_80781,205,4358_16131,Spencer Dock,4514,1,4358_7778195_4461048,4358_616 -4358_80781,205,4358_16133,Spencer Dock,4644,1,4358_7778195_4461029,4358_616 -4358_80781,96,4358_16134,Spencer Dock,11826,1,4358_7778195_4461018,4358_617 -4358_80781,205,4358_16135,Spencer Dock,4829,1,4358_7778195_4461058,4358_616 -4358_80781,96,4358_16137,Spencer Dock,11937,1,4358_7778195_4461042,4358_616 -4358_80781,205,4358_16138,Spencer Dock,4459,1,4358_7778195_4461021,4358_616 -4358_80781,96,4358_16139,Spencer Dock,11927,1,4358_7778195_4461039,4358_616 -4358_80682,205,4358_1614,Grange Castle,6819,0,4358_7778195_8013003,4358_54 -4358_80781,205,4358_16140,Spencer Dock,4810,1,4358_7778195_4461039,4358_616 -4358_80781,96,4358_16142,Spencer Dock,11879,1,4358_7778195_4461032,4358_616 -4358_80781,205,4358_16143,Spencer Dock,4667,1,4358_7778195_4461018,4358_617 -4358_80781,205,4358_16145,Spencer Dock,4734,1,4358_7778195_4461061,4358_616 -4358_80781,96,4358_16146,Spencer Dock,11791,1,4358_7778195_4461012,4358_617 -4358_80781,205,4358_16149,Spencer Dock,4578,1,4358_7778195_4461062,4358_616 -4358_80781,96,4358_16150,Spencer Dock,11620,1,4358_7778195_4461045,4358_616 -4358_80781,205,4358_16152,Spencer Dock,4834,1,4358_7778195_4461063,4358_616 -4358_80781,96,4358_16153,Spencer Dock,11907,1,4358_7778195_4461046,4358_617 -4358_80781,205,4358_16155,Spencer Dock,4580,1,4358_7778195_4461062,4358_616 -4358_80781,96,4358_16156,Spencer Dock,11854,1,4358_7778195_4461049,4358_617 -4358_80781,205,4358_16158,Spencer Dock,4836,1,4358_7778195_4461063,4358_616 -4358_80781,96,4358_16159,Spencer Dock,11909,1,4358_7778195_4461046,4358_617 -4358_80781,205,4358_16161,Spencer Dock,4582,1,4358_7778195_4461062,4358_616 -4358_80781,96,4358_16162,Spencer Dock,11856,1,4358_7778195_4461049,4358_617 -4358_80782,96,4358_16164,Liffey Valley SC,11655,0,4358_7778195_4461002,4358_620 -4358_80782,205,4358_16165,Liffey Valley SC,4560,0,4358_7778195_4461005,4358_619 -4358_80782,205,4358_16166,Liffey Valley SC,4444,0,4358_7778195_4461001,4358_619 -4358_80782,205,4358_16168,Liffey Valley SC,4615,0,4358_7778195_4461013,4358_619 -4358_80782,96,4358_16169,Liffey Valley SC,11672,0,4358_7778195_4461003,4358_619 -4358_80682,205,4358_1617,Grange Castle,7051,0,4358_7778195_8013042,4358_54 -4358_80782,205,4358_16170,Liffey Valley SC,4627,0,4358_7778195_4461015,4358_619 -4358_80782,205,4358_16171,Liffey Valley SC,4625,0,4358_7778195_4461019,4358_619 -4358_80782,96,4358_16172,Liffey Valley SC,11695,0,4358_7778195_4461005,4358_619 -4358_80782,205,4358_16173,Liffey Valley SC,4448,0,4358_7778195_4461021,4358_619 -4358_80782,205,4358_16175,Liffey Valley SC,4586,0,4358_7778195_4461009,4358_619 -4358_80782,96,4358_16176,Liffey Valley SC,11778,0,4358_7778195_4461012,4358_619 -4358_80782,205,4358_16177,Liffey Valley SC,4597,0,4358_7778195_4461012,4358_619 -4358_80782,205,4358_16178,Liffey Valley SC,4621,0,4358_7778195_4461014,4358_619 -4358_80782,96,4358_16179,Liffey Valley SC,11741,0,4358_7778195_4461009,4358_619 -4358_80682,96,4358_1618,Grange Castle,13653,0,4358_7778195_8013010,4358_56 -4358_80782,205,4358_16180,Liffey Valley SC,4562,0,4358_7778195_4461005,4358_619 -4358_80782,205,4358_16182,Liffey Valley SC,4647,0,4358_7778195_4461017,4358_619 -4358_80782,96,4358_16183,Liffey Valley SC,11607,0,4358_7778195_4461001,4358_619 -4358_80782,205,4358_16184,Liffey Valley SC,4559,0,4358_7778195_4461007,4358_619 -4358_80782,96,4358_16185,Liffey Valley SC,11752,0,4358_7778195_4461011,4358_619 -4358_80782,205,4358_16186,Liffey Valley SC,4674,0,4358_7778195_4461022,4358_619 -4358_80782,205,4358_16188,Liffey Valley SC,4499,0,4358_7778195_4461003,4358_619 -4358_80782,96,4358_16189,Liffey Valley SC,11732,0,4358_7778195_4461008,4358_619 -4358_80782,205,4358_16190,Liffey Valley SC,4778,0,4358_7778195_4461035,4358_619 -4358_80782,205,4358_16192,Liffey Valley SC,4629,0,4358_7778195_4461015,4358_619 -4358_80782,96,4358_16193,Liffey Valley SC,11801,0,4358_7778195_4461014,4358_619 -4358_80782,205,4358_16194,Liffey Valley SC,4694,0,4358_7778195_4461026,4358_619 -4358_80782,96,4358_16195,Liffey Valley SC,11659,0,4358_7778195_4461002,4358_619 -4358_80782,205,4358_16197,Liffey Valley SC,4635,0,4358_7778195_4461029,4358_619 -4358_80782,96,4358_16198,Liffey Valley SC,11780,0,4358_7778195_4461012,4358_619 -4358_80782,205,4358_16199,Liffey Valley SC,4771,0,4358_7778195_4461033,4358_619 -4358_80682,205,4358_1620,Grange Castle,7055,0,4358_7778195_8013043,4358_54 -4358_80782,96,4358_16200,Liffey Valley SC,11828,0,4358_7778195_4461020,4358_619 -4358_80782,205,4358_16202,Liffey Valley SC,4450,0,4358_7778195_4461021,4358_619 -4358_80782,96,4358_16203,Liffey Valley SC,11794,0,4358_7778195_4461013,4358_619 -4358_80782,205,4358_16204,Liffey Valley SC,4529,0,4358_7778195_4461002,4358_619 -4358_80782,96,4358_16205,Liffey Valley SC,11624,0,4358_7778195_4461010,4358_619 -4358_80782,205,4358_16207,Liffey Valley SC,4788,0,4358_7778195_4461036,4358_619 -4358_80782,96,4358_16208,Liffey Valley SC,11817,0,4358_7778195_4461018,4358_619 -4358_80682,96,4358_1621,Grange Castle,13886,0,4358_7778195_8013029,4358_56 -4358_80782,205,4358_16210,Liffey Valley SC,4708,0,4358_7778195_4461028,4358_619 -4358_80782,96,4358_16211,Liffey Valley SC,11676,0,4358_7778195_4461003,4358_619 -4358_80782,205,4358_16212,Liffey Valley SC,4721,0,4358_7778195_4461030,4358_619 -4358_80782,96,4358_16213,Liffey Valley SC,11734,0,4358_7778195_4461008,4358_619 -4358_80782,205,4358_16215,Liffey Valley SC,4681,0,4358_7778195_4461023,4358_619 -4358_80782,96,4358_16216,Liffey Valley SC,11839,0,4358_7778195_4461022,4358_619 -4358_80782,205,4358_16218,Liffey Valley SC,4692,0,4358_7778195_4461025,4358_619 -4358_80782,96,4358_16219,Liffey Valley SC,11803,0,4358_7778195_4461014,4358_619 -4358_80782,96,4358_16221,Liffey Valley SC,11661,0,4358_7778195_4461002,4358_619 -4358_80782,205,4358_16222,Liffey Valley SC,4490,0,4358_7778195_4461004,4358_620 -4358_80782,96,4358_16224,Liffey Valley SC,11782,0,4358_7778195_4461012,4358_619 -4358_80782,205,4358_16225,Liffey Valley SC,4748,0,4358_7778195_4461031,4358_619 -4358_80782,96,4358_16226,Liffey Valley SC,11830,0,4358_7778195_4461020,4358_619 -4358_80782,205,4358_16227,Liffey Valley SC,4545,0,4358_7778195_4461010,4358_619 -4358_80782,96,4358_16229,Liffey Valley SC,11796,0,4358_7778195_4461013,4358_619 -4358_80682,205,4358_1623,Grange Castle,7057,0,4358_7778195_8013045,4358_54 -4358_80782,205,4358_16230,Liffey Valley SC,4738,0,4358_7778195_4461027,4358_619 -4358_80782,96,4358_16232,Liffey Valley SC,11626,0,4358_7778195_4461010,4358_619 -4358_80782,205,4358_16233,Liffey Valley SC,4754,0,4358_7778195_4461032,4358_619 -4358_80782,96,4358_16235,Liffey Valley SC,11819,0,4358_7778195_4461018,4358_619 -4358_80782,205,4358_16236,Liffey Valley SC,4474,0,4358_7778195_4461008,4358_619 -4358_80782,96,4358_16237,Liffey Valley SC,11678,0,4358_7778195_4461003,4358_619 -4358_80782,205,4358_16238,Liffey Valley SC,4601,0,4358_7778195_4461012,4358_619 -4358_80682,96,4358_1624,Grange Castle,13888,0,4358_7778195_8013030,4358_56 -4358_80782,96,4358_16240,Liffey Valley SC,11867,0,4358_7778195_4461030,4358_619 -4358_80782,205,4358_16241,Liffey Valley SC,4803,0,4358_7778195_4461039,4358_619 -4358_80782,96,4358_16243,Liffey Valley SC,11872,0,4358_7778195_4461032,4358_619 -4358_80782,205,4358_16244,Liffey Valley SC,4813,0,4358_7778195_4461040,4358_619 -4358_80782,96,4358_16246,Liffey Valley SC,11914,0,4358_7778195_4461028,4358_619 -4358_80782,205,4358_16247,Liffey Valley SC,4660,0,4358_7778195_4461018,4358_619 -4358_80782,96,4358_16248,Liffey Valley SC,11805,0,4358_7778195_4461014,4358_619 -4358_80782,205,4358_16249,Liffey Valley SC,4503,0,4358_7778195_4461003,4358_619 -4358_80682,205,4358_1625,Grange Castle,7059,0,4358_7778195_8013046,4358_52 -4358_80782,96,4358_16251,Liffey Valley SC,11860,0,4358_7778195_4461029,4358_619 -4358_80782,205,4358_16252,Liffey Valley SC,4782,0,4358_7778195_4461035,4358_619 -4358_80782,96,4358_16254,Liffey Valley SC,11663,0,4358_7778195_4461002,4358_619 -4358_80782,205,4358_16255,Liffey Valley SC,4652,0,4358_7778195_4461038,4358_620 -4358_80782,96,4358_16257,Liffey Valley SC,11784,0,4358_7778195_4461012,4358_619 -4358_80782,205,4358_16258,Liffey Valley SC,4698,0,4358_7778195_4461026,4358_620 -4358_80782,205,4358_16259,Liffey Valley SC,4639,0,4358_7778195_4461029,4358_619 -4358_80682,96,4358_1626,Grange Castle,13590,0,4358_7778195_8013001,4358_54 -4358_80782,96,4358_16260,Liffey Valley SC,11832,0,4358_7778195_4461020,4358_620 -4358_80782,96,4358_16262,Liffey Valley SC,11798,0,4358_7778195_4461013,4358_619 -4358_80782,205,4358_16263,Liffey Valley SC,4775,0,4358_7778195_4461033,4358_620 -4358_80782,96,4358_16265,Liffey Valley SC,11628,0,4358_7778195_4461010,4358_619 -4358_80782,205,4358_16266,Liffey Valley SC,4454,0,4358_7778195_4461021,4358_619 -4358_80782,205,4358_16268,Liffey Valley SC,4533,0,4358_7778195_4461002,4358_619 -4358_80782,96,4358_16269,Liffey Valley SC,11654,0,4358_7778195_4461025,4358_620 -4358_80782,205,4358_16270,Liffey Valley SC,4570,0,4358_7778195_4461050,4358_619 -4358_80782,96,4358_16271,Liffey Valley SC,11738,0,4358_7778195_4461008,4358_619 -4358_80782,205,4358_16273,Liffey Valley SC,4792,0,4358_7778195_4461036,4358_619 -4358_80782,96,4358_16274,Liffey Valley SC,11703,0,4358_7778195_4461005,4358_619 -4358_80782,205,4358_16275,Liffey Valley SC,4815,0,4358_7778195_4461040,4358_619 -4358_80782,96,4358_16277,Liffey Valley SC,11843,0,4358_7778195_4461022,4358_619 -4358_80782,205,4358_16278,Liffey Valley SC,4662,0,4358_7778195_4461018,4358_619 -4358_80782,96,4358_16279,Liffey Valley SC,11812,0,4358_7778195_4461017,4358_619 -4358_80682,96,4358_1628,Grange Castle,13890,0,4358_7778195_8013031,4358_52 -4358_80782,205,4358_16281,Liffey Valley SC,4447,0,4358_7778195_4461056,4358_619 -4358_80782,96,4358_16282,Liffey Valley SC,11665,0,4358_7778195_4461002,4358_619 -4358_80782,205,4358_16283,Liffey Valley SC,4505,0,4358_7778195_4461003,4358_619 -4358_80782,205,4358_16285,Liffey Valley SC,4784,0,4358_7778195_4461035,4358_619 -4358_80782,96,4358_16286,Liffey Valley SC,11749,0,4358_7778195_4461009,4358_619 -4358_80782,205,4358_16287,Liffey Valley SC,4654,0,4358_7778195_4461038,4358_619 -4358_80782,96,4358_16289,Liffey Valley SC,11640,0,4358_7778195_4461026,4358_619 -4358_80682,205,4358_1629,Grange Castle,6838,0,4358_7778195_8013047,4358_54 -4358_80782,205,4358_16290,Liffey Valley SC,4764,0,4358_7778195_4461051,4358_619 -4358_80782,205,4358_16291,Liffey Valley SC,4700,0,4358_7778195_4461026,4358_619 -4358_80782,96,4358_16293,Liffey Valley SC,11615,0,4358_7778195_4461001,4358_620 -4358_80782,205,4358_16294,Liffey Valley SC,4641,0,4358_7778195_4461029,4358_619 -4358_80782,96,4358_16295,Liffey Valley SC,11903,0,4358_7778195_4461037,4358_619 -4358_80782,205,4358_16297,Liffey Valley SC,4824,0,4358_7778195_4461055,4358_619 -4358_80782,96,4358_16298,Liffey Valley SC,11630,0,4358_7778195_4461010,4358_619 -4358_80782,205,4358_16299,Liffey Valley SC,4777,0,4358_7778195_4461033,4358_619 -4358_80760,96,4358_163,Shaw street,9528,0,4358_7778195_9001005,4358_1 -4358_80782,96,4358_16300,Liffey Valley SC,11682,0,4358_7778195_4461003,4358_619 -4358_80782,205,4358_16302,Liffey Valley SC,4826,0,4358_7778195_4461058,4358_619 -4358_80782,96,4358_16303,Liffey Valley SC,11871,0,4358_7778195_4461030,4358_619 -4358_80782,205,4358_16305,Liffey Valley SC,4456,0,4358_7778195_4461021,4358_619 -4358_80782,96,4358_16306,Liffey Valley SC,11845,0,4358_7778195_4461022,4358_619 -4358_80782,205,4358_16307,Liffey Valley SC,4535,0,4358_7778195_4461002,4358_619 -4358_80782,205,4358_16309,Liffey Valley SC,4714,0,4358_7778195_4461028,4358_619 -4358_80782,96,4358_16310,Liffey Valley SC,11814,0,4358_7778195_4461017,4358_619 -4358_80782,205,4358_16311,Liffey Valley SC,4796,0,4358_7778195_4461054,4358_619 -4358_80782,96,4358_16312,Liffey Valley SC,11864,0,4358_7778195_4461029,4358_619 -4358_80782,205,4358_16314,Liffey Valley SC,4612,0,4358_7778195_4461047,4358_619 -4358_80782,96,4358_16315,Liffey Valley SC,11788,0,4358_7778195_4461012,4358_619 -4358_80782,205,4358_16316,Liffey Valley SC,4786,0,4358_7778195_4461035,4358_619 -4358_80782,205,4358_16318,Liffey Valley SC,4766,0,4358_7778195_4461051,4358_619 -4358_80782,96,4358_16319,Liffey Valley SC,11617,0,4358_7778195_4461001,4358_619 -4358_80682,96,4358_1632,Grange Castle,13720,0,4358_7778195_8013022,4358_54 -4358_80782,205,4358_16320,Liffey Valley SC,4522,0,4358_7778195_4461044,4358_619 -4358_80782,96,4358_16322,Liffey Valley SC,11905,0,4358_7778195_4461037,4358_619 -4358_80782,205,4358_16323,Liffey Valley SC,4760,0,4358_7778195_4461032,4358_619 -4358_80782,205,4358_16324,Liffey Valley SC,4480,0,4358_7778195_4461008,4358_619 -4358_80782,96,4358_16325,Liffey Valley SC,11684,0,4358_7778195_4461003,4358_619 -4358_80782,205,4358_16327,Liffey Valley SC,4607,0,4358_7778195_4461012,4358_619 -4358_80782,96,4358_16328,Liffey Valley SC,11847,0,4358_7778195_4461022,4358_619 -4358_80782,205,4358_16329,Liffey Valley SC,4716,0,4358_7778195_4461028,4358_619 -4358_80682,205,4358_1633,Grange Castle,7014,0,4358_7778195_8013028,4358_56 -4358_80782,96,4358_16331,Liffey Valley SC,11669,0,4358_7778195_4461002,4358_619 -4358_80782,205,4358_16332,Liffey Valley SC,4798,0,4358_7778195_4461054,4358_619 -4358_80782,205,4358_16333,Liffey Valley SC,4614,0,4358_7778195_4461047,4358_619 -4358_80782,96,4358_16334,Liffey Valley SC,11725,0,4358_7778195_4461004,4358_619 -4358_80782,205,4358_16336,Liffey Valley SC,4768,0,4358_7778195_4461051,4358_619 -4358_80782,96,4358_16337,Liffey Valley SC,11644,0,4358_7778195_4461026,4358_619 -4358_80782,205,4358_16338,Liffey Valley SC,4524,0,4358_7778195_4461044,4358_619 -4358_80682,205,4358_1634,Harristown,6716,1,4358_7778195_8013002,4358_58 -4358_80782,96,4358_16340,Liffey Valley SC,11827,0,4358_7778195_4461018,4358_619 -4358_80782,205,4358_16341,Liffey Valley SC,4762,0,4358_7778195_4461032,4358_619 -4358_80782,96,4358_16342,Liffey Valley SC,11686,0,4358_7778195_4461003,4358_619 -4358_80782,205,4358_16343,Liffey Valley SC,4460,0,4358_7778195_4461021,4358_619 -4358_80782,96,4358_16345,Liffey Valley SC,11849,0,4358_7778195_4461022,4358_619 -4358_80782,205,4358_16346,Liffey Valley SC,4718,0,4358_7778195_4461028,4358_619 -4358_80782,96,4358_16348,Liffey Valley SC,11707,0,4358_7778195_4461048,4358_619 -4358_80782,205,4358_16349,Liffey Valley SC,4838,0,4358_7778195_4461065,4358_619 -4358_80682,96,4358_1635,Harristown,13581,1,4358_7778195_8013001,4358_58 -4358_80782,96,4358_16351,Liffey Valley SC,11647,0,4358_7778195_4461047,4358_619 -4358_80782,205,4358_16352,Liffey Valley SC,4567,0,4358_7778195_4461064,4358_619 -4358_80782,96,4358_16354,Liffey Valley SC,11709,0,4358_7778195_4461048,4358_619 -4358_80782,205,4358_16355,Liffey Valley SC,4840,0,4358_7778195_4461065,4358_619 -4358_80782,205,4358_16357,Liffey Valley SC,4569,0,4358_7778195_4461064,4358_619 -4358_80782,96,4358_16359,Liffey Valley SC,11649,0,4358_7778195_4461047,4358_619 -4358_80682,205,4358_1636,Harristown,6820,1,4358_7778195_8013004,4358_58 -4358_80782,96,4358_16360,Spencer Dock,11604,1,4358_7778195_4461001,4358_621 -4358_80782,205,4358_16362,Spencer Dock,4496,1,4358_7778195_4461003,4358_621 -4358_80782,205,4358_16363,Spencer Dock,4572,1,4358_7778195_4461006,4358_621 -4358_80782,205,4358_16365,Spencer Dock,4585,1,4358_7778195_4461009,4358_621 -4358_80782,96,4358_16366,Spencer Dock,11656,1,4358_7778195_4461002,4358_621 -4358_80782,205,4358_16367,Spencer Dock,4596,1,4358_7778195_4461012,4358_621 -4358_80782,205,4358_16368,Spencer Dock,4561,1,4358_7778195_4461005,4358_621 -4358_80782,96,4358_16369,Spencer Dock,11740,1,4358_7778195_4461009,4358_621 -4358_80682,96,4358_1637,Harristown,13591,1,4358_7778195_8013002,4358_58 -4358_80782,205,4358_16370,Spencer Dock,4655,1,4358_7778195_4461018,4358_621 -4358_80782,205,4358_16371,Spencer Dock,4445,1,4358_7778195_4461001,4358_621 -4358_80782,96,4358_16373,Spencer Dock,11621,1,4358_7778195_4461010,4358_621 -4358_80782,205,4358_16374,Spencer Dock,4678,1,4358_7778195_4461023,4358_621 -4358_80782,205,4358_16375,Spencer Dock,4616,1,4358_7778195_4461013,4358_621 -4358_80782,96,4358_16376,Spencer Dock,11673,1,4358_7778195_4461003,4358_621 -4358_80782,205,4358_16377,Spencer Dock,4628,1,4358_7778195_4461015,4358_621 -4358_80782,205,4358_16378,Spencer Dock,4693,1,4358_7778195_4461026,4358_621 -4358_80782,96,4358_16379,Spencer Dock,11696,1,4358_7778195_4461005,4358_621 -4358_80682,205,4358_1638,Harristown,6822,1,4358_7778195_8013005,4358_60 -4358_80782,205,4358_16380,Spencer Dock,4634,1,4358_7778195_4461029,4358_621 -4358_80782,205,4358_16381,Spencer Dock,4626,1,4358_7778195_4461019,4358_621 -4358_80782,96,4358_16383,Spencer Dock,11890,1,4358_7778195_4461015,4358_621 -4358_80782,205,4358_16384,Spencer Dock,4770,1,4358_7778195_4461033,4358_621 -4358_80782,205,4358_16385,Spencer Dock,4449,1,4358_7778195_4461021,4358_621 -4358_80782,96,4358_16386,Spencer Dock,11779,1,4358_7778195_4461012,4358_621 -4358_80782,205,4358_16387,Spencer Dock,4587,1,4358_7778195_4461009,4358_621 -4358_80782,205,4358_16389,Spencer Dock,4598,1,4358_7778195_4461012,4358_621 -4358_80682,205,4358_1639,Harristown,6834,1,4358_7778195_8013007,4358_58 -4358_80782,96,4358_16390,Spencer Dock,11742,1,4358_7778195_4461009,4358_621 -4358_80782,205,4358_16391,Spencer Dock,4787,1,4358_7778195_4461036,4358_621 -4358_80782,96,4358_16393,Spencer Dock,11608,1,4358_7778195_4461001,4358_621 -4358_80782,205,4358_16394,Spencer Dock,4622,1,4358_7778195_4461014,4358_621 -4358_80782,96,4358_16395,Spencer Dock,11765,1,4358_7778195_4461016,4358_621 -4358_80782,205,4358_16396,Spencer Dock,4563,1,4358_7778195_4461005,4358_621 -4358_80782,96,4358_16397,Spencer Dock,11753,1,4358_7778195_4461011,4358_621 -4358_80782,205,4358_16399,Spencer Dock,4648,1,4358_7778195_4461017,4358_621 -4358_80760,205,4358_164,Shaw street,1668,0,4358_7778195_9001003,4358_1 -4358_80682,96,4358_1640,Harristown,13606,1,4358_7778195_8013004,4358_58 -4358_80782,96,4358_16400,Spencer Dock,11733,1,4358_7778195_4461008,4358_621 -4358_80782,205,4358_16401,Spencer Dock,4500,1,4358_7778195_4461003,4358_621 -4358_80782,96,4358_16403,Spencer Dock,11838,1,4358_7778195_4461022,4358_621 -4358_80782,205,4358_16404,Spencer Dock,4779,1,4358_7778195_4461035,4358_621 -4358_80782,96,4358_16405,Spencer Dock,11802,1,4358_7778195_4461014,4358_621 -4358_80782,205,4358_16407,Spencer Dock,4630,1,4358_7778195_4461015,4358_621 -4358_80782,96,4358_16408,Spencer Dock,11660,1,4358_7778195_4461002,4358_621 -4358_80682,205,4358_1641,Harristown,6873,1,4358_7778195_8013008,4358_58 -4358_80782,205,4358_16410,Spencer Dock,4695,1,4358_7778195_4461026,4358_621 -4358_80782,96,4358_16411,Spencer Dock,11781,1,4358_7778195_4461012,4358_621 -4358_80782,205,4358_16412,Spencer Dock,4636,1,4358_7778195_4461029,4358_621 -4358_80782,96,4358_16414,Spencer Dock,11829,1,4358_7778195_4461020,4358_621 -4358_80782,205,4358_16415,Spencer Dock,4772,1,4358_7778195_4461033,4358_621 -4358_80782,96,4358_16416,Spencer Dock,11795,1,4358_7778195_4461013,4358_621 -4358_80782,96,4358_16418,Spencer Dock,11625,1,4358_7778195_4461010,4358_621 -4358_80782,205,4358_16419,Spencer Dock,4451,1,4358_7778195_4461021,4358_621 -4358_80782,96,4358_16421,Spencer Dock,11818,1,4358_7778195_4461018,4358_621 -4358_80782,205,4358_16422,Spencer Dock,4530,1,4358_7778195_4461002,4358_621 -4358_80782,96,4358_16424,Spencer Dock,11677,1,4358_7778195_4461003,4358_621 -4358_80782,205,4358_16425,Spencer Dock,4789,1,4358_7778195_4461036,4358_621 -4358_80782,96,4358_16426,Spencer Dock,11735,1,4358_7778195_4461008,4358_621 -4358_80782,205,4358_16427,Spencer Dock,4709,1,4358_7778195_4461028,4358_621 -4358_80782,96,4358_16429,Spencer Dock,11840,1,4358_7778195_4461022,4358_621 -4358_80682,205,4358_1643,Harristown,6884,1,4358_7778195_8013010,4358_58 -4358_80782,205,4358_16430,Spencer Dock,4722,1,4358_7778195_4461030,4358_621 -4358_80782,96,4358_16432,Spencer Dock,11804,1,4358_7778195_4461014,4358_621 -4358_80782,205,4358_16433,Spencer Dock,4682,1,4358_7778195_4461023,4358_621 -4358_80782,96,4358_16435,Spencer Dock,11859,1,4358_7778195_4461029,4358_621 -4358_80782,205,4358_16436,Spencer Dock,4551,1,4358_7778195_4461043,4358_621 -4358_80782,96,4358_16437,Spencer Dock,11662,1,4358_7778195_4461002,4358_621 -4358_80782,205,4358_16438,Spencer Dock,4491,1,4358_7778195_4461004,4358_621 -4358_80682,96,4358_1644,Harristown,13619,1,4358_7778195_8013006,4358_58 -4358_80782,96,4358_16440,Spencer Dock,11783,1,4358_7778195_4461012,4358_621 -4358_80782,205,4358_16441,Spencer Dock,4749,1,4358_7778195_4461031,4358_621 -4358_80782,96,4358_16443,Spencer Dock,11831,1,4358_7778195_4461020,4358_621 -4358_80782,205,4358_16444,Spencer Dock,4546,1,4358_7778195_4461010,4358_621 -4358_80782,96,4358_16446,Spencer Dock,11797,1,4358_7778195_4461013,4358_621 -4358_80782,205,4358_16447,Spencer Dock,4739,1,4358_7778195_4461027,4358_621 -4358_80782,96,4358_16448,Spencer Dock,11627,1,4358_7778195_4461010,4358_621 -4358_80782,205,4358_16449,Spencer Dock,4755,1,4358_7778195_4461032,4358_621 -4358_80682,205,4358_1645,Harristown,6812,1,4358_7778195_8013003,4358_58 -4358_80782,205,4358_16451,Spencer Dock,4475,1,4358_7778195_4461008,4358_621 -4358_80782,96,4358_16452,Spencer Dock,11820,1,4358_7778195_4461018,4358_621 -4358_80782,205,4358_16454,Spencer Dock,4602,1,4358_7778195_4461012,4358_621 -4358_80782,96,4358_16455,Spencer Dock,11679,1,4358_7778195_4461003,4358_621 -4358_80782,205,4358_16456,Spencer Dock,4804,1,4358_7778195_4461039,4358_621 -4358_80782,96,4358_16458,Spencer Dock,11868,1,4358_7778195_4461030,4358_621 -4358_80782,205,4358_16459,Spencer Dock,4814,1,4358_7778195_4461040,4358_621 -4358_80782,96,4358_16460,Spencer Dock,11873,1,4358_7778195_4461032,4358_621 -4358_80782,96,4358_16462,Spencer Dock,11915,1,4358_7778195_4461028,4358_621 -4358_80782,205,4358_16463,Spencer Dock,4661,1,4358_7778195_4461018,4358_622 -4358_80782,205,4358_16465,Spencer Dock,4504,1,4358_7778195_4461003,4358_621 -4358_80782,96,4358_16466,Spencer Dock,11861,1,4358_7778195_4461029,4358_621 -4358_80782,205,4358_16467,Spencer Dock,4783,1,4358_7778195_4461035,4358_621 -4358_80782,96,4358_16469,Spencer Dock,11664,1,4358_7778195_4461002,4358_621 -4358_80682,96,4358_1647,Harristown,13634,1,4358_7778195_8013008,4358_60 -4358_80782,205,4358_16470,Spencer Dock,4653,1,4358_7778195_4461038,4358_621 -4358_80782,96,4358_16471,Spencer Dock,11785,1,4358_7778195_4461012,4358_621 -4358_80782,205,4358_16472,Spencer Dock,4763,1,4358_7778195_4461051,4358_621 -4358_80782,96,4358_16474,Spencer Dock,11833,1,4358_7778195_4461020,4358_621 -4358_80782,205,4358_16475,Spencer Dock,4699,1,4358_7778195_4461026,4358_621 -4358_80782,205,4358_16477,Spencer Dock,4640,1,4358_7778195_4461029,4358_621 -4358_80782,96,4358_16478,Spencer Dock,11799,1,4358_7778195_4461013,4358_621 -4358_80782,205,4358_16479,Spencer Dock,4823,1,4358_7778195_4461055,4358_621 -4358_80682,205,4358_1648,Harristown,6893,1,4358_7778195_8013012,4358_64 -4358_80782,96,4358_16481,Spencer Dock,11902,1,4358_7778195_4461037,4358_621 -4358_80782,205,4358_16482,Spencer Dock,4776,1,4358_7778195_4461033,4358_621 -4358_80782,96,4358_16483,Spencer Dock,11629,1,4358_7778195_4461010,4358_621 -4358_80782,205,4358_16485,Spencer Dock,4825,1,4358_7778195_4461058,4358_621 -4358_80782,96,4358_16486,Spencer Dock,11923,1,4358_7778195_4461039,4358_621 -4358_80782,205,4358_16487,Spencer Dock,4455,1,4358_7778195_4461021,4358_621 -4358_80782,96,4358_16489,Spencer Dock,11739,1,4358_7778195_4461008,4358_621 -4358_80682,205,4358_1649,Harristown,6897,1,4358_7778195_8013014,4358_58 -4358_80782,205,4358_16490,Spencer Dock,4534,1,4358_7778195_4461002,4358_621 -4358_80782,205,4358_16491,Spencer Dock,4571,1,4358_7778195_4461050,4358_621 -4358_80782,96,4358_16492,Spencer Dock,11844,1,4358_7778195_4461022,4358_621 -4358_80782,205,4358_16494,Spencer Dock,4793,1,4358_7778195_4461036,4358_621 -4358_80782,96,4358_16495,Spencer Dock,11813,1,4358_7778195_4461017,4358_621 -4358_80782,205,4358_16497,Spencer Dock,4816,1,4358_7778195_4461040,4358_621 -4358_80782,96,4358_16498,Spencer Dock,11666,1,4358_7778195_4461002,4358_621 -4358_80782,205,4358_16499,Spencer Dock,4663,1,4358_7778195_4461018,4358_621 -4358_80682,96,4358_1650,Harristown,13600,1,4358_7778195_8013003,4358_58 -4358_80782,96,4358_16501,Spencer Dock,11750,1,4358_7778195_4461009,4358_621 -4358_80782,205,4358_16502,Spencer Dock,4506,1,4358_7778195_4461003,4358_621 -4358_80782,96,4358_16504,Spencer Dock,11641,1,4358_7778195_4461026,4358_621 -4358_80782,205,4358_16505,Spencer Dock,4785,1,4358_7778195_4461035,4358_622 -4358_80782,205,4358_16506,Spencer Dock,4765,1,4358_7778195_4461051,4358_621 -4358_80782,96,4358_16507,Spencer Dock,11616,1,4358_7778195_4461001,4358_621 -4358_80782,205,4358_16509,Spencer Dock,4701,1,4358_7778195_4461026,4358_621 -4358_80682,205,4358_1651,Harristown,6828,1,4358_7778195_8013006,4358_62 -4358_80782,96,4358_16510,Spencer Dock,11904,1,4358_7778195_4461037,4358_621 -4358_80782,205,4358_16511,Spencer Dock,4642,1,4358_7778195_4461029,4358_621 -4358_80782,205,4358_16513,Spencer Dock,4827,1,4358_7778195_4461058,4358_621 -4358_80782,96,4358_16514,Spencer Dock,11683,1,4358_7778195_4461003,4358_622 -4358_80782,205,4358_16515,Spencer Dock,4457,1,4358_7778195_4461021,4358_621 -4358_80782,96,4358_16516,Spencer Dock,11846,1,4358_7778195_4461022,4358_621 -4358_80782,205,4358_16518,Spencer Dock,4536,1,4358_7778195_4461002,4358_621 -4358_80782,96,4358_16519,Spencer Dock,11815,1,4358_7778195_4461017,4358_621 -4358_80782,205,4358_16520,Spencer Dock,4715,1,4358_7778195_4461028,4358_621 -4358_80782,205,4358_16522,Spencer Dock,4797,1,4358_7778195_4461054,4358_621 -4358_80782,96,4358_16523,Spencer Dock,11865,1,4358_7778195_4461029,4358_621 -4358_80782,205,4358_16524,Spencer Dock,4613,1,4358_7778195_4461047,4358_621 -4358_80782,96,4358_16525,Spencer Dock,11789,1,4358_7778195_4461012,4358_621 -4358_80782,205,4358_16527,Spencer Dock,4767,1,4358_7778195_4461051,4358_621 -4358_80782,96,4358_16528,Spencer Dock,11888,1,4358_7778195_4461043,4358_621 -4358_80782,205,4358_16529,Spencer Dock,4523,1,4358_7778195_4461044,4358_621 -4358_80682,205,4358_1653,Harristown,6929,1,4358_7778195_8013017,4358_58 -4358_80782,205,4358_16531,Spencer Dock,4761,1,4358_7778195_4461032,4358_621 -4358_80782,96,4358_16532,Spencer Dock,11618,1,4358_7778195_4461045,4358_621 -4358_80782,205,4358_16533,Spencer Dock,4481,1,4358_7778195_4461008,4358_621 -4358_80782,96,4358_16534,Spencer Dock,11685,1,4358_7778195_4461003,4358_621 -4358_80782,205,4358_16536,Spencer Dock,4608,1,4358_7778195_4461012,4358_621 -4358_80782,96,4358_16537,Spencer Dock,11848,1,4358_7778195_4461022,4358_621 -4358_80782,205,4358_16538,Spencer Dock,4717,1,4358_7778195_4461028,4358_621 -4358_80682,96,4358_1654,Harristown,13613,1,4358_7778195_8013005,4358_58 -4358_80782,96,4358_16540,Spencer Dock,11670,1,4358_7778195_4461002,4358_621 -4358_80782,205,4358_16541,Spencer Dock,4799,1,4358_7778195_4461054,4358_621 -4358_80782,96,4358_16543,Spencer Dock,11645,1,4358_7778195_4461026,4358_621 -4358_80782,205,4358_16544,Spencer Dock,4769,1,4358_7778195_4461051,4358_621 -4358_80782,96,4358_16547,Spencer Dock,11646,1,4358_7778195_4461047,4358_621 -4358_80782,205,4358_16548,Spencer Dock,4566,1,4358_7778195_4461064,4358_621 -4358_80682,205,4358_1655,Harristown,6974,1,4358_7778195_8013018,4358_62 -4358_80782,96,4358_16550,Spencer Dock,11708,1,4358_7778195_4461048,4358_621 -4358_80782,205,4358_16551,Spencer Dock,4839,1,4358_7778195_4461065,4358_621 -4358_80782,96,4358_16553,Spencer Dock,11648,1,4358_7778195_4461047,4358_621 -4358_80782,205,4358_16554,Spencer Dock,4568,1,4358_7778195_4461064,4358_621 -4358_80782,205,4358_16556,Spencer Dock,4841,1,4358_7778195_4461065,4358_621 -4358_80782,96,4358_16557,Spencer Dock,11710,1,4358_7778195_4461048,4358_621 -4358_80783,205,4358_16558,Baldoyle,5425,0,4358_7778195_6471001,4358_623 -4358_80783,205,4358_16559,Baldoyle,6573,0,4358_7778195_6471003,4358_623 -4358_80682,205,4358_1656,Harristown,6883,1,4358_7778195_8013009,4358_58 -4358_80783,96,4358_16560,Baldoyle,12511,0,4358_7778195_6471003,4358_623 -4358_80783,205,4358_16561,Baldoyle,5357,0,4358_7778195_6471002,4358_624 -4358_80783,205,4358_16562,Baldoyle,5277,0,4358_7778195_6471007,4358_623 -4358_80783,96,4358_16563,Baldoyle,12609,0,4358_7778195_6471001,4358_623 -4358_80783,205,4358_16564,Baldoyle,5427,0,4358_7778195_6471001,4358_623 -4358_80783,96,4358_16565,Baldoyle,12557,0,4358_7778195_6471002,4358_623 -4358_80783,205,4358_16566,Baldoyle,6564,0,4358_7778195_6471004,4358_623 -4358_80783,96,4358_16567,Baldoyle,12494,0,4358_7778195_6471004,4358_623 -4358_80783,205,4358_16568,Baldoyle,5264,0,4358_7778195_6471005,4358_624 -4358_80783,205,4358_16570,Baldoyle,6575,0,4358_7778195_6471003,4358_623 -4358_80783,96,4358_16571,Baldoyle,12595,0,4358_7778195_6471005,4358_623 -4358_80783,205,4358_16572,Baldoyle,5389,0,4358_7778195_6471006,4358_623 -4358_80783,96,4358_16574,Baldoyle,12513,0,4358_7778195_6471003,4358_623 -4358_80783,205,4358_16575,Baldoyle,5247,0,4358_7778195_6471009,4358_623 -4358_80783,96,4358_16577,Baldoyle,12611,0,4358_7778195_6471001,4358_624 -4358_80783,205,4358_16578,Baldoyle,5359,0,4358_7778195_6471002,4358_625 -4358_80783,205,4358_16579,Baldoyle,5279,0,4358_7778195_6471007,4358_623 -4358_80682,96,4358_1658,Harristown,13626,1,4358_7778195_8013007,4358_64 -4358_80783,96,4358_16580,Baldoyle,12559,0,4358_7778195_6471002,4358_623 -4358_80783,205,4358_16582,Baldoyle,5429,0,4358_7778195_6471001,4358_624 -4358_80783,96,4358_16583,Baldoyle,12496,0,4358_7778195_6471004,4358_623 -4358_80783,205,4358_16584,Baldoyle,6566,0,4358_7778195_6471004,4358_623 -4358_80783,96,4358_16585,Baldoyle,12597,0,4358_7778195_6471005,4358_623 -4358_80783,205,4358_16587,Baldoyle,5266,0,4358_7778195_6471005,4358_625 -4358_80783,205,4358_16589,Baldoyle,6577,0,4358_7778195_6471003,4358_624 -4358_80682,205,4358_1659,Harristown,6711,1,4358_7778195_8013001,4358_62 -4358_80783,96,4358_16590,Baldoyle,12515,0,4358_7778195_6471003,4358_625 -4358_80783,96,4358_16591,Baldoyle,12623,0,4358_7778195_6471007,4358_623 -4358_80783,205,4358_16592,Baldoyle,5391,0,4358_7778195_6471006,4358_624 -4358_80783,205,4358_16595,Baldoyle,5249,0,4358_7778195_6471009,4358_624 -4358_80783,96,4358_16596,Baldoyle,12613,0,4358_7778195_6471001,4358_625 -4358_80783,205,4358_16597,Baldoyle,5361,0,4358_7778195_6471002,4358_623 -4358_80783,96,4358_16598,Baldoyle,12561,0,4358_7778195_6471002,4358_624 -4358_80760,96,4358_166,Shaw street,9468,0,4358_7778195_9001003,4358_1 -4358_80682,96,4358_1660,Harristown,13641,1,4358_7778195_8013009,4358_58 -4358_80783,205,4358_16600,Baldoyle,5281,0,4358_7778195_6471007,4358_623 -4358_80783,96,4358_16601,Baldoyle,12640,0,4358_7778195_6471006,4358_624 -4358_80783,96,4358_16604,Baldoyle,12498,0,4358_7778195_6471004,4358_624 -4358_80783,205,4358_16605,Baldoyle,5431,0,4358_7778195_6471001,4358_625 -4358_80783,205,4358_16607,Baldoyle,6568,0,4358_7778195_6471004,4358_624 -4358_80783,96,4358_16608,Baldoyle,12599,0,4358_7778195_6471005,4358_625 -4358_80682,205,4358_1661,Harristown,6985,1,4358_7778195_8013021,4358_58 -4358_80783,96,4358_16610,Baldoyle,12517,0,4358_7778195_6471003,4358_624 -4358_80783,205,4358_16611,Baldoyle,5268,0,4358_7778195_6471005,4358_625 -4358_80783,96,4358_16612,Baldoyle,12625,0,4358_7778195_6471007,4358_623 -4358_80783,205,4358_16613,Baldoyle,6579,0,4358_7778195_6471003,4358_624 -4358_80783,205,4358_16615,Baldoyle,5393,0,4358_7778195_6471006,4358_623 -4358_80783,96,4358_16617,Baldoyle,12615,0,4358_7778195_6471001,4358_625 -4358_80783,205,4358_16618,Baldoyle,5251,0,4358_7778195_6471009,4358_623 -4358_80783,96,4358_16619,Baldoyle,12563,0,4358_7778195_6471002,4358_624 -4358_80682,96,4358_1662,Harristown,13646,1,4358_7778195_8013010,4358_60 -4358_80783,96,4358_16621,Baldoyle,12413,0,4358_7778195_6471008,4358_623 -4358_80783,205,4358_16622,Baldoyle,5363,0,4358_7778195_6471002,4358_624 -4358_80783,205,4358_16624,Baldoyle,5283,0,4358_7778195_6471007,4358_623 -4358_80783,96,4358_16626,Baldoyle,12642,0,4358_7778195_6471006,4358_625 -4358_80783,96,4358_16628,Baldoyle,12500,0,4358_7778195_6471004,4358_624 -4358_80783,205,4358_16629,Baldoyle,5433,0,4358_7778195_6471001,4358_625 -4358_80783,205,4358_16630,Baldoyle,6570,0,4358_7778195_6471004,4358_623 -4358_80783,96,4358_16632,Baldoyle,12601,0,4358_7778195_6471005,4358_625 -4358_80783,96,4358_16633,Baldoyle,12519,0,4358_7778195_6471003,4358_623 -4358_80783,205,4358_16634,Baldoyle,5270,0,4358_7778195_6471005,4358_624 -4358_80783,96,4358_16636,Baldoyle,12627,0,4358_7778195_6471007,4358_623 -4358_80783,205,4358_16638,Baldoyle,6581,0,4358_7778195_6471003,4358_625 -4358_80682,96,4358_1664,Harristown,13654,1,4358_7778195_8013011,4358_58 -4358_80783,205,4358_16640,Baldoyle,5446,0,4358_7778195_6471010,4358_624 -4358_80783,96,4358_16641,Baldoyle,12617,0,4358_7778195_6471001,4358_625 -4358_80783,205,4358_16643,Baldoyle,5253,0,4358_7778195_6471009,4358_624 -4358_80783,96,4358_16644,Baldoyle,12565,0,4358_7778195_6471002,4358_625 -4358_80783,96,4358_16645,Baldoyle,12415,0,4358_7778195_6471008,4358_623 -4358_80783,205,4358_16646,Baldoyle,5365,0,4358_7778195_6471002,4358_624 -4358_80783,205,4358_16648,Baldoyle,5285,0,4358_7778195_6471007,4358_623 -4358_80682,205,4358_1665,Harristown,6891,1,4358_7778195_8013011,4358_62 -4358_80783,96,4358_16650,Baldoyle,12644,0,4358_7778195_6471006,4358_625 -4358_80783,96,4358_16652,Baldoyle,12502,0,4358_7778195_6471004,4358_624 -4358_80783,205,4358_16653,Baldoyle,5435,0,4358_7778195_6471001,4358_625 -4358_80783,205,4358_16654,Baldoyle,6572,0,4358_7778195_6471004,4358_623 -4358_80783,96,4358_16655,Baldoyle,12603,0,4358_7778195_6471005,4358_624 -4358_80783,96,4358_16657,Baldoyle,12521,0,4358_7778195_6471003,4358_623 -4358_80783,205,4358_16658,Baldoyle,5272,0,4358_7778195_6471005,4358_624 -4358_80682,96,4358_1666,Harristown,13583,1,4358_7778195_8013001,4358_58 -4358_80783,96,4358_16660,Baldoyle,12629,0,4358_7778195_6471007,4358_623 -4358_80783,205,4358_16662,Baldoyle,6583,0,4358_7778195_6471003,4358_625 -4358_80783,205,4358_16664,Baldoyle,5448,0,4358_7778195_6471010,4358_624 -4358_80783,96,4358_16665,Baldoyle,12619,0,4358_7778195_6471001,4358_625 -4358_80783,205,4358_16667,Baldoyle,5255,0,4358_7778195_6471009,4358_624 -4358_80783,96,4358_16668,Baldoyle,12567,0,4358_7778195_6471002,4358_625 -4358_80783,96,4358_16669,Baldoyle,12417,0,4358_7778195_6471008,4358_623 -4358_80682,205,4358_1667,Harristown,6904,1,4358_7778195_8013013,4358_60 -4358_80783,205,4358_16670,Baldoyle,5347,0,4358_7778195_6471011,4358_624 -4358_80783,96,4358_16673,Baldoyle,12646,0,4358_7778195_6471006,4358_624 -4358_80783,205,4358_16674,Baldoyle,5367,0,4358_7778195_6471002,4358_625 -4358_80783,205,4358_16676,Baldoyle,5287,0,4358_7778195_6471007,4358_624 -4358_80783,96,4358_16677,Baldoyle,12504,0,4358_7778195_6471004,4358_625 -4358_80783,96,4358_16678,Baldoyle,12605,0,4358_7778195_6471005,4358_623 -4358_80783,205,4358_16680,Baldoyle,5437,0,4358_7778195_6471001,4358_625 -4358_80783,96,4358_16681,Baldoyle,12523,0,4358_7778195_6471003,4358_623 -4358_80783,205,4358_16682,Baldoyle,5458,0,4358_7778195_6471012,4358_624 -4358_80783,96,4358_16684,Baldoyle,12631,0,4358_7778195_6471007,4358_623 -4358_80783,205,4358_16686,Baldoyle,5274,0,4358_7778195_6471005,4358_625 -4358_80783,205,4358_16688,Baldoyle,6585,0,4358_7778195_6471003,4358_624 -4358_80783,96,4358_16689,Baldoyle,12621,0,4358_7778195_6471001,4358_625 -4358_80682,205,4358_1669,Harristown,6906,1,4358_7778195_8013015,4358_58 -4358_80783,205,4358_16690,Baldoyle,5450,0,4358_7778195_6471010,4358_623 -4358_80783,96,4358_16692,Baldoyle,12569,0,4358_7778195_6471002,4358_625 -4358_80783,96,4358_16693,Baldoyle,12419,0,4358_7778195_6471008,4358_623 -4358_80783,205,4358_16694,Baldoyle,5257,0,4358_7778195_6471009,4358_624 -4358_80783,205,4358_16697,Baldoyle,5349,0,4358_7778195_6471011,4358_624 -4358_80783,96,4358_16698,Baldoyle,12648,0,4358_7778195_6471006,4358_625 -4358_80760,205,4358_167,Shaw street,1602,0,4358_7778195_9001005,4358_1 -4358_80682,96,4358_1670,Harristown,13593,1,4358_7778195_8013002,4358_58 -4358_80783,96,4358_16700,Baldoyle,12506,0,4358_7778195_6471004,4358_624 -4358_80783,205,4358_16701,Baldoyle,5369,0,4358_7778195_6471002,4358_625 -4358_80783,205,4358_16702,Baldoyle,5289,0,4358_7778195_6471007,4358_623 -4358_80783,96,4358_16703,Baldoyle,12607,0,4358_7778195_6471005,4358_624 -4358_80783,96,4358_16705,Baldoyle,12525,0,4358_7778195_6471003,4358_623 -4358_80783,205,4358_16707,Baldoyle,5439,0,4358_7778195_6471001,4358_625 -4358_80783,205,4358_16708,Baldoyle,5460,0,4358_7778195_6471012,4358_623 -4358_80783,96,4358_16709,Baldoyle,12633,0,4358_7778195_6471007,4358_623 -4358_80682,205,4358_1671,Harristown,6909,1,4358_7778195_8013016,4358_58 -4358_80783,205,4358_16711,Baldoyle,5276,0,4358_7778195_6471005,4358_624 -4358_80783,96,4358_16712,Baldoyle,12421,0,4358_7778195_6471008,4358_623 -4358_80783,205,4358_16713,Baldoyle,5452,0,4358_7778195_6471010,4358_623 -4358_80783,205,4358_16714,Baldoyle,5259,0,4358_7778195_6471009,4358_623 -4358_80783,96,4358_16715,Baldoyle,12650,0,4358_7778195_6471006,4358_624 -4358_80783,205,4358_16717,Baldoyle,5351,0,4358_7778195_6471011,4358_623 -4358_80783,96,4358_16718,Baldoyle,12508,0,4358_7778195_6471004,4358_623 -4358_80682,96,4358_1672,Harristown,13661,1,4358_7778195_8013013,4358_58 -4358_80783,205,4358_16720,Baldoyle,5371,0,4358_7778195_6471002,4358_624 -4358_80783,96,4358_16721,Baldoyle,12527,0,4358_7778195_6471003,4358_623 -4358_80783,205,4358_16722,Baldoyle,5291,0,4358_7778195_6471007,4358_623 -4358_80783,96,4358_16723,Baldoyle,12635,0,4358_7778195_6471007,4358_623 -4358_80783,205,4358_16725,Baldoyle,5441,0,4358_7778195_6471001,4358_625 -4358_80783,205,4358_16726,Baldoyle,5462,0,4358_7778195_6471012,4358_623 -4358_80783,96,4358_16727,Baldoyle,12423,0,4358_7778195_6471008,4358_623 -4358_80783,205,4358_16728,Baldoyle,5454,0,4358_7778195_6471010,4358_623 -4358_80783,96,4358_16730,Baldoyle,12652,0,4358_7778195_6471006,4358_623 -4358_80783,205,4358_16731,Baldoyle,5261,0,4358_7778195_6471009,4358_623 -4358_80783,96,4358_16732,Baldoyle,12510,0,4358_7778195_6471004,4358_623 -4358_80783,205,4358_16733,Baldoyle,5353,0,4358_7778195_6471011,4358_624 -4358_80783,205,4358_16735,Baldoyle,5373,0,4358_7778195_6471002,4358_623 -4358_80783,96,4358_16736,Baldoyle,12529,0,4358_7778195_6471003,4358_623 -4358_80783,205,4358_16738,Baldoyle,5293,0,4358_7778195_6471007,4358_624 -4358_80783,96,4358_16739,Baldoyle,12637,0,4358_7778195_6471007,4358_623 -4358_80682,205,4358_1674,Harristown,6987,1,4358_7778195_8013022,4358_58 -4358_80783,205,4358_16740,Baldoyle,5443,0,4358_7778195_6471001,4358_623 -4358_80783,96,4358_16741,Baldoyle,12425,0,4358_7778195_6471008,4358_623 -4358_80783,205,4358_16742,Baldoyle,5464,0,4358_7778195_6471012,4358_624 -4358_80783,205,4358_16744,Baldoyle,5456,0,4358_7778195_6471010,4358_623 -4358_80783,96,4358_16746,Baldoyle,12654,0,4358_7778195_6471006,4358_625 -4358_80783,96,4358_16747,Baldoyle,12531,0,4358_7778195_6471003,4358_623 -4358_80783,205,4358_16748,Baldoyle,5355,0,4358_7778195_6471011,4358_624 -4358_80682,96,4358_1675,Harristown,13608,1,4358_7778195_8013004,4358_58 -4358_80783,205,4358_16750,Abbey St Lower,5356,1,4358_7778195_6471002,4358_626 -4358_80783,96,4358_16751,Abbey St Lower,12608,1,4358_7778195_6471001,4358_626 -4358_80783,205,4358_16752,Abbey St Lower,5426,1,4358_7778195_6471001,4358_627 -4358_80783,205,4358_16753,Abbey St Lower,6563,1,4358_7778195_6471004,4358_626 -4358_80783,96,4358_16754,Abbey St Lower,12556,1,4358_7778195_6471002,4358_626 -4358_80783,205,4358_16755,Abbey St Lower,5263,1,4358_7778195_6471005,4358_626 -4358_80783,96,4358_16756,Abbey St Lower,12493,1,4358_7778195_6471004,4358_626 -4358_80783,205,4358_16757,Abbey St Lower,6574,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16758,Abbey St Lower,5388,1,4358_7778195_6471006,4358_626 -4358_80783,96,4358_16759,Abbey St Lower,12594,1,4358_7778195_6471005,4358_626 -4358_80682,205,4358_1676,Harristown,6994,1,4358_7778195_8013024,4358_58 -4358_80783,205,4358_16761,Abbey St Lower,5358,1,4358_7778195_6471002,4358_626 -4358_80783,96,4358_16762,Abbey St Lower,12512,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16763,Abbey St Lower,5278,1,4358_7778195_6471007,4358_626 -4358_80783,96,4358_16765,Abbey St Lower,12610,1,4358_7778195_6471001,4358_626 -4358_80783,205,4358_16766,Abbey St Lower,5428,1,4358_7778195_6471001,4358_626 -4358_80783,205,4358_16767,Abbey St Lower,5294,1,4358_7778195_6471008,4358_626 -4358_80783,96,4358_16769,Abbey St Lower,12558,1,4358_7778195_6471002,4358_627 -4358_80682,205,4358_1677,Harristown,6977,1,4358_7778195_8013019,4358_58 -4358_80783,205,4358_16770,Abbey St Lower,6565,1,4358_7778195_6471004,4358_626 -4358_80783,96,4358_16771,Abbey St Lower,12495,1,4358_7778195_6471004,4358_626 -4358_80783,205,4358_16772,Abbey St Lower,5265,1,4358_7778195_6471005,4358_627 -4358_80783,205,4358_16774,Abbey St Lower,6576,1,4358_7778195_6471003,4358_626 -4358_80783,96,4358_16775,Abbey St Lower,12596,1,4358_7778195_6471005,4358_626 -4358_80783,205,4358_16776,Abbey St Lower,5390,1,4358_7778195_6471006,4358_626 -4358_80783,96,4358_16777,Abbey St Lower,12514,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16779,Abbey St Lower,5248,1,4358_7778195_6471009,4358_626 -4358_80783,96,4358_16780,Abbey St Lower,12612,1,4358_7778195_6471001,4358_626 -4358_80783,205,4358_16782,Abbey St Lower,5360,1,4358_7778195_6471002,4358_626 -4358_80783,96,4358_16783,Abbey St Lower,12560,1,4358_7778195_6471002,4358_626 -4358_80783,205,4358_16785,Abbey St Lower,5280,1,4358_7778195_6471007,4358_626 -4358_80783,96,4358_16786,Abbey St Lower,12639,1,4358_7778195_6471006,4358_626 -4358_80783,205,4358_16788,Abbey St Lower,5430,1,4358_7778195_6471001,4358_626 -4358_80783,96,4358_16789,Abbey St Lower,12497,1,4358_7778195_6471004,4358_626 -4358_80682,96,4358_1679,Harristown,13621,1,4358_7778195_8013006,4358_64 -4358_80783,96,4358_16791,Abbey St Lower,12598,1,4358_7778195_6471005,4358_626 -4358_80783,205,4358_16792,Abbey St Lower,6567,1,4358_7778195_6471004,4358_626 -4358_80783,96,4358_16794,Abbey St Lower,12516,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16795,Abbey St Lower,5267,1,4358_7778195_6471005,4358_626 -4358_80783,96,4358_16797,Abbey St Lower,12624,1,4358_7778195_6471007,4358_626 -4358_80783,205,4358_16798,Abbey St Lower,6578,1,4358_7778195_6471003,4358_626 -4358_80682,205,4358_1680,Harristown,6824,1,4358_7778195_8013005,4358_58 -4358_80783,96,4358_16800,Abbey St Lower,12614,1,4358_7778195_6471001,4358_626 -4358_80783,205,4358_16801,Abbey St Lower,5392,1,4358_7778195_6471006,4358_626 -4358_80783,96,4358_16803,Abbey St Lower,12562,1,4358_7778195_6471002,4358_626 -4358_80783,205,4358_16804,Abbey St Lower,5250,1,4358_7778195_6471009,4358_626 -4358_80783,96,4358_16806,Abbey St Lower,12412,1,4358_7778195_6471008,4358_626 -4358_80783,205,4358_16807,Abbey St Lower,5362,1,4358_7778195_6471002,4358_626 -4358_80783,96,4358_16809,Abbey St Lower,12641,1,4358_7778195_6471006,4358_626 -4358_80682,96,4358_1681,Harristown,13636,1,4358_7778195_8013008,4358_58 -4358_80783,205,4358_16810,Abbey St Lower,5282,1,4358_7778195_6471007,4358_626 -4358_80783,96,4358_16812,Abbey St Lower,12499,1,4358_7778195_6471004,4358_626 -4358_80783,205,4358_16814,Abbey St Lower,5432,1,4358_7778195_6471001,4358_627 -4358_80783,96,4358_16815,Abbey St Lower,12600,1,4358_7778195_6471005,4358_626 -4358_80783,205,4358_16816,Abbey St Lower,6569,1,4358_7778195_6471004,4358_626 -4358_80783,96,4358_16818,Abbey St Lower,12518,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16819,Abbey St Lower,5269,1,4358_7778195_6471005,4358_626 -4358_80682,205,4358_1682,Harristown,6836,1,4358_7778195_8013007,4358_58 -4358_80783,96,4358_16821,Abbey St Lower,12626,1,4358_7778195_6471007,4358_626 -4358_80783,205,4358_16822,Abbey St Lower,6580,1,4358_7778195_6471003,4358_626 -4358_80783,96,4358_16824,Abbey St Lower,12616,1,4358_7778195_6471001,4358_626 -4358_80783,205,4358_16825,Abbey St Lower,5445,1,4358_7778195_6471010,4358_626 -4358_80783,96,4358_16827,Abbey St Lower,12564,1,4358_7778195_6471002,4358_626 -4358_80783,205,4358_16828,Abbey St Lower,5252,1,4358_7778195_6471009,4358_626 -4358_80783,96,4358_16830,Abbey St Lower,12414,1,4358_7778195_6471008,4358_626 -4358_80783,205,4358_16831,Abbey St Lower,5364,1,4358_7778195_6471002,4358_626 -4358_80783,96,4358_16833,Abbey St Lower,12643,1,4358_7778195_6471006,4358_626 -4358_80783,205,4358_16834,Abbey St Lower,5284,1,4358_7778195_6471007,4358_626 -4358_80783,96,4358_16836,Abbey St Lower,12501,1,4358_7778195_6471004,4358_626 -4358_80783,205,4358_16837,Abbey St Lower,5434,1,4358_7778195_6471001,4358_626 -4358_80783,96,4358_16839,Abbey St Lower,12602,1,4358_7778195_6471005,4358_626 -4358_80682,96,4358_1684,Harristown,13657,1,4358_7778195_8013012,4358_60 -4358_80783,205,4358_16840,Abbey St Lower,6571,1,4358_7778195_6471004,4358_626 -4358_80783,96,4358_16842,Abbey St Lower,12520,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16843,Abbey St Lower,5271,1,4358_7778195_6471005,4358_626 -4358_80783,96,4358_16845,Abbey St Lower,12628,1,4358_7778195_6471007,4358_626 -4358_80783,205,4358_16846,Abbey St Lower,6582,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16848,Abbey St Lower,5447,1,4358_7778195_6471010,4358_626 -4358_80783,96,4358_16849,Abbey St Lower,12618,1,4358_7778195_6471001,4358_626 -4358_80682,205,4358_1685,Harristown,6875,1,4358_7778195_8013008,4358_58 -4358_80783,205,4358_16851,Abbey St Lower,5254,1,4358_7778195_6471009,4358_626 -4358_80783,96,4358_16852,Abbey St Lower,12566,1,4358_7778195_6471002,4358_626 -4358_80783,205,4358_16854,Abbey St Lower,5346,1,4358_7778195_6471011,4358_626 -4358_80783,96,4358_16855,Abbey St Lower,12416,1,4358_7778195_6471008,4358_626 -4358_80783,205,4358_16857,Abbey St Lower,5366,1,4358_7778195_6471002,4358_626 -4358_80783,96,4358_16858,Abbey St Lower,12645,1,4358_7778195_6471006,4358_626 -4358_80682,96,4358_1686,Harristown,13602,1,4358_7778195_8013003,4358_58 -4358_80783,205,4358_16860,Abbey St Lower,5286,1,4358_7778195_6471007,4358_626 -4358_80783,96,4358_16861,Abbey St Lower,12503,1,4358_7778195_6471004,4358_626 -4358_80783,205,4358_16863,Abbey St Lower,5436,1,4358_7778195_6471001,4358_626 -4358_80783,96,4358_16864,Abbey St Lower,12604,1,4358_7778195_6471005,4358_626 -4358_80783,205,4358_16866,Abbey St Lower,5457,1,4358_7778195_6471012,4358_626 -4358_80783,96,4358_16867,Abbey St Lower,12522,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16869,Abbey St Lower,5273,1,4358_7778195_6471005,4358_626 -4358_80783,96,4358_16870,Abbey St Lower,12630,1,4358_7778195_6471007,4358_626 -4358_80783,205,4358_16872,Abbey St Lower,6584,1,4358_7778195_6471003,4358_626 -4358_80783,96,4358_16873,Abbey St Lower,12620,1,4358_7778195_6471001,4358_626 -4358_80783,205,4358_16875,Abbey St Lower,5449,1,4358_7778195_6471010,4358_626 -4358_80783,96,4358_16876,Abbey St Lower,12568,1,4358_7778195_6471002,4358_626 -4358_80783,205,4358_16878,Abbey St Lower,5256,1,4358_7778195_6471009,4358_626 -4358_80783,96,4358_16879,Abbey St Lower,12418,1,4358_7778195_6471008,4358_626 -4358_80682,205,4358_1688,Harristown,6886,1,4358_7778195_8013010,4358_58 -4358_80783,205,4358_16881,Abbey St Lower,5348,1,4358_7778195_6471011,4358_626 -4358_80783,96,4358_16882,Abbey St Lower,12647,1,4358_7778195_6471006,4358_626 -4358_80783,96,4358_16884,Abbey St Lower,12505,1,4358_7778195_6471004,4358_626 -4358_80783,205,4358_16885,Abbey St Lower,5368,1,4358_7778195_6471002,4358_627 -4358_80783,205,4358_16887,Abbey St Lower,5288,1,4358_7778195_6471007,4358_626 -4358_80783,96,4358_16888,Abbey St Lower,12606,1,4358_7778195_6471005,4358_627 -4358_80682,205,4358_1689,Harristown,6814,1,4358_7778195_8013003,4358_58 -4358_80783,96,4358_16890,Abbey St Lower,12524,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16891,Abbey St Lower,5438,1,4358_7778195_6471001,4358_627 -4358_80783,96,4358_16893,Abbey St Lower,12632,1,4358_7778195_6471007,4358_626 -4358_80783,205,4358_16894,Abbey St Lower,5459,1,4358_7778195_6471012,4358_627 -4358_80783,96,4358_16896,Abbey St Lower,12622,1,4358_7778195_6471001,4358_626 -4358_80783,205,4358_16897,Abbey St Lower,5275,1,4358_7778195_6471005,4358_626 -4358_80783,205,4358_16899,Abbey St Lower,5451,1,4358_7778195_6471010,4358_626 -4358_80760,96,4358_169,Shaw street,9506,0,4358_7778195_9001004,4358_1 -4358_80783,96,4358_16900,Abbey St Lower,12420,1,4358_7778195_6471008,4358_626 -4358_80783,205,4358_16902,Abbey St Lower,5258,1,4358_7778195_6471009,4358_626 -4358_80783,96,4358_16903,Abbey St Lower,12649,1,4358_7778195_6471006,4358_626 -4358_80783,205,4358_16904,Abbey St Lower,5350,1,4358_7778195_6471011,4358_626 -4358_80783,96,4358_16906,Abbey St Lower,12507,1,4358_7778195_6471004,4358_626 -4358_80783,205,4358_16907,Abbey St Lower,5370,1,4358_7778195_6471002,4358_626 -4358_80783,205,4358_16908,Abbey St Lower,5290,1,4358_7778195_6471007,4358_626 -4358_80783,96,4358_16909,Abbey St Lower,12526,1,4358_7778195_6471003,4358_626 -4358_80682,96,4358_1691,Harristown,13615,1,4358_7778195_8013005,4358_64 -4358_80783,205,4358_16911,Abbey St Lower,5440,1,4358_7778195_6471001,4358_626 -4358_80783,96,4358_16912,Abbey St Lower,12634,1,4358_7778195_6471007,4358_626 -4358_80783,205,4358_16913,Abbey St Lower,5461,1,4358_7778195_6471012,4358_626 -4358_80783,96,4358_16915,Abbey St Lower,12422,1,4358_7778195_6471008,4358_626 -4358_80783,205,4358_16916,Abbey St Lower,5453,1,4358_7778195_6471010,4358_626 -4358_80783,205,4358_16917,Abbey St Lower,5260,1,4358_7778195_6471009,4358_626 -4358_80783,96,4358_16918,Abbey St Lower,12651,1,4358_7778195_6471006,4358_626 -4358_80682,205,4358_1692,Harristown,6990,1,4358_7778195_8013023,4358_58 -4358_80783,205,4358_16920,Abbey St Lower,5352,1,4358_7778195_6471011,4358_626 -4358_80783,96,4358_16921,Abbey St Lower,12509,1,4358_7778195_6471004,4358_626 -4358_80783,205,4358_16922,Abbey St Lower,5372,1,4358_7778195_6471002,4358_626 -4358_80783,96,4358_16924,Abbey St Lower,12528,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16925,Abbey St Lower,5292,1,4358_7778195_6471007,4358_626 -4358_80783,205,4358_16926,Abbey St Lower,5442,1,4358_7778195_6471001,4358_626 -4358_80783,96,4358_16927,Abbey St Lower,12636,1,4358_7778195_6471007,4358_626 -4358_80783,205,4358_16929,Abbey St Lower,5463,1,4358_7778195_6471012,4358_626 -4358_80682,96,4358_1693,Harristown,13668,1,4358_7778195_8013015,4358_58 -4358_80783,96,4358_16930,Abbey St Lower,12424,1,4358_7778195_6471008,4358_626 -4358_80783,205,4358_16931,Abbey St Lower,5455,1,4358_7778195_6471010,4358_626 -4358_80783,96,4358_16933,Abbey St Lower,12653,1,4358_7778195_6471006,4358_626 -4358_80783,205,4358_16934,Abbey St Lower,5262,1,4358_7778195_6471009,4358_626 -4358_80783,96,4358_16936,Abbey St Lower,12530,1,4358_7778195_6471003,4358_626 -4358_80783,205,4358_16937,Abbey St Lower,5354,1,4358_7778195_6471011,4358_626 -4358_80783,96,4358_16939,Abbey St Lower,12638,1,4358_7778195_6471007,4358_626 -4358_80783,205,4358_16940,Abbey St Lower,5444,1,4358_7778195_6471001,4358_626 -4358_80784,205,4358_16941,Malahide,5320,0,4358_7778195_6472003,4358_628 -4358_80784,205,4358_16942,Malahide,5394,0,4358_7778195_6472005,4358_628 -4358_80784,96,4358_16943,Malahide,12472,0,4358_7778195_6472006,4358_628 -4358_80784,205,4358_16944,Malahide,5245,0,4358_7778195_6472002,4358_628 -4358_80784,205,4358_16945,Malahide,5322,0,4358_7778195_6472003,4358_628 -4358_80784,96,4358_16946,Malahide,12547,0,4358_7778195_6472002,4358_628 -4358_80784,205,4358_16948,Malahide,5375,0,4358_7778195_6472007,4358_628 -4358_80784,96,4358_16949,Malahide,12427,0,4358_7778195_6472005,4358_628 -4358_80682,205,4358_1695,Harristown,6895,1,4358_7778195_8013012,4358_58 -4358_80784,205,4358_16950,Malahide,6589,0,4358_7778195_6472001,4358_628 -4358_80784,96,4358_16952,Malahide,12474,0,4358_7778195_6472006,4358_628 -4358_80784,205,4358_16953,Malahide,5412,0,4358_7778195_6472008,4358_628 -4358_80784,96,4358_16955,Malahide,12533,0,4358_7778195_6472007,4358_629 -4358_80784,205,4358_16956,Malahide,5468,0,4358_7778195_6472004,4358_630 -4358_80784,205,4358_16957,Malahide,5324,0,4358_7778195_6472003,4358_628 -4358_80784,96,4358_16958,Malahide,12549,0,4358_7778195_6472002,4358_629 -4358_80784,205,4358_16960,Malahide,5377,0,4358_7778195_6472007,4358_628 -4358_80784,96,4358_16962,Malahide,12429,0,4358_7778195_6472005,4358_630 -4358_80784,205,4358_16964,Malahide,6591,0,4358_7778195_6472001,4358_629 -4358_80784,96,4358_16965,Malahide,12476,0,4358_7778195_6472006,4358_630 -4358_80784,205,4358_16966,Malahide,5414,0,4358_7778195_6472008,4358_628 -4358_80784,96,4358_16968,Malahide,12457,0,4358_7778195_6472010,4358_630 -4358_80784,96,4358_16969,Malahide,12535,0,4358_7778195_6472007,4358_628 -4358_80682,96,4358_1697,Harristown,13628,1,4358_7778195_8013007,4358_60 -4358_80784,205,4358_16970,Malahide,5470,0,4358_7778195_6472004,4358_629 -4358_80784,205,4358_16973,Malahide,5326,0,4358_7778195_6472003,4358_629 -4358_80784,96,4358_16974,Malahide,12449,0,4358_7778195_6472012,4358_630 -4358_80784,205,4358_16975,Malahide,5379,0,4358_7778195_6472007,4358_628 -4358_80784,96,4358_16977,Malahide,12668,0,4358_7778195_6472008,4358_630 -4358_80784,205,4358_16979,Malahide,5295,0,4358_7778195_6472011,4358_629 -4358_80682,205,4358_1698,Harristown,6899,1,4358_7778195_8013014,4358_58 -4358_80784,96,4358_16980,Malahide,12431,0,4358_7778195_6472005,4358_630 -4358_80784,205,4358_16981,Malahide,5416,0,4358_7778195_6472008,4358_628 -4358_80784,96,4358_16982,Malahide,12570,0,4358_7778195_6472013,4358_629 -4358_80784,96,4358_16984,Malahide,12537,0,4358_7778195_6472007,4358_628 -4358_80784,205,4358_16985,Malahide,5472,0,4358_7778195_6472004,4358_629 -4358_80784,205,4358_16988,Malahide,5328,0,4358_7778195_6472003,4358_629 -4358_80784,96,4358_16989,Malahide,12678,0,4358_7778195_6472009,4358_630 -4358_80784,205,4358_16990,Malahide,5381,0,4358_7778195_6472007,4358_628 -4358_80784,96,4358_16992,Malahide,12670,0,4358_7778195_6472008,4358_630 -4358_80784,205,4358_16994,Malahide,5297,0,4358_7778195_6472011,4358_629 -4358_80784,96,4358_16995,Malahide,12587,0,4358_7778195_6472014,4358_630 -4358_80784,205,4358_16996,Malahide,5418,0,4358_7778195_6472008,4358_628 -4358_80784,96,4358_16997,Malahide,12572,0,4358_7778195_6472013,4358_629 -4358_80784,96,4358_16999,Malahide,12461,0,4358_7778195_6472010,4358_628 -4358_80760,205,4358_17,Shaw street,1539,0,4358_7778195_9001010,4358_1 -4358_80760,205,4358_170,Shaw street,1555,0,4358_7778195_9001010,4358_2 -4358_80682,96,4358_1700,Harristown,13664,1,4358_7778195_8013014,4358_60 -4358_80784,205,4358_17000,Malahide,5474,0,4358_7778195_6472004,4358_629 -4358_80784,96,4358_17003,Malahide,12469,0,4358_7778195_6472015,4358_629 -4358_80784,205,4358_17004,Malahide,5330,0,4358_7778195_6472003,4358_630 -4358_80784,205,4358_17005,Malahide,5383,0,4358_7778195_6472007,4358_628 -4358_80784,96,4358_17007,Malahide,12555,0,4358_7778195_6472002,4358_630 -4358_80784,205,4358_17009,Malahide,5299,0,4358_7778195_6472011,4358_629 -4358_80682,205,4358_1701,Harristown,6830,1,4358_7778195_8013006,4358_58 -4358_80784,96,4358_17010,Malahide,12589,0,4358_7778195_6472014,4358_630 -4358_80784,205,4358_17011,Malahide,5420,0,4358_7778195_6472008,4358_628 -4358_80784,96,4358_17013,Malahide,12435,0,4358_7778195_6472005,4358_630 -4358_80784,205,4358_17014,Malahide,5476,0,4358_7778195_6472004,4358_628 -4358_80784,96,4358_17015,Malahide,12463,0,4358_7778195_6472010,4358_628 -4358_80784,205,4358_17017,Malahide,5332,0,4358_7778195_6472003,4358_628 -4358_80784,96,4358_17018,Malahide,12471,0,4358_7778195_6472015,4358_628 -4358_80784,205,4358_17019,Malahide,5385,0,4358_7778195_6472007,4358_628 -4358_80682,205,4358_1702,Harristown,6931,1,4358_7778195_8013017,4358_58 -4358_80784,96,4358_17021,Malahide,12591,0,4358_7778195_6472014,4358_628 -4358_80784,205,4358_17022,Malahide,5301,0,4358_7778195_6472011,4358_628 -4358_80784,205,4358_17023,Malahide,5422,0,4358_7778195_6472008,4358_628 -4358_80784,96,4358_17025,Malahide,12437,0,4358_7778195_6472005,4358_629 -4358_80784,205,4358_17026,Malahide,5478,0,4358_7778195_6472004,4358_628 -4358_80784,96,4358_17027,Malahide,12465,0,4358_7778195_6472010,4358_628 -4358_80784,205,4358_17028,Malahide,5387,0,4358_7778195_6472007,4358_628 -4358_80682,96,4358_1703,Harristown,13643,1,4358_7778195_8013009,4358_60 -4358_80784,96,4358_17030,Malahide,12491,0,4358_7778195_6472018,4358_628 -4358_80784,205,4358_17031,Malahide,5303,0,4358_7778195_6472011,4358_628 -4358_80784,205,4358_17032,Malahide,5424,0,4358_7778195_6472008,4358_628 -4358_80784,96,4358_17034,Malahide,12593,0,4358_7778195_6472014,4358_630 -4358_80784,96,4358_17036,Malahide,12467,0,4358_7778195_6472010,4358_629 -4358_80784,205,4358_17037,Abbey St Lower,5244,1,4358_7778195_6472002,4358_631 -4358_80784,96,4358_17038,Abbey St Lower,12546,1,4358_7778195_6472002,4358_631 -4358_80784,205,4358_17039,Abbey St Lower,5321,1,4358_7778195_6472003,4358_631 -4358_80784,205,4358_17040,Abbey St Lower,5374,1,4358_7778195_6472007,4358_631 -4358_80784,96,4358_17041,Abbey St Lower,12426,1,4358_7778195_6472005,4358_631 -4358_80784,205,4358_17043,Abbey St Lower,5395,1,4358_7778195_6472005,4358_631 -4358_80784,96,4358_17044,Abbey St Lower,12473,1,4358_7778195_6472006,4358_631 -4358_80784,205,4358_17045,Abbey St Lower,6605,1,4358_7778195_6472009,4358_631 -4358_80784,96,4358_17047,Abbey St Lower,12532,1,4358_7778195_6472007,4358_631 -4358_80784,205,4358_17048,Abbey St Lower,5246,1,4358_7778195_6472002,4358_631 -4358_80784,205,4358_17049,Abbey St Lower,5323,1,4358_7778195_6472003,4358_631 -4358_80682,205,4358_1705,Harristown,7006,1,4358_7778195_8013027,4358_58 -4358_80784,96,4358_17051,Abbey St Lower,12548,1,4358_7778195_6472002,4358_631 -4358_80784,205,4358_17052,Abbey St Lower,5376,1,4358_7778195_6472007,4358_631 -4358_80784,96,4358_17054,Abbey St Lower,12428,1,4358_7778195_6472005,4358_631 -4358_80784,205,4358_17055,Abbey St Lower,6590,1,4358_7778195_6472001,4358_631 -4358_80784,96,4358_17056,Abbey St Lower,12475,1,4358_7778195_6472006,4358_631 -4358_80784,205,4358_17058,Abbey St Lower,5413,1,4358_7778195_6472008,4358_631 -4358_80784,96,4358_17059,Abbey St Lower,12456,1,4358_7778195_6472010,4358_631 -4358_80784,205,4358_17061,Abbey St Lower,5469,1,4358_7778195_6472004,4358_631 -4358_80784,96,4358_17062,Abbey St Lower,12534,1,4358_7778195_6472007,4358_631 -4358_80784,205,4358_17065,Abbey St Lower,5325,1,4358_7778195_6472003,4358_632 -4358_80784,96,4358_17066,Abbey St Lower,12550,1,4358_7778195_6472002,4358_631 -4358_80784,205,4358_17067,Abbey St Lower,5378,1,4358_7778195_6472007,4358_631 -4358_80784,96,4358_17069,Abbey St Lower,12430,1,4358_7778195_6472005,4358_632 -4358_80682,96,4358_1707,Harristown,13648,1,4358_7778195_8013010,4358_60 -4358_80784,205,4358_17070,Abbey St Lower,6592,1,4358_7778195_6472001,4358_631 -4358_80784,96,4358_17072,Abbey St Lower,12477,1,4358_7778195_6472006,4358_632 -4358_80784,205,4358_17073,Abbey St Lower,5415,1,4358_7778195_6472008,4358_631 -4358_80784,96,4358_17075,Abbey St Lower,12458,1,4358_7778195_6472010,4358_632 -4358_80784,205,4358_17076,Abbey St Lower,5471,1,4358_7778195_6472004,4358_631 -4358_80784,96,4358_17077,Abbey St Lower,12536,1,4358_7778195_6472007,4358_631 -4358_80784,205,4358_17079,Abbey St Lower,5327,1,4358_7778195_6472003,4358_631 -4358_80682,205,4358_1708,Harristown,6713,1,4358_7778195_8013001,4358_58 -4358_80784,96,4358_17081,Abbey St Lower,12450,1,4358_7778195_6472012,4358_632 -4358_80784,205,4358_17082,Abbey St Lower,5380,1,4358_7778195_6472007,4358_631 -4358_80784,96,4358_17083,Abbey St Lower,12669,1,4358_7778195_6472008,4358_631 -4358_80784,205,4358_17085,Abbey St Lower,5296,1,4358_7778195_6472011,4358_631 -4358_80784,96,4358_17086,Abbey St Lower,12432,1,4358_7778195_6472005,4358_631 -4358_80784,205,4358_17088,Abbey St Lower,5417,1,4358_7778195_6472008,4358_631 -4358_80784,96,4358_17089,Abbey St Lower,12571,1,4358_7778195_6472013,4358_631 -4358_80682,96,4358_1709,Harristown,13675,1,4358_7778195_8013017,4358_58 -4358_80784,205,4358_17091,Abbey St Lower,5473,1,4358_7778195_6472004,4358_631 -4358_80784,96,4358_17092,Abbey St Lower,12538,1,4358_7778195_6472007,4358_631 -4358_80784,205,4358_17094,Abbey St Lower,5329,1,4358_7778195_6472003,4358_631 -4358_80784,96,4358_17095,Abbey St Lower,12468,1,4358_7778195_6472015,4358_631 -4358_80784,96,4358_17097,Abbey St Lower,12671,1,4358_7778195_6472008,4358_631 -4358_80784,205,4358_17098,Abbey St Lower,5382,1,4358_7778195_6472007,4358_631 -4358_80784,96,4358_17100,Abbey St Lower,12588,1,4358_7778195_6472014,4358_631 -4358_80784,205,4358_17101,Abbey St Lower,5298,1,4358_7778195_6472011,4358_631 -4358_80784,96,4358_17103,Abbey St Lower,12579,1,4358_7778195_6472017,4358_631 -4358_80784,205,4358_17104,Abbey St Lower,5419,1,4358_7778195_6472008,4358_631 -4358_80784,96,4358_17106,Abbey St Lower,12573,1,4358_7778195_6472013,4358_631 -4358_80784,205,4358_17107,Abbey St Lower,5475,1,4358_7778195_6472004,4358_631 -4358_80784,96,4358_17109,Abbey St Lower,12462,1,4358_7778195_6472010,4358_631 -4358_80682,205,4358_1711,Harristown,6999,1,4358_7778195_8013025,4358_58 -4358_80784,205,4358_17110,Abbey St Lower,5331,1,4358_7778195_6472003,4358_631 -4358_80784,96,4358_17111,Abbey St Lower,12470,1,4358_7778195_6472015,4358_631 -4358_80784,205,4358_17113,Abbey St Lower,5384,1,4358_7778195_6472007,4358_631 -4358_80784,96,4358_17114,Abbey St Lower,12590,1,4358_7778195_6472014,4358_631 -4358_80784,205,4358_17115,Abbey St Lower,5300,1,4358_7778195_6472011,4358_631 -4358_80784,96,4358_17116,Abbey St Lower,12436,1,4358_7778195_6472005,4358_631 -4358_80784,205,4358_17118,Abbey St Lower,5421,1,4358_7778195_6472008,4358_631 -4358_80784,205,4358_17119,Abbey St Lower,5477,1,4358_7778195_6472004,4358_631 -4358_80682,96,4358_1712,Harristown,13585,1,4358_7778195_8013001,4358_58 -4358_80784,96,4358_17120,Abbey St Lower,12464,1,4358_7778195_6472010,4358_631 -4358_80784,205,4358_17122,Abbey St Lower,5386,1,4358_7778195_6472007,4358_631 -4358_80784,96,4358_17123,Abbey St Lower,12490,1,4358_7778195_6472018,4358_631 -4358_80784,205,4358_17124,Abbey St Lower,5302,1,4358_7778195_6472011,4358_631 -4358_80784,96,4358_17125,Abbey St Lower,12592,1,4358_7778195_6472014,4358_631 -4358_80784,205,4358_17127,Abbey St Lower,5423,1,4358_7778195_6472008,4358_631 -4358_80784,96,4358_17128,Abbey St Lower,12466,1,4358_7778195_6472010,4358_631 -4358_80784,205,4358_17129,Abbey St Lower,5479,1,4358_7778195_6472004,4358_632 -4358_80784,96,4358_17131,Abbey St Lower,12492,1,4358_7778195_6472018,4358_631 -4358_80784,205,4358_17132,Abbey St Lower,5304,1,4358_7778195_6472011,4358_632 -4358_80785,205,4358_17134,Howth Summit,6587,0,4358_7778195_6472001,4358_633 -4358_80785,96,4358_17135,Howth Summit,12481,0,4358_7778195_6472003,4358_633 -4358_80785,205,4358_17136,Howth Summit,5410,0,4358_7778195_6472008,4358_633 -4358_80785,96,4358_17137,Howth Summit,12439,0,4358_7778195_6472001,4358_633 -4358_80785,205,4358_17138,Howth Summit,5466,0,4358_7778195_6472004,4358_633 -4358_80785,205,4358_17139,Howth Summit,6594,0,4358_7778195_6472006,4358_633 -4358_80682,205,4358_1714,Harristown,7009,1,4358_7778195_8013028,4358_58 -4358_80785,96,4358_17140,Howth Summit,12656,0,4358_7778195_6472004,4358_633 -4358_80785,205,4358_17142,Howth Summit,5305,0,4358_7778195_6472010,4358_633 -4358_80785,96,4358_17143,Howth Summit,12664,0,4358_7778195_6472008,4358_633 -4358_80785,205,4358_17144,Howth Summit,5396,0,4358_7778195_6472005,4358_633 -4358_80785,96,4358_17146,Howth Summit,12441,0,4358_7778195_6472001,4358_633 -4358_80785,205,4358_17147,Howth Summit,6606,0,4358_7778195_6472009,4358_633 -4358_80785,205,4358_17148,Howth Summit,6596,0,4358_7778195_6472006,4358_633 -4358_80785,96,4358_17149,Howth Summit,12658,0,4358_7778195_6472004,4358_634 -4358_80682,205,4358_1715,Harristown,7004,1,4358_7778195_8013026,4358_58 -4358_80785,205,4358_17152,Howth Summit,5307,0,4358_7778195_6472010,4358_634 -4358_80785,96,4358_17153,Howth Summit,12674,0,4358_7778195_6472009,4358_635 -4358_80785,96,4358_17155,Howth Summit,12666,0,4358_7778195_6472008,4358_634 -4358_80785,205,4358_17156,Howth Summit,5398,0,4358_7778195_6472005,4358_635 -4358_80785,205,4358_17158,Howth Summit,6608,0,4358_7778195_6472009,4358_634 -4358_80785,96,4358_17159,Howth Summit,12443,0,4358_7778195_6472001,4358_635 -4358_80682,96,4358_1716,Harristown,13595,1,4358_7778195_8013002,4358_60 -4358_80785,205,4358_17160,Howth Summit,6598,0,4358_7778195_6472006,4358_633 -4358_80785,96,4358_17161,Howth Summit,12660,0,4358_7778195_6472004,4358_634 -4358_80785,205,4358_17163,Howth Summit,5309,0,4358_7778195_6472010,4358_633 -4358_80785,96,4358_17164,Howth Summit,12676,0,4358_7778195_6472009,4358_634 -4358_80785,96,4358_17167,Howth Summit,12551,0,4358_7778195_6472002,4358_634 -4358_80785,205,4358_17168,Howth Summit,5400,0,4358_7778195_6472005,4358_635 -4358_80785,96,4358_17170,Howth Summit,12484,0,4358_7778195_6472011,4358_634 -4358_80785,205,4358_17171,Howth Summit,6610,0,4358_7778195_6472009,4358_635 -4358_80785,205,4358_17172,Howth Summit,6600,0,4358_7778195_6472006,4358_633 -4358_80785,96,4358_17174,Howth Summit,12445,0,4358_7778195_6472001,4358_635 -4358_80785,96,4358_17176,Howth Summit,12478,0,4358_7778195_6472006,4358_634 -4358_80785,205,4358_17177,Howth Summit,5311,0,4358_7778195_6472010,4358_633 -4358_80785,96,4358_17179,Howth Summit,12459,0,4358_7778195_6472010,4358_635 -4358_80682,205,4358_1718,Harristown,7018,1,4358_7778195_8013030,4358_58 -4358_80785,96,4358_17180,Howth Summit,12662,0,4358_7778195_6472004,4358_633 -4358_80785,205,4358_17182,Howth Summit,5402,0,4358_7778195_6472005,4358_635 -4358_80785,96,4358_17184,Howth Summit,12451,0,4358_7778195_6472012,4358_634 -4358_80785,205,4358_17186,Howth Summit,6612,0,4358_7778195_6472009,4358_634 -4358_80785,96,4358_17187,Howth Summit,12553,0,4358_7778195_6472002,4358_635 -4358_80785,205,4358_17188,Howth Summit,5338,0,4358_7778195_6472012,4358_633 -4358_80785,96,4358_17189,Howth Summit,12486,0,4358_7778195_6472011,4358_634 -4358_80682,96,4358_1719,Harristown,13671,1,4358_7778195_8013016,4358_58 -4358_80785,96,4358_17192,Howth Summit,12433,0,4358_7778195_6472005,4358_634 -4358_80785,205,4358_17193,Howth Summit,6602,0,4358_7778195_6472006,4358_633 -4358_80785,96,4358_17195,Howth Summit,12447,0,4358_7778195_6472001,4358_635 -4358_80785,205,4358_17196,Howth Summit,5313,0,4358_7778195_6472013,4358_633 -4358_80785,96,4358_17198,Howth Summit,12480,0,4358_7778195_6472006,4358_635 -4358_80785,96,4358_17199,Howth Summit,12539,0,4358_7778195_6472007,4358_633 -4358_80760,205,4358_172,Shanard Road,1896,1,4358_7778195_9001002,4358_4 -4358_80785,96,4358_17201,Howth Summit,12679,0,4358_7778195_6472016,4358_633 -4358_80785,205,4358_17203,Howth Summit,5404,0,4358_7778195_6472005,4358_635 -4358_80785,205,4358_17205,Howth Summit,6614,0,4358_7778195_6472009,4358_634 -4358_80785,96,4358_17206,Howth Summit,12453,0,4358_7778195_6472012,4358_635 -4358_80785,96,4358_17208,Howth Summit,12672,0,4358_7778195_6472008,4358_634 -4358_80682,205,4358_1721,Harristown,7020,1,4358_7778195_8013031,4358_58 -4358_80785,205,4358_17210,Howth Summit,5340,0,4358_7778195_6472012,4358_634 -4358_80785,96,4358_17211,Howth Summit,12488,0,4358_7778195_6472011,4358_635 -4358_80785,205,4358_17212,Howth Summit,6604,0,4358_7778195_6472006,4358_633 -4358_80785,96,4358_17213,Howth Summit,12580,0,4358_7778195_6472017,4358_634 -4358_80785,96,4358_17215,Howth Summit,12574,0,4358_7778195_6472013,4358_633 -4358_80785,205,4358_17217,Howth Summit,5315,0,4358_7778195_6472013,4358_633 -4358_80785,96,4358_17218,Howth Summit,12541,0,4358_7778195_6472007,4358_634 -4358_80785,205,4358_17220,Howth Summit,5406,0,4358_7778195_6472005,4358_633 -4358_80785,96,4358_17221,Howth Summit,12455,0,4358_7778195_6472012,4358_633 -4358_80785,205,4358_17223,Howth Summit,5334,0,4358_7778195_6472014,4358_633 -4358_80785,96,4358_17224,Howth Summit,12582,0,4358_7778195_6472017,4358_633 -4358_80785,205,4358_17225,Howth Summit,5342,0,4358_7778195_6472012,4358_633 -4358_80785,96,4358_17227,Howth Summit,12576,0,4358_7778195_6472013,4358_633 -4358_80785,205,4358_17228,Howth Summit,5317,0,4358_7778195_6472013,4358_633 -4358_80785,205,4358_17229,Howth Summit,5408,0,4358_7778195_6472005,4358_633 -4358_80682,96,4358_1723,Harristown,13677,1,4358_7778195_8013018,4358_60 -4358_80785,96,4358_17230,Howth Summit,12543,0,4358_7778195_6472007,4358_633 -4358_80785,205,4358_17232,Howth Summit,5336,0,4358_7778195_6472014,4358_633 -4358_80785,96,4358_17233,Howth Summit,12584,0,4358_7778195_6472017,4358_633 -4358_80785,205,4358_17234,Howth Summit,5344,0,4358_7778195_6472012,4358_633 -4358_80785,96,4358_17236,Howth Summit,12578,0,4358_7778195_6472013,4358_633 -4358_80785,205,4358_17237,Howth Summit,5319,0,4358_7778195_6472013,4358_633 -4358_80785,96,4358_17239,Howth Summit,12545,0,4358_7778195_6472007,4358_634 -4358_80682,205,4358_1724,Harristown,7025,1,4358_7778195_8013032,4358_58 -4358_80785,205,4358_17240,Howth Summit,5480,0,4358_7778195_6472004,4358_635 -4358_80785,205,4358_17241,Abbey St Lower,6586,1,4358_7778195_6472001,4358_636 -4358_80785,96,4358_17242,Abbey St Lower,12438,1,4358_7778195_6472001,4358_636 -4358_80785,205,4358_17243,Abbey St Lower,5465,1,4358_7778195_6472004,4358_636 -4358_80785,205,4358_17244,Abbey St Lower,6593,1,4358_7778195_6472006,4358_636 -4358_80785,96,4358_17245,Abbey St Lower,12655,1,4358_7778195_6472004,4358_637 -4358_80785,205,4358_17246,Abbey St Lower,6588,1,4358_7778195_6472001,4358_636 -4358_80785,96,4358_17247,Abbey St Lower,12482,1,4358_7778195_6472003,4358_636 -4358_80785,205,4358_17249,Abbey St Lower,5411,1,4358_7778195_6472008,4358_636 -4358_80785,96,4358_17250,Abbey St Lower,12440,1,4358_7778195_6472001,4358_636 -4358_80785,205,4358_17251,Abbey St Lower,5467,1,4358_7778195_6472004,4358_636 -4358_80785,205,4358_17252,Abbey St Lower,6595,1,4358_7778195_6472006,4358_636 -4358_80785,96,4358_17254,Abbey St Lower,12657,1,4358_7778195_6472004,4358_636 -4358_80785,205,4358_17255,Abbey St Lower,5306,1,4358_7778195_6472010,4358_636 -4358_80785,96,4358_17257,Abbey St Lower,12673,1,4358_7778195_6472009,4358_636 -4358_80785,205,4358_17258,Abbey St Lower,5397,1,4358_7778195_6472005,4358_636 -4358_80682,96,4358_1726,Harristown,13610,1,4358_7778195_8013004,4358_60 -4358_80785,96,4358_17260,Abbey St Lower,12665,1,4358_7778195_6472008,4358_636 -4358_80785,96,4358_17261,Abbey St Lower,12442,1,4358_7778195_6472001,4358_636 -4358_80785,205,4358_17262,Abbey St Lower,6607,1,4358_7778195_6472009,4358_636 -4358_80785,96,4358_17264,Abbey St Lower,12659,1,4358_7778195_6472004,4358_636 -4358_80785,205,4358_17265,Abbey St Lower,6597,1,4358_7778195_6472006,4358_636 -4358_80785,96,4358_17267,Abbey St Lower,12675,1,4358_7778195_6472009,4358_636 -4358_80785,205,4358_17268,Abbey St Lower,5308,1,4358_7778195_6472010,4358_636 -4358_80682,205,4358_1727,Harristown,7027,1,4358_7778195_8013033,4358_58 -4358_80785,96,4358_17270,Abbey St Lower,12667,1,4358_7778195_6472008,4358_636 -4358_80785,205,4358_17272,Abbey St Lower,5399,1,4358_7778195_6472005,4358_637 -4358_80785,96,4358_17274,Abbey St Lower,12483,1,4358_7778195_6472011,4358_637 -4358_80785,205,4358_17275,Abbey St Lower,6609,1,4358_7778195_6472009,4358_636 -4358_80785,96,4358_17277,Abbey St Lower,12444,1,4358_7778195_6472001,4358_637 -4358_80785,205,4358_17278,Abbey St Lower,6599,1,4358_7778195_6472006,4358_636 -4358_80785,96,4358_17279,Abbey St Lower,12661,1,4358_7778195_6472004,4358_636 -4358_80682,205,4358_1728,Harristown,6996,1,4358_7778195_8013024,4358_58 -4358_80785,205,4358_17281,Abbey St Lower,5310,1,4358_7778195_6472010,4358_636 -4358_80785,96,4358_17282,Abbey St Lower,12677,1,4358_7778195_6472009,4358_636 -4358_80785,205,4358_17284,Abbey St Lower,5401,1,4358_7778195_6472005,4358_636 -4358_80785,96,4358_17286,Abbey St Lower,12552,1,4358_7778195_6472002,4358_637 -4358_80785,205,4358_17287,Abbey St Lower,6611,1,4358_7778195_6472009,4358_636 -4358_80785,96,4358_17288,Abbey St Lower,12485,1,4358_7778195_6472011,4358_636 -4358_80785,96,4358_17291,Abbey St Lower,12586,1,4358_7778195_6472014,4358_637 -4358_80785,205,4358_17292,Abbey St Lower,5337,1,4358_7778195_6472012,4358_636 -4358_80785,96,4358_17294,Abbey St Lower,12446,1,4358_7778195_6472001,4358_636 -4358_80785,205,4358_17295,Abbey St Lower,6601,1,4358_7778195_6472006,4358_636 -4358_80785,96,4358_17297,Abbey St Lower,12479,1,4358_7778195_6472006,4358_636 -4358_80785,96,4358_17299,Abbey St Lower,12460,1,4358_7778195_6472010,4358_636 -4358_80760,96,4358_173,Shanard Road,9379,1,4358_7778195_9001001,4358_5 -4358_80682,96,4358_1730,Harristown,13623,1,4358_7778195_8013006,4358_64 -4358_80785,205,4358_17300,Abbey St Lower,5312,1,4358_7778195_6472013,4358_636 -4358_80785,96,4358_17302,Abbey St Lower,12663,1,4358_7778195_6472004,4358_636 -4358_80785,205,4358_17303,Abbey St Lower,5403,1,4358_7778195_6472005,4358_637 -4358_80785,96,4358_17305,Abbey St Lower,12452,1,4358_7778195_6472012,4358_636 -4358_80785,205,4358_17307,Abbey St Lower,6613,1,4358_7778195_6472009,4358_636 -4358_80785,96,4358_17308,Abbey St Lower,12554,1,4358_7778195_6472002,4358_637 -4358_80682,205,4358_1731,Harristown,6979,1,4358_7778195_8013019,4358_58 -4358_80785,96,4358_17310,Abbey St Lower,12487,1,4358_7778195_6472011,4358_637 -4358_80785,205,4358_17311,Abbey St Lower,5339,1,4358_7778195_6472012,4358_636 -4358_80785,96,4358_17313,Abbey St Lower,12448,1,4358_7778195_6472001,4358_637 -4358_80785,96,4358_17314,Abbey St Lower,12434,1,4358_7778195_6472005,4358_636 -4358_80785,205,4358_17316,Abbey St Lower,6603,1,4358_7778195_6472006,4358_636 -4358_80785,96,4358_17318,Abbey St Lower,12540,1,4358_7778195_6472007,4358_636 -4358_80785,205,4358_17319,Abbey St Lower,5314,1,4358_7778195_6472013,4358_636 -4358_80785,96,4358_17321,Abbey St Lower,12680,1,4358_7778195_6472016,4358_636 -4358_80785,96,4358_17323,Abbey St Lower,12454,1,4358_7778195_6472012,4358_636 -4358_80785,205,4358_17324,Abbey St Lower,5405,1,4358_7778195_6472005,4358_636 -4358_80785,205,4358_17326,Abbey St Lower,5333,1,4358_7778195_6472014,4358_636 -4358_80785,96,4358_17327,Abbey St Lower,12489,1,4358_7778195_6472011,4358_636 -4358_80785,96,4358_17328,Abbey St Lower,12581,1,4358_7778195_6472017,4358_636 -4358_80785,205,4358_17329,Abbey St Lower,5341,1,4358_7778195_6472012,4358_636 -4358_80682,96,4358_1733,Harristown,13638,1,4358_7778195_8013008,4358_60 -4358_80785,96,4358_17331,Abbey St Lower,12575,1,4358_7778195_6472013,4358_636 -4358_80785,205,4358_17332,Abbey St Lower,5316,1,4358_7778195_6472013,4358_636 -4358_80785,96,4358_17333,Abbey St Lower,12542,1,4358_7778195_6472007,4358_636 -4358_80785,205,4358_17334,Abbey St Lower,5407,1,4358_7778195_6472005,4358_636 -4358_80785,205,4358_17336,Abbey St Lower,5335,1,4358_7778195_6472014,4358_636 -4358_80785,96,4358_17337,Abbey St Lower,12583,1,4358_7778195_6472017,4358_636 -4358_80785,205,4358_17338,Abbey St Lower,5343,1,4358_7778195_6472012,4358_636 -4358_80682,205,4358_1734,Harristown,6826,1,4358_7778195_8013005,4358_58 -4358_80785,96,4358_17340,Abbey St Lower,12577,1,4358_7778195_6472013,4358_636 -4358_80785,205,4358_17341,Abbey St Lower,5318,1,4358_7778195_6472013,4358_636 -4358_80785,96,4358_17342,Abbey St Lower,12544,1,4358_7778195_6472007,4358_636 -4358_80785,205,4358_17343,Abbey St Lower,5409,1,4358_7778195_6472005,4358_636 -4358_80785,96,4358_17345,Abbey St Lower,12585,1,4358_7778195_6472017,4358_636 -4358_80785,205,4358_17346,Abbey St Lower,5345,1,4358_7778195_6472012,4358_636 -4358_80794,205,4358_17348,Dun Laoghaire,7934,0,4358_7778195_2925002,4358_638 -4358_80794,205,4358_17349,Dun Laoghaire,6135,0,4358_7778195_2925001,4358_638 -4358_80794,96,4358_17350,Dun Laoghaire,10487,0,4358_7778195_2925002,4358_639 -4358_80794,205,4358_17351,Dun Laoghaire,7916,0,4358_7778195_2925004,4358_638 -4358_80794,96,4358_17352,Dun Laoghaire,10431,0,4358_7778195_2925004,4358_638 -4358_80794,205,4358_17353,Dun Laoghaire,6215,0,4358_7778195_2925005,4358_638 -4358_80794,96,4358_17354,Dun Laoghaire,10395,0,4358_7778195_2925001,4358_638 -4358_80794,205,4358_17355,Dun Laoghaire,7936,0,4358_7778195_2925002,4358_638 -4358_80794,205,4358_17356,Dun Laoghaire,6141,0,4358_7778195_2925003,4358_638 -4358_80794,96,4358_17357,Dun Laoghaire,10504,0,4358_7778195_2925003,4358_639 -4358_80794,205,4358_17358,Dun Laoghaire,6176,0,4358_7778195_2925008,4358_638 -4358_80794,96,4358_17359,Dun Laoghaire,10489,0,4358_7778195_2925002,4358_638 -4358_80682,96,4358_1736,Harristown,13659,1,4358_7778195_8013012,4358_60 -4358_80794,205,4358_17360,Dun Laoghaire,6137,0,4358_7778195_2925001,4358_638 -4358_80794,205,4358_17361,Dun Laoghaire,7918,0,4358_7778195_2925004,4358_638 -4358_80794,96,4358_17363,Dun Laoghaire,10433,0,4358_7778195_2925004,4358_639 -4358_80794,205,4358_17364,Dun Laoghaire,6196,0,4358_7778195_2925006,4358_638 -4358_80794,205,4358_17365,Dun Laoghaire,6217,0,4358_7778195_2925005,4358_638 -4358_80794,96,4358_17366,Dun Laoghaire,10397,0,4358_7778195_2925001,4358_639 -4358_80794,205,4358_17368,Dun Laoghaire,6236,0,4358_7778195_2925007,4358_638 -4358_80794,96,4358_17369,Dun Laoghaire,10411,0,4358_7778195_2925005,4358_638 -4358_80682,205,4358_1737,Harristown,7016,1,4358_7778195_8013029,4358_58 -4358_80794,205,4358_17370,Dun Laoghaire,7938,0,4358_7778195_2925002,4358_638 -4358_80794,96,4358_17371,Dun Laoghaire,10491,0,4358_7778195_2925002,4358_638 -4358_80794,205,4358_17373,Dun Laoghaire,6143,0,4358_7778195_2925003,4358_638 -4358_80794,205,4358_17374,Dun Laoghaire,6178,0,4358_7778195_2925008,4358_638 -4358_80794,96,4358_17375,Dun Laoghaire,10435,0,4358_7778195_2925004,4358_639 -4358_80794,205,4358_17377,Dun Laoghaire,6139,0,4358_7778195_2925001,4358_638 -4358_80794,96,4358_17378,Dun Laoghaire,10485,0,4358_7778195_2925007,4358_639 -4358_80794,205,4358_17379,Dun Laoghaire,7920,0,4358_7778195_2925004,4358_638 -4358_80794,96,4358_17380,Dun Laoghaire,10399,0,4358_7778195_2925001,4358_639 -4358_80794,205,4358_17382,Dun Laoghaire,6198,0,4358_7778195_2925006,4358_638 -4358_80794,96,4358_17383,Dun Laoghaire,10413,0,4358_7778195_2925005,4358_639 -4358_80794,96,4358_17384,Dun Laoghaire,10477,0,4358_7778195_2925006,4358_638 -4358_80794,205,4358_17385,Dun Laoghaire,6219,0,4358_7778195_2925005,4358_639 -4358_80794,96,4358_17387,Dun Laoghaire,10493,0,4358_7778195_2925002,4358_638 -4358_80794,205,4358_17388,Dun Laoghaire,6238,0,4358_7778195_2925007,4358_639 -4358_80682,96,4358_1739,Harristown,13604,1,4358_7778195_8013003,4358_60 -4358_80794,205,4358_17390,Dun Laoghaire,6145,0,4358_7778195_2925003,4358_638 -4358_80794,96,4358_17391,Dun Laoghaire,10437,0,4358_7778195_2925004,4358_639 -4358_80794,96,4358_17392,Dun Laoghaire,10515,0,4358_7778195_2925008,4358_638 -4358_80794,205,4358_17394,Dun Laoghaire,6180,0,4358_7778195_2925008,4358_640 -4358_80794,205,4358_17395,Dun Laoghaire,7922,0,4358_7778195_2925004,4358_638 -4358_80794,96,4358_17396,Dun Laoghaire,10401,0,4358_7778195_2925001,4358_639 -4358_80794,205,4358_17398,Dun Laoghaire,6200,0,4358_7778195_2925006,4358_638 -4358_80794,96,4358_17399,Dun Laoghaire,10415,0,4358_7778195_2925005,4358_639 -4358_80760,205,4358_174,Shanard Road,3134,1,4358_7778195_9001004,4358_4 -4358_80682,205,4358_1740,Harristown,6877,1,4358_7778195_8013008,4358_58 -4358_80794,96,4358_17401,Dun Laoghaire,10479,0,4358_7778195_2925006,4358_638 -4358_80794,205,4358_17402,Dun Laoghaire,6221,0,4358_7778195_2925005,4358_639 -4358_80794,96,4358_17404,Dun Laoghaire,10495,0,4358_7778195_2925002,4358_639 -4358_80794,205,4358_17405,Dun Laoghaire,6240,0,4358_7778195_2925007,4358_640 -4358_80794,205,4358_17406,Dun Laoghaire,6147,0,4358_7778195_2925003,4358_638 -4358_80794,96,4358_17407,Dun Laoghaire,10439,0,4358_7778195_2925004,4358_639 -4358_80794,96,4358_17409,Dun Laoghaire,10517,0,4358_7778195_2925008,4358_638 -4358_80682,205,4358_1741,Harristown,7036,1,4358_7778195_8013036,4358_58 -4358_80794,205,4358_17410,Dun Laoghaire,6182,0,4358_7778195_2925008,4358_639 -4358_80794,96,4358_17412,Dun Laoghaire,10462,0,4358_7778195_2925010,4358_638 -4358_80794,205,4358_17413,Dun Laoghaire,6155,0,4358_7778195_2925009,4358_639 -4358_80794,205,4358_17414,Dun Laoghaire,7924,0,4358_7778195_2925004,4358_638 -4358_80794,96,4358_17416,Dun Laoghaire,10403,0,4358_7778195_2925001,4358_640 -4358_80794,205,4358_17417,Dun Laoghaire,6202,0,4358_7778195_2925006,4358_638 -4358_80794,96,4358_17418,Dun Laoghaire,10417,0,4358_7778195_2925005,4358_639 -4358_80794,96,4358_17420,Dun Laoghaire,10455,0,4358_7778195_2925009,4358_638 -4358_80794,205,4358_17421,Dun Laoghaire,6223,0,4358_7778195_2925005,4358_639 -4358_80794,96,4358_17423,Dun Laoghaire,10481,0,4358_7778195_2925006,4358_638 -4358_80794,205,4358_17424,Dun Laoghaire,6242,0,4358_7778195_2925007,4358_639 -4358_80794,205,4358_17426,Dun Laoghaire,6149,0,4358_7778195_2925003,4358_639 -4358_80794,96,4358_17427,Dun Laoghaire,10497,0,4358_7778195_2925002,4358_640 -4358_80794,205,4358_17428,Dun Laoghaire,6184,0,4358_7778195_2925008,4358_638 -4358_80794,96,4358_17429,Dun Laoghaire,10441,0,4358_7778195_2925004,4358_639 -4358_80682,96,4358_1743,Harristown,13617,1,4358_7778195_8013005,4358_64 -4358_80794,96,4358_17431,Dun Laoghaire,10519,0,4358_7778195_2925008,4358_638 -4358_80794,205,4358_17432,Dun Laoghaire,6157,0,4358_7778195_2925009,4358_639 -4358_80794,205,4358_17434,Dun Laoghaire,7926,0,4358_7778195_2925004,4358_638 -4358_80794,96,4358_17435,Dun Laoghaire,10464,0,4358_7778195_2925010,4358_639 -4358_80794,205,4358_17436,Dun Laoghaire,6204,0,4358_7778195_2925006,4358_638 -4358_80794,96,4358_17438,Dun Laoghaire,10405,0,4358_7778195_2925001,4358_640 -4358_80794,205,4358_17439,Dun Laoghaire,6225,0,4358_7778195_2925005,4358_638 -4358_80682,205,4358_1744,Harristown,6888,1,4358_7778195_8013010,4358_58 -4358_80794,96,4358_17440,Dun Laoghaire,10419,0,4358_7778195_2925005,4358_639 -4358_80794,96,4358_17442,Dun Laoghaire,10457,0,4358_7778195_2925009,4358_638 -4358_80794,205,4358_17443,Dun Laoghaire,6244,0,4358_7778195_2925007,4358_639 -4358_80794,96,4358_17445,Dun Laoghaire,10483,0,4358_7778195_2925006,4358_638 -4358_80794,205,4358_17446,Dun Laoghaire,6151,0,4358_7778195_2925003,4358_639 -4358_80794,96,4358_17448,Dun Laoghaire,10499,0,4358_7778195_2925002,4358_639 -4358_80794,205,4358_17449,Dun Laoghaire,6186,0,4358_7778195_2925008,4358_640 -4358_80794,205,4358_17451,Dun Laoghaire,6159,0,4358_7778195_2925009,4358_639 -4358_80794,96,4358_17452,Dun Laoghaire,10443,0,4358_7778195_2925004,4358_640 -4358_80794,96,4358_17453,Dun Laoghaire,10466,0,4358_7778195_2925010,4358_638 -4358_80794,205,4358_17454,Dun Laoghaire,6170,0,4358_7778195_2925010,4358_639 -4358_80794,205,4358_17456,Dun Laoghaire,7928,0,4358_7778195_2925004,4358_638 -4358_80794,96,4358_17457,Dun Laoghaire,10407,0,4358_7778195_2925001,4358_639 -4358_80794,205,4358_17459,Dun Laoghaire,6206,0,4358_7778195_2925006,4358_638 -4358_80682,96,4358_1746,Harristown,13682,1,4358_7778195_8013019,4358_60 -4358_80794,96,4358_17460,Dun Laoghaire,10421,0,4358_7778195_2925005,4358_639 -4358_80794,96,4358_17461,Dun Laoghaire,10459,0,4358_7778195_2925009,4358_638 -4358_80794,205,4358_17462,Dun Laoghaire,6227,0,4358_7778195_2925005,4358_639 -4358_80794,96,4358_17464,Dun Laoghaire,10506,0,4358_7778195_2925011,4358_638 -4358_80794,205,4358_17465,Dun Laoghaire,6246,0,4358_7778195_2925007,4358_639 -4358_80794,205,4358_17467,Dun Laoghaire,6153,0,4358_7778195_2925003,4358_638 -4358_80794,96,4358_17468,Dun Laoghaire,10501,0,4358_7778195_2925002,4358_639 -4358_80682,205,4358_1747,Harristown,6816,1,4358_7778195_8013003,4358_58 -4358_80794,205,4358_17470,Dun Laoghaire,6188,0,4358_7778195_2925008,4358_638 -4358_80794,96,4358_17471,Dun Laoghaire,10445,0,4358_7778195_2925004,4358_639 -4358_80794,96,4358_17472,Dun Laoghaire,10468,0,4358_7778195_2925010,4358_638 -4358_80794,205,4358_17474,Dun Laoghaire,6161,0,4358_7778195_2925009,4358_640 -4358_80794,205,4358_17475,Dun Laoghaire,6172,0,4358_7778195_2925010,4358_638 -4358_80794,96,4358_17476,Dun Laoghaire,10409,0,4358_7778195_2925001,4358_639 -4358_80794,205,4358_17478,Dun Laoghaire,7930,0,4358_7778195_2925004,4358_638 -4358_80794,96,4358_17479,Dun Laoghaire,10423,0,4358_7778195_2925005,4358_639 -4358_80794,205,4358_17481,Dun Laoghaire,6208,0,4358_7778195_2925006,4358_638 -4358_80794,96,4358_17482,Dun Laoghaire,10461,0,4358_7778195_2925009,4358_639 -4358_80794,205,4358_17484,Dun Laoghaire,6229,0,4358_7778195_2925005,4358_639 -4358_80794,96,4358_17485,Dun Laoghaire,10508,0,4358_7778195_2925011,4358_640 -4358_80794,205,4358_17486,Dun Laoghaire,6248,0,4358_7778195_2925007,4358_638 -4358_80794,96,4358_17487,Dun Laoghaire,10447,0,4358_7778195_2925004,4358_638 -4358_80794,205,4358_17489,Dun Laoghaire,6190,0,4358_7778195_2925008,4358_639 -4358_80682,96,4358_1749,Harristown,13630,1,4358_7778195_8013007,4358_60 -4358_80794,96,4358_17490,Dun Laoghaire,10470,0,4358_7778195_2925010,4358_638 -4358_80794,205,4358_17491,Dun Laoghaire,6163,0,4358_7778195_2925009,4358_638 -4358_80794,205,4358_17492,Dun Laoghaire,7932,0,4358_7778195_2925004,4358_638 -4358_80794,96,4358_17493,Dun Laoghaire,10425,0,4358_7778195_2925005,4358_639 -4358_80794,205,4358_17495,Dun Laoghaire,6210,0,4358_7778195_2925006,4358_638 -4358_80794,96,4358_17496,Dun Laoghaire,10510,0,4358_7778195_2925011,4358_638 -4358_80794,205,4358_17497,Dun Laoghaire,6231,0,4358_7778195_2925005,4358_638 -4358_80794,96,4358_17499,Dun Laoghaire,10449,0,4358_7778195_2925004,4358_639 -4358_80760,205,4358_175,Shanard Road,1840,1,4358_7778195_9001006,4358_4 -4358_80682,205,4358_1750,Harristown,6992,1,4358_7778195_8013023,4358_58 -4358_80794,205,4358_17500,Dun Laoghaire,6250,0,4358_7778195_2925007,4358_638 -4358_80794,96,4358_17501,Dun Laoghaire,10472,0,4358_7778195_2925010,4358_638 -4358_80794,205,4358_17502,Dun Laoghaire,6192,0,4358_7778195_2925008,4358_639 -4358_80794,205,4358_17504,Dun Laoghaire,6165,0,4358_7778195_2925009,4358_638 -4358_80794,96,4358_17505,Dun Laoghaire,10427,0,4358_7778195_2925005,4358_638 -4358_80794,205,4358_17506,Dun Laoghaire,6173,0,4358_7778195_2925011,4358_638 -4358_80794,96,4358_17507,Dun Laoghaire,10512,0,4358_7778195_2925012,4358_638 -4358_80794,205,4358_17509,Dun Laoghaire,6212,0,4358_7778195_2925006,4358_638 -4358_80682,96,4358_1751,Harristown,13666,1,4358_7778195_8013014,4358_58 -4358_80794,205,4358_17510,Dun Laoghaire,6233,0,4358_7778195_2925005,4358_638 -4358_80794,96,4358_17511,Dun Laoghaire,10451,0,4358_7778195_2925004,4358_639 -4358_80794,205,4358_17513,Dun Laoghaire,6252,0,4358_7778195_2925007,4358_638 -4358_80794,96,4358_17514,Dun Laoghaire,10474,0,4358_7778195_2925010,4358_638 -4358_80794,205,4358_17515,Dun Laoghaire,6194,0,4358_7778195_2925008,4358_638 -4358_80794,96,4358_17516,Dun Laoghaire,10429,0,4358_7778195_2925005,4358_638 -4358_80794,205,4358_17518,Dun Laoghaire,6167,0,4358_7778195_2925009,4358_638 -4358_80794,96,4358_17519,Dun Laoghaire,10514,0,4358_7778195_2925012,4358_638 -4358_80794,205,4358_17520,Dun Laoghaire,6175,0,4358_7778195_2925011,4358_639 -4358_80794,205,4358_17522,Dun Laoghaire,6214,0,4358_7778195_2925006,4358_638 -4358_80794,96,4358_17523,Dun Laoghaire,10453,0,4358_7778195_2925004,4358_639 -4358_80794,205,4358_17525,Dundrum,6134,1,4358_7778195_2925001,4358_641 -4358_80794,205,4358_17526,Dundrum,7935,1,4358_7778195_2925002,4358_641 -4358_80794,96,4358_17527,Dundrum,10394,1,4358_7778195_2925001,4358_642 -4358_80794,205,4358_17528,Dundrum,6140,1,4358_7778195_2925003,4358_641 -4358_80794,96,4358_17529,Dundrum,10503,1,4358_7778195_2925003,4358_641 -4358_80682,205,4358_1753,Harristown,7037,1,4358_7778195_8013037,4358_58 -4358_80794,205,4358_17530,Dundrum,6136,1,4358_7778195_2925001,4358_641 -4358_80794,96,4358_17531,Dundrum,10488,1,4358_7778195_2925002,4358_641 -4358_80794,205,4358_17532,Dundrum,7917,1,4358_7778195_2925004,4358_641 -4358_80794,205,4358_17533,Dundrum,6195,1,4358_7778195_2925006,4358_641 -4358_80794,96,4358_17534,Dundrum,10432,1,4358_7778195_2925004,4358_642 -4358_80794,205,4358_17535,Dundrum,6216,1,4358_7778195_2925005,4358_641 -4358_80794,96,4358_17536,Dundrum,10396,1,4358_7778195_2925001,4358_641 -4358_80794,205,4358_17537,Dundrum,6235,1,4358_7778195_2925007,4358_641 -4358_80794,205,4358_17539,Dundrum,7937,1,4358_7778195_2925002,4358_642 -4358_80682,205,4358_1754,Harristown,6901,1,4358_7778195_8013014,4358_58 -4358_80794,96,4358_17540,Dundrum,10505,1,4358_7778195_2925003,4358_641 -4358_80794,205,4358_17541,Dundrum,6142,1,4358_7778195_2925003,4358_641 -4358_80794,96,4358_17542,Dundrum,10490,1,4358_7778195_2925002,4358_641 -4358_80794,205,4358_17544,Dundrum,6177,1,4358_7778195_2925008,4358_643 -4358_80794,205,4358_17545,Dundrum,6138,1,4358_7778195_2925001,4358_641 -4358_80794,96,4358_17546,Dundrum,10434,1,4358_7778195_2925004,4358_641 -4358_80794,205,4358_17547,Dundrum,7919,1,4358_7778195_2925004,4358_641 -4358_80794,96,4358_17549,Dundrum,10398,1,4358_7778195_2925001,4358_641 -4358_80682,96,4358_1755,Harristown,13697,1,4358_7778195_8013020,4358_60 -4358_80794,205,4358_17550,Dundrum,6197,1,4358_7778195_2925006,4358_641 -4358_80794,205,4358_17551,Dundrum,6218,1,4358_7778195_2925005,4358_641 -4358_80794,96,4358_17553,Dundrum,10412,1,4358_7778195_2925005,4358_643 -4358_80794,96,4358_17554,Dundrum,10476,1,4358_7778195_2925006,4358_641 -4358_80794,205,4358_17555,Dundrum,6237,1,4358_7778195_2925007,4358_642 -4358_80794,96,4358_17556,Dundrum,10492,1,4358_7778195_2925002,4358_641 -4358_80794,205,4358_17558,Dundrum,7939,1,4358_7778195_2925002,4358_643 -4358_80794,205,4358_17559,Dundrum,6144,1,4358_7778195_2925003,4358_641 -4358_80794,96,4358_17560,Dundrum,10436,1,4358_7778195_2925004,4358_642 -4358_80794,205,4358_17562,Dundrum,6179,1,4358_7778195_2925008,4358_642 -4358_80794,96,4358_17563,Dundrum,10486,1,4358_7778195_2925007,4358_643 -4358_80794,205,4358_17564,Dundrum,7921,1,4358_7778195_2925004,4358_641 -4358_80794,96,4358_17565,Dundrum,10400,1,4358_7778195_2925001,4358_642 -4358_80794,205,4358_17567,Dundrum,6199,1,4358_7778195_2925006,4358_641 -4358_80794,96,4358_17568,Dundrum,10414,1,4358_7778195_2925005,4358_642 -4358_80682,205,4358_1757,Harristown,7031,1,4358_7778195_8013034,4358_58 -4358_80794,96,4358_17570,Dundrum,10478,1,4358_7778195_2925006,4358_641 -4358_80794,205,4358_17571,Dundrum,6220,1,4358_7778195_2925005,4358_642 -4358_80794,96,4358_17573,Dundrum,10494,1,4358_7778195_2925002,4358_642 -4358_80794,205,4358_17574,Dundrum,6239,1,4358_7778195_2925007,4358_643 -4358_80794,205,4358_17575,Dundrum,6146,1,4358_7778195_2925003,4358_641 -4358_80794,96,4358_17576,Dundrum,10438,1,4358_7778195_2925004,4358_642 -4358_80794,96,4358_17578,Dundrum,10516,1,4358_7778195_2925008,4358_641 -4358_80794,205,4358_17579,Dundrum,6181,1,4358_7778195_2925008,4358_642 -4358_80794,205,4358_17581,Dundrum,7923,1,4358_7778195_2925004,4358_641 -4358_80794,96,4358_17582,Dundrum,10402,1,4358_7778195_2925001,4358_642 -4358_80794,205,4358_17583,Dundrum,6201,1,4358_7778195_2925006,4358_641 -4358_80794,96,4358_17585,Dundrum,10416,1,4358_7778195_2925005,4358_643 -4358_80794,96,4358_17586,Dundrum,10454,1,4358_7778195_2925009,4358_641 -4358_80794,205,4358_17587,Dundrum,6222,1,4358_7778195_2925005,4358_642 -4358_80794,96,4358_17589,Dundrum,10480,1,4358_7778195_2925006,4358_641 -4358_80682,96,4358_1759,Harristown,13650,1,4358_7778195_8013010,4358_60 -4358_80794,205,4358_17590,Dundrum,6241,1,4358_7778195_2925007,4358_642 -4358_80794,205,4358_17592,Dundrum,6148,1,4358_7778195_2925003,4358_641 -4358_80794,96,4358_17593,Dundrum,10496,1,4358_7778195_2925002,4358_642 -4358_80794,205,4358_17595,Dundrum,6183,1,4358_7778195_2925008,4358_642 -4358_80794,96,4358_17596,Dundrum,10440,1,4358_7778195_2925004,4358_643 -4358_80794,96,4358_17597,Dundrum,10518,1,4358_7778195_2925008,4358_641 -4358_80794,205,4358_17598,Dundrum,6156,1,4358_7778195_2925009,4358_642 -4358_80760,96,4358_176,Shanard Road,9449,1,4358_7778195_9001003,4358_4 -4358_80682,205,4358_1760,Harristown,6832,1,4358_7778195_8013006,4358_58 -4358_80794,205,4358_17600,Dundrum,7925,1,4358_7778195_2925004,4358_641 -4358_80794,96,4358_17601,Dundrum,10463,1,4358_7778195_2925010,4358_642 -4358_80794,205,4358_17603,Dundrum,6203,1,4358_7778195_2925006,4358_641 -4358_80794,96,4358_17604,Dundrum,10404,1,4358_7778195_2925001,4358_642 -4358_80794,205,4358_17605,Dundrum,6224,1,4358_7778195_2925005,4358_641 -4358_80794,96,4358_17607,Dundrum,10418,1,4358_7778195_2925005,4358_643 -4358_80794,96,4358_17608,Dundrum,10456,1,4358_7778195_2925009,4358_641 -4358_80794,205,4358_17609,Dundrum,6243,1,4358_7778195_2925007,4358_642 -4358_80682,96,4358_1761,Harristown,13715,1,4358_7778195_8013021,4358_58 -4358_80794,96,4358_17611,Dundrum,10482,1,4358_7778195_2925006,4358_641 -4358_80794,205,4358_17612,Dundrum,6150,1,4358_7778195_2925003,4358_642 -4358_80794,96,4358_17614,Dundrum,10498,1,4358_7778195_2925002,4358_641 -4358_80794,205,4358_17615,Dundrum,6185,1,4358_7778195_2925008,4358_642 -4358_80794,205,4358_17617,Dundrum,6158,1,4358_7778195_2925009,4358_642 -4358_80794,96,4358_17618,Dundrum,10442,1,4358_7778195_2925004,4358_643 -4358_80794,96,4358_17619,Dundrum,10465,1,4358_7778195_2925010,4358_641 -4358_80794,205,4358_17620,Dundrum,6169,1,4358_7778195_2925010,4358_642 -4358_80794,205,4358_17622,Dundrum,7927,1,4358_7778195_2925004,4358_641 -4358_80794,96,4358_17623,Dundrum,10406,1,4358_7778195_2925001,4358_642 -4358_80794,205,4358_17625,Dundrum,6205,1,4358_7778195_2925006,4358_641 -4358_80794,96,4358_17626,Dundrum,10420,1,4358_7778195_2925005,4358_642 -4358_80794,96,4358_17627,Dundrum,10458,1,4358_7778195_2925009,4358_641 -4358_80794,205,4358_17628,Dundrum,6226,1,4358_7778195_2925005,4358_642 -4358_80682,205,4358_1763,Harristown,7034,1,4358_7778195_8013035,4358_58 -4358_80794,96,4358_17630,Dundrum,10484,1,4358_7778195_2925006,4358_641 -4358_80794,205,4358_17631,Dundrum,6245,1,4358_7778195_2925007,4358_642 -4358_80794,205,4358_17633,Dundrum,6152,1,4358_7778195_2925003,4358_641 -4358_80794,96,4358_17634,Dundrum,10500,1,4358_7778195_2925002,4358_642 -4358_80794,205,4358_17636,Dundrum,6187,1,4358_7778195_2925008,4358_641 -4358_80794,96,4358_17637,Dundrum,10444,1,4358_7778195_2925004,4358_642 -4358_80794,96,4358_17638,Dundrum,10467,1,4358_7778195_2925010,4358_641 -4358_80682,96,4358_1764,Harristown,13587,1,4358_7778195_8013001,4358_58 -4358_80794,205,4358_17640,Dundrum,6160,1,4358_7778195_2925009,4358_643 -4358_80794,205,4358_17641,Dundrum,6171,1,4358_7778195_2925010,4358_641 -4358_80794,96,4358_17642,Dundrum,10408,1,4358_7778195_2925001,4358_642 -4358_80794,205,4358_17644,Dundrum,7929,1,4358_7778195_2925004,4358_641 -4358_80794,96,4358_17645,Dundrum,10422,1,4358_7778195_2925005,4358_642 -4358_80794,205,4358_17647,Dundrum,6207,1,4358_7778195_2925006,4358_641 -4358_80794,96,4358_17648,Dundrum,10460,1,4358_7778195_2925009,4358_642 -4358_80794,205,4358_17649,Dundrum,6228,1,4358_7778195_2925005,4358_641 -4358_80794,96,4358_17650,Dundrum,10507,1,4358_7778195_2925011,4358_642 -4358_80794,96,4358_17652,Dundrum,10502,1,4358_7778195_2925002,4358_641 -4358_80794,205,4358_17653,Dundrum,6247,1,4358_7778195_2925007,4358_642 -4358_80794,205,4358_17655,Dundrum,6154,1,4358_7778195_2925003,4358_641 -4358_80794,96,4358_17656,Dundrum,10446,1,4358_7778195_2925004,4358_642 -4358_80794,96,4358_17658,Dundrum,10469,1,4358_7778195_2925010,4358_641 -4358_80794,205,4358_17659,Dundrum,6189,1,4358_7778195_2925008,4358_642 -4358_80682,205,4358_1766,Harristown,7008,1,4358_7778195_8013027,4358_62 -4358_80794,205,4358_17661,Dundrum,6162,1,4358_7778195_2925009,4358_642 -4358_80794,96,4358_17662,Dundrum,10410,1,4358_7778195_2925001,4358_643 -4358_80794,205,4358_17663,Dundrum,7931,1,4358_7778195_2925004,4358_641 -4358_80794,96,4358_17664,Dundrum,10424,1,4358_7778195_2925005,4358_641 -4358_80794,205,4358_17665,Dundrum,6209,1,4358_7778195_2925006,4358_641 -4358_80794,96,4358_17667,Dundrum,10509,1,4358_7778195_2925011,4358_641 -4358_80794,205,4358_17668,Dundrum,6230,1,4358_7778195_2925005,4358_641 -4358_80682,205,4358_1767,Harristown,6715,1,4358_7778195_8013001,4358_58 -4358_80794,96,4358_17670,Dundrum,10448,1,4358_7778195_2925004,4358_642 -4358_80794,205,4358_17671,Dundrum,6249,1,4358_7778195_2925007,4358_643 -4358_80794,205,4358_17672,Dundrum,6191,1,4358_7778195_2925008,4358_641 -4358_80794,96,4358_17673,Dundrum,10471,1,4358_7778195_2925010,4358_641 -4358_80794,205,4358_17675,Dundrum,6164,1,4358_7778195_2925009,4358_642 -4358_80794,96,4358_17676,Dundrum,10426,1,4358_7778195_2925005,4358_641 -4358_80794,205,4358_17677,Dundrum,7933,1,4358_7778195_2925004,4358_641 -4358_80794,205,4358_17678,Dundrum,6211,1,4358_7778195_2925006,4358_641 -4358_80794,96,4358_17679,Dundrum,10511,1,4358_7778195_2925011,4358_642 -4358_80682,96,4358_1768,Harristown,13597,1,4358_7778195_8013002,4358_60 -4358_80794,205,4358_17681,Dundrum,6232,1,4358_7778195_2925005,4358_641 -4358_80794,96,4358_17682,Dundrum,10450,1,4358_7778195_2925004,4358_641 -4358_80794,205,4358_17684,Dundrum,6251,1,4358_7778195_2925007,4358_642 -4358_80794,96,4358_17685,Dundrum,10473,1,4358_7778195_2925010,4358_641 -4358_80794,205,4358_17686,Dundrum,6193,1,4358_7778195_2925008,4358_641 -4358_80794,96,4358_17687,Dundrum,10428,1,4358_7778195_2925005,4358_641 -4358_80794,205,4358_17689,Dundrum,6166,1,4358_7778195_2925009,4358_643 -4358_80794,205,4358_17690,Dundrum,6174,1,4358_7778195_2925011,4358_641 -4358_80794,96,4358_17691,Dundrum,10513,1,4358_7778195_2925012,4358_641 -4358_80794,205,4358_17692,Dundrum,6213,1,4358_7778195_2925006,4358_641 -4358_80794,96,4358_17694,Dundrum,10452,1,4358_7778195_2925004,4358_641 -4358_80794,205,4358_17695,Dundrum,6234,1,4358_7778195_2925005,4358_641 -4358_80794,96,4358_17697,Dundrum,10475,1,4358_7778195_2925010,4358_642 -4358_80794,205,4358_17698,Dundrum,6253,1,4358_7778195_2925007,4358_643 -4358_80794,96,4358_17699,Dundrum,10430,1,4358_7778195_2925005,4358_641 -4358_80760,205,4358_177,Shanard Road,1696,1,4358_7778195_9001008,4358_4 -4358_80682,205,4358_1770,Harristown,7001,1,4358_7778195_8013025,4358_58 -4358_80794,205,4358_17701,Dundrum,6168,1,4358_7778195_2925009,4358_643 -4358_80687,96,4358_17702,Liffey Valley SC,11950,0,4358_7778195_4026001,4358_644 -4358_80687,205,4358_17703,Liffey Valley SC,4876,0,4358_7778195_4026001,4358_644 -4358_80687,205,4358_17704,Liffey Valley SC,4902,0,4358_7778195_4026005,4358_644 -4358_80687,96,4358_17705,Liffey Valley SC,12011,0,4358_7778195_4026002,4358_644 -4358_80687,205,4358_17706,Liffey Valley SC,4921,0,4358_7778195_4026004,4358_644 -4358_80687,205,4358_17707,Liffey Valley SC,4989,0,4358_7778195_4026011,4358_644 -4358_80687,96,4358_17709,Liffey Valley SC,12055,0,4358_7778195_4026007,4358_644 -4358_80682,96,4358_1771,Harristown,13673,1,4358_7778195_8013016,4358_60 -4358_80687,205,4358_17710,Liffey Valley SC,4985,0,4358_7778195_4026008,4358_644 -4358_80687,205,4358_17711,Liffey Valley SC,4919,0,4358_7778195_4026006,4358_644 -4358_80687,96,4358_17712,Liffey Valley SC,11954,0,4358_7778195_4026001,4358_644 -4358_80687,205,4358_17714,Liffey Valley SC,5008,0,4358_7778195_4026017,4358_644 -4358_80687,96,4358_17715,Liffey Valley SC,12064,0,4358_7778195_4026010,4358_644 -4358_80687,205,4358_17716,Liffey Valley SC,4987,0,4358_7778195_4026008,4358_644 -4358_80687,96,4358_17718,Liffey Valley SC,12039,0,4358_7778195_4026009,4358_645 -4358_80687,205,4358_17719,Liffey Valley SC,5036,0,4358_7778195_4026013,4358_644 -4358_80687,96,4358_17720,Liffey Valley SC,12025,0,4358_7778195_4026005,4358_644 -4358_80687,205,4358_17722,Liffey Valley SC,4954,0,4358_7778195_4026007,4358_644 -4358_80687,96,4358_17723,Liffey Valley SC,12049,0,4358_7778195_4026012,4358_644 -4358_80687,205,4358_17725,Liffey Valley SC,4894,0,4358_7778195_4026003,4358_644 -4358_80687,96,4358_17727,Liffey Valley SC,12095,0,4358_7778195_4026013,4358_644 -4358_80687,205,4358_17728,Liffey Valley SC,5038,0,4358_7778195_4026013,4358_644 -4358_80687,96,4358_17729,Liffey Valley SC,11995,0,4358_7778195_4026008,4358_644 -4358_80687,205,4358_17731,Liffey Valley SC,5000,0,4358_7778195_4026009,4358_644 -4358_80687,96,4358_17733,Liffey Valley SC,12051,0,4358_7778195_4026012,4358_644 -4358_80687,205,4358_17734,Liffey Valley SC,5085,0,4358_7778195_4026018,4358_644 -4358_80687,96,4358_17736,Liffey Valley SC,12097,0,4358_7778195_4026013,4358_645 -4358_80687,205,4358_17737,Liffey Valley SC,5069,0,4358_7778195_4026014,4358_644 -4358_80687,96,4358_17739,Liffey Valley SC,11997,0,4358_7778195_4026008,4358_644 -4358_80682,205,4358_1774,Harristown,7011,1,4358_7778195_8013028,4358_60 -4358_80687,205,4358_17740,Liffey Valley SC,4929,0,4358_7778195_4026012,4358_644 -4358_80687,96,4358_17741,Liffey Valley SC,12053,0,4358_7778195_4026012,4358_644 -4358_80687,205,4358_17743,Liffey Valley SC,4850,0,4358_7778195_4026002,4358_644 -4358_80687,96,4358_17745,Liffey Valley SC,12082,0,4358_7778195_4026011,4358_645 -4358_80687,205,4358_17746,Liffey Valley SC,5033,0,4358_7778195_4026010,4358_644 -4358_80687,96,4358_17747,Liffey Valley SC,12019,0,4358_7778195_4026002,4358_644 -4358_80687,205,4358_17749,Liffey Valley SC,4910,0,4358_7778195_4026005,4358_644 -4358_80682,96,4358_1775,Harristown,13679,1,4358_7778195_8013018,4358_64 -4358_80687,96,4358_17750,Liffey Valley SC,12150,0,4358_7778195_4026017,4358_644 -4358_80687,205,4358_17752,Liffey Valley SC,5004,0,4358_7778195_4026009,4358_644 -4358_80687,96,4358_17753,Liffey Valley SC,12020,0,4358_7778195_4026002,4358_644 -4358_80687,205,4358_17755,Liffey Valley SC,5089,0,4358_7778195_4026018,4358_644 -4358_80687,96,4358_17756,Liffey Valley SC,12125,0,4358_7778195_4026015,4358_644 -4358_80687,205,4358_17758,Liffey Valley SC,4881,0,4358_7778195_4026022,4358_644 -4358_80687,96,4358_17759,Liffey Valley SC,12101,0,4358_7778195_4026013,4358_644 -4358_80687,205,4358_17761,Liffey Valley SC,4933,0,4358_7778195_4026012,4358_644 -4358_80687,96,4358_17762,Liffey Valley SC,12143,0,4358_7778195_4026016,4358_644 -4358_80687,205,4358_17764,Liffey Valley SC,4883,0,4358_7778195_4026022,4358_644 -4358_80687,96,4358_17766,Liffey Valley SC,13328,0,4358_7778195_4026020,4358_645 -4358_80687,205,4358_17767,Liffey Valley SC,5102,0,4358_7778195_4026025,4358_644 -4358_80687,96,4358_17769,Liffey Valley SC,13337,0,4358_7778195_4026021,4358_645 -4358_80682,96,4358_1777,Harristown,13717,1,4358_7778195_8013022,4358_60 -4358_80687,205,4358_17770,Liffey Valley SC,5094,0,4358_7778195_4026021,4358_644 -4358_80687,96,4358_17772,Liffey Valley SC,12154,0,4358_7778195_4026017,4358_645 -4358_80687,205,4358_17773,Liffey Valley SC,4962,0,4358_7778195_4026007,4358_644 -4358_80687,96,4358_17775,Liffey Valley SC,13338,0,4358_7778195_4026021,4358_645 -4358_80687,205,4358_17776,Liffey Valley SC,5075,0,4358_7778195_4026014,4358_644 -4358_80687,96,4358_17777,Liffey Valley SC,13330,0,4358_7778195_4026020,4358_644 -4358_80687,205,4358_17779,Liffey Valley SC,4964,0,4358_7778195_4026007,4358_644 -4358_80682,205,4358_1778,Harristown,7044,1,4358_7778195_8013040,4358_62 -4358_80687,96,4358_17780,Liffey Valley SC,12156,0,4358_7778195_4026023,4358_644 -4358_80687,205,4358_17782,Liffey Valley SC,5121,0,4358_7778195_4026027,4358_644 -4358_80687,96,4358_17783,Liffey Valley SC,13332,0,4358_7778195_4026020,4358_644 -4358_80687,205,4358_17785,Liffey Valley SC,4916,0,4358_7778195_4026005,4358_644 -4358_80687,96,4358_17786,Liffey Valley SC,12158,0,4358_7778195_4026023,4358_644 -4358_80687,205,4358_17788,Liffey Valley SC,4887,0,4358_7778195_4026022,4358_644 -4358_80687,96,4358_17789,Liffey Valley SC,11989,0,4358_7778195_4026006,4358_644 -4358_80682,96,4358_1779,Harristown,13764,1,4358_7778195_8013023,4358_58 -4358_80687,205,4358_17791,Liffey Valley SC,5123,0,4358_7778195_4026027,4358_644 -4358_80687,96,4358_17792,Liffey Valley SC,12160,0,4358_7778195_4026023,4358_644 -4358_80687,205,4358_17794,Liffey Valley SC,5125,0,4358_7778195_4026027,4358_644 -4358_80687,96,4358_17795,Liffey Valley SC,12162,0,4358_7778195_4026023,4358_644 -4358_80687,205,4358_17797,Liffey Valley SC,5119,0,4358_7778195_4026026,4358_644 -4358_80687,205,4358_17798,Adamstown Station,4875,1,4358_7778195_4026001,4358_646 -4358_80687,205,4358_17799,Adamstown Station,4920,1,4358_7778195_4026004,4358_646 -4358_80760,205,4358_178,Shanard Road,1814,1,4358_7778195_9001001,4358_4 -4358_80687,96,4358_17800,Adamstown Station,12010,1,4358_7778195_4026002,4358_646 -4358_80687,205,4358_17801,Adamstown Station,4984,1,4358_7778195_4026008,4358_646 -4358_80687,96,4358_17802,Adamstown Station,12054,1,4358_7778195_4026007,4358_646 -4358_80687,205,4358_17803,Adamstown Station,4918,1,4358_7778195_4026006,4358_646 -4358_80687,205,4358_17805,Adamstown Station,4922,1,4358_7778195_4026004,4358_646 -4358_80687,96,4358_17806,Adamstown Station,11953,1,4358_7778195_4026001,4358_646 -4358_80687,205,4358_17807,Adamstown Station,5007,1,4358_7778195_4026017,4358_646 -4358_80687,205,4358_17809,Adamstown Station,4986,1,4358_7778195_4026008,4358_646 -4358_80682,205,4358_1781,Harristown,7022,1,4358_7778195_8013031,4358_64 -4358_80687,96,4358_17810,Adamstown Station,12038,1,4358_7778195_4026009,4358_646 -4358_80687,205,4358_17811,Adamstown Station,5035,1,4358_7778195_4026013,4358_646 -4358_80687,96,4358_17812,Adamstown Station,12024,1,4358_7778195_4026005,4358_646 -4358_80687,205,4358_17814,Adamstown Station,4953,1,4358_7778195_4026007,4358_646 -4358_80687,96,4358_17815,Adamstown Station,12048,1,4358_7778195_4026012,4358_646 -4358_80687,205,4358_17816,Adamstown Station,4893,1,4358_7778195_4026003,4358_646 -4358_80687,96,4358_17818,Adamstown Station,12094,1,4358_7778195_4026013,4358_646 -4358_80687,205,4358_17820,Adamstown Station,5037,1,4358_7778195_4026013,4358_646 -4358_80687,96,4358_17821,Adamstown Station,11994,1,4358_7778195_4026008,4358_646 -4358_80687,205,4358_17822,Adamstown Station,4999,1,4358_7778195_4026009,4358_646 -4358_80687,96,4358_17824,Adamstown Station,12050,1,4358_7778195_4026012,4358_646 -4358_80687,205,4358_17826,Adamstown Station,5084,1,4358_7778195_4026018,4358_646 -4358_80687,96,4358_17828,Adamstown Station,12096,1,4358_7778195_4026013,4358_646 -4358_80687,205,4358_17829,Adamstown Station,5068,1,4358_7778195_4026014,4358_646 -4358_80682,205,4358_1783,Harristown,7029,1,4358_7778195_8013033,4358_60 -4358_80687,96,4358_17830,Adamstown Station,11996,1,4358_7778195_4026008,4358_646 -4358_80687,205,4358_17832,Adamstown Station,4928,1,4358_7778195_4026012,4358_647 -4358_80687,96,4358_17833,Adamstown Station,12052,1,4358_7778195_4026012,4358_646 -4358_80687,205,4358_17835,Adamstown Station,4849,1,4358_7778195_4026002,4358_646 -4358_80687,96,4358_17836,Adamstown Station,12081,1,4358_7778195_4026011,4358_646 -4358_80687,205,4358_17838,Adamstown Station,5032,1,4358_7778195_4026010,4358_646 -4358_80687,96,4358_17839,Adamstown Station,12018,1,4358_7778195_4026002,4358_646 -4358_80682,96,4358_1784,Harristown,13807,1,4358_7778195_8013024,4358_64 -4358_80687,205,4358_17841,Adamstown Station,4909,1,4358_7778195_4026005,4358_647 -4358_80687,96,4358_17842,Adamstown Station,12149,1,4358_7778195_4026017,4358_646 -4358_80687,205,4358_17844,Adamstown Station,5003,1,4358_7778195_4026009,4358_646 -4358_80687,96,4358_17845,Adamstown Station,12083,1,4358_7778195_4026011,4358_646 -4358_80687,205,4358_17846,Adamstown Station,5088,1,4358_7778195_4026018,4358_646 -4358_80687,96,4358_17848,Adamstown Station,12124,1,4358_7778195_4026015,4358_646 -4358_80687,205,4358_17849,Adamstown Station,4880,1,4358_7778195_4026022,4358_647 -4358_80687,96,4358_17851,Adamstown Station,12100,1,4358_7778195_4026013,4358_646 -4358_80687,205,4358_17853,Adamstown Station,4932,1,4358_7778195_4026012,4358_646 -4358_80687,96,4358_17854,Adamstown Station,12142,1,4358_7778195_4026016,4358_646 -4358_80687,205,4358_17856,Adamstown Station,4882,1,4358_7778195_4026022,4358_646 -4358_80687,96,4358_17857,Adamstown Station,11974,1,4358_7778195_4026004,4358_646 -4358_80687,205,4358_17859,Adamstown Station,5101,1,4358_7778195_4026025,4358_646 -4358_80682,96,4358_1786,Harristown,13844,1,4358_7778195_8013025,4358_60 -4358_80687,96,4358_17861,Adamstown Station,13336,1,4358_7778195_4026021,4358_646 -4358_80687,205,4358_17862,Adamstown Station,4961,1,4358_7778195_4026007,4358_646 -4358_80687,96,4358_17863,Adamstown Station,12153,1,4358_7778195_4026017,4358_646 -4358_80687,205,4358_17865,Adamstown Station,5074,1,4358_7778195_4026014,4358_646 -4358_80687,96,4358_17866,Adamstown Station,13329,1,4358_7778195_4026020,4358_646 -4358_80687,205,4358_17868,Adamstown Station,4969,1,4358_7778195_4026023,4358_646 -4358_80687,96,4358_17869,Adamstown Station,12128,1,4358_7778195_4026015,4358_646 -4358_80682,205,4358_1787,Harristown,7039,1,4358_7778195_8013038,4358_64 -4358_80687,205,4358_17871,Adamstown Station,4963,1,4358_7778195_4026007,4358_646 -4358_80687,96,4358_17873,Adamstown Station,12155,1,4358_7778195_4026023,4358_646 -4358_80687,205,4358_17874,Adamstown Station,5120,1,4358_7778195_4026027,4358_646 -4358_80687,96,4358_17875,Adamstown Station,13331,1,4358_7778195_4026020,4358_646 -4358_80687,205,4358_17876,Adamstown Station,4915,1,4358_7778195_4026005,4358_646 -4358_80687,96,4358_17878,Adamstown Station,12157,1,4358_7778195_4026023,4358_646 -4358_80682,205,4358_1788,Harristown,7047,1,4358_7778195_8013041,4358_58 -4358_80687,205,4358_17880,Adamstown Station,4886,1,4358_7778195_4026022,4358_646 -4358_80687,96,4358_17881,Adamstown Station,11988,1,4358_7778195_4026006,4358_646 -4358_80687,205,4358_17883,Adamstown Station,5122,1,4358_7778195_4026027,4358_646 -4358_80687,96,4358_17884,Adamstown Station,12159,1,4358_7778195_4026023,4358_646 -4358_80687,205,4358_17885,Adamstown Station,5078,1,4358_7778195_4026014,4358_646 -4358_80687,96,4358_17887,Adamstown Station,12148,1,4358_7778195_4026016,4358_646 -4358_80687,205,4358_17889,Adamstown Station,5124,1,4358_7778195_4026027,4358_646 -4358_80687,96,4358_17890,Adamstown Station,12161,1,4358_7778195_4026023,4358_646 -4358_80687,96,4358_17891,Adamstown Station,13335,1,4358_7778195_4026020,4358_646 -4358_80687,205,4358_17892,Adamstown Station,5118,1,4358_7778195_4026026,4358_646 -4358_80795,205,4358_17894,River Forest,4540,0,4358_7778195_4461010,4358_648 -4358_80795,96,4358_17895,River Forest,11687,0,4358_7778195_4461007,4358_648 -4358_80795,205,4358_17896,River Forest,4592,0,4358_7778195_4461016,4358_648 -4358_80795,205,4358_17897,River Forest,4589,0,4358_7778195_4461011,4358_648 -4358_80795,96,4358_17898,River Forest,11727,0,4358_7778195_4461006,4358_648 -4358_80795,205,4358_17899,River Forest,4689,0,4358_7778195_4461025,4358_648 -4358_80760,96,4358_179,Shanard Road,9487,1,4358_7778195_9001004,4358_4 -4358_80682,96,4358_1790,Harristown,13870,1,4358_7778195_8013026,4358_64 -4358_80795,205,4358_17900,River Forest,6099,0,4358_7778195_4824117,4358_648 -4358_80795,205,4358_17901,River Forest,4745,0,4358_7778195_4461031,4358_648 -4358_80795,96,4358_17903,River Forest,11689,0,4358_7778195_4461007,4358_649 -4358_80795,205,4358_17904,River Forest,4594,0,4358_7778195_4461016,4358_648 -4358_80795,205,4358_17905,River Forest,4591,0,4358_7778195_4461011,4358_648 -4358_80795,96,4358_17906,River Forest,11729,0,4358_7778195_4461006,4358_648 -4358_80795,205,4358_17908,River Forest,4676,0,4358_7778195_4461034,4358_648 -4358_80795,96,4358_17909,River Forest,11836,0,4358_7778195_4461021,4358_648 -4358_80795,205,4358_17910,River Forest,4618,0,4358_7778195_4461013,4358_648 -4358_80795,96,4358_17912,River Forest,11771,0,4358_7778195_4461024,4358_649 -4358_80795,205,4358_17913,River Forest,4576,0,4358_7778195_4461006,4358_648 -4358_80795,96,4358_17914,River Forest,11632,0,4358_7778195_4461019,4358_648 -4358_80795,205,4358_17916,River Forest,4649,0,4358_7778195_4461038,4358_648 -4358_80795,96,4358_17917,River Forest,11858,0,4358_7778195_4461023,4358_648 -4358_80795,205,4358_17919,River Forest,4801,0,4358_7778195_4461037,4358_648 -4358_80682,205,4358_1792,Harristown,6981,1,4358_7778195_8013019,4358_60 -4358_80795,96,4358_17920,River Forest,11635,0,4358_7778195_4461026,4358_648 -4358_80795,205,4358_17922,River Forest,4624,0,4358_7778195_4461014,4358_648 -4358_80795,96,4358_17923,River Forest,11773,0,4358_7778195_4461024,4358_648 -4358_80795,205,4358_17924,River Forest,4565,0,4358_7778195_4461005,4358_649 -4358_80795,96,4358_17926,River Forest,11634,0,4358_7778195_4461019,4358_648 -4358_80795,205,4358_17928,River Forest,4668,0,4358_7778195_4461042,4358_650 -4358_80682,96,4358_1793,Harristown,13879,1,4358_7778195_8013027,4358_64 -4358_80795,205,4358_17930,River Forest,4632,0,4358_7778195_4461015,4358_649 -4358_80795,96,4358_17931,River Forest,11851,0,4358_7778195_4461027,4358_650 -4358_80795,96,4358_17932,River Forest,11880,0,4358_7778195_4461033,4358_648 -4358_80795,205,4358_17934,River Forest,4462,0,4358_7778195_4461041,4358_650 -4358_80795,96,4358_17935,River Forest,11769,0,4358_7778195_4461016,4358_648 -4358_80795,205,4358_17937,River Forest,4517,0,4358_7778195_4461044,4358_650 -4358_80795,205,4358_17939,River Forest,4670,0,4358_7778195_4461042,4358_649 -4358_80795,96,4358_17940,River Forest,11705,0,4358_7778195_4461031,4358_650 -4358_80795,96,4358_17942,River Forest,11898,0,4358_7778195_4461034,4358_649 -4358_80795,205,4358_17943,River Forest,4484,0,4358_7778195_4461046,4358_650 -4358_80795,96,4358_17944,River Forest,11882,0,4358_7778195_4461033,4358_648 -4358_80795,205,4358_17945,River Forest,4684,0,4358_7778195_4461023,4358_649 -4358_80795,205,4358_17947,River Forest,4465,0,4358_7778195_4461045,4358_648 -4358_80795,96,4358_17949,River Forest,11900,0,4358_7778195_4461035,4358_650 -4358_80682,205,4358_1795,Harristown,7043,1,4358_7778195_8013039,4358_62 -4358_80795,96,4358_17950,River Forest,11894,0,4358_7778195_4461036,4358_648 -4358_80795,205,4358_17951,River Forest,4482,0,4358_7778195_4461053,4358_649 -4358_80795,96,4358_17954,River Forest,11911,0,4358_7778195_4461038,4358_649 -4358_80795,205,4358_17955,River Forest,4538,0,4358_7778195_4461049,4358_650 -4358_80795,205,4358_17956,River Forest,4686,0,4358_7778195_4461023,4358_648 -4358_80795,96,4358_17957,River Forest,11884,0,4358_7778195_4461040,4358_649 -4358_80682,96,4358_1796,Harristown,13684,1,4358_7778195_8013019,4358_60 -4358_80795,205,4358_17960,River Forest,4468,0,4358_7778195_4461057,4358_649 -4358_80795,96,4358_17961,River Forest,11929,0,4358_7778195_4461041,4358_650 -4358_80795,96,4358_17962,River Forest,11896,0,4358_7778195_4461036,4358_648 -4358_80795,205,4358_17964,River Forest,4555,0,4358_7778195_4461043,4358_650 -4358_80795,96,4358_17966,River Forest,11761,0,4358_7778195_4461011,4358_649 -4358_80795,205,4358_17967,River Forest,4819,0,4358_7778195_4461052,4358_650 -4358_80795,96,4358_17969,River Forest,11886,0,4358_7778195_4461040,4358_649 -4358_80795,205,4358_17970,River Forest,4743,0,4358_7778195_4461027,4358_650 -4358_80795,96,4358_17972,River Forest,11931,0,4358_7778195_4461041,4358_649 -4358_80795,205,4358_17973,River Forest,4832,0,4358_7778195_4461059,4358_650 -4358_80795,96,4358_17974,River Forest,11919,0,4358_7778195_4461028,4358_648 -4358_80795,205,4358_17976,River Forest,4728,0,4358_7778195_4461030,4358_650 -4358_80795,96,4358_17978,River Forest,11763,0,4358_7778195_4461011,4358_649 -4358_80795,205,4358_17979,River Forest,4821,0,4358_7778195_4461052,4358_650 -4358_80682,205,4358_1798,Harristown,6879,1,4358_7778195_8013008,4358_61 -4358_80795,96,4358_17980,River Forest,11775,0,4358_7778195_4461044,4358_648 -4358_80795,205,4358_17982,River Forest,4703,0,4358_7778195_4461026,4358_650 -4358_80795,205,4358_17984,River Forest,4584,0,4358_7778195_4461060,4358_649 -4358_80795,96,4358_17985,River Forest,11933,0,4358_7778195_4461041,4358_650 -4358_80795,96,4358_17986,River Forest,11921,0,4358_7778195_4461028,4358_648 -4358_80795,205,4358_17988,River Forest,4730,0,4358_7778195_4461030,4358_650 -4358_80795,96,4358_17989,River Forest,11777,0,4358_7778195_4461044,4358_648 -4358_80682,96,4358_1799,Harristown,13632,1,4358_7778195_8013007,4358_63 -4358_80795,205,4358_17991,River Forest,4705,0,4358_7778195_4461026,4358_650 -4358_80795,96,4358_17992,Red Cow Luas,11726,1,4358_7778195_4461006,4358_651 -4358_80795,205,4358_17993,Red Cow Luas,4588,1,4358_7778195_4461011,4358_652 -4358_80795,205,4358_17994,Red Cow Luas,4541,1,4358_7778195_4461010,4358_651 -4358_80795,205,4358_17995,Red Cow Luas,4593,1,4358_7778195_4461016,4358_651 -4358_80795,96,4358_17996,Red Cow Luas,11688,1,4358_7778195_4461007,4358_652 -4358_80795,205,4358_17997,Red Cow Luas,4590,1,4358_7778195_4461011,4358_651 -4358_80795,96,4358_17998,Red Cow Luas,11728,1,4358_7778195_4461006,4358_651 -4358_80795,205,4358_17999,Red Cow Luas,4675,1,4358_7778195_4461034,4358_652 -4358_80760,96,4358_18,Shaw street,9320,0,4358_7778195_9001002,4358_1 -4358_80760,205,4358_180,Shanard Road,1651,1,4358_7778195_9001003,4358_5 -4358_80682,96,4358_1800,Harristown,13882,1,4358_7778195_8013028,4358_59 -4358_80795,205,4358_18001,Red Cow Luas,4690,1,4358_7778195_4461025,4358_651 -4358_80795,96,4358_18003,Red Cow Luas,11690,1,4358_7778195_4461007,4358_652 -4358_80795,205,4358_18004,Red Cow Luas,4746,1,4358_7778195_4461031,4358_653 -4358_80795,96,4358_18005,Red Cow Luas,11631,1,4358_7778195_4461019,4358_651 -4358_80795,205,4358_18006,Red Cow Luas,4595,1,4358_7778195_4461016,4358_652 -4358_80795,96,4358_18007,Red Cow Luas,11857,1,4358_7778195_4461023,4358_651 -4358_80795,205,4358_18009,Red Cow Luas,4800,1,4358_7778195_4461037,4358_653 -4358_80682,205,4358_1801,Harristown,6818,1,4358_7778195_8013003,4358_61 -4358_80795,205,4358_18010,Red Cow Luas,4677,1,4358_7778195_4461034,4358_651 -4358_80795,96,4358_18012,Red Cow Luas,11837,1,4358_7778195_4461021,4358_653 -4358_80795,96,4358_18014,Red Cow Luas,11772,1,4358_7778195_4461024,4358_652 -4358_80795,205,4358_18015,Red Cow Luas,4619,1,4358_7778195_4461013,4358_653 -4358_80795,205,4358_18016,Red Cow Luas,4577,1,4358_7778195_4461006,4358_651 -4358_80795,96,4358_18017,Red Cow Luas,11633,1,4358_7778195_4461019,4358_652 -4358_80795,96,4358_18019,Red Cow Luas,11850,1,4358_7778195_4461027,4358_651 -4358_80795,205,4358_18020,Red Cow Luas,4650,1,4358_7778195_4461038,4358_652 -4358_80795,96,4358_18022,Red Cow Luas,11636,1,4358_7778195_4461026,4358_651 -4358_80795,205,4358_18023,Red Cow Luas,4461,1,4358_7778195_4461041,4358_652 -4358_80795,96,4358_18025,Red Cow Luas,11774,1,4358_7778195_4461024,4358_651 -4358_80795,205,4358_18027,Red Cow Luas,4516,1,4358_7778195_4461044,4358_653 -4358_80795,205,4358_18029,Red Cow Luas,4669,1,4358_7778195_4461042,4358_652 -4358_80795,96,4358_18030,Red Cow Luas,11704,1,4358_7778195_4461031,4358_653 -4358_80795,205,4358_18032,Red Cow Luas,4633,1,4358_7778195_4461015,4358_652 -4358_80795,96,4358_18033,Red Cow Luas,11852,1,4358_7778195_4461027,4358_653 -4358_80795,96,4358_18034,Red Cow Luas,11881,1,4358_7778195_4461033,4358_651 -4358_80795,205,4358_18036,Red Cow Luas,4463,1,4358_7778195_4461041,4358_653 -4358_80795,96,4358_18037,Red Cow Luas,11770,1,4358_7778195_4461016,4358_651 -4358_80795,205,4358_18038,Red Cow Luas,4464,1,4358_7778195_4461045,4358_652 -4358_80682,205,4358_1804,Harristown,7050,1,4358_7778195_8013042,4358_61 -4358_80795,96,4358_18041,Red Cow Luas,11706,1,4358_7778195_4461031,4358_652 -4358_80795,205,4358_18042,Red Cow Luas,4518,1,4358_7778195_4461044,4358_653 -4358_80795,205,4358_18043,Red Cow Luas,6100,1,4358_7778195_4824217,4358_651 -4358_80795,96,4358_18045,Red Cow Luas,11899,1,4358_7778195_4461034,4358_652 -4358_80795,205,4358_18046,Red Cow Luas,4537,1,4358_7778195_4461049,4358_653 -4358_80795,96,4358_18047,Red Cow Luas,11883,1,4358_7778195_4461033,4358_651 -4358_80795,205,4358_18048,Red Cow Luas,4685,1,4358_7778195_4461023,4358_652 -4358_80682,96,4358_1805,Harristown,13652,1,4358_7778195_8013010,4358_63 -4358_80795,205,4358_18051,Red Cow Luas,4467,1,4358_7778195_4461057,4358_652 -4358_80795,96,4358_18052,Red Cow Luas,11901,1,4358_7778195_4461035,4358_653 -4358_80795,96,4358_18053,Red Cow Luas,11895,1,4358_7778195_4461036,4358_651 -4358_80795,205,4358_18054,Red Cow Luas,4466,1,4358_7778195_4461045,4358_652 -4358_80795,205,4358_18056,Red Cow Luas,4483,1,4358_7778195_4461053,4358_651 -4358_80795,96,4358_18058,Red Cow Luas,11912,1,4358_7778195_4461038,4358_653 -4358_80795,96,4358_18059,Red Cow Luas,11885,1,4358_7778195_4461040,4358_651 -4358_80795,205,4358_18060,Red Cow Luas,4539,1,4358_7778195_4461049,4358_652 -4358_80795,96,4358_18063,Red Cow Luas,11930,1,4358_7778195_4461041,4358_652 -4358_80795,205,4358_18064,Red Cow Luas,4831,1,4358_7778195_4461059,4358_653 -4358_80795,96,4358_18065,Red Cow Luas,11897,1,4358_7778195_4461036,4358_651 -4358_80795,205,4358_18067,Red Cow Luas,4556,1,4358_7778195_4461043,4358_653 -4358_80795,96,4358_18069,Red Cow Luas,11762,1,4358_7778195_4461011,4358_652 -4358_80682,205,4358_1807,Harristown,7054,1,4358_7778195_8013043,4358_62 -4358_80795,205,4358_18070,Red Cow Luas,4820,1,4358_7778195_4461052,4358_653 -4358_80795,96,4358_18072,Red Cow Luas,11887,1,4358_7778195_4461040,4358_652 -4358_80795,205,4358_18073,Red Cow Luas,4744,1,4358_7778195_4461027,4358_653 -4358_80795,205,4358_18075,Red Cow Luas,4583,1,4358_7778195_4461060,4358_652 -4358_80795,96,4358_18076,Red Cow Luas,11932,1,4358_7778195_4461041,4358_653 -4358_80795,96,4358_18077,Red Cow Luas,11920,1,4358_7778195_4461028,4358_651 -4358_80795,205,4358_18079,Red Cow Luas,4729,1,4358_7778195_4461030,4358_653 -4358_80682,96,4358_1808,Harristown,13885,1,4358_7778195_8013029,4358_61 -4358_80795,96,4358_18081,Red Cow Luas,11764,1,4358_7778195_4461011,4358_652 -4358_80795,205,4358_18082,Red Cow Luas,4822,1,4358_7778195_4461052,4358_653 -4358_80795,96,4358_18083,Red Cow Luas,11776,1,4358_7778195_4461044,4358_651 -4358_80795,205,4358_18085,Red Cow Luas,4704,1,4358_7778195_4461026,4358_653 -4358_80795,96,4358_18086,Red Cow Luas,11922,1,4358_7778195_4461028,4358_651 -4358_80795,205,4358_18088,Red Cow Luas,4731,1,4358_7778195_4461030,4358_653 -4358_80796,205,4358_18089,Hazelhatch Station,838,0,4358_7778195_7958001,4358_654 -4358_80796,96,4358_18090,Hazelhatch Station,8692,0,4358_7778195_7958002,4358_654 -4358_80796,205,4358_18091,Hazelhatch Station,840,0,4358_7778195_7958001,4358_654 -4358_80796,96,4358_18092,Hazelhatch Station,8694,0,4358_7778195_7958002,4358_654 -4358_80796,205,4358_18093,Hazelhatch Station,836,0,4358_7778195_7958003,4358_654 -4358_80796,96,4358_18095,Hazelhatch Station,8696,0,4358_7778195_7958002,4358_655 -4358_80796,205,4358_18096,Hazelhatch Station,847,0,4358_7778195_7958004,4358_654 -4358_80796,96,4358_18098,Hazelhatch Station,8698,0,4358_7778195_7958002,4358_655 -4358_80796,205,4358_18099,Hazelhatch Station,883,0,4358_7778195_7958007,4358_654 -4358_80760,205,4358_181,Shanard Road,1585,1,4358_7778195_9001005,4358_4 -4358_80682,205,4358_1810,Harristown,7056,1,4358_7778195_8013045,4358_61 -4358_80796,96,4358_18101,Hazelhatch Station,8657,0,4358_7778195_7958006,4358_655 -4358_80796,205,4358_18102,Hazelhatch Station,850,0,4358_7778195_7958008,4358_654 -4358_80796,96,4358_18104,Hazelhatch Station,8689,0,4358_7778195_7958004,4358_655 -4358_80796,205,4358_18105,Hazelhatch Station,852,0,4358_7778195_7958008,4358_654 -4358_80796,96,4358_18107,Hazelhatch Station,8691,0,4358_7778195_7958004,4358_655 -4358_80796,205,4358_18108,Hazelhatch Station,808,0,4358_7778195_7958011,4358_654 -4358_80682,96,4358_1811,Harristown,13887,1,4358_7778195_8013030,4358_63 -4358_80796,96,4358_18110,Hazelhatch Station,8705,0,4358_7778195_7958011,4358_655 -4358_80796,205,4358_18111,Hazelhatch Station,890,0,4358_7778195_7958014,4358_654 -4358_80796,96,4358_18113,Hazelhatch Station,8702,0,4358_7778195_7958009,4358_655 -4358_80796,205,4358_18114,Hazelhatch Station,904,0,4358_7778195_7958012,4358_654 -4358_80796,96,4358_18115,Hazelhatch Station,8655,0,4358_7778195_7958010,4358_654 -4358_80796,205,4358_18117,Hazelhatch Station,900,0,4358_7778195_7958013,4358_654 -4358_80796,96,4358_18118,Hazelhatch Station,8685,0,4358_7778195_7958013,4358_654 -4358_80796,205,4358_18119,Hazelhatch Station,6104,0,4358_7778195_7872231,4358_655 -4358_80682,205,4358_1812,Harristown,7058,1,4358_7778195_8013046,4358_59 -4358_80796,205,4358_18121,Hazelhatch Station,876,0,4358_7778195_7958017,4358_654 -4358_80796,96,4358_18123,Hazelhatch Station,8735,0,4358_7778195_7958016,4358_655 -4358_80796,205,4358_18124,Hazelhatch Station,812,0,4358_7778195_7958019,4358_654 -4358_80796,96,4358_18126,Hazelhatch Station,8737,0,4358_7778195_7958016,4358_655 -4358_80796,205,4358_18127,Hazelhatch Station,863,0,4358_7778195_7958023,4358_654 -4358_80796,96,4358_18128,Hazelhatch Station,8668,0,4358_7778195_7958019,4358_654 -4358_80682,96,4358_1813,Harristown,13589,1,4358_7778195_8013001,4358_61 -4358_80796,205,4358_18130,Hazelhatch Station,804,0,4358_7778195_7958024,4358_654 -4358_80796,96,4358_18131,Hazelhatch Station,8637,0,4358_7778195_7958022,4358_654 -4358_80796,205,4358_18133,Hazelhatch Station,911,0,4358_7778195_7958022,4358_654 -4358_80796,96,4358_18135,Hazelhatch Station,8676,0,4358_7778195_7958023,4358_655 -4358_80796,205,4358_18136,Hazelhatch Station,816,0,4358_7778195_7958025,4358_654 -4358_80796,96,4358_18138,Hazelhatch Station,8678,0,4358_7778195_7958023,4358_655 -4358_80796,205,4358_18139,Hazelhatch Station,818,0,4358_7778195_7958025,4358_654 -4358_80796,96,4358_18141,Hazelhatch Station,8680,0,4358_7778195_7958023,4358_655 -4358_80796,205,4358_18142,Hazelhatch Station,820,0,4358_7778195_7958025,4358_654 -4358_80796,205,4358_18143,River Forest,839,1,4358_7778195_7958001,4358_657 -4358_80796,96,4358_18144,River Forest,8644,1,4358_7778195_7958001,4358_658 -4358_80796,96,4358_18145,River Forest,8646,1,4358_7778195_7958001,4358_657 -4358_80796,205,4358_18146,River Forest,835,1,4358_7778195_7958003,4358_658 -4358_80796,205,4358_18148,River Forest,846,1,4358_7778195_7958004,4358_658 -4358_80796,96,4358_18149,River Forest,8648,1,4358_7778195_7958001,4358_659 -4358_80682,96,4358_1815,Harristown,13889,1,4358_7778195_8013031,4358_59 -4358_80796,205,4358_18151,River Forest,882,1,4358_7778195_7958007,4358_658 -4358_80796,96,4358_18152,River Forest,8672,1,4358_7778195_7958003,4358_659 -4358_80796,96,4358_18153,River Forest,8656,1,4358_7778195_7958006,4358_657 -4358_80796,205,4358_18154,River Forest,849,1,4358_7778195_7958008,4358_657 -4358_80796,96,4358_18157,River Forest,8688,1,4358_7778195_7958004,4358_658 -4358_80796,205,4358_18158,River Forest,851,1,4358_7778195_7958008,4358_657 -4358_80682,205,4358_1816,Harristown,6837,1,4358_7778195_8013047,4358_61 -4358_80796,96,4358_18160,River Forest,8690,1,4358_7778195_7958004,4358_658 -4358_80796,205,4358_18161,River Forest,807,1,4358_7778195_7958011,4358_657 -4358_80796,96,4358_18163,River Forest,8651,1,4358_7778195_7958007,4358_658 -4358_80796,205,4358_18164,River Forest,889,1,4358_7778195_7958014,4358_657 -4358_80796,96,4358_18166,River Forest,8701,1,4358_7778195_7958009,4358_658 -4358_80796,205,4358_18167,River Forest,903,1,4358_7778195_7958012,4358_657 -4358_80796,96,4358_18168,River Forest,8654,1,4358_7778195_7958010,4358_657 -4358_80796,205,4358_18170,River Forest,899,1,4358_7778195_7958013,4358_657 -4358_80796,96,4358_18171,River Forest,8684,1,4358_7778195_7958013,4358_657 -4358_80796,205,4358_18173,River Forest,875,1,4358_7778195_7958017,4358_657 -4358_80796,96,4358_18175,River Forest,8734,1,4358_7778195_7958016,4358_658 -4358_80796,205,4358_18176,River Forest,811,1,4358_7778195_7958019,4358_657 -4358_80796,96,4358_18178,River Forest,8736,1,4358_7778195_7958016,4358_658 -4358_80796,205,4358_18179,River Forest,855,1,4358_7778195_7958020,4358_657 -4358_80796,96,4358_18180,River Forest,8667,1,4358_7778195_7958019,4358_657 -4358_80796,205,4358_18182,River Forest,803,1,4358_7778195_7958024,4358_657 -4358_80796,96,4358_18183,River Forest,8721,1,4358_7778195_7958017,4358_657 -4358_80796,205,4358_18185,River Forest,910,1,4358_7778195_7958022,4358_657 -4358_80796,96,4358_18187,River Forest,8728,1,4358_7778195_7958021,4358_658 -4358_80796,205,4358_18188,River Forest,815,1,4358_7778195_7958025,4358_657 -4358_80682,205,4358_1819,Harristown,7013,1,4358_7778195_8013028,4358_61 -4358_80796,96,4358_18190,River Forest,8677,1,4358_7778195_7958023,4358_658 -4358_80796,205,4358_18191,River Forest,817,1,4358_7778195_7958025,4358_657 -4358_80796,96,4358_18193,River Forest,8679,1,4358_7778195_7958023,4358_658 -4358_80796,205,4358_18194,River Forest,819,1,4358_7778195_7958025,4358_657 -4358_80796,96,4358_18196,River Forest,8681,1,4358_7778195_7958023,4358_657 -4358_80796,205,4358_18197,River Forest,829,1,4358_7778195_7958026,4358_657 -4358_80797,205,4358_18198,Hazelhatch Station,866,0,4358_7778195_7958002,4358_660 -4358_80797,205,4358_18199,Hazelhatch Station,834,0,4358_7778195_7958003,4358_660 -4358_80760,205,4358_182,Shanard Road,1538,1,4358_7778195_9001010,4358_4 -4358_80682,96,4358_1820,Harristown,13681,1,4358_7778195_8013018,4358_63 -4358_80797,96,4358_18200,Hazelhatch Station,8645,0,4358_7778195_7958001,4358_660 -4358_80797,205,4358_18201,Hazelhatch Station,868,0,4358_7778195_7958002,4358_660 -4358_80797,205,4358_18202,Hazelhatch Station,845,0,4358_7778195_7958004,4358_660 -4358_80797,96,4358_18203,Hazelhatch Station,8647,0,4358_7778195_7958001,4358_660 -4358_80797,205,4358_18204,Hazelhatch Station,842,0,4358_7778195_7958001,4358_660 -4358_80797,205,4358_18205,Hazelhatch Station,870,0,4358_7778195_7958002,4358_660 -4358_80797,96,4358_18207,Hazelhatch Station,8671,0,4358_7778195_7958003,4358_661 -4358_80797,205,4358_18208,Hazelhatch Station,893,0,4358_7778195_7958005,4358_660 -4358_80797,205,4358_18209,Hazelhatch Station,848,0,4358_7778195_7958008,4358_660 -4358_80682,205,4358_1821,Harristown,7053,1,4358_7778195_8013044,4358_59 -4358_80797,96,4358_18210,Hazelhatch Station,8661,0,4358_7778195_7958005,4358_661 -4358_80797,96,4358_18212,Hazelhatch Station,8687,0,4358_7778195_7958004,4358_660 -4358_80797,205,4358_18213,Hazelhatch Station,831,0,4358_7778195_7958006,4358_661 -4358_80797,205,4358_18214,Hazelhatch Station,895,0,4358_7778195_7958005,4358_660 -4358_80797,96,4358_18216,Hazelhatch Station,8673,0,4358_7778195_7958003,4358_662 -4358_80797,205,4358_18218,Hazelhatch Station,885,0,4358_7778195_7958007,4358_661 -4358_80797,96,4358_18219,Hazelhatch Station,8663,0,4358_7778195_7958005,4358_662 -4358_80797,96,4358_18221,Hazelhatch Station,8659,0,4358_7778195_7958006,4358_661 -4358_80797,205,4358_18222,Hazelhatch Station,833,0,4358_7778195_7958006,4358_662 -4358_80797,96,4358_18224,Hazelhatch Station,8650,0,4358_7778195_7958007,4358_661 -4358_80797,205,4358_18225,Hazelhatch Station,857,0,4358_7778195_7958009,4358_662 -4358_80797,205,4358_18227,Hazelhatch Station,822,0,4358_7778195_7958010,4358_661 -4358_80797,96,4358_18228,Hazelhatch Station,8665,0,4358_7778195_7958005,4358_662 -4358_80797,205,4358_18229,Hazelhatch Station,896,0,4358_7778195_7958013,4358_660 -4358_80682,96,4358_1823,Harristown,13719,1,4358_7778195_8013022,4358_63 -4358_80797,96,4358_18231,Hazelhatch Station,8700,0,4358_7778195_7958009,4358_662 -4358_80797,96,4358_18232,Hazelhatch Station,8675,0,4358_7778195_7958008,4358_660 -4358_80797,205,4358_18233,Hazelhatch Station,902,0,4358_7778195_7958012,4358_661 -4358_80797,96,4358_18235,Hazelhatch Station,8653,0,4358_7778195_7958010,4358_660 -4358_80797,205,4358_18236,Hazelhatch Station,810,0,4358_7778195_7958011,4358_661 -4358_80797,205,4358_18238,Hazelhatch Station,898,0,4358_7778195_7958013,4358_660 -4358_80682,96,4358_1824,Harristown,13766,1,4358_7778195_8013023,4358_59 -4358_80797,96,4358_18240,Hazelhatch Station,8707,0,4358_7778195_7958011,4358_662 -4358_80797,96,4358_18241,Hazelhatch Station,8683,0,4358_7778195_7958012,4358_660 -4358_80797,205,4358_18242,Hazelhatch Station,892,0,4358_7778195_7958014,4358_661 -4358_80797,205,4358_18244,Hazelhatch Station,872,0,4358_7778195_7958015,4358_660 -4358_80797,96,4358_18246,Hazelhatch Station,8704,0,4358_7778195_7958009,4358_662 -4358_80797,205,4358_18247,Hazelhatch Station,906,0,4358_7778195_7958012,4358_660 -4358_80797,96,4358_18249,Hazelhatch Station,8709,0,4358_7778195_7958011,4358_662 -4358_80797,96,4358_18251,Hazelhatch Station,8711,0,4358_7778195_7958014,4358_661 -4358_80797,205,4358_18252,Hazelhatch Station,880,0,4358_7778195_7958016,4358_662 -4358_80797,205,4358_18253,Hazelhatch Station,874,0,4358_7778195_7958015,4358_660 -4358_80797,96,4358_18255,Hazelhatch Station,8716,0,4358_7778195_7958015,4358_662 -4358_80797,96,4358_18256,Hazelhatch Station,8718,0,4358_7778195_7958017,4358_660 -4358_80797,205,4358_18258,Hazelhatch Station,854,0,4358_7778195_7958020,4358_662 -4358_80682,205,4358_1826,Harristown,7046,1,4358_7778195_8013040,4358_63 -4358_80797,96,4358_18260,Hazelhatch Station,8666,0,4358_7778195_7958019,4358_661 -4358_80797,205,4358_18261,Hazelhatch Station,907,0,4358_7778195_7958022,4358_662 -4358_80797,96,4358_18262,Hazelhatch Station,8714,0,4358_7778195_7958018,4358_660 -4358_80797,205,4358_18263,Hazelhatch Station,878,0,4358_7778195_7958017,4358_661 -4358_80797,96,4358_18265,Hazelhatch Station,8720,0,4358_7778195_7958017,4358_660 -4358_80797,205,4358_18266,Hazelhatch Station,888,0,4358_7778195_7958021,4358_661 -4358_80797,205,4358_18269,Hazelhatch Station,909,0,4358_7778195_7958022,4358_660 -4358_80797,96,4358_18270,Hazelhatch Station,8723,0,4358_7778195_7958020,4358_661 -4358_80797,205,4358_18272,Hazelhatch Station,865,0,4358_7778195_7958023,4358_660 -4358_80797,96,4358_18273,Hazelhatch Station,8727,0,4358_7778195_7958021,4358_661 -4358_80797,96,4358_18274,Hazelhatch Station,8670,0,4358_7778195_7958019,4358_660 -4358_80797,205,4358_18276,Hazelhatch Station,814,0,4358_7778195_7958025,4358_662 -4358_80797,96,4358_18278,Hazelhatch Station,8725,0,4358_7778195_7958020,4358_661 -4358_80797,205,4358_18279,Hazelhatch Station,806,0,4358_7778195_7958024,4358_662 -4358_80682,96,4358_1828,Harristown,13809,1,4358_7778195_8013024,4358_61 -4358_80797,96,4358_18280,Hazelhatch Station,8639,0,4358_7778195_7958022,4358_660 -4358_80797,205,4358_18282,Hazelhatch Station,824,0,4358_7778195_7958026,4358_662 -4358_80797,96,4358_18284,Hazelhatch Station,8730,0,4358_7778195_7958024,4358_661 -4358_80797,205,4358_18285,Hazelhatch Station,859,0,4358_7778195_7958027,4358_662 -4358_80797,96,4358_18286,Hazelhatch Station,8641,0,4358_7778195_7958022,4358_660 -4358_80797,205,4358_18288,Hazelhatch Station,826,0,4358_7778195_7958026,4358_662 -4358_80682,205,4358_1829,Harristown,7024,1,4358_7778195_8013031,4358_63 -4358_80797,96,4358_18290,Hazelhatch Station,8732,0,4358_7778195_7958024,4358_661 -4358_80797,205,4358_18291,Hazelhatch Station,861,0,4358_7778195_7958027,4358_662 -4358_80797,205,4358_18292,Hazelhatch Station,828,0,4358_7778195_7958026,4358_660 -4358_80797,96,4358_18293,Hazelhatch Station,8643,0,4358_7778195_7958022,4358_660 -4358_80797,205,4358_18295,River Forest,867,1,4358_7778195_7958002,4358_663 -4358_80797,96,4358_18296,River Forest,8693,1,4358_7778195_7958002,4358_663 -4358_80797,205,4358_18297,River Forest,844,1,4358_7778195_7958004,4358_663 -4358_80797,205,4358_18298,River Forest,841,1,4358_7778195_7958001,4358_663 -4358_80797,205,4358_18299,River Forest,869,1,4358_7778195_7958002,4358_663 -4358_80760,205,4358_183,Shanard Road,1859,1,4358_7778195_9001007,4358_4 -4358_80797,96,4358_18300,River Forest,8695,1,4358_7778195_7958002,4358_663 -4358_80797,205,4358_18301,River Forest,6103,1,4358_7778195_7872131,4358_663 -4358_80797,205,4358_18302,River Forest,837,1,4358_7778195_7958003,4358_663 -4358_80797,205,4358_18303,River Forest,843,1,4358_7778195_7958001,4358_663 -4358_80797,96,4358_18304,River Forest,8697,1,4358_7778195_7958002,4358_663 -4358_80797,205,4358_18306,River Forest,830,1,4358_7778195_7958006,4358_663 -4358_80797,96,4358_18307,River Forest,8686,1,4358_7778195_7958004,4358_663 -4358_80797,205,4358_18308,River Forest,894,1,4358_7778195_7958005,4358_663 -4358_80682,96,4358_1831,Harristown,13846,1,4358_7778195_8013025,4358_61 -4358_80797,96,4358_18310,River Forest,8699,1,4358_7778195_7958002,4358_663 -4358_80797,205,4358_18311,River Forest,884,1,4358_7778195_7958007,4358_663 -4358_80797,96,4358_18312,River Forest,8662,1,4358_7778195_7958005,4358_663 -4358_80797,205,4358_18314,River Forest,832,1,4358_7778195_7958006,4358_663 -4358_80797,96,4358_18315,River Forest,8658,1,4358_7778195_7958006,4358_663 -4358_80797,205,4358_18317,River Forest,856,1,4358_7778195_7958009,4358_663 -4358_80797,96,4358_18318,River Forest,8649,1,4358_7778195_7958007,4358_663 -4358_80682,205,4358_1832,Harristown,7041,1,4358_7778195_8013038,4358_63 -4358_80797,96,4358_18320,River Forest,8664,1,4358_7778195_7958005,4358_663 -4358_80797,205,4358_18322,River Forest,821,1,4358_7778195_7958010,4358_664 -4358_80797,96,4358_18323,River Forest,8660,1,4358_7778195_7958006,4358_663 -4358_80797,205,4358_18324,River Forest,853,1,4358_7778195_7958008,4358_663 -4358_80797,96,4358_18326,River Forest,8674,1,4358_7778195_7958008,4358_663 -4358_80797,205,4358_18327,River Forest,901,1,4358_7778195_7958012,4358_663 -4358_80797,96,4358_18329,River Forest,8652,1,4358_7778195_7958010,4358_663 -4358_80797,205,4358_18330,River Forest,809,1,4358_7778195_7958011,4358_663 -4358_80797,96,4358_18332,River Forest,8706,1,4358_7778195_7958011,4358_663 -4358_80797,205,4358_18333,River Forest,897,1,4358_7778195_7958013,4358_663 -4358_80797,205,4358_18335,River Forest,891,1,4358_7778195_7958014,4358_663 -4358_80797,96,4358_18336,River Forest,8682,1,4358_7778195_7958012,4358_663 -4358_80797,205,4358_18338,River Forest,871,1,4358_7778195_7958015,4358_663 -4358_80797,96,4358_18339,River Forest,8703,1,4358_7778195_7958009,4358_663 -4358_80682,205,4358_1834,Harristown,7049,1,4358_7778195_8013041,4358_61 -4358_80797,205,4358_18341,River Forest,905,1,4358_7778195_7958012,4358_663 -4358_80797,96,4358_18342,River Forest,8708,1,4358_7778195_7958011,4358_663 -4358_80797,205,4358_18344,River Forest,879,1,4358_7778195_7958016,4358_663 -4358_80797,96,4358_18345,River Forest,8710,1,4358_7778195_7958014,4358_663 -4358_80797,205,4358_18347,River Forest,873,1,4358_7778195_7958015,4358_663 -4358_80797,96,4358_18348,River Forest,8715,1,4358_7778195_7958015,4358_663 -4358_80682,96,4358_1835,Harristown,13872,1,4358_7778195_8013026,4358_63 -4358_80797,205,4358_18350,River Forest,886,1,4358_7778195_7958018,4358_663 -4358_80797,96,4358_18351,River Forest,8717,1,4358_7778195_7958017,4358_663 -4358_80797,205,4358_18353,River Forest,881,1,4358_7778195_7958016,4358_663 -4358_80797,96,4358_18355,River Forest,8712,1,4358_7778195_7958014,4358_663 -4358_80797,205,4358_18356,River Forest,877,1,4358_7778195_7958017,4358_663 -4358_80797,96,4358_18358,River Forest,8713,1,4358_7778195_7958018,4358_663 -4358_80797,205,4358_18359,River Forest,887,1,4358_7778195_7958021,4358_663 -4358_80797,96,4358_18360,River Forest,8719,1,4358_7778195_7958017,4358_663 -4358_80797,205,4358_18362,River Forest,908,1,4358_7778195_7958022,4358_663 -4358_80797,96,4358_18363,River Forest,8722,1,4358_7778195_7958020,4358_663 -4358_80797,205,4358_18365,River Forest,864,1,4358_7778195_7958023,4358_663 -4358_80797,96,4358_18366,River Forest,8726,1,4358_7778195_7958021,4358_663 -4358_80797,205,4358_18368,River Forest,813,1,4358_7778195_7958025,4358_663 -4358_80797,96,4358_18369,River Forest,8669,1,4358_7778195_7958019,4358_663 -4358_80682,205,4358_1837,Harristown,6983,1,4358_7778195_8013019,4358_61 -4358_80797,205,4358_18371,River Forest,805,1,4358_7778195_7958024,4358_663 -4358_80797,96,4358_18372,River Forest,8724,1,4358_7778195_7958020,4358_663 -4358_80797,205,4358_18374,River Forest,823,1,4358_7778195_7958026,4358_663 -4358_80797,96,4358_18375,River Forest,8638,1,4358_7778195_7958022,4358_663 -4358_80797,205,4358_18378,River Forest,858,1,4358_7778195_7958027,4358_664 -4358_80797,96,4358_18379,River Forest,8729,1,4358_7778195_7958024,4358_663 -4358_80682,96,4358_1838,Harristown,13881,1,4358_7778195_8013027,4358_63 -4358_80797,96,4358_18381,River Forest,8640,1,4358_7778195_7958022,4358_663 -4358_80797,205,4358_18382,River Forest,825,1,4358_7778195_7958026,4358_664 -4358_80797,96,4358_18384,River Forest,8731,1,4358_7778195_7958024,4358_663 -4358_80797,205,4358_18385,River Forest,860,1,4358_7778195_7958027,4358_663 -4358_80797,96,4358_18387,River Forest,8642,1,4358_7778195_7958022,4358_663 -4358_80797,205,4358_18388,River Forest,827,1,4358_7778195_7958026,4358_663 -4358_80797,205,4358_18389,River Forest,862,1,4358_7778195_7958027,4358_663 -4358_80797,96,4358_18391,River Forest,8733,1,4358_7778195_7958024,4358_663 -4358_80786,96,4358_18392,Blanchardstown SC,13943,0,4358_7778195_8534001,4358_665 -4358_80786,205,4358_18394,Blanchardstown SC,7335,0,4358_7778195_8534002,4358_666 -4358_80786,96,4358_18395,Blanchardstown SC,13964,0,4358_7778195_8534003,4358_665 -4358_80786,205,4358_18396,Blanchardstown SC,7361,0,4358_7778195_8534004,4358_665 -4358_80786,205,4358_18397,Blanchardstown SC,7373,0,4358_7778195_8534006,4358_665 -4358_80786,96,4358_18398,Blanchardstown SC,13996,0,4358_7778195_8534006,4358_665 -4358_80760,96,4358_184,Shanard Road,9319,1,4358_7778195_9001002,4358_5 -4358_80682,205,4358_1840,Harristown,6881,1,4358_7778195_8013008,4358_61 -4358_80786,205,4358_18400,Blanchardstown SC,7383,0,4358_7778195_8534008,4358_665 -4358_80786,96,4358_18401,Blanchardstown SC,14006,0,4358_7778195_8534007,4358_665 -4358_80786,205,4358_18402,Blanchardstown SC,7398,0,4358_7778195_8534010,4358_665 -4358_80786,96,4358_18403,Blanchardstown SC,14024,0,4358_7778195_8534009,4358_665 -4358_80786,205,4358_18404,Blanchardstown SC,7408,0,4358_7778195_8534012,4358_665 -4358_80786,96,4358_18406,Blanchardstown SC,13954,0,4358_7778195_8534002,4358_665 -4358_80786,205,4358_18407,Blanchardstown SC,7421,0,4358_7778195_8534013,4358_665 -4358_80786,205,4358_18408,Blanchardstown SC,7333,0,4358_7778195_8534001,4358_665 -4358_80786,96,4358_18409,Blanchardstown SC,13979,0,4358_7778195_8534004,4358_665 -4358_80682,96,4358_1841,Harristown,13884,1,4358_7778195_8013028,4358_63 -4358_80786,205,4358_18411,Blanchardstown SC,7348,0,4358_7778195_8534003,4358_665 -4358_80786,96,4358_18412,Blanchardstown SC,13989,0,4358_7778195_8534005,4358_665 -4358_80786,205,4358_18413,Blanchardstown SC,7371,0,4358_7778195_8534005,4358_665 -4358_80786,96,4358_18414,Blanchardstown SC,14012,0,4358_7778195_8534008,4358_665 -4358_80786,205,4358_18416,Blanchardstown SC,7907,0,4358_7778195_8534007,4358_666 -4358_80786,96,4358_18417,Blanchardstown SC,13945,0,4358_7778195_8534001,4358_665 -4358_80786,205,4358_18418,Blanchardstown SC,7387,0,4358_7778195_8534009,4358_665 -4358_80786,205,4358_18419,Blanchardstown SC,7444,0,4358_7778195_8534015,4358_665 -4358_80758,205,4358_1842,Castle Ave,5668,0,4358_7778195_6130002,4358_65 -4358_80786,96,4358_18420,Blanchardstown SC,13966,0,4358_7778195_8534003,4358_665 -4358_80786,205,4358_18422,Blanchardstown SC,7454,0,4358_7778195_8534016,4358_665 -4358_80786,96,4358_18423,Blanchardstown SC,13998,0,4358_7778195_8534006,4358_665 -4358_80786,205,4358_18424,Blanchardstown SC,7407,0,4358_7778195_8534011,4358_665 -4358_80786,96,4358_18426,Blanchardstown SC,14008,0,4358_7778195_8534007,4358_665 -4358_80786,205,4358_18427,Blanchardstown SC,7337,0,4358_7778195_8534002,4358_665 -4358_80786,96,4358_18428,Blanchardstown SC,14026,0,4358_7778195_8534009,4358_665 -4358_80758,96,4358_1843,Castle Ave,12681,0,4358_7778195_6130001,4358_66 -4358_80786,205,4358_18430,Blanchardstown SC,7363,0,4358_7778195_8534004,4358_665 -4358_80786,96,4358_18431,Blanchardstown SC,14038,0,4358_7778195_8534011,4358_665 -4358_80786,205,4358_18432,Blanchardstown SC,7375,0,4358_7778195_8534006,4358_665 -4358_80786,96,4358_18434,Blanchardstown SC,13956,0,4358_7778195_8534002,4358_665 -4358_80786,205,4358_18435,Blanchardstown SC,7385,0,4358_7778195_8534008,4358_665 -4358_80786,96,4358_18436,Blanchardstown SC,13981,0,4358_7778195_8534004,4358_665 -4358_80786,205,4358_18437,Blanchardstown SC,7400,0,4358_7778195_8534010,4358_665 -4358_80786,96,4358_18439,Blanchardstown SC,13991,0,4358_7778195_8534005,4358_665 -4358_80758,96,4358_1844,Castle Ave,12768,0,4358_7778195_6130003,4358_65 -4358_80786,205,4358_18440,Blanchardstown SC,7434,0,4358_7778195_8534014,4358_665 -4358_80786,96,4358_18441,Blanchardstown SC,14014,0,4358_7778195_8534008,4358_665 -4358_80786,205,4358_18443,Blanchardstown SC,7410,0,4358_7778195_8534012,4358_665 -4358_80786,96,4358_18444,Blanchardstown SC,14028,0,4358_7778195_8534010,4358_665 -4358_80786,205,4358_18445,Blanchardstown SC,7423,0,4358_7778195_8534013,4358_665 -4358_80786,96,4358_18447,Blanchardstown SC,13947,0,4358_7778195_8534001,4358_665 -4358_80786,205,4358_18448,Blanchardstown SC,7462,0,4358_7778195_8534017,4358_665 -4358_80786,96,4358_18449,Blanchardstown SC,14071,0,4358_7778195_8534014,4358_665 -4358_80758,205,4358_1845,Castle Ave,5792,0,4358_7778195_6130001,4358_65 -4358_80786,205,4358_18451,Blanchardstown SC,7350,0,4358_7778195_8534003,4358_665 -4358_80786,96,4358_18452,Blanchardstown SC,13968,0,4358_7778195_8534003,4358_665 -4358_80786,205,4358_18453,Blanchardstown SC,7468,0,4358_7778195_8534018,4358_665 -4358_80786,96,4358_18455,Blanchardstown SC,14000,0,4358_7778195_8534006,4358_665 -4358_80786,205,4358_18456,Blanchardstown SC,7909,0,4358_7778195_8534007,4358_665 -4358_80786,96,4358_18458,Blanchardstown SC,14050,0,4358_7778195_8534012,4358_665 -4358_80786,205,4358_18459,Blanchardstown SC,7389,0,4358_7778195_8534009,4358_665 -4358_80758,96,4358_1846,Castle Ave,12778,0,4358_7778195_6130002,4358_65 -4358_80786,96,4358_18461,Blanchardstown SC,14102,0,4358_7778195_8534016,4358_665 -4358_80786,205,4358_18462,Blanchardstown SC,7446,0,4358_7778195_8534015,4358_665 -4358_80786,96,4358_18463,Blanchardstown SC,14010,0,4358_7778195_8534007,4358_665 -4358_80786,205,4358_18465,Blanchardstown SC,7456,0,4358_7778195_8534016,4358_665 -4358_80786,96,4358_18466,Blanchardstown SC,14056,0,4358_7778195_8534013,4358_665 -4358_80786,205,4358_18468,Blanchardstown SC,7339,0,4358_7778195_8534002,4358_666 -4358_80786,96,4358_18469,Blanchardstown SC,14040,0,4358_7778195_8534011,4358_665 -4358_80758,205,4358_1847,Castle Ave,5705,0,4358_7778195_6130003,4358_65 -4358_80786,205,4358_18470,Blanchardstown SC,7365,0,4358_7778195_8534004,4358_665 -4358_80786,96,4358_18472,Blanchardstown SC,13958,0,4358_7778195_8534002,4358_665 -4358_80786,205,4358_18473,Blanchardstown SC,7377,0,4358_7778195_8534006,4358_665 -4358_80786,96,4358_18475,Blanchardstown SC,13983,0,4358_7778195_8534004,4358_665 -4358_80786,205,4358_18476,Blanchardstown SC,7402,0,4358_7778195_8534010,4358_665 -4358_80786,96,4358_18477,Blanchardstown SC,13993,0,4358_7778195_8534005,4358_665 -4358_80786,205,4358_18479,Blanchardstown SC,7436,0,4358_7778195_8534014,4358_665 -4358_80758,96,4358_1848,Castle Ave,12825,0,4358_7778195_6130005,4358_65 -4358_80786,96,4358_18480,Blanchardstown SC,14088,0,4358_7778195_8534015,4358_665 -4358_80786,205,4358_18482,Blanchardstown SC,7412,0,4358_7778195_8534012,4358_666 -4358_80786,96,4358_18483,Blanchardstown SC,14016,0,4358_7778195_8534008,4358_665 -4358_80786,205,4358_18484,Blanchardstown SC,7425,0,4358_7778195_8534013,4358_665 -4358_80786,96,4358_18486,Blanchardstown SC,14030,0,4358_7778195_8534010,4358_665 -4358_80786,205,4358_18487,Blanchardstown SC,7494,0,4358_7778195_8534020,4358_665 -4358_80786,96,4358_18489,Blanchardstown SC,13949,0,4358_7778195_8534001,4358_665 -4358_80758,205,4358_1849,Castle Ave,5938,0,4358_7778195_6130006,4358_65 -4358_80786,205,4358_18490,Blanchardstown SC,7464,0,4358_7778195_8534017,4358_665 -4358_80786,96,4358_18491,Blanchardstown SC,14073,0,4358_7778195_8534014,4358_665 -4358_80786,205,4358_18493,Blanchardstown SC,7352,0,4358_7778195_8534003,4358_665 -4358_80786,96,4358_18494,Blanchardstown SC,13970,0,4358_7778195_8534003,4358_665 -4358_80786,205,4358_18496,Blanchardstown SC,7470,0,4358_7778195_8534018,4358_666 -4358_80786,96,4358_18497,Blanchardstown SC,14002,0,4358_7778195_8534006,4358_665 -4358_80786,205,4358_18498,Blanchardstown SC,7911,0,4358_7778195_8534007,4358_665 -4358_80760,205,4358_185,Shanard Road,1632,1,4358_7778195_9001011,4358_4 -4358_80758,96,4358_1850,Castle Ave,12683,0,4358_7778195_6130001,4358_65 -4358_80786,96,4358_18500,Blanchardstown SC,14052,0,4358_7778195_8534012,4358_665 -4358_80786,205,4358_18501,Blanchardstown SC,7391,0,4358_7778195_8534009,4358_665 -4358_80786,96,4358_18503,Blanchardstown SC,14104,0,4358_7778195_8534016,4358_665 -4358_80786,205,4358_18504,Blanchardstown SC,7448,0,4358_7778195_8534015,4358_665 -4358_80786,96,4358_18505,Blanchardstown SC,14110,0,4358_7778195_8534017,4358_665 -4358_80786,205,4358_18507,Blanchardstown SC,7458,0,4358_7778195_8534016,4358_665 -4358_80786,96,4358_18508,Blanchardstown SC,14124,0,4358_7778195_8534018,4358_665 -4358_80786,205,4358_18509,Blanchardstown SC,7483,0,4358_7778195_8534019,4358_665 -4358_80758,205,4358_1851,Castle Ave,5820,0,4358_7778195_6130004,4358_65 -4358_80786,96,4358_18511,Blanchardstown SC,14058,0,4358_7778195_8534013,4358_665 -4358_80786,205,4358_18512,Blanchardstown SC,7341,0,4358_7778195_8534002,4358_665 -4358_80786,96,4358_18514,Blanchardstown SC,14042,0,4358_7778195_8534011,4358_665 -4358_80786,205,4358_18515,Blanchardstown SC,7367,0,4358_7778195_8534004,4358_665 -4358_80786,96,4358_18517,Blanchardstown SC,13960,0,4358_7778195_8534002,4358_665 -4358_80786,205,4358_18518,Blanchardstown SC,7379,0,4358_7778195_8534006,4358_665 -4358_80786,96,4358_18519,Blanchardstown SC,13985,0,4358_7778195_8534004,4358_665 -4358_80758,205,4358_1852,Castle Ave,5825,0,4358_7778195_6130005,4358_65 -4358_80786,205,4358_18521,Blanchardstown SC,7404,0,4358_7778195_8534010,4358_665 -4358_80786,96,4358_18522,Blanchardstown SC,13995,0,4358_7778195_8534005,4358_665 -4358_80786,205,4358_18524,Blanchardstown SC,7438,0,4358_7778195_8534014,4358_666 -4358_80786,96,4358_18525,Blanchardstown SC,14090,0,4358_7778195_8534015,4358_665 -4358_80786,205,4358_18526,Blanchardstown SC,7414,0,4358_7778195_8534012,4358_665 -4358_80786,96,4358_18528,Blanchardstown SC,14018,0,4358_7778195_8534008,4358_665 -4358_80786,205,4358_18529,Blanchardstown SC,7427,0,4358_7778195_8534013,4358_665 -4358_80758,96,4358_1853,Castle Ave,12807,0,4358_7778195_6130004,4358_65 -4358_80786,96,4358_18531,Blanchardstown SC,14032,0,4358_7778195_8534010,4358_665 -4358_80786,205,4358_18532,Blanchardstown SC,7496,0,4358_7778195_8534020,4358_665 -4358_80786,96,4358_18533,Blanchardstown SC,13951,0,4358_7778195_8534001,4358_665 -4358_80786,205,4358_18535,Blanchardstown SC,7501,0,4358_7778195_8534021,4358_665 -4358_80786,96,4358_18536,Blanchardstown SC,14075,0,4358_7778195_8534014,4358_665 -4358_80786,205,4358_18538,Blanchardstown SC,7466,0,4358_7778195_8534017,4358_666 -4358_80786,96,4358_18539,Blanchardstown SC,13972,0,4358_7778195_8534003,4358_665 -4358_80786,205,4358_18540,Blanchardstown SC,7354,0,4358_7778195_8534003,4358_665 -4358_80786,96,4358_18542,Blanchardstown SC,14004,0,4358_7778195_8534006,4358_665 -4358_80786,205,4358_18543,Blanchardstown SC,7472,0,4358_7778195_8534018,4358_665 -4358_80786,96,4358_18545,Blanchardstown SC,14054,0,4358_7778195_8534012,4358_665 -4358_80786,205,4358_18546,Blanchardstown SC,7913,0,4358_7778195_8534007,4358_665 -4358_80786,96,4358_18547,Blanchardstown SC,14106,0,4358_7778195_8534016,4358_665 -4358_80786,205,4358_18549,Blanchardstown SC,7393,0,4358_7778195_8534009,4358_665 -4358_80758,205,4358_1855,Castle Ave,5670,0,4358_7778195_6130002,4358_65 -4358_80786,96,4358_18550,Blanchardstown SC,14112,0,4358_7778195_8534017,4358_665 -4358_80786,205,4358_18551,Blanchardstown SC,7450,0,4358_7778195_8534015,4358_665 -4358_80786,96,4358_18553,Blanchardstown SC,14126,0,4358_7778195_8534018,4358_665 -4358_80786,205,4358_18554,Blanchardstown SC,7460,0,4358_7778195_8534016,4358_665 -4358_80786,96,4358_18556,Blanchardstown SC,14060,0,4358_7778195_8534013,4358_665 -4358_80786,205,4358_18557,Blanchardstown SC,7485,0,4358_7778195_8534019,4358_665 -4358_80786,96,4358_18559,Blanchardstown SC,14044,0,4358_7778195_8534011,4358_665 -4358_80758,96,4358_1856,Castle Ave,12770,0,4358_7778195_6130003,4358_65 -4358_80786,205,4358_18560,Blanchardstown SC,7343,0,4358_7778195_8534002,4358_665 -4358_80786,96,4358_18561,Blanchardstown SC,13962,0,4358_7778195_8534002,4358_665 -4358_80786,205,4358_18563,Blanchardstown SC,7504,0,4358_7778195_8534022,4358_665 -4358_80786,96,4358_18564,Blanchardstown SC,13987,0,4358_7778195_8534004,4358_665 -4358_80786,205,4358_18566,Blanchardstown SC,7369,0,4358_7778195_8534004,4358_666 -4358_80786,96,4358_18567,Blanchardstown SC,14092,0,4358_7778195_8534015,4358_665 -4358_80786,205,4358_18568,Blanchardstown SC,7381,0,4358_7778195_8534006,4358_665 -4358_80758,205,4358_1857,Castle Ave,5771,0,4358_7778195_6130007,4358_65 -4358_80786,96,4358_18570,Blanchardstown SC,14020,0,4358_7778195_8534008,4358_665 -4358_80786,205,4358_18571,Blanchardstown SC,7514,0,4358_7778195_8534023,4358_665 -4358_80786,96,4358_18572,Blanchardstown SC,14034,0,4358_7778195_8534010,4358_665 -4358_80786,205,4358_18574,Blanchardstown SC,7440,0,4358_7778195_8534014,4358_665 -4358_80786,96,4358_18575,Blanchardstown SC,14077,0,4358_7778195_8534014,4358_665 -4358_80786,205,4358_18576,Blanchardstown SC,7416,0,4358_7778195_8534012,4358_665 -4358_80786,205,4358_18578,Blanchardstown SC,7429,0,4358_7778195_8534013,4358_665 -4358_80786,96,4358_18579,Blanchardstown SC,13974,0,4358_7778195_8534003,4358_666 -4358_80758,96,4358_1858,Castle Ave,12780,0,4358_7778195_6130002,4358_65 -4358_80786,205,4358_18581,Blanchardstown SC,7498,0,4358_7778195_8534020,4358_665 -4358_80786,96,4358_18582,Blanchardstown SC,14108,0,4358_7778195_8534016,4358_665 -4358_80786,205,4358_18583,Blanchardstown SC,7356,0,4358_7778195_8534003,4358_665 -4358_80786,96,4358_18584,Blanchardstown SC,14114,0,4358_7778195_8534017,4358_665 -4358_80786,205,4358_18586,Blanchardstown SC,7474,0,4358_7778195_8534018,4358_665 -4358_80786,96,4358_18587,Blanchardstown SC,14128,0,4358_7778195_8534018,4358_665 -4358_80786,205,4358_18588,Blanchardstown SC,7915,0,4358_7778195_8534007,4358_665 -4358_80786,205,4358_18590,Blanchardstown SC,7395,0,4358_7778195_8534009,4358_665 -4358_80786,96,4358_18591,Blanchardstown SC,14062,0,4358_7778195_8534013,4358_666 -4358_80786,205,4358_18593,Blanchardstown SC,7452,0,4358_7778195_8534015,4358_665 -4358_80786,96,4358_18594,Blanchardstown SC,14046,0,4358_7778195_8534011,4358_665 -4358_80786,205,4358_18595,Blanchardstown SC,7487,0,4358_7778195_8534019,4358_665 -4358_80786,96,4358_18597,Blanchardstown SC,14094,0,4358_7778195_8534015,4358_666 -4358_80786,205,4358_18598,Blanchardstown SC,7345,0,4358_7778195_8534002,4358_665 -4358_80786,96,4358_18599,Blanchardstown SC,14022,0,4358_7778195_8534008,4358_665 -4358_80760,205,4358_186,Shanard Road,1898,1,4358_7778195_9001002,4358_4 -4358_80758,205,4358_1860,Castle Ave,5924,0,4358_7778195_6130008,4358_66 -4358_80786,205,4358_18600,Blanchardstown SC,7506,0,4358_7778195_8534022,4358_665 -4358_80786,96,4358_18602,Blanchardstown SC,14036,0,4358_7778195_8534010,4358_665 -4358_80786,205,4358_18603,Blanchardstown SC,7516,0,4358_7778195_8534023,4358_666 -4358_80786,205,4358_18605,Blanchardstown SC,7442,0,4358_7778195_8534014,4358_665 -4358_80786,96,4358_18606,Blanchardstown SC,14079,0,4358_7778195_8534014,4358_665 -4358_80786,205,4358_18607,Blanchardstown SC,7418,0,4358_7778195_8534012,4358_665 -4358_80786,96,4358_18609,Blanchardstown SC,13976,0,4358_7778195_8534003,4358_666 -4358_80758,96,4358_1861,Castle Ave,12827,0,4358_7778195_6130005,4358_65 -4358_80786,205,4358_18610,Blanchardstown SC,7431,0,4358_7778195_8534013,4358_665 -4358_80786,96,4358_18611,Blanchardstown SC,14116,0,4358_7778195_8534017,4358_665 -4358_80786,205,4358_18612,Blanchardstown SC,7500,0,4358_7778195_8534020,4358_665 -4358_80786,205,4358_18614,Blanchardstown SC,7358,0,4358_7778195_8534003,4358_665 -4358_80786,96,4358_18615,Blanchardstown SC,14130,0,4358_7778195_8534018,4358_666 -4358_80786,205,4358_18617,Blanchardstown SC,7476,0,4358_7778195_8534018,4358_665 -4358_80786,96,4358_18618,Blanchardstown SC,14064,0,4358_7778195_8534013,4358_665 -4358_80786,205,4358_18619,Blanchardstown SC,7397,0,4358_7778195_8534009,4358_665 -4358_80758,205,4358_1862,Castle Ave,5794,0,4358_7778195_6130001,4358_65 -4358_80786,96,4358_18621,Blanchardstown SC,14048,0,4358_7778195_8534011,4358_666 -4358_80786,205,4358_18622,Blanchardstown SC,7489,0,4358_7778195_8534019,4358_665 -4358_80786,96,4358_18623,Blanchardstown SC,14096,0,4358_7778195_8534015,4358_665 -4358_80786,205,4358_18625,Blanchardstown SC,7508,0,4358_7778195_8534022,4358_667 -4358_80786,205,4358_18627,Blanchardstown SC,7420,0,4358_7778195_8534012,4358_666 -4358_80786,96,4358_18628,Blanchardstown SC,14081,0,4358_7778195_8534014,4358_667 -4358_80786,96,4358_18629,Blanchardstown SC,14118,0,4358_7778195_8534017,4358_665 -4358_80758,205,4358_1863,Castle Ave,5858,0,4358_7778195_6130009,4358_65 -4358_80786,205,4358_18631,Blanchardstown SC,7360,0,4358_7778195_8534003,4358_667 -4358_80786,205,4358_18632,Blanchardstown SC,7478,0,4358_7778195_8534018,4358_665 -4358_80786,96,4358_18633,Blanchardstown SC,14066,0,4358_7778195_8534013,4358_666 -4358_80786,96,4358_18635,Blanchardstown SC,14098,0,4358_7778195_8534015,4358_665 -4358_80786,205,4358_18636,Blanchardstown SC,7491,0,4358_7778195_8534019,4358_666 -4358_80786,205,4358_18639,Blanchardstown SC,7510,0,4358_7778195_8534022,4358_666 -4358_80758,96,4358_1864,Castle Ave,12685,0,4358_7778195_6130001,4358_65 -4358_80786,96,4358_18640,Blanchardstown SC,14083,0,4358_7778195_8534014,4358_667 -4358_80786,96,4358_18641,Blanchardstown SC,14120,0,4358_7778195_8534017,4358_665 -4358_80786,205,4358_18642,Blanchardstown SC,7518,0,4358_7778195_8534024,4358_666 -4358_80786,205,4358_18644,Blanchardstown SC,7522,0,4358_7778195_8534025,4358_665 -4358_80786,96,4358_18645,Blanchardstown SC,14068,0,4358_7778195_8534013,4358_666 -4358_80786,96,4358_18647,Blanchardstown SC,14100,0,4358_7778195_8534015,4358_665 -4358_80786,205,4358_18648,Blanchardstown SC,7480,0,4358_7778195_8534018,4358_666 -4358_80786,205,4358_18651,Blanchardstown SC,7493,0,4358_7778195_8534019,4358_666 -4358_80786,96,4358_18652,Blanchardstown SC,14085,0,4358_7778195_8534014,4358_667 -4358_80786,96,4358_18653,Blanchardstown SC,14122,0,4358_7778195_8534017,4358_665 -4358_80786,205,4358_18655,Blanchardstown SC,7512,0,4358_7778195_8534022,4358_667 -4358_80786,96,4358_18656,Blanchardstown SC,14070,0,4358_7778195_8534013,4358_665 -4358_80786,205,4358_18657,Blanchardstown SC,7520,0,4358_7778195_8534024,4358_666 -4358_80786,96,4358_18659,Point Village,13953,1,4358_7778195_8534002,4358_668 -4358_80758,205,4358_1866,Castle Ave,5707,0,4358_7778195_6130003,4358_65 -4358_80786,205,4358_18661,Point Village,7332,1,4358_7778195_8534001,4358_669 -4358_80786,96,4358_18662,Point Village,13978,1,4358_7778195_8534004,4358_668 -4358_80786,205,4358_18663,Point Village,7347,1,4358_7778195_8534003,4358_668 -4358_80786,205,4358_18664,Point Village,7370,1,4358_7778195_8534005,4358_668 -4358_80786,96,4358_18665,Point Village,13988,1,4358_7778195_8534005,4358_668 -4358_80786,205,4358_18667,Point Village,7906,1,4358_7778195_8534007,4358_668 -4358_80786,96,4358_18668,Point Village,14011,1,4358_7778195_8534008,4358_668 -4358_80786,205,4358_18669,Point Village,7386,1,4358_7778195_8534009,4358_668 -4358_80758,96,4358_1867,Castle Ave,12809,0,4358_7778195_6130004,4358_65 -4358_80786,96,4358_18670,Point Village,13944,1,4358_7778195_8534001,4358_668 -4358_80786,205,4358_18672,Point Village,7406,1,4358_7778195_8534011,4358_669 -4358_80786,96,4358_18673,Point Village,13965,1,4358_7778195_8534003,4358_668 -4358_80786,205,4358_18674,Point Village,7336,1,4358_7778195_8534002,4358_668 -4358_80786,205,4358_18675,Point Village,7362,1,4358_7778195_8534004,4358_668 -4358_80786,96,4358_18676,Point Village,13997,1,4358_7778195_8534006,4358_668 -4358_80786,205,4358_18678,Point Village,7374,1,4358_7778195_8534006,4358_668 -4358_80786,96,4358_18679,Point Village,14007,1,4358_7778195_8534007,4358_668 -4358_80758,205,4358_1868,Castle Ave,5940,0,4358_7778195_6130006,4358_65 -4358_80786,205,4358_18680,Point Village,7384,1,4358_7778195_8534008,4358_668 -4358_80786,96,4358_18681,Point Village,14025,1,4358_7778195_8534009,4358_668 -4358_80786,205,4358_18682,Point Village,7399,1,4358_7778195_8534010,4358_668 -4358_80786,96,4358_18684,Point Village,13955,1,4358_7778195_8534002,4358_668 -4358_80786,205,4358_18685,Point Village,7433,1,4358_7778195_8534014,4358_668 -4358_80786,205,4358_18686,Point Village,7409,1,4358_7778195_8534012,4358_668 -4358_80786,96,4358_18687,Point Village,13980,1,4358_7778195_8534004,4358_668 -4358_80786,205,4358_18689,Point Village,7422,1,4358_7778195_8534013,4358_668 -4358_80758,96,4358_1869,Castle Ave,12772,0,4358_7778195_6130003,4358_65 -4358_80786,96,4358_18690,Point Village,13990,1,4358_7778195_8534005,4358_668 -4358_80786,205,4358_18691,Point Village,7334,1,4358_7778195_8534001,4358_668 -4358_80786,96,4358_18693,Point Village,14013,1,4358_7778195_8534008,4358_668 -4358_80786,205,4358_18694,Point Village,7461,1,4358_7778195_8534017,4358_668 -4358_80786,96,4358_18696,Point Village,14027,1,4358_7778195_8534010,4358_669 -4358_80786,205,4358_18697,Point Village,7349,1,4358_7778195_8534003,4358_668 -4358_80786,96,4358_18698,Point Village,13946,1,4358_7778195_8534001,4358_668 -4358_80786,205,4358_18699,Point Village,7467,1,4358_7778195_8534018,4358_668 -4358_80760,96,4358_187,Shanard Road,9381,1,4358_7778195_9001001,4358_4 -4358_80758,205,4358_1870,Castle Ave,5827,0,4358_7778195_6130005,4358_65 -4358_80786,96,4358_18701,Point Village,13967,1,4358_7778195_8534003,4358_668 -4358_80786,205,4358_18702,Point Village,7372,1,4358_7778195_8534005,4358_668 -4358_80786,96,4358_18703,Point Village,13999,1,4358_7778195_8534006,4358_668 -4358_80786,205,4358_18704,Point Village,7908,1,4358_7778195_8534007,4358_668 -4358_80786,96,4358_18706,Point Village,14049,1,4358_7778195_8534012,4358_668 -4358_80786,205,4358_18707,Point Village,7388,1,4358_7778195_8534009,4358_668 -4358_80786,96,4358_18708,Point Village,14009,1,4358_7778195_8534007,4358_668 -4358_80786,205,4358_18710,Point Village,7445,1,4358_7778195_8534015,4358_668 -4358_80786,96,4358_18711,Point Village,14055,1,4358_7778195_8534013,4358_668 -4358_80786,205,4358_18712,Point Village,7455,1,4358_7778195_8534016,4358_668 -4358_80786,96,4358_18714,Point Village,14039,1,4358_7778195_8534011,4358_668 -4358_80786,205,4358_18715,Point Village,7338,1,4358_7778195_8534002,4358_668 -4358_80786,96,4358_18716,Point Village,13957,1,4358_7778195_8534002,4358_668 -4358_80786,205,4358_18718,Point Village,7364,1,4358_7778195_8534004,4358_668 -4358_80786,96,4358_18719,Point Village,13982,1,4358_7778195_8534004,4358_668 -4358_80758,96,4358_1872,Castle Ave,12782,0,4358_7778195_6130002,4358_65 -4358_80786,205,4358_18721,Point Village,7376,1,4358_7778195_8534006,4358_669 -4358_80786,96,4358_18722,Point Village,13992,1,4358_7778195_8534005,4358_668 -4358_80786,205,4358_18723,Point Village,7401,1,4358_7778195_8534010,4358_668 -4358_80786,96,4358_18725,Point Village,14087,1,4358_7778195_8534015,4358_668 -4358_80786,205,4358_18726,Point Village,7435,1,4358_7778195_8534014,4358_668 -4358_80786,96,4358_18728,Point Village,14015,1,4358_7778195_8534008,4358_668 -4358_80786,205,4358_18729,Point Village,7411,1,4358_7778195_8534012,4358_668 -4358_80758,205,4358_1873,Castle Ave,5672,0,4358_7778195_6130002,4358_65 -4358_80786,96,4358_18730,Point Village,14029,1,4358_7778195_8534010,4358_668 -4358_80786,205,4358_18732,Point Village,7424,1,4358_7778195_8534013,4358_668 -4358_80786,96,4358_18733,Point Village,13948,1,4358_7778195_8534001,4358_668 -4358_80786,205,4358_18734,Point Village,7463,1,4358_7778195_8534017,4358_668 -4358_80786,96,4358_18736,Point Village,14072,1,4358_7778195_8534014,4358_668 -4358_80786,205,4358_18737,Point Village,7351,1,4358_7778195_8534003,4358_668 -4358_80786,96,4358_18739,Point Village,13969,1,4358_7778195_8534003,4358_668 -4358_80758,205,4358_1874,Castle Ave,5773,0,4358_7778195_6130007,4358_65 -4358_80786,205,4358_18740,Point Village,7469,1,4358_7778195_8534018,4358_668 -4358_80786,96,4358_18742,Point Village,14001,1,4358_7778195_8534006,4358_668 -4358_80786,205,4358_18743,Point Village,7910,1,4358_7778195_8534007,4358_668 -4358_80786,96,4358_18744,Point Village,14051,1,4358_7778195_8534012,4358_668 -4358_80786,205,4358_18746,Point Village,7390,1,4358_7778195_8534009,4358_668 -4358_80786,96,4358_18747,Point Village,14103,1,4358_7778195_8534016,4358_668 -4358_80786,205,4358_18748,Point Village,7447,1,4358_7778195_8534015,4358_668 -4358_80758,96,4358_1875,Castle Ave,12829,0,4358_7778195_6130005,4358_65 -4358_80786,96,4358_18750,Point Village,14109,1,4358_7778195_8534017,4358_668 -4358_80786,205,4358_18751,Point Village,7457,1,4358_7778195_8534016,4358_668 -4358_80786,96,4358_18753,Point Village,14123,1,4358_7778195_8534018,4358_668 -4358_80786,205,4358_18754,Point Village,7482,1,4358_7778195_8534019,4358_668 -4358_80786,96,4358_18756,Point Village,14057,1,4358_7778195_8534013,4358_668 -4358_80786,205,4358_18757,Point Village,7340,1,4358_7778195_8534002,4358_668 -4358_80786,96,4358_18758,Point Village,14041,1,4358_7778195_8534011,4358_668 -4358_80786,205,4358_18760,Point Village,7366,1,4358_7778195_8534004,4358_668 -4358_80786,96,4358_18761,Point Village,13959,1,4358_7778195_8534002,4358_668 -4358_80786,205,4358_18763,Point Village,7378,1,4358_7778195_8534006,4358_669 -4358_80786,96,4358_18764,Point Village,13984,1,4358_7778195_8534004,4358_668 -4358_80786,205,4358_18765,Point Village,7403,1,4358_7778195_8534010,4358_668 -4358_80786,96,4358_18767,Point Village,13994,1,4358_7778195_8534005,4358_668 -4358_80786,205,4358_18768,Point Village,7437,1,4358_7778195_8534014,4358_668 -4358_80758,205,4358_1877,Castle Ave,5926,0,4358_7778195_6130008,4358_65 -4358_80786,96,4358_18770,Point Village,14089,1,4358_7778195_8534015,4358_668 -4358_80786,205,4358_18771,Point Village,7413,1,4358_7778195_8534012,4358_668 -4358_80786,96,4358_18772,Point Village,14017,1,4358_7778195_8534008,4358_668 -4358_80786,205,4358_18774,Point Village,7426,1,4358_7778195_8534013,4358_668 -4358_80786,96,4358_18775,Point Village,14031,1,4358_7778195_8534010,4358_668 -4358_80786,205,4358_18776,Point Village,7495,1,4358_7778195_8534020,4358_668 -4358_80786,96,4358_18778,Point Village,13950,1,4358_7778195_8534001,4358_668 -4358_80786,205,4358_18779,Point Village,7465,1,4358_7778195_8534017,4358_668 -4358_80758,96,4358_1878,Castle Ave,12721,0,4358_7778195_6130006,4358_65 -4358_80786,96,4358_18781,Point Village,14074,1,4358_7778195_8534014,4358_668 -4358_80786,205,4358_18782,Point Village,7353,1,4358_7778195_8534003,4358_668 -4358_80786,96,4358_18784,Point Village,13971,1,4358_7778195_8534003,4358_668 -4358_80786,205,4358_18785,Point Village,7471,1,4358_7778195_8534018,4358_668 -4358_80786,96,4358_18786,Point Village,14003,1,4358_7778195_8534006,4358_668 -4358_80786,205,4358_18788,Point Village,7912,1,4358_7778195_8534007,4358_668 -4358_80786,96,4358_18789,Point Village,14053,1,4358_7778195_8534012,4358_668 -4358_80758,205,4358_1879,Castle Ave,5796,0,4358_7778195_6130001,4358_65 -4358_80786,205,4358_18790,Point Village,7392,1,4358_7778195_8534009,4358_668 -4358_80786,96,4358_18792,Point Village,14105,1,4358_7778195_8534016,4358_668 -4358_80786,205,4358_18793,Point Village,7449,1,4358_7778195_8534015,4358_668 -4358_80786,96,4358_18795,Point Village,14111,1,4358_7778195_8534017,4358_668 -4358_80786,205,4358_18796,Point Village,7459,1,4358_7778195_8534016,4358_668 -4358_80786,96,4358_18798,Point Village,14125,1,4358_7778195_8534018,4358_668 -4358_80786,205,4358_18799,Point Village,7484,1,4358_7778195_8534019,4358_668 -4358_80760,205,4358_188,Shanard Road,3136,1,4358_7778195_9001004,4358_4 -4358_80786,96,4358_18800,Point Village,14059,1,4358_7778195_8534013,4358_668 -4358_80786,205,4358_18802,Point Village,7342,1,4358_7778195_8534002,4358_668 -4358_80786,96,4358_18803,Point Village,14043,1,4358_7778195_8534011,4358_668 -4358_80786,205,4358_18805,Point Village,7503,1,4358_7778195_8534022,4358_669 -4358_80786,96,4358_18806,Point Village,13961,1,4358_7778195_8534002,4358_668 -4358_80786,205,4358_18807,Point Village,7368,1,4358_7778195_8534004,4358_668 -4358_80786,96,4358_18809,Point Village,13986,1,4358_7778195_8534004,4358_668 -4358_80758,96,4358_1881,Castle Ave,12687,0,4358_7778195_6130001,4358_65 -4358_80786,205,4358_18810,Point Village,7380,1,4358_7778195_8534006,4358_668 -4358_80786,96,4358_18812,Point Village,14091,1,4358_7778195_8534015,4358_668 -4358_80786,205,4358_18813,Point Village,7513,1,4358_7778195_8534023,4358_668 -4358_80786,96,4358_18814,Point Village,14019,1,4358_7778195_8534008,4358_668 -4358_80786,205,4358_18816,Point Village,7405,1,4358_7778195_8534010,4358_668 -4358_80786,96,4358_18817,Point Village,14033,1,4358_7778195_8534010,4358_668 -4358_80786,205,4358_18819,Point Village,7439,1,4358_7778195_8534014,4358_669 -4358_80758,205,4358_1882,Castle Ave,5860,0,4358_7778195_6130009,4358_65 -4358_80786,96,4358_18820,Point Village,13952,1,4358_7778195_8534001,4358_668 -4358_80786,205,4358_18821,Point Village,7415,1,4358_7778195_8534012,4358_668 -4358_80786,96,4358_18823,Point Village,14076,1,4358_7778195_8534014,4358_668 -4358_80786,205,4358_18824,Point Village,7428,1,4358_7778195_8534013,4358_668 -4358_80786,96,4358_18826,Point Village,13973,1,4358_7778195_8534003,4358_668 -4358_80786,205,4358_18827,Point Village,7497,1,4358_7778195_8534020,4358_668 -4358_80786,96,4358_18828,Point Village,14005,1,4358_7778195_8534006,4358_668 -4358_80758,96,4358_1883,Castle Ave,12739,0,4358_7778195_6130007,4358_65 -4358_80786,205,4358_18830,Point Village,7502,1,4358_7778195_8534021,4358_668 -4358_80786,96,4358_18831,Point Village,14107,1,4358_7778195_8534016,4358_668 -4358_80786,205,4358_18833,Point Village,7355,1,4358_7778195_8534003,4358_669 -4358_80786,96,4358_18834,Point Village,14113,1,4358_7778195_8534017,4358_668 -4358_80786,205,4358_18835,Point Village,7473,1,4358_7778195_8534018,4358_668 -4358_80786,96,4358_18837,Point Village,14127,1,4358_7778195_8534018,4358_668 -4358_80786,205,4358_18838,Point Village,7914,1,4358_7778195_8534007,4358_668 -4358_80786,96,4358_18840,Point Village,14061,1,4358_7778195_8534013,4358_668 -4358_80786,205,4358_18841,Point Village,7394,1,4358_7778195_8534009,4358_668 -4358_80786,205,4358_18842,Point Village,7451,1,4358_7778195_8534015,4358_668 -4358_80786,96,4358_18844,Point Village,14045,1,4358_7778195_8534011,4358_669 -4358_80786,205,4358_18845,Point Village,7486,1,4358_7778195_8534019,4358_668 -4358_80786,96,4358_18846,Point Village,13963,1,4358_7778195_8534002,4358_668 -4358_80786,205,4358_18848,Point Village,7344,1,4358_7778195_8534002,4358_668 -4358_80786,96,4358_18849,Point Village,14093,1,4358_7778195_8534015,4358_668 -4358_80758,205,4358_1885,Castle Ave,5709,0,4358_7778195_6130003,4358_65 -4358_80786,205,4358_18850,Point Village,7505,1,4358_7778195_8534022,4358_668 -4358_80786,96,4358_18852,Point Village,14021,1,4358_7778195_8534008,4358_668 -4358_80786,205,4358_18853,Point Village,7382,1,4358_7778195_8534006,4358_668 -4358_80786,205,4358_18854,Point Village,7515,1,4358_7778195_8534023,4358_668 -4358_80786,96,4358_18855,Point Village,14035,1,4358_7778195_8534010,4358_668 -4358_80786,205,4358_18857,Point Village,7441,1,4358_7778195_8534014,4358_668 -4358_80786,96,4358_18858,Point Village,14078,1,4358_7778195_8534014,4358_668 -4358_80758,205,4358_1886,Castle Ave,5942,0,4358_7778195_6130006,4358_65 -4358_80786,205,4358_18860,Point Village,7417,1,4358_7778195_8534012,4358_668 -4358_80786,96,4358_18861,Point Village,13975,1,4358_7778195_8534003,4358_668 -4358_80786,205,4358_18862,Point Village,7430,1,4358_7778195_8534013,4358_668 -4358_80786,96,4358_18864,Point Village,14115,1,4358_7778195_8534017,4358_668 -4358_80786,205,4358_18865,Point Village,7499,1,4358_7778195_8534020,4358_668 -4358_80786,205,4358_18866,Point Village,7357,1,4358_7778195_8534003,4358_668 -4358_80786,96,4358_18868,Point Village,14129,1,4358_7778195_8534018,4358_669 -4358_80786,205,4358_18869,Point Village,7475,1,4358_7778195_8534018,4358_668 -4358_80758,96,4358_1887,Castle Ave,12811,0,4358_7778195_6130004,4358_65 -4358_80786,96,4358_18870,Point Village,14063,1,4358_7778195_8534013,4358_668 -4358_80786,205,4358_18872,Point Village,7396,1,4358_7778195_8534009,4358_668 -4358_80786,96,4358_18873,Point Village,14047,1,4358_7778195_8534011,4358_668 -4358_80786,205,4358_18874,Point Village,7453,1,4358_7778195_8534015,4358_668 -4358_80786,96,4358_18876,Point Village,14095,1,4358_7778195_8534015,4358_668 -4358_80786,205,4358_18877,Point Village,7488,1,4358_7778195_8534019,4358_668 -4358_80786,205,4358_18878,Point Village,7346,1,4358_7778195_8534002,4358_668 -4358_80786,96,4358_18880,Point Village,14023,1,4358_7778195_8534008,4358_669 -4358_80786,205,4358_18881,Point Village,7507,1,4358_7778195_8534022,4358_668 -4358_80786,96,4358_18882,Point Village,14037,1,4358_7778195_8534010,4358_668 -4358_80786,205,4358_18884,Point Village,7443,1,4358_7778195_8534014,4358_668 -4358_80786,96,4358_18885,Point Village,14080,1,4358_7778195_8534014,4358_668 -4358_80786,205,4358_18886,Point Village,7419,1,4358_7778195_8534012,4358_668 -4358_80786,96,4358_18888,Point Village,13977,1,4358_7778195_8534003,4358_668 -4358_80786,205,4358_18889,Point Village,7432,1,4358_7778195_8534013,4358_668 -4358_80758,205,4358_1889,Castle Ave,5829,0,4358_7778195_6130005,4358_65 -4358_80786,96,4358_18890,Point Village,14117,1,4358_7778195_8534017,4358_668 -4358_80786,205,4358_18892,Point Village,7359,1,4358_7778195_8534003,4358_669 -4358_80786,205,4358_18893,Point Village,7477,1,4358_7778195_8534018,4358_668 -4358_80786,96,4358_18894,Point Village,14065,1,4358_7778195_8534013,4358_669 -4358_80786,96,4358_18896,Point Village,14097,1,4358_7778195_8534015,4358_668 -4358_80786,205,4358_18897,Point Village,7490,1,4358_7778195_8534019,4358_669 -4358_80760,205,4358_189,Shanard Road,1842,1,4358_7778195_9001006,4358_4 -4358_80758,96,4358_1890,Castle Ave,12774,0,4358_7778195_6130003,4358_65 -4358_80786,205,4358_18900,Point Village,7509,1,4358_7778195_8534022,4358_669 -4358_80786,96,4358_18901,Point Village,14082,1,4358_7778195_8534014,4358_670 -4358_80786,96,4358_18902,Point Village,14119,1,4358_7778195_8534017,4358_668 -4358_80786,205,4358_18903,Point Village,7517,1,4358_7778195_8534024,4358_669 -4358_80786,205,4358_18905,Point Village,7521,1,4358_7778195_8534025,4358_668 -4358_80786,96,4358_18906,Point Village,14067,1,4358_7778195_8534013,4358_669 -4358_80786,96,4358_18908,Point Village,14099,1,4358_7778195_8534015,4358_668 -4358_80786,205,4358_18909,Point Village,7479,1,4358_7778195_8534018,4358_669 -4358_80758,205,4358_1891,Castle Ave,5674,0,4358_7778195_6130002,4358_65 -4358_80786,205,4358_18912,Point Village,7492,1,4358_7778195_8534019,4358_669 -4358_80786,96,4358_18913,Point Village,14084,1,4358_7778195_8534014,4358_670 -4358_80786,96,4358_18914,Point Village,14121,1,4358_7778195_8534017,4358_668 -4358_80786,205,4358_18916,Point Village,7511,1,4358_7778195_8534022,4358_670 -4358_80786,96,4358_18917,Point Village,14069,1,4358_7778195_8534013,4358_668 -4358_80786,205,4358_18918,Point Village,7519,1,4358_7778195_8534024,4358_669 -4358_80786,205,4358_18920,Point Village,7523,1,4358_7778195_8534025,4358_668 -4358_80786,96,4358_18921,Point Village,14101,1,4358_7778195_8534015,4358_669 -4358_80786,205,4358_18924,Point Village,7481,1,4358_7778195_8534018,4358_669 -4358_80786,96,4358_18925,Point Village,14086,1,4358_7778195_8534014,4358_670 -4358_80767,205,4358_18926,Adamstown Station,7850,0,4358_7778195_8818233,4358_671 -4358_80767,205,4358_18927,Adamstown Station,5980,0,4358_7778195_6826216,4358_671 -4358_80767,205,4358_18928,Adamstown Station,6442,0,4358_7778195_7229568,4358_671 -4358_80767,205,4358_18929,Adamstown Station,7862,0,4358_7778195_8828204,4358_671 -4358_80758,96,4358_1893,Castle Ave,12784,0,4358_7778195_6130002,4358_65 -4358_80767,205,4358_18930,Ringsend Road,7851,1,4358_7778195_8818133,4358_672 -4358_80767,205,4358_18931,Ringsend Road,7852,1,4358_7778195_8818134,4358_672 -4358_80767,205,4358_18932,Ringsend Road,5978,1,4358_7778195_6826116,4358_672 -4358_80767,205,4358_18933,Ringsend Road,6459,1,4358_7778195_7229562,4358_672 -4358_80787,205,4358_18934,Irishtown,5050,0,4358_7778195_4582003,4358_673 -4358_80787,96,4358_18935,Irishtown,12179,0,4358_7778195_4582003,4358_673 -4358_80787,205,4358_18936,Irishtown,4860,0,4358_7778195_4582006,4358_674 -4358_80787,205,4358_18937,Irishtown,4872,0,4358_7778195_4582007,4358_673 -4358_80787,96,4358_18938,Irishtown,12192,0,4358_7778195_4582005,4358_673 -4358_80787,205,4358_18939,Irishtown,5150,0,4358_7778195_4582010,4358_673 -4358_80758,205,4358_1894,Castle Ave,5775,0,4358_7778195_6130007,4358_65 -4358_80787,96,4358_18940,Irishtown,12163,0,4358_7778195_4582006,4358_673 -4358_80787,205,4358_18941,Irishtown,4971,0,4358_7778195_4582001,4358_673 -4358_80787,96,4358_18942,Irishtown,12187,0,4358_7778195_4582001,4358_673 -4358_80787,205,4358_18943,Irishtown,5109,0,4358_7778195_4582002,4358_674 -4358_80787,205,4358_18944,Irishtown,5127,0,4358_7778195_4582004,4358_673 -4358_80787,96,4358_18945,Irishtown,12130,0,4358_7778195_4582002,4358_673 -4358_80787,205,4358_18946,Irishtown,5161,0,4358_7778195_4582011,4358_673 -4358_80787,96,4358_18948,Irishtown,11999,0,4358_7778195_4582004,4358_673 -4358_80787,205,4358_18949,Irishtown,5018,0,4358_7778195_4582005,4358_673 -4358_80787,96,4358_18951,Irishtown,12084,0,4358_7778195_4582007,4358_674 -4358_80787,205,4358_18952,Irishtown,5052,0,4358_7778195_4582003,4358_675 -4358_80787,205,4358_18953,Irishtown,5138,0,4358_7778195_4582008,4358_673 -4358_80787,96,4358_18954,Irishtown,12194,0,4358_7778195_4582005,4358_673 -4358_80787,205,4358_18955,Irishtown,5098,0,4358_7778195_4582009,4358_673 -4358_80787,96,4358_18957,Irishtown,12165,0,4358_7778195_4582006,4358_673 -4358_80787,205,4358_18958,Irishtown,4862,0,4358_7778195_4582006,4358_673 -4358_80758,96,4358_1896,Castle Ave,12831,0,4358_7778195_6130005,4358_66 -4358_80787,205,4358_18960,Irishtown,4874,0,4358_7778195_4582007,4358_674 -4358_80787,96,4358_18961,Irishtown,12226,0,4358_7778195_4582009,4358_675 -4358_80787,96,4358_18962,Irishtown,12189,0,4358_7778195_4582001,4358_673 -4358_80787,205,4358_18963,Irishtown,5152,0,4358_7778195_4582010,4358_674 -4358_80787,205,4358_18965,Irishtown,4973,0,4358_7778195_4582001,4358_674 -4358_80787,96,4358_18966,Irishtown,12132,0,4358_7778195_4582002,4358_675 -4358_80787,205,4358_18967,Irishtown,5175,0,4358_7778195_4582012,4358_673 -4358_80787,96,4358_18968,Irishtown,12001,0,4358_7778195_4582004,4358_674 -4358_80787,96,4358_18969,Irishtown,12086,0,4358_7778195_4582007,4358_673 -4358_80758,205,4358_1897,Castle Ave,5928,0,4358_7778195_6130008,4358_65 -4358_80787,205,4358_18971,Irishtown,5111,0,4358_7778195_4582002,4358_675 -4358_80787,205,4358_18972,Irishtown,5129,0,4358_7778195_4582004,4358_673 -4358_80787,96,4358_18973,Irishtown,12204,0,4358_7778195_4582008,4358_674 -4358_80787,205,4358_18975,Irishtown,5020,0,4358_7778195_4582013,4358_673 -4358_80787,96,4358_18976,Irishtown,12196,0,4358_7778195_4582005,4358_674 -4358_80787,205,4358_18978,Irishtown,5163,0,4358_7778195_4582011,4358_673 -4358_80787,96,4358_18979,Irishtown,12167,0,4358_7778195_4582006,4358_674 -4358_80758,205,4358_1898,Castle Ave,5798,0,4358_7778195_6130001,4358_65 -4358_80787,96,4358_18981,Irishtown,12105,0,4358_7778195_4582010,4358_674 -4358_80787,205,4358_18982,Irishtown,5054,0,4358_7778195_4582003,4358_675 -4358_80787,205,4358_18983,Irishtown,5140,0,4358_7778195_4582008,4358_673 -4358_80787,96,4358_18984,Irishtown,12228,0,4358_7778195_4582009,4358_674 -4358_80787,96,4358_18986,Irishtown,12191,0,4358_7778195_4582001,4358_673 -4358_80787,205,4358_18987,Irishtown,5100,0,4358_7778195_4582009,4358_674 -4358_80787,205,4358_18989,Irishtown,4864,0,4358_7778195_4582006,4358_673 -4358_80758,96,4358_1899,Castle Ave,12723,0,4358_7778195_6130006,4358_65 -4358_80787,96,4358_18990,Irishtown,12134,0,4358_7778195_4582002,4358_674 -4358_80787,96,4358_18991,Irishtown,12216,0,4358_7778195_4582011,4358_673 -4358_80787,205,4358_18992,Irishtown,5154,0,4358_7778195_4582010,4358_674 -4358_80787,96,4358_18994,Irishtown,12003,0,4358_7778195_4582004,4358_673 -4358_80787,205,4358_18995,Irishtown,4975,0,4358_7778195_4582001,4358_674 -4358_80787,205,4358_18997,Irishtown,5177,0,4358_7778195_4582012,4358_673 -4358_80787,96,4358_18998,Irishtown,12088,0,4358_7778195_4582007,4358_674 -4358_80760,205,4358_19,Shaw street,1860,0,4358_7778195_9001007,4358_1 -4358_80760,205,4358_190,Shanard Road,1862,1,4358_7778195_9001009,4358_4 -4358_80787,205,4358_19000,Irishtown,5185,0,4358_7778195_4582014,4358_673 -4358_80787,96,4358_19001,Irishtown,12206,0,4358_7778195_4582008,4358_674 -4358_80787,205,4358_19002,Irishtown,5131,0,4358_7778195_4582004,4358_673 -4358_80787,96,4358_19004,Irishtown,12198,0,4358_7778195_4582005,4358_675 -4358_80787,205,4358_19005,Irishtown,5022,0,4358_7778195_4582013,4358_673 -4358_80787,96,4358_19006,Irishtown,12169,0,4358_7778195_4582006,4358_674 -4358_80787,205,4358_19008,Irishtown,5165,0,4358_7778195_4582011,4358_673 -4358_80787,96,4358_19009,Irishtown,12107,0,4358_7778195_4582010,4358_674 -4358_80758,205,4358_1901,Castle Ave,5862,0,4358_7778195_6130009,4358_65 -4358_80787,96,4358_19011,Irishtown,12230,0,4358_7778195_4582009,4358_673 -4358_80787,205,4358_19012,Irishtown,5056,0,4358_7778195_4582003,4358_674 -4358_80787,205,4358_19014,Irishtown,5142,0,4358_7778195_4582008,4358_674 -4358_80787,96,4358_19015,Irishtown,11939,0,4358_7778195_4582012,4358_675 -4358_80787,205,4358_19016,Irishtown,4866,0,4358_7778195_4582006,4358_673 -4358_80787,96,4358_19017,Irishtown,12136,0,4358_7778195_4582002,4358_674 -4358_80787,96,4358_19019,Irishtown,12218,0,4358_7778195_4582011,4358_673 -4358_80758,96,4358_1902,Castle Ave,12689,0,4358_7778195_6130001,4358_65 -4358_80787,205,4358_19020,Irishtown,5156,0,4358_7778195_4582010,4358_674 -4358_80787,96,4358_19022,Irishtown,12005,0,4358_7778195_4582004,4358_673 -4358_80787,205,4358_19023,Irishtown,4977,0,4358_7778195_4582001,4358_674 -4358_80787,96,4358_19024,Irishtown,12090,0,4358_7778195_4582007,4358_673 -4358_80787,205,4358_19025,Irishtown,5190,0,4358_7778195_4582015,4358_674 -4358_80787,205,4358_19027,Irishtown,5179,0,4358_7778195_4582012,4358_673 -4358_80787,96,4358_19028,Irishtown,12208,0,4358_7778195_4582008,4358_674 -4358_80758,205,4358_1903,Castle Ave,5711,0,4358_7778195_6130003,4358_65 -4358_80787,205,4358_19030,Irishtown,5187,0,4358_7778195_4582014,4358_673 -4358_80787,96,4358_19031,Irishtown,12200,0,4358_7778195_4582005,4358_674 -4358_80787,205,4358_19033,Irishtown,5133,0,4358_7778195_4582004,4358_673 -4358_80787,96,4358_19034,Irishtown,12171,0,4358_7778195_4582006,4358_674 -4358_80787,205,4358_19036,Irishtown,5024,0,4358_7778195_4582013,4358_674 -4358_80787,96,4358_19037,Irishtown,12109,0,4358_7778195_4582010,4358_675 -4358_80787,205,4358_19038,Irishtown,5167,0,4358_7778195_4582011,4358_673 -4358_80787,96,4358_19039,Irishtown,12232,0,4358_7778195_4582009,4358_674 -4358_80787,205,4358_19041,Irishtown,5058,0,4358_7778195_4582003,4358_673 -4358_80787,96,4358_19042,Irishtown,11941,0,4358_7778195_4582012,4358_674 -4358_80787,205,4358_19044,Irishtown,5144,0,4358_7778195_4582008,4358_673 -4358_80787,96,4358_19045,Irishtown,12138,0,4358_7778195_4582002,4358_674 -4358_80787,96,4358_19046,Irishtown,12220,0,4358_7778195_4582011,4358_673 -4358_80787,205,4358_19047,Irishtown,5198,0,4358_7778195_4582016,4358_674 -4358_80787,205,4358_19049,Irishtown,4868,0,4358_7778195_4582006,4358_673 -4358_80758,96,4358_1905,Castle Ave,12741,0,4358_7778195_6130007,4358_65 -4358_80787,96,4358_19050,Irishtown,12007,0,4358_7778195_4582004,4358_674 -4358_80787,96,4358_19052,Irishtown,12092,0,4358_7778195_4582007,4358_673 -4358_80787,205,4358_19053,Irishtown,5200,0,4358_7778195_4582017,4358_674 -4358_80787,205,4358_19055,Irishtown,5158,0,4358_7778195_4582010,4358_673 -4358_80787,96,4358_19056,Irishtown,12210,0,4358_7778195_4582008,4358_674 -4358_80787,96,4358_19057,Irishtown,12202,0,4358_7778195_4582005,4358_673 -4358_80787,205,4358_19058,Irishtown,4979,0,4358_7778195_4582001,4358_674 -4358_80758,205,4358_1906,Castle Ave,5944,0,4358_7778195_6130006,4358_65 -4358_80787,96,4358_19060,Irishtown,12173,0,4358_7778195_4582006,4358_673 -4358_80787,205,4358_19061,Irishtown,5192,0,4358_7778195_4582015,4358_674 -4358_80787,205,4358_19063,Irishtown,5181,0,4358_7778195_4582012,4358_673 -4358_80787,96,4358_19064,Irishtown,12111,0,4358_7778195_4582010,4358_674 -4358_80787,205,4358_19066,Irishtown,5189,0,4358_7778195_4582014,4358_673 -4358_80787,96,4358_19067,Irishtown,12234,0,4358_7778195_4582009,4358_674 -4358_80787,205,4358_19068,Irishtown,5135,0,4358_7778195_4582004,4358_673 -4358_80758,96,4358_1907,Castle Ave,12813,0,4358_7778195_6130004,4358_65 -4358_80787,96,4358_19070,Irishtown,11943,0,4358_7778195_4582012,4358_675 -4358_80787,205,4358_19071,Irishtown,5169,0,4358_7778195_4582011,4358_673 -4358_80787,96,4358_19072,Irishtown,12222,0,4358_7778195_4582011,4358_673 -4358_80787,205,4358_19074,Irishtown,5060,0,4358_7778195_4582003,4358_674 -4358_80787,96,4358_19075,Irishtown,12009,0,4358_7778195_4582004,4358_673 -4358_80787,205,4358_19076,Irishtown,5146,0,4358_7778195_4582008,4358_673 -4358_80787,205,4358_19078,Irishtown,4870,0,4358_7778195_4582006,4358_674 -4358_80787,96,4358_19079,Irishtown,12212,0,4358_7778195_4582008,4358_675 -4358_80787,205,4358_19080,Irishtown,5202,0,4358_7778195_4582017,4358_673 -4358_80787,96,4358_19081,Irishtown,12175,0,4358_7778195_4582006,4358_673 -4358_80787,205,4358_19082,Irishtown,5160,0,4358_7778195_4582010,4358_673 -4358_80787,96,4358_19084,Irishtown,12113,0,4358_7778195_4582010,4358_673 -4358_80787,205,4358_19085,Irishtown,4981,0,4358_7778195_4582001,4358_673 -4358_80787,96,4358_19087,Irishtown,12236,0,4358_7778195_4582009,4358_674 -4358_80787,205,4358_19088,Irishtown,5194,0,4358_7778195_4582015,4358_675 -4358_80787,205,4358_19089,Irishtown,5183,0,4358_7778195_4582012,4358_673 -4358_80758,205,4358_1909,Castle Ave,5831,0,4358_7778195_6130005,4358_65 -4358_80787,96,4358_19090,Irishtown,11945,0,4358_7778195_4582012,4358_673 -4358_80787,205,4358_19091,Irishtown,5171,0,4358_7778195_4582011,4358_673 -4358_80787,96,4358_19093,Irishtown,12224,0,4358_7778195_4582011,4358_673 -4358_80787,205,4358_19094,Irishtown,5062,0,4358_7778195_4582003,4358_673 -4358_80787,96,4358_19095,Irishtown,12214,0,4358_7778195_4582008,4358_673 -4358_80787,205,4358_19096,Irishtown,5148,0,4358_7778195_4582008,4358_674 -4358_80787,205,4358_19098,Irishtown,5206,0,4358_7778195_4582018,4358_673 -4358_80787,96,4358_19099,Irishtown,12177,0,4358_7778195_4582006,4358_673 -4358_80760,96,4358_191,Shanard Road,9451,1,4358_7778195_9001003,4358_4 -4358_80758,96,4358_1910,Castle Ave,12776,0,4358_7778195_6130003,4358_65 -4358_80787,205,4358_19101,Irishtown,5204,0,4358_7778195_4582017,4358_674 -4358_80787,96,4358_19102,Irishtown,12115,0,4358_7778195_4582010,4358_673 -4358_80787,205,4358_19103,Irishtown,4983,0,4358_7778195_4582001,4358_673 -4358_80787,96,4358_19104,Irishtown,12238,0,4358_7778195_4582009,4358_673 -4358_80787,205,4358_19106,Irishtown,5196,0,4358_7778195_4582015,4358_675 -4358_80787,205,4358_19107,Irishtown,5173,0,4358_7778195_4582011,4358_673 -4358_80787,96,4358_19109,Irishtown,11947,0,4358_7778195_4582012,4358_675 -4358_80758,205,4358_1911,Castle Ave,5676,0,4358_7778195_6130002,4358_65 -4358_80787,205,4358_19110,Heuston Station,4970,1,4358_7778195_4582001,4358_676 -4358_80787,205,4358_19111,Heuston Station,5108,1,4358_7778195_4582002,4358_676 -4358_80787,96,4358_19112,Heuston Station,12186,1,4358_7778195_4582001,4358_676 -4358_80787,205,4358_19113,Heuston Station,5126,1,4358_7778195_4582004,4358_676 -4358_80787,96,4358_19114,Heuston Station,12129,1,4358_7778195_4582002,4358_676 -4358_80787,205,4358_19115,Heuston Station,5017,1,4358_7778195_4582005,4358_677 -4358_80787,205,4358_19116,Heuston Station,5051,1,4358_7778195_4582003,4358_676 -4358_80787,96,4358_19117,Heuston Station,11998,1,4358_7778195_4582004,4358_676 -4358_80787,205,4358_19118,Heuston Station,5137,1,4358_7778195_4582008,4358_676 -4358_80787,96,4358_19119,Heuston Station,12180,1,4358_7778195_4582003,4358_676 -4358_80787,205,4358_19120,Heuston Station,5097,1,4358_7778195_4582009,4358_676 -4358_80787,96,4358_19121,Heuston Station,12193,1,4358_7778195_4582005,4358_676 -4358_80787,205,4358_19122,Heuston Station,4861,1,4358_7778195_4582006,4358_677 -4358_80787,205,4358_19124,Heuston Station,4873,1,4358_7778195_4582007,4358_676 -4358_80787,96,4358_19125,Heuston Station,12164,1,4358_7778195_4582006,4358_676 -4358_80787,205,4358_19126,Heuston Station,5151,1,4358_7778195_4582010,4358_676 -4358_80787,96,4358_19128,Heuston Station,12188,1,4358_7778195_4582001,4358_676 -4358_80787,205,4358_19129,Heuston Station,4972,1,4358_7778195_4582001,4358_676 -4358_80758,96,4358_1913,Castle Ave,12818,0,4358_7778195_6130009,4358_66 -4358_80787,205,4358_19130,Heuston Station,5174,1,4358_7778195_4582012,4358_676 -4358_80787,96,4358_19131,Heuston Station,12131,1,4358_7778195_4582002,4358_677 -4358_80787,205,4358_19133,Heuston Station,5110,1,4358_7778195_4582002,4358_676 -4358_80787,96,4358_19134,Heuston Station,12000,1,4358_7778195_4582004,4358_676 -4358_80787,205,4358_19135,Heuston Station,5128,1,4358_7778195_4582004,4358_676 -4358_80787,96,4358_19137,Heuston Station,12085,1,4358_7778195_4582007,4358_676 -4358_80787,205,4358_19138,Heuston Station,5019,1,4358_7778195_4582013,4358_676 -4358_80787,96,4358_19139,Heuston Station,12203,1,4358_7778195_4582008,4358_676 -4358_80758,205,4358_1914,Castle Ave,5777,0,4358_7778195_6130007,4358_65 -4358_80787,205,4358_19141,Heuston Station,5162,1,4358_7778195_4582011,4358_677 -4358_80787,96,4358_19142,Heuston Station,12195,1,4358_7778195_4582005,4358_676 -4358_80787,96,4358_19143,Heuston Station,12166,1,4358_7778195_4582006,4358_676 -4358_80787,205,4358_19144,Heuston Station,5053,1,4358_7778195_4582003,4358_677 -4358_80787,205,4358_19146,Heuston Station,5139,1,4358_7778195_4582008,4358_676 -4358_80787,96,4358_19147,Heuston Station,12104,1,4358_7778195_4582010,4358_677 -4358_80787,205,4358_19149,Heuston Station,5099,1,4358_7778195_4582009,4358_677 -4358_80758,96,4358_1915,Castle Ave,12787,0,4358_7778195_6130008,4358_65 -4358_80787,96,4358_19150,Heuston Station,12227,1,4358_7778195_4582009,4358_678 -4358_80787,96,4358_19151,Heuston Station,12190,1,4358_7778195_4582001,4358_676 -4358_80787,205,4358_19152,Heuston Station,4863,1,4358_7778195_4582006,4358_677 -4358_80787,205,4358_19154,Heuston Station,5153,1,4358_7778195_4582010,4358_676 -4358_80787,96,4358_19155,Heuston Station,12133,1,4358_7778195_4582002,4358_677 -4358_80787,96,4358_19157,Heuston Station,12002,1,4358_7778195_4582004,4358_676 -4358_80787,205,4358_19158,Heuston Station,4974,1,4358_7778195_4582001,4358_677 -4358_80787,205,4358_19159,Heuston Station,5176,1,4358_7778195_4582012,4358_676 -4358_80758,205,4358_1916,Castle Ave,5930,0,4358_7778195_6130008,4358_65 -4358_80787,96,4358_19160,Heuston Station,12087,1,4358_7778195_4582007,4358_677 -4358_80787,96,4358_19162,Heuston Station,12205,1,4358_7778195_4582008,4358_676 -4358_80787,205,4358_19163,Heuston Station,5112,1,4358_7778195_4582002,4358_677 -4358_80787,205,4358_19165,Heuston Station,5130,1,4358_7778195_4582004,4358_676 -4358_80787,96,4358_19166,Heuston Station,12197,1,4358_7778195_4582005,4358_677 -4358_80787,205,4358_19168,Heuston Station,5021,1,4358_7778195_4582013,4358_676 -4358_80787,96,4358_19169,Heuston Station,12168,1,4358_7778195_4582006,4358_677 -4358_80787,205,4358_19170,Heuston Station,5164,1,4358_7778195_4582011,4358_676 -4358_80787,96,4358_19172,Heuston Station,12106,1,4358_7778195_4582010,4358_678 -4358_80787,96,4358_19173,Heuston Station,12229,1,4358_7778195_4582009,4358_676 -4358_80787,205,4358_19174,Heuston Station,5055,1,4358_7778195_4582003,4358_677 -4358_80787,205,4358_19176,Heuston Station,5141,1,4358_7778195_4582008,4358_676 -4358_80787,96,4358_19177,Heuston Station,11938,1,4358_7778195_4582012,4358_677 -4358_80787,205,4358_19179,Heuston Station,4865,1,4358_7778195_4582006,4358_676 -4358_80758,96,4358_1918,Castle Ave,12833,0,4358_7778195_6130005,4358_65 -4358_80787,96,4358_19180,Heuston Station,12135,1,4358_7778195_4582002,4358_677 -4358_80787,96,4358_19181,Heuston Station,12217,1,4358_7778195_4582011,4358_676 -4358_80787,205,4358_19182,Heuston Station,5155,1,4358_7778195_4582010,4358_677 -4358_80787,96,4358_19184,Heuston Station,12004,1,4358_7778195_4582004,4358_676 -4358_80787,205,4358_19185,Heuston Station,4976,1,4358_7778195_4582001,4358_677 -4358_80787,205,4358_19187,Heuston Station,5178,1,4358_7778195_4582012,4358_676 -4358_80787,96,4358_19188,Heuston Station,12089,1,4358_7778195_4582007,4358_677 -4358_80758,205,4358_1919,Castle Ave,5800,0,4358_7778195_6130001,4358_66 -4358_80787,205,4358_19190,Heuston Station,5186,1,4358_7778195_4582014,4358_676 -4358_80787,96,4358_19191,Heuston Station,12207,1,4358_7778195_4582008,4358_677 -4358_80787,205,4358_19192,Heuston Station,5132,1,4358_7778195_4582004,4358_676 -4358_80787,96,4358_19194,Heuston Station,12199,1,4358_7778195_4582005,4358_678 -4358_80787,205,4358_19195,Heuston Station,5023,1,4358_7778195_4582013,4358_676 -4358_80787,96,4358_19196,Heuston Station,12170,1,4358_7778195_4582006,4358_677 -4358_80787,205,4358_19198,Heuston Station,5166,1,4358_7778195_4582011,4358_676 -4358_80787,96,4358_19199,Heuston Station,12108,1,4358_7778195_4582010,4358_677 -4358_80787,96,4358_19201,Heuston Station,12231,1,4358_7778195_4582009,4358_676 -4358_80787,205,4358_19202,Heuston Station,5057,1,4358_7778195_4582003,4358_677 -4358_80787,205,4358_19204,Heuston Station,5143,1,4358_7778195_4582008,4358_677 -4358_80787,96,4358_19205,Heuston Station,11940,1,4358_7778195_4582012,4358_678 -4358_80787,205,4358_19206,Heuston Station,5197,1,4358_7778195_4582016,4358_676 -4358_80787,96,4358_19207,Heuston Station,12137,1,4358_7778195_4582002,4358_677 -4358_80787,96,4358_19209,Heuston Station,12219,1,4358_7778195_4582011,4358_676 -4358_80758,205,4358_1921,Castle Ave,5864,0,4358_7778195_6130009,4358_65 -4358_80787,205,4358_19210,Heuston Station,4867,1,4358_7778195_4582006,4358_677 -4358_80787,205,4358_19212,Heuston Station,5157,1,4358_7778195_4582010,4358_676 -4358_80787,96,4358_19213,Heuston Station,12006,1,4358_7778195_4582004,4358_677 -4358_80787,96,4358_19214,Heuston Station,12091,1,4358_7778195_4582007,4358_676 -4358_80787,205,4358_19215,Heuston Station,4978,1,4358_7778195_4582001,4358_677 -4358_80787,96,4358_19217,Heuston Station,12209,1,4358_7778195_4582008,4358_676 -4358_80787,205,4358_19218,Heuston Station,5191,1,4358_7778195_4582015,4358_677 -4358_80758,96,4358_1922,Castle Ave,12863,0,4358_7778195_6130010,4358_65 -4358_80787,205,4358_19220,Heuston Station,5180,1,4358_7778195_4582012,4358_676 -4358_80787,96,4358_19221,Heuston Station,12201,1,4358_7778195_4582005,4358_677 -4358_80787,205,4358_19223,Heuston Station,5188,1,4358_7778195_4582014,4358_676 -4358_80787,96,4358_19224,Heuston Station,12172,1,4358_7778195_4582006,4358_677 -4358_80787,205,4358_19225,Heuston Station,5134,1,4358_7778195_4582004,4358_676 -4358_80787,96,4358_19227,Heuston Station,12110,1,4358_7778195_4582010,4358_678 -4358_80787,205,4358_19228,Heuston Station,5025,1,4358_7778195_4582013,4358_676 -4358_80787,96,4358_19229,Heuston Station,12233,1,4358_7778195_4582009,4358_677 -4358_80758,205,4358_1923,Castle Ave,5713,0,4358_7778195_6130003,4358_65 -4358_80787,205,4358_19231,Heuston Station,5168,1,4358_7778195_4582011,4358_676 -4358_80787,96,4358_19232,Heuston Station,11942,1,4358_7778195_4582012,4358_677 -4358_80787,96,4358_19234,Heuston Station,12139,1,4358_7778195_4582002,4358_676 -4358_80787,205,4358_19235,Heuston Station,5059,1,4358_7778195_4582003,4358_677 -4358_80787,96,4358_19236,Heuston Station,12221,1,4358_7778195_4582011,4358_676 -4358_80787,205,4358_19237,Heuston Station,5145,1,4358_7778195_4582008,4358_677 -4358_80787,205,4358_19239,Heuston Station,5199,1,4358_7778195_4582016,4358_676 -4358_80758,96,4358_1924,Castle Ave,12725,0,4358_7778195_6130006,4358_65 -4358_80787,96,4358_19240,Heuston Station,12008,1,4358_7778195_4582004,4358_677 -4358_80787,96,4358_19242,Heuston Station,12093,1,4358_7778195_4582007,4358_676 -4358_80787,205,4358_19243,Heuston Station,4869,1,4358_7778195_4582006,4358_677 -4358_80787,205,4358_19245,Heuston Station,5201,1,4358_7778195_4582017,4358_676 -4358_80787,96,4358_19246,Heuston Station,12211,1,4358_7778195_4582008,4358_677 -4358_80787,205,4358_19247,Heuston Station,5159,1,4358_7778195_4582010,4358_676 -4358_80787,96,4358_19248,Heuston Station,12174,1,4358_7778195_4582006,4358_676 -4358_80787,205,4358_19250,Heuston Station,4980,1,4358_7778195_4582001,4358_676 -4358_80787,96,4358_19251,Heuston Station,12112,1,4358_7778195_4582010,4358_676 -4358_80787,205,4358_19252,Heuston Station,5193,1,4358_7778195_4582015,4358_676 -4358_80787,205,4358_19254,Heuston Station,5182,1,4358_7778195_4582012,4358_676 -4358_80787,96,4358_19255,Heuston Station,12235,1,4358_7778195_4582009,4358_677 -4358_80787,205,4358_19256,Heuston Station,5136,1,4358_7778195_4582004,4358_676 -4358_80787,96,4358_19257,Heuston Station,11944,1,4358_7778195_4582012,4358_676 -4358_80787,205,4358_19259,Heuston Station,5170,1,4358_7778195_4582011,4358_676 -4358_80758,205,4358_1926,Castle Ave,5946,0,4358_7778195_6130006,4358_65 -4358_80787,96,4358_19260,Heuston Station,12223,1,4358_7778195_4582011,4358_676 -4358_80787,205,4358_19261,Heuston Station,5061,1,4358_7778195_4582003,4358_676 -4358_80787,96,4358_19263,Heuston Station,12213,1,4358_7778195_4582008,4358_676 -4358_80787,205,4358_19264,Heuston Station,5147,1,4358_7778195_4582008,4358_677 -4358_80787,205,4358_19265,Heuston Station,4871,1,4358_7778195_4582006,4358_676 -4358_80787,96,4358_19266,Heuston Station,12176,1,4358_7778195_4582006,4358_676 -4358_80787,205,4358_19268,Heuston Station,5203,1,4358_7778195_4582017,4358_676 -4358_80787,96,4358_19269,Heuston Station,12114,1,4358_7778195_4582010,4358_676 -4358_80758,96,4358_1927,Castle Ave,12743,0,4358_7778195_6130007,4358_65 -4358_80787,205,4358_19270,Heuston Station,4982,1,4358_7778195_4582001,4358_676 -4358_80787,96,4358_19272,Heuston Station,12237,1,4358_7778195_4582009,4358_676 -4358_80787,205,4358_19273,Heuston Station,5195,1,4358_7778195_4582015,4358_677 -4358_80787,205,4358_19274,Heuston Station,5184,1,4358_7778195_4582012,4358_676 -4358_80787,96,4358_19275,Heuston Station,11946,1,4358_7778195_4582012,4358_676 -4358_80787,205,4358_19277,Heuston Station,5172,1,4358_7778195_4582011,4358_676 -4358_80787,96,4358_19278,Heuston Station,12225,1,4358_7778195_4582011,4358_676 -4358_80787,205,4358_19279,Heuston Station,5063,1,4358_7778195_4582003,4358_676 -4358_80758,205,4358_1928,Castle Ave,5833,0,4358_7778195_6130005,4358_65 -4358_80787,96,4358_19281,Heuston Station,12215,1,4358_7778195_4582008,4358_676 -4358_80787,205,4358_19282,Heuston Station,5149,1,4358_7778195_4582008,4358_677 -4358_80787,205,4358_19284,Heuston Station,5205,1,4358_7778195_4582017,4358_676 -4358_80787,96,4358_19285,Heuston Station,12178,1,4358_7778195_4582006,4358_677 -4358_80768,205,4358_19286,Maynooth,3639,0,4358_7778195_7872232,4358_679 -4358_80768,205,4358_19287,Maynooth,6421,0,4358_7778195_7325671,4358_679 -4358_80768,205,4358_19288,Maynooth,6417,0,4358_7778195_7325669,4358_680 -4358_80768,205,4358_19289,Maynooth,6467,0,4358_7778195_7325685,4358_679 -4358_80768,205,4358_19290,Maynooth,6419,0,4358_7778195_7325670,4358_680 -4358_80768,205,4358_19291,UCD Belfield,3640,1,4358_7778195_7872132,4358_681 -4358_80768,205,4358_19292,UCD Belfield,6418,1,4358_7778195_7325570,4358_683 -4358_80768,205,4358_19293,UCD Belfield,6414,1,4358_7778195_7325568,4358_681 -4358_80768,205,4358_19294,Leeson Street Lr,6420,1,4358_7778195_7325571,4358_682 -4358_80769,205,4358_19295,Leeson Street Lr,6426,1,4358_7778195_7326573,4358_684 -4358_80769,205,4358_19296,Leeson Street Lr,3635,1,4358_7778195_7872110,4358_684 -4358_80769,205,4358_19297,Leeson Street Lr,3633,1,4358_7778195_7872109,4358_684 -4358_80770,205,4358_19298,Salesian College,6460,0,4358_7778195_7327675,4358_685 -4358_80770,205,4358_19299,Salesian College,7868,0,4358_7778195_8828108,4358_685 -4358_80760,205,4358_193,Shanard Road,1698,1,4358_7778195_9001008,4358_4 -4358_80758,205,4358_1930,Castle Ave,5678,0,4358_7778195_6130002,4358_65 -4358_80770,205,4358_19300,Salesian College,6415,0,4358_7778195_7327668,4358_686 -4358_80770,205,4358_19301,Salesian College,7865,0,4358_7778195_8828105,4358_686 -4358_80770,205,4358_19302,Leeson Street Lr,7867,1,4358_7778195_8828107,4358_687 -4358_80770,205,4358_19303,UCD Belfield,6461,1,4358_7778195_7327575,4358_688 -4358_80770,205,4358_19304,UCD Belfield,6441,1,4358_7778195_7327558,4358_688 -4358_80770,205,4358_19305,UCD Belfield,6453,1,4358_7778195_7327564,4358_688 -4358_80771,205,4358_19306,Salesian College,5971,0,4358_7778195_6826209,4358_690 -4358_80771,205,4358_19307,Salesian College,6454,0,4358_7778195_7328664,4358_689 -4358_80771,205,4358_19308,Salesian College,5982,0,4358_7778195_6826217,4358_690 -4358_80771,205,4358_19309,Salesian College,5977,0,4358_7778195_6826211,4358_689 -4358_80758,96,4358_1931,Castle Ave,12820,0,4358_7778195_6130009,4358_66 -4358_80771,205,4358_19310,Leeson Street Lr,6409,1,4358_7778195_7328572,4358_692 -4358_80771,205,4358_19311,UCD Belfield,7859,1,4358_7778195_8828103,4358_691 -4358_80771,205,4358_19312,UCD Belfield,3637,1,4358_7778195_7872111,4358_691 -4358_80771,205,4358_19313,Leeson Street Lr,6416,1,4358_7778195_7328569,4358_692 -4358_80771,205,4358_19314,Leeson Street Lr,5973,1,4358_7778195_6826110,4358_692 -4358_80772,205,4358_19315,Adamstown Station,6458,0,4358_7778195_7330667,4358_693 -4358_80772,205,4358_19316,Adamstown Station,6430,0,4358_7778195_7330651,4358_693 -4358_80772,205,4358_19317,UCD Belfield,6457,1,4358_7778195_7330567,4358_694 -4358_80772,205,4358_19318,UCD Belfield,6431,1,4358_7778195_7330552,4358_694 -4358_80772,205,4358_19319,UCD Belfield,7870,1,4358_7778195_8828110,4358_695 -4358_80772,205,4358_19320,UCD Belfield,7872,1,4358_7778195_8828109,4358_694 -4358_80773,205,4358_19321,River Forest,7785,0,4358_7778195_8818203,4358_696 -4358_80773,205,4358_19322,River Forest,6444,0,4358_7778195_7331659,4358_696 -4358_80773,205,4358_19323,River Forest,6446,0,4358_7778195_7331660,4358_696 -4358_80773,205,4358_19324,Earlsfort Terrace,6443,1,4358_7778195_7331559,4358_697 -4358_80773,205,4358_19325,Earlsfort Terrace,7784,1,4358_7778195_8818103,4358_697 -4358_80773,205,4358_19326,Earlsfort Terrace,6445,1,4358_7778195_7331560,4358_697 -4358_80774,205,4358_19327,Hewlett Packard,3642,0,4358_7778195_7872234,4358_698 -4358_80774,205,4358_19328,Hewlett Packard,6413,0,4358_7778195_7332667,4358_698 -4358_80774,205,4358_19329,Earlsfort Terrace,3641,1,4358_7778195_7872134,4358_699 -4358_80758,205,4358_1933,Castle Ave,5779,0,4358_7778195_6130007,4358_65 -4358_80774,205,4358_19330,Earlsfort Terrace,6412,1,4358_7778195_7332567,4358_699 -4358_80758,96,4358_1934,Castle Ave,12789,0,4358_7778195_6130008,4358_65 -4358_80758,205,4358_1935,Castle Ave,5932,0,4358_7778195_6130008,4358_65 -4358_80758,96,4358_1936,Castle Ave,12835,0,4358_7778195_6130005,4358_65 -4358_80758,205,4358_1938,Castle Ave,5802,0,4358_7778195_6130001,4358_65 -4358_80758,96,4358_1939,Castle Ave,12865,0,4358_7778195_6130010,4358_65 -4358_80760,96,4358_194,Shanard Road,9489,1,4358_7778195_9001004,4358_4 -4358_80758,205,4358_1940,Castle Ave,5866,0,4358_7778195_6130009,4358_65 -4358_80758,205,4358_1942,Castle Ave,5715,0,4358_7778195_6130003,4358_65 -4358_80758,96,4358_1943,Castle Ave,12727,0,4358_7778195_6130006,4358_66 -4358_80758,205,4358_1945,Castle Ave,5948,0,4358_7778195_6130006,4358_65 -4358_80758,96,4358_1946,Castle Ave,12745,0,4358_7778195_6130007,4358_65 -4358_80758,205,4358_1947,Castle Ave,5835,0,4358_7778195_6130005,4358_65 -4358_80758,96,4358_1948,Castle Ave,12822,0,4358_7778195_6130009,4358_65 -4358_80760,205,4358_195,Shanard Road,1816,1,4358_7778195_9001001,4358_5 -4358_80758,205,4358_1950,Castle Ave,5680,0,4358_7778195_6130002,4358_65 -4358_80758,96,4358_1951,Castle Ave,12791,0,4358_7778195_6130008,4358_65 -4358_80758,205,4358_1952,Castle Ave,5781,0,4358_7778195_6130007,4358_65 -4358_80758,96,4358_1954,Castle Ave,12837,0,4358_7778195_6130005,4358_65 -4358_80758,205,4358_1955,Castle Ave,5934,0,4358_7778195_6130008,4358_66 -4358_80758,205,4358_1957,Castle Ave,5804,0,4358_7778195_6130001,4358_65 -4358_80758,96,4358_1958,Castle Ave,12867,0,4358_7778195_6130010,4358_65 -4358_80758,205,4358_1959,Castle Ave,5889,0,4358_7778195_6130010,4358_65 -4358_80758,96,4358_1960,Castle Ave,12729,0,4358_7778195_6130006,4358_65 -4358_80758,205,4358_1962,Castle Ave,5868,0,4358_7778195_6130009,4358_65 -4358_80758,96,4358_1963,Castle Ave,12747,0,4358_7778195_6130007,4358_65 -4358_80758,205,4358_1964,Castle Ave,5717,0,4358_7778195_6130003,4358_65 -4358_80758,96,4358_1966,Castle Ave,12749,0,4358_7778195_6130012,4358_65 -4358_80758,205,4358_1967,Castle Ave,5950,0,4358_7778195_6130006,4358_65 -4358_80758,96,4358_1968,Castle Ave,12698,0,4358_7778195_6130011,4358_65 -4358_80760,205,4358_197,Shanard Road,1653,1,4358_7778195_9001003,4358_4 -4358_80758,205,4358_1970,Castle Ave,5837,0,4358_7778195_6130005,4358_65 -4358_80758,96,4358_1971,Castle Ave,12824,0,4358_7778195_6130009,4358_65 -4358_80758,205,4358_1972,Castle Ave,5682,0,4358_7778195_6130002,4358_65 -4358_80758,96,4358_1974,Castle Ave,12793,0,4358_7778195_6130008,4358_65 -4358_80758,205,4358_1975,Castle Ave,5783,0,4358_7778195_6130007,4358_65 -4358_80758,96,4358_1976,Castle Ave,12839,0,4358_7778195_6130005,4358_65 -4358_80758,205,4358_1977,Castle Ave,5936,0,4358_7778195_6130008,4358_65 -4358_80758,96,4358_1979,Castle Ave,12869,0,4358_7778195_6130010,4358_65 -4358_80760,96,4358_198,Shanard Road,9321,1,4358_7778195_9001002,4358_4 -4358_80758,205,4358_1980,Castle Ave,5806,0,4358_7778195_6130001,4358_65 -4358_80758,96,4358_1982,Castle Ave,12731,0,4358_7778195_6130006,4358_65 -4358_80758,205,4358_1983,Castle Ave,5891,0,4358_7778195_6130010,4358_65 -4358_80758,205,4358_1984,Castle Ave,5870,0,4358_7778195_6130009,4358_65 -4358_80758,96,4358_1986,Castle Ave,12751,0,4358_7778195_6130012,4358_66 -4358_80758,205,4358_1987,Castle Ave,5719,0,4358_7778195_6130003,4358_65 -4358_80758,205,4358_1988,Castle Ave,5952,0,4358_7778195_6130006,4358_65 -4358_80758,96,4358_1989,Castle Ave,12700,0,4358_7778195_6130011,4358_65 -4358_80760,205,4358_199,Shanard Road,1587,1,4358_7778195_9001005,4358_4 -4358_80758,205,4358_1991,Castle Ave,5839,0,4358_7778195_6130005,4358_65 -4358_80758,96,4358_1993,Castle Ave,12841,0,4358_7778195_6130005,4358_66 -4358_80758,205,4358_1994,Castle Ave,5785,0,4358_7778195_6130007,4358_65 -4358_80758,96,4358_1995,Castle Ave,12871,0,4358_7778195_6130010,4358_65 -4358_80758,205,4358_1997,Castle Ave,5893,0,4358_7778195_6130010,4358_65 -4358_80758,96,4358_1998,Castle Ave,12733,0,4358_7778195_6130006,4358_65 -4358_80760,205,4358_2,Shaw street,1650,0,4358_7778195_9001003,4358_1 -4358_80760,205,4358_200,Shanard Road,1540,1,4358_7778195_9001010,4358_4 -4358_80758,205,4358_2000,Castle Ave,5872,0,4358_7778195_6130009,4358_65 -4358_80758,96,4358_2001,Castle Ave,12753,0,4358_7778195_6130012,4358_65 -4358_80758,205,4358_2003,Castle Ave,5954,0,4358_7778195_6130006,4358_66 -4358_80758,96,4358_2004,Castle Ave,12843,0,4358_7778195_6130005,4358_65 -4358_80758,205,4358_2005,Castle Ave,5841,0,4358_7778195_6130005,4358_65 -4358_80758,96,4358_2007,Castle Ave,12873,0,4358_7778195_6130010,4358_65 -4358_80758,205,4358_2008,Castle Ave,5787,0,4358_7778195_6130007,4358_65 -4358_80760,96,4358_201,Shanard Road,9383,1,4358_7778195_9001001,4358_4 -4358_80758,96,4358_2010,Castle Ave,12735,0,4358_7778195_6130006,4358_65 -4358_80758,205,4358_2011,Castle Ave,5874,0,4358_7778195_6130009,4358_65 -4358_80758,96,4358_2013,Castle Ave,12755,0,4358_7778195_6130012,4358_66 -4358_80758,205,4358_2014,Castle Ave,5956,0,4358_7778195_6130006,4358_65 -4358_80758,96,4358_2015,Castle Ave,12845,0,4358_7778195_6130005,4358_65 -4358_80758,205,4358_2017,Castle Ave,5843,0,4358_7778195_6130005,4358_65 -4358_80758,96,4358_2018,Castle Ave,12875,0,4358_7778195_6130010,4358_65 -4358_80758,205,4358_2020,Castle Ave,5789,0,4358_7778195_6130007,4358_66 -4358_80758,96,4358_2021,Castle Ave,12737,0,4358_7778195_6130006,4358_65 -4358_80758,205,4358_2023,Castle Ave,5876,0,4358_7778195_6130009,4358_66 -4358_80758,96,4358_2024,Castle Ave,12757,0,4358_7778195_6130012,4358_65 -4358_80758,96,4358_2025,Castle Ave,12847,0,4358_7778195_6130005,4358_65 -4358_80758,205,4358_2027,Castle Ave,5958,0,4358_7778195_6130006,4358_67 -4358_80758,205,4358_2028,Talbot Street,5791,1,4358_7778195_6130001,4358_68 -4358_80758,205,4358_2029,Talbot Street,5704,1,4358_7778195_6130003,4358_68 -4358_80760,205,4358_203,Shanard Road,1634,1,4358_7778195_9001011,4358_4 -4358_80758,96,4358_2030,Talbot Street,12777,1,4358_7778195_6130002,4358_68 -4358_80758,205,4358_2031,Talbot Street,5819,1,4358_7778195_6130004,4358_68 -4358_80758,96,4358_2032,Talbot Street,12682,1,4358_7778195_6130001,4358_68 -4358_80758,205,4358_2033,Talbot Street,5824,1,4358_7778195_6130005,4358_69 -4358_80758,205,4358_2034,Talbot Street,5669,1,4358_7778195_6130002,4358_68 -4358_80758,96,4358_2035,Talbot Street,12806,1,4358_7778195_6130004,4358_68 -4358_80758,205,4358_2036,Talbot Street,5770,1,4358_7778195_6130007,4358_68 -4358_80758,205,4358_2037,Talbot Street,5923,1,4358_7778195_6130008,4358_68 -4358_80758,96,4358_2038,Talbot Street,12769,1,4358_7778195_6130003,4358_69 -4358_80760,96,4358_204,Shanard Road,9513,1,4358_7778195_9001005,4358_4 -4358_80758,205,4358_2040,Talbot Street,5793,1,4358_7778195_6130001,4358_68 -4358_80758,96,4358_2041,Talbot Street,12779,1,4358_7778195_6130002,4358_68 -4358_80758,205,4358_2042,Talbot Street,5857,1,4358_7778195_6130009,4358_68 -4358_80758,96,4358_2044,Talbot Street,12826,1,4358_7778195_6130005,4358_69 -4358_80758,205,4358_2045,Talbot Street,5706,1,4358_7778195_6130003,4358_68 -4358_80758,96,4358_2046,Talbot Street,12684,1,4358_7778195_6130001,4358_68 -4358_80758,205,4358_2047,Talbot Street,5939,1,4358_7778195_6130006,4358_68 -4358_80758,96,4358_2048,Talbot Street,12808,1,4358_7778195_6130004,4358_68 -4358_80758,205,4358_2049,Talbot Street,5821,1,4358_7778195_6130004,4358_69 -4358_80760,205,4358_205,Shanard Road,3138,1,4358_7778195_9001004,4358_5 -4358_80758,205,4358_2051,Talbot Street,5826,1,4358_7778195_6130005,4358_68 -4358_80758,96,4358_2052,Talbot Street,12771,1,4358_7778195_6130003,4358_68 -4358_80758,205,4358_2053,Talbot Street,5671,1,4358_7778195_6130002,4358_68 -4358_80758,96,4358_2055,Talbot Street,12781,1,4358_7778195_6130002,4358_69 -4358_80758,205,4358_2056,Talbot Street,5772,1,4358_7778195_6130007,4358_68 -4358_80758,96,4358_2057,Talbot Street,12828,1,4358_7778195_6130005,4358_68 -4358_80758,205,4358_2058,Talbot Street,5925,1,4358_7778195_6130008,4358_68 -4358_80758,96,4358_2060,Talbot Street,12720,1,4358_7778195_6130006,4358_69 -4358_80758,205,4358_2061,Talbot Street,5795,1,4358_7778195_6130001,4358_70 -4358_80758,205,4358_2062,Talbot Street,5859,1,4358_7778195_6130009,4358_68 -4358_80758,96,4358_2063,Talbot Street,12686,1,4358_7778195_6130001,4358_68 -4358_80758,205,4358_2064,Talbot Street,5708,1,4358_7778195_6130003,4358_68 -4358_80758,96,4358_2065,Talbot Street,12810,1,4358_7778195_6130004,4358_68 -4358_80758,205,4358_2067,Talbot Street,5941,1,4358_7778195_6130006,4358_68 -4358_80758,96,4358_2068,Talbot Street,12773,1,4358_7778195_6130003,4358_68 -4358_80758,205,4358_2069,Talbot Street,5828,1,4358_7778195_6130005,4358_68 -4358_80760,205,4358_207,Shanard Road,1844,1,4358_7778195_9001006,4358_4 -4358_80758,205,4358_2071,Talbot Street,5673,1,4358_7778195_6130002,4358_68 -4358_80758,96,4358_2072,Talbot Street,12783,1,4358_7778195_6130002,4358_69 -4358_80758,205,4358_2074,Talbot Street,5774,1,4358_7778195_6130007,4358_68 -4358_80758,96,4358_2075,Talbot Street,12830,1,4358_7778195_6130005,4358_68 -4358_80758,205,4358_2076,Talbot Street,5927,1,4358_7778195_6130008,4358_68 -4358_80758,96,4358_2078,Talbot Street,12722,1,4358_7778195_6130006,4358_69 -4358_80758,205,4358_2079,Talbot Street,5797,1,4358_7778195_6130001,4358_68 -4358_80760,96,4358_208,Shanard Road,9453,1,4358_7778195_9001003,4358_4 -4358_80758,96,4358_2080,Talbot Street,12688,1,4358_7778195_6130001,4358_68 -4358_80758,205,4358_2081,Talbot Street,5861,1,4358_7778195_6130009,4358_68 -4358_80758,205,4358_2083,Talbot Street,5710,1,4358_7778195_6130003,4358_68 -4358_80758,96,4358_2084,Talbot Street,12740,1,4358_7778195_6130007,4358_69 -4358_80758,205,4358_2086,Talbot Street,5943,1,4358_7778195_6130006,4358_68 -4358_80758,96,4358_2087,Talbot Street,12812,1,4358_7778195_6130004,4358_68 -4358_80758,205,4358_2088,Talbot Street,5830,1,4358_7778195_6130005,4358_68 -4358_80758,96,4358_2089,Talbot Street,12775,1,4358_7778195_6130003,4358_68 -4358_80758,205,4358_2091,Talbot Street,5675,1,4358_7778195_6130002,4358_68 -4358_80758,96,4358_2092,Talbot Street,12785,1,4358_7778195_6130002,4358_68 -4358_80758,205,4358_2093,Talbot Street,5776,1,4358_7778195_6130007,4358_68 -4358_80758,96,4358_2095,Talbot Street,12786,1,4358_7778195_6130008,4358_68 -4358_80758,205,4358_2096,Talbot Street,5929,1,4358_7778195_6130008,4358_69 -4358_80758,205,4358_2098,Talbot Street,5799,1,4358_7778195_6130001,4358_68 -4358_80758,96,4358_2099,Talbot Street,12832,1,4358_7778195_6130005,4358_68 -4358_80760,205,4358_21,Shaw street,1633,0,4358_7778195_9001011,4358_1 -4358_80760,205,4358_210,Shanard Road,1700,1,4358_7778195_9001008,4358_4 -4358_80758,205,4358_2100,Talbot Street,5863,1,4358_7778195_6130009,4358_68 -4358_80758,96,4358_2101,Talbot Street,12724,1,4358_7778195_6130006,4358_68 -4358_80758,205,4358_2103,Talbot Street,5712,1,4358_7778195_6130003,4358_68 -4358_80758,96,4358_2104,Talbot Street,12742,1,4358_7778195_6130007,4358_68 -4358_80758,205,4358_2105,Talbot Street,5945,1,4358_7778195_6130006,4358_68 -4358_80758,96,4358_2107,Talbot Street,12814,1,4358_7778195_6130004,4358_68 -4358_80758,205,4358_2108,Talbot Street,5832,1,4358_7778195_6130005,4358_69 -4358_80760,205,4358_211,Shanard Road,1818,1,4358_7778195_9001001,4358_4 -4358_80758,205,4358_2110,Talbot Street,5677,1,4358_7778195_6130002,4358_68 -4358_80758,96,4358_2111,Talbot Street,12819,1,4358_7778195_6130009,4358_68 -4358_80758,205,4358_2112,Talbot Street,5778,1,4358_7778195_6130007,4358_68 -4358_80758,96,4358_2114,Talbot Street,12788,1,4358_7778195_6130008,4358_69 -4358_80758,205,4358_2115,Talbot Street,5931,1,4358_7778195_6130008,4358_68 -4358_80758,96,4358_2116,Talbot Street,12834,1,4358_7778195_6130005,4358_68 -4358_80758,205,4358_2117,Talbot Street,5801,1,4358_7778195_6130001,4358_68 -4358_80758,205,4358_2119,Talbot Street,5865,1,4358_7778195_6130009,4358_68 -4358_80760,96,4358_212,Shanard Road,9491,1,4358_7778195_9001004,4358_4 -4358_80758,96,4358_2120,Talbot Street,12864,1,4358_7778195_6130010,4358_69 -4358_80758,205,4358_2122,Talbot Street,5714,1,4358_7778195_6130003,4358_68 -4358_80758,96,4358_2123,Talbot Street,12726,1,4358_7778195_6130006,4358_68 -4358_80758,205,4358_2124,Talbot Street,5947,1,4358_7778195_6130006,4358_68 -4358_80758,96,4358_2126,Talbot Street,12744,1,4358_7778195_6130007,4358_69 -4358_80758,205,4358_2127,Talbot Street,5834,1,4358_7778195_6130005,4358_68 -4358_80758,96,4358_2128,Talbot Street,12821,1,4358_7778195_6130009,4358_68 -4358_80758,205,4358_2129,Talbot Street,5679,1,4358_7778195_6130002,4358_68 -4358_80758,96,4358_2131,Talbot Street,12790,1,4358_7778195_6130008,4358_68 -4358_80758,205,4358_2132,Talbot Street,5780,1,4358_7778195_6130007,4358_69 -4358_80758,205,4358_2134,Talbot Street,5933,1,4358_7778195_6130008,4358_68 -4358_80758,96,4358_2135,Talbot Street,12836,1,4358_7778195_6130005,4358_68 -4358_80758,205,4358_2136,Talbot Street,5803,1,4358_7778195_6130001,4358_68 -4358_80758,96,4358_2137,Talbot Street,12866,1,4358_7778195_6130010,4358_68 -4358_80758,205,4358_2139,Talbot Street,5888,1,4358_7778195_6130010,4358_68 -4358_80760,205,4358_214,Shanard Road,1655,1,4358_7778195_9001003,4358_4 -4358_80758,96,4358_2140,Talbot Street,12728,1,4358_7778195_6130006,4358_68 -4358_80758,205,4358_2141,Talbot Street,5867,1,4358_7778195_6130009,4358_68 -4358_80758,205,4358_2143,Talbot Street,5716,1,4358_7778195_6130003,4358_68 -4358_80758,96,4358_2144,Talbot Street,12746,1,4358_7778195_6130007,4358_69 -4358_80758,205,4358_2146,Talbot Street,5949,1,4358_7778195_6130006,4358_68 -4358_80758,96,4358_2147,Talbot Street,12697,1,4358_7778195_6130011,4358_68 -4358_80758,205,4358_2148,Talbot Street,5836,1,4358_7778195_6130005,4358_68 -4358_80758,96,4358_2149,Talbot Street,12823,1,4358_7778195_6130009,4358_68 -4358_80760,205,4358_215,Shanard Road,1589,1,4358_7778195_9001005,4358_4 -4358_80758,205,4358_2151,Talbot Street,5681,1,4358_7778195_6130002,4358_68 -4358_80758,96,4358_2152,Talbot Street,12792,1,4358_7778195_6130008,4358_68 -4358_80758,205,4358_2153,Talbot Street,5782,1,4358_7778195_6130007,4358_68 -4358_80758,96,4358_2155,Talbot Street,12838,1,4358_7778195_6130005,4358_68 -4358_80758,205,4358_2156,Talbot Street,5935,1,4358_7778195_6130008,4358_68 -4358_80758,96,4358_2157,Talbot Street,12868,1,4358_7778195_6130010,4358_68 -4358_80758,205,4358_2159,Talbot Street,5805,1,4358_7778195_6130001,4358_68 -4358_80760,96,4358_216,Shanard Road,9323,1,4358_7778195_9001002,4358_5 -4358_80758,96,4358_2160,Talbot Street,12730,1,4358_7778195_6130006,4358_68 -4358_80758,205,4358_2161,Talbot Street,5890,1,4358_7778195_6130010,4358_68 -4358_80758,96,4358_2163,Talbot Street,12748,1,4358_7778195_6130007,4358_68 -4358_80758,205,4358_2164,Talbot Street,5869,1,4358_7778195_6130009,4358_68 -4358_80758,96,4358_2165,Talbot Street,12750,1,4358_7778195_6130012,4358_68 -4358_80758,205,4358_2166,Talbot Street,5718,1,4358_7778195_6130003,4358_68 -4358_80758,96,4358_2168,Talbot Street,12699,1,4358_7778195_6130011,4358_68 -4358_80758,205,4358_2169,Talbot Street,5951,1,4358_7778195_6130006,4358_69 -4358_80758,205,4358_2171,Talbot Street,5838,1,4358_7778195_6130005,4358_68 -4358_80758,96,4358_2172,Talbot Street,12794,1,4358_7778195_6130008,4358_68 -4358_80758,205,4358_2173,Talbot Street,5683,1,4358_7778195_6130002,4358_68 -4358_80758,96,4358_2175,Talbot Street,12840,1,4358_7778195_6130005,4358_69 -4358_80758,205,4358_2176,Talbot Street,5784,1,4358_7778195_6130007,4358_68 -4358_80758,205,4358_2177,Talbot Street,5937,1,4358_7778195_6130008,4358_68 -4358_80758,96,4358_2179,Talbot Street,12870,1,4358_7778195_6130010,4358_69 -4358_80760,205,4358_218,Shanard Road,1542,1,4358_7778195_9001010,4358_4 -4358_80758,205,4358_2180,Talbot Street,5892,1,4358_7778195_6130010,4358_68 -4358_80758,96,4358_2181,Talbot Street,12732,1,4358_7778195_6130006,4358_68 -4358_80758,205,4358_2183,Talbot Street,5871,1,4358_7778195_6130009,4358_68 -4358_80758,96,4358_2184,Talbot Street,12752,1,4358_7778195_6130012,4358_68 -4358_80758,205,4358_2186,Talbot Street,5953,1,4358_7778195_6130006,4358_68 -4358_80758,96,4358_2188,Talbot Street,12842,1,4358_7778195_6130005,4358_69 -4358_80758,205,4358_2189,Talbot Street,5840,1,4358_7778195_6130005,4358_68 -4358_80760,96,4358_219,Shanard Road,9385,1,4358_7778195_9001001,4358_4 -4358_80758,96,4358_2191,Talbot Street,12872,1,4358_7778195_6130010,4358_69 -4358_80758,205,4358_2192,Talbot Street,5786,1,4358_7778195_6130007,4358_68 -4358_80758,96,4358_2193,Talbot Street,12734,1,4358_7778195_6130006,4358_68 -4358_80758,205,4358_2195,Talbot Street,5873,1,4358_7778195_6130009,4358_68 -4358_80758,96,4358_2196,Talbot Street,12754,1,4358_7778195_6130012,4358_68 -4358_80758,205,4358_2198,Talbot Street,5955,1,4358_7778195_6130006,4358_68 -4358_80758,96,4358_2199,Talbot Street,12844,1,4358_7778195_6130005,4358_68 -4358_80760,96,4358_22,Shaw street,9382,0,4358_7778195_9001001,4358_1 -4358_80760,205,4358_220,Shanard Road,1636,1,4358_7778195_9001011,4358_4 -4358_80758,205,4358_2200,Talbot Street,5842,1,4358_7778195_6130005,4358_68 -4358_80758,96,4358_2202,Talbot Street,12874,1,4358_7778195_6130010,4358_68 -4358_80758,205,4358_2204,Talbot Street,5788,1,4358_7778195_6130007,4358_69 -4358_80758,96,4358_2205,Talbot Street,12736,1,4358_7778195_6130006,4358_68 -4358_80758,205,4358_2206,Talbot Street,5875,1,4358_7778195_6130009,4358_68 -4358_80758,96,4358_2208,Talbot Street,12756,1,4358_7778195_6130012,4358_68 -4358_80758,205,4358_2209,Talbot Street,5957,1,4358_7778195_6130006,4358_68 -4358_80758,96,4358_2210,Talbot Street,12846,1,4358_7778195_6130005,4358_68 -4358_80758,205,4358_2212,Talbot Street,5844,1,4358_7778195_6130005,4358_68 -4358_80758,96,4358_2213,Talbot Street,12876,1,4358_7778195_6130010,4358_68 -4358_80758,96,4358_2214,Talbot Street,12738,1,4358_7778195_6130006,4358_68 -4358_80758,205,4358_2216,Talbot Street,5790,1,4358_7778195_6130007,4358_70 -4358_80683,205,4358_2217,Dundrum Luas,3168,0,4358_7778195_1014003,4358_73 -4358_80683,205,4358_2218,Dundrum Luas,3063,0,4358_7778195_1014001,4358_71 -4358_80683,205,4358_2219,Dundrum Luas,3173,0,4358_7778195_1074005,4358_73 -4358_80760,205,4358_222,Shanard Road,3140,1,4358_7778195_9001004,4358_4 -4358_80683,96,4358_2220,Dundrum Luas,10755,0,4358_7778195_1014001,4358_71 -4358_80683,205,4358_2221,Dundrum Luas,3036,0,4358_7778195_1014002,4358_74 -4358_80683,205,4358_2222,Dundrum Luas,2823,0,4358_7778195_1014005,4358_71 -4358_80683,96,4358_2223,Dundrum Luas,10734,0,4358_7778195_1014002,4358_74 -4358_80683,96,4358_2224,Dundrum Luas,10747,0,4358_7778195_1014010,4358_73 -4358_80683,96,4358_2225,Dundrum Luas,10713,0,4358_7778195_1014003,4358_71 -4358_80683,205,4358_2226,Dundrum Luas,3032,0,4358_7778195_1014006,4358_74 -4358_80683,205,4358_2227,Dundrum Luas,3045,0,4358_7778195_1014010,4358_71 -4358_80683,96,4358_2228,Dundrum Luas,10725,0,4358_7778195_1014005,4358_71 -4358_80683,205,4358_2229,Dundrum Luas,2898,0,4358_7778195_1014009,4358_71 -4358_80760,96,4358_223,Shanard Road,9515,1,4358_7778195_9001005,4358_4 -4358_80683,96,4358_2230,Dundrum Luas,10701,0,4358_7778195_1014007,4358_71 -4358_80683,205,4358_2231,Dundrum Luas,2953,0,4358_7778195_1014004,4358_74 -4358_80683,205,4358_2232,Dundrum Luas,2809,0,4358_7778195_1014011,4358_71 -4358_80683,96,4358_2233,Dundrum Luas,10675,0,4358_7778195_1014004,4358_71 -4358_80683,205,4358_2234,Dundrum Luas,3053,0,4358_7778195_1014014,4358_71 -4358_80683,205,4358_2235,Dundrum Luas,2937,0,4358_7778195_1014007,4358_71 -4358_80683,96,4358_2236,Dundrum Luas,10668,0,4358_7778195_1014006,4358_74 -4358_80683,205,4358_2237,Dundrum Luas,2867,0,4358_7778195_1014017,4358_71 -4358_80683,96,4358_2239,Dundrum Luas,10612,0,4358_7778195_1014008,4358_71 -4358_80760,205,4358_224,Shanard Road,1846,1,4358_7778195_9001006,4358_4 -4358_80683,205,4358_2240,Dundrum Luas,2820,0,4358_7778195_1014008,4358_71 -4358_80683,96,4358_2241,Dundrum Luas,10577,0,4358_7778195_1014009,4358_71 -4358_80683,205,4358_2242,Dundrum Luas,3073,0,4358_7778195_1014018,4358_74 -4358_80683,205,4358_2245,Dundrum Luas,3171,0,4358_7778195_1014003,4358_71 -4358_80683,96,4358_2246,Dundrum Luas,10749,0,4358_7778195_1014010,4358_74 -4358_80683,96,4358_2247,Dundrum Luas,10757,0,4358_7778195_1014001,4358_71 -4358_80683,205,4358_2248,Dundrum Luas,2970,0,4358_7778195_1014012,4358_74 -4358_80683,205,4358_2250,Dundrum Luas,2909,0,4358_7778195_1014013,4358_71 -4358_80683,96,4358_2251,Dundrum Luas,10736,0,4358_7778195_1014002,4358_74 -4358_80683,205,4358_2252,Dundrum Luas,2993,0,4358_7778195_1014015,4358_71 -4358_80683,96,4358_2253,Dundrum Luas,10715,0,4358_7778195_1014003,4358_74 -4358_80683,205,4358_2255,Dundrum Luas,2865,0,4358_7778195_1014016,4358_71 -4358_80683,96,4358_2256,Dundrum Luas,10727,0,4358_7778195_1014005,4358_71 -4358_80683,205,4358_2257,Dundrum Luas,3065,0,4358_7778195_1014001,4358_71 -4358_80683,96,4358_2258,Dundrum Luas,10703,0,4358_7778195_1014007,4358_71 -4358_80760,205,4358_226,Shanard Road,1702,1,4358_7778195_9001008,4358_4 -4358_80683,205,4358_2260,Dundrum Luas,2983,0,4358_7778195_1014020,4358_71 -4358_80683,96,4358_2261,Dundrum Luas,10683,0,4358_7778195_1014012,4358_71 -4358_80683,205,4358_2262,Dundrum Luas,2825,0,4358_7778195_1014005,4358_71 -4358_80683,205,4358_2264,Dundrum Luas,2961,0,4358_7778195_1014022,4358_74 -4358_80683,96,4358_2265,Dundrum Luas,10625,0,4358_7778195_1014011,4358_75 -4358_80683,205,4358_2266,Dundrum Luas,3034,0,4358_7778195_1014006,4358_71 -4358_80683,96,4358_2267,Dundrum Luas,10677,0,4358_7778195_1014004,4358_71 -4358_80683,205,4358_2268,Dundrum Luas,3047,0,4358_7778195_1014010,4358_71 -4358_80760,96,4358_227,Shanard Road,9455,1,4358_7778195_9001003,4358_5 -4358_80683,96,4358_2270,Dundrum Luas,10670,0,4358_7778195_1014006,4358_74 -4358_80683,205,4358_2271,Dundrum Luas,2900,0,4358_7778195_1014009,4358_71 -4358_80683,96,4358_2272,Dundrum Luas,10614,0,4358_7778195_1014008,4358_71 -4358_80683,205,4358_2273,Dundrum Luas,2811,0,4358_7778195_1014011,4358_71 -4358_80683,96,4358_2274,Dundrum Luas,10579,0,4358_7778195_1014009,4358_71 -4358_80683,205,4358_2275,Dundrum Luas,3055,0,4358_7778195_1014014,4358_74 -4358_80683,205,4358_2277,Dundrum Luas,2939,0,4358_7778195_1014007,4358_71 -4358_80683,96,4358_2278,Dundrum Luas,10751,0,4358_7778195_1014010,4358_71 -4358_80683,205,4358_2280,Dundrum Luas,2869,0,4358_7778195_1014017,4358_71 -4358_80683,96,4358_2281,Dundrum Luas,10759,0,4358_7778195_1014001,4358_71 -4358_80683,205,4358_2282,Dundrum Luas,3075,0,4358_7778195_1014018,4358_71 -4358_80683,96,4358_2284,Dundrum Luas,10660,0,4358_7778195_1014014,4358_71 -4358_80683,205,4358_2285,Dundrum Luas,2972,0,4358_7778195_1014012,4358_71 -4358_80683,205,4358_2286,Dundrum Luas,2911,0,4358_7778195_1014013,4358_71 -4358_80683,96,4358_2288,Dundrum Luas,10738,0,4358_7778195_1014002,4358_75 -4358_80683,205,4358_2289,Dundrum Luas,2842,0,4358_7778195_1014024,4358_71 -4358_80760,205,4358_229,Shanard Road,1820,1,4358_7778195_9001001,4358_4 -4358_80683,96,4358_2290,Dundrum Luas,10717,0,4358_7778195_1014003,4358_71 -4358_80683,205,4358_2292,Dundrum Luas,2999,0,4358_7778195_1014025,4358_71 -4358_80683,96,4358_2293,Dundrum Luas,10729,0,4358_7778195_1014005,4358_71 -4358_80683,205,4358_2294,Dundrum Luas,2995,0,4358_7778195_1014015,4358_71 -4358_80683,96,4358_2296,Dundrum Luas,10705,0,4358_7778195_1014007,4358_71 -4358_80683,205,4358_2297,Dundrum Luas,3067,0,4358_7778195_1014001,4358_71 -4358_80683,96,4358_2299,Dundrum Luas,10685,0,4358_7778195_1014012,4358_74 -4358_80760,205,4358_23,Shaw street,3137,0,4358_7778195_9001004,4358_1 -4358_80760,96,4358_230,Shanard Road,9493,1,4358_7778195_9001004,4358_4 -4358_80683,205,4358_2300,Dundrum Luas,2985,0,4358_7778195_1014020,4358_75 -4358_80683,205,4358_2301,Dundrum Luas,2827,0,4358_7778195_1014005,4358_71 -4358_80683,96,4358_2302,Dundrum Luas,10657,0,4358_7778195_1014013,4358_71 -4358_80683,205,4358_2304,Dundrum Luas,2963,0,4358_7778195_1014022,4358_71 -4358_80683,96,4358_2305,Dundrum Luas,10627,0,4358_7778195_1014011,4358_71 -4358_80683,205,4358_2306,Dundrum Luas,3086,0,4358_7778195_1014023,4358_71 -4358_80683,96,4358_2308,Dundrum Luas,10679,0,4358_7778195_1014004,4358_71 -4358_80683,205,4358_2309,Dundrum Luas,3049,0,4358_7778195_1014010,4358_71 -4358_80760,205,4358_231,Shanard Road,1657,1,4358_7778195_9001003,4358_4 -4358_80683,96,4358_2310,Dundrum Luas,10672,0,4358_7778195_1014006,4358_71 -4358_80683,205,4358_2311,Dundrum Luas,2902,0,4358_7778195_1014009,4358_74 -4358_80683,205,4358_2313,Dundrum Luas,2813,0,4358_7778195_1014011,4358_71 -4358_80683,96,4358_2314,Dundrum Luas,10616,0,4358_7778195_1014008,4358_71 -4358_80683,205,4358_2316,Dundrum Luas,3057,0,4358_7778195_1014014,4358_71 -4358_80683,96,4358_2317,Dundrum Luas,10581,0,4358_7778195_1014009,4358_71 -4358_80683,205,4358_2318,Dundrum Luas,3006,0,4358_7778195_1014026,4358_71 -4358_80683,96,4358_2320,Dundrum Luas,10753,0,4358_7778195_1014010,4358_71 -4358_80683,205,4358_2321,Dundrum Luas,2941,0,4358_7778195_1014007,4358_71 -4358_80683,96,4358_2323,Dundrum Luas,10761,0,4358_7778195_1014001,4358_74 -4358_80683,205,4358_2324,Dundrum Luas,2871,0,4358_7778195_1014017,4358_75 -4358_80683,205,4358_2325,Dundrum Luas,3077,0,4358_7778195_1014018,4358_71 -4358_80683,96,4358_2326,Dundrum Luas,10662,0,4358_7778195_1014014,4358_71 -4358_80683,205,4358_2328,Dundrum Luas,2974,0,4358_7778195_1014012,4358_71 -4358_80683,96,4358_2329,Dundrum Luas,10740,0,4358_7778195_1014002,4358_71 -4358_80760,205,4358_233,Shanard Road,1591,1,4358_7778195_9001005,4358_4 -4358_80683,205,4358_2330,Dundrum Luas,2913,0,4358_7778195_1014013,4358_71 -4358_80683,96,4358_2332,Dundrum Luas,10719,0,4358_7778195_1014003,4358_71 -4358_80683,205,4358_2333,Dundrum Luas,2844,0,4358_7778195_1014024,4358_71 -4358_80683,96,4358_2334,Dundrum Luas,10731,0,4358_7778195_1014005,4358_71 -4358_80683,205,4358_2335,Dundrum Luas,3001,0,4358_7778195_1014025,4358_74 -4358_80683,205,4358_2337,Dundrum Luas,2997,0,4358_7778195_1014015,4358_71 -4358_80683,96,4358_2338,Dundrum Luas,10707,0,4358_7778195_1014007,4358_71 -4358_80760,96,4358_234,Shanard Road,9325,1,4358_7778195_9001002,4358_4 -4358_80683,205,4358_2340,Dundrum Luas,3019,0,4358_7778195_1014028,4358_71 -4358_80683,96,4358_2341,Dundrum Luas,10571,0,4358_7778195_1014015,4358_71 -4358_80683,205,4358_2342,Dundrum Luas,3069,0,4358_7778195_1014001,4358_71 -4358_80683,96,4358_2344,Dundrum Luas,10687,0,4358_7778195_1014012,4358_71 -4358_80683,205,4358_2345,Dundrum Luas,2987,0,4358_7778195_1014020,4358_71 -4358_80683,205,4358_2347,Dundrum Luas,2829,0,4358_7778195_1014005,4358_74 -4358_80683,96,4358_2348,Dundrum Luas,10659,0,4358_7778195_1014013,4358_75 -4358_80683,205,4358_2349,Dundrum Luas,2965,0,4358_7778195_1014022,4358_71 -4358_80760,205,4358_235,Shanard Road,1544,1,4358_7778195_9001010,4358_4 -4358_80683,96,4358_2350,Dundrum Luas,10629,0,4358_7778195_1014011,4358_71 -4358_80683,205,4358_2352,Dundrum Luas,3088,0,4358_7778195_1014023,4358_71 -4358_80683,96,4358_2353,Dundrum Luas,10681,0,4358_7778195_1014004,4358_71 -4358_80683,205,4358_2354,Dundrum Luas,3051,0,4358_7778195_1014010,4358_74 -4358_80683,205,4358_2355,Dundrum Luas,2929,0,4358_7778195_1014027,4358_71 -4358_80683,96,4358_2357,Dundrum Luas,10618,0,4358_7778195_1014008,4358_71 -4358_80683,205,4358_2358,Dundrum Luas,2904,0,4358_7778195_1014009,4358_71 -4358_80683,205,4358_2359,Dundrum Luas,2815,0,4358_7778195_1014011,4358_71 -4358_80683,96,4358_2360,Dundrum Luas,10559,0,4358_7778195_1014016,4358_74 -4358_80683,96,4358_2362,Dundrum Luas,10583,0,4358_7778195_1014009,4358_71 -4358_80683,205,4358_2363,Dundrum Luas,3059,0,4358_7778195_1014014,4358_74 -4358_80683,205,4358_2365,Dundrum Luas,2943,0,4358_7778195_1014007,4358_71 -4358_80683,96,4358_2366,Dundrum Luas,10744,0,4358_7778195_1014017,4358_74 -4358_80683,96,4358_2368,Dundrum Luas,10664,0,4358_7778195_1014014,4358_71 -4358_80683,205,4358_2369,Dundrum Luas,2873,0,4358_7778195_1014017,4358_74 -4358_80760,205,4358_237,Shanard Road,1638,1,4358_7778195_9001011,4358_4 -4358_80683,96,4358_2370,Dundrum Luas,10742,0,4358_7778195_1014002,4358_71 -4358_80683,205,4358_2371,Dundrum Luas,3079,0,4358_7778195_1014018,4358_74 -4358_80683,205,4358_2373,Dundrum Luas,2831,0,4358_7778195_1014030,4358_71 -4358_80683,96,4358_2374,Dundrum Luas,10721,0,4358_7778195_1014003,4358_71 -4358_80683,205,4358_2376,Dundrum Luas,2915,0,4358_7778195_1014013,4358_71 -4358_80683,96,4358_2377,Dundrum Luas,10709,0,4358_7778195_1014007,4358_71 -4358_80683,205,4358_2379,Dundrum Luas,3003,0,4358_7778195_1014025,4358_71 -4358_80760,96,4358_238,Shanard Road,9387,1,4358_7778195_9001001,4358_5 -4358_80683,96,4358_2381,Dundrum Luas,10573,0,4358_7778195_1014015,4358_74 -4358_80683,205,4358_2382,Dundrum Luas,3021,0,4358_7778195_1014028,4358_75 -4358_80683,205,4358_2383,Dundrum Luas,3071,0,4358_7778195_1014001,4358_71 -4358_80683,96,4358_2385,Dundrum Luas,10689,0,4358_7778195_1014012,4358_74 -4358_80683,205,4358_2386,Dundrum Luas,2989,0,4358_7778195_1014020,4358_71 -4358_80683,96,4358_2387,Dundrum Luas,10631,0,4358_7778195_1014011,4358_71 -4358_80683,205,4358_2389,Dundrum Luas,2967,0,4358_7778195_1014022,4358_71 -4358_80683,205,4358_2390,Dundrum Luas,2931,0,4358_7778195_1014027,4358_71 -4358_80683,96,4358_2392,Dundrum Luas,10620,0,4358_7778195_1014008,4358_75 -4358_80683,205,4358_2393,Dundrum Luas,2906,0,4358_7778195_1014009,4358_71 -4358_80683,96,4358_2395,Dundrum Luas,10561,0,4358_7778195_1014016,4358_74 -4358_80683,205,4358_2396,Dundrum Luas,2817,0,4358_7778195_1014011,4358_71 -4358_80683,96,4358_2397,Dundrum Luas,10746,0,4358_7778195_1014017,4358_71 -4358_80683,205,4358_2399,Dundrum Luas,3061,0,4358_7778195_1014014,4358_71 -4358_80760,96,4358_24,Shaw street,9512,0,4358_7778195_9001005,4358_1 -4358_80760,205,4358_240,Shanard Road,3142,1,4358_7778195_9001004,4358_4 -4358_80683,205,4358_2400,Dundrum Luas,2945,0,4358_7778195_1014007,4358_71 -4358_80683,96,4358_2401,Dundrum Luas,10666,0,4358_7778195_1014014,4358_74 -4358_80683,205,4358_2403,Dundrum Luas,2875,0,4358_7778195_1014017,4358_71 -4358_80683,96,4358_2404,Dundrum Luas,10723,0,4358_7778195_1014003,4358_71 -4358_80683,205,4358_2406,Dundrum Luas,3081,0,4358_7778195_1014018,4358_71 -4358_80683,96,4358_2407,D'Olier Street,10711,0,4358_7778195_1014007,4358_72 -4358_80683,205,4358_2409,Dundrum Luas,2833,0,4358_7778195_1014030,4358_71 -4358_80760,96,4358_241,Shanard Road,9517,1,4358_7778195_9001005,4358_4 -4358_80683,96,4358_2411,D'Olier Street,10575,0,4358_7778195_1014015,4358_72 -4358_80683,205,4358_2412,Dundrum Luas,2991,0,4358_7778195_1014020,4358_74 -4358_80683,96,4358_2413,Beaumont,10754,1,4358_7778195_1014001,4358_76 -4358_80683,205,4358_2414,Beaumont,3035,1,4358_7778195_1014002,4358_78 -4358_80683,205,4358_2415,Beaumont,2952,1,4358_7778195_1014004,4358_77 -4358_80683,205,4358_2416,Beaumont,2822,1,4358_7778195_1014005,4358_76 -4358_80683,96,4358_2417,Beaumont,10733,1,4358_7778195_1014002,4358_78 -4358_80683,96,4358_2418,Beaumont,10712,1,4358_7778195_1014003,4358_76 -4358_80683,205,4358_2419,Beaumont,2936,1,4358_7778195_1014007,4358_77 -4358_80760,205,4358_242,Shanard Road,1848,1,4358_7778195_9001006,4358_4 -4358_80683,205,4358_2420,Beaumont,3031,1,4358_7778195_1014006,4358_78 -4358_80683,96,4358_2421,Beaumont,10674,1,4358_7778195_1014004,4358_79 -4358_80683,96,4358_2422,Beaumont,10724,1,4358_7778195_1014005,4358_76 -4358_80683,205,4358_2423,Beaumont,2819,1,4358_7778195_1014008,4358_77 -4358_80683,96,4358_2424,Beaumont,10667,1,4358_7778195_1014006,4358_79 -4358_80683,205,4358_2425,Beaumont,2897,1,4358_7778195_1014009,4358_78 -4358_80683,96,4358_2426,Beaumont,10700,1,4358_7778195_1014007,4358_76 -4358_80683,205,4358_2427,Beaumont,2808,1,4358_7778195_1014011,4358_78 -4358_80683,205,4358_2428,Beaumont,2969,1,4358_7778195_1014012,4358_77 -4358_80683,96,4358_2429,Beaumont,10611,1,4358_7778195_1014008,4358_79 -4358_80683,205,4358_2430,Beaumont,2908,1,4358_7778195_1014013,4358_77 -4358_80683,96,4358_2431,Beaumont,10576,1,4358_7778195_1014009,4358_77 -4358_80683,205,4358_2432,Beaumont,3052,1,4358_7778195_1014014,4358_76 -4358_80683,205,4358_2433,Beaumont,2992,1,4358_7778195_1014015,4358_77 -4358_80683,205,4358_2434,Beaumont,2864,1,4358_7778195_1014016,4358_77 -4358_80683,96,4358_2435,Beaumont,10748,1,4358_7778195_1014010,4358_79 -4358_80683,205,4358_2436,Beaumont,2866,1,4358_7778195_1014017,4358_76 -4358_80683,205,4358_2437,Beaumont,3064,1,4358_7778195_1014001,4358_77 -4358_80683,96,4358_2438,Beaumont,10756,1,4358_7778195_1014001,4358_77 -4358_80683,205,4358_2439,Beaumont,3072,1,4358_7778195_1014018,4358_76 -4358_80760,205,4358_244,Shanard Road,1704,1,4358_7778195_9001008,4358_4 -4358_80683,205,4358_2440,Beaumont,2821,1,4358_7778195_1014019,4358_77 -4358_80683,205,4358_2441,Beaumont,3170,1,4358_7778195_1014003,4358_76 -4358_80683,96,4358_2442,Beaumont,10735,1,4358_7778195_1014002,4358_77 -4358_80683,205,4358_2443,Beaumont,3037,1,4358_7778195_1014002,4358_79 -4358_80683,205,4358_2444,Beaumont,2982,1,4358_7778195_1014020,4358_77 -4358_80683,96,4358_2445,Beaumont,10714,1,4358_7778195_1014003,4358_77 -4358_80683,205,4358_2446,Beaumont,3084,1,4358_7778195_1014021,4358_77 -4358_80683,96,4358_2447,Beaumont,10726,1,4358_7778195_1014005,4358_77 -4358_80683,205,4358_2448,Beaumont,2824,1,4358_7778195_1014005,4358_79 -4358_80760,96,4358_245,Shanard Road,9457,1,4358_7778195_9001003,4358_4 -4358_80683,96,4358_2450,Beaumont,10702,1,4358_7778195_1014007,4358_77 -4358_80683,205,4358_2451,Beaumont,2960,1,4358_7778195_1014022,4358_79 -4358_80683,205,4358_2453,Beaumont,3033,1,4358_7778195_1014006,4358_79 -4358_80683,96,4358_2454,Beaumont,10624,1,4358_7778195_1014011,4358_81 -4358_80683,96,4358_2455,Beaumont,10676,1,4358_7778195_1014004,4358_77 -4358_80683,205,4358_2456,Beaumont,3046,1,4358_7778195_1014010,4358_79 -4358_80683,96,4358_2458,Beaumont,10669,1,4358_7778195_1014006,4358_79 -4358_80683,205,4358_2459,Beaumont,2899,1,4358_7778195_1014009,4358_81 -4358_80760,205,4358_246,Shanard Road,1822,1,4358_7778195_9001001,4358_4 -4358_80683,205,4358_2460,Beaumont,2810,1,4358_7778195_1014011,4358_77 -4358_80683,96,4358_2461,Beaumont,10613,1,4358_7778195_1014008,4358_77 -4358_80683,205,4358_2462,Beaumont,3054,1,4358_7778195_1014014,4358_77 -4358_80683,96,4358_2463,Beaumont,10578,1,4358_7778195_1014009,4358_77 -4358_80683,205,4358_2465,Beaumont,2938,1,4358_7778195_1014007,4358_77 -4358_80683,96,4358_2466,Beaumont,10750,1,4358_7778195_1014010,4358_77 -4358_80683,205,4358_2467,Beaumont,2868,1,4358_7778195_1014017,4358_77 -4358_80683,96,4358_2468,Beaumont,10758,1,4358_7778195_1014001,4358_77 -4358_80683,205,4358_2470,Beaumont,3074,1,4358_7778195_1014018,4358_81 -4358_80683,205,4358_2471,Beaumont,3172,1,4358_7778195_1014003,4358_77 -4358_80683,96,4358_2472,Beaumont,10737,1,4358_7778195_1014002,4358_77 -4358_80683,205,4358_2473,Beaumont,2971,1,4358_7778195_1014012,4358_77 -4358_80683,96,4358_2474,Beaumont,10716,1,4358_7778195_1014003,4358_77 -4358_80683,205,4358_2476,Beaumont,2910,1,4358_7778195_1014013,4358_77 -4358_80683,96,4358_2477,Beaumont,10728,1,4358_7778195_1014005,4358_77 -4358_80683,205,4358_2478,Beaumont,2994,1,4358_7778195_1014015,4358_77 -4358_80683,96,4358_2479,Beaumont,10704,1,4358_7778195_1014007,4358_77 -4358_80760,96,4358_248,Shanard Road,9495,1,4358_7778195_9001004,4358_4 -4358_80683,205,4358_2480,Beaumont,3066,1,4358_7778195_1014001,4358_79 -4358_80683,205,4358_2482,Beaumont,2984,1,4358_7778195_1014020,4358_77 -4358_80683,96,4358_2483,Beaumont,10684,1,4358_7778195_1014012,4358_77 -4358_80683,205,4358_2485,Beaumont,2826,1,4358_7778195_1014005,4358_77 -4358_80683,96,4358_2486,Beaumont,10656,1,4358_7778195_1014013,4358_77 -4358_80683,205,4358_2487,Beaumont,2962,1,4358_7778195_1014022,4358_77 -4358_80683,96,4358_2489,Beaumont,10626,1,4358_7778195_1014011,4358_77 -4358_80760,205,4358_249,Shanard Road,1659,1,4358_7778195_9001003,4358_5 -4358_80683,205,4358_2490,Beaumont,3085,1,4358_7778195_1014023,4358_77 -4358_80683,96,4358_2492,Beaumont,10678,1,4358_7778195_1014004,4358_79 -4358_80683,205,4358_2493,Beaumont,3048,1,4358_7778195_1014010,4358_81 -4358_80683,205,4358_2494,Beaumont,2901,1,4358_7778195_1014009,4358_77 -4358_80683,96,4358_2495,Beaumont,10671,1,4358_7778195_1014006,4358_77 -4358_80683,205,4358_2497,Beaumont,2812,1,4358_7778195_1014011,4358_77 -4358_80683,96,4358_2498,Beaumont,10615,1,4358_7778195_1014008,4358_77 -4358_80683,205,4358_2499,Beaumont,3056,1,4358_7778195_1014014,4358_77 -4358_80683,96,4358_2501,Beaumont,10580,1,4358_7778195_1014009,4358_77 -4358_80683,205,4358_2502,Beaumont,3005,1,4358_7778195_1014026,4358_77 -4358_80683,205,4358_2503,Beaumont,2940,1,4358_7778195_1014007,4358_77 -4358_80683,96,4358_2504,Beaumont,10752,1,4358_7778195_1014010,4358_79 -4358_80683,205,4358_2506,Beaumont,2870,1,4358_7778195_1014017,4358_77 -4358_80683,96,4358_2507,Beaumont,10760,1,4358_7778195_1014001,4358_77 -4358_80683,205,4358_2509,Beaumont,3076,1,4358_7778195_1014018,4358_77 -4358_80760,205,4358_251,Shanard Road,1593,1,4358_7778195_9001005,4358_4 -4358_80683,96,4358_2510,Beaumont,10661,1,4358_7778195_1014014,4358_77 -4358_80683,205,4358_2511,Beaumont,2973,1,4358_7778195_1014012,4358_77 -4358_80683,96,4358_2513,Beaumont,10739,1,4358_7778195_1014002,4358_77 -4358_80683,205,4358_2514,Beaumont,2912,1,4358_7778195_1014013,4358_77 -4358_80683,96,4358_2515,Beaumont,10718,1,4358_7778195_1014003,4358_77 -4358_80683,205,4358_2517,Beaumont,2843,1,4358_7778195_1014024,4358_81 -4358_80683,205,4358_2518,Beaumont,3000,1,4358_7778195_1014025,4358_77 -4358_80683,96,4358_2519,Beaumont,10730,1,4358_7778195_1014005,4358_77 -4358_80760,96,4358_252,Shanard Road,9327,1,4358_7778195_9001002,4358_4 -4358_80683,205,4358_2521,Beaumont,2996,1,4358_7778195_1014015,4358_77 -4358_80683,96,4358_2522,Beaumont,10706,1,4358_7778195_1014007,4358_77 -4358_80683,205,4358_2523,Beaumont,3068,1,4358_7778195_1014001,4358_77 -4358_80683,96,4358_2525,Beaumont,10686,1,4358_7778195_1014012,4358_77 -4358_80683,205,4358_2526,Beaumont,2986,1,4358_7778195_1014020,4358_77 -4358_80683,205,4358_2528,Beaumont,2828,1,4358_7778195_1014005,4358_79 -4358_80683,96,4358_2529,Beaumont,10658,1,4358_7778195_1014013,4358_81 -4358_80760,205,4358_253,Shanard Road,1546,1,4358_7778195_9001010,4358_4 -4358_80683,205,4358_2530,Beaumont,2964,1,4358_7778195_1014022,4358_77 -4358_80683,96,4358_2531,Beaumont,10628,1,4358_7778195_1014011,4358_77 -4358_80683,205,4358_2533,Beaumont,3087,1,4358_7778195_1014023,4358_79 -4358_80683,96,4358_2534,Beaumont,10680,1,4358_7778195_1014004,4358_77 -4358_80683,205,4358_2535,Beaumont,3050,1,4358_7778195_1014010,4358_79 -4358_80683,205,4358_2536,Beaumont,2928,1,4358_7778195_1014027,4358_77 -4358_80683,96,4358_2538,Beaumont,10673,1,4358_7778195_1014006,4358_77 -4358_80683,205,4358_2539,Beaumont,2903,1,4358_7778195_1014009,4358_77 -4358_80683,205,4358_2540,Beaumont,2814,1,4358_7778195_1014011,4358_77 -4358_80683,96,4358_2542,Beaumont,10617,1,4358_7778195_1014008,4358_81 -4358_80683,205,4358_2543,Beaumont,3058,1,4358_7778195_1014014,4358_77 -4358_80683,96,4358_2544,Beaumont,10558,1,4358_7778195_1014016,4358_77 -4358_80683,205,4358_2546,Beaumont,3007,1,4358_7778195_1014026,4358_79 -4358_80683,205,4358_2547,Beaumont,2958,1,4358_7778195_1014029,4358_77 -4358_80683,96,4358_2548,Beaumont,10582,1,4358_7778195_1014009,4358_79 -4358_80760,205,4358_255,Shanard Road,1640,1,4358_7778195_9001011,4358_4 -4358_80683,205,4358_2550,Beaumont,2942,1,4358_7778195_1014007,4358_79 -4358_80683,96,4358_2551,Beaumont,10743,1,4358_7778195_1014017,4358_77 -4358_80683,205,4358_2552,Beaumont,2872,1,4358_7778195_1014017,4358_77 -4358_80683,96,4358_2553,Beaumont,10663,1,4358_7778195_1014014,4358_77 -4358_80683,205,4358_2555,Beaumont,3078,1,4358_7778195_1014018,4358_81 -4358_80683,205,4358_2556,Beaumont,2830,1,4358_7778195_1014030,4358_77 -4358_80683,96,4358_2557,Beaumont,10741,1,4358_7778195_1014002,4358_77 -4358_80683,205,4358_2559,Beaumont,2975,1,4358_7778195_1014012,4358_77 -4358_80760,96,4358_256,Shanard Road,9389,1,4358_7778195_9001001,4358_4 -4358_80683,96,4358_2560,Beaumont,10720,1,4358_7778195_1014003,4358_77 -4358_80683,205,4358_2561,Beaumont,2914,1,4358_7778195_1014013,4358_77 -4358_80683,96,4358_2563,Beaumont,10732,1,4358_7778195_1014005,4358_77 -4358_80683,205,4358_2564,Beaumont,2845,1,4358_7778195_1014024,4358_77 -4358_80683,96,4358_2565,Beaumont,10708,1,4358_7778195_1014007,4358_77 -4358_80683,205,4358_2567,Beaumont,3002,1,4358_7778195_1014025,4358_81 -4358_80683,205,4358_2568,Beaumont,2998,1,4358_7778195_1014015,4358_77 -4358_80683,96,4358_2569,Beaumont,10572,1,4358_7778195_1014015,4358_77 -4358_80760,205,4358_257,Shanard Road,3144,1,4358_7778195_9001004,4358_4 -4358_80683,205,4358_2571,Beaumont,3020,1,4358_7778195_1014028,4358_77 -4358_80683,96,4358_2572,Beaumont,10688,1,4358_7778195_1014012,4358_77 -4358_80683,205,4358_2573,Beaumont,3070,1,4358_7778195_1014001,4358_77 -4358_80683,205,4358_2575,Beaumont,2988,1,4358_7778195_1014020,4358_77 -4358_80683,96,4358_2576,Beaumont,10630,1,4358_7778195_1014011,4358_77 -4358_80683,205,4358_2577,Beaumont,2966,1,4358_7778195_1014022,4358_77 -4358_80683,96,4358_2579,Beaumont,10682,1,4358_7778195_1014004,4358_77 -4358_80683,205,4358_2580,Beaumont,2930,1,4358_7778195_1014027,4358_77 -4358_80683,205,4358_2582,Beaumont,2905,1,4358_7778195_1014009,4358_77 -4358_80683,96,4358_2583,Beaumont,10619,1,4358_7778195_1014008,4358_79 -4358_80683,205,4358_2585,Beaumont,2816,1,4358_7778195_1014011,4358_77 -4358_80683,96,4358_2586,Beaumont,10560,1,4358_7778195_1014016,4358_77 -4358_80683,205,4358_2588,Beaumont,3060,1,4358_7778195_1014014,4358_79 -4358_80683,96,4358_2589,Beaumont,10745,1,4358_7778195_1014017,4358_77 -4358_80760,205,4358_259,Shanard Road,1798,1,4358_7778195_9001012,4358_4 -4358_80683,205,4358_2590,Beaumont,2944,1,4358_7778195_1014007,4358_77 -4358_80683,96,4358_2592,Beaumont,10665,1,4358_7778195_1014014,4358_77 -4358_80683,205,4358_2593,Beaumont,2874,1,4358_7778195_1014017,4358_79 -4358_80683,205,4358_2595,Beaumont,3080,1,4358_7778195_1014018,4358_77 -4358_80683,96,4358_2596,Beaumont,10722,1,4358_7778195_1014003,4358_77 -4358_80683,205,4358_2597,Beaumont,2832,1,4358_7778195_1014030,4358_77 -4358_80683,96,4358_2599,Beaumont,10710,1,4358_7778195_1014007,4358_77 -4358_80760,205,4358_26,Shaw street,1843,0,4358_7778195_9001006,4358_1 -4358_80760,96,4358_260,Shanard Road,9519,1,4358_7778195_9001005,4358_5 -4358_80683,205,4358_2600,Beaumont,2916,1,4358_7778195_1014013,4358_77 -4358_80683,96,4358_2602,Beaumont,10574,1,4358_7778195_1014015,4358_77 -4358_80683,205,4358_2603,Beaumont,3004,1,4358_7778195_1014025,4358_79 -4358_80683,205,4358_2605,Beaumont,2990,1,4358_7778195_1014020,4358_77 -4358_80683,96,4358_2606,Beaumont,10690,1,4358_7778195_1014012,4358_77 -4358_80683,205,4358_2607,Beaumont,2968,1,4358_7778195_1014022,4358_77 -4358_80683,96,4358_2609,Beaumont,10632,1,4358_7778195_1014011,4358_77 -4358_80683,205,4358_2610,Beaumont,2932,1,4358_7778195_1014027,4358_77 -4358_80683,205,4358_2612,Beaumont,2907,1,4358_7778195_1014009,4358_77 -4358_80683,96,4358_2613,Eden Quay,10621,1,4358_7778195_1014008,4358_80 -4358_80683,205,4358_2615,Beaumont,2818,1,4358_7778195_1014011,4358_77 -4358_80683,96,4358_2616,Eden Quay,10562,1,4358_7778195_1014016,4358_80 -4358_80683,205,4358_2618,Beaumont,3062,1,4358_7778195_1014014,4358_79 -4358_80759,96,4358_2619,Rathmines,9355,0,4358_7778195_9140001,4358_82 -4358_80760,205,4358_262,Shanard Road,1850,1,4358_7778195_9001006,4358_4 -4358_80759,205,4358_2620,Rathmines,1829,0,4358_7778195_9140001,4358_82 -4358_80759,205,4358_2621,Rathmines,1612,0,4358_7778195_9140002,4358_82 -4358_80759,96,4358_2622,Rathmines,9439,0,4358_7778195_9140002,4358_83 -4358_80759,205,4358_2623,Rathmines,1866,0,4358_7778195_9140003,4358_82 -4358_80759,96,4358_2624,Rathmines,9507,0,4358_7778195_9140003,4358_82 -4358_80759,205,4358_2625,Rathmines,3096,0,4358_7778195_9140005,4358_82 -4358_80759,205,4358_2626,Rathmines,3102,0,4358_7778195_9140006,4358_82 -4358_80759,205,4358_2627,Rathmines,1648,0,4358_7778195_9140008,4358_82 -4358_80759,96,4358_2628,Rathmines,9288,0,4358_7778195_9140004,4358_82 -4358_80759,205,4358_2629,Rathmines,1669,0,4358_7778195_9140009,4358_82 -4358_80760,96,4358_263,Shanard Road,9459,1,4358_7778195_9001003,4358_4 -4358_80759,205,4358_2630,Rathmines,1899,0,4358_7778195_9140011,4358_82 -4358_80759,96,4358_2631,Rathmines,9535,0,4358_7778195_9140005,4358_82 -4358_80759,205,4358_2632,Rathmines,1622,0,4358_7778195_9140012,4358_82 -4358_80759,205,4358_2633,Rathmines,3109,0,4358_7778195_9140013,4358_82 -4358_80759,205,4358_2634,Rathmines,5981,0,4358_7778195_6826117,4358_82 -4358_80759,205,4358_2635,Rathmines,1771,0,4358_7778195_9140014,4358_82 -4358_80759,96,4358_2636,Rathmines,9587,0,4358_7778195_9140006,4358_82 -4358_80759,205,4358_2637,Rathmines,5976,0,4358_7778195_6826111,4358_82 -4358_80759,205,4358_2638,Rathmines,6542,0,4358_7778195_9140015,4358_82 -4358_80759,205,4358_2639,Rathmines,1565,0,4358_7778195_9140004,4358_82 -4358_80760,205,4358_264,Shanard Road,1706,1,4358_7778195_9001008,4358_4 -4358_80759,96,4358_2640,Rathmines,9357,0,4358_7778195_9140001,4358_82 -4358_80759,205,4358_2641,Rathmines,1889,0,4358_7778195_9140007,4358_82 -4358_80759,205,4358_2642,Rathmines,1645,0,4358_7778195_9140016,4358_82 -4358_80759,96,4358_2643,Rathmines,9441,0,4358_7778195_9140002,4358_82 -4358_80759,205,4358_2644,Rathmines,1557,0,4358_7778195_9140010,4358_82 -4358_80759,205,4358_2645,Rathmines,1831,0,4358_7778195_9140001,4358_82 -4358_80759,96,4358_2646,Rathmines,9509,0,4358_7778195_9140003,4358_83 -4358_80759,96,4358_2647,Rathmines,9601,0,4358_7778195_9140008,4358_82 -4358_80759,205,4358_2648,Rathmines,1614,0,4358_7778195_9140002,4358_83 -4358_80759,205,4358_2649,Rathmines,1868,0,4358_7778195_9140003,4358_82 -4358_80759,96,4358_2651,Rathmines,9290,0,4358_7778195_9140004,4358_85 -4358_80759,96,4358_2652,Rathmines,9537,0,4358_7778195_9140005,4358_82 -4358_80759,205,4358_2653,Rathmines,3098,0,4358_7778195_9140005,4358_83 -4358_80759,205,4358_2654,Rathmines,3104,0,4358_7778195_9140006,4358_82 -4358_80759,96,4358_2655,Rathmines,9596,0,4358_7778195_9140007,4358_83 -4358_80759,96,4358_2657,Rathmines,9608,0,4358_7778195_9140010,4358_82 -4358_80759,205,4358_2658,Rathmines,1671,0,4358_7778195_9140009,4358_83 -4358_80759,205,4358_2659,Rathmines,1624,0,4358_7778195_9140012,4358_82 -4358_80760,205,4358_266,Shanard Road,1824,1,4358_7778195_9001001,4358_4 -4358_80759,96,4358_2660,Rathmines,9589,0,4358_7778195_9140006,4358_83 -4358_80759,96,4358_2662,Rathmines,9359,0,4358_7778195_9140001,4358_82 -4358_80759,205,4358_2663,Rathmines,3111,0,4358_7778195_9140013,4358_83 -4358_80759,205,4358_2664,Rathmines,6544,0,4358_7778195_9140015,4358_82 -4358_80759,96,4358_2666,Rathmines,9443,0,4358_7778195_9140002,4358_85 -4358_80759,96,4358_2667,Rathmines,9418,0,4358_7778195_9140009,4358_82 -4358_80759,205,4358_2668,Rathmines,1891,0,4358_7778195_9140007,4358_83 -4358_80760,96,4358_267,Shanard Road,9497,1,4358_7778195_9001004,4358_4 -4358_80759,205,4358_2670,Rathmines,1647,0,4358_7778195_9140016,4358_83 -4358_80759,96,4358_2671,Rathmines,9511,0,4358_7778195_9140003,4358_85 -4358_80759,96,4358_2672,Rathmines,9603,0,4358_7778195_9140008,4358_82 -4358_80759,205,4358_2673,Rathmines,1559,0,4358_7778195_9140010,4358_83 -4358_80759,96,4358_2675,Rathmines,9618,0,4358_7778195_9140011,4358_83 -4358_80759,205,4358_2676,Rathmines,1616,0,4358_7778195_9140002,4358_85 -4358_80759,205,4358_2677,Rathmines,1870,0,4358_7778195_9140003,4358_82 -4358_80759,96,4358_2678,Rathmines,9292,0,4358_7778195_9140004,4358_83 -4358_80760,205,4358_268,Shanard Road,1661,1,4358_7778195_9001003,4358_4 -4358_80759,96,4358_2680,Rathmines,9539,0,4358_7778195_9140005,4358_82 -4358_80759,205,4358_2681,Rathmines,3100,0,4358_7778195_9140005,4358_83 -4358_80759,205,4358_2683,Rathmines,3106,0,4358_7778195_9140006,4358_82 -4358_80759,96,4358_2684,Rathmines,9598,0,4358_7778195_9140007,4358_83 -4358_80759,205,4358_2685,Rathmines,1626,0,4358_7778195_9140012,4358_82 -4358_80759,96,4358_2686,Rathmines,9610,0,4358_7778195_9140010,4358_83 -4358_80759,96,4358_2688,Rathmines,9591,0,4358_7778195_9140006,4358_82 -4358_80759,205,4358_2689,Rathmines,3113,0,4358_7778195_9140013,4358_83 -4358_80759,205,4358_2691,Rathmines,1716,0,4358_7778195_9140017,4358_82 -4358_80759,96,4358_2692,Rathmines,9361,0,4358_7778195_9140001,4358_83 -4358_80759,205,4358_2694,Rathmines,6546,0,4358_7778195_9140015,4358_82 -4358_80759,96,4358_2695,Rathmines,9445,0,4358_7778195_9140002,4358_83 -4358_80759,205,4358_2697,Rathmines,1893,0,4358_7778195_9140007,4358_83 -4358_80759,96,4358_2698,Rathmines,9309,0,4358_7778195_9140012,4358_85 -4358_80759,205,4358_2699,Rathmines,1675,0,4358_7778195_9140018,4358_82 -4358_80760,205,4358_27,Shaw street,1863,0,4358_7778195_9001009,4358_1 -4358_80760,205,4358_270,Shanard Road,1595,1,4358_7778195_9001005,4358_4 -4358_80759,96,4358_2700,Rathmines,9420,0,4358_7778195_9140009,4358_83 -4358_80759,96,4358_2702,Rathmines,9605,0,4358_7778195_9140008,4358_82 -4358_80759,205,4358_2703,Rathmines,1561,0,4358_7778195_9140010,4358_83 -4358_80759,96,4358_2705,Rathmines,9429,0,4358_7778195_9140013,4358_82 -4358_80759,205,4358_2706,Rathmines,1743,0,4358_7778195_9140019,4358_83 -4358_80759,96,4358_2708,Rathmines,9620,0,4358_7778195_9140011,4358_83 -4358_80759,205,4358_2709,Rathmines,1618,0,4358_7778195_9140002,4358_85 -4358_80760,96,4358_271,Shanard Road,9329,1,4358_7778195_9001002,4358_5 -4358_80759,205,4358_2710,Rathmines,1872,0,4358_7778195_9140003,4358_82 -4358_80759,96,4358_2711,Rathmines,9294,0,4358_7778195_9140004,4358_83 -4358_80759,205,4358_2713,Rathmines,1768,0,4358_7778195_9140020,4358_82 -4358_80759,96,4358_2714,Rathmines,9541,0,4358_7778195_9140005,4358_83 -4358_80759,205,4358_2715,Rathmines,3108,0,4358_7778195_9140006,4358_82 -4358_80759,96,4358_2717,Rathmines,9600,0,4358_7778195_9140007,4358_82 -4358_80759,205,4358_2718,Rathmines,1628,0,4358_7778195_9140012,4358_82 -4358_80759,96,4358_2719,Rathmines,9612,0,4358_7778195_9140010,4358_82 -4358_80759,205,4358_2721,Rathmines,1757,0,4358_7778195_9140021,4358_85 -4358_80759,205,4358_2722,Rathmines,1901,0,4358_7778195_9140022,4358_82 -4358_80759,96,4358_2723,Rathmines,9593,0,4358_7778195_9140006,4358_82 -4358_80759,205,4358_2724,Rathmines,3115,0,4358_7778195_9140013,4358_82 -4358_80759,205,4358_2726,Rathmines,5974,0,4358_7778195_6826210,4358_82 -4358_80759,205,4358_2727,Rathmines,1718,0,4358_7778195_9140017,4358_82 -4358_80759,96,4358_2728,Rathmines,9363,0,4358_7778195_9140001,4358_83 -4358_80759,205,4358_2729,Rathmines,1909,0,4358_7778195_9140024,4358_82 -4358_80760,205,4358_273,Shanard Road,1730,1,4358_7778195_9001013,4358_4 -4358_80759,96,4358_2731,Rathmines,9447,0,4358_7778195_9140002,4358_82 -4358_80759,205,4358_2732,Rathmines,6449,0,4358_7778195_7140662,4358_83 -4358_80759,205,4358_2733,Rathmines,6548,0,4358_7778195_9140015,4358_82 -4358_80759,205,4358_2735,Rathmines,1895,0,4358_7778195_9140007,4358_83 -4358_80759,96,4358_2736,Rathmines,9311,0,4358_7778195_9140012,4358_85 -4358_80759,205,4358_2737,Rathmines,1677,0,4358_7778195_9140018,4358_82 -4358_80759,96,4358_2738,Rathmines,9422,0,4358_7778195_9140009,4358_82 -4358_80759,205,4358_2739,Rathmines,1828,0,4358_7778195_9140026,4358_82 -4358_80760,96,4358_274,Shanard Road,9391,1,4358_7778195_9001001,4358_4 -4358_80759,96,4358_2741,Rathmines,9607,0,4358_7778195_9140008,4358_82 -4358_80759,205,4358_2742,Rathmines,1563,0,4358_7778195_9140010,4358_83 -4358_80759,205,4358_2744,Rathmines,1745,0,4358_7778195_9140019,4358_83 -4358_80759,96,4358_2745,Rathmines,9431,0,4358_7778195_9140013,4358_82 -4358_80759,205,4358_2746,Rathmines,3117,0,4358_7778195_9140023,4358_82 -4358_80759,96,4358_2748,Rathmines,9622,0,4358_7778195_9140011,4358_83 -4358_80759,205,4358_2749,Rathmines,1620,0,4358_7778195_9140002,4358_85 -4358_80760,205,4358_275,Shanard Road,1548,1,4358_7778195_9001010,4358_4 -4358_80759,205,4358_2750,Rathmines,1874,0,4358_7778195_9140003,4358_82 -4358_80759,96,4358_2751,Rathmines,9530,0,4358_7778195_9140014,4358_82 -4358_80759,205,4358_2752,Rathmines,1803,0,4358_7778195_9140025,4358_82 -4358_80759,205,4358_2754,Rathmines,1770,0,4358_7778195_9140020,4358_82 -4358_80759,96,4358_2755,Rathmines,9543,0,4358_7778195_9140005,4358_83 -4358_80759,205,4358_2756,Rathmines,1630,0,4358_7778195_9140012,4358_82 -4358_80759,96,4358_2758,Rathmines,9614,0,4358_7778195_9140010,4358_82 -4358_80759,205,4358_2759,Rathmines,1759,0,4358_7778195_9140021,4358_82 -4358_80759,96,4358_2760,Rathmines,9624,0,4358_7778195_9140015,4358_82 -4358_80759,205,4358_2761,Rathmines,1903,0,4358_7778195_9140022,4358_83 -4358_80759,205,4358_2763,Rathmines,1720,0,4358_7778195_9140017,4358_82 -4358_80759,96,4358_2765,Rathmines,9365,0,4358_7778195_9140001,4358_82 -4358_80759,205,4358_2766,Rathmines,6550,0,4358_7778195_9140015,4358_82 -4358_80759,205,4358_2768,Rathmines,1679,0,4358_7778195_9140018,4358_82 -4358_80760,205,4358_277,Shanard Road,1642,1,4358_7778195_9001011,4358_4 -4358_80759,96,4358_2770,Rathmines,9313,0,4358_7778195_9140012,4358_85 -4358_80759,96,4358_2772,Rathmines,9317,0,4358_7778195_9140017,4358_83 -4358_80759,205,4358_2773,Rathmines,1747,0,4358_7778195_9140019,4358_85 -4358_80759,96,4358_2774,Rathmines,9532,0,4358_7778195_9140014,4358_82 -4358_80759,205,4358_2776,Rathmines,1805,0,4358_7778195_9140025,4358_85 -4358_80759,205,4358_2777,Rathmines,1905,0,4358_7778195_9140022,4358_82 -4358_80759,96,4358_2778,Rathmines,9616,0,4358_7778195_9140010,4358_83 -4358_80760,96,4358_278,Shanard Road,9521,1,4358_7778195_9001005,4358_4 -4358_80759,96,4358_2781,Rathmines,9626,0,4358_7778195_9140015,4358_83 -4358_80759,205,4358_2782,Rathmines,1722,0,4358_7778195_9140017,4358_85 -4358_80759,205,4358_2784,Rathmines,6552,0,4358_7778195_9140015,4358_83 -4358_80759,96,4358_2785,Rathmines,9367,0,4358_7778195_9140001,4358_85 -4358_80759,205,4358_2787,Rathmines,1908,0,4358_7778195_9140028,4358_83 -4358_80759,96,4358_2788,Rathmines,9315,0,4358_7778195_9140012,4358_85 -4358_80759,96,4358_2789,O'Connell St,9534,0,4358_7778195_9140014,4358_84 -4358_80760,205,4358_279,Shanard Road,3146,1,4358_7778195_9001004,4358_4 -4358_80759,205,4358_2790,O'Connell St,1807,0,4358_7778195_9140025,4358_86 -4358_80759,205,4358_2792,IKEA,1564,1,4358_7778195_9140004,4358_88 -4358_80759,205,4358_2793,IKEA,1888,1,4358_7778195_9140007,4358_88 -4358_80759,96,4358_2794,IKEA,9356,1,4358_7778195_9140001,4358_88 -4358_80759,205,4358_2795,IKEA,1556,1,4358_7778195_9140010,4358_88 -4358_80759,96,4358_2796,IKEA,9440,1,4358_7778195_9140002,4358_88 -4358_80759,205,4358_2797,IKEA,1830,1,4358_7778195_9140001,4358_88 -4358_80759,205,4358_2798,IKEA,1613,1,4358_7778195_9140002,4358_88 -4358_80759,96,4358_2799,IKEA,9508,1,4358_7778195_9140003,4358_89 -4358_80760,96,4358_28,Shaw street,9452,0,4358_7778195_9001003,4358_1 -4358_80759,205,4358_2800,IKEA,1867,1,4358_7778195_9140003,4358_88 -4358_80759,96,4358_2801,IKEA,9289,1,4358_7778195_9140004,4358_88 -4358_80759,205,4358_2802,IKEA,3097,1,4358_7778195_9140005,4358_88 -4358_80759,205,4358_2803,IKEA,3103,1,4358_7778195_9140006,4358_88 -4358_80759,96,4358_2804,IKEA,9536,1,4358_7778195_9140005,4358_88 -4358_80759,205,4358_2805,IKEA,1649,1,4358_7778195_9140008,4358_88 -4358_80759,205,4358_2806,IKEA,1670,1,4358_7778195_9140009,4358_88 -4358_80759,96,4358_2807,IKEA,9595,1,4358_7778195_9140007,4358_88 -4358_80759,205,4358_2808,IKEA,1900,1,4358_7778195_9140011,4358_88 -4358_80759,205,4358_2809,IKEA,1623,1,4358_7778195_9140012,4358_88 -4358_80760,205,4358_281,Shanard Road,1800,1,4358_7778195_9001012,4358_4 -4358_80759,96,4358_2810,IKEA,9588,1,4358_7778195_9140006,4358_89 -4358_80759,205,4358_2811,IKEA,3110,1,4358_7778195_9140013,4358_88 -4358_80759,96,4358_2812,IKEA,9358,1,4358_7778195_9140001,4358_88 -4358_80759,205,4358_2813,IKEA,1772,1,4358_7778195_9140014,4358_88 -4358_80759,205,4358_2814,IKEA,6543,1,4358_7778195_9140015,4358_88 -4358_80759,96,4358_2815,IKEA,9442,1,4358_7778195_9140002,4358_89 -4358_80759,96,4358_2816,IKEA,9417,1,4358_7778195_9140009,4358_88 -4358_80759,205,4358_2817,IKEA,1890,1,4358_7778195_9140007,4358_89 -4358_80759,205,4358_2818,IKEA,1646,1,4358_7778195_9140016,4358_88 -4358_80759,96,4358_2819,IKEA,9510,1,4358_7778195_9140003,4358_89 -4358_80760,96,4358_282,Shanard Road,9461,1,4358_7778195_9001003,4358_5 -4358_80759,96,4358_2821,IKEA,9602,1,4358_7778195_9140008,4358_89 -4358_80759,205,4358_2822,IKEA,1558,1,4358_7778195_9140010,4358_90 -4358_80759,205,4358_2823,IKEA,1615,1,4358_7778195_9140002,4358_88 -4358_80759,96,4358_2824,IKEA,9291,1,4358_7778195_9140004,4358_89 -4358_80759,205,4358_2825,IKEA,1869,1,4358_7778195_9140003,4358_88 -4358_80759,96,4358_2826,IKEA,9538,1,4358_7778195_9140005,4358_89 -4358_80759,96,4358_2828,IKEA,9597,1,4358_7778195_9140007,4358_88 -4358_80759,205,4358_2829,IKEA,3099,1,4358_7778195_9140005,4358_89 -4358_80759,205,4358_2830,IKEA,3105,1,4358_7778195_9140006,4358_88 -4358_80759,96,4358_2831,IKEA,9609,1,4358_7778195_9140010,4358_89 -4358_80759,205,4358_2833,IKEA,1625,1,4358_7778195_9140012,4358_88 -4358_80759,96,4358_2834,IKEA,9590,1,4358_7778195_9140006,4358_89 -4358_80759,96,4358_2835,IKEA,9360,1,4358_7778195_9140001,4358_88 -4358_80759,205,4358_2836,IKEA,3112,1,4358_7778195_9140013,4358_89 -4358_80759,205,4358_2838,IKEA,1715,1,4358_7778195_9140017,4358_88 -4358_80759,96,4358_2839,IKEA,9444,1,4358_7778195_9140002,4358_89 -4358_80760,205,4358_284,Shanard Road,1852,1,4358_7778195_9001006,4358_4 -4358_80759,205,4358_2841,IKEA,6545,1,4358_7778195_9140015,4358_89 -4358_80759,96,4358_2842,IKEA,9308,1,4358_7778195_9140012,4358_90 -4358_80759,96,4358_2843,IKEA,9419,1,4358_7778195_9140009,4358_88 -4358_80759,205,4358_2844,IKEA,1892,1,4358_7778195_9140007,4358_89 -4358_80759,205,4358_2846,IKEA,1674,1,4358_7778195_9140018,4358_88 -4358_80759,96,4358_2847,IKEA,9604,1,4358_7778195_9140008,4358_89 -4358_80759,96,4358_2849,IKEA,9428,1,4358_7778195_9140013,4358_88 -4358_80760,96,4358_285,Shanard Road,9499,1,4358_7778195_9001004,4358_4 -4358_80759,205,4358_2850,IKEA,1560,1,4358_7778195_9140010,4358_89 -4358_80759,96,4358_2852,IKEA,9619,1,4358_7778195_9140011,4358_89 -4358_80759,205,4358_2853,IKEA,1617,1,4358_7778195_9140002,4358_90 -4358_80759,205,4358_2854,IKEA,1871,1,4358_7778195_9140003,4358_88 -4358_80759,96,4358_2855,IKEA,9293,1,4358_7778195_9140004,4358_89 -4358_80759,96,4358_2857,IKEA,9540,1,4358_7778195_9140005,4358_88 -4358_80759,205,4358_2858,IKEA,3101,1,4358_7778195_9140005,4358_89 -4358_80760,205,4358_286,Shanard Road,1708,1,4358_7778195_9001008,4358_4 -4358_80759,205,4358_2860,IKEA,3107,1,4358_7778195_9140006,4358_88 -4358_80759,96,4358_2861,IKEA,9599,1,4358_7778195_9140007,4358_89 -4358_80759,205,4358_2862,IKEA,1627,1,4358_7778195_9140012,4358_88 -4358_80759,96,4358_2863,IKEA,9611,1,4358_7778195_9140010,4358_89 -4358_80759,96,4358_2865,IKEA,9592,1,4358_7778195_9140006,4358_88 -4358_80759,205,4358_2866,IKEA,3114,1,4358_7778195_9140013,4358_89 -4358_80759,205,4358_2868,IKEA,1717,1,4358_7778195_9140017,4358_88 -4358_80759,96,4358_2869,IKEA,9362,1,4358_7778195_9140001,4358_89 -4358_80759,205,4358_2871,IKEA,6547,1,4358_7778195_9140015,4358_88 -4358_80759,96,4358_2872,IKEA,9446,1,4358_7778195_9140002,4358_89 -4358_80759,205,4358_2874,IKEA,1894,1,4358_7778195_9140007,4358_89 -4358_80759,96,4358_2875,IKEA,9310,1,4358_7778195_9140012,4358_90 -4358_80759,205,4358_2876,IKEA,1676,1,4358_7778195_9140018,4358_88 -4358_80759,96,4358_2877,IKEA,9421,1,4358_7778195_9140009,4358_89 -4358_80759,96,4358_2879,IKEA,9606,1,4358_7778195_9140008,4358_88 -4358_80760,205,4358_288,Shanard Road,1826,1,4358_7778195_9001001,4358_4 -4358_80759,205,4358_2880,IKEA,1562,1,4358_7778195_9140010,4358_89 -4358_80759,205,4358_2882,IKEA,1744,1,4358_7778195_9140019,4358_89 -4358_80759,96,4358_2883,IKEA,9430,1,4358_7778195_9140013,4358_88 -4358_80759,205,4358_2884,IKEA,3116,1,4358_7778195_9140023,4358_88 -4358_80759,96,4358_2886,IKEA,9621,1,4358_7778195_9140011,4358_89 -4358_80759,205,4358_2887,IKEA,1619,1,4358_7778195_9140002,4358_90 -4358_80759,205,4358_2888,IKEA,1873,1,4358_7778195_9140003,4358_88 -4358_80759,96,4358_2889,IKEA,9529,1,4358_7778195_9140014,4358_88 -4358_80760,96,4358_289,Shanard Road,9331,1,4358_7778195_9001002,4358_4 -4358_80759,205,4358_2890,IKEA,1802,1,4358_7778195_9140025,4358_88 -4358_80759,205,4358_2892,IKEA,1769,1,4358_7778195_9140020,4358_88 -4358_80759,96,4358_2893,IKEA,9542,1,4358_7778195_9140005,4358_89 -4358_80759,205,4358_2894,IKEA,1629,1,4358_7778195_9140012,4358_88 -4358_80759,96,4358_2896,IKEA,9613,1,4358_7778195_9140010,4358_88 -4358_80759,205,4358_2897,IKEA,1758,1,4358_7778195_9140021,4358_88 -4358_80759,96,4358_2898,IKEA,9623,1,4358_7778195_9140015,4358_88 -4358_80759,205,4358_2899,IKEA,1733,1,4358_7778195_9140027,4358_89 -4358_80760,205,4358_29,Shaw street,1699,0,4358_7778195_9001008,4358_1 -4358_80760,205,4358_290,Shanard Road,1663,1,4358_7778195_9001003,4358_4 -4358_80759,205,4358_2901,IKEA,1902,1,4358_7778195_9140022,4358_88 -4358_80759,96,4358_2902,IKEA,9594,1,4358_7778195_9140006,4358_88 -4358_80759,205,4358_2903,IKEA,5975,1,4358_7778195_6826210,4358_88 -4358_80759,205,4358_2905,IKEA,1719,1,4358_7778195_9140017,4358_88 -4358_80759,96,4358_2906,IKEA,9364,1,4358_7778195_9140001,4358_89 -4358_80759,205,4358_2908,IKEA,6450,1,4358_7778195_7140662,4358_89 -4358_80759,96,4358_2909,IKEA,9448,1,4358_7778195_9140002,4358_88 -4358_80759,205,4358_2910,IKEA,6549,1,4358_7778195_9140015,4358_88 -4358_80759,96,4358_2912,IKEA,9312,1,4358_7778195_9140012,4358_89 -4358_80759,205,4358_2913,IKEA,1678,1,4358_7778195_9140018,4358_88 -4358_80759,96,4358_2914,IKEA,9316,1,4358_7778195_9140017,4358_88 -4358_80759,96,4358_2916,IKEA,9432,1,4358_7778195_9140013,4358_88 -4358_80759,205,4358_2917,IKEA,1746,1,4358_7778195_9140019,4358_89 -4358_80759,205,4358_2919,IKEA,1621,1,4358_7778195_9140002,4358_88 -4358_80760,205,4358_292,Shanard Road,1597,1,4358_7778195_9001005,4358_4 -4358_80759,96,4358_2920,IKEA,9531,1,4358_7778195_9140014,4358_88 -4358_80759,205,4358_2922,IKEA,1804,1,4358_7778195_9140025,4358_88 -4358_80759,205,4358_2923,IKEA,1631,1,4358_7778195_9140012,4358_88 -4358_80759,96,4358_2924,IKEA,9615,1,4358_7778195_9140010,4358_89 -4358_80759,205,4358_2926,IKEA,1904,1,4358_7778195_9140022,4358_88 -4358_80759,96,4358_2927,IKEA,9625,1,4358_7778195_9140015,4358_88 -4358_80759,205,4358_2929,IKEA,1721,1,4358_7778195_9140017,4358_88 -4358_80760,96,4358_293,Shanard Road,9393,1,4358_7778195_9001001,4358_5 -4358_80759,205,4358_2931,IKEA,6551,1,4358_7778195_9140015,4358_89 -4358_80759,96,4358_2932,IKEA,9366,1,4358_7778195_9140001,4358_90 -4358_80759,205,4358_2934,IKEA,1907,1,4358_7778195_9140028,4358_89 -4358_80759,96,4358_2935,IKEA,9314,1,4358_7778195_9140012,4358_90 -4358_80759,96,4358_2936,IKEA,9533,1,4358_7778195_9140014,4358_88 -4358_80759,205,4358_2938,IKEA,1806,1,4358_7778195_9140025,4358_90 -4358_80759,205,4358_2939,IKEA,1906,1,4358_7778195_9140022,4358_88 -4358_80759,96,4358_2940,IKEA,9617,1,4358_7778195_9140010,4358_89 -4358_80759,96,4358_2943,IKEA,9627,1,4358_7778195_9140015,4358_89 -4358_80759,205,4358_2944,IKEA,1723,1,4358_7778195_9140017,4358_90 -4358_80759,205,4358_2946,O'Connell St,6553,1,4358_7778195_9140015,4358_92 -4358_80759,96,4358_2947,O'Connell St,9368,1,4358_7778195_9140001,4358_93 -4358_80761,205,4358_2948,UCD,7803,0,4358_7778195_8818112,4358_94 -4358_80761,205,4358_2949,UCD,7944,0,4358_7778195_6826102,4358_94 -4358_80760,205,4358_295,Shanard Road,1732,1,4358_7778195_9001013,4358_4 -4358_80761,205,4358_2950,UCD,5960,0,4358_7778195_6826104,4358_94 -4358_80761,205,4358_2951,UCD,5962,0,4358_7778195_6826106,4358_94 -4358_80761,205,4358_2952,UCD,5964,0,4358_7778195_6826108,4358_94 -4358_80761,205,4358_2953,Coast Road,5959,1,4358_7778195_6826202,4358_95 -4358_80761,205,4358_2954,Coast Road,5961,1,4358_7778195_6826204,4358_95 -4358_80761,205,4358_2955,Coast Road,5963,1,4358_7778195_6826206,4358_95 -4358_80761,205,4358_2956,Coast Road,7945,1,4358_7778195_6826208,4358_95 -4358_80763,205,4358_2957,Ballywaltrim,3185,0,4358_7778195_1145102,4358_96 -4358_80763,205,4358_2958,Ballywaltrim,3194,0,4358_7778195_1145103,4358_96 -4358_80763,205,4358_2959,Ballywaltrim,3310,0,4358_7778195_1145404,4358_96 -4358_80760,96,4358_296,Shanard Road,9523,1,4358_7778195_9001005,4358_4 -4358_80763,205,4358_2960,Ballywaltrim,3235,0,4358_7778195_1145405,4358_96 -4358_80763,205,4358_2961,Ballywaltrim,3244,0,4358_7778195_1145406,4358_96 -4358_80763,96,4358_2962,Ballywaltrim,10769,0,4358_7778195_1145401,4358_98 -4358_80763,205,4358_2963,Ballywaltrim,3254,0,4358_7778195_1145409,4358_96 -4358_80763,205,4358_2964,Ballywaltrim,3211,0,4358_7778195_1145108,4358_96 -4358_80763,96,4358_2965,Ballywaltrim,10862,0,4358_7778195_1145403,4358_98 -4358_80763,205,4358_2966,Ballywaltrim,3220,0,4358_7778195_1145112,4358_96 -4358_80763,96,4358_2967,Ballywaltrim,10819,0,4358_7778195_1145103,4358_96 -4358_80763,205,4358_2968,Ballywaltrim,3177,0,4358_7778195_1145101,4358_98 -4358_80763,205,4358_2969,Ballywaltrim,3262,0,4358_7778195_1145412,4358_96 -4358_80760,205,4358_297,Shanard Road,1550,1,4358_7778195_9001010,4358_4 -4358_80763,205,4358_2970,Ballywaltrim,3286,0,4358_7778195_1145113,4358_96 -4358_80763,96,4358_2971,Ballywaltrim,10852,0,4358_7778195_1145402,4358_98 -4358_80763,205,4358_2972,Ballywaltrim,3303,0,4358_7778195_1145403,4358_96 -4358_80763,96,4358_2973,Ballywaltrim,10831,0,4358_7778195_1145101,4358_96 -4358_80763,205,4358_2974,Ballywaltrim,3322,0,4358_7778195_1145407,4358_96 -4358_80763,205,4358_2975,Ballywaltrim,3229,0,4358_7778195_1145402,4358_96 -4358_80763,96,4358_2976,Ballywaltrim,10881,0,4358_7778195_1145405,4358_98 -4358_80763,205,4358_2978,Ballywaltrim,3343,0,4358_7778195_1145410,4358_96 -4358_80763,96,4358_2979,Ballywaltrim,10871,0,4358_7778195_1145102,4358_96 -4358_80763,205,4358_2980,Ballywaltrim,3369,0,4358_7778195_1145105,4358_96 -4358_80763,96,4358_2982,Ballywaltrim,10842,0,4358_7778195_1145406,4358_98 -4358_80763,205,4358_2983,Ballywaltrim,3333,0,4358_7778195_1145408,4358_100 -4358_80763,205,4358_2984,Ballywaltrim,3204,0,4358_7778195_1145104,4358_96 -4358_80763,205,4358_2985,Belfield Flyover,6096,0,4358_7778195_2822103,4358_99 -4358_80763,96,4358_2986,Ballywaltrim,10779,0,4358_7778195_1145404,4358_96 -4358_80763,205,4358_2987,Ballywaltrim,3352,0,4358_7778195_1145413,4358_96 -4358_80763,205,4358_2988,Belfield Flyover,6088,0,4358_7778195_1821101,4358_99 -4358_80763,205,4358_2989,Belfield Flyover,6098,0,4358_7778195_2822104,4358_99 -4358_80760,205,4358_299,Shanard Road,1644,1,4358_7778195_9001011,4358_4 -4358_80763,205,4358_2990,Ballywaltrim,3359,0,4358_7778195_1145106,4358_96 -4358_80763,96,4358_2991,Ballywaltrim,10841,0,4358_7778195_1145104,4358_98 -4358_80763,205,4358_2992,Bray,6091,0,4358_7778195_1821103,4358_101 -4358_80763,205,4358_2994,Ballywaltrim,3214,0,4358_7778195_1145109,4358_96 -4358_80763,96,4358_2995,Ballywaltrim,10771,0,4358_7778195_1145401,4358_96 -4358_80763,205,4358_2996,Ballywaltrim,3187,0,4358_7778195_1145102,4358_96 -4358_80763,205,4358_2998,Ballywaltrim,3196,0,4358_7778195_1145103,4358_98 -4358_80763,96,4358_2999,Ballywaltrim,10811,0,4358_7778195_1145105,4358_100 -4358_80760,205,4358_3,Shaw street,1584,0,4358_7778195_9001005,4358_1 -4358_80760,96,4358_300,Shanard Road,9463,1,4358_7778195_9001003,4358_4 -4358_80763,205,4358_3000,Ballywaltrim,3312,0,4358_7778195_1145404,4358_96 -4358_80763,96,4358_3001,Ballywaltrim,10864,0,4358_7778195_1145403,4358_96 -4358_80763,205,4358_3003,Ballywaltrim,3237,0,4358_7778195_1145405,4358_98 -4358_80763,205,4358_3004,Ballywaltrim,3273,0,4358_7778195_1145414,4358_96 -4358_80763,96,4358_3005,Ballywaltrim,10821,0,4358_7778195_1145103,4358_98 -4358_80763,205,4358_3006,Ballywaltrim,3246,0,4358_7778195_1145406,4358_96 -4358_80763,96,4358_3008,Ballywaltrim,10854,0,4358_7778195_1145402,4358_96 -4358_80763,205,4358_3009,Ballywaltrim,3256,0,4358_7778195_1145409,4358_96 -4358_80760,205,4358_301,Shanard Road,3148,1,4358_7778195_9001004,4358_4 -4358_80763,205,4358_3010,Ballywaltrim,3289,0,4358_7778195_1145114,4358_96 -4358_80763,96,4358_3011,Ballywaltrim,10795,0,4358_7778195_1145108,4358_98 -4358_80763,205,4358_3013,Ballywaltrim,3222,0,4358_7778195_1145112,4358_96 -4358_80763,96,4358_3014,Ballywaltrim,10883,0,4358_7778195_1145405,4358_96 -4358_80763,205,4358_3015,Ballywaltrim,3179,0,4358_7778195_1145101,4358_96 -4358_80763,96,4358_3017,Ballywaltrim,10833,0,4358_7778195_1145101,4358_96 -4358_80763,205,4358_3018,Ballywaltrim,3264,0,4358_7778195_1145412,4358_98 -4358_80763,205,4358_3019,Ballywaltrim,3305,0,4358_7778195_1145403,4358_96 -4358_80763,96,4358_3021,Ballywaltrim,10873,0,4358_7778195_1145102,4358_96 -4358_80763,205,4358_3022,Ballywaltrim,3324,0,4358_7778195_1145407,4358_96 -4358_80763,96,4358_3023,Ballywaltrim,10806,0,4358_7778195_1145106,4358_96 -4358_80763,205,4358_3024,Ballywaltrim,3231,0,4358_7778195_1145402,4358_98 -4358_80763,205,4358_3026,Ballywaltrim,3345,0,4358_7778195_1145410,4358_96 -4358_80763,96,4358_3027,Ballywaltrim,10844,0,4358_7778195_1145406,4358_96 -4358_80763,205,4358_3029,Ballywaltrim,3335,0,4358_7778195_1145408,4358_98 -4358_80760,96,4358_303,Shanard Road,9501,1,4358_7778195_9001004,4358_4 -4358_80763,205,4358_3030,Ballywaltrim,3206,0,4358_7778195_1145104,4358_96 -4358_80763,96,4358_3031,Ballywaltrim,10781,0,4358_7778195_1145404,4358_98 -4358_80763,205,4358_3032,Ballywaltrim,3361,0,4358_7778195_1145106,4358_96 -4358_80763,96,4358_3034,Ballywaltrim,10801,0,4358_7778195_1145107,4358_96 -4358_80763,205,4358_3035,Ballywaltrim,3291,0,4358_7778195_1145116,4358_96 -4358_80763,205,4358_3036,Ballywaltrim,3216,0,4358_7778195_1145109,4358_96 -4358_80763,96,4358_3038,Ballywaltrim,10773,0,4358_7778195_1145401,4358_100 -4358_80763,205,4358_3039,Ballywaltrim,3189,0,4358_7778195_1145102,4358_96 -4358_80760,205,4358_304,Shanard Road,1854,1,4358_7778195_9001006,4358_5 -4358_80763,96,4358_3040,Ballywaltrim,10813,0,4358_7778195_1145105,4358_96 -4358_80763,205,4358_3042,Ballywaltrim,3198,0,4358_7778195_1145103,4358_98 -4358_80763,96,4358_3043,Ballywaltrim,10866,0,4358_7778195_1145403,4358_96 -4358_80763,205,4358_3044,Ballywaltrim,3314,0,4358_7778195_1145404,4358_98 -4358_80763,205,4358_3046,Ballywaltrim,3239,0,4358_7778195_1145405,4358_98 -4358_80763,96,4358_3047,Ballywaltrim,10823,0,4358_7778195_1145103,4358_96 -4358_80763,205,4358_3048,Ballywaltrim,3275,0,4358_7778195_1145414,4358_96 -4358_80763,96,4358_3050,Ballywaltrim,10789,0,4358_7778195_1145109,4358_98 -4358_80763,205,4358_3051,Ballywaltrim,3282,0,4358_7778195_1145415,4358_100 -4358_80763,205,4358_3052,Ballywaltrim,3248,0,4358_7778195_1145406,4358_96 -4358_80763,96,4358_3053,Ballywaltrim,10856,0,4358_7778195_1145402,4358_96 -4358_80763,205,4358_3055,Ballywaltrim,3258,0,4358_7778195_1145409,4358_98 -4358_80763,96,4358_3056,Ballywaltrim,10797,0,4358_7778195_1145108,4358_96 -4358_80763,205,4358_3057,Ballywaltrim,3224,0,4358_7778195_1145112,4358_98 -4358_80763,205,4358_3058,Ballywaltrim,3181,0,4358_7778195_1145101,4358_96 -4358_80760,205,4358_306,Shanard Road,1710,1,4358_7778195_9001008,4358_4 -4358_80763,96,4358_3060,Ballywaltrim,10885,0,4358_7778195_1145405,4358_96 -4358_80763,205,4358_3061,Ballywaltrim,3266,0,4358_7778195_1145412,4358_96 -4358_80763,205,4358_3062,Ballywaltrim,3307,0,4358_7778195_1145403,4358_96 -4358_80763,96,4358_3063,Ballywaltrim,10835,0,4358_7778195_1145101,4358_98 -4358_80763,205,4358_3065,Ballywaltrim,3326,0,4358_7778195_1145407,4358_96 -4358_80763,96,4358_3066,Ballywaltrim,10875,0,4358_7778195_1145102,4358_96 -4358_80763,205,4358_3067,Ballywaltrim,3233,0,4358_7778195_1145402,4358_96 -4358_80763,205,4358_3069,Ballywaltrim,3347,0,4358_7778195_1145410,4358_96 -4358_80760,96,4358_307,Shanard Road,9333,1,4358_7778195_9001002,4358_5 -4358_80763,96,4358_3070,Ballywaltrim,10808,0,4358_7778195_1145106,4358_98 -4358_80763,205,4358_3072,Ballywaltrim,3299,0,4358_7778195_1145117,4358_98 -4358_80763,205,4358_3073,Kilmacanogue,6631,0,4358_7778195_1821201,4358_97 -4358_80763,96,4358_3074,Ballywaltrim,10846,0,4358_7778195_1145406,4358_96 -4358_80763,205,4358_3075,Ballywaltrim,3337,0,4358_7778195_1145408,4358_96 -4358_80763,205,4358_3076,Ballywaltrim,3208,0,4358_7778195_1145104,4358_96 -4358_80763,205,4358_3077,Kilmacanogue,6629,0,4358_7778195_1821203,4358_97 -4358_80763,96,4358_3078,Ballywaltrim,10783,0,4358_7778195_1145404,4358_98 -4358_80763,205,4358_3080,Ballywaltrim,3363,0,4358_7778195_1145106,4358_96 -4358_80763,96,4358_3081,Ballywaltrim,10803,0,4358_7778195_1145107,4358_96 -4358_80763,205,4358_3083,Ballywaltrim,3293,0,4358_7778195_1145116,4358_98 -4358_80763,205,4358_3084,Ballywaltrim,3353,0,4358_7778195_1145416,4358_96 -4358_80763,96,4358_3085,Ballywaltrim,10775,0,4358_7778195_1145401,4358_98 -4358_80763,205,4358_3086,Ballywaltrim,6093,0,4358_7778195_2822203,4358_96 -4358_80763,205,4358_3087,Ballywaltrim,3218,0,4358_7778195_1145109,4358_96 -4358_80763,96,4358_3089,Ballywaltrim,10815,0,4358_7778195_1145105,4358_96 -4358_80760,205,4358_309,Shanard Road,1665,1,4358_7778195_9001003,4358_4 -4358_80763,205,4358_3090,Ballywaltrim,3191,0,4358_7778195_1145102,4358_96 -4358_80763,96,4358_3092,Ballywaltrim,10868,0,4358_7778195_1145403,4358_98 -4358_80763,205,4358_3093,Ballywaltrim,3200,0,4358_7778195_1145103,4358_100 -4358_80763,205,4358_3094,Ballywaltrim,3316,0,4358_7778195_1145404,4358_96 -4358_80763,96,4358_3095,Ballywaltrim,10825,0,4358_7778195_1145103,4358_96 -4358_80763,205,4358_3097,Ballywaltrim,3241,0,4358_7778195_1145405,4358_98 -4358_80763,205,4358_3098,Ballywaltrim,3277,0,4358_7778195_1145414,4358_96 -4358_80763,205,4358_3099,Kilmacanogue,6632,0,4358_7778195_1821201,4358_97 -4358_80760,205,4358_31,Shaw street,1817,0,4358_7778195_9001001,4358_1 -4358_80760,96,4358_310,Shanard Road,9395,1,4358_7778195_9001001,4358_5 -4358_80763,96,4358_3100,Ballywaltrim,10791,0,4358_7778195_1145109,4358_98 -4358_80763,205,4358_3101,Kilmacanogue,6630,0,4358_7778195_1821203,4358_97 -4358_80763,205,4358_3103,Ballywaltrim,3284,0,4358_7778195_1145415,4358_98 -4358_80763,96,4358_3104,Ballywaltrim,10858,0,4358_7778195_1145402,4358_96 -4358_80763,205,4358_3105,Ballywaltrim,3250,0,4358_7778195_1145406,4358_96 -4358_80763,96,4358_3106,Ballywaltrim,10799,0,4358_7778195_1145108,4358_96 -4358_80763,205,4358_3108,Ballywaltrim,3260,0,4358_7778195_1145409,4358_100 -4358_80763,205,4358_3109,Ballywaltrim,3226,0,4358_7778195_1145112,4358_96 -4358_80763,96,4358_3110,Ballywaltrim,10887,0,4358_7778195_1145405,4358_96 -4358_80763,205,4358_3112,Ballywaltrim,3183,0,4358_7778195_1145101,4358_98 -4358_80763,205,4358_3113,Ballywaltrim,3357,0,4358_7778195_1145418,4358_96 -4358_80763,96,4358_3114,Ballywaltrim,10837,0,4358_7778195_1145101,4358_98 -4358_80763,205,4358_3116,Ballywaltrim,3268,0,4358_7778195_1145412,4358_98 -4358_80763,96,4358_3117,Ballywaltrim,10877,0,4358_7778195_1145102,4358_96 -4358_80763,205,4358_3118,Ballywaltrim,3309,0,4358_7778195_1145403,4358_98 -4358_80763,205,4358_3119,Ballywaltrim,3328,0,4358_7778195_1145407,4358_96 -4358_80760,96,4358_312,Shanard Road,9525,1,4358_7778195_9001005,4358_4 -4358_80763,205,4358_3121,Ballywaltrim,3349,0,4358_7778195_1145410,4358_96 -4358_80763,96,4358_3122,Ballywaltrim,10848,0,4358_7778195_1145406,4358_98 -4358_80763,205,4358_3123,Ballywaltrim,3301,0,4358_7778195_1145117,4358_96 -4358_80763,96,4358_3125,Ballywaltrim,10785,0,4358_7778195_1145404,4358_96 -4358_80763,205,4358_3126,Ballywaltrim,3339,0,4358_7778195_1145408,4358_98 -4358_80763,205,4358_3127,Ballywaltrim,3210,0,4358_7778195_1145104,4358_96 -4358_80763,205,4358_3129,Ballywaltrim,3365,0,4358_7778195_1145106,4358_96 -4358_80760,205,4358_313,Shanard Road,1599,1,4358_7778195_9001005,4358_5 -4358_80763,96,4358_3130,Ballywaltrim,10777,0,4358_7778195_1145401,4358_98 -4358_80763,205,4358_3132,Ballywaltrim,3295,0,4358_7778195_1145116,4358_98 -4358_80763,205,4358_3133,Ballywaltrim,3355,0,4358_7778195_1145416,4358_96 -4358_80763,96,4358_3134,Ballywaltrim,10817,0,4358_7778195_1145105,4358_98 -4358_80763,205,4358_3135,Ballywaltrim,3193,0,4358_7778195_1145102,4358_96 -4358_80763,96,4358_3137,Ballywaltrim,10827,0,4358_7778195_1145103,4358_96 -4358_80763,205,4358_3138,Ballywaltrim,3202,0,4358_7778195_1145103,4358_98 -4358_80763,205,4358_3139,Ballywaltrim,3318,0,4358_7778195_1145404,4358_96 -4358_80763,205,4358_3141,Ballywaltrim,3243,0,4358_7778195_1145405,4358_96 -4358_80763,96,4358_3142,Ballywaltrim,10793,0,4358_7778195_1145109,4358_98 -4358_80763,205,4358_3143,Ballywaltrim,3279,0,4358_7778195_1145414,4358_96 -4358_80763,96,4358_3145,Ballywaltrim,10860,0,4358_7778195_1145402,4358_96 -4358_80763,205,4358_3146,Ballywaltrim,3252,0,4358_7778195_1145406,4358_96 -4358_80763,96,4358_3148,Ballywaltrim,10889,0,4358_7778195_1145405,4358_96 -4358_80760,205,4358_315,Shanard Road,1552,1,4358_7778195_9001010,4358_4 -4358_80763,205,4358_3150,Ballywaltrim,3270,0,4358_7778195_1145412,4358_98 -4358_80763,96,4358_3151,Ballywaltrim,10879,0,4358_7778195_1145102,4358_96 -4358_80763,205,4358_3152,Ballywaltrim,3330,0,4358_7778195_1145407,4358_96 -4358_80763,96,4358_3154,Ballywaltrim,10839,0,4358_7778195_1145101,4358_96 -4358_80763,205,4358_3155,Ballywaltrim,3341,0,4358_7778195_1145408,4358_96 -4358_80763,96,4358_3157,Ballywaltrim,10850,0,4358_7778195_1145406,4358_96 -4358_80763,205,4358_3159,Ballywaltrim,3367,0,4358_7778195_1145106,4358_98 -4358_80760,96,4358_316,Shanard Road,9465,1,4358_7778195_9001003,4358_5 -4358_80763,96,4358_3161,Ballywaltrim,10787,0,4358_7778195_1145404,4358_98 -4358_80763,205,4358_3162,Ballywaltrim,3297,0,4358_7778195_1145116,4358_100 -4358_80763,96,4358_3164,Ballywaltrim,10829,0,4358_7778195_1145103,4358_96 -4358_80763,205,4358_3165,Ballywaltrim,3320,0,4358_7778195_1145404,4358_98 -4358_80763,205,4358_3166,Heuston Station,3176,1,4358_7778195_1145101,4358_103 -4358_80763,205,4358_3167,Heuston Station,3302,1,4358_7778195_1145403,4358_103 -4358_80763,205,4358_3168,Heuston Station,3321,1,4358_7778195_1145407,4358_103 -4358_80763,96,4358_3169,Heuston Station,10851,1,4358_7778195_1145402,4358_107 -4358_80763,205,4358_3170,Heuston Station,3342,1,4358_7778195_1145410,4358_103 -4358_80763,205,4358_3171,Heuston Station,3368,1,4358_7778195_1145105,4358_103 -4358_80763,96,4358_3172,Heuston Station,10830,1,4358_7778195_1145101,4358_107 -4358_80763,205,4358_3173,Heuston Station,3203,1,4358_7778195_1145104,4358_103 -4358_80763,205,4358_3174,Heuston Station,3351,1,4358_7778195_1145413,4358_103 -4358_80763,96,4358_3175,Heuston Station,10870,1,4358_7778195_1145102,4358_107 -4358_80763,205,4358_3177,Heuston Station,3358,1,4358_7778195_1145106,4358_107 -4358_80763,205,4358_3178,Heuston Station,123,1,4358_7778195_2822101,4358_104 -4358_80763,205,4358_3179,Heuston Station,3213,1,4358_7778195_1145109,4358_103 -4358_80760,96,4358_318,Shanard Road,9503,1,4358_7778195_9001004,4358_4 -4358_80763,205,4358_3180,Heuston Station,6095,1,4358_7778195_2822103,4358_109 -4358_80763,96,4358_3181,Heuston Station,10778,1,4358_7778195_1145404,4358_107 -4358_80763,205,4358_3182,Heuston Station,6097,1,4358_7778195_2822104,4358_106 -4358_80763,205,4358_3183,Heuston Station,6087,1,4358_7778195_1821101,4358_106 -4358_80763,205,4358_3184,Heuston Station,3186,1,4358_7778195_1145102,4358_103 -4358_80763,96,4358_3185,Heuston Station,10840,1,4358_7778195_1145104,4358_103 -4358_80763,205,4358_3186,Heuston Station,3195,1,4358_7778195_1145103,4358_107 -4358_80763,205,4358_3187,Heuston Station,6090,1,4358_7778195_1821103,4358_106 -4358_80763,205,4358_3189,Heuston Station,3311,1,4358_7778195_1145404,4358_103 -4358_80760,205,4358_319,Shanard Road,3150,1,4358_7778195_9001004,4358_5 -4358_80763,96,4358_3190,Heuston Station,10770,1,4358_7778195_1145401,4358_103 -4358_80763,205,4358_3191,Heuston Station,3236,1,4358_7778195_1145405,4358_103 -4358_80763,205,4358_3192,Heuston Station,3272,1,4358_7778195_1145414,4358_103 -4358_80763,205,4358_3193,Heuston Station,200,1,4358_7778195_1821104,4358_106 -4358_80763,96,4358_3195,Heuston Station,10810,1,4358_7778195_1145105,4358_111 -4358_80763,205,4358_3196,Heuston Station,3245,1,4358_7778195_1145406,4358_103 -4358_80763,96,4358_3197,Heuston Station,10863,1,4358_7778195_1145403,4358_103 -4358_80763,205,4358_3198,Heuston Station,3255,1,4358_7778195_1145409,4358_103 -4358_80763,96,4358_3199,Heuston Station,10820,1,4358_7778195_1145103,4358_103 -4358_80760,96,4358_32,Shaw street,9490,0,4358_7778195_9001004,4358_1 -4358_80763,205,4358_3201,Heuston Station,3288,1,4358_7778195_1145114,4358_111 -4358_80763,205,4358_3202,Heuston Station,3212,1,4358_7778195_1145108,4358_103 -4358_80763,96,4358_3203,Heuston Station,10853,1,4358_7778195_1145402,4358_103 -4358_80763,205,4358_3204,Heuston Station,3221,1,4358_7778195_1145112,4358_103 -4358_80763,205,4358_3206,Heuston Station,3178,1,4358_7778195_1145101,4358_103 -4358_80763,96,4358_3207,Heuston Station,10832,1,4358_7778195_1145101,4358_107 -4358_80763,205,4358_3208,Heuston Station,3263,1,4358_7778195_1145412,4358_103 -4358_80760,96,4358_321,Shanard Road,9335,1,4358_7778195_9001002,4358_4 -4358_80763,96,4358_3210,Heuston Station,10882,1,4358_7778195_1145405,4358_103 -4358_80763,205,4358_3211,Heuston Station,3287,1,4358_7778195_1145113,4358_103 -4358_80763,96,4358_3212,Heuston Station,10872,1,4358_7778195_1145102,4358_103 -4358_80763,205,4358_3213,Heuston Station,3304,1,4358_7778195_1145403,4358_107 -4358_80763,205,4358_3215,Heuston Station,3323,1,4358_7778195_1145407,4358_103 -4358_80763,96,4358_3216,Heuston Station,10805,1,4358_7778195_1145106,4358_103 -4358_80763,205,4358_3217,Heuston Station,3230,1,4358_7778195_1145402,4358_103 -4358_80763,205,4358_3219,Heuston Station,3344,1,4358_7778195_1145410,4358_103 -4358_80760,205,4358_322,Shanard Road,1808,1,4358_7778195_9001014,4358_5 -4358_80763,96,4358_3220,Heuston Station,10843,1,4358_7778195_1145406,4358_107 -4358_80763,205,4358_3222,Heuston Station,3334,1,4358_7778195_1145408,4358_107 -4358_80763,96,4358_3223,Heuston Station,10780,1,4358_7778195_1145404,4358_103 -4358_80763,205,4358_3224,Heuston Station,3205,1,4358_7778195_1145104,4358_103 -4358_80763,205,4358_3225,Heuston Station,3360,1,4358_7778195_1145106,4358_103 -4358_80763,96,4358_3226,Heuston Station,10800,1,4358_7778195_1145107,4358_107 -4358_80763,205,4358_3228,Heuston Station,3290,1,4358_7778195_1145116,4358_103 -4358_80763,96,4358_3229,Heuston Station,10772,1,4358_7778195_1145401,4358_103 -4358_80763,205,4358_3230,Heuston Station,3215,1,4358_7778195_1145109,4358_103 -4358_80763,205,4358_3232,Heuston Station,3188,1,4358_7778195_1145102,4358_103 -4358_80763,96,4358_3233,Heuston Station,10812,1,4358_7778195_1145105,4358_107 -4358_80763,205,4358_3235,Heuston Station,3197,1,4358_7778195_1145103,4358_107 -4358_80763,96,4358_3236,Heuston Station,10865,1,4358_7778195_1145403,4358_103 -4358_80763,205,4358_3237,Heuston Station,3313,1,4358_7778195_1145404,4358_103 -4358_80763,96,4358_3238,Heuston Station,10822,1,4358_7778195_1145103,4358_103 -4358_80760,205,4358_324,Shanard Road,1712,1,4358_7778195_9001008,4358_4 -4358_80763,205,4358_3240,Heuston Station,3238,1,4358_7778195_1145405,4358_111 -4358_80763,205,4358_3241,Heuston Station,3274,1,4358_7778195_1145414,4358_103 -4358_80763,96,4358_3242,Heuston Station,10788,1,4358_7778195_1145109,4358_103 -4358_80763,205,4358_3244,Heuston Station,3281,1,4358_7778195_1145415,4358_107 -4358_80763,205,4358_3245,Heuston Station,3247,1,4358_7778195_1145406,4358_103 -4358_80763,96,4358_3246,Heuston Station,10855,1,4358_7778195_1145402,4358_107 -4358_80763,205,4358_3248,Heuston Station,3257,1,4358_7778195_1145409,4358_107 -4358_80763,96,4358_3249,Heuston Station,10796,1,4358_7778195_1145108,4358_103 -4358_80760,96,4358_325,Shanard Road,9397,1,4358_7778195_9001001,4358_5 -4358_80763,205,4358_3250,Heuston Station,3223,1,4358_7778195_1145112,4358_103 -4358_80763,205,4358_3251,Heuston Station,3180,1,4358_7778195_1145101,4358_103 -4358_80763,96,4358_3252,Heuston Station,10884,1,4358_7778195_1145405,4358_107 -4358_80763,205,4358_3254,Heuston Station,3265,1,4358_7778195_1145412,4358_103 -4358_80763,96,4358_3255,Heuston Station,10834,1,4358_7778195_1145101,4358_103 -4358_80763,205,4358_3256,Heuston Station,3306,1,4358_7778195_1145403,4358_103 -4358_80763,205,4358_3258,Heuston Station,3325,1,4358_7778195_1145407,4358_103 -4358_80763,96,4358_3259,Heuston Station,10874,1,4358_7778195_1145102,4358_107 -4358_80763,205,4358_3260,Heuston Station,3232,1,4358_7778195_1145402,4358_103 -4358_80763,96,4358_3262,Heuston Station,10807,1,4358_7778195_1145106,4358_103 -4358_80763,205,4358_3263,Heuston Station,3346,1,4358_7778195_1145410,4358_103 -4358_80763,96,4358_3265,Heuston Station,10845,1,4358_7778195_1145406,4358_107 -4358_80763,205,4358_3266,Heuston Station,3298,1,4358_7778195_1145117,4358_111 -4358_80763,205,4358_3267,Heuston Station,3336,1,4358_7778195_1145408,4358_103 -4358_80763,96,4358_3268,Heuston Station,10782,1,4358_7778195_1145404,4358_103 -4358_80763,205,4358_3269,Heuston Station,3207,1,4358_7778195_1145104,4358_103 -4358_80760,96,4358_327,Shanard Road,9527,1,4358_7778195_9001005,4358_4 -4358_80763,205,4358_3271,Heuston Station,3362,1,4358_7778195_1145106,4358_103 -4358_80763,96,4358_3272,Heuston Station,10802,1,4358_7778195_1145107,4358_107 -4358_80763,205,4358_3274,Heuston Station,3292,1,4358_7778195_1145116,4358_107 -4358_80763,96,4358_3275,Heuston Station,10774,1,4358_7778195_1145401,4358_103 -4358_80763,205,4358_3276,Heuston Station,3217,1,4358_7778195_1145109,4358_103 -4358_80763,205,4358_3278,Heuston Station,3190,1,4358_7778195_1145102,4358_107 -4358_80763,96,4358_3279,Heuston Station,10814,1,4358_7778195_1145105,4358_111 -4358_80760,205,4358_328,Shanard Road,1667,1,4358_7778195_9001003,4358_5 -4358_80763,205,4358_3280,Heuston Station,3199,1,4358_7778195_1145103,4358_103 -4358_80763,96,4358_3281,Heuston Station,10867,1,4358_7778195_1145403,4358_103 -4358_80763,205,4358_3283,Heuston Station,3315,1,4358_7778195_1145404,4358_107 -4358_80763,96,4358_3284,Heuston Station,10824,1,4358_7778195_1145103,4358_103 -4358_80763,205,4358_3285,Heuston Station,3240,1,4358_7778195_1145405,4358_107 -4358_80763,205,4358_3286,Heuston Station,6092,1,4358_7778195_2822203,4358_102 -4358_80763,205,4358_3287,Heuston Station,6427,1,4358_7778195_2822204,4358_112 -4358_80763,205,4358_3288,Heuston Station,3276,1,4358_7778195_1145414,4358_103 -4358_80763,96,4358_3290,Heuston Station,10790,1,4358_7778195_1145109,4358_103 -4358_80763,205,4358_3291,Heuston Station,3283,1,4358_7778195_1145415,4358_103 -4358_80763,205,4358_3292,Heuston Station,3249,1,4358_7778195_1145406,4358_103 -4358_80763,96,4358_3294,Heuston Station,10857,1,4358_7778195_1145402,4358_111 -4358_80763,205,4358_3295,Heuston Station,3259,1,4358_7778195_1145409,4358_103 -4358_80763,96,4358_3296,Heuston Station,10798,1,4358_7778195_1145108,4358_103 -4358_80763,205,4358_3297,Heuston Station,3225,1,4358_7778195_1145112,4358_103 -4358_80763,205,4358_3299,Heuston Station,3182,1,4358_7778195_1145101,4358_103 -4358_80760,205,4358_33,Shaw street,1654,0,4358_7778195_9001003,4358_1 -4358_80760,205,4358_330,Shanard Road,1601,1,4358_7778195_9001005,4358_4 -4358_80763,96,4358_3300,Heuston Station,10886,1,4358_7778195_1145405,4358_107 -4358_80763,205,4358_3301,Heuston Station,3356,1,4358_7778195_1145418,4358_103 -4358_80763,96,4358_3303,Heuston Station,10836,1,4358_7778195_1145101,4358_103 -4358_80763,205,4358_3304,Heuston Station,3267,1,4358_7778195_1145412,4358_103 -4358_80763,96,4358_3305,Heuston Station,10876,1,4358_7778195_1145102,4358_103 -4358_80763,205,4358_3307,Heuston Station,3308,1,4358_7778195_1145403,4358_111 -4358_80763,205,4358_3308,Heuston Station,3327,1,4358_7778195_1145407,4358_103 -4358_80763,96,4358_3309,Heuston Station,10809,1,4358_7778195_1145106,4358_103 -4358_80760,96,4358_331,Shanard Road,9467,1,4358_7778195_9001003,4358_5 -4358_80763,205,4358_3311,Heuston Station,3234,1,4358_7778195_1145402,4358_107 -4358_80763,205,4358_3312,Heuston Station,3348,1,4358_7778195_1145410,4358_103 -4358_80763,96,4358_3313,Heuston Station,10847,1,4358_7778195_1145406,4358_107 -4358_80763,205,4358_3314,Heuston Station,3300,1,4358_7778195_1145117,4358_103 -4358_80763,96,4358_3316,Heuston Station,10784,1,4358_7778195_1145404,4358_103 -4358_80763,205,4358_3317,Heuston Station,3338,1,4358_7778195_1145408,4358_103 -4358_80763,205,4358_3318,Heuston Station,3209,1,4358_7778195_1145104,4358_103 -4358_80763,96,4358_3320,Heuston Station,10804,1,4358_7778195_1145107,4358_111 -4358_80763,205,4358_3321,Heuston Station,3364,1,4358_7778195_1145106,4358_103 -4358_80763,96,4358_3322,Heuston Station,10776,1,4358_7778195_1145401,4358_103 -4358_80763,205,4358_3324,Heuston Station,3294,1,4358_7778195_1145116,4358_107 -4358_80763,205,4358_3325,Heuston Station,3354,1,4358_7778195_1145416,4358_103 -4358_80763,96,4358_3326,Heuston Station,10816,1,4358_7778195_1145105,4358_107 -4358_80763,205,4358_3327,Heuston Station,3219,1,4358_7778195_1145109,4358_103 -4358_80763,96,4358_3329,Heuston Station,10869,1,4358_7778195_1145403,4358_103 -4358_80760,96,4358_333,Shanard Road,9505,1,4358_7778195_9001004,4358_4 -4358_80763,205,4358_3330,Heuston Station,3192,1,4358_7778195_1145102,4358_103 -4358_80763,96,4358_3331,Heuston Station,10826,1,4358_7778195_1145103,4358_103 -4358_80763,205,4358_3333,Heuston Station,3201,1,4358_7778195_1145103,4358_111 -4358_80763,205,4358_3334,Heuston Station,3317,1,4358_7778195_1145404,4358_103 -4358_80763,205,4358_3335,Heuston Station,3242,1,4358_7778195_1145405,4358_103 -4358_80763,96,4358_3337,Heuston Station,10792,1,4358_7778195_1145109,4358_111 -4358_80763,205,4358_3338,Heuston Station,3278,1,4358_7778195_1145414,4358_103 -4358_80763,205,4358_3339,Heuston Station,3285,1,4358_7778195_1145415,4358_103 -4358_80760,205,4358_334,Shanard Road,1554,1,4358_7778195_9001010,4358_5 -4358_80763,96,4358_3341,Heuston Station,10859,1,4358_7778195_1145402,4358_111 -4358_80763,205,4358_3342,Heuston Station,3251,1,4358_7778195_1145406,4358_103 -4358_80763,96,4358_3344,Heuston Station,10888,1,4358_7778195_1145405,4358_107 -4358_80763,205,4358_3345,Heuston Station,3261,1,4358_7778195_1145409,4358_111 -4358_80763,205,4358_3346,Heuston Station,3227,1,4358_7778195_1145112,4358_103 -4358_80763,96,4358_3347,Heuston Station,10878,1,4358_7778195_1145102,4358_103 -4358_80763,205,4358_3349,Heuston Station,3184,1,4358_7778195_1145101,4358_111 -4358_80763,205,4358_3350,Heuston Station,3269,1,4358_7778195_1145412,4358_103 -4358_80763,205,4358_3351,Heuston Station,3329,1,4358_7778195_1145407,4358_103 -4358_80763,96,4358_3353,Heuston Station,10838,1,4358_7778195_1145101,4358_111 -4358_80763,205,4358_3354,Heuston Station,3350,1,4358_7778195_1145410,4358_103 -4358_80763,96,4358_3355,Heuston Station,10849,1,4358_7778195_1145406,4358_103 -4358_80763,205,4358_3356,Heuston Station,3340,1,4358_7778195_1145408,4358_107 -4358_80763,205,4358_3359,Heuston Station,3366,1,4358_7778195_1145106,4358_107 -4358_80760,205,4358_336,Shanard Road,3152,1,4358_7778195_9001004,4358_4 -4358_80763,96,4358_3360,Heuston Station,10786,1,4358_7778195_1145404,4358_111 -4358_80763,205,4358_3362,Heuston Station,3296,1,4358_7778195_1145116,4358_107 -4358_80763,96,4358_3363,Heuston Station,10818,1,4358_7778195_1145105,4358_111 -4358_80763,96,4358_3364,Heuston Station,10828,1,4358_7778195_1145103,4358_103 -4358_80763,205,4358_3365,Heuston Station,3319,1,4358_7778195_1145404,4358_107 -4358_80763,205,4358_3367,Heuston Station,3280,1,4358_7778195_1145414,4358_103 -4358_80763,96,4358_3368,Heuston Station,10794,1,4358_7778195_1145109,4358_107 -4358_80760,96,4358_337,Shanard Road,9337,1,4358_7778195_9001002,4358_5 -4358_80763,205,4358_3370,Heuston Station,3253,1,4358_7778195_1145406,4358_103 -4358_80763,96,4358_3372,Heuston Station,10861,1,4358_7778195_1145402,4358_111 -4358_80763,96,4358_3374,Aston Quay,10890,1,4358_7778195_1145405,4358_105 -4358_80763,205,4358_3375,Aston Quay,3271,1,4358_7778195_1145412,4358_108 -4358_80763,205,4358_3376,Aston Quay,3331,1,4358_7778195_1145407,4358_105 -4358_80763,96,4358_3378,Aston Quay,10880,1,4358_7778195_1145102,4358_110 -4358_80684,96,4358_3380,Ballycullen Road,9628,0,4358_7778195_9015001,4358_114 -4358_80684,205,4358_3381,Ballycullen Road,1925,0,4358_7778195_9015001,4358_115 -4358_80684,205,4358_3382,Ballycullen Road,2032,0,4358_7778195_9015002,4358_113 -4358_80684,96,4358_3384,Ballycullen Road,9661,0,4358_7778195_9015002,4358_115 -4358_80684,96,4358_3386,Ballycullen Road,9639,0,4358_7778195_9015003,4358_114 -4358_80684,205,4358_3387,Ballycullen Road,782,0,4358_7778195_1015003,4358_115 -4358_80684,205,4358_3388,Ballycullen Road,1917,0,4358_7778195_9015003,4358_113 -4358_80684,96,4358_3389,Ballycullen Road,8597,0,4358_7778195_1015001,4358_113 -4358_80760,205,4358_339,Shanard Road,1810,1,4358_7778195_9001014,4358_4 -4358_80684,205,4358_3390,Ballycullen Road,1947,0,4358_7778195_9015004,4358_113 -4358_80684,96,4358_3391,Ballycullen Road,9646,0,4358_7778195_9015004,4358_113 -4358_80684,205,4358_3392,Ballycullen Road,648,0,4358_7778195_1015001,4358_114 -4358_80684,205,4358_3394,Ballycullen Road,1977,0,4358_7778195_9015005,4358_113 -4358_80684,96,4358_3395,Ballycullen Road,8462,0,4358_7778195_1015002,4358_113 -4358_80684,205,4358_3396,Ballycullen Road,730,0,4358_7778195_1015008,4358_113 -4358_80684,96,4358_3398,Ballycullen Road,8490,0,4358_7778195_1015005,4358_114 -4358_80684,205,4358_3399,Ballycullen Road,640,0,4358_7778195_1015002,4358_113 -4358_80760,96,4358_34,Shaw street,9322,0,4358_7778195_9001002,4358_1 -4358_80760,205,4358_340,Shanard Road,1714,1,4358_7778195_9001008,4358_4 -4358_80684,205,4358_3400,Ballycullen Road,568,0,4358_7778195_1015009,4358_113 -4358_80684,96,4358_3401,Ballycullen Road,8474,0,4358_7778195_1015003,4358_113 -4358_80684,205,4358_3402,Ballycullen Road,2011,0,4358_7778195_9015006,4358_113 -4358_80684,205,4358_3403,Ballycullen Road,775,0,4358_7778195_1015004,4358_113 -4358_80684,96,4358_3404,Ballycullen Road,9630,0,4358_7778195_9015001,4358_113 -4358_80684,205,4358_3406,Ballycullen Road,792,0,4358_7778195_1015005,4358_113 -4358_80684,205,4358_3407,Ballycullen Road,6469,0,4358_7778195_7015574,4358_113 -4358_80684,205,4358_3408,Ballycullen Road,1927,0,4358_7778195_9015001,4358_113 -4358_80684,96,4358_3409,Ballycullen Road,8480,0,4358_7778195_1015004,4358_113 -4358_80760,96,4358_341,Shanard Road,9399,1,4358_7778195_9001001,4358_5 -4358_80684,205,4358_3410,Ballycullen Road,1992,0,4358_7778195_9015007,4358_113 -4358_80684,205,4358_3411,Ballycullen Road,2013,0,4358_7778195_9015008,4358_113 -4358_80684,96,4358_3413,Ballycullen Road,9663,0,4358_7778195_9015002,4358_114 -4358_80684,205,4358_3414,Ballycullen Road,6477,0,4358_7778195_3015508,4358_113 -4358_80684,205,4358_3415,Ballycullen Road,762,0,4358_7778195_1015006,4358_113 -4358_80684,205,4358_3416,Ballycullen Road,708,0,4358_7778195_1015007,4358_113 -4358_80684,96,4358_3417,Ballycullen Road,8505,0,4358_7778195_1015006,4358_113 -4358_80684,205,4358_3418,Ballycullen Road,2035,0,4358_7778195_9015009,4358_113 -4358_80684,96,4358_3419,Ballycullen Road,9641,0,4358_7778195_9015003,4358_113 -4358_80684,205,4358_3421,Ballycullen Road,2037,0,4358_7778195_9015010,4358_115 -4358_80684,205,4358_3422,Ballycullen Road,2034,0,4358_7778195_9015002,4358_113 -4358_80684,96,4358_3423,Ballycullen Road,8599,0,4358_7778195_1015001,4358_113 -4358_80684,205,4358_3424,Ballycullen Road,600,0,4358_7778195_1015010,4358_113 -4358_80684,96,4358_3425,Ballycullen Road,9648,0,4358_7778195_9015004,4358_113 -4358_80684,205,4358_3427,Ballycullen Road,583,0,4358_7778195_1015011,4358_113 -4358_80684,96,4358_3428,Ballycullen Road,8464,0,4358_7778195_1015002,4358_113 -4358_80684,205,4358_3429,Ballycullen Road,784,0,4358_7778195_1015003,4358_113 -4358_80680,205,4358_343,Sandyford B.D.,679,0,4358_7778195_1011002,4358_7 -4358_80684,205,4358_3431,Ballycullen Road,1919,0,4358_7778195_9015003,4358_113 -4358_80684,96,4358_3432,Ballycullen Road,8492,0,4358_7778195_1015005,4358_114 -4358_80684,205,4358_3434,Ballycullen Road,662,0,4358_7778195_1015012,4358_114 -4358_80684,96,4358_3435,Ballycullen Road,8514,0,4358_7778195_1015008,4358_113 -4358_80684,205,4358_3436,Ballycullen Road,744,0,4358_7778195_1015014,4358_113 -4358_80684,96,4358_3437,Ballycullen Road,8476,0,4358_7778195_1015003,4358_113 -4358_80684,205,4358_3439,Ballycullen Road,682,0,4358_7778195_1015016,4358_115 -4358_80680,205,4358_344,Sandyford B.D.,605,0,4358_7778195_1011003,4358_7 -4358_80684,205,4358_3440,Ballycullen Road,650,0,4358_7778195_1015001,4358_113 -4358_80684,96,4358_3441,Ballycullen Road,9632,0,4358_7778195_9015001,4358_113 -4358_80684,205,4358_3442,Ballycullen Road,732,0,4358_7778195_1015008,4358_113 -4358_80684,96,4358_3444,Ballycullen Road,8482,0,4358_7778195_1015004,4358_113 -4358_80684,205,4358_3445,Ballycullen Road,563,0,4358_7778195_1015017,4358_114 -4358_80684,205,4358_3446,Ballycullen Road,642,0,4358_7778195_1015002,4358_113 -4358_80684,96,4358_3448,Ballycullen Road,8510,0,4358_7778195_1015007,4358_113 -4358_80684,205,4358_3449,Ballycullen Road,570,0,4358_7778195_1015009,4358_113 -4358_80680,96,4358_345,Sandyford B.D.,8604,0,4358_7778195_1011002,4358_9 -4358_80684,205,4358_3451,Ballycullen Road,777,0,4358_7778195_1015004,4358_114 -4358_80684,96,4358_3452,Ballycullen Road,9665,0,4358_7778195_9015002,4358_115 -4358_80684,205,4358_3453,Ballycullen Road,794,0,4358_7778195_1015005,4358_113 -4358_80684,96,4358_3454,Ballycullen Road,8507,0,4358_7778195_1015006,4358_113 -4358_80684,205,4358_3456,Ballycullen Road,1929,0,4358_7778195_9015001,4358_114 -4358_80684,205,4358_3457,Ballycullen Road,1994,0,4358_7778195_9015007,4358_113 -4358_80684,96,4358_3458,Ballycullen Road,9643,0,4358_7778195_9015003,4358_114 -4358_80684,205,4358_3459,Ballycullen Road,2015,0,4358_7778195_9015008,4358_113 -4358_80680,205,4358_346,Sandyford B.D.,759,0,4358_7778195_1011005,4358_7 -4358_80684,96,4358_3461,Ballycullen Road,8601,0,4358_7778195_1015001,4358_113 -4358_80684,205,4358_3462,Ballycullen Road,710,0,4358_7778195_1015007,4358_113 -4358_80684,96,4358_3463,Ballycullen Road,9672,0,4358_7778195_9015005,4358_113 -4358_80684,205,4358_3465,Ballycullen Road,2039,0,4358_7778195_9015010,4358_115 -4358_80684,205,4358_3466,Ballycullen Road,602,0,4358_7778195_1015010,4358_113 -4358_80684,96,4358_3467,Ballycullen Road,9650,0,4358_7778195_9015004,4358_113 -4358_80684,205,4358_3469,Ballycullen Road,1943,0,4358_7778195_9015011,4358_113 -4358_80680,205,4358_347,Sandyford B.D.,674,0,4358_7778195_1011007,4358_7 -4358_80684,96,4358_3470,Ballycullen Road,8466,0,4358_7778195_1015002,4358_113 -4358_80684,205,4358_3472,Ballycullen Road,786,0,4358_7778195_1015003,4358_115 -4358_80684,205,4358_3473,Ballycullen Road,1921,0,4358_7778195_9015003,4358_113 -4358_80684,96,4358_3475,Ballycullen Road,8494,0,4358_7778195_1015005,4358_114 -4358_80684,205,4358_3476,Ballycullen Road,664,0,4358_7778195_1015012,4358_113 -4358_80684,96,4358_3477,Ballycullen Road,8516,0,4358_7778195_1015008,4358_113 -4358_80684,205,4358_3478,Ballycullen Road,746,0,4358_7778195_1015014,4358_114 -4358_80680,205,4358_348,Sandyford B.D.,587,0,4358_7778195_1011008,4358_7 -4358_80684,205,4358_3480,Ballycullen Road,684,0,4358_7778195_1015016,4358_113 -4358_80684,96,4358_3481,Ballycullen Road,8478,0,4358_7778195_1015003,4358_113 -4358_80684,205,4358_3483,Ballycullen Road,652,0,4358_7778195_1015001,4358_113 -4358_80684,205,4358_3484,Ballycullen Road,734,0,4358_7778195_1015008,4358_113 -4358_80684,96,4358_3485,Ballycullen Road,9634,0,4358_7778195_9015001,4358_114 -4358_80684,205,4358_3487,Ballycullen Road,565,0,4358_7778195_1015017,4358_113 -4358_80684,96,4358_3488,Ballycullen Road,8519,0,4358_7778195_1015009,4358_113 -4358_80680,96,4358_349,Sandyford B.D.,8626,0,4358_7778195_1011001,4358_7 -4358_80684,205,4358_3490,Ballycullen Road,644,0,4358_7778195_1015002,4358_113 -4358_80684,96,4358_3491,Ballycullen Road,8484,0,4358_7778195_1015004,4358_113 -4358_80684,205,4358_3493,Ballycullen Road,572,0,4358_7778195_1015009,4358_113 -4358_80684,205,4358_3494,Ballycullen Road,764,0,4358_7778195_1015018,4358_113 -4358_80684,96,4358_3496,Ballycullen Road,8525,0,4358_7778195_1015010,4358_114 -4358_80684,205,4358_3497,Ballycullen Road,779,0,4358_7778195_1015004,4358_113 -4358_80684,96,4358_3498,Ballycullen Road,9667,0,4358_7778195_9015002,4358_113 -4358_80680,205,4358_350,Sandyford B.D.,742,0,4358_7778195_1011001,4358_7 -4358_80684,205,4358_3500,Ballycullen Road,796,0,4358_7778195_1015005,4358_113 -4358_80684,205,4358_3501,Ballycullen Road,1931,0,4358_7778195_9015001,4358_113 -4358_80684,96,4358_3503,Ballycullen Road,8512,0,4358_7778195_1015007,4358_114 -4358_80684,205,4358_3504,Ballycullen Road,1996,0,4358_7778195_9015007,4358_113 -4358_80684,205,4358_3505,Ballycullen Road,712,0,4358_7778195_1015007,4358_113 -4358_80684,96,4358_3506,Ballycullen Road,9645,0,4358_7778195_9015003,4358_114 -4358_80684,205,4358_3508,Ballycullen Road,2017,0,4358_7778195_9015008,4358_113 -4358_80684,96,4358_3509,Ballycullen Road,8603,0,4358_7778195_1015001,4358_113 -4358_80680,205,4358_351,Sandyford B.D.,621,0,4358_7778195_1011009,4358_7 -4358_80684,205,4358_3511,Ballycullen Road,604,0,4358_7778195_1015010,4358_113 -4358_80684,96,4358_3512,Ballycullen Road,9674,0,4358_7778195_9015005,4358_113 -4358_80684,205,4358_3514,Ballycullen Road,2041,0,4358_7778195_9015010,4358_115 -4358_80684,205,4358_3515,Ballycullen Road,1945,0,4358_7778195_9015011,4358_113 -4358_80684,96,4358_3517,Ballycullen Road,9656,0,4358_7778195_9015007,4358_114 -4358_80684,205,4358_3518,Ballycullen Road,788,0,4358_7778195_1015003,4358_113 -4358_80684,205,4358_3519,Ballycullen Road,1923,0,4358_7778195_9015003,4358_113 -4358_80680,205,4358_352,Sandyford B.D.,596,0,4358_7778195_1011004,4358_7 -4358_80684,96,4358_3520,Ballycullen Road,8501,0,4358_7778195_1015012,4358_114 -4358_80684,205,4358_3522,Ballycullen Road,666,0,4358_7778195_1015012,4358_113 -4358_80684,96,4358_3524,Ballycullen Road,8532,0,4358_7778195_1015011,4358_114 -4358_80684,205,4358_3525,Ballycullen Road,748,0,4358_7778195_1015014,4358_113 -4358_80684,96,4358_3526,Ballycullen Road,8468,0,4358_7778195_1015002,4358_113 -4358_80684,205,4358_3527,Ballycullen Road,1972,0,4358_7778195_9015013,4358_114 -4358_80684,205,4358_3529,Ballycullen Road,686,0,4358_7778195_1015016,4358_113 -4358_80680,96,4358_353,Sandyford B.D.,8613,0,4358_7778195_1011003,4358_9 -4358_80684,96,4358_3531,Ballycullen Road,8496,0,4358_7778195_1015005,4358_114 -4358_80684,205,4358_3532,Ballycullen Road,654,0,4358_7778195_1015001,4358_113 -4358_80684,205,4358_3534,Ballycullen Road,736,0,4358_7778195_1015008,4358_114 -4358_80684,96,4358_3535,Ballycullen Road,9678,0,4358_7778195_9015009,4358_115 -4358_80684,205,4358_3536,Ballycullen Road,2019,0,4358_7778195_9015014,4358_113 -4358_80684,205,4358_3537,Ballycullen Road,586,0,4358_7778195_1015020,4358_116 -4358_80684,96,4358_3538,Ballycullen Road,8540,0,4358_7778195_1015013,4358_113 -4358_80680,205,4358_354,Sandyford B.D.,692,0,4358_7778195_1011012,4358_7 -4358_80684,205,4358_3540,Ballycullen Road,567,0,4358_7778195_1015017,4358_113 -4358_80684,205,4358_3541,Ballycullen Road,646,0,4358_7778195_1015002,4358_113 -4358_80684,96,4358_3543,Ballycullen Road,8521,0,4358_7778195_1015009,4358_115 -4358_80684,205,4358_3544,Ballycullen Road,754,0,4358_7778195_1015019,4358_113 -4358_80684,96,4358_3546,Ballycullen Road,8486,0,4358_7778195_1015004,4358_114 -4358_80684,205,4358_3547,Ballycullen Road,766,0,4358_7778195_1015018,4358_113 -4358_80684,205,4358_3548,Ballycullen Road,781,0,4358_7778195_1015004,4358_113 -4358_80684,96,4358_3549,Ballycullen Road,9669,0,4358_7778195_9015002,4358_114 -4358_80680,96,4358_355,Sandyford B.D.,8577,0,4358_7778195_1011004,4358_7 -4358_80684,205,4358_3551,Ballycullen Road,1980,0,4358_7778195_9015012,4358_113 -4358_80684,96,4358_3553,Ballycullen Road,8527,0,4358_7778195_1015010,4358_114 -4358_80684,205,4358_3554,Ballycullen Road,798,0,4358_7778195_1015005,4358_113 -4358_80684,96,4358_3555,Ballycullen Road,9693,0,4358_7778195_9015010,4358_113 -4358_80684,205,4358_3557,Ballycullen Road,2045,0,4358_7778195_9015015,4358_115 -4358_80684,205,4358_3558,Ballycullen Road,1933,0,4358_7778195_9015001,4358_113 -4358_80684,96,4358_3559,Ballycullen Road,9652,0,4358_7778195_9015008,4358_113 -4358_80680,205,4358_356,Sandyford B.D.,659,0,4358_7778195_1011013,4358_9 -4358_80684,205,4358_3561,Ballycullen Road,1998,0,4358_7778195_9015007,4358_113 -4358_80684,205,4358_3562,Ballycullen Road,714,0,4358_7778195_1015007,4358_113 -4358_80684,96,4358_3563,Ballycullen Road,8546,0,4358_7778195_1015014,4358_114 -4358_80684,96,4358_3565,Ballycullen Road,9676,0,4358_7778195_9015005,4358_113 -4358_80684,205,4358_3566,Ballycullen Road,771,0,4358_7778195_1015021,4358_114 -4358_80684,96,4358_3569,Ballycullen Road,9658,0,4358_7778195_9015007,4358_114 -4358_80680,205,4358_357,Sandyford B.D.,694,0,4358_7778195_1011006,4358_7 -4358_80684,205,4358_3570,Ballycullen Road,2043,0,4358_7778195_9015010,4358_115 -4358_80684,96,4358_3571,Ballycullen Road,8503,0,4358_7778195_1015012,4358_113 -4358_80684,205,4358_3573,Ballycullen Road,790,0,4358_7778195_1015003,4358_115 -4358_80684,96,4358_3574,Ballycullen Road,8534,0,4358_7778195_1015011,4358_113 -4358_80684,205,4358_3576,Ballycullen Road,668,0,4358_7778195_1015012,4358_115 -4358_80684,96,4358_3578,Ballycullen Road,8470,0,4358_7778195_1015002,4358_114 -4358_80684,205,4358_3579,Ballycullen Road,592,0,4358_7778195_1015022,4358_115 -4358_80680,96,4358_358,Sandyford B.D.,8557,0,4358_7778195_1011005,4358_7 -4358_80684,96,4358_3581,Ballycullen Road,8498,0,4358_7778195_1015005,4358_114 -4358_80684,205,4358_3582,Ballycullen Road,688,0,4358_7778195_1015016,4358_115 -4358_80684,96,4358_3584,Ballycullen Road,9680,0,4358_7778195_9015009,4358_114 -4358_80684,205,4358_3585,Ballycullen Road,656,0,4358_7778195_1015001,4358_115 -4358_80684,96,4358_3587,Ballycullen Road,8542,0,4358_7778195_1015013,4358_114 -4358_80684,205,4358_3588,Ballycullen Road,738,0,4358_7778195_1015008,4358_115 -4358_80684,205,4358_3589,Ballycullen Road,756,0,4358_7778195_1015019,4358_113 -4358_80680,205,4358_359,Sandyford B.D.,585,0,4358_7778195_1011010,4358_7 -4358_80684,96,4358_3590,Ballycullen Road,8523,0,4358_7778195_1015009,4358_114 -4358_80684,96,4358_3592,Ballycullen Road,8488,0,4358_7778195_1015004,4358_113 -4358_80684,205,4358_3593,Ballycullen Road,768,0,4358_7778195_1015018,4358_114 -4358_80684,205,4358_3596,Ballycullen Road,2049,0,4358_7778195_9015016,4358_114 -4358_80684,96,4358_3597,Ballycullen Road,8529,0,4358_7778195_1015010,4358_115 -4358_80684,96,4358_3598,Ballycullen Road,9695,0,4358_7778195_9015010,4358_113 -4358_80760,205,4358_36,Shaw street,1588,0,4358_7778195_9001005,4358_1 -4358_80680,96,4358_360,Sandyford B.D.,8606,0,4358_7778195_1011002,4358_7 -4358_80684,205,4358_3600,Ballycullen Road,2047,0,4358_7778195_9015015,4358_115 -4358_80684,205,4358_3601,Ballycullen Road,2051,0,4358_7778195_9015017,4358_113 -4358_80684,96,4358_3602,Ballycullen Road,8555,0,4358_7778195_1015015,4358_114 -4358_80684,205,4358_3604,Ballycullen Road,716,0,4358_7778195_1015007,4358_113 -4358_80684,96,4358_3605,Ballycullen Road,9654,0,4358_7778195_9015008,4358_114 -4358_80684,205,4358_3608,Ballycullen Road,773,0,4358_7778195_1015021,4358_114 -4358_80684,96,4358_3609,Ballycullen Road,9660,0,4358_7778195_9015007,4358_115 -4358_80680,205,4358_361,Sandyford B.D.,632,0,4358_7778195_1011011,4358_7 -4358_80684,96,4358_3610,Ballycullen Road,8536,0,4358_7778195_1015011,4358_113 -4358_80684,205,4358_3612,Ballycullen Road,670,0,4358_7778195_1015012,4358_115 -4358_80684,96,4358_3614,Ballycullen Road,8472,0,4358_7778195_1015002,4358_114 -4358_80684,205,4358_3615,Ballycullen Road,594,0,4358_7778195_1015022,4358_115 -4358_80684,96,4358_3617,Ballycullen Road,8500,0,4358_7778195_1015005,4358_114 -4358_80684,205,4358_3618,Ballycullen Road,690,0,4358_7778195_1015016,4358_115 -4358_80680,96,4358_362,Sandyford B.D.,8628,0,4358_7778195_1011001,4358_7 -4358_80684,96,4358_3620,Ballycullen Road,9682,0,4358_7778195_9015009,4358_114 -4358_80684,205,4358_3621,Ballycullen Road,658,0,4358_7778195_1015001,4358_115 -4358_80684,96,4358_3623,Ballycullen Road,8544,0,4358_7778195_1015013,4358_114 -4358_80684,205,4358_3624,Ballycullen Road,740,0,4358_7778195_1015008,4358_115 -4358_80684,96,4358_3625,Ballycullen Road,9636,0,4358_7778195_9015011,4358_113 -4358_80684,205,4358_3627,Ballycullen Road,1985,0,4358_7778195_9015018,4358_115 -4358_80684,96,4358_3628,Ballycullen Road,9690,0,4358_7778195_9015012,4358_113 -4358_80684,205,4358_3630,Ballycullen Road,1982,0,4358_7778195_9015019,4358_115 -4358_80684,96,4358_3631,Ballycullen Road,8593,0,4358_7778195_1015019,4358_113 -4358_80684,205,4358_3633,Ballycullen Road,704,0,4358_7778195_1015025,4358_115 -4358_80684,96,4358_3635,Ballycullen Road,8549,0,4358_7778195_1015017,4358_114 -4358_80684,205,4358_3636,Ballycullen Road,589,0,4358_7778195_1015023,4358_115 -4358_80684,205,4358_3637,Ballycullen Road,721,0,4358_7778195_1015024,4358_113 -4358_80684,96,4358_3639,Ballycullen Road,8538,0,4358_7778195_1015018,4358_115 -4358_80680,205,4358_364,Sandyford B.D.,607,0,4358_7778195_1011003,4358_9 -4358_80684,205,4358_3640,Ballycullen Road,751,0,4358_7778195_1015026,4358_113 -4358_80684,96,4358_3641,Ballycullen Road,8552,0,4358_7778195_1015020,4358_114 -4358_80684,96,4358_3643,Ballycullen Road,9638,0,4358_7778195_9015011,4358_113 -4358_80684,205,4358_3645,Ballycullen Road,1987,0,4358_7778195_9015018,4358_115 -4358_80684,96,4358_3646,Ballycullen Road,9692,0,4358_7778195_9015012,4358_113 -4358_80684,205,4358_3648,Ballycullen Road,1984,0,4358_7778195_9015019,4358_113 -4358_80684,96,4358_3649,Ballycullen Road,8595,0,4358_7778195_1015019,4358_113 -4358_80680,96,4358_365,Sandyford B.D.,8615,0,4358_7778195_1011003,4358_7 -4358_80684,205,4358_3651,Ballycullen Road,706,0,4358_7778195_1015025,4358_115 -4358_80684,96,4358_3652,Clongriffin,8596,1,4358_7778195_1015001,4358_117 -4358_80684,205,4358_3653,Clongriffin,647,1,4358_7778195_1015001,4358_118 -4358_80684,205,4358_3655,Clongriffin,639,1,4358_7778195_1015002,4358_117 -4358_80684,96,4358_3656,Clongriffin,8461,1,4358_7778195_1015002,4358_118 -4358_80684,96,4358_3658,Clongriffin,8473,1,4358_7778195_1015003,4358_117 -4358_80684,205,4358_3659,Clongriffin,774,1,4358_7778195_1015004,4358_118 -4358_80680,205,4358_366,Sandyford B.D.,676,0,4358_7778195_1011007,4358_7 -4358_80684,205,4358_3661,Clongriffin,791,1,4358_7778195_1015005,4358_117 -4358_80684,96,4358_3662,Clongriffin,9629,1,4358_7778195_9015001,4358_117 -4358_80684,205,4358_3663,Clongriffin,1926,1,4358_7778195_9015001,4358_117 -4358_80684,96,4358_3664,Clongriffin,8479,1,4358_7778195_1015004,4358_117 -4358_80684,205,4358_3666,Clongriffin,761,1,4358_7778195_1015006,4358_119 -4358_80684,205,4358_3667,Clongriffin,707,1,4358_7778195_1015007,4358_117 -4358_80684,96,4358_3668,Clongriffin,9662,1,4358_7778195_9015002,4358_117 -4358_80684,205,4358_3669,Clongriffin,2033,1,4358_7778195_9015002,4358_117 -4358_80684,96,4358_3671,Clongriffin,8504,1,4358_7778195_1015006,4358_118 -4358_80684,205,4358_3672,Clongriffin,599,1,4358_7778195_1015010,4358_119 -4358_80684,205,4358_3673,Clongriffin,582,1,4358_7778195_1015011,4358_117 -4358_80684,96,4358_3674,Clongriffin,9640,1,4358_7778195_9015003,4358_117 -4358_80684,205,4358_3675,Clongriffin,783,1,4358_7778195_1015003,4358_117 -4358_80684,205,4358_3676,Clongriffin,1918,1,4358_7778195_9015003,4358_117 -4358_80684,96,4358_3677,Clongriffin,8598,1,4358_7778195_1015001,4358_117 -4358_80684,205,4358_3679,Clongriffin,6471,1,4358_7778195_7015591,4358_117 -4358_80680,96,4358_368,Sandyford B.D.,8579,0,4358_7778195_1011004,4358_7 -4358_80684,205,4358_3680,Clongriffin,661,1,4358_7778195_1015012,4358_117 -4358_80684,205,4358_3681,Clongriffin,1948,1,4358_7778195_9015004,4358_117 -4358_80684,205,4358_3682,Clongriffin,758,1,4358_7778195_1015013,4358_117 -4358_80684,96,4358_3683,Clongriffin,9647,1,4358_7778195_9015004,4358_118 -4358_80684,205,4358_3684,Clongriffin,743,1,4358_7778195_1015014,4358_117 -4358_80684,205,4358_3685,Clongriffin,703,1,4358_7778195_1015015,4358_117 -4358_80684,96,4358_3686,Clongriffin,8463,1,4358_7778195_1015002,4358_117 -4358_80684,205,4358_3688,Clongriffin,681,1,4358_7778195_1015016,4358_117 -4358_80684,205,4358_3689,Clongriffin,649,1,4358_7778195_1015001,4358_117 -4358_80684,96,4358_3690,Clongriffin,8491,1,4358_7778195_1015005,4358_117 -4358_80684,205,4358_3692,Clongriffin,1978,1,4358_7778195_9015005,4358_117 -4358_80684,205,4358_3693,Clongriffin,1523,1,4358_7778195_3823105,4358_117 -4358_80684,205,4358_3694,Clongriffin,731,1,4358_7778195_1015008,4358_117 -4358_80684,96,4358_3695,Clongriffin,8475,1,4358_7778195_1015003,4358_118 -4358_80684,205,4358_3696,Clongriffin,562,1,4358_7778195_1015017,4358_117 -4358_80684,96,4358_3698,Clongriffin,9631,1,4358_7778195_9015001,4358_117 -4358_80684,205,4358_3699,Clongriffin,641,1,4358_7778195_1015002,4358_117 -4358_80760,205,4358_37,Shaw street,1541,0,4358_7778195_9001010,4358_1 -4358_80680,205,4358_370,Sandyford B.D.,623,0,4358_7778195_1011009,4358_9 -4358_80684,96,4358_3700,Clongriffin,8481,1,4358_7778195_1015004,4358_117 -4358_80684,205,4358_3702,Clongriffin,569,1,4358_7778195_1015009,4358_119 -4358_80684,205,4358_3703,Clongriffin,2012,1,4358_7778195_9015006,4358_117 -4358_80684,96,4358_3704,Clongriffin,8509,1,4358_7778195_1015007,4358_117 -4358_80684,205,4358_3706,Clongriffin,776,1,4358_7778195_1015004,4358_118 -4358_80684,205,4358_3707,Clongriffin,793,1,4358_7778195_1015005,4358_117 -4358_80684,96,4358_3708,Clongriffin,9664,1,4358_7778195_9015002,4358_118 -4358_80680,96,4358_371,Sandyford B.D.,8559,0,4358_7778195_1011005,4358_7 -4358_80684,205,4358_3710,Clongriffin,1928,1,4358_7778195_9015001,4358_118 -4358_80684,96,4358_3711,Clongriffin,8506,1,4358_7778195_1015006,4358_117 -4358_80684,205,4358_3712,Clongriffin,1993,1,4358_7778195_9015007,4358_117 -4358_80684,96,4358_3713,Clongriffin,9642,1,4358_7778195_9015003,4358_117 -4358_80684,205,4358_3714,Clongriffin,2014,1,4358_7778195_9015008,4358_118 -4358_80684,205,4358_3716,Clongriffin,709,1,4358_7778195_1015007,4358_117 -4358_80684,96,4358_3717,Clongriffin,8600,1,4358_7778195_1015001,4358_117 -4358_80684,205,4358_3719,Clongriffin,2036,1,4358_7778195_9015009,4358_118 -4358_80680,205,4358_372,Sandyford B.D.,598,0,4358_7778195_1011004,4358_7 -4358_80684,96,4358_3720,Clongriffin,9649,1,4358_7778195_9015004,4358_117 -4358_80684,205,4358_3721,Clongriffin,2038,1,4358_7778195_9015010,4358_118 -4358_80684,205,4358_3723,Clongriffin,601,1,4358_7778195_1015010,4358_118 -4358_80684,96,4358_3724,Clongriffin,8465,1,4358_7778195_1015002,4358_117 -4358_80684,205,4358_3725,Clongriffin,785,1,4358_7778195_1015003,4358_117 -4358_80684,205,4358_3726,Clongriffin,1920,1,4358_7778195_9015003,4358_117 -4358_80684,96,4358_3728,Clongriffin,8493,1,4358_7778195_1015005,4358_119 -4358_80684,205,4358_3729,Clongriffin,663,1,4358_7778195_1015012,4358_117 -4358_80684,96,4358_3730,Clongriffin,8515,1,4358_7778195_1015008,4358_117 -4358_80684,205,4358_3731,Clongriffin,745,1,4358_7778195_1015014,4358_117 -4358_80684,96,4358_3733,Clongriffin,8477,1,4358_7778195_1015003,4358_117 -4358_80684,205,4358_3734,Clongriffin,683,1,4358_7778195_1015016,4358_118 -4358_80684,205,4358_3735,Clongriffin,651,1,4358_7778195_1015001,4358_117 -4358_80684,96,4358_3737,Clongriffin,9633,1,4358_7778195_9015001,4358_117 -4358_80684,205,4358_3738,Clongriffin,733,1,4358_7778195_1015008,4358_117 -4358_80684,205,4358_3739,Clongriffin,564,1,4358_7778195_1015017,4358_117 -4358_80680,96,4358_374,Sandyford B.D.,8568,0,4358_7778195_1011007,4358_7 -4358_80684,96,4358_3740,Clongriffin,8518,1,4358_7778195_1015009,4358_118 -4358_80684,205,4358_3742,Clongriffin,643,1,4358_7778195_1015002,4358_117 -4358_80684,96,4358_3743,Clongriffin,8483,1,4358_7778195_1015004,4358_117 -4358_80684,205,4358_3745,Clongriffin,571,1,4358_7778195_1015009,4358_117 -4358_80684,205,4358_3747,Clongriffin,763,1,4358_7778195_1015018,4358_118 -4358_80684,96,4358_3748,Clongriffin,8511,1,4358_7778195_1015007,4358_119 -4358_80684,205,4358_3749,Clongriffin,778,1,4358_7778195_1015004,4358_117 -4358_80684,96,4358_3750,Clongriffin,9666,1,4358_7778195_9015002,4358_117 -4358_80684,205,4358_3752,Clongriffin,795,1,4358_7778195_1015005,4358_117 -4358_80684,205,4358_3754,Clongriffin,1930,1,4358_7778195_9015001,4358_118 -4358_80684,96,4358_3755,Clongriffin,8508,1,4358_7778195_1015006,4358_119 -4358_80684,205,4358_3756,Clongriffin,1995,1,4358_7778195_9015007,4358_117 -4358_80684,96,4358_3757,Clongriffin,9644,1,4358_7778195_9015003,4358_117 -4358_80684,205,4358_3759,Clongriffin,2016,1,4358_7778195_9015008,4358_117 -4358_80680,205,4358_376,Sandyford B.D.,696,0,4358_7778195_1011006,4358_9 -4358_80684,96,4358_3760,Clongriffin,8602,1,4358_7778195_1015001,4358_117 -4358_80684,205,4358_3761,Clongriffin,711,1,4358_7778195_1015007,4358_118 -4358_80684,205,4358_3763,Clongriffin,2040,1,4358_7778195_9015010,4358_117 -4358_80684,96,4358_3764,Clongriffin,9673,1,4358_7778195_9015005,4358_117 -4358_80684,205,4358_3766,Clongriffin,603,1,4358_7778195_1015010,4358_117 -4358_80684,205,4358_3767,Clongriffin,1944,1,4358_7778195_9015011,4358_117 -4358_80684,96,4358_3768,Clongriffin,9671,1,4358_7778195_9015006,4358_118 -4358_80680,96,4358_377,Sandyford B.D.,8608,0,4358_7778195_1011002,4358_7 -4358_80684,205,4358_3770,Clongriffin,787,1,4358_7778195_1015003,4358_117 -4358_80684,96,4358_3771,Clongriffin,8531,1,4358_7778195_1015011,4358_117 -4358_80684,205,4358_3773,Clongriffin,1922,1,4358_7778195_9015003,4358_117 -4358_80684,96,4358_3774,Clongriffin,8467,1,4358_7778195_1015002,4358_117 -4358_80684,205,4358_3776,Clongriffin,665,1,4358_7778195_1015012,4358_119 -4358_80684,205,4358_3777,Clongriffin,747,1,4358_7778195_1015014,4358_117 -4358_80684,96,4358_3778,Clongriffin,8495,1,4358_7778195_1015005,4358_117 -4358_80684,205,4358_3780,Clongriffin,685,1,4358_7778195_1015016,4358_117 -4358_80684,96,4358_3781,Clongriffin,8517,1,4358_7778195_1015008,4358_117 -4358_80684,205,4358_3782,Clongriffin,653,1,4358_7778195_1015001,4358_118 -4358_80684,205,4358_3784,Clongriffin,735,1,4358_7778195_1015008,4358_117 -4358_80684,96,4358_3786,Clongriffin,9635,1,4358_7778195_9015001,4358_118 -4358_80684,205,4358_3787,Clongriffin,566,1,4358_7778195_1015017,4358_117 -4358_80684,205,4358_3788,Clongriffin,645,1,4358_7778195_1015002,4358_117 -4358_80684,96,4358_3789,Clongriffin,8520,1,4358_7778195_1015009,4358_118 -4358_80680,205,4358_379,Sandyford B.D.,634,0,4358_7778195_1011011,4358_9 -4358_80684,205,4358_3791,Clongriffin,753,1,4358_7778195_1015019,4358_117 -4358_80684,96,4358_3792,Clongriffin,8485,1,4358_7778195_1015004,4358_117 -4358_80684,205,4358_3794,Clongriffin,573,1,4358_7778195_1015009,4358_117 -4358_80684,205,4358_3796,Clongriffin,765,1,4358_7778195_1015018,4358_118 -4358_80684,96,4358_3797,Clongriffin,8526,1,4358_7778195_1015010,4358_119 -4358_80684,205,4358_3798,Clongriffin,780,1,4358_7778195_1015004,4358_117 -4358_80684,96,4358_3799,Clongriffin,9668,1,4358_7778195_9015002,4358_117 -4358_80760,96,4358_38,Shaw street,9384,0,4358_7778195_9001001,4358_1 -4358_80680,96,4358_380,Sandyford B.D.,8585,0,4358_7778195_1011006,4358_7 -4358_80684,205,4358_3801,Clongriffin,1979,1,4358_7778195_9015012,4358_117 -4358_80684,205,4358_3802,Clongriffin,797,1,4358_7778195_1015005,4358_117 -4358_80684,96,4358_3804,Clongriffin,8513,1,4358_7778195_1015007,4358_119 -4358_80684,205,4358_3805,Clongriffin,1932,1,4358_7778195_9015001,4358_117 -4358_80684,205,4358_3806,Clongriffin,6472,1,4358_7778195_7015691,4358_117 -4358_80684,96,4358_3807,Clongriffin,9651,1,4358_7778195_9015008,4358_118 -4358_80684,205,4358_3809,Clongriffin,1997,1,4358_7778195_9015007,4358_117 -4358_80680,205,4358_381,Sandyford B.D.,609,0,4358_7778195_1011003,4358_7 -4358_80684,205,4358_3810,Clongriffin,713,1,4358_7778195_1015007,4358_117 -4358_80684,96,4358_3811,Clongriffin,8545,1,4358_7778195_1015014,4358_118 -4358_80684,205,4358_3813,Clongriffin,770,1,4358_7778195_1015021,4358_117 -4358_80684,96,4358_3814,Clongriffin,9675,1,4358_7778195_9015005,4358_117 -4358_80684,205,4358_3816,Clongriffin,2018,1,4358_7778195_9015008,4358_117 -4358_80684,96,4358_3818,Clongriffin,9657,1,4358_7778195_9015007,4358_118 -4358_80684,205,4358_3819,Clongriffin,2042,1,4358_7778195_9015010,4358_119 -4358_80684,205,4358_3820,Clongriffin,1946,1,4358_7778195_9015011,4358_117 -4358_80684,96,4358_3821,Clongriffin,8502,1,4358_7778195_1015012,4358_117 -4358_80684,205,4358_3823,Clongriffin,789,1,4358_7778195_1015003,4358_117 -4358_80684,205,4358_3824,Clongriffin,1924,1,4358_7778195_9015003,4358_117 -4358_80684,96,4358_3826,Clongriffin,8533,1,4358_7778195_1015011,4358_119 -4358_80684,205,4358_3827,Clongriffin,667,1,4358_7778195_1015012,4358_117 -4358_80684,96,4358_3828,Clongriffin,8469,1,4358_7778195_1015002,4358_117 -4358_80680,96,4358_383,Sandyford B.D.,8630,0,4358_7778195_1011001,4358_7 -4358_80684,205,4358_3830,Clongriffin,749,1,4358_7778195_1015014,4358_117 -4358_80684,96,4358_3832,Clongriffin,8497,1,4358_7778195_1015005,4358_118 -4358_80684,205,4358_3833,Clongriffin,591,1,4358_7778195_1015022,4358_119 -4358_80684,205,4358_3834,Clongriffin,1973,1,4358_7778195_9015013,4358_117 -4358_80684,96,4358_3836,Clongriffin,9679,1,4358_7778195_9015009,4358_118 -4358_80684,205,4358_3837,Clongriffin,687,1,4358_7778195_1015016,4358_117 -4358_80684,96,4358_3838,Clongriffin,8541,1,4358_7778195_1015013,4358_117 -4358_80684,205,4358_3839,Clongriffin,655,1,4358_7778195_1015001,4358_118 -4358_80684,205,4358_3841,Clongriffin,737,1,4358_7778195_1015008,4358_117 -4358_80684,96,4358_3843,Clongriffin,8522,1,4358_7778195_1015009,4358_119 -4358_80684,96,4358_3845,Clongriffin,8487,1,4358_7778195_1015004,4358_118 -4358_80684,205,4358_3846,Clongriffin,755,1,4358_7778195_1015019,4358_119 -4358_80684,205,4358_3847,Clongriffin,767,1,4358_7778195_1015018,4358_117 -4358_80684,96,4358_3848,Clongriffin,9670,1,4358_7778195_9015002,4358_118 -4358_80680,205,4358_385,Sandyford B.D.,678,0,4358_7778195_1011007,4358_9 -4358_80684,205,4358_3850,Clongriffin,1981,1,4358_7778195_9015012,4358_117 -4358_80684,96,4358_3852,Clongriffin,8528,1,4358_7778195_1015010,4358_119 -4358_80684,96,4358_3853,Clongriffin,9694,1,4358_7778195_9015010,4358_117 -4358_80684,205,4358_3855,Clongriffin,2046,1,4358_7778195_9015015,4358_119 -4358_80684,96,4358_3856,Clongriffin,9653,1,4358_7778195_9015008,4358_117 -4358_80684,205,4358_3858,Clongriffin,1934,1,4358_7778195_9015001,4358_119 -4358_80684,205,4358_3859,Clongriffin,715,1,4358_7778195_1015007,4358_117 -4358_80680,96,4358_386,Sandyford B.D.,8617,0,4358_7778195_1011003,4358_7 -4358_80684,96,4358_3860,Clongriffin,8554,1,4358_7778195_1015015,4358_118 -4358_80684,96,4358_3862,Clongriffin,9677,1,4358_7778195_9015005,4358_117 -4358_80684,205,4358_3864,Clongriffin,772,1,4358_7778195_1015021,4358_119 -4358_80684,96,4358_3866,Clongriffin,9659,1,4358_7778195_9015007,4358_118 -4358_80684,205,4358_3867,Clongriffin,2044,1,4358_7778195_9015010,4358_119 -4358_80684,96,4358_3868,Clongriffin,8535,1,4358_7778195_1015011,4358_117 -4358_80680,205,4358_387,Sandyford B.D.,625,0,4358_7778195_1011009,4358_7 -4358_80684,205,4358_3870,Clongriffin,669,1,4358_7778195_1015012,4358_119 -4358_80684,96,4358_3872,Clongriffin,8471,1,4358_7778195_1015002,4358_118 -4358_80684,205,4358_3873,Clongriffin,593,1,4358_7778195_1015022,4358_119 -4358_80684,96,4358_3875,Clongriffin,8499,1,4358_7778195_1015005,4358_118 -4358_80684,205,4358_3876,Clongriffin,689,1,4358_7778195_1015016,4358_119 -4358_80684,96,4358_3878,Clongriffin,9681,1,4358_7778195_9015009,4358_118 -4358_80684,205,4358_3879,Clongriffin,657,1,4358_7778195_1015001,4358_119 -4358_80684,96,4358_3881,Clongriffin,8543,1,4358_7778195_1015013,4358_118 -4358_80684,205,4358_3882,Clongriffin,739,1,4358_7778195_1015008,4358_119 -4358_80684,205,4358_3883,Clongriffin,757,1,4358_7778195_1015019,4358_117 -4358_80684,96,4358_3884,Clongriffin,8524,1,4358_7778195_1015009,4358_118 -4358_80684,96,4358_3886,Clongriffin,8489,1,4358_7778195_1015004,4358_117 -4358_80684,205,4358_3887,Clongriffin,769,1,4358_7778195_1015018,4358_118 -4358_80680,96,4358_389,Sandyford B.D.,8581,0,4358_7778195_1011004,4358_7 -4358_80684,205,4358_3890,Clongriffin,2050,1,4358_7778195_9015016,4358_118 -4358_80684,96,4358_3891,Clongriffin,8530,1,4358_7778195_1015010,4358_119 -4358_80684,96,4358_3892,Clongriffin,9696,1,4358_7778195_9015010,4358_117 -4358_80684,205,4358_3894,Clongriffin,2048,1,4358_7778195_9015015,4358_119 -4358_80684,96,4358_3895,Clongriffin,8547,1,4358_7778195_1015016,4358_117 -4358_80684,205,4358_3896,Clongriffin,2052,1,4358_7778195_9015017,4358_118 -4358_80684,205,4358_3898,Clongriffin,717,1,4358_7778195_1015007,4358_117 -4358_80684,96,4358_3899,Clongriffin,9655,1,4358_7778195_9015008,4358_118 -4358_80760,205,4358_39,Shaw street,1635,0,4358_7778195_9001011,4358_1 -4358_80684,96,4358_3902,Clongriffin,8548,1,4358_7778195_1015017,4358_118 -4358_80684,205,4358_3903,Clongriffin,588,1,4358_7778195_1015023,4358_119 -4358_80684,205,4358_3904,Clongriffin,720,1,4358_7778195_1015024,4358_117 -4358_80684,96,4358_3906,Clongriffin,8537,1,4358_7778195_1015018,4358_119 -4358_80684,205,4358_3907,Clongriffin,750,1,4358_7778195_1015026,4358_117 -4358_80684,96,4358_3908,Clongriffin,8551,1,4358_7778195_1015020,4358_118 -4358_80680,205,4358_391,Sandyford B.D.,724,0,4358_7778195_1011014,4358_9 -4358_80684,96,4358_3910,Clongriffin,9637,1,4358_7778195_9015011,4358_117 -4358_80684,205,4358_3912,Clongriffin,1986,1,4358_7778195_9015018,4358_119 -4358_80684,96,4358_3913,Clongriffin,9691,1,4358_7778195_9015012,4358_117 -4358_80684,205,4358_3915,Clongriffin,1983,1,4358_7778195_9015019,4358_119 -4358_80684,96,4358_3916,Clongriffin,8594,1,4358_7778195_1015019,4358_117 -4358_80684,205,4358_3918,Clongriffin,705,1,4358_7778195_1015025,4358_119 -4358_80680,96,4358_392,Sandyford B.D.,8561,0,4358_7778195_1011005,4358_7 -4358_80684,96,4358_3920,Clongriffin,8550,1,4358_7778195_1015017,4358_118 -4358_80684,205,4358_3921,Clongriffin,590,1,4358_7778195_1015023,4358_119 -4358_80684,205,4358_3922,Clongriffin,722,1,4358_7778195_1015024,4358_117 -4358_80684,96,4358_3924,Clongriffin,8539,1,4358_7778195_1015018,4358_119 -4358_80684,205,4358_3925,Clongriffin,752,1,4358_7778195_1015026,4358_117 -4358_80684,96,4358_3926,Clongriffin,8553,1,4358_7778195_1015020,4358_118 -4358_80764,205,4358_3928,Rossmore,6021,0,4358_7778195_5150003,4358_120 -4358_80764,96,4358_3929,Rossmore,12934,0,4358_7778195_5150002,4358_120 -4358_80764,205,4358_3930,Rossmore,5987,0,4358_7778195_5150006,4358_120 -4358_80764,96,4358_3931,Rossmore,12963,0,4358_7778195_5150003,4358_120 -4358_80764,205,4358_3932,Rossmore,5984,0,4358_7778195_5150001,4358_121 -4358_80764,205,4358_3933,Rossmore,6019,0,4358_7778195_5150002,4358_120 -4358_80764,96,4358_3934,Rossmore,12978,0,4358_7778195_5150001,4358_120 -4358_80764,205,4358_3935,Rossmore,6051,0,4358_7778195_5150004,4358_120 -4358_80764,205,4358_3936,Rossmore,6073,0,4358_7778195_5150009,4358_120 -4358_80764,96,4358_3937,Rossmore,12936,0,4358_7778195_5150002,4358_120 -4358_80764,205,4358_3938,Rossmore,6083,0,4358_7778195_5150005,4358_120 -4358_80680,205,4358_394,Sandyford B.D.,698,0,4358_7778195_1011006,4358_9 -4358_80764,205,4358_3940,Rossmore,6023,0,4358_7778195_5150003,4358_120 -4358_80764,96,4358_3941,Rossmore,12965,0,4358_7778195_5150003,4358_120 -4358_80764,205,4358_3942,Rossmore,5989,0,4358_7778195_5150006,4358_120 -4358_80764,205,4358_3944,Rossmore,6033,0,4358_7778195_5150007,4358_120 -4358_80764,96,4358_3945,Rossmore,12980,0,4358_7778195_5150001,4358_120 -4358_80764,205,4358_3947,Rossmore,5986,0,4358_7778195_5150001,4358_121 -4358_80764,96,4358_3948,Rossmore,12938,0,4358_7778195_5150002,4358_120 -4358_80764,205,4358_3949,Rossmore,6038,0,4358_7778195_5150008,4358_120 -4358_80680,96,4358_395,Sandyford B.D.,8570,0,4358_7778195_1011007,4358_7 -4358_80764,205,4358_3951,Rossmore,6053,0,4358_7778195_5150004,4358_120 -4358_80764,96,4358_3952,Rossmore,12967,0,4358_7778195_5150003,4358_120 -4358_80764,205,4358_3953,Rossmore,6075,0,4358_7778195_5150009,4358_120 -4358_80764,96,4358_3955,Rossmore,12995,0,4358_7778195_5150004,4358_120 -4358_80764,205,4358_3956,Rossmore,6025,0,4358_7778195_5150003,4358_120 -4358_80764,205,4358_3958,Rossmore,6035,0,4358_7778195_5150007,4358_120 -4358_80764,96,4358_3959,Rossmore,12940,0,4358_7778195_5150002,4358_120 -4358_80680,205,4358_396,Sandyford B.D.,636,0,4358_7778195_1011011,4358_7 -4358_80764,205,4358_3961,Rossmore,6040,0,4358_7778195_5150008,4358_121 -4358_80764,96,4358_3962,Rossmore,12949,0,4358_7778195_5150005,4358_120 -4358_80764,205,4358_3963,Rossmore,6055,0,4358_7778195_5150004,4358_120 -4358_80764,96,4358_3964,Rossmore,12969,0,4358_7778195_5150003,4358_120 -4358_80764,205,4358_3966,Rossmore,6077,0,4358_7778195_5150009,4358_120 -4358_80764,96,4358_3967,Rossmore,12982,0,4358_7778195_5150007,4358_120 -4358_80764,205,4358_3968,Rossmore,5998,0,4358_7778195_5150011,4358_120 -4358_80764,96,4358_3970,Rossmore,12997,0,4358_7778195_5150004,4358_120 -4358_80764,205,4358_3971,Rossmore,6027,0,4358_7778195_5150003,4358_120 -4358_80764,96,4358_3972,Rossmore,13011,0,4358_7778195_5150006,4358_120 -4358_80764,205,4358_3974,Rossmore,6011,0,4358_7778195_5150010,4358_120 -4358_80764,96,4358_3975,Rossmore,12942,0,4358_7778195_5150002,4358_120 -4358_80764,205,4358_3976,Rossmore,6042,0,4358_7778195_5150008,4358_120 -4358_80764,96,4358_3978,Rossmore,12951,0,4358_7778195_5150005,4358_120 -4358_80764,205,4358_3979,Rossmore,6057,0,4358_7778195_5150004,4358_120 -4358_80680,96,4358_398,Sandyford B.D.,8610,0,4358_7778195_1011002,4358_7 -4358_80764,96,4358_3980,Rossmore,12971,0,4358_7778195_5150003,4358_120 -4358_80764,205,4358_3982,Rossmore,6071,0,4358_7778195_5150012,4358_120 -4358_80764,96,4358_3983,Rossmore,12984,0,4358_7778195_5150007,4358_120 -4358_80764,205,4358_3985,Rossmore,6079,0,4358_7778195_5150009,4358_121 -4358_80764,96,4358_3986,Rossmore,12999,0,4358_7778195_5150004,4358_120 -4358_80764,205,4358_3987,Rossmore,6000,0,4358_7778195_5150011,4358_120 -4358_80764,96,4358_3988,Rossmore,13013,0,4358_7778195_5150006,4358_120 -4358_80764,205,4358_3990,Rossmore,6029,0,4358_7778195_5150003,4358_120 -4358_80764,96,4358_3991,Rossmore,12944,0,4358_7778195_5150002,4358_120 -4358_80764,205,4358_3992,Rossmore,6013,0,4358_7778195_5150010,4358_120 -4358_80764,96,4358_3994,Rossmore,12953,0,4358_7778195_5150005,4358_120 -4358_80764,205,4358_3995,Rossmore,6044,0,4358_7778195_5150008,4358_120 -4358_80764,96,4358_3996,Rossmore,12973,0,4358_7778195_5150003,4358_120 -4358_80764,205,4358_3998,Rossmore,6062,0,4358_7778195_5150013,4358_120 -4358_80764,96,4358_3999,Rossmore,12986,0,4358_7778195_5150007,4358_120 -4358_80760,96,4358_4,Shaw street,9318,0,4358_7778195_9001002,4358_1 -4358_80680,205,4358_400,Sandyford B.D.,611,0,4358_7778195_1011003,4358_9 -4358_80764,205,4358_4000,Rossmore,6059,0,4358_7778195_5150004,4358_120 -4358_80764,96,4358_4002,Rossmore,13001,0,4358_7778195_5150004,4358_120 -4358_80764,205,4358_4003,Rossmore,6016,0,4358_7778195_5150014,4358_120 -4358_80764,205,4358_4004,Rossmore,6081,0,4358_7778195_5150009,4358_120 -4358_80764,96,4358_4005,Rossmore,13015,0,4358_7778195_5150006,4358_121 -4358_80764,205,4358_4007,Rossmore,6002,0,4358_7778195_5150011,4358_120 -4358_80764,96,4358_4008,Rossmore,12946,0,4358_7778195_5150002,4358_120 -4358_80764,205,4358_4009,Rossmore,6031,0,4358_7778195_5150003,4358_120 -4358_80680,96,4358_401,Sandyford B.D.,8587,0,4358_7778195_1011006,4358_7 -4358_80764,96,4358_4011,Rossmore,12955,0,4358_7778195_5150005,4358_120 -4358_80764,205,4358_4012,Rossmore,5991,0,4358_7778195_5150015,4358_120 -4358_80764,205,4358_4013,Rossmore,6015,0,4358_7778195_5150010,4358_120 -4358_80764,96,4358_4014,Rossmore,12975,0,4358_7778195_5150003,4358_121 -4358_80764,205,4358_4016,Rossmore,6046,0,4358_7778195_5150008,4358_120 -4358_80764,96,4358_4017,Rossmore,12988,0,4358_7778195_5150007,4358_120 -4358_80764,205,4358_4019,Rossmore,6064,0,4358_7778195_5150013,4358_121 -4358_80680,205,4358_402,Sandyford B.D.,581,0,4358_7778195_1011015,4358_7 -4358_80764,96,4358_4020,Rossmore,13003,0,4358_7778195_5150004,4358_120 -4358_80764,205,4358_4021,Rossmore,6061,0,4358_7778195_5150004,4358_120 -4358_80764,96,4358_4022,Rossmore,12948,0,4358_7778195_5150002,4358_120 -4358_80764,205,4358_4024,Rossmore,6004,0,4358_7778195_5150011,4358_120 -4358_80764,96,4358_4026,Rossmore,12957,0,4358_7778195_5150005,4358_121 -4358_80764,205,4358_4027,Rossmore,5993,0,4358_7778195_5150015,4358_120 -4358_80764,205,4358_4028,Rossmore,6048,0,4358_7778195_5150008,4358_120 -4358_80764,96,4358_4030,Rossmore,12990,0,4358_7778195_5150007,4358_122 -4358_80764,96,4358_4031,Rossmore,13005,0,4358_7778195_5150004,4358_120 -4358_80764,205,4358_4033,Rossmore,6066,0,4358_7778195_5150013,4358_122 -4358_80764,205,4358_4034,Rossmore,6006,0,4358_7778195_5150011,4358_120 -4358_80764,96,4358_4036,Rossmore,12959,0,4358_7778195_5150005,4358_122 -4358_80764,205,4358_4038,Rossmore,5995,0,4358_7778195_5150015,4358_121 -4358_80764,96,4358_4039,Rossmore,12992,0,4358_7778195_5150007,4358_122 -4358_80680,205,4358_404,Sandyford B.D.,575,0,4358_7778195_1011016,4358_7 -4358_80764,96,4358_4040,Rossmore,13007,0,4358_7778195_5150004,4358_120 -4358_80764,205,4358_4042,Rossmore,6068,0,4358_7778195_5150013,4358_122 -4358_80764,205,4358_4043,Rossmore,6008,0,4358_7778195_5150011,4358_120 -4358_80764,96,4358_4045,Rossmore,12961,0,4358_7778195_5150005,4358_122 -4358_80764,205,4358_4047,Rossmore,5997,0,4358_7778195_5150015,4358_121 -4358_80764,96,4358_4048,Rossmore,12994,0,4358_7778195_5150007,4358_122 -4358_80764,96,4358_4049,Rossmore,13009,0,4358_7778195_5150004,4358_120 -4358_80680,96,4358_405,Sandyford B.D.,8632,0,4358_7778195_1011001,4358_7 -4358_80764,205,4358_4051,Rossmore,6070,0,4358_7778195_5150013,4358_122 -4358_80764,205,4358_4052,Hawkins Street,5983,1,4358_7778195_5150001,4358_123 -4358_80764,205,4358_4053,Hawkins Street,6018,1,4358_7778195_5150002,4358_123 -4358_80764,96,4358_4054,Hawkins Street,12977,1,4358_7778195_5150001,4358_123 -4358_80764,205,4358_4055,Hawkins Street,6050,1,4358_7778195_5150004,4358_125 -4358_80764,205,4358_4056,Hawkins Street,6082,1,4358_7778195_5150005,4358_123 -4358_80764,96,4358_4057,Hawkins Street,12935,1,4358_7778195_5150002,4358_123 -4358_80764,205,4358_4058,Hawkins Street,6022,1,4358_7778195_5150003,4358_124 -4358_80764,205,4358_4059,Hawkins Street,5988,1,4358_7778195_5150006,4358_124 -4358_80764,96,4358_4060,Hawkins Street,12964,1,4358_7778195_5150003,4358_123 -4358_80764,205,4358_4061,Hawkins Street,6032,1,4358_7778195_5150007,4358_124 -4358_80764,205,4358_4063,Hawkins Street,5985,1,4358_7778195_5150001,4358_124 -4358_80764,205,4358_4064,Hawkins Street,6020,1,4358_7778195_5150002,4358_124 -4358_80764,96,4358_4065,Hawkins Street,12979,1,4358_7778195_5150001,4358_123 -4358_80764,205,4358_4066,Hawkins Street,6037,1,4358_7778195_5150008,4358_124 -4358_80764,96,4358_4068,Hawkins Street,12937,1,4358_7778195_5150002,4358_123 -4358_80764,205,4358_4069,Hawkins Street,6052,1,4358_7778195_5150004,4358_124 -4358_80680,205,4358_407,Sandyford B.D.,672,0,4358_7778195_1011017,4358_9 -4358_80764,205,4358_4071,Hawkins Street,6074,1,4358_7778195_5150009,4358_125 -4358_80764,96,4358_4072,Hawkins Street,12966,1,4358_7778195_5150003,4358_123 -4358_80764,205,4358_4073,Hawkins Street,6084,1,4358_7778195_5150005,4358_125 -4358_80764,205,4358_4075,Hawkins Street,6024,1,4358_7778195_5150003,4358_125 -4358_80764,205,4358_4076,Hawkins Street,5990,1,4358_7778195_5150006,4358_123 -4358_80764,96,4358_4077,Hawkins Street,12981,1,4358_7778195_5150001,4358_125 -4358_80764,205,4358_4079,Hawkins Street,6034,1,4358_7778195_5150007,4358_123 -4358_80680,96,4358_408,Sandyford B.D.,8619,0,4358_7778195_1011003,4358_7 -4358_80764,96,4358_4080,Hawkins Street,12939,1,4358_7778195_5150002,4358_123 -4358_80764,205,4358_4081,Hawkins Street,6039,1,4358_7778195_5150008,4358_123 -4358_80764,96,4358_4083,Hawkins Street,12968,1,4358_7778195_5150003,4358_123 -4358_80764,205,4358_4084,Hawkins Street,6054,1,4358_7778195_5150004,4358_125 -4358_80764,205,4358_4086,Hawkins Street,6076,1,4358_7778195_5150009,4358_123 -4358_80764,96,4358_4087,Hawkins Street,12996,1,4358_7778195_5150004,4358_123 -4358_80764,205,4358_4088,Hawkins Street,6026,1,4358_7778195_5150003,4358_123 -4358_80680,205,4358_409,Sandyford B.D.,627,0,4358_7778195_1011009,4358_7 -4358_80764,205,4358_4090,Hawkins Street,6036,1,4358_7778195_5150007,4358_123 -4358_80764,96,4358_4091,Hawkins Street,13010,1,4358_7778195_5150006,4358_125 -4358_80764,96,4358_4093,Hawkins Street,12941,1,4358_7778195_5150002,4358_123 -4358_80764,205,4358_4094,Hawkins Street,6010,1,4358_7778195_5150010,4358_125 -4358_80764,205,4358_4095,Hawkins Street,6041,1,4358_7778195_5150008,4358_123 -4358_80764,96,4358_4096,Hawkins Street,12950,1,4358_7778195_5150005,4358_125 -4358_80764,96,4358_4098,Hawkins Street,12970,1,4358_7778195_5150003,4358_123 -4358_80764,205,4358_4099,Hawkins Street,6056,1,4358_7778195_5150004,4358_125 -4358_80760,205,4358_41,Shaw street,3139,0,4358_7778195_9001004,4358_1 -4358_80764,205,4358_4101,Hawkins Street,6078,1,4358_7778195_5150009,4358_123 -4358_80764,96,4358_4102,Hawkins Street,12983,1,4358_7778195_5150007,4358_125 -4358_80764,96,4358_4103,Hawkins Street,12998,1,4358_7778195_5150004,4358_123 -4358_80764,205,4358_4104,Hawkins Street,5999,1,4358_7778195_5150011,4358_125 -4358_80764,205,4358_4106,Hawkins Street,6028,1,4358_7778195_5150003,4358_123 -4358_80764,96,4358_4107,Hawkins Street,13012,1,4358_7778195_5150006,4358_125 -4358_80764,96,4358_4109,Hawkins Street,12943,1,4358_7778195_5150002,4358_123 -4358_80680,205,4358_411,Sandyford B.D.,719,0,4358_7778195_1011018,4358_7 -4358_80764,205,4358_4110,Hawkins Street,6012,1,4358_7778195_5150010,4358_125 -4358_80764,205,4358_4111,Hawkins Street,6043,1,4358_7778195_5150008,4358_123 -4358_80764,96,4358_4112,Hawkins Street,12952,1,4358_7778195_5150005,4358_125 -4358_80764,96,4358_4114,Hawkins Street,12972,1,4358_7778195_5150003,4358_123 -4358_80764,205,4358_4115,Hawkins Street,6058,1,4358_7778195_5150004,4358_125 -4358_80764,205,4358_4117,Hawkins Street,6072,1,4358_7778195_5150012,4358_123 -4358_80764,96,4358_4118,Hawkins Street,12985,1,4358_7778195_5150007,4358_125 -4358_80764,96,4358_4119,Hawkins Street,13000,1,4358_7778195_5150004,4358_123 -4358_80680,96,4358_412,Sandyford B.D.,8583,0,4358_7778195_1011004,4358_7 -4358_80764,205,4358_4120,Hawkins Street,6080,1,4358_7778195_5150009,4358_125 -4358_80764,205,4358_4122,Hawkins Street,6001,1,4358_7778195_5150011,4358_123 -4358_80764,96,4358_4123,Hawkins Street,13014,1,4358_7778195_5150006,4358_125 -4358_80764,96,4358_4125,Hawkins Street,12945,1,4358_7778195_5150002,4358_123 -4358_80764,205,4358_4126,Hawkins Street,6030,1,4358_7778195_5150003,4358_125 -4358_80764,205,4358_4127,Hawkins Street,6014,1,4358_7778195_5150010,4358_123 -4358_80764,96,4358_4128,Hawkins Street,12954,1,4358_7778195_5150005,4358_125 -4358_80680,205,4358_413,Sandyford B.D.,617,0,4358_7778195_1011019,4358_7 -4358_80764,96,4358_4130,Hawkins Street,12974,1,4358_7778195_5150003,4358_123 -4358_80764,205,4358_4131,Hawkins Street,6045,1,4358_7778195_5150008,4358_125 -4358_80764,205,4358_4133,Hawkins Street,6063,1,4358_7778195_5150013,4358_123 -4358_80764,96,4358_4134,Hawkins Street,12987,1,4358_7778195_5150007,4358_125 -4358_80764,96,4358_4135,Hawkins Street,13002,1,4358_7778195_5150004,4358_123 -4358_80764,205,4358_4136,Hawkins Street,6060,1,4358_7778195_5150004,4358_125 -4358_80764,205,4358_4138,Hawkins Street,6017,1,4358_7778195_5150014,4358_123 -4358_80764,96,4358_4139,Hawkins Street,13016,1,4358_7778195_5150006,4358_125 -4358_80764,96,4358_4141,Hawkins Street,12947,1,4358_7778195_5150002,4358_123 -4358_80764,205,4358_4142,Hawkins Street,6003,1,4358_7778195_5150011,4358_123 -4358_80764,96,4358_4143,Hawkins Street,12956,1,4358_7778195_5150005,4358_123 -4358_80764,205,4358_4145,Hawkins Street,5992,1,4358_7778195_5150015,4358_123 -4358_80764,96,4358_4146,Hawkins Street,12976,1,4358_7778195_5150003,4358_123 -4358_80764,205,4358_4147,Hawkins Street,6047,1,4358_7778195_5150008,4358_123 -4358_80764,96,4358_4149,Hawkins Street,12989,1,4358_7778195_5150007,4358_123 -4358_80680,96,4358_415,Sandyford B.D.,8563,0,4358_7778195_1011005,4358_7 -4358_80764,205,4358_4150,Hawkins Street,6065,1,4358_7778195_5150013,4358_123 -4358_80764,96,4358_4151,Hawkins Street,13004,1,4358_7778195_5150004,4358_123 -4358_80764,205,4358_4153,Hawkins Street,6005,1,4358_7778195_5150011,4358_123 -4358_80764,96,4358_4155,Hawkins Street,12958,1,4358_7778195_5150005,4358_125 -4358_80764,205,4358_4156,Hawkins Street,5994,1,4358_7778195_5150015,4358_123 -4358_80764,96,4358_4158,Hawkins Street,12991,1,4358_7778195_5150007,4358_125 -4358_80764,205,4358_4159,Hawkins Street,6049,1,4358_7778195_5150008,4358_123 -4358_80680,205,4358_416,Sandyford B.D.,726,0,4358_7778195_1011014,4358_7 -4358_80764,96,4358_4160,Hawkins Street,13006,1,4358_7778195_5150004,4358_123 -4358_80764,205,4358_4162,Hawkins Street,6067,1,4358_7778195_5150013,4358_123 -4358_80764,96,4358_4164,Hawkins Street,12960,1,4358_7778195_5150005,4358_125 -4358_80764,205,4358_4165,Hawkins Street,6007,1,4358_7778195_5150011,4358_123 -4358_80764,96,4358_4167,Hawkins Street,12993,1,4358_7778195_5150007,4358_125 -4358_80764,205,4358_4168,Hawkins Street,5996,1,4358_7778195_5150015,4358_123 -4358_80764,96,4358_4169,Hawkins Street,13008,1,4358_7778195_5150004,4358_123 -4358_80764,205,4358_4171,Hawkins Street,6069,1,4358_7778195_5150013,4358_123 -4358_80764,205,4358_4172,Hawkins Street,6009,1,4358_7778195_5150011,4358_123 -4358_80764,96,4358_4174,Hawkins Street,12962,1,4358_7778195_5150005,4358_126 -4358_80765,205,4358_4175,Foxborough,2020,0,4358_7778195_9151004,4358_127 -4358_80765,205,4358_4176,Foxborough,2024,0,4358_7778195_9151006,4358_127 -4358_80765,96,4358_4177,Foxborough,9683,0,4358_7778195_9151004,4358_127 -4358_80765,205,4358_4178,Foxborough,1975,0,4358_7778195_9151001,4358_128 -4358_80765,96,4358_4179,Foxborough,9710,0,4358_7778195_9151001,4358_127 -4358_80680,205,4358_418,Sandyford B.D.,700,0,4358_7778195_1011006,4358_7 -4358_80765,205,4358_4180,Foxborough,2054,0,4358_7778195_9151002,4358_128 -4358_80765,96,4358_4181,Foxborough,13388,0,4358_7778195_9151002,4358_127 -4358_80765,205,4358_4182,Foxborough,1961,0,4358_7778195_9151003,4358_128 -4358_80765,205,4358_4183,Foxborough,2003,0,4358_7778195_9151005,4358_127 -4358_80765,96,4358_4184,Foxborough,13398,0,4358_7778195_9151003,4358_127 -4358_80765,205,4358_4185,Foxborough,2067,0,4358_7778195_9151007,4358_127 -4358_80765,96,4358_4186,Foxborough,9739,0,4358_7778195_9151008,4358_127 -4358_80765,205,4358_4188,Foxborough,1999,0,4358_7778195_9151011,4358_127 -4358_80765,96,4358_4189,Foxborough,9698,0,4358_7778195_9151005,4358_127 -4358_80680,96,4358_419,Sandyford B.D.,8572,0,4358_7778195_1011007,4358_7 -4358_80765,205,4358_4190,Foxborough,2023,0,4358_7778195_9151008,4358_127 -4358_80765,96,4358_4192,Foxborough,9747,0,4358_7778195_9151006,4358_127 -4358_80765,205,4358_4193,Foxborough,1950,0,4358_7778195_9151009,4358_127 -4358_80765,96,4358_4195,Foxborough,9685,0,4358_7778195_9151004,4358_128 -4358_80765,205,4358_4196,Foxborough,1936,0,4358_7778195_9151010,4358_127 -4358_80765,96,4358_4197,Foxborough,9723,0,4358_7778195_9151007,4358_127 -4358_80765,205,4358_4198,Foxborough,2026,0,4358_7778195_9151006,4358_127 -4358_80760,96,4358_42,Shaw street,9514,0,4358_7778195_9001005,4358_1 -4358_80765,96,4358_4200,Foxborough,9712,0,4358_7778195_9151001,4358_127 -4358_80765,205,4358_4201,Foxborough,2056,0,4358_7778195_9151002,4358_127 -4358_80765,96,4358_4202,Foxborough,13390,0,4358_7778195_9151002,4358_127 -4358_80765,205,4358_4204,Foxborough,1963,0,4358_7778195_9151003,4358_127 -4358_80765,96,4358_4205,Foxborough,13400,0,4358_7778195_9151003,4358_127 -4358_80765,205,4358_4206,Foxborough,2005,0,4358_7778195_9151005,4358_127 -4358_80765,96,4358_4208,Foxborough,9741,0,4358_7778195_9151008,4358_127 -4358_80765,205,4358_4209,Foxborough,2069,0,4358_7778195_9151007,4358_127 -4358_80680,205,4358_421,Sandyford B.D.,638,0,4358_7778195_1011011,4358_9 -4358_80765,96,4358_4210,Foxborough,9700,0,4358_7778195_9151005,4358_127 -4358_80765,205,4358_4212,Foxborough,2001,0,4358_7778195_9151011,4358_127 -4358_80765,96,4358_4213,Foxborough,9749,0,4358_7778195_9151006,4358_127 -4358_80765,205,4358_4214,Foxborough,1952,0,4358_7778195_9151009,4358_127 -4358_80765,96,4358_4216,Foxborough,9687,0,4358_7778195_9151004,4358_127 -4358_80765,205,4358_4217,Foxborough,1938,0,4358_7778195_9151010,4358_127 -4358_80765,96,4358_4218,Foxborough,9725,0,4358_7778195_9151007,4358_127 -4358_80680,96,4358_422,Sandyford B.D.,8589,0,4358_7778195_1011006,4358_7 -4358_80765,205,4358_4220,Foxborough,2028,0,4358_7778195_9151006,4358_127 -4358_80765,96,4358_4221,Foxborough,9714,0,4358_7778195_9151001,4358_127 -4358_80765,205,4358_4222,Foxborough,2058,0,4358_7778195_9151002,4358_127 -4358_80765,96,4358_4224,Foxborough,13392,0,4358_7778195_9151002,4358_127 -4358_80765,205,4358_4225,Foxborough,1965,0,4358_7778195_9151003,4358_127 -4358_80765,96,4358_4227,Foxborough,13402,0,4358_7778195_9151003,4358_128 -4358_80765,205,4358_4228,Foxborough,2007,0,4358_7778195_9151005,4358_127 -4358_80765,96,4358_4229,Foxborough,9743,0,4358_7778195_9151008,4358_127 -4358_80765,205,4358_4231,Foxborough,2071,0,4358_7778195_9151007,4358_128 -4358_80765,96,4358_4232,Foxborough,9702,0,4358_7778195_9151005,4358_127 -4358_80765,205,4358_4233,Foxborough,1989,0,4358_7778195_9151012,4358_127 -4358_80765,96,4358_4235,Foxborough,9751,0,4358_7778195_9151006,4358_128 -4358_80765,205,4358_4236,Foxborough,1911,0,4358_7778195_9151013,4358_127 -4358_80765,96,4358_4237,Foxborough,9689,0,4358_7778195_9151004,4358_127 -4358_80765,205,4358_4238,Foxborough,1954,0,4358_7778195_9151009,4358_127 -4358_80680,205,4358_424,Sandyford B.D.,613,0,4358_7778195_1011003,4358_9 -4358_80765,96,4358_4240,Foxborough,9727,0,4358_7778195_9151007,4358_127 -4358_80765,205,4358_4241,Foxborough,1940,0,4358_7778195_9151010,4358_127 -4358_80765,96,4358_4242,Foxborough,9716,0,4358_7778195_9151001,4358_127 -4358_80765,205,4358_4244,Foxborough,2030,0,4358_7778195_9151006,4358_127 -4358_80765,96,4358_4245,Foxborough,13394,0,4358_7778195_9151002,4358_127 -4358_80765,205,4358_4247,Foxborough,2060,0,4358_7778195_9151002,4358_128 -4358_80765,96,4358_4248,Foxborough,13404,0,4358_7778195_9151003,4358_127 -4358_80765,205,4358_4249,Foxborough,1967,0,4358_7778195_9151003,4358_127 -4358_80680,96,4358_425,Sandyford B.D.,8634,0,4358_7778195_1011001,4358_7 -4358_80765,96,4358_4251,Foxborough,9745,0,4358_7778195_9151008,4358_128 -4358_80765,205,4358_4252,Foxborough,2009,0,4358_7778195_9151005,4358_127 -4358_80765,96,4358_4253,Foxborough,9704,0,4358_7778195_9151005,4358_127 -4358_80765,205,4358_4254,Foxborough,2078,0,4358_7778195_9151014,4358_127 -4358_80765,96,4358_4256,Foxborough,9753,0,4358_7778195_9151006,4358_127 -4358_80765,205,4358_4257,Foxborough,2073,0,4358_7778195_9151007,4358_127 -4358_80765,96,4358_4258,Foxborough,9759,0,4358_7778195_9151009,4358_127 -4358_80765,205,4358_4260,Foxborough,1991,0,4358_7778195_9151012,4358_127 -4358_80765,96,4358_4261,Foxborough,9729,0,4358_7778195_9151007,4358_127 -4358_80765,205,4358_4262,Foxborough,1913,0,4358_7778195_9151013,4358_127 -4358_80765,96,4358_4264,Foxborough,9718,0,4358_7778195_9151001,4358_127 -4358_80765,205,4358_4265,Foxborough,1956,0,4358_7778195_9151009,4358_127 -4358_80765,96,4358_4266,Foxborough,9735,0,4358_7778195_9151010,4358_127 -4358_80765,205,4358_4268,Foxborough,1942,0,4358_7778195_9151010,4358_127 -4358_80765,96,4358_4269,Foxborough,13396,0,4358_7778195_9151002,4358_127 -4358_80680,205,4358_427,Sandyford B.D.,577,0,4358_7778195_1011016,4358_9 -4358_80765,205,4358_4271,Foxborough,2062,0,4358_7778195_9151002,4358_128 -4358_80765,96,4358_4272,Foxborough,13406,0,4358_7778195_9151003,4358_127 -4358_80765,205,4358_4273,Foxborough,1969,0,4358_7778195_9151003,4358_127 -4358_80765,96,4358_4274,Foxborough,9706,0,4358_7778195_9151005,4358_128 -4358_80765,205,4358_4277,Foxborough,2080,0,4358_7778195_9151014,4358_128 -4358_80765,96,4358_4278,Foxborough,9755,0,4358_7778195_9151006,4358_129 -4358_80765,96,4358_4279,Foxborough,9731,0,4358_7778195_9151007,4358_127 -4358_80680,96,4358_428,Sandyford B.D.,8621,0,4358_7778195_1011003,4358_7 -4358_80765,205,4358_4281,Foxborough,2075,0,4358_7778195_9151007,4358_129 -4358_80765,96,4358_4282,Foxborough,9720,0,4358_7778195_9151001,4358_127 -4358_80765,205,4358_4283,Foxborough,1915,0,4358_7778195_9151013,4358_128 -4358_80765,205,4358_4285,Foxborough,1958,0,4358_7778195_9151009,4358_127 -4358_80765,96,4358_4286,Foxborough,9737,0,4358_7778195_9151010,4358_128 -4358_80765,205,4358_4289,Foxborough,2064,0,4358_7778195_9151002,4358_128 -4358_80680,205,4358_429,Sandyford B.D.,629,0,4358_7778195_1011009,4358_7 -4358_80765,96,4358_4290,Foxborough,13408,0,4358_7778195_9151003,4358_129 -4358_80765,205,4358_4291,Foxborough,1971,0,4358_7778195_9151003,4358_127 -4358_80765,96,4358_4292,Foxborough,9708,0,4358_7778195_9151005,4358_128 -4358_80765,205,4358_4295,Foxborough,2082,0,4358_7778195_9151014,4358_128 -4358_80765,96,4358_4296,Foxborough,9757,0,4358_7778195_9151006,4358_129 -4358_80765,96,4358_4297,Foxborough,9733,0,4358_7778195_9151007,4358_127 -4358_80765,205,4358_4299,Foxborough,2077,0,4358_7778195_9151007,4358_129 -4358_80765,205,4358_4300,Docklands,1974,1,4358_7778195_9151001,4358_130 -4358_80765,205,4358_4301,Docklands,2053,1,4358_7778195_9151002,4358_130 -4358_80765,96,4358_4302,Docklands,9709,1,4358_7778195_9151001,4358_130 -4358_80765,205,4358_4303,Docklands,1960,1,4358_7778195_9151003,4358_131 -4358_80765,205,4358_4304,Docklands,2002,1,4358_7778195_9151005,4358_130 -4358_80765,96,4358_4305,Docklands,13387,1,4358_7778195_9151002,4358_130 -4358_80765,205,4358_4306,Docklands,2066,1,4358_7778195_9151007,4358_130 -4358_80765,96,4358_4307,Docklands,13397,1,4358_7778195_9151003,4358_130 -4358_80765,205,4358_4308,Docklands,2022,1,4358_7778195_9151008,4358_130 -4358_80765,205,4358_4309,Docklands,1949,1,4358_7778195_9151009,4358_130 -4358_80680,96,4358_431,Sandyford B.D.,8565,0,4358_7778195_1011005,4358_7 -4358_80765,96,4358_4310,Docklands,9697,1,4358_7778195_9151005,4358_131 -4358_80765,205,4358_4312,Docklands,2021,1,4358_7778195_9151004,4358_130 -4358_80765,96,4358_4313,Docklands,9746,1,4358_7778195_9151006,4358_130 -4358_80765,205,4358_4314,Docklands,1935,1,4358_7778195_9151010,4358_130 -4358_80765,96,4358_4316,Docklands,9684,1,4358_7778195_9151004,4358_130 -4358_80765,205,4358_4317,Docklands,2025,1,4358_7778195_9151006,4358_130 -4358_80765,96,4358_4318,Docklands,9722,1,4358_7778195_9151007,4358_130 -4358_80765,205,4358_4320,Docklands,1976,1,4358_7778195_9151001,4358_130 -4358_80765,96,4358_4321,Docklands,9711,1,4358_7778195_9151001,4358_130 -4358_80765,205,4358_4322,Docklands,2055,1,4358_7778195_9151002,4358_130 -4358_80765,96,4358_4324,Docklands,13389,1,4358_7778195_9151002,4358_130 -4358_80765,205,4358_4325,Docklands,1962,1,4358_7778195_9151003,4358_130 -4358_80765,96,4358_4327,Docklands,13399,1,4358_7778195_9151003,4358_131 -4358_80765,205,4358_4328,Docklands,2004,1,4358_7778195_9151005,4358_130 -4358_80765,96,4358_4329,Docklands,9740,1,4358_7778195_9151008,4358_130 -4358_80680,205,4358_433,Sandyford B.D.,619,0,4358_7778195_1011019,4358_9 -4358_80765,205,4358_4331,Docklands,2068,1,4358_7778195_9151007,4358_131 -4358_80765,96,4358_4332,Docklands,9699,1,4358_7778195_9151005,4358_130 -4358_80765,205,4358_4333,Docklands,2000,1,4358_7778195_9151011,4358_130 -4358_80765,96,4358_4335,Docklands,9748,1,4358_7778195_9151006,4358_131 -4358_80765,205,4358_4336,Docklands,1951,1,4358_7778195_9151009,4358_130 -4358_80765,96,4358_4337,Docklands,9686,1,4358_7778195_9151004,4358_130 -4358_80765,205,4358_4339,Docklands,1937,1,4358_7778195_9151010,4358_131 -4358_80680,96,4358_434,Sandyford B.D.,8574,0,4358_7778195_1011007,4358_7 -4358_80765,96,4358_4340,Docklands,9724,1,4358_7778195_9151007,4358_130 -4358_80765,205,4358_4341,Docklands,2027,1,4358_7778195_9151006,4358_130 -4358_80765,96,4358_4342,Docklands,9713,1,4358_7778195_9151001,4358_130 -4358_80765,205,4358_4344,Docklands,2057,1,4358_7778195_9151002,4358_130 -4358_80765,96,4358_4345,Docklands,13391,1,4358_7778195_9151002,4358_130 -4358_80765,205,4358_4346,Docklands,1964,1,4358_7778195_9151003,4358_130 -4358_80765,96,4358_4348,Docklands,13401,1,4358_7778195_9151003,4358_130 -4358_80765,205,4358_4349,Docklands,2006,1,4358_7778195_9151005,4358_130 -4358_80765,96,4358_4351,Docklands,9742,1,4358_7778195_9151008,4358_131 -4358_80765,205,4358_4352,Docklands,2070,1,4358_7778195_9151007,4358_130 -4358_80765,96,4358_4353,Docklands,9701,1,4358_7778195_9151005,4358_130 -4358_80765,205,4358_4354,Docklands,1988,1,4358_7778195_9151012,4358_130 -4358_80765,96,4358_4356,Docklands,9750,1,4358_7778195_9151006,4358_130 -4358_80765,205,4358_4357,Docklands,1910,1,4358_7778195_9151013,4358_130 -4358_80765,96,4358_4359,Docklands,9688,1,4358_7778195_9151004,4358_130 -4358_80680,205,4358_436,Sandyford B.D.,728,0,4358_7778195_1011014,4358_9 -4358_80765,205,4358_4360,Docklands,1953,1,4358_7778195_9151009,4358_130 -4358_80765,96,4358_4361,Docklands,9726,1,4358_7778195_9151007,4358_130 -4358_80765,205,4358_4363,Docklands,1939,1,4358_7778195_9151010,4358_130 -4358_80765,96,4358_4364,Docklands,9715,1,4358_7778195_9151001,4358_130 -4358_80765,205,4358_4365,Docklands,2029,1,4358_7778195_9151006,4358_130 -4358_80765,96,4358_4367,Docklands,13393,1,4358_7778195_9151002,4358_130 -4358_80765,205,4358_4368,Docklands,2059,1,4358_7778195_9151002,4358_130 -4358_80680,96,4358_437,Sandyford B.D.,8591,0,4358_7778195_1011006,4358_7 -4358_80765,96,4358_4370,Docklands,13403,1,4358_7778195_9151003,4358_131 -4358_80765,205,4358_4371,Docklands,1966,1,4358_7778195_9151003,4358_130 -4358_80765,96,4358_4372,Docklands,9744,1,4358_7778195_9151008,4358_130 -4358_80765,205,4358_4373,Docklands,2008,1,4358_7778195_9151005,4358_130 -4358_80765,96,4358_4375,Docklands,9703,1,4358_7778195_9151005,4358_130 -4358_80765,205,4358_4376,Docklands,2072,1,4358_7778195_9151007,4358_130 -4358_80765,96,4358_4378,Docklands,9752,1,4358_7778195_9151006,4358_131 -4358_80765,205,4358_4379,Docklands,1990,1,4358_7778195_9151012,4358_130 -4358_80765,96,4358_4380,Docklands,9758,1,4358_7778195_9151009,4358_130 -4358_80765,205,4358_4381,Docklands,1912,1,4358_7778195_9151013,4358_130 -4358_80765,96,4358_4383,Docklands,9728,1,4358_7778195_9151007,4358_130 -4358_80765,205,4358_4384,Docklands,1955,1,4358_7778195_9151009,4358_130 -4358_80765,96,4358_4385,Docklands,9717,1,4358_7778195_9151001,4358_130 -4358_80765,205,4358_4387,Docklands,1941,1,4358_7778195_9151010,4358_130 -4358_80765,96,4358_4388,Docklands,9734,1,4358_7778195_9151010,4358_130 -4358_80765,205,4358_4389,Docklands,2031,1,4358_7778195_9151006,4358_130 -4358_80680,205,4358_439,Sandyford B.D.,702,0,4358_7778195_1011006,4358_9 -4358_80765,96,4358_4391,Docklands,13395,1,4358_7778195_9151002,4358_130 -4358_80765,205,4358_4392,Docklands,2061,1,4358_7778195_9151002,4358_130 -4358_80765,96,4358_4394,Docklands,13405,1,4358_7778195_9151003,4358_131 -4358_80765,205,4358_4395,Docklands,1968,1,4358_7778195_9151003,4358_130 -4358_80765,96,4358_4396,Docklands,9705,1,4358_7778195_9151005,4358_130 -4358_80765,205,4358_4397,Docklands,2010,1,4358_7778195_9151005,4358_130 -4358_80765,96,4358_4399,Docklands,9754,1,4358_7778195_9151006,4358_130 -4358_80760,205,4358_44,Shaw street,1845,0,4358_7778195_9001006,4358_2 -4358_80680,96,4358_440,Sandyford B.D.,8636,0,4358_7778195_1011001,4358_7 -4358_80765,205,4358_4400,Docklands,2079,1,4358_7778195_9151014,4358_130 -4358_80765,96,4358_4401,Docklands,9760,1,4358_7778195_9151009,4358_130 -4358_80765,205,4358_4403,Docklands,2074,1,4358_7778195_9151007,4358_130 -4358_80765,96,4358_4404,Docklands,9730,1,4358_7778195_9151007,4358_130 -4358_80765,96,4358_4406,Docklands,9719,1,4358_7778195_9151001,4358_130 -4358_80765,205,4358_4407,Docklands,1914,1,4358_7778195_9151013,4358_131 -4358_80765,205,4358_4409,Docklands,1957,1,4358_7778195_9151009,4358_130 -4358_80765,96,4358_4410,Docklands,9736,1,4358_7778195_9151010,4358_131 -4358_80765,205,4358_4413,Docklands,2063,1,4358_7778195_9151002,4358_131 -4358_80765,96,4358_4414,Docklands,13407,1,4358_7778195_9151003,4358_133 -4358_80765,205,4358_4415,Docklands,1970,1,4358_7778195_9151003,4358_130 -4358_80765,96,4358_4416,Docklands,9707,1,4358_7778195_9151005,4358_131 -4358_80765,205,4358_4419,Docklands,2081,1,4358_7778195_9151014,4358_131 -4358_80680,205,4358_442,Sandyford B.D.,615,0,4358_7778195_1011003,4358_9 -4358_80765,96,4358_4420,Docklands,9756,1,4358_7778195_9151006,4358_133 -4358_80765,96,4358_4421,Docklands,9732,1,4358_7778195_9151007,4358_130 -4358_80765,205,4358_4423,Docklands,2076,1,4358_7778195_9151007,4358_133 -4358_80765,96,4358_4424,Docklands,9721,1,4358_7778195_9151001,4358_130 -4358_80765,205,4358_4425,Docklands,1916,1,4358_7778195_9151013,4358_131 -4358_80765,205,4358_4427,Docklands,1959,1,4358_7778195_9151009,4358_130 -4358_80765,96,4358_4428,Docklands,9738,1,4358_7778195_9151010,4358_131 -4358_80680,96,4358_443,Sandyford B.D.,8623,0,4358_7778195_1011003,4358_7 -4358_80765,205,4358_4431,Eden Quay,2065,1,4358_7778195_9151002,4358_134 -4358_80765,96,4358_4432,Eden Quay,13409,1,4358_7778195_9151003,4358_135 -4358_80766,96,4358_4433,Bray,7990,0,4358_7778195_2155001,4358_136 -4358_80766,205,4358_4434,Bray,358,0,4358_7778195_2155001,4358_137 -4358_80766,96,4358_4435,Bray,8094,0,4358_7778195_2155003,4358_136 -4358_80766,205,4358_4436,Bray,384,0,4358_7778195_2155003,4358_137 -4358_80766,96,4358_4437,Bray,8041,0,4358_7778195_2155005,4358_136 -4358_80766,205,4358_4438,Bray,403,0,4358_7778195_2155005,4358_137 -4358_80766,205,4358_4439,Bray,293,0,4358_7778195_2155007,4358_136 -4358_80680,96,4358_444,O'Connell Street,8567,0,4358_7778195_1011005,4358_8 -4358_80766,96,4358_4440,Bray,8032,0,4358_7778195_2155007,4358_137 -4358_80766,96,4358_4441,Bray,8060,0,4358_7778195_2155009,4358_136 -4358_80766,205,4358_4442,Bray,232,0,4358_7778195_2155009,4358_137 -4358_80766,205,4358_4443,Bray,309,0,4358_7778195_2155011,4358_136 -4358_80766,96,4358_4444,Bray,7973,0,4358_7778195_2155002,4358_137 -4358_80766,96,4358_4446,Bray,8025,0,4358_7778195_2155004,4358_137 -4358_80766,205,4358_4447,Bray,376,0,4358_7778195_2155002,4358_138 -4358_80766,205,4358_4448,Bray,315,0,4358_7778195_2155012,4358_136 -4358_80680,205,4358_445,O'Connell Street,579,0,4358_7778195_1011016,4358_10 -4358_80766,96,4358_4450,Bray,8006,0,4358_7778195_2155006,4358_138 -4358_80766,205,4358_4451,Bray,398,0,4358_7778195_2155004,4358_136 -4358_80766,96,4358_4453,Bray,8052,0,4358_7778195_2155008,4358_138 -4358_80766,96,4358_4455,Bray,8016,0,4358_7778195_2155010,4358_137 -4358_80766,205,4358_4456,Bray,357,0,4358_7778195_2155006,4358_138 -4358_80766,96,4358_4457,Bray,7992,0,4358_7778195_2155001,4358_136 -4358_80766,205,4358_4459,Bray,205,0,4358_7778195_2155008,4358_138 -4358_80766,205,4358_4460,Bray,302,0,4358_7778195_2155010,4358_136 -4358_80766,96,4358_4461,Bray,8096,0,4358_7778195_2155003,4358_137 -4358_80766,96,4358_4463,Bray,8043,0,4358_7778195_2155005,4358_136 -4358_80766,205,4358_4465,Bray,360,0,4358_7778195_2155001,4358_138 -4358_80766,96,4358_4467,Bray,8034,0,4358_7778195_2155007,4358_137 -4358_80766,205,4358_4468,Bray,324,0,4358_7778195_2155013,4358_138 -4358_80766,96,4358_4469,Bray,8062,0,4358_7778195_2155009,4358_136 -4358_80680,205,4358_447,St Pappin's Rd,741,1,4358_7778195_1011001,4358_12 -4358_80766,205,4358_4471,Bray,405,0,4358_7778195_2155005,4358_138 -4358_80766,96,4358_4473,Bray,7975,0,4358_7778195_2155002,4358_137 -4358_80766,205,4358_4474,Bray,270,0,4358_7778195_2155014,4358_138 -4358_80766,205,4358_4475,Bray,295,0,4358_7778195_2155007,4358_136 -4358_80766,96,4358_4477,Bray,8069,0,4358_7778195_2155011,4358_138 -4358_80766,205,4358_4478,Bray,234,0,4358_7778195_2155009,4358_136 -4358_80680,96,4358_448,St Pappin's Rd,8625,1,4358_7778195_1011001,4358_13 -4358_80766,96,4358_4480,Bray,8027,0,4358_7778195_2155004,4358_138 -4358_80766,205,4358_4481,Bray,311,0,4358_7778195_2155011,4358_136 -4358_80766,96,4358_4483,Bray,8008,0,4358_7778195_2155006,4358_138 -4358_80766,96,4358_4485,Bray,8054,0,4358_7778195_2155008,4358_137 -4358_80766,205,4358_4486,Bray,378,0,4358_7778195_2155002,4358_138 -4358_80766,205,4358_4487,Bray,317,0,4358_7778195_2155012,4358_136 -4358_80766,96,4358_4488,Bray,8018,0,4358_7778195_2155010,4358_137 -4358_80680,205,4358_449,St Pappin's Rd,595,1,4358_7778195_1011004,4358_12 -4358_80766,205,4358_4490,Bray,400,0,4358_7778195_2155004,4358_136 -4358_80766,96,4358_4491,Bray,7994,0,4358_7778195_2155001,4358_137 -4358_80766,96,4358_4493,Bray,8098,0,4358_7778195_2155003,4358_136 -4358_80766,205,4358_4495,Bray,207,0,4358_7778195_2155008,4358_138 -4358_80766,96,4358_4496,Bray,8077,0,4358_7778195_2155012,4358_136 -4358_80766,205,4358_4497,Bray,304,0,4358_7778195_2155010,4358_137 -4358_80766,96,4358_4499,Bray,8045,0,4358_7778195_2155005,4358_136 -4358_80760,96,4358_45,Shaw street,9454,0,4358_7778195_9001003,4358_1 -4358_80680,96,4358_450,St Pappin's Rd,8612,1,4358_7778195_1011003,4358_12 -4358_80766,205,4358_4501,Bray,362,0,4358_7778195_2155001,4358_138 -4358_80766,96,4358_4503,Bray,8036,0,4358_7778195_2155007,4358_137 -4358_80766,205,4358_4504,Bray,326,0,4358_7778195_2155013,4358_138 -4358_80766,96,4358_4505,Bray,8064,0,4358_7778195_2155009,4358_136 -4358_80766,205,4358_4507,Bray,407,0,4358_7778195_2155005,4358_138 -4358_80766,96,4358_4508,Bray,7977,0,4358_7778195_2155002,4358_136 -4358_80680,205,4358_451,St Pappin's Rd,693,1,4358_7778195_1011006,4358_12 -4358_80766,205,4358_4510,Bray,272,0,4358_7778195_2155014,4358_138 -4358_80766,205,4358_4511,Bray,297,0,4358_7778195_2155007,4358_136 -4358_80766,96,4358_4513,Bray,8071,0,4358_7778195_2155011,4358_138 -4358_80766,205,4358_4514,Bray,236,0,4358_7778195_2155009,4358_136 -4358_80766,96,4358_4516,Bray,8029,0,4358_7778195_2155004,4358_138 -4358_80766,205,4358_4517,Bray,313,0,4358_7778195_2155011,4358_136 -4358_80766,96,4358_4519,Bray,8010,0,4358_7778195_2155006,4358_138 -4358_80680,205,4358_452,St Pappin's Rd,584,1,4358_7778195_1011010,4358_12 -4358_80766,205,4358_4520,Bray,248,0,4358_7778195_2155015,4358_136 -4358_80766,96,4358_4522,Bray,8056,0,4358_7778195_2155008,4358_138 -4358_80766,96,4358_4523,Bray,8020,0,4358_7778195_2155010,4358_136 -4358_80766,205,4358_4525,Bray,380,0,4358_7778195_2155002,4358_138 -4358_80766,96,4358_4526,Bray,7996,0,4358_7778195_2155001,4358_136 -4358_80766,205,4358_4527,Bray,319,0,4358_7778195_2155012,4358_137 -4358_80766,205,4358_4529,Bray,402,0,4358_7778195_2155004,4358_136 -4358_80680,96,4358_453,St Pappin's Rd,8576,1,4358_7778195_1011004,4358_13 -4358_80766,96,4358_4530,Bray,8100,0,4358_7778195_2155003,4358_137 -4358_80766,96,4358_4532,Bray,8079,0,4358_7778195_2155012,4358_136 -4358_80766,205,4358_4533,Bray,209,0,4358_7778195_2155008,4358_137 -4358_80766,205,4358_4535,Bray,306,0,4358_7778195_2155010,4358_136 -4358_80766,96,4358_4536,Bray,8047,0,4358_7778195_2155005,4358_137 -4358_80766,96,4358_4539,Bray,8038,0,4358_7778195_2155007,4358_137 -4358_80680,205,4358_454,St Pappin's Rd,631,1,4358_7778195_1011011,4358_12 -4358_80766,205,4358_4540,Bray,364,0,4358_7778195_2155001,4358_138 -4358_80766,96,4358_4541,Bray,8066,0,4358_7778195_2155009,4358_136 -4358_80766,205,4358_4542,Bray,217,0,4358_7778195_2155016,4358_137 -4358_80766,96,4358_4544,Bray,7979,0,4358_7778195_2155002,4358_136 -4358_80766,205,4358_4546,Bray,328,0,4358_7778195_2155013,4358_138 -4358_80766,205,4358_4548,Bray,409,0,4358_7778195_2155005,4358_137 -4358_80766,96,4358_4549,Bray,8073,0,4358_7778195_2155011,4358_138 -4358_80680,96,4358_455,St Pappin's Rd,8556,1,4358_7778195_1011005,4358_12 -4358_80766,96,4358_4551,Bray,8031,0,4358_7778195_2155004,4358_137 -4358_80766,205,4358_4552,Bray,274,0,4358_7778195_2155014,4358_138 -4358_80766,205,4358_4553,Bray,299,0,4358_7778195_2155007,4358_136 -4358_80766,96,4358_4555,Bray,8012,0,4358_7778195_2155006,4358_138 -4358_80766,205,4358_4556,Bray,238,0,4358_7778195_2155009,4358_136 -4358_80766,96,4358_4558,Bray,8058,0,4358_7778195_2155008,4358_138 -4358_80766,205,4358_4559,Bray,250,0,4358_7778195_2155015,4358_136 -4358_80680,205,4358_456,St Pappin's Rd,680,1,4358_7778195_1011002,4358_12 -4358_80766,96,4358_4560,Bray,8022,0,4358_7778195_2155010,4358_137 -4358_80766,96,4358_4562,Bray,7998,0,4358_7778195_2155001,4358_136 -4358_80766,205,4358_4564,Bray,382,0,4358_7778195_2155002,4358_138 -4358_80766,96,4358_4565,Bray,8081,0,4358_7778195_2155012,4358_136 -4358_80766,205,4358_4566,Bray,346,0,4358_7778195_2155017,4358_137 -4358_80766,96,4358_4568,Bray,8049,0,4358_7778195_2155005,4358_136 -4358_80680,96,4358_457,St Pappin's Rd,8605,1,4358_7778195_1011002,4358_12 -4358_80766,205,4358_4570,Bray,211,0,4358_7778195_2155008,4358_138 -4358_80766,205,4358_4572,Bray,308,0,4358_7778195_2155010,4358_137 -4358_80766,96,4358_4573,Bray,8040,0,4358_7778195_2155007,4358_138 -4358_80766,96,4358_4574,Bray,8068,0,4358_7778195_2155009,4358_136 -4358_80766,205,4358_4575,Bray,219,0,4358_7778195_2155016,4358_137 -4358_80766,96,4358_4578,Bray,7981,0,4358_7778195_2155002,4358_137 -4358_80766,205,4358_4579,Bray,330,0,4358_7778195_2155013,4358_138 -4358_80680,205,4358_458,St Pappin's Rd,606,1,4358_7778195_1011003,4358_12 -4358_80766,205,4358_4581,Bray,411,0,4358_7778195_2155005,4358_137 -4358_80766,96,4358_4582,Bray,8075,0,4358_7778195_2155011,4358_138 -4358_80766,96,4358_4584,O'Connell St,8014,0,4358_7778195_2155006,4358_140 -4358_80766,205,4358_4585,O'Connell St,276,0,4358_7778195_2155014,4358_141 -4358_80766,96,4358_4586,IKEA,7972,1,4358_7778195_2155002,4358_142 -4358_80766,205,4358_4587,IKEA,375,1,4358_7778195_2155002,4358_144 -4358_80766,205,4358_4588,IKEA,397,1,4358_7778195_2155004,4358_142 -4358_80766,96,4358_4589,IKEA,8024,1,4358_7778195_2155004,4358_144 -4358_80680,96,4358_459,St Pappin's Rd,8627,1,4358_7778195_1011001,4358_12 -4358_80766,205,4358_4590,IKEA,356,1,4358_7778195_2155006,4358_142 -4358_80766,96,4358_4591,IKEA,8005,1,4358_7778195_2155006,4358_144 -4358_80766,96,4358_4592,IKEA,8051,1,4358_7778195_2155008,4358_142 -4358_80766,205,4358_4593,IKEA,204,1,4358_7778195_2155008,4358_144 -4358_80766,205,4358_4594,IKEA,301,1,4358_7778195_2155010,4358_142 -4358_80766,96,4358_4595,IKEA,8015,1,4358_7778195_2155010,4358_144 -4358_80766,96,4358_4596,IKEA,7991,1,4358_7778195_2155001,4358_142 -4358_80766,205,4358_4597,IKEA,359,1,4358_7778195_2155001,4358_144 -4358_80766,96,4358_4598,IKEA,8095,1,4358_7778195_2155003,4358_142 -4358_80760,205,4358_46,Shaw street,1701,0,4358_7778195_9001008,4358_1 -4358_80680,205,4358_460,St Pappin's Rd,760,1,4358_7778195_1011005,4358_13 -4358_80766,205,4358_4600,IKEA,323,1,4358_7778195_2155013,4358_146 -4358_80766,96,4358_4601,IKEA,8042,1,4358_7778195_2155005,4358_142 -4358_80766,205,4358_4602,IKEA,385,1,4358_7778195_2155003,4358_144 -4358_80766,205,4358_4605,IKEA,404,1,4358_7778195_2155005,4358_144 -4358_80766,96,4358_4606,IKEA,8033,1,4358_7778195_2155007,4358_146 -4358_80766,96,4358_4607,IKEA,8061,1,4358_7778195_2155009,4358_142 -4358_80766,205,4358_4609,IKEA,269,1,4358_7778195_2155014,4358_146 -4358_80766,205,4358_4610,IKEA,294,1,4358_7778195_2155007,4358_142 -4358_80766,96,4358_4612,IKEA,7974,1,4358_7778195_2155002,4358_146 -4358_80766,205,4358_4614,IKEA,233,1,4358_7778195_2155009,4358_144 -4358_80766,96,4358_4615,IKEA,8026,1,4358_7778195_2155004,4358_146 -4358_80766,205,4358_4616,IKEA,310,1,4358_7778195_2155011,4358_142 -4358_80766,96,4358_4618,IKEA,8007,1,4358_7778195_2155006,4358_146 -4358_80680,205,4358_462,St Pappin's Rd,675,1,4358_7778195_1011007,4358_12 -4358_80766,96,4358_4620,IKEA,8053,1,4358_7778195_2155008,4358_144 -4358_80766,205,4358_4621,IKEA,377,1,4358_7778195_2155002,4358_146 -4358_80766,205,4358_4622,IKEA,316,1,4358_7778195_2155012,4358_142 -4358_80766,96,4358_4624,IKEA,8017,1,4358_7778195_2155010,4358_146 -4358_80766,205,4358_4625,IKEA,399,1,4358_7778195_2155004,4358_142 -4358_80766,96,4358_4626,IKEA,7993,1,4358_7778195_2155001,4358_144 -4358_80766,96,4358_4628,IKEA,8097,1,4358_7778195_2155003,4358_142 -4358_80680,96,4358_463,St Pappin's Rd,8614,1,4358_7778195_1011003,4358_12 -4358_80766,205,4358_4630,IKEA,206,1,4358_7778195_2155008,4358_146 -4358_80766,96,4358_4631,IKEA,8076,1,4358_7778195_2155012,4358_142 -4358_80766,205,4358_4632,IKEA,303,1,4358_7778195_2155010,4358_144 -4358_80766,96,4358_4634,IKEA,8044,1,4358_7778195_2155005,4358_142 -4358_80766,205,4358_4636,IKEA,361,1,4358_7778195_2155001,4358_146 -4358_80766,96,4358_4638,IKEA,8035,1,4358_7778195_2155007,4358_144 -4358_80766,205,4358_4639,IKEA,325,1,4358_7778195_2155013,4358_146 -4358_80766,96,4358_4640,IKEA,8063,1,4358_7778195_2155009,4358_142 -4358_80766,205,4358_4642,IKEA,406,1,4358_7778195_2155005,4358_146 -4358_80766,96,4358_4643,IKEA,7976,1,4358_7778195_2155002,4358_142 -4358_80766,205,4358_4645,IKEA,271,1,4358_7778195_2155014,4358_146 -4358_80766,205,4358_4646,IKEA,296,1,4358_7778195_2155007,4358_142 -4358_80766,96,4358_4648,IKEA,8070,1,4358_7778195_2155011,4358_146 -4358_80766,205,4358_4649,IKEA,235,1,4358_7778195_2155009,4358_142 -4358_80680,205,4358_465,St Pappin's Rd,622,1,4358_7778195_1011009,4358_12 -4358_80766,96,4358_4651,IKEA,8028,1,4358_7778195_2155004,4358_146 -4358_80766,205,4358_4652,IKEA,312,1,4358_7778195_2155011,4358_142 -4358_80766,96,4358_4654,IKEA,8009,1,4358_7778195_2155006,4358_146 -4358_80766,96,4358_4656,IKEA,8055,1,4358_7778195_2155008,4358_144 -4358_80766,205,4358_4657,IKEA,379,1,4358_7778195_2155002,4358_146 -4358_80766,205,4358_4658,IKEA,318,1,4358_7778195_2155012,4358_142 -4358_80766,96,4358_4659,IKEA,8019,1,4358_7778195_2155010,4358_144 -4358_80680,96,4358_466,St Pappin's Rd,8578,1,4358_7778195_1011004,4358_12 -4358_80766,205,4358_4661,IKEA,401,1,4358_7778195_2155004,4358_142 -4358_80766,96,4358_4662,IKEA,7995,1,4358_7778195_2155001,4358_144 -4358_80766,96,4358_4664,IKEA,8099,1,4358_7778195_2155003,4358_142 -4358_80766,205,4358_4666,IKEA,208,1,4358_7778195_2155008,4358_146 -4358_80766,96,4358_4667,IKEA,8078,1,4358_7778195_2155012,4358_142 -4358_80766,205,4358_4668,IKEA,305,1,4358_7778195_2155010,4358_144 -4358_80680,205,4358_467,St Pappin's Rd,597,1,4358_7778195_1011004,4358_12 -4358_80766,96,4358_4670,IKEA,8046,1,4358_7778195_2155005,4358_142 -4358_80766,205,4358_4672,IKEA,363,1,4358_7778195_2155001,4358_146 -4358_80766,205,4358_4673,IKEA,216,1,4358_7778195_2155016,4358_142 -4358_80766,96,4358_4675,IKEA,8037,1,4358_7778195_2155007,4358_146 -4358_80766,96,4358_4676,IKEA,8065,1,4358_7778195_2155009,4358_142 -4358_80766,205,4358_4678,IKEA,327,1,4358_7778195_2155013,4358_146 -4358_80766,96,4358_4679,IKEA,7978,1,4358_7778195_2155002,4358_142 -4358_80766,205,4358_4680,IKEA,408,1,4358_7778195_2155005,4358_144 -4358_80766,96,4358_4683,IKEA,8072,1,4358_7778195_2155011,4358_144 -4358_80766,205,4358_4684,IKEA,273,1,4358_7778195_2155014,4358_146 -4358_80766,205,4358_4685,IKEA,298,1,4358_7778195_2155007,4358_142 -4358_80766,96,4358_4687,IKEA,8030,1,4358_7778195_2155004,4358_146 -4358_80766,205,4358_4689,IKEA,237,1,4358_7778195_2155009,4358_144 -4358_80680,96,4358_469,St Pappin's Rd,8558,1,4358_7778195_1011005,4358_12 -4358_80766,96,4358_4690,IKEA,8011,1,4358_7778195_2155006,4358_146 -4358_80766,205,4358_4691,IKEA,314,1,4358_7778195_2155011,4358_142 -4358_80766,96,4358_4693,IKEA,8057,1,4358_7778195_2155008,4358_146 -4358_80766,205,4358_4694,IKEA,249,1,4358_7778195_2155015,4358_142 -4358_80766,96,4358_4695,IKEA,8021,1,4358_7778195_2155010,4358_144 -4358_80766,96,4358_4697,IKEA,7997,1,4358_7778195_2155001,4358_142 -4358_80766,205,4358_4699,IKEA,381,1,4358_7778195_2155002,4358_146 -4358_80680,205,4358_470,St Pappin's Rd,660,1,4358_7778195_1011013,4358_12 -4358_80766,205,4358_4700,IKEA,320,1,4358_7778195_2155012,4358_142 -4358_80766,96,4358_4701,IKEA,8101,1,4358_7778195_2155003,4358_144 -4358_80766,96,4358_4703,IKEA,8080,1,4358_7778195_2155012,4358_142 -4358_80766,205,4358_4704,IKEA,345,1,4358_7778195_2155017,4358_144 -4358_80766,96,4358_4706,IKEA,8048,1,4358_7778195_2155005,4358_142 -4358_80766,205,4358_4708,IKEA,210,1,4358_7778195_2155008,4358_146 -4358_80766,205,4358_4710,IKEA,307,1,4358_7778195_2155010,4358_144 -4358_80766,96,4358_4711,IKEA,8039,1,4358_7778195_2155007,4358_146 -4358_80766,96,4358_4712,IKEA,8067,1,4358_7778195_2155009,4358_142 -4358_80766,205,4358_4713,IKEA,218,1,4358_7778195_2155016,4358_144 -4358_80766,96,4358_4716,IKEA,7980,1,4358_7778195_2155002,4358_144 -4358_80766,205,4358_4717,IKEA,329,1,4358_7778195_2155013,4358_146 -4358_80766,205,4358_4719,IKEA,410,1,4358_7778195_2155005,4358_144 -4358_80680,205,4358_472,St Pappin's Rd,695,1,4358_7778195_1011006,4358_12 -4358_80766,96,4358_4720,IKEA,8074,1,4358_7778195_2155011,4358_146 -4358_80766,96,4358_4722,IKEA,8013,1,4358_7778195_2155006,4358_144 -4358_80766,205,4358_4723,IKEA,275,1,4358_7778195_2155014,4358_146 -4358_80766,205,4358_4724,IKEA,300,1,4358_7778195_2155007,4358_142 -4358_80766,96,4358_4726,IKEA,8059,1,4358_7778195_2155008,4358_146 -4358_80766,205,4358_4727,IKEA,251,1,4358_7778195_2155015,4358_142 -4358_80766,96,4358_4728,IKEA,8023,1,4358_7778195_2155010,4358_144 -4358_80680,96,4358_473,St Pappin's Rd,8607,1,4358_7778195_1011002,4358_12 -4358_80766,96,4358_4730,IKEA,7999,1,4358_7778195_2155001,4358_142 -4358_80766,205,4358_4732,IKEA,383,1,4358_7778195_2155002,4358_146 -4358_80766,96,4358_4733,O'Connell St,8082,1,4358_7778195_2155012,4358_143 -4358_80766,205,4358_4734,O'Connell St,347,1,4358_7778195_2155017,4358_145 -4358_80766,96,4358_4736,O'Connell St,8050,1,4358_7778195_2155005,4358_143 -4358_80766,205,4358_4738,O'Connell St,212,1,4358_7778195_2155008,4358_147 -4358_80790,96,4358_4739,Limekiln Ave,10076,0,4358_7778195_5015001,4358_148 -4358_80790,96,4358_4740,Limekiln Ave,10031,0,4358_7778195_5015005,4358_148 -4358_80790,205,4358_4741,Limekiln Ave,2585,0,4358_7778195_5015007,4358_149 -4358_80790,205,4358_4742,Limekiln Ave,2598,0,4358_7778195_5015012,4358_148 -4358_80790,205,4358_4743,Limekiln Ave,2526,0,4358_7778195_5015014,4358_148 -4358_80790,205,4358_4744,Limekiln Ave,2711,0,4358_7778195_5015004,4358_148 -4358_80790,96,4358_4745,Limekiln Ave,9978,0,4358_7778195_5015002,4358_149 -4358_80790,205,4358_4746,Limekiln Ave,2767,0,4358_7778195_5015018,4358_148 -4358_80790,96,4358_4747,Limekiln Ave,10303,0,4358_7778195_5015012,4358_149 -4358_80790,205,4358_4748,Limekiln Ave,2769,0,4358_7778195_5015019,4358_148 -4358_80790,96,4358_4749,Limekiln Ave,10078,0,4358_7778195_5015001,4358_149 -4358_80680,205,4358_475,St Pappin's Rd,633,1,4358_7778195_1011011,4358_12 -4358_80790,205,4358_4750,Limekiln Ave,2656,0,4358_7778195_5015020,4358_148 -4358_80790,96,4358_4751,Limekiln Ave,10356,0,4358_7778195_5015013,4358_148 -4358_80790,205,4358_4752,Limekiln Ave,2633,0,4358_7778195_5015009,4358_148 -4358_80790,96,4358_4753,Limekiln Ave,10033,0,4358_7778195_5015005,4358_148 -4358_80790,205,4358_4754,Limekiln Ave,2587,0,4358_7778195_5015007,4358_149 -4358_80790,205,4358_4755,Limekiln Ave,2600,0,4358_7778195_5015012,4358_148 -4358_80790,96,4358_4756,Limekiln Ave,9980,0,4358_7778195_5015002,4358_149 -4358_80790,205,4358_4758,Limekiln Ave,2528,0,4358_7778195_5015014,4358_148 -4358_80790,96,4358_4759,Limekiln Ave,10364,0,4358_7778195_5015014,4358_149 -4358_80680,96,4358_476,St Pappin's Rd,8584,1,4358_7778195_1011006,4358_12 -4358_80790,205,4358_4760,Limekiln Ave,2713,0,4358_7778195_5015004,4358_148 -4358_80790,96,4358_4762,Limekiln Ave,10305,0,4358_7778195_5015012,4358_150 -4358_80790,205,4358_4763,Limekiln Ave,2679,0,4358_7778195_5015021,4358_148 -4358_80790,96,4358_4764,Limekiln Ave,10080,0,4358_7778195_5015001,4358_149 -4358_80790,205,4358_4766,Limekiln Ave,2771,0,4358_7778195_5015019,4358_148 -4358_80790,96,4358_4767,Limekiln Ave,10358,0,4358_7778195_5015013,4358_149 -4358_80790,96,4358_4768,Limekiln Ave,10035,0,4358_7778195_5015005,4358_148 -4358_80790,205,4358_4770,Limekiln Ave,2589,0,4358_7778195_5015007,4358_150 -4358_80790,205,4358_4771,Limekiln Ave,2602,0,4358_7778195_5015012,4358_148 -4358_80790,96,4358_4772,Limekiln Ave,9982,0,4358_7778195_5015002,4358_149 -4358_80790,205,4358_4774,Limekiln Ave,2530,0,4358_7778195_5015014,4358_148 -4358_80790,96,4358_4775,Limekiln Ave,10366,0,4358_7778195_5015014,4358_149 -4358_80790,205,4358_4776,Limekiln Ave,2715,0,4358_7778195_5015004,4358_148 -4358_80790,96,4358_4778,Limekiln Ave,10307,0,4358_7778195_5015012,4358_150 -4358_80790,205,4358_4779,Limekiln Ave,2681,0,4358_7778195_5015021,4358_148 -4358_80680,205,4358_478,St Pappin's Rd,608,1,4358_7778195_1011003,4358_12 -4358_80790,96,4358_4780,Limekiln Ave,10082,0,4358_7778195_5015001,4358_149 -4358_80790,205,4358_4782,Limekiln Ave,2773,0,4358_7778195_5015019,4358_148 -4358_80790,96,4358_4783,Limekiln Ave,10360,0,4358_7778195_5015013,4358_149 -4358_80790,96,4358_4784,Limekiln Ave,10037,0,4358_7778195_5015005,4358_148 -4358_80790,205,4358_4786,Limekiln Ave,2591,0,4358_7778195_5015007,4358_150 -4358_80790,205,4358_4787,Limekiln Ave,2604,0,4358_7778195_5015012,4358_148 -4358_80790,96,4358_4788,Limekiln Ave,9984,0,4358_7778195_5015002,4358_149 -4358_80680,96,4358_479,St Pappin's Rd,8629,1,4358_7778195_1011001,4358_12 -4358_80790,205,4358_4790,Limekiln Ave,2532,0,4358_7778195_5015014,4358_148 -4358_80790,96,4358_4791,Limekiln Ave,10368,0,4358_7778195_5015014,4358_149 -4358_80790,205,4358_4792,Limekiln Ave,2717,0,4358_7778195_5015004,4358_148 -4358_80790,96,4358_4794,Limekiln Ave,10309,0,4358_7778195_5015012,4358_150 -4358_80790,205,4358_4795,Limekiln Ave,2683,0,4358_7778195_5015021,4358_148 -4358_80790,96,4358_4796,Limekiln Ave,10084,0,4358_7778195_5015001,4358_149 -4358_80790,205,4358_4798,Limekiln Ave,2775,0,4358_7778195_5015019,4358_148 -4358_80790,96,4358_4799,Limekiln Ave,10362,0,4358_7778195_5015013,4358_149 -4358_80760,205,4358_48,Shaw street,1819,0,4358_7778195_9001001,4358_1 -4358_80790,96,4358_4800,Limekiln Ave,10039,0,4358_7778195_5015005,4358_148 -4358_80790,205,4358_4802,Limekiln Ave,2593,0,4358_7778195_5015007,4358_150 -4358_80790,205,4358_4803,Limekiln Ave,2606,0,4358_7778195_5015012,4358_148 -4358_80790,96,4358_4804,Limekiln Ave,9986,0,4358_7778195_5015002,4358_149 -4358_80790,205,4358_4806,Limekiln Ave,2534,0,4358_7778195_5015014,4358_148 -4358_80790,96,4358_4807,Limekiln Ave,10370,0,4358_7778195_5015014,4358_149 -4358_80790,205,4358_4808,Limekiln Ave,2719,0,4358_7778195_5015004,4358_148 -4358_80680,205,4358_481,St Pappin's Rd,677,1,4358_7778195_1011007,4358_12 -4358_80790,96,4358_4810,Limekiln Ave,10311,0,4358_7778195_5015012,4358_150 -4358_80790,96,4358_4811,Limekiln Ave,10115,0,4358_7778195_5015017,4358_148 -4358_80790,205,4358_4812,Limekiln Ave,2685,0,4358_7778195_5015021,4358_149 -4358_80790,205,4358_4814,Limekiln Ave,2777,0,4358_7778195_5015019,4358_148 -4358_80790,96,4358_4815,Limekiln Ave,10086,0,4358_7778195_5015001,4358_149 -4358_80790,96,4358_4816,Limekiln Ave,10041,0,4358_7778195_5015005,4358_148 -4358_80790,205,4358_4818,Limekiln Ave,2595,0,4358_7778195_5015007,4358_150 -4358_80790,205,4358_4819,Limekiln Ave,2618,0,4358_7778195_5015025,4358_148 -4358_80680,96,4358_482,St Pappin's Rd,8616,1,4358_7778195_1011003,4358_12 -4358_80790,96,4358_4820,Limekiln Ave,9988,0,4358_7778195_5015002,4358_148 -4358_80790,205,4358_4821,Limekiln Ave,2608,0,4358_7778195_5015012,4358_148 -4358_80790,96,4358_4823,Limekiln Ave,10372,0,4358_7778195_5015014,4358_148 -4358_80790,205,4358_4824,Limekiln Ave,2536,0,4358_7778195_5015014,4358_148 -4358_80790,205,4358_4825,Limekiln Ave,2629,0,4358_7778195_5015029,4358_148 -4358_80790,96,4358_4827,Limekiln Ave,10313,0,4358_7778195_5015012,4358_150 -4358_80790,205,4358_4828,Limekiln Ave,2634,0,4358_7778195_5015027,4358_148 -4358_80790,96,4358_4829,Limekiln Ave,10117,0,4358_7778195_5015017,4358_148 -4358_80790,205,4358_4830,Limekiln Ave,2721,0,4358_7778195_5015004,4358_148 -4358_80790,96,4358_4832,Limekiln Ave,10088,0,4358_7778195_5015001,4358_148 -4358_80790,205,4358_4833,Limekiln Ave,2501,0,4358_7778195_5015030,4358_148 -4358_80790,205,4358_4834,Limekiln Ave,2779,0,4358_7778195_5015019,4358_148 -4358_80790,96,4358_4835,Limekiln Ave,10043,0,4358_7778195_5015005,4358_149 -4358_80790,205,4358_4837,Limekiln Ave,2597,0,4358_7778195_5015007,4358_148 -4358_80790,205,4358_4839,Limekiln Ave,2620,0,4358_7778195_5015025,4358_149 -4358_80680,205,4358_484,St Pappin's Rd,624,1,4358_7778195_1011009,4358_12 -4358_80790,96,4358_4840,Limekiln Ave,10374,0,4358_7778195_5015014,4358_150 -4358_80790,205,4358_4841,Limekiln Ave,2538,0,4358_7778195_5015014,4358_148 -4358_80790,96,4358_4843,Limekiln Ave,10315,0,4358_7778195_5015012,4358_150 -4358_80790,205,4358_4844,Limekiln Ave,2636,0,4358_7778195_5015027,4358_148 -4358_80790,96,4358_4845,Limekiln Ave,10162,0,4358_7778195_5015019,4358_149 -4358_80790,205,4358_4847,Limekiln Ave,2781,0,4358_7778195_5015019,4358_148 -4358_80790,96,4358_4848,Limekiln Ave,10045,0,4358_7778195_5015005,4358_149 -4358_80680,96,4358_485,St Pappin's Rd,8580,1,4358_7778195_1011004,4358_12 -4358_80790,205,4358_4851,Limekiln Ave,2622,0,4358_7778195_5015025,4358_149 -4358_80790,96,4358_4852,Limekiln Ave,10376,0,4358_7778195_5015014,4358_150 -4358_80790,205,4358_4853,Limekiln Ave,2540,0,4358_7778195_5015014,4358_148 -4358_80790,96,4358_4855,Limekiln Ave,10317,0,4358_7778195_5015012,4358_150 -4358_80790,205,4358_4856,Limekiln Ave,2638,0,4358_7778195_5015027,4358_148 -4358_80790,96,4358_4858,Limekiln Ave,10089,0,4358_7778195_5015020,4358_150 -4358_80790,205,4358_4859,Limekiln Ave,2783,0,4358_7778195_5015019,4358_148 -4358_80790,96,4358_4860,Limekiln Ave,10047,0,4358_7778195_5015005,4358_149 -4358_80790,205,4358_4862,Limekiln Ave,2624,0,4358_7778195_5015025,4358_148 -4358_80790,96,4358_4863,Limekiln Ave,10378,0,4358_7778195_5015014,4358_149 -4358_80790,205,4358_4865,Limekiln Ave,2542,0,4358_7778195_5015014,4358_148 -4358_80790,96,4358_4867,Limekiln Ave,10319,0,4358_7778195_5015012,4358_152 -4358_80790,96,4358_4868,Merrion Square,10075,1,4358_7778195_5015001,4358_153 -4358_80790,205,4358_4869,Merrion Square,2710,1,4358_7778195_5015004,4358_153 -4358_80680,205,4358_487,St Pappin's Rd,723,1,4358_7778195_1011014,4358_12 -4358_80790,96,4358_4870,Merrion Square,9977,1,4358_7778195_5015002,4358_153 -4358_80790,96,4358_4871,Merrion Square,10077,1,4358_7778195_5015001,4358_153 -4358_80790,205,4358_4872,Merrion Square,2632,1,4358_7778195_5015009,4358_154 -4358_80790,205,4358_4873,Merrion Square,2586,1,4358_7778195_5015007,4358_153 -4358_80790,96,4358_4874,Merrion Square,10032,1,4358_7778195_5015005,4358_153 -4358_80790,205,4358_4875,Merrion Square,2599,1,4358_7778195_5015012,4358_153 -4358_80790,205,4358_4876,Merrion Square,2527,1,4358_7778195_5015014,4358_153 -4358_80790,96,4358_4877,Merrion Square,9979,1,4358_7778195_5015002,4358_153 -4358_80790,205,4358_4878,Merrion Square,2712,1,4358_7778195_5015004,4358_153 -4358_80680,96,4358_488,St Pappin's Rd,8560,1,4358_7778195_1011005,4358_12 -4358_80790,205,4358_4880,Merrion Square,2678,1,4358_7778195_5015021,4358_153 -4358_80790,96,4358_4881,Merrion Square,10304,1,4358_7778195_5015012,4358_153 -4358_80790,205,4358_4882,Merrion Square,2768,1,4358_7778195_5015018,4358_153 -4358_80790,205,4358_4884,Merrion Square,2770,1,4358_7778195_5015019,4358_153 -4358_80790,96,4358_4885,Merrion Square,10079,1,4358_7778195_5015001,4358_154 -4358_80790,205,4358_4886,Merrion Square,2657,1,4358_7778195_5015020,4358_153 -4358_80790,96,4358_4887,Merrion Square,10357,1,4358_7778195_5015013,4358_154 -4358_80790,96,4358_4889,Merrion Square,10034,1,4358_7778195_5015005,4358_153 -4358_80790,205,4358_4890,Merrion Square,2588,1,4358_7778195_5015007,4358_154 -4358_80790,205,4358_4892,Merrion Square,2601,1,4358_7778195_5015012,4358_153 -4358_80790,96,4358_4893,Merrion Square,9981,1,4358_7778195_5015002,4358_154 -4358_80790,205,4358_4895,Merrion Square,2529,1,4358_7778195_5015014,4358_153 -4358_80790,96,4358_4896,Merrion Square,10365,1,4358_7778195_5015014,4358_154 -4358_80790,205,4358_4897,Merrion Square,2714,1,4358_7778195_5015004,4358_153 -4358_80790,96,4358_4899,Merrion Square,10306,1,4358_7778195_5015012,4358_155 -4358_80760,96,4358_49,Shaw street,9492,0,4358_7778195_9001004,4358_1 -4358_80680,205,4358_490,St Pappin's Rd,697,1,4358_7778195_1011006,4358_12 -4358_80790,205,4358_4900,Merrion Square,2680,1,4358_7778195_5015021,4358_153 -4358_80790,96,4358_4901,Merrion Square,10081,1,4358_7778195_5015001,4358_154 -4358_80790,205,4358_4903,Merrion Square,2772,1,4358_7778195_5015019,4358_153 -4358_80790,96,4358_4904,Merrion Square,10359,1,4358_7778195_5015013,4358_154 -4358_80790,96,4358_4905,Merrion Square,10036,1,4358_7778195_5015005,4358_153 -4358_80790,205,4358_4907,Merrion Square,2590,1,4358_7778195_5015007,4358_155 -4358_80790,205,4358_4908,Merrion Square,2603,1,4358_7778195_5015012,4358_153 -4358_80790,96,4358_4909,Merrion Square,9983,1,4358_7778195_5015002,4358_154 -4358_80680,96,4358_491,St Pappin's Rd,8569,1,4358_7778195_1011007,4358_12 -4358_80790,205,4358_4911,Merrion Square,2531,1,4358_7778195_5015014,4358_153 -4358_80790,96,4358_4912,Merrion Square,10367,1,4358_7778195_5015014,4358_154 -4358_80790,205,4358_4913,Merrion Square,2716,1,4358_7778195_5015004,4358_153 -4358_80790,96,4358_4915,Merrion Square,10308,1,4358_7778195_5015012,4358_155 -4358_80790,205,4358_4916,Merrion Square,2682,1,4358_7778195_5015021,4358_153 -4358_80790,96,4358_4917,Merrion Square,10083,1,4358_7778195_5015001,4358_154 -4358_80790,205,4358_4919,Merrion Square,2774,1,4358_7778195_5015019,4358_153 -4358_80790,96,4358_4920,Merrion Square,10361,1,4358_7778195_5015013,4358_154 -4358_80790,96,4358_4921,Merrion Square,10038,1,4358_7778195_5015005,4358_153 -4358_80790,205,4358_4923,Merrion Square,2592,1,4358_7778195_5015007,4358_155 -4358_80790,205,4358_4924,Merrion Square,2605,1,4358_7778195_5015012,4358_153 -4358_80790,96,4358_4925,Merrion Square,9985,1,4358_7778195_5015002,4358_154 -4358_80790,205,4358_4927,Merrion Square,2533,1,4358_7778195_5015014,4358_153 -4358_80790,96,4358_4928,Merrion Square,10369,1,4358_7778195_5015014,4358_154 -4358_80790,205,4358_4929,Merrion Square,2718,1,4358_7778195_5015004,4358_153 -4358_80680,205,4358_493,St Pappin's Rd,635,1,4358_7778195_1011011,4358_12 -4358_80790,96,4358_4931,Merrion Square,10310,1,4358_7778195_5015012,4358_155 -4358_80790,205,4358_4932,Merrion Square,2684,1,4358_7778195_5015021,4358_153 -4358_80790,96,4358_4933,Merrion Square,10085,1,4358_7778195_5015001,4358_154 -4358_80790,205,4358_4935,Merrion Square,2776,1,4358_7778195_5015019,4358_153 -4358_80790,96,4358_4936,Merrion Square,10363,1,4358_7778195_5015013,4358_154 -4358_80790,96,4358_4937,Merrion Square,10040,1,4358_7778195_5015005,4358_153 -4358_80790,205,4358_4939,Merrion Square,2594,1,4358_7778195_5015007,4358_155 -4358_80680,96,4358_494,St Pappin's Rd,8609,1,4358_7778195_1011002,4358_12 -4358_80790,205,4358_4940,Merrion Square,2607,1,4358_7778195_5015012,4358_153 -4358_80790,96,4358_4941,Merrion Square,9987,1,4358_7778195_5015002,4358_154 -4358_80790,205,4358_4943,Merrion Square,2535,1,4358_7778195_5015014,4358_153 -4358_80790,96,4358_4944,Merrion Square,10371,1,4358_7778195_5015014,4358_154 -4358_80790,205,4358_4945,Merrion Square,2628,1,4358_7778195_5015029,4358_153 -4358_80790,96,4358_4947,Merrion Square,10312,1,4358_7778195_5015012,4358_155 -4358_80790,96,4358_4948,Merrion Square,10116,1,4358_7778195_5015017,4358_153 -4358_80790,205,4358_4949,Merrion Square,2720,1,4358_7778195_5015004,4358_154 -4358_80790,205,4358_4951,Merrion Square,2686,1,4358_7778195_5015021,4358_153 -4358_80790,96,4358_4952,Merrion Square,10087,1,4358_7778195_5015001,4358_154 -4358_80790,205,4358_4953,Merrion Square,2778,1,4358_7778195_5015019,4358_153 -4358_80790,96,4358_4954,Merrion Square,10042,1,4358_7778195_5015005,4358_154 -4358_80790,205,4358_4956,Merrion Square,2596,1,4358_7778195_5015007,4358_153 -4358_80790,96,4358_4957,Merrion Square,9989,1,4358_7778195_5015002,4358_153 -4358_80790,205,4358_4959,Merrion Square,2619,1,4358_7778195_5015025,4358_154 -4358_80680,205,4358_496,St Pappin's Rd,610,1,4358_7778195_1011003,4358_12 -4358_80790,96,4358_4960,Merrion Square,10373,1,4358_7778195_5015014,4358_153 -4358_80790,205,4358_4961,Merrion Square,2609,1,4358_7778195_5015012,4358_153 -4358_80790,205,4358_4962,Merrion Square,2537,1,4358_7778195_5015014,4358_153 -4358_80790,96,4358_4964,Merrion Square,10314,1,4358_7778195_5015012,4358_155 -4358_80790,96,4358_4965,Merrion Square,10118,1,4358_7778195_5015017,4358_153 -4358_80790,205,4358_4966,Merrion Square,2635,1,4358_7778195_5015027,4358_153 -4358_80790,96,4358_4967,Merrion Square,10161,1,4358_7778195_5015019,4358_154 -4358_80790,205,4358_4969,Merrion Square,2780,1,4358_7778195_5015019,4358_153 -4358_80680,96,4358_497,St Pappin's Rd,8586,1,4358_7778195_1011006,4358_12 -4358_80790,96,4358_4970,Merrion Square,10044,1,4358_7778195_5015005,4358_154 -4358_80790,205,4358_4973,Merrion Square,2621,1,4358_7778195_5015025,4358_154 -4358_80790,96,4358_4974,Merrion Square,10375,1,4358_7778195_5015014,4358_155 -4358_80790,205,4358_4975,Merrion Square,2539,1,4358_7778195_5015014,4358_153 -4358_80790,96,4358_4977,Merrion Square,10316,1,4358_7778195_5015012,4358_155 -4358_80790,205,4358_4979,Merrion Square,2637,1,4358_7778195_5015027,4358_153 -4358_80790,96,4358_4980,Merrion Square,10163,1,4358_7778195_5015019,4358_154 -4358_80790,205,4358_4982,Merrion Square,2782,1,4358_7778195_5015019,4358_153 -4358_80790,96,4358_4983,Merrion Square,10046,1,4358_7778195_5015005,4358_154 -4358_80790,205,4358_4985,Merrion Square,2623,1,4358_7778195_5015025,4358_153 -4358_80790,96,4358_4986,Merrion Square,10377,1,4358_7778195_5015014,4358_154 -4358_80790,205,4358_4988,Merrion Square,2541,1,4358_7778195_5015014,4358_153 -4358_80790,96,4358_4989,Merrion Square,10318,1,4358_7778195_5015012,4358_154 -4358_80680,205,4358_499,St Pappin's Rd,580,1,4358_7778195_1011015,4358_13 -4358_80790,205,4358_4991,Merrion Square,2639,1,4358_7778195_5015027,4358_153 -4358_80790,96,4358_4992,Merrion Square,10090,1,4358_7778195_5015020,4358_154 -4358_80790,205,4358_4994,Merrion Square,2784,1,4358_7778195_5015019,4358_153 -4358_80790,96,4358_4995,Merrion Square,10048,1,4358_7778195_5015005,4358_154 -4358_80788,205,4358_4996,Stocking Ave,2554,0,4358_7778195_5015006,4358_156 -4358_80788,205,4358_4997,Stocking Ave,2505,0,4358_7778195_5015010,4358_156 -4358_80788,205,4358_4998,Stocking Ave,2379,0,4358_7778195_5015013,4358_156 -4358_80788,96,4358_4999,Stocking Ave,10091,0,4358_7778195_5015008,4358_156 -4358_80760,205,4358_5,Shaw street,1858,0,4358_7778195_9001007,4358_1 -4358_80760,205,4358_50,Shaw street,1656,0,4358_7778195_9001003,4358_1 -4358_80680,205,4358_500,St Pappin's Rd,574,1,4358_7778195_1011016,4358_12 -4358_80788,205,4358_5000,Stocking Ave,2456,0,4358_7778195_5015001,4358_156 -4358_80788,96,4358_5001,Stocking Ave,10128,0,4358_7778195_5015010,4358_156 -4358_80788,205,4358_5002,Stocking Ave,2396,0,4358_7778195_5015002,4358_156 -4358_80788,96,4358_5003,Stocking Ave,10190,0,4358_7778195_5015003,4358_156 -4358_80788,205,4358_5004,Stocking Ave,2522,0,4358_7778195_5015003,4358_156 -4358_80788,96,4358_5005,Stocking Ave,10272,0,4358_7778195_5015004,4358_156 -4358_80788,205,4358_5006,Stocking Ave,2361,0,4358_7778195_5015005,4358_156 -4358_80788,96,4358_5007,Stocking Ave,10215,0,4358_7778195_5015006,4358_156 -4358_80788,205,4358_5008,Stocking Ave,2543,0,4358_7778195_5015022,4358_156 -4358_80788,96,4358_5009,Stocking Ave,10002,0,4358_7778195_5015007,4358_156 -4358_80680,96,4358_501,St Pappin's Rd,8631,1,4358_7778195_1011001,4358_13 -4358_80788,205,4358_5010,Stocking Ave,2459,0,4358_7778195_5015008,4358_156 -4358_80788,96,4358_5011,Stocking Ave,10330,0,4358_7778195_5015009,4358_156 -4358_80788,205,4358_5012,Stocking Ave,2382,0,4358_7778195_5015011,4358_156 -4358_80788,96,4358_5013,Stocking Ave,10344,0,4358_7778195_5015011,4358_156 -4358_80788,205,4358_5014,Stocking Ave,2411,0,4358_7778195_5015015,4358_156 -4358_80788,96,4358_5015,Stocking Ave,10093,0,4358_7778195_5015008,4358_157 -4358_80788,205,4358_5017,Stocking Ave,2338,0,4358_7778195_5015016,4358_157 -4358_80788,96,4358_5018,Stocking Ave,10130,0,4358_7778195_5015010,4358_158 -4358_80788,205,4358_5019,Stocking Ave,2507,0,4358_7778195_5015010,4358_156 -4358_80788,96,4358_5020,Stocking Ave,10192,0,4358_7778195_5015003,4358_157 -4358_80788,205,4358_5021,Stocking Ave,2566,0,4358_7778195_5015017,4358_156 -4358_80788,96,4358_5022,Stocking Ave,10274,0,4358_7778195_5015004,4358_157 -4358_80788,96,4358_5024,Stocking Ave,10217,0,4358_7778195_5015006,4358_156 -4358_80788,205,4358_5025,Stocking Ave,2398,0,4358_7778195_5015002,4358_157 -4358_80788,96,4358_5026,Stocking Ave,10004,0,4358_7778195_5015007,4358_156 -4358_80788,205,4358_5027,Stocking Ave,2363,0,4358_7778195_5015005,4358_157 -4358_80788,96,4358_5029,Stocking Ave,10332,0,4358_7778195_5015009,4358_156 -4358_80680,205,4358_503,St Pappin's Rd,671,1,4358_7778195_1011017,4358_13 -4358_80788,205,4358_5030,Stocking Ave,2574,0,4358_7778195_5015023,4358_157 -4358_80788,96,4358_5032,Stocking Ave,9990,0,4358_7778195_5015015,4358_157 -4358_80788,205,4358_5033,Stocking Ave,2545,0,4358_7778195_5015022,4358_158 -4358_80788,96,4358_5034,Stocking Ave,10346,0,4358_7778195_5015011,4358_156 -4358_80788,205,4358_5035,Stocking Ave,2461,0,4358_7778195_5015008,4358_157 -4358_80788,205,4358_5036,Stocking Ave,2384,0,4358_7778195_5015011,4358_156 -4358_80788,96,4358_5038,Stocking Ave,10095,0,4358_7778195_5015008,4358_158 -4358_80788,205,4358_5039,Stocking Ave,2413,0,4358_7778195_5015015,4358_156 -4358_80680,96,4358_504,St Pappin's Rd,8618,1,4358_7778195_1011003,4358_12 -4358_80788,96,4358_5040,Stocking Ave,10132,0,4358_7778195_5015010,4358_157 -4358_80788,96,4358_5041,Stocking Ave,10194,0,4358_7778195_5015003,4358_156 -4358_80788,205,4358_5042,Stocking Ave,2340,0,4358_7778195_5015016,4358_157 -4358_80788,205,4358_5044,Stocking Ave,2509,0,4358_7778195_5015010,4358_156 -4358_80788,96,4358_5045,Stocking Ave,10276,0,4358_7778195_5015004,4358_157 -4358_80788,96,4358_5047,Stocking Ave,10219,0,4358_7778195_5015006,4358_156 -4358_80788,205,4358_5048,Stocking Ave,2568,0,4358_7778195_5015017,4358_157 -4358_80680,205,4358_505,St Pappin's Rd,626,1,4358_7778195_1011009,4358_13 -4358_80788,205,4358_5050,Stocking Ave,2400,0,4358_7778195_5015002,4358_156 -4358_80788,96,4358_5051,Stocking Ave,10205,0,4358_7778195_5015016,4358_157 -4358_80788,96,4358_5053,Stocking Ave,10006,0,4358_7778195_5015007,4358_157 -4358_80788,205,4358_5054,Stocking Ave,2365,0,4358_7778195_5015005,4358_158 -4358_80788,96,4358_5055,Stocking Ave,10334,0,4358_7778195_5015009,4358_156 -4358_80788,205,4358_5056,Stocking Ave,2576,0,4358_7778195_5015023,4358_157 -4358_80788,96,4358_5058,Stocking Ave,9992,0,4358_7778195_5015015,4358_156 -4358_80788,205,4358_5059,Stocking Ave,2547,0,4358_7778195_5015022,4358_157 -4358_80788,96,4358_5061,Stocking Ave,10348,0,4358_7778195_5015011,4358_156 -4358_80788,205,4358_5062,Stocking Ave,2463,0,4358_7778195_5015008,4358_157 -4358_80788,205,4358_5063,Stocking Ave,2386,0,4358_7778195_5015011,4358_156 -4358_80788,96,4358_5065,Stocking Ave,10097,0,4358_7778195_5015008,4358_158 -4358_80788,205,4358_5066,Stocking Ave,2415,0,4358_7778195_5015015,4358_156 -4358_80788,96,4358_5067,Stocking Ave,10134,0,4358_7778195_5015010,4358_157 -4358_80788,96,4358_5069,Stocking Ave,10196,0,4358_7778195_5015003,4358_156 -4358_80680,205,4358_507,St Pappin's Rd,718,1,4358_7778195_1011018,4358_12 -4358_80788,205,4358_5070,Stocking Ave,2342,0,4358_7778195_5015016,4358_157 -4358_80788,205,4358_5072,Stocking Ave,2511,0,4358_7778195_5015010,4358_156 -4358_80788,96,4358_5073,Stocking Ave,10278,0,4358_7778195_5015004,4358_157 -4358_80788,96,4358_5074,Stocking Ave,10221,0,4358_7778195_5015006,4358_156 -4358_80788,205,4358_5076,Stocking Ave,2570,0,4358_7778195_5015017,4358_158 -4358_80788,96,4358_5077,Stocking Ave,10207,0,4358_7778195_5015016,4358_156 -4358_80788,96,4358_5079,Stocking Ave,10008,0,4358_7778195_5015007,4358_156 -4358_80680,96,4358_508,St Pappin's Rd,8582,1,4358_7778195_1011004,4358_12 -4358_80788,205,4358_5080,Stocking Ave,2367,0,4358_7778195_5015005,4358_157 -4358_80788,96,4358_5082,Stocking Ave,10336,0,4358_7778195_5015009,4358_156 -4358_80788,205,4358_5083,Stocking Ave,2578,0,4358_7778195_5015023,4358_157 -4358_80788,96,4358_5085,Stocking Ave,9994,0,4358_7778195_5015015,4358_157 -4358_80788,205,4358_5086,Stocking Ave,2549,0,4358_7778195_5015022,4358_158 -4358_80788,96,4358_5087,Stocking Ave,10350,0,4358_7778195_5015011,4358_156 -4358_80788,205,4358_5088,Stocking Ave,2465,0,4358_7778195_5015008,4358_157 -4358_80680,205,4358_509,St Pappin's Rd,616,1,4358_7778195_1011019,4358_12 -4358_80788,205,4358_5090,Stocking Ave,2388,0,4358_7778195_5015011,4358_156 -4358_80788,96,4358_5091,Stocking Ave,10099,0,4358_7778195_5015008,4358_157 -4358_80788,205,4358_5093,Stocking Ave,2417,0,4358_7778195_5015015,4358_156 -4358_80788,96,4358_5094,Stocking Ave,10136,0,4358_7778195_5015010,4358_157 -4358_80788,96,4358_5095,Stocking Ave,10198,0,4358_7778195_5015003,4358_156 -4358_80788,205,4358_5097,Stocking Ave,2513,0,4358_7778195_5015010,4358_156 -4358_80788,96,4358_5098,Stocking Ave,10280,0,4358_7778195_5015004,4358_157 -4358_80788,205,4358_5100,Stocking Ave,2498,0,4358_7778195_5015026,4358_156 -4358_80788,96,4358_5101,Stocking Ave,10223,0,4358_7778195_5015006,4358_156 -4358_80788,205,4358_5102,Stocking Ave,2572,0,4358_7778195_5015017,4358_156 -4358_80788,205,4358_5104,Stocking Ave,2404,0,4358_7778195_5015002,4358_156 -4358_80788,96,4358_5105,Stocking Ave,10209,0,4358_7778195_5015016,4358_157 -4358_80788,205,4358_5106,Stocking Ave,2520,0,4358_7778195_5015024,4358_156 -4358_80788,96,4358_5108,Stocking Ave,10010,0,4358_7778195_5015007,4358_157 -4358_80788,205,4358_5109,Stocking Ave,2556,0,4358_7778195_5015028,4358_156 -4358_80680,96,4358_511,St Pappin's Rd,8562,1,4358_7778195_1011005,4358_12 -4358_80788,205,4358_5110,Stocking Ave,2369,0,4358_7778195_5015005,4358_156 -4358_80788,96,4358_5111,Stocking Ave,10338,0,4358_7778195_5015009,4358_157 -4358_80788,96,4358_5113,Stocking Ave,9996,0,4358_7778195_5015015,4358_156 -4358_80788,205,4358_5114,Stocking Ave,2580,0,4358_7778195_5015023,4358_156 -4358_80788,96,4358_5116,Stocking Ave,10352,0,4358_7778195_5015011,4358_156 -4358_80788,205,4358_5117,Stocking Ave,2467,0,4358_7778195_5015008,4358_156 -4358_80788,96,4358_5119,Stocking Ave,10101,0,4358_7778195_5015008,4358_157 -4358_80680,205,4358_512,St Pappin's Rd,725,1,4358_7778195_1011014,4358_13 -4358_80788,205,4358_5120,Stocking Ave,2390,0,4358_7778195_5015011,4358_156 -4358_80788,96,4358_5121,Stocking Ave,10138,0,4358_7778195_5015010,4358_157 -4358_80788,205,4358_5123,Stocking Ave,2419,0,4358_7778195_5015015,4358_156 -4358_80788,96,4358_5124,Stocking Ave,10200,0,4358_7778195_5015003,4358_157 -4358_80788,96,4358_5125,Stocking Ave,10225,0,4358_7778195_5015006,4358_156 -4358_80788,205,4358_5126,Stocking Ave,2515,0,4358_7778195_5015010,4358_157 -4358_80788,205,4358_5128,Stocking Ave,2500,0,4358_7778195_5015026,4358_156 -4358_80788,96,4358_5129,Stocking Ave,10211,0,4358_7778195_5015016,4358_157 -4358_80788,96,4358_5131,Stocking Ave,10050,0,4358_7778195_5015018,4358_156 -4358_80788,205,4358_5132,Stocking Ave,2406,0,4358_7778195_5015002,4358_157 -4358_80788,96,4358_5133,Stocking Ave,10340,0,4358_7778195_5015009,4358_156 -4358_80788,205,4358_5134,Stocking Ave,2582,0,4358_7778195_5015023,4358_157 -4358_80788,96,4358_5136,Stocking Ave,10354,0,4358_7778195_5015011,4358_156 -4358_80788,205,4358_5137,Stocking Ave,2469,0,4358_7778195_5015008,4358_157 -4358_80788,205,4358_5139,Stocking Ave,2392,0,4358_7778195_5015011,4358_156 -4358_80680,205,4358_514,St Pappin's Rd,699,1,4358_7778195_1011006,4358_12 -4358_80788,96,4358_5140,Stocking Ave,10103,0,4358_7778195_5015008,4358_157 -4358_80788,205,4358_5141,Stocking Ave,2421,0,4358_7778195_5015015,4358_156 -4358_80788,96,4358_5142,Stocking Ave,10140,0,4358_7778195_5015010,4358_157 -4358_80788,205,4358_5144,Stocking Ave,2517,0,4358_7778195_5015010,4358_156 -4358_80788,96,4358_5145,Stocking Ave,10202,0,4358_7778195_5015003,4358_157 -4358_80788,96,4358_5147,Stocking Ave,10227,0,4358_7778195_5015006,4358_156 -4358_80788,205,4358_5148,Stocking Ave,2408,0,4358_7778195_5015002,4358_157 -4358_80788,96,4358_5149,Stocking Ave,10213,0,4358_7778195_5015016,4358_156 -4358_80680,96,4358_515,St Pappin's Rd,8571,1,4358_7778195_1011007,4358_12 -4358_80788,205,4358_5150,Stocking Ave,2584,0,4358_7778195_5015023,4358_157 -4358_80788,96,4358_5152,Stocking Ave,10342,0,4358_7778195_5015009,4358_156 -4358_80788,205,4358_5153,Stocking Ave,2471,0,4358_7778195_5015008,4358_157 -4358_80788,205,4358_5155,Stocking Ave,2394,0,4358_7778195_5015011,4358_156 -4358_80788,96,4358_5156,Stocking Ave,10105,0,4358_7778195_5015008,4358_157 -4358_80788,205,4358_5157,Merrion Square,2455,1,4358_7778195_5015001,4358_159 -4358_80788,205,4358_5158,Merrion Square,2395,1,4358_7778195_5015002,4358_159 -4358_80788,96,4358_5159,Merrion Square,10189,1,4358_7778195_5015003,4358_159 -4358_80680,205,4358_516,St Pappin's Rd,691,1,4358_7778195_1011020,4358_12 -4358_80788,205,4358_5160,Merrion Square,2521,1,4358_7778195_5015003,4358_160 -4358_80788,205,4358_5161,Merrion Square,2360,1,4358_7778195_5015005,4358_159 -4358_80788,96,4358_5162,Merrion Square,10271,1,4358_7778195_5015004,4358_160 -4358_80788,96,4358_5163,Merrion Square,10214,1,4358_7778195_5015006,4358_159 -4358_80788,205,4358_5164,Merrion Square,2458,1,4358_7778195_5015008,4358_160 -4358_80788,205,4358_5165,Merrion Square,2381,1,4358_7778195_5015011,4358_159 -4358_80788,96,4358_5166,Merrion Square,10001,1,4358_7778195_5015007,4358_159 -4358_80788,205,4358_5167,Merrion Square,2555,1,4358_7778195_5015006,4358_159 -4358_80788,205,4358_5168,Merrion Square,2410,1,4358_7778195_5015015,4358_159 -4358_80788,96,4358_5169,Merrion Square,10329,1,4358_7778195_5015009,4358_160 -4358_80788,205,4358_5170,Merrion Square,2337,1,4358_7778195_5015016,4358_159 -4358_80788,96,4358_5171,Merrion Square,10343,1,4358_7778195_5015011,4358_159 -4358_80788,205,4358_5172,Merrion Square,2506,1,4358_7778195_5015010,4358_159 -4358_80788,205,4358_5173,Merrion Square,2380,1,4358_7778195_5015013,4358_159 -4358_80788,96,4358_5174,Merrion Square,10092,1,4358_7778195_5015008,4358_160 -4358_80788,96,4358_5176,Merrion Square,10129,1,4358_7778195_5015010,4358_160 -4358_80788,205,4358_5177,Merrion Square,2457,1,4358_7778195_5015001,4358_161 -4358_80788,96,4358_5178,Merrion Square,10191,1,4358_7778195_5015003,4358_159 -4358_80788,205,4358_5179,Merrion Square,2397,1,4358_7778195_5015002,4358_160 -4358_80680,96,4358_518,St Pappin's Rd,8611,1,4358_7778195_1011002,4358_12 -4358_80788,205,4358_5180,Merrion Square,2523,1,4358_7778195_5015003,4358_159 -4358_80788,96,4358_5181,Merrion Square,10273,1,4358_7778195_5015004,4358_160 -4358_80788,96,4358_5183,Merrion Square,10216,1,4358_7778195_5015006,4358_159 -4358_80788,205,4358_5184,Merrion Square,2362,1,4358_7778195_5015005,4358_160 -4358_80788,96,4358_5185,Merrion Square,10003,1,4358_7778195_5015007,4358_159 -4358_80788,205,4358_5187,Merrion Square,2573,1,4358_7778195_5015023,4358_161 -4358_80788,96,4358_5188,Merrion Square,10331,1,4358_7778195_5015009,4358_159 -4358_80788,205,4358_5189,Merrion Square,2544,1,4358_7778195_5015022,4358_160 -4358_80680,205,4358_519,St Pappin's Rd,637,1,4358_7778195_1011011,4358_13 -4358_80788,96,4358_5191,Merrion Square,10345,1,4358_7778195_5015011,4358_160 -4358_80788,205,4358_5192,Merrion Square,2460,1,4358_7778195_5015008,4358_161 -4358_80788,205,4358_5193,Merrion Square,2383,1,4358_7778195_5015011,4358_159 -4358_80788,96,4358_5194,Merrion Square,10094,1,4358_7778195_5015008,4358_160 -4358_80788,205,4358_5195,Merrion Square,2412,1,4358_7778195_5015015,4358_159 -4358_80788,96,4358_5197,Merrion Square,10131,1,4358_7778195_5015010,4358_161 -4358_80788,96,4358_5198,Merrion Square,10193,1,4358_7778195_5015003,4358_159 -4358_80788,205,4358_5199,Merrion Square,2339,1,4358_7778195_5015016,4358_160 -4358_80760,205,4358_52,Shaw street,1590,0,4358_7778195_9001005,4358_1 -4358_80788,205,4358_5200,Merrion Square,2508,1,4358_7778195_5015010,4358_159 -4358_80788,96,4358_5201,Merrion Square,10275,1,4358_7778195_5015004,4358_160 -4358_80788,96,4358_5203,Merrion Square,10218,1,4358_7778195_5015006,4358_159 -4358_80788,205,4358_5204,Merrion Square,2567,1,4358_7778195_5015017,4358_160 -4358_80788,205,4358_5205,Merrion Square,2399,1,4358_7778195_5015002,4358_159 -4358_80788,96,4358_5207,Merrion Square,10204,1,4358_7778195_5015016,4358_161 -4358_80788,96,4358_5208,Merrion Square,10005,1,4358_7778195_5015007,4358_159 -4358_80788,205,4358_5209,Merrion Square,2364,1,4358_7778195_5015005,4358_160 -4358_80680,205,4358_521,St Pappin's Rd,612,1,4358_7778195_1011003,4358_12 -4358_80788,96,4358_5211,Merrion Square,10333,1,4358_7778195_5015009,4358_160 -4358_80788,205,4358_5212,Merrion Square,2575,1,4358_7778195_5015023,4358_161 -4358_80788,96,4358_5213,Merrion Square,9991,1,4358_7778195_5015015,4358_159 -4358_80788,205,4358_5214,Merrion Square,2546,1,4358_7778195_5015022,4358_160 -4358_80788,96,4358_5216,Merrion Square,10347,1,4358_7778195_5015011,4358_159 -4358_80788,205,4358_5217,Merrion Square,2462,1,4358_7778195_5015008,4358_160 -4358_80788,205,4358_5219,Merrion Square,2385,1,4358_7778195_5015011,4358_159 -4358_80680,96,4358_522,St Pappin's Rd,8588,1,4358_7778195_1011006,4358_12 -4358_80788,96,4358_5220,Merrion Square,10096,1,4358_7778195_5015008,4358_160 -4358_80788,205,4358_5221,Merrion Square,2414,1,4358_7778195_5015015,4358_159 -4358_80788,96,4358_5222,Merrion Square,10133,1,4358_7778195_5015010,4358_160 -4358_80788,96,4358_5224,Merrion Square,10195,1,4358_7778195_5015003,4358_159 -4358_80788,205,4358_5225,Merrion Square,2341,1,4358_7778195_5015016,4358_160 -4358_80788,205,4358_5227,Merrion Square,2510,1,4358_7778195_5015010,4358_159 -4358_80788,96,4358_5228,Merrion Square,10277,1,4358_7778195_5015004,4358_160 -4358_80788,96,4358_5230,Merrion Square,10220,1,4358_7778195_5015006,4358_159 -4358_80788,205,4358_5231,Merrion Square,2569,1,4358_7778195_5015017,4358_160 -4358_80788,205,4358_5233,Merrion Square,2401,1,4358_7778195_5015002,4358_160 -4358_80788,96,4358_5234,Merrion Square,10206,1,4358_7778195_5015016,4358_161 -4358_80788,96,4358_5235,Merrion Square,10007,1,4358_7778195_5015007,4358_159 -4358_80788,205,4358_5236,Merrion Square,2366,1,4358_7778195_5015005,4358_160 -4358_80788,96,4358_5238,Merrion Square,10335,1,4358_7778195_5015009,4358_159 -4358_80788,205,4358_5239,Merrion Square,2577,1,4358_7778195_5015023,4358_160 -4358_80680,205,4358_524,St Pappin's Rd,576,1,4358_7778195_1011016,4358_12 -4358_80788,96,4358_5241,Merrion Square,9993,1,4358_7778195_5015015,4358_159 -4358_80788,205,4358_5242,Merrion Square,2548,1,4358_7778195_5015022,4358_160 -4358_80788,96,4358_5244,Merrion Square,10349,1,4358_7778195_5015011,4358_160 -4358_80788,205,4358_5245,Merrion Square,2464,1,4358_7778195_5015008,4358_161 -4358_80788,205,4358_5246,Merrion Square,2387,1,4358_7778195_5015011,4358_159 -4358_80788,96,4358_5247,Merrion Square,10098,1,4358_7778195_5015008,4358_160 -4358_80788,205,4358_5249,Merrion Square,2416,1,4358_7778195_5015015,4358_159 -4358_80680,96,4358_525,St Pappin's Rd,8633,1,4358_7778195_1011001,4358_12 -4358_80788,96,4358_5250,Merrion Square,10135,1,4358_7778195_5015010,4358_160 -4358_80788,96,4358_5252,Merrion Square,10197,1,4358_7778195_5015003,4358_159 -4358_80788,205,4358_5253,Merrion Square,2343,1,4358_7778195_5015016,4358_160 -4358_80788,205,4358_5254,Merrion Square,2512,1,4358_7778195_5015010,4358_159 -4358_80788,96,4358_5256,Merrion Square,10279,1,4358_7778195_5015004,4358_161 -4358_80788,96,4358_5257,Merrion Square,10222,1,4358_7778195_5015006,4358_159 -4358_80788,205,4358_5258,Merrion Square,2571,1,4358_7778195_5015017,4358_160 -4358_80680,205,4358_526,St Pappin's Rd,673,1,4358_7778195_1011017,4358_12 -4358_80788,205,4358_5260,Merrion Square,2403,1,4358_7778195_5015002,4358_159 -4358_80788,96,4358_5261,Merrion Square,10208,1,4358_7778195_5015016,4358_160 -4358_80788,96,4358_5263,Merrion Square,10009,1,4358_7778195_5015007,4358_159 -4358_80788,205,4358_5264,Merrion Square,2519,1,4358_7778195_5015024,4358_160 -4358_80788,205,4358_5266,Merrion Square,2368,1,4358_7778195_5015005,4358_160 -4358_80788,96,4358_5267,Merrion Square,10337,1,4358_7778195_5015009,4358_161 -4358_80788,96,4358_5268,Merrion Square,9995,1,4358_7778195_5015015,4358_159 -4358_80788,205,4358_5269,Merrion Square,2579,1,4358_7778195_5015023,4358_160 -4358_80788,96,4358_5271,Merrion Square,10351,1,4358_7778195_5015011,4358_159 -4358_80788,205,4358_5272,Merrion Square,2550,1,4358_7778195_5015022,4358_160 -4358_80788,205,4358_5274,Merrion Square,2466,1,4358_7778195_5015008,4358_159 -4358_80788,96,4358_5275,Merrion Square,10100,1,4358_7778195_5015008,4358_160 -4358_80788,205,4358_5276,Merrion Square,2389,1,4358_7778195_5015011,4358_159 -4358_80788,96,4358_5277,Merrion Square,10137,1,4358_7778195_5015010,4358_160 -4358_80788,205,4358_5279,Merrion Square,2418,1,4358_7778195_5015015,4358_159 -4358_80680,96,4358_528,St Pappin's Rd,8620,1,4358_7778195_1011003,4358_12 -4358_80788,96,4358_5280,Merrion Square,10199,1,4358_7778195_5015003,4358_160 -4358_80788,205,4358_5282,Merrion Square,2345,1,4358_7778195_5015016,4358_159 -4358_80788,96,4358_5283,Merrion Square,10281,1,4358_7778195_5015004,4358_160 -4358_80788,96,4358_5285,Merrion Square,10224,1,4358_7778195_5015006,4358_159 -4358_80788,205,4358_5286,Merrion Square,2514,1,4358_7778195_5015010,4358_160 -4358_80788,205,4358_5288,Merrion Square,2499,1,4358_7778195_5015026,4358_160 -4358_80788,96,4358_5289,Merrion Square,10210,1,4358_7778195_5015016,4358_161 -4358_80680,205,4358_529,St Pappin's Rd,628,1,4358_7778195_1011009,4358_13 -4358_80788,96,4358_5290,Merrion Square,10049,1,4358_7778195_5015018,4358_159 -4358_80788,205,4358_5291,Merrion Square,2405,1,4358_7778195_5015002,4358_160 -4358_80788,96,4358_5293,Merrion Square,10339,1,4358_7778195_5015009,4358_159 -4358_80788,205,4358_5294,Merrion Square,2557,1,4358_7778195_5015028,4358_160 -4358_80788,96,4358_5295,Merrion Square,10353,1,4358_7778195_5015011,4358_159 -4358_80788,205,4358_5296,Merrion Square,2581,1,4358_7778195_5015023,4358_160 -4358_80788,205,4358_5298,Merrion Square,2468,1,4358_7778195_5015008,4358_159 -4358_80788,96,4358_5299,Merrion Square,10102,1,4358_7778195_5015008,4358_160 -4358_80760,96,4358_53,Shaw street,9324,0,4358_7778195_9001002,4358_1 -4358_80788,205,4358_5301,Merrion Square,2391,1,4358_7778195_5015011,4358_159 -4358_80788,96,4358_5302,Merrion Square,10139,1,4358_7778195_5015010,4358_160 -4358_80788,205,4358_5303,Merrion Square,2420,1,4358_7778195_5015015,4358_159 -4358_80788,96,4358_5304,Merrion Square,10201,1,4358_7778195_5015003,4358_160 -4358_80788,96,4358_5306,Merrion Square,10226,1,4358_7778195_5015006,4358_159 -4358_80788,205,4358_5307,Merrion Square,2516,1,4358_7778195_5015010,4358_160 -4358_80788,205,4358_5309,Merrion Square,2407,1,4358_7778195_5015002,4358_159 -4358_80680,96,4358_531,St Pappin's Rd,8564,1,4358_7778195_1011005,4358_12 -4358_80788,96,4358_5310,Merrion Square,10212,1,4358_7778195_5015016,4358_160 -4358_80788,96,4358_5311,Merrion Square,10341,1,4358_7778195_5015009,4358_159 -4358_80788,205,4358_5312,Merrion Square,2583,1,4358_7778195_5015023,4358_160 -4358_80788,96,4358_5314,Merrion Square,10355,1,4358_7778195_5015011,4358_159 -4358_80788,205,4358_5315,Merrion Square,2470,1,4358_7778195_5015008,4358_160 -4358_80788,205,4358_5317,Merrion Square,2393,1,4358_7778195_5015011,4358_159 -4358_80788,96,4358_5318,Merrion Square,10104,1,4358_7778195_5015008,4358_160 -4358_80788,205,4358_5319,Merrion Square,2422,1,4358_7778195_5015015,4358_159 -4358_80680,205,4358_532,St Pappin's Rd,618,1,4358_7778195_1011019,4358_13 -4358_80788,96,4358_5320,Merrion Square,10141,1,4358_7778195_5015010,4358_160 -4358_80788,205,4358_5322,Merrion Square,2518,1,4358_7778195_5015010,4358_159 -4358_80788,96,4358_5323,Merrion Square,10203,1,4358_7778195_5015003,4358_160 -4358_80788,96,4358_5325,Merrion Square,10228,1,4358_7778195_5015006,4358_159 -4358_80788,205,4358_5326,Merrion Square,2409,1,4358_7778195_5015002,4358_160 -4358_80789,205,4358_5327,Whitechurch,2402,0,4358_7778195_5015002,4358_162 -4358_80789,205,4358_5328,Whitechurch,2344,0,4358_7778195_5015016,4358_162 -4358_80789,205,4358_5329,Merrion Square,2565,1,4358_7778195_5015017,4358_163 -4358_80685,96,4358_5330,Ballinteer,9469,0,4358_7778195_9016004,4358_164 -4358_80685,205,4358_5331,Ballinteer,1811,0,4358_7778195_9016004,4358_166 -4358_80685,205,4358_5332,Ballinteer,1672,0,4358_7778195_9016006,4358_164 -4358_80685,96,4358_5333,Ballinteer,9338,0,4358_7778195_9016006,4358_166 -4358_80685,96,4358_5334,Ballinteer,9570,0,4358_7778195_9016008,4358_164 -4358_80685,205,4358_5335,Ballinteer,1875,0,4358_7778195_9016008,4358_166 -4358_80685,96,4358_5336,Ballinteer,9545,0,4358_7778195_9016001,4358_164 -4358_80685,205,4358_5337,Ballinteer,1734,0,4358_7778195_9016011,4358_166 -4358_80685,205,4358_5338,Ballinteer,1724,0,4358_7778195_9016013,4358_164 -4358_80685,96,4358_5339,Ballinteer,9577,0,4358_7778195_9016010,4358_166 -4358_80680,96,4358_534,St Pappin's Rd,8573,1,4358_7778195_1011007,4358_12 -4358_80685,96,4358_5340,Ballinteer,9556,0,4358_7778195_9016002,4358_164 -4358_80685,205,4358_5341,Ballinteer,1780,0,4358_7778195_9016001,4358_164 -4358_80685,96,4358_5342,Ballinteer,9408,0,4358_7778195_9016003,4358_164 -4358_80685,205,4358_5343,Ballinteer,1865,0,4358_7778195_9016003,4358_164 -4358_80685,96,4358_5344,Ballinteer,9564,0,4358_7778195_9016005,4358_164 -4358_80685,205,4358_5346,Ballinteer,1681,0,4358_7778195_9016005,4358_166 -4358_80685,96,4358_5347,Ballinteer,9370,0,4358_7778195_9016007,4358_167 -4358_80685,96,4358_5348,Ballinteer,13360,0,4358_7778195_9016009,4358_164 -4358_80680,205,4358_535,St Pappin's Rd,727,1,4358_7778195_1011014,4358_13 -4358_80685,205,4358_5350,Ballinteer,1749,0,4358_7778195_9016023,4358_164 -4358_80685,96,4358_5351,Ballinteer,13370,0,4358_7778195_9016011,4358_164 -4358_80685,205,4358_5353,Ballinteer,3128,0,4358_7778195_9016009,4358_164 -4358_80685,96,4358_5354,Ballinteer,9401,0,4358_7778195_9016012,4358_164 -4358_80685,96,4358_5356,Ballinteer,9471,0,4358_7778195_9016004,4358_164 -4358_80685,205,4358_5358,Ballinteer,1857,0,4358_7778195_9016010,4358_167 -4358_80685,205,4358_5359,Ballinteer,3119,0,4358_7778195_9016012,4358_164 -4358_80685,96,4358_5360,Ballinteer,9280,0,4358_7778195_9016014,4358_164 -4358_80685,205,4358_5362,Ballinteer,3154,0,4358_7778195_9016014,4358_164 -4358_80685,96,4358_5363,Ballinteer,9340,0,4358_7778195_9016006,4358_164 -4358_80685,205,4358_5365,Ballinteer,1530,0,4358_7778195_9016016,4358_166 -4358_80685,96,4358_5366,Ballinteer,9572,0,4358_7778195_9016008,4358_164 -4358_80685,205,4358_5367,Ballinteer,1576,0,4358_7778195_9016017,4358_164 -4358_80685,96,4358_5369,Ballinteer,9547,0,4358_7778195_9016001,4358_164 -4358_80680,96,4358_537,St Pappin's Rd,8590,1,4358_7778195_1011006,4358_12 -4358_80685,205,4358_5370,Ballinteer,1774,0,4358_7778195_9016018,4358_164 -4358_80685,96,4358_5372,Ballinteer,9579,0,4358_7778195_9016010,4358_166 -4358_80685,205,4358_5373,Ballinteer,1761,0,4358_7778195_9016019,4358_164 -4358_80685,96,4358_5374,Ballinteer,9295,0,4358_7778195_9016016,4358_164 -4358_80685,205,4358_5376,Ballinteer,1790,0,4358_7778195_9016021,4358_164 -4358_80685,96,4358_5377,Ballinteer,9558,0,4358_7778195_9016002,4358_164 -4358_80685,205,4358_5378,Ballinteer,1833,0,4358_7778195_9016022,4358_164 -4358_80680,205,4358_538,St Pappin's Rd,701,1,4358_7778195_1011006,4358_13 -4358_80685,96,4358_5380,Ballinteer,9410,0,4358_7778195_9016003,4358_164 -4358_80685,205,4358_5381,Ballinteer,1877,0,4358_7778195_9016008,4358_164 -4358_80685,96,4358_5383,Ballinteer,9480,0,4358_7778195_9016013,4358_164 -4358_80685,205,4358_5384,Ballinteer,1736,0,4358_7778195_9016011,4358_164 -4358_80685,96,4358_5385,Ballinteer,9303,0,4358_7778195_9016018,4358_164 -4358_80685,205,4358_5387,Ballinteer,1691,0,4358_7778195_9016015,4358_164 -4358_80685,96,4358_5388,Ballinteer,9566,0,4358_7778195_9016005,4358_164 -4358_80685,205,4358_5390,Ballinteer,1726,0,4358_7778195_9016013,4358_164 -4358_80685,96,4358_5391,Ballinteer,9372,0,4358_7778195_9016007,4358_164 -4358_80685,205,4358_5392,Ballinteer,5235,0,4358_7778195_9016002,4358_164 -4358_80685,96,4358_5394,Ballinteer,13362,0,4358_7778195_9016009,4358_164 -4358_80685,205,4358_5395,Ballinteer,1782,0,4358_7778195_9016001,4358_164 -4358_80685,96,4358_5397,Ballinteer,13372,0,4358_7778195_9016011,4358_164 -4358_80685,205,4358_5398,Ballinteer,1568,0,4358_7778195_9016020,4358_164 -4358_80760,205,4358_54,Shaw street,1543,0,4358_7778195_9001010,4358_1 -4358_80680,96,4358_540,St Pappin's Rd,8635,1,4358_7778195_1011001,4358_12 -4358_80685,96,4358_5400,Ballinteer,13379,0,4358_7778195_9016019,4358_166 -4358_80685,205,4358_5401,Ballinteer,1606,0,4358_7778195_9016007,4358_164 -4358_80685,96,4358_5402,Ballinteer,9349,0,4358_7778195_9016015,4358_164 -4358_80685,205,4358_5404,Ballinteer,1683,0,4358_7778195_9016005,4358_164 -4358_80685,96,4358_5405,Ballinteer,9403,0,4358_7778195_9016012,4358_164 -4358_80685,205,4358_5406,Ballinteer,1884,0,4358_7778195_9016024,4358_164 -4358_80685,96,4358_5408,Ballinteer,9473,0,4358_7778195_9016004,4358_164 -4358_80685,205,4358_5409,Ballinteer,1751,0,4358_7778195_9016023,4358_164 -4358_80680,205,4358_541,St Pappin's Rd,614,1,4358_7778195_1011003,4358_13 -4358_80685,96,4358_5411,Ballinteer,9282,0,4358_7778195_9016014,4358_164 -4358_80685,205,4358_5412,Ballinteer,3130,0,4358_7778195_9016009,4358_164 -4358_80685,96,4358_5413,Ballinteer,9424,0,4358_7778195_9016017,4358_164 -4358_80685,205,4358_5415,Ballinteer,3121,0,4358_7778195_9016012,4358_164 -4358_80685,96,4358_5416,Ballinteer,9342,0,4358_7778195_9016006,4358_164 -4358_80685,205,4358_5418,Ballinteer,3156,0,4358_7778195_9016014,4358_164 -4358_80685,96,4358_5419,Ballinteer,9574,0,4358_7778195_9016008,4358_164 -4358_80685,205,4358_5421,Ballinteer,1532,0,4358_7778195_9016016,4358_166 -4358_80685,96,4358_5422,Ballinteer,9549,0,4358_7778195_9016001,4358_164 -4358_80685,205,4358_5423,Ballinteer,1578,0,4358_7778195_9016017,4358_164 -4358_80685,96,4358_5425,Ballinteer,9581,0,4358_7778195_9016010,4358_164 -4358_80685,205,4358_5426,Ballinteer,1776,0,4358_7778195_9016018,4358_164 -4358_80685,96,4358_5427,Ballinteer,9297,0,4358_7778195_9016016,4358_164 -4358_80685,205,4358_5429,Ballinteer,1763,0,4358_7778195_9016019,4358_164 -4358_80680,205,4358_543,St Pappin's Rd,578,1,4358_7778195_1011016,4358_12 -4358_80685,96,4358_5430,Ballinteer,9434,0,4358_7778195_9016020,4358_164 -4358_80685,205,4358_5432,Ballinteer,1792,0,4358_7778195_9016021,4358_164 -4358_80685,96,4358_5433,Ballinteer,9560,0,4358_7778195_9016002,4358_164 -4358_80685,205,4358_5434,Ballinteer,1835,0,4358_7778195_9016022,4358_164 -4358_80685,96,4358_5436,Ballinteer,9412,0,4358_7778195_9016003,4358_164 -4358_80685,205,4358_5437,Ballinteer,1879,0,4358_7778195_9016008,4358_164 -4358_80685,96,4358_5439,Ballinteer,9482,0,4358_7778195_9016013,4358_164 -4358_80680,96,4358_544,St Pappin's Rd,8622,1,4358_7778195_1011003,4358_13 -4358_80685,205,4358_5440,Ballinteer,1738,0,4358_7778195_9016011,4358_164 -4358_80685,96,4358_5441,Ballinteer,9305,0,4358_7778195_9016018,4358_164 -4358_80685,205,4358_5443,Ballinteer,1693,0,4358_7778195_9016015,4358_164 -4358_80685,96,4358_5444,Ballinteer,9568,0,4358_7778195_9016005,4358_164 -4358_80685,205,4358_5446,Ballinteer,1728,0,4358_7778195_9016013,4358_164 -4358_80685,96,4358_5447,Ballinteer,9374,0,4358_7778195_9016007,4358_164 -4358_80685,205,4358_5448,Ballinteer,5237,0,4358_7778195_9016002,4358_164 -4358_80685,96,4358_5450,Ballinteer,13364,0,4358_7778195_9016009,4358_164 -4358_80685,205,4358_5451,Ballinteer,1784,0,4358_7778195_9016001,4358_164 -4358_80685,96,4358_5453,Ballinteer,13374,0,4358_7778195_9016011,4358_164 -4358_80685,205,4358_5454,Ballinteer,1570,0,4358_7778195_9016020,4358_164 -4358_80685,96,4358_5456,Ballinteer,13381,0,4358_7778195_9016019,4358_166 -4358_80685,205,4358_5457,Ballinteer,1608,0,4358_7778195_9016007,4358_164 -4358_80685,96,4358_5458,Ballinteer,9351,0,4358_7778195_9016015,4358_164 -4358_80680,96,4358_546,St Pappin's Rd,8566,1,4358_7778195_1011005,4358_12 -4358_80685,205,4358_5460,Ballinteer,1685,0,4358_7778195_9016005,4358_164 -4358_80685,96,4358_5461,Ballinteer,9405,0,4358_7778195_9016012,4358_164 -4358_80685,205,4358_5462,Ballinteer,1886,0,4358_7778195_9016024,4358_164 -4358_80685,96,4358_5464,Ballinteer,9475,0,4358_7778195_9016004,4358_164 -4358_80685,205,4358_5465,Ballinteer,1753,0,4358_7778195_9016023,4358_164 -4358_80685,96,4358_5467,Ballinteer,9284,0,4358_7778195_9016014,4358_164 -4358_80685,205,4358_5468,Ballinteer,3132,0,4358_7778195_9016009,4358_164 -4358_80685,96,4358_5469,Ballinteer,9426,0,4358_7778195_9016017,4358_164 -4358_80680,205,4358_547,St Pappin's Rd,630,1,4358_7778195_1011009,4358_13 -4358_80685,205,4358_5471,Ballinteer,3123,0,4358_7778195_9016012,4358_164 -4358_80685,96,4358_5472,Ballinteer,9344,0,4358_7778195_9016006,4358_164 -4358_80685,205,4358_5474,Ballinteer,3158,0,4358_7778195_9016014,4358_164 -4358_80685,96,4358_5475,Ballinteer,9576,0,4358_7778195_9016008,4358_164 -4358_80685,205,4358_5476,Ballinteer,3159,0,4358_7778195_9016026,4358_164 -4358_80685,96,4358_5478,Ballinteer,9551,0,4358_7778195_9016001,4358_164 -4358_80685,205,4358_5479,Ballinteer,1534,0,4358_7778195_9016016,4358_164 -4358_80685,96,4358_5481,Ballinteer,9583,0,4358_7778195_9016010,4358_164 -4358_80685,205,4358_5482,Ballinteer,1580,0,4358_7778195_9016017,4358_164 -4358_80685,96,4358_5483,Ballinteer,9299,0,4358_7778195_9016016,4358_164 -4358_80685,205,4358_5485,Ballinteer,1778,0,4358_7778195_9016018,4358_164 -4358_80685,96,4358_5486,Ballinteer,9436,0,4358_7778195_9016020,4358_164 -4358_80685,205,4358_5488,Ballinteer,1765,0,4358_7778195_9016019,4358_164 -4358_80685,96,4358_5489,Ballinteer,9562,0,4358_7778195_9016002,4358_164 -4358_80680,205,4358_549,St Pappin's Rd,620,1,4358_7778195_1011019,4358_12 -4358_80685,205,4358_5491,Ballinteer,1794,0,4358_7778195_9016021,4358_166 -4358_80685,96,4358_5492,Ballinteer,9414,0,4358_7778195_9016003,4358_164 -4358_80685,205,4358_5493,Ballinteer,1837,0,4358_7778195_9016022,4358_164 -4358_80685,96,4358_5495,Ballinteer,9484,0,4358_7778195_9016013,4358_164 -4358_80685,205,4358_5496,Ballinteer,1881,0,4358_7778195_9016008,4358_164 -4358_80685,96,4358_5497,Ballinteer,9307,0,4358_7778195_9016018,4358_164 -4358_80685,205,4358_5499,Ballinteer,1740,0,4358_7778195_9016011,4358_164 -4358_80680,96,4358_550,St Pappin's Rd,8575,1,4358_7778195_1011007,4358_12 -4358_80685,205,4358_5500,Ballinteer,1695,0,4358_7778195_9016015,4358_164 -4358_80685,96,4358_5502,Ballinteer,9376,0,4358_7778195_9016007,4358_167 -4358_80685,96,4358_5503,Ballinteer,13366,0,4358_7778195_9016009,4358_164 -4358_80685,205,4358_5505,Ballinteer,5239,0,4358_7778195_9016002,4358_167 -4358_80685,96,4358_5506,Ballinteer,13376,0,4358_7778195_9016011,4358_164 -4358_80685,205,4358_5508,Ballinteer,1786,0,4358_7778195_9016001,4358_167 -4358_80685,96,4358_5509,Ballinteer,13383,0,4358_7778195_9016019,4358_164 -4358_80685,205,4358_5510,Ballinteer,1572,0,4358_7778195_9016020,4358_166 -4358_80685,96,4358_5512,Ballinteer,9353,0,4358_7778195_9016015,4358_164 -4358_80685,205,4358_5513,Ballinteer,1610,0,4358_7778195_9016007,4358_166 -4358_80685,96,4358_5515,Ballinteer,9477,0,4358_7778195_9016004,4358_164 -4358_80685,205,4358_5517,Ballinteer,1687,0,4358_7778195_9016005,4358_167 -4358_80685,96,4358_5519,Ballinteer,9286,0,4358_7778195_9016014,4358_166 -4358_80680,96,4358_552,Parnell Square,8592,1,4358_7778195_1011006,4358_14 -4358_80685,205,4358_5520,Ballinteer,1755,0,4358_7778195_9016023,4358_167 -4358_80685,205,4358_5522,Ballinteer,3125,0,4358_7778195_9016012,4358_166 -4358_80685,96,4358_5523,Ballinteer,9346,0,4358_7778195_9016006,4358_167 -4358_80685,96,4358_5524,Ballinteer,9553,0,4358_7778195_9016001,4358_164 -4358_80685,205,4358_5526,Ballinteer,3161,0,4358_7778195_9016026,4358_167 -4358_80685,96,4358_5528,Ballinteer,9585,0,4358_7778195_9016010,4358_166 -4358_80685,205,4358_5529,Ballinteer,1536,0,4358_7778195_9016016,4358_167 -4358_80685,96,4358_5530,Ballinteer,9301,0,4358_7778195_9016016,4358_164 -4358_80685,205,4358_5531,Ballinteer,1582,0,4358_7778195_9016017,4358_166 -4358_80685,205,4358_5533,Ballinteer,1767,0,4358_7778195_9016019,4358_164 -4358_80685,96,4358_5535,Ballinteer,9438,0,4358_7778195_9016020,4358_167 -4358_80685,96,4358_5537,Ballinteer,9416,0,4358_7778195_9016003,4358_166 -4358_80685,205,4358_5538,Ballinteer,1796,0,4358_7778195_9016021,4358_167 -4358_80685,205,4358_5539,Ballinteer,1839,0,4358_7778195_9016022,4358_164 -4358_80680,205,4358_554,Parnell Square,729,1,4358_7778195_1011014,4358_16 -4358_80685,96,4358_5541,Ballinteer,9486,0,4358_7778195_9016013,4358_167 -4358_80685,205,4358_5542,Ballinteer,1742,0,4358_7778195_9016011,4358_164 -4358_80685,96,4358_5544,Ballinteer,9378,0,4358_7778195_9016007,4358_167 -4358_80685,96,4358_5545,O'Connell Street,13368,0,4358_7778195_9016009,4358_165 -4358_80685,205,4358_5546,O'Connell Street,5241,0,4358_7778195_9016002,4358_168 -4358_80685,96,4358_5548,O'Connell Street,13378,0,4358_7778195_9016011,4358_165 -4358_80752,205,4358_555,Whitechurch,6133,0,4358_7778195_2821201,4358_17 -4358_80685,205,4358_5550,O'Connell Street,1788,0,4358_7778195_9016001,4358_169 -4358_80685,96,4358_5552,O'Connell Street,13385,0,4358_7778195_9016019,4358_168 -4358_80685,205,4358_5553,O'Connell Street,1574,0,4358_7778195_9016020,4358_169 -4358_80685,96,4358_5554,Dublin Airport,9544,1,4358_7778195_9016001,4358_170 -4358_80685,205,4358_5555,Dublin Airport,1779,1,4358_7778195_9016001,4358_172 -4358_80685,205,4358_5556,Dublin Airport,5232,1,4358_7778195_9016002,4358_170 -4358_80685,96,4358_5557,Dublin Airport,9555,1,4358_7778195_9016002,4358_172 -4358_80685,205,4358_5558,Dublin Airport,1864,1,4358_7778195_9016003,4358_170 -4358_80685,96,4358_5559,Dublin Airport,9407,1,4358_7778195_9016003,4358_172 -4358_80752,205,4358_556,Parnell Sq,6132,1,4358_7778195_2821101,4358_18 -4358_80685,96,4358_5560,Dublin Airport,9563,1,4358_7778195_9016005,4358_170 -4358_80685,205,4358_5561,Dublin Airport,1680,1,4358_7778195_9016005,4358_172 -4358_80685,205,4358_5562,Dublin Airport,1603,1,4358_7778195_9016007,4358_170 -4358_80685,96,4358_5563,Dublin Airport,9369,1,4358_7778195_9016007,4358_172 -4358_80685,96,4358_5564,Dublin Airport,13359,1,4358_7778195_9016009,4358_170 -4358_80685,205,4358_5565,Dublin Airport,3127,1,4358_7778195_9016009,4358_172 -4358_80685,96,4358_5566,Dublin Airport,13369,1,4358_7778195_9016011,4358_170 -4358_80685,205,4358_5567,Dublin Airport,1856,1,4358_7778195_9016010,4358_172 -4358_80685,205,4358_5568,Dublin Airport,3118,1,4358_7778195_9016012,4358_170 -4358_80685,96,4358_5569,Dublin Airport,9400,1,4358_7778195_9016012,4358_170 -4358_80753,205,4358_557,Eden Quay,119,1,4358_7778195_2822108,4358_19 -4358_80685,205,4358_5570,Dublin Airport,3153,1,4358_7778195_9016014,4358_170 -4358_80685,96,4358_5571,Dublin Airport,9470,1,4358_7778195_9016004,4358_170 -4358_80685,205,4358_5573,Dublin Airport,1529,1,4358_7778195_9016016,4358_173 -4358_80685,205,4358_5574,Dublin Airport,1575,1,4358_7778195_9016017,4358_170 -4358_80685,96,4358_5576,Dublin Airport,9339,1,4358_7778195_9016006,4358_172 -4358_80685,205,4358_5577,Dublin Airport,1773,1,4358_7778195_9016018,4358_170 -4358_80685,96,4358_5579,Dublin Airport,9571,1,4358_7778195_9016008,4358_172 -4358_80754,205,4358_558,Ashtown Stn,2135,0,4358_7778195_5120003,4358_20 -4358_80685,205,4358_5580,Dublin Airport,1760,1,4358_7778195_9016019,4358_173 -4358_80685,205,4358_5581,Dublin Airport,1789,1,4358_7778195_9016021,4358_170 -4358_80685,96,4358_5582,Dublin Airport,9546,1,4358_7778195_9016001,4358_170 -4358_80685,205,4358_5584,Dublin Airport,1812,1,4358_7778195_9016004,4358_170 -4358_80685,205,4358_5585,Dublin Airport,1832,1,4358_7778195_9016022,4358_170 -4358_80685,96,4358_5587,Dublin Airport,9578,1,4358_7778195_9016010,4358_173 -4358_80685,205,4358_5588,Dublin Airport,1673,1,4358_7778195_9016006,4358_170 -4358_80754,205,4358_559,Ashtown Stn,2100,0,4358_7778195_5120005,4358_20 -4358_80685,96,4358_5590,Dublin Airport,9557,1,4358_7778195_9016002,4358_172 -4358_80685,205,4358_5591,Dublin Airport,1876,1,4358_7778195_9016008,4358_170 -4358_80685,205,4358_5592,Dublin Airport,1735,1,4358_7778195_9016011,4358_170 -4358_80685,96,4358_5594,Dublin Airport,9409,1,4358_7778195_9016003,4358_173 -4358_80685,205,4358_5595,Dublin Airport,1690,1,4358_7778195_9016015,4358_170 -4358_80685,96,4358_5596,Dublin Airport,9479,1,4358_7778195_9016013,4358_170 -4358_80685,205,4358_5598,Dublin Airport,1725,1,4358_7778195_9016013,4358_170 -4358_80685,96,4358_5599,Dublin Airport,9565,1,4358_7778195_9016005,4358_170 -4358_80760,96,4358_56,Shaw street,9386,0,4358_7778195_9001001,4358_1 -4358_80754,205,4358_560,Ashtown Stn,2181,0,4358_7778195_5120001,4358_20 -4358_80685,205,4358_5601,Dublin Airport,5234,1,4358_7778195_9016002,4358_172 -4358_80685,96,4358_5602,Dublin Airport,9371,1,4358_7778195_9016007,4358_170 -4358_80685,205,4358_5603,Dublin Airport,1781,1,4358_7778195_9016001,4358_170 -4358_80685,96,4358_5605,Dublin Airport,13361,1,4358_7778195_9016009,4358_170 -4358_80685,205,4358_5606,Dublin Airport,1567,1,4358_7778195_9016020,4358_170 -4358_80685,96,4358_5607,Dublin Airport,13371,1,4358_7778195_9016011,4358_170 -4358_80685,205,4358_5609,Dublin Airport,1605,1,4358_7778195_9016007,4358_170 -4358_80754,96,4358_561,Ashtown Stn,9854,0,4358_7778195_5120003,4358_22 -4358_80685,96,4358_5610,Dublin Airport,9348,1,4358_7778195_9016015,4358_170 -4358_80685,205,4358_5612,Dublin Airport,1682,1,4358_7778195_9016005,4358_170 -4358_80685,96,4358_5613,Dublin Airport,9402,1,4358_7778195_9016012,4358_170 -4358_80685,205,4358_5614,Dublin Airport,1883,1,4358_7778195_9016024,4358_170 -4358_80685,96,4358_5616,Dublin Airport,9472,1,4358_7778195_9016004,4358_170 -4358_80685,205,4358_5617,Dublin Airport,1750,1,4358_7778195_9016023,4358_170 -4358_80685,96,4358_5619,Dublin Airport,9281,1,4358_7778195_9016014,4358_170 -4358_80754,205,4358_562,Ashtown Stn,2168,0,4358_7778195_5120002,4358_20 -4358_80685,205,4358_5620,Dublin Airport,3129,1,4358_7778195_9016009,4358_170 -4358_80685,96,4358_5621,Dublin Airport,9423,1,4358_7778195_9016017,4358_170 -4358_80685,205,4358_5623,Dublin Airport,3120,1,4358_7778195_9016012,4358_170 -4358_80685,96,4358_5624,Dublin Airport,9341,1,4358_7778195_9016006,4358_170 -4358_80685,205,4358_5626,Dublin Airport,3155,1,4358_7778195_9016014,4358_170 -4358_80685,96,4358_5627,Dublin Airport,9573,1,4358_7778195_9016008,4358_170 -4358_80685,205,4358_5629,Dublin Airport,1531,1,4358_7778195_9016016,4358_172 -4358_80754,205,4358_563,Ashtown Stn,2137,0,4358_7778195_5120003,4358_20 -4358_80685,96,4358_5630,Dublin Airport,9548,1,4358_7778195_9016001,4358_170 -4358_80685,205,4358_5631,Dublin Airport,1577,1,4358_7778195_9016017,4358_170 -4358_80685,96,4358_5633,Dublin Airport,9580,1,4358_7778195_9016010,4358_170 -4358_80685,205,4358_5634,Dublin Airport,1775,1,4358_7778195_9016018,4358_170 -4358_80685,96,4358_5635,Dublin Airport,9296,1,4358_7778195_9016016,4358_170 -4358_80685,205,4358_5637,Dublin Airport,1762,1,4358_7778195_9016019,4358_170 -4358_80685,96,4358_5638,Dublin Airport,9433,1,4358_7778195_9016020,4358_170 -4358_80754,96,4358_564,Ashtown Stn,9783,0,4358_7778195_5120001,4358_22 -4358_80685,205,4358_5640,Dublin Airport,1791,1,4358_7778195_9016021,4358_170 -4358_80685,96,4358_5641,Dublin Airport,9559,1,4358_7778195_9016002,4358_170 -4358_80685,205,4358_5642,Dublin Airport,1834,1,4358_7778195_9016022,4358_170 -4358_80685,96,4358_5644,Dublin Airport,9411,1,4358_7778195_9016003,4358_170 -4358_80685,205,4358_5645,Dublin Airport,1878,1,4358_7778195_9016008,4358_170 -4358_80685,96,4358_5647,Dublin Airport,9481,1,4358_7778195_9016013,4358_170 -4358_80685,205,4358_5648,Dublin Airport,1737,1,4358_7778195_9016011,4358_170 -4358_80685,96,4358_5649,Dublin Airport,9304,1,4358_7778195_9016018,4358_170 -4358_80754,205,4358_565,Ashtown Stn,2221,0,4358_7778195_5120004,4358_20 -4358_80685,205,4358_5651,Dublin Airport,1692,1,4358_7778195_9016015,4358_170 -4358_80685,96,4358_5652,Dublin Airport,9567,1,4358_7778195_9016005,4358_170 -4358_80685,205,4358_5654,Dublin Airport,1727,1,4358_7778195_9016013,4358_170 -4358_80685,96,4358_5655,Dublin Airport,9373,1,4358_7778195_9016007,4358_170 -4358_80685,205,4358_5656,Dublin Airport,5236,1,4358_7778195_9016002,4358_170 -4358_80685,96,4358_5658,Dublin Airport,13363,1,4358_7778195_9016009,4358_170 -4358_80685,205,4358_5659,Dublin Airport,1783,1,4358_7778195_9016001,4358_170 -4358_80754,96,4358_566,Ashtown Stn,9804,0,4358_7778195_5120002,4358_20 -4358_80685,96,4358_5661,Dublin Airport,13373,1,4358_7778195_9016011,4358_170 -4358_80685,205,4358_5662,Dublin Airport,1569,1,4358_7778195_9016020,4358_170 -4358_80685,96,4358_5664,Dublin Airport,13380,1,4358_7778195_9016019,4358_172 -4358_80685,205,4358_5665,Dublin Airport,1607,1,4358_7778195_9016007,4358_170 -4358_80685,96,4358_5666,Dublin Airport,9350,1,4358_7778195_9016015,4358_170 -4358_80685,205,4358_5668,Dublin Airport,1684,1,4358_7778195_9016005,4358_170 -4358_80685,96,4358_5669,Dublin Airport,9404,1,4358_7778195_9016012,4358_170 -4358_80754,205,4358_567,Ashtown Stn,2208,0,4358_7778195_5120006,4358_20 -4358_80685,205,4358_5670,Dublin Airport,1885,1,4358_7778195_9016024,4358_170 -4358_80685,96,4358_5672,Dublin Airport,9474,1,4358_7778195_9016004,4358_170 -4358_80685,205,4358_5673,Dublin Airport,1752,1,4358_7778195_9016023,4358_170 -4358_80685,96,4358_5675,Dublin Airport,9283,1,4358_7778195_9016014,4358_170 -4358_80685,205,4358_5676,Dublin Airport,3131,1,4358_7778195_9016009,4358_170 -4358_80685,96,4358_5677,Dublin Airport,9425,1,4358_7778195_9016017,4358_170 -4358_80685,205,4358_5679,Dublin Airport,3122,1,4358_7778195_9016012,4358_170 -4358_80754,96,4358_568,Ashtown Stn,9856,0,4358_7778195_5120003,4358_20 -4358_80685,96,4358_5680,Dublin Airport,9343,1,4358_7778195_9016006,4358_170 -4358_80685,205,4358_5682,Dublin Airport,3157,1,4358_7778195_9016014,4358_170 -4358_80685,96,4358_5683,Dublin Airport,9575,1,4358_7778195_9016008,4358_170 -4358_80685,205,4358_5685,Dublin Airport,1533,1,4358_7778195_9016016,4358_172 -4358_80685,96,4358_5686,Dublin Airport,9550,1,4358_7778195_9016001,4358_170 -4358_80685,205,4358_5687,Dublin Airport,1579,1,4358_7778195_9016017,4358_170 -4358_80685,96,4358_5689,Dublin Airport,9582,1,4358_7778195_9016010,4358_170 -4358_80754,205,4358_569,Ashtown Stn,2103,0,4358_7778195_5120007,4358_20 -4358_80685,205,4358_5690,Dublin Airport,1777,1,4358_7778195_9016018,4358_170 -4358_80685,96,4358_5691,Dublin Airport,9298,1,4358_7778195_9016016,4358_170 -4358_80685,205,4358_5693,Dublin Airport,1764,1,4358_7778195_9016019,4358_170 -4358_80685,96,4358_5694,Dublin Airport,9435,1,4358_7778195_9016020,4358_170 -4358_80685,205,4358_5696,Dublin Airport,1793,1,4358_7778195_9016021,4358_170 -4358_80685,96,4358_5697,Dublin Airport,9561,1,4358_7778195_9016002,4358_170 -4358_80685,205,4358_5698,Dublin Airport,1836,1,4358_7778195_9016022,4358_170 -4358_80760,205,4358_57,Shaw street,1637,0,4358_7778195_9001011,4358_1 -4358_80754,205,4358_570,Ashtown Stn,2139,0,4358_7778195_5120003,4358_20 -4358_80685,96,4358_5700,Dublin Airport,9413,1,4358_7778195_9016003,4358_170 -4358_80685,205,4358_5701,Dublin Airport,1880,1,4358_7778195_9016008,4358_170 -4358_80685,96,4358_5703,Dublin Airport,9483,1,4358_7778195_9016013,4358_170 -4358_80685,205,4358_5704,Dublin Airport,1739,1,4358_7778195_9016011,4358_170 -4358_80685,96,4358_5705,Dublin Airport,9306,1,4358_7778195_9016018,4358_170 -4358_80685,205,4358_5707,Dublin Airport,1694,1,4358_7778195_9016015,4358_170 -4358_80685,96,4358_5708,Dublin Airport,9569,1,4358_7778195_9016005,4358_170 -4358_80754,96,4358_571,Ashtown Stn,9785,0,4358_7778195_5120001,4358_22 -4358_80685,205,4358_5710,Dublin Airport,1729,1,4358_7778195_9016013,4358_170 -4358_80685,96,4358_5711,Dublin Airport,9375,1,4358_7778195_9016007,4358_170 -4358_80685,205,4358_5712,Dublin Airport,5238,1,4358_7778195_9016002,4358_170 -4358_80685,96,4358_5714,Dublin Airport,13365,1,4358_7778195_9016009,4358_170 -4358_80685,205,4358_5715,Dublin Airport,1748,1,4358_7778195_9016027,4358_170 -4358_80685,96,4358_5717,Dublin Airport,13375,1,4358_7778195_9016011,4358_170 -4358_80685,205,4358_5718,Dublin Airport,1785,1,4358_7778195_9016001,4358_170 -4358_80754,205,4358_572,Ashtown Stn,2210,0,4358_7778195_5120006,4358_20 -4358_80685,96,4358_5720,Dublin Airport,13382,1,4358_7778195_9016019,4358_172 -4358_80685,205,4358_5721,Dublin Airport,1571,1,4358_7778195_9016020,4358_170 -4358_80685,96,4358_5722,Dublin Airport,9352,1,4358_7778195_9016015,4358_170 -4358_80685,205,4358_5724,Dublin Airport,1609,1,4358_7778195_9016007,4358_170 -4358_80685,96,4358_5725,Dublin Airport,9406,1,4358_7778195_9016012,4358_170 -4358_80685,205,4358_5727,Dublin Airport,1686,1,4358_7778195_9016005,4358_172 -4358_80685,96,4358_5728,Dublin Airport,9476,1,4358_7778195_9016004,4358_170 -4358_80685,205,4358_5729,Dublin Airport,1887,1,4358_7778195_9016024,4358_170 -4358_80754,96,4358_573,Ashtown Stn,9806,0,4358_7778195_5120002,4358_22 -4358_80685,96,4358_5731,Dublin Airport,9285,1,4358_7778195_9016014,4358_170 -4358_80685,205,4358_5732,Dublin Airport,1754,1,4358_7778195_9016023,4358_170 -4358_80685,96,4358_5734,Dublin Airport,9427,1,4358_7778195_9016017,4358_172 -4358_80685,205,4358_5735,Dublin Airport,3133,1,4358_7778195_9016009,4358_170 -4358_80685,205,4358_5737,Dublin Airport,3124,1,4358_7778195_9016012,4358_172 -4358_80685,96,4358_5738,Dublin Airport,9345,1,4358_7778195_9016006,4358_173 -4358_80685,96,4358_5739,Dublin Airport,9552,1,4358_7778195_9016001,4358_170 -4358_80685,205,4358_5741,Dublin Airport,3160,1,4358_7778195_9016026,4358_173 -4358_80685,96,4358_5742,Dublin Airport,9584,1,4358_7778195_9016010,4358_170 -4358_80685,205,4358_5744,Dublin Airport,1535,1,4358_7778195_9016016,4358_173 -4358_80685,96,4358_5745,Dublin Airport,9300,1,4358_7778195_9016016,4358_170 -4358_80685,205,4358_5746,Dublin Airport,1581,1,4358_7778195_9016017,4358_172 -4358_80685,205,4358_5748,Dublin Airport,1766,1,4358_7778195_9016019,4358_170 -4358_80685,96,4358_5749,Dublin Airport,9437,1,4358_7778195_9016020,4358_172 -4358_80754,96,4358_575,Ashtown Stn,9858,0,4358_7778195_5120003,4358_20 -4358_80685,96,4358_5752,Dublin Airport,9415,1,4358_7778195_9016003,4358_172 -4358_80685,205,4358_5753,Dublin Airport,1795,1,4358_7778195_9016021,4358_173 -4358_80685,205,4358_5754,Dublin Airport,1838,1,4358_7778195_9016022,4358_170 -4358_80685,96,4358_5755,Dublin Airport,9485,1,4358_7778195_9016013,4358_172 -4358_80685,205,4358_5757,Dublin Airport,1741,1,4358_7778195_9016011,4358_170 -4358_80685,96,4358_5759,Dublin Airport,9377,1,4358_7778195_9016007,4358_173 -4358_80754,205,4358_576,Ashtown Stn,2105,0,4358_7778195_5120007,4358_22 -4358_80685,96,4358_5760,Dublin Airport,13367,1,4358_7778195_9016009,4358_170 -4358_80685,205,4358_5762,Dublin Airport,5240,1,4358_7778195_9016002,4358_173 -4358_80685,96,4358_5763,Dublin Airport,13377,1,4358_7778195_9016011,4358_170 -4358_80685,205,4358_5765,Dublin Airport,1787,1,4358_7778195_9016001,4358_173 -4358_80685,96,4358_5766,Dublin Airport,13384,1,4358_7778195_9016019,4358_170 -4358_80685,205,4358_5768,Dublin Airport,1573,1,4358_7778195_9016020,4358_173 -4358_80685,96,4358_5769,Dublin Airport,9354,1,4358_7778195_9016015,4358_170 -4358_80685,205,4358_5771,Dublin Airport,1611,1,4358_7778195_9016007,4358_173 -4358_80685,96,4358_5773,Dublin Airport,9478,1,4358_7778195_9016004,4358_172 -4358_80685,205,4358_5774,Dublin Airport,1688,1,4358_7778195_9016005,4358_173 -4358_80685,96,4358_5775,Dublin Airport,9287,1,4358_7778195_9016014,4358_170 -4358_80685,205,4358_5776,Dublin Airport,1756,1,4358_7778195_9016023,4358_172 -4358_80685,205,4358_5779,Dublin Airport,3126,1,4358_7778195_9016012,4358_172 -4358_80754,205,4358_578,Ashtown Stn,2141,0,4358_7778195_5120003,4358_20 -4358_80685,96,4358_5780,Dublin Airport,9347,1,4358_7778195_9016006,4358_173 -4358_80685,96,4358_5781,O'Connell Street,9554,1,4358_7778195_9016001,4358_171 -4358_80685,205,4358_5782,O'Connell Street,3162,1,4358_7778195_9016026,4358_174 -4358_80685,96,4358_5785,O'Connell Street,9586,1,4358_7778195_9016010,4358_174 -4358_80685,205,4358_5786,O'Connell Street,1537,1,4358_7778195_9016016,4358_175 -4358_80685,96,4358_5787,O'Connell Street,9302,1,4358_7778195_9016016,4358_171 -4358_80685,205,4358_5789,O'Connell Street,1583,1,4358_7778195_9016017,4358_175 -4358_80754,96,4358_579,Ashtown Stn,9787,0,4358_7778195_5120001,4358_22 -4358_80686,205,4358_5790,Ballinteer,1689,0,4358_7778195_9016015,4358_176 -4358_80686,205,4358_5791,Ballinteer,5233,0,4358_7778195_9016002,4358_176 -4358_80686,205,4358_5792,Ballinteer,1566,0,4358_7778195_9016020,4358_176 -4358_80686,205,4358_5793,Ballinteer,1604,0,4358_7778195_9016007,4358_176 -4358_80686,205,4358_5794,Ballinteer,1882,0,4358_7778195_9016024,4358_176 -4358_80686,205,4358_5795,Ballinteer,3163,0,4358_7778195_9016025,4358_176 -4358_80688,205,4358_5796,Liffey Valley,4842,0,4358_7778195_4026002,4358_177 -4358_80688,96,4358_5797,Liffey Valley,12040,0,4358_7778195_4026003,4358_177 -4358_80688,205,4358_5798,Liffey Valley,4917,0,4358_7778195_4026006,4358_177 -4358_80688,205,4358_5799,Liffey Valley,4950,0,4358_7778195_4026007,4358_177 -4358_80688,96,4358_5800,Liffey Valley,12021,0,4358_7778195_4026005,4358_177 -4358_80688,205,4358_5801,Liffey Valley,4890,0,4358_7778195_4026003,4358_177 -4358_80688,96,4358_5802,Liffey Valley,11975,0,4358_7778195_4026006,4358_177 -4358_80688,205,4358_5804,Liffey Valley,4923,0,4358_7778195_4026012,4358_177 -4358_80688,96,4358_5805,Liffey Valley,11952,0,4358_7778195_4026001,4358_177 -4358_80688,205,4358_5806,Liffey Valley,4878,0,4358_7778195_4026001,4358_178 -4358_80688,205,4358_5807,Liffey Valley,4844,0,4358_7778195_4026002,4358_177 -4358_80688,96,4358_5809,Liffey Valley,11965,0,4358_7778195_4026004,4358_178 -4358_80754,205,4358_581,Ashtown Stn,2083,0,4358_7778195_5120008,4358_20 -4358_80688,205,4358_5810,Liffey Valley,5034,0,4358_7778195_4026013,4358_177 -4358_80688,205,4358_5811,Liffey Valley,4996,0,4358_7778195_4026009,4358_177 -4358_80688,96,4358_5812,Liffey Valley,11991,0,4358_7778195_4026008,4358_177 -4358_80688,205,4358_5813,Liffey Valley,5079,0,4358_7778195_4026015,4358_177 -4358_80688,205,4358_5815,Liffey Valley,5027,0,4358_7778195_4026010,4358_178 -4358_80688,96,4358_5816,Liffey Valley,12013,0,4358_7778195_4026002,4358_177 -4358_80688,205,4358_5817,Liffey Valley,4904,0,4358_7778195_4026005,4358_177 -4358_80688,96,4358_5818,Liffey Valley,12023,0,4358_7778195_4026005,4358_177 -4358_80688,205,4358_5819,Liffey Valley,4952,0,4358_7778195_4026007,4358_178 -4358_80754,96,4358_582,Ashtown Stn,9808,0,4358_7778195_5120002,4358_22 -4358_80688,205,4358_5821,Liffey Valley,5065,0,4358_7778195_4026014,4358_177 -4358_80688,96,4358_5823,Liffey Valley,11977,0,4358_7778195_4026006,4358_178 -4358_80688,205,4358_5824,Liffey Valley,4892,0,4358_7778195_4026003,4358_177 -4358_80688,96,4358_5826,Liffey Valley,11967,0,4358_7778195_4026004,4358_178 -4358_80688,205,4358_5827,Liffey Valley,4925,0,4358_7778195_4026012,4358_177 -4358_80688,96,4358_5828,Liffey Valley,12043,0,4358_7778195_4026003,4358_177 -4358_80688,205,4358_5829,Liffey Valley,5083,0,4358_7778195_4026016,4358_177 -4358_80688,96,4358_5831,Liffey Valley,12078,0,4358_7778195_4026011,4358_177 -4358_80688,205,4358_5832,Liffey Valley,4846,0,4358_7778195_4026002,4358_177 -4358_80688,96,4358_5834,Liffey Valley,11993,0,4358_7778195_4026008,4358_177 -4358_80688,205,4358_5835,Liffey Valley,4998,0,4358_7778195_4026009,4358_177 -4358_80688,96,4358_5836,Liffey Valley,11956,0,4358_7778195_4026001,4358_177 -4358_80688,205,4358_5838,Liffey Valley,5081,0,4358_7778195_4026015,4358_177 -4358_80688,96,4358_5839,Liffey Valley,12015,0,4358_7778195_4026002,4358_177 -4358_80754,96,4358_584,Ashtown Stn,9860,0,4358_7778195_5120003,4358_20 -4358_80688,205,4358_5841,Liffey Valley,5029,0,4358_7778195_4026010,4358_178 -4358_80688,96,4358_5842,Liffey Valley,12066,0,4358_7778195_4026010,4358_177 -4358_80688,205,4358_5843,Liffey Valley,4906,0,4358_7778195_4026005,4358_177 -4358_80688,96,4358_5845,Liffey Valley,11979,0,4358_7778195_4026006,4358_177 -4358_80688,205,4358_5846,Liffey Valley,5067,0,4358_7778195_4026014,4358_177 -4358_80688,96,4358_5848,Liffey Valley,11969,0,4358_7778195_4026004,4358_178 -4358_80688,205,4358_5849,Liffey Valley,5010,0,4358_7778195_4026017,4358_177 -4358_80754,205,4358_585,Ashtown Stn,2107,0,4358_7778195_5120007,4358_22 -4358_80688,96,4358_5850,Liffey Valley,12045,0,4358_7778195_4026003,4358_177 -4358_80688,205,4358_5851,Liffey Valley,4927,0,4358_7778195_4026012,4358_177 -4358_80688,96,4358_5853,Liffey Valley,12027,0,4358_7778195_4026005,4358_177 -4358_80688,205,4358_5854,Liffey Valley,4956,0,4358_7778195_4026007,4358_177 -4358_80688,96,4358_5856,Liffey Valley,12116,0,4358_7778195_4026014,4358_177 -4358_80688,205,4358_5857,Liffey Valley,4848,0,4358_7778195_4026002,4358_177 -4358_80688,96,4358_5859,Liffey Valley,12080,0,4358_7778195_4026011,4358_178 -4358_80688,205,4358_5860,Liffey Valley,4896,0,4358_7778195_4026003,4358_177 -4358_80688,96,4358_5861,Liffey Valley,11958,0,4358_7778195_4026001,4358_177 -4358_80688,205,4358_5862,Liffey Valley,5031,0,4358_7778195_4026010,4358_177 -4358_80688,96,4358_5864,Liffey Valley,12017,0,4358_7778195_4026002,4358_177 -4358_80688,205,4358_5865,Liffey Valley,4908,0,4358_7778195_4026005,4358_177 -4358_80688,96,4358_5867,Liffey Valley,12068,0,4358_7778195_4026010,4358_177 -4358_80688,205,4358_5868,Liffey Valley,5040,0,4358_7778195_4026013,4358_177 -4358_80754,205,4358_587,Ashtown Stn,2143,0,4358_7778195_5120003,4358_20 -4358_80688,96,4358_5870,Liffey Valley,11981,0,4358_7778195_4026006,4358_178 -4358_80688,205,4358_5871,Liffey Valley,5002,0,4358_7778195_4026009,4358_177 -4358_80688,96,4358_5872,Liffey Valley,11971,0,4358_7778195_4026004,4358_177 -4358_80688,205,4358_5873,Liffey Valley,5012,0,4358_7778195_4026017,4358_177 -4358_80688,96,4358_5875,Liffey Valley,12047,0,4358_7778195_4026003,4358_177 -4358_80688,205,4358_5876,Liffey Valley,5087,0,4358_7778195_4026018,4358_177 -4358_80688,96,4358_5878,Liffey Valley,12029,0,4358_7778195_4026005,4358_177 -4358_80688,205,4358_5879,Liffey Valley,4958,0,4358_7778195_4026007,4358_177 -4358_80754,96,4358_588,Ashtown Stn,9887,0,4358_7778195_5120004,4358_22 -4358_80688,96,4358_5880,Liffey Valley,12118,0,4358_7778195_4026014,4358_177 -4358_80688,205,4358_5882,Liffey Valley,5071,0,4358_7778195_4026014,4358_177 -4358_80688,96,4358_5883,Liffey Valley,12123,0,4358_7778195_4026015,4358_177 -4358_80688,205,4358_5885,Liffey Valley,4898,0,4358_7778195_4026003,4358_178 -4358_80688,96,4358_5886,Liffey Valley,12099,0,4358_7778195_4026013,4358_177 -4358_80688,205,4358_5887,Liffey Valley,4941,0,4358_7778195_4026019,4358_177 -4358_80688,96,4358_5889,Liffey Valley,11960,0,4358_7778195_4026001,4358_177 -4358_80688,205,4358_5890,Liffey Valley,4931,0,4358_7778195_4026012,4358_177 -4358_80688,96,4358_5891,Liffey Valley,12141,0,4358_7778195_4026016,4358_177 -4358_80688,205,4358_5893,Liffey Valley,5042,0,4358_7778195_4026013,4358_177 -4358_80688,96,4358_5894,Liffey Valley,12070,0,4358_7778195_4026010,4358_177 -4358_80688,205,4358_5896,Liffey Valley,4852,0,4358_7778195_4026002,4358_178 -4358_80688,96,4358_5897,Liffey Valley,11983,0,4358_7778195_4026006,4358_177 -4358_80688,205,4358_5898,Liffey Valley,5014,0,4358_7778195_4026017,4358_177 -4358_80760,205,4358_59,Shaw street,3141,0,4358_7778195_9001004,4358_1 -4358_80754,205,4358_590,Ashtown Stn,2085,0,4358_7778195_5120008,4358_20 -4358_80688,96,4358_5900,Liffey Valley,11973,0,4358_7778195_4026004,4358_177 -4358_80688,205,4358_5901,Liffey Valley,4992,0,4358_7778195_4026020,4358_177 -4358_80688,96,4358_5902,Liffey Valley,11949,0,4358_7778195_4026018,4358_177 -4358_80688,205,4358_5904,Liffey Valley,4960,0,4358_7778195_4026007,4358_179 -4358_80688,205,4358_5905,Liffey Valley,4912,0,4358_7778195_4026005,4358_177 -4358_80688,96,4358_5906,Liffey Valley,12031,0,4358_7778195_4026005,4358_177 -4358_80688,205,4358_5908,Liffey Valley,5093,0,4358_7778195_4026021,4358_178 -4358_80688,96,4358_5909,Liffey Valley,12120,0,4358_7778195_4026014,4358_177 -4358_80754,96,4358_591,Ashtown Stn,9810,0,4358_7778195_5120002,4358_22 -4358_80688,205,4358_5910,Liffey Valley,5073,0,4358_7778195_4026014,4358_178 -4358_80688,205,4358_5912,Liffey Valley,4900,0,4358_7778195_4026003,4358_178 -4358_80688,96,4358_5913,Liffey Valley,12152,0,4358_7778195_4026017,4358_177 -4358_80688,205,4358_5914,Liffey Valley,5006,0,4358_7778195_4026009,4358_177 -4358_80688,96,4358_5916,Liffey Valley,12057,0,4358_7778195_4026019,4358_178 -4358_80688,205,4358_5917,Liffey Valley,4943,0,4358_7778195_4026019,4358_179 -4358_80688,205,4358_5918,Liffey Valley,4968,0,4358_7778195_4026023,4358_177 -4358_80688,96,4358_5919,Liffey Valley,11962,0,4358_7778195_4026001,4358_177 -4358_80688,205,4358_5920,Liffey Valley,5096,0,4358_7778195_4026024,4358_177 -4358_80688,205,4358_5922,Liffey Valley,5044,0,4358_7778195_4026013,4358_177 -4358_80688,96,4358_5923,Liffey Valley,12072,0,4358_7778195_4026010,4358_178 -4358_80688,205,4358_5925,Liffey Valley,5091,0,4358_7778195_4026018,4358_178 -4358_80688,96,4358_5926,Liffey Valley,12127,0,4358_7778195_4026015,4358_177 -4358_80688,205,4358_5927,Liffey Valley,4854,0,4358_7778195_4026002,4358_177 -4358_80688,205,4358_5928,Liffey Valley,5016,0,4358_7778195_4026017,4358_177 -4358_80688,96,4358_5929,Liffey Valley,11985,0,4358_7778195_4026006,4358_178 -4358_80754,96,4358_593,Ashtown Stn,9862,0,4358_7778195_5120003,4358_20 -4358_80688,205,4358_5931,Liffey Valley,4994,0,4358_7778195_4026020,4358_177 -4358_80688,96,4358_5932,Liffey Valley,12103,0,4358_7778195_4026013,4358_177 -4358_80688,205,4358_5934,Liffey Valley,5113,0,4358_7778195_4026026,4358_178 -4358_80688,96,4358_5935,Liffey Valley,12033,0,4358_7778195_4026005,4358_177 -4358_80688,205,4358_5936,Liffey Valley,4935,0,4358_7778195_4026012,4358_178 -4358_80688,205,4358_5938,Liffey Valley,4914,0,4358_7778195_4026005,4358_177 -4358_80688,96,4358_5939,Liffey Valley,12145,0,4358_7778195_4026016,4358_177 -4358_80754,205,4358_594,Ashtown Stn,2109,0,4358_7778195_5120007,4358_22 -4358_80688,205,4358_5941,Liffey Valley,4885,0,4358_7778195_4026022,4358_177 -4358_80688,96,4358_5942,Liffey Valley,12059,0,4358_7778195_4026019,4358_177 -4358_80688,205,4358_5944,Liffey Valley,5104,0,4358_7778195_4026025,4358_178 -4358_80688,96,4358_5945,Liffey Valley,12074,0,4358_7778195_4026010,4358_177 -4358_80688,205,4358_5946,Liffey Valley,4945,0,4358_7778195_4026019,4358_178 -4358_80688,205,4358_5948,Liffey Valley,5046,0,4358_7778195_4026013,4358_177 -4358_80688,96,4358_5949,Liffey Valley,11987,0,4358_7778195_4026006,4358_177 -4358_80688,205,4358_5951,Liffey Valley,4856,0,4358_7778195_4026002,4358_177 -4358_80688,96,4358_5952,Liffey Valley,12182,0,4358_7778195_4026022,4358_177 -4358_80688,205,4358_5954,Liffey Valley,5115,0,4358_7778195_4026026,4358_178 -4358_80688,205,4358_5955,Liffey Valley,5077,0,4358_7778195_4026014,4358_177 -4358_80688,96,4358_5956,Liffey Valley,12035,0,4358_7778195_4026005,4358_178 -4358_80688,205,4358_5958,Liffey Valley,4937,0,4358_7778195_4026012,4358_177 -4358_80688,96,4358_5959,Liffey Valley,12147,0,4358_7778195_4026016,4358_177 -4358_80754,205,4358_596,Ashtown Stn,2145,0,4358_7778195_5120003,4358_20 -4358_80688,205,4358_5961,Liffey Valley,5106,0,4358_7778195_4026025,4358_177 -4358_80688,96,4358_5962,Liffey Valley,12061,0,4358_7778195_4026019,4358_177 -4358_80688,205,4358_5964,Liffey Valley,4947,0,4358_7778195_4026019,4358_178 -4358_80688,96,4358_5965,Liffey Valley,12076,0,4358_7778195_4026010,4358_177 -4358_80688,205,4358_5966,Liffey Valley,4966,0,4358_7778195_4026007,4358_178 -4358_80688,205,4358_5968,Liffey Valley,4858,0,4358_7778195_4026002,4358_177 -4358_80688,96,4358_5969,Liffey Valley,13334,0,4358_7778195_4026020,4358_177 -4358_80754,96,4358_597,Ashtown Stn,9889,0,4358_7778195_5120004,4358_22 -4358_80688,205,4358_5971,Liffey Valley,5048,0,4358_7778195_4026013,4358_177 -4358_80688,96,4358_5972,Liffey Valley,12184,0,4358_7778195_4026022,4358_177 -4358_80688,205,4358_5974,Liffey Valley,5117,0,4358_7778195_4026026,4358_178 -4358_80688,96,4358_5975,Liffey Valley,12037,0,4358_7778195_4026005,4358_177 -4358_80688,205,4358_5976,Liffey Valley,4939,0,4358_7778195_4026012,4358_178 -4358_80688,96,4358_5978,Liffey Valley,12063,0,4358_7778195_4026019,4358_177 -4358_80688,205,4358_5980,Liffey Valley,4949,0,4358_7778195_4026019,4358_179 -4358_80688,205,4358_5981,Merrion Square,4889,1,4358_7778195_4026003,4358_180 -4358_80688,96,4358_5982,Merrion Square,11951,1,4358_7778195_4026001,4358_180 -4358_80688,205,4358_5983,Merrion Square,4877,1,4358_7778195_4026001,4358_180 -4358_80688,205,4358_5984,Merrion Square,4843,1,4358_7778195_4026002,4358_180 -4358_80688,96,4358_5985,Merrion Square,11964,1,4358_7778195_4026004,4358_180 -4358_80688,205,4358_5986,Merrion Square,4995,1,4358_7778195_4026009,4358_180 -4358_80688,96,4358_5987,Merrion Square,12041,1,4358_7778195_4026003,4358_180 -4358_80688,205,4358_5988,Merrion Square,5026,1,4358_7778195_4026010,4358_181 -4358_80688,205,4358_5989,Merrion Square,4903,1,4358_7778195_4026005,4358_180 -4358_80754,205,4358_599,Ashtown Stn,2087,0,4358_7778195_5120008,4358_20 -4358_80688,96,4358_5990,Merrion Square,12012,1,4358_7778195_4026002,4358_180 -4358_80688,205,4358_5991,Merrion Square,4951,1,4358_7778195_4026007,4358_181 -4358_80688,205,4358_5992,Merrion Square,5064,1,4358_7778195_4026014,4358_180 -4358_80688,96,4358_5993,Merrion Square,12022,1,4358_7778195_4026005,4358_180 -4358_80688,205,4358_5994,Merrion Square,4891,1,4358_7778195_4026003,4358_181 -4358_80688,205,4358_5996,Merrion Square,4990,1,4358_7778195_4026011,4358_180 -4358_80688,96,4358_5997,Merrion Square,11976,1,4358_7778195_4026006,4358_180 -4358_80688,205,4358_5998,Merrion Square,4924,1,4358_7778195_4026012,4358_181 -4358_80688,205,4358_5999,Merrion Square,5082,1,4358_7778195_4026016,4358_180 -4358_80760,205,4358_6,Shaw street,1897,0,4358_7778195_9001002,4358_1 -4358_80760,96,4358_60,Shaw street,9516,0,4358_7778195_9001005,4358_1 -4358_80754,96,4358_600,Ashtown Stn,9812,0,4358_7778195_5120002,4358_22 -4358_80688,96,4358_6001,Merrion Square,11966,1,4358_7778195_4026004,4358_180 -4358_80688,205,4358_6002,Merrion Square,4879,1,4358_7778195_4026001,4358_181 -4358_80688,205,4358_6003,Merrion Square,4845,1,4358_7778195_4026002,4358_180 -4358_80688,96,4358_6004,Merrion Square,12042,1,4358_7778195_4026003,4358_180 -4358_80688,205,4358_6006,Merrion Square,4997,1,4358_7778195_4026009,4358_180 -4358_80688,96,4358_6008,Merrion Square,11992,1,4358_7778195_4026008,4358_181 -4358_80688,205,4358_6009,Merrion Square,5080,1,4358_7778195_4026015,4358_180 -4358_80688,96,4358_6010,Merrion Square,11955,1,4358_7778195_4026001,4358_180 -4358_80688,205,4358_6012,Merrion Square,5028,1,4358_7778195_4026010,4358_182 -4358_80688,96,4358_6013,Merrion Square,12014,1,4358_7778195_4026002,4358_180 -4358_80688,205,4358_6014,Merrion Square,4905,1,4358_7778195_4026005,4358_181 -4358_80688,205,4358_6016,Merrion Square,5009,1,4358_7778195_4026017,4358_180 -4358_80688,96,4358_6017,Merrion Square,12065,1,4358_7778195_4026010,4358_181 -4358_80688,205,4358_6019,Merrion Square,5066,1,4358_7778195_4026014,4358_180 -4358_80754,96,4358_602,Ashtown Stn,9864,0,4358_7778195_5120003,4358_20 -4358_80688,96,4358_6020,Merrion Square,11978,1,4358_7778195_4026006,4358_181 -4358_80688,205,4358_6021,Merrion Square,4988,1,4358_7778195_4026008,4358_180 -4358_80688,96,4358_6023,Merrion Square,11968,1,4358_7778195_4026004,4358_182 -4358_80688,96,4358_6024,Merrion Square,12044,1,4358_7778195_4026003,4358_180 -4358_80688,205,4358_6025,Merrion Square,4926,1,4358_7778195_4026012,4358_181 -4358_80688,96,4358_6027,Merrion Square,12026,1,4358_7778195_4026005,4358_180 -4358_80688,205,4358_6028,Merrion Square,4955,1,4358_7778195_4026007,4358_181 -4358_80754,205,4358_603,Ashtown Stn,2111,0,4358_7778195_5120007,4358_22 -4358_80688,205,4358_6030,Merrion Square,4847,1,4358_7778195_4026002,4358_180 -4358_80688,96,4358_6031,Merrion Square,12079,1,4358_7778195_4026011,4358_181 -4358_80688,96,4358_6032,Merrion Square,11957,1,4358_7778195_4026001,4358_180 -4358_80688,205,4358_6034,Merrion Square,4895,1,4358_7778195_4026003,4358_182 -4358_80688,96,4358_6035,Merrion Square,12016,1,4358_7778195_4026002,4358_180 -4358_80688,205,4358_6036,Merrion Square,5030,1,4358_7778195_4026010,4358_181 -4358_80688,205,4358_6038,Merrion Square,4907,1,4358_7778195_4026005,4358_180 -4358_80688,96,4358_6039,Merrion Square,12067,1,4358_7778195_4026010,4358_181 -4358_80688,205,4358_6041,Merrion Square,5039,1,4358_7778195_4026013,4358_180 -4358_80688,96,4358_6042,Merrion Square,11980,1,4358_7778195_4026006,4358_181 -4358_80688,205,4358_6043,Merrion Square,5001,1,4358_7778195_4026009,4358_180 -4358_80688,96,4358_6045,Merrion Square,11970,1,4358_7778195_4026004,4358_182 -4358_80688,96,4358_6046,Merrion Square,12046,1,4358_7778195_4026003,4358_180 -4358_80688,205,4358_6047,Merrion Square,5011,1,4358_7778195_4026017,4358_181 -4358_80688,96,4358_6049,Merrion Square,12028,1,4358_7778195_4026005,4358_180 -4358_80754,205,4358_605,Ashtown Stn,2147,0,4358_7778195_5120003,4358_20 -4358_80688,205,4358_6050,Merrion Square,5086,1,4358_7778195_4026018,4358_181 -4358_80688,96,4358_6052,Merrion Square,12117,1,4358_7778195_4026014,4358_180 -4358_80688,205,4358_6053,Merrion Square,4957,1,4358_7778195_4026007,4358_181 -4358_80688,96,4358_6054,Merrion Square,12122,1,4358_7778195_4026015,4358_180 -4358_80688,205,4358_6055,Merrion Square,5070,1,4358_7778195_4026014,4358_181 -4358_80688,96,4358_6057,Merrion Square,12098,1,4358_7778195_4026013,4358_180 -4358_80688,205,4358_6058,Merrion Square,4897,1,4358_7778195_4026003,4358_181 -4358_80754,96,4358_606,Ashtown Stn,9891,0,4358_7778195_5120004,4358_22 -4358_80688,96,4358_6060,Merrion Square,11959,1,4358_7778195_4026001,4358_180 -4358_80688,205,4358_6061,Merrion Square,4940,1,4358_7778195_4026019,4358_181 -4358_80688,96,4358_6063,Merrion Square,12140,1,4358_7778195_4026016,4358_180 -4358_80688,205,4358_6064,Merrion Square,4930,1,4358_7778195_4026012,4358_181 -4358_80688,205,4358_6065,Merrion Square,5041,1,4358_7778195_4026013,4358_180 -4358_80688,96,4358_6067,Merrion Square,12069,1,4358_7778195_4026010,4358_182 -4358_80688,96,4358_6068,Merrion Square,11982,1,4358_7778195_4026006,4358_180 -4358_80688,205,4358_6069,Merrion Square,4851,1,4358_7778195_4026002,4358_181 -4358_80688,205,4358_6071,Merrion Square,5013,1,4358_7778195_4026017,4358_180 -4358_80688,96,4358_6072,Merrion Square,11972,1,4358_7778195_4026004,4358_180 -4358_80688,205,4358_6073,Merrion Square,4991,1,4358_7778195_4026020,4358_180 -4358_80688,96,4358_6075,Merrion Square,11948,1,4358_7778195_4026018,4358_180 -4358_80688,205,4358_6076,Merrion Square,5092,1,4358_7778195_4026021,4358_181 -4358_80688,205,4358_6077,Merrion Square,4959,1,4358_7778195_4026007,4358_180 -4358_80688,96,4358_6079,Merrion Square,12030,1,4358_7778195_4026005,4358_181 -4358_80754,205,4358_608,Ashtown Stn,2186,0,4358_7778195_5120009,4358_20 -4358_80688,205,4358_6080,Merrion Square,4911,1,4358_7778195_4026005,4358_180 -4358_80688,96,4358_6081,Merrion Square,12119,1,4358_7778195_4026014,4358_180 -4358_80688,205,4358_6082,Merrion Square,5072,1,4358_7778195_4026014,4358_181 -4358_80688,205,4358_6084,Merrion Square,4899,1,4358_7778195_4026003,4358_180 -4358_80688,96,4358_6085,Merrion Square,12151,1,4358_7778195_4026017,4358_180 -4358_80688,205,4358_6086,Merrion Square,5005,1,4358_7778195_4026009,4358_180 -4358_80688,96,4358_6088,Merrion Square,12056,1,4358_7778195_4026019,4358_180 -4358_80688,205,4358_6089,Merrion Square,4942,1,4358_7778195_4026019,4358_181 -4358_80754,96,4358_609,Ashtown Stn,9814,0,4358_7778195_5120002,4358_22 -4358_80688,205,4358_6090,Merrion Square,4967,1,4358_7778195_4026023,4358_180 -4358_80688,96,4358_6091,Merrion Square,11961,1,4358_7778195_4026001,4358_180 -4358_80688,205,4358_6093,Merrion Square,5095,1,4358_7778195_4026024,4358_180 -4358_80688,205,4358_6094,Merrion Square,5043,1,4358_7778195_4026013,4358_180 -4358_80688,96,4358_6095,Merrion Square,12071,1,4358_7778195_4026010,4358_181 -4358_80688,205,4358_6097,Merrion Square,5090,1,4358_7778195_4026018,4358_180 -4358_80688,96,4358_6098,Merrion Square,12126,1,4358_7778195_4026015,4358_180 -4358_80688,205,4358_6099,Merrion Square,4853,1,4358_7778195_4026002,4358_180 -4358_80760,205,4358_61,Shaw street,1847,0,4358_7778195_9001006,4358_1 -4358_80688,96,4358_6101,Merrion Square,11984,1,4358_7778195_4026006,4358_180 -4358_80688,205,4358_6102,Merrion Square,5015,1,4358_7778195_4026017,4358_180 -4358_80688,96,4358_6103,Merrion Square,12102,1,4358_7778195_4026013,4358_180 -4358_80688,205,4358_6105,Merrion Square,4993,1,4358_7778195_4026020,4358_180 -4358_80688,96,4358_6106,Merrion Square,12032,1,4358_7778195_4026005,4358_180 -4358_80688,205,4358_6108,Merrion Square,4934,1,4358_7778195_4026012,4358_181 -4358_80688,96,4358_6109,Merrion Square,12121,1,4358_7778195_4026014,4358_180 -4358_80754,96,4358_611,Ashtown Stn,9866,0,4358_7778195_5120003,4358_20 -4358_80688,205,4358_6110,Merrion Square,4913,1,4358_7778195_4026005,4358_180 -4358_80688,96,4358_6112,Merrion Square,12144,1,4358_7778195_4026016,4358_180 -4358_80688,205,4358_6113,Merrion Square,4884,1,4358_7778195_4026022,4358_180 -4358_80688,96,4358_6115,Merrion Square,12058,1,4358_7778195_4026019,4358_181 -4358_80688,205,4358_6116,Merrion Square,4901,1,4358_7778195_4026003,4358_180 -4358_80688,96,4358_6117,Merrion Square,11963,1,4358_7778195_4026001,4358_180 -4358_80688,205,4358_6119,Merrion Square,5103,1,4358_7778195_4026025,4358_181 -4358_80754,205,4358_612,Ashtown Stn,2190,0,4358_7778195_5120010,4358_22 -4358_80688,96,4358_6120,Merrion Square,12073,1,4358_7778195_4026010,4358_180 -4358_80688,205,4358_6121,Merrion Square,4944,1,4358_7778195_4026019,4358_181 -4358_80688,205,4358_6123,Merrion Square,5045,1,4358_7778195_4026013,4358_180 -4358_80688,96,4358_6124,Merrion Square,11986,1,4358_7778195_4026006,4358_180 -4358_80688,205,4358_6126,Merrion Square,4855,1,4358_7778195_4026002,4358_180 -4358_80688,96,4358_6127,Merrion Square,12181,1,4358_7778195_4026022,4358_180 -4358_80688,205,4358_6129,Merrion Square,5114,1,4358_7778195_4026026,4358_181 -4358_80688,205,4358_6130,Merrion Square,5076,1,4358_7778195_4026014,4358_180 -4358_80688,96,4358_6131,Merrion Square,12034,1,4358_7778195_4026005,4358_181 -4358_80688,205,4358_6133,Merrion Square,4936,1,4358_7778195_4026012,4358_180 -4358_80688,96,4358_6134,Merrion Square,12146,1,4358_7778195_4026016,4358_180 -4358_80688,205,4358_6136,Merrion Square,4965,1,4358_7778195_4026007,4358_180 -4358_80688,96,4358_6137,Merrion Square,12060,1,4358_7778195_4026019,4358_180 -4358_80688,205,4358_6139,Merrion Square,5105,1,4358_7778195_4026025,4358_181 -4358_80754,205,4358_614,Ashtown Stn,2089,0,4358_7778195_5120008,4358_21 -4358_80688,96,4358_6140,Merrion Square,12075,1,4358_7778195_4026010,4358_180 -4358_80688,205,4358_6141,Merrion Square,4946,1,4358_7778195_4026019,4358_181 -4358_80688,205,4358_6143,Merrion Square,5047,1,4358_7778195_4026013,4358_180 -4358_80688,96,4358_6144,Merrion Square,13333,1,4358_7778195_4026020,4358_180 -4358_80688,205,4358_6146,Merrion Square,4857,1,4358_7778195_4026002,4358_180 -4358_80688,96,4358_6147,Merrion Square,12183,1,4358_7778195_4026022,4358_180 -4358_80688,205,4358_6149,Merrion Square,5116,1,4358_7778195_4026026,4358_181 -4358_80754,205,4358_615,Ashtown Stn,2149,0,4358_7778195_5120003,4358_20 -4358_80688,96,4358_6150,Merrion Square,12036,1,4358_7778195_4026005,4358_180 -4358_80688,205,4358_6151,Merrion Square,4888,1,4358_7778195_4026022,4358_181 -4358_80688,205,4358_6153,Merrion Square,4938,1,4358_7778195_4026012,4358_180 -4358_80688,96,4358_6154,Merrion Square,11990,1,4358_7778195_4026006,4358_180 -4358_80688,205,4358_6156,Merrion Square,5107,1,4358_7778195_4026025,4358_180 -4358_80688,96,4358_6157,Merrion Square,12062,1,4358_7778195_4026019,4358_180 -4358_80688,205,4358_6159,Merrion Square,4948,1,4358_7778195_4026019,4358_181 -4358_80754,96,4358_616,Ashtown Stn,9893,0,4358_7778195_5120004,4358_22 -4358_80688,205,4358_6160,Merrion Square,4859,1,4358_7778195_4026002,4358_180 -4358_80688,96,4358_6161,Merrion Square,12077,1,4358_7778195_4026010,4358_181 -4358_80688,96,4358_6163,Merrion Square,12185,1,4358_7778195_4026022,4358_180 -4358_80688,205,4358_6165,Merrion Square,5049,1,4358_7778195_4026013,4358_182 -4358_80689,205,4358_6166,Jobstown,5546,0,4358_7778195_6027101,4358_183 -4358_80689,205,4358_6167,Jobstown,1247,0,4358_7778195_3027008,4358_185 -4358_80689,96,4358_6168,Jobstown,12403,0,4358_7778195_6027101,4358_183 -4358_80689,205,4358_6169,Jobstown,5560,0,4358_7778195_6027102,4358_183 -4358_80689,205,4358_6170,Jobstown,1273,0,4358_7778195_3027012,4358_185 -4358_80689,96,4358_6171,Jobstown,12267,0,4358_7778195_6027102,4358_183 -4358_80689,205,4358_6172,Jobstown,5522,0,4358_7778195_6027103,4358_184 -4358_80689,205,4358_6173,Jobstown,6554,0,4358_7778195_6027105,4358_183 -4358_80689,205,4358_6174,Jobstown,1231,0,4358_7778195_3027016,4358_185 -4358_80689,205,4358_6175,Jobstown,5501,0,4358_7778195_6027106,4358_183 -4358_80689,205,4358_6176,Jobstown,5535,0,4358_7778195_6027107,4358_183 -4358_80689,205,4358_6177,Jobstown,1254,0,4358_7778195_3027017,4358_185 -4358_80689,96,4358_6178,Jobstown,12260,0,4358_7778195_6027103,4358_184 -4358_80689,205,4358_6179,Jobstown,5481,0,4358_7778195_6027108,4358_183 -4358_80754,205,4358_618,Ashtown Stn,2156,0,4358_7778195_5120012,4358_22 -4358_80689,205,4358_6180,Jobstown,5596,0,4358_7778195_6027109,4358_183 -4358_80689,96,4358_6181,Jobstown,8829,0,4358_7778195_3027001,4358_183 -4358_80689,205,4358_6182,Jobstown,5586,0,4358_7778195_6027110,4358_184 -4358_80689,205,4358_6183,Jobstown,5640,0,4358_7778195_6027104,4358_183 -4358_80689,205,4358_6184,Jobstown,5602,0,4358_7778195_6027111,4358_183 -4358_80689,96,4358_6185,Jobstown,8774,0,4358_7778195_3027002,4358_183 -4358_80689,205,4358_6186,Jobstown,5529,0,4358_7778195_6027112,4358_184 -4358_80689,205,4358_6187,Jobstown,5608,0,4358_7778195_6027113,4358_183 -4358_80689,205,4358_6188,Jobstown,1239,0,4358_7778195_3027002,4358_183 -4358_80689,96,4358_6189,Jobstown,8914,0,4358_7778195_3027004,4358_183 -4358_80754,205,4358_619,Ashtown Stn,2113,0,4358_7778195_5120007,4358_21 -4358_80689,205,4358_6190,Jobstown,1281,0,4358_7778195_3027004,4358_184 -4358_80689,205,4358_6192,Jobstown,1192,0,4358_7778195_3027006,4358_183 -4358_80689,205,4358_6193,Jobstown,1288,0,4358_7778195_3027007,4358_183 -4358_80689,96,4358_6194,Jobstown,12405,0,4358_7778195_6027104,4358_184 -4358_80689,205,4358_6195,Jobstown,1249,0,4358_7778195_3027008,4358_183 -4358_80689,205,4358_6197,Jobstown,1337,0,4358_7778195_3027029,4358_183 -4358_80689,96,4358_6198,Jobstown,12304,0,4358_7778195_6027105,4358_184 -4358_80689,205,4358_6199,Jobstown,1338,0,4358_7778195_3027031,4358_183 -4358_80754,96,4358_620,Ashtown Stn,9816,0,4358_7778195_5120002,4358_20 -4358_80689,96,4358_6200,Jobstown,12269,0,4358_7778195_6027102,4358_183 -4358_80689,205,4358_6202,Jobstown,1262,0,4358_7778195_3027011,4358_186 -4358_80689,205,4358_6203,Jobstown,1275,0,4358_7778195_3027012,4358_183 -4358_80689,96,4358_6204,Jobstown,12279,0,4358_7778195_6027106,4358_184 -4358_80689,96,4358_6206,Jobstown,12252,0,4358_7778195_6027107,4358_184 -4358_80689,205,4358_6207,Jobstown,1177,0,4358_7778195_3027015,4358_186 -4358_80689,205,4358_6208,Jobstown,1233,0,4358_7778195_3027016,4358_183 -4358_80689,96,4358_6209,Jobstown,12335,0,4358_7778195_6027108,4358_184 -4358_80754,205,4358_621,Ashtown Stn,2188,0,4358_7778195_5120009,4358_20 -4358_80689,205,4358_6211,Jobstown,1153,0,4358_7778195_3027003,4358_184 -4358_80689,96,4358_6212,Jobstown,12262,0,4358_7778195_6027103,4358_186 -4358_80689,205,4358_6213,Jobstown,1256,0,4358_7778195_3027017,4358_183 -4358_80689,96,4358_6214,Jobstown,12284,0,4358_7778195_6027109,4358_184 -4358_80689,96,4358_6216,Jobstown,8813,0,4358_7778195_3027009,4358_184 -4358_80689,205,4358_6217,Jobstown,5548,0,4358_7778195_6027101,4358_186 -4358_80689,205,4358_6218,Jobstown,5562,0,4358_7778195_6027102,4358_183 -4358_80689,96,4358_6219,Jobstown,12299,0,4358_7778195_6027110,4358_184 -4358_80754,205,4358_622,Ashtown Stn,2123,0,4358_7778195_5120011,4358_21 -4358_80689,205,4358_6220,Jobstown,5524,0,4358_7778195_6027103,4358_183 -4358_80689,96,4358_6221,Jobstown,12343,0,4358_7778195_6027111,4358_184 -4358_80689,96,4358_6223,Jobstown,12322,0,4358_7778195_6027112,4358_183 -4358_80689,205,4358_6224,Jobstown,6556,0,4358_7778195_6027105,4358_184 -4358_80689,96,4358_6225,Jobstown,8831,0,4358_7778195_3027001,4358_183 -4358_80689,205,4358_6227,Jobstown,5503,0,4358_7778195_6027106,4358_186 -4358_80689,96,4358_6228,Jobstown,8776,0,4358_7778195_3027002,4358_183 -4358_80689,205,4358_6229,Jobstown,1326,0,4358_7778195_3027026,4358_184 -4358_80689,96,4358_6231,Jobstown,8879,0,4358_7778195_3027012,4358_184 -4358_80689,205,4358_6232,Jobstown,1333,0,4358_7778195_3027028,4358_186 -4358_80689,205,4358_6233,Jobstown,5483,0,4358_7778195_6027108,4358_183 -4358_80689,96,4358_6234,Jobstown,8927,0,4358_7778195_3027013,4358_184 -4358_80689,205,4358_6236,Jobstown,5598,0,4358_7778195_6027109,4358_183 -4358_80689,96,4358_6237,Jobstown,8932,0,4358_7778195_3027014,4358_184 -4358_80689,96,4358_6238,Jobstown,8916,0,4358_7778195_3027004,4358_183 -4358_80689,205,4358_6239,Jobstown,5588,0,4358_7778195_6027110,4358_184 -4358_80754,205,4358_624,Ashtown Stn,2192,0,4358_7778195_5120010,4358_20 -4358_80689,205,4358_6241,Jobstown,5642,0,4358_7778195_6027104,4358_183 -4358_80689,96,4358_6242,Jobstown,8897,0,4358_7778195_3027015,4358_184 -4358_80689,96,4358_6244,Jobstown,12407,0,4358_7778195_6027104,4358_183 -4358_80689,205,4358_6245,Jobstown,5604,0,4358_7778195_6027111,4358_184 -4358_80689,205,4358_6246,Jobstown,5531,0,4358_7778195_6027112,4358_183 -4358_80689,96,4358_6247,Jobstown,12327,0,4358_7778195_6027113,4358_184 -4358_80689,205,4358_6249,Jobstown,5610,0,4358_7778195_6027113,4358_183 -4358_80754,96,4358_625,Ashtown Stn,9868,0,4358_7778195_5120003,4358_20 -4358_80689,96,4358_6250,Jobstown,8767,0,4358_7778195_3027018,4358_184 -4358_80689,205,4358_6252,Jobstown,1241,0,4358_7778195_3027002,4358_183 -4358_80689,96,4358_6253,Jobstown,8750,0,4358_7778195_3027019,4358_184 -4358_80689,205,4358_6254,Jobstown,1283,0,4358_7778195_3027004,4358_183 -4358_80689,96,4358_6255,Jobstown,12306,0,4358_7778195_6027105,4358_184 -4358_80689,96,4358_6257,Jobstown,8887,0,4358_7778195_3027020,4358_183 -4358_80689,205,4358_6258,Jobstown,1194,0,4358_7778195_3027006,4358_184 -4358_80689,96,4358_6260,Jobstown,12271,0,4358_7778195_6027102,4358_183 -4358_80689,205,4358_6261,Jobstown,1290,0,4358_7778195_3027007,4358_184 -4358_80689,205,4358_6263,Jobstown,1251,0,4358_7778195_3027008,4358_184 -4358_80689,96,4358_6264,Jobstown,12281,0,4358_7778195_6027106,4358_186 -4358_80689,205,4358_6265,Jobstown,1340,0,4358_7778195_3027031,4358_183 -4358_80689,96,4358_6266,Jobstown,12254,0,4358_7778195_6027107,4358_184 -4358_80689,96,4358_6268,Jobstown,12337,0,4358_7778195_6027108,4358_183 -4358_80689,205,4358_6269,Jobstown,1264,0,4358_7778195_3027011,4358_184 -4358_80754,205,4358_627,Ashtown Stn,2151,0,4358_7778195_5120003,4358_20 -4358_80689,205,4358_6271,Jobstown,1277,0,4358_7778195_3027012,4358_184 -4358_80689,96,4358_6272,Jobstown,12264,0,4358_7778195_6027103,4358_186 -4358_80689,96,4358_6273,Jobstown,12286,0,4358_7778195_6027109,4358_183 -4358_80689,205,4358_6274,Jobstown,1179,0,4358_7778195_3027015,4358_184 -4358_80689,96,4358_6276,Jobstown,8815,0,4358_7778195_3027009,4358_183 -4358_80689,205,4358_6277,Jobstown,1235,0,4358_7778195_3027016,4358_184 -4358_80689,205,4358_6278,Jobstown,1155,0,4358_7778195_3027003,4358_183 -4358_80754,96,4358_628,Ashtown Stn,9895,0,4358_7778195_5120004,4358_20 -4358_80689,96,4358_6280,Jobstown,12301,0,4358_7778195_6027110,4358_186 -4358_80689,205,4358_6281,Jobstown,1258,0,4358_7778195_3027017,4358_183 -4358_80689,96,4358_6282,Jobstown,12345,0,4358_7778195_6027111,4358_184 -4358_80689,96,4358_6284,Jobstown,12324,0,4358_7778195_6027112,4358_183 -4358_80689,205,4358_6285,Jobstown,5550,0,4358_7778195_6027101,4358_184 -4358_80689,205,4358_6286,Jobstown,5564,0,4358_7778195_6027102,4358_183 -4358_80689,96,4358_6288,Jobstown,8923,0,4358_7778195_3027021,4358_186 -4358_80689,96,4358_6289,Jobstown,8833,0,4358_7778195_3027001,4358_183 -4358_80689,205,4358_6290,Jobstown,5526,0,4358_7778195_6027103,4358_184 -4358_80689,96,4358_6292,Jobstown,8778,0,4358_7778195_3027002,4358_183 -4358_80689,205,4358_6293,Jobstown,6558,0,4358_7778195_6027105,4358_184 -4358_80689,96,4358_6295,Jobstown,8792,0,4358_7778195_3027022,4358_184 -4358_80689,205,4358_6296,Jobstown,5505,0,4358_7778195_6027106,4358_186 -4358_80689,96,4358_6297,Jobstown,8929,0,4358_7778195_3027013,4358_183 -4358_80689,205,4358_6298,Jobstown,1328,0,4358_7778195_3027026,4358_184 -4358_80760,205,4358_63,Shaw street,1703,0,4358_7778195_9001008,4358_1 -4358_80754,205,4358_630,Ashtown Stn,2158,0,4358_7778195_5120012,4358_20 -4358_80689,96,4358_6300,Jobstown,8934,0,4358_7778195_3027014,4358_183 -4358_80689,205,4358_6301,Jobstown,1335,0,4358_7778195_3027028,4358_184 -4358_80689,96,4358_6302,Jobstown,12331,0,4358_7778195_6027114,4358_183 -4358_80689,205,4358_6303,Jobstown,5485,0,4358_7778195_6027108,4358_184 -4358_80689,205,4358_6305,Jobstown,5600,0,4358_7778195_6027109,4358_183 -4358_80689,96,4358_6306,Jobstown,8918,0,4358_7778195_3027004,4358_184 -4358_80689,96,4358_6308,Jobstown,8899,0,4358_7778195_3027015,4358_183 -4358_80689,205,4358_6309,Jobstown,5590,0,4358_7778195_6027110,4358_184 -4358_80754,96,4358_631,Ashtown Stn,9818,0,4358_7778195_5120002,4358_20 -4358_80689,205,4358_6310,Jobstown,5644,0,4358_7778195_6027104,4358_183 -4358_80689,96,4358_6311,Jobstown,12409,0,4358_7778195_6027104,4358_184 -4358_80689,96,4358_6313,Jobstown,12329,0,4358_7778195_6027113,4358_183 -4358_80689,205,4358_6314,Jobstown,5606,0,4358_7778195_6027111,4358_184 -4358_80689,205,4358_6316,Jobstown,5533,0,4358_7778195_6027112,4358_183 -4358_80689,96,4358_6317,Jobstown,8769,0,4358_7778195_3027018,4358_184 -4358_80689,205,4358_6318,Jobstown,5612,0,4358_7778195_6027113,4358_183 -4358_80689,96,4358_6319,Jobstown,8752,0,4358_7778195_3027019,4358_184 -4358_80689,205,4358_6321,Jobstown,1243,0,4358_7778195_3027002,4358_183 -4358_80689,96,4358_6322,Jobstown,12308,0,4358_7778195_6027105,4358_184 -4358_80689,96,4358_6324,Jobstown,8889,0,4358_7778195_3027020,4358_183 -4358_80689,205,4358_6325,Jobstown,1285,0,4358_7778195_3027004,4358_184 -4358_80689,96,4358_6327,Jobstown,12273,0,4358_7778195_6027102,4358_184 -4358_80689,205,4358_6328,Jobstown,1196,0,4358_7778195_3027006,4358_186 -4358_80689,96,4358_6329,Jobstown,12283,0,4358_7778195_6027106,4358_183 -4358_80754,205,4358_633,Ashtown Stn,2125,0,4358_7778195_5120011,4358_20 -4358_80689,205,4358_6330,Jobstown,5616,0,4358_7778195_6027114,4358_184 -4358_80689,96,4358_6332,Jobstown,12256,0,4358_7778195_6027107,4358_183 -4358_80689,205,4358_6333,Jobstown,1292,0,4358_7778195_3027007,4358_184 -4358_80689,205,4358_6335,Jobstown,1253,0,4358_7778195_3027008,4358_184 -4358_80689,96,4358_6336,Jobstown,12339,0,4358_7778195_6027108,4358_186 -4358_80689,205,4358_6337,Jobstown,1342,0,4358_7778195_3027031,4358_183 -4358_80689,96,4358_6338,Jobstown,12266,0,4358_7778195_6027103,4358_184 -4358_80754,96,4358_634,Ashtown Stn,9870,0,4358_7778195_5120003,4358_20 -4358_80689,96,4358_6340,Jobstown,12288,0,4358_7778195_6027109,4358_183 -4358_80689,205,4358_6341,Jobstown,1266,0,4358_7778195_3027011,4358_184 -4358_80689,96,4358_6342,Jobstown,8921,0,4358_7778195_3027025,4358_183 -4358_80689,205,4358_6343,Jobstown,1279,0,4358_7778195_3027012,4358_184 -4358_80689,96,4358_6345,Jobstown,8817,0,4358_7778195_3027009,4358_183 -4358_80689,205,4358_6346,Jobstown,1181,0,4358_7778195_3027015,4358_184 -4358_80689,205,4358_6348,Jobstown,1237,0,4358_7778195_3027016,4358_183 -4358_80689,96,4358_6349,Jobstown,12303,0,4358_7778195_6027110,4358_184 -4358_80754,205,4358_635,Ashtown Stn,2153,0,4358_7778195_5120003,4358_20 -4358_80689,205,4358_6351,Jobstown,1157,0,4358_7778195_3027003,4358_184 -4358_80689,96,4358_6352,Jobstown,12347,0,4358_7778195_6027111,4358_186 -4358_80689,205,4358_6353,Jobstown,1260,0,4358_7778195_3027017,4358_183 -4358_80689,96,4358_6354,Jobstown,12326,0,4358_7778195_6027112,4358_184 -4358_80689,96,4358_6356,Jobstown,8925,0,4358_7778195_3027021,4358_183 -4358_80689,205,4358_6357,Jobstown,5552,0,4358_7778195_6027101,4358_184 -4358_80689,96,4358_6359,Jobstown,8835,0,4358_7778195_3027001,4358_184 -4358_80689,205,4358_6360,Jobstown,1295,0,4358_7778195_3027036,4358_186 -4358_80689,205,4358_6361,Jobstown,5566,0,4358_7778195_6027102,4358_183 -4358_80689,96,4358_6363,Jobstown,8794,0,4358_7778195_3027022,4358_184 -4358_80689,205,4358_6364,Jobstown,5528,0,4358_7778195_6027103,4358_186 -4358_80689,205,4358_6365,Jobstown,6560,0,4358_7778195_6027105,4358_183 -4358_80689,96,4358_6367,Jobstown,8936,0,4358_7778195_3027014,4358_184 -4358_80689,205,4358_6368,Jobstown,5487,0,4358_7778195_6027108,4358_183 -4358_80754,96,4358_637,Ashtown Stn,9897,0,4358_7778195_5120004,4358_23 -4358_80689,96,4358_6370,Jobstown,12333,0,4358_7778195_6027114,4358_184 -4358_80689,205,4358_6371,Jobstown,5592,0,4358_7778195_6027110,4358_183 -4358_80689,96,4358_6373,Jobstown,12411,0,4358_7778195_6027104,4358_184 -4358_80689,205,4358_6374,Jobstown,5646,0,4358_7778195_6027104,4358_183 -4358_80689,96,4358_6376,Jobstown,8771,0,4358_7778195_3027018,4358_184 -4358_80689,205,4358_6377,Jobstown,5614,0,4358_7778195_6027113,4358_183 -4358_80689,96,4358_6379,Jobstown,8891,0,4358_7778195_3027020,4358_184 -4358_80754,205,4358_638,Ashtown Stn,2160,0,4358_7778195_5120012,4358_20 -4358_80689,205,4358_6380,Jobstown,1245,0,4358_7778195_3027002,4358_183 -4358_80689,96,4358_6381,Jobstown,12258,0,4358_7778195_6027107,4358_183 -4358_80689,205,4358_6383,Jobstown,5618,0,4358_7778195_6027114,4358_183 -4358_80689,96,4358_6385,Jobstown,12341,0,4358_7778195_6027108,4358_184 -4358_80689,205,4358_6386,Jobstown,6668,0,4358_7778195_3027040,4358_183 -4358_80689,96,4358_6387,Jobstown,8819,0,4358_7778195_3027009,4358_183 -4358_80689,205,4358_6389,Jobstown,1159,0,4358_7778195_3027003,4358_183 -4358_80689,96,4358_6391,Jobstown,12349,0,4358_7778195_6027111,4358_184 -4358_80689,205,4358_6392,Jobstown,5554,0,4358_7778195_6027101,4358_183 -4358_80689,96,4358_6394,Jobstown,8837,0,4358_7778195_3027001,4358_184 -4358_80689,205,4358_6395,Jobstown,1297,0,4358_7778195_3027036,4358_183 -4358_80689,96,4358_6397,Jobstown,8796,0,4358_7778195_3027022,4358_184 -4358_80689,205,4358_6398,Eden Quay,6562,0,4358_7778195_6027105,4358_187 -4358_80760,96,4358_64,Shaw street,9456,0,4358_7778195_9001003,4358_1 -4358_80754,96,4358_640,Ashtown Stn,9820,0,4358_7778195_5120002,4358_22 -4358_80689,96,4358_6400,Eden Quay,8938,0,4358_7778195_3027014,4358_188 -4358_80689,205,4358_6401,Eden Quay,5594,0,4358_7778195_6027110,4358_189 -4358_80689,205,4358_6402,Eden Quay,1304,1,4358_7778195_3027001,4358_192 -4358_80689,96,4358_6403,Clare Hall,8828,1,4358_7778195_3027001,4358_190 -4358_80689,205,4358_6404,Clare Hall,1238,1,4358_7778195_3027002,4358_190 -4358_80689,205,4358_6405,Eden Quay,1151,1,4358_7778195_3027003,4358_195 -4358_80689,96,4358_6406,Clare Hall,8773,1,4358_7778195_3027002,4358_190 -4358_80689,205,4358_6407,Clare Hall,1280,1,4358_7778195_3027004,4358_191 -4358_80689,205,4358_6408,Clare Hall,5639,1,4358_7778195_6027104,4358_193 -4358_80689,205,4358_6409,Clare Hall,1191,1,4358_7778195_3027006,4358_190 -4358_80754,205,4358_641,Ashtown Stn,2127,0,4358_7778195_5120011,4358_20 -4358_80689,205,4358_6410,Clare Hall,1287,1,4358_7778195_3027007,4358_190 -4358_80689,96,4358_6411,Clare Hall,8913,1,4358_7778195_3027004,4358_190 -4358_80689,205,4358_6412,Clare Hall,1248,1,4358_7778195_3027008,4358_191 -4358_80689,205,4358_6413,Clare Hall,1261,1,4358_7778195_3027011,4358_190 -4358_80689,205,4358_6414,Clare Hall,1274,1,4358_7778195_3027012,4358_190 -4358_80689,96,4358_6415,Clare Hall,12404,1,4358_7778195_6027101,4358_190 -4358_80689,205,4358_6416,Clare Hall,1176,1,4358_7778195_3027015,4358_191 -4358_80689,205,4358_6417,Clare Hall,1232,1,4358_7778195_3027016,4358_190 -4358_80689,205,4358_6418,Clare Hall,1152,1,4358_7778195_3027003,4358_190 -4358_80689,205,4358_6419,Clare Hall,1255,1,4358_7778195_3027017,4358_190 -4358_80754,96,4358_642,Ashtown Stn,9872,0,4358_7778195_5120003,4358_20 -4358_80689,96,4358_6420,Clare Hall,12268,1,4358_7778195_6027102,4358_191 -4358_80689,205,4358_6421,Clare Hall,5547,1,4358_7778195_6027101,4358_190 -4358_80689,205,4358_6422,Clare Hall,5561,1,4358_7778195_6027102,4358_190 -4358_80689,205,4358_6424,Clare Hall,5523,1,4358_7778195_6027103,4358_191 -4358_80689,96,4358_6425,Clare Hall,12261,1,4358_7778195_6027103,4358_194 -4358_80689,205,4358_6426,Clare Hall,6555,1,4358_7778195_6027105,4358_190 -4358_80689,96,4358_6427,Clare Hall,8812,1,4358_7778195_3027009,4358_190 -4358_80689,205,4358_6428,Clare Hall,5502,1,4358_7778195_6027106,4358_191 -4358_80689,205,4358_6430,Clare Hall,5536,1,4358_7778195_6027107,4358_191 -4358_80689,96,4358_6431,Clare Hall,8830,1,4358_7778195_3027001,4358_190 -4358_80689,205,4358_6432,Clare Hall,1325,1,4358_7778195_3027026,4358_191 -4358_80689,205,4358_6433,Clare Hall,1332,1,4358_7778195_3027028,4358_190 -4358_80689,96,4358_6434,Clare Hall,8775,1,4358_7778195_3027002,4358_190 -4358_80689,205,4358_6436,Clare Hall,5482,1,4358_7778195_6027108,4358_194 -4358_80689,96,4358_6437,Clare Hall,8878,1,4358_7778195_3027012,4358_190 -4358_80689,205,4358_6438,Clare Hall,5597,1,4358_7778195_6027109,4358_191 -4358_80754,205,4358_644,Ashtown Stn,2155,0,4358_7778195_5120003,4358_20 -4358_80689,205,4358_6440,Clare Hall,5587,1,4358_7778195_6027110,4358_191 -4358_80689,96,4358_6441,Clare Hall,8926,1,4358_7778195_3027013,4358_194 -4358_80689,205,4358_6442,Clare Hall,5641,1,4358_7778195_6027104,4358_190 -4358_80689,96,4358_6443,Clare Hall,8931,1,4358_7778195_3027014,4358_191 -4358_80689,96,4358_6444,Clare Hall,8915,1,4358_7778195_3027004,4358_190 -4358_80689,205,4358_6446,Clare Hall,5603,1,4358_7778195_6027111,4358_194 -4358_80689,96,4358_6447,Clare Hall,8896,1,4358_7778195_3027015,4358_190 -4358_80689,205,4358_6448,Clare Hall,5530,1,4358_7778195_6027112,4358_191 -4358_80689,205,4358_6450,Clare Hall,5609,1,4358_7778195_6027113,4358_191 -4358_80689,96,4358_6451,Clare Hall,12406,1,4358_7778195_6027104,4358_194 -4358_80689,205,4358_6452,Clare Hall,1240,1,4358_7778195_3027002,4358_190 -4358_80689,96,4358_6453,Clare Hall,8766,1,4358_7778195_3027018,4358_191 -4358_80689,205,4358_6454,Clare Hall,1282,1,4358_7778195_3027004,4358_190 -4358_80689,96,4358_6455,Clare Hall,8749,1,4358_7778195_3027019,4358_191 -4358_80689,96,4358_6457,Clare Hall,12305,1,4358_7778195_6027105,4358_190 -4358_80689,205,4358_6458,Clare Hall,1193,1,4358_7778195_3027006,4358_191 -4358_80689,96,4358_6459,Clare Hall,8886,1,4358_7778195_3027020,4358_190 -4358_80754,96,4358_646,Ashtown Stn,9822,0,4358_7778195_5120002,4358_22 -4358_80689,205,4358_6460,Clare Hall,1289,1,4358_7778195_3027007,4358_191 -4358_80689,96,4358_6462,Clare Hall,12270,1,4358_7778195_6027102,4358_190 -4358_80689,205,4358_6463,Clare Hall,1250,1,4358_7778195_3027008,4358_191 -4358_80689,205,4358_6464,Clare Hall,1339,1,4358_7778195_3027031,4358_190 -4358_80689,96,4358_6465,Clare Hall,12280,1,4358_7778195_6027106,4358_191 -4358_80689,96,4358_6467,Clare Hall,12253,1,4358_7778195_6027107,4358_190 -4358_80689,205,4358_6468,Clare Hall,1263,1,4358_7778195_3027011,4358_191 -4358_80754,205,4358_647,Ashtown Stn,2162,0,4358_7778195_5120012,4358_20 -4358_80689,205,4358_6470,Clare Hall,1276,1,4358_7778195_3027012,4358_190 -4358_80689,96,4358_6471,Clare Hall,12336,1,4358_7778195_6027108,4358_191 -4358_80689,205,4358_6473,Clare Hall,1178,1,4358_7778195_3027015,4358_191 -4358_80689,96,4358_6474,Clare Hall,12263,1,4358_7778195_6027103,4358_194 -4358_80689,96,4358_6475,Clare Hall,12285,1,4358_7778195_6027109,4358_190 -4358_80689,205,4358_6476,Clare Hall,1234,1,4358_7778195_3027016,4358_191 -4358_80689,96,4358_6478,Clare Hall,8814,1,4358_7778195_3027009,4358_190 -4358_80689,205,4358_6479,Clare Hall,1154,1,4358_7778195_3027003,4358_191 -4358_80754,96,4358_648,Ashtown Stn,9874,0,4358_7778195_5120003,4358_20 -4358_80689,205,4358_6480,Clare Hall,1257,1,4358_7778195_3027017,4358_190 -4358_80689,96,4358_6482,Clare Hall,12300,1,4358_7778195_6027110,4358_194 -4358_80689,96,4358_6483,Clare Hall,12344,1,4358_7778195_6027111,4358_190 -4358_80689,205,4358_6484,Clare Hall,5549,1,4358_7778195_6027101,4358_191 -4358_80689,96,4358_6486,Clare Hall,12323,1,4358_7778195_6027112,4358_190 -4358_80689,205,4358_6487,Clare Hall,5563,1,4358_7778195_6027102,4358_191 -4358_80689,205,4358_6488,Clare Hall,5525,1,4358_7778195_6027103,4358_190 -4358_80689,96,4358_6490,Clare Hall,8922,1,4358_7778195_3027021,4358_194 -4358_80689,96,4358_6491,Clare Hall,8832,1,4358_7778195_3027001,4358_190 -4358_80689,205,4358_6492,Clare Hall,6557,1,4358_7778195_6027105,4358_191 -4358_80689,96,4358_6494,Clare Hall,8777,1,4358_7778195_3027002,4358_190 -4358_80689,205,4358_6495,Clare Hall,5504,1,4358_7778195_6027106,4358_191 -4358_80689,96,4358_6497,Clare Hall,8791,1,4358_7778195_3027022,4358_191 -4358_80689,205,4358_6498,Clare Hall,1327,1,4358_7778195_3027026,4358_194 -4358_80689,96,4358_6499,Clare Hall,8928,1,4358_7778195_3027013,4358_190 -4358_80754,205,4358_650,Ashtown Stn,2129,0,4358_7778195_5120011,4358_20 -4358_80689,205,4358_6500,Clare Hall,1334,1,4358_7778195_3027028,4358_191 -4358_80689,205,4358_6502,Clare Hall,5484,1,4358_7778195_6027108,4358_190 -4358_80689,96,4358_6503,Clare Hall,8933,1,4358_7778195_3027014,4358_191 -4358_80689,205,4358_6504,Clare Hall,5599,1,4358_7778195_6027109,4358_190 -4358_80689,96,4358_6505,Clare Hall,8917,1,4358_7778195_3027004,4358_191 -4358_80689,96,4358_6507,Clare Hall,8898,1,4358_7778195_3027015,4358_190 -4358_80689,205,4358_6508,Clare Hall,5589,1,4358_7778195_6027110,4358_191 -4358_80689,205,4358_6510,Clare Hall,5643,1,4358_7778195_6027104,4358_190 -4358_80689,96,4358_6511,Clare Hall,12408,1,4358_7778195_6027104,4358_191 -4358_80689,96,4358_6512,Clare Hall,12328,1,4358_7778195_6027113,4358_190 -4358_80689,205,4358_6513,Clare Hall,5605,1,4358_7778195_6027111,4358_191 -4358_80689,205,4358_6515,Clare Hall,5532,1,4358_7778195_6027112,4358_190 -4358_80689,96,4358_6516,Clare Hall,8768,1,4358_7778195_3027018,4358_191 -4358_80689,205,4358_6518,Clare Hall,5611,1,4358_7778195_6027113,4358_190 -4358_80689,96,4358_6519,Clare Hall,8751,1,4358_7778195_3027019,4358_191 -4358_80754,96,4358_652,Ashtown Stn,9824,0,4358_7778195_5120002,4358_22 -4358_80689,205,4358_6520,Clare Hall,1242,1,4358_7778195_3027002,4358_190 -4358_80689,96,4358_6521,Clare Hall,12307,1,4358_7778195_6027105,4358_191 -4358_80689,96,4358_6523,Clare Hall,8888,1,4358_7778195_3027020,4358_190 -4358_80689,205,4358_6524,Clare Hall,1284,1,4358_7778195_3027004,4358_191 -4358_80689,96,4358_6526,Clare Hall,12272,1,4358_7778195_6027102,4358_190 -4358_80689,205,4358_6527,Clare Hall,1195,1,4358_7778195_3027006,4358_191 -4358_80689,96,4358_6529,Clare Hall,12282,1,4358_7778195_6027106,4358_191 -4358_80754,205,4358_653,Ashtown Stn,2164,0,4358_7778195_5120012,4358_20 -4358_80689,205,4358_6530,Clare Hall,1291,1,4358_7778195_3027007,4358_194 -4358_80689,96,4358_6531,Clare Hall,12255,1,4358_7778195_6027107,4358_190 -4358_80689,205,4358_6532,Clare Hall,1252,1,4358_7778195_3027008,4358_191 -4358_80689,205,4358_6534,Clare Hall,1341,1,4358_7778195_3027031,4358_190 -4358_80689,96,4358_6535,Clare Hall,12338,1,4358_7778195_6027108,4358_191 -4358_80689,96,4358_6537,Clare Hall,12265,1,4358_7778195_6027103,4358_191 -4358_80689,205,4358_6538,Clare Hall,1265,1,4358_7778195_3027011,4358_194 -4358_80689,96,4358_6539,Clare Hall,12287,1,4358_7778195_6027109,4358_190 -4358_80754,96,4358_654,Ashtown Stn,9876,0,4358_7778195_5120003,4358_20 -4358_80689,205,4358_6540,Clare Hall,1278,1,4358_7778195_3027012,4358_191 -4358_80689,96,4358_6542,Clare Hall,8920,1,4358_7778195_3027025,4358_190 -4358_80689,205,4358_6543,Clare Hall,1180,1,4358_7778195_3027015,4358_191 -4358_80689,96,4358_6544,Clare Hall,8816,1,4358_7778195_3027009,4358_190 -4358_80689,205,4358_6545,Clare Hall,1236,1,4358_7778195_3027016,4358_191 -4358_80689,205,4358_6547,Clare Hall,1156,1,4358_7778195_3027003,4358_190 -4358_80689,96,4358_6548,Clare Hall,12302,1,4358_7778195_6027110,4358_191 -4358_80689,205,4358_6550,Clare Hall,1259,1,4358_7778195_3027017,4358_190 -4358_80689,96,4358_6551,Clare Hall,12346,1,4358_7778195_6027111,4358_191 -4358_80689,96,4358_6552,Clare Hall,12325,1,4358_7778195_6027112,4358_190 -4358_80689,205,4358_6554,Clare Hall,5551,1,4358_7778195_6027101,4358_194 -4358_80689,96,4358_6555,Clare Hall,8924,1,4358_7778195_3027021,4358_190 -4358_80689,205,4358_6556,Clare Hall,1294,1,4358_7778195_3027036,4358_191 -4358_80689,96,4358_6558,Clare Hall,8834,1,4358_7778195_3027001,4358_190 -4358_80689,205,4358_6559,Clare Hall,5565,1,4358_7778195_6027102,4358_191 -4358_80754,205,4358_656,Ashtown Stn,2131,0,4358_7778195_5120011,4358_20 -4358_80689,96,4358_6561,Clare Hall,8779,1,4358_7778195_3027002,4358_191 -4358_80689,205,4358_6562,Clare Hall,5527,1,4358_7778195_6027103,4358_194 -4358_80689,96,4358_6563,Clare Hall,8793,1,4358_7778195_3027022,4358_190 -4358_80689,205,4358_6564,Clare Hall,6559,1,4358_7778195_6027105,4358_191 -4358_80689,205,4358_6566,Clare Hall,5506,1,4358_7778195_6027106,4358_190 -4358_80689,96,4358_6567,Clare Hall,8930,1,4358_7778195_3027013,4358_191 -4358_80689,96,4358_6568,Clare Hall,8935,1,4358_7778195_3027014,4358_190 -4358_80689,205,4358_6570,Clare Hall,1329,1,4358_7778195_3027026,4358_194 -4358_80689,96,4358_6571,Clare Hall,12332,1,4358_7778195_6027114,4358_190 -4358_80689,205,4358_6572,Clare Hall,1336,1,4358_7778195_3027028,4358_191 -4358_80689,96,4358_6574,Clare Hall,8919,1,4358_7778195_3027004,4358_190 -4358_80689,205,4358_6575,Clare Hall,5486,1,4358_7778195_6027108,4358_191 -4358_80689,96,4358_6576,Clare Hall,8900,1,4358_7778195_3027015,4358_190 -4358_80689,205,4358_6577,Clare Hall,5601,1,4358_7778195_6027109,4358_191 -4358_80689,205,4358_6579,Clare Hall,5591,1,4358_7778195_6027110,4358_190 -4358_80754,96,4358_658,Ashtown Stn,9826,0,4358_7778195_5120002,4358_22 -4358_80689,96,4358_6580,Clare Hall,12410,1,4358_7778195_6027104,4358_191 -4358_80689,205,4358_6582,Clare Hall,5645,1,4358_7778195_6027104,4358_190 -4358_80689,96,4358_6583,Clare Hall,12330,1,4358_7778195_6027113,4358_191 -4358_80689,96,4358_6584,Clare Hall,8770,1,4358_7778195_3027018,4358_190 -4358_80689,205,4358_6586,Clare Hall,5607,1,4358_7778195_6027111,4358_194 -4358_80689,205,4358_6587,Clare Hall,5534,1,4358_7778195_6027112,4358_190 -4358_80689,96,4358_6588,Clare Hall,8753,1,4358_7778195_3027019,4358_191 -4358_80754,96,4358_659,Ashtown Stn,9878,0,4358_7778195_5120003,4358_20 -4358_80689,96,4358_6590,Clare Hall,12309,1,4358_7778195_6027105,4358_190 -4358_80689,205,4358_6591,Clare Hall,5613,1,4358_7778195_6027113,4358_191 -4358_80689,96,4358_6592,Clare Hall,8890,1,4358_7778195_3027020,4358_190 -4358_80689,205,4358_6594,Clare Hall,1244,1,4358_7778195_3027002,4358_194 -4358_80689,205,4358_6595,Clare Hall,1286,1,4358_7778195_3027004,4358_190 -4358_80689,96,4358_6597,Clare Hall,12257,1,4358_7778195_6027107,4358_191 -4358_80689,205,4358_6598,Clare Hall,1197,1,4358_7778195_3027006,4358_194 -4358_80689,205,4358_6599,Clare Hall,5617,1,4358_7778195_6027114,4358_190 -4358_80760,205,4358_66,Shaw street,1821,0,4358_7778195_9001001,4358_2 -4358_80754,205,4358_660,Ashtown Stn,2166,0,4358_7778195_5120012,4358_22 -4358_80689,96,4358_6600,Clare Hall,12340,1,4358_7778195_6027108,4358_190 -4358_80689,205,4358_6602,Clare Hall,1267,1,4358_7778195_3027011,4358_190 -4358_80689,96,4358_6603,Clare Hall,12289,1,4358_7778195_6027109,4358_190 -4358_80689,205,4358_6605,Clare Hall,1182,1,4358_7778195_3027015,4358_190 -4358_80689,96,4358_6606,Clare Hall,8818,1,4358_7778195_3027009,4358_190 -4358_80689,205,4358_6608,Clare Hall,1158,1,4358_7778195_3027003,4358_190 -4358_80689,96,4358_6610,Clare Hall,12348,1,4358_7778195_6027111,4358_191 -4358_80689,205,4358_6611,Clare Hall,5553,1,4358_7778195_6027101,4358_190 -4358_80689,96,4358_6613,Clare Hall,8836,1,4358_7778195_3027001,4358_191 -4358_80689,205,4358_6614,Clare Hall,1296,1,4358_7778195_3027036,4358_190 -4358_80689,96,4358_6616,Clare Hall,8795,1,4358_7778195_3027022,4358_191 -4358_80689,205,4358_6617,Clare Hall,6561,1,4358_7778195_6027105,4358_190 -4358_80689,96,4358_6619,Clare Hall,8937,1,4358_7778195_3027014,4358_191 -4358_80754,205,4358_662,Parnell St,2180,1,4358_7778195_5120001,4358_24 -4358_80689,205,4358_6620,Clare Hall,5593,1,4358_7778195_6027110,4358_190 -4358_80689,96,4358_6622,Clare Hall,12334,1,4358_7778195_6027114,4358_191 -4358_80689,205,4358_6623,Clare Hall,5647,1,4358_7778195_6027104,4358_190 -4358_80689,96,4358_6625,Clare Hall,8772,1,4358_7778195_3027018,4358_191 -4358_80689,205,4358_6626,Clare Hall,5615,1,4358_7778195_6027113,4358_190 -4358_80689,96,4358_6628,Clare Hall,8892,1,4358_7778195_3027020,4358_191 -4358_80689,205,4358_6629,Eden Quay,1246,1,4358_7778195_3027002,4358_192 -4358_80754,205,4358_663,Parnell St,2167,1,4358_7778195_5120002,4358_24 -4358_80689,96,4358_6630,Eden Quay,12259,1,4358_7778195_6027107,4358_192 -4358_80689,205,4358_6632,Eden Quay,5619,1,4358_7778195_6027114,4358_192 -4358_80689,96,4358_6634,Eden Quay,12342,1,4358_7778195_6027108,4358_196 -4358_80689,205,4358_6635,Eden Quay,6669,1,4358_7778195_3027040,4358_197 -4358_80732,96,4358_6636,Blunden Drive,12372,0,4358_7778195_6053001,4358_198 -4358_80732,205,4358_6637,Blunden Drive,1,0,4358_7778195_6826101,4358_198 -4358_80732,205,4358_6638,Blunden Drive,5630,0,4358_7778195_6053001,4358_198 -4358_80732,96,4358_6639,Blunden Drive,12374,0,4358_7778195_6053001,4358_198 -4358_80754,205,4358_664,Parnell St,2136,1,4358_7778195_5120003,4358_24 -4358_80732,205,4358_6640,Blunden Drive,5508,0,4358_7778195_6053002,4358_198 -4358_80732,205,4358_6641,Blunden Drive,5568,0,4358_7778195_6053003,4358_198 -4358_80732,96,4358_6642,Blunden Drive,12291,0,4358_7778195_6053002,4358_198 -4358_80732,205,4358_6644,Blunden Drive,5632,0,4358_7778195_6053001,4358_198 -4358_80732,96,4358_6645,Blunden Drive,12376,0,4358_7778195_6053001,4358_198 -4358_80732,205,4358_6646,Blunden Drive,5510,0,4358_7778195_6053002,4358_198 -4358_80732,96,4358_6647,Blunden Drive,12293,0,4358_7778195_6053002,4358_198 -4358_80732,205,4358_6649,Blunden Drive,5570,0,4358_7778195_6053003,4358_198 -4358_80754,96,4358_665,Parnell St,9782,1,4358_7778195_5120001,4358_25 -4358_80732,205,4358_6650,Blunden Drive,5634,0,4358_7778195_6053001,4358_198 -4358_80732,96,4358_6651,Blunden Drive,12378,0,4358_7778195_6053001,4358_198 -4358_80732,205,4358_6653,Blunden Drive,5512,0,4358_7778195_6053002,4358_198 -4358_80732,96,4358_6654,Blunden Drive,12394,0,4358_7778195_6053003,4358_199 -4358_80732,96,4358_6656,Blunden Drive,12295,0,4358_7778195_6053002,4358_198 -4358_80732,205,4358_6657,Blunden Drive,5572,0,4358_7778195_6053003,4358_198 -4358_80732,96,4358_6658,Blunden Drive,12357,0,4358_7778195_6053004,4358_198 -4358_80754,205,4358_666,Parnell St,2220,1,4358_7778195_5120004,4358_24 -4358_80732,205,4358_6660,Blunden Drive,5636,0,4358_7778195_6053001,4358_198 -4358_80732,96,4358_6661,Blunden Drive,12380,0,4358_7778195_6053001,4358_198 -4358_80732,205,4358_6662,Blunden Drive,5514,0,4358_7778195_6053002,4358_198 -4358_80732,96,4358_6664,Blunden Drive,12396,0,4358_7778195_6053003,4358_198 -4358_80732,205,4358_6665,Blunden Drive,5574,0,4358_7778195_6053003,4358_198 -4358_80732,96,4358_6667,Blunden Drive,12297,0,4358_7778195_6053002,4358_199 -4358_80732,205,4358_6668,Blunden Drive,5638,0,4358_7778195_6053001,4358_198 -4358_80732,96,4358_6669,Blunden Drive,12359,0,4358_7778195_6053004,4358_198 -4358_80754,205,4358_667,Parnell St,2207,1,4358_7778195_5120006,4358_24 -4358_80732,96,4358_6671,Blunden Drive,12382,0,4358_7778195_6053001,4358_198 -4358_80732,205,4358_6672,Blunden Drive,5516,0,4358_7778195_6053002,4358_199 -4358_80732,96,4358_6674,Blunden Drive,12398,0,4358_7778195_6053003,4358_199 -4358_80732,205,4358_6675,Blunden Drive,5576,0,4358_7778195_6053003,4358_198 -4358_80732,96,4358_6676,Blunden Drive,12361,0,4358_7778195_6053004,4358_198 -4358_80732,205,4358_6677,Blunden Drive,5620,0,4358_7778195_6053004,4358_198 -4358_80732,96,4358_6679,Blunden Drive,12384,0,4358_7778195_6053001,4358_198 -4358_80754,96,4358_668,Parnell St,9803,1,4358_7778195_5120002,4358_25 -4358_80732,205,4358_6680,Blunden Drive,5518,0,4358_7778195_6053002,4358_198 -4358_80732,96,4358_6682,Blunden Drive,12400,0,4358_7778195_6053003,4358_199 -4358_80732,205,4358_6683,Blunden Drive,5578,0,4358_7778195_6053003,4358_198 -4358_80732,96,4358_6684,Blunden Drive,12363,0,4358_7778195_6053004,4358_198 -4358_80732,205,4358_6686,Blunden Drive,5622,0,4358_7778195_6053004,4358_198 -4358_80732,96,4358_6687,Blunden Drive,12386,0,4358_7778195_6053001,4358_198 -4358_80732,205,4358_6689,Blunden Drive,5520,0,4358_7778195_6053002,4358_199 -4358_80754,205,4358_669,Ballsbridge,2101,1,4358_7778195_5120005,4358_26 -4358_80732,96,4358_6690,Blunden Drive,12402,0,4358_7778195_6053003,4358_200 -4358_80732,96,4358_6691,Blunden Drive,12365,0,4358_7778195_6053004,4358_198 -4358_80732,205,4358_6692,Blunden Drive,5580,0,4358_7778195_6053003,4358_198 -4358_80732,96,4358_6694,Blunden Drive,12388,0,4358_7778195_6053001,4358_198 -4358_80732,205,4358_6696,Blunden Drive,5624,0,4358_7778195_6053004,4358_199 -4358_80732,96,4358_6697,Blunden Drive,12367,0,4358_7778195_6053004,4358_198 -4358_80732,205,4358_6699,Blunden Drive,5582,0,4358_7778195_6053003,4358_198 -4358_80760,96,4358_67,Shaw street,9494,0,4358_7778195_9001004,4358_1 -4358_80754,205,4358_670,Parnell St,2102,1,4358_7778195_5120007,4358_24 -4358_80732,96,4358_6700,Blunden Drive,12390,0,4358_7778195_6053001,4358_198 -4358_80732,205,4358_6702,Blunden Drive,5626,0,4358_7778195_6053004,4358_198 -4358_80732,205,4358_6703,Blunden Drive,5584,0,4358_7778195_6053003,4358_198 -4358_80732,96,4358_6704,Blunden Drive,12369,0,4358_7778195_6053004,4358_199 -4358_80732,205,4358_6706,Blunden Drive,5628,0,4358_7778195_6053004,4358_198 -4358_80732,96,4358_6707,Blunden Drive,12392,0,4358_7778195_6053001,4358_198 -4358_80732,205,4358_6709,Eden Quay,6,1,4358_7778195_6053101,4358_202 -4358_80754,205,4358_671,Ballsbridge,2182,1,4358_7778195_5120001,4358_26 -4358_80732,96,4358_6710,Eden Quay,12371,1,4358_7778195_6053001,4358_204 -4358_80732,205,4358_6711,Eden Quay,5629,1,4358_7778195_6053001,4358_201 -4358_80732,96,4358_6712,Eden Quay,12373,1,4358_7778195_6053001,4358_201 -4358_80732,205,4358_6713,Eden Quay,5507,1,4358_7778195_6053002,4358_203 -4358_80732,205,4358_6714,Eden Quay,5567,1,4358_7778195_6053003,4358_201 -4358_80732,96,4358_6715,Eden Quay,12290,1,4358_7778195_6053002,4358_201 -4358_80732,205,4358_6716,Eden Quay,5631,1,4358_7778195_6053001,4358_201 -4358_80732,96,4358_6718,Eden Quay,12375,1,4358_7778195_6053001,4358_201 -4358_80732,205,4358_6719,Eden Quay,5509,1,4358_7778195_6053002,4358_201 -4358_80754,96,4358_672,Parnell St,9855,1,4358_7778195_5120003,4358_24 -4358_80732,205,4358_6720,Eden Quay,5569,1,4358_7778195_6053003,4358_201 -4358_80732,96,4358_6721,Eden Quay,12292,1,4358_7778195_6053002,4358_201 -4358_80732,205,4358_6723,Eden Quay,5633,1,4358_7778195_6053001,4358_201 -4358_80732,96,4358_6724,Eden Quay,12377,1,4358_7778195_6053001,4358_201 -4358_80732,205,4358_6726,Eden Quay,5511,1,4358_7778195_6053002,4358_201 -4358_80732,96,4358_6727,Eden Quay,12393,1,4358_7778195_6053003,4358_201 -4358_80732,205,4358_6729,Eden Quay,5571,1,4358_7778195_6053003,4358_201 -4358_80754,205,4358_673,Ballsbridge,2169,1,4358_7778195_5120002,4358_26 -4358_80732,96,4358_6730,Eden Quay,12294,1,4358_7778195_6053002,4358_203 -4358_80732,96,4358_6731,Eden Quay,12379,1,4358_7778195_6053001,4358_201 -4358_80732,205,4358_6733,Eden Quay,5635,1,4358_7778195_6053001,4358_201 -4358_80732,96,4358_6734,Eden Quay,12395,1,4358_7778195_6053003,4358_201 -4358_80732,205,4358_6735,Eden Quay,5513,1,4358_7778195_6053002,4358_201 -4358_80732,96,4358_6737,Eden Quay,12296,1,4358_7778195_6053002,4358_201 -4358_80732,205,4358_6738,Eden Quay,5573,1,4358_7778195_6053003,4358_201 -4358_80732,96,4358_6739,Eden Quay,12358,1,4358_7778195_6053004,4358_201 -4358_80754,205,4358_674,Parnell St,2138,1,4358_7778195_5120003,4358_24 -4358_80732,205,4358_6741,Eden Quay,5637,1,4358_7778195_6053001,4358_201 -4358_80732,96,4358_6742,Eden Quay,12381,1,4358_7778195_6053001,4358_201 -4358_80732,205,4358_6744,Eden Quay,5515,1,4358_7778195_6053002,4358_201 -4358_80732,96,4358_6745,Eden Quay,12397,1,4358_7778195_6053003,4358_201 -4358_80732,205,4358_6746,Eden Quay,5575,1,4358_7778195_6053003,4358_201 -4358_80732,96,4358_6748,Eden Quay,12298,1,4358_7778195_6053002,4358_205 -4358_80732,96,4358_6749,Eden Quay,12360,1,4358_7778195_6053004,4358_201 -4358_80754,96,4358_675,Parnell St,9784,1,4358_7778195_5120001,4358_25 -4358_80732,205,4358_6750,Eden Quay,4,1,4358_7778195_6816204,4358_201 -4358_80732,96,4358_6752,Eden Quay,12383,1,4358_7778195_6053001,4358_201 -4358_80732,205,4358_6753,Eden Quay,5517,1,4358_7778195_6053002,4358_201 -4358_80732,96,4358_6755,Eden Quay,12399,1,4358_7778195_6053003,4358_203 -4358_80732,205,4358_6756,Eden Quay,5577,1,4358_7778195_6053003,4358_201 -4358_80732,96,4358_6757,Eden Quay,12362,1,4358_7778195_6053004,4358_201 -4358_80732,205,4358_6759,Eden Quay,5621,1,4358_7778195_6053004,4358_201 -4358_80754,205,4358_676,Parnell St,2222,1,4358_7778195_5120004,4358_24 -4358_80732,96,4358_6760,Eden Quay,12385,1,4358_7778195_6053001,4358_201 -4358_80732,205,4358_6761,Eden Quay,5519,1,4358_7778195_6053002,4358_201 -4358_80732,96,4358_6763,Eden Quay,12401,1,4358_7778195_6053003,4358_203 -4358_80732,205,4358_6764,Eden Quay,5579,1,4358_7778195_6053003,4358_201 -4358_80732,96,4358_6765,Eden Quay,12364,1,4358_7778195_6053004,4358_203 -4358_80732,205,4358_6767,Eden Quay,5623,1,4358_7778195_6053004,4358_201 -4358_80732,96,4358_6768,Eden Quay,12387,1,4358_7778195_6053001,4358_201 -4358_80754,205,4358_677,Parnell St,2209,1,4358_7778195_5120006,4358_24 -4358_80732,205,4358_6770,Eden Quay,5521,1,4358_7778195_6053002,4358_201 -4358_80732,96,4358_6771,Eden Quay,12366,1,4358_7778195_6053004,4358_201 -4358_80732,205,4358_6772,Eden Quay,5581,1,4358_7778195_6053003,4358_201 -4358_80732,96,4358_6774,Eden Quay,12389,1,4358_7778195_6053001,4358_201 -4358_80732,205,4358_6776,Eden Quay,5625,1,4358_7778195_6053004,4358_205 -4358_80732,205,4358_6777,Eden Quay,5583,1,4358_7778195_6053003,4358_201 -4358_80732,96,4358_6778,Eden Quay,12368,1,4358_7778195_6053004,4358_203 -4358_80754,96,4358_678,Parnell St,9805,1,4358_7778195_5120002,4358_25 -4358_80732,96,4358_6780,Eden Quay,12391,1,4358_7778195_6053001,4358_201 -4358_80732,205,4358_6782,Eden Quay,5627,1,4358_7778195_6053004,4358_205 -4358_80732,205,4358_6783,Eden Quay,5585,1,4358_7778195_6053003,4358_201 -4358_80732,96,4358_6784,Eden Quay,12370,1,4358_7778195_6053004,4358_201 -4358_80792,205,4358_6786,Harristown,7699,0,4358_7778195_8727001,4358_207 -4358_80792,205,4358_6787,Harristown,7678,0,4358_7778195_8727002,4358_206 -4358_80792,205,4358_6788,Castletimon,7941,0,4358_7778195_8727003,4358_208 -4358_80792,96,4358_6789,Harristown,14187,0,4358_7778195_8727002,4358_206 -4358_80754,96,4358_679,Parnell St,9857,1,4358_7778195_5120003,4358_24 -4358_80792,96,4358_6790,Harristown,14180,0,4358_7778195_8727001,4358_206 -4358_80792,205,4358_6791,Coolock Lane,7550,0,4358_7778195_8727004,4358_209 -4358_80792,96,4358_6792,Harristown,14131,0,4358_7778195_8727004,4358_206 -4358_80792,205,4358_6793,Coolock Lane,7635,0,4358_7778195_8727005,4358_209 -4358_80792,96,4358_6794,Harristown,14200,0,4358_7778195_8727003,4358_206 -4358_80792,205,4358_6795,Castletimon,7563,0,4358_7778195_8727006,4358_208 -4358_80792,96,4358_6796,Harristown,14211,0,4358_7778195_8727005,4358_206 -4358_80792,205,4358_6797,Coolock Lane,7892,0,4358_7778195_8727007,4358_211 -4358_80792,96,4358_6798,Harristown,14156,0,4358_7778195_8727006,4358_206 -4358_80792,205,4358_6799,Coolock Lane,7897,0,4358_7778195_8727008,4358_211 -4358_80760,205,4358_68,Shaw street,1658,0,4358_7778195_9001003,4358_1 -4358_80754,205,4358_680,Parnell St,2104,1,4358_7778195_5120007,4358_25 -4358_80792,96,4358_6800,Harristown,14189,0,4358_7778195_8727002,4358_206 -4358_80792,205,4358_6801,Harristown,7943,0,4358_7778195_8727003,4358_206 -4358_80792,96,4358_6802,Harristown,14182,0,4358_7778195_8727001,4358_206 -4358_80792,205,4358_6803,Harristown,7720,0,4358_7778195_8727009,4358_210 -4358_80792,96,4358_6804,Harristown,14133,0,4358_7778195_8727004,4358_206 -4358_80792,205,4358_6805,Harristown,7680,0,4358_7778195_8727002,4358_210 -4358_80792,205,4358_6807,Harristown,7552,0,4358_7778195_8727004,4358_206 -4358_80792,96,4358_6808,Harristown,14202,0,4358_7778195_8727003,4358_206 -4358_80792,205,4358_6809,Harristown,7637,0,4358_7778195_8727005,4358_206 -4358_80754,205,4358_681,Parnell St,2140,1,4358_7778195_5120003,4358_24 -4358_80792,205,4358_6810,Harristown,7565,0,4358_7778195_8727006,4358_206 -4358_80792,96,4358_6811,Harristown,14214,0,4358_7778195_8727007,4358_210 -4358_80792,96,4358_6813,Harristown,14213,0,4358_7778195_8727005,4358_206 -4358_80792,96,4358_6814,Harristown,14158,0,4358_7778195_8727006,4358_206 -4358_80792,205,4358_6815,Harristown,7894,0,4358_7778195_8727007,4358_210 -4358_80792,205,4358_6816,Harristown,7899,0,4358_7778195_8727008,4358_206 -4358_80792,96,4358_6817,Harristown,14191,0,4358_7778195_8727002,4358_206 -4358_80792,205,4358_6819,Harristown,7601,0,4358_7778195_8727010,4358_206 -4358_80792,96,4358_6820,Harristown,14184,0,4358_7778195_8727001,4358_206 -4358_80792,205,4358_6821,Harristown,7722,0,4358_7778195_8727009,4358_206 -4358_80792,96,4358_6822,Harristown,14135,0,4358_7778195_8727004,4358_206 -4358_80792,205,4358_6823,Harristown,7682,0,4358_7778195_8727002,4358_206 -4358_80792,96,4358_6824,Harristown,14204,0,4358_7778195_8727003,4358_206 -4358_80792,205,4358_6826,Harristown,7733,0,4358_7778195_8727011,4358_206 -4358_80792,96,4358_6828,Harristown,14216,0,4358_7778195_8727007,4358_206 -4358_80792,205,4358_6829,Harristown,7639,0,4358_7778195_8727005,4358_206 -4358_80754,96,4358_683,Parnell St,9786,1,4358_7778195_5120001,4358_27 -4358_80792,96,4358_6830,Harristown,14160,0,4358_7778195_8727006,4358_206 -4358_80792,205,4358_6832,Harristown,7901,0,4358_7778195_8727008,4358_206 -4358_80792,96,4358_6833,Harristown,14193,0,4358_7778195_8727002,4358_206 -4358_80792,205,4358_6834,Harristown,7603,0,4358_7778195_8727010,4358_206 -4358_80792,96,4358_6836,Harristown,14186,0,4358_7778195_8727001,4358_206 -4358_80792,205,4358_6837,Harristown,7684,0,4358_7778195_8727002,4358_206 -4358_80792,96,4358_6838,Harristown,14137,0,4358_7778195_8727004,4358_206 -4358_80792,205,4358_6841,Harristown,7659,0,4358_7778195_8727013,4358_206 -4358_80792,96,4358_6842,Harristown,14206,0,4358_7778195_8727003,4358_210 -4358_80792,96,4358_6843,Harristown,14222,0,4358_7778195_8727008,4358_206 -4358_80792,205,4358_6844,Harristown,7625,0,4358_7778195_8727012,4358_206 -4358_80792,96,4358_6846,Harristown,14218,0,4358_7778195_8727007,4358_210 -4358_80792,205,4358_6847,Harristown,7735,0,4358_7778195_8727011,4358_206 -4358_80792,96,4358_6848,Harristown,14162,0,4358_7778195_8727006,4358_206 -4358_80792,205,4358_6849,Harristown,7641,0,4358_7778195_8727005,4358_206 -4358_80754,205,4358_685,Parnell St,2211,1,4358_7778195_5120006,4358_25 -4358_80792,96,4358_6851,Harristown,14195,0,4358_7778195_8727002,4358_206 -4358_80792,205,4358_6852,Harristown,7903,0,4358_7778195_8727008,4358_206 -4358_80792,96,4358_6853,Harristown,14238,0,4358_7778195_8727009,4358_206 -4358_80792,205,4358_6855,Harristown,7686,0,4358_7778195_8727002,4358_206 -4358_80792,96,4358_6856,Harristown,14139,0,4358_7778195_8727004,4358_206 -4358_80792,205,4358_6857,Harristown,7661,0,4358_7778195_8727013,4358_206 -4358_80792,96,4358_6859,Harristown,14208,0,4358_7778195_8727003,4358_206 -4358_80754,96,4358_686,Parnell St,9807,1,4358_7778195_5120002,4358_27 -4358_80792,205,4358_6861,Harristown,7627,0,4358_7778195_8727012,4358_206 -4358_80792,96,4358_6862,Harristown,14224,0,4358_7778195_8727008,4358_210 -4358_80792,205,4358_6864,Harristown,7737,0,4358_7778195_8727011,4358_206 -4358_80792,96,4358_6865,Harristown,14220,0,4358_7778195_8727007,4358_210 -4358_80792,96,4358_6866,Harristown,14164,0,4358_7778195_8727006,4358_206 -4358_80792,205,4358_6868,Harristown,7643,0,4358_7778195_8727005,4358_206 -4358_80792,205,4358_6869,Harristown,7652,0,4358_7778195_8727015,4358_206 -4358_80754,96,4358_687,Parnell St,9859,1,4358_7778195_5120003,4358_24 -4358_80792,96,4358_6870,Harristown,14197,0,4358_7778195_8727002,4358_210 -4358_80792,205,4358_6871,Harristown,7905,0,4358_7778195_8727008,4358_206 -4358_80792,96,4358_6872,Harristown,14240,0,4358_7778195_8727009,4358_210 -4358_80792,205,4358_6874,Harristown,7730,0,4358_7778195_8727014,4358_206 -4358_80792,96,4358_6875,Harristown,14141,0,4358_7778195_8727004,4358_206 -4358_80792,205,4358_6877,Harristown,7582,0,4358_7778195_8727016,4358_210 -4358_80792,96,4358_6878,Harristown,14252,0,4358_7778195_8727010,4358_206 -4358_80792,205,4358_6879,Harristown,7688,0,4358_7778195_8727002,4358_206 -4358_80792,205,4358_6881,Harristown,7663,0,4358_7778195_8727013,4358_206 -4358_80792,96,4358_6882,Harristown,14226,0,4358_7778195_8727008,4358_210 -4358_80792,96,4358_6884,Harristown,14166,0,4358_7778195_8727006,4358_206 -4358_80792,205,4358_6885,Harristown,7677,0,4358_7778195_8727017,4358_210 -4358_80792,205,4358_6886,Harristown,7629,0,4358_7778195_8727012,4358_206 -4358_80792,96,4358_6888,Harristown,14254,0,4358_7778195_8727011,4358_206 -4358_80792,205,4358_6889,Harristown,7654,0,4358_7778195_8727015,4358_206 -4358_80754,205,4358_689,Parnell St,2106,1,4358_7778195_5120007,4358_27 -4358_80792,96,4358_6890,Harristown,14242,0,4358_7778195_8727009,4358_206 -4358_80792,205,4358_6892,Harristown,7732,0,4358_7778195_8727014,4358_206 -4358_80792,96,4358_6893,Harristown,14143,0,4358_7778195_8727004,4358_206 -4358_80792,205,4358_6894,Harristown,7584,0,4358_7778195_8727016,4358_206 -4358_80792,96,4358_6896,Harristown,14168,0,4358_7778195_8727006,4358_206 -4358_80792,205,4358_6897,Harristown,7665,0,4358_7778195_8727013,4358_206 -4358_80792,96,4358_6899,Harristown,14256,0,4358_7778195_8727011,4358_206 -4358_80754,205,4358_690,Parnell St,2142,1,4358_7778195_5120003,4358_24 -4358_80792,205,4358_6900,Harristown,7631,0,4358_7778195_8727012,4358_206 -4358_80792,96,4358_6902,Harristown,14261,0,4358_7778195_8727012,4358_206 -4358_80792,96,4358_6903,Harristown,14275,0,4358_7778195_8727013,4358_206 -4358_80792,205,4358_6905,Harristown,7656,0,4358_7778195_8727015,4358_213 -4358_80792,205,4358_6906,Harristown,7586,0,4358_7778195_8727016,4358_206 -4358_80792,96,4358_6907,Harristown,14170,0,4358_7778195_8727006,4358_206 -4358_80792,205,4358_6909,Harristown,7667,0,4358_7778195_8727013,4358_206 -4358_80792,96,4358_6910,Harristown,14258,0,4358_7778195_8727011,4358_210 -4358_80792,96,4358_6912,Harristown,14263,0,4358_7778195_8727012,4358_207 -4358_80792,205,4358_6913,Harristown,7633,0,4358_7778195_8727012,4358_207 -4358_80792,96,4358_6915,Harristown,14277,0,4358_7778195_8727013,4358_207 -4358_80792,205,4358_6916,Harristown,7658,0,4358_7778195_8727015,4358_207 -4358_80792,205,4358_6918,Harristown,7588,0,4358_7778195_8727016,4358_207 -4358_80792,96,4358_6919,Harristown,14172,0,4358_7778195_8727006,4358_212 -4358_80754,96,4358_692,Parnell St,9788,1,4358_7778195_5120001,4358_27 -4358_80792,205,4358_6920,Eden Quay,7940,1,4358_7778195_8727003,4358_214 -4358_80792,205,4358_6921,Eden Quay,7549,1,4358_7778195_8727004,4358_214 -4358_80792,96,4358_6922,Eden Quay,14179,1,4358_7778195_8727001,4358_215 -4358_80792,205,4358_6923,Eden Quay,7634,1,4358_7778195_8727005,4358_214 -4358_80792,205,4358_6924,Eden Quay,7562,1,4358_7778195_8727006,4358_214 -4358_80792,205,4358_6925,Eden Quay,7891,1,4358_7778195_8727007,4358_214 -4358_80792,96,4358_6926,Eden Quay,14199,1,4358_7778195_8727003,4358_214 -4358_80792,205,4358_6927,Eden Quay,7896,1,4358_7778195_8727008,4358_214 -4358_80792,205,4358_6928,Eden Quay,7719,1,4358_7778195_8727009,4358_214 -4358_80792,96,4358_6929,Eden Quay,14210,1,4358_7778195_8727005,4358_214 -4358_80754,205,4358_693,Parnell St,2084,1,4358_7778195_5120008,4358_24 -4358_80792,205,4358_6930,Eden Quay,7942,1,4358_7778195_8727003,4358_218 -4358_80792,205,4358_6931,Eden Quay,7700,1,4358_7778195_8727001,4358_214 -4358_80792,96,4358_6932,Eden Quay,14155,1,4358_7778195_8727006,4358_215 -4358_80792,205,4358_6933,Eden Quay,7679,1,4358_7778195_8727002,4358_214 -4358_80792,96,4358_6934,Eden Quay,14188,1,4358_7778195_8727002,4358_214 -4358_80792,96,4358_6935,Eden Quay,14181,1,4358_7778195_8727001,4358_214 -4358_80792,205,4358_6936,Eden Quay,7551,1,4358_7778195_8727004,4358_217 -4358_80792,96,4358_6937,Eden Quay,14132,1,4358_7778195_8727004,4358_215 -4358_80792,205,4358_6939,Eden Quay,7564,1,4358_7778195_8727006,4358_216 -4358_80792,205,4358_6940,Eden Quay,7636,1,4358_7778195_8727005,4358_217 -4358_80792,96,4358_6941,Eden Quay,14201,1,4358_7778195_8727003,4358_215 -4358_80792,96,4358_6942,Eden Quay,14212,1,4358_7778195_8727005,4358_215 -4358_80792,205,4358_6944,Eden Quay,7893,1,4358_7778195_8727007,4358_217 -4358_80792,96,4358_6945,Eden Quay,14157,1,4358_7778195_8727006,4358_215 -4358_80792,205,4358_6946,Eden Quay,7898,1,4358_7778195_8727008,4358_217 -4358_80792,96,4358_6947,Eden Quay,14190,1,4358_7778195_8727002,4358_215 -4358_80792,205,4358_6948,Eden Quay,7600,1,4358_7778195_8727010,4358_215 -4358_80792,96,4358_6949,Eden Quay,14183,1,4358_7778195_8727001,4358_215 -4358_80754,96,4358_695,Parnell St,9809,1,4358_7778195_5120002,4358_27 -4358_80792,205,4358_6950,Eden Quay,7721,1,4358_7778195_8727009,4358_215 -4358_80792,96,4358_6952,Eden Quay,14134,1,4358_7778195_8727004,4358_215 -4358_80792,205,4358_6953,Eden Quay,7681,1,4358_7778195_8727002,4358_215 -4358_80792,96,4358_6954,Eden Quay,14203,1,4358_7778195_8727003,4358_215 -4358_80792,96,4358_6955,Eden Quay,14215,1,4358_7778195_8727007,4358_215 -4358_80792,205,4358_6957,Eden Quay,7638,1,4358_7778195_8727005,4358_215 -4358_80792,96,4358_6959,Eden Quay,14159,1,4358_7778195_8727006,4358_215 -4358_80792,205,4358_6960,Eden Quay,7895,1,4358_7778195_8727007,4358_215 -4358_80792,96,4358_6961,Eden Quay,14192,1,4358_7778195_8727002,4358_215 -4358_80792,205,4358_6962,Eden Quay,7900,1,4358_7778195_8727008,4358_215 -4358_80792,96,4358_6964,Eden Quay,14185,1,4358_7778195_8727001,4358_215 -4358_80792,205,4358_6965,Eden Quay,7602,1,4358_7778195_8727010,4358_215 -4358_80792,96,4358_6966,Eden Quay,14136,1,4358_7778195_8727004,4358_215 -4358_80792,205,4358_6968,Eden Quay,7683,1,4358_7778195_8727002,4358_215 -4358_80792,96,4358_6969,Eden Quay,14205,1,4358_7778195_8727003,4358_215 -4358_80754,96,4358_697,Parnell St,9861,1,4358_7778195_5120003,4358_25 -4358_80792,205,4358_6971,Eden Quay,7624,1,4358_7778195_8727012,4358_215 -4358_80792,96,4358_6972,Eden Quay,14221,1,4358_7778195_8727008,4358_215 -4358_80792,205,4358_6974,Eden Quay,7734,1,4358_7778195_8727011,4358_215 -4358_80792,96,4358_6975,Eden Quay,14217,1,4358_7778195_8727007,4358_219 -4358_80792,205,4358_6976,Eden Quay,7640,1,4358_7778195_8727005,4358_215 -4358_80792,96,4358_6977,Eden Quay,14161,1,4358_7778195_8727006,4358_219 -4358_80792,205,4358_6979,Eden Quay,7902,1,4358_7778195_8727008,4358_215 -4358_80754,205,4358_698,Parnell St,2108,1,4358_7778195_5120007,4358_27 -4358_80792,96,4358_6980,Eden Quay,14194,1,4358_7778195_8727002,4358_219 -4358_80792,96,4358_6982,Eden Quay,14237,1,4358_7778195_8727009,4358_215 -4358_80792,205,4358_6983,Eden Quay,7604,1,4358_7778195_8727010,4358_219 -4358_80792,96,4358_6984,Eden Quay,14138,1,4358_7778195_8727004,4358_215 -4358_80792,205,4358_6985,Eden Quay,7685,1,4358_7778195_8727002,4358_219 -4358_80792,96,4358_6987,Eden Quay,14207,1,4358_7778195_8727003,4358_215 -4358_80792,205,4358_6988,Eden Quay,7660,1,4358_7778195_8727013,4358_215 -4358_80792,96,4358_6990,Eden Quay,14223,1,4358_7778195_8727008,4358_219 -4358_80792,205,4358_6991,Eden Quay,7626,1,4358_7778195_8727012,4358_215 -4358_80792,96,4358_6993,Eden Quay,14219,1,4358_7778195_8727007,4358_215 -4358_80792,205,4358_6994,Eden Quay,7736,1,4358_7778195_8727011,4358_215 -4358_80792,96,4358_6996,Eden Quay,14163,1,4358_7778195_8727006,4358_215 -4358_80792,205,4358_6997,Eden Quay,7642,1,4358_7778195_8727005,4358_215 -4358_80792,96,4358_6999,Eden Quay,14196,1,4358_7778195_8727002,4358_219 -4358_80760,96,4358_7,Shaw street,9380,0,4358_7778195_9001001,4358_1 -4358_80760,205,4358_70,Shaw street,1592,0,4358_7778195_9001005,4358_1 -4358_80754,205,4358_700,Parnell St,2144,1,4358_7778195_5120003,4358_24 -4358_80792,205,4358_7000,Eden Quay,7904,1,4358_7778195_8727008,4358_215 -4358_80792,96,4358_7001,Eden Quay,14239,1,4358_7778195_8727009,4358_215 -4358_80792,205,4358_7002,Eden Quay,7729,1,4358_7778195_8727014,4358_215 -4358_80792,96,4358_7003,Eden Quay,14140,1,4358_7778195_8727004,4358_215 -4358_80792,205,4358_7004,Eden Quay,7581,1,4358_7778195_8727016,4358_219 -4358_80792,205,4358_7006,Eden Quay,7687,1,4358_7778195_8727002,4358_215 -4358_80792,96,4358_7007,Eden Quay,14209,1,4358_7778195_8727003,4358_215 -4358_80792,96,4358_7009,Eden Quay,14251,1,4358_7778195_8727010,4358_215 -4358_80754,96,4358_701,Parnell St,9888,1,4358_7778195_5120004,4358_25 -4358_80792,205,4358_7010,Eden Quay,7662,1,4358_7778195_8727013,4358_215 -4358_80792,205,4358_7012,Eden Quay,7676,1,4358_7778195_8727017,4358_222 -4358_80792,96,4358_7013,Eden Quay,14225,1,4358_7778195_8727008,4358_215 -4358_80792,205,4358_7015,Eden Quay,7628,1,4358_7778195_8727012,4358_215 -4358_80792,96,4358_7016,Eden Quay,14165,1,4358_7778195_8727006,4358_215 -4358_80792,205,4358_7017,Eden Quay,7738,1,4358_7778195_8727011,4358_215 -4358_80792,96,4358_7019,Eden Quay,14198,1,4358_7778195_8727002,4358_215 -4358_80792,96,4358_7020,Eden Quay,14241,1,4358_7778195_8727009,4358_215 -4358_80792,205,4358_7021,Eden Quay,7653,1,4358_7778195_8727015,4358_219 -4358_80792,96,4358_7023,Eden Quay,14142,1,4358_7778195_8727004,4358_215 -4358_80792,205,4358_7024,Eden Quay,7731,1,4358_7778195_8727014,4358_215 -4358_80792,205,4358_7026,Eden Quay,7583,1,4358_7778195_8727016,4358_215 -4358_80792,96,4358_7027,Eden Quay,14253,1,4358_7778195_8727010,4358_219 -4358_80792,96,4358_7028,Eden Quay,14167,1,4358_7778195_8727006,4358_215 -4358_80792,205,4358_7029,Eden Quay,7664,1,4358_7778195_8727013,4358_215 -4358_80754,205,4358_703,Parnell St,2086,1,4358_7778195_5120008,4358_24 -4358_80792,96,4358_7031,Eden Quay,14255,1,4358_7778195_8727011,4358_215 -4358_80792,205,4358_7032,Eden Quay,7630,1,4358_7778195_8727012,4358_215 -4358_80792,96,4358_7034,Eden Quay,14260,1,4358_7778195_8727012,4358_215 -4358_80792,205,4358_7036,Eden Quay,7655,1,4358_7778195_8727015,4358_215 -4358_80792,96,4358_7037,Eden Quay,14274,1,4358_7778195_8727013,4358_215 -4358_80792,205,4358_7038,Eden Quay,7585,1,4358_7778195_8727016,4358_215 -4358_80754,96,4358_704,Parnell St,9811,1,4358_7778195_5120002,4358_25 -4358_80792,96,4358_7040,Eden Quay,14169,1,4358_7778195_8727006,4358_215 -4358_80792,205,4358_7041,Eden Quay,7666,1,4358_7778195_8727013,4358_215 -4358_80792,96,4358_7043,Eden Quay,14257,1,4358_7778195_8727011,4358_221 -4358_80792,205,4358_7044,Eden Quay,7632,1,4358_7778195_8727012,4358_215 -4358_80792,96,4358_7045,Eden Quay,14262,1,4358_7778195_8727012,4358_219 -4358_80792,96,4358_7047,Eden Quay,14276,1,4358_7778195_8727013,4358_214 -4358_80792,205,4358_7048,Eden Quay,7657,1,4358_7778195_8727015,4358_215 -4358_80792,205,4358_7050,Eden Quay,7587,1,4358_7778195_8727016,4358_214 -4358_80792,96,4358_7051,Eden Quay,14171,1,4358_7778195_8727006,4358_220 -4358_80792,205,4358_7053,Eden Quay,7668,1,4358_7778195_8727013,4358_214 -4358_80792,96,4358_7054,Eden Quay,14259,1,4358_7778195_8727011,4358_220 -4358_80690,205,4358_7056,Clare Hall,5,0,4358_7778195_6816204,4358_223 -4358_80690,205,4358_7057,UCD,3,1,4358_7778195_6816104,4358_224 -4358_80690,205,4358_7058,UCD,2,1,4358_7778195_6826101,4358_224 -4358_80692,205,4358_7059,UCD,7844,0,4358_7778195_8818130,4358_225 -4358_80754,96,4358_706,Parnell St,9863,1,4358_7778195_5120003,4358_24 -4358_80692,205,4358_7060,Malahide,7845,1,4358_7778195_8818230,4358_226 -4358_80693,205,4358_7061,Balbriggan,7524,0,4358_7778195_8033101,4358_228 -4358_80693,205,4358_7062,Balbriggan,2786,0,4358_7778195_5033001,4358_228 -4358_80693,96,4358_7063,Balbriggan,10521,0,4358_7778195_5033001,4358_228 -4358_80693,205,4358_7064,Skerries,7527,0,4358_7778195_8033103,4358_227 -4358_80693,205,4358_7066,Balbriggan,7528,0,4358_7778195_8033104,4358_228 -4358_80693,96,4358_7067,Balbriggan,10525,0,4358_7778195_5033002,4358_228 -4358_80693,205,4358_7068,Balbriggan,2790,0,4358_7778195_5033004,4358_228 -4358_80754,205,4358_707,Parnell St,2110,1,4358_7778195_5120007,4358_25 -4358_80693,96,4358_7070,Balbriggan,10527,0,4358_7778195_5033003,4358_229 -4358_80693,205,4358_7072,Balbriggan,7530,0,4358_7778195_8033105,4358_229 -4358_80693,96,4358_7073,Balbriggan,10523,0,4358_7778195_5033001,4358_228 -4358_80693,96,4358_7074,Balbriggan,10530,0,4358_7778195_5033005,4358_228 -4358_80693,205,4358_7076,Balbriggan,2793,0,4358_7778195_5033006,4358_228 -4358_80693,205,4358_7077,Balbriggan,2796,0,4358_7778195_5033008,4358_228 -4358_80693,96,4358_7078,Balbriggan,10529,0,4358_7778195_5033004,4358_228 -4358_80693,205,4358_7080,Skerries,7532,0,4358_7778195_8033106,4358_227 -4358_80693,205,4358_7081,Skerries,7536,0,4358_7778195_8033108,4358_227 -4358_80693,205,4358_7083,Balbriggan,7534,0,4358_7778195_8033107,4358_228 -4358_80693,96,4358_7084,Balbriggan,14365,0,4358_7778195_8828201,4358_229 -4358_80693,205,4358_7085,Skerries,2800,0,4358_7778195_5033009,4358_227 -4358_80693,96,4358_7087,Balbriggan,14358,0,4358_7778195_8033104,4358_228 -4358_80693,205,4358_7088,Skerries,7848,0,4358_7778195_8818232,4358_227 -4358_80693,205,4358_7089,Balbriggan,2803,0,4358_7778195_5033011,4358_228 -4358_80754,205,4358_709,Parnell St,2146,1,4358_7778195_5120003,4358_24 -4358_80693,205,4358_7090,Skerries,7537,0,4358_7778195_8033109,4358_227 -4358_80693,96,4358_7091,Balbriggan,10533,0,4358_7778195_5033007,4358_228 -4358_80693,205,4358_7093,Skerries,2802,0,4358_7778195_5033010,4358_227 -4358_80693,96,4358_7094,Skerries,14367,0,4358_7778195_8828202,4358_227 -4358_80693,205,4358_7095,Balbriggan,7539,0,4358_7778195_8033110,4358_228 -4358_80693,205,4358_7096,Balbriggan,2798,0,4358_7778195_5033008,4358_228 -4358_80693,96,4358_7097,Balbriggan,10534,0,4358_7778195_5033009,4358_228 -4358_80693,205,4358_7099,Balbriggan,7540,0,4358_7778195_8033111,4358_228 -4358_80760,96,4358_71,Shaw street,9326,0,4358_7778195_9001002,4358_1 -4358_80754,96,4358_710,Parnell St,9890,1,4358_7778195_5120004,4358_25 -4358_80693,96,4358_7101,Balbriggan,14362,0,4358_7778195_8033107,4358_229 -4358_80693,205,4358_7103,Skerries,2805,0,4358_7778195_5033012,4358_230 -4358_80693,96,4358_7104,Skerries,14361,0,4358_7778195_8033106,4358_227 -4358_80693,205,4358_7105,Skerries,2807,0,4358_7778195_5033013,4358_227 -4358_80693,96,4358_7107,Skerries,10536,0,4358_7778195_5033010,4358_231 -4358_80693,205,4358_7108,Abbey St,5970,1,4358_7778195_5033201,4358_233 -4358_80693,96,4358_7109,Abbey St,10520,1,4358_7778195_5033001,4358_233 -4358_80693,205,4358_7110,Abbey St,2785,1,4358_7778195_5033001,4358_232 -4358_80693,205,4358_7111,Abbey St,2787,1,4358_7778195_5033002,4358_233 -4358_80693,96,4358_7112,Abbey St,10524,1,4358_7778195_5033002,4358_233 -4358_80693,205,4358_7113,Abbey St,2788,1,4358_7778195_5033003,4358_232 -4358_80693,205,4358_7114,Abbey St,7526,1,4358_7778195_8033102,4358_232 -4358_80693,205,4358_7115,Abbey St,2789,1,4358_7778195_5033004,4358_232 -4358_80693,205,4358_7117,Abbey St,7525,1,4358_7778195_8033101,4358_233 -4358_80693,205,4358_7118,Abbey St,7849,1,4358_7778195_8818132,4358_233 -4358_80693,96,4358_7119,Abbey St,10526,1,4358_7778195_5033003,4358_232 -4358_80754,205,4358_712,Parnell St,2088,1,4358_7778195_5120008,4358_24 -4358_80693,205,4358_7120,Abbey St,7855,1,4358_7778195_8828101,4358_232 -4358_80693,96,4358_7121,Abbey St,10522,1,4358_7778195_5033001,4358_233 -4358_80693,205,4358_7122,Abbey St,2791,1,4358_7778195_5033005,4358_234 -4358_80693,205,4358_7124,Abbey St,2792,1,4358_7778195_5033006,4358_232 -4358_80693,205,4358_7125,Abbey St,7529,1,4358_7778195_8033104,4358_233 -4358_80693,96,4358_7126,Abbey St,14364,1,4358_7778195_8828101,4358_234 -4358_80693,205,4358_7129,Abbey St,2794,1,4358_7778195_5033007,4358_235 -4358_80754,96,4358_713,Parnell St,9813,1,4358_7778195_5120002,4358_25 -4358_80693,96,4358_7130,Abbey St,14366,1,4358_7778195_8828102,4358_236 -4358_80693,205,4358_7131,Abbey St,2795,1,4358_7778195_5033008,4358_233 -4358_80693,96,4358_7133,Abbey St,10528,1,4358_7778195_5033004,4358_237 -4358_80693,205,4358_7134,Abbey St,7531,1,4358_7778195_8033106,4358_232 -4358_80693,205,4358_7135,Abbey St,7533,1,4358_7778195_8033107,4358_233 -4358_80693,96,4358_7137,Abbey St,10531,1,4358_7778195_5033006,4358_234 -4358_80693,205,4358_7138,Abbey St,2799,1,4358_7778195_5033009,4358_232 -4358_80693,205,4358_7139,Abbey St,7864,1,4358_7778195_8828105,4358_233 -4358_80693,96,4358_7140,Abbey St,10532,1,4358_7778195_5033007,4358_233 -4358_80693,205,4358_7142,Abbey St,2801,1,4358_7778195_5033010,4358_232 -4358_80693,205,4358_7144,Abbey St,2797,1,4358_7778195_5033008,4358_234 -4358_80693,96,4358_7145,Abbey St,13470,1,4358_7778195_5033008,4358_237 -4358_80693,205,4358_7146,Abbey St,7535,1,4358_7778195_8033107,4358_233 -4358_80693,96,4358_7148,Abbey St,14359,1,4358_7778195_8033104,4358_233 -4358_80693,205,4358_7149,Abbey St,7538,1,4358_7778195_8033109,4358_232 -4358_80754,96,4358_715,Parnell St,9865,1,4358_7778195_5120003,4358_24 -4358_80693,96,4358_7151,Abbey St,14360,1,4358_7778195_8033106,4358_234 -4358_80693,205,4358_7152,Abbey St,2804,1,4358_7778195_5033012,4358_232 -4358_80693,205,4358_7153,Abbey St,2806,1,4358_7778195_5033013,4358_233 -4358_80693,96,4358_7155,Abbey St,10535,1,4358_7778195_5033010,4358_237 -4358_80693,205,4358_7156,Abbey St,7541,1,4358_7778195_8033111,4358_233 -4358_80693,96,4358_7158,Abbey St,14363,1,4358_7778195_8033107,4358_237 -4358_80695,205,4358_7159,Portrane,7826,0,4358_7778195_8818223,4358_238 -4358_80754,205,4358_716,Parnell St,2112,1,4358_7778195_5120007,4358_25 -4358_80695,205,4358_7160,St Stephen's Green,7825,1,4358_7778195_8818123,4358_239 -4358_80696,205,4358_7161,Skerries,7854,0,4358_7778195_8828101,4358_240 -4358_80694,205,4358_7162,Balbriggan,7824,0,4358_7778195_8818222,4358_241 -4358_80694,205,4358_7163,Balbriggan,7813,0,4358_7778195_8818217,4358_241 -4358_80694,205,4358_7164,Balbriggan,6456,0,4358_7778195_7033666,4358_241 -4358_80694,205,4358_7165,Balbriggan,6448,0,4358_7778195_7033661,4358_241 -4358_80694,205,4358_7166,Balbriggan,6452,0,4358_7778195_7033663,4358_241 -4358_80694,205,4358_7167,Merrion Square W,7823,1,4358_7778195_8818122,4358_242 -4358_80694,205,4358_7168,Merrion Square W,7812,1,4358_7778195_8818117,4358_242 -4358_80694,205,4358_7169,Merrion Square W,6455,1,4358_7778195_7033566,4358_242 -4358_80694,205,4358_7170,Merrion Square W,6447,1,4358_7778195_7033561,4358_242 -4358_80694,205,4358_7171,Merrion Square W,6451,1,4358_7778195_7033563,4358_242 -4358_80697,205,4358_7172,Blanchardstown SC,4268,0,4358_7778195_9037003,4358_243 -4358_80697,96,4358_7173,Blanchardstown SC,11440,0,4358_7778195_9037001,4358_243 -4358_80697,205,4358_7174,Blanchardstown SC,4283,0,4358_7778195_9037006,4358_243 -4358_80697,205,4358_7175,Blanchardstown SC,4253,0,4358_7778195_9037001,4358_243 -4358_80697,96,4358_7176,Blanchardstown SC,11449,0,4358_7778195_9037003,4358_243 -4358_80697,205,4358_7177,Blanchardstown SC,4266,0,4358_7778195_9037002,4358_243 -4358_80697,96,4358_7178,Blanchardstown SC,11429,0,4358_7778195_9037002,4358_243 -4358_80697,205,4358_7179,Blanchardstown SC,4282,0,4358_7778195_9037005,4358_243 -4358_80754,205,4358_718,Parnell St,2148,1,4358_7778195_5120003,4358_24 -4358_80697,205,4358_7180,Blanchardstown SC,4235,0,4358_7778195_9037007,4358_243 -4358_80697,96,4358_7181,Blanchardstown SC,11475,0,4358_7778195_9037006,4358_243 -4358_80697,205,4358_7182,Blanchardstown SC,4278,0,4358_7778195_9037008,4358_243 -4358_80697,96,4358_7183,Blanchardstown SC,11461,0,4358_7778195_9037004,4358_243 -4358_80697,205,4358_7184,Blanchardstown SC,4270,0,4358_7778195_9037003,4358_243 -4358_80697,205,4358_7185,Blanchardstown SC,4290,0,4358_7778195_9037009,4358_243 -4358_80697,96,4358_7186,Blanchardstown SC,11442,0,4358_7778195_9037001,4358_243 -4358_80697,205,4358_7188,Blanchardstown SC,4285,0,4358_7778195_9037006,4358_243 -4358_80697,96,4358_7189,Blanchardstown SC,11493,0,4358_7778195_9037005,4358_243 -4358_80754,96,4358_719,Parnell St,9892,1,4358_7778195_5120004,4358_25 -4358_80697,205,4358_7191,Blanchardstown SC,4307,0,4358_7778195_9037010,4358_243 -4358_80697,205,4358_7192,Blanchardstown SC,4255,0,4358_7778195_9037001,4358_243 -4358_80697,96,4358_7193,Blanchardstown SC,11451,0,4358_7778195_9037003,4358_243 -4358_80697,205,4358_7195,Blanchardstown SC,4302,0,4358_7778195_9037011,4358_243 -4358_80697,96,4358_7196,Blanchardstown SC,11431,0,4358_7778195_9037002,4358_243 -4358_80697,205,4358_7198,Blanchardstown SC,4237,0,4358_7778195_9037007,4358_243 -4358_80697,205,4358_7199,Blanchardstown SC,4280,0,4358_7778195_9037008,4358_243 -4358_80760,205,4358_72,Shaw street,1545,0,4358_7778195_9001010,4358_1 -4358_80697,96,4358_7200,Blanchardstown SC,11477,0,4358_7778195_9037006,4358_243 -4358_80697,205,4358_7202,Blanchardstown SC,4272,0,4358_7778195_9037003,4358_243 -4358_80697,96,4358_7203,Blanchardstown SC,11463,0,4358_7778195_9037004,4358_243 -4358_80697,205,4358_7205,Blanchardstown SC,4292,0,4358_7778195_9037009,4358_243 -4358_80697,96,4358_7206,Blanchardstown SC,11444,0,4358_7778195_9037001,4358_243 -4358_80697,205,4358_7207,Blanchardstown SC,4287,0,4358_7778195_9037006,4358_244 -4358_80697,96,4358_7209,Blanchardstown SC,11468,0,4358_7778195_9037008,4358_243 -4358_80754,205,4358_721,Parnell St,2187,1,4358_7778195_5120009,4358_24 -4358_80697,205,4358_7210,Blanchardstown SC,4244,0,4358_7778195_9037012,4358_244 -4358_80697,96,4358_7212,Blanchardstown SC,11495,0,4358_7778195_9037005,4358_243 -4358_80697,205,4358_7213,Blanchardstown SC,4257,0,4358_7778195_9037001,4358_244 -4358_80697,96,4358_7214,Blanchardstown SC,11504,0,4358_7778195_9037007,4358_243 -4358_80697,205,4358_7215,Blanchardstown SC,4304,0,4358_7778195_9037011,4358_244 -4358_80697,96,4358_7217,Blanchardstown SC,11453,0,4358_7778195_9037003,4358_243 -4358_80697,205,4358_7218,Blanchardstown SC,4239,0,4358_7778195_9037007,4358_244 -4358_80754,96,4358_722,Parnell St,9815,1,4358_7778195_5120002,4358_25 -4358_80697,205,4358_7220,Blanchardstown SC,4310,0,4358_7778195_9037013,4358_243 -4358_80697,96,4358_7221,Blanchardstown SC,11433,0,4358_7778195_9037002,4358_244 -4358_80697,205,4358_7222,Blanchardstown SC,4274,0,4358_7778195_9037003,4358_243 -4358_80697,96,4358_7223,Blanchardstown SC,11509,0,4358_7778195_9037009,4358_244 -4358_80697,205,4358_7225,Blanchardstown SC,4294,0,4358_7778195_9037009,4358_243 -4358_80697,96,4358_7226,Blanchardstown SC,11486,0,4358_7778195_9037011,4358_244 -4358_80697,205,4358_7228,Blanchardstown SC,4318,0,4358_7778195_9037014,4358_243 -4358_80697,96,4358_7229,Blanchardstown SC,11465,0,4358_7778195_9037004,4358_244 -4358_80697,205,4358_7230,Blanchardstown SC,4246,0,4358_7778195_9037012,4358_243 -4358_80697,96,4358_7231,Blanchardstown SC,11480,0,4358_7778195_9037010,4358_244 -4358_80697,96,4358_7233,Blanchardstown SC,11446,0,4358_7778195_9037001,4358_243 -4358_80697,205,4358_7234,Blanchardstown SC,4231,0,4358_7778195_9037015,4358_244 -4358_80697,96,4358_7236,Blanchardstown SC,11470,0,4358_7778195_9037008,4358_243 -4358_80697,205,4358_7237,Blanchardstown SC,4259,0,4358_7778195_9037001,4358_244 -4358_80697,205,4358_7238,Blanchardstown SC,4241,0,4358_7778195_9037007,4358_243 -4358_80697,96,4358_7239,Blanchardstown SC,11497,0,4358_7778195_9037005,4358_244 -4358_80754,96,4358_724,Parnell St,9867,1,4358_7778195_5120003,4358_24 -4358_80697,96,4358_7241,Blanchardstown SC,11506,0,4358_7778195_9037007,4358_243 -4358_80697,205,4358_7242,Blanchardstown SC,7806,0,4358_7778195_8818214,4358_244 -4358_80697,96,4358_7244,Blanchardstown SC,11455,0,4358_7778195_9037003,4358_243 -4358_80697,205,4358_7245,Blanchardstown SC,4312,0,4358_7778195_9037013,4358_244 -4358_80697,205,4358_7246,Blanchardstown SC,7792,0,4358_7778195_8818207,4358_243 -4358_80697,205,4358_7247,Blanchardstown SC,7799,0,4358_7778195_8818210,4358_243 -4358_80697,96,4358_7248,Blanchardstown SC,11435,0,4358_7778195_9037002,4358_244 -4358_80697,205,4358_7249,Blanchardstown SC,6468,0,4358_7778195_7037656,4358_243 -4358_80754,205,4358_725,Parnell St,2191,1,4358_7778195_5120010,4358_25 -4358_80697,205,4358_7251,Blanchardstown SC,4326,0,4358_7778195_9037016,4358_243 -4358_80697,205,4358_7252,Blanchardstown SC,7878,0,4358_7778195_7037614,4358_243 -4358_80697,205,4358_7253,Blanchardstown SC,4276,0,4358_7778195_9037003,4358_243 -4358_80697,96,4358_7254,Blanchardstown SC,11511,0,4358_7778195_9037009,4358_244 -4358_80697,205,4358_7255,Blanchardstown SC,7787,0,4358_7778195_8818204,4358_243 -4358_80697,205,4358_7257,Blanchardstown SC,4296,0,4358_7778195_9037009,4358_243 -4358_80697,96,4358_7258,Blanchardstown SC,11488,0,4358_7778195_9037011,4358_244 -4358_80697,205,4358_7259,Blanchardstown SC,4320,0,4358_7778195_9037014,4358_243 -4358_80697,96,4358_7260,Blanchardstown SC,11467,0,4358_7778195_9037004,4358_243 -4358_80697,205,4358_7261,Blanchardstown SC,7789,0,4358_7778195_8818205,4358_243 -4358_80697,205,4358_7263,Blanchardstown SC,4248,0,4358_7778195_9037012,4358_243 -4358_80697,96,4358_7264,Blanchardstown SC,11482,0,4358_7778195_9037010,4358_244 -4358_80697,96,4358_7266,Blanchardstown SC,11448,0,4358_7778195_9037001,4358_243 -4358_80697,205,4358_7267,Blanchardstown SC,4233,0,4358_7778195_9037015,4358_244 -4358_80697,96,4358_7268,Blanchardstown SC,11472,0,4358_7778195_9037008,4358_243 -4358_80697,205,4358_7269,Blanchardstown SC,4261,0,4358_7778195_9037001,4358_244 -4358_80754,205,4358_727,Parnell St,2150,1,4358_7778195_5120003,4358_24 -4358_80697,205,4358_7271,Blanchardstown SC,4243,0,4358_7778195_9037007,4358_243 -4358_80697,96,4358_7272,Blanchardstown SC,11499,0,4358_7778195_9037005,4358_244 -4358_80697,96,4358_7274,Blanchardstown SC,11457,0,4358_7778195_9037003,4358_243 -4358_80697,205,4358_7275,Blanchardstown SC,4314,0,4358_7778195_9037013,4358_244 -4358_80697,205,4358_7277,Blanchardstown SC,4298,0,4358_7778195_9037009,4358_243 -4358_80697,96,4358_7278,Blanchardstown SC,11437,0,4358_7778195_9037002,4358_244 -4358_80754,96,4358_728,Parnell St,9894,1,4358_7778195_5120004,4358_25 -4358_80697,205,4358_7280,Blanchardstown SC,4322,0,4358_7778195_9037014,4358_243 -4358_80697,96,4358_7281,Blanchardstown SC,11490,0,4358_7778195_9037011,4358_244 -4358_80697,205,4358_7283,Blanchardstown SC,4250,0,4358_7778195_9037012,4358_243 -4358_80697,96,4358_7284,Blanchardstown SC,11484,0,4358_7778195_9037010,4358_244 -4358_80697,96,4358_7286,Blanchardstown SC,11474,0,4358_7778195_9037008,4358_243 -4358_80697,205,4358_7287,Blanchardstown SC,4263,0,4358_7778195_9037001,4358_244 -4358_80697,205,4358_7289,Blanchardstown SC,4316,0,4358_7778195_9037013,4358_243 -4358_80697,96,4358_7290,Blanchardstown SC,11501,0,4358_7778195_9037005,4358_244 -4358_80697,96,4358_7292,Blanchardstown SC,11459,0,4358_7778195_9037003,4358_243 -4358_80697,205,4358_7293,Blanchardstown SC,4300,0,4358_7778195_9037009,4358_244 -4358_80697,205,4358_7295,Blanchardstown SC,4324,0,4358_7778195_9037014,4358_243 -4358_80697,96,4358_7296,Blanchardstown SC,11439,0,4358_7778195_9037002,4358_244 -4358_80697,205,4358_7298,Wilton Terrace,4252,1,4358_7778195_9037001,4358_245 -4358_80697,205,4358_7299,Wilton Terrace,4265,1,4358_7778195_9037002,4358_245 -4358_80754,205,4358_730,Parnell St,2157,1,4358_7778195_5120012,4358_25 -4358_80697,205,4358_7300,Wilton Terrace,4328,1,4358_7778195_9037004,4358_245 -4358_80697,205,4358_7301,Wilton Terrace,4281,1,4358_7778195_9037005,4358_245 -4358_80697,96,4358_7302,Wilton Terrace,11428,1,4358_7778195_9037002,4358_245 -4358_80697,205,4358_7303,Wilton Terrace,4234,1,4358_7778195_9037007,4358_245 -4358_80697,205,4358_7304,Wilton Terrace,4277,1,4358_7778195_9037008,4358_245 -4358_80697,205,4358_7305,Wilton Terrace,7875,1,4358_7778195_7037513,4358_245 -4358_80697,96,4358_7306,Wilton Terrace,11460,1,4358_7778195_9037004,4358_247 -4358_80697,205,4358_7307,Wilton Terrace,7809,1,4358_7778195_8818115,4358_245 -4358_80697,205,4358_7308,Wilton Terrace,4269,1,4358_7778195_9037003,4358_245 -4358_80697,205,4358_7309,Wilton Terrace,7857,1,4358_7778195_8828102,4358_245 -4358_80754,205,4358_731,Parnell St,2189,1,4358_7778195_5120009,4358_24 -4358_80697,205,4358_7310,Wilton Terrace,7873,1,4358_7778195_7037512,4358_245 -4358_80697,96,4358_7311,Wilton Terrace,11441,1,4358_7778195_9037001,4358_247 -4358_80697,205,4358_7312,Wilton Terrace,4289,1,4358_7778195_9037009,4358_245 -4358_80697,205,4358_7313,Wilton Terrace,4284,1,4358_7778195_9037006,4358_245 -4358_80697,205,4358_7314,Wilton Terrace,7802,1,4358_7778195_8818111,4358_245 -4358_80697,205,4358_7315,Wilton Terrace,4306,1,4358_7778195_9037010,4358_245 -4358_80697,96,4358_7316,Wilton Terrace,11492,1,4358_7778195_9037005,4358_245 -4358_80697,205,4358_7317,Wilton Terrace,7788,1,4358_7778195_8818105,4358_245 -4358_80697,205,4358_7318,Wilton Terrace,4254,1,4358_7778195_9037001,4358_245 -4358_80697,205,4358_7319,Wilton Terrace,7790,1,4358_7778195_8818106,4358_245 -4358_80754,96,4358_732,Parnell St,9817,1,4358_7778195_5120002,4358_25 -4358_80697,96,4358_7320,Wilton Terrace,11450,1,4358_7778195_9037003,4358_245 -4358_80697,205,4358_7321,Wilton Terrace,4301,1,4358_7778195_9037011,4358_245 -4358_80697,205,4358_7322,Wilton Terrace,4267,1,4358_7778195_9037002,4358_245 -4358_80697,96,4358_7323,Wilton Terrace,11430,1,4358_7778195_9037002,4358_245 -4358_80697,205,4358_7325,Wilton Terrace,4236,1,4358_7778195_9037007,4358_245 -4358_80697,96,4358_7326,Wilton Terrace,11476,1,4358_7778195_9037006,4358_245 -4358_80697,205,4358_7328,Wilton Terrace,4279,1,4358_7778195_9037008,4358_245 -4358_80697,205,4358_7329,Wilton Terrace,4271,1,4358_7778195_9037003,4358_245 -4358_80697,96,4358_7330,Wilton Terrace,11462,1,4358_7778195_9037004,4358_245 -4358_80697,205,4358_7332,Wilton Terrace,4291,1,4358_7778195_9037009,4358_245 -4358_80697,96,4358_7333,Wilton Terrace,11443,1,4358_7778195_9037001,4358_245 -4358_80697,205,4358_7335,Wilton Terrace,4286,1,4358_7778195_9037006,4358_245 -4358_80697,205,4358_7336,Wilton Terrace,4308,1,4358_7778195_9037010,4358_245 -4358_80697,96,4358_7337,Wilton Terrace,11494,1,4358_7778195_9037005,4358_245 -4358_80697,205,4358_7339,Wilton Terrace,4256,1,4358_7778195_9037001,4358_245 -4358_80754,96,4358_734,Parnell St,9869,1,4358_7778195_5120003,4358_24 -4358_80697,96,4358_7340,Wilton Terrace,11503,1,4358_7778195_9037007,4358_245 -4358_80697,205,4358_7342,Wilton Terrace,4303,1,4358_7778195_9037011,4358_245 -4358_80697,96,4358_7343,Wilton Terrace,11452,1,4358_7778195_9037003,4358_245 -4358_80697,205,4358_7344,Wilton Terrace,4238,1,4358_7778195_9037007,4358_245 -4358_80697,96,4358_7346,Wilton Terrace,11432,1,4358_7778195_9037002,4358_245 -4358_80697,205,4358_7347,Wilton Terrace,4309,1,4358_7778195_9037013,4358_245 -4358_80697,96,4358_7348,Wilton Terrace,11508,1,4358_7778195_9037009,4358_245 -4358_80754,205,4358_735,Parnell St,2124,1,4358_7778195_5120011,4358_25 -4358_80697,205,4358_7350,Wilton Terrace,4273,1,4358_7778195_9037003,4358_245 -4358_80697,96,4358_7351,Wilton Terrace,11478,1,4358_7778195_9037006,4358_245 -4358_80697,205,4358_7352,Wilton Terrace,4293,1,4358_7778195_9037009,4358_245 -4358_80697,96,4358_7354,Wilton Terrace,11464,1,4358_7778195_9037004,4358_245 -4358_80697,96,4358_7355,Wilton Terrace,11479,1,4358_7778195_9037010,4358_245 -4358_80697,205,4358_7356,Wilton Terrace,4288,1,4358_7778195_9037006,4358_247 -4358_80697,96,4358_7358,Wilton Terrace,11445,1,4358_7778195_9037001,4358_245 -4358_80697,205,4358_7359,Wilton Terrace,4245,1,4358_7778195_9037012,4358_247 -4358_80697,96,4358_7361,Wilton Terrace,11469,1,4358_7778195_9037008,4358_245 -4358_80697,205,4358_7362,Wilton Terrace,4258,1,4358_7778195_9037001,4358_247 -4358_80697,205,4358_7363,Wilton Terrace,4305,1,4358_7778195_9037011,4358_245 -4358_80697,96,4358_7364,Wilton Terrace,11496,1,4358_7778195_9037005,4358_247 -4358_80697,96,4358_7366,Wilton Terrace,11505,1,4358_7778195_9037007,4358_245 -4358_80697,205,4358_7367,Wilton Terrace,4240,1,4358_7778195_9037007,4358_247 -4358_80697,96,4358_7369,Wilton Terrace,11454,1,4358_7778195_9037003,4358_245 -4358_80754,205,4358_737,Parnell St,2152,1,4358_7778195_5120003,4358_24 -4358_80697,205,4358_7370,Wilton Terrace,4311,1,4358_7778195_9037013,4358_247 -4358_80697,205,4358_7371,Wilton Terrace,4325,1,4358_7778195_9037016,4358_245 -4358_80697,96,4358_7372,Wilton Terrace,11434,1,4358_7778195_9037002,4358_247 -4358_80697,205,4358_7374,Wilton Terrace,4275,1,4358_7778195_9037003,4358_245 -4358_80697,96,4358_7375,Wilton Terrace,11510,1,4358_7778195_9037009,4358_247 -4358_80697,205,4358_7377,Wilton Terrace,4295,1,4358_7778195_9037009,4358_245 -4358_80697,96,4358_7378,Wilton Terrace,11487,1,4358_7778195_9037011,4358_247 -4358_80697,205,4358_7379,Wilton Terrace,4319,1,4358_7778195_9037014,4358_245 -4358_80754,96,4358_738,Parnell St,9896,1,4358_7778195_5120004,4358_24 -4358_80697,96,4358_7380,Wilton Terrace,11466,1,4358_7778195_9037004,4358_247 -4358_80697,205,4358_7382,Wilton Terrace,4247,1,4358_7778195_9037012,4358_245 -4358_80697,96,4358_7383,Wilton Terrace,11481,1,4358_7778195_9037010,4358_247 -4358_80697,96,4358_7385,Wilton Terrace,11447,1,4358_7778195_9037001,4358_245 -4358_80697,205,4358_7386,Wilton Terrace,4232,1,4358_7778195_9037015,4358_247 -4358_80697,96,4358_7387,Wilton Terrace,11471,1,4358_7778195_9037008,4358_245 -4358_80697,205,4358_7388,Wilton Terrace,4260,1,4358_7778195_9037001,4358_247 -4358_80697,205,4358_7390,Wilton Terrace,4242,1,4358_7778195_9037007,4358_245 -4358_80697,96,4358_7391,Wilton Terrace,11498,1,4358_7778195_9037005,4358_247 -4358_80697,96,4358_7393,Wilton Terrace,11507,1,4358_7778195_9037007,4358_245 -4358_80697,205,4358_7394,Wilton Terrace,7791,1,4358_7778195_8818206,4358_247 -4358_80697,96,4358_7395,Wilton Terrace,11456,1,4358_7778195_9037003,4358_245 -4358_80697,205,4358_7396,Wilton Terrace,4313,1,4358_7778195_9037013,4358_247 -4358_80697,205,4358_7398,Wilton Terrace,4327,1,4358_7778195_9037016,4358_245 -4358_80697,96,4358_7399,Wilton Terrace,11436,1,4358_7778195_9037002,4358_247 -4358_80760,205,4358_74,Shaw street,1639,0,4358_7778195_9001011,4358_1 -4358_80754,205,4358_740,Parnell St,2159,1,4358_7778195_5120012,4358_25 -4358_80697,205,4358_7401,Wilton Terrace,4297,1,4358_7778195_9037009,4358_245 -4358_80697,96,4358_7402,Wilton Terrace,11512,1,4358_7778195_9037009,4358_247 -4358_80697,96,4358_7403,Wilton Terrace,11489,1,4358_7778195_9037011,4358_245 -4358_80697,205,4358_7404,Wilton Terrace,4321,1,4358_7778195_9037014,4358_245 -4358_80697,96,4358_7406,Wilton Terrace,11483,1,4358_7778195_9037010,4358_245 -4358_80697,205,4358_7407,Wilton Terrace,4249,1,4358_7778195_9037012,4358_245 -4358_80697,96,4358_7409,Wilton Terrace,11473,1,4358_7778195_9037008,4358_245 -4358_80754,96,4358_741,Parnell St,9819,1,4358_7778195_5120002,4358_24 -4358_80697,205,4358_7411,Wilton Terrace,4262,1,4358_7778195_9037001,4358_247 -4358_80697,96,4358_7412,Wilton Terrace,11500,1,4358_7778195_9037005,4358_245 -4358_80697,205,4358_7413,Wilton Terrace,4315,1,4358_7778195_9037013,4358_245 -4358_80697,96,4358_7415,Wilton Terrace,11458,1,4358_7778195_9037003,4358_245 -4358_80697,205,4358_7416,Wilton Terrace,4299,1,4358_7778195_9037009,4358_245 -4358_80697,96,4358_7418,Wilton Terrace,11438,1,4358_7778195_9037002,4358_245 -4358_80697,205,4358_7419,Wilton Terrace,4323,1,4358_7778195_9037014,4358_245 -4358_80754,205,4358_742,Parnell St,2126,1,4358_7778195_5120011,4358_24 -4358_80697,96,4358_7421,Wilton Terrace,11491,1,4358_7778195_9037011,4358_245 -4358_80697,205,4358_7423,Wilton Terrace,4251,1,4358_7778195_9037012,4358_247 -4358_80697,96,4358_7424,Bachelor's Walk,11485,1,4358_7778195_9037010,4358_246 -4358_80697,205,4358_7426,Bachelor's Walk,4264,1,4358_7778195_9037001,4358_248 -4358_80697,205,4358_7427,Bachelor's Walk,4317,1,4358_7778195_9037013,4358_246 -4358_80697,96,4358_7428,Bachelor's Walk,11502,1,4358_7778195_9037005,4358_248 -4358_80698,205,4358_7430,Damastown,4101,0,4358_7778195_9038004,4358_251 -4358_80698,205,4358_7431,Damastown,4053,0,4358_7778195_9038008,4358_251 -4358_80698,205,4358_7432,Damastown,4137,0,4358_7778195_9038011,4358_251 -4358_80698,205,4358_7433,Damastown,4225,0,4358_7778195_9038002,4358_251 -4358_80698,205,4358_7434,Damastown,4076,0,4358_7778195_9038003,4358_251 -4358_80698,96,4358_7435,Damastown,11356,0,4358_7778195_9038001,4358_250 -4358_80698,205,4358_7436,Damastown,7786,0,4358_7778195_8818104,4358_251 -4358_80698,205,4358_7437,Damastown,4090,0,4358_7778195_9038010,4358_250 -4358_80698,96,4358_7438,Damastown,11371,0,4358_7778195_9038003,4358_252 -4358_80698,205,4358_7439,Damastown,4088,0,4358_7778195_9038001,4358_250 -4358_80754,96,4358_744,Parnell St,9871,1,4358_7778195_5120003,4358_24 -4358_80698,96,4358_7440,Damastown,11393,0,4358_7778195_9038005,4358_252 -4358_80698,205,4358_7442,Damastown,4066,0,4358_7778195_9038013,4358_250 -4358_80698,96,4358_7444,Damastown,11301,0,4358_7778195_9038006,4358_252 -4358_80698,205,4358_7445,Damastown,4103,0,4358_7778195_9038004,4358_250 -4358_80698,96,4358_7447,Damastown,11368,0,4358_7778195_9038010,4358_252 -4358_80698,205,4358_7448,Damastown,4127,0,4358_7778195_9038009,4358_250 -4358_80698,96,4358_7449,Damastown,11377,0,4358_7778195_9038011,4358_250 -4358_80754,205,4358_745,Parnell St,2154,1,4358_7778195_5120003,4358_24 -4358_80698,205,4358_7451,Damastown,4227,0,4358_7778195_9038002,4358_250 -4358_80698,96,4358_7452,Damastown,11353,0,4358_7778195_9038009,4358_250 -4358_80698,205,4358_7455,Damastown,4116,0,4358_7778195_9038007,4358_252 -4358_80698,96,4358_7456,Damastown,11410,0,4358_7778195_9038004,4358_253 -4358_80698,96,4358_7457,Damastown,11261,0,4358_7778195_9038017,4358_250 -4358_80698,205,4358_7459,Damastown,4168,0,4358_7778195_9038015,4358_253 -4358_80698,96,4358_7460,Damastown,11310,0,4358_7778195_9038014,4358_250 -4358_80698,205,4358_7461,Damastown,4148,0,4358_7778195_9038016,4358_252 -4358_80698,205,4358_7463,Damastown,4057,0,4358_7778195_9038008,4358_250 -4358_80698,96,4358_7464,Damastown,11328,0,4358_7778195_9038015,4358_252 -4358_80698,205,4358_7466,Damastown,4141,0,4358_7778195_9038011,4358_250 -4358_80698,96,4358_7467,Damastown,11337,0,4358_7778195_9038016,4358_252 -4358_80698,205,4358_7469,Damastown,4176,0,4358_7778195_9038014,4358_250 -4358_80754,96,4358_747,Parnell St,9821,1,4358_7778195_5120002,4358_24 -4358_80698,96,4358_7470,Damastown,11302,0,4358_7778195_9038019,4358_252 -4358_80698,205,4358_7473,Damastown,4118,0,4358_7778195_9038007,4358_252 -4358_80698,96,4358_7474,Damastown,11324,0,4358_7778195_9038013,4358_253 -4358_80698,205,4358_7475,Damastown,4154,0,4358_7778195_9038017,4358_250 -4358_80698,96,4358_7476,Damastown,11283,0,4358_7778195_9038020,4358_252 -4358_80698,205,4358_7479,Damastown,4070,0,4358_7778195_9038013,4358_252 -4358_80698,96,4358_7480,Damastown,11390,0,4358_7778195_9038012,4358_253 -4358_80698,205,4358_7481,Damastown,4107,0,4358_7778195_9038004,4358_250 -4358_80698,96,4358_7482,Damastown,11312,0,4358_7778195_9038014,4358_252 -4358_80698,205,4358_7484,Damastown,4131,0,4358_7778195_9038009,4358_250 -4358_80698,96,4358_7486,Damastown,11330,0,4358_7778195_9038015,4358_253 -4358_80698,205,4358_7487,Damastown,7808,0,4358_7778195_8818215,4358_250 -4358_80698,96,4358_7489,Damastown,11339,0,4358_7778195_9038016,4358_252 -4358_80754,205,4358_749,Parnell St,2161,1,4358_7778195_5120012,4358_25 -4358_80698,205,4358_7490,Damastown,4178,0,4358_7778195_9038014,4358_250 -4358_80698,205,4358_7491,Damastown,7876,0,4358_7778195_7038612,4358_250 -4358_80698,96,4358_7492,Damastown,11304,0,4358_7778195_9038019,4358_250 -4358_80698,205,4358_7494,Damastown,4082,0,4358_7778195_9038003,4358_250 -4358_80698,205,4358_7496,Damastown,4120,0,4358_7778195_9038007,4358_252 -4358_80698,96,4358_7497,Damastown,11326,0,4358_7778195_9038013,4358_253 -4358_80698,96,4358_7498,Damastown,11285,0,4358_7778195_9038020,4358_250 -4358_80760,96,4358_75,Shaw street,9388,0,4358_7778195_9001001,4358_1 -4358_80754,96,4358_750,Parnell St,9873,1,4358_7778195_5120003,4358_24 -4358_80698,205,4358_7500,Damastown,4152,0,4358_7778195_9038016,4358_253 -4358_80698,205,4358_7502,Damastown,4161,0,4358_7778195_9038018,4358_252 -4358_80698,96,4358_7503,Damastown,11347,0,4358_7778195_9038018,4358_253 -4358_80698,96,4358_7505,Damastown,11332,0,4358_7778195_9038015,4358_252 -4358_80698,205,4358_7506,Damastown,4166,0,4358_7778195_9038019,4358_253 -4358_80698,96,4358_7507,Damastown,11373,0,4358_7778195_9038021,4358_250 -4358_80698,205,4358_7508,Damastown,4061,0,4358_7778195_9038008,4358_252 -4358_80698,96,4358_7510,Damastown,11383,0,4358_7778195_9038011,4358_250 -4358_80698,205,4358_7511,Damastown,4180,0,4358_7778195_9038014,4358_252 -4358_80698,96,4358_7514,Damastown,11364,0,4358_7778195_9038001,4358_252 -4358_80698,205,4358_7515,Damastown,4122,0,4358_7778195_9038007,4358_253 -4358_80698,205,4358_7516,Damastown,4158,0,4358_7778195_9038017,4358_250 -4358_80698,96,4358_7517,Damastown,11287,0,4358_7778195_9038020,4358_252 -4358_80754,205,4358_752,Parnell St,2128,1,4358_7778195_5120011,4358_24 -4358_80698,205,4358_7520,Damastown,4074,0,4358_7778195_9038013,4358_252 -4358_80698,96,4358_7521,Damastown,11349,0,4358_7778195_9038018,4358_253 -4358_80698,205,4358_7523,Damastown,4063,0,4358_7778195_9038008,4358_252 -4358_80698,96,4358_7524,Damastown,11334,0,4358_7778195_9038015,4358_253 -4358_80698,205,4358_7525,Damastown,4182,0,4358_7778195_9038014,4358_250 -4358_80698,96,4358_7527,Damastown,11343,0,4358_7778195_9038016,4358_253 -4358_80698,205,4358_7529,Damastown,4100,0,4358_7778195_9038010,4358_252 -4358_80698,96,4358_7530,Damastown,11366,0,4358_7778195_9038001,4358_253 -4358_80698,205,4358_7531,Burlington Road,4075,1,4358_7778195_9038003,4358_254 -4358_80698,96,4358_7532,Burlington Road,11355,1,4358_7778195_9038001,4358_254 -4358_80698,205,4358_7533,Burlington Road,4113,1,4358_7778195_9038007,4358_254 -4358_80698,96,4358_7534,Burlington Road,11370,1,4358_7778195_9038003,4358_254 -4358_80698,205,4358_7535,Burlington Road,4087,1,4358_7778195_9038001,4358_254 -4358_80698,205,4358_7536,Burlington Road,4332,1,4358_7778195_9038006,4358_254 -4358_80698,96,4358_7537,Burlington Road,11392,1,4358_7778195_9038005,4358_254 -4358_80698,205,4358_7538,Burlington Road,7807,1,4358_7778195_8818114,4358_254 -4358_80698,96,4358_7539,Burlington Road,11417,1,4358_7778195_9038008,4358_254 -4358_80754,96,4358_754,Parnell St,9823,1,4358_7778195_5120002,4358_25 -4358_80698,205,4358_7540,Burlington Road,4126,1,4358_7778195_9038009,4358_254 -4358_80698,205,4358_7541,Burlington Road,4138,1,4358_7778195_9038011,4358_254 -4358_80698,96,4358_7543,Burlington Road,11398,1,4358_7778195_9038007,4358_257 -4358_80698,205,4358_7544,Burlington Road,4226,1,4358_7778195_9038002,4358_254 -4358_80698,96,4358_7545,Burlington Road,11357,1,4358_7778195_9038001,4358_254 -4358_80698,205,4358_7547,Burlington Road,4147,1,4358_7778195_9038005,4358_254 -4358_80698,96,4358_7549,Burlington Road,11321,1,4358_7778195_9038013,4358_257 -4358_80754,205,4358_755,Parnell St,2163,1,4358_7778195_5120012,4358_24 -4358_80698,205,4358_7550,Burlington Road,4115,1,4358_7778195_9038007,4358_254 -4358_80698,96,4358_7551,Burlington Road,11394,1,4358_7778195_9038005,4358_254 -4358_80698,205,4358_7553,Burlington Road,4167,1,4358_7778195_9038015,4358_254 -4358_80698,96,4358_7555,Burlington Road,11309,1,4358_7778195_9038014,4358_257 -4358_80698,205,4358_7556,Burlington Road,4104,1,4358_7778195_9038004,4358_254 -4358_80698,96,4358_7558,Burlington Road,11327,1,4358_7778195_9038015,4358_257 -4358_80698,205,4358_7559,Burlington Road,4128,1,4358_7778195_9038009,4358_254 -4358_80754,96,4358_756,Parnell St,9875,1,4358_7778195_5120003,4358_24 -4358_80698,96,4358_7561,Burlington Road,11336,1,4358_7778195_9038016,4358_257 -4358_80698,205,4358_7562,Burlington Road,4228,1,4358_7778195_9038002,4358_254 -4358_80698,96,4358_7564,Burlington Road,11359,1,4358_7778195_9038001,4358_257 -4358_80698,205,4358_7565,Burlington Road,4079,1,4358_7778195_9038003,4358_254 -4358_80698,96,4358_7567,Burlington Road,11323,1,4358_7778195_9038013,4358_257 -4358_80698,205,4358_7568,Burlington Road,4093,1,4358_7778195_9038010,4358_254 -4358_80698,96,4358_7569,Burlington Road,11396,1,4358_7778195_9038005,4358_254 -4358_80698,205,4358_7571,Burlington Road,4169,1,4358_7778195_9038015,4358_254 -4358_80698,96,4358_7573,Burlington Road,11389,1,4358_7778195_9038012,4358_257 -4358_80698,205,4358_7574,Burlington Road,4149,1,4358_7778195_9038016,4358_254 -4358_80698,96,4358_7575,Burlington Road,11311,1,4358_7778195_9038014,4358_254 -4358_80698,205,4358_7577,Burlington Road,4058,1,4358_7778195_9038008,4358_254 -4358_80698,96,4358_7579,Burlington Road,11329,1,4358_7778195_9038015,4358_257 -4358_80754,205,4358_758,Parnell St,2130,1,4358_7778195_5120011,4358_24 -4358_80698,205,4358_7580,Burlington Road,4142,1,4358_7778195_9038011,4358_254 -4358_80698,96,4358_7582,Burlington Road,11338,1,4358_7778195_9038016,4358_257 -4358_80698,205,4358_7583,Burlington Road,4177,1,4358_7778195_9038014,4358_254 -4358_80698,96,4358_7584,Burlington Road,11303,1,4358_7778195_9038019,4358_254 -4358_80698,205,4358_7586,Burlington Road,4119,1,4358_7778195_9038007,4358_254 -4358_80698,96,4358_7588,Burlington Road,11325,1,4358_7778195_9038013,4358_257 -4358_80698,205,4358_7589,Burlington Road,7783,1,4358_7778195_8818201,4358_254 -4358_80698,205,4358_7590,Burlington Road,4155,1,4358_7778195_9038017,4358_255 -4358_80698,96,4358_7592,Burlington Road,11284,1,4358_7778195_9038020,4358_257 -4358_80698,205,4358_7593,Burlington Road,4171,1,4358_7778195_9038015,4358_255 -4358_80698,96,4358_7595,Burlington Road,11391,1,4358_7778195_9038012,4358_257 -4358_80698,96,4358_7596,Burlington Road,11423,1,4358_7778195_9038008,4358_254 -4358_80698,205,4358_7598,Burlington Road,4108,1,4358_7778195_9038004,4358_255 -4358_80760,205,4358_76,Shaw street,3143,0,4358_7778195_9001004,4358_1 -4358_80754,96,4358_760,Parnell St,9825,1,4358_7778195_5120002,4358_25 -4358_80698,96,4358_7600,Burlington Road,11404,1,4358_7778195_9038007,4358_257 -4358_80698,205,4358_7601,Burlington Road,4132,1,4358_7778195_9038009,4358_255 -4358_80698,96,4358_7603,Burlington Road,11340,1,4358_7778195_9038016,4358_257 -4358_80698,205,4358_7604,Burlington Road,4179,1,4358_7778195_9038014,4358_254 -4358_80698,96,4358_7605,Burlington Road,11305,1,4358_7778195_9038019,4358_254 -4358_80698,205,4358_7607,Burlington Road,4184,1,4358_7778195_9038020,4358_254 -4358_80698,96,4358_7609,Burlington Road,11415,1,4358_7778195_9038004,4358_257 -4358_80754,205,4358_761,Parnell St,2165,1,4358_7778195_5120012,4358_24 -4358_80698,205,4358_7610,Burlington Road,4097,1,4358_7778195_9038010,4358_254 -4358_80698,96,4358_7611,Burlington Road,11266,1,4358_7778195_9038017,4358_254 -4358_80698,205,4358_7613,Burlington Road,4162,1,4358_7778195_9038018,4358_254 -4358_80698,96,4358_7614,Burlington Road,11425,1,4358_7778195_9038008,4358_254 -4358_80698,205,4358_7616,Burlington Road,4110,1,4358_7778195_9038004,4358_254 -4358_80698,96,4358_7618,Burlington Road,11406,1,4358_7778195_9038007,4358_257 -4358_80698,205,4358_7619,Burlington Road,4134,1,4358_7778195_9038009,4358_254 -4358_80754,96,4358_762,Parnell St,9877,1,4358_7778195_5120003,4358_24 -4358_80698,96,4358_7621,Burlington Road,11342,1,4358_7778195_9038016,4358_257 -4358_80698,205,4358_7622,Burlington Road,4085,1,4358_7778195_9038003,4358_254 -4358_80698,96,4358_7624,Burlington Road,11307,1,4358_7778195_9038019,4358_257 -4358_80698,205,4358_7625,Burlington Road,4099,1,4358_7778195_9038010,4358_254 -4358_80698,96,4358_7626,Burlington Road,11288,1,4358_7778195_9038020,4358_254 -4358_80698,205,4358_7628,Burlington Road,4164,1,4358_7778195_9038018,4358_254 -4358_80698,96,4358_7630,Parnell Sq,11350,1,4358_7778195_9038018,4358_258 -4358_80698,205,4358_7631,Parnell Sq,4064,1,4358_7778195_9038008,4358_256 -4358_80698,96,4358_7633,Parnell Sq,11335,1,4358_7778195_9038015,4358_258 -4358_80699,96,4358_7634,Damastown,11397,0,4358_7778195_9038007,4358_259 -4358_80699,96,4358_7635,Damastown,11351,0,4358_7778195_9038009,4358_259 -4358_80699,205,4358_7636,Damastown,4114,0,4358_7778195_9038007,4358_259 -4358_80699,96,4358_7638,Damastown,11408,0,4358_7778195_9038004,4358_260 -4358_80699,205,4358_7639,Damastown,6466,0,4358_7778195_7038585,4358_259 -4358_80699,205,4358_7640,Damastown,7858,0,4358_7778195_8828102,4358_259 -4358_80699,96,4358_7642,Damastown,11386,0,4358_7778195_9038012,4358_260 -4358_80699,205,4358_7643,Damastown,4333,0,4358_7778195_9038006,4358_259 -4358_80699,96,4358_7644,Damastown,11418,0,4358_7778195_9038008,4358_259 -4358_80699,205,4358_7646,Damastown,4055,0,4358_7778195_9038008,4358_259 -4358_80699,96,4358_7648,Damastown,11399,0,4358_7778195_9038007,4358_260 -4358_80699,205,4358_7649,Damastown,4139,0,4358_7778195_9038011,4358_259 -4358_80754,205,4358_765,Parnell St,2132,1,4358_7778195_5120011,4358_25 -4358_80699,96,4358_7650,Damastown,11358,0,4358_7778195_9038001,4358_259 -4358_80699,205,4358_7652,Damastown,4174,0,4358_7778195_9038014,4358_259 -4358_80699,205,4358_7653,Damastown,4078,0,4358_7778195_9038003,4358_259 -4358_80699,96,4358_7655,Damastown,11322,0,4358_7778195_9038013,4358_261 -4358_80699,96,4358_7656,Damastown,11395,0,4358_7778195_9038005,4358_259 -4358_80699,205,4358_7657,Damastown,4092,0,4358_7778195_9038010,4358_260 -4358_80754,96,4358_766,Parnell St,9827,1,4358_7778195_5120002,4358_27 -4358_80699,205,4358_7660,Damastown,4068,0,4358_7778195_9038013,4358_260 -4358_80699,96,4358_7661,Damastown,11388,0,4358_7778195_9038012,4358_261 -4358_80699,205,4358_7662,Damastown,4105,0,4358_7778195_9038004,4358_259 -4358_80699,96,4358_7663,Damastown,11420,0,4358_7778195_9038008,4358_260 -4358_80699,205,4358_7665,Damastown,4129,0,4358_7778195_9038009,4358_259 -4358_80699,96,4358_7667,Damastown,11401,0,4358_7778195_9038007,4358_261 -4358_80699,96,4358_7668,Damastown,11379,0,4358_7778195_9038011,4358_259 -4358_80756,205,4358_767,Drimnagh Road,3613,0,4358_7778195_7122001,4358_28 -4358_80699,205,4358_7670,Damastown,4229,0,4358_7778195_9038002,4358_261 -4358_80699,205,4358_7671,Damastown,4080,0,4358_7778195_9038003,4358_259 -4358_80699,96,4358_7673,Damastown,11360,0,4358_7778195_9038001,4358_261 -4358_80699,205,4358_7675,Damastown,4094,0,4358_7778195_9038010,4358_260 -4358_80699,96,4358_7676,Damastown,11412,0,4358_7778195_9038004,4358_261 -4358_80699,96,4358_7678,Damastown,11263,0,4358_7778195_9038017,4358_260 -4358_80699,205,4358_7679,Damastown,4170,0,4358_7778195_9038015,4358_261 -4358_80756,205,4358_768,Drimnagh Road,3536,0,4358_7778195_7122003,4358_28 -4358_80699,205,4358_7680,Damastown,4150,0,4358_7778195_9038016,4358_259 -4358_80699,96,4358_7682,Damastown,11345,0,4358_7778195_9038018,4358_261 -4358_80699,96,4358_7683,Damastown,11422,0,4358_7778195_9038008,4358_259 -4358_80699,205,4358_7684,Damastown,4059,0,4358_7778195_9038008,4358_260 -4358_80699,205,4358_7687,Damastown,7801,0,4358_7778195_8818211,4358_260 -4358_80699,96,4358_7688,Damastown,11403,0,4358_7778195_9038007,4358_261 -4358_80699,205,4358_7689,Damastown,4143,0,4358_7778195_9038011,4358_259 -4358_80756,205,4358_769,Drimnagh Road,3394,0,4358_7778195_7122005,4358_28 -4358_80699,96,4358_7690,Damastown,11381,0,4358_7778195_9038011,4358_259 -4358_80699,205,4358_7692,Damastown,7822,0,4358_7778195_8818221,4358_259 -4358_80699,205,4358_7693,Damastown,6470,0,4358_7778195_7038674,4358_259 -4358_80699,205,4358_7695,Damastown,4183,0,4358_7778195_9038020,4358_260 -4358_80699,96,4358_7696,Damastown,11362,0,4358_7778195_9038001,4358_261 -4358_80699,205,4358_7698,Damastown,4096,0,4358_7778195_9038010,4358_260 -4358_80699,96,4358_7699,Damastown,11414,0,4358_7778195_9038004,4358_261 -4358_80756,96,4358_770,Drimnagh Road,13107,0,4358_7778195_7122001,4358_28 -4358_80699,205,4358_7700,Damastown,4156,0,4358_7778195_9038017,4358_259 -4358_80699,96,4358_7701,Damastown,11265,0,4358_7778195_9038017,4358_260 -4358_80699,96,4358_7703,Damastown,11424,0,4358_7778195_9038008,4358_259 -4358_80699,205,4358_7704,Damastown,4072,0,4358_7778195_9038013,4358_260 -4358_80699,205,4358_7706,Damastown,4109,0,4358_7778195_9038004,4358_259 -4358_80699,96,4358_7708,Damastown,11405,0,4358_7778195_9038007,4358_261 -4358_80699,205,4358_7709,Damastown,4133,0,4358_7778195_9038009,4358_259 -4358_80756,205,4358_771,Drimnagh Road,3385,0,4358_7778195_7122007,4358_28 -4358_80699,96,4358_7711,Damastown,11341,0,4358_7778195_9038016,4358_261 -4358_80699,205,4358_7712,Damastown,4084,0,4358_7778195_9038003,4358_259 -4358_80699,96,4358_7713,Damastown,11306,0,4358_7778195_9038019,4358_260 -4358_80699,205,4358_7716,Damastown,4098,0,4358_7778195_9038010,4358_260 -4358_80699,96,4358_7717,Damastown,11416,0,4358_7778195_9038004,4358_261 -4358_80699,96,4358_7718,Damastown,11267,0,4358_7778195_9038017,4358_259 -4358_80699,205,4358_7719,Damastown,4163,0,4358_7778195_9038018,4358_260 -4358_80756,96,4358_772,Drimnagh Road,13123,0,4358_7778195_7122003,4358_28 -4358_80699,205,4358_7721,Damastown,4111,0,4358_7778195_9038004,4358_259 -4358_80699,96,4358_7723,Damastown,11426,0,4358_7778195_9038008,4358_261 -4358_80699,96,4358_7724,Damastown,11375,0,4358_7778195_9038021,4358_259 -4358_80699,205,4358_7725,Damastown,4135,0,4358_7778195_9038009,4358_260 -4358_80699,96,4358_7727,Damastown,11385,0,4358_7778195_9038011,4358_259 -4358_80699,205,4358_7729,Damastown,4124,0,4358_7778195_9038007,4358_261 -4358_80756,205,4358_773,Drimnagh Road,3503,0,4358_7778195_7122009,4358_30 -4358_80699,96,4358_7730,Burlington Road,11369,1,4358_7778195_9038002,4358_262 -4358_80699,96,4358_7731,Burlington Road,11407,1,4358_7778195_9038004,4358_262 -4358_80699,96,4358_7732,Burlington Road,11300,1,4358_7778195_9038006,4358_262 -4358_80699,96,4358_7733,Burlington Road,11367,1,4358_7778195_9038010,4358_262 -4358_80699,96,4358_7734,Burlington Road,11376,1,4358_7778195_9038011,4358_262 -4358_80699,205,4358_7736,Burlington Road,4173,1,4358_7778195_9038014,4358_262 -4358_80699,96,4358_7737,Burlington Road,11352,1,4358_7778195_9038009,4358_262 -4358_80699,205,4358_7739,Burlington Road,4077,1,4358_7778195_9038003,4358_262 -4358_80756,205,4358_774,Drimnagh Road,3573,0,4358_7778195_7122010,4358_28 -4358_80699,96,4358_7741,Burlington Road,11409,1,4358_7778195_9038004,4358_264 -4358_80699,205,4358_7742,Burlington Road,4091,1,4358_7778195_9038010,4358_262 -4358_80699,96,4358_7744,Burlington Road,11387,1,4358_7778195_9038012,4358_264 -4358_80699,205,4358_7745,Burlington Road,4067,1,4358_7778195_9038013,4358_262 -4358_80699,96,4358_7746,Burlington Road,11419,1,4358_7778195_9038008,4358_262 -4358_80699,205,4358_7748,Burlington Road,4056,1,4358_7778195_9038008,4358_262 -4358_80756,205,4358_775,Drimnagh Road,3583,0,4358_7778195_7122012,4358_28 -4358_80699,96,4358_7750,Burlington Road,11400,1,4358_7778195_9038007,4358_264 -4358_80699,205,4358_7751,Burlington Road,4140,1,4358_7778195_9038011,4358_262 -4358_80699,96,4358_7752,Burlington Road,11378,1,4358_7778195_9038011,4358_262 -4358_80699,205,4358_7754,Burlington Road,4175,1,4358_7778195_9038014,4358_262 -4358_80699,96,4358_7755,Burlington Road,11354,1,4358_7778195_9038009,4358_262 -4358_80699,205,4358_7757,Burlington Road,4117,1,4358_7778195_9038007,4358_262 -4358_80699,96,4358_7759,Burlington Road,11411,1,4358_7778195_9038004,4358_264 -4358_80756,96,4358_776,Drimnagh Road,13156,0,4358_7778195_7122005,4358_30 -4358_80699,205,4358_7760,Burlington Road,4153,1,4358_7778195_9038017,4358_262 -4358_80699,96,4358_7761,Burlington Road,11262,1,4358_7778195_9038017,4358_262 -4358_80699,205,4358_7763,Burlington Road,4069,1,4358_7778195_9038013,4358_262 -4358_80699,96,4358_7765,Burlington Road,11344,1,4358_7778195_9038018,4358_264 -4358_80699,205,4358_7766,Burlington Road,4106,1,4358_7778195_9038004,4358_262 -4358_80699,96,4358_7767,Burlington Road,11421,1,4358_7778195_9038008,4358_262 -4358_80699,205,4358_7769,Burlington Road,4130,1,4358_7778195_9038009,4358_262 -4358_80756,205,4358_777,Drimnagh Road,3499,0,4358_7778195_7122002,4358_28 -4358_80699,96,4358_7771,Burlington Road,11402,1,4358_7778195_9038007,4358_264 -4358_80699,205,4358_7772,Burlington Road,4230,1,4358_7778195_9038002,4358_262 -4358_80699,96,4358_7773,Burlington Road,11380,1,4358_7778195_9038011,4358_262 -4358_80699,205,4358_7775,Burlington Road,4081,1,4358_7778195_9038003,4358_262 -4358_80699,96,4358_7777,Burlington Road,11361,1,4358_7778195_9038001,4358_264 -4358_80699,205,4358_7778,Burlington Road,4095,1,4358_7778195_9038010,4358_266 -4358_80756,205,4358_778,Drimnagh Road,3575,0,4358_7778195_7122014,4358_28 -4358_80699,96,4358_7780,Burlington Road,11413,1,4358_7778195_9038004,4358_264 -4358_80699,205,4358_7781,Burlington Road,7871,1,4358_7778195_8828209,4358_266 -4358_80699,96,4358_7782,Burlington Road,11264,1,4358_7778195_9038017,4358_262 -4358_80699,205,4358_7784,Burlington Road,4160,1,4358_7778195_9038018,4358_266 -4358_80699,205,4358_7785,Burlington Road,4071,1,4358_7778195_9038013,4358_266 -4358_80699,96,4358_7787,Burlington Road,11346,1,4358_7778195_9038018,4358_264 -4358_80699,205,4358_7788,Burlington Road,4165,1,4358_7778195_9038019,4358_266 -4358_80756,96,4358_779,Drimnagh Road,13180,0,4358_7778195_7122007,4358_30 -4358_80699,96,4358_7790,Burlington Road,11331,1,4358_7778195_9038015,4358_264 -4358_80699,205,4358_7791,Burlington Road,4060,1,4358_7778195_9038008,4358_262 -4358_80699,96,4358_7792,Burlington Road,11372,1,4358_7778195_9038021,4358_262 -4358_80699,205,4358_7794,Burlington Road,4144,1,4358_7778195_9038011,4358_262 -4358_80699,96,4358_7795,Burlington Road,11382,1,4358_7778195_9038011,4358_262 -4358_80699,205,4358_7797,Burlington Road,4083,1,4358_7778195_9038003,4358_262 -4358_80699,96,4358_7799,Burlington Road,11363,1,4358_7778195_9038001,4358_264 -4358_80760,96,4358_78,Shaw street,9518,0,4358_7778195_9001005,4358_1 -4358_80699,205,4358_7800,Burlington Road,4121,1,4358_7778195_9038007,4358_262 -4358_80699,96,4358_7801,Burlington Road,11286,1,4358_7778195_9038020,4358_262 -4358_80699,205,4358_7803,Burlington Road,4157,1,4358_7778195_9038017,4358_262 -4358_80699,96,4358_7804,Burlington Road,11348,1,4358_7778195_9038018,4358_262 -4358_80699,205,4358_7806,Burlington Road,4073,1,4358_7778195_9038013,4358_262 -4358_80699,96,4358_7808,Burlington Road,11333,1,4358_7778195_9038015,4358_264 -4358_80699,205,4358_7809,Burlington Road,4062,1,4358_7778195_9038008,4358_262 -4358_80756,205,4358_781,Drimnagh Road,3422,0,4358_7778195_7122004,4358_28 -4358_80699,96,4358_7810,Burlington Road,11374,1,4358_7778195_9038021,4358_262 -4358_80699,205,4358_7812,Burlington Road,4181,1,4358_7778195_9038014,4358_262 -4358_80699,96,4358_7813,Burlington Road,11384,1,4358_7778195_9038011,4358_262 -4358_80699,205,4358_7815,Burlington Road,4123,1,4358_7778195_9038007,4358_262 -4358_80699,96,4358_7817,Burlington Road,11365,1,4358_7778195_9038001,4358_264 -4358_80699,205,4358_7818,Burlington Road,4159,1,4358_7778195_9038017,4358_262 -4358_80699,96,4358_7819,Burlington Road,11268,1,4358_7778195_9038017,4358_262 -4358_80756,96,4358_782,Drimnagh Road,13192,0,4358_7778195_7122002,4358_28 -4358_80699,205,4358_7821,Parnell Sq,4112,1,4358_7778195_9038004,4358_263 -4358_80699,96,4358_7823,Parnell Sq,11427,1,4358_7778195_9038008,4358_265 -4358_80699,205,4358_7824,Parnell Sq,4136,1,4358_7778195_9038009,4358_263 -4358_80700,205,4358_7825,Damastown,4086,0,4358_7778195_9038001,4358_267 -4358_80700,205,4358_7826,Damastown,4331,0,4358_7778195_9038006,4358_267 -4358_80700,205,4358_7827,Damastown,4125,0,4358_7778195_9038009,4358_267 -4358_80700,205,4358_7828,Damastown,4329,0,4358_7778195_9038012,4358_267 -4358_80700,205,4358_7829,Damastown,4172,0,4358_7778195_9038014,4358_267 -4358_80756,205,4358_783,Drimnagh Road,3403,0,4358_7778195_7122015,4358_30 -4358_80700,205,4358_7830,O'Connell Street,7869,1,4358_7778195_8828110,4358_269 -4358_80700,205,4358_7831,Burlington Road,4089,1,4358_7778195_9038010,4358_268 -4358_80700,205,4358_7832,Burlington Road,4065,1,4358_7778195_9038013,4358_268 -4358_80700,205,4358_7833,Burlington Road,4102,1,4358_7778195_9038004,4358_268 -4358_80700,205,4358_7834,Burlington Road,4054,1,4358_7778195_9038008,4358_268 -4358_80700,205,4358_7835,Burlington Road,6438,1,4358_7778195_7038556,4358_268 -4358_80700,205,4358_7836,Burlington Road,4330,1,4358_7778195_9038012,4358_268 -4358_80702,205,4358_7837,Damastown,4146,0,4358_7778195_9038005,4358_270 -4358_80702,205,4358_7838,Burlington Road,4151,1,4358_7778195_9038016,4358_271 -4358_80705,205,4358_7839,Ongar,4002,0,4358_7778195_7039013,4358_272 -4358_80756,205,4358_784,Drimnagh Road,3439,0,4358_7778195_7122006,4358_28 -4358_80705,96,4358_7840,Ongar,11117,0,4358_7778195_7039011,4358_272 -4358_80705,205,4358_7841,Ongar,3679,0,4358_7778195_7039016,4358_272 -4358_80705,96,4358_7842,Ongar,10965,0,4358_7778195_7039015,4358_272 -4358_80705,205,4358_7843,Ongar,3670,0,4358_7778195_7039005,4358_272 -4358_80705,96,4358_7844,Ongar,11056,0,4358_7778195_7039007,4358_272 -4358_80705,205,4358_7845,Ongar,3650,0,4358_7778195_7039010,4358_272 -4358_80705,96,4358_7846,Ongar,11174,0,4358_7778195_7039019,4358_272 -4358_80705,205,4358_7847,Ongar,3686,0,4358_7778195_7039014,4358_272 -4358_80705,96,4358_7848,Ongar,11083,0,4358_7778195_7039010,4358_272 -4358_80705,205,4358_7850,Ongar,3693,0,4358_7778195_7039017,4358_272 -4358_80705,96,4358_7851,Ongar,11139,0,4358_7778195_7039014,4358_272 -4358_80705,205,4358_7853,Ongar,3699,0,4358_7778195_7039019,4358_272 -4358_80705,96,4358_7854,Ongar,11154,0,4358_7778195_7039017,4358_272 -4358_80705,205,4358_7855,Ongar,3726,0,4358_7778195_7039021,4358_272 -4358_80705,205,4358_7857,Ongar,3963,0,4358_7778195_7039024,4358_272 -4358_80705,96,4358_7858,Ongar,11119,0,4358_7778195_7039011,4358_272 -4358_80756,96,4358_786,Drimnagh Road,13136,0,4358_7778195_7122004,4358_28 -4358_80705,96,4358_7860,Ongar,10967,0,4358_7778195_7039015,4358_272 -4358_80705,205,4358_7861,Ongar,4004,0,4358_7778195_7039013,4358_272 -4358_80705,96,4358_7863,Ongar,11058,0,4358_7778195_7039007,4358_272 -4358_80705,205,4358_7864,Ongar,3645,0,4358_7778195_7039032,4358_272 -4358_80705,96,4358_7866,Ongar,11176,0,4358_7778195_7039019,4358_272 -4358_80705,205,4358_7867,Ongar,3672,0,4358_7778195_7039005,4358_272 -4358_80705,96,4358_7869,Ongar,11029,0,4358_7778195_7039022,4358_272 -4358_80756,205,4358_787,Drimnagh Road,3393,0,4358_7778195_7122016,4358_28 -4358_80705,205,4358_7870,Ongar,3652,0,4358_7778195_7039010,4358_272 -4358_80705,96,4358_7872,Ongar,11192,0,4358_7778195_7039028,4358_272 -4358_80705,205,4358_7874,Ongar,3695,0,4358_7778195_7039017,4358_273 -4358_80705,96,4358_7875,Ongar,11085,0,4358_7778195_7039010,4358_272 -4358_80705,205,4358_7876,Ongar,3701,0,4358_7778195_7039019,4358_272 -4358_80705,96,4358_7878,Ongar,11141,0,4358_7778195_7039014,4358_272 -4358_80705,205,4358_7879,Ongar,3728,0,4358_7778195_7039021,4358_272 -4358_80756,96,4358_788,Drimnagh Road,13148,0,4358_7778195_7122006,4358_28 -4358_80705,96,4358_7881,Ongar,11156,0,4358_7778195_7039017,4358_272 -4358_80705,205,4358_7882,Ongar,3664,0,4358_7778195_7039042,4358_272 -4358_80705,96,4358_7884,Ongar,11121,0,4358_7778195_7039011,4358_272 -4358_80705,205,4358_7885,Ongar,3994,0,4358_7778195_7039040,4358_272 -4358_80705,96,4358_7887,Ongar,10969,0,4358_7778195_7039015,4358_272 -4358_80705,205,4358_7889,Ongar,4006,0,4358_7778195_7039013,4358_273 -4358_80756,205,4358_789,Drimnagh Road,3598,0,4358_7778195_7122008,4358_30 -4358_80705,96,4358_7890,Ongar,11060,0,4358_7778195_7039007,4358_272 -4358_80705,205,4358_7891,Ongar,3647,0,4358_7778195_7039032,4358_272 -4358_80705,96,4358_7893,Ongar,11178,0,4358_7778195_7039019,4358_272 -4358_80705,205,4358_7894,Ongar,3674,0,4358_7778195_7039005,4358_272 -4358_80705,96,4358_7896,Ongar,11031,0,4358_7778195_7039022,4358_272 -4358_80705,205,4358_7897,Ongar,3654,0,4358_7778195_7039010,4358_272 -4358_80705,205,4358_7899,Ongar,7856,0,4358_7778195_8828202,4358_272 -4358_80760,205,4358_79,Shaw street,1797,0,4358_7778195_9001012,4358_1 -4358_80705,96,4358_7900,Ongar,11194,0,4358_7778195_7039028,4358_272 -4358_80705,205,4358_7902,Ongar,3697,0,4358_7778195_7039017,4358_273 -4358_80705,205,4358_7903,Ongar,3703,0,4358_7778195_7039019,4358_272 -4358_80705,96,4358_7904,Ongar,11087,0,4358_7778195_7039010,4358_272 -4358_80705,205,4358_7905,Ongar,3731,0,4358_7778195_7039046,4358_272 -4358_80705,96,4358_7907,Ongar,11143,0,4358_7778195_7039014,4358_272 -4358_80705,205,4358_7908,Ongar,3730,0,4358_7778195_7039021,4358_272 -4358_80756,205,4358_791,Drimnagh Road,3607,0,4358_7778195_7122011,4358_28 -4358_80705,96,4358_7910,Ongar,11158,0,4358_7778195_7039017,4358_272 -4358_80705,205,4358_7912,Ongar,3666,0,4358_7778195_7039042,4358_273 -4358_80705,96,4358_7913,Ongar,11123,0,4358_7778195_7039011,4358_272 -4358_80705,205,4358_7915,Ongar,3996,0,4358_7778195_7039040,4358_273 -4358_80705,96,4358_7916,Ongar,10971,0,4358_7778195_7039015,4358_272 -4358_80705,205,4358_7917,Ongar,4008,0,4358_7778195_7039013,4358_272 -4358_80705,96,4358_7919,Ongar,11062,0,4358_7778195_7039007,4358_272 -4358_80756,96,4358_792,Drimnagh Road,13109,0,4358_7778195_7122001,4358_28 -4358_80705,205,4358_7920,Ongar,3736,0,4358_7778195_7039047,4358_273 -4358_80705,96,4358_7922,Ongar,11180,0,4358_7778195_7039019,4358_272 -4358_80705,205,4358_7923,Ongar,3676,0,4358_7778195_7039005,4358_273 -4358_80705,205,4358_7925,Ongar,3656,0,4358_7778195_7039010,4358_272 -4358_80705,96,4358_7926,Ongar,11196,0,4358_7778195_7039028,4358_273 -4358_80705,96,4358_7928,Ongar,11089,0,4358_7778195_7039010,4358_272 -4358_80705,205,4358_7929,Ongar,3733,0,4358_7778195_7039046,4358_273 -4358_80756,205,4358_793,Drimnagh Road,3615,0,4358_7778195_7122001,4358_28 -4358_80705,205,4358_7931,Ongar,3668,0,4358_7778195_7039042,4358_272 -4358_80705,96,4358_7932,Ongar,11145,0,4358_7778195_7039014,4358_273 -4358_80705,205,4358_7934,Ongar,3998,0,4358_7778195_7039040,4358_272 -4358_80705,96,4358_7935,Ongar,11125,0,4358_7778195_7039011,4358_273 -4358_80705,205,4358_7937,Ongar,4010,0,4358_7778195_7039013,4358_272 -4358_80705,96,4358_7938,Ongar,10973,0,4358_7778195_7039015,4358_273 -4358_80705,205,4358_7940,Burlington Road,3669,1,4358_7778195_7039005,4358_274 -4358_80705,205,4358_7941,Burlington Road,3649,1,4358_7778195_7039010,4358_274 -4358_80705,96,4358_7942,Burlington Road,11055,1,4358_7778195_7039007,4358_274 -4358_80705,205,4358_7943,Burlington Road,3685,1,4358_7778195_7039014,4358_274 -4358_80705,96,4358_7944,Burlington Road,11082,1,4358_7778195_7039010,4358_274 -4358_80705,205,4358_7945,Burlington Road,3692,1,4358_7778195_7039017,4358_274 -4358_80705,205,4358_7946,Burlington Road,3698,1,4358_7778195_7039019,4358_274 -4358_80705,96,4358_7947,Burlington Road,11138,1,4358_7778195_7039014,4358_274 -4358_80705,205,4358_7948,Burlington Road,3725,1,4358_7778195_7039021,4358_274 -4358_80705,205,4358_7949,Burlington Road,3962,1,4358_7778195_7039024,4358_274 -4358_80756,96,4358_795,Drimnagh Road,13125,0,4358_7778195_7122003,4358_28 -4358_80705,96,4358_7950,Burlington Road,11153,1,4358_7778195_7039017,4358_274 -4358_80705,205,4358_7951,Burlington Road,3999,1,4358_7778195_7039027,4358_274 -4358_80705,205,4358_7952,Burlington Road,4003,1,4358_7778195_7039013,4358_274 -4358_80705,205,4358_7954,Burlington Road,7818,1,4358_7778195_8818120,4358_274 -4358_80705,96,4358_7955,Burlington Road,11118,1,4358_7778195_7039011,4358_274 -4358_80705,205,4358_7956,Burlington Road,3644,1,4358_7778195_7039032,4358_274 -4358_80705,96,4358_7958,Burlington Road,10966,1,4358_7778195_7039015,4358_274 -4358_80705,205,4358_7959,Burlington Road,3680,1,4358_7778195_7039016,4358_274 -4358_80756,205,4358_796,Drimnagh Road,3502,0,4358_7778195_7122013,4358_28 -4358_80705,205,4358_7961,Burlington Road,3671,1,4358_7778195_7039005,4358_274 -4358_80705,96,4358_7962,Burlington Road,11057,1,4358_7778195_7039007,4358_274 -4358_80705,205,4358_7964,Burlington Road,3659,1,4358_7778195_7039038,4358_274 -4358_80705,96,4358_7965,Burlington Road,11175,1,4358_7778195_7039019,4358_274 -4358_80705,205,4358_7967,Burlington Road,3651,1,4358_7778195_7039010,4358_274 -4358_80705,96,4358_7968,Burlington Road,11028,1,4358_7778195_7039022,4358_274 -4358_80756,96,4358_797,Drimnagh Road,13158,0,4358_7778195_7122005,4358_28 -4358_80705,205,4358_7970,Burlington Road,3694,1,4358_7778195_7039017,4358_274 -4358_80705,96,4358_7971,Burlington Road,11084,1,4358_7778195_7039010,4358_274 -4358_80705,205,4358_7973,Burlington Road,3700,1,4358_7778195_7039019,4358_274 -4358_80705,96,4358_7974,Burlington Road,11140,1,4358_7778195_7039014,4358_274 -4358_80705,205,4358_7975,Burlington Road,3727,1,4358_7778195_7039021,4358_274 -4358_80705,96,4358_7977,Burlington Road,11155,1,4358_7778195_7039017,4358_274 -4358_80705,205,4358_7978,Burlington Road,3964,1,4358_7778195_7039024,4358_274 -4358_80756,205,4358_798,Drimnagh Road,3396,0,4358_7778195_7122005,4358_28 -4358_80705,96,4358_7980,Burlington Road,11120,1,4358_7778195_7039011,4358_274 -4358_80705,205,4358_7981,Burlington Road,3993,1,4358_7778195_7039040,4358_274 -4358_80705,96,4358_7983,Burlington Road,10968,1,4358_7778195_7039015,4358_274 -4358_80705,205,4358_7985,Burlington Road,4005,1,4358_7778195_7039013,4358_275 -4358_80705,96,4358_7986,Burlington Road,11059,1,4358_7778195_7039007,4358_274 -4358_80705,205,4358_7988,Burlington Road,3646,1,4358_7778195_7039032,4358_274 -4358_80705,96,4358_7989,Burlington Road,11177,1,4358_7778195_7039019,4358_274 -4358_80705,205,4358_7991,Burlington Road,3673,1,4358_7778195_7039005,4358_274 -4358_80705,96,4358_7992,Burlington Road,11030,1,4358_7778195_7039022,4358_274 -4358_80705,205,4358_7994,Burlington Road,3653,1,4358_7778195_7039010,4358_274 -4358_80705,96,4358_7995,Burlington Road,11193,1,4358_7778195_7039028,4358_274 -4358_80705,205,4358_7997,Burlington Road,3696,1,4358_7778195_7039017,4358_274 -4358_80705,96,4358_7998,Burlington Road,11086,1,4358_7778195_7039010,4358_274 -4358_80760,205,4358_8,Shaw street,3135,0,4358_7778195_9001004,4358_2 -4358_80756,96,4358_800,Drimnagh Road,13167,0,4358_7778195_7122008,4358_28 -4358_80705,205,4358_8000,Burlington Road,3702,1,4358_7778195_7039019,4358_274 -4358_80705,96,4358_8001,Burlington Road,11142,1,4358_7778195_7039014,4358_274 -4358_80705,205,4358_8003,Burlington Road,3729,1,4358_7778195_7039021,4358_274 -4358_80705,96,4358_8004,Burlington Road,11157,1,4358_7778195_7039017,4358_274 -4358_80705,205,4358_8006,Burlington Road,3665,1,4358_7778195_7039042,4358_274 -4358_80705,96,4358_8007,Burlington Road,11122,1,4358_7778195_7039011,4358_274 -4358_80705,205,4358_8009,Burlington Road,3995,1,4358_7778195_7039040,4358_274 -4358_80756,205,4358_801,Drimnagh Road,3505,0,4358_7778195_7122009,4358_28 -4358_80705,96,4358_8010,Burlington Road,10970,1,4358_7778195_7039015,4358_274 -4358_80705,205,4358_8012,Burlington Road,4007,1,4358_7778195_7039013,4358_274 -4358_80705,96,4358_8013,Burlington Road,11061,1,4358_7778195_7039007,4358_274 -4358_80705,205,4358_8015,Burlington Road,3735,1,4358_7778195_7039047,4358_274 -4358_80705,96,4358_8016,Burlington Road,11179,1,4358_7778195_7039019,4358_274 -4358_80705,205,4358_8018,Burlington Road,3648,1,4358_7778195_7039032,4358_274 -4358_80705,96,4358_8019,Burlington Road,11032,1,4358_7778195_7039022,4358_274 -4358_80705,205,4358_8021,Burlington Road,3675,1,4358_7778195_7039005,4358_274 -4358_80705,96,4358_8022,Burlington Road,11195,1,4358_7778195_7039028,4358_274 -4358_80705,205,4358_8024,Burlington Road,3655,1,4358_7778195_7039010,4358_274 -4358_80705,96,4358_8025,Burlington Road,11088,1,4358_7778195_7039010,4358_274 -4358_80705,205,4358_8027,Burlington Road,3732,1,4358_7778195_7039046,4358_274 -4358_80705,96,4358_8028,Burlington Road,11144,1,4358_7778195_7039014,4358_274 -4358_80756,96,4358_803,Drimnagh Road,13182,0,4358_7778195_7122007,4358_28 -4358_80705,205,4358_8030,Burlington Road,3667,1,4358_7778195_7039042,4358_274 -4358_80705,96,4358_8031,Burlington Road,11124,1,4358_7778195_7039011,4358_274 -4358_80705,205,4358_8033,Burlington Road,3997,1,4358_7778195_7039040,4358_274 -4358_80705,96,4358_8034,Burlington Road,10972,1,4358_7778195_7039015,4358_274 -4358_80705,205,4358_8036,Burlington Road,4009,1,4358_7778195_7039013,4358_274 -4358_80705,96,4358_8037,Burlington Road,11146,1,4358_7778195_7039033,4358_274 -4358_80705,205,4358_8039,Burlington Road,3737,1,4358_7778195_7039047,4358_274 -4358_80756,205,4358_804,Drimnagh Road,3585,0,4358_7778195_7122012,4358_28 -4358_80705,96,4358_8040,Burlington Road,11063,1,4358_7778195_7039007,4358_274 -4358_80705,205,4358_8042,Burlington Road,3677,1,4358_7778195_7039005,4358_274 -4358_80705,96,4358_8043,Burlington Road,11181,1,4358_7778195_7039019,4358_274 -4358_80705,205,4358_8045,Burlington Road,3657,1,4358_7778195_7039010,4358_274 -4358_80705,96,4358_8046,Burlington Road,11197,1,4358_7778195_7039028,4358_274 -4358_80705,205,4358_8047,Burlington Road,3734,1,4358_7778195_7039046,4358_274 -4358_80705,96,4358_8048,Burlington Road,11090,1,4358_7778195_7039010,4358_274 -4358_80706,205,4358_8050,Ongar,4024,0,4358_7778195_7039002,4358_276 -4358_80706,96,4358_8051,Ongar,11237,0,4358_7778195_7039001,4358_277 -4358_80706,96,4358_8054,Ongar,11044,0,4358_7778195_7039004,4358_277 -4358_80706,205,4358_8055,Ongar,3715,0,4358_7778195_7039004,4358_278 -4358_80706,205,4358_8056,Ongar,3752,0,4358_7778195_7039009,4358_276 -4358_80706,96,4358_8058,Ongar,11007,0,4358_7778195_7039005,4358_278 -4358_80706,205,4358_8059,Ongar,3708,0,4358_7778195_7039001,4358_276 -4358_80756,96,4358_806,Drimnagh Road,13194,0,4358_7778195_7122002,4358_28 -4358_80706,96,4358_8061,Ongar,11034,0,4358_7778195_7039002,4358_278 -4358_80706,96,4358_8062,Ongar,11206,0,4358_7778195_7039003,4358_276 -4358_80706,205,4358_8064,Ongar,3975,0,4358_7778195_7039003,4358_278 -4358_80706,205,4358_8065,Ongar,3755,0,4358_7778195_7039006,4358_276 -4358_80706,96,4358_8066,Ongar,11109,0,4358_7778195_7039013,4358_277 -4358_80706,205,4358_8068,Ongar,4018,0,4358_7778195_7039007,4358_277 -4358_80706,96,4358_8069,Ongar,11016,0,4358_7778195_7039006,4358_278 -4358_80756,205,4358_807,Drimnagh Road,3577,0,4358_7778195_7122014,4358_28 -4358_80706,205,4358_8070,Ongar,3897,0,4358_7778195_7039025,4358_276 -4358_80706,96,4358_8071,Ongar,11239,0,4358_7778195_7039001,4358_276 -4358_80706,205,4358_8072,Ongar,3687,0,4358_7778195_7039029,4358_276 -4358_80706,96,4358_8073,Ongar,11255,0,4358_7778195_7039008,4358_276 -4358_80706,205,4358_8074,Ongar,6636,0,4358_7778195_7039008,4358_277 -4358_80706,205,4358_8076,Ongar,4036,0,4358_7778195_7039011,4358_276 -4358_80706,96,4358_8077,Ongar,11245,0,4358_7778195_7039009,4358_276 -4358_80706,205,4358_8078,Ongar,4026,0,4358_7778195_7039002,4358_276 -4358_80706,96,4358_8080,Ongar,11046,0,4358_7778195_7039004,4358_276 -4358_80706,205,4358_8081,Ongar,3985,0,4358_7778195_7039012,4358_277 -4358_80706,205,4358_8082,Ongar,3773,0,4358_7778195_7039015,4358_276 -4358_80706,96,4358_8084,Ongar,11225,0,4358_7778195_7039012,4358_276 -4358_80706,205,4358_8085,Ongar,3717,0,4358_7778195_7039004,4358_276 -4358_80706,205,4358_8086,Ongar,3796,0,4358_7778195_7039018,4358_276 -4358_80706,96,4358_8088,Ongar,11009,0,4358_7778195_7039005,4358_278 -4358_80706,205,4358_8089,Ongar,3803,0,4358_7778195_7039020,4358_276 -4358_80756,96,4358_809,Drimnagh Road,13138,0,4358_7778195_7122004,4358_28 -4358_80706,96,4358_8090,Ongar,11127,0,4358_7778195_7039016,4358_276 -4358_80706,205,4358_8092,Ongar,3854,0,4358_7778195_7039036,4358_277 -4358_80706,96,4358_8093,Ongar,11036,0,4358_7778195_7039002,4358_276 -4358_80706,205,4358_8094,Ongar,3866,0,4358_7778195_7039022,4358_276 -4358_80706,96,4358_8095,Ongar,11167,0,4358_7778195_7039021,4358_276 -4358_80706,205,4358_8097,Ongar,3746,0,4358_7778195_7039023,4358_277 -4358_80706,96,4358_8098,Ongar,11097,0,4358_7778195_7039018,4358_276 -4358_80706,205,4358_8099,Ongar,3875,0,4358_7778195_7039026,4358_276 -4358_80760,205,4358_81,Shaw street,1849,0,4358_7778195_9001006,4358_1 -4358_80756,205,4358_810,Drimnagh Road,3424,0,4358_7778195_7122004,4358_28 -4358_80706,96,4358_8100,Ongar,11208,0,4358_7778195_7039003,4358_276 -4358_80706,205,4358_8102,Ongar,3887,0,4358_7778195_7039028,4358_278 -4358_80706,205,4358_8103,Ongar,3767,0,4358_7778195_7039030,4358_276 -4358_80706,96,4358_8104,Ongar,11215,0,4358_7778195_7039023,4358_276 -4358_80706,205,4358_8106,Ongar,7821,0,4358_7778195_8818121,4358_276 -4358_80706,96,4358_8107,Ongar,11219,0,4358_7778195_7039025,4358_276 -4358_80706,205,4358_8108,Ongar,3710,0,4358_7778195_7039001,4358_276 -4358_80706,96,4358_8110,Ongar,11111,0,4358_7778195_7039013,4358_276 -4358_80706,205,4358_8111,Ongar,3832,0,4358_7778195_7039034,4358_276 -4358_80706,96,4358_8113,Ongar,11018,0,4358_7778195_7039006,4358_276 -4358_80706,205,4358_8114,Ongar,3977,0,4358_7778195_7039003,4358_276 -4358_80706,205,4358_8116,Ongar,3757,0,4358_7778195_7039006,4358_277 -4358_80706,96,4358_8117,Ongar,11241,0,4358_7778195_7039001,4358_278 -4358_80706,205,4358_8118,Ongar,3790,0,4358_7778195_7039035,4358_276 -4358_80706,96,4358_8119,Ongar,11160,0,4358_7778195_7039020,4358_276 -4358_80756,96,4358_812,Drimnagh Road,13150,0,4358_7778195_7122006,4358_28 -4358_80706,205,4358_8121,Ongar,4012,0,4358_7778195_7039037,4358_276 -4358_80706,96,4358_8122,Ongar,11257,0,4358_7778195_7039008,4358_276 -4358_80706,205,4358_8123,Ongar,4020,0,4358_7778195_7039007,4358_276 -4358_80706,96,4358_8125,Ongar,11247,0,4358_7778195_7039009,4358_276 -4358_80706,205,4358_8126,Ongar,3899,0,4358_7778195_7039025,4358_276 -4358_80706,96,4358_8128,Ongar,11048,0,4358_7778195_7039004,4358_276 -4358_80706,205,4358_8129,Ongar,3689,0,4358_7778195_7039029,4358_276 -4358_80756,205,4358_813,Drimnagh Road,3441,0,4358_7778195_7122006,4358_28 -4358_80706,96,4358_8131,Ongar,11103,0,4358_7778195_7039024,4358_277 -4358_80706,205,4358_8132,Ongar,6638,0,4358_7778195_7039008,4358_278 -4358_80706,205,4358_8133,Ongar,4038,0,4358_7778195_7039011,4358_276 -4358_80706,96,4358_8134,Ongar,11227,0,4358_7778195_7039012,4358_276 -4358_80706,205,4358_8136,Ongar,4028,0,4358_7778195_7039002,4358_276 -4358_80706,96,4358_8137,Ongar,11011,0,4358_7778195_7039005,4358_276 -4358_80706,205,4358_8139,Ongar,3987,0,4358_7778195_7039012,4358_277 -4358_80706,96,4358_8140,Ongar,11065,0,4358_7778195_7039026,4358_276 -4358_80706,205,4358_8141,Ongar,3775,0,4358_7778195_7039015,4358_276 -4358_80706,96,4358_8143,Ongar,10953,0,4358_7778195_7039029,4358_276 -4358_80706,205,4358_8144,Ongar,3719,0,4358_7778195_7039004,4358_276 -4358_80706,205,4358_8145,Ongar,3798,0,4358_7778195_7039018,4358_276 -4358_80706,96,4358_8146,Ongar,11129,0,4358_7778195_7039016,4358_277 -4358_80706,205,4358_8148,Ongar,3805,0,4358_7778195_7039020,4358_276 -4358_80706,96,4358_8149,Ongar,11038,0,4358_7778195_7039002,4358_276 -4358_80756,96,4358_815,Drimnagh Road,13174,0,4358_7778195_7122009,4358_28 -4358_80706,205,4358_8151,Ongar,3856,0,4358_7778195_7039036,4358_276 -4358_80706,96,4358_8152,Ongar,11169,0,4358_7778195_7039021,4358_276 -4358_80706,205,4358_8153,Ongar,3868,0,4358_7778195_7039022,4358_276 -4358_80706,96,4358_8155,Ongar,11099,0,4358_7778195_7039018,4358_276 -4358_80706,205,4358_8156,Ongar,3748,0,4358_7778195_7039023,4358_276 -4358_80706,96,4358_8158,Ongar,11210,0,4358_7778195_7039003,4358_276 -4358_80706,205,4358_8159,Ongar,3877,0,4358_7778195_7039026,4358_276 -4358_80756,205,4358_816,Drimnagh Road,3600,0,4358_7778195_7122008,4358_28 -4358_80706,96,4358_8160,Ongar,11217,0,4358_7778195_7039023,4358_276 -4358_80706,205,4358_8162,Ongar,3889,0,4358_7778195_7039028,4358_278 -4358_80706,205,4358_8163,Ongar,3769,0,4358_7778195_7039030,4358_276 -4358_80706,96,4358_8164,Ongar,11221,0,4358_7778195_7039025,4358_276 -4358_80706,205,4358_8166,Ongar,3822,0,4358_7778195_7039039,4358_276 -4358_80706,96,4358_8167,Ongar,11148,0,4358_7778195_7039027,4358_276 -4358_80706,205,4358_8168,Ongar,3712,0,4358_7778195_7039001,4358_276 -4358_80706,96,4358_8170,Ongar,11113,0,4358_7778195_7039013,4358_276 -4358_80706,205,4358_8171,Ongar,3834,0,4358_7778195_7039034,4358_276 -4358_80706,96,4358_8173,Ongar,11020,0,4358_7778195_7039006,4358_276 -4358_80706,205,4358_8174,Ongar,3979,0,4358_7778195_7039003,4358_276 -4358_80706,205,4358_8176,Ongar,3759,0,4358_7778195_7039006,4358_277 -4358_80706,96,4358_8177,Ongar,11243,0,4358_7778195_7039001,4358_278 -4358_80706,205,4358_8178,Ongar,7880,0,4358_7778195_7039615,4358_276 -4358_80706,205,4358_8179,Ongar,3792,0,4358_7778195_7039035,4358_276 -4358_80756,96,4358_818,Drimnagh Road,13111,0,4358_7778195_7122001,4358_28 -4358_80706,96,4358_8180,Ongar,11162,0,4358_7778195_7039020,4358_276 -4358_80706,205,4358_8182,Ongar,4014,0,4358_7778195_7039037,4358_276 -4358_80706,96,4358_8183,Ongar,11187,0,4358_7778195_7039030,4358_276 -4358_80706,205,4358_8184,Ongar,7877,0,4358_7778195_7039613,4358_276 -4358_80706,205,4358_8185,Ongar,4022,0,4358_7778195_7039007,4358_276 -4358_80706,96,4358_8187,Ongar,11259,0,4358_7778195_7039008,4358_276 -4358_80706,205,4358_8188,Ongar,4051,0,4358_7778195_7039041,4358_276 -4358_80756,205,4358_819,Drimnagh Road,3609,0,4358_7778195_7122011,4358_28 -4358_80706,96,4358_8190,Ongar,11249,0,4358_7778195_7039009,4358_276 -4358_80706,205,4358_8191,Ongar,3901,0,4358_7778195_7039025,4358_276 -4358_80706,205,4358_8192,Ongar,7804,0,4358_7778195_8818213,4358_276 -4358_80706,96,4358_8194,Ongar,11050,0,4358_7778195_7039004,4358_278 -4358_80706,205,4358_8195,Ongar,6432,0,4358_7778195_7391652,4358_276 -4358_80706,96,4358_8196,Ongar,11105,0,4358_7778195_7039024,4358_276 -4358_80706,205,4358_8198,Ongar,7797,0,4358_7778195_8818209,4358_276 -4358_80706,96,4358_8199,Ongar,11229,0,4358_7778195_7039012,4358_276 -4358_80760,96,4358_82,Shaw street,9458,0,4358_7778195_9001003,4358_1 -4358_80706,205,4358_8200,Ongar,3691,0,4358_7778195_7039029,4358_276 -4358_80706,205,4358_8202,Ongar,6640,0,4358_7778195_7039008,4358_277 -4358_80706,205,4358_8203,Ongar,4040,0,4358_7778195_7039011,4358_276 -4358_80706,96,4358_8204,Ongar,11013,0,4358_7778195_7039005,4358_276 -4358_80706,205,4358_8205,Ongar,4030,0,4358_7778195_7039002,4358_276 -4358_80706,205,4358_8207,Ongar,3989,0,4358_7778195_7039012,4358_277 -4358_80706,96,4358_8208,Ongar,11067,0,4358_7778195_7039026,4358_276 -4358_80706,205,4358_8209,Ongar,3777,0,4358_7778195_7039015,4358_276 -4358_80756,96,4358_821,Drimnagh Road,13127,0,4358_7778195_7122003,4358_28 -4358_80706,205,4358_8210,Ongar,7819,0,4358_7778195_8818220,4358_276 -4358_80706,96,4358_8211,Ongar,11092,0,4358_7778195_7039031,4358_276 -4358_80706,205,4358_8213,Ongar,3721,0,4358_7778195_7039004,4358_278 -4358_80706,205,4358_8214,Ongar,3972,0,4358_7778195_7039044,4358_276 -4358_80706,205,4358_8215,Ongar,3800,0,4358_7778195_7039018,4358_276 -4358_80706,96,4358_8216,Ongar,10955,0,4358_7778195_7039029,4358_276 -4358_80706,205,4358_8218,Ongar,3807,0,4358_7778195_7039020,4358_276 -4358_80706,96,4358_8219,Ongar,11131,0,4358_7778195_7039016,4358_276 -4358_80756,205,4358_822,Drimnagh Road,3617,0,4358_7778195_7122001,4358_28 -4358_80706,205,4358_8221,Ongar,3858,0,4358_7778195_7039036,4358_277 -4358_80706,96,4358_8222,Ongar,11040,0,4358_7778195_7039002,4358_276 -4358_80706,205,4358_8223,Ongar,3870,0,4358_7778195_7039022,4358_276 -4358_80706,96,4358_8225,Ongar,11198,0,4358_7778195_7039032,4358_276 -4358_80706,205,4358_8226,Ongar,3750,0,4358_7778195_7039023,4358_276 -4358_80706,96,4358_8227,Ongar,11171,0,4358_7778195_7039021,4358_276 -4358_80706,205,4358_8229,Ongar,3879,0,4358_7778195_7039026,4358_278 -4358_80706,205,4358_8230,Ongar,3891,0,4358_7778195_7039028,4358_276 -4358_80706,96,4358_8231,Ongar,11101,0,4358_7778195_7039018,4358_276 -4358_80706,205,4358_8233,Ongar,3818,0,4358_7778195_7039043,4358_276 -4358_80706,96,4358_8234,Ongar,11212,0,4358_7778195_7039003,4358_276 -4358_80706,205,4358_8236,Ongar,3771,0,4358_7778195_7039030,4358_277 -4358_80706,96,4358_8237,Ongar,11223,0,4358_7778195_7039025,4358_276 -4358_80706,205,4358_8238,Ongar,3824,0,4358_7778195_7039039,4358_276 -4358_80756,96,4358_824,Drimnagh Road,13160,0,4358_7778195_7122005,4358_28 -4358_80706,96,4358_8240,Ongar,11150,0,4358_7778195_7039027,4358_276 -4358_80706,205,4358_8241,Ongar,3714,0,4358_7778195_7039001,4358_276 -4358_80706,205,4358_8243,Ongar,3836,0,4358_7778195_7039034,4358_277 -4358_80706,96,4358_8244,Ongar,11115,0,4358_7778195_7039013,4358_278 -4358_80706,205,4358_8246,Ongar,3981,0,4358_7778195_7039003,4358_277 -4358_80706,96,4358_8247,Ongar,11022,0,4358_7778195_7039006,4358_278 -4358_80706,205,4358_8248,Ongar,3761,0,4358_7778195_7039006,4358_276 -4358_80706,96,4358_8249,Ongar,11164,0,4358_7778195_7039020,4358_277 -4358_80756,205,4358_825,Drimnagh Road,3398,0,4358_7778195_7122005,4358_28 -4358_80706,205,4358_8251,Ongar,3794,0,4358_7778195_7039035,4358_276 -4358_80706,96,4358_8253,Ongar,11189,0,4358_7778195_7039030,4358_278 -4358_80706,205,4358_8255,Ongar,4016,0,4358_7778195_7039037,4358_277 -4358_80706,96,4358_8256,Ongar,11052,0,4358_7778195_7039004,4358_278 -4358_80706,96,4358_8258,Ongar,11107,0,4358_7778195_7039024,4358_277 -4358_80706,205,4358_8259,Ongar,3903,0,4358_7778195_7039025,4358_278 -4358_80706,96,4358_8260,Ongar,11231,0,4358_7778195_7039012,4358_276 -4358_80706,205,4358_8262,Ongar,6642,0,4358_7778195_7039008,4358_278 -4358_80706,205,4358_8263,Ongar,4032,0,4358_7778195_7039002,4358_276 -4358_80706,96,4358_8264,Ongar,11069,0,4358_7778195_7039026,4358_277 -4358_80706,96,4358_8267,Ongar,11094,0,4358_7778195_7039031,4358_277 -4358_80706,205,4358_8268,Ongar,3991,0,4358_7778195_7039012,4358_278 -4358_80706,96,4358_8269,Ongar,11133,0,4358_7778195_7039016,4358_276 -4358_80756,96,4358_827,Drimnagh Road,13169,0,4358_7778195_7122008,4358_28 -4358_80706,205,4358_8271,Ongar,3860,0,4358_7778195_7039036,4358_278 -4358_80706,205,4358_8273,Ongar,3872,0,4358_7778195_7039022,4358_277 -4358_80706,96,4358_8274,Ongar,11042,0,4358_7778195_7039002,4358_278 -4358_80706,205,4358_8276,Ongar,3881,0,4358_7778195_7039026,4358_277 -4358_80706,96,4358_8277,Ongar,11200,0,4358_7778195_7039032,4358_278 -4358_80706,96,4358_8279,Ongar,11173,0,4358_7778195_7039021,4358_277 -4358_80756,205,4358_828,Drimnagh Road,3507,0,4358_7778195_7122009,4358_28 -4358_80706,205,4358_8280,Ongar,3820,0,4358_7778195_7039043,4358_278 -4358_80706,96,4358_8281,Ongar,11214,0,4358_7778195_7039003,4358_276 -4358_80706,205,4358_8283,Ongar,3826,0,4358_7778195_7039039,4358_278 -4358_80706,96,4358_8285,Ongar,11152,0,4358_7778195_7039027,4358_277 -4358_80706,205,4358_8286,Ongar,3838,0,4358_7778195_7039034,4358_278 -4358_80706,205,4358_8288,Ongar,3983,0,4358_7778195_7039003,4358_277 -4358_80706,96,4358_8289,Ongar,11024,0,4358_7778195_7039006,4358_278 -4358_80706,205,4358_8290,Ongar,3763,0,4358_7778195_7039006,4358_276 -4358_80706,96,4358_8291,Ongar,11166,0,4358_7778195_7039020,4358_277 -4358_80706,96,4358_8293,Ongar,11191,0,4358_7778195_7039030,4358_276 -4358_80706,205,4358_8294,Ongar,3850,0,4358_7778195_7039048,4358_277 -4358_80706,96,4358_8297,Ongar,11054,0,4358_7778195_7039034,4358_277 -4358_80706,205,4358_8298,Ongar,3905,0,4358_7778195_7039025,4358_278 -4358_80706,96,4358_8299,Ongar,11233,0,4358_7778195_7039012,4358_276 -4358_80760,205,4358_83,Shaw street,1705,0,4358_7778195_9001008,4358_1 -4358_80756,96,4358_830,Drimnagh Road,13184,0,4358_7778195_7122007,4358_28 -4358_80706,205,4358_8300,Ongar,4034,0,4358_7778195_7039002,4358_277 -4358_80706,96,4358_8302,Ongar,11135,0,4358_7778195_7039016,4358_276 -4358_80706,205,4358_8303,Ongar,3862,0,4358_7778195_7039036,4358_277 -4358_80706,205,4358_8305,Ongar,3883,0,4358_7778195_7039026,4358_276 -4358_80706,96,4358_8307,Ongar,11202,0,4358_7778195_7039032,4358_278 -4358_80706,96,4358_8309,Ongar,11183,0,4358_7778195_7039035,4358_277 -4358_80756,205,4358_831,Drimnagh Road,3587,0,4358_7778195_7122012,4358_28 -4358_80706,205,4358_8310,Ongar,3828,0,4358_7778195_7039039,4358_278 -4358_80706,205,4358_8311,Ongar,3852,0,4358_7778195_7039048,4358_276 -4358_80706,96,4358_8312,Ongar,11026,0,4358_7778195_7039006,4358_277 -4358_80706,96,4358_8314,Ongar,11252,0,4358_7778195_7039036,4358_276 -4358_80706,205,4358_8316,Ongar,3907,0,4358_7778195_7039025,4358_278 -4358_80706,96,4358_8317,Ongar,11235,0,4358_7778195_7039012,4358_276 -4358_80706,205,4358_8319,Ongar,3913,0,4358_7778195_7039049,4358_278 -4358_80706,96,4358_8320,Ongar,11137,0,4358_7778195_7039016,4358_276 -4358_80706,205,4358_8321,Ongar,3864,0,4358_7778195_7039036,4358_277 -4358_80706,205,4358_8323,Ongar,3885,0,4358_7778195_7039026,4358_276 -4358_80706,96,4358_8325,Ongar,11204,0,4358_7778195_7039032,4358_278 -4358_80706,96,4358_8327,Ongar,11185,0,4358_7778195_7039035,4358_277 -4358_80706,205,4358_8328,Ongar,3830,0,4358_7778195_7039039,4358_278 -4358_80706,205,4358_8329,UCD,3707,1,4358_7778195_7039001,4358_279 -4358_80756,96,4358_833,Drimnagh Road,13196,0,4358_7778195_7122002,4358_28 -4358_80706,96,4358_8331,UCD,11033,1,4358_7778195_7039002,4358_281 -4358_80706,205,4358_8332,UCD,3974,1,4358_7778195_7039003,4358_279 -4358_80706,205,4358_8333,UCD,7866,1,4358_7778195_8828106,4358_279 -4358_80706,96,4358_8334,UCD,11205,1,4358_7778195_7039003,4358_280 -4358_80706,205,4358_8336,UCD,3754,1,4358_7778195_7039006,4358_279 -4358_80706,205,4358_8337,UCD,4017,1,4358_7778195_7039007,4358_279 -4358_80706,205,4358_8339,UCD,6635,1,4358_7778195_7039008,4358_280 -4358_80756,205,4358_834,Drimnagh Road,3579,0,4358_7778195_7122014,4358_28 -4358_80706,96,4358_8340,UCD,11015,1,4358_7778195_7039006,4358_281 -4358_80706,205,4358_8341,UCD,7879,1,4358_7778195_7039515,4358_279 -4358_80706,205,4358_8342,UCD,4035,1,4358_7778195_7039011,4358_279 -4358_80706,96,4358_8343,UCD,11238,1,4358_7778195_7039001,4358_279 -4358_80706,205,4358_8344,UCD,4025,1,4358_7778195_7039002,4358_279 -4358_80706,96,4358_8345,UCD,11254,1,4358_7778195_7039008,4358_279 -4358_80706,205,4358_8347,UCD,3984,1,4358_7778195_7039012,4358_281 -4358_80706,205,4358_8348,UCD,3772,1,4358_7778195_7039015,4358_279 -4358_80706,96,4358_8349,UCD,11244,1,4358_7778195_7039009,4358_279 -4358_80706,205,4358_8350,UCD,3716,1,4358_7778195_7039004,4358_279 -4358_80706,205,4358_8351,UCD,3795,1,4358_7778195_7039018,4358_279 -4358_80706,96,4358_8353,UCD,11045,1,4358_7778195_7039004,4358_281 -4358_80706,205,4358_8354,UCD,3802,1,4358_7778195_7039020,4358_279 -4358_80706,96,4358_8355,UCD,11224,1,4358_7778195_7039012,4358_279 -4358_80706,205,4358_8356,UCD,3865,1,4358_7778195_7039022,4358_279 -4358_80706,96,4358_8358,UCD,11008,1,4358_7778195_7039005,4358_280 -4358_80706,205,4358_8359,UCD,3745,1,4358_7778195_7039023,4358_281 -4358_80756,96,4358_836,Drimnagh Road,13140,0,4358_7778195_7122004,4358_28 -4358_80706,205,4358_8360,UCD,3753,1,4358_7778195_7039009,4358_279 -4358_80706,205,4358_8361,UCD,3874,1,4358_7778195_7039026,4358_279 -4358_80706,205,4358_8362,UCD,7800,1,4358_7778195_8818110,4358_279 -4358_80706,96,4358_8363,UCD,11126,1,4358_7778195_7039016,4358_280 -4358_80706,205,4358_8364,UCD,3886,1,4358_7778195_7039028,4358_279 -4358_80706,205,4358_8365,UCD,4000,1,4358_7778195_7039031,4358_279 -4358_80706,96,4358_8367,UCD,11035,1,4358_7778195_7039002,4358_280 -4358_80706,205,4358_8368,UCD,3766,1,4358_7778195_7039030,4358_281 -4358_80706,205,4358_8369,UCD,4001,1,4358_7778195_7039033,4358_279 -4358_80756,205,4358_837,Drimnagh Road,3426,0,4358_7778195_7122004,4358_28 -4358_80706,205,4358_8370,UCD,3709,1,4358_7778195_7039001,4358_279 -4358_80706,96,4358_8371,UCD,11096,1,4358_7778195_7039018,4358_279 -4358_80706,205,4358_8372,UCD,7810,1,4358_7778195_8818116,4358_280 -4358_80706,205,4358_8373,UCD,7820,1,4358_7778195_8818121,4358_279 -4358_80706,96,4358_8375,UCD,11207,1,4358_7778195_7039003,4358_279 -4358_80706,205,4358_8376,UCD,3831,1,4358_7778195_7039034,4358_280 -4358_80706,205,4358_8377,UCD,7835,1,4358_7778195_8818126,4358_279 -4358_80706,96,4358_8379,UCD,11110,1,4358_7778195_7039013,4358_279 -4358_80706,205,4358_8380,UCD,3976,1,4358_7778195_7039003,4358_279 -4358_80706,205,4358_8381,UCD,3756,1,4358_7778195_7039006,4358_279 -4358_80706,96,4358_8383,UCD,11017,1,4358_7778195_7039006,4358_281 -4358_80706,205,4358_8384,UCD,3789,1,4358_7778195_7039035,4358_279 -4358_80706,96,4358_8385,UCD,11240,1,4358_7778195_7039001,4358_279 -4358_80706,205,4358_8387,UCD,4011,1,4358_7778195_7039037,4358_280 -4358_80706,96,4358_8388,UCD,11159,1,4358_7778195_7039020,4358_279 -4358_80706,205,4358_8389,UCD,4019,1,4358_7778195_7039007,4358_279 -4358_80756,96,4358_839,Drimnagh Road,13152,0,4358_7778195_7122006,4358_28 -4358_80706,96,4358_8390,UCD,11256,1,4358_7778195_7039008,4358_279 -4358_80706,205,4358_8392,UCD,3898,1,4358_7778195_7039025,4358_280 -4358_80706,96,4358_8393,UCD,11246,1,4358_7778195_7039009,4358_279 -4358_80706,205,4358_8394,UCD,3688,1,4358_7778195_7039029,4358_279 -4358_80706,205,4358_8396,UCD,6637,1,4358_7778195_7039008,4358_280 -4358_80706,96,4358_8397,UCD,11047,1,4358_7778195_7039004,4358_281 -4358_80706,205,4358_8398,UCD,4037,1,4358_7778195_7039011,4358_279 -4358_80706,96,4358_8399,UCD,11102,1,4358_7778195_7039024,4358_279 -4358_80756,205,4358_840,Drimnagh Road,3443,0,4358_7778195_7122006,4358_28 -4358_80706,205,4358_8401,UCD,4027,1,4358_7778195_7039002,4358_279 -4358_80706,96,4358_8402,UCD,11226,1,4358_7778195_7039012,4358_279 -4358_80706,205,4358_8404,UCD,3986,1,4358_7778195_7039012,4358_280 -4358_80706,96,4358_8405,UCD,11010,1,4358_7778195_7039005,4358_279 -4358_80706,205,4358_8406,UCD,3774,1,4358_7778195_7039015,4358_279 -4358_80706,96,4358_8408,UCD,11064,1,4358_7778195_7039026,4358_279 -4358_80706,205,4358_8409,UCD,3718,1,4358_7778195_7039004,4358_279 -4358_80706,205,4358_8410,UCD,3797,1,4358_7778195_7039018,4358_279 -4358_80706,96,4358_8412,UCD,11128,1,4358_7778195_7039016,4358_281 -4358_80706,205,4358_8413,UCD,3804,1,4358_7778195_7039020,4358_279 -4358_80706,96,4358_8414,UCD,11037,1,4358_7778195_7039002,4358_279 -4358_80706,205,4358_8416,UCD,3855,1,4358_7778195_7039036,4358_279 -4358_80706,96,4358_8417,UCD,11168,1,4358_7778195_7039021,4358_279 -4358_80706,205,4358_8418,UCD,3867,1,4358_7778195_7039022,4358_279 -4358_80756,96,4358_842,Drimnagh Road,13176,0,4358_7778195_7122009,4358_28 -4358_80706,96,4358_8420,UCD,11098,1,4358_7778195_7039018,4358_279 -4358_80706,205,4358_8421,UCD,3747,1,4358_7778195_7039023,4358_279 -4358_80706,96,4358_8423,UCD,11209,1,4358_7778195_7039003,4358_279 -4358_80706,205,4358_8424,UCD,3876,1,4358_7778195_7039026,4358_279 -4358_80706,96,4358_8425,UCD,11216,1,4358_7778195_7039023,4358_279 -4358_80706,205,4358_8427,UCD,3888,1,4358_7778195_7039028,4358_281 -4358_80706,205,4358_8428,UCD,3768,1,4358_7778195_7039030,4358_279 -4358_80706,96,4358_8429,UCD,11220,1,4358_7778195_7039025,4358_279 -4358_80756,205,4358_843,Drimnagh Road,3602,0,4358_7778195_7122008,4358_28 -4358_80706,205,4358_8431,UCD,3821,1,4358_7778195_7039039,4358_279 -4358_80706,96,4358_8432,UCD,11147,1,4358_7778195_7039027,4358_279 -4358_80706,205,4358_8433,UCD,3711,1,4358_7778195_7039001,4358_279 -4358_80706,96,4358_8435,UCD,11112,1,4358_7778195_7039013,4358_279 -4358_80706,205,4358_8436,UCD,3833,1,4358_7778195_7039034,4358_279 -4358_80706,96,4358_8438,UCD,11019,1,4358_7778195_7039006,4358_279 -4358_80706,205,4358_8439,UCD,3978,1,4358_7778195_7039003,4358_279 -4358_80706,205,4358_8441,UCD,3758,1,4358_7778195_7039006,4358_280 -4358_80706,96,4358_8442,UCD,11242,1,4358_7778195_7039001,4358_281 -4358_80706,205,4358_8443,UCD,3791,1,4358_7778195_7039035,4358_279 -4358_80706,96,4358_8444,UCD,11161,1,4358_7778195_7039020,4358_279 -4358_80706,205,4358_8446,UCD,4013,1,4358_7778195_7039037,4358_279 -4358_80706,96,4358_8447,UCD,11186,1,4358_7778195_7039030,4358_279 -4358_80706,205,4358_8448,UCD,4021,1,4358_7778195_7039007,4358_279 -4358_80756,205,4358_845,Drimnagh Road,3560,0,4358_7778195_7122017,4358_30 -4358_80706,96,4358_8450,UCD,11258,1,4358_7778195_7039008,4358_279 -4358_80706,205,4358_8451,UCD,4050,1,4358_7778195_7039041,4358_279 -4358_80706,96,4358_8453,UCD,11248,1,4358_7778195_7039009,4358_279 -4358_80706,205,4358_8454,UCD,3900,1,4358_7778195_7039025,4358_279 -4358_80706,205,4358_8455,UCD,3690,1,4358_7778195_7039029,4358_279 -4358_80706,96,4358_8457,UCD,11049,1,4358_7778195_7039004,4358_281 -4358_80706,205,4358_8458,UCD,6639,1,4358_7778195_7039008,4358_279 -4358_80706,96,4358_8459,UCD,11104,1,4358_7778195_7039024,4358_279 -4358_80756,96,4358_846,Drimnagh Road,13113,0,4358_7778195_7122001,4358_28 -4358_80706,205,4358_8461,UCD,4039,1,4358_7778195_7039011,4358_279 -4358_80706,96,4358_8462,UCD,11228,1,4358_7778195_7039012,4358_279 -4358_80706,205,4358_8463,UCD,4029,1,4358_7778195_7039002,4358_279 -4358_80706,96,4358_8465,UCD,11012,1,4358_7778195_7039005,4358_279 -4358_80706,205,4358_8466,UCD,3988,1,4358_7778195_7039012,4358_279 -4358_80706,96,4358_8468,UCD,11066,1,4358_7778195_7039026,4358_279 -4358_80706,205,4358_8469,UCD,3776,1,4358_7778195_7039015,4358_279 -4358_80756,205,4358_847,Drimnagh Road,3621,0,4358_7778195_7122019,4358_28 -4358_80706,96,4358_8470,UCD,11091,1,4358_7778195_7039031,4358_279 -4358_80706,205,4358_8472,UCD,3720,1,4358_7778195_7039004,4358_281 -4358_80706,205,4358_8473,UCD,3799,1,4358_7778195_7039018,4358_279 -4358_80706,96,4358_8474,UCD,10954,1,4358_7778195_7039029,4358_279 -4358_80706,205,4358_8476,UCD,3806,1,4358_7778195_7039020,4358_279 -4358_80706,96,4358_8477,UCD,11130,1,4358_7778195_7039016,4358_279 -4358_80706,205,4358_8479,UCD,3857,1,4358_7778195_7039036,4358_280 -4358_80706,96,4358_8480,UCD,11039,1,4358_7778195_7039002,4358_279 -4358_80706,205,4358_8481,UCD,3869,1,4358_7778195_7039022,4358_279 -4358_80706,96,4358_8483,UCD,11170,1,4358_7778195_7039021,4358_279 -4358_80706,205,4358_8484,UCD,3749,1,4358_7778195_7039023,4358_279 -4358_80706,205,4358_8486,UCD,3878,1,4358_7778195_7039026,4358_280 -4358_80706,96,4358_8487,UCD,11100,1,4358_7778195_7039018,4358_281 -4358_80706,205,4358_8488,UCD,3890,1,4358_7778195_7039028,4358_279 -4358_80706,96,4358_8489,UCD,11211,1,4358_7778195_7039003,4358_279 -4358_80756,205,4358_849,Drimnagh Road,3611,0,4358_7778195_7122011,4358_28 -4358_80706,205,4358_8491,UCD,3817,1,4358_7778195_7039043,4358_279 -4358_80706,96,4358_8492,UCD,11218,1,4358_7778195_7039023,4358_279 -4358_80706,205,4358_8494,UCD,3770,1,4358_7778195_7039030,4358_280 -4358_80706,96,4358_8495,UCD,11222,1,4358_7778195_7039025,4358_279 -4358_80706,205,4358_8496,UCD,3823,1,4358_7778195_7039039,4358_279 -4358_80706,96,4358_8498,UCD,11149,1,4358_7778195_7039027,4358_279 -4358_80706,205,4358_8499,UCD,3713,1,4358_7778195_7039001,4358_279 -4358_80760,205,4358_85,Shaw street,1823,0,4358_7778195_9001001,4358_1 -4358_80756,96,4358_850,Drimnagh Road,13129,0,4358_7778195_7122003,4358_28 -4358_80706,205,4358_8501,UCD,3835,1,4358_7778195_7039034,4358_280 -4358_80706,96,4358_8502,UCD,11114,1,4358_7778195_7039013,4358_281 -4358_80706,205,4358_8503,UCD,3973,1,4358_7778195_7039045,4358_279 -4358_80706,96,4358_8504,UCD,11021,1,4358_7778195_7039006,4358_279 -4358_80706,205,4358_8506,UCD,3980,1,4358_7778195_7039003,4358_279 -4358_80706,96,4358_8507,UCD,11163,1,4358_7778195_7039020,4358_279 -4358_80706,205,4358_8508,UCD,3760,1,4358_7778195_7039006,4358_279 -4358_80756,205,4358_851,Drimnagh Road,3619,0,4358_7778195_7122001,4358_28 -4358_80706,96,4358_8510,UCD,11188,1,4358_7778195_7039030,4358_279 -4358_80706,205,4358_8511,UCD,3793,1,4358_7778195_7039035,4358_279 -4358_80706,96,4358_8513,UCD,11260,1,4358_7778195_7039008,4358_279 -4358_80706,205,4358_8514,UCD,4015,1,4358_7778195_7039037,4358_279 -4358_80706,96,4358_8516,UCD,11250,1,4358_7778195_7039009,4358_280 -4358_80706,205,4358_8517,UCD,4023,1,4358_7778195_7039007,4358_281 -4358_80706,96,4358_8518,UCD,11051,1,4358_7778195_7039004,4358_279 -4358_80706,205,4358_8519,UCD,4052,1,4358_7778195_7039041,4358_279 -4358_80706,96,4358_8521,UCD,11106,1,4358_7778195_7039024,4358_279 -4358_80706,205,4358_8523,UCD,3902,1,4358_7778195_7039025,4358_280 -4358_80706,96,4358_8524,UCD,11230,1,4358_7778195_7039012,4358_279 -4358_80706,205,4358_8526,UCD,6641,1,4358_7778195_7039008,4358_280 -4358_80706,96,4358_8527,UCD,11014,1,4358_7778195_7039005,4358_279 -4358_80706,205,4358_8528,UCD,4031,1,4358_7778195_7039002,4358_279 -4358_80706,96,4358_8529,UCD,11068,1,4358_7778195_7039026,4358_280 -4358_80756,96,4358_853,Drimnagh Road,13162,0,4358_7778195_7122005,4358_28 -4358_80706,96,4358_8532,UCD,11093,1,4358_7778195_7039031,4358_280 -4358_80706,205,4358_8533,UCD,3990,1,4358_7778195_7039012,4358_281 -4358_80706,96,4358_8534,UCD,11132,1,4358_7778195_7039016,4358_279 -4358_80706,205,4358_8536,UCD,3722,1,4358_7778195_7039004,4358_281 -4358_80706,96,4358_8538,UCD,11041,1,4358_7778195_7039002,4358_280 -4358_80706,205,4358_8539,UCD,3859,1,4358_7778195_7039036,4358_281 -4358_80756,205,4358_854,Drimnagh Road,3538,0,4358_7778195_7122020,4358_28 -4358_80706,205,4358_8541,UCD,3871,1,4358_7778195_7039022,4358_280 -4358_80706,96,4358_8542,UCD,11199,1,4358_7778195_7039032,4358_281 -4358_80706,96,4358_8544,UCD,11172,1,4358_7778195_7039021,4358_280 -4358_80706,205,4358_8545,UCD,3880,1,4358_7778195_7039026,4358_281 -4358_80706,96,4358_8546,UCD,11213,1,4358_7778195_7039003,4358_279 -4358_80706,205,4358_8548,UCD,3819,1,4358_7778195_7039043,4358_281 -4358_80706,96,4358_8549,UCD,11151,1,4358_7778195_7039027,4358_279 -4358_80756,205,4358_855,Drimnagh Road,3400,0,4358_7778195_7122005,4358_28 -4358_80706,205,4358_8551,UCD,3825,1,4358_7778195_7039039,4358_281 -4358_80706,205,4358_8553,UCD,3837,1,4358_7778195_7039034,4358_280 -4358_80706,96,4358_8554,UCD,11116,1,4358_7778195_7039013,4358_281 -4358_80706,205,4358_8556,UCD,3982,1,4358_7778195_7039003,4358_280 -4358_80706,96,4358_8557,UCD,11023,1,4358_7778195_7039006,4358_281 -4358_80706,205,4358_8558,UCD,3762,1,4358_7778195_7039006,4358_279 -4358_80706,96,4358_8559,UCD,11165,1,4358_7778195_7039020,4358_280 -4358_80706,96,4358_8561,UCD,11190,1,4358_7778195_7039030,4358_279 -4358_80706,205,4358_8562,UCD,3849,1,4358_7778195_7039048,4358_280 -4358_80706,96,4358_8565,UCD,11108,1,4358_7778195_7039024,4358_280 -4358_80706,205,4358_8566,UCD,3904,1,4358_7778195_7039025,4358_281 -4358_80706,96,4358_8568,UCD,11053,1,4358_7778195_7039034,4358_280 -4358_80706,205,4358_8569,UCD,6643,1,4358_7778195_7039008,4358_281 -4358_80756,96,4358_857,Drimnagh Road,13171,0,4358_7778195_7122008,4358_28 -4358_80706,96,4358_8570,UCD,11232,1,4358_7778195_7039012,4358_279 -4358_80706,205,4358_8571,UCD,4033,1,4358_7778195_7039002,4358_280 -4358_80706,96,4358_8574,UCD,11095,1,4358_7778195_7039031,4358_280 -4358_80706,205,4358_8575,UCD,3992,1,4358_7778195_7039012,4358_281 -4358_80706,96,4358_8576,UCD,11134,1,4358_7778195_7039016,4358_279 -4358_80706,205,4358_8578,UCD,3861,1,4358_7778195_7039036,4358_281 -4358_80756,205,4358_858,Drimnagh Road,3591,0,4358_7778195_7122022,4358_28 -4358_80706,205,4358_8580,UCD,3873,1,4358_7778195_7039022,4358_280 -4358_80706,96,4358_8581,UCD,11043,1,4358_7778195_7039002,4358_281 -4358_80706,205,4358_8583,UCD,3882,1,4358_7778195_7039026,4358_280 -4358_80706,96,4358_8584,UCD,11201,1,4358_7778195_7039032,4358_281 -4358_80706,96,4358_8586,UCD,11182,1,4358_7778195_7039035,4358_280 -4358_80706,205,4358_8587,UCD,3827,1,4358_7778195_7039039,4358_281 -4358_80706,205,4358_8588,UCD,3851,1,4358_7778195_7039048,4358_279 -4358_80706,96,4358_8589,UCD,11025,1,4358_7778195_7039006,4358_280 -4358_80706,96,4358_8591,UCD,11251,1,4358_7778195_7039036,4358_279 -4358_80706,205,4358_8593,UCD,3906,1,4358_7778195_7039025,4358_281 -4358_80706,96,4358_8594,UCD,11234,1,4358_7778195_7039012,4358_279 -4358_80706,205,4358_8596,UCD,3912,1,4358_7778195_7039049,4358_281 -4358_80706,96,4358_8597,UCD,11136,1,4358_7778195_7039016,4358_279 -4358_80706,205,4358_8598,UCD,3863,1,4358_7778195_7039036,4358_280 -4358_80760,96,4358_86,Shaw street,9496,0,4358_7778195_9001004,4358_1 -4358_80756,205,4358_860,Drimnagh Road,3509,0,4358_7778195_7122009,4358_28 -4358_80706,205,4358_8600,UCD,3884,1,4358_7778195_7039026,4358_279 -4358_80706,96,4358_8602,UCD,11203,1,4358_7778195_7039032,4358_281 -4358_80706,96,4358_8604,UCD,11184,1,4358_7778195_7039035,4358_280 -4358_80706,205,4358_8605,UCD,3829,1,4358_7778195_7039039,4358_281 -4358_80706,205,4358_8606,UCD,3853,1,4358_7778195_7039048,4358_279 -4358_80706,96,4358_8607,UCD,11027,1,4358_7778195_7039006,4358_280 -4358_80706,96,4358_8609,UCD,11253,1,4358_7778195_7039036,4358_279 -4358_80756,96,4358_861,Drimnagh Road,13186,0,4358_7778195_7122007,4358_28 -4358_80706,205,4358_8611,UCD,3908,1,4358_7778195_7039025,4358_281 -4358_80706,96,4358_8612,UCD,11236,1,4358_7778195_7039012,4358_279 -4358_80706,205,4358_8614,UCD,3914,1,4358_7778195_7039049,4358_281 -4358_80704,205,4358_8615,Ongar,7815,0,4358_7778195_8818218,4358_282 -4358_80704,205,4358_8616,Ongar,6437,0,4358_7778195_7037655,4358_282 -4358_80704,205,4358_8617,Burlington Road,7814,1,4358_7778195_8818118,4358_283 -4358_80704,205,4358_8618,Burlington Road,6436,1,4358_7778195_7038555,4358_283 -4358_80681,205,4358_8619,Monkstown Ave,6847,0,4358_7778195_8004002,4358_284 -4358_80756,205,4358_862,Drimnagh Road,3589,0,4358_7778195_7122012,4358_28 -4358_80681,205,4358_8620,Monkstown Ave,6522,0,4358_7778195_8004005,4358_284 -4358_80681,205,4358_8621,Monkstown Ave,6530,0,4358_7778195_8004007,4358_284 -4358_80681,96,4358_8622,Monkstown Ave,13520,0,4358_7778195_8004003,4358_285 -4358_80681,205,4358_8623,Monkstown Ave,6910,0,4358_7778195_8004008,4358_284 -4358_80681,205,4358_8624,Monkstown Ave,6918,0,4358_7778195_8004009,4358_284 -4358_80681,96,4358_8625,Monkstown Ave,13073,0,4358_7778195_8004005,4358_285 -4358_80681,205,4358_8626,Monkstown Ave,6932,0,4358_7778195_8004011,4358_284 -4358_80681,96,4358_8627,Monkstown Ave,13040,0,4358_7778195_8004001,4358_284 -4358_80681,205,4358_8628,Monkstown Ave,6940,0,4358_7778195_8004012,4358_285 -4358_80681,205,4358_8629,Monkstown Ave,6840,0,4358_7778195_8004001,4358_284 -4358_80681,96,4358_8630,Monkstown Ave,13049,0,4358_7778195_8004008,4358_284 -4358_80681,205,4358_8631,Monkstown Ave,6851,0,4358_7778195_8004003,4358_284 -4358_80681,96,4358_8632,Monkstown Ave,13061,0,4358_7778195_8004009,4358_284 -4358_80681,205,4358_8633,Monkstown Ave,6952,0,4358_7778195_8004014,4358_284 -4358_80681,96,4358_8634,Monkstown Ave,13519,0,4358_7778195_8004002,4358_284 -4358_80681,205,4358_8635,Monkstown Ave,6863,0,4358_7778195_8004004,4358_284 -4358_80681,205,4358_8636,Monkstown Ave,6480,0,4358_7778195_8004006,4358_284 -4358_80681,96,4358_8638,Monkstown Ave,13541,0,4358_7778195_8004010,4358_287 -4358_80681,205,4358_8639,Monkstown Ave,6487,0,4358_7778195_8004016,4358_284 -4358_80756,96,4358_864,Drimnagh Road,13198,0,4358_7778195_7122002,4358_28 -4358_80681,96,4358_8640,Monkstown Ave,13522,0,4358_7778195_8004003,4358_284 -4358_80681,205,4358_8641,Monkstown Ave,6497,0,4358_7778195_8004017,4358_284 -4358_80681,96,4358_8643,Monkstown Ave,13531,0,4358_7778195_8004004,4358_285 -4358_80681,205,4358_8644,Monkstown Ave,6849,0,4358_7778195_8004002,4358_284 -4358_80681,96,4358_8645,Monkstown Ave,13075,0,4358_7778195_8004005,4358_284 -4358_80681,205,4358_8646,Monkstown Ave,6507,0,4358_7778195_8004018,4358_284 -4358_80681,96,4358_8647,Monkstown Ave,13018,0,4358_7778195_8004006,4358_284 -4358_80681,205,4358_8649,Monkstown Ave,6515,0,4358_7778195_8004010,4358_287 -4358_80756,205,4358_865,Drimnagh Road,3437,0,4358_7778195_7122023,4358_28 -4358_80681,205,4358_8650,Monkstown Ave,6524,0,4358_7778195_8004005,4358_284 -4358_80681,96,4358_8651,Monkstown Ave,13570,0,4358_7778195_8004013,4358_284 -4358_80681,205,4358_8652,Monkstown Ave,6532,0,4358_7778195_8004007,4358_284 -4358_80681,96,4358_8653,Monkstown Ave,13028,0,4358_7778195_8004007,4358_284 -4358_80681,205,4358_8655,Monkstown Ave,6912,0,4358_7778195_8004008,4358_284 -4358_80681,96,4358_8656,Monkstown Ave,13042,0,4358_7778195_8004001,4358_284 -4358_80681,205,4358_8657,Monkstown Ave,6920,0,4358_7778195_8004009,4358_284 -4358_80681,96,4358_8659,Monkstown Ave,13051,0,4358_7778195_8004008,4358_285 -4358_80681,205,4358_8660,Monkstown Ave,6943,0,4358_7778195_8004013,4358_287 -4358_80681,205,4358_8661,Monkstown Ave,6934,0,4358_7778195_8004011,4358_284 -4358_80681,96,4358_8662,Monkstown Ave,13063,0,4358_7778195_8004009,4358_284 -4358_80681,205,4358_8663,Monkstown Ave,6960,0,4358_7778195_8004015,4358_284 -4358_80681,96,4358_8664,Monkstown Ave,13553,0,4358_7778195_8004011,4358_284 -4358_80681,205,4358_8666,Monkstown Ave,6842,0,4358_7778195_8004001,4358_284 -4358_80681,96,4358_8667,Monkstown Ave,13560,0,4358_7778195_8004012,4358_284 -4358_80681,205,4358_8668,Monkstown Ave,6853,0,4358_7778195_8004003,4358_284 -4358_80681,205,4358_8669,Monkstown Ave,6954,0,4358_7778195_8004014,4358_284 -4358_80756,205,4358_867,Drimnagh Road,3523,0,4358_7778195_7122018,4358_30 -4358_80681,96,4358_8671,Monkstown Ave,13543,0,4358_7778195_8004010,4358_287 -4358_80681,205,4358_8672,Monkstown Ave,6865,0,4358_7778195_8004004,4358_284 -4358_80681,96,4358_8673,Monkstown Ave,13524,0,4358_7778195_8004003,4358_284 -4358_80681,205,4358_8674,Monkstown Ave,6482,0,4358_7778195_8004006,4358_284 -4358_80681,96,4358_8675,Monkstown Ave,13533,0,4358_7778195_8004004,4358_284 -4358_80681,205,4358_8677,Monkstown Ave,6489,0,4358_7778195_8004016,4358_284 -4358_80681,96,4358_8679,Monkstown Ave,13077,0,4358_7778195_8004005,4358_285 -4358_80756,96,4358_868,Drimnagh Road,13120,0,4358_7778195_7122010,4358_28 -4358_80681,205,4358_8680,Monkstown Ave,6499,0,4358_7778195_8004017,4358_284 -4358_80681,96,4358_8681,Monkstown Ave,13020,0,4358_7778195_8004006,4358_284 -4358_80681,205,4358_8683,Monkstown Ave,6509,0,4358_7778195_8004018,4358_287 -4358_80681,205,4358_8684,Monkstown Ave,6517,0,4358_7778195_8004010,4358_284 -4358_80681,96,4358_8686,Monkstown Ave,13572,0,4358_7778195_8004013,4358_285 -4358_80681,205,4358_8687,Monkstown Ave,6526,0,4358_7778195_8004005,4358_284 -4358_80681,96,4358_8688,Monkstown Ave,13030,0,4358_7778195_8004007,4358_284 -4358_80756,205,4358_869,Drimnagh Road,3581,0,4358_7778195_7122014,4358_28 -4358_80681,205,4358_8690,Monkstown Ave,6534,0,4358_7778195_8004007,4358_284 -4358_80681,96,4358_8692,Monkstown Ave,13044,0,4358_7778195_8004001,4358_285 -4358_80681,205,4358_8693,Monkstown Ave,6914,0,4358_7778195_8004008,4358_284 -4358_80681,205,4358_8695,Monkstown Ave,6922,0,4358_7778195_8004009,4358_285 -4358_80681,96,4358_8696,Monkstown Ave,13053,0,4358_7778195_8004008,4358_287 -4358_80681,205,4358_8697,Monkstown Ave,6945,0,4358_7778195_8004013,4358_284 -4358_80681,96,4358_8699,Monkstown Ave,13065,0,4358_7778195_8004009,4358_285 -4358_80760,205,4358_87,Shaw street,1660,0,4358_7778195_9001003,4358_1 -4358_80681,205,4358_8700,Monkstown Ave,6936,0,4358_7778195_8004011,4358_284 -4358_80681,96,4358_8701,Monkstown Ave,13555,0,4358_7778195_8004011,4358_284 -4358_80681,205,4358_8703,Monkstown Ave,6962,0,4358_7778195_8004015,4358_284 -4358_80681,96,4358_8705,Monkstown Ave,13562,0,4358_7778195_8004012,4358_285 -4358_80681,205,4358_8706,Monkstown Ave,6844,0,4358_7778195_8004001,4358_284 -4358_80681,96,4358_8708,Monkstown Ave,13545,0,4358_7778195_8004010,4358_285 -4358_80681,205,4358_8709,Monkstown Ave,6855,0,4358_7778195_8004003,4358_287 -4358_80756,96,4358_871,Drimnagh Road,13142,0,4358_7778195_7122004,4358_28 -4358_80681,205,4358_8710,Monkstown Ave,6956,0,4358_7778195_8004014,4358_284 -4358_80681,96,4358_8712,Monkstown Ave,13526,0,4358_7778195_8004003,4358_285 -4358_80681,205,4358_8713,Monkstown Ave,6867,0,4358_7778195_8004004,4358_284 -4358_80681,96,4358_8714,Monkstown Ave,13535,0,4358_7778195_8004004,4358_284 -4358_80681,205,4358_8716,Monkstown Ave,6484,0,4358_7778195_8004006,4358_284 -4358_80681,96,4358_8718,Monkstown Ave,13079,0,4358_7778195_8004005,4358_285 -4358_80681,205,4358_8719,Monkstown Ave,6491,0,4358_7778195_8004016,4358_284 -4358_80756,205,4358_872,Drimnagh Road,3428,0,4358_7778195_7122004,4358_30 -4358_80681,96,4358_8720,Monkstown Ave,13022,0,4358_7778195_8004006,4358_284 -4358_80681,205,4358_8721,Monkstown Ave,6501,0,4358_7778195_8004017,4358_285 -4358_80681,205,4358_8723,Monkstown Ave,6511,0,4358_7778195_8004018,4358_284 -4358_80681,96,4358_8725,Monkstown Ave,13574,0,4358_7778195_8004013,4358_285 -4358_80681,205,4358_8726,Monkstown Ave,6519,0,4358_7778195_8004010,4358_284 -4358_80681,96,4358_8727,Monkstown Ave,13032,0,4358_7778195_8004007,4358_284 -4358_80681,205,4358_8729,Monkstown Ave,6528,0,4358_7778195_8004005,4358_284 -4358_80756,205,4358_873,Drimnagh Road,3628,0,4358_7778195_7122021,4358_28 -4358_80681,96,4358_8731,Monkstown Ave,13046,0,4358_7778195_8004001,4358_285 -4358_80681,205,4358_8732,Monkstown Ave,6536,0,4358_7778195_8004007,4358_284 -4358_80681,205,4358_8733,Monkstown Ave,6916,0,4358_7778195_8004008,4358_284 -4358_80681,96,4358_8735,Monkstown Ave,13055,0,4358_7778195_8004008,4358_287 -4358_80681,205,4358_8736,Monkstown Ave,6924,0,4358_7778195_8004009,4358_284 -4358_80681,96,4358_8738,Monkstown Ave,13067,0,4358_7778195_8004009,4358_285 -4358_80681,205,4358_8739,Monkstown Ave,6947,0,4358_7778195_8004013,4358_284 -4358_80681,96,4358_8740,Monkstown Ave,13557,0,4358_7778195_8004011,4358_284 -4358_80681,205,4358_8742,Monkstown Ave,6972,0,4358_7778195_8004020,4358_284 -4358_80681,96,4358_8744,Monkstown Ave,13564,0,4358_7778195_8004012,4358_285 -4358_80681,205,4358_8745,Monkstown Ave,6938,0,4358_7778195_8004011,4358_284 -4358_80681,205,4358_8746,Monkstown Ave,6967,0,4358_7778195_8004019,4358_284 -4358_80681,96,4358_8748,Monkstown Ave,13547,0,4358_7778195_8004010,4358_287 -4358_80681,205,4358_8749,Monkstown Ave,6964,0,4358_7778195_8004015,4358_284 -4358_80756,96,4358_875,Drimnagh Road,13154,0,4358_7778195_7122006,4358_28 -4358_80681,96,4358_8751,Monkstown Ave,13528,0,4358_7778195_8004003,4358_285 -4358_80681,205,4358_8752,Monkstown Ave,6846,0,4358_7778195_8004001,4358_284 -4358_80681,96,4358_8753,Monkstown Ave,13537,0,4358_7778195_8004004,4358_284 -4358_80681,205,4358_8755,Monkstown Ave,6857,0,4358_7778195_8004003,4358_284 -4358_80681,96,4358_8757,Monkstown Ave,13081,0,4358_7778195_8004005,4358_285 -4358_80681,205,4358_8758,Monkstown Ave,6958,0,4358_7778195_8004014,4358_284 -4358_80681,96,4358_8759,Monkstown Ave,13024,0,4358_7778195_8004006,4358_284 -4358_80681,205,4358_8760,Monkstown Ave,6869,0,4358_7778195_8004004,4358_285 -4358_80681,205,4358_8762,Monkstown Ave,6486,0,4358_7778195_8004006,4358_284 -4358_80681,96,4358_8764,Monkstown Ave,13576,0,4358_7778195_8004013,4358_285 -4358_80681,205,4358_8765,Monkstown Ave,6493,0,4358_7778195_8004016,4358_284 -4358_80681,96,4358_8766,Monkstown Ave,13034,0,4358_7778195_8004007,4358_284 -4358_80681,205,4358_8768,Monkstown Ave,6503,0,4358_7778195_8004017,4358_284 -4358_80756,205,4358_877,Drimnagh Road,3604,0,4358_7778195_7122008,4358_30 -4358_80681,96,4358_8770,Monkstown Ave,13048,0,4358_7778195_8004001,4358_285 -4358_80681,205,4358_8771,Monkstown Ave,6513,0,4358_7778195_8004018,4358_284 -4358_80681,205,4358_8773,Monkstown Ave,6521,0,4358_7778195_8004010,4358_285 -4358_80681,96,4358_8774,Monkstown Ave,13057,0,4358_7778195_8004008,4358_287 -4358_80681,205,4358_8775,Monkstown Ave,6538,0,4358_7778195_8004007,4358_284 -4358_80681,96,4358_8776,Monkstown Ave,13069,0,4358_7778195_8004009,4358_285 -4358_80681,96,4358_8778,Monkstown Ave,13566,0,4358_7778195_8004012,4358_284 -4358_80681,205,4358_8779,Monkstown Ave,6926,0,4358_7778195_8004009,4358_285 -4358_80756,96,4358_878,Drimnagh Road,13178,0,4358_7778195_7122009,4358_28 -4358_80681,96,4358_8781,Monkstown Ave,13549,0,4358_7778195_8004010,4358_285 -4358_80681,205,4358_8782,Monkstown Ave,6949,0,4358_7778195_8004013,4358_287 -4358_80681,205,4358_8783,Monkstown Ave,6969,0,4358_7778195_8004019,4358_284 -4358_80681,96,4358_8784,Monkstown Ave,13539,0,4358_7778195_8004004,4358_285 -4358_80681,96,4358_8786,Monkstown Ave,13026,0,4358_7778195_8004006,4358_284 -4358_80681,205,4358_8787,Monkstown Ave,6859,0,4358_7778195_8004003,4358_285 -4358_80681,205,4358_8788,Monkstown Ave,6871,0,4358_7778195_8004004,4358_284 -4358_80681,96,4358_8789,Monkstown Ave,13578,0,4358_7778195_8004013,4358_285 -4358_80681,205,4358_8791,Monkstown Ave,6495,0,4358_7778195_8004016,4358_284 -4358_80681,96,4358_8792,Monkstown Ave,13036,0,4358_7778195_8004007,4358_285 -4358_80681,205,4358_8794,Monkstown Ave,6505,0,4358_7778195_8004017,4358_284 -4358_80681,96,4358_8795,Monkstown Ave,13059,0,4358_7778195_8004008,4358_285 -4358_80681,205,4358_8796,Monkstown Ave,6540,0,4358_7778195_8004007,4358_284 -4358_80681,96,4358_8798,Monkstown Ave,13071,0,4358_7778195_8004009,4358_287 -4358_80681,96,4358_8799,Monkstown Ave,13568,0,4358_7778195_8004012,4358_284 -4358_80756,205,4358_880,Drimnagh Road,3562,0,4358_7778195_7122017,4358_30 -4358_80681,205,4358_8800,Monkstown Ave,6928,0,4358_7778195_8004009,4358_285 -4358_80681,96,4358_8802,Monkstown Ave,13551,0,4358_7778195_8004010,4358_284 -4358_80681,205,4358_8803,Monkstown Ave,6951,0,4358_7778195_8004013,4358_285 -4358_80681,205,4358_8804,Monkstown Ave,6971,0,4358_7778195_8004019,4358_284 -4358_80681,96,4358_8805,Monkstown Ave,13580,0,4358_7778195_8004013,4358_285 -4358_80681,96,4358_8807,O'Connell St,13038,0,4358_7778195_8004007,4358_286 -4358_80681,205,4358_8808,O'Connell St,6861,0,4358_7778195_8004003,4358_288 -4358_80756,96,4358_881,Drimnagh Road,13115,0,4358_7778195_7122001,4358_28 -4358_80681,205,4358_8810,Harristown,6839,1,4358_7778195_8004001,4358_289 -4358_80681,96,4358_8811,Harristown,13039,1,4358_7778195_8004001,4358_290 -4358_80681,205,4358_8812,Harristown,6850,1,4358_7778195_8004003,4358_289 -4358_80681,205,4358_8813,Harristown,6862,1,4358_7778195_8004004,4358_289 -4358_80681,96,4358_8814,Harristown,13518,1,4358_7778195_8004002,4358_290 -4358_80681,205,4358_8815,Harristown,6479,1,4358_7778195_8004006,4358_289 -4358_80681,205,4358_8816,Harristown,6848,1,4358_7778195_8004002,4358_289 -4358_80681,96,4358_8817,Harristown,13521,1,4358_7778195_8004003,4358_290 -4358_80681,205,4358_8818,Harristown,6514,1,4358_7778195_8004010,4358_289 -4358_80681,96,4358_8819,Harristown,13530,1,4358_7778195_8004004,4358_289 -4358_80681,205,4358_8820,Harristown,6523,1,4358_7778195_8004005,4358_289 -4358_80681,96,4358_8821,Harristown,13074,1,4358_7778195_8004005,4358_289 -4358_80681,205,4358_8822,Harristown,6531,1,4358_7778195_8004007,4358_289 -4358_80681,96,4358_8823,Harristown,13017,1,4358_7778195_8004006,4358_289 -4358_80681,205,4358_8824,Harristown,6911,1,4358_7778195_8004008,4358_289 -4358_80681,96,4358_8825,Harristown,13027,1,4358_7778195_8004007,4358_289 -4358_80681,205,4358_8826,Harristown,6919,1,4358_7778195_8004009,4358_290 -4358_80681,205,4358_8828,Harristown,6942,1,4358_7778195_8004013,4358_289 -4358_80681,96,4358_8829,Harristown,13041,1,4358_7778195_8004001,4358_289 -4358_80756,205,4358_883,Drimnagh Road,3623,0,4358_7778195_7122019,4358_30 -4358_80681,205,4358_8830,Harristown,6933,1,4358_7778195_8004011,4358_289 -4358_80681,96,4358_8832,Harristown,13050,1,4358_7778195_8004008,4358_290 -4358_80681,205,4358_8833,Harristown,6941,1,4358_7778195_8004012,4358_289 -4358_80681,96,4358_8834,Harristown,13062,1,4358_7778195_8004009,4358_289 -4358_80681,205,4358_8835,Harristown,6959,1,4358_7778195_8004015,4358_289 -4358_80681,205,4358_8836,Harristown,6841,1,4358_7778195_8004001,4358_289 -4358_80681,96,4358_8837,Harristown,13552,1,4358_7778195_8004011,4358_290 -4358_80681,205,4358_8839,Harristown,6852,1,4358_7778195_8004003,4358_289 -4358_80756,96,4358_884,Drimnagh Road,13131,0,4358_7778195_7122003,4358_28 -4358_80681,96,4358_8840,Harristown,13559,1,4358_7778195_8004012,4358_289 -4358_80681,205,4358_8841,Harristown,6953,1,4358_7778195_8004014,4358_289 -4358_80681,96,4358_8843,Harristown,13542,1,4358_7778195_8004010,4358_290 -4358_80681,205,4358_8844,Harristown,6864,1,4358_7778195_8004004,4358_289 -4358_80681,96,4358_8845,Harristown,13523,1,4358_7778195_8004003,4358_289 -4358_80681,205,4358_8846,Harristown,6481,1,4358_7778195_8004006,4358_289 -4358_80681,205,4358_8847,Harristown,6488,1,4358_7778195_8004016,4358_289 -4358_80681,96,4358_8848,Harristown,13532,1,4358_7778195_8004004,4358_290 -4358_80681,205,4358_8850,Harristown,6498,1,4358_7778195_8004017,4358_289 -4358_80681,96,4358_8851,Harristown,13076,1,4358_7778195_8004005,4358_289 -4358_80681,205,4358_8852,Harristown,6508,1,4358_7778195_8004018,4358_289 -4358_80681,96,4358_8853,Harristown,13019,1,4358_7778195_8004006,4358_289 -4358_80681,205,4358_8855,Harristown,6516,1,4358_7778195_8004010,4358_289 -4358_80681,96,4358_8856,Harristown,13571,1,4358_7778195_8004013,4358_289 -4358_80681,205,4358_8857,Harristown,6525,1,4358_7778195_8004005,4358_289 -4358_80681,96,4358_8858,Harristown,13029,1,4358_7778195_8004007,4358_289 -4358_80681,205,4358_8859,Harristown,6533,1,4358_7778195_8004007,4358_290 -4358_80756,205,4358_886,Drimnagh Road,3402,0,4358_7778195_7122005,4358_28 -4358_80681,205,4358_8861,Harristown,6913,1,4358_7778195_8004008,4358_289 -4358_80681,96,4358_8862,Harristown,13043,1,4358_7778195_8004001,4358_289 -4358_80681,205,4358_8863,Harristown,6921,1,4358_7778195_8004009,4358_289 -4358_80681,96,4358_8865,Harristown,13052,1,4358_7778195_8004008,4358_290 -4358_80681,205,4358_8866,Harristown,6944,1,4358_7778195_8004013,4358_289 -4358_80681,96,4358_8868,Harristown,13064,1,4358_7778195_8004009,4358_290 -4358_80681,205,4358_8869,Harristown,6935,1,4358_7778195_8004011,4358_289 -4358_80756,96,4358_887,Drimnagh Road,13164,0,4358_7778195_7122005,4358_30 -4358_80681,96,4358_8870,Harristown,13554,1,4358_7778195_8004011,4358_289 -4358_80681,205,4358_8871,Harristown,6961,1,4358_7778195_8004015,4358_290 -4358_80681,205,4358_8873,Harristown,6843,1,4358_7778195_8004001,4358_289 -4358_80681,96,4358_8875,Harristown,13561,1,4358_7778195_8004012,4358_290 -4358_80681,205,4358_8876,Harristown,6854,1,4358_7778195_8004003,4358_289 -4358_80681,96,4358_8878,Harristown,13544,1,4358_7778195_8004010,4358_290 -4358_80681,205,4358_8879,Harristown,6955,1,4358_7778195_8004014,4358_289 -4358_80681,96,4358_8881,Harristown,13525,1,4358_7778195_8004003,4358_290 -4358_80681,205,4358_8882,Harristown,6866,1,4358_7778195_8004004,4358_289 -4358_80681,205,4358_8883,Harristown,6483,1,4358_7778195_8004006,4358_289 -4358_80681,96,4358_8884,Harristown,13534,1,4358_7778195_8004004,4358_290 -4358_80681,205,4358_8886,Harristown,6490,1,4358_7778195_8004016,4358_289 -4358_80681,96,4358_8888,Harristown,13078,1,4358_7778195_8004005,4358_290 -4358_80681,205,4358_8889,Harristown,6500,1,4358_7778195_8004017,4358_289 -4358_80756,205,4358_889,Drimnagh Road,3593,0,4358_7778195_7122022,4358_28 -4358_80681,96,4358_8890,Harristown,13021,1,4358_7778195_8004006,4358_289 -4358_80681,205,4358_8892,Harristown,6510,1,4358_7778195_8004018,4358_289 -4358_80681,96,4358_8893,Harristown,13573,1,4358_7778195_8004013,4358_289 -4358_80681,205,4358_8895,Harristown,6518,1,4358_7778195_8004010,4358_289 -4358_80681,96,4358_8896,Harristown,13031,1,4358_7778195_8004007,4358_289 -4358_80681,205,4358_8898,Harristown,6527,1,4358_7778195_8004005,4358_293 -4358_80681,205,4358_8899,Harristown,6535,1,4358_7778195_8004007,4358_289 -4358_80760,96,4358_89,Shaw street,9328,0,4358_7778195_9001002,4358_1 -4358_80756,96,4358_890,Drimnagh Road,13188,0,4358_7778195_7122007,4358_30 -4358_80681,96,4358_8901,Harristown,13045,1,4358_7778195_8004001,4358_290 -4358_80681,205,4358_8902,Harristown,6915,1,4358_7778195_8004008,4358_289 -4358_80681,96,4358_8904,Harristown,13054,1,4358_7778195_8004008,4358_290 -4358_80681,205,4358_8905,Harristown,6923,1,4358_7778195_8004009,4358_289 -4358_80681,96,4358_8907,Harristown,13066,1,4358_7778195_8004009,4358_290 -4358_80681,205,4358_8908,Harristown,6946,1,4358_7778195_8004013,4358_289 -4358_80681,205,4358_8909,Harristown,6937,1,4358_7778195_8004011,4358_289 -4358_80681,96,4358_8910,Harristown,13556,1,4358_7778195_8004011,4358_290 -4358_80681,205,4358_8912,Harristown,6966,1,4358_7778195_8004019,4358_289 -4358_80681,96,4358_8914,Harristown,13563,1,4358_7778195_8004012,4358_290 -4358_80681,205,4358_8915,Harristown,6963,1,4358_7778195_8004015,4358_289 -4358_80681,96,4358_8917,Harristown,13546,1,4358_7778195_8004010,4358_290 -4358_80681,205,4358_8918,Harristown,6845,1,4358_7778195_8004001,4358_289 -4358_80756,96,4358_892,Drimnagh Road,13122,0,4358_7778195_7122010,4358_28 -4358_80681,96,4358_8920,Harristown,13527,1,4358_7778195_8004003,4358_290 -4358_80681,205,4358_8921,Harristown,6856,1,4358_7778195_8004003,4358_289 -4358_80681,205,4358_8922,Harristown,6957,1,4358_7778195_8004014,4358_289 -4358_80681,96,4358_8923,Harristown,13536,1,4358_7778195_8004004,4358_290 -4358_80681,205,4358_8925,Harristown,6868,1,4358_7778195_8004004,4358_289 -4358_80681,96,4358_8927,Harristown,13080,1,4358_7778195_8004005,4358_290 -4358_80681,205,4358_8928,Harristown,6485,1,4358_7778195_8004006,4358_289 -4358_80681,96,4358_8929,Harristown,13023,1,4358_7778195_8004006,4358_289 -4358_80756,205,4358_893,Drimnagh Road,3525,0,4358_7778195_7122018,4358_30 -4358_80681,205,4358_8931,Harristown,6492,1,4358_7778195_8004016,4358_289 -4358_80681,96,4358_8933,Harristown,13575,1,4358_7778195_8004013,4358_290 -4358_80681,205,4358_8934,Harristown,6502,1,4358_7778195_8004017,4358_289 -4358_80681,96,4358_8935,Harristown,13033,1,4358_7778195_8004007,4358_289 -4358_80681,205,4358_8936,Harristown,6512,1,4358_7778195_8004018,4358_290 -4358_80681,205,4358_8938,Harristown,6520,1,4358_7778195_8004010,4358_289 -4358_80681,96,4358_8940,Harristown,13047,1,4358_7778195_8004001,4358_290 -4358_80681,205,4358_8941,Harristown,6529,1,4358_7778195_8004005,4358_289 -4358_80681,96,4358_8943,Harristown,13056,1,4358_7778195_8004008,4358_290 -4358_80681,205,4358_8944,Harristown,6537,1,4358_7778195_8004007,4358_289 -4358_80681,96,4358_8946,Harristown,13068,1,4358_7778195_8004009,4358_290 -4358_80681,205,4358_8947,Harristown,6917,1,4358_7778195_8004008,4358_289 -4358_80681,205,4358_8948,Harristown,6925,1,4358_7778195_8004009,4358_289 -4358_80681,96,4358_8949,Harristown,13558,1,4358_7778195_8004011,4358_290 -4358_80756,96,4358_895,Drimnagh Road,13144,0,4358_7778195_7122004,4358_28 -4358_80681,205,4358_8951,Harristown,6948,1,4358_7778195_8004013,4358_289 -4358_80681,96,4358_8953,Harristown,13565,1,4358_7778195_8004012,4358_290 -4358_80681,205,4358_8954,Harristown,6973,1,4358_7778195_8004020,4358_289 -4358_80681,96,4358_8956,Harristown,13548,1,4358_7778195_8004010,4358_290 -4358_80681,205,4358_8957,Harristown,6939,1,4358_7778195_8004011,4358_289 -4358_80681,96,4358_8959,Harristown,13529,1,4358_7778195_8004003,4358_290 -4358_80756,205,4358_896,Drimnagh Road,3630,0,4358_7778195_7122021,4358_30 -4358_80681,205,4358_8960,Harristown,6968,1,4358_7778195_8004019,4358_289 -4358_80681,205,4358_8961,Harristown,6965,1,4358_7778195_8004015,4358_289 -4358_80681,96,4358_8962,Harristown,13538,1,4358_7778195_8004004,4358_290 -4358_80681,96,4358_8964,Harristown,13025,1,4358_7778195_8004006,4358_289 -4358_80681,205,4358_8965,Harristown,6858,1,4358_7778195_8004003,4358_290 -4358_80681,205,4358_8967,Harristown,6870,1,4358_7778195_8004004,4358_289 -4358_80681,96,4358_8968,Harristown,13577,1,4358_7778195_8004013,4358_290 -4358_80681,205,4358_8969,Harristown,6494,1,4358_7778195_8004016,4358_289 -4358_80681,96,4358_8970,Harristown,13035,1,4358_7778195_8004007,4358_290 -4358_80681,205,4358_8972,Harristown,6504,1,4358_7778195_8004017,4358_289 -4358_80681,96,4358_8973,Harristown,13058,1,4358_7778195_8004008,4358_290 -4358_80681,205,4358_8975,Harristown,6539,1,4358_7778195_8004007,4358_289 -4358_80681,96,4358_8976,Harristown,13070,1,4358_7778195_8004009,4358_290 -4358_80681,96,4358_8977,Harristown,13567,1,4358_7778195_8004012,4358_289 -4358_80681,205,4358_8978,Harristown,6927,1,4358_7778195_8004009,4358_290 -4358_80756,96,4358_898,Drimnagh Road,13117,0,4358_7778195_7122001,4358_28 -4358_80681,96,4358_8980,Harristown,13550,1,4358_7778195_8004010,4358_289 -4358_80681,205,4358_8981,Harristown,6950,1,4358_7778195_8004013,4358_290 -4358_80681,205,4358_8983,Harristown,6970,1,4358_7778195_8004019,4358_289 -4358_80681,96,4358_8984,Harristown,13540,1,4358_7778195_8004004,4358_290 -4358_80681,96,4358_8985,Harristown,13579,1,4358_7778195_8004013,4358_289 -4358_80681,205,4358_8986,Harristown,6860,1,4358_7778195_8004003,4358_290 -4358_80681,96,4358_8988,Harristown,13037,1,4358_7778195_8004007,4358_289 -4358_80681,205,4358_8989,Harristown,6872,1,4358_7778195_8004004,4358_290 -4358_80756,205,4358_899,Drimnagh Road,3564,0,4358_7778195_7122017,4358_30 -4358_80681,205,4358_8991,Harristown,6496,1,4358_7778195_8004016,4358_289 -4358_80681,96,4358_8992,Harristown,13060,1,4358_7778195_8004008,4358_290 -4358_80681,205,4358_8993,Harristown,6506,1,4358_7778195_8004017,4358_289 -4358_80681,96,4358_8995,Harristown,13072,1,4358_7778195_8004009,4358_293 -4358_80681,205,4358_8996,O'Connell St,6541,1,4358_7778195_8004007,4358_291 -4358_80681,96,4358_8997,O'Connell St,13569,1,4358_7778195_8004012,4358_292 -4358_80707,205,4358_8999,Earlsfort Terrace,7074,0,4358_7778195_8040102,4358_295 -4358_80760,205,4358_9,Shaw street,1841,0,4358_7778195_9001006,4358_1 -4358_80760,205,4358_90,Shaw street,1594,0,4358_7778195_9001005,4358_1 -4358_80707,205,4358_9000,Earlsfort Terrace,7085,0,4358_7778195_8040103,4358_295 -4358_80707,205,4358_9001,Earlsfort Terrace,7117,0,4358_7778195_8040106,4358_295 -4358_80707,205,4358_9002,Earlsfort Terrace,7129,0,4358_7778195_8040108,4358_295 -4358_80707,205,4358_9003,Earlsfort Terrace,7135,0,4358_7778195_8040109,4358_295 -4358_80707,205,4358_9004,Earlsfort Terrace,7149,0,4358_7778195_8040110,4358_295 -4358_80707,96,4358_9005,Earlsfort Terrace,13699,0,4358_7778195_8040102,4358_294 -4358_80707,205,4358_9006,Earlsfort Terrace,7169,0,4358_7778195_8040112,4358_295 -4358_80707,96,4358_9007,Earlsfort Terrace,13721,0,4358_7778195_8040104,4358_294 -4358_80707,205,4358_9008,Earlsfort Terrace,7061,0,4358_7778195_8040101,4358_295 -4358_80707,96,4358_9009,Earlsfort Terrace,13743,0,4358_7778195_8040106,4358_295 -4358_80756,96,4358_901,Drimnagh Road,13133,0,4358_7778195_7122003,4358_28 -4358_80707,205,4358_9010,Earlsfort Terrace,7177,0,4358_7778195_8040113,4358_296 -4358_80707,205,4358_9011,Earlsfort Terrace,7100,0,4358_7778195_8040104,4358_295 -4358_80707,96,4358_9012,Earlsfort Terrace,13753,0,4358_7778195_8040108,4358_295 -4358_80707,205,4358_9013,Earlsfort Terrace,7114,0,4358_7778195_8040105,4358_295 -4358_80707,205,4358_9014,Earlsfort Terrace,7076,0,4358_7778195_8040102,4358_295 -4358_80707,96,4358_9015,Earlsfort Terrace,13767,0,4358_7778195_8040109,4358_296 -4358_80707,205,4358_9016,Earlsfort Terrace,7121,0,4358_7778195_8040107,4358_295 -4358_80707,96,4358_9017,Earlsfort Terrace,13777,0,4358_7778195_8040110,4358_295 -4358_80707,205,4358_9019,Earlsfort Terrace,7193,0,4358_7778195_8040117,4358_295 -4358_80756,205,4358_902,Drimnagh Road,3625,0,4358_7778195_7122019,4358_30 -4358_80707,96,4358_9020,Earlsfort Terrace,13686,0,4358_7778195_8040101,4358_295 -4358_80707,205,4358_9021,Earlsfort Terrace,7087,0,4358_7778195_8040103,4358_296 -4358_80707,205,4358_9022,Earlsfort Terrace,7161,0,4358_7778195_8040111,4358_295 -4358_80707,96,4358_9023,Earlsfort Terrace,13711,0,4358_7778195_8040103,4358_295 -4358_80707,205,4358_9024,Earlsfort Terrace,7119,0,4358_7778195_8040106,4358_295 -4358_80707,96,4358_9026,Earlsfort Terrace,13733,0,4358_7778195_8040105,4358_295 -4358_80707,205,4358_9027,Earlsfort Terrace,7131,0,4358_7778195_8040108,4358_296 -4358_80707,205,4358_9028,Earlsfort Terrace,7137,0,4358_7778195_8040109,4358_295 -4358_80707,96,4358_9029,Earlsfort Terrace,13701,0,4358_7778195_8040102,4358_295 -4358_80707,205,4358_9030,Earlsfort Terrace,7151,0,4358_7778195_8040110,4358_295 -4358_80707,96,4358_9032,Earlsfort Terrace,13723,0,4358_7778195_8040104,4358_295 -4358_80707,205,4358_9033,Earlsfort Terrace,7184,0,4358_7778195_8040115,4358_296 -4358_80707,205,4358_9034,Earlsfort Terrace,7171,0,4358_7778195_8040112,4358_295 -4358_80707,96,4358_9035,Earlsfort Terrace,13745,0,4358_7778195_8040106,4358_295 -4358_80707,205,4358_9037,Earlsfort Terrace,7192,0,4358_7778195_8040116,4358_296 -4358_80707,205,4358_9038,Earlsfort Terrace,7063,0,4358_7778195_8040101,4358_295 -4358_80707,96,4358_9039,Earlsfort Terrace,13755,0,4358_7778195_8040108,4358_296 -4358_80756,205,4358_904,Drimnagh Road,3595,0,4358_7778195_7122022,4358_28 -4358_80707,205,4358_9040,Earlsfort Terrace,7179,0,4358_7778195_8040113,4358_295 -4358_80707,96,4358_9041,Earlsfort Terrace,13769,0,4358_7778195_8040109,4358_295 -4358_80707,205,4358_9043,Earlsfort Terrace,7102,0,4358_7778195_8040104,4358_296 -4358_80707,96,4358_9044,Earlsfort Terrace,13779,0,4358_7778195_8040110,4358_295 -4358_80707,205,4358_9045,Earlsfort Terrace,7078,0,4358_7778195_8040102,4358_296 -4358_80707,205,4358_9046,Earlsfort Terrace,7123,0,4358_7778195_8040107,4358_295 -4358_80707,96,4358_9047,Earlsfort Terrace,13688,0,4358_7778195_8040101,4358_295 -4358_80707,205,4358_9048,Earlsfort Terrace,7203,0,4358_7778195_8040118,4358_295 -4358_80756,96,4358_905,Drimnagh Road,13105,0,4358_7778195_7122011,4358_30 -4358_80707,96,4358_9050,Earlsfort Terrace,13713,0,4358_7778195_8040103,4358_295 -4358_80707,205,4358_9051,Earlsfort Terrace,7215,0,4358_7778195_8040119,4358_295 -4358_80707,205,4358_9053,Earlsfort Terrace,7195,0,4358_7778195_8040117,4358_295 -4358_80707,96,4358_9054,Earlsfort Terrace,13735,0,4358_7778195_8040105,4358_295 -4358_80707,205,4358_9055,Earlsfort Terrace,7089,0,4358_7778195_8040103,4358_295 -4358_80707,96,4358_9056,Earlsfort Terrace,13703,0,4358_7778195_8040102,4358_295 -4358_80707,205,4358_9058,Earlsfort Terrace,7163,0,4358_7778195_8040111,4358_295 -4358_80707,96,4358_9059,Earlsfort Terrace,13810,0,4358_7778195_8040113,4358_295 -4358_80707,96,4358_9060,Earlsfort Terrace,13791,0,4358_7778195_8040111,4358_295 -4358_80707,205,4358_9061,Earlsfort Terrace,7133,0,4358_7778195_8040108,4358_296 -4358_80707,96,4358_9063,Earlsfort Terrace,13725,0,4358_7778195_8040104,4358_295 -4358_80707,205,4358_9064,Earlsfort Terrace,7139,0,4358_7778195_8040109,4358_295 -4358_80707,96,4358_9066,Earlsfort Terrace,13825,0,4358_7778195_8040115,4358_296 -4358_80707,205,4358_9067,Earlsfort Terrace,7153,0,4358_7778195_8040110,4358_295 -4358_80707,96,4358_9068,Earlsfort Terrace,13747,0,4358_7778195_8040106,4358_295 -4358_80707,205,4358_9069,Earlsfort Terrace,7186,0,4358_7778195_8040115,4358_295 -4358_80756,96,4358_907,Drimnagh Road,13166,0,4358_7778195_7122005,4358_28 -4358_80707,96,4358_9071,Earlsfort Terrace,13757,0,4358_7778195_8040108,4358_296 -4358_80707,205,4358_9072,Earlsfort Terrace,7173,0,4358_7778195_8040112,4358_295 -4358_80707,96,4358_9074,Earlsfort Terrace,13835,0,4358_7778195_8040116,4358_296 -4358_80707,205,4358_9076,Earlsfort Terrace,7065,0,4358_7778195_8040101,4358_296 -4358_80707,96,4358_9077,Earlsfort Terrace,13771,0,4358_7778195_8040109,4358_299 -4358_80707,96,4358_9078,Earlsfort Terrace,13781,0,4358_7778195_8040110,4358_295 -4358_80707,205,4358_9079,Earlsfort Terrace,7104,0,4358_7778195_8040104,4358_295 -4358_80756,205,4358_908,Drimnagh Road,3527,0,4358_7778195_7122018,4358_30 -4358_80707,96,4358_9081,Earlsfort Terrace,13798,0,4358_7778195_8040112,4358_295 -4358_80707,205,4358_9082,Earlsfort Terrace,7080,0,4358_7778195_8040102,4358_295 -4358_80707,96,4358_9084,Earlsfort Terrace,13690,0,4358_7778195_8040101,4358_296 -4358_80707,205,4358_9085,Earlsfort Terrace,7125,0,4358_7778195_8040107,4358_295 -4358_80707,96,4358_9086,Earlsfort Terrace,13847,0,4358_7778195_8040118,4358_295 -4358_80707,205,4358_9088,Earlsfort Terrace,7205,0,4358_7778195_8040118,4358_295 -4358_80707,96,4358_9089,Earlsfort Terrace,13822,0,4358_7778195_8040114,4358_295 -4358_80707,96,4358_9090,Earlsfort Terrace,13737,0,4358_7778195_8040105,4358_295 -4358_80707,205,4358_9092,Earlsfort Terrace,7217,0,4358_7778195_8040119,4358_299 -4358_80707,96,4358_9093,Earlsfort Terrace,13705,0,4358_7778195_8040102,4358_295 -4358_80707,205,4358_9094,Earlsfort Terrace,7197,0,4358_7778195_8040117,4358_295 -4358_80707,96,4358_9096,Earlsfort Terrace,13812,0,4358_7778195_8040113,4358_295 -4358_80707,205,4358_9097,Earlsfort Terrace,7091,0,4358_7778195_8040103,4358_295 -4358_80707,96,4358_9098,Earlsfort Terrace,13793,0,4358_7778195_8040111,4358_295 -4358_80756,205,4358_910,Drimnagh Road,3632,0,4358_7778195_7122021,4358_28 -4358_80707,205,4358_9100,Earlsfort Terrace,7165,0,4358_7778195_8040111,4358_295 -4358_80707,96,4358_9101,Earlsfort Terrace,13727,0,4358_7778195_8040104,4358_295 -4358_80707,205,4358_9103,Earlsfort Terrace,7227,0,4358_7778195_8040120,4358_295 -4358_80707,96,4358_9104,Earlsfort Terrace,13827,0,4358_7778195_8040115,4358_295 -4358_80707,96,4358_9106,Earlsfort Terrace,13749,0,4358_7778195_8040106,4358_296 -4358_80707,205,4358_9107,Earlsfort Terrace,7141,0,4358_7778195_8040109,4358_299 -4358_80707,96,4358_9108,Earlsfort Terrace,13759,0,4358_7778195_8040108,4358_295 -4358_80707,205,4358_9109,Earlsfort Terrace,7155,0,4358_7778195_8040110,4358_295 -4358_80756,96,4358_911,Drimnagh Road,13190,0,4358_7778195_7122007,4358_30 -4358_80707,96,4358_9111,Earlsfort Terrace,13837,0,4358_7778195_8040116,4358_295 -4358_80707,205,4358_9112,Earlsfort Terrace,7188,0,4358_7778195_8040115,4358_295 -4358_80707,96,4358_9114,Earlsfort Terrace,13773,0,4358_7778195_8040109,4358_296 -4358_80707,205,4358_9115,Earlsfort Terrace,7175,0,4358_7778195_8040112,4358_295 -4358_80707,96,4358_9116,Earlsfort Terrace,13783,0,4358_7778195_8040110,4358_295 -4358_80707,205,4358_9118,Earlsfort Terrace,7067,0,4358_7778195_8040101,4358_295 -4358_80707,96,4358_9119,Earlsfort Terrace,13800,0,4358_7778195_8040112,4358_295 -4358_80756,96,4358_912,Parnell Square,13146,0,4358_7778195_7122004,4358_29 -4358_80707,96,4358_9121,Earlsfort Terrace,13692,0,4358_7778195_8040101,4358_296 -4358_80707,205,4358_9122,Earlsfort Terrace,7106,0,4358_7778195_8040104,4358_299 -4358_80707,205,4358_9123,Earlsfort Terrace,7082,0,4358_7778195_8040102,4358_295 -4358_80707,96,4358_9124,Earlsfort Terrace,13849,0,4358_7778195_8040118,4358_296 -4358_80707,96,4358_9126,Earlsfort Terrace,13824,0,4358_7778195_8040114,4358_295 -4358_80707,205,4358_9127,Earlsfort Terrace,7238,0,4358_7778195_8040122,4358_296 -4358_80707,205,4358_9128,Earlsfort Terrace,7127,0,4358_7778195_8040107,4358_295 -4358_80707,96,4358_9129,Earlsfort Terrace,13739,0,4358_7778195_8040105,4358_296 -4358_80707,96,4358_9131,Earlsfort Terrace,13873,0,4358_7778195_8040122,4358_295 -4358_80707,205,4358_9132,Earlsfort Terrace,7207,0,4358_7778195_8040118,4358_296 -4358_80707,96,4358_9134,Earlsfort Terrace,13707,0,4358_7778195_8040102,4358_295 -4358_80707,205,4358_9135,Earlsfort Terrace,7236,0,4358_7778195_8040121,4358_296 -4358_80707,96,4358_9136,Earlsfort Terrace,13814,0,4358_7778195_8040113,4358_295 -4358_80707,205,4358_9137,Earlsfort Terrace,7219,0,4358_7778195_8040119,4358_296 -4358_80707,96,4358_9139,Earlsfort Terrace,13795,0,4358_7778195_8040111,4358_295 -4358_80756,205,4358_914,Parnell Square,3566,0,4358_7778195_7122017,4358_32 -4358_80707,205,4358_9140,Earlsfort Terrace,7199,0,4358_7778195_8040117,4358_296 -4358_80707,96,4358_9142,Earlsfort Terrace,13729,0,4358_7778195_8040104,4358_295 -4358_80707,205,4358_9143,Earlsfort Terrace,7093,0,4358_7778195_8040103,4358_296 -4358_80707,96,4358_9145,Earlsfort Terrace,13829,0,4358_7778195_8040115,4358_296 -4358_80707,205,4358_9146,Earlsfort Terrace,7167,0,4358_7778195_8040111,4358_299 -4358_80707,96,4358_9147,Earlsfort Terrace,13856,0,4358_7778195_8040120,4358_295 -4358_80707,205,4358_9148,Earlsfort Terrace,7229,0,4358_7778195_8040120,4358_296 -4358_80756,205,4358_915,Ashington,3498,1,4358_7778195_7122002,4358_33 -4358_80707,205,4358_9150,Earlsfort Terrace,7254,0,4358_7778195_8040125,4358_295 -4358_80707,96,4358_9151,Earlsfort Terrace,13761,0,4358_7778195_8040108,4358_296 -4358_80707,205,4358_9153,Earlsfort Terrace,7143,0,4358_7778195_8040109,4358_296 -4358_80707,96,4358_9154,Earlsfort Terrace,13839,0,4358_7778195_8040116,4358_299 -4358_80707,205,4358_9155,Earlsfort Terrace,7157,0,4358_7778195_8040110,4358_295 -4358_80707,96,4358_9156,Earlsfort Terrace,13864,0,4358_7778195_8040121,4358_296 -4358_80707,205,4358_9158,Earlsfort Terrace,7190,0,4358_7778195_8040115,4358_295 -4358_80707,96,4358_9159,Earlsfort Terrace,13775,0,4358_7778195_8040109,4358_296 -4358_80756,205,4358_916,Ashington,3421,1,4358_7778195_7122004,4358_33 -4358_80707,96,4358_9160,Earlsfort Terrace,13785,0,4358_7778195_8040110,4358_295 -4358_80707,205,4358_9162,Earlsfort Terrace,7257,0,4358_7778195_8040127,4358_299 -4358_80707,205,4358_9163,Earlsfort Terrace,7069,0,4358_7778195_8040101,4358_295 -4358_80707,96,4358_9164,Earlsfort Terrace,13802,0,4358_7778195_8040112,4358_296 -4358_80707,96,4358_9166,Earlsfort Terrace,13694,0,4358_7778195_8040101,4358_295 -4358_80707,205,4358_9167,Earlsfort Terrace,7108,0,4358_7778195_8040104,4358_296 -4358_80707,205,4358_9168,Earlsfort Terrace,7084,0,4358_7778195_8040102,4358_295 -4358_80756,205,4358_917,Ashington,3438,1,4358_7778195_7122006,4358_33 -4358_80707,96,4358_9170,Earlsfort Terrace,13851,0,4358_7778195_8040118,4358_299 -4358_80707,96,4358_9171,Earlsfort Terrace,13741,0,4358_7778195_8040105,4358_295 -4358_80707,205,4358_9172,Earlsfort Terrace,7240,0,4358_7778195_8040122,4358_296 -4358_80707,96,4358_9173,Earlsfort Terrace,13875,0,4358_7778195_8040122,4358_295 -4358_80707,205,4358_9175,Earlsfort Terrace,7253,0,4358_7778195_8040124,4358_299 -4358_80707,205,4358_9176,Earlsfort Terrace,7209,0,4358_7778195_8040118,4358_295 -4358_80707,96,4358_9177,Earlsfort Terrace,13709,0,4358_7778195_8040102,4358_296 -4358_80707,96,4358_9178,Earlsfort Terrace,13816,0,4358_7778195_8040113,4358_295 -4358_80756,96,4358_918,Ashington,13191,1,4358_7778195_7122002,4358_33 -4358_80707,205,4358_9180,Earlsfort Terrace,7221,0,4358_7778195_8040119,4358_299 -4358_80707,96,4358_9181,Earlsfort Terrace,13731,0,4358_7778195_8040104,4358_295 -4358_80707,205,4358_9182,Earlsfort Terrace,7201,0,4358_7778195_8040117,4358_296 -4358_80707,96,4358_9184,Earlsfort Terrace,13831,0,4358_7778195_8040115,4358_296 -4358_80707,205,4358_9185,Earlsfort Terrace,7095,0,4358_7778195_8040103,4358_299 -4358_80707,96,4358_9186,Earlsfort Terrace,13858,0,4358_7778195_8040120,4358_295 -4358_80707,205,4358_9187,Earlsfort Terrace,7248,0,4358_7778195_8040123,4358_295 -4358_80707,96,4358_9189,Earlsfort Terrace,13763,0,4358_7778195_8040108,4358_295 -4358_80756,205,4358_919,Ashington,3597,1,4358_7778195_7122008,4358_33 -4358_80707,205,4358_9190,Earlsfort Terrace,7231,0,4358_7778195_8040120,4358_295 -4358_80707,96,4358_9191,Earlsfort Terrace,13866,0,4358_7778195_8040121,4358_295 -4358_80707,205,4358_9193,Earlsfort Terrace,7145,0,4358_7778195_8040109,4358_295 -4358_80707,96,4358_9194,Earlsfort Terrace,13787,0,4358_7778195_8040110,4358_295 -4358_80707,205,4358_9196,Earlsfort Terrace,7259,0,4358_7778195_8040127,4358_296 -4358_80707,96,4358_9197,Earlsfort Terrace,13804,0,4358_7778195_8040112,4358_295 -4358_80707,205,4358_9198,Earlsfort Terrace,7071,0,4358_7778195_8040101,4358_295 -4358_80760,205,4358_92,Shaw street,1547,0,4358_7778195_9001010,4358_1 -4358_80756,96,4358_920,Ashington,13135,1,4358_7778195_7122004,4358_33 -4358_80707,96,4358_9200,Earlsfort Terrace,13696,0,4358_7778195_8040101,4358_295 -4358_80707,205,4358_9201,Earlsfort Terrace,7110,0,4358_7778195_8040104,4358_296 -4358_80707,205,4358_9203,Earlsfort Terrace,7242,0,4358_7778195_8040122,4358_295 -4358_80707,96,4358_9204,Earlsfort Terrace,13877,0,4358_7778195_8040122,4358_295 -4358_80707,205,4358_9205,Earlsfort Terrace,7211,0,4358_7778195_8040118,4358_295 -4358_80707,96,4358_9207,Earlsfort Terrace,13818,0,4358_7778195_8040113,4358_295 -4358_80707,205,4358_9208,Earlsfort Terrace,7223,0,4358_7778195_8040119,4358_295 -4358_80756,205,4358_921,Ashington,3606,1,4358_7778195_7122011,4358_33 -4358_80707,96,4358_9210,Earlsfort Terrace,13833,0,4358_7778195_8040115,4358_295 -4358_80707,205,4358_9211,Earlsfort Terrace,7097,0,4358_7778195_8040103,4358_296 -4358_80707,205,4358_9213,Earlsfort Terrace,7250,0,4358_7778195_8040123,4358_295 -4358_80707,96,4358_9214,Earlsfort Terrace,13860,0,4358_7778195_8040120,4358_295 -4358_80707,205,4358_9215,Earlsfort Terrace,7233,0,4358_7778195_8040120,4358_295 -4358_80707,96,4358_9217,Earlsfort Terrace,13868,0,4358_7778195_8040121,4358_295 -4358_80707,205,4358_9218,Earlsfort Terrace,7147,0,4358_7778195_8040109,4358_295 -4358_80756,205,4358_922,Ashington,3614,1,4358_7778195_7122001,4358_33 -4358_80707,96,4358_9220,Earlsfort Terrace,13789,0,4358_7778195_8040110,4358_295 -4358_80707,205,4358_9221,Earlsfort Terrace,7261,0,4358_7778195_8040127,4358_296 -4358_80707,205,4358_9223,Earlsfort Terrace,7073,0,4358_7778195_8040101,4358_295 -4358_80707,96,4358_9224,Earlsfort Terrace,13806,0,4358_7778195_8040112,4358_295 -4358_80707,205,4358_9226,Earlsfort Terrace,7112,0,4358_7778195_8040104,4358_296 -4358_80707,205,4358_9227,Earlsfort Terrace,7213,0,4358_7778195_8040118,4358_295 -4358_80707,96,4358_9229,O'Connell St,13820,0,4358_7778195_8040113,4358_298 -4358_80756,96,4358_923,Ashington,13147,1,4358_7778195_7122006,4358_33 -4358_80707,205,4358_9230,Earlsfort Terrace,7225,0,4358_7778195_8040119,4358_295 -4358_80707,205,4358_9231,Charlestown,7060,1,4358_7778195_8040101,4358_300 -4358_80707,205,4358_9232,Charlestown,7099,1,4358_7778195_8040104,4358_300 -4358_80707,205,4358_9233,Charlestown,7113,1,4358_7778195_8040105,4358_300 -4358_80707,205,4358_9234,Charlestown,7075,1,4358_7778195_8040102,4358_300 -4358_80707,205,4358_9235,Charlestown,7120,1,4358_7778195_8040107,4358_300 -4358_80707,205,4358_9236,Charlestown,7086,1,4358_7778195_8040103,4358_300 -4358_80707,96,4358_9237,Charlestown,13685,1,4358_7778195_8040101,4358_300 -4358_80707,205,4358_9238,Charlestown,7160,1,4358_7778195_8040111,4358_300 -4358_80707,205,4358_9239,Charlestown,7118,1,4358_7778195_8040106,4358_300 -4358_80756,205,4358_924,Ashington,3537,1,4358_7778195_7122003,4358_33 -4358_80707,96,4358_9240,Charlestown,13710,1,4358_7778195_8040103,4358_301 -4358_80707,205,4358_9241,Charlestown,7130,1,4358_7778195_8040108,4358_300 -4358_80707,96,4358_9242,Charlestown,13732,1,4358_7778195_8040105,4358_300 -4358_80707,205,4358_9243,Charlestown,7136,1,4358_7778195_8040109,4358_300 -4358_80707,205,4358_9244,Charlestown,7150,1,4358_7778195_8040110,4358_300 -4358_80707,96,4358_9245,Charlestown,13700,1,4358_7778195_8040102,4358_301 -4358_80707,205,4358_9246,Charlestown,7170,1,4358_7778195_8040112,4358_300 -4358_80707,96,4358_9247,Charlestown,13722,1,4358_7778195_8040104,4358_300 -4358_80707,205,4358_9248,Charlestown,7191,1,4358_7778195_8040116,4358_300 -4358_80707,205,4358_9249,Charlestown,7062,1,4358_7778195_8040101,4358_300 -4358_80756,205,4358_925,Ashington,3501,1,4358_7778195_7122013,4358_33 -4358_80707,96,4358_9250,Charlestown,13744,1,4358_7778195_8040106,4358_301 -4358_80707,205,4358_9251,Charlestown,7178,1,4358_7778195_8040113,4358_300 -4358_80707,96,4358_9252,Charlestown,13754,1,4358_7778195_8040108,4358_300 -4358_80707,205,4358_9253,Charlestown,7101,1,4358_7778195_8040104,4358_300 -4358_80707,205,4358_9255,Charlestown,7115,1,4358_7778195_8040105,4358_301 -4358_80707,96,4358_9256,Charlestown,13768,1,4358_7778195_8040109,4358_302 -4358_80707,205,4358_9257,Charlestown,7077,1,4358_7778195_8040102,4358_300 -4358_80707,96,4358_9258,Charlestown,13778,1,4358_7778195_8040110,4358_300 -4358_80707,205,4358_9259,Charlestown,7122,1,4358_7778195_8040107,4358_300 -4358_80707,205,4358_9260,Charlestown,7202,1,4358_7778195_8040118,4358_300 -4358_80707,96,4358_9262,Charlestown,13687,1,4358_7778195_8040101,4358_302 -4358_80707,205,4358_9263,Charlestown,7214,1,4358_7778195_8040119,4358_300 -4358_80707,96,4358_9264,Charlestown,13712,1,4358_7778195_8040103,4358_300 -4358_80707,205,4358_9265,Charlestown,7194,1,4358_7778195_8040117,4358_300 -4358_80707,205,4358_9267,Charlestown,7088,1,4358_7778195_8040103,4358_301 -4358_80707,96,4358_9268,Charlestown,13734,1,4358_7778195_8040105,4358_302 -4358_80707,205,4358_9269,Charlestown,7162,1,4358_7778195_8040111,4358_300 -4358_80756,96,4358_927,Ashington,13108,1,4358_7778195_7122001,4358_33 -4358_80707,96,4358_9270,Charlestown,13702,1,4358_7778195_8040102,4358_300 -4358_80707,205,4358_9271,Charlestown,7182,1,4358_7778195_8040114,4358_300 -4358_80707,96,4358_9272,Charlestown,13790,1,4358_7778195_8040111,4358_300 -4358_80707,205,4358_9273,Charlestown,7132,1,4358_7778195_8040108,4358_301 -4358_80707,205,4358_9275,Charlestown,7138,1,4358_7778195_8040109,4358_300 -4358_80707,96,4358_9276,Charlestown,13724,1,4358_7778195_8040104,4358_300 -4358_80707,205,4358_9278,Charlestown,7152,1,4358_7778195_8040110,4358_301 -4358_80756,205,4358_928,Ashington,3395,1,4358_7778195_7122005,4358_33 -4358_80707,205,4358_9280,Charlestown,7185,1,4358_7778195_8040115,4358_301 -4358_80707,96,4358_9281,Charlestown,13746,1,4358_7778195_8040106,4358_302 -4358_80707,205,4358_9283,Charlestown,7172,1,4358_7778195_8040112,4358_301 -4358_80707,96,4358_9284,Charlestown,13756,1,4358_7778195_8040108,4358_300 -4358_80707,205,4358_9285,Charlestown,7064,1,4358_7778195_8040101,4358_300 -4358_80707,96,4358_9287,Charlestown,13770,1,4358_7778195_8040109,4358_301 -4358_80707,205,4358_9288,Charlestown,7103,1,4358_7778195_8040104,4358_300 -4358_80707,96,4358_9289,Charlestown,13780,1,4358_7778195_8040110,4358_300 -4358_80756,205,4358_929,Ashington,3386,1,4358_7778195_7122007,4358_33 -4358_80707,205,4358_9290,Charlestown,7079,1,4358_7778195_8040102,4358_300 -4358_80707,96,4358_9292,Charlestown,13797,1,4358_7778195_8040112,4358_301 -4358_80707,205,4358_9293,Charlestown,7124,1,4358_7778195_8040107,4358_300 -4358_80707,96,4358_9294,Charlestown,13689,1,4358_7778195_8040101,4358_300 -4358_80707,205,4358_9296,Charlestown,7204,1,4358_7778195_8040118,4358_301 -4358_80707,96,4358_9297,Charlestown,13714,1,4358_7778195_8040103,4358_302 -4358_80707,96,4358_9298,Charlestown,13821,1,4358_7778195_8040114,4358_300 -4358_80707,205,4358_9299,Charlestown,7216,1,4358_7778195_8040119,4358_300 -4358_80760,96,4358_93,Shaw street,9390,0,4358_7778195_9001001,4358_1 -4358_80756,96,4358_930,Ashington,13124,1,4358_7778195_7122003,4358_33 -4358_80707,96,4358_9300,Charlestown,13736,1,4358_7778195_8040105,4358_300 -4358_80707,205,4358_9302,Charlestown,7196,1,4358_7778195_8040117,4358_300 -4358_80707,96,4358_9303,Charlestown,13704,1,4358_7778195_8040102,4358_300 -4358_80707,205,4358_9304,Charlestown,7090,1,4358_7778195_8040103,4358_300 -4358_80707,96,4358_9305,Charlestown,13811,1,4358_7778195_8040113,4358_300 -4358_80707,205,4358_9307,Charlestown,7164,1,4358_7778195_8040111,4358_300 -4358_80707,96,4358_9308,Charlestown,13792,1,4358_7778195_8040111,4358_300 -4358_80707,96,4358_9310,Charlestown,13726,1,4358_7778195_8040104,4358_301 -4358_80707,205,4358_9311,Charlestown,7134,1,4358_7778195_8040108,4358_302 -4358_80707,96,4358_9312,Charlestown,13826,1,4358_7778195_8040115,4358_300 -4358_80707,205,4358_9313,Charlestown,7140,1,4358_7778195_8040109,4358_300 -4358_80707,96,4358_9315,Charlestown,13748,1,4358_7778195_8040106,4358_300 -4358_80707,205,4358_9316,Charlestown,7154,1,4358_7778195_8040110,4358_300 -4358_80707,96,4358_9318,Charlestown,13758,1,4358_7778195_8040108,4358_301 -4358_80707,205,4358_9319,Charlestown,7187,1,4358_7778195_8040115,4358_300 -4358_80756,205,4358_932,Ashington,3504,1,4358_7778195_7122009,4358_33 -4358_80707,96,4358_9321,Charlestown,13836,1,4358_7778195_8040116,4358_301 -4358_80707,205,4358_9322,Charlestown,7174,1,4358_7778195_8040112,4358_300 -4358_80707,96,4358_9324,Charlestown,13772,1,4358_7778195_8040109,4358_301 -4358_80707,205,4358_9325,Charlestown,7066,1,4358_7778195_8040101,4358_300 -4358_80707,96,4358_9327,Charlestown,13782,1,4358_7778195_8040110,4358_302 -4358_80707,96,4358_9328,Charlestown,13799,1,4358_7778195_8040112,4358_300 -4358_80707,205,4358_9329,Charlestown,7105,1,4358_7778195_8040104,4358_300 -4358_80756,96,4358_933,Ashington,13157,1,4358_7778195_7122005,4358_33 -4358_80707,96,4358_9331,Charlestown,13691,1,4358_7778195_8040101,4358_300 -4358_80707,205,4358_9332,Charlestown,7081,1,4358_7778195_8040102,4358_300 -4358_80707,96,4358_9334,Charlestown,13848,1,4358_7778195_8040118,4358_301 -4358_80707,205,4358_9335,Charlestown,7126,1,4358_7778195_8040107,4358_300 -4358_80707,96,4358_9336,Charlestown,13823,1,4358_7778195_8040114,4358_300 -4358_80707,205,4358_9338,Charlestown,7206,1,4358_7778195_8040118,4358_300 -4358_80707,96,4358_9339,Charlestown,13738,1,4358_7778195_8040105,4358_300 -4358_80756,205,4358_934,Ashington,3574,1,4358_7778195_7122010,4358_33 -4358_80707,96,4358_9341,Charlestown,13706,1,4358_7778195_8040102,4358_301 -4358_80707,205,4358_9342,Charlestown,7218,1,4358_7778195_8040119,4358_302 -4358_80707,96,4358_9343,Charlestown,13813,1,4358_7778195_8040113,4358_300 -4358_80707,205,4358_9344,Charlestown,7198,1,4358_7778195_8040117,4358_300 -4358_80707,96,4358_9346,Charlestown,13794,1,4358_7778195_8040111,4358_300 -4358_80707,205,4358_9347,Charlestown,7092,1,4358_7778195_8040103,4358_300 -4358_80707,96,4358_9348,Charlestown,13728,1,4358_7778195_8040104,4358_300 -4358_80707,205,4358_9350,Charlestown,7166,1,4358_7778195_8040111,4358_300 -4358_80707,96,4358_9351,Charlestown,13828,1,4358_7778195_8040115,4358_300 -4358_80707,205,4358_9353,Charlestown,7228,1,4358_7778195_8040120,4358_300 -4358_80707,96,4358_9354,Charlestown,13855,1,4358_7778195_8040120,4358_300 -4358_80707,205,4358_9355,Charlestown,7142,1,4358_7778195_8040109,4358_300 -4358_80707,96,4358_9357,Charlestown,13760,1,4358_7778195_8040108,4358_302 -4358_80707,96,4358_9358,Charlestown,13838,1,4358_7778195_8040116,4358_300 -4358_80707,205,4358_9359,Charlestown,7156,1,4358_7778195_8040110,4358_300 -4358_80756,205,4358_936,Ashington,3584,1,4358_7778195_7122012,4358_33 -4358_80707,96,4358_9361,Charlestown,13863,1,4358_7778195_8040121,4358_300 -4358_80707,205,4358_9362,Charlestown,7189,1,4358_7778195_8040115,4358_300 -4358_80707,96,4358_9363,Charlestown,13774,1,4358_7778195_8040109,4358_300 -4358_80707,205,4358_9365,Charlestown,7176,1,4358_7778195_8040112,4358_300 -4358_80707,96,4358_9366,Charlestown,13784,1,4358_7778195_8040110,4358_300 -4358_80707,205,4358_9367,Charlestown,7068,1,4358_7778195_8040101,4358_300 -4358_80707,96,4358_9369,Charlestown,13801,1,4358_7778195_8040112,4358_300 -4358_80756,96,4358_937,Ashington,13181,1,4358_7778195_7122007,4358_35 -4358_80707,205,4358_9370,Charlestown,7107,1,4358_7778195_8040104,4358_300 -4358_80707,96,4358_9372,Charlestown,13693,1,4358_7778195_8040101,4358_301 -4358_80707,205,4358_9373,Charlestown,7083,1,4358_7778195_8040102,4358_300 -4358_80707,96,4358_9374,Charlestown,13850,1,4358_7778195_8040118,4358_300 -4358_80707,205,4358_9376,Charlestown,7239,1,4358_7778195_8040122,4358_301 -4358_80707,96,4358_9377,Charlestown,13740,1,4358_7778195_8040105,4358_300 -4358_80707,205,4358_9378,Charlestown,7252,1,4358_7778195_8040124,4358_300 -4358_80707,96,4358_9379,Charlestown,13874,1,4358_7778195_8040122,4358_300 -4358_80756,205,4358_938,Ashington,3500,1,4358_7778195_7122002,4358_33 -4358_80707,205,4358_9381,Charlestown,7208,1,4358_7778195_8040118,4358_300 -4358_80707,96,4358_9382,Charlestown,13708,1,4358_7778195_8040102,4358_300 -4358_80707,205,4358_9384,Charlestown,7237,1,4358_7778195_8040121,4358_301 -4358_80707,96,4358_9385,Charlestown,13815,1,4358_7778195_8040113,4358_300 -4358_80707,205,4358_9386,Charlestown,7220,1,4358_7778195_8040119,4358_300 -4358_80707,96,4358_9387,Charlestown,13796,1,4358_7778195_8040111,4358_300 -4358_80707,205,4358_9389,Charlestown,7200,1,4358_7778195_8040117,4358_300 -4358_80756,96,4358_939,Ashington,13193,1,4358_7778195_7122002,4358_33 -4358_80707,96,4358_9390,Charlestown,13730,1,4358_7778195_8040104,4358_300 -4358_80707,205,4358_9392,Charlestown,7094,1,4358_7778195_8040103,4358_301 -4358_80707,96,4358_9393,Charlestown,13830,1,4358_7778195_8040115,4358_300 -4358_80707,205,4358_9394,Charlestown,7247,1,4358_7778195_8040123,4358_300 -4358_80707,96,4358_9395,Charlestown,13857,1,4358_7778195_8040120,4358_300 -4358_80707,205,4358_9397,Charlestown,7256,1,4358_7778195_8040126,4358_300 -4358_80707,96,4358_9398,Charlestown,13762,1,4358_7778195_8040108,4358_300 -4358_80760,205,4358_94,Shaw street,1641,0,4358_7778195_9001011,4358_1 -4358_80707,205,4358_9400,Charlestown,7230,1,4358_7778195_8040120,4358_301 -4358_80707,96,4358_9401,Charlestown,13840,1,4358_7778195_8040116,4358_300 -4358_80707,205,4358_9402,Charlestown,7255,1,4358_7778195_8040125,4358_300 -4358_80707,96,4358_9403,Charlestown,13865,1,4358_7778195_8040121,4358_300 -4358_80707,205,4358_9405,Charlestown,7144,1,4358_7778195_8040109,4358_300 -4358_80707,96,4358_9406,Charlestown,13776,1,4358_7778195_8040109,4358_300 -4358_80707,205,4358_9407,Charlestown,7158,1,4358_7778195_8040110,4358_300 -4358_80707,96,4358_9408,Charlestown,13786,1,4358_7778195_8040110,4358_300 -4358_80756,205,4358_941,Ashington,3576,1,4358_7778195_7122014,4358_33 -4358_80707,205,4358_9410,Charlestown,7258,1,4358_7778195_8040127,4358_300 -4358_80707,96,4358_9411,Charlestown,13803,1,4358_7778195_8040112,4358_300 -4358_80707,205,4358_9412,Charlestown,7070,1,4358_7778195_8040101,4358_300 -4358_80707,96,4358_9414,Charlestown,13695,1,4358_7778195_8040101,4358_300 -4358_80707,205,4358_9415,Charlestown,7109,1,4358_7778195_8040104,4358_301 -4358_80707,96,4358_9416,Charlestown,13742,1,4358_7778195_8040105,4358_300 -4358_80707,205,4358_9418,Charlestown,7241,1,4358_7778195_8040122,4358_302 -4358_80707,96,4358_9419,Charlestown,13876,1,4358_7778195_8040122,4358_300 -4358_80756,96,4358_942,Ashington,13137,1,4358_7778195_7122004,4358_33 -4358_80707,205,4358_9420,Charlestown,7210,1,4358_7778195_8040118,4358_301 -4358_80707,96,4358_9422,Charlestown,13817,1,4358_7778195_8040113,4358_300 -4358_80707,205,4358_9423,Charlestown,7222,1,4358_7778195_8040119,4358_301 -4358_80707,205,4358_9425,Charlestown,7096,1,4358_7778195_8040103,4358_300 -4358_80707,96,4358_9426,Charlestown,13832,1,4358_7778195_8040115,4358_300 -4358_80707,205,4358_9427,Charlestown,7249,1,4358_7778195_8040123,4358_300 -4358_80707,96,4358_9429,Charlestown,13859,1,4358_7778195_8040120,4358_300 -4358_80756,205,4358_943,Ashington,3423,1,4358_7778195_7122004,4358_33 -4358_80707,205,4358_9430,Charlestown,7232,1,4358_7778195_8040120,4358_300 -4358_80707,205,4358_9432,Charlestown,7146,1,4358_7778195_8040109,4358_300 -4358_80707,96,4358_9433,Charlestown,13867,1,4358_7778195_8040121,4358_301 -4358_80707,205,4358_9435,Charlestown,7260,1,4358_7778195_8040127,4358_300 -4358_80707,96,4358_9436,Charlestown,13788,1,4358_7778195_8040110,4358_300 -4358_80707,205,4358_9438,Charlestown,7072,1,4358_7778195_8040101,4358_301 -4358_80707,96,4358_9439,Charlestown,13805,1,4358_7778195_8040112,4358_300 -4358_80707,205,4358_9440,Charlestown,7111,1,4358_7778195_8040104,4358_300 -4358_80707,96,4358_9442,Charlestown,13878,1,4358_7778195_8040122,4358_300 -4358_80707,205,4358_9443,Charlestown,7243,1,4358_7778195_8040122,4358_301 -4358_80707,205,4358_9445,Charlestown,7212,1,4358_7778195_8040118,4358_300 -4358_80707,96,4358_9446,Charlestown,13819,1,4358_7778195_8040113,4358_300 -4358_80707,205,4358_9448,Charlestown,7224,1,4358_7778195_8040119,4358_301 -4358_80707,96,4358_9449,Charlestown,13834,1,4358_7778195_8040115,4358_300 -4358_80756,96,4358_945,Ashington,13149,1,4358_7778195_7122006,4358_33 -4358_80707,205,4358_9450,Charlestown,7098,1,4358_7778195_8040103,4358_300 -4358_80707,96,4358_9452,Charlestown,13861,1,4358_7778195_8040120,4358_300 -4358_80707,205,4358_9453,Charlestown,7251,1,4358_7778195_8040123,4358_301 -4358_80707,205,4358_9454,Charlestown,7234,1,4358_7778195_8040120,4358_300 -4358_80707,96,4358_9455,Charlestown,13869,1,4358_7778195_8040121,4358_301 -4358_80707,205,4358_9457,Charlestown,7148,1,4358_7778195_8040109,4358_300 -4358_80708,96,4358_9458,Toberburr,13750,0,4358_7778195_8040107,4358_303 -4358_80708,205,4358_9459,Toberburr,7180,0,4358_7778195_8040114,4358_303 -4358_80756,205,4358_946,Ashington,3440,1,4358_7778195_7122006,4358_33 -4358_80708,205,4358_9460,Toberburr,7226,0,4358_7778195_8040120,4358_303 -4358_80708,96,4358_9462,Toberburr,13842,0,4358_7778195_8040117,4358_303 -4358_80708,96,4358_9463,Toberburr,13852,0,4358_7778195_8040119,4358_303 -4358_80708,205,4358_9465,Toberburr,7245,0,4358_7778195_8040123,4358_303 -4358_80708,205,4358_9466,Toberburr,7128,0,4358_7778195_8040107,4358_303 -4358_80708,96,4358_9467,Toberburr,13854,0,4358_7778195_8040119,4358_303 -4358_80708,205,4358_9469,Toberburr,7168,0,4358_7778195_8040111,4358_303 -4358_80756,96,4358_947,Ashington,13173,1,4358_7778195_7122009,4358_33 -4358_80708,96,4358_9471,Toberburr,13862,0,4358_7778195_8040120,4358_305 -4358_80708,205,4358_9472,Toberburr,7244,0,4358_7778195_8040122,4358_306 -4358_80708,205,4358_9473,O'Connell St,7183,1,4358_7778195_8040115,4358_307 -4358_80708,96,4358_9474,O'Connell St,13751,1,4358_7778195_8040107,4358_307 -4358_80708,205,4358_9475,O'Connell St,7181,1,4358_7778195_8040114,4358_307 -4358_80708,96,4358_9476,O'Connell St,13752,1,4358_7778195_8040107,4358_307 -4358_80708,205,4358_9477,O'Connell St,7116,1,4358_7778195_8040105,4358_307 -4358_80708,96,4358_9479,O'Connell St,13843,1,4358_7778195_8040117,4358_307 -4358_80756,205,4358_948,Ashington,3599,1,4358_7778195_7122008,4358_33 -4358_80708,205,4358_9480,O'Connell St,7235,1,4358_7778195_8040121,4358_307 -4358_80708,96,4358_9482,O'Connell St,13853,1,4358_7778195_8040119,4358_307 -4358_80708,205,4358_9483,O'Connell St,7246,1,4358_7778195_8040123,4358_307 -4358_80708,96,4358_9484,O'Connell St,13841,1,4358_7778195_8040116,4358_307 -4358_80708,205,4358_9485,O'Connell St,7159,1,4358_7778195_8040110,4358_307 -4358_80710,205,4358_9487,Tyrrelstown,6722,0,4358_7778195_8040202,4358_308 -4358_80710,205,4358_9488,Tyrrelstown,6728,0,4358_7778195_8040204,4358_308 -4358_80710,96,4358_9489,Tyrrelstown,13475,0,4358_7778195_8040203,4358_309 -4358_80710,205,4358_9490,Tyrrelstown,6739,0,4358_7778195_8040207,4358_308 -4358_80710,205,4358_9491,Tyrrelstown,6719,0,4358_7778195_8040201,4358_308 -4358_80710,205,4358_9492,Tyrrelstown,6726,0,4358_7778195_8040203,4358_308 -4358_80710,96,4358_9493,Tyrrelstown,13478,0,4358_7778195_8040204,4358_309 -4358_80710,205,4358_9494,Tyrrelstown,6732,0,4358_7778195_8040205,4358_308 -4358_80710,205,4358_9495,Tyrrelstown,6736,0,4358_7778195_8040206,4358_308 -4358_80710,96,4358_9496,Tyrrelstown,13472,0,4358_7778195_8040201,4358_309 -4358_80710,205,4358_9497,Tyrrelstown,6744,0,4358_7778195_8040208,4358_308 -4358_80710,96,4358_9498,Tyrrelstown,13481,0,4358_7778195_8040205,4358_309 -4358_80710,205,4358_9499,Tyrrelstown,6724,0,4358_7778195_8040202,4358_308 -4358_80756,96,4358_950,Ashington,13110,1,4358_7778195_7122001,4358_33 -4358_80710,205,4358_9500,Tyrrelstown,6730,0,4358_7778195_8040204,4358_308 -4358_80710,96,4358_9502,Tyrrelstown,13477,0,4358_7778195_8040203,4358_309 -4358_80710,205,4358_9503,Tyrrelstown,6741,0,4358_7778195_8040207,4358_308 -4358_80710,205,4358_9504,Tyrrelstown,6721,0,4358_7778195_8040201,4358_308 -4358_80710,96,4358_9505,Tyrrelstown,13480,0,4358_7778195_8040204,4358_309 -4358_80710,205,4358_9507,Tyrrelstown,6734,0,4358_7778195_8040205,4358_308 -4358_80710,96,4358_9508,Tyrrelstown,13483,0,4358_7778195_8040205,4358_309 -4358_80710,205,4358_9509,Tyrrelstown,6738,0,4358_7778195_8040206,4358_308 -4358_80756,205,4358_951,Ashington,3608,1,4358_7778195_7122011,4358_33 -4358_80710,96,4358_9511,Tyrrelstown,13486,0,4358_7778195_8040206,4358_309 -4358_80710,205,4358_9512,Tyrrelstown,6747,0,4358_7778195_8040209,4358_308 -4358_80710,205,4358_9514,Tyrrelstown,6750,0,4358_7778195_8040211,4358_308 -4358_80710,96,4358_9515,Tyrrelstown,13489,0,4358_7778195_8040207,4358_309 -4358_80710,205,4358_9516,Tyrrelstown,6749,0,4358_7778195_8040210,4358_308 -4358_80710,96,4358_9518,Tyrrelstown,13491,0,4358_7778195_8040208,4358_309 -4358_80710,205,4358_9519,Tyrrelstown,6753,0,4358_7778195_8040212,4358_308 -4358_80710,96,4358_9521,Tyrrelstown,13493,0,4358_7778195_8040209,4358_310 -4358_80710,205,4358_9522,Hollystown,6755,0,4358_7778195_8040213,4358_311 -4358_80710,205,4358_9523,Tyrrelstown,6760,0,4358_7778195_8040215,4358_308 -4358_80710,96,4358_9524,Tyrrelstown,13494,0,4358_7778195_8040210,4358_309 -4358_80710,205,4358_9526,Tyrrelstown,6757,0,4358_7778195_8040214,4358_308 -4358_80710,96,4358_9527,Tyrrelstown,13500,0,4358_7778195_8040212,4358_309 -4358_80710,205,4358_9528,Tyrrelstown,6763,0,4358_7778195_8040216,4358_308 -4358_80756,96,4358_953,Ashington,13126,1,4358_7778195_7122003,4358_33 -4358_80710,96,4358_9530,Tyrrelstown,13498,0,4358_7778195_8040211,4358_309 -4358_80710,205,4358_9531,Tyrrelstown,6766,0,4358_7778195_8040217,4358_308 -4358_80710,205,4358_9532,Tyrrelstown,6767,0,4358_7778195_8040218,4358_308 -4358_80710,96,4358_9534,Tyrrelstown,13496,0,4358_7778195_8040210,4358_309 -4358_80710,205,4358_9535,Hollystown,6759,0,4358_7778195_8040214,4358_311 -4358_80710,205,4358_9536,Tyrrelstown,6773,0,4358_7778195_8040220,4358_308 -4358_80710,96,4358_9537,Tyrrelstown,13502,0,4358_7778195_8040213,4358_309 -4358_80710,205,4358_9539,Tyrrelstown,6779,0,4358_7778195_8040222,4358_308 -4358_80756,205,4358_954,Ashington,3616,1,4358_7778195_7122001,4358_33 -4358_80710,205,4358_9540,Tyrrelstown,6782,0,4358_7778195_8040223,4358_308 -4358_80710,205,4358_9541,Tyrrelstown,6771,0,4358_7778195_8040219,4358_308 -4358_80710,96,4358_9542,Tyrrelstown,13503,0,4358_7778195_8040215,4358_309 -4358_80710,205,4358_9543,Tyrrelstown,6777,0,4358_7778195_8040221,4358_308 -4358_80710,205,4358_9545,Tyrrelstown,6769,0,4358_7778195_8040218,4358_308 -4358_80710,96,4358_9546,Tyrrelstown,13083,0,4358_7778195_8040214,4358_309 -4358_80710,205,4358_9547,Tyrrelstown,6786,0,4358_7778195_8040224,4358_308 -4358_80710,205,4358_9548,Tyrrelstown,6789,0,4358_7778195_8040225,4358_308 -4358_80710,205,4358_9550,Hollystown,6775,0,4358_7778195_8040220,4358_311 -4358_80710,96,4358_9551,Tyrrelstown,13506,0,4358_7778195_8040216,4358_309 -4358_80710,205,4358_9552,Tyrrelstown,6781,0,4358_7778195_8040222,4358_308 -4358_80710,205,4358_9553,Tyrrelstown,6784,0,4358_7778195_8040223,4358_308 -4358_80710,205,4358_9555,Tyrrelstown,6795,0,4358_7778195_8040227,4358_308 -4358_80710,96,4358_9556,Tyrrelstown,13508,0,4358_7778195_8040218,4358_309 -4358_80710,205,4358_9557,Tyrrelstown,6793,0,4358_7778195_8040226,4358_308 -4358_80710,205,4358_9559,Tyrrelstown,6791,0,4358_7778195_8040225,4358_309 -4358_80756,96,4358_956,Ashington,13159,1,4358_7778195_7122005,4358_33 -4358_80710,96,4358_9560,Tyrrelstown,13085,0,4358_7778195_8040217,4358_309 -4358_80710,205,4358_9561,Tyrrelstown,6798,0,4358_7778195_8040228,4358_309 -4358_80710,96,4358_9563,Tyrrelstown,13510,0,4358_7778195_8040219,4358_309 -4358_80710,205,4358_9564,Tyrrelstown,6799,0,4358_7778195_8040229,4358_309 -4358_80710,205,4358_9566,Tyrrelstown,6805,0,4358_7778195_8040231,4358_309 -4358_80710,96,4358_9567,Tyrrelstown,13515,0,4358_7778195_8040220,4358_309 -4358_80710,205,4358_9568,Tyrrelstown,6803,0,4358_7778195_8040230,4358_309 -4358_80756,205,4358_957,Ashington,3397,1,4358_7778195_7122005,4358_33 -4358_80710,205,4358_9570,Tyrrelstown,6809,0,4358_7778195_8040232,4358_309 -4358_80710,96,4358_9571,Tyrrelstown,13512,0,4358_7778195_8040219,4358_309 -4358_80710,205,4358_9572,Tyrrelstown,6801,0,4358_7778195_8040229,4358_309 -4358_80710,96,4358_9573,Tyrrelstown,13517,0,4358_7778195_8040220,4358_309 -4358_80710,205,4358_9575,Tyrrelstown,6807,0,4358_7778195_8040231,4358_309 -4358_80710,205,4358_9576,Parnell St,6718,1,4358_7778195_8040201,4358_313 -4358_80710,205,4358_9577,Parnell St,6725,1,4358_7778195_8040203,4358_313 -4358_80710,205,4358_9578,Parnell St,6731,1,4358_7778195_8040205,4358_313 -4358_80710,205,4358_9579,Parnell St,6735,1,4358_7778195_8040206,4358_312 -4358_80710,96,4358_9580,Parnell St,13471,1,4358_7778195_8040201,4358_313 -4358_80710,205,4358_9581,Parnell St,6743,1,4358_7778195_8040208,4358_313 -4358_80710,205,4358_9582,Parnell St,6723,1,4358_7778195_8040202,4358_313 -4358_80710,96,4358_9583,Parnell St,13474,1,4358_7778195_8040202,4358_313 -4358_80710,205,4358_9584,Parnell St,6729,1,4358_7778195_8040204,4358_313 -4358_80710,205,4358_9585,Parnell St,6740,1,4358_7778195_8040207,4358_313 -4358_80710,96,4358_9586,Parnell St,13476,1,4358_7778195_8040203,4358_313 -4358_80710,205,4358_9587,Parnell St,6720,1,4358_7778195_8040201,4358_313 -4358_80710,205,4358_9588,Parnell St,6727,1,4358_7778195_8040203,4358_313 -4358_80710,96,4358_9589,Parnell St,13479,1,4358_7778195_8040204,4358_314 -4358_80756,96,4358_959,Ashington,13168,1,4358_7778195_7122008,4358_33 -4358_80710,205,4358_9590,Parnell St,6733,1,4358_7778195_8040205,4358_313 -4358_80710,205,4358_9592,Parnell St,6737,1,4358_7778195_8040206,4358_313 -4358_80710,96,4358_9593,Parnell St,13473,1,4358_7778195_8040201,4358_314 -4358_80710,205,4358_9594,Parnell St,6745,1,4358_7778195_8040208,4358_313 -4358_80710,96,4358_9595,Parnell St,13482,1,4358_7778195_8040205,4358_314 -4358_80710,96,4358_9597,Parnell St,13485,1,4358_7778195_8040206,4358_313 -4358_80710,205,4358_9598,Parnell St,6746,1,4358_7778195_8040209,4358_314 -4358_80710,205,4358_9599,Parnell St,6742,1,4358_7778195_8040207,4358_313 -4358_80760,205,4358_96,Shaw street,3145,0,4358_7778195_9001004,4358_1 -4358_80756,205,4358_960,Ashington,3506,1,4358_7778195_7122009,4358_33 -4358_80710,96,4358_9601,Parnell St,13488,1,4358_7778195_8040207,4358_313 -4358_80710,205,4358_9602,Parnell St,6748,1,4358_7778195_8040210,4358_313 -4358_80710,96,4358_9603,Parnell St,13484,1,4358_7778195_8040205,4358_313 -4358_80710,205,4358_9605,Parnell St,6752,1,4358_7778195_8040212,4358_313 -4358_80710,205,4358_9606,Parnell St,6754,1,4358_7778195_8040213,4358_312 -4358_80710,96,4358_9607,Parnell St,13487,1,4358_7778195_8040206,4358_313 -4358_80710,205,4358_9609,Parnell St,6751,1,4358_7778195_8040211,4358_313 -4358_80710,96,4358_9610,Parnell St,13490,1,4358_7778195_8040207,4358_313 -4358_80710,205,4358_9611,Parnell St,6756,1,4358_7778195_8040214,4358_313 -4358_80710,96,4358_9613,Parnell St,13492,1,4358_7778195_8040208,4358_313 -4358_80710,205,4358_9614,Parnell St,6762,1,4358_7778195_8040216,4358_313 -4358_80710,96,4358_9616,Parnell St,13497,1,4358_7778195_8040211,4358_313 -4358_80710,205,4358_9617,Parnell St,6765,1,4358_7778195_8040217,4358_314 -4358_80710,205,4358_9618,Parnell St,6761,1,4358_7778195_8040215,4358_313 -4358_80710,96,4358_9619,Parnell St,13495,1,4358_7778195_8040210,4358_313 -4358_80756,96,4358_962,Ashington,13183,1,4358_7778195_7122007,4358_33 -4358_80710,205,4358_9621,Parnell St,6758,1,4358_7778195_8040214,4358_313 -4358_80710,96,4358_9622,Parnell St,13501,1,4358_7778195_8040213,4358_313 -4358_80710,205,4358_9623,Parnell St,6770,1,4358_7778195_8040219,4358_313 -4358_80710,205,4358_9625,Parnell St,6764,1,4358_7778195_8040216,4358_313 -4358_80710,96,4358_9626,Parnell St,13499,1,4358_7778195_8040211,4358_313 -4358_80710,205,4358_9627,Parnell St,6776,1,4358_7778195_8040221,4358_312 -4358_80710,205,4358_9629,Parnell St,6768,1,4358_7778195_8040218,4358_313 -4358_80756,205,4358_963,Ashington,3586,1,4358_7778195_7122012,4358_33 -4358_80710,96,4358_9630,Parnell St,13082,1,4358_7778195_8040214,4358_313 -4358_80710,205,4358_9631,Parnell St,6785,1,4358_7778195_8040224,4358_313 -4358_80710,205,4358_9632,Parnell St,6788,1,4358_7778195_8040225,4358_313 -4358_80710,205,4358_9633,Parnell St,6774,1,4358_7778195_8040220,4358_313 -4358_80710,96,4358_9634,Parnell St,13505,1,4358_7778195_8040216,4358_313 -4358_80710,205,4358_9636,Parnell St,6780,1,4358_7778195_8040222,4358_313 -4358_80710,205,4358_9637,Parnell St,6783,1,4358_7778195_8040223,4358_313 -4358_80710,205,4358_9638,Parnell St,6772,1,4358_7778195_8040219,4358_313 -4358_80710,96,4358_9639,Parnell St,13504,1,4358_7778195_8040215,4358_314 -4358_80710,205,4358_9641,Parnell St,6778,1,4358_7778195_8040221,4358_313 -4358_80710,205,4358_9642,Parnell St,6792,1,4358_7778195_8040226,4358_313 -4358_80710,96,4358_9643,Parnell St,13084,1,4358_7778195_8040217,4358_313 -4358_80710,205,4358_9644,Parnell St,6787,1,4358_7778195_8040224,4358_313 -4358_80710,205,4358_9646,Parnell St,6790,1,4358_7778195_8040225,4358_313 -4358_80710,96,4358_9647,Parnell St,13507,1,4358_7778195_8040216,4358_313 -4358_80710,205,4358_9648,Parnell St,6797,1,4358_7778195_8040228,4358_313 -4358_80756,96,4358_965,Ashington,13195,1,4358_7778195_7122002,4358_33 -4358_80710,96,4358_9650,Parnell St,13509,1,4358_7778195_8040218,4358_313 -4358_80710,205,4358_9651,Parnell St,6796,1,4358_7778195_8040227,4358_314 -4358_80710,205,4358_9652,Parnell St,6794,1,4358_7778195_8040226,4358_313 -4358_80710,96,4358_9654,Parnell St,13514,1,4358_7778195_8040220,4358_313 -4358_80710,205,4358_9655,Parnell St,6802,1,4358_7778195_8040230,4358_313 -4358_80710,205,4358_9657,Parnell St,6808,1,4358_7778195_8040232,4358_313 -4358_80710,96,4358_9658,Parnell St,13511,1,4358_7778195_8040219,4358_313 -4358_80710,205,4358_9659,Parnell St,6800,1,4358_7778195_8040229,4358_313 -4358_80756,205,4358_966,Ashington,3578,1,4358_7778195_7122014,4358_33 -4358_80710,205,4358_9661,Parnell St,6806,1,4358_7778195_8040231,4358_313 -4358_80710,96,4358_9662,Parnell St,13516,1,4358_7778195_8040220,4358_314 -4358_80710,205,4358_9663,Parnell St,6804,1,4358_7778195_8040230,4358_313 -4358_80710,96,4358_9665,Parnell St,13513,1,4358_7778195_8040219,4358_313 -4358_80710,205,4358_9666,Parnell St,6810,1,4358_7778195_8040232,4358_313 -4358_80709,205,4358_9667,Tyrrelstown,7263,0,4358_7778195_8040301,4358_315 -4358_80709,205,4358_9668,Tyrrelstown,7269,0,4358_7778195_8040302,4358_315 -4358_80709,205,4358_9669,Tyrrelstown,7274,0,4358_7778195_8040303,4358_315 -4358_80709,96,4358_9670,Tyrrelstown,13892,0,4358_7778195_8040301,4358_315 -4358_80709,205,4358_9672,Tyrrelstown,7265,0,4358_7778195_8040301,4358_315 -4358_80709,96,4358_9673,Tyrrelstown,13898,0,4358_7778195_8040302,4358_315 -4358_80709,205,4358_9674,Tyrrelstown,7271,0,4358_7778195_8040302,4358_315 -4358_80709,96,4358_9675,Tyrrelstown,13901,0,4358_7778195_8040303,4358_316 -4358_80709,96,4358_9676,Tyrrelstown,13894,0,4358_7778195_8040301,4358_315 -4358_80709,205,4358_9677,Tyrrelstown,7276,0,4358_7778195_8040303,4358_316 -4358_80709,205,4358_9679,Tyrrelstown,7267,0,4358_7778195_8040301,4358_315 -4358_80756,96,4358_968,Ashington,13139,1,4358_7778195_7122004,4358_33 -4358_80709,96,4358_9680,Tyrrelstown,13905,0,4358_7778195_8040304,4358_316 -4358_80709,96,4358_9681,Tyrrelstown,13903,0,4358_7778195_8040303,4358_315 -4358_80709,205,4358_9682,Tyrrelstown,7278,0,4358_7778195_8040304,4358_316 -4358_80709,96,4358_9684,Tyrrelstown,13896,0,4358_7778195_8040301,4358_315 -4358_80709,205,4358_9685,Tyrrelstown,7286,0,4358_7778195_8040306,4358_316 -4358_80709,96,4358_9687,Tyrrelstown,13907,0,4358_7778195_8040304,4358_316 -4358_80709,205,4358_9688,Tyrrelstown,7283,0,4358_7778195_8040305,4358_317 -4358_80709,205,4358_9689,Tyrrelstown,7280,0,4358_7778195_8040304,4358_315 -4358_80756,205,4358_969,Ashington,3425,1,4358_7778195_7122004,4358_33 -4358_80709,96,4358_9690,Tyrrelstown,13910,0,4358_7778195_8040305,4358_315 -4358_80709,205,4358_9692,Tyrrelstown,7288,0,4358_7778195_8040307,4358_315 -4358_80709,96,4358_9693,Tyrrelstown,13909,0,4358_7778195_8040304,4358_315 -4358_80709,205,4358_9694,Tyrrelstown,7285,0,4358_7778195_8040305,4358_315 -4358_80709,96,4358_9696,Tyrrelstown,13912,0,4358_7778195_8040305,4358_315 -4358_80709,205,4358_9697,Tyrrelstown,7291,0,4358_7778195_8040308,4358_316 -4358_80709,205,4358_9699,Tyrrelstown,7290,0,4358_7778195_8040307,4358_316 -4358_80760,96,4358_97,Shaw street,9520,0,4358_7778195_9001005,4358_1 -4358_80709,96,4358_9700,Tyrrelstown,13916,0,4358_7778195_8040306,4358_315 -4358_80709,205,4358_9701,Tyrrelstown,7296,0,4358_7778195_8040309,4358_315 -4358_80709,96,4358_9702,Tyrrelstown,13914,0,4358_7778195_8040305,4358_315 -4358_80709,205,4358_9704,Tyrrelstown,7293,0,4358_7778195_8040308,4358_315 -4358_80709,96,4358_9705,Tyrrelstown,13918,0,4358_7778195_8040306,4358_315 -4358_80709,205,4358_9706,Tyrrelstown,7299,0,4358_7778195_8040310,4358_316 -4358_80709,205,4358_9708,Tyrrelstown,7303,0,4358_7778195_8040311,4358_315 -4358_80709,96,4358_9709,Tyrrelstown,13922,0,4358_7778195_8040307,4358_315 -4358_80756,96,4358_971,Ashington,13151,1,4358_7778195_7122006,4358_33 -4358_80709,205,4358_9711,Tyrrelstown,7305,0,4358_7778195_8040312,4358_315 -4358_80709,96,4358_9712,Tyrrelstown,13920,0,4358_7778195_8040306,4358_315 -4358_80709,205,4358_9713,Tyrrelstown,7301,0,4358_7778195_8040310,4358_315 -4358_80709,96,4358_9715,Tyrrelstown,13924,0,4358_7778195_8040308,4358_315 -4358_80709,205,4358_9716,Tyrrelstown,7309,0,4358_7778195_8040314,4358_315 -4358_80709,205,4358_9718,Tyrrelstown,7307,0,4358_7778195_8040313,4358_315 -4358_80709,96,4358_9719,Tyrrelstown,13928,0,4358_7778195_8040309,4358_315 -4358_80756,205,4358_972,Ashington,3442,1,4358_7778195_7122006,4358_33 -4358_80709,205,4358_9720,Tyrrelstown,7312,0,4358_7778195_8040315,4358_315 -4358_80709,96,4358_9721,Tyrrelstown,13926,0,4358_7778195_8040308,4358_315 -4358_80709,205,4358_9722,Tyrrelstown,7311,0,4358_7778195_8040314,4358_315 -4358_80709,96,4358_9724,Tyrrelstown,13930,0,4358_7778195_8040310,4358_315 -4358_80709,205,4358_9725,Tyrrelstown,7315,0,4358_7778195_8040316,4358_315 -4358_80709,205,4358_9727,Tyrrelstown,7314,0,4358_7778195_8040315,4358_315 -4358_80709,96,4358_9728,Tyrrelstown,13934,0,4358_7778195_8040311,4358_315 -4358_80709,205,4358_9729,Tyrrelstown,7321,0,4358_7778195_8040317,4358_315 -4358_80709,96,4358_9731,Tyrrelstown,13932,0,4358_7778195_8040310,4358_315 -4358_80709,205,4358_9732,Tyrrelstown,7327,0,4358_7778195_8040318,4358_315 -4358_80709,205,4358_9733,Tyrrelstown,7317,0,4358_7778195_8040316,4358_315 -4358_80709,96,4358_9735,Tyrrelstown,13936,0,4358_7778195_8040311,4358_315 -4358_80709,205,4358_9736,Tyrrelstown,7323,0,4358_7778195_8040317,4358_315 -4358_80709,205,4358_9738,Tyrrelstown,7329,0,4358_7778195_8040318,4358_315 -4358_80709,96,4358_9739,Tyrrelstown,13940,0,4358_7778195_8040312,4358_315 -4358_80756,96,4358_974,Ashington,13175,1,4358_7778195_7122009,4358_33 -4358_80709,205,4358_9740,Tyrrelstown,7319,0,4358_7778195_8040316,4358_315 -4358_80709,96,4358_9742,Tyrrelstown,13938,0,4358_7778195_8040311,4358_315 -4358_80709,205,4358_9743,Tyrrelstown,7325,0,4358_7778195_8040317,4358_315 -4358_80709,205,4358_9744,Tyrrelstown,7331,0,4358_7778195_8040318,4358_315 -4358_80709,96,4358_9746,Tyrrelstown,13942,0,4358_7778195_8040312,4358_317 -4358_80709,205,4358_9747,Broombridge Luas,7262,1,4358_7778195_8040301,4358_318 -4358_80709,205,4358_9748,Broombridge Luas,7268,1,4358_7778195_8040302,4358_318 -4358_80709,205,4358_9749,Broombridge Luas,7273,1,4358_7778195_8040303,4358_318 -4358_80756,205,4358_975,Ashington,3601,1,4358_7778195_7122008,4358_33 -4358_80709,96,4358_9750,Broombridge Luas,13891,1,4358_7778195_8040301,4358_318 -4358_80709,205,4358_9751,Broombridge Luas,7264,1,4358_7778195_8040301,4358_318 -4358_80709,96,4358_9752,Broombridge Luas,13897,1,4358_7778195_8040302,4358_318 -4358_80709,205,4358_9754,Broombridge Luas,7270,1,4358_7778195_8040302,4358_318 -4358_80709,96,4358_9755,Broombridge Luas,13900,1,4358_7778195_8040303,4358_318 -4358_80709,205,4358_9756,Broombridge Luas,7275,1,4358_7778195_8040303,4358_318 -4358_80709,96,4358_9757,Broombridge Luas,13893,1,4358_7778195_8040301,4358_318 -4358_80709,205,4358_9759,Broombridge Luas,7266,1,4358_7778195_8040301,4358_318 -4358_80709,96,4358_9760,Broombridge Luas,13899,1,4358_7778195_8040302,4358_318 -4358_80709,205,4358_9761,Broombridge Luas,7272,1,4358_7778195_8040302,4358_318 -4358_80709,96,4358_9762,Broombridge Luas,13902,1,4358_7778195_8040303,4358_319 -4358_80709,96,4358_9764,Broombridge Luas,13895,1,4358_7778195_8040301,4358_318 -4358_80709,205,4358_9765,Broombridge Luas,7277,1,4358_7778195_8040303,4358_319 -4358_80709,205,4358_9767,Broombridge Luas,7282,1,4358_7778195_8040305,4358_318 -4358_80709,96,4358_9768,Broombridge Luas,13906,1,4358_7778195_8040304,4358_318 -4358_80709,205,4358_9769,Broombridge Luas,7279,1,4358_7778195_8040304,4358_318 -4358_80756,96,4358_977,Ashington,13112,1,4358_7778195_7122001,4358_33 -4358_80709,96,4358_9770,Broombridge Luas,13904,1,4358_7778195_8040303,4358_318 -4358_80709,205,4358_9772,Broombridge Luas,7287,1,4358_7778195_8040306,4358_318 -4358_80709,96,4358_9773,Broombridge Luas,13908,1,4358_7778195_8040304,4358_318 -4358_80709,205,4358_9774,Broombridge Luas,7284,1,4358_7778195_8040305,4358_318 -4358_80709,205,4358_9776,Broombridge Luas,7281,1,4358_7778195_8040304,4358_318 -4358_80709,96,4358_9777,Broombridge Luas,13911,1,4358_7778195_8040305,4358_318 -4358_80709,205,4358_9779,Broombridge Luas,7289,1,4358_7778195_8040307,4358_318 -4358_80756,205,4358_978,Ashington,3610,1,4358_7778195_7122011,4358_33 -4358_80709,96,4358_9780,Broombridge Luas,13915,1,4358_7778195_8040306,4358_318 -4358_80709,205,4358_9781,Broombridge Luas,7295,1,4358_7778195_8040309,4358_318 -4358_80709,96,4358_9783,Broombridge Luas,13913,1,4358_7778195_8040305,4358_318 -4358_80709,205,4358_9784,Broombridge Luas,7292,1,4358_7778195_8040308,4358_318 -4358_80709,205,4358_9785,Broombridge Luas,7298,1,4358_7778195_8040310,4358_318 -4358_80709,96,4358_9787,Broombridge Luas,13917,1,4358_7778195_8040306,4358_319 -4358_80709,205,4358_9788,Broombridge Luas,7297,1,4358_7778195_8040309,4358_318 -4358_80709,96,4358_9789,Broombridge Luas,13921,1,4358_7778195_8040307,4358_318 -4358_80709,205,4358_9791,Broombridge Luas,7294,1,4358_7778195_8040308,4358_318 -4358_80709,96,4358_9792,Broombridge Luas,13919,1,4358_7778195_8040306,4358_318 -4358_80709,205,4358_9793,Broombridge Luas,7300,1,4358_7778195_8040310,4358_318 -4358_80709,96,4358_9795,Broombridge Luas,13923,1,4358_7778195_8040308,4358_318 -4358_80709,205,4358_9796,Broombridge Luas,7304,1,4358_7778195_8040311,4358_318 -4358_80709,205,4358_9797,Broombridge Luas,7306,1,4358_7778195_8040313,4358_318 -4358_80709,96,4358_9799,Broombridge Luas,13927,1,4358_7778195_8040309,4358_318 -4358_80760,205,4358_98,Shaw street,1799,0,4358_7778195_9001012,4358_1 -4358_80756,96,4358_980,Ashington,13128,1,4358_7778195_7122003,4358_33 -4358_80709,205,4358_9800,Broombridge Luas,7302,1,4358_7778195_8040310,4358_318 -4358_80709,96,4358_9801,Broombridge Luas,13925,1,4358_7778195_8040308,4358_318 -4358_80709,205,4358_9803,Broombridge Luas,7310,1,4358_7778195_8040314,4358_318 -4358_80709,96,4358_9804,Broombridge Luas,13929,1,4358_7778195_8040309,4358_318 -4358_80709,205,4358_9805,Broombridge Luas,7308,1,4358_7778195_8040313,4358_318 -4358_80709,205,4358_9807,Broombridge Luas,7313,1,4358_7778195_8040315,4358_318 -4358_80709,96,4358_9808,Broombridge Luas,13933,1,4358_7778195_8040311,4358_318 -4358_80709,205,4358_9809,Broombridge Luas,7320,1,4358_7778195_8040317,4358_318 -4358_80756,205,4358_981,Ashington,3618,1,4358_7778195_7122001,4358_33 -4358_80709,96,4358_9811,Broombridge Luas,13931,1,4358_7778195_8040310,4358_318 -4358_80709,205,4358_9812,Broombridge Luas,7326,1,4358_7778195_8040318,4358_318 -4358_80709,205,4358_9814,Broombridge Luas,7316,1,4358_7778195_8040316,4358_318 -4358_80709,96,4358_9815,Broombridge Luas,13935,1,4358_7778195_8040311,4358_318 -4358_80709,205,4358_9816,Broombridge Luas,7322,1,4358_7778195_8040317,4358_318 -4358_80709,96,4358_9818,Broombridge Luas,13939,1,4358_7778195_8040312,4358_318 -4358_80709,205,4358_9819,Broombridge Luas,7328,1,4358_7778195_8040318,4358_318 -4358_80709,205,4358_9820,Broombridge Luas,7318,1,4358_7778195_8040316,4358_318 -4358_80709,96,4358_9822,Broombridge Luas,13937,1,4358_7778195_8040311,4358_318 -4358_80709,205,4358_9823,Broombridge Luas,7324,1,4358_7778195_8040317,4358_318 -4358_80709,205,4358_9825,Broombridge Luas,7330,1,4358_7778195_8040318,4358_318 -4358_80709,96,4358_9826,Broombridge Luas,13941,1,4358_7778195_8040312,4358_318 -4358_80711,205,4358_9828,Swords Manor,2644,0,4358_7778195_5041001,4358_320 -4358_80756,96,4358_983,Ashington,13161,1,4358_7778195_7122005,4358_33 -4358_80711,96,4358_9830,Swords Manor,10255,0,4358_7778195_5041002,4358_322 -4358_80711,205,4358_9831,Swords Manor,2658,0,4358_7778195_5041003,4358_320 -4358_80711,96,4358_9832,Swords Manor,9963,0,4358_7778195_5041003,4358_321 -4358_80711,205,4358_9834,Swords Manor,2763,0,4358_7778195_5041009,4358_320 -4358_80711,205,4358_9835,Swords Manor,2613,0,4358_7778195_5041007,4358_320 -4358_80711,96,4358_9836,Swords Manor,10051,0,4358_7778195_5041004,4358_320 -4358_80711,205,4358_9838,Swords Manor,2630,0,4358_7778195_5041010,4358_320 -4358_80711,205,4358_9839,Swords Manor,2327,0,4358_7778195_5041014,4358_320 -4358_80756,205,4358_984,Ashington,3399,1,4358_7778195_7122005,4358_33 -4358_80711,96,4358_9840,Swords Manor,10172,0,4358_7778195_5041001,4358_321 -4358_80711,205,4358_9842,Swords Manor,2503,0,4358_7778195_5041002,4358_320 -4358_80711,96,4358_9843,Swords Manor,10145,0,4358_7778195_5041007,4358_320 -4358_80711,205,4358_9845,Swords Manor,2646,0,4358_7778195_5041001,4358_320 -4358_80711,96,4358_9846,Swords Manor,9965,0,4358_7778195_5041003,4358_320 -4358_80711,205,4358_9848,Swords Manor,2660,0,4358_7778195_5041003,4358_320 -4358_80711,205,4358_9849,Swords Manor,2765,0,4358_7778195_5041009,4358_320 -4358_80711,96,4358_9850,Swords Manor,10053,0,4358_7778195_5041004,4358_320 -4358_80711,205,4358_9852,Swords Manor,2615,0,4358_7778195_5041007,4358_320 -4358_80711,96,4358_9853,Swords Manor,10174,0,4358_7778195_5041001,4358_320 -4358_80711,205,4358_9854,Swords Manor,2559,0,4358_7778195_5041015,4358_321 -4358_80711,205,4358_9856,Swords Manor,2691,0,4358_7778195_5041017,4358_320 -4358_80711,96,4358_9857,Swords Manor,10267,0,4358_7778195_5041008,4358_320 -4358_80711,205,4358_9859,Swords Manor,2329,0,4358_7778195_5041014,4358_320 -4358_80756,96,4358_986,Ashington,13170,1,4358_7778195_7122008,4358_33 -4358_80711,96,4358_9860,Swords Manor,10259,0,4358_7778195_5041002,4358_320 -4358_80711,205,4358_9862,Swords Manor,6462,0,4358_7778195_7041576,4358_321 -4358_80711,96,4358_9863,Swords Manor,9967,0,4358_7778195_5041003,4358_320 -4358_80711,205,4358_9864,Swords Manor,2705,0,4358_7778195_5041004,4358_320 -4358_80711,96,4358_9866,Swords Manor,10229,0,4358_7778195_5041013,4358_320 -4358_80711,205,4358_9867,Swords Manor,7838,0,4358_7778195_8818127,4358_320 -4358_80711,96,4358_9868,Swords Manor,10243,0,4358_7778195_5041005,4358_320 -4358_80711,205,4358_9869,Swords Manor,2447,0,4358_7778195_5041008,4358_320 -4358_80756,205,4358_987,Ashington,3508,1,4358_7778195_7122009,4358_33 -4358_80711,96,4358_9871,Swords Manor,10176,0,4358_7778195_5041001,4358_320 -4358_80711,205,4358_9872,Swords Manor,2487,0,4358_7778195_5041011,4358_320 -4358_80711,96,4358_9874,Swords Manor,10166,0,4358_7778195_5041010,4358_320 -4358_80711,205,4358_9875,Swords Manor,2561,0,4358_7778195_5041015,4358_320 -4358_80711,96,4358_9876,Swords Manor,9955,0,4358_7778195_5041012,4358_320 -4358_80711,205,4358_9877,Swords Manor,2562,0,4358_7778195_5041025,4358_320 -4358_80711,96,4358_9879,Swords Manor,10149,0,4358_7778195_5041007,4358_320 -4358_80711,205,4358_9880,Swords Manor,2433,0,4358_7778195_5041018,4358_320 -4358_80711,96,4358_9881,Swords Manor,10185,0,4358_7778195_5041011,4358_320 -4358_80711,205,4358_9883,Swords Manor,2375,0,4358_7778195_5041019,4358_320 -4358_80711,96,4358_9884,Swords Manor,10289,0,4358_7778195_5041017,4358_320 -4358_80711,205,4358_9885,Swords Manor,2650,0,4358_7778195_5041001,4358_320 -4358_80711,96,4358_9887,Swords Manor,10231,0,4358_7778195_5041013,4358_320 -4358_80711,205,4358_9888,Swords Manor,2664,0,4358_7778195_5041003,4358_320 -4358_80711,96,4358_9889,Swords Manor,10245,0,4358_7778195_5041005,4358_320 -4358_80756,96,4358_989,Ashington,13185,1,4358_7778195_7122007,4358_33 -4358_80711,205,4358_9891,Swords Manor,2440,0,4358_7778195_5041021,4358_320 -4358_80711,96,4358_9892,Swords Manor,10178,0,4358_7778195_5041001,4358_320 -4358_80711,205,4358_9893,Swords Manor,2489,0,4358_7778195_5041011,4358_320 -4358_80711,96,4358_9895,Swords Manor,10067,0,4358_7778195_5041014,4358_320 -4358_80711,205,4358_9896,Swords Manor,2674,0,4358_7778195_5041022,4358_320 -4358_80711,96,4358_9897,Swords Manor,10320,0,4358_7778195_5041019,4358_320 -4358_80711,205,4358_9899,Swords Manor,2738,0,4358_7778195_5041024,4358_320 -4358_80756,205,4358_990,Ashington,3588,1,4358_7778195_7122012,4358_33 -4358_80711,96,4358_9900,Swords Manor,10151,0,4358_7778195_5041007,4358_320 -4358_80711,205,4358_9901,Swords Manor,2564,0,4358_7778195_5041025,4358_320 -4358_80711,96,4358_9903,Swords Manor,10187,0,4358_7778195_5041011,4358_320 -4358_80711,205,4358_9904,Swords Manor,2435,0,4358_7778195_5041018,4358_320 -4358_80711,96,4358_9905,Swords Manor,10291,0,4358_7778195_5041017,4358_320 -4358_80711,205,4358_9907,Swords Manor,2709,0,4358_7778195_5041004,4358_320 -4358_80711,96,4358_9908,Swords Manor,10233,0,4358_7778195_5041013,4358_320 -4358_80711,205,4358_9909,Swords Manor,2669,0,4358_7778195_5041026,4358_320 -4358_80711,96,4358_9911,Swords Manor,10059,0,4358_7778195_5041004,4358_320 -4358_80711,205,4358_9912,Swords Manor,2370,0,4358_7778195_5041028,4358_320 -4358_80711,96,4358_9913,Swords Manor,10180,0,4358_7778195_5041001,4358_320 -4358_80711,205,4358_9915,Swords Manor,2356,0,4358_7778195_5041020,4358_320 -4358_80711,96,4358_9916,Swords Manor,10069,0,4358_7778195_5041014,4358_320 -4358_80711,205,4358_9917,Swords Manor,2349,0,4358_7778195_5041029,4358_320 -4358_80711,96,4358_9919,Swords Manor,10015,0,4358_7778195_5041015,4358_320 -4358_80756,96,4358_992,Ashington,13197,1,4358_7778195_7122002,4358_33 -4358_80711,205,4358_9920,Swords Manor,2729,0,4358_7778195_5041023,4358_320 -4358_80711,96,4358_9921,Swords Manor,10153,0,4358_7778195_5041007,4358_320 -4358_80711,205,4358_9923,Swords Manor,2616,0,4358_7778195_5041037,4358_320 -4358_80711,205,4358_9924,Swords Manor,7836,0,4358_7778195_8818227,4358_320 -4358_80711,96,4358_9925,Swords Manor,10324,0,4358_7778195_5041022,4358_321 -4358_80711,205,4358_9926,Swords Manor,2697,0,4358_7778195_5041017,4358_320 -4358_80711,96,4358_9928,Swords Manor,10127,0,4358_7778195_5041009,4358_320 -4358_80711,205,4358_9929,Swords Manor,2437,0,4358_7778195_5041018,4358_320 -4358_80756,205,4358_993,Ashington,3522,1,4358_7778195_7122018,4358_33 -4358_80711,96,4358_9930,Swords Manor,10110,0,4358_7778195_5041024,4358_320 -4358_80711,205,4358_9932,Swords Manor,2755,0,4358_7778195_5041034,4358_320 -4358_80711,96,4358_9933,Swords Manor,10249,0,4358_7778195_5041005,4358_320 -4358_80711,205,4358_9934,Swords Manor,2654,0,4358_7778195_5041001,4358_320 -4358_80711,96,4358_9936,Swords Manor,10287,0,4358_7778195_5041016,4358_320 -4358_80711,205,4358_9937,Swords Manor,2478,0,4358_7778195_5041031,4358_320 -4358_80711,96,4358_9938,Swords Manor,10156,0,4358_7778195_5041023,4358_321 -4358_80756,96,4358_994,Ashington,13119,1,4358_7778195_7122010,4358_33 -4358_80711,205,4358_9941,Swords Manor,2747,0,4358_7778195_5041032,4358_321 -4358_80711,96,4358_9942,Swords Manor,9961,0,4358_7778195_5041012,4358_322 -4358_80711,96,4358_9943,Swords Manor,10295,0,4358_7778195_5041017,4358_320 -4358_80711,205,4358_9944,Swords Manor,2751,0,4358_7778195_5041033,4358_321 -4358_80711,96,4358_9946,Swords Manor,10112,0,4358_7778195_5041024,4358_320 -4358_80711,205,4358_9948,Swords Manor,2760,0,4358_7778195_5041036,4358_322 -4358_80756,205,4358_995,Ashington,3580,1,4358_7778195_7122014,4358_33 -4358_80711,205,4358_9950,Swords Manor,2687,0,4358_7778195_5041042,4358_321 -4358_80711,96,4358_9951,Swords Manor,10073,0,4358_7778195_5041014,4358_322 -4358_80711,96,4358_9952,Swords Manor,10019,0,4358_7778195_5041015,4358_320 -4358_80711,205,4358_9953,Swords Manor,2480,0,4358_7778195_5041031,4358_321 -4358_80711,205,4358_9955,Swords Manor,2722,0,4358_7778195_5041038,4358_320 -4358_80711,96,4358_9957,Swords Manor,10328,0,4358_7778195_5041022,4358_322 -4358_80711,96,4358_9958,Swords Manor,10106,0,4358_7778195_5041026,4358_320 -4358_80711,205,4358_9960,Swords Manor,2423,0,4358_7778195_5041039,4358_322 -4358_80711,205,4358_9961,Swords Manor,2759,0,4358_7778195_5041034,4358_320 -4358_80711,96,4358_9963,Swords Manor,10062,0,4358_7778195_5041025,4358_322 -4358_80711,205,4358_9964,Swords Manor,2429,0,4358_7778195_5041041,4358_320 -4358_80711,96,4358_9965,Swords Manor,10160,0,4358_7778195_5041023,4358_321 -4358_80711,205,4358_9967,Swords Manor,2724,0,4358_7778195_5041038,4358_320 -4358_80711,96,4358_9969,Swords Manor,10253,0,4358_7778195_5041027,4358_322 -4358_80756,205,4358_997,Ashington,3427,1,4358_7778195_7122004,4358_33 -4358_80711,96,4358_9970,Swords Manor,10108,0,4358_7778195_5041026,4358_320 -4358_80711,205,4358_9972,Swords Manor,2425,0,4358_7778195_5041039,4358_322 -4358_80711,96,4358_9973,Swords Manor,9973,0,4358_7778195_5041030,4358_320 -4358_80711,205,4358_9975,Swords Manor,2494,0,4358_7778195_5041040,4358_322 -4358_80711,96,4358_9977,Swords Manor,9999,0,4358_7778195_5041028,4358_321 -4358_80711,205,4358_9978,Swords Manor,2611,0,4358_7778195_5041043,4358_322 -4358_80711,205,4358_9979,Swords Manor,2640,0,4358_7778195_5041044,4358_320 -4358_80756,96,4358_998,Ashington,13141,1,4358_7778195_7122004,4358_33 -4358_80711,96,4358_9980,Swords Manor,10021,0,4358_7778195_5041031,4358_321 -4358_80711,205,4358_9983,Swords Manor,2625,0,4358_7778195_5041045,4358_321 -4358_80711,96,4358_9984,Swords Manor,10168,0,4358_7778195_5041032,4358_322 -4358_80711,96,4358_9985,Swords Manor,9975,0,4358_7778195_5041030,4358_320 -4358_80711,205,4358_9987,Swords Manor,2496,0,4358_7778195_5041040,4358_322 -4358_80711,205,4358_9988,Swords Manor,2524,0,4358_7778195_5041046,4358_320 -4358_80711,96,4358_9990,Swords Manor,10063,0,4358_7778195_5041033,4358_322 -4358_80711,205,4358_9991,Swords Manor,2642,0,4358_7778195_5041044,4358_320 -4358_80711,96,4358_9992,Swords Manor,10023,0,4358_7778195_5041031,4358_321 -4358_80711,205,4358_9995,Swords Manor,2627,0,4358_7778195_5041045,4358_321 -4358_80711,96,4358_9996,Swords Manor,10170,0,4358_7778195_5041032,4358_322 -4358_80711,96,4358_9997,Abbey St,10171,1,4358_7778195_5041001,4358_323 -4358_80711,205,4358_9998,Abbey St,2502,1,4358_7778195_5041002,4358_324 -4367_81485,2,4367_1007,Dublin Connolly,E703,1,4367_7778018_Txc5F77DE12-EA0B-46AD-A1C8-F5EB897A9F33,4367_11 -4367_81485,2,4367_1011,Dublin Connolly,E704,1,4367_7778018_Txc5C200EFE-C049-45DD-86B3-49A9CFA91192,4367_10 -4367_81485,2,4367_1980,Howth,E951,0,4367_7778018_Txc69D371C7-8F6D-4131-A89C-D2584AD24F7A,4367_47 -4367_81485,2,4367_1996,Dublin Connolly,E701,0,4367_7778018_Txc936957C5-AC53-4893-A858-F2C9D64C879D,4367_44 -4367_81473,2,4367_3579,Dublin Connolly,A623,1,4367_7778018_TxcB3EA8CD9-341B-48CA-A1EB-4FAC79A35EA8,4367_273 -4367_81473,2,4367_3581,Dundalk (Clarke),D839,1,4367_7778018_TxcF0ACEB71-D053-463F-86EA-CD7927CF145C,4367_280 -4367_81473,2,4367_3585,Dundalk (Clarke),D841,1,4367_7778018_TxcB4C190F3-3E74-4E30-A5A9-4B3225E57418,4367_280 -4367_81482,2,4367_4839,Maynooth,D940,0,4367_7778018_Txc77EAD2A7-D39D-4369-B047-362526BBCFDE,4367_448 -4367_81482,2,4367_4846,M3 Parkway,D334,0,4367_7778018_Txc7C72FBCF-8145-4F11-896B-FABF0F888E04,4367_441 -4367_81481,2,4367_5135,Hazelhatch and Celbridge,D426,0,4367_7778018_Txc7A20587C-4319-4FDB-B1D5-D86901C68858,4367_501 -4367_81485,2,4367_983,Greystones,E134,1,4367_7778018_TxcF36F2ACA-254B-4735-B81F-B4105BDA3312,4367_1 -4358_80760,227,4368_1,Shaw street,1813,0,4368_7778195_9001001,4368_1 -4358_80760,227,4368_10,Shaw street,1861,0,4368_7778195_9001009,4368_1 -4358_80760,228,4368_100,Shaw street,9452,0,4368_7778195_9001003,4368_1 -4358_80756,227,4368_1000,Ashington,3627,1,4368_7778195_7122021,4368_33 -4358_80711,227,4368_10000,Abbey St,2645,1,4368_7778195_5041001,4368_323 -4358_80711,228,4368_10001,Abbey St,10248,1,4368_7778195_5041002,4368_324 -4358_80711,229,4368_10002,Abbey St,16153,1,4368_7778195_5041002,4368_325 -4358_80711,227,4368_10003,Abbey St,2481,1,4368_7778195_5041005,4368_323 -4358_80711,227,4368_10004,Abbey St,2659,1,4368_7778195_5041003,4368_323 -4358_80711,228,4368_10005,Abbey St,9956,1,4368_7778195_5041003,4368_323 -4358_80711,229,4368_10006,Abbey St,16309,1,4368_7778195_5041003,4368_324 -4358_80711,227,4368_10007,Abbey St,2764,1,4368_7778195_5041009,4368_323 -4358_80711,227,4368_10008,Abbey St,2614,1,4368_7778195_5041007,4368_323 -4358_80711,228,4368_10009,Abbey St,10044,1,4368_7778195_5041004,4368_323 -4358_80756,228,4368_1001,Ashington,13145,1,4368_7778195_7122006,4368_33 -4358_80711,227,4368_10010,Abbey St,2472,1,4368_7778195_5041013,4368_324 -4358_80711,229,4368_10011,Abbey St,16599,1,4368_7778195_5041004,4368_325 -4358_80711,227,4368_10012,Abbey St,2631,1,4368_7778195_5041010,4368_323 -4358_80711,229,4368_10013,Abbey St,16173,1,4368_7778195_5041005,4368_323 -4358_80711,227,4368_10014,Abbey St,2690,1,4368_7778195_5041017,4368_323 -4358_80711,228,4368_10015,Abbey St,10165,1,4368_7778195_5041001,4368_323 -4358_80711,227,4368_10016,Abbey St,2430,1,4368_7778195_5041018,4368_323 -4358_80711,229,4368_10017,Abbey St,16346,1,4368_7778195_5041006,4368_324 -4358_80711,228,4368_10018,Abbey St,10138,1,4368_7778195_5041007,4368_323 -4358_80711,227,4368_10019,Abbey St,2372,1,4368_7778195_5041019,4368_323 -4358_80756,227,4368_1002,Ashington,3444,1,4368_7778195_7122006,4368_33 -4358_80711,229,4368_10020,Abbey St,16155,1,4368_7778195_5041002,4368_323 -4358_80711,227,4368_10021,Abbey St,2647,1,4368_7778195_5041001,4368_323 -4358_80711,228,4368_10022,Abbey St,9958,1,4368_7778195_5041003,4368_323 -4358_80711,229,4368_10023,Abbey St,16311,1,4368_7778195_5041003,4368_323 -4358_80711,227,4368_10024,Abbey St,2661,1,4368_7778195_5041003,4368_323 -4358_80711,228,4368_10025,Abbey St,10046,1,4368_7778195_5041004,4368_323 -4358_80711,227,4368_10026,Abbey St,2766,1,4368_7778195_5041009,4368_323 -4358_80711,229,4368_10027,Abbey St,16218,1,4368_7778195_5041007,4368_323 -4358_80711,227,4368_10028,Abbey St,2486,1,4368_7778195_5041011,4368_323 -4358_80711,228,4368_10029,Abbey St,10167,1,4368_7778195_5041001,4368_324 -4358_80756,229,4368_1003,Ashington,18553,1,4368_7778195_7122005,4368_33 -4358_80711,229,4368_10030,Abbey St,16175,1,4368_7778195_5041005,4368_323 -4358_80711,227,4368_10031,Abbey St,2560,1,4368_7778195_5041015,4368_323 -4358_80711,228,4368_10032,Abbey St,10260,1,4368_7778195_5041008,4368_323 -4358_80711,227,4368_10033,Abbey St,2692,1,4368_7778195_5041017,4368_323 -4358_80711,229,4368_10034,Abbey St,16348,1,4368_7778195_5041006,4368_323 -4358_80711,228,4368_10035,Abbey St,10140,1,4368_7778195_5041007,4368_323 -4358_80711,227,4368_10036,Abbey St,2432,1,4368_7778195_5041018,4368_323 -4358_80711,228,4368_10037,Abbey St,10176,1,4368_7778195_5041011,4368_323 -4358_80711,229,4368_10038,Abbey St,16257,1,4368_7778195_5041008,4368_323 -4358_80711,227,4368_10039,Abbey St,2374,1,4368_7778195_5041019,4368_323 -4358_80756,227,4368_1004,Ashington,3603,1,4368_7778195_7122008,4368_33 -4358_80711,228,4368_10040,Abbey St,10114,1,4368_7778195_5041009,4368_323 -4358_80711,227,4368_10041,Abbey St,2649,1,4368_7778195_5041001,4368_323 -4358_80711,229,4368_10042,Abbey St,16136,1,4368_7778195_5041011,4368_323 -4358_80711,228,4368_10043,Abbey St,10048,1,4368_7778195_5041004,4368_323 -4358_80711,227,4368_10044,Abbey St,2663,1,4368_7778195_5041003,4368_323 -4358_80711,228,4368_10045,Abbey St,10021,1,4368_7778195_5041006,4368_323 -4358_80711,229,4368_10046,Abbey St,16121,1,4368_7778195_5041010,4368_323 -4358_80711,227,4368_10047,Abbey St,2439,1,4368_7778195_5041021,4368_323 -4358_80711,228,4368_10048,Abbey St,10274,1,4368_7778195_5041016,4368_323 -4358_80711,227,4368_10049,Abbey St,2488,1,4368_7778195_5041011,4368_323 -4358_80756,228,4368_1005,Ashington,13169,1,4368_7778195_7122009,4368_33 -4358_80711,229,4368_10050,Abbey St,16177,1,4368_7778195_5041005,4368_323 -4358_80711,228,4368_10051,Abbey St,10159,1,4368_7778195_5041010,4368_323 -4358_80711,227,4368_10052,Abbey St,2673,1,4368_7778195_5041022,4368_323 -4358_80711,228,4368_10053,Abbey St,9948,1,4368_7778195_5041012,4368_323 -4358_80711,229,4368_10054,Abbey St,16350,1,4368_7778195_5041006,4368_323 -4358_80711,227,4368_10055,Abbey St,2737,1,4368_7778195_5041024,4368_323 -4358_80711,228,4368_10056,Abbey St,10254,1,4368_7778195_5041002,4368_323 -4358_80711,227,4368_10057,Abbey St,2332,1,4368_7778195_5041014,4368_323 -4358_80711,229,4368_10058,Abbey St,16259,1,4368_7778195_5041008,4368_323 -4358_80711,228,4368_10059,Abbey St,9962,1,4368_7778195_5041003,4368_323 -4358_80756,227,4368_1006,Ashington,3561,1,4368_7778195_7122017,4368_33 -4358_80711,227,4368_10060,Abbey St,2376,1,4368_7778195_5041019,4368_323 -4358_80711,228,4368_10061,Abbey St,10116,1,4368_7778195_5041009,4368_323 -4358_80711,229,4368_10062,Abbey St,16315,1,4368_7778195_5041003,4368_323 -4358_80711,227,4368_10063,Abbey St,2651,1,4368_7778195_5041001,4368_323 -4358_80711,228,4368_10064,Abbey St,10291,1,4368_7778195_5041018,4368_323 -4358_80711,227,4368_10065,Abbey St,2665,1,4368_7778195_5041003,4368_323 -4358_80711,229,4368_10066,Abbey St,16205,1,4368_7778195_5041009,4368_323 -4358_80711,228,4368_10067,Abbey St,10238,1,4368_7778195_5041005,4368_323 -4358_80711,227,4368_10068,Abbey St,2441,1,4368_7778195_5041021,4368_323 -4358_80711,228,4368_10069,Abbey St,10276,1,4368_7778195_5041016,4368_323 -4358_80756,229,4368_1007,Ashington,18599,1,4368_7778195_7122009,4368_34 -4358_80711,229,4368_10070,Abbey St,16146,1,4368_7778195_5041016,4368_323 -4358_80711,227,4368_10071,Abbey St,2490,1,4368_7778195_5041011,4368_323 -4358_80711,228,4368_10072,Abbey St,10134,1,4368_7778195_5041020,4368_323 -4358_80711,227,4368_10073,Abbey St,2675,1,4368_7778195_5041022,4368_323 -4358_80711,229,4368_10074,Abbey St,16126,1,4368_7778195_5041018,4368_323 -4358_80711,228,4368_10075,Abbey St,10313,1,4368_7778195_5041019,4368_323 -4358_80711,227,4368_10076,Abbey St,7831,1,4368_7778195_8818225,4368_323 -4358_80711,227,4368_10077,Abbey St,7827,1,4368_7778195_8818224,4368_323 -4358_80711,228,4368_10078,Abbey St,9950,1,4368_7778195_5041012,4368_323 -4358_80711,229,4368_10079,Abbey St,16275,1,4368_7778195_5041023,4368_323 -4358_80756,227,4368_1008,Ashington,3622,1,4368_7778195_7122019,4368_33 -4358_80711,227,4368_10080,Abbey St,2739,1,4368_7778195_5041024,4368_323 -4358_80711,228,4368_10081,Abbey St,10180,1,4368_7778195_5041011,4368_323 -4358_80711,227,4368_10082,Abbey St,2334,1,4368_7778195_5041014,4368_323 -4358_80711,229,4368_10083,Abbey St,16373,1,4368_7778195_5041022,4368_323 -4358_80711,228,4368_10084,Abbey St,10118,1,4368_7778195_5041009,4368_323 -4358_80711,227,4368_10085,Abbey St,2699,1,4368_7778195_5041030,4368_323 -4358_80711,228,4368_10086,Abbey St,10315,1,4368_7778195_5041021,4368_323 -4358_80711,229,4368_10087,Abbey St,16207,1,4368_7778195_5041009,4368_323 -4358_80711,227,4368_10088,Abbey St,7833,1,4368_7778195_8818226,4368_323 -4358_80711,228,4368_10089,Abbey St,10240,1,4368_7778195_5041005,4368_323 -4358_80756,228,4368_1009,Ashington,13106,1,4368_7778195_7122001,4368_33 -4358_80711,227,4368_10090,Abbey St,2670,1,4368_7778195_5041026,4368_323 -4358_80711,229,4368_10091,Abbey St,16133,1,4368_7778195_5041020,4368_323 -4358_80711,228,4368_10092,Abbey St,10278,1,4368_7778195_5041016,4368_323 -4358_80711,227,4368_10093,Abbey St,2371,1,4368_7778195_5041028,4368_323 -4358_80711,228,4368_10094,Abbey St,10147,1,4368_7778195_5041023,4368_323 -4358_80711,227,4368_10095,Abbey St,2443,1,4368_7778195_5041021,4368_324 -4358_80711,229,4368_10096,Abbey St,16196,1,4368_7778195_5041017,4368_323 -4358_80711,228,4368_10097,Abbey St,10008,1,4368_7778195_5041015,4368_323 -4358_80711,227,4368_10098,Abbey St,2492,1,4368_7778195_5041011,4368_324 -4358_80711,229,4368_10099,Abbey St,16239,1,4368_7778195_5041019,4368_323 -4358_80760,227,4368_101,Shaw street,1851,0,4368_7778195_9001006,4368_1 -4358_80756,229,4368_1010,Ashington,18572,1,4368_7778195_7122001,4368_33 -4358_80711,227,4368_10100,Abbey St,2677,1,4368_7778195_5041022,4368_323 -4358_80711,228,4368_10101,Abbey St,10317,1,4368_7778195_5041022,4368_323 -4358_80711,227,4368_10102,Abbey St,2617,1,4368_7778195_5041037,4368_323 -4358_80711,229,4368_10103,Abbey St,16319,1,4368_7778195_5041021,4368_323 -4358_80711,227,4368_10104,Abbey St,2698,1,4368_7778195_5041017,4368_323 -4358_80711,228,4368_10105,Abbey St,10228,1,4368_7778195_5041013,4368_324 -4358_80711,229,4368_10106,Abbey St,16375,1,4368_7778195_5041022,4368_323 -4358_80711,227,4368_10107,Abbey St,2438,1,4368_7778195_5041018,4368_323 -4358_80711,228,4368_10108,Abbey St,10242,1,4368_7778195_5041005,4368_323 -4358_80711,227,4368_10109,Abbey St,2756,1,4368_7778195_5041034,4368_323 -4358_80756,227,4368_1011,Ashington,3612,1,4368_7778195_7122011,4368_33 -4358_80711,229,4368_10110,Abbey St,16192,1,4368_7778195_5041024,4368_323 -4358_80711,228,4368_10111,Abbey St,10064,1,4368_7778195_5041014,4368_323 -4358_80711,227,4368_10112,Abbey St,2454,1,4368_7778195_5041008,4368_324 -4358_80711,229,4368_10113,Abbey St,16150,1,4368_7778195_5041016,4368_323 -4358_80711,227,4368_10114,Abbey St,2746,1,4368_7778195_5041027,4368_323 -4358_80711,228,4368_10115,Abbey St,10010,1,4368_7778195_5041015,4368_324 -4358_80711,229,4368_10116,Abbey St,16241,1,4368_7778195_5041019,4368_323 -4358_80711,228,4368_10117,Abbey St,10319,1,4368_7778195_5041022,4368_323 -4358_80711,227,4368_10118,Abbey St,2732,1,4368_7778195_5041023,4368_324 -4358_80711,229,4368_10119,Abbey St,16321,1,4368_7778195_5041021,4368_323 -4358_80756,228,4368_1012,Ashington,13122,1,4368_7778195_7122003,4368_33 -4358_80711,227,4368_10120,Abbey St,2359,1,4368_7778195_5041035,4368_323 -4358_80711,228,4368_10121,Abbey St,10230,1,4368_7778195_5041013,4368_324 -4358_80711,229,4368_10122,Abbey St,16267,1,4368_7778195_5041026,4368_323 -4358_80711,228,4368_10123,Abbey St,10053,1,4368_7778195_5041025,4368_323 -4358_80711,227,4368_10124,Abbey St,2758,1,4368_7778195_5041034,4368_324 -4358_80711,229,4368_10125,Abbey St,16170,1,4368_7778195_5041027,4368_325 -4358_80711,227,4368_10126,Abbey St,2428,1,4368_7778195_5041041,4368_323 -4358_80711,228,4368_10127,Abbey St,10151,1,4368_7778195_5041023,4368_324 -4358_80711,229,4368_10128,Abbey St,16216,1,4368_7778195_5041030,4368_325 -4358_80711,228,4368_10129,Abbey St,10244,1,4368_7778195_5041027,4368_323 -4358_80756,227,4368_1013,Ashington,3620,1,4368_7778195_7122001,4368_33 -4358_80711,229,4368_10130,Abbey St,16281,1,4368_7778195_5041023,4368_324 -4358_80711,227,4368_10131,Abbey St,2723,1,4368_7778195_5041038,4368_325 -4358_80711,227,4368_10132,Abbey St,2424,1,4368_7778195_5041039,4368_323 -4358_80711,229,4368_10133,Abbey St,16253,1,4368_7778195_5041031,4368_324 -4358_80711,228,4368_10134,Abbey St,10099,1,4368_7778195_5041026,4368_325 -4358_80711,228,4368_10135,Abbey St,9964,1,4368_7778195_5041030,4368_323 -4358_80711,227,4368_10136,Abbey St,2493,1,4368_7778195_5041040,4368_324 -4358_80711,229,4368_10137,Abbey St,16172,1,4368_7778195_5041027,4368_325 -4358_80711,228,4368_10138,Abbey St,9990,1,4368_7778195_5041028,4368_323 -4358_80711,229,4368_10139,Abbey St,16142,1,4368_7778195_5041032,4368_324 -4358_80756,229,4368_1014,Ashington,18542,1,4368_7778195_7122003,4368_33 -4358_80711,227,4368_10140,Abbey St,2610,1,4368_7778195_5041043,4368_325 -4358_80711,228,4368_10141,Abbey St,10246,1,4368_7778195_5041027,4368_323 -4358_80711,227,4368_10142,Abbey St,2725,1,4368_7778195_5041038,4368_324 -4358_80711,229,4368_10143,Abbey St,16307,1,4368_7778195_5041029,4368_325 -4358_80711,227,4368_10144,Abbey St,2426,1,4368_7778195_5041039,4368_323 -4358_80711,229,4368_10145,Abbey St,16255,1,4368_7778195_5041031,4368_324 -4358_80711,228,4368_10146,Abbey St,10101,1,4368_7778195_5041026,4368_325 -4358_80711,228,4368_10147,Abbey St,9966,1,4368_7778195_5041030,4368_323 -4358_80711,229,4368_10148,Abbey St,16328,1,4368_7778195_5041033,4368_324 -4358_80711,227,4368_10149,Abbey St,2495,1,4368_7778195_5041040,4368_325 -4358_80756,227,4368_1015,Ashington,3539,1,4368_7778195_7122020,4368_33 -4358_80711,228,4368_10150,Abbey St,9992,1,4368_7778195_5041028,4368_323 -4358_80711,229,4368_10151,Abbey St,16144,1,4368_7778195_5041032,4368_324 -4358_80711,227,4368_10152,Abbey St,2612,1,4368_7778195_5041043,4368_325 -4358_80711,227,4368_10153,Abbey St,2641,1,4368_7778195_5041044,4368_323 -4358_80711,229,4368_10154,Abbey St,16210,1,4368_7778195_5041034,4368_324 -4358_80711,228,4368_10155,Abbey St,10014,1,4368_7778195_5041031,4368_325 -4358_80711,227,4368_10156,Abbey St,2626,1,4368_7778195_5041045,4368_323 -4358_80711,229,4368_10157,Abbey St,16123,1,4368_7778195_5041035,4368_324 -4358_80711,228,4368_10158,Abbey St,10161,1,4368_7778195_5041032,4368_325 -4358_80711,228,4368_10159,Abbey St,9968,1,4368_7778195_5041030,4368_323 -4358_80756,228,4368_1016,Ashington,13155,1,4368_7778195_7122005,4368_33 -4358_80711,229,4368_10160,Abbey St,16330,1,4368_7778195_5041033,4368_324 -4358_80711,227,4368_10161,Abbey St,2497,1,4368_7778195_5041040,4368_325 -4358_80711,227,4368_10162,Abbey St,2525,1,4368_7778195_5041046,4368_323 -4358_80711,229,4368_10163,Abbey St,16180,1,4368_7778195_5041037,4368_324 -4358_80711,228,4368_10164,Abbey St,10056,1,4368_7778195_5041033,4368_325 -4358_80711,227,4368_10165,Abbey St,2643,1,4368_7778195_5041044,4368_323 -4358_80711,229,4368_10166,Abbey St,16212,1,4368_7778195_5041034,4368_324 -4358_80711,228,4368_10167,Abbey St,10016,1,4368_7778195_5041031,4368_325 -4358_80713,227,4368_10168,Rolestown,2551,0,4368_7778195_5041012,4368_326 -4358_80713,228,4368_10169,Rolestown,10018,0,4368_7778195_5041006,4368_326 -4358_80756,227,4368_1017,Ashington,3401,1,4368_7778195_7122005,4368_33 -4358_80713,228,4368_10170,Rolestown,10003,0,4368_7778195_5041015,4368_326 -4358_80713,227,4368_10171,Rolestown,2693,0,4368_7778195_5041017,4368_326 -4358_80713,229,4368_10172,Rolestown,16282,0,4368_7778195_5041012,4368_326 -4358_80713,227,4368_10173,Rolestown,2743,0,4368_7778195_5041027,4368_326 -4358_80713,228,4368_10174,Rolestown,9951,0,4368_7778195_5041012,4368_326 -4358_80713,227,4368_10175,Rolestown,2671,0,4368_7778195_5041026,4368_326 -4358_80713,229,4368_10176,Rolestown,16197,0,4368_7778195_5041017,4368_326 -4358_80713,229,4368_10177,Rolestown,16353,0,4368_7778195_5041028,4368_327 -4358_80713,227,4368_10178,Rolestown,2689,0,4368_7778195_5041042,4368_328 -4358_80713,228,4368_10179,Rolestown,9989,0,4368_7778195_5041028,4368_329 -4358_80756,229,4368_1018,Ashington,18563,1,4368_7778195_7122002,4368_34 -4358_80713,228,4368_10180,Abbey St,10017,1,4368_7778195_5041006,4368_330 -4358_80713,227,4368_10181,Abbey St,2552,1,4368_7778195_5041012,4368_330 -4358_80713,228,4368_10182,Abbey St,10019,1,4368_7778195_5041006,4368_330 -4358_80713,228,4368_10183,Abbey St,10004,1,4368_7778195_5041015,4368_330 -4358_80713,229,4368_10184,Abbey St,16283,1,4368_7778195_5041012,4368_330 -4358_80713,227,4368_10185,Abbey St,2694,1,4368_7778195_5041017,4368_331 -4358_80713,227,4368_10186,Abbey St,2744,1,4368_7778195_5041027,4368_330 -4358_80713,228,4368_10187,Abbey St,9952,1,4368_7778195_5041012,4368_330 -4358_80713,227,4368_10188,Abbey St,2672,1,4368_7778195_5041026,4368_330 -4358_80713,229,4368_10189,Abbey St,16198,1,4368_7778195_5041017,4368_330 -4358_80756,228,4368_1019,Ashington,13164,1,4368_7778195_7122008,4368_33 -4358_80714,228,4368_10190,Swords Manor,10231,0,4368_7778195_5041005,4368_332 -4358_80714,227,4368_10191,Swords Manor,2703,0,4368_7778195_5041004,4368_332 -4358_80714,228,4368_10192,Swords Manor,10249,0,4368_7778195_5041002,4368_332 -4358_80714,227,4368_10193,Swords Manor,2347,0,4368_7778195_5041006,4368_332 -4358_80714,228,4368_10194,Swords Manor,10111,0,4368_7778195_5041009,4368_332 -4358_80714,227,4368_10195,Swords Manor,2485,0,4368_7778195_5041011,4368_332 -4358_80714,228,4368_10196,Swords Manor,10233,0,4368_7778195_5041005,4368_332 -4358_80714,227,4368_10197,Swords Manor,2473,0,4368_7778195_5041013,4368_332 -4358_80714,227,4368_10198,Swords Manor,2734,0,4368_7778195_5041016,4368_332 -4358_80714,228,4368_10199,Swords Manor,10156,0,4368_7778195_5041010,4368_332 -4358_80760,229,4368_102,Shaw street,15693,0,4368_7778195_9001001,4368_1 -4358_80756,227,4368_1020,Ashington,3592,1,4368_7778195_7122022,4368_33 -4358_80714,227,4368_10200,Swords Manor,2553,0,4368_7778195_5041012,4368_332 -4358_80714,228,4368_10201,Swords Manor,10139,0,4368_7778195_5041007,4368_332 -4358_80714,229,4368_10202,Swords Manor,16347,0,4368_7778195_5041006,4368_333 -4358_80714,227,4368_10203,Swords Manor,2431,0,4368_7778195_5041018,4368_332 -4358_80714,228,4368_10204,Swords Manor,10175,0,4368_7778195_5041011,4368_332 -4358_80714,227,4368_10205,Swords Manor,2373,0,4368_7778195_5041019,4368_332 -4358_80714,229,4368_10206,Swords Manor,16256,0,4368_7778195_5041008,4368_332 -4358_80714,228,4368_10207,Swords Manor,10113,0,4368_7778195_5041009,4368_332 -4358_80714,227,4368_10208,Swords Manor,2648,0,4368_7778195_5041001,4368_332 -4358_80714,228,4368_10209,Swords Manor,10047,0,4368_7778195_5041004,4368_332 -4358_80756,229,4368_1021,Ashington,18582,1,4368_7778195_7122006,4368_34 -4358_80714,229,4368_10210,Swords Manor,16202,0,4368_7778195_5041009,4368_333 -4358_80714,227,4368_10211,Swords Manor,2662,0,4368_7778195_5041003,4368_332 -4358_80714,228,4368_10212,Swords Manor,10020,0,4368_7778195_5041006,4368_332 -4358_80714,227,4368_10213,Swords Manor,2352,0,4368_7778195_5041020,4368_332 -4358_80714,229,4368_10214,Swords Manor,16219,0,4368_7778195_5041007,4368_332 -4358_80714,228,4368_10215,Swords Manor,10057,0,4368_7778195_5041014,4368_332 -4358_80714,227,4368_10216,Swords Manor,2475,0,4368_7778195_5041013,4368_332 -4358_80714,228,4368_10217,Swords Manor,10261,0,4368_7778195_5041008,4368_332 -4358_80714,229,4368_10218,Swords Manor,16118,0,4368_7778195_5041001,4368_333 -4358_80714,227,4368_10219,Swords Manor,2736,0,4368_7778195_5041016,4368_332 -4358_80756,228,4368_1022,Ashington,13179,1,4368_7778195_7122007,4368_33 -4358_80714,227,4368_10220,Swords Manor,2331,0,4368_7778195_5041014,4368_332 -4358_80714,229,4368_10221,Swords Manor,16199,0,4368_7778195_5041013,4368_332 -4358_80714,228,4368_10222,Swords Manor,10253,0,4368_7778195_5041002,4368_333 -4358_80714,227,4368_10223,Swords Manor,6464,0,4368_7778195_7041576,4368_332 -4358_80714,228,4368_10224,Swords Manor,9961,0,4368_7778195_5041003,4368_332 -4358_80714,229,4368_10225,Swords Manor,16273,0,4368_7778195_5041014,4368_332 -4358_80714,227,4368_10226,Swords Manor,2707,0,4368_7778195_5041004,4368_332 -4358_80714,228,4368_10227,Swords Manor,10115,0,4368_7778195_5041009,4368_332 -4358_80714,227,4368_10228,Swords Manor,2667,0,4368_7778195_5041026,4368_332 -4358_80714,228,4368_10229,Swords Manor,10049,0,4368_7778195_5041004,4368_332 -4358_80756,229,4368_1023,Ashington,18605,1,4368_7778195_7122008,4368_33 -4358_80714,229,4368_10230,Swords Manor,16137,0,4368_7778195_5041011,4368_333 -4358_80714,227,4368_10231,Swords Manor,2449,0,4368_7778195_5041008,4368_332 -4358_80714,228,4368_10232,Swords Manor,10022,0,4368_7778195_5041006,4368_332 -4358_80714,229,4368_10233,Swords Manor,16145,0,4368_7778195_5041016,4368_332 -4358_80714,227,4368_10234,Swords Manor,2354,0,4368_7778195_5041020,4368_332 -4358_80714,228,4368_10235,Swords Manor,10275,0,4368_7778195_5041016,4368_332 -4358_80714,227,4368_10236,Swords Manor,2477,0,4368_7778195_5041013,4368_332 -4358_80714,229,4368_10237,Swords Manor,16178,0,4368_7778195_5041005,4368_332 -4358_80714,228,4368_10238,Swords Manor,10005,0,4368_7778195_5041015,4368_333 -4358_80714,227,4368_10239,Swords Manor,2727,0,4368_7778195_5041023,4368_332 -4358_80756,227,4368_1024,Ashington,3590,1,4368_7778195_7122012,4368_34 -4358_80714,228,4368_10240,Swords Manor,9949,0,4368_7778195_5041012,4368_332 -4358_80714,229,4368_10241,Swords Manor,16236,0,4368_7778195_5041019,4368_332 -4358_80714,227,4368_10242,Swords Manor,2695,0,4368_7778195_5041017,4368_332 -4358_80714,228,4368_10243,Swords Manor,10255,0,4368_7778195_5041002,4368_332 -4358_80714,227,4368_10244,Swords Manor,2333,0,4368_7778195_5041014,4368_332 -4358_80714,229,4368_10245,Swords Manor,16316,0,4368_7778195_5041021,4368_332 -4358_80714,228,4368_10246,Swords Manor,9963,0,4368_7778195_5041003,4368_333 -4358_80714,227,4368_10247,Swords Manor,2377,0,4368_7778195_5041019,4368_332 -4358_80714,228,4368_10248,Swords Manor,10117,0,4368_7778195_5041009,4368_332 -4358_80714,229,4368_10249,Swords Manor,16139,0,4368_7778195_5041011,4368_332 -4358_80756,228,4368_1025,Ashington,13113,1,4368_7778195_7122010,4368_33 -4358_80714,227,4368_10250,Swords Manor,2652,0,4368_7778195_5041001,4368_332 -4358_80714,228,4368_10251,Swords Manor,10292,0,4368_7778195_5041018,4368_332 -4358_80714,227,4368_10252,Swords Manor,2451,0,4368_7778195_5041008,4368_332 -4358_80714,229,4368_10253,Swords Manor,16189,0,4368_7778195_5041024,4368_332 -4358_80714,228,4368_10254,Swords Manor,10239,0,4368_7778195_5041005,4368_333 -4358_80714,227,4368_10255,Swords Manor,2442,0,4368_7778195_5041021,4368_332 -4358_80714,228,4368_10256,Swords Manor,10277,0,4368_7778195_5041016,4368_332 -4358_80714,229,4368_10257,Swords Manor,16147,0,4368_7778195_5041016,4368_332 -4358_80714,227,4368_10258,Swords Manor,2491,0,4368_7778195_5041011,4368_332 -4358_80714,228,4368_10259,Swords Manor,10135,0,4368_7778195_5041020,4368_332 -4358_80756,227,4368_1026,Ashington,3524,1,4368_7778195_7122018,4368_33 -4358_80714,227,4368_10260,Swords Manor,2676,0,4368_7778195_5041022,4368_332 -4358_80714,229,4368_10261,Swords Manor,16127,0,4368_7778195_5041018,4368_332 -4358_80714,228,4368_10262,Swords Manor,10314,0,4368_7778195_5041019,4368_333 -4358_80714,227,4368_10263,Swords Manor,7843,0,4368_7778195_8818229,4368_332 -4358_80714,228,4368_10264,Swords Manor,10257,0,4368_7778195_5041002,4368_332 -4358_80714,229,4368_10265,Swords Manor,16276,0,4368_7778195_5041023,4368_332 -4358_80714,227,4368_10266,Swords Manor,2740,0,4368_7778195_5041024,4368_332 -4358_80714,228,4368_10267,Swords Manor,10285,0,4368_7778195_5041017,4368_332 -4358_80714,227,4368_10268,Swords Manor,2335,0,4368_7778195_5041014,4368_332 -4358_80714,228,4368_10269,Swords Manor,10227,0,4368_7778195_5041013,4368_332 -4358_80756,229,4368_1027,Ashington,18531,1,4368_7778195_7122004,4368_34 -4358_80714,229,4368_10270,Swords Manor,16374,0,4368_7778195_5041022,4368_333 -4358_80714,227,4368_10271,Swords Manor,2700,0,4368_7778195_5041030,4368_332 -4358_80714,228,4368_10272,Swords Manor,10294,0,4368_7778195_5041018,4368_332 -4358_80714,229,4368_10273,Swords Manor,16208,0,4368_7778195_5041009,4368_332 -4358_80714,227,4368_10274,Swords Manor,6465,0,4368_7778195_7041676,4368_332 -4358_80714,228,4368_10275,Swords Manor,10174,0,4368_7778195_5041001,4368_332 -4358_80714,228,4368_10276,Swords Manor,10063,0,4368_7778195_5041014,4368_332 -4358_80714,229,4368_10277,Swords Manor,16134,0,4368_7778195_5041020,4368_333 -4358_80714,227,4368_10278,Swords Manor,2453,0,4368_7778195_5041008,4368_334 -4358_80714,229,4368_10279,Swords Manor,16129,0,4368_7778195_5041018,4368_332 -4358_80756,228,4368_1028,Ashington,13135,1,4368_7778195_7122004,4368_33 -4358_80714,227,4368_10280,Swords Manor,2745,0,4368_7778195_5041027,4368_333 -4358_80714,228,4368_10281,Swords Manor,10009,0,4368_7778195_5041015,4368_334 -4358_80714,229,4368_10282,Swords Manor,16278,0,4368_7778195_5041023,4368_332 -4358_80714,228,4368_10283,Swords Manor,10318,0,4368_7778195_5041022,4368_333 -4358_80714,227,4368_10284,Swords Manor,2731,0,4368_7778195_5041023,4368_334 -4358_80714,227,4368_10285,Swords Manor,2358,0,4368_7778195_5041035,4368_332 -4358_80714,228,4368_10286,Swords Manor,10229,0,4368_7778195_5041013,4368_333 -4358_80714,229,4368_10287,Swords Manor,16376,0,4368_7778195_5041022,4368_334 -4358_80714,228,4368_10288,Swords Manor,10052,0,4368_7778195_5041025,4368_332 -4358_80714,227,4368_10289,Swords Manor,2757,0,4368_7778195_5041034,4368_333 -4358_80756,229,4368_1029,Ashington,18592,1,4368_7778195_7122007,4368_33 -4358_80714,229,4368_10290,Swords Manor,16266,0,4368_7778195_5041026,4368_334 -4358_80714,229,4368_10291,Swords Manor,16351,0,4368_7778195_5041028,4368_332 -4358_80714,227,4368_10292,Swords Manor,2427,0,4368_7778195_5041041,4368_333 -4358_80714,228,4368_10293,Swords Manor,10150,0,4368_7778195_5041023,4368_334 -4358_80714,227,4368_10294,Swords Manor,2749,0,4368_7778195_5041032,4368_332 -4358_80714,228,4368_10295,Swords Manor,10243,0,4368_7778195_5041027,4368_333 -4358_80714,229,4368_10296,Swords Manor,16304,0,4368_7778195_5041029,4368_334 -4358_80714,228,4368_10297,Swords Manor,10289,0,4368_7778195_5041017,4368_332 -4358_80714,229,4368_10298,Swords Manor,16402,0,4368_7778195_5041036,4368_333 -4358_80714,227,4368_10299,Swords Manor,2753,0,4368_7778195_5041033,4368_334 -4358_80760,227,4368_103,Shaw street,1707,0,4368_7778195_9001008,4368_1 -4358_80756,227,4368_1030,Ashington,3582,1,4368_7778195_7122014,4368_34 -4358_80714,229,4368_10300,Swords Manor,16268,0,4368_7778195_5041026,4368_332 -4358_80714,228,4368_10301,Swords Manor,10106,0,4368_7778195_5041024,4368_333 -4358_80714,227,4368_10302,Swords Manor,2762,0,4368_7778195_5041036,4368_334 -4358_80714,227,4368_10303,Abbey St,2702,1,4368_7778195_5041004,4368_338 -4358_80714,227,4368_10304,Abbey St,2346,1,4368_7778195_5041006,4368_338 -4358_80714,227,4368_10305,Abbey St,2444,1,4368_7778195_5041008,4368_335 -4358_80714,227,4368_10306,Abbey St,2484,1,4368_7778195_5041011,4368_335 -4358_80714,227,4368_10307,Abbey St,2558,1,4368_7778195_5041015,4368_335 -4358_80714,227,4368_10308,Abbey St,2733,1,4368_7778195_5041016,4368_335 -4358_80714,228,4368_10309,Abbey St,10232,1,4368_7778195_5041005,4368_336 -4358_80756,228,4368_1031,Ashington,13147,1,4368_7778195_7122006,4368_33 -4358_80714,229,4368_10310,Abbey St,16115,1,4368_7778195_5041001,4368_335 -4358_80714,227,4368_10311,Abbey St,2328,1,4368_7778195_5041014,4368_335 -4358_80714,228,4368_10312,Abbey St,10258,1,4368_7778195_5041008,4368_335 -4358_80714,227,4368_10313,Abbey St,2504,1,4368_7778195_5041002,4368_335 -4358_80714,228,4368_10314,Abbey St,10250,1,4368_7778195_5041002,4368_335 -4358_80714,227,4368_10315,Abbey St,2704,1,4368_7778195_5041004,4368_336 -4358_80714,227,4368_10316,Abbey St,2348,1,4368_7778195_5041006,4368_335 -4358_80714,228,4368_10317,Abbey St,10112,1,4368_7778195_5041009,4368_335 -4358_80714,227,4368_10318,Abbey St,2483,1,4368_7778195_5041005,4368_338 -4358_80714,229,4368_10319,Abbey St,16601,1,4368_7778195_5041038,4368_335 -4358_80756,227,4368_1032,Ashington,3629,1,4368_7778195_7122021,4368_33 -4358_80714,228,4368_10320,Abbey St,10234,1,4368_7778195_5041005,4368_335 -4358_80714,227,4368_10321,Abbey St,2351,1,4368_7778195_5041020,4368_335 -4358_80714,227,4368_10322,Abbey St,2474,1,4368_7778195_5041013,4368_335 -4358_80714,228,4368_10323,Abbey St,10157,1,4368_7778195_5041010,4368_335 -4358_80714,227,4368_10324,Abbey St,2735,1,4368_7778195_5041016,4368_335 -4358_80714,229,4368_10325,Abbey St,16117,1,4368_7778195_5041001,4368_336 -4358_80714,228,4368_10326,Abbey St,9946,1,4368_7778195_5041012,4368_335 -4358_80714,227,4368_10327,Abbey St,2330,1,4368_7778195_5041014,4368_335 -4358_80714,228,4368_10328,Abbey St,10252,1,4368_7778195_5041002,4368_335 -4358_80714,229,4368_10329,Abbey St,16157,1,4368_7778195_5041002,4368_336 -4358_80756,229,4368_1033,Ashington,18555,1,4368_7778195_7122005,4368_34 -4358_80714,227,4368_10330,Abbey St,6463,1,4368_7778195_7041576,4368_335 -4358_80714,228,4368_10331,Abbey St,9960,1,4368_7778195_5041003,4368_335 -4358_80714,227,4368_10332,Abbey St,2706,1,4368_7778195_5041004,4368_335 -4358_80714,229,4368_10333,Abbey St,16313,1,4368_7778195_5041003,4368_336 -4358_80714,228,4368_10334,Abbey St,10222,1,4368_7778195_5041013,4368_335 -4358_80714,227,4368_10335,Abbey St,2666,1,4368_7778195_5041026,4368_335 -4358_80714,228,4368_10336,Abbey St,10236,1,4368_7778195_5041005,4368_335 -4358_80714,229,4368_10337,Abbey St,16203,1,4368_7778195_5041009,4368_336 -4358_80714,227,4368_10338,Abbey St,2448,1,4368_7778195_5041008,4368_335 -4358_80714,228,4368_10339,Abbey St,10169,1,4368_7778195_5041001,4368_335 -4358_80756,228,4368_1034,Ashington,13171,1,4368_7778195_7122009,4368_33 -4358_80714,229,4368_10340,Abbey St,16220,1,4368_7778195_5041007,4368_335 -4358_80714,227,4368_10341,Abbey St,2353,1,4368_7778195_5041020,4368_336 -4358_80714,228,4368_10342,Abbey St,10058,1,4368_7778195_5041014,4368_335 -4358_80714,227,4368_10343,Abbey St,2476,1,4368_7778195_5041013,4368_335 -4358_80714,228,4368_10344,Abbey St,10262,1,4368_7778195_5041008,4368_335 -4358_80714,229,4368_10345,Abbey St,16119,1,4368_7778195_5041001,4368_336 -4358_80714,227,4368_10346,Abbey St,2726,1,4368_7778195_5041023,4368_335 -4358_80714,228,4368_10347,Abbey St,10142,1,4368_7778195_5041007,4368_335 -4358_80714,229,4368_10348,Abbey St,16200,1,4368_7778195_5041013,4368_335 -4358_80714,227,4368_10349,Abbey St,2563,1,4368_7778195_5041025,4368_336 -4358_80756,229,4368_1035,Ashington,18574,1,4368_7778195_7122001,4368_33 -4358_80714,228,4368_10350,Abbey St,10178,1,4368_7778195_5041011,4368_335 -4358_80714,227,4368_10351,Abbey St,2434,1,4368_7778195_5041018,4368_335 -4358_80714,229,4368_10352,Abbey St,16274,1,4368_7778195_5041014,4368_335 -4358_80714,228,4368_10353,Abbey St,10282,1,4368_7778195_5041017,4368_336 -4358_80714,227,4368_10354,Abbey St,2708,1,4368_7778195_5041004,4368_335 -4358_80714,228,4368_10355,Abbey St,10224,1,4368_7778195_5041013,4368_335 -4358_80714,229,4368_10356,Abbey St,16138,1,4368_7778195_5041011,4368_335 -4358_80714,227,4368_10357,Abbey St,2668,1,4368_7778195_5041026,4368_336 -4358_80714,228,4368_10358,Abbey St,10050,1,4368_7778195_5041004,4368_335 -4358_80714,227,4368_10359,Abbey St,2450,1,4368_7778195_5041008,4368_335 -4358_80756,227,4368_1036,Ashington,3605,1,4368_7778195_7122008,4368_34 -4358_80714,229,4368_10360,Abbey St,16131,1,4368_7778195_5041020,4368_335 -4358_80714,228,4368_10361,Abbey St,10171,1,4368_7778195_5041001,4368_336 -4358_80714,227,4368_10362,Abbey St,2355,1,4368_7778195_5041020,4368_335 -4358_80714,228,4368_10363,Abbey St,10060,1,4368_7778195_5041014,4368_335 -4358_80714,227,4368_10364,Abbey St,2742,1,4368_7778195_5041027,4368_335 -4358_80714,229,4368_10365,Abbey St,16194,1,4368_7778195_5041017,4368_336 -4358_80714,228,4368_10366,Abbey St,10006,1,4368_7778195_5041015,4368_335 -4358_80714,227,4368_10367,Abbey St,2728,1,4368_7778195_5041023,4368_335 -4358_80714,229,4368_10368,Abbey St,16237,1,4368_7778195_5041019,4368_335 -4358_80714,228,4368_10369,Abbey St,10144,1,4368_7778195_5041007,4368_336 -4358_80756,228,4368_1037,Ashington,13108,1,4368_7778195_7122001,4368_33 -4358_80714,227,4368_10370,Abbey St,7842,1,4368_7778195_8818229,4368_335 -4358_80714,228,4368_10371,Abbey St,10256,1,4368_7778195_5041002,4368_335 -4358_80714,229,4368_10372,Abbey St,16317,1,4368_7778195_5041021,4368_335 -4358_80714,227,4368_10373,Abbey St,2696,1,4368_7778195_5041017,4368_336 -4358_80714,228,4368_10374,Abbey St,10284,1,4368_7778195_5041017,4368_335 -4358_80714,227,4368_10375,Abbey St,2436,1,4368_7778195_5041018,4368_335 -4358_80714,229,4368_10376,Abbey St,16140,1,4368_7778195_5041011,4368_335 -4358_80714,228,4368_10377,Abbey St,10226,1,4368_7778195_5041013,4368_336 -4358_80714,227,4368_10378,Abbey St,2378,1,4368_7778195_5041019,4368_335 -4358_80714,228,4368_10379,Abbey St,10293,1,4368_7778195_5041018,4368_335 -4358_80756,229,4368_1038,Ashington,18544,1,4368_7778195_7122003,4368_34 -4358_80714,227,4368_10380,Abbey St,2653,1,4368_7778195_5041001,4368_335 -4358_80714,229,4368_10381,Abbey St,16190,1,4368_7778195_5041024,4368_336 -4358_80714,228,4368_10382,Abbey St,10173,1,4368_7778195_5041001,4368_335 -4358_80714,227,4368_10383,Abbey St,2452,1,4368_7778195_5041008,4368_335 -4358_80714,228,4368_10384,Abbey St,10062,1,4368_7778195_5041014,4368_335 -4358_80714,229,4368_10385,Abbey St,16148,1,4368_7778195_5041016,4368_336 -4358_80714,228,4368_10386,Abbey St,10136,1,4368_7778195_5041020,4368_335 -4358_80714,227,4368_10387,Abbey St,2357,1,4368_7778195_5041020,4368_336 -4358_80714,229,4368_10388,Abbey St,16128,1,4368_7778195_5041018,4368_335 -4358_80714,227,4368_10389,Abbey St,2350,1,4368_7778195_5041029,4368_335 -4358_80756,227,4368_1039,Ashington,3563,1,4368_7778195_7122017,4368_33 -4358_80714,228,4368_10390,Abbey St,10146,1,4368_7778195_5041007,4368_335 -4358_80714,229,4368_10391,Abbey St,16277,1,4368_7778195_5041023,4368_335 -4358_80714,227,4368_10392,Abbey St,2730,1,4368_7778195_5041023,4368_336 -4358_80714,228,4368_10393,Abbey St,10286,1,4368_7778195_5041017,4368_335 -4358_80714,227,4368_10394,Abbey St,2741,1,4368_7778195_5041024,4368_335 -4358_80714,229,4368_10395,Abbey St,16213,1,4368_7778195_5041025,4368_335 -4358_80714,227,4368_10396,Abbey St,2336,1,4368_7778195_5041014,4368_335 -4358_80714,228,4368_10397,Abbey St,10103,1,4368_7778195_5041024,4368_335 -4358_80714,229,4368_10398,Abbey St,16265,1,4368_7778195_5041026,4368_335 -4358_80714,227,4368_10399,Abbey St,2701,1,4368_7778195_5041030,4368_336 -4358_80760,228,4368_104,Shaw street,9490,0,4368_7778195_9001004,4368_1 -4358_80756,227,4368_1040,Ashington,3624,1,4368_7778195_7122019,4368_33 -4358_80714,228,4368_10400,Abbey St,10280,1,4368_7778195_5041016,4368_335 -4358_80714,227,4368_10401,Abbey St,2655,1,4368_7778195_5041001,4368_335 -4358_80714,229,4368_10402,Abbey St,16135,1,4368_7778195_5041020,4368_335 -4358_80714,228,4368_10403,Abbey St,10149,1,4368_7778195_5041023,4368_335 -4358_80714,227,4368_10404,Abbey St,2479,1,4368_7778195_5041031,4368_336 -4358_80714,229,4368_10405,Abbey St,16130,1,4368_7778195_5041018,4368_335 -4358_80714,227,4368_10406,Abbey St,2748,1,4368_7778195_5041032,4368_335 -4358_80714,228,4368_10407,Abbey St,9954,1,4368_7778195_5041012,4368_336 -4358_80714,229,4368_10408,Abbey St,16279,1,4368_7778195_5041023,4368_335 -4358_80714,228,4368_10409,Abbey St,10288,1,4368_7778195_5041017,4368_335 -4358_80756,228,4368_1041,Ashington,13124,1,4368_7778195_7122003,4368_34 -4358_80714,227,4368_10410,Abbey St,2752,1,4368_7778195_5041033,4368_336 -4358_80714,229,4368_10411,Abbey St,16215,1,4368_7778195_5041025,4368_335 -4358_80714,228,4368_10412,Abbey St,10105,1,4368_7778195_5041024,4368_335 -4358_80714,227,4368_10413,Abbey St,2761,1,4368_7778195_5041036,4368_336 -4358_80714,229,4368_10414,Abbey St,16352,1,4368_7778195_5041028,4368_335 -4358_80714,228,4368_10415,Abbey St,10066,1,4368_7778195_5041014,4368_336 -4358_80714,227,4368_10416,Abbey St,2688,1,4368_7778195_5041042,4368_337 -4358_80714,227,4368_10417,Abbey St,2750,1,4368_7778195_5041032,4368_335 -4358_80714,228,4368_10418,Abbey St,10012,1,4368_7778195_5041015,4368_336 -4358_80714,229,4368_10419,Abbey St,16305,1,4368_7778195_5041029,4368_337 -4358_80756,229,4368_1042,Ashington,18565,1,4368_7778195_7122002,4368_36 -4358_80714,228,4368_10420,Abbey St,10290,1,4368_7778195_5041017,4368_335 -4358_80714,229,4368_10421,Abbey St,16403,1,4368_7778195_5041036,4368_336 -4358_80714,227,4368_10422,Abbey St,2754,1,4368_7778195_5041033,4368_337 -4358_80712,227,4368_10423,Swords Bus.Pk,2482,0,4368_7778195_5041005,4368_339 -4358_80712,227,4368_10424,Swords Bus.Pk,2445,0,4368_7778195_5041008,4368_339 -4358_80712,227,4368_10425,Abbey St,2446,1,4368_7778195_5041008,4368_340 -4358_80712,227,4368_10426,Abbey St,7839,1,4368_7778195_8818228,4368_340 -4358_80715,227,4368_10427,Swords Manor,7847,0,4368_7778195_8818231,4368_341 -4358_80715,227,4368_10428,Knocksedan,7832,0,4368_7778195_8818225,4368_342 -4358_80715,227,4368_10429,Swords Manor,7828,0,4368_7778195_8818224,4368_341 -4358_80756,228,4368_1043,Ashington,13157,1,4368_7778195_7122005,4368_33 -4358_80715,227,4368_10430,UCD,7829,1,4368_7778195_8818124,4368_344 -4358_80715,227,4368_10431,UCD,7841,1,4368_7778195_8818129,4368_346 -4358_80715,227,4368_10432,UCD,7837,1,4368_7778195_8818127,4368_343 -4358_80715,227,4368_10433,UCD,7840,1,4368_7778195_8818128,4368_343 -4358_80715,227,4368_10434,UCD,7830,1,4368_7778195_8818125,4368_345 -4358_80715,227,4368_10435,UCD,7817,1,4368_7778195_8818119,4368_347 -4358_80715,227,4368_10436,UCD,7846,1,4368_7778195_8818131,4368_343 -4358_80716,227,4368_10437,Portmarnock,5894,0,4368_7778195_6042005,4368_348 -4358_80716,227,4368_10438,Portmarnock,5845,0,4368_7778195_6042011,4368_348 -4358_80716,227,4368_10439,Portmarnock,5659,0,4368_7778195_6042012,4368_348 -4358_80756,227,4368_1044,Ashington,3594,1,4368_7778195_7122022,4368_34 -4358_80716,227,4368_10440,Portmarnock,5766,0,4368_7778195_6042001,4368_348 -4358_80716,228,4368_10441,Portmarnock,12919,0,4368_7778195_6042002,4368_348 -4358_80716,227,4368_10442,Portmarnock,5733,0,4368_7778195_6042002,4368_348 -4358_80716,227,4368_10443,Portmarnock,5695,0,4368_7778195_6042007,4368_348 -4358_80716,228,4368_10444,Portmarnock,12893,0,4368_7778195_6042004,4368_348 -4358_80716,227,4368_10445,Portmarnock,5741,0,4368_7778195_6042010,4368_348 -4358_80716,228,4368_10446,Portmarnock,12694,0,4368_7778195_6042005,4368_348 -4358_80716,227,4368_10447,Portmarnock,5878,0,4368_7778195_6042015,4368_348 -4358_80716,227,4368_10448,Portmarnock,5896,0,4368_7778195_6042005,4368_348 -4358_80716,228,4368_10449,Portmarnock,12873,0,4368_7778195_6042006,4368_348 -4358_80756,229,4368_1045,Ashington,18584,1,4368_7778195_7122006,4368_36 -4358_80716,229,4368_10450,Portmarnock,18142,0,4368_7778195_6042001,4368_349 -4358_80716,227,4368_10451,Portmarnock,5847,0,4368_7778195_6042011,4368_348 -4358_80716,228,4368_10452,Portmarnock,12921,0,4368_7778195_6042002,4368_348 -4358_80716,227,4368_10453,Portmarnock,5661,0,4368_7778195_6042012,4368_348 -4358_80716,229,4368_10454,Portmarnock,18021,0,4368_7778195_6042003,4368_348 -4358_80716,228,4368_10455,Portmarnock,12904,0,4368_7778195_6042008,4368_349 -4358_80716,227,4368_10456,Portmarnock,5697,0,4368_7778195_6042007,4368_348 -4358_80716,228,4368_10457,Portmarnock,12895,0,4368_7778195_6042004,4368_348 -4358_80716,227,4368_10458,Portmarnock,5743,0,4368_7778195_6042010,4368_348 -4358_80716,228,4368_10459,Portmarnock,12696,0,4368_7778195_6042005,4368_348 -4358_80756,227,4368_1046,Ashington,3526,1,4368_7778195_7122018,4368_33 -4358_80716,229,4368_10460,Portmarnock,18144,0,4368_7778195_6042001,4368_349 -4358_80716,227,4368_10461,Portmarnock,5880,0,4368_7778195_6042015,4368_348 -4358_80716,228,4368_10462,Portmarnock,12875,0,4368_7778195_6042006,4368_348 -4358_80716,229,4368_10463,Portmarnock,18156,0,4368_7778195_6042007,4368_348 -4358_80716,227,4368_10464,Portmarnock,5849,0,4368_7778195_6042011,4368_348 -4358_80716,228,4368_10465,Portmarnock,12923,0,4368_7778195_6042002,4368_348 -4358_80716,229,4368_10466,Portmarnock,18023,0,4368_7778195_6042003,4368_348 -4358_80716,227,4368_10467,Portmarnock,5663,0,4368_7778195_6042012,4368_349 -4358_80716,228,4368_10468,Portmarnock,12795,0,4368_7778195_6042010,4368_350 -4358_80716,228,4368_10469,Portmarnock,12906,0,4368_7778195_6042008,4368_348 -4358_80756,228,4368_1047,Ashington,13181,1,4368_7778195_7122007,4368_34 -4358_80716,227,4368_10470,Portmarnock,5699,0,4368_7778195_6042007,4368_348 -4358_80716,229,4368_10471,Portmarnock,17991,0,4368_7778195_6042006,4368_348 -4358_80716,228,4368_10472,Portmarnock,12897,0,4368_7778195_6042004,4368_348 -4358_80716,227,4368_10473,Portmarnock,5745,0,4368_7778195_6042010,4368_348 -4358_80716,228,4368_10474,Portmarnock,12909,0,4368_7778195_6042011,4368_349 -4358_80716,229,4368_10475,Portmarnock,18146,0,4368_7778195_6042001,4368_348 -4358_80716,228,4368_10476,Portmarnock,12698,0,4368_7778195_6042005,4368_348 -4358_80716,227,4368_10477,Portmarnock,5882,0,4368_7778195_6042015,4368_348 -4358_80716,228,4368_10478,Portmarnock,12787,0,4368_7778195_6042013,4368_348 -4358_80716,229,4368_10479,Portmarnock,18158,0,4368_7778195_6042008,4368_349 -4358_80756,229,4368_1048,Ashington,18533,1,4368_7778195_7122004,4368_36 -4358_80716,227,4368_10480,Portmarnock,5851,0,4368_7778195_6042011,4368_348 -4358_80716,228,4368_10481,Portmarnock,12877,0,4368_7778195_6042006,4368_349 -4358_80716,229,4368_10482,Portmarnock,18011,0,4368_7778195_6042009,4368_348 -4358_80716,228,4368_10483,Portmarnock,12925,0,4368_7778195_6042002,4368_348 -4358_80716,227,4368_10484,Portmarnock,5687,0,4368_7778195_6042017,4368_348 -4358_80716,228,4368_10485,Portmarnock,12797,0,4368_7778195_6042010,4368_348 -4358_80716,229,4368_10486,Portmarnock,18042,0,4368_7778195_6042010,4368_349 -4358_80716,227,4368_10487,Portmarnock,5665,0,4368_7778195_6042012,4368_348 -4358_80716,228,4368_10488,Portmarnock,12908,0,4368_7778195_6042008,4368_348 -4358_80716,229,4368_10489,Portmarnock,17993,0,4368_7778195_6042006,4368_348 -4358_80756,228,4368_1049,Ashington,13137,1,4368_7778195_7122004,4368_33 -4358_80716,227,4368_10490,Portmarnock,5725,0,4368_7778195_6042024,4368_349 -4358_80716,228,4368_10491,Portmarnock,12899,0,4368_7778195_6042004,4368_348 -4358_80716,227,4368_10492,Portmarnock,5701,0,4368_7778195_6042007,4368_348 -4358_80716,228,4368_10493,Portmarnock,12911,0,4368_7778195_6042011,4368_348 -4358_80716,229,4368_10494,Portmarnock,18148,0,4368_7778195_6042001,4368_348 -4358_80716,227,4368_10495,Portmarnock,5747,0,4368_7778195_6042010,4368_348 -4358_80716,228,4368_10496,Portmarnock,12700,0,4368_7778195_6042005,4368_348 -4358_80716,227,4368_10497,Portmarnock,5921,0,4368_7778195_6042025,4368_348 -4358_80716,228,4368_10498,Portmarnock,12789,0,4368_7778195_6042013,4368_348 -4358_80716,229,4368_10499,Portmarnock,18160,0,4368_7778195_6042008,4368_348 -4358_80760,227,4368_105,Shaw street,1825,0,4368_7778195_9001001,4368_1 -4358_80756,229,4368_1050,Ashington,18594,1,4368_7778195_7122007,4368_34 -4358_80716,227,4368_10500,Portmarnock,5884,0,4368_7778195_6042015,4368_348 -4358_80716,228,4368_10501,Portmarnock,12683,0,4368_7778195_6042014,4368_348 -4358_80716,229,4368_10502,Portmarnock,18013,0,4368_7778195_6042009,4368_348 -4358_80716,227,4368_10503,Portmarnock,5853,0,4368_7778195_6042011,4368_348 -4358_80716,228,4368_10504,Portmarnock,12808,0,4368_7778195_6042015,4368_348 -4358_80716,227,4368_10505,Portmarnock,5689,0,4368_7778195_6042017,4368_348 -4358_80716,228,4368_10506,Portmarnock,12879,0,4368_7778195_6042016,4368_348 -4358_80716,229,4368_10507,Portmarnock,18044,0,4368_7778195_6042010,4368_349 -4358_80716,227,4368_10508,Portmarnock,5667,0,4368_7778195_6042012,4368_348 -4358_80716,229,4368_10509,Portmarnock,17995,0,4368_7778195_6042006,4368_348 -4358_80756,227,4368_1051,Ashington,3631,1,4368_7778195_7122021,4368_36 -4358_80716,228,4368_10510,Portmarnock,12703,0,4368_7778195_6042017,4368_349 -4358_80716,227,4368_10511,Portmarnock,5727,0,4368_7778195_6042024,4368_348 -4358_80716,228,4368_10512,Portmarnock,12901,0,4368_7778195_6042004,4368_348 -4358_80716,229,4368_10513,Portmarnock,18150,0,4368_7778195_6042001,4368_349 -4358_80716,227,4368_10514,Portmarnock,5703,0,4368_7778195_6042007,4368_348 -4358_80716,228,4368_10515,Portmarnock,12913,0,4368_7778195_6042011,4368_349 -4358_80716,229,4368_10516,Portmarnock,18162,0,4368_7778195_6042008,4368_348 -4358_80716,228,4368_10517,Portmarnock,12791,0,4368_7778195_6042013,4368_348 -4358_80716,227,4368_10518,Portmarnock,5749,0,4368_7778195_6042010,4368_349 -4358_80716,229,4368_10519,Portmarnock,18015,0,4368_7778195_6042009,4368_348 -4358_80756,228,4368_1052,Ashington,13110,1,4368_7778195_7122001,4368_33 -4358_80716,228,4368_10520,Portmarnock,12685,0,4368_7778195_6042014,4368_348 -4358_80716,227,4368_10521,Portmarnock,5886,0,4368_7778195_6042015,4368_349 -4358_80716,229,4368_10522,Portmarnock,18046,0,4368_7778195_6042010,4368_348 -4358_80716,227,4368_10523,Portmarnock,5855,0,4368_7778195_6042011,4368_348 -4358_80716,228,4368_10524,Portmarnock,12881,0,4368_7778195_6042016,4368_349 -4358_80716,229,4368_10525,Portmarnock,18152,0,4368_7778195_6042001,4368_348 -4358_80716,227,4368_10526,Portmarnock,5691,0,4368_7778195_6042017,4368_348 -4358_80716,228,4368_10527,Portmarnock,12705,0,4368_7778195_6042017,4368_349 -4358_80716,227,4368_10528,Portmarnock,5737,0,4368_7778195_6042026,4368_348 -4358_80716,228,4368_10529,Portmarnock,12915,0,4368_7778195_6042011,4368_349 -4358_80756,229,4368_1053,Ashington,18546,1,4368_7778195_7122003,4368_34 -4358_80716,229,4368_10530,Portmarnock,18017,0,4368_7778195_6042009,4368_348 -4358_80716,228,4368_10531,Portmarnock,12793,0,4368_7778195_6042013,4368_348 -4358_80716,227,4368_10532,Portmarnock,5729,0,4368_7778195_6042024,4368_349 -4358_80716,228,4368_10533,Portmarnock,12687,0,4368_7778195_6042014,4368_348 -4358_80716,227,4368_10534,Portmarnock,5720,0,4368_7778195_6042027,4368_349 -4358_80716,229,4368_10535,Portmarnock,18154,0,4368_7778195_6042001,4368_348 -4358_80716,227,4368_10536,Portmarnock,5693,0,4368_7778195_6042017,4368_348 -4358_80716,228,4368_10537,Portmarnock,12883,0,4368_7778195_6042016,4368_349 -4358_80716,228,4368_10538,Portmarnock,12707,0,4368_7778195_6042017,4368_348 -4358_80716,227,4368_10539,Portmarnock,5739,0,4368_7778195_6042026,4368_349 -4358_80756,227,4368_1054,Ashington,3565,1,4368_7778195_7122017,4368_36 -4358_80716,229,4368_10540,Portmarnock,18019,0,4368_7778195_6042009,4368_348 -4358_80716,228,4368_10541,Portmarnock,12917,0,4368_7778195_6042011,4368_348 -4358_80716,227,4368_10542,Portmarnock,5731,0,4368_7778195_6042024,4368_349 -4358_80716,227,4368_10543,Talbot Street,5765,1,4368_7778195_6042001,4368_351 -4358_80716,227,4368_10544,Talbot Street,5732,1,4368_7778195_6042002,4368_351 -4358_80716,228,4368_10545,Talbot Street,12918,1,4368_7778195_6042002,4368_351 -4358_80716,227,4368_10546,Talbot Street,5694,1,4368_7778195_6042007,4368_352 -4358_80716,227,4368_10547,Talbot Street,5740,1,4368_7778195_6042010,4368_351 -4358_80716,228,4368_10548,Talbot Street,12892,1,4368_7778195_6042004,4368_352 -4358_80716,227,4368_10549,Talbot Street,5877,1,4368_7778195_6042015,4368_351 -4358_80756,227,4368_1055,Ashington,3626,1,4368_7778195_7122019,4368_33 -4358_80716,228,4368_10550,Talbot Street,12693,1,4368_7778195_6042005,4368_351 -4358_80716,227,4368_10551,Talbot Street,5895,1,4368_7778195_6042005,4368_351 -4358_80716,227,4368_10552,Talbot Street,5846,1,4368_7778195_6042011,4368_351 -4358_80716,228,4368_10553,Talbot Street,12872,1,4368_7778195_6042006,4368_352 -4358_80716,229,4368_10554,Talbot Street,18141,1,4368_7778195_6042001,4368_351 -4358_80716,227,4368_10555,Talbot Street,5660,1,4368_7778195_6042012,4368_351 -4358_80716,228,4368_10556,Talbot Street,12920,1,4368_7778195_6042002,4368_351 -4358_80716,227,4368_10557,Talbot Street,5767,1,4368_7778195_6042001,4368_351 -4358_80716,228,4368_10558,Talbot Street,12903,1,4368_7778195_6042008,4368_351 -4358_80716,227,4368_10559,Talbot Street,5734,1,4368_7778195_6042002,4368_352 -4358_80756,228,4368_1056,Ashington,13126,1,4368_7778195_7122003,4368_34 -4358_80716,229,4368_10560,Talbot Street,18020,1,4368_7778195_6042003,4368_351 -4358_80716,227,4368_10561,Talbot Street,5696,1,4368_7778195_6042007,4368_351 -4358_80716,228,4368_10562,Talbot Street,12894,1,4368_7778195_6042004,4368_351 -4358_80716,227,4368_10563,Talbot Street,5742,1,4368_7778195_6042010,4368_351 -4358_80716,228,4368_10564,Talbot Street,12695,1,4368_7778195_6042005,4368_351 -4358_80716,227,4368_10565,Talbot Street,5879,1,4368_7778195_6042015,4368_351 -4358_80716,229,4368_10566,Talbot Street,18143,1,4368_7778195_6042001,4368_352 -4358_80716,228,4368_10567,Talbot Street,12874,1,4368_7778195_6042006,4368_351 -4358_80716,227,4368_10568,Talbot Street,5848,1,4368_7778195_6042011,4368_351 -4358_80716,228,4368_10569,Talbot Street,12922,1,4368_7778195_6042002,4368_351 -4358_80756,229,4368_1057,Ashington,18586,1,4368_7778195_7122006,4368_36 -4358_80716,229,4368_10570,Talbot Street,18022,1,4368_7778195_6042003,4368_351 -4358_80716,227,4368_10571,Talbot Street,5662,1,4368_7778195_6042012,4368_352 -4358_80716,228,4368_10572,Talbot Street,12905,1,4368_7778195_6042008,4368_351 -4358_80716,227,4368_10573,Talbot Street,5698,1,4368_7778195_6042007,4368_351 -4358_80716,229,4368_10574,Talbot Street,17990,1,4368_7778195_6042006,4368_351 -4358_80716,228,4368_10575,Talbot Street,12896,1,4368_7778195_6042004,4368_351 -4358_80716,227,4368_10576,Talbot Street,5744,1,4368_7778195_6042010,4368_351 -4358_80716,229,4368_10577,Talbot Street,18145,1,4368_7778195_6042001,4368_351 -4358_80716,228,4368_10578,Talbot Street,12697,1,4368_7778195_6042005,4368_351 -4358_80716,227,4368_10579,Talbot Street,5881,1,4368_7778195_6042015,4368_351 -4358_80756,227,4368_1058,O'Connell Street,3596,1,4368_7778195_7122022,4368_35 -4358_80716,229,4368_10580,Talbot Street,18157,1,4368_7778195_6042008,4368_351 -4358_80716,228,4368_10581,Talbot Street,12876,1,4368_7778195_6042006,4368_351 -4358_80716,227,4368_10582,Talbot Street,5850,1,4368_7778195_6042011,4368_351 -4358_80716,229,4368_10583,Talbot Street,18010,1,4368_7778195_6042009,4368_351 -4358_80716,228,4368_10584,Talbot Street,12924,1,4368_7778195_6042002,4368_351 -4358_80716,227,4368_10585,Talbot Street,5686,1,4368_7778195_6042017,4368_351 -4358_80716,228,4368_10586,Talbot Street,12796,1,4368_7778195_6042010,4368_351 -4358_80716,229,4368_10587,Talbot Street,18041,1,4368_7778195_6042010,4368_352 -4358_80716,228,4368_10588,Talbot Street,12907,1,4368_7778195_6042008,4368_351 -4358_80716,227,4368_10589,Talbot Street,5664,1,4368_7778195_6042012,4368_352 -4358_80756,228,4368_1059,O'Connell Street,13098,1,4368_7778195_7122011,4368_37 -4358_80716,229,4368_10590,Talbot Street,17992,1,4368_7778195_6042006,4368_351 -4358_80716,228,4368_10591,Talbot Street,12898,1,4368_7778195_6042004,4368_351 -4358_80716,227,4368_10592,Talbot Street,5700,1,4368_7778195_6042007,4368_351 -4358_80716,229,4368_10593,Talbot Street,18147,1,4368_7778195_6042001,4368_351 -4358_80716,228,4368_10594,Talbot Street,12910,1,4368_7778195_6042011,4368_352 -4358_80716,227,4368_10595,Talbot Street,5746,1,4368_7778195_6042010,4368_351 -4358_80716,228,4368_10596,Talbot Street,12699,1,4368_7778195_6042005,4368_352 -4358_80716,228,4368_10597,Talbot Street,12788,1,4368_7778195_6042013,4368_351 -4358_80716,229,4368_10598,Talbot Street,18159,1,4368_7778195_6042008,4368_352 -4358_80716,227,4368_10599,Talbot Street,5883,1,4368_7778195_6042015,4368_351 -4358_80760,229,4368_106,Shaw street,15591,0,4368_7778195_9001004,4368_1 -4358_80756,229,4368_1060,O'Connell Street,18535,1,4368_7778195_7122004,4368_38 -4358_80716,228,4368_10600,Talbot Street,12682,1,4368_7778195_6042014,4368_351 -4358_80716,229,4368_10601,Talbot Street,18012,1,4368_7778195_6042009,4368_351 -4358_80716,228,4368_10602,Talbot Street,12807,1,4368_7778195_6042015,4368_351 -4358_80716,227,4368_10603,Talbot Street,5852,1,4368_7778195_6042011,4368_352 -4358_80716,229,4368_10604,Talbot Street,18043,1,4368_7778195_6042010,4368_351 -4358_80716,227,4368_10605,Talbot Street,5688,1,4368_7778195_6042017,4368_351 -4358_80716,228,4368_10606,Talbot Street,12878,1,4368_7778195_6042016,4368_352 -4358_80716,229,4368_10607,Talbot Street,17994,1,4368_7778195_6042006,4368_351 -4358_80716,227,4368_10608,Talbot Street,5666,1,4368_7778195_6042012,4368_352 -4358_80716,228,4368_10609,Talbot Street,12702,1,4368_7778195_6042017,4368_353 -4358_80757,227,4368_1061,Marino,2233,0,4368_7778195_5123001,4368_39 -4358_80716,228,4368_10610,Talbot Street,12900,1,4368_7778195_6042004,4368_351 -4358_80716,227,4368_10611,Talbot Street,5726,1,4368_7778195_6042024,4368_352 -4358_80716,229,4368_10612,Talbot Street,18149,1,4368_7778195_6042001,4368_351 -4358_80716,227,4368_10613,Talbot Street,5702,1,4368_7778195_6042007,4368_351 -4358_80716,228,4368_10614,Talbot Street,12912,1,4368_7778195_6042011,4368_352 -4358_80716,227,4368_10615,Talbot Street,5748,1,4368_7778195_6042010,4368_351 -4358_80716,228,4368_10616,Talbot Street,12701,1,4368_7778195_6042005,4368_352 -4358_80716,229,4368_10617,Talbot Street,18161,1,4368_7778195_6042008,4368_351 -4358_80716,228,4368_10618,Talbot Street,12790,1,4368_7778195_6042013,4368_351 -4358_80716,227,4368_10619,Talbot Street,5922,1,4368_7778195_6042025,4368_351 -4358_80757,227,4368_1062,Marino,2245,0,4368_7778195_5123002,4368_39 -4358_80716,228,4368_10620,Talbot Street,12684,1,4368_7778195_6042014,4368_351 -4358_80716,229,4368_10621,Talbot Street,18014,1,4368_7778195_6042009,4368_352 -4358_80716,227,4368_10622,Talbot Street,5885,1,4368_7778195_6042015,4368_351 -4358_80716,228,4368_10623,Talbot Street,12809,1,4368_7778195_6042015,4368_351 -4358_80716,227,4368_10624,Talbot Street,5854,1,4368_7778195_6042011,4368_351 -4358_80716,229,4368_10625,Talbot Street,18045,1,4368_7778195_6042010,4368_351 -4358_80716,228,4368_10626,Talbot Street,12880,1,4368_7778195_6042016,4368_351 -4358_80716,227,4368_10627,Talbot Street,5690,1,4368_7778195_6042017,4368_351 -4358_80716,228,4368_10628,Talbot Street,12704,1,4368_7778195_6042017,4368_351 -4358_80716,229,4368_10629,Talbot Street,18151,1,4368_7778195_6042001,4368_352 -4358_80757,227,4368_1063,Marino,2255,0,4368_7778195_5123004,4368_39 -4358_80716,228,4368_10630,Talbot Street,12902,1,4368_7778195_6042004,4368_351 -4358_80716,227,4368_10631,Talbot Street,5728,1,4368_7778195_6042024,4368_351 -4358_80716,228,4368_10632,Talbot Street,12914,1,4368_7778195_6042011,4368_351 -4358_80716,227,4368_10633,Talbot Street,5750,1,4368_7778195_6042010,4368_351 -4358_80716,228,4368_10634,Talbot Street,12792,1,4368_7778195_6042013,4368_351 -4358_80716,229,4368_10635,Talbot Street,18016,1,4368_7778195_6042009,4368_352 -4358_80716,227,4368_10636,Talbot Street,5887,1,4368_7778195_6042015,4368_351 -4358_80716,228,4368_10637,Talbot Street,12686,1,4368_7778195_6042014,4368_351 -4358_80716,227,4368_10638,Talbot Street,5856,1,4368_7778195_6042011,4368_351 -4358_80716,228,4368_10639,Talbot Street,12882,1,4368_7778195_6042016,4368_351 -4358_80757,228,4368_1064,Marino,9837,0,4368_7778195_5123002,4368_39 -4358_80716,229,4368_10640,Talbot Street,18153,1,4368_7778195_6042001,4368_352 -4358_80716,227,4368_10641,Talbot Street,5692,1,4368_7778195_6042017,4368_351 -4358_80716,228,4368_10642,Talbot Street,12706,1,4368_7778195_6042017,4368_351 -4358_80716,227,4368_10643,Talbot Street,5738,1,4368_7778195_6042026,4368_351 -4358_80716,229,4368_10644,Talbot Street,18018,1,4368_7778195_6042009,4368_351 -4358_80716,228,4368_10645,Talbot Street,12916,1,4368_7778195_6042011,4368_352 -4358_80716,227,4368_10646,Talbot Street,5730,1,4368_7778195_6042024,4368_351 -4358_80716,228,4368_10647,Talbot Street,12794,1,4368_7778195_6042013,4368_351 -4358_80716,228,4368_10648,Talbot Street,12688,1,4368_7778195_6042014,4368_351 -4358_80716,229,4368_10649,Talbot Street,18155,1,4368_7778195_6042001,4368_352 -4358_80757,227,4368_1065,Marino,2223,0,4368_7778195_5123007,4368_39 -4358_80716,227,4368_10650,Talbot Street,5721,1,4368_7778195_6042027,4368_353 -4358_80793,227,4368_10651,Strand Road,6102,0,4368_7778195_6826207,4368_354 -4358_80793,227,4368_10652,DCU,6101,1,4368_7778195_6826107,4368_355 -4358_80717,227,4368_10653,Swords Bus.Pk,5809,0,4368_7778195_6042004,4368_356 -4358_80717,227,4368_10654,Swords Bus.Pk,5751,0,4368_7778195_6042008,4368_356 -4358_80717,228,4368_10655,Swords Bus.Pk,12870,0,4368_7778195_6042001,4368_356 -4358_80717,227,4368_10656,Swords Bus.Pk,5735,0,4368_7778195_6042014,4368_356 -4358_80717,227,4368_10657,Swords Bus.Pk,5723,0,4368_7778195_6042003,4368_356 -4358_80717,227,4368_10658,Swords Bus.Pk,5907,0,4368_7778195_6042006,4368_356 -4358_80717,228,4368_10659,Swords Bus.Pk,12841,0,4368_7778195_6042003,4368_357 -4358_80757,227,4368_1066,Marino,2278,0,4368_7778195_5123009,4368_39 -4358_80717,227,4368_10660,Swords Bus.Pk,5914,0,4368_7778195_6042009,4368_356 -4358_80717,228,4368_10661,Swords Bus.Pk,12755,0,4368_7778195_6042007,4368_356 -4358_80717,227,4368_10662,Swords Bus.Pk,5823,0,4368_7778195_6042013,4368_357 -4358_80717,227,4368_10663,Swords Bus.Pk,5769,0,4368_7778195_6042016,4368_356 -4358_80717,227,4368_10664,Swords Bus.Pk,5753,0,4368_7778195_6042008,4368_356 -4358_80717,228,4368_10665,Swords Bus.Pk,12884,0,4368_7778195_6042009,4368_356 -4358_80717,229,4368_10666,Swords Bus.Pk,18106,0,4368_7778195_6042002,4368_356 -4358_80717,227,4368_10667,Swords Bus.Pk,5909,0,4368_7778195_6042006,4368_356 -4358_80717,228,4368_10668,Swords Bus.Pk,12843,0,4368_7778195_6042003,4368_356 -4358_80717,229,4368_10669,Swords Bus.Pk,18118,0,4368_7778195_6042004,4368_356 -4358_80757,228,4368_1067,Marino,9871,0,4368_7778195_5123001,4368_39 -4358_80717,228,4368_10670,Swords Bus.Pk,12757,0,4368_7778195_6042007,4368_356 -4358_80717,227,4368_10671,Swords Bus.Pk,5916,0,4368_7778195_6042009,4368_357 -4358_80717,229,4368_10672,Swords Bus.Pk,18134,0,4368_7778195_6042005,4368_356 -4358_80717,227,4368_10673,Swords Bus.Pk,5755,0,4368_7778195_6042008,4368_356 -4358_80717,228,4368_10674,Swords Bus.Pk,12886,0,4368_7778195_6042009,4368_357 -4358_80717,229,4368_10675,Swords Bus.Pk,18108,0,4368_7778195_6042002,4368_356 -4358_80717,227,4368_10676,Swords Bus.Pk,5911,0,4368_7778195_6042006,4368_356 -4358_80717,228,4368_10677,Swords Bus.Pk,12845,0,4368_7778195_6042003,4368_357 -4358_80717,229,4368_10678,Swords Bus.Pk,18120,0,4368_7778195_6042004,4368_356 -4358_80717,227,4368_10679,Swords Bus.Pk,5897,0,4368_7778195_6042018,4368_356 -4358_80757,227,4368_1068,Marino,2115,0,4368_7778195_5123003,4368_39 -4358_80717,228,4368_10680,Swords Bus.Pk,12708,0,4368_7778195_6042012,4368_357 -4358_80717,229,4368_10681,Swords Bus.Pk,18126,0,4368_7778195_6042011,4368_356 -4358_80717,227,4368_10682,Swords Bus.Pk,5757,0,4368_7778195_6042008,4368_356 -4358_80717,228,4368_10683,Swords Bus.Pk,12888,0,4368_7778195_6042009,4368_356 -4358_80717,229,4368_10684,Swords Bus.Pk,18136,0,4368_7778195_6042005,4368_356 -4358_80717,227,4368_10685,Swords Bus.Pk,5811,0,4368_7778195_6042021,4368_356 -4358_80717,229,4368_10686,Swords Bus.Pk,18110,0,4368_7778195_6042002,4368_356 -4358_80717,228,4368_10687,Swords Bus.Pk,12847,0,4368_7778195_6042003,4368_357 -4358_80717,227,4368_10688,Swords Bus.Pk,5918,0,4368_7778195_6042022,4368_356 -4358_80717,227,4368_10689,Swords Bus.Pk,5899,0,4368_7778195_6042018,4368_356 -4358_80757,228,4368_1069,Marino,9781,0,4368_7778195_5123004,4368_39 -4358_80717,229,4368_10690,Swords Bus.Pk,18122,0,4368_7778195_6042004,4368_357 -4358_80717,228,4368_10691,Swords Bus.Pk,12710,0,4368_7778195_6042012,4368_356 -4358_80717,227,4368_10692,Swords Bus.Pk,5762,0,4368_7778195_6042019,4368_356 -4358_80717,227,4368_10693,Swords Bus.Pk,5759,0,4368_7778195_6042008,4368_356 -4358_80717,229,4368_10694,Swords Bus.Pk,18128,0,4368_7778195_6042011,4368_357 -4358_80717,228,4368_10695,Swords Bus.Pk,12890,0,4368_7778195_6042009,4368_356 -4358_80717,227,4368_10696,Swords Bus.Pk,5808,0,4368_7778195_6042020,4368_357 -4358_80717,229,4368_10697,Swords Bus.Pk,18138,0,4368_7778195_6042005,4368_356 -4358_80717,227,4368_10698,Swords Bus.Pk,5685,0,4368_7778195_6042023,4368_357 -4358_80717,227,4368_10699,Swords Bus.Pk,6474,0,4368_7778195_6043618,4368_356 -4358_80760,227,4368_107,Shaw street,1662,0,4368_7778195_9001003,4368_1 -4358_80757,227,4368_1070,Marino,2194,0,4368_7778195_5123005,4368_39 -4358_80717,227,4368_10700,Swords Bus.Pk,5813,0,4368_7778195_6042021,4368_356 -4358_80717,228,4368_10701,Swords Bus.Pk,12849,0,4368_7778195_6042003,4368_356 -4358_80717,227,4368_10702,Swords Bus.Pk,5920,0,4368_7778195_6042022,4368_356 -4358_80717,229,4368_10703,Swords Bus.Pk,18112,0,4368_7778195_6042002,4368_357 -4358_80717,228,4368_10704,Swords Bus.Pk,12759,0,4368_7778195_6042018,4368_356 -4358_80717,227,4368_10705,Swords Bus.Pk,5901,0,4368_7778195_6042018,4368_356 -4358_80717,229,4368_10706,Swords Bus.Pk,18124,0,4368_7778195_6042004,4368_357 -4358_80717,227,4368_10707,Swords Bus.Pk,5764,0,4368_7778195_6042019,4368_356 -4358_80717,228,4368_10708,Swords Bus.Pk,12750,0,4368_7778195_6042019,4368_357 -4358_80717,229,4368_10709,Swords Bus.Pk,18130,0,4368_7778195_6042011,4368_356 -4358_80757,227,4368_1071,Marino,2312,0,4368_7778195_5123013,4368_39 -4358_80717,228,4368_10710,Swords Bus.Pk,12851,0,4368_7778195_6042003,4368_356 -4358_80717,227,4368_10711,Swords Bus.Pk,5815,0,4368_7778195_6042021,4368_357 -4358_80717,229,4368_10712,Swords Bus.Pk,18140,0,4368_7778195_6042005,4368_356 -4358_80717,229,4368_10713,Swords Bus.Pk,18114,0,4368_7778195_6042002,4368_356 -4358_80717,228,4368_10714,Swords Bus.Pk,12752,0,4368_7778195_6042019,4368_356 -4358_80717,227,4368_10715,Swords Bus.Pk,5903,0,4368_7778195_6042018,4368_357 -4358_80717,229,4368_10716,Swords Bus.Pk,18132,0,4368_7778195_6042011,4368_356 -4358_80717,228,4368_10717,Swords Bus.Pk,12853,0,4368_7778195_6042003,4368_356 -4358_80717,227,4368_10718,Swords Bus.Pk,5817,0,4368_7778195_6042021,4368_357 -4358_80717,229,4368_10719,Swords Bus.Pk,18163,0,4368_7778195_6042012,4368_356 -4358_80757,228,4368_1072,Marino,9899,0,4368_7778195_5123007,4368_39 -4358_80717,228,4368_10720,Swords Bus.Pk,12754,0,4368_7778195_6042019,4368_356 -4358_80717,227,4368_10721,Swords Bus.Pk,5905,0,4368_7778195_6042018,4368_357 -4358_80717,228,4368_10722,Talbot Street,12869,1,4368_7778195_6042001,4368_358 -4358_80717,227,4368_10723,Talbot Street,5722,1,4368_7778195_6042003,4368_358 -4358_80717,227,4368_10724,Talbot Street,5906,1,4368_7778195_6042006,4368_358 -4358_80717,228,4368_10725,Talbot Street,12840,1,4368_7778195_6042003,4368_358 -4358_80717,227,4368_10726,Talbot Street,5913,1,4368_7778195_6042009,4368_358 -4358_80717,227,4368_10727,Talbot Street,5822,1,4368_7778195_6042013,4368_360 -4358_80717,227,4368_10728,Talbot Street,6473,1,4368_7778195_6043518,4368_358 -4358_80717,227,4368_10729,Talbot Street,5810,1,4368_7778195_6042004,4368_358 -4358_80757,227,4368_1073,Marino,2171,0,4368_7778195_5123006,4368_39 -4358_80717,227,4368_10730,Talbot Street,5768,1,4368_7778195_6042016,4368_360 -4358_80717,227,4368_10731,Talbot Street,5752,1,4368_7778195_6042008,4368_358 -4358_80717,228,4368_10732,Talbot Street,12871,1,4368_7778195_6042001,4368_358 -4358_80717,227,4368_10733,Talbot Street,5736,1,4368_7778195_6042014,4368_358 -4358_80717,229,4368_10734,Talbot Street,18105,1,4368_7778195_6042002,4368_359 -4358_80717,227,4368_10735,Talbot Street,5724,1,4368_7778195_6042003,4368_358 -4358_80717,227,4368_10736,Talbot Street,5908,1,4368_7778195_6042006,4368_358 -4358_80717,228,4368_10737,Talbot Street,12842,1,4368_7778195_6042003,4368_359 -4358_80717,229,4368_10738,Talbot Street,18117,1,4368_7778195_6042004,4368_358 -4358_80717,227,4368_10739,Talbot Street,5915,1,4368_7778195_6042009,4368_358 -4358_80757,228,4368_1074,Marino,9754,0,4368_7778195_5123003,4368_39 -4358_80717,228,4368_10740,Talbot Street,12756,1,4368_7778195_6042007,4368_358 -4358_80717,229,4368_10741,Talbot Street,18133,1,4368_7778195_6042005,4368_358 -4358_80717,227,4368_10742,Talbot Street,5754,1,4368_7778195_6042008,4368_358 -4358_80717,228,4368_10743,Talbot Street,12885,1,4368_7778195_6042009,4368_358 -4358_80717,229,4368_10744,Talbot Street,18107,1,4368_7778195_6042002,4368_358 -4358_80717,227,4368_10745,Talbot Street,5910,1,4368_7778195_6042006,4368_358 -4358_80717,228,4368_10746,Talbot Street,12844,1,4368_7778195_6042003,4368_358 -4358_80717,229,4368_10747,Talbot Street,18119,1,4368_7778195_6042004,4368_358 -4358_80717,228,4368_10748,Talbot Street,12758,1,4368_7778195_6042007,4368_358 -4358_80717,227,4368_10749,Talbot Street,5917,1,4368_7778195_6042009,4368_359 -4358_80757,227,4368_1075,Marino,2314,0,4368_7778195_5123014,4368_39 -4358_80717,229,4368_10750,Talbot Street,18135,1,4368_7778195_6042005,4368_358 -4358_80717,227,4368_10751,Talbot Street,5756,1,4368_7778195_6042008,4368_358 -4358_80717,228,4368_10752,Talbot Street,12887,1,4368_7778195_6042009,4368_359 -4358_80717,229,4368_10753,Talbot Street,18109,1,4368_7778195_6042002,4368_358 -4358_80717,227,4368_10754,Talbot Street,5912,1,4368_7778195_6042006,4368_358 -4358_80717,228,4368_10755,Talbot Street,12846,1,4368_7778195_6042003,4368_359 -4358_80717,229,4368_10756,Talbot Street,18121,1,4368_7778195_6042004,4368_358 -4358_80717,227,4368_10757,Talbot Street,5898,1,4368_7778195_6042018,4368_358 -4358_80717,228,4368_10758,Talbot Street,12709,1,4368_7778195_6042012,4368_358 -4358_80717,227,4368_10759,Talbot Street,5761,1,4368_7778195_6042019,4368_358 -4358_80757,228,4368_1076,Marino,9891,0,4368_7778195_5123005,4368_39 -4358_80717,229,4368_10760,Talbot Street,18127,1,4368_7778195_6042011,4368_358 -4358_80717,227,4368_10761,Talbot Street,5758,1,4368_7778195_6042008,4368_358 -4358_80717,228,4368_10762,Talbot Street,12889,1,4368_7778195_6042009,4368_358 -4358_80717,227,4368_10763,Talbot Street,5807,1,4368_7778195_6042020,4368_358 -4358_80717,229,4368_10764,Talbot Street,18137,1,4368_7778195_6042005,4368_358 -4358_80717,227,4368_10765,Talbot Street,5684,1,4368_7778195_6042023,4368_358 -4358_80717,227,4368_10766,Talbot Street,5812,1,4368_7778195_6042021,4368_358 -4358_80717,228,4368_10767,Talbot Street,12848,1,4368_7778195_6042003,4368_358 -4358_80717,229,4368_10768,Talbot Street,18111,1,4368_7778195_6042002,4368_358 -4358_80717,227,4368_10769,Talbot Street,5919,1,4368_7778195_6042022,4368_358 -4358_80757,227,4368_1077,Marino,2269,0,4368_7778195_5123008,4368_39 -4358_80717,227,4368_10770,Talbot Street,5900,1,4368_7778195_6042018,4368_358 -4358_80717,229,4368_10771,Talbot Street,18123,1,4368_7778195_6042004,4368_359 -4358_80717,228,4368_10772,Talbot Street,12711,1,4368_7778195_6042012,4368_358 -4358_80717,227,4368_10773,Talbot Street,5763,1,4368_7778195_6042019,4368_358 -4358_80717,229,4368_10774,Talbot Street,18129,1,4368_7778195_6042011,4368_358 -4358_80717,227,4368_10775,Talbot Street,5760,1,4368_7778195_6042008,4368_358 -4358_80717,228,4368_10776,Talbot Street,12891,1,4368_7778195_6042009,4368_358 -4358_80717,229,4368_10777,Talbot Street,18139,1,4368_7778195_6042005,4368_358 -4358_80717,228,4368_10778,Talbot Street,12850,1,4368_7778195_6042003,4368_358 -4358_80717,227,4368_10779,Talbot Street,5814,1,4368_7778195_6042021,4368_359 -4358_80757,227,4368_1078,Marino,2243,0,4368_7778195_5123010,4368_39 -4358_80717,229,4368_10780,Talbot Street,18113,1,4368_7778195_6042002,4368_358 -4358_80717,229,4368_10781,Talbot Street,18125,1,4368_7778195_6042004,4368_358 -4358_80717,228,4368_10782,Talbot Street,12751,1,4368_7778195_6042019,4368_358 -4358_80717,227,4368_10783,Talbot Street,5902,1,4368_7778195_6042018,4368_359 -4358_80717,229,4368_10784,Talbot Street,18131,1,4368_7778195_6042011,4368_358 -4358_80717,228,4368_10785,Talbot Street,12852,1,4368_7778195_6042003,4368_358 -4358_80717,227,4368_10786,Talbot Street,5816,1,4368_7778195_6042021,4368_359 -4358_80717,229,4368_10787,Talbot Street,18115,1,4368_7778195_6042002,4368_358 -4358_80717,228,4368_10788,Talbot Street,12753,1,4368_7778195_6042019,4368_358 -4358_80717,227,4368_10789,Talbot Street,5904,1,4368_7778195_6042018,4368_359 -4358_80757,228,4368_1079,Marino,9827,0,4368_7778195_5123006,4368_39 -4358_80717,228,4368_10790,Talbot Street,12854,1,4368_7778195_6042003,4368_358 -4358_80717,227,4368_10791,Talbot Street,5818,1,4368_7778195_6042021,4368_359 -4358_80717,229,4368_10792,Talbot Street,18116,1,4368_7778195_6042002,4368_358 -4358_80719,227,4368_10793,Enniskerry,2887,0,4368_7778195_1044001,4368_365 -4358_80719,227,4368_10794,O'Connell Street,7834,0,4368_7778195_8818126,4368_361 -4358_80719,228,4368_10795,Enniskerry,10638,0,4368_7778195_1044002,4368_362 -4358_80719,227,4368_10796,Enniskerry,2933,0,4368_7778195_1044004,4368_363 -4358_80719,227,4368_10797,O'Connell Street,7863,0,4368_7778195_8828104,4368_361 -4358_80719,227,4368_10798,Enniskerry,2856,0,4368_7778195_1044002,4368_362 -4358_80719,228,4368_10799,Enniskerry,10595,0,4368_7778195_1044001,4368_363 -4358_80760,228,4368_108,Shaw street,9322,0,4368_7778195_9001002,4368_1 -4358_80757,227,4368_1080,Marino,2292,0,4368_7778195_5123011,4368_39 -4358_80719,227,4368_10800,Enniskerry,3039,0,4368_7778195_1044003,4368_362 -4358_80719,228,4368_10801,Enniskerry,10632,0,4368_7778195_1044003,4368_363 -4358_80719,229,4368_10802,Enniskerry,16574,0,4368_7778195_1044002,4368_364 -4358_80719,229,4368_10803,Enniskerry,16517,0,4368_7778195_1044001,4368_362 -4358_80719,228,4368_10804,Enniskerry,10640,0,4368_7778195_1044002,4368_363 -4358_80719,227,4368_10805,Enniskerry,2889,0,4368_7778195_1044001,4368_364 -4358_80719,229,4368_10806,Enniskerry,16479,0,4368_7778195_1044003,4368_362 -4358_80719,227,4368_10807,Enniskerry,2935,0,4368_7778195_1044004,4368_363 -4358_80719,228,4368_10808,Enniskerry,10754,0,4368_7778195_1044004,4368_364 -4358_80719,227,4368_10809,Enniskerry,2858,0,4368_7778195_1044002,4368_362 -4358_80757,228,4368_1081,Marino,9910,0,4368_7778195_5123008,4368_39 -4358_80719,229,4368_10810,Enniskerry,16576,0,4368_7778195_1044002,4368_363 -4358_80719,228,4368_10811,Enniskerry,10597,0,4368_7778195_1044001,4368_364 -4358_80719,227,4368_10812,Enniskerry,3041,0,4368_7778195_1044003,4368_362 -4358_80719,229,4368_10813,Enniskerry,16519,0,4368_7778195_1044001,4368_363 -4358_80719,228,4368_10814,Enniskerry,10634,0,4368_7778195_1044003,4368_364 -4358_80719,228,4368_10815,Enniskerry,10642,0,4368_7778195_1044002,4368_362 -4358_80719,229,4368_10816,Enniskerry,16568,0,4368_7778195_1044005,4368_363 -4358_80719,227,4368_10817,Enniskerry,2891,0,4368_7778195_1044001,4368_364 -4358_80719,227,4368_10818,Enniskerry,2947,0,4368_7778195_1044005,4368_362 -4358_80719,229,4368_10819,Enniskerry,16481,0,4368_7778195_1044003,4368_363 -4358_80757,227,4368_1082,Marino,2300,0,4368_7778195_5123012,4368_39 -4358_80719,228,4368_10820,Enniskerry,10756,0,4368_7778195_1044004,4368_364 -4358_80719,227,4368_10821,Enniskerry,2860,0,4368_7778195_1044002,4368_362 -4358_80719,229,4368_10822,Enniskerry,16588,0,4368_7778195_1044004,4368_363 -4358_80719,228,4368_10823,Enniskerry,10599,0,4368_7778195_1044001,4368_364 -4358_80719,227,4368_10824,Enniskerry,3043,0,4368_7778195_1044003,4368_362 -4358_80719,229,4368_10825,Enniskerry,16521,0,4368_7778195_1044001,4368_363 -4358_80719,228,4368_10826,Enniskerry,10636,0,4368_7778195_1044003,4368_364 -4358_80719,228,4368_10827,Enniskerry,10644,0,4368_7778195_1044002,4368_362 -4358_80719,229,4368_10828,Enniskerry,16570,0,4368_7778195_1044005,4368_363 -4358_80719,227,4368_10829,Enniskerry,2893,0,4368_7778195_1044001,4368_362 -4358_80757,228,4368_1083,Marino,9839,0,4368_7778195_5123002,4368_39 -4358_80719,227,4368_10830,Enniskerry,2949,0,4368_7778195_1044005,4368_362 -4358_80719,229,4368_10831,Enniskerry,16483,0,4368_7778195_1044003,4368_363 -4358_80719,228,4368_10832,Enniskerry,10758,0,4368_7778195_1044004,4368_364 -4358_80719,229,4368_10833,Enniskerry,16523,0,4368_7778195_1044001,4368_362 -4358_80719,227,4368_10834,Enniskerry,2862,0,4368_7778195_1044002,4368_363 -4358_80719,228,4368_10835,Enniskerry,10601,0,4368_7778195_1044001,4368_364 -4358_80719,228,4368_10836,Enniskerry,10646,0,4368_7778195_1044002,4368_362 -4358_80719,229,4368_10837,Enniskerry,16572,0,4368_7778195_1044005,4368_363 -4358_80719,227,4368_10838,Enniskerry,2895,0,4368_7778195_1044001,4368_364 -4358_80719,227,4368_10839,Enniskerry,2951,0,4368_7778195_1044005,4368_362 -4358_80757,227,4368_1084,Marino,2235,0,4368_7778195_5123001,4368_39 -4358_80719,229,4368_10840,Enniskerry,16485,0,4368_7778195_1044003,4368_363 -4358_80719,228,4368_10841,Enniskerry,10760,0,4368_7778195_1044004,4368_364 -4358_80719,227,4368_10842,DCU,2855,1,4368_7778195_1044002,4368_366 -4358_80719,228,4368_10843,DCU,10594,1,4368_7778195_1044001,4368_366 -4358_80719,227,4368_10844,DCU,3038,1,4368_7778195_1044003,4368_366 -4358_80719,228,4368_10845,DCU,10631,1,4368_7778195_1044003,4368_366 -4358_80719,227,4368_10846,DCU,2888,1,4368_7778195_1044001,4368_366 -4358_80719,229,4368_10847,DCU,16516,1,4368_7778195_1044001,4368_366 -4358_80719,228,4368_10848,DCU,10639,1,4368_7778195_1044002,4368_367 -4358_80719,227,4368_10849,DCU,2934,1,4368_7778195_1044004,4368_366 -4358_80757,229,4368_1085,Marino,15967,0,4368_7778195_5123002,4368_39 -4358_80719,229,4368_10850,DCU,16478,1,4368_7778195_1044003,4368_366 -4358_80719,228,4368_10851,DCU,10596,1,4368_7778195_1044001,4368_366 -4358_80719,227,4368_10852,DCU,2857,1,4368_7778195_1044002,4368_366 -4358_80719,229,4368_10853,DCU,16575,1,4368_7778195_1044002,4368_366 -4358_80719,227,4368_10854,DCU,3040,1,4368_7778195_1044003,4368_366 -4358_80719,228,4368_10855,DCU,10633,1,4368_7778195_1044003,4368_367 -4358_80719,229,4368_10856,DCU,16518,1,4368_7778195_1044001,4368_366 -4358_80719,228,4368_10857,DCU,10641,1,4368_7778195_1044002,4368_366 -4358_80719,227,4368_10858,DCU,2890,1,4368_7778195_1044001,4368_367 -4358_80719,229,4368_10859,DCU,16480,1,4368_7778195_1044003,4368_366 -4358_80757,228,4368_1086,Marino,9873,0,4368_7778195_5123001,4368_39 -4358_80719,227,4368_10860,DCU,2946,1,4368_7778195_1044005,4368_366 -4358_80719,228,4368_10861,DCU,10755,1,4368_7778195_1044004,4368_367 -4358_80719,227,4368_10862,DCU,2859,1,4368_7778195_1044002,4368_366 -4358_80719,229,4368_10863,DCU,16587,1,4368_7778195_1044004,4368_367 -4358_80719,228,4368_10864,DCU,10598,1,4368_7778195_1044001,4368_368 -4358_80719,227,4368_10865,DCU,3042,1,4368_7778195_1044003,4368_366 -4358_80719,229,4368_10866,DCU,16520,1,4368_7778195_1044001,4368_367 -4358_80719,228,4368_10867,DCU,10635,1,4368_7778195_1044003,4368_368 -4358_80719,228,4368_10868,DCU,10643,1,4368_7778195_1044002,4368_366 -4358_80719,229,4368_10869,DCU,16569,1,4368_7778195_1044005,4368_367 -4358_80757,227,4368_1087,Marino,2247,0,4368_7778195_5123002,4368_39 -4358_80719,227,4368_10870,DCU,2892,1,4368_7778195_1044001,4368_368 -4358_80719,227,4368_10871,DCU,2948,1,4368_7778195_1044005,4368_366 -4358_80719,229,4368_10872,DCU,16482,1,4368_7778195_1044003,4368_367 -4358_80719,228,4368_10873,DCU,10757,1,4368_7778195_1044004,4368_368 -4358_80719,229,4368_10874,DCU,16589,1,4368_7778195_1044004,4368_366 -4358_80719,228,4368_10875,DCU,10600,1,4368_7778195_1044001,4368_367 -4358_80719,227,4368_10876,DCU,2861,1,4368_7778195_1044002,4368_366 -4358_80719,229,4368_10877,DCU,16522,1,4368_7778195_1044001,4368_366 -4358_80719,228,4368_10878,DCU,10637,1,4368_7778195_1044003,4368_367 -4358_80719,227,4368_10879,DCU,3044,1,4368_7778195_1044003,4368_366 -4358_80757,227,4368_1088,Marino,2213,0,4368_7778195_5123015,4368_39 -4358_80719,228,4368_10880,DCU,10645,1,4368_7778195_1044002,4368_366 -4358_80719,229,4368_10881,DCU,16571,1,4368_7778195_1044005,4368_367 -4358_80719,227,4368_10882,DCU,2894,1,4368_7778195_1044001,4368_368 -4358_80719,227,4368_10883,DCU,2950,1,4368_7778195_1044005,4368_366 -4358_80719,229,4368_10884,DCU,16484,1,4368_7778195_1044003,4368_367 -4358_80719,228,4368_10885,DCU,10759,1,4368_7778195_1044004,4368_368 -4358_80719,229,4368_10886,DCU,16524,1,4368_7778195_1044001,4368_366 -4358_80719,227,4368_10887,DCU,2863,1,4368_7778195_1044002,4368_367 -4358_80719,228,4368_10888,DCU,10602,1,4368_7778195_1044001,4368_368 -4358_80719,228,4368_10889,Dundrum Road,10647,1,4368_7778195_1044002,4368_369 -4358_80757,228,4368_1089,Marino,9783,0,4368_7778195_5123004,4368_39 -4358_80719,229,4368_10890,Dundrum Road,16573,1,4368_7778195_1044005,4368_370 -4358_80719,227,4368_10891,Dundrum Road,2896,1,4368_7778195_1044001,4368_371 -4358_80720,227,4368_10892,Glencullen,3089,0,4368_7778195_1821106,4368_372 -4358_80720,227,4368_10893,Glencullen,3091,0,4368_7778195_1821106,4368_372 -4358_80720,227,4368_10894,Glencullen,3093,0,4368_7778195_1821106,4368_372 -4358_80720,227,4368_10895,Glencullen,3164,0,4368_7778195_1821206,4368_372 -4358_80720,227,4368_10896,Glencullen,3166,0,4368_7778195_1821206,4368_372 -4358_80720,227,4368_10897,Dundrum Luas,3090,1,4368_7778195_1821106,4368_373 -4358_80720,227,4368_10898,Dundrum Luas,3092,1,4368_7778195_1821106,4368_373 -4358_80720,227,4368_10899,Dundrum Luas,3094,1,4368_7778195_1821106,4368_373 -4358_80760,227,4368_109,Shaw street,1596,0,4368_7778195_9001005,4368_1 -4358_80757,229,4368_1090,Marino,15893,0,4368_7778195_5123001,4368_39 -4358_80720,227,4368_10900,Dundrum Luas,3165,1,4368_7778195_1821206,4368_373 -4358_80720,227,4368_10901,Dundrum Luas,3167,1,4368_7778195_1821206,4368_373 -4358_80718,227,4368_10902,Dundrum Luas,2959,0,4368_7778195_1044006,4368_374 -4358_80718,227,4368_10903,O'Connell Street,3169,1,4368_7778195_1014003,4368_375 -4358_80718,227,4368_10904,O'Connell Street,3174,1,4368_7778195_1074005,4368_375 -4358_80721,227,4368_10905,UCD,550,0,4368_7778195_2832101,4368_380 -4358_80721,227,4368_10906,Dun Laoghaire,252,0,4368_7778195_2046004,4368_376 -4358_80721,227,4368_10907,Dun Laoghaire,337,0,4368_7778195_2046007,4368_376 -4358_80721,227,4368_10908,Dun Laoghaire,535,0,4368_7778195_2046009,4368_376 -4358_80721,227,4368_10909,Dun Laoghaire,213,0,4368_7778195_2046011,4368_376 -4358_80757,227,4368_1091,Marino,2257,0,4368_7778195_5123004,4368_41 -4358_80721,227,4368_10910,Dun Laoghaire,240,0,4368_7778195_2046006,4368_376 -4358_80721,227,4368_10911,Dun Laoghaire,452,0,4368_7778195_2046013,4368_376 -4358_80721,227,4368_10912,Dun Laoghaire,430,0,4368_7778195_2046015,4368_376 -4358_80721,228,4368_10913,Dun Laoghaire,8094,0,4368_7778195_2046001,4368_376 -4358_80721,227,4368_10914,Dun Laoghaire,472,0,4368_7778195_2046016,4368_376 -4358_80721,227,4368_10915,Dun Laoghaire,479,0,4368_7778195_2046018,4368_376 -4358_80721,228,4368_10916,Dun Laoghaire,8121,0,4368_7778195_2046003,4368_376 -4358_80721,227,4368_10917,Dun Laoghaire,221,0,4368_7778195_2046001,4368_376 -4358_80721,227,4368_10918,Dun Laoghaire,386,0,4368_7778195_2046020,4368_383 -4358_80721,227,4368_10919,Dun Laoghaire,510,0,4368_7778195_2046002,4368_376 -4358_80757,228,4368_1092,Marino,9901,0,4368_7778195_5123007,4368_39 -4358_80721,228,4368_10920,Dun Laoghaire,8155,0,4368_7778195_2046005,4368_376 -4358_80721,227,4368_10921,Dun Laoghaire,446,0,4368_7778195_2046003,4368_376 -4358_80721,227,4368_10922,Dun Laoghaire,525,0,4368_7778195_2046005,4368_376 -4358_80721,228,4368_10923,Dun Laoghaire,8175,0,4368_7778195_2046007,4368_376 -4358_80721,227,4368_10924,Dun Laoghaire,278,0,4368_7778195_2046008,4368_376 -4358_80721,227,4368_10925,Dun Laoghaire,322,0,4368_7778195_2046010,4368_376 -4358_80721,228,4368_10926,Dun Laoghaire,8075,0,4368_7778195_2046009,4368_377 -4358_80721,227,4368_10927,Dun Laoghaire,285,0,4368_7778195_2046022,4368_376 -4358_80721,228,4368_10928,Dun Laoghaire,8113,0,4368_7778195_2046002,4368_376 -4358_80721,227,4368_10929,Dun Laoghaire,202,0,4368_7778195_2046012,4368_376 -4358_80757,227,4368_1093,Marino,2225,0,4368_7778195_5123007,4368_39 -4358_80721,228,4368_10930,Dun Laoghaire,8103,0,4368_7778195_2046011,4368_376 -4358_80721,227,4368_10931,Dun Laoghaire,348,0,4368_7778195_2046024,4368_376 -4358_80721,228,4368_10932,Dun Laoghaire,8144,0,4368_7778195_2046004,4368_376 -4358_80721,229,4368_10933,Dun Laoghaire,14571,0,4368_7778195_2046001,4368_377 -4358_80721,227,4368_10934,Dun Laoghaire,420,0,4368_7778195_2046014,4368_376 -4358_80721,227,4368_10935,Dun Laoghaire,462,0,4368_7778195_2046017,4368_376 -4358_80721,228,4368_10936,Dun Laoghaire,8167,0,4368_7778195_2046006,4368_377 -4358_80721,227,4368_10937,Dun Laoghaire,438,0,4368_7778195_2046025,4368_376 -4358_80721,228,4368_10938,Dun Laoghaire,8203,0,4368_7778195_2046013,4368_376 -4358_80721,229,4368_10939,Dun Laoghaire,14595,0,4368_7778195_2046002,4368_377 -4358_80757,228,4368_1094,Marino,9756,0,4368_7778195_5123003,4368_39 -4358_80721,227,4368_10940,Dun Laoghaire,120,0,4368_7778195_2822108,4368_381 -4358_80721,227,4368_10941,Dun Laoghaire,6634,0,4368_7778195_2822109,4368_381 -4358_80721,227,4368_10942,Dun Laoghaire,491,0,4368_7778195_2046019,4368_376 -4358_80721,228,4368_10943,Dun Laoghaire,7975,0,4368_7778195_2046008,4368_376 -4358_80721,227,4368_10944,Dun Laoghaire,254,0,4368_7778195_2046004,4368_376 -4358_80721,229,4368_10945,Dun Laoghaire,14662,0,4368_7778195_2046004,4368_376 -4358_80721,228,4368_10946,Dun Laoghaire,8133,0,4368_7778195_2046014,4368_377 -4358_80721,227,4368_10947,Dun Laoghaire,339,0,4368_7778195_2046007,4368_376 -4358_80721,228,4368_10948,Dun Laoghaire,8187,0,4368_7778195_2046010,4368_376 -4358_80721,227,4368_10949,Dun Laoghaire,413,0,4368_7778195_2046023,4368_377 -4358_80757,227,4368_1095,Marino,2280,0,4368_7778195_5123009,4368_39 -4358_80721,227,4368_10950,Dun Laoghaire,537,0,4368_7778195_2046009,4368_376 -4358_80721,228,4368_10951,Dun Laoghaire,8096,0,4368_7778195_2046001,4368_376 -4358_80721,229,4368_10952,Dun Laoghaire,14680,0,4368_7778195_2046006,4368_377 -4358_80721,227,4368_10953,Dun Laoghaire,215,0,4368_7778195_2046011,4368_376 -4358_80721,228,4368_10954,Dun Laoghaire,8123,0,4368_7778195_2046003,4368_376 -4358_80721,227,4368_10955,Dun Laoghaire,500,0,4368_7778195_2046021,4368_376 -4358_80721,229,4368_10956,Dun Laoghaire,14654,0,4368_7778195_2046003,4368_376 -4358_80721,228,4368_10957,Dun Laoghaire,8198,0,4368_7778195_2046012,4368_376 -4358_80721,227,4368_10958,Dun Laoghaire,242,0,4368_7778195_2046006,4368_376 -4358_80721,227,4368_10959,Dun Laoghaire,454,0,4368_7778195_2046013,4368_376 -4358_80757,229,4368_1096,Marino,16017,0,4368_7778195_5123003,4368_39 -4358_80721,228,4368_10960,Dun Laoghaire,8157,0,4368_7778195_2046005,4368_377 -4358_80721,229,4368_10961,Dun Laoghaire,14670,0,4368_7778195_2046005,4368_379 -4358_80721,227,4368_10962,Dun Laoghaire,432,0,4368_7778195_2046015,4368_376 -4358_80721,228,4368_10963,Dun Laoghaire,8177,0,4368_7778195_2046007,4368_376 -4358_80721,229,4368_10964,Dun Laoghaire,14702,0,4368_7778195_2046009,4368_376 -4358_80721,227,4368_10965,Dun Laoghaire,474,0,4368_7778195_2046016,4368_376 -4358_80721,228,4368_10966,Dun Laoghaire,8214,0,4368_7778195_2046015,4368_376 -4358_80721,227,4368_10967,Dun Laoghaire,388,0,4368_7778195_2046020,4368_376 -4358_80721,229,4368_10968,Dun Laoghaire,14685,0,4368_7778195_2046007,4368_376 -4358_80721,228,4368_10969,Dun Laoghaire,8077,0,4368_7778195_2046009,4368_377 -4358_80757,228,4368_1097,Marino,9893,0,4368_7778195_5123005,4368_39 -4358_80721,227,4368_10970,Dun Laoghaire,481,0,4368_7778195_2046018,4368_376 -4358_80721,227,4368_10971,Dun Laoghaire,223,0,4368_7778195_2046001,4368_376 -4358_80721,228,4368_10972,Dun Laoghaire,8115,0,4368_7778195_2046002,4368_377 -4358_80721,229,4368_10973,Dun Laoghaire,14696,0,4368_7778195_2046008,4368_376 -4358_80721,227,4368_10974,Dun Laoghaire,366,0,4368_7778195_2046027,4368_376 -4358_80721,228,4368_10975,Dun Laoghaire,8230,0,4368_7778195_2046017,4368_376 -4358_80721,227,4368_10976,Dun Laoghaire,512,0,4368_7778195_2046002,4368_376 -4358_80721,229,4368_10977,Dun Laoghaire,14710,0,4368_7778195_2046010,4368_376 -4358_80721,228,4368_10978,Dun Laoghaire,8105,0,4368_7778195_2046011,4368_377 -4358_80721,227,4368_10979,Dun Laoghaire,448,0,4368_7778195_2046003,4368_376 -4358_80757,227,4368_1098,Marino,2117,0,4368_7778195_5123003,4368_39 -4358_80721,228,4368_10980,Dun Laoghaire,8146,0,4368_7778195_2046004,4368_376 -4358_80721,227,4368_10981,Dun Laoghaire,527,0,4368_7778195_2046005,4368_376 -4358_80721,229,4368_10982,Dun Laoghaire,14573,0,4368_7778195_2046001,4368_376 -4358_80721,227,4368_10983,Dun Laoghaire,280,0,4368_7778195_2046008,4368_376 -4358_80721,228,4368_10984,Dun Laoghaire,8169,0,4368_7778195_2046006,4368_377 -4358_80721,227,4368_10985,Dun Laoghaire,287,0,4368_7778195_2046022,4368_376 -4358_80721,228,4368_10986,Dun Laoghaire,8221,0,4368_7778195_2046016,4368_376 -4358_80721,229,4368_10987,Dun Laoghaire,14627,0,4368_7778195_2046011,4368_377 -4358_80721,227,4368_10988,Dun Laoghaire,350,0,4368_7778195_2046024,4368_376 -4358_80721,228,4368_10989,Dun Laoghaire,8205,0,4368_7778195_2046013,4368_376 -4358_80757,227,4368_1099,Marino,2196,0,4368_7778195_5123005,4368_39 -4358_80721,227,4368_10990,Dun Laoghaire,422,0,4368_7778195_2046014,4368_376 -4358_80721,229,4368_10991,Dun Laoghaire,14597,0,4368_7778195_2046002,4368_376 -4358_80721,228,4368_10992,Dun Laoghaire,7977,0,4368_7778195_2046008,4368_376 -4358_80721,227,4368_10993,Dun Laoghaire,464,0,4368_7778195_2046017,4368_376 -4358_80721,229,4368_10994,Dun Laoghaire,14664,0,4368_7778195_2046004,4368_376 -4358_80721,228,4368_10995,Dun Laoghaire,8135,0,4368_7778195_2046014,4368_377 -4358_80721,227,4368_10996,Dun Laoghaire,440,0,4368_7778195_2046025,4368_379 -4358_80721,227,4368_10997,Dun Laoghaire,493,0,4368_7778195_2046019,4368_376 -4358_80721,229,4368_10998,Dun Laoghaire,14682,0,4368_7778195_2046006,4368_376 -4358_80721,228,4368_10999,Dun Laoghaire,8189,0,4368_7778195_2046010,4368_377 -4358_80760,227,4368_11,Shaw street,1697,0,4368_7778195_9001008,4368_1 -4358_80760,229,4368_110,Shaw street,15732,0,4368_7778195_9001002,4368_2 -4358_80757,228,4368_1100,Marino,9829,0,4368_7778195_5123006,4368_39 -4358_80721,227,4368_11000,Dun Laoghaire,256,0,4368_7778195_2046004,4368_376 -4358_80721,228,4368_11001,Dun Laoghaire,8098,0,4368_7778195_2046001,4368_376 -4358_80721,229,4368_11002,Dun Laoghaire,14656,0,4368_7778195_2046003,4368_377 -4358_80721,227,4368_11003,Dun Laoghaire,341,0,4368_7778195_2046007,4368_376 -4358_80721,229,4368_11004,Dun Laoghaire,14728,0,4368_7778195_2046013,4368_376 -4358_80721,228,4368_11005,Dun Laoghaire,8238,0,4368_7778195_2046019,4368_377 -4358_80721,227,4368_11006,Dun Laoghaire,415,0,4368_7778195_2046023,4368_376 -4358_80721,228,4368_11007,Dun Laoghaire,8125,0,4368_7778195_2046003,4368_376 -4358_80721,227,4368_11008,Dun Laoghaire,539,0,4368_7778195_2046009,4368_377 -4358_80721,229,4368_11009,Dun Laoghaire,14672,0,4368_7778195_2046005,4368_379 -4358_80757,227,4368_1101,Marino,2173,0,4368_7778195_5123006,4368_39 -4358_80721,227,4368_11010,Dun Laoghaire,543,0,4368_7778195_2046028,4368_376 -4358_80721,228,4368_11011,Dun Laoghaire,7993,0,4368_7778195_2046018,4368_376 -4358_80721,229,4368_11012,Dun Laoghaire,14738,0,4368_7778195_2046015,4368_377 -4358_80721,227,4368_11013,Dun Laoghaire,502,0,4368_7778195_2046021,4368_376 -4358_80721,228,4368_11014,Dun Laoghaire,8200,0,4368_7778195_2046012,4368_376 -4358_80721,229,4368_11015,Dun Laoghaire,14704,0,4368_7778195_2046009,4368_377 -4358_80721,227,4368_11016,Dun Laoghaire,244,0,4368_7778195_2046006,4368_376 -4358_80721,229,4368_11017,Dun Laoghaire,14746,0,4368_7778195_2046016,4368_376 -4358_80721,228,4368_11018,Dun Laoghaire,8159,0,4368_7778195_2046005,4368_377 -4358_80721,227,4368_11019,Dun Laoghaire,456,0,4368_7778195_2046013,4368_376 -4358_80757,229,4368_1102,Marino,15959,0,4368_7778195_5123004,4368_41 -4358_80721,227,4368_11020,Dun Laoghaire,434,0,4368_7778195_2046015,4368_376 -4358_80721,228,4368_11021,Dun Laoghaire,8179,0,4368_7778195_2046007,4368_377 -4358_80721,229,4368_11022,Dun Laoghaire,14721,0,4368_7778195_2046012,4368_379 -4358_80721,227,4368_11023,Dun Laoghaire,476,0,4368_7778195_2046016,4368_376 -4358_80721,229,4368_11024,Dun Laoghaire,14687,0,4368_7778195_2046007,4368_376 -4358_80721,228,4368_11025,Dun Laoghaire,8216,0,4368_7778195_2046015,4368_377 -4358_80721,227,4368_11026,Dun Laoghaire,390,0,4368_7778195_2046020,4368_376 -4358_80721,229,4368_11027,Dun Laoghaire,14698,0,4368_7778195_2046008,4368_376 -4358_80721,228,4368_11028,Dun Laoghaire,8079,0,4368_7778195_2046009,4368_377 -4358_80721,227,4368_11029,Dun Laoghaire,483,0,4368_7778195_2046018,4368_376 -4358_80757,228,4368_1103,Marino,9763,0,4368_7778195_5123010,4368_39 -4358_80721,229,4368_11030,Dun Laoghaire,14712,0,4368_7778195_2046010,4368_376 -4358_80721,228,4368_11031,Dun Laoghaire,8117,0,4368_7778195_2046002,4368_377 -4358_80721,227,4368_11032,Dun Laoghaire,225,0,4368_7778195_2046001,4368_376 -4358_80721,229,4368_11033,Dun Laoghaire,14734,0,4368_7778195_2046014,4368_376 -4358_80721,228,4368_11034,Dun Laoghaire,8232,0,4368_7778195_2046017,4368_377 -4358_80721,227,4368_11035,Dun Laoghaire,368,0,4368_7778195_2046027,4368_379 -4358_80721,227,4368_11036,Dun Laoghaire,514,0,4368_7778195_2046002,4368_376 -4358_80721,229,4368_11037,Dun Laoghaire,14575,0,4368_7778195_2046001,4368_376 -4358_80721,228,4368_11038,Dun Laoghaire,8107,0,4368_7778195_2046011,4368_377 -4358_80721,227,4368_11039,Dun Laoghaire,450,0,4368_7778195_2046003,4368_376 -4358_80757,227,4368_1104,Marino,2316,0,4368_7778195_5123014,4368_39 -4358_80721,228,4368_11040,Dun Laoghaire,8148,0,4368_7778195_2046004,4368_376 -4358_80721,229,4368_11041,Dun Laoghaire,14629,0,4368_7778195_2046011,4368_377 -4358_80721,227,4368_11042,Dun Laoghaire,529,0,4368_7778195_2046005,4368_376 -4358_80721,229,4368_11043,Dun Laoghaire,14758,0,4368_7778195_2046019,4368_376 -4358_80721,228,4368_11044,Dun Laoghaire,8171,0,4368_7778195_2046006,4368_377 -4358_80721,227,4368_11045,Dun Laoghaire,282,0,4368_7778195_2046008,4368_376 -4358_80721,228,4368_11046,Dun Laoghaire,8223,0,4368_7778195_2046016,4368_376 -4358_80721,227,4368_11047,Dun Laoghaire,289,0,4368_7778195_2046022,4368_377 -4358_80721,229,4368_11048,Dun Laoghaire,14592,0,4368_7778195_2046017,4368_379 -4358_80721,227,4368_11049,Dun Laoghaire,352,0,4368_7778195_2046024,4368_376 -4358_80757,228,4368_1105,Marino,9913,0,4368_7778195_5123009,4368_39 -4358_80721,228,4368_11050,Dun Laoghaire,8207,0,4368_7778195_2046013,4368_376 -4358_80721,229,4368_11051,Dun Laoghaire,14599,0,4368_7778195_2046002,4368_377 -4358_80721,227,4368_11052,Dun Laoghaire,424,0,4368_7778195_2046014,4368_376 -4358_80721,229,4368_11053,Dun Laoghaire,14666,0,4368_7778195_2046004,4368_376 -4358_80721,228,4368_11054,Dun Laoghaire,7979,0,4368_7778195_2046008,4368_377 -4358_80721,227,4368_11055,Dun Laoghaire,466,0,4368_7778195_2046017,4368_376 -4358_80721,228,4368_11056,Dun Laoghaire,8137,0,4368_7778195_2046014,4368_376 -4358_80721,229,4368_11057,Dun Laoghaire,14751,0,4368_7778195_2046018,4368_377 -4358_80721,227,4368_11058,Dun Laoghaire,263,0,4368_7778195_2046029,4368_376 -4358_80721,227,4368_11059,Dun Laoghaire,442,0,4368_7778195_2046025,4368_376 -4358_80757,229,4368_1106,Marino,15996,0,4368_7778195_5123007,4368_41 -4358_80721,229,4368_11060,Dun Laoghaire,14658,0,4368_7778195_2046003,4368_377 -4358_80721,228,4368_11061,Dun Laoghaire,8191,0,4368_7778195_2046010,4368_379 -4358_80721,227,4368_11062,Dun Laoghaire,495,0,4368_7778195_2046019,4368_376 -4358_80721,228,4368_11063,Dun Laoghaire,8100,0,4368_7778195_2046001,4368_376 -4358_80721,229,4368_11064,Dun Laoghaire,14730,0,4368_7778195_2046013,4368_377 -4358_80721,227,4368_11065,Dun Laoghaire,517,0,4368_7778195_2046030,4368_376 -4358_80721,228,4368_11066,Dun Laoghaire,8240,0,4368_7778195_2046019,4368_376 -4358_80721,229,4368_11067,Dun Laoghaire,14674,0,4368_7778195_2046005,4368_377 -4358_80721,227,4368_11068,Dun Laoghaire,258,0,4368_7778195_2046004,4368_376 -4358_80721,228,4368_11069,Dun Laoghaire,8127,0,4368_7778195_2046003,4368_376 -4358_80757,227,4368_1107,Marino,2090,0,4368_7778195_5123016,4368_39 -4358_80721,229,4368_11070,Dun Laoghaire,14740,0,4368_7778195_2046015,4368_377 -4358_80721,227,4368_11071,Dun Laoghaire,343,0,4368_7778195_2046007,4368_376 -4358_80721,227,4368_11072,Dun Laoghaire,331,0,4368_7778195_2046031,4368_376 -4358_80721,229,4368_11073,Dun Laoghaire,14706,0,4368_7778195_2046009,4368_377 -4358_80721,228,4368_11074,Dun Laoghaire,7995,0,4368_7778195_2046018,4368_379 -4358_80721,227,4368_11075,Dun Laoghaire,417,0,4368_7778195_2046023,4368_376 -4358_80721,229,4368_11076,Dun Laoghaire,14748,0,4368_7778195_2046016,4368_376 -4358_80721,228,4368_11077,Dun Laoghaire,8202,0,4368_7778195_2046012,4368_377 -4358_80721,227,4368_11078,Dun Laoghaire,541,0,4368_7778195_2046009,4368_376 -4358_80721,228,4368_11079,Dun Laoghaire,8247,0,4368_7778195_2046020,4368_376 -4358_80757,228,4368_1108,Marino,9841,0,4368_7778195_5123002,4368_39 -4358_80721,229,4368_11080,Dun Laoghaire,14723,0,4368_7778195_2046012,4368_377 -4358_80721,227,4368_11081,Dun Laoghaire,545,0,4368_7778195_2046028,4368_376 -4358_80721,229,4368_11082,Dun Laoghaire,14689,0,4368_7778195_2046007,4368_376 -4358_80721,228,4368_11083,Dun Laoghaire,8161,0,4368_7778195_2046005,4368_377 -4358_80721,227,4368_11084,Dun Laoghaire,504,0,4368_7778195_2046021,4368_376 -4358_80721,229,4368_11085,Dun Laoghaire,14700,0,4368_7778195_2046008,4368_376 -4358_80721,228,4368_11086,Dun Laoghaire,8181,0,4368_7778195_2046007,4368_377 -4358_80721,227,4368_11087,Dun Laoghaire,246,0,4368_7778195_2046006,4368_379 -4358_80721,227,4368_11088,Dun Laoghaire,6428,0,4368_7778195_2822204,4368_376 -4358_80721,227,4368_11089,Dun Laoghaire,458,0,4368_7778195_2046013,4368_376 -4358_80757,227,4368_1109,Marino,2271,0,4368_7778195_5123008,4368_39 -4358_80721,229,4368_11090,Dun Laoghaire,14714,0,4368_7778195_2046010,4368_376 -4358_80721,228,4368_11091,Dun Laoghaire,8218,0,4368_7778195_2046015,4368_377 -4358_80721,227,4368_11092,Dun Laoghaire,469,0,4368_7778195_2046032,4368_376 -4358_80721,229,4368_11093,Dun Laoghaire,14736,0,4368_7778195_2046014,4368_376 -4358_80721,228,4368_11094,Dun Laoghaire,8081,0,4368_7778195_2046009,4368_377 -4358_80721,227,4368_11095,Dun Laoghaire,436,0,4368_7778195_2046015,4368_376 -4358_80721,229,4368_11096,Dun Laoghaire,14577,0,4368_7778195_2046001,4368_376 -4358_80721,228,4368_11097,Dun Laoghaire,8119,0,4368_7778195_2046002,4368_377 -4358_80721,227,4368_11098,Dun Laoghaire,478,0,4368_7778195_2046016,4368_376 -4358_80721,229,4368_11099,Dun Laoghaire,14631,0,4368_7778195_2046011,4368_376 -4358_80760,228,4368_111,Shaw street,9384,0,4368_7778195_9001001,4368_1 -4358_80757,229,4368_1110,Marino,15980,0,4368_7778195_5123005,4368_39 -4358_80721,228,4368_11100,Dun Laoghaire,8234,0,4368_7778195_2046017,4368_377 -4358_80721,227,4368_11101,Dun Laoghaire,392,0,4368_7778195_2046020,4368_379 -4358_80721,227,4368_11102,Dun Laoghaire,485,0,4368_7778195_2046018,4368_376 -4358_80721,229,4368_11103,Dun Laoghaire,14760,0,4368_7778195_2046019,4368_376 -4358_80721,228,4368_11104,Dun Laoghaire,8109,0,4368_7778195_2046011,4368_377 -4358_80721,227,4368_11105,Dun Laoghaire,227,0,4368_7778195_2046001,4368_376 -4358_80721,229,4368_11106,Dun Laoghaire,14594,0,4368_7778195_2046017,4368_376 -4358_80721,228,4368_11107,Dun Laoghaire,8150,0,4368_7778195_2046004,4368_377 -4358_80721,227,4368_11108,Dun Laoghaire,370,0,4368_7778195_2046027,4368_376 -4358_80721,229,4368_11109,Dun Laoghaire,14601,0,4368_7778195_2046002,4368_376 -4358_80757,227,4368_1111,Marino,2294,0,4368_7778195_5123011,4368_39 -4358_80721,228,4368_11110,Dun Laoghaire,8173,0,4368_7778195_2046006,4368_377 -4358_80721,227,4368_11111,Dun Laoghaire,516,0,4368_7778195_2046002,4368_376 -4358_80721,229,4368_11112,Dun Laoghaire,14668,0,4368_7778195_2046004,4368_376 -4358_80721,228,4368_11113,Dun Laoghaire,8225,0,4368_7778195_2046016,4368_377 -4358_80721,227,4368_11114,Dun Laoghaire,531,0,4368_7778195_2046005,4368_379 -4358_80721,227,4368_11115,Dun Laoghaire,284,0,4368_7778195_2046008,4368_376 -4358_80721,228,4368_11116,Dun Laoghaire,8209,0,4368_7778195_2046013,4368_376 -4358_80721,229,4368_11117,Dun Laoghaire,14753,0,4368_7778195_2046018,4368_377 -4358_80721,227,4368_11118,Dun Laoghaire,291,0,4368_7778195_2046022,4368_376 -4358_80721,229,4368_11119,Dun Laoghaire,14660,0,4368_7778195_2046003,4368_376 -4358_80757,228,4368_1112,Marino,9875,0,4368_7778195_5123001,4368_39 -4358_80721,228,4368_11120,Dun Laoghaire,7981,0,4368_7778195_2046008,4368_377 -4358_80721,227,4368_11121,Dun Laoghaire,354,0,4368_7778195_2046024,4368_376 -4358_80721,228,4368_11122,Dun Laoghaire,8139,0,4368_7778195_2046014,4368_376 -4358_80721,229,4368_11123,Dun Laoghaire,14732,0,4368_7778195_2046013,4368_377 -4358_80721,227,4368_11124,Dun Laoghaire,426,0,4368_7778195_2046014,4368_376 -4358_80721,228,4368_11125,Dun Laoghaire,8193,0,4368_7778195_2046010,4368_376 -4358_80721,227,4368_11126,Dun Laoghaire,468,0,4368_7778195_2046017,4368_377 -4358_80721,229,4368_11127,Dun Laoghaire,14676,0,4368_7778195_2046005,4368_379 -4358_80721,227,4368_11128,Dun Laoghaire,265,0,4368_7778195_2046029,4368_376 -4358_80721,228,4368_11129,Dun Laoghaire,8102,0,4368_7778195_2046001,4368_376 -4358_80757,229,4368_1113,Marino,15969,0,4368_7778195_5123002,4368_39 -4358_80721,229,4368_11130,Dun Laoghaire,14742,0,4368_7778195_2046015,4368_377 -4358_80721,227,4368_11131,Dun Laoghaire,444,0,4368_7778195_2046025,4368_376 -4358_80721,229,4368_11132,Dun Laoghaire,14708,0,4368_7778195_2046009,4368_376 -4358_80721,228,4368_11133,Dun Laoghaire,8242,0,4368_7778195_2046019,4368_377 -4358_80721,227,4368_11134,Dun Laoghaire,497,0,4368_7778195_2046019,4368_376 -4358_80721,227,4368_11135,Dun Laoghaire,519,0,4368_7778195_2046030,4368_376 -4358_80721,228,4368_11136,Dun Laoghaire,8129,0,4368_7778195_2046003,4368_377 -4358_80721,229,4368_11137,Dun Laoghaire,14725,0,4368_7778195_2046012,4368_376 -4358_80721,227,4368_11138,Dun Laoghaire,231,0,4368_7778195_2046033,4368_376 -4358_80721,228,4368_11139,Dun Laoghaire,8249,0,4368_7778195_2046020,4368_377 -4358_80757,227,4368_1114,Marino,2302,0,4368_7778195_5123012,4368_41 -4358_80721,227,4368_11140,Dun Laoghaire,260,0,4368_7778195_2046004,4368_376 -4358_80721,229,4368_11141,Dun Laoghaire,14691,0,4368_7778195_2046007,4368_377 -4358_80721,228,4368_11142,Dun Laoghaire,8163,0,4368_7778195_2046005,4368_379 -4358_80721,227,4368_11143,Dun Laoghaire,333,0,4368_7778195_2046031,4368_376 -4358_80721,229,4368_11144,Dun Laoghaire,14716,0,4368_7778195_2046010,4368_376 -4358_80721,228,4368_11145,Dun Laoghaire,8183,0,4368_7778195_2046007,4368_377 -4358_80721,227,4368_11146,Dun Laoghaire,547,0,4368_7778195_2046028,4368_376 -4358_80721,227,4368_11147,Dun Laoghaire,506,0,4368_7778195_2046021,4368_376 -4358_80721,229,4368_11148,Dun Laoghaire,14579,0,4368_7778195_2046001,4368_377 -4358_80721,228,4368_11149,Dun Laoghaire,8083,0,4368_7778195_2046009,4368_379 -4358_80757,228,4368_1115,Marino,9785,0,4368_7778195_5123004,4368_39 -4358_80721,227,4368_11150,Dun Laoghaire,460,0,4368_7778195_2046013,4368_376 -4358_80721,229,4368_11151,Dun Laoghaire,14633,0,4368_7778195_2046011,4368_376 -4358_80721,228,4368_11152,Dun Laoghaire,8236,0,4368_7778195_2046017,4368_377 -4358_80721,227,4368_11153,Dun Laoghaire,471,0,4368_7778195_2046032,4368_376 -4358_80721,229,4368_11154,Dun Laoghaire,14762,0,4368_7778195_2046019,4368_376 -4358_80721,228,4368_11155,Dun Laoghaire,8111,0,4368_7778195_2046011,4368_377 -4358_80721,227,4368_11156,Dun Laoghaire,394,0,4368_7778195_2046020,4368_379 -4358_80721,227,4368_11157,Dun Laoghaire,487,0,4368_7778195_2046018,4368_376 -4358_80721,228,4368_11158,Dun Laoghaire,8152,0,4368_7778195_2046004,4368_376 -4358_80721,229,4368_11159,Dun Laoghaire,14603,0,4368_7778195_2046002,4368_377 -4358_80757,227,4368_1116,Marino,2237,0,4368_7778195_5123001,4368_39 -4358_80721,227,4368_11160,Dun Laoghaire,229,0,4368_7778195_2046001,4368_376 -4358_80721,228,4368_11161,Dun Laoghaire,8227,0,4368_7778195_2046016,4368_376 -4358_80721,229,4368_11162,Dun Laoghaire,14755,0,4368_7778195_2046018,4368_377 -4358_80721,227,4368_11163,Dun Laoghaire,372,0,4368_7778195_2046027,4368_379 -4358_80721,228,4368_11164,Dun Laoghaire,8211,0,4368_7778195_2046013,4368_376 -4358_80721,227,4368_11165,Dun Laoghaire,533,0,4368_7778195_2046005,4368_377 -4358_80721,229,4368_11166,Dun Laoghaire,14678,0,4368_7778195_2046005,4368_379 -4358_80721,228,4368_11167,Dun Laoghaire,8141,0,4368_7778195_2046014,4368_376 -4358_80721,229,4368_11168,Dun Laoghaire,14744,0,4368_7778195_2046015,4368_377 -4358_80721,227,4368_11169,Dun Laoghaire,428,0,4368_7778195_2046014,4368_379 -4358_80757,228,4368_1117,Marino,9903,0,4368_7778195_5123007,4368_39 -4358_80721,227,4368_11170,Dun Laoghaire,267,0,4368_7778195_2046029,4368_376 -4358_80721,228,4368_11171,Dun Laoghaire,8195,0,4368_7778195_2046010,4368_377 -4358_80721,229,4368_11172,Dun Laoghaire,14727,0,4368_7778195_2046012,4368_379 -4358_80721,229,4368_11173,Dun Laoghaire,14693,0,4368_7778195_2046007,4368_376 -4358_80721,227,4368_11174,Dun Laoghaire,521,0,4368_7778195_2046030,4368_377 -4358_80721,228,4368_11175,Dun Laoghaire,8244,0,4368_7778195_2046019,4368_379 -4358_80721,227,4368_11176,Dun Laoghaire,335,0,4368_7778195_2046031,4368_376 -4358_80721,229,4368_11177,Dun Laoghaire,14718,0,4368_7778195_2046010,4368_377 -4358_80721,228,4368_11178,Dun Laoghaire,8131,0,4368_7778195_2046003,4368_379 -4358_80721,227,4368_11179,Dun Laoghaire,549,0,4368_7778195_2046028,4368_376 -4358_80757,229,4368_1118,Marino,15989,0,4368_7778195_5123006,4368_41 -4358_80721,229,4368_11180,Dun Laoghaire,14581,0,4368_7778195_2046001,4368_377 -4358_80721,228,4368_11181,Dun Laoghaire,8165,0,4368_7778195_2046005,4368_379 -4358_80721,227,4368_11182,Dun Laoghaire,508,0,4368_7778195_2046021,4368_376 -4358_80721,229,4368_11183,Dun Laoghaire,14635,0,4368_7778195_2046011,4368_377 -4358_80721,228,4368_11184,Dun Laoghaire,8185,0,4368_7778195_2046007,4368_379 -4358_80721,229,4368_11185,Dun Laoghaire,14764,0,4368_7778195_2046019,4368_376 -4358_80721,228,4368_11186,Dun Laoghaire,8085,0,4368_7778195_2046009,4368_377 -4358_80721,227,4368_11187,Dun Laoghaire,396,0,4368_7778195_2046020,4368_379 -4358_80721,228,4368_11188,Dun Laoghaire,8154,0,4368_7778195_2046004,4368_376 -4358_80721,227,4368_11189,Dun Laoghaire,489,0,4368_7778195_2046018,4368_377 -4358_80757,227,4368_1119,Marino,2249,0,4368_7778195_5123002,4368_39 -4358_80721,229,4368_11190,Dun Laoghaire,14605,0,4368_7778195_2046002,4368_379 -4358_80721,228,4368_11191,D'Olier St,8229,0,4368_7778195_2046016,4368_378 -4358_80721,229,4368_11192,D'Olier St,14757,0,4368_7778195_2046018,4368_382 -4358_80721,227,4368_11193,D'Olier St,374,0,4368_7778195_2046027,4368_384 -4358_80721,227,4368_11194,Phoenix Pk,220,1,4368_7778195_2046001,4368_385 -4358_80721,227,4368_11195,Phoenix Pk,239,1,4368_7778195_2046006,4368_390 -4358_80721,227,4368_11196,Phoenix Pk,509,1,4368_7778195_2046002,4368_385 -4358_80721,227,4368_11197,Phoenix Pk,445,1,4368_7778195_2046003,4368_385 -4358_80721,227,4368_11198,Phoenix Pk,524,1,4368_7778195_2046005,4368_385 -4358_80721,227,4368_11199,Phoenix Pk,277,1,4368_7778195_2046008,4368_385 -4358_80760,227,4368_112,Shaw street,1731,0,4368_7778195_9001013,4368_1 -4358_80757,228,4368_1120,Marino,9758,0,4368_7778195_5123003,4368_39 -4358_80721,227,4368_11200,Phoenix Pk,321,1,4368_7778195_2046010,4368_385 -4358_80721,227,4368_11201,Phoenix Pk,201,1,4368_7778195_2046012,4368_385 -4358_80721,228,4368_11202,Phoenix Pk,8112,1,4368_7778195_2046002,4368_385 -4358_80721,227,4368_11203,Phoenix Pk,419,1,4368_7778195_2046014,4368_387 -4358_80721,227,4368_11204,Phoenix Pk,461,1,4368_7778195_2046017,4368_385 -4358_80721,228,4368_11205,Phoenix Pk,8143,1,4368_7778195_2046004,4368_385 -4358_80721,227,4368_11206,Phoenix Pk,490,1,4368_7778195_2046019,4368_385 -4358_80721,227,4368_11207,Phoenix Pk,253,1,4368_7778195_2046004,4368_385 -4358_80721,228,4368_11208,Phoenix Pk,8166,1,4368_7778195_2046006,4368_385 -4358_80721,227,4368_11209,Phoenix Pk,338,1,4368_7778195_2046007,4368_385 -4358_80757,227,4368_1121,Marino,2215,0,4368_7778195_5123015,4368_39 -4358_80721,227,4368_11210,Phoenix Pk,536,1,4368_7778195_2046009,4368_385 -4358_80721,228,4368_11211,Phoenix Pk,7974,1,4368_7778195_2046008,4368_385 -4358_80721,227,4368_11212,Phoenix Pk,214,1,4368_7778195_2046011,4368_385 -4358_80721,227,4368_11213,Phoenix Pk,499,1,4368_7778195_2046021,4368_385 -4358_80721,228,4368_11214,Phoenix Pk,8186,1,4368_7778195_2046010,4368_385 -4358_80721,227,4368_11215,Phoenix Park,412,1,4368_7778195_2046023,4368_391 -4358_80721,227,4368_11216,Phoenix Pk,241,1,4368_7778195_2046006,4368_385 -4358_80721,228,4368_11217,Phoenix Pk,8095,1,4368_7778195_2046001,4368_385 -4358_80721,227,4368_11218,Phoenix Pk,453,1,4368_7778195_2046013,4368_385 -4358_80721,227,4368_11219,Phoenix Pk,431,1,4368_7778195_2046015,4368_385 -4358_80757,229,4368_1122,Marino,15895,0,4368_7778195_5123001,4368_39 -4358_80721,228,4368_11220,Phoenix Pk,8122,1,4368_7778195_2046003,4368_387 -4358_80721,227,4368_11221,Phoenix Pk,473,1,4368_7778195_2046016,4368_385 -4358_80721,229,4368_11222,Phoenix Pk,14653,1,4368_7778195_2046003,4368_385 -4358_80721,228,4368_11223,Phoenix Pk,8197,1,4368_7778195_2046012,4368_387 -4358_80721,227,4368_11224,Phoenix Pk,387,1,4368_7778195_2046020,4368_385 -4358_80721,228,4368_11225,Phoenix Pk,8156,1,4368_7778195_2046005,4368_385 -4358_80721,227,4368_11226,Phoenix Pk,480,1,4368_7778195_2046018,4368_385 -4358_80721,228,4368_11227,Phoenix Pk,8176,1,4368_7778195_2046007,4368_385 -4358_80721,229,4368_11228,Phoenix Pk,14669,1,4368_7778195_2046005,4368_387 -4358_80721,227,4368_11229,Phoenix Pk,523,1,4368_7778195_2046026,4368_385 -4358_80757,227,4368_1123,Marino,2259,0,4368_7778195_5123004,4368_39 -4358_80721,227,4368_11230,Phoenix Pk,222,1,4368_7778195_2046001,4368_385 -4358_80721,228,4368_11231,Phoenix Pk,8213,1,4368_7778195_2046015,4368_387 -4358_80721,227,4368_11232,Phoenix Pk,365,1,4368_7778195_2046027,4368_385 -4358_80721,229,4368_11233,Phoenix Pk,14684,1,4368_7778195_2046007,4368_385 -4358_80721,228,4368_11234,Phoenix Pk,8076,1,4368_7778195_2046009,4368_387 -4358_80721,227,4368_11235,Phoenix Pk,511,1,4368_7778195_2046002,4368_385 -4358_80721,228,4368_11236,Phoenix Pk,8114,1,4368_7778195_2046002,4368_385 -4358_80721,227,4368_11237,Phoenix Pk,447,1,4368_7778195_2046003,4368_385 -4358_80721,229,4368_11238,Phoenix Pk,14695,1,4368_7778195_2046008,4368_385 -4358_80721,228,4368_11239,Phoenix Pk,8104,1,4368_7778195_2046011,4368_387 -4358_80757,228,4368_1124,Marino,9895,0,4368_7778195_5123011,4368_39 -4358_80721,227,4368_11240,Phoenix Pk,526,1,4368_7778195_2046005,4368_385 -4358_80721,227,4368_11241,Phoenix Pk,279,1,4368_7778195_2046008,4368_385 -4358_80721,228,4368_11242,Phoenix Pk,8145,1,4368_7778195_2046004,4368_387 -4358_80721,229,4368_11243,Phoenix Pk,14709,1,4368_7778195_2046010,4368_385 -4358_80721,227,4368_11244,Phoenix Pk,286,1,4368_7778195_2046022,4368_385 -4358_80721,228,4368_11245,Phoenix Pk,8168,1,4368_7778195_2046006,4368_385 -4358_80721,227,4368_11246,Phoenix Pk,203,1,4368_7778195_2046012,4368_385 -4358_80721,228,4368_11247,Phoenix Pk,8220,1,4368_7778195_2046016,4368_385 -4358_80721,229,4368_11248,Phoenix Pk,14572,1,4368_7778195_2046001,4368_387 -4358_80721,227,4368_11249,Phoenix Pk,349,1,4368_7778195_2046024,4368_385 -4358_80757,229,4368_1125,Marino,16019,0,4368_7778195_5123003,4368_39 -4358_80721,228,4368_11250,Phoenix Pk,8204,1,4368_7778195_2046013,4368_385 -4358_80721,227,4368_11251,Phoenix Pk,421,1,4368_7778195_2046014,4368_385 -4358_80721,229,4368_11252,Phoenix Pk,14596,1,4368_7778195_2046002,4368_385 -4358_80721,227,4368_11253,Phoenix Pk,463,1,4368_7778195_2046017,4368_385 -4358_80721,228,4368_11254,Phoenix Pk,7976,1,4368_7778195_2046008,4368_387 -4358_80721,227,4368_11255,Phoenix Pk,439,1,4368_7778195_2046025,4368_385 -4358_80721,229,4368_11256,Phoenix Pk,14663,1,4368_7778195_2046004,4368_385 -4358_80721,228,4368_11257,Phoenix Pk,8134,1,4368_7778195_2046014,4368_387 -4358_80721,227,4368_11258,Phoenix Pk,492,1,4368_7778195_2046019,4368_385 -4358_80721,228,4368_11259,Phoenix Pk,8188,1,4368_7778195_2046010,4368_385 -4358_80757,227,4368_1126,Marino,2227,0,4368_7778195_5123007,4368_41 -4358_80721,227,4368_11260,Phoenix Pk,255,1,4368_7778195_2046004,4368_385 -4358_80721,229,4368_11261,Phoenix Pk,14681,1,4368_7778195_2046006,4368_385 -4358_80721,228,4368_11262,Phoenix Pk,8097,1,4368_7778195_2046001,4368_385 -4358_80721,227,4368_11263,Phoenix Pk,340,1,4368_7778195_2046007,4368_385 -4358_80721,229,4368_11264,Phoenix Pk,14655,1,4368_7778195_2046003,4368_385 -4358_80721,227,4368_11265,Phoenix Pk,414,1,4368_7778195_2046023,4368_387 -4358_80721,228,4368_11266,Phoenix Pk,8124,1,4368_7778195_2046003,4368_388 -4358_80721,227,4368_11267,Phoenix Pk,538,1,4368_7778195_2046009,4368_385 -4358_80721,228,4368_11268,Phoenix Pk,7992,1,4368_7778195_2046018,4368_385 -4358_80721,229,4368_11269,Phoenix Pk,14671,1,4368_7778195_2046005,4368_385 -4358_80757,228,4368_1127,Marino,9831,0,4368_7778195_5123006,4368_39 -4358_80721,227,4368_11270,Phoenix Pk,501,1,4368_7778195_2046021,4368_385 -4358_80721,228,4368_11271,Phoenix Pk,8199,1,4368_7778195_2046012,4368_385 -4358_80721,227,4368_11272,Phoenix Pk,243,1,4368_7778195_2046006,4368_385 -4358_80721,229,4368_11273,Phoenix Pk,14703,1,4368_7778195_2046009,4368_385 -4358_80721,228,4368_11274,Phoenix Pk,8158,1,4368_7778195_2046005,4368_387 -4358_80721,227,4368_11275,Phoenix Pk,455,1,4368_7778195_2046013,4368_385 -4358_80721,227,4368_11276,Phoenix Pk,433,1,4368_7778195_2046015,4368_385 -4358_80721,228,4368_11277,Phoenix Pk,8178,1,4368_7778195_2046007,4368_387 -4358_80721,229,4368_11278,Phoenix Pk,14720,1,4368_7778195_2046012,4368_385 -4358_80721,227,4368_11279,Phoenix Pk,475,1,4368_7778195_2046016,4368_385 -4358_80757,227,4368_1128,Marino,2282,0,4368_7778195_5123009,4368_39 -4358_80721,228,4368_11280,Phoenix Pk,8215,1,4368_7778195_2046015,4368_385 -4358_80721,227,4368_11281,Phoenix Pk,389,1,4368_7778195_2046020,4368_385 -4358_80721,229,4368_11282,Phoenix Pk,14686,1,4368_7778195_2046007,4368_385 -4358_80721,228,4368_11283,Phoenix Pk,8078,1,4368_7778195_2046009,4368_387 -4358_80721,227,4368_11284,Phoenix Pk,482,1,4368_7778195_2046018,4368_385 -4358_80721,229,4368_11285,Phoenix Pk,14697,1,4368_7778195_2046008,4368_385 -4358_80721,228,4368_11286,Phoenix Pk,8116,1,4368_7778195_2046002,4368_387 -4358_80721,227,4368_11287,Phoenix Pk,224,1,4368_7778195_2046001,4368_385 -4358_80721,229,4368_11288,Phoenix Pk,14711,1,4368_7778195_2046010,4368_385 -4358_80721,228,4368_11289,Phoenix Pk,8231,1,4368_7778195_2046017,4368_387 -4358_80757,229,4368_1129,Marino,16004,0,4368_7778195_5123008,4368_39 -4358_80721,227,4368_11290,Phoenix Pk,367,1,4368_7778195_2046027,4368_388 -4358_80721,227,4368_11291,Phoenix Pk,513,1,4368_7778195_2046002,4368_385 -4358_80721,229,4368_11292,Phoenix Pk,14733,1,4368_7778195_2046014,4368_385 -4358_80721,228,4368_11293,Phoenix Pk,8106,1,4368_7778195_2046011,4368_387 -4358_80721,227,4368_11294,Phoenix Pk,449,1,4368_7778195_2046003,4368_385 -4358_80721,228,4368_11295,Phoenix Pk,8147,1,4368_7778195_2046004,4368_385 -4358_80721,229,4368_11296,Phoenix Pk,14574,1,4368_7778195_2046001,4368_387 -4358_80721,227,4368_11297,Phoenix Pk,528,1,4368_7778195_2046005,4368_385 -4358_80721,229,4368_11298,Phoenix Pk,14628,1,4368_7778195_2046011,4368_385 -4358_80721,228,4368_11299,Phoenix Pk,8170,1,4368_7778195_2046006,4368_387 -4358_80760,229,4368_113,Shaw street,15517,0,4368_7778195_9001003,4368_1 -4358_80757,228,4368_1130,Marino,9765,0,4368_7778195_5123010,4368_41 -4358_80721,227,4368_11300,Phoenix Pk,281,1,4368_7778195_2046008,4368_385 -4358_80721,228,4368_11301,Phoenix Pk,8222,1,4368_7778195_2046016,4368_385 -4358_80721,227,4368_11302,Phoenix Pk,288,1,4368_7778195_2046022,4368_387 -4358_80721,229,4368_11303,Phoenix Pk,14591,1,4368_7778195_2046017,4368_388 -4358_80721,227,4368_11304,Phoenix Pk,351,1,4368_7778195_2046024,4368_385 -4358_80721,228,4368_11305,Phoenix Pk,8206,1,4368_7778195_2046013,4368_385 -4358_80721,229,4368_11306,Phoenix Pk,14598,1,4368_7778195_2046002,4368_387 -4358_80721,227,4368_11307,Phoenix Pk,423,1,4368_7778195_2046014,4368_385 -4358_80721,229,4368_11308,Phoenix Pk,14665,1,4368_7778195_2046004,4368_385 -4358_80721,228,4368_11309,Phoenix Pk,7978,1,4368_7778195_2046008,4368_387 -4358_80757,227,4368_1131,Marino,2119,0,4368_7778195_5123003,4368_39 -4358_80721,227,4368_11310,Phoenix Pk,465,1,4368_7778195_2046017,4368_385 -4358_80721,228,4368_11311,Phoenix Pk,8136,1,4368_7778195_2046014,4368_385 -4358_80721,229,4368_11312,Phoenix Pk,14683,1,4368_7778195_2046006,4368_387 -4358_80721,227,4368_11313,Phoenix Pk,262,1,4368_7778195_2046029,4368_385 -4358_80721,227,4368_11314,Phoenix Pk,441,1,4368_7778195_2046025,4368_385 -4358_80721,228,4368_11315,Phoenix Pk,8190,1,4368_7778195_2046010,4368_387 -4358_80721,229,4368_11316,Phoenix Pk,14750,1,4368_7778195_2046018,4368_388 -4358_80721,227,4368_11317,Phoenix Pk,494,1,4368_7778195_2046019,4368_385 -4358_80721,228,4368_11318,Phoenix Pk,8099,1,4368_7778195_2046001,4368_385 -4358_80721,229,4368_11319,Phoenix Pk,14657,1,4368_7778195_2046003,4368_387 -4358_80757,228,4368_1132,Marino,9924,0,4368_7778195_5123013,4368_39 -4358_80721,227,4368_11320,Phoenix Pk,257,1,4368_7778195_2046004,4368_385 -4358_80721,229,4368_11321,Phoenix Pk,14729,1,4368_7778195_2046013,4368_385 -4358_80721,228,4368_11322,Phoenix Pk,8239,1,4368_7778195_2046019,4368_387 -4358_80721,227,4368_11323,Phoenix Pk,342,1,4368_7778195_2046007,4368_385 -4358_80721,228,4368_11324,Phoenix Pk,8126,1,4368_7778195_2046003,4368_385 -4358_80721,229,4368_11325,Phoenix Pk,14673,1,4368_7778195_2046005,4368_387 -4358_80721,227,4368_11326,Phoenix Pk,416,1,4368_7778195_2046023,4368_385 -4358_80721,227,4368_11327,Phoenix Pk,540,1,4368_7778195_2046009,4368_385 -4358_80721,228,4368_11328,Phoenix Pk,7994,1,4368_7778195_2046018,4368_387 -4358_80721,229,4368_11329,Phoenix Pk,14739,1,4368_7778195_2046015,4368_388 -4358_80757,227,4368_1133,Marino,2198,0,4368_7778195_5123005,4368_39 -4358_80721,227,4368_11330,Phoenix Pk,544,1,4368_7778195_2046028,4368_385 -4358_80721,228,4368_11331,Phoenix Pk,8201,1,4368_7778195_2046012,4368_385 -4358_80721,229,4368_11332,Phoenix Pk,14705,1,4368_7778195_2046009,4368_387 -4358_80721,227,4368_11333,Phoenix Pk,503,1,4368_7778195_2046021,4368_385 -4358_80721,229,4368_11334,Phoenix Pk,14747,1,4368_7778195_2046016,4368_385 -4358_80721,228,4368_11335,Phoenix Pk,8246,1,4368_7778195_2046020,4368_387 -4358_80721,227,4368_11336,Phoenix Pk,245,1,4368_7778195_2046006,4368_385 -4358_80721,228,4368_11337,Phoenix Pk,8160,1,4368_7778195_2046005,4368_385 -4358_80721,229,4368_11338,Phoenix Pk,14722,1,4368_7778195_2046012,4368_387 -4358_80721,227,4368_11339,Phoenix Pk,457,1,4368_7778195_2046013,4368_385 -4358_80757,229,4368_1134,Marino,15961,0,4368_7778195_5123004,4368_39 -4358_80721,229,4368_11340,Phoenix Pk,14688,1,4368_7778195_2046007,4368_385 -4358_80721,227,4368_11341,Phoenix Pk,435,1,4368_7778195_2046015,4368_387 -4358_80721,228,4368_11342,Phoenix Pk,8180,1,4368_7778195_2046007,4368_388 -4358_80721,227,4368_11343,Phoenix Pk,477,1,4368_7778195_2046016,4368_385 -4358_80721,229,4368_11344,Phoenix Pk,14699,1,4368_7778195_2046008,4368_385 -4358_80721,228,4368_11345,Phoenix Pk,8217,1,4368_7778195_2046015,4368_387 -4358_80721,227,4368_11346,Phoenix Pk,391,1,4368_7778195_2046020,4368_385 -4358_80721,229,4368_11347,Phoenix Pk,14713,1,4368_7778195_2046010,4368_385 -4358_80721,228,4368_11348,Phoenix Pk,8080,1,4368_7778195_2046009,4368_387 -4358_80721,227,4368_11349,Phoenix Pk,484,1,4368_7778195_2046018,4368_385 -4358_80757,227,4368_1135,Marino,2175,0,4368_7778195_5123006,4368_39 -4358_80721,229,4368_11350,Phoenix Pk,14735,1,4368_7778195_2046014,4368_385 -4358_80721,228,4368_11351,Phoenix Pk,8118,1,4368_7778195_2046002,4368_387 -4358_80721,227,4368_11352,Phoenix Pk,226,1,4368_7778195_2046001,4368_385 -4358_80721,229,4368_11353,Phoenix Pk,14576,1,4368_7778195_2046001,4368_385 -4358_80721,228,4368_11354,Phoenix Pk,8233,1,4368_7778195_2046017,4368_387 -4358_80721,227,4368_11355,Phoenix Pk,369,1,4368_7778195_2046027,4368_388 -4358_80721,227,4368_11356,Phoenix Pk,515,1,4368_7778195_2046002,4368_385 -4358_80721,229,4368_11357,Phoenix Pk,14630,1,4368_7778195_2046011,4368_385 -4358_80721,228,4368_11358,Phoenix Pk,8108,1,4368_7778195_2046011,4368_387 -4358_80721,227,4368_11359,Phoenix Pk,451,1,4368_7778195_2046003,4368_385 -4358_80757,228,4368_1136,Marino,9915,0,4368_7778195_5123009,4368_39 -4358_80721,229,4368_11360,Phoenix Pk,14759,1,4368_7778195_2046019,4368_385 -4358_80721,228,4368_11361,Phoenix Pk,8149,1,4368_7778195_2046004,4368_387 -4358_80721,227,4368_11362,Phoenix Pk,530,1,4368_7778195_2046005,4368_385 -4358_80721,229,4368_11363,Phoenix Pk,14593,1,4368_7778195_2046017,4368_385 -4358_80721,228,4368_11364,Phoenix Pk,8172,1,4368_7778195_2046006,4368_387 -4358_80721,227,4368_11365,Phoenix Pk,283,1,4368_7778195_2046008,4368_385 -4358_80721,228,4368_11366,Phoenix Pk,8224,1,4368_7778195_2046016,4368_385 -4358_80721,227,4368_11367,Phoenix Pk,290,1,4368_7778195_2046022,4368_387 -4358_80721,229,4368_11368,Phoenix Pk,14600,1,4368_7778195_2046002,4368_388 -4358_80721,227,4368_11369,Phoenix Pk,353,1,4368_7778195_2046024,4368_385 -4358_80757,227,4368_1137,Marino,2318,0,4368_7778195_5123014,4368_39 -4358_80721,229,4368_11370,Phoenix Pk,14667,1,4368_7778195_2046004,4368_385 -4358_80721,228,4368_11371,Phoenix Pk,8208,1,4368_7778195_2046013,4368_387 -4358_80721,227,4368_11372,Phoenix Pk,425,1,4368_7778195_2046014,4368_385 -4358_80721,229,4368_11373,Phoenix Pk,14752,1,4368_7778195_2046018,4368_385 -4358_80721,228,4368_11374,Phoenix Pk,7980,1,4368_7778195_2046008,4368_387 -4358_80721,227,4368_11375,Phoenix Pk,467,1,4368_7778195_2046017,4368_385 -4358_80721,228,4368_11376,Phoenix Pk,8138,1,4368_7778195_2046014,4368_385 -4358_80721,229,4368_11377,Phoenix Pk,14659,1,4368_7778195_2046003,4368_387 -4358_80721,227,4368_11378,Phoenix Pk,264,1,4368_7778195_2046029,4368_385 -4358_80721,227,4368_11379,Phoenix Pk,443,1,4368_7778195_2046025,4368_385 -4358_80757,229,4368_1138,Marino,15998,0,4368_7778195_5123007,4368_41 -4358_80721,228,4368_11380,Phoenix Pk,8192,1,4368_7778195_2046010,4368_387 -4358_80721,229,4368_11381,Phoenix Pk,14731,1,4368_7778195_2046013,4368_388 -4358_80721,227,4368_11382,Phoenix Pk,496,1,4368_7778195_2046019,4368_385 -4358_80721,228,4368_11383,Phoenix Pk,8101,1,4368_7778195_2046001,4368_385 -4358_80721,229,4368_11384,Phoenix Pk,14675,1,4368_7778195_2046005,4368_387 -4358_80721,227,4368_11385,Phoenix Pk,518,1,4368_7778195_2046030,4368_385 -4358_80721,228,4368_11386,Phoenix Pk,8241,1,4368_7778195_2046019,4368_385 -4358_80721,229,4368_11387,Phoenix Pk,14741,1,4368_7778195_2046015,4368_387 -4358_80721,227,4368_11388,Phoenix Pk,230,1,4368_7778195_2046033,4368_385 -4358_80721,229,4368_11389,Phoenix Pk,14707,1,4368_7778195_2046009,4368_385 -4358_80757,228,4368_1139,Marino,9843,0,4368_7778195_5123002,4368_39 -4358_80721,228,4368_11390,Phoenix Pk,8128,1,4368_7778195_2046003,4368_387 -4358_80721,227,4368_11391,Phoenix Pk,259,1,4368_7778195_2046004,4368_385 -4358_80721,229,4368_11392,Phoenix Pk,14749,1,4368_7778195_2046016,4368_385 -4358_80721,227,4368_11393,Phoenix Pk,344,1,4368_7778195_2046007,4368_387 -4358_80721,228,4368_11394,Phoenix Pk,7996,1,4368_7778195_2046018,4368_388 -4358_80721,227,4368_11395,Phoenix Pk,332,1,4368_7778195_2046031,4368_385 -4358_80721,228,4368_11396,Phoenix Pk,8248,1,4368_7778195_2046020,4368_385 -4358_80721,229,4368_11397,Phoenix Pk,14724,1,4368_7778195_2046012,4368_387 -4358_80721,227,4368_11398,Phoenix Pk,418,1,4368_7778195_2046023,4368_385 -4358_80721,229,4368_11399,Phoenix Pk,14690,1,4368_7778195_2046007,4368_385 -4358_80760,227,4368_114,Shaw street,1549,0,4368_7778195_9001010,4368_1 -4358_80757,227,4368_1140,Marino,2092,0,4368_7778195_5123016,4368_39 -4358_80721,228,4368_11400,Phoenix Pk,8162,1,4368_7778195_2046005,4368_387 -4358_80721,227,4368_11401,Phoenix Pk,542,1,4368_7778195_2046009,4368_385 -4358_80721,229,4368_11402,Phoenix Pk,14701,1,4368_7778195_2046008,4368_385 -4358_80721,228,4368_11403,Phoenix Pk,8182,1,4368_7778195_2046007,4368_387 -4358_80721,227,4368_11404,Phoenix Pk,546,1,4368_7778195_2046028,4368_385 -4358_80721,227,4368_11405,Phoenix Pk,505,1,4368_7778195_2046021,4368_385 -4358_80721,229,4368_11406,Phoenix Pk,14715,1,4368_7778195_2046010,4368_387 -4358_80721,228,4368_11407,Phoenix Pk,8219,1,4368_7778195_2046015,4368_388 -4358_80721,227,4368_11408,Phoenix Pk,247,1,4368_7778195_2046006,4368_385 -4358_80721,229,4368_11409,Phoenix Pk,14737,1,4368_7778195_2046014,4368_385 -4358_80757,229,4368_1141,Marino,15982,0,4368_7778195_5123005,4368_39 -4358_80721,228,4368_11410,Phoenix Pk,8082,1,4368_7778195_2046009,4368_387 -4358_80721,227,4368_11411,Phoenix Pk,459,1,4368_7778195_2046013,4368_385 -4358_80721,229,4368_11412,Phoenix Pk,14578,1,4368_7778195_2046001,4368_385 -4358_80721,228,4368_11413,Phoenix Pk,8120,1,4368_7778195_2046002,4368_387 -4358_80721,227,4368_11414,Phoenix Pk,470,1,4368_7778195_2046032,4368_385 -4358_80721,229,4368_11415,Phoenix Pk,14632,1,4368_7778195_2046011,4368_385 -4358_80721,228,4368_11416,Phoenix Pk,8235,1,4368_7778195_2046017,4368_387 -4358_80721,227,4368_11417,Phoenix Pk,437,1,4368_7778195_2046015,4368_385 -4358_80721,229,4368_11418,Phoenix Pk,14761,1,4368_7778195_2046019,4368_385 -4358_80721,228,4368_11419,Phoenix Pk,8110,1,4368_7778195_2046011,4368_387 -4358_80757,228,4368_1142,Marino,9877,0,4368_7778195_5123001,4368_41 -4358_80721,227,4368_11420,Phoenix Pk,393,1,4368_7778195_2046020,4368_388 -4358_80721,228,4368_11421,Phoenix Pk,8151,1,4368_7778195_2046004,4368_385 -4358_80721,227,4368_11422,Phoenix Pk,486,1,4368_7778195_2046018,4368_387 -4358_80721,229,4368_11423,Phoenix Pk,14602,1,4368_7778195_2046002,4368_385 -4358_80721,227,4368_11424,Phoenix Pk,228,1,4368_7778195_2046001,4368_385 -4358_80721,228,4368_11425,Phoenix Pk,8174,1,4368_7778195_2046006,4368_387 -4358_80721,228,4368_11426,Phoenix Pk,8226,1,4368_7778195_2046016,4368_385 -4358_80721,229,4368_11427,Phoenix Pk,14754,1,4368_7778195_2046018,4368_387 -4358_80721,227,4368_11428,Phoenix Pk,371,1,4368_7778195_2046027,4368_388 -4358_80721,227,4368_11429,Phoenix Pk,532,1,4368_7778195_2046005,4368_385 -4358_80757,227,4368_1143,Marino,2273,0,4368_7778195_5123008,4368_39 -4358_80721,228,4368_11430,Phoenix Pk,8210,1,4368_7778195_2046013,4368_385 -4358_80721,229,4368_11431,Phoenix Pk,14661,1,4368_7778195_2046003,4368_387 -4358_80721,227,4368_11432,Phoenix Pk,292,1,4368_7778195_2046022,4368_385 -4358_80721,228,4368_11433,Phoenix Pk,8140,1,4368_7778195_2046014,4368_385 -4358_80721,227,4368_11434,Phoenix Pk,355,1,4368_7778195_2046024,4368_387 -4358_80721,229,4368_11435,Phoenix Pk,14677,1,4368_7778195_2046005,4368_388 -4358_80721,227,4368_11436,Phoenix Pk,427,1,4368_7778195_2046014,4368_385 -4358_80721,228,4368_11437,Phoenix Pk,8194,1,4368_7778195_2046010,4368_385 -4358_80721,229,4368_11438,Phoenix Pk,14743,1,4368_7778195_2046015,4368_387 -4358_80721,227,4368_11439,Phoenix Pk,266,1,4368_7778195_2046029,4368_385 -4358_80757,228,4368_1144,Marino,9821,0,4368_7778195_5123012,4368_39 -4358_80721,227,4368_11440,Phoenix Pk,498,1,4368_7778195_2046019,4368_385 -4358_80721,228,4368_11441,Phoenix Pk,8243,1,4368_7778195_2046019,4368_387 -4358_80721,229,4368_11442,Phoenix Pk,14726,1,4368_7778195_2046012,4368_388 -4358_80721,227,4368_11443,Phoenix Pk,520,1,4368_7778195_2046030,4368_385 -4358_80721,229,4368_11444,Phoenix Pk,14692,1,4368_7778195_2046007,4368_385 -4358_80721,228,4368_11445,Phoenix Pk,8130,1,4368_7778195_2046003,4368_387 -4358_80721,227,4368_11446,Phoenix Pk,261,1,4368_7778195_2046004,4368_385 -4358_80721,227,4368_11447,Phoenix Pk,334,1,4368_7778195_2046031,4368_385 -4358_80721,229,4368_11448,Phoenix Pk,14717,1,4368_7778195_2046010,4368_387 -4358_80721,228,4368_11449,Phoenix Pk,8164,1,4368_7778195_2046005,4368_388 -4358_80757,227,4368_1145,Marino,2296,0,4368_7778195_5123011,4368_39 -4358_80721,227,4368_11450,Phoenix Pk,548,1,4368_7778195_2046028,4368_385 -4358_80721,229,4368_11451,Phoenix Pk,14580,1,4368_7778195_2046001,4368_387 -4358_80721,228,4368_11452,Phoenix Pk,8184,1,4368_7778195_2046007,4368_388 -4358_80721,227,4368_11453,Phoenix Pk,507,1,4368_7778195_2046021,4368_385 -4358_80721,229,4368_11454,Phoenix Pk,14634,1,4368_7778195_2046011,4368_387 -4358_80721,228,4368_11455,Phoenix Pk,8084,1,4368_7778195_2046009,4368_388 -4358_80721,229,4368_11456,Phoenix Pk,14763,1,4368_7778195_2046019,4368_385 -4358_80721,228,4368_11457,Phoenix Pk,8237,1,4368_7778195_2046017,4368_387 -4358_80721,227,4368_11458,Phoenix Pk,395,1,4368_7778195_2046020,4368_388 -4358_80721,228,4368_11459,Phoenix Pk,8153,1,4368_7778195_2046004,4368_385 -4358_80757,229,4368_1146,Marino,15971,0,4368_7778195_5123002,4368_39 -4358_80721,227,4368_11460,Phoenix Pk,488,1,4368_7778195_2046018,4368_387 -4358_80721,229,4368_11461,Phoenix Pk,14604,1,4368_7778195_2046002,4368_388 -4358_80721,228,4368_11462,Phoenix Pk,8228,1,4368_7778195_2046016,4368_385 -4358_80721,229,4368_11463,Phoenix Pk,14756,1,4368_7778195_2046018,4368_387 -4358_80721,227,4368_11464,Phoenix Pk,373,1,4368_7778195_2046027,4368_388 -4358_80721,228,4368_11465,Phoenix Pk,8212,1,4368_7778195_2046013,4368_385 -4358_80721,227,4368_11466,Phoenix Pk,534,1,4368_7778195_2046005,4368_387 -4358_80721,229,4368_11467,Phoenix Pk,14679,1,4368_7778195_2046005,4368_388 -4358_80721,228,4368_11468,Phoenix Pk,8142,1,4368_7778195_2046014,4368_385 -4358_80721,229,4368_11469,Phoenix Pk,14745,1,4368_7778195_2046015,4368_387 -4358_80757,227,4368_1147,Marino,2304,0,4368_7778195_5123012,4368_39 -4358_80721,227,4368_11470,Phoenix Pk,429,1,4368_7778195_2046014,4368_388 -4358_80721,227,4368_11471,Westmoreland St,268,1,4368_7778195_2046029,4368_386 -4358_80721,228,4368_11472,Westmoreland St,8196,1,4368_7778195_2046010,4368_389 -4358_80721,229,4368_11473,Westmoreland St,14694,1,4368_7778195_2046007,4368_386 -4358_80721,227,4368_11474,Westmoreland St,522,1,4368_7778195_2046030,4368_386 -4358_80721,228,4368_11475,Westmoreland St,8245,1,4368_7778195_2046019,4368_389 -4358_80721,227,4368_11476,Westmoreland St,336,1,4368_7778195_2046031,4368_386 -4358_80721,229,4368_11477,Westmoreland St,14719,1,4368_7778195_2046010,4368_389 -4358_80721,228,4368_11478,Westmoreland St,8132,1,4368_7778195_2046003,4368_392 -4358_80722,227,4368_11479,Mountjoy Sq,122,1,4368_7778195_2822107,4368_393 -4358_80757,228,4368_1148,Marino,9787,0,4368_7778195_5123004,4368_39 -4358_80722,227,4368_11480,Mountjoy Sq,5968,1,4368_7778195_2822102,4368_393 -4358_80728,228,4368_11481,Belarmine,8392,0,4368_7778195_2047002,4368_394 -4358_80728,227,4368_11482,Belarmine,131,0,4368_7778195_2047001,4368_394 -4358_80728,228,4368_11483,Belarmine,8389,0,4368_7778195_2047001,4368_394 -4358_80728,227,4368_11484,Belarmine,103,0,4368_7778195_2047002,4368_395 -4358_80728,227,4368_11485,Belarmine,110,0,4368_7778195_2047003,4368_394 -4358_80728,228,4368_11486,Belarmine,8394,0,4368_7778195_2047002,4368_394 -4358_80728,229,4368_11487,Belarmine,14466,0,4368_7778195_2047002,4368_395 -4358_80728,227,4368_11488,Belarmine,133,0,4368_7778195_2047001,4368_398 -4358_80728,228,4368_11489,Belarmine,8391,0,4368_7778195_2047001,4368_394 -4358_80757,229,4368_1149,Marino,15991,0,4368_7778195_5123006,4368_39 -4358_80728,229,4368_11490,Belarmine,14399,0,4368_7778195_2047001,4368_395 -4358_80728,228,4368_11491,Belarmine,8396,0,4368_7778195_2047002,4368_394 -4358_80728,229,4368_11492,Belarmine,14468,0,4368_7778195_2047002,4368_395 -4358_80728,227,4368_11493,Belarmine,105,0,4368_7778195_2047002,4368_398 -4358_80728,229,4368_11494,Belarmine,14401,0,4368_7778195_2047001,4368_394 -4358_80728,228,4368_11495,Belarmine,8400,0,4368_7778195_2047004,4368_395 -4358_80728,227,4368_11496,Belarmine,135,0,4368_7778195_2047001,4368_398 -4358_80728,228,4368_11497,Belarmine,8398,0,4368_7778195_2047002,4368_394 -4358_80728,229,4368_11498,Belarmine,14470,0,4368_7778195_2047002,4368_395 -4358_80728,227,4368_11499,Belarmine,107,0,4368_7778195_2047002,4368_398 -4358_80760,228,4368_115,Shaw street,9514,0,4368_7778195_9001005,4368_1 -4358_80757,227,4368_1150,Marino,2239,0,4368_7778195_5123001,4368_41 -4358_80728,229,4368_11500,Belarmine,14403,0,4368_7778195_2047001,4368_394 -4358_80728,228,4368_11501,Belarmine,8401,0,4368_7778195_2047004,4368_395 -4358_80728,227,4368_11502,Belarmine,137,0,4368_7778195_2047001,4368_394 -4358_80728,228,4368_11503,Belarmine,8403,0,4368_7778195_2047007,4368_394 -4358_80728,229,4368_11504,Belarmine,14472,0,4368_7778195_2047002,4368_395 -4358_80728,227,4368_11505,Belarmine,5969,0,4368_7778195_2822208,4368_396 -4358_80728,227,4368_11506,Belarmine,146,0,4368_7778195_2047006,4368_394 -4358_80728,229,4368_11507,Belarmine,14405,0,4368_7778195_2047001,4368_394 -4358_80728,228,4368_11508,Belarmine,8413,0,4368_7778195_2047008,4368_395 -4358_80728,227,4368_11509,Belarmine,112,0,4368_7778195_2047005,4368_397 -4358_80757,228,4368_1151,Marino,9905,0,4368_7778195_5123007,4368_39 -4358_80728,227,4368_11510,Belarmine,125,0,4368_7778195_2047007,4368_394 -4358_80728,228,4368_11511,Belarmine,8405,0,4368_7778195_2047007,4368_394 -4358_80728,229,4368_11512,Belarmine,14474,0,4368_7778195_2047002,4368_395 -4358_80728,227,4368_11513,Belarmine,129,0,4368_7778195_2047008,4368_397 -4358_80728,227,4368_11514,Belarmine,139,0,4368_7778195_2047001,4368_394 -4358_80728,229,4368_11515,Belarmine,14407,0,4368_7778195_2047001,4368_394 -4358_80728,227,4368_11516,Belarmine,148,0,4368_7778195_2047006,4368_395 -4358_80728,228,4368_11517,Belarmine,8415,0,4368_7778195_2047008,4368_397 -4358_80728,228,4368_11518,Belarmine,8407,0,4368_7778195_2047007,4368_394 -4358_80728,229,4368_11519,Belarmine,14476,0,4368_7778195_2047002,4368_395 -4358_80757,227,4368_1152,Marino,2251,0,4368_7778195_5123002,4368_39 -4358_80728,227,4368_11520,Belarmine,114,0,4368_7778195_2047005,4368_397 -4358_80728,229,4368_11521,Belarmine,14409,0,4368_7778195_2047001,4368_394 -4358_80728,228,4368_11522,Belarmine,8417,0,4368_7778195_2047008,4368_395 -4358_80728,227,4368_11523,Belarmine,141,0,4368_7778195_2047001,4368_397 -4358_80728,228,4368_11524,Belarmine,8409,0,4368_7778195_2047007,4368_394 -4358_80728,229,4368_11525,Belarmine,14478,0,4368_7778195_2047002,4368_395 -4358_80728,227,4368_11526,Belarmine,116,0,4368_7778195_2047005,4368_397 -4358_80728,229,4368_11527,Belarmine,14411,0,4368_7778195_2047001,4368_394 -4358_80728,228,4368_11528,Belarmine,8419,0,4368_7778195_2047008,4368_395 -4358_80728,227,4368_11529,Belarmine,143,0,4368_7778195_2047001,4368_397 -4358_80757,229,4368_1153,Marino,15897,0,4368_7778195_5123001,4368_39 -4358_80728,228,4368_11530,Belarmine,8411,0,4368_7778195_2047007,4368_394 -4358_80728,229,4368_11531,Belarmine,14480,0,4368_7778195_2047002,4368_395 -4358_80728,227,4368_11532,Belarmine,118,0,4368_7778195_2047005,4368_397 -4358_80728,227,4368_11533,Poolbeg St,130,1,4368_7778195_2047001,4368_399 -4358_80728,227,4368_11534,Poolbeg St,102,1,4368_7778195_2047002,4368_399 -4358_80728,228,4368_11535,Poolbeg St,8388,1,4368_7778195_2047001,4368_399 -4358_80728,227,4368_11536,Poolbeg St,109,1,4368_7778195_2047003,4368_400 -4358_80728,227,4368_11537,Poolbeg St,6633,1,4368_7778195_2822109,4368_399 -4358_80728,227,4368_11538,Poolbeg St,145,1,4368_7778195_2047004,4368_399 -4358_80728,228,4368_11539,Poolbeg St,8393,1,4368_7778195_2047002,4368_399 -4358_80757,228,4368_1154,Marino,9760,0,4368_7778195_5123003,4368_41 -4358_80728,227,4368_11540,Poolbeg St,132,1,4368_7778195_2047001,4368_399 -4358_80728,228,4368_11541,Poolbeg St,8390,1,4368_7778195_2047001,4368_399 -4358_80728,229,4368_11542,Poolbeg St,14398,1,4368_7778195_2047001,4368_400 -4358_80728,227,4368_11543,Poolbeg St,104,1,4368_7778195_2047002,4368_402 -4358_80728,228,4368_11544,Poolbeg St,8395,1,4368_7778195_2047002,4368_399 -4358_80728,229,4368_11545,Poolbeg St,14467,1,4368_7778195_2047002,4368_400 -4358_80728,229,4368_11546,Poolbeg St,14400,1,4368_7778195_2047001,4368_399 -4358_80728,227,4368_11547,Poolbeg St,134,1,4368_7778195_2047001,4368_402 -4358_80728,228,4368_11548,Poolbeg St,8262,1,4368_7778195_2047003,4368_400 -4358_80728,228,4368_11549,Poolbeg St,8397,1,4368_7778195_2047002,4368_399 -4358_80757,227,4368_1155,Marino,2217,0,4368_7778195_5123015,4368_39 -4358_80728,229,4368_11550,Poolbeg St,14469,1,4368_7778195_2047002,4368_400 -4358_80728,227,4368_11551,Poolbeg St,106,1,4368_7778195_2047002,4368_402 -4358_80728,229,4368_11552,Poolbeg St,14402,1,4368_7778195_2047001,4368_399 -4358_80728,228,4368_11553,Poolbeg St,8402,1,4368_7778195_2047005,4368_400 -4358_80728,227,4368_11554,Poolbeg St,136,1,4368_7778195_2047001,4368_402 -4358_80728,228,4368_11555,Poolbeg St,8399,1,4368_7778195_2047002,4368_399 -4358_80728,229,4368_11556,Poolbeg St,14471,1,4368_7778195_2047002,4368_400 -4358_80728,227,4368_11557,Poolbeg St,111,1,4368_7778195_2047005,4368_402 -4358_80728,229,4368_11558,Poolbeg St,14404,1,4368_7778195_2047001,4368_399 -4358_80728,228,4368_11559,Poolbeg St,8412,1,4368_7778195_2047006,4368_400 -4358_80757,228,4368_1156,Marino,9897,0,4368_7778195_5123011,4368_39 -4358_80728,228,4368_11560,Poolbeg St,8404,1,4368_7778195_2047007,4368_399 -4358_80728,229,4368_11561,Poolbeg St,14473,1,4368_7778195_2047002,4368_400 -4358_80728,227,4368_11562,Poolbeg St,138,1,4368_7778195_2047001,4368_401 -4358_80728,227,4368_11563,Poolbeg St,147,1,4368_7778195_2047006,4368_399 -4358_80728,229,4368_11564,Poolbeg St,14406,1,4368_7778195_2047001,4368_399 -4358_80728,228,4368_11565,Poolbeg St,8414,1,4368_7778195_2047008,4368_400 -4358_80728,227,4368_11566,Poolbeg St,113,1,4368_7778195_2047005,4368_399 -4358_80728,228,4368_11567,Poolbeg St,8406,1,4368_7778195_2047007,4368_399 -4358_80728,229,4368_11568,Poolbeg St,14475,1,4368_7778195_2047002,4368_400 -4358_80728,227,4368_11569,Poolbeg St,126,1,4368_7778195_2047007,4368_401 -4358_80757,227,4368_1157,Marino,2261,0,4368_7778195_5123004,4368_39 -4358_80728,229,4368_11570,Poolbeg St,14408,1,4368_7778195_2047001,4368_399 -4358_80728,228,4368_11571,Poolbeg St,8416,1,4368_7778195_2047008,4368_400 -4358_80728,227,4368_11572,Poolbeg St,140,1,4368_7778195_2047001,4368_401 -4358_80728,228,4368_11573,Poolbeg St,8408,1,4368_7778195_2047007,4368_399 -4358_80728,229,4368_11574,Poolbeg St,14477,1,4368_7778195_2047002,4368_400 -4358_80728,227,4368_11575,Poolbeg St,115,1,4368_7778195_2047005,4368_401 -4358_80728,229,4368_11576,Poolbeg St,14410,1,4368_7778195_2047001,4368_399 -4358_80728,228,4368_11577,Poolbeg St,8418,1,4368_7778195_2047008,4368_400 -4358_80728,227,4368_11578,Poolbeg St,142,1,4368_7778195_2047001,4368_401 -4358_80728,228,4368_11579,Poolbeg St,8410,1,4368_7778195_2047007,4368_399 -4358_80757,229,4368_1158,Marino,16021,0,4368_7778195_5123003,4368_39 -4358_80728,229,4368_11580,Poolbeg St,14479,1,4368_7778195_2047002,4368_400 -4358_80728,227,4368_11581,Poolbeg St,117,1,4368_7778195_2047005,4368_401 -4358_80728,229,4368_11582,Poolbeg St,14412,1,4368_7778195_2047001,4368_399 -4358_80728,228,4368_11583,Poolbeg St,8420,1,4368_7778195_2047008,4368_400 -4358_80728,227,4368_11584,Poolbeg St,144,1,4368_7778195_2047001,4368_401 -4358_80729,227,4368_11585,The Square,6670,0,4368_7778195_3049003,4368_403 -4358_80729,227,4368_11586,The Square,1507,0,4368_7778195_3049005,4368_403 -4358_80729,228,4368_11587,The Square,13417,0,4368_7778195_3049002,4368_403 -4358_80729,227,4368_11588,The Square,1509,0,4368_7778195_3049006,4368_403 -4358_80729,227,4368_11589,The Square,1485,0,4368_7778195_3049001,4368_403 -4358_80757,227,4368_1159,Marino,2229,0,4368_7778195_5123007,4368_39 -4358_80729,227,4368_11590,The Square,1488,0,4368_7778195_3049002,4368_403 -4358_80729,228,4368_11591,The Square,13441,0,4368_7778195_3049001,4368_404 -4358_80729,227,4368_11592,The Square,1501,0,4368_7778195_3049004,4368_403 -4358_80729,228,4368_11593,The Square,13427,0,4368_7778195_3049003,4368_403 -4358_80729,227,4368_11594,The Square,6672,0,4368_7778195_3049003,4368_403 -4358_80729,228,4368_11595,The Square,13419,0,4368_7778195_3049002,4368_403 -4358_80729,227,4368_11596,The Square,1512,0,4368_7778195_3049007,4368_403 -4358_80729,228,4368_11597,The Square,8931,0,4368_7778195_3049004,4368_403 -4358_80729,227,4368_11598,The Square,6689,0,4368_7778195_3049008,4368_403 -4358_80729,228,4368_11599,The Square,13443,0,4368_7778195_3049001,4368_403 -4358_80760,227,4368_116,Shaw street,1643,0,4368_7778195_9001011,4368_1 -4358_80757,228,4368_1160,Marino,9833,0,4368_7778195_5123006,4368_39 -4358_80729,227,4368_11600,The Square,1490,0,4368_7778195_3049002,4368_403 -4358_80729,229,4368_11601,The Square,18645,0,4368_7778195_3049001,4368_403 -4358_80729,228,4368_11602,The Square,13429,0,4368_7778195_3049003,4368_404 -4358_80729,227,4368_11603,The Square,1503,0,4368_7778195_3049004,4368_403 -4358_80729,228,4368_11604,The Square,13455,0,4368_7778195_3049005,4368_403 -4358_80729,227,4368_11605,The Square,6674,0,4368_7778195_3049003,4368_403 -4358_80729,229,4368_11606,The Square,18660,0,4368_7778195_3049002,4368_403 -4358_80729,228,4368_11607,The Square,13421,0,4368_7778195_3049002,4368_404 -4358_80729,227,4368_11608,The Square,1514,0,4368_7778195_3049007,4368_403 -4358_80729,228,4368_11609,The Square,8933,0,4368_7778195_3049004,4368_403 -4358_80757,229,4368_1161,Marino,16006,0,4368_7778195_5123008,4368_39 -4358_80729,227,4368_11610,The Square,6691,0,4368_7778195_3049008,4368_403 -4358_80729,229,4368_11611,The Square,18647,0,4368_7778195_3049001,4368_403 -4358_80729,228,4368_11612,The Square,13445,0,4368_7778195_3049001,4368_404 -4358_80729,227,4368_11613,The Square,1492,0,4368_7778195_3049002,4368_403 -4358_80729,228,4368_11614,The Square,13431,0,4368_7778195_3049003,4368_403 -4358_80729,227,4368_11615,The Square,1505,0,4368_7778195_3049004,4368_403 -4358_80729,229,4368_11616,The Square,18662,0,4368_7778195_3049002,4368_403 -4358_80729,228,4368_11617,The Square,13457,0,4368_7778195_3049005,4368_404 -4358_80729,227,4368_11618,The Square,6676,0,4368_7778195_3049003,4368_403 -4358_80729,228,4368_11619,The Square,13423,0,4368_7778195_3049002,4368_403 -4358_80757,227,4368_1162,Marino,2284,0,4368_7778195_5123009,4368_41 -4358_80729,227,4368_11620,The Square,1516,0,4368_7778195_3049007,4368_403 -4358_80729,228,4368_11621,The Square,8935,0,4368_7778195_3049004,4368_403 -4358_80729,229,4368_11622,The Square,18649,0,4368_7778195_3049001,4368_404 -4358_80729,227,4368_11623,The Square,6693,0,4368_7778195_3049008,4368_403 -4358_80729,228,4368_11624,The Square,13447,0,4368_7778195_3049001,4368_403 -4358_80729,227,4368_11625,The Square,6681,0,4368_7778195_3049009,4368_403 -4358_80729,229,4368_11626,The Square,18664,0,4368_7778195_3049002,4368_403 -4358_80729,228,4368_11627,The Square,13433,0,4368_7778195_3049003,4368_404 -4358_80729,227,4368_11628,The Square,1494,0,4368_7778195_3049002,4368_403 -4358_80729,228,4368_11629,The Square,13459,0,4368_7778195_3049005,4368_403 -4358_80757,228,4368_1163,Marino,9767,0,4368_7778195_5123010,4368_39 -4358_80729,227,4368_11630,The Square,6699,0,4368_7778195_3049010,4368_403 -4358_80729,227,4368_11631,The Square,6678,0,4368_7778195_3049003,4368_403 -4358_80729,228,4368_11632,The Square,13425,0,4368_7778195_3049002,4368_404 -4358_80729,229,4368_11633,The Square,18651,0,4368_7778195_3049001,4368_405 -4358_80729,227,4368_11634,The Square,1518,0,4368_7778195_3049007,4368_403 -4358_80729,228,4368_11635,The Square,8937,0,4368_7778195_3049004,4368_403 -4358_80729,227,4368_11636,The Square,6706,0,4368_7778195_3049011,4368_404 -4358_80729,227,4368_11637,The Square,1522,0,4368_7778195_3823205,4368_403 -4358_80729,229,4368_11638,The Square,18666,0,4368_7778195_3049002,4368_403 -4358_80729,227,4368_11639,The Square,6695,0,4368_7778195_3049008,4368_404 -4358_80757,227,4368_1164,Marino,2121,0,4368_7778195_5123003,4368_39 -4358_80729,228,4368_11640,The Square,13449,0,4368_7778195_3049001,4368_405 -4358_80729,227,4368_11641,The Square,6683,0,4368_7778195_3049009,4368_403 -4358_80729,228,4368_11642,The Square,13435,0,4368_7778195_3049003,4368_403 -4358_80729,227,4368_11643,The Square,1496,0,4368_7778195_3049002,4368_403 -4358_80729,229,4368_11644,The Square,18653,0,4368_7778195_3049001,4368_403 -4358_80729,228,4368_11645,The Square,13461,0,4368_7778195_3049005,4368_404 -4358_80729,227,4368_11646,The Square,6701,0,4368_7778195_3049010,4368_403 -4358_80729,228,4368_11647,The Square,8939,0,4368_7778195_3049004,4368_403 -4358_80729,227,4368_11648,The Square,6680,0,4368_7778195_3049003,4368_404 -4358_80729,229,4368_11649,The Square,18668,0,4368_7778195_3049002,4368_403 -4358_80757,228,4368_1165,Marino,9926,0,4368_7778195_5123013,4368_39 -4358_80729,227,4368_11650,The Square,6684,0,4368_7778195_3049009,4368_403 -4358_80729,228,4368_11651,The Square,13451,0,4368_7778195_3049001,4368_403 -4358_80729,227,4368_11652,The Square,6697,0,4368_7778195_3049008,4368_403 -4358_80729,229,4368_11653,The Square,18655,0,4368_7778195_3049001,4368_403 -4358_80729,228,4368_11654,The Square,13437,0,4368_7778195_3049003,4368_403 -4358_80729,227,4368_11655,The Square,6703,0,4368_7778195_3049010,4368_403 -4358_80729,228,4368_11656,The Square,8941,0,4368_7778195_3049004,4368_403 -4358_80729,229,4368_11657,The Square,18670,0,4368_7778195_3049002,4368_404 -4358_80729,227,4368_11658,The Square,1498,0,4368_7778195_3049002,4368_403 -4358_80729,229,4368_11659,The Square,18657,0,4368_7778195_3049001,4368_403 -4358_80757,229,4368_1166,Marino,15963,0,4368_7778195_5123004,4368_41 -4358_80729,227,4368_11660,The Square,6686,0,4368_7778195_3049009,4368_404 -4358_80729,228,4368_11661,The Square,13453,0,4368_7778195_3049001,4368_405 -4358_80729,227,4368_11662,The Square,6705,0,4368_7778195_3049010,4368_403 -4358_80729,228,4368_11663,The Square,13439,0,4368_7778195_3049003,4368_404 -4358_80729,229,4368_11664,The Square,18672,0,4368_7778195_3049002,4368_403 -4358_80729,227,4368_11665,Pearse St,1484,1,4368_7778195_3049001,4368_409 -4358_80729,227,4368_11666,Pearse St,1487,1,4368_7778195_3049002,4368_406 -4358_80729,228,4368_11667,Pearse St,13440,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11668,Pearse St,1500,1,4368_7778195_3049004,4368_406 -4358_80729,227,4368_11669,Pearse St,6671,1,4368_7778195_3049003,4368_406 -4358_80757,227,4368_1167,Marino,2200,0,4368_7778195_5123005,4368_39 -4358_80729,227,4368_11670,Pearse St,1508,1,4368_7778195_3049005,4368_406 -4358_80729,227,4368_11671,Pearse St,1511,1,4368_7778195_3049007,4368_406 -4358_80729,228,4368_11672,Pearse St,13418,1,4368_7778195_3049002,4368_406 -4358_80729,227,4368_11673,Pearse St,1510,1,4368_7778195_3049006,4368_406 -4358_80729,227,4368_11674,Pearse St,6688,1,4368_7778195_3049008,4368_406 -4358_80729,227,4368_11675,Pearse St,1486,1,4368_7778195_3049001,4368_406 -4358_80729,228,4368_11676,Pearse St,13442,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11677,Pearse St,1489,1,4368_7778195_3049002,4368_406 -4358_80729,229,4368_11678,Pearse St,18644,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11679,Pearse St,1502,1,4368_7778195_3049004,4368_407 -4358_80757,227,4368_1168,Marino,2177,0,4368_7778195_5123006,4368_39 -4358_80729,228,4368_11680,Pearse St,13428,1,4368_7778195_3049003,4368_408 -4358_80729,227,4368_11681,Pearse St,6673,1,4368_7778195_3049003,4368_406 -4358_80729,228,4368_11682,Pearse St,13420,1,4368_7778195_3049002,4368_406 -4358_80729,229,4368_11683,Pearse St,18659,1,4368_7778195_3049002,4368_406 -4358_80729,227,4368_11684,Pearse St,1513,1,4368_7778195_3049007,4368_407 -4358_80729,228,4368_11685,Pearse St,8932,1,4368_7778195_3049004,4368_406 -4358_80729,227,4368_11686,Pearse St,6690,1,4368_7778195_3049008,4368_406 -4358_80729,228,4368_11687,Pearse St,13444,1,4368_7778195_3049001,4368_406 -4358_80729,229,4368_11688,Pearse St,18646,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11689,Pearse St,1491,1,4368_7778195_3049002,4368_407 -4358_80757,228,4368_1169,Marino,9917,0,4368_7778195_5123009,4368_39 -4358_80729,228,4368_11690,Pearse St,13430,1,4368_7778195_3049003,4368_406 -4358_80729,227,4368_11691,Pearse St,1504,1,4368_7778195_3049004,4368_406 -4358_80729,228,4368_11692,Pearse St,13456,1,4368_7778195_3049005,4368_406 -4358_80729,227,4368_11693,Pearse St,6675,1,4368_7778195_3049003,4368_406 -4358_80729,229,4368_11694,Pearse St,18661,1,4368_7778195_3049002,4368_407 -4358_80729,228,4368_11695,Pearse St,13422,1,4368_7778195_3049002,4368_406 -4358_80729,227,4368_11696,Pearse St,1515,1,4368_7778195_3049007,4368_406 -4358_80729,228,4368_11697,Pearse St,8934,1,4368_7778195_3049004,4368_406 -4358_80729,227,4368_11698,Pearse St,6692,1,4368_7778195_3049008,4368_406 -4358_80729,229,4368_11699,Pearse St,18648,1,4368_7778195_3049001,4368_407 -4358_80760,229,4368_117,Shaw street,15668,0,4368_7778195_9001005,4368_1 -4358_80757,229,4368_1170,Marino,16000,0,4368_7778195_5123007,4368_39 -4358_80729,228,4368_11700,Pearse St,13446,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11701,Pearse St,1493,1,4368_7778195_3049002,4368_406 -4358_80729,228,4368_11702,Pearse St,13432,1,4368_7778195_3049003,4368_406 -4358_80729,229,4368_11703,Pearse St,18663,1,4368_7778195_3049002,4368_406 -4358_80729,227,4368_11704,Pearse St,1506,1,4368_7778195_3049004,4368_407 -4358_80729,228,4368_11705,Pearse St,13458,1,4368_7778195_3049005,4368_406 -4358_80729,227,4368_11706,Pearse St,6677,1,4368_7778195_3049003,4368_406 -4358_80729,228,4368_11707,Pearse St,13424,1,4368_7778195_3049002,4368_406 -4358_80729,229,4368_11708,Pearse St,18650,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11709,Pearse St,1517,1,4368_7778195_3049007,4368_407 -4358_80757,227,4368_1171,Marino,2320,0,4368_7778195_5123014,4368_39 -4358_80729,228,4368_11710,Pearse St,8936,1,4368_7778195_3049004,4368_406 -4358_80729,227,4368_11711,Pearse St,6694,1,4368_7778195_3049008,4368_406 -4358_80729,228,4368_11712,Pearse St,13448,1,4368_7778195_3049001,4368_406 -4358_80729,229,4368_11713,Pearse St,18665,1,4368_7778195_3049002,4368_406 -4358_80729,227,4368_11714,Pearse St,6682,1,4368_7778195_3049009,4368_407 -4358_80729,228,4368_11715,Pearse St,13434,1,4368_7778195_3049003,4368_406 -4358_80729,227,4368_11716,Pearse St,1495,1,4368_7778195_3049002,4368_406 -4358_80729,228,4368_11717,Pearse St,13460,1,4368_7778195_3049005,4368_406 -4358_80729,227,4368_11718,Pearse St,6700,1,4368_7778195_3049010,4368_406 -4358_80729,229,4368_11719,Pearse St,18652,1,4368_7778195_3049001,4368_407 -4358_80757,228,4368_1172,Marino,9845,0,4368_7778195_5123002,4368_39 -4358_80729,228,4368_11720,Pearse St,13426,1,4368_7778195_3049002,4368_406 -4358_80729,227,4368_11721,Pearse St,6679,1,4368_7778195_3049003,4368_406 -4358_80729,228,4368_11722,Pearse St,8938,1,4368_7778195_3049004,4368_406 -4358_80729,229,4368_11723,Pearse St,18667,1,4368_7778195_3049002,4368_406 -4358_80729,227,4368_11724,Pearse St,6707,1,4368_7778195_3049011,4368_407 -4358_80729,228,4368_11725,Pearse St,13450,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11726,Pearse St,6696,1,4368_7778195_3049008,4368_406 -4358_80729,228,4368_11727,Pearse St,13436,1,4368_7778195_3049003,4368_406 -4358_80729,229,4368_11728,Pearse St,18654,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11729,Pearse St,1497,1,4368_7778195_3049002,4368_407 -4358_80757,227,4368_1173,Marino,2321,0,4368_7778195_5123017,4368_39 -4358_80729,227,4368_11730,Pearse St,6702,1,4368_7778195_3049010,4368_406 -4358_80729,228,4368_11731,Pearse St,8940,1,4368_7778195_3049004,4368_406 -4358_80729,229,4368_11732,Pearse St,18669,1,4368_7778195_3049002,4368_406 -4358_80729,227,4368_11733,Pearse St,6685,1,4368_7778195_3049009,4368_406 -4358_80729,228,4368_11734,Pearse St,13452,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11735,Pearse St,6698,1,4368_7778195_3049008,4368_406 -4358_80729,229,4368_11736,Pearse St,18656,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11737,Pearse St,6704,1,4368_7778195_3049010,4368_406 -4358_80729,228,4368_11738,Pearse St,13438,1,4368_7778195_3049003,4368_406 -4358_80729,229,4368_11739,Pearse St,18671,1,4368_7778195_3049002,4368_406 -4358_80757,229,4368_1174,Marino,15984,0,4368_7778195_5123005,4368_39 -4358_80729,227,4368_11740,Pearse St,1499,1,4368_7778195_3049002,4368_406 -4358_80729,229,4368_11741,Pearse St,18658,1,4368_7778195_3049001,4368_406 -4358_80729,227,4368_11742,Pearse St,6687,1,4368_7778195_3049009,4368_407 -4358_80729,228,4368_11743,Pearse St,13454,1,4368_7778195_3049001,4368_408 -4358_80730,227,4368_11744,Woodford Hill,4335,0,4368_7778195_4824205,4368_410 -4358_80730,227,4368_11745,Waterloo Rd,6620,1,4368_7778195_4824105,4368_411 -4358_80730,227,4368_11746,Waterloo Rd,4336,1,4368_7778195_4824106,4368_411 -4358_80731,227,4368_11747,Leixlip Intel,986,0,4368_7778195_3423005,4368_412 -4358_80731,228,4368_11748,Leixlip Intel,9112,0,4368_7778195_3423010,4368_412 -4358_80731,227,4368_11749,Leixlip Intel,978,0,4368_7778195_3423001,4368_413 -4358_80757,227,4368_1175,Marino,2094,0,4368_7778195_5123016,4368_39 -4358_80731,227,4368_11750,Leixlip Intel,1060,0,4368_7778195_3423017,4368_412 -4358_80731,228,4368_11751,Leixlip Intel,10376,0,4368_7778195_3423013,4368_412 -4358_80731,227,4368_11752,Leixlip Intel,988,0,4368_7778195_3423005,4368_412 -4358_80731,229,4368_11753,Leixlip Intel,15454,0,4368_7778195_3423012,4368_412 -4358_80731,228,4368_11754,Leixlip Intel,9146,0,4368_7778195_3423015,4368_413 -4358_80731,227,4368_11755,Leixlip Intel,980,0,4368_7778195_3423001,4368_412 -4358_80731,229,4368_11756,Leixlip Intel,15329,0,4368_7778195_3423007,4368_412 -4358_80731,228,4368_11757,Leixlip Intel,9114,0,4368_7778195_3423010,4368_413 -4358_80731,227,4368_11758,Leixlip Intel,1062,0,4368_7778195_3423017,4368_412 -4358_80731,228,4368_11759,Leixlip Intel,10378,0,4368_7778195_3423013,4368_412 -4358_80757,228,4368_1176,Marino,9823,0,4368_7778195_5123012,4368_39 -4358_80731,229,4368_11760,Leixlip Intel,15371,0,4368_7778195_3423009,4368_412 -4358_80731,227,4368_11761,Leixlip Intel,990,0,4368_7778195_3423005,4368_412 -4358_80731,228,4368_11762,Leixlip Intel,9148,0,4368_7778195_3423015,4368_412 -4358_80731,229,4368_11763,Leixlip Intel,15456,0,4368_7778195_3423012,4368_412 -4358_80731,227,4368_11764,Leixlip Intel,982,0,4368_7778195_3423001,4368_412 -4358_80731,228,4368_11765,Leixlip Intel,9239,0,4368_7778195_3423019,4368_412 -4358_80731,229,4368_11766,Leixlip Intel,15331,0,4368_7778195_3423007,4368_412 -4358_80731,227,4368_11767,Leixlip Intel,1064,0,4368_7778195_3423017,4368_412 -4358_80731,228,4368_11768,Leixlip Intel,10380,0,4368_7778195_3423013,4368_412 -4358_80731,229,4368_11769,Leixlip Intel,15373,0,4368_7778195_3423009,4368_412 -4358_80757,227,4368_1177,Marino,2275,0,4368_7778195_5123008,4368_39 -4358_80731,227,4368_11770,Leixlip Intel,992,0,4368_7778195_3423005,4368_412 -4358_80731,228,4368_11771,Leixlip Intel,9150,0,4368_7778195_3423015,4368_412 -4358_80731,229,4368_11772,Leixlip Intel,15458,0,4368_7778195_3423012,4368_412 -4358_80731,227,4368_11773,Leixlip Intel,984,0,4368_7778195_3423001,4368_412 -4358_80731,228,4368_11774,Leixlip Intel,9241,0,4368_7778195_3423019,4368_412 -4358_80731,229,4368_11775,Leixlip Intel,15333,0,4368_7778195_3423007,4368_412 -4358_80731,227,4368_11776,Leixlip Intel,1066,0,4368_7778195_3423017,4368_412 -4358_80731,228,4368_11777,Leixlip Intel,10382,0,4368_7778195_3423013,4368_412 -4358_80731,229,4368_11778,Leixlip Intel,15401,0,4368_7778195_3423002,4368_412 -4358_80731,227,4368_11779,Leixlip Intel,1091,0,4368_7778195_3423016,4368_412 -4358_80757,229,4368_1178,Marino,15973,0,4368_7778195_5123002,4368_39 -4358_80731,228,4368_11780,Leixlip Intel,9141,0,4368_7778195_3423024,4368_412 -4358_80731,229,4368_11781,Leixlip Intel,15482,0,4368_7778195_3423017,4368_412 -4358_80731,227,4368_11782,Leixlip Intel,1048,0,4368_7778195_3423024,4368_412 -4358_80731,228,4368_11783,Leixlip Intel,9243,0,4368_7778195_3423019,4368_412 -4358_80731,229,4368_11784,Leixlip Intel,15335,0,4368_7778195_3423007,4368_412 -4358_80731,227,4368_11785,Leixlip Intel,1068,0,4368_7778195_3423017,4368_412 -4358_80731,228,4368_11786,Leixlip Intel,10384,0,4368_7778195_3423013,4368_412 -4358_80731,229,4368_11787,Leixlip Intel,15403,0,4368_7778195_3423002,4368_412 -4358_80731,227,4368_11788,Leixlip Intel,1093,0,4368_7778195_3423016,4368_412 -4358_80731,228,4368_11789,Leixlip Intel,9254,0,4368_7778195_3423031,4368_412 -4358_80757,228,4368_1179,Marino,9789,0,4368_7778195_5123004,4368_41 -4358_80731,229,4368_11790,Leixlip Intel,15440,0,4368_7778195_3423003,4368_412 -4358_80731,228,4368_11791,Leixlip Intel,9245,0,4368_7778195_3423019,4368_412 -4358_80731,227,4368_11792,Leixlip Intel,1050,0,4368_7778195_3423024,4368_413 -4358_80731,229,4368_11793,Leixlip Intel,15337,0,4368_7778195_3423007,4368_412 -4358_80731,228,4368_11794,Leixlip Intel,9073,0,4368_7778195_3423035,4368_412 -4358_80731,227,4368_11795,Leixlip Intel,1070,0,4368_7778195_3423017,4368_412 -4358_80731,229,4368_11796,Leixlip Intel,15405,0,4368_7778195_3423002,4368_413 -4358_80731,228,4368_11797,Leixlip Intel,9256,0,4368_7778195_3423031,4368_412 -4358_80731,227,4368_11798,Leixlip Intel,1095,0,4368_7778195_3423016,4368_413 -4358_80731,229,4368_11799,Leixlip Intel,15442,0,4368_7778195_3423003,4368_414 -4358_80760,227,4368_118,Shaw street,3147,0,4368_7778195_9001004,4368_1 -4358_80757,227,4368_1180,Marino,2298,0,4368_7778195_5123011,4368_39 -4358_80731,227,4368_11800,Ringsend Road,997,1,4368_7778195_3423003,4368_415 -4358_80731,227,4368_11801,Ringsend Road,987,1,4368_7778195_3423005,4368_415 -4358_80731,228,4368_11802,Ringsend Road,9094,1,4368_7778195_3423008,4368_416 -4358_80731,228,4368_11803,Ringsend Road,9113,1,4368_7778195_3423010,4368_415 -4358_80731,227,4368_11804,Ringsend Road,979,1,4368_7778195_3423001,4368_416 -4358_80731,228,4368_11805,Ringsend Road,10377,1,4368_7778195_3423013,4368_415 -4358_80731,227,4368_11806,Ringsend Road,1061,1,4368_7778195_3423017,4368_416 -4358_80731,229,4368_11807,Ringsend Road,15370,1,4368_7778195_3423009,4368_417 -4358_80731,229,4368_11808,Ringsend Road,15455,1,4368_7778195_3423012,4368_415 -4358_80731,228,4368_11809,Ringsend Road,9147,1,4368_7778195_3423015,4368_416 -4358_80757,227,4368_1181,Marino,2306,0,4368_7778195_5123012,4368_39 -4358_80731,227,4368_11810,Ringsend Road,989,1,4368_7778195_3423005,4368_417 -4358_80731,229,4368_11811,Ringsend Road,15330,1,4368_7778195_3423007,4368_415 -4358_80731,228,4368_11812,Ringsend Road,9115,1,4368_7778195_3423010,4368_416 -4358_80731,227,4368_11813,Ringsend Road,981,1,4368_7778195_3423001,4368_417 -4358_80731,228,4368_11814,Ringsend Road,10379,1,4368_7778195_3423013,4368_415 -4358_80731,227,4368_11815,Ringsend Road,1063,1,4368_7778195_3423017,4368_416 -4358_80731,229,4368_11816,Ringsend Road,15372,1,4368_7778195_3423009,4368_417 -4358_80731,229,4368_11817,Ringsend Road,15457,1,4368_7778195_3423012,4368_415 -4358_80731,228,4368_11818,Ringsend Road,9149,1,4368_7778195_3423015,4368_416 -4358_80731,227,4368_11819,Ringsend Road,991,1,4368_7778195_3423005,4368_417 -4358_80757,228,4368_1182,Marino,9937,0,4368_7778195_5123014,4368_39 -4358_80731,229,4368_11820,Ringsend Road,15332,1,4368_7778195_3423007,4368_415 -4358_80731,228,4368_11821,Ringsend Road,9240,1,4368_7778195_3423019,4368_416 -4358_80731,227,4368_11822,Ringsend Road,983,1,4368_7778195_3423001,4368_417 -4358_80731,228,4368_11823,Ringsend Road,10381,1,4368_7778195_3423013,4368_415 -4358_80731,227,4368_11824,Ringsend Road,1065,1,4368_7778195_3423017,4368_416 -4358_80731,229,4368_11825,Ringsend Road,15374,1,4368_7778195_3423009,4368_417 -4358_80731,229,4368_11826,Ringsend Road,15459,1,4368_7778195_3423012,4368_415 -4358_80731,227,4368_11827,Ringsend Road,993,1,4368_7778195_3423005,4368_416 -4358_80731,228,4368_11828,Ringsend Road,9140,1,4368_7778195_3423024,4368_417 -4358_80731,229,4368_11829,Ringsend Road,15334,1,4368_7778195_3423007,4368_415 -4358_80757,229,4368_1183,Marino,15993,0,4368_7778195_5123006,4368_39 -4358_80731,228,4368_11830,Ringsend Road,9242,1,4368_7778195_3423019,4368_416 -4358_80731,227,4368_11831,Ringsend Road,985,1,4368_7778195_3423001,4368_417 -4358_80731,228,4368_11832,Ringsend Road,10383,1,4368_7778195_3423013,4368_415 -4358_80731,227,4368_11833,Ringsend Road,1067,1,4368_7778195_3423017,4368_416 -4358_80731,229,4368_11834,Ringsend Road,15402,1,4368_7778195_3423002,4368_417 -4358_80731,229,4368_11835,Ringsend Road,15483,1,4368_7778195_3423017,4368_415 -4358_80731,227,4368_11836,Ringsend Road,1092,1,4368_7778195_3423016,4368_416 -4358_80731,228,4368_11837,Ringsend Road,9142,1,4368_7778195_3423024,4368_417 -4358_80731,229,4368_11838,Ringsend Road,15336,1,4368_7778195_3423007,4368_415 -4358_80731,228,4368_11839,Ringsend Road,9244,1,4368_7778195_3423019,4368_416 -4358_80757,227,4368_1184,Marino,2241,0,4368_7778195_5123001,4368_39 -4358_80731,227,4368_11840,Ringsend Road,1049,1,4368_7778195_3423024,4368_417 -4358_80731,228,4368_11841,Ringsend Road,10385,1,4368_7778195_3423013,4368_415 -4358_80731,227,4368_11842,Ringsend Road,1069,1,4368_7778195_3423017,4368_416 -4358_80731,229,4368_11843,Ringsend Road,15404,1,4368_7778195_3423002,4368_417 -4358_80731,228,4368_11844,Ringsend Road,9255,1,4368_7778195_3423031,4368_415 -4358_80731,227,4368_11845,Ringsend Road,1094,1,4368_7778195_3423016,4368_416 -4358_80731,229,4368_11846,Ringsend Road,15441,1,4368_7778195_3423003,4368_417 -4358_80731,229,4368_11847,Ringsend Road,15338,1,4368_7778195_3423007,4368_415 -4358_80731,228,4368_11848,Ringsend Road,9246,1,4368_7778195_3423019,4368_416 -4358_80731,227,4368_11849,Ringsend Road,1051,1,4368_7778195_3423024,4368_417 -4358_80757,228,4368_1185,Marino,9907,0,4368_7778195_5123007,4368_39 -4358_80731,228,4368_11850,Ringsend Road,9074,1,4368_7778195_3423035,4368_415 -4358_80731,227,4368_11851,Ringsend Road,1071,1,4368_7778195_3423017,4368_416 -4358_80731,229,4368_11852,Ringsend Road,15406,1,4368_7778195_3423002,4368_417 -4358_80733,227,4368_11853,Dublin Ferryport,7,0,4368_7778195_6053101,4368_418 -4358_80733,227,4368_11854,Dublin Ferryport,21,0,4368_7778195_6053102,4368_418 -4358_80733,227,4368_11855,Dublin Ferryport,9,0,4368_7778195_6053101,4368_418 -4358_80733,227,4368_11856,Dublin Ferryport,23,0,4368_7778195_6053102,4368_418 -4358_80733,227,4368_11857,Dublin Ferryport,11,0,4368_7778195_6053101,4368_418 -4358_80733,227,4368_11858,Dublin Ferryport,25,0,4368_7778195_6053102,4368_418 -4358_80733,227,4368_11859,Dublin Ferryport,13,0,4368_7778195_6053101,4368_418 -4358_80757,227,4368_1186,Marino,2253,0,4368_7778195_5123002,4368_39 -4358_80733,227,4368_11860,Dublin Ferryport,27,0,4368_7778195_6053102,4368_418 -4358_80733,227,4368_11861,Dublin Ferryport,800,0,4368_7778195_6826205,4368_418 -4358_80733,227,4368_11862,Dublin Ferryport,15,0,4368_7778195_6053101,4368_418 -4358_80733,227,4368_11863,Dublin Ferryport,29,0,4368_7778195_6053102,4368_418 -4358_80733,227,4368_11864,Dublin Ferryport,801,0,4368_7778195_6826205,4368_418 -4358_80733,227,4368_11865,Dublin Ferryport,17,0,4368_7778195_6053101,4368_418 -4358_80733,227,4368_11866,Dublin Ferryport,31,0,4368_7778195_6053102,4368_418 -4358_80733,227,4368_11867,Dublin Ferryport,19,0,4368_7778195_6053101,4368_418 -4358_80733,227,4368_11868,Dublin Ferryport,33,0,4368_7778195_6053102,4368_418 -4358_80733,227,4368_11869,Talbot Street,20,1,4368_7778195_6053102,4368_419 -4358_80757,229,4368_1187,Marino,15899,0,4368_7778195_5123001,4368_39 -4358_80733,228,4368_11870,Talbot Street,7939,1,4368_7778195_6053101,4368_419 -4358_80733,227,4368_11871,Talbot Street,8,1,4368_7778195_6053101,4368_419 -4358_80733,228,4368_11872,Talbot Street,7941,1,4368_7778195_6053101,4368_419 -4358_80733,227,4368_11873,Talbot Street,22,1,4368_7778195_6053102,4368_419 -4358_80733,228,4368_11874,Talbot Street,7943,1,4368_7778195_6053101,4368_419 -4358_80733,227,4368_11875,Talbot Street,10,1,4368_7778195_6053101,4368_419 -4358_80733,228,4368_11876,Talbot Street,7945,1,4368_7778195_6053101,4368_419 -4358_80733,229,4368_11877,Talbot Street,18616,1,4368_7778195_6053101,4368_420 -4358_80733,227,4368_11878,Talbot Street,24,1,4368_7778195_6053102,4368_419 -4358_80733,228,4368_11879,Talbot Street,7947,1,4368_7778195_6053101,4368_419 -4358_80757,228,4368_1188,Marino,9762,0,4368_7778195_5123003,4368_39 -4358_80733,229,4368_11880,Talbot Street,18618,1,4368_7778195_6053101,4368_420 -4358_80733,227,4368_11881,Talbot Street,916,1,4368_7778195_6826105,4368_419 -4358_80733,229,4368_11882,Talbot Street,14948,1,4368_7778195_6826107,4368_420 -4358_80733,227,4368_11883,Talbot Street,12,1,4368_7778195_6053101,4368_419 -4358_80733,228,4368_11884,Talbot Street,7949,1,4368_7778195_6053101,4368_419 -4358_80733,229,4368_11885,Talbot Street,18620,1,4368_7778195_6053101,4368_420 -4358_80733,227,4368_11886,Talbot Street,26,1,4368_7778195_6053102,4368_419 -4358_80733,228,4368_11887,Talbot Street,7951,1,4368_7778195_6053101,4368_419 -4358_80733,229,4368_11888,Talbot Street,18622,1,4368_7778195_6053101,4368_420 -4358_80733,227,4368_11889,Talbot Street,14,1,4368_7778195_6053101,4368_419 -4358_80757,227,4368_1189,Marino,2219,0,4368_7778195_5123015,4368_39 -4358_80733,228,4368_11890,Talbot Street,7953,1,4368_7778195_6053101,4368_419 -4358_80733,227,4368_11891,Talbot Street,28,1,4368_7778195_6053102,4368_419 -4358_80733,228,4368_11892,Talbot Street,7955,1,4368_7778195_6053101,4368_419 -4358_80733,229,4368_11893,Talbot Street,18624,1,4368_7778195_6053101,4368_420 -4358_80733,227,4368_11894,Talbot Street,16,1,4368_7778195_6053101,4368_419 -4358_80733,228,4368_11895,Talbot Street,7957,1,4368_7778195_6053101,4368_419 -4358_80733,229,4368_11896,Talbot Street,18626,1,4368_7778195_6053101,4368_420 -4358_80733,227,4368_11897,Talbot Street,30,1,4368_7778195_6053102,4368_419 -4358_80733,228,4368_11898,Talbot Street,7959,1,4368_7778195_6053101,4368_419 -4358_80733,229,4368_11899,Talbot Street,18628,1,4368_7778195_6053101,4368_420 -4358_80760,228,4368_119,Shaw street,9454,0,4368_7778195_9001003,4368_1 -4358_80757,228,4368_1190,Marino,9835,0,4368_7778195_5123006,4368_39 -4358_80733,227,4368_11900,Talbot Street,18,1,4368_7778195_6053101,4368_419 -4358_80733,228,4368_11901,Talbot Street,7961,1,4368_7778195_6053101,4368_419 -4358_80733,227,4368_11902,Talbot Street,32,1,4368_7778195_6053102,4368_419 -4358_80733,228,4368_11903,Talbot Street,7963,1,4368_7778195_6053101,4368_419 -4358_80735,227,4368_11904,Kiltipper,90,0,4368_7778195_2054002,4368_421 -4358_80735,227,4368_11905,Kiltipper,53,0,4368_7778195_2054005,4368_421 -4358_80735,228,4368_11906,Kiltipper,13308,0,4368_7778195_2054001,4368_421 -4358_80735,227,4368_11907,Kiltipper,75,0,4368_7778195_2054007,4368_421 -4358_80735,227,4368_11908,Kiltipper,86,0,4368_7778195_2054001,4368_421 -4358_80735,228,4368_11909,Kiltipper,8250,0,4368_7778195_2054003,4368_421 -4358_80757,229,4368_1191,Marino,16023,0,4368_7778195_5123003,4368_41 -4358_80735,227,4368_11910,Kiltipper,35,0,4368_7778195_2054003,4368_421 -4358_80735,227,4368_11911,Kiltipper,46,0,4368_7778195_2054004,4368_421 -4358_80735,228,4368_11912,Kiltipper,13289,0,4368_7778195_2054002,4368_421 -4358_80735,227,4368_11913,Kiltipper,64,0,4368_7778195_2054006,4368_421 -4358_80735,228,4368_11914,Kiltipper,13310,0,4368_7778195_2054001,4368_421 -4358_80735,227,4368_11915,Kiltipper,55,0,4368_7778195_2054005,4368_421 -4358_80735,229,4368_11916,Kiltipper,14367,0,4368_7778195_2054001,4368_422 -4358_80735,228,4368_11917,Kiltipper,13281,0,4368_7778195_2054004,4368_421 -4358_80735,227,4368_11918,Kiltipper,77,0,4368_7778195_2054007,4368_421 -4358_80735,228,4368_11919,Kiltipper,8252,0,4368_7778195_2054003,4368_421 -4358_80757,227,4368_1192,Marino,2184,0,4368_7778195_5123018,4368_42 -4358_80735,227,4368_11920,Kiltipper,92,0,4368_7778195_2054002,4368_421 -4358_80735,229,4368_11921,Kiltipper,14382,0,4368_7778195_2054002,4368_422 -4358_80735,228,4368_11922,Kiltipper,13302,0,4368_7778195_2054005,4368_421 -4358_80735,227,4368_11923,Kiltipper,37,0,4368_7778195_2054003,4368_421 -4358_80735,228,4368_11924,Kiltipper,13291,0,4368_7778195_2054002,4368_421 -4358_80735,227,4368_11925,Kiltipper,48,0,4368_7778195_2054004,4368_421 -4358_80735,229,4368_11926,Kiltipper,14369,0,4368_7778195_2054001,4368_422 -4358_80735,228,4368_11927,Kiltipper,13312,0,4368_7778195_2054001,4368_421 -4358_80735,227,4368_11928,Kiltipper,66,0,4368_7778195_2054006,4368_421 -4358_80735,228,4368_11929,Kiltipper,13283,0,4368_7778195_2054004,4368_421 -4358_80757,227,4368_1193,Marino,2263,0,4368_7778195_5123004,4368_39 -4358_80735,227,4368_11930,Kiltipper,57,0,4368_7778195_2054005,4368_421 -4358_80735,229,4368_11931,Kiltipper,14384,0,4368_7778195_2054002,4368_422 -4358_80735,228,4368_11932,Kiltipper,8254,0,4368_7778195_2054003,4368_421 -4358_80735,227,4368_11933,Kiltipper,79,0,4368_7778195_2054007,4368_421 -4358_80735,228,4368_11934,Kiltipper,13304,0,4368_7778195_2054005,4368_421 -4358_80735,227,4368_11935,Kiltipper,94,0,4368_7778195_2054002,4368_421 -4358_80735,229,4368_11936,Kiltipper,14371,0,4368_7778195_2054001,4368_422 -4358_80735,228,4368_11937,Kiltipper,13293,0,4368_7778195_2054002,4368_421 -4358_80735,227,4368_11938,Kiltipper,39,0,4368_7778195_2054003,4368_421 -4358_80735,228,4368_11939,Kiltipper,13314,0,4368_7778195_2054001,4368_421 -4358_80757,228,4368_1194,Marino,9919,0,4368_7778195_5123015,4368_39 -4358_80735,227,4368_11940,Kiltipper,50,0,4368_7778195_2054004,4368_421 -4358_80735,229,4368_11941,Kiltipper,14386,0,4368_7778195_2054002,4368_422 -4358_80735,228,4368_11942,Kiltipper,13285,0,4368_7778195_2054004,4368_421 -4358_80735,227,4368_11943,Kiltipper,68,0,4368_7778195_2054006,4368_421 -4358_80735,228,4368_11944,Kiltipper,8256,0,4368_7778195_2054003,4368_421 -4358_80735,227,4368_11945,Kiltipper,59,0,4368_7778195_2054005,4368_421 -4358_80735,229,4368_11946,Kiltipper,14373,0,4368_7778195_2054001,4368_422 -4358_80735,228,4368_11947,Kiltipper,13306,0,4368_7778195_2054005,4368_421 -4358_80735,227,4368_11948,Kiltipper,81,0,4368_7778195_2054007,4368_421 -4358_80735,228,4368_11949,Kiltipper,13295,0,4368_7778195_2054002,4368_421 -4358_80757,229,4368_1195,Marino,16008,0,4368_7778195_5123008,4368_39 -4358_80735,227,4368_11950,Kiltipper,96,0,4368_7778195_2054002,4368_421 -4358_80735,229,4368_11951,Kiltipper,14388,0,4368_7778195_2054002,4368_422 -4358_80735,228,4368_11952,Kiltipper,13316,0,4368_7778195_2054001,4368_421 -4358_80735,227,4368_11953,Kiltipper,41,0,4368_7778195_2054003,4368_421 -4358_80735,228,4368_11954,Kiltipper,13287,0,4368_7778195_2054004,4368_421 -4358_80735,227,4368_11955,Kiltipper,52,0,4368_7778195_2054004,4368_422 -4358_80735,227,4368_11956,Kiltipper,88,0,4368_7778195_2054008,4368_421 -4358_80735,229,4368_11957,Kiltipper,14375,0,4368_7778195_2054001,4368_422 -4358_80735,228,4368_11958,Kiltipper,8258,0,4368_7778195_2054003,4368_421 -4358_80735,227,4368_11959,Kiltipper,70,0,4368_7778195_2054006,4368_421 -4358_80757,227,4368_1196,Marino,2231,0,4368_7778195_5123007,4368_39 -4358_80735,228,4368_11960,Kiltipper,13297,0,4368_7778195_2054002,4368_421 -4358_80735,227,4368_11961,Kiltipper,61,0,4368_7778195_2054005,4368_422 -4358_80735,229,4368_11962,Kiltipper,14390,0,4368_7778195_2054002,4368_423 -4358_80735,227,4368_11963,Kiltipper,83,0,4368_7778195_2054007,4368_421 -4358_80735,228,4368_11964,Kiltipper,13318,0,4368_7778195_2054001,4368_421 -4358_80735,227,4368_11965,Kiltipper,98,0,4368_7778195_2054002,4368_421 -4358_80735,229,4368_11966,Kiltipper,14377,0,4368_7778195_2054001,4368_422 -4358_80735,227,4368_11967,Kiltipper,43,0,4368_7778195_2054003,4368_421 -4358_80735,228,4368_11968,Kiltipper,13299,0,4368_7778195_2054002,4368_421 -4358_80735,229,4368_11969,Kiltipper,14392,0,4368_7778195_2054002,4368_422 -4358_80757,228,4368_1197,Marino,9769,0,4368_7778195_5123010,4368_39 -4358_80735,227,4368_11970,Kiltipper,72,0,4368_7778195_2054006,4368_421 -4358_80735,229,4368_11971,Kiltipper,14379,0,4368_7778195_2054001,4368_421 -4358_80735,228,4368_11972,Kiltipper,8260,0,4368_7778195_2054006,4368_421 -4358_80735,227,4368_11973,Kiltipper,100,0,4368_7778195_2054002,4368_421 -4358_80735,229,4368_11974,Kiltipper,14394,0,4368_7778195_2054002,4368_421 -4358_80735,228,4368_11975,Kiltipper,13301,0,4368_7778195_2054002,4368_421 -4358_80735,227,4368_11976,Kiltipper,74,0,4368_7778195_2054006,4368_422 -4358_80735,227,4368_11977,Pearse St,85,1,4368_7778195_2054001,4368_424 -4358_80735,227,4368_11978,Pearse St,34,1,4368_7778195_2054003,4368_424 -4358_80735,227,4368_11979,Pearse St,45,1,4368_7778195_2054004,4368_424 -4358_80757,227,4368_1198,Marino,2134,0,4368_7778195_5123019,4368_39 -4358_80735,228,4368_11980,Pearse St,13288,1,4368_7778195_2054002,4368_424 -4358_80735,227,4368_11981,Pearse St,91,1,4368_7778195_2054002,4368_424 -4358_80735,227,4368_11982,Pearse St,63,1,4368_7778195_2054006,4368_424 -4358_80735,228,4368_11983,Pearse St,13309,1,4368_7778195_2054001,4368_424 -4358_80735,227,4368_11984,Pearse St,54,1,4368_7778195_2054005,4368_425 -4358_80735,227,4368_11985,Pearse St,76,1,4368_7778195_2054007,4368_424 -4358_80735,229,4368_11986,Pearse St,14366,1,4368_7778195_2054001,4368_425 -4358_80735,228,4368_11987,Pearse St,8251,1,4368_7778195_2054003,4368_424 -4358_80735,227,4368_11988,Pearse St,87,1,4368_7778195_2054001,4368_425 -4358_80735,227,4368_11989,Pearse St,36,1,4368_7778195_2054003,4368_424 -4358_80757,229,4368_1199,Marino,15965,0,4368_7778195_5123004,4368_39 -4358_80735,229,4368_11990,Pearse St,14381,1,4368_7778195_2054002,4368_425 -4358_80735,228,4368_11991,Pearse St,13290,1,4368_7778195_2054002,4368_424 -4358_80735,227,4368_11992,Pearse St,47,1,4368_7778195_2054004,4368_425 -4358_80735,227,4368_11993,Pearse St,65,1,4368_7778195_2054006,4368_424 -4358_80735,228,4368_11994,Pearse St,13311,1,4368_7778195_2054001,4368_425 -4358_80735,229,4368_11995,Pearse St,14368,1,4368_7778195_2054001,4368_426 -4358_80735,228,4368_11996,Pearse St,13282,1,4368_7778195_2054004,4368_424 -4358_80735,227,4368_11997,Pearse St,56,1,4368_7778195_2054005,4368_425 -4358_80735,227,4368_11998,Pearse St,78,1,4368_7778195_2054007,4368_424 -4358_80735,228,4368_11999,Pearse St,8253,1,4368_7778195_2054003,4368_425 -4358_80760,228,4368_12,Shaw street,9442,0,4368_7778195_9001003,4368_2 -4358_80760,229,4368_120,Shaw street,15695,0,4368_7778195_9001001,4368_1 -4358_80757,228,4368_1200,Marino,9928,0,4368_7778195_5123013,4368_39 -4358_80735,229,4368_12000,Pearse St,14383,1,4368_7778195_2054002,4368_426 -4358_80735,228,4368_12001,Pearse St,13303,1,4368_7778195_2054005,4368_424 -4358_80735,227,4368_12002,Pearse St,93,1,4368_7778195_2054002,4368_425 -4358_80735,228,4368_12003,Pearse St,13292,1,4368_7778195_2054002,4368_424 -4358_80735,227,4368_12004,Pearse St,38,1,4368_7778195_2054003,4368_425 -4358_80735,229,4368_12005,Pearse St,14370,1,4368_7778195_2054001,4368_426 -4358_80735,227,4368_12006,Pearse St,49,1,4368_7778195_2054004,4368_424 -4358_80735,228,4368_12007,Pearse St,13313,1,4368_7778195_2054001,4368_425 -4358_80735,228,4368_12008,Pearse St,13284,1,4368_7778195_2054004,4368_424 -4358_80735,227,4368_12009,Pearse St,67,1,4368_7778195_2054006,4368_425 -4358_80757,227,4368_1201,Marino,2286,0,4368_7778195_5123009,4368_39 -4358_80735,229,4368_12010,Pearse St,14385,1,4368_7778195_2054002,4368_426 -4358_80735,228,4368_12011,Pearse St,8255,1,4368_7778195_2054003,4368_424 -4358_80735,227,4368_12012,Pearse St,58,1,4368_7778195_2054005,4368_425 -4358_80735,227,4368_12013,Pearse St,80,1,4368_7778195_2054007,4368_424 -4358_80735,228,4368_12014,Pearse St,13305,1,4368_7778195_2054005,4368_425 -4358_80735,229,4368_12015,Pearse St,14372,1,4368_7778195_2054001,4368_426 -4358_80735,228,4368_12016,Pearse St,13294,1,4368_7778195_2054002,4368_424 -4358_80735,227,4368_12017,Pearse St,95,1,4368_7778195_2054002,4368_425 -4358_80735,228,4368_12018,Pearse St,13315,1,4368_7778195_2054001,4368_424 -4358_80735,227,4368_12019,Pearse St,40,1,4368_7778195_2054003,4368_425 -4358_80757,228,4368_1202,Marino,9825,0,4368_7778195_5123012,4368_39 -4358_80735,229,4368_12020,Pearse St,14387,1,4368_7778195_2054002,4368_426 -4358_80735,228,4368_12021,Pearse St,13286,1,4368_7778195_2054004,4368_424 -4358_80735,227,4368_12022,Pearse St,51,1,4368_7778195_2054004,4368_425 -4358_80735,228,4368_12023,Pearse St,8257,1,4368_7778195_2054003,4368_424 -4358_80735,227,4368_12024,Pearse St,69,1,4368_7778195_2054006,4368_425 -4358_80735,229,4368_12025,Pearse St,14374,1,4368_7778195_2054001,4368_426 -4358_80735,228,4368_12026,Pearse St,13307,1,4368_7778195_2054005,4368_424 -4358_80735,227,4368_12027,Pearse St,60,1,4368_7778195_2054005,4368_425 -4358_80735,227,4368_12028,Pearse St,82,1,4368_7778195_2054007,4368_424 -4358_80735,228,4368_12029,Pearse St,13296,1,4368_7778195_2054002,4368_425 -4358_80757,229,4368_1203,Marino,16002,0,4368_7778195_5123007,4368_41 -4358_80735,229,4368_12030,Pearse St,14389,1,4368_7778195_2054002,4368_426 -4358_80735,227,4368_12031,Pearse St,97,1,4368_7778195_2054002,4368_424 -4358_80735,228,4368_12032,Pearse St,13317,1,4368_7778195_2054001,4368_425 -4358_80735,227,4368_12033,Pearse St,42,1,4368_7778195_2054003,4368_424 -4358_80735,229,4368_12034,Pearse St,14376,1,4368_7778195_2054001,4368_425 -4358_80735,228,4368_12035,Pearse St,8259,1,4368_7778195_2054003,4368_424 -4358_80735,227,4368_12036,Pearse St,89,1,4368_7778195_2054008,4368_424 -4358_80735,228,4368_12037,Pearse St,13298,1,4368_7778195_2054002,4368_424 -4358_80735,227,4368_12038,Pearse St,71,1,4368_7778195_2054006,4368_425 -4358_80735,229,4368_12039,Pearse St,14391,1,4368_7778195_2054002,4368_426 -4358_80757,227,4368_1204,Marino,2202,0,4368_7778195_5123005,4368_42 -4358_80735,227,4368_12040,Pearse St,62,1,4368_7778195_2054005,4368_424 -4358_80735,227,4368_12041,Pearse St,99,1,4368_7778195_2054002,4368_424 -4358_80735,228,4368_12042,Pearse St,13319,1,4368_7778195_2054001,4368_425 -4358_80735,229,4368_12043,Pearse St,14378,1,4368_7778195_2054001,4368_426 -4358_80735,227,4368_12044,Pearse St,44,1,4368_7778195_2054003,4368_424 -4358_80735,229,4368_12045,Pearse St,14393,1,4368_7778195_2054002,4368_424 -4358_80735,228,4368_12046,Pearse St,13300,1,4368_7778195_2054002,4368_424 -4358_80735,227,4368_12047,Pearse St,73,1,4368_7778195_2054006,4368_424 -4358_80735,229,4368_12048,Pearse St,14380,1,4368_7778195_2054001,4368_424 -4358_80735,228,4368_12049,Pearse St,8261,1,4368_7778195_2054006,4368_424 -4358_80757,227,4368_1205,Marino,2179,0,4368_7778195_5123006,4368_39 -4358_80735,227,4368_12050,Pearse St,101,1,4368_7778195_2054002,4368_425 -4358_80736,227,4368_12051,The Square,1137,0,4368_7778195_3056002,4368_427 -4358_80736,228,4368_12052,The Square,8854,0,4368_7778195_3056002,4368_428 -4358_80736,228,4368_12053,The Square,13403,0,4368_7778195_3056001,4368_427 -4358_80736,227,4368_12054,The Square,1271,0,4368_7778195_3056001,4368_428 -4358_80736,227,4368_12055,The Square,1198,0,4368_7778195_3056003,4368_427 -4358_80736,228,4368_12056,The Square,8856,0,4368_7778195_3056002,4368_428 -4358_80736,229,4368_12057,The Square,15062,0,4368_7778195_3056001,4368_427 -4358_80736,227,4368_12058,The Square,1224,0,4368_7778195_3056004,4368_428 -4358_80736,228,4368_12059,The Square,13405,0,4368_7778195_3056001,4368_429 -4358_80757,229,4368_1206,Marino,15986,0,4368_7778195_5123005,4368_39 -4358_80736,227,4368_12060,The Square,1200,0,4368_7778195_3056003,4368_427 -4358_80736,229,4368_12061,The Square,15041,0,4368_7778195_3056002,4368_428 -4358_80736,228,4368_12062,The Square,8858,0,4368_7778195_3056002,4368_429 -4358_80736,229,4368_12063,The Square,15064,0,4368_7778195_3056001,4368_427 -4358_80736,227,4368_12064,The Square,1226,0,4368_7778195_3056004,4368_428 -4358_80736,228,4368_12065,The Square,13407,0,4368_7778195_3056001,4368_429 -4358_80736,227,4368_12066,The Square,1202,0,4368_7778195_3056003,4368_427 -4358_80736,228,4368_12067,The Square,8831,0,4368_7778195_3056003,4368_428 -4358_80736,229,4368_12068,The Square,15043,0,4368_7778195_3056002,4368_429 -4358_80736,229,4368_12069,The Square,15066,0,4368_7778195_3056001,4368_427 -4358_80757,228,4368_1207,Marino,9791,0,4368_7778195_5123004,4368_41 -4358_80736,227,4368_12070,The Square,1228,0,4368_7778195_3056004,4368_428 -4358_80736,228,4368_12071,The Square,13409,0,4368_7778195_3056001,4368_429 -4358_80736,227,4368_12072,The Square,1204,0,4368_7778195_3056003,4368_427 -4358_80736,228,4368_12073,The Square,8833,0,4368_7778195_3056003,4368_428 -4358_80736,229,4368_12074,The Square,15045,0,4368_7778195_3056002,4368_429 -4358_80736,229,4368_12075,The Square,15068,0,4368_7778195_3056001,4368_427 -4358_80736,227,4368_12076,The Square,1230,0,4368_7778195_3056004,4368_428 -4358_80736,228,4368_12077,The Square,13411,0,4368_7778195_3056001,4368_429 -4358_80736,227,4368_12078,The Square,1299,0,4368_7778195_3056005,4368_427 -4358_80736,228,4368_12079,The Square,8835,0,4368_7778195_3056003,4368_428 -4358_80757,227,4368_1208,Marino,2323,0,4368_7778195_5123017,4368_39 -4358_80736,229,4368_12080,The Square,15047,0,4368_7778195_3056002,4368_429 -4358_80736,229,4368_12081,The Square,15070,0,4368_7778195_3056001,4368_427 -4358_80736,227,4368_12082,The Square,1314,0,4368_7778195_3056006,4368_428 -4358_80736,228,4368_12083,The Square,13413,0,4368_7778195_3056001,4368_429 -4358_80736,227,4368_12084,The Square,1301,0,4368_7778195_3056005,4368_427 -4358_80736,228,4368_12085,The Square,8837,0,4368_7778195_3056003,4368_428 -4358_80736,229,4368_12086,The Square,15049,0,4368_7778195_3056002,4368_429 -4358_80736,229,4368_12087,The Square,15072,0,4368_7778195_3056001,4368_427 -4358_80736,227,4368_12088,The Square,1316,0,4368_7778195_3056006,4368_428 -4358_80736,228,4368_12089,The Square,13415,0,4368_7778195_3056001,4368_429 -4358_80757,229,4368_1209,Marino,15975,0,4368_7778195_5123002,4368_39 -4358_80736,227,4368_12090,The Square,1303,0,4368_7778195_3056005,4368_427 -4358_80736,228,4368_12091,The Square,8839,0,4368_7778195_3056003,4368_428 -4358_80736,229,4368_12092,The Square,15051,0,4368_7778195_3056002,4368_429 -4358_80736,228,4368_12093,Ringsend Road,13402,1,4368_7778195_3056001,4368_430 -4358_80736,227,4368_12094,Ringsend Road,1270,1,4368_7778195_3056001,4368_431 -4358_80736,227,4368_12095,Ringsend Road,1138,1,4368_7778195_3056002,4368_430 -4358_80736,228,4368_12096,Ringsend Road,8855,1,4368_7778195_3056002,4368_431 -4358_80736,228,4368_12097,Ringsend Road,13404,1,4368_7778195_3056001,4368_430 -4358_80736,227,4368_12098,Ringsend Road,1272,1,4368_7778195_3056001,4368_431 -4358_80736,227,4368_12099,Ringsend Road,1199,1,4368_7778195_3056003,4368_430 -4358_80760,227,4368_121,Shaw street,1801,0,4368_7778195_9001012,4368_2 -4358_80757,228,4368_1210,Marino,9939,0,4368_7778195_5123014,4368_41 -4358_80736,228,4368_12100,Ringsend Road,8857,1,4368_7778195_3056002,4368_431 -4358_80736,229,4368_12101,Ringsend Road,15063,1,4368_7778195_3056001,4368_430 -4358_80736,227,4368_12102,Ringsend Road,1225,1,4368_7778195_3056004,4368_431 -4358_80736,228,4368_12103,Ringsend Road,13406,1,4368_7778195_3056001,4368_432 -4358_80736,227,4368_12104,Ringsend Road,1201,1,4368_7778195_3056003,4368_430 -4358_80736,229,4368_12105,Ringsend Road,15042,1,4368_7778195_3056002,4368_431 -4358_80736,228,4368_12106,Ringsend Road,8859,1,4368_7778195_3056002,4368_432 -4358_80736,229,4368_12107,Ringsend Road,15065,1,4368_7778195_3056001,4368_430 -4358_80736,227,4368_12108,Ringsend Road,1227,1,4368_7778195_3056004,4368_431 -4358_80736,228,4368_12109,Ringsend Road,13408,1,4368_7778195_3056001,4368_432 -4358_80757,227,4368_1211,Marino,2096,0,4368_7778195_5123016,4368_39 -4358_80736,227,4368_12110,Ringsend Road,1203,1,4368_7778195_3056003,4368_430 -4358_80736,228,4368_12111,Ringsend Road,8832,1,4368_7778195_3056003,4368_431 -4358_80736,229,4368_12112,Ringsend Road,15044,1,4368_7778195_3056002,4368_432 -4358_80736,229,4368_12113,Ringsend Road,15067,1,4368_7778195_3056001,4368_430 -4358_80736,227,4368_12114,Ringsend Road,1229,1,4368_7778195_3056004,4368_431 -4358_80736,228,4368_12115,Ringsend Road,13410,1,4368_7778195_3056001,4368_432 -4358_80736,227,4368_12116,Ringsend Road,1298,1,4368_7778195_3056005,4368_430 -4358_80736,228,4368_12117,Ringsend Road,8834,1,4368_7778195_3056003,4368_431 -4358_80736,229,4368_12118,Ringsend Road,15046,1,4368_7778195_3056002,4368_432 -4358_80736,229,4368_12119,Ringsend Road,15069,1,4368_7778195_3056001,4368_430 -4358_80757,227,4368_1212,Marino,2277,0,4368_7778195_5123008,4368_39 -4358_80736,227,4368_12120,Ringsend Road,1313,1,4368_7778195_3056006,4368_431 -4358_80736,228,4368_12121,Ringsend Road,13412,1,4368_7778195_3056001,4368_432 -4358_80736,227,4368_12122,Ringsend Road,1300,1,4368_7778195_3056005,4368_430 -4358_80736,228,4368_12123,Ringsend Road,8836,1,4368_7778195_3056003,4368_431 -4358_80736,229,4368_12124,Ringsend Road,15048,1,4368_7778195_3056002,4368_432 -4358_80736,229,4368_12125,Ringsend Road,15071,1,4368_7778195_3056001,4368_430 -4358_80736,227,4368_12126,Ringsend Road,1315,1,4368_7778195_3056006,4368_431 -4358_80736,228,4368_12127,Ringsend Road,13414,1,4368_7778195_3056001,4368_432 -4358_80736,227,4368_12128,Ringsend Road,1302,1,4368_7778195_3056005,4368_430 -4358_80736,228,4368_12129,Ringsend Road,8838,1,4368_7778195_3056003,4368_431 -4358_80757,228,4368_1213,Marino,9933,0,4368_7778195_5123016,4368_41 -4358_80736,229,4368_12130,Ringsend Road,15050,1,4368_7778195_3056002,4368_432 -4358_80736,229,4368_12131,Ringsend Road,15073,1,4368_7778195_3056001,4368_430 -4358_80736,227,4368_12132,Ringsend Road,1317,1,4368_7778195_3056006,4368_431 -4358_80736,228,4368_12133,Ringsend Road,13416,1,4368_7778195_3056001,4368_432 -4358_80679,227,4368_12134,Howth Station,5488,0,4368_7778195_6006002,4368_433 -4358_80679,228,4368_12135,Howth Station,12231,0,4368_7778195_6006001,4368_433 -4358_80679,227,4368_12136,Howth Station,5544,0,4368_7778195_6006001,4368_433 -4358_80679,229,4368_12137,Howth Station,17955,0,4368_7778195_6006001,4368_433 -4358_80679,228,4368_12138,Howth Station,12302,0,4368_7778195_6006003,4368_433 -4358_80679,227,4368_12139,Howth Station,799,0,4368_7778195_6826112,4368_433 -4358_80757,229,4368_1214,Marino,15995,0,4368_7778195_5123006,4368_42 -4358_80679,229,4368_12140,Howth Station,17979,0,4368_7778195_6006003,4368_433 -4358_80679,227,4368_12141,Howth Station,5537,0,4368_7778195_6006004,4368_434 -4358_80679,228,4368_12142,Howth Station,12343,0,4368_7778195_6006002,4368_433 -4358_80679,227,4368_12143,Howth Station,5490,0,4368_7778195_6006002,4368_433 -4358_80679,228,4368_12144,Howth Station,12233,0,4368_7778195_6006001,4368_434 -4358_80679,229,4368_12145,Howth Station,17968,0,4368_7778195_6006002,4368_435 -4358_80679,227,4368_12146,Howth Station,5649,0,4368_7778195_6006005,4368_433 -4358_80679,229,4368_12147,Howth Station,17957,0,4368_7778195_6006001,4368_434 -4358_80679,228,4368_12148,Howth Station,12304,0,4368_7778195_6006003,4368_435 -4358_80679,229,4368_12149,Howth Station,17981,0,4368_7778195_6006003,4368_433 -4358_80757,227,4368_1215,Marino,2308,0,4368_7778195_5123012,4368_39 -4358_80679,228,4368_12150,Howth Station,12345,0,4368_7778195_6006002,4368_434 -4358_80679,227,4368_12151,Howth Station,5539,0,4368_7778195_6006004,4368_435 -4358_80679,227,4368_12152,Howth Station,5492,0,4368_7778195_6006002,4368_433 -4358_80679,228,4368_12153,Howth Station,12235,0,4368_7778195_6006001,4368_434 -4358_80679,229,4368_12154,Howth Station,17970,0,4368_7778195_6006002,4368_435 -4358_80679,227,4368_12155,Howth Station,5651,0,4368_7778195_6006005,4368_433 -4358_80679,229,4368_12156,Howth Station,17959,0,4368_7778195_6006001,4368_434 -4358_80679,228,4368_12157,Howth Station,12306,0,4368_7778195_6006003,4368_435 -4358_80679,229,4368_12158,Howth Station,17983,0,4368_7778195_6006003,4368_433 -4358_80679,228,4368_12159,Howth Station,12347,0,4368_7778195_6006002,4368_434 -4358_80757,228,4368_1216,Marino,9943,0,4368_7778195_5123017,4368_41 -4358_80679,227,4368_12160,Howth Station,5541,0,4368_7778195_6006004,4368_435 -4358_80679,227,4368_12161,Howth Station,5494,0,4368_7778195_6006002,4368_433 -4358_80679,228,4368_12162,Howth Station,12237,0,4368_7778195_6006001,4368_434 -4358_80679,229,4368_12163,Howth Station,17972,0,4368_7778195_6006002,4368_435 -4358_80679,227,4368_12164,Howth Station,5653,0,4368_7778195_6006005,4368_433 -4358_80679,229,4368_12165,Howth Station,17961,0,4368_7778195_6006001,4368_434 -4358_80679,228,4368_12166,Howth Station,12308,0,4368_7778195_6006003,4368_435 -4358_80679,229,4368_12167,Howth Station,17985,0,4368_7778195_6006003,4368_433 -4358_80679,227,4368_12168,Howth Station,5555,0,4368_7778195_6006006,4368_434 -4358_80679,228,4368_12169,Howth Station,12266,0,4368_7778195_6006004,4368_435 -4358_80757,229,4368_1217,Marino,16025,0,4368_7778195_5123003,4368_39 -4358_80679,227,4368_12170,Howth Station,5496,0,4368_7778195_6006002,4368_433 -4358_80679,228,4368_12171,Howth Station,12239,0,4368_7778195_6006001,4368_434 -4358_80679,229,4368_12172,Howth Station,17974,0,4368_7778195_6006002,4368_435 -4358_80679,227,4368_12173,Howth Station,5655,0,4368_7778195_6006005,4368_433 -4358_80679,229,4368_12174,Howth Station,17963,0,4368_7778195_6006001,4368_434 -4358_80679,228,4368_12175,Howth Station,12310,0,4368_7778195_6006003,4368_435 -4358_80679,229,4368_12176,Howth Station,17987,0,4368_7778195_6006003,4368_433 -4358_80679,227,4368_12177,Howth Station,5557,0,4368_7778195_6006006,4368_434 -4358_80679,228,4368_12178,Howth Station,12268,0,4368_7778195_6006004,4368_435 -4358_80679,227,4368_12179,Howth Station,5498,0,4368_7778195_6006002,4368_433 -4358_80757,228,4368_1218,Marino,9921,0,4368_7778195_5123015,4368_39 -4358_80679,228,4368_12180,Howth Station,12241,0,4368_7778195_6006001,4368_434 -4358_80679,229,4368_12181,Howth Station,17976,0,4368_7778195_6006002,4368_435 -4358_80679,227,4368_12182,Howth Station,5657,0,4368_7778195_6006005,4368_433 -4358_80679,229,4368_12183,Howth Station,17965,0,4368_7778195_6006001,4368_434 -4358_80679,228,4368_12184,Howth Station,12312,0,4368_7778195_6006003,4368_435 -4358_80679,229,4368_12185,Howth Station,17989,0,4368_7778195_6006003,4368_433 -4358_80679,227,4368_12186,Howth Station,5559,0,4368_7778195_6006006,4368_434 -4358_80679,228,4368_12187,Howth Station,12270,0,4368_7778195_6006004,4368_435 -4358_80679,227,4368_12188,Howth Station,5500,0,4368_7778195_6006002,4368_433 -4358_80679,228,4368_12189,Howth Station,12243,0,4368_7778195_6006001,4368_434 -4358_80757,227,4368_1219,Marino,2265,0,4368_7778195_5123004,4368_41 -4358_80679,229,4368_12190,Howth Station,17978,0,4368_7778195_6006002,4368_435 -4358_80679,227,4368_12191,Abbey St Lower,5543,1,4368_7778195_6006001,4368_436 -4358_80679,228,4368_12192,Abbey St Lower,12342,1,4368_7778195_6006002,4368_436 -4358_80679,227,4368_12193,Abbey St Lower,5595,1,4368_7778195_6006003,4368_436 -4358_80679,227,4368_12194,Abbey St Lower,5489,1,4368_7778195_6006002,4368_436 -4358_80679,228,4368_12195,Abbey St Lower,12232,1,4368_7778195_6006001,4368_436 -4358_80679,229,4368_12196,Abbey St Lower,17967,1,4368_7778195_6006002,4368_437 -4358_80679,227,4368_12197,Abbey St Lower,5545,1,4368_7778195_6006001,4368_436 -4358_80679,227,4368_12198,Abbey St Lower,5648,1,4368_7778195_6006005,4368_436 -4358_80679,229,4368_12199,Abbey St Lower,17956,1,4368_7778195_6006001,4368_437 -4358_80760,228,4368_122,Shaw street,9492,0,4368_7778195_9001004,4368_1 -4358_80757,229,4368_1220,Marino,16010,0,4368_7778195_5123008,4368_39 -4358_80679,228,4368_12200,Abbey St Lower,12303,1,4368_7778195_6006003,4368_438 -4358_80679,229,4368_12201,Abbey St Lower,17980,1,4368_7778195_6006003,4368_436 -4358_80679,228,4368_12202,Abbey St Lower,12344,1,4368_7778195_6006002,4368_437 -4358_80679,227,4368_12203,Abbey St Lower,5538,1,4368_7778195_6006004,4368_438 -4358_80679,227,4368_12204,Abbey St Lower,5491,1,4368_7778195_6006002,4368_436 -4358_80679,228,4368_12205,Abbey St Lower,12234,1,4368_7778195_6006001,4368_437 -4358_80679,229,4368_12206,Abbey St Lower,17969,1,4368_7778195_6006002,4368_438 -4358_80679,227,4368_12207,Abbey St Lower,5650,1,4368_7778195_6006005,4368_436 -4358_80679,229,4368_12208,Abbey St Lower,17958,1,4368_7778195_6006001,4368_437 -4358_80679,228,4368_12209,Abbey St Lower,12305,1,4368_7778195_6006003,4368_438 -4358_80757,227,4368_1221,Marino,2288,0,4368_7778195_5123009,4368_41 -4358_80679,229,4368_12210,Abbey St Lower,17982,1,4368_7778195_6006003,4368_436 -4358_80679,228,4368_12211,Abbey St Lower,12346,1,4368_7778195_6006002,4368_437 -4358_80679,227,4368_12212,Abbey St Lower,5540,1,4368_7778195_6006004,4368_438 -4358_80679,227,4368_12213,Abbey St Lower,5493,1,4368_7778195_6006002,4368_436 -4358_80679,228,4368_12214,Abbey St Lower,12236,1,4368_7778195_6006001,4368_437 -4358_80679,229,4368_12215,Abbey St Lower,17971,1,4368_7778195_6006002,4368_438 -4358_80679,227,4368_12216,Abbey St Lower,5652,1,4368_7778195_6006005,4368_436 -4358_80679,229,4368_12217,Abbey St Lower,17960,1,4368_7778195_6006001,4368_437 -4358_80679,228,4368_12218,Abbey St Lower,12307,1,4368_7778195_6006003,4368_438 -4358_80679,229,4368_12219,Abbey St Lower,17984,1,4368_7778195_6006003,4368_436 -4358_80757,228,4368_1222,Marino,9771,0,4368_7778195_5123010,4368_42 -4358_80679,228,4368_12220,Abbey St Lower,12348,1,4368_7778195_6006002,4368_437 -4358_80679,227,4368_12221,Abbey St Lower,5542,1,4368_7778195_6006004,4368_438 -4358_80679,227,4368_12222,Abbey St Lower,5495,1,4368_7778195_6006002,4368_436 -4358_80679,228,4368_12223,Abbey St Lower,12238,1,4368_7778195_6006001,4368_437 -4358_80679,229,4368_12224,Abbey St Lower,17973,1,4368_7778195_6006002,4368_438 -4358_80679,227,4368_12225,Abbey St Lower,5654,1,4368_7778195_6006005,4368_436 -4358_80679,229,4368_12226,Abbey St Lower,17962,1,4368_7778195_6006001,4368_437 -4358_80679,228,4368_12227,Abbey St Lower,12309,1,4368_7778195_6006003,4368_438 -4358_80679,229,4368_12228,Abbey St Lower,17986,1,4368_7778195_6006003,4368_436 -4358_80679,227,4368_12229,Abbey St Lower,5556,1,4368_7778195_6006006,4368_437 -4358_80757,228,4368_1223,Marino,9930,0,4368_7778195_5123013,4368_39 -4358_80679,228,4368_12230,Abbey St Lower,12267,1,4368_7778195_6006004,4368_438 -4358_80679,227,4368_12231,Abbey St Lower,5497,1,4368_7778195_6006002,4368_436 -4358_80679,228,4368_12232,Abbey St Lower,12240,1,4368_7778195_6006001,4368_437 -4358_80679,229,4368_12233,Abbey St Lower,17975,1,4368_7778195_6006002,4368_438 -4358_80679,227,4368_12234,Abbey St Lower,5656,1,4368_7778195_6006005,4368_436 -4358_80679,229,4368_12235,Abbey St Lower,17964,1,4368_7778195_6006001,4368_437 -4358_80679,228,4368_12236,Abbey St Lower,12311,1,4368_7778195_6006003,4368_438 -4358_80679,229,4368_12237,Abbey St Lower,17988,1,4368_7778195_6006003,4368_436 -4358_80679,227,4368_12238,Abbey St Lower,5558,1,4368_7778195_6006006,4368_437 -4358_80679,228,4368_12239,Abbey St Lower,12269,1,4368_7778195_6006004,4368_438 -4358_80757,227,4368_1224,Marino,2204,0,4368_7778195_5123005,4368_41 -4358_80679,227,4368_12240,Abbey St Lower,5499,1,4368_7778195_6006002,4368_436 -4358_80679,228,4368_12241,Abbey St Lower,12242,1,4368_7778195_6006001,4368_437 -4358_80679,229,4368_12242,Abbey St Lower,17977,1,4368_7778195_6006002,4368_438 -4358_80679,227,4368_12243,Abbey St Lower,5658,1,4368_7778195_6006005,4368_436 -4358_80679,229,4368_12244,Abbey St Lower,17966,1,4368_7778195_6006001,4368_437 -4358_80679,228,4368_12245,Abbey St Lower,12313,1,4368_7778195_6006003,4368_438 -4358_80737,227,4368_12246,Red Cow Luas,6615,0,4368_7778195_4060002,4368_439 -4358_80737,227,4368_12247,Red Cow Luas,4411,0,4368_7778195_4060001,4368_439 -4358_80737,228,4368_12248,Red Cow Luas,11572,0,4368_7778195_4060002,4368_440 -4358_80737,229,4368_12249,Red Cow Luas,17348,0,4368_7778195_4060001,4368_439 -4358_80757,229,4368_1225,Marino,16013,0,4368_7778195_5123009,4368_39 -4358_80737,228,4368_12250,Red Cow Luas,11561,0,4368_7778195_4060001,4368_440 -4358_80737,227,4368_12251,Red Cow Luas,4414,0,4368_7778195_4060003,4368_441 -4358_80737,228,4368_12252,Red Cow Luas,11585,0,4368_7778195_4060003,4368_439 -4358_80737,229,4368_12253,Red Cow Luas,17323,0,4368_7778195_4060003,4368_440 -4358_80737,227,4368_12254,Red Cow Luas,6617,0,4368_7778195_4060002,4368_441 -4358_80737,229,4368_12255,Red Cow Luas,17352,0,4368_7778195_4060002,4368_439 -4358_80737,227,4368_12256,Red Cow Luas,4421,0,4368_7778195_4060004,4368_440 -4358_80737,228,4368_12257,Red Cow Luas,11574,0,4368_7778195_4060002,4368_441 -4358_80737,229,4368_12258,Red Cow Luas,17350,0,4368_7778195_4060001,4368_439 -4358_80737,228,4368_12259,Red Cow Luas,11563,0,4368_7778195_4060001,4368_440 -4358_80757,227,4368_1226,Marino,2325,0,4368_7778195_5123017,4368_39 -4358_80737,227,4368_12260,Red Cow Luas,4416,0,4368_7778195_4060003,4368_441 -4358_80737,228,4368_12261,Red Cow Luas,11587,0,4368_7778195_4060003,4368_439 -4358_80737,229,4368_12262,Red Cow Luas,17325,0,4368_7778195_4060003,4368_440 -4358_80737,227,4368_12263,Red Cow Luas,6619,0,4368_7778195_4060002,4368_441 -4358_80737,229,4368_12264,Red Cow Luas,17354,0,4368_7778195_4060002,4368_439 -4358_80737,227,4368_12265,Red Cow Luas,4423,0,4368_7778195_4060004,4368_440 -4358_80737,228,4368_12266,Red Cow Luas,11576,0,4368_7778195_4060002,4368_441 -4358_80737,229,4368_12267,Red Cow Luas,17363,0,4368_7778195_4060004,4368_439 -4358_80737,228,4368_12268,Red Cow Luas,11565,0,4368_7778195_4060001,4368_440 -4358_80737,227,4368_12269,Red Cow Luas,4418,0,4368_7778195_4060003,4368_441 -4358_80757,228,4368_1227,Marino,9793,0,4368_7778195_5123004,4368_41 -4358_80737,228,4368_12270,Red Cow Luas,11589,0,4368_7778195_4060004,4368_439 -4358_80737,229,4368_12271,Red Cow Luas,17366,0,4368_7778195_4060005,4368_440 -4358_80737,227,4368_12272,Red Cow Luas,4432,0,4368_7778195_4060005,4368_441 -4358_80737,229,4368_12273,Red Cow Luas,17356,0,4368_7778195_4060002,4368_439 -4358_80737,227,4368_12274,Red Cow Luas,4425,0,4368_7778195_4060004,4368_440 -4358_80737,228,4368_12275,Red Cow Luas,11578,0,4368_7778195_4060002,4368_441 -4358_80737,227,4368_12276,Red Cow Luas,5243,0,4368_7778195_4824216,4368_439 -4358_80737,229,4368_12277,Red Cow Luas,17368,0,4368_7778195_4060006,4368_439 -4358_80737,228,4368_12278,Red Cow Luas,11567,0,4368_7778195_4060001,4368_440 -4358_80737,227,4368_12279,Red Cow Luas,4420,0,4368_7778195_4060003,4368_441 -4358_80757,229,4368_1228,Marino,15977,0,4368_7778195_5123002,4368_39 -4358_80737,228,4368_12280,Red Cow Luas,11591,0,4368_7778195_4060004,4368_439 -4358_80737,227,4368_12281,Red Cow Luas,4434,0,4368_7778195_4060005,4368_440 -4358_80737,229,4368_12282,Red Cow Luas,17334,0,4368_7778195_4060007,4368_441 -4358_80737,229,4368_12283,Red Cow Luas,17358,0,4368_7778195_4060002,4368_439 -4358_80737,227,4368_12284,Red Cow Luas,4427,0,4368_7778195_4060004,4368_440 -4358_80737,228,4368_12285,Red Cow Luas,11580,0,4368_7778195_4060002,4368_441 -4358_80737,229,4368_12286,Red Cow Luas,17370,0,4368_7778195_4060006,4368_439 -4358_80737,228,4368_12287,Red Cow Luas,11569,0,4368_7778195_4060001,4368_440 -4358_80737,227,4368_12288,Red Cow Luas,4440,0,4368_7778195_4060006,4368_441 -4358_80737,228,4368_12289,Red Cow Luas,11593,0,4368_7778195_4060004,4368_439 -4358_80757,228,4368_1229,Marino,9941,0,4368_7778195_5123014,4368_41 -4358_80737,227,4368_12290,Red Cow Luas,4436,0,4368_7778195_4060005,4368_440 -4358_80737,229,4368_12291,Red Cow Luas,17336,0,4368_7778195_4060007,4368_441 -4358_80737,229,4368_12292,Red Cow Luas,17360,0,4368_7778195_4060002,4368_439 -4358_80737,227,4368_12293,Red Cow Luas,4429,0,4368_7778195_4060004,4368_440 -4358_80737,228,4368_12294,Red Cow Luas,11582,0,4368_7778195_4060002,4368_441 -4358_80737,229,4368_12295,Red Cow Luas,17372,0,4368_7778195_4060006,4368_439 -4358_80737,228,4368_12296,Red Cow Luas,11571,0,4368_7778195_4060001,4368_440 -4358_80737,227,4368_12297,Red Cow Luas,4442,0,4368_7778195_4060006,4368_441 -4358_80737,228,4368_12298,Red Cow Luas,11595,0,4368_7778195_4060004,4368_439 -4358_80737,227,4368_12299,Red Cow Luas,4438,0,4368_7778195_4060005,4368_440 -4358_80760,227,4368_123,Shaw street,1853,0,4368_7778195_9001006,4368_1 -4358_80757,227,4368_1230,Marino,2098,0,4368_7778195_5123016,4368_42 -4358_80737,229,4368_12300,Red Cow Luas,17338,0,4368_7778195_4060007,4368_441 -4358_80737,227,4368_12301,John Rogerson Qy,4410,1,4368_7778195_4060001,4368_442 -4358_80737,228,4368_12302,John Rogerson Qy,11560,1,4368_7778195_4060001,4368_442 -4358_80737,227,4368_12303,John Rogerson Qy,4413,1,4368_7778195_4060003,4368_444 -4358_80737,228,4368_12304,John Rogerson Qy,11584,1,4368_7778195_4060003,4368_442 -4358_80737,227,4368_12305,John Rogerson Qy,6616,1,4368_7778195_4060002,4368_444 -4358_80737,229,4368_12306,John Rogerson Qy,17351,1,4368_7778195_4060002,4368_442 -4358_80737,227,4368_12307,John Rogerson Qy,4412,1,4368_7778195_4060001,4368_444 -4358_80737,228,4368_12308,John Rogerson Qy,11573,1,4368_7778195_4060002,4368_445 -4358_80737,227,4368_12309,John Rogerson Qy,5242,1,4368_7778195_4824116,4368_443 -4358_80757,228,4368_1231,Marino,9935,0,4368_7778195_5123016,4368_39 -4358_80737,229,4368_12310,John Rogerson Qy,17349,1,4368_7778195_4060001,4368_442 -4358_80737,228,4368_12311,John Rogerson Qy,11562,1,4368_7778195_4060001,4368_444 -4358_80737,227,4368_12312,John Rogerson Qy,4415,1,4368_7778195_4060003,4368_445 -4358_80737,228,4368_12313,John Rogerson Qy,11586,1,4368_7778195_4060003,4368_442 -4358_80737,229,4368_12314,John Rogerson Qy,17324,1,4368_7778195_4060003,4368_444 -4358_80737,227,4368_12315,John Rogerson Qy,6618,1,4368_7778195_4060002,4368_445 -4358_80737,229,4368_12316,John Rogerson Qy,17353,1,4368_7778195_4060002,4368_442 -4358_80737,227,4368_12317,John Rogerson Qy,4422,1,4368_7778195_4060004,4368_444 -4358_80737,228,4368_12318,John Rogerson Qy,11575,1,4368_7778195_4060002,4368_445 -4358_80737,229,4368_12319,John Rogerson Qy,17362,1,4368_7778195_4060004,4368_442 -4358_80757,227,4368_1232,Marino,2310,0,4368_7778195_5123012,4368_41 -4358_80737,228,4368_12320,John Rogerson Qy,11564,1,4368_7778195_4060001,4368_444 -4358_80737,227,4368_12321,John Rogerson Qy,4417,1,4368_7778195_4060003,4368_445 -4358_80737,228,4368_12322,John Rogerson Qy,11588,1,4368_7778195_4060004,4368_442 -4358_80737,229,4368_12323,John Rogerson Qy,17365,1,4368_7778195_4060005,4368_444 -4358_80737,227,4368_12324,John Rogerson Qy,4431,1,4368_7778195_4060005,4368_445 -4358_80737,229,4368_12325,John Rogerson Qy,17355,1,4368_7778195_4060002,4368_442 -4358_80737,227,4368_12326,John Rogerson Qy,4424,1,4368_7778195_4060004,4368_444 -4358_80737,228,4368_12327,John Rogerson Qy,11577,1,4368_7778195_4060002,4368_445 -4358_80737,229,4368_12328,John Rogerson Qy,17364,1,4368_7778195_4060004,4368_442 -4358_80737,228,4368_12329,John Rogerson Qy,11566,1,4368_7778195_4060001,4368_444 -4358_80757,229,4368_1233,Marino,16027,0,4368_7778195_5123003,4368_39 -4358_80737,227,4368_12330,John Rogerson Qy,4419,1,4368_7778195_4060003,4368_445 -4358_80737,228,4368_12331,John Rogerson Qy,11590,1,4368_7778195_4060004,4368_442 -4358_80737,229,4368_12332,John Rogerson Qy,17367,1,4368_7778195_4060005,4368_444 -4358_80737,227,4368_12333,John Rogerson Qy,4433,1,4368_7778195_4060005,4368_445 -4358_80737,229,4368_12334,John Rogerson Qy,17357,1,4368_7778195_4060002,4368_442 -4358_80737,227,4368_12335,John Rogerson Qy,4426,1,4368_7778195_4060004,4368_444 -4358_80737,228,4368_12336,John Rogerson Qy,11579,1,4368_7778195_4060002,4368_445 -4358_80737,229,4368_12337,John Rogerson Qy,17369,1,4368_7778195_4060006,4368_442 -4358_80737,228,4368_12338,John Rogerson Qy,11568,1,4368_7778195_4060001,4368_444 -4358_80737,227,4368_12339,John Rogerson Qy,4439,1,4368_7778195_4060006,4368_445 -4358_80757,227,4368_1234,Marino,2267,0,4368_7778195_5123004,4368_39 -4358_80737,228,4368_12340,John Rogerson Qy,11592,1,4368_7778195_4060004,4368_442 -4358_80737,227,4368_12341,John Rogerson Qy,4435,1,4368_7778195_4060005,4368_444 -4358_80737,229,4368_12342,John Rogerson Qy,17335,1,4368_7778195_4060007,4368_445 -4358_80737,229,4368_12343,John Rogerson Qy,17359,1,4368_7778195_4060002,4368_442 -4358_80737,227,4368_12344,John Rogerson Qy,4428,1,4368_7778195_4060004,4368_444 -4358_80737,228,4368_12345,John Rogerson Qy,11581,1,4368_7778195_4060002,4368_445 -4358_80737,229,4368_12346,John Rogerson Qy,17371,1,4368_7778195_4060006,4368_442 -4358_80737,228,4368_12347,John Rogerson Qy,11570,1,4368_7778195_4060001,4368_444 -4358_80737,227,4368_12348,John Rogerson Qy,4441,1,4368_7778195_4060006,4368_445 -4358_80737,228,4368_12349,John Rogerson Qy,11594,1,4368_7778195_4060004,4368_442 -4358_80757,228,4368_1235,Marino,9945,0,4368_7778195_5123017,4368_41 -4358_80737,227,4368_12350,John Rogerson Qy,4437,1,4368_7778195_4060005,4368_444 -4358_80737,229,4368_12351,John Rogerson Qy,17337,1,4368_7778195_4060007,4368_445 -4358_80737,229,4368_12352,John Rogerson Qy,17361,1,4368_7778195_4060002,4368_442 -4358_80737,227,4368_12353,John Rogerson Qy,4430,1,4368_7778195_4060004,4368_444 -4358_80737,228,4368_12354,John Rogerson Qy,11583,1,4368_7778195_4060002,4368_445 -4358_80740,227,4368_12355,Ballyknockan,6106,0,4368_7778195_3065001,4368_449 -4358_80740,227,4368_12356,Ballymore,6114,0,4368_7778195_3065002,4368_446 -4358_80740,228,4368_12357,Ballymore,8986,0,4368_7778195_3065002,4368_448 -4358_80740,227,4368_12358,Blessington,1482,0,4368_7778195_3065006,4368_447 -4358_80740,228,4368_12359,Blessington,8970,0,4368_7778195_3065004,4368_447 -4358_80757,228,4368_1236,Marino,9923,0,4368_7778195_5123015,4368_39 -4358_80740,227,4368_12360,Ballymore,6117,0,4368_7778195_3065004,4368_446 -4358_80740,228,4368_12361,Ballymore,9001,0,4368_7778195_3065006,4368_446 -4358_80740,229,4368_12362,Blessington,15223,0,4368_7778195_3065001,4368_447 -4358_80740,228,4368_12363,Blessington,8988,0,4368_7778195_3065002,4368_447 -4358_80740,227,4368_12364,Blessington,6108,0,4368_7778195_3065001,4368_450 -4358_80740,229,4368_12365,Ballymore,15278,0,4368_7778195_3065005,4368_446 -4358_80740,228,4368_12366,Ballymore,9003,0,4368_7778195_3065006,4368_446 -4358_80740,227,4368_12367,Blessington,6119,0,4368_7778195_3065004,4368_447 -4358_80740,229,4368_12368,Ballymore,15225,0,4368_7778195_3065001,4368_448 -4358_80740,228,4368_12369,Ballymore,8990,0,4368_7778195_3065002,4368_446 -4358_80757,229,4368_1237,Marino,16012,0,4368_7778195_5123008,4368_41 -4358_80740,227,4368_12370,Blessington,6110,0,4368_7778195_3065001,4368_447 -4358_80740,229,4368_12371,Blessington,15280,0,4368_7778195_3065005,4368_450 -4358_80740,227,4368_12372,Blessington,6407,0,4368_7778195_3065521,4368_447 -4358_80740,228,4368_12373,Blessington,9005,0,4368_7778195_3065006,4368_447 -4358_80740,227,4368_12374,Blessington,6121,0,4368_7778195_3065004,4368_450 -4358_80740,229,4368_12375,Ballymore,15227,0,4368_7778195_3065001,4368_446 -4358_80740,227,4368_12376,Blessington,7877,0,4368_7778195_1065023,4368_447 -4358_80740,227,4368_12377,Blessington,1388,0,4368_7778195_3065008,4368_447 -4358_80740,227,4368_12378,Blessington,6131,0,4368_7778195_3065522,4368_447 -4358_80740,228,4368_12379,Ballymore,8992,0,4368_7778195_3065002,4368_446 -4358_80757,227,4368_1238,Marino,2290,0,4368_7778195_5123009,4368_42 -4358_80740,227,4368_12380,Ballyknockan,6112,0,4368_7778195_3065001,4368_449 -4358_80740,229,4368_12381,Ballymore,15282,0,4368_7778195_3065005,4368_448 -4358_80740,227,4368_12382,Ballymore,1443,0,4368_7778195_3065010,4368_446 -4358_80740,228,4368_12383,Ballymore,9007,0,4368_7778195_3065006,4368_448 -4358_80740,229,4368_12384,Blessington,15229,0,4368_7778195_3065001,4368_447 -4358_80740,227,4368_12385,Blessington,1390,0,4368_7778195_3065008,4368_447 -4358_80740,228,4368_12386,Blessington,8994,0,4368_7778195_3065002,4368_447 -4358_80740,229,4368_12387,Ballymore,15284,0,4368_7778195_3065005,4368_446 -4358_80740,227,4368_12388,Blessington,1361,0,4368_7778195_3065009,4368_447 -4358_80740,228,4368_12389,Ballymore,9009,0,4368_7778195_3065006,4368_446 -4358_80757,229,4368_1239,O'Connell Street,16015,0,4368_7778195_5123009,4368_40 -4358_80740,229,4368_12390,Ballymore,15231,0,4368_7778195_3065001,4368_448 -4358_80740,227,4368_12391,Ballymore,1392,0,4368_7778195_3065008,4368_446 -4358_80740,228,4368_12392,Blessington,8996,0,4368_7778195_3065002,4368_447 -4358_80740,229,4368_12393,Blessington,15286,0,4368_7778195_3065005,4368_450 -4358_80740,227,4368_12394,Poolbeg St,6116,1,4368_7778195_3065004,4368_452 -4358_80740,227,4368_12395,Poolbeg St,6127,1,4368_7778195_3065511,4368_452 -4358_80740,227,4368_12396,Poolbeg St,6107,1,4368_7778195_3065001,4368_453 -4358_80740,227,4368_12397,Poolbeg St,6115,1,4368_7778195_3065002,4368_451 -4358_80740,228,4368_12398,Poolbeg St,8987,1,4368_7778195_3065002,4368_451 -4358_80740,227,4368_12399,Poolbeg St,7878,1,4368_7778195_3065513,4368_452 -4358_80760,229,4368_124,Shaw street,15593,0,4368_7778195_9001004,4368_1 -4358_80757,228,4368_1240,O'Connell Street,9773,0,4368_7778195_5123010,4368_43 -4358_80740,227,4368_12400,Poolbeg St,1483,1,4368_7778195_3065006,4368_452 -4358_80740,228,4368_12401,Poolbeg St,8971,1,4368_7778195_3065004,4368_452 -4358_80740,228,4368_12402,Poolbeg St,9002,1,4368_7778195_3065006,4368_451 -4358_80740,227,4368_12403,Poolbeg St,6118,1,4368_7778195_3065004,4368_455 -4358_80740,229,4368_12404,Poolbeg St,15224,1,4368_7778195_3065001,4368_452 -4358_80740,228,4368_12405,Poolbeg St,8989,1,4368_7778195_3065002,4368_452 -4358_80740,227,4368_12406,Poolbeg St,6109,1,4368_7778195_3065001,4368_454 -4358_80740,229,4368_12407,Poolbeg St,15279,1,4368_7778195_3065005,4368_451 -4358_80740,228,4368_12408,Poolbeg St,9004,1,4368_7778195_3065006,4368_451 -4358_80740,227,4368_12409,Poolbeg St,6120,1,4368_7778195_3065004,4368_452 -4358_80757,227,4368_1241,O'Connell Street,2206,0,4368_7778195_5123005,4368_44 -4358_80740,229,4368_12410,Poolbeg St,15226,1,4368_7778195_3065001,4368_455 -4358_80740,228,4368_12411,Poolbeg St,8991,1,4368_7778195_3065002,4368_451 -4358_80740,227,4368_12412,Poolbeg St,6111,1,4368_7778195_3065001,4368_452 -4358_80740,229,4368_12413,Poolbeg St,15281,1,4368_7778195_3065005,4368_454 -4358_80740,227,4368_12414,Poolbeg St,6408,1,4368_7778195_3065521,4368_452 -4358_80740,228,4368_12415,Poolbeg St,9006,1,4368_7778195_3065006,4368_452 -4358_80740,229,4368_12416,Poolbeg St,15228,1,4368_7778195_3065001,4368_451 -4358_80740,227,4368_12417,Poolbeg St,6122,1,4368_7778195_3065004,4368_452 -4358_80740,227,4368_12418,Poolbeg St,1389,1,4368_7778195_3065008,4368_452 -4358_80740,228,4368_12419,Poolbeg St,8993,1,4368_7778195_3065002,4368_451 -4358_80757,227,4368_1242,Kilnamanagh Rd,2114,1,4368_7778195_5123003,4368_45 -4358_80740,229,4368_12420,Poolbeg St,15283,1,4368_7778195_3065005,4368_455 -4358_80740,227,4368_12421,Poolbeg St,6113,1,4368_7778195_3065001,4368_453 -4358_80740,228,4368_12422,Poolbeg St,9008,1,4368_7778195_3065006,4368_451 -4358_80740,229,4368_12423,Poolbeg St,15230,1,4368_7778195_3065001,4368_452 -4358_80740,227,4368_12424,Poolbeg St,1444,1,4368_7778195_3065010,4368_451 -4358_80740,227,4368_12425,Poolbeg St,1391,1,4368_7778195_3065008,4368_452 -4358_80740,228,4368_12426,Poolbeg St,8995,1,4368_7778195_3065002,4368_452 -4358_80740,229,4368_12427,Poolbeg St,15285,1,4368_7778195_3065005,4368_451 -4358_80740,228,4368_12428,Poolbeg St,9010,1,4368_7778195_3065006,4368_451 -4358_80740,229,4368_12429,Poolbeg St,15232,1,4368_7778195_3065001,4368_455 -4358_80757,227,4368_1243,Kilnamanagh Rd,2193,1,4368_7778195_5123005,4368_45 -4358_80740,227,4368_12430,Poolbeg St,1362,1,4368_7778195_3065009,4368_452 -4358_80740,227,4368_12431,Poolbeg St,1393,1,4368_7778195_3065008,4368_451 -4358_80740,228,4368_12432,Poolbeg St,8997,1,4368_7778195_3065002,4368_452 -4358_80740,229,4368_12433,Poolbeg St,15287,1,4368_7778195_3065005,4368_454 -4358_80738,227,4368_12434,Blessington,6129,0,4368_7778195_3065512,4368_456 -4358_80738,227,4368_12435,The Square,6128,1,4368_7778195_3065512,4368_457 -4358_80738,227,4368_12436,The Square,6130,1,4368_7778195_3065512,4368_457 -4358_80739,228,4368_12437,Citywest,8972,0,4368_7778195_3065001,4368_458 -4358_80739,227,4368_12438,Citywest,1423,0,4368_7778195_3065003,4368_459 -4358_80739,228,4368_12439,Citywest,8957,0,4368_7778195_3065003,4368_458 -4358_80757,227,4368_1244,Kilnamanagh Rd,2170,1,4368_7778195_5123006,4368_45 -4358_80739,227,4368_12440,Citywest,1363,0,4368_7778195_3065005,4368_459 -4358_80739,227,4368_12441,Citywest,1350,0,4368_7778195_3065007,4368_458 -4358_80739,228,4368_12442,Citywest,8948,0,4368_7778195_3065005,4368_458 -4358_80739,228,4368_12443,Citywest,8974,0,4368_7778195_3065001,4368_458 -4358_80739,227,4368_12444,Citywest,1425,0,4368_7778195_3065003,4368_459 -4358_80739,229,4368_12445,Citywest,15291,0,4368_7778195_3065003,4368_458 -4358_80739,228,4368_12446,Citywest,8959,0,4368_7778195_3065003,4368_459 -4358_80739,227,4368_12447,Citywest,1365,0,4368_7778195_3065005,4368_460 -4358_80739,228,4368_12448,Citywest,8950,0,4368_7778195_3065005,4368_458 -4358_80739,229,4368_12449,Citywest,15271,0,4368_7778195_3065002,4368_459 -4358_80757,227,4368_1245,Kilnamanagh Rd,2268,1,4368_7778195_5123008,4368_45 -4358_80739,227,4368_12450,Citywest,1352,0,4368_7778195_3065007,4368_460 -4358_80739,228,4368_12451,Citywest,8976,0,4368_7778195_3065001,4368_458 -4358_80739,227,4368_12452,Citywest,1427,0,4368_7778195_3065003,4368_459 -4358_80739,229,4368_12453,Citywest,15234,0,4368_7778195_3065004,4368_460 -4358_80739,229,4368_12454,Citywest,15293,0,4368_7778195_3065003,4368_458 -4358_80739,228,4368_12455,Citywest,8961,0,4368_7778195_3065003,4368_459 -4358_80739,227,4368_12456,Citywest,1367,0,4368_7778195_3065005,4368_460 -4358_80739,228,4368_12457,Citywest,8952,0,4368_7778195_3065005,4368_458 -4358_80739,229,4368_12458,Citywest,15273,0,4368_7778195_3065002,4368_459 -4358_80739,227,4368_12459,Citywest,1354,0,4368_7778195_3065007,4368_460 -4358_80757,228,4368_1246,Kilnamanagh Rd,9753,1,4368_7778195_5123003,4368_45 -4358_80739,228,4368_12460,Citywest,8978,0,4368_7778195_3065001,4368_458 -4358_80739,227,4368_12461,Citywest,1429,0,4368_7778195_3065003,4368_459 -4358_80739,229,4368_12462,Citywest,15236,0,4368_7778195_3065004,4368_460 -4358_80739,229,4368_12463,Citywest,15295,0,4368_7778195_3065003,4368_458 -4358_80739,228,4368_12464,Citywest,8963,0,4368_7778195_3065003,4368_459 -4358_80739,227,4368_12465,Citywest,1369,0,4368_7778195_3065005,4368_460 -4358_80739,228,4368_12466,Citywest,8954,0,4368_7778195_3065005,4368_458 -4358_80739,229,4368_12467,Citywest,15275,0,4368_7778195_3065002,4368_459 -4358_80739,227,4368_12468,Citywest,1356,0,4368_7778195_3065007,4368_460 -4358_80739,227,4368_12469,Citywest,1431,0,4368_7778195_3065003,4368_458 -4358_80757,227,4368_1247,Kilnamanagh Rd,2242,1,4368_7778195_5123010,4368_45 -4358_80739,228,4368_12470,Citywest,8980,0,4368_7778195_3065001,4368_458 -4358_80739,229,4368_12471,Citywest,15238,0,4368_7778195_3065004,4368_459 -4358_80739,227,4368_12472,Citywest,1359,0,4368_7778195_3065009,4368_458 -4358_80739,229,4368_12473,Citywest,15297,0,4368_7778195_3065003,4368_458 -4358_80739,228,4368_12474,Citywest,8965,0,4368_7778195_3065003,4368_459 -4358_80739,227,4368_12475,Citywest,1371,0,4368_7778195_3065005,4368_460 -4358_80739,228,4368_12476,Citywest,8956,0,4368_7778195_3065005,4368_458 -4358_80739,229,4368_12477,Citywest,15277,0,4368_7778195_3065002,4368_459 -4358_80739,227,4368_12478,Citywest,1358,0,4368_7778195_3065007,4368_460 -4358_80739,228,4368_12479,Citywest,8982,0,4368_7778195_3065001,4368_458 -4358_80757,228,4368_1248,Kilnamanagh Rd,9890,1,4368_7778195_5123005,4368_45 -4358_80739,227,4368_12480,Citywest,6123,0,4368_7778195_3065004,4368_459 -4358_80739,229,4368_12481,Citywest,15240,0,4368_7778195_3065004,4368_460 -4358_80739,228,4368_12482,Citywest,8967,0,4368_7778195_3065003,4368_458 -4358_80739,229,4368_12483,Citywest,15288,0,4368_7778195_3065006,4368_459 -4358_80739,227,4368_12484,Citywest,1373,0,4368_7778195_3065005,4368_458 -4358_80739,228,4368_12485,Citywest,8984,0,4368_7778195_3065001,4368_458 -4358_80739,227,4368_12486,Citywest,6125,0,4368_7778195_3065004,4368_459 -4358_80739,229,4368_12487,Citywest,15242,0,4368_7778195_3065004,4368_460 -4358_80739,228,4368_12488,Citywest,8969,0,4368_7778195_3065003,4368_458 -4358_80739,227,4368_12489,Citywest,1375,0,4368_7778195_3065005,4368_459 -4358_80757,227,4368_1249,Kilnamanagh Rd,2291,1,4368_7778195_5123011,4368_45 -4358_80739,229,4368_12490,Citywest,15290,0,4368_7778195_3065006,4368_460 -4358_80739,227,4368_12491,Poolbeg St,1424,1,4368_7778195_3065003,4368_461 -4358_80739,228,4368_12492,Poolbeg St,8973,1,4368_7778195_3065001,4368_461 -4358_80739,227,4368_12493,Poolbeg St,1364,1,4368_7778195_3065005,4368_461 -4358_80739,228,4368_12494,Poolbeg St,8958,1,4368_7778195_3065003,4368_461 -4358_80739,227,4368_12495,Poolbeg St,1351,1,4368_7778195_3065007,4368_461 -4358_80739,228,4368_12496,Poolbeg St,8949,1,4368_7778195_3065005,4368_461 -4358_80739,229,4368_12497,Poolbeg St,15270,1,4368_7778195_3065002,4368_462 -4358_80739,229,4368_12498,Poolbeg St,15233,1,4368_7778195_3065004,4368_461 -4358_80739,228,4368_12499,Poolbeg St,8975,1,4368_7778195_3065001,4368_461 -4358_80760,227,4368_125,Shaw street,1709,0,4368_7778195_9001008,4368_1 -4358_80757,228,4368_1250,Kilnamanagh Rd,9826,1,4368_7778195_5123006,4368_45 -4358_80739,227,4368_12500,Poolbeg St,1426,1,4368_7778195_3065003,4368_462 -4358_80739,229,4368_12501,Poolbeg St,15292,1,4368_7778195_3065003,4368_461 -4358_80739,228,4368_12502,Poolbeg St,8960,1,4368_7778195_3065003,4368_462 -4358_80739,227,4368_12503,Poolbeg St,1366,1,4368_7778195_3065005,4368_463 -4358_80739,228,4368_12504,Poolbeg St,8951,1,4368_7778195_3065005,4368_461 -4358_80739,229,4368_12505,Poolbeg St,15272,1,4368_7778195_3065002,4368_462 -4358_80739,227,4368_12506,Poolbeg St,1353,1,4368_7778195_3065007,4368_463 -4358_80739,228,4368_12507,Poolbeg St,8977,1,4368_7778195_3065001,4368_461 -4358_80739,227,4368_12508,Poolbeg St,1428,1,4368_7778195_3065003,4368_462 -4358_80739,229,4368_12509,Poolbeg St,15235,1,4368_7778195_3065004,4368_463 -4358_80757,227,4368_1251,Kilnamanagh Rd,2299,1,4368_7778195_5123012,4368_46 -4358_80739,229,4368_12510,Poolbeg St,15294,1,4368_7778195_3065003,4368_461 -4358_80739,228,4368_12511,Poolbeg St,8962,1,4368_7778195_3065003,4368_462 -4358_80739,227,4368_12512,Poolbeg St,1368,1,4368_7778195_3065005,4368_463 -4358_80739,228,4368_12513,Poolbeg St,8953,1,4368_7778195_3065005,4368_461 -4358_80739,229,4368_12514,Poolbeg St,15274,1,4368_7778195_3065002,4368_462 -4358_80739,227,4368_12515,Poolbeg St,1355,1,4368_7778195_3065007,4368_463 -4358_80739,228,4368_12516,Poolbeg St,8979,1,4368_7778195_3065001,4368_461 -4358_80739,227,4368_12517,Poolbeg St,1430,1,4368_7778195_3065003,4368_462 -4358_80739,229,4368_12518,Poolbeg St,15237,1,4368_7778195_3065004,4368_463 -4358_80739,229,4368_12519,Poolbeg St,15296,1,4368_7778195_3065003,4368_461 -4358_80757,227,4368_1252,Kilnamanagh Rd,2234,1,4368_7778195_5123001,4368_45 -4358_80739,228,4368_12520,Poolbeg St,8964,1,4368_7778195_3065003,4368_462 -4358_80739,227,4368_12521,Poolbeg St,1370,1,4368_7778195_3065005,4368_463 -4358_80739,228,4368_12522,Poolbeg St,8955,1,4368_7778195_3065005,4368_461 -4358_80739,229,4368_12523,Poolbeg St,15276,1,4368_7778195_3065002,4368_462 -4358_80739,227,4368_12524,Poolbeg St,1357,1,4368_7778195_3065007,4368_463 -4358_80739,228,4368_12525,Poolbeg St,8981,1,4368_7778195_3065001,4368_461 -4358_80739,227,4368_12526,Poolbeg St,1432,1,4368_7778195_3065003,4368_462 -4358_80739,229,4368_12527,Poolbeg St,15239,1,4368_7778195_3065004,4368_463 -4358_80739,227,4368_12528,Poolbeg St,1360,1,4368_7778195_3065009,4368_461 -4358_80739,229,4368_12529,Poolbeg St,15298,1,4368_7778195_3065003,4368_461 -4358_80757,228,4368_1253,Kilnamanagh Rd,9909,1,4368_7778195_5123008,4368_45 -4358_80739,228,4368_12530,Poolbeg St,8966,1,4368_7778195_3065003,4368_462 -4358_80739,227,4368_12531,Poolbeg St,1372,1,4368_7778195_3065005,4368_461 -4358_80739,228,4368_12532,Poolbeg St,8983,1,4368_7778195_3065001,4368_461 -4358_80739,227,4368_12533,Poolbeg St,6124,1,4368_7778195_3065004,4368_462 -4358_80739,229,4368_12534,Poolbeg St,15241,1,4368_7778195_3065004,4368_463 -4358_80739,228,4368_12535,Poolbeg St,8968,1,4368_7778195_3065003,4368_461 -4358_80739,229,4368_12536,Poolbeg St,15289,1,4368_7778195_3065006,4368_462 -4358_80739,227,4368_12537,Poolbeg St,1374,1,4368_7778195_3065005,4368_461 -4358_80739,228,4368_12538,Poolbeg St,8985,1,4368_7778195_3065001,4368_461 -4358_80739,227,4368_12539,Poolbeg St,6126,1,4368_7778195_3065004,4368_462 -4358_80757,227,4368_1254,Kilnamanagh Rd,2246,1,4368_7778195_5123002,4368_45 -4358_80739,229,4368_12540,Poolbeg St,15243,1,4368_7778195_3065004,4368_463 -4358_80743,227,4368_12541,Greenogue,4353,0,4368_7778195_4068005,4368_468 -4358_80743,228,4368_12542,Greenogue,13331,0,4368_7778195_4068005,4368_468 -4358_80743,227,4368_12543,Greenogue,4338,0,4368_7778195_4068001,4368_468 -4358_80743,228,4368_12544,Greenogue,11508,0,4368_7778195_4068008,4368_468 -4358_80743,228,4368_12545,Greenogue,11540,0,4368_7778195_4068006,4368_464 -4358_80743,227,4368_12546,Greenogue,4359,0,4368_7778195_4068006,4368_464 -4358_80743,229,4368_12547,Newcastle,17294,0,4368_7778195_4068001,4368_465 -4358_80743,227,4368_12548,Greenogue,4381,0,4368_7778195_4068010,4368_464 -4358_80743,228,4368_12549,Greenogue,13333,0,4368_7778195_4068005,4368_467 -4358_80757,227,4368_1255,Kilnamanagh Rd,2212,1,4368_7778195_5123015,4368_45 -4358_80743,229,4368_12550,Newcastle,17317,0,4368_7778195_4068003,4368_465 -4358_80743,228,4368_12551,Greenogue,13341,0,4368_7778195_4068009,4368_464 -4358_80743,227,4368_12552,Greenogue,4340,0,4368_7778195_4068001,4368_467 -4358_80743,228,4368_12553,Greenogue,11542,0,4368_7778195_4068006,4368_464 -4358_80743,229,4368_12554,Newcastle,17296,0,4368_7778195_4068001,4368_465 -4358_80743,227,4368_12555,Greenogue,4361,0,4368_7778195_4068006,4368_467 -4358_80743,227,4368_12556,Greenogue,4383,0,4368_7778195_4068010,4368_464 -4358_80743,228,4368_12557,Greenogue,13335,0,4368_7778195_4068005,4368_467 -4358_80743,229,4368_12558,Newcastle,17319,0,4368_7778195_4068003,4368_465 -4358_80743,228,4368_12559,Greenogue,13343,0,4368_7778195_4068009,4368_464 -4358_80757,228,4368_1256,Kilnamanagh Rd,9838,1,4368_7778195_5123002,4368_46 -4358_80743,227,4368_12560,Greenogue,4342,0,4368_7778195_4068001,4368_467 -4358_80743,229,4368_12561,Newcastle,17298,0,4368_7778195_4068001,4368_465 -4358_80743,228,4368_12562,Greenogue,11544,0,4368_7778195_4068006,4368_468 -4358_80743,227,4368_12563,Greenogue,4363,0,4368_7778195_4068006,4368_471 -4358_80743,229,4368_12564,Newcastle,17321,0,4368_7778195_4068003,4368_465 -4358_80743,227,4368_12565,Greenogue,4385,0,4368_7778195_4068010,4368_464 -4358_80743,228,4368_12566,Greenogue,13337,0,4368_7778195_4068005,4368_467 -4358_80743,228,4368_12567,Greenogue,13345,0,4368_7778195_4068009,4368_464 -4358_80743,227,4368_12568,Greenogue,4390,0,4368_7778195_4068011,4368_467 -4358_80743,229,4368_12569,Newcastle,17300,0,4368_7778195_4068001,4368_465 -4358_80757,227,4368_1257,Kilnamanagh Rd,2256,1,4368_7778195_5123004,4368_45 -4358_80743,228,4368_12570,Greenogue,11546,0,4368_7778195_4068006,4368_464 -4358_80743,227,4368_12571,Greenogue,4355,0,4368_7778195_4068016,4368_467 -4358_80743,229,4368_12572,Newcastle,17328,0,4368_7778195_4068007,4368_465 -4358_80743,228,4368_12573,Greenogue,13339,0,4368_7778195_4068005,4368_464 -4358_80743,227,4368_12574,Greenogue,4351,0,4368_7778195_4068002,4368_464 -4358_80743,229,4368_12575,Newcastle,17302,0,4368_7778195_4068001,4368_466 -4358_80743,228,4368_12576,Newcastle,13347,0,4368_7778195_4068009,4368_465 -4358_80743,227,4368_12577,Newcastle,4387,0,4368_7778195_4068010,4368_465 -4358_80743,229,4368_12578,Newcastle,17330,0,4368_7778195_4068007,4368_466 -4358_80743,228,4368_12579,Newcastle,11548,0,4368_7778195_4068006,4368_466 -4358_80757,228,4368_1258,Kilnamanagh Rd,9872,1,4368_7778195_5123001,4368_45 -4358_80743,227,4368_12580,Newcastle,4394,0,4368_7778195_4068012,4368_466 -4358_80743,229,4368_12581,Newcastle,17304,0,4368_7778195_4068001,4368_466 -4358_80743,228,4368_12582,Newcastle,13349,0,4368_7778195_4068009,4368_466 -4358_80743,227,4368_12583,Newcastle,4375,0,4368_7778195_4068004,4368_466 -4358_80743,229,4368_12584,Newcastle,17332,0,4368_7778195_4068007,4368_465 -4358_80743,228,4368_12585,Newcastle,11550,0,4368_7778195_4068006,4368_465 -4358_80743,229,4368_12586,Newcastle,17306,0,4368_7778195_4068001,4368_469 -4358_80743,227,4368_12587,Newcastle,4396,0,4368_7778195_4068012,4368_470 -4358_80743,227,4368_12588,Poolbeg St,4337,1,4368_7778195_4068001,4368_472 -4358_80743,227,4368_12589,Poolbeg St,4357,1,4368_7778195_4068003,4368_477 -4358_80757,229,4368_1259,Kilnamanagh Rd,15892,1,4368_7778195_5123001,4368_45 -4358_80743,228,4368_12590,Poolbeg St,11523,1,4368_7778195_4068002,4368_477 -4358_80743,227,4368_12591,Poolbeg St,4377,1,4368_7778195_4068007,4368_472 -4358_80743,228,4368_12592,Poolbeg St,11539,1,4368_7778195_4068006,4368_472 -4358_80743,227,4368_12593,Poolbeg St,4354,1,4368_7778195_4068005,4368_472 -4358_80743,228,4368_12594,Poolbeg St,13332,1,4368_7778195_4068005,4368_472 -4358_80743,227,4368_12595,Poolbeg St,4339,1,4368_7778195_4068001,4368_476 -4358_80743,228,4368_12596,Poolbeg St,11509,1,4368_7778195_4068008,4368_476 -4358_80743,228,4368_12597,Poolbeg St,11541,1,4368_7778195_4068006,4368_472 -4358_80743,227,4368_12598,Poolbeg St,4360,1,4368_7778195_4068006,4368_472 -4358_80743,229,4368_12599,Poolbeg St,17295,1,4368_7778195_4068001,4368_473 -4358_80760,228,4368_126,Shaw street,9324,0,4368_7778195_9001002,4368_1 -4358_80757,227,4368_1260,Kilnamanagh Rd,2224,1,4368_7778195_5123007,4368_46 -4358_80743,227,4368_12600,Poolbeg St,4382,1,4368_7778195_4068010,4368_472 -4358_80743,228,4368_12601,Poolbeg St,13334,1,4368_7778195_4068005,4368_474 -4358_80743,229,4368_12602,Poolbeg St,17318,1,4368_7778195_4068003,4368_473 -4358_80743,228,4368_12603,Poolbeg St,13342,1,4368_7778195_4068009,4368_472 -4358_80743,227,4368_12604,Poolbeg St,4341,1,4368_7778195_4068001,4368_474 -4358_80743,229,4368_12605,Poolbeg St,17297,1,4368_7778195_4068001,4368_473 -4358_80743,228,4368_12606,Poolbeg St,11543,1,4368_7778195_4068006,4368_472 -4358_80743,227,4368_12607,Poolbeg St,4362,1,4368_7778195_4068006,4368_474 -4358_80743,229,4368_12608,Poolbeg St,17320,1,4368_7778195_4068003,4368_473 -4358_80743,227,4368_12609,Poolbeg St,4384,1,4368_7778195_4068010,4368_472 -4358_80757,228,4368_1261,Kilnamanagh Rd,9782,1,4368_7778195_5123004,4368_45 -4358_80743,228,4368_12610,Poolbeg St,13336,1,4368_7778195_4068005,4368_474 -4358_80743,228,4368_12611,Poolbeg St,13344,1,4368_7778195_4068009,4368_472 -4358_80743,227,4368_12612,Poolbeg St,4389,1,4368_7778195_4068011,4368_474 -4358_80743,229,4368_12613,Poolbeg St,17299,1,4368_7778195_4068001,4368_473 -4358_80743,228,4368_12614,Poolbeg St,11545,1,4368_7778195_4068006,4368_476 -4358_80743,227,4368_12615,Poolbeg St,4391,1,4368_7778195_4068012,4368_478 -4358_80743,229,4368_12616,Poolbeg St,17322,1,4368_7778195_4068003,4368_473 -4358_80743,228,4368_12617,Poolbeg St,13338,1,4368_7778195_4068005,4368_476 -4358_80743,227,4368_12618,Poolbeg St,4364,1,4368_7778195_4068006,4368_476 -4358_80743,229,4368_12619,Poolbeg St,17301,1,4368_7778195_4068001,4368_473 -4358_80757,227,4368_1262,Kilnamanagh Rd,2279,1,4368_7778195_5123009,4368_46 -4358_80743,228,4368_12620,Poolbeg St,13346,1,4368_7778195_4068009,4368_472 -4358_80743,227,4368_12621,Poolbeg St,4386,1,4368_7778195_4068010,4368_472 -4358_80743,228,4368_12622,Poolbeg St,11547,1,4368_7778195_4068006,4368_472 -4358_80743,229,4368_12623,Poolbeg St,17329,1,4368_7778195_4068007,4368_473 -4358_80743,227,4368_12624,Poolbeg St,4356,1,4368_7778195_4068016,4368_472 -4358_80743,228,4368_12625,Poolbeg St,13340,1,4368_7778195_4068005,4368_472 -4358_80743,227,4368_12626,Poolbeg St,4352,1,4368_7778195_4068002,4368_472 -4358_80743,229,4368_12627,Poolbeg St,17303,1,4368_7778195_4068001,4368_473 -4358_80743,228,4368_12628,Poolbeg St,13348,1,4368_7778195_4068009,4368_473 -4358_80743,227,4368_12629,Poolbeg St,4388,1,4368_7778195_4068010,4368_473 -4358_80757,227,4368_1263,Kilnamanagh Rd,2116,1,4368_7778195_5123003,4368_45 -4358_80743,229,4368_12630,Poolbeg St,17331,1,4368_7778195_4068007,4368_473 -4358_80743,228,4368_12631,Poolbeg St,11549,1,4368_7778195_4068006,4368_473 -4358_80743,227,4368_12632,Poolbeg St,4395,1,4368_7778195_4068012,4368_473 -4358_80743,229,4368_12633,Poolbeg St,17305,1,4368_7778195_4068001,4368_473 -4358_80743,228,4368_12634,Poolbeg St,13350,1,4368_7778195_4068009,4368_473 -4358_80743,227,4368_12635,Conyngham Rd,4376,1,4368_7778195_4068004,4368_475 -4358_80743,229,4368_12636,Conyngham Rd,17333,1,4368_7778195_4068007,4368_475 -4358_80743,228,4368_12637,Conyngham Rd,11551,1,4368_7778195_4068006,4368_475 -4358_80743,227,4368_12638,Conyngham Rd,4397,1,4368_7778195_4068012,4368_479 -4358_80743,229,4368_12639,Conyngham Rd,17307,1,4368_7778195_4068001,4368_475 -4358_80757,228,4368_1264,Kilnamanagh Rd,9900,1,4368_7778195_5123007,4368_45 -4358_80744,227,4368_12640,Bulfin Road,4407,0,4368_7778195_4068013,4368_480 -4358_80744,227,4368_12641,Bulfin Road,4350,0,4368_7778195_4068002,4368_480 -4358_80744,227,4368_12642,Bulfin Road,6628,0,4368_7778195_4068009,4368_480 -4358_80744,227,4368_12643,Poolbeg St,4380,1,4368_7778195_4068010,4368_481 -4358_80744,227,4368_12644,Poolbeg St,4378,1,4368_7778195_4068007,4368_481 -4358_80741,227,4368_12645,Rathcoole,4365,0,4368_7778195_4068004,4368_482 -4358_80741,228,4368_12646,Rathcoole,11524,0,4368_7778195_4068003,4368_482 -4358_80741,227,4368_12647,Rathcoole,4344,0,4368_7778195_4068002,4368_482 -4358_80741,228,4368_12648,Rathcoole,11506,0,4368_7778195_4068001,4368_483 -4358_80741,228,4368_12649,Rathcoole,11511,0,4368_7778195_4068004,4368_482 -4358_80757,229,4368_1265,Kilnamanagh Rd,16016,1,4368_7778195_5123003,4368_45 -4358_80741,227,4368_12650,Rathcoole,4334,0,4368_7778195_4824103,4368_482 -4358_80741,228,4368_12651,Rathcoole,11526,0,4368_7778195_4068003,4368_482 -4358_80741,227,4368_12652,Rathcoole,6622,0,4368_7778195_4068009,4368_483 -4358_80741,228,4368_12653,Rathcoole,11537,0,4368_7778195_4068007,4368_482 -4358_80741,227,4368_12654,Rathcoole,4367,0,4368_7778195_4068004,4368_483 -4358_80741,229,4368_12655,Rathcoole,18630,0,4368_7778195_4068002,4368_484 -4358_80741,227,4368_12656,Rathcoole,4346,0,4368_7778195_4068002,4368_482 -4358_80741,228,4368_12657,Rathcoole,11513,0,4368_7778195_4068004,4368_483 -4358_80741,229,4368_12658,Rathcoole,17313,0,4368_7778195_4068004,4368_482 -4358_80741,228,4368_12659,Rathcoole,11528,0,4368_7778195_4068003,4368_482 -4358_80757,227,4368_1266,Kilnamanagh Rd,2195,1,4368_7778195_5123005,4368_45 -4358_80741,227,4368_12660,Rathcoole,6624,0,4368_7778195_4068009,4368_483 -4358_80741,229,4368_12661,Rathcoole,18632,0,4368_7778195_4068002,4368_482 -4358_80741,227,4368_12662,Rathcoole,4369,0,4368_7778195_4068004,4368_482 -4358_80741,228,4368_12663,Rathcoole,11552,0,4368_7778195_4068010,4368_483 -4358_80741,229,4368_12664,Rathcoole,17315,0,4368_7778195_4068004,4368_482 -4358_80741,227,4368_12665,Rathcoole,4348,0,4368_7778195_4068002,4368_482 -4358_80741,228,4368_12666,Rathcoole,11515,0,4368_7778195_4068004,4368_483 -4358_80741,228,4368_12667,Rathcoole,11530,0,4368_7778195_4068003,4368_482 -4358_80741,227,4368_12668,Rathcoole,6626,0,4368_7778195_4068009,4368_483 -4358_80741,229,4368_12669,Rathcoole,17308,0,4368_7778195_4068005,4368_484 -4358_80757,228,4368_1267,Kilnamanagh Rd,9755,1,4368_7778195_5123003,4368_45 -4358_80741,227,4368_12670,Rathcoole,4371,0,4368_7778195_4068004,4368_482 -4358_80741,228,4368_12671,Rathcoole,11554,0,4368_7778195_4068010,4368_483 -4358_80741,229,4368_12672,Rathcoole,17326,0,4368_7778195_4068006,4368_482 -4358_80741,227,4368_12673,Rathcoole,4409,0,4368_7778195_4068014,4368_482 -4358_80741,228,4368_12674,Rathcoole,11517,0,4368_7778195_4068004,4368_483 -4358_80741,229,4368_12675,Rathcoole,17310,0,4368_7778195_4068005,4368_482 -4358_80741,228,4368_12676,Rathcoole,11532,0,4368_7778195_4068003,4368_482 -4358_80741,227,4368_12677,Rathcoole,4392,0,4368_7778195_4068012,4368_483 -4358_80741,229,4368_12678,Rathcoole,17339,0,4368_7778195_4068008,4368_482 -4358_80741,228,4368_12679,Rathcoole,11556,0,4368_7778195_4068010,4368_482 -4358_80757,227,4368_1268,Kilnamanagh Rd,2313,1,4368_7778195_5123013,4368_45 -4358_80741,227,4368_12680,Rathcoole,4399,0,4368_7778195_4068015,4368_483 -4358_80741,227,4368_12681,Rathcoole,4373,0,4368_7778195_4068004,4368_482 -4358_80741,229,4368_12682,Rathcoole,17312,0,4368_7778195_4068005,4368_483 -4358_80741,228,4368_12683,Rathcoole,11519,0,4368_7778195_4068004,4368_484 -4358_80741,228,4368_12684,Rathcoole,11534,0,4368_7778195_4068003,4368_482 -4358_80741,227,4368_12685,Rathcoole,4401,0,4368_7778195_4068017,4368_483 -4358_80741,229,4368_12686,Rathcoole,17341,0,4368_7778195_4068008,4368_482 -4358_80741,227,4368_12687,Rathcoole,4405,0,4368_7778195_4068018,4368_482 -4358_80741,228,4368_12688,Rathcoole,11558,0,4368_7778195_4068010,4368_483 -4358_80741,229,4368_12689,Rathcoole,17346,0,4368_7778195_4068009,4368_482 -4358_80757,228,4368_1269,Kilnamanagh Rd,9892,1,4368_7778195_5123005,4368_45 -4358_80741,229,4368_12690,Rathcoole,17343,0,4368_7778195_4068008,4368_482 -4358_80741,227,4368_12691,Rathcoole,4403,0,4368_7778195_4068017,4368_483 -4358_80741,228,4368_12692,Rathcoole,11521,0,4368_7778195_4068004,4368_484 -4358_80741,227,4368_12693,Poolbeg St,4343,1,4368_7778195_4068002,4368_485 -4358_80741,228,4368_12694,Poolbeg St,11505,1,4368_7778195_4068001,4368_485 -4358_80741,227,4368_12695,Poolbeg St,4358,1,4368_7778195_4068006,4368_485 -4358_80741,228,4368_12696,Poolbeg St,11510,1,4368_7778195_4068004,4368_485 -4358_80741,227,4368_12697,Poolbeg St,4379,1,4368_7778195_4068008,4368_485 -4358_80741,228,4368_12698,Poolbeg St,11525,1,4368_7778195_4068003,4368_485 -4358_80741,228,4368_12699,Poolbeg St,11536,1,4368_7778195_4068007,4368_485 -4358_80760,227,4368_127,Shaw street,1827,0,4368_7778195_9001001,4368_1 -4358_80757,227,4368_1270,Kilnamanagh Rd,2172,1,4368_7778195_5123006,4368_45 -4358_80741,227,4368_12700,Poolbeg St,4366,1,4368_7778195_4068004,4368_486 -4358_80741,228,4368_12701,Poolbeg St,11507,1,4368_7778195_4068001,4368_485 -4358_80741,227,4368_12702,Poolbeg St,4345,1,4368_7778195_4068002,4368_485 -4358_80741,228,4368_12703,Poolbeg St,11512,1,4368_7778195_4068004,4368_485 -4358_80741,228,4368_12704,Poolbeg St,11527,1,4368_7778195_4068003,4368_485 -4358_80741,227,4368_12705,Poolbeg St,6623,1,4368_7778195_4068009,4368_486 -4358_80741,229,4368_12706,Poolbeg St,18631,1,4368_7778195_4068002,4368_485 -4358_80741,228,4368_12707,Poolbeg St,11538,1,4368_7778195_4068007,4368_485 -4358_80741,227,4368_12708,Poolbeg St,4368,1,4368_7778195_4068004,4368_486 -4358_80741,227,4368_12709,Poolbeg St,4347,1,4368_7778195_4068002,4368_485 -4358_80757,229,4368_1271,Kilnamanagh Rd,15958,1,4368_7778195_5123004,4368_45 -4358_80741,228,4368_12710,Poolbeg St,11514,1,4368_7778195_4068004,4368_486 -4358_80741,229,4368_12711,Poolbeg St,17314,1,4368_7778195_4068004,4368_489 -4358_80741,228,4368_12712,Poolbeg St,11529,1,4368_7778195_4068003,4368_485 -4358_80741,227,4368_12713,Poolbeg St,6625,1,4368_7778195_4068009,4368_486 -4358_80741,229,4368_12714,Poolbeg St,18633,1,4368_7778195_4068002,4368_485 -4358_80741,227,4368_12715,Poolbeg St,4370,1,4368_7778195_4068004,4368_485 -4358_80741,228,4368_12716,Poolbeg St,11553,1,4368_7778195_4068010,4368_486 -4358_80741,229,4368_12717,Poolbeg St,17316,1,4368_7778195_4068004,4368_485 -4358_80741,227,4368_12718,Poolbeg St,4349,1,4368_7778195_4068002,4368_485 -4358_80741,228,4368_12719,Poolbeg St,11516,1,4368_7778195_4068004,4368_486 -4358_80757,227,4368_1272,Kilnamanagh Rd,2315,1,4368_7778195_5123014,4368_45 -4358_80741,229,4368_12720,Poolbeg St,17309,1,4368_7778195_4068005,4368_485 -4358_80741,228,4368_12721,Poolbeg St,11531,1,4368_7778195_4068003,4368_485 -4358_80741,227,4368_12722,Poolbeg St,6627,1,4368_7778195_4068009,4368_486 -4358_80741,229,4368_12723,Poolbeg St,17327,1,4368_7778195_4068006,4368_485 -4358_80741,228,4368_12724,Poolbeg St,11555,1,4368_7778195_4068010,4368_486 -4358_80741,227,4368_12725,Poolbeg St,4398,1,4368_7778195_4068015,4368_489 -4358_80741,227,4368_12726,Poolbeg St,4372,1,4368_7778195_4068004,4368_485 -4358_80741,228,4368_12727,Poolbeg St,11518,1,4368_7778195_4068004,4368_486 -4358_80741,229,4368_12728,Poolbeg St,17311,1,4368_7778195_4068005,4368_485 -4358_80741,228,4368_12729,Poolbeg St,11533,1,4368_7778195_4068003,4368_485 -4358_80757,228,4368_1273,Kilnamanagh Rd,9828,1,4368_7778195_5123006,4368_45 -4358_80741,227,4368_12730,Poolbeg St,4393,1,4368_7778195_4068012,4368_486 -4358_80741,229,4368_12731,Poolbeg St,17340,1,4368_7778195_4068008,4368_485 -4358_80741,227,4368_12732,Poolbeg St,4400,1,4368_7778195_4068015,4368_485 -4358_80741,228,4368_12733,Poolbeg St,11557,1,4368_7778195_4068010,4368_485 -4358_80741,229,4368_12734,Poolbeg St,17345,1,4368_7778195_4068009,4368_485 -4358_80741,227,4368_12735,Poolbeg St,4374,1,4368_7778195_4068004,4368_485 -4358_80741,228,4368_12736,Poolbeg St,11520,1,4368_7778195_4068004,4368_485 -4358_80741,228,4368_12737,Poolbeg St,11535,1,4368_7778195_4068003,4368_485 -4358_80741,229,4368_12738,Poolbeg St,17342,1,4368_7778195_4068008,4368_485 -4358_80741,227,4368_12739,Poolbeg St,4402,1,4368_7778195_4068017,4368_486 -4358_80757,227,4368_1274,Kilnamanagh Rd,2270,1,4368_7778195_5123008,4368_45 -4358_80741,228,4368_12740,Poolbeg St,11559,1,4368_7778195_4068010,4368_485 -4358_80741,229,4368_12741,Poolbeg St,17347,1,4368_7778195_4068009,4368_485 -4358_80741,227,4368_12742,Poolbeg St,4406,1,4368_7778195_4068018,4368_486 -4358_80741,227,4368_12743,Conyngham Rd,4404,1,4368_7778195_4068017,4368_487 -4358_80741,228,4368_12744,Conyngham Rd,11522,1,4368_7778195_4068004,4368_488 -4358_80741,229,4368_12745,Conyngham Rd,17344,1,4368_7778195_4068008,4368_487 -4358_80742,227,4368_12746,Rathcoole,4408,0,4368_7778195_4068013,4368_490 -4358_80742,227,4368_12747,Poolbeg St,6621,1,4368_7778195_4068009,4368_491 -4358_80723,227,4368_12748,Brides Glen,6296,0,4368_7778195_2007002,4368_492 -4358_80723,227,4368_12749,Brides Glen,6396,0,4368_7778195_2007005,4368_492 -4358_80757,228,4368_1275,Kilnamanagh Rd,9911,1,4368_7778195_5123008,4368_45 -4358_80723,228,4368_12750,Brides Glen,8304,0,4368_7778195_2007005,4368_492 -4358_80723,227,4368_12751,Brides Glen,6405,0,4368_7778195_2007001,4368_492 -4358_80723,228,4368_12752,Brides Glen,8286,0,4368_7778195_2007008,4368_492 -4358_80723,227,4368_12753,Brides Glen,6398,0,4368_7778195_2007011,4368_492 -4358_80723,227,4368_12754,Brides Glen,6258,0,4368_7778195_2007003,4368_492 -4358_80723,228,4368_12755,Brides Glen,8336,0,4368_7778195_2007009,4368_492 -4358_80723,227,4368_12756,Brides Glen,6287,0,4368_7778195_2007007,4368_492 -4358_80723,229,4368_12757,Brides Glen,14420,0,4368_7778195_2007001,4368_492 -4358_80723,228,4368_12758,Brides Glen,8328,0,4368_7778195_2007006,4368_492 -4358_80723,227,4368_12759,Brides Glen,6323,0,4368_7778195_2007009,4368_492 -4358_80757,229,4368_1276,Kilnamanagh Rd,15979,1,4368_7778195_5123005,4368_45 -4358_80723,228,4368_12760,Brides Glen,8347,0,4368_7778195_2007010,4368_492 -4358_80723,229,4368_12761,Brides Glen,14454,0,4368_7778195_2007005,4368_492 -4358_80723,227,4368_12762,Brides Glen,6401,0,4368_7778195_2007012,4368_492 -4358_80723,228,4368_12763,Brides Glen,8306,0,4368_7778195_2007005,4368_494 -4358_80723,229,4368_12764,Brides Glen,14505,0,4368_7778195_2007002,4368_492 -4358_80723,228,4368_12765,Brides Glen,8288,0,4368_7778195_2007008,4368_492 -4358_80723,227,4368_12766,Brides Glen,6356,0,4368_7778195_2007014,4368_494 -4358_80723,228,4368_12767,Brides Glen,8338,0,4368_7778195_2007009,4368_492 -4358_80723,227,4368_12768,Brides Glen,6261,0,4368_7778195_2007018,4368_492 -4358_80723,229,4368_12769,Brides Glen,14443,0,4368_7778195_2007006,4368_492 -4358_80757,227,4368_1277,Kilnamanagh Rd,2244,1,4368_7778195_5123010,4368_45 -4358_80723,228,4368_12770,Brides Glen,8279,0,4368_7778195_2007004,4368_492 -4358_80723,227,4368_12771,Brides Glen,6336,0,4368_7778195_2007010,4368_492 -4358_80723,228,4368_12772,Brides Glen,8317,0,4368_7778195_2007007,4368_492 -4358_80723,229,4368_12773,Brides Glen,14483,0,4368_7778195_2007003,4368_494 -4358_80723,227,4368_12774,Brides Glen,6289,0,4368_7778195_2007007,4368_492 -4358_80723,228,4368_12775,Brides Glen,8367,0,4368_7778195_2007012,4368_492 -4358_80723,229,4368_12776,Brides Glen,14415,0,4368_7778195_2007007,4368_492 -4358_80723,227,4368_12777,Brides Glen,6325,0,4368_7778195_2007009,4368_492 -4358_80723,228,4368_12778,Brides Glen,8308,0,4368_7778195_2007005,4368_492 -4358_80723,229,4368_12779,Brides Glen,14507,0,4368_7778195_2007002,4368_492 -4358_80757,228,4368_1278,Kilnamanagh Rd,9912,1,4368_7778195_5123009,4368_45 -4358_80723,227,4368_12780,Brides Glen,6403,0,4368_7778195_2007012,4368_492 -4358_80723,228,4368_12781,Brides Glen,8290,0,4368_7778195_2007008,4368_492 -4358_80723,227,4368_12782,Brides Glen,6358,0,4368_7778195_2007014,4368_492 -4358_80723,229,4368_12783,Brides Glen,14433,0,4368_7778195_2007009,4368_494 -4358_80723,228,4368_12784,Brides Glen,8340,0,4368_7778195_2007009,4368_492 -4358_80723,229,4368_12785,Brides Glen,14424,0,4368_7778195_2007001,4368_492 -4358_80723,227,4368_12786,Brides Glen,6263,0,4368_7778195_2007018,4368_492 -4358_80723,228,4368_12787,Brides Glen,8281,0,4368_7778195_2007004,4368_492 -4358_80723,227,4368_12788,Brides Glen,6338,0,4368_7778195_2007010,4368_492 -4358_80723,229,4368_12789,Brides Glen,14458,0,4368_7778195_2007005,4368_492 -4358_80757,227,4368_1279,Kilnamanagh Rd,2293,1,4368_7778195_5123011,4368_45 -4358_80723,228,4368_12790,Brides Glen,8319,0,4368_7778195_2007007,4368_492 -4358_80723,227,4368_12791,Brides Glen,6291,0,4368_7778195_2007007,4368_492 -4358_80723,229,4368_12792,Brides Glen,14417,0,4368_7778195_2007007,4368_492 -4358_80723,228,4368_12793,Brides Glen,8369,0,4368_7778195_2007012,4368_494 -4358_80723,227,4368_12794,Brides Glen,6327,0,4368_7778195_2007009,4368_492 -4358_80723,228,4368_12795,Brides Glen,8310,0,4368_7778195_2007005,4368_492 -4358_80723,229,4368_12796,Brides Glen,14509,0,4368_7778195_2007002,4368_492 -4358_80723,227,4368_12797,Brides Glen,6375,0,4368_7778195_2007020,4368_492 -4358_80723,228,4368_12798,Brides Glen,8737,0,4368_7778195_2007001,4368_492 -4358_80723,228,4368_12799,Brides Glen,8270,0,4368_7778195_2007003,4368_492 -4358_80760,229,4368_128,Shaw street,15734,0,4368_7778195_9001002,4368_1 -4358_80757,228,4368_1280,Kilnamanagh Rd,9840,1,4368_7778195_5123002,4368_45 -4358_80723,227,4368_12800,Brides Glen,6360,0,4368_7778195_2007014,4368_494 -4358_80723,229,4368_12801,Brides Glen,14435,0,4368_7778195_2007009,4368_492 -4358_80723,227,4368_12802,Brides Glen,6371,0,4368_7778195_2007016,4368_492 -4358_80723,228,4368_12803,Brides Glen,8364,0,4368_7778195_2007011,4368_492 -4358_80723,229,4368_12804,Brides Glen,14426,0,4368_7778195_2007001,4368_492 -4358_80723,227,4368_12805,Brides Glen,6390,0,4368_7778195_2007017,4368_494 -4358_80723,228,4368_12806,Brides Glen,8283,0,4368_7778195_2007004,4368_492 -4358_80723,227,4368_12807,Brides Glen,6317,0,4368_7778195_2007006,4368_492 -4358_80723,229,4368_12808,Brides Glen,14460,0,4368_7778195_2007005,4368_492 -4358_80723,228,4368_12809,Brides Glen,8321,0,4368_7778195_2007007,4368_492 -4358_80757,227,4368_1281,Kilnamanagh Rd,2301,1,4368_7778195_5123012,4368_45 -4358_80723,227,4368_12810,Brides Glen,6271,0,4368_7778195_2007022,4368_492 -4358_80723,229,4368_12811,Brides Glen,14419,0,4368_7778195_2007007,4368_492 -4358_80723,228,4368_12812,Brides Glen,8380,0,4368_7778195_2007013,4368_492 -4358_80723,227,4368_12813,Brides Glen,6279,0,4368_7778195_2007019,4368_492 -4358_80723,229,4368_12814,Brides Glen,14511,0,4368_7778195_2007002,4368_492 -4358_80723,228,4368_12815,Brides Glen,8355,0,4368_7778195_2007014,4368_492 -4358_80723,227,4368_12816,Brides Glen,6353,0,4368_7778195_2007013,4368_492 -4358_80723,228,4368_12817,Brides Glen,8294,0,4368_7778195_2007008,4368_492 -4358_80723,229,4368_12818,Brides Glen,14437,0,4368_7778195_2007009,4368_492 -4358_80723,227,4368_12819,Brides Glen,6256,0,4368_7778195_2007021,4368_492 -4358_80757,229,4368_1282,Kilnamanagh Rd,15968,1,4368_7778195_5123002,4368_45 -4358_80723,228,4368_12820,Brides Glen,8366,0,4368_7778195_2007011,4368_492 -4358_80723,229,4368_12821,Brides Glen,14428,0,4368_7778195_2007001,4368_492 -4358_80723,227,4368_12822,Brides Glen,6267,0,4368_7778195_2007018,4368_493 -4358_80723,227,4368_12823,Brides Glen,6342,0,4368_7778195_2007010,4368_493 -4358_80723,228,4368_12824,Brides Glen,8384,0,4368_7778195_2007015,4368_495 -4358_80723,229,4368_12825,Brides Glen,14462,0,4368_7778195_2007005,4368_493 -4358_80723,227,4368_12826,Brides Glen,6319,0,4368_7778195_2007006,4368_493 -4358_80723,229,4368_12827,Brides Glen,14513,0,4368_7778195_2007002,4368_493 -4358_80723,228,4368_12828,Brides Glen,8373,0,4368_7778195_2007012,4368_495 -4358_80723,227,4368_12829,Brides Glen,6331,0,4368_7778195_2007009,4368_493 -4358_80757,228,4368_1283,Kilnamanagh Rd,9874,1,4368_7778195_5123001,4368_46 -4358_80723,229,4368_12830,Brides Glen,14439,0,4368_7778195_2007009,4368_493 -4358_80723,228,4368_12831,Brides Glen,8357,0,4368_7778195_2007014,4368_493 -4358_80723,227,4368_12832,Brides Glen,6379,0,4368_7778195_2007020,4368_493 -4358_80723,229,4368_12833,Brides Glen,14430,0,4368_7778195_2007001,4368_493 -4358_80723,228,4368_12834,Brides Glen,8274,0,4368_7778195_2007003,4368_493 -4358_80723,227,4368_12835,Brides Glen,6269,0,4368_7778195_2007018,4368_495 -4358_80723,227,4368_12836,Brides Glen,6344,0,4368_7778195_2007010,4368_493 -4358_80723,229,4368_12837,Brides Glen,14464,0,4368_7778195_2007005,4368_495 -4358_80723,228,4368_12838,Brides Glen,8325,0,4368_7778195_2007007,4368_493 -4358_80723,227,4368_12839,Brides Glen,6321,0,4368_7778195_2007006,4368_493 -4358_80757,227,4368_1284,Kilnamanagh Rd,2236,1,4368_7778195_5123001,4368_45 -4358_80723,229,4368_12840,Brides Glen,14441,0,4368_7778195_2007009,4368_493 -4358_80723,228,4368_12841,Brides Glen,8346,0,4368_7778195_2007009,4368_493 -4358_80723,227,4368_12842,Brides Glen,6333,0,4368_7778195_2007009,4368_493 -4358_80723,229,4368_12843,Brides Glen,14432,0,4368_7778195_2007001,4368_493 -4358_80723,228,4368_12844,Brides Glen,8298,0,4368_7778195_2007008,4368_493 -4358_80723,227,4368_12845,Brides Glen,6381,0,4368_7778195_2007020,4368_495 -4358_80723,227,4368_12846,Mountjoy Square,6310,1,4368_7778195_2007006,4368_497 -4358_80723,228,4368_12847,Mountjoy Square,8276,1,4368_7778195_2007004,4368_497 -4358_80723,227,4368_12848,Mountjoy Square,6297,1,4368_7778195_2007002,4368_497 -4358_80723,228,4368_12849,Mountjoy Square,8314,1,4368_7778195_2007007,4368_497 -4358_80757,228,4368_1285,Kilnamanagh Rd,9784,1,4368_7778195_5123004,4368_45 -4358_80723,227,4368_12850,Mountjoy Square,6397,1,4368_7778195_2007005,4368_497 -4358_80723,228,4368_12851,Mountjoy Square,8305,1,4368_7778195_2007005,4368_497 -4358_80723,227,4368_12852,Mountjoy Square,6366,1,4368_7778195_2007016,4368_497 -4358_80723,228,4368_12853,Mountjoy Square,8287,1,4368_7778195_2007008,4368_497 -4358_80723,227,4368_12854,Mountjoy Square,6406,1,4368_7778195_2007001,4368_497 -4358_80723,229,4368_12855,Mountjoy Square,14494,1,4368_7778195_2007004,4368_497 -4358_80723,228,4368_12856,Mountjoy Square,8337,1,4368_7778195_2007009,4368_497 -4358_80723,227,4368_12857,Mountjoy Square,6399,1,4368_7778195_2007011,4368_499 -4358_80723,227,4368_12858,Mountjoy Square,6259,1,4368_7778195_2007003,4368_497 -4358_80723,228,4368_12859,Mountjoy Square,8329,1,4368_7778195_2007006,4368_497 -4358_80757,227,4368_1286,Kilnamanagh Rd,2248,1,4368_7778195_5123002,4368_45 -4358_80723,229,4368_12860,Mountjoy Square,14421,1,4368_7778195_2007001,4368_499 -4358_80723,227,4368_12861,Mountjoy Square,6288,1,4368_7778195_2007007,4368_497 -4358_80723,228,4368_12862,Mountjoy Square,8348,1,4368_7778195_2007010,4368_497 -4358_80723,229,4368_12863,Mountjoy Square,14455,1,4368_7778195_2007005,4368_497 -4358_80723,227,4368_12864,Mountjoy Square,6324,1,4368_7778195_2007009,4368_497 -4358_80723,228,4368_12865,Mountjoy Square,8307,1,4368_7778195_2007005,4368_497 -4358_80723,227,4368_12866,Mountjoy Square,6402,1,4368_7778195_2007012,4368_497 -4358_80723,229,4368_12867,Mountjoy Square,14506,1,4368_7778195_2007002,4368_497 -4358_80723,228,4368_12868,Mountjoy Square,8289,1,4368_7778195_2007008,4368_497 -4358_80723,227,4368_12869,Mountjoy Square,6357,1,4368_7778195_2007014,4368_497 -4358_80757,229,4368_1287,Kilnamanagh Rd,15988,1,4368_7778195_5123006,4368_46 -4358_80723,228,4368_12870,Mountjoy Square,8339,1,4368_7778195_2007009,4368_497 -4358_80723,229,4368_12871,Mountjoy Square,14444,1,4368_7778195_2007006,4368_499 -4358_80723,227,4368_12872,Mountjoy Square,6262,1,4368_7778195_2007018,4368_497 -4358_80723,228,4368_12873,Mountjoy Square,8280,1,4368_7778195_2007004,4368_497 -4358_80723,229,4368_12874,Mountjoy Square,14484,1,4368_7778195_2007003,4368_497 -4358_80723,227,4368_12875,Mountjoy Square,6337,1,4368_7778195_2007010,4368_497 -4358_80723,228,4368_12876,Mountjoy Square,8318,1,4368_7778195_2007007,4368_497 -4358_80723,227,4368_12877,Mountjoy Square,6290,1,4368_7778195_2007007,4368_497 -4358_80723,229,4368_12878,Mountjoy Square,14416,1,4368_7778195_2007007,4368_497 -4358_80723,228,4368_12879,Mountjoy Square,8368,1,4368_7778195_2007012,4368_497 -4358_80757,228,4368_1288,Kilnamanagh Rd,9902,1,4368_7778195_5123007,4368_45 -4358_80723,227,4368_12880,Mountjoy Square,6326,1,4368_7778195_2007009,4368_497 -4358_80723,229,4368_12881,Mountjoy Square,14508,1,4368_7778195_2007002,4368_497 -4358_80723,228,4368_12882,Mountjoy Square,8309,1,4368_7778195_2007005,4368_499 -4358_80723,227,4368_12883,Mountjoy Square,6374,1,4368_7778195_2007020,4368_497 -4358_80723,228,4368_12884,Mountjoy Square,8291,1,4368_7778195_2007008,4368_497 -4358_80723,229,4368_12885,Mountjoy Square,14434,1,4368_7778195_2007009,4368_497 -4358_80723,227,4368_12886,Mountjoy Square,6359,1,4368_7778195_2007014,4368_497 -4358_80723,228,4368_12887,Mountjoy Square,8341,1,4368_7778195_2007009,4368_497 -4358_80723,227,4368_12888,Mountjoy Square,6264,1,4368_7778195_2007018,4368_497 -4358_80723,229,4368_12889,Mountjoy Square,14425,1,4368_7778195_2007001,4368_497 -4358_80757,227,4368_1289,Kilnamanagh Rd,2214,1,4368_7778195_5123015,4368_45 -4358_80723,228,4368_12890,Mountjoy Square,8282,1,4368_7778195_2007004,4368_497 -4358_80723,227,4368_12891,Mountjoy Square,6339,1,4368_7778195_2007010,4368_497 -4358_80723,228,4368_12892,Mountjoy Square,8320,1,4368_7778195_2007007,4368_497 -4358_80723,229,4368_12893,Mountjoy Square,14459,1,4368_7778195_2007005,4368_499 -4358_80723,227,4368_12894,Mountjoy Square,6292,1,4368_7778195_2007007,4368_497 -4358_80723,228,4368_12895,Mountjoy Square,8370,1,4368_7778195_2007012,4368_497 -4358_80723,229,4368_12896,Mountjoy Square,14418,1,4368_7778195_2007007,4368_497 -4358_80723,227,4368_12897,Mountjoy Square,6328,1,4368_7778195_2007009,4368_497 -4358_80723,228,4368_12898,Mountjoy Square,8311,1,4368_7778195_2007005,4368_497 -4358_80723,227,4368_12899,Mountjoy Square,6376,1,4368_7778195_2007020,4368_497 -4358_80760,227,4368_129,Shaw street,1664,0,4368_7778195_9001003,4368_1 -4358_80757,229,4368_1290,Kilnamanagh Rd,15894,1,4368_7778195_5123001,4368_45 -4358_80723,229,4368_12900,Mountjoy Square,14510,1,4368_7778195_2007002,4368_497 -4358_80723,228,4368_12901,Mountjoy Square,8738,1,4368_7778195_2007001,4368_497 -4358_80723,227,4368_12902,Mountjoy Square,6361,1,4368_7778195_2007014,4368_497 -4358_80723,228,4368_12903,Mountjoy Square,8271,1,4368_7778195_2007003,4368_497 -4358_80723,229,4368_12904,Mountjoy Square,14436,1,4368_7778195_2007009,4368_499 -4358_80723,227,4368_12905,Mountjoy Square,6372,1,4368_7778195_2007016,4368_497 -4358_80723,228,4368_12906,Mountjoy Square,8365,1,4368_7778195_2007011,4368_497 -4358_80723,229,4368_12907,Mountjoy Square,14427,1,4368_7778195_2007001,4368_497 -4358_80723,227,4368_12908,Mountjoy Square,6391,1,4368_7778195_2007017,4368_497 -4358_80723,228,4368_12909,Parnell Square,8284,1,4368_7778195_2007004,4368_496 -4358_80757,227,4368_1291,Kilnamanagh Rd,2258,1,4368_7778195_5123004,4368_45 -4358_80723,227,4368_12910,Parnell Square,6318,1,4368_7778195_2007006,4368_496 -4358_80723,229,4368_12911,Parnell Square,14461,1,4368_7778195_2007005,4368_496 -4358_80723,228,4368_12912,Parnell Square,8322,1,4368_7778195_2007007,4368_496 -4358_80723,227,4368_12913,Parnell Square,6272,1,4368_7778195_2007022,4368_496 -4358_80723,229,4368_12914,Parnell Square,14512,1,4368_7778195_2007002,4368_496 -4358_80723,228,4368_12915,Parnell Square,8381,1,4368_7778195_2007013,4368_498 -4358_80723,227,4368_12916,Parnell Square,6280,1,4368_7778195_2007019,4368_496 -4358_80723,228,4368_12917,Parnell Square,8356,1,4368_7778195_2007014,4368_496 -4358_80723,229,4368_12918,Parnell Square,14438,1,4368_7778195_2007009,4368_496 -4358_80723,227,4368_12919,Parnell Square,6354,1,4368_7778195_2007013,4368_496 -4358_80757,228,4368_1292,Kilnamanagh Rd,9757,1,4368_7778195_5123003,4368_45 -4358_80723,228,4368_12920,Parnell Square,8295,1,4368_7778195_2007008,4368_496 -4358_80723,227,4368_12921,Parnell Square,6268,1,4368_7778195_2007018,4368_496 -4358_80723,229,4368_12922,Parnell Square,14429,1,4368_7778195_2007001,4368_496 -4358_80723,228,4368_12923,Parnell Square,8385,1,4368_7778195_2007015,4368_496 -4358_80723,227,4368_12924,Parnell Square,6343,1,4368_7778195_2007010,4368_496 -4358_80723,229,4368_12925,Parnell Square,14463,1,4368_7778195_2007005,4368_496 -4358_80723,227,4368_12926,Parnell Square,6320,1,4368_7778195_2007006,4368_496 -4358_80723,228,4368_12927,Parnell Square,8374,1,4368_7778195_2007012,4368_496 -4358_80723,229,4368_12928,Parnell Square,14440,1,4368_7778195_2007009,4368_496 -4358_80723,227,4368_12929,Parnell Square,6332,1,4368_7778195_2007009,4368_496 -4358_80757,227,4368_1293,Kilnamanagh Rd,2226,1,4368_7778195_5123007,4368_45 -4358_80723,228,4368_12930,Parnell Square,8358,1,4368_7778195_2007014,4368_496 -4358_80723,227,4368_12931,Parnell Square,6380,1,4368_7778195_2007020,4368_496 -4358_80723,229,4368_12932,Parnell Square,14431,1,4368_7778195_2007001,4368_496 -4358_80723,228,4368_12933,Parnell Square,8275,1,4368_7778195_2007003,4368_496 -4358_80723,227,4368_12934,Parnell Square,6270,1,4368_7778195_2007018,4368_496 -4358_80723,229,4368_12935,Parnell Square,14465,1,4368_7778195_2007005,4368_496 -4358_80723,228,4368_12936,Parnell Square,8326,1,4368_7778195_2007007,4368_496 -4358_80723,227,4368_12937,Parnell Square,6345,1,4368_7778195_2007010,4368_498 -4358_80701,227,4368_12938,Dunboyne,4192,0,4368_7778195_9070002,4368_500 -4358_80701,228,4368_12939,Dunboyne,11281,0,4368_7778195_9070002,4368_501 -4358_80757,228,4368_1294,Kilnamanagh Rd,9894,1,4368_7778195_5123005,4368_45 -4358_80701,227,4368_12940,Dunboyne,4186,0,4368_7778195_9070001,4368_500 -4358_80701,228,4368_12941,Dunboyne,11272,0,4368_7778195_9070001,4368_501 -4358_80701,229,4368_12942,Dunboyne,17103,0,4368_7778195_9070002,4368_500 -4358_80701,227,4368_12943,Dunboyne,4200,0,4368_7778195_9070003,4368_501 -4358_80701,228,4368_12944,Dunboyne,11262,0,4368_7778195_9070003,4368_500 -4358_80701,227,4368_12945,Dunboyne,7796,0,4368_7778195_8818108,4368_501 -4358_80701,227,4368_12946,Dunboyne,5979,0,4368_7778195_6826116,4368_500 -4358_80701,229,4368_12947,Dunboyne,17107,0,4368_7778195_9070001,4368_501 -4358_80701,227,4368_12948,Dunboyne,4194,0,4368_7778195_9070002,4368_500 -4358_80701,228,4368_12949,Dunboyne,11283,0,4368_7778195_9070004,4368_501 -4358_80757,229,4368_1295,Kilnamanagh Rd,16018,1,4368_7778195_5123003,4368_46 -4358_80701,229,4368_12950,Dunboyne,17113,0,4368_7778195_9070003,4368_500 -4358_80701,227,4368_12951,Dunboyne,4188,0,4368_7778195_9070001,4368_500 -4358_80701,228,4368_12952,Dunboyne,11274,0,4368_7778195_9070001,4368_500 -4358_80701,229,4368_12953,Dunboyne,17105,0,4368_7778195_9070002,4368_500 -4358_80701,227,4368_12954,Dunboyne,4202,0,4368_7778195_9070003,4368_500 -4358_80701,228,4368_12955,Dunboyne,11264,0,4368_7778195_9070003,4368_500 -4358_80701,229,4368_12956,Dunboyne,17109,0,4368_7778195_9070001,4368_500 -4358_80701,227,4368_12957,Dunboyne,4196,0,4368_7778195_9070002,4368_500 -4358_80701,228,4368_12958,Dunboyne,11285,0,4368_7778195_9070004,4368_500 -4358_80701,229,4368_12959,Dunboyne,17115,0,4368_7778195_9070003,4368_500 -4358_80757,227,4368_1296,Kilnamanagh Rd,2281,1,4368_7778195_5123009,4368_45 -4358_80701,227,4368_12960,Dunboyne,4190,0,4368_7778195_9070001,4368_500 -4358_80701,228,4368_12961,Dunboyne,11300,0,4368_7778195_9070007,4368_500 -4358_80701,229,4368_12962,Dunboyne,17140,0,4368_7778195_9070004,4368_500 -4358_80701,227,4368_12963,Dunboyne,4204,0,4368_7778195_9070003,4368_500 -4358_80701,228,4368_12964,Dunboyne,11289,0,4368_7778195_9070006,4368_500 -4358_80701,229,4368_12965,Dunboyne,17088,0,4368_7778195_9070006,4368_500 -4358_80701,227,4368_12966,Dunboyne,4198,0,4368_7778195_9070002,4368_500 -4358_80701,228,4368_12967,Dunboyne,11287,0,4368_7778195_9070004,4368_500 -4358_80701,227,4368_12968,Dunboyne,7853,0,4368_7778195_8818234,4368_500 -4358_80701,229,4368_12969,Dunboyne,17130,0,4368_7778195_9070005,4368_500 -4358_80757,228,4368_1297,Kilnamanagh Rd,9830,1,4368_7778195_5123006,4368_45 -4358_80701,227,4368_12970,Dunboyne,4210,0,4368_7778195_9070004,4368_501 -4358_80701,227,4368_12971,Dunboyne,7794,0,4368_7778195_8818208,4368_500 -4358_80701,228,4368_12972,Dunboyne,11266,0,4368_7778195_9070008,4368_500 -4358_80701,227,4368_12973,Dunboyne,7811,0,4368_7778195_8818216,4368_500 -4358_80701,227,4368_12974,Dunboyne,7816,0,4368_7778195_8818219,4368_500 -4358_80701,227,4368_12975,Dunboyne,4222,0,4368_7778195_9070006,4368_500 -4358_80701,229,4368_12976,Dunboyne,17142,0,4368_7778195_9070004,4368_501 -4358_80701,227,4368_12977,Dunboyne,6435,0,4368_7778195_7070654,4368_500 -4358_80701,227,4368_12978,Dunboyne,6433,0,4368_7778195_7070653,4368_500 -4358_80701,228,4368_12979,Dunboyne,11291,0,4368_7778195_9070006,4368_500 -4358_80757,229,4368_1298,Kilnamanagh Rd,16003,1,4368_7778195_5123008,4368_45 -4358_80701,227,4368_12980,Dunboyne,4206,0,4368_7778195_9070003,4368_500 -4358_80701,229,4368_12981,Dunboyne,17090,0,4368_7778195_9070006,4368_500 -4358_80701,227,4368_12982,Dunboyne,4217,0,4368_7778195_9070005,4368_500 -4358_80701,228,4368_12983,Dunboyne,11306,0,4368_7778195_9070009,4368_500 -4358_80701,227,4368_12984,Dunboyne,4221,0,4368_7778195_9070007,4368_500 -4358_80701,229,4368_12985,Dunboyne,17126,0,4368_7778195_9070007,4368_500 -4358_80701,227,4368_12986,Dunboyne,4212,0,4368_7778195_9070004,4368_500 -4358_80701,228,4368_12987,Dunboyne,11268,0,4368_7778195_9070008,4368_500 -4358_80701,229,4368_12988,Dunboyne,17144,0,4368_7778195_9070008,4368_500 -4358_80701,227,4368_12989,Dunboyne,4207,0,4368_7778195_9070008,4368_501 -4358_80757,227,4368_1299,Kilnamanagh Rd,2118,1,4368_7778195_5123003,4368_46 -4358_80701,228,4368_12990,Dunboyne,11311,0,4368_7778195_9070010,4368_500 -4358_80701,227,4368_12991,Dunboyne,4219,0,4368_7778195_9070005,4368_500 -4358_80701,229,4368_12992,Dunboyne,17152,0,4368_7778195_9070009,4368_500 -4358_80701,228,4368_12993,Dunboyne,11308,0,4368_7778195_9070009,4368_500 -4358_80701,227,4368_12994,Dunboyne,4214,0,4368_7778195_9070004,4368_500 -4358_80701,229,4368_12995,Dunboyne,17128,0,4368_7778195_9070007,4368_500 -4358_80701,229,4368_12996,Dunboyne,17146,0,4368_7778195_9070008,4368_500 -4358_80701,227,4368_12997,Dunboyne,4209,0,4368_7778195_9070008,4368_501 -4358_80701,228,4368_12998,Dunboyne,11270,0,4368_7778195_9070008,4368_502 -4358_80701,227,4368_12999,Burlington Road,4224,1,4368_7778195_9038002,4368_503 -4358_80760,227,4368_13,Shaw street,1815,0,4368_7778195_9001001,4368_1 -4358_80760,228,4368_130,Shaw street,9386,0,4368_7778195_9001001,4368_1 -4358_80757,228,4368_1300,Kilnamanagh Rd,9764,1,4368_7778195_5123010,4368_45 -4358_80701,227,4368_13000,Burlington Road,4145,1,4368_7778195_9038005,4368_503 -4358_80701,228,4368_13001,Burlington Road,11271,1,4368_7778195_9070001,4368_503 -4358_80701,227,4368_13002,Burlington Road,4185,1,4368_7778195_9070001,4368_503 -4358_80701,227,4368_13003,Burlington Road,7793,1,4368_7778195_8818107,4368_503 -4358_80701,227,4368_13004,Burlington Road,7795,1,4368_7778195_8818108,4368_503 -4358_80701,227,4368_13005,Burlington Road,7798,1,4368_7778195_8818109,4368_503 -4358_80701,228,4368_13006,Burlington Road,11261,1,4368_7778195_9070003,4368_503 -4358_80701,227,4368_13007,Burlington Road,7782,1,4368_7778195_8818101,4368_505 -4358_80701,227,4368_13008,Burlington Road,5972,1,4368_7778195_6826109,4368_503 -4358_80701,227,4368_13009,Burlington Road,7805,1,4368_7778195_8818113,4368_503 -4358_80757,227,4368_1301,Kilnamanagh Rd,2197,1,4368_7778195_5123005,4368_45 -4358_80701,227,4368_13010,Burlington Road,6434,1,4368_7778195_7070554,4368_503 -4358_80701,229,4368_13011,Burlington Road,17106,1,4368_7778195_9070001,4368_505 -4358_80701,227,4368_13012,Burlington Road,4193,1,4368_7778195_9070002,4368_503 -4358_80701,228,4368_13013,Burlington Road,11282,1,4368_7778195_9070002,4368_503 -4358_80701,227,4368_13014,Burlington Road,6429,1,4368_7778195_7070551,4368_503 -4358_80701,229,4368_13015,Burlington Road,17112,1,4368_7778195_9070003,4368_503 -4358_80701,227,4368_13016,Burlington Road,4187,1,4368_7778195_9070001,4368_503 -4358_80701,228,4368_13017,Burlington Road,11273,1,4368_7778195_9070001,4368_503 -4358_80701,229,4368_13018,Burlington Road,17104,1,4368_7778195_9070002,4368_503 -4358_80701,227,4368_13019,Burlington Road,4201,1,4368_7778195_9070003,4368_503 -4358_80757,229,4368_1302,Kilnamanagh Rd,15960,1,4368_7778195_5123004,4368_45 -4358_80701,228,4368_13020,Burlington Road,11263,1,4368_7778195_9070003,4368_503 -4358_80701,229,4368_13021,Burlington Road,17108,1,4368_7778195_9070001,4368_503 -4358_80701,227,4368_13022,Burlington Road,4195,1,4368_7778195_9070002,4368_503 -4358_80701,228,4368_13023,Burlington Road,11284,1,4368_7778195_9070004,4368_503 -4358_80701,229,4368_13024,Burlington Road,17114,1,4368_7778195_9070003,4368_503 -4358_80701,227,4368_13025,Burlington Road,4189,1,4368_7778195_9070001,4368_503 -4358_80701,228,4368_13026,Burlington Road,13378,1,4368_7778195_9070005,4368_503 -4358_80701,229,4368_13027,Burlington Road,17139,1,4368_7778195_9070004,4368_503 -4358_80701,227,4368_13028,Burlington Road,4203,1,4368_7778195_9070003,4368_503 -4358_80701,228,4368_13029,Burlington Road,11288,1,4368_7778195_9070006,4368_503 -4358_80757,227,4368_1303,Kilnamanagh Rd,2174,1,4368_7778195_5123006,4368_45 -4358_80701,229,4368_13030,Burlington Road,17110,1,4368_7778195_9070001,4368_503 -4358_80701,227,4368_13031,Burlington Road,4197,1,4368_7778195_9070002,4368_503 -4358_80701,228,4368_13032,Burlington Road,11286,1,4368_7778195_9070004,4368_503 -4358_80701,229,4368_13033,Burlington Road,17129,1,4368_7778195_9070005,4368_503 -4358_80701,227,4368_13034,Burlington Road,4191,1,4368_7778195_9070001,4368_503 -4358_80701,228,4368_13035,Burlington Road,11265,1,4368_7778195_9070008,4368_503 -4358_80701,229,4368_13036,Burlington Road,17141,1,4368_7778195_9070004,4368_503 -4358_80701,227,4368_13037,Burlington Road,4205,1,4368_7778195_9070003,4368_503 -4358_80701,228,4368_13038,Burlington Road,11290,1,4368_7778195_9070006,4368_503 -4358_80701,229,4368_13039,Burlington Road,17089,1,4368_7778195_9070006,4368_503 -4358_80757,228,4368_1304,Kilnamanagh Rd,9914,1,4368_7778195_5123009,4368_45 -4358_80701,227,4368_13040,Burlington Road,4216,1,4368_7778195_9070005,4368_503 -4358_80701,228,4368_13041,Burlington Road,11305,1,4368_7778195_9070009,4368_503 -4358_80701,227,4368_13042,Burlington Road,4199,1,4368_7778195_9070002,4368_503 -4358_80701,229,4368_13043,Burlington Road,17131,1,4368_7778195_9070005,4368_503 -4358_80701,227,4368_13044,Burlington Road,4211,1,4368_7778195_9070004,4368_503 -4358_80701,228,4368_13045,Burlington Road,11267,1,4368_7778195_9070008,4368_503 -4358_80701,229,4368_13046,Burlington Road,17143,1,4368_7778195_9070004,4368_503 -4358_80701,227,4368_13047,Burlington Road,4223,1,4368_7778195_9070006,4368_503 -4358_80701,228,4368_13048,Burlington Road,11310,1,4368_7778195_9070010,4368_503 -4358_80701,229,4368_13049,Burlington Road,17091,1,4368_7778195_9070006,4368_503 -4358_80757,227,4368_1305,Kilnamanagh Rd,2317,1,4368_7778195_5123014,4368_45 -4358_80701,227,4368_13050,Burlington Road,4218,1,4368_7778195_9070005,4368_503 -4358_80701,228,4368_13051,Burlington Road,11307,1,4368_7778195_9070009,4368_503 -4358_80701,229,4368_13052,Burlington Road,17127,1,4368_7778195_9070007,4368_503 -4358_80701,227,4368_13053,Burlington Road,4213,1,4368_7778195_9070004,4368_503 -4358_80701,228,4368_13054,Burlington Road,11269,1,4368_7778195_9070008,4368_503 -4358_80701,227,4368_13055,Burlington Road,4208,1,4368_7778195_9070008,4368_503 -4358_80701,229,4368_13056,Burlington Road,17145,1,4368_7778195_9070008,4368_503 -4358_80701,228,4368_13057,Burlington Road,11312,1,4368_7778195_9070010,4368_503 -4358_80701,227,4368_13058,Burlington Road,4220,1,4368_7778195_9070005,4368_503 -4358_80701,229,4368_13059,Bachelors Walk,17153,1,4368_7778195_9070009,4368_504 -4358_80757,228,4368_1306,Kilnamanagh Rd,9842,1,4368_7778195_5123002,4368_45 -4358_80701,228,4368_13060,Bachelors Walk,11309,1,4368_7778195_9070009,4368_504 -4358_80701,227,4368_13061,Bachelors Walk,4215,1,4368_7778195_9070004,4368_506 -4358_80703,227,4368_13062,Dunboyne,6440,0,4368_7778195_7070657,4368_507 -4358_80703,227,4368_13063,DCU,6439,1,4368_7778195_7070557,4368_508 -4358_80791,228,4368_13064,Out of Service ACW,14363,0,4368_7778195_7720002,4368_509 -4358_80791,228,4368_13065,Out of Service ACW,14361,0,4368_7778195_7720001,4368_509 -4358_80791,228,4368_13066,Out of Service ACW,14365,0,4368_7778195_7720002,4368_509 -4358_80791,228,4368_13067,Out of Service CW,14360,1,4368_7778195_7720001,4368_510 -4358_80791,228,4368_13068,Out of Service CW,14364,1,4368_7778195_7720002,4368_510 -4358_80791,228,4368_13069,Out of Service CW,14362,1,4368_7778195_7720001,4368_510 -4358_80757,229,4368_1307,Kilnamanagh Rd,15997,1,4368_7778195_5123007,4368_46 -4358_80745,227,4368_13070,Dundrum,2917,0,4368_7778195_1074002,4368_511 -4358_80745,228,4368_13071,Dundrum,10576,0,4368_7778195_1074001,4368_511 -4358_80745,227,4368_13072,Dundrum,3013,0,4368_7778195_1074004,4368_512 -4358_80745,227,4368_13073,Dundrum,2847,0,4368_7778195_1074001,4368_511 -4358_80745,228,4368_13074,Dundrum,10530,0,4368_7778195_1074002,4368_511 -4358_80745,227,4368_13075,Dundrum,2877,0,4368_7778195_1074003,4368_512 -4358_80745,227,4368_13076,Dundrum,3029,0,4368_7778195_1074007,4368_511 -4358_80745,229,4368_13077,Dundrum,16538,0,4368_7778195_1074001,4368_512 -4358_80745,228,4368_13078,Dundrum,10578,0,4368_7778195_1074001,4368_511 -4358_80745,227,4368_13079,Dundrum,2919,0,4368_7778195_1074002,4368_512 -4358_80757,227,4368_1308,Kilnamanagh Rd,2091,1,4368_7778195_5123016,4368_45 -4358_80745,229,4368_13080,Dundrum,16434,0,4368_7778195_1074002,4368_511 -4358_80745,227,4368_13081,Dundrum,3015,0,4368_7778195_1074004,4368_512 -4358_80745,227,4368_13082,Dundrum,3175,0,4368_7778195_1074005,4368_511 -4358_80745,228,4368_13083,Dundrum,10584,0,4368_7778195_1074003,4368_512 -4358_80745,228,4368_13084,Dundrum,10532,0,4368_7778195_1074002,4368_511 -4358_80745,229,4368_13085,Dundrum,16540,0,4368_7778195_1074001,4368_512 -4358_80745,227,4368_13086,Dundrum,2835,0,4368_7778195_1074006,4368_513 -4358_80745,228,4368_13087,Dundrum,10541,0,4368_7778195_1074006,4368_511 -4358_80745,227,4368_13088,Dundrum,2849,0,4368_7778195_1074001,4368_512 -4358_80745,228,4368_13089,Dundrum,10580,0,4368_7778195_1074001,4368_511 -4358_80757,228,4368_1309,Kilnamanagh Rd,9876,1,4368_7778195_5123001,4368_45 -4358_80745,229,4368_13090,Dundrum,16475,0,4368_7778195_1074003,4368_512 -4358_80745,227,4368_13091,Dundrum,2879,0,4368_7778195_1074003,4368_513 -4358_80745,228,4368_13092,Dundrum,10684,0,4368_7778195_1074004,4368_511 -4358_80745,229,4368_13093,Dundrum,16590,0,4368_7778195_1074005,4368_512 -4358_80745,227,4368_13094,Dundrum,3083,0,4368_7778195_1074008,4368_513 -4358_80745,229,4368_13095,Dundrum,16436,0,4368_7778195_1074002,4368_511 -4358_80745,227,4368_13096,Dundrum,2921,0,4368_7778195_1074002,4368_512 -4358_80745,228,4368_13097,Dundrum,10556,0,4368_7778195_1074005,4368_513 -4358_80745,228,4368_13098,Dundrum,10586,0,4368_7778195_1074003,4368_511 -4358_80745,227,4368_13099,Dundrum,3017,0,4368_7778195_1074004,4368_512 -4358_80760,227,4368_131,Shaw street,1598,0,4368_7778195_9001005,4368_1 -4358_80757,227,4368_1310,Kilnamanagh Rd,2272,1,4368_7778195_5123008,4368_45 -4358_80745,229,4368_13100,Dundrum,16487,0,4368_7778195_1074004,4368_513 -4358_80745,228,4368_13101,Dundrum,10534,0,4368_7778195_1074002,4368_511 -4358_80745,229,4368_13102,Dundrum,16542,0,4368_7778195_1074001,4368_512 -4358_80745,227,4368_13103,Dundrum,2837,0,4368_7778195_1074006,4368_513 -4358_80745,229,4368_13104,Dundrum,16558,0,4368_7778195_1074006,4368_511 -4358_80745,227,4368_13105,Dundrum,2851,0,4368_7778195_1074001,4368_512 -4358_80745,228,4368_13106,Dundrum,10625,0,4368_7778195_1074008,4368_513 -4358_80745,228,4368_13107,Dundrum,10543,0,4368_7778195_1074006,4368_511 -4358_80745,229,4368_13108,Dundrum,16477,0,4368_7778195_1074003,4368_512 -4358_80745,227,4368_13109,Dundrum,2881,0,4368_7778195_1074003,4368_513 -4358_80757,229,4368_1311,Kilnamanagh Rd,15981,1,4368_7778195_5123005,4368_46 -4358_80745,228,4368_13110,Dundrum,10582,0,4368_7778195_1074001,4368_511 -4358_80745,229,4368_13111,Dundrum,16592,0,4368_7778195_1074005,4368_512 -4358_80745,227,4368_13112,Dundrum,3023,0,4368_7778195_1074009,4368_513 -4358_80745,228,4368_13113,Dundrum,10686,0,4368_7778195_1074004,4368_511 -4358_80745,229,4368_13114,Dundrum,16438,0,4368_7778195_1074002,4368_512 -4358_80745,227,4368_13115,Dundrum,2923,0,4368_7778195_1074002,4368_513 -4358_80745,228,4368_13116,Dundrum,10615,0,4368_7778195_1074007,4368_511 -4358_80745,227,4368_13117,Dundrum,2976,0,4368_7778195_1074010,4368_512 -4358_80745,229,4368_13118,Dundrum,16489,0,4368_7778195_1074004,4368_513 -4358_80745,228,4368_13119,Dundrum,10558,0,4368_7778195_1074005,4368_511 -4358_80757,228,4368_1312,Kilnamanagh Rd,9820,1,4368_7778195_5123012,4368_45 -4358_80745,229,4368_13120,Dundrum,16544,0,4368_7778195_1074001,4368_512 -4358_80745,227,4368_13121,Dundrum,2839,0,4368_7778195_1074006,4368_513 -4358_80745,228,4368_13122,Dundrum,10588,0,4368_7778195_1074003,4368_511 -4358_80745,229,4368_13123,Dundrum,16560,0,4368_7778195_1074006,4368_512 -4358_80745,227,4368_13124,Dundrum,2853,0,4368_7778195_1074001,4368_513 -4358_80745,228,4368_13125,Dundrum,10536,0,4368_7778195_1074002,4368_511 -4358_80745,229,4368_13126,Dundrum,16446,0,4368_7778195_1074007,4368_512 -4358_80745,227,4368_13127,Dundrum,2883,0,4368_7778195_1074003,4368_513 -4358_80745,229,4368_13128,Dundrum,16594,0,4368_7778195_1074005,4368_511 -4358_80745,227,4368_13129,Dundrum,3008,0,4368_7778195_1074011,4368_512 -4358_80757,227,4368_1313,Kilnamanagh Rd,2295,1,4368_7778195_5123011,4368_45 -4358_80745,228,4368_13130,Dundrum,10627,0,4368_7778195_1074008,4368_513 -4358_80745,228,4368_13131,Dundrum,10545,0,4368_7778195_1074006,4368_511 -4358_80745,229,4368_13132,Dundrum,16440,0,4368_7778195_1074002,4368_512 -4358_80745,227,4368_13133,Dundrum,3025,0,4368_7778195_1074009,4368_513 -4358_80745,228,4368_13134,Dundrum,10688,0,4368_7778195_1074004,4368_511 -4358_80745,227,4368_13135,Dundrum,2925,0,4368_7778195_1074002,4368_512 -4358_80745,229,4368_13136,Dundrum,16491,0,4368_7778195_1074004,4368_513 -4358_80745,228,4368_13137,Dundrum,10560,0,4368_7778195_1074005,4368_511 -4358_80745,227,4368_13138,Dundrum,2978,0,4368_7778195_1074010,4368_512 -4358_80745,229,4368_13139,Dundrum,16546,0,4368_7778195_1074001,4368_513 -4358_80757,229,4368_1314,Kilnamanagh Rd,15970,1,4368_7778195_5123002,4368_45 -4358_80745,228,4368_13140,Dundrum,10590,0,4368_7778195_1074003,4368_511 -4358_80745,229,4368_13141,Dundrum,16562,0,4368_7778195_1074006,4368_512 -4358_80745,227,4368_13142,Dundrum,2955,0,4368_7778195_1074012,4368_513 -4358_80745,228,4368_13143,Dundrum,10538,0,4368_7778195_1074002,4368_511 -4358_80745,229,4368_13144,Dundrum,16448,0,4368_7778195_1074007,4368_512 -4358_80745,227,4368_13145,Dundrum,2841,0,4368_7778195_1074006,4368_513 -4358_80745,229,4368_13146,Dundrum,16596,0,4368_7778195_1074005,4368_511 -4358_80745,228,4368_13147,Dundrum,10629,0,4368_7778195_1074008,4368_512 -4358_80745,227,4368_13148,Dundrum,2885,0,4368_7778195_1074003,4368_513 -4358_80745,228,4368_13149,Dundrum,10547,0,4368_7778195_1074006,4368_511 -4358_80757,227,4368_1315,Kilnamanagh Rd,2303,1,4368_7778195_5123012,4368_45 -4358_80745,229,4368_13150,Dundrum,16442,0,4368_7778195_1074002,4368_512 -4358_80745,227,4368_13151,Dundrum,3010,0,4368_7778195_1074011,4368_513 -4358_80745,228,4368_13152,Dundrum,10690,0,4368_7778195_1074004,4368_511 -4358_80745,227,4368_13153,Dundrum,3027,0,4368_7778195_1074009,4368_512 -4358_80745,229,4368_13154,Dundrum,16493,0,4368_7778195_1074004,4368_513 -4358_80745,227,4368_13155,Dundrum,2927,0,4368_7778195_1074002,4368_511 -4358_80745,228,4368_13156,Dundrum,10562,0,4368_7778195_1074005,4368_512 -4358_80745,229,4368_13157,Dundrum,16548,0,4368_7778195_1074001,4368_513 -4358_80745,228,4368_13158,Dundrum,10592,0,4368_7778195_1074003,4368_511 -4358_80745,229,4368_13159,Dundrum,16564,0,4368_7778195_1074006,4368_512 -4358_80757,228,4368_1316,Kilnamanagh Rd,9786,1,4368_7778195_5123004,4368_45 -4358_80745,227,4368_13160,Dundrum,2980,0,4368_7778195_1074010,4368_513 -4358_80745,228,4368_13161,Dundrum,10540,0,4368_7778195_1074002,4368_511 -4358_80745,229,4368_13162,Dundrum,16450,0,4368_7778195_1074007,4368_512 -4358_80745,227,4368_13163,Dundrum,2957,0,4368_7778195_1074012,4368_513 -4358_80745,228,4368_13164,Dundrum,10549,0,4368_7778195_1074006,4368_511 -4358_80745,229,4368_13165,Dundrum,16444,0,4368_7778195_1074002,4368_512 -4358_80745,227,4368_13166,Dundrum,3012,0,4368_7778195_1074011,4368_513 -4358_80745,227,4368_13167,Eden Quay,2846,1,4368_7778195_1074001,4368_514 -4358_80745,228,4368_13168,Eden Quay,10529,1,4368_7778195_1074002,4368_514 -4358_80745,227,4368_13169,Eden Quay,2876,1,4368_7778195_1074003,4368_515 -4358_80757,227,4368_1317,Kilnamanagh Rd,2238,1,4368_7778195_5123001,4368_45 -4358_80745,227,4368_13170,Eden Quay,2918,1,4368_7778195_1074002,4368_514 -4358_80745,228,4368_13171,Eden Quay,10577,1,4368_7778195_1074001,4368_514 -4358_80745,227,4368_13172,Eden Quay,3014,1,4368_7778195_1074004,4368_515 -4358_80745,229,4368_13173,Eden Quay,16433,1,4368_7778195_1074002,4368_514 -4358_80745,227,4368_13174,Eden Quay,2834,1,4368_7778195_1074006,4368_515 -4358_80745,228,4368_13175,Eden Quay,10531,1,4368_7778195_1074002,4368_514 -4358_80745,227,4368_13176,Eden Quay,2848,1,4368_7778195_1074001,4368_515 -4358_80745,229,4368_13177,Eden Quay,16539,1,4368_7778195_1074001,4368_514 -4358_80745,227,4368_13178,Eden Quay,2878,1,4368_7778195_1074003,4368_515 -4358_80745,228,4368_13179,Eden Quay,10579,1,4368_7778195_1074001,4368_514 -4358_80757,228,4368_1318,Kilnamanagh Rd,9904,1,4368_7778195_5123007,4368_45 -4358_80745,227,4368_13180,Eden Quay,3082,1,4368_7778195_1074008,4368_515 -4358_80745,228,4368_13181,Eden Quay,10683,1,4368_7778195_1074004,4368_514 -4358_80745,229,4368_13182,Eden Quay,16435,1,4368_7778195_1074002,4368_515 -4358_80745,227,4368_13183,Eden Quay,3030,1,4368_7778195_1074007,4368_516 -4358_80745,227,4368_13184,Eden Quay,2920,1,4368_7778195_1074002,4368_514 -4358_80745,228,4368_13185,Eden Quay,10555,1,4368_7778195_1074005,4368_515 -4358_80745,228,4368_13186,Eden Quay,10585,1,4368_7778195_1074003,4368_514 -4358_80745,227,4368_13187,Eden Quay,3016,1,4368_7778195_1074004,4368_515 -4358_80745,229,4368_13188,Eden Quay,16486,1,4368_7778195_1074004,4368_516 -4358_80745,228,4368_13189,Eden Quay,10533,1,4368_7778195_1074002,4368_514 -4358_80757,229,4368_1319,Kilnamanagh Rd,15990,1,4368_7778195_5123006,4368_46 -4358_80745,229,4368_13190,Eden Quay,16541,1,4368_7778195_1074001,4368_515 -4358_80745,227,4368_13191,Eden Quay,2836,1,4368_7778195_1074006,4368_516 -4358_80745,228,4368_13192,Eden Quay,10542,1,4368_7778195_1074006,4368_514 -4358_80745,229,4368_13193,Eden Quay,16557,1,4368_7778195_1074006,4368_515 -4358_80745,227,4368_13194,Eden Quay,2850,1,4368_7778195_1074001,4368_516 -4358_80745,228,4368_13195,Eden Quay,10581,1,4368_7778195_1074001,4368_514 -4358_80745,229,4368_13196,Eden Quay,16476,1,4368_7778195_1074003,4368_515 -4358_80745,227,4368_13197,Eden Quay,2880,1,4368_7778195_1074003,4368_516 -4358_80745,228,4368_13198,Eden Quay,10685,1,4368_7778195_1074004,4368_514 -4358_80745,229,4368_13199,Eden Quay,16591,1,4368_7778195_1074005,4368_515 -4358_80760,229,4368_132,Shaw street,15519,0,4368_7778195_9001003,4368_2 -4358_80757,227,4368_1320,Kilnamanagh Rd,2250,1,4368_7778195_5123002,4368_45 -4358_80745,227,4368_13200,Eden Quay,3022,1,4368_7778195_1074009,4368_516 -4358_80745,229,4368_13201,Eden Quay,16437,1,4368_7778195_1074002,4368_514 -4358_80745,228,4368_13202,Eden Quay,10614,1,4368_7778195_1074007,4368_515 -4358_80745,227,4368_13203,Eden Quay,2922,1,4368_7778195_1074002,4368_516 -4358_80745,227,4368_13204,Eden Quay,3018,1,4368_7778195_1074004,4368_514 -4358_80745,228,4368_13205,Eden Quay,10557,1,4368_7778195_1074005,4368_515 -4358_80745,229,4368_13206,Eden Quay,16488,1,4368_7778195_1074004,4368_516 -4358_80745,228,4368_13207,Eden Quay,10587,1,4368_7778195_1074003,4368_514 -4358_80745,229,4368_13208,Eden Quay,16543,1,4368_7778195_1074001,4368_515 -4358_80745,227,4368_13209,Eden Quay,2838,1,4368_7778195_1074006,4368_516 -4358_80757,228,4368_1321,Kilnamanagh Rd,9759,1,4368_7778195_5123003,4368_45 -4358_80745,228,4368_13210,Eden Quay,10535,1,4368_7778195_1074002,4368_514 -4358_80745,229,4368_13211,Eden Quay,16559,1,4368_7778195_1074006,4368_515 -4358_80745,227,4368_13212,Eden Quay,2852,1,4368_7778195_1074001,4368_516 -4358_80745,229,4368_13213,Eden Quay,16445,1,4368_7778195_1074007,4368_514 -4358_80745,228,4368_13214,Eden Quay,10626,1,4368_7778195_1074008,4368_515 -4358_80745,227,4368_13215,Eden Quay,2882,1,4368_7778195_1074003,4368_516 -4358_80745,228,4368_13216,Eden Quay,10544,1,4368_7778195_1074006,4368_514 -4358_80745,229,4368_13217,Eden Quay,16593,1,4368_7778195_1074005,4368_515 -4358_80745,227,4368_13218,Eden Quay,3024,1,4368_7778195_1074009,4368_516 -4358_80745,228,4368_13219,Eden Quay,10583,1,4368_7778195_1074001,4368_514 -4358_80757,229,4368_1322,Kilnamanagh Rd,15896,1,4368_7778195_5123001,4368_45 -4358_80745,229,4368_13220,Eden Quay,16439,1,4368_7778195_1074002,4368_515 -4358_80745,227,4368_13221,Eden Quay,2924,1,4368_7778195_1074002,4368_516 -4358_80745,228,4368_13222,Eden Quay,10687,1,4368_7778195_1074004,4368_514 -4358_80745,227,4368_13223,Eden Quay,2977,1,4368_7778195_1074010,4368_515 -4358_80745,229,4368_13224,Eden Quay,16490,1,4368_7778195_1074004,4368_516 -4358_80745,228,4368_13225,Eden Quay,10559,1,4368_7778195_1074005,4368_514 -4358_80745,227,4368_13226,Eden Quay,2954,1,4368_7778195_1074012,4368_515 -4358_80745,229,4368_13227,Eden Quay,16545,1,4368_7778195_1074001,4368_516 -4358_80745,228,4368_13228,Eden Quay,10589,1,4368_7778195_1074003,4368_514 -4358_80745,229,4368_13229,Eden Quay,16561,1,4368_7778195_1074006,4368_515 -4358_80757,227,4368_1323,Kilnamanagh Rd,2216,1,4368_7778195_5123015,4368_46 -4358_80745,227,4368_13230,Eden Quay,2840,1,4368_7778195_1074006,4368_516 -4358_80745,228,4368_13231,Eden Quay,10537,1,4368_7778195_1074002,4368_514 -4358_80745,229,4368_13232,Eden Quay,16447,1,4368_7778195_1074007,4368_515 -4358_80745,227,4368_13233,Eden Quay,2854,1,4368_7778195_1074001,4368_516 -4358_80745,229,4368_13234,Eden Quay,16595,1,4368_7778195_1074005,4368_514 -4358_80745,228,4368_13235,Eden Quay,10628,1,4368_7778195_1074008,4368_515 -4358_80745,227,4368_13236,Eden Quay,2884,1,4368_7778195_1074003,4368_516 -4358_80745,228,4368_13237,Eden Quay,10546,1,4368_7778195_1074006,4368_514 -4358_80745,229,4368_13238,Eden Quay,16441,1,4368_7778195_1074002,4368_515 -4358_80745,227,4368_13239,Eden Quay,3009,1,4368_7778195_1074011,4368_516 -4358_80757,228,4368_1324,Kilnamanagh Rd,9896,1,4368_7778195_5123011,4368_45 -4358_80745,228,4368_13240,Eden Quay,10689,1,4368_7778195_1074004,4368_514 -4358_80745,227,4368_13241,Eden Quay,3026,1,4368_7778195_1074009,4368_515 -4358_80745,229,4368_13242,Eden Quay,16492,1,4368_7778195_1074004,4368_516 -4358_80745,227,4368_13243,Eden Quay,2926,1,4368_7778195_1074002,4368_514 -4358_80745,228,4368_13244,Eden Quay,10561,1,4368_7778195_1074005,4368_515 -4358_80745,229,4368_13245,Eden Quay,16547,1,4368_7778195_1074001,4368_516 -4358_80745,228,4368_13246,Eden Quay,10591,1,4368_7778195_1074003,4368_514 -4358_80745,229,4368_13247,Eden Quay,16563,1,4368_7778195_1074006,4368_515 -4358_80745,227,4368_13248,Eden Quay,2979,1,4368_7778195_1074010,4368_516 -4358_80745,228,4368_13249,Eden Quay,10539,1,4368_7778195_1074002,4368_514 -4358_80757,227,4368_1325,Kilnamanagh Rd,2260,1,4368_7778195_5123004,4368_45 -4358_80745,229,4368_13250,Eden Quay,16449,1,4368_7778195_1074007,4368_515 -4358_80745,227,4368_13251,Eden Quay,2956,1,4368_7778195_1074012,4368_516 -4358_80745,229,4368_13252,Eden Quay,16597,1,4368_7778195_1074005,4368_514 -4358_80745,228,4368_13253,Eden Quay,10630,1,4368_7778195_1074008,4368_515 -4358_80745,227,4368_13254,Eden Quay,2886,1,4368_7778195_1074003,4368_516 -4358_80745,228,4368_13255,Eden Quay,10548,1,4368_7778195_1074006,4368_514 -4358_80745,229,4368_13256,Eden Quay,16443,1,4368_7778195_1074002,4368_515 -4358_80745,227,4368_13257,Eden Quay,3011,1,4368_7778195_1074011,4368_516 -4358_80745,228,4368_13258,Eden Quay,10691,1,4368_7778195_1074004,4368_514 -4358_80745,227,4368_13259,Eden Quay,3028,1,4368_7778195_1074009,4368_515 -4358_80757,229,4368_1326,Kilnamanagh Rd,16020,1,4368_7778195_5123003,4368_45 -4358_80745,229,4368_13260,Eden Quay,16494,1,4368_7778195_1074004,4368_516 -4358_80745,228,4368_13261,Eden Quay,10593,1,4368_7778195_1074003,4368_514 -4358_80745,229,4368_13262,Eden Quay,16451,1,4368_7778195_1074007,4368_515 -4358_80745,227,4368_13263,Eden Quay,2981,1,4368_7778195_1074010,4368_516 -4358_80746,227,4368_13264,Citywest,1160,0,4368_7778195_3027010,4368_517 -4358_80746,228,4368_13265,Citywest,8746,0,4368_7778195_3027005,4368_517 -4358_80746,227,4368_13266,Citywest,1140,0,4368_7778195_3027014,4368_517 -4358_80746,227,4368_13267,Citywest,1305,0,4368_7778195_3027001,4368_517 -4358_80746,228,4368_13268,Citywest,8872,0,4368_7778195_3027007,4368_517 -4358_80746,227,4368_13269,Citywest,1210,0,4368_7778195_3027018,4368_517 -4358_80757,227,4368_1327,Kilnamanagh Rd,2228,1,4368_7778195_5123007,4368_45 -4358_80746,228,4368_13270,Citywest,8772,0,4368_7778195_3027008,4368_517 -4358_80746,227,4368_13271,Citywest,1212,0,4368_7778195_3027021,4368_518 -4358_80746,229,4368_13272,Citywest,15083,0,4368_7778195_3027002,4368_519 -4358_80746,227,4368_13273,Citywest,6661,0,4368_7778195_3027023,4368_517 -4358_80746,228,4368_13274,Citywest,8894,0,4368_7778195_3027003,4368_517 -4358_80746,229,4368_13275,Citywest,15131,0,4368_7778195_3027004,4368_518 -4358_80746,227,4368_13276,Citywest,1330,0,4368_7778195_3027027,4368_517 -4358_80746,228,4368_13277,Citywest,8841,0,4368_7778195_3027006,4368_517 -4358_80746,229,4368_13278,Citywest,15125,0,4368_7778195_3027006,4368_518 -4358_80746,227,4368_13279,Citywest,6652,0,4368_7778195_3027005,4368_519 -4358_80757,228,4368_1328,Kilnamanagh Rd,9832,1,4368_7778195_5123006,4368_45 -4358_80746,228,4368_13280,Citywest,8860,0,4368_7778195_3027011,4368_517 -4358_80746,227,4368_13281,Citywest,1184,0,4368_7778195_3027009,4368_518 -4358_80746,229,4368_13282,Citywest,15167,0,4368_7778195_3027009,4368_517 -4358_80746,228,4368_13283,Citywest,8748,0,4368_7778195_3027005,4368_517 -4358_80746,227,4368_13284,Citywest,6645,0,4368_7778195_3027013,4368_518 -4358_80746,229,4368_13285,Citywest,15052,0,4368_7778195_3027010,4368_517 -4358_80746,228,4368_13286,Citywest,8789,0,4368_7778195_3027016,4368_518 -4358_80746,227,4368_13287,Citywest,1162,0,4368_7778195_3027010,4368_519 -4358_80746,228,4368_13288,Citywest,8874,0,4368_7778195_3027007,4368_517 -4358_80746,227,4368_13289,Citywest,1142,0,4368_7778195_3027014,4368_518 -4358_80757,227,4368_1329,Kilnamanagh Rd,2283,1,4368_7778195_5123009,4368_45 -4358_80746,229,4368_13290,Citywest,15101,0,4368_7778195_3027003,4368_517 -4358_80746,228,4368_13291,Citywest,8774,0,4368_7778195_3027008,4368_517 -4358_80746,227,4368_13292,Citywest,1168,0,4368_7778195_3027019,4368_518 -4358_80746,227,4368_13293,Citywest,1190,0,4368_7778195_3027022,4368_517 -4358_80746,229,4368_13294,Citywest,15085,0,4368_7778195_3027002,4368_518 -4358_80746,228,4368_13295,Citywest,8813,0,4368_7778195_3027010,4368_519 -4358_80746,228,4368_13296,Citywest,8896,0,4368_7778195_3027003,4368_517 -4358_80746,227,4368_13297,Citywest,1320,0,4368_7778195_3027024,4368_518 -4358_80746,229,4368_13298,Citywest,15133,0,4368_7778195_3027004,4368_517 -4358_80746,228,4368_13299,Citywest,8843,0,4368_7778195_3027006,4368_517 -4358_80760,228,4368_133,Shaw street,9516,0,4368_7778195_9001005,4368_1 -4358_80757,229,4368_1330,Kilnamanagh Rd,16005,1,4368_7778195_5123008,4368_45 -4358_80746,227,4368_13300,Citywest,1214,0,4368_7778195_3027021,4368_518 -4358_80746,229,4368_13301,Citywest,15127,0,4368_7778195_3027006,4368_517 -4358_80746,228,4368_13302,Citywest,8862,0,4368_7778195_3027011,4368_518 -4358_80746,227,4368_13303,Citywest,1525,0,4368_7778195_3027030,4368_519 -4358_80746,228,4368_13304,Citywest,8750,0,4368_7778195_3027005,4368_517 -4358_80746,227,4368_13305,Citywest,6663,0,4368_7778195_3027023,4368_518 -4358_80746,229,4368_13306,Citywest,15169,0,4368_7778195_3027009,4368_517 -4358_80746,228,4368_13307,Citywest,8796,0,4368_7778195_3027017,4368_517 -4358_80746,227,4368_13308,Citywest,1343,0,4368_7778195_3027032,4368_518 -4358_80746,229,4368_13309,Citywest,15054,0,4368_7778195_3027010,4368_517 -4358_80757,228,4368_1331,Kilnamanagh Rd,9766,1,4368_7778195_5123010,4368_46 -4358_80746,228,4368_13310,Citywest,8791,0,4368_7778195_3027016,4368_518 -4358_80746,227,4368_13311,Citywest,6654,0,4368_7778195_3027005,4368_519 -4358_80746,228,4368_13312,Citywest,8847,0,4368_7778195_3027023,4368_517 -4358_80746,227,4368_13313,Citywest,1186,0,4368_7778195_3027009,4368_518 -4358_80746,229,4368_13314,Citywest,15103,0,4368_7778195_3027003,4368_517 -4358_80746,228,4368_13315,Citywest,8876,0,4368_7778195_3027007,4368_517 -4358_80746,227,4368_13316,Citywest,6647,0,4368_7778195_3027013,4368_518 -4358_80746,228,4368_13317,Citywest,8776,0,4368_7778195_3027008,4368_517 -4358_80746,227,4368_13318,Citywest,1164,0,4368_7778195_3027010,4368_518 -4358_80746,229,4368_13319,Citywest,15087,0,4368_7778195_3027002,4368_519 -4358_80757,227,4368_1332,Kilnamanagh Rd,2120,1,4368_7778195_5123003,4368_45 -4358_80746,227,4368_13320,Citywest,1144,0,4368_7778195_3027014,4368_517 -4358_80746,228,4368_13321,Citywest,8815,0,4368_7778195_3027010,4368_518 -4358_80746,229,4368_13322,Citywest,15179,0,4368_7778195_3027015,4368_517 -4358_80746,227,4368_13323,Citywest,1170,0,4368_7778195_3027019,4368_517 -4358_80746,228,4368_13324,Citywest,8898,0,4368_7778195_3027003,4368_518 -4358_80746,228,4368_13325,Citywest,8845,0,4368_7778195_3027006,4368_517 -4358_80746,227,4368_13326,Citywest,1322,0,4368_7778195_3027024,4368_518 -4358_80746,229,4368_13327,Citywest,15135,0,4368_7778195_3027004,4368_519 -4358_80746,228,4368_13328,Citywest,8864,0,4368_7778195_3027011,4368_517 -4358_80746,227,4368_13329,Citywest,1216,0,4368_7778195_3027021,4368_518 -4358_80757,228,4368_1333,Kilnamanagh Rd,9925,1,4368_7778195_5123013,4368_45 -4358_80746,229,4368_13330,Citywest,15129,0,4368_7778195_3027006,4368_517 -4358_80746,227,4368_13331,Citywest,1527,0,4368_7778195_3027030,4368_517 -4358_80746,228,4368_13332,Citywest,8752,0,4368_7778195_3027005,4368_518 -4358_80746,228,4368_13333,Citywest,8798,0,4368_7778195_3027017,4368_517 -4358_80746,229,4368_13334,Citywest,15171,0,4368_7778195_3027009,4368_518 -4358_80746,227,4368_13335,Citywest,6665,0,4368_7778195_3027023,4368_519 -4358_80746,228,4368_13336,Citywest,8793,0,4368_7778195_3027016,4368_517 -4358_80746,227,4368_13337,Citywest,1219,0,4368_7778195_3027033,4368_518 -4358_80746,229,4368_13338,Citywest,15056,0,4368_7778195_3027010,4368_517 -4358_80746,228,4368_13339,Citywest,8849,0,4368_7778195_3027023,4368_517 -4358_80757,229,4368_1334,Kilnamanagh Rd,15962,1,4368_7778195_5123004,4368_45 -4358_80746,227,4368_13340,Citywest,1345,0,4368_7778195_3027032,4368_518 -4358_80746,228,4368_13341,Citywest,8778,0,4368_7778195_3027008,4368_517 -4358_80746,229,4368_13342,Citywest,15105,0,4368_7778195_3027003,4368_518 -4358_80746,227,4368_13343,Citywest,6656,0,4368_7778195_3027005,4368_519 -4358_80746,228,4368_13344,Citywest,8886,0,4368_7778195_3027024,4368_517 -4358_80746,227,4368_13345,Citywest,1188,0,4368_7778195_3027009,4368_518 -4358_80746,229,4368_13346,Citywest,15157,0,4368_7778195_3027016,4368_517 -4358_80746,227,4368_13347,Citywest,6649,0,4368_7778195_3027013,4368_517 -4358_80746,228,4368_13348,Citywest,8817,0,4368_7778195_3027010,4368_518 -4358_80746,227,4368_13349,Citywest,1166,0,4368_7778195_3027010,4368_517 -4358_80757,227,4368_1335,Kilnamanagh Rd,2199,1,4368_7778195_5123005,4368_46 -4358_80746,228,4368_13350,Citywest,8900,0,4368_7778195_3027003,4368_517 -4358_80746,229,4368_13351,Citywest,15089,0,4368_7778195_3027002,4368_518 -4358_80746,227,4368_13352,Citywest,1146,0,4368_7778195_3027014,4368_517 -4358_80746,228,4368_13353,Citywest,8830,0,4368_7778195_3027026,4368_517 -4358_80746,227,4368_13354,Citywest,1139,0,4368_7778195_3027039,4368_517 -4358_80746,229,4368_13355,Citywest,15181,0,4368_7778195_3027015,4368_517 -4358_80746,228,4368_13356,Citywest,8866,0,4368_7778195_3027011,4368_517 -4358_80746,227,4368_13357,Citywest,1172,0,4368_7778195_3027019,4368_518 -4358_80746,227,4368_13358,Citywest,1324,0,4368_7778195_3027024,4368_517 -4358_80746,229,4368_13359,Citywest,15137,0,4368_7778195_3027004,4368_517 -4358_80757,228,4368_1336,Kilnamanagh Rd,9916,1,4368_7778195_5123009,4368_45 -4358_80746,228,4368_13360,Citywest,8754,0,4368_7778195_3027005,4368_518 -4358_80746,227,4368_13361,Citywest,1309,0,4368_7778195_3027034,4368_517 -4358_80746,227,4368_13362,Citywest,1269,0,4368_7778195_3027035,4368_517 -4358_80746,228,4368_13363,Citywest,8800,0,4368_7778195_3027017,4368_518 -4358_80746,229,4368_13364,Citywest,15173,0,4368_7778195_3027009,4368_519 -4358_80746,227,4368_13365,Citywest,1206,0,4368_7778195_3027037,4368_517 -4358_80746,229,4368_13366,Citywest,15058,0,4368_7778195_3027010,4368_517 -4358_80746,228,4368_13367,Citywest,8851,0,4368_7778195_3027023,4368_518 -4358_80746,227,4368_13368,Citywest,6667,0,4368_7778195_3027023,4368_517 -4358_80746,228,4368_13369,Citywest,8780,0,4368_7778195_3027008,4368_517 -4358_80757,227,4368_1337,Kilnamanagh Rd,2176,1,4368_7778195_5123006,4368_45 -4358_80746,229,4368_13370,Citywest,15107,0,4368_7778195_3027003,4368_518 -4358_80746,227,4368_13371,Citywest,1221,0,4368_7778195_3027033,4368_519 -4358_80746,229,4368_13372,Citywest,15159,0,4368_7778195_3027016,4368_517 -4358_80746,227,4368_13373,Citywest,6658,0,4368_7778195_3027005,4368_518 -4358_80746,228,4368_13374,Citywest,8819,0,4368_7778195_3027010,4368_519 -4358_80746,227,4368_13375,Citywest,1148,0,4368_7778195_3027014,4368_517 -4358_80746,228,4368_13376,Citywest,8902,0,4368_7778195_3027003,4368_518 -4358_80746,229,4368_13377,Citywest,15091,0,4368_7778195_3027002,4368_519 -4358_80746,228,4368_13378,Citywest,8868,0,4368_7778195_3027011,4368_517 -4358_80746,227,4368_13379,Citywest,1174,0,4368_7778195_3027019,4368_518 -4358_80757,229,4368_1338,Kilnamanagh Rd,15999,1,4368_7778195_5123007,4368_45 -4358_80746,229,4368_13380,Citywest,15183,0,4368_7778195_3027015,4368_519 -4358_80746,229,4368_13381,Citywest,15139,0,4368_7778195_3027004,4368_517 -4358_80746,228,4368_13382,Citywest,8756,0,4368_7778195_3027005,4368_518 -4358_80746,227,4368_13383,Citywest,1311,0,4368_7778195_3027034,4368_519 -4358_80746,229,4368_13384,Citywest,15060,0,4368_7778195_3027010,4368_517 -4358_80746,228,4368_13385,Citywest,8802,0,4368_7778195_3027017,4368_518 -4358_80746,227,4368_13386,Citywest,1208,0,4368_7778195_3027037,4368_519 -4358_80746,228,4368_13387,Citywest,8853,0,4368_7778195_3027023,4368_517 -4358_80746,229,4368_13388,Citywest,15109,0,4368_7778195_3027003,4368_518 -4358_80746,227,4368_13389,Citywest,1223,0,4368_7778195_3027033,4368_519 -4358_80757,227,4368_1339,Kilnamanagh Rd,2319,1,4368_7778195_5123014,4368_45 -4358_80746,229,4368_13390,Citywest,15161,0,4368_7778195_3027016,4368_517 -4358_80746,228,4368_13391,Citywest,8782,0,4368_7778195_3027008,4368_518 -4358_80746,227,4368_13392,Citywest,6660,0,4368_7778195_3027005,4368_519 -4358_80746,227,4368_13393,Citywest,1150,0,4368_7778195_3027014,4368_517 -4358_80746,228,4368_13394,Citywest,8904,0,4368_7778195_3027003,4368_518 -4358_80746,229,4368_13395,Citywest,15093,0,4368_7778195_3027002,4368_517 -4358_80746,227,4368_13396,Ringsend Road,6651,1,4368_7778195_3027005,4368_520 -4358_80746,228,4368_13397,Ringsend Road,8893,1,4368_7778195_3027003,4368_520 -4358_80746,227,4368_13398,Ringsend Road,1183,1,4368_7778195_3027009,4368_521 -4358_80746,227,4368_13399,Ringsend Road,6644,1,4368_7778195_3027013,4368_520 -4358_80760,229,4368_134,Shaw street,15670,0,4368_7778195_9001005,4368_1 -4358_80757,228,4368_1340,Kilnamanagh Rd,9844,1,4368_7778195_5123002,4368_45 -4358_80746,228,4368_13400,Ringsend Road,8840,1,4368_7778195_3027006,4368_520 -4358_80746,227,4368_13401,Ringsend Road,1161,1,4368_7778195_3027010,4368_520 -4358_80746,227,4368_13402,Ringsend Road,1141,1,4368_7778195_3027014,4368_520 -4358_80746,228,4368_13403,Ringsend Road,8747,1,4368_7778195_3027005,4368_521 -4358_80746,227,4368_13404,Ringsend Road,1167,1,4368_7778195_3027019,4368_520 -4358_80746,227,4368_13405,Ringsend Road,1293,1,4368_7778195_3027020,4368_520 -4358_80746,228,4368_13406,Ringsend Road,8873,1,4368_7778195_3027007,4368_520 -4358_80746,227,4368_13407,Ringsend Road,1306,1,4368_7778195_3027001,4368_521 -4358_80746,227,4368_13408,Ringsend Road,1189,1,4368_7778195_3027022,4368_520 -4358_80746,229,4368_13409,Ringsend Road,15100,1,4368_7778195_3027003,4368_521 -4358_80757,227,4368_1341,Kilnamanagh Rd,2093,1,4368_7778195_5123016,4368_45 -4358_80746,228,4368_13410,Ringsend Road,8773,1,4368_7778195_3027008,4368_520 -4358_80746,227,4368_13411,Ringsend Road,1211,1,4368_7778195_3027018,4368_521 -4358_80746,227,4368_13412,Ringsend Road,1319,1,4368_7778195_3027024,4368_520 -4358_80746,227,4368_13413,Ringsend Road,1318,1,4368_7778195_3027025,4368_520 -4358_80746,229,4368_13414,Ringsend Road,15084,1,4368_7778195_3027002,4368_521 -4358_80746,228,4368_13415,Ringsend Road,8812,1,4368_7778195_3027010,4368_522 -4358_80746,227,4368_13416,Ringsend Road,1213,1,4368_7778195_3027021,4368_520 -4358_80746,228,4368_13417,Ringsend Road,8895,1,4368_7778195_3027003,4368_520 -4358_80746,227,4368_13418,Ringsend Road,1524,1,4368_7778195_3027030,4368_520 -4358_80746,229,4368_13419,Ringsend Road,15132,1,4368_7778195_3027004,4368_521 -4358_80757,229,4368_1342,Kilnamanagh Rd,15983,1,4368_7778195_5123005,4368_45 -4358_80746,228,4368_13420,Ringsend Road,8842,1,4368_7778195_3027006,4368_520 -4358_80746,227,4368_13421,Ringsend Road,6662,1,4368_7778195_3027023,4368_520 -4358_80746,229,4368_13422,Ringsend Road,15126,1,4368_7778195_3027006,4368_520 -4358_80746,228,4368_13423,Ringsend Road,8861,1,4368_7778195_3027011,4368_521 -4358_80746,227,4368_13424,Ringsend Road,1331,1,4368_7778195_3027027,4368_520 -4358_80746,228,4368_13425,Ringsend Road,8749,1,4368_7778195_3027005,4368_520 -4358_80746,229,4368_13426,Ringsend Road,15168,1,4368_7778195_3027009,4368_520 -4358_80746,227,4368_13427,Ringsend Road,6653,1,4368_7778195_3027005,4368_521 -4358_80746,228,4368_13428,Ringsend Road,8795,1,4368_7778195_3027017,4368_520 -4358_80746,227,4368_13429,Ringsend Road,1185,1,4368_7778195_3027009,4368_520 -4358_80757,228,4368_1343,Kilnamanagh Rd,9878,1,4368_7778195_5123001,4368_46 -4358_80746,229,4368_13430,Ringsend Road,15053,1,4368_7778195_3027010,4368_520 -4358_80746,228,4368_13431,Ringsend Road,8790,1,4368_7778195_3027016,4368_521 -4358_80746,227,4368_13432,Ringsend Road,6646,1,4368_7778195_3027013,4368_520 -4358_80746,228,4368_13433,Ringsend Road,8875,1,4368_7778195_3027007,4368_520 -4358_80746,229,4368_13434,Ringsend Road,15102,1,4368_7778195_3027003,4368_520 -4358_80746,227,4368_13435,Ringsend Road,1163,1,4368_7778195_3027010,4368_521 -4358_80746,228,4368_13436,Ringsend Road,8775,1,4368_7778195_3027008,4368_520 -4358_80746,227,4368_13437,Ringsend Road,1143,1,4368_7778195_3027014,4368_520 -4358_80746,229,4368_13438,Ringsend Road,15086,1,4368_7778195_3027002,4368_520 -4358_80746,228,4368_13439,Ringsend Road,8814,1,4368_7778195_3027010,4368_521 -4358_80757,227,4368_1344,Kilnamanagh Rd,2274,1,4368_7778195_5123008,4368_45 -4358_80746,227,4368_13440,Ringsend Road,1169,1,4368_7778195_3027019,4368_520 -4358_80746,228,4368_13441,Ringsend Road,8897,1,4368_7778195_3027003,4368_520 -4358_80746,227,4368_13442,Ringsend Road,1321,1,4368_7778195_3027024,4368_520 -4358_80746,229,4368_13443,Ringsend Road,15134,1,4368_7778195_3027004,4368_521 -4358_80746,228,4368_13444,Ringsend Road,8844,1,4368_7778195_3027006,4368_520 -4358_80746,227,4368_13445,Ringsend Road,1215,1,4368_7778195_3027021,4368_520 -4358_80746,229,4368_13446,Ringsend Road,15128,1,4368_7778195_3027006,4368_520 -4358_80746,228,4368_13447,Ringsend Road,8863,1,4368_7778195_3027011,4368_521 -4358_80746,227,4368_13448,Ringsend Road,1526,1,4368_7778195_3027030,4368_520 -4358_80746,228,4368_13449,Ringsend Road,8751,1,4368_7778195_3027005,4368_520 -4358_80757,228,4368_1345,Kilnamanagh Rd,9822,1,4368_7778195_5123012,4368_45 -4358_80746,229,4368_13450,Ringsend Road,15170,1,4368_7778195_3027009,4368_520 -4358_80746,227,4368_13451,Ringsend Road,6664,1,4368_7778195_3027023,4368_521 -4358_80746,228,4368_13452,Ringsend Road,8797,1,4368_7778195_3027017,4368_520 -4358_80746,227,4368_13453,Ringsend Road,1218,1,4368_7778195_3027033,4368_520 -4358_80746,229,4368_13454,Ringsend Road,15055,1,4368_7778195_3027010,4368_520 -4358_80746,228,4368_13455,Ringsend Road,8792,1,4368_7778195_3027016,4368_521 -4358_80746,227,4368_13456,Ringsend Road,1344,1,4368_7778195_3027032,4368_520 -4358_80746,228,4368_13457,Ringsend Road,8848,1,4368_7778195_3027023,4368_520 -4358_80746,229,4368_13458,Ringsend Road,15104,1,4368_7778195_3027003,4368_520 -4358_80746,227,4368_13459,Ringsend Road,6655,1,4368_7778195_3027005,4368_521 -4358_80757,227,4368_1346,Kilnamanagh Rd,2297,1,4368_7778195_5123011,4368_45 -4358_80746,228,4368_13460,Ringsend Road,8877,1,4368_7778195_3027007,4368_520 -4358_80746,227,4368_13461,Ringsend Road,1187,1,4368_7778195_3027009,4368_520 -4358_80746,229,4368_13462,Ringsend Road,15156,1,4368_7778195_3027016,4368_520 -4358_80746,228,4368_13463,Ringsend Road,8777,1,4368_7778195_3027008,4368_521 -4358_80746,227,4368_13464,Ringsend Road,6648,1,4368_7778195_3027013,4368_520 -4358_80746,228,4368_13465,Ringsend Road,8885,1,4368_7778195_3027024,4368_520 -4358_80746,227,4368_13466,Ringsend Road,1165,1,4368_7778195_3027010,4368_520 -4358_80746,229,4368_13467,Ringsend Road,15088,1,4368_7778195_3027002,4368_521 -4358_80746,228,4368_13468,Ringsend Road,8816,1,4368_7778195_3027010,4368_520 -4358_80746,227,4368_13469,Ringsend Road,1145,1,4368_7778195_3027014,4368_520 -4358_80757,229,4368_1347,Kilnamanagh Rd,15972,1,4368_7778195_5123002,4368_46 -4358_80746,229,4368_13470,Ringsend Road,15180,1,4368_7778195_3027015,4368_520 -4358_80746,228,4368_13471,Ringsend Road,8899,1,4368_7778195_3027003,4368_521 -4358_80746,227,4368_13472,Ringsend Road,1171,1,4368_7778195_3027019,4368_520 -4358_80746,228,4368_13473,Ringsend Road,8846,1,4368_7778195_3027006,4368_520 -4358_80746,227,4368_13474,Ringsend Road,1323,1,4368_7778195_3027024,4368_520 -4358_80746,229,4368_13475,Ringsend Road,15136,1,4368_7778195_3027004,4368_520 -4358_80746,228,4368_13476,Ringsend Road,8865,1,4368_7778195_3027011,4368_520 -4358_80746,227,4368_13477,Ringsend Road,1308,1,4368_7778195_3027034,4368_521 -4358_80746,227,4368_13478,Ringsend Road,1217,1,4368_7778195_3027021,4368_520 -4358_80746,229,4368_13479,Ringsend Road,15130,1,4368_7778195_3027006,4368_520 -4358_80757,228,4368_1348,Kilnamanagh Rd,9788,1,4368_7778195_5123004,4368_45 -4358_80746,227,4368_13480,Ringsend Road,1268,1,4368_7778195_3027035,4368_521 -4358_80746,228,4368_13481,Ringsend Road,8753,1,4368_7778195_3027005,4368_522 -4358_80746,227,4368_13482,Ringsend Road,1528,1,4368_7778195_3027030,4368_520 -4358_80746,228,4368_13483,Ringsend Road,8799,1,4368_7778195_3027017,4368_520 -4358_80746,229,4368_13484,Ringsend Road,15172,1,4368_7778195_3027009,4368_520 -4358_80746,227,4368_13485,Ringsend Road,1205,1,4368_7778195_3027037,4368_521 -4358_80746,228,4368_13486,Ringsend Road,8794,1,4368_7778195_3027016,4368_520 -4358_80746,227,4368_13487,Ringsend Road,6666,1,4368_7778195_3027023,4368_520 -4358_80746,229,4368_13488,Ringsend Road,15057,1,4368_7778195_3027010,4368_520 -4358_80746,228,4368_13489,Ringsend Road,8850,1,4368_7778195_3027023,4368_521 -4358_80757,227,4368_1349,Kilnamanagh Rd,2305,1,4368_7778195_5123012,4368_45 -4358_80746,227,4368_13490,Ringsend Road,1220,1,4368_7778195_3027033,4368_522 -4358_80746,227,4368_13491,Ringsend Road,1307,1,4368_7778195_3027038,4368_520 -4358_80746,228,4368_13492,Ringsend Road,8779,1,4368_7778195_3027008,4368_520 -4358_80746,229,4368_13493,Ringsend Road,15106,1,4368_7778195_3027003,4368_520 -4358_80746,227,4368_13494,Ringsend Road,1346,1,4368_7778195_3027032,4368_521 -4358_80746,228,4368_13495,Ringsend Road,8887,1,4368_7778195_3027024,4368_520 -4358_80746,227,4368_13496,Ringsend Road,6657,1,4368_7778195_3027005,4368_520 -4358_80746,229,4368_13497,Ringsend Road,15158,1,4368_7778195_3027016,4368_520 -4358_80746,228,4368_13498,Ringsend Road,8818,1,4368_7778195_3027010,4368_521 -4358_80746,227,4368_13499,Ringsend Road,6650,1,4368_7778195_3027013,4368_520 -4358_80760,227,4368_135,Shaw street,1551,0,4368_7778195_9001010,4368_2 -4358_80757,229,4368_1350,Kilnamanagh Rd,15992,1,4368_7778195_5123006,4368_45 -4358_80746,228,4368_13500,Ringsend Road,8901,1,4368_7778195_3027003,4368_520 -4358_80746,227,4368_13501,Ringsend Road,1147,1,4368_7778195_3027014,4368_520 -4358_80746,229,4368_13502,Ringsend Road,15090,1,4368_7778195_3027002,4368_521 -4358_80746,228,4368_13503,Ringsend Road,8867,1,4368_7778195_3027011,4368_520 -4358_80746,227,4368_13504,Ringsend Road,1173,1,4368_7778195_3027019,4368_520 -4358_80746,229,4368_13505,Ringsend Road,15182,1,4368_7778195_3027015,4368_521 -4358_80746,228,4368_13506,Ringsend Road,8755,1,4368_7778195_3027005,4368_520 -4358_80746,229,4368_13507,Ringsend Road,15138,1,4368_7778195_3027004,4368_520 -4358_80746,227,4368_13508,Ringsend Road,1310,1,4368_7778195_3027034,4368_521 -4358_80746,228,4368_13509,Ringsend Road,8801,1,4368_7778195_3027017,4368_520 -4358_80757,227,4368_1351,Kilnamanagh Rd,2240,1,4368_7778195_5123001,4368_45 -4358_80746,229,4368_13510,Ringsend Road,15059,1,4368_7778195_3027010,4368_520 -4358_80746,227,4368_13511,Ringsend Road,1207,1,4368_7778195_3027037,4368_521 -4358_80746,228,4368_13512,Ringsend Road,8852,1,4368_7778195_3027023,4368_520 -4358_80746,229,4368_13513,Ringsend Road,15108,1,4368_7778195_3027003,4368_520 -4358_80746,227,4368_13514,Ringsend Road,1222,1,4368_7778195_3027033,4368_521 -4358_80746,228,4368_13515,Ringsend Road,8781,1,4368_7778195_3027008,4368_520 -4358_80746,229,4368_13516,Ringsend Road,15160,1,4368_7778195_3027016,4368_520 -4358_80746,227,4368_13517,Ringsend Road,6659,1,4368_7778195_3027005,4368_521 -4358_80746,228,4368_13518,Ringsend Road,8903,1,4368_7778195_3027003,4368_520 -4358_80746,227,4368_13519,Ringsend Road,1149,1,4368_7778195_3027014,4368_520 -4358_80757,228,4368_1352,Kilnamanagh Rd,9906,1,4368_7778195_5123007,4368_45 -4358_80746,229,4368_13520,Ringsend Road,15092,1,4368_7778195_3027002,4368_521 -4358_80746,228,4368_13521,Ringsend Road,8869,1,4368_7778195_3027011,4368_520 -4358_80746,227,4368_13522,Ringsend Road,1175,1,4368_7778195_3027019,4368_520 -4358_80746,229,4368_13523,Ringsend Road,15184,1,4368_7778195_3027015,4368_521 -4358_80746,228,4368_13524,Ringsend Road,8757,1,4368_7778195_3027005,4368_520 -4358_80746,229,4368_13525,Ringsend Road,15140,1,4368_7778195_3027004,4368_520 -4358_80746,227,4368_13526,Ringsend Road,1312,1,4368_7778195_3027034,4368_521 -4358_80746,228,4368_13527,Ringsend Road,8803,1,4368_7778195_3027017,4368_520 -4358_80746,229,4368_13528,Ringsend Road,15061,1,4368_7778195_3027010,4368_520 -4358_80746,227,4368_13529,Ringsend Road,1209,1,4368_7778195_3027037,4368_521 -4358_80757,227,4368_1353,Kilnamanagh Rd,2252,1,4368_7778195_5123002,4368_45 -4358_80691,227,4368_13530,UCD,1521,1,4368_7778195_3823101,4368_523 -4358_80724,227,4368_13531,Loughlinstown Pk,6305,0,4368_7778195_2007004,4368_524 -4358_80724,228,4368_13532,Loughlinstown Pk,8299,0,4368_7778195_2007002,4368_524 -4358_80724,227,4368_13533,Loughlinstown Pk,6284,0,4368_7778195_2007008,4368_524 -4358_80724,228,4368_13534,Loughlinstown Pk,8731,0,4368_7778195_2007001,4368_524 -4358_80724,227,4368_13535,Loughlinstown Pk,6334,0,4368_7778195_2007010,4368_524 -4358_80724,228,4368_13536,Loughlinstown Pk,8264,0,4368_7778195_2007003,4368_524 -4358_80724,227,4368_13537,Loughlinstown Pk,6311,0,4368_7778195_2007006,4368_524 -4358_80724,228,4368_13538,Loughlinstown Pk,8277,0,4368_7778195_2007004,4368_524 -4358_80724,227,4368_13539,Loughlinstown Pk,6298,0,4368_7778195_2007002,4368_524 -4358_80757,229,4368_1354,Kilnamanagh Rd,15898,1,4368_7778195_5123001,4368_45 -4358_80724,228,4368_13540,Loughlinstown Pk,8315,0,4368_7778195_2007007,4368_524 -4358_80724,229,4368_13541,Loughlinstown Pk,14481,0,4368_7778195_2007003,4368_526 -4358_80724,228,4368_13542,Loughlinstown Pk,8301,0,4368_7778195_2007002,4368_524 -4358_80724,227,4368_13543,Loughlinstown Pk,6307,0,4368_7778195_2007004,4368_526 -4358_80724,229,4368_13544,Loughlinstown Pk,14413,0,4368_7778195_2007007,4368_524 -4358_80724,227,4368_13545,Loughlinstown Pk,6347,0,4368_7778195_2007013,4368_524 -4358_80724,228,4368_13546,Loughlinstown Pk,8733,0,4368_7778195_2007001,4368_526 -4358_80724,228,4368_13547,Loughlinstown Pk,8266,0,4368_7778195_2007003,4368_524 -4358_80724,227,4368_13548,Loughlinstown Pk,6367,0,4368_7778195_2007016,4368_526 -4358_80724,229,4368_13549,Loughlinstown Pk,14495,0,4368_7778195_2007004,4368_527 -4358_80757,228,4368_1355,Kilnamanagh Rd,9761,1,4368_7778195_5123003,4368_46 -4358_80724,228,4368_13550,Loughlinstown Pk,8360,0,4368_7778195_2007011,4368_524 -4358_80724,227,4368_13551,Loughlinstown Pk,6386,0,4368_7778195_2007017,4368_524 -4358_80724,229,4368_13552,Loughlinstown Pk,14422,0,4368_7778195_2007001,4368_524 -4358_80724,228,4368_13553,Loughlinstown Pk,8330,0,4368_7778195_2007006,4368_524 -4358_80724,227,4368_13554,Loughlinstown Pk,6313,0,4368_7778195_2007006,4368_524 -4358_80724,228,4368_13555,Loughlinstown Pk,8349,0,4368_7778195_2007010,4368_524 -4358_80724,229,4368_13556,Loughlinstown Pk,14456,0,4368_7778195_2007005,4368_524 -4358_80724,227,4368_13557,Loughlinstown Pk,6300,0,4368_7778195_2007002,4368_524 -4358_80724,228,4368_13558,Loughlinstown Pk,8303,0,4368_7778195_2007002,4368_524 -4358_80724,229,4368_13559,Loughlinstown Pk,14514,0,4368_7778195_2007008,4368_524 -4358_80757,227,4368_1356,Kilnamanagh Rd,2218,1,4368_7778195_5123015,4368_45 -4358_80724,227,4368_13560,Loughlinstown Pk,6309,0,4368_7778195_2007004,4368_524 -4358_80724,228,4368_13561,Loughlinstown Pk,8735,0,4368_7778195_2007001,4368_524 -4358_80724,227,4368_13562,Loughlinstown Pk,6349,0,4368_7778195_2007013,4368_524 -4358_80724,229,4368_13563,Loughlinstown Pk,14497,0,4368_7778195_2007004,4368_526 -4358_80724,228,4368_13564,Loughlinstown Pk,8268,0,4368_7778195_2007003,4368_524 -4358_80724,229,4368_13565,Loughlinstown Pk,14445,0,4368_7778195_2007006,4368_524 -4358_80724,227,4368_13566,Loughlinstown Pk,6369,0,4368_7778195_2007016,4368_526 -4358_80724,228,4368_13567,Loughlinstown Pk,8362,0,4368_7778195_2007011,4368_524 -4358_80724,229,4368_13568,Loughlinstown Pk,14485,0,4368_7778195_2007003,4368_524 -4358_80724,227,4368_13569,Loughlinstown Pk,6388,0,4368_7778195_2007017,4368_526 -4358_80757,228,4368_1357,Kilnamanagh Rd,9898,1,4368_7778195_5123011,4368_45 -4358_80724,228,4368_13570,Loughlinstown Pk,8332,0,4368_7778195_2007006,4368_524 -4358_80724,227,4368_13571,Loughlinstown Pk,6315,0,4368_7778195_2007006,4368_524 -4358_80724,229,4368_13572,Loughlinstown Pk,14395,0,4368_7778195_2007010,4368_524 -4358_80724,228,4368_13573,Loughlinstown Pk,8351,0,4368_7778195_2007010,4368_524 -4358_80724,227,4368_13574,Loughlinstown Pk,6302,0,4368_7778195_2007002,4368_524 -4358_80724,228,4368_13575,Loughlinstown Pk,8378,0,4368_7778195_2007013,4368_524 -4358_80724,229,4368_13576,Loughlinstown Pk,14516,0,4368_7778195_2007008,4368_524 -4358_80724,227,4368_13577,Loughlinstown Pk,6277,0,4368_7778195_2007019,4368_524 -4358_80724,228,4368_13578,Loughlinstown Pk,8353,0,4368_7778195_2007014,4368_524 -4358_80724,227,4368_13579,Loughlinstown Pk,6351,0,4368_7778195_2007013,4368_524 -4358_80757,227,4368_1358,Kilnamanagh Rd,2183,1,4368_7778195_5123018,4368_45 -4358_80724,228,4368_13580,Loughlinstown Pk,8292,0,4368_7778195_2007008,4368_526 -4358_80724,229,4368_13581,Loughlinstown Pk,14499,0,4368_7778195_2007004,4368_527 -4358_80724,227,4368_13582,Loughlinstown Pk,6254,0,4368_7778195_2007021,4368_524 -4358_80724,228,4368_13583,Loughlinstown Pk,8342,0,4368_7778195_2007009,4368_524 -4358_80724,229,4368_13584,Loughlinstown Pk,14447,0,4368_7778195_2007006,4368_524 -4358_80724,227,4368_13585,Loughlinstown Pk,6265,0,4368_7778195_2007018,4368_524 -4358_80724,228,4368_13586,Loughlinstown Pk,8382,0,4368_7778195_2007015,4368_524 -4358_80724,227,4368_13587,Loughlinstown Pk,6340,0,4368_7778195_2007010,4368_524 -4358_80724,229,4368_13588,Loughlinstown Pk,14487,0,4368_7778195_2007003,4368_524 -4358_80724,228,4368_13589,Loughlinstown Pk,8334,0,4368_7778195_2007006,4368_524 -4358_80757,229,4368_1359,Kilnamanagh Rd,16022,1,4368_7778195_5123003,4368_45 -4358_80724,227,4368_13590,Loughlinstown Pk,6293,0,4368_7778195_2007007,4368_524 -4358_80724,229,4368_13591,Loughlinstown Pk,14397,0,4368_7778195_2007010,4368_524 -4358_80724,228,4368_13592,Loughlinstown Pk,8371,0,4368_7778195_2007012,4368_524 -4358_80724,227,4368_13593,Loughlinstown Pk,6329,0,4368_7778195_2007009,4368_524 -4358_80724,229,4368_13594,Loughlinstown Pk,14518,0,4368_7778195_2007008,4368_524 -4358_80724,228,4368_13595,Loughlinstown Pk,8312,0,4368_7778195_2007005,4368_524 -4358_80724,227,4368_13596,Loughlinstown Pk,6377,0,4368_7778195_2007020,4368_524 -4358_80724,228,4368_13597,Loughlinstown Pk,8739,0,4368_7778195_2007001,4368_525 -4358_80724,229,4368_13598,Loughlinstown Pk,14501,0,4368_7778195_2007004,4368_524 -4358_80724,227,4368_13599,Loughlinstown Pk,6362,0,4368_7778195_2007014,4368_524 -4358_80760,228,4368_136,Shaw street,9456,0,4368_7778195_9001003,4368_1 -4358_80757,227,4368_1360,Kilnamanagh Rd,2262,1,4368_7778195_5123004,4368_45 -4358_80724,228,4368_13600,Loughlinstown Pk,8272,0,4368_7778195_2007003,4368_525 -4358_80724,229,4368_13601,Loughlinstown Pk,14449,0,4368_7778195_2007006,4368_524 -4358_80724,227,4368_13602,Loughlinstown Pk,6373,0,4368_7778195_2007016,4368_524 -4358_80724,228,4368_13603,Loughlinstown Pk,8285,0,4368_7778195_2007004,4368_525 -4358_80724,227,4368_13604,Loughlinstown Pk,6392,0,4368_7778195_2007017,4368_525 -4358_80724,229,4368_13605,Loughlinstown Pk,14489,0,4368_7778195_2007003,4368_525 -4358_80724,227,4368_13606,Loughlinstown Pk,6295,0,4368_7778195_2007007,4368_525 -4358_80724,228,4368_13607,Loughlinstown Pk,8323,0,4368_7778195_2007007,4368_525 -4358_80724,229,4368_13608,Loughlinstown Pk,14520,0,4368_7778195_2007008,4368_525 -4358_80724,227,4368_13609,Loughlinstown Pk,6273,0,4368_7778195_2007022,4368_525 -4358_80757,228,4368_1361,Kilnamanagh Rd,9834,1,4368_7778195_5123006,4368_45 -4358_80724,229,4368_13610,Loughlinstown Pk,14503,0,4368_7778195_2007004,4368_525 -4358_80724,228,4368_13611,Loughlinstown Pk,8344,0,4368_7778195_2007009,4368_525 -4358_80724,227,4368_13612,Loughlinstown Pk,6281,0,4368_7778195_2007019,4368_525 -4358_80724,229,4368_13613,Loughlinstown Pk,14451,0,4368_7778195_2007006,4368_525 -4358_80724,228,4368_13614,Loughlinstown Pk,8296,0,4368_7778195_2007008,4368_525 -4358_80724,227,4368_13615,Loughlinstown Pk,6364,0,4368_7778195_2007014,4368_525 -4358_80724,229,4368_13616,Loughlinstown Pk,14491,0,4368_7778195_2007003,4368_525 -4358_80724,227,4368_13617,Loughlinstown Pk,6394,0,4368_7778195_2007017,4368_525 -4358_80724,228,4368_13618,Loughlinstown Pk,8386,0,4368_7778195_2007015,4368_525 -4358_80724,227,4368_13619,Loughlinstown Pk,6383,0,4368_7778195_2007027,4368_525 -4358_80757,229,4368_1362,Kilnamanagh Rd,16007,1,4368_7778195_5123008,4368_45 -4358_80724,229,4368_13620,Loughlinstown Pk,14522,0,4368_7778195_2007008,4368_525 -4358_80724,228,4368_13621,Loughlinstown Pk,8375,0,4368_7778195_2007012,4368_525 -4358_80724,227,4368_13622,Loughlinstown Pk,6275,0,4368_7778195_2007022,4368_525 -4358_80724,229,4368_13623,Loughlinstown Pk,14453,0,4368_7778195_2007006,4368_525 -4358_80724,228,4368_13624,Loughlinstown Pk,8359,0,4368_7778195_2007014,4368_525 -4358_80724,227,4368_13625,Loughlinstown Pk,6283,0,4368_7778195_2007019,4368_525 -4358_80724,229,4368_13626,Loughlinstown Pk,14493,0,4368_7778195_2007003,4368_525 -4358_80724,227,4368_13627,Mountjoy Square,6257,1,4368_7778195_2007003,4368_528 -4358_80724,228,4368_13628,Mountjoy Square,8263,1,4368_7778195_2007003,4368_528 -4358_80724,227,4368_13629,Mountjoy Square,6286,1,4368_7778195_2007007,4368_528 -4358_80757,227,4368_1363,Kilnamanagh Rd,2230,1,4368_7778195_5123007,4368_46 -4358_80724,228,4368_13630,Mountjoy Square,8327,1,4368_7778195_2007006,4368_528 -4358_80724,227,4368_13631,Mountjoy Square,6306,1,4368_7778195_2007004,4368_528 -4358_80724,228,4368_13632,Mountjoy Square,8300,1,4368_7778195_2007002,4368_528 -4358_80724,227,4368_13633,Mountjoy Square,6285,1,4368_7778195_2007008,4368_528 -4358_80724,228,4368_13634,Mountjoy Square,8732,1,4368_7778195_2007001,4368_528 -4358_80724,229,4368_13635,Mountjoy Square,14504,1,4368_7778195_2007002,4368_528 -4358_80724,227,4368_13636,Mountjoy Square,6260,1,4368_7778195_2007018,4368_531 -4358_80724,228,4368_13637,Mountjoy Square,8265,1,4368_7778195_2007003,4368_528 -4358_80724,227,4368_13638,Mountjoy Square,6335,1,4368_7778195_2007010,4368_528 -4358_80724,229,4368_13639,Mountjoy Square,14442,1,4368_7778195_2007006,4368_528 -4358_80757,228,4368_1364,Kilnamanagh Rd,9768,1,4368_7778195_5123010,4368_45 -4358_80724,228,4368_13640,Mountjoy Square,8278,1,4368_7778195_2007004,4368_528 -4358_80724,227,4368_13641,Mountjoy Square,6312,1,4368_7778195_2007006,4368_528 -4358_80724,228,4368_13642,Mountjoy Square,8316,1,4368_7778195_2007007,4368_528 -4358_80724,229,4368_13643,Mountjoy Square,14482,1,4368_7778195_2007003,4368_528 -4358_80724,227,4368_13644,Mountjoy Square,6299,1,4368_7778195_2007002,4368_528 -4358_80724,228,4368_13645,Mountjoy Square,8302,1,4368_7778195_2007002,4368_528 -4358_80724,229,4368_13646,Mountjoy Square,14414,1,4368_7778195_2007007,4368_528 -4358_80724,227,4368_13647,Mountjoy Square,6308,1,4368_7778195_2007004,4368_531 -4358_80724,228,4368_13648,Mountjoy Square,8734,1,4368_7778195_2007001,4368_528 -4358_80724,227,4368_13649,Mountjoy Square,6348,1,4368_7778195_2007013,4368_528 -4358_80757,227,4368_1365,Kilnamanagh Rd,2133,1,4368_7778195_5123019,4368_45 -4358_80724,229,4368_13650,Mountjoy Square,14496,1,4368_7778195_2007004,4368_528 -4358_80724,228,4368_13651,Mountjoy Square,8267,1,4368_7778195_2007003,4368_528 -4358_80724,227,4368_13652,Mountjoy Square,6368,1,4368_7778195_2007016,4368_528 -4358_80724,228,4368_13653,Mountjoy Square,8361,1,4368_7778195_2007011,4368_528 -4358_80724,229,4368_13654,Mountjoy Square,14423,1,4368_7778195_2007001,4368_528 -4358_80724,227,4368_13655,Mountjoy Square,6387,1,4368_7778195_2007017,4368_528 -4358_80724,228,4368_13656,Mountjoy Square,8331,1,4368_7778195_2007006,4368_528 -4358_80724,227,4368_13657,Mountjoy Square,6314,1,4368_7778195_2007006,4368_528 -4358_80724,229,4368_13658,Mountjoy Square,14457,1,4368_7778195_2007005,4368_531 -4358_80724,228,4368_13659,Mountjoy Square,8350,1,4368_7778195_2007010,4368_528 -4358_80757,228,4368_1366,Kilnamanagh Rd,9927,1,4368_7778195_5123013,4368_45 -4358_80724,227,4368_13660,Mountjoy Square,6301,1,4368_7778195_2007002,4368_528 -4358_80724,229,4368_13661,Mountjoy Square,14515,1,4368_7778195_2007008,4368_528 -4358_80724,228,4368_13662,Mountjoy Square,8377,1,4368_7778195_2007013,4368_528 -4358_80724,227,4368_13663,Mountjoy Square,6276,1,4368_7778195_2007019,4368_528 -4358_80724,228,4368_13664,Mountjoy Square,8736,1,4368_7778195_2007001,4368_528 -4358_80724,229,4368_13665,Mountjoy Square,14498,1,4368_7778195_2007004,4368_528 -4358_80724,227,4368_13666,Mountjoy Square,6350,1,4368_7778195_2007013,4368_528 -4358_80724,228,4368_13667,Mountjoy Square,8269,1,4368_7778195_2007003,4368_528 -4358_80724,229,4368_13668,Mountjoy Square,14446,1,4368_7778195_2007006,4368_528 -4358_80724,227,4368_13669,Mountjoy Square,6370,1,4368_7778195_2007016,4368_531 -4358_80757,229,4368_1367,Kilnamanagh Rd,15964,1,4368_7778195_5123004,4368_46 -4358_80724,228,4368_13670,Mountjoy Square,8363,1,4368_7778195_2007011,4368_528 -4358_80724,227,4368_13671,Mountjoy Square,6389,1,4368_7778195_2007017,4368_528 -4358_80724,229,4368_13672,Mountjoy Square,14486,1,4368_7778195_2007003,4368_528 -4358_80724,228,4368_13673,Mountjoy Square,8333,1,4368_7778195_2007006,4368_528 -4358_80724,227,4368_13674,Mountjoy Square,6316,1,4368_7778195_2007006,4368_528 -4358_80724,228,4368_13675,Mountjoy Square,8352,1,4368_7778195_2007010,4368_528 -4358_80724,229,4368_13676,Mountjoy Square,14396,1,4368_7778195_2007010,4368_528 -4358_80724,227,4368_13677,Mountjoy Square,6303,1,4368_7778195_2007002,4368_528 -4358_80724,228,4368_13678,Mountjoy Square,8379,1,4368_7778195_2007013,4368_528 -4358_80724,229,4368_13679,Mountjoy Square,14517,1,4368_7778195_2007008,4368_528 -4358_80757,227,4368_1368,Kilnamanagh Rd,2285,1,4368_7778195_5123009,4368_45 -4358_80724,227,4368_13680,Mountjoy Square,6278,1,4368_7778195_2007019,4368_531 -4358_80724,228,4368_13681,Mountjoy Square,8354,1,4368_7778195_2007014,4368_528 -4358_80724,227,4368_13682,Mountjoy Square,6352,1,4368_7778195_2007013,4368_528 -4358_80724,229,4368_13683,Mountjoy Square,14500,1,4368_7778195_2007004,4368_528 -4358_80724,228,4368_13684,Mountjoy Square,8293,1,4368_7778195_2007008,4368_528 -4358_80724,227,4368_13685,Mountjoy Square,6255,1,4368_7778195_2007021,4368_528 -4358_80724,228,4368_13686,Mountjoy Square,8343,1,4368_7778195_2007009,4368_528 -4358_80724,229,4368_13687,Mountjoy Square,14448,1,4368_7778195_2007006,4368_528 -4358_80724,227,4368_13688,Mountjoy Square,6266,1,4368_7778195_2007018,4368_528 -4358_80724,228,4368_13689,Parnell Square,8383,1,4368_7778195_2007015,4368_529 -4358_80757,228,4368_1369,Kilnamanagh Rd,9918,1,4368_7778195_5123009,4368_45 -4358_80724,227,4368_13690,Parnell Square,6341,1,4368_7778195_2007010,4368_529 -4358_80724,229,4368_13691,Parnell Square,14488,1,4368_7778195_2007003,4368_530 -4358_80724,228,4368_13692,Parnell Square,8335,1,4368_7778195_2007006,4368_529 -4358_80724,227,4368_13693,Parnell Square,6294,1,4368_7778195_2007007,4368_529 -4358_80724,229,4368_13694,Parnell Square,14519,1,4368_7778195_2007008,4368_529 -4358_80724,228,4368_13695,Parnell Square,8372,1,4368_7778195_2007012,4368_529 -4358_80724,227,4368_13696,Parnell Square,6330,1,4368_7778195_2007009,4368_529 -4358_80724,228,4368_13697,Parnell Square,8313,1,4368_7778195_2007005,4368_529 -4358_80724,229,4368_13698,Parnell Square,14502,1,4368_7778195_2007004,4368_529 -4358_80724,227,4368_13699,Parnell Square,6378,1,4368_7778195_2007020,4368_529 -4358_80760,227,4368_137,Shaw street,3149,0,4368_7778195_9001004,4368_1 -4358_80757,227,4368_1370,Kilnamanagh Rd,2122,1,4368_7778195_5123003,4368_45 -4358_80724,228,4368_13700,Parnell Square,8740,1,4368_7778195_2007001,4368_529 -4358_80724,229,4368_13701,Parnell Square,14450,1,4368_7778195_2007006,4368_529 -4358_80724,227,4368_13702,Parnell Square,6363,1,4368_7778195_2007014,4368_530 -4358_80724,228,4368_13703,Parnell Square,8273,1,4368_7778195_2007003,4368_529 -4358_80724,227,4368_13704,Parnell Square,6393,1,4368_7778195_2007017,4368_529 -4358_80724,229,4368_13705,Parnell Square,14490,1,4368_7778195_2007003,4368_529 -4358_80724,228,4368_13706,Parnell Square,8324,1,4368_7778195_2007007,4368_529 -4358_80724,227,4368_13707,Parnell Square,6382,1,4368_7778195_2007027,4368_530 -4358_80724,229,4368_13708,Parnell Square,14521,1,4368_7778195_2007008,4368_529 -4358_80724,227,4368_13709,Parnell Square,6274,1,4368_7778195_2007022,4368_529 -4358_80757,229,4368_1371,Kilnamanagh Rd,16001,1,4368_7778195_5123007,4368_45 -4358_80724,228,4368_13710,Parnell Square,8345,1,4368_7778195_2007009,4368_529 -4358_80724,229,4368_13711,Parnell Square,14452,1,4368_7778195_2007006,4368_529 -4358_80724,227,4368_13712,Parnell Square,6282,1,4368_7778195_2007019,4368_530 -4358_80724,228,4368_13713,Parnell Square,8297,1,4368_7778195_2007008,4368_529 -4358_80724,227,4368_13714,Parnell Square,6365,1,4368_7778195_2007014,4368_529 -4358_80724,229,4368_13715,Parnell Square,14492,1,4368_7778195_2007003,4368_529 -4358_80724,228,4368_13716,Parnell Square,8387,1,4368_7778195_2007015,4368_529 -4358_80724,227,4368_13717,Parnell Square,6395,1,4368_7778195_2007017,4368_530 -4358_80724,229,4368_13718,Parnell Square,14523,1,4368_7778195_2007008,4368_529 -4358_80724,227,4368_13719,Parnell Square,6384,1,4368_7778195_2007027,4368_530 -4358_80757,227,4368_1372,Kilnamanagh Rd,2201,1,4368_7778195_5123005,4368_45 -4358_80724,228,4368_13720,Parnell Square,8376,1,4368_7778195_2007012,4368_532 -4358_80725,227,4368_13721,Shankill,6304,0,4368_7778195_2007002,4368_533 -4358_80725,227,4368_13722,Shankill,124,0,4368_7778195_2007023,4368_533 -4358_80725,227,4368_13723,Shankill,127,0,4368_7778195_2007024,4368_533 -4358_80725,227,4368_13724,Shankill,108,0,4368_7778195_2007026,4368_533 -4358_80725,227,4368_13725,Mountjoy Square,6322,1,4368_7778195_2007009,4368_534 -4358_80725,227,4368_13726,Mountjoy Square,6346,1,4368_7778195_2007013,4368_534 -4358_80725,227,4368_13727,Mountjoy Square,6355,1,4368_7778195_2007014,4368_534 -4358_80725,227,4368_13728,Mountjoy Square,121,1,4368_7778195_2007015,4368_534 -4358_80725,227,4368_13729,Mountjoy Square,6385,1,4368_7778195_2007017,4368_534 -4358_80757,228,4368_1373,Kilnamanagh Rd,9824,1,4368_7778195_5123012,4368_45 -4358_80726,227,4368_13730,Dalkey,128,0,4368_7778195_2007025,4368_535 -4358_80726,227,4368_13731,Mountjoy Square,6400,1,4368_7778195_2007012,4368_536 -4358_80727,227,4368_13732,Mountjoy Square,6404,1,4368_7778195_2007001,4368_537 -4358_80727,228,4368_13733,Mountjoy Square,8730,1,4368_7778195_2007001,4368_537 -4358_80747,227,4368_13734,Kimmage,7689,0,4368_7778195_8083002,4368_539 -4358_80747,228,4368_13735,Kimmage,14139,0,4368_7778195_8083003,4368_539 -4358_80747,227,4368_13736,Kimmage,7589,0,4368_7778195_8083005,4368_539 -4358_80747,227,4368_13737,Kimmage,7575,0,4368_7778195_8083007,4368_539 -4358_80747,228,4368_13738,Kimmage,14287,0,4368_7778195_8083005,4368_541 -4358_80747,227,4368_13739,Kimmage,7553,0,4368_7778195_8083010,4368_539 -4358_80757,227,4368_1374,Kilnamanagh Rd,2178,1,4368_7778195_5123006,4368_45 -4358_80747,227,4368_13740,Kimmage,7713,0,4368_7778195_8083011,4368_539 -4358_80747,228,4368_13741,Kimmage,14297,0,4368_7778195_8083006,4368_541 -4358_80747,227,4368_13742,Kimmage,7767,0,4368_7778195_8083012,4368_539 -4358_80747,227,4368_13743,Kimmage,7701,0,4368_7778195_8083013,4368_539 -4358_80747,228,4368_13744,Kimmage,14256,0,4368_7778195_8083007,4368_541 -4358_80747,227,4368_13745,Kimmage,7776,0,4368_7778195_8083014,4368_539 -4358_80747,227,4368_13746,Kimmage,7566,0,4368_7778195_8083015,4368_539 -4358_80747,228,4368_13747,Kimmage,14307,0,4368_7778195_8083008,4368_541 -4358_80747,229,4368_13748,Kimmage,19186,0,4368_7778195_8083001,4368_538 -4358_80747,227,4368_13749,Kimmage,7723,0,4368_7778195_8083016,4368_539 -4358_80757,229,4368_1375,Kilnamanagh Rd,15985,1,4368_7778195_5123005,4368_46 -4358_80747,228,4368_13750,Kimmage,14271,0,4368_7778195_8083001,4368_539 -4358_80747,227,4368_13751,Kimmage,7644,0,4368_7778195_8083017,4368_541 -4358_80747,227,4368_13752,Kimmage,7745,0,4368_7778195_8083018,4368_539 -4358_80747,228,4368_13753,Kimmage,14281,0,4368_7778195_8083002,4368_539 -4358_80747,227,4368_13754,Kimmage,7619,0,4368_7778195_8083001,4368_541 -4358_80747,229,4368_13755,Kimmage,19264,0,4368_7778195_8083004,4368_538 -4358_80747,227,4368_13756,Kimmage,7759,0,4368_7778195_8083008,4368_539 -4358_80747,227,4368_13757,Kimmage,7543,0,4368_7778195_8083003,4368_539 -4358_80747,229,4368_13758,Kimmage,19215,0,4368_7778195_8083005,4368_538 -4358_80747,228,4368_13759,Kimmage,14220,0,4368_7778195_8083004,4368_541 -4358_80757,228,4368_1376,Kilnamanagh Rd,9790,1,4368_7778195_5123004,4368_45 -4358_80747,227,4368_13760,Kimmage,7675,0,4368_7778195_8083004,4368_539 -4358_80747,228,4368_13761,Kimmage,14141,0,4368_7778195_8083003,4368_539 -4358_80747,229,4368_13762,Kimmage,19257,0,4368_7778195_8083007,4368_538 -4358_80747,227,4368_13763,Kimmage,7740,0,4368_7778195_8083006,4368_539 -4358_80747,228,4368_13764,Kimmage,14289,0,4368_7778195_8083005,4368_539 -4358_80747,229,4368_13765,Kimmage,19172,0,4368_7778195_8083008,4368_538 -4358_80747,227,4368_13766,Kimmage,7753,0,4368_7778195_8083020,4368_539 -4358_80747,228,4368_13767,Kimmage,14323,0,4368_7778195_8083011,4368_539 -4358_80747,229,4368_13768,Kimmage,19236,0,4368_7778195_8083002,4368_538 -4358_80747,227,4368_13769,Kimmage,7708,0,4368_7778195_8083021,4368_539 -4358_80757,227,4368_1377,Kilnamanagh Rd,2322,1,4368_7778195_5123017,4368_45 -4358_80747,228,4368_13770,Kimmage,14258,0,4368_7778195_8083007,4368_539 -4358_80747,227,4368_13771,Kimmage,7691,0,4368_7778195_8083002,4368_539 -4358_80747,227,4368_13772,Kimmage,7591,0,4368_7778195_8083005,4368_539 -4358_80747,228,4368_13773,Kimmage,14337,0,4368_7778195_8083013,4368_539 -4358_80747,229,4368_13774,Kimmage,19188,0,4368_7778195_8083001,4368_538 -4358_80747,227,4368_13775,Kimmage,7577,0,4368_7778195_8083007,4368_539 -4358_80747,228,4368_13776,Kimmage,14309,0,4368_7778195_8083008,4368_539 -4358_80747,229,4368_13777,Kimmage,19178,0,4368_7778195_8083006,4368_538 -4358_80747,227,4368_13778,Kimmage,7715,0,4368_7778195_8083011,4368_539 -4358_80747,228,4368_13779,Kimmage,14318,0,4368_7778195_8083009,4368_539 -4358_80757,229,4368_1378,Kilnamanagh Rd,15974,1,4368_7778195_5123002,4368_45 -4358_80747,227,4368_13780,Kimmage,7769,0,4368_7778195_8083012,4368_539 -4358_80747,227,4368_13781,Kimmage,7703,0,4368_7778195_8083013,4368_539 -4358_80747,228,4368_13782,Kimmage,14345,0,4368_7778195_8083014,4368_539 -4358_80747,229,4368_13783,Kimmage,19217,0,4368_7778195_8083005,4368_538 -4358_80747,227,4368_13784,Kimmage,7778,0,4368_7778195_8083014,4368_539 -4358_80747,228,4368_13785,Kimmage,14283,0,4368_7778195_8083002,4368_539 -4358_80747,229,4368_13786,Kimmage,19266,0,4368_7778195_8083011,4368_538 -4358_80747,227,4368_13787,Kimmage,7568,0,4368_7778195_8083015,4368_539 -4358_80747,228,4368_13788,Kimmage,14236,0,4368_7778195_8083010,4368_539 -4358_80747,227,4368_13789,Kimmage,7725,0,4368_7778195_8083016,4368_539 -4358_80757,228,4368_1379,Kilnamanagh Rd,9938,1,4368_7778195_5123014,4368_46 -4358_80747,227,4368_13790,Kimmage,7646,0,4368_7778195_8083017,4368_539 -4358_80747,229,4368_13791,Kimmage,19233,0,4368_7778195_8083014,4368_538 -4358_80747,228,4368_13792,Kimmage,14143,0,4368_7778195_8083003,4368_539 -4358_80747,227,4368_13793,Kimmage,7747,0,4368_7778195_8083018,4368_539 -4358_80747,229,4368_13794,Kimmage,19213,0,4368_7778195_8083015,4368_538 -4358_80747,228,4368_13795,Kimmage,14330,0,4368_7778195_8083012,4368_539 -4358_80747,229,4368_13796,Kimmage,19191,0,4368_7778195_8083017,4368_538 -4358_80747,227,4368_13797,Kimmage,7761,0,4368_7778195_8083008,4368_539 -4358_80747,228,4368_13798,Kimmage,14325,0,4368_7778195_8083011,4368_539 -4358_80747,227,4368_13799,Kimmage,7545,0,4368_7778195_8083003,4368_539 -4358_80760,229,4368_138,Shaw street,15697,0,4368_7778195_9001001,4368_2 -4358_80757,227,4368_1380,Kilnamanagh Rd,2095,1,4368_7778195_5123016,4368_45 -4358_80747,227,4368_13800,Kimmage,7742,0,4368_7778195_8083006,4368_539 -4358_80747,229,4368_13801,Kimmage,19193,0,4368_7778195_8083020,4368_538 -4358_80747,228,4368_13802,Kimmage,14301,0,4368_7778195_8083006,4368_539 -4358_80747,227,4368_13803,Kimmage,7755,0,4368_7778195_8083020,4368_539 -4358_80747,229,4368_13804,Kimmage,19294,0,4368_7778195_8083021,4368_538 -4358_80747,228,4368_13805,Kimmage,14260,0,4368_7778195_8083007,4368_539 -4358_80747,229,4368_13806,Kimmage,19297,0,4368_7778195_8083022,4368_538 -4358_80747,227,4368_13807,Kimmage,7710,0,4368_7778195_8083021,4368_539 -4358_80747,228,4368_13808,Kimmage,14136,0,4368_7778195_8083016,4368_539 -4358_80747,227,4368_13809,Kimmage,7693,0,4368_7778195_8083002,4368_539 -4358_80757,228,4368_1381,Kilnamanagh Rd,9908,1,4368_7778195_5123007,4368_45 -4358_80747,227,4368_13810,Kimmage,7593,0,4368_7778195_8083005,4368_539 -4358_80747,229,4368_13811,Kimmage,19285,0,4368_7778195_8083013,4368_538 -4358_80747,228,4368_13812,Kimmage,14311,0,4368_7778195_8083008,4368_539 -4358_80747,227,4368_13813,Kimmage,7579,0,4368_7778195_8083007,4368_539 -4358_80747,229,4368_13814,Kimmage,19195,0,4368_7778195_8083025,4368_538 -4358_80747,228,4368_13815,Kimmage,14275,0,4368_7778195_8083001,4368_539 -4358_80747,229,4368_13816,Kimmage,19185,0,4368_7778195_8083016,4368_538 -4358_80747,227,4368_13817,Kimmage,7717,0,4368_7778195_8083011,4368_539 -4358_80747,228,4368_13818,Kimmage,14166,0,4368_7778195_8083015,4368_539 -4358_80747,227,4368_13819,Kimmage,7771,0,4368_7778195_8083012,4368_539 -4358_80757,227,4368_1382,Kilnamanagh Rd,2276,1,4368_7778195_5123008,4368_45 -4358_80747,227,4368_13820,Kimmage,7705,0,4368_7778195_8083013,4368_539 -4358_80747,228,4368_13821,Kimmage,14347,0,4368_7778195_8083014,4368_539 -4358_80747,229,4368_13822,Kimmage,19238,0,4368_7778195_8083027,4368_538 -4358_80747,227,4368_13823,Kimmage,7780,0,4368_7778195_8083014,4368_539 -4358_80747,228,4368_13824,Kimmage,14285,0,4368_7778195_8083002,4368_539 -4358_80747,229,4368_13825,Kimmage,19306,0,4368_7778195_8083028,4368_538 -4358_80747,229,4368_13826,Kimmage,19295,0,4368_7778195_8083030,4368_538 -4358_80747,227,4368_13827,Kimmage,7595,0,4368_7778195_8083023,4368_539 -4358_80747,228,4368_13828,Kimmage,14238,0,4368_7778195_8083010,4368_539 -4358_80747,227,4368_13829,Kimmage,7570,0,4368_7778195_8083015,4368_539 -4358_80757,229,4368_1383,Kilnamanagh Rd,15994,1,4368_7778195_5123006,4368_45 -4358_80747,227,4368_13830,Kimmage,7727,0,4368_7778195_8083016,4368_539 -4358_80747,229,4368_13831,Kimmage,19318,0,4368_7778195_8083034,4368_538 -4358_80747,228,4368_13832,Kimmage,14145,0,4368_7778195_8083003,4368_539 -4358_80747,227,4368_13833,Kimmage,7648,0,4368_7778195_8083017,4368_539 -4358_80747,229,4368_13834,Kimmage,19303,0,4368_7778195_8083024,4368_538 -4358_80747,228,4368_13835,Kimmage,14332,0,4368_7778195_8083012,4368_539 -4358_80747,229,4368_13836,Kimmage,19320,0,4368_7778195_8083035,4368_538 -4358_80747,227,4368_13837,Kimmage,7623,0,4368_7778195_8083001,4368_539 -4358_80747,228,4368_13838,Kimmage,14327,0,4368_7778195_8083011,4368_539 -4358_80747,227,4368_13839,Kimmage,7763,0,4368_7778195_8083008,4368_539 -4358_80757,227,4368_1384,Kilnamanagh Rd,2307,1,4368_7778195_5123012,4368_45 -4358_80747,227,4368_13840,Kimmage,7547,0,4368_7778195_8083003,4368_539 -4358_80747,229,4368_13841,Kimmage,19309,0,4368_7778195_8083026,4368_538 -4358_80747,228,4368_13842,Kimmage,14303,0,4368_7778195_8083006,4368_539 -4358_80747,227,4368_13843,Kimmage,7744,0,4368_7778195_8083006,4368_539 -4358_80747,229,4368_13844,Kimmage,19262,0,4368_7778195_8083037,4368_538 -4358_80747,228,4368_13845,Kimmage,14262,0,4368_7778195_8083007,4368_539 -4358_80747,227,4368_13846,Kimmage,7757,0,4368_7778195_8083020,4368_539 -4358_80747,229,4368_13847,Kimmage,19315,0,4368_7778195_8083029,4368_538 -4358_80747,227,4368_13848,Kimmage,7610,0,4368_7778195_8083009,4368_539 -4358_80747,228,4368_13849,Kimmage,14138,0,4368_7778195_8083016,4368_539 -4358_80757,228,4368_1385,Kilnamanagh Rd,9932,1,4368_7778195_5123016,4368_45 -4358_80747,227,4368_13850,Kimmage,7712,0,4368_7778195_8083021,4368_539 -4358_80747,229,4368_13851,Kimmage,19175,0,4368_7778195_8083039,4368_538 -4358_80747,227,4368_13852,Kimmage,7695,0,4368_7778195_8083002,4368_539 -4358_80747,228,4368_13853,Kimmage,14313,0,4368_7778195_8083008,4368_541 -4358_80747,228,4368_13854,Kimmage,14277,0,4368_7778195_8083001,4368_539 -4358_80747,229,4368_13855,Kimmage,19246,0,4368_7778195_8083040,4368_538 -4358_80747,227,4368_13856,Kimmage,7615,0,4368_7778195_8083022,4368_539 -4358_80747,229,4368_13857,Kimmage,19220,0,4368_7778195_8083041,4368_538 -4358_80747,228,4368_13858,Kimmage,14168,0,4368_7778195_8083015,4368_539 -4358_80747,229,4368_13859,Kimmage,19197,0,4368_7778195_8083043,4368_538 -4358_80757,227,4368_1386,Kilnamanagh Rd,2254,1,4368_7778195_5123002,4368_45 -4358_80747,228,4368_13860,Kimmage,14349,0,4368_7778195_8083014,4368_539 -4358_80747,227,4368_13861,Kimmage,7773,0,4368_7778195_8083012,4368_541 -4358_80747,227,4368_13862,Kimmage,7707,0,4368_7778195_8083013,4368_539 -4358_80747,229,4368_13863,Kimmage,19322,0,4368_7778195_8083035,4368_538 -4358_80747,228,4368_13864,Kimmage,14240,0,4368_7778195_8083010,4368_539 -4358_80747,227,4368_13865,Kimmage,7572,0,4368_7778195_8083015,4368_539 -4358_80747,229,4368_13866,Kimmage,19299,0,4368_7778195_8083045,4368_538 -4358_80747,228,4368_13867,Kimmage,14334,0,4368_7778195_8083012,4368_541 -4358_80747,229,4368_13868,Kimmage,19332,0,4368_7778195_8083046,4368_538 -4358_80747,227,4368_13869,Kimmage,7650,0,4368_7778195_8083017,4368_539 -4358_80757,229,4368_1387,Kilnamanagh Rd,15900,1,4368_7778195_5123001,4368_46 -4358_80747,228,4368_13870,Kimmage,14305,0,4368_7778195_8083006,4368_539 -4358_80747,227,4368_13871,Kimmage,7765,0,4368_7778195_8083008,4368_539 -4358_80747,229,4368_13872,Kimmage,19304,0,4368_7778195_8083048,4368_538 -4358_80747,228,4368_13873,Kimmage,14264,0,4368_7778195_8083007,4368_541 -4358_80747,227,4368_13874,Kimmage,7612,0,4368_7778195_8083009,4368_539 -4358_80747,229,4368_13875,Kimmage,19240,0,4368_7778195_8083049,4368_538 -4358_80747,228,4368_13876,Kimmage,14315,0,4368_7778195_8083008,4368_539 -4358_80747,228,4368_13877,Kimmage,14279,0,4368_7778195_8083001,4368_539 -4358_80747,229,4368_13878,Kimmage,19222,0,4368_7778195_8083051,4368_538 -4358_80747,227,4368_13879,Kimmage,7617,0,4368_7778195_8083022,4368_541 -4358_80757,228,4368_1388,Kilnamanagh Rd,9836,1,4368_7778195_5123006,4368_45 -4358_80747,229,4368_13880,Kimmage,19275,0,4368_7778195_8083044,4368_538 -4358_80747,227,4368_13881,Kimmage,7561,0,4368_7778195_8083010,4368_539 -4358_80747,228,4368_13882,Kimmage,14228,0,4368_7778195_8083004,4368_539 -4358_80747,227,4368_13883,Kimmage,7599,0,4368_7778195_8083023,4368_539 -4358_80747,229,4368_13884,Bachelors Walk,19334,0,4368_7778195_8083046,4368_540 -4358_80747,228,4368_13885,Bachelors Walk,14242,0,4368_7778195_8083010,4368_542 -4358_80747,227,4368_13886,Kimmage,7574,0,4368_7778195_8083015,4368_539 -4358_80747,229,4368_13887,Bachelors Walk,19313,0,4368_7778195_8083047,4368_540 -4358_80747,228,4368_13888,Bachelors Walk,14336,0,4368_7778195_8083012,4368_542 -4358_80747,227,4368_13889,Harristown,7618,1,4368_7778195_8083001,4368_543 -4358_80757,227,4368_1389,Kilnamanagh Rd,2185,1,4368_7778195_5123018,4368_45 -4358_80747,228,4368_13890,Harristown,14270,1,4368_7778195_8083001,4368_543 -4358_80747,227,4368_13891,Harristown,7542,1,4368_7778195_8083003,4368_543 -4358_80747,228,4368_13892,Harristown,14280,1,4368_7778195_8083002,4368_543 -4358_80747,227,4368_13893,Harristown,7674,1,4368_7778195_8083004,4368_543 -4358_80747,227,4368_13894,Harristown,7758,1,4368_7778195_8083008,4368_546 -4358_80747,227,4368_13895,Harristown,7739,1,4368_7778195_8083006,4368_543 -4358_80747,228,4368_13896,Harristown,14219,1,4368_7778195_8083004,4368_545 -4358_80747,227,4368_13897,Harristown,7605,1,4368_7778195_8083009,4368_543 -4358_80747,228,4368_13898,Harristown,14140,1,4368_7778195_8083003,4368_543 -4358_80747,227,4368_13899,Harristown,7690,1,4368_7778195_8083002,4368_543 -4358_80760,228,4368_139,Shaw street,9494,0,4368_7778195_9001004,4368_1 -4358_80757,229,4368_1390,Kilnamanagh Rd,16024,1,4368_7778195_5123003,4368_45 -4358_80747,228,4368_13900,Harristown,14288,1,4368_7778195_8083005,4368_543 -4358_80747,227,4368_13901,Harristown,7590,1,4368_7778195_8083005,4368_543 -4358_80747,227,4368_13902,Harristown,7576,1,4368_7778195_8083007,4368_543 -4358_80747,229,4368_13903,Charlestown,19235,1,4368_7778195_8083002,4368_544 -4358_80747,228,4368_13904,Harristown,14298,1,4368_7778195_8083006,4368_545 -4358_80747,227,4368_13905,Harristown,7554,1,4368_7778195_8083010,4368_543 -4358_80747,229,4368_13906,Charlestown,19259,1,4368_7778195_8083003,4368_544 -4358_80747,228,4368_13907,Harristown,14257,1,4368_7778195_8083007,4368_543 -4358_80747,227,4368_13908,Harristown,7714,1,4368_7778195_8083011,4368_543 -4358_80747,228,4368_13909,Harristown,14308,1,4368_7778195_8083008,4368_543 -4358_80757,228,4368_1391,Kilnamanagh Rd,9920,1,4368_7778195_5123015,4368_45 -4358_80747,229,4368_13910,Charlestown,19187,1,4368_7778195_8083001,4368_544 -4358_80747,227,4368_13911,Harristown,7768,1,4368_7778195_8083012,4368_543 -4358_80747,227,4368_13912,Harristown,7702,1,4368_7778195_8083013,4368_543 -4358_80747,228,4368_13913,Harristown,14272,1,4368_7778195_8083001,4368_545 -4358_80747,229,4368_13914,Charlestown,19177,1,4368_7778195_8083006,4368_544 -4358_80747,227,4368_13915,Harristown,7777,1,4368_7778195_8083014,4368_543 -4358_80747,228,4368_13916,Harristown,14317,1,4368_7778195_8083009,4368_543 -4358_80747,227,4368_13917,Harristown,7567,1,4368_7778195_8083015,4368_543 -4358_80747,229,4368_13918,Charlestown,19216,1,4368_7778195_8083005,4368_544 -4358_80747,228,4368_13919,Harristown,14221,1,4368_7778195_8083004,4368_543 -4358_80757,227,4368_1392,Kilnamanagh Rd,2264,1,4368_7778195_5123004,4368_46 -4358_80747,227,4368_13920,Harristown,7724,1,4368_7778195_8083016,4368_543 -4358_80747,229,4368_13921,Charlestown,19258,1,4368_7778195_8083007,4368_544 -4358_80747,228,4368_13922,Harristown,14235,1,4368_7778195_8083010,4368_543 -4358_80747,227,4368_13923,Harristown,7645,1,4368_7778195_8083017,4368_545 -4358_80747,227,4368_13924,Harristown,7746,1,4368_7778195_8083018,4368_543 -4358_80747,228,4368_13925,Harristown,14142,1,4368_7778195_8083003,4368_543 -4358_80747,227,4368_13926,Harristown,7760,1,4368_7778195_8083008,4368_543 -4358_80747,229,4368_13927,Charlestown,19237,1,4368_7778195_8083002,4368_544 -4358_80747,228,4368_13928,Harristown,14290,1,4368_7778195_8083005,4368_543 -4358_80747,227,4368_13929,Harristown,7544,1,4368_7778195_8083003,4368_543 -4358_80757,229,4368_1393,Kilnamanagh Rd,16009,1,4368_7778195_5123008,4368_45 -4358_80747,228,4368_13930,Harristown,14324,1,4368_7778195_8083011,4368_543 -4358_80747,229,4368_13931,Charlestown,19243,1,4368_7778195_8083009,4368_544 -4358_80747,227,4368_13932,Harristown,7741,1,4368_7778195_8083006,4368_545 -4358_80747,227,4368_13933,Harristown,7754,1,4368_7778195_8083020,4368_543 -4358_80747,228,4368_13934,Harristown,14300,1,4368_7778195_8083006,4368_543 -4358_80747,229,4368_13935,Charlestown,19189,1,4368_7778195_8083001,4368_544 -4358_80747,227,4368_13936,Harristown,7709,1,4368_7778195_8083021,4368_543 -4358_80747,227,4368_13937,Harristown,7692,1,4368_7778195_8083002,4368_543 -4358_80747,227,4368_13938,Harristown,7592,1,4368_7778195_8083005,4368_543 -4358_80747,229,4368_13939,Charlestown,19247,1,4368_7778195_8083012,4368_544 -4358_80757,227,4368_1394,Kilnamanagh Rd,2232,1,4368_7778195_5123007,4368_45 -4358_80747,228,4368_13940,Harristown,14310,1,4368_7778195_8083008,4368_545 -4358_80747,227,4368_13941,Harristown,7578,1,4368_7778195_8083007,4368_543 -4358_80747,229,4368_13942,Charlestown,19171,1,4368_7778195_8083010,4368_544 -4358_80747,228,4368_13943,Harristown,14274,1,4368_7778195_8083001,4368_543 -4358_80747,227,4368_13944,Harristown,7716,1,4368_7778195_8083011,4368_543 -4358_80747,229,4368_13945,Charlestown,19267,1,4368_7778195_8083011,4368_544 -4358_80747,228,4368_13946,Harristown,14165,1,4368_7778195_8083015,4368_543 -4358_80747,227,4368_13947,Harristown,7770,1,4368_7778195_8083012,4368_543 -4358_80747,228,4368_13948,Harristown,14346,1,4368_7778195_8083014,4368_543 -4358_80747,229,4368_13949,Charlestown,19184,1,4368_7778195_8083016,4368_544 -4358_80757,228,4368_1395,Kilnamanagh Rd,9770,1,4368_7778195_5123010,4368_45 -4358_80747,227,4368_13950,Harristown,7704,1,4368_7778195_8083013,4368_545 -4358_80747,227,4368_13951,Harristown,7779,1,4368_7778195_8083014,4368_543 -4358_80747,228,4368_13952,Harristown,14284,1,4368_7778195_8083002,4368_543 -4358_80747,229,4368_13953,Charlestown,19244,1,4368_7778195_8083018,4368_544 -4358_80747,227,4368_13954,Harristown,7569,1,4368_7778195_8083015,4368_543 -4358_80747,229,4368_13955,Charlestown,19214,1,4368_7778195_8083015,4368_544 -4358_80747,228,4368_13956,Harristown,14237,1,4368_7778195_8083010,4368_543 -4358_80747,227,4368_13957,Harristown,7726,1,4368_7778195_8083016,4368_543 -4358_80747,229,4368_13958,Charlestown,19192,1,4368_7778195_8083017,4368_544 -4358_80747,228,4368_13959,Harristown,14144,1,4368_7778195_8083003,4368_543 -4358_80757,227,4368_1396,Kilnamanagh Rd,2287,1,4368_7778195_5123009,4368_45 -4358_80747,227,4368_13960,Harristown,7647,1,4368_7778195_8083017,4368_545 -4358_80747,227,4368_13961,Harristown,7748,1,4368_7778195_8083018,4368_543 -4358_80747,229,4368_13962,Charlestown,19293,1,4368_7778195_8083019,4368_544 -4358_80747,228,4368_13963,Harristown,14331,1,4368_7778195_8083012,4368_543 -4358_80747,227,4368_13964,Harristown,7762,1,4368_7778195_8083008,4368_543 -4358_80747,228,4368_13965,Harristown,14326,1,4368_7778195_8083011,4368_543 -4358_80747,229,4368_13966,Charlestown,19302,1,4368_7778195_8083024,4368_544 -4358_80747,227,4368_13967,Harristown,7546,1,4368_7778195_8083003,4368_543 -4358_80747,229,4368_13968,Charlestown,19298,1,4368_7778195_8083022,4368_544 -4358_80747,227,4368_13969,Harristown,7743,1,4368_7778195_8083006,4368_543 -4358_80757,229,4368_1397,Kilnamanagh Rd,15966,1,4368_7778195_5123004,4368_46 -4358_80747,228,4368_13970,Harristown,14302,1,4368_7778195_8083006,4368_545 -4358_80747,227,4368_13971,Harristown,7756,1,4368_7778195_8083020,4368_543 -4358_80747,229,4368_13972,Charlestown,19261,1,4368_7778195_8083023,4368_544 -4358_80747,228,4368_13973,Harristown,14261,1,4368_7778195_8083007,4368_543 -4358_80747,227,4368_13974,Harristown,7711,1,4368_7778195_8083021,4368_543 -4358_80747,229,4368_13975,Charlestown,19196,1,4368_7778195_8083025,4368_544 -4358_80747,228,4368_13976,Harristown,14137,1,4368_7778195_8083016,4368_543 -4358_80747,227,4368_13977,Harristown,7694,1,4368_7778195_8083002,4368_543 -4358_80747,229,4368_13978,Charlestown,19314,1,4368_7778195_8083029,4368_544 -4358_80747,227,4368_13979,Harristown,7594,1,4368_7778195_8083005,4368_543 -4358_80757,228,4368_1398,Kilnamanagh Rd,9929,1,4368_7778195_5123013,4368_45 -4358_80747,228,4368_13980,Harristown,14312,1,4368_7778195_8083008,4368_545 -4358_80747,227,4368_13981,Harristown,7614,1,4368_7778195_8083022,4368_543 -4358_80747,229,4368_13982,Charlestown,19317,1,4368_7778195_8083031,4368_544 -4358_80747,228,4368_13983,Harristown,14276,1,4368_7778195_8083001,4368_543 -4358_80747,227,4368_13984,Harristown,7558,1,4368_7778195_8083010,4368_543 -4358_80747,228,4368_13985,Harristown,14167,1,4368_7778195_8083015,4368_543 -4358_80747,229,4368_13986,Charlestown,19239,1,4368_7778195_8083027,4368_544 -4358_80747,227,4368_13987,Harristown,7718,1,4368_7778195_8083011,4368_543 -4358_80747,229,4368_13988,Charlestown,19307,1,4368_7778195_8083028,4368_544 -4358_80747,228,4368_13989,Harristown,14348,1,4368_7778195_8083014,4368_543 -4358_80757,227,4368_1399,Kilnamanagh Rd,2203,1,4368_7778195_5123005,4368_45 -4358_80747,227,4368_13990,Harristown,7772,1,4368_7778195_8083012,4368_545 -4358_80747,227,4368_13991,Harristown,7706,1,4368_7778195_8083013,4368_543 -4358_80747,228,4368_13992,Harristown,14286,1,4368_7778195_8083002,4368_543 -4358_80747,229,4368_13993,Charlestown,19296,1,4368_7778195_8083030,4368_544 -4358_80747,227,4368_13994,Harristown,7781,1,4368_7778195_8083014,4368_543 -4358_80747,227,4368_13995,Harristown,7673,1,4368_7778195_8083019,4368_543 -4358_80747,229,4368_13996,Charlestown,19319,1,4368_7778195_8083034,4368_544 -4358_80747,228,4368_13997,Harristown,14239,1,4368_7778195_8083010,4368_543 -4358_80747,227,4368_13998,Harristown,7596,1,4368_7778195_8083023,4368_543 -4358_80747,227,4368_13999,Harristown,7571,1,4368_7778195_8083015,4368_543 -4358_80760,227,4368_14,Shaw street,1652,0,4368_7778195_9001003,4368_1 -4358_80760,227,4368_140,Shaw street,1855,0,4368_7778195_9001006,4368_1 -4358_80757,229,4368_1400,Kilnamanagh Rd,15987,1,4368_7778195_5123005,4368_45 -4358_80747,228,4368_14000,Harristown,14146,1,4368_7778195_8083003,4368_545 -4358_80747,229,4368_14001,Charlestown,19321,1,4368_7778195_8083035,4368_544 -4358_80747,229,4368_14002,Charlestown,19272,1,4368_7778195_8083036,4368_544 -4358_80747,228,4368_14003,Harristown,14333,1,4368_7778195_8083012,4368_543 -4358_80747,227,4368_14004,Harristown,7728,1,4368_7778195_8083016,4368_545 -4358_80747,228,4368_14005,Harristown,14328,1,4368_7778195_8083011,4368_543 -4358_80747,227,4368_14006,Harristown,7750,1,4368_7778195_8083018,4368_545 -4358_80747,229,4368_14007,Charlestown,19263,1,4368_7778195_8083037,4368_544 -4358_80747,229,4368_14008,Charlestown,19316,1,4368_7778195_8083029,4368_544 -4358_80747,227,4368_14009,Harristown,7764,1,4368_7778195_8083008,4368_543 -4358_80757,228,4368_1401,Kilnamanagh Rd,9792,1,4368_7778195_5123004,4368_46 -4358_80747,228,4368_14010,Harristown,14304,1,4368_7778195_8083006,4368_545 -4358_80747,227,4368_14011,Harristown,7548,1,4368_7778195_8083003,4368_543 -4358_80747,229,4368_14012,Charlestown,19270,1,4368_7778195_8083038,4368_544 -4358_80747,228,4368_14013,Harristown,14342,1,4368_7778195_8083013,4368_543 -4358_80747,229,4368_14014,Charlestown,19221,1,4368_7778195_8083041,4368_544 -4358_80747,227,4368_14015,Harristown,7696,1,4368_7778195_8083002,4368_543 -4358_80747,228,4368_14016,Harristown,14314,1,4368_7778195_8083008,4368_545 -4358_80747,229,4368_14017,Charlestown,19249,1,4368_7778195_8083042,4368_544 -4358_80747,227,4368_14018,Harristown,7616,1,4368_7778195_8083022,4368_543 -4358_80747,228,4368_14019,Harristown,14169,1,4368_7778195_8083015,4368_543 -4358_80757,227,4368_1402,Kilnamanagh Rd,2324,1,4368_7778195_5123017,4368_45 -4358_80747,229,4368_14020,Charlestown,19274,1,4368_7778195_8083044,4368_544 -4358_80747,228,4368_14021,Harristown,14227,1,4368_7778195_8083004,4368_543 -4358_80747,227,4368_14022,Harristown,7774,1,4368_7778195_8083012,4368_545 -4358_80747,227,4368_14023,Harristown,7598,1,4368_7778195_8083023,4368_543 -4358_80747,229,4368_14024,Charlestown,19300,1,4368_7778195_8083045,4368_544 -4358_80747,228,4368_14025,Harristown,14335,1,4368_7778195_8083012,4368_543 -4358_80747,229,4368_14026,Charlestown,19312,1,4368_7778195_8083047,4368_544 -4358_80747,228,4368_14027,Harristown,14296,1,4368_7778195_8083005,4368_543 -4358_80747,227,4368_14028,Harristown,7651,1,4368_7778195_8083017,4368_545 -4358_80747,227,4368_14029,Harristown,7752,1,4368_7778195_8083018,4368_543 -4358_80757,228,4368_1403,Kilnamanagh Rd,9940,1,4368_7778195_5123014,4368_45 -4358_80747,229,4368_14030,Charlestown,19305,1,4368_7778195_8083048,4368_544 -4358_80747,228,4368_14031,Harristown,14265,1,4368_7778195_8083007,4368_543 -4358_80747,227,4368_14032,Harristown,7613,1,4368_7778195_8083009,4368_543 -4358_80747,229,4368_14033,Charlestown,19340,1,4368_7778195_8083050,4368_544 -4358_80747,228,4368_14034,Harristown,14344,1,4368_7778195_8083013,4368_545 -4358_80747,227,4368_14035,Harristown,7698,1,4368_7778195_8083002,4368_543 -4358_80747,228,4368_14036,Westmoreland St,14316,1,4368_7778195_8083008,4368_547 -4358_80747,229,4368_14037,Westmoreland St,19223,1,4368_7778195_8083051,4368_548 -4358_80748,227,4368_14038,Kimmage,7606,0,4368_7778195_8083009,4368_549 -4358_80748,228,4368_14039,Kimmage,14299,0,4368_7778195_8083006,4368_549 -4358_80757,229,4368_1404,Kilnamanagh Rd,15976,1,4368_7778195_5123002,4368_45 -4358_80748,229,4368_14040,Kimmage,19242,0,4368_7778195_8083009,4368_550 -4358_80748,227,4368_14041,Kimmage,7555,0,4368_7778195_8083010,4368_549 -4358_80748,228,4368_14042,Kimmage,14273,0,4368_7778195_8083001,4368_549 -4358_80748,229,4368_14043,Kimmage,19170,0,4368_7778195_8083010,4368_550 -4358_80748,227,4368_14044,Kimmage,7670,0,4368_7778195_8083019,4368_549 -4358_80748,228,4368_14045,Kimmage,14222,0,4368_7778195_8083004,4368_549 -4358_80748,229,4368_14046,Kimmage,19174,0,4368_7778195_8083008,4368_550 -4358_80748,227,4368_14047,Kimmage,7621,0,4368_7778195_8083001,4368_549 -4358_80748,228,4368_14048,Kimmage,14291,0,4368_7778195_8083005,4368_549 -4358_80748,229,4368_14049,Kimmage,19292,0,4368_7778195_8083019,4368_550 -4358_80757,227,4368_1405,Kilnamanagh Rd,2097,1,4368_7778195_5123016,4368_46 -4358_80748,227,4368_14050,Kimmage,7608,0,4368_7778195_8083009,4368_549 -4358_80748,228,4368_14051,Kimmage,14339,0,4368_7778195_8083013,4368_549 -4358_80748,229,4368_14052,Kimmage,19260,0,4368_7778195_8083023,4368_550 -4358_80748,227,4368_14053,Kimmage,7557,0,4368_7778195_8083010,4368_549 -4358_80748,228,4368_14054,Kimmage,14320,0,4368_7778195_8083009,4368_549 -4358_80748,229,4368_14055,Kimmage,19245,0,4368_7778195_8083018,4368_550 -4358_80748,227,4368_14056,Kimmage,7672,0,4368_7778195_8083019,4368_549 -4358_80748,228,4368_14057,Kimmage,14224,0,4368_7778195_8083004,4368_549 -4358_80748,229,4368_14058,Kimmage,19218,0,4368_7778195_8083032,4368_550 -4358_80748,227,4368_14059,Kimmage,7749,0,4368_7778195_8083018,4368_549 -4358_80757,228,4368_1406,Kilnamanagh Rd,9934,1,4368_7778195_5123016,4368_45 -4358_80748,228,4368_14060,Kimmage,14293,0,4368_7778195_8083005,4368_549 -4358_80748,229,4368_14061,Kimmage,19271,0,4368_7778195_8083036,4368_550 -4358_80748,228,4368_14062,Kimmage,14341,0,4368_7778195_8083013,4368_549 -4358_80748,229,4368_14063,Kimmage,19269,0,4368_7778195_8083038,4368_550 -4358_80748,228,4368_14064,Kimmage,14322,0,4368_7778195_8083009,4368_549 -4358_80748,227,4368_14065,Kimmage,7559,0,4368_7778195_8083010,4368_549 -4358_80748,229,4368_14066,Kimmage,19248,0,4368_7778195_8083042,4368_550 -4358_80748,228,4368_14067,Kimmage,14226,0,4368_7778195_8083004,4368_549 -4358_80748,227,4368_14068,Kimmage,7597,0,4368_7778195_8083023,4368_549 -4358_80748,229,4368_14069,Kimmage,19273,0,4368_7778195_8083044,4368_550 -4358_80757,227,4368_1407,Kilnamanagh Rd,2309,1,4368_7778195_5123012,4368_45 -4358_80748,228,4368_14070,Kimmage,14295,0,4368_7778195_8083005,4368_549 -4358_80748,227,4368_14071,Kimmage,7751,0,4368_7778195_8083018,4368_549 -4358_80748,229,4368_14072,Kimmage,19311,0,4368_7778195_8083047,4368_550 -4358_80748,228,4368_14073,Kimmage,14343,0,4368_7778195_8083013,4368_549 -4358_80748,229,4368_14074,Kimmage,19339,0,4368_7778195_8083050,4368_550 -4358_80748,227,4368_14075,Kimmage,7697,0,4368_7778195_8083002,4368_549 -4358_80748,228,4368_14076,Kimmage,14170,0,4368_7778195_8083015,4368_549 -4358_80748,229,4368_14077,Kimmage,19301,0,4368_7778195_8083045,4368_550 -4358_80748,227,4368_14078,Kimmage,7775,0,4368_7778195_8083012,4368_549 -4358_80748,229,4368_14079,Charlestown,19265,1,4368_7778195_8083004,4368_551 -4358_80757,229,4368_1408,Kilnamanagh Rd,16026,1,4368_7778195_5123003,4368_45 -4358_80748,227,4368_14080,Harristown,7669,1,4368_7778195_8083019,4368_552 -4358_80748,228,4368_14081,Harristown,14282,1,4368_7778195_8083002,4368_552 -4358_80748,229,4368_14082,Charlestown,19173,1,4368_7778195_8083008,4368_551 -4358_80748,227,4368_14083,Harristown,7620,1,4368_7778195_8083001,4368_552 -4358_80748,228,4368_14084,Harristown,14329,1,4368_7778195_8083012,4368_552 -4358_80748,227,4368_14085,Harristown,7607,1,4368_7778195_8083009,4368_552 -4358_80748,228,4368_14086,Harristown,14259,1,4368_7778195_8083007,4368_552 -4358_80748,229,4368_14087,Charlestown,19179,1,4368_7778195_8083006,4368_551 -4358_80748,228,4368_14088,Harristown,14338,1,4368_7778195_8083013,4368_552 -4358_80748,227,4368_14089,Harristown,7556,1,4368_7778195_8083010,4368_552 -4358_80757,228,4368_1409,Kilnamanagh Rd,9944,1,4368_7778195_5123017,4368_46 -4358_80748,229,4368_14090,Charlestown,19284,1,4368_7778195_8083013,4368_551 -4358_80748,228,4368_14091,Harristown,14319,1,4368_7778195_8083009,4368_552 -4358_80748,227,4368_14092,Harristown,7671,1,4368_7778195_8083019,4368_552 -4358_80748,229,4368_14093,Charlestown,19234,1,4368_7778195_8083014,4368_551 -4358_80748,228,4368_14094,Harristown,14223,1,4368_7778195_8083004,4368_552 -4358_80748,227,4368_14095,Harristown,7622,1,4368_7778195_8083001,4368_552 -4358_80748,228,4368_14096,Harristown,14292,1,4368_7778195_8083005,4368_552 -4358_80748,229,4368_14097,Charlestown,19194,1,4368_7778195_8083020,4368_551 -4358_80748,227,4368_14098,Harristown,7609,1,4368_7778195_8083009,4368_552 -4358_80748,228,4368_14099,Harristown,14340,1,4368_7778195_8083013,4368_552 -4358_80760,229,4368_141,Shaw street,15595,0,4368_7778195_9001004,4368_2 -4358_80757,227,4368_1410,Kilnamanagh Rd,2266,1,4368_7778195_5123004,4368_45 -4358_80748,229,4368_14100,Charlestown,19308,1,4368_7778195_8083026,4368_551 -4358_80748,227,4368_14101,Harristown,7580,1,4368_7778195_8083007,4368_552 -4358_80748,229,4368_14102,Charlestown,19268,1,4368_7778195_8083033,4368_551 -4358_80748,228,4368_14103,Harristown,14321,1,4368_7778195_8083009,4368_552 -4358_80748,228,4368_14104,Harristown,14225,1,4368_7778195_8083004,4368_552 -4358_80748,229,4368_14105,Charlestown,19219,1,4368_7778195_8083032,4368_551 -4358_80748,228,4368_14106,Harristown,14294,1,4368_7778195_8083005,4368_552 -4358_80748,229,4368_14107,Charlestown,19310,1,4368_7778195_8083026,4368_551 -4358_80748,227,4368_14108,Harristown,7649,1,4368_7778195_8083017,4368_553 -4358_80748,228,4368_14109,Harristown,14263,1,4368_7778195_8083007,4368_552 -4358_80757,228,4368_1411,Kilnamanagh Rd,9922,1,4368_7778195_5123015,4368_45 -4358_80748,229,4368_14110,Charlestown,19176,1,4368_7778195_8083039,4368_551 -4358_80748,227,4368_14111,Harristown,7611,1,4368_7778195_8083009,4368_552 -4358_80748,228,4368_14112,Harristown,14278,1,4368_7778195_8083001,4368_552 -4358_80748,229,4368_14113,Charlestown,19198,1,4368_7778195_8083043,4368_551 -4358_80748,227,4368_14114,Harristown,7560,1,4368_7778195_8083010,4368_552 -4358_80748,228,4368_14115,Harristown,14241,1,4368_7778195_8083010,4368_552 -4358_80748,227,4368_14116,Harristown,7573,1,4368_7778195_8083015,4368_552 -4358_80748,229,4368_14117,Charlestown,19333,1,4368_7778195_8083046,4368_551 -4358_80748,228,4368_14118,Harristown,14306,1,4368_7778195_8083006,4368_552 -4358_80748,227,4368_14119,Harristown,7766,1,4368_7778195_8083008,4368_552 -4358_80757,229,4368_1412,Kilnamanagh Rd,16011,1,4368_7778195_5123008,4368_45 -4358_80748,229,4368_14120,Charlestown,19241,1,4368_7778195_8083049,4368_551 -4358_80750,227,4368_14121,Newcastle,149,0,4368_7778195_1084001,4368_554 -4358_80750,228,4368_14122,Newcastle,8422,0,4368_7778195_1084001,4368_555 -4358_80750,227,4368_14123,Newcastle,151,0,4368_7778195_1084001,4368_555 -4358_80750,227,4368_14124,Newcastle,184,0,4368_7778195_1084007,4368_554 -4358_80750,228,4368_14125,Newcastle,8433,0,4368_7778195_1084002,4368_555 -4358_80750,227,4368_14126,Newcastle,162,0,4368_7778195_1084003,4368_555 -4358_80750,228,4368_14127,Newcastle,8444,0,4368_7778195_1084003,4368_555 -4358_80750,227,4368_14128,Newcastle,175,0,4368_7778195_1084006,4368_557 -4358_80750,227,4368_14129,Newcastle,186,0,4368_7778195_1084007,4368_555 -4358_80757,227,4368_1413,Kilnamanagh Rd,2289,1,4368_7778195_5123009,4368_46 -4358_80750,229,4368_14130,Newcastle,14766,0,4368_7778195_1084001,4368_555 -4358_80750,228,4368_14131,Newcastle,8424,0,4368_7778195_1084001,4368_556 -4358_80750,227,4368_14132,Newcastle,153,0,4368_7778195_1084001,4368_556 -4358_80750,228,4368_14133,Newcastle,8435,0,4368_7778195_1084002,4368_555 -4358_80750,229,4368_14134,Newcastle,14775,0,4368_7778195_1084002,4368_555 -4358_80750,227,4368_14135,Newcastle,164,0,4368_7778195_1084003,4368_555 -4358_80750,228,4368_14136,Newcastle,8446,0,4368_7778195_1084003,4368_556 -4358_80750,229,4368_14137,Newcastle,14784,0,4368_7778195_1084003,4368_556 -4358_80750,227,4368_14138,Newcastle,177,0,4368_7778195_1084006,4368_555 -4358_80750,228,4368_14139,Newcastle,8426,0,4368_7778195_1084001,4368_555 -4358_80757,228,4368_1414,Kilnamanagh Rd,9772,1,4368_7778195_5123010,4368_45 -4358_80750,227,4368_14140,Newcastle,188,0,4368_7778195_1084007,4368_556 -4358_80750,229,4368_14141,Newcastle,14768,0,4368_7778195_1084001,4368_555 -4358_80750,227,4368_14142,Newcastle,6085,0,4368_7778195_1821202,4368_555 -4358_80750,227,4368_14143,Newcastle,155,0,4368_7778195_1084001,4368_555 -4358_80750,228,4368_14144,Newcastle,8437,0,4368_7778195_1084002,4368_555 -4358_80750,229,4368_14145,Newcastle,14777,0,4368_7778195_1084002,4368_555 -4358_80750,227,4368_14146,Newcastle,166,0,4368_7778195_1084003,4368_555 -4358_80750,228,4368_14147,Newcastle,8448,0,4368_7778195_1084003,4368_556 -4358_80750,229,4368_14148,Newcastle,14786,0,4368_7778195_1084003,4368_556 -4358_80750,227,4368_14149,Newcastle,179,0,4368_7778195_1084006,4368_555 -4358_80757,227,4368_1415,Kilnamanagh Rd,2205,1,4368_7778195_5123005,4368_45 -4358_80750,228,4368_14150,Newcastle,8428,0,4368_7778195_1084001,4368_555 -4358_80750,229,4368_14151,Newcastle,14770,0,4368_7778195_1084001,4368_555 -4358_80750,227,4368_14152,Newcastle,190,0,4368_7778195_1084007,4368_556 -4358_80750,228,4368_14153,Newcastle,8439,0,4368_7778195_1084002,4368_556 -4358_80750,229,4368_14154,Newcastle,14779,0,4368_7778195_1084002,4368_555 -4358_80750,227,4368_14155,Newcastle,157,0,4368_7778195_1084001,4368_555 -4358_80750,227,4368_14156,Newcastle,168,0,4368_7778195_1084003,4368_556 -4358_80750,228,4368_14157,Newcastle,8450,0,4368_7778195_1084003,4368_555 -4358_80750,229,4368_14158,Newcastle,14788,0,4368_7778195_1084003,4368_556 -4358_80750,227,4368_14159,Newcastle,181,0,4368_7778195_1084006,4368_555 -4358_80757,229,4368_1416,Kilnamanagh Rd,16014,1,4368_7778195_5123009,4368_45 -4358_80750,228,4368_14160,Newcastle,8430,0,4368_7778195_1084001,4368_555 -4358_80750,229,4368_14161,Newcastle,14772,0,4368_7778195_1084001,4368_555 -4358_80750,227,4368_14162,Newcastle,192,0,4368_7778195_1084007,4368_555 -4358_80750,228,4368_14163,Newcastle,8441,0,4368_7778195_1084002,4368_555 -4358_80750,229,4368_14164,Newcastle,14781,0,4368_7778195_1084002,4368_555 -4358_80750,227,4368_14165,Newcastle,170,0,4368_7778195_1084003,4368_555 -4358_80750,228,4368_14166,Newcastle,8452,0,4368_7778195_1084003,4368_555 -4358_80750,227,4368_14167,Newcastle,183,0,4368_7778195_1084006,4368_557 -4358_80750,229,4368_14168,Newcastle,14790,0,4368_7778195_1084003,4368_558 -4358_80750,227,4368_14169,Blackrock,150,1,4368_7778195_1084001,4368_559 -4358_80757,228,4368_1417,Kilnamanagh Rd,9931,1,4368_7778195_5123013,4368_46 -4358_80750,228,4368_14170,Blackrock,8421,1,4368_7778195_1084001,4368_559 -4358_80750,227,4368_14171,Blackrock,161,1,4368_7778195_1084003,4368_559 -4358_80750,228,4368_14172,Blackrock,8432,1,4368_7778195_1084002,4368_559 -4358_80750,227,4368_14173,Blackrock,174,1,4368_7778195_1084006,4368_560 -4358_80750,227,4368_14174,Blackrock,6089,1,4368_7778195_1821102,4368_560 -4358_80750,228,4368_14175,Blackrock,8443,1,4368_7778195_1084003,4368_559 -4358_80750,227,4368_14176,Blackrock,185,1,4368_7778195_1084007,4368_559 -4358_80750,228,4368_14177,Blackrock,8423,1,4368_7778195_1084001,4368_560 -4358_80750,229,4368_14178,Blackrock,14765,1,4368_7778195_1084001,4368_560 -4358_80750,227,4368_14179,Blackrock,152,1,4368_7778195_1084001,4368_559 -4358_80757,227,4368_1418,Kilnamanagh Rd,2326,1,4368_7778195_5123017,4368_45 -4358_80750,228,4368_14180,Blackrock,8434,1,4368_7778195_1084002,4368_559 -4358_80750,227,4368_14181,Blackrock,163,1,4368_7778195_1084003,4368_562 -4358_80750,229,4368_14182,Blackrock,14774,1,4368_7778195_1084002,4368_559 -4358_80750,228,4368_14183,Blackrock,8445,1,4368_7778195_1084003,4368_560 -4358_80750,227,4368_14184,Blackrock,176,1,4368_7778195_1084006,4368_564 -4358_80750,229,4368_14185,Blackrock,14783,1,4368_7778195_1084003,4368_560 -4358_80750,227,4368_14186,Blackrock,187,1,4368_7778195_1084007,4368_559 -4358_80750,228,4368_14187,Blackrock,8425,1,4368_7778195_1084001,4368_559 -4358_80750,229,4368_14188,Blackrock,14767,1,4368_7778195_1084001,4368_559 -4358_80750,227,4368_14189,Blackrock,154,1,4368_7778195_1084001,4368_560 -4358_80757,228,4368_1419,Kilnamanagh Rd,9794,1,4368_7778195_5123004,4368_45 -4358_80750,228,4368_14190,Blackrock,8436,1,4368_7778195_1084002,4368_559 -4358_80750,229,4368_14191,Blackrock,14776,1,4368_7778195_1084002,4368_559 -4358_80750,227,4368_14192,Blackrock,165,1,4368_7778195_1084003,4368_559 -4358_80750,228,4368_14193,Blackrock,8447,1,4368_7778195_1084003,4368_560 -4358_80750,229,4368_14194,Blackrock,14785,1,4368_7778195_1084003,4368_559 -4358_80750,227,4368_14195,Blackrock,178,1,4368_7778195_1084006,4368_560 -4358_80750,228,4368_14196,Blackrock,8427,1,4368_7778195_1084001,4368_559 -4358_80750,227,4368_14197,Blackrock,189,1,4368_7778195_1084007,4368_559 -4358_80750,229,4368_14198,Blackrock,14769,1,4368_7778195_1084001,4368_560 -4358_80750,227,4368_14199,Bray Station,6086,1,4368_7778195_1821202,4368_561 -4358_80760,228,4368_142,Shaw street,9326,0,4368_7778195_9001002,4368_1 -4358_80757,229,4368_1420,Kilnamanagh Rd,15978,1,4368_7778195_5123002,4368_45 -4358_80750,227,4368_14200,Blackrock,156,1,4368_7778195_1084001,4368_560 -4358_80750,228,4368_14201,Blackrock,8438,1,4368_7778195_1084002,4368_559 -4358_80750,229,4368_14202,Blackrock,14778,1,4368_7778195_1084002,4368_559 -4358_80750,227,4368_14203,Blackrock,167,1,4368_7778195_1084003,4368_559 -4358_80750,229,4368_14204,Blackrock,14787,1,4368_7778195_1084003,4368_559 -4358_80750,228,4368_14205,Blackrock,8449,1,4368_7778195_1084003,4368_559 -4358_80750,227,4368_14206,Blackrock,180,1,4368_7778195_1084006,4368_559 -4358_80750,228,4368_14207,Blackrock,8429,1,4368_7778195_1084001,4368_560 -4358_80750,229,4368_14208,Blackrock,14771,1,4368_7778195_1084001,4368_559 -4358_80750,227,4368_14209,Blackrock,191,1,4368_7778195_1084007,4368_559 -4358_80757,228,4368_1421,Kilnamanagh Rd,9942,1,4368_7778195_5123014,4368_46 -4358_80750,228,4368_14210,Blackrock,8440,1,4368_7778195_1084002,4368_559 -4358_80750,229,4368_14211,Blackrock,14780,1,4368_7778195_1084002,4368_559 -4358_80750,227,4368_14212,Blackrock,169,1,4368_7778195_1084003,4368_559 -4358_80750,229,4368_14213,Blackrock,14789,1,4368_7778195_1084003,4368_559 -4358_80750,228,4368_14214,Blackrock,8451,1,4368_7778195_1084003,4368_559 -4358_80750,227,4368_14215,Blackrock,182,1,4368_7778195_1084006,4368_562 -4358_80750,228,4368_14216,Blackrock,8431,1,4368_7778195_1084001,4368_559 -4358_80750,227,4368_14217,Blackrock,193,1,4368_7778195_1084007,4368_562 -4358_80750,229,4368_14218,Blackrock,14773,1,4368_7778195_1084001,4368_559 -4358_80750,229,4368_14219,Bray Station,14782,1,4368_7778195_1084002,4368_561 -4358_80757,227,4368_1422,Kilnamanagh Rd,2099,1,4368_7778195_5123016,4368_50 -4358_80750,228,4368_14220,Bray Station,8442,1,4368_7778195_1084002,4368_563 -4358_80749,227,4368_14221,Bray Station,913,0,4368_7778195_1084005,4368_565 -4358_80749,227,4368_14222,Bray Station,159,0,4368_7778195_1084002,4368_565 -4358_80749,227,4368_14223,Bray Station,172,0,4368_7778195_1084004,4368_565 -4358_80749,227,4368_14224,Bray Station,915,0,4368_7778195_1084005,4368_566 -4358_80749,227,4368_14225,Bray Station,195,0,4368_7778195_1084008,4368_565 -4358_80749,227,4368_14226,Bray Station,198,0,4368_7778195_1084009,4368_565 -4358_80749,227,4368_14227,Blackrock,912,1,4368_7778195_1084005,4368_567 -4358_80749,227,4368_14228,Blackrock,158,1,4368_7778195_1084002,4368_567 -4358_80749,227,4368_14229,St Vincents Hosp,914,1,4368_7778195_1084005,4368_568 -4358_80757,228,4368_1423,O'Connell Street,9936,1,4368_7778195_5123016,4368_47 -4358_80749,227,4368_14230,St Vincents Hosp,160,1,4368_7778195_1084002,4368_568 -4358_80749,227,4368_14231,St Vincents Hosp,173,1,4368_7778195_1084004,4368_568 -4358_80749,227,4368_14232,Blackrock,194,1,4368_7778195_1084008,4368_567 -4358_80749,227,4368_14233,Blackrock,197,1,4368_7778195_1084009,4368_567 -4358_80749,227,4368_14234,Blackrock,196,1,4368_7778195_1084008,4368_567 -4358_80749,227,4368_14235,Blackrock,199,1,4368_7778195_1084009,4368_567 -4358_80762,227,4368_14236,Newcastle,557,0,4368_7778195_1145115,4368_569 -4358_80762,227,4368_14237,Newcastle,5967,0,4368_7778195_2822201,4368_569 -4358_80762,227,4368_14238,Newcastle,6094,0,4368_7778195_2822209,4368_569 -4358_80762,227,4368_14239,Kilcoole,559,0,4368_7778195_1145118,4368_570 -4358_80757,229,4368_1424,O'Connell Street,16028,1,4368_7778195_5123003,4368_48 -4358_80762,227,4368_14240,Newcastle,560,0,4368_7778195_1145119,4368_569 -4358_80762,227,4368_14241,Kilcoole,561,0,4368_7778195_1145120,4368_570 -4358_80762,227,4368_14242,Kilcoole,552,0,4368_7778195_1145417,4368_570 -4358_80762,227,4368_14243,Kilcoole,3095,0,4368_7778195_1821204,4368_570 -4358_80762,227,4368_14244,Eden Quay,5965,1,4368_7778195_2821103,4368_572 -4358_80762,227,4368_14245,Eden Quay,3228,1,4368_7778195_1145402,4368_572 -4358_80762,227,4368_14246,Eden Quay,171,1,4368_7778195_1084004,4368_571 -4358_80762,227,4368_14247,Eden Quay,3332,1,4368_7778195_1145408,4368_571 -4358_80762,227,4368_14248,Eden Quay,551,1,4368_7778195_1145411,4368_571 -4358_80762,227,4368_14249,Eden Quay,84,1,4368_7778195_1145401,4368_572 -4358_80757,227,4368_1425,O'Connell Street,2311,1,4368_7778195_5123012,4368_49 -4358_80762,227,4368_14250,Eden Quay,553,1,4368_7778195_1145107,4368_571 -4358_80762,227,4368_14251,Eden Quay,554,1,4368_7778195_1145110,4368_571 -4358_80762,227,4368_14252,Eden Quay,555,1,4368_7778195_1145111,4368_571 -4358_80762,227,4368_14253,UCD,5966,1,4368_7778195_2821103,4368_573 -4358_80762,227,4368_14254,Eden Quay,556,1,4368_7778195_1145115,4368_572 -4358_80762,227,4368_14255,Eden Quay,558,1,4368_7778195_1145115,4368_572 -4358_80755,227,4368_14256,Limekiln Avenue,3387,0,4368_7778195_7009005,4368_574 -4358_80755,227,4368_14257,Limekiln Avenue,3370,0,4368_7778195_7009006,4368_574 -4358_80755,228,4368_14258,Limekiln Avenue,10883,0,4368_7778195_7009002,4368_575 -4358_80755,227,4368_14259,Limekiln Avenue,3528,0,4368_7778195_7009008,4368_574 -4358_80682,227,4368_1426,Grange Castle,6811,0,4368_7778195_8013003,4368_52 -4358_80755,228,4368_14260,Limekiln Avenue,13253,0,4368_7778195_7009004,4368_574 -4358_80755,227,4368_14261,Limekiln Avenue,3550,0,4368_7778195_7009011,4368_574 -4358_80755,228,4368_14262,Limekiln Avenue,13271,0,4368_7778195_7009006,4368_574 -4358_80755,227,4368_14263,Limekiln Avenue,3516,0,4368_7778195_7009013,4368_574 -4358_80755,227,4368_14264,Limekiln Avenue,3404,0,4368_7778195_7009015,4368_574 -4358_80755,228,4368_14265,Limekiln Avenue,13228,0,4368_7778195_7009008,4368_574 -4358_80755,227,4368_14266,Limekiln Avenue,3481,0,4368_7778195_7009002,4368_574 -4358_80755,227,4368_14267,Limekiln Avenue,3410,0,4368_7778195_7009003,4368_574 -4358_80755,228,4368_14268,Limekiln Avenue,13196,0,4368_7778195_7009009,4368_574 -4358_80755,227,4368_14269,Limekiln Avenue,5227,0,4368_7778195_7009004,4368_574 -4358_80682,227,4368_1427,Grange Castle,6827,0,4368_7778195_8013006,4368_53 -4358_80755,227,4368_14270,Limekiln Avenue,802,0,4368_7778195_7827101,4368_574 -4358_80755,227,4368_14271,Limekiln Avenue,3567,0,4368_7778195_7009017,4368_574 -4358_80755,228,4368_14272,Limekiln Avenue,13244,0,4368_7778195_7009001,4368_574 -4358_80755,227,4368_14273,Limekiln Avenue,3420,0,4368_7778195_7009007,4368_574 -4358_80755,228,4368_14274,Limekiln Avenue,13222,0,4368_7778195_7009003,4368_574 -4358_80755,227,4368_14275,Limekiln Avenue,3446,0,4368_7778195_7009009,4368_574 -4358_80755,228,4368_14276,Limekiln Avenue,13236,0,4368_7778195_7009005,4368_574 -4358_80755,229,4368_14277,Limekiln Avenue,16740,0,4368_7778195_7009001,4368_575 -4358_80755,227,4368_14278,Limekiln Avenue,3541,0,4368_7778195_7009010,4368_576 -4358_80755,227,4368_14279,Limekiln Avenue,3430,0,4368_7778195_7009012,4368_574 -4358_80682,228,4368_1428,Grange Castle,13591,0,4368_7778195_8013003,4368_52 -4358_80755,228,4368_14280,Limekiln Avenue,10895,0,4368_7778195_7009007,4368_574 -4358_80755,227,4368_14281,Limekiln Avenue,3475,0,4368_7778195_7009001,4368_574 -4358_80755,229,4368_14282,Limekiln Avenue,16760,0,4368_7778195_7009003,4368_574 -4358_80755,227,4368_14283,Limekiln Avenue,3489,0,4368_7778195_7009014,4368_574 -4358_80755,228,4368_14284,Limekiln Avenue,10885,0,4368_7778195_7009002,4368_574 -4358_80755,227,4368_14285,Limekiln Avenue,3389,0,4368_7778195_7009005,4368_574 -4358_80755,229,4368_14286,Limekiln Avenue,16699,0,4368_7778195_7009005,4368_574 -4358_80755,228,4368_14287,Limekiln Avenue,13255,0,4368_7778195_7009004,4368_574 -4358_80755,227,4368_14288,Limekiln Avenue,3456,0,4368_7778195_7009016,4368_575 -4358_80755,227,4368_14289,Limekiln Avenue,3372,0,4368_7778195_7009006,4368_574 -4358_80682,228,4368_1429,Grange Castle,13604,0,4368_7778195_8013005,4368_52 -4358_80755,228,4368_14290,Limekiln Avenue,13273,0,4368_7778195_7009006,4368_574 -4358_80755,229,4368_14291,Limekiln Avenue,16712,0,4368_7778195_7009006,4368_575 -4358_80755,227,4368_14292,Limekiln Avenue,3511,0,4368_7778195_7009018,4368_574 -4358_80755,228,4368_14293,Limekiln Avenue,13230,0,4368_7778195_7009008,4368_574 -4358_80755,227,4368_14294,Limekiln Avenue,3530,0,4368_7778195_7009008,4368_574 -4358_80755,229,4368_14295,Limekiln Avenue,16729,0,4368_7778195_7009007,4368_574 -4358_80755,228,4368_14296,Limekiln Avenue,10900,0,4368_7778195_7009010,4368_574 -4358_80755,227,4368_14297,Limekiln Avenue,3552,0,4368_7778195_7009011,4368_574 -4358_80755,227,4368_14298,Limekiln Avenue,3468,0,4368_7778195_7009019,4368_574 -4358_80755,229,4368_14299,Limekiln Avenue,16751,0,4368_7778195_7009002,4368_575 -4358_80760,227,4368_143,Shaw street,1711,0,4368_7778195_9001008,4368_1 -4358_80682,227,4368_1430,Grange Castle,6882,0,4368_7778195_8013009,4368_53 -4358_80755,228,4368_14300,Limekiln Avenue,13198,0,4368_7778195_7009009,4368_576 -4358_80755,227,4368_14301,Limekiln Avenue,3518,0,4368_7778195_7009013,4368_574 -4358_80755,228,4368_14302,Limekiln Avenue,13211,0,4368_7778195_7009011,4368_574 -4358_80755,229,4368_14303,Limekiln Avenue,16694,0,4368_7778195_7009004,4368_574 -4358_80755,227,4368_14304,Limekiln Avenue,3406,0,4368_7778195_7009015,4368_574 -4358_80755,228,4368_14305,Limekiln Avenue,13246,0,4368_7778195_7009001,4368_574 -4358_80755,227,4368_14306,Limekiln Avenue,3483,0,4368_7778195_7009002,4368_574 -4358_80755,229,4368_14307,Limekiln Avenue,16721,0,4368_7778195_7009008,4368_574 -4358_80755,228,4368_14308,Limekiln Avenue,13264,0,4368_7778195_7009013,4368_574 -4358_80755,227,4368_14309,Limekiln Avenue,3412,0,4368_7778195_7009003,4368_574 -4358_80682,227,4368_1431,Grange Castle,6710,0,4368_7778195_8013001,4368_53 -4358_80755,229,4368_14310,Limekiln Avenue,16742,0,4368_7778195_7009001,4368_574 -4358_80755,227,4368_14311,Limekiln Avenue,5229,0,4368_7778195_7009004,4368_575 -4358_80755,228,4368_14312,Limekiln Avenue,13224,0,4368_7778195_7009003,4368_576 -4358_80755,227,4368_14313,Limekiln Avenue,3569,0,4368_7778195_7009017,4368_574 -4358_80755,228,4368_14314,Limekiln Avenue,13238,0,4368_7778195_7009005,4368_574 -4358_80755,229,4368_14315,Limekiln Avenue,16762,0,4368_7778195_7009003,4368_575 -4358_80755,227,4368_14316,Limekiln Avenue,3448,0,4368_7778195_7009009,4368_574 -4358_80755,229,4368_14317,Limekiln Avenue,18514,0,4368_7778195_7009010,4368_574 -4358_80755,228,4368_14318,Limekiln Avenue,10897,0,4368_7778195_7009007,4368_575 -4358_80755,227,4368_14319,Limekiln Avenue,3543,0,4368_7778195_7009010,4368_574 -4358_80682,228,4368_1432,Grange Castle,13617,0,4368_7778195_8013007,4368_52 -4358_80755,229,4368_14320,Limekiln Avenue,16701,0,4368_7778195_7009005,4368_574 -4358_80755,228,4368_14321,Limekiln Avenue,10887,0,4368_7778195_7009002,4368_575 -4358_80755,227,4368_14322,Limekiln Avenue,3432,0,4368_7778195_7009012,4368_574 -4358_80755,228,4368_14323,Limekiln Avenue,13191,0,4368_7778195_7009014,4368_574 -4358_80755,229,4368_14324,Limekiln Avenue,16737,0,4368_7778195_7009012,4368_575 -4358_80755,227,4368_14325,Limekiln Avenue,3477,0,4368_7778195_7009001,4368_576 -4358_80755,227,4368_14326,Limekiln Avenue,3491,0,4368_7778195_7009014,4368_574 -4358_80755,229,4368_14327,Limekiln Avenue,16714,0,4368_7778195_7009006,4368_574 -4358_80755,228,4368_14328,Limekiln Avenue,13207,0,4368_7778195_7009012,4368_575 -4358_80755,227,4368_14329,Limekiln Avenue,3391,0,4368_7778195_7009005,4368_574 -4358_80682,227,4368_1433,Grange Castle,6890,0,4368_7778195_8013011,4368_53 -4358_80755,229,4368_14330,Limekiln Avenue,18522,0,4368_7778195_7009009,4368_574 -4358_80755,228,4368_14331,Limekiln Avenue,13257,0,4368_7778195_7009004,4368_575 -4358_80755,227,4368_14332,Limekiln Avenue,3458,0,4368_7778195_7009016,4368_574 -4358_80755,228,4368_14333,Limekiln Avenue,13275,0,4368_7778195_7009006,4368_574 -4358_80755,229,4368_14334,Limekiln Avenue,16731,0,4368_7778195_7009007,4368_575 -4358_80755,227,4368_14335,Limekiln Avenue,3374,0,4368_7778195_7009006,4368_574 -4358_80755,228,4368_14336,Limekiln Avenue,13215,0,4368_7778195_7009015,4368_574 -4358_80755,227,4368_14337,Limekiln Avenue,3513,0,4368_7778195_7009018,4368_575 -4358_80755,229,4368_14338,Limekiln Avenue,16753,0,4368_7778195_7009002,4368_576 -4358_80755,227,4368_14339,Limekiln Avenue,3532,0,4368_7778195_7009008,4368_574 -4358_80682,229,4368_1434,Grange Castle,19068,0,4368_7778195_8013003,4368_52 -4358_80755,228,4368_14340,Limekiln Avenue,13232,0,4368_7778195_7009008,4368_574 -4358_80755,229,4368_14341,Limekiln Avenue,16775,0,4368_7778195_7009014,4368_575 -4358_80755,227,4368_14342,Limekiln Avenue,3554,0,4368_7778195_7009011,4368_574 -4358_80755,229,4368_14343,Limekiln Avenue,16706,0,4368_7778195_7009011,4368_574 -4358_80755,228,4368_14344,Limekiln Avenue,10902,0,4368_7778195_7009010,4368_575 -4358_80755,227,4368_14345,Limekiln Avenue,3470,0,4368_7778195_7009019,4368_574 -4358_80755,229,4368_14346,Limekiln Avenue,16696,0,4368_7778195_7009004,4368_574 -4358_80755,228,4368_14347,Limekiln Avenue,13200,0,4368_7778195_7009009,4368_575 -4358_80755,227,4368_14348,Limekiln Avenue,3520,0,4368_7778195_7009013,4368_574 -4358_80755,229,4368_14349,Limekiln Avenue,16723,0,4368_7778195_7009008,4368_574 -4358_80682,228,4368_1435,Grange Castle,13632,0,4368_7778195_8013009,4368_52 -4358_80755,228,4368_14350,Limekiln Avenue,13213,0,4368_7778195_7009011,4368_575 -4358_80755,227,4368_14351,Limekiln Avenue,3408,0,4368_7778195_7009015,4368_576 -4358_80755,227,4368_14352,Limekiln Avenue,3485,0,4368_7778195_7009002,4368_574 -4358_80755,229,4368_14353,Limekiln Avenue,16770,0,4368_7778195_7009013,4368_574 -4358_80755,228,4368_14354,Limekiln Avenue,13248,0,4368_7778195_7009001,4368_575 -4358_80755,227,4368_14355,Limekiln Avenue,3414,0,4368_7778195_7009003,4368_574 -4358_80755,229,4368_14356,Limekiln Avenue,16744,0,4368_7778195_7009001,4368_574 -4358_80755,228,4368_14357,Limekiln Avenue,13266,0,4368_7778195_7009013,4368_575 -4358_80755,227,4368_14358,Limekiln Avenue,5231,0,4368_7778195_7009004,4368_574 -4358_80755,229,4368_14359,Limekiln Avenue,16764,0,4368_7778195_7009003,4368_574 -4358_80682,227,4368_1436,Grange Castle,6903,0,4368_7778195_8013013,4368_52 -4358_80755,228,4368_14360,Limekiln Avenue,13226,0,4368_7778195_7009003,4368_575 -4358_80755,227,4368_14361,Limekiln Avenue,3571,0,4368_7778195_7009017,4368_574 -4358_80755,229,4368_14362,Limekiln Avenue,18516,0,4368_7778195_7009010,4368_574 -4358_80755,228,4368_14363,Limekiln Avenue,13240,0,4368_7778195_7009005,4368_575 -4358_80755,227,4368_14364,Limekiln Avenue,3450,0,4368_7778195_7009009,4368_576 -4358_80755,227,4368_14365,Limekiln Avenue,3472,0,4368_7778195_7009021,4368_574 -4358_80755,229,4368_14366,Limekiln Avenue,16703,0,4368_7778195_7009005,4368_574 -4358_80755,228,4368_14367,Limekiln Avenue,10889,0,4368_7778195_7009002,4368_575 -4358_80755,227,4368_14368,Limekiln Avenue,3545,0,4368_7778195_7009010,4368_574 -4358_80755,228,4368_14369,Limekiln Avenue,13193,0,4368_7778195_7009014,4368_574 -4358_80682,227,4368_1437,Grange Castle,6905,0,4368_7778195_8013015,4368_52 -4358_80755,229,4368_14370,Limekiln Avenue,16739,0,4368_7778195_7009012,4368_575 -4358_80755,227,4368_14371,Limekiln Avenue,3434,0,4368_7778195_7009012,4368_574 -4358_80755,229,4368_14372,Limekiln Avenue,16716,0,4368_7778195_7009006,4368_574 -4358_80755,228,4368_14373,Limekiln Avenue,13209,0,4368_7778195_7009012,4368_575 -4358_80755,227,4368_14374,Limekiln Avenue,3479,0,4368_7778195_7009001,4368_574 -4358_80755,229,4368_14375,Limekiln Avenue,16733,0,4368_7778195_7009007,4368_574 -4358_80755,227,4368_14376,Limekiln Avenue,3493,0,4368_7778195_7009014,4368_575 -4358_80755,228,4368_14377,Limekiln Avenue,13259,0,4368_7778195_7009004,4368_576 -4358_80755,228,4368_14378,Limekiln Avenue,13277,0,4368_7778195_7009006,4368_574 -4358_80755,229,4368_14379,Limekiln Avenue,16755,0,4368_7778195_7009002,4368_575 -4358_80682,228,4368_1438,Grange Castle,13637,0,4368_7778195_8013010,4368_52 -4358_80755,227,4368_14380,Limekiln Avenue,3460,0,4368_7778195_7009016,4368_576 -4358_80755,228,4368_14381,Limekiln Avenue,13217,0,4368_7778195_7009015,4368_574 -4358_80755,229,4368_14382,Limekiln Avenue,16777,0,4368_7778195_7009014,4368_575 -4358_80755,227,4368_14383,Limekiln Avenue,3376,0,4368_7778195_7009006,4368_576 -4358_80755,227,4368_14384,Limekiln Avenue,3381,0,4368_7778195_7009020,4368_574 -4358_80755,228,4368_14385,Limekiln Avenue,13234,0,4368_7778195_7009008,4368_575 -4358_80755,229,4368_14386,Limekiln Avenue,16708,0,4368_7778195_7009011,4368_576 -4358_80755,227,4368_14387,Limekiln Avenue,3515,0,4368_7778195_7009018,4368_574 -4358_80755,229,4368_14388,Limekiln Avenue,16698,0,4368_7778195_7009004,4368_575 -4358_80755,228,4368_14389,Limekiln Avenue,10904,0,4368_7778195_7009010,4368_576 -4358_80682,229,4368_1439,Grange Castle,19073,0,4368_7778195_8013005,4368_54 -4358_80755,229,4368_14390,Limekiln Avenue,16725,0,4368_7778195_7009008,4368_574 -4358_80755,227,4368_14391,Limekiln Avenue,3534,0,4368_7778195_7009008,4368_575 -4358_80755,228,4368_14392,Limekiln Avenue,13202,0,4368_7778195_7009009,4368_574 -4358_80755,229,4368_14393,Limekiln Avenue,16772,0,4368_7778195_7009013,4368_574 -4358_80755,227,4368_14394,Limekiln Avenue,3556,0,4368_7778195_7009011,4368_575 -4358_80755,228,4368_14395,Limekiln Avenue,13250,0,4368_7778195_7009001,4368_574 -4358_80755,227,4368_14396,Limekiln Avenue,3487,0,4368_7778195_7009002,4368_574 -4358_80755,229,4368_14397,Limekiln Avenue,16746,0,4368_7778195_7009001,4368_574 -4358_80755,227,4368_14398,Limekiln Avenue,3463,0,4368_7778195_7009022,4368_574 -4358_80755,228,4368_14399,Limekiln Avenue,13268,0,4368_7778195_7009013,4368_575 -4358_80760,229,4368_144,Shaw street,15736,0,4368_7778195_9001002,4368_2 -4358_80682,227,4368_1440,Grange Castle,6908,0,4368_7778195_8013016,4368_53 -4358_80755,229,4368_14400,Limekiln Avenue,16766,0,4368_7778195_7009003,4368_574 -4358_80755,228,4368_14401,Limekiln Avenue,13242,0,4368_7778195_7009005,4368_574 -4358_80755,227,4368_14402,Limekiln Avenue,3416,0,4368_7778195_7009003,4368_575 -4358_80755,229,4368_14403,Limekiln Avenue,18518,0,4368_7778195_7009010,4368_574 -4358_80755,227,4368_14404,Limekiln Avenue,3452,0,4368_7778195_7009009,4368_574 -4358_80755,228,4368_14405,Limekiln Avenue,10891,0,4368_7778195_7009002,4368_575 -4358_80755,229,4368_14406,Limekiln Avenue,16718,0,4368_7778195_7009006,4368_574 -4358_80755,228,4368_14407,Limekiln Avenue,13195,0,4368_7778195_7009014,4368_574 -4358_80755,227,4368_14408,Limekiln Avenue,3547,0,4368_7778195_7009010,4368_575 -4358_80755,229,4368_14409,Limekiln Avenue,16735,0,4368_7778195_7009007,4368_574 -4358_80682,227,4368_1441,Grange Castle,6717,0,4368_7778195_8013002,4368_52 -4358_80755,227,4368_14410,Limekiln Avenue,3436,0,4368_7778195_7009012,4368_574 -4358_80755,228,4368_14411,Limekiln Avenue,13261,0,4368_7778195_7009004,4368_575 -4358_80755,229,4368_14412,Limekiln Avenue,16757,0,4368_7778195_7009002,4368_574 -4358_80755,228,4368_14413,Limekiln Avenue,13279,0,4368_7778195_7009006,4368_574 -4358_80755,227,4368_14414,Limekiln Avenue,3495,0,4368_7778195_7009014,4368_575 -4358_80755,229,4368_14415,Limekiln Avenue,16779,0,4368_7778195_7009014,4368_574 -4358_80755,228,4368_14416,Limekiln Avenue,13219,0,4368_7778195_7009015,4368_574 -4358_80755,227,4368_14417,Limekiln Avenue,3378,0,4368_7778195_7009006,4368_575 -4358_80755,229,4368_14418,Limekiln Avenue,16710,0,4368_7778195_7009011,4368_574 -4358_80755,227,4368_14419,Limekiln Avenue,3383,0,4368_7778195_7009020,4368_574 -4358_80682,228,4368_1442,Grange Castle,13574,0,4368_7778195_8013001,4368_52 -4358_80755,229,4368_14420,Limekiln Avenue,16727,0,4368_7778195_7009008,4368_574 -4358_80755,228,4368_14421,Limekiln Avenue,13204,0,4368_7778195_7009009,4368_575 -4358_80755,227,4368_14422,Limekiln Avenue,3558,0,4368_7778195_7009011,4368_574 -4358_80755,229,4368_14423,Limekiln Avenue,16774,0,4368_7778195_7009013,4368_574 -4358_80755,227,4368_14424,Limekiln Avenue,3465,0,4368_7778195_7009022,4368_574 -4358_80755,228,4368_14425,Limekiln Avenue,13252,0,4368_7778195_7009001,4368_575 -4358_80755,229,4368_14426,Limekiln Avenue,16748,0,4368_7778195_7009001,4368_574 -4358_80755,227,4368_14427,Limekiln Avenue,3418,0,4368_7778195_7009003,4368_574 -4358_80755,229,4368_14428,Limekiln Avenue,16768,0,4368_7778195_7009003,4368_574 -4358_80755,228,4368_14429,Limekiln Avenue,13270,0,4368_7778195_7009013,4368_575 -4358_80682,229,4368_1443,Grange Castle,19075,0,4368_7778195_8013006,4368_52 -4358_80755,227,4368_14430,Limekiln Avenue,3454,0,4368_7778195_7009009,4368_574 -4358_80755,229,4368_14431,Limekiln Avenue,18520,0,4368_7778195_7009010,4368_574 -4358_80755,227,4368_14432,Limekiln Avenue,3549,0,4368_7778195_7009010,4368_574 -4358_80755,228,4368_14433,Limekiln Avenue,10893,0,4368_7778195_7009002,4368_575 -4358_80755,229,4368_14434,Limekiln Avenue,16720,0,4368_7778195_7009006,4368_574 -4358_80755,227,4368_14435,Limekiln Avenue,3497,0,4368_7778195_7009014,4368_574 -4358_80755,229,4368_14436,Limekiln Avenue,16759,0,4368_7778195_7009002,4368_574 -4358_80755,228,4368_14437,O'Connell St,13263,0,4368_7778195_7009004,4368_577 -4358_80755,227,4368_14438,Charlestown,3480,1,4368_7778195_7009002,4368_578 -4358_80755,227,4368_14439,Charlestown,5226,1,4368_7778195_7009004,4368_578 -4358_80682,227,4368_1444,Grange Castle,6821,0,4368_7778195_8013004,4368_54 -4358_80755,228,4368_14440,Charlestown,13243,1,4368_7778195_7009001,4368_578 -4358_80755,227,4368_14441,Charlestown,3419,1,4368_7778195_7009007,4368_579 -4358_80755,227,4368_14442,Charlestown,3445,1,4368_7778195_7009009,4368_578 -4358_80755,228,4368_14443,Charlestown,13221,1,4368_7778195_7009003,4368_579 -4358_80755,227,4368_14444,Charlestown,3540,1,4368_7778195_7009010,4368_578 -4358_80755,228,4368_14445,Charlestown,13235,1,4368_7778195_7009005,4368_578 -4358_80755,227,4368_14446,Charlestown,3429,1,4368_7778195_7009012,4368_578 -4358_80755,228,4368_14447,Charlestown,10894,1,4368_7778195_7009007,4368_578 -4358_80755,227,4368_14448,Charlestown,3474,1,4368_7778195_7009001,4368_579 -4358_80755,227,4368_14449,Charlestown,3488,1,4368_7778195_7009014,4368_578 -4358_80682,228,4368_1445,Grange Castle,13584,0,4368_7778195_8013002,4368_52 -4358_80755,228,4368_14450,Charlestown,10884,1,4368_7778195_7009002,4368_578 -4358_80755,227,4368_14451,Charlestown,3388,1,4368_7778195_7009005,4368_578 -4358_80755,227,4368_14452,Charlestown,3455,1,4368_7778195_7009016,4368_578 -4358_80755,228,4368_14453,Charlestown,13254,1,4368_7778195_7009004,4368_578 -4358_80755,227,4368_14454,Charlestown,3371,1,4368_7778195_7009006,4368_578 -4358_80755,227,4368_14455,Charlestown,3510,1,4368_7778195_7009018,4368_578 -4358_80755,228,4368_14456,Charlestown,13272,1,4368_7778195_7009006,4368_579 -4358_80755,227,4368_14457,Charlestown,3529,1,4368_7778195_7009008,4368_578 -4358_80755,228,4368_14458,Charlestown,13229,1,4368_7778195_7009008,4368_578 -4358_80755,227,4368_14459,Charlestown,3551,1,4368_7778195_7009011,4368_578 -4358_80682,227,4368_1446,Grange Castle,6976,0,4368_7778195_8013019,4368_52 -4358_80755,228,4368_14460,Charlestown,10899,1,4368_7778195_7009010,4368_578 -4358_80755,227,4368_14461,Charlestown,3467,1,4368_7778195_7009019,4368_578 -4358_80755,227,4368_14462,Charlestown,3517,1,4368_7778195_7009013,4368_578 -4358_80755,229,4368_14463,Charlestown,16750,1,4368_7778195_7009002,4368_578 -4358_80755,228,4368_14464,Charlestown,13197,1,4368_7778195_7009009,4368_579 -4358_80755,227,4368_14465,Charlestown,3405,1,4368_7778195_7009015,4368_578 -4358_80755,227,4368_14466,Charlestown,3482,1,4368_7778195_7009002,4368_578 -4358_80755,228,4368_14467,Charlestown,13245,1,4368_7778195_7009001,4368_578 -4358_80755,229,4368_14468,Charlestown,16693,1,4368_7778195_7009004,4368_578 -4358_80755,227,4368_14469,Charlestown,3411,1,4368_7778195_7009003,4368_578 -4358_80682,227,4368_1447,Grange Castle,6984,0,4368_7778195_8013020,4368_52 -4358_80755,228,4368_14470,Charlestown,13223,1,4368_7778195_7009003,4368_578 -4358_80755,227,4368_14471,Charlestown,5228,1,4368_7778195_7009004,4368_578 -4358_80755,229,4368_14472,Charlestown,16741,1,4368_7778195_7009001,4368_578 -4358_80755,227,4368_14473,Charlestown,3568,1,4368_7778195_7009017,4368_578 -4358_80755,228,4368_14474,Charlestown,13237,1,4368_7778195_7009005,4368_578 -4358_80755,227,4368_14475,Charlestown,3447,1,4368_7778195_7009009,4368_578 -4358_80755,229,4368_14476,Charlestown,16761,1,4368_7778195_7009003,4368_578 -4358_80755,227,4368_14477,Charlestown,3542,1,4368_7778195_7009010,4368_578 -4358_80755,228,4368_14478,Charlestown,10896,1,4368_7778195_7009007,4368_578 -4358_80755,227,4368_14479,Charlestown,3431,1,4368_7778195_7009012,4368_578 -4358_80682,229,4368_1448,Grange Castle,19053,0,4368_7778195_8013001,4368_52 -4358_80755,229,4368_14480,Charlestown,16700,1,4368_7778195_7009005,4368_578 -4358_80755,228,4368_14481,Charlestown,10886,1,4368_7778195_7009002,4368_579 -4358_80755,227,4368_14482,Charlestown,3476,1,4368_7778195_7009001,4368_578 -4358_80755,227,4368_14483,Charlestown,3490,1,4368_7778195_7009014,4368_578 -4358_80755,228,4368_14484,Charlestown,13206,1,4368_7778195_7009012,4368_578 -4358_80755,229,4368_14485,Charlestown,16713,1,4368_7778195_7009006,4368_578 -4358_80755,227,4368_14486,Charlestown,3390,1,4368_7778195_7009005,4368_578 -4358_80755,228,4368_14487,Charlestown,13256,1,4368_7778195_7009004,4368_578 -4358_80755,227,4368_14488,Charlestown,3457,1,4368_7778195_7009016,4368_578 -4358_80755,229,4368_14489,Charlestown,18521,1,4368_7778195_7009009,4368_578 -4358_80682,228,4368_1449,Grange Castle,13599,0,4368_7778195_8013004,4368_54 -4358_80755,227,4368_14490,Charlestown,3373,1,4368_7778195_7009006,4368_579 -4358_80755,228,4368_14491,Charlestown,13274,1,4368_7778195_7009006,4368_580 -4358_80755,227,4368_14492,Charlestown,3512,1,4368_7778195_7009018,4368_578 -4358_80755,228,4368_14493,Charlestown,13231,1,4368_7778195_7009008,4368_578 -4358_80755,229,4368_14494,Charlestown,16730,1,4368_7778195_7009007,4368_579 -4358_80755,227,4368_14495,Charlestown,3531,1,4368_7778195_7009008,4368_578 -4358_80755,228,4368_14496,Charlestown,10901,1,4368_7778195_7009010,4368_578 -4358_80755,229,4368_14497,Charlestown,16752,1,4368_7778195_7009002,4368_579 -4358_80755,227,4368_14498,Charlestown,3553,1,4368_7778195_7009011,4368_578 -4358_80755,229,4368_14499,Charlestown,16705,1,4368_7778195_7009011,4368_578 -4358_80760,228,4368_145,Shaw street,9388,0,4368_7778195_9001001,4368_1 -4358_80682,227,4368_1450,Grange Castle,6823,0,4368_7778195_8013005,4368_52 -4358_80755,228,4368_14500,Charlestown,13199,1,4368_7778195_7009009,4368_579 -4358_80755,227,4368_14501,Charlestown,3469,1,4368_7778195_7009019,4368_578 -4358_80755,229,4368_14502,Charlestown,16695,1,4368_7778195_7009004,4368_578 -4358_80755,228,4368_14503,Charlestown,13212,1,4368_7778195_7009011,4368_579 -4358_80755,227,4368_14504,Charlestown,3519,1,4368_7778195_7009013,4368_580 -4358_80755,227,4368_14505,Charlestown,3407,1,4368_7778195_7009015,4368_578 -4358_80755,229,4368_14506,Charlestown,16722,1,4368_7778195_7009008,4368_578 -4358_80755,228,4368_14507,Charlestown,13247,1,4368_7778195_7009001,4368_579 -4358_80755,227,4368_14508,Charlestown,3484,1,4368_7778195_7009002,4368_578 -4358_80755,229,4368_14509,Charlestown,16769,1,4368_7778195_7009013,4368_578 -4358_80682,228,4368_1451,Grange Castle,13612,0,4368_7778195_8013006,4368_52 -4358_80755,228,4368_14510,Charlestown,13265,1,4368_7778195_7009013,4368_579 -4358_80755,227,4368_14511,Charlestown,3413,1,4368_7778195_7009003,4368_578 -4358_80755,229,4368_14512,Charlestown,16743,1,4368_7778195_7009001,4368_578 -4358_80755,228,4368_14513,Charlestown,13225,1,4368_7778195_7009003,4368_579 -4358_80755,227,4368_14514,Charlestown,5230,1,4368_7778195_7009004,4368_578 -4358_80755,228,4368_14515,Charlestown,13239,1,4368_7778195_7009005,4368_578 -4358_80755,229,4368_14516,Charlestown,16763,1,4368_7778195_7009003,4368_579 -4358_80755,227,4368_14517,Charlestown,3570,1,4368_7778195_7009017,4368_580 -4358_80755,227,4368_14518,Charlestown,3449,1,4368_7778195_7009009,4368_578 -4358_80755,229,4368_14519,Charlestown,18515,1,4368_7778195_7009010,4368_578 -4358_80682,227,4368_1452,Grange Castle,6835,0,4368_7778195_8013007,4368_52 -4358_80755,228,4368_14520,Charlestown,10898,1,4368_7778195_7009007,4368_579 -4358_80755,227,4368_14521,Charlestown,3544,1,4368_7778195_7009010,4368_578 -4358_80755,229,4368_14522,Charlestown,16702,1,4368_7778195_7009005,4368_578 -4358_80755,228,4368_14523,Charlestown,10888,1,4368_7778195_7009002,4368_579 -4358_80755,227,4368_14524,Charlestown,3433,1,4368_7778195_7009012,4368_578 -4358_80755,228,4368_14525,Charlestown,13192,1,4368_7778195_7009014,4368_578 -4358_80755,229,4368_14526,Charlestown,16738,1,4368_7778195_7009012,4368_579 -4358_80755,227,4368_14527,Charlestown,3478,1,4368_7778195_7009001,4368_578 -4358_80755,227,4368_14528,Charlestown,3492,1,4368_7778195_7009014,4368_578 -4358_80755,229,4368_14529,Charlestown,16715,1,4368_7778195_7009006,4368_579 -4358_80682,228,4368_1453,Grange Castle,13627,0,4368_7778195_8013008,4368_52 -4358_80755,228,4368_14530,Charlestown,13208,1,4368_7778195_7009012,4368_580 -4358_80755,227,4368_14531,Charlestown,3392,1,4368_7778195_7009005,4368_578 -4358_80755,229,4368_14532,Charlestown,18523,1,4368_7778195_7009009,4368_578 -4358_80755,228,4368_14533,Charlestown,13258,1,4368_7778195_7009004,4368_579 -4358_80755,227,4368_14534,Charlestown,3459,1,4368_7778195_7009016,4368_578 -4358_80755,228,4368_14535,Charlestown,13276,1,4368_7778195_7009006,4368_578 -4358_80755,229,4368_14536,Charlestown,16732,1,4368_7778195_7009007,4368_579 -4358_80755,227,4368_14537,Charlestown,3375,1,4368_7778195_7009006,4368_578 -4358_80755,228,4368_14538,Charlestown,13216,1,4368_7778195_7009015,4368_578 -4358_80755,229,4368_14539,Charlestown,16754,1,4368_7778195_7009002,4368_579 -4358_80682,229,4368_1454,Grange Castle,19063,0,4368_7778195_8013002,4368_54 -4358_80755,227,4368_14540,Charlestown,3380,1,4368_7778195_7009020,4368_578 -4358_80755,228,4368_14541,Charlestown,13233,1,4368_7778195_7009008,4368_578 -4358_80755,227,4368_14542,Charlestown,3514,1,4368_7778195_7009018,4368_579 -4358_80755,229,4368_14543,Charlestown,16776,1,4368_7778195_7009014,4368_580 -4358_80755,227,4368_14544,Charlestown,3533,1,4368_7778195_7009008,4368_578 -4358_80755,229,4368_14545,Charlestown,16707,1,4368_7778195_7009011,4368_578 -4358_80755,228,4368_14546,Charlestown,10903,1,4368_7778195_7009010,4368_579 -4358_80755,227,4368_14547,Charlestown,3555,1,4368_7778195_7009011,4368_578 -4358_80755,229,4368_14548,Charlestown,16697,1,4368_7778195_7009004,4368_578 -4358_80755,227,4368_14549,Charlestown,3471,1,4368_7778195_7009019,4368_579 -4358_80682,227,4368_1455,Grange Castle,6874,0,4368_7778195_8013008,4368_55 -4358_80755,228,4368_14550,Charlestown,13201,1,4368_7778195_7009009,4368_580 -4358_80755,227,4368_14551,Charlestown,3521,1,4368_7778195_7009013,4368_578 -4358_80755,229,4368_14552,Charlestown,16724,1,4368_7778195_7009008,4368_578 -4358_80755,228,4368_14553,Charlestown,13214,1,4368_7778195_7009011,4368_579 -4358_80755,227,4368_14554,Charlestown,3409,1,4368_7778195_7009015,4368_578 -4358_80755,229,4368_14555,Charlestown,16771,1,4368_7778195_7009013,4368_578 -4358_80755,227,4368_14556,Charlestown,3486,1,4368_7778195_7009002,4368_579 -4358_80755,228,4368_14557,Charlestown,13249,1,4368_7778195_7009001,4368_580 -4358_80755,227,4368_14558,Charlestown,3462,1,4368_7778195_7009022,4368_578 -4358_80755,229,4368_14559,Charlestown,16745,1,4368_7778195_7009001,4368_578 -4358_80682,227,4368_1456,Grange Castle,6885,0,4368_7778195_8013010,4368_52 -4358_80755,228,4368_14560,Charlestown,13267,1,4368_7778195_7009013,4368_579 -4358_80755,227,4368_14561,Charlestown,3415,1,4368_7778195_7009003,4368_578 -4358_80755,229,4368_14562,Charlestown,16765,1,4368_7778195_7009003,4368_578 -4358_80755,228,4368_14563,Charlestown,13227,1,4368_7778195_7009003,4368_579 -4358_80755,227,4368_14564,Charlestown,3572,1,4368_7778195_7009017,4368_578 -4358_80755,229,4368_14565,Charlestown,18517,1,4368_7778195_7009010,4368_578 -4358_80755,228,4368_14566,Charlestown,13241,1,4368_7778195_7009005,4368_579 -4358_80755,227,4368_14567,Charlestown,3451,1,4368_7778195_7009009,4368_578 -4358_80755,229,4368_14568,Charlestown,16704,1,4368_7778195_7009005,4368_578 -4358_80755,228,4368_14569,Charlestown,10890,1,4368_7778195_7009002,4368_579 -4358_80682,228,4368_1457,Grange Castle,13648,0,4368_7778195_8013012,4368_54 -4358_80755,227,4368_14570,Charlestown,3473,1,4368_7778195_7009021,4368_578 -4358_80755,228,4368_14571,Charlestown,13194,1,4368_7778195_7009014,4368_578 -4358_80755,229,4368_14572,Charlestown,16717,1,4368_7778195_7009006,4368_579 -4358_80755,227,4368_14573,Charlestown,3546,1,4368_7778195_7009010,4368_578 -4358_80755,229,4368_14574,Charlestown,16734,1,4368_7778195_7009007,4368_578 -4358_80755,228,4368_14575,Charlestown,13210,1,4368_7778195_7009012,4368_579 -4358_80755,227,4368_14576,Charlestown,3435,1,4368_7778195_7009012,4368_578 -4358_80755,228,4368_14577,Charlestown,13260,1,4368_7778195_7009004,4368_578 -4358_80755,229,4368_14578,Charlestown,16756,1,4368_7778195_7009002,4368_578 -4358_80755,227,4368_14579,Charlestown,3494,1,4368_7778195_7009014,4368_578 -4358_80682,229,4368_1458,Grange Castle,19078,0,4368_7778195_8013007,4368_52 -4358_80755,228,4368_14580,Charlestown,13278,1,4368_7778195_7009006,4368_578 -4358_80755,229,4368_14581,Charlestown,16778,1,4368_7778195_7009014,4368_578 -4358_80755,227,4368_14582,Charlestown,3461,1,4368_7778195_7009016,4368_579 -4358_80755,228,4368_14583,Charlestown,13218,1,4368_7778195_7009015,4368_578 -4358_80755,227,4368_14584,Charlestown,3377,1,4368_7778195_7009006,4368_579 -4358_80755,229,4368_14585,Charlestown,16709,1,4368_7778195_7009011,4368_578 -4358_80755,227,4368_14586,Charlestown,3382,1,4368_7778195_7009020,4368_578 -4358_80755,228,4368_14587,Charlestown,10905,1,4368_7778195_7009010,4368_579 -4358_80755,229,4368_14588,Charlestown,16726,1,4368_7778195_7009008,4368_578 -4358_80755,227,4368_14589,Charlestown,3535,1,4368_7778195_7009008,4368_578 -4358_80682,227,4368_1459,Grange Castle,6813,0,4368_7778195_8013003,4368_54 -4358_80755,228,4368_14590,Charlestown,13203,1,4368_7778195_7009009,4368_579 -4358_80755,229,4368_14591,Charlestown,16773,1,4368_7778195_7009013,4368_578 -4358_80755,228,4368_14592,Charlestown,13251,1,4368_7778195_7009001,4368_578 -4358_80755,227,4368_14593,Charlestown,3557,1,4368_7778195_7009011,4368_578 -4358_80755,229,4368_14594,Charlestown,16747,1,4368_7778195_7009001,4368_578 -4358_80755,227,4368_14595,Charlestown,3464,1,4368_7778195_7009022,4368_578 -4358_80755,228,4368_14596,Charlestown,13269,1,4368_7778195_7009013,4368_578 -4358_80755,229,4368_14597,Charlestown,16767,1,4368_7778195_7009003,4368_578 -4358_80755,227,4368_14598,Charlestown,3417,1,4368_7778195_7009003,4368_578 -4358_80755,229,4368_14599,Charlestown,18519,1,4368_7778195_7009010,4368_578 -4358_80760,227,4368_146,Shaw street,1666,0,4368_7778195_9001003,4368_1 -4358_80682,228,4368_1460,Grange Castle,13593,0,4368_7778195_8013003,4368_55 -4358_80755,228,4368_14600,Charlestown,10892,1,4368_7778195_7009002,4368_578 -4358_80755,227,4368_14601,Charlestown,3453,1,4368_7778195_7009009,4368_578 -4358_80755,229,4368_14602,Charlestown,16719,1,4368_7778195_7009006,4368_578 -4358_80755,227,4368_14603,Charlestown,3548,1,4368_7778195_7009010,4368_578 -4358_80755,228,4368_14604,Charlestown,13262,1,4368_7778195_7009004,4368_578 -4358_80755,229,4368_14605,Charlestown,16736,1,4368_7778195_7009007,4368_578 -4358_80755,227,4368_14606,Charlestown,3496,1,4368_7778195_7009014,4368_578 -4358_80755,229,4368_14607,Charlestown,16758,1,4368_7778195_7009002,4368_578 -4358_80755,228,4368_14608,Charlestown,13280,1,4368_7778195_7009006,4368_578 -4358_80755,227,4368_14609,Charlestown,3379,1,4368_7778195_7009006,4368_578 -4358_80682,227,4368_1461,Grange Castle,6989,0,4368_7778195_8013023,4368_52 -4358_80755,229,4368_14610,Charlestown,16780,1,4368_7778195_7009014,4368_578 -4358_80755,227,4368_14611,Charlestown,3384,1,4368_7778195_7009020,4368_578 -4358_80755,228,4368_14612,Charlestown,13220,1,4368_7778195_7009015,4368_578 -4358_80755,229,4368_14613,Charlestown,16711,1,4368_7778195_7009011,4368_578 -4358_80755,227,4368_14614,Charlestown,3559,1,4368_7778195_7009011,4368_578 -4358_80755,229,4368_14615,Charlestown,16728,1,4368_7778195_7009008,4368_578 -4358_80755,228,4368_14616,Parnell Sq,13205,1,4368_7778195_7009009,4368_581 -4358_80755,227,4368_14617,Charlestown,3466,1,4368_7778195_7009022,4368_578 -4358_80755,229,4368_14618,Charlestown,16749,1,4368_7778195_7009001,4368_578 -4358_80751,229,4368_14619,Visitor Centre,18495,1,4368_7778195_7827106,4368_582 -4358_80682,228,4368_1462,Grange Castle,13606,0,4368_7778195_8013005,4368_52 -4358_80751,228,4368_14620,Visitor Centre,13078,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14621,Visitor Centre,5207,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14622,Visitor Centre,18496,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14623,Visitor Centre,13079,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14624,Visitor Centre,5208,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14625,Visitor Centre,18497,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14626,Visitor Centre,13080,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14627,Visitor Centre,5209,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14628,Visitor Centre,18498,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14629,Visitor Centre,13081,1,4368_7778195_7827106,4368_583 -4358_80682,227,4368_1463,Grange Castle,6894,0,4368_7778195_8013012,4368_52 -4358_80751,227,4368_14630,Visitor Centre,5210,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14631,Visitor Centre,18499,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14632,Visitor Centre,13082,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14633,Visitor Centre,5211,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14634,Visitor Centre,18500,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14635,Visitor Centre,13083,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14636,Visitor Centre,5212,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14637,Visitor Centre,18501,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14638,Visitor Centre,13084,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14639,Visitor Centre,5213,1,4368_7778195_7827106,4368_584 -4358_80682,228,4368_1464,Grange Castle,13619,0,4368_7778195_8013007,4368_52 -4358_80751,229,4368_14640,Visitor Centre,18502,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14641,Visitor Centre,13085,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14642,Visitor Centre,5214,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14643,Visitor Centre,18503,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14644,Visitor Centre,13086,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14645,Visitor Centre,5215,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14646,Visitor Centre,18504,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14647,Visitor Centre,13087,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14648,Visitor Centre,5216,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14649,Visitor Centre,18505,1,4368_7778195_7827106,4368_582 -4358_80682,229,4368_1465,Grange Castle,19070,0,4368_7778195_8013003,4368_54 -4358_80751,228,4368_14650,Visitor Centre,13088,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14651,Visitor Centre,5217,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14652,Visitor Centre,18506,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14653,Visitor Centre,13089,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14654,Visitor Centre,5218,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14655,Visitor Centre,18507,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14656,Visitor Centre,13090,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14657,Visitor Centre,5219,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14658,Visitor Centre,18508,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14659,Visitor Centre,13091,1,4368_7778195_7827106,4368_583 -4358_80682,227,4368_1466,Grange Castle,6898,0,4368_7778195_8013014,4368_52 -4358_80751,227,4368_14660,Visitor Centre,5220,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14661,Visitor Centre,18509,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14662,Visitor Centre,13092,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14663,Visitor Centre,5221,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14664,Visitor Centre,18510,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14665,Visitor Centre,13093,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14666,Visitor Centre,5222,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14667,Visitor Centre,18511,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14668,Visitor Centre,13094,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14669,Visitor Centre,5223,1,4368_7778195_7827106,4368_584 -4358_80682,228,4368_1467,Grange Castle,13655,0,4368_7778195_8013014,4368_52 -4358_80751,229,4368_14670,Visitor Centre,18512,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14671,Visitor Centre,13095,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14672,Visitor Centre,5224,1,4368_7778195_7827106,4368_584 -4358_80751,229,4368_14673,Visitor Centre,18513,1,4368_7778195_7827106,4368_582 -4358_80751,228,4368_14674,Visitor Centre,13096,1,4368_7778195_7827106,4368_583 -4358_80751,227,4368_14675,Visitor Centre,5225,1,4368_7778195_7827106,4368_584 -4358_80775,229,4368_14676,Adamstown Station,15260,0,4368_7778195_3421001,4368_585 -4358_80775,227,4368_14677,Adamstown Station,3923,0,4368_7778195_7421101,4368_587 -4358_80775,228,4368_14678,Adamstown Station,9011,0,4368_7778195_3421002,4368_588 -4358_80775,227,4368_14679,Adamstown Station,1412,0,4368_7778195_3421004,4368_585 -4358_80682,227,4368_1468,Grange Castle,6829,0,4368_7778195_8013006,4368_52 -4358_80775,228,4368_14680,Adamstown Station,10989,0,4368_7778195_7421103,4368_585 -4358_80775,229,4368_14681,Adamstown Station,16979,0,4368_7778195_7421104,4368_585 -4358_80775,227,4368_14682,Adamstown Station,3738,0,4368_7778195_7421108,4368_585 -4358_80775,228,4368_14683,Adamstown Station,10906,0,4368_7778195_7421105,4368_585 -4358_80775,227,4368_14684,Adamstown Station,3952,0,4368_7778195_7421110,4368_585 -4358_80775,228,4368_14685,Adamstown Station,11063,0,4368_7778195_7421101,4368_585 -4358_80775,229,4368_14686,Adamstown Station,17039,0,4368_7778195_7421103,4368_585 -4358_80775,227,4368_14687,Adamstown Station,1377,0,4368_7778195_3421002,4368_585 -4358_80775,227,4368_14688,Adamstown Station,3945,0,4368_7778195_7421103,4368_585 -4358_80775,228,4368_14689,Adamstown Station,10928,0,4368_7778195_7421102,4368_585 -4358_80682,229,4368_1469,Grange Castle,19072,0,4368_7778195_8013004,4368_52 -4358_80775,227,4368_14690,Adamstown Station,3925,0,4368_7778195_7421101,4368_585 -4358_80775,228,4368_14691,Adamstown Station,10972,0,4368_7778195_7421104,4368_585 -4358_80775,229,4368_14692,Adamstown Station,15262,0,4368_7778195_3421001,4368_585 -4358_80775,227,4368_14693,Adamstown Station,3705,0,4368_7778195_7421107,4368_585 -4358_80775,227,4368_14694,Adamstown Station,3840,0,4368_7778195_7421109,4368_585 -4358_80775,228,4368_14695,Adamstown Station,10917,0,4368_7778195_7421107,4368_585 -4358_80775,229,4368_14696,Adamstown Station,17045,0,4368_7778195_7421107,4368_585 -4358_80775,227,4368_14697,Adamstown Station,1438,0,4368_7778195_3421006,4368_585 -4358_80775,229,4368_14698,Adamstown Station,17018,0,4368_7778195_7421101,4368_585 -4358_80775,228,4368_14699,Adamstown Station,9039,0,4368_7778195_3421004,4368_585 -4358_80760,229,4368_147,Shaw street,15521,0,4368_7778195_9001003,4368_2 -4358_80682,227,4368_1470,Grange Castle,6930,0,4368_7778195_8013017,4368_54 -4358_80775,227,4368_14700,Adamstown Station,4043,0,4368_7778195_7421118,4368_585 -4358_80775,229,4368_14701,Adamstown Station,18635,0,4368_7778195_7421106,4368_585 -4358_80775,228,4368_14702,Adamstown Station,9056,0,4368_7778195_3421001,4368_585 -4358_80775,227,4368_14703,Adamstown Station,3740,0,4368_7778195_7421108,4368_585 -4358_80775,228,4368_14704,Adamstown Station,10950,0,4368_7778195_7421106,4368_585 -4358_80775,229,4368_14705,Adamstown Station,17041,0,4368_7778195_7421103,4368_585 -4358_80775,227,4368_14706,Adamstown Station,3966,0,4368_7778195_7421122,4368_585 -4358_80775,228,4368_14707,Adamstown Station,10981,0,4368_7778195_7421108,4368_585 -4358_80775,229,4368_14708,Adamstown Station,17003,0,4368_7778195_7421109,4368_585 -4358_80775,227,4368_14709,Adamstown Station,3781,0,4368_7778195_7421102,4368_585 -4358_80682,228,4368_1471,Grange Castle,13634,0,4368_7778195_8013009,4368_55 -4358_80775,228,4368_14710,Adamstown Station,10974,0,4368_7778195_7421104,4368_585 -4358_80775,229,4368_14711,Adamstown Station,15264,0,4368_7778195_3421001,4368_585 -4358_80775,227,4368_14712,Adamstown Station,3918,0,4368_7778195_7421104,4368_585 -4358_80775,228,4368_14713,Adamstown Station,10919,0,4368_7778195_7421107,4368_585 -4358_80775,229,4368_14714,Adamstown Station,17047,0,4368_7778195_7421107,4368_585 -4358_80775,227,4368_14715,Adamstown Station,1417,0,4368_7778195_3421005,4368_585 -4358_80775,228,4368_14716,Adamstown Station,10993,0,4368_7778195_7421103,4368_585 -4358_80775,229,4368_14717,Adamstown Station,17020,0,4368_7778195_7421101,4368_585 -4358_80775,227,4368_14718,Adamstown Station,3937,0,4368_7778195_7421111,4368_585 -4358_80775,228,4368_14719,Adamstown Station,10910,0,4368_7778195_7421105,4368_585 -4358_80682,227,4368_1472,Grange Castle,6975,0,4368_7778195_8013018,4368_52 -4358_80775,229,4368_14720,Adamstown Station,18637,0,4368_7778195_7421106,4368_585 -4358_80775,227,4368_14721,Adamstown Station,3811,0,4368_7778195_7421114,4368_585 -4358_80775,228,4368_14722,Adamstown Station,11067,0,4368_7778195_7421101,4368_585 -4358_80775,229,4368_14723,Adamstown Station,17043,0,4368_7778195_7421103,4368_585 -4358_80775,227,4368_14724,Adamstown Station,3742,0,4368_7778195_7421108,4368_585 -4358_80775,228,4368_14725,Adamstown Station,10967,0,4368_7778195_7421109,4368_585 -4358_80775,229,4368_14726,Adamstown Station,17005,0,4368_7778195_7421109,4368_585 -4358_80775,227,4368_14727,Adamstown Station,3968,0,4368_7778195_7421122,4368_585 -4358_80775,228,4368_14728,Adamstown Station,10983,0,4368_7778195_7421108,4368_585 -4358_80775,229,4368_14729,Adamstown Station,17067,0,4368_7778195_7421108,4368_585 -4358_80682,228,4368_1473,Grange Castle,13639,0,4368_7778195_8013010,4368_52 -4358_80775,227,4368_14730,Adamstown Station,3783,0,4368_7778195_7421102,4368_585 -4358_80775,228,4368_14731,Adamstown Station,10976,0,4368_7778195_7421104,4368_585 -4358_80775,229,4368_14732,Adamstown Station,16935,0,4368_7778195_7421102,4368_585 -4358_80775,227,4368_14733,Adamstown Station,6425,0,4368_7778195_3421603,4368_585 -4358_80775,227,4368_14734,Adamstown Station,3920,0,4368_7778195_7421104,4368_585 -4358_80775,228,4368_14735,Adamstown Station,10921,0,4368_7778195_7421107,4368_585 -4358_80775,229,4368_14736,Adamstown Station,16985,0,4368_7778195_7421104,4368_585 -4358_80775,227,4368_14737,Adamstown Station,3957,0,4368_7778195_7421125,4368_585 -4358_80775,228,4368_14738,Adamstown Station,10995,0,4368_7778195_7421103,4368_585 -4358_80775,229,4368_14739,Adamstown Station,16992,0,4368_7778195_7421111,4368_585 -4358_80682,227,4368_1474,Grange Castle,6712,0,4368_7778195_8013001,4368_52 -4358_80775,227,4368_14740,Adamstown Station,3844,0,4368_7778195_7421109,4368_585 -4358_80775,228,4368_14741,Adamstown Station,10912,0,4368_7778195_7421105,4368_585 -4358_80775,229,4368_14742,Adamstown Station,18639,0,4368_7778195_7421106,4368_585 -4358_80775,227,4368_14743,Adamstown Station,3634,0,4368_7778195_7872209,4368_585 -4358_80775,227,4368_14744,Adamstown Station,6411,0,4368_7778195_7421673,4368_585 -4358_80775,228,4368_14745,Adamstown Station,11069,0,4368_7778195_7421101,4368_587 -4358_80775,229,4368_14746,Adamstown Station,15244,0,4368_7778195_3421005,4368_585 -4358_80775,227,4368_14747,Adamstown Station,3638,0,4368_7778195_7872211,4368_585 -4358_80775,227,4368_14748,Adamstown Station,4047,0,4368_7778195_7421118,4368_585 -4358_80775,228,4368_14749,Adamstown Station,10969,0,4368_7778195_7421109,4368_585 -4358_80682,229,4368_1475,Grange Castle,19083,0,4368_7778195_8013010,4368_52 -4358_80775,227,4368_14750,Adamstown Station,6410,0,4368_7778195_7421672,4368_586 -4358_80775,229,4368_14751,Adamstown Station,16783,0,4368_7778195_7421112,4368_585 -4358_80775,227,4368_14752,Adamstown Station,3744,0,4368_7778195_7421108,4368_585 -4358_80775,227,4368_14753,Adamstown Station,3658,0,4368_7778195_7421129,4368_586 -4358_80775,227,4368_14754,Adamstown Station,1410,0,4368_7778195_3421019,4368_585 -4358_80775,227,4368_14755,Adamstown Station,6423,0,4368_7778195_3421602,4368_585 -4358_80775,227,4368_14756,Adamstown Station,1475,0,4368_7778195_3421014,4368_585 -4358_80775,227,4368_14757,Adamstown Station,3970,0,4368_7778195_7421122,4368_585 -4358_80775,228,4368_14758,Adamstown Station,10985,0,4368_7778195_7421108,4368_585 -4358_80775,229,4368_14759,Adamstown Station,15268,0,4368_7778195_3421001,4368_585 -4358_80682,228,4368_1476,Grange Castle,13647,0,4368_7778195_8013011,4368_54 -4358_80775,227,4368_14760,Adamstown Station,3961,0,4368_7778195_7421133,4368_586 -4358_80775,227,4368_14761,Adamstown Station,1383,0,4368_7778195_3421002,4368_585 -4358_80775,228,4368_14762,Adamstown Station,10978,0,4368_7778195_7421104,4368_585 -4358_80775,227,4368_14763,Adamstown Station,3765,0,4368_7778195_7421126,4368_585 -4358_80775,229,4368_14764,Adamstown Station,17051,0,4368_7778195_7421107,4368_585 -4358_80775,227,4368_14765,Adamstown Station,3909,0,4368_7778195_7421135,4368_586 -4358_80775,227,4368_14766,Adamstown Station,3785,0,4368_7778195_7421102,4368_585 -4358_80775,227,4368_14767,Adamstown Station,3951,0,4368_7778195_7421103,4368_585 -4358_80775,228,4368_14768,Adamstown Station,10923,0,4368_7778195_7421107,4368_585 -4358_80775,227,4368_14769,Adamstown Station,3682,0,4368_7778195_7421127,4368_585 -4358_80682,227,4368_1477,Grange Castle,6998,0,4368_7778195_8013025,4368_52 -4358_80775,229,4368_14770,Adamstown Station,17035,0,4368_7778195_7421110,4368_585 -4358_80775,227,4368_14771,Adamstown Station,3955,0,4368_7778195_7421128,4368_585 -4358_80775,228,4368_14772,Adamstown Station,10997,0,4368_7778195_7421103,4368_585 -4358_80775,227,4368_14773,Adamstown Station,3933,0,4368_7778195_7421105,4368_585 -4358_80775,229,4368_14774,Adamstown Station,15193,0,4368_7778195_3421003,4368_585 -4358_80775,227,4368_14775,Adamstown Station,3959,0,4368_7778195_7421125,4368_585 -4358_80775,228,4368_14776,Adamstown Station,10914,0,4368_7778195_7421105,4368_585 -4358_80775,227,4368_14777,Adamstown Station,1421,0,4368_7778195_3421005,4368_585 -4358_80775,229,4368_14778,Adamstown Station,15205,0,4368_7778195_3421004,4368_585 -4358_80775,228,4368_14779,Adamstown Station,11071,0,4368_7778195_7421101,4368_585 -4358_80682,228,4368_1478,Grange Castle,13576,0,4368_7778195_8013001,4368_52 -4358_80775,227,4368_14780,Adamstown Station,3941,0,4368_7778195_7421111,4368_585 -4358_80775,229,4368_14781,Adamstown Station,17009,0,4368_7778195_7421109,4368_585 -4358_80775,228,4368_14782,Adamstown Station,9066,0,4368_7778195_3421005,4368_585 -4358_80775,227,4368_14783,Adamstown Station,3815,0,4368_7778195_7421114,4368_585 -4358_80775,229,4368_14784,Adamstown Station,17071,0,4368_7778195_7421108,4368_585 -4358_80775,227,4368_14785,Adamstown Station,3788,0,4368_7778195_7421131,4368_585 -4358_80775,228,4368_14786,Adamstown Station,10987,0,4368_7778195_7421108,4368_585 -4358_80775,229,4368_14787,Adamstown Station,16939,0,4368_7778195_7421102,4368_585 -4358_80775,227,4368_14788,Adamstown Station,3894,0,4368_7778195_7421134,4368_585 -4358_80775,228,4368_14789,Adamstown Station,8942,0,4368_7778195_3421006,4368_587 -4358_80682,229,4368_1479,Grange Castle,19077,0,4368_7778195_8013006,4368_54 -4358_80775,229,4368_14790,Adamstown Station,16989,0,4368_7778195_7421104,4368_585 -4358_80775,227,4368_14791,Adamstown Station,1400,0,4368_7778195_3421026,4368_585 -4358_80775,228,4368_14792,Adamstown Station,10944,0,4368_7778195_7421110,4368_587 -4358_80775,229,4368_14793,Adamstown Station,15195,0,4368_7778195_3421003,4368_585 -4358_80775,227,4368_14794,Adamstown Station,3663,0,4368_7778195_7421130,4368_585 -4358_80775,228,4368_14795,Adamstown Station,10916,0,4368_7778195_7421105,4368_587 -4358_80775,229,4368_14796,Adamstown Station,15207,0,4368_7778195_3421004,4368_585 -4358_80775,228,4368_14797,Adamstown Station,11073,0,4368_7778195_7421101,4368_585 -4358_80775,227,4368_14798,Adamstown Station,3848,0,4368_7778195_7421109,4368_587 -4358_80775,229,4368_14799,Adamstown Station,17011,0,4368_7778195_7421109,4368_585 -4358_80760,228,4368_148,Shaw street,9518,0,4368_7778195_9001005,4368_1 -4358_80682,227,4368_1480,Grange Castle,6986,0,4368_7778195_8013021,4368_52 -4358_80775,227,4368_14800,Adamstown Station,1457,0,4368_7778195_3421029,4368_585 -4358_80775,228,4368_14801,Adamstown Station,9033,0,4368_7778195_3421003,4368_585 -4358_80775,229,4368_14802,Adamstown Station,15256,0,4368_7778195_3421006,4368_587 -4358_80775,228,4368_14803,Adamstown Station,9049,0,4368_7778195_3421004,4368_585 -4358_80775,227,4368_14804,Adamstown Station,1478,0,4368_7778195_3421027,4368_585 -4358_80775,229,4368_14805,Adamstown Station,15209,0,4368_7778195_3421004,4368_585 -4358_80775,228,4368_14806,Adamstown Station,9070,0,4368_7778195_3421005,4368_585 -4358_80775,227,4368_14807,Adamstown Station,1454,0,4368_7778195_3421030,4368_585 -4358_80775,229,4368_14808,Adamstown Station,15220,0,4368_7778195_3421007,4368_585 -4358_80775,228,4368_14809,Adamstown Station,8946,0,4368_7778195_3421006,4368_585 -4358_80682,228,4368_1481,Grange Castle,13586,0,4368_7778195_8013002,4368_52 -4358_80775,227,4368_14810,Adamstown Station,1466,0,4368_7778195_3421025,4368_585 -4358_80775,229,4368_14811,Adamstown Station,15199,0,4368_7778195_3421003,4368_585 -4358_80775,229,4368_14812,Adamstown Station,15252,0,4368_7778195_3421005,4368_585 -4358_80775,227,4368_14813,Adamstown Station,1449,0,4368_7778195_3421028,4368_587 -4358_80775,228,4368_14814,Adamstown Station,9000,0,4368_7778195_3421007,4368_588 -4358_80775,227,4368_14815,Sandymount,1397,1,4368_7778195_3421001,4368_589 -4358_80775,228,4368_14816,Sandymount,9053,1,4368_7778195_3421001,4368_589 -4358_80775,229,4368_14817,Sandymount,17015,1,4368_7778195_7421101,4368_589 -4358_80775,227,4368_14818,Sandymount,3778,1,4368_7778195_7421102,4368_589 -4358_80775,227,4368_14819,Sandymount,3915,1,4368_7778195_7421104,4368_589 -4358_80682,229,4368_1482,Grange Castle,19092,0,4368_7778195_8013013,4368_54 -4358_80775,228,4368_14820,Sandymount,10927,1,4368_7778195_7421102,4368_589 -4358_80775,229,4368_14821,Sandymount,15261,1,4368_7778195_3421001,4368_589 -4358_80775,227,4368_14822,Sandymount,3926,1,4368_7778195_7421105,4368_589 -4358_80775,227,4368_14823,Sandymount,3704,1,4368_7778195_7421107,4368_589 -4358_80775,228,4368_14824,Sandymount,10971,1,4368_7778195_7421104,4368_589 -4358_80775,227,4368_14825,Sandymount,1414,1,4368_7778195_3421005,4368_589 -4358_80775,227,4368_14826,Sandymount,3934,1,4368_7778195_7421111,4368_589 -4358_80775,227,4368_14827,Sandymount,3943,1,4368_7778195_7421112,4368_589 -4358_80775,228,4368_14828,Sandymount,10990,1,4368_7778195_7421103,4368_590 -4358_80775,227,4368_14829,Sandymount,3751,1,4368_7778195_7421113,4368_589 -4358_80682,227,4368_1483,Grange Castle,7003,0,4368_7778195_8013026,4368_55 -4358_80775,229,4368_14830,Sandymount,16980,1,4368_7778195_7421104,4368_589 -4358_80775,227,4368_14831,Sandymount,3896,1,4368_7778195_7421115,4368_589 -4358_80775,227,4368_14832,Sandymount,4041,1,4368_7778195_7421116,4368_589 -4358_80775,227,4368_14833,Sandymount,3895,1,4368_7778195_7421117,4368_589 -4358_80775,228,4368_14834,Sandymount,10907,1,4368_7778195_7421105,4368_589 -4358_80775,227,4368_14835,Sandymount,4042,1,4368_7778195_7421118,4368_589 -4358_80775,227,4368_14836,Sandymount,6422,1,4368_7778195_3421502,4368_589 -4358_80775,227,4368_14837,Sandymount,3910,1,4368_7778195_7421119,4368_589 -4358_80775,227,4368_14838,Sandymount,6424,1,4368_7778195_3421503,4368_589 -4358_80775,227,4368_14839,Sandymount,3739,1,4368_7778195_7421108,4368_589 -4358_80682,227,4368_1484,Grange Castle,6892,0,4368_7778195_8013011,4368_52 -4358_80775,227,4368_14840,Sandymount,1403,1,4368_7778195_3421007,4368_589 -4358_80775,228,4368_14841,Sandymount,11064,1,4368_7778195_7421101,4368_589 -4358_80775,229,4368_14842,Sandymount,18634,1,4368_7778195_7421106,4368_590 -4358_80775,227,4368_14843,Sandymount,3643,1,4368_7778195_7421121,4368_589 -4358_80775,227,4368_14844,Sandymount,3965,1,4368_7778195_7421122,4368_589 -4358_80775,227,4368_14845,Sandymount,3971,1,4368_7778195_7421123,4368_589 -4358_80775,228,4368_14846,Sandymount,10929,1,4368_7778195_7421102,4368_589 -4358_80775,229,4368_14847,Sandymount,17040,1,4368_7778195_7421103,4368_590 -4358_80775,227,4368_14848,Sandymount,3801,1,4368_7778195_7421124,4368_589 -4358_80775,227,4368_14849,Sandymount,1436,1,4368_7778195_3421003,4368_589 -4358_80682,229,4368_1485,Grange Castle,19097,0,4368_7778195_8013014,4368_52 -4358_80775,227,4368_14850,Sandymount,3780,1,4368_7778195_7421102,4368_589 -4358_80775,228,4368_14851,Sandymount,9014,1,4368_7778195_3421002,4368_589 -4358_80775,229,4368_14852,Sandymount,17064,1,4368_7778195_7421108,4368_589 -4358_80775,227,4368_14853,Sandymount,3917,1,4368_7778195_7421104,4368_589 -4358_80775,228,4368_14854,Sandymount,9024,1,4368_7778195_3421003,4368_589 -4358_80775,229,4368_14855,Sandymount,16932,1,4368_7778195_7421102,4368_589 -4358_80775,227,4368_14856,Sandymount,3928,1,4368_7778195_7421105,4368_589 -4358_80775,228,4368_14857,Sandymount,10992,1,4368_7778195_7421103,4368_589 -4358_80775,229,4368_14858,Sandymount,16982,1,4368_7778195_7421104,4368_589 -4358_80775,227,4368_14859,Sandymount,3841,1,4368_7778195_7421109,4368_589 -4358_80682,228,4368_1486,Grange Castle,13662,0,4368_7778195_8013016,4368_54 -4358_80775,228,4368_14860,Sandymount,10909,1,4368_7778195_7421105,4368_589 -4358_80775,229,4368_14861,Sandymount,15188,1,4368_7778195_3421003,4368_589 -4358_80775,227,4368_14862,Sandymount,1439,1,4368_7778195_3421006,4368_589 -4358_80775,228,4368_14863,Sandymount,11066,1,4368_7778195_7421101,4368_589 -4358_80775,229,4368_14864,Sandymount,15215,1,4368_7778195_3421002,4368_589 -4358_80775,227,4368_14865,Sandymount,4044,1,4368_7778195_7421118,4368_589 -4358_80775,228,4368_14866,Sandymount,10966,1,4368_7778195_7421109,4368_589 -4358_80775,229,4368_14867,Sandymount,16976,1,4368_7778195_7421105,4368_589 -4358_80775,227,4368_14868,Sandymount,1472,1,4368_7778195_3421014,4368_589 -4358_80775,228,4368_14869,Sandymount,10982,1,4368_7778195_7421108,4368_589 -4358_80682,227,4368_1487,Grange Castle,6907,0,4368_7778195_8013015,4368_52 -4358_80775,229,4368_14870,Sandymount,17066,1,4368_7778195_7421108,4368_589 -4358_80775,227,4368_14871,Sandymount,1380,1,4368_7778195_3421002,4368_589 -4358_80775,228,4368_14872,Sandymount,10975,1,4368_7778195_7421104,4368_589 -4358_80775,229,4368_14873,Sandymount,16934,1,4368_7778195_7421102,4368_589 -4358_80775,227,4368_14874,Sandymount,3948,1,4368_7778195_7421103,4368_589 -4358_80775,228,4368_14875,Sandymount,10920,1,4368_7778195_7421107,4368_589 -4358_80775,229,4368_14876,Sandymount,16984,1,4368_7778195_7421104,4368_589 -4358_80775,227,4368_14877,Sandymount,3930,1,4368_7778195_7421105,4368_589 -4358_80775,228,4368_14878,Sandymount,10994,1,4368_7778195_7421103,4368_589 -4358_80775,229,4368_14879,Sandymount,16991,1,4368_7778195_7421111,4368_589 -4358_80682,228,4368_1488,Grange Castle,13654,0,4368_7778195_8013013,4368_52 -4358_80775,227,4368_14880,Sandymount,1418,1,4368_7778195_3421005,4368_589 -4358_80775,228,4368_14881,Sandymount,10911,1,4368_7778195_7421105,4368_589 -4358_80775,229,4368_14882,Sandymount,18638,1,4368_7778195_7421106,4368_589 -4358_80775,227,4368_14883,Sandymount,3938,1,4368_7778195_7421111,4368_589 -4358_80775,228,4368_14884,Sandymount,11068,1,4368_7778195_7421101,4368_589 -4358_80775,229,4368_14885,Sandymount,17044,1,4368_7778195_7421103,4368_589 -4358_80775,227,4368_14886,Sandymount,3812,1,4368_7778195_7421114,4368_589 -4358_80775,228,4368_14887,Sandymount,10968,1,4368_7778195_7421109,4368_589 -4358_80775,229,4368_14888,Sandymount,17006,1,4368_7778195_7421109,4368_589 -4358_80775,227,4368_14889,Sandymount,3743,1,4368_7778195_7421108,4368_589 -4358_80682,229,4368_1489,Grange Castle,19055,0,4368_7778195_8013001,4368_54 -4358_80775,228,4368_14890,Sandymount,10984,1,4368_7778195_7421108,4368_589 -4358_80775,229,4368_14891,Sandymount,17068,1,4368_7778195_7421108,4368_589 -4358_80775,227,4368_14892,Sandymount,3969,1,4368_7778195_7421122,4368_589 -4358_80775,227,4368_14893,Sandymount,3764,1,4368_7778195_7421126,4368_589 -4358_80775,229,4368_14894,Sandymount,16936,1,4368_7778195_7421102,4368_589 -4358_80775,228,4368_14895,Sandymount,10977,1,4368_7778195_7421104,4368_589 -4358_80775,227,4368_14896,Sandymount,3950,1,4368_7778195_7421103,4368_589 -4358_80775,229,4368_14897,Sandymount,16986,1,4368_7778195_7421104,4368_589 -4358_80775,228,4368_14898,Sandymount,10922,1,4368_7778195_7421107,4368_589 -4358_80775,227,4368_14899,Sandymount,3921,1,4368_7778195_7421104,4368_589 -4358_80760,229,4368_149,Shaw street,15672,0,4368_7778195_9001005,4368_1 -4358_80682,227,4368_1490,Grange Castle,6988,0,4368_7778195_8013022,4368_52 -4358_80775,227,4368_14900,Sandymount,3932,1,4368_7778195_7421105,4368_589 -4358_80775,229,4368_14901,Sandymount,16993,1,4368_7778195_7421111,4368_589 -4358_80775,228,4368_14902,Sandymount,10996,1,4368_7778195_7421103,4368_590 -4358_80775,227,4368_14903,Sandymount,3660,1,4368_7778195_7421130,4368_589 -4358_80775,228,4368_14904,Sandymount,10913,1,4368_7778195_7421105,4368_589 -4358_80775,229,4368_14905,Sandymount,18640,1,4368_7778195_7421106,4368_590 -4358_80775,227,4368_14906,Sandymount,3845,1,4368_7778195_7421109,4368_589 -4358_80775,228,4368_14907,Sandymount,11070,1,4368_7778195_7421101,4368_589 -4358_80775,229,4368_14908,Sandymount,15245,1,4368_7778195_3421005,4368_589 -4358_80775,227,4368_14909,Sandymount,1406,1,4368_7778195_3421020,4368_589 -4358_80682,229,4368_1491,Grange Castle,19107,0,4368_7778195_8013018,4368_52 -4358_80775,228,4368_14910,Sandymount,10970,1,4368_7778195_7421109,4368_589 -4358_80775,229,4368_14911,Sandymount,16784,1,4368_7778195_7421112,4368_589 -4358_80775,227,4368_14912,Sandymount,4048,1,4368_7778195_7421118,4368_589 -4358_80775,228,4368_14913,Sandymount,10986,1,4368_7778195_7421108,4368_589 -4358_80775,229,4368_14914,Sandymount,15269,1,4368_7778195_3421001,4368_589 -4358_80775,227,4368_14915,Sandymount,3787,1,4368_7778195_7421131,4368_589 -4358_80775,228,4368_14916,Sandymount,10979,1,4368_7778195_7421104,4368_589 -4358_80775,229,4368_14917,Sandymount,15253,1,4368_7778195_3421006,4368_589 -4358_80775,227,4368_14918,Sandymount,3893,1,4368_7778195_7421134,4368_589 -4358_80775,228,4368_14919,Sandymount,10924,1,4368_7778195_7421107,4368_589 -4358_80682,228,4368_1492,Grange Castle,13601,0,4368_7778195_8013004,4368_54 -4358_80775,229,4368_14920,Sandymount,17036,1,4368_7778195_7421110,4368_589 -4358_80775,227,4368_14921,Sandymount,6709,1,4368_7778195_3823107,4368_589 -4358_80775,228,4368_14922,Sandymount,10998,1,4368_7778195_7421103,4368_589 -4358_80775,229,4368_14923,Sandymount,15194,1,4368_7778195_3421003,4368_589 -4358_80775,227,4368_14924,Sandymount,1348,1,4368_7778195_3421024,4368_589 -4358_80775,229,4368_14925,Sandymount,15206,1,4368_7778195_3421004,4368_589 -4358_80775,228,4368_14926,Sandymount,10915,1,4368_7778195_7421105,4368_590 -4358_80775,227,4368_14927,Sandymount,1422,1,4368_7778195_3421005,4368_589 -4358_80775,229,4368_14928,Sandymount,17010,1,4368_7778195_7421109,4368_589 -4358_80775,228,4368_14929,Sandymount,11072,1,4368_7778195_7421101,4368_589 -4358_80682,227,4368_1493,Grange Castle,6995,0,4368_7778195_8013024,4368_52 -4358_80775,227,4368_14930,Sandymount,3942,1,4368_7778195_7421111,4368_589 -4358_80775,228,4368_14931,Sandymount,10937,1,4368_7778195_7421102,4368_589 -4358_80775,229,4368_14932,Sandymount,15217,1,4368_7778195_3421007,4368_590 -4358_80775,227,4368_14933,Sandymount,3816,1,4368_7778195_7421114,4368_589 -4358_80775,228,4368_14934,Sandymount,9032,1,4368_7778195_3421003,4368_589 -4358_80775,229,4368_14935,Sandymount,15255,1,4368_7778195_3421006,4368_590 -4358_80775,229,4368_14936,Sandymount,15196,1,4368_7778195_3421003,4368_589 -4358_80775,228,4368_14937,Sandymount,10926,1,4368_7778195_7421107,4368_590 -4358_80775,227,4368_14938,Sandymount,1463,1,4368_7778195_3421025,4368_589 -4358_80775,229,4368_14939,Sandymount,15249,1,4368_7778195_3421005,4368_589 -4358_80682,228,4368_1494,Grange Castle,13614,0,4368_7778195_8013006,4368_52 -4358_80775,228,4368_14940,Sandymount,9065,1,4368_7778195_3421001,4368_590 -4358_80775,227,4368_14941,Sandymount,1446,1,4368_7778195_3421028,4368_589 -4358_80775,227,4368_14942,Sandymount,1458,1,4368_7778195_3421029,4368_589 -4358_80775,228,4368_14943,Sandymount,9034,1,4368_7778195_3421003,4368_589 -4358_80775,229,4368_14944,Sandymount,15257,1,4368_7778195_3421006,4368_590 -4358_80775,227,4368_14945,Sandymount,1479,1,4368_7778195_3421027,4368_589 -4358_80775,228,4368_14946,Sandymount,9050,1,4368_7778195_3421004,4368_589 -4358_80775,229,4368_14947,Sandymount,15210,1,4368_7778195_3421004,4368_590 -4358_80775,227,4368_14948,Sandymount,1455,1,4368_7778195_3421030,4368_589 -4358_80775,229,4368_14949,Sandymount,15221,1,4368_7778195_3421007,4368_589 -4358_80682,229,4368_1495,Grange Castle,19065,0,4368_7778195_8013002,4368_54 -4358_80775,228,4368_14950,Sandymount,9071,1,4368_7778195_3421005,4368_590 -4358_80775,228,4368_14951,Sandymount,8947,1,4368_7778195_3421006,4368_589 -4358_80775,227,4368_14952,Sandymount,1467,1,4368_7778195_3421025,4368_590 -4358_80775,229,4368_14953,Sandymount,15200,1,4368_7778195_3421003,4368_589 -4358_80776,227,4368_14954,Adamstown Station,1434,0,4368_7778195_3421003,4368_591 -4358_80776,229,4368_14955,Adamstown Station,16929,0,4368_7778195_7421102,4368_591 -4358_80776,228,4368_14956,Adamstown Station,9021,0,4368_7778195_3421003,4368_591 -4358_80776,227,4368_14957,Adamstown Station,1398,0,4368_7778195_3421001,4368_591 -4358_80776,228,4368_14958,Adamstown Station,9037,0,4368_7778195_3421004,4368_591 -4358_80776,229,4368_14959,Adamstown Station,17016,0,4368_7778195_7421101,4368_591 -4358_80682,227,4368_1496,Grange Castle,6978,0,4368_7778195_8013019,4368_55 -4358_80776,227,4368_14960,Adamstown Station,1402,0,4368_7778195_3421007,4368_591 -4358_80776,228,4368_14961,Adamstown Station,9054,0,4368_7778195_3421001,4368_591 -4358_80776,227,4368_14962,Adamstown Station,1468,0,4368_7778195_3421010,4368_591 -4358_80776,228,4368_14963,Adamstown Station,10948,0,4368_7778195_7421106,4368_591 -4358_80776,227,4368_14964,Adamstown Station,3779,0,4368_7778195_7421102,4368_591 -4358_80776,229,4368_14965,Adamstown Station,16973,0,4368_7778195_7421105,4368_591 -4358_80776,227,4368_14966,Adamstown Station,3916,0,4368_7778195_7421104,4368_591 -4358_80776,228,4368_14967,Adamstown Station,9013,0,4368_7778195_3421002,4368_591 -4358_80776,227,4368_14968,Adamstown Station,3927,0,4368_7778195_7421105,4368_591 -4358_80776,227,4368_14969,Adamstown Station,1415,0,4368_7778195_3421005,4368_591 -4358_80682,227,4368_1497,Grange Castle,6825,0,4368_7778195_8013005,4368_52 -4358_80776,228,4368_14970,Adamstown Station,9023,0,4368_7778195_3421003,4368_592 -4358_80776,229,4368_14971,Adamstown Station,16931,0,4368_7778195_7421102,4368_591 -4358_80776,227,4368_14972,Adamstown Station,3935,0,4368_7778195_7421111,4368_591 -4358_80776,228,4368_14973,Adamstown Station,10991,0,4368_7778195_7421103,4368_591 -4358_80776,229,4368_14974,Adamstown Station,16981,0,4368_7778195_7421104,4368_591 -4358_80776,227,4368_14975,Adamstown Station,3809,0,4368_7778195_7421114,4368_591 -4358_80776,228,4368_14976,Adamstown Station,10908,0,4368_7778195_7421105,4368_591 -4358_80776,229,4368_14977,Adamstown Station,15187,0,4368_7778195_3421003,4368_591 -4358_80776,227,4368_14978,Adamstown Station,3911,0,4368_7778195_7421119,4368_591 -4358_80776,228,4368_14979,Adamstown Station,11065,0,4368_7778195_7421101,4368_591 -4358_80682,228,4368_1498,Grange Castle,13629,0,4368_7778195_8013008,4368_52 -4358_80776,229,4368_14980,Adamstown Station,15214,0,4368_7778195_3421002,4368_591 -4358_80776,227,4368_14981,Adamstown Station,1471,0,4368_7778195_3421014,4368_591 -4358_80776,228,4368_14982,Adamstown Station,10930,0,4368_7778195_7421102,4368_591 -4358_80776,229,4368_14983,Adamstown Station,16975,0,4368_7778195_7421105,4368_591 -4358_80776,227,4368_14984,Adamstown Station,1379,0,4368_7778195_3421002,4368_591 -4358_80776,228,4368_14985,Adamstown Station,9015,0,4368_7778195_3421002,4368_591 -4358_80776,229,4368_14986,Adamstown Station,17065,0,4368_7778195_7421108,4368_591 -4358_80776,227,4368_14987,Adamstown Station,3947,0,4368_7778195_7421103,4368_591 -4358_80776,228,4368_14988,Adamstown Station,9025,0,4368_7778195_3421003,4368_591 -4358_80776,229,4368_14989,Adamstown Station,16933,0,4368_7778195_7421102,4368_591 -4358_80682,229,4368_1499,Grange Castle,19110,0,4368_7778195_8013019,4368_54 -4358_80776,227,4368_14990,Adamstown Station,3929,0,4368_7778195_7421105,4368_591 -4358_80776,228,4368_14991,Adamstown Station,10938,0,4368_7778195_7421110,4368_591 -4358_80776,229,4368_14992,Adamstown Station,16983,0,4368_7778195_7421104,4368_591 -4358_80776,227,4368_14993,Adamstown Station,3842,0,4368_7778195_7421109,4368_591 -4358_80776,228,4368_14994,Adamstown Station,9041,0,4368_7778195_3421004,4368_591 -4358_80776,229,4368_14995,Adamstown Station,15189,0,4368_7778195_3421003,4368_591 -4358_80776,227,4368_14996,Adamstown Station,1440,0,4368_7778195_3421006,4368_591 -4358_80776,228,4368_14997,Adamstown Station,9058,0,4368_7778195_3421001,4368_591 -4358_80776,229,4368_14998,Adamstown Station,15201,0,4368_7778195_3421004,4368_591 -4358_80776,227,4368_14999,Adamstown Station,4045,0,4368_7778195_7421118,4368_591 -4358_80760,228,4368_15,Shaw street,9480,0,4368_7778195_9001004,4368_1 -4358_80760,227,4368_150,Shaw street,1600,0,4368_7778195_9001005,4368_2 -4358_80682,227,4368_1500,Grange Castle,7015,0,4368_7778195_8013029,4368_52 -4358_80776,228,4368_15000,Adamstown Station,10952,0,4368_7778195_7421106,4368_591 -4358_80776,229,4368_15001,Adamstown Station,16977,0,4368_7778195_7421105,4368_591 -4358_80776,227,4368_15002,Adamstown Station,1473,0,4368_7778195_3421014,4368_591 -4358_80776,228,4368_15003,Adamstown Station,10932,0,4368_7778195_7421102,4368_591 -4358_80776,229,4368_15004,Adamstown Station,16781,0,4368_7778195_7421112,4368_591 -4358_80776,227,4368_15005,Adamstown Station,1381,0,4368_7778195_3421002,4368_591 -4358_80776,228,4368_15006,Adamstown Station,9017,0,4368_7778195_3421002,4368_591 -4358_80776,229,4368_15007,Adamstown Station,15266,0,4368_7778195_3421001,4368_591 -4358_80776,227,4368_15008,Adamstown Station,3949,0,4368_7778195_7421103,4368_591 -4358_80776,228,4368_15009,Adamstown Station,9027,0,4368_7778195_3421003,4368_591 -4358_80682,228,4368_1501,Grange Castle,13650,0,4368_7778195_8013012,4368_52 -4358_80776,229,4368_15010,Adamstown Station,17049,0,4368_7778195_7421107,4368_591 -4358_80776,227,4368_15011,Adamstown Station,3931,0,4368_7778195_7421105,4368_591 -4358_80776,228,4368_15012,Adamstown Station,10940,0,4368_7778195_7421110,4368_591 -4358_80776,229,4368_15013,Adamstown Station,17033,0,4368_7778195_7421110,4368_591 -4358_80776,227,4368_15014,Adamstown Station,1419,0,4368_7778195_3421005,4368_591 -4358_80776,228,4368_15015,Adamstown Station,9043,0,4368_7778195_3421004,4368_591 -4358_80776,229,4368_15016,Adamstown Station,15191,0,4368_7778195_3421003,4368_591 -4358_80776,227,4368_15017,Adamstown Station,3939,0,4368_7778195_7421111,4368_591 -4358_80776,227,4368_15018,Adamstown Station,6476,0,4368_7778195_3421604,4368_591 -4358_80776,228,4368_15019,Adamstown Station,9060,0,4368_7778195_3421001,4368_591 -4358_80682,229,4368_1502,Grange Castle,19121,0,4368_7778195_8013021,4368_54 -4358_80776,229,4368_15020,Adamstown Station,15203,0,4368_7778195_3421004,4368_591 -4358_80776,227,4368_15021,Adamstown Station,1442,0,4368_7778195_3421006,4368_591 -4358_80776,227,4368_15022,Adamstown Station,3813,0,4368_7778195_7421114,4368_591 -4358_80776,228,4368_15023,Adamstown Station,10954,0,4368_7778195_7421106,4368_591 -4358_80776,229,4368_15024,Adamstown Station,17007,0,4368_7778195_7421109,4368_591 -4358_80776,227,4368_15025,Adamstown Station,1349,0,4368_7778195_3421017,4368_593 -4358_80776,227,4368_15026,Adamstown Station,1411,0,4368_7778195_3421016,4368_591 -4358_80776,227,4368_15027,Adamstown Station,1405,0,4368_7778195_3421020,4368_593 -4358_80776,227,4368_15028,Adamstown Station,1433,0,4368_7778195_3421021,4368_593 -4358_80776,227,4368_15029,Adamstown Station,1387,0,4368_7778195_3421018,4368_591 -4358_80682,227,4368_1503,Grange Castle,6876,0,4368_7778195_8013008,4368_52 -4358_80776,228,4368_15030,Adamstown Station,10934,0,4368_7778195_7421102,4368_591 -4358_80776,229,4368_15031,Adamstown Station,17069,0,4368_7778195_7421108,4368_591 -4358_80776,227,4368_15032,Adamstown Station,3786,0,4368_7778195_7421131,4368_591 -4358_80776,227,4368_15033,Adamstown Station,3960,0,4368_7778195_7421132,4368_593 -4358_80776,227,4368_15034,Adamstown Station,1519,0,4368_7778195_3823106,4368_591 -4358_80776,228,4368_15035,Adamstown Station,9019,0,4368_7778195_3421002,4368_591 -4358_80776,227,4368_15036,Adamstown Station,3636,0,4368_7778195_7872210,4368_593 -4358_80776,229,4368_15037,Adamstown Station,16937,0,4368_7778195_7421102,4368_591 -4358_80776,227,4368_15038,Adamstown Station,3892,0,4368_7778195_7421134,4368_591 -4358_80776,227,4368_15039,Adamstown Station,1401,0,4368_7778195_3421022,4368_593 -4358_80682,229,4368_1504,Grange Castle,19081,0,4368_7778195_8013008,4368_52 -4358_80776,227,4368_15040,Adamstown Station,6708,0,4368_7778195_3823107,4368_591 -4358_80776,228,4368_15041,Adamstown Station,9029,0,4368_7778195_3421003,4368_591 -4358_80776,229,4368_15042,Adamstown Station,16987,0,4368_7778195_7421104,4368_591 -4358_80776,227,4368_15043,Adamstown Station,1395,0,4368_7778195_3421023,4368_591 -4358_80776,227,4368_15044,Adamstown Station,3678,0,4368_7778195_7421136,4368_593 -4358_80776,227,4368_15045,Adamstown Station,3922,0,4368_7778195_7421104,4368_591 -4358_80776,228,4368_15046,Adamstown Station,10942,0,4368_7778195_7421110,4368_591 -4358_80776,227,4368_15047,Adamstown Station,6478,0,4368_7778195_3421608,4368_591 -4358_80776,229,4368_15048,Adamstown Station,16994,0,4368_7778195_7421111,4368_591 -4358_80776,227,4368_15049,Adamstown Station,3723,0,4368_7778195_7421137,4368_591 -4358_80682,228,4368_1505,Grange Castle,13595,0,4368_7778195_8013003,4368_54 -4358_80776,227,4368_15050,Adamstown Station,1347,0,4368_7778195_3421024,4368_591 -4358_80776,228,4368_15051,Adamstown Station,9045,0,4368_7778195_3421004,4368_591 -4358_80776,229,4368_15052,Adamstown Station,18641,0,4368_7778195_7421106,4368_591 -4358_80776,227,4368_15053,Adamstown Station,3661,0,4368_7778195_7421130,4368_591 -4358_80776,227,4368_15054,Adamstown Station,3846,0,4368_7778195_7421109,4368_591 -4358_80776,228,4368_15055,Adamstown Station,9062,0,4368_7778195_3421001,4368_591 -4358_80776,229,4368_15056,Adamstown Station,15246,0,4368_7778195_3421005,4368_591 -4358_80776,227,4368_15057,Adamstown Station,1407,0,4368_7778195_3421020,4368_591 -4358_80776,228,4368_15058,Adamstown Station,10956,0,4368_7778195_7421106,4368_591 -4358_80776,229,4368_15059,Adamstown Station,16785,0,4368_7778195_7421112,4368_591 -4358_80682,227,4368_1506,Grange Castle,6887,0,4368_7778195_8013010,4368_52 -4358_80776,228,4368_15060,Adamstown Station,10936,0,4368_7778195_7421102,4368_591 -4358_80776,227,4368_15061,Adamstown Station,4049,0,4368_7778195_7421118,4368_591 -4358_80776,229,4368_15062,Adamstown Station,15216,0,4368_7778195_3421007,4368_592 -4358_80776,228,4368_15063,Adamstown Station,9031,0,4368_7778195_3421003,4368_591 -4358_80776,227,4368_15064,Adamstown Station,1385,0,4368_7778195_3421002,4368_591 -4358_80776,229,4368_15065,Adamstown Station,15254,0,4368_7778195_3421006,4368_591 -4358_80776,228,4368_15066,Adamstown Station,10925,0,4368_7778195_7421107,4368_591 -4358_80776,227,4368_15067,Adamstown Station,1462,0,4368_7778195_3421025,4368_591 -4358_80776,229,4368_15068,Adamstown Station,17037,0,4368_7778195_7421110,4368_591 -4358_80776,228,4368_15069,Adamstown Station,9047,0,4368_7778195_3421004,4368_591 -4358_80682,229,4368_1507,Grange Castle,19127,0,4368_7778195_8013022,4368_52 -4358_80776,227,4368_15070,Adamstown Station,1476,0,4368_7778195_3421027,4368_591 -4358_80776,229,4368_15071,Adamstown Station,18643,0,4368_7778195_7421106,4368_591 -4358_80776,228,4368_15072,Adamstown Station,9064,0,4368_7778195_3421001,4368_591 -4358_80776,229,4368_15073,Adamstown Station,15248,0,4368_7778195_3421005,4368_591 -4358_80776,227,4368_15074,Adamstown Station,1445,0,4368_7778195_3421028,4368_591 -4358_80776,228,4368_15075,Adamstown Station,9068,0,4368_7778195_3421005,4368_591 -4358_80776,227,4368_15076,Adamstown Station,1409,0,4368_7778195_3421020,4368_591 -4358_80776,229,4368_15077,Adamstown Station,15218,0,4368_7778195_3421007,4368_591 -4358_80776,227,4368_15078,Adamstown Station,1464,0,4368_7778195_3421025,4368_591 -4358_80776,229,4368_15079,Adamstown Station,15197,0,4368_7778195_3421003,4368_591 -4358_80682,227,4368_1508,Grange Castle,6815,0,4368_7778195_8013003,4368_54 -4358_80776,228,4368_15080,Adamstown Station,8944,0,4368_7778195_3421006,4368_592 -4358_80776,227,4368_15081,Adamstown Station,1447,0,4368_7778195_3421028,4368_591 -4358_80776,229,4368_15082,Adamstown Station,15250,0,4368_7778195_3421005,4368_591 -4358_80776,228,4368_15083,Adamstown Station,8998,0,4368_7778195_3421007,4368_592 -4358_80776,227,4368_15084,Adamstown Station,1459,0,4368_7778195_3421029,4368_591 -4358_80776,228,4368_15085,Adamstown Station,9035,0,4368_7778195_3421003,4368_591 -4358_80776,229,4368_15086,Adamstown Station,15258,0,4368_7778195_3421006,4368_592 -4358_80776,227,4368_15087,Adamstown Station,1480,0,4368_7778195_3421027,4368_591 -4358_80776,228,4368_15088,Adamstown Station,9051,0,4368_7778195_3421004,4368_591 -4358_80776,229,4368_15089,Adamstown Station,15211,0,4368_7778195_3421004,4368_592 -4358_80682,228,4368_1509,Grange Castle,13608,0,4368_7778195_8013005,4368_55 -4358_80776,227,4368_15090,Adamstown Station,1456,0,4368_7778195_3421030,4368_591 -4358_80776,229,4368_15091,Adamstown Station,15222,0,4368_7778195_3421007,4368_591 -4358_80776,228,4368_15092,Adamstown Station,9072,0,4368_7778195_3421005,4368_592 -4358_80776,227,4368_15093,Sandymount,1376,1,4368_7778195_3421002,4368_594 -4358_80776,228,4368_15094,Sandymount,11062,1,4368_7778195_7421101,4368_594 -4358_80776,229,4368_15095,Sandymount,17038,1,4368_7778195_7421103,4368_595 -4358_80776,227,4368_15096,Sandymount,3944,1,4368_7778195_7421103,4368_594 -4358_80776,227,4368_15097,Sandymount,3924,1,4368_7778195_7421101,4368_594 -4358_80776,228,4368_15098,Sandymount,9012,1,4368_7778195_3421002,4368_594 -4358_80776,227,4368_15099,Sandymount,3683,1,4368_7778195_7421106,4368_594 -4358_80760,228,4368_151,Shaw street,9458,0,4368_7778195_9001003,4368_1 -4358_80682,227,4368_1510,Grange Castle,6991,0,4368_7778195_8013023,4368_52 -4358_80776,227,4368_15100,Sandymount,1435,1,4368_7778195_3421003,4368_594 -4358_80776,229,4368_15101,Sandymount,16930,1,4368_7778195_7421102,4368_594 -4358_80776,228,4368_15102,Sandymount,9022,1,4368_7778195_3421003,4368_594 -4358_80776,227,4368_15103,Sandymount,3839,1,4368_7778195_7421109,4368_594 -4358_80776,227,4368_15104,Sandymount,1437,1,4368_7778195_3421006,4368_594 -4358_80776,227,4368_15105,Sandymount,1394,1,4368_7778195_3421008,4368_594 -4358_80776,227,4368_15106,Sandymount,3808,1,4368_7778195_7421114,4368_594 -4358_80776,228,4368_15107,Sandymount,9038,1,4368_7778195_3421004,4368_594 -4358_80776,227,4368_15108,Sandymount,1451,1,4368_7778195_3421009,4368_594 -4358_80776,227,4368_15109,Sandymount,1413,1,4368_7778195_3421004,4368_594 -4358_80682,229,4368_1511,Grange Castle,19089,0,4368_7778195_8013011,4368_52 -4358_80776,227,4368_15110,Sandymount,6475,1,4368_7778195_3421504,4368_594 -4358_80776,227,4368_15111,Sandymount,1399,1,4368_7778195_3421001,4368_594 -4358_80776,227,4368_15112,Sandymount,1450,1,4368_7778195_3421011,4368_594 -4358_80776,229,4368_15113,Sandymount,17017,1,4368_7778195_7421101,4368_594 -4358_80776,228,4368_15114,Sandymount,9055,1,4368_7778195_3421001,4368_594 -4358_80776,227,4368_15115,Sandymount,1452,1,4368_7778195_3421012,4368_594 -4358_80776,227,4368_15116,Sandymount,7937,1,4368_7778195_7421519,4368_594 -4358_80776,227,4368_15117,Sandymount,3684,1,4368_7778195_7421120,4368_594 -4358_80776,227,4368_15118,Sandymount,1404,1,4368_7778195_3421013,4368_594 -4358_80776,227,4368_15119,Sandymount,1470,1,4368_7778195_3421014,4368_594 -4358_80682,228,4368_1512,Grange Castle,13661,0,4368_7778195_8013015,4368_54 -4358_80776,228,4368_15120,Sandymount,10949,1,4368_7778195_7421106,4368_594 -4358_80776,229,4368_15121,Sandymount,15213,1,4368_7778195_3421002,4368_595 -4358_80776,227,4368_15122,Sandymount,1461,1,4368_7778195_3421015,4368_594 -4358_80776,227,4368_15123,Sandymount,3953,1,4368_7778195_7421110,4368_594 -4358_80776,227,4368_15124,Sandymount,1469,1,4368_7778195_3421010,4368_594 -4358_80776,228,4368_15125,Sandymount,10980,1,4368_7778195_7421108,4368_594 -4358_80776,229,4368_15126,Sandymount,16974,1,4368_7778195_7421105,4368_595 -4358_80776,227,4368_15127,Sandymount,1378,1,4368_7778195_3421002,4368_594 -4358_80776,227,4368_15128,Sandymount,3946,1,4368_7778195_7421103,4368_594 -4358_80776,228,4368_15129,Sandymount,10973,1,4368_7778195_7421104,4368_594 -4358_80682,227,4368_1513,Grange Castle,6896,0,4368_7778195_8013012,4368_52 -4358_80776,229,4368_15130,Sandymount,15263,1,4368_7778195_3421001,4368_594 -4358_80776,227,4368_15131,Sandymount,3706,1,4368_7778195_7421107,4368_594 -4358_80776,228,4368_15132,Sandymount,10918,1,4368_7778195_7421107,4368_594 -4358_80776,229,4368_15133,Sandymount,17046,1,4368_7778195_7421107,4368_594 -4358_80776,227,4368_15134,Sandymount,1416,1,4368_7778195_3421005,4368_594 -4358_80776,228,4368_15135,Sandymount,9040,1,4368_7778195_3421004,4368_594 -4358_80776,229,4368_15136,Sandymount,17019,1,4368_7778195_7421101,4368_594 -4358_80776,227,4368_15137,Sandymount,3936,1,4368_7778195_7421111,4368_594 -4358_80776,228,4368_15138,Sandymount,9057,1,4368_7778195_3421001,4368_594 -4358_80776,229,4368_15139,Sandymount,18636,1,4368_7778195_7421106,4368_594 -4358_80682,228,4368_1514,Grange Castle,13621,0,4368_7778195_8013007,4368_52 -4358_80776,227,4368_15140,Sandymount,3810,1,4368_7778195_7421114,4368_594 -4358_80776,228,4368_15141,Sandymount,10951,1,4368_7778195_7421106,4368_594 -4358_80776,229,4368_15142,Sandymount,17042,1,4368_7778195_7421103,4368_594 -4358_80776,227,4368_15143,Sandymount,3741,1,4368_7778195_7421108,4368_594 -4358_80776,228,4368_15144,Sandymount,10931,1,4368_7778195_7421102,4368_594 -4358_80776,229,4368_15145,Sandymount,17004,1,4368_7778195_7421109,4368_594 -4358_80776,227,4368_15146,Sandymount,3967,1,4368_7778195_7421122,4368_594 -4358_80776,228,4368_15147,Sandymount,9016,1,4368_7778195_3421002,4368_594 -4358_80776,229,4368_15148,Sandymount,15265,1,4368_7778195_3421001,4368_594 -4358_80776,227,4368_15149,Sandymount,3782,1,4368_7778195_7421102,4368_594 -4358_80682,229,4368_1515,Grange Castle,19091,0,4368_7778195_8013012,4368_54 -4358_80776,228,4368_15150,Sandymount,9026,1,4368_7778195_3421003,4368_594 -4358_80776,229,4368_15151,Sandymount,17048,1,4368_7778195_7421107,4368_594 -4358_80776,227,4368_15152,Sandymount,3919,1,4368_7778195_7421104,4368_594 -4358_80776,228,4368_15153,Sandymount,10939,1,4368_7778195_7421110,4368_594 -4358_80776,229,4368_15154,Sandymount,17032,1,4368_7778195_7421110,4368_594 -4358_80776,227,4368_15155,Sandymount,3956,1,4368_7778195_7421125,4368_594 -4358_80776,228,4368_15156,Sandymount,9042,1,4368_7778195_3421004,4368_594 -4358_80776,229,4368_15157,Sandymount,15190,1,4368_7778195_3421003,4368_594 -4358_80776,227,4368_15158,Sandymount,3843,1,4368_7778195_7421109,4368_594 -4358_80776,228,4368_15159,Sandymount,9059,1,4368_7778195_3421001,4368_594 -4358_80682,227,4368_1516,Grange Castle,6900,0,4368_7778195_8013014,4368_52 -4358_80776,229,4368_15160,Sandymount,15202,1,4368_7778195_3421004,4368_594 -4358_80776,227,4368_15161,Sandymount,1441,1,4368_7778195_3421006,4368_594 -4358_80776,228,4368_15162,Sandymount,10953,1,4368_7778195_7421106,4368_594 -4358_80776,229,4368_15163,Sandymount,16978,1,4368_7778195_7421105,4368_594 -4358_80776,227,4368_15164,Sandymount,4046,1,4368_7778195_7421118,4368_594 -4358_80776,229,4368_15165,Sandymount,16782,1,4368_7778195_7421112,4368_594 -4358_80776,228,4368_15166,Sandymount,10933,1,4368_7778195_7421102,4368_594 -4358_80776,227,4368_15167,Sandymount,1474,1,4368_7778195_3421014,4368_594 -4358_80776,227,4368_15168,Sandymount,1382,1,4368_7778195_3421002,4368_594 -4358_80776,229,4368_15169,Sandymount,15267,1,4368_7778195_3421001,4368_594 -4358_80682,229,4368_1517,Grange Castle,19101,0,4368_7778195_8013015,4368_52 -4358_80776,228,4368_15170,Sandymount,9018,1,4368_7778195_3421002,4368_594 -4358_80776,227,4368_15171,Sandymount,3784,1,4368_7778195_7421102,4368_594 -4358_80776,228,4368_15172,Sandymount,9028,1,4368_7778195_3421003,4368_594 -4358_80776,229,4368_15173,Sandymount,17050,1,4368_7778195_7421107,4368_594 -4358_80776,227,4368_15174,Sandymount,3681,1,4368_7778195_7421127,4368_594 -4358_80776,227,4368_15175,Sandymount,3954,1,4368_7778195_7421128,4368_594 -4358_80776,228,4368_15176,Sandymount,10941,1,4368_7778195_7421110,4368_594 -4358_80776,229,4368_15177,Sandymount,17034,1,4368_7778195_7421110,4368_594 -4358_80776,227,4368_15178,Sandymount,3958,1,4368_7778195_7421125,4368_594 -4358_80776,228,4368_15179,Sandymount,9044,1,4368_7778195_3421004,4368_594 -4358_80682,228,4368_1518,Grange Castle,13657,0,4368_7778195_8013014,4368_54 -4358_80776,229,4368_15180,Sandymount,15192,1,4368_7778195_3421003,4368_595 -4358_80776,227,4368_15181,Sandymount,1420,1,4368_7778195_3421005,4368_594 -4358_80776,229,4368_15182,Sandymount,15204,1,4368_7778195_3421004,4368_594 -4358_80776,228,4368_15183,Sandymount,9061,1,4368_7778195_3421001,4368_595 -4358_80776,227,4368_15184,Sandymount,3940,1,4368_7778195_7421111,4368_594 -4358_80776,228,4368_15185,Sandymount,10955,1,4368_7778195_7421106,4368_594 -4358_80776,229,4368_15186,Sandymount,17008,1,4368_7778195_7421109,4368_594 -4358_80776,227,4368_15187,Sandymount,3814,1,4368_7778195_7421114,4368_594 -4358_80776,228,4368_15188,Sandymount,10935,1,4368_7778195_7421102,4368_594 -4358_80776,229,4368_15189,Sandymount,17070,1,4368_7778195_7421108,4368_594 -4358_80682,227,4368_1519,Grange Castle,7030,0,4368_7778195_8013034,4368_52 -4358_80776,227,4368_15190,Sandymount,1520,1,4368_7778195_3823106,4368_594 -4358_80776,229,4368_15191,Sandymount,16938,1,4368_7778195_7421102,4368_594 -4358_80776,228,4368_15192,Sandymount,9020,1,4368_7778195_3421002,4368_594 -4358_80776,227,4368_15193,Sandymount,1384,1,4368_7778195_3421002,4368_594 -4358_80776,229,4368_15194,Sandymount,16988,1,4368_7778195_7421104,4368_594 -4358_80776,228,4368_15195,Sandymount,9030,1,4368_7778195_3421003,4368_594 -4358_80776,227,4368_15196,Sandymount,1396,1,4368_7778195_3421023,4368_594 -4358_80776,229,4368_15197,Sandymount,16995,1,4368_7778195_7421111,4368_594 -4358_80776,228,4368_15198,Sandymount,10943,1,4368_7778195_7421110,4368_594 -4358_80776,227,4368_15199,Sandymount,3724,1,4368_7778195_7421137,4368_594 -4358_80760,229,4368_152,Shaw street,15699,0,4368_7778195_9001001,4368_1 -4358_80682,227,4368_1520,Grange Castle,6831,0,4368_7778195_8013006,4368_52 -4358_80776,229,4368_15200,Sandymount,18642,1,4368_7778195_7421106,4368_594 -4358_80776,228,4368_15201,Sandymount,9046,1,4368_7778195_3421004,4368_594 -4358_80776,227,4368_15202,Sandymount,3662,1,4368_7778195_7421130,4368_594 -4358_80776,229,4368_15203,Sandymount,15247,1,4368_7778195_3421005,4368_594 -4358_80776,228,4368_15204,Sandymount,9063,1,4368_7778195_3421001,4368_595 -4358_80776,227,4368_15205,Sandymount,3847,1,4368_7778195_7421109,4368_594 -4358_80776,229,4368_15206,Sandymount,16786,1,4368_7778195_7421112,4368_594 -4358_80776,228,4368_15207,Sandymount,9067,1,4368_7778195_3421005,4368_594 -4358_80776,227,4368_15208,Sandymount,1408,1,4368_7778195_3421020,4368_594 -4358_80776,228,4368_15209,Sandymount,10988,1,4368_7778195_7421108,4368_594 -4358_80682,229,4368_1521,Grange Castle,19103,0,4368_7778195_8013016,4368_54 -4358_80776,229,4368_15210,Sandymount,16940,1,4368_7778195_7421102,4368_595 -4358_80776,227,4368_15211,Sandymount,1386,1,4368_7778195_3421002,4368_594 -4358_80776,229,4368_15212,Sandymount,16990,1,4368_7778195_7421104,4368_594 -4358_80776,228,4368_15213,Sandymount,8943,1,4368_7778195_3421006,4368_595 -4358_80776,227,4368_15214,Sandymount,1477,1,4368_7778195_3421027,4368_594 -4358_80776,228,4368_15215,Sandymount,9048,1,4368_7778195_3421004,4368_595 -4358_80776,229,4368_15216,Sandymount,15208,1,4368_7778195_3421004,4368_596 -4358_80776,229,4368_15217,Sandymount,15219,1,4368_7778195_3421007,4368_594 -4358_80776,228,4368_15218,Sandymount,9069,1,4368_7778195_3421005,4368_595 -4358_80776,227,4368_15219,Sandymount,1453,1,4368_7778195_3421030,4368_596 -4358_80682,228,4368_1522,Grange Castle,13636,0,4368_7778195_8013009,4368_55 -4358_80776,227,4368_15220,Sandymount,1465,1,4368_7778195_3421025,4368_594 -4358_80776,229,4368_15221,Sandymount,15198,1,4368_7778195_3421003,4368_594 -4358_80776,228,4368_15222,Sandymount,8945,1,4368_7778195_3421006,4368_595 -4358_80776,227,4368_15223,Sandymount,1448,1,4368_7778195_3421028,4368_594 -4358_80776,229,4368_15224,Sandymount,15251,1,4368_7778195_3421005,4368_594 -4358_80776,228,4368_15225,Sandymount,8999,1,4368_7778195_3421007,4368_595 -4358_80776,227,4368_15226,Sandymount,1460,1,4368_7778195_3421029,4368_594 -4358_80776,228,4368_15227,Sandymount,9036,1,4368_7778195_3421003,4368_594 -4358_80776,229,4368_15228,Sandymount,15259,1,4368_7778195_3421006,4368_595 -4358_80776,227,4368_15229,Sandymount,1481,1,4368_7778195_3421027,4368_594 -4358_80682,227,4368_1523,Grange Castle,7033,0,4368_7778195_8013035,4368_53 -4358_80776,228,4368_15230,Sandymount,9052,1,4368_7778195_3421004,4368_594 -4358_80776,229,4368_15231,Sandymount,15212,1,4368_7778195_3421004,4368_595 -4358_80777,228,4368_15232,Maynooth,9075,0,4368_7778195_3423005,4368_597 -4358_80777,227,4368_15233,Maynooth,1004,0,4368_7778195_3423008,4368_597 -4358_80777,229,4368_15234,Maynooth,15339,0,4368_7778195_3423005,4368_597 -4358_80777,227,4368_15235,Maynooth,1052,0,4368_7778195_3423011,4368_597 -4358_80777,228,4368_15236,Maynooth,9224,0,4368_7778195_3423009,4368_597 -4358_80777,227,4368_15237,Maynooth,1079,0,4368_7778195_3423013,4368_597 -4358_80777,227,4368_15238,Maynooth,1085,0,4368_7778195_3423016,4368_597 -4358_80777,228,4368_15239,Maynooth,9118,0,4368_7778195_3423012,4368_597 -4358_80682,228,4368_1524,Grange Castle,13641,0,4368_7778195_8013010,4368_52 -4358_80777,229,4368_15240,Maynooth,15303,0,4368_7778195_3423001,4368_597 -4358_80777,227,4368_15241,Maynooth,926,0,4368_7778195_3423002,4368_597 -4358_80777,228,4368_15242,Maynooth,9192,0,4368_7778195_3423003,4368_597 -4358_80777,227,4368_15243,Maynooth,917,0,4368_7778195_3423018,4368_597 -4358_80777,227,4368_15244,Maynooth,939,0,4368_7778195_3423007,4368_597 -4358_80777,228,4368_15245,Maynooth,9095,0,4368_7778195_3423008,4368_597 -4358_80777,229,4368_15246,Maynooth,15377,0,4368_7778195_3423004,4368_597 -4358_80777,227,4368_15247,Maynooth,1033,0,4368_7778195_3423020,4368_597 -4358_80777,228,4368_15248,Maynooth,9077,0,4368_7778195_3423005,4368_597 -4358_80777,229,4368_15249,Maynooth,15318,0,4368_7778195_3423011,4368_597 -4358_80682,229,4368_1525,Grange Castle,19105,0,4368_7778195_8013017,4368_54 -4358_80777,227,4368_15250,Maynooth,1006,0,4368_7778195_3423008,4368_597 -4358_80777,228,4368_15251,Maynooth,9226,0,4368_7778195_3423009,4368_597 -4358_80777,229,4368_15252,Maynooth,15341,0,4368_7778195_3423005,4368_597 -4358_80777,227,4368_15253,Maynooth,1054,0,4368_7778195_3423011,4368_597 -4358_80777,228,4368_15254,Maynooth,9120,0,4368_7778195_3423012,4368_597 -4358_80777,229,4368_15255,Maynooth,15445,0,4368_7778195_3423006,4368_597 -4358_80777,227,4368_15256,Maynooth,1074,0,4368_7778195_3423012,4368_597 -4358_80777,228,4368_15257,Maynooth,9194,0,4368_7778195_3423003,4368_597 -4358_80777,229,4368_15258,Maynooth,15305,0,4368_7778195_3423001,4368_597 -4358_80777,227,4368_15259,Maynooth,1087,0,4368_7778195_3423016,4368_597 -4358_80682,227,4368_1526,Grange Castle,7007,0,4368_7778195_8013027,4368_52 -4358_80777,229,4368_15260,Maynooth,15397,0,4368_7778195_3423002,4368_597 -4358_80777,228,4368_15261,Maynooth,9229,0,4368_7778195_3423014,4368_597 -4358_80777,227,4368_15262,Maynooth,954,0,4368_7778195_3423004,4368_597 -4358_80777,228,4368_15263,Maynooth,9097,0,4368_7778195_3423008,4368_597 -4358_80777,229,4368_15264,Maynooth,15379,0,4368_7778195_3423004,4368_597 -4358_80777,227,4368_15265,Maynooth,1100,0,4368_7778195_3423019,4368_597 -4358_80777,228,4368_15266,Maynooth,9079,0,4368_7778195_3423005,4368_597 -4358_80777,229,4368_15267,Maynooth,15320,0,4368_7778195_3423011,4368_598 -4358_80777,227,4368_15268,Maynooth,1035,0,4368_7778195_3423020,4368_597 -4358_80777,228,4368_15269,Maynooth,9105,0,4368_7778195_3423017,4368_597 -4358_80682,228,4368_1527,Grange Castle,13668,0,4368_7778195_8013017,4368_52 -4358_80777,229,4368_15270,Maynooth,15343,0,4368_7778195_3423005,4368_598 -4358_80777,227,4368_15271,Maynooth,1008,0,4368_7778195_3423008,4368_597 -4358_80777,228,4368_15272,Maynooth,9184,0,4368_7778195_3423007,4368_597 -4358_80777,229,4368_15273,Maynooth,15447,0,4368_7778195_3423006,4368_597 -4358_80777,227,4368_15274,Maynooth,1056,0,4368_7778195_3423011,4368_597 -4358_80777,228,4368_15275,Maynooth,9267,0,4368_7778195_3423001,4368_597 -4358_80777,229,4368_15276,Maynooth,15307,0,4368_7778195_3423001,4368_597 -4358_80777,227,4368_15277,Maynooth,1076,0,4368_7778195_3423012,4368_597 -4358_80777,228,4368_15278,Maynooth,9174,0,4368_7778195_3423002,4368_597 -4358_80777,229,4368_15279,Maynooth,15399,0,4368_7778195_3423002,4368_597 -4358_80682,229,4368_1528,Grange Castle,19085,0,4368_7778195_8013010,4368_54 -4358_80777,227,4368_15280,Maynooth,1089,0,4368_7778195_3423016,4368_597 -4358_80777,228,4368_15281,Maynooth,9218,0,4368_7778195_3423006,4368_597 -4358_80777,229,4368_15282,Maynooth,15467,0,4368_7778195_3423013,4368_597 -4358_80777,227,4368_15283,Maynooth,956,0,4368_7778195_3423004,4368_597 -4358_80777,228,4368_15284,Maynooth,9207,0,4368_7778195_3423004,4368_597 -4358_80777,229,4368_15285,Maynooth,15436,0,4368_7778195_3423003,4368_597 -4358_80777,227,4368_15286,Maynooth,1102,0,4368_7778195_3423019,4368_597 -4358_80777,228,4368_15287,Maynooth,10372,0,4368_7778195_3423020,4368_597 -4358_80777,229,4368_15288,Maynooth,15476,0,4368_7778195_3423014,4368_597 -4358_80777,227,4368_15289,Maynooth,1037,0,4368_7778195_3423020,4368_597 -4358_80682,227,4368_1529,Grange Castle,6714,0,4368_7778195_8013001,4368_52 -4358_80777,229,4368_15290,Maynooth,15424,0,4368_7778195_3423015,4368_597 -4358_80777,228,4368_15291,Maynooth,9090,0,4368_7778195_3423011,4368_598 -4358_80777,227,4368_15292,Maynooth,1000,0,4368_7778195_3423023,4368_597 -4358_80777,228,4368_15293,Maynooth,9234,0,4368_7778195_3423018,4368_597 -4358_80777,229,4368_15294,Maynooth,15389,0,4368_7778195_3423008,4368_597 -4358_80777,227,4368_15295,Maynooth,1021,0,4368_7778195_3423009,4368_597 -4358_80777,228,4368_15296,Maynooth,9124,0,4368_7778195_3423012,4368_597 -4358_80777,227,4368_15297,Maynooth,1058,0,4368_7778195_3423011,4368_597 -4358_80777,229,4368_15298,Maynooth,15357,0,4368_7778195_3423010,4368_597 -4358_80777,227,4368_15299,Maynooth,1110,0,4368_7778195_3423026,4368_597 -4358_80760,227,4368_153,Shaw street,1553,0,4368_7778195_9001010,4368_2 -4358_80682,228,4368_1530,Grange Castle,13578,0,4368_7778195_8013001,4368_52 -4358_80777,228,4368_15300,Maynooth,9251,0,4368_7778195_3423021,4368_598 -4358_80777,228,4368_15301,Maynooth,9198,0,4368_7778195_3423003,4368_597 -4358_80777,229,4368_15302,Maynooth,15469,0,4368_7778195_3423013,4368_597 -4358_80777,227,4368_15303,Maynooth,1078,0,4368_7778195_3423012,4368_597 -4358_80777,229,4368_15304,Maynooth,15438,0,4368_7778195_3423003,4368_597 -4358_80777,228,4368_15305,Maynooth,9248,0,4368_7778195_3423023,4368_597 -4358_80777,227,4368_15306,Maynooth,1106,0,4368_7778195_3423021,4368_598 -4358_80777,229,4368_15307,Maynooth,15486,0,4368_7778195_3423018,4368_597 -4358_80777,227,4368_15308,Maynooth,994,0,4368_7778195_3423005,4368_597 -4358_80777,228,4368_15309,Maynooth,9154,0,4368_7778195_3423025,4368_598 -4358_80682,229,4368_1531,Grange Castle,19117,0,4368_7778195_8013020,4368_54 -4358_80777,229,4368_15310,Maynooth,15478,0,4368_7778195_3423014,4368_597 -4358_80777,227,4368_15311,Maynooth,958,0,4368_7778195_3423004,4368_597 -4358_80777,228,4368_15312,Maynooth,9101,0,4368_7778195_3423008,4368_598 -4358_80777,229,4368_15313,Maynooth,15426,0,4368_7778195_3423015,4368_597 -4358_80777,227,4368_15314,Maynooth,1104,0,4368_7778195_3423019,4368_597 -4358_80777,228,4368_15315,Maynooth,9166,0,4368_7778195_3423027,4368_598 -4358_80777,229,4368_15316,Maynooth,15471,0,4368_7778195_3423020,4368_597 -4358_80777,228,4368_15317,Maynooth,9083,0,4368_7778195_3423005,4368_597 -4358_80777,227,4368_15318,Maynooth,975,0,4368_7778195_3423006,4368_597 -4358_80777,229,4368_15319,Maynooth,15391,0,4368_7778195_3423008,4368_597 -4358_80682,227,4368_1532,Grange Castle,7000,0,4368_7778195_8013025,4368_52 -4358_80777,228,4368_15320,Maynooth,9163,0,4368_7778195_3423026,4368_597 -4358_80777,228,4368_15321,Maynooth,9126,0,4368_7778195_3423012,4368_597 -4358_80777,227,4368_15322,Maynooth,1023,0,4368_7778195_3423009,4368_597 -4358_80777,229,4368_15323,Maynooth,15359,0,4368_7778195_3423010,4368_597 -4358_80777,228,4368_15324,Maynooth,9151,0,4368_7778195_3423029,4368_597 -4358_80777,227,4368_15325,Maynooth,1012,0,4368_7778195_3423008,4368_597 -4358_80777,229,4368_15326,Maynooth,15484,0,4368_7778195_3423017,4368_597 -4358_80777,228,4368_15327,Maynooth,9200,0,4368_7778195_3423003,4368_597 -4358_80777,227,4368_15328,Maynooth,1116,0,4368_7778195_3423029,4368_597 -4358_80777,228,4368_15329,Maynooth,9143,0,4368_7778195_3423030,4368_597 -4358_80682,228,4368_1533,Grange Castle,13588,0,4368_7778195_8013002,4368_52 -4358_80777,229,4368_15330,Maynooth,15327,0,4368_7778195_3423021,4368_597 -4358_80777,227,4368_15331,Maynooth,1131,0,4368_7778195_3423031,4368_597 -4358_80777,228,4368_15332,Maynooth,9156,0,4368_7778195_3423025,4368_597 -4358_80777,229,4368_15333,Maynooth,15480,0,4368_7778195_3423014,4368_597 -4358_80777,227,4368_15334,Maynooth,960,0,4368_7778195_3423004,4368_597 -4358_80777,228,4368_15335,Maynooth,9103,0,4368_7778195_3423008,4368_598 -4358_80777,229,4368_15336,Maynooth,15428,0,4368_7778195_3423015,4368_597 -4358_80777,228,4368_15337,Maynooth,9093,0,4368_7778195_3423033,4368_597 -4358_80777,227,4368_15338,Maynooth,1120,0,4368_7778195_3423032,4368_598 -4358_80777,229,4368_15339,Maynooth,15453,0,4368_7778195_3423006,4368_597 -4358_80682,229,4368_1534,Grange Castle,19094,0,4368_7778195_8013013,4368_54 -4358_80777,228,4368_15340,Maynooth,9257,0,4368_7778195_3423034,4368_597 -4358_80777,227,4368_15341,Maynooth,962,0,4368_7778195_3423034,4368_598 -4358_80777,229,4368_15342,Maynooth,15361,0,4368_7778195_3423025,4368_597 -4358_80777,228,4368_15343,Maynooth,9107,0,4368_7778195_3423037,4368_597 -4358_80777,229,4368_15344,Maynooth,15489,0,4368_7778195_3423027,4368_597 -4358_80777,227,4368_15345,Maynooth,1014,0,4368_7778195_3423008,4368_597 -4358_80777,228,4368_15346,Maynooth,9136,0,4368_7778195_3423038,4368_597 -4358_80777,227,4368_15347,Maynooth,1133,0,4368_7778195_3423031,4368_598 -4358_80777,229,4368_15348,Maynooth,15351,0,4368_7778195_3423005,4368_597 -4358_80777,227,4368_15349,Ringsend Road,925,1,4368_7778195_3423002,4368_599 -4358_80682,227,4368_1535,Grange Castle,7010,0,4368_7778195_8013028,4368_55 -4358_80777,228,4368_15350,Ringsend Road,9169,1,4368_7778195_3423002,4368_599 -4358_80777,229,4368_15351,Ringsend Road,15394,1,4368_7778195_3423002,4368_599 -4358_80777,227,4368_15352,Ringsend Road,938,1,4368_7778195_3423007,4368_599 -4358_80777,228,4368_15353,Ringsend Road,9213,1,4368_7778195_3423006,4368_599 -4358_80777,228,4368_15354,Ringsend Road,9076,1,4368_7778195_3423005,4368_599 -4358_80777,229,4368_15355,Ringsend Road,15431,1,4368_7778195_3423003,4368_599 -4358_80777,227,4368_15356,Ringsend Road,1005,1,4368_7778195_3423008,4368_599 -4358_80777,228,4368_15357,Ringsend Road,9225,1,4368_7778195_3423009,4368_599 -4358_80777,227,4368_15358,Ringsend Road,1053,1,4368_7778195_3423011,4368_599 -4358_80777,227,4368_15359,Ringsend Road,1026,1,4368_7778195_3423014,4368_599 -4358_80682,227,4368_1536,Grange Castle,7005,0,4368_7778195_8013026,4368_53 -4358_80777,227,4368_15360,Ringsend Road,1080,1,4368_7778195_3423013,4368_599 -4358_80777,228,4368_15361,Ringsend Road,9119,1,4368_7778195_3423012,4368_599 -4358_80777,229,4368_15362,Ringsend Road,15444,1,4368_7778195_3423006,4368_599 -4358_80777,227,4368_15363,Ringsend Road,1086,1,4368_7778195_3423016,4368_599 -4358_80777,228,4368_15364,Ringsend Road,9193,1,4368_7778195_3423003,4368_599 -4358_80777,229,4368_15365,Ringsend Road,15304,1,4368_7778195_3423001,4368_599 -4358_80777,227,4368_15366,Ringsend Road,927,1,4368_7778195_3423002,4368_599 -4358_80777,227,4368_15367,Ringsend Road,918,1,4368_7778195_3423018,4368_599 -4358_80777,228,4368_15368,Ringsend Road,9228,1,4368_7778195_3423014,4368_599 -4358_80777,229,4368_15369,Ringsend Road,15352,1,4368_7778195_3423010,4368_599 -4358_80682,229,4368_1537,Grange Castle,19099,0,4368_7778195_8013014,4368_52 -4358_80777,227,4368_15370,Ringsend Road,940,1,4368_7778195_3423007,4368_599 -4358_80777,228,4368_15371,Ringsend Road,9096,1,4368_7778195_3423008,4368_600 -4358_80777,229,4368_15372,Ringsend Road,15378,1,4368_7778195_3423004,4368_599 -4358_80777,228,4368_15373,Ringsend Road,9078,1,4368_7778195_3423005,4368_599 -4358_80777,229,4368_15374,Ringsend Road,15319,1,4368_7778195_3423011,4368_599 -4358_80777,227,4368_15375,Ringsend Road,1034,1,4368_7778195_3423020,4368_600 -4358_80777,228,4368_15376,Ringsend Road,9227,1,4368_7778195_3423009,4368_599 -4358_80777,229,4368_15377,Ringsend Road,15342,1,4368_7778195_3423005,4368_599 -4358_80777,227,4368_15378,Ringsend Road,1007,1,4368_7778195_3423008,4368_599 -4358_80777,228,4368_15379,Ringsend Road,9121,1,4368_7778195_3423012,4368_599 -4358_80682,228,4368_1538,Grange Castle,13664,0,4368_7778195_8013016,4368_54 -4358_80777,229,4368_15380,Ringsend Road,15446,1,4368_7778195_3423006,4368_599 -4358_80777,227,4368_15381,Ringsend Road,1055,1,4368_7778195_3423011,4368_599 -4358_80777,228,4368_15382,Ringsend Road,9195,1,4368_7778195_3423003,4368_599 -4358_80777,229,4368_15383,Ringsend Road,15306,1,4368_7778195_3423001,4368_599 -4358_80777,227,4368_15384,Ringsend Road,1075,1,4368_7778195_3423012,4368_599 -4358_80777,228,4368_15385,Ringsend Road,9230,1,4368_7778195_3423014,4368_599 -4358_80777,229,4368_15386,Ringsend Road,15398,1,4368_7778195_3423002,4368_599 -4358_80777,227,4368_15387,Ringsend Road,1088,1,4368_7778195_3423016,4368_599 -4358_80777,228,4368_15388,Ringsend Road,9132,1,4368_7778195_3423016,4368_599 -4358_80777,229,4368_15389,Ringsend Road,15380,1,4368_7778195_3423004,4368_599 -4358_80682,227,4368_1539,Grange Castle,7019,0,4368_7778195_8013030,4368_52 -4358_80777,227,4368_15390,Ringsend Road,955,1,4368_7778195_3423004,4368_599 -4358_80777,228,4368_15391,Ringsend Road,9098,1,4368_7778195_3423008,4368_599 -4358_80777,229,4368_15392,Ringsend Road,15321,1,4368_7778195_3423011,4368_599 -4358_80777,227,4368_15393,Ringsend Road,1101,1,4368_7778195_3423019,4368_599 -4358_80777,228,4368_15394,Ringsend Road,9080,1,4368_7778195_3423005,4368_599 -4358_80777,229,4368_15395,Ringsend Road,15344,1,4368_7778195_3423005,4368_599 -4358_80777,227,4368_15396,Ringsend Road,1036,1,4368_7778195_3423020,4368_599 -4358_80777,229,4368_15397,Ringsend Road,15448,1,4368_7778195_3423006,4368_599 -4358_80777,227,4368_15398,Ringsend Road,1009,1,4368_7778195_3423008,4368_599 -4358_80777,228,4368_15399,Ringsend Road,9106,1,4368_7778195_3423017,4368_599 -4358_80760,228,4368_154,Shaw street,9496,0,4368_7778195_9001004,4368_1 -4358_80682,228,4368_1540,Grange Castle,13670,0,4368_7778195_8013018,4368_52 -4358_80777,228,4368_15400,Ringsend Road,9185,1,4368_7778195_3423007,4368_599 -4358_80777,229,4368_15401,Ringsend Road,15308,1,4368_7778195_3423001,4368_599 -4358_80777,227,4368_15402,Ringsend Road,1057,1,4368_7778195_3423011,4368_599 -4358_80777,228,4368_15403,Ringsend Road,9268,1,4368_7778195_3423001,4368_599 -4358_80777,229,4368_15404,Ringsend Road,15400,1,4368_7778195_3423002,4368_599 -4358_80777,227,4368_15405,Ringsend Road,1077,1,4368_7778195_3423012,4368_599 -4358_80777,228,4368_15406,Ringsend Road,9128,1,4368_7778195_3423022,4368_599 -4358_80777,227,4368_15407,Ringsend Road,1105,1,4368_7778195_3423021,4368_599 -4358_80777,228,4368_15408,Ringsend Road,9175,1,4368_7778195_3423002,4368_599 -4358_80777,229,4368_15409,Ringsend Road,15468,1,4368_7778195_3423013,4368_599 -4358_80682,229,4368_1541,Grange Castle,19057,0,4368_7778195_8013001,4368_54 -4358_80777,227,4368_15410,Ringsend Road,1090,1,4368_7778195_3423016,4368_599 -4358_80777,228,4368_15411,Ringsend Road,9219,1,4368_7778195_3423006,4368_599 -4358_80777,229,4368_15412,Ringsend Road,15437,1,4368_7778195_3423003,4368_599 -4358_80777,227,4368_15413,Ringsend Road,1108,1,4368_7778195_3423022,4368_599 -4358_80777,228,4368_15414,Ringsend Road,9153,1,4368_7778195_3423025,4368_599 -4358_80777,227,4368_15415,Ringsend Road,957,1,4368_7778195_3423004,4368_599 -4358_80777,228,4368_15416,Ringsend Road,9208,1,4368_7778195_3423004,4368_599 -4358_80777,229,4368_15417,Ringsend Road,15477,1,4368_7778195_3423014,4368_599 -4358_80777,227,4368_15418,Ringsend Road,1103,1,4368_7778195_3423019,4368_599 -4358_80777,228,4368_15419,Ringsend Road,10373,1,4368_7778195_3423020,4368_599 -4358_80682,227,4368_1542,Grange Castle,7021,0,4368_7778195_8013031,4368_52 -4358_80777,229,4368_15420,Ringsend Road,15425,1,4368_7778195_3423015,4368_599 -4358_80777,227,4368_15421,Ringsend Road,1038,1,4368_7778195_3423020,4368_599 -4358_80777,228,4368_15422,Ringsend Road,9091,1,4368_7778195_3423011,4368_599 -4358_80777,227,4368_15423,Ringsend Road,1001,1,4368_7778195_3423023,4368_599 -4358_80777,228,4368_15424,Ringsend Road,9235,1,4368_7778195_3423018,4368_599 -4358_80777,229,4368_15425,Ringsend Road,15390,1,4368_7778195_3423008,4368_599 -4358_80777,227,4368_15426,Ringsend Road,6105,1,4368_7778195_7872231,4368_599 -4358_80777,227,4368_15427,Ringsend Road,1022,1,4368_7778195_3423009,4368_599 -4358_80777,228,4368_15428,Ringsend Road,9125,1,4368_7778195_3423012,4368_599 -4358_80777,229,4368_15429,Ringsend Road,15358,1,4368_7778195_3423010,4368_599 -4358_80682,229,4368_1543,Grange Castle,19109,0,4368_7778195_8013018,4368_52 -4358_80777,227,4368_15430,Ringsend Road,1115,1,4368_7778195_3423028,4368_599 -4358_80777,227,4368_15431,Ringsend Road,1059,1,4368_7778195_3423011,4368_599 -4358_80777,228,4368_15432,Ringsend Road,9199,1,4368_7778195_3423003,4368_599 -4358_80777,229,4368_15433,Ringsend Road,15470,1,4368_7778195_3423013,4368_599 -4358_80777,228,4368_15434,Ringsend Road,9249,1,4368_7778195_3423023,4368_599 -4358_80777,227,4368_15435,Ringsend Road,1111,1,4368_7778195_3423026,4368_599 -4358_80777,229,4368_15436,Ringsend Road,15439,1,4368_7778195_3423003,4368_600 -4358_80777,229,4368_15437,Ringsend Road,15479,1,4368_7778195_3423014,4368_599 -4358_80777,228,4368_15438,Ringsend Road,9155,1,4368_7778195_3423025,4368_599 -4358_80777,227,4368_15439,Ringsend Road,1107,1,4368_7778195_3423021,4368_599 -4358_80682,228,4368_1544,Grange Castle,13603,0,4368_7778195_8013004,4368_54 -4358_80777,229,4368_15440,Ringsend Road,15427,1,4368_7778195_3423015,4368_599 -4358_80777,228,4368_15441,Ringsend Road,9102,1,4368_7778195_3423008,4368_599 -4358_80777,227,4368_15442,Ringsend Road,959,1,4368_7778195_3423004,4368_599 -4358_80777,229,4368_15443,Ringsend Road,15392,1,4368_7778195_3423008,4368_599 -4358_80777,228,4368_15444,Ringsend Road,9084,1,4368_7778195_3423005,4368_599 -4358_80777,227,4368_15445,Ringsend Road,976,1,4368_7778195_3423006,4368_599 -4358_80777,229,4368_15446,Ringsend Road,15360,1,4368_7778195_3423010,4368_599 -4358_80777,228,4368_15447,Ringsend Road,9127,1,4368_7778195_3423012,4368_599 -4358_80777,227,4368_15448,Ringsend Road,1024,1,4368_7778195_3423009,4368_599 -4358_80777,228,4368_15449,Ringsend Road,9152,1,4368_7778195_3423029,4368_599 -4358_80682,227,4368_1545,Grange Castle,7026,0,4368_7778195_8013032,4368_52 -4358_80777,229,4368_15450,Ringsend Road,15485,1,4368_7778195_3423017,4368_599 -4358_80777,227,4368_15451,Ringsend Road,1013,1,4368_7778195_3423008,4368_599 -4358_80777,228,4368_15452,Ringsend Road,9144,1,4368_7778195_3423030,4368_599 -4358_80777,229,4368_15453,Ringsend Road,15328,1,4368_7778195_3423021,4368_599 -4358_80777,227,4368_15454,Ringsend Road,1117,1,4368_7778195_3423029,4368_599 -4358_80777,228,4368_15455,Ringsend Road,9157,1,4368_7778195_3423025,4368_599 -4358_80777,229,4368_15456,Ringsend Road,15481,1,4368_7778195_3423014,4368_599 -4358_80777,227,4368_15457,Ringsend Road,1132,1,4368_7778195_3423031,4368_599 -4358_80777,227,4368_15458,Ringsend Road,961,1,4368_7778195_3423004,4368_599 -4358_80777,228,4368_15459,Ringsend Road,9104,1,4368_7778195_3423008,4368_600 -4358_80682,228,4368_1546,Grange Castle,13616,0,4368_7778195_8013006,4368_52 -4358_80777,229,4368_15460,Ringsend Road,15429,1,4368_7778195_3423015,4368_599 -4358_80777,227,4368_15461,Ringsend Road,1130,1,4368_7778195_3423037,4368_599 -4358_80777,228,4368_15462,Ringsend Road,9168,1,4368_7778195_3423042,4368_599 -4358_80777,229,4368_15463,Ringsend Road,15419,1,4368_7778195_3423028,4368_599 -4358_80778,229,4368_15464,Maynooth,15430,0,4368_7778195_3423003,4368_601 -4358_80778,228,4368_15465,Maynooth,9201,0,4368_7778195_3423004,4368_601 -4358_80778,227,4368_15466,Maynooth,967,0,4368_7778195_3423006,4368_602 -4358_80778,227,4368_15467,Maynooth,1015,0,4368_7778195_3423009,4368_601 -4358_80778,228,4368_15468,Maynooth,9180,0,4368_7778195_3423007,4368_601 -4358_80778,227,4368_15469,Maynooth,1072,0,4368_7778195_3423012,4368_601 -4358_80682,229,4368_1547,Grange Castle,19067,0,4368_7778195_8013002,4368_54 -4358_80778,229,4368_15470,Maynooth,15443,0,4368_7778195_3423006,4368_601 -4358_80778,228,4368_15471,Maynooth,9263,0,4368_7778195_3423001,4368_601 -4358_80778,227,4368_15472,Maynooth,941,0,4368_7778195_3423015,4368_601 -4358_80778,227,4368_15473,Maynooth,998,0,4368_7778195_3423003,4368_601 -4358_80778,228,4368_15474,Maynooth,9170,0,4368_7778195_3423002,4368_601 -4358_80778,227,4368_15475,Maynooth,952,0,4368_7778195_3423004,4368_601 -4358_80778,229,4368_15476,Maynooth,15395,0,4368_7778195_3423002,4368_601 -4358_80778,228,4368_15477,Maynooth,9214,0,4368_7778195_3423006,4368_601 -4358_80778,227,4368_15478,Maynooth,1098,0,4368_7778195_3423019,4368_601 -4358_80778,227,4368_15479,Maynooth,969,0,4368_7778195_3423006,4368_601 -4358_80682,227,4368_1548,Grange Castle,7028,0,4368_7778195_8013033,4368_55 -4358_80778,228,4368_15480,Maynooth,9203,0,4368_7778195_3423004,4368_601 -4358_80778,229,4368_15481,Maynooth,15432,0,4368_7778195_3423003,4368_601 -4358_80778,227,4368_15482,Maynooth,1041,0,4368_7778195_3423010,4368_601 -4358_80778,228,4368_15483,Maynooth,9086,0,4368_7778195_3423011,4368_601 -4358_80778,229,4368_15484,Maynooth,15472,0,4368_7778195_3423014,4368_601 -4358_80778,227,4368_15485,Maynooth,1017,0,4368_7778195_3423009,4368_601 -4358_80778,228,4368_15486,Maynooth,9182,0,4368_7778195_3423007,4368_601 -4358_80778,229,4368_15487,Maynooth,15420,0,4368_7778195_3423015,4368_601 -4358_80778,227,4368_15488,Maynooth,1027,0,4368_7778195_3423014,4368_601 -4358_80778,228,4368_15489,Maynooth,9265,0,4368_7778195_3423001,4368_601 -4358_80682,227,4368_1549,Grange Castle,7038,0,4368_7778195_8013038,4368_53 -4358_80778,229,4368_15490,Maynooth,15385,0,4368_7778195_3423008,4368_601 -4358_80778,227,4368_15491,Maynooth,943,0,4368_7778195_3423015,4368_601 -4358_80778,228,4368_15492,Maynooth,9172,0,4368_7778195_3423002,4368_601 -4358_80778,229,4368_15493,Maynooth,15353,0,4368_7778195_3423010,4368_601 -4358_80778,227,4368_15494,Maynooth,928,0,4368_7778195_3423002,4368_601 -4358_80778,228,4368_15495,Maynooth,9216,0,4368_7778195_3423006,4368_601 -4358_80778,229,4368_15496,Maynooth,15465,0,4368_7778195_3423013,4368_601 -4358_80778,227,4368_15497,Maynooth,919,0,4368_7778195_3423018,4368_601 -4358_80778,228,4368_15498,Maynooth,9205,0,4368_7778195_3423004,4368_601 -4358_80778,229,4368_15499,Maynooth,15434,0,4368_7778195_3423003,4368_601 -4358_80760,227,4368_155,Shaw street,3151,0,4368_7778195_9001004,4368_1 -4358_80682,228,4368_1550,Grange Castle,13631,0,4368_7778195_8013008,4368_52 -4358_80778,227,4368_15500,Maynooth,971,0,4368_7778195_3423006,4368_601 -4358_80778,228,4368_15501,Maynooth,9088,0,4368_7778195_3423011,4368_601 -4358_80778,229,4368_15502,Maynooth,15474,0,4368_7778195_3423014,4368_601 -4358_80778,227,4368_15503,Maynooth,1043,0,4368_7778195_3423010,4368_601 -4358_80778,228,4368_15504,Maynooth,9232,0,4368_7778195_3423018,4368_601 -4358_80778,229,4368_15505,Maynooth,15422,0,4368_7778195_3423015,4368_601 -4358_80778,227,4368_15506,Maynooth,1019,0,4368_7778195_3423009,4368_601 -4358_80778,228,4368_15507,Maynooth,9122,0,4368_7778195_3423012,4368_601 -4358_80778,229,4368_15508,Maynooth,15387,0,4368_7778195_3423008,4368_601 -4358_80778,227,4368_15509,Maynooth,1029,0,4368_7778195_3423014,4368_601 -4358_80682,229,4368_1551,Grange Castle,19112,0,4368_7778195_8013019,4368_54 -4358_80778,228,4368_15510,Maynooth,9196,0,4368_7778195_3423003,4368_601 -4358_80778,229,4368_15511,Maynooth,15355,0,4368_7778195_3423010,4368_601 -4358_80778,227,4368_15512,Maynooth,945,0,4368_7778195_3423015,4368_601 -4358_80778,228,4368_15513,Maynooth,9231,0,4368_7778195_3423014,4368_601 -4358_80778,229,4368_15514,Maynooth,15364,0,4368_7778195_3423016,4368_601 -4358_80778,227,4368_15515,Maynooth,930,0,4368_7778195_3423002,4368_601 -4358_80778,228,4368_15516,Maynooth,9133,0,4368_7778195_3423016,4368_601 -4358_80778,229,4368_15517,Maynooth,15381,0,4368_7778195_3423004,4368_601 -4358_80778,227,4368_15518,Maynooth,921,0,4368_7778195_3423018,4368_601 -4358_80778,228,4368_15519,Maynooth,9099,0,4368_7778195_3423008,4368_601 -4358_80682,227,4368_1552,Grange Castle,6997,0,4368_7778195_8013024,4368_52 -4358_80778,229,4368_15520,Maynooth,15322,0,4368_7778195_3423011,4368_601 -4358_80778,227,4368_15521,Maynooth,973,0,4368_7778195_3423006,4368_601 -4358_80778,228,4368_15522,Maynooth,9081,0,4368_7778195_3423005,4368_601 -4358_80778,229,4368_15523,Maynooth,15345,0,4368_7778195_3423005,4368_601 -4358_80778,227,4368_15524,Maynooth,1045,0,4368_7778195_3423010,4368_601 -4358_80778,228,4368_15525,Maynooth,9161,0,4368_7778195_3423026,4368_601 -4358_80778,229,4368_15526,Maynooth,15449,0,4368_7778195_3423006,4368_601 -4358_80778,227,4368_15527,Maynooth,1010,0,4368_7778195_3423008,4368_601 -4358_80778,228,4368_15528,Maynooth,9186,0,4368_7778195_3423007,4368_601 -4358_80778,227,4368_15529,Maynooth,1081,0,4368_7778195_3423025,4368_601 -4358_80682,228,4368_1553,Grange Castle,13652,0,4368_7778195_8013012,4368_52 -4358_80778,229,4368_15530,Maynooth,15309,0,4368_7778195_3423001,4368_601 -4358_80778,227,4368_15531,Maynooth,1031,0,4368_7778195_3423014,4368_601 -4358_80778,228,4368_15532,Maynooth,9269,0,4368_7778195_3423001,4368_602 -4358_80778,229,4368_15533,Maynooth,15366,0,4368_7778195_3423016,4368_601 -4358_80778,228,4368_15534,Maynooth,9129,0,4368_7778195_3423022,4368_601 -4358_80778,227,4368_15535,Maynooth,7860,0,4368_7778195_8828203,4368_602 -4358_80778,228,4368_15536,Maynooth,9176,0,4368_7778195_3423002,4368_601 -4358_80778,229,4368_15537,Maynooth,15460,0,4368_7778195_3423012,4368_601 -4358_80778,227,4368_15538,Maynooth,947,0,4368_7778195_3423015,4368_601 -4358_80778,229,4368_15539,Maynooth,15383,0,4368_7778195_3423004,4368_601 -4358_80682,229,4368_1554,Grange Castle,19123,0,4368_7778195_8013021,4368_54 -4358_80778,227,4368_15540,Maynooth,932,0,4368_7778195_3423002,4368_601 -4358_80778,228,4368_15541,Maynooth,9220,0,4368_7778195_3423006,4368_602 -4358_80778,229,4368_15542,Maynooth,15324,0,4368_7778195_3423011,4368_601 -4358_80778,228,4368_15543,Maynooth,9135,0,4368_7778195_3423016,4368_601 -4358_80778,227,4368_15544,Maynooth,1109,0,4368_7778195_3423022,4368_602 -4358_80778,229,4368_15545,Maynooth,15347,0,4368_7778195_3423005,4368_601 -4358_80778,228,4368_15546,Maynooth,9209,0,4368_7778195_3423004,4368_601 -4358_80778,227,4368_15547,Maynooth,923,0,4368_7778195_3423018,4368_602 -4358_80778,229,4368_15548,Maynooth,15375,0,4368_7778195_3423019,4368_601 -4358_80778,228,4368_15549,Maynooth,10374,0,4368_7778195_3423020,4368_601 -4358_80682,227,4368_1555,Grange Castle,6980,0,4368_7778195_8013019,4368_52 -4358_80778,227,4368_15550,Maynooth,1039,0,4368_7778195_3423020,4368_601 -4358_80778,229,4368_15551,Maynooth,15451,0,4368_7778195_3423006,4368_601 -4358_80778,228,4368_15552,Maynooth,9092,0,4368_7778195_3423011,4368_601 -4358_80778,228,4368_15553,Maynooth,9188,0,4368_7778195_3423007,4368_601 -4358_80778,229,4368_15554,Maynooth,15311,0,4368_7778195_3423001,4368_601 -4358_80778,227,4368_15555,Maynooth,1002,0,4368_7778195_3423023,4368_602 -4358_80778,228,4368_15556,Maynooth,9130,0,4368_7778195_3423028,4368_601 -4358_80778,227,4368_15557,Maynooth,936,0,4368_7778195_3423027,4368_601 -4358_80778,229,4368_15558,Maynooth,15368,0,4368_7778195_3423016,4368_602 -4358_80778,228,4368_15559,Maynooth,9271,0,4368_7778195_3423001,4368_601 -4358_80682,229,4368_1556,Grange Castle,19131,0,4368_7778195_8013023,4368_52 -4358_80778,227,4368_15560,Maynooth,1083,0,4368_7778195_3423025,4368_601 -4358_80778,228,4368_15561,Maynooth,9178,0,4368_7778195_3423002,4368_602 -4358_80778,229,4368_15562,Maynooth,15462,0,4368_7778195_3423012,4368_601 -4358_80778,227,4368_15563,Maynooth,1118,0,4368_7778195_3423030,4368_601 -4358_80778,228,4368_15564,Maynooth,9222,0,4368_7778195_3423006,4368_602 -4358_80778,229,4368_15565,Maynooth,15326,0,4368_7778195_3423011,4368_601 -4358_80778,228,4368_15566,Maynooth,9211,0,4368_7778195_3423004,4368_601 -4358_80778,227,4368_15567,Maynooth,949,0,4368_7778195_3423015,4368_602 -4358_80778,229,4368_15568,Maynooth,15349,0,4368_7778195_3423005,4368_601 -4358_80778,227,4368_15569,Maynooth,934,0,4368_7778195_3423002,4368_601 -4358_80682,228,4368_1557,Grange Castle,13597,0,4368_7778195_8013003,4368_54 -4358_80778,228,4368_15570,Maynooth,9116,0,4368_7778195_3423032,4368_601 -4358_80778,229,4368_15571,Maynooth,15393,0,4368_7778195_3423023,4368_601 -4358_80778,228,4368_15572,Maynooth,9190,0,4368_7778195_3423007,4368_601 -4358_80778,227,4368_15573,Maynooth,995,0,4368_7778195_3423033,4368_602 -4358_80778,229,4368_15574,Maynooth,15487,0,4368_7778195_3423024,4368_601 -4358_80778,228,4368_15575,Maynooth,9164,0,4368_7778195_3423036,4368_601 -4358_80778,227,4368_15576,Maynooth,1025,0,4368_7778195_3423009,4368_602 -4358_80778,229,4368_15577,Maynooth,15410,0,4368_7778195_3423026,4368_601 -4358_80778,228,4368_15578,Maynooth,9145,0,4368_7778195_3423030,4368_601 -4358_80778,227,4368_15579,Maynooth,1121,0,4368_7778195_3423035,4368_602 -4358_80682,227,4368_1558,Grange Castle,7017,0,4368_7778195_8013029,4368_52 -4358_80778,229,4368_15580,Maynooth,15314,0,4368_7778195_3423022,4368_601 -4358_80778,227,4368_15581,Ringsend Road,977,1,4368_7778195_3423001,4368_603 -4358_80778,229,4368_15582,Ringsend Road,15302,1,4368_7778195_3423001,4368_603 -4358_80778,228,4368_15583,Ringsend Road,9262,1,4368_7778195_3423001,4368_603 -4358_80778,227,4368_15584,Ringsend Road,951,1,4368_7778195_3423004,4368_603 -4358_80778,228,4368_15585,Ringsend Road,9191,1,4368_7778195_3423003,4368_603 -4358_80778,229,4368_15586,Ringsend Road,15376,1,4368_7778195_3423004,4368_603 -4358_80778,228,4368_15587,Ringsend Road,9202,1,4368_7778195_3423004,4368_603 -4358_80778,227,4368_15588,Ringsend Road,968,1,4368_7778195_3423006,4368_603 -4358_80778,227,4368_15589,Ringsend Road,1040,1,4368_7778195_3423010,4368_603 -4358_80682,229,4368_1559,Grange Castle,19129,0,4368_7778195_8013022,4368_52 -4358_80778,228,4368_15590,Ringsend Road,9085,1,4368_7778195_3423011,4368_603 -4358_80778,227,4368_15591,Ringsend Road,1016,1,4368_7778195_3423009,4368_603 -4358_80778,229,4368_15592,Ringsend Road,15340,1,4368_7778195_3423005,4368_603 -4358_80778,228,4368_15593,Ringsend Road,9181,1,4368_7778195_3423007,4368_603 -4358_80778,227,4368_15594,Ringsend Road,1073,1,4368_7778195_3423012,4368_603 -4358_80778,227,4368_15595,Ringsend Road,942,1,4368_7778195_3423015,4368_603 -4358_80778,228,4368_15596,Ringsend Road,9264,1,4368_7778195_3423001,4368_603 -4358_80778,229,4368_15597,Ringsend Road,15384,1,4368_7778195_3423008,4368_603 -4358_80778,227,4368_15598,Ringsend Road,999,1,4368_7778195_3423003,4368_603 -4358_80778,228,4368_15599,Ringsend Road,9171,1,4368_7778195_3423002,4368_603 -4358_80760,229,4368_156,Shaw street,15597,0,4368_7778195_9001004,4368_2 -4358_80682,228,4368_1560,Grange Castle,13610,0,4368_7778195_8013005,4368_54 -4358_80778,229,4368_15600,Ringsend Road,15396,1,4368_7778195_3423002,4368_603 -4358_80778,227,4368_15601,Ringsend Road,953,1,4368_7778195_3423004,4368_603 -4358_80778,228,4368_15602,Ringsend Road,9215,1,4368_7778195_3423006,4368_603 -4358_80778,229,4368_15603,Ringsend Road,15464,1,4368_7778195_3423013,4368_603 -4358_80778,227,4368_15604,Ringsend Road,1099,1,4368_7778195_3423019,4368_603 -4358_80778,228,4368_15605,Ringsend Road,9204,1,4368_7778195_3423004,4368_603 -4358_80778,229,4368_15606,Ringsend Road,15433,1,4368_7778195_3423003,4368_603 -4358_80778,227,4368_15607,Ringsend Road,970,1,4368_7778195_3423006,4368_603 -4358_80778,228,4368_15608,Ringsend Road,9087,1,4368_7778195_3423011,4368_603 -4358_80778,229,4368_15609,Ringsend Road,15473,1,4368_7778195_3423014,4368_603 -4358_80682,227,4368_1561,Grange Castle,7042,0,4368_7778195_8013039,4368_53 -4358_80778,227,4368_15610,Ringsend Road,1042,1,4368_7778195_3423010,4368_603 -4358_80778,228,4368_15611,Ringsend Road,9183,1,4368_7778195_3423007,4368_603 -4358_80778,229,4368_15612,Ringsend Road,15421,1,4368_7778195_3423015,4368_603 -4358_80778,227,4368_15613,Ringsend Road,1018,1,4368_7778195_3423009,4368_603 -4358_80778,228,4368_15614,Ringsend Road,9266,1,4368_7778195_3423001,4368_603 -4358_80778,229,4368_15615,Ringsend Road,15386,1,4368_7778195_3423008,4368_603 -4358_80778,227,4368_15616,Ringsend Road,1028,1,4368_7778195_3423014,4368_603 -4358_80778,228,4368_15617,Ringsend Road,9173,1,4368_7778195_3423002,4368_603 -4358_80778,229,4368_15618,Ringsend Road,15354,1,4368_7778195_3423010,4368_603 -4358_80778,227,4368_15619,Ringsend Road,944,1,4368_7778195_3423015,4368_603 -4358_80682,228,4368_1562,Grange Castle,13675,0,4368_7778195_8013019,4368_52 -4358_80778,228,4368_15620,Ringsend Road,9217,1,4368_7778195_3423006,4368_603 -4358_80778,229,4368_15621,Ringsend Road,15466,1,4368_7778195_3423013,4368_603 -4358_80778,227,4368_15622,Ringsend Road,929,1,4368_7778195_3423002,4368_603 -4358_80778,228,4368_15623,Ringsend Road,9206,1,4368_7778195_3423004,4368_603 -4358_80778,229,4368_15624,Ringsend Road,15435,1,4368_7778195_3423003,4368_603 -4358_80778,227,4368_15625,Ringsend Road,920,1,4368_7778195_3423018,4368_603 -4358_80778,228,4368_15626,Ringsend Road,10371,1,4368_7778195_3423020,4368_603 -4358_80778,229,4368_15627,Ringsend Road,15475,1,4368_7778195_3423014,4368_603 -4358_80778,227,4368_15628,Ringsend Road,972,1,4368_7778195_3423006,4368_603 -4358_80778,229,4368_15629,Ringsend Road,15423,1,4368_7778195_3423015,4368_603 -4358_80682,227,4368_1563,Grange Castle,6878,0,4368_7778195_8013008,4368_54 -4358_80778,227,4368_15630,Ringsend Road,1044,1,4368_7778195_3423010,4368_603 -4358_80778,228,4368_15631,Ringsend Road,9089,1,4368_7778195_3423011,4368_604 -4358_80778,229,4368_15632,Ringsend Road,15388,1,4368_7778195_3423008,4368_603 -4358_80778,227,4368_15633,Ringsend Road,1020,1,4368_7778195_3423009,4368_603 -4358_80778,228,4368_15634,Ringsend Road,9233,1,4368_7778195_3423018,4368_604 -4358_80778,228,4368_15635,Ringsend Road,9123,1,4368_7778195_3423012,4368_603 -4358_80778,229,4368_15636,Ringsend Road,15356,1,4368_7778195_3423010,4368_603 -4358_80778,227,4368_15637,Ringsend Road,1030,1,4368_7778195_3423014,4368_603 -4358_80778,228,4368_15638,Ringsend Road,9250,1,4368_7778195_3423021,4368_603 -4358_80778,229,4368_15639,Ringsend Road,15365,1,4368_7778195_3423016,4368_603 -4358_80682,229,4368_1564,Grange Castle,19147,0,4368_7778195_8013029,4368_55 -4358_80778,227,4368_15640,Ringsend Road,946,1,4368_7778195_3423015,4368_603 -4358_80778,228,4368_15641,Ringsend Road,9197,1,4368_7778195_3423003,4368_603 -4358_80778,227,4368_15642,Ringsend Road,931,1,4368_7778195_3423002,4368_603 -4358_80778,228,4368_15643,Ringsend Road,9247,1,4368_7778195_3423023,4368_603 -4358_80778,229,4368_15644,Ringsend Road,15382,1,4368_7778195_3423004,4368_603 -4358_80778,227,4368_15645,Ringsend Road,7861,1,4368_7778195_8828204,4368_603 -4358_80778,228,4368_15646,Ringsend Road,9134,1,4368_7778195_3423016,4368_603 -4358_80778,227,4368_15647,Ringsend Road,922,1,4368_7778195_3423018,4368_603 -4358_80778,229,4368_15648,Ringsend Road,15323,1,4368_7778195_3423011,4368_603 -4358_80778,228,4368_15649,Ringsend Road,9100,1,4368_7778195_3423008,4368_603 -4358_80682,227,4368_1565,Grange Castle,6889,0,4368_7778195_8013010,4368_52 -4358_80778,227,4368_15650,Ringsend Road,1047,1,4368_7778195_3423024,4368_603 -4358_80778,228,4368_15651,Ringsend Road,9165,1,4368_7778195_3423027,4368_604 -4358_80778,229,4368_15652,Ringsend Road,15346,1,4368_7778195_3423005,4368_603 -4358_80778,228,4368_15653,Ringsend Road,9082,1,4368_7778195_3423005,4368_603 -4358_80778,227,4368_15654,Ringsend Road,974,1,4368_7778195_3423006,4368_604 -4358_80778,227,4368_15655,Ringsend Road,1046,1,4368_7778195_3423010,4368_603 -4358_80778,229,4368_15656,Ringsend Road,15450,1,4368_7778195_3423006,4368_604 -4358_80778,228,4368_15657,Ringsend Road,9162,1,4368_7778195_3423026,4368_605 -4358_80778,227,4368_15658,Ringsend Road,935,1,4368_7778195_3423027,4368_603 -4358_80778,229,4368_15659,Ringsend Road,15310,1,4368_7778195_3423001,4368_603 -4358_80682,228,4368_1566,Grange Castle,13623,0,4368_7778195_8013007,4368_54 -4358_80778,228,4368_15660,Ringsend Road,9187,1,4368_7778195_3423007,4368_604 -4358_80778,227,4368_15661,Ringsend Road,1011,1,4368_7778195_3423008,4368_603 -4358_80778,227,4368_15662,Ringsend Road,1082,1,4368_7778195_3423025,4368_603 -4358_80778,228,4368_15663,Ringsend Road,9270,1,4368_7778195_3423001,4368_603 -4358_80778,229,4368_15664,Ringsend Road,15367,1,4368_7778195_3423016,4368_603 -4358_80778,228,4368_15665,Ringsend Road,9177,1,4368_7778195_3423002,4368_603 -4358_80778,229,4368_15666,Ringsend Road,15461,1,4368_7778195_3423012,4368_603 -4358_80778,227,4368_15667,Ringsend Road,1032,1,4368_7778195_3423014,4368_603 -4358_80778,229,4368_15668,Ringsend Road,15325,1,4368_7778195_3423011,4368_603 -4358_80778,228,4368_15669,Ringsend Road,9221,1,4368_7778195_3423006,4368_604 -4358_80682,229,4368_1567,Grange Castle,19135,0,4368_7778195_8013025,4368_55 -4358_80778,227,4368_15670,Ringsend Road,948,1,4368_7778195_3423015,4368_603 -4358_80778,228,4368_15671,Ringsend Road,9210,1,4368_7778195_3423004,4368_603 -4358_80778,229,4368_15672,Ringsend Road,15348,1,4368_7778195_3423005,4368_604 -4358_80778,227,4368_15673,Ringsend Road,933,1,4368_7778195_3423002,4368_603 -4358_80778,228,4368_15674,Ringsend Road,10375,1,4368_7778195_3423020,4368_603 -4358_80778,229,4368_15675,Ringsend Road,15452,1,4368_7778195_3423006,4368_604 -4358_80778,227,4368_15676,Ringsend Road,924,1,4368_7778195_3423018,4368_603 -4358_80778,229,4368_15677,Ringsend Road,15312,1,4368_7778195_3423001,4368_603 -4358_80778,228,4368_15678,Ringsend Road,9189,1,4368_7778195_3423007,4368_604 -4358_80778,227,4368_15679,Ringsend Road,1003,1,4368_7778195_3423023,4368_603 -4358_80682,227,4368_1568,Grange Castle,6817,0,4368_7778195_8013003,4368_52 -4358_80778,228,4368_15680,Ringsend Road,9131,1,4368_7778195_3423028,4368_603 -4358_80778,229,4368_15681,Ringsend Road,15369,1,4368_7778195_3423016,4368_603 -4358_80778,227,4368_15682,Ringsend Road,937,1,4368_7778195_3423027,4368_603 -4358_80778,228,4368_15683,Ringsend Road,9179,1,4368_7778195_3423002,4368_603 -4358_80778,229,4368_15684,Ringsend Road,15463,1,4368_7778195_3423012,4368_603 -4358_80778,227,4368_15685,Ringsend Road,1084,1,4368_7778195_3423025,4368_603 -4358_80778,228,4368_15686,Ringsend Road,9223,1,4368_7778195_3423006,4368_603 -4358_80778,229,4368_15687,Ringsend Road,15313,1,4368_7778195_3423022,4368_603 -4358_80778,227,4368_15688,Ringsend Road,1119,1,4368_7778195_3423030,4368_603 -4358_80778,228,4368_15689,Ringsend Road,9212,1,4368_7778195_3423004,4368_603 -4358_80682,228,4368_1569,Grange Castle,13659,0,4368_7778195_8013014,4368_54 -4358_80778,229,4368_15690,Ringsend Road,15350,1,4368_7778195_3423005,4368_603 -4358_80778,227,4368_15691,Ringsend Road,950,1,4368_7778195_3423015,4368_603 -4358_80778,228,4368_15692,Ringsend Road,9117,1,4368_7778195_3423032,4368_603 -4358_80778,227,4368_15693,Ringsend Road,996,1,4368_7778195_3423033,4368_603 -4358_80778,229,4368_15694,Ringsend Road,15488,1,4368_7778195_3423024,4368_603 -4358_80780,227,4368_15695,Maynooth,1112,0,4368_7778195_3423039,4368_606 -4358_80780,228,4368_15696,Maynooth,9158,0,4368_7778195_3423041,4368_607 -4358_80780,229,4368_15697,Maynooth,15407,0,4368_7778195_3423030,4368_606 -4358_80780,228,4368_15698,Maynooth,9109,0,4368_7778195_3423037,4368_606 -4358_80780,227,4368_15699,Maynooth,1126,0,4368_7778195_3423036,4368_607 -4358_80760,228,4368_157,Shaw street,9328,0,4368_7778195_9001002,4368_1 -4358_80682,229,4368_1570,Grange Castle,19140,0,4368_7778195_8013026,4368_55 -4358_80780,229,4368_15700,Maynooth,15413,0,4368_7778195_3423031,4368_606 -4358_80780,228,4368_15701,Maynooth,9138,0,4368_7778195_3423038,4368_606 -4358_80780,227,4368_15702,Maynooth,1135,0,4368_7778195_3423038,4368_607 -4358_80780,229,4368_15703,Maynooth,15300,0,4368_7778195_3423029,4368_606 -4358_80780,228,4368_15704,Maynooth,9160,0,4368_7778195_3423041,4368_606 -4358_80780,229,4368_15705,Maynooth,15409,0,4368_7778195_3423030,4368_606 -4358_80780,227,4368_15706,Maynooth,1114,0,4368_7778195_3423039,4368_607 -4358_80780,228,4368_15707,Maynooth,9111,0,4368_7778195_3423037,4368_606 -4358_80780,229,4368_15708,Maynooth,15415,0,4368_7778195_3423031,4368_606 -4358_80780,227,4368_15709,Maynooth,1097,0,4368_7778195_3423040,4368_607 -4358_80682,227,4368_1571,Grange Castle,6993,0,4368_7778195_8013023,4368_53 -4358_80780,228,4368_15710,Ringsend Road,9258,1,4368_7778195_3423034,4368_608 -4358_80780,227,4368_15711,Ringsend Road,963,1,4368_7778195_3423034,4368_608 -4358_80780,229,4368_15712,Ringsend Road,15362,1,4368_7778195_3423025,4368_608 -4358_80780,228,4368_15713,Ringsend Road,9236,1,4368_7778195_3423039,4368_608 -4358_80780,229,4368_15714,Ringsend Road,15315,1,4368_7778195_3423022,4368_609 -4358_80780,227,4368_15715,Ringsend Road,1122,1,4368_7778195_3423035,4368_608 -4358_80780,228,4368_15716,Ringsend Road,9253,1,4368_7778195_3423040,4368_608 -4358_80780,229,4368_15717,Ringsend Road,15417,1,4368_7778195_3423028,4368_608 -4358_80780,227,4368_15718,Ringsend Road,1128,1,4368_7778195_3423037,4368_608 -4358_80780,228,4368_15719,Ringsend Road,9260,1,4368_7778195_3423034,4368_608 -4358_80682,228,4368_1572,Grange Castle,13690,0,4368_7778195_8013020,4368_52 -4358_80780,229,4368_15720,Ringsend Road,15411,1,4368_7778195_3423032,4368_608 -4358_80780,227,4368_15721,Ringsend Road,965,1,4368_7778195_3423034,4368_608 -4358_80780,229,4368_15722,Ringsend Road,15317,1,4368_7778195_3423022,4368_608 -4358_80780,227,4368_15723,Ringsend Road,1124,1,4368_7778195_3423035,4368_609 -4358_80780,228,4368_15724,Ringsend Road,9238,1,4368_7778195_3423039,4368_608 -4358_80779,228,4368_15725,Maynooth,9252,0,4368_7778195_3423040,4368_610 -4358_80779,227,4368_15726,Maynooth,1127,0,4368_7778195_3423037,4368_610 -4358_80779,229,4368_15727,Maynooth,15416,0,4368_7778195_3423028,4368_611 -4358_80779,228,4368_15728,Maynooth,9259,0,4368_7778195_3423034,4368_610 -4358_80779,227,4368_15729,Maynooth,964,0,4368_7778195_3423034,4368_610 -4358_80682,229,4368_1573,Grange Castle,19158,0,4368_7778195_8013032,4368_54 -4358_80779,229,4368_15730,Maynooth,15363,0,4368_7778195_3423025,4368_611 -4358_80779,228,4368_15731,Maynooth,9237,0,4368_7778195_3423039,4368_610 -4358_80779,229,4368_15732,Maynooth,15316,0,4368_7778195_3423022,4368_610 -4358_80779,227,4368_15733,Maynooth,1123,0,4368_7778195_3423035,4368_611 -4358_80779,228,4368_15734,Maynooth,9167,0,4368_7778195_3423042,4368_610 -4358_80779,227,4368_15735,Maynooth,1129,0,4368_7778195_3423037,4368_610 -4358_80779,229,4368_15736,Maynooth,15418,0,4368_7778195_3423028,4368_611 -4358_80779,228,4368_15737,Maynooth,9261,0,4368_7778195_3423034,4368_610 -4358_80779,227,4368_15738,Maynooth,966,0,4368_7778195_3423034,4368_610 -4358_80779,229,4368_15739,Maynooth,15412,0,4368_7778195_3423032,4368_610 -4358_80682,229,4368_1574,Grange Castle,19142,0,4368_7778195_8013027,4368_52 -4358_80779,228,4368_15740,Ringsend Road,9108,1,4368_7778195_3423037,4368_612 -4358_80779,229,4368_15741,Ringsend Road,15490,1,4368_7778195_3423027,4368_612 -4358_80779,227,4368_15742,Ringsend Road,1125,1,4368_7778195_3423036,4368_612 -4358_80779,227,4368_15743,Ringsend Road,1134,1,4368_7778195_3423038,4368_612 -4358_80779,228,4368_15744,Ringsend Road,9137,1,4368_7778195_3423038,4368_612 -4358_80779,229,4368_15745,Ringsend Road,15299,1,4368_7778195_3423029,4368_612 -4358_80779,227,4368_15746,Ringsend Road,1113,1,4368_7778195_3423039,4368_612 -4358_80779,228,4368_15747,Ringsend Road,9159,1,4368_7778195_3423041,4368_612 -4358_80779,229,4368_15748,Ringsend Road,15408,1,4368_7778195_3423030,4368_612 -4358_80779,227,4368_15749,Ringsend Road,1096,1,4368_7778195_3423040,4368_612 -4358_80682,228,4368_1575,Grange Castle,13643,0,4368_7778195_8013010,4368_54 -4358_80779,228,4368_15750,Ringsend Road,9110,1,4368_7778195_3423037,4368_612 -4358_80779,229,4368_15751,Ringsend Road,15414,1,4368_7778195_3423031,4368_612 -4358_80779,227,4368_15752,Ringsend Road,1136,1,4368_7778195_3423038,4368_612 -4358_80779,229,4368_15753,Ringsend Road,15301,1,4368_7778195_3423029,4368_613 -4358_80779,228,4368_15754,Ringsend Road,9139,1,4368_7778195_3423038,4368_612 -4358_80781,227,4368_15755,Red Cow Luas,4525,0,4368_7778195_4461002,4368_614 -4358_80781,228,4368_15756,Red Cow Luas,11703,0,4368_7778195_4461004,4368_614 -4358_80781,229,4368_15757,Red Cow Luas,17452,0,4368_7778195_4461004,4368_614 -4358_80781,227,4368_15758,Red Cow Luas,4557,0,4368_7778195_4461007,4368_614 -4358_80781,227,4368_15759,Red Cow Luas,4497,0,4368_7778195_4461003,4368_614 -4358_80682,227,4368_1576,Grange Castle,6902,0,4368_7778195_8013014,4368_55 -4358_80781,228,4368_15760,Red Cow Luas,11597,0,4368_7778195_4461001,4368_614 -4358_80781,227,4368_15761,Red Cow Luas,4486,0,4368_7778195_4461004,4368_614 -4358_80781,229,4368_15762,Red Cow Luas,17432,0,4368_7778195_4461003,4368_614 -4358_80781,227,4368_15763,Red Cow Luas,4573,0,4368_7778195_4461006,4368_614 -4358_80781,228,4368_15764,Red Cow Luas,11722,0,4368_7778195_4461008,4368_614 -4358_80781,227,4368_15765,Red Cow Luas,4671,0,4368_7778195_4461020,4368_614 -4358_80781,227,4368_15766,Red Cow Luas,4470,0,4368_7778195_4461008,4368_614 -4358_80781,228,4368_15767,Red Cow Luas,11649,0,4368_7778195_4461002,4368_614 -4358_80781,227,4368_15768,Red Cow Luas,4527,0,4368_7778195_4461002,4368_614 -4358_80781,227,4368_15769,Red Cow Luas,4687,0,4368_7778195_4461024,4368_614 -4358_80682,228,4368_1577,Grange Castle,13708,0,4368_7778195_8013021,4368_52 -4358_80781,228,4368_15770,Red Cow Luas,11705,0,4368_7778195_4461004,4368_614 -4358_80781,229,4368_15771,Red Cow Luas,17464,0,4368_7778195_4461005,4368_614 -4358_80781,227,4368_15772,Red Cow Luas,4706,0,4368_7778195_4461028,4368_614 -4358_80781,228,4368_15773,Red Cow Luas,11784,0,4368_7778195_4461013,4368_614 -4358_80781,227,4368_15774,Red Cow Luas,4719,0,4368_7778195_4461030,4368_614 -4358_80781,227,4368_15775,Red Cow Luas,4656,0,4368_7778195_4461018,4368_614 -4358_80781,228,4368_15776,Red Cow Luas,11614,0,4368_7778195_4461010,4368_614 -4358_80781,229,4368_15777,Red Cow Luas,17419,0,4368_7778195_4461008,4368_614 -4358_80781,227,4368_15778,Red Cow Luas,4446,0,4368_7778195_4461001,4368_614 -4358_80781,227,4368_15779,Red Cow Luas,4679,0,4368_7778195_4461023,4368_614 -4358_80682,227,4368_1578,Grange Castle,7032,0,4368_7778195_8013034,4368_54 -4358_80781,228,4368_15780,Red Cow Luas,11666,0,4368_7778195_4461003,4368_614 -4358_80781,227,4368_15781,Red Cow Luas,4617,0,4368_7778195_4461013,4368_614 -4358_80781,229,4368_15782,Red Cow Luas,17454,0,4368_7778195_4461004,4368_614 -4358_80781,228,4368_15783,Red Cow Luas,11689,0,4368_7778195_4461005,4368_614 -4358_80781,227,4368_15784,Red Cow Luas,4488,0,4368_7778195_4461004,4368_614 -4358_80781,227,4368_15785,Red Cow Luas,4575,0,4368_7778195_4461006,4368_614 -4358_80781,228,4368_15786,Red Cow Luas,11883,0,4368_7778195_4461015,4368_614 -4358_80781,229,4368_15787,Red Cow Luas,17378,0,4368_7778195_4461006,4368_614 -4358_80781,227,4368_15788,Red Cow Luas,4543,0,4368_7778195_4461010,4368_614 -4358_80781,228,4368_15789,Red Cow Luas,11798,0,4368_7778195_4461017,4368_614 -4358_80682,229,4368_1579,Grange Castle,19087,0,4368_7778195_8013010,4368_55 -4358_80781,227,4368_15790,Red Cow Luas,4736,0,4368_7778195_4461027,4368_614 -4358_80781,228,4368_15791,Red Cow Luas,11707,0,4368_7778195_4461004,4368_614 -4358_80781,229,4368_15792,Red Cow Luas,17434,0,4368_7778195_4461003,4368_614 -4358_80781,227,4368_15793,Red Cow Luas,4752,0,4368_7778195_4461032,4368_614 -4358_80781,228,4368_15794,Red Cow Luas,11735,0,4368_7778195_4461009,4368_614 -4358_80781,227,4368_15795,Red Cow Luas,4472,0,4368_7778195_4461008,4368_614 -4358_80781,228,4368_15796,Red Cow Luas,11601,0,4368_7778195_4461001,4368_614 -4358_80781,229,4368_15797,Red Cow Luas,17466,0,4368_7778195_4461005,4368_614 -4358_80781,227,4368_15798,Red Cow Luas,4599,0,4368_7778195_4461012,4368_614 -4358_80781,228,4368_15799,Red Cow Luas,11758,0,4368_7778195_4461016,4368_614 -4358_80760,227,4368_158,Shaw street,1809,0,4368_7778195_9001014,4368_1 -4358_80682,228,4368_1580,Grange Castle,13580,0,4368_7778195_8013001,4368_52 -4358_80781,229,4368_15800,Red Cow Luas,17421,0,4368_7778195_4461008,4368_614 -4358_80781,227,4368_15801,Red Cow Luas,4623,0,4368_7778195_4461014,4368_614 -4358_80781,228,4368_15802,Red Cow Luas,11746,0,4368_7778195_4461011,4368_614 -4358_80781,227,4368_15803,Red Cow Luas,4564,0,4368_7778195_4461005,4368_614 -4358_80781,229,4368_15804,Red Cow Luas,17456,0,4368_7778195_4461004,4368_615 -4358_80781,228,4368_15805,Red Cow Luas,11642,0,4368_7778195_4461025,4368_614 -4358_80781,227,4368_15806,Red Cow Luas,4658,0,4368_7778195_4461018,4368_614 -4358_80781,228,4368_15807,Red Cow Luas,11691,0,4368_7778195_4461005,4368_614 -4358_80781,229,4368_15808,Red Cow Luas,17614,0,4368_7778195_4461020,4368_614 -4358_80781,227,4368_15809,Red Cow Luas,4501,0,4368_7778195_4461003,4368_614 -4358_80682,227,4368_1581,Grange Castle,6833,0,4368_7778195_8013006,4368_54 -4358_80781,228,4368_15810,Red Cow Luas,11885,0,4368_7778195_4461015,4368_614 -4358_80781,229,4368_15811,Red Cow Luas,17380,0,4368_7778195_4461006,4368_614 -4358_80781,227,4368_15812,Red Cow Luas,4780,0,4368_7778195_4461035,4368_614 -4358_80781,228,4368_15813,Red Cow Luas,11684,0,4368_7778195_4461007,4368_615 -4358_80781,229,4368_15814,Red Cow Luas,17530,0,4368_7778195_4461015,4368_614 -4358_80781,228,4368_15815,Red Cow Luas,11800,0,4368_7778195_4461017,4368_614 -4358_80781,227,4368_15816,Red Cow Luas,4631,0,4368_7778195_4461015,4368_614 -4358_80781,229,4368_15817,Red Cow Luas,17436,0,4368_7778195_4461003,4368_614 -4358_80781,228,4368_15818,Red Cow Luas,11709,0,4368_7778195_4461004,4368_615 -4358_80781,227,4368_15819,Red Cow Luas,4696,0,4368_7778195_4461026,4368_614 -4358_80682,229,4368_1582,Grange Castle,19119,0,4368_7778195_8013020,4368_55 -4358_80781,228,4368_15820,Red Cow Luas,11737,0,4368_7778195_4461009,4368_614 -4358_80781,227,4368_15821,Red Cow Luas,4637,0,4368_7778195_4461029,4368_614 -4358_80781,229,4368_15822,Red Cow Luas,17587,0,4368_7778195_4461021,4368_614 -4358_80781,228,4368_15823,Red Cow Luas,11603,0,4368_7778195_4461001,4368_614 -4358_80781,227,4368_15824,Red Cow Luas,4773,0,4368_7778195_4461033,4368_614 -4358_80781,229,4368_15825,Red Cow Luas,17468,0,4368_7778195_4461005,4368_614 -4358_80781,228,4368_15826,Red Cow Luas,11760,0,4368_7778195_4461016,4368_614 -4358_80781,227,4368_15827,Red Cow Luas,4452,0,4368_7778195_4461021,4368_614 -4358_80781,229,4368_15828,Red Cow Luas,17423,0,4368_7778195_4461008,4368_614 -4358_80781,228,4368_15829,Red Cow Luas,11748,0,4368_7778195_4461011,4368_615 -4358_80682,228,4368_1583,Grange Castle,13590,0,4368_7778195_8013002,4368_52 -4358_80781,227,4368_15830,Red Cow Luas,4531,0,4368_7778195_4461002,4368_614 -4358_80781,228,4368_15831,Red Cow Luas,11644,0,4368_7778195_4461025,4368_614 -4358_80781,227,4368_15832,Red Cow Luas,4790,0,4368_7778195_4461036,4368_614 -4358_80781,229,4368_15833,Red Cow Luas,17458,0,4368_7778195_4461004,4368_614 -4358_80781,228,4368_15834,Red Cow Luas,11728,0,4368_7778195_4461008,4368_614 -4358_80781,227,4368_15835,Red Cow Luas,4710,0,4368_7778195_4461028,4368_614 -4358_80781,229,4368_15836,Red Cow Luas,17495,0,4368_7778195_4461010,4368_614 -4358_80781,228,4368_15837,Red Cow Luas,11693,0,4368_7778195_4461005,4368_614 -4358_80781,227,4368_15838,Red Cow Luas,4723,0,4368_7778195_4461030,4368_614 -4358_80781,228,4368_15839,Red Cow Luas,11833,0,4368_7778195_4461022,4368_614 -4358_80682,227,4368_1584,Grange Castle,7035,0,4368_7778195_8013035,4368_54 -4358_80781,229,4368_15840,Red Cow Luas,17382,0,4368_7778195_4461006,4368_615 -4358_80781,227,4368_15841,Red Cow Luas,4683,0,4368_7778195_4461023,4368_614 -4358_80781,228,4368_15842,Red Cow Luas,11802,0,4368_7778195_4461017,4368_614 -4358_80781,227,4368_15843,Red Cow Luas,4552,0,4368_7778195_4461043,4368_614 -4358_80781,229,4368_15844,Red Cow Luas,17532,0,4368_7778195_4461015,4368_614 -4358_80781,227,4368_15845,Red Cow Luas,4492,0,4368_7778195_4461004,4368_614 -4358_80781,228,4368_15846,Red Cow Luas,11711,0,4368_7778195_4461004,4368_615 -4358_80781,229,4368_15847,Red Cow Luas,17438,0,4368_7778195_4461003,4368_614 -4358_80781,228,4368_15848,Red Cow Luas,11739,0,4368_7778195_4461009,4368_614 -4358_80781,227,4368_15849,Red Cow Luas,4750,0,4368_7778195_4461031,4368_615 -4358_80682,229,4368_1585,Grange Castle,19096,0,4368_7778195_8013013,4368_55 -4358_80781,227,4368_15850,Red Cow Luas,4547,0,4368_7778195_4461010,4368_614 -4358_80781,228,4368_15851,Red Cow Luas,11630,0,4368_7778195_4461026,4368_615 -4358_80781,229,4368_15852,Red Cow Luas,17563,0,4368_7778195_4461016,4368_614 -4358_80781,227,4368_15853,Red Cow Luas,4740,0,4368_7778195_4461027,4368_614 -4358_80781,228,4368_15854,Red Cow Luas,11605,0,4368_7778195_4461001,4368_615 -4358_80781,229,4368_15855,Red Cow Luas,17618,0,4368_7778195_4461020,4368_614 -4358_80781,228,4368_15856,Red Cow Luas,11750,0,4368_7778195_4461011,4368_614 -4358_80781,227,4368_15857,Red Cow Luas,4756,0,4368_7778195_4461032,4368_614 -4358_80781,229,4368_15858,Red Cow Luas,17425,0,4368_7778195_4461008,4368_614 -4358_80781,228,4368_15859,Red Cow Luas,11813,0,4368_7778195_4461018,4368_614 -4358_80682,227,4368_1586,Grange Castle,7002,0,4368_7778195_8013025,4368_52 -4358_80781,227,4368_15860,Red Cow Luas,4476,0,4368_7778195_4461008,4368_614 -4358_80781,227,4368_15861,Red Cow Luas,4603,0,4368_7778195_4461012,4368_614 -4358_80781,229,4368_15862,Red Cow Luas,17460,0,4368_7778195_4461004,4368_614 -4358_80781,228,4368_15863,Red Cow Luas,11672,0,4368_7778195_4461003,4368_615 -4358_80781,227,4368_15864,Red Cow Luas,4805,0,4368_7778195_4461039,4368_614 -4358_80781,228,4368_15865,Red Cow Luas,11861,0,4368_7778195_4461030,4368_614 -4358_80781,229,4368_15866,Red Cow Luas,17497,0,4368_7778195_4461010,4368_614 -4358_80781,227,4368_15867,Red Cow Luas,4712,0,4368_7778195_4461028,4368_614 -4358_80781,228,4368_15868,Red Cow Luas,11866,0,4368_7778195_4461032,4368_614 -4358_80781,227,4368_15869,Red Cow Luas,4725,0,4368_7778195_4461030,4368_614 -4358_80682,229,4368_1587,Grange Castle,19144,0,4368_7778195_8013028,4368_54 -4358_80781,229,4368_15870,Red Cow Luas,17384,0,4368_7778195_4461006,4368_614 -4358_80781,228,4368_15871,Red Cow Luas,11908,0,4368_7778195_4461028,4368_615 -4358_80781,227,4368_15872,Red Cow Luas,4794,0,4368_7778195_4461054,4368_614 -4358_80781,228,4368_15873,Red Cow Luas,11854,0,4368_7778195_4461029,4368_614 -4358_80781,227,4368_15874,Red Cow Luas,4610,0,4368_7778195_4461047,4368_614 -4358_80781,229,4368_15875,Red Cow Luas,17534,0,4368_7778195_4461015,4368_614 -4358_80781,227,4368_15876,Red Cow Luas,4554,0,4368_7778195_4461043,4368_614 -4358_80781,228,4368_15877,Red Cow Luas,11713,0,4368_7778195_4461004,4368_614 -4358_80781,229,4368_15878,Red Cow Luas,17440,0,4368_7778195_4461003,4368_614 -4358_80781,227,4368_15879,Red Cow Luas,4494,0,4368_7778195_4461004,4368_614 -4358_80682,228,4368_1588,Grange Castle,13666,0,4368_7778195_8013016,4368_55 -4358_80781,228,4368_15880,Red Cow Luas,11778,0,4368_7778195_4461012,4368_614 -4358_80781,227,4368_15881,Red Cow Luas,4511,0,4368_7778195_4461048,4368_614 -4358_80781,229,4368_15882,Red Cow Luas,17565,0,4368_7778195_4461016,4368_614 -4358_80781,228,4368_15883,Red Cow Luas,11826,0,4368_7778195_4461020,4368_614 -4358_80781,227,4368_15884,Red Cow Luas,4818,0,4368_7778195_4461052,4368_615 -4358_80781,227,4368_15885,Red Cow Luas,4549,0,4368_7778195_4461010,4368_614 -4358_80781,229,4368_15886,Red Cow Luas,17448,0,4368_7778195_4461023,4368_614 -4358_80781,228,4368_15887,Red Cow Luas,11752,0,4368_7778195_4461011,4368_614 -4358_80781,227,4368_15888,Red Cow Luas,4520,0,4368_7778195_4461044,4368_614 -4358_80781,228,4368_15889,Red Cow Luas,11815,0,4368_7778195_4461018,4368_614 -4358_80682,228,4368_1589,Grange Castle,13672,0,4368_7778195_8013018,4368_51 -4358_80781,229,4368_15890,Red Cow Luas,17427,0,4368_7778195_4461008,4368_614 -4358_80781,227,4368_15891,Red Cow Luas,4742,0,4368_7778195_4461027,4368_614 -4358_80781,228,4368_15892,Red Cow Luas,11926,0,4368_7778195_4461042,4368_614 -4358_80781,227,4368_15893,Red Cow Luas,4758,0,4368_7778195_4461032,4368_614 -4358_80781,228,4368_15894,Red Cow Luas,11916,0,4368_7778195_4461039,4368_614 -4358_80781,229,4368_15895,Red Cow Luas,17462,0,4368_7778195_4461004,4368_614 -4358_80781,227,4368_15896,Red Cow Luas,4478,0,4368_7778195_4461008,4368_614 -4358_80781,228,4368_15897,Red Cow Luas,11868,0,4368_7778195_4461032,4368_614 -4358_80781,229,4368_15898,Red Cow Luas,17499,0,4368_7778195_4461010,4368_614 -4358_80781,227,4368_15899,Red Cow Luas,4605,0,4368_7778195_4461012,4368_615 -4358_80760,229,4368_159,Shaw street,15738,0,4368_7778195_9001002,4368_2 -4358_80682,229,4368_1590,Grange Castle,19059,0,4368_7778195_8013001,4368_56 -4358_80781,228,4368_15900,Red Cow Luas,11910,0,4368_7778195_4461028,4368_614 -4358_80781,227,4368_15901,Red Cow Luas,4807,0,4368_7778195_4461039,4368_614 -4358_80781,227,4368_15902,Red Cow Luas,4727,0,4368_7778195_4461030,4368_614 -4358_80781,229,4368_15903,Red Cow Luas,17386,0,4368_7778195_4461006,4368_615 -4358_80781,228,4368_15904,Red Cow Luas,11659,0,4368_7778195_4461002,4368_614 -4358_80781,227,4368_15905,Red Cow Luas,4664,0,4368_7778195_4461018,4368_614 -4358_80781,228,4368_15906,Red Cow Luas,11715,0,4368_7778195_4461004,4368_614 -4358_80781,229,4368_15907,Red Cow Luas,17567,0,4368_7778195_4461016,4368_614 -4358_80781,227,4368_15908,Red Cow Luas,4507,0,4368_7778195_4461003,4368_615 -4358_80781,228,4368_15909,Red Cow Luas,11634,0,4368_7778195_4461026,4368_614 -4358_80682,227,4368_1591,Grange Castle,7012,0,4368_7778195_8013028,4368_57 -4358_80781,227,4368_15910,Red Cow Luas,4513,0,4368_7778195_4461048,4368_614 -4358_80781,227,4368_15911,Red Cow Luas,4702,0,4368_7778195_4461026,4368_614 -4358_80781,229,4368_15912,Red Cow Luas,17450,0,4368_7778195_4461023,4368_615 -4358_80781,228,4368_15913,Red Cow Luas,11817,0,4368_7778195_4461018,4368_614 -4358_80781,227,4368_15914,Red Cow Luas,4643,0,4368_7778195_4461029,4368_614 -4358_80781,228,4368_15915,Red Cow Luas,11928,0,4368_7778195_4461042,4368_614 -4358_80781,227,4368_15916,Red Cow Luas,4828,0,4368_7778195_4461058,4368_614 -4358_80781,229,4368_15917,Red Cow Luas,17429,0,4368_7778195_4461008,4368_614 -4358_80781,227,4368_15918,Red Cow Luas,4458,0,4368_7778195_4461021,4368_614 -4358_80781,228,4368_15919,Red Cow Luas,11918,0,4368_7778195_4461039,4368_614 -4358_80682,227,4368_1592,Grange Castle,7052,0,4368_7778195_8013044,4368_51 -4358_80781,227,4368_15920,Red Cow Luas,4809,0,4368_7778195_4461039,4368_614 -4358_80781,229,4368_15921,Red Cow Luas,17597,0,4368_7778195_4461025,4368_614 -4358_80781,228,4368_15922,Red Cow Luas,11870,0,4368_7778195_4461032,4368_614 -4358_80781,227,4368_15923,Red Cow Luas,4666,0,4368_7778195_4461018,4368_614 -4358_80781,228,4368_15924,Red Cow Luas,11858,0,4368_7778195_4461029,4368_614 -4358_80781,227,4368_15925,Red Cow Luas,4509,0,4368_7778195_4461003,4368_614 -4358_80781,229,4368_15926,Red Cow Luas,17388,0,4368_7778195_4461006,4368_614 -4358_80781,227,4368_15927,Red Cow Luas,4733,0,4368_7778195_4461061,4368_614 -4358_80781,228,4368_15928,Red Cow Luas,11782,0,4368_7778195_4461012,4368_614 -4358_80781,227,4368_15929,Red Cow Luas,4515,0,4368_7778195_4461048,4368_614 -4358_80682,228,4368_1593,Grange Castle,13710,0,4368_7778195_8013022,4368_56 -4358_80781,229,4368_15930,Red Cow Luas,17569,0,4368_7778195_4461016,4368_614 -4358_80781,228,4368_15931,Red Cow Luas,11881,0,4368_7778195_4461043,4368_614 -4358_80781,227,4368_15932,Red Cow Luas,4645,0,4368_7778195_4461029,4368_614 -4358_80781,228,4368_15933,Red Cow Luas,11611,0,4368_7778195_4461045,4368_614 -4358_80781,227,4368_15934,Red Cow Luas,4830,0,4368_7778195_4461058,4368_614 -4358_80781,229,4368_15935,Red Cow Luas,17412,0,4368_7778195_4461031,4368_614 -4358_80781,228,4368_15936,Red Cow Luas,11920,0,4368_7778195_4461039,4368_614 -4358_80781,227,4368_15937,Red Cow Luas,4811,0,4368_7778195_4461039,4368_614 -4358_80781,229,4368_15938,Red Cow Luas,17599,0,4368_7778195_4461025,4368_614 -4358_80781,228,4368_15939,Red Cow Luas,11898,0,4368_7778195_4461046,4368_614 -4358_80682,229,4368_1594,Grange Castle,19152,0,4368_7778195_8013030,4368_57 -4358_80781,227,4368_15940,Red Cow Luas,4833,0,4368_7778195_4461063,4368_614 -4358_80781,229,4368_15941,Red Cow Luas,17480,0,4368_7778195_4461032,4368_614 -4358_80781,228,4368_15942,Red Cow Luas,11845,0,4368_7778195_4461049,4368_614 -4358_80781,227,4368_15943,Red Cow Luas,4579,0,4368_7778195_4461062,4368_614 -4358_80781,229,4368_15944,Red Cow Luas,17414,0,4368_7778195_4461031,4368_614 -4358_80781,228,4368_15945,Red Cow Luas,11900,0,4368_7778195_4461046,4368_614 -4358_80781,227,4368_15946,Red Cow Luas,4835,0,4368_7778195_4461063,4368_614 -4358_80781,229,4368_15947,Red Cow Luas,17482,0,4368_7778195_4461032,4368_614 -4358_80781,227,4368_15948,Red Cow Luas,4581,0,4368_7778195_4461062,4368_614 -4358_80781,228,4368_15949,Red Cow Luas,11847,0,4368_7778195_4461049,4368_614 -4358_80682,229,4368_1595,Grange Castle,19156,0,4368_7778195_8013031,4368_51 -4358_80781,229,4368_15950,Red Cow Luas,17601,0,4368_7778195_4461035,4368_615 -4358_80781,227,4368_15951,Red Cow Luas,4837,0,4368_7778195_4461063,4368_614 -4358_80781,228,4368_15952,Red Cow Luas,11902,0,4368_7778195_4461046,4368_615 -4358_80781,229,4368_15953,Red Cow Luas,17484,0,4368_7778195_4461032,4368_614 -4358_80781,227,4368_15954,Spencer Dock,4443,1,4368_7778195_4461001,4368_616 -4358_80781,228,4368_15955,Spencer Dock,11663,1,4368_7778195_4461003,4368_616 -4358_80781,227,4368_15956,Spencer Dock,4485,1,4368_7778195_4461004,4368_617 -4358_80781,229,4368_15957,Spencer Dock,17431,1,4368_7778195_4461003,4368_616 -4358_80781,227,4368_15958,Spencer Dock,4469,1,4368_7778195_4461008,4368_616 -4358_80781,228,4368_15959,Spencer Dock,11686,1,4368_7778195_4461005,4368_617 -4358_80682,228,4368_1596,Grange Castle,13757,0,4368_7778195_8013023,4368_56 -4358_80781,227,4368_15960,Spencer Dock,4526,1,4368_7778195_4461002,4368_616 -4358_80781,227,4368_15961,Spencer Dock,4620,1,4368_7778195_4461014,4368_616 -4358_80781,228,4368_15962,Spencer Dock,11704,1,4368_7778195_4461004,4368_616 -4358_80781,229,4368_15963,Spencer Dock,17463,1,4368_7778195_4461005,4368_616 -4358_80781,227,4368_15964,Spencer Dock,4646,1,4368_7778195_4461017,4368_616 -4358_80781,227,4368_15965,Spencer Dock,4558,1,4368_7778195_4461007,4368_616 -4358_80781,228,4368_15966,Spencer Dock,11598,1,4368_7778195_4461001,4368_616 -4358_80781,227,4368_15967,Spencer Dock,4673,1,4368_7778195_4461022,4368_616 -4358_80781,227,4368_15968,Spencer Dock,4498,1,4368_7778195_4461003,4368_616 -4358_80781,228,4368_15969,Spencer Dock,11743,1,4368_7778195_4461011,4368_616 -4358_80682,227,4368_1597,Grange Castle,7045,0,4368_7778195_8013040,4368_57 -4358_80781,229,4368_15970,Spencer Dock,17453,1,4368_7778195_4461004,4368_616 -4358_80781,227,4368_15971,Spencer Dock,4487,1,4368_7778195_4461004,4368_617 -4358_80781,228,4368_15972,Spencer Dock,11723,1,4368_7778195_4461008,4368_616 -4358_80781,227,4368_15973,Spencer Dock,4574,1,4368_7778195_4461006,4368_616 -4358_80781,227,4368_15974,Spencer Dock,4542,1,4368_7778195_4461010,4368_616 -4358_80781,229,4368_15975,Spencer Dock,17377,1,4368_7778195_4461006,4368_616 -4358_80781,227,4368_15976,Spencer Dock,4735,1,4368_7778195_4461027,4368_616 -4358_80781,228,4368_15977,Spencer Dock,11792,1,4368_7778195_4461014,4368_616 -4358_80781,227,4368_15978,Spencer Dock,4672,1,4368_7778195_4461020,4368_616 -4358_80781,227,4368_15979,Spencer Dock,4751,1,4368_7778195_4461032,4368_616 -4358_80682,228,4368_1598,Grange Castle,13800,0,4368_7778195_8013024,4368_51 -4358_80781,228,4368_15980,Spencer Dock,11650,1,4368_7778195_4461002,4368_616 -4358_80781,229,4368_15981,Spencer Dock,17433,1,4368_7778195_4461003,4368_616 -4358_80781,227,4368_15982,Spencer Dock,4471,1,4368_7778195_4461008,4368_616 -4358_80781,227,4368_15983,Spencer Dock,4528,1,4368_7778195_4461002,4368_616 -4358_80781,228,4368_15984,Spencer Dock,11706,1,4368_7778195_4461004,4368_616 -4358_80781,229,4368_15985,Spencer Dock,17465,1,4368_7778195_4461005,4368_616 -4358_80781,227,4368_15986,Spencer Dock,4688,1,4368_7778195_4461024,4368_616 -4358_80781,228,4368_15987,Spencer Dock,11785,1,4368_7778195_4461013,4368_616 -4358_80781,227,4368_15988,Spencer Dock,4707,1,4368_7778195_4461028,4368_616 -4358_80781,228,4368_15989,Spencer Dock,11615,1,4368_7778195_4461010,4368_616 -4358_80682,229,4368_1599,Grange Castle,19114,0,4368_7778195_8013019,4368_56 -4358_80781,229,4368_15990,Spencer Dock,17420,1,4368_7778195_4461008,4368_616 -4358_80781,227,4368_15991,Spencer Dock,4720,1,4368_7778195_4461030,4368_616 -4358_80781,228,4368_15992,Spencer Dock,11808,1,4368_7778195_4461018,4368_616 -4358_80781,227,4368_15993,Spencer Dock,4657,1,4368_7778195_4461018,4368_616 -4358_80781,228,4368_15994,Spencer Dock,11667,1,4368_7778195_4461003,4368_616 -4358_80781,229,4368_15995,Spencer Dock,17455,1,4368_7778195_4461004,4368_616 -4358_80781,227,4368_15996,Spencer Dock,4680,1,4368_7778195_4461023,4368_616 -4358_80781,228,4368_15997,Spencer Dock,11690,1,4368_7778195_4461005,4368_616 -4358_80781,227,4368_15998,Spencer Dock,4691,1,4368_7778195_4461025,4368_616 -4358_80781,228,4368_15999,Spencer Dock,11884,1,4368_7778195_4461015,4368_616 -4358_80760,227,4368_16,Shaw street,1586,0,4368_7778195_9001005,4368_1 -4358_80760,228,4368_160,Shaw street,9390,0,4368_7778195_9001001,4368_1 -4358_80682,227,4368_1600,Grange Castle,7023,0,4368_7778195_8013031,4368_57 -4358_80781,229,4368_16000,Spencer Dock,17379,1,4368_7778195_4461006,4368_616 -4358_80781,227,4368_16001,Spencer Dock,4489,1,4368_7778195_4461004,4368_616 -4358_80781,228,4368_16002,Spencer Dock,11683,1,4368_7778195_4461007,4368_616 -4358_80781,229,4368_16003,Spencer Dock,17529,1,4368_7778195_4461015,4368_616 -4358_80781,227,4368_16004,Spencer Dock,4747,1,4368_7778195_4461031,4368_616 -4358_80781,228,4368_16005,Spencer Dock,11799,1,4368_7778195_4461017,4368_616 -4358_80781,229,4368_16006,Spencer Dock,17435,1,4368_7778195_4461003,4368_616 -4358_80781,227,4368_16007,Spencer Dock,4544,1,4368_7778195_4461010,4368_616 -4358_80781,228,4368_16008,Spencer Dock,11708,1,4368_7778195_4461004,4368_616 -4358_80781,227,4368_16009,Spencer Dock,4737,1,4368_7778195_4461027,4368_616 -4358_80682,227,4368_1601,Grange Castle,7040,0,4368_7778195_8013038,4368_51 -4358_80781,228,4368_16010,Spencer Dock,11736,1,4368_7778195_4461009,4368_616 -4358_80781,229,4368_16011,Spencer Dock,17586,1,4368_7778195_4461021,4368_616 -4358_80781,228,4368_16012,Spencer Dock,11602,1,4368_7778195_4461001,4368_616 -4358_80781,227,4368_16013,Spencer Dock,4753,1,4368_7778195_4461032,4368_616 -4358_80781,229,4368_16014,Spencer Dock,17467,1,4368_7778195_4461005,4368_616 -4358_80781,228,4368_16015,Spencer Dock,11759,1,4368_7778195_4461016,4368_616 -4358_80781,227,4368_16016,Spencer Dock,4473,1,4368_7778195_4461008,4368_616 -4358_80781,229,4368_16017,Spencer Dock,17422,1,4368_7778195_4461008,4368_616 -4358_80781,228,4368_16018,Spencer Dock,11747,1,4368_7778195_4461011,4368_616 -4358_80781,227,4368_16019,Spencer Dock,4600,1,4368_7778195_4461012,4368_617 -4358_80682,228,4368_1602,Grange Castle,13837,0,4368_7778195_8013025,4368_56 -4358_80781,229,4368_16020,Spencer Dock,17457,1,4368_7778195_4461004,4368_616 -4358_80781,227,4368_16021,Spencer Dock,4802,1,4368_7778195_4461039,4368_617 -4358_80781,228,4368_16022,Spencer Dock,11643,1,4368_7778195_4461025,4368_618 -4358_80781,227,4368_16023,Spencer Dock,4812,1,4368_7778195_4461040,4368_616 -4358_80781,228,4368_16024,Spencer Dock,11692,1,4368_7778195_4461005,4368_617 -4358_80781,229,4368_16025,Spencer Dock,17494,1,4368_7778195_4461010,4368_616 -4358_80781,228,4368_16026,Spencer Dock,11905,1,4368_7778195_4461028,4368_616 -4358_80781,227,4368_16027,Spencer Dock,4659,1,4368_7778195_4461018,4368_617 -4358_80781,229,4368_16028,Spencer Dock,17381,1,4368_7778195_4461006,4368_616 -4358_80781,228,4368_16029,Spencer Dock,11685,1,4368_7778195_4461007,4368_616 -4358_80682,229,4368_1603,Grange Castle,19125,0,4368_7778195_8013021,4368_57 -4358_80781,227,4368_16030,Spencer Dock,4502,1,4368_7778195_4461003,4368_617 -4358_80781,227,4368_16031,Spencer Dock,4781,1,4368_7778195_4461035,4368_616 -4358_80781,228,4368_16032,Spencer Dock,11801,1,4368_7778195_4461017,4368_617 -4358_80781,229,4368_16033,Spencer Dock,17531,1,4368_7778195_4461015,4368_618 -4358_80781,227,4368_16034,Spencer Dock,4651,1,4368_7778195_4461038,4368_616 -4358_80781,228,4368_16035,Spencer Dock,11710,1,4368_7778195_4461004,4368_617 -4358_80781,229,4368_16036,Spencer Dock,17437,1,4368_7778195_4461003,4368_616 -4358_80781,227,4368_16037,Spencer Dock,4697,1,4368_7778195_4461026,4368_616 -4358_80781,228,4368_16038,Spencer Dock,11738,1,4368_7778195_4461009,4368_617 -4358_80781,229,4368_16039,Spencer Dock,17562,1,4368_7778195_4461016,4368_616 -4358_80682,228,4368_1604,Grange Castle,13863,0,4368_7778195_8013026,4368_51 -4358_80781,227,4368_16040,Spencer Dock,4638,1,4368_7778195_4461029,4368_616 -4358_80781,228,4368_16041,Spencer Dock,11629,1,4368_7778195_4461026,4368_617 -4358_80781,227,4368_16042,Spencer Dock,4774,1,4368_7778195_4461033,4368_616 -4358_80781,229,4368_16043,Spencer Dock,17617,1,4368_7778195_4461020,4368_617 -4358_80781,228,4368_16044,Spencer Dock,11604,1,4368_7778195_4461001,4368_618 -4358_80781,228,4368_16045,Spencer Dock,11749,1,4368_7778195_4461011,4368_616 -4358_80781,227,4368_16046,Spencer Dock,4453,1,4368_7778195_4461021,4368_616 -4358_80781,229,4368_16047,Spencer Dock,17424,1,4368_7778195_4461008,4368_616 -4358_80781,228,4368_16048,Spencer Dock,11645,1,4368_7778195_4461025,4368_616 -4358_80781,227,4368_16049,Spencer Dock,4532,1,4368_7778195_4461002,4368_616 -4358_80682,227,4368_1605,Grange Castle,7048,0,4368_7778195_8013041,4368_56 -4358_80781,229,4368_16050,Spencer Dock,17459,1,4368_7778195_4461004,4368_616 -4358_80781,228,4368_16051,Spencer Dock,11729,1,4368_7778195_4461008,4368_616 -4358_80781,227,4368_16052,Spencer Dock,4791,1,4368_7778195_4461036,4368_616 -4358_80781,228,4368_16053,Spencer Dock,11694,1,4368_7778195_4461005,4368_616 -4358_80781,227,4368_16054,Spencer Dock,4711,1,4368_7778195_4461028,4368_616 -4358_80781,229,4368_16055,Spencer Dock,17496,1,4368_7778195_4461010,4368_617 -4358_80781,227,4368_16056,Spencer Dock,4724,1,4368_7778195_4461030,4368_616 -4358_80781,228,4368_16057,Spencer Dock,11834,1,4368_7778195_4461022,4368_616 -4358_80781,229,4368_16058,Spencer Dock,17383,1,4368_7778195_4461006,4368_616 -4358_80781,227,4368_16059,Spencer Dock,4609,1,4368_7778195_4461047,4368_616 -4358_80682,229,4368_1606,Grange Castle,19168,0,4368_7778195_8013038,4368_57 -4358_80781,228,4368_16060,Spencer Dock,11803,1,4368_7778195_4461017,4368_616 -4358_80781,227,4368_16061,Spencer Dock,4553,1,4368_7778195_4461043,4368_616 -4358_80781,229,4368_16062,Spencer Dock,17533,1,4368_7778195_4461015,4368_616 -4358_80781,228,4368_16063,Spencer Dock,11712,1,4368_7778195_4461004,4368_616 -4358_80781,227,4368_16064,Spencer Dock,4493,1,4368_7778195_4461004,4368_616 -4358_80781,228,4368_16065,Spencer Dock,11740,1,4368_7778195_4461009,4368_616 -4358_80781,229,4368_16066,Spencer Dock,17439,1,4368_7778195_4461003,4368_616 -4358_80781,227,4368_16067,Spencer Dock,4510,1,4368_7778195_4461048,4368_616 -4358_80781,228,4368_16068,Spencer Dock,11631,1,4368_7778195_4461026,4368_616 -4358_80781,227,4368_16069,Spencer Dock,4817,1,4368_7778195_4461052,4368_616 -4358_80682,228,4368_1607,Grange Castle,13872,0,4368_7778195_8013027,4368_51 -4358_80781,229,4368_16070,Spencer Dock,17564,1,4368_7778195_4461016,4368_616 -4358_80781,227,4368_16071,Spencer Dock,4548,1,4368_7778195_4461010,4368_616 -4358_80781,228,4368_16072,Spencer Dock,11606,1,4368_7778195_4461001,4368_616 -4358_80781,227,4368_16073,Spencer Dock,4519,1,4368_7778195_4461044,4368_616 -4358_80781,229,4368_16074,Spencer Dock,17447,1,4368_7778195_4461023,4368_616 -4358_80781,228,4368_16075,Spencer Dock,11751,1,4368_7778195_4461011,4368_616 -4358_80781,227,4368_16076,Spencer Dock,4741,1,4368_7778195_4461027,4368_616 -4358_80781,228,4368_16077,Spencer Dock,11814,1,4368_7778195_4461018,4368_616 -4358_80781,229,4368_16078,Spencer Dock,17426,1,4368_7778195_4461008,4368_616 -4358_80781,227,4368_16079,Spencer Dock,4757,1,4368_7778195_4461032,4368_616 -4358_80682,227,4368_1608,Grange Castle,6982,0,4368_7778195_8013019,4368_56 -4358_80781,228,4368_16080,Spencer Dock,11673,1,4368_7778195_4461003,4368_616 -4358_80781,227,4368_16081,Spencer Dock,4477,1,4368_7778195_4461008,4368_617 -4358_80781,229,4368_16082,Spencer Dock,17461,1,4368_7778195_4461004,4368_616 -4358_80781,227,4368_16083,Spencer Dock,4604,1,4368_7778195_4461012,4368_616 -4358_80781,228,4368_16084,Spencer Dock,11862,1,4368_7778195_4461030,4368_616 -4358_80781,227,4368_16085,Spencer Dock,4806,1,4368_7778195_4461039,4368_616 -4358_80781,229,4368_16086,Spencer Dock,17498,1,4368_7778195_4461010,4368_617 -4358_80781,228,4368_16087,Spencer Dock,11867,1,4368_7778195_4461032,4368_616 -4358_80781,227,4368_16088,Spencer Dock,4713,1,4368_7778195_4461028,4368_616 -4358_80781,229,4368_16089,Spencer Dock,17385,1,4368_7778195_4461006,4368_616 -4358_80682,229,4368_1609,Grange Castle,19149,0,4368_7778195_8013029,4368_57 -4358_80781,228,4368_16090,Spencer Dock,11909,1,4368_7778195_4461028,4368_617 -4358_80781,227,4368_16091,Spencer Dock,4726,1,4368_7778195_4461030,4368_616 -4358_80781,227,4368_16092,Spencer Dock,4795,1,4368_7778195_4461054,4368_616 -4358_80781,228,4368_16093,Spencer Dock,11855,1,4368_7778195_4461029,4368_616 -4358_80781,229,4368_16094,Spencer Dock,17535,1,4368_7778195_4461015,4368_616 -4358_80781,227,4368_16095,Spencer Dock,4611,1,4368_7778195_4461047,4368_616 -4358_80781,228,4368_16096,Spencer Dock,11714,1,4368_7778195_4461004,4368_616 -4358_80781,229,4368_16097,Spencer Dock,17566,1,4368_7778195_4461016,4368_616 -4358_80781,227,4368_16098,Spencer Dock,4495,1,4368_7778195_4461004,4368_616 -4358_80781,228,4368_16099,Spencer Dock,11779,1,4368_7778195_4461012,4368_616 -4358_80760,227,4368_161,Shaw street,1713,0,4368_7778195_9001008,4368_1 -4358_80682,227,4368_1610,Grange Castle,6880,0,4368_7778195_8013008,4368_51 -4358_80781,227,4368_16100,Spencer Dock,4512,1,4368_7778195_4461048,4368_616 -4358_80781,229,4368_16101,Spencer Dock,17449,1,4368_7778195_4461023,4368_616 -4358_80781,228,4368_16102,Spencer Dock,11827,1,4368_7778195_4461020,4368_617 -4358_80781,227,4368_16103,Spencer Dock,4550,1,4368_7778195_4461010,4368_616 -4358_80781,228,4368_16104,Spencer Dock,11816,1,4368_7778195_4461018,4368_616 -4358_80781,227,4368_16105,Spencer Dock,4521,1,4368_7778195_4461044,4368_616 -4358_80781,229,4368_16106,Spencer Dock,17428,1,4368_7778195_4461008,4368_616 -4358_80781,227,4368_16107,Spencer Dock,4759,1,4368_7778195_4461032,4368_616 -4358_80781,228,4368_16108,Spencer Dock,11927,1,4368_7778195_4461042,4368_616 -4358_80781,227,4368_16109,Spencer Dock,4479,1,4368_7778195_4461008,4368_616 -4358_80682,228,4368_1611,Grange Castle,13625,0,4368_7778195_8013007,4368_56 -4358_80781,228,4368_16110,Spencer Dock,11917,1,4368_7778195_4461039,4368_616 -4358_80781,229,4368_16111,Spencer Dock,17596,1,4368_7778195_4461025,4368_617 -4358_80781,227,4368_16112,Spencer Dock,4606,1,4368_7778195_4461012,4368_616 -4358_80781,228,4368_16113,Spencer Dock,11869,1,4368_7778195_4461032,4368_616 -4358_80781,227,4368_16114,Spencer Dock,4808,1,4368_7778195_4461039,4368_616 -4358_80781,229,4368_16115,Spencer Dock,17387,1,4368_7778195_4461006,4368_616 -4358_80781,228,4368_16116,Spencer Dock,11660,1,4368_7778195_4461002,4368_616 -4358_80781,227,4368_16117,Spencer Dock,4665,1,4368_7778195_4461018,4368_617 -4358_80781,227,4368_16118,Spencer Dock,4508,1,4368_7778195_4461003,4368_616 -4358_80781,229,4368_16119,Spencer Dock,17568,1,4368_7778195_4461016,4368_616 -4358_80682,229,4368_1612,Grange Castle,19137,0,4368_7778195_8013025,4368_57 -4358_80781,228,4368_16120,Spencer Dock,11716,1,4368_7778195_4461004,4368_616 -4358_80781,227,4368_16121,Spencer Dock,4732,1,4368_7778195_4461061,4368_616 -4358_80781,228,4368_16122,Spencer Dock,11635,1,4368_7778195_4461026,4368_616 -4358_80781,227,4368_16123,Spencer Dock,4514,1,4368_7778195_4461048,4368_616 -4358_80781,229,4368_16124,Spencer Dock,17451,1,4368_7778195_4461023,4368_616 -4358_80781,227,4368_16125,Spencer Dock,4644,1,4368_7778195_4461029,4368_616 -4358_80781,228,4368_16126,Spencer Dock,11818,1,4368_7778195_4461018,4368_617 -4358_80781,227,4368_16127,Spencer Dock,4829,1,4368_7778195_4461058,4368_616 -4358_80781,229,4368_16128,Spencer Dock,17430,1,4368_7778195_4461008,4368_616 -4358_80781,228,4368_16129,Spencer Dock,11929,1,4368_7778195_4461042,4368_616 -4358_80682,228,4368_1613,Grange Castle,13875,0,4368_7778195_8013028,4368_51 -4358_80781,227,4368_16130,Spencer Dock,4459,1,4368_7778195_4461021,4368_616 -4358_80781,228,4368_16131,Spencer Dock,11919,1,4368_7778195_4461039,4368_616 -4358_80781,227,4368_16132,Spencer Dock,4810,1,4368_7778195_4461039,4368_616 -4358_80781,229,4368_16133,Spencer Dock,17598,1,4368_7778195_4461025,4368_616 -4358_80781,228,4368_16134,Spencer Dock,11871,1,4368_7778195_4461032,4368_616 -4358_80781,227,4368_16135,Spencer Dock,4667,1,4368_7778195_4461018,4368_617 -4358_80781,229,4368_16136,Spencer Dock,17389,1,4368_7778195_4461006,4368_616 -4358_80781,227,4368_16137,Spencer Dock,4734,1,4368_7778195_4461061,4368_616 -4358_80781,228,4368_16138,Spencer Dock,11783,1,4368_7778195_4461012,4368_617 -4358_80781,229,4368_16139,Spencer Dock,17570,1,4368_7778195_4461016,4368_616 -4358_80682,227,4368_1614,Grange Castle,6819,0,4368_7778195_8013003,4368_56 -4358_80781,229,4368_16140,Spencer Dock,17413,1,4368_7778195_4461031,4368_616 -4358_80781,227,4368_16141,Spencer Dock,4578,1,4368_7778195_4461062,4368_616 -4358_80781,228,4368_16142,Spencer Dock,11612,1,4368_7778195_4461045,4368_616 -4358_80781,229,4368_16143,Spencer Dock,17481,1,4368_7778195_4461032,4368_616 -4358_80781,227,4368_16144,Spencer Dock,4834,1,4368_7778195_4461063,4368_616 -4358_80781,228,4368_16145,Spencer Dock,11899,1,4368_7778195_4461046,4368_617 -4358_80781,229,4368_16146,Spencer Dock,17600,1,4368_7778195_4461035,4368_616 -4358_80781,228,4368_16147,Spencer Dock,11846,1,4368_7778195_4461049,4368_616 -4358_80781,227,4368_16148,Spencer Dock,4580,1,4368_7778195_4461062,4368_617 -4358_80781,229,4368_16149,Spencer Dock,17483,1,4368_7778195_4461032,4368_616 -4358_80682,229,4368_1615,Grange Castle,19161,0,4368_7778195_8013034,4368_57 -4358_80781,227,4368_16150,Spencer Dock,4836,1,4368_7778195_4461063,4368_616 -4358_80781,228,4368_16151,Spencer Dock,11901,1,4368_7778195_4461046,4368_617 -4358_80781,229,4368_16152,Spencer Dock,17602,1,4368_7778195_4461035,4368_616 -4358_80781,228,4368_16153,Spencer Dock,11848,1,4368_7778195_4461049,4368_616 -4358_80781,227,4368_16154,Spencer Dock,4582,1,4368_7778195_4461062,4368_617 -4358_80782,229,4368_16155,Liffey Valley SC,17399,0,4368_7778195_4461001,4368_619 -4358_80782,228,4368_16156,Liffey Valley SC,11647,0,4368_7778195_4461002,4368_620 -4358_80782,227,4368_16157,Liffey Valley SC,4560,0,4368_7778195_4461005,4368_619 -4358_80782,227,4368_16158,Liffey Valley SC,4444,0,4368_7778195_4461001,4368_619 -4358_80782,229,4368_16159,Liffey Valley SC,17374,0,4368_7778195_4461002,4368_619 -4358_80682,228,4368_1616,Grange Castle,13645,0,4368_7778195_8013010,4368_51 -4358_80782,227,4368_16160,Liffey Valley SC,4615,0,4368_7778195_4461013,4368_619 -4358_80782,228,4368_16161,Liffey Valley SC,11664,0,4368_7778195_4461003,4368_619 -4358_80782,227,4368_16162,Liffey Valley SC,4627,0,4368_7778195_4461015,4368_619 -4358_80782,227,4368_16163,Liffey Valley SC,4625,0,4368_7778195_4461019,4368_619 -4358_80782,228,4368_16164,Liffey Valley SC,11687,0,4368_7778195_4461005,4368_619 -4358_80782,227,4368_16165,Liffey Valley SC,4448,0,4368_7778195_4461021,4368_619 -4358_80782,229,4368_16166,Liffey Valley SC,17401,0,4368_7778195_4461001,4368_619 -4358_80782,227,4368_16167,Liffey Valley SC,4586,0,4368_7778195_4461009,4368_619 -4358_80782,228,4368_16168,Liffey Valley SC,11770,0,4368_7778195_4461012,4368_619 -4358_80782,227,4368_16169,Liffey Valley SC,4597,0,4368_7778195_4461012,4368_619 -4358_80682,229,4368_1617,Grange Castle,19163,0,4368_7778195_8013035,4368_56 -4358_80782,227,4368_16170,Liffey Valley SC,4621,0,4368_7778195_4461014,4368_619 -4358_80782,228,4368_16171,Liffey Valley SC,11733,0,4368_7778195_4461009,4368_619 -4358_80782,227,4368_16172,Liffey Valley SC,4562,0,4368_7778195_4461005,4368_619 -4358_80782,229,4368_16173,Liffey Valley SC,17390,0,4368_7778195_4461007,4368_619 -4358_80782,227,4368_16174,Liffey Valley SC,4647,0,4368_7778195_4461017,4368_619 -4358_80782,228,4368_16175,Liffey Valley SC,11599,0,4368_7778195_4461001,4368_619 -4358_80782,227,4368_16176,Liffey Valley SC,4559,0,4368_7778195_4461007,4368_619 -4358_80782,228,4368_16177,Liffey Valley SC,11744,0,4368_7778195_4461011,4368_619 -4358_80782,227,4368_16178,Liffey Valley SC,4674,0,4368_7778195_4461022,4368_619 -4358_80782,229,4368_16179,Liffey Valley SC,17376,0,4368_7778195_4461002,4368_619 -4358_80682,227,4368_1618,Grange Castle,7051,0,4368_7778195_8013042,4368_57 -4358_80782,227,4368_16180,Liffey Valley SC,4499,0,4368_7778195_4461003,4368_619 -4358_80782,228,4368_16181,Liffey Valley SC,11724,0,4368_7778195_4461008,4368_619 -4358_80782,227,4368_16182,Liffey Valley SC,4778,0,4368_7778195_4461035,4368_619 -4358_80782,229,4368_16183,Liffey Valley SC,17472,0,4368_7778195_4461012,4368_619 -4358_80782,227,4368_16184,Liffey Valley SC,4629,0,4368_7778195_4461015,4368_619 -4358_80782,228,4368_16185,Liffey Valley SC,11793,0,4368_7778195_4461014,4368_619 -4358_80782,227,4368_16186,Liffey Valley SC,4694,0,4368_7778195_4461026,4368_619 -4358_80782,228,4368_16187,Liffey Valley SC,11651,0,4368_7778195_4461002,4368_619 -4358_80782,229,4368_16188,Liffey Valley SC,17403,0,4368_7778195_4461001,4368_619 -4358_80782,227,4368_16189,Liffey Valley SC,4635,0,4368_7778195_4461029,4368_619 -4358_80682,228,4368_1619,Grange Castle,13878,0,4368_7778195_8013029,4368_51 -4358_80782,228,4368_16190,Liffey Valley SC,11772,0,4368_7778195_4461012,4368_619 -4358_80782,227,4368_16191,Liffey Valley SC,4771,0,4368_7778195_4461033,4368_619 -4358_80782,228,4368_16192,Liffey Valley SC,11820,0,4368_7778195_4461020,4368_619 -4358_80782,229,4368_16193,Liffey Valley SC,17508,0,4368_7778195_4461011,4368_619 -4358_80782,227,4368_16194,Liffey Valley SC,4450,0,4368_7778195_4461021,4368_619 -4358_80782,228,4368_16195,Liffey Valley SC,11786,0,4368_7778195_4461013,4368_619 -4358_80782,227,4368_16196,Liffey Valley SC,4529,0,4368_7778195_4461002,4368_619 -4358_80782,228,4368_16197,Liffey Valley SC,11616,0,4368_7778195_4461010,4368_619 -4358_80782,229,4368_16198,Liffey Valley SC,17392,0,4368_7778195_4461007,4368_619 -4358_80782,227,4368_16199,Liffey Valley SC,4788,0,4368_7778195_4461036,4368_619 -4358_80760,229,4368_162,Shaw street,15523,0,4368_7778195_9001003,4368_2 -4358_80682,227,4368_1620,Grange Castle,7055,0,4368_7778195_8013043,4368_56 -4358_80782,228,4368_16200,Liffey Valley SC,11809,0,4368_7778195_4461018,4368_619 -4358_80782,229,4368_16201,Liffey Valley SC,17536,0,4368_7778195_4461017,4368_619 -4358_80782,227,4368_16202,Liffey Valley SC,4708,0,4368_7778195_4461028,4368_619 -4358_80782,228,4368_16203,Liffey Valley SC,11668,0,4368_7778195_4461003,4368_619 -4358_80782,227,4368_16204,Liffey Valley SC,4721,0,4368_7778195_4461030,4368_619 -4358_80782,228,4368_16205,Liffey Valley SC,11726,0,4368_7778195_4461008,4368_619 -4358_80782,229,4368_16206,Liffey Valley SC,17521,0,4368_7778195_4461013,4368_619 -4358_80782,227,4368_16207,Liffey Valley SC,4681,0,4368_7778195_4461023,4368_619 -4358_80782,228,4368_16208,Liffey Valley SC,11831,0,4368_7778195_4461022,4368_619 -4358_80782,229,4368_16209,Liffey Valley SC,17548,0,4368_7778195_4461014,4368_619 -4358_80682,229,4368_1621,Grange Castle,19165,0,4368_7778195_8013036,4368_57 -4358_80782,227,4368_16210,Liffey Valley SC,4692,0,4368_7778195_4461025,4368_619 -4358_80782,228,4368_16211,Liffey Valley SC,11795,0,4368_7778195_4461014,4368_619 -4358_80782,229,4368_16212,Liffey Valley SC,17474,0,4368_7778195_4461012,4368_619 -4358_80782,228,4368_16213,Liffey Valley SC,11653,0,4368_7778195_4461002,4368_619 -4358_80782,227,4368_16214,Liffey Valley SC,4490,0,4368_7778195_4461004,4368_620 -4358_80782,229,4368_16215,Liffey Valley SC,17405,0,4368_7778195_4461001,4368_619 -4358_80782,228,4368_16216,Liffey Valley SC,11774,0,4368_7778195_4461012,4368_619 -4358_80782,227,4368_16217,Liffey Valley SC,4748,0,4368_7778195_4461031,4368_619 -4358_80782,228,4368_16218,Liffey Valley SC,11822,0,4368_7778195_4461020,4368_619 -4358_80782,227,4368_16219,Liffey Valley SC,4545,0,4368_7778195_4461010,4368_619 -4358_80682,228,4368_1622,Grange Castle,13880,0,4368_7778195_8013030,4368_51 -4358_80782,229,4368_16220,Liffey Valley SC,17572,0,4368_7778195_4461019,4368_619 -4358_80782,228,4368_16221,Liffey Valley SC,11788,0,4368_7778195_4461013,4368_619 -4358_80782,227,4368_16222,Liffey Valley SC,4738,0,4368_7778195_4461027,4368_619 -4358_80782,229,4368_16223,Liffey Valley SC,17510,0,4368_7778195_4461011,4368_619 -4358_80782,228,4368_16224,Liffey Valley SC,11618,0,4368_7778195_4461010,4368_619 -4358_80782,227,4368_16225,Liffey Valley SC,4754,0,4368_7778195_4461032,4368_619 -4358_80782,229,4368_16226,Liffey Valley SC,17394,0,4368_7778195_4461007,4368_619 -4358_80782,228,4368_16227,Liffey Valley SC,11811,0,4368_7778195_4461018,4368_619 -4358_80782,227,4368_16228,Liffey Valley SC,4474,0,4368_7778195_4461008,4368_619 -4358_80782,228,4368_16229,Liffey Valley SC,11670,0,4368_7778195_4461003,4368_619 -4358_80682,227,4368_1623,Grange Castle,7057,0,4368_7778195_8013045,4368_56 -4358_80782,227,4368_16230,Liffey Valley SC,4601,0,4368_7778195_4461012,4368_619 -4358_80782,229,4368_16231,Liffey Valley SC,17538,0,4368_7778195_4461017,4368_619 -4358_80782,228,4368_16232,Liffey Valley SC,11859,0,4368_7778195_4461030,4368_619 -4358_80782,227,4368_16233,Liffey Valley SC,4803,0,4368_7778195_4461039,4368_619 -4358_80782,229,4368_16234,Liffey Valley SC,17523,0,4368_7778195_4461013,4368_619 -4358_80782,228,4368_16235,Liffey Valley SC,11864,0,4368_7778195_4461032,4368_619 -4358_80782,227,4368_16236,Liffey Valley SC,4813,0,4368_7778195_4461040,4368_619 -4358_80782,229,4368_16237,Liffey Valley SC,17550,0,4368_7778195_4461014,4368_619 -4358_80782,228,4368_16238,Liffey Valley SC,11906,0,4368_7778195_4461028,4368_619 -4358_80782,227,4368_16239,Liffey Valley SC,4660,0,4368_7778195_4461018,4368_619 -4358_80682,229,4368_1624,Grange Castle,19167,0,4368_7778195_8013037,4368_57 -4358_80782,228,4368_16240,Liffey Valley SC,11797,0,4368_7778195_4461014,4368_619 -4358_80782,227,4368_16241,Liffey Valley SC,4503,0,4368_7778195_4461003,4368_619 -4358_80782,229,4368_16242,Liffey Valley SC,17476,0,4368_7778195_4461012,4368_619 -4358_80782,228,4368_16243,Liffey Valley SC,11852,0,4368_7778195_4461029,4368_619 -4358_80782,227,4368_16244,Liffey Valley SC,4782,0,4368_7778195_4461035,4368_619 -4358_80782,229,4368_16245,Liffey Valley SC,17407,0,4368_7778195_4461001,4368_619 -4358_80782,227,4368_16246,Liffey Valley SC,4652,0,4368_7778195_4461038,4368_619 -4358_80782,228,4368_16247,Liffey Valley SC,11655,0,4368_7778195_4461002,4368_620 -4358_80782,229,4368_16248,Liffey Valley SC,17574,0,4368_7778195_4461019,4368_619 -4358_80782,227,4368_16249,Liffey Valley SC,4698,0,4368_7778195_4461026,4368_619 -4358_80682,228,4368_1625,Grange Castle,13582,0,4368_7778195_8013001,4368_51 -4358_80782,228,4368_16250,Liffey Valley SC,11776,0,4368_7778195_4461012,4368_620 -4358_80782,227,4368_16251,Liffey Valley SC,4639,0,4368_7778195_4461029,4368_619 -4358_80782,228,4368_16252,Liffey Valley SC,11824,0,4368_7778195_4461020,4368_620 -4358_80782,229,4368_16253,Liffey Valley SC,17512,0,4368_7778195_4461011,4368_619 -4358_80782,227,4368_16254,Liffey Valley SC,4775,0,4368_7778195_4461033,4368_619 -4358_80782,228,4368_16255,Liffey Valley SC,11790,0,4368_7778195_4461013,4368_620 -4358_80782,229,4368_16256,Liffey Valley SC,17396,0,4368_7778195_4461007,4368_619 -4358_80782,228,4368_16257,Liffey Valley SC,11620,0,4368_7778195_4461010,4368_619 -4358_80782,227,4368_16258,Liffey Valley SC,4454,0,4368_7778195_4461021,4368_619 -4358_80782,229,4368_16259,Liffey Valley SC,17540,0,4368_7778195_4461017,4368_619 -4358_80682,229,4368_1626,Grange Castle,19146,0,4368_7778195_8013028,4368_56 -4358_80782,227,4368_16260,Liffey Valley SC,4533,0,4368_7778195_4461002,4368_619 -4358_80782,228,4368_16261,Liffey Valley SC,11646,0,4368_7778195_4461025,4368_620 -4358_80782,227,4368_16262,Liffey Valley SC,4570,0,4368_7778195_4461050,4368_619 -4358_80782,228,4368_16263,Liffey Valley SC,11730,0,4368_7778195_4461008,4368_619 -4358_80782,229,4368_16264,Liffey Valley SC,17525,0,4368_7778195_4461013,4368_619 -4358_80782,227,4368_16265,Liffey Valley SC,4792,0,4368_7778195_4461036,4368_619 -4358_80782,228,4368_16266,Liffey Valley SC,11695,0,4368_7778195_4461005,4368_619 -4358_80782,227,4368_16267,Liffey Valley SC,4815,0,4368_7778195_4461040,4368_619 -4358_80782,229,4368_16268,Liffey Valley SC,17552,0,4368_7778195_4461014,4368_619 -4358_80782,228,4368_16269,Liffey Valley SC,11835,0,4368_7778195_4461022,4368_619 -4358_80682,227,4368_1627,Grange Castle,7059,0,4368_7778195_8013046,4368_57 -4358_80782,227,4368_16270,Liffey Valley SC,4662,0,4368_7778195_4461018,4368_619 -4358_80782,228,4368_16271,Liffey Valley SC,11804,0,4368_7778195_4461017,4368_619 -4358_80782,229,4368_16272,Liffey Valley SC,17478,0,4368_7778195_4461012,4368_619 -4358_80782,227,4368_16273,Liffey Valley SC,4447,0,4368_7778195_4461056,4368_619 -4358_80782,228,4368_16274,Liffey Valley SC,11657,0,4368_7778195_4461002,4368_619 -4358_80782,227,4368_16275,Liffey Valley SC,4505,0,4368_7778195_4461003,4368_619 -4358_80782,229,4368_16276,Liffey Valley SC,17409,0,4368_7778195_4461001,4368_619 -4358_80782,227,4368_16277,Liffey Valley SC,4784,0,4368_7778195_4461035,4368_619 -4358_80782,228,4368_16278,Liffey Valley SC,11741,0,4368_7778195_4461009,4368_619 -4358_80782,227,4368_16279,Liffey Valley SC,4654,0,4368_7778195_4461038,4368_619 -4358_80682,228,4368_1628,Grange Castle,13882,0,4368_7778195_8013031,4368_51 -4358_80782,229,4368_16280,Liffey Valley SC,17576,0,4368_7778195_4461019,4368_619 -4358_80782,228,4368_16281,Liffey Valley SC,11632,0,4368_7778195_4461026,4368_619 -4358_80782,227,4368_16282,Liffey Valley SC,4764,0,4368_7778195_4461051,4368_619 -4358_80782,227,4368_16283,Liffey Valley SC,4700,0,4368_7778195_4461026,4368_619 -4358_80782,229,4368_16284,Liffey Valley SC,17514,0,4368_7778195_4461011,4368_619 -4358_80782,228,4368_16285,Liffey Valley SC,11607,0,4368_7778195_4461001,4368_620 -4358_80782,227,4368_16286,Liffey Valley SC,4641,0,4368_7778195_4461029,4368_619 -4358_80782,228,4368_16287,Liffey Valley SC,11895,0,4368_7778195_4461037,4368_619 -4358_80782,229,4368_16288,Liffey Valley SC,17398,0,4368_7778195_4461007,4368_619 -4358_80782,227,4368_16289,Liffey Valley SC,4824,0,4368_7778195_4461055,4368_619 -4358_80682,229,4368_1629,Grange Castle,19061,0,4368_7778195_8013001,4368_56 -4358_80782,228,4368_16290,Liffey Valley SC,11622,0,4368_7778195_4461010,4368_619 -4358_80782,227,4368_16291,Liffey Valley SC,4777,0,4368_7778195_4461033,4368_619 -4358_80782,228,4368_16292,Liffey Valley SC,11674,0,4368_7778195_4461003,4368_619 -4358_80782,229,4368_16293,Liffey Valley SC,17542,0,4368_7778195_4461017,4368_619 -4358_80782,227,4368_16294,Liffey Valley SC,4826,0,4368_7778195_4461058,4368_619 -4358_80782,228,4368_16295,Liffey Valley SC,11863,0,4368_7778195_4461030,4368_619 -4358_80782,229,4368_16296,Liffey Valley SC,17527,0,4368_7778195_4461013,4368_619 -4358_80782,227,4368_16297,Liffey Valley SC,4456,0,4368_7778195_4461021,4368_619 -4358_80782,228,4368_16298,Liffey Valley SC,11837,0,4368_7778195_4461022,4368_619 -4358_80782,227,4368_16299,Liffey Valley SC,4535,0,4368_7778195_4461002,4368_619 -4358_80760,228,4368_163,Shaw street,9520,0,4368_7778195_9001005,4368_1 -4358_80682,227,4368_1630,Grange Castle,6838,0,4368_7778195_8013047,4368_57 -4358_80782,229,4368_16300,Liffey Valley SC,17554,0,4368_7778195_4461014,4368_619 -4358_80782,227,4368_16301,Liffey Valley SC,4714,0,4368_7778195_4461028,4368_619 -4358_80782,228,4368_16302,Liffey Valley SC,11806,0,4368_7778195_4461017,4368_619 -4358_80782,227,4368_16303,Liffey Valley SC,4796,0,4368_7778195_4461054,4368_619 -4358_80782,228,4368_16304,Liffey Valley SC,11856,0,4368_7778195_4461029,4368_619 -4358_80782,229,4368_16305,Liffey Valley SC,17411,0,4368_7778195_4461001,4368_619 -4358_80782,227,4368_16306,Liffey Valley SC,4612,0,4368_7778195_4461047,4368_619 -4358_80782,228,4368_16307,Liffey Valley SC,11780,0,4368_7778195_4461012,4368_619 -4358_80782,227,4368_16308,Liffey Valley SC,4786,0,4368_7778195_4461035,4368_619 -4358_80782,229,4368_16309,Liffey Valley SC,17578,0,4368_7778195_4461019,4368_619 -4358_80682,228,4368_1631,Grange Castle,13712,0,4368_7778195_8013022,4368_51 -4358_80782,227,4368_16310,Liffey Valley SC,4766,0,4368_7778195_4461051,4368_619 -4358_80782,228,4368_16311,Liffey Valley SC,11609,0,4368_7778195_4461001,4368_619 -4358_80782,227,4368_16312,Liffey Valley SC,4522,0,4368_7778195_4461044,4368_619 -4358_80782,229,4368_16313,Liffey Valley SC,17516,0,4368_7778195_4461011,4368_619 -4358_80782,228,4368_16314,Liffey Valley SC,11897,0,4368_7778195_4461037,4368_619 -4358_80782,227,4368_16315,Liffey Valley SC,4760,0,4368_7778195_4461032,4368_619 -4358_80782,227,4368_16316,Liffey Valley SC,4480,0,4368_7778195_4461008,4368_619 -4358_80782,228,4368_16317,Liffey Valley SC,11676,0,4368_7778195_4461003,4368_619 -4358_80782,229,4368_16318,Liffey Valley SC,17544,0,4368_7778195_4461017,4368_619 -4358_80782,227,4368_16319,Liffey Valley SC,4607,0,4368_7778195_4461012,4368_619 -4358_80682,229,4368_1632,Grange Castle,19154,0,4368_7778195_8013030,4368_56 -4358_80782,228,4368_16320,Liffey Valley SC,11839,0,4368_7778195_4461022,4368_619 -4358_80782,227,4368_16321,Liffey Valley SC,4716,0,4368_7778195_4461028,4368_619 -4358_80782,229,4368_16322,Liffey Valley SC,17556,0,4368_7778195_4461014,4368_619 -4358_80782,228,4368_16323,Liffey Valley SC,11661,0,4368_7778195_4461002,4368_619 -4358_80782,227,4368_16324,Liffey Valley SC,4798,0,4368_7778195_4461054,4368_619 -4358_80782,227,4368_16325,Liffey Valley SC,4614,0,4368_7778195_4461047,4368_619 -4358_80782,228,4368_16326,Liffey Valley SC,11717,0,4368_7778195_4461004,4368_619 -4358_80782,229,4368_16327,Liffey Valley SC,17580,0,4368_7778195_4461019,4368_619 -4358_80782,227,4368_16328,Liffey Valley SC,4768,0,4368_7778195_4461051,4368_619 -4358_80782,228,4368_16329,Liffey Valley SC,11636,0,4368_7778195_4461026,4368_619 -4358_80682,227,4368_1633,Grange Castle,7014,0,4368_7778195_8013028,4368_57 -4358_80782,227,4368_16330,Liffey Valley SC,4524,0,4368_7778195_4461044,4368_619 -4358_80782,229,4368_16331,Liffey Valley SC,17518,0,4368_7778195_4461011,4368_619 -4358_80782,228,4368_16332,Liffey Valley SC,11819,0,4368_7778195_4461018,4368_619 -4358_80782,227,4368_16333,Liffey Valley SC,4762,0,4368_7778195_4461032,4368_619 -4358_80782,228,4368_16334,Liffey Valley SC,11678,0,4368_7778195_4461003,4368_619 -4358_80782,227,4368_16335,Liffey Valley SC,4460,0,4368_7778195_4461021,4368_619 -4358_80782,229,4368_16336,Liffey Valley SC,17546,0,4368_7778195_4461017,4368_619 -4358_80782,228,4368_16337,Liffey Valley SC,11841,0,4368_7778195_4461022,4368_619 -4358_80782,227,4368_16338,Liffey Valley SC,4718,0,4368_7778195_4461028,4368_619 -4358_80782,229,4368_16339,Liffey Valley SC,17558,0,4368_7778195_4461014,4368_619 -4358_80682,227,4368_1634,Harristown,6716,1,4368_7778195_8013002,4368_59 -4358_80782,228,4368_16340,Liffey Valley SC,11699,0,4368_7778195_4461048,4368_619 -4358_80782,227,4368_16341,Liffey Valley SC,4838,0,4368_7778195_4461065,4368_619 -4358_80782,229,4368_16342,Liffey Valley SC,17624,0,4368_7778195_4461034,4368_619 -4358_80782,228,4368_16343,Liffey Valley SC,11639,0,4368_7778195_4461047,4368_619 -4358_80782,227,4368_16344,Liffey Valley SC,4567,0,4368_7778195_4461064,4368_619 -4358_80782,229,4368_16345,Liffey Valley SC,17416,0,4368_7778195_4461033,4368_619 -4358_80782,228,4368_16346,Liffey Valley SC,11701,0,4368_7778195_4461048,4368_619 -4358_80782,227,4368_16347,Liffey Valley SC,4840,0,4368_7778195_4461065,4368_619 -4358_80782,229,4368_16348,Liffey Valley SC,17626,0,4368_7778195_4461034,4368_619 -4358_80782,227,4368_16349,Liffey Valley SC,4569,0,4368_7778195_4461064,4368_619 -4358_80682,228,4368_1635,Harristown,13573,1,4368_7778195_8013001,4368_59 -4358_80782,229,4368_16350,Liffey Valley SC,17418,0,4368_7778195_4461033,4368_619 -4358_80782,228,4368_16351,Liffey Valley SC,11641,0,4368_7778195_4461047,4368_619 -4358_80782,228,4368_16352,Spencer Dock,11596,1,4368_7778195_4461001,4368_621 -4358_80782,229,4368_16353,Spencer Dock,17373,1,4368_7778195_4461002,4368_621 -4358_80782,227,4368_16354,Spencer Dock,4496,1,4368_7778195_4461003,4368_621 -4358_80782,227,4368_16355,Spencer Dock,4572,1,4368_7778195_4461006,4368_621 -4358_80782,229,4368_16356,Spencer Dock,17400,1,4368_7778195_4461001,4368_621 -4358_80782,227,4368_16357,Spencer Dock,4585,1,4368_7778195_4461009,4368_621 -4358_80782,228,4368_16358,Spencer Dock,11648,1,4368_7778195_4461002,4368_621 -4358_80782,227,4368_16359,Spencer Dock,4596,1,4368_7778195_4461012,4368_621 -4358_80682,227,4368_1636,Harristown,6820,1,4368_7778195_8013004,4368_59 -4358_80782,227,4368_16360,Spencer Dock,4561,1,4368_7778195_4461005,4368_621 -4358_80782,228,4368_16361,Spencer Dock,11732,1,4368_7778195_4461009,4368_621 -4358_80782,227,4368_16362,Spencer Dock,4655,1,4368_7778195_4461018,4368_621 -4358_80782,227,4368_16363,Spencer Dock,4445,1,4368_7778195_4461001,4368_621 -4358_80782,229,4368_16364,Spencer Dock,17375,1,4368_7778195_4461002,4368_621 -4358_80782,228,4368_16365,Spencer Dock,11613,1,4368_7778195_4461010,4368_621 -4358_80782,227,4368_16366,Spencer Dock,4678,1,4368_7778195_4461023,4368_621 -4358_80782,227,4368_16367,Spencer Dock,4616,1,4368_7778195_4461013,4368_621 -4358_80782,228,4368_16368,Spencer Dock,11665,1,4368_7778195_4461003,4368_621 -4358_80782,227,4368_16369,Spencer Dock,4628,1,4368_7778195_4461015,4368_621 -4358_80682,228,4368_1637,Harristown,13583,1,4368_7778195_8013002,4368_59 -4358_80782,227,4368_16370,Spencer Dock,4693,1,4368_7778195_4461026,4368_621 -4358_80782,228,4368_16371,Spencer Dock,11688,1,4368_7778195_4461005,4368_621 -4358_80782,227,4368_16372,Spencer Dock,4634,1,4368_7778195_4461029,4368_621 -4358_80782,227,4368_16373,Spencer Dock,4626,1,4368_7778195_4461019,4368_621 -4358_80782,229,4368_16374,Spencer Dock,17402,1,4368_7778195_4461001,4368_621 -4358_80782,228,4368_16375,Spencer Dock,11882,1,4368_7778195_4461015,4368_621 -4358_80782,227,4368_16376,Spencer Dock,4770,1,4368_7778195_4461033,4368_621 -4358_80782,227,4368_16377,Spencer Dock,4449,1,4368_7778195_4461021,4368_621 -4358_80782,228,4368_16378,Spencer Dock,11771,1,4368_7778195_4461012,4368_621 -4358_80782,227,4368_16379,Spencer Dock,4587,1,4368_7778195_4461009,4368_621 -4358_80682,227,4368_1638,Harristown,6822,1,4368_7778195_8013005,4368_61 -4358_80782,229,4368_16380,Spencer Dock,17507,1,4368_7778195_4461011,4368_621 -4358_80782,227,4368_16381,Spencer Dock,4598,1,4368_7778195_4461012,4368_621 -4358_80782,228,4368_16382,Spencer Dock,11734,1,4368_7778195_4461009,4368_621 -4358_80782,227,4368_16383,Spencer Dock,4787,1,4368_7778195_4461036,4368_621 -4358_80782,229,4368_16384,Spencer Dock,17391,1,4368_7778195_4461007,4368_621 -4358_80782,228,4368_16385,Spencer Dock,11600,1,4368_7778195_4461001,4368_621 -4358_80782,227,4368_16386,Spencer Dock,4622,1,4368_7778195_4461014,4368_621 -4358_80782,228,4368_16387,Spencer Dock,11757,1,4368_7778195_4461016,4368_621 -4358_80782,227,4368_16388,Spencer Dock,4563,1,4368_7778195_4461005,4368_621 -4358_80782,228,4368_16389,Spencer Dock,11745,1,4368_7778195_4461011,4368_621 -4358_80682,227,4368_1639,Harristown,6834,1,4368_7778195_8013007,4368_59 -4358_80782,229,4368_16390,Spencer Dock,17520,1,4368_7778195_4461013,4368_621 -4358_80782,227,4368_16391,Spencer Dock,4648,1,4368_7778195_4461017,4368_621 -4358_80782,228,4368_16392,Spencer Dock,11725,1,4368_7778195_4461008,4368_621 -4358_80782,227,4368_16393,Spencer Dock,4500,1,4368_7778195_4461003,4368_621 -4358_80782,229,4368_16394,Spencer Dock,17547,1,4368_7778195_4461014,4368_621 -4358_80782,228,4368_16395,Spencer Dock,11830,1,4368_7778195_4461022,4368_621 -4358_80782,227,4368_16396,Spencer Dock,4779,1,4368_7778195_4461035,4368_621 -4358_80782,228,4368_16397,Spencer Dock,11794,1,4368_7778195_4461014,4368_621 -4358_80782,229,4368_16398,Spencer Dock,17473,1,4368_7778195_4461012,4368_621 -4358_80782,227,4368_16399,Spencer Dock,4630,1,4368_7778195_4461015,4368_621 -4358_80760,229,4368_164,Shaw street,15674,0,4368_7778195_9001005,4368_1 -4358_80682,228,4368_1640,Harristown,13598,1,4368_7778195_8013004,4368_59 -4358_80782,228,4368_16400,Spencer Dock,11652,1,4368_7778195_4461002,4368_621 -4358_80782,229,4368_16401,Spencer Dock,17404,1,4368_7778195_4461001,4368_621 -4358_80782,227,4368_16402,Spencer Dock,4695,1,4368_7778195_4461026,4368_621 -4358_80782,228,4368_16403,Spencer Dock,11773,1,4368_7778195_4461012,4368_621 -4358_80782,227,4368_16404,Spencer Dock,4636,1,4368_7778195_4461029,4368_621 -4358_80782,229,4368_16405,Spencer Dock,17571,1,4368_7778195_4461019,4368_621 -4358_80782,228,4368_16406,Spencer Dock,11821,1,4368_7778195_4461020,4368_621 -4358_80782,227,4368_16407,Spencer Dock,4772,1,4368_7778195_4461033,4368_621 -4358_80782,228,4368_16408,Spencer Dock,11787,1,4368_7778195_4461013,4368_621 -4358_80782,229,4368_16409,Spencer Dock,17509,1,4368_7778195_4461011,4368_621 -4358_80682,227,4368_1641,Harristown,6873,1,4368_7778195_8013008,4368_59 -4358_80782,228,4368_16410,Spencer Dock,11617,1,4368_7778195_4461010,4368_621 -4358_80782,227,4368_16411,Spencer Dock,4451,1,4368_7778195_4461021,4368_621 -4358_80782,229,4368_16412,Spencer Dock,17393,1,4368_7778195_4461007,4368_621 -4358_80782,228,4368_16413,Spencer Dock,11810,1,4368_7778195_4461018,4368_621 -4358_80782,227,4368_16414,Spencer Dock,4530,1,4368_7778195_4461002,4368_621 -4358_80782,229,4368_16415,Spencer Dock,17537,1,4368_7778195_4461017,4368_621 -4358_80782,228,4368_16416,Spencer Dock,11669,1,4368_7778195_4461003,4368_621 -4358_80782,227,4368_16417,Spencer Dock,4789,1,4368_7778195_4461036,4368_621 -4358_80782,228,4368_16418,Spencer Dock,11727,1,4368_7778195_4461008,4368_621 -4358_80782,227,4368_16419,Spencer Dock,4709,1,4368_7778195_4461028,4368_621 -4358_80682,229,4368_1642,Harristown,19052,1,4368_7778195_8013001,4368_59 -4358_80782,229,4368_16420,Spencer Dock,17522,1,4368_7778195_4461013,4368_621 -4358_80782,228,4368_16421,Spencer Dock,11832,1,4368_7778195_4461022,4368_621 -4358_80782,227,4368_16422,Spencer Dock,4722,1,4368_7778195_4461030,4368_621 -4358_80782,229,4368_16423,Spencer Dock,17549,1,4368_7778195_4461014,4368_621 -4358_80782,228,4368_16424,Spencer Dock,11796,1,4368_7778195_4461014,4368_621 -4358_80782,227,4368_16425,Spencer Dock,4682,1,4368_7778195_4461023,4368_621 -4358_80782,229,4368_16426,Spencer Dock,17475,1,4368_7778195_4461012,4368_621 -4358_80782,228,4368_16427,Spencer Dock,11851,1,4368_7778195_4461029,4368_621 -4358_80782,227,4368_16428,Spencer Dock,4551,1,4368_7778195_4461043,4368_621 -4358_80782,228,4368_16429,Spencer Dock,11654,1,4368_7778195_4461002,4368_621 -4358_80682,227,4368_1643,Harristown,6884,1,4368_7778195_8013010,4368_59 -4358_80782,227,4368_16430,Spencer Dock,4491,1,4368_7778195_4461004,4368_621 -4358_80782,229,4368_16431,Spencer Dock,17406,1,4368_7778195_4461001,4368_621 -4358_80782,228,4368_16432,Spencer Dock,11775,1,4368_7778195_4461012,4368_621 -4358_80782,227,4368_16433,Spencer Dock,4749,1,4368_7778195_4461031,4368_621 -4358_80782,229,4368_16434,Spencer Dock,17573,1,4368_7778195_4461019,4368_621 -4358_80782,228,4368_16435,Spencer Dock,11823,1,4368_7778195_4461020,4368_621 -4358_80782,227,4368_16436,Spencer Dock,4546,1,4368_7778195_4461010,4368_621 -4358_80782,229,4368_16437,Spencer Dock,17511,1,4368_7778195_4461011,4368_621 -4358_80782,228,4368_16438,Spencer Dock,11789,1,4368_7778195_4461013,4368_621 -4358_80782,227,4368_16439,Spencer Dock,4739,1,4368_7778195_4461027,4368_621 -4358_80682,228,4368_1644,Harristown,13611,1,4368_7778195_8013006,4368_59 -4358_80782,228,4368_16440,Spencer Dock,11619,1,4368_7778195_4461010,4368_621 -4358_80782,227,4368_16441,Spencer Dock,4755,1,4368_7778195_4461032,4368_621 -4358_80782,229,4368_16442,Spencer Dock,17395,1,4368_7778195_4461007,4368_621 -4358_80782,227,4368_16443,Spencer Dock,4475,1,4368_7778195_4461008,4368_621 -4358_80782,228,4368_16444,Spencer Dock,11812,1,4368_7778195_4461018,4368_621 -4358_80782,229,4368_16445,Spencer Dock,17539,1,4368_7778195_4461017,4368_621 -4358_80782,227,4368_16446,Spencer Dock,4602,1,4368_7778195_4461012,4368_621 -4358_80782,228,4368_16447,Spencer Dock,11671,1,4368_7778195_4461003,4368_621 -4358_80782,227,4368_16448,Spencer Dock,4804,1,4368_7778195_4461039,4368_621 -4358_80782,229,4368_16449,Spencer Dock,17524,1,4368_7778195_4461013,4368_621 -4358_80682,227,4368_1645,Harristown,6812,1,4368_7778195_8013003,4368_59 -4358_80782,228,4368_16450,Spencer Dock,11860,1,4368_7778195_4461030,4368_621 -4358_80782,227,4368_16451,Spencer Dock,4814,1,4368_7778195_4461040,4368_621 -4358_80782,228,4368_16452,Spencer Dock,11865,1,4368_7778195_4461032,4368_621 -4358_80782,229,4368_16453,Spencer Dock,17551,1,4368_7778195_4461014,4368_621 -4358_80782,228,4368_16454,Spencer Dock,11907,1,4368_7778195_4461028,4368_621 -4358_80782,227,4368_16455,Spencer Dock,4661,1,4368_7778195_4461018,4368_622 -4358_80782,229,4368_16456,Spencer Dock,17477,1,4368_7778195_4461012,4368_621 -4358_80782,227,4368_16457,Spencer Dock,4504,1,4368_7778195_4461003,4368_621 -4358_80782,228,4368_16458,Spencer Dock,11853,1,4368_7778195_4461029,4368_621 -4358_80782,227,4368_16459,Spencer Dock,4783,1,4368_7778195_4461035,4368_621 -4358_80682,228,4368_1646,Harristown,13626,1,4368_7778195_8013008,4368_59 -4358_80782,229,4368_16460,Spencer Dock,17408,1,4368_7778195_4461001,4368_621 -4358_80782,228,4368_16461,Spencer Dock,11656,1,4368_7778195_4461002,4368_621 -4358_80782,227,4368_16462,Spencer Dock,4653,1,4368_7778195_4461038,4368_621 -4358_80782,228,4368_16463,Spencer Dock,11777,1,4368_7778195_4461012,4368_621 -4358_80782,229,4368_16464,Spencer Dock,17575,1,4368_7778195_4461019,4368_621 -4358_80782,227,4368_16465,Spencer Dock,4763,1,4368_7778195_4461051,4368_622 -4358_80782,228,4368_16466,Spencer Dock,11825,1,4368_7778195_4461020,4368_621 -4358_80782,227,4368_16467,Spencer Dock,4699,1,4368_7778195_4461026,4368_621 -4358_80782,229,4368_16468,Spencer Dock,17513,1,4368_7778195_4461011,4368_621 -4358_80782,227,4368_16469,Spencer Dock,4640,1,4368_7778195_4461029,4368_621 -4358_80682,229,4368_1647,Harristown,19062,1,4368_7778195_8013002,4368_61 -4358_80782,228,4368_16470,Spencer Dock,11791,1,4368_7778195_4461013,4368_621 -4358_80782,227,4368_16471,Spencer Dock,4823,1,4368_7778195_4461055,4368_621 -4358_80782,229,4368_16472,Spencer Dock,17397,1,4368_7778195_4461007,4368_621 -4358_80782,228,4368_16473,Spencer Dock,11894,1,4368_7778195_4461037,4368_621 -4358_80782,227,4368_16474,Spencer Dock,4776,1,4368_7778195_4461033,4368_621 -4358_80782,228,4368_16475,Spencer Dock,11621,1,4368_7778195_4461010,4368_621 -4358_80782,229,4368_16476,Spencer Dock,17541,1,4368_7778195_4461017,4368_621 -4358_80782,227,4368_16477,Spencer Dock,4825,1,4368_7778195_4461058,4368_621 -4358_80782,228,4368_16478,Spencer Dock,11915,1,4368_7778195_4461039,4368_621 -4358_80782,227,4368_16479,Spencer Dock,4455,1,4368_7778195_4461021,4368_621 -4358_80682,227,4368_1648,Harristown,6893,1,4368_7778195_8013012,4368_62 -4358_80782,229,4368_16480,Spencer Dock,17526,1,4368_7778195_4461013,4368_621 -4358_80782,228,4368_16481,Spencer Dock,11731,1,4368_7778195_4461008,4368_621 -4358_80782,227,4368_16482,Spencer Dock,4534,1,4368_7778195_4461002,4368_621 -4358_80782,227,4368_16483,Spencer Dock,4571,1,4368_7778195_4461050,4368_621 -4358_80782,228,4368_16484,Spencer Dock,11836,1,4368_7778195_4461022,4368_621 -4358_80782,229,4368_16485,Spencer Dock,17553,1,4368_7778195_4461014,4368_621 -4358_80782,227,4368_16486,Spencer Dock,4793,1,4368_7778195_4461036,4368_621 -4358_80782,228,4368_16487,Spencer Dock,11805,1,4368_7778195_4461017,4368_621 -4358_80782,229,4368_16488,Spencer Dock,17479,1,4368_7778195_4461012,4368_621 -4358_80782,227,4368_16489,Spencer Dock,4816,1,4368_7778195_4461040,4368_621 -4358_80682,227,4368_1649,Harristown,6897,1,4368_7778195_8013014,4368_59 -4358_80782,228,4368_16490,Spencer Dock,11658,1,4368_7778195_4461002,4368_621 -4358_80782,227,4368_16491,Spencer Dock,4663,1,4368_7778195_4461018,4368_621 -4358_80782,229,4368_16492,Spencer Dock,17410,1,4368_7778195_4461001,4368_621 -4358_80782,228,4368_16493,Spencer Dock,11742,1,4368_7778195_4461009,4368_621 -4358_80782,227,4368_16494,Spencer Dock,4506,1,4368_7778195_4461003,4368_621 -4358_80782,229,4368_16495,Spencer Dock,17577,1,4368_7778195_4461019,4368_621 -4358_80782,227,4368_16496,Spencer Dock,4785,1,4368_7778195_4461035,4368_621 -4358_80782,228,4368_16497,Spencer Dock,11633,1,4368_7778195_4461026,4368_622 -4358_80782,227,4368_16498,Spencer Dock,4765,1,4368_7778195_4461051,4368_621 -4358_80782,228,4368_16499,Spencer Dock,11608,1,4368_7778195_4461001,4368_621 -4358_80760,227,4368_165,Shaw street,1668,0,4368_7778195_9001003,4368_2 -4358_80682,228,4368_1650,Harristown,13592,1,4368_7778195_8013003,4368_59 -4358_80782,229,4368_16500,Spencer Dock,17515,1,4368_7778195_4461011,4368_621 -4358_80782,227,4368_16501,Spencer Dock,4701,1,4368_7778195_4461026,4368_621 -4358_80782,228,4368_16502,Spencer Dock,11896,1,4368_7778195_4461037,4368_621 -4358_80782,227,4368_16503,Spencer Dock,4642,1,4368_7778195_4461029,4368_621 -4358_80782,229,4368_16504,Spencer Dock,17543,1,4368_7778195_4461017,4368_621 -4358_80782,228,4368_16505,Spencer Dock,11675,1,4368_7778195_4461003,4368_621 -4358_80782,227,4368_16506,Spencer Dock,4827,1,4368_7778195_4461058,4368_622 -4358_80782,227,4368_16507,Spencer Dock,4457,1,4368_7778195_4461021,4368_621 -4358_80782,228,4368_16508,Spencer Dock,11838,1,4368_7778195_4461022,4368_621 -4358_80782,229,4368_16509,Spencer Dock,17528,1,4368_7778195_4461013,4368_621 -4358_80682,227,4368_1651,Harristown,6828,1,4368_7778195_8013006,4368_60 -4358_80782,227,4368_16510,Spencer Dock,4536,1,4368_7778195_4461002,4368_621 -4358_80782,228,4368_16511,Spencer Dock,11807,1,4368_7778195_4461017,4368_621 -4358_80782,227,4368_16512,Spencer Dock,4715,1,4368_7778195_4461028,4368_621 -4358_80782,229,4368_16513,Spencer Dock,17555,1,4368_7778195_4461014,4368_621 -4358_80782,227,4368_16514,Spencer Dock,4797,1,4368_7778195_4461054,4368_621 -4358_80782,228,4368_16515,Spencer Dock,11857,1,4368_7778195_4461029,4368_621 -4358_80782,227,4368_16516,Spencer Dock,4613,1,4368_7778195_4461047,4368_621 -4358_80782,228,4368_16517,Spencer Dock,11781,1,4368_7778195_4461012,4368_621 -4358_80782,229,4368_16518,Spencer Dock,17579,1,4368_7778195_4461019,4368_621 -4358_80782,227,4368_16519,Spencer Dock,4767,1,4368_7778195_4461051,4368_621 -4358_80682,229,4368_1652,Harristown,19071,1,4368_7778195_8013004,4368_59 -4358_80782,228,4368_16520,Spencer Dock,11880,1,4368_7778195_4461043,4368_621 -4358_80782,227,4368_16521,Spencer Dock,4523,1,4368_7778195_4461044,4368_621 -4358_80782,229,4368_16522,Spencer Dock,17517,1,4368_7778195_4461011,4368_621 -4358_80782,227,4368_16523,Spencer Dock,4761,1,4368_7778195_4461032,4368_621 -4358_80782,228,4368_16524,Spencer Dock,11610,1,4368_7778195_4461045,4368_621 -4358_80782,227,4368_16525,Spencer Dock,4481,1,4368_7778195_4461008,4368_621 -4358_80782,228,4368_16526,Spencer Dock,11677,1,4368_7778195_4461003,4368_621 -4358_80782,229,4368_16527,Spencer Dock,17545,1,4368_7778195_4461017,4368_621 -4358_80782,227,4368_16528,Spencer Dock,4608,1,4368_7778195_4461012,4368_621 -4358_80782,228,4368_16529,Spencer Dock,11840,1,4368_7778195_4461022,4368_621 -4358_80682,227,4368_1653,Harristown,6929,1,4368_7778195_8013017,4368_59 -4358_80782,227,4368_16530,Spencer Dock,4717,1,4368_7778195_4461028,4368_621 -4358_80782,229,4368_16531,Spencer Dock,17557,1,4368_7778195_4461014,4368_621 -4358_80782,228,4368_16532,Spencer Dock,11662,1,4368_7778195_4461002,4368_621 -4358_80782,227,4368_16533,Spencer Dock,4799,1,4368_7778195_4461054,4368_621 -4358_80782,229,4368_16534,Spencer Dock,17581,1,4368_7778195_4461019,4368_621 -4358_80782,228,4368_16535,Spencer Dock,11637,1,4368_7778195_4461026,4368_621 -4358_80782,227,4368_16536,Spencer Dock,4769,1,4368_7778195_4461051,4368_621 -4358_80782,229,4368_16537,Spencer Dock,17519,1,4368_7778195_4461011,4368_621 -4358_80782,229,4368_16538,Spencer Dock,17415,1,4368_7778195_4461033,4368_621 -4358_80782,228,4368_16539,Spencer Dock,11638,1,4368_7778195_4461047,4368_621 -4358_80682,228,4368_1654,Harristown,13605,1,4368_7778195_8013005,4368_59 -4358_80782,227,4368_16540,Spencer Dock,4566,1,4368_7778195_4461064,4368_621 -4358_80782,229,4368_16541,Spencer Dock,17625,1,4368_7778195_4461034,4368_621 -4358_80782,228,4368_16542,Spencer Dock,11700,1,4368_7778195_4461048,4368_621 -4358_80782,227,4368_16543,Spencer Dock,4839,1,4368_7778195_4461065,4368_621 -4358_80782,229,4368_16544,Spencer Dock,17417,1,4368_7778195_4461033,4368_621 -4358_80782,228,4368_16545,Spencer Dock,11640,1,4368_7778195_4461047,4368_621 -4358_80782,227,4368_16546,Spencer Dock,4568,1,4368_7778195_4461064,4368_621 -4358_80782,229,4368_16547,Spencer Dock,17627,1,4368_7778195_4461034,4368_621 -4358_80782,227,4368_16548,Spencer Dock,4841,1,4368_7778195_4461065,4368_621 -4358_80782,228,4368_16549,Spencer Dock,11702,1,4368_7778195_4461048,4368_621 -4358_80682,227,4368_1655,Harristown,6974,1,4368_7778195_8013018,4368_60 -4358_80783,227,4368_16550,Baldoyle,5425,0,4368_7778195_6471001,4368_623 -4358_80783,227,4368_16551,Baldoyle,6573,0,4368_7778195_6471003,4368_623 -4358_80783,227,4368_16552,Baldoyle,5357,0,4368_7778195_6471002,4368_623 -4358_80783,228,4368_16553,Baldoyle,12503,0,4368_7778195_6471003,4368_624 -4358_80783,227,4368_16554,Baldoyle,5277,0,4368_7778195_6471007,4368_623 -4358_80783,228,4368_16555,Baldoyle,12601,0,4368_7778195_6471001,4368_623 -4358_80783,227,4368_16556,Baldoyle,5427,0,4368_7778195_6471001,4368_623 -4358_80783,228,4368_16557,Baldoyle,12549,0,4368_7778195_6471002,4368_623 -4358_80783,227,4368_16558,Baldoyle,6564,0,4368_7778195_6471004,4368_623 -4358_80783,227,4368_16559,Baldoyle,5264,0,4368_7778195_6471005,4368_623 -4358_80682,228,4368_1656,Harristown,13618,1,4368_7778195_8013007,4368_59 -4358_80783,228,4368_16560,Baldoyle,12486,0,4368_7778195_6471004,4368_624 -4358_80783,229,4368_16561,Baldoyle,18172,0,4368_7778195_6471003,4368_625 -4358_80783,227,4368_16562,Baldoyle,6575,0,4368_7778195_6471003,4368_623 -4358_80783,228,4368_16563,Baldoyle,12587,0,4368_7778195_6471005,4368_623 -4358_80783,227,4368_16564,Baldoyle,5389,0,4368_7778195_6471006,4368_623 -4358_80783,229,4368_16565,Baldoyle,18210,0,4368_7778195_6471001,4368_624 -4358_80783,228,4368_16566,Baldoyle,12505,0,4368_7778195_6471003,4368_623 -4358_80783,227,4368_16567,Baldoyle,5247,0,4368_7778195_6471009,4368_623 -4358_80783,229,4368_16568,Baldoyle,18264,0,4368_7778195_6471002,4368_623 -4358_80783,227,4368_16569,Baldoyle,5359,0,4368_7778195_6471002,4368_624 -4358_80682,229,4368_1657,Harristown,19069,1,4368_7778195_8013003,4368_61 -4358_80783,228,4368_16570,Baldoyle,12603,0,4368_7778195_6471001,4368_625 -4358_80783,227,4368_16571,Baldoyle,5279,0,4368_7778195_6471007,4368_623 -4358_80783,228,4368_16572,Baldoyle,12551,0,4368_7778195_6471002,4368_623 -4358_80783,227,4368_16573,Baldoyle,5429,0,4368_7778195_6471001,4368_623 -4358_80783,229,4368_16574,Baldoyle,18174,0,4368_7778195_6471003,4368_624 -4358_80783,228,4368_16575,Baldoyle,12488,0,4368_7778195_6471004,4368_623 -4358_80783,227,4368_16576,Baldoyle,6566,0,4368_7778195_6471004,4368_623 -4358_80783,227,4368_16577,Baldoyle,5266,0,4368_7778195_6471005,4368_623 -4358_80783,229,4368_16578,Baldoyle,18202,0,4368_7778195_6471004,4368_624 -4358_80783,228,4368_16579,Baldoyle,12589,0,4368_7778195_6471005,4368_625 -4358_80682,227,4368_1658,Harristown,6883,1,4368_7778195_8013009,4368_62 -4358_80783,229,4368_16580,Baldoyle,18204,0,4368_7778195_6471006,4368_623 -4358_80783,227,4368_16581,Baldoyle,6577,0,4368_7778195_6471003,4368_624 -4358_80783,228,4368_16582,Baldoyle,12507,0,4368_7778195_6471003,4368_625 -4358_80783,227,4368_16583,Baldoyle,5391,0,4368_7778195_6471006,4368_623 -4358_80783,229,4368_16584,Baldoyle,18212,0,4368_7778195_6471001,4368_624 -4358_80783,228,4368_16585,Baldoyle,12615,0,4368_7778195_6471007,4368_625 -4358_80783,229,4368_16586,Baldoyle,18266,0,4368_7778195_6471002,4368_623 -4358_80783,228,4368_16587,Baldoyle,12605,0,4368_7778195_6471001,4368_624 -4358_80783,227,4368_16588,Baldoyle,5249,0,4368_7778195_6471009,4368_625 -4358_80783,229,4368_16589,Baldoyle,18220,0,4368_7778195_6471005,4368_623 -4358_80682,227,4368_1659,Harristown,6711,1,4368_7778195_8013001,4368_60 -4358_80783,227,4368_16590,Baldoyle,5361,0,4368_7778195_6471002,4368_624 -4358_80783,228,4368_16591,Baldoyle,12553,0,4368_7778195_6471002,4368_625 -4358_80783,228,4368_16592,Baldoyle,12632,0,4368_7778195_6471006,4368_623 -4358_80783,229,4368_16593,Baldoyle,18176,0,4368_7778195_6471003,4368_624 -4358_80783,227,4368_16594,Baldoyle,5281,0,4368_7778195_6471007,4368_625 -4358_80783,227,4368_16595,Baldoyle,5431,0,4368_7778195_6471001,4368_623 -4358_80783,228,4368_16596,Baldoyle,12490,0,4368_7778195_6471004,4368_624 -4358_80783,229,4368_16597,Baldoyle,18283,0,4368_7778195_6471007,4368_625 -4358_80783,228,4368_16598,Baldoyle,12591,0,4368_7778195_6471005,4368_623 -4358_80783,227,4368_16599,Baldoyle,6568,0,4368_7778195_6471004,4368_624 -4358_80760,228,4368_166,Shaw street,9460,0,4368_7778195_9001003,4368_1 -4358_80682,228,4368_1660,Harristown,13633,1,4368_7778195_8013009,4368_59 -4358_80783,229,4368_16600,Baldoyle,18243,0,4368_7778195_6471008,4368_625 -4358_80783,227,4368_16601,Baldoyle,5268,0,4368_7778195_6471005,4368_623 -4358_80783,229,4368_16602,Baldoyle,18206,0,4368_7778195_6471006,4368_624 -4358_80783,228,4368_16603,Baldoyle,12509,0,4368_7778195_6471003,4368_625 -4358_80783,229,4368_16604,Baldoyle,18214,0,4368_7778195_6471001,4368_623 -4358_80783,227,4368_16605,Baldoyle,6579,0,4368_7778195_6471003,4368_624 -4358_80783,228,4368_16606,Baldoyle,12617,0,4368_7778195_6471007,4368_625 -4358_80783,229,4368_16607,Baldoyle,18268,0,4368_7778195_6471002,4368_623 -4358_80783,227,4368_16608,Baldoyle,5393,0,4368_7778195_6471006,4368_624 -4358_80783,228,4368_16609,Baldoyle,12607,0,4368_7778195_6471001,4368_625 -4358_80682,228,4368_1661,Harristown,13638,1,4368_7778195_8013010,4368_59 -4358_80783,229,4368_16610,Baldoyle,18222,0,4368_7778195_6471005,4368_623 -4358_80783,227,4368_16611,Baldoyle,5251,0,4368_7778195_6471009,4368_624 -4358_80783,228,4368_16612,Baldoyle,12555,0,4368_7778195_6471002,4368_625 -4358_80783,228,4368_16613,Baldoyle,12405,0,4368_7778195_6471008,4368_623 -4358_80783,227,4368_16614,Baldoyle,5363,0,4368_7778195_6471002,4368_624 -4358_80783,229,4368_16615,Baldoyle,18178,0,4368_7778195_6471003,4368_625 -4358_80783,229,4368_16616,Baldoyle,18285,0,4368_7778195_6471007,4368_623 -4358_80783,228,4368_16617,Baldoyle,12634,0,4368_7778195_6471006,4368_624 -4358_80783,227,4368_16618,Baldoyle,5283,0,4368_7778195_6471007,4368_625 -4358_80783,227,4368_16619,Baldoyle,5433,0,4368_7778195_6471001,4368_623 -4358_80682,229,4368_1662,Harristown,19074,1,4368_7778195_8013005,4368_61 -4358_80783,228,4368_16620,Baldoyle,12492,0,4368_7778195_6471004,4368_624 -4358_80783,229,4368_16621,Baldoyle,18245,0,4368_7778195_6471008,4368_625 -4358_80783,229,4368_16622,Baldoyle,18208,0,4368_7778195_6471006,4368_623 -4358_80783,228,4368_16623,Baldoyle,12593,0,4368_7778195_6471005,4368_624 -4358_80783,227,4368_16624,Baldoyle,6570,0,4368_7778195_6471004,4368_625 -4358_80783,227,4368_16625,Baldoyle,5270,0,4368_7778195_6471005,4368_623 -4358_80783,229,4368_16626,Baldoyle,18216,0,4368_7778195_6471001,4368_624 -4358_80783,228,4368_16627,Baldoyle,12511,0,4368_7778195_6471003,4368_625 -4358_80783,229,4368_16628,Baldoyle,18270,0,4368_7778195_6471002,4368_623 -4358_80783,227,4368_16629,Baldoyle,6581,0,4368_7778195_6471003,4368_624 -4358_80682,227,4368_1663,Harristown,6985,1,4368_7778195_8013021,4368_62 -4358_80783,228,4368_16630,Baldoyle,12619,0,4368_7778195_6471007,4368_625 -4358_80783,228,4368_16631,Baldoyle,12609,0,4368_7778195_6471001,4368_623 -4358_80783,229,4368_16632,Baldoyle,18297,0,4368_7778195_6471009,4368_624 -4358_80783,227,4368_16633,Baldoyle,5446,0,4368_7778195_6471010,4368_625 -4358_80783,229,4368_16634,Baldoyle,18318,0,4368_7778195_6471010,4368_623 -4358_80783,227,4368_16635,Baldoyle,5253,0,4368_7778195_6471009,4368_624 -4358_80783,228,4368_16636,Baldoyle,12557,0,4368_7778195_6471002,4368_625 -4358_80783,228,4368_16637,Baldoyle,12407,0,4368_7778195_6471008,4368_623 -4358_80783,227,4368_16638,Baldoyle,5365,0,4368_7778195_6471002,4368_624 -4358_80783,229,4368_16639,Baldoyle,18180,0,4368_7778195_6471003,4368_625 -4358_80682,227,4368_1664,Harristown,6891,1,4368_7778195_8013011,4368_60 -4358_80783,228,4368_16640,Baldoyle,12636,0,4368_7778195_6471006,4368_623 -4358_80783,227,4368_16641,Baldoyle,5285,0,4368_7778195_6471007,4368_624 -4358_80783,229,4368_16642,Baldoyle,18258,0,4368_7778195_6471011,4368_625 -4358_80783,227,4368_16643,Baldoyle,5435,0,4368_7778195_6471001,4368_623 -4358_80783,228,4368_16644,Baldoyle,12494,0,4368_7778195_6471004,4368_624 -4358_80783,229,4368_16645,Baldoyle,18247,0,4368_7778195_6471008,4368_625 -4358_80783,229,4368_16646,Baldoyle,18344,0,4368_7778195_6471012,4368_623 -4358_80783,228,4368_16647,Baldoyle,12595,0,4368_7778195_6471005,4368_624 -4358_80783,227,4368_16648,Baldoyle,6572,0,4368_7778195_6471004,4368_625 -4358_80783,227,4368_16649,Baldoyle,5272,0,4368_7778195_6471005,4368_623 -4358_80682,228,4368_1665,Harristown,13646,1,4368_7778195_8013011,4368_59 -4358_80783,229,4368_16650,Baldoyle,18218,0,4368_7778195_6471001,4368_624 -4358_80783,228,4368_16651,Baldoyle,12513,0,4368_7778195_6471003,4368_625 -4358_80783,229,4368_16652,Baldoyle,18272,0,4368_7778195_6471002,4368_623 -4358_80783,227,4368_16653,Baldoyle,6583,0,4368_7778195_6471003,4368_624 -4358_80783,228,4368_16654,Baldoyle,12621,0,4368_7778195_6471007,4368_625 -4358_80783,228,4368_16655,Baldoyle,12611,0,4368_7778195_6471001,4368_623 -4358_80783,229,4368_16656,Baldoyle,18299,0,4368_7778195_6471009,4368_624 -4358_80783,227,4368_16657,Baldoyle,5448,0,4368_7778195_6471010,4368_625 -4358_80783,229,4368_16658,Baldoyle,18320,0,4368_7778195_6471010,4368_623 -4358_80783,227,4368_16659,Baldoyle,5255,0,4368_7778195_6471009,4368_624 -4358_80682,228,4368_1666,Harristown,13575,1,4368_7778195_8013001,4368_59 -4358_80783,228,4368_16660,Baldoyle,12559,0,4368_7778195_6471002,4368_625 -4358_80783,227,4368_16661,Baldoyle,5347,0,4368_7778195_6471011,4368_623 -4358_80783,228,4368_16662,Baldoyle,12409,0,4368_7778195_6471008,4368_624 -4358_80783,229,4368_16663,Baldoyle,18182,0,4368_7778195_6471003,4368_625 -4358_80783,227,4368_16664,Baldoyle,5367,0,4368_7778195_6471002,4368_623 -4358_80783,228,4368_16665,Baldoyle,12638,0,4368_7778195_6471006,4368_624 -4358_80783,229,4368_16666,Baldoyle,18260,0,4368_7778195_6471011,4368_625 -4358_80783,228,4368_16667,Baldoyle,12496,0,4368_7778195_6471004,4368_623 -4358_80783,227,4368_16668,Baldoyle,5287,0,4368_7778195_6471007,4368_624 -4358_80783,229,4368_16669,Baldoyle,18249,0,4368_7778195_6471008,4368_625 -4358_80682,229,4368_1667,Harristown,19076,1,4368_7778195_8013006,4368_61 -4358_80783,227,4368_16670,Baldoyle,5437,0,4368_7778195_6471001,4368_623 -4358_80783,229,4368_16671,Baldoyle,18346,0,4368_7778195_6471012,4368_624 -4358_80783,228,4368_16672,Baldoyle,12597,0,4368_7778195_6471005,4368_625 -4358_80783,227,4368_16673,Baldoyle,5458,0,4368_7778195_6471012,4368_623 -4358_80783,229,4368_16674,Baldoyle,18165,0,4368_7778195_6471013,4368_624 -4358_80783,228,4368_16675,Baldoyle,12515,0,4368_7778195_6471003,4368_625 -4358_80783,229,4368_16676,Baldoyle,18274,0,4368_7778195_6471002,4368_623 -4358_80783,227,4368_16677,Baldoyle,5274,0,4368_7778195_6471005,4368_624 -4358_80783,228,4368_16678,Baldoyle,12623,0,4368_7778195_6471007,4368_625 -4358_80783,228,4368_16679,Baldoyle,12613,0,4368_7778195_6471001,4368_623 -4358_80682,227,4368_1668,Harristown,6904,1,4368_7778195_8013013,4368_62 -4358_80783,227,4368_16680,Baldoyle,6585,0,4368_7778195_6471003,4368_624 -4358_80783,229,4368_16681,Baldoyle,18301,0,4368_7778195_6471009,4368_625 -4358_80783,229,4368_16682,Baldoyle,18322,0,4368_7778195_6471010,4368_623 -4358_80783,228,4368_16683,Baldoyle,12561,0,4368_7778195_6471002,4368_624 -4358_80783,227,4368_16684,Baldoyle,5450,0,4368_7778195_6471010,4368_625 -4358_80783,228,4368_16685,Baldoyle,12411,0,4368_7778195_6471008,4368_623 -4358_80783,229,4368_16686,Baldoyle,18184,0,4368_7778195_6471003,4368_624 -4358_80783,227,4368_16687,Baldoyle,5257,0,4368_7778195_6471009,4368_625 -4358_80783,227,4368_16688,Baldoyle,5349,0,4368_7778195_6471011,4368_623 -4358_80783,228,4368_16689,Baldoyle,12640,0,4368_7778195_6471006,4368_624 -4358_80682,227,4368_1669,Harristown,6906,1,4368_7778195_8013015,4368_59 -4358_80783,229,4368_16690,Baldoyle,18262,0,4368_7778195_6471011,4368_625 -4358_80783,228,4368_16691,Baldoyle,12498,0,4368_7778195_6471004,4368_623 -4358_80783,227,4368_16692,Baldoyle,5369,0,4368_7778195_6471002,4368_624 -4358_80783,229,4368_16693,Baldoyle,18251,0,4368_7778195_6471008,4368_625 -4358_80783,229,4368_16694,Baldoyle,18348,0,4368_7778195_6471012,4368_623 -4358_80783,228,4368_16695,Baldoyle,12599,0,4368_7778195_6471005,4368_624 -4358_80783,227,4368_16696,Baldoyle,5289,0,4368_7778195_6471007,4368_625 -4358_80783,227,4368_16697,Baldoyle,5439,0,4368_7778195_6471001,4368_623 -4358_80783,229,4368_16698,Baldoyle,18167,0,4368_7778195_6471013,4368_624 -4358_80783,228,4368_16699,Baldoyle,12517,0,4368_7778195_6471003,4368_625 -4358_80760,229,4368_167,Shaw street,15701,0,4368_7778195_9001001,4368_1 -4358_80682,228,4368_1670,Harristown,13585,1,4368_7778195_8013002,4368_59 -4358_80783,227,4368_16700,Baldoyle,5460,0,4368_7778195_6471012,4368_623 -4358_80783,228,4368_16701,Baldoyle,12625,0,4368_7778195_6471007,4368_623 -4358_80783,227,4368_16702,Baldoyle,5276,0,4368_7778195_6471005,4368_623 -4358_80783,229,4368_16703,Baldoyle,18324,0,4368_7778195_6471010,4368_624 -4358_80783,228,4368_16704,Baldoyle,12413,0,4368_7778195_6471008,4368_623 -4358_80783,227,4368_16705,Baldoyle,5452,0,4368_7778195_6471010,4368_623 -4358_80783,228,4368_16706,Baldoyle,12642,0,4368_7778195_6471006,4368_623 -4358_80783,229,4368_16707,Baldoyle,18186,0,4368_7778195_6471003,4368_624 -4358_80783,227,4368_16708,Baldoyle,5259,0,4368_7778195_6471009,4368_625 -4358_80783,227,4368_16709,Baldoyle,5351,0,4368_7778195_6471011,4368_623 -4358_80682,227,4368_1671,Harristown,6909,1,4368_7778195_8013016,4368_59 -4358_80783,228,4368_16710,Baldoyle,12500,0,4368_7778195_6471004,4368_623 -4358_80783,227,4368_16711,Baldoyle,5371,0,4368_7778195_6471002,4368_623 -4358_80783,229,4368_16712,Baldoyle,18253,0,4368_7778195_6471008,4368_624 -4358_80783,228,4368_16713,Baldoyle,12519,0,4368_7778195_6471003,4368_623 -4358_80783,227,4368_16714,Baldoyle,5291,0,4368_7778195_6471007,4368_623 -4358_80783,227,4368_16715,Baldoyle,5441,0,4368_7778195_6471001,4368_623 -4358_80783,228,4368_16716,Baldoyle,12627,0,4368_7778195_6471007,4368_624 -4358_80783,229,4368_16717,Baldoyle,18169,0,4368_7778195_6471013,4368_625 -4358_80783,227,4368_16718,Baldoyle,5462,0,4368_7778195_6471012,4368_623 -4358_80783,228,4368_16719,Baldoyle,12415,0,4368_7778195_6471008,4368_623 -4358_80682,228,4368_1672,Harristown,13653,1,4368_7778195_8013013,4368_59 -4358_80783,229,4368_16720,Baldoyle,18326,0,4368_7778195_6471010,4368_623 -4358_80783,227,4368_16721,Baldoyle,5454,0,4368_7778195_6471010,4368_624 -4358_80783,228,4368_16722,Baldoyle,12644,0,4368_7778195_6471006,4368_623 -4358_80783,227,4368_16723,Baldoyle,5261,0,4368_7778195_6471009,4368_623 -4358_80783,227,4368_16724,Baldoyle,5353,0,4368_7778195_6471011,4368_623 -4358_80783,228,4368_16725,Baldoyle,12502,0,4368_7778195_6471004,4368_624 -4358_80783,229,4368_16726,Baldoyle,18188,0,4368_7778195_6471003,4368_625 -4358_80783,227,4368_16727,Baldoyle,5373,0,4368_7778195_6471002,4368_623 -4358_80783,228,4368_16728,Baldoyle,12521,0,4368_7778195_6471003,4368_623 -4358_80783,227,4368_16729,Baldoyle,5293,0,4368_7778195_6471007,4368_623 -4358_80682,229,4368_1673,Harristown,19054,1,4368_7778195_8013001,4368_61 -4358_80783,229,4368_16730,Baldoyle,18255,0,4368_7778195_6471008,4368_624 -4358_80783,228,4368_16731,Baldoyle,12629,0,4368_7778195_6471007,4368_623 -4358_80783,227,4368_16732,Baldoyle,5443,0,4368_7778195_6471001,4368_623 -4358_80783,228,4368_16733,Baldoyle,12417,0,4368_7778195_6471008,4368_623 -4358_80783,227,4368_16734,Baldoyle,5464,0,4368_7778195_6471012,4368_624 -4358_80783,229,4368_16735,Baldoyle,18171,0,4368_7778195_6471013,4368_625 -4358_80783,229,4368_16736,Baldoyle,18328,0,4368_7778195_6471010,4368_623 -4358_80783,228,4368_16737,Baldoyle,12646,0,4368_7778195_6471006,4368_624 -4358_80783,227,4368_16738,Baldoyle,5456,0,4368_7778195_6471010,4368_625 -4358_80783,227,4368_16739,Baldoyle,5355,0,4368_7778195_6471011,4368_623 -4358_80682,227,4368_1674,Harristown,6987,1,4368_7778195_8013022,4368_59 -4358_80783,229,4368_16740,Baldoyle,18190,0,4368_7778195_6471003,4368_624 -4358_80783,228,4368_16741,Baldoyle,12523,0,4368_7778195_6471003,4368_625 -4358_80783,227,4368_16742,Abbey St Lower,5356,1,4368_7778195_6471002,4368_626 -4358_80783,227,4368_16743,Abbey St Lower,5426,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16744,Abbey St Lower,12600,1,4368_7778195_6471001,4368_627 -4358_80783,227,4368_16745,Abbey St Lower,6563,1,4368_7778195_6471004,4368_626 -4358_80783,228,4368_16746,Abbey St Lower,12548,1,4368_7778195_6471002,4368_626 -4358_80783,227,4368_16747,Abbey St Lower,5263,1,4368_7778195_6471005,4368_626 -4358_80783,228,4368_16748,Abbey St Lower,12485,1,4368_7778195_6471004,4368_626 -4358_80783,227,4368_16749,Abbey St Lower,6574,1,4368_7778195_6471003,4368_626 -4358_80682,228,4368_1675,Harristown,13600,1,4368_7778195_8013004,4368_59 -4358_80783,227,4368_16750,Abbey St Lower,5388,1,4368_7778195_6471006,4368_626 -4358_80783,229,4368_16751,Abbey St Lower,18209,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16752,Abbey St Lower,12586,1,4368_7778195_6471005,4368_627 -4358_80783,227,4368_16753,Abbey St Lower,5358,1,4368_7778195_6471002,4368_626 -4358_80783,228,4368_16754,Abbey St Lower,12504,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16755,Abbey St Lower,5278,1,4368_7778195_6471007,4368_626 -4358_80783,229,4368_16756,Abbey St Lower,18263,1,4368_7778195_6471002,4368_626 -4358_80783,228,4368_16757,Abbey St Lower,12602,1,4368_7778195_6471001,4368_626 -4358_80783,227,4368_16758,Abbey St Lower,5428,1,4368_7778195_6471001,4368_626 -4358_80783,227,4368_16759,Abbey St Lower,5294,1,4368_7778195_6471008,4368_626 -4358_80682,227,4368_1676,Harristown,6994,1,4368_7778195_8013024,4368_59 -4358_80783,229,4368_16760,Abbey St Lower,18173,1,4368_7778195_6471003,4368_626 -4358_80783,228,4368_16761,Abbey St Lower,12550,1,4368_7778195_6471002,4368_627 -4358_80783,227,4368_16762,Abbey St Lower,6565,1,4368_7778195_6471004,4368_626 -4358_80783,227,4368_16763,Abbey St Lower,5265,1,4368_7778195_6471005,4368_626 -4358_80783,228,4368_16764,Abbey St Lower,12487,1,4368_7778195_6471004,4368_627 -4358_80783,229,4368_16765,Abbey St Lower,18201,1,4368_7778195_6471004,4368_626 -4358_80783,227,4368_16766,Abbey St Lower,6576,1,4368_7778195_6471003,4368_626 -4358_80783,228,4368_16767,Abbey St Lower,12588,1,4368_7778195_6471005,4368_626 -4358_80783,227,4368_16768,Abbey St Lower,5390,1,4368_7778195_6471006,4368_626 -4358_80783,228,4368_16769,Abbey St Lower,12506,1,4368_7778195_6471003,4368_626 -4358_80682,228,4368_1677,Harristown,13613,1,4368_7778195_8013006,4368_59 -4358_80783,229,4368_16770,Abbey St Lower,18211,1,4368_7778195_6471001,4368_626 -4358_80783,227,4368_16771,Abbey St Lower,5248,1,4368_7778195_6471009,4368_626 -4358_80783,228,4368_16772,Abbey St Lower,12604,1,4368_7778195_6471001,4368_626 -4358_80783,229,4368_16773,Abbey St Lower,18265,1,4368_7778195_6471002,4368_626 -4358_80783,227,4368_16774,Abbey St Lower,5360,1,4368_7778195_6471002,4368_626 -4358_80783,228,4368_16775,Abbey St Lower,12552,1,4368_7778195_6471002,4368_626 -4358_80783,229,4368_16776,Abbey St Lower,18219,1,4368_7778195_6471005,4368_626 -4358_80783,227,4368_16777,Abbey St Lower,5280,1,4368_7778195_6471007,4368_626 -4358_80783,228,4368_16778,Abbey St Lower,12631,1,4368_7778195_6471006,4368_626 -4358_80783,229,4368_16779,Abbey St Lower,18175,1,4368_7778195_6471003,4368_626 -4358_80682,229,4368_1678,Harristown,19064,1,4368_7778195_8013002,4368_61 -4358_80783,227,4368_16780,Abbey St Lower,5430,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16781,Abbey St Lower,12489,1,4368_7778195_6471004,4368_626 -4358_80783,229,4368_16782,Abbey St Lower,18282,1,4368_7778195_6471007,4368_626 -4358_80783,228,4368_16783,Abbey St Lower,12590,1,4368_7778195_6471005,4368_626 -4358_80783,227,4368_16784,Abbey St Lower,6567,1,4368_7778195_6471004,4368_626 -4358_80783,229,4368_16785,Abbey St Lower,18203,1,4368_7778195_6471004,4368_626 -4358_80783,228,4368_16786,Abbey St Lower,12508,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16787,Abbey St Lower,5267,1,4368_7778195_6471005,4368_626 -4358_80783,229,4368_16788,Abbey St Lower,18205,1,4368_7778195_6471006,4368_626 -4358_80783,228,4368_16789,Abbey St Lower,12616,1,4368_7778195_6471007,4368_626 -4358_80682,227,4368_1679,Harristown,6977,1,4368_7778195_8013019,4368_62 -4358_80783,227,4368_16790,Abbey St Lower,6578,1,4368_7778195_6471003,4368_626 -4358_80783,229,4368_16791,Abbey St Lower,18213,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16792,Abbey St Lower,12606,1,4368_7778195_6471001,4368_626 -4358_80783,227,4368_16793,Abbey St Lower,5392,1,4368_7778195_6471006,4368_626 -4358_80783,229,4368_16794,Abbey St Lower,18267,1,4368_7778195_6471002,4368_626 -4358_80783,228,4368_16795,Abbey St Lower,12554,1,4368_7778195_6471002,4368_626 -4358_80783,227,4368_16796,Abbey St Lower,5250,1,4368_7778195_6471009,4368_626 -4358_80783,229,4368_16797,Abbey St Lower,18221,1,4368_7778195_6471005,4368_626 -4358_80783,228,4368_16798,Abbey St Lower,12404,1,4368_7778195_6471008,4368_626 -4358_80783,227,4368_16799,Abbey St Lower,5362,1,4368_7778195_6471002,4368_626 -4358_80760,227,4368_168,Shaw street,1602,0,4368_7778195_9001005,4368_2 -4358_80682,227,4368_1680,Harristown,6824,1,4368_7778195_8013005,4368_59 -4358_80783,229,4368_16800,Abbey St Lower,18177,1,4368_7778195_6471003,4368_626 -4358_80783,228,4368_16801,Abbey St Lower,12633,1,4368_7778195_6471006,4368_626 -4358_80783,227,4368_16802,Abbey St Lower,5282,1,4368_7778195_6471007,4368_626 -4358_80783,229,4368_16803,Abbey St Lower,18284,1,4368_7778195_6471007,4368_626 -4358_80783,228,4368_16804,Abbey St Lower,12491,1,4368_7778195_6471004,4368_626 -4358_80783,227,4368_16805,Abbey St Lower,5432,1,4368_7778195_6471001,4368_626 -4358_80783,229,4368_16806,Abbey St Lower,18244,1,4368_7778195_6471008,4368_627 -4358_80783,228,4368_16807,Abbey St Lower,12592,1,4368_7778195_6471005,4368_626 -4358_80783,227,4368_16808,Abbey St Lower,6569,1,4368_7778195_6471004,4368_626 -4358_80783,229,4368_16809,Abbey St Lower,18207,1,4368_7778195_6471006,4368_626 -4358_80682,228,4368_1681,Harristown,13628,1,4368_7778195_8013008,4368_59 -4358_80783,228,4368_16810,Abbey St Lower,12510,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16811,Abbey St Lower,5269,1,4368_7778195_6471005,4368_626 -4358_80783,229,4368_16812,Abbey St Lower,18215,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16813,Abbey St Lower,12618,1,4368_7778195_6471007,4368_626 -4358_80783,227,4368_16814,Abbey St Lower,6580,1,4368_7778195_6471003,4368_626 -4358_80783,229,4368_16815,Abbey St Lower,18269,1,4368_7778195_6471002,4368_626 -4358_80783,228,4368_16816,Abbey St Lower,12608,1,4368_7778195_6471001,4368_626 -4358_80783,227,4368_16817,Abbey St Lower,5445,1,4368_7778195_6471010,4368_626 -4358_80783,229,4368_16818,Abbey St Lower,18296,1,4368_7778195_6471009,4368_626 -4358_80783,228,4368_16819,Abbey St Lower,12556,1,4368_7778195_6471002,4368_626 -4358_80682,227,4368_1682,Harristown,6836,1,4368_7778195_8013007,4368_59 -4358_80783,227,4368_16820,Abbey St Lower,5252,1,4368_7778195_6471009,4368_626 -4358_80783,229,4368_16821,Abbey St Lower,18317,1,4368_7778195_6471010,4368_626 -4358_80783,228,4368_16822,Abbey St Lower,12406,1,4368_7778195_6471008,4368_626 -4358_80783,227,4368_16823,Abbey St Lower,5364,1,4368_7778195_6471002,4368_626 -4358_80783,229,4368_16824,Abbey St Lower,18179,1,4368_7778195_6471003,4368_626 -4358_80783,228,4368_16825,Abbey St Lower,12635,1,4368_7778195_6471006,4368_626 -4358_80783,227,4368_16826,Abbey St Lower,5284,1,4368_7778195_6471007,4368_626 -4358_80783,229,4368_16827,Abbey St Lower,18257,1,4368_7778195_6471011,4368_626 -4358_80783,228,4368_16828,Abbey St Lower,12493,1,4368_7778195_6471004,4368_626 -4358_80783,227,4368_16829,Abbey St Lower,5434,1,4368_7778195_6471001,4368_626 -4358_80682,229,4368_1683,Harristown,19080,1,4368_7778195_8013008,4368_59 -4358_80783,229,4368_16830,Abbey St Lower,18246,1,4368_7778195_6471008,4368_626 -4358_80783,228,4368_16831,Abbey St Lower,12594,1,4368_7778195_6471005,4368_626 -4358_80783,227,4368_16832,Abbey St Lower,6571,1,4368_7778195_6471004,4368_626 -4358_80783,229,4368_16833,Abbey St Lower,18343,1,4368_7778195_6471012,4368_626 -4358_80783,228,4368_16834,Abbey St Lower,12512,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16835,Abbey St Lower,5271,1,4368_7778195_6471005,4368_626 -4358_80783,229,4368_16836,Abbey St Lower,18217,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16837,Abbey St Lower,12620,1,4368_7778195_6471007,4368_626 -4358_80783,227,4368_16838,Abbey St Lower,6582,1,4368_7778195_6471003,4368_626 -4358_80783,229,4368_16839,Abbey St Lower,18271,1,4368_7778195_6471002,4368_626 -4358_80682,228,4368_1684,Harristown,13649,1,4368_7778195_8013012,4368_61 -4358_80783,227,4368_16840,Abbey St Lower,5447,1,4368_7778195_6471010,4368_626 -4358_80783,228,4368_16841,Abbey St Lower,12610,1,4368_7778195_6471001,4368_626 -4358_80783,229,4368_16842,Abbey St Lower,18298,1,4368_7778195_6471009,4368_626 -4358_80783,227,4368_16843,Abbey St Lower,5254,1,4368_7778195_6471009,4368_626 -4358_80783,228,4368_16844,Abbey St Lower,12558,1,4368_7778195_6471002,4368_626 -4358_80783,229,4368_16845,Abbey St Lower,18319,1,4368_7778195_6471010,4368_626 -4358_80783,227,4368_16846,Abbey St Lower,5346,1,4368_7778195_6471011,4368_626 -4358_80783,228,4368_16847,Abbey St Lower,12408,1,4368_7778195_6471008,4368_626 -4358_80783,229,4368_16848,Abbey St Lower,18181,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16849,Abbey St Lower,5366,1,4368_7778195_6471002,4368_626 -4358_80682,227,4368_1685,Harristown,6875,1,4368_7778195_8013008,4368_59 -4358_80783,228,4368_16850,Abbey St Lower,12637,1,4368_7778195_6471006,4368_626 -4358_80783,229,4368_16851,Abbey St Lower,18259,1,4368_7778195_6471011,4368_626 -4358_80783,227,4368_16852,Abbey St Lower,5286,1,4368_7778195_6471007,4368_626 -4358_80783,228,4368_16853,Abbey St Lower,12495,1,4368_7778195_6471004,4368_626 -4358_80783,229,4368_16854,Abbey St Lower,18248,1,4368_7778195_6471008,4368_626 -4358_80783,227,4368_16855,Abbey St Lower,5436,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16856,Abbey St Lower,12596,1,4368_7778195_6471005,4368_626 -4358_80783,229,4368_16857,Abbey St Lower,18345,1,4368_7778195_6471012,4368_626 -4358_80783,227,4368_16858,Abbey St Lower,5457,1,4368_7778195_6471012,4368_626 -4358_80783,228,4368_16859,Abbey St Lower,12514,1,4368_7778195_6471003,4368_626 -4358_80682,229,4368_1686,Harristown,19082,1,4368_7778195_8013009,4368_59 -4358_80783,229,4368_16860,Abbey St Lower,18164,1,4368_7778195_6471013,4368_626 -4358_80783,227,4368_16861,Abbey St Lower,5273,1,4368_7778195_6471005,4368_626 -4358_80783,228,4368_16862,Abbey St Lower,12622,1,4368_7778195_6471007,4368_626 -4358_80783,229,4368_16863,Abbey St Lower,18273,1,4368_7778195_6471002,4368_626 -4358_80783,227,4368_16864,Abbey St Lower,6584,1,4368_7778195_6471003,4368_626 -4358_80783,228,4368_16865,Abbey St Lower,12612,1,4368_7778195_6471001,4368_626 -4358_80783,229,4368_16866,Abbey St Lower,18300,1,4368_7778195_6471009,4368_626 -4358_80783,227,4368_16867,Abbey St Lower,5449,1,4368_7778195_6471010,4368_626 -4358_80783,228,4368_16868,Abbey St Lower,12560,1,4368_7778195_6471002,4368_626 -4358_80783,229,4368_16869,Abbey St Lower,18321,1,4368_7778195_6471010,4368_626 -4358_80682,228,4368_1687,Harristown,13594,1,4368_7778195_8013003,4368_61 -4358_80783,227,4368_16870,Abbey St Lower,5256,1,4368_7778195_6471009,4368_626 -4358_80783,228,4368_16871,Abbey St Lower,12410,1,4368_7778195_6471008,4368_626 -4358_80783,229,4368_16872,Abbey St Lower,18183,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16873,Abbey St Lower,5348,1,4368_7778195_6471011,4368_626 -4358_80783,228,4368_16874,Abbey St Lower,12639,1,4368_7778195_6471006,4368_626 -4358_80783,229,4368_16875,Abbey St Lower,18261,1,4368_7778195_6471011,4368_626 -4358_80783,228,4368_16876,Abbey St Lower,12497,1,4368_7778195_6471004,4368_626 -4358_80783,227,4368_16877,Abbey St Lower,5368,1,4368_7778195_6471002,4368_627 -4358_80783,229,4368_16878,Abbey St Lower,18250,1,4368_7778195_6471008,4368_626 -4358_80783,228,4368_16879,Abbey St Lower,12598,1,4368_7778195_6471005,4368_626 -4358_80682,227,4368_1688,Harristown,6886,1,4368_7778195_8013010,4368_59 -4358_80783,227,4368_16880,Abbey St Lower,5288,1,4368_7778195_6471007,4368_627 -4358_80783,229,4368_16881,Abbey St Lower,18347,1,4368_7778195_6471012,4368_626 -4358_80783,227,4368_16882,Abbey St Lower,5438,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16883,Abbey St Lower,12516,1,4368_7778195_6471003,4368_627 -4358_80783,229,4368_16884,Abbey St Lower,18166,1,4368_7778195_6471013,4368_626 -4358_80783,227,4368_16885,Abbey St Lower,5459,1,4368_7778195_6471012,4368_626 -4358_80783,228,4368_16886,Abbey St Lower,12624,1,4368_7778195_6471007,4368_627 -4358_80783,229,4368_16887,Abbey St Lower,18275,1,4368_7778195_6471002,4368_626 -4358_80783,228,4368_16888,Abbey St Lower,12614,1,4368_7778195_6471001,4368_626 -4358_80783,227,4368_16889,Abbey St Lower,5275,1,4368_7778195_6471005,4368_626 -4358_80682,229,4368_1689,Harristown,19079,1,4368_7778195_8013007,4368_59 -4358_80783,229,4368_16890,Abbey St Lower,18323,1,4368_7778195_6471010,4368_626 -4358_80783,227,4368_16891,Abbey St Lower,5451,1,4368_7778195_6471010,4368_626 -4358_80783,228,4368_16892,Abbey St Lower,12412,1,4368_7778195_6471008,4368_626 -4358_80783,229,4368_16893,Abbey St Lower,18185,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16894,Abbey St Lower,5258,1,4368_7778195_6471009,4368_626 -4358_80783,228,4368_16895,Abbey St Lower,12641,1,4368_7778195_6471006,4368_626 -4358_80783,227,4368_16896,Abbey St Lower,5350,1,4368_7778195_6471011,4368_626 -4358_80783,229,4368_16897,Abbey St Lower,18252,1,4368_7778195_6471008,4368_626 -4358_80783,228,4368_16898,Abbey St Lower,12499,1,4368_7778195_6471004,4368_626 -4358_80783,227,4368_16899,Abbey St Lower,5370,1,4368_7778195_6471002,4368_626 -4358_80760,227,4368_169,Shaw street,1555,0,4368_7778195_9001010,4368_1 -4358_80682,227,4368_1690,Harristown,6814,1,4368_7778195_8013003,4368_61 -4358_80783,227,4368_16900,Abbey St Lower,5290,1,4368_7778195_6471007,4368_626 -4358_80783,228,4368_16901,Abbey St Lower,12518,1,4368_7778195_6471003,4368_626 -4358_80783,229,4368_16902,Abbey St Lower,18168,1,4368_7778195_6471013,4368_626 -4358_80783,227,4368_16903,Abbey St Lower,5440,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16904,Abbey St Lower,12626,1,4368_7778195_6471007,4368_626 -4358_80783,227,4368_16905,Abbey St Lower,5461,1,4368_7778195_6471012,4368_626 -4358_80783,229,4368_16906,Abbey St Lower,18325,1,4368_7778195_6471010,4368_626 -4358_80783,228,4368_16907,Abbey St Lower,12414,1,4368_7778195_6471008,4368_626 -4358_80783,227,4368_16908,Abbey St Lower,5453,1,4368_7778195_6471010,4368_626 -4358_80783,227,4368_16909,Abbey St Lower,5260,1,4368_7778195_6471009,4368_626 -4358_80682,228,4368_1691,Harristown,13607,1,4368_7778195_8013005,4368_62 -4358_80783,228,4368_16910,Abbey St Lower,12643,1,4368_7778195_6471006,4368_626 -4358_80783,229,4368_16911,Abbey St Lower,18187,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16912,Abbey St Lower,5352,1,4368_7778195_6471011,4368_626 -4358_80783,228,4368_16913,Abbey St Lower,12501,1,4368_7778195_6471004,4368_626 -4358_80783,227,4368_16914,Abbey St Lower,5372,1,4368_7778195_6471002,4368_626 -4358_80783,229,4368_16915,Abbey St Lower,18254,1,4368_7778195_6471008,4368_626 -4358_80783,228,4368_16916,Abbey St Lower,12520,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16917,Abbey St Lower,5292,1,4368_7778195_6471007,4368_626 -4358_80783,227,4368_16918,Abbey St Lower,5442,1,4368_7778195_6471001,4368_626 -4358_80783,228,4368_16919,Abbey St Lower,12628,1,4368_7778195_6471007,4368_626 -4358_80682,227,4368_1692,Harristown,6990,1,4368_7778195_8013023,4368_59 -4358_80783,229,4368_16920,Abbey St Lower,18170,1,4368_7778195_6471013,4368_626 -4358_80783,227,4368_16921,Abbey St Lower,5463,1,4368_7778195_6471012,4368_626 -4358_80783,228,4368_16922,Abbey St Lower,12416,1,4368_7778195_6471008,4368_626 -4358_80783,227,4368_16923,Abbey St Lower,5455,1,4368_7778195_6471010,4368_626 -4358_80783,229,4368_16924,Abbey St Lower,18327,1,4368_7778195_6471010,4368_626 -4358_80783,228,4368_16925,Abbey St Lower,12645,1,4368_7778195_6471006,4368_626 -4358_80783,227,4368_16926,Abbey St Lower,5262,1,4368_7778195_6471009,4368_626 -4358_80783,229,4368_16927,Abbey St Lower,18189,1,4368_7778195_6471003,4368_626 -4358_80783,228,4368_16928,Abbey St Lower,12522,1,4368_7778195_6471003,4368_626 -4358_80783,227,4368_16929,Abbey St Lower,5354,1,4368_7778195_6471011,4368_626 -4358_80682,229,4368_1693,Harristown,19088,1,4368_7778195_8013011,4368_59 -4358_80783,229,4368_16930,Abbey St Lower,18256,1,4368_7778195_6471008,4368_626 -4358_80783,228,4368_16931,Abbey St Lower,12630,1,4368_7778195_6471007,4368_626 -4358_80783,227,4368_16932,Abbey St Lower,5444,1,4368_7778195_6471001,4368_626 -4358_80784,227,4368_16933,Malahide,5320,0,4368_7778195_6472003,4368_628 -4358_80784,227,4368_16934,Malahide,5394,0,4368_7778195_6472005,4368_628 -4358_80784,228,4368_16935,Malahide,12464,0,4368_7778195_6472006,4368_628 -4358_80784,227,4368_16936,Malahide,5245,0,4368_7778195_6472002,4368_628 -4358_80784,227,4368_16937,Malahide,5322,0,4368_7778195_6472003,4368_628 -4358_80784,228,4368_16938,Malahide,12539,0,4368_7778195_6472002,4368_628 -4358_80784,229,4368_16939,Malahide,18223,0,4368_7778195_6472003,4368_628 -4358_80682,228,4368_1694,Harristown,13660,1,4368_7778195_8013015,4368_61 -4358_80784,227,4368_16940,Malahide,5375,0,4368_7778195_6472007,4368_628 -4358_80784,228,4368_16941,Malahide,12419,0,4368_7778195_6472005,4368_628 -4358_80784,227,4368_16942,Malahide,6589,0,4368_7778195_6472001,4368_628 -4358_80784,229,4368_16943,Malahide,18234,0,4368_7778195_6472002,4368_628 -4358_80784,228,4368_16944,Malahide,12466,0,4368_7778195_6472006,4368_628 -4358_80784,227,4368_16945,Malahide,5412,0,4368_7778195_6472008,4368_628 -4358_80784,227,4368_16946,Malahide,5468,0,4368_7778195_6472004,4368_628 -4358_80784,228,4368_16947,Malahide,12525,0,4368_7778195_6472007,4368_629 -4358_80784,229,4368_16948,Malahide,18329,0,4368_7778195_6472007,4368_630 -4358_80784,227,4368_16949,Malahide,5324,0,4368_7778195_6472003,4368_628 -4358_80682,227,4368_1695,Harristown,6895,1,4368_7778195_8013012,4368_59 -4358_80784,229,4368_16950,Malahide,18225,0,4368_7778195_6472003,4368_629 -4358_80784,228,4368_16951,Malahide,12541,0,4368_7778195_6472002,4368_630 -4358_80784,229,4368_16952,Malahide,18607,0,4368_7778195_6472006,4368_628 -4358_80784,228,4368_16953,Malahide,12421,0,4368_7778195_6472005,4368_629 -4358_80784,227,4368_16954,Malahide,5377,0,4368_7778195_6472007,4368_630 -4358_80784,229,4368_16955,Malahide,18236,0,4368_7778195_6472002,4368_628 -4358_80784,228,4368_16956,Malahide,12468,0,4368_7778195_6472006,4368_629 -4358_80784,227,4368_16957,Malahide,6591,0,4368_7778195_6472001,4368_630 -4358_80784,228,4368_16958,Malahide,12449,0,4368_7778195_6472010,4368_628 -4358_80784,229,4368_16959,Malahide,18331,0,4368_7778195_6472007,4368_629 -4358_80682,228,4368_1696,Harristown,13620,1,4368_7778195_8013007,4368_59 -4358_80784,227,4368_16960,Malahide,5414,0,4368_7778195_6472008,4368_630 -4358_80784,227,4368_16961,Malahide,5470,0,4368_7778195_6472004,4368_628 -4358_80784,228,4368_16962,Malahide,12527,0,4368_7778195_6472007,4368_629 -4358_80784,229,4368_16963,Malahide,18227,0,4368_7778195_6472003,4368_630 -4358_80784,227,4368_16964,Malahide,5326,0,4368_7778195_6472003,4368_628 -4358_80784,228,4368_16965,Malahide,12441,0,4368_7778195_6472012,4368_629 -4358_80784,229,4368_16966,Malahide,18277,0,4368_7778195_6472010,4368_630 -4358_80784,228,4368_16967,Malahide,12660,0,4368_7778195_6472008,4368_628 -4358_80784,229,4368_16968,Malahide,18609,0,4368_7778195_6472006,4368_629 -4358_80784,227,4368_16969,Malahide,5379,0,4368_7778195_6472007,4368_630 -4358_80682,229,4368_1697,Harristown,19090,1,4368_7778195_8013012,4368_61 -4358_80784,227,4368_16970,Malahide,5295,0,4368_7778195_6472011,4368_628 -4358_80784,229,4368_16971,Malahide,18238,0,4368_7778195_6472002,4368_629 -4358_80784,228,4368_16972,Malahide,12423,0,4368_7778195_6472005,4368_630 -4358_80784,229,4368_16973,Malahide,18333,0,4368_7778195_6472007,4368_628 -4358_80784,228,4368_16974,Malahide,12562,0,4368_7778195_6472013,4368_629 -4358_80784,227,4368_16975,Malahide,5416,0,4368_7778195_6472008,4368_630 -4358_80784,227,4368_16976,Malahide,5472,0,4368_7778195_6472004,4368_628 -4358_80784,228,4368_16977,Malahide,12529,0,4368_7778195_6472007,4368_629 -4358_80784,229,4368_16978,Malahide,18229,0,4368_7778195_6472003,4368_630 -4358_80784,227,4368_16979,Malahide,5328,0,4368_7778195_6472003,4368_628 -4358_80682,227,4368_1698,Harristown,6899,1,4368_7778195_8013014,4368_59 -4358_80784,229,4368_16980,Malahide,18279,0,4368_7778195_6472010,4368_629 -4358_80784,228,4368_16981,Malahide,12670,0,4368_7778195_6472009,4368_630 -4358_80784,228,4368_16982,Malahide,12662,0,4368_7778195_6472008,4368_628 -4358_80784,229,4368_16983,Malahide,18611,0,4368_7778195_6472006,4368_629 -4358_80784,227,4368_16984,Malahide,5381,0,4368_7778195_6472007,4368_630 -4358_80784,227,4368_16985,Malahide,5297,0,4368_7778195_6472011,4368_628 -4358_80784,229,4368_16986,Malahide,18240,0,4368_7778195_6472002,4368_629 -4358_80784,228,4368_16987,Malahide,12579,0,4368_7778195_6472014,4368_630 -4358_80784,229,4368_16988,Malahide,18335,0,4368_7778195_6472007,4368_628 -4358_80784,228,4368_16989,Malahide,12564,0,4368_7778195_6472013,4368_629 -4358_80682,229,4368_1699,Harristown,19100,1,4368_7778195_8013015,4368_59 -4358_80784,227,4368_16990,Malahide,5418,0,4368_7778195_6472008,4368_630 -4358_80784,227,4368_16991,Malahide,5474,0,4368_7778195_6472004,4368_628 -4358_80784,229,4368_16992,Malahide,18231,0,4368_7778195_6472003,4368_629 -4358_80784,228,4368_16993,Malahide,12453,0,4368_7778195_6472010,4368_630 -4358_80784,228,4368_16994,Malahide,12461,0,4368_7778195_6472015,4368_628 -4358_80784,227,4368_16995,Malahide,5330,0,4368_7778195_6472003,4368_629 -4358_80784,229,4368_16996,Malahide,18281,0,4368_7778195_6472010,4368_630 -4358_80784,229,4368_16997,Malahide,18613,0,4368_7778195_6472006,4368_628 -4358_80784,228,4368_16998,Malahide,12547,0,4368_7778195_6472002,4368_629 -4358_80784,227,4368_16999,Malahide,5383,0,4368_7778195_6472007,4368_630 -4358_80760,227,4368_17,Shaw street,1539,0,4368_7778195_9001010,4368_1 -4358_80760,228,4368_170,Shaw street,9498,0,4368_7778195_9001004,4368_2 -4358_80682,228,4368_1700,Harristown,13656,1,4368_7778195_8013014,4368_61 -4358_80784,227,4368_17000,Malahide,5299,0,4368_7778195_6472011,4368_628 -4358_80784,229,4368_17001,Malahide,18242,0,4368_7778195_6472002,4368_629 -4358_80784,228,4368_17002,Malahide,12581,0,4368_7778195_6472014,4368_630 -4358_80784,228,4368_17003,Malahide,12427,0,4368_7778195_6472005,4368_628 -4358_80784,229,4368_17004,Malahide,18337,0,4368_7778195_6472007,4368_629 -4358_80784,227,4368_17005,Malahide,5420,0,4368_7778195_6472008,4368_630 -4358_80784,227,4368_17006,Malahide,5476,0,4368_7778195_6472004,4368_628 -4358_80784,228,4368_17007,Malahide,12455,0,4368_7778195_6472010,4368_628 -4358_80784,229,4368_17008,Malahide,18381,0,4368_7778195_6472008,4368_628 -4358_80784,227,4368_17009,Malahide,5332,0,4368_7778195_6472003,4368_628 -4358_80682,227,4368_1701,Harristown,6830,1,4368_7778195_8013006,4368_59 -4358_80784,228,4368_17010,Malahide,12463,0,4368_7778195_6472015,4368_628 -4358_80784,227,4368_17011,Malahide,5385,0,4368_7778195_6472007,4368_628 -4358_80784,229,4368_17012,Malahide,18615,0,4368_7778195_6472006,4368_628 -4358_80784,228,4368_17013,Malahide,12583,0,4368_7778195_6472014,4368_628 -4358_80784,227,4368_17014,Malahide,5301,0,4368_7778195_6472011,4368_628 -4358_80784,227,4368_17015,Malahide,5422,0,4368_7778195_6472008,4368_628 -4358_80784,228,4368_17016,Malahide,12429,0,4368_7778195_6472005,4368_628 -4358_80784,229,4368_17017,Malahide,18339,0,4368_7778195_6472007,4368_629 -4358_80784,227,4368_17018,Malahide,5478,0,4368_7778195_6472004,4368_628 -4358_80784,228,4368_17019,Malahide,12457,0,4368_7778195_6472010,4368_628 -4358_80682,229,4368_1702,Harristown,19102,1,4368_7778195_8013016,4368_59 -4358_80784,227,4368_17020,Malahide,5387,0,4368_7778195_6472007,4368_628 -4358_80784,229,4368_17021,Malahide,18383,0,4368_7778195_6472008,4368_628 -4358_80784,228,4368_17022,Malahide,12483,0,4368_7778195_6472018,4368_628 -4358_80784,227,4368_17023,Malahide,5303,0,4368_7778195_6472011,4368_628 -4358_80784,229,4368_17024,Malahide,18341,0,4368_7778195_6472007,4368_628 -4358_80784,228,4368_17025,Malahide,12585,0,4368_7778195_6472014,4368_629 -4358_80784,227,4368_17026,Malahide,5424,0,4368_7778195_6472008,4368_630 -4358_80784,229,4368_17027,Malahide,18385,0,4368_7778195_6472008,4368_628 -4358_80784,228,4368_17028,Malahide,12459,0,4368_7778195_6472010,4368_629 -4358_80784,227,4368_17029,Abbey St Lower,5244,1,4368_7778195_6472002,4368_631 -4358_80682,227,4368_1703,Harristown,6931,1,4368_7778195_8013017,4368_61 -4358_80784,228,4368_17030,Abbey St Lower,12538,1,4368_7778195_6472002,4368_631 -4358_80784,227,4368_17031,Abbey St Lower,5321,1,4368_7778195_6472003,4368_631 -4358_80784,227,4368_17032,Abbey St Lower,5374,1,4368_7778195_6472007,4368_631 -4358_80784,228,4368_17033,Abbey St Lower,12418,1,4368_7778195_6472005,4368_631 -4358_80784,229,4368_17034,Abbey St Lower,18349,1,4368_7778195_6472001,4368_631 -4358_80784,227,4368_17035,Abbey St Lower,5395,1,4368_7778195_6472005,4368_631 -4358_80784,228,4368_17036,Abbey St Lower,12465,1,4368_7778195_6472006,4368_631 -4358_80784,227,4368_17037,Abbey St Lower,6605,1,4368_7778195_6472009,4368_631 -4358_80784,229,4368_17038,Abbey St Lower,18191,1,4368_7778195_6472004,4368_631 -4358_80784,228,4368_17039,Abbey St Lower,12524,1,4368_7778195_6472007,4368_631 -4358_80682,228,4368_1704,Harristown,13635,1,4368_7778195_8013009,4368_62 -4358_80784,227,4368_17040,Abbey St Lower,5246,1,4368_7778195_6472002,4368_631 -4358_80784,227,4368_17041,Abbey St Lower,5323,1,4368_7778195_6472003,4368_631 -4358_80784,229,4368_17042,Abbey St Lower,18224,1,4368_7778195_6472003,4368_631 -4358_80784,228,4368_17043,Abbey St Lower,12540,1,4368_7778195_6472002,4368_631 -4358_80784,227,4368_17044,Abbey St Lower,5376,1,4368_7778195_6472007,4368_631 -4358_80784,229,4368_17045,Abbey St Lower,18606,1,4368_7778195_6472006,4368_631 -4358_80784,228,4368_17046,Abbey St Lower,12420,1,4368_7778195_6472005,4368_631 -4358_80784,227,4368_17047,Abbey St Lower,6590,1,4368_7778195_6472001,4368_631 -4358_80784,228,4368_17048,Abbey St Lower,12467,1,4368_7778195_6472006,4368_631 -4358_80784,229,4368_17049,Abbey St Lower,18235,1,4368_7778195_6472002,4368_631 -4358_80682,227,4368_1705,Harristown,7006,1,4368_7778195_8013027,4368_59 -4358_80784,227,4368_17050,Abbey St Lower,5413,1,4368_7778195_6472008,4368_631 -4358_80784,228,4368_17051,Abbey St Lower,12448,1,4368_7778195_6472010,4368_631 -4358_80784,229,4368_17052,Abbey St Lower,18330,1,4368_7778195_6472007,4368_631 -4358_80784,227,4368_17053,Abbey St Lower,5469,1,4368_7778195_6472004,4368_631 -4358_80784,228,4368_17054,Abbey St Lower,12526,1,4368_7778195_6472007,4368_631 -4358_80784,229,4368_17055,Abbey St Lower,18226,1,4368_7778195_6472003,4368_631 -4358_80784,227,4368_17056,Abbey St Lower,5325,1,4368_7778195_6472003,4368_631 -4358_80784,229,4368_17057,Abbey St Lower,18276,1,4368_7778195_6472010,4368_632 -4358_80784,228,4368_17058,Abbey St Lower,12542,1,4368_7778195_6472002,4368_631 -4358_80784,227,4368_17059,Abbey St Lower,5378,1,4368_7778195_6472007,4368_631 -4358_80682,228,4368_1706,Harristown,13640,1,4368_7778195_8013010,4368_59 -4358_80784,229,4368_17060,Abbey St Lower,18608,1,4368_7778195_6472006,4368_631 -4358_80784,228,4368_17061,Abbey St Lower,12422,1,4368_7778195_6472005,4368_632 -4358_80784,227,4368_17062,Abbey St Lower,6592,1,4368_7778195_6472001,4368_631 -4358_80784,229,4368_17063,Abbey St Lower,18237,1,4368_7778195_6472002,4368_631 -4358_80784,228,4368_17064,Abbey St Lower,12469,1,4368_7778195_6472006,4368_632 -4358_80784,227,4368_17065,Abbey St Lower,5415,1,4368_7778195_6472008,4368_631 -4358_80784,228,4368_17066,Abbey St Lower,12450,1,4368_7778195_6472010,4368_631 -4358_80784,229,4368_17067,Abbey St Lower,18332,1,4368_7778195_6472007,4368_632 -4358_80784,227,4368_17068,Abbey St Lower,5471,1,4368_7778195_6472004,4368_631 -4358_80784,228,4368_17069,Abbey St Lower,12528,1,4368_7778195_6472007,4368_631 -4358_80682,229,4368_1707,Harristown,19104,1,4368_7778195_8013017,4368_61 -4358_80784,229,4368_17070,Abbey St Lower,18228,1,4368_7778195_6472003,4368_632 -4358_80784,227,4368_17071,Abbey St Lower,5327,1,4368_7778195_6472003,4368_631 -4358_80784,228,4368_17072,Abbey St Lower,12442,1,4368_7778195_6472012,4368_631 -4358_80784,229,4368_17073,Abbey St Lower,18278,1,4368_7778195_6472010,4368_632 -4358_80784,227,4368_17074,Abbey St Lower,5380,1,4368_7778195_6472007,4368_631 -4358_80784,228,4368_17075,Abbey St Lower,12661,1,4368_7778195_6472008,4368_631 -4358_80784,229,4368_17076,Abbey St Lower,18610,1,4368_7778195_6472006,4368_631 -4358_80784,227,4368_17077,Abbey St Lower,5296,1,4368_7778195_6472011,4368_631 -4358_80784,228,4368_17078,Abbey St Lower,12424,1,4368_7778195_6472005,4368_631 -4358_80784,229,4368_17079,Abbey St Lower,18239,1,4368_7778195_6472002,4368_631 -4358_80682,227,4368_1708,Harristown,6713,1,4368_7778195_8013001,4368_59 -4358_80784,227,4368_17080,Abbey St Lower,5417,1,4368_7778195_6472008,4368_631 -4358_80784,229,4368_17081,Abbey St Lower,18334,1,4368_7778195_6472007,4368_631 -4358_80784,228,4368_17082,Abbey St Lower,12563,1,4368_7778195_6472013,4368_632 -4358_80784,227,4368_17083,Abbey St Lower,5473,1,4368_7778195_6472004,4368_631 -4358_80784,228,4368_17084,Abbey St Lower,12530,1,4368_7778195_6472007,4368_631 -4358_80784,229,4368_17085,Abbey St Lower,18230,1,4368_7778195_6472003,4368_631 -4358_80784,227,4368_17086,Abbey St Lower,5329,1,4368_7778195_6472003,4368_631 -4358_80784,228,4368_17087,Abbey St Lower,12460,1,4368_7778195_6472015,4368_631 -4358_80784,229,4368_17088,Abbey St Lower,18280,1,4368_7778195_6472010,4368_631 -4358_80784,228,4368_17089,Abbey St Lower,12663,1,4368_7778195_6472008,4368_631 -4358_80682,228,4368_1709,Harristown,13667,1,4368_7778195_8013017,4368_59 -4358_80784,227,4368_17090,Abbey St Lower,5382,1,4368_7778195_6472007,4368_631 -4358_80784,229,4368_17091,Abbey St Lower,18612,1,4368_7778195_6472006,4368_631 -4358_80784,228,4368_17092,Abbey St Lower,12580,1,4368_7778195_6472014,4368_631 -4358_80784,227,4368_17093,Abbey St Lower,5298,1,4368_7778195_6472011,4368_631 -4358_80784,229,4368_17094,Abbey St Lower,18241,1,4368_7778195_6472002,4368_631 -4358_80784,228,4368_17095,Abbey St Lower,12571,1,4368_7778195_6472017,4368_631 -4358_80784,227,4368_17096,Abbey St Lower,5419,1,4368_7778195_6472008,4368_631 -4358_80784,229,4368_17097,Abbey St Lower,18336,1,4368_7778195_6472007,4368_631 -4358_80784,228,4368_17098,Abbey St Lower,12565,1,4368_7778195_6472013,4368_631 -4358_80784,227,4368_17099,Abbey St Lower,5475,1,4368_7778195_6472004,4368_631 -4358_80760,229,4368_171,Shaw street,15599,0,4368_7778195_9001004,4368_3 -4358_80682,229,4368_1710,Harristown,19084,1,4368_7778195_8013010,4368_61 -4358_80784,229,4368_17100,Abbey St Lower,18232,1,4368_7778195_6472003,4368_631 -4358_80784,228,4368_17101,Abbey St Lower,12454,1,4368_7778195_6472010,4368_631 -4358_80784,227,4368_17102,Abbey St Lower,5331,1,4368_7778195_6472003,4368_631 -4358_80784,228,4368_17103,Abbey St Lower,12462,1,4368_7778195_6472015,4368_631 -4358_80784,229,4368_17104,Abbey St Lower,18614,1,4368_7778195_6472006,4368_631 -4358_80784,227,4368_17105,Abbey St Lower,5384,1,4368_7778195_6472007,4368_631 -4358_80784,228,4368_17106,Abbey St Lower,12582,1,4368_7778195_6472014,4368_631 -4358_80784,227,4368_17107,Abbey St Lower,5300,1,4368_7778195_6472011,4368_631 -4358_80784,228,4368_17108,Abbey St Lower,12428,1,4368_7778195_6472005,4368_631 -4358_80784,229,4368_17109,Abbey St Lower,18338,1,4368_7778195_6472007,4368_631 -4358_80682,227,4368_1711,Harristown,6999,1,4368_7778195_8013025,4368_59 -4358_80784,227,4368_17110,Abbey St Lower,5421,1,4368_7778195_6472008,4368_631 -4358_80784,227,4368_17111,Abbey St Lower,5477,1,4368_7778195_6472004,4368_631 -4358_80784,228,4368_17112,Abbey St Lower,12456,1,4368_7778195_6472010,4368_631 -4358_80784,229,4368_17113,Abbey St Lower,18382,1,4368_7778195_6472008,4368_631 -4358_80784,227,4368_17114,Abbey St Lower,5386,1,4368_7778195_6472007,4368_631 -4358_80784,228,4368_17115,Abbey St Lower,12482,1,4368_7778195_6472018,4368_631 -4358_80784,227,4368_17116,Abbey St Lower,5302,1,4368_7778195_6472011,4368_631 -4358_80784,228,4368_17117,Abbey St Lower,12584,1,4368_7778195_6472014,4368_631 -4358_80784,229,4368_17118,Abbey St Lower,18340,1,4368_7778195_6472007,4368_631 -4358_80784,227,4368_17119,Abbey St Lower,5423,1,4368_7778195_6472008,4368_631 -4358_80682,228,4368_1712,Harristown,13577,1,4368_7778195_8013001,4368_59 -4358_80784,227,4368_17120,Abbey St Lower,5479,1,4368_7778195_6472004,4368_631 -4358_80784,228,4368_17121,Abbey St Lower,12458,1,4368_7778195_6472010,4368_632 -4358_80784,229,4368_17122,Abbey St Lower,18384,1,4368_7778195_6472008,4368_631 -4358_80784,228,4368_17123,Abbey St Lower,12484,1,4368_7778195_6472018,4368_631 -4358_80784,227,4368_17124,Abbey St Lower,5304,1,4368_7778195_6472011,4368_632 -4358_80784,229,4368_17125,Abbey St Lower,18342,1,4368_7778195_6472007,4368_631 -4358_80785,227,4368_17126,Howth Summit,6587,0,4368_7778195_6472001,4368_633 -4358_80785,228,4368_17127,Howth Summit,12473,0,4368_7778195_6472003,4368_633 -4358_80785,227,4368_17128,Howth Summit,5410,0,4368_7778195_6472008,4368_633 -4358_80785,228,4368_17129,Howth Summit,12431,0,4368_7778195_6472001,4368_633 -4358_80682,229,4368_1713,Harristown,19116,1,4368_7778195_8013020,4368_61 -4358_80785,227,4368_17130,Howth Summit,5466,0,4368_7778195_6472004,4368_633 -4358_80785,227,4368_17131,Howth Summit,6594,0,4368_7778195_6472006,4368_633 -4358_80785,228,4368_17132,Howth Summit,12648,0,4368_7778195_6472004,4368_633 -4358_80785,229,4368_17133,Howth Summit,18350,0,4368_7778195_6472001,4368_633 -4358_80785,227,4368_17134,Howth Summit,5305,0,4368_7778195_6472010,4368_633 -4358_80785,228,4368_17135,Howth Summit,12656,0,4368_7778195_6472008,4368_633 -4358_80785,227,4368_17136,Howth Summit,5396,0,4368_7778195_6472005,4368_633 -4358_80785,229,4368_17137,Howth Summit,18192,0,4368_7778195_6472004,4368_633 -4358_80785,228,4368_17138,Howth Summit,12433,0,4368_7778195_6472001,4368_633 -4358_80785,227,4368_17139,Howth Summit,6606,0,4368_7778195_6472009,4368_633 -4358_80682,227,4368_1714,Harristown,7009,1,4368_7778195_8013028,4368_59 -4358_80785,228,4368_17140,Howth Summit,12650,0,4368_7778195_6472004,4368_633 -4358_80785,227,4368_17141,Howth Summit,6596,0,4368_7778195_6472006,4368_634 -4358_80785,229,4368_17142,Howth Summit,18287,0,4368_7778195_6472005,4368_635 -4358_80785,227,4368_17143,Howth Summit,5307,0,4368_7778195_6472010,4368_633 -4358_80785,228,4368_17144,Howth Summit,12666,0,4368_7778195_6472009,4368_634 -4358_80785,229,4368_17145,Howth Summit,18352,0,4368_7778195_6472001,4368_635 -4358_80785,228,4368_17146,Howth Summit,12658,0,4368_7778195_6472008,4368_633 -4358_80785,229,4368_17147,Howth Summit,18373,0,4368_7778195_6472008,4368_634 -4358_80785,227,4368_17148,Howth Summit,5398,0,4368_7778195_6472005,4368_635 -4358_80785,227,4368_17149,Howth Summit,6608,0,4368_7778195_6472009,4368_633 -4358_80682,228,4368_1715,Harristown,13587,1,4368_7778195_8013002,4368_59 -4358_80785,229,4368_17150,Howth Summit,18194,0,4368_7778195_6472004,4368_634 -4358_80785,228,4368_17151,Howth Summit,12435,0,4368_7778195_6472001,4368_635 -4358_80785,228,4368_17152,Howth Summit,12652,0,4368_7778195_6472004,4368_633 -4358_80785,227,4368_17153,Howth Summit,6598,0,4368_7778195_6472006,4368_634 -4358_80785,229,4368_17154,Howth Summit,18289,0,4368_7778195_6472005,4368_635 -4358_80785,229,4368_17155,Howth Summit,18311,0,4368_7778195_6472009,4368_633 -4358_80785,227,4368_17156,Howth Summit,5309,0,4368_7778195_6472010,4368_634 -4358_80785,228,4368_17157,Howth Summit,12668,0,4368_7778195_6472009,4368_635 -4358_80785,229,4368_17158,Howth Summit,18375,0,4368_7778195_6472008,4368_633 -4358_80785,227,4368_17159,Howth Summit,5400,0,4368_7778195_6472005,4368_634 -4358_80682,229,4368_1716,Harristown,19093,1,4368_7778195_8013013,4368_61 -4358_80785,228,4368_17160,Howth Summit,12543,0,4368_7778195_6472002,4368_635 -4358_80785,227,4368_17161,Howth Summit,6610,0,4368_7778195_6472009,4368_633 -4358_80785,229,4368_17162,Howth Summit,18196,0,4368_7778195_6472004,4368_634 -4358_80785,228,4368_17163,Howth Summit,12476,0,4368_7778195_6472011,4368_635 -4358_80785,229,4368_17164,Howth Summit,18369,0,4368_7778195_6472012,4368_633 -4358_80785,227,4368_17165,Howth Summit,6600,0,4368_7778195_6472006,4368_634 -4358_80785,228,4368_17166,Howth Summit,12437,0,4368_7778195_6472001,4368_635 -4358_80785,229,4368_17167,Howth Summit,18363,0,4368_7778195_6472011,4368_633 -4358_80785,228,4368_17168,Howth Summit,12470,0,4368_7778195_6472006,4368_634 -4358_80785,227,4368_17169,Howth Summit,5311,0,4368_7778195_6472010,4368_633 -4358_80682,227,4368_1717,Harristown,7004,1,4368_7778195_8013026,4368_62 -4358_80785,228,4368_17170,Howth Summit,12451,0,4368_7778195_6472010,4368_634 -4358_80785,229,4368_17171,Howth Summit,18291,0,4368_7778195_6472005,4368_635 -4358_80785,228,4368_17172,Howth Summit,12654,0,4368_7778195_6472004,4368_633 -4358_80785,229,4368_17173,Howth Summit,18313,0,4368_7778195_6472009,4368_634 -4358_80785,227,4368_17174,Howth Summit,5402,0,4368_7778195_6472005,4368_635 -4358_80785,229,4368_17175,Howth Summit,18353,0,4368_7778195_6472014,4368_633 -4358_80785,228,4368_17176,Howth Summit,12443,0,4368_7778195_6472012,4368_634 -4358_80785,227,4368_17177,Howth Summit,6612,0,4368_7778195_6472009,4368_633 -4358_80785,229,4368_17178,Howth Summit,18377,0,4368_7778195_6472008,4368_634 -4358_80785,228,4368_17179,Howth Summit,12545,0,4368_7778195_6472002,4368_635 -4358_80682,227,4368_1718,Harristown,7018,1,4368_7778195_8013030,4368_59 -4358_80785,229,4368_17180,Howth Summit,18368,0,4368_7778195_6472013,4368_633 -4358_80785,228,4368_17181,Howth Summit,12478,0,4368_7778195_6472011,4368_634 -4358_80785,227,4368_17182,Howth Summit,5338,0,4368_7778195_6472012,4368_635 -4358_80785,229,4368_17183,Howth Summit,18198,0,4368_7778195_6472004,4368_633 -4358_80785,228,4368_17184,Howth Summit,12425,0,4368_7778195_6472005,4368_634 -4358_80785,227,4368_17185,Howth Summit,6602,0,4368_7778195_6472006,4368_633 -4358_80785,229,4368_17186,Howth Summit,18365,0,4368_7778195_6472011,4368_634 -4358_80785,228,4368_17187,Howth Summit,12439,0,4368_7778195_6472001,4368_635 -4358_80785,229,4368_17188,Howth Summit,18371,0,4368_7778195_6472012,4368_633 -4358_80785,227,4368_17189,Howth Summit,5313,0,4368_7778195_6472013,4368_634 -4358_80682,229,4368_1719,Harristown,19098,1,4368_7778195_8013014,4368_59 -4358_80785,228,4368_17190,Howth Summit,12472,0,4368_7778195_6472006,4368_635 -4358_80785,228,4368_17191,Howth Summit,12531,0,4368_7778195_6472007,4368_633 -4358_80785,229,4368_17192,Howth Summit,18293,0,4368_7778195_6472005,4368_634 -4358_80785,229,4368_17193,Howth Summit,18315,0,4368_7778195_6472009,4368_633 -4358_80785,227,4368_17194,Howth Summit,5404,0,4368_7778195_6472005,4368_634 -4358_80785,228,4368_17195,Howth Summit,12671,0,4368_7778195_6472016,4368_635 -4358_80785,227,4368_17196,Howth Summit,6614,0,4368_7778195_6472009,4368_633 -4358_80785,228,4368_17197,Howth Summit,12445,0,4368_7778195_6472012,4368_634 -4358_80785,229,4368_17198,Howth Summit,18379,0,4368_7778195_6472008,4368_635 -4358_80785,228,4368_17199,Howth Summit,12664,0,4368_7778195_6472008,4368_633 -4358_80760,227,4368_172,Shanard Road,1896,1,4368_7778195_9001002,4368_4 -4358_80682,228,4368_1720,Harristown,13663,1,4368_7778195_8013016,4368_61 -4358_80785,229,4368_17200,Howth Summit,18355,0,4368_7778195_6472016,4368_634 -4358_80785,229,4368_17201,Howth Summit,18200,0,4368_7778195_6472004,4368_633 -4358_80785,228,4368_17202,Howth Summit,12480,0,4368_7778195_6472011,4368_634 -4358_80785,227,4368_17203,Howth Summit,5340,0,4368_7778195_6472012,4368_635 -4358_80785,227,4368_17204,Howth Summit,6604,0,4368_7778195_6472006,4368_633 -4358_80785,228,4368_17205,Howth Summit,12572,0,4368_7778195_6472017,4368_634 -4358_80785,229,4368_17206,Howth Summit,18303,0,4368_7778195_6472015,4368_635 -4358_80785,228,4368_17207,Howth Summit,12566,0,4368_7778195_6472013,4368_633 -4358_80785,229,4368_17208,Howth Summit,18304,0,4368_7778195_6472017,4368_634 -4358_80785,228,4368_17209,Howth Summit,12533,0,4368_7778195_6472007,4368_633 -4358_80682,227,4368_1721,Harristown,7020,1,4368_7778195_8013031,4368_59 -4358_80785,227,4368_17210,Howth Summit,5315,0,4368_7778195_6472013,4368_634 -4358_80785,229,4368_17211,Howth Summit,18295,0,4368_7778195_6472005,4368_635 -4358_80785,227,4368_17212,Howth Summit,5406,0,4368_7778195_6472005,4368_633 -4358_80785,228,4368_17213,Howth Summit,12447,0,4368_7778195_6472012,4368_633 -4358_80785,229,4368_17214,Howth Summit,18357,0,4368_7778195_6472016,4368_633 -4358_80785,227,4368_17215,Howth Summit,5334,0,4368_7778195_6472014,4368_633 -4358_80785,228,4368_17216,Howth Summit,12574,0,4368_7778195_6472017,4368_633 -4358_80785,227,4368_17217,Howth Summit,5342,0,4368_7778195_6472012,4368_633 -4358_80785,229,4368_17218,Howth Summit,18306,0,4368_7778195_6472017,4368_633 -4358_80785,228,4368_17219,Howth Summit,12568,0,4368_7778195_6472013,4368_633 -4358_80682,228,4368_1722,Harristown,13669,1,4368_7778195_8013018,4368_59 -4358_80785,227,4368_17220,Howth Summit,5317,0,4368_7778195_6472013,4368_633 -4358_80785,227,4368_17221,Howth Summit,5408,0,4368_7778195_6472005,4368_633 -4358_80785,228,4368_17222,Howth Summit,12535,0,4368_7778195_6472007,4368_633 -4358_80785,229,4368_17223,Howth Summit,18359,0,4368_7778195_6472016,4368_633 -4358_80785,227,4368_17224,Howth Summit,5336,0,4368_7778195_6472014,4368_633 -4358_80785,228,4368_17225,Howth Summit,12576,0,4368_7778195_6472017,4368_633 -4358_80785,227,4368_17226,Howth Summit,5344,0,4368_7778195_6472012,4368_633 -4358_80785,229,4368_17227,Howth Summit,18308,0,4368_7778195_6472017,4368_633 -4358_80785,228,4368_17228,Howth Summit,12570,0,4368_7778195_6472013,4368_633 -4358_80785,227,4368_17229,Howth Summit,5319,0,4368_7778195_6472013,4368_633 -4358_80682,229,4368_1723,Harristown,19056,1,4368_7778195_8013001,4368_61 -4358_80785,227,4368_17230,Howth Summit,5480,0,4368_7778195_6472004,4368_633 -4358_80785,228,4368_17231,Howth Summit,12537,0,4368_7778195_6472007,4368_634 -4358_80785,229,4368_17232,Howth Summit,18361,0,4368_7778195_6472016,4368_635 -4358_80785,227,4368_17233,Abbey St Lower,6586,1,4368_7778195_6472001,4368_636 -4358_80785,228,4368_17234,Abbey St Lower,12430,1,4368_7778195_6472001,4368_636 -4358_80785,227,4368_17235,Abbey St Lower,5465,1,4368_7778195_6472004,4368_636 -4358_80785,228,4368_17236,Abbey St Lower,12647,1,4368_7778195_6472004,4368_636 -4358_80785,227,4368_17237,Abbey St Lower,6593,1,4368_7778195_6472006,4368_637 -4358_80785,227,4368_17238,Abbey St Lower,6588,1,4368_7778195_6472001,4368_636 -4358_80785,228,4368_17239,Abbey St Lower,12474,1,4368_7778195_6472003,4368_636 -4358_80682,227,4368_1724,Harristown,7025,1,4368_7778195_8013032,4368_59 -4358_80785,229,4368_17240,Abbey St Lower,18233,1,4368_7778195_6472002,4368_636 -4358_80785,227,4368_17241,Abbey St Lower,5411,1,4368_7778195_6472008,4368_636 -4358_80785,228,4368_17242,Abbey St Lower,12432,1,4368_7778195_6472001,4368_636 -4358_80785,227,4368_17243,Abbey St Lower,5467,1,4368_7778195_6472004,4368_636 -4358_80785,227,4368_17244,Abbey St Lower,6595,1,4368_7778195_6472006,4368_636 -4358_80785,229,4368_17245,Abbey St Lower,18286,1,4368_7778195_6472005,4368_636 -4358_80785,228,4368_17246,Abbey St Lower,12649,1,4368_7778195_6472004,4368_636 -4358_80785,227,4368_17247,Abbey St Lower,5306,1,4368_7778195_6472010,4368_636 -4358_80785,229,4368_17248,Abbey St Lower,18351,1,4368_7778195_6472001,4368_636 -4358_80785,228,4368_17249,Abbey St Lower,12665,1,4368_7778195_6472009,4368_636 -4358_80682,229,4368_1725,Harristown,19108,1,4368_7778195_8013018,4368_59 -4358_80785,227,4368_17250,Abbey St Lower,5397,1,4368_7778195_6472005,4368_636 -4358_80785,229,4368_17251,Abbey St Lower,18372,1,4368_7778195_6472008,4368_636 -4358_80785,228,4368_17252,Abbey St Lower,12657,1,4368_7778195_6472008,4368_636 -4358_80785,228,4368_17253,Abbey St Lower,12434,1,4368_7778195_6472001,4368_636 -4358_80785,227,4368_17254,Abbey St Lower,6607,1,4368_7778195_6472009,4368_636 -4358_80785,229,4368_17255,Abbey St Lower,18193,1,4368_7778195_6472004,4368_636 -4358_80785,228,4368_17256,Abbey St Lower,12651,1,4368_7778195_6472004,4368_636 -4358_80785,227,4368_17257,Abbey St Lower,6597,1,4368_7778195_6472006,4368_636 -4358_80785,229,4368_17258,Abbey St Lower,18288,1,4368_7778195_6472005,4368_637 -4358_80785,228,4368_17259,Abbey St Lower,12667,1,4368_7778195_6472009,4368_636 -4358_80682,228,4368_1726,Harristown,13602,1,4368_7778195_8013004,4368_61 -4358_80785,229,4368_17260,Abbey St Lower,18310,1,4368_7778195_6472009,4368_636 -4358_80785,227,4368_17261,Abbey St Lower,5308,1,4368_7778195_6472010,4368_637 -4358_80785,228,4368_17262,Abbey St Lower,12659,1,4368_7778195_6472008,4368_636 -4358_80785,229,4368_17263,Abbey St Lower,18374,1,4368_7778195_6472008,4368_636 -4358_80785,227,4368_17264,Abbey St Lower,5399,1,4368_7778195_6472005,4368_637 -4358_80785,229,4368_17265,Abbey St Lower,18195,1,4368_7778195_6472004,4368_636 -4358_80785,228,4368_17266,Abbey St Lower,12475,1,4368_7778195_6472011,4368_637 -4358_80785,227,4368_17267,Abbey St Lower,6609,1,4368_7778195_6472009,4368_636 -4358_80785,229,4368_17268,Abbey St Lower,18362,1,4368_7778195_6472011,4368_636 -4358_80785,228,4368_17269,Abbey St Lower,12436,1,4368_7778195_6472001,4368_637 -4358_80682,227,4368_1727,Harristown,7027,1,4368_7778195_8013033,4368_59 -4358_80785,227,4368_17270,Abbey St Lower,6599,1,4368_7778195_6472006,4368_636 -4358_80785,228,4368_17271,Abbey St Lower,12653,1,4368_7778195_6472004,4368_636 -4358_80785,229,4368_17272,Abbey St Lower,18290,1,4368_7778195_6472005,4368_637 -4358_80785,227,4368_17273,Abbey St Lower,5310,1,4368_7778195_6472010,4368_636 -4358_80785,229,4368_17274,Abbey St Lower,18312,1,4368_7778195_6472009,4368_636 -4358_80785,228,4368_17275,Abbey St Lower,12669,1,4368_7778195_6472009,4368_637 -4358_80785,227,4368_17276,Abbey St Lower,5401,1,4368_7778195_6472005,4368_636 -4358_80785,229,4368_17277,Abbey St Lower,18376,1,4368_7778195_6472008,4368_636 -4358_80785,228,4368_17278,Abbey St Lower,12544,1,4368_7778195_6472002,4368_637 -4358_80785,227,4368_17279,Abbey St Lower,6611,1,4368_7778195_6472009,4368_636 -4358_80682,228,4368_1728,Harristown,13615,1,4368_7778195_8013006,4368_59 -4358_80785,229,4368_17280,Abbey St Lower,18367,1,4368_7778195_6472013,4368_636 -4358_80785,228,4368_17281,Abbey St Lower,12477,1,4368_7778195_6472011,4368_637 -4358_80785,229,4368_17282,Abbey St Lower,18197,1,4368_7778195_6472004,4368_636 -4358_80785,228,4368_17283,Abbey St Lower,12578,1,4368_7778195_6472014,4368_637 -4358_80785,227,4368_17284,Abbey St Lower,5337,1,4368_7778195_6472012,4368_636 -4358_80785,229,4368_17285,Abbey St Lower,18364,1,4368_7778195_6472011,4368_636 -4358_80785,228,4368_17286,Abbey St Lower,12438,1,4368_7778195_6472001,4368_636 -4358_80785,227,4368_17287,Abbey St Lower,6601,1,4368_7778195_6472006,4368_636 -4358_80785,229,4368_17288,Abbey St Lower,18292,1,4368_7778195_6472005,4368_636 -4358_80785,228,4368_17289,Abbey St Lower,12471,1,4368_7778195_6472006,4368_636 -4358_80682,229,4368_1729,Harristown,19066,1,4368_7778195_8013002,4368_61 -4358_80785,229,4368_17290,Abbey St Lower,18370,1,4368_7778195_6472012,4368_636 -4358_80785,228,4368_17291,Abbey St Lower,12452,1,4368_7778195_6472010,4368_636 -4358_80785,227,4368_17292,Abbey St Lower,5312,1,4368_7778195_6472013,4368_636 -4358_80785,229,4368_17293,Abbey St Lower,18314,1,4368_7778195_6472009,4368_636 -4358_80785,228,4368_17294,Abbey St Lower,12655,1,4368_7778195_6472004,4368_636 -4358_80785,227,4368_17295,Abbey St Lower,5403,1,4368_7778195_6472005,4368_637 -4358_80785,229,4368_17296,Abbey St Lower,18354,1,4368_7778195_6472014,4368_636 -4358_80785,228,4368_17297,Abbey St Lower,12444,1,4368_7778195_6472012,4368_636 -4358_80785,229,4368_17298,Abbey St Lower,18378,1,4368_7778195_6472008,4368_636 -4358_80785,227,4368_17299,Abbey St Lower,6613,1,4368_7778195_6472009,4368_636 -4358_80760,228,4368_173,Shanard Road,9371,1,4368_7778195_9001001,4368_5 -4358_80682,227,4368_1730,Harristown,6996,1,4368_7778195_8013024,4368_62 -4358_80785,228,4368_17300,Abbey St Lower,12546,1,4368_7778195_6472002,4368_637 -4358_80785,229,4368_17301,Abbey St Lower,18199,1,4368_7778195_6472004,4368_636 -4358_80785,228,4368_17302,Abbey St Lower,12479,1,4368_7778195_6472011,4368_637 -4358_80785,227,4368_17303,Abbey St Lower,5339,1,4368_7778195_6472012,4368_636 -4358_80785,229,4368_17304,Abbey St Lower,18366,1,4368_7778195_6472011,4368_636 -4358_80785,228,4368_17305,Abbey St Lower,12440,1,4368_7778195_6472001,4368_637 -4358_80785,228,4368_17306,Abbey St Lower,12426,1,4368_7778195_6472005,4368_636 -4358_80785,229,4368_17307,Abbey St Lower,18302,1,4368_7778195_6472015,4368_637 -4358_80785,227,4368_17308,Abbey St Lower,6603,1,4368_7778195_6472006,4368_636 -4358_80785,229,4368_17309,Abbey St Lower,18294,1,4368_7778195_6472005,4368_636 -4358_80682,227,4368_1731,Harristown,6979,1,4368_7778195_8013019,4368_59 -4358_80785,228,4368_17310,Abbey St Lower,12532,1,4368_7778195_6472007,4368_636 -4358_80785,227,4368_17311,Abbey St Lower,5314,1,4368_7778195_6472013,4368_636 -4358_80785,229,4368_17312,Abbey St Lower,18316,1,4368_7778195_6472009,4368_636 -4358_80785,228,4368_17313,Abbey St Lower,12672,1,4368_7778195_6472016,4368_636 -4358_80785,229,4368_17314,Abbey St Lower,18380,1,4368_7778195_6472008,4368_636 -4358_80785,228,4368_17315,Abbey St Lower,12446,1,4368_7778195_6472012,4368_636 -4358_80785,227,4368_17316,Abbey St Lower,5405,1,4368_7778195_6472005,4368_636 -4358_80785,229,4368_17317,Abbey St Lower,18356,1,4368_7778195_6472016,4368_636 -4358_80785,227,4368_17318,Abbey St Lower,5333,1,4368_7778195_6472014,4368_636 -4358_80785,228,4368_17319,Abbey St Lower,12481,1,4368_7778195_6472011,4368_636 -4358_80682,228,4368_1732,Harristown,13630,1,4368_7778195_8013008,4368_59 -4358_80785,228,4368_17320,Abbey St Lower,12573,1,4368_7778195_6472017,4368_636 -4358_80785,227,4368_17321,Abbey St Lower,5341,1,4368_7778195_6472012,4368_636 -4358_80785,229,4368_17322,Abbey St Lower,18305,1,4368_7778195_6472017,4368_636 -4358_80785,228,4368_17323,Abbey St Lower,12567,1,4368_7778195_6472013,4368_636 -4358_80785,227,4368_17324,Abbey St Lower,5316,1,4368_7778195_6472013,4368_636 -4358_80785,228,4368_17325,Abbey St Lower,12534,1,4368_7778195_6472007,4368_636 -4358_80785,227,4368_17326,Abbey St Lower,5407,1,4368_7778195_6472005,4368_636 -4358_80785,229,4368_17327,Abbey St Lower,18358,1,4368_7778195_6472016,4368_636 -4358_80785,227,4368_17328,Abbey St Lower,5335,1,4368_7778195_6472014,4368_636 -4358_80785,228,4368_17329,Abbey St Lower,12575,1,4368_7778195_6472017,4368_636 -4358_80682,229,4368_1733,Harristown,19111,1,4368_7778195_8013019,4368_61 -4358_80785,227,4368_17330,Abbey St Lower,5343,1,4368_7778195_6472012,4368_636 -4358_80785,229,4368_17331,Abbey St Lower,18307,1,4368_7778195_6472017,4368_636 -4358_80785,228,4368_17332,Abbey St Lower,12569,1,4368_7778195_6472013,4368_636 -4358_80785,227,4368_17333,Abbey St Lower,5318,1,4368_7778195_6472013,4368_636 -4358_80785,228,4368_17334,Abbey St Lower,12536,1,4368_7778195_6472007,4368_636 -4358_80785,227,4368_17335,Abbey St Lower,5409,1,4368_7778195_6472005,4368_636 -4358_80785,229,4368_17336,Abbey St Lower,18360,1,4368_7778195_6472016,4368_636 -4358_80785,228,4368_17337,Abbey St Lower,12577,1,4368_7778195_6472017,4368_636 -4358_80785,227,4368_17338,Abbey St Lower,5345,1,4368_7778195_6472012,4368_636 -4358_80785,229,4368_17339,Abbey St Lower,18309,1,4368_7778195_6472017,4368_636 -4358_80682,227,4368_1734,Harristown,6826,1,4368_7778195_8013005,4368_59 -4358_80794,227,4368_17340,Dun Laoghaire,7922,0,4368_7778195_2925002,4368_638 -4358_80794,227,4368_17341,Dun Laoghaire,6135,0,4368_7778195_2925001,4368_638 -4358_80794,228,4368_17342,Dun Laoghaire,10479,0,4368_7778195_2925002,4368_639 -4358_80794,227,4368_17343,Dun Laoghaire,7904,0,4368_7778195_2925004,4368_638 -4358_80794,228,4368_17344,Dun Laoghaire,10423,0,4368_7778195_2925004,4368_638 -4358_80794,227,4368_17345,Dun Laoghaire,6215,0,4368_7778195_2925005,4368_638 -4358_80794,228,4368_17346,Dun Laoghaire,10387,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17347,Dun Laoghaire,7924,0,4368_7778195_2925002,4368_638 -4358_80794,227,4368_17348,Dun Laoghaire,6141,0,4368_7778195_2925003,4368_638 -4358_80794,228,4368_17349,Dun Laoghaire,10496,0,4368_7778195_2925003,4368_639 -4358_80682,228,4368_1735,Harristown,13651,1,4368_7778195_8013012,4368_59 -4358_80794,227,4368_17350,Dun Laoghaire,6176,0,4368_7778195_2925008,4368_638 -4358_80794,228,4368_17351,Dun Laoghaire,10481,0,4368_7778195_2925002,4368_638 -4358_80794,227,4368_17352,Dun Laoghaire,6137,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17353,Dun Laoghaire,7906,0,4368_7778195_2925004,4368_638 -4358_80794,229,4368_17354,Dun Laoghaire,16099,0,4368_7778195_2925002,4368_638 -4358_80794,228,4368_17355,Dun Laoghaire,10425,0,4368_7778195_2925004,4368_639 -4358_80794,227,4368_17356,Dun Laoghaire,6196,0,4368_7778195_2925006,4368_638 -4358_80794,227,4368_17357,Dun Laoghaire,6217,0,4368_7778195_2925005,4368_638 -4358_80794,228,4368_17358,Dun Laoghaire,10389,0,4368_7778195_2925001,4368_639 -4358_80794,229,4368_17359,Dun Laoghaire,16030,0,4368_7778195_2925001,4368_638 -4358_80682,229,4368_1736,Harristown,19122,1,4368_7778195_8013021,4368_61 -4358_80794,227,4368_17360,Dun Laoghaire,6236,0,4368_7778195_2925007,4368_638 -4358_80794,228,4368_17361,Dun Laoghaire,10403,0,4368_7778195_2925005,4368_638 -4358_80794,227,4368_17362,Dun Laoghaire,7926,0,4368_7778195_2925002,4368_638 -4358_80794,229,4368_17363,Dun Laoghaire,16081,0,4368_7778195_2925003,4368_638 -4358_80794,228,4368_17364,Dun Laoghaire,10483,0,4368_7778195_2925002,4368_639 -4358_80794,227,4368_17365,Dun Laoghaire,6143,0,4368_7778195_2925003,4368_638 -4358_80794,227,4368_17366,Dun Laoghaire,6178,0,4368_7778195_2925008,4368_638 -4358_80794,228,4368_17367,Dun Laoghaire,10427,0,4368_7778195_2925004,4368_639 -4358_80794,229,4368_17368,Dun Laoghaire,16101,0,4368_7778195_2925002,4368_638 -4358_80794,228,4368_17369,Dun Laoghaire,10477,0,4368_7778195_2925007,4368_638 -4358_80682,227,4368_1737,Harristown,7016,1,4368_7778195_8013029,4368_59 -4358_80794,227,4368_17370,Dun Laoghaire,6139,0,4368_7778195_2925001,4368_639 -4358_80794,228,4368_17371,Dun Laoghaire,10391,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17372,Dun Laoghaire,7908,0,4368_7778195_2925004,4368_639 -4358_80794,229,4368_17373,Dun Laoghaire,16032,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17374,Dun Laoghaire,6198,0,4368_7778195_2925006,4368_638 -4358_80794,228,4368_17375,Dun Laoghaire,10405,0,4368_7778195_2925005,4368_639 -4358_80794,227,4368_17376,Dun Laoghaire,6219,0,4368_7778195_2925005,4368_638 -4358_80794,228,4368_17377,Dun Laoghaire,10469,0,4368_7778195_2925006,4368_639 -4358_80794,229,4368_17378,Dun Laoghaire,16041,0,4368_7778195_2925004,4368_638 -4358_80794,227,4368_17379,Dun Laoghaire,6238,0,4368_7778195_2925007,4368_638 -4358_80682,229,4368_1738,Harristown,19130,1,4368_7778195_8013023,4368_59 -4358_80794,228,4368_17380,Dun Laoghaire,10485,0,4368_7778195_2925002,4368_639 -4358_80794,229,4368_17381,Dun Laoghaire,16083,0,4368_7778195_2925003,4368_638 -4358_80794,227,4368_17382,Dun Laoghaire,6145,0,4368_7778195_2925003,4368_638 -4358_80794,228,4368_17383,Dun Laoghaire,10429,0,4368_7778195_2925004,4368_639 -4358_80794,228,4368_17384,Dun Laoghaire,10507,0,4368_7778195_2925008,4368_638 -4358_80794,227,4368_17385,Dun Laoghaire,6180,0,4368_7778195_2925008,4368_639 -4358_80794,229,4368_17386,Dun Laoghaire,16103,0,4368_7778195_2925002,4368_640 -4358_80794,228,4368_17387,Dun Laoghaire,10393,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17388,Dun Laoghaire,7910,0,4368_7778195_2925004,4368_639 -4358_80794,229,4368_17389,Dun Laoghaire,16034,0,4368_7778195_2925001,4368_638 -4358_80682,228,4368_1739,Harristown,13596,1,4368_7778195_8013003,4368_61 -4358_80794,227,4368_17390,Dun Laoghaire,6200,0,4368_7778195_2925006,4368_638 -4358_80794,228,4368_17391,Dun Laoghaire,10407,0,4368_7778195_2925005,4368_639 -4358_80794,229,4368_17392,Dun Laoghaire,16065,0,4368_7778195_2925005,4368_638 -4358_80794,227,4368_17393,Dun Laoghaire,6221,0,4368_7778195_2925005,4368_638 -4358_80794,228,4368_17394,Dun Laoghaire,10471,0,4368_7778195_2925006,4368_639 -4358_80794,227,4368_17395,Dun Laoghaire,6240,0,4368_7778195_2925007,4368_638 -4358_80794,228,4368_17396,Dun Laoghaire,10487,0,4368_7778195_2925002,4368_639 -4358_80794,229,4368_17397,Dun Laoghaire,16043,0,4368_7778195_2925004,4368_640 -4358_80794,227,4368_17398,Dun Laoghaire,6147,0,4368_7778195_2925003,4368_638 -4358_80794,228,4368_17399,Dun Laoghaire,10431,0,4368_7778195_2925004,4368_639 -4358_80760,227,4368_174,Shanard Road,3134,1,4368_7778195_9001004,4368_4 -4358_80682,227,4368_1740,Harristown,6877,1,4368_7778195_8013008,4368_59 -4358_80794,229,4368_17400,Dun Laoghaire,16085,0,4368_7778195_2925003,4368_638 -4358_80794,228,4368_17401,Dun Laoghaire,10509,0,4368_7778195_2925008,4368_638 -4358_80794,227,4368_17402,Dun Laoghaire,6182,0,4368_7778195_2925008,4368_639 -4358_80794,229,4368_17403,Dun Laoghaire,16058,0,4368_7778195_2925006,4368_638 -4358_80794,227,4368_17404,Dun Laoghaire,6155,0,4368_7778195_2925009,4368_638 -4358_80794,228,4368_17405,Dun Laoghaire,10454,0,4368_7778195_2925010,4368_639 -4358_80794,228,4368_17406,Dun Laoghaire,10395,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17407,Dun Laoghaire,7912,0,4368_7778195_2925004,4368_639 -4358_80794,229,4368_17408,Dun Laoghaire,16105,0,4368_7778195_2925002,4368_640 -4358_80794,227,4368_17409,Dun Laoghaire,6202,0,4368_7778195_2925006,4368_638 -4358_80682,229,4368_1741,Harristown,19128,1,4368_7778195_8013022,4368_59 -4358_80794,228,4368_17410,Dun Laoghaire,10409,0,4368_7778195_2925005,4368_639 -4358_80794,229,4368_17411,Dun Laoghaire,16036,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17412,Dun Laoghaire,6223,0,4368_7778195_2925005,4368_638 -4358_80794,228,4368_17413,Dun Laoghaire,10447,0,4368_7778195_2925009,4368_639 -4358_80794,229,4368_17414,Dun Laoghaire,16067,0,4368_7778195_2925005,4368_638 -4358_80794,227,4368_17415,Dun Laoghaire,6242,0,4368_7778195_2925007,4368_638 -4358_80794,228,4368_17416,Dun Laoghaire,10473,0,4368_7778195_2925006,4368_639 -4358_80794,227,4368_17417,Dun Laoghaire,6149,0,4368_7778195_2925003,4368_638 -4358_80794,228,4368_17418,Dun Laoghaire,10489,0,4368_7778195_2925002,4368_639 -4358_80794,229,4368_17419,Dun Laoghaire,16045,0,4368_7778195_2925004,4368_640 -4358_80682,228,4368_1742,Harristown,13609,1,4368_7778195_8013005,4368_61 -4358_80794,227,4368_17420,Dun Laoghaire,6184,0,4368_7778195_2925008,4368_638 -4358_80794,228,4368_17421,Dun Laoghaire,10433,0,4368_7778195_2925004,4368_639 -4358_80794,229,4368_17422,Dun Laoghaire,16087,0,4368_7778195_2925003,4368_638 -4358_80794,227,4368_17423,Dun Laoghaire,6157,0,4368_7778195_2925009,4368_638 -4358_80794,228,4368_17424,Dun Laoghaire,10511,0,4368_7778195_2925008,4368_639 -4358_80794,229,4368_17425,Dun Laoghaire,16060,0,4368_7778195_2925006,4368_638 -4358_80794,227,4368_17426,Dun Laoghaire,7914,0,4368_7778195_2925004,4368_638 -4358_80794,228,4368_17427,Dun Laoghaire,10456,0,4368_7778195_2925010,4368_639 -4358_80794,228,4368_17428,Dun Laoghaire,10397,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17429,Dun Laoghaire,6204,0,4368_7778195_2925006,4368_639 -4358_80682,227,4368_1743,Harristown,7036,1,4368_7778195_8013036,4368_62 -4358_80794,229,4368_17430,Dun Laoghaire,16107,0,4368_7778195_2925002,4368_640 -4358_80794,227,4368_17431,Dun Laoghaire,6225,0,4368_7778195_2925005,4368_638 -4358_80794,228,4368_17432,Dun Laoghaire,10411,0,4368_7778195_2925005,4368_639 -4358_80794,229,4368_17433,Dun Laoghaire,16038,0,4368_7778195_2925001,4368_638 -4358_80794,228,4368_17434,Dun Laoghaire,10449,0,4368_7778195_2925009,4368_638 -4358_80794,227,4368_17435,Dun Laoghaire,6244,0,4368_7778195_2925007,4368_639 -4358_80794,229,4368_17436,Dun Laoghaire,16069,0,4368_7778195_2925005,4368_638 -4358_80794,227,4368_17437,Dun Laoghaire,6151,0,4368_7778195_2925003,4368_638 -4358_80794,228,4368_17438,Dun Laoghaire,10475,0,4368_7778195_2925006,4368_639 -4358_80794,227,4368_17439,Dun Laoghaire,6186,0,4368_7778195_2925008,4368_638 -4358_80682,227,4368_1744,Harristown,6888,1,4368_7778195_8013010,4368_59 -4358_80794,228,4368_17440,Dun Laoghaire,10491,0,4368_7778195_2925002,4368_639 -4358_80794,229,4368_17441,Dun Laoghaire,16047,0,4368_7778195_2925004,4368_640 -4358_80794,227,4368_17442,Dun Laoghaire,6159,0,4368_7778195_2925009,4368_638 -4358_80794,229,4368_17443,Dun Laoghaire,16089,0,4368_7778195_2925003,4368_639 -4358_80794,228,4368_17444,Dun Laoghaire,10435,0,4368_7778195_2925004,4368_640 -4358_80794,227,4368_17445,Dun Laoghaire,6170,0,4368_7778195_2925010,4368_638 -4358_80794,228,4368_17446,Dun Laoghaire,10458,0,4368_7778195_2925010,4368_639 -4358_80794,229,4368_17447,Dun Laoghaire,16062,0,4368_7778195_2925006,4368_638 -4358_80794,228,4368_17448,Dun Laoghaire,10399,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17449,Dun Laoghaire,7916,0,4368_7778195_2925004,4368_639 -4358_80682,228,4368_1745,Harristown,13674,1,4368_7778195_8013019,4368_59 -4358_80794,229,4368_17450,Dun Laoghaire,16109,0,4368_7778195_2925002,4368_638 -4358_80794,227,4368_17451,Dun Laoghaire,6206,0,4368_7778195_2925006,4368_638 -4358_80794,228,4368_17452,Dun Laoghaire,10413,0,4368_7778195_2925005,4368_639 -4358_80794,227,4368_17453,Dun Laoghaire,6227,0,4368_7778195_2925005,4368_638 -4358_80794,228,4368_17454,Dun Laoghaire,10451,0,4368_7778195_2925009,4368_639 -4358_80794,229,4368_17455,Dun Laoghaire,16040,0,4368_7778195_2925001,4368_640 -4358_80794,228,4368_17456,Dun Laoghaire,10498,0,4368_7778195_2925011,4368_638 -4358_80794,227,4368_17457,Dun Laoghaire,6246,0,4368_7778195_2925007,4368_639 -4358_80794,229,4368_17458,Dun Laoghaire,16071,0,4368_7778195_2925005,4368_638 -4358_80794,227,4368_17459,Dun Laoghaire,6153,0,4368_7778195_2925003,4368_638 -4358_80682,229,4368_1746,Harristown,19133,1,4368_7778195_8013024,4368_61 -4358_80794,228,4368_17460,Dun Laoghaire,10493,0,4368_7778195_2925002,4368_639 -4358_80794,229,4368_17461,Dun Laoghaire,16049,0,4368_7778195_2925004,4368_638 -4358_80794,227,4368_17462,Dun Laoghaire,6188,0,4368_7778195_2925008,4368_638 -4358_80794,228,4368_17463,Dun Laoghaire,10437,0,4368_7778195_2925004,4368_639 -4358_80794,227,4368_17464,Dun Laoghaire,6161,0,4368_7778195_2925009,4368_638 -4358_80794,229,4368_17465,Dun Laoghaire,16091,0,4368_7778195_2925003,4368_639 -4358_80794,228,4368_17466,Dun Laoghaire,10460,0,4368_7778195_2925010,4368_640 -4358_80794,228,4368_17467,Dun Laoghaire,10401,0,4368_7778195_2925001,4368_638 -4358_80794,227,4368_17468,Dun Laoghaire,6172,0,4368_7778195_2925010,4368_639 -4358_80794,229,4368_17469,Dun Laoghaire,16111,0,4368_7778195_2925002,4368_638 -4358_80682,227,4368_1747,Harristown,6816,1,4368_7778195_8013003,4368_59 -4358_80794,227,4368_17470,Dun Laoghaire,7918,0,4368_7778195_2925004,4368_638 -4358_80794,228,4368_17471,Dun Laoghaire,10415,0,4368_7778195_2925005,4368_639 -4358_80794,229,4368_17472,Dun Laoghaire,16073,0,4368_7778195_2925005,4368_638 -4358_80794,228,4368_17473,Dun Laoghaire,10453,0,4368_7778195_2925009,4368_638 -4358_80794,227,4368_17474,Dun Laoghaire,6208,0,4368_7778195_2925006,4368_639 -4358_80794,228,4368_17475,Dun Laoghaire,10500,0,4368_7778195_2925011,4368_638 -4358_80794,227,4368_17476,Dun Laoghaire,6229,0,4368_7778195_2925005,4368_639 -4358_80794,229,4368_17477,Dun Laoghaire,16051,0,4368_7778195_2925004,4368_640 -4358_80794,227,4368_17478,Dun Laoghaire,6248,0,4368_7778195_2925007,4368_638 -4358_80794,228,4368_17479,Dun Laoghaire,10439,0,4368_7778195_2925004,4368_638 -4358_80682,228,4368_1748,Harristown,13622,1,4368_7778195_8013007,4368_59 -4358_80794,227,4368_17480,Dun Laoghaire,6190,0,4368_7778195_2925008,4368_638 -4358_80794,229,4368_17481,Dun Laoghaire,16093,0,4368_7778195_2925003,4368_639 -4358_80794,228,4368_17482,Dun Laoghaire,10462,0,4368_7778195_2925010,4368_638 -4358_80794,227,4368_17483,Dun Laoghaire,6163,0,4368_7778195_2925009,4368_638 -4358_80794,227,4368_17484,Dun Laoghaire,7920,0,4368_7778195_2925004,4368_638 -4358_80794,228,4368_17485,Dun Laoghaire,10417,0,4368_7778195_2925005,4368_639 -4358_80794,229,4368_17486,Dun Laoghaire,16075,0,4368_7778195_2925005,4368_638 -4358_80794,227,4368_17487,Dun Laoghaire,6210,0,4368_7778195_2925006,4368_638 -4358_80794,228,4368_17488,Dun Laoghaire,10502,0,4368_7778195_2925011,4368_638 -4358_80794,227,4368_17489,Dun Laoghaire,6231,0,4368_7778195_2925005,4368_638 -4358_80682,229,4368_1749,Harristown,19134,1,4368_7778195_8013025,4368_61 -4358_80794,228,4368_17490,Dun Laoghaire,10441,0,4368_7778195_2925004,4368_638 -4358_80794,229,4368_17491,Dun Laoghaire,16053,0,4368_7778195_2925004,4368_639 -4358_80794,227,4368_17492,Dun Laoghaire,6250,0,4368_7778195_2925007,4368_638 -4358_80794,227,4368_17493,Dun Laoghaire,6192,0,4368_7778195_2925008,4368_638 -4358_80794,228,4368_17494,Dun Laoghaire,10464,0,4368_7778195_2925010,4368_639 -4358_80794,229,4368_17495,Dun Laoghaire,16095,0,4368_7778195_2925003,4368_638 -4358_80794,227,4368_17496,Dun Laoghaire,6165,0,4368_7778195_2925009,4368_638 -4358_80794,228,4368_17497,Dun Laoghaire,10419,0,4368_7778195_2925005,4368_638 -4358_80794,227,4368_17498,Dun Laoghaire,6173,0,4368_7778195_2925011,4368_638 -4358_80794,229,4368_17499,Dun Laoghaire,16077,0,4368_7778195_2925005,4368_638 -4358_80760,227,4368_175,Shanard Road,1840,1,4368_7778195_9001006,4368_4 -4358_80682,227,4368_1750,Harristown,6992,1,4368_7778195_8013023,4368_59 -4358_80794,228,4368_17500,Dun Laoghaire,10504,0,4368_7778195_2925012,4368_639 -4358_80794,227,4368_17501,Dun Laoghaire,6212,0,4368_7778195_2925006,4368_638 -4358_80794,227,4368_17502,Dun Laoghaire,6233,0,4368_7778195_2925005,4368_638 -4358_80794,228,4368_17503,Dun Laoghaire,10443,0,4368_7778195_2925004,4368_639 -4358_80794,229,4368_17504,Dun Laoghaire,16055,0,4368_7778195_2925004,4368_638 -4358_80794,227,4368_17505,Dun Laoghaire,6252,0,4368_7778195_2925007,4368_638 -4358_80794,228,4368_17506,Dun Laoghaire,10466,0,4368_7778195_2925010,4368_638 -4358_80794,227,4368_17507,Dun Laoghaire,6194,0,4368_7778195_2925008,4368_638 -4358_80794,228,4368_17508,Dun Laoghaire,10421,0,4368_7778195_2925005,4368_638 -4358_80794,229,4368_17509,Dun Laoghaire,16097,0,4368_7778195_2925003,4368_639 -4358_80682,228,4368_1751,Harristown,13658,1,4368_7778195_8013014,4368_59 -4358_80794,227,4368_17510,Dun Laoghaire,6167,0,4368_7778195_2925009,4368_638 -4358_80794,227,4368_17511,Dun Laoghaire,6175,0,4368_7778195_2925011,4368_638 -4358_80794,228,4368_17512,Dun Laoghaire,10506,0,4368_7778195_2925012,4368_639 -4358_80794,229,4368_17513,Dun Laoghaire,16079,0,4368_7778195_2925005,4368_638 -4358_80794,227,4368_17514,Dun Laoghaire,6214,0,4368_7778195_2925006,4368_638 -4358_80794,228,4368_17515,Dun Laoghaire,10445,0,4368_7778195_2925004,4368_639 -4358_80794,229,4368_17516,Dun Laoghaire,16057,0,4368_7778195_2925004,4368_638 -4358_80794,227,4368_17517,Dundrum,6134,1,4368_7778195_2925001,4368_641 -4358_80794,228,4368_17518,Dundrum,10386,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17519,Dundrum,7923,1,4368_7778195_2925002,4368_642 -4358_80682,229,4368_1752,Harristown,19139,1,4368_7778195_8013026,4368_61 -4358_80794,227,4368_17520,Dundrum,6140,1,4368_7778195_2925003,4368_641 -4358_80794,228,4368_17521,Dundrum,10495,1,4368_7778195_2925003,4368_641 -4358_80794,227,4368_17522,Dundrum,6136,1,4368_7778195_2925001,4368_641 -4358_80794,228,4368_17523,Dundrum,10480,1,4368_7778195_2925002,4368_641 -4358_80794,227,4368_17524,Dundrum,7905,1,4368_7778195_2925004,4368_641 -4358_80794,227,4368_17525,Dundrum,6195,1,4368_7778195_2925006,4368_641 -4358_80794,228,4368_17526,Dundrum,10424,1,4368_7778195_2925004,4368_642 -4358_80794,227,4368_17527,Dundrum,6216,1,4368_7778195_2925005,4368_641 -4358_80794,228,4368_17528,Dundrum,10388,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17529,Dundrum,6235,1,4368_7778195_2925007,4368_641 -4358_80682,227,4368_1753,Harristown,7037,1,4368_7778195_8013037,4368_59 -4358_80794,229,4368_17530,Dundrum,16029,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17531,Dundrum,7925,1,4368_7778195_2925002,4368_642 -4358_80794,228,4368_17532,Dundrum,10497,1,4368_7778195_2925003,4368_641 -4358_80794,227,4368_17533,Dundrum,6142,1,4368_7778195_2925003,4368_641 -4358_80794,227,4368_17534,Dundrum,6177,1,4368_7778195_2925008,4368_641 -4358_80794,229,4368_17535,Dundrum,16080,1,4368_7778195_2925003,4368_642 -4358_80794,228,4368_17536,Dundrum,10482,1,4368_7778195_2925002,4368_643 -4358_80794,227,4368_17537,Dundrum,6138,1,4368_7778195_2925001,4368_641 -4358_80794,228,4368_17538,Dundrum,10426,1,4368_7778195_2925004,4368_641 -4358_80794,227,4368_17539,Dundrum,7907,1,4368_7778195_2925004,4368_641 -4358_80682,228,4368_1754,Harristown,13689,1,4368_7778195_8013020,4368_59 -4358_80794,229,4368_17540,Dundrum,16100,1,4368_7778195_2925002,4368_642 -4358_80794,228,4368_17541,Dundrum,10390,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17542,Dundrum,6197,1,4368_7778195_2925006,4368_641 -4358_80794,227,4368_17543,Dundrum,6218,1,4368_7778195_2925005,4368_641 -4358_80794,229,4368_17544,Dundrum,16031,1,4368_7778195_2925001,4368_642 -4358_80794,228,4368_17545,Dundrum,10404,1,4368_7778195_2925005,4368_643 -4358_80794,227,4368_17546,Dundrum,6237,1,4368_7778195_2925007,4368_641 -4358_80794,228,4368_17547,Dundrum,10468,1,4368_7778195_2925006,4368_642 -4358_80794,229,4368_17548,Dundrum,16082,1,4368_7778195_2925003,4368_641 -4358_80794,228,4368_17549,Dundrum,10484,1,4368_7778195_2925002,4368_642 -4358_80682,229,4368_1755,Harristown,19141,1,4368_7778195_8013027,4368_61 -4358_80794,227,4368_17550,Dundrum,7927,1,4368_7778195_2925002,4368_643 -4358_80794,227,4368_17551,Dundrum,6144,1,4368_7778195_2925003,4368_641 -4358_80794,228,4368_17552,Dundrum,10428,1,4368_7778195_2925004,4368_642 -4358_80794,228,4368_17553,Dundrum,10478,1,4368_7778195_2925007,4368_641 -4358_80794,227,4368_17554,Dundrum,6179,1,4368_7778195_2925008,4368_642 -4358_80794,229,4368_17555,Dundrum,16102,1,4368_7778195_2925002,4368_643 -4358_80794,228,4368_17556,Dundrum,10392,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17557,Dundrum,7909,1,4368_7778195_2925004,4368_642 -4358_80794,229,4368_17558,Dundrum,16033,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17559,Dundrum,6199,1,4368_7778195_2925006,4368_641 -4358_80682,227,4368_1756,Harristown,6901,1,4368_7778195_8013014,4368_62 -4358_80794,228,4368_17560,Dundrum,10406,1,4368_7778195_2925005,4368_642 -4358_80794,229,4368_17561,Dundrum,16064,1,4368_7778195_2925005,4368_641 -4358_80794,227,4368_17562,Dundrum,6220,1,4368_7778195_2925005,4368_641 -4358_80794,228,4368_17563,Dundrum,10470,1,4368_7778195_2925006,4368_642 -4358_80794,227,4368_17564,Dundrum,6239,1,4368_7778195_2925007,4368_641 -4358_80794,228,4368_17565,Dundrum,10486,1,4368_7778195_2925002,4368_642 -4358_80794,229,4368_17566,Dundrum,16042,1,4368_7778195_2925004,4368_643 -4358_80794,227,4368_17567,Dundrum,6146,1,4368_7778195_2925003,4368_641 -4358_80794,228,4368_17568,Dundrum,10430,1,4368_7778195_2925004,4368_642 -4358_80794,229,4368_17569,Dundrum,16084,1,4368_7778195_2925003,4368_641 -4358_80682,227,4368_1757,Harristown,7031,1,4368_7778195_8013034,4368_59 -4358_80794,228,4368_17570,Dundrum,10508,1,4368_7778195_2925008,4368_641 -4358_80794,227,4368_17571,Dundrum,6181,1,4368_7778195_2925008,4368_642 -4358_80794,229,4368_17572,Dundrum,16104,1,4368_7778195_2925002,4368_641 -4358_80794,228,4368_17573,Dundrum,10394,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17574,Dundrum,7911,1,4368_7778195_2925004,4368_642 -4358_80794,227,4368_17575,Dundrum,6201,1,4368_7778195_2925006,4368_641 -4358_80794,229,4368_17576,Dundrum,16035,1,4368_7778195_2925001,4368_642 -4358_80794,228,4368_17577,Dundrum,10408,1,4368_7778195_2925005,4368_643 -4358_80794,227,4368_17578,Dundrum,6222,1,4368_7778195_2925005,4368_641 -4358_80794,228,4368_17579,Dundrum,10446,1,4368_7778195_2925009,4368_642 -4358_80682,228,4368_1758,Harristown,13642,1,4368_7778195_8013010,4368_59 -4358_80794,229,4368_17580,Dundrum,16066,1,4368_7778195_2925005,4368_641 -4358_80794,227,4368_17581,Dundrum,6241,1,4368_7778195_2925007,4368_641 -4358_80794,228,4368_17582,Dundrum,10472,1,4368_7778195_2925006,4368_642 -4358_80794,229,4368_17583,Dundrum,16044,1,4368_7778195_2925004,4368_641 -4358_80794,227,4368_17584,Dundrum,6148,1,4368_7778195_2925003,4368_641 -4358_80794,228,4368_17585,Dundrum,10488,1,4368_7778195_2925002,4368_642 -4358_80794,227,4368_17586,Dundrum,6183,1,4368_7778195_2925008,4368_641 -4358_80794,229,4368_17587,Dundrum,16086,1,4368_7778195_2925003,4368_642 -4358_80794,228,4368_17588,Dundrum,10432,1,4368_7778195_2925004,4368_643 -4358_80794,227,4368_17589,Dundrum,6156,1,4368_7778195_2925009,4368_641 -4358_80682,229,4368_1759,Harristown,19106,1,4368_7778195_8013017,4368_61 -4358_80794,228,4368_17590,Dundrum,10510,1,4368_7778195_2925008,4368_642 -4358_80794,229,4368_17591,Dundrum,16059,1,4368_7778195_2925006,4368_641 -4358_80794,227,4368_17592,Dundrum,7913,1,4368_7778195_2925004,4368_641 -4358_80794,228,4368_17593,Dundrum,10455,1,4368_7778195_2925010,4368_642 -4358_80794,229,4368_17594,Dundrum,16106,1,4368_7778195_2925002,4368_641 -4358_80794,228,4368_17595,Dundrum,10396,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17596,Dundrum,6203,1,4368_7778195_2925006,4368_642 -4358_80794,227,4368_17597,Dundrum,6224,1,4368_7778195_2925005,4368_641 -4358_80794,229,4368_17598,Dundrum,16037,1,4368_7778195_2925001,4368_642 -4358_80794,228,4368_17599,Dundrum,10410,1,4368_7778195_2925005,4368_643 -4358_80760,228,4368_176,Shanard Road,9441,1,4368_7778195_9001003,4368_4 -4358_80682,227,4368_1760,Harristown,6832,1,4368_7778195_8013006,4368_59 -4358_80794,228,4368_17600,Dundrum,10448,1,4368_7778195_2925009,4368_641 -4358_80794,227,4368_17601,Dundrum,6243,1,4368_7778195_2925007,4368_642 -4358_80794,229,4368_17602,Dundrum,16068,1,4368_7778195_2925005,4368_641 -4358_80794,227,4368_17603,Dundrum,6150,1,4368_7778195_2925003,4368_641 -4358_80794,228,4368_17604,Dundrum,10474,1,4368_7778195_2925006,4368_642 -4358_80794,229,4368_17605,Dundrum,16046,1,4368_7778195_2925004,4368_641 -4358_80794,227,4368_17606,Dundrum,6185,1,4368_7778195_2925008,4368_641 -4358_80794,228,4368_17607,Dundrum,10490,1,4368_7778195_2925002,4368_642 -4358_80794,227,4368_17608,Dundrum,6158,1,4368_7778195_2925009,4368_641 -4358_80794,229,4368_17609,Dundrum,16088,1,4368_7778195_2925003,4368_642 -4358_80682,228,4368_1761,Harristown,13707,1,4368_7778195_8013021,4368_59 -4358_80794,228,4368_17610,Dundrum,10434,1,4368_7778195_2925004,4368_643 -4358_80794,227,4368_17611,Dundrum,6169,1,4368_7778195_2925010,4368_641 -4358_80794,228,4368_17612,Dundrum,10457,1,4368_7778195_2925010,4368_642 -4358_80794,229,4368_17613,Dundrum,16061,1,4368_7778195_2925006,4368_641 -4358_80794,228,4368_17614,Dundrum,10398,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17615,Dundrum,7915,1,4368_7778195_2925004,4368_642 -4358_80794,229,4368_17616,Dundrum,16108,1,4368_7778195_2925002,4368_641 -4358_80794,227,4368_17617,Dundrum,6205,1,4368_7778195_2925006,4368_641 -4358_80794,228,4368_17618,Dundrum,10412,1,4368_7778195_2925005,4368_642 -4358_80794,227,4368_17619,Dundrum,6226,1,4368_7778195_2925005,4368_641 -4358_80682,229,4368_1762,Harristown,19086,1,4368_7778195_8013010,4368_61 -4358_80794,228,4368_17620,Dundrum,10450,1,4368_7778195_2925009,4368_642 -4358_80794,229,4368_17621,Dundrum,16039,1,4368_7778195_2925001,4368_643 -4358_80794,227,4368_17622,Dundrum,6245,1,4368_7778195_2925007,4368_641 -4358_80794,228,4368_17623,Dundrum,10476,1,4368_7778195_2925006,4368_642 -4358_80794,229,4368_17624,Dundrum,16070,1,4368_7778195_2925005,4368_641 -4358_80794,227,4368_17625,Dundrum,6152,1,4368_7778195_2925003,4368_641 -4358_80794,228,4368_17626,Dundrum,10492,1,4368_7778195_2925002,4368_642 -4358_80794,229,4368_17627,Dundrum,16048,1,4368_7778195_2925004,4368_641 -4358_80794,227,4368_17628,Dundrum,6187,1,4368_7778195_2925008,4368_641 -4358_80794,228,4368_17629,Dundrum,10436,1,4368_7778195_2925004,4368_642 -4358_80682,227,4368_1763,Harristown,7034,1,4368_7778195_8013035,4368_59 -4358_80794,227,4368_17630,Dundrum,6160,1,4368_7778195_2925009,4368_641 -4358_80794,229,4368_17631,Dundrum,16090,1,4368_7778195_2925003,4368_642 -4358_80794,228,4368_17632,Dundrum,10459,1,4368_7778195_2925010,4368_643 -4358_80794,228,4368_17633,Dundrum,10400,1,4368_7778195_2925001,4368_641 -4358_80794,227,4368_17634,Dundrum,6171,1,4368_7778195_2925010,4368_642 -4358_80794,229,4368_17635,Dundrum,16063,1,4368_7778195_2925006,4368_641 -4358_80794,227,4368_17636,Dundrum,7917,1,4368_7778195_2925004,4368_641 -4358_80794,228,4368_17637,Dundrum,10414,1,4368_7778195_2925005,4368_642 -4358_80794,229,4368_17638,Dundrum,16110,1,4368_7778195_2925002,4368_641 -4358_80794,228,4368_17639,Dundrum,10452,1,4368_7778195_2925009,4368_641 -4358_80682,228,4368_1764,Harristown,13579,1,4368_7778195_8013001,4368_59 -4358_80794,227,4368_17640,Dundrum,6207,1,4368_7778195_2925006,4368_642 -4358_80794,228,4368_17641,Dundrum,10499,1,4368_7778195_2925011,4368_641 -4358_80794,227,4368_17642,Dundrum,6228,1,4368_7778195_2925005,4368_642 -4358_80794,229,4368_17643,Dundrum,16072,1,4368_7778195_2925005,4368_643 -4358_80794,227,4368_17644,Dundrum,6247,1,4368_7778195_2925007,4368_641 -4358_80794,228,4368_17645,Dundrum,10494,1,4368_7778195_2925002,4368_642 -4358_80794,229,4368_17646,Dundrum,16050,1,4368_7778195_2925004,4368_641 -4358_80794,227,4368_17647,Dundrum,6154,1,4368_7778195_2925003,4368_641 -4358_80794,228,4368_17648,Dundrum,10438,1,4368_7778195_2925004,4368_642 -4358_80794,229,4368_17649,Dundrum,16092,1,4368_7778195_2925003,4368_641 -4358_80682,229,4368_1765,Harristown,19118,1,4368_7778195_8013020,4368_61 -4358_80794,227,4368_17650,Dundrum,6189,1,4368_7778195_2925008,4368_641 -4358_80794,228,4368_17651,Dundrum,10461,1,4368_7778195_2925010,4368_642 -4358_80794,227,4368_17652,Dundrum,6162,1,4368_7778195_2925009,4368_641 -4358_80794,228,4368_17653,Dundrum,10402,1,4368_7778195_2925001,4368_642 -4358_80794,229,4368_17654,Dundrum,16112,1,4368_7778195_2925002,4368_643 -4358_80794,227,4368_17655,Dundrum,7919,1,4368_7778195_2925004,4368_641 -4358_80794,228,4368_17656,Dundrum,10416,1,4368_7778195_2925005,4368_641 -4358_80794,229,4368_17657,Dundrum,16074,1,4368_7778195_2925005,4368_641 -4358_80794,227,4368_17658,Dundrum,6209,1,4368_7778195_2925006,4368_642 -4358_80794,228,4368_17659,Dundrum,10501,1,4368_7778195_2925011,4368_641 -4358_80682,227,4368_1766,Harristown,7008,1,4368_7778195_8013027,4368_60 -4358_80794,227,4368_17660,Dundrum,6230,1,4368_7778195_2925005,4368_641 -4358_80794,227,4368_17661,Dundrum,6249,1,4368_7778195_2925007,4368_641 -4358_80794,228,4368_17662,Dundrum,10440,1,4368_7778195_2925004,4368_642 -4358_80794,229,4368_17663,Dundrum,16052,1,4368_7778195_2925004,4368_643 -4358_80794,227,4368_17664,Dundrum,6191,1,4368_7778195_2925008,4368_641 -4358_80794,228,4368_17665,Dundrum,10463,1,4368_7778195_2925010,4368_641 -4358_80794,227,4368_17666,Dundrum,6164,1,4368_7778195_2925009,4368_641 -4358_80794,229,4368_17667,Dundrum,16094,1,4368_7778195_2925003,4368_642 -4358_80794,228,4368_17668,Dundrum,10418,1,4368_7778195_2925005,4368_641 -4358_80794,227,4368_17669,Dundrum,7921,1,4368_7778195_2925004,4368_641 -4358_80682,228,4368_1767,Harristown,13589,1,4368_7778195_8013002,4368_59 -4358_80794,228,4368_17670,Dundrum,10503,1,4368_7778195_2925011,4368_641 -4358_80794,229,4368_17671,Dundrum,16076,1,4368_7778195_2925005,4368_642 -4358_80794,227,4368_17672,Dundrum,6211,1,4368_7778195_2925006,4368_643 -4358_80794,227,4368_17673,Dundrum,6232,1,4368_7778195_2925005,4368_641 -4358_80794,228,4368_17674,Dundrum,10442,1,4368_7778195_2925004,4368_641 -4358_80794,227,4368_17675,Dundrum,6251,1,4368_7778195_2925007,4368_641 -4358_80794,229,4368_17676,Dundrum,16054,1,4368_7778195_2925004,4368_642 -4358_80794,228,4368_17677,Dundrum,10465,1,4368_7778195_2925010,4368_641 -4358_80794,227,4368_17678,Dundrum,6193,1,4368_7778195_2925008,4368_641 -4358_80794,227,4368_17679,Dundrum,6166,1,4368_7778195_2925009,4368_641 -4358_80682,227,4368_1768,Harristown,6715,1,4368_7778195_8013001,4368_61 -4358_80794,228,4368_17680,Dundrum,10420,1,4368_7778195_2925005,4368_642 -4358_80794,229,4368_17681,Dundrum,16096,1,4368_7778195_2925003,4368_643 -4358_80794,227,4368_17682,Dundrum,6174,1,4368_7778195_2925011,4368_641 -4358_80794,228,4368_17683,Dundrum,10505,1,4368_7778195_2925012,4368_641 -4358_80794,229,4368_17684,Dundrum,16078,1,4368_7778195_2925005,4368_641 -4358_80794,227,4368_17685,Dundrum,6213,1,4368_7778195_2925006,4368_642 -4358_80794,228,4368_17686,Dundrum,10444,1,4368_7778195_2925004,4368_641 -4358_80794,227,4368_17687,Dundrum,6234,1,4368_7778195_2925005,4368_641 -4358_80794,227,4368_17688,Dundrum,6253,1,4368_7778195_2925007,4368_641 -4358_80794,228,4368_17689,Dundrum,10467,1,4368_7778195_2925010,4368_642 -4358_80682,229,4368_1769,Harristown,19095,1,4368_7778195_8013013,4368_62 -4358_80794,229,4368_17690,Dundrum,16056,1,4368_7778195_2925004,4368_643 -4358_80794,227,4368_17691,Dundrum,6168,1,4368_7778195_2925009,4368_641 -4358_80794,228,4368_17692,Dundrum,10422,1,4368_7778195_2925005,4368_642 -4358_80794,229,4368_17693,Dundrum,16098,1,4368_7778195_2925003,4368_643 -4358_80687,228,4368_17694,Liffey Valley SC,11942,0,4368_7778195_4026001,4368_644 -4358_80687,227,4368_17695,Liffey Valley SC,4876,0,4368_7778195_4026001,4368_644 -4358_80687,227,4368_17696,Liffey Valley SC,4902,0,4368_7778195_4026005,4368_644 -4358_80687,228,4368_17697,Liffey Valley SC,12003,0,4368_7778195_4026002,4368_644 -4358_80687,227,4368_17698,Liffey Valley SC,4921,0,4368_7778195_4026004,4368_644 -4358_80687,227,4368_17699,Liffey Valley SC,4989,0,4368_7778195_4026011,4368_644 -4358_80760,227,4368_177,Shanard Road,1696,1,4368_7778195_9001008,4368_4 -4358_80682,227,4368_1770,Harristown,7001,1,4368_7778195_8013025,4368_59 -4358_80687,229,4368_17700,Liffey Valley SC,17671,0,4368_7778195_4026002,4368_644 -4358_80687,228,4368_17701,Liffey Valley SC,12047,0,4368_7778195_4026007,4368_644 -4358_80687,227,4368_17702,Liffey Valley SC,4985,0,4368_7778195_4026008,4368_644 -4358_80687,227,4368_17703,Liffey Valley SC,4919,0,4368_7778195_4026006,4368_644 -4358_80687,228,4368_17704,Liffey Valley SC,11946,0,4368_7778195_4026001,4368_644 -4358_80687,229,4368_17705,Liffey Valley SC,17630,0,4368_7778195_4026001,4368_645 -4358_80687,227,4368_17706,Liffey Valley SC,5008,0,4368_7778195_4026017,4368_644 -4358_80687,228,4368_17707,Liffey Valley SC,12056,0,4368_7778195_4026010,4368_644 -4358_80687,227,4368_17708,Liffey Valley SC,4987,0,4368_7778195_4026008,4368_644 -4358_80687,228,4368_17709,Liffey Valley SC,12031,0,4368_7778195_4026009,4368_644 -4358_80682,229,4368_1771,Harristown,19143,1,4368_7778195_8013028,4368_61 -4358_80687,229,4368_17710,Liffey Valley SC,17680,0,4368_7778195_4026003,4368_645 -4358_80687,227,4368_17711,Liffey Valley SC,5036,0,4368_7778195_4026013,4368_644 -4358_80687,228,4368_17712,Liffey Valley SC,12017,0,4368_7778195_4026005,4368_644 -4358_80687,229,4368_17713,Liffey Valley SC,17692,0,4368_7778195_4026004,4368_645 -4358_80687,227,4368_17714,Liffey Valley SC,4954,0,4368_7778195_4026007,4368_644 -4358_80687,229,4368_17715,Liffey Valley SC,17697,0,4368_7778195_4026008,4368_644 -4358_80687,228,4368_17716,Liffey Valley SC,12041,0,4368_7778195_4026012,4368_645 -4358_80687,227,4368_17717,Liffey Valley SC,4894,0,4368_7778195_4026003,4368_644 -4358_80687,229,4368_17718,Liffey Valley SC,17675,0,4368_7778195_4026002,4368_644 -4358_80687,228,4368_17719,Liffey Valley SC,12087,0,4368_7778195_4026013,4368_644 -4358_80682,228,4368_1772,Harristown,13665,1,4368_7778195_8013016,4368_62 -4358_80687,227,4368_17720,Liffey Valley SC,5038,0,4368_7778195_4026013,4368_644 -4358_80687,229,4368_17721,Liffey Valley SC,17699,0,4368_7778195_4026008,4368_644 -4358_80687,228,4368_17722,Liffey Valley SC,11987,0,4368_7778195_4026008,4368_645 -4358_80687,227,4368_17723,Liffey Valley SC,5000,0,4368_7778195_4026009,4368_644 -4358_80687,229,4368_17724,Liffey Valley SC,17634,0,4368_7778195_4026001,4368_644 -4358_80687,228,4368_17725,Liffey Valley SC,12043,0,4368_7778195_4026012,4368_644 -4358_80687,227,4368_17726,Liffey Valley SC,5085,0,4368_7778195_4026018,4368_644 -4358_80687,228,4368_17727,Liffey Valley SC,12089,0,4368_7778195_4026013,4368_644 -4358_80687,229,4368_17728,Liffey Valley SC,17727,0,4368_7778195_4026009,4368_645 -4358_80687,227,4368_17729,Liffey Valley SC,5069,0,4368_7778195_4026014,4368_644 -4358_80682,228,4368_1773,Harristown,13671,1,4368_7778195_8013018,4368_59 -4358_80687,229,4368_17730,Liffey Valley SC,17642,0,4368_7778195_4026010,4368_644 -4358_80687,228,4368_17731,Liffey Valley SC,11989,0,4368_7778195_4026008,4368_644 -4358_80687,227,4368_17732,Liffey Valley SC,4929,0,4368_7778195_4026012,4368_644 -4358_80687,228,4368_17733,Liffey Valley SC,12045,0,4368_7778195_4026012,4368_644 -4358_80687,229,4368_17734,Liffey Valley SC,17731,0,4368_7778195_4026011,4368_645 -4358_80687,227,4368_17735,Liffey Valley SC,4850,0,4368_7778195_4026002,4368_644 -4358_80687,228,4368_17736,Liffey Valley SC,12074,0,4368_7778195_4026011,4368_644 -4358_80687,229,4368_17737,Liffey Valley SC,17729,0,4368_7778195_4026009,4368_645 -4358_80687,227,4368_17738,Liffey Valley SC,5033,0,4368_7778195_4026010,4368_644 -4358_80687,228,4368_17739,Liffey Valley SC,12011,0,4368_7778195_4026002,4368_644 -4358_80682,229,4368_1774,Harristown,19058,1,4368_7778195_8013001,4368_61 -4358_80687,229,4368_17740,Liffey Valley SC,17741,0,4368_7778195_4026012,4368_645 -4358_80687,227,4368_17741,Liffey Valley SC,4910,0,4368_7778195_4026005,4368_644 -4358_80687,229,4368_17742,Liffey Valley SC,17638,0,4368_7778195_4026001,4368_644 -4358_80687,228,4368_17743,Liffey Valley SC,12142,0,4368_7778195_4026017,4368_645 -4358_80687,227,4368_17744,Liffey Valley SC,5004,0,4368_7778195_4026009,4368_644 -4358_80687,228,4368_17745,Liffey Valley SC,12012,0,4368_7778195_4026002,4368_644 -4358_80687,229,4368_17746,Liffey Valley SC,17744,0,4368_7778195_4026013,4368_645 -4358_80687,227,4368_17747,Liffey Valley SC,5089,0,4368_7778195_4026018,4368_644 -4358_80687,228,4368_17748,Liffey Valley SC,12117,0,4368_7778195_4026015,4368_644 -4358_80687,229,4368_17749,Liffey Valley SC,17747,0,4368_7778195_4026014,4368_645 -4358_80682,227,4368_1775,Harristown,7011,1,4368_7778195_8013028,4368_62 -4358_80687,227,4368_17750,Liffey Valley SC,4881,0,4368_7778195_4026022,4368_644 -4358_80687,229,4368_17751,Liffey Valley SC,17640,0,4368_7778195_4026001,4368_644 -4358_80687,228,4368_17752,Liffey Valley SC,12093,0,4368_7778195_4026013,4368_645 -4358_80687,227,4368_17753,Liffey Valley SC,4933,0,4368_7778195_4026012,4368_644 -4358_80687,228,4368_17754,Liffey Valley SC,12135,0,4368_7778195_4026016,4368_644 -4358_80687,229,4368_17755,Liffey Valley SC,17746,0,4368_7778195_4026013,4368_645 -4358_80687,227,4368_17756,Liffey Valley SC,4883,0,4368_7778195_4026022,4368_644 -4358_80687,229,4368_17757,Liffey Valley SC,17665,0,4368_7778195_4026007,4368_644 -4358_80687,228,4368_17758,Liffey Valley SC,13320,0,4368_7778195_4026020,4368_645 -4358_80687,227,4368_17759,Liffey Valley SC,5102,0,4368_7778195_4026025,4368_644 -4358_80682,227,4368_1776,Harristown,7044,1,4368_7778195_8013040,4368_60 -4358_80687,229,4368_17760,Liffey Valley SC,17648,0,4368_7778195_4026010,4368_644 -4358_80687,228,4368_17761,Liffey Valley SC,13329,0,4368_7778195_4026021,4368_645 -4358_80687,227,4368_17762,Liffey Valley SC,5094,0,4368_7778195_4026021,4368_644 -4358_80687,228,4368_17763,Liffey Valley SC,12146,0,4368_7778195_4026017,4368_644 -4358_80687,229,4368_17764,Liffey Valley SC,17720,0,4368_7778195_4026006,4368_645 -4358_80687,227,4368_17765,Liffey Valley SC,4962,0,4368_7778195_4026007,4368_644 -4358_80687,229,4368_17766,Liffey Valley SC,17650,0,4368_7778195_4026010,4368_644 -4358_80687,228,4368_17767,Liffey Valley SC,13330,0,4368_7778195_4026021,4368_645 -4358_80687,227,4368_17768,Liffey Valley SC,5075,0,4368_7778195_4026014,4368_644 -4358_80687,229,4368_17769,Liffey Valley SC,17785,0,4368_7778195_4026018,4368_644 -4358_80682,228,4368_1777,Harristown,13709,1,4368_7778195_8013022,4368_59 -4358_80687,228,4368_17770,Liffey Valley SC,13322,0,4368_7778195_4026020,4368_645 -4358_80687,227,4368_17771,Liffey Valley SC,4964,0,4368_7778195_4026007,4368_644 -4358_80687,229,4368_17772,Liffey Valley SC,17760,0,4368_7778195_4026016,4368_644 -4358_80687,228,4368_17773,Liffey Valley SC,12148,0,4368_7778195_4026023,4368_645 -4358_80687,227,4368_17774,Liffey Valley SC,5121,0,4368_7778195_4026027,4368_644 -4358_80687,229,4368_17775,Liffey Valley SC,17787,0,4368_7778195_4026018,4368_644 -4358_80687,228,4368_17776,Liffey Valley SC,13324,0,4368_7778195_4026020,4368_645 -4358_80687,227,4368_17777,Liffey Valley SC,4916,0,4368_7778195_4026005,4368_644 -4358_80687,229,4368_17778,Liffey Valley SC,17762,0,4368_7778195_4026016,4368_644 -4358_80687,228,4368_17779,Liffey Valley SC,12150,0,4368_7778195_4026023,4368_645 -4358_80682,229,4368_1778,Harristown,19151,1,4368_7778195_8013030,4368_61 -4358_80687,227,4368_17780,Liffey Valley SC,4887,0,4368_7778195_4026022,4368_644 -4358_80687,229,4368_17781,Liffey Valley SC,17789,0,4368_7778195_4026018,4368_644 -4358_80687,228,4368_17782,Liffey Valley SC,11981,0,4368_7778195_4026006,4368_645 -4358_80687,227,4368_17783,Liffey Valley SC,5123,0,4368_7778195_4026027,4368_644 -4358_80687,228,4368_17784,Liffey Valley SC,12152,0,4368_7778195_4026023,4368_644 -4358_80687,229,4368_17785,Liffey Valley SC,17781,0,4368_7778195_4026017,4368_645 -4358_80687,227,4368_17786,Liffey Valley SC,5125,0,4368_7778195_4026027,4368_644 -4358_80687,229,4368_17787,Liffey Valley SC,17725,0,4368_7778195_4026006,4368_644 -4358_80687,228,4368_17788,Liffey Valley SC,12154,0,4368_7778195_4026023,4368_645 -4358_80687,227,4368_17789,Liffey Valley SC,5119,0,4368_7778195_4026026,4368_644 -4358_80682,229,4368_1779,Harristown,19155,1,4368_7778195_8013031,4368_59 -4358_80687,227,4368_17790,Adamstown Station,4875,1,4368_7778195_4026001,4368_646 -4358_80687,227,4368_17791,Adamstown Station,4920,1,4368_7778195_4026004,4368_646 -4358_80687,228,4368_17792,Adamstown Station,12002,1,4368_7778195_4026002,4368_646 -4358_80687,227,4368_17793,Adamstown Station,4984,1,4368_7778195_4026008,4368_646 -4358_80687,228,4368_17794,Adamstown Station,12046,1,4368_7778195_4026007,4368_646 -4358_80687,227,4368_17795,Adamstown Station,4918,1,4368_7778195_4026006,4368_646 -4358_80687,229,4368_17796,Adamstown Station,17629,1,4368_7778195_4026001,4368_646 -4358_80687,227,4368_17797,Adamstown Station,4922,1,4368_7778195_4026004,4368_646 -4358_80687,228,4368_17798,Adamstown Station,11945,1,4368_7778195_4026001,4368_646 -4358_80687,227,4368_17799,Adamstown Station,5007,1,4368_7778195_4026017,4368_646 -4358_80760,227,4368_178,Shanard Road,1814,1,4368_7778195_9001001,4368_4 -4358_80682,228,4368_1780,Harristown,13756,1,4368_7778195_8013023,4368_61 -4358_80687,229,4368_17800,Adamstown Station,17679,1,4368_7778195_4026003,4368_646 -4358_80687,227,4368_17801,Adamstown Station,4986,1,4368_7778195_4026008,4368_646 -4358_80687,228,4368_17802,Adamstown Station,12030,1,4368_7778195_4026009,4368_646 -4358_80687,227,4368_17803,Adamstown Station,5035,1,4368_7778195_4026013,4368_646 -4358_80687,228,4368_17804,Adamstown Station,12016,1,4368_7778195_4026005,4368_646 -4358_80687,229,4368_17805,Adamstown Station,17691,1,4368_7778195_4026004,4368_646 -4358_80687,227,4368_17806,Adamstown Station,4953,1,4368_7778195_4026007,4368_646 -4358_80687,228,4368_17807,Adamstown Station,12040,1,4368_7778195_4026012,4368_646 -4358_80687,227,4368_17808,Adamstown Station,4893,1,4368_7778195_4026003,4368_646 -4358_80687,229,4368_17809,Adamstown Station,17696,1,4368_7778195_4026008,4368_646 -4358_80682,227,4368_1781,Harristown,7022,1,4368_7778195_8013031,4368_62 -4358_80687,228,4368_17810,Adamstown Station,12086,1,4368_7778195_4026013,4368_646 -4358_80687,229,4368_17811,Adamstown Station,17674,1,4368_7778195_4026002,4368_646 -4358_80687,227,4368_17812,Adamstown Station,5037,1,4368_7778195_4026013,4368_646 -4358_80687,228,4368_17813,Adamstown Station,11986,1,4368_7778195_4026008,4368_646 -4358_80687,229,4368_17814,Adamstown Station,17698,1,4368_7778195_4026008,4368_646 -4358_80687,227,4368_17815,Adamstown Station,4999,1,4368_7778195_4026009,4368_647 -4358_80687,228,4368_17816,Adamstown Station,12042,1,4368_7778195_4026012,4368_646 -4358_80687,229,4368_17817,Adamstown Station,17633,1,4368_7778195_4026001,4368_646 -4358_80687,227,4368_17818,Adamstown Station,5084,1,4368_7778195_4026018,4368_646 -4358_80687,229,4368_17819,Adamstown Station,17726,1,4368_7778195_4026009,4368_646 -4358_80682,227,4368_1782,Harristown,7029,1,4368_7778195_8013033,4368_59 -4358_80687,228,4368_17820,Adamstown Station,12088,1,4368_7778195_4026013,4368_646 -4358_80687,227,4368_17821,Adamstown Station,5068,1,4368_7778195_4026014,4368_646 -4358_80687,228,4368_17822,Adamstown Station,11988,1,4368_7778195_4026008,4368_646 -4358_80687,229,4368_17823,Adamstown Station,17641,1,4368_7778195_4026010,4368_646 -4358_80687,227,4368_17824,Adamstown Station,4928,1,4368_7778195_4026012,4368_647 -4358_80687,228,4368_17825,Adamstown Station,12044,1,4368_7778195_4026012,4368_646 -4358_80687,229,4368_17826,Adamstown Station,17730,1,4368_7778195_4026011,4368_647 -4358_80687,227,4368_17827,Adamstown Station,4849,1,4368_7778195_4026002,4368_646 -4358_80687,228,4368_17828,Adamstown Station,12073,1,4368_7778195_4026011,4368_646 -4358_80687,229,4368_17829,Adamstown Station,17728,1,4368_7778195_4026009,4368_646 -4358_80682,228,4368_1783,Harristown,13799,1,4368_7778195_8013024,4368_61 -4358_80687,227,4368_17830,Adamstown Station,5032,1,4368_7778195_4026010,4368_646 -4358_80687,228,4368_17831,Adamstown Station,12010,1,4368_7778195_4026002,4368_646 -4358_80687,229,4368_17832,Adamstown Station,17740,1,4368_7778195_4026012,4368_646 -4358_80687,227,4368_17833,Adamstown Station,4909,1,4368_7778195_4026005,4368_647 -4358_80687,228,4368_17834,Adamstown Station,12141,1,4368_7778195_4026017,4368_646 -4358_80687,229,4368_17835,Adamstown Station,17637,1,4368_7778195_4026001,4368_646 -4358_80687,227,4368_17836,Adamstown Station,5003,1,4368_7778195_4026009,4368_646 -4358_80687,228,4368_17837,Adamstown Station,12075,1,4368_7778195_4026011,4368_646 -4358_80687,227,4368_17838,Adamstown Station,5088,1,4368_7778195_4026018,4368_646 -4358_80687,229,4368_17839,Adamstown Station,17743,1,4368_7778195_4026013,4368_646 -4358_80682,229,4368_1784,Harristown,19113,1,4368_7778195_8013019,4368_62 -4358_80687,228,4368_17840,Adamstown Station,12116,1,4368_7778195_4026015,4368_646 -4358_80687,227,4368_17841,Adamstown Station,4880,1,4368_7778195_4026022,4368_647 -4358_80687,229,4368_17842,Adamstown Station,17742,1,4368_7778195_4026012,4368_646 -4358_80687,228,4368_17843,Adamstown Station,12092,1,4368_7778195_4026013,4368_646 -4358_80687,229,4368_17844,Adamstown Station,17639,1,4368_7778195_4026001,4368_646 -4358_80687,227,4368_17845,Adamstown Station,4932,1,4368_7778195_4026012,4368_646 -4358_80687,228,4368_17846,Adamstown Station,12134,1,4368_7778195_4026016,4368_646 -4358_80687,229,4368_17847,Adamstown Station,17745,1,4368_7778195_4026013,4368_646 -4358_80687,227,4368_17848,Adamstown Station,4882,1,4368_7778195_4026022,4368_646 -4358_80687,228,4368_17849,Adamstown Station,11966,1,4368_7778195_4026004,4368_646 -4358_80682,227,4368_1785,Harristown,7039,1,4368_7778195_8013038,4368_59 -4358_80687,229,4368_17850,Adamstown Station,17664,1,4368_7778195_4026007,4368_646 -4358_80687,227,4368_17851,Adamstown Station,5101,1,4368_7778195_4026025,4368_646 -4358_80687,229,4368_17852,Adamstown Station,17647,1,4368_7778195_4026010,4368_646 -4358_80687,228,4368_17853,Adamstown Station,13328,1,4368_7778195_4026021,4368_646 -4358_80687,227,4368_17854,Adamstown Station,4961,1,4368_7778195_4026007,4368_646 -4358_80687,228,4368_17855,Adamstown Station,12145,1,4368_7778195_4026017,4368_646 -4358_80687,229,4368_17856,Adamstown Station,17719,1,4368_7778195_4026006,4368_646 -4358_80687,227,4368_17857,Adamstown Station,5074,1,4368_7778195_4026014,4368_646 -4358_80687,228,4368_17858,Adamstown Station,13321,1,4368_7778195_4026020,4368_646 -4358_80687,229,4368_17859,Adamstown Station,17649,1,4368_7778195_4026010,4368_646 -4358_80682,228,4368_1786,Harristown,13836,1,4368_7778195_8013025,4368_61 -4358_80687,227,4368_17860,Adamstown Station,4969,1,4368_7778195_4026023,4368_646 -4358_80687,228,4368_17861,Adamstown Station,12120,1,4368_7778195_4026015,4368_646 -4358_80687,229,4368_17862,Adamstown Station,17784,1,4368_7778195_4026018,4368_646 -4358_80687,227,4368_17863,Adamstown Station,4963,1,4368_7778195_4026007,4368_646 -4358_80687,229,4368_17864,Adamstown Station,17759,1,4368_7778195_4026016,4368_646 -4358_80687,228,4368_17865,Adamstown Station,12147,1,4368_7778195_4026023,4368_646 -4358_80687,227,4368_17866,Adamstown Station,5120,1,4368_7778195_4026027,4368_646 -4358_80687,228,4368_17867,Adamstown Station,13323,1,4368_7778195_4026020,4368_646 -4358_80687,227,4368_17868,Adamstown Station,4915,1,4368_7778195_4026005,4368_646 -4358_80687,229,4368_17869,Adamstown Station,17786,1,4368_7778195_4026018,4368_646 -4358_80682,229,4368_1787,Harristown,19124,1,4368_7778195_8013021,4368_62 -4358_80687,228,4368_17870,Adamstown Station,12149,1,4368_7778195_4026023,4368_646 -4358_80687,229,4368_17871,Adamstown Station,17761,1,4368_7778195_4026016,4368_646 -4358_80687,227,4368_17872,Adamstown Station,4886,1,4368_7778195_4026022,4368_646 -4358_80687,228,4368_17873,Adamstown Station,11980,1,4368_7778195_4026006,4368_646 -4358_80687,229,4368_17874,Adamstown Station,17788,1,4368_7778195_4026018,4368_646 -4358_80687,227,4368_17875,Adamstown Station,5122,1,4368_7778195_4026027,4368_646 -4358_80687,228,4368_17876,Adamstown Station,12151,1,4368_7778195_4026023,4368_646 -4358_80687,227,4368_17877,Adamstown Station,5078,1,4368_7778195_4026014,4368_646 -4358_80687,229,4368_17878,Adamstown Station,17780,1,4368_7778195_4026017,4368_647 -4358_80687,228,4368_17879,Adamstown Station,12140,1,4368_7778195_4026016,4368_646 -4358_80682,229,4368_1788,Harristown,19132,1,4368_7778195_8013023,4368_59 -4358_80687,229,4368_17880,Adamstown Station,17790,1,4368_7778195_4026018,4368_646 -4358_80687,227,4368_17881,Adamstown Station,5124,1,4368_7778195_4026027,4368_646 -4358_80687,228,4368_17882,Adamstown Station,12153,1,4368_7778195_4026023,4368_646 -4358_80687,228,4368_17883,Adamstown Station,13327,1,4368_7778195_4026020,4368_646 -4358_80687,227,4368_17884,Adamstown Station,5118,1,4368_7778195_4026026,4368_646 -4358_80687,229,4368_17885,Adamstown Station,17791,1,4368_7778195_4026018,4368_647 -4358_80795,227,4368_17886,River Forest,4540,0,4368_7778195_4461010,4368_648 -4358_80795,228,4368_17887,River Forest,11679,0,4368_7778195_4461007,4368_648 -4358_80795,227,4368_17888,River Forest,4592,0,4368_7778195_4461016,4368_648 -4358_80795,227,4368_17889,River Forest,4589,0,4368_7778195_4461011,4368_648 -4358_80682,228,4368_1789,Harristown,13862,1,4368_7778195_8013026,4368_61 -4358_80795,228,4368_17890,River Forest,11719,0,4368_7778195_4461006,4368_648 -4358_80795,227,4368_17891,River Forest,4689,0,4368_7778195_4461025,4368_648 -4358_80795,227,4368_17892,River Forest,6099,0,4368_7778195_4824117,4368_648 -4358_80795,227,4368_17893,River Forest,4745,0,4368_7778195_4461031,4368_648 -4358_80795,228,4368_17894,River Forest,11681,0,4368_7778195_4461007,4368_648 -4358_80795,229,4368_17895,River Forest,17490,0,4368_7778195_4461010,4368_649 -4358_80795,227,4368_17896,River Forest,4594,0,4368_7778195_4461016,4368_648 -4358_80795,227,4368_17897,River Forest,4591,0,4368_7778195_4461011,4368_648 -4358_80795,228,4368_17898,River Forest,11721,0,4368_7778195_4461006,4368_648 -4358_80795,229,4368_17899,River Forest,17486,0,4368_7778195_4461009,4368_649 -4358_80760,227,4368_179,Shanard Road,1651,1,4368_7778195_9001003,4368_4 -4358_80682,227,4368_1790,Harristown,7047,1,4368_7778195_8013041,4368_62 -4358_80795,227,4368_17900,River Forest,4676,0,4368_7778195_4461034,4368_648 -4358_80795,228,4368_17901,River Forest,11828,0,4368_7778195_4461021,4368_648 -4358_80795,227,4368_17902,River Forest,4618,0,4368_7778195_4461013,4368_648 -4358_80795,229,4368_17903,River Forest,17492,0,4368_7778195_4461010,4368_648 -4358_80795,228,4368_17904,River Forest,11763,0,4368_7778195_4461024,4368_649 -4358_80795,227,4368_17905,River Forest,4576,0,4368_7778195_4461006,4368_648 -4358_80795,228,4368_17906,River Forest,11624,0,4368_7778195_4461019,4368_648 -4358_80795,229,4368_17907,River Forest,17590,0,4368_7778195_4461018,4368_649 -4358_80795,227,4368_17908,River Forest,4649,0,4368_7778195_4461038,4368_648 -4358_80795,228,4368_17909,River Forest,11850,0,4368_7778195_4461023,4368_648 -4358_80682,228,4368_1791,Harristown,13871,1,4368_7778195_8013027,4368_59 -4358_80795,229,4368_17910,River Forest,17488,0,4368_7778195_4461009,4368_649 -4358_80795,227,4368_17911,River Forest,4801,0,4368_7778195_4461037,4368_648 -4358_80795,229,4368_17912,River Forest,17560,0,4368_7778195_4461016,4368_648 -4358_80795,228,4368_17913,River Forest,11627,0,4368_7778195_4461026,4368_649 -4358_80795,227,4368_17914,River Forest,4624,0,4368_7778195_4461014,4368_648 -4358_80795,227,4368_17915,River Forest,4565,0,4368_7778195_4461005,4368_648 -4358_80795,229,4368_17916,River Forest,17615,0,4368_7778195_4461020,4368_649 -4358_80795,228,4368_17917,River Forest,11765,0,4368_7778195_4461024,4368_650 -4358_80795,228,4368_17918,River Forest,11626,0,4368_7778195_4461019,4368_648 -4358_80795,227,4368_17919,River Forest,4668,0,4368_7778195_4461042,4368_649 -4358_80682,229,4368_1792,Harristown,19159,1,4368_7778195_8013033,4368_61 -4358_80795,229,4368_17920,River Forest,17592,0,4368_7778195_4461018,4368_650 -4358_80795,228,4368_17921,River Forest,11843,0,4368_7778195_4461027,4368_648 -4358_80795,229,4368_17922,River Forest,17582,0,4368_7778195_4461022,4368_649 -4358_80795,227,4368_17923,River Forest,4632,0,4368_7778195_4461015,4368_650 -4358_80795,229,4368_17924,River Forest,17588,0,4368_7778195_4461021,4368_648 -4358_80795,227,4368_17925,River Forest,4462,0,4368_7778195_4461041,4368_649 -4358_80795,228,4368_17926,River Forest,11872,0,4368_7778195_4461033,4368_650 -4358_80795,227,4368_17927,River Forest,4517,0,4368_7778195_4461044,4368_648 -4358_80795,228,4368_17928,River Forest,11761,0,4368_7778195_4461016,4368_649 -4358_80795,229,4368_17929,River Forest,17469,0,4368_7778195_4461005,4368_650 -4358_80682,227,4368_1793,Harristown,6981,1,4368_7778195_8013019,4368_62 -4358_80795,229,4368_17930,River Forest,17445,0,4368_7778195_4461023,4368_648 -4358_80795,227,4368_17931,River Forest,4670,0,4368_7778195_4461042,4368_649 -4358_80795,228,4368_17932,River Forest,11697,0,4368_7778195_4461031,4368_650 -4358_80795,229,4368_17933,River Forest,17584,0,4368_7778195_4461022,4368_648 -4358_80795,227,4368_17934,River Forest,4484,0,4368_7778195_4461046,4368_649 -4358_80795,228,4368_17935,River Forest,11890,0,4368_7778195_4461034,4368_650 -4358_80795,229,4368_17936,River Forest,17503,0,4368_7778195_4461024,4368_648 -4358_80795,227,4368_17937,River Forest,4684,0,4368_7778195_4461023,4368_649 -4358_80795,228,4368_17938,River Forest,11874,0,4368_7778195_4461033,4368_650 -4358_80795,228,4368_17939,River Forest,11892,0,4368_7778195_4461035,4368_648 -4358_80682,228,4368_1794,Harristown,13676,1,4368_7778195_8013019,4368_59 -4358_80795,227,4368_17940,River Forest,4465,0,4368_7778195_4461045,4368_649 -4358_80795,229,4368_17941,River Forest,17471,0,4368_7778195_4461005,4368_650 -4358_80795,229,4368_17942,River Forest,17619,0,4368_7778195_4461020,4368_648 -4358_80795,227,4368_17943,River Forest,4482,0,4368_7778195_4461053,4368_649 -4358_80795,228,4368_17944,River Forest,11886,0,4368_7778195_4461036,4368_650 -4358_80795,227,4368_17945,River Forest,4538,0,4368_7778195_4461049,4368_648 -4358_80795,229,4368_17946,River Forest,17603,0,4368_7778195_4461026,4368_649 -4358_80795,228,4368_17947,River Forest,11903,0,4368_7778195_4461038,4368_650 -4358_80795,229,4368_17948,River Forest,17505,0,4368_7778195_4461024,4368_648 -4358_80795,228,4368_17949,River Forest,11876,0,4368_7778195_4461040,4368_649 -4358_80682,229,4368_1795,Harristown,19148,1,4368_7778195_8013029,4368_61 -4358_80795,227,4368_17950,River Forest,4686,0,4368_7778195_4461023,4368_650 -4358_80795,227,4368_17951,River Forest,4468,0,4368_7778195_4461057,4368_648 -4358_80795,228,4368_17952,River Forest,11921,0,4368_7778195_4461041,4368_649 -4358_80795,229,4368_17953,River Forest,17594,0,4368_7778195_4461025,4368_650 -4358_80795,229,4368_17954,River Forest,17441,0,4368_7778195_4461003,4368_648 -4358_80795,227,4368_17955,River Forest,4555,0,4368_7778195_4461043,4368_649 -4358_80795,228,4368_17956,River Forest,11888,0,4368_7778195_4461036,4368_650 -4358_80795,228,4368_17957,River Forest,11753,0,4368_7778195_4461011,4368_648 -4358_80795,229,4368_17958,River Forest,17605,0,4368_7778195_4461026,4368_649 -4358_80795,227,4368_17959,River Forest,4819,0,4368_7778195_4461052,4368_650 -4358_80682,227,4368_1796,Harristown,7043,1,4368_7778195_8013039,4368_60 -4358_80795,228,4368_17960,River Forest,11878,0,4368_7778195_4461040,4368_648 -4358_80795,229,4368_17961,River Forest,17606,0,4368_7778195_4461027,4368_649 -4358_80795,227,4368_17962,River Forest,4743,0,4368_7778195_4461027,4368_650 -4358_80795,228,4368_17963,River Forest,11923,0,4368_7778195_4461041,4368_648 -4358_80795,229,4368_17964,River Forest,17500,0,4368_7778195_4461010,4368_649 -4358_80795,227,4368_17965,River Forest,4832,0,4368_7778195_4461059,4368_650 -4358_80795,227,4368_17966,River Forest,4728,0,4368_7778195_4461030,4368_648 -4358_80795,229,4368_17967,River Forest,17443,0,4368_7778195_4461003,4368_649 -4358_80795,228,4368_17968,River Forest,11911,0,4368_7778195_4461028,4368_650 -4358_80795,228,4368_17969,River Forest,11755,0,4368_7778195_4461011,4368_648 -4358_80682,227,4368_1797,Harristown,6879,1,4368_7778195_8013008,4368_58 -4358_80795,229,4368_17970,River Forest,17609,0,4368_7778195_4461028,4368_649 -4358_80795,227,4368_17971,River Forest,4821,0,4368_7778195_4461052,4368_650 -4358_80795,227,4368_17972,River Forest,4703,0,4368_7778195_4461026,4368_648 -4358_80795,228,4368_17973,River Forest,11767,0,4368_7778195_4461044,4368_649 -4358_80795,229,4368_17974,River Forest,17621,0,4368_7778195_4461030,4368_650 -4358_80795,227,4368_17975,River Forest,4584,0,4368_7778195_4461060,4368_648 -4358_80795,228,4368_17976,River Forest,11925,0,4368_7778195_4461041,4368_649 -4358_80795,229,4368_17977,River Forest,17502,0,4368_7778195_4461010,4368_650 -4358_80795,229,4368_17978,River Forest,17612,0,4368_7778195_4461029,4368_648 -4358_80795,227,4368_17979,River Forest,4730,0,4368_7778195_4461030,4368_649 -4358_80682,228,4368_1798,Harristown,13624,1,4368_7778195_8013007,4368_63 -4358_80795,228,4368_17980,River Forest,11913,0,4368_7778195_4461028,4368_650 -4358_80795,227,4368_17981,River Forest,4705,0,4368_7778195_4461026,4368_648 -4358_80795,228,4368_17982,River Forest,11769,0,4368_7778195_4461044,4368_649 -4358_80795,229,4368_17983,River Forest,17623,0,4368_7778195_4461030,4368_650 -4358_80795,227,4368_17984,Red Cow Luas,4588,1,4368_7778195_4461011,4368_651 -4358_80795,228,4368_17985,Red Cow Luas,11718,1,4368_7778195_4461006,4368_652 -4358_80795,227,4368_17986,Red Cow Luas,4541,1,4368_7778195_4461010,4368_651 -4358_80795,227,4368_17987,Red Cow Luas,4593,1,4368_7778195_4461016,4368_651 -4358_80795,228,4368_17988,Red Cow Luas,11680,1,4368_7778195_4461007,4368_652 -4358_80795,227,4368_17989,Red Cow Luas,4590,1,4368_7778195_4461011,4368_651 -4358_80682,229,4368_1799,Harristown,19136,1,4368_7778195_8013025,4368_64 -4358_80795,227,4368_17990,Red Cow Luas,4675,1,4368_7778195_4461034,4368_651 -4358_80795,228,4368_17991,Red Cow Luas,11720,1,4368_7778195_4461006,4368_652 -4358_80795,229,4368_17992,Red Cow Luas,17485,1,4368_7778195_4461009,4368_653 -4358_80795,227,4368_17993,Red Cow Luas,4690,1,4368_7778195_4461025,4368_651 -4358_80795,228,4368_17994,Red Cow Luas,11682,1,4368_7778195_4461007,4368_651 -4358_80795,227,4368_17995,Red Cow Luas,4746,1,4368_7778195_4461031,4368_652 -4358_80795,229,4368_17996,Red Cow Luas,17491,1,4368_7778195_4461010,4368_653 -4358_80795,227,4368_17997,Red Cow Luas,4595,1,4368_7778195_4461016,4368_651 -4358_80795,228,4368_17998,Red Cow Luas,11623,1,4368_7778195_4461019,4368_652 -4358_80795,228,4368_17999,Red Cow Luas,11849,1,4368_7778195_4461023,4368_651 -4358_80760,228,4368_18,Shaw street,9312,0,4368_7778195_9001002,4368_1 -4358_80760,228,4368_180,Shanard Road,9479,1,4368_7778195_9001004,4368_5 -4358_80682,228,4368_1800,Harristown,13874,1,4368_7778195_8013028,4368_58 -4358_80795,227,4368_18000,Red Cow Luas,4800,1,4368_7778195_4461037,4368_652 -4358_80795,229,4368_18001,Red Cow Luas,17487,1,4368_7778195_4461009,4368_653 -4358_80795,229,4368_18002,Red Cow Luas,17559,1,4368_7778195_4461016,4368_651 -4358_80795,227,4368_18003,Red Cow Luas,4677,1,4368_7778195_4461034,4368_652 -4358_80795,228,4368_18004,Red Cow Luas,11829,1,4368_7778195_4461021,4368_653 -4358_80795,227,4368_18005,Red Cow Luas,4619,1,4368_7778195_4461013,4368_651 -4358_80795,229,4368_18006,Red Cow Luas,17493,1,4368_7778195_4461010,4368_652 -4358_80795,228,4368_18007,Red Cow Luas,11764,1,4368_7778195_4461024,4368_653 -4358_80795,228,4368_18008,Red Cow Luas,11625,1,4368_7778195_4461019,4368_651 -4358_80795,227,4368_18009,Red Cow Luas,4577,1,4368_7778195_4461006,4368_652 -4358_80682,227,4368_1801,Harristown,6818,1,4368_7778195_8013003,4368_63 -4358_80795,229,4368_18010,Red Cow Luas,17591,1,4368_7778195_4461018,4368_653 -4358_80795,227,4368_18011,Red Cow Luas,4650,1,4368_7778195_4461038,4368_651 -4358_80795,228,4368_18012,Red Cow Luas,11842,1,4368_7778195_4461027,4368_652 -4358_80795,229,4368_18013,Red Cow Luas,17489,1,4368_7778195_4461009,4368_653 -4358_80795,229,4368_18014,Red Cow Luas,17561,1,4368_7778195_4461016,4368_651 -4358_80795,227,4368_18015,Red Cow Luas,4461,1,4368_7778195_4461041,4368_652 -4358_80795,228,4368_18016,Red Cow Luas,11628,1,4368_7778195_4461026,4368_653 -4358_80795,227,4368_18017,Red Cow Luas,4516,1,4368_7778195_4461044,4368_651 -4358_80795,229,4368_18018,Red Cow Luas,17616,1,4368_7778195_4461020,4368_652 -4358_80795,228,4368_18019,Red Cow Luas,11766,1,4368_7778195_4461024,4368_653 -4358_80682,229,4368_1802,Harristown,19160,1,4368_7778195_8013034,4368_64 -4358_80795,229,4368_18020,Red Cow Luas,17444,1,4368_7778195_4461023,4368_651 -4358_80795,227,4368_18021,Red Cow Luas,4669,1,4368_7778195_4461042,4368_652 -4358_80795,228,4368_18022,Red Cow Luas,11696,1,4368_7778195_4461031,4368_653 -4358_80795,228,4368_18023,Red Cow Luas,11844,1,4368_7778195_4461027,4368_651 -4358_80795,229,4368_18024,Red Cow Luas,17583,1,4368_7778195_4461022,4368_652 -4358_80795,227,4368_18025,Red Cow Luas,4633,1,4368_7778195_4461015,4368_653 -4358_80795,229,4368_18026,Red Cow Luas,17589,1,4368_7778195_4461021,4368_651 -4358_80795,227,4368_18027,Red Cow Luas,4463,1,4368_7778195_4461041,4368_652 -4358_80795,228,4368_18028,Red Cow Luas,11873,1,4368_7778195_4461033,4368_653 -4358_80795,227,4368_18029,Red Cow Luas,4464,1,4368_7778195_4461045,4368_651 -4358_80682,228,4368_1803,Harristown,13644,1,4368_7778195_8013010,4368_58 -4358_80795,228,4368_18030,Red Cow Luas,11762,1,4368_7778195_4461016,4368_652 -4358_80795,229,4368_18031,Red Cow Luas,17470,1,4368_7778195_4461005,4368_653 -4358_80795,227,4368_18032,Red Cow Luas,4518,1,4368_7778195_4461044,4368_651 -4358_80795,229,4368_18033,Red Cow Luas,17446,1,4368_7778195_4461023,4368_652 -4358_80795,228,4368_18034,Red Cow Luas,11698,1,4368_7778195_4461031,4368_653 -4358_80795,227,4368_18035,Red Cow Luas,6100,1,4368_7778195_4824217,4368_651 -4358_80795,227,4368_18036,Red Cow Luas,4537,1,4368_7778195_4461049,4368_651 -4358_80795,229,4368_18037,Red Cow Luas,17585,1,4368_7778195_4461022,4368_652 -4358_80795,228,4368_18038,Red Cow Luas,11891,1,4368_7778195_4461034,4368_653 -4358_80795,229,4368_18039,Red Cow Luas,17504,1,4368_7778195_4461024,4368_651 -4358_80682,229,4368_1804,Harristown,19162,1,4368_7778195_8013035,4368_63 -4358_80795,227,4368_18040,Red Cow Luas,4685,1,4368_7778195_4461023,4368_652 -4358_80795,228,4368_18041,Red Cow Luas,11875,1,4368_7778195_4461033,4368_653 -4358_80795,227,4368_18042,Red Cow Luas,4467,1,4368_7778195_4461057,4368_651 -4358_80795,228,4368_18043,Red Cow Luas,11893,1,4368_7778195_4461035,4368_652 -4358_80795,229,4368_18044,Red Cow Luas,17593,1,4368_7778195_4461025,4368_653 -4358_80795,227,4368_18045,Red Cow Luas,4466,1,4368_7778195_4461045,4368_651 -4358_80795,229,4368_18046,Red Cow Luas,17620,1,4368_7778195_4461020,4368_652 -4358_80795,228,4368_18047,Red Cow Luas,11887,1,4368_7778195_4461036,4368_653 -4358_80795,229,4368_18048,Red Cow Luas,17604,1,4368_7778195_4461026,4368_651 -4358_80795,227,4368_18049,Red Cow Luas,4483,1,4368_7778195_4461053,4368_652 -4358_80682,227,4368_1805,Harristown,7050,1,4368_7778195_8013042,4368_64 -4358_80795,228,4368_18050,Red Cow Luas,11904,1,4368_7778195_4461038,4368_653 -4358_80795,229,4368_18051,Red Cow Luas,17506,1,4368_7778195_4461024,4368_651 -4358_80795,228,4368_18052,Red Cow Luas,11877,1,4368_7778195_4461040,4368_652 -4358_80795,227,4368_18053,Red Cow Luas,4539,1,4368_7778195_4461049,4368_653 -4358_80795,228,4368_18054,Red Cow Luas,11922,1,4368_7778195_4461041,4368_651 -4358_80795,229,4368_18055,Red Cow Luas,17595,1,4368_7778195_4461025,4368_652 -4358_80795,227,4368_18056,Red Cow Luas,4831,1,4368_7778195_4461059,4368_653 -4358_80795,229,4368_18057,Red Cow Luas,17442,1,4368_7778195_4461003,4368_651 -4358_80795,227,4368_18058,Red Cow Luas,4556,1,4368_7778195_4461043,4368_652 -4358_80795,228,4368_18059,Red Cow Luas,11889,1,4368_7778195_4461036,4368_653 -4358_80682,228,4368_1806,Harristown,13877,1,4368_7778195_8013029,4368_58 -4358_80795,228,4368_18060,Red Cow Luas,11754,1,4368_7778195_4461011,4368_651 -4358_80795,229,4368_18061,Red Cow Luas,17608,1,4368_7778195_4461028,4368_652 -4358_80795,227,4368_18062,Red Cow Luas,4820,1,4368_7778195_4461052,4368_653 -4358_80795,228,4368_18063,Red Cow Luas,11879,1,4368_7778195_4461040,4368_651 -4358_80795,229,4368_18064,Red Cow Luas,17607,1,4368_7778195_4461027,4368_652 -4358_80795,227,4368_18065,Red Cow Luas,4744,1,4368_7778195_4461027,4368_653 -4358_80795,227,4368_18066,Red Cow Luas,4583,1,4368_7778195_4461060,4368_651 -4358_80795,228,4368_18067,Red Cow Luas,11924,1,4368_7778195_4461041,4368_652 -4358_80795,229,4368_18068,Red Cow Luas,17501,1,4368_7778195_4461010,4368_653 -4358_80795,229,4368_18069,Red Cow Luas,17611,1,4368_7778195_4461029,4368_651 -4358_80682,227,4368_1807,Harristown,7054,1,4368_7778195_8013043,4368_60 -4358_80795,227,4368_18070,Red Cow Luas,4729,1,4368_7778195_4461030,4368_652 -4358_80795,228,4368_18071,Red Cow Luas,11912,1,4368_7778195_4461028,4368_653 -4358_80795,228,4368_18072,Red Cow Luas,11756,1,4368_7778195_4461011,4368_651 -4358_80795,229,4368_18073,Red Cow Luas,17610,1,4368_7778195_4461028,4368_652 -4358_80795,227,4368_18074,Red Cow Luas,4822,1,4368_7778195_4461052,4368_653 -4358_80795,227,4368_18075,Red Cow Luas,4704,1,4368_7778195_4461026,4368_651 -4358_80795,228,4368_18076,Red Cow Luas,11768,1,4368_7778195_4461044,4368_652 -4358_80795,229,4368_18077,Red Cow Luas,17622,1,4368_7778195_4461030,4368_653 -4358_80795,229,4368_18078,Red Cow Luas,17613,1,4368_7778195_4461029,4368_651 -4358_80795,227,4368_18079,Red Cow Luas,4731,1,4368_7778195_4461030,4368_652 -4358_80682,229,4368_1808,Harristown,19164,1,4368_7778195_8013036,4368_63 -4358_80795,228,4368_18080,Red Cow Luas,11914,1,4368_7778195_4461028,4368_653 -4358_80796,227,4368_18081,Hazelhatch Station,838,0,4368_7778195_7958001,4368_654 -4358_80796,228,4368_18082,Hazelhatch Station,8684,0,4368_7778195_7958002,4368_654 -4358_80796,227,4368_18083,Hazelhatch Station,840,0,4368_7778195_7958001,4368_654 -4358_80796,228,4368_18084,Hazelhatch Station,8686,0,4368_7778195_7958002,4368_654 -4358_80796,227,4368_18085,Hazelhatch Station,836,0,4368_7778195_7958003,4368_654 -4358_80796,229,4368_18086,Hazelhatch Station,15014,0,4368_7778195_7958002,4368_654 -4358_80796,228,4368_18087,Hazelhatch Station,8688,0,4368_7778195_7958002,4368_655 -4358_80796,227,4368_18088,Hazelhatch Station,847,0,4368_7778195_7958004,4368_654 -4358_80796,229,4368_18089,Hazelhatch Station,15016,0,4368_7778195_7958002,4368_654 -4358_80682,228,4368_1809,Harristown,13879,1,4368_7778195_8013030,4368_58 -4358_80796,228,4368_18090,Hazelhatch Station,8690,0,4368_7778195_7958002,4368_655 -4358_80796,227,4368_18091,Hazelhatch Station,883,0,4368_7778195_7958007,4368_654 -4358_80796,229,4368_18092,Hazelhatch Station,15018,0,4368_7778195_7958002,4368_654 -4358_80796,228,4368_18093,Hazelhatch Station,8649,0,4368_7778195_7958006,4368_655 -4358_80796,227,4368_18094,Hazelhatch Station,850,0,4368_7778195_7958008,4368_654 -4358_80796,229,4368_18095,Hazelhatch Station,15020,0,4368_7778195_7958002,4368_654 -4358_80796,228,4368_18096,Hazelhatch Station,8681,0,4368_7778195_7958004,4368_655 -4358_80796,227,4368_18097,Hazelhatch Station,852,0,4368_7778195_7958008,4368_654 -4358_80796,229,4368_18098,Hazelhatch Station,15029,0,4368_7778195_7958003,4368_654 -4358_80796,228,4368_18099,Hazelhatch Station,8683,0,4368_7778195_7958004,4368_655 -4358_80760,227,4368_181,Shanard Road,1585,1,4368_7778195_9001005,4368_4 -4358_80682,227,4368_1810,Harristown,7056,1,4368_7778195_8013045,4368_63 -4358_80796,227,4368_18100,Hazelhatch Station,808,0,4368_7778195_7958011,4368_654 -4358_80796,228,4368_18101,Hazelhatch Station,8697,0,4368_7778195_7958011,4368_654 -4358_80796,229,4368_18102,Hazelhatch Station,14954,0,4368_7778195_7958004,4368_655 -4358_80796,227,4368_18103,Hazelhatch Station,890,0,4368_7778195_7958014,4368_654 -4358_80796,228,4368_18104,Hazelhatch Station,8694,0,4368_7778195_7958009,4368_654 -4358_80796,229,4368_18105,Hazelhatch Station,14985,0,4368_7778195_7958008,4368_655 -4358_80796,227,4368_18106,Hazelhatch Station,904,0,4368_7778195_7958012,4368_654 -4358_80796,228,4368_18107,Hazelhatch Station,8647,0,4368_7778195_7958010,4368_654 -4358_80796,229,4368_18108,Hazelhatch Station,14987,0,4368_7778195_7958008,4368_655 -4358_80796,227,4368_18109,Hazelhatch Station,900,0,4368_7778195_7958013,4368_654 -4358_80682,229,4368_1811,Harristown,19166,1,4368_7778195_8013037,4368_64 -4358_80796,227,4368_18110,Hazelhatch Station,6104,0,4368_7778195_7872231,4368_654 -4358_80796,229,4368_18111,Hazelhatch Station,15040,0,4368_7778195_7958007,4368_655 -4358_80796,228,4368_18112,Hazelhatch Station,8677,0,4368_7778195_7958013,4368_656 -4358_80796,227,4368_18113,Hazelhatch Station,876,0,4368_7778195_7958017,4368_654 -4358_80796,228,4368_18114,Hazelhatch Station,8727,0,4368_7778195_7958016,4368_654 -4358_80796,229,4368_18115,Hazelhatch Station,14975,0,4368_7778195_7958012,4368_655 -4358_80796,227,4368_18116,Hazelhatch Station,812,0,4368_7778195_7958019,4368_654 -4358_80796,228,4368_18117,Hazelhatch Station,8729,0,4368_7778195_7958016,4368_654 -4358_80796,229,4368_18118,Hazelhatch Station,14977,0,4368_7778195_7958012,4368_655 -4358_80796,227,4368_18119,Hazelhatch Station,863,0,4368_7778195_7958023,4368_654 -4358_80682,228,4368_1812,Harristown,13581,1,4368_7778195_8013001,4368_58 -4358_80796,229,4368_18120,Hazelhatch Station,14980,0,4368_7778195_7958015,4368_654 -4358_80796,228,4368_18121,Hazelhatch Station,8660,0,4368_7778195_7958019,4368_655 -4358_80796,227,4368_18122,Hazelhatch Station,804,0,4368_7778195_7958024,4368_654 -4358_80796,229,4368_18123,Hazelhatch Station,15000,0,4368_7778195_7958018,4368_654 -4358_80796,228,4368_18124,Hazelhatch Station,8629,0,4368_7778195_7958022,4368_655 -4358_80796,227,4368_18125,Hazelhatch Station,911,0,4368_7778195_7958022,4368_654 -4358_80796,229,4368_18126,Hazelhatch Station,15002,0,4368_7778195_7958018,4368_654 -4358_80796,228,4368_18127,Hazelhatch Station,8668,0,4368_7778195_7958023,4368_655 -4358_80796,227,4368_18128,Hazelhatch Station,816,0,4368_7778195_7958025,4368_654 -4358_80796,229,4368_18129,Hazelhatch Station,15004,0,4368_7778195_7958018,4368_654 -4358_80682,229,4368_1813,Harristown,19120,1,4368_7778195_8013020,4368_63 -4358_80796,228,4368_18130,Hazelhatch Station,8670,0,4368_7778195_7958023,4368_655 -4358_80796,227,4368_18131,Hazelhatch Station,818,0,4368_7778195_7958025,4368_654 -4358_80796,229,4368_18132,Hazelhatch Station,15006,0,4368_7778195_7958018,4368_654 -4358_80796,228,4368_18133,Hazelhatch Station,8672,0,4368_7778195_7958023,4368_655 -4358_80796,227,4368_18134,Hazelhatch Station,820,0,4368_7778195_7958025,4368_654 -4358_80796,227,4368_18135,River Forest,839,1,4368_7778195_7958001,4368_657 -4358_80796,228,4368_18136,River Forest,8636,1,4368_7778195_7958001,4368_658 -4358_80796,227,4368_18137,River Forest,835,1,4368_7778195_7958003,4368_657 -4358_80796,228,4368_18138,River Forest,8638,1,4368_7778195_7958001,4368_658 -4358_80796,227,4368_18139,River Forest,846,1,4368_7778195_7958004,4368_657 -4358_80682,227,4368_1814,Harristown,7058,1,4368_7778195_8013046,4368_64 -4358_80796,229,4368_18140,River Forest,14963,1,4368_7778195_7958001,4368_658 -4358_80796,228,4368_18141,River Forest,8640,1,4368_7778195_7958001,4368_659 -4358_80796,227,4368_18142,River Forest,882,1,4368_7778195_7958007,4368_657 -4358_80796,228,4368_18143,River Forest,8664,1,4368_7778195_7958003,4368_658 -4358_80796,229,4368_18144,River Forest,14965,1,4368_7778195_7958001,4368_659 -4358_80796,228,4368_18145,River Forest,8648,1,4368_7778195_7958006,4368_657 -4358_80796,227,4368_18146,River Forest,849,1,4368_7778195_7958008,4368_657 -4358_80796,229,4368_18147,River Forest,14967,1,4368_7778195_7958001,4368_658 -4358_80796,229,4368_18148,River Forest,15019,1,4368_7778195_7958002,4368_657 -4358_80796,228,4368_18149,River Forest,8680,1,4368_7778195_7958004,4368_658 -4358_80682,228,4368_1815,Harristown,13881,1,4368_7778195_8013031,4368_58 -4358_80796,227,4368_18150,River Forest,851,1,4368_7778195_7958008,4368_657 -4358_80796,229,4368_18151,River Forest,15028,1,4368_7778195_7958003,4368_657 -4358_80796,228,4368_18152,River Forest,8682,1,4368_7778195_7958004,4368_658 -4358_80796,227,4368_18153,River Forest,807,1,4368_7778195_7958011,4368_657 -4358_80796,228,4368_18154,River Forest,8643,1,4368_7778195_7958007,4368_657 -4358_80796,229,4368_18155,River Forest,14953,1,4368_7778195_7958004,4368_658 -4358_80796,227,4368_18156,River Forest,889,1,4368_7778195_7958014,4368_657 -4358_80796,228,4368_18157,River Forest,8693,1,4368_7778195_7958009,4368_657 -4358_80796,229,4368_18158,River Forest,14984,1,4368_7778195_7958008,4368_658 -4358_80796,227,4368_18159,River Forest,903,1,4368_7778195_7958012,4368_657 -4358_80682,229,4368_1816,Harristown,19145,1,4368_7778195_8013028,4368_63 -4358_80796,228,4368_18160,River Forest,8646,1,4368_7778195_7958010,4368_657 -4358_80796,229,4368_18161,River Forest,14986,1,4368_7778195_7958008,4368_658 -4358_80796,227,4368_18162,River Forest,899,1,4368_7778195_7958013,4368_657 -4358_80796,229,4368_18163,River Forest,15039,1,4368_7778195_7958007,4368_657 -4358_80796,228,4368_18164,River Forest,8676,1,4368_7778195_7958013,4368_658 -4358_80796,227,4368_18165,River Forest,875,1,4368_7778195_7958017,4368_657 -4358_80796,228,4368_18166,River Forest,8726,1,4368_7778195_7958016,4368_657 -4358_80796,229,4368_18167,River Forest,14974,1,4368_7778195_7958012,4368_658 -4358_80796,227,4368_18168,River Forest,811,1,4368_7778195_7958019,4368_657 -4358_80796,228,4368_18169,River Forest,8728,1,4368_7778195_7958016,4368_657 -4358_80682,227,4368_1817,Harristown,6837,1,4368_7778195_8013047,4368_64 -4358_80796,229,4368_18170,River Forest,14976,1,4368_7778195_7958012,4368_658 -4358_80796,227,4368_18171,River Forest,855,1,4368_7778195_7958020,4368_657 -4358_80796,229,4368_18172,River Forest,14979,1,4368_7778195_7958015,4368_657 -4358_80796,228,4368_18173,River Forest,8659,1,4368_7778195_7958019,4368_658 -4358_80796,227,4368_18174,River Forest,803,1,4368_7778195_7958024,4368_657 -4358_80796,228,4368_18175,River Forest,8713,1,4368_7778195_7958017,4368_657 -4358_80796,229,4368_18176,River Forest,14981,1,4368_7778195_7958015,4368_658 -4358_80796,227,4368_18177,River Forest,910,1,4368_7778195_7958022,4368_657 -4358_80796,229,4368_18178,River Forest,15001,1,4368_7778195_7958018,4368_657 -4358_80796,228,4368_18179,River Forest,8720,1,4368_7778195_7958021,4368_658 -4358_80682,228,4368_1818,Harristown,13673,1,4368_7778195_8013018,4368_58 -4358_80796,227,4368_18180,River Forest,815,1,4368_7778195_7958025,4368_657 -4358_80796,229,4368_18181,River Forest,15003,1,4368_7778195_7958018,4368_657 -4358_80796,228,4368_18182,River Forest,8669,1,4368_7778195_7958023,4368_658 -4358_80796,227,4368_18183,River Forest,817,1,4368_7778195_7958025,4368_657 -4358_80796,229,4368_18184,River Forest,15005,1,4368_7778195_7958018,4368_657 -4358_80796,228,4368_18185,River Forest,8671,1,4368_7778195_7958023,4368_658 -4358_80796,227,4368_18186,River Forest,819,1,4368_7778195_7958025,4368_657 -4358_80796,229,4368_18187,River Forest,14973,1,4368_7778195_7958020,4368_657 -4358_80796,228,4368_18188,River Forest,8673,1,4368_7778195_7958023,4368_657 -4358_80796,227,4368_18189,River Forest,829,1,4368_7778195_7958026,4368_657 -4358_80682,229,4368_1819,Harristown,19060,1,4368_7778195_8013001,4368_63 -4358_80797,227,4368_18190,Hazelhatch Station,866,0,4368_7778195_7958002,4368_660 -4358_80797,227,4368_18191,Hazelhatch Station,834,0,4368_7778195_7958003,4368_660 -4358_80797,228,4368_18192,Hazelhatch Station,8637,0,4368_7778195_7958001,4368_660 -4358_80797,227,4368_18193,Hazelhatch Station,868,0,4368_7778195_7958002,4368_660 -4358_80797,227,4368_18194,Hazelhatch Station,845,0,4368_7778195_7958004,4368_660 -4358_80797,228,4368_18195,Hazelhatch Station,8639,0,4368_7778195_7958001,4368_660 -4358_80797,227,4368_18196,Hazelhatch Station,842,0,4368_7778195_7958001,4368_660 -4358_80797,227,4368_18197,Hazelhatch Station,870,0,4368_7778195_7958002,4368_660 -4358_80797,228,4368_18198,Hazelhatch Station,8663,0,4368_7778195_7958003,4368_660 -4358_80797,229,4368_18199,Hazelhatch Station,14964,0,4368_7778195_7958001,4368_661 -4358_80760,227,4368_182,Shanard Road,1538,1,4368_7778195_9001010,4368_4 -4358_80682,227,4368_1820,Harristown,7013,1,4368_7778195_8013028,4368_64 -4358_80797,227,4368_18200,Hazelhatch Station,893,0,4368_7778195_7958005,4368_660 -4358_80797,227,4368_18201,Hazelhatch Station,848,0,4368_7778195_7958008,4368_660 -4358_80797,228,4368_18202,Hazelhatch Station,8653,0,4368_7778195_7958005,4368_661 -4358_80797,229,4368_18203,Hazelhatch Station,14966,0,4368_7778195_7958001,4368_660 -4358_80797,227,4368_18204,Hazelhatch Station,831,0,4368_7778195_7958006,4368_660 -4358_80797,228,4368_18205,Hazelhatch Station,8679,0,4368_7778195_7958004,4368_661 -4358_80797,228,4368_18206,Hazelhatch Station,8665,0,4368_7778195_7958003,4368_660 -4358_80797,227,4368_18207,Hazelhatch Station,895,0,4368_7778195_7958005,4368_661 -4358_80797,229,4368_18208,Hazelhatch Station,14950,0,4368_7778195_7958004,4368_662 -4358_80797,229,4368_18209,Hazelhatch Station,15027,0,4368_7778195_7958003,4368_660 -4358_80682,227,4368_1821,Harristown,7053,1,4368_7778195_8013044,4368_58 -4358_80797,227,4368_18210,Hazelhatch Station,885,0,4368_7778195_7958007,4368_661 -4358_80797,228,4368_18211,Hazelhatch Station,8655,0,4368_7778195_7958005,4368_662 -4358_80797,227,4368_18212,Hazelhatch Station,833,0,4368_7778195_7958006,4368_660 -4358_80797,228,4368_18213,Hazelhatch Station,8651,0,4368_7778195_7958006,4368_661 -4358_80797,229,4368_18214,Hazelhatch Station,14969,0,4368_7778195_7958001,4368_662 -4358_80797,227,4368_18215,Hazelhatch Station,857,0,4368_7778195_7958009,4368_660 -4358_80797,228,4368_18216,Hazelhatch Station,8642,0,4368_7778195_7958007,4368_661 -4358_80797,229,4368_18217,Hazelhatch Station,14952,0,4368_7778195_7958004,4368_662 -4358_80797,229,4368_18218,Hazelhatch Station,15030,0,4368_7778195_7958006,4368_660 -4358_80797,228,4368_18219,Hazelhatch Station,8657,0,4368_7778195_7958005,4368_661 -4358_80682,228,4368_1822,Harristown,13711,1,4368_7778195_8013022,4368_63 -4358_80797,227,4368_18220,Hazelhatch Station,822,0,4368_7778195_7958010,4368_662 -4358_80797,228,4368_18221,Hazelhatch Station,8692,0,4368_7778195_7958009,4368_660 -4358_80797,227,4368_18222,Hazelhatch Station,896,0,4368_7778195_7958013,4368_661 -4358_80797,229,4368_18223,Hazelhatch Station,14993,0,4368_7778195_7958005,4368_662 -4358_80797,229,4368_18224,Hazelhatch Station,15036,0,4368_7778195_7958007,4368_660 -4358_80797,228,4368_18225,Hazelhatch Station,8667,0,4368_7778195_7958008,4368_661 -4358_80797,227,4368_18226,Hazelhatch Station,902,0,4368_7778195_7958012,4368_662 -4358_80797,229,4368_18227,Hazelhatch Station,15032,0,4368_7778195_7958006,4368_660 -4358_80797,227,4368_18228,Hazelhatch Station,810,0,4368_7778195_7958011,4368_661 -4358_80797,228,4368_18229,Hazelhatch Station,8645,0,4368_7778195_7958010,4368_662 -4358_80682,229,4368_1823,Harristown,19153,1,4368_7778195_8013030,4368_64 -4358_80797,227,4368_18230,Hazelhatch Station,898,0,4368_7778195_7958013,4368_660 -4358_80797,229,4368_18231,Hazelhatch Station,14995,0,4368_7778195_7958005,4368_661 -4358_80797,228,4368_18232,Hazelhatch Station,8699,0,4368_7778195_7958011,4368_662 -4358_80797,229,4368_18233,Hazelhatch Station,15038,0,4368_7778195_7958007,4368_660 -4358_80797,227,4368_18234,Hazelhatch Station,892,0,4368_7778195_7958014,4368_661 -4358_80797,228,4368_18235,Hazelhatch Station,8675,0,4368_7778195_7958012,4368_662 -4358_80797,228,4368_18236,Hazelhatch Station,8696,0,4368_7778195_7958009,4368_660 -4358_80797,227,4368_18237,Hazelhatch Station,872,0,4368_7778195_7958015,4368_661 -4358_80797,229,4368_18238,Hazelhatch Station,15034,0,4368_7778195_7958006,4368_662 -4358_80797,229,4368_18239,Hazelhatch Station,14997,0,4368_7778195_7958009,4368_660 -4358_80682,229,4368_1824,Harristown,19157,1,4368_7778195_8013031,4368_58 -4358_80797,228,4368_18240,Hazelhatch Station,8701,0,4368_7778195_7958011,4368_661 -4358_80797,227,4368_18241,Hazelhatch Station,906,0,4368_7778195_7958012,4368_662 -4358_80797,227,4368_18242,Hazelhatch Station,880,0,4368_7778195_7958016,4368_660 -4358_80797,229,4368_18243,Hazelhatch Station,14960,0,4368_7778195_7958011,4368_661 -4358_80797,228,4368_18244,Hazelhatch Station,8703,0,4368_7778195_7958014,4368_662 -4358_80797,227,4368_18245,Hazelhatch Station,874,0,4368_7778195_7958015,4368_660 -4358_80797,229,4368_18246,Hazelhatch Station,14956,0,4368_7778195_7958010,4368_661 -4358_80797,228,4368_18247,Hazelhatch Station,8708,0,4368_7778195_7958015,4368_662 -4358_80797,228,4368_18248,Hazelhatch Station,8710,0,4368_7778195_7958017,4368_660 -4358_80797,229,4368_18249,Hazelhatch Station,14999,0,4368_7778195_7958009,4368_661 -4358_80682,228,4368_1825,Harristown,13758,1,4368_7778195_8013023,4368_63 -4358_80797,227,4368_18250,Hazelhatch Station,854,0,4368_7778195_7958020,4368_662 -4358_80797,228,4368_18251,Hazelhatch Station,8658,0,4368_7778195_7958019,4368_660 -4358_80797,229,4368_18252,Hazelhatch Station,14962,0,4368_7778195_7958011,4368_661 -4358_80797,227,4368_18253,Hazelhatch Station,907,0,4368_7778195_7958022,4368_662 -4358_80797,228,4368_18254,Hazelhatch Station,8706,0,4368_7778195_7958018,4368_660 -4358_80797,227,4368_18255,Hazelhatch Station,878,0,4368_7778195_7958017,4368_661 -4358_80797,229,4368_18256,Hazelhatch Station,14990,0,4368_7778195_7958013,4368_662 -4358_80797,228,4368_18257,Hazelhatch Station,8712,0,4368_7778195_7958017,4368_660 -4358_80797,227,4368_18258,Hazelhatch Station,888,0,4368_7778195_7958021,4368_661 -4358_80797,229,4368_18259,Hazelhatch Station,14983,0,4368_7778195_7958014,4368_662 -4358_80682,227,4368_1826,Harristown,7046,1,4368_7778195_8013040,4368_64 -4358_80797,229,4368_18260,Hazelhatch Station,14957,0,4368_7778195_7958016,4368_660 -4358_80797,228,4368_18261,Hazelhatch Station,8715,0,4368_7778195_7958020,4368_660 -4358_80797,227,4368_18262,Hazelhatch Station,909,0,4368_7778195_7958022,4368_661 -4358_80797,229,4368_18263,Hazelhatch Station,15022,0,4368_7778195_7958017,4368_660 -4358_80797,227,4368_18264,Hazelhatch Station,865,0,4368_7778195_7958023,4368_660 -4358_80797,228,4368_18265,Hazelhatch Station,8719,0,4368_7778195_7958021,4368_661 -4358_80797,227,4368_18266,Hazelhatch Station,814,0,4368_7778195_7958025,4368_660 -4358_80797,229,4368_18267,Hazelhatch Station,14959,0,4368_7778195_7958016,4368_661 -4358_80797,228,4368_18268,Hazelhatch Station,8662,0,4368_7778195_7958019,4368_662 -4358_80797,228,4368_18269,Hazelhatch Station,8717,0,4368_7778195_7958020,4368_660 -4358_80682,228,4368_1827,Harristown,13801,1,4368_7778195_8013024,4368_58 -4358_80797,229,4368_18270,Hazelhatch Station,15024,0,4368_7778195_7958017,4368_661 -4358_80797,227,4368_18271,Hazelhatch Station,806,0,4368_7778195_7958024,4368_662 -4358_80797,229,4368_18272,Hazelhatch Station,15009,0,4368_7778195_7958019,4368_660 -4358_80797,228,4368_18273,Hazelhatch Station,8631,0,4368_7778195_7958022,4368_661 -4358_80797,227,4368_18274,Hazelhatch Station,824,0,4368_7778195_7958026,4368_662 -4358_80797,228,4368_18275,Hazelhatch Station,8722,0,4368_7778195_7958024,4368_660 -4358_80797,227,4368_18276,Hazelhatch Station,859,0,4368_7778195_7958027,4368_661 -4358_80797,229,4368_18277,Hazelhatch Station,14970,0,4368_7778195_7958020,4368_662 -4358_80797,229,4368_18278,Hazelhatch Station,15011,0,4368_7778195_7958019,4368_660 -4358_80797,228,4368_18279,Hazelhatch Station,8633,0,4368_7778195_7958022,4368_661 -4358_80682,229,4368_1828,Harristown,19115,1,4368_7778195_8013019,4368_63 -4358_80797,227,4368_18280,Hazelhatch Station,826,0,4368_7778195_7958026,4368_662 -4358_80797,228,4368_18281,Hazelhatch Station,8724,0,4368_7778195_7958024,4368_660 -4358_80797,227,4368_18282,Hazelhatch Station,861,0,4368_7778195_7958027,4368_661 -4358_80797,229,4368_18283,Hazelhatch Station,14972,0,4368_7778195_7958020,4368_662 -4358_80797,227,4368_18284,Hazelhatch Station,828,0,4368_7778195_7958026,4368_660 -4358_80797,229,4368_18285,Hazelhatch Station,15013,0,4368_7778195_7958019,4368_660 -4358_80797,228,4368_18286,Hazelhatch Station,8635,0,4368_7778195_7958022,4368_661 -4358_80797,227,4368_18287,River Forest,867,1,4368_7778195_7958002,4368_663 -4358_80797,228,4368_18288,River Forest,8685,1,4368_7778195_7958002,4368_663 -4358_80797,227,4368_18289,River Forest,844,1,4368_7778195_7958004,4368_663 -4358_80682,227,4368_1829,Harristown,7024,1,4368_7778195_8013031,4368_64 -4358_80797,227,4368_18290,River Forest,841,1,4368_7778195_7958001,4368_663 -4358_80797,227,4368_18291,River Forest,869,1,4368_7778195_7958002,4368_663 -4358_80797,228,4368_18292,River Forest,8687,1,4368_7778195_7958002,4368_663 -4358_80797,227,4368_18293,River Forest,6103,1,4368_7778195_7872131,4368_663 -4358_80797,227,4368_18294,River Forest,837,1,4368_7778195_7958003,4368_663 -4358_80797,227,4368_18295,River Forest,843,1,4368_7778195_7958001,4368_663 -4358_80797,228,4368_18296,River Forest,8689,1,4368_7778195_7958002,4368_663 -4358_80797,229,4368_18297,River Forest,15015,1,4368_7778195_7958002,4368_663 -4358_80797,227,4368_18298,River Forest,830,1,4368_7778195_7958006,4368_663 -4358_80797,228,4368_18299,River Forest,8678,1,4368_7778195_7958004,4368_663 -4358_80760,228,4368_183,Shanard Road,9311,1,4368_7778195_9001002,4368_4 -4358_80682,227,4368_1830,Harristown,7041,1,4368_7778195_8013038,4368_58 -4358_80797,227,4368_18300,River Forest,894,1,4368_7778195_7958005,4368_663 -4358_80797,229,4368_18301,River Forest,15017,1,4368_7778195_7958002,4368_663 -4358_80797,228,4368_18302,River Forest,8691,1,4368_7778195_7958002,4368_663 -4358_80797,227,4368_18303,River Forest,884,1,4368_7778195_7958007,4368_663 -4358_80797,228,4368_18304,River Forest,8654,1,4368_7778195_7958005,4368_663 -4358_80797,229,4368_18305,River Forest,15026,1,4368_7778195_7958003,4368_663 -4358_80797,227,4368_18306,River Forest,832,1,4368_7778195_7958006,4368_663 -4358_80797,228,4368_18307,River Forest,8650,1,4368_7778195_7958006,4368_663 -4358_80797,229,4368_18308,River Forest,14968,1,4368_7778195_7958001,4368_663 -4358_80797,227,4368_18309,River Forest,856,1,4368_7778195_7958009,4368_663 -4358_80682,228,4368_1831,Harristown,13838,1,4368_7778195_8013025,4368_63 -4358_80797,228,4368_18310,River Forest,8641,1,4368_7778195_7958007,4368_663 -4358_80797,229,4368_18311,River Forest,14951,1,4368_7778195_7958004,4368_663 -4358_80797,228,4368_18312,River Forest,8656,1,4368_7778195_7958005,4368_663 -4358_80797,229,4368_18313,River Forest,15021,1,4368_7778195_7958002,4368_663 -4358_80797,227,4368_18314,River Forest,821,1,4368_7778195_7958010,4368_664 -4358_80797,228,4368_18315,River Forest,8652,1,4368_7778195_7958006,4368_663 -4358_80797,227,4368_18316,River Forest,853,1,4368_7778195_7958008,4368_663 -4358_80797,229,4368_18317,River Forest,14992,1,4368_7778195_7958005,4368_663 -4358_80797,228,4368_18318,River Forest,8666,1,4368_7778195_7958008,4368_663 -4358_80797,227,4368_18319,River Forest,901,1,4368_7778195_7958012,4368_663 -4358_80682,229,4368_1832,Harristown,19126,1,4368_7778195_8013021,4368_64 -4358_80797,229,4368_18320,River Forest,15035,1,4368_7778195_7958007,4368_663 -4358_80797,228,4368_18321,River Forest,8644,1,4368_7778195_7958010,4368_663 -4358_80797,227,4368_18322,River Forest,809,1,4368_7778195_7958011,4368_663 -4358_80797,229,4368_18323,River Forest,15031,1,4368_7778195_7958006,4368_663 -4358_80797,228,4368_18324,River Forest,8698,1,4368_7778195_7958011,4368_663 -4358_80797,227,4368_18325,River Forest,897,1,4368_7778195_7958013,4368_663 -4358_80797,229,4368_18326,River Forest,14994,1,4368_7778195_7958005,4368_663 -4358_80797,227,4368_18327,River Forest,891,1,4368_7778195_7958014,4368_663 -4358_80797,228,4368_18328,River Forest,8674,1,4368_7778195_7958012,4368_663 -4358_80797,229,4368_18329,River Forest,15037,1,4368_7778195_7958007,4368_663 -4358_80682,228,4368_1833,Harristown,13864,1,4368_7778195_8013026,4368_58 -4358_80797,227,4368_18330,River Forest,871,1,4368_7778195_7958015,4368_663 -4358_80797,228,4368_18331,River Forest,8695,1,4368_7778195_7958009,4368_663 -4358_80797,229,4368_18332,River Forest,15033,1,4368_7778195_7958006,4368_663 -4358_80797,227,4368_18333,River Forest,905,1,4368_7778195_7958012,4368_663 -4358_80797,228,4368_18334,River Forest,8700,1,4368_7778195_7958011,4368_663 -4358_80797,229,4368_18335,River Forest,14996,1,4368_7778195_7958009,4368_663 -4358_80797,227,4368_18336,River Forest,879,1,4368_7778195_7958016,4368_663 -4358_80797,228,4368_18337,River Forest,8702,1,4368_7778195_7958014,4368_663 -4358_80797,229,4368_18338,River Forest,14988,1,4368_7778195_7958008,4368_663 -4358_80797,227,4368_18339,River Forest,873,1,4368_7778195_7958015,4368_663 -4358_80682,227,4368_1834,Harristown,7049,1,4368_7778195_8013041,4368_63 -4358_80797,228,4368_18340,River Forest,8707,1,4368_7778195_7958015,4368_663 -4358_80797,229,4368_18341,River Forest,14955,1,4368_7778195_7958010,4368_663 -4358_80797,227,4368_18342,River Forest,886,1,4368_7778195_7958018,4368_663 -4358_80797,228,4368_18343,River Forest,8709,1,4368_7778195_7958017,4368_663 -4358_80797,229,4368_18344,River Forest,14998,1,4368_7778195_7958009,4368_663 -4358_80797,227,4368_18345,River Forest,881,1,4368_7778195_7958016,4368_663 -4358_80797,229,4368_18346,River Forest,14961,1,4368_7778195_7958011,4368_663 -4358_80797,228,4368_18347,River Forest,8704,1,4368_7778195_7958014,4368_663 -4358_80797,227,4368_18348,River Forest,877,1,4368_7778195_7958017,4368_663 -4358_80797,229,4368_18349,River Forest,14989,1,4368_7778195_7958013,4368_663 -4358_80682,229,4368_1835,Harristown,19169,1,4368_7778195_8013038,4368_64 -4358_80797,228,4368_18350,River Forest,8705,1,4368_7778195_7958018,4368_663 -4358_80797,227,4368_18351,River Forest,887,1,4368_7778195_7958021,4368_663 -4358_80797,228,4368_18352,River Forest,8711,1,4368_7778195_7958017,4368_663 -4358_80797,229,4368_18353,River Forest,14982,1,4368_7778195_7958014,4368_663 -4358_80797,227,4368_18354,River Forest,908,1,4368_7778195_7958022,4368_663 -4358_80797,228,4368_18355,River Forest,8714,1,4368_7778195_7958020,4368_663 -4358_80797,229,4368_18356,River Forest,14978,1,4368_7778195_7958012,4368_663 -4358_80797,227,4368_18357,River Forest,864,1,4368_7778195_7958023,4368_663 -4358_80797,228,4368_18358,River Forest,8718,1,4368_7778195_7958021,4368_663 -4358_80797,229,4368_18359,River Forest,14991,1,4368_7778195_7958013,4368_663 -4358_80682,228,4368_1836,Harristown,13873,1,4368_7778195_8013027,4368_58 -4358_80797,227,4368_18360,River Forest,813,1,4368_7778195_7958025,4368_663 -4358_80797,228,4368_18361,River Forest,8661,1,4368_7778195_7958019,4368_663 -4358_80797,229,4368_18362,River Forest,14958,1,4368_7778195_7958016,4368_663 -4358_80797,227,4368_18363,River Forest,805,1,4368_7778195_7958024,4368_663 -4358_80797,228,4368_18364,River Forest,8716,1,4368_7778195_7958020,4368_663 -4358_80797,229,4368_18365,River Forest,15023,1,4368_7778195_7958017,4368_663 -4358_80797,227,4368_18366,River Forest,823,1,4368_7778195_7958026,4368_663 -4358_80797,229,4368_18367,River Forest,15008,1,4368_7778195_7958019,4368_663 -4358_80797,228,4368_18368,River Forest,8630,1,4368_7778195_7958022,4368_664 -4358_80797,227,4368_18369,River Forest,858,1,4368_7778195_7958027,4368_663 -4358_80682,227,4368_1837,Harristown,6983,1,4368_7778195_8013019,4368_63 -4358_80797,229,4368_18370,River Forest,15025,1,4368_7778195_7958017,4368_664 -4358_80797,228,4368_18371,River Forest,8721,1,4368_7778195_7958024,4368_663 -4358_80797,229,4368_18372,River Forest,15010,1,4368_7778195_7958019,4368_663 -4358_80797,228,4368_18373,River Forest,8632,1,4368_7778195_7958022,4368_663 -4358_80797,227,4368_18374,River Forest,825,1,4368_7778195_7958026,4368_664 -4358_80797,229,4368_18375,River Forest,14971,1,4368_7778195_7958020,4368_663 -4358_80797,228,4368_18376,River Forest,8723,1,4368_7778195_7958024,4368_663 -4358_80797,227,4368_18377,River Forest,860,1,4368_7778195_7958027,4368_663 -4358_80797,229,4368_18378,River Forest,15012,1,4368_7778195_7958019,4368_663 -4358_80797,228,4368_18379,River Forest,8634,1,4368_7778195_7958022,4368_663 -4358_80682,229,4368_1838,Harristown,19150,1,4368_7778195_8013029,4368_64 -4358_80797,227,4368_18380,River Forest,827,1,4368_7778195_7958026,4368_663 -4358_80797,227,4368_18381,River Forest,862,1,4368_7778195_7958027,4368_663 -4358_80797,229,4368_18382,River Forest,15007,1,4368_7778195_7958018,4368_663 -4358_80797,228,4368_18383,River Forest,8725,1,4368_7778195_7958024,4368_663 -4358_80786,228,4368_18384,Blanchardstown SC,13935,0,4368_7778195_8534001,4368_665 -4358_80786,229,4368_18385,Blanchardstown SC,18908,0,4368_7778195_8534001,4368_665 -4358_80786,227,4368_18386,Blanchardstown SC,7335,0,4368_7778195_8534002,4368_666 -4358_80786,228,4368_18387,Blanchardstown SC,13956,0,4368_7778195_8534003,4368_665 -4358_80786,227,4368_18388,Blanchardstown SC,7361,0,4368_7778195_8534004,4368_665 -4358_80786,227,4368_18389,Blanchardstown SC,7373,0,4368_7778195_8534006,4368_665 -4358_80682,228,4368_1839,Harristown,13876,1,4368_7778195_8013028,4368_58 -4358_80786,228,4368_18390,Blanchardstown SC,13988,0,4368_7778195_8534006,4368_665 -4358_80786,229,4368_18391,Blanchardstown SC,18944,0,4368_7778195_8534004,4368_665 -4358_80786,227,4368_18392,Blanchardstown SC,7383,0,4368_7778195_8534008,4368_665 -4358_80786,228,4368_18393,Blanchardstown SC,13998,0,4368_7778195_8534007,4368_665 -4358_80786,227,4368_18394,Blanchardstown SC,7398,0,4368_7778195_8534010,4368_665 -4358_80786,228,4368_18395,Blanchardstown SC,14016,0,4368_7778195_8534009,4368_665 -4358_80786,227,4368_18396,Blanchardstown SC,7408,0,4368_7778195_8534012,4368_665 -4358_80786,229,4368_18397,Blanchardstown SC,18924,0,4368_7778195_8534002,4368_666 -4358_80786,228,4368_18398,Blanchardstown SC,13946,0,4368_7778195_8534002,4368_665 -4358_80786,227,4368_18399,Blanchardstown SC,7421,0,4368_7778195_8534013,4368_665 -4358_80760,227,4368_184,Shanard Road,1859,1,4368_7778195_9001007,4368_5 -4358_80682,227,4368_1840,Harristown,6881,1,4368_7778195_8013008,4368_63 -4358_80786,227,4368_18400,Blanchardstown SC,7333,0,4368_7778195_8534001,4368_665 -4358_80786,228,4368_18401,Blanchardstown SC,13971,0,4368_7778195_8534004,4368_665 -4358_80786,229,4368_18402,Blanchardstown SC,18935,0,4368_7778195_8534003,4368_665 -4358_80786,227,4368_18403,Blanchardstown SC,7348,0,4368_7778195_8534003,4368_665 -4358_80786,228,4368_18404,Blanchardstown SC,13981,0,4368_7778195_8534005,4368_665 -4358_80786,227,4368_18405,Blanchardstown SC,7371,0,4368_7778195_8534005,4368_665 -4358_80786,228,4368_18406,Blanchardstown SC,14004,0,4368_7778195_8534008,4368_665 -4358_80786,229,4368_18407,Blanchardstown SC,18910,0,4368_7778195_8534001,4368_665 -4358_80786,227,4368_18408,Blanchardstown SC,7895,0,4368_7778195_8534007,4368_666 -4358_80786,228,4368_18409,Blanchardstown SC,13937,0,4368_7778195_8534001,4368_665 -4358_80682,229,4368_1841,Harristown,19138,1,4368_7778195_8013025,4368_64 -4358_80786,227,4368_18410,Blanchardstown SC,7387,0,4368_7778195_8534009,4368_665 -4358_80786,227,4368_18411,Blanchardstown SC,7444,0,4368_7778195_8534015,4368_665 -4358_80786,228,4368_18412,Blanchardstown SC,13958,0,4368_7778195_8534003,4368_665 -4358_80786,229,4368_18413,Blanchardstown SC,18946,0,4368_7778195_8534004,4368_665 -4358_80786,227,4368_18414,Blanchardstown SC,7454,0,4368_7778195_8534016,4368_665 -4358_80786,228,4368_18415,Blanchardstown SC,13990,0,4368_7778195_8534006,4368_665 -4358_80786,227,4368_18416,Blanchardstown SC,7407,0,4368_7778195_8534011,4368_665 -4358_80786,229,4368_18417,Blanchardstown SC,18955,0,4368_7778195_8534006,4368_665 -4358_80786,228,4368_18418,Blanchardstown SC,14000,0,4368_7778195_8534007,4368_665 -4358_80786,227,4368_18419,Blanchardstown SC,7337,0,4368_7778195_8534002,4368_665 -4358_80758,228,4368_1842,Castle Ave,12673,0,4368_7778195_6130001,4368_65 -4358_80786,228,4368_18420,Blanchardstown SC,14018,0,4368_7778195_8534009,4368_665 -4358_80786,229,4368_18421,Blanchardstown SC,18926,0,4368_7778195_8534002,4368_666 -4358_80786,227,4368_18422,Blanchardstown SC,7363,0,4368_7778195_8534004,4368_665 -4358_80786,228,4368_18423,Blanchardstown SC,14030,0,4368_7778195_8534011,4368_665 -4358_80786,227,4368_18424,Blanchardstown SC,7375,0,4368_7778195_8534006,4368_665 -4358_80786,229,4368_18425,Blanchardstown SC,19035,0,4368_7778195_8534017,4368_665 -4358_80786,228,4368_18426,Blanchardstown SC,13948,0,4368_7778195_8534002,4368_665 -4358_80786,227,4368_18427,Blanchardstown SC,7385,0,4368_7778195_8534008,4368_665 -4358_80786,228,4368_18428,Blanchardstown SC,13973,0,4368_7778195_8534004,4368_665 -4358_80786,227,4368_18429,Blanchardstown SC,7400,0,4368_7778195_8534010,4368_665 -4358_80758,227,4368_1843,Castle Ave,5668,0,4368_7778195_6130002,4368_66 -4358_80786,229,4368_18430,Blanchardstown SC,18965,0,4368_7778195_8534007,4368_665 -4358_80786,228,4368_18431,Blanchardstown SC,13983,0,4368_7778195_8534005,4368_665 -4358_80786,227,4368_18432,Blanchardstown SC,7434,0,4368_7778195_8534014,4368_665 -4358_80786,228,4368_18433,Blanchardstown SC,14006,0,4368_7778195_8534008,4368_665 -4358_80786,229,4368_18434,Blanchardstown SC,18937,0,4368_7778195_8534003,4368_665 -4358_80786,227,4368_18435,Blanchardstown SC,7410,0,4368_7778195_8534012,4368_665 -4358_80786,228,4368_18436,Blanchardstown SC,14020,0,4368_7778195_8534010,4368_665 -4358_80786,227,4368_18437,Blanchardstown SC,7423,0,4368_7778195_8534013,4368_665 -4358_80786,229,4368_18438,Blanchardstown SC,18912,0,4368_7778195_8534001,4368_665 -4358_80786,228,4368_18439,Blanchardstown SC,13939,0,4368_7778195_8534001,4368_665 -4358_80758,228,4368_1844,Castle Ave,12760,0,4368_7778195_6130003,4368_65 -4358_80786,227,4368_18440,Blanchardstown SC,7462,0,4368_7778195_8534017,4368_665 -4358_80786,228,4368_18441,Blanchardstown SC,14063,0,4368_7778195_8534014,4368_665 -4358_80786,229,4368_18442,Blanchardstown SC,18948,0,4368_7778195_8534004,4368_665 -4358_80786,227,4368_18443,Blanchardstown SC,7350,0,4368_7778195_8534003,4368_665 -4358_80786,228,4368_18444,Blanchardstown SC,13960,0,4368_7778195_8534003,4368_665 -4358_80786,227,4368_18445,Blanchardstown SC,7468,0,4368_7778195_8534018,4368_665 -4358_80786,229,4368_18446,Blanchardstown SC,18973,0,4368_7778195_8534008,4368_666 -4358_80786,228,4368_18447,Blanchardstown SC,13992,0,4368_7778195_8534006,4368_665 -4358_80786,227,4368_18448,Blanchardstown SC,7897,0,4368_7778195_8534007,4368_665 -4358_80786,229,4368_18449,Blanchardstown SC,19019,0,4368_7778195_8534012,4368_665 -4358_80758,227,4368_1845,Castle Ave,5792,0,4368_7778195_6130001,4368_65 -4358_80786,228,4368_18450,Blanchardstown SC,14042,0,4368_7778195_8534012,4368_665 -4358_80786,227,4368_18451,Blanchardstown SC,7389,0,4368_7778195_8534009,4368_665 -4358_80786,229,4368_18452,Blanchardstown SC,18957,0,4368_7778195_8534006,4368_665 -4358_80786,228,4368_18453,Blanchardstown SC,14094,0,4368_7778195_8534016,4368_665 -4358_80786,227,4368_18454,Blanchardstown SC,7446,0,4368_7778195_8534015,4368_665 -4358_80786,228,4368_18455,Blanchardstown SC,14002,0,4368_7778195_8534007,4368_665 -4358_80786,229,4368_18456,Blanchardstown SC,18928,0,4368_7778195_8534002,4368_665 -4358_80786,227,4368_18457,Blanchardstown SC,7456,0,4368_7778195_8534016,4368_665 -4358_80786,228,4368_18458,Blanchardstown SC,14048,0,4368_7778195_8534013,4368_665 -4358_80786,227,4368_18459,Blanchardstown SC,7339,0,4368_7778195_8534002,4368_665 -4358_80758,228,4368_1846,Castle Ave,12770,0,4368_7778195_6130002,4368_65 -4358_80786,229,4368_18460,Blanchardstown SC,19037,0,4368_7778195_8534017,4368_666 -4358_80786,228,4368_18461,Blanchardstown SC,14032,0,4368_7778195_8534011,4368_665 -4358_80786,227,4368_18462,Blanchardstown SC,7365,0,4368_7778195_8534004,4368_665 -4358_80786,229,4368_18463,Blanchardstown SC,18967,0,4368_7778195_8534007,4368_665 -4358_80786,228,4368_18464,Blanchardstown SC,13950,0,4368_7778195_8534002,4368_665 -4358_80786,227,4368_18465,Blanchardstown SC,7377,0,4368_7778195_8534006,4368_665 -4358_80786,229,4368_18466,Blanchardstown SC,18984,0,4368_7778195_8534009,4368_665 -4358_80786,228,4368_18467,Blanchardstown SC,13975,0,4368_7778195_8534004,4368_665 -4358_80786,227,4368_18468,Blanchardstown SC,7402,0,4368_7778195_8534010,4368_665 -4358_80786,228,4368_18469,Blanchardstown SC,13985,0,4368_7778195_8534005,4368_665 -4358_80758,227,4368_1847,Castle Ave,5705,0,4368_7778195_6130003,4368_65 -4358_80786,229,4368_18470,Blanchardstown SC,18939,0,4368_7778195_8534003,4368_665 -4358_80786,227,4368_18471,Blanchardstown SC,7436,0,4368_7778195_8534014,4368_665 -4358_80786,228,4368_18472,Blanchardstown SC,14080,0,4368_7778195_8534015,4368_665 -4358_80786,229,4368_18473,Blanchardstown SC,18914,0,4368_7778195_8534001,4368_665 -4358_80786,227,4368_18474,Blanchardstown SC,7412,0,4368_7778195_8534012,4368_666 -4358_80786,228,4368_18475,Blanchardstown SC,14008,0,4368_7778195_8534008,4368_665 -4358_80786,227,4368_18476,Blanchardstown SC,7425,0,4368_7778195_8534013,4368_665 -4358_80786,229,4368_18477,Blanchardstown SC,19005,0,4368_7778195_8534011,4368_665 -4358_80786,228,4368_18478,Blanchardstown SC,14022,0,4368_7778195_8534010,4368_665 -4358_80786,227,4368_18479,Blanchardstown SC,7494,0,4368_7778195_8534020,4368_665 -4358_80758,228,4368_1848,Castle Ave,12817,0,4368_7778195_6130005,4368_65 -4358_80786,229,4368_18480,Blanchardstown SC,18950,0,4368_7778195_8534004,4368_665 -4358_80786,228,4368_18481,Blanchardstown SC,13941,0,4368_7778195_8534001,4368_665 -4358_80786,227,4368_18482,Blanchardstown SC,7464,0,4368_7778195_8534017,4368_665 -4358_80786,228,4368_18483,Blanchardstown SC,14065,0,4368_7778195_8534014,4368_665 -4358_80786,229,4368_18484,Blanchardstown SC,18975,0,4368_7778195_8534008,4368_665 -4358_80786,227,4368_18485,Blanchardstown SC,7352,0,4368_7778195_8534003,4368_665 -4358_80786,228,4368_18486,Blanchardstown SC,13962,0,4368_7778195_8534003,4368_665 -4358_80786,227,4368_18487,Blanchardstown SC,7470,0,4368_7778195_8534018,4368_665 -4358_80786,229,4368_18488,Blanchardstown SC,19021,0,4368_7778195_8534012,4368_666 -4358_80786,228,4368_18489,Blanchardstown SC,13994,0,4368_7778195_8534006,4368_665 -4358_80758,227,4368_1849,Castle Ave,5938,0,4368_7778195_6130006,4368_65 -4358_80786,227,4368_18490,Blanchardstown SC,7899,0,4368_7778195_8534007,4368_665 -4358_80786,229,4368_18491,Blanchardstown SC,18959,0,4368_7778195_8534006,4368_665 -4358_80786,228,4368_18492,Blanchardstown SC,14044,0,4368_7778195_8534012,4368_665 -4358_80786,227,4368_18493,Blanchardstown SC,7391,0,4368_7778195_8534009,4368_665 -4358_80786,229,4368_18494,Blanchardstown SC,18992,0,4368_7778195_8534010,4368_665 -4358_80786,228,4368_18495,Blanchardstown SC,14096,0,4368_7778195_8534016,4368_665 -4358_80786,227,4368_18496,Blanchardstown SC,7448,0,4368_7778195_8534015,4368_665 -4358_80786,228,4368_18497,Blanchardstown SC,14102,0,4368_7778195_8534017,4368_665 -4358_80786,229,4368_18498,Blanchardstown SC,18930,0,4368_7778195_8534002,4368_665 -4358_80786,227,4368_18499,Blanchardstown SC,7458,0,4368_7778195_8534016,4368_665 -4358_80760,227,4368_185,Shanard Road,1632,1,4368_7778195_9001011,4368_4 -4358_80758,228,4368_1850,Castle Ave,12675,0,4368_7778195_6130001,4368_65 -4358_80786,228,4368_18500,Blanchardstown SC,14116,0,4368_7778195_8534018,4368_665 -4358_80786,227,4368_18501,Blanchardstown SC,7483,0,4368_7778195_8534019,4368_665 -4358_80786,229,4368_18502,Blanchardstown SC,19039,0,4368_7778195_8534017,4368_666 -4358_80786,228,4368_18503,Blanchardstown SC,14050,0,4368_7778195_8534013,4368_665 -4358_80786,227,4368_18504,Blanchardstown SC,7341,0,4368_7778195_8534002,4368_665 -4358_80786,229,4368_18505,Blanchardstown SC,18969,0,4368_7778195_8534007,4368_665 -4358_80786,228,4368_18506,Blanchardstown SC,14034,0,4368_7778195_8534011,4368_665 -4358_80786,227,4368_18507,Blanchardstown SC,7367,0,4368_7778195_8534004,4368_665 -4358_80786,229,4368_18508,Blanchardstown SC,18986,0,4368_7778195_8534009,4368_665 -4358_80786,228,4368_18509,Blanchardstown SC,13952,0,4368_7778195_8534002,4368_665 -4358_80758,227,4368_1851,Castle Ave,5820,0,4368_7778195_6130004,4368_65 -4358_80786,227,4368_18510,Blanchardstown SC,7379,0,4368_7778195_8534006,4368_665 -4358_80786,228,4368_18511,Blanchardstown SC,13977,0,4368_7778195_8534004,4368_665 -4358_80786,229,4368_18512,Blanchardstown SC,18941,0,4368_7778195_8534003,4368_665 -4358_80786,227,4368_18513,Blanchardstown SC,7404,0,4368_7778195_8534010,4368_665 -4358_80786,228,4368_18514,Blanchardstown SC,13987,0,4368_7778195_8534005,4368_665 -4358_80786,229,4368_18515,Blanchardstown SC,18916,0,4368_7778195_8534001,4368_665 -4358_80786,227,4368_18516,Blanchardstown SC,7438,0,4368_7778195_8534014,4368_666 -4358_80786,228,4368_18517,Blanchardstown SC,14082,0,4368_7778195_8534015,4368_665 -4358_80786,227,4368_18518,Blanchardstown SC,7414,0,4368_7778195_8534012,4368_665 -4358_80786,229,4368_18519,Blanchardstown SC,19007,0,4368_7778195_8534011,4368_665 -4358_80758,227,4368_1852,Castle Ave,5825,0,4368_7778195_6130005,4368_65 -4358_80786,228,4368_18520,Blanchardstown SC,14010,0,4368_7778195_8534008,4368_665 -4358_80786,227,4368_18521,Blanchardstown SC,7427,0,4368_7778195_8534013,4368_665 -4358_80786,229,4368_18522,Blanchardstown SC,18952,0,4368_7778195_8534004,4368_665 -4358_80786,228,4368_18523,Blanchardstown SC,14024,0,4368_7778195_8534010,4368_665 -4358_80786,227,4368_18524,Blanchardstown SC,7496,0,4368_7778195_8534020,4368_665 -4358_80786,228,4368_18525,Blanchardstown SC,13943,0,4368_7778195_8534001,4368_665 -4358_80786,229,4368_18526,Blanchardstown SC,18977,0,4368_7778195_8534008,4368_665 -4358_80786,227,4368_18527,Blanchardstown SC,7501,0,4368_7778195_8534021,4368_665 -4358_80786,228,4368_18528,Blanchardstown SC,14067,0,4368_7778195_8534014,4368_665 -4358_80786,229,4368_18529,Blanchardstown SC,19023,0,4368_7778195_8534012,4368_665 -4358_80758,228,4368_1853,Castle Ave,12799,0,4368_7778195_6130004,4368_65 -4358_80786,227,4368_18530,Blanchardstown SC,7466,0,4368_7778195_8534017,4368_666 -4358_80786,228,4368_18531,Blanchardstown SC,13964,0,4368_7778195_8534003,4368_665 -4358_80786,227,4368_18532,Blanchardstown SC,7354,0,4368_7778195_8534003,4368_665 -4358_80786,229,4368_18533,Blanchardstown SC,18961,0,4368_7778195_8534006,4368_665 -4358_80786,228,4368_18534,Blanchardstown SC,13996,0,4368_7778195_8534006,4368_665 -4358_80786,227,4368_18535,Blanchardstown SC,7472,0,4368_7778195_8534018,4368_665 -4358_80786,229,4368_18536,Blanchardstown SC,18994,0,4368_7778195_8534010,4368_665 -4358_80786,228,4368_18537,Blanchardstown SC,14046,0,4368_7778195_8534012,4368_665 -4358_80786,227,4368_18538,Blanchardstown SC,7901,0,4368_7778195_8534007,4368_665 -4358_80786,228,4368_18539,Blanchardstown SC,14098,0,4368_7778195_8534016,4368_665 -4358_80758,229,4368_1854,Castle Ave,18048,0,4368_7778195_6130001,4368_65 -4358_80786,229,4368_18540,Blanchardstown SC,18932,0,4368_7778195_8534002,4368_665 -4358_80786,227,4368_18541,Blanchardstown SC,7393,0,4368_7778195_8534009,4368_665 -4358_80786,228,4368_18542,Blanchardstown SC,14104,0,4368_7778195_8534017,4368_665 -4358_80786,227,4368_18543,Blanchardstown SC,7450,0,4368_7778195_8534015,4368_665 -4358_80786,229,4368_18544,Blanchardstown SC,19041,0,4368_7778195_8534017,4368_666 -4358_80786,228,4368_18545,Blanchardstown SC,14118,0,4368_7778195_8534018,4368_665 -4358_80786,227,4368_18546,Blanchardstown SC,7460,0,4368_7778195_8534016,4368_665 -4358_80786,229,4368_18547,Blanchardstown SC,18971,0,4368_7778195_8534007,4368_665 -4358_80786,228,4368_18548,Blanchardstown SC,14052,0,4368_7778195_8534013,4368_665 -4358_80786,227,4368_18549,Blanchardstown SC,7485,0,4368_7778195_8534019,4368_665 -4358_80758,227,4368_1855,Castle Ave,5670,0,4368_7778195_6130002,4368_65 -4358_80786,229,4368_18550,Blanchardstown SC,18988,0,4368_7778195_8534009,4368_665 -4358_80786,228,4368_18551,Blanchardstown SC,14036,0,4368_7778195_8534011,4368_665 -4358_80786,227,4368_18552,Blanchardstown SC,7343,0,4368_7778195_8534002,4368_665 -4358_80786,228,4368_18553,Blanchardstown SC,13954,0,4368_7778195_8534002,4368_665 -4358_80786,229,4368_18554,Blanchardstown SC,18943,0,4368_7778195_8534003,4368_665 -4358_80786,227,4368_18555,Blanchardstown SC,7504,0,4368_7778195_8534022,4368_665 -4358_80786,228,4368_18556,Blanchardstown SC,13979,0,4368_7778195_8534004,4368_665 -4358_80786,229,4368_18557,Blanchardstown SC,18918,0,4368_7778195_8534001,4368_665 -4358_80786,227,4368_18558,Blanchardstown SC,7369,0,4368_7778195_8534004,4368_666 -4358_80786,228,4368_18559,Blanchardstown SC,14084,0,4368_7778195_8534015,4368_665 -4358_80758,228,4368_1856,Castle Ave,12762,0,4368_7778195_6130003,4368_65 -4358_80786,227,4368_18560,Blanchardstown SC,7381,0,4368_7778195_8534006,4368_665 -4358_80786,229,4368_18561,Blanchardstown SC,19009,0,4368_7778195_8534011,4368_665 -4358_80786,228,4368_18562,Blanchardstown SC,14012,0,4368_7778195_8534008,4368_665 -4358_80786,227,4368_18563,Blanchardstown SC,7514,0,4368_7778195_8534023,4368_665 -4358_80786,228,4368_18564,Blanchardstown SC,14026,0,4368_7778195_8534010,4368_665 -4358_80786,229,4368_18565,Blanchardstown SC,18979,0,4368_7778195_8534008,4368_666 -4358_80786,227,4368_18566,Blanchardstown SC,7440,0,4368_7778195_8534014,4368_665 -4358_80786,228,4368_18567,Blanchardstown SC,14069,0,4368_7778195_8534014,4368_665 -4358_80786,227,4368_18568,Blanchardstown SC,7416,0,4368_7778195_8534012,4368_665 -4358_80786,229,4368_18569,Blanchardstown SC,19025,0,4368_7778195_8534012,4368_665 -4358_80758,227,4368_1857,Castle Ave,5771,0,4368_7778195_6130007,4368_65 -4358_80786,227,4368_18570,Blanchardstown SC,7429,0,4368_7778195_8534013,4368_665 -4358_80786,228,4368_18571,Blanchardstown SC,13966,0,4368_7778195_8534003,4368_666 -4358_80786,229,4368_18572,Blanchardstown SC,18963,0,4368_7778195_8534006,4368_665 -4358_80786,227,4368_18573,Blanchardstown SC,7498,0,4368_7778195_8534020,4368_665 -4358_80786,228,4368_18574,Blanchardstown SC,14100,0,4368_7778195_8534016,4368_665 -4358_80786,227,4368_18575,Blanchardstown SC,7356,0,4368_7778195_8534003,4368_665 -4358_80786,228,4368_18576,Blanchardstown SC,14106,0,4368_7778195_8534017,4368_665 -4358_80786,229,4368_18577,Blanchardstown SC,18996,0,4368_7778195_8534010,4368_666 -4358_80786,227,4368_18578,Blanchardstown SC,7474,0,4368_7778195_8534018,4368_665 -4358_80786,228,4368_18579,Blanchardstown SC,14120,0,4368_7778195_8534018,4368_665 -4358_80758,228,4368_1858,Castle Ave,12772,0,4368_7778195_6130002,4368_65 -4358_80786,227,4368_18580,Blanchardstown SC,7903,0,4368_7778195_8534007,4368_665 -4358_80786,229,4368_18581,Blanchardstown SC,19043,0,4368_7778195_8534017,4368_665 -4358_80786,228,4368_18582,Blanchardstown SC,14054,0,4368_7778195_8534013,4368_665 -4358_80786,227,4368_18583,Blanchardstown SC,7395,0,4368_7778195_8534009,4368_666 -4358_80786,229,4368_18584,Blanchardstown SC,18990,0,4368_7778195_8534009,4368_665 -4358_80786,227,4368_18585,Blanchardstown SC,7452,0,4368_7778195_8534015,4368_665 -4358_80786,228,4368_18586,Blanchardstown SC,14038,0,4368_7778195_8534011,4368_665 -4358_80786,227,4368_18587,Blanchardstown SC,7487,0,4368_7778195_8534019,4368_665 -4358_80786,229,4368_18588,Blanchardstown SC,18920,0,4368_7778195_8534001,4368_665 -4358_80786,228,4368_18589,Blanchardstown SC,14086,0,4368_7778195_8534015,4368_666 -4358_80758,227,4368_1859,Castle Ave,5924,0,4368_7778195_6130008,4368_65 -4358_80786,227,4368_18590,Blanchardstown SC,7345,0,4368_7778195_8534002,4368_665 -4358_80786,228,4368_18591,Blanchardstown SC,14014,0,4368_7778195_8534008,4368_665 -4358_80786,227,4368_18592,Blanchardstown SC,7506,0,4368_7778195_8534022,4368_665 -4358_80786,229,4368_18593,Blanchardstown SC,19011,0,4368_7778195_8534011,4368_665 -4358_80786,227,4368_18594,Blanchardstown SC,7516,0,4368_7778195_8534023,4368_665 -4358_80786,228,4368_18595,Blanchardstown SC,14028,0,4368_7778195_8534010,4368_666 -4358_80786,229,4368_18596,Blanchardstown SC,18981,0,4368_7778195_8534008,4368_665 -4358_80786,227,4368_18597,Blanchardstown SC,7442,0,4368_7778195_8534014,4368_665 -4358_80786,228,4368_18598,Blanchardstown SC,14071,0,4368_7778195_8534014,4368_665 -4358_80786,227,4368_18599,Blanchardstown SC,7418,0,4368_7778195_8534012,4368_665 -4358_80760,227,4368_186,Shanard Road,1898,1,4368_7778195_9001002,4368_4 -4358_80758,229,4368_1860,Castle Ave,18025,0,4368_7778195_6130002,4368_66 -4358_80786,228,4368_18600,Blanchardstown SC,13968,0,4368_7778195_8534003,4368_665 -4358_80786,229,4368_18601,Blanchardstown SC,19027,0,4368_7778195_8534012,4368_666 -4358_80786,227,4368_18602,Blanchardstown SC,7431,0,4368_7778195_8534013,4368_665 -4358_80786,228,4368_18603,Blanchardstown SC,14108,0,4368_7778195_8534017,4368_665 -4358_80786,227,4368_18604,Blanchardstown SC,7500,0,4368_7778195_8534020,4368_665 -4358_80786,229,4368_18605,Blanchardstown SC,18998,0,4368_7778195_8534010,4368_665 -4358_80786,228,4368_18606,Blanchardstown SC,14122,0,4368_7778195_8534018,4368_665 -4358_80786,227,4368_18607,Blanchardstown SC,7358,0,4368_7778195_8534003,4368_666 -4358_80786,229,4368_18608,Blanchardstown SC,19045,0,4368_7778195_8534017,4368_665 -4358_80786,227,4368_18609,Blanchardstown SC,7476,0,4368_7778195_8534018,4368_665 -4358_80758,228,4368_1861,Castle Ave,12819,0,4368_7778195_6130005,4368_65 -4358_80786,228,4368_18610,Blanchardstown SC,14056,0,4368_7778195_8534013,4368_665 -4358_80786,227,4368_18611,Blanchardstown SC,7397,0,4368_7778195_8534009,4368_665 -4358_80786,229,4368_18612,Blanchardstown SC,18922,0,4368_7778195_8534001,4368_665 -4358_80786,228,4368_18613,Blanchardstown SC,14040,0,4368_7778195_8534011,4368_666 -4358_80786,227,4368_18614,Blanchardstown SC,7489,0,4368_7778195_8534019,4368_665 -4358_80786,229,4368_18615,Blanchardstown SC,19013,0,4368_7778195_8534011,4368_665 -4358_80786,227,4368_18616,Blanchardstown SC,7508,0,4368_7778195_8534022,4368_666 -4358_80786,228,4368_18617,Blanchardstown SC,14088,0,4368_7778195_8534015,4368_667 -4358_80786,228,4368_18618,Blanchardstown SC,14073,0,4368_7778195_8534014,4368_665 -4358_80786,229,4368_18619,Blanchardstown SC,19029,0,4368_7778195_8534012,4368_666 -4358_80758,227,4368_1862,Castle Ave,5794,0,4368_7778195_6130001,4368_65 -4358_80786,227,4368_18620,Blanchardstown SC,7420,0,4368_7778195_8534012,4368_667 -4358_80786,228,4368_18621,Blanchardstown SC,14110,0,4368_7778195_8534017,4368_665 -4358_80786,229,4368_18622,Blanchardstown SC,19000,0,4368_7778195_8534010,4368_666 -4358_80786,227,4368_18623,Blanchardstown SC,7360,0,4368_7778195_8534003,4368_667 -4358_80786,227,4368_18624,Blanchardstown SC,7478,0,4368_7778195_8534018,4368_665 -4358_80786,229,4368_18625,Blanchardstown SC,19047,0,4368_7778195_8534017,4368_666 -4358_80786,228,4368_18626,Blanchardstown SC,14058,0,4368_7778195_8534013,4368_667 -4358_80786,229,4368_18627,Blanchardstown SC,19015,0,4368_7778195_8534011,4368_665 -4358_80786,227,4368_18628,Blanchardstown SC,7491,0,4368_7778195_8534019,4368_666 -4358_80786,228,4368_18629,Blanchardstown SC,14090,0,4368_7778195_8534015,4368_667 -4358_80758,227,4368_1863,Castle Ave,5858,0,4368_7778195_6130009,4368_65 -4358_80786,227,4368_18630,Blanchardstown SC,7510,0,4368_7778195_8534022,4368_665 -4358_80786,228,4368_18631,Blanchardstown SC,14075,0,4368_7778195_8534014,4368_666 -4358_80786,229,4368_18632,Blanchardstown SC,19031,0,4368_7778195_8534012,4368_667 -4358_80786,228,4368_18633,Blanchardstown SC,14112,0,4368_7778195_8534017,4368_665 -4358_80786,229,4368_18634,Blanchardstown SC,19002,0,4368_7778195_8534010,4368_666 -4358_80786,227,4368_18635,Blanchardstown SC,7518,0,4368_7778195_8534024,4368_667 -4358_80786,229,4368_18636,Blanchardstown SC,19049,0,4368_7778195_8534017,4368_665 -4358_80786,227,4368_18637,Blanchardstown SC,7522,0,4368_7778195_8534025,4368_666 -4358_80786,228,4368_18638,Blanchardstown SC,14060,0,4368_7778195_8534013,4368_667 -4358_80786,229,4368_18639,Blanchardstown SC,19017,0,4368_7778195_8534011,4368_665 -4358_80758,228,4368_1864,Castle Ave,12677,0,4368_7778195_6130001,4368_65 -4358_80786,227,4368_18640,Blanchardstown SC,7480,0,4368_7778195_8534018,4368_666 -4358_80786,228,4368_18641,Blanchardstown SC,14092,0,4368_7778195_8534015,4368_667 -4358_80786,227,4368_18642,Blanchardstown SC,7493,0,4368_7778195_8534019,4368_665 -4358_80786,228,4368_18643,Blanchardstown SC,14077,0,4368_7778195_8534014,4368_666 -4358_80786,229,4368_18644,Blanchardstown SC,19033,0,4368_7778195_8534012,4368_667 -4358_80786,227,4368_18645,Blanchardstown SC,7512,0,4368_7778195_8534022,4368_665 -4358_80786,228,4368_18646,Blanchardstown SC,14114,0,4368_7778195_8534017,4368_666 -4358_80786,229,4368_18647,Blanchardstown SC,19004,0,4368_7778195_8534010,4368_667 -4358_80786,229,4368_18648,Blanchardstown SC,19051,0,4368_7778195_8534017,4368_665 -4358_80786,228,4368_18649,Blanchardstown SC,14062,0,4368_7778195_8534013,4368_666 -4358_80758,229,4368_1865,Castle Ave,18050,0,4368_7778195_6130001,4368_65 -4358_80786,227,4368_18650,Blanchardstown SC,7520,0,4368_7778195_8534024,4368_667 -4358_80786,228,4368_18651,Point Village,13945,1,4368_7778195_8534002,4368_668 -4358_80786,227,4368_18652,Point Village,7332,1,4368_7778195_8534001,4368_668 -4358_80786,229,4368_18653,Point Village,18923,1,4368_7778195_8534002,4368_669 -4358_80786,228,4368_18654,Point Village,13970,1,4368_7778195_8534004,4368_668 -4358_80786,227,4368_18655,Point Village,7347,1,4368_7778195_8534003,4368_668 -4358_80786,227,4368_18656,Point Village,7370,1,4368_7778195_8534005,4368_668 -4358_80786,228,4368_18657,Point Village,13980,1,4368_7778195_8534005,4368_668 -4358_80786,229,4368_18658,Point Village,18934,1,4368_7778195_8534003,4368_668 -4358_80786,227,4368_18659,Point Village,7894,1,4368_7778195_8534007,4368_668 -4358_80758,227,4368_1866,Castle Ave,5707,0,4368_7778195_6130003,4368_65 -4358_80786,228,4368_18660,Point Village,14003,1,4368_7778195_8534008,4368_668 -4358_80786,227,4368_18661,Point Village,7386,1,4368_7778195_8534009,4368_668 -4358_80786,228,4368_18662,Point Village,13936,1,4368_7778195_8534001,4368_668 -4358_80786,227,4368_18663,Point Village,7406,1,4368_7778195_8534011,4368_668 -4358_80786,229,4368_18664,Point Village,18909,1,4368_7778195_8534001,4368_669 -4358_80786,228,4368_18665,Point Village,13957,1,4368_7778195_8534003,4368_668 -4358_80786,227,4368_18666,Point Village,7336,1,4368_7778195_8534002,4368_668 -4358_80786,227,4368_18667,Point Village,7362,1,4368_7778195_8534004,4368_668 -4358_80786,228,4368_18668,Point Village,13989,1,4368_7778195_8534006,4368_668 -4358_80786,229,4368_18669,Point Village,18945,1,4368_7778195_8534004,4368_668 -4358_80758,228,4368_1867,Castle Ave,12801,0,4368_7778195_6130004,4368_65 -4358_80786,227,4368_18670,Point Village,7374,1,4368_7778195_8534006,4368_668 -4358_80786,228,4368_18671,Point Village,13999,1,4368_7778195_8534007,4368_668 -4358_80786,227,4368_18672,Point Village,7384,1,4368_7778195_8534008,4368_668 -4358_80786,228,4368_18673,Point Village,14017,1,4368_7778195_8534009,4368_668 -4358_80786,227,4368_18674,Point Village,7399,1,4368_7778195_8534010,4368_668 -4358_80786,229,4368_18675,Point Village,18925,1,4368_7778195_8534002,4368_669 -4358_80786,228,4368_18676,Point Village,13947,1,4368_7778195_8534002,4368_668 -4358_80786,227,4368_18677,Point Village,7433,1,4368_7778195_8534014,4368_668 -4358_80786,227,4368_18678,Point Village,7409,1,4368_7778195_8534012,4368_668 -4358_80786,228,4368_18679,Point Village,13972,1,4368_7778195_8534004,4368_668 -4358_80758,227,4368_1868,Castle Ave,5940,0,4368_7778195_6130006,4368_65 -4358_80786,229,4368_18680,Point Village,18954,1,4368_7778195_8534005,4368_668 -4358_80786,227,4368_18681,Point Village,7422,1,4368_7778195_8534013,4368_668 -4358_80786,228,4368_18682,Point Village,13982,1,4368_7778195_8534005,4368_668 -4358_80786,227,4368_18683,Point Village,7334,1,4368_7778195_8534001,4368_668 -4358_80786,229,4368_18684,Point Village,18936,1,4368_7778195_8534003,4368_668 -4358_80786,228,4368_18685,Point Village,14005,1,4368_7778195_8534008,4368_668 -4358_80786,227,4368_18686,Point Village,7461,1,4368_7778195_8534017,4368_668 -4358_80786,229,4368_18687,Point Village,18911,1,4368_7778195_8534001,4368_668 -4358_80786,228,4368_18688,Point Village,14019,1,4368_7778195_8534010,4368_669 -4358_80786,227,4368_18689,Point Village,7349,1,4368_7778195_8534003,4368_668 -4358_80758,228,4368_1869,Castle Ave,12764,0,4368_7778195_6130003,4368_65 -4358_80786,228,4368_18690,Point Village,13938,1,4368_7778195_8534001,4368_668 -4358_80786,227,4368_18691,Point Village,7467,1,4368_7778195_8534018,4368_668 -4358_80786,229,4368_18692,Point Village,18947,1,4368_7778195_8534004,4368_668 -4358_80786,228,4368_18693,Point Village,13959,1,4368_7778195_8534003,4368_668 -4358_80786,227,4368_18694,Point Village,7372,1,4368_7778195_8534005,4368_668 -4358_80786,228,4368_18695,Point Village,13991,1,4368_7778195_8534006,4368_668 -4358_80786,227,4368_18696,Point Village,7896,1,4368_7778195_8534007,4368_668 -4358_80786,229,4368_18697,Point Village,18972,1,4368_7778195_8534008,4368_668 -4358_80786,228,4368_18698,Point Village,14041,1,4368_7778195_8534012,4368_668 -4358_80786,227,4368_18699,Point Village,7388,1,4368_7778195_8534009,4368_668 -4358_80760,228,4368_187,Shanard Road,9373,1,4368_7778195_9001001,4368_4 -4358_80758,229,4368_1870,Castle Ave,18064,0,4368_7778195_6130003,4368_65 -4358_80786,228,4368_18700,Point Village,14001,1,4368_7778195_8534007,4368_668 -4358_80786,229,4368_18701,Point Village,18956,1,4368_7778195_8534006,4368_668 -4358_80786,227,4368_18702,Point Village,7445,1,4368_7778195_8534015,4368_668 -4358_80786,228,4368_18703,Point Village,14047,1,4368_7778195_8534013,4368_668 -4358_80786,227,4368_18704,Point Village,7455,1,4368_7778195_8534016,4368_668 -4358_80786,229,4368_18705,Point Village,18927,1,4368_7778195_8534002,4368_668 -4358_80786,228,4368_18706,Point Village,14031,1,4368_7778195_8534011,4368_668 -4358_80786,227,4368_18707,Point Village,7338,1,4368_7778195_8534002,4368_668 -4358_80786,228,4368_18708,Point Village,13949,1,4368_7778195_8534002,4368_668 -4358_80786,229,4368_18709,Point Village,19036,1,4368_7778195_8534017,4368_668 -4358_80758,227,4368_1871,Castle Ave,5827,0,4368_7778195_6130005,4368_66 -4358_80786,227,4368_18710,Point Village,7364,1,4368_7778195_8534004,4368_668 -4358_80786,228,4368_18711,Point Village,13974,1,4368_7778195_8534004,4368_668 -4358_80786,229,4368_18712,Point Village,18966,1,4368_7778195_8534007,4368_668 -4358_80786,227,4368_18713,Point Village,7376,1,4368_7778195_8534006,4368_669 -4358_80786,228,4368_18714,Point Village,13984,1,4368_7778195_8534005,4368_668 -4358_80786,227,4368_18715,Point Village,7401,1,4368_7778195_8534010,4368_668 -4358_80786,229,4368_18716,Point Village,18983,1,4368_7778195_8534009,4368_668 -4358_80786,228,4368_18717,Point Village,14079,1,4368_7778195_8534015,4368_668 -4358_80786,227,4368_18718,Point Village,7435,1,4368_7778195_8534014,4368_668 -4358_80786,229,4368_18719,Point Village,18938,1,4368_7778195_8534003,4368_668 -4358_80758,228,4368_1872,Castle Ave,12774,0,4368_7778195_6130002,4368_65 -4358_80786,228,4368_18720,Point Village,14007,1,4368_7778195_8534008,4368_668 -4358_80786,227,4368_18721,Point Village,7411,1,4368_7778195_8534012,4368_668 -4358_80786,228,4368_18722,Point Village,14021,1,4368_7778195_8534010,4368_668 -4358_80786,229,4368_18723,Point Village,18913,1,4368_7778195_8534001,4368_668 -4358_80786,227,4368_18724,Point Village,7424,1,4368_7778195_8534013,4368_668 -4358_80786,228,4368_18725,Point Village,13940,1,4368_7778195_8534001,4368_668 -4358_80786,229,4368_18726,Point Village,18949,1,4368_7778195_8534004,4368_668 -4358_80786,227,4368_18727,Point Village,7463,1,4368_7778195_8534017,4368_669 -4358_80786,228,4368_18728,Point Village,14064,1,4368_7778195_8534014,4368_668 -4358_80786,227,4368_18729,Point Village,7351,1,4368_7778195_8534003,4368_668 -4358_80758,227,4368_1873,Castle Ave,5672,0,4368_7778195_6130002,4368_65 -4358_80786,229,4368_18730,Point Village,18974,1,4368_7778195_8534008,4368_668 -4358_80786,228,4368_18731,Point Village,13961,1,4368_7778195_8534003,4368_668 -4358_80786,227,4368_18732,Point Village,7469,1,4368_7778195_8534018,4368_668 -4358_80786,229,4368_18733,Point Village,19020,1,4368_7778195_8534012,4368_668 -4358_80786,228,4368_18734,Point Village,13993,1,4368_7778195_8534006,4368_668 -4358_80786,227,4368_18735,Point Village,7898,1,4368_7778195_8534007,4368_668 -4358_80786,228,4368_18736,Point Village,14043,1,4368_7778195_8534012,4368_668 -4358_80786,229,4368_18737,Point Village,18958,1,4368_7778195_8534006,4368_668 -4358_80786,227,4368_18738,Point Village,7390,1,4368_7778195_8534009,4368_668 -4358_80786,228,4368_18739,Point Village,14095,1,4368_7778195_8534016,4368_668 -4358_80758,227,4368_1874,Castle Ave,5773,0,4368_7778195_6130007,4368_65 -4358_80786,227,4368_18740,Point Village,7447,1,4368_7778195_8534015,4368_668 -4358_80786,229,4368_18741,Point Village,18991,1,4368_7778195_8534010,4368_669 -4358_80786,228,4368_18742,Point Village,14101,1,4368_7778195_8534017,4368_668 -4358_80786,227,4368_18743,Point Village,7457,1,4368_7778195_8534016,4368_668 -4358_80786,229,4368_18744,Point Village,18929,1,4368_7778195_8534002,4368_668 -4358_80786,228,4368_18745,Point Village,14115,1,4368_7778195_8534018,4368_668 -4358_80786,227,4368_18746,Point Village,7482,1,4368_7778195_8534019,4368_668 -4358_80786,229,4368_18747,Point Village,19038,1,4368_7778195_8534017,4368_668 -4358_80786,228,4368_18748,Point Village,14049,1,4368_7778195_8534013,4368_668 -4358_80786,227,4368_18749,Point Village,7340,1,4368_7778195_8534002,4368_668 -4358_80758,228,4368_1875,Castle Ave,12821,0,4368_7778195_6130005,4368_65 -4358_80786,228,4368_18750,Point Village,14033,1,4368_7778195_8534011,4368_668 -4358_80786,229,4368_18751,Point Village,18968,1,4368_7778195_8534007,4368_668 -4358_80786,227,4368_18752,Point Village,7366,1,4368_7778195_8534004,4368_668 -4358_80786,228,4368_18753,Point Village,13951,1,4368_7778195_8534002,4368_668 -4358_80786,229,4368_18754,Point Village,18985,1,4368_7778195_8534009,4368_668 -4358_80786,227,4368_18755,Point Village,7378,1,4368_7778195_8534006,4368_669 -4358_80786,228,4368_18756,Point Village,13976,1,4368_7778195_8534004,4368_668 -4358_80786,227,4368_18757,Point Village,7403,1,4368_7778195_8534010,4368_668 -4358_80786,229,4368_18758,Point Village,18940,1,4368_7778195_8534003,4368_668 -4358_80786,228,4368_18759,Point Village,13986,1,4368_7778195_8534005,4368_668 -4358_80758,229,4368_1876,Castle Ave,18090,0,4368_7778195_6130004,4368_65 -4358_80786,227,4368_18760,Point Village,7437,1,4368_7778195_8534014,4368_668 -4358_80786,229,4368_18761,Point Village,18915,1,4368_7778195_8534001,4368_668 -4358_80786,228,4368_18762,Point Village,14081,1,4368_7778195_8534015,4368_668 -4358_80786,227,4368_18763,Point Village,7413,1,4368_7778195_8534012,4368_668 -4358_80786,228,4368_18764,Point Village,14009,1,4368_7778195_8534008,4368_668 -4358_80786,229,4368_18765,Point Village,19006,1,4368_7778195_8534011,4368_668 -4358_80786,227,4368_18766,Point Village,7426,1,4368_7778195_8534013,4368_668 -4358_80786,228,4368_18767,Point Village,14023,1,4368_7778195_8534010,4368_668 -4358_80786,229,4368_18768,Point Village,18951,1,4368_7778195_8534004,4368_668 -4358_80786,227,4368_18769,Point Village,7495,1,4368_7778195_8534020,4368_669 -4358_80758,227,4368_1877,Castle Ave,5926,0,4368_7778195_6130008,4368_65 -4358_80786,228,4368_18770,Point Village,13942,1,4368_7778195_8534001,4368_668 -4358_80786,227,4368_18771,Point Village,7465,1,4368_7778195_8534017,4368_668 -4358_80786,229,4368_18772,Point Village,18976,1,4368_7778195_8534008,4368_668 -4358_80786,228,4368_18773,Point Village,14066,1,4368_7778195_8534014,4368_668 -4358_80786,227,4368_18774,Point Village,7353,1,4368_7778195_8534003,4368_668 -4358_80786,229,4368_18775,Point Village,19022,1,4368_7778195_8534012,4368_668 -4358_80786,228,4368_18776,Point Village,13963,1,4368_7778195_8534003,4368_668 -4358_80786,227,4368_18777,Point Village,7471,1,4368_7778195_8534018,4368_668 -4358_80786,228,4368_18778,Point Village,13995,1,4368_7778195_8534006,4368_668 -4358_80786,229,4368_18779,Point Village,18960,1,4368_7778195_8534006,4368_668 -4358_80758,228,4368_1878,Castle Ave,12713,0,4368_7778195_6130006,4368_65 -4358_80786,227,4368_18780,Point Village,7900,1,4368_7778195_8534007,4368_668 -4358_80786,228,4368_18781,Point Village,14045,1,4368_7778195_8534012,4368_668 -4358_80786,229,4368_18782,Point Village,18993,1,4368_7778195_8534010,4368_668 -4358_80786,227,4368_18783,Point Village,7392,1,4368_7778195_8534009,4368_669 -4358_80786,228,4368_18784,Point Village,14097,1,4368_7778195_8534016,4368_668 -4358_80786,227,4368_18785,Point Village,7449,1,4368_7778195_8534015,4368_668 -4358_80786,229,4368_18786,Point Village,18931,1,4368_7778195_8534002,4368_668 -4358_80786,228,4368_18787,Point Village,14103,1,4368_7778195_8534017,4368_668 -4358_80786,227,4368_18788,Point Village,7459,1,4368_7778195_8534016,4368_668 -4358_80786,229,4368_18789,Point Village,19040,1,4368_7778195_8534017,4368_668 -4358_80758,227,4368_1879,Castle Ave,5796,0,4368_7778195_6130001,4368_65 -4358_80786,228,4368_18790,Point Village,14117,1,4368_7778195_8534018,4368_668 -4358_80786,227,4368_18791,Point Village,7484,1,4368_7778195_8534019,4368_668 -4358_80786,228,4368_18792,Point Village,14051,1,4368_7778195_8534013,4368_668 -4358_80786,229,4368_18793,Point Village,18970,1,4368_7778195_8534007,4368_668 -4358_80786,227,4368_18794,Point Village,7342,1,4368_7778195_8534002,4368_668 -4358_80786,228,4368_18795,Point Village,14035,1,4368_7778195_8534011,4368_668 -4358_80786,229,4368_18796,Point Village,18987,1,4368_7778195_8534009,4368_668 -4358_80786,227,4368_18797,Point Village,7503,1,4368_7778195_8534022,4368_669 -4358_80786,228,4368_18798,Point Village,13953,1,4368_7778195_8534002,4368_668 -4358_80786,227,4368_18799,Point Village,7368,1,4368_7778195_8534004,4368_668 -4358_80760,227,4368_188,Shanard Road,3136,1,4368_7778195_9001004,4368_4 -4358_80758,229,4368_1880,Castle Ave,18027,0,4368_7778195_6130002,4368_65 -4358_80786,229,4368_18800,Point Village,18942,1,4368_7778195_8534003,4368_668 -4358_80786,228,4368_18801,Point Village,13978,1,4368_7778195_8534004,4368_668 -4358_80786,227,4368_18802,Point Village,7380,1,4368_7778195_8534006,4368_668 -4358_80786,229,4368_18803,Point Village,18917,1,4368_7778195_8534001,4368_668 -4358_80786,228,4368_18804,Point Village,14083,1,4368_7778195_8534015,4368_668 -4358_80786,227,4368_18805,Point Village,7513,1,4368_7778195_8534023,4368_668 -4358_80786,228,4368_18806,Point Village,14011,1,4368_7778195_8534008,4368_668 -4358_80786,229,4368_18807,Point Village,19008,1,4368_7778195_8534011,4368_668 -4358_80786,227,4368_18808,Point Village,7405,1,4368_7778195_8534010,4368_668 -4358_80786,228,4368_18809,Point Village,14025,1,4368_7778195_8534010,4368_668 -4358_80758,228,4368_1881,Castle Ave,12679,0,4368_7778195_6130001,4368_65 -4358_80786,229,4368_18810,Point Village,18953,1,4368_7778195_8534004,4368_668 -4358_80786,227,4368_18811,Point Village,7439,1,4368_7778195_8534014,4368_669 -4358_80786,228,4368_18812,Point Village,13944,1,4368_7778195_8534001,4368_668 -4358_80786,227,4368_18813,Point Village,7415,1,4368_7778195_8534012,4368_668 -4358_80786,229,4368_18814,Point Village,18978,1,4368_7778195_8534008,4368_668 -4358_80786,228,4368_18815,Point Village,14068,1,4368_7778195_8534014,4368_668 -4358_80786,227,4368_18816,Point Village,7428,1,4368_7778195_8534013,4368_668 -4358_80786,229,4368_18817,Point Village,19024,1,4368_7778195_8534012,4368_668 -4358_80786,228,4368_18818,Point Village,13965,1,4368_7778195_8534003,4368_668 -4358_80786,227,4368_18819,Point Village,7497,1,4368_7778195_8534020,4368_668 -4358_80758,227,4368_1882,Castle Ave,5860,0,4368_7778195_6130009,4368_65 -4358_80786,228,4368_18820,Point Village,13997,1,4368_7778195_8534006,4368_668 -4358_80786,229,4368_18821,Point Village,18962,1,4368_7778195_8534006,4368_668 -4358_80786,227,4368_18822,Point Village,7502,1,4368_7778195_8534021,4368_668 -4358_80786,228,4368_18823,Point Village,14099,1,4368_7778195_8534016,4368_668 -4358_80786,229,4368_18824,Point Village,18995,1,4368_7778195_8534010,4368_668 -4358_80786,227,4368_18825,Point Village,7355,1,4368_7778195_8534003,4368_669 -4358_80786,228,4368_18826,Point Village,14105,1,4368_7778195_8534017,4368_668 -4358_80786,227,4368_18827,Point Village,7473,1,4368_7778195_8534018,4368_668 -4358_80786,229,4368_18828,Point Village,18933,1,4368_7778195_8534002,4368_668 -4358_80786,228,4368_18829,Point Village,14119,1,4368_7778195_8534018,4368_668 -4358_80758,229,4368_1883,Castle Ave,18052,0,4368_7778195_6130001,4368_65 -4358_80786,227,4368_18830,Point Village,7902,1,4368_7778195_8534007,4368_668 -4358_80786,229,4368_18831,Point Village,19042,1,4368_7778195_8534017,4368_668 -4358_80786,228,4368_18832,Point Village,14053,1,4368_7778195_8534013,4368_668 -4358_80786,227,4368_18833,Point Village,7394,1,4368_7778195_8534009,4368_668 -4358_80786,227,4368_18834,Point Village,7451,1,4368_7778195_8534015,4368_668 -4358_80786,229,4368_18835,Point Village,18989,1,4368_7778195_8534009,4368_668 -4358_80786,228,4368_18836,Point Village,14037,1,4368_7778195_8534011,4368_669 -4358_80786,227,4368_18837,Point Village,7486,1,4368_7778195_8534019,4368_668 -4358_80786,228,4368_18838,Point Village,13955,1,4368_7778195_8534002,4368_668 -4358_80786,229,4368_18839,Point Village,18919,1,4368_7778195_8534001,4368_668 -4358_80758,228,4368_1884,Castle Ave,12731,0,4368_7778195_6130007,4368_66 -4358_80786,227,4368_18840,Point Village,7344,1,4368_7778195_8534002,4368_668 -4358_80786,228,4368_18841,Point Village,14085,1,4368_7778195_8534015,4368_668 -4358_80786,227,4368_18842,Point Village,7505,1,4368_7778195_8534022,4368_668 -4358_80786,229,4368_18843,Point Village,19010,1,4368_7778195_8534011,4368_668 -4358_80786,228,4368_18844,Point Village,14013,1,4368_7778195_8534008,4368_668 -4358_80786,227,4368_18845,Point Village,7382,1,4368_7778195_8534006,4368_668 -4358_80786,227,4368_18846,Point Village,7515,1,4368_7778195_8534023,4368_668 -4358_80786,228,4368_18847,Point Village,14027,1,4368_7778195_8534010,4368_668 -4358_80786,229,4368_18848,Point Village,18980,1,4368_7778195_8534008,4368_669 -4358_80786,227,4368_18849,Point Village,7441,1,4368_7778195_8534014,4368_668 -4358_80758,227,4368_1885,Castle Ave,5709,0,4368_7778195_6130003,4368_65 -4358_80786,228,4368_18850,Point Village,14070,1,4368_7778195_8534014,4368_668 -4358_80786,229,4368_18851,Point Village,19026,1,4368_7778195_8534012,4368_668 -4358_80786,227,4368_18852,Point Village,7417,1,4368_7778195_8534012,4368_668 -4358_80786,228,4368_18853,Point Village,13967,1,4368_7778195_8534003,4368_668 -4358_80786,227,4368_18854,Point Village,7430,1,4368_7778195_8534013,4368_668 -4358_80786,229,4368_18855,Point Village,18964,1,4368_7778195_8534006,4368_668 -4358_80786,228,4368_18856,Point Village,14107,1,4368_7778195_8534017,4368_668 -4358_80786,227,4368_18857,Point Village,7499,1,4368_7778195_8534020,4368_668 -4358_80786,227,4368_18858,Point Village,7357,1,4368_7778195_8534003,4368_668 -4358_80786,228,4368_18859,Point Village,14121,1,4368_7778195_8534018,4368_668 -4358_80758,227,4368_1886,Castle Ave,5942,0,4368_7778195_6130006,4368_65 -4358_80786,229,4368_18860,Point Village,18997,1,4368_7778195_8534010,4368_669 -4358_80786,227,4368_18861,Point Village,7475,1,4368_7778195_8534018,4368_668 -4358_80786,228,4368_18862,Point Village,14055,1,4368_7778195_8534013,4368_668 -4358_80786,229,4368_18863,Point Village,19044,1,4368_7778195_8534017,4368_668 -4358_80786,227,4368_18864,Point Village,7396,1,4368_7778195_8534009,4368_668 -4358_80786,228,4368_18865,Point Village,14039,1,4368_7778195_8534011,4368_668 -4358_80786,227,4368_18866,Point Village,7453,1,4368_7778195_8534015,4368_668 -4358_80786,229,4368_18867,Point Village,18921,1,4368_7778195_8534001,4368_668 -4358_80786,228,4368_18868,Point Village,14087,1,4368_7778195_8534015,4368_668 -4358_80786,227,4368_18869,Point Village,7488,1,4368_7778195_8534019,4368_668 -4358_80758,228,4368_1887,Castle Ave,12803,0,4368_7778195_6130004,4368_65 -4358_80786,227,4368_18870,Point Village,7346,1,4368_7778195_8534002,4368_668 -4358_80786,229,4368_18871,Point Village,19012,1,4368_7778195_8534011,4368_668 -4358_80786,228,4368_18872,Point Village,14015,1,4368_7778195_8534008,4368_669 -4358_80786,227,4368_18873,Point Village,7507,1,4368_7778195_8534022,4368_668 -4358_80786,228,4368_18874,Point Village,14029,1,4368_7778195_8534010,4368_668 -4358_80786,229,4368_18875,Point Village,18982,1,4368_7778195_8534008,4368_668 -4358_80786,227,4368_18876,Point Village,7443,1,4368_7778195_8534014,4368_668 -4358_80786,228,4368_18877,Point Village,14072,1,4368_7778195_8534014,4368_668 -4358_80786,227,4368_18878,Point Village,7419,1,4368_7778195_8534012,4368_668 -4358_80786,229,4368_18879,Point Village,19028,1,4368_7778195_8534012,4368_668 -4358_80758,229,4368_1888,Castle Ave,18066,0,4368_7778195_6130003,4368_65 -4358_80786,228,4368_18880,Point Village,13969,1,4368_7778195_8534003,4368_668 -4358_80786,227,4368_18881,Point Village,7432,1,4368_7778195_8534013,4368_668 -4358_80786,228,4368_18882,Point Village,14109,1,4368_7778195_8534017,4368_668 -4358_80786,229,4368_18883,Point Village,18999,1,4368_7778195_8534010,4368_668 -4358_80786,227,4368_18884,Point Village,7359,1,4368_7778195_8534003,4368_669 -4358_80786,227,4368_18885,Point Village,7477,1,4368_7778195_8534018,4368_668 -4358_80786,229,4368_18886,Point Village,19046,1,4368_7778195_8534017,4368_669 -4358_80786,228,4368_18887,Point Village,14057,1,4368_7778195_8534013,4368_670 -4358_80786,229,4368_18888,Point Village,19014,1,4368_7778195_8534011,4368_668 -4358_80786,227,4368_18889,Point Village,7490,1,4368_7778195_8534019,4368_669 -4358_80758,227,4368_1889,Castle Ave,5829,0,4368_7778195_6130005,4368_65 -4358_80786,228,4368_18890,Point Village,14089,1,4368_7778195_8534015,4368_670 -4358_80786,227,4368_18891,Point Village,7509,1,4368_7778195_8534022,4368_668 -4358_80786,228,4368_18892,Point Village,14074,1,4368_7778195_8534014,4368_669 -4358_80786,229,4368_18893,Point Village,19030,1,4368_7778195_8534012,4368_670 -4358_80786,228,4368_18894,Point Village,14111,1,4368_7778195_8534017,4368_668 -4358_80786,229,4368_18895,Point Village,19001,1,4368_7778195_8534010,4368_669 -4358_80786,227,4368_18896,Point Village,7517,1,4368_7778195_8534024,4368_670 -4358_80786,229,4368_18897,Point Village,19048,1,4368_7778195_8534017,4368_668 -4358_80786,227,4368_18898,Point Village,7521,1,4368_7778195_8534025,4368_669 -4358_80786,228,4368_18899,Point Village,14059,1,4368_7778195_8534013,4368_670 -4358_80760,227,4368_189,Shanard Road,1842,1,4368_7778195_9001006,4368_4 -4358_80758,228,4368_1890,Castle Ave,12766,0,4368_7778195_6130003,4368_65 -4358_80786,229,4368_18900,Point Village,19016,1,4368_7778195_8534011,4368_668 -4358_80786,227,4368_18901,Point Village,7479,1,4368_7778195_8534018,4368_669 -4358_80786,228,4368_18902,Point Village,14091,1,4368_7778195_8534015,4368_670 -4358_80786,227,4368_18903,Point Village,7492,1,4368_7778195_8534019,4368_668 -4358_80786,228,4368_18904,Point Village,14076,1,4368_7778195_8534014,4368_669 -4358_80786,229,4368_18905,Point Village,19032,1,4368_7778195_8534012,4368_670 -4358_80786,227,4368_18906,Point Village,7511,1,4368_7778195_8534022,4368_668 -4358_80786,228,4368_18907,Point Village,14113,1,4368_7778195_8534017,4368_669 -4358_80786,229,4368_18908,Point Village,19003,1,4368_7778195_8534010,4368_670 -4358_80786,229,4368_18909,Point Village,19050,1,4368_7778195_8534017,4368_668 -4358_80758,227,4368_1891,Castle Ave,5674,0,4368_7778195_6130002,4368_65 -4358_80786,228,4368_18910,Point Village,14061,1,4368_7778195_8534013,4368_669 -4358_80786,227,4368_18911,Point Village,7519,1,4368_7778195_8534024,4368_670 -4358_80786,229,4368_18912,Point Village,19018,1,4368_7778195_8534011,4368_668 -4358_80786,227,4368_18913,Point Village,7523,1,4368_7778195_8534025,4368_669 -4358_80786,228,4368_18914,Point Village,14093,1,4368_7778195_8534015,4368_670 -4358_80786,227,4368_18915,Point Village,7481,1,4368_7778195_8534018,4368_668 -4358_80786,228,4368_18916,Point Village,14078,1,4368_7778195_8534014,4368_669 -4358_80786,229,4368_18917,Point Village,19034,1,4368_7778195_8534012,4368_670 -4358_80767,227,4368_18918,Adamstown Station,7850,0,4368_7778195_8818233,4368_671 -4358_80767,227,4368_18919,Adamstown Station,5980,0,4368_7778195_6826216,4368_671 -4358_80758,229,4368_1892,Castle Ave,18092,0,4368_7778195_6130004,4368_65 -4358_80767,227,4368_18920,Adamstown Station,6442,0,4368_7778195_7229568,4368_671 -4358_80767,227,4368_18921,Adamstown Station,7862,0,4368_7778195_8828204,4368_671 -4358_80767,227,4368_18922,Ringsend Road,7851,1,4368_7778195_8818133,4368_672 -4358_80767,227,4368_18923,Ringsend Road,7852,1,4368_7778195_8818134,4368_672 -4358_80767,227,4368_18924,Ringsend Road,5978,1,4368_7778195_6826116,4368_672 -4358_80767,227,4368_18925,Ringsend Road,6459,1,4368_7778195_7229562,4368_672 -4358_80787,227,4368_18926,Irishtown,5050,0,4368_7778195_4582003,4368_673 -4358_80787,227,4368_18927,Irishtown,4860,0,4368_7778195_4582006,4368_673 -4358_80787,228,4368_18928,Irishtown,12171,0,4368_7778195_4582003,4368_674 -4358_80787,227,4368_18929,Irishtown,4872,0,4368_7778195_4582007,4368_673 -4358_80758,228,4368_1893,Castle Ave,12776,0,4368_7778195_6130002,4368_65 -4358_80787,228,4368_18930,Irishtown,12184,0,4368_7778195_4582005,4368_673 -4358_80787,227,4368_18931,Irishtown,5150,0,4368_7778195_4582010,4368_673 -4358_80787,228,4368_18932,Irishtown,12155,0,4368_7778195_4582006,4368_673 -4358_80787,227,4368_18933,Irishtown,4971,0,4368_7778195_4582001,4368_673 -4358_80787,227,4368_18934,Irishtown,5109,0,4368_7778195_4582002,4368_673 -4358_80787,228,4368_18935,Irishtown,12179,0,4368_7778195_4582001,4368_674 -4358_80787,227,4368_18936,Irishtown,5127,0,4368_7778195_4582004,4368_673 -4358_80787,228,4368_18937,Irishtown,12122,0,4368_7778195_4582002,4368_673 -4358_80787,229,4368_18938,Irishtown,17816,0,4368_7778195_4582003,4368_673 -4358_80787,227,4368_18939,Irishtown,5161,0,4368_7778195_4582011,4368_674 -4358_80758,227,4368_1894,Castle Ave,5775,0,4368_7778195_6130007,4368_65 -4358_80787,228,4368_18940,Irishtown,11991,0,4368_7778195_4582004,4368_673 -4358_80787,227,4368_18941,Irishtown,5018,0,4368_7778195_4582005,4368_673 -4358_80787,229,4368_18942,Irishtown,17840,0,4368_7778195_4582005,4368_673 -4358_80787,228,4368_18943,Irishtown,12076,0,4368_7778195_4582007,4368_674 -4358_80787,227,4368_18944,Irishtown,5052,0,4368_7778195_4582003,4368_675 -4358_80787,227,4368_18945,Irishtown,5138,0,4368_7778195_4582008,4368_673 -4358_80787,228,4368_18946,Irishtown,12186,0,4368_7778195_4582005,4368_673 -4358_80787,229,4368_18947,Irishtown,17793,0,4368_7778195_4582001,4368_673 -4358_80787,227,4368_18948,Irishtown,5098,0,4368_7778195_4582009,4368_674 -4358_80787,228,4368_18949,Irishtown,12157,0,4368_7778195_4582006,4368_673 -4358_80758,229,4368_1895,Castle Ave,18029,0,4368_7778195_6130002,4368_65 -4358_80787,227,4368_18950,Irishtown,4862,0,4368_7778195_4582006,4368_673 -4358_80787,228,4368_18951,Irishtown,12218,0,4368_7778195_4582009,4368_673 -4358_80787,229,4368_18952,Irishtown,17807,0,4368_7778195_4582002,4368_674 -4358_80787,227,4368_18953,Irishtown,4874,0,4368_7778195_4582007,4368_675 -4358_80787,227,4368_18954,Irishtown,5152,0,4368_7778195_4582010,4368_673 -4358_80787,228,4368_18955,Irishtown,12181,0,4368_7778195_4582001,4368_674 -4358_80787,228,4368_18956,Irishtown,12124,0,4368_7778195_4582002,4368_673 -4358_80787,227,4368_18957,Irishtown,4973,0,4368_7778195_4582001,4368_674 -4358_80787,229,4368_18958,Irishtown,17827,0,4368_7778195_4582004,4368_675 -4358_80787,227,4368_18959,Irishtown,5175,0,4368_7778195_4582012,4368_673 -4358_80758,228,4368_1896,Castle Ave,12823,0,4368_7778195_6130005,4368_66 -4358_80787,228,4368_18960,Irishtown,11993,0,4368_7778195_4582004,4368_674 -4358_80787,227,4368_18961,Irishtown,5111,0,4368_7778195_4582002,4368_673 -4358_80787,228,4368_18962,Irishtown,12078,0,4368_7778195_4582007,4368_674 -4358_80787,229,4368_18963,Irishtown,17853,0,4368_7778195_4582006,4368_675 -4358_80787,228,4368_18964,Irishtown,12196,0,4368_7778195_4582008,4368_673 -4358_80787,227,4368_18965,Irishtown,5129,0,4368_7778195_4582004,4368_674 -4358_80787,229,4368_18966,Irishtown,17818,0,4368_7778195_4582003,4368_673 -4358_80787,227,4368_18967,Irishtown,5020,0,4368_7778195_4582013,4368_673 -4358_80787,228,4368_18968,Irishtown,12188,0,4368_7778195_4582005,4368_674 -4358_80787,229,4368_18969,Irishtown,17842,0,4368_7778195_4582005,4368_673 -4358_80758,227,4368_1897,Castle Ave,5928,0,4368_7778195_6130008,4368_65 -4358_80787,228,4368_18970,Irishtown,12159,0,4368_7778195_4582006,4368_673 -4358_80787,227,4368_18971,Irishtown,5163,0,4368_7778195_4582011,4368_674 -4358_80787,229,4368_18972,Irishtown,17795,0,4368_7778195_4582001,4368_673 -4358_80787,227,4368_18973,Irishtown,5054,0,4368_7778195_4582003,4368_674 -4358_80787,228,4368_18974,Irishtown,12097,0,4368_7778195_4582010,4368_675 -4358_80787,228,4368_18975,Irishtown,12220,0,4368_7778195_4582009,4368_673 -4358_80787,227,4368_18976,Irishtown,5140,0,4368_7778195_4582008,4368_674 -4358_80787,229,4368_18977,Irishtown,17809,0,4368_7778195_4582002,4368_673 -4358_80787,227,4368_18978,Irishtown,5100,0,4368_7778195_4582009,4368_673 -4358_80787,228,4368_18979,Irishtown,12183,0,4368_7778195_4582001,4368_674 -4358_80758,227,4368_1898,Castle Ave,5798,0,4368_7778195_6130001,4368_65 -4358_80787,229,4368_18980,Irishtown,17829,0,4368_7778195_4582004,4368_673 -4358_80787,227,4368_18981,Irishtown,4864,0,4368_7778195_4582006,4368_673 -4358_80787,228,4368_18982,Irishtown,12126,0,4368_7778195_4582002,4368_674 -4358_80787,227,4368_18983,Irishtown,5154,0,4368_7778195_4582010,4368_673 -4358_80787,229,4368_18984,Irishtown,17766,0,4368_7778195_4582007,4368_674 -4358_80787,228,4368_18985,Irishtown,12208,0,4368_7778195_4582011,4368_675 -4358_80787,227,4368_18986,Irishtown,4975,0,4368_7778195_4582001,4368_673 -4358_80787,228,4368_18987,Irishtown,11995,0,4368_7778195_4582004,4368_674 -4358_80787,229,4368_18988,Irishtown,17855,0,4368_7778195_4582006,4368_673 -4358_80787,227,4368_18989,Irishtown,5177,0,4368_7778195_4582012,4368_673 -4358_80758,228,4368_1899,Castle Ave,12715,0,4368_7778195_6130006,4368_65 -4358_80787,228,4368_18990,Irishtown,12080,0,4368_7778195_4582007,4368_674 -4358_80787,229,4368_18991,Irishtown,17820,0,4368_7778195_4582003,4368_673 -4358_80787,228,4368_18992,Irishtown,12198,0,4368_7778195_4582008,4368_673 -4358_80787,227,4368_18993,Irishtown,5185,0,4368_7778195_4582014,4368_674 -4358_80787,229,4368_18994,Irishtown,17844,0,4368_7778195_4582005,4368_673 -4358_80787,227,4368_18995,Irishtown,5131,0,4368_7778195_4582004,4368_674 -4358_80787,228,4368_18996,Irishtown,12190,0,4368_7778195_4582005,4368_675 -4358_80787,227,4368_18997,Irishtown,5022,0,4368_7778195_4582013,4368_673 -4358_80787,228,4368_18998,Irishtown,12161,0,4368_7778195_4582006,4368_674 -4358_80787,229,4368_18999,Irishtown,17797,0,4368_7778195_4582001,4368_673 -4358_80760,227,4368_19,Shaw street,1860,0,4368_7778195_9001007,4368_1 -4358_80760,227,4368_190,Shanard Road,1862,1,4368_7778195_9001009,4368_4 -4358_80758,229,4368_1900,Castle Ave,18054,0,4368_7778195_6130001,4368_65 -4358_80787,227,4368_19000,Irishtown,5165,0,4368_7778195_4582011,4368_673 -4358_80787,228,4368_19001,Irishtown,12099,0,4368_7778195_4582010,4368_674 -4358_80787,229,4368_19002,Irishtown,17811,0,4368_7778195_4582002,4368_673 -4358_80787,228,4368_19003,Irishtown,12222,0,4368_7778195_4582009,4368_673 -4358_80787,227,4368_19004,Irishtown,5056,0,4368_7778195_4582003,4368_674 -4358_80787,227,4368_19005,Irishtown,5142,0,4368_7778195_4582008,4368_673 -4358_80787,228,4368_19006,Irishtown,11931,0,4368_7778195_4582012,4368_674 -4358_80787,229,4368_19007,Irishtown,17831,0,4368_7778195_4582004,4368_675 -4358_80787,227,4368_19008,Irishtown,4866,0,4368_7778195_4582006,4368_673 -4358_80787,228,4368_19009,Irishtown,12128,0,4368_7778195_4582002,4368_674 -4358_80758,227,4368_1901,Castle Ave,5862,0,4368_7778195_6130009,4368_65 -4358_80787,229,4368_19010,Irishtown,17768,0,4368_7778195_4582007,4368_673 -4358_80787,227,4368_19011,Irishtown,5156,0,4368_7778195_4582010,4368_673 -4358_80787,228,4368_19012,Irishtown,12210,0,4368_7778195_4582011,4368_674 -4358_80787,229,4368_19013,Irishtown,17857,0,4368_7778195_4582006,4368_673 -4358_80787,227,4368_19014,Irishtown,4977,0,4368_7778195_4582001,4368_673 -4358_80787,228,4368_19015,Irishtown,11997,0,4368_7778195_4582004,4368_674 -4358_80787,229,4368_19016,Irishtown,17822,0,4368_7778195_4582003,4368_673 -4358_80787,228,4368_19017,Irishtown,12082,0,4368_7778195_4582007,4368_674 -4358_80787,227,4368_19018,Irishtown,5190,0,4368_7778195_4582015,4368_675 -4358_80787,228,4368_19019,Irishtown,12200,0,4368_7778195_4582008,4368_673 -4358_80758,228,4368_1902,Castle Ave,12681,0,4368_7778195_6130001,4368_65 -4358_80787,227,4368_19020,Irishtown,5179,0,4368_7778195_4582012,4368_674 -4358_80787,229,4368_19021,Irishtown,17846,0,4368_7778195_4582005,4368_673 -4358_80787,227,4368_19022,Irishtown,5187,0,4368_7778195_4582014,4368_673 -4358_80787,228,4368_19023,Irishtown,12192,0,4368_7778195_4582005,4368_674 -4358_80787,229,4368_19024,Irishtown,17799,0,4368_7778195_4582001,4368_673 -4358_80787,227,4368_19025,Irishtown,5133,0,4368_7778195_4582004,4368_673 -4358_80787,228,4368_19026,Irishtown,12163,0,4368_7778195_4582006,4368_674 -4358_80787,229,4368_19027,Irishtown,17813,0,4368_7778195_4582002,4368_673 -4358_80787,227,4368_19028,Irishtown,5024,0,4368_7778195_4582013,4368_674 -4358_80787,228,4368_19029,Irishtown,12101,0,4368_7778195_4582010,4368_675 -4358_80758,227,4368_1903,Castle Ave,5711,0,4368_7778195_6130003,4368_65 -4358_80787,228,4368_19030,Irishtown,12224,0,4368_7778195_4582009,4368_673 -4358_80787,227,4368_19031,Irishtown,5167,0,4368_7778195_4582011,4368_674 -4358_80787,229,4368_19032,Irishtown,17833,0,4368_7778195_4582004,4368_673 -4358_80787,227,4368_19033,Irishtown,5058,0,4368_7778195_4582003,4368_673 -4358_80787,228,4368_19034,Irishtown,11933,0,4368_7778195_4582012,4368_674 -4358_80787,229,4368_19035,Irishtown,17770,0,4368_7778195_4582007,4368_673 -4358_80787,227,4368_19036,Irishtown,5144,0,4368_7778195_4582008,4368_673 -4358_80787,228,4368_19037,Irishtown,12130,0,4368_7778195_4582002,4368_674 -4358_80787,228,4368_19038,Irishtown,12212,0,4368_7778195_4582011,4368_673 -4358_80787,227,4368_19039,Irishtown,5198,0,4368_7778195_4582016,4368_674 -4358_80758,229,4368_1904,Castle Ave,18068,0,4368_7778195_6130003,4368_65 -4358_80787,229,4368_19040,Irishtown,17859,0,4368_7778195_4582006,4368_675 -4358_80787,227,4368_19041,Irishtown,4868,0,4368_7778195_4582006,4368_673 -4358_80787,228,4368_19042,Irishtown,11999,0,4368_7778195_4582004,4368_674 -4358_80787,229,4368_19043,Irishtown,17824,0,4368_7778195_4582003,4368_673 -4358_80787,228,4368_19044,Irishtown,12084,0,4368_7778195_4582007,4368_673 -4358_80787,227,4368_19045,Irishtown,5200,0,4368_7778195_4582017,4368_674 -4358_80787,229,4368_19046,Irishtown,17848,0,4368_7778195_4582005,4368_673 -4358_80787,227,4368_19047,Irishtown,5158,0,4368_7778195_4582010,4368_673 -4358_80787,228,4368_19048,Irishtown,12202,0,4368_7778195_4582008,4368_674 -4358_80787,229,4368_19049,Irishtown,17801,0,4368_7778195_4582001,4368_673 -4358_80758,228,4368_1905,Castle Ave,12733,0,4368_7778195_6130007,4368_65 -4358_80787,227,4368_19050,Irishtown,4979,0,4368_7778195_4582001,4368_674 -4358_80787,228,4368_19051,Irishtown,12194,0,4368_7778195_4582005,4368_675 -4358_80787,228,4368_19052,Irishtown,12165,0,4368_7778195_4582006,4368_673 -4358_80787,227,4368_19053,Irishtown,5192,0,4368_7778195_4582015,4368_674 -4358_80787,229,4368_19054,Irishtown,17815,0,4368_7778195_4582002,4368_673 -4358_80787,227,4368_19055,Irishtown,5181,0,4368_7778195_4582012,4368_673 -4358_80787,228,4368_19056,Irishtown,12103,0,4368_7778195_4582010,4368_674 -4358_80787,229,4368_19057,Irishtown,17835,0,4368_7778195_4582004,4368_673 -4358_80787,228,4368_19058,Irishtown,12226,0,4368_7778195_4582009,4368_673 -4358_80787,227,4368_19059,Irishtown,5189,0,4368_7778195_4582014,4368_674 -4358_80758,227,4368_1906,Castle Ave,5944,0,4368_7778195_6130006,4368_65 -4358_80787,229,4368_19060,Irishtown,17772,0,4368_7778195_4582007,4368_673 -4358_80787,227,4368_19061,Irishtown,5135,0,4368_7778195_4582004,4368_674 -4358_80787,228,4368_19062,Irishtown,11935,0,4368_7778195_4582012,4368_675 -4358_80787,227,4368_19063,Irishtown,5169,0,4368_7778195_4582011,4368_673 -4358_80787,228,4368_19064,Irishtown,12214,0,4368_7778195_4582011,4368_673 -4358_80787,227,4368_19065,Irishtown,5060,0,4368_7778195_4582003,4368_673 -4358_80787,229,4368_19066,Irishtown,17861,0,4368_7778195_4582006,4368_674 -4358_80787,228,4368_19067,Irishtown,12001,0,4368_7778195_4582004,4368_673 -4358_80787,227,4368_19068,Irishtown,5146,0,4368_7778195_4582008,4368_673 -4358_80787,229,4368_19069,Irishtown,17850,0,4368_7778195_4582005,4368_673 -4358_80758,228,4368_1907,Castle Ave,12805,0,4368_7778195_6130004,4368_65 -4358_80787,228,4368_19070,Irishtown,12204,0,4368_7778195_4582008,4368_674 -4358_80787,227,4368_19071,Irishtown,4870,0,4368_7778195_4582006,4368_675 -4358_80787,227,4368_19072,Irishtown,5202,0,4368_7778195_4582017,4368_673 -4358_80787,228,4368_19073,Irishtown,12167,0,4368_7778195_4582006,4368_673 -4358_80787,227,4368_19074,Irishtown,5160,0,4368_7778195_4582010,4368_673 -4358_80787,229,4368_19075,Irishtown,17803,0,4368_7778195_4582001,4368_674 -4358_80787,228,4368_19076,Irishtown,12105,0,4368_7778195_4582010,4368_673 -4358_80787,227,4368_19077,Irishtown,4981,0,4368_7778195_4582001,4368_673 -4358_80787,228,4368_19078,Irishtown,12228,0,4368_7778195_4582009,4368_673 -4358_80787,227,4368_19079,Irishtown,5194,0,4368_7778195_4582015,4368_674 -4358_80758,229,4368_1908,Castle Ave,18094,0,4368_7778195_6130004,4368_65 -4358_80787,229,4368_19080,Irishtown,17837,0,4368_7778195_4582004,4368_675 -4358_80787,227,4368_19081,Irishtown,5183,0,4368_7778195_4582012,4368_673 -4358_80787,228,4368_19082,Irishtown,11937,0,4368_7778195_4582012,4368_673 -4358_80787,229,4368_19083,Irishtown,17774,0,4368_7778195_4582007,4368_673 -4358_80787,227,4368_19084,Irishtown,5171,0,4368_7778195_4582011,4368_674 -4358_80787,228,4368_19085,Irishtown,12216,0,4368_7778195_4582011,4368_673 -4358_80787,227,4368_19086,Irishtown,5062,0,4368_7778195_4582003,4368_673 -4358_80787,228,4368_19087,Irishtown,12206,0,4368_7778195_4582008,4368_673 -4358_80787,227,4368_19088,Irishtown,5148,0,4368_7778195_4582008,4368_674 -4358_80787,229,4368_19089,Irishtown,17863,0,4368_7778195_4582006,4368_675 -4358_80758,227,4368_1909,Castle Ave,5831,0,4368_7778195_6130005,4368_65 -4358_80787,227,4368_19090,Irishtown,5206,0,4368_7778195_4582018,4368_673 -4358_80787,228,4368_19091,Irishtown,12169,0,4368_7778195_4582006,4368_673 -4358_80787,229,4368_19092,Irishtown,17852,0,4368_7778195_4582005,4368_673 -4358_80787,227,4368_19093,Irishtown,5204,0,4368_7778195_4582017,4368_674 -4358_80787,228,4368_19094,Irishtown,12107,0,4368_7778195_4582010,4368_673 -4358_80787,227,4368_19095,Irishtown,4983,0,4368_7778195_4582001,4368_673 -4358_80787,228,4368_19096,Irishtown,12230,0,4368_7778195_4582009,4368_673 -4358_80787,229,4368_19097,Irishtown,17805,0,4368_7778195_4582001,4368_674 -4358_80787,227,4368_19098,Irishtown,5196,0,4368_7778195_4582015,4368_675 -4358_80787,227,4368_19099,Irishtown,5173,0,4368_7778195_4582011,4368_673 -4358_80760,229,4368_191,Shanard Road,15721,1,4368_7778195_9001002,4368_4 -4358_80758,228,4368_1910,Castle Ave,12768,0,4368_7778195_6130003,4368_65 -4358_80787,228,4368_19100,Irishtown,11939,0,4368_7778195_4582012,4368_674 -4358_80787,229,4368_19101,Irishtown,17839,0,4368_7778195_4582004,4368_675 -4358_80787,227,4368_19102,Heuston Station,4970,1,4368_7778195_4582001,4368_676 -4358_80787,227,4368_19103,Heuston Station,5108,1,4368_7778195_4582002,4368_676 -4358_80787,228,4368_19104,Heuston Station,12178,1,4368_7778195_4582001,4368_676 -4358_80787,227,4368_19105,Heuston Station,5126,1,4368_7778195_4582004,4368_676 -4358_80787,227,4368_19106,Heuston Station,5017,1,4368_7778195_4582005,4368_676 -4358_80787,228,4368_19107,Heuston Station,12121,1,4368_7778195_4582002,4368_677 -4358_80787,227,4368_19108,Heuston Station,5051,1,4368_7778195_4582003,4368_676 -4358_80787,228,4368_19109,Heuston Station,11990,1,4368_7778195_4582004,4368_676 -4358_80758,227,4368_1911,Castle Ave,5676,0,4368_7778195_6130002,4368_65 -4358_80787,227,4368_19110,Heuston Station,5137,1,4368_7778195_4582008,4368_676 -4358_80787,228,4368_19111,Heuston Station,12172,1,4368_7778195_4582003,4368_676 -4358_80787,227,4368_19112,Heuston Station,5097,1,4368_7778195_4582009,4368_676 -4358_80787,227,4368_19113,Heuston Station,4861,1,4368_7778195_4582006,4368_676 -4358_80787,229,4368_19114,Heuston Station,17792,1,4368_7778195_4582001,4368_677 -4358_80787,228,4368_19115,Heuston Station,12185,1,4368_7778195_4582005,4368_678 -4358_80787,227,4368_19116,Heuston Station,4873,1,4368_7778195_4582007,4368_676 -4358_80787,228,4368_19117,Heuston Station,12156,1,4368_7778195_4582006,4368_676 -4358_80787,227,4368_19118,Heuston Station,5151,1,4368_7778195_4582010,4368_676 -4358_80787,229,4368_19119,Heuston Station,17806,1,4368_7778195_4582002,4368_676 -4358_80758,228,4368_1912,Castle Ave,12810,0,4368_7778195_6130009,4368_65 -4358_80787,228,4368_19120,Heuston Station,12180,1,4368_7778195_4582001,4368_676 -4358_80787,227,4368_19121,Heuston Station,4972,1,4368_7778195_4582001,4368_676 -4358_80787,227,4368_19122,Heuston Station,5174,1,4368_7778195_4582012,4368_676 -4358_80787,228,4368_19123,Heuston Station,12123,1,4368_7778195_4582002,4368_677 -4358_80787,229,4368_19124,Heuston Station,17826,1,4368_7778195_4582004,4368_676 -4358_80787,227,4368_19125,Heuston Station,5110,1,4368_7778195_4582002,4368_676 -4358_80787,228,4368_19126,Heuston Station,11992,1,4368_7778195_4582004,4368_676 -4358_80787,227,4368_19127,Heuston Station,5128,1,4368_7778195_4582004,4368_676 -4358_80787,229,4368_19128,Heuston Station,17817,1,4368_7778195_4582003,4368_676 -4358_80787,228,4368_19129,Heuston Station,12077,1,4368_7778195_4582007,4368_676 -4358_80758,229,4368_1913,Castle Ave,18031,0,4368_7778195_6130002,4368_66 -4358_80787,227,4368_19130,Heuston Station,5019,1,4368_7778195_4582013,4368_676 -4358_80787,228,4368_19131,Heuston Station,12195,1,4368_7778195_4582008,4368_676 -4358_80787,229,4368_19132,Heuston Station,17841,1,4368_7778195_4582005,4368_676 -4358_80787,227,4368_19133,Heuston Station,5162,1,4368_7778195_4582011,4368_677 -4358_80787,228,4368_19134,Heuston Station,12187,1,4368_7778195_4582005,4368_676 -4358_80787,228,4368_19135,Heuston Station,12158,1,4368_7778195_4582006,4368_676 -4358_80787,227,4368_19136,Heuston Station,5053,1,4368_7778195_4582003,4368_677 -4358_80787,229,4368_19137,Heuston Station,17794,1,4368_7778195_4582001,4368_676 -4358_80787,227,4368_19138,Heuston Station,5139,1,4368_7778195_4582008,4368_676 -4358_80787,228,4368_19139,Heuston Station,12096,1,4368_7778195_4582010,4368_677 -4358_80758,227,4368_1914,Castle Ave,5777,0,4368_7778195_6130007,4368_65 -4358_80787,228,4368_19140,Heuston Station,12219,1,4368_7778195_4582009,4368_676 -4358_80787,229,4368_19141,Heuston Station,17808,1,4368_7778195_4582002,4368_677 -4358_80787,227,4368_19142,Heuston Station,5099,1,4368_7778195_4582009,4368_678 -4358_80787,227,4368_19143,Heuston Station,4863,1,4368_7778195_4582006,4368_676 -4358_80787,228,4368_19144,Heuston Station,12182,1,4368_7778195_4582001,4368_677 -4358_80787,229,4368_19145,Heuston Station,17828,1,4368_7778195_4582004,4368_676 -4358_80787,227,4368_19146,Heuston Station,5153,1,4368_7778195_4582010,4368_676 -4358_80787,228,4368_19147,Heuston Station,12125,1,4368_7778195_4582002,4368_677 -4358_80787,229,4368_19148,Heuston Station,17765,1,4368_7778195_4582007,4368_676 -4358_80787,227,4368_19149,Heuston Station,4974,1,4368_7778195_4582001,4368_676 -4358_80758,228,4368_1915,Castle Ave,12779,0,4368_7778195_6130008,4368_65 -4358_80787,228,4368_19150,Heuston Station,11994,1,4368_7778195_4582004,4368_677 -4358_80787,227,4368_19151,Heuston Station,5176,1,4368_7778195_4582012,4368_676 -4358_80787,228,4368_19152,Heuston Station,12079,1,4368_7778195_4582007,4368_677 -4358_80787,229,4368_19153,Heuston Station,17854,1,4368_7778195_4582006,4368_678 -4358_80787,228,4368_19154,Heuston Station,12197,1,4368_7778195_4582008,4368_676 -4358_80787,227,4368_19155,Heuston Station,5112,1,4368_7778195_4582002,4368_677 -4358_80787,229,4368_19156,Heuston Station,17819,1,4368_7778195_4582003,4368_676 -4358_80787,227,4368_19157,Heuston Station,5130,1,4368_7778195_4582004,4368_676 -4358_80787,228,4368_19158,Heuston Station,12189,1,4368_7778195_4582005,4368_677 -4358_80787,229,4368_19159,Heuston Station,17843,1,4368_7778195_4582005,4368_676 -4358_80758,227,4368_1916,Castle Ave,5930,0,4368_7778195_6130008,4368_65 -4358_80787,227,4368_19160,Heuston Station,5021,1,4368_7778195_4582013,4368_676 -4358_80787,228,4368_19161,Heuston Station,12160,1,4368_7778195_4582006,4368_677 -4358_80787,229,4368_19162,Heuston Station,17796,1,4368_7778195_4582001,4368_676 -4358_80787,227,4368_19163,Heuston Station,5164,1,4368_7778195_4582011,4368_677 -4358_80787,228,4368_19164,Heuston Station,12098,1,4368_7778195_4582010,4368_678 -4358_80787,228,4368_19165,Heuston Station,12221,1,4368_7778195_4582009,4368_676 -4358_80787,227,4368_19166,Heuston Station,5055,1,4368_7778195_4582003,4368_677 -4358_80787,229,4368_19167,Heuston Station,17810,1,4368_7778195_4582002,4368_676 -4358_80787,227,4368_19168,Heuston Station,5141,1,4368_7778195_4582008,4368_676 -4358_80787,228,4368_19169,Heuston Station,11930,1,4368_7778195_4582012,4368_677 -4358_80758,229,4368_1917,Castle Ave,18056,0,4368_7778195_6130001,4368_65 -4358_80787,229,4368_19170,Heuston Station,17830,1,4368_7778195_4582004,4368_676 -4358_80787,227,4368_19171,Heuston Station,4865,1,4368_7778195_4582006,4368_676 -4358_80787,228,4368_19172,Heuston Station,12127,1,4368_7778195_4582002,4368_677 -4358_80787,227,4368_19173,Heuston Station,5155,1,4368_7778195_4582010,4368_676 -4358_80787,229,4368_19174,Heuston Station,17767,1,4368_7778195_4582007,4368_677 -4358_80787,228,4368_19175,Heuston Station,12209,1,4368_7778195_4582011,4368_678 -4358_80787,227,4368_19176,Heuston Station,4976,1,4368_7778195_4582001,4368_676 -4358_80787,228,4368_19177,Heuston Station,11996,1,4368_7778195_4582004,4368_677 -4358_80787,229,4368_19178,Heuston Station,17856,1,4368_7778195_4582006,4368_676 -4358_80787,227,4368_19179,Heuston Station,5178,1,4368_7778195_4582012,4368_676 -4358_80758,228,4368_1918,Castle Ave,12825,0,4368_7778195_6130005,4368_65 -4358_80787,228,4368_19180,Heuston Station,12081,1,4368_7778195_4582007,4368_677 -4358_80787,229,4368_19181,Heuston Station,17821,1,4368_7778195_4582003,4368_676 -4358_80787,228,4368_19182,Heuston Station,12199,1,4368_7778195_4582008,4368_676 -4358_80787,227,4368_19183,Heuston Station,5186,1,4368_7778195_4582014,4368_677 -4358_80787,229,4368_19184,Heuston Station,17845,1,4368_7778195_4582005,4368_676 -4358_80787,227,4368_19185,Heuston Station,5132,1,4368_7778195_4582004,4368_677 -4358_80787,228,4368_19186,Heuston Station,12191,1,4368_7778195_4582005,4368_678 -4358_80787,227,4368_19187,Heuston Station,5023,1,4368_7778195_4582013,4368_676 -4358_80787,228,4368_19188,Heuston Station,12162,1,4368_7778195_4582006,4368_677 -4358_80787,229,4368_19189,Heuston Station,17798,1,4368_7778195_4582001,4368_676 -4358_80758,227,4368_1919,Castle Ave,5800,0,4368_7778195_6130001,4368_66 -4358_80787,227,4368_19190,Heuston Station,5166,1,4368_7778195_4582011,4368_676 -4358_80787,228,4368_19191,Heuston Station,12100,1,4368_7778195_4582010,4368_677 -4358_80787,229,4368_19192,Heuston Station,17812,1,4368_7778195_4582002,4368_676 -4358_80787,228,4368_19193,Heuston Station,12223,1,4368_7778195_4582009,4368_676 -4358_80787,227,4368_19194,Heuston Station,5057,1,4368_7778195_4582003,4368_677 -4358_80787,227,4368_19195,Heuston Station,5143,1,4368_7778195_4582008,4368_676 -4358_80787,228,4368_19196,Heuston Station,11932,1,4368_7778195_4582012,4368_677 -4358_80787,229,4368_19197,Heuston Station,17832,1,4368_7778195_4582004,4368_678 -4358_80787,227,4368_19198,Heuston Station,5197,1,4368_7778195_4582016,4368_676 -4358_80787,228,4368_19199,Heuston Station,12129,1,4368_7778195_4582002,4368_677 -4358_80760,228,4368_192,Shanard Road,9443,1,4368_7778195_9001003,4368_5 -4358_80758,229,4368_1920,Castle Ave,18070,0,4368_7778195_6130003,4368_65 -4358_80787,229,4368_19200,Heuston Station,17769,1,4368_7778195_4582007,4368_676 -4358_80787,228,4368_19201,Heuston Station,12211,1,4368_7778195_4582011,4368_676 -4358_80787,227,4368_19202,Heuston Station,4867,1,4368_7778195_4582006,4368_677 -4358_80787,229,4368_19203,Heuston Station,17858,1,4368_7778195_4582006,4368_676 -4358_80787,227,4368_19204,Heuston Station,5157,1,4368_7778195_4582010,4368_676 -4358_80787,228,4368_19205,Heuston Station,11998,1,4368_7778195_4582004,4368_677 -4358_80787,229,4368_19206,Heuston Station,17823,1,4368_7778195_4582003,4368_676 -4358_80787,228,4368_19207,Heuston Station,12083,1,4368_7778195_4582007,4368_677 -4358_80787,227,4368_19208,Heuston Station,4978,1,4368_7778195_4582001,4368_678 -4358_80787,228,4368_19209,Heuston Station,12201,1,4368_7778195_4582008,4368_676 -4358_80758,227,4368_1921,Castle Ave,5864,0,4368_7778195_6130009,4368_65 -4358_80787,227,4368_19210,Heuston Station,5191,1,4368_7778195_4582015,4368_677 -4358_80787,229,4368_19211,Heuston Station,17847,1,4368_7778195_4582005,4368_676 -4358_80787,227,4368_19212,Heuston Station,5180,1,4368_7778195_4582012,4368_676 -4358_80787,228,4368_19213,Heuston Station,12193,1,4368_7778195_4582005,4368_677 -4358_80787,229,4368_19214,Heuston Station,17800,1,4368_7778195_4582001,4368_676 -4358_80787,227,4368_19215,Heuston Station,5188,1,4368_7778195_4582014,4368_676 -4358_80787,228,4368_19216,Heuston Station,12164,1,4368_7778195_4582006,4368_677 -4358_80787,229,4368_19217,Heuston Station,17814,1,4368_7778195_4582002,4368_676 -4358_80787,227,4368_19218,Heuston Station,5134,1,4368_7778195_4582004,4368_677 -4358_80787,228,4368_19219,Heuston Station,12102,1,4368_7778195_4582010,4368_678 -4358_80758,228,4368_1922,Castle Ave,12855,0,4368_7778195_6130010,4368_65 -4358_80787,228,4368_19220,Heuston Station,12225,1,4368_7778195_4582009,4368_676 -4358_80787,227,4368_19221,Heuston Station,5025,1,4368_7778195_4582013,4368_677 -4358_80787,229,4368_19222,Heuston Station,17834,1,4368_7778195_4582004,4368_676 -4358_80787,227,4368_19223,Heuston Station,5168,1,4368_7778195_4582011,4368_676 -4358_80787,228,4368_19224,Heuston Station,11934,1,4368_7778195_4582012,4368_677 -4358_80787,229,4368_19225,Heuston Station,17771,1,4368_7778195_4582007,4368_676 -4358_80787,228,4368_19226,Heuston Station,12131,1,4368_7778195_4582002,4368_676 -4358_80787,227,4368_19227,Heuston Station,5059,1,4368_7778195_4582003,4368_677 -4358_80787,228,4368_19228,Heuston Station,12213,1,4368_7778195_4582011,4368_676 -4358_80787,227,4368_19229,Heuston Station,5145,1,4368_7778195_4582008,4368_677 -4358_80758,227,4368_1923,Castle Ave,5713,0,4368_7778195_6130003,4368_65 -4358_80787,229,4368_19230,Heuston Station,17860,1,4368_7778195_4582006,4368_678 -4358_80787,227,4368_19231,Heuston Station,5199,1,4368_7778195_4582016,4368_676 -4358_80787,228,4368_19232,Heuston Station,12000,1,4368_7778195_4582004,4368_677 -4358_80787,229,4368_19233,Heuston Station,17825,1,4368_7778195_4582003,4368_676 -4358_80787,227,4368_19234,Heuston Station,4869,1,4368_7778195_4582006,4368_676 -4358_80787,228,4368_19235,Heuston Station,12085,1,4368_7778195_4582007,4368_677 -4358_80787,229,4368_19236,Heuston Station,17849,1,4368_7778195_4582005,4368_676 -4358_80787,228,4368_19237,Heuston Station,12203,1,4368_7778195_4582008,4368_676 -4358_80787,227,4368_19238,Heuston Station,5201,1,4368_7778195_4582017,4368_677 -4358_80787,227,4368_19239,Heuston Station,5159,1,4368_7778195_4582010,4368_676 -4358_80758,228,4368_1924,Castle Ave,12717,0,4368_7778195_6130006,4368_65 -4358_80787,228,4368_19240,Heuston Station,12166,1,4368_7778195_4582006,4368_676 -4358_80787,229,4368_19241,Heuston Station,17802,1,4368_7778195_4582001,4368_676 -4358_80787,227,4368_19242,Heuston Station,4980,1,4368_7778195_4582001,4368_676 -4358_80787,228,4368_19243,Heuston Station,12104,1,4368_7778195_4582010,4368_676 -4358_80787,227,4368_19244,Heuston Station,5193,1,4368_7778195_4582015,4368_676 -4358_80787,229,4368_19245,Heuston Station,17836,1,4368_7778195_4582004,4368_676 -4358_80787,228,4368_19246,Heuston Station,12227,1,4368_7778195_4582009,4368_676 -4358_80787,227,4368_19247,Heuston Station,5182,1,4368_7778195_4582012,4368_677 -4358_80787,227,4368_19248,Heuston Station,5136,1,4368_7778195_4582004,4368_676 -4358_80787,228,4368_19249,Heuston Station,11936,1,4368_7778195_4582012,4368_676 -4358_80758,229,4368_1925,Castle Ave,17997,0,4368_7778195_6130005,4368_66 -4358_80787,229,4368_19250,Heuston Station,17773,1,4368_7778195_4582007,4368_676 -4358_80787,227,4368_19251,Heuston Station,5170,1,4368_7778195_4582011,4368_676 -4358_80787,228,4368_19252,Heuston Station,12215,1,4368_7778195_4582011,4368_676 -4358_80787,227,4368_19253,Heuston Station,5061,1,4368_7778195_4582003,4368_676 -4358_80787,229,4368_19254,Heuston Station,17862,1,4368_7778195_4582006,4368_676 -4358_80787,228,4368_19255,Heuston Station,12205,1,4368_7778195_4582008,4368_676 -4358_80787,227,4368_19256,Heuston Station,5147,1,4368_7778195_4582008,4368_677 -4358_80787,227,4368_19257,Heuston Station,4871,1,4368_7778195_4582006,4368_676 -4358_80787,228,4368_19258,Heuston Station,12168,1,4368_7778195_4582006,4368_676 -4358_80787,229,4368_19259,Heuston Station,17851,1,4368_7778195_4582005,4368_676 -4358_80758,227,4368_1926,Castle Ave,5946,0,4368_7778195_6130006,4368_65 -4358_80787,227,4368_19260,Heuston Station,5203,1,4368_7778195_4582017,4368_676 -4358_80787,228,4368_19261,Heuston Station,12106,1,4368_7778195_4582010,4368_676 -4358_80787,227,4368_19262,Heuston Station,4982,1,4368_7778195_4582001,4368_676 -4358_80787,229,4368_19263,Heuston Station,17804,1,4368_7778195_4582001,4368_676 -4358_80787,228,4368_19264,Heuston Station,12229,1,4368_7778195_4582009,4368_676 -4358_80787,227,4368_19265,Heuston Station,5195,1,4368_7778195_4582015,4368_677 -4358_80787,227,4368_19266,Heuston Station,5184,1,4368_7778195_4582012,4368_676 -4358_80787,228,4368_19267,Heuston Station,11938,1,4368_7778195_4582012,4368_676 -4358_80787,229,4368_19268,Heuston Station,17838,1,4368_7778195_4582004,4368_676 -4358_80787,227,4368_19269,Heuston Station,5172,1,4368_7778195_4582011,4368_676 -4358_80758,228,4368_1927,Castle Ave,12735,0,4368_7778195_6130007,4368_65 -4358_80787,228,4368_19270,Heuston Station,12217,1,4368_7778195_4582011,4368_676 -4358_80787,227,4368_19271,Heuston Station,5063,1,4368_7778195_4582003,4368_676 -4358_80787,229,4368_19272,Heuston Station,17775,1,4368_7778195_4582007,4368_676 -4358_80787,228,4368_19273,Heuston Station,12207,1,4368_7778195_4582008,4368_676 -4358_80787,227,4368_19274,Heuston Station,5149,1,4368_7778195_4582008,4368_677 -4358_80787,229,4368_19275,Heuston Station,17864,1,4368_7778195_4582006,4368_676 -4358_80787,228,4368_19276,Heuston Station,12170,1,4368_7778195_4582006,4368_676 -4358_80787,227,4368_19277,Heuston Station,5205,1,4368_7778195_4582017,4368_677 -4358_80768,227,4368_19278,Maynooth,3639,0,4368_7778195_7872232,4368_679 -4358_80768,227,4368_19279,Maynooth,6421,0,4368_7778195_7325671,4368_679 -4358_80758,227,4368_1928,Castle Ave,5833,0,4368_7778195_6130005,4368_65 -4358_80768,227,4368_19280,Maynooth,6417,0,4368_7778195_7325669,4368_680 -4358_80768,227,4368_19281,Maynooth,6467,0,4368_7778195_7325685,4368_679 -4358_80768,227,4368_19282,Maynooth,6419,0,4368_7778195_7325670,4368_680 -4358_80768,227,4368_19283,UCD Belfield,3640,1,4368_7778195_7872132,4368_681 -4358_80768,227,4368_19284,UCD Belfield,6418,1,4368_7778195_7325570,4368_683 -4358_80768,227,4368_19285,UCD Belfield,6414,1,4368_7778195_7325568,4368_681 -4358_80768,227,4368_19286,Leeson Street Lr,6420,1,4368_7778195_7325571,4368_682 -4358_80769,227,4368_19287,Leeson Street Lr,6426,1,4368_7778195_7326573,4368_684 -4358_80769,227,4368_19288,Leeson Street Lr,3635,1,4368_7778195_7872110,4368_684 -4358_80769,227,4368_19289,Leeson Street Lr,3633,1,4368_7778195_7872109,4368_684 -4358_80758,229,4368_1929,Castle Ave,18096,0,4368_7778195_6130004,4368_65 -4358_80770,227,4368_19290,Salesian College,6460,0,4368_7778195_7327675,4368_685 -4358_80770,227,4368_19291,Salesian College,7868,0,4368_7778195_8828108,4368_685 -4358_80770,227,4368_19292,Salesian College,6415,0,4368_7778195_7327668,4368_686 -4358_80770,227,4368_19293,Salesian College,7865,0,4368_7778195_8828105,4368_686 -4358_80770,227,4368_19294,Leeson Street Lr,7867,1,4368_7778195_8828107,4368_688 -4358_80770,227,4368_19295,UCD Belfield,6461,1,4368_7778195_7327575,4368_687 -4358_80770,227,4368_19296,UCD Belfield,6441,1,4368_7778195_7327558,4368_687 -4358_80770,227,4368_19297,UCD Belfield,6453,1,4368_7778195_7327564,4368_687 -4358_80771,227,4368_19298,Salesian College,5971,0,4368_7778195_6826209,4368_689 -4358_80771,227,4368_19299,Salesian College,6454,0,4368_7778195_7328664,4368_690 -4358_80760,227,4368_193,Shanard Road,1698,1,4368_7778195_9001008,4368_4 -4358_80758,228,4368_1930,Castle Ave,12812,0,4368_7778195_6130009,4368_65 -4358_80771,227,4368_19300,Salesian College,5982,0,4368_7778195_6826217,4368_689 -4358_80771,227,4368_19301,Salesian College,5977,0,4368_7778195_6826211,4368_690 -4358_80771,227,4368_19302,Leeson Street Lr,6409,1,4368_7778195_7328572,4368_691 -4358_80771,227,4368_19303,UCD Belfield,7859,1,4368_7778195_8828103,4368_692 -4358_80771,227,4368_19304,UCD Belfield,3637,1,4368_7778195_7872111,4368_692 -4358_80771,227,4368_19305,Leeson Street Lr,6416,1,4368_7778195_7328569,4368_691 -4358_80771,227,4368_19306,Leeson Street Lr,5973,1,4368_7778195_6826110,4368_691 -4358_80772,227,4368_19307,Adamstown Station,6458,0,4368_7778195_7330667,4368_693 -4358_80772,227,4368_19308,Adamstown Station,6430,0,4368_7778195_7330651,4368_693 -4358_80772,227,4368_19309,UCD Belfield,6457,1,4368_7778195_7330567,4368_694 -4358_80758,227,4368_1931,Castle Ave,5678,0,4368_7778195_6130002,4368_66 -4358_80772,227,4368_19310,UCD Belfield,6431,1,4368_7778195_7330552,4368_694 -4358_80772,227,4368_19311,UCD Belfield,7870,1,4368_7778195_8828110,4368_695 -4358_80772,227,4368_19312,UCD Belfield,7872,1,4368_7778195_8828109,4368_694 -4358_80773,227,4368_19313,River Forest,7785,0,4368_7778195_8818203,4368_696 -4358_80773,227,4368_19314,River Forest,6444,0,4368_7778195_7331659,4368_696 -4358_80773,227,4368_19315,River Forest,6446,0,4368_7778195_7331660,4368_696 -4358_80773,227,4368_19316,Earlsfort Terrace,6443,1,4368_7778195_7331559,4368_697 -4358_80773,227,4368_19317,Earlsfort Terrace,7784,1,4368_7778195_8818103,4368_697 -4358_80773,227,4368_19318,Earlsfort Terrace,6445,1,4368_7778195_7331560,4368_697 -4358_80774,227,4368_19319,Hewlett Packard,3642,0,4368_7778195_7872234,4368_698 -4358_80758,229,4368_1932,Castle Ave,18033,0,4368_7778195_6130002,4368_65 -4358_80774,227,4368_19320,Hewlett Packard,6413,0,4368_7778195_7332667,4368_698 -4358_80774,227,4368_19321,Earlsfort Terrace,3641,1,4368_7778195_7872134,4368_699 -4358_80774,227,4368_19322,Earlsfort Terrace,6412,1,4368_7778195_7332567,4368_699 -4358_80758,227,4368_1933,Castle Ave,5779,0,4368_7778195_6130007,4368_65 -4358_80758,228,4368_1934,Castle Ave,12781,0,4368_7778195_6130008,4368_65 -4358_80758,227,4368_1935,Castle Ave,5932,0,4368_7778195_6130008,4368_65 -4358_80758,229,4368_1936,Castle Ave,18058,0,4368_7778195_6130001,4368_65 -4358_80758,228,4368_1937,Castle Ave,12827,0,4368_7778195_6130005,4368_66 -4358_80758,227,4368_1938,Castle Ave,5802,0,4368_7778195_6130001,4368_65 -4358_80758,228,4368_1939,Castle Ave,12857,0,4368_7778195_6130010,4368_65 -4358_80760,227,4368_194,Shanard Road,1816,1,4368_7778195_9001001,4368_4 -4358_80758,227,4368_1940,Castle Ave,5866,0,4368_7778195_6130009,4368_65 -4358_80758,229,4368_1941,Castle Ave,18072,0,4368_7778195_6130003,4368_65 -4358_80758,227,4368_1942,Castle Ave,5715,0,4368_7778195_6130003,4368_65 -4358_80758,228,4368_1943,Castle Ave,12719,0,4368_7778195_6130006,4368_66 -4358_80758,229,4368_1944,Castle Ave,17999,0,4368_7778195_6130005,4368_65 -4358_80758,227,4368_1945,Castle Ave,5948,0,4368_7778195_6130006,4368_65 -4358_80758,228,4368_1946,Castle Ave,12737,0,4368_7778195_6130007,4368_65 -4358_80758,227,4368_1947,Castle Ave,5835,0,4368_7778195_6130005,4368_65 -4358_80758,228,4368_1948,Castle Ave,12814,0,4368_7778195_6130009,4368_65 -4358_80758,229,4368_1949,Castle Ave,18098,0,4368_7778195_6130004,4368_66 -4358_80760,228,4368_195,Shanard Road,9481,1,4368_7778195_9001004,4368_5 -4358_80758,227,4368_1950,Castle Ave,5680,0,4368_7778195_6130002,4368_65 -4358_80758,228,4368_1951,Castle Ave,12783,0,4368_7778195_6130008,4368_65 -4358_80758,227,4368_1952,Castle Ave,5781,0,4368_7778195_6130007,4368_65 -4358_80758,229,4368_1953,Castle Ave,18035,0,4368_7778195_6130002,4368_65 -4358_80758,227,4368_1954,Castle Ave,5934,0,4368_7778195_6130008,4368_65 -4358_80758,228,4368_1955,Castle Ave,12829,0,4368_7778195_6130005,4368_66 -4358_80758,229,4368_1956,Castle Ave,18060,0,4368_7778195_6130001,4368_65 -4358_80758,227,4368_1957,Castle Ave,5804,0,4368_7778195_6130001,4368_65 -4358_80758,228,4368_1958,Castle Ave,12859,0,4368_7778195_6130010,4368_65 -4358_80758,227,4368_1959,Castle Ave,5889,0,4368_7778195_6130010,4368_65 -4358_80760,229,4368_196,Shanard Road,15684,1,4368_7778195_9001001,4368_4 -4358_80758,228,4368_1960,Castle Ave,12721,0,4368_7778195_6130006,4368_65 -4358_80758,229,4368_1961,Castle Ave,18074,0,4368_7778195_6130003,4368_65 -4358_80758,227,4368_1962,Castle Ave,5868,0,4368_7778195_6130009,4368_65 -4358_80758,228,4368_1963,Castle Ave,12739,0,4368_7778195_6130007,4368_65 -4358_80758,227,4368_1964,Castle Ave,5717,0,4368_7778195_6130003,4368_65 -4358_80758,229,4368_1965,Castle Ave,18001,0,4368_7778195_6130005,4368_65 -4358_80758,228,4368_1966,Castle Ave,12741,0,4368_7778195_6130012,4368_65 -4358_80758,227,4368_1967,Castle Ave,5950,0,4368_7778195_6130006,4368_65 -4358_80758,228,4368_1968,Castle Ave,12690,0,4368_7778195_6130011,4368_65 -4358_80758,229,4368_1969,Castle Ave,18100,0,4368_7778195_6130004,4368_65 -4358_80760,227,4368_197,Shanard Road,1653,1,4368_7778195_9001003,4368_4 -4358_80758,227,4368_1970,Castle Ave,5837,0,4368_7778195_6130005,4368_65 -4358_80758,228,4368_1971,Castle Ave,12816,0,4368_7778195_6130009,4368_65 -4358_80758,227,4368_1972,Castle Ave,5682,0,4368_7778195_6130002,4368_65 -4358_80758,229,4368_1973,Castle Ave,18037,0,4368_7778195_6130002,4368_65 -4358_80758,228,4368_1974,Castle Ave,12785,0,4368_7778195_6130008,4368_65 -4358_80758,227,4368_1975,Castle Ave,5783,0,4368_7778195_6130007,4368_65 -4358_80758,228,4368_1976,Castle Ave,12831,0,4368_7778195_6130005,4368_65 -4358_80758,227,4368_1977,Castle Ave,5936,0,4368_7778195_6130008,4368_65 -4358_80758,229,4368_1978,Castle Ave,18062,0,4368_7778195_6130001,4368_65 -4358_80758,228,4368_1979,Castle Ave,12861,0,4368_7778195_6130010,4368_65 -4358_80760,228,4368_198,Shanard Road,9313,1,4368_7778195_9001002,4368_4 -4358_80758,227,4368_1980,Castle Ave,5806,0,4368_7778195_6130001,4368_65 -4358_80758,229,4368_1981,Castle Ave,18076,0,4368_7778195_6130003,4368_65 -4358_80758,228,4368_1982,Castle Ave,12723,0,4368_7778195_6130006,4368_65 -4358_80758,227,4368_1983,Castle Ave,5891,0,4368_7778195_6130010,4368_65 -4358_80758,227,4368_1984,Castle Ave,5870,0,4368_7778195_6130009,4368_65 -4358_80758,228,4368_1985,Castle Ave,12743,0,4368_7778195_6130012,4368_65 -4358_80758,229,4368_1986,Castle Ave,18003,0,4368_7778195_6130005,4368_66 -4358_80758,227,4368_1987,Castle Ave,5719,0,4368_7778195_6130003,4368_65 -4358_80758,227,4368_1988,Castle Ave,5952,0,4368_7778195_6130006,4368_65 -4358_80758,229,4368_1989,Castle Ave,18102,0,4368_7778195_6130004,4368_65 -4358_80760,227,4368_199,Shanard Road,1587,1,4368_7778195_9001005,4368_4 -4358_80758,228,4368_1990,Castle Ave,12692,0,4368_7778195_6130011,4368_66 -4358_80758,227,4368_1991,Castle Ave,5839,0,4368_7778195_6130005,4368_65 -4358_80758,229,4368_1992,Castle Ave,18039,0,4368_7778195_6130002,4368_65 -4358_80758,228,4368_1993,Castle Ave,12833,0,4368_7778195_6130005,4368_66 -4358_80758,227,4368_1994,Castle Ave,5785,0,4368_7778195_6130007,4368_65 -4358_80758,228,4368_1995,Castle Ave,12863,0,4368_7778195_6130010,4368_65 -4358_80758,229,4368_1996,Castle Ave,18078,0,4368_7778195_6130003,4368_65 -4358_80758,227,4368_1997,Castle Ave,5893,0,4368_7778195_6130010,4368_65 -4358_80758,228,4368_1998,Castle Ave,12725,0,4368_7778195_6130006,4368_65 -4358_80758,229,4368_1999,Castle Ave,18005,0,4368_7778195_6130005,4368_65 -4358_80760,227,4368_2,Shaw street,1650,0,4368_7778195_9001003,4368_1 -4358_80760,229,4368_20,Shaw street,15683,0,4368_7778195_9001001,4368_1 -4358_80760,227,4368_200,Shanard Road,1540,1,4368_7778195_9001010,4368_4 -4358_80758,227,4368_2000,Castle Ave,5872,0,4368_7778195_6130009,4368_65 -4358_80758,228,4368_2001,Castle Ave,12745,0,4368_7778195_6130012,4368_65 -4358_80758,227,4368_2002,Castle Ave,5954,0,4368_7778195_6130006,4368_65 -4358_80758,229,4368_2003,Castle Ave,18104,0,4368_7778195_6130004,4368_66 -4358_80758,228,4368_2004,Castle Ave,12835,0,4368_7778195_6130005,4368_65 -4358_80758,227,4368_2005,Castle Ave,5841,0,4368_7778195_6130005,4368_65 -4358_80758,229,4368_2006,Castle Ave,18085,0,4368_7778195_6130006,4368_65 -4358_80758,228,4368_2007,Castle Ave,12865,0,4368_7778195_6130010,4368_65 -4358_80758,227,4368_2008,Castle Ave,5787,0,4368_7778195_6130007,4368_65 -4358_80758,229,4368_2009,Castle Ave,18080,0,4368_7778195_6130003,4368_65 -4358_80760,229,4368_201,Shanard Road,15723,1,4368_7778195_9001002,4368_4 -4358_80758,228,4368_2010,Castle Ave,12727,0,4368_7778195_6130006,4368_65 -4358_80758,227,4368_2011,Castle Ave,5874,0,4368_7778195_6130009,4368_65 -4358_80758,228,4368_2012,Castle Ave,12747,0,4368_7778195_6130012,4368_65 -4358_80758,229,4368_2013,Castle Ave,18007,0,4368_7778195_6130005,4368_66 -4358_80758,227,4368_2014,Castle Ave,5956,0,4368_7778195_6130006,4368_65 -4358_80758,228,4368_2015,Castle Ave,12837,0,4368_7778195_6130005,4368_65 -4358_80758,229,4368_2016,Castle Ave,18087,0,4368_7778195_6130006,4368_65 -4358_80758,227,4368_2017,Castle Ave,5843,0,4368_7778195_6130005,4368_65 -4358_80758,228,4368_2018,Castle Ave,12867,0,4368_7778195_6130010,4368_65 -4358_80758,229,4368_2019,Castle Ave,18082,0,4368_7778195_6130003,4368_65 -4358_80760,228,4368_202,Shanard Road,9375,1,4368_7778195_9001001,4368_5 -4358_80758,227,4368_2020,Castle Ave,5789,0,4368_7778195_6130007,4368_66 -4358_80758,228,4368_2021,Castle Ave,12729,0,4368_7778195_6130006,4368_65 -4358_80758,227,4368_2022,Castle Ave,5876,0,4368_7778195_6130009,4368_65 -4358_80758,229,4368_2023,Castle Ave,18009,0,4368_7778195_6130005,4368_66 -4358_80758,228,4368_2024,Castle Ave,12749,0,4368_7778195_6130012,4368_65 -4358_80758,227,4368_2025,Castle Ave,5958,0,4368_7778195_6130006,4368_65 -4358_80758,229,4368_2026,Castle Ave,18089,0,4368_7778195_6130006,4368_66 -4358_80758,228,4368_2027,Castle Ave,12839,0,4368_7778195_6130005,4368_67 -4358_80758,227,4368_2028,Talbot Street,5791,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2029,Talbot Street,5704,1,4368_7778195_6130003,4368_68 -4358_80760,227,4368_203,Shanard Road,1634,1,4368_7778195_9001011,4368_4 -4358_80758,228,4368_2030,Talbot Street,12769,1,4368_7778195_6130002,4368_68 -4358_80758,227,4368_2031,Talbot Street,5819,1,4368_7778195_6130004,4368_68 -4358_80758,228,4368_2032,Talbot Street,12674,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2033,Talbot Street,5824,1,4368_7778195_6130005,4368_69 -4358_80758,227,4368_2034,Talbot Street,5669,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2035,Talbot Street,12798,1,4368_7778195_6130004,4368_68 -4358_80758,227,4368_2036,Talbot Street,5770,1,4368_7778195_6130007,4368_68 -4358_80758,229,4368_2037,Talbot Street,18047,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2038,Talbot Street,5923,1,4368_7778195_6130008,4368_69 -4358_80758,228,4368_2039,Talbot Street,12761,1,4368_7778195_6130003,4368_70 -4358_80760,227,4368_204,Shanard Road,3138,1,4368_7778195_9001004,4368_4 -4358_80758,227,4368_2040,Talbot Street,5793,1,4368_7778195_6130001,4368_68 -4358_80758,228,4368_2041,Talbot Street,12771,1,4368_7778195_6130002,4368_68 -4358_80758,227,4368_2042,Talbot Street,5857,1,4368_7778195_6130009,4368_68 -4358_80758,229,4368_2043,Talbot Street,18024,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2044,Talbot Street,12818,1,4368_7778195_6130005,4368_69 -4358_80758,227,4368_2045,Talbot Street,5706,1,4368_7778195_6130003,4368_68 -4358_80758,228,4368_2046,Talbot Street,12676,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2047,Talbot Street,5939,1,4368_7778195_6130006,4368_68 -4358_80758,229,4368_2048,Talbot Street,18049,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2049,Talbot Street,5821,1,4368_7778195_6130004,4368_69 -4358_80760,229,4368_205,Shanard Road,15508,1,4368_7778195_9001003,4368_5 -4358_80758,228,4368_2050,Talbot Street,12800,1,4368_7778195_6130004,4368_70 -4358_80758,227,4368_2051,Talbot Street,5826,1,4368_7778195_6130005,4368_68 -4358_80758,228,4368_2052,Talbot Street,12763,1,4368_7778195_6130003,4368_68 -4358_80758,227,4368_2053,Talbot Street,5671,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2054,Talbot Street,12773,1,4368_7778195_6130002,4368_68 -4358_80758,229,4368_2055,Talbot Street,18063,1,4368_7778195_6130003,4368_69 -4358_80758,227,4368_2056,Talbot Street,5772,1,4368_7778195_6130007,4368_68 -4358_80758,228,4368_2057,Talbot Street,12820,1,4368_7778195_6130005,4368_68 -4358_80758,227,4368_2058,Talbot Street,5925,1,4368_7778195_6130008,4368_68 -4358_80758,228,4368_2059,Talbot Street,12712,1,4368_7778195_6130006,4368_68 -4358_80760,228,4368_206,Shanard Road,9505,1,4368_7778195_9001005,4368_6 -4358_80758,229,4368_2060,Talbot Street,18026,1,4368_7778195_6130002,4368_69 -4358_80758,227,4368_2061,Talbot Street,5795,1,4368_7778195_6130001,4368_70 -4358_80758,227,4368_2062,Talbot Street,5859,1,4368_7778195_6130009,4368_68 -4358_80758,228,4368_2063,Talbot Street,12678,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2064,Talbot Street,5708,1,4368_7778195_6130003,4368_68 -4358_80758,229,4368_2065,Talbot Street,18051,1,4368_7778195_6130001,4368_68 -4358_80758,228,4368_2066,Talbot Street,12802,1,4368_7778195_6130004,4368_69 -4358_80758,227,4368_2067,Talbot Street,5941,1,4368_7778195_6130006,4368_68 -4358_80758,228,4368_2068,Talbot Street,12765,1,4368_7778195_6130003,4368_68 -4358_80758,227,4368_2069,Talbot Street,5828,1,4368_7778195_6130005,4368_68 -4358_80760,227,4368_207,Shanard Road,1844,1,4368_7778195_9001006,4368_4 -4358_80758,229,4368_2070,Talbot Street,18065,1,4368_7778195_6130003,4368_68 -4358_80758,228,4368_2071,Talbot Street,12775,1,4368_7778195_6130002,4368_68 -4358_80758,227,4368_2072,Talbot Street,5673,1,4368_7778195_6130002,4368_69 -4358_80758,229,4368_2073,Talbot Street,18091,1,4368_7778195_6130004,4368_68 -4358_80758,227,4368_2074,Talbot Street,5774,1,4368_7778195_6130007,4368_68 -4358_80758,228,4368_2075,Talbot Street,12822,1,4368_7778195_6130005,4368_68 -4358_80758,227,4368_2076,Talbot Street,5927,1,4368_7778195_6130008,4368_68 -4358_80758,228,4368_2077,Talbot Street,12714,1,4368_7778195_6130006,4368_68 -4358_80758,229,4368_2078,Talbot Street,18028,1,4368_7778195_6130002,4368_69 -4358_80758,227,4368_2079,Talbot Street,5797,1,4368_7778195_6130001,4368_68 -4358_80760,229,4368_208,Shanard Road,15686,1,4368_7778195_9001001,4368_4 -4358_80758,228,4368_2080,Talbot Street,12680,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2081,Talbot Street,5861,1,4368_7778195_6130009,4368_68 -4358_80758,229,4368_2082,Talbot Street,18053,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2083,Talbot Street,5710,1,4368_7778195_6130003,4368_68 -4358_80758,228,4368_2084,Talbot Street,12732,1,4368_7778195_6130007,4368_69 -4358_80758,229,4368_2085,Talbot Street,18067,1,4368_7778195_6130003,4368_68 -4358_80758,227,4368_2086,Talbot Street,5943,1,4368_7778195_6130006,4368_68 -4358_80758,228,4368_2087,Talbot Street,12804,1,4368_7778195_6130004,4368_68 -4358_80758,227,4368_2088,Talbot Street,5830,1,4368_7778195_6130005,4368_68 -4358_80758,228,4368_2089,Talbot Street,12767,1,4368_7778195_6130003,4368_68 -4358_80760,228,4368_209,Shanard Road,9445,1,4368_7778195_9001003,4368_5 -4358_80758,229,4368_2090,Talbot Street,18093,1,4368_7778195_6130004,4368_69 -4358_80758,227,4368_2091,Talbot Street,5675,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2092,Talbot Street,12777,1,4368_7778195_6130002,4368_68 -4358_80758,227,4368_2093,Talbot Street,5776,1,4368_7778195_6130007,4368_68 -4358_80758,229,4368_2094,Talbot Street,18030,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2095,Talbot Street,12778,1,4368_7778195_6130008,4368_68 -4358_80758,227,4368_2096,Talbot Street,5929,1,4368_7778195_6130008,4368_69 -4358_80758,229,4368_2097,Talbot Street,18055,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2098,Talbot Street,5799,1,4368_7778195_6130001,4368_68 -4358_80758,228,4368_2099,Talbot Street,12824,1,4368_7778195_6130005,4368_68 -4358_80760,227,4368_21,Shaw street,1633,0,4368_7778195_9001011,4368_1 -4358_80760,227,4368_210,Shanard Road,1700,1,4368_7778195_9001008,4368_4 -4358_80758,227,4368_2100,Talbot Street,5863,1,4368_7778195_6130009,4368_68 -4358_80758,228,4368_2101,Talbot Street,12716,1,4368_7778195_6130006,4368_68 -4358_80758,229,4368_2102,Talbot Street,18069,1,4368_7778195_6130003,4368_69 -4358_80758,227,4368_2103,Talbot Street,5712,1,4368_7778195_6130003,4368_68 -4358_80758,228,4368_2104,Talbot Street,12734,1,4368_7778195_6130007,4368_68 -4358_80758,227,4368_2105,Talbot Street,5945,1,4368_7778195_6130006,4368_68 -4358_80758,229,4368_2106,Talbot Street,17996,1,4368_7778195_6130005,4368_68 -4358_80758,227,4368_2107,Talbot Street,5832,1,4368_7778195_6130005,4368_68 -4358_80758,228,4368_2108,Talbot Street,12806,1,4368_7778195_6130004,4368_69 -4358_80758,229,4368_2109,Talbot Street,18095,1,4368_7778195_6130004,4368_68 -4358_80760,227,4368_211,Shanard Road,1818,1,4368_7778195_9001001,4368_4 -4358_80758,227,4368_2110,Talbot Street,5677,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2111,Talbot Street,12811,1,4368_7778195_6130009,4368_68 -4358_80758,227,4368_2112,Talbot Street,5778,1,4368_7778195_6130007,4368_68 -4358_80758,228,4368_2113,Talbot Street,12780,1,4368_7778195_6130008,4368_68 -4358_80758,229,4368_2114,Talbot Street,18032,1,4368_7778195_6130002,4368_69 -4358_80758,227,4368_2115,Talbot Street,5931,1,4368_7778195_6130008,4368_68 -4358_80758,228,4368_2116,Talbot Street,12826,1,4368_7778195_6130005,4368_68 -4358_80758,227,4368_2117,Talbot Street,5801,1,4368_7778195_6130001,4368_68 -4358_80758,229,4368_2118,Talbot Street,18057,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2119,Talbot Street,5865,1,4368_7778195_6130009,4368_68 -4358_80760,228,4368_212,Shanard Road,9483,1,4368_7778195_9001004,4368_4 -4358_80758,228,4368_2120,Talbot Street,12856,1,4368_7778195_6130010,4368_69 -4358_80758,229,4368_2121,Talbot Street,18071,1,4368_7778195_6130003,4368_68 -4358_80758,227,4368_2122,Talbot Street,5714,1,4368_7778195_6130003,4368_68 -4358_80758,228,4368_2123,Talbot Street,12718,1,4368_7778195_6130006,4368_68 -4358_80758,227,4368_2124,Talbot Street,5947,1,4368_7778195_6130006,4368_68 -4358_80758,228,4368_2125,Talbot Street,12736,1,4368_7778195_6130007,4368_68 -4358_80758,229,4368_2126,Talbot Street,17998,1,4368_7778195_6130005,4368_69 -4358_80758,227,4368_2127,Talbot Street,5834,1,4368_7778195_6130005,4368_68 -4358_80758,228,4368_2128,Talbot Street,12813,1,4368_7778195_6130009,4368_68 -4358_80758,227,4368_2129,Talbot Street,5679,1,4368_7778195_6130002,4368_68 -4358_80760,229,4368_213,Shanard Road,15584,1,4368_7778195_9001004,4368_5 -4358_80758,229,4368_2130,Talbot Street,18097,1,4368_7778195_6130004,4368_68 -4358_80758,228,4368_2131,Talbot Street,12782,1,4368_7778195_6130008,4368_68 -4358_80758,227,4368_2132,Talbot Street,5780,1,4368_7778195_6130007,4368_69 -4358_80758,229,4368_2133,Talbot Street,18034,1,4368_7778195_6130002,4368_68 -4358_80758,227,4368_2134,Talbot Street,5933,1,4368_7778195_6130008,4368_68 -4358_80758,228,4368_2135,Talbot Street,12828,1,4368_7778195_6130005,4368_68 -4358_80758,227,4368_2136,Talbot Street,5803,1,4368_7778195_6130001,4368_68 -4358_80758,229,4368_2137,Talbot Street,18059,1,4368_7778195_6130001,4368_68 -4358_80758,228,4368_2138,Talbot Street,12858,1,4368_7778195_6130010,4368_69 -4358_80758,227,4368_2139,Talbot Street,5888,1,4368_7778195_6130010,4368_68 -4358_80760,227,4368_214,Shanard Road,1655,1,4368_7778195_9001003,4368_4 -4358_80758,228,4368_2140,Talbot Street,12720,1,4368_7778195_6130006,4368_68 -4358_80758,227,4368_2141,Talbot Street,5867,1,4368_7778195_6130009,4368_68 -4358_80758,229,4368_2142,Talbot Street,18073,1,4368_7778195_6130003,4368_68 -4358_80758,227,4368_2143,Talbot Street,5716,1,4368_7778195_6130003,4368_68 -4358_80758,228,4368_2144,Talbot Street,12738,1,4368_7778195_6130007,4368_69 -4358_80758,229,4368_2145,Talbot Street,18000,1,4368_7778195_6130005,4368_68 -4358_80758,227,4368_2146,Talbot Street,5949,1,4368_7778195_6130006,4368_68 -4358_80758,228,4368_2147,Talbot Street,12689,1,4368_7778195_6130011,4368_68 -4358_80758,227,4368_2148,Talbot Street,5836,1,4368_7778195_6130005,4368_68 -4358_80758,228,4368_2149,Talbot Street,12815,1,4368_7778195_6130009,4368_68 -4358_80760,228,4368_215,Shanard Road,9315,1,4368_7778195_9001002,4368_4 -4358_80758,229,4368_2150,Talbot Street,18099,1,4368_7778195_6130004,4368_68 -4358_80758,227,4368_2151,Talbot Street,5681,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2152,Talbot Street,12784,1,4368_7778195_6130008,4368_68 -4358_80758,227,4368_2153,Talbot Street,5782,1,4368_7778195_6130007,4368_68 -4358_80758,229,4368_2154,Talbot Street,18036,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2155,Talbot Street,12830,1,4368_7778195_6130005,4368_68 -4358_80758,227,4368_2156,Talbot Street,5935,1,4368_7778195_6130008,4368_68 -4358_80758,228,4368_2157,Talbot Street,12860,1,4368_7778195_6130010,4368_68 -4358_80758,229,4368_2158,Talbot Street,18061,1,4368_7778195_6130001,4368_68 -4358_80758,227,4368_2159,Talbot Street,5805,1,4368_7778195_6130001,4368_68 -4358_80760,227,4368_216,Shanard Road,1589,1,4368_7778195_9001005,4368_5 -4358_80758,228,4368_2160,Talbot Street,12722,1,4368_7778195_6130006,4368_68 -4358_80758,227,4368_2161,Talbot Street,5890,1,4368_7778195_6130010,4368_68 -4358_80758,229,4368_2162,Talbot Street,18075,1,4368_7778195_6130003,4368_68 -4358_80758,228,4368_2163,Talbot Street,12740,1,4368_7778195_6130007,4368_68 -4358_80758,227,4368_2164,Talbot Street,5869,1,4368_7778195_6130009,4368_68 -4358_80758,228,4368_2165,Talbot Street,12742,1,4368_7778195_6130012,4368_68 -4358_80758,227,4368_2166,Talbot Street,5718,1,4368_7778195_6130003,4368_68 -4358_80758,229,4368_2167,Talbot Street,18002,1,4368_7778195_6130005,4368_68 -4358_80758,227,4368_2168,Talbot Street,5951,1,4368_7778195_6130006,4368_68 -4358_80758,228,4368_2169,Talbot Street,12691,1,4368_7778195_6130011,4368_69 -4358_80760,229,4368_217,Shanard Road,15725,1,4368_7778195_9001002,4368_4 -4358_80758,229,4368_2170,Talbot Street,18101,1,4368_7778195_6130004,4368_68 -4358_80758,227,4368_2171,Talbot Street,5838,1,4368_7778195_6130005,4368_68 -4358_80758,228,4368_2172,Talbot Street,12786,1,4368_7778195_6130008,4368_68 -4358_80758,227,4368_2173,Talbot Street,5683,1,4368_7778195_6130002,4368_68 -4358_80758,229,4368_2174,Talbot Street,18038,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2175,Talbot Street,12832,1,4368_7778195_6130005,4368_69 -4358_80758,227,4368_2176,Talbot Street,5784,1,4368_7778195_6130007,4368_68 -4358_80758,227,4368_2177,Talbot Street,5937,1,4368_7778195_6130008,4368_68 -4358_80758,228,4368_2178,Talbot Street,12862,1,4368_7778195_6130010,4368_68 -4358_80758,229,4368_2179,Talbot Street,18077,1,4368_7778195_6130003,4368_69 -4358_80760,227,4368_218,Shanard Road,1542,1,4368_7778195_9001010,4368_4 -4358_80758,227,4368_2180,Talbot Street,5892,1,4368_7778195_6130010,4368_68 -4358_80758,228,4368_2181,Talbot Street,12724,1,4368_7778195_6130006,4368_68 -4358_80758,229,4368_2182,Talbot Street,18004,1,4368_7778195_6130005,4368_69 -4358_80758,227,4368_2183,Talbot Street,5871,1,4368_7778195_6130009,4368_68 -4358_80758,228,4368_2184,Talbot Street,12744,1,4368_7778195_6130012,4368_68 -4358_80758,229,4368_2185,Talbot Street,18103,1,4368_7778195_6130004,4368_69 -4358_80758,227,4368_2186,Talbot Street,5953,1,4368_7778195_6130006,4368_68 -4358_80758,229,4368_2187,Talbot Street,18040,1,4368_7778195_6130002,4368_68 -4358_80758,228,4368_2188,Talbot Street,12834,1,4368_7778195_6130005,4368_69 -4358_80758,227,4368_2189,Talbot Street,5840,1,4368_7778195_6130005,4368_68 -4358_80760,228,4368_219,Shanard Road,9377,1,4368_7778195_9001001,4368_4 -4358_80758,229,4368_2190,Talbot Street,18084,1,4368_7778195_6130006,4368_68 -4358_80758,228,4368_2191,Talbot Street,12864,1,4368_7778195_6130010,4368_69 -4358_80758,227,4368_2192,Talbot Street,5786,1,4368_7778195_6130007,4368_68 -4358_80758,228,4368_2193,Talbot Street,12726,1,4368_7778195_6130006,4368_68 -4358_80758,229,4368_2194,Talbot Street,18079,1,4368_7778195_6130003,4368_69 -4358_80758,227,4368_2195,Talbot Street,5873,1,4368_7778195_6130009,4368_68 -4358_80758,228,4368_2196,Talbot Street,12746,1,4368_7778195_6130012,4368_68 -4358_80758,229,4368_2197,Talbot Street,18006,1,4368_7778195_6130005,4368_68 -4358_80758,227,4368_2198,Talbot Street,5955,1,4368_7778195_6130006,4368_68 -4358_80758,228,4368_2199,Talbot Street,12836,1,4368_7778195_6130005,4368_68 -4358_80760,228,4368_22,Shaw street,9374,0,4368_7778195_9001001,4368_1 -4358_80760,227,4368_220,Shanard Road,1636,1,4368_7778195_9001011,4368_4 -4358_80758,229,4368_2200,Talbot Street,18086,1,4368_7778195_6130006,4368_68 -4358_80758,227,4368_2201,Talbot Street,5842,1,4368_7778195_6130005,4368_69 -4358_80758,228,4368_2202,Talbot Street,12866,1,4368_7778195_6130010,4368_68 -4358_80758,229,4368_2203,Talbot Street,18081,1,4368_7778195_6130003,4368_68 -4358_80758,227,4368_2204,Talbot Street,5788,1,4368_7778195_6130007,4368_69 -4358_80758,228,4368_2205,Talbot Street,12728,1,4368_7778195_6130006,4368_68 -4358_80758,227,4368_2206,Talbot Street,5875,1,4368_7778195_6130009,4368_68 -4358_80758,229,4368_2207,Talbot Street,18008,1,4368_7778195_6130005,4368_68 -4358_80758,228,4368_2208,Talbot Street,12748,1,4368_7778195_6130012,4368_68 -4358_80758,227,4368_2209,Talbot Street,5957,1,4368_7778195_6130006,4368_68 -4358_80760,229,4368_221,Shanard Road,15510,1,4368_7778195_9001003,4368_4 -4358_80758,228,4368_2210,Talbot Street,12838,1,4368_7778195_6130005,4368_68 -4358_80758,229,4368_2211,Talbot Street,18088,1,4368_7778195_6130006,4368_68 -4358_80758,227,4368_2212,Talbot Street,5844,1,4368_7778195_6130005,4368_68 -4358_80758,228,4368_2213,Talbot Street,12868,1,4368_7778195_6130010,4368_68 -4358_80758,228,4368_2214,Talbot Street,12730,1,4368_7778195_6130006,4368_68 -4358_80758,229,4368_2215,Talbot Street,18083,1,4368_7778195_6130003,4368_69 -4358_80758,227,4368_2216,Talbot Street,5790,1,4368_7778195_6130007,4368_70 -4358_80683,227,4368_2217,Dundrum Luas,3168,0,4368_7778195_1014003,4368_72 -4358_80683,227,4368_2218,Dundrum Luas,3063,0,4368_7778195_1014001,4368_71 -4358_80683,227,4368_2219,Dundrum Luas,3173,0,4368_7778195_1074005,4368_72 -4358_80760,227,4368_222,Shanard Road,3140,1,4368_7778195_9001004,4368_4 -4358_80683,227,4368_2220,Dundrum Luas,3036,0,4368_7778195_1014002,4368_71 -4358_80683,228,4368_2221,Dundrum Luas,10747,0,4368_7778195_1014001,4368_73 -4358_80683,227,4368_2222,Dundrum Luas,2823,0,4368_7778195_1014005,4368_71 -4358_80683,228,4368_2223,Dundrum Luas,10726,0,4368_7778195_1014002,4368_73 -4358_80683,228,4368_2224,Dundrum Luas,10739,0,4368_7778195_1014010,4368_72 -4358_80683,228,4368_2225,Dundrum Luas,10705,0,4368_7778195_1014003,4368_71 -4358_80683,227,4368_2226,Dundrum Luas,3032,0,4368_7778195_1014006,4368_73 -4358_80683,227,4368_2227,Dundrum Luas,3045,0,4368_7778195_1014010,4368_71 -4358_80683,228,4368_2228,Dundrum Luas,10717,0,4368_7778195_1014005,4368_71 -4358_80683,227,4368_2229,Dundrum Luas,2898,0,4368_7778195_1014009,4368_71 -4358_80760,228,4368_223,Shanard Road,9507,1,4368_7778195_9001005,4368_4 -4358_80683,228,4368_2230,Dundrum Luas,10693,0,4368_7778195_1014007,4368_71 -4358_80683,227,4368_2231,Dundrum Luas,2953,0,4368_7778195_1014004,4368_73 -4358_80683,227,4368_2232,Dundrum Luas,2809,0,4368_7778195_1014011,4368_71 -4358_80683,228,4368_2233,Dundrum Luas,10667,0,4368_7778195_1014004,4368_71 -4358_80683,227,4368_2234,Dundrum Luas,3053,0,4368_7778195_1014014,4368_71 -4358_80683,227,4368_2235,Dundrum Luas,2937,0,4368_7778195_1014007,4368_71 -4358_80683,228,4368_2236,Dundrum Luas,10660,0,4368_7778195_1014006,4368_73 -4358_80683,227,4368_2237,Dundrum Luas,2867,0,4368_7778195_1014017,4368_71 -4358_80683,229,4368_2238,Dundrum Luas,16505,0,4368_7778195_1014002,4368_72 -4358_80683,228,4368_2239,Dundrum Luas,10604,0,4368_7778195_1014008,4368_71 -4358_80760,227,4368_224,Shanard Road,1846,1,4368_7778195_9001006,4368_4 -4358_80683,227,4368_2240,Dundrum Luas,2820,0,4368_7778195_1014008,4368_71 -4358_80683,227,4368_2241,Dundrum Luas,3073,0,4368_7778195_1014018,4368_71 -4358_80683,229,4368_2242,Dundrum Luas,16577,0,4368_7778195_1014001,4368_73 -4358_80683,228,4368_2243,Dundrum Luas,10569,0,4368_7778195_1014009,4368_75 -4358_80683,229,4368_2244,Dundrum Luas,16527,0,4368_7778195_1014005,4368_72 -4358_80683,227,4368_2245,Dundrum Luas,3171,0,4368_7778195_1014003,4368_71 -4358_80683,228,4368_2246,Dundrum Luas,10741,0,4368_7778195_1014010,4368_73 -4358_80683,229,4368_2247,Dundrum Luas,16549,0,4368_7778195_1014004,4368_71 -4358_80683,227,4368_2248,Dundrum Luas,2970,0,4368_7778195_1014012,4368_73 -4358_80683,228,4368_2249,Dundrum Luas,10749,0,4368_7778195_1014001,4368_75 -4358_80760,229,4368_225,Shanard Road,15661,1,4368_7778195_9001005,4368_4 -4358_80683,227,4368_2250,Dundrum Luas,2909,0,4368_7778195_1014013,4368_71 -4358_80683,228,4368_2251,Dundrum Luas,10728,0,4368_7778195_1014002,4368_73 -4358_80683,227,4368_2252,Dundrum Luas,2993,0,4368_7778195_1014015,4368_71 -4358_80683,229,4368_2253,Dundrum Luas,16495,0,4368_7778195_1014006,4368_73 -4358_80683,228,4368_2254,Dundrum Luas,10707,0,4368_7778195_1014003,4368_75 -4358_80683,227,4368_2255,Dundrum Luas,2865,0,4368_7778195_1014016,4368_71 -4358_80683,228,4368_2256,Dundrum Luas,10719,0,4368_7778195_1014005,4368_71 -4358_80683,227,4368_2257,Dundrum Luas,3065,0,4368_7778195_1014001,4368_71 -4358_80683,229,4368_2258,Dundrum Luas,16424,0,4368_7778195_1014003,4368_71 -4358_80683,228,4368_2259,Dundrum Luas,10695,0,4368_7778195_1014007,4368_73 -4358_80760,227,4368_226,Shanard Road,1702,1,4368_7778195_9001008,4368_4 -4358_80683,227,4368_2260,Dundrum Luas,2983,0,4368_7778195_1014020,4368_71 -4358_80683,228,4368_2261,Dundrum Luas,10675,0,4368_7778195_1014012,4368_71 -4358_80683,227,4368_2262,Dundrum Luas,2825,0,4368_7778195_1014005,4368_71 -4358_80683,227,4368_2263,Dundrum Luas,2961,0,4368_7778195_1014022,4368_71 -4358_80683,229,4368_2264,Dundrum Luas,16507,0,4368_7778195_1014002,4368_73 -4358_80683,228,4368_2265,Dundrum Luas,10617,0,4368_7778195_1014011,4368_75 -4358_80683,227,4368_2266,Dundrum Luas,3034,0,4368_7778195_1014006,4368_71 -4358_80683,228,4368_2267,Dundrum Luas,10669,0,4368_7778195_1014004,4368_71 -4358_80683,227,4368_2268,Dundrum Luas,3047,0,4368_7778195_1014010,4368_71 -4358_80683,229,4368_2269,Dundrum Luas,16529,0,4368_7778195_1014005,4368_71 -4358_80760,228,4368_227,Shanard Road,9447,1,4368_7778195_9001003,4368_5 -4358_80683,228,4368_2270,Dundrum Luas,10662,0,4368_7778195_1014006,4368_73 -4358_80683,227,4368_2271,Dundrum Luas,2900,0,4368_7778195_1014009,4368_71 -4358_80683,228,4368_2272,Dundrum Luas,10606,0,4368_7778195_1014008,4368_71 -4358_80683,227,4368_2273,Dundrum Luas,2811,0,4368_7778195_1014011,4368_71 -4358_80683,227,4368_2274,Dundrum Luas,3055,0,4368_7778195_1014014,4368_71 -4358_80683,229,4368_2275,Dundrum Luas,16579,0,4368_7778195_1014001,4368_73 -4358_80683,228,4368_2276,Dundrum Luas,10571,0,4368_7778195_1014009,4368_75 -4358_80683,227,4368_2277,Dundrum Luas,2939,0,4368_7778195_1014007,4368_71 -4358_80683,228,4368_2278,Dundrum Luas,10743,0,4368_7778195_1014010,4368_71 -4358_80683,229,4368_2279,Dundrum Luas,16551,0,4368_7778195_1014004,4368_71 -4358_80760,229,4368_228,Shanard Road,15688,1,4368_7778195_9001001,4368_4 -4358_80683,227,4368_2280,Dundrum Luas,2869,0,4368_7778195_1014017,4368_71 -4358_80683,228,4368_2281,Dundrum Luas,10751,0,4368_7778195_1014001,4368_71 -4358_80683,227,4368_2282,Dundrum Luas,3075,0,4368_7778195_1014018,4368_71 -4358_80683,229,4368_2283,Dundrum Luas,16459,0,4368_7778195_1014007,4368_71 -4358_80683,228,4368_2284,Dundrum Luas,10652,0,4368_7778195_1014014,4368_71 -4358_80683,227,4368_2285,Dundrum Luas,2972,0,4368_7778195_1014012,4368_71 -4358_80683,227,4368_2286,Dundrum Luas,2911,0,4368_7778195_1014013,4368_71 -4358_80683,229,4368_2287,Dundrum Luas,16497,0,4368_7778195_1014006,4368_73 -4358_80683,228,4368_2288,Dundrum Luas,10730,0,4368_7778195_1014002,4368_75 -4358_80683,227,4368_2289,Dundrum Luas,2842,0,4368_7778195_1014024,4368_71 -4358_80760,227,4368_229,Shanard Road,1820,1,4368_7778195_9001001,4368_4 -4358_80683,228,4368_2290,Dundrum Luas,10709,0,4368_7778195_1014003,4368_71 -4358_80683,229,4368_2291,Dundrum Luas,16565,0,4368_7778195_1014009,4368_71 -4358_80683,227,4368_2292,Dundrum Luas,2999,0,4368_7778195_1014025,4368_71 -4358_80683,228,4368_2293,Dundrum Luas,10721,0,4368_7778195_1014005,4368_71 -4358_80683,227,4368_2294,Dundrum Luas,2995,0,4368_7778195_1014015,4368_71 -4358_80683,229,4368_2295,Dundrum Luas,16426,0,4368_7778195_1014003,4368_71 -4358_80683,228,4368_2296,Dundrum Luas,10697,0,4368_7778195_1014007,4368_71 -4358_80683,227,4368_2297,Dundrum Luas,3067,0,4368_7778195_1014001,4368_71 -4358_80683,229,4368_2298,Dundrum Luas,16509,0,4368_7778195_1014002,4368_71 -4358_80683,228,4368_2299,Dundrum Luas,10677,0,4368_7778195_1014012,4368_73 -4358_80760,227,4368_23,Shaw street,3137,0,4368_7778195_9001004,4368_1 -4358_80760,228,4368_230,Shanard Road,9485,1,4368_7778195_9001004,4368_4 -4358_80683,227,4368_2300,Dundrum Luas,2985,0,4368_7778195_1014020,4368_75 -4358_80683,227,4368_2301,Dundrum Luas,2827,0,4368_7778195_1014005,4368_71 -4358_80683,228,4368_2302,Dundrum Luas,10649,0,4368_7778195_1014013,4368_71 -4358_80683,229,4368_2303,Dundrum Luas,16468,0,4368_7778195_1014008,4368_71 -4358_80683,227,4368_2304,Dundrum Luas,2963,0,4368_7778195_1014022,4368_71 -4358_80683,228,4368_2305,Dundrum Luas,10619,0,4368_7778195_1014011,4368_71 -4358_80683,227,4368_2306,Dundrum Luas,3086,0,4368_7778195_1014023,4368_71 -4358_80683,229,4368_2307,Dundrum Luas,16531,0,4368_7778195_1014005,4368_71 -4358_80683,228,4368_2308,Dundrum Luas,10671,0,4368_7778195_1014004,4368_71 -4358_80683,227,4368_2309,Dundrum Luas,3049,0,4368_7778195_1014010,4368_71 -4358_80760,227,4368_231,Shanard Road,1657,1,4368_7778195_9001003,4368_4 -4358_80683,227,4368_2310,Dundrum Luas,2902,0,4368_7778195_1014009,4368_71 -4358_80683,229,4368_2311,Dundrum Luas,16581,0,4368_7778195_1014001,4368_73 -4358_80683,228,4368_2312,Dundrum Luas,10664,0,4368_7778195_1014006,4368_75 -4358_80683,227,4368_2313,Dundrum Luas,2813,0,4368_7778195_1014011,4368_71 -4358_80683,228,4368_2314,Dundrum Luas,10608,0,4368_7778195_1014008,4368_71 -4358_80683,229,4368_2315,Dundrum Luas,16453,0,4368_7778195_1014010,4368_71 -4358_80683,227,4368_2316,Dundrum Luas,3057,0,4368_7778195_1014014,4368_71 -4358_80683,228,4368_2317,Dundrum Luas,10573,0,4368_7778195_1014009,4368_71 -4358_80683,227,4368_2318,Dundrum Luas,3006,0,4368_7778195_1014026,4368_71 -4358_80683,229,4368_2319,Dundrum Luas,16553,0,4368_7778195_1014004,4368_71 -4358_80760,229,4368_232,Shanard Road,15586,1,4368_7778195_9001004,4368_4 -4358_80683,228,4368_2320,Dundrum Luas,10745,0,4368_7778195_1014010,4368_71 -4358_80683,227,4368_2321,Dundrum Luas,2941,0,4368_7778195_1014007,4368_71 -4358_80683,227,4368_2322,Dundrum Luas,2871,0,4368_7778195_1014017,4368_71 -4358_80683,229,4368_2323,Dundrum Luas,16461,0,4368_7778195_1014007,4368_73 -4358_80683,228,4368_2324,Dundrum Luas,10753,0,4368_7778195_1014001,4368_75 -4358_80683,227,4368_2325,Dundrum Luas,3077,0,4368_7778195_1014018,4368_71 -4358_80683,228,4368_2326,Dundrum Luas,10654,0,4368_7778195_1014014,4368_71 -4358_80683,229,4368_2327,Dundrum Luas,16499,0,4368_7778195_1014006,4368_71 -4358_80683,227,4368_2328,Dundrum Luas,2974,0,4368_7778195_1014012,4368_71 -4358_80683,228,4368_2329,Dundrum Luas,10732,0,4368_7778195_1014002,4368_71 -4358_80760,227,4368_233,Shanard Road,1591,1,4368_7778195_9001005,4368_4 -4358_80683,227,4368_2330,Dundrum Luas,2913,0,4368_7778195_1014013,4368_71 -4358_80683,229,4368_2331,Dundrum Luas,16567,0,4368_7778195_1014009,4368_71 -4358_80683,228,4368_2332,Dundrum Luas,10711,0,4368_7778195_1014003,4368_71 -4358_80683,227,4368_2333,Dundrum Luas,2844,0,4368_7778195_1014024,4368_71 -4358_80683,229,4368_2334,Dundrum Luas,16428,0,4368_7778195_1014003,4368_71 -4358_80683,228,4368_2335,Dundrum Luas,10723,0,4368_7778195_1014005,4368_73 -4358_80683,227,4368_2336,Dundrum Luas,3001,0,4368_7778195_1014025,4368_75 -4358_80683,227,4368_2337,Dundrum Luas,2997,0,4368_7778195_1014015,4368_71 -4358_80683,228,4368_2338,Dundrum Luas,10699,0,4368_7778195_1014007,4368_71 -4358_80683,229,4368_2339,Dundrum Luas,16511,0,4368_7778195_1014002,4368_71 -4358_80760,228,4368_234,Shanard Road,9317,1,4368_7778195_9001002,4368_4 -4358_80683,227,4368_2340,Dundrum Luas,3019,0,4368_7778195_1014028,4368_71 -4358_80683,228,4368_2341,Dundrum Luas,10563,0,4368_7778195_1014015,4368_71 -4358_80683,227,4368_2342,Dundrum Luas,3069,0,4368_7778195_1014001,4368_71 -4358_80683,229,4368_2343,Dundrum Luas,16470,0,4368_7778195_1014008,4368_71 -4358_80683,228,4368_2344,Dundrum Luas,10679,0,4368_7778195_1014012,4368_71 -4358_80683,227,4368_2345,Dundrum Luas,2987,0,4368_7778195_1014020,4368_71 -4358_80683,227,4368_2346,Dundrum Luas,2829,0,4368_7778195_1014005,4368_71 -4358_80683,228,4368_2347,Dundrum Luas,10651,0,4368_7778195_1014013,4368_73 -4358_80683,229,4368_2348,Dundrum Luas,16533,0,4368_7778195_1014005,4368_75 -4358_80683,227,4368_2349,Dundrum Luas,2965,0,4368_7778195_1014022,4368_71 -4358_80760,227,4368_235,Shanard Road,1544,1,4368_7778195_9001010,4368_4 -4358_80683,228,4368_2350,Dundrum Luas,10621,0,4368_7778195_1014011,4368_71 -4358_80683,229,4368_2351,Dundrum Luas,16583,0,4368_7778195_1014001,4368_71 -4358_80683,227,4368_2352,Dundrum Luas,3088,0,4368_7778195_1014023,4368_71 -4358_80683,227,4368_2353,Dundrum Luas,3051,0,4368_7778195_1014010,4368_71 -4358_80683,228,4368_2354,Dundrum Luas,10673,0,4368_7778195_1014004,4368_73 -4358_80683,227,4368_2355,Dundrum Luas,2929,0,4368_7778195_1014027,4368_71 -4358_80683,229,4368_2356,Dundrum Luas,16455,0,4368_7778195_1014010,4368_71 -4358_80683,228,4368_2357,Dundrum Luas,10610,0,4368_7778195_1014008,4368_71 -4358_80683,227,4368_2358,Dundrum Luas,2904,0,4368_7778195_1014009,4368_71 -4358_80683,229,4368_2359,Dundrum Luas,16555,0,4368_7778195_1014004,4368_71 -4358_80760,229,4368_236,Shanard Road,15727,1,4368_7778195_9001002,4368_4 -4358_80683,228,4368_2360,Dundrum Luas,10551,0,4368_7778195_1014016,4368_73 -4358_80683,227,4368_2361,Dundrum Luas,2815,0,4368_7778195_1014011,4368_75 -4358_80683,227,4368_2362,Dundrum Luas,3059,0,4368_7778195_1014014,4368_71 -4358_80683,228,4368_2363,Dundrum Luas,10575,0,4368_7778195_1014009,4368_73 -4358_80683,229,4368_2364,Dundrum Luas,16463,0,4368_7778195_1014007,4368_71 -4358_80683,227,4368_2365,Dundrum Luas,2943,0,4368_7778195_1014007,4368_71 -4358_80683,228,4368_2366,Dundrum Luas,10736,0,4368_7778195_1014017,4368_73 -4358_80683,229,4368_2367,Dundrum Luas,16501,0,4368_7778195_1014006,4368_71 -4358_80683,227,4368_2368,Dundrum Luas,2873,0,4368_7778195_1014017,4368_71 -4358_80683,228,4368_2369,Dundrum Luas,10656,0,4368_7778195_1014014,4368_73 -4358_80760,227,4368_237,Shanard Road,1638,1,4368_7778195_9001011,4368_4 -4358_80683,227,4368_2370,Dundrum Luas,3079,0,4368_7778195_1014018,4368_71 -4358_80683,229,4368_2371,Dundrum Luas,16526,0,4368_7778195_1014011,4368_73 -4358_80683,228,4368_2372,Dundrum Luas,10734,0,4368_7778195_1014002,4368_75 -4358_80683,227,4368_2373,Dundrum Luas,2831,0,4368_7778195_1014030,4368_71 -4358_80683,229,4368_2374,Dundrum Luas,16430,0,4368_7778195_1014003,4368_71 -4358_80683,228,4368_2375,Dundrum Luas,10713,0,4368_7778195_1014003,4368_73 -4358_80683,227,4368_2376,Dundrum Luas,2915,0,4368_7778195_1014013,4368_71 -4358_80683,228,4368_2377,Dundrum Luas,10701,0,4368_7778195_1014007,4368_71 -4358_80683,229,4368_2378,Dundrum Luas,16513,0,4368_7778195_1014002,4368_73 -4358_80683,227,4368_2379,Dundrum Luas,3003,0,4368_7778195_1014025,4368_71 -4358_80760,228,4368_238,Shanard Road,9379,1,4368_7778195_9001001,4368_5 -4358_80683,229,4368_2380,Dundrum Luas,16472,0,4368_7778195_1014008,4368_71 -4358_80683,228,4368_2381,Dundrum Luas,10565,0,4368_7778195_1014015,4368_73 -4358_80683,227,4368_2382,Dundrum Luas,3021,0,4368_7778195_1014028,4368_75 -4358_80683,227,4368_2383,Dundrum Luas,3071,0,4368_7778195_1014001,4368_71 -4358_80683,228,4368_2384,Dundrum Luas,10681,0,4368_7778195_1014012,4368_71 -4358_80683,229,4368_2385,Dundrum Luas,16535,0,4368_7778195_1014005,4368_73 -4358_80683,227,4368_2386,Dundrum Luas,2989,0,4368_7778195_1014020,4368_71 -4358_80683,229,4368_2387,Dundrum Luas,16585,0,4368_7778195_1014001,4368_71 -4358_80683,228,4368_2388,Dundrum Luas,10623,0,4368_7778195_1014011,4368_73 -4358_80683,227,4368_2389,Dundrum Luas,2967,0,4368_7778195_1014022,4368_71 -4358_80760,229,4368_239,Shanard Road,15512,1,4368_7778195_9001003,4368_4 -4358_80683,228,4368_2390,Dundrum Luas,10612,0,4368_7778195_1014008,4368_71 -4358_80683,227,4368_2391,Dundrum Luas,2931,0,4368_7778195_1014027,4368_73 -4358_80683,229,4368_2392,Dundrum Luas,16457,0,4368_7778195_1014010,4368_75 -4358_80683,227,4368_2393,Dundrum Luas,2906,0,4368_7778195_1014009,4368_71 -4358_80683,229,4368_2394,Dundrum Luas,16465,0,4368_7778195_1014007,4368_71 -4358_80683,228,4368_2395,Dundrum Luas,10553,0,4368_7778195_1014016,4368_73 -4358_80683,227,4368_2396,Dundrum Luas,2817,0,4368_7778195_1014011,4368_71 -4358_80683,229,4368_2397,Dundrum Luas,16503,0,4368_7778195_1014006,4368_71 -4358_80683,228,4368_2398,Dundrum Luas,10738,0,4368_7778195_1014017,4368_73 -4358_80683,227,4368_2399,Dundrum Luas,3061,0,4368_7778195_1014014,4368_71 -4358_80760,229,4368_24,Shaw street,15722,0,4368_7778195_9001002,4368_1 -4358_80760,227,4368_240,Shanard Road,3142,1,4368_7778195_9001004,4368_4 -4358_80683,229,4368_2400,Dundrum Luas,16432,0,4368_7778195_1014003,4368_71 -4358_80683,227,4368_2401,Dundrum Luas,2945,0,4368_7778195_1014007,4368_73 -4358_80683,228,4368_2402,Dundrum Luas,10658,0,4368_7778195_1014014,4368_75 -4358_80683,227,4368_2403,Dundrum Luas,2875,0,4368_7778195_1014017,4368_71 -4358_80683,229,4368_2404,Dundrum Luas,16515,0,4368_7778195_1014002,4368_71 -4358_80683,228,4368_2405,Dundrum Luas,10715,0,4368_7778195_1014003,4368_73 -4358_80683,227,4368_2406,Dundrum Luas,3081,0,4368_7778195_1014018,4368_71 -4358_80683,228,4368_2407,D'Olier Street,10703,0,4368_7778195_1014007,4368_74 -4358_80683,229,4368_2408,Dundrum Luas,16474,0,4368_7778195_1014008,4368_71 -4358_80683,227,4368_2409,Dundrum Luas,2833,0,4368_7778195_1014030,4368_71 -4358_80760,228,4368_241,Shanard Road,9509,1,4368_7778195_9001005,4368_4 -4358_80683,228,4368_2410,D'Olier Street,10567,0,4368_7778195_1014015,4368_74 -4358_80683,229,4368_2411,Dundrum Luas,16537,0,4368_7778195_1014005,4368_71 -4358_80683,227,4368_2412,Dundrum Luas,2991,0,4368_7778195_1014020,4368_73 -4358_80683,227,4368_2413,Beaumont,3035,1,4368_7778195_1014002,4368_77 -4358_80683,228,4368_2414,Beaumont,10746,1,4368_7778195_1014001,4368_81 -4358_80683,227,4368_2415,Beaumont,2952,1,4368_7778195_1014004,4368_76 -4358_80683,227,4368_2416,Beaumont,2822,1,4368_7778195_1014005,4368_77 -4358_80683,228,4368_2417,Beaumont,10725,1,4368_7778195_1014002,4368_81 -4358_80683,227,4368_2418,Beaumont,2936,1,4368_7778195_1014007,4368_76 -4358_80683,228,4368_2419,Beaumont,10704,1,4368_7778195_1014003,4368_77 -4358_80760,227,4368_242,Shanard Road,1848,1,4368_7778195_9001006,4368_4 -4358_80683,227,4368_2420,Beaumont,3031,1,4368_7778195_1014006,4368_81 -4358_80683,228,4368_2421,Beaumont,10666,1,4368_7778195_1014004,4368_78 -4358_80683,227,4368_2422,Beaumont,2819,1,4368_7778195_1014008,4368_76 -4358_80683,227,4368_2423,Beaumont,2897,1,4368_7778195_1014009,4368_77 -4358_80683,228,4368_2424,Beaumont,10659,1,4368_7778195_1014006,4368_78 -4358_80683,228,4368_2425,Beaumont,10716,1,4368_7778195_1014005,4368_81 -4358_80683,228,4368_2426,Beaumont,10692,1,4368_7778195_1014007,4368_77 -4358_80683,228,4368_2427,Beaumont,10603,1,4368_7778195_1014008,4368_76 -4358_80683,227,4368_2428,Beaumont,2969,1,4368_7778195_1014012,4368_78 -4358_80683,227,4368_2429,Beaumont,2808,1,4368_7778195_1014011,4368_81 -4358_80760,229,4368_243,Shanard Road,15663,1,4368_7778195_9001005,4368_4 -4358_80683,227,4368_2430,Beaumont,2908,1,4368_7778195_1014013,4368_76 -4358_80683,227,4368_2431,Beaumont,3052,1,4368_7778195_1014014,4368_77 -4358_80683,228,4368_2432,Beaumont,10568,1,4368_7778195_1014009,4368_76 -4358_80683,227,4368_2433,Beaumont,2992,1,4368_7778195_1014015,4368_76 -4358_80683,227,4368_2434,Beaumont,2866,1,4368_7778195_1014017,4368_77 -4358_80683,228,4368_2435,Beaumont,10740,1,4368_7778195_1014010,4368_76 -4358_80683,227,4368_2436,Beaumont,2864,1,4368_7778195_1014016,4368_78 -4358_80683,227,4368_2437,Beaumont,3064,1,4368_7778195_1014001,4368_76 -4358_80683,227,4368_2438,Beaumont,3072,1,4368_7778195_1014018,4368_77 -4358_80683,228,4368_2439,Beaumont,10748,1,4368_7778195_1014001,4368_76 -4358_80760,227,4368_244,Shanard Road,1704,1,4368_7778195_9001008,4368_4 -4358_80683,227,4368_2440,Beaumont,2821,1,4368_7778195_1014019,4368_76 -4358_80683,227,4368_2441,Beaumont,3037,1,4368_7778195_1014002,4368_76 -4358_80683,227,4368_2442,Beaumont,3170,1,4368_7778195_1014003,4368_77 -4358_80683,228,4368_2443,Beaumont,10727,1,4368_7778195_1014002,4368_78 -4358_80683,227,4368_2444,Beaumont,2982,1,4368_7778195_1014020,4368_76 -4358_80683,228,4368_2445,Beaumont,10706,1,4368_7778195_1014003,4368_76 -4358_80683,227,4368_2446,Beaumont,3084,1,4368_7778195_1014021,4368_76 -4358_80683,229,4368_2447,Beaumont,16423,1,4368_7778195_1014003,4368_76 -4358_80683,227,4368_2448,Beaumont,2824,1,4368_7778195_1014005,4368_78 -4358_80683,228,4368_2449,Beaumont,10718,1,4368_7778195_1014005,4368_80 -4358_80760,228,4368_245,Shanard Road,9449,1,4368_7778195_9001003,4368_4 -4358_80683,228,4368_2450,Beaumont,10694,1,4368_7778195_1014007,4368_76 -4358_80683,227,4368_2451,Beaumont,2960,1,4368_7778195_1014022,4368_78 -4358_80683,229,4368_2452,Beaumont,16506,1,4368_7778195_1014002,4368_76 -4358_80683,228,4368_2453,Beaumont,10616,1,4368_7778195_1014011,4368_78 -4358_80683,227,4368_2454,Beaumont,3033,1,4368_7778195_1014006,4368_80 -4358_80683,227,4368_2455,Beaumont,3046,1,4368_7778195_1014010,4368_76 -4358_80683,228,4368_2456,Beaumont,10668,1,4368_7778195_1014004,4368_78 -4358_80683,227,4368_2457,Beaumont,2899,1,4368_7778195_1014009,4368_76 -4358_80683,229,4368_2458,Beaumont,16528,1,4368_7778195_1014005,4368_78 -4358_80683,228,4368_2459,Beaumont,10661,1,4368_7778195_1014006,4368_80 -4358_80760,227,4368_246,Shanard Road,1822,1,4368_7778195_9001001,4368_4 -4358_80683,227,4368_2460,Beaumont,2810,1,4368_7778195_1014011,4368_76 -4358_80683,228,4368_2461,Beaumont,10605,1,4368_7778195_1014008,4368_76 -4358_80683,227,4368_2462,Beaumont,3054,1,4368_7778195_1014014,4368_76 -4358_80683,229,4368_2463,Beaumont,16578,1,4368_7778195_1014001,4368_76 -4358_80683,228,4368_2464,Beaumont,10570,1,4368_7778195_1014009,4368_78 -4358_80683,227,4368_2465,Beaumont,2938,1,4368_7778195_1014007,4368_76 -4358_80683,228,4368_2466,Beaumont,10742,1,4368_7778195_1014010,4368_76 -4358_80683,227,4368_2467,Beaumont,2868,1,4368_7778195_1014017,4368_76 -4358_80683,227,4368_2468,Beaumont,3074,1,4368_7778195_1014018,4368_76 -4358_80683,229,4368_2469,Beaumont,16550,1,4368_7778195_1014004,4368_78 -4358_80760,229,4368_247,Shanard Road,15690,1,4368_7778195_9001001,4368_4 -4358_80683,228,4368_2470,Beaumont,10750,1,4368_7778195_1014001,4368_80 -4358_80683,227,4368_2471,Beaumont,3172,1,4368_7778195_1014003,4368_76 -4358_80683,228,4368_2472,Beaumont,10729,1,4368_7778195_1014002,4368_76 -4358_80683,227,4368_2473,Beaumont,2971,1,4368_7778195_1014012,4368_76 -4358_80683,229,4368_2474,Beaumont,16496,1,4368_7778195_1014006,4368_76 -4358_80683,228,4368_2475,Beaumont,10708,1,4368_7778195_1014003,4368_78 -4358_80683,227,4368_2476,Beaumont,2910,1,4368_7778195_1014013,4368_76 -4358_80683,228,4368_2477,Beaumont,10720,1,4368_7778195_1014005,4368_76 -4358_80683,227,4368_2478,Beaumont,2994,1,4368_7778195_1014015,4368_76 -4358_80683,229,4368_2479,Beaumont,16425,1,4368_7778195_1014003,4368_76 -4358_80760,227,4368_248,Shanard Road,1659,1,4368_7778195_9001003,4368_4 -4358_80683,228,4368_2480,Beaumont,10696,1,4368_7778195_1014007,4368_78 -4358_80683,227,4368_2481,Beaumont,3066,1,4368_7778195_1014001,4368_80 -4358_80683,227,4368_2482,Beaumont,2984,1,4368_7778195_1014020,4368_76 -4358_80683,228,4368_2483,Beaumont,10676,1,4368_7778195_1014012,4368_76 -4358_80683,229,4368_2484,Beaumont,16508,1,4368_7778195_1014002,4368_76 -4358_80683,227,4368_2485,Beaumont,2826,1,4368_7778195_1014005,4368_76 -4358_80683,228,4368_2486,Beaumont,10648,1,4368_7778195_1014013,4368_76 -4358_80683,227,4368_2487,Beaumont,2962,1,4368_7778195_1014022,4368_76 -4358_80683,229,4368_2488,Beaumont,16467,1,4368_7778195_1014008,4368_76 -4358_80683,228,4368_2489,Beaumont,10618,1,4368_7778195_1014011,4368_76 -4358_80760,228,4368_249,Shanard Road,9487,1,4368_7778195_9001004,4368_5 -4358_80683,227,4368_2490,Beaumont,3085,1,4368_7778195_1014023,4368_76 -4358_80683,227,4368_2491,Beaumont,3048,1,4368_7778195_1014010,4368_76 -4358_80683,229,4368_2492,Beaumont,16530,1,4368_7778195_1014005,4368_78 -4358_80683,228,4368_2493,Beaumont,10670,1,4368_7778195_1014004,4368_80 -4358_80683,227,4368_2494,Beaumont,2901,1,4368_7778195_1014009,4368_76 -4358_80683,228,4368_2495,Beaumont,10663,1,4368_7778195_1014006,4368_76 -4358_80683,229,4368_2496,Beaumont,16580,1,4368_7778195_1014001,4368_76 -4358_80683,227,4368_2497,Beaumont,2812,1,4368_7778195_1014011,4368_76 -4358_80683,228,4368_2498,Beaumont,10607,1,4368_7778195_1014008,4368_76 -4358_80683,227,4368_2499,Beaumont,3056,1,4368_7778195_1014014,4368_76 -4358_80760,228,4368_25,Shaw street,9504,0,4368_7778195_9001005,4368_2 -4358_80760,229,4368_250,Shanard Road,15588,1,4368_7778195_9001004,4368_4 -4358_80683,229,4368_2500,Beaumont,16452,1,4368_7778195_1014010,4368_76 -4358_80683,228,4368_2501,Beaumont,10572,1,4368_7778195_1014009,4368_76 -4358_80683,227,4368_2502,Beaumont,3005,1,4368_7778195_1014026,4368_76 -4358_80683,229,4368_2503,Beaumont,16552,1,4368_7778195_1014004,4368_76 -4358_80683,227,4368_2504,Beaumont,2940,1,4368_7778195_1014007,4368_78 -4358_80683,228,4368_2505,Beaumont,10744,1,4368_7778195_1014010,4368_80 -4358_80683,227,4368_2506,Beaumont,2870,1,4368_7778195_1014017,4368_76 -4358_80683,228,4368_2507,Beaumont,10752,1,4368_7778195_1014001,4368_76 -4358_80683,229,4368_2508,Beaumont,16460,1,4368_7778195_1014007,4368_76 -4358_80683,227,4368_2509,Beaumont,3076,1,4368_7778195_1014018,4368_76 -4358_80760,227,4368_251,Shanard Road,1593,1,4368_7778195_9001005,4368_4 -4358_80683,228,4368_2510,Beaumont,10653,1,4368_7778195_1014014,4368_76 -4358_80683,227,4368_2511,Beaumont,2973,1,4368_7778195_1014012,4368_76 -4358_80683,229,4368_2512,Beaumont,16498,1,4368_7778195_1014006,4368_76 -4358_80683,228,4368_2513,Beaumont,10731,1,4368_7778195_1014002,4368_76 -4358_80683,227,4368_2514,Beaumont,2912,1,4368_7778195_1014013,4368_76 -4358_80683,227,4368_2515,Beaumont,2843,1,4368_7778195_1014024,4368_76 -4358_80683,229,4368_2516,Beaumont,16566,1,4368_7778195_1014009,4368_78 -4358_80683,228,4368_2517,Beaumont,10710,1,4368_7778195_1014003,4368_80 -4358_80683,227,4368_2518,Beaumont,3000,1,4368_7778195_1014025,4368_76 -4358_80683,228,4368_2519,Beaumont,10722,1,4368_7778195_1014005,4368_76 -4358_80760,228,4368_252,Shanard Road,9319,1,4368_7778195_9001002,4368_4 -4358_80683,229,4368_2520,Beaumont,16427,1,4368_7778195_1014003,4368_76 -4358_80683,227,4368_2521,Beaumont,2996,1,4368_7778195_1014015,4368_76 -4358_80683,228,4368_2522,Beaumont,10698,1,4368_7778195_1014007,4368_76 -4358_80683,227,4368_2523,Beaumont,3068,1,4368_7778195_1014001,4368_76 -4358_80683,229,4368_2524,Beaumont,16510,1,4368_7778195_1014002,4368_76 -4358_80683,228,4368_2525,Beaumont,10678,1,4368_7778195_1014012,4368_76 -4358_80683,227,4368_2526,Beaumont,2986,1,4368_7778195_1014020,4368_76 -4358_80683,229,4368_2527,Beaumont,16469,1,4368_7778195_1014008,4368_76 -4358_80683,227,4368_2528,Beaumont,2828,1,4368_7778195_1014005,4368_78 -4358_80683,228,4368_2529,Beaumont,10650,1,4368_7778195_1014013,4368_80 -4358_80760,227,4368_253,Shanard Road,1546,1,4368_7778195_9001010,4368_4 -4358_80683,227,4368_2530,Beaumont,2964,1,4368_7778195_1014022,4368_76 -4358_80683,228,4368_2531,Beaumont,10620,1,4368_7778195_1014011,4368_76 -4358_80683,227,4368_2532,Beaumont,3087,1,4368_7778195_1014023,4368_76 -4358_80683,229,4368_2533,Beaumont,16532,1,4368_7778195_1014005,4368_78 -4358_80683,227,4368_2534,Beaumont,3050,1,4368_7778195_1014010,4368_76 -4358_80683,228,4368_2535,Beaumont,10672,1,4368_7778195_1014004,4368_78 -4358_80683,229,4368_2536,Beaumont,16582,1,4368_7778195_1014001,4368_76 -4358_80683,227,4368_2537,Beaumont,2928,1,4368_7778195_1014027,4368_78 -4358_80683,228,4368_2538,Beaumont,10665,1,4368_7778195_1014006,4368_76 -4358_80683,227,4368_2539,Beaumont,2903,1,4368_7778195_1014009,4368_76 -4358_80760,229,4368_254,Shanard Road,15729,1,4368_7778195_9001002,4368_4 -4358_80683,228,4368_2540,Beaumont,10609,1,4368_7778195_1014008,4368_76 -4358_80683,227,4368_2541,Beaumont,2814,1,4368_7778195_1014011,4368_78 -4358_80683,229,4368_2542,Beaumont,16454,1,4368_7778195_1014010,4368_80 -4358_80683,227,4368_2543,Beaumont,3058,1,4368_7778195_1014014,4368_76 -4358_80683,228,4368_2544,Beaumont,10550,1,4368_7778195_1014016,4368_76 -4358_80683,227,4368_2545,Beaumont,3007,1,4368_7778195_1014026,4368_76 -4358_80683,229,4368_2546,Beaumont,16554,1,4368_7778195_1014004,4368_78 -4358_80683,227,4368_2547,Beaumont,2958,1,4368_7778195_1014029,4368_76 -4358_80683,228,4368_2548,Beaumont,10574,1,4368_7778195_1014009,4368_78 -4358_80683,229,4368_2549,Beaumont,16462,1,4368_7778195_1014007,4368_76 -4358_80760,227,4368_255,Shanard Road,1640,1,4368_7778195_9001011,4368_4 -4358_80683,227,4368_2550,Beaumont,2942,1,4368_7778195_1014007,4368_78 -4358_80683,228,4368_2551,Beaumont,10735,1,4368_7778195_1014017,4368_76 -4358_80683,227,4368_2552,Beaumont,2872,1,4368_7778195_1014017,4368_76 -4358_80683,227,4368_2553,Beaumont,3078,1,4368_7778195_1014018,4368_76 -4358_80683,229,4368_2554,Beaumont,16500,1,4368_7778195_1014006,4368_78 -4358_80683,228,4368_2555,Beaumont,10655,1,4368_7778195_1014014,4368_80 -4358_80683,227,4368_2556,Beaumont,2830,1,4368_7778195_1014030,4368_76 -4358_80683,228,4368_2557,Beaumont,10733,1,4368_7778195_1014002,4368_76 -4358_80683,229,4368_2558,Beaumont,16525,1,4368_7778195_1014011,4368_76 -4358_80683,227,4368_2559,Beaumont,2975,1,4368_7778195_1014012,4368_76 -4358_80760,228,4368_256,Shanard Road,9381,1,4368_7778195_9001001,4368_4 -4358_80683,228,4368_2560,Beaumont,10712,1,4368_7778195_1014003,4368_76 -4358_80683,227,4368_2561,Beaumont,2914,1,4368_7778195_1014013,4368_76 -4358_80683,229,4368_2562,Beaumont,16429,1,4368_7778195_1014003,4368_76 -4358_80683,228,4368_2563,Beaumont,10724,1,4368_7778195_1014005,4368_76 -4358_80683,227,4368_2564,Beaumont,2845,1,4368_7778195_1014024,4368_76 -4358_80683,228,4368_2565,Beaumont,10700,1,4368_7778195_1014007,4368_76 -4358_80683,229,4368_2566,Beaumont,16512,1,4368_7778195_1014002,4368_78 -4358_80683,227,4368_2567,Beaumont,3002,1,4368_7778195_1014025,4368_80 -4358_80683,227,4368_2568,Beaumont,2998,1,4368_7778195_1014015,4368_76 -4358_80683,228,4368_2569,Beaumont,10564,1,4368_7778195_1014015,4368_76 -4358_80760,227,4368_257,Shanard Road,3144,1,4368_7778195_9001004,4368_4 -4358_80683,229,4368_2570,Beaumont,16471,1,4368_7778195_1014008,4368_76 -4358_80683,227,4368_2571,Beaumont,3020,1,4368_7778195_1014028,4368_76 -4358_80683,228,4368_2572,Beaumont,10680,1,4368_7778195_1014012,4368_76 -4358_80683,227,4368_2573,Beaumont,3070,1,4368_7778195_1014001,4368_76 -4358_80683,229,4368_2574,Beaumont,16534,1,4368_7778195_1014005,4368_76 -4358_80683,227,4368_2575,Beaumont,2988,1,4368_7778195_1014020,4368_76 -4358_80683,228,4368_2576,Beaumont,10622,1,4368_7778195_1014011,4368_76 -4358_80683,227,4368_2577,Beaumont,2966,1,4368_7778195_1014022,4368_76 -4358_80683,229,4368_2578,Beaumont,16584,1,4368_7778195_1014001,4368_78 -4358_80683,228,4368_2579,Beaumont,10674,1,4368_7778195_1014004,4368_76 -4358_80760,229,4368_258,Shanard Road,15514,1,4368_7778195_9001003,4368_4 -4358_80683,227,4368_2580,Beaumont,2930,1,4368_7778195_1014027,4368_76 -4358_80683,229,4368_2581,Beaumont,16456,1,4368_7778195_1014010,4368_76 -4358_80683,228,4368_2582,Beaumont,10611,1,4368_7778195_1014008,4368_76 -4358_80683,227,4368_2583,Beaumont,2905,1,4368_7778195_1014009,4368_78 -4358_80683,229,4368_2584,Beaumont,16556,1,4368_7778195_1014004,4368_76 -4358_80683,227,4368_2585,Beaumont,2816,1,4368_7778195_1014011,4368_76 -4358_80683,228,4368_2586,Beaumont,10552,1,4368_7778195_1014016,4368_76 -4358_80683,227,4368_2587,Beaumont,3060,1,4368_7778195_1014014,4368_76 -4358_80683,229,4368_2588,Beaumont,16464,1,4368_7778195_1014007,4368_78 -4358_80683,228,4368_2589,Beaumont,10737,1,4368_7778195_1014017,4368_76 -4358_80760,227,4368_259,Shanard Road,1798,1,4368_7778195_9001012,4368_4 -4358_80683,227,4368_2590,Beaumont,2944,1,4368_7778195_1014007,4368_76 -4358_80683,229,4368_2591,Beaumont,16502,1,4368_7778195_1014006,4368_76 -4358_80683,227,4368_2592,Beaumont,2874,1,4368_7778195_1014017,4368_76 -4358_80683,228,4368_2593,Beaumont,10657,1,4368_7778195_1014014,4368_78 -4358_80683,229,4368_2594,Beaumont,16431,1,4368_7778195_1014003,4368_76 -4358_80683,227,4368_2595,Beaumont,3080,1,4368_7778195_1014018,4368_76 -4358_80683,228,4368_2596,Beaumont,10714,1,4368_7778195_1014003,4368_76 -4358_80683,229,4368_2597,Beaumont,16514,1,4368_7778195_1014002,4368_76 -4358_80683,227,4368_2598,Beaumont,2832,1,4368_7778195_1014030,4368_78 -4358_80683,228,4368_2599,Beaumont,10702,1,4368_7778195_1014007,4368_76 -4358_80760,227,4368_26,Shaw street,1843,0,4368_7778195_9001006,4368_1 -4358_80760,228,4368_260,Shanard Road,9511,1,4368_7778195_9001005,4368_5 -4358_80683,227,4368_2600,Beaumont,2916,1,4368_7778195_1014013,4368_76 -4358_80683,229,4368_2601,Beaumont,16473,1,4368_7778195_1014008,4368_76 -4358_80683,228,4368_2602,Beaumont,10566,1,4368_7778195_1014015,4368_76 -4358_80683,227,4368_2603,Beaumont,3004,1,4368_7778195_1014025,4368_78 -4358_80683,229,4368_2604,Beaumont,16536,1,4368_7778195_1014005,4368_76 -4358_80683,227,4368_2605,Beaumont,2990,1,4368_7778195_1014020,4368_76 -4358_80683,228,4368_2606,Beaumont,10682,1,4368_7778195_1014012,4368_76 -4358_80683,227,4368_2607,Beaumont,2968,1,4368_7778195_1014022,4368_76 -4358_80683,229,4368_2608,Beaumont,16586,1,4368_7778195_1014001,4368_78 -4358_80683,228,4368_2609,Beaumont,10624,1,4368_7778195_1014011,4368_76 -4358_80760,229,4368_261,Shanard Road,15665,1,4368_7778195_9001005,4368_4 -4358_80683,227,4368_2610,Beaumont,2932,1,4368_7778195_1014027,4368_76 -4358_80683,229,4368_2611,Beaumont,16458,1,4368_7778195_1014010,4368_76 -4358_80683,228,4368_2612,Eden Quay,10613,1,4368_7778195_1014008,4368_79 -4358_80683,227,4368_2613,Beaumont,2907,1,4368_7778195_1014009,4368_76 -4358_80683,229,4368_2614,Beaumont,16466,1,4368_7778195_1014007,4368_76 -4358_80683,227,4368_2615,Beaumont,2818,1,4368_7778195_1014011,4368_76 -4358_80683,228,4368_2616,Eden Quay,10554,1,4368_7778195_1014016,4368_79 -4358_80683,227,4368_2617,Beaumont,3062,1,4368_7778195_1014014,4368_76 -4358_80683,229,4368_2618,Beaumont,16504,1,4368_7778195_1014006,4368_78 -4358_80759,228,4368_2619,Rathmines,9347,0,4368_7778195_9140001,4368_82 -4358_80760,227,4368_262,Shanard Road,1850,1,4368_7778195_9001006,4368_4 -4358_80759,227,4368_2620,Rathmines,1829,0,4368_7778195_9140001,4368_82 -4358_80759,227,4368_2621,Rathmines,1612,0,4368_7778195_9140002,4368_82 -4358_80759,228,4368_2622,Rathmines,9431,0,4368_7778195_9140002,4368_84 -4358_80759,227,4368_2623,Rathmines,1866,0,4368_7778195_9140003,4368_82 -4358_80759,228,4368_2624,Rathmines,9499,0,4368_7778195_9140003,4368_82 -4358_80759,227,4368_2625,Rathmines,3096,0,4368_7778195_9140005,4368_82 -4358_80759,227,4368_2626,Rathmines,3102,0,4368_7778195_9140006,4368_82 -4358_80759,227,4368_2627,Rathmines,1648,0,4368_7778195_9140008,4368_82 -4358_80759,228,4368_2628,Rathmines,9280,0,4368_7778195_9140004,4368_82 -4358_80759,227,4368_2629,Rathmines,1669,0,4368_7778195_9140009,4368_82 -4358_80760,228,4368_263,Shanard Road,9451,1,4368_7778195_9001003,4368_4 -4358_80759,227,4368_2630,Rathmines,1899,0,4368_7778195_9140011,4368_82 -4358_80759,228,4368_2631,Rathmines,9527,0,4368_7778195_9140005,4368_82 -4358_80759,227,4368_2632,Rathmines,1622,0,4368_7778195_9140012,4368_82 -4358_80759,227,4368_2633,Rathmines,3109,0,4368_7778195_9140013,4368_82 -4358_80759,227,4368_2634,Rathmines,5981,0,4368_7778195_6826117,4368_82 -4358_80759,227,4368_2635,Rathmines,1771,0,4368_7778195_9140014,4368_82 -4358_80759,228,4368_2636,Rathmines,9579,0,4368_7778195_9140006,4368_82 -4358_80759,227,4368_2637,Rathmines,5976,0,4368_7778195_6826111,4368_82 -4358_80759,227,4368_2638,Rathmines,6542,0,4368_7778195_9140015,4368_82 -4358_80759,227,4368_2639,Rathmines,1565,0,4368_7778195_9140004,4368_82 -4358_80760,227,4368_264,Shanard Road,1706,1,4368_7778195_9001008,4368_4 -4358_80759,228,4368_2640,Rathmines,9349,0,4368_7778195_9140001,4368_82 -4358_80759,227,4368_2641,Rathmines,1889,0,4368_7778195_9140007,4368_82 -4358_80759,227,4368_2642,Rathmines,1645,0,4368_7778195_9140016,4368_82 -4358_80759,228,4368_2643,Rathmines,9433,0,4368_7778195_9140002,4368_82 -4358_80759,227,4368_2644,Rathmines,1557,0,4368_7778195_9140010,4368_82 -4358_80759,227,4368_2645,Rathmines,1831,0,4368_7778195_9140001,4368_82 -4358_80759,228,4368_2646,Rathmines,9501,0,4368_7778195_9140003,4368_84 -4358_80759,227,4368_2647,Rathmines,1614,0,4368_7778195_9140002,4368_82 -4358_80759,228,4368_2648,Rathmines,9593,0,4368_7778195_9140008,4368_84 -4358_80759,228,4368_2649,Rathmines,9282,0,4368_7778195_9140004,4368_82 -4358_80760,229,4368_265,Shanard Road,15692,1,4368_7778195_9001001,4368_4 -4358_80759,229,4368_2650,Rathmines,15740,0,4368_7778195_9140001,4368_84 -4358_80759,227,4368_2651,Rathmines,1868,0,4368_7778195_9140003,4368_85 -4358_80759,227,4368_2652,Rathmines,3098,0,4368_7778195_9140005,4368_82 -4358_80759,228,4368_2653,Rathmines,9529,0,4368_7778195_9140005,4368_84 -4358_80759,229,4368_2654,Rathmines,15543,0,4368_7778195_9140002,4368_82 -4358_80759,227,4368_2655,Rathmines,3104,0,4368_7778195_9140006,4368_84 -4358_80759,228,4368_2656,Rathmines,9588,0,4368_7778195_9140007,4368_85 -4358_80759,228,4368_2657,Rathmines,9600,0,4368_7778195_9140010,4368_82 -4358_80759,227,4368_2658,Rathmines,1671,0,4368_7778195_9140009,4368_84 -4358_80759,228,4368_2659,Rathmines,9581,0,4368_7778195_9140006,4368_82 -4358_80760,227,4368_266,Shanard Road,1824,1,4368_7778195_9001001,4368_4 -4358_80759,227,4368_2660,Rathmines,1624,0,4368_7778195_9140012,4368_84 -4358_80759,229,4368_2661,Rathmines,15497,0,4368_7778195_9140003,4368_85 -4358_80759,227,4368_2662,Rathmines,3111,0,4368_7778195_9140013,4368_82 -4358_80759,228,4368_2663,Rathmines,9351,0,4368_7778195_9140001,4368_84 -4358_80759,229,4368_2664,Rathmines,15624,0,4368_7778195_9140004,4368_82 -4358_80759,228,4368_2665,Rathmines,9435,0,4368_7778195_9140002,4368_84 -4358_80759,227,4368_2666,Rathmines,6544,0,4368_7778195_9140015,4368_85 -4358_80759,228,4368_2667,Rathmines,9410,0,4368_7778195_9140009,4368_82 -4358_80759,227,4368_2668,Rathmines,1891,0,4368_7778195_9140007,4368_84 -4358_80759,227,4368_2669,Rathmines,1647,0,4368_7778195_9140016,4368_82 -4358_80760,228,4368_267,Shanard Road,9489,1,4368_7778195_9001004,4368_4 -4358_80759,229,4368_2670,Rathmines,15756,0,4368_7778195_9140005,4368_84 -4358_80759,228,4368_2671,Rathmines,9503,0,4368_7778195_9140003,4368_85 -4358_80759,227,4368_2672,Rathmines,1559,0,4368_7778195_9140010,4368_82 -4358_80759,228,4368_2673,Rathmines,9595,0,4368_7778195_9140008,4368_84 -4358_80759,228,4368_2674,Rathmines,9610,0,4368_7778195_9140011,4368_82 -4358_80759,229,4368_2675,Rathmines,15742,0,4368_7778195_9140001,4368_84 -4358_80759,227,4368_2676,Rathmines,1616,0,4368_7778195_9140002,4368_85 -4358_80759,228,4368_2677,Rathmines,9284,0,4368_7778195_9140004,4368_82 -4358_80759,227,4368_2678,Rathmines,1870,0,4368_7778195_9140003,4368_84 -4358_80759,229,4368_2679,Rathmines,15545,0,4368_7778195_9140002,4368_82 -4358_80760,227,4368_268,Shanard Road,1661,1,4368_7778195_9001003,4368_4 -4358_80759,227,4368_2680,Rathmines,3100,0,4368_7778195_9140005,4368_82 -4358_80759,228,4368_2681,Rathmines,9531,0,4368_7778195_9140005,4368_84 -4358_80759,229,4368_2682,Rathmines,15499,0,4368_7778195_9140003,4368_82 -4358_80759,227,4368_2683,Rathmines,3106,0,4368_7778195_9140006,4368_82 -4358_80759,228,4368_2684,Rathmines,9590,0,4368_7778195_9140007,4368_84 -4358_80759,228,4368_2685,Rathmines,9602,0,4368_7778195_9140010,4368_82 -4358_80759,227,4368_2686,Rathmines,1626,0,4368_7778195_9140012,4368_84 -4358_80759,229,4368_2687,Rathmines,15751,0,4368_7778195_9140007,4368_85 -4358_80759,228,4368_2688,Rathmines,9583,0,4368_7778195_9140006,4368_82 -4358_80759,227,4368_2689,Rathmines,3113,0,4368_7778195_9140013,4368_84 -4358_80760,229,4368_269,Shanard Road,15590,1,4368_7778195_9001004,4368_4 -4358_80759,229,4368_2690,Rathmines,15626,0,4368_7778195_9140004,4368_82 -4358_80759,228,4368_2691,Rathmines,9353,0,4368_7778195_9140001,4368_82 -4358_80759,227,4368_2692,Rathmines,1716,0,4368_7778195_9140017,4368_84 -4358_80759,229,4368_2693,Rathmines,15771,0,4368_7778195_9140009,4368_82 -4358_80759,228,4368_2694,Rathmines,9437,0,4368_7778195_9140002,4368_82 -4358_80759,227,4368_2695,Rathmines,6546,0,4368_7778195_9140015,4368_84 -4358_80759,229,4368_2696,Rathmines,15763,0,4368_7778195_9140006,4368_82 -4358_80759,227,4368_2697,Rathmines,1893,0,4368_7778195_9140007,4368_84 -4358_80759,228,4368_2698,Rathmines,9301,0,4368_7778195_9140012,4368_85 -4358_80759,228,4368_2699,Rathmines,9412,0,4368_7778195_9140009,4368_82 -4358_80760,227,4368_27,Shaw street,1863,0,4368_7778195_9001009,4368_1 -4358_80760,228,4368_270,Shanard Road,9321,1,4368_7778195_9001002,4368_4 -4358_80759,227,4368_2700,Rathmines,1675,0,4368_7778195_9140018,4368_84 -4358_80759,229,4368_2701,Rathmines,15758,0,4368_7778195_9140005,4368_82 -4358_80759,227,4368_2702,Rathmines,1561,0,4368_7778195_9140010,4368_82 -4358_80759,228,4368_2703,Rathmines,9597,0,4368_7778195_9140008,4368_84 -4358_80759,229,4368_2704,Rathmines,15551,0,4368_7778195_9140008,4368_82 -4358_80759,228,4368_2705,Rathmines,9421,0,4368_7778195_9140013,4368_82 -4358_80759,227,4368_2706,Rathmines,1743,0,4368_7778195_9140019,4368_84 -4358_80759,228,4368_2707,Rathmines,9612,0,4368_7778195_9140011,4368_82 -4358_80759,229,4368_2708,Rathmines,15744,0,4368_7778195_9140001,4368_84 -4358_80759,227,4368_2709,Rathmines,1618,0,4368_7778195_9140002,4368_85 -4358_80760,227,4368_271,Shanard Road,1595,1,4368_7778195_9001005,4368_5 -4358_80759,228,4368_2710,Rathmines,9286,0,4368_7778195_9140004,4368_82 -4358_80759,227,4368_2711,Rathmines,1872,0,4368_7778195_9140003,4368_84 -4358_80759,229,4368_2712,Rathmines,15547,0,4368_7778195_9140002,4368_82 -4358_80759,228,4368_2713,Rathmines,9533,0,4368_7778195_9140005,4368_82 -4358_80759,227,4368_2714,Rathmines,1768,0,4368_7778195_9140020,4368_84 -4358_80759,229,4368_2715,Rathmines,15501,0,4368_7778195_9140003,4368_82 -4358_80759,227,4368_2716,Rathmines,3108,0,4368_7778195_9140006,4368_84 -4358_80759,228,4368_2717,Rathmines,9592,0,4368_7778195_9140007,4368_82 -4358_80759,227,4368_2718,Rathmines,1628,0,4368_7778195_9140012,4368_82 -4358_80759,228,4368_2719,Rathmines,9604,0,4368_7778195_9140010,4368_82 -4358_80760,229,4368_272,Shanard Road,15731,1,4368_7778195_9001002,4368_4 -4358_80759,227,4368_2720,Rathmines,1757,0,4368_7778195_9140021,4368_84 -4358_80759,229,4368_2721,Rathmines,15753,0,4368_7778195_9140007,4368_85 -4358_80759,227,4368_2722,Rathmines,1901,0,4368_7778195_9140022,4368_82 -4358_80759,228,4368_2723,Rathmines,9585,0,4368_7778195_9140006,4368_82 -4358_80759,229,4368_2724,Rathmines,15628,0,4368_7778195_9140004,4368_82 -4358_80759,227,4368_2725,Rathmines,3115,0,4368_7778195_9140013,4368_84 -4358_80759,227,4368_2726,Rathmines,5974,0,4368_7778195_6826210,4368_82 -4358_80759,228,4368_2727,Rathmines,9355,0,4368_7778195_9140001,4368_82 -4358_80759,227,4368_2728,Rathmines,1718,0,4368_7778195_9140017,4368_84 -4358_80759,227,4368_2729,Rathmines,1909,0,4368_7778195_9140024,4368_82 -4358_80760,227,4368_273,Shanard Road,1730,1,4368_7778195_9001013,4368_4 -4358_80759,229,4368_2730,Rathmines,15773,0,4368_7778195_9140009,4368_84 -4358_80759,227,4368_2731,Rathmines,6449,0,4368_7778195_7140662,4368_82 -4358_80759,228,4368_2732,Rathmines,9439,0,4368_7778195_9140002,4368_84 -4358_80759,227,4368_2733,Rathmines,6548,0,4368_7778195_9140015,4368_82 -4358_80759,229,4368_2734,Rathmines,15765,0,4368_7778195_9140006,4368_82 -4358_80759,227,4368_2735,Rathmines,1895,0,4368_7778195_9140007,4368_84 -4358_80759,228,4368_2736,Rathmines,9303,0,4368_7778195_9140012,4368_85 -4358_80759,227,4368_2737,Rathmines,1677,0,4368_7778195_9140018,4368_82 -4358_80759,228,4368_2738,Rathmines,9414,0,4368_7778195_9140009,4368_82 -4358_80759,227,4368_2739,Rathmines,1828,0,4368_7778195_9140026,4368_82 -4358_80760,228,4368_274,Shanard Road,9383,1,4368_7778195_9001001,4368_4 -4358_80759,229,4368_2740,Rathmines,15760,0,4368_7778195_9140005,4368_84 -4358_80759,227,4368_2741,Rathmines,1563,0,4368_7778195_9140010,4368_82 -4358_80759,228,4368_2742,Rathmines,9599,0,4368_7778195_9140008,4368_84 -4358_80759,227,4368_2743,Rathmines,1745,0,4368_7778195_9140019,4368_82 -4358_80759,229,4368_2744,Rathmines,15553,0,4368_7778195_9140008,4368_84 -4358_80759,228,4368_2745,Rathmines,9423,0,4368_7778195_9140013,4368_82 -4358_80759,227,4368_2746,Rathmines,3117,0,4368_7778195_9140023,4368_82 -4358_80759,228,4368_2747,Rathmines,9614,0,4368_7778195_9140011,4368_82 -4358_80759,229,4368_2748,Rathmines,15746,0,4368_7778195_9140001,4368_84 -4358_80759,227,4368_2749,Rathmines,1620,0,4368_7778195_9140002,4368_85 -4358_80760,227,4368_275,Shanard Road,1548,1,4368_7778195_9001010,4368_4 -4358_80759,227,4368_2750,Rathmines,1874,0,4368_7778195_9140003,4368_82 -4358_80759,228,4368_2751,Rathmines,9522,0,4368_7778195_9140014,4368_82 -4358_80759,229,4368_2752,Rathmines,15549,0,4368_7778195_9140002,4368_82 -4358_80759,227,4368_2753,Rathmines,1803,0,4368_7778195_9140025,4368_84 -4358_80759,228,4368_2754,Rathmines,9535,0,4368_7778195_9140005,4368_82 -4358_80759,227,4368_2755,Rathmines,1770,0,4368_7778195_9140020,4368_84 -4358_80759,227,4368_2756,Rathmines,1630,0,4368_7778195_9140012,4368_82 -4358_80759,229,4368_2757,Rathmines,15503,0,4368_7778195_9140003,4368_84 -4358_80759,228,4368_2758,Rathmines,9606,0,4368_7778195_9140010,4368_82 -4358_80759,227,4368_2759,Rathmines,1759,0,4368_7778195_9140021,4368_82 -4358_80760,229,4368_276,Shanard Road,15516,1,4368_7778195_9001003,4368_4 -4358_80759,227,4368_2760,Rathmines,1903,0,4368_7778195_9140022,4368_82 -4358_80759,228,4368_2761,Rathmines,9616,0,4368_7778195_9140015,4368_84 -4358_80759,229,4368_2762,Rathmines,15755,0,4368_7778195_9140007,4368_85 -4358_80759,229,4368_2763,Rathmines,15630,0,4368_7778195_9140004,4368_82 -4358_80759,227,4368_2764,Rathmines,1720,0,4368_7778195_9140017,4368_84 -4358_80759,228,4368_2765,Rathmines,9357,0,4368_7778195_9140001,4368_82 -4358_80759,227,4368_2766,Rathmines,6550,0,4368_7778195_9140015,4368_82 -4358_80759,229,4368_2767,Rathmines,15775,0,4368_7778195_9140009,4368_84 -4358_80759,229,4368_2768,Rathmines,15767,0,4368_7778195_9140006,4368_82 -4358_80759,227,4368_2769,Rathmines,1679,0,4368_7778195_9140018,4368_84 -4358_80760,227,4368_277,Shanard Road,1642,1,4368_7778195_9001011,4368_4 -4358_80759,228,4368_2770,Rathmines,9305,0,4368_7778195_9140012,4368_85 -4358_80759,227,4368_2771,Rathmines,1747,0,4368_7778195_9140019,4368_82 -4358_80759,228,4368_2772,Rathmines,9309,0,4368_7778195_9140017,4368_84 -4358_80759,229,4368_2773,Rathmines,15555,0,4368_7778195_9140008,4368_85 -4358_80759,228,4368_2774,Rathmines,9524,0,4368_7778195_9140014,4368_82 -4358_80759,229,4368_2775,Rathmines,15748,0,4368_7778195_9140001,4368_84 -4358_80759,227,4368_2776,Rathmines,1805,0,4368_7778195_9140025,4368_85 -4358_80759,227,4368_2777,Rathmines,1905,0,4368_7778195_9140022,4368_82 -4358_80759,228,4368_2778,Rathmines,9608,0,4368_7778195_9140010,4368_84 -4358_80759,229,4368_2779,Rathmines,15505,0,4368_7778195_9140003,4368_85 -4358_80760,228,4368_278,Shanard Road,9513,1,4368_7778195_9001005,4368_4 -4358_80759,229,4368_2780,Rathmines,15769,0,4368_7778195_9140006,4368_82 -4358_80759,228,4368_2781,Rathmines,9618,0,4368_7778195_9140015,4368_84 -4358_80759,227,4368_2782,Rathmines,1722,0,4368_7778195_9140017,4368_85 -4358_80759,228,4368_2783,Rathmines,9359,0,4368_7778195_9140001,4368_82 -4358_80759,227,4368_2784,Rathmines,6552,0,4368_7778195_9140015,4368_84 -4358_80759,229,4368_2785,Rathmines,15557,0,4368_7778195_9140008,4368_85 -4358_80759,227,4368_2786,Rathmines,1908,0,4368_7778195_9140028,4368_82 -4358_80759,229,4368_2787,Rathmines,15750,0,4368_7778195_9140001,4368_84 -4358_80759,228,4368_2788,Rathmines,9307,0,4368_7778195_9140012,4368_85 -4358_80759,228,4368_2789,O'Connell St,9526,0,4368_7778195_9140014,4368_83 -4358_80760,227,4368_279,Shanard Road,3146,1,4368_7778195_9001004,4368_4 -4358_80759,229,4368_2790,O'Connell St,15507,0,4368_7778195_9140003,4368_86 -4358_80759,227,4368_2791,O'Connell St,1807,0,4368_7778195_9140025,4368_87 -4358_80759,227,4368_2792,IKEA,1564,1,4368_7778195_9140004,4368_88 -4358_80759,227,4368_2793,IKEA,1888,1,4368_7778195_9140007,4368_88 -4358_80759,228,4368_2794,IKEA,9348,1,4368_7778195_9140001,4368_88 -4358_80759,227,4368_2795,IKEA,1556,1,4368_7778195_9140010,4368_88 -4358_80759,228,4368_2796,IKEA,9432,1,4368_7778195_9140002,4368_88 -4358_80759,227,4368_2797,IKEA,1830,1,4368_7778195_9140001,4368_88 -4358_80759,227,4368_2798,IKEA,1613,1,4368_7778195_9140002,4368_88 -4358_80759,228,4368_2799,IKEA,9500,1,4368_7778195_9140003,4368_89 -4358_80760,228,4368_28,Shaw street,9444,0,4368_7778195_9001003,4368_1 -4358_80760,229,4368_280,Shanard Road,15667,1,4368_7778195_9001005,4368_4 -4358_80759,227,4368_2800,IKEA,1867,1,4368_7778195_9140003,4368_88 -4358_80759,228,4368_2801,IKEA,9281,1,4368_7778195_9140004,4368_88 -4358_80759,227,4368_2802,IKEA,3097,1,4368_7778195_9140005,4368_88 -4358_80759,227,4368_2803,IKEA,3103,1,4368_7778195_9140006,4368_88 -4358_80759,228,4368_2804,IKEA,9528,1,4368_7778195_9140005,4368_88 -4358_80759,227,4368_2805,IKEA,1649,1,4368_7778195_9140008,4368_88 -4358_80759,227,4368_2806,IKEA,1670,1,4368_7778195_9140009,4368_88 -4358_80759,228,4368_2807,IKEA,9587,1,4368_7778195_9140007,4368_88 -4358_80759,227,4368_2808,IKEA,1900,1,4368_7778195_9140011,4368_88 -4358_80759,228,4368_2809,IKEA,9580,1,4368_7778195_9140006,4368_88 -4358_80760,227,4368_281,Shanard Road,1800,1,4368_7778195_9001012,4368_4 -4358_80759,227,4368_2810,IKEA,1623,1,4368_7778195_9140012,4368_89 -4358_80759,227,4368_2811,IKEA,3110,1,4368_7778195_9140013,4368_88 -4358_80759,228,4368_2812,IKEA,9350,1,4368_7778195_9140001,4368_88 -4358_80759,227,4368_2813,IKEA,1772,1,4368_7778195_9140014,4368_88 -4358_80759,228,4368_2814,IKEA,9434,1,4368_7778195_9140002,4368_88 -4358_80759,227,4368_2815,IKEA,6543,1,4368_7778195_9140015,4368_89 -4358_80759,228,4368_2816,IKEA,9409,1,4368_7778195_9140009,4368_88 -4358_80759,227,4368_2817,IKEA,1890,1,4368_7778195_9140007,4368_89 -4358_80759,227,4368_2818,IKEA,1646,1,4368_7778195_9140016,4368_88 -4358_80759,228,4368_2819,IKEA,9502,1,4368_7778195_9140003,4368_89 -4358_80760,228,4368_282,Shanard Road,9453,1,4368_7778195_9001003,4368_5 -4358_80759,229,4368_2820,IKEA,15741,1,4368_7778195_9140001,4368_88 -4358_80759,227,4368_2821,IKEA,1558,1,4368_7778195_9140010,4368_89 -4358_80759,228,4368_2822,IKEA,9594,1,4368_7778195_9140008,4368_90 -4358_80759,228,4368_2823,IKEA,9283,1,4368_7778195_9140004,4368_88 -4358_80759,227,4368_2824,IKEA,1615,1,4368_7778195_9140002,4368_89 -4358_80759,229,4368_2825,IKEA,15544,1,4368_7778195_9140002,4368_88 -4358_80759,228,4368_2826,IKEA,9530,1,4368_7778195_9140005,4368_89 -4358_80759,227,4368_2827,IKEA,1869,1,4368_7778195_9140003,4368_90 -4358_80759,227,4368_2828,IKEA,3099,1,4368_7778195_9140005,4368_88 -4358_80759,228,4368_2829,IKEA,9589,1,4368_7778195_9140007,4368_89 -4358_80760,229,4368_283,Shanard Road,15694,1,4368_7778195_9001001,4368_4 -4358_80759,228,4368_2830,IKEA,9601,1,4368_7778195_9140010,4368_88 -4358_80759,229,4368_2831,IKEA,15498,1,4368_7778195_9140003,4368_89 -4358_80759,227,4368_2832,IKEA,3105,1,4368_7778195_9140006,4368_90 -4358_80759,228,4368_2833,IKEA,9582,1,4368_7778195_9140006,4368_88 -4358_80759,227,4368_2834,IKEA,1625,1,4368_7778195_9140012,4368_89 -4358_80759,229,4368_2835,IKEA,15625,1,4368_7778195_9140004,4368_88 -4358_80759,227,4368_2836,IKEA,3112,1,4368_7778195_9140013,4368_89 -4358_80759,228,4368_2837,IKEA,9352,1,4368_7778195_9140001,4368_90 -4358_80759,228,4368_2838,IKEA,9436,1,4368_7778195_9140002,4368_88 -4358_80759,227,4368_2839,IKEA,1715,1,4368_7778195_9140017,4368_89 -4358_80760,227,4368_284,Shanard Road,1852,1,4368_7778195_9001006,4368_4 -4358_80759,229,4368_2840,IKEA,15762,1,4368_7778195_9140006,4368_88 -4358_80759,228,4368_2841,IKEA,9300,1,4368_7778195_9140012,4368_89 -4358_80759,227,4368_2842,IKEA,6545,1,4368_7778195_9140015,4368_90 -4358_80759,228,4368_2843,IKEA,9411,1,4368_7778195_9140009,4368_88 -4358_80759,227,4368_2844,IKEA,1892,1,4368_7778195_9140007,4368_89 -4358_80759,229,4368_2845,IKEA,15757,1,4368_7778195_9140005,4368_88 -4358_80759,227,4368_2846,IKEA,1674,1,4368_7778195_9140018,4368_88 -4358_80759,228,4368_2847,IKEA,9596,1,4368_7778195_9140008,4368_89 -4358_80759,229,4368_2848,IKEA,15550,1,4368_7778195_9140008,4368_88 -4358_80759,228,4368_2849,IKEA,9420,1,4368_7778195_9140013,4368_88 -4358_80760,228,4368_285,Shanard Road,9491,1,4368_7778195_9001004,4368_4 -4358_80759,227,4368_2850,IKEA,1560,1,4368_7778195_9140010,4368_89 -4358_80759,228,4368_2851,IKEA,9611,1,4368_7778195_9140011,4368_88 -4358_80759,229,4368_2852,IKEA,15743,1,4368_7778195_9140001,4368_89 -4358_80759,227,4368_2853,IKEA,1617,1,4368_7778195_9140002,4368_90 -4358_80759,228,4368_2854,IKEA,9285,1,4368_7778195_9140004,4368_88 -4358_80759,227,4368_2855,IKEA,1871,1,4368_7778195_9140003,4368_89 -4358_80759,229,4368_2856,IKEA,15546,1,4368_7778195_9140002,4368_88 -4358_80759,227,4368_2857,IKEA,3101,1,4368_7778195_9140005,4368_88 -4358_80759,228,4368_2858,IKEA,9532,1,4368_7778195_9140005,4368_89 -4358_80759,229,4368_2859,IKEA,15500,1,4368_7778195_9140003,4368_88 -4358_80760,227,4368_286,Shanard Road,1708,1,4368_7778195_9001008,4368_4 -4358_80759,227,4368_2860,IKEA,3107,1,4368_7778195_9140006,4368_88 -4358_80759,228,4368_2861,IKEA,9591,1,4368_7778195_9140007,4368_89 -4358_80759,228,4368_2862,IKEA,9603,1,4368_7778195_9140010,4368_88 -4358_80759,227,4368_2863,IKEA,1627,1,4368_7778195_9140012,4368_89 -4358_80759,229,4368_2864,IKEA,15752,1,4368_7778195_9140007,4368_90 -4358_80759,228,4368_2865,IKEA,9584,1,4368_7778195_9140006,4368_88 -4358_80759,227,4368_2866,IKEA,3114,1,4368_7778195_9140013,4368_89 -4358_80759,229,4368_2867,IKEA,15627,1,4368_7778195_9140004,4368_88 -4358_80759,228,4368_2868,IKEA,9354,1,4368_7778195_9140001,4368_88 -4358_80759,227,4368_2869,IKEA,1717,1,4368_7778195_9140017,4368_89 -4358_80760,229,4368_287,Shanard Road,15592,1,4368_7778195_9001004,4368_4 -4358_80759,229,4368_2870,IKEA,15772,1,4368_7778195_9140009,4368_88 -4358_80759,228,4368_2871,IKEA,9438,1,4368_7778195_9140002,4368_88 -4358_80759,227,4368_2872,IKEA,6547,1,4368_7778195_9140015,4368_89 -4358_80759,229,4368_2873,IKEA,15764,1,4368_7778195_9140006,4368_88 -4358_80759,227,4368_2874,IKEA,1894,1,4368_7778195_9140007,4368_89 -4358_80759,228,4368_2875,IKEA,9302,1,4368_7778195_9140012,4368_90 -4358_80759,228,4368_2876,IKEA,9413,1,4368_7778195_9140009,4368_88 -4358_80759,227,4368_2877,IKEA,1676,1,4368_7778195_9140018,4368_89 -4358_80759,229,4368_2878,IKEA,15759,1,4368_7778195_9140005,4368_88 -4358_80759,227,4368_2879,IKEA,1562,1,4368_7778195_9140010,4368_88 -4358_80760,227,4368_288,Shanard Road,1826,1,4368_7778195_9001001,4368_4 -4358_80759,228,4368_2880,IKEA,9598,1,4368_7778195_9140008,4368_89 -4358_80759,227,4368_2881,IKEA,1744,1,4368_7778195_9140019,4368_88 -4358_80759,229,4368_2882,IKEA,15552,1,4368_7778195_9140008,4368_89 -4358_80759,228,4368_2883,IKEA,9422,1,4368_7778195_9140013,4368_88 -4358_80759,227,4368_2884,IKEA,3116,1,4368_7778195_9140023,4368_88 -4358_80759,228,4368_2885,IKEA,9613,1,4368_7778195_9140011,4368_88 -4358_80759,229,4368_2886,IKEA,15745,1,4368_7778195_9140001,4368_89 -4358_80759,227,4368_2887,IKEA,1619,1,4368_7778195_9140002,4368_90 -4358_80759,227,4368_2888,IKEA,1873,1,4368_7778195_9140003,4368_88 -4358_80759,228,4368_2889,IKEA,9521,1,4368_7778195_9140014,4368_88 -4358_80760,228,4368_289,Shanard Road,9323,1,4368_7778195_9001002,4368_4 -4358_80759,229,4368_2890,IKEA,15548,1,4368_7778195_9140002,4368_88 -4358_80759,227,4368_2891,IKEA,1802,1,4368_7778195_9140025,4368_89 -4358_80759,228,4368_2892,IKEA,9534,1,4368_7778195_9140005,4368_88 -4358_80759,227,4368_2893,IKEA,1769,1,4368_7778195_9140020,4368_89 -4358_80759,227,4368_2894,IKEA,1629,1,4368_7778195_9140012,4368_88 -4358_80759,229,4368_2895,IKEA,15502,1,4368_7778195_9140003,4368_89 -4358_80759,228,4368_2896,IKEA,9605,1,4368_7778195_9140010,4368_88 -4358_80759,227,4368_2897,IKEA,1758,1,4368_7778195_9140021,4368_88 -4358_80759,227,4368_2898,IKEA,1733,1,4368_7778195_9140027,4368_88 -4358_80759,228,4368_2899,IKEA,9615,1,4368_7778195_9140015,4368_89 -4358_80760,227,4368_29,Shaw street,1699,0,4368_7778195_9001008,4368_1 -4358_80760,227,4368_290,Shanard Road,1663,1,4368_7778195_9001003,4368_4 -4358_80759,229,4368_2900,IKEA,15754,1,4368_7778195_9140007,4368_90 -4358_80759,227,4368_2901,IKEA,1902,1,4368_7778195_9140022,4368_88 -4358_80759,228,4368_2902,IKEA,9586,1,4368_7778195_9140006,4368_88 -4358_80759,229,4368_2903,IKEA,15629,1,4368_7778195_9140004,4368_88 -4358_80759,227,4368_2904,IKEA,5975,1,4368_7778195_6826210,4368_89 -4358_80759,228,4368_2905,IKEA,9356,1,4368_7778195_9140001,4368_88 -4358_80759,227,4368_2906,IKEA,1719,1,4368_7778195_9140017,4368_89 -4358_80759,227,4368_2907,IKEA,6450,1,4368_7778195_7140662,4368_88 -4358_80759,229,4368_2908,IKEA,15774,1,4368_7778195_9140009,4368_89 -4358_80759,228,4368_2909,IKEA,9440,1,4368_7778195_9140002,4368_88 -4358_80760,229,4368_291,Shanard Road,15733,1,4368_7778195_9001002,4368_4 -4358_80759,227,4368_2910,IKEA,6549,1,4368_7778195_9140015,4368_88 -4358_80759,229,4368_2911,IKEA,15766,1,4368_7778195_9140006,4368_88 -4358_80759,228,4368_2912,IKEA,9304,1,4368_7778195_9140012,4368_89 -4358_80759,227,4368_2913,IKEA,1678,1,4368_7778195_9140018,4368_88 -4358_80759,228,4368_2914,IKEA,9308,1,4368_7778195_9140017,4368_88 -4358_80759,229,4368_2915,IKEA,15761,1,4368_7778195_9140005,4368_88 -4358_80759,228,4368_2916,IKEA,9424,1,4368_7778195_9140013,4368_88 -4358_80759,227,4368_2917,IKEA,1746,1,4368_7778195_9140019,4368_89 -4358_80759,229,4368_2918,IKEA,15554,1,4368_7778195_9140008,4368_88 -4358_80759,227,4368_2919,IKEA,1621,1,4368_7778195_9140002,4368_88 -4358_80760,227,4368_292,Shanard Road,1597,1,4368_7778195_9001005,4368_4 -4358_80759,228,4368_2920,IKEA,9523,1,4368_7778195_9140014,4368_88 -4358_80759,229,4368_2921,IKEA,15747,1,4368_7778195_9140001,4368_89 -4358_80759,227,4368_2922,IKEA,1804,1,4368_7778195_9140025,4368_88 -4358_80759,228,4368_2923,IKEA,9607,1,4368_7778195_9140010,4368_88 -4358_80759,227,4368_2924,IKEA,1631,1,4368_7778195_9140012,4368_89 -4358_80759,229,4368_2925,IKEA,15504,1,4368_7778195_9140003,4368_90 -4358_80759,227,4368_2926,IKEA,1904,1,4368_7778195_9140022,4368_88 -4358_80759,229,4368_2927,IKEA,15631,1,4368_7778195_9140004,4368_88 -4358_80759,228,4368_2928,IKEA,9617,1,4368_7778195_9140015,4368_89 -4358_80759,227,4368_2929,IKEA,1721,1,4368_7778195_9140017,4368_88 -4358_80760,228,4368_293,Shanard Road,9385,1,4368_7778195_9001001,4368_5 -4358_80759,229,4368_2930,IKEA,15768,1,4368_7778195_9140006,4368_88 -4358_80759,228,4368_2931,IKEA,9358,1,4368_7778195_9140001,4368_89 -4358_80759,227,4368_2932,IKEA,6551,1,4368_7778195_9140015,4368_90 -4358_80759,227,4368_2933,IKEA,1907,1,4368_7778195_9140028,4368_88 -4358_80759,228,4368_2934,IKEA,9306,1,4368_7778195_9140012,4368_89 -4358_80759,229,4368_2935,IKEA,15556,1,4368_7778195_9140008,4368_90 -4358_80759,228,4368_2936,IKEA,9525,1,4368_7778195_9140014,4368_88 -4358_80759,229,4368_2937,IKEA,15749,1,4368_7778195_9140001,4368_89 -4358_80759,227,4368_2938,IKEA,1806,1,4368_7778195_9140025,4368_90 -4358_80759,227,4368_2939,IKEA,1906,1,4368_7778195_9140022,4368_88 -4358_80760,229,4368_294,Shanard Road,15518,1,4368_7778195_9001003,4368_4 -4358_80759,228,4368_2940,IKEA,9609,1,4368_7778195_9140010,4368_89 -4358_80759,229,4368_2941,IKEA,15506,1,4368_7778195_9140003,4368_90 -4358_80759,229,4368_2942,IKEA,15770,1,4368_7778195_9140006,4368_88 -4358_80759,228,4368_2943,IKEA,9619,1,4368_7778195_9140015,4368_89 -4358_80759,227,4368_2944,IKEA,1723,1,4368_7778195_9140017,4368_90 -4358_80759,228,4368_2945,O'Connell St,9360,1,4368_7778195_9140001,4368_91 -4358_80759,227,4368_2946,O'Connell St,6553,1,4368_7778195_9140015,4368_92 -4358_80759,229,4368_2947,O'Connell St,15558,1,4368_7778195_9140008,4368_93 -4358_80761,227,4368_2948,UCD,7803,0,4368_7778195_8818112,4368_94 -4358_80761,227,4368_2949,UCD,7932,0,4368_7778195_6826102,4368_94 -4358_80760,227,4368_295,Shanard Road,1732,1,4368_7778195_9001013,4368_4 -4358_80761,227,4368_2950,UCD,5960,0,4368_7778195_6826104,4368_94 -4358_80761,227,4368_2951,UCD,5962,0,4368_7778195_6826106,4368_94 -4358_80761,227,4368_2952,UCD,5964,0,4368_7778195_6826108,4368_94 -4358_80761,227,4368_2953,Coast Road,5959,1,4368_7778195_6826202,4368_95 -4358_80761,227,4368_2954,Coast Road,5961,1,4368_7778195_6826204,4368_95 -4358_80761,227,4368_2955,Coast Road,5963,1,4368_7778195_6826206,4368_95 -4358_80761,227,4368_2956,Coast Road,7933,1,4368_7778195_6826208,4368_95 -4358_80763,227,4368_2957,Ballywaltrim,3185,0,4368_7778195_1145102,4368_96 -4358_80763,227,4368_2958,Ballywaltrim,3194,0,4368_7778195_1145103,4368_96 -4358_80763,227,4368_2959,Ballywaltrim,3310,0,4368_7778195_1145404,4368_96 -4358_80760,228,4368_296,Shanard Road,9515,1,4368_7778195_9001005,4368_4 -4358_80763,227,4368_2960,Ballywaltrim,3235,0,4368_7778195_1145405,4368_96 -4358_80763,228,4368_2961,Ballywaltrim,10761,0,4368_7778195_1145401,4368_96 -4358_80763,227,4368_2962,Ballywaltrim,3244,0,4368_7778195_1145406,4368_98 -4358_80763,227,4368_2963,Ballywaltrim,3254,0,4368_7778195_1145409,4368_96 -4358_80763,227,4368_2964,Ballywaltrim,3211,0,4368_7778195_1145108,4368_96 -4358_80763,228,4368_2965,Ballywaltrim,10854,0,4368_7778195_1145403,4368_98 -4358_80763,227,4368_2966,Ballywaltrim,3220,0,4368_7778195_1145112,4368_96 -4358_80763,228,4368_2967,Ballywaltrim,10811,0,4368_7778195_1145103,4368_96 -4358_80763,227,4368_2968,Ballywaltrim,3177,0,4368_7778195_1145101,4368_98 -4358_80763,227,4368_2969,Ballywaltrim,3262,0,4368_7778195_1145412,4368_96 -4358_80760,227,4368_297,Shanard Road,1550,1,4368_7778195_9001010,4368_4 -4358_80763,227,4368_2970,Ballywaltrim,3286,0,4368_7778195_1145113,4368_96 -4358_80763,228,4368_2971,Ballywaltrim,10844,0,4368_7778195_1145402,4368_98 -4358_80763,227,4368_2972,Ballywaltrim,3303,0,4368_7778195_1145403,4368_96 -4358_80763,228,4368_2973,Ballywaltrim,10823,0,4368_7778195_1145101,4368_96 -4358_80763,227,4368_2974,Ballywaltrim,3322,0,4368_7778195_1145407,4368_96 -4358_80763,229,4368_2975,Ballywaltrim,16639,0,4368_7778195_1145401,4368_96 -4358_80763,227,4368_2976,Ballywaltrim,3229,0,4368_7778195_1145402,4368_98 -4358_80763,228,4368_2977,Ballywaltrim,10873,0,4368_7778195_1145405,4368_99 -4358_80763,227,4368_2978,Ballywaltrim,3343,0,4368_7778195_1145410,4368_96 -4358_80763,228,4368_2979,Ballywaltrim,10863,0,4368_7778195_1145102,4368_96 -4358_80760,229,4368_298,Shanard Road,15669,1,4368_7778195_9001005,4368_4 -4358_80763,227,4368_2980,Ballywaltrim,3369,0,4368_7778195_1145105,4368_96 -4358_80763,227,4368_2981,Ballywaltrim,3333,0,4368_7778195_1145408,4368_96 -4358_80763,229,4368_2982,Ballywaltrim,16603,0,4368_7778195_1145101,4368_98 -4358_80763,228,4368_2983,Ballywaltrim,10834,0,4368_7778195_1145406,4368_99 -4358_80763,227,4368_2984,Ballywaltrim,3204,0,4368_7778195_1145104,4368_96 -4358_80763,227,4368_2985,Belfield Flyover,6096,0,4368_7778195_2822103,4368_97 -4358_80763,228,4368_2986,Ballywaltrim,10771,0,4368_7778195_1145404,4368_96 -4358_80763,227,4368_2987,Belfield Flyover,6088,0,4368_7778195_1821101,4368_97 -4358_80763,227,4368_2988,Ballywaltrim,3352,0,4368_7778195_1145413,4368_96 -4358_80763,227,4368_2989,Belfield Flyover,6098,0,4368_7778195_2822104,4368_97 -4358_80760,227,4368_299,Shanard Road,1644,1,4368_7778195_9001011,4368_4 -4358_80763,228,4368_2990,Ballywaltrim,10833,0,4368_7778195_1145104,4368_96 -4358_80763,227,4368_2991,Bray,6091,0,4368_7778195_1821103,4368_100 -4358_80763,227,4368_2992,Ballywaltrim,3359,0,4368_7778195_1145106,4368_98 -4358_80763,229,4368_2993,Ballywaltrim,16614,0,4368_7778195_1145102,4368_99 -4358_80763,227,4368_2994,Ballywaltrim,3214,0,4368_7778195_1145109,4368_96 -4358_80763,228,4368_2995,Ballywaltrim,10763,0,4368_7778195_1145401,4368_96 -4358_80763,227,4368_2996,Ballywaltrim,3187,0,4368_7778195_1145102,4368_96 -4358_80763,229,4368_2997,Ballywaltrim,16650,0,4368_7778195_1145103,4368_96 -4358_80763,228,4368_2998,Ballywaltrim,10803,0,4368_7778195_1145105,4368_98 -4358_80763,227,4368_2999,Ballywaltrim,3196,0,4368_7778195_1145103,4368_99 -4358_80760,227,4368_3,Shaw street,1584,0,4368_7778195_9001005,4368_1 -4358_80760,229,4368_30,Shaw street,15685,0,4368_7778195_9001001,4368_1 -4358_80760,228,4368_300,Shanard Road,9455,1,4368_7778195_9001003,4368_4 -4358_80763,227,4368_3000,Ballywaltrim,3312,0,4368_7778195_1145404,4368_96 -4358_80763,228,4368_3001,Ballywaltrim,10856,0,4368_7778195_1145403,4368_96 -4358_80763,229,4368_3002,Ballywaltrim,16660,0,4368_7778195_1145104,4368_96 -4358_80763,227,4368_3003,Ballywaltrim,3237,0,4368_7778195_1145405,4368_98 -4358_80763,227,4368_3004,Ballywaltrim,3273,0,4368_7778195_1145414,4368_96 -4358_80763,228,4368_3005,Ballywaltrim,10813,0,4368_7778195_1145103,4368_98 -4358_80763,227,4368_3006,Ballywaltrim,3246,0,4368_7778195_1145406,4368_96 -4358_80763,229,4368_3007,Ballywaltrim,16689,0,4368_7778195_1145402,4368_98 -4358_80763,228,4368_3008,Ballywaltrim,10846,0,4368_7778195_1145402,4368_96 -4358_80763,227,4368_3009,Ballywaltrim,3256,0,4368_7778195_1145409,4368_96 -4358_80760,227,4368_301,Shanard Road,3148,1,4368_7778195_9001004,4368_4 -4358_80763,229,4368_3010,Ballywaltrim,16692,0,4368_7778195_1145403,4368_96 -4358_80763,228,4368_3011,Ballywaltrim,10787,0,4368_7778195_1145108,4368_98 -4358_80763,227,4368_3012,Ballywaltrim,3289,0,4368_7778195_1145114,4368_99 -4358_80763,227,4368_3013,Ballywaltrim,3222,0,4368_7778195_1145112,4368_96 -4358_80763,228,4368_3014,Ballywaltrim,10875,0,4368_7778195_1145405,4368_96 -4358_80763,229,4368_3015,Ballywaltrim,16641,0,4368_7778195_1145401,4368_96 -4358_80763,227,4368_3016,Ballywaltrim,3179,0,4368_7778195_1145101,4368_98 -4358_80763,228,4368_3017,Ballywaltrim,10825,0,4368_7778195_1145101,4368_96 -4358_80763,227,4368_3018,Ballywaltrim,3264,0,4368_7778195_1145412,4368_98 -4358_80763,227,4368_3019,Ballywaltrim,3305,0,4368_7778195_1145403,4368_96 -4358_80760,229,4368_302,Shanard Road,15696,1,4368_7778195_9001001,4368_4 -4358_80763,229,4368_3020,Ballywaltrim,16675,0,4368_7778195_1145106,4368_98 -4358_80763,228,4368_3021,Ballywaltrim,10865,0,4368_7778195_1145102,4368_96 -4358_80763,227,4368_3022,Ballywaltrim,3324,0,4368_7778195_1145407,4368_96 -4358_80763,228,4368_3023,Ballywaltrim,10798,0,4368_7778195_1145106,4368_96 -4358_80763,227,4368_3024,Ballywaltrim,3231,0,4368_7778195_1145402,4368_98 -4358_80763,229,4368_3025,Ballywaltrim,16605,0,4368_7778195_1145101,4368_99 -4358_80763,227,4368_3026,Ballywaltrim,3345,0,4368_7778195_1145410,4368_96 -4358_80763,228,4368_3027,Ballywaltrim,10836,0,4368_7778195_1145406,4368_96 -4358_80763,227,4368_3028,Ballywaltrim,3335,0,4368_7778195_1145408,4368_96 -4358_80763,229,4368_3029,Ballywaltrim,16667,0,4368_7778195_1145105,4368_98 -4358_80760,227,4368_303,Shanard Road,1854,1,4368_7778195_9001006,4368_4 -4358_80763,227,4368_3030,Ballywaltrim,3206,0,4368_7778195_1145104,4368_96 -4358_80763,228,4368_3031,Ballywaltrim,10773,0,4368_7778195_1145404,4368_98 -4358_80763,227,4368_3032,Ballywaltrim,3361,0,4368_7778195_1145106,4368_96 -4358_80763,229,4368_3033,Ballywaltrim,16616,0,4368_7778195_1145102,4368_98 -4358_80763,228,4368_3034,Ballywaltrim,10793,0,4368_7778195_1145107,4368_96 -4358_80763,227,4368_3035,Ballywaltrim,3291,0,4368_7778195_1145116,4368_96 -4358_80763,227,4368_3036,Ballywaltrim,3216,0,4368_7778195_1145109,4368_96 -4358_80763,228,4368_3037,Ballywaltrim,10765,0,4368_7778195_1145401,4368_98 -4358_80763,229,4368_3038,Ballywaltrim,16634,0,4368_7778195_1145404,4368_99 -4358_80763,227,4368_3039,Ballywaltrim,3189,0,4368_7778195_1145102,4368_96 -4358_80760,228,4368_304,Shanard Road,9493,1,4368_7778195_9001004,4368_5 -4358_80763,228,4368_3040,Ballywaltrim,10805,0,4368_7778195_1145105,4368_96 -4358_80763,229,4368_3041,Ballywaltrim,16652,0,4368_7778195_1145103,4368_96 -4358_80763,227,4368_3042,Ballywaltrim,3198,0,4368_7778195_1145103,4368_98 -4358_80763,227,4368_3043,Ballywaltrim,3314,0,4368_7778195_1145404,4368_96 -4358_80763,228,4368_3044,Ballywaltrim,10858,0,4368_7778195_1145403,4368_98 -4358_80763,229,4368_3045,Ballywaltrim,16662,0,4368_7778195_1145104,4368_96 -4358_80763,227,4368_3046,Ballywaltrim,3239,0,4368_7778195_1145405,4368_98 -4358_80763,228,4368_3047,Ballywaltrim,10815,0,4368_7778195_1145103,4368_96 -4358_80763,227,4368_3048,Ballywaltrim,3275,0,4368_7778195_1145414,4368_96 -4358_80763,228,4368_3049,Ballywaltrim,10781,0,4368_7778195_1145109,4368_96 -4358_80760,229,4368_305,Shanard Road,15594,1,4368_7778195_9001004,4368_4 -4358_80763,229,4368_3050,Ballywaltrim,16678,0,4368_7778195_1145107,4368_98 -4358_80763,227,4368_3051,Ballywaltrim,3282,0,4368_7778195_1145415,4368_99 -4358_80763,227,4368_3052,Ballywaltrim,3248,0,4368_7778195_1145406,4368_96 -4358_80763,228,4368_3053,Ballywaltrim,10848,0,4368_7778195_1145402,4368_96 -4358_80763,229,4368_3054,Ballywaltrim,16632,0,4368_7778195_1145405,4368_96 -4358_80763,227,4368_3055,Ballywaltrim,3258,0,4368_7778195_1145409,4368_98 -4358_80763,227,4368_3056,Ballywaltrim,3224,0,4368_7778195_1145112,4368_96 -4358_80763,228,4368_3057,Ballywaltrim,10789,0,4368_7778195_1145108,4368_98 -4358_80763,229,4368_3058,Ballywaltrim,16643,0,4368_7778195_1145401,4368_96 -4358_80763,227,4368_3059,Ballywaltrim,3181,0,4368_7778195_1145101,4368_98 -4358_80760,228,4368_306,Shanard Road,9325,1,4368_7778195_9001002,4368_4 -4358_80763,228,4368_3060,Ballywaltrim,10877,0,4368_7778195_1145405,4368_96 -4358_80763,227,4368_3061,Ballywaltrim,3266,0,4368_7778195_1145412,4368_96 -4358_80763,228,4368_3062,Ballywaltrim,10827,0,4368_7778195_1145101,4368_96 -4358_80763,227,4368_3063,Ballywaltrim,3307,0,4368_7778195_1145403,4368_98 -4358_80763,229,4368_3064,Ballywaltrim,16677,0,4368_7778195_1145106,4368_99 -4358_80763,227,4368_3065,Ballywaltrim,3326,0,4368_7778195_1145407,4368_96 -4358_80763,228,4368_3066,Ballywaltrim,10867,0,4368_7778195_1145102,4368_96 -4358_80763,227,4368_3067,Ballywaltrim,3233,0,4368_7778195_1145402,4368_96 -4358_80763,229,4368_3068,Ballywaltrim,16607,0,4368_7778195_1145101,4368_98 -4358_80763,227,4368_3069,Ballywaltrim,3347,0,4368_7778195_1145410,4368_96 -4358_80760,227,4368_307,Shanard Road,1710,1,4368_7778195_9001008,4368_5 -4358_80763,228,4368_3070,Ballywaltrim,10800,0,4368_7778195_1145106,4368_98 -4358_80763,227,4368_3071,Ballywaltrim,3299,0,4368_7778195_1145117,4368_96 -4358_80763,229,4368_3072,Ballywaltrim,16669,0,4368_7778195_1145105,4368_98 -4358_80763,228,4368_3073,Ballywaltrim,10838,0,4368_7778195_1145406,4368_96 -4358_80763,227,4368_3074,Kilmacanogue,6631,0,4368_7778195_1821201,4368_101 -4358_80763,227,4368_3075,Ballywaltrim,3337,0,4368_7778195_1145408,4368_96 -4358_80763,227,4368_3076,Ballywaltrim,3208,0,4368_7778195_1145104,4368_96 -4358_80763,228,4368_3077,Ballywaltrim,10775,0,4368_7778195_1145404,4368_98 -4358_80763,229,4368_3078,Ballywaltrim,16618,0,4368_7778195_1145102,4368_99 -4358_80763,227,4368_3079,Kilmacanogue,6629,0,4368_7778195_1821203,4368_101 -4358_80760,229,4368_308,Shanard Road,15735,1,4368_7778195_9001002,4368_4 -4358_80763,227,4368_3080,Ballywaltrim,3363,0,4368_7778195_1145106,4368_96 -4358_80763,228,4368_3081,Ballywaltrim,10795,0,4368_7778195_1145107,4368_96 -4358_80763,227,4368_3082,Ballywaltrim,3293,0,4368_7778195_1145116,4368_96 -4358_80763,229,4368_3083,Ballywaltrim,16636,0,4368_7778195_1145404,4368_98 -4358_80763,227,4368_3084,Ballywaltrim,3353,0,4368_7778195_1145416,4368_96 -4358_80763,228,4368_3085,Ballywaltrim,10767,0,4368_7778195_1145401,4368_98 -4358_80763,227,4368_3086,Ballywaltrim,6093,0,4368_7778195_2822203,4368_96 -4358_80763,229,4368_3087,Ballywaltrim,16654,0,4368_7778195_1145103,4368_96 -4358_80763,227,4368_3088,Ballywaltrim,3218,0,4368_7778195_1145109,4368_98 -4358_80763,228,4368_3089,Ballywaltrim,10807,0,4368_7778195_1145105,4368_96 -4358_80760,227,4368_309,Shanard Road,1665,1,4368_7778195_9001003,4368_4 -4358_80763,227,4368_3090,Ballywaltrim,3191,0,4368_7778195_1145102,4368_96 -4358_80763,229,4368_3091,Ballywaltrim,16664,0,4368_7778195_1145104,4368_96 -4358_80763,227,4368_3092,Ballywaltrim,3200,0,4368_7778195_1145103,4368_98 -4358_80763,228,4368_3093,Ballywaltrim,10860,0,4368_7778195_1145403,4368_99 -4358_80763,227,4368_3094,Ballywaltrim,3316,0,4368_7778195_1145404,4368_96 -4358_80763,228,4368_3095,Ballywaltrim,10817,0,4368_7778195_1145103,4368_96 -4358_80763,227,4368_3096,Ballywaltrim,3241,0,4368_7778195_1145405,4368_96 -4358_80763,229,4368_3097,Ballywaltrim,16680,0,4368_7778195_1145107,4368_98 -4358_80763,227,4368_3098,Ballywaltrim,3277,0,4368_7778195_1145414,4368_96 -4358_80763,228,4368_3099,Ballywaltrim,10783,0,4368_7778195_1145109,4368_98 -4358_80760,227,4368_31,Shaw street,1817,0,4368_7778195_9001001,4368_1 -4358_80760,228,4368_310,Shanard Road,9387,1,4368_7778195_9001001,4368_5 -4358_80763,227,4368_3100,Kilmacanogue,6632,0,4368_7778195_1821201,4368_101 -4358_80763,229,4368_3101,Ballywaltrim,16683,0,4368_7778195_1145108,4368_96 -4358_80763,227,4368_3102,Kilmacanogue,6630,0,4368_7778195_1821203,4368_101 -4358_80763,227,4368_3103,Ballywaltrim,3284,0,4368_7778195_1145415,4368_98 -4358_80763,228,4368_3104,Ballywaltrim,10850,0,4368_7778195_1145402,4368_96 -4358_80763,227,4368_3105,Ballywaltrim,3250,0,4368_7778195_1145406,4368_96 -4358_80763,229,4368_3106,Ballywaltrim,16645,0,4368_7778195_1145401,4368_96 -4358_80763,227,4368_3107,Ballywaltrim,3260,0,4368_7778195_1145409,4368_98 -4358_80763,228,4368_3108,Ballywaltrim,10791,0,4368_7778195_1145108,4368_99 -4358_80763,227,4368_3109,Ballywaltrim,3226,0,4368_7778195_1145112,4368_96 -4358_80760,229,4368_311,Shanard Road,15520,1,4368_7778195_9001003,4368_4 -4358_80763,228,4368_3110,Ballywaltrim,10879,0,4368_7778195_1145405,4368_96 -4358_80763,229,4368_3111,Ballywaltrim,16627,0,4368_7778195_1145406,4368_96 -4358_80763,227,4368_3112,Ballywaltrim,3183,0,4368_7778195_1145101,4368_98 -4358_80763,228,4368_3113,Ballywaltrim,10829,0,4368_7778195_1145101,4368_96 -4358_80763,227,4368_3114,Ballywaltrim,3357,0,4368_7778195_1145418,4368_98 -4358_80763,227,4368_3115,Ballywaltrim,3268,0,4368_7778195_1145412,4368_96 -4358_80763,229,4368_3116,Ballywaltrim,16609,0,4368_7778195_1145101,4368_98 -4358_80763,227,4368_3117,Ballywaltrim,3309,0,4368_7778195_1145403,4368_96 -4358_80763,228,4368_3118,Ballywaltrim,10869,0,4368_7778195_1145102,4368_98 -4358_80763,227,4368_3119,Ballywaltrim,3328,0,4368_7778195_1145407,4368_96 -4358_80760,227,4368_312,Shanard Road,1599,1,4368_7778195_9001005,4368_4 -4358_80763,229,4368_3120,Ballywaltrim,16671,0,4368_7778195_1145105,4368_98 -4358_80763,227,4368_3121,Ballywaltrim,3349,0,4368_7778195_1145410,4368_96 -4358_80763,228,4368_3122,Ballywaltrim,10840,0,4368_7778195_1145406,4368_98 -4358_80763,227,4368_3123,Ballywaltrim,3301,0,4368_7778195_1145117,4368_96 -4358_80763,229,4368_3124,Ballywaltrim,16620,0,4368_7778195_1145102,4368_98 -4358_80763,228,4368_3125,Ballywaltrim,10777,0,4368_7778195_1145404,4368_96 -4358_80763,227,4368_3126,Ballywaltrim,3339,0,4368_7778195_1145408,4368_98 -4358_80763,227,4368_3127,Ballywaltrim,3210,0,4368_7778195_1145104,4368_96 -4358_80763,229,4368_3128,Ballywaltrim,16638,0,4368_7778195_1145404,4368_98 -4358_80763,227,4368_3129,Ballywaltrim,3365,0,4368_7778195_1145106,4368_96 -4358_80760,228,4368_313,Shanard Road,9517,1,4368_7778195_9001005,4368_5 -4358_80763,228,4368_3130,Ballywaltrim,10769,0,4368_7778195_1145401,4368_98 -4358_80763,229,4368_3131,Ballywaltrim,16656,0,4368_7778195_1145103,4368_96 -4358_80763,227,4368_3132,Ballywaltrim,3295,0,4368_7778195_1145116,4368_98 -4358_80763,228,4368_3133,Ballywaltrim,10809,0,4368_7778195_1145105,4368_96 -4358_80763,227,4368_3134,Ballywaltrim,3355,0,4368_7778195_1145416,4368_98 -4358_80763,227,4368_3135,Ballywaltrim,3193,0,4368_7778195_1145102,4368_96 -4358_80763,229,4368_3136,Ballywaltrim,16623,0,4368_7778195_1145407,4368_98 -4358_80763,228,4368_3137,Ballywaltrim,10819,0,4368_7778195_1145103,4368_96 -4358_80763,227,4368_3138,Ballywaltrim,3202,0,4368_7778195_1145103,4368_98 -4358_80763,229,4368_3139,Ballywaltrim,16685,0,4368_7778195_1145108,4368_96 -4358_80760,229,4368_314,Shanard Road,15671,1,4368_7778195_9001005,4368_4 -4358_80763,227,4368_3140,Ballywaltrim,3318,0,4368_7778195_1145404,4368_98 -4358_80763,228,4368_3141,Ballywaltrim,10785,0,4368_7778195_1145109,4368_96 -4358_80763,227,4368_3142,Ballywaltrim,3243,0,4368_7778195_1145405,4368_98 -4358_80763,229,4368_3143,Ballywaltrim,16647,0,4368_7778195_1145401,4368_96 -4358_80763,227,4368_3144,Ballywaltrim,3279,0,4368_7778195_1145414,4368_98 -4358_80763,228,4368_3145,Ballywaltrim,10852,0,4368_7778195_1145402,4368_96 -4358_80763,229,4368_3146,Ballywaltrim,16629,0,4368_7778195_1145406,4368_96 -4358_80763,227,4368_3147,Ballywaltrim,3252,0,4368_7778195_1145406,4368_98 -4358_80763,228,4368_3148,Ballywaltrim,10881,0,4368_7778195_1145405,4368_96 -4358_80763,227,4368_3149,Ballywaltrim,3270,0,4368_7778195_1145412,4368_96 -4358_80760,227,4368_315,Shanard Road,1552,1,4368_7778195_9001010,4368_4 -4358_80763,229,4368_3150,Ballywaltrim,16611,0,4368_7778195_1145101,4368_98 -4358_80763,228,4368_3151,Ballywaltrim,10871,0,4368_7778195_1145102,4368_96 -4358_80763,227,4368_3152,Ballywaltrim,3330,0,4368_7778195_1145407,4368_96 -4358_80763,229,4368_3153,Ballywaltrim,16673,0,4368_7778195_1145105,4368_98 -4358_80763,228,4368_3154,Ballywaltrim,10831,0,4368_7778195_1145101,4368_96 -4358_80763,227,4368_3155,Ballywaltrim,3341,0,4368_7778195_1145408,4368_96 -4358_80763,229,4368_3156,Ballywaltrim,16622,0,4368_7778195_1145102,4368_98 -4358_80763,228,4368_3157,Ballywaltrim,10842,0,4368_7778195_1145406,4368_96 -4358_80763,229,4368_3158,Ballywaltrim,16658,0,4368_7778195_1145103,4368_96 -4358_80763,227,4368_3159,Ballywaltrim,3367,0,4368_7778195_1145106,4368_98 -4358_80760,228,4368_316,Shanard Road,9457,1,4368_7778195_9001003,4368_5 -4358_80763,229,4368_3160,Ballywaltrim,16625,0,4368_7778195_1145407,4368_96 -4358_80763,227,4368_3161,Ballywaltrim,3297,0,4368_7778195_1145116,4368_98 -4358_80763,228,4368_3162,Ballywaltrim,10779,0,4368_7778195_1145404,4368_99 -4358_80763,229,4368_3163,Ballywaltrim,16687,0,4368_7778195_1145108,4368_96 -4358_80763,227,4368_3164,Ballywaltrim,3320,0,4368_7778195_1145404,4368_96 -4358_80763,228,4368_3165,Ballywaltrim,10821,0,4368_7778195_1145103,4368_98 -4358_80763,227,4368_3166,Heuston Station,3176,1,4368_7778195_1145101,4368_102 -4358_80763,227,4368_3167,Heuston Station,3302,1,4368_7778195_1145403,4368_102 -4358_80763,227,4368_3168,Heuston Station,3321,1,4368_7778195_1145407,4368_102 -4358_80763,228,4368_3169,Heuston Station,10843,1,4368_7778195_1145402,4368_103 -4358_80760,229,4368_317,Shanard Road,15698,1,4368_7778195_9001001,4368_4 -4358_80763,227,4368_3170,Heuston Station,3342,1,4368_7778195_1145410,4368_102 -4358_80763,228,4368_3171,Heuston Station,10822,1,4368_7778195_1145101,4368_102 -4358_80763,227,4368_3172,Heuston Station,3368,1,4368_7778195_1145105,4368_103 -4358_80763,227,4368_3173,Heuston Station,3203,1,4368_7778195_1145104,4368_102 -4358_80763,228,4368_3174,Heuston Station,10862,1,4368_7778195_1145102,4368_102 -4358_80763,227,4368_3175,Heuston Station,3351,1,4368_7778195_1145413,4368_103 -4358_80763,227,4368_3176,Heuston Station,3358,1,4368_7778195_1145106,4368_102 -4358_80763,229,4368_3177,Heuston Station,16602,1,4368_7778195_1145101,4368_103 -4358_80763,227,4368_3178,Heuston Station,123,1,4368_7778195_2822101,4368_112 -4358_80763,227,4368_3179,Heuston Station,6095,1,4368_7778195_2822103,4368_106 -4358_80760,227,4368_318,Shanard Road,3150,1,4368_7778195_9001004,4368_4 -4358_80763,227,4368_3180,Heuston Station,3213,1,4368_7778195_1145109,4368_102 -4358_80763,228,4368_3181,Heuston Station,10770,1,4368_7778195_1145404,4368_103 -4358_80763,227,4368_3182,Heuston Station,6097,1,4368_7778195_2822104,4368_104 -4358_80763,227,4368_3183,Heuston Station,6087,1,4368_7778195_1821101,4368_104 -4358_80763,227,4368_3184,Heuston Station,3186,1,4368_7778195_1145102,4368_102 -4358_80763,228,4368_3185,Heuston Station,10832,1,4368_7778195_1145104,4368_102 -4358_80763,227,4368_3186,Heuston Station,6090,1,4368_7778195_1821103,4368_104 -4358_80763,227,4368_3187,Heuston Station,3195,1,4368_7778195_1145103,4368_103 -4358_80763,229,4368_3188,Heuston Station,16613,1,4368_7778195_1145102,4368_105 -4358_80763,227,4368_3189,Heuston Station,3311,1,4368_7778195_1145404,4368_102 -4358_80760,228,4368_319,Shanard Road,9495,1,4368_7778195_9001004,4368_5 -4358_80763,228,4368_3190,Heuston Station,10762,1,4368_7778195_1145401,4368_102 -4358_80763,227,4368_3191,Heuston Station,3236,1,4368_7778195_1145405,4368_102 -4358_80763,229,4368_3192,Heuston Station,16649,1,4368_7778195_1145103,4368_102 -4358_80763,227,4368_3193,Heuston Station,3272,1,4368_7778195_1145414,4368_103 -4358_80763,228,4368_3194,Heuston Station,10802,1,4368_7778195_1145105,4368_105 -4358_80763,227,4368_3195,Heuston Station,200,1,4368_7778195_1821104,4368_104 -4358_80763,227,4368_3196,Heuston Station,3245,1,4368_7778195_1145406,4368_102 -4358_80763,228,4368_3197,Heuston Station,10855,1,4368_7778195_1145403,4368_102 -4358_80763,227,4368_3198,Heuston Station,3255,1,4368_7778195_1145409,4368_102 -4358_80763,229,4368_3199,Heuston Station,16659,1,4368_7778195_1145104,4368_102 -4358_80760,228,4368_32,Shaw street,9482,0,4368_7778195_9001004,4368_1 -4358_80760,229,4368_320,Shanard Road,15596,1,4368_7778195_9001004,4368_4 -4358_80763,228,4368_3200,Heuston Station,10812,1,4368_7778195_1145103,4368_103 -4358_80763,227,4368_3201,Heuston Station,3288,1,4368_7778195_1145114,4368_105 -4358_80763,227,4368_3202,Heuston Station,3212,1,4368_7778195_1145108,4368_102 -4358_80763,228,4368_3203,Heuston Station,10845,1,4368_7778195_1145402,4368_102 -4358_80763,227,4368_3204,Heuston Station,3221,1,4368_7778195_1145112,4368_102 -4358_80763,229,4368_3205,Heuston Station,16688,1,4368_7778195_1145402,4368_103 -4358_80763,228,4368_3206,Heuston Station,10824,1,4368_7778195_1145101,4368_102 -4358_80763,227,4368_3207,Heuston Station,3178,1,4368_7778195_1145101,4368_103 -4358_80763,227,4368_3208,Heuston Station,3263,1,4368_7778195_1145412,4368_102 -4358_80763,229,4368_3209,Heuston Station,16691,1,4368_7778195_1145403,4368_103 -4358_80760,228,4368_321,Shanard Road,9327,1,4368_7778195_9001002,4368_4 -4358_80763,228,4368_3210,Heuston Station,10874,1,4368_7778195_1145405,4368_102 -4358_80763,227,4368_3211,Heuston Station,3287,1,4368_7778195_1145113,4368_102 -4358_80763,229,4368_3212,Heuston Station,16640,1,4368_7778195_1145401,4368_102 -4358_80763,227,4368_3213,Heuston Station,3304,1,4368_7778195_1145403,4368_103 -4358_80763,228,4368_3214,Heuston Station,10864,1,4368_7778195_1145102,4368_105 -4358_80763,227,4368_3215,Heuston Station,3323,1,4368_7778195_1145407,4368_102 -4358_80763,228,4368_3216,Heuston Station,10797,1,4368_7778195_1145106,4368_102 -4358_80763,227,4368_3217,Heuston Station,3230,1,4368_7778195_1145402,4368_102 -4358_80763,229,4368_3218,Heuston Station,16604,1,4368_7778195_1145101,4368_103 -4358_80763,227,4368_3219,Heuston Station,3344,1,4368_7778195_1145410,4368_102 -4358_80760,227,4368_322,Shanard Road,1808,1,4368_7778195_9001014,4368_5 -4358_80763,228,4368_3220,Heuston Station,10835,1,4368_7778195_1145406,4368_103 -4358_80763,227,4368_3221,Heuston Station,3334,1,4368_7778195_1145408,4368_102 -4358_80763,229,4368_3222,Heuston Station,16666,1,4368_7778195_1145105,4368_103 -4358_80763,228,4368_3223,Heuston Station,10772,1,4368_7778195_1145404,4368_102 -4358_80763,227,4368_3224,Heuston Station,3205,1,4368_7778195_1145104,4368_102 -4358_80763,227,4368_3225,Heuston Station,3360,1,4368_7778195_1145106,4368_102 -4358_80763,228,4368_3226,Heuston Station,10792,1,4368_7778195_1145107,4368_103 -4358_80763,229,4368_3227,Heuston Station,16615,1,4368_7778195_1145102,4368_105 -4358_80763,227,4368_3228,Heuston Station,3290,1,4368_7778195_1145116,4368_102 -4358_80763,228,4368_3229,Heuston Station,10764,1,4368_7778195_1145401,4368_102 -4358_80760,229,4368_323,Shanard Road,15737,1,4368_7778195_9001002,4368_4 -4358_80763,227,4368_3230,Heuston Station,3215,1,4368_7778195_1145109,4368_102 -4358_80763,229,4368_3231,Heuston Station,16633,1,4368_7778195_1145404,4368_103 -4358_80763,228,4368_3232,Heuston Station,10804,1,4368_7778195_1145105,4368_102 -4358_80763,227,4368_3233,Heuston Station,3188,1,4368_7778195_1145102,4368_103 -4358_80763,229,4368_3234,Heuston Station,16651,1,4368_7778195_1145103,4368_102 -4358_80763,227,4368_3235,Heuston Station,3197,1,4368_7778195_1145103,4368_103 -4358_80763,228,4368_3236,Heuston Station,10857,1,4368_7778195_1145403,4368_102 -4358_80763,227,4368_3237,Heuston Station,3313,1,4368_7778195_1145404,4368_102 -4358_80763,229,4368_3238,Heuston Station,16661,1,4368_7778195_1145104,4368_102 -4358_80763,228,4368_3239,Heuston Station,10814,1,4368_7778195_1145103,4368_103 -4358_80760,227,4368_324,Shanard Road,1712,1,4368_7778195_9001008,4368_4 -4358_80763,227,4368_3240,Heuston Station,3238,1,4368_7778195_1145405,4368_105 -4358_80763,227,4368_3241,Heuston Station,3274,1,4368_7778195_1145414,4368_102 -4358_80763,228,4368_3242,Heuston Station,10780,1,4368_7778195_1145109,4368_102 -4358_80763,229,4368_3243,Heuston Station,16690,1,4368_7778195_1145402,4368_102 -4358_80763,227,4368_3244,Heuston Station,3281,1,4368_7778195_1145415,4368_103 -4358_80763,227,4368_3245,Heuston Station,3247,1,4368_7778195_1145406,4368_102 -4358_80763,228,4368_3246,Heuston Station,10847,1,4368_7778195_1145402,4368_103 -4358_80763,229,4368_3247,Heuston Station,16631,1,4368_7778195_1145405,4368_102 -4358_80763,227,4368_3248,Heuston Station,3257,1,4368_7778195_1145409,4368_103 -4358_80763,228,4368_3249,Heuston Station,10788,1,4368_7778195_1145108,4368_102 -4358_80760,228,4368_325,Shanard Road,9389,1,4368_7778195_9001001,4368_5 -4358_80763,227,4368_3250,Heuston Station,3223,1,4368_7778195_1145112,4368_102 -4358_80763,229,4368_3251,Heuston Station,16642,1,4368_7778195_1145401,4368_102 -4358_80763,228,4368_3252,Heuston Station,10876,1,4368_7778195_1145405,4368_103 -4358_80763,227,4368_3253,Heuston Station,3180,1,4368_7778195_1145101,4368_105 -4358_80763,227,4368_3254,Heuston Station,3265,1,4368_7778195_1145412,4368_102 -4358_80763,228,4368_3255,Heuston Station,10826,1,4368_7778195_1145101,4368_102 -4358_80763,227,4368_3256,Heuston Station,3306,1,4368_7778195_1145403,4368_102 -4358_80763,229,4368_3257,Heuston Station,16676,1,4368_7778195_1145106,4368_103 -4358_80763,227,4368_3258,Heuston Station,3325,1,4368_7778195_1145407,4368_102 -4358_80763,228,4368_3259,Heuston Station,10866,1,4368_7778195_1145102,4368_103 -4358_80760,229,4368_326,Shanard Road,15522,1,4368_7778195_9001003,4368_4 -4358_80763,227,4368_3260,Heuston Station,3232,1,4368_7778195_1145402,4368_102 -4358_80763,229,4368_3261,Heuston Station,16606,1,4368_7778195_1145101,4368_103 -4358_80763,228,4368_3262,Heuston Station,10799,1,4368_7778195_1145106,4368_102 -4358_80763,227,4368_3263,Heuston Station,3346,1,4368_7778195_1145410,4368_102 -4358_80763,227,4368_3264,Heuston Station,3298,1,4368_7778195_1145117,4368_102 -4358_80763,229,4368_3265,Heuston Station,16668,1,4368_7778195_1145105,4368_103 -4358_80763,228,4368_3266,Heuston Station,10837,1,4368_7778195_1145406,4368_105 -4358_80763,227,4368_3267,Heuston Station,3336,1,4368_7778195_1145408,4368_102 -4358_80763,228,4368_3268,Heuston Station,10774,1,4368_7778195_1145404,4368_102 -4358_80763,227,4368_3269,Heuston Station,3207,1,4368_7778195_1145104,4368_102 -4358_80760,227,4368_327,Shanard Road,1667,1,4368_7778195_9001003,4368_4 -4358_80763,229,4368_3270,Heuston Station,16617,1,4368_7778195_1145102,4368_103 -4358_80763,227,4368_3271,Heuston Station,3362,1,4368_7778195_1145106,4368_102 -4358_80763,228,4368_3272,Heuston Station,10794,1,4368_7778195_1145107,4368_103 -4358_80763,227,4368_3273,Heuston Station,3292,1,4368_7778195_1145116,4368_102 -4358_80763,229,4368_3274,Heuston Station,16635,1,4368_7778195_1145404,4368_103 -4358_80763,228,4368_3275,Heuston Station,10766,1,4368_7778195_1145401,4368_102 -4358_80763,227,4368_3276,Heuston Station,3217,1,4368_7778195_1145109,4368_102 -4358_80763,229,4368_3277,Heuston Station,16653,1,4368_7778195_1145103,4368_102 -4358_80763,228,4368_3278,Heuston Station,10806,1,4368_7778195_1145105,4368_103 -4358_80763,227,4368_3279,Heuston Station,3190,1,4368_7778195_1145102,4368_105 -4358_80760,228,4368_328,Shanard Road,9519,1,4368_7778195_9001005,4368_5 -4358_80763,227,4368_3280,Heuston Station,3199,1,4368_7778195_1145103,4368_102 -4358_80763,228,4368_3281,Heuston Station,10859,1,4368_7778195_1145403,4368_102 -4358_80763,227,4368_3282,Heuston Station,3315,1,4368_7778195_1145404,4368_102 -4358_80763,229,4368_3283,Heuston Station,16663,1,4368_7778195_1145104,4368_103 -4358_80763,228,4368_3284,Heuston Station,10816,1,4368_7778195_1145103,4368_102 -4358_80763,227,4368_3285,Heuston Station,3240,1,4368_7778195_1145405,4368_103 -4358_80763,227,4368_3286,Heuston Station,6427,1,4368_7778195_2822204,4368_108 -4358_80763,227,4368_3287,Heuston Station,6092,1,4368_7778195_2822203,4368_110 -4358_80763,227,4368_3288,Heuston Station,3276,1,4368_7778195_1145414,4368_102 -4358_80763,229,4368_3289,Heuston Station,16679,1,4368_7778195_1145107,4368_103 -4358_80760,229,4368_329,Shanard Road,15673,1,4368_7778195_9001005,4368_4 -4358_80763,228,4368_3290,Heuston Station,10782,1,4368_7778195_1145109,4368_102 -4358_80763,227,4368_3291,Heuston Station,3283,1,4368_7778195_1145415,4368_102 -4358_80763,229,4368_3292,Heuston Station,16682,1,4368_7778195_1145108,4368_102 -4358_80763,227,4368_3293,Heuston Station,3249,1,4368_7778195_1145406,4368_103 -4358_80763,228,4368_3294,Heuston Station,10849,1,4368_7778195_1145402,4368_105 -4358_80763,227,4368_3295,Heuston Station,3259,1,4368_7778195_1145409,4368_102 -4358_80763,228,4368_3296,Heuston Station,10790,1,4368_7778195_1145108,4368_102 -4358_80763,229,4368_3297,Heuston Station,16644,1,4368_7778195_1145401,4368_102 -4358_80763,227,4368_3298,Heuston Station,3225,1,4368_7778195_1145112,4368_103 -4358_80763,228,4368_3299,Heuston Station,10878,1,4368_7778195_1145405,4368_102 -4358_80760,227,4368_33,Shaw street,1654,0,4368_7778195_9001003,4368_1 -4358_80760,227,4368_330,Shanard Road,1601,1,4368_7778195_9001005,4368_4 -4358_80763,227,4368_3300,Heuston Station,3182,1,4368_7778195_1145101,4368_103 -4358_80763,229,4368_3301,Heuston Station,16626,1,4368_7778195_1145406,4368_102 -4358_80763,227,4368_3302,Heuston Station,3356,1,4368_7778195_1145418,4368_103 -4358_80763,228,4368_3303,Heuston Station,10828,1,4368_7778195_1145101,4368_102 -4358_80763,227,4368_3304,Heuston Station,3267,1,4368_7778195_1145412,4368_102 -4358_80763,227,4368_3305,Heuston Station,3308,1,4368_7778195_1145403,4368_102 -4358_80763,228,4368_3306,Heuston Station,10868,1,4368_7778195_1145102,4368_103 -4358_80763,229,4368_3307,Heuston Station,16608,1,4368_7778195_1145101,4368_105 -4358_80763,227,4368_3308,Heuston Station,3327,1,4368_7778195_1145407,4368_102 -4358_80763,228,4368_3309,Heuston Station,10801,1,4368_7778195_1145106,4368_102 -4358_80760,228,4368_331,Shanard Road,9459,1,4368_7778195_9001003,4368_5 -4358_80763,227,4368_3310,Heuston Station,3234,1,4368_7778195_1145402,4368_102 -4358_80763,229,4368_3311,Heuston Station,16670,1,4368_7778195_1145105,4368_103 -4358_80763,227,4368_3312,Heuston Station,3348,1,4368_7778195_1145410,4368_102 -4358_80763,228,4368_3313,Heuston Station,10839,1,4368_7778195_1145406,4368_103 -4358_80763,227,4368_3314,Heuston Station,3300,1,4368_7778195_1145117,4368_102 -4358_80763,229,4368_3315,Heuston Station,16619,1,4368_7778195_1145102,4368_103 -4358_80763,228,4368_3316,Heuston Station,10776,1,4368_7778195_1145404,4368_102 -4358_80763,227,4368_3317,Heuston Station,3338,1,4368_7778195_1145408,4368_102 -4358_80763,227,4368_3318,Heuston Station,3209,1,4368_7778195_1145104,4368_102 -4358_80763,228,4368_3319,Heuston Station,10796,1,4368_7778195_1145107,4368_103 -4358_80760,229,4368_332,Shanard Road,15700,1,4368_7778195_9001001,4368_4 -4358_80763,229,4368_3320,Heuston Station,16637,1,4368_7778195_1145404,4368_105 -4358_80763,227,4368_3321,Heuston Station,3364,1,4368_7778195_1145106,4368_102 -4358_80763,228,4368_3322,Heuston Station,10768,1,4368_7778195_1145401,4368_102 -4358_80763,229,4368_3323,Heuston Station,16655,1,4368_7778195_1145103,4368_102 -4358_80763,227,4368_3324,Heuston Station,3294,1,4368_7778195_1145116,4368_103 -4358_80763,228,4368_3325,Heuston Station,10808,1,4368_7778195_1145105,4368_102 -4358_80763,227,4368_3326,Heuston Station,3354,1,4368_7778195_1145416,4368_103 -4358_80763,229,4368_3327,Heuston Station,16665,1,4368_7778195_1145104,4368_102 -4358_80763,227,4368_3328,Heuston Station,3219,1,4368_7778195_1145109,4368_103 -4358_80763,228,4368_3329,Heuston Station,10861,1,4368_7778195_1145403,4368_102 -4358_80760,227,4368_333,Shanard Road,1554,1,4368_7778195_9001010,4368_4 -4358_80763,227,4368_3330,Heuston Station,3192,1,4368_7778195_1145102,4368_102 -4358_80763,228,4368_3331,Heuston Station,10818,1,4368_7778195_1145103,4368_102 -4358_80763,227,4368_3332,Heuston Station,3201,1,4368_7778195_1145103,4368_103 -4358_80763,229,4368_3333,Heuston Station,16681,1,4368_7778195_1145107,4368_105 -4358_80763,227,4368_3334,Heuston Station,3317,1,4368_7778195_1145404,4368_102 -4358_80763,229,4368_3335,Heuston Station,16684,1,4368_7778195_1145108,4368_102 -4358_80763,228,4368_3336,Heuston Station,10784,1,4368_7778195_1145109,4368_103 -4358_80763,227,4368_3337,Heuston Station,3242,1,4368_7778195_1145405,4368_105 -4358_80763,227,4368_3338,Heuston Station,3278,1,4368_7778195_1145414,4368_102 -4358_80763,229,4368_3339,Heuston Station,16646,1,4368_7778195_1145401,4368_102 -4358_80760,228,4368_334,Shanard Road,9497,1,4368_7778195_9001004,4368_5 -4358_80763,228,4368_3340,Heuston Station,10851,1,4368_7778195_1145402,4368_103 -4358_80763,227,4368_3341,Heuston Station,3285,1,4368_7778195_1145415,4368_105 -4358_80763,227,4368_3342,Heuston Station,3251,1,4368_7778195_1145406,4368_102 -4358_80763,229,4368_3343,Heuston Station,16628,1,4368_7778195_1145406,4368_102 -4358_80763,228,4368_3344,Heuston Station,10880,1,4368_7778195_1145405,4368_103 -4358_80763,227,4368_3345,Heuston Station,3261,1,4368_7778195_1145409,4368_105 -4358_80763,227,4368_3346,Heuston Station,3227,1,4368_7778195_1145112,4368_102 -4358_80763,228,4368_3347,Heuston Station,10870,1,4368_7778195_1145102,4368_102 -4358_80763,229,4368_3348,Heuston Station,16610,1,4368_7778195_1145101,4368_103 -4358_80763,227,4368_3349,Heuston Station,3184,1,4368_7778195_1145101,4368_105 -4358_80760,229,4368_335,Shanard Road,15598,1,4368_7778195_9001004,4368_4 -4358_80763,227,4368_3350,Heuston Station,3269,1,4368_7778195_1145412,4368_102 -4358_80763,228,4368_3351,Heuston Station,10830,1,4368_7778195_1145101,4368_102 -4358_80763,227,4368_3352,Heuston Station,3329,1,4368_7778195_1145407,4368_103 -4358_80763,229,4368_3353,Heuston Station,16672,1,4368_7778195_1145105,4368_105 -4358_80763,227,4368_3354,Heuston Station,3350,1,4368_7778195_1145410,4368_102 -4358_80763,227,4368_3355,Heuston Station,3340,1,4368_7778195_1145408,4368_102 -4358_80763,229,4368_3356,Heuston Station,16621,1,4368_7778195_1145102,4368_103 -4358_80763,228,4368_3357,Heuston Station,10841,1,4368_7778195_1145406,4368_105 -4358_80763,229,4368_3358,Heuston Station,16657,1,4368_7778195_1145103,4368_102 -4358_80763,227,4368_3359,Heuston Station,3366,1,4368_7778195_1145106,4368_103 -4358_80760,227,4368_336,Shanard Road,3152,1,4368_7778195_9001004,4368_4 -4358_80763,228,4368_3360,Heuston Station,10778,1,4368_7778195_1145404,4368_105 -4358_80763,228,4368_3361,Heuston Station,10810,1,4368_7778195_1145105,4368_102 -4358_80763,229,4368_3362,Heuston Station,16624,1,4368_7778195_1145407,4368_103 -4358_80763,227,4368_3363,Heuston Station,3296,1,4368_7778195_1145116,4368_105 -4358_80763,229,4368_3364,Heuston Station,16686,1,4368_7778195_1145108,4368_102 -4358_80763,227,4368_3365,Heuston Station,3319,1,4368_7778195_1145404,4368_103 -4358_80763,228,4368_3366,Heuston Station,10820,1,4368_7778195_1145103,4368_105 -4358_80763,229,4368_3367,Heuston Station,16648,1,4368_7778195_1145401,4368_102 -4358_80763,227,4368_3368,Heuston Station,3280,1,4368_7778195_1145414,4368_103 -4358_80763,228,4368_3369,Heuston Station,10786,1,4368_7778195_1145109,4368_105 -4358_80760,228,4368_337,Shanard Road,9329,1,4368_7778195_9001002,4368_5 -4358_80763,229,4368_3370,Heuston Station,16630,1,4368_7778195_1145406,4368_102 -4358_80763,227,4368_3371,Heuston Station,3253,1,4368_7778195_1145406,4368_103 -4358_80763,228,4368_3372,Heuston Station,10853,1,4368_7778195_1145402,4368_105 -4358_80763,227,4368_3373,Aston Quay,3271,1,4368_7778195_1145412,4368_107 -4358_80763,228,4368_3374,Aston Quay,10882,1,4368_7778195_1145405,4368_109 -4358_80763,229,4368_3375,Heuston Station,16612,1,4368_7778195_1145101,4368_102 -4358_80763,227,4368_3376,Aston Quay,3331,1,4368_7778195_1145407,4368_107 -4358_80763,228,4368_3377,Aston Quay,10872,1,4368_7778195_1145102,4368_109 -4358_80763,229,4368_3378,Aston Quay,16674,1,4368_7778195_1145105,4368_111 -4358_80684,229,4368_3379,Ballycullen Road,15776,0,4368_7778195_9015001,4368_113 -4358_80760,229,4368_338,Shanard Road,15739,1,4368_7778195_9001002,4368_4 -4358_80684,227,4368_3380,Ballycullen Road,1925,0,4368_7778195_9015001,4368_114 -4358_80684,228,4368_3381,Ballycullen Road,9620,0,4368_7778195_9015001,4368_116 -4358_80684,227,4368_3382,Ballycullen Road,2032,0,4368_7778195_9015002,4368_113 -4358_80684,228,4368_3383,Ballycullen Road,9653,0,4368_7778195_9015002,4368_114 -4358_80684,229,4368_3384,Ballycullen Road,15806,0,4368_7778195_9015002,4368_116 -4358_80684,228,4368_3385,Ballycullen Road,9631,0,4368_7778195_9015003,4368_113 -4358_80684,227,4368_3386,Ballycullen Road,782,0,4368_7778195_1015003,4368_114 -4358_80684,229,4368_3387,Ballycullen Road,15823,0,4368_7778195_9015003,4368_116 -4358_80684,227,4368_3388,Ballycullen Road,1917,0,4368_7778195_9015003,4368_113 -4358_80684,228,4368_3389,Ballycullen Road,8589,0,4368_7778195_1015001,4368_113 -4358_80760,227,4368_339,Shanard Road,1810,1,4368_7778195_9001014,4368_4 -4358_80684,227,4368_3390,Ballycullen Road,1947,0,4368_7778195_9015004,4368_113 -4358_80684,228,4368_3391,Ballycullen Road,9638,0,4368_7778195_9015004,4368_113 -4358_80684,229,4368_3392,Ballycullen Road,14847,0,4368_7778195_1015001,4368_114 -4358_80684,227,4368_3393,Ballycullen Road,648,0,4368_7778195_1015001,4368_116 -4358_80684,227,4368_3394,Ballycullen Road,1977,0,4368_7778195_9015005,4368_113 -4358_80684,228,4368_3395,Ballycullen Road,8454,0,4368_7778195_1015002,4368_113 -4358_80684,227,4368_3396,Ballycullen Road,730,0,4368_7778195_1015008,4368_113 -4358_80684,228,4368_3397,Ballycullen Road,8482,0,4368_7778195_1015005,4368_113 -4358_80684,229,4368_3398,Ballycullen Road,14844,0,4368_7778195_1015002,4368_114 -4358_80684,227,4368_3399,Ballycullen Road,640,0,4368_7778195_1015002,4368_113 -4358_80760,228,4368_34,Shaw street,9314,0,4368_7778195_9001002,4368_1 -4358_80760,227,4368_340,Shanard Road,1714,1,4368_7778195_9001008,4368_4 -4358_80684,227,4368_3400,Ballycullen Road,568,0,4368_7778195_1015009,4368_113 -4358_80684,228,4368_3401,Ballycullen Road,8466,0,4368_7778195_1015003,4368_113 -4358_80684,227,4368_3402,Ballycullen Road,2011,0,4368_7778195_9015006,4368_113 -4358_80684,227,4368_3403,Ballycullen Road,775,0,4368_7778195_1015004,4368_113 -4358_80684,229,4368_3404,Ballycullen Road,14908,0,4368_7778195_1015003,4368_113 -4358_80684,228,4368_3405,Ballycullen Road,9622,0,4368_7778195_9015001,4368_114 -4358_80684,227,4368_3406,Ballycullen Road,792,0,4368_7778195_1015005,4368_113 -4358_80684,227,4368_3407,Ballycullen Road,6469,0,4368_7778195_7015574,4368_113 -4358_80684,227,4368_3408,Ballycullen Road,1927,0,4368_7778195_9015001,4368_113 -4358_80684,228,4368_3409,Ballycullen Road,8472,0,4368_7778195_1015004,4368_113 -4358_80760,229,4368_341,Shanard Road,15524,1,4368_7778195_9001003,4368_5 -4358_80684,227,4368_3410,Ballycullen Road,1992,0,4368_7778195_9015007,4368_113 -4358_80684,227,4368_3411,Ballycullen Road,2013,0,4368_7778195_9015008,4368_113 -4358_80684,229,4368_3412,Ballycullen Road,15778,0,4368_7778195_9015001,4368_113 -4358_80684,228,4368_3413,Ballycullen Road,9655,0,4368_7778195_9015002,4368_114 -4358_80684,227,4368_3414,Ballycullen Road,6477,0,4368_7778195_3015508,4368_113 -4358_80684,227,4368_3415,Ballycullen Road,762,0,4368_7778195_1015006,4368_113 -4358_80684,227,4368_3416,Ballycullen Road,708,0,4368_7778195_1015007,4368_113 -4358_80684,228,4368_3417,Ballycullen Road,8497,0,4368_7778195_1015006,4368_113 -4358_80684,227,4368_3418,Ballycullen Road,2035,0,4368_7778195_9015009,4368_113 -4358_80684,227,4368_3419,Ballycullen Road,2037,0,4368_7778195_9015010,4368_113 -4358_80760,228,4368_342,Shanard Road,9391,1,4368_7778195_9001001,4368_6 -4358_80684,228,4368_3420,Ballycullen Road,9633,0,4368_7778195_9015003,4368_114 -4358_80684,229,4368_3421,Ballycullen Road,15808,0,4368_7778195_9015002,4368_116 -4358_80684,227,4368_3422,Ballycullen Road,2034,0,4368_7778195_9015002,4368_113 -4358_80684,228,4368_3423,Ballycullen Road,8591,0,4368_7778195_1015001,4368_113 -4358_80684,227,4368_3424,Ballycullen Road,600,0,4368_7778195_1015010,4368_113 -4358_80684,228,4368_3425,Ballycullen Road,9640,0,4368_7778195_9015004,4368_113 -4358_80684,229,4368_3426,Ballycullen Road,15825,0,4368_7778195_9015003,4368_114 -4358_80684,227,4368_3427,Ballycullen Road,583,0,4368_7778195_1015011,4368_113 -4358_80684,228,4368_3428,Ballycullen Road,8456,0,4368_7778195_1015002,4368_113 -4358_80684,227,4368_3429,Ballycullen Road,784,0,4368_7778195_1015003,4368_113 -4358_80680,227,4368_343,Sandyford B.D.,679,0,4368_7778195_1011002,4368_7 -4358_80684,229,4368_3430,Ballycullen Road,14821,0,4368_7778195_1015005,4368_113 -4358_80684,228,4368_3431,Ballycullen Road,8484,0,4368_7778195_1015005,4368_113 -4358_80684,227,4368_3432,Ballycullen Road,1919,0,4368_7778195_9015003,4368_114 -4358_80684,229,4368_3433,Ballycullen Road,14922,0,4368_7778195_1015006,4368_113 -4358_80684,227,4368_3434,Ballycullen Road,662,0,4368_7778195_1015012,4368_114 -4358_80684,228,4368_3435,Ballycullen Road,8506,0,4368_7778195_1015008,4368_113 -4358_80684,227,4368_3436,Ballycullen Road,744,0,4368_7778195_1015014,4368_113 -4358_80684,229,4368_3437,Ballycullen Road,14910,0,4368_7778195_1015003,4368_113 -4358_80684,227,4368_3438,Ballycullen Road,682,0,4368_7778195_1015016,4368_114 -4358_80684,228,4368_3439,Ballycullen Road,8468,0,4368_7778195_1015003,4368_116 -4358_80680,228,4368_344,Sandyford B.D.,8596,0,4368_7778195_1011002,4368_7 -4358_80684,227,4368_3440,Ballycullen Road,650,0,4368_7778195_1015001,4368_113 -4358_80684,228,4368_3441,Ballycullen Road,9624,0,4368_7778195_9015001,4368_113 -4358_80684,227,4368_3442,Ballycullen Road,732,0,4368_7778195_1015008,4368_113 -4358_80684,229,4368_3443,Ballycullen Road,14891,0,4368_7778195_1015004,4368_114 -4358_80684,228,4368_3444,Ballycullen Road,8474,0,4368_7778195_1015004,4368_113 -4358_80684,227,4368_3445,Ballycullen Road,563,0,4368_7778195_1015017,4368_114 -4358_80684,229,4368_3446,Ballycullen Road,15780,0,4368_7778195_9015001,4368_113 -4358_80684,227,4368_3447,Ballycullen Road,642,0,4368_7778195_1015002,4368_114 -4358_80684,228,4368_3448,Ballycullen Road,8502,0,4368_7778195_1015007,4368_113 -4358_80684,227,4368_3449,Ballycullen Road,570,0,4368_7778195_1015009,4368_113 -4358_80680,227,4368_345,Sandyford B.D.,605,0,4368_7778195_1011003,4368_8 -4358_80684,228,4368_3450,Ballycullen Road,9657,0,4368_7778195_9015002,4368_113 -4358_80684,227,4368_3451,Ballycullen Road,777,0,4368_7778195_1015004,4368_114 -4358_80684,229,4368_3452,Ballycullen Road,14933,0,4368_7778195_1015007,4368_116 -4358_80684,227,4368_3453,Ballycullen Road,794,0,4368_7778195_1015005,4368_113 -4358_80684,228,4368_3454,Ballycullen Road,8499,0,4368_7778195_1015006,4368_113 -4358_80684,227,4368_3455,Ballycullen Road,1929,0,4368_7778195_9015001,4368_113 -4358_80684,229,4368_3456,Ballycullen Road,15815,0,4368_7778195_9015004,4368_114 -4358_80684,228,4368_3457,Ballycullen Road,9635,0,4368_7778195_9015003,4368_113 -4358_80684,227,4368_3458,Ballycullen Road,1994,0,4368_7778195_9015007,4368_114 -4358_80684,227,4368_3459,Ballycullen Road,2015,0,4368_7778195_9015008,4368_113 -4358_80680,227,4368_346,Sandyford B.D.,759,0,4368_7778195_1011005,4368_7 -4358_80684,229,4368_3460,Ballycullen Road,15810,0,4368_7778195_9015002,4368_114 -4358_80684,228,4368_3461,Ballycullen Road,8593,0,4368_7778195_1015001,4368_113 -4358_80684,227,4368_3462,Ballycullen Road,710,0,4368_7778195_1015007,4368_113 -4358_80684,227,4368_3463,Ballycullen Road,2039,0,4368_7778195_9015010,4368_113 -4358_80684,228,4368_3464,Ballycullen Road,9664,0,4368_7778195_9015005,4368_114 -4358_80684,229,4368_3465,Ballycullen Road,14823,0,4368_7778195_1015005,4368_116 -4358_80684,227,4368_3466,Ballycullen Road,602,0,4368_7778195_1015010,4368_113 -4358_80684,229,4368_3467,Ballycullen Road,15819,0,4368_7778195_9015005,4368_113 -4358_80684,228,4368_3468,Ballycullen Road,9642,0,4368_7778195_9015004,4368_114 -4358_80684,227,4368_3469,Ballycullen Road,1943,0,4368_7778195_9015011,4368_113 -4358_80680,227,4368_347,Sandyford B.D.,674,0,4368_7778195_1011007,4368_7 -4358_80684,227,4368_3470,Ballycullen Road,786,0,4368_7778195_1015003,4368_113 -4358_80684,228,4368_3471,Ballycullen Road,8458,0,4368_7778195_1015002,4368_114 -4358_80684,229,4368_3472,Ballycullen Road,14924,0,4368_7778195_1015006,4368_116 -4358_80684,227,4368_3473,Ballycullen Road,1921,0,4368_7778195_9015003,4368_113 -4358_80684,228,4368_3474,Ballycullen Road,8486,0,4368_7778195_1015005,4368_113 -4358_80684,229,4368_3475,Ballycullen Road,14860,0,4368_7778195_1015009,4368_114 -4358_80684,227,4368_3476,Ballycullen Road,664,0,4368_7778195_1015012,4368_113 -4358_80684,227,4368_3477,Ballycullen Road,746,0,4368_7778195_1015014,4368_113 -4358_80684,228,4368_3478,Ballycullen Road,8508,0,4368_7778195_1015008,4368_114 -4358_80684,229,4368_3479,Ballycullen Road,14879,0,4368_7778195_1015008,4368_116 -4358_80680,227,4368_348,Sandyford B.D.,587,0,4368_7778195_1011008,4368_7 -4358_80684,227,4368_3480,Ballycullen Road,684,0,4368_7778195_1015016,4368_113 -4358_80684,228,4368_3481,Ballycullen Road,8470,0,4368_7778195_1015003,4368_113 -4358_80684,229,4368_3482,Ballycullen Road,14836,0,4368_7778195_1015011,4368_114 -4358_80684,227,4368_3483,Ballycullen Road,652,0,4368_7778195_1015001,4368_113 -4358_80684,229,4368_3484,Ballycullen Road,14912,0,4368_7778195_1015003,4368_113 -4358_80684,228,4368_3485,Ballycullen Road,9626,0,4368_7778195_9015001,4368_114 -4358_80684,227,4368_3486,Ballycullen Road,734,0,4368_7778195_1015008,4368_116 -4358_80684,227,4368_3487,Ballycullen Road,565,0,4368_7778195_1015017,4368_113 -4358_80684,228,4368_3488,Ballycullen Road,8511,0,4368_7778195_1015009,4368_113 -4358_80684,229,4368_3489,Ballycullen Road,14893,0,4368_7778195_1015004,4368_114 -4358_80680,228,4368_349,Sandyford B.D.,8618,0,4368_7778195_1011001,4368_7 -4358_80684,227,4368_3490,Ballycullen Road,644,0,4368_7778195_1015002,4368_113 -4358_80684,228,4368_3491,Ballycullen Road,8476,0,4368_7778195_1015004,4368_113 -4358_80684,229,4368_3492,Ballycullen Road,15782,0,4368_7778195_9015001,4368_114 -4358_80684,227,4368_3493,Ballycullen Road,572,0,4368_7778195_1015009,4368_113 -4358_80684,227,4368_3494,Ballycullen Road,764,0,4368_7778195_1015018,4368_113 -4358_80684,228,4368_3495,Ballycullen Road,8517,0,4368_7778195_1015010,4368_113 -4358_80684,229,4368_3496,Ballycullen Road,14935,0,4368_7778195_1015007,4368_114 -4358_80684,227,4368_3497,Ballycullen Road,779,0,4368_7778195_1015004,4368_113 -4358_80684,229,4368_3498,Ballycullen Road,14792,0,4368_7778195_1015010,4368_113 -4358_80684,228,4368_3499,Ballycullen Road,9659,0,4368_7778195_9015002,4368_114 -4358_80760,229,4368_35,Shaw street,15724,0,4368_7778195_9001002,4368_2 -4358_80680,227,4368_350,Sandyford B.D.,742,0,4368_7778195_1011001,4368_7 -4358_80684,227,4368_3500,Ballycullen Road,796,0,4368_7778195_1015005,4368_113 -4358_80684,227,4368_3501,Ballycullen Road,1931,0,4368_7778195_9015001,4368_113 -4358_80684,228,4368_3502,Ballycullen Road,8504,0,4368_7778195_1015007,4368_113 -4358_80684,229,4368_3503,Ballycullen Road,15793,0,4368_7778195_9015006,4368_114 -4358_80684,227,4368_3504,Ballycullen Road,1996,0,4368_7778195_9015007,4368_113 -4358_80684,228,4368_3505,Ballycullen Road,9637,0,4368_7778195_9015003,4368_113 -4358_80684,227,4368_3506,Ballycullen Road,712,0,4368_7778195_1015007,4368_114 -4358_80684,229,4368_3507,Ballycullen Road,15817,0,4368_7778195_9015004,4368_116 -4358_80684,227,4368_3508,Ballycullen Road,2017,0,4368_7778195_9015008,4368_113 -4358_80684,229,4368_3509,Ballycullen Road,14811,0,4368_7778195_1015012,4368_113 -4358_80680,227,4368_351,Sandyford B.D.,621,0,4368_7778195_1011009,4368_7 -4358_80684,228,4368_3510,Ballycullen Road,8595,0,4368_7778195_1015001,4368_114 -4358_80684,227,4368_3511,Ballycullen Road,604,0,4368_7778195_1015010,4368_113 -4358_80684,227,4368_3512,Ballycullen Road,2041,0,4368_7778195_9015010,4368_113 -4358_80684,229,4368_3513,Ballycullen Road,14872,0,4368_7778195_1015013,4368_114 -4358_80684,228,4368_3514,Ballycullen Road,9666,0,4368_7778195_9015005,4368_116 -4358_80684,227,4368_3515,Ballycullen Road,1945,0,4368_7778195_9015011,4368_113 -4358_80684,229,4368_3516,Ballycullen Road,15821,0,4368_7778195_9015005,4368_113 -4358_80684,228,4368_3517,Ballycullen Road,9648,0,4368_7778195_9015007,4368_114 -4358_80684,227,4368_3518,Ballycullen Road,788,0,4368_7778195_1015003,4368_113 -4358_80684,228,4368_3519,Ballycullen Road,8493,0,4368_7778195_1015012,4368_113 -4358_80680,228,4368_352,Sandyford B.D.,8605,0,4368_7778195_1011003,4368_7 -4358_80684,229,4368_3520,Ballycullen Road,14926,0,4368_7778195_1015006,4368_114 -4358_80684,227,4368_3521,Ballycullen Road,1923,0,4368_7778195_9015003,4368_116 -4358_80684,227,4368_3522,Ballycullen Road,666,0,4368_7778195_1015012,4368_113 -4358_80684,229,4368_3523,Ballycullen Road,14862,0,4368_7778195_1015009,4368_113 -4358_80684,228,4368_3524,Ballycullen Road,8524,0,4368_7778195_1015011,4368_114 -4358_80684,227,4368_3525,Ballycullen Road,748,0,4368_7778195_1015014,4368_113 -4358_80684,228,4368_3526,Ballycullen Road,8460,0,4368_7778195_1015002,4368_113 -4358_80684,227,4368_3527,Ballycullen Road,1972,0,4368_7778195_9015013,4368_114 -4358_80684,229,4368_3528,Ballycullen Road,14881,0,4368_7778195_1015008,4368_116 -4358_80684,227,4368_3529,Ballycullen Road,686,0,4368_7778195_1015016,4368_113 -4358_80680,227,4368_353,Sandyford B.D.,596,0,4368_7778195_1011004,4368_8 -4358_80684,228,4368_3530,Ballycullen Road,8488,0,4368_7778195_1015005,4368_113 -4358_80684,229,4368_3531,Ballycullen Road,14838,0,4368_7778195_1015011,4368_114 -4358_80684,227,4368_3532,Ballycullen Road,654,0,4368_7778195_1015001,4368_113 -4358_80684,229,4368_3533,Ballycullen Road,14943,0,4368_7778195_1015014,4368_113 -4358_80684,228,4368_3534,Ballycullen Road,9670,0,4368_7778195_9015009,4368_114 -4358_80684,227,4368_3535,Ballycullen Road,736,0,4368_7778195_1015008,4368_116 -4358_80684,227,4368_3536,Ballycullen Road,586,0,4368_7778195_1015020,4368_115 -4358_80684,227,4368_3537,Ballycullen Road,2019,0,4368_7778195_9015014,4368_113 -4358_80684,228,4368_3538,Ballycullen Road,8532,0,4368_7778195_1015013,4368_113 -4358_80684,229,4368_3539,Ballycullen Road,14895,0,4368_7778195_1015004,4368_114 -4358_80680,227,4368_354,Sandyford B.D.,692,0,4368_7778195_1011012,4368_7 -4358_80684,227,4368_3540,Ballycullen Road,567,0,4368_7778195_1015017,4368_113 -4358_80684,228,4368_3541,Ballycullen Road,8513,0,4368_7778195_1015009,4368_113 -4358_80684,229,4368_3542,Ballycullen Road,15784,0,4368_7778195_9015001,4368_114 -4358_80684,227,4368_3543,Ballycullen Road,646,0,4368_7778195_1015002,4368_116 -4358_80684,227,4368_3544,Ballycullen Road,754,0,4368_7778195_1015019,4368_113 -4358_80684,228,4368_3545,Ballycullen Road,8478,0,4368_7778195_1015004,4368_113 -4358_80684,229,4368_3546,Ballycullen Road,14937,0,4368_7778195_1015007,4368_114 -4358_80684,227,4368_3547,Ballycullen Road,766,0,4368_7778195_1015018,4368_113 -4358_80684,229,4368_3548,Ballycullen Road,14794,0,4368_7778195_1015010,4368_113 -4358_80684,228,4368_3549,Ballycullen Road,9661,0,4368_7778195_9015002,4368_114 -4358_80680,228,4368_355,Sandyford B.D.,8569,0,4368_7778195_1011004,4368_7 -4358_80684,227,4368_3550,Ballycullen Road,781,0,4368_7778195_1015004,4368_116 -4358_80684,227,4368_3551,Ballycullen Road,1980,0,4368_7778195_9015012,4368_113 -4358_80684,228,4368_3552,Ballycullen Road,8519,0,4368_7778195_1015010,4368_113 -4358_80684,229,4368_3553,Ballycullen Road,15795,0,4368_7778195_9015006,4368_114 -4358_80684,227,4368_3554,Ballycullen Road,798,0,4368_7778195_1015005,4368_113 -4358_80684,229,4368_3555,Ballycullen Road,15789,0,4368_7778195_9015007,4368_113 -4358_80684,227,4368_3556,Ballycullen Road,2045,0,4368_7778195_9015015,4368_114 -4358_80684,228,4368_3557,Ballycullen Road,9685,0,4368_7778195_9015010,4368_116 -4358_80684,227,4368_3558,Ballycullen Road,1933,0,4368_7778195_9015001,4368_113 -4358_80684,228,4368_3559,Ballycullen Road,9644,0,4368_7778195_9015008,4368_113 -4358_80680,227,4368_356,Sandyford B.D.,659,0,4368_7778195_1011013,4368_8 -4358_80684,229,4368_3560,Ballycullen Road,14813,0,4368_7778195_1015012,4368_114 -4358_80684,227,4368_3561,Ballycullen Road,1998,0,4368_7778195_9015007,4368_113 -4358_80684,229,4368_3562,Ballycullen Road,14874,0,4368_7778195_1015013,4368_113 -4358_80684,227,4368_3563,Ballycullen Road,714,0,4368_7778195_1015007,4368_114 -4358_80684,228,4368_3564,Ballycullen Road,8538,0,4368_7778195_1015014,4368_116 -4358_80684,227,4368_3565,Ballycullen Road,771,0,4368_7778195_1015021,4368_113 -4358_80684,229,4368_3566,Ballycullen Road,15827,0,4368_7778195_9015008,4368_114 -4358_80684,228,4368_3567,Ballycullen Road,9668,0,4368_7778195_9015005,4368_116 -4358_80684,227,4368_3568,Ballycullen Road,2043,0,4368_7778195_9015010,4368_113 -4358_80684,228,4368_3569,Ballycullen Road,9650,0,4368_7778195_9015007,4368_114 -4358_80680,227,4368_357,Sandyford B.D.,694,0,4368_7778195_1011006,4368_7 -4358_80684,229,4368_3570,Ballycullen Road,14928,0,4368_7778195_1015006,4368_116 -4358_80684,227,4368_3571,Ballycullen Road,790,0,4368_7778195_1015003,4368_113 -4358_80684,228,4368_3572,Ballycullen Road,8495,0,4368_7778195_1015012,4368_114 -4358_80684,229,4368_3573,Ballycullen Road,14864,0,4368_7778195_1015009,4368_116 -4358_80684,229,4368_3574,Ballycullen Road,14840,0,4368_7778195_1015011,4368_113 -4358_80684,228,4368_3575,Ballycullen Road,8526,0,4368_7778195_1015011,4368_114 -4358_80684,227,4368_3576,Ballycullen Road,668,0,4368_7778195_1015012,4368_116 -4358_80684,229,4368_3577,Ballycullen Road,14945,0,4368_7778195_1015014,4368_113 -4358_80684,228,4368_3578,Ballycullen Road,8462,0,4368_7778195_1015002,4368_114 -4358_80684,227,4368_3579,Ballycullen Road,592,0,4368_7778195_1015022,4368_116 -4358_80680,228,4368_358,Sandyford B.D.,8549,0,4368_7778195_1011005,4368_7 -4358_80684,228,4368_3580,Ballycullen Road,8490,0,4368_7778195_1015005,4368_113 -4358_80684,227,4368_3581,Ballycullen Road,688,0,4368_7778195_1015016,4368_114 -4358_80684,229,4368_3582,Ballycullen Road,14897,0,4368_7778195_1015004,4368_116 -4358_80684,229,4368_3583,Ballycullen Road,15786,0,4368_7778195_9015001,4368_113 -4358_80684,227,4368_3584,Ballycullen Road,656,0,4368_7778195_1015001,4368_114 -4358_80684,228,4368_3585,Ballycullen Road,9672,0,4368_7778195_9015009,4368_116 -4358_80684,228,4368_3586,Ballycullen Road,8534,0,4368_7778195_1015013,4368_113 -4358_80684,229,4368_3587,Ballycullen Road,14939,0,4368_7778195_1015007,4368_114 -4358_80684,227,4368_3588,Ballycullen Road,738,0,4368_7778195_1015008,4368_116 -4358_80684,228,4368_3589,Ballycullen Road,8515,0,4368_7778195_1015009,4368_113 -4358_80680,227,4368_359,Sandyford B.D.,585,0,4368_7778195_1011010,4368_7 -4358_80684,229,4368_3590,Ballycullen Road,14796,0,4368_7778195_1015010,4368_114 -4358_80684,227,4368_3591,Ballycullen Road,756,0,4368_7778195_1015019,4368_116 -4358_80684,228,4368_3592,Ballycullen Road,8480,0,4368_7778195_1015004,4368_113 -4358_80684,227,4368_3593,Ballycullen Road,768,0,4368_7778195_1015018,4368_114 -4358_80684,229,4368_3594,Ballycullen Road,15797,0,4368_7778195_9015006,4368_116 -4358_80684,228,4368_3595,Ballycullen Road,8521,0,4368_7778195_1015010,4368_113 -4358_80684,227,4368_3596,Ballycullen Road,2049,0,4368_7778195_9015016,4368_114 -4358_80684,229,4368_3597,Ballycullen Road,15791,0,4368_7778195_9015007,4368_116 -4358_80684,229,4368_3598,Ballycullen Road,14876,0,4368_7778195_1015013,4368_113 -4358_80684,227,4368_3599,Ballycullen Road,2047,0,4368_7778195_9015015,4368_114 -4358_80760,227,4368_36,Shaw street,1588,0,4368_7778195_9001005,4368_1 -4358_80680,228,4368_360,Sandyford B.D.,8598,0,4368_7778195_1011002,4368_7 -4358_80684,228,4368_3600,Ballycullen Road,9687,0,4368_7778195_9015010,4368_116 -4358_80684,227,4368_3601,Ballycullen Road,2051,0,4368_7778195_9015017,4368_113 -4358_80684,229,4368_3602,Ballycullen Road,15829,0,4368_7778195_9015008,4368_114 -4358_80684,228,4368_3603,Ballycullen Road,8547,0,4368_7778195_1015015,4368_116 -4358_80684,228,4368_3604,Ballycullen Road,9646,0,4368_7778195_9015008,4368_113 -4358_80684,227,4368_3605,Ballycullen Road,716,0,4368_7778195_1015007,4368_114 -4358_80684,229,4368_3606,Ballycullen Road,14930,0,4368_7778195_1015006,4368_116 -4358_80684,227,4368_3607,Ballycullen Road,773,0,4368_7778195_1015021,4368_113 -4358_80684,228,4368_3608,Ballycullen Road,9652,0,4368_7778195_9015007,4368_114 -4358_80684,229,4368_3609,Ballycullen Road,14866,0,4368_7778195_1015009,4368_116 -4358_80680,227,4368_361,Sandyford B.D.,632,0,4368_7778195_1011011,4368_7 -4358_80684,229,4368_3610,Ballycullen Road,14842,0,4368_7778195_1015011,4368_113 -4358_80684,228,4368_3611,Ballycullen Road,8528,0,4368_7778195_1015011,4368_114 -4358_80684,227,4368_3612,Ballycullen Road,670,0,4368_7778195_1015012,4368_116 -4358_80684,229,4368_3613,Ballycullen Road,14947,0,4368_7778195_1015014,4368_113 -4358_80684,228,4368_3614,Ballycullen Road,8464,0,4368_7778195_1015002,4368_114 -4358_80684,227,4368_3615,Ballycullen Road,594,0,4368_7778195_1015022,4368_116 -4358_80684,228,4368_3616,Ballycullen Road,8492,0,4368_7778195_1015005,4368_113 -4358_80684,227,4368_3617,Ballycullen Road,690,0,4368_7778195_1015016,4368_114 -4358_80684,229,4368_3618,Ballycullen Road,14899,0,4368_7778195_1015004,4368_116 -4358_80684,229,4368_3619,Ballycullen Road,15788,0,4368_7778195_9015001,4368_113 -4358_80680,228,4368_362,Sandyford B.D.,8620,0,4368_7778195_1011001,4368_7 -4358_80684,227,4368_3620,Ballycullen Road,658,0,4368_7778195_1015001,4368_114 -4358_80684,228,4368_3621,Ballycullen Road,9674,0,4368_7778195_9015009,4368_116 -4358_80684,228,4368_3622,Ballycullen Road,8536,0,4368_7778195_1015013,4368_113 -4358_80684,229,4368_3623,Ballycullen Road,14941,0,4368_7778195_1015007,4368_114 -4358_80684,227,4368_3624,Ballycullen Road,740,0,4368_7778195_1015008,4368_116 -4358_80684,228,4368_3625,Ballycullen Road,9628,0,4368_7778195_9015011,4368_113 -4358_80684,227,4368_3626,Ballycullen Road,1985,0,4368_7778195_9015018,4368_114 -4358_80684,229,4368_3627,Ballycullen Road,15812,0,4368_7778195_9015009,4368_116 -4358_80684,229,4368_3628,Ballycullen Road,15803,0,4368_7778195_9015010,4368_113 -4358_80684,227,4368_3629,Ballycullen Road,1982,0,4368_7778195_9015019,4368_114 -4358_80680,229,4368_363,Sandyford B.D.,14799,0,4368_7778195_1011001,4368_7 -4358_80684,228,4368_3630,Ballycullen Road,9682,0,4368_7778195_9015012,4368_116 -4358_80684,229,4368_3631,Ballycullen Road,14916,0,4368_7778195_1015017,4368_113 -4358_80684,227,4368_3632,Ballycullen Road,704,0,4368_7778195_1015025,4368_114 -4358_80684,228,4368_3633,Ballycullen Road,8585,0,4368_7778195_1015019,4368_116 -4358_80684,228,4368_3634,Ballycullen Road,8541,0,4368_7778195_1015017,4368_113 -4358_80684,229,4368_3635,Ballycullen Road,14819,0,4368_7778195_1015015,4368_114 -4358_80684,227,4368_3636,Ballycullen Road,589,0,4368_7778195_1015023,4368_116 -4358_80684,228,4368_3637,Ballycullen Road,8530,0,4368_7778195_1015018,4368_113 -4358_80684,227,4368_3638,Ballycullen Road,721,0,4368_7778195_1015024,4368_114 -4358_80684,229,4368_3639,Ballycullen Road,14914,0,4368_7778195_1015016,4368_116 -4358_80680,227,4368_364,Sandyford B.D.,607,0,4368_7778195_1011003,4368_8 -4358_80684,228,4368_3640,Ballycullen Road,8544,0,4368_7778195_1015020,4368_113 -4358_80684,227,4368_3641,Ballycullen Road,751,0,4368_7778195_1015026,4368_114 -4358_80684,229,4368_3642,Ballycullen Road,14920,0,4368_7778195_1015018,4368_116 -4358_80684,228,4368_3643,Ballycullen Road,9630,0,4368_7778195_9015011,4368_113 -4358_80684,227,4368_3644,Ballycullen Road,1987,0,4368_7778195_9015018,4368_114 -4358_80684,229,4368_3645,Ballycullen Road,15814,0,4368_7778195_9015009,4368_116 -4358_80684,229,4368_3646,Ballycullen Road,15805,0,4368_7778195_9015010,4368_113 -4358_80684,228,4368_3647,Ballycullen Road,9684,0,4368_7778195_9015012,4368_114 -4358_80684,227,4368_3648,Ballycullen Road,1984,0,4368_7778195_9015019,4368_113 -4358_80684,229,4368_3649,Ballycullen Road,14918,0,4368_7778195_1015017,4368_113 -4358_80680,228,4368_365,Sandyford B.D.,8607,0,4368_7778195_1011003,4368_7 -4358_80684,227,4368_3650,Ballycullen Road,706,0,4368_7778195_1015025,4368_114 -4358_80684,228,4368_3651,Ballycullen Road,8587,0,4368_7778195_1015019,4368_116 -4358_80684,229,4368_3652,Clongriffin,14846,1,4368_7778195_1015001,4368_117 -4358_80684,227,4368_3653,Clongriffin,647,1,4368_7778195_1015001,4368_118 -4358_80684,228,4368_3654,Clongriffin,8588,1,4368_7778195_1015001,4368_119 -4358_80684,228,4368_3655,Clongriffin,8453,1,4368_7778195_1015002,4368_117 -4358_80684,229,4368_3656,Clongriffin,14843,1,4368_7778195_1015002,4368_118 -4358_80684,227,4368_3657,Clongriffin,639,1,4368_7778195_1015002,4368_119 -4358_80684,229,4368_3658,Clongriffin,14907,1,4368_7778195_1015003,4368_117 -4358_80684,228,4368_3659,Clongriffin,8465,1,4368_7778195_1015003,4368_118 -4358_80680,227,4368_366,Sandyford B.D.,676,0,4368_7778195_1011007,4368_7 -4358_80684,227,4368_3660,Clongriffin,774,1,4368_7778195_1015004,4368_119 -4358_80684,227,4368_3661,Clongriffin,791,1,4368_7778195_1015005,4368_117 -4358_80684,228,4368_3662,Clongriffin,9621,1,4368_7778195_9015001,4368_117 -4358_80684,227,4368_3663,Clongriffin,1926,1,4368_7778195_9015001,4368_117 -4358_80684,228,4368_3664,Clongriffin,8471,1,4368_7778195_1015004,4368_117 -4358_80684,229,4368_3665,Clongriffin,15777,1,4368_7778195_9015001,4368_118 -4358_80684,227,4368_3666,Clongriffin,761,1,4368_7778195_1015006,4368_119 -4358_80684,227,4368_3667,Clongriffin,707,1,4368_7778195_1015007,4368_117 -4358_80684,228,4368_3668,Clongriffin,9654,1,4368_7778195_9015002,4368_117 -4358_80684,227,4368_3669,Clongriffin,2033,1,4368_7778195_9015002,4368_117 -4358_80680,229,4368_367,Sandyford B.D.,14825,0,4368_7778195_1011002,4368_8 -4358_80684,228,4368_3670,Clongriffin,8496,1,4368_7778195_1015006,4368_117 -4358_80684,229,4368_3671,Clongriffin,15807,1,4368_7778195_9015002,4368_118 -4358_80684,227,4368_3672,Clongriffin,599,1,4368_7778195_1015010,4368_119 -4358_80684,227,4368_3673,Clongriffin,582,1,4368_7778195_1015011,4368_117 -4358_80684,228,4368_3674,Clongriffin,9632,1,4368_7778195_9015003,4368_117 -4358_80684,227,4368_3675,Clongriffin,783,1,4368_7778195_1015003,4368_117 -4358_80684,227,4368_3676,Clongriffin,1918,1,4368_7778195_9015003,4368_117 -4358_80684,229,4368_3677,Clongriffin,15824,1,4368_7778195_9015003,4368_117 -4358_80684,228,4368_3678,Clongriffin,8590,1,4368_7778195_1015001,4368_118 -4358_80684,227,4368_3679,Clongriffin,6471,1,4368_7778195_7015591,4368_117 -4358_80680,228,4368_368,Sandyford B.D.,8571,0,4368_7778195_1011004,4368_7 -4358_80684,227,4368_3680,Clongriffin,661,1,4368_7778195_1015012,4368_117 -4358_80684,227,4368_3681,Clongriffin,1948,1,4368_7778195_9015004,4368_117 -4358_80684,228,4368_3682,Clongriffin,9639,1,4368_7778195_9015004,4368_117 -4358_80684,227,4368_3683,Clongriffin,758,1,4368_7778195_1015013,4368_118 -4358_80684,227,4368_3684,Clongriffin,743,1,4368_7778195_1015014,4368_117 -4358_80684,227,4368_3685,Clongriffin,703,1,4368_7778195_1015015,4368_117 -4358_80684,229,4368_3686,Clongriffin,14848,1,4368_7778195_1015001,4368_117 -4358_80684,228,4368_3687,Clongriffin,8455,1,4368_7778195_1015002,4368_118 -4358_80684,227,4368_3688,Clongriffin,681,1,4368_7778195_1015016,4368_117 -4358_80684,227,4368_3689,Clongriffin,649,1,4368_7778195_1015001,4368_117 -4358_80680,227,4368_369,Sandyford B.D.,623,0,4368_7778195_1011009,4368_7 -4358_80684,228,4368_3690,Clongriffin,8483,1,4368_7778195_1015005,4368_117 -4358_80684,229,4368_3691,Clongriffin,14845,1,4368_7778195_1015002,4368_117 -4358_80684,227,4368_3692,Clongriffin,1978,1,4368_7778195_9015005,4368_117 -4358_80684,227,4368_3693,Clongriffin,1523,1,4368_7778195_3823105,4368_117 -4358_80684,228,4368_3694,Clongriffin,8467,1,4368_7778195_1015003,4368_117 -4358_80684,227,4368_3695,Clongriffin,731,1,4368_7778195_1015008,4368_118 -4358_80684,227,4368_3696,Clongriffin,562,1,4368_7778195_1015017,4368_117 -4358_80684,229,4368_3697,Clongriffin,14909,1,4368_7778195_1015003,4368_117 -4358_80684,228,4368_3698,Clongriffin,9623,1,4368_7778195_9015001,4368_117 -4358_80684,227,4368_3699,Clongriffin,641,1,4368_7778195_1015002,4368_117 -4358_80760,227,4368_37,Shaw street,1541,0,4368_7778195_9001010,4368_1 -4358_80680,229,4368_370,Sandyford B.D.,14868,0,4368_7778195_1011003,4368_8 -4358_80684,228,4368_3700,Clongriffin,8473,1,4368_7778195_1015004,4368_117 -4358_80684,227,4368_3701,Clongriffin,569,1,4368_7778195_1015009,4368_118 -4358_80684,229,4368_3702,Clongriffin,14890,1,4368_7778195_1015004,4368_119 -4358_80684,227,4368_3703,Clongriffin,2012,1,4368_7778195_9015006,4368_117 -4358_80684,228,4368_3704,Clongriffin,8501,1,4368_7778195_1015007,4368_117 -4358_80684,229,4368_3705,Clongriffin,15779,1,4368_7778195_9015001,4368_117 -4358_80684,227,4368_3706,Clongriffin,776,1,4368_7778195_1015004,4368_118 -4358_80684,228,4368_3707,Clongriffin,9656,1,4368_7778195_9015002,4368_117 -4358_80684,227,4368_3708,Clongriffin,793,1,4368_7778195_1015005,4368_118 -4358_80684,227,4368_3709,Clongriffin,1928,1,4368_7778195_9015001,4368_117 -4358_80680,228,4368_371,Sandyford B.D.,8551,0,4368_7778195_1011005,4368_7 -4358_80684,229,4368_3710,Clongriffin,14932,1,4368_7778195_1015007,4368_118 -4358_80684,228,4368_3711,Clongriffin,8498,1,4368_7778195_1015006,4368_117 -4358_80684,227,4368_3712,Clongriffin,1993,1,4368_7778195_9015007,4368_117 -4358_80684,228,4368_3713,Clongriffin,9634,1,4368_7778195_9015003,4368_117 -4358_80684,227,4368_3714,Clongriffin,2014,1,4368_7778195_9015008,4368_118 -4358_80684,229,4368_3715,Clongriffin,15809,1,4368_7778195_9015002,4368_119 -4358_80684,227,4368_3716,Clongriffin,709,1,4368_7778195_1015007,4368_117 -4358_80684,228,4368_3717,Clongriffin,8592,1,4368_7778195_1015001,4368_117 -4358_80684,227,4368_3718,Clongriffin,2036,1,4368_7778195_9015009,4368_117 -4358_80684,229,4368_3719,Clongriffin,15826,1,4368_7778195_9015003,4368_118 -4358_80680,229,4368_372,Sandyford B.D.,14815,0,4368_7778195_1011004,4368_7 -4358_80684,227,4368_3720,Clongriffin,2038,1,4368_7778195_9015010,4368_117 -4358_80684,228,4368_3721,Clongriffin,9641,1,4368_7778195_9015004,4368_118 -4358_80684,227,4368_3722,Clongriffin,601,1,4368_7778195_1015010,4368_117 -4358_80684,229,4368_3723,Clongriffin,14822,1,4368_7778195_1015005,4368_118 -4358_80684,228,4368_3724,Clongriffin,8457,1,4368_7778195_1015002,4368_117 -4358_80684,227,4368_3725,Clongriffin,785,1,4368_7778195_1015003,4368_117 -4358_80684,228,4368_3726,Clongriffin,8485,1,4368_7778195_1015005,4368_117 -4358_80684,229,4368_3727,Clongriffin,14923,1,4368_7778195_1015006,4368_118 -4358_80684,227,4368_3728,Clongriffin,1920,1,4368_7778195_9015003,4368_119 -4358_80684,227,4368_3729,Clongriffin,663,1,4368_7778195_1015012,4368_117 -4358_80680,227,4368_373,Sandyford B.D.,598,0,4368_7778195_1011004,4368_8 -4358_80684,228,4368_3730,Clongriffin,8507,1,4368_7778195_1015008,4368_117 -4358_80684,227,4368_3731,Clongriffin,745,1,4368_7778195_1015014,4368_117 -4358_80684,229,4368_3732,Clongriffin,14878,1,4368_7778195_1015008,4368_118 -4358_80684,227,4368_3733,Clongriffin,683,1,4368_7778195_1015016,4368_117 -4358_80684,228,4368_3734,Clongriffin,8469,1,4368_7778195_1015003,4368_118 -4358_80684,229,4368_3735,Clongriffin,14911,1,4368_7778195_1015003,4368_117 -4358_80684,227,4368_3736,Clongriffin,651,1,4368_7778195_1015001,4368_118 -4358_80684,228,4368_3737,Clongriffin,9625,1,4368_7778195_9015001,4368_117 -4358_80684,227,4368_3738,Clongriffin,733,1,4368_7778195_1015008,4368_117 -4358_80684,228,4368_3739,Clongriffin,8510,1,4368_7778195_1015009,4368_117 -4358_80680,228,4368_374,Sandyford B.D.,8560,0,4368_7778195_1011007,4368_7 -4358_80684,227,4368_3740,Clongriffin,564,1,4368_7778195_1015017,4368_118 -4358_80684,229,4368_3741,Clongriffin,14892,1,4368_7778195_1015004,4368_119 -4358_80684,227,4368_3742,Clongriffin,643,1,4368_7778195_1015002,4368_117 -4358_80684,228,4368_3743,Clongriffin,8475,1,4368_7778195_1015004,4368_117 -4358_80684,229,4368_3744,Clongriffin,15781,1,4368_7778195_9015001,4368_118 -4358_80684,227,4368_3745,Clongriffin,571,1,4368_7778195_1015009,4368_117 -4358_80684,227,4368_3746,Clongriffin,763,1,4368_7778195_1015018,4368_117 -4358_80684,228,4368_3747,Clongriffin,8503,1,4368_7778195_1015007,4368_118 -4358_80684,229,4368_3748,Clongriffin,14934,1,4368_7778195_1015007,4368_119 -4358_80684,227,4368_3749,Clongriffin,778,1,4368_7778195_1015004,4368_117 -4358_80680,229,4368_375,Sandyford B.D.,14850,0,4368_7778195_1011005,4368_7 -4358_80684,229,4368_3750,Clongriffin,14791,1,4368_7778195_1015010,4368_117 -4358_80684,228,4368_3751,Clongriffin,9658,1,4368_7778195_9015002,4368_118 -4358_80684,227,4368_3752,Clongriffin,795,1,4368_7778195_1015005,4368_117 -4358_80684,227,4368_3753,Clongriffin,1930,1,4368_7778195_9015001,4368_117 -4358_80684,228,4368_3754,Clongriffin,8500,1,4368_7778195_1015006,4368_118 -4358_80684,229,4368_3755,Clongriffin,15816,1,4368_7778195_9015004,4368_119 -4358_80684,227,4368_3756,Clongriffin,1995,1,4368_7778195_9015007,4368_117 -4358_80684,228,4368_3757,Clongriffin,9636,1,4368_7778195_9015003,4368_117 -4358_80684,229,4368_3758,Clongriffin,15811,1,4368_7778195_9015002,4368_118 -4358_80684,227,4368_3759,Clongriffin,2016,1,4368_7778195_9015008,4368_117 -4358_80680,227,4368_376,Sandyford B.D.,696,0,4368_7778195_1011006,4368_8 -4358_80684,229,4368_3760,Clongriffin,14810,1,4368_7778195_1015012,4368_117 -4358_80684,227,4368_3761,Clongriffin,711,1,4368_7778195_1015007,4368_118 -4358_80684,228,4368_3762,Clongriffin,8594,1,4368_7778195_1015001,4368_119 -4358_80684,227,4368_3763,Clongriffin,2040,1,4368_7778195_9015010,4368_117 -4358_80684,229,4368_3764,Clongriffin,14871,1,4368_7778195_1015013,4368_117 -4358_80684,228,4368_3765,Clongriffin,9665,1,4368_7778195_9015005,4368_118 -4358_80684,227,4368_3766,Clongriffin,603,1,4368_7778195_1015010,4368_117 -4358_80684,229,4368_3767,Clongriffin,15820,1,4368_7778195_9015005,4368_117 -4358_80684,228,4368_3768,Clongriffin,9663,1,4368_7778195_9015006,4368_118 -4358_80684,227,4368_3769,Clongriffin,1944,1,4368_7778195_9015011,4368_119 -4358_80680,228,4368_377,Sandyford B.D.,8600,0,4368_7778195_1011002,4368_7 -4358_80684,227,4368_3770,Clongriffin,787,1,4368_7778195_1015003,4368_117 -4358_80684,229,4368_3771,Clongriffin,14925,1,4368_7778195_1015006,4368_117 -4358_80684,228,4368_3772,Clongriffin,8523,1,4368_7778195_1015011,4368_118 -4358_80684,227,4368_3773,Clongriffin,1922,1,4368_7778195_9015003,4368_117 -4358_80684,228,4368_3774,Clongriffin,8459,1,4368_7778195_1015002,4368_117 -4358_80684,229,4368_3775,Clongriffin,14861,1,4368_7778195_1015009,4368_118 -4358_80684,227,4368_3776,Clongriffin,665,1,4368_7778195_1015012,4368_119 -4358_80684,227,4368_3777,Clongriffin,747,1,4368_7778195_1015014,4368_117 -4358_80684,228,4368_3778,Clongriffin,8487,1,4368_7778195_1015005,4368_117 -4358_80684,229,4368_3779,Clongriffin,14880,1,4368_7778195_1015008,4368_118 -4358_80680,227,4368_378,Sandyford B.D.,634,0,4368_7778195_1011011,4368_7 -4358_80684,227,4368_3780,Clongriffin,685,1,4368_7778195_1015016,4368_117 -4358_80684,228,4368_3781,Clongriffin,8509,1,4368_7778195_1015008,4368_117 -4358_80684,227,4368_3782,Clongriffin,653,1,4368_7778195_1015001,4368_118 -4358_80684,229,4368_3783,Clongriffin,14837,1,4368_7778195_1015011,4368_119 -4358_80684,227,4368_3784,Clongriffin,735,1,4368_7778195_1015008,4368_117 -4358_80684,229,4368_3785,Clongriffin,14942,1,4368_7778195_1015014,4368_117 -4358_80684,228,4368_3786,Clongriffin,9627,1,4368_7778195_9015001,4368_118 -4358_80684,227,4368_3787,Clongriffin,566,1,4368_7778195_1015017,4368_117 -4358_80684,228,4368_3788,Clongriffin,8512,1,4368_7778195_1015009,4368_117 -4358_80684,229,4368_3789,Clongriffin,14894,1,4368_7778195_1015004,4368_118 -4358_80680,229,4368_379,Sandyford B.D.,14801,0,4368_7778195_1011001,4368_8 -4358_80684,227,4368_3790,Clongriffin,645,1,4368_7778195_1015002,4368_119 -4358_80684,227,4368_3791,Clongriffin,753,1,4368_7778195_1015019,4368_117 -4358_80684,228,4368_3792,Clongriffin,8477,1,4368_7778195_1015004,4368_117 -4358_80684,229,4368_3793,Clongriffin,15783,1,4368_7778195_9015001,4368_118 -4358_80684,227,4368_3794,Clongriffin,573,1,4368_7778195_1015009,4368_117 -4358_80684,228,4368_3795,Clongriffin,8518,1,4368_7778195_1015010,4368_117 -4358_80684,227,4368_3796,Clongriffin,765,1,4368_7778195_1015018,4368_118 -4358_80684,229,4368_3797,Clongriffin,14936,1,4368_7778195_1015007,4368_119 -4358_80684,227,4368_3798,Clongriffin,780,1,4368_7778195_1015004,4368_117 -4358_80684,229,4368_3799,Clongriffin,14793,1,4368_7778195_1015010,4368_117 -4358_80760,228,4368_38,Shaw street,9376,0,4368_7778195_9001001,4368_1 -4358_80680,228,4368_380,Sandyford B.D.,8577,0,4368_7778195_1011006,4368_7 -4358_80684,228,4368_3800,Clongriffin,9660,1,4368_7778195_9015002,4368_118 -4358_80684,227,4368_3801,Clongriffin,1979,1,4368_7778195_9015012,4368_117 -4358_80684,228,4368_3802,Clongriffin,8505,1,4368_7778195_1015007,4368_117 -4358_80684,227,4368_3803,Clongriffin,797,1,4368_7778195_1015005,4368_118 -4358_80684,229,4368_3804,Clongriffin,15794,1,4368_7778195_9015006,4368_119 -4358_80684,227,4368_3805,Clongriffin,1932,1,4368_7778195_9015001,4368_117 -4358_80684,227,4368_3806,Clongriffin,6472,1,4368_7778195_7015691,4368_117 -4358_80684,228,4368_3807,Clongriffin,9643,1,4368_7778195_9015008,4368_118 -4358_80684,229,4368_3808,Clongriffin,15818,1,4368_7778195_9015004,4368_119 -4358_80684,227,4368_3809,Clongriffin,1997,1,4368_7778195_9015007,4368_117 -4358_80680,229,4368_381,Sandyford B.D.,14827,0,4368_7778195_1011002,4368_7 -4358_80684,229,4368_3810,Clongriffin,14812,1,4368_7778195_1015012,4368_117 -4358_80684,227,4368_3811,Clongriffin,713,1,4368_7778195_1015007,4368_118 -4358_80684,228,4368_3812,Clongriffin,8537,1,4368_7778195_1015014,4368_119 -4358_80684,227,4368_3813,Clongriffin,770,1,4368_7778195_1015021,4368_117 -4358_80684,229,4368_3814,Clongriffin,14873,1,4368_7778195_1015013,4368_117 -4358_80684,228,4368_3815,Clongriffin,9667,1,4368_7778195_9015005,4368_118 -4358_80684,227,4368_3816,Clongriffin,2018,1,4368_7778195_9015008,4368_117 -4358_80684,227,4368_3817,Clongriffin,2042,1,4368_7778195_9015010,4368_117 -4358_80684,229,4368_3818,Clongriffin,15822,1,4368_7778195_9015005,4368_118 -4358_80684,228,4368_3819,Clongriffin,9649,1,4368_7778195_9015007,4368_119 -4358_80680,227,4368_382,Sandyford B.D.,609,0,4368_7778195_1011003,4368_8 -4358_80684,227,4368_3820,Clongriffin,1946,1,4368_7778195_9015011,4368_117 -4358_80684,228,4368_3821,Clongriffin,8494,1,4368_7778195_1015012,4368_117 -4358_80684,229,4368_3822,Clongriffin,14927,1,4368_7778195_1015006,4368_118 -4358_80684,227,4368_3823,Clongriffin,789,1,4368_7778195_1015003,4368_117 -4358_80684,229,4368_3824,Clongriffin,14863,1,4368_7778195_1015009,4368_117 -4358_80684,228,4368_3825,Clongriffin,8525,1,4368_7778195_1015011,4368_118 -4358_80684,227,4368_3826,Clongriffin,1924,1,4368_7778195_9015003,4368_119 -4358_80684,227,4368_3827,Clongriffin,667,1,4368_7778195_1015012,4368_117 -4358_80684,228,4368_3828,Clongriffin,8461,1,4368_7778195_1015002,4368_117 -4358_80684,229,4368_3829,Clongriffin,14882,1,4368_7778195_1015008,4368_118 -4358_80680,228,4368_383,Sandyford B.D.,8622,0,4368_7778195_1011001,4368_7 -4358_80684,227,4368_3830,Clongriffin,749,1,4368_7778195_1015014,4368_117 -4358_80684,228,4368_3831,Clongriffin,8489,1,4368_7778195_1015005,4368_117 -4358_80684,227,4368_3832,Clongriffin,591,1,4368_7778195_1015022,4368_118 -4358_80684,229,4368_3833,Clongriffin,14839,1,4368_7778195_1015011,4368_119 -4358_80684,227,4368_3834,Clongriffin,1973,1,4368_7778195_9015013,4368_117 -4358_80684,229,4368_3835,Clongriffin,14944,1,4368_7778195_1015014,4368_117 -4358_80684,228,4368_3836,Clongriffin,9671,1,4368_7778195_9015009,4368_118 -4358_80684,227,4368_3837,Clongriffin,687,1,4368_7778195_1015016,4368_117 -4358_80684,228,4368_3838,Clongriffin,8533,1,4368_7778195_1015013,4368_117 -4358_80684,227,4368_3839,Clongriffin,655,1,4368_7778195_1015001,4368_118 -4358_80680,227,4368_384,Sandyford B.D.,678,0,4368_7778195_1011007,4368_7 -4358_80684,229,4368_3840,Clongriffin,14896,1,4368_7778195_1015004,4368_119 -4358_80684,228,4368_3841,Clongriffin,8514,1,4368_7778195_1015009,4368_117 -4358_80684,229,4368_3842,Clongriffin,15785,1,4368_7778195_9015001,4368_118 -4358_80684,227,4368_3843,Clongriffin,737,1,4368_7778195_1015008,4368_119 -4358_80684,228,4368_3844,Clongriffin,8479,1,4368_7778195_1015004,4368_117 -4358_80684,227,4368_3845,Clongriffin,755,1,4368_7778195_1015019,4368_118 -4358_80684,229,4368_3846,Clongriffin,14938,1,4368_7778195_1015007,4368_119 -4358_80684,229,4368_3847,Clongriffin,14795,1,4368_7778195_1015010,4368_117 -4358_80684,227,4368_3848,Clongriffin,767,1,4368_7778195_1015018,4368_118 -4358_80684,228,4368_3849,Clongriffin,9662,1,4368_7778195_9015002,4368_119 -4358_80680,229,4368_385,Sandyford B.D.,14870,0,4368_7778195_1011003,4368_8 -4358_80684,228,4368_3850,Clongriffin,8520,1,4368_7778195_1015010,4368_117 -4358_80684,227,4368_3851,Clongriffin,1981,1,4368_7778195_9015012,4368_118 -4358_80684,229,4368_3852,Clongriffin,15796,1,4368_7778195_9015006,4368_119 -4358_80684,229,4368_3853,Clongriffin,15790,1,4368_7778195_9015007,4368_117 -4358_80684,227,4368_3854,Clongriffin,2046,1,4368_7778195_9015015,4368_118 -4358_80684,228,4368_3855,Clongriffin,9686,1,4368_7778195_9015010,4368_119 -4358_80684,227,4368_3856,Clongriffin,1934,1,4368_7778195_9015001,4368_117 -4358_80684,229,4368_3857,Clongriffin,14875,1,4368_7778195_1015013,4368_118 -4358_80684,228,4368_3858,Clongriffin,9645,1,4368_7778195_9015008,4368_119 -4358_80684,227,4368_3859,Clongriffin,715,1,4368_7778195_1015007,4368_117 -4358_80680,228,4368_386,Sandyford B.D.,8609,0,4368_7778195_1011003,4368_7 -4358_80684,229,4368_3860,Clongriffin,15828,1,4368_7778195_9015008,4368_118 -4358_80684,228,4368_3861,Clongriffin,8546,1,4368_7778195_1015015,4368_119 -4358_80684,227,4368_3862,Clongriffin,772,1,4368_7778195_1015021,4368_117 -4358_80684,229,4368_3863,Clongriffin,14929,1,4368_7778195_1015006,4368_118 -4358_80684,228,4368_3864,Clongriffin,9669,1,4368_7778195_9015005,4368_119 -4358_80684,227,4368_3865,Clongriffin,2044,1,4368_7778195_9015010,4368_117 -4358_80684,228,4368_3866,Clongriffin,9651,1,4368_7778195_9015007,4368_118 -4358_80684,229,4368_3867,Clongriffin,14865,1,4368_7778195_1015009,4368_119 -4358_80684,229,4368_3868,Clongriffin,14841,1,4368_7778195_1015011,4368_117 -4358_80684,228,4368_3869,Clongriffin,8527,1,4368_7778195_1015011,4368_118 -4358_80680,229,4368_387,Sandyford B.D.,14817,0,4368_7778195_1011004,4368_7 -4358_80684,227,4368_3870,Clongriffin,669,1,4368_7778195_1015012,4368_119 -4358_80684,229,4368_3871,Clongriffin,14946,1,4368_7778195_1015014,4368_117 -4358_80684,228,4368_3872,Clongriffin,8463,1,4368_7778195_1015002,4368_118 -4358_80684,227,4368_3873,Clongriffin,593,1,4368_7778195_1015022,4368_119 -4358_80684,228,4368_3874,Clongriffin,8491,1,4368_7778195_1015005,4368_117 -4358_80684,227,4368_3875,Clongriffin,689,1,4368_7778195_1015016,4368_118 -4358_80684,229,4368_3876,Clongriffin,14898,1,4368_7778195_1015004,4368_119 -4358_80684,229,4368_3877,Clongriffin,15787,1,4368_7778195_9015001,4368_117 -4358_80684,227,4368_3878,Clongriffin,657,1,4368_7778195_1015001,4368_118 -4358_80684,228,4368_3879,Clongriffin,9673,1,4368_7778195_9015009,4368_119 -4358_80680,227,4368_388,Sandyford B.D.,625,0,4368_7778195_1011009,4368_8 -4358_80684,228,4368_3880,Clongriffin,8535,1,4368_7778195_1015013,4368_117 -4358_80684,229,4368_3881,Clongriffin,14940,1,4368_7778195_1015007,4368_118 -4358_80684,227,4368_3882,Clongriffin,739,1,4368_7778195_1015008,4368_119 -4358_80684,228,4368_3883,Clongriffin,8516,1,4368_7778195_1015009,4368_117 -4358_80684,229,4368_3884,Clongriffin,14797,1,4368_7778195_1015010,4368_118 -4358_80684,227,4368_3885,Clongriffin,757,1,4368_7778195_1015019,4368_119 -4358_80684,228,4368_3886,Clongriffin,8481,1,4368_7778195_1015004,4368_117 -4358_80684,227,4368_3887,Clongriffin,769,1,4368_7778195_1015018,4368_118 -4358_80684,229,4368_3888,Clongriffin,15798,1,4368_7778195_9015006,4368_119 -4358_80684,228,4368_3889,Clongriffin,8522,1,4368_7778195_1015010,4368_117 -4358_80680,228,4368_389,Sandyford B.D.,8573,0,4368_7778195_1011004,4368_7 -4358_80684,227,4368_3890,Clongriffin,2050,1,4368_7778195_9015016,4368_118 -4358_80684,229,4368_3891,Clongriffin,15792,1,4368_7778195_9015007,4368_119 -4358_80684,229,4368_3892,Clongriffin,14877,1,4368_7778195_1015013,4368_117 -4358_80684,227,4368_3893,Clongriffin,2048,1,4368_7778195_9015015,4368_118 -4358_80684,228,4368_3894,Clongriffin,9688,1,4368_7778195_9015010,4368_119 -4358_80684,228,4368_3895,Clongriffin,8539,1,4368_7778195_1015016,4368_117 -4358_80684,227,4368_3896,Clongriffin,2052,1,4368_7778195_9015017,4368_118 -4358_80684,229,4368_3897,Clongriffin,15830,1,4368_7778195_9015008,4368_119 -4358_80684,228,4368_3898,Clongriffin,9647,1,4368_7778195_9015008,4368_117 -4358_80684,227,4368_3899,Clongriffin,717,1,4368_7778195_1015007,4368_118 -4358_80760,227,4368_39,Shaw street,1635,0,4368_7778195_9001011,4368_1 -4358_80680,229,4368_390,Sandyford B.D.,14852,0,4368_7778195_1011005,4368_7 -4358_80684,229,4368_3900,Clongriffin,14931,1,4368_7778195_1015006,4368_119 -4358_80684,228,4368_3901,Clongriffin,8540,1,4368_7778195_1015017,4368_117 -4358_80684,229,4368_3902,Clongriffin,14818,1,4368_7778195_1015015,4368_118 -4358_80684,227,4368_3903,Clongriffin,588,1,4368_7778195_1015023,4368_119 -4358_80684,228,4368_3904,Clongriffin,8529,1,4368_7778195_1015018,4368_117 -4358_80684,227,4368_3905,Clongriffin,720,1,4368_7778195_1015024,4368_118 -4358_80684,229,4368_3906,Clongriffin,14913,1,4368_7778195_1015016,4368_119 -4358_80684,228,4368_3907,Clongriffin,8543,1,4368_7778195_1015020,4368_117 -4358_80684,227,4368_3908,Clongriffin,750,1,4368_7778195_1015026,4368_118 -4358_80684,229,4368_3909,Clongriffin,14919,1,4368_7778195_1015018,4368_119 -4358_80680,227,4368_391,Sandyford B.D.,724,0,4368_7778195_1011014,4368_8 -4358_80684,228,4368_3910,Clongriffin,9629,1,4368_7778195_9015011,4368_117 -4358_80684,227,4368_3911,Clongriffin,1986,1,4368_7778195_9015018,4368_118 -4358_80684,229,4368_3912,Clongriffin,15813,1,4368_7778195_9015009,4368_119 -4358_80684,229,4368_3913,Clongriffin,15804,1,4368_7778195_9015010,4368_117 -4358_80684,227,4368_3914,Clongriffin,1983,1,4368_7778195_9015019,4368_118 -4358_80684,228,4368_3915,Clongriffin,9683,1,4368_7778195_9015012,4368_119 -4358_80684,229,4368_3916,Clongriffin,14917,1,4368_7778195_1015017,4368_117 -4358_80684,227,4368_3917,Clongriffin,705,1,4368_7778195_1015025,4368_118 -4358_80684,228,4368_3918,Clongriffin,8586,1,4368_7778195_1015019,4368_119 -4358_80684,228,4368_3919,Clongriffin,8542,1,4368_7778195_1015017,4368_117 -4358_80680,228,4368_392,Sandyford B.D.,8553,0,4368_7778195_1011005,4368_7 -4358_80684,229,4368_3920,Clongriffin,14820,1,4368_7778195_1015015,4368_118 -4358_80684,227,4368_3921,Clongriffin,590,1,4368_7778195_1015023,4368_119 -4358_80684,228,4368_3922,Clongriffin,8531,1,4368_7778195_1015018,4368_117 -4358_80684,227,4368_3923,Clongriffin,722,1,4368_7778195_1015024,4368_118 -4358_80684,229,4368_3924,Clongriffin,14915,1,4368_7778195_1015016,4368_119 -4358_80684,228,4368_3925,Clongriffin,8545,1,4368_7778195_1015020,4368_117 -4358_80684,227,4368_3926,Clongriffin,752,1,4368_7778195_1015026,4368_118 -4358_80684,229,4368_3927,Clongriffin,14921,1,4368_7778195_1015018,4368_119 -4358_80764,227,4368_3928,Rossmore,6021,0,4368_7778195_5150003,4368_120 -4358_80764,228,4368_3929,Rossmore,12926,0,4368_7778195_5150002,4368_120 -4358_80680,227,4368_393,Sandyford B.D.,698,0,4368_7778195_1011006,4368_7 -4358_80764,227,4368_3930,Rossmore,5987,0,4368_7778195_5150006,4368_120 -4358_80764,227,4368_3931,Rossmore,5984,0,4368_7778195_5150001,4368_120 -4358_80764,228,4368_3932,Rossmore,12955,0,4368_7778195_5150003,4368_121 -4358_80764,227,4368_3933,Rossmore,6019,0,4368_7778195_5150002,4368_120 -4358_80764,228,4368_3934,Rossmore,12970,0,4368_7778195_5150001,4368_120 -4358_80764,227,4368_3935,Rossmore,6051,0,4368_7778195_5150004,4368_120 -4358_80764,227,4368_3936,Rossmore,6073,0,4368_7778195_5150009,4368_120 -4358_80764,228,4368_3937,Rossmore,12928,0,4368_7778195_5150002,4368_120 -4358_80764,227,4368_3938,Rossmore,6083,0,4368_7778195_5150005,4368_120 -4358_80764,229,4368_3939,Rossmore,18386,0,4368_7778195_5150003,4368_120 -4358_80680,229,4368_394,Sandyford B.D.,14803,0,4368_7778195_1011001,4368_8 -4358_80764,227,4368_3940,Rossmore,6023,0,4368_7778195_5150003,4368_120 -4358_80764,228,4368_3941,Rossmore,12957,0,4368_7778195_5150003,4368_120 -4358_80764,227,4368_3942,Rossmore,5989,0,4368_7778195_5150006,4368_120 -4358_80764,229,4368_3943,Rossmore,18397,0,4368_7778195_5150001,4368_120 -4358_80764,227,4368_3944,Rossmore,6033,0,4368_7778195_5150007,4368_120 -4358_80764,228,4368_3945,Rossmore,12972,0,4368_7778195_5150001,4368_120 -4358_80764,227,4368_3946,Rossmore,5986,0,4368_7778195_5150001,4368_120 -4358_80764,229,4368_3947,Rossmore,18402,0,4368_7778195_5150002,4368_121 -4358_80764,228,4368_3948,Rossmore,12930,0,4368_7778195_5150002,4368_120 -4358_80764,227,4368_3949,Rossmore,6038,0,4368_7778195_5150008,4368_120 -4358_80680,228,4368_395,Sandyford B.D.,8562,0,4368_7778195_1011007,4368_7 -4358_80764,229,4368_3950,Rossmore,18388,0,4368_7778195_5150003,4368_120 -4358_80764,227,4368_3951,Rossmore,6053,0,4368_7778195_5150004,4368_120 -4358_80764,228,4368_3952,Rossmore,12959,0,4368_7778195_5150003,4368_120 -4358_80764,227,4368_3953,Rossmore,6075,0,4368_7778195_5150009,4368_120 -4358_80764,229,4368_3954,Rossmore,18399,0,4368_7778195_5150001,4368_121 -4358_80764,228,4368_3955,Rossmore,12987,0,4368_7778195_5150004,4368_120 -4358_80764,227,4368_3956,Rossmore,6025,0,4368_7778195_5150003,4368_120 -4358_80764,229,4368_3957,Rossmore,18404,0,4368_7778195_5150002,4368_120 -4358_80764,227,4368_3958,Rossmore,6035,0,4368_7778195_5150007,4368_120 -4358_80764,228,4368_3959,Rossmore,12932,0,4368_7778195_5150002,4368_120 -4358_80680,227,4368_396,Sandyford B.D.,636,0,4368_7778195_1011011,4368_7 -4358_80764,227,4368_3960,Rossmore,6040,0,4368_7778195_5150008,4368_120 -4358_80764,229,4368_3961,Rossmore,18390,0,4368_7778195_5150003,4368_121 -4358_80764,228,4368_3962,Rossmore,12941,0,4368_7778195_5150005,4368_120 -4358_80764,227,4368_3963,Rossmore,6055,0,4368_7778195_5150004,4368_120 -4358_80764,228,4368_3964,Rossmore,12961,0,4368_7778195_5150003,4368_120 -4358_80764,229,4368_3965,Rossmore,18421,0,4368_7778195_5150004,4368_120 -4358_80764,227,4368_3966,Rossmore,6077,0,4368_7778195_5150009,4368_120 -4358_80764,228,4368_3967,Rossmore,12974,0,4368_7778195_5150007,4368_120 -4358_80764,229,4368_3968,Rossmore,18406,0,4368_7778195_5150002,4368_120 -4358_80764,227,4368_3969,Rossmore,5998,0,4368_7778195_5150011,4368_121 -4358_80680,229,4368_397,Sandyford B.D.,14829,0,4368_7778195_1011002,4368_8 -4358_80764,228,4368_3970,Rossmore,12989,0,4368_7778195_5150004,4368_120 -4358_80764,227,4368_3971,Rossmore,6027,0,4368_7778195_5150003,4368_120 -4358_80764,228,4368_3972,Rossmore,13003,0,4368_7778195_5150006,4368_120 -4358_80764,229,4368_3973,Rossmore,18392,0,4368_7778195_5150003,4368_120 -4358_80764,227,4368_3974,Rossmore,6011,0,4368_7778195_5150010,4368_120 -4358_80764,228,4368_3975,Rossmore,12934,0,4368_7778195_5150002,4368_120 -4358_80764,227,4368_3976,Rossmore,6042,0,4368_7778195_5150008,4368_120 -4358_80764,229,4368_3977,Rossmore,18423,0,4368_7778195_5150004,4368_121 -4358_80764,228,4368_3978,Rossmore,12943,0,4368_7778195_5150005,4368_120 -4358_80764,227,4368_3979,Rossmore,6057,0,4368_7778195_5150004,4368_120 -4358_80680,228,4368_398,Sandyford B.D.,8602,0,4368_7778195_1011002,4368_7 -4358_80764,228,4368_3980,Rossmore,12963,0,4368_7778195_5150003,4368_120 -4358_80764,229,4368_3981,Rossmore,18408,0,4368_7778195_5150002,4368_120 -4358_80764,227,4368_3982,Rossmore,6071,0,4368_7778195_5150012,4368_120 -4358_80764,228,4368_3983,Rossmore,12976,0,4368_7778195_5150007,4368_120 -4358_80764,229,4368_3984,Rossmore,18394,0,4368_7778195_5150003,4368_120 -4358_80764,227,4368_3985,Rossmore,6079,0,4368_7778195_5150009,4368_121 -4358_80764,228,4368_3986,Rossmore,12991,0,4368_7778195_5150004,4368_120 -4358_80764,227,4368_3987,Rossmore,6000,0,4368_7778195_5150011,4368_120 -4358_80764,228,4368_3988,Rossmore,13005,0,4368_7778195_5150006,4368_120 -4358_80764,229,4368_3989,Rossmore,18425,0,4368_7778195_5150004,4368_120 -4358_80680,229,4368_399,Sandyford B.D.,14901,0,4368_7778195_1011006,4368_7 -4358_80764,227,4368_3990,Rossmore,6029,0,4368_7778195_5150003,4368_120 -4358_80764,228,4368_3991,Rossmore,12936,0,4368_7778195_5150002,4368_120 -4358_80764,227,4368_3992,Rossmore,6013,0,4368_7778195_5150010,4368_120 -4358_80764,229,4368_3993,Rossmore,18437,0,4368_7778195_5150005,4368_121 -4358_80764,228,4368_3994,Rossmore,12945,0,4368_7778195_5150005,4368_120 -4358_80764,227,4368_3995,Rossmore,6044,0,4368_7778195_5150008,4368_120 -4358_80764,228,4368_3996,Rossmore,12965,0,4368_7778195_5150003,4368_120 -4358_80764,229,4368_3997,Rossmore,18410,0,4368_7778195_5150006,4368_120 -4358_80764,227,4368_3998,Rossmore,6062,0,4368_7778195_5150013,4368_120 -4358_80764,228,4368_3999,Rossmore,12978,0,4368_7778195_5150007,4368_120 -4358_80760,228,4368_4,Shaw street,9310,0,4368_7778195_9001002,4368_1 -4358_80760,229,4368_40,Shaw street,15509,0,4368_7778195_9001003,4368_1 -4358_80680,227,4368_400,Sandyford B.D.,611,0,4368_7778195_1011003,4368_8 -4358_80764,227,4368_4000,Rossmore,6059,0,4368_7778195_5150004,4368_120 -4358_80764,229,4368_4001,Rossmore,18427,0,4368_7778195_5150004,4368_120 -4358_80764,228,4368_4002,Rossmore,12993,0,4368_7778195_5150004,4368_120 -4358_80764,227,4368_4003,Rossmore,6016,0,4368_7778195_5150014,4368_120 -4358_80764,228,4368_4004,Rossmore,13007,0,4368_7778195_5150006,4368_120 -4358_80764,227,4368_4005,Rossmore,6081,0,4368_7778195_5150009,4368_121 -4358_80764,229,4368_4006,Rossmore,18439,0,4368_7778195_5150005,4368_120 -4358_80764,227,4368_4007,Rossmore,6002,0,4368_7778195_5150011,4368_120 -4358_80764,228,4368_4008,Rossmore,12938,0,4368_7778195_5150002,4368_120 -4358_80764,227,4368_4009,Rossmore,6031,0,4368_7778195_5150003,4368_120 -4358_80680,228,4368_401,Sandyford B.D.,8579,0,4368_7778195_1011006,4368_7 -4358_80764,229,4368_4010,Rossmore,18412,0,4368_7778195_5150006,4368_120 -4358_80764,228,4368_4011,Rossmore,12947,0,4368_7778195_5150005,4368_120 -4358_80764,227,4368_4012,Rossmore,5991,0,4368_7778195_5150015,4368_120 -4358_80764,227,4368_4013,Rossmore,6015,0,4368_7778195_5150010,4368_120 -4358_80764,228,4368_4014,Rossmore,12967,0,4368_7778195_5150003,4368_121 -4358_80764,229,4368_4015,Rossmore,18429,0,4368_7778195_5150004,4368_120 -4358_80764,227,4368_4016,Rossmore,6046,0,4368_7778195_5150008,4368_120 -4358_80764,228,4368_4017,Rossmore,12980,0,4368_7778195_5150007,4368_120 -4358_80764,229,4368_4018,Rossmore,18441,0,4368_7778195_5150005,4368_120 -4358_80764,227,4368_4019,Rossmore,6064,0,4368_7778195_5150013,4368_121 -4358_80680,227,4368_402,Sandyford B.D.,581,0,4368_7778195_1011015,4368_7 -4358_80764,228,4368_4020,Rossmore,12995,0,4368_7778195_5150004,4368_120 -4358_80764,227,4368_4021,Rossmore,6061,0,4368_7778195_5150004,4368_120 -4358_80764,228,4368_4022,Rossmore,12940,0,4368_7778195_5150002,4368_120 -4358_80764,229,4368_4023,Rossmore,18414,0,4368_7778195_5150006,4368_121 -4358_80764,227,4368_4024,Rossmore,6004,0,4368_7778195_5150011,4368_120 -4358_80764,228,4368_4025,Rossmore,12949,0,4368_7778195_5150005,4368_120 -4358_80764,229,4368_4026,Rossmore,18431,0,4368_7778195_5150004,4368_121 -4358_80764,227,4368_4027,Rossmore,5993,0,4368_7778195_5150015,4368_120 -4358_80764,227,4368_4028,Rossmore,6048,0,4368_7778195_5150008,4368_120 -4358_80764,228,4368_4029,Rossmore,12982,0,4368_7778195_5150007,4368_121 -4358_80680,229,4368_403,Sandyford B.D.,14884,0,4368_7778195_1011007,4368_7 -4358_80764,229,4368_4030,Rossmore,18443,0,4368_7778195_5150005,4368_122 -4358_80764,228,4368_4031,Rossmore,12997,0,4368_7778195_5150004,4368_120 -4358_80764,229,4368_4032,Rossmore,18416,0,4368_7778195_5150006,4368_121 -4358_80764,227,4368_4033,Rossmore,6066,0,4368_7778195_5150013,4368_122 -4358_80764,228,4368_4034,Rossmore,12951,0,4368_7778195_5150005,4368_120 -4358_80764,229,4368_4035,Rossmore,18433,0,4368_7778195_5150004,4368_121 -4358_80764,227,4368_4036,Rossmore,6006,0,4368_7778195_5150011,4368_122 -4358_80764,227,4368_4037,Rossmore,5995,0,4368_7778195_5150015,4368_120 -4358_80764,228,4368_4038,Rossmore,12984,0,4368_7778195_5150007,4368_121 -4358_80764,229,4368_4039,Rossmore,18445,0,4368_7778195_5150005,4368_122 -4358_80680,227,4368_404,Sandyford B.D.,575,0,4368_7778195_1011016,4368_7 -4358_80764,228,4368_4040,Rossmore,12999,0,4368_7778195_5150004,4368_120 -4358_80764,229,4368_4041,Rossmore,18418,0,4368_7778195_5150006,4368_121 -4358_80764,227,4368_4042,Rossmore,6068,0,4368_7778195_5150013,4368_122 -4358_80764,228,4368_4043,Rossmore,12953,0,4368_7778195_5150005,4368_120 -4358_80764,229,4368_4044,Rossmore,18435,0,4368_7778195_5150004,4368_121 -4358_80764,227,4368_4045,Rossmore,6008,0,4368_7778195_5150011,4368_122 -4358_80764,227,4368_4046,Rossmore,5997,0,4368_7778195_5150015,4368_120 -4358_80764,228,4368_4047,Rossmore,12986,0,4368_7778195_5150007,4368_121 -4358_80764,229,4368_4048,Rossmore,18447,0,4368_7778195_5150005,4368_122 -4358_80764,228,4368_4049,Rossmore,13001,0,4368_7778195_5150004,4368_120 -4358_80680,228,4368_405,Sandyford B.D.,8624,0,4368_7778195_1011001,4368_7 -4358_80764,229,4368_4050,Rossmore,18420,0,4368_7778195_5150006,4368_121 -4358_80764,227,4368_4051,Rossmore,6070,0,4368_7778195_5150013,4368_122 -4358_80764,227,4368_4052,Hawkins Street,5983,1,4368_7778195_5150001,4368_123 -4358_80764,227,4368_4053,Hawkins Street,6018,1,4368_7778195_5150002,4368_123 -4358_80764,228,4368_4054,Hawkins Street,12969,1,4368_7778195_5150001,4368_123 -4358_80764,227,4368_4055,Hawkins Street,6050,1,4368_7778195_5150004,4368_125 -4358_80764,227,4368_4056,Hawkins Street,6082,1,4368_7778195_5150005,4368_123 -4358_80764,227,4368_4057,Hawkins Street,6022,1,4368_7778195_5150003,4368_124 -4358_80764,228,4368_4058,Hawkins Street,12927,1,4368_7778195_5150002,4368_123 -4358_80764,227,4368_4059,Hawkins Street,5988,1,4368_7778195_5150006,4368_124 -4358_80680,229,4368_406,Sandyford B.D.,14854,0,4368_7778195_1011005,4368_7 -4358_80764,227,4368_4060,Hawkins Street,6032,1,4368_7778195_5150007,4368_124 -4358_80764,228,4368_4061,Hawkins Street,12956,1,4368_7778195_5150003,4368_123 -4358_80764,227,4368_4062,Hawkins Street,5985,1,4368_7778195_5150001,4368_124 -4358_80764,229,4368_4063,Hawkins Street,18396,1,4368_7778195_5150001,4368_123 -4358_80764,227,4368_4064,Hawkins Street,6020,1,4368_7778195_5150002,4368_124 -4358_80764,228,4368_4065,Hawkins Street,12971,1,4368_7778195_5150001,4368_123 -4358_80764,227,4368_4066,Hawkins Street,6037,1,4368_7778195_5150008,4368_124 -4358_80764,229,4368_4067,Hawkins Street,18401,1,4368_7778195_5150002,4368_123 -4358_80764,228,4368_4068,Hawkins Street,12929,1,4368_7778195_5150002,4368_123 -4358_80764,227,4368_4069,Hawkins Street,6052,1,4368_7778195_5150004,4368_124 -4358_80680,227,4368_407,Sandyford B.D.,672,0,4368_7778195_1011017,4368_8 -4358_80764,229,4368_4070,Hawkins Street,18387,1,4368_7778195_5150003,4368_123 -4358_80764,227,4368_4071,Hawkins Street,6074,1,4368_7778195_5150009,4368_125 -4358_80764,227,4368_4072,Hawkins Street,6084,1,4368_7778195_5150005,4368_123 -4358_80764,228,4368_4073,Hawkins Street,12958,1,4368_7778195_5150003,4368_125 -4358_80764,227,4368_4074,Hawkins Street,6024,1,4368_7778195_5150003,4368_123 -4358_80764,229,4368_4075,Hawkins Street,18398,1,4368_7778195_5150001,4368_125 -4358_80764,227,4368_4076,Hawkins Street,5990,1,4368_7778195_5150006,4368_123 -4358_80764,228,4368_4077,Hawkins Street,12973,1,4368_7778195_5150001,4368_125 -4358_80764,229,4368_4078,Hawkins Street,18403,1,4368_7778195_5150002,4368_123 -4358_80764,227,4368_4079,Hawkins Street,6034,1,4368_7778195_5150007,4368_123 -4358_80680,228,4368_408,Sandyford B.D.,8611,0,4368_7778195_1011003,4368_7 -4358_80764,228,4368_4080,Hawkins Street,12931,1,4368_7778195_5150002,4368_123 -4358_80764,227,4368_4081,Hawkins Street,6039,1,4368_7778195_5150008,4368_123 -4358_80764,229,4368_4082,Hawkins Street,18389,1,4368_7778195_5150003,4368_123 -4358_80764,228,4368_4083,Hawkins Street,12960,1,4368_7778195_5150003,4368_123 -4358_80764,227,4368_4084,Hawkins Street,6054,1,4368_7778195_5150004,4368_125 -4358_80764,229,4368_4085,Hawkins Street,18400,1,4368_7778195_5150001,4368_123 -4358_80764,227,4368_4086,Hawkins Street,6076,1,4368_7778195_5150009,4368_123 -4358_80764,228,4368_4087,Hawkins Street,12988,1,4368_7778195_5150004,4368_123 -4358_80764,227,4368_4088,Hawkins Street,6026,1,4368_7778195_5150003,4368_123 -4358_80764,229,4368_4089,Hawkins Street,18405,1,4368_7778195_5150002,4368_123 -4358_80680,227,4368_409,Sandyford B.D.,627,0,4368_7778195_1011009,4368_7 -4358_80764,227,4368_4090,Hawkins Street,6036,1,4368_7778195_5150007,4368_123 -4358_80764,228,4368_4091,Hawkins Street,13002,1,4368_7778195_5150006,4368_125 -4358_80764,229,4368_4092,Hawkins Street,18391,1,4368_7778195_5150003,4368_123 -4358_80764,228,4368_4093,Hawkins Street,12933,1,4368_7778195_5150002,4368_123 -4358_80764,227,4368_4094,Hawkins Street,6010,1,4368_7778195_5150010,4368_125 -4358_80764,227,4368_4095,Hawkins Street,6041,1,4368_7778195_5150008,4368_123 -4358_80764,228,4368_4096,Hawkins Street,12942,1,4368_7778195_5150005,4368_125 -4358_80764,229,4368_4097,Hawkins Street,18422,1,4368_7778195_5150004,4368_123 -4358_80764,228,4368_4098,Hawkins Street,12962,1,4368_7778195_5150003,4368_123 -4358_80764,227,4368_4099,Hawkins Street,6056,1,4368_7778195_5150004,4368_125 -4358_80760,227,4368_41,Shaw street,3139,0,4368_7778195_9001004,4368_1 -4358_80680,229,4368_410,Sandyford B.D.,14805,0,4368_7778195_1011001,4368_7 -4358_80764,229,4368_4100,Hawkins Street,18407,1,4368_7778195_5150002,4368_123 -4358_80764,228,4368_4101,Hawkins Street,12975,1,4368_7778195_5150007,4368_123 -4358_80764,227,4368_4102,Hawkins Street,6078,1,4368_7778195_5150009,4368_125 -4358_80764,228,4368_4103,Hawkins Street,12990,1,4368_7778195_5150004,4368_123 -4358_80764,227,4368_4104,Hawkins Street,5999,1,4368_7778195_5150011,4368_125 -4358_80764,229,4368_4105,Hawkins Street,18393,1,4368_7778195_5150003,4368_123 -4358_80764,227,4368_4106,Hawkins Street,6028,1,4368_7778195_5150003,4368_123 -4358_80764,228,4368_4107,Hawkins Street,13004,1,4368_7778195_5150006,4368_125 -4358_80764,229,4368_4108,Hawkins Street,18424,1,4368_7778195_5150004,4368_123 -4358_80764,228,4368_4109,Hawkins Street,12935,1,4368_7778195_5150002,4368_123 -4358_80680,227,4368_411,Sandyford B.D.,719,0,4368_7778195_1011018,4368_7 -4358_80764,227,4368_4110,Hawkins Street,6012,1,4368_7778195_5150010,4368_125 -4358_80764,227,4368_4111,Hawkins Street,6043,1,4368_7778195_5150008,4368_123 -4358_80764,228,4368_4112,Hawkins Street,12944,1,4368_7778195_5150005,4368_125 -4358_80764,229,4368_4113,Hawkins Street,18409,1,4368_7778195_5150002,4368_123 -4358_80764,228,4368_4114,Hawkins Street,12964,1,4368_7778195_5150003,4368_123 -4358_80764,227,4368_4115,Hawkins Street,6058,1,4368_7778195_5150004,4368_125 -4358_80764,229,4368_4116,Hawkins Street,18395,1,4368_7778195_5150003,4368_123 -4358_80764,227,4368_4117,Hawkins Street,6072,1,4368_7778195_5150012,4368_123 -4358_80764,228,4368_4118,Hawkins Street,12977,1,4368_7778195_5150007,4368_125 -4358_80764,228,4368_4119,Hawkins Street,12992,1,4368_7778195_5150004,4368_123 -4358_80680,228,4368_412,Sandyford B.D.,8575,0,4368_7778195_1011004,4368_7 -4358_80764,227,4368_4120,Hawkins Street,6080,1,4368_7778195_5150009,4368_125 -4358_80764,229,4368_4121,Hawkins Street,18426,1,4368_7778195_5150004,4368_123 -4358_80764,228,4368_4122,Hawkins Street,13006,1,4368_7778195_5150006,4368_123 -4358_80764,227,4368_4123,Hawkins Street,6001,1,4368_7778195_5150011,4368_125 -4358_80764,229,4368_4124,Hawkins Street,18438,1,4368_7778195_5150005,4368_123 -4358_80764,227,4368_4125,Hawkins Street,6030,1,4368_7778195_5150003,4368_123 -4358_80764,228,4368_4126,Hawkins Street,12937,1,4368_7778195_5150002,4368_125 -4358_80764,227,4368_4127,Hawkins Street,6014,1,4368_7778195_5150010,4368_123 -4358_80764,228,4368_4128,Hawkins Street,12946,1,4368_7778195_5150005,4368_125 -4358_80764,229,4368_4129,Hawkins Street,18411,1,4368_7778195_5150006,4368_123 -4358_80680,227,4368_413,Sandyford B.D.,617,0,4368_7778195_1011019,4368_7 -4358_80764,227,4368_4130,Hawkins Street,6045,1,4368_7778195_5150008,4368_123 -4358_80764,228,4368_4131,Hawkins Street,12966,1,4368_7778195_5150003,4368_125 -4358_80764,229,4368_4132,Hawkins Street,18428,1,4368_7778195_5150004,4368_123 -4358_80764,228,4368_4133,Hawkins Street,12979,1,4368_7778195_5150007,4368_123 -4358_80764,227,4368_4134,Hawkins Street,6063,1,4368_7778195_5150013,4368_125 -4358_80764,228,4368_4135,Hawkins Street,12994,1,4368_7778195_5150004,4368_123 -4358_80764,227,4368_4136,Hawkins Street,6060,1,4368_7778195_5150004,4368_125 -4358_80764,229,4368_4137,Hawkins Street,18440,1,4368_7778195_5150005,4368_123 -4358_80764,228,4368_4138,Hawkins Street,13008,1,4368_7778195_5150006,4368_123 -4358_80764,227,4368_4139,Hawkins Street,6017,1,4368_7778195_5150014,4368_125 -4358_80680,229,4368_414,Sandyford B.D.,14831,0,4368_7778195_1011002,4368_8 -4358_80764,229,4368_4140,Hawkins Street,18413,1,4368_7778195_5150006,4368_123 -4358_80764,228,4368_4141,Hawkins Street,12939,1,4368_7778195_5150002,4368_123 -4358_80764,227,4368_4142,Hawkins Street,6003,1,4368_7778195_5150011,4368_123 -4358_80764,228,4368_4143,Hawkins Street,12948,1,4368_7778195_5150005,4368_123 -4358_80764,229,4368_4144,Hawkins Street,18430,1,4368_7778195_5150004,4368_123 -4358_80764,227,4368_4145,Hawkins Street,5992,1,4368_7778195_5150015,4368_123 -4358_80764,228,4368_4146,Hawkins Street,12968,1,4368_7778195_5150003,4368_123 -4358_80764,227,4368_4147,Hawkins Street,6047,1,4368_7778195_5150008,4368_123 -4358_80764,229,4368_4148,Hawkins Street,18442,1,4368_7778195_5150005,4368_125 -4358_80764,228,4368_4149,Hawkins Street,12981,1,4368_7778195_5150007,4368_123 -4358_80680,228,4368_415,Sandyford B.D.,8555,0,4368_7778195_1011005,4368_7 -4358_80764,227,4368_4150,Hawkins Street,6065,1,4368_7778195_5150013,4368_123 -4358_80764,228,4368_4151,Hawkins Street,12996,1,4368_7778195_5150004,4368_123 -4358_80764,229,4368_4152,Hawkins Street,18415,1,4368_7778195_5150006,4368_125 -4358_80764,227,4368_4153,Hawkins Street,6005,1,4368_7778195_5150011,4368_123 -4358_80764,228,4368_4154,Hawkins Street,12950,1,4368_7778195_5150005,4368_123 -4358_80764,229,4368_4155,Hawkins Street,18432,1,4368_7778195_5150004,4368_125 -4358_80764,227,4368_4156,Hawkins Street,5994,1,4368_7778195_5150015,4368_123 -4358_80764,228,4368_4157,Hawkins Street,12983,1,4368_7778195_5150007,4368_123 -4358_80764,229,4368_4158,Hawkins Street,18444,1,4368_7778195_5150005,4368_125 -4358_80764,227,4368_4159,Hawkins Street,6049,1,4368_7778195_5150008,4368_123 -4358_80680,227,4368_416,Sandyford B.D.,726,0,4368_7778195_1011014,4368_7 -4358_80764,228,4368_4160,Hawkins Street,12998,1,4368_7778195_5150004,4368_123 -4358_80764,229,4368_4161,Hawkins Street,18417,1,4368_7778195_5150006,4368_125 -4358_80764,227,4368_4162,Hawkins Street,6067,1,4368_7778195_5150013,4368_123 -4358_80764,228,4368_4163,Hawkins Street,12952,1,4368_7778195_5150005,4368_123 -4358_80764,229,4368_4164,Hawkins Street,18434,1,4368_7778195_5150004,4368_125 -4358_80764,227,4368_4165,Hawkins Street,6007,1,4368_7778195_5150011,4368_123 -4358_80764,228,4368_4166,Hawkins Street,12985,1,4368_7778195_5150007,4368_123 -4358_80764,229,4368_4167,Hawkins Street,18446,1,4368_7778195_5150005,4368_125 -4358_80764,227,4368_4168,Hawkins Street,5996,1,4368_7778195_5150015,4368_123 -4358_80764,228,4368_4169,Hawkins Street,13000,1,4368_7778195_5150004,4368_123 -4358_80680,229,4368_417,Sandyford B.D.,14903,0,4368_7778195_1011006,4368_7 -4358_80764,229,4368_4170,Hawkins Street,18419,1,4368_7778195_5150006,4368_125 -4358_80764,227,4368_4171,Hawkins Street,6069,1,4368_7778195_5150013,4368_123 -4358_80764,228,4368_4172,Hawkins Street,12954,1,4368_7778195_5150005,4368_123 -4358_80764,229,4368_4173,Hawkins Street,18436,1,4368_7778195_5150004,4368_125 -4358_80764,227,4368_4174,Hawkins Street,6009,1,4368_7778195_5150011,4368_126 -4358_80765,227,4368_4175,Foxborough,2020,0,4368_7778195_9151004,4368_127 -4358_80765,227,4368_4176,Foxborough,2024,0,4368_7778195_9151006,4368_127 -4358_80765,227,4368_4177,Foxborough,1975,0,4368_7778195_9151001,4368_127 -4358_80765,228,4368_4178,Foxborough,9675,0,4368_7778195_9151004,4368_128 -4358_80765,227,4368_4179,Foxborough,2054,0,4368_7778195_9151002,4368_127 -4358_80680,227,4368_418,Sandyford B.D.,700,0,4368_7778195_1011006,4368_7 -4358_80765,228,4368_4180,Foxborough,9702,0,4368_7778195_9151001,4368_128 -4358_80765,228,4368_4181,Foxborough,13380,0,4368_7778195_9151002,4368_127 -4358_80765,227,4368_4182,Foxborough,1961,0,4368_7778195_9151003,4368_128 -4358_80765,227,4368_4183,Foxborough,2003,0,4368_7778195_9151005,4368_127 -4358_80765,228,4368_4184,Foxborough,13390,0,4368_7778195_9151003,4368_127 -4358_80765,227,4368_4185,Foxborough,2067,0,4368_7778195_9151007,4368_127 -4358_80765,228,4368_4186,Foxborough,9731,0,4368_7778195_9151008,4368_127 -4358_80765,229,4368_4187,Foxborough,15832,0,4368_7778195_9151001,4368_128 -4358_80765,227,4368_4188,Foxborough,1999,0,4368_7778195_9151011,4368_127 -4358_80765,228,4368_4189,Foxborough,9690,0,4368_7778195_9151005,4368_127 -4358_80680,228,4368_419,Sandyford B.D.,8564,0,4368_7778195_1011007,4368_7 -4358_80765,229,4368_4190,Foxborough,15845,0,4368_7778195_9151002,4368_127 -4358_80765,227,4368_4191,Foxborough,2023,0,4368_7778195_9151008,4368_128 -4358_80765,228,4368_4192,Foxborough,9739,0,4368_7778195_9151006,4368_127 -4358_80765,227,4368_4193,Foxborough,1950,0,4368_7778195_9151009,4368_127 -4358_80765,229,4368_4194,Foxborough,15857,0,4368_7778195_9151003,4368_127 -4358_80765,228,4368_4195,Foxborough,9677,0,4368_7778195_9151004,4368_128 -4358_80765,227,4368_4196,Foxborough,1936,0,4368_7778195_9151010,4368_127 -4358_80765,228,4368_4197,Foxborough,9715,0,4368_7778195_9151007,4368_127 -4358_80765,227,4368_4198,Foxborough,2026,0,4368_7778195_9151006,4368_127 -4358_80765,229,4368_4199,Foxborough,15869,0,4368_7778195_9151004,4368_128 -4358_80760,228,4368_42,Shaw street,9506,0,4368_7778195_9001005,4368_1 -4358_80680,227,4368_420,Sandyford B.D.,638,0,4368_7778195_1011011,4368_7 -4358_80765,228,4368_4200,Foxborough,9704,0,4368_7778195_9151001,4368_127 -4358_80765,227,4368_4201,Foxborough,2056,0,4368_7778195_9151002,4368_127 -4358_80765,228,4368_4202,Foxborough,13382,0,4368_7778195_9151002,4368_127 -4358_80765,229,4368_4203,Foxborough,15834,0,4368_7778195_9151001,4368_128 -4358_80765,227,4368_4204,Foxborough,1963,0,4368_7778195_9151003,4368_127 -4358_80765,228,4368_4205,Foxborough,13392,0,4368_7778195_9151003,4368_127 -4358_80765,227,4368_4206,Foxborough,2005,0,4368_7778195_9151005,4368_127 -4358_80765,229,4368_4207,Foxborough,15882,0,4368_7778195_9151006,4368_128 -4358_80765,228,4368_4208,Foxborough,9733,0,4368_7778195_9151008,4368_127 -4358_80765,227,4368_4209,Foxborough,2069,0,4368_7778195_9151007,4368_127 -4358_80680,229,4368_421,Sandyford B.D.,14886,0,4368_7778195_1011007,4368_8 -4358_80765,229,4368_4210,Foxborough,15847,0,4368_7778195_9151002,4368_127 -4358_80765,228,4368_4211,Foxborough,9692,0,4368_7778195_9151005,4368_128 -4358_80765,227,4368_4212,Foxborough,2001,0,4368_7778195_9151011,4368_127 -4358_80765,228,4368_4213,Foxborough,9741,0,4368_7778195_9151006,4368_127 -4358_80765,227,4368_4214,Foxborough,1952,0,4368_7778195_9151009,4368_127 -4358_80765,229,4368_4215,Foxborough,15859,0,4368_7778195_9151003,4368_128 -4358_80765,228,4368_4216,Foxborough,9679,0,4368_7778195_9151004,4368_127 -4358_80765,227,4368_4217,Foxborough,1938,0,4368_7778195_9151010,4368_127 -4358_80765,229,4368_4218,Foxborough,15880,0,4368_7778195_9151005,4368_127 -4358_80765,228,4368_4219,Foxborough,9717,0,4368_7778195_9151007,4368_128 -4358_80680,228,4368_422,Sandyford B.D.,8581,0,4368_7778195_1011006,4368_7 -4358_80765,227,4368_4220,Foxborough,2028,0,4368_7778195_9151006,4368_127 -4358_80765,228,4368_4221,Foxborough,9706,0,4368_7778195_9151001,4368_127 -4358_80765,229,4368_4222,Foxborough,15871,0,4368_7778195_9151004,4368_127 -4358_80765,227,4368_4223,Foxborough,2058,0,4368_7778195_9151002,4368_128 -4358_80765,228,4368_4224,Foxborough,13384,0,4368_7778195_9151002,4368_127 -4358_80765,227,4368_4225,Foxborough,1965,0,4368_7778195_9151003,4368_127 -4358_80765,228,4368_4226,Foxborough,13394,0,4368_7778195_9151003,4368_127 -4358_80765,229,4368_4227,Foxborough,15836,0,4368_7778195_9151001,4368_128 -4358_80765,227,4368_4228,Foxborough,2007,0,4368_7778195_9151005,4368_127 -4358_80765,228,4368_4229,Foxborough,9735,0,4368_7778195_9151008,4368_127 -4358_80680,229,4368_423,Sandyford B.D.,14856,0,4368_7778195_1011005,4368_7 -4358_80765,227,4368_4230,Foxborough,2071,0,4368_7778195_9151007,4368_127 -4358_80765,229,4368_4231,Foxborough,15884,0,4368_7778195_9151006,4368_128 -4358_80765,228,4368_4232,Foxborough,9694,0,4368_7778195_9151005,4368_127 -4358_80765,227,4368_4233,Foxborough,1989,0,4368_7778195_9151012,4368_127 -4358_80765,229,4368_4234,Foxborough,15849,0,4368_7778195_9151002,4368_127 -4358_80765,228,4368_4235,Foxborough,9743,0,4368_7778195_9151006,4368_128 -4358_80765,227,4368_4236,Foxborough,1911,0,4368_7778195_9151013,4368_127 -4358_80765,228,4368_4237,Foxborough,9681,0,4368_7778195_9151004,4368_127 -4358_80765,227,4368_4238,Foxborough,1954,0,4368_7778195_9151009,4368_127 -4358_80765,229,4368_4239,Foxborough,15861,0,4368_7778195_9151003,4368_128 -4358_80680,227,4368_424,Sandyford B.D.,613,0,4368_7778195_1011003,4368_8 -4358_80765,228,4368_4240,Foxborough,9719,0,4368_7778195_9151007,4368_127 -4358_80765,227,4368_4241,Foxborough,1940,0,4368_7778195_9151010,4368_127 -4358_80765,229,4368_4242,Foxborough,15873,0,4368_7778195_9151004,4368_127 -4358_80765,228,4368_4243,Foxborough,9708,0,4368_7778195_9151001,4368_128 -4358_80765,227,4368_4244,Foxborough,2030,0,4368_7778195_9151006,4368_127 -4358_80765,228,4368_4245,Foxborough,13386,0,4368_7778195_9151002,4368_127 -4358_80765,227,4368_4246,Foxborough,2060,0,4368_7778195_9151002,4368_127 -4358_80765,229,4368_4247,Foxborough,15838,0,4368_7778195_9151001,4368_128 -4358_80765,228,4368_4248,Foxborough,13396,0,4368_7778195_9151003,4368_127 -4358_80765,227,4368_4249,Foxborough,1967,0,4368_7778195_9151003,4368_127 -4358_80680,228,4368_425,Sandyford B.D.,8626,0,4368_7778195_1011001,4368_7 -4358_80765,228,4368_4250,Foxborough,9737,0,4368_7778195_9151008,4368_127 -4358_80765,229,4368_4251,Foxborough,15886,0,4368_7778195_9151007,4368_128 -4358_80765,227,4368_4252,Foxborough,2009,0,4368_7778195_9151005,4368_127 -4358_80765,228,4368_4253,Foxborough,9696,0,4368_7778195_9151005,4368_127 -4358_80765,229,4368_4254,Foxborough,15851,0,4368_7778195_9151002,4368_127 -4358_80765,227,4368_4255,Foxborough,2078,0,4368_7778195_9151014,4368_128 -4358_80765,228,4368_4256,Foxborough,9745,0,4368_7778195_9151006,4368_127 -4358_80765,227,4368_4257,Foxborough,2073,0,4368_7778195_9151007,4368_127 -4358_80765,229,4368_4258,Foxborough,15863,0,4368_7778195_9151003,4368_127 -4358_80765,228,4368_4259,Foxborough,9751,0,4368_7778195_9151009,4368_128 -4358_80680,227,4368_426,Sandyford B.D.,577,0,4368_7778195_1011016,4368_7 -4358_80765,227,4368_4260,Foxborough,1991,0,4368_7778195_9151012,4368_127 -4358_80765,228,4368_4261,Foxborough,9721,0,4368_7778195_9151007,4368_127 -4358_80765,227,4368_4262,Foxborough,1913,0,4368_7778195_9151013,4368_127 -4358_80765,229,4368_4263,Foxborough,15875,0,4368_7778195_9151004,4368_128 -4358_80765,228,4368_4264,Foxborough,9710,0,4368_7778195_9151001,4368_127 -4358_80765,227,4368_4265,Foxborough,1956,0,4368_7778195_9151009,4368_127 -4358_80765,228,4368_4266,Foxborough,9727,0,4368_7778195_9151010,4368_127 -4358_80765,229,4368_4267,Foxborough,15840,0,4368_7778195_9151001,4368_128 -4358_80765,227,4368_4268,Foxborough,1942,0,4368_7778195_9151010,4368_127 -4358_80765,228,4368_4269,Foxborough,13388,0,4368_7778195_9151002,4368_127 -4358_80680,229,4368_427,Sandyford B.D.,14807,0,4368_7778195_1011001,4368_8 -4358_80765,227,4368_4270,Foxborough,2062,0,4368_7778195_9151002,4368_127 -4358_80765,229,4368_4271,Foxborough,15888,0,4368_7778195_9151007,4368_128 -4358_80765,228,4368_4272,Foxborough,13398,0,4368_7778195_9151003,4368_127 -4358_80765,229,4368_4273,Foxborough,15853,0,4368_7778195_9151002,4368_127 -4358_80765,228,4368_4274,Foxborough,9698,0,4368_7778195_9151005,4368_128 -4358_80765,227,4368_4275,Foxborough,1969,0,4368_7778195_9151003,4368_129 -4358_80765,229,4368_4276,Foxborough,15865,0,4368_7778195_9151003,4368_127 -4358_80765,228,4368_4277,Foxborough,9747,0,4368_7778195_9151006,4368_128 -4358_80765,227,4368_4278,Foxborough,2080,0,4368_7778195_9151014,4368_129 -4358_80765,229,4368_4279,Foxborough,15800,0,4368_7778195_9151008,4368_127 -4358_80680,228,4368_428,Sandyford B.D.,8613,0,4368_7778195_1011003,4368_7 -4358_80765,227,4368_4280,Foxborough,2075,0,4368_7778195_9151007,4368_128 -4358_80765,228,4368_4281,Foxborough,9723,0,4368_7778195_9151007,4368_129 -4358_80765,227,4368_4282,Foxborough,1915,0,4368_7778195_9151013,4368_127 -4358_80765,229,4368_4283,Foxborough,15877,0,4368_7778195_9151004,4368_128 -4358_80765,228,4368_4284,Foxborough,9712,0,4368_7778195_9151001,4368_129 -4358_80765,227,4368_4285,Foxborough,1958,0,4368_7778195_9151009,4368_127 -4358_80765,228,4368_4286,Foxborough,9729,0,4368_7778195_9151010,4368_128 -4358_80765,229,4368_4287,Foxborough,15842,0,4368_7778195_9151001,4368_129 -4358_80765,228,4368_4288,Foxborough,13400,0,4368_7778195_9151003,4368_127 -4358_80765,227,4368_4289,Foxborough,2064,0,4368_7778195_9151002,4368_128 -4358_80680,227,4368_429,Sandyford B.D.,629,0,4368_7778195_1011009,4368_7 -4358_80765,229,4368_4290,Foxborough,15890,0,4368_7778195_9151007,4368_129 -4358_80765,229,4368_4291,Foxborough,15855,0,4368_7778195_9151002,4368_127 -4358_80765,228,4368_4292,Foxborough,9700,0,4368_7778195_9151005,4368_128 -4358_80765,227,4368_4293,Foxborough,1971,0,4368_7778195_9151003,4368_129 -4358_80765,229,4368_4294,Foxborough,15867,0,4368_7778195_9151003,4368_127 -4358_80765,228,4368_4295,Foxborough,9749,0,4368_7778195_9151006,4368_128 -4358_80765,227,4368_4296,Foxborough,2082,0,4368_7778195_9151014,4368_129 -4358_80765,229,4368_4297,Foxborough,15802,0,4368_7778195_9151008,4368_127 -4358_80765,227,4368_4298,Foxborough,2077,0,4368_7778195_9151007,4368_128 -4358_80765,228,4368_4299,Foxborough,9725,0,4368_7778195_9151007,4368_129 -4358_80760,229,4368_43,Shaw street,15660,0,4368_7778195_9001005,4368_1 -4358_80680,229,4368_430,Sandyford B.D.,14833,0,4368_7778195_1011002,4368_8 -4358_80765,227,4368_4300,Docklands,1974,1,4368_7778195_9151001,4368_130 -4358_80765,227,4368_4301,Docklands,2053,1,4368_7778195_9151002,4368_130 -4358_80765,227,4368_4302,Docklands,1960,1,4368_7778195_9151003,4368_130 -4358_80765,228,4368_4303,Docklands,9701,1,4368_7778195_9151001,4368_131 -4358_80765,227,4368_4304,Docklands,2002,1,4368_7778195_9151005,4368_130 -4358_80765,228,4368_4305,Docklands,13379,1,4368_7778195_9151002,4368_130 -4358_80765,227,4368_4306,Docklands,2066,1,4368_7778195_9151007,4368_130 -4358_80765,228,4368_4307,Docklands,13389,1,4368_7778195_9151003,4368_130 -4358_80765,227,4368_4308,Docklands,2022,1,4368_7778195_9151008,4368_130 -4358_80765,227,4368_4309,Docklands,1949,1,4368_7778195_9151009,4368_130 -4358_80680,228,4368_431,Sandyford B.D.,8557,0,4368_7778195_1011005,4368_7 -4358_80765,228,4368_4310,Docklands,9689,1,4368_7778195_9151005,4368_131 -4358_80765,229,4368_4311,Docklands,15831,1,4368_7778195_9151001,4368_133 -4358_80765,227,4368_4312,Docklands,2021,1,4368_7778195_9151004,4368_130 -4358_80765,228,4368_4313,Docklands,9738,1,4368_7778195_9151006,4368_130 -4358_80765,229,4368_4314,Docklands,15844,1,4368_7778195_9151002,4368_130 -4358_80765,227,4368_4315,Docklands,1935,1,4368_7778195_9151010,4368_131 -4358_80765,228,4368_4316,Docklands,9676,1,4368_7778195_9151004,4368_130 -4358_80765,227,4368_4317,Docklands,2025,1,4368_7778195_9151006,4368_130 -4358_80765,229,4368_4318,Docklands,15856,1,4368_7778195_9151003,4368_130 -4358_80765,228,4368_4319,Docklands,9714,1,4368_7778195_9151007,4368_131 -4358_80680,227,4368_432,Sandyford B.D.,619,0,4368_7778195_1011019,4368_7 -4358_80765,227,4368_4320,Docklands,1976,1,4368_7778195_9151001,4368_130 -4358_80765,228,4368_4321,Docklands,9703,1,4368_7778195_9151001,4368_130 -4358_80765,229,4368_4322,Docklands,15868,1,4368_7778195_9151004,4368_130 -4358_80765,227,4368_4323,Docklands,2055,1,4368_7778195_9151002,4368_131 -4358_80765,228,4368_4324,Docklands,13381,1,4368_7778195_9151002,4368_130 -4358_80765,227,4368_4325,Docklands,1962,1,4368_7778195_9151003,4368_130 -4358_80765,228,4368_4326,Docklands,13391,1,4368_7778195_9151003,4368_130 -4358_80765,229,4368_4327,Docklands,15833,1,4368_7778195_9151001,4368_131 -4358_80765,227,4368_4328,Docklands,2004,1,4368_7778195_9151005,4368_130 -4358_80765,228,4368_4329,Docklands,9732,1,4368_7778195_9151008,4368_130 -4358_80680,229,4368_433,Sandyford B.D.,14905,0,4368_7778195_1011006,4368_8 -4358_80765,229,4368_4330,Docklands,15846,1,4368_7778195_9151002,4368_130 -4358_80765,227,4368_4331,Docklands,2068,1,4368_7778195_9151007,4368_131 -4358_80765,228,4368_4332,Docklands,9691,1,4368_7778195_9151005,4368_130 -4358_80765,227,4368_4333,Docklands,2000,1,4368_7778195_9151011,4368_130 -4358_80765,229,4368_4334,Docklands,15858,1,4368_7778195_9151003,4368_130 -4358_80765,228,4368_4335,Docklands,9740,1,4368_7778195_9151006,4368_131 -4358_80765,227,4368_4336,Docklands,1951,1,4368_7778195_9151009,4368_130 -4358_80765,228,4368_4337,Docklands,9678,1,4368_7778195_9151004,4368_130 -4358_80765,227,4368_4338,Docklands,1937,1,4368_7778195_9151010,4368_130 -4358_80765,229,4368_4339,Docklands,15879,1,4368_7778195_9151005,4368_131 -4358_80680,228,4368_434,Sandyford B.D.,8566,0,4368_7778195_1011007,4368_7 -4358_80765,228,4368_4340,Docklands,9716,1,4368_7778195_9151007,4368_130 -4358_80765,227,4368_4341,Docklands,2027,1,4368_7778195_9151006,4368_130 -4358_80765,229,4368_4342,Docklands,15870,1,4368_7778195_9151004,4368_130 -4358_80765,228,4368_4343,Docklands,9705,1,4368_7778195_9151001,4368_131 -4358_80765,227,4368_4344,Docklands,2057,1,4368_7778195_9151002,4368_130 -4358_80765,228,4368_4345,Docklands,13383,1,4368_7778195_9151002,4368_130 -4358_80765,229,4368_4346,Docklands,15835,1,4368_7778195_9151001,4368_130 -4358_80765,227,4368_4347,Docklands,1964,1,4368_7778195_9151003,4368_131 -4358_80765,228,4368_4348,Docklands,13393,1,4368_7778195_9151003,4368_130 -4358_80765,227,4368_4349,Docklands,2006,1,4368_7778195_9151005,4368_130 -4358_80680,227,4368_435,Sandyford B.D.,728,0,4368_7778195_1011014,4368_7 -4358_80765,229,4368_4350,Docklands,15883,1,4368_7778195_9151006,4368_130 -4358_80765,228,4368_4351,Docklands,9734,1,4368_7778195_9151008,4368_131 -4358_80765,227,4368_4352,Docklands,2070,1,4368_7778195_9151007,4368_130 -4358_80765,228,4368_4353,Docklands,9693,1,4368_7778195_9151005,4368_130 -4358_80765,229,4368_4354,Docklands,15848,1,4368_7778195_9151002,4368_130 -4358_80765,227,4368_4355,Docklands,1988,1,4368_7778195_9151012,4368_131 -4358_80765,228,4368_4356,Docklands,9742,1,4368_7778195_9151006,4368_130 -4358_80765,227,4368_4357,Docklands,1910,1,4368_7778195_9151013,4368_130 -4358_80765,229,4368_4358,Docklands,15860,1,4368_7778195_9151003,4368_130 -4358_80765,228,4368_4359,Docklands,9680,1,4368_7778195_9151004,4368_130 -4358_80680,229,4368_436,Sandyford B.D.,14888,0,4368_7778195_1011007,4368_8 -4358_80765,227,4368_4360,Docklands,1953,1,4368_7778195_9151009,4368_130 -4358_80765,229,4368_4361,Docklands,15881,1,4368_7778195_9151005,4368_130 -4358_80765,228,4368_4362,Docklands,9718,1,4368_7778195_9151007,4368_131 -4358_80765,227,4368_4363,Docklands,1939,1,4368_7778195_9151010,4368_130 -4358_80765,228,4368_4364,Docklands,9707,1,4368_7778195_9151001,4368_130 -4358_80765,227,4368_4365,Docklands,2029,1,4368_7778195_9151006,4368_130 -4358_80765,229,4368_4366,Docklands,15872,1,4368_7778195_9151004,4368_131 -4358_80765,228,4368_4367,Docklands,13385,1,4368_7778195_9151002,4368_130 -4358_80765,227,4368_4368,Docklands,2059,1,4368_7778195_9151002,4368_130 -4358_80765,228,4368_4369,Docklands,13395,1,4368_7778195_9151003,4368_130 -4358_80680,228,4368_437,Sandyford B.D.,8583,0,4368_7778195_1011006,4368_7 -4358_80765,229,4368_4370,Docklands,15837,1,4368_7778195_9151001,4368_131 -4358_80765,227,4368_4371,Docklands,1966,1,4368_7778195_9151003,4368_130 -4358_80765,228,4368_4372,Docklands,9736,1,4368_7778195_9151008,4368_130 -4358_80765,227,4368_4373,Docklands,2008,1,4368_7778195_9151005,4368_130 -4358_80765,229,4368_4374,Docklands,15885,1,4368_7778195_9151006,4368_131 -4358_80765,228,4368_4375,Docklands,9695,1,4368_7778195_9151005,4368_130 -4358_80765,227,4368_4376,Docklands,2072,1,4368_7778195_9151007,4368_130 -4358_80765,229,4368_4377,Docklands,15850,1,4368_7778195_9151002,4368_130 -4358_80765,228,4368_4378,Docklands,9744,1,4368_7778195_9151006,4368_131 -4358_80765,227,4368_4379,Docklands,1990,1,4368_7778195_9151012,4368_130 -4358_80680,229,4368_438,Sandyford B.D.,14858,0,4368_7778195_1011005,4368_7 -4358_80765,228,4368_4380,Docklands,9750,1,4368_7778195_9151009,4368_130 -4358_80765,227,4368_4381,Docklands,1912,1,4368_7778195_9151013,4368_130 -4358_80765,229,4368_4382,Docklands,15862,1,4368_7778195_9151003,4368_131 -4358_80765,228,4368_4383,Docklands,9720,1,4368_7778195_9151007,4368_130 -4358_80765,227,4368_4384,Docklands,1955,1,4368_7778195_9151009,4368_130 -4358_80765,229,4368_4385,Docklands,15874,1,4368_7778195_9151004,4368_130 -4358_80765,228,4368_4386,Docklands,9709,1,4368_7778195_9151001,4368_131 -4358_80765,227,4368_4387,Docklands,1941,1,4368_7778195_9151010,4368_130 -4358_80765,228,4368_4388,Docklands,9726,1,4368_7778195_9151010,4368_130 -4358_80765,227,4368_4389,Docklands,2031,1,4368_7778195_9151006,4368_130 -4358_80680,227,4368_439,Sandyford B.D.,702,0,4368_7778195_1011006,4368_8 -4358_80765,229,4368_4390,Docklands,15839,1,4368_7778195_9151001,4368_131 -4358_80765,228,4368_4391,Docklands,13387,1,4368_7778195_9151002,4368_130 -4358_80765,227,4368_4392,Docklands,2061,1,4368_7778195_9151002,4368_130 -4358_80765,228,4368_4393,Docklands,13397,1,4368_7778195_9151003,4368_130 -4358_80765,229,4368_4394,Docklands,15887,1,4368_7778195_9151007,4368_131 -4358_80765,227,4368_4395,Docklands,1968,1,4368_7778195_9151003,4368_130 -4358_80765,228,4368_4396,Docklands,9697,1,4368_7778195_9151005,4368_130 -4358_80765,227,4368_4397,Docklands,2010,1,4368_7778195_9151005,4368_130 -4358_80765,229,4368_4398,Docklands,15852,1,4368_7778195_9151002,4368_131 -4358_80765,228,4368_4399,Docklands,9746,1,4368_7778195_9151006,4368_130 -4358_80760,227,4368_44,Shaw street,1845,0,4368_7778195_9001006,4368_2 -4358_80680,228,4368_440,Sandyford B.D.,8628,0,4368_7778195_1011001,4368_7 -4358_80765,227,4368_4400,Docklands,2079,1,4368_7778195_9151014,4368_130 -4358_80765,229,4368_4401,Docklands,15864,1,4368_7778195_9151003,4368_130 -4358_80765,228,4368_4402,Docklands,9752,1,4368_7778195_9151009,4368_131 -4358_80765,227,4368_4403,Docklands,2074,1,4368_7778195_9151007,4368_130 -4358_80765,229,4368_4404,Docklands,15799,1,4368_7778195_9151008,4368_130 -4358_80765,228,4368_4405,Docklands,9722,1,4368_7778195_9151007,4368_131 -4358_80765,227,4368_4406,Docklands,1914,1,4368_7778195_9151013,4368_130 -4358_80765,229,4368_4407,Docklands,15876,1,4368_7778195_9151004,4368_131 -4358_80765,228,4368_4408,Docklands,9711,1,4368_7778195_9151001,4368_133 -4358_80765,227,4368_4409,Docklands,1957,1,4368_7778195_9151009,4368_130 -4358_80680,229,4368_441,Sandyford B.D.,14809,0,4368_7778195_1011001,4368_7 -4358_80765,228,4368_4410,Docklands,9728,1,4368_7778195_9151010,4368_131 -4358_80765,229,4368_4411,Docklands,15841,1,4368_7778195_9151001,4368_133 -4358_80765,228,4368_4412,Docklands,13399,1,4368_7778195_9151003,4368_130 -4358_80765,227,4368_4413,Docklands,2063,1,4368_7778195_9151002,4368_131 -4358_80765,229,4368_4414,Docklands,15889,1,4368_7778195_9151007,4368_133 -4358_80765,229,4368_4415,Docklands,15854,1,4368_7778195_9151002,4368_130 -4358_80765,228,4368_4416,Docklands,9699,1,4368_7778195_9151005,4368_131 -4358_80765,227,4368_4417,Docklands,1970,1,4368_7778195_9151003,4368_133 -4358_80765,229,4368_4418,Docklands,15866,1,4368_7778195_9151003,4368_130 -4358_80765,228,4368_4419,Docklands,9748,1,4368_7778195_9151006,4368_131 -4358_80680,227,4368_442,Sandyford B.D.,615,0,4368_7778195_1011003,4368_8 -4358_80765,227,4368_4420,Docklands,2081,1,4368_7778195_9151014,4368_133 -4358_80765,229,4368_4421,Docklands,15801,1,4368_7778195_9151008,4368_130 -4358_80765,227,4368_4422,Docklands,2076,1,4368_7778195_9151007,4368_131 -4358_80765,228,4368_4423,Docklands,9724,1,4368_7778195_9151007,4368_133 -4358_80765,227,4368_4424,Docklands,1916,1,4368_7778195_9151013,4368_130 -4358_80765,229,4368_4425,Docklands,15878,1,4368_7778195_9151004,4368_131 -4358_80765,228,4368_4426,Docklands,9713,1,4368_7778195_9151001,4368_133 -4358_80765,227,4368_4427,Docklands,1959,1,4368_7778195_9151009,4368_130 -4358_80765,228,4368_4428,Docklands,9730,1,4368_7778195_9151010,4368_131 -4358_80765,229,4368_4429,Docklands,15843,1,4368_7778195_9151001,4368_133 -4358_80680,228,4368_443,Sandyford B.D.,8615,0,4368_7778195_1011003,4368_7 -4358_80765,228,4368_4430,Eden Quay,13401,1,4368_7778195_9151003,4368_132 -4358_80765,227,4368_4431,Eden Quay,2065,1,4368_7778195_9151002,4368_134 -4358_80765,229,4368_4432,Eden Quay,15891,1,4368_7778195_9151007,4368_135 -4358_80766,227,4368_4433,Bray,358,0,4368_7778195_2155001,4368_136 -4358_80766,228,4368_4434,Bray,7982,0,4368_7778195_2155001,4368_137 -4358_80766,227,4368_4435,Bray,384,0,4368_7778195_2155003,4368_136 -4358_80766,228,4368_4436,Bray,8086,0,4368_7778195_2155003,4368_137 -4358_80766,227,4368_4437,Bray,403,0,4368_7778195_2155005,4368_136 -4358_80766,228,4368_4438,Bray,8033,0,4368_7778195_2155005,4368_137 -4358_80766,228,4368_4439,Bray,8024,0,4368_7778195_2155007,4368_136 -4358_80680,229,4368_444,O'Connell Street,14835,0,4368_7778195_1011002,4368_9 -4358_80766,227,4368_4440,Bray,293,0,4368_7778195_2155007,4368_137 -4358_80766,227,4368_4441,Bray,232,0,4368_7778195_2155009,4368_136 -4358_80766,228,4368_4442,Bray,8052,0,4368_7778195_2155009,4368_137 -4358_80766,228,4368_4443,Bray,7965,0,4368_7778195_2155002,4368_136 -4358_80766,227,4368_4444,Bray,309,0,4368_7778195_2155011,4368_137 -4358_80766,227,4368_4445,Bray,376,0,4368_7778195_2155002,4368_136 -4358_80766,229,4368_4446,Bray,14618,0,4368_7778195_2155001,4368_137 -4358_80766,228,4368_4447,Bray,8017,0,4368_7778195_2155004,4368_139 -4358_80766,229,4368_4448,Bray,14582,0,4368_7778195_2155003,4368_136 -4358_80766,227,4368_4449,Bray,315,0,4368_7778195_2155012,4368_137 -4358_80680,227,4368_445,O'Connell Street,579,0,4368_7778195_1011016,4368_10 -4358_80766,228,4368_4450,Bray,7998,0,4368_7778195_2155006,4368_139 -4358_80766,228,4368_4451,Bray,8044,0,4368_7778195_2155008,4368_136 -4358_80766,229,4368_4452,Bray,14524,0,4368_7778195_2155005,4368_137 -4358_80766,227,4368_4453,Bray,398,0,4368_7778195_2155004,4368_139 -4358_80766,227,4368_4454,Bray,357,0,4368_7778195_2155006,4368_136 -4358_80766,228,4368_4455,Bray,8008,0,4368_7778195_2155010,4368_137 -4358_80766,229,4368_4456,Bray,14542,0,4368_7778195_2155007,4368_139 -4358_80766,229,4368_4457,Bray,14636,0,4368_7778195_2155009,4368_136 -4358_80766,227,4368_4458,Bray,205,0,4368_7778195_2155008,4368_137 -4358_80766,228,4368_4459,Bray,7984,0,4368_7778195_2155001,4368_139 -4358_80680,228,4368_446,O'Connell Street,8559,0,4368_7778195_1011005,4368_11 -4358_80766,229,4368_4460,Bray,14645,0,4368_7778195_2155002,4368_136 -4358_80766,227,4368_4461,Bray,302,0,4368_7778195_2155010,4368_137 -4358_80766,228,4368_4462,Bray,8088,0,4368_7778195_2155003,4368_139 -4358_80766,227,4368_4463,Bray,360,0,4368_7778195_2155001,4368_136 -4358_80766,229,4368_4464,Bray,14534,0,4368_7778195_2155004,4368_137 -4358_80766,228,4368_4465,Bray,8035,0,4368_7778195_2155005,4368_139 -4358_80766,229,4368_4466,Bray,14549,0,4368_7778195_2155006,4368_136 -4358_80766,228,4368_4467,Bray,8026,0,4368_7778195_2155007,4368_137 -4358_80766,227,4368_4468,Bray,324,0,4368_7778195_2155013,4368_139 -4358_80766,227,4368_4469,Bray,405,0,4368_7778195_2155005,4368_136 -4358_80680,227,4368_447,St Pappin's Rd,741,1,4368_7778195_1011001,4368_12 -4358_80766,229,4368_4470,Bray,14558,0,4368_7778195_2155008,4368_137 -4358_80766,228,4368_4471,Bray,8054,0,4368_7778195_2155009,4368_139 -4358_80766,228,4368_4472,Bray,7967,0,4368_7778195_2155002,4368_136 -4358_80766,229,4368_4473,Bray,14613,0,4368_7778195_2155010,4368_137 -4358_80766,227,4368_4474,Bray,270,0,4368_7778195_2155014,4368_139 -4358_80766,229,4368_4475,Bray,14620,0,4368_7778195_2155001,4368_136 -4358_80766,227,4368_4476,Bray,295,0,4368_7778195_2155007,4368_137 -4358_80766,228,4368_4477,Bray,8061,0,4368_7778195_2155011,4368_139 -4358_80766,227,4368_4478,Bray,234,0,4368_7778195_2155009,4368_136 -4358_80766,228,4368_4479,Bray,8019,0,4368_7778195_2155004,4368_137 -4358_80680,228,4368_448,St Pappin's Rd,8617,1,4368_7778195_1011001,4368_13 -4358_80766,229,4368_4480,Bray,14584,0,4368_7778195_2155003,4368_139 -4358_80766,229,4368_4481,Bray,14526,0,4368_7778195_2155005,4368_136 -4358_80766,228,4368_4482,Bray,8000,0,4368_7778195_2155006,4368_137 -4358_80766,227,4368_4483,Bray,311,0,4368_7778195_2155011,4368_139 -4358_80766,228,4368_4484,Bray,8046,0,4368_7778195_2155008,4368_136 -4358_80766,227,4368_4485,Bray,378,0,4368_7778195_2155002,4368_137 -4358_80766,229,4368_4486,Bray,14544,0,4368_7778195_2155007,4368_139 -4358_80766,229,4368_4487,Bray,14638,0,4368_7778195_2155009,4368_136 -4358_80766,227,4368_4488,Bray,317,0,4368_7778195_2155012,4368_137 -4358_80766,228,4368_4489,Bray,8010,0,4368_7778195_2155010,4368_139 -4358_80680,227,4368_449,St Pappin's Rd,595,1,4368_7778195_1011004,4368_12 -4358_80766,229,4368_4490,Bray,14606,0,4368_7778195_2155011,4368_136 -4358_80766,227,4368_4491,Bray,400,0,4368_7778195_2155004,4368_137 -4358_80766,228,4368_4492,Bray,7986,0,4368_7778195_2155001,4368_139 -4358_80766,229,4368_4493,Bray,14647,0,4368_7778195_2155002,4368_136 -4358_80766,227,4368_4494,Bray,207,0,4368_7778195_2155008,4368_137 -4358_80766,228,4368_4495,Bray,8090,0,4368_7778195_2155003,4368_139 -4358_80766,228,4368_4496,Bray,8069,0,4368_7778195_2155012,4368_136 -4358_80766,227,4368_4497,Bray,304,0,4368_7778195_2155010,4368_137 -4358_80766,229,4368_4498,Bray,14536,0,4368_7778195_2155004,4368_139 -4358_80766,229,4368_4499,Bray,14551,0,4368_7778195_2155006,4368_136 -4358_80760,228,4368_45,Shaw street,9446,0,4368_7778195_9001003,4368_1 -4358_80680,228,4368_450,St Pappin's Rd,8604,1,4368_7778195_1011003,4368_12 -4358_80766,227,4368_4500,Bray,362,0,4368_7778195_2155001,4368_137 -4358_80766,228,4368_4501,Bray,8037,0,4368_7778195_2155005,4368_139 -4358_80766,228,4368_4502,Bray,8028,0,4368_7778195_2155007,4368_136 -4358_80766,229,4368_4503,Bray,14560,0,4368_7778195_2155008,4368_137 -4358_80766,227,4368_4504,Bray,326,0,4368_7778195_2155013,4368_139 -4358_80766,227,4368_4505,Bray,407,0,4368_7778195_2155005,4368_136 -4358_80766,229,4368_4506,Bray,14615,0,4368_7778195_2155010,4368_137 -4358_80766,228,4368_4507,Bray,8056,0,4368_7778195_2155009,4368_139 -4358_80766,228,4368_4508,Bray,7969,0,4368_7778195_2155002,4368_136 -4358_80766,227,4368_4509,Bray,272,0,4368_7778195_2155014,4368_137 -4358_80680,227,4368_451,St Pappin's Rd,693,1,4368_7778195_1011006,4368_12 -4358_80766,229,4368_4510,Bray,14566,0,4368_7778195_2155012,4368_139 -4358_80766,229,4368_4511,Bray,14622,0,4368_7778195_2155001,4368_136 -4358_80766,227,4368_4512,Bray,297,0,4368_7778195_2155007,4368_137 -4358_80766,228,4368_4513,Bray,8063,0,4368_7778195_2155011,4368_139 -4358_80766,227,4368_4514,Bray,236,0,4368_7778195_2155009,4368_136 -4358_80766,228,4368_4515,Bray,8021,0,4368_7778195_2155004,4368_137 -4358_80766,229,4368_4516,Bray,14586,0,4368_7778195_2155003,4368_139 -4358_80766,229,4368_4517,Bray,14528,0,4368_7778195_2155005,4368_136 -4358_80766,228,4368_4518,Bray,8002,0,4368_7778195_2155006,4368_137 -4358_80766,227,4368_4519,Bray,313,0,4368_7778195_2155011,4368_139 -4358_80680,227,4368_452,St Pappin's Rd,584,1,4368_7778195_1011010,4368_12 -4358_80766,228,4368_4520,Bray,8048,0,4368_7778195_2155008,4368_136 -4358_80766,227,4368_4521,Bray,248,0,4368_7778195_2155015,4368_137 -4358_80766,229,4368_4522,Bray,14546,0,4368_7778195_2155007,4368_139 -4358_80766,229,4368_4523,Bray,14640,0,4368_7778195_2155009,4368_136 -4358_80766,227,4368_4524,Bray,380,0,4368_7778195_2155002,4368_137 -4358_80766,228,4368_4525,Bray,8012,0,4368_7778195_2155010,4368_139 -4358_80766,227,4368_4526,Bray,319,0,4368_7778195_2155012,4368_136 -4358_80766,229,4368_4527,Bray,14608,0,4368_7778195_2155011,4368_137 -4358_80766,228,4368_4528,Bray,7988,0,4368_7778195_2155001,4368_139 -4358_80766,229,4368_4529,Bray,14649,0,4368_7778195_2155002,4368_136 -4358_80680,228,4368_453,St Pappin's Rd,8568,1,4368_7778195_1011004,4368_13 -4358_80766,228,4368_4530,Bray,8092,0,4368_7778195_2155003,4368_137 -4358_80766,227,4368_4531,Bray,402,0,4368_7778195_2155004,4368_139 -4358_80766,228,4368_4532,Bray,8071,0,4368_7778195_2155012,4368_136 -4358_80766,227,4368_4533,Bray,209,0,4368_7778195_2155008,4368_137 -4358_80766,229,4368_4534,Bray,14538,0,4368_7778195_2155004,4368_139 -4358_80766,229,4368_4535,Bray,14553,0,4368_7778195_2155006,4368_136 -4358_80766,227,4368_4536,Bray,306,0,4368_7778195_2155010,4368_137 -4358_80766,228,4368_4537,Bray,8039,0,4368_7778195_2155005,4368_139 -4358_80766,227,4368_4538,Bray,364,0,4368_7778195_2155001,4368_136 -4358_80766,228,4368_4539,Bray,8030,0,4368_7778195_2155007,4368_137 -4358_80680,227,4368_454,St Pappin's Rd,631,1,4368_7778195_1011011,4368_12 -4358_80766,229,4368_4540,Bray,14562,0,4368_7778195_2155008,4368_139 -4358_80766,229,4368_4541,Bray,14617,0,4368_7778195_2155010,4368_136 -4358_80766,228,4368_4542,Bray,8058,0,4368_7778195_2155009,4368_137 -4358_80766,227,4368_4543,Bray,217,0,4368_7778195_2155016,4368_139 -4358_80766,228,4368_4544,Bray,7971,0,4368_7778195_2155002,4368_136 -4358_80766,227,4368_4545,Bray,328,0,4368_7778195_2155013,4368_137 -4358_80766,229,4368_4546,Bray,14568,0,4368_7778195_2155012,4368_139 -4358_80766,227,4368_4547,Bray,409,0,4368_7778195_2155005,4368_136 -4358_80766,229,4368_4548,Bray,14624,0,4368_7778195_2155001,4368_137 -4358_80766,228,4368_4549,Bray,8065,0,4368_7778195_2155011,4368_139 -4358_80680,228,4368_455,St Pappin's Rd,8548,1,4368_7778195_1011005,4368_12 -4358_80766,228,4368_4550,Bray,8023,0,4368_7778195_2155004,4368_136 -4358_80766,229,4368_4551,Bray,14588,0,4368_7778195_2155003,4368_137 -4358_80766,227,4368_4552,Bray,274,0,4368_7778195_2155014,4368_139 -4358_80766,229,4368_4553,Bray,14530,0,4368_7778195_2155005,4368_136 -4358_80766,228,4368_4554,Bray,8004,0,4368_7778195_2155006,4368_137 -4358_80766,227,4368_4555,Bray,299,0,4368_7778195_2155007,4368_139 -4358_80766,228,4368_4556,Bray,8050,0,4368_7778195_2155008,4368_136 -4358_80766,227,4368_4557,Bray,238,0,4368_7778195_2155009,4368_137 -4358_80766,229,4368_4558,Bray,14642,0,4368_7778195_2155009,4368_139 -4358_80766,227,4368_4559,Bray,250,0,4368_7778195_2155015,4368_136 -4358_80680,227,4368_456,St Pappin's Rd,680,1,4368_7778195_1011002,4368_12 -4358_80766,228,4368_4560,Bray,8014,0,4368_7778195_2155010,4368_137 -4358_80766,229,4368_4561,Bray,14610,0,4368_7778195_2155011,4368_139 -4358_80766,229,4368_4562,Bray,14651,0,4368_7778195_2155002,4368_136 -4358_80766,227,4368_4563,Bray,382,0,4368_7778195_2155002,4368_137 -4358_80766,228,4368_4564,Bray,7990,0,4368_7778195_2155001,4368_139 -4358_80766,227,4368_4565,Bray,346,0,4368_7778195_2155017,4368_136 -4358_80766,228,4368_4566,Bray,8073,0,4368_7778195_2155012,4368_137 -4358_80766,229,4368_4567,Bray,14540,0,4368_7778195_2155004,4368_139 -4358_80766,229,4368_4568,Bray,14555,0,4368_7778195_2155006,4368_136 -4358_80766,227,4368_4569,Bray,211,0,4368_7778195_2155008,4368_137 -4358_80680,228,4368_457,St Pappin's Rd,8597,1,4368_7778195_1011002,4368_12 -4358_80766,228,4368_4570,Bray,8041,0,4368_7778195_2155005,4368_139 -4358_80766,227,4368_4571,Bray,308,0,4368_7778195_2155010,4368_136 -4358_80766,228,4368_4572,Bray,8032,0,4368_7778195_2155007,4368_137 -4358_80766,229,4368_4573,Bray,14564,0,4368_7778195_2155008,4368_139 -4358_80766,228,4368_4574,Bray,8060,0,4368_7778195_2155009,4368_136 -4358_80766,229,4368_4575,Bray,14570,0,4368_7778195_2155012,4368_137 -4358_80766,227,4368_4576,Bray,219,0,4368_7778195_2155016,4368_139 -4358_80766,228,4368_4577,Bray,7973,0,4368_7778195_2155002,4368_136 -4358_80766,227,4368_4578,Bray,330,0,4368_7778195_2155013,4368_137 -4358_80766,229,4368_4579,Bray,14626,0,4368_7778195_2155001,4368_139 -4358_80680,227,4368_458,St Pappin's Rd,606,1,4368_7778195_1011003,4368_12 -4358_80766,227,4368_4580,Bray,411,0,4368_7778195_2155005,4368_136 -4358_80766,229,4368_4581,Bray,14590,0,4368_7778195_2155003,4368_137 -4358_80766,228,4368_4582,Bray,8067,0,4368_7778195_2155011,4368_139 -4358_80766,229,4368_4583,O'Connell St,14532,0,4368_7778195_2155005,4368_138 -4358_80766,227,4368_4584,O'Connell St,276,0,4368_7778195_2155014,4368_140 -4358_80766,228,4368_4585,O'Connell St,8006,0,4368_7778195_2155006,4368_141 -4358_80766,228,4368_4586,IKEA,7964,1,4368_7778195_2155002,4368_142 -4358_80766,227,4368_4587,IKEA,375,1,4368_7778195_2155002,4368_144 -4358_80766,228,4368_4588,IKEA,8016,1,4368_7778195_2155004,4368_142 -4358_80766,227,4368_4589,IKEA,397,1,4368_7778195_2155004,4368_144 -4358_80680,228,4368_459,St Pappin's Rd,8619,1,4368_7778195_1011001,4368_12 -4358_80766,227,4368_4590,IKEA,356,1,4368_7778195_2155006,4368_142 -4358_80766,228,4368_4591,IKEA,7997,1,4368_7778195_2155006,4368_144 -4358_80766,228,4368_4592,IKEA,8043,1,4368_7778195_2155008,4368_142 -4358_80766,227,4368_4593,IKEA,204,1,4368_7778195_2155008,4368_144 -4358_80766,227,4368_4594,IKEA,301,1,4368_7778195_2155010,4368_142 -4358_80766,228,4368_4595,IKEA,8007,1,4368_7778195_2155010,4368_144 -4358_80766,227,4368_4596,IKEA,359,1,4368_7778195_2155001,4368_142 -4358_80766,228,4368_4597,IKEA,7983,1,4368_7778195_2155001,4368_144 -4358_80766,229,4368_4598,IKEA,14644,1,4368_7778195_2155002,4368_142 -4358_80766,228,4368_4599,IKEA,8087,1,4368_7778195_2155003,4368_144 -4358_80760,227,4368_46,Shaw street,1701,0,4368_7778195_9001008,4368_1 -4358_80680,227,4368_460,St Pappin's Rd,760,1,4368_7778195_1011005,4368_13 -4358_80766,227,4368_4600,IKEA,323,1,4368_7778195_2155013,4368_146 -4358_80766,227,4368_4601,IKEA,385,1,4368_7778195_2155003,4368_142 -4358_80766,229,4368_4602,IKEA,14533,1,4368_7778195_2155004,4368_144 -4358_80766,228,4368_4603,IKEA,8034,1,4368_7778195_2155005,4368_146 -4358_80766,229,4368_4604,IKEA,14548,1,4368_7778195_2155006,4368_142 -4358_80766,227,4368_4605,IKEA,404,1,4368_7778195_2155005,4368_144 -4358_80766,228,4368_4606,IKEA,8025,1,4368_7778195_2155007,4368_146 -4358_80766,229,4368_4607,IKEA,14557,1,4368_7778195_2155008,4368_142 -4358_80766,227,4368_4608,IKEA,269,1,4368_7778195_2155014,4368_144 -4358_80766,228,4368_4609,IKEA,8053,1,4368_7778195_2155009,4368_146 -4358_80680,229,4368_461,St Pappin's Rd,14798,1,4368_7778195_1011001,4368_12 -4358_80766,228,4368_4610,IKEA,7966,1,4368_7778195_2155002,4368_142 -4358_80766,229,4368_4611,IKEA,14612,1,4368_7778195_2155010,4368_144 -4358_80766,227,4368_4612,IKEA,294,1,4368_7778195_2155007,4368_146 -4358_80766,227,4368_4613,IKEA,233,1,4368_7778195_2155009,4368_142 -4358_80766,229,4368_4614,IKEA,14619,1,4368_7778195_2155001,4368_144 -4358_80766,228,4368_4615,IKEA,8018,1,4368_7778195_2155004,4368_146 -4358_80766,229,4368_4616,IKEA,14583,1,4368_7778195_2155003,4368_142 -4358_80766,228,4368_4617,IKEA,7999,1,4368_7778195_2155006,4368_144 -4358_80766,227,4368_4618,IKEA,310,1,4368_7778195_2155011,4368_146 -4358_80766,228,4368_4619,IKEA,8045,1,4368_7778195_2155008,4368_142 -4358_80680,227,4368_462,St Pappin's Rd,675,1,4368_7778195_1011007,4368_12 -4358_80766,229,4368_4620,IKEA,14525,1,4368_7778195_2155005,4368_144 -4358_80766,227,4368_4621,IKEA,377,1,4368_7778195_2155002,4368_146 -4358_80766,227,4368_4622,IKEA,316,1,4368_7778195_2155012,4368_142 -4358_80766,228,4368_4623,IKEA,8009,1,4368_7778195_2155010,4368_144 -4358_80766,229,4368_4624,IKEA,14543,1,4368_7778195_2155007,4368_146 -4358_80766,229,4368_4625,IKEA,14637,1,4368_7778195_2155009,4368_142 -4358_80766,227,4368_4626,IKEA,399,1,4368_7778195_2155004,4368_144 -4358_80766,228,4368_4627,IKEA,7985,1,4368_7778195_2155001,4368_146 -4358_80766,229,4368_4628,IKEA,14646,1,4368_7778195_2155002,4368_142 -4358_80766,227,4368_4629,IKEA,206,1,4368_7778195_2155008,4368_144 -4358_80680,228,4368_463,St Pappin's Rd,8606,1,4368_7778195_1011003,4368_12 -4358_80766,228,4368_4630,IKEA,8089,1,4368_7778195_2155003,4368_146 -4358_80766,228,4368_4631,IKEA,8068,1,4368_7778195_2155012,4368_142 -4358_80766,227,4368_4632,IKEA,303,1,4368_7778195_2155010,4368_144 -4358_80766,229,4368_4633,IKEA,14535,1,4368_7778195_2155004,4368_146 -4358_80766,229,4368_4634,IKEA,14550,1,4368_7778195_2155006,4368_142 -4358_80766,227,4368_4635,IKEA,361,1,4368_7778195_2155001,4368_144 -4358_80766,228,4368_4636,IKEA,8036,1,4368_7778195_2155005,4368_146 -4358_80766,228,4368_4637,IKEA,8027,1,4368_7778195_2155007,4368_142 -4358_80766,229,4368_4638,IKEA,14559,1,4368_7778195_2155008,4368_144 -4358_80766,227,4368_4639,IKEA,325,1,4368_7778195_2155013,4368_146 -4358_80680,229,4368_464,St Pappin's Rd,14824,1,4368_7778195_1011002,4368_12 -4358_80766,227,4368_4640,IKEA,406,1,4368_7778195_2155005,4368_142 -4358_80766,229,4368_4641,IKEA,14614,1,4368_7778195_2155010,4368_144 -4358_80766,228,4368_4642,IKEA,8055,1,4368_7778195_2155009,4368_146 -4358_80766,228,4368_4643,IKEA,7968,1,4368_7778195_2155002,4368_142 -4358_80766,227,4368_4644,IKEA,271,1,4368_7778195_2155014,4368_144 -4358_80766,229,4368_4645,IKEA,14565,1,4368_7778195_2155012,4368_146 -4358_80766,229,4368_4646,IKEA,14621,1,4368_7778195_2155001,4368_142 -4358_80766,227,4368_4647,IKEA,296,1,4368_7778195_2155007,4368_144 -4358_80766,228,4368_4648,IKEA,8062,1,4368_7778195_2155011,4368_146 -4358_80766,227,4368_4649,IKEA,235,1,4368_7778195_2155009,4368_142 -4358_80680,227,4368_465,St Pappin's Rd,622,1,4368_7778195_1011009,4368_12 -4358_80766,228,4368_4650,IKEA,8020,1,4368_7778195_2155004,4368_144 -4358_80766,229,4368_4651,IKEA,14585,1,4368_7778195_2155003,4368_146 -4358_80766,229,4368_4652,IKEA,14527,1,4368_7778195_2155005,4368_142 -4358_80766,228,4368_4653,IKEA,8001,1,4368_7778195_2155006,4368_144 -4358_80766,227,4368_4654,IKEA,312,1,4368_7778195_2155011,4368_146 -4358_80766,228,4368_4655,IKEA,8047,1,4368_7778195_2155008,4368_142 -4358_80766,227,4368_4656,IKEA,379,1,4368_7778195_2155002,4368_144 -4358_80766,229,4368_4657,IKEA,14545,1,4368_7778195_2155007,4368_146 -4358_80766,229,4368_4658,IKEA,14639,1,4368_7778195_2155009,4368_142 -4358_80766,227,4368_4659,IKEA,318,1,4368_7778195_2155012,4368_144 -4358_80680,228,4368_466,St Pappin's Rd,8570,1,4368_7778195_1011004,4368_12 -4358_80766,228,4368_4660,IKEA,8011,1,4368_7778195_2155010,4368_146 -4358_80766,229,4368_4661,IKEA,14607,1,4368_7778195_2155011,4368_142 -4358_80766,227,4368_4662,IKEA,401,1,4368_7778195_2155004,4368_144 -4358_80766,228,4368_4663,IKEA,7987,1,4368_7778195_2155001,4368_146 -4358_80766,229,4368_4664,IKEA,14648,1,4368_7778195_2155002,4368_142 -4358_80766,227,4368_4665,IKEA,208,1,4368_7778195_2155008,4368_144 -4358_80766,228,4368_4666,IKEA,8091,1,4368_7778195_2155003,4368_146 -4358_80766,228,4368_4667,IKEA,8070,1,4368_7778195_2155012,4368_142 -4358_80766,227,4368_4668,IKEA,305,1,4368_7778195_2155010,4368_144 -4358_80766,229,4368_4669,IKEA,14537,1,4368_7778195_2155004,4368_146 -4358_80680,229,4368_467,St Pappin's Rd,14867,1,4368_7778195_1011003,4368_12 -4358_80766,229,4368_4670,IKEA,14552,1,4368_7778195_2155006,4368_142 -4358_80766,227,4368_4671,IKEA,363,1,4368_7778195_2155001,4368_144 -4358_80766,228,4368_4672,IKEA,8038,1,4368_7778195_2155005,4368_146 -4358_80766,228,4368_4673,IKEA,8029,1,4368_7778195_2155007,4368_142 -4358_80766,229,4368_4674,IKEA,14561,1,4368_7778195_2155008,4368_144 -4358_80766,227,4368_4675,IKEA,216,1,4368_7778195_2155016,4368_146 -4358_80766,229,4368_4676,IKEA,14616,1,4368_7778195_2155010,4368_142 -4358_80766,227,4368_4677,IKEA,327,1,4368_7778195_2155013,4368_144 -4358_80766,228,4368_4678,IKEA,8057,1,4368_7778195_2155009,4368_146 -4358_80766,228,4368_4679,IKEA,7970,1,4368_7778195_2155002,4368_142 -4358_80680,227,4368_468,St Pappin's Rd,597,1,4368_7778195_1011004,4368_13 -4358_80766,227,4368_4680,IKEA,408,1,4368_7778195_2155005,4368_144 -4358_80766,229,4368_4681,IKEA,14567,1,4368_7778195_2155012,4368_146 -4358_80766,229,4368_4682,IKEA,14623,1,4368_7778195_2155001,4368_142 -4358_80766,227,4368_4683,IKEA,273,1,4368_7778195_2155014,4368_144 -4358_80766,228,4368_4684,IKEA,8064,1,4368_7778195_2155011,4368_146 -4358_80766,228,4368_4685,IKEA,8022,1,4368_7778195_2155004,4368_142 -4358_80766,229,4368_4686,IKEA,14587,1,4368_7778195_2155003,4368_144 -4358_80766,227,4368_4687,IKEA,298,1,4368_7778195_2155007,4368_146 -4358_80766,227,4368_4688,IKEA,237,1,4368_7778195_2155009,4368_142 -4358_80766,229,4368_4689,IKEA,14529,1,4368_7778195_2155005,4368_144 -4358_80680,228,4368_469,St Pappin's Rd,8550,1,4368_7778195_1011005,4368_12 -4358_80766,228,4368_4690,IKEA,8003,1,4368_7778195_2155006,4368_146 -4358_80766,228,4368_4691,IKEA,8049,1,4368_7778195_2155008,4368_142 -4358_80766,229,4368_4692,IKEA,14547,1,4368_7778195_2155007,4368_144 -4358_80766,227,4368_4693,IKEA,314,1,4368_7778195_2155011,4368_146 -4358_80766,229,4368_4694,IKEA,14641,1,4368_7778195_2155009,4368_142 -4358_80766,227,4368_4695,IKEA,249,1,4368_7778195_2155015,4368_144 -4358_80766,228,4368_4696,IKEA,8013,1,4368_7778195_2155010,4368_146 -4358_80766,227,4368_4697,IKEA,381,1,4368_7778195_2155002,4368_142 -4358_80766,229,4368_4698,IKEA,14609,1,4368_7778195_2155011,4368_144 -4358_80766,228,4368_4699,IKEA,7989,1,4368_7778195_2155001,4368_146 -4358_80760,229,4368_47,Shaw street,15687,0,4368_7778195_9001001,4368_1 -4358_80680,227,4368_470,St Pappin's Rd,660,1,4368_7778195_1011013,4368_12 -4358_80766,229,4368_4700,IKEA,14650,1,4368_7778195_2155002,4368_142 -4358_80766,228,4368_4701,IKEA,8093,1,4368_7778195_2155003,4368_144 -4358_80766,227,4368_4702,IKEA,320,1,4368_7778195_2155012,4368_146 -4358_80766,227,4368_4703,IKEA,345,1,4368_7778195_2155017,4368_142 -4358_80766,228,4368_4704,IKEA,8072,1,4368_7778195_2155012,4368_144 -4358_80766,229,4368_4705,IKEA,14539,1,4368_7778195_2155004,4368_146 -4358_80766,229,4368_4706,IKEA,14554,1,4368_7778195_2155006,4368_142 -4358_80766,227,4368_4707,IKEA,210,1,4368_7778195_2155008,4368_144 -4358_80766,228,4368_4708,IKEA,8040,1,4368_7778195_2155005,4368_146 -4358_80766,227,4368_4709,IKEA,307,1,4368_7778195_2155010,4368_142 -4358_80680,229,4368_471,St Pappin's Rd,14814,1,4368_7778195_1011004,4368_12 -4358_80766,228,4368_4710,IKEA,8031,1,4368_7778195_2155007,4368_144 -4358_80766,229,4368_4711,IKEA,14563,1,4368_7778195_2155008,4368_146 -4358_80766,228,4368_4712,IKEA,8059,1,4368_7778195_2155009,4368_142 -4358_80766,229,4368_4713,IKEA,14569,1,4368_7778195_2155012,4368_144 -4358_80766,227,4368_4714,IKEA,218,1,4368_7778195_2155016,4368_146 -4358_80766,228,4368_4715,IKEA,7972,1,4368_7778195_2155002,4368_142 -4358_80766,227,4368_4716,IKEA,329,1,4368_7778195_2155013,4368_144 -4358_80766,229,4368_4717,IKEA,14625,1,4368_7778195_2155001,4368_146 -4358_80766,227,4368_4718,IKEA,410,1,4368_7778195_2155005,4368_142 -4358_80766,229,4368_4719,IKEA,14589,1,4368_7778195_2155003,4368_144 -4358_80680,227,4368_472,St Pappin's Rd,695,1,4368_7778195_1011006,4368_12 -4358_80766,228,4368_4720,IKEA,8066,1,4368_7778195_2155011,4368_146 -4358_80766,229,4368_4721,IKEA,14531,1,4368_7778195_2155005,4368_142 -4358_80766,227,4368_4722,IKEA,275,1,4368_7778195_2155014,4368_144 -4358_80766,228,4368_4723,IKEA,8005,1,4368_7778195_2155006,4368_146 -4358_80766,228,4368_4724,IKEA,8051,1,4368_7778195_2155008,4368_142 -4358_80766,229,4368_4725,IKEA,14643,1,4368_7778195_2155009,4368_144 -4358_80766,227,4368_4726,IKEA,300,1,4368_7778195_2155007,4368_146 -4358_80766,227,4368_4727,IKEA,251,1,4368_7778195_2155015,4368_142 -4358_80766,228,4368_4728,IKEA,8015,1,4368_7778195_2155010,4368_144 -4358_80766,229,4368_4729,IKEA,14611,1,4368_7778195_2155011,4368_146 -4358_80680,228,4368_473,St Pappin's Rd,8599,1,4368_7778195_1011002,4368_12 -4358_80766,229,4368_4730,IKEA,14652,1,4368_7778195_2155002,4368_142 -4358_80766,227,4368_4731,IKEA,383,1,4368_7778195_2155002,4368_144 -4358_80766,228,4368_4732,IKEA,7991,1,4368_7778195_2155001,4368_146 -4358_80766,227,4368_4733,O'Connell St,347,1,4368_7778195_2155017,4368_143 -4358_80766,228,4368_4734,O'Connell St,8074,1,4368_7778195_2155012,4368_145 -4358_80766,229,4368_4735,O'Connell St,14541,1,4368_7778195_2155004,4368_147 -4358_80766,229,4368_4736,O'Connell St,14556,1,4368_7778195_2155006,4368_143 -4358_80766,227,4368_4737,O'Connell St,212,1,4368_7778195_2155008,4368_145 -4358_80766,228,4368_4738,O'Connell St,8042,1,4368_7778195_2155005,4368_147 -4358_80790,228,4368_4739,Limekiln Ave,10068,0,4368_7778195_5015001,4368_148 -4358_80680,229,4368_474,St Pappin's Rd,14849,1,4368_7778195_1011005,4368_12 -4358_80790,228,4368_4740,Limekiln Ave,10023,0,4368_7778195_5015005,4368_148 -4358_80790,227,4368_4741,Limekiln Ave,2585,0,4368_7778195_5015007,4368_149 -4358_80790,227,4368_4742,Limekiln Ave,2598,0,4368_7778195_5015012,4368_148 -4358_80790,227,4368_4743,Limekiln Ave,2526,0,4368_7778195_5015014,4368_148 -4358_80790,228,4368_4744,Limekiln Ave,9970,0,4368_7778195_5015002,4368_148 -4358_80790,227,4368_4745,Limekiln Ave,2711,0,4368_7778195_5015004,4368_149 -4358_80790,227,4368_4746,Limekiln Ave,2767,0,4368_7778195_5015018,4368_148 -4358_80790,228,4368_4747,Limekiln Ave,10295,0,4368_7778195_5015012,4368_149 -4358_80790,228,4368_4748,Limekiln Ave,10070,0,4368_7778195_5015001,4368_148 -4358_80790,227,4368_4749,Limekiln Ave,2769,0,4368_7778195_5015019,4368_149 -4358_80680,227,4368_475,St Pappin's Rd,633,1,4368_7778195_1011011,4368_12 -4358_80790,227,4368_4750,Limekiln Ave,2656,0,4368_7778195_5015020,4368_148 -4358_80790,228,4368_4751,Limekiln Ave,10348,0,4368_7778195_5015013,4368_148 -4358_80790,227,4368_4752,Limekiln Ave,2633,0,4368_7778195_5015009,4368_148 -4358_80790,228,4368_4753,Limekiln Ave,10025,0,4368_7778195_5015005,4368_148 -4358_80790,227,4368_4754,Limekiln Ave,2587,0,4368_7778195_5015007,4368_149 -4358_80790,227,4368_4755,Limekiln Ave,2600,0,4368_7778195_5015012,4368_148 -4358_80790,228,4368_4756,Limekiln Ave,9972,0,4368_7778195_5015002,4368_149 -4358_80790,229,4368_4757,Limekiln Ave,16355,0,4368_7778195_5015002,4368_148 -4358_80790,227,4368_4758,Limekiln Ave,2528,0,4368_7778195_5015014,4368_148 -4358_80790,228,4368_4759,Limekiln Ave,10356,0,4368_7778195_5015014,4368_149 -4358_80680,228,4368_476,St Pappin's Rd,8576,1,4368_7778195_1011006,4368_12 -4358_80790,228,4368_4760,Limekiln Ave,10297,0,4368_7778195_5015012,4368_148 -4358_80790,227,4368_4761,Limekiln Ave,2713,0,4368_7778195_5015004,4368_149 -4358_80790,229,4368_4762,Limekiln Ave,16386,0,4368_7778195_5015004,4368_150 -4358_80790,228,4368_4763,Limekiln Ave,10072,0,4368_7778195_5015001,4368_148 -4358_80790,227,4368_4764,Limekiln Ave,2679,0,4368_7778195_5015021,4368_149 -4358_80790,229,4368_4765,Limekiln Ave,16285,0,4368_7778195_5015006,4368_148 -4358_80790,228,4368_4766,Limekiln Ave,10350,0,4368_7778195_5015013,4368_148 -4358_80790,227,4368_4767,Limekiln Ave,2771,0,4368_7778195_5015019,4368_149 -4358_80790,228,4368_4768,Limekiln Ave,10027,0,4368_7778195_5015005,4368_148 -4358_80790,227,4368_4769,Limekiln Ave,2589,0,4368_7778195_5015007,4368_149 -4358_80680,229,4368_477,St Pappin's Rd,14800,1,4368_7778195_1011001,4368_12 -4358_80790,229,4368_4770,Limekiln Ave,16357,0,4368_7778195_5015002,4368_150 -4358_80790,227,4368_4771,Limekiln Ave,2602,0,4368_7778195_5015012,4368_148 -4358_80790,228,4368_4772,Limekiln Ave,9974,0,4368_7778195_5015002,4368_149 -4358_80790,229,4368_4773,Limekiln Ave,16222,0,4368_7778195_5015008,4368_148 -4358_80790,227,4368_4774,Limekiln Ave,2530,0,4368_7778195_5015014,4368_148 -4358_80790,228,4368_4775,Limekiln Ave,10358,0,4368_7778195_5015014,4368_149 -4358_80790,228,4368_4776,Limekiln Ave,10299,0,4368_7778195_5015012,4368_148 -4358_80790,227,4368_4777,Limekiln Ave,2715,0,4368_7778195_5015004,4368_149 -4358_80790,229,4368_4778,Limekiln Ave,16388,0,4368_7778195_5015004,4368_150 -4358_80790,228,4368_4779,Limekiln Ave,10074,0,4368_7778195_5015001,4368_148 -4358_80680,227,4368_478,St Pappin's Rd,608,1,4368_7778195_1011003,4368_12 -4358_80790,227,4368_4780,Limekiln Ave,2681,0,4368_7778195_5015021,4368_149 -4358_80790,229,4368_4781,Limekiln Ave,16287,0,4368_7778195_5015006,4368_148 -4358_80790,228,4368_4782,Limekiln Ave,10352,0,4368_7778195_5015013,4368_148 -4358_80790,227,4368_4783,Limekiln Ave,2773,0,4368_7778195_5015019,4368_149 -4358_80790,228,4368_4784,Limekiln Ave,10029,0,4368_7778195_5015005,4368_148 -4358_80790,227,4368_4785,Limekiln Ave,2591,0,4368_7778195_5015007,4368_149 -4358_80790,229,4368_4786,Limekiln Ave,16359,0,4368_7778195_5015002,4368_150 -4358_80790,227,4368_4787,Limekiln Ave,2604,0,4368_7778195_5015012,4368_148 -4358_80790,228,4368_4788,Limekiln Ave,9976,0,4368_7778195_5015002,4368_149 -4358_80790,229,4368_4789,Limekiln Ave,16224,0,4368_7778195_5015008,4368_148 -4358_80680,228,4368_479,St Pappin's Rd,8621,1,4368_7778195_1011001,4368_12 -4358_80790,227,4368_4790,Limekiln Ave,2532,0,4368_7778195_5015014,4368_148 -4358_80790,228,4368_4791,Limekiln Ave,10360,0,4368_7778195_5015014,4368_149 -4358_80790,228,4368_4792,Limekiln Ave,10301,0,4368_7778195_5015012,4368_148 -4358_80790,227,4368_4793,Limekiln Ave,2717,0,4368_7778195_5015004,4368_149 -4358_80790,229,4368_4794,Limekiln Ave,16390,0,4368_7778195_5015004,4368_150 -4358_80790,228,4368_4795,Limekiln Ave,10076,0,4368_7778195_5015001,4368_148 -4358_80790,227,4368_4796,Limekiln Ave,2683,0,4368_7778195_5015021,4368_149 -4358_80790,229,4368_4797,Limekiln Ave,16289,0,4368_7778195_5015006,4368_148 -4358_80790,228,4368_4798,Limekiln Ave,10354,0,4368_7778195_5015013,4368_148 -4358_80790,227,4368_4799,Limekiln Ave,2775,0,4368_7778195_5015019,4368_149 -4358_80760,227,4368_48,Shaw street,1819,0,4368_7778195_9001001,4368_1 -4358_80680,229,4368_480,St Pappin's Rd,14826,1,4368_7778195_1011002,4368_12 -4358_80790,228,4368_4800,Limekiln Ave,10031,0,4368_7778195_5015005,4368_148 -4358_80790,227,4368_4801,Limekiln Ave,2593,0,4368_7778195_5015007,4368_149 -4358_80790,229,4368_4802,Limekiln Ave,16361,0,4368_7778195_5015002,4368_150 -4358_80790,227,4368_4803,Limekiln Ave,2606,0,4368_7778195_5015012,4368_148 -4358_80790,228,4368_4804,Limekiln Ave,9978,0,4368_7778195_5015002,4368_149 -4358_80790,229,4368_4805,Limekiln Ave,16226,0,4368_7778195_5015008,4368_148 -4358_80790,227,4368_4806,Limekiln Ave,2534,0,4368_7778195_5015014,4368_148 -4358_80790,228,4368_4807,Limekiln Ave,10362,0,4368_7778195_5015014,4368_149 -4358_80790,228,4368_4808,Limekiln Ave,10303,0,4368_7778195_5015012,4368_148 -4358_80790,227,4368_4809,Limekiln Ave,2719,0,4368_7778195_5015004,4368_149 -4358_80680,227,4368_481,St Pappin's Rd,677,1,4368_7778195_1011007,4368_12 -4358_80790,229,4368_4810,Limekiln Ave,16392,0,4368_7778195_5015004,4368_150 -4358_80790,227,4368_4811,Limekiln Ave,2685,0,4368_7778195_5015021,4368_148 -4358_80790,228,4368_4812,Limekiln Ave,10107,0,4368_7778195_5015017,4368_149 -4358_80790,229,4368_4813,Limekiln Ave,16291,0,4368_7778195_5015006,4368_148 -4358_80790,228,4368_4814,Limekiln Ave,10078,0,4368_7778195_5015001,4368_148 -4358_80790,227,4368_4815,Limekiln Ave,2777,0,4368_7778195_5015019,4368_149 -4358_80790,228,4368_4816,Limekiln Ave,10033,0,4368_7778195_5015005,4368_148 -4358_80790,227,4368_4817,Limekiln Ave,2595,0,4368_7778195_5015007,4368_149 -4358_80790,229,4368_4818,Limekiln Ave,16363,0,4368_7778195_5015002,4368_150 -4358_80790,227,4368_4819,Limekiln Ave,2618,0,4368_7778195_5015025,4368_148 -4358_80680,228,4368_482,St Pappin's Rd,8608,1,4368_7778195_1011003,4368_12 -4358_80790,228,4368_4820,Limekiln Ave,9980,0,4368_7778195_5015002,4368_148 -4358_80790,227,4368_4821,Limekiln Ave,2608,0,4368_7778195_5015012,4368_148 -4358_80790,229,4368_4822,Limekiln Ave,16228,0,4368_7778195_5015008,4368_149 -4358_80790,228,4368_4823,Limekiln Ave,10364,0,4368_7778195_5015014,4368_148 -4358_80790,227,4368_4824,Limekiln Ave,2536,0,4368_7778195_5015014,4368_148 -4358_80790,228,4368_4825,Limekiln Ave,10305,0,4368_7778195_5015012,4368_148 -4358_80790,227,4368_4826,Limekiln Ave,2629,0,4368_7778195_5015029,4368_149 -4358_80790,229,4368_4827,Limekiln Ave,16394,0,4368_7778195_5015004,4368_150 -4358_80790,227,4368_4828,Limekiln Ave,2634,0,4368_7778195_5015027,4368_148 -4358_80790,228,4368_4829,Limekiln Ave,10109,0,4368_7778195_5015017,4368_148 -4358_80680,229,4368_483,St Pappin's Rd,14869,1,4368_7778195_1011003,4368_12 -4358_80790,229,4368_4830,Limekiln Ave,16293,0,4368_7778195_5015006,4368_148 -4358_80790,227,4368_4831,Limekiln Ave,2721,0,4368_7778195_5015004,4368_149 -4358_80790,228,4368_4832,Limekiln Ave,10080,0,4368_7778195_5015001,4368_148 -4358_80790,227,4368_4833,Limekiln Ave,2501,0,4368_7778195_5015030,4368_148 -4358_80790,228,4368_4834,Limekiln Ave,10035,0,4368_7778195_5015005,4368_148 -4358_80790,227,4368_4835,Limekiln Ave,2779,0,4368_7778195_5015019,4368_149 -4358_80790,229,4368_4836,Limekiln Ave,16365,0,4368_7778195_5015002,4368_150 -4358_80790,227,4368_4837,Limekiln Ave,2597,0,4368_7778195_5015007,4368_148 -4358_80790,228,4368_4838,Limekiln Ave,10366,0,4368_7778195_5015014,4368_148 -4358_80790,229,4368_4839,Limekiln Ave,16230,0,4368_7778195_5015008,4368_149 -4358_80680,227,4368_484,St Pappin's Rd,624,1,4368_7778195_1011009,4368_12 -4358_80790,227,4368_4840,Limekiln Ave,2620,0,4368_7778195_5015025,4368_150 -4358_80790,227,4368_4841,Limekiln Ave,2538,0,4368_7778195_5015014,4368_148 -4358_80790,228,4368_4842,Limekiln Ave,10307,0,4368_7778195_5015012,4368_149 -4358_80790,229,4368_4843,Limekiln Ave,16396,0,4368_7778195_5015004,4368_150 -4358_80790,229,4368_4844,Limekiln Ave,16295,0,4368_7778195_5015006,4368_148 -4358_80790,227,4368_4845,Limekiln Ave,2636,0,4368_7778195_5015027,4368_149 -4358_80790,228,4368_4846,Limekiln Ave,10154,0,4368_7778195_5015019,4368_150 -4358_80790,228,4368_4847,Limekiln Ave,10037,0,4368_7778195_5015005,4368_148 -4358_80790,227,4368_4848,Limekiln Ave,2781,0,4368_7778195_5015019,4368_149 -4358_80790,229,4368_4849,Limekiln Ave,16367,0,4368_7778195_5015002,4368_150 -4358_80680,228,4368_485,St Pappin's Rd,8572,1,4368_7778195_1011004,4368_12 -4358_80790,228,4368_4850,Limekiln Ave,10368,0,4368_7778195_5015014,4368_148 -4358_80790,229,4368_4851,Limekiln Ave,16232,0,4368_7778195_5015008,4368_149 -4358_80790,227,4368_4852,Limekiln Ave,2622,0,4368_7778195_5015025,4368_150 -4358_80790,229,4368_4853,Limekiln Ave,16297,0,4368_7778195_5015006,4368_148 -4358_80790,227,4368_4854,Limekiln Ave,2540,0,4368_7778195_5015014,4368_149 -4358_80790,228,4368_4855,Limekiln Ave,10309,0,4368_7778195_5015012,4368_150 -4358_80790,228,4368_4856,Limekiln Ave,10081,0,4368_7778195_5015020,4368_148 -4358_80790,227,4368_4857,Limekiln Ave,2638,0,4368_7778195_5015027,4368_149 -4358_80790,229,4368_4858,Limekiln Ave,16369,0,4368_7778195_5015002,4368_150 -4358_80790,228,4368_4859,Limekiln Ave,10039,0,4368_7778195_5015005,4368_148 -4358_80680,229,4368_486,St Pappin's Rd,14816,1,4368_7778195_1011004,4368_12 -4358_80790,229,4368_4860,Limekiln Ave,16234,0,4368_7778195_5015008,4368_149 -4358_80790,227,4368_4861,Limekiln Ave,2783,0,4368_7778195_5015019,4368_150 -4358_80790,229,4368_4862,Limekiln Ave,16299,0,4368_7778195_5015006,4368_148 -4358_80790,228,4368_4863,Limekiln Ave,10370,0,4368_7778195_5015014,4368_149 -4358_80790,227,4368_4864,Limekiln Ave,2624,0,4368_7778195_5015025,4368_150 -4358_80790,227,4368_4865,Limekiln Ave,2542,0,4368_7778195_5015014,4368_148 -4358_80790,228,4368_4866,Limekiln Ave,10311,0,4368_7778195_5015012,4368_151 -4358_80790,229,4368_4867,Limekiln Ave,16371,0,4368_7778195_5015002,4368_152 -4358_80790,228,4368_4868,Merrion Square,10067,1,4368_7778195_5015001,4368_153 -4358_80790,227,4368_4869,Merrion Square,2710,1,4368_7778195_5015004,4368_153 -4358_80680,227,4368_487,St Pappin's Rd,723,1,4368_7778195_1011014,4368_12 -4358_80790,228,4368_4870,Merrion Square,9969,1,4368_7778195_5015002,4368_153 -4358_80790,227,4368_4871,Merrion Square,2632,1,4368_7778195_5015009,4368_153 -4358_80790,228,4368_4872,Merrion Square,10069,1,4368_7778195_5015001,4368_154 -4358_80790,227,4368_4873,Merrion Square,2586,1,4368_7778195_5015007,4368_153 -4358_80790,228,4368_4874,Merrion Square,10024,1,4368_7778195_5015005,4368_153 -4358_80790,227,4368_4875,Merrion Square,2599,1,4368_7778195_5015012,4368_153 -4358_80790,227,4368_4876,Merrion Square,2527,1,4368_7778195_5015014,4368_153 -4358_80790,228,4368_4877,Merrion Square,9971,1,4368_7778195_5015002,4368_153 -4358_80790,227,4368_4878,Merrion Square,2712,1,4368_7778195_5015004,4368_153 -4358_80790,229,4368_4879,Merrion Square,16354,1,4368_7778195_5015002,4368_153 -4358_80680,228,4368_488,St Pappin's Rd,8552,1,4368_7778195_1011005,4368_12 -4358_80790,227,4368_4880,Merrion Square,2678,1,4368_7778195_5015021,4368_153 -4358_80790,228,4368_4881,Merrion Square,10296,1,4368_7778195_5015012,4368_153 -4358_80790,227,4368_4882,Merrion Square,2768,1,4368_7778195_5015018,4368_153 -4358_80790,229,4368_4883,Merrion Square,16385,1,4368_7778195_5015004,4368_153 -4358_80790,228,4368_4884,Merrion Square,10071,1,4368_7778195_5015001,4368_153 -4358_80790,227,4368_4885,Merrion Square,2770,1,4368_7778195_5015019,4368_154 -4358_80790,227,4368_4886,Merrion Square,2657,1,4368_7778195_5015020,4368_153 -4358_80790,228,4368_4887,Merrion Square,10349,1,4368_7778195_5015013,4368_154 -4358_80790,229,4368_4888,Merrion Square,16284,1,4368_7778195_5015006,4368_153 -4358_80790,228,4368_4889,Merrion Square,10026,1,4368_7778195_5015005,4368_153 -4358_80680,229,4368_489,St Pappin's Rd,14851,1,4368_7778195_1011005,4368_12 -4358_80790,227,4368_4890,Merrion Square,2588,1,4368_7778195_5015007,4368_154 -4358_80790,229,4368_4891,Merrion Square,16356,1,4368_7778195_5015002,4368_153 -4358_80790,227,4368_4892,Merrion Square,2601,1,4368_7778195_5015012,4368_153 -4358_80790,228,4368_4893,Merrion Square,9973,1,4368_7778195_5015002,4368_154 -4358_80790,229,4368_4894,Merrion Square,16221,1,4368_7778195_5015008,4368_153 -4358_80790,227,4368_4895,Merrion Square,2529,1,4368_7778195_5015014,4368_153 -4358_80790,228,4368_4896,Merrion Square,10357,1,4368_7778195_5015014,4368_154 -4358_80790,228,4368_4897,Merrion Square,10298,1,4368_7778195_5015012,4368_153 -4358_80790,227,4368_4898,Merrion Square,2714,1,4368_7778195_5015004,4368_154 -4358_80790,229,4368_4899,Merrion Square,16387,1,4368_7778195_5015004,4368_155 -4358_80760,228,4368_49,Shaw street,9484,0,4368_7778195_9001004,4368_1 -4358_80680,227,4368_490,St Pappin's Rd,697,1,4368_7778195_1011006,4368_12 -4358_80790,228,4368_4900,Merrion Square,10073,1,4368_7778195_5015001,4368_153 -4358_80790,227,4368_4901,Merrion Square,2680,1,4368_7778195_5015021,4368_154 -4358_80790,229,4368_4902,Merrion Square,16286,1,4368_7778195_5015006,4368_153 -4358_80790,228,4368_4903,Merrion Square,10351,1,4368_7778195_5015013,4368_153 -4358_80790,227,4368_4904,Merrion Square,2772,1,4368_7778195_5015019,4368_154 -4358_80790,228,4368_4905,Merrion Square,10028,1,4368_7778195_5015005,4368_153 -4358_80790,227,4368_4906,Merrion Square,2590,1,4368_7778195_5015007,4368_154 -4358_80790,229,4368_4907,Merrion Square,16358,1,4368_7778195_5015002,4368_155 -4358_80790,227,4368_4908,Merrion Square,2603,1,4368_7778195_5015012,4368_153 -4358_80790,228,4368_4909,Merrion Square,9975,1,4368_7778195_5015002,4368_154 -4358_80680,228,4368_491,St Pappin's Rd,8561,1,4368_7778195_1011007,4368_12 -4358_80790,229,4368_4910,Merrion Square,16223,1,4368_7778195_5015008,4368_153 -4358_80790,227,4368_4911,Merrion Square,2531,1,4368_7778195_5015014,4368_153 -4358_80790,228,4368_4912,Merrion Square,10359,1,4368_7778195_5015014,4368_154 -4358_80790,228,4368_4913,Merrion Square,10300,1,4368_7778195_5015012,4368_153 -4358_80790,227,4368_4914,Merrion Square,2716,1,4368_7778195_5015004,4368_154 -4358_80790,229,4368_4915,Merrion Square,16389,1,4368_7778195_5015004,4368_155 -4358_80790,228,4368_4916,Merrion Square,10075,1,4368_7778195_5015001,4368_153 -4358_80790,227,4368_4917,Merrion Square,2682,1,4368_7778195_5015021,4368_154 -4358_80790,229,4368_4918,Merrion Square,16288,1,4368_7778195_5015006,4368_153 -4358_80790,228,4368_4919,Merrion Square,10353,1,4368_7778195_5015013,4368_153 -4358_80680,229,4368_492,St Pappin's Rd,14802,1,4368_7778195_1011001,4368_12 -4358_80790,227,4368_4920,Merrion Square,2774,1,4368_7778195_5015019,4368_154 -4358_80790,228,4368_4921,Merrion Square,10030,1,4368_7778195_5015005,4368_153 -4358_80790,227,4368_4922,Merrion Square,2592,1,4368_7778195_5015007,4368_154 -4358_80790,229,4368_4923,Merrion Square,16360,1,4368_7778195_5015002,4368_155 -4358_80790,227,4368_4924,Merrion Square,2605,1,4368_7778195_5015012,4368_153 -4358_80790,228,4368_4925,Merrion Square,9977,1,4368_7778195_5015002,4368_154 -4358_80790,229,4368_4926,Merrion Square,16225,1,4368_7778195_5015008,4368_153 -4358_80790,227,4368_4927,Merrion Square,2533,1,4368_7778195_5015014,4368_153 -4358_80790,228,4368_4928,Merrion Square,10361,1,4368_7778195_5015014,4368_154 -4358_80790,228,4368_4929,Merrion Square,10302,1,4368_7778195_5015012,4368_153 -4358_80680,227,4368_493,St Pappin's Rd,635,1,4368_7778195_1011011,4368_12 -4358_80790,227,4368_4930,Merrion Square,2718,1,4368_7778195_5015004,4368_154 -4358_80790,229,4368_4931,Merrion Square,16391,1,4368_7778195_5015004,4368_155 -4358_80790,228,4368_4932,Merrion Square,10077,1,4368_7778195_5015001,4368_153 -4358_80790,227,4368_4933,Merrion Square,2684,1,4368_7778195_5015021,4368_154 -4358_80790,229,4368_4934,Merrion Square,16290,1,4368_7778195_5015006,4368_153 -4358_80790,228,4368_4935,Merrion Square,10355,1,4368_7778195_5015013,4368_153 -4358_80790,227,4368_4936,Merrion Square,2776,1,4368_7778195_5015019,4368_154 -4358_80790,228,4368_4937,Merrion Square,10032,1,4368_7778195_5015005,4368_153 -4358_80790,227,4368_4938,Merrion Square,2594,1,4368_7778195_5015007,4368_154 -4358_80790,229,4368_4939,Merrion Square,16362,1,4368_7778195_5015002,4368_155 -4358_80680,228,4368_494,St Pappin's Rd,8601,1,4368_7778195_1011002,4368_12 -4358_80790,227,4368_4940,Merrion Square,2607,1,4368_7778195_5015012,4368_153 -4358_80790,228,4368_4941,Merrion Square,9979,1,4368_7778195_5015002,4368_154 -4358_80790,229,4368_4942,Merrion Square,16227,1,4368_7778195_5015008,4368_153 -4358_80790,227,4368_4943,Merrion Square,2535,1,4368_7778195_5015014,4368_153 -4358_80790,228,4368_4944,Merrion Square,10363,1,4368_7778195_5015014,4368_154 -4358_80790,228,4368_4945,Merrion Square,10304,1,4368_7778195_5015012,4368_153 -4358_80790,227,4368_4946,Merrion Square,2628,1,4368_7778195_5015029,4368_154 -4358_80790,229,4368_4947,Merrion Square,16393,1,4368_7778195_5015004,4368_155 -4358_80790,228,4368_4948,Merrion Square,10108,1,4368_7778195_5015017,4368_153 -4358_80790,227,4368_4949,Merrion Square,2720,1,4368_7778195_5015004,4368_154 -4358_80680,229,4368_495,St Pappin's Rd,14828,1,4368_7778195_1011002,4368_12 -4358_80790,229,4368_4950,Merrion Square,16292,1,4368_7778195_5015006,4368_153 -4358_80790,228,4368_4951,Merrion Square,10079,1,4368_7778195_5015001,4368_153 -4358_80790,227,4368_4952,Merrion Square,2686,1,4368_7778195_5015021,4368_154 -4358_80790,228,4368_4953,Merrion Square,10034,1,4368_7778195_5015005,4368_153 -4358_80790,227,4368_4954,Merrion Square,2778,1,4368_7778195_5015019,4368_154 -4358_80790,229,4368_4955,Merrion Square,16364,1,4368_7778195_5015002,4368_155 -4358_80790,227,4368_4956,Merrion Square,2596,1,4368_7778195_5015007,4368_153 -4358_80790,228,4368_4957,Merrion Square,9981,1,4368_7778195_5015002,4368_153 -4358_80790,229,4368_4958,Merrion Square,16229,1,4368_7778195_5015008,4368_153 -4358_80790,227,4368_4959,Merrion Square,2619,1,4368_7778195_5015025,4368_154 -4358_80680,227,4368_496,St Pappin's Rd,610,1,4368_7778195_1011003,4368_12 -4358_80790,228,4368_4960,Merrion Square,10365,1,4368_7778195_5015014,4368_153 -4358_80790,227,4368_4961,Merrion Square,2609,1,4368_7778195_5015012,4368_153 -4358_80790,227,4368_4962,Merrion Square,2537,1,4368_7778195_5015014,4368_153 -4358_80790,228,4368_4963,Merrion Square,10306,1,4368_7778195_5015012,4368_154 -4358_80790,229,4368_4964,Merrion Square,16395,1,4368_7778195_5015004,4368_155 -4358_80790,228,4368_4965,Merrion Square,10110,1,4368_7778195_5015017,4368_153 -4358_80790,229,4368_4966,Merrion Square,16294,1,4368_7778195_5015006,4368_153 -4358_80790,227,4368_4967,Merrion Square,2635,1,4368_7778195_5015027,4368_154 -4358_80790,228,4368_4968,Merrion Square,10153,1,4368_7778195_5015019,4368_155 -4358_80790,228,4368_4969,Merrion Square,10036,1,4368_7778195_5015005,4368_153 -4358_80680,228,4368_497,St Pappin's Rd,8578,1,4368_7778195_1011006,4368_12 -4358_80790,227,4368_4970,Merrion Square,2780,1,4368_7778195_5015019,4368_154 -4358_80790,229,4368_4971,Merrion Square,16366,1,4368_7778195_5015002,4368_155 -4358_80790,228,4368_4972,Merrion Square,10367,1,4368_7778195_5015014,4368_153 -4358_80790,229,4368_4973,Merrion Square,16231,1,4368_7778195_5015008,4368_154 -4358_80790,227,4368_4974,Merrion Square,2621,1,4368_7778195_5015025,4368_155 -4358_80790,227,4368_4975,Merrion Square,2539,1,4368_7778195_5015014,4368_153 -4358_80790,228,4368_4976,Merrion Square,10308,1,4368_7778195_5015012,4368_154 -4358_80790,229,4368_4977,Merrion Square,16397,1,4368_7778195_5015004,4368_155 -4358_80790,229,4368_4978,Merrion Square,16296,1,4368_7778195_5015006,4368_153 -4358_80790,227,4368_4979,Merrion Square,2637,1,4368_7778195_5015027,4368_153 -4358_80680,227,4368_498,St Pappin's Rd,580,1,4368_7778195_1011015,4368_12 -4358_80790,228,4368_4980,Merrion Square,10155,1,4368_7778195_5015019,4368_154 -4358_80790,229,4368_4981,Merrion Square,16368,1,4368_7778195_5015002,4368_153 -4358_80790,228,4368_4982,Merrion Square,10038,1,4368_7778195_5015005,4368_153 -4358_80790,227,4368_4983,Merrion Square,2782,1,4368_7778195_5015019,4368_154 -4358_80790,229,4368_4984,Merrion Square,16233,1,4368_7778195_5015008,4368_153 -4358_80790,228,4368_4985,Merrion Square,10369,1,4368_7778195_5015014,4368_153 -4358_80790,227,4368_4986,Merrion Square,2623,1,4368_7778195_5015025,4368_154 -4358_80790,229,4368_4987,Merrion Square,16298,1,4368_7778195_5015006,4368_153 -4358_80790,227,4368_4988,Merrion Square,2541,1,4368_7778195_5015014,4368_153 -4358_80790,228,4368_4989,Merrion Square,10310,1,4368_7778195_5015012,4368_154 -4358_80680,229,4368_499,St Pappin's Rd,14900,1,4368_7778195_1011006,4368_13 -4358_80790,229,4368_4990,Merrion Square,16370,1,4368_7778195_5015002,4368_153 -4358_80790,228,4368_4991,Merrion Square,10082,1,4368_7778195_5015020,4368_153 -4358_80790,227,4368_4992,Merrion Square,2639,1,4368_7778195_5015027,4368_154 -4358_80790,229,4368_4993,Merrion Square,16235,1,4368_7778195_5015008,4368_153 -4358_80790,228,4368_4994,Merrion Square,10040,1,4368_7778195_5015005,4368_153 -4358_80790,227,4368_4995,Merrion Square,2784,1,4368_7778195_5015019,4368_154 -4358_80788,227,4368_4996,Stocking Ave,2554,0,4368_7778195_5015006,4368_156 -4358_80788,227,4368_4997,Stocking Ave,2505,0,4368_7778195_5015010,4368_156 -4358_80788,227,4368_4998,Stocking Ave,2379,0,4368_7778195_5015013,4368_156 -4358_80788,228,4368_4999,Stocking Ave,10083,0,4368_7778195_5015008,4368_156 -4358_80760,227,4368_5,Shaw street,1858,0,4368_7778195_9001007,4368_1 -4358_80760,227,4368_50,Shaw street,1656,0,4368_7778195_9001003,4368_1 -4358_80680,227,4368_500,St Pappin's Rd,574,1,4368_7778195_1011016,4368_12 -4358_80788,227,4368_5000,Stocking Ave,2456,0,4368_7778195_5015001,4368_156 -4358_80788,228,4368_5001,Stocking Ave,10120,0,4368_7778195_5015010,4368_156 -4358_80788,227,4368_5002,Stocking Ave,2396,0,4368_7778195_5015002,4368_156 -4358_80788,228,4368_5003,Stocking Ave,10182,0,4368_7778195_5015003,4368_156 -4358_80788,227,4368_5004,Stocking Ave,2522,0,4368_7778195_5015003,4368_156 -4358_80788,228,4368_5005,Stocking Ave,10264,0,4368_7778195_5015004,4368_156 -4358_80788,227,4368_5006,Stocking Ave,2361,0,4368_7778195_5015005,4368_156 -4358_80788,228,4368_5007,Stocking Ave,10207,0,4368_7778195_5015006,4368_156 -4358_80788,227,4368_5008,Stocking Ave,2543,0,4368_7778195_5015022,4368_156 -4358_80788,228,4368_5009,Stocking Ave,9994,0,4368_7778195_5015007,4368_156 -4358_80680,228,4368_501,St Pappin's Rd,8623,1,4368_7778195_1011001,4368_13 -4358_80788,227,4368_5010,Stocking Ave,2459,0,4368_7778195_5015008,4368_156 -4358_80788,228,4368_5011,Stocking Ave,10322,0,4368_7778195_5015009,4368_156 -4358_80788,227,4368_5012,Stocking Ave,2382,0,4368_7778195_5015011,4368_156 -4358_80788,228,4368_5013,Stocking Ave,10336,0,4368_7778195_5015011,4368_156 -4358_80788,228,4368_5014,Stocking Ave,10085,0,4368_7778195_5015008,4368_156 -4358_80788,227,4368_5015,Stocking Ave,2411,0,4368_7778195_5015015,4368_157 -4358_80788,228,4368_5016,Stocking Ave,10122,0,4368_7778195_5015010,4368_156 -4358_80788,227,4368_5017,Stocking Ave,2338,0,4368_7778195_5015016,4368_157 -4358_80788,229,4368_5018,Stocking Ave,16270,0,4368_7778195_5015001,4368_158 -4358_80788,227,4368_5019,Stocking Ave,2507,0,4368_7778195_5015010,4368_156 -4358_80680,229,4368_502,St Pappin's Rd,14883,1,4368_7778195_1011007,4368_12 -4358_80788,228,4368_5020,Stocking Ave,10184,0,4368_7778195_5015003,4368_157 -4358_80788,229,4368_5021,Stocking Ave,16378,0,4368_7778195_5015003,4368_156 -4358_80788,228,4368_5022,Stocking Ave,10266,0,4368_7778195_5015004,4368_157 -4358_80788,227,4368_5023,Stocking Ave,2566,0,4368_7778195_5015017,4368_158 -4358_80788,228,4368_5024,Stocking Ave,10209,0,4368_7778195_5015006,4368_156 -4358_80788,227,4368_5025,Stocking Ave,2398,0,4368_7778195_5015002,4368_157 -4358_80788,227,4368_5026,Stocking Ave,2363,0,4368_7778195_5015005,4368_156 -4358_80788,229,4368_5027,Stocking Ave,16399,0,4368_7778195_5015005,4368_157 -4358_80788,228,4368_5028,Stocking Ave,9996,0,4368_7778195_5015007,4368_158 -4358_80788,227,4368_5029,Stocking Ave,2574,0,4368_7778195_5015023,4368_156 -4358_80680,227,4368_503,St Pappin's Rd,671,1,4368_7778195_1011017,4368_13 -4358_80788,228,4368_5030,Stocking Ave,10324,0,4368_7778195_5015009,4368_157 -4358_80788,228,4368_5031,Stocking Ave,9982,0,4368_7778195_5015015,4368_156 -4358_80788,229,4368_5032,Stocking Ave,16182,0,4368_7778195_5015007,4368_157 -4358_80788,227,4368_5033,Stocking Ave,2545,0,4368_7778195_5015022,4368_158 -4358_80788,228,4368_5034,Stocking Ave,10338,0,4368_7778195_5015011,4368_156 -4358_80788,227,4368_5035,Stocking Ave,2461,0,4368_7778195_5015008,4368_157 -4358_80788,228,4368_5036,Stocking Ave,10087,0,4368_7778195_5015008,4368_156 -4358_80788,227,4368_5037,Stocking Ave,2384,0,4368_7778195_5015011,4368_157 -4358_80788,229,4368_5038,Stocking Ave,16272,0,4368_7778195_5015001,4368_158 -4358_80788,228,4368_5039,Stocking Ave,10124,0,4368_7778195_5015010,4368_156 -4358_80680,227,4368_504,St Pappin's Rd,626,1,4368_7778195_1011009,4368_12 -4358_80788,227,4368_5040,Stocking Ave,2413,0,4368_7778195_5015015,4368_157 -4358_80788,227,4368_5041,Stocking Ave,2340,0,4368_7778195_5015016,4368_156 -4358_80788,229,4368_5042,Stocking Ave,16380,0,4368_7778195_5015003,4368_157 -4358_80788,228,4368_5043,Stocking Ave,10186,0,4368_7778195_5015003,4368_158 -4358_80788,227,4368_5044,Stocking Ave,2509,0,4368_7778195_5015010,4368_156 -4358_80788,228,4368_5045,Stocking Ave,10268,0,4368_7778195_5015004,4368_157 -4358_80788,229,4368_5046,Stocking Ave,16158,0,4368_7778195_5015011,4368_156 -4358_80788,227,4368_5047,Stocking Ave,2568,0,4368_7778195_5015017,4368_156 -4358_80788,228,4368_5048,Stocking Ave,10211,0,4368_7778195_5015006,4368_157 -4358_80788,229,4368_5049,Stocking Ave,16401,0,4368_7778195_5015005,4368_156 -4358_80680,228,4368_505,St Pappin's Rd,8610,1,4368_7778195_1011003,4368_13 -4358_80788,228,4368_5050,Stocking Ave,10197,0,4368_7778195_5015016,4368_156 -4358_80788,227,4368_5051,Stocking Ave,2400,0,4368_7778195_5015002,4368_157 -4358_80788,227,4368_5052,Stocking Ave,2365,0,4368_7778195_5015005,4368_156 -4358_80788,229,4368_5053,Stocking Ave,16242,0,4368_7778195_5015012,4368_157 -4358_80788,228,4368_5054,Stocking Ave,9998,0,4368_7778195_5015007,4368_158 -4358_80788,227,4368_5055,Stocking Ave,2576,0,4368_7778195_5015023,4368_156 -4358_80788,228,4368_5056,Stocking Ave,10326,0,4368_7778195_5015009,4368_157 -4358_80788,229,4368_5057,Stocking Ave,16184,0,4368_7778195_5015007,4368_156 -4358_80788,228,4368_5058,Stocking Ave,9984,0,4368_7778195_5015015,4368_156 -4358_80788,227,4368_5059,Stocking Ave,2547,0,4368_7778195_5015022,4368_157 -4358_80680,229,4368_506,St Pappin's Rd,14853,1,4368_7778195_1011005,4368_12 -4358_80788,229,4368_5060,Stocking Ave,16332,0,4368_7778195_5015009,4368_156 -4358_80788,228,4368_5061,Stocking Ave,10340,0,4368_7778195_5015011,4368_156 -4358_80788,227,4368_5062,Stocking Ave,2463,0,4368_7778195_5015008,4368_157 -4358_80788,228,4368_5063,Stocking Ave,10089,0,4368_7778195_5015008,4368_156 -4358_80788,229,4368_5064,Stocking Ave,16261,0,4368_7778195_5015010,4368_157 -4358_80788,227,4368_5065,Stocking Ave,2386,0,4368_7778195_5015011,4368_158 -4358_80788,228,4368_5066,Stocking Ave,10126,0,4368_7778195_5015010,4368_156 -4358_80788,227,4368_5067,Stocking Ave,2415,0,4368_7778195_5015015,4368_157 -4358_80788,229,4368_5068,Stocking Ave,16382,0,4368_7778195_5015003,4368_156 -4358_80788,227,4368_5069,Stocking Ave,2342,0,4368_7778195_5015016,4368_156 -4358_80680,227,4368_507,St Pappin's Rd,718,1,4368_7778195_1011018,4368_12 -4358_80788,228,4368_5070,Stocking Ave,10188,0,4368_7778195_5015003,4368_157 -4358_80788,229,4368_5071,Stocking Ave,16160,0,4368_7778195_5015011,4368_156 -4358_80788,227,4368_5072,Stocking Ave,2511,0,4368_7778195_5015010,4368_156 -4358_80788,228,4368_5073,Stocking Ave,10270,0,4368_7778195_5015004,4368_157 -4358_80788,229,4368_5074,Stocking Ave,16323,0,4368_7778195_5015013,4368_156 -4358_80788,227,4368_5075,Stocking Ave,2570,0,4368_7778195_5015017,4368_157 -4358_80788,228,4368_5076,Stocking Ave,10213,0,4368_7778195_5015006,4368_158 -4358_80788,228,4368_5077,Stocking Ave,10199,0,4368_7778195_5015016,4368_156 -4358_80788,229,4368_5078,Stocking Ave,16244,0,4368_7778195_5015012,4368_156 -4358_80788,227,4368_5079,Stocking Ave,2367,0,4368_7778195_5015005,4368_156 -4358_80680,228,4368_508,St Pappin's Rd,8574,1,4368_7778195_1011004,4368_12 -4358_80788,228,4368_5080,Stocking Ave,10000,0,4368_7778195_5015007,4368_157 -4358_80788,229,4368_5081,Stocking Ave,16338,0,4368_7778195_5015014,4368_156 -4358_80788,227,4368_5082,Stocking Ave,2578,0,4368_7778195_5015023,4368_156 -4358_80788,228,4368_5083,Stocking Ave,10328,0,4368_7778195_5015009,4368_157 -4358_80788,228,4368_5084,Stocking Ave,9986,0,4368_7778195_5015015,4368_156 -4358_80788,229,4368_5085,Stocking Ave,16186,0,4368_7778195_5015007,4368_157 -4358_80788,227,4368_5086,Stocking Ave,2549,0,4368_7778195_5015022,4368_158 -4358_80788,228,4368_5087,Stocking Ave,10342,0,4368_7778195_5015011,4368_156 -4358_80788,227,4368_5088,Stocking Ave,2465,0,4368_7778195_5015008,4368_157 -4358_80788,229,4368_5089,Stocking Ave,16334,0,4368_7778195_5015009,4368_156 -4358_80680,227,4368_509,St Pappin's Rd,616,1,4368_7778195_1011019,4368_12 -4358_80788,228,4368_5090,Stocking Ave,10091,0,4368_7778195_5015008,4368_156 -4358_80788,227,4368_5091,Stocking Ave,2388,0,4368_7778195_5015011,4368_157 -4358_80788,229,4368_5092,Stocking Ave,16263,0,4368_7778195_5015010,4368_156 -4358_80788,228,4368_5093,Stocking Ave,10128,0,4368_7778195_5015010,4368_156 -4358_80788,227,4368_5094,Stocking Ave,2417,0,4368_7778195_5015015,4368_157 -4358_80788,229,4368_5095,Stocking Ave,16384,0,4368_7778195_5015003,4368_156 -4358_80788,228,4368_5096,Stocking Ave,10190,0,4368_7778195_5015003,4368_157 -4358_80788,227,4368_5097,Stocking Ave,2513,0,4368_7778195_5015010,4368_156 -4358_80788,228,4368_5098,Stocking Ave,10272,0,4368_7778195_5015004,4368_157 -4358_80788,229,4368_5099,Stocking Ave,16162,0,4368_7778195_5015011,4368_156 -4358_80760,229,4368_51,Shaw street,15585,0,4368_7778195_9001004,4368_1 -4358_80680,229,4368_510,St Pappin's Rd,14804,1,4368_7778195_1011001,4368_12 -4358_80788,227,4368_5100,Stocking Ave,2498,0,4368_7778195_5015026,4368_156 -4358_80788,228,4368_5101,Stocking Ave,10215,0,4368_7778195_5015006,4368_156 -4358_80788,227,4368_5102,Stocking Ave,2572,0,4368_7778195_5015017,4368_156 -4358_80788,229,4368_5103,Stocking Ave,16325,0,4368_7778195_5015013,4368_156 -4358_80788,228,4368_5104,Stocking Ave,10201,0,4368_7778195_5015016,4368_156 -4358_80788,227,4368_5105,Stocking Ave,2404,0,4368_7778195_5015002,4368_157 -4358_80788,227,4368_5106,Stocking Ave,2520,0,4368_7778195_5015024,4368_156 -4358_80788,229,4368_5107,Stocking Ave,16246,0,4368_7778195_5015012,4368_156 -4358_80788,228,4368_5108,Stocking Ave,10002,0,4368_7778195_5015007,4368_157 -4358_80788,227,4368_5109,Stocking Ave,2556,0,4368_7778195_5015028,4368_156 -4358_80680,228,4368_511,St Pappin's Rd,8554,1,4368_7778195_1011005,4368_12 -4358_80788,227,4368_5110,Stocking Ave,2369,0,4368_7778195_5015005,4368_156 -4358_80788,228,4368_5111,Stocking Ave,10330,0,4368_7778195_5015009,4368_157 -4358_80788,229,4368_5112,Stocking Ave,16340,0,4368_7778195_5015014,4368_156 -4358_80788,228,4368_5113,Stocking Ave,9988,0,4368_7778195_5015015,4368_156 -4358_80788,227,4368_5114,Stocking Ave,2580,0,4368_7778195_5015023,4368_156 -4358_80788,229,4368_5115,Stocking Ave,16188,0,4368_7778195_5015007,4368_156 -4358_80788,228,4368_5116,Stocking Ave,10344,0,4368_7778195_5015011,4368_156 -4358_80788,227,4368_5117,Stocking Ave,2467,0,4368_7778195_5015008,4368_156 -4358_80788,228,4368_5118,Stocking Ave,10093,0,4368_7778195_5015008,4368_156 -4358_80788,229,4368_5119,Stocking Ave,16336,0,4368_7778195_5015009,4368_157 -4358_80680,227,4368_512,St Pappin's Rd,725,1,4368_7778195_1011014,4368_13 -4358_80788,228,4368_5120,Stocking Ave,10130,0,4368_7778195_5015010,4368_156 -4358_80788,227,4368_5121,Stocking Ave,2390,0,4368_7778195_5015011,4368_157 -4358_80788,229,4368_5122,Stocking Ave,16164,0,4368_7778195_5015015,4368_156 -4358_80788,228,4368_5123,Stocking Ave,10192,0,4368_7778195_5015003,4368_156 -4358_80788,227,4368_5124,Stocking Ave,2419,0,4368_7778195_5015015,4368_157 -4358_80788,227,4368_5125,Stocking Ave,2515,0,4368_7778195_5015010,4368_156 -4358_80788,228,4368_5126,Stocking Ave,10217,0,4368_7778195_5015006,4368_157 -4358_80788,229,4368_5127,Stocking Ave,16248,0,4368_7778195_5015012,4368_156 -4358_80788,227,4368_5128,Stocking Ave,2500,0,4368_7778195_5015026,4368_156 -4358_80788,228,4368_5129,Stocking Ave,10203,0,4368_7778195_5015016,4368_157 -4358_80680,229,4368_513,St Pappin's Rd,14830,1,4368_7778195_1011002,4368_12 -4358_80788,229,4368_5130,Stocking Ave,16342,0,4368_7778195_5015014,4368_156 -4358_80788,228,4368_5131,Stocking Ave,10042,0,4368_7778195_5015018,4368_156 -4358_80788,227,4368_5132,Stocking Ave,2406,0,4368_7778195_5015002,4368_157 -4358_80788,227,4368_5133,Stocking Ave,2582,0,4368_7778195_5015023,4368_156 -4358_80788,228,4368_5134,Stocking Ave,10332,0,4368_7778195_5015009,4368_157 -4358_80788,229,4368_5135,Stocking Ave,16301,0,4368_7778195_5015016,4368_156 -4358_80788,228,4368_5136,Stocking Ave,10346,0,4368_7778195_5015011,4368_156 -4358_80788,227,4368_5137,Stocking Ave,2469,0,4368_7778195_5015008,4368_157 -4358_80788,229,4368_5138,Stocking Ave,16166,0,4368_7778195_5015015,4368_156 -4358_80788,228,4368_5139,Stocking Ave,10095,0,4368_7778195_5015008,4368_156 -4358_80680,227,4368_514,St Pappin's Rd,699,1,4368_7778195_1011006,4368_12 -4358_80788,227,4368_5140,Stocking Ave,2392,0,4368_7778195_5015011,4368_157 -4358_80788,228,4368_5141,Stocking Ave,10132,0,4368_7778195_5015010,4368_156 -4358_80788,227,4368_5142,Stocking Ave,2421,0,4368_7778195_5015015,4368_157 -4358_80788,229,4368_5143,Stocking Ave,16250,0,4368_7778195_5015012,4368_156 -4358_80788,227,4368_5144,Stocking Ave,2517,0,4368_7778195_5015010,4368_156 -4358_80788,228,4368_5145,Stocking Ave,10194,0,4368_7778195_5015003,4368_157 -4358_80788,229,4368_5146,Stocking Ave,16344,0,4368_7778195_5015014,4368_156 -4358_80788,228,4368_5147,Stocking Ave,10219,0,4368_7778195_5015006,4368_156 -4358_80788,227,4368_5148,Stocking Ave,2408,0,4368_7778195_5015002,4368_157 -4358_80788,227,4368_5149,Stocking Ave,2584,0,4368_7778195_5015023,4368_156 -4358_80680,228,4368_515,St Pappin's Rd,8563,1,4368_7778195_1011007,4368_12 -4358_80788,228,4368_5150,Stocking Ave,10205,0,4368_7778195_5015016,4368_157 -4358_80788,229,4368_5151,Stocking Ave,16303,0,4368_7778195_5015016,4368_156 -4358_80788,228,4368_5152,Stocking Ave,10334,0,4368_7778195_5015009,4368_156 -4358_80788,227,4368_5153,Stocking Ave,2471,0,4368_7778195_5015008,4368_157 -4358_80788,229,4368_5154,Stocking Ave,16168,0,4368_7778195_5015015,4368_156 -4358_80788,228,4368_5155,Stocking Ave,10097,0,4368_7778195_5015008,4368_156 -4358_80788,227,4368_5156,Stocking Ave,2394,0,4368_7778195_5015011,4368_157 -4358_80788,227,4368_5157,Merrion Square,2455,1,4368_7778195_5015001,4368_159 -4358_80788,227,4368_5158,Merrion Square,2395,1,4368_7778195_5015002,4368_159 -4358_80788,228,4368_5159,Merrion Square,10181,1,4368_7778195_5015003,4368_159 -4358_80680,227,4368_516,St Pappin's Rd,691,1,4368_7778195_1011020,4368_12 -4358_80788,227,4368_5160,Merrion Square,2521,1,4368_7778195_5015003,4368_160 -4358_80788,227,4368_5161,Merrion Square,2360,1,4368_7778195_5015005,4368_159 -4358_80788,228,4368_5162,Merrion Square,10263,1,4368_7778195_5015004,4368_160 -4358_80788,227,4368_5163,Merrion Square,2458,1,4368_7778195_5015008,4368_159 -4358_80788,228,4368_5164,Merrion Square,10206,1,4368_7778195_5015006,4368_160 -4358_80788,227,4368_5165,Merrion Square,2381,1,4368_7778195_5015011,4368_159 -4358_80788,228,4368_5166,Merrion Square,9993,1,4368_7778195_5015007,4368_159 -4358_80788,227,4368_5167,Merrion Square,2555,1,4368_7778195_5015006,4368_159 -4358_80788,228,4368_5168,Merrion Square,10321,1,4368_7778195_5015009,4368_159 -4358_80788,227,4368_5169,Merrion Square,2410,1,4368_7778195_5015015,4368_160 -4358_80680,229,4368_517,St Pappin's Rd,14902,1,4368_7778195_1011006,4368_12 -4358_80788,227,4368_5170,Merrion Square,2337,1,4368_7778195_5015016,4368_159 -4358_80788,228,4368_5171,Merrion Square,10335,1,4368_7778195_5015011,4368_159 -4358_80788,227,4368_5172,Merrion Square,2506,1,4368_7778195_5015010,4368_159 -4358_80788,228,4368_5173,Merrion Square,10084,1,4368_7778195_5015008,4368_159 -4358_80788,227,4368_5174,Merrion Square,2380,1,4368_7778195_5015013,4368_160 -4358_80788,228,4368_5175,Merrion Square,10121,1,4368_7778195_5015010,4368_159 -4358_80788,227,4368_5176,Merrion Square,2457,1,4368_7778195_5015001,4368_160 -4358_80788,229,4368_5177,Merrion Square,16269,1,4368_7778195_5015001,4368_161 -4358_80788,228,4368_5178,Merrion Square,10183,1,4368_7778195_5015003,4368_159 -4358_80788,227,4368_5179,Merrion Square,2397,1,4368_7778195_5015002,4368_160 -4358_80680,228,4368_518,St Pappin's Rd,8603,1,4368_7778195_1011002,4368_12 -4358_80788,229,4368_5180,Merrion Square,16377,1,4368_7778195_5015003,4368_159 -4358_80788,228,4368_5181,Merrion Square,10265,1,4368_7778195_5015004,4368_160 -4358_80788,227,4368_5182,Merrion Square,2523,1,4368_7778195_5015003,4368_161 -4358_80788,227,4368_5183,Merrion Square,2362,1,4368_7778195_5015005,4368_159 -4358_80788,228,4368_5184,Merrion Square,10208,1,4368_7778195_5015006,4368_160 -4358_80788,227,4368_5185,Merrion Square,2573,1,4368_7778195_5015023,4368_159 -4358_80788,229,4368_5186,Merrion Square,16398,1,4368_7778195_5015005,4368_160 -4358_80788,228,4368_5187,Merrion Square,9995,1,4368_7778195_5015007,4368_161 -4358_80788,228,4368_5188,Merrion Square,10323,1,4368_7778195_5015009,4368_159 -4358_80788,227,4368_5189,Merrion Square,2544,1,4368_7778195_5015022,4368_160 -4358_80680,227,4368_519,St Pappin's Rd,637,1,4368_7778195_1011011,4368_13 -4358_80788,228,4368_5190,Merrion Square,10337,1,4368_7778195_5015011,4368_159 -4358_80788,229,4368_5191,Merrion Square,16181,1,4368_7778195_5015007,4368_160 -4358_80788,227,4368_5192,Merrion Square,2460,1,4368_7778195_5015008,4368_161 -4358_80788,228,4368_5193,Merrion Square,10086,1,4368_7778195_5015008,4368_159 -4358_80788,227,4368_5194,Merrion Square,2383,1,4368_7778195_5015011,4368_160 -4358_80788,228,4368_5195,Merrion Square,10123,1,4368_7778195_5015010,4368_159 -4358_80788,227,4368_5196,Merrion Square,2412,1,4368_7778195_5015015,4368_160 -4358_80788,229,4368_5197,Merrion Square,16271,1,4368_7778195_5015001,4368_161 -4358_80788,227,4368_5198,Merrion Square,2339,1,4368_7778195_5015016,4368_159 -4358_80788,228,4368_5199,Merrion Square,10185,1,4368_7778195_5015003,4368_160 -4358_80760,227,4368_52,Shaw street,1590,0,4368_7778195_9001005,4368_1 -4358_80680,229,4368_520,St Pappin's Rd,14885,1,4368_7778195_1011007,4368_12 -4358_80788,229,4368_5200,Merrion Square,16379,1,4368_7778195_5015003,4368_159 -4358_80788,227,4368_5201,Merrion Square,2508,1,4368_7778195_5015010,4368_160 -4358_80788,228,4368_5202,Merrion Square,10267,1,4368_7778195_5015004,4368_161 -4358_80788,227,4368_5203,Merrion Square,2567,1,4368_7778195_5015017,4368_159 -4358_80788,228,4368_5204,Merrion Square,10210,1,4368_7778195_5015006,4368_160 -4358_80788,229,4368_5205,Merrion Square,16400,1,4368_7778195_5015005,4368_159 -4358_80788,228,4368_5206,Merrion Square,10196,1,4368_7778195_5015016,4368_160 -4358_80788,227,4368_5207,Merrion Square,2399,1,4368_7778195_5015002,4368_161 -4358_80788,227,4368_5208,Merrion Square,2364,1,4368_7778195_5015005,4368_159 -4358_80788,228,4368_5209,Merrion Square,9997,1,4368_7778195_5015007,4368_160 -4358_80680,227,4368_521,St Pappin's Rd,612,1,4368_7778195_1011003,4368_12 -4358_80788,227,4368_5210,Merrion Square,2575,1,4368_7778195_5015023,4368_159 -4358_80788,228,4368_5211,Merrion Square,10325,1,4368_7778195_5015009,4368_160 -4358_80788,229,4368_5212,Merrion Square,16183,1,4368_7778195_5015007,4368_161 -4358_80788,228,4368_5213,Merrion Square,9983,1,4368_7778195_5015015,4368_159 -4358_80788,227,4368_5214,Merrion Square,2546,1,4368_7778195_5015022,4368_160 -4358_80788,229,4368_5215,Merrion Square,16331,1,4368_7778195_5015009,4368_159 -4358_80788,228,4368_5216,Merrion Square,10339,1,4368_7778195_5015011,4368_159 -4358_80788,227,4368_5217,Merrion Square,2462,1,4368_7778195_5015008,4368_160 -4358_80788,229,4368_5218,Merrion Square,16260,1,4368_7778195_5015010,4368_159 -4358_80788,228,4368_5219,Merrion Square,10088,1,4368_7778195_5015008,4368_159 -4358_80680,228,4368_522,St Pappin's Rd,8580,1,4368_7778195_1011006,4368_12 -4358_80788,227,4368_5220,Merrion Square,2385,1,4368_7778195_5015011,4368_160 -4358_80788,228,4368_5221,Merrion Square,10125,1,4368_7778195_5015010,4368_159 -4358_80788,229,4368_5222,Merrion Square,16381,1,4368_7778195_5015003,4368_160 -4358_80788,227,4368_5223,Merrion Square,2414,1,4368_7778195_5015015,4368_161 -4358_80788,227,4368_5224,Merrion Square,2341,1,4368_7778195_5015016,4368_159 -4358_80788,228,4368_5225,Merrion Square,10187,1,4368_7778195_5015003,4368_160 -4358_80788,229,4368_5226,Merrion Square,16159,1,4368_7778195_5015011,4368_159 -4358_80788,227,4368_5227,Merrion Square,2510,1,4368_7778195_5015010,4368_159 -4358_80788,228,4368_5228,Merrion Square,10269,1,4368_7778195_5015004,4368_160 -4358_80788,229,4368_5229,Merrion Square,16322,1,4368_7778195_5015013,4368_159 -4358_80680,229,4368_523,St Pappin's Rd,14855,1,4368_7778195_1011005,4368_12 -4358_80788,227,4368_5230,Merrion Square,2569,1,4368_7778195_5015017,4368_159 -4358_80788,228,4368_5231,Merrion Square,10212,1,4368_7778195_5015006,4368_160 -4358_80788,229,4368_5232,Merrion Square,16243,1,4368_7778195_5015012,4368_159 -4358_80788,228,4368_5233,Merrion Square,10198,1,4368_7778195_5015016,4368_160 -4358_80788,227,4368_5234,Merrion Square,2401,1,4368_7778195_5015002,4368_161 -4358_80788,227,4368_5235,Merrion Square,2366,1,4368_7778195_5015005,4368_159 -4358_80788,228,4368_5236,Merrion Square,9999,1,4368_7778195_5015007,4368_160 -4358_80788,229,4368_5237,Merrion Square,16337,1,4368_7778195_5015014,4368_159 -4358_80788,227,4368_5238,Merrion Square,2577,1,4368_7778195_5015023,4368_159 -4358_80788,228,4368_5239,Merrion Square,10327,1,4368_7778195_5015009,4368_160 -4358_80680,227,4368_524,St Pappin's Rd,576,1,4368_7778195_1011016,4368_12 -4358_80788,229,4368_5240,Merrion Square,16185,1,4368_7778195_5015007,4368_159 -4358_80788,228,4368_5241,Merrion Square,9985,1,4368_7778195_5015015,4368_159 -4358_80788,227,4368_5242,Merrion Square,2548,1,4368_7778195_5015022,4368_160 -4358_80788,228,4368_5243,Merrion Square,10341,1,4368_7778195_5015011,4368_159 -4358_80788,229,4368_5244,Merrion Square,16333,1,4368_7778195_5015009,4368_160 -4358_80788,227,4368_5245,Merrion Square,2464,1,4368_7778195_5015008,4368_161 -4358_80788,228,4368_5246,Merrion Square,10090,1,4368_7778195_5015008,4368_159 -4358_80788,227,4368_5247,Merrion Square,2387,1,4368_7778195_5015011,4368_160 -4358_80788,229,4368_5248,Merrion Square,16262,1,4368_7778195_5015010,4368_159 -4358_80788,228,4368_5249,Merrion Square,10127,1,4368_7778195_5015010,4368_159 -4358_80680,228,4368_525,St Pappin's Rd,8625,1,4368_7778195_1011001,4368_12 -4358_80788,227,4368_5250,Merrion Square,2416,1,4368_7778195_5015015,4368_160 -4358_80788,229,4368_5251,Merrion Square,16383,1,4368_7778195_5015003,4368_159 -4358_80788,227,4368_5252,Merrion Square,2343,1,4368_7778195_5015016,4368_159 -4358_80788,228,4368_5253,Merrion Square,10189,1,4368_7778195_5015003,4368_160 -4358_80788,227,4368_5254,Merrion Square,2512,1,4368_7778195_5015010,4368_159 -4358_80788,228,4368_5255,Merrion Square,10271,1,4368_7778195_5015004,4368_160 -4358_80788,229,4368_5256,Merrion Square,16161,1,4368_7778195_5015011,4368_161 -4358_80788,227,4368_5257,Merrion Square,2571,1,4368_7778195_5015017,4368_159 -4358_80788,228,4368_5258,Merrion Square,10214,1,4368_7778195_5015006,4368_160 -4358_80788,229,4368_5259,Merrion Square,16324,1,4368_7778195_5015013,4368_159 -4358_80680,227,4368_526,St Pappin's Rd,673,1,4368_7778195_1011017,4368_12 -4358_80788,228,4368_5260,Merrion Square,10200,1,4368_7778195_5015016,4368_159 -4358_80788,227,4368_5261,Merrion Square,2403,1,4368_7778195_5015002,4368_160 -4358_80788,229,4368_5262,Merrion Square,16245,1,4368_7778195_5015012,4368_159 -4358_80788,228,4368_5263,Merrion Square,10001,1,4368_7778195_5015007,4368_159 -4358_80788,227,4368_5264,Merrion Square,2519,1,4368_7778195_5015024,4368_160 -4358_80788,227,4368_5265,Merrion Square,2368,1,4368_7778195_5015005,4368_159 -4358_80788,229,4368_5266,Merrion Square,16339,1,4368_7778195_5015014,4368_160 -4358_80788,228,4368_5267,Merrion Square,10329,1,4368_7778195_5015009,4368_161 -4358_80788,227,4368_5268,Merrion Square,2579,1,4368_7778195_5015023,4368_159 -4358_80788,228,4368_5269,Merrion Square,9987,1,4368_7778195_5015015,4368_160 -4358_80680,229,4368_527,St Pappin's Rd,14806,1,4368_7778195_1011001,4368_12 -4358_80788,229,4368_5270,Merrion Square,16187,1,4368_7778195_5015007,4368_159 -4358_80788,228,4368_5271,Merrion Square,10343,1,4368_7778195_5015011,4368_159 -4358_80788,227,4368_5272,Merrion Square,2550,1,4368_7778195_5015022,4368_160 -4358_80788,229,4368_5273,Merrion Square,16335,1,4368_7778195_5015009,4368_159 -4358_80788,228,4368_5274,Merrion Square,10092,1,4368_7778195_5015008,4368_159 -4358_80788,227,4368_5275,Merrion Square,2466,1,4368_7778195_5015008,4368_160 -4358_80788,228,4368_5276,Merrion Square,10129,1,4368_7778195_5015010,4368_159 -4358_80788,229,4368_5277,Merrion Square,16264,1,4368_7778195_5015010,4368_160 -4358_80788,227,4368_5278,Merrion Square,2389,1,4368_7778195_5015011,4368_161 -4358_80788,228,4368_5279,Merrion Square,10191,1,4368_7778195_5015003,4368_159 -4358_80680,227,4368_528,St Pappin's Rd,628,1,4368_7778195_1011009,4368_12 -4358_80788,227,4368_5280,Merrion Square,2418,1,4368_7778195_5015015,4368_160 -4358_80788,229,4368_5281,Merrion Square,16163,1,4368_7778195_5015011,4368_159 -4358_80788,227,4368_5282,Merrion Square,2345,1,4368_7778195_5015016,4368_159 -4358_80788,228,4368_5283,Merrion Square,10273,1,4368_7778195_5015004,4368_160 -4358_80788,229,4368_5284,Merrion Square,16326,1,4368_7778195_5015013,4368_159 -4358_80788,227,4368_5285,Merrion Square,2514,1,4368_7778195_5015010,4368_159 -4358_80788,228,4368_5286,Merrion Square,10216,1,4368_7778195_5015006,4368_160 -4358_80788,227,4368_5287,Merrion Square,2499,1,4368_7778195_5015026,4368_159 -4358_80788,229,4368_5288,Merrion Square,16247,1,4368_7778195_5015012,4368_160 -4358_80788,228,4368_5289,Merrion Square,10202,1,4368_7778195_5015016,4368_161 -4358_80680,228,4368_529,St Pappin's Rd,8612,1,4368_7778195_1011003,4368_13 -4358_80788,228,4368_5290,Merrion Square,10041,1,4368_7778195_5015018,4368_159 -4358_80788,227,4368_5291,Merrion Square,2405,1,4368_7778195_5015002,4368_160 -4358_80788,229,4368_5292,Merrion Square,16341,1,4368_7778195_5015014,4368_159 -4358_80788,227,4368_5293,Merrion Square,2557,1,4368_7778195_5015028,4368_159 -4358_80788,228,4368_5294,Merrion Square,10331,1,4368_7778195_5015009,4368_160 -4358_80788,227,4368_5295,Merrion Square,2581,1,4368_7778195_5015023,4368_159 -4358_80788,228,4368_5296,Merrion Square,10345,1,4368_7778195_5015011,4368_160 -4358_80788,229,4368_5297,Merrion Square,16300,1,4368_7778195_5015016,4368_159 -4358_80788,228,4368_5298,Merrion Square,10094,1,4368_7778195_5015008,4368_159 -4358_80788,227,4368_5299,Merrion Square,2468,1,4368_7778195_5015008,4368_160 -4358_80760,228,4368_53,Shaw street,9316,0,4368_7778195_9001002,4368_1 -4358_80680,229,4368_530,St Pappin's Rd,14832,1,4368_7778195_1011002,4368_12 -4358_80788,229,4368_5300,Merrion Square,16165,1,4368_7778195_5015015,4368_159 -4358_80788,228,4368_5301,Merrion Square,10131,1,4368_7778195_5015010,4368_159 -4358_80788,227,4368_5302,Merrion Square,2391,1,4368_7778195_5015011,4368_160 -4358_80788,228,4368_5303,Merrion Square,10193,1,4368_7778195_5015003,4368_159 -4358_80788,227,4368_5304,Merrion Square,2420,1,4368_7778195_5015015,4368_160 -4358_80788,229,4368_5305,Merrion Square,16249,1,4368_7778195_5015012,4368_159 -4358_80788,227,4368_5306,Merrion Square,2516,1,4368_7778195_5015010,4368_159 -4358_80788,228,4368_5307,Merrion Square,10218,1,4368_7778195_5015006,4368_160 -4358_80788,229,4368_5308,Merrion Square,16343,1,4368_7778195_5015014,4368_159 -4358_80788,228,4368_5309,Merrion Square,10204,1,4368_7778195_5015016,4368_159 -4358_80680,227,4368_531,St Pappin's Rd,618,1,4368_7778195_1011019,4368_12 -4358_80788,227,4368_5310,Merrion Square,2407,1,4368_7778195_5015002,4368_160 -4358_80788,227,4368_5311,Merrion Square,2583,1,4368_7778195_5015023,4368_159 -4358_80788,228,4368_5312,Merrion Square,10333,1,4368_7778195_5015009,4368_160 -4358_80788,229,4368_5313,Merrion Square,16302,1,4368_7778195_5015016,4368_159 -4358_80788,228,4368_5314,Merrion Square,10347,1,4368_7778195_5015011,4368_159 -4358_80788,227,4368_5315,Merrion Square,2470,1,4368_7778195_5015008,4368_160 -4358_80788,229,4368_5316,Merrion Square,16167,1,4368_7778195_5015015,4368_159 -4358_80788,228,4368_5317,Merrion Square,10096,1,4368_7778195_5015008,4368_159 -4358_80788,227,4368_5318,Merrion Square,2393,1,4368_7778195_5015011,4368_160 -4358_80788,228,4368_5319,Merrion Square,10133,1,4368_7778195_5015010,4368_159 -4358_80680,228,4368_532,St Pappin's Rd,8556,1,4368_7778195_1011005,4368_13 -4358_80788,227,4368_5320,Merrion Square,2422,1,4368_7778195_5015015,4368_160 -4358_80788,229,4368_5321,Merrion Square,16251,1,4368_7778195_5015012,4368_159 -4358_80788,227,4368_5322,Merrion Square,2518,1,4368_7778195_5015010,4368_159 -4358_80788,228,4368_5323,Merrion Square,10195,1,4368_7778195_5015003,4368_160 -4358_80788,229,4368_5324,Merrion Square,16345,1,4368_7778195_5015014,4368_159 -4358_80788,228,4368_5325,Merrion Square,10220,1,4368_7778195_5015006,4368_159 -4358_80788,227,4368_5326,Merrion Square,2409,1,4368_7778195_5015002,4368_160 -4358_80789,227,4368_5327,Whitechurch,2402,0,4368_7778195_5015002,4368_162 -4358_80789,227,4368_5328,Whitechurch,2344,0,4368_7778195_5015016,4368_162 -4358_80789,227,4368_5329,Merrion Square,2565,1,4368_7778195_5015017,4368_163 -4358_80680,229,4368_533,St Pappin's Rd,14904,1,4368_7778195_1011006,4368_12 -4358_80685,227,4368_5330,Ballinteer,1811,0,4368_7778195_9016004,4368_164 -4358_80685,228,4368_5331,Ballinteer,9461,0,4368_7778195_9016004,4368_165 -4358_80685,227,4368_5332,Ballinteer,1672,0,4368_7778195_9016006,4368_164 -4358_80685,228,4368_5333,Ballinteer,9330,0,4368_7778195_9016006,4368_165 -4358_80685,228,4368_5334,Ballinteer,9562,0,4368_7778195_9016008,4368_164 -4358_80685,227,4368_5335,Ballinteer,1875,0,4368_7778195_9016008,4368_165 -4358_80685,228,4368_5336,Ballinteer,9537,0,4368_7778195_9016001,4368_164 -4358_80685,227,4368_5337,Ballinteer,1734,0,4368_7778195_9016011,4368_165 -4358_80685,228,4368_5338,Ballinteer,9569,0,4368_7778195_9016010,4368_164 -4358_80685,227,4368_5339,Ballinteer,1724,0,4368_7778195_9016013,4368_165 -4358_80680,227,4368_534,St Pappin's Rd,727,1,4368_7778195_1011014,4368_12 -4358_80685,228,4368_5340,Ballinteer,9548,0,4368_7778195_9016002,4368_164 -4358_80685,227,4368_5341,Ballinteer,1780,0,4368_7778195_9016001,4368_164 -4358_80685,228,4368_5342,Ballinteer,9400,0,4368_7778195_9016003,4368_164 -4358_80685,227,4368_5343,Ballinteer,1865,0,4368_7778195_9016003,4368_164 -4358_80685,228,4368_5344,Ballinteer,9556,0,4368_7778195_9016005,4368_164 -4358_80685,227,4368_5345,Ballinteer,1681,0,4368_7778195_9016005,4368_164 -4358_80685,229,4368_5346,Ballinteer,15600,0,4368_7778195_9016004,4368_165 -4358_80685,228,4368_5347,Ballinteer,9362,0,4368_7778195_9016007,4368_168 -4358_80685,229,4368_5348,Ballinteer,15559,0,4368_7778195_9016006,4368_164 -4358_80685,228,4368_5349,Ballinteer,13352,0,4368_7778195_9016009,4368_165 -4358_80680,228,4368_535,St Pappin's Rd,8565,1,4368_7778195_1011007,4368_13 -4358_80685,227,4368_5350,Ballinteer,1749,0,4368_7778195_9016023,4368_164 -4358_80685,229,4368_5351,Ballinteer,15577,0,4368_7778195_9016008,4368_164 -4358_80685,228,4368_5352,Ballinteer,13362,0,4368_7778195_9016011,4368_165 -4358_80685,227,4368_5353,Ballinteer,3128,0,4368_7778195_9016009,4368_164 -4358_80685,229,4368_5354,Ballinteer,15632,0,4368_7778195_9016010,4368_164 -4358_80685,228,4368_5355,Ballinteer,9393,0,4368_7778195_9016012,4368_165 -4358_80685,228,4368_5356,Ballinteer,9463,0,4368_7778195_9016004,4368_164 -4358_80685,227,4368_5357,Ballinteer,1857,0,4368_7778195_9016010,4368_165 -4358_80685,229,4368_5358,Ballinteer,15651,0,4368_7778195_9016012,4368_168 -4358_80685,227,4368_5359,Ballinteer,3119,0,4368_7778195_9016012,4368_164 -4358_80680,229,4368_536,St Pappin's Rd,14887,1,4368_7778195_1011007,4368_12 -4358_80685,228,4368_5360,Ballinteer,9272,0,4368_7778195_9016014,4368_164 -4358_80685,229,4368_5361,Ballinteer,15642,0,4368_7778195_9016001,4368_164 -4358_80685,227,4368_5362,Ballinteer,3154,0,4368_7778195_9016014,4368_164 -4358_80685,228,4368_5363,Ballinteer,9332,0,4368_7778195_9016006,4368_164 -4358_80685,227,4368_5364,Ballinteer,1530,0,4368_7778195_9016016,4368_164 -4358_80685,229,4368_5365,Ballinteer,15492,0,4368_7778195_9016002,4368_165 -4358_80685,228,4368_5366,Ballinteer,9564,0,4368_7778195_9016008,4368_164 -4358_80685,227,4368_5367,Ballinteer,1576,0,4368_7778195_9016017,4368_164 -4358_80685,229,4368_5368,Ballinteer,15535,0,4368_7778195_9016003,4368_164 -4358_80685,228,4368_5369,Ballinteer,9539,0,4368_7778195_9016001,4368_164 -4358_80680,228,4368_537,St Pappin's Rd,8582,1,4368_7778195_1011006,4368_12 -4358_80685,227,4368_5370,Ballinteer,1774,0,4368_7778195_9016018,4368_164 -4358_80685,229,4368_5371,Ballinteer,15526,0,4368_7778195_9016005,4368_164 -4358_80685,228,4368_5372,Ballinteer,9571,0,4368_7778195_9016010,4368_165 -4358_80685,227,4368_5373,Ballinteer,1761,0,4368_7778195_9016019,4368_164 -4358_80685,228,4368_5374,Ballinteer,9287,0,4368_7778195_9016016,4368_164 -4358_80685,229,4368_5375,Ballinteer,15569,0,4368_7778195_9016007,4368_164 -4358_80685,227,4368_5376,Ballinteer,1790,0,4368_7778195_9016021,4368_164 -4358_80685,228,4368_5377,Ballinteer,9550,0,4368_7778195_9016002,4368_164 -4358_80685,227,4368_5378,Ballinteer,1833,0,4368_7778195_9016022,4368_164 -4358_80685,229,4368_5379,Ballinteer,15607,0,4368_7778195_9016009,4368_165 -4358_80680,227,4368_538,St Pappin's Rd,701,1,4368_7778195_1011006,4368_13 -4358_80685,228,4368_5380,Ballinteer,9402,0,4368_7778195_9016003,4368_164 -4358_80685,227,4368_5381,Ballinteer,1877,0,4368_7778195_9016008,4368_164 -4358_80685,229,4368_5382,Ballinteer,15616,0,4368_7778195_9016011,4368_164 -4358_80685,228,4368_5383,Ballinteer,9472,0,4368_7778195_9016013,4368_164 -4358_80685,227,4368_5384,Ballinteer,1736,0,4368_7778195_9016011,4368_164 -4358_80685,228,4368_5385,Ballinteer,9295,0,4368_7778195_9016018,4368_164 -4358_80685,229,4368_5386,Ballinteer,15676,0,4368_7778195_9016013,4368_165 -4358_80685,227,4368_5387,Ballinteer,1691,0,4368_7778195_9016015,4368_164 -4358_80685,228,4368_5388,Ballinteer,9558,0,4368_7778195_9016005,4368_164 -4358_80685,229,4368_5389,Ballinteer,15703,0,4368_7778195_9016014,4368_164 -4358_80680,229,4368_539,St Pappin's Rd,14857,1,4368_7778195_1011005,4368_12 -4358_80685,227,4368_5390,Ballinteer,1726,0,4368_7778195_9016013,4368_164 -4358_80685,228,4368_5391,Ballinteer,9364,0,4368_7778195_9016007,4368_164 -4358_80685,229,4368_5392,Ballinteer,15602,0,4368_7778195_9016004,4368_164 -4358_80685,227,4368_5393,Ballinteer,5235,0,4368_7778195_9016002,4368_165 -4358_80685,228,4368_5394,Ballinteer,13354,0,4368_7778195_9016009,4368_164 -4358_80685,227,4368_5395,Ballinteer,1782,0,4368_7778195_9016001,4368_164 -4358_80685,229,4368_5396,Ballinteer,15561,0,4368_7778195_9016006,4368_164 -4358_80685,228,4368_5397,Ballinteer,13364,0,4368_7778195_9016011,4368_164 -4358_80685,227,4368_5398,Ballinteer,1568,0,4368_7778195_9016020,4368_164 -4358_80685,229,4368_5399,Ballinteer,15579,0,4368_7778195_9016008,4368_164 -4358_80760,227,4368_54,Shaw street,1543,0,4368_7778195_9001010,4368_1 -4358_80680,228,4368_540,St Pappin's Rd,8627,1,4368_7778195_1011001,4368_12 -4358_80685,228,4368_5400,Ballinteer,13371,0,4368_7778195_9016019,4368_165 -4358_80685,227,4368_5401,Ballinteer,1606,0,4368_7778195_9016007,4368_164 -4358_80685,228,4368_5402,Ballinteer,9341,0,4368_7778195_9016015,4368_164 -4358_80685,229,4368_5403,Ballinteer,15634,0,4368_7778195_9016010,4368_164 -4358_80685,227,4368_5404,Ballinteer,1683,0,4368_7778195_9016005,4368_164 -4358_80685,228,4368_5405,Ballinteer,9395,0,4368_7778195_9016012,4368_164 -4358_80685,227,4368_5406,Ballinteer,1884,0,4368_7778195_9016024,4368_164 -4358_80685,229,4368_5407,Ballinteer,15653,0,4368_7778195_9016012,4368_165 -4358_80685,228,4368_5408,Ballinteer,9465,0,4368_7778195_9016004,4368_164 -4358_80685,227,4368_5409,Ballinteer,1751,0,4368_7778195_9016023,4368_164 -4358_80680,227,4368_541,St Pappin's Rd,614,1,4368_7778195_1011003,4368_13 -4358_80685,229,4368_5410,Ballinteer,15644,0,4368_7778195_9016001,4368_164 -4358_80685,228,4368_5411,Ballinteer,9274,0,4368_7778195_9016014,4368_164 -4358_80685,227,4368_5412,Ballinteer,3130,0,4368_7778195_9016009,4368_164 -4358_80685,228,4368_5413,Ballinteer,9416,0,4368_7778195_9016017,4368_164 -4358_80685,229,4368_5414,Ballinteer,15494,0,4368_7778195_9016002,4368_165 -4358_80685,227,4368_5415,Ballinteer,3121,0,4368_7778195_9016012,4368_164 -4358_80685,228,4368_5416,Ballinteer,9334,0,4368_7778195_9016006,4368_164 -4358_80685,229,4368_5417,Ballinteer,15537,0,4368_7778195_9016003,4368_164 -4358_80685,227,4368_5418,Ballinteer,3156,0,4368_7778195_9016014,4368_164 -4358_80685,228,4368_5419,Ballinteer,9566,0,4368_7778195_9016008,4368_164 -4358_80680,229,4368_542,St Pappin's Rd,14808,1,4368_7778195_1011001,4368_12 -4358_80685,229,4368_5420,Ballinteer,15528,0,4368_7778195_9016005,4368_164 -4358_80685,227,4368_5421,Ballinteer,1532,0,4368_7778195_9016016,4368_165 -4358_80685,228,4368_5422,Ballinteer,9541,0,4368_7778195_9016001,4368_164 -4358_80685,227,4368_5423,Ballinteer,1578,0,4368_7778195_9016017,4368_164 -4358_80685,229,4368_5424,Ballinteer,15571,0,4368_7778195_9016007,4368_164 -4358_80685,228,4368_5425,Ballinteer,9573,0,4368_7778195_9016010,4368_164 -4358_80685,227,4368_5426,Ballinteer,1776,0,4368_7778195_9016018,4368_164 -4358_80685,229,4368_5427,Ballinteer,15717,0,4368_7778195_9016016,4368_164 -4358_80685,228,4368_5428,Ballinteer,9289,0,4368_7778195_9016016,4368_165 -4358_80685,227,4368_5429,Ballinteer,1763,0,4368_7778195_9016019,4368_164 -4358_80680,228,4368_543,St Pappin's Rd,8614,1,4368_7778195_1011003,4368_12 -4358_80685,228,4368_5430,Ballinteer,9426,0,4368_7778195_9016020,4368_164 -4358_80685,229,4368_5431,Ballinteer,15609,0,4368_7778195_9016009,4368_164 -4358_80685,227,4368_5432,Ballinteer,1792,0,4368_7778195_9016021,4368_164 -4358_80685,228,4368_5433,Ballinteer,9552,0,4368_7778195_9016002,4368_164 -4358_80685,229,4368_5434,Ballinteer,15618,0,4368_7778195_9016011,4368_164 -4358_80685,227,4368_5435,Ballinteer,1835,0,4368_7778195_9016022,4368_165 -4358_80685,228,4368_5436,Ballinteer,9404,0,4368_7778195_9016003,4368_164 -4358_80685,227,4368_5437,Ballinteer,1879,0,4368_7778195_9016008,4368_164 -4358_80685,229,4368_5438,Ballinteer,15711,0,4368_7778195_9016015,4368_164 -4358_80685,228,4368_5439,Ballinteer,9474,0,4368_7778195_9016013,4368_164 -4358_80680,227,4368_544,St Pappin's Rd,578,1,4368_7778195_1011016,4368_13 -4358_80685,227,4368_5440,Ballinteer,1738,0,4368_7778195_9016011,4368_164 -4358_80685,228,4368_5441,Ballinteer,9297,0,4368_7778195_9016018,4368_164 -4358_80685,229,4368_5442,Ballinteer,15678,0,4368_7778195_9016013,4368_165 -4358_80685,227,4368_5443,Ballinteer,1693,0,4368_7778195_9016015,4368_164 -4358_80685,228,4368_5444,Ballinteer,9560,0,4368_7778195_9016005,4368_164 -4358_80685,229,4368_5445,Ballinteer,15705,0,4368_7778195_9016014,4368_164 -4358_80685,227,4368_5446,Ballinteer,1728,0,4368_7778195_9016013,4368_164 -4358_80685,228,4368_5447,Ballinteer,9366,0,4368_7778195_9016007,4368_164 -4358_80685,229,4368_5448,Ballinteer,15604,0,4368_7778195_9016004,4368_164 -4358_80685,227,4368_5449,Ballinteer,5237,0,4368_7778195_9016002,4368_165 -4358_80680,229,4368_545,St Pappin's Rd,14834,1,4368_7778195_1011002,4368_12 -4358_80685,228,4368_5450,Ballinteer,13356,0,4368_7778195_9016009,4368_164 -4358_80685,227,4368_5451,Ballinteer,1784,0,4368_7778195_9016001,4368_164 -4358_80685,229,4368_5452,Ballinteer,15563,0,4368_7778195_9016006,4368_164 -4358_80685,228,4368_5453,Ballinteer,13366,0,4368_7778195_9016011,4368_164 -4358_80685,227,4368_5454,Ballinteer,1570,0,4368_7778195_9016020,4368_164 -4358_80685,229,4368_5455,Ballinteer,15581,0,4368_7778195_9016008,4368_164 -4358_80685,228,4368_5456,Ballinteer,13373,0,4368_7778195_9016019,4368_165 -4358_80685,227,4368_5457,Ballinteer,1608,0,4368_7778195_9016007,4368_164 -4358_80685,228,4368_5458,Ballinteer,9343,0,4368_7778195_9016015,4368_164 -4358_80685,229,4368_5459,Ballinteer,15636,0,4368_7778195_9016010,4368_164 -4358_80680,227,4368_546,St Pappin's Rd,630,1,4368_7778195_1011009,4368_12 -4358_80685,227,4368_5460,Ballinteer,1685,0,4368_7778195_9016005,4368_164 -4358_80685,228,4368_5461,Ballinteer,9397,0,4368_7778195_9016012,4368_164 -4358_80685,227,4368_5462,Ballinteer,1886,0,4368_7778195_9016024,4368_164 -4358_80685,229,4368_5463,Ballinteer,15655,0,4368_7778195_9016012,4368_165 -4358_80685,228,4368_5464,Ballinteer,9467,0,4368_7778195_9016004,4368_164 -4358_80685,227,4368_5465,Ballinteer,1753,0,4368_7778195_9016023,4368_164 -4358_80685,229,4368_5466,Ballinteer,15646,0,4368_7778195_9016001,4368_164 -4358_80685,228,4368_5467,Ballinteer,9276,0,4368_7778195_9016014,4368_164 -4358_80685,227,4368_5468,Ballinteer,3132,0,4368_7778195_9016009,4368_164 -4358_80685,228,4368_5469,Ballinteer,9418,0,4368_7778195_9016017,4368_164 -4358_80680,228,4368_547,St Pappin's Rd,8558,1,4368_7778195_1011005,4368_13 -4358_80685,229,4368_5470,Ballinteer,15496,0,4368_7778195_9016002,4368_165 -4358_80685,227,4368_5471,Ballinteer,3123,0,4368_7778195_9016012,4368_164 -4358_80685,228,4368_5472,Ballinteer,9336,0,4368_7778195_9016006,4368_164 -4358_80685,229,4368_5473,Ballinteer,15539,0,4368_7778195_9016003,4368_164 -4358_80685,227,4368_5474,Ballinteer,3158,0,4368_7778195_9016014,4368_164 -4358_80685,228,4368_5475,Ballinteer,9568,0,4368_7778195_9016008,4368_164 -4358_80685,229,4368_5476,Ballinteer,15530,0,4368_7778195_9016005,4368_164 -4358_80685,227,4368_5477,Ballinteer,3159,0,4368_7778195_9016026,4368_165 -4358_80685,228,4368_5478,Ballinteer,9543,0,4368_7778195_9016001,4368_164 -4358_80685,227,4368_5479,Ballinteer,1534,0,4368_7778195_9016016,4368_164 -4358_80680,229,4368_548,St Pappin's Rd,14906,1,4368_7778195_1011006,4368_12 -4358_80685,229,4368_5480,Ballinteer,15573,0,4368_7778195_9016007,4368_164 -4358_80685,228,4368_5481,Ballinteer,9575,0,4368_7778195_9016010,4368_164 -4358_80685,227,4368_5482,Ballinteer,1580,0,4368_7778195_9016017,4368_164 -4358_80685,229,4368_5483,Ballinteer,15719,0,4368_7778195_9016016,4368_164 -4358_80685,228,4368_5484,Ballinteer,9291,0,4368_7778195_9016016,4368_165 -4358_80685,227,4368_5485,Ballinteer,1778,0,4368_7778195_9016018,4368_164 -4358_80685,228,4368_5486,Ballinteer,9428,0,4368_7778195_9016020,4368_164 -4358_80685,229,4368_5487,Ballinteer,15611,0,4368_7778195_9016009,4368_164 -4358_80685,227,4368_5488,Ballinteer,1765,0,4368_7778195_9016019,4368_164 -4358_80685,228,4368_5489,Ballinteer,9554,0,4368_7778195_9016002,4368_164 -4358_80680,227,4368_549,St Pappin's Rd,620,1,4368_7778195_1011019,4368_12 -4358_80685,229,4368_5490,Ballinteer,15620,0,4368_7778195_9016011,4368_164 -4358_80685,227,4368_5491,Ballinteer,1794,0,4368_7778195_9016021,4368_165 -4358_80685,228,4368_5492,Ballinteer,9406,0,4368_7778195_9016003,4368_164 -4358_80685,227,4368_5493,Ballinteer,1837,0,4368_7778195_9016022,4368_164 -4358_80685,229,4368_5494,Ballinteer,15713,0,4368_7778195_9016015,4368_164 -4358_80685,228,4368_5495,Ballinteer,9476,0,4368_7778195_9016013,4368_164 -4358_80685,227,4368_5496,Ballinteer,1881,0,4368_7778195_9016008,4368_164 -4358_80685,228,4368_5497,Ballinteer,9299,0,4368_7778195_9016018,4368_164 -4358_80685,229,4368_5498,Ballinteer,15680,0,4368_7778195_9016013,4368_165 -4358_80685,227,4368_5499,Ballinteer,1740,0,4368_7778195_9016011,4368_164 -4358_80760,229,4368_55,Shaw street,15726,0,4368_7778195_9001002,4368_2 -4358_80680,228,4368_550,St Pappin's Rd,8567,1,4368_7778195_1011007,4368_12 -4358_80685,227,4368_5500,Ballinteer,1695,0,4368_7778195_9016015,4368_164 -4358_80685,228,4368_5501,Ballinteer,9368,0,4368_7778195_9016007,4368_165 -4358_80685,229,4368_5502,Ballinteer,15707,0,4368_7778195_9016014,4368_168 -4358_80685,229,4368_5503,Ballinteer,15565,0,4368_7778195_9016006,4368_164 -4358_80685,228,4368_5504,Ballinteer,13358,0,4368_7778195_9016009,4368_165 -4358_80685,227,4368_5505,Ballinteer,5239,0,4368_7778195_9016002,4368_168 -4358_80685,229,4368_5506,Ballinteer,15583,0,4368_7778195_9016008,4368_164 -4358_80685,227,4368_5507,Ballinteer,1786,0,4368_7778195_9016001,4368_165 -4358_80685,228,4368_5508,Ballinteer,13368,0,4368_7778195_9016011,4368_168 -4358_80685,229,4368_5509,Ballinteer,15638,0,4368_7778195_9016010,4368_164 -4358_80680,229,4368_551,Parnell Square,14889,1,4368_7778195_1011007,4368_14 -4358_80685,228,4368_5510,Ballinteer,13375,0,4368_7778195_9016019,4368_165 -4358_80685,227,4368_5511,Ballinteer,1572,0,4368_7778195_9016020,4368_168 -4358_80685,227,4368_5512,Ballinteer,1610,0,4368_7778195_9016007,4368_164 -4358_80685,229,4368_5513,Ballinteer,15657,0,4368_7778195_9016012,4368_165 -4358_80685,228,4368_5514,Ballinteer,9345,0,4368_7778195_9016015,4368_168 -4358_80685,228,4368_5515,Ballinteer,9469,0,4368_7778195_9016004,4368_164 -4358_80685,229,4368_5516,Ballinteer,15648,0,4368_7778195_9016001,4368_165 -4358_80685,227,4368_5517,Ballinteer,1687,0,4368_7778195_9016005,4368_168 -4358_80685,229,4368_5518,Ballinteer,15541,0,4368_7778195_9016003,4368_164 -4358_80685,227,4368_5519,Ballinteer,1755,0,4368_7778195_9016023,4368_165 -4358_80680,229,4368_552,Parnell Square,14859,1,4368_7778195_1011005,4368_14 -4358_80685,228,4368_5520,Ballinteer,9278,0,4368_7778195_9016014,4368_168 -4358_80685,229,4368_5521,Ballinteer,15532,0,4368_7778195_9016005,4368_164 -4358_80685,228,4368_5522,Ballinteer,9338,0,4368_7778195_9016006,4368_165 -4358_80685,227,4368_5523,Ballinteer,3125,0,4368_7778195_9016012,4368_168 -4358_80685,228,4368_5524,Ballinteer,9545,0,4368_7778195_9016001,4368_164 -4358_80685,229,4368_5525,Ballinteer,15575,0,4368_7778195_9016007,4368_165 -4358_80685,227,4368_5526,Ballinteer,3161,0,4368_7778195_9016026,4368_168 -4358_80685,228,4368_5527,Ballinteer,9577,0,4368_7778195_9016010,4368_164 -4358_80685,229,4368_5528,Ballinteer,15613,0,4368_7778195_9016009,4368_165 -4358_80685,227,4368_5529,Ballinteer,1536,0,4368_7778195_9016016,4368_168 -4358_80680,228,4368_553,Parnell Square,8584,1,4368_7778195_1011006,4368_15 -4358_80685,229,4368_5530,Ballinteer,15622,0,4368_7778195_9016011,4368_164 -4358_80685,228,4368_5531,Ballinteer,9293,0,4368_7778195_9016016,4368_165 -4358_80685,227,4368_5532,Ballinteer,1582,0,4368_7778195_9016017,4368_168 -4358_80685,227,4368_5533,Ballinteer,1767,0,4368_7778195_9016019,4368_164 -4358_80685,229,4368_5534,Ballinteer,15715,0,4368_7778195_9016015,4368_165 -4358_80685,228,4368_5535,Ballinteer,9430,0,4368_7778195_9016020,4368_168 -4358_80685,228,4368_5536,Ballinteer,9408,0,4368_7778195_9016003,4368_164 -4358_80685,229,4368_5537,Ballinteer,15682,0,4368_7778195_9016013,4368_165 -4358_80685,227,4368_5538,Ballinteer,1796,0,4368_7778195_9016021,4368_168 -4358_80685,227,4368_5539,Ballinteer,1839,0,4368_7778195_9016022,4368_164 -4358_80680,227,4368_554,Parnell Square,729,1,4368_7778195_1011014,4368_16 -4358_80685,228,4368_5540,Ballinteer,9478,0,4368_7778195_9016013,4368_165 -4358_80685,229,4368_5541,Ballinteer,15709,0,4368_7778195_9016014,4368_168 -4358_80685,229,4368_5542,Ballinteer,15567,0,4368_7778195_9016006,4368_164 -4358_80685,228,4368_5543,Ballinteer,9370,0,4368_7778195_9016007,4368_165 -4358_80685,227,4368_5544,Ballinteer,1742,0,4368_7778195_9016011,4368_168 -4358_80685,228,4368_5545,O'Connell Street,13360,0,4368_7778195_9016009,4368_166 -4358_80685,229,4368_5546,O'Connell Street,15640,0,4368_7778195_9016010,4368_167 -4358_80685,227,4368_5547,O'Connell Street,5241,0,4368_7778195_9016002,4368_169 -4358_80685,227,4368_5548,O'Connell Street,1788,0,4368_7778195_9016001,4368_166 -4358_80685,229,4368_5549,O'Connell Street,15659,0,4368_7778195_9016012,4368_167 -4358_80752,227,4368_555,Whitechurch,6133,0,4368_7778195_2821201,4368_17 -4358_80685,228,4368_5550,O'Connell Street,13370,0,4368_7778195_9016011,4368_169 -4358_80685,229,4368_5551,O'Connell Street,15650,0,4368_7778195_9016001,4368_166 -4358_80685,228,4368_5552,O'Connell Street,13377,0,4368_7778195_9016019,4368_167 -4358_80685,227,4368_5553,O'Connell Street,1574,0,4368_7778195_9016020,4368_169 -4358_80685,228,4368_5554,Dublin Airport,9536,1,4368_7778195_9016001,4368_170 -4358_80685,227,4368_5555,Dublin Airport,1779,1,4368_7778195_9016001,4368_172 -4358_80685,227,4368_5556,Dublin Airport,5232,1,4368_7778195_9016002,4368_170 -4358_80685,228,4368_5557,Dublin Airport,9547,1,4368_7778195_9016002,4368_172 -4358_80685,228,4368_5558,Dublin Airport,9399,1,4368_7778195_9016003,4368_170 -4358_80685,227,4368_5559,Dublin Airport,1864,1,4368_7778195_9016003,4368_172 -4358_80752,227,4368_556,Parnell Sq,6132,1,4368_7778195_2821101,4368_18 -4358_80685,227,4368_5560,Dublin Airport,1680,1,4368_7778195_9016005,4368_170 -4358_80685,228,4368_5561,Dublin Airport,9555,1,4368_7778195_9016005,4368_172 -4358_80685,227,4368_5562,Dublin Airport,1603,1,4368_7778195_9016007,4368_170 -4358_80685,228,4368_5563,Dublin Airport,9361,1,4368_7778195_9016007,4368_172 -4358_80685,228,4368_5564,Dublin Airport,13351,1,4368_7778195_9016009,4368_170 -4358_80685,227,4368_5565,Dublin Airport,3127,1,4368_7778195_9016009,4368_172 -4358_80685,227,4368_5566,Dublin Airport,1856,1,4368_7778195_9016010,4368_170 -4358_80685,228,4368_5567,Dublin Airport,13361,1,4368_7778195_9016011,4368_172 -4358_80685,227,4368_5568,Dublin Airport,3118,1,4368_7778195_9016012,4368_170 -4358_80685,228,4368_5569,Dublin Airport,9392,1,4368_7778195_9016012,4368_170 -4358_80753,227,4368_557,Eden Quay,119,1,4368_7778195_2822108,4368_19 -4358_80685,227,4368_5570,Dublin Airport,3153,1,4368_7778195_9016014,4368_170 -4358_80685,228,4368_5571,Dublin Airport,9462,1,4368_7778195_9016004,4368_170 -4358_80685,229,4368_5572,Dublin Airport,15641,1,4368_7778195_9016001,4368_172 -4358_80685,227,4368_5573,Dublin Airport,1529,1,4368_7778195_9016016,4368_174 -4358_80685,227,4368_5574,Dublin Airport,1575,1,4368_7778195_9016017,4368_170 -4358_80685,228,4368_5575,Dublin Airport,9331,1,4368_7778195_9016006,4368_170 -4358_80685,229,4368_5576,Dublin Airport,15491,1,4368_7778195_9016002,4368_172 -4358_80685,227,4368_5577,Dublin Airport,1773,1,4368_7778195_9016018,4368_170 -4358_80685,227,4368_5578,Dublin Airport,1760,1,4368_7778195_9016019,4368_170 -4358_80685,229,4368_5579,Dublin Airport,15534,1,4368_7778195_9016003,4368_172 -4358_80754,227,4368_558,Ashtown Stn,2135,0,4368_7778195_5120003,4368_20 -4358_80685,228,4368_5580,Dublin Airport,9563,1,4368_7778195_9016008,4368_174 -4358_80685,227,4368_5581,Dublin Airport,1789,1,4368_7778195_9016021,4368_170 -4358_80685,229,4368_5582,Dublin Airport,15525,1,4368_7778195_9016005,4368_170 -4358_80685,228,4368_5583,Dublin Airport,9538,1,4368_7778195_9016001,4368_172 -4358_80685,227,4368_5584,Dublin Airport,1812,1,4368_7778195_9016004,4368_170 -4358_80685,227,4368_5585,Dublin Airport,1832,1,4368_7778195_9016022,4368_170 -4358_80685,228,4368_5586,Dublin Airport,9570,1,4368_7778195_9016010,4368_172 -4358_80685,229,4368_5587,Dublin Airport,15568,1,4368_7778195_9016007,4368_174 -4358_80685,227,4368_5588,Dublin Airport,1673,1,4368_7778195_9016006,4368_170 -4358_80685,229,4368_5589,Dublin Airport,15606,1,4368_7778195_9016009,4368_170 -4358_80754,227,4368_559,Ashtown Stn,2100,0,4368_7778195_5120005,4368_20 -4358_80685,228,4368_5590,Dublin Airport,9549,1,4368_7778195_9016002,4368_172 -4358_80685,227,4368_5591,Dublin Airport,1876,1,4368_7778195_9016008,4368_170 -4358_80685,229,4368_5592,Dublin Airport,15615,1,4368_7778195_9016011,4368_170 -4358_80685,228,4368_5593,Dublin Airport,9401,1,4368_7778195_9016003,4368_172 -4358_80685,227,4368_5594,Dublin Airport,1735,1,4368_7778195_9016011,4368_174 -4358_80685,227,4368_5595,Dublin Airport,1690,1,4368_7778195_9016015,4368_170 -4358_80685,228,4368_5596,Dublin Airport,9471,1,4368_7778195_9016013,4368_170 -4358_80685,229,4368_5597,Dublin Airport,15675,1,4368_7778195_9016013,4368_170 -4358_80685,227,4368_5598,Dublin Airport,1725,1,4368_7778195_9016013,4368_170 -4358_80685,228,4368_5599,Dublin Airport,9557,1,4368_7778195_9016005,4368_170 -4358_80760,228,4368_56,Shaw street,9378,0,4368_7778195_9001001,4368_1 -4358_80754,228,4368_560,Ashtown Stn,9846,0,4368_7778195_5120003,4368_20 -4358_80685,227,4368_5600,Dublin Airport,5234,1,4368_7778195_9016002,4368_170 -4358_80685,229,4368_5601,Dublin Airport,15702,1,4368_7778195_9016014,4368_172 -4358_80685,228,4368_5602,Dublin Airport,9363,1,4368_7778195_9016007,4368_170 -4358_80685,227,4368_5603,Dublin Airport,1781,1,4368_7778195_9016001,4368_170 -4358_80685,229,4368_5604,Dublin Airport,15601,1,4368_7778195_9016004,4368_170 -4358_80685,228,4368_5605,Dublin Airport,13353,1,4368_7778195_9016009,4368_170 -4358_80685,227,4368_5606,Dublin Airport,1567,1,4368_7778195_9016020,4368_170 -4358_80685,229,4368_5607,Dublin Airport,15560,1,4368_7778195_9016006,4368_170 -4358_80685,228,4368_5608,Dublin Airport,13363,1,4368_7778195_9016011,4368_172 -4358_80685,227,4368_5609,Dublin Airport,1605,1,4368_7778195_9016007,4368_170 -4358_80754,227,4368_561,Ashtown Stn,2181,0,4368_7778195_5120001,4368_22 -4358_80685,228,4368_5610,Dublin Airport,9340,1,4368_7778195_9016015,4368_170 -4358_80685,229,4368_5611,Dublin Airport,15578,1,4368_7778195_9016008,4368_170 -4358_80685,227,4368_5612,Dublin Airport,1682,1,4368_7778195_9016005,4368_170 -4358_80685,228,4368_5613,Dublin Airport,9394,1,4368_7778195_9016012,4368_170 -4358_80685,229,4368_5614,Dublin Airport,15633,1,4368_7778195_9016010,4368_170 -4358_80685,227,4368_5615,Dublin Airport,1883,1,4368_7778195_9016024,4368_172 -4358_80685,228,4368_5616,Dublin Airport,9464,1,4368_7778195_9016004,4368_170 -4358_80685,227,4368_5617,Dublin Airport,1750,1,4368_7778195_9016023,4368_170 -4358_80685,229,4368_5618,Dublin Airport,15652,1,4368_7778195_9016012,4368_170 -4358_80685,228,4368_5619,Dublin Airport,9273,1,4368_7778195_9016014,4368_170 -4358_80754,227,4368_562,Ashtown Stn,2168,0,4368_7778195_5120002,4368_20 -4358_80685,227,4368_5620,Dublin Airport,3129,1,4368_7778195_9016009,4368_170 -4358_80685,228,4368_5621,Dublin Airport,9415,1,4368_7778195_9016017,4368_170 -4358_80685,229,4368_5622,Dublin Airport,15643,1,4368_7778195_9016001,4368_172 -4358_80685,227,4368_5623,Dublin Airport,3120,1,4368_7778195_9016012,4368_170 -4358_80685,228,4368_5624,Dublin Airport,9333,1,4368_7778195_9016006,4368_170 -4358_80685,229,4368_5625,Dublin Airport,15493,1,4368_7778195_9016002,4368_170 -4358_80685,227,4368_5626,Dublin Airport,3155,1,4368_7778195_9016014,4368_170 -4358_80685,228,4368_5627,Dublin Airport,9565,1,4368_7778195_9016008,4368_170 -4358_80685,229,4368_5628,Dublin Airport,15536,1,4368_7778195_9016003,4368_170 -4358_80685,227,4368_5629,Dublin Airport,1531,1,4368_7778195_9016016,4368_172 -4358_80754,228,4368_563,Ashtown Stn,9775,0,4368_7778195_5120001,4368_20 -4358_80685,228,4368_5630,Dublin Airport,9540,1,4368_7778195_9016001,4368_170 -4358_80685,227,4368_5631,Dublin Airport,1577,1,4368_7778195_9016017,4368_170 -4358_80685,229,4368_5632,Dublin Airport,15527,1,4368_7778195_9016005,4368_170 -4358_80685,228,4368_5633,Dublin Airport,9572,1,4368_7778195_9016010,4368_170 -4358_80685,227,4368_5634,Dublin Airport,1775,1,4368_7778195_9016018,4368_170 -4358_80685,229,4368_5635,Dublin Airport,15570,1,4368_7778195_9016007,4368_170 -4358_80685,228,4368_5636,Dublin Airport,9288,1,4368_7778195_9016016,4368_172 -4358_80685,227,4368_5637,Dublin Airport,1762,1,4368_7778195_9016019,4368_170 -4358_80685,228,4368_5638,Dublin Airport,9425,1,4368_7778195_9016020,4368_170 -4358_80685,229,4368_5639,Dublin Airport,15608,1,4368_7778195_9016009,4368_170 -4358_80754,227,4368_564,Ashtown Stn,2137,0,4368_7778195_5120003,4368_22 -4358_80685,227,4368_5640,Dublin Airport,1791,1,4368_7778195_9016021,4368_170 -4358_80685,228,4368_5641,Dublin Airport,9551,1,4368_7778195_9016002,4368_170 -4358_80685,229,4368_5642,Dublin Airport,15617,1,4368_7778195_9016011,4368_170 -4358_80685,227,4368_5643,Dublin Airport,1834,1,4368_7778195_9016022,4368_172 -4358_80685,228,4368_5644,Dublin Airport,9403,1,4368_7778195_9016003,4368_170 -4358_80685,227,4368_5645,Dublin Airport,1878,1,4368_7778195_9016008,4368_170 -4358_80685,229,4368_5646,Dublin Airport,15710,1,4368_7778195_9016015,4368_170 -4358_80685,228,4368_5647,Dublin Airport,9473,1,4368_7778195_9016013,4368_170 -4358_80685,227,4368_5648,Dublin Airport,1737,1,4368_7778195_9016011,4368_170 -4358_80685,228,4368_5649,Dublin Airport,9296,1,4368_7778195_9016018,4368_170 -4358_80754,227,4368_565,Ashtown Stn,2221,0,4368_7778195_5120004,4368_20 -4358_80685,229,4368_5650,Dublin Airport,15677,1,4368_7778195_9016013,4368_172 -4358_80685,227,4368_5651,Dublin Airport,1692,1,4368_7778195_9016015,4368_170 -4358_80685,228,4368_5652,Dublin Airport,9559,1,4368_7778195_9016005,4368_170 -4358_80685,229,4368_5653,Dublin Airport,15704,1,4368_7778195_9016014,4368_170 -4358_80685,227,4368_5654,Dublin Airport,1727,1,4368_7778195_9016013,4368_170 -4358_80685,228,4368_5655,Dublin Airport,9365,1,4368_7778195_9016007,4368_170 -4358_80685,229,4368_5656,Dublin Airport,15603,1,4368_7778195_9016004,4368_170 -4358_80685,227,4368_5657,Dublin Airport,5236,1,4368_7778195_9016002,4368_172 -4358_80685,228,4368_5658,Dublin Airport,13355,1,4368_7778195_9016009,4368_170 -4358_80685,227,4368_5659,Dublin Airport,1783,1,4368_7778195_9016001,4368_170 -4358_80754,228,4368_566,Ashtown Stn,9796,0,4368_7778195_5120002,4368_20 -4358_80685,229,4368_5660,Dublin Airport,15562,1,4368_7778195_9016006,4368_170 -4358_80685,228,4368_5661,Dublin Airport,13365,1,4368_7778195_9016011,4368_170 -4358_80685,227,4368_5662,Dublin Airport,1569,1,4368_7778195_9016020,4368_170 -4358_80685,229,4368_5663,Dublin Airport,15580,1,4368_7778195_9016008,4368_170 -4358_80685,228,4368_5664,Dublin Airport,13372,1,4368_7778195_9016019,4368_172 -4358_80685,227,4368_5665,Dublin Airport,1607,1,4368_7778195_9016007,4368_170 -4358_80685,228,4368_5666,Dublin Airport,9342,1,4368_7778195_9016015,4368_170 -4358_80685,229,4368_5667,Dublin Airport,15635,1,4368_7778195_9016010,4368_170 -4358_80685,227,4368_5668,Dublin Airport,1684,1,4368_7778195_9016005,4368_170 -4358_80685,228,4368_5669,Dublin Airport,9396,1,4368_7778195_9016012,4368_170 -4358_80754,227,4368_567,Ashtown Stn,2208,0,4368_7778195_5120006,4368_20 -4358_80685,227,4368_5670,Dublin Airport,1885,1,4368_7778195_9016024,4368_170 -4358_80685,229,4368_5671,Dublin Airport,15654,1,4368_7778195_9016012,4368_172 -4358_80685,228,4368_5672,Dublin Airport,9466,1,4368_7778195_9016004,4368_170 -4358_80685,227,4368_5673,Dublin Airport,1752,1,4368_7778195_9016023,4368_170 -4358_80685,229,4368_5674,Dublin Airport,15645,1,4368_7778195_9016001,4368_170 -4358_80685,228,4368_5675,Dublin Airport,9275,1,4368_7778195_9016014,4368_170 -4358_80685,227,4368_5676,Dublin Airport,3131,1,4368_7778195_9016009,4368_170 -4358_80685,228,4368_5677,Dublin Airport,9417,1,4368_7778195_9016017,4368_170 -4358_80685,229,4368_5678,Dublin Airport,15495,1,4368_7778195_9016002,4368_172 -4358_80685,227,4368_5679,Dublin Airport,3122,1,4368_7778195_9016012,4368_170 -4358_80754,228,4368_568,Ashtown Stn,9848,0,4368_7778195_5120003,4368_20 -4358_80685,228,4368_5680,Dublin Airport,9335,1,4368_7778195_9016006,4368_170 -4358_80685,229,4368_5681,Dublin Airport,15538,1,4368_7778195_9016003,4368_170 -4358_80685,227,4368_5682,Dublin Airport,3157,1,4368_7778195_9016014,4368_170 -4358_80685,228,4368_5683,Dublin Airport,9567,1,4368_7778195_9016008,4368_170 -4358_80685,229,4368_5684,Dublin Airport,15529,1,4368_7778195_9016005,4368_170 -4358_80685,227,4368_5685,Dublin Airport,1533,1,4368_7778195_9016016,4368_172 -4358_80685,228,4368_5686,Dublin Airport,9542,1,4368_7778195_9016001,4368_170 -4358_80685,227,4368_5687,Dublin Airport,1579,1,4368_7778195_9016017,4368_170 -4358_80685,229,4368_5688,Dublin Airport,15572,1,4368_7778195_9016007,4368_170 -4358_80685,228,4368_5689,Dublin Airport,9574,1,4368_7778195_9016010,4368_170 -4358_80754,227,4368_569,Ashtown Stn,2103,0,4368_7778195_5120007,4368_20 -4358_80685,227,4368_5690,Dublin Airport,1777,1,4368_7778195_9016018,4368_170 -4358_80685,229,4368_5691,Dublin Airport,15718,1,4368_7778195_9016016,4368_170 -4358_80685,228,4368_5692,Dublin Airport,9290,1,4368_7778195_9016016,4368_172 -4358_80685,227,4368_5693,Dublin Airport,1764,1,4368_7778195_9016019,4368_170 -4358_80685,228,4368_5694,Dublin Airport,9427,1,4368_7778195_9016020,4368_170 -4358_80685,229,4368_5695,Dublin Airport,15610,1,4368_7778195_9016009,4368_170 -4358_80685,227,4368_5696,Dublin Airport,1793,1,4368_7778195_9016021,4368_170 -4358_80685,228,4368_5697,Dublin Airport,9553,1,4368_7778195_9016002,4368_170 -4358_80685,229,4368_5698,Dublin Airport,15619,1,4368_7778195_9016011,4368_170 -4358_80685,227,4368_5699,Dublin Airport,1836,1,4368_7778195_9016022,4368_172 -4358_80760,227,4368_57,Shaw street,1637,0,4368_7778195_9001011,4368_1 -4358_80754,228,4368_570,Ashtown Stn,9777,0,4368_7778195_5120001,4368_20 -4358_80685,228,4368_5700,Dublin Airport,9405,1,4368_7778195_9016003,4368_170 -4358_80685,227,4368_5701,Dublin Airport,1880,1,4368_7778195_9016008,4368_170 -4358_80685,229,4368_5702,Dublin Airport,15712,1,4368_7778195_9016015,4368_170 -4358_80685,228,4368_5703,Dublin Airport,9475,1,4368_7778195_9016013,4368_170 -4358_80685,227,4368_5704,Dublin Airport,1739,1,4368_7778195_9016011,4368_170 -4358_80685,228,4368_5705,Dublin Airport,9298,1,4368_7778195_9016018,4368_170 -4358_80685,229,4368_5706,Dublin Airport,15679,1,4368_7778195_9016013,4368_172 -4358_80685,227,4368_5707,Dublin Airport,1694,1,4368_7778195_9016015,4368_170 -4358_80685,228,4368_5708,Dublin Airport,9561,1,4368_7778195_9016005,4368_170 -4358_80685,229,4368_5709,Dublin Airport,15706,1,4368_7778195_9016014,4368_170 -4358_80754,227,4368_571,Ashtown Stn,2139,0,4368_7778195_5120003,4368_22 -4358_80685,227,4368_5710,Dublin Airport,1729,1,4368_7778195_9016013,4368_170 -4358_80685,228,4368_5711,Dublin Airport,9367,1,4368_7778195_9016007,4368_170 -4358_80685,229,4368_5712,Dublin Airport,15605,1,4368_7778195_9016004,4368_170 -4358_80685,227,4368_5713,Dublin Airport,5238,1,4368_7778195_9016002,4368_172 -4358_80685,228,4368_5714,Dublin Airport,13357,1,4368_7778195_9016009,4368_170 -4358_80685,227,4368_5715,Dublin Airport,1748,1,4368_7778195_9016027,4368_170 -4358_80685,229,4368_5716,Dublin Airport,15564,1,4368_7778195_9016006,4368_170 -4358_80685,228,4368_5717,Dublin Airport,13367,1,4368_7778195_9016011,4368_170 -4358_80685,227,4368_5718,Dublin Airport,1785,1,4368_7778195_9016001,4368_170 -4358_80685,229,4368_5719,Dublin Airport,15582,1,4368_7778195_9016008,4368_170 -4358_80754,228,4368_572,Ashtown Stn,9798,0,4368_7778195_5120002,4368_20 -4358_80685,228,4368_5720,Dublin Airport,13374,1,4368_7778195_9016019,4368_172 -4358_80685,227,4368_5721,Dublin Airport,1571,1,4368_7778195_9016020,4368_170 -4358_80685,228,4368_5722,Dublin Airport,9344,1,4368_7778195_9016015,4368_170 -4358_80685,229,4368_5723,Dublin Airport,15637,1,4368_7778195_9016010,4368_170 -4358_80685,227,4368_5724,Dublin Airport,1609,1,4368_7778195_9016007,4368_170 -4358_80685,228,4368_5725,Dublin Airport,9398,1,4368_7778195_9016012,4368_170 -4358_80685,227,4368_5726,Dublin Airport,1686,1,4368_7778195_9016005,4368_170 -4358_80685,229,4368_5727,Dublin Airport,15656,1,4368_7778195_9016012,4368_172 -4358_80685,228,4368_5728,Dublin Airport,9468,1,4368_7778195_9016004,4368_170 -4358_80685,227,4368_5729,Dublin Airport,1887,1,4368_7778195_9016024,4368_170 -4358_80754,227,4368_573,Ashtown Stn,2210,0,4368_7778195_5120006,4368_22 -4358_80685,229,4368_5730,Dublin Airport,15647,1,4368_7778195_9016001,4368_170 -4358_80685,228,4368_5731,Dublin Airport,9277,1,4368_7778195_9016014,4368_170 -4358_80685,227,4368_5732,Dublin Airport,1754,1,4368_7778195_9016023,4368_170 -4358_80685,228,4368_5733,Dublin Airport,9419,1,4368_7778195_9016017,4368_170 -4358_80685,229,4368_5734,Dublin Airport,15540,1,4368_7778195_9016003,4368_172 -4358_80685,227,4368_5735,Dublin Airport,3133,1,4368_7778195_9016009,4368_170 -4358_80685,229,4368_5736,Dublin Airport,15531,1,4368_7778195_9016005,4368_170 -4358_80685,228,4368_5737,Dublin Airport,9337,1,4368_7778195_9016006,4368_172 -4358_80685,227,4368_5738,Dublin Airport,3124,1,4368_7778195_9016012,4368_174 -4358_80685,228,4368_5739,Dublin Airport,9544,1,4368_7778195_9016001,4368_170 -4358_80754,229,4368_574,Ashtown Stn,15901,0,4368_7778195_5120002,4368_20 -4358_80685,229,4368_5740,Dublin Airport,15574,1,4368_7778195_9016007,4368_172 -4358_80685,227,4368_5741,Dublin Airport,3160,1,4368_7778195_9016026,4368_174 -4358_80685,228,4368_5742,Dublin Airport,9576,1,4368_7778195_9016010,4368_170 -4358_80685,229,4368_5743,Dublin Airport,15720,1,4368_7778195_9016016,4368_172 -4358_80685,227,4368_5744,Dublin Airport,1535,1,4368_7778195_9016016,4368_174 -4358_80685,229,4368_5745,Dublin Airport,15612,1,4368_7778195_9016009,4368_170 -4358_80685,228,4368_5746,Dublin Airport,9292,1,4368_7778195_9016016,4368_172 -4358_80685,227,4368_5747,Dublin Airport,1581,1,4368_7778195_9016017,4368_174 -4358_80685,229,4368_5748,Dublin Airport,15621,1,4368_7778195_9016011,4368_170 -4358_80685,227,4368_5749,Dublin Airport,1766,1,4368_7778195_9016019,4368_172 -4358_80754,227,4368_575,Ashtown Stn,2105,0,4368_7778195_5120007,4368_20 -4358_80685,228,4368_5750,Dublin Airport,9429,1,4368_7778195_9016020,4368_174 -4358_80685,229,4368_5751,Dublin Airport,15714,1,4368_7778195_9016015,4368_170 -4358_80685,228,4368_5752,Dublin Airport,9407,1,4368_7778195_9016003,4368_172 -4358_80685,227,4368_5753,Dublin Airport,1795,1,4368_7778195_9016021,4368_174 -4358_80685,227,4368_5754,Dublin Airport,1838,1,4368_7778195_9016022,4368_170 -4358_80685,228,4368_5755,Dublin Airport,9477,1,4368_7778195_9016013,4368_172 -4358_80685,229,4368_5756,Dublin Airport,15681,1,4368_7778195_9016013,4368_174 -4358_80685,228,4368_5757,Dublin Airport,9369,1,4368_7778195_9016007,4368_170 -4358_80685,229,4368_5758,Dublin Airport,15708,1,4368_7778195_9016014,4368_172 -4358_80685,227,4368_5759,Dublin Airport,1741,1,4368_7778195_9016011,4368_174 -4358_80754,228,4368_576,Ashtown Stn,9850,0,4368_7778195_5120003,4368_22 -4358_80685,229,4368_5760,Dublin Airport,15566,1,4368_7778195_9016006,4368_170 -4358_80685,228,4368_5761,Dublin Airport,13359,1,4368_7778195_9016009,4368_172 -4358_80685,227,4368_5762,Dublin Airport,5240,1,4368_7778195_9016002,4368_174 -4358_80685,229,4368_5763,Dublin Airport,15639,1,4368_7778195_9016010,4368_170 -4358_80685,227,4368_5764,Dublin Airport,1787,1,4368_7778195_9016001,4368_172 -4358_80685,228,4368_5765,Dublin Airport,13369,1,4368_7778195_9016011,4368_174 -4358_80685,228,4368_5766,Dublin Airport,13376,1,4368_7778195_9016019,4368_170 -4358_80685,227,4368_5767,Dublin Airport,1573,1,4368_7778195_9016020,4368_172 -4358_80685,229,4368_5768,Dublin Airport,15658,1,4368_7778195_9016012,4368_174 -4358_80685,229,4368_5769,Dublin Airport,15649,1,4368_7778195_9016001,4368_170 -4358_80754,229,4368_577,Ashtown Stn,15910,0,4368_7778195_5120001,4368_20 -4358_80685,227,4368_5770,Dublin Airport,1611,1,4368_7778195_9016007,4368_172 -4358_80685,228,4368_5771,Dublin Airport,9346,1,4368_7778195_9016015,4368_174 -4358_80685,229,4368_5772,Dublin Airport,15542,1,4368_7778195_9016003,4368_170 -4358_80685,228,4368_5773,Dublin Airport,9470,1,4368_7778195_9016004,4368_172 -4358_80685,227,4368_5774,Dublin Airport,1688,1,4368_7778195_9016005,4368_174 -4358_80685,229,4368_5775,Dublin Airport,15533,1,4368_7778195_9016005,4368_170 -4358_80685,227,4368_5776,Dublin Airport,1756,1,4368_7778195_9016023,4368_172 -4358_80685,228,4368_5777,Dublin Airport,9279,1,4368_7778195_9016014,4368_174 -4358_80685,229,4368_5778,Dublin Airport,15576,1,4368_7778195_9016007,4368_170 -4358_80685,228,4368_5779,Dublin Airport,9339,1,4368_7778195_9016006,4368_172 -4358_80754,228,4368_578,Ashtown Stn,9779,0,4368_7778195_5120001,4368_20 -4358_80685,227,4368_5780,Dublin Airport,3126,1,4368_7778195_9016012,4368_174 -4358_80685,229,4368_5781,O'Connell Street,15614,1,4368_7778195_9016009,4368_171 -4358_80685,228,4368_5782,O'Connell Street,9546,1,4368_7778195_9016001,4368_173 -4358_80685,227,4368_5783,O'Connell Street,3162,1,4368_7778195_9016026,4368_175 -4358_80685,229,4368_5784,O'Connell Street,15623,1,4368_7778195_9016011,4368_171 -4358_80685,228,4368_5785,O'Connell Street,9578,1,4368_7778195_9016010,4368_173 -4358_80685,227,4368_5786,O'Connell Street,1537,1,4368_7778195_9016016,4368_175 -4358_80685,229,4368_5787,O'Connell Street,15716,1,4368_7778195_9016015,4368_171 -4358_80685,228,4368_5788,O'Connell Street,9294,1,4368_7778195_9016016,4368_173 -4358_80685,227,4368_5789,O'Connell Street,1583,1,4368_7778195_9016017,4368_175 -4358_80754,227,4368_579,Ashtown Stn,2141,0,4368_7778195_5120003,4368_22 -4358_80686,227,4368_5790,Ballinteer,1689,0,4368_7778195_9016015,4368_176 -4358_80686,227,4368_5791,Ballinteer,5233,0,4368_7778195_9016002,4368_176 -4358_80686,227,4368_5792,Ballinteer,1566,0,4368_7778195_9016020,4368_176 -4358_80686,227,4368_5793,Ballinteer,1604,0,4368_7778195_9016007,4368_176 -4358_80686,227,4368_5794,Ballinteer,1882,0,4368_7778195_9016024,4368_176 -4358_80686,227,4368_5795,Ballinteer,3163,0,4368_7778195_9016025,4368_176 -4358_80688,227,4368_5796,Liffey Valley,4842,0,4368_7778195_4026002,4368_177 -4358_80688,228,4368_5797,Liffey Valley,12032,0,4368_7778195_4026003,4368_177 -4358_80688,227,4368_5798,Liffey Valley,4917,0,4368_7778195_4026006,4368_177 -4358_80688,227,4368_5799,Liffey Valley,4950,0,4368_7778195_4026007,4368_177 -4358_80760,229,4368_58,Shaw street,15511,0,4368_7778195_9001003,4368_1 -4358_80754,229,4368_580,Ashtown Stn,15903,0,4368_7778195_5120002,4368_20 -4358_80688,228,4368_5800,Liffey Valley,12013,0,4368_7778195_4026005,4368_177 -4358_80688,227,4368_5801,Liffey Valley,4890,0,4368_7778195_4026003,4368_177 -4358_80688,228,4368_5802,Liffey Valley,11967,0,4368_7778195_4026006,4368_177 -4358_80688,229,4368_5803,Liffey Valley,17628,0,4368_7778195_4026001,4368_178 -4358_80688,227,4368_5804,Liffey Valley,4923,0,4368_7778195_4026012,4368_177 -4358_80688,228,4368_5805,Liffey Valley,11944,0,4368_7778195_4026001,4368_177 -4358_80688,227,4368_5806,Liffey Valley,4878,0,4368_7778195_4026001,4368_178 -4358_80688,227,4368_5807,Liffey Valley,4844,0,4368_7778195_4026002,4368_177 -4358_80688,228,4368_5808,Liffey Valley,11957,0,4368_7778195_4026004,4368_177 -4358_80688,229,4368_5809,Liffey Valley,17678,0,4368_7778195_4026003,4368_178 -4358_80754,228,4368_581,Ashtown Stn,9800,0,4368_7778195_5120002,4368_20 -4358_80688,227,4368_5810,Liffey Valley,5034,0,4368_7778195_4026013,4368_177 -4358_80688,227,4368_5811,Liffey Valley,4996,0,4368_7778195_4026009,4368_177 -4358_80688,228,4368_5812,Liffey Valley,11983,0,4368_7778195_4026008,4368_177 -4358_80688,227,4368_5813,Liffey Valley,5079,0,4368_7778195_4026015,4368_177 -4358_80688,227,4368_5814,Liffey Valley,5027,0,4368_7778195_4026010,4368_177 -4358_80688,229,4368_5815,Liffey Valley,17700,0,4368_7778195_4026005,4368_178 -4358_80688,228,4368_5816,Liffey Valley,12005,0,4368_7778195_4026002,4368_177 -4358_80688,227,4368_5817,Liffey Valley,4904,0,4368_7778195_4026005,4368_177 -4358_80688,227,4368_5818,Liffey Valley,4952,0,4368_7778195_4026007,4368_177 -4358_80688,228,4368_5819,Liffey Valley,12015,0,4368_7778195_4026005,4368_178 -4358_80754,227,4368_582,Ashtown Stn,2083,0,4368_7778195_5120008,4368_22 -4358_80688,229,4368_5820,Liffey Valley,17690,0,4368_7778195_4026004,4368_179 -4358_80688,227,4368_5821,Liffey Valley,5065,0,4368_7778195_4026014,4368_177 -4358_80688,228,4368_5822,Liffey Valley,11969,0,4368_7778195_4026006,4368_177 -4358_80688,229,4368_5823,Liffey Valley,17710,0,4368_7778195_4026006,4368_178 -4358_80688,227,4368_5824,Liffey Valley,4892,0,4368_7778195_4026003,4368_177 -4358_80688,229,4368_5825,Liffey Valley,17695,0,4368_7778195_4026008,4368_177 -4358_80688,228,4368_5826,Liffey Valley,11959,0,4368_7778195_4026004,4368_178 -4358_80688,227,4368_5827,Liffey Valley,4925,0,4368_7778195_4026012,4368_177 -4358_80688,228,4368_5828,Liffey Valley,12035,0,4368_7778195_4026003,4368_177 -4358_80688,227,4368_5829,Liffey Valley,5083,0,4368_7778195_4026016,4368_177 -4358_80754,229,4368_583,Ashtown Stn,15912,0,4368_7778195_5120001,4368_20 -4358_80688,229,4368_5830,Liffey Valley,17673,0,4368_7778195_4026002,4368_178 -4358_80688,228,4368_5831,Liffey Valley,12070,0,4368_7778195_4026011,4368_177 -4358_80688,227,4368_5832,Liffey Valley,4846,0,4368_7778195_4026002,4368_177 -4358_80688,229,4368_5833,Liffey Valley,17657,0,4368_7778195_4026007,4368_177 -4358_80688,228,4368_5834,Liffey Valley,11985,0,4368_7778195_4026008,4368_177 -4358_80688,227,4368_5835,Liffey Valley,4998,0,4368_7778195_4026009,4368_177 -4358_80688,228,4368_5836,Liffey Valley,11948,0,4368_7778195_4026001,4368_177 -4358_80688,229,4368_5837,Liffey Valley,17702,0,4368_7778195_4026005,4368_178 -4358_80688,227,4368_5838,Liffey Valley,5081,0,4368_7778195_4026015,4368_177 -4358_80688,228,4368_5839,Liffey Valley,12007,0,4368_7778195_4026002,4368_177 -4358_80754,227,4368_584,Ashtown Stn,2107,0,4368_7778195_5120007,4368_20 -4358_80688,227,4368_5840,Liffey Valley,5029,0,4368_7778195_4026010,4368_177 -4358_80688,229,4368_5841,Liffey Valley,17632,0,4368_7778195_4026001,4368_178 -4358_80688,228,4368_5842,Liffey Valley,12058,0,4368_7778195_4026010,4368_177 -4358_80688,227,4368_5843,Liffey Valley,4906,0,4368_7778195_4026005,4368_177 -4358_80688,229,4368_5844,Liffey Valley,17712,0,4368_7778195_4026006,4368_177 -4358_80688,228,4368_5845,Liffey Valley,11971,0,4368_7778195_4026006,4368_177 -4358_80688,227,4368_5846,Liffey Valley,5067,0,4368_7778195_4026014,4368_177 -4358_80688,228,4368_5847,Liffey Valley,11961,0,4368_7778195_4026004,4368_177 -4358_80688,229,4368_5848,Liffey Valley,17682,0,4368_7778195_4026003,4368_178 -4358_80688,227,4368_5849,Liffey Valley,5010,0,4368_7778195_4026017,4368_177 -4358_80754,228,4368_585,Ashtown Stn,9852,0,4368_7778195_5120003,4368_22 -4358_80688,228,4368_5850,Liffey Valley,12037,0,4368_7778195_4026003,4368_177 -4358_80688,229,4368_5851,Liffey Valley,17694,0,4368_7778195_4026004,4368_177 -4358_80688,227,4368_5852,Liffey Valley,4927,0,4368_7778195_4026012,4368_178 -4358_80688,228,4368_5853,Liffey Valley,12019,0,4368_7778195_4026005,4368_177 -4358_80688,227,4368_5854,Liffey Valley,4956,0,4368_7778195_4026007,4368_177 -4358_80688,229,4368_5855,Liffey Valley,17659,0,4368_7778195_4026007,4368_177 -4358_80688,228,4368_5856,Liffey Valley,12108,0,4368_7778195_4026014,4368_177 -4358_80688,227,4368_5857,Liffey Valley,4848,0,4368_7778195_4026002,4368_177 -4358_80688,228,4368_5858,Liffey Valley,12072,0,4368_7778195_4026011,4368_177 -4358_80688,229,4368_5859,Liffey Valley,17704,0,4368_7778195_4026005,4368_178 -4358_80754,229,4368_586,Ashtown Stn,15905,0,4368_7778195_5120002,4368_20 -4358_80688,227,4368_5860,Liffey Valley,4896,0,4368_7778195_4026003,4368_177 -4358_80688,228,4368_5861,Liffey Valley,11950,0,4368_7778195_4026001,4368_177 -4358_80688,229,4368_5862,Liffey Valley,17677,0,4368_7778195_4026002,4368_177 -4358_80688,227,4368_5863,Liffey Valley,5031,0,4368_7778195_4026010,4368_178 -4358_80688,228,4368_5864,Liffey Valley,12009,0,4368_7778195_4026002,4368_177 -4358_80688,227,4368_5865,Liffey Valley,4908,0,4368_7778195_4026005,4368_177 -4358_80688,229,4368_5866,Liffey Valley,17714,0,4368_7778195_4026006,4368_177 -4358_80688,228,4368_5867,Liffey Valley,12060,0,4368_7778195_4026010,4368_177 -4358_80688,227,4368_5868,Liffey Valley,5040,0,4368_7778195_4026013,4368_177 -4358_80688,228,4368_5869,Liffey Valley,11973,0,4368_7778195_4026006,4368_177 -4358_80754,228,4368_587,Ashtown Stn,9879,0,4368_7778195_5120004,4368_20 -4358_80688,229,4368_5870,Liffey Valley,17684,0,4368_7778195_4026003,4368_178 -4358_80688,227,4368_5871,Liffey Valley,5002,0,4368_7778195_4026009,4368_177 -4358_80688,228,4368_5872,Liffey Valley,11963,0,4368_7778195_4026004,4368_177 -4358_80688,229,4368_5873,Liffey Valley,17636,0,4368_7778195_4026001,4368_177 -4358_80688,227,4368_5874,Liffey Valley,5012,0,4368_7778195_4026017,4368_178 -4358_80688,228,4368_5875,Liffey Valley,12039,0,4368_7778195_4026003,4368_177 -4358_80688,227,4368_5876,Liffey Valley,5087,0,4368_7778195_4026018,4368_177 -4358_80688,229,4368_5877,Liffey Valley,17661,0,4368_7778195_4026007,4368_177 -4358_80688,228,4368_5878,Liffey Valley,12021,0,4368_7778195_4026005,4368_177 -4358_80688,227,4368_5879,Liffey Valley,4958,0,4368_7778195_4026007,4368_177 -4358_80754,227,4368_588,Ashtown Stn,2143,0,4368_7778195_5120003,4368_22 -4358_80688,229,4368_5880,Liffey Valley,17706,0,4368_7778195_4026005,4368_177 -4358_80688,228,4368_5881,Liffey Valley,12110,0,4368_7778195_4026014,4368_178 -4358_80688,227,4368_5882,Liffey Valley,5071,0,4368_7778195_4026014,4368_177 -4358_80688,228,4368_5883,Liffey Valley,12115,0,4368_7778195_4026015,4368_177 -4358_80688,227,4368_5884,Liffey Valley,4898,0,4368_7778195_4026003,4368_177 -4358_80688,229,4368_5885,Liffey Valley,17644,0,4368_7778195_4026010,4368_178 -4358_80688,228,4368_5886,Liffey Valley,12091,0,4368_7778195_4026013,4368_177 -4358_80688,227,4368_5887,Liffey Valley,4941,0,4368_7778195_4026019,4368_177 -4358_80688,229,4368_5888,Liffey Valley,17716,0,4368_7778195_4026006,4368_177 -4358_80688,228,4368_5889,Liffey Valley,11952,0,4368_7778195_4026001,4368_177 -4358_80754,229,4368_589,Ashtown Stn,15914,0,4368_7778195_5120001,4368_20 -4358_80688,227,4368_5890,Liffey Valley,4931,0,4368_7778195_4026012,4368_177 -4358_80688,228,4368_5891,Liffey Valley,12133,0,4368_7778195_4026016,4368_177 -4358_80688,229,4368_5892,Liffey Valley,17686,0,4368_7778195_4026003,4368_178 -4358_80688,227,4368_5893,Liffey Valley,5042,0,4368_7778195_4026013,4368_177 -4358_80688,228,4368_5894,Liffey Valley,12062,0,4368_7778195_4026010,4368_177 -4358_80688,227,4368_5895,Liffey Valley,4852,0,4368_7778195_4026002,4368_177 -4358_80688,229,4368_5896,Liffey Valley,17733,0,4368_7778195_4026011,4368_178 -4358_80688,228,4368_5897,Liffey Valley,11975,0,4368_7778195_4026006,4368_177 -4358_80688,227,4368_5898,Liffey Valley,5014,0,4368_7778195_4026017,4368_177 -4358_80688,229,4368_5899,Liffey Valley,17663,0,4368_7778195_4026007,4368_177 -4358_80760,227,4368_59,Shaw street,3141,0,4368_7778195_9001004,4368_1 -4358_80754,228,4368_590,Ashtown Stn,9802,0,4368_7778195_5120002,4368_20 -4358_80688,228,4368_5900,Liffey Valley,11965,0,4368_7778195_4026004,4368_177 -4358_80688,227,4368_5901,Liffey Valley,4992,0,4368_7778195_4026020,4368_177 -4358_80688,227,4368_5902,Liffey Valley,4960,0,4368_7778195_4026007,4368_177 -4358_80688,229,4368_5903,Liffey Valley,17708,0,4368_7778195_4026005,4368_178 -4358_80688,228,4368_5904,Liffey Valley,11941,0,4368_7778195_4026018,4368_179 -4358_80688,227,4368_5905,Liffey Valley,4912,0,4368_7778195_4026005,4368_177 -4358_80688,228,4368_5906,Liffey Valley,12023,0,4368_7778195_4026005,4368_177 -4358_80688,227,4368_5907,Liffey Valley,5093,0,4368_7778195_4026021,4368_177 -4358_80688,229,4368_5908,Liffey Valley,17646,0,4368_7778195_4026010,4368_178 -4358_80688,228,4368_5909,Liffey Valley,12112,0,4368_7778195_4026014,4368_177 -4358_80754,227,4368_591,Ashtown Stn,2085,0,4368_7778195_5120008,4368_22 -4358_80688,227,4368_5910,Liffey Valley,5073,0,4368_7778195_4026014,4368_178 -4358_80688,227,4368_5911,Liffey Valley,4900,0,4368_7778195_4026003,4368_177 -4358_80688,229,4368_5912,Liffey Valley,17718,0,4368_7778195_4026006,4368_178 -4358_80688,228,4368_5913,Liffey Valley,12144,0,4368_7778195_4026017,4368_177 -4358_80688,227,4368_5914,Liffey Valley,5006,0,4368_7778195_4026009,4368_177 -4358_80688,228,4368_5915,Liffey Valley,12049,0,4368_7778195_4026019,4368_177 -4358_80688,229,4368_5916,Liffey Valley,17688,0,4368_7778195_4026003,4368_178 -4358_80688,227,4368_5917,Liffey Valley,4943,0,4368_7778195_4026019,4368_179 -4358_80688,227,4368_5918,Liffey Valley,4968,0,4368_7778195_4026023,4368_177 -4358_80688,228,4368_5919,Liffey Valley,11954,0,4368_7778195_4026001,4368_177 -4358_80754,229,4368_592,Ashtown Stn,15907,0,4368_7778195_5120002,4368_20 -4358_80688,227,4368_5920,Liffey Valley,5096,0,4368_7778195_4026024,4368_177 -4358_80688,229,4368_5921,Liffey Valley,17735,0,4368_7778195_4026011,4368_178 -4358_80688,228,4368_5922,Liffey Valley,12064,0,4368_7778195_4026010,4368_177 -4358_80688,227,4368_5923,Liffey Valley,5044,0,4368_7778195_4026013,4368_178 -4358_80688,229,4368_5924,Liffey Valley,17749,0,4368_7778195_4026014,4368_177 -4358_80688,227,4368_5925,Liffey Valley,5091,0,4368_7778195_4026018,4368_178 -4358_80688,228,4368_5926,Liffey Valley,12119,0,4368_7778195_4026015,4368_177 -4358_80688,227,4368_5927,Liffey Valley,4854,0,4368_7778195_4026002,4368_177 -4358_80688,228,4368_5928,Liffey Valley,11977,0,4368_7778195_4026006,4368_177 -4358_80688,229,4368_5929,Liffey Valley,17756,0,4368_7778195_4026015,4368_178 -4358_80754,227,4368_593,Ashtown Stn,2109,0,4368_7778195_5120007,4368_20 -4358_80688,227,4368_5930,Liffey Valley,5016,0,4368_7778195_4026017,4368_179 -4358_80688,227,4368_5931,Liffey Valley,4994,0,4368_7778195_4026020,4368_177 -4358_80688,228,4368_5932,Liffey Valley,12095,0,4368_7778195_4026013,4368_177 -4358_80688,227,4368_5933,Liffey Valley,5113,0,4368_7778195_4026026,4368_177 -4358_80688,229,4368_5934,Liffey Valley,17758,0,4368_7778195_4026016,4368_178 -4358_80688,228,4368_5935,Liffey Valley,12025,0,4368_7778195_4026005,4368_177 -4358_80688,227,4368_5936,Liffey Valley,4935,0,4368_7778195_4026012,4368_178 -4358_80688,229,4368_5937,Liffey Valley,17777,0,4368_7778195_4026017,4368_177 -4358_80688,227,4368_5938,Liffey Valley,4914,0,4368_7778195_4026005,4368_177 -4358_80688,228,4368_5939,Liffey Valley,12137,0,4368_7778195_4026016,4368_177 -4358_80754,228,4368_594,Ashtown Stn,9854,0,4368_7778195_5120003,4368_22 -4358_80688,229,4368_5940,Liffey Valley,17667,0,4368_7778195_4026007,4368_177 -4358_80688,227,4368_5941,Liffey Valley,4885,0,4368_7778195_4026022,4368_177 -4358_80688,228,4368_5942,Liffey Valley,12051,0,4368_7778195_4026019,4368_177 -4358_80688,227,4368_5943,Liffey Valley,5104,0,4368_7778195_4026025,4368_177 -4358_80688,229,4368_5944,Liffey Valley,17737,0,4368_7778195_4026011,4368_178 -4358_80688,228,4368_5945,Liffey Valley,12066,0,4368_7778195_4026010,4368_177 -4358_80688,227,4368_5946,Liffey Valley,4945,0,4368_7778195_4026019,4368_178 -4358_80688,229,4368_5947,Liffey Valley,17751,0,4368_7778195_4026014,4368_177 -4358_80688,227,4368_5948,Liffey Valley,5046,0,4368_7778195_4026013,4368_177 -4358_80688,228,4368_5949,Liffey Valley,11979,0,4368_7778195_4026006,4368_177 -4358_80754,229,4368_595,Ashtown Stn,15918,0,4368_7778195_5120003,4368_20 -4358_80688,229,4368_5950,Liffey Valley,17722,0,4368_7778195_4026006,4368_177 -4358_80688,227,4368_5951,Liffey Valley,4856,0,4368_7778195_4026002,4368_177 -4358_80688,228,4368_5952,Liffey Valley,12174,0,4368_7778195_4026022,4368_177 -4358_80688,227,4368_5953,Liffey Valley,5115,0,4368_7778195_4026026,4368_177 -4358_80688,229,4368_5954,Liffey Valley,17652,0,4368_7778195_4026010,4368_178 -4358_80688,228,4368_5955,Liffey Valley,12027,0,4368_7778195_4026005,4368_177 -4358_80688,227,4368_5956,Liffey Valley,5077,0,4368_7778195_4026014,4368_178 -4358_80688,229,4368_5957,Liffey Valley,17779,0,4368_7778195_4026017,4368_177 -4358_80688,227,4368_5958,Liffey Valley,4937,0,4368_7778195_4026012,4368_177 -4358_80688,228,4368_5959,Liffey Valley,12139,0,4368_7778195_4026016,4368_177 -4358_80754,228,4368_596,Ashtown Stn,9881,0,4368_7778195_5120004,4368_20 -4358_80688,229,4368_5960,Liffey Valley,17669,0,4368_7778195_4026007,4368_177 -4358_80688,227,4368_5961,Liffey Valley,5106,0,4368_7778195_4026025,4368_177 -4358_80688,228,4368_5962,Liffey Valley,12053,0,4368_7778195_4026019,4368_177 -4358_80688,227,4368_5963,Liffey Valley,4947,0,4368_7778195_4026019,4368_177 -4358_80688,229,4368_5964,Liffey Valley,17739,0,4368_7778195_4026011,4368_178 -4358_80688,227,4368_5965,Liffey Valley,4966,0,4368_7778195_4026007,4368_177 -4358_80688,228,4368_5966,Liffey Valley,12068,0,4368_7778195_4026010,4368_178 -4358_80688,229,4368_5967,Liffey Valley,17753,0,4368_7778195_4026014,4368_177 -4358_80688,227,4368_5968,Liffey Valley,4858,0,4368_7778195_4026002,4368_177 -4358_80688,228,4368_5969,Liffey Valley,13326,0,4368_7778195_4026020,4368_177 -4358_80754,227,4368_597,Ashtown Stn,2145,0,4368_7778195_5120003,4368_22 -4358_80688,229,4368_5970,Liffey Valley,17724,0,4368_7778195_4026006,4368_177 -4358_80688,227,4368_5971,Liffey Valley,5048,0,4368_7778195_4026013,4368_177 -4358_80688,228,4368_5972,Liffey Valley,12176,0,4368_7778195_4026022,4368_177 -4358_80688,227,4368_5973,Liffey Valley,5117,0,4368_7778195_4026026,4368_177 -4358_80688,229,4368_5974,Liffey Valley,17654,0,4368_7778195_4026010,4368_178 -4358_80688,228,4368_5975,Liffey Valley,12029,0,4368_7778195_4026005,4368_177 -4358_80688,227,4368_5976,Liffey Valley,4939,0,4368_7778195_4026012,4368_178 -4358_80688,229,4368_5977,Liffey Valley,17764,0,4368_7778195_4026016,4368_177 -4358_80688,228,4368_5978,Liffey Valley,12055,0,4368_7778195_4026019,4368_177 -4358_80688,227,4368_5979,Liffey Valley,4949,0,4368_7778195_4026019,4368_178 -4358_80754,229,4368_598,Ashtown Stn,15916,0,4368_7778195_5120001,4368_20 -4358_80688,229,4368_5980,Liffey Valley,17783,0,4368_7778195_4026017,4368_179 -4358_80688,227,4368_5981,Merrion Square,4889,1,4368_7778195_4026003,4368_180 -4358_80688,228,4368_5982,Merrion Square,11943,1,4368_7778195_4026001,4368_180 -4358_80688,227,4368_5983,Merrion Square,4877,1,4368_7778195_4026001,4368_180 -4358_80688,227,4368_5984,Merrion Square,4843,1,4368_7778195_4026002,4368_180 -4358_80688,228,4368_5985,Merrion Square,11956,1,4368_7778195_4026004,4368_180 -4358_80688,227,4368_5986,Merrion Square,4995,1,4368_7778195_4026009,4368_180 -4358_80688,228,4368_5987,Merrion Square,12033,1,4368_7778195_4026003,4368_180 -4358_80688,227,4368_5988,Merrion Square,5026,1,4368_7778195_4026010,4368_181 -4358_80688,227,4368_5989,Merrion Square,4903,1,4368_7778195_4026005,4368_180 -4358_80754,228,4368_599,Ashtown Stn,9804,0,4368_7778195_5120002,4368_20 -4358_80688,227,4368_5990,Merrion Square,4951,1,4368_7778195_4026007,4368_180 -4358_80688,228,4368_5991,Merrion Square,12004,1,4368_7778195_4026002,4368_181 -4358_80688,227,4368_5992,Merrion Square,5064,1,4368_7778195_4026014,4368_180 -4358_80688,227,4368_5993,Merrion Square,4891,1,4368_7778195_4026003,4368_180 -4358_80688,228,4368_5994,Merrion Square,12014,1,4368_7778195_4026005,4368_181 -4358_80688,229,4368_5995,Merrion Square,17689,1,4368_7778195_4026004,4368_182 -4358_80688,227,4368_5996,Merrion Square,4990,1,4368_7778195_4026011,4368_180 -4358_80688,228,4368_5997,Merrion Square,11968,1,4368_7778195_4026006,4368_180 -4358_80688,227,4368_5998,Merrion Square,4924,1,4368_7778195_4026012,4368_181 -4358_80688,227,4368_5999,Merrion Square,5082,1,4368_7778195_4026016,4368_180 -4358_80760,227,4368_6,Shaw street,1897,0,4368_7778195_9001002,4368_1 -4358_80760,228,4368_60,Shaw street,9508,0,4368_7778195_9001005,4368_1 -4358_80754,227,4368_600,Ashtown Stn,2087,0,4368_7778195_5120008,4368_22 -4358_80688,229,4368_6000,Merrion Square,17709,1,4368_7778195_4026006,4368_180 -4358_80688,227,4368_6001,Merrion Square,4879,1,4368_7778195_4026001,4368_180 -4358_80688,228,4368_6002,Merrion Square,11958,1,4368_7778195_4026004,4368_181 -4358_80688,227,4368_6003,Merrion Square,4845,1,4368_7778195_4026002,4368_180 -4358_80688,228,4368_6004,Merrion Square,12034,1,4368_7778195_4026003,4368_180 -4358_80688,229,4368_6005,Merrion Square,17672,1,4368_7778195_4026002,4368_181 -4358_80688,227,4368_6006,Merrion Square,4997,1,4368_7778195_4026009,4368_180 -4358_80688,229,4368_6007,Merrion Square,17656,1,4368_7778195_4026007,4368_180 -4358_80688,228,4368_6008,Merrion Square,11984,1,4368_7778195_4026008,4368_181 -4358_80688,227,4368_6009,Merrion Square,5080,1,4368_7778195_4026015,4368_180 -4358_80754,229,4368_601,Ashtown Stn,15943,0,4368_7778195_5120004,4368_20 -4358_80688,228,4368_6010,Merrion Square,11947,1,4368_7778195_4026001,4368_180 -4358_80688,227,4368_6011,Merrion Square,5028,1,4368_7778195_4026010,4368_181 -4358_80688,229,4368_6012,Merrion Square,17701,1,4368_7778195_4026005,4368_182 -4358_80688,228,4368_6013,Merrion Square,12006,1,4368_7778195_4026002,4368_180 -4358_80688,227,4368_6014,Merrion Square,4905,1,4368_7778195_4026005,4368_181 -4358_80688,229,4368_6015,Merrion Square,17631,1,4368_7778195_4026001,4368_180 -4358_80688,228,4368_6016,Merrion Square,12057,1,4368_7778195_4026010,4368_180 -4358_80688,227,4368_6017,Merrion Square,5009,1,4368_7778195_4026017,4368_181 -4358_80688,229,4368_6018,Merrion Square,17711,1,4368_7778195_4026006,4368_180 -4358_80688,228,4368_6019,Merrion Square,11970,1,4368_7778195_4026006,4368_180 -4358_80754,227,4368_602,Ashtown Stn,2111,0,4368_7778195_5120007,4368_20 -4358_80688,227,4368_6020,Merrion Square,5066,1,4368_7778195_4026014,4368_181 -4358_80688,228,4368_6021,Merrion Square,11960,1,4368_7778195_4026004,4368_180 -4358_80688,229,4368_6022,Merrion Square,17681,1,4368_7778195_4026003,4368_181 -4358_80688,227,4368_6023,Merrion Square,4988,1,4368_7778195_4026008,4368_182 -4358_80688,228,4368_6024,Merrion Square,12036,1,4368_7778195_4026003,4368_180 -4358_80688,227,4368_6025,Merrion Square,4926,1,4368_7778195_4026012,4368_181 -4358_80688,229,4368_6026,Merrion Square,17693,1,4368_7778195_4026004,4368_180 -4358_80688,227,4368_6027,Merrion Square,4955,1,4368_7778195_4026007,4368_180 -4358_80688,228,4368_6028,Merrion Square,12018,1,4368_7778195_4026005,4368_181 -4358_80688,229,4368_6029,Merrion Square,17658,1,4368_7778195_4026007,4368_180 -4358_80754,228,4368_603,Ashtown Stn,9856,0,4368_7778195_5120003,4368_22 -4358_80688,228,4368_6030,Merrion Square,12071,1,4368_7778195_4026011,4368_180 -4358_80688,227,4368_6031,Merrion Square,4847,1,4368_7778195_4026002,4368_181 -4358_80688,228,4368_6032,Merrion Square,11949,1,4368_7778195_4026001,4368_180 -4358_80688,227,4368_6033,Merrion Square,4895,1,4368_7778195_4026003,4368_181 -4358_80688,229,4368_6034,Merrion Square,17703,1,4368_7778195_4026005,4368_182 -4358_80688,228,4368_6035,Merrion Square,12008,1,4368_7778195_4026002,4368_180 -4358_80688,227,4368_6036,Merrion Square,5030,1,4368_7778195_4026010,4368_181 -4358_80688,229,4368_6037,Merrion Square,17676,1,4368_7778195_4026002,4368_180 -4358_80688,228,4368_6038,Merrion Square,12059,1,4368_7778195_4026010,4368_180 -4358_80688,227,4368_6039,Merrion Square,4907,1,4368_7778195_4026005,4368_181 -4358_80754,229,4368_604,Ashtown Stn,15928,0,4368_7778195_5120005,4368_20 -4358_80688,229,4368_6040,Merrion Square,17713,1,4368_7778195_4026006,4368_180 -4358_80688,228,4368_6041,Merrion Square,11972,1,4368_7778195_4026006,4368_180 -4358_80688,227,4368_6042,Merrion Square,5039,1,4368_7778195_4026013,4368_181 -4358_80688,227,4368_6043,Merrion Square,5001,1,4368_7778195_4026009,4368_180 -4358_80688,228,4368_6044,Merrion Square,11962,1,4368_7778195_4026004,4368_181 -4358_80688,229,4368_6045,Merrion Square,17683,1,4368_7778195_4026003,4368_182 -4358_80688,228,4368_6046,Merrion Square,12038,1,4368_7778195_4026003,4368_180 -4358_80688,227,4368_6047,Merrion Square,5011,1,4368_7778195_4026017,4368_181 -4358_80688,229,4368_6048,Merrion Square,17635,1,4368_7778195_4026001,4368_180 -4358_80688,228,4368_6049,Merrion Square,12020,1,4368_7778195_4026005,4368_180 -4358_80754,228,4368_605,Ashtown Stn,9883,0,4368_7778195_5120004,4368_20 -4358_80688,227,4368_6050,Merrion Square,5086,1,4368_7778195_4026018,4368_181 -4358_80688,229,4368_6051,Merrion Square,17660,1,4368_7778195_4026007,4368_180 -4358_80688,227,4368_6052,Merrion Square,4957,1,4368_7778195_4026007,4368_180 -4358_80688,228,4368_6053,Merrion Square,12109,1,4368_7778195_4026014,4368_181 -4358_80688,229,4368_6054,Merrion Square,17705,1,4368_7778195_4026005,4368_180 -4358_80688,228,4368_6055,Merrion Square,12114,1,4368_7778195_4026015,4368_181 -4358_80688,227,4368_6056,Merrion Square,5070,1,4368_7778195_4026014,4368_182 -4358_80688,227,4368_6057,Merrion Square,4897,1,4368_7778195_4026003,4368_180 -4358_80688,228,4368_6058,Merrion Square,12090,1,4368_7778195_4026013,4368_181 -4358_80688,229,4368_6059,Merrion Square,17643,1,4368_7778195_4026010,4368_180 -4358_80754,227,4368_606,Ashtown Stn,2147,0,4368_7778195_5120003,4368_22 -4358_80688,228,4368_6060,Merrion Square,11951,1,4368_7778195_4026001,4368_180 -4358_80688,227,4368_6061,Merrion Square,4940,1,4368_7778195_4026019,4368_181 -4358_80688,229,4368_6062,Merrion Square,17715,1,4368_7778195_4026006,4368_180 -4358_80688,228,4368_6063,Merrion Square,12132,1,4368_7778195_4026016,4368_180 -4358_80688,227,4368_6064,Merrion Square,4930,1,4368_7778195_4026012,4368_181 -4358_80688,228,4368_6065,Merrion Square,12061,1,4368_7778195_4026010,4368_180 -4358_80688,227,4368_6066,Merrion Square,5041,1,4368_7778195_4026013,4368_181 -4358_80688,229,4368_6067,Merrion Square,17685,1,4368_7778195_4026003,4368_182 -4358_80688,228,4368_6068,Merrion Square,11974,1,4368_7778195_4026006,4368_180 -4358_80688,227,4368_6069,Merrion Square,4851,1,4368_7778195_4026002,4368_181 -4358_80754,229,4368_607,Ashtown Stn,15920,0,4368_7778195_5120003,4368_20 -4358_80688,229,4368_6070,Merrion Square,17732,1,4368_7778195_4026011,4368_180 -4358_80688,227,4368_6071,Merrion Square,5013,1,4368_7778195_4026017,4368_180 -4358_80688,228,4368_6072,Merrion Square,11964,1,4368_7778195_4026004,4368_180 -4358_80688,227,4368_6073,Merrion Square,4991,1,4368_7778195_4026020,4368_180 -4358_80688,229,4368_6074,Merrion Square,17662,1,4368_7778195_4026007,4368_180 -4358_80688,227,4368_6075,Merrion Square,5092,1,4368_7778195_4026021,4368_180 -4358_80688,228,4368_6076,Merrion Square,11940,1,4368_7778195_4026018,4368_181 -4358_80688,227,4368_6077,Merrion Square,4959,1,4368_7778195_4026007,4368_180 -4358_80688,229,4368_6078,Merrion Square,17707,1,4368_7778195_4026005,4368_180 -4358_80688,228,4368_6079,Merrion Square,12022,1,4368_7778195_4026005,4368_181 -4358_80754,227,4368_608,Ashtown Stn,2186,0,4368_7778195_5120009,4368_20 -4358_80688,227,4368_6080,Merrion Square,4911,1,4368_7778195_4026005,4368_180 -4358_80688,228,4368_6081,Merrion Square,12111,1,4368_7778195_4026014,4368_180 -4358_80688,227,4368_6082,Merrion Square,5072,1,4368_7778195_4026014,4368_181 -4358_80688,229,4368_6083,Merrion Square,17645,1,4368_7778195_4026010,4368_180 -4358_80688,227,4368_6084,Merrion Square,4899,1,4368_7778195_4026003,4368_180 -4358_80688,228,4368_6085,Merrion Square,12143,1,4368_7778195_4026017,4368_180 -4358_80688,227,4368_6086,Merrion Square,5005,1,4368_7778195_4026009,4368_180 -4358_80688,229,4368_6087,Merrion Square,17717,1,4368_7778195_4026006,4368_180 -4358_80688,228,4368_6088,Merrion Square,12048,1,4368_7778195_4026019,4368_180 -4358_80688,227,4368_6089,Merrion Square,4942,1,4368_7778195_4026019,4368_181 -4358_80754,228,4368_609,Ashtown Stn,9806,0,4368_7778195_5120002,4368_22 -4358_80688,227,4368_6090,Merrion Square,4967,1,4368_7778195_4026023,4368_180 -4358_80688,228,4368_6091,Merrion Square,11953,1,4368_7778195_4026001,4368_180 -4358_80688,229,4368_6092,Merrion Square,17687,1,4368_7778195_4026003,4368_181 -4358_80688,227,4368_6093,Merrion Square,5095,1,4368_7778195_4026024,4368_180 -4358_80688,228,4368_6094,Merrion Square,12063,1,4368_7778195_4026010,4368_180 -4358_80688,227,4368_6095,Merrion Square,5043,1,4368_7778195_4026013,4368_181 -4358_80688,229,4368_6096,Merrion Square,17734,1,4368_7778195_4026011,4368_180 -4358_80688,227,4368_6097,Merrion Square,5090,1,4368_7778195_4026018,4368_180 -4358_80688,228,4368_6098,Merrion Square,12118,1,4368_7778195_4026015,4368_180 -4358_80688,227,4368_6099,Merrion Square,4853,1,4368_7778195_4026002,4368_180 -4358_80760,227,4368_61,Shaw street,1847,0,4368_7778195_9001006,4368_1 -4358_80754,229,4368_610,Ashtown Stn,15945,0,4368_7778195_5120004,4368_20 -4358_80688,229,4368_6100,Merrion Square,17748,1,4368_7778195_4026014,4368_180 -4358_80688,228,4368_6101,Merrion Square,11976,1,4368_7778195_4026006,4368_180 -4358_80688,227,4368_6102,Merrion Square,5015,1,4368_7778195_4026017,4368_180 -4358_80688,228,4368_6103,Merrion Square,12094,1,4368_7778195_4026013,4368_180 -4358_80688,229,4368_6104,Merrion Square,17755,1,4368_7778195_4026015,4368_181 -4358_80688,227,4368_6105,Merrion Square,4993,1,4368_7778195_4026020,4368_180 -4358_80688,228,4368_6106,Merrion Square,12024,1,4368_7778195_4026005,4368_180 -4358_80688,229,4368_6107,Merrion Square,17757,1,4368_7778195_4026016,4368_180 -4358_80688,227,4368_6108,Merrion Square,4934,1,4368_7778195_4026012,4368_181 -4358_80688,228,4368_6109,Merrion Square,12113,1,4368_7778195_4026014,4368_180 -4358_80754,228,4368_611,Ashtown Stn,9858,0,4368_7778195_5120003,4368_20 -4358_80688,227,4368_6110,Merrion Square,4913,1,4368_7778195_4026005,4368_180 -4358_80688,229,4368_6111,Merrion Square,17776,1,4368_7778195_4026017,4368_180 -4358_80688,228,4368_6112,Merrion Square,12136,1,4368_7778195_4026016,4368_180 -4358_80688,227,4368_6113,Merrion Square,4884,1,4368_7778195_4026022,4368_180 -4358_80688,229,4368_6114,Merrion Square,17666,1,4368_7778195_4026007,4368_180 -4358_80688,228,4368_6115,Merrion Square,12050,1,4368_7778195_4026019,4368_181 -4358_80688,227,4368_6116,Merrion Square,4901,1,4368_7778195_4026003,4368_180 -4358_80688,228,4368_6117,Merrion Square,11955,1,4368_7778195_4026001,4368_180 -4358_80688,227,4368_6118,Merrion Square,5103,1,4368_7778195_4026025,4368_180 -4358_80688,229,4368_6119,Merrion Square,17736,1,4368_7778195_4026011,4368_181 -4358_80754,227,4368_612,Ashtown Stn,2190,0,4368_7778195_5120010,4368_22 -4358_80688,228,4368_6120,Merrion Square,12065,1,4368_7778195_4026010,4368_180 -4358_80688,227,4368_6121,Merrion Square,4944,1,4368_7778195_4026019,4368_181 -4358_80688,229,4368_6122,Merrion Square,17750,1,4368_7778195_4026014,4368_180 -4358_80688,227,4368_6123,Merrion Square,5045,1,4368_7778195_4026013,4368_180 -4358_80688,228,4368_6124,Merrion Square,11978,1,4368_7778195_4026006,4368_180 -4358_80688,229,4368_6125,Merrion Square,17721,1,4368_7778195_4026006,4368_180 -4358_80688,227,4368_6126,Merrion Square,4855,1,4368_7778195_4026002,4368_180 -4358_80688,228,4368_6127,Merrion Square,12173,1,4368_7778195_4026022,4368_180 -4358_80688,227,4368_6128,Merrion Square,5114,1,4368_7778195_4026026,4368_180 -4358_80688,229,4368_6129,Merrion Square,17651,1,4368_7778195_4026010,4368_181 -4358_80754,229,4368_613,Ashtown Stn,15930,0,4368_7778195_5120005,4368_20 -4358_80688,228,4368_6130,Merrion Square,12026,1,4368_7778195_4026005,4368_180 -4358_80688,227,4368_6131,Merrion Square,5076,1,4368_7778195_4026014,4368_181 -4358_80688,229,4368_6132,Merrion Square,17778,1,4368_7778195_4026017,4368_180 -4358_80688,227,4368_6133,Merrion Square,4936,1,4368_7778195_4026012,4368_180 -4358_80688,228,4368_6134,Merrion Square,12138,1,4368_7778195_4026016,4368_180 -4358_80688,229,4368_6135,Merrion Square,17668,1,4368_7778195_4026007,4368_180 -4358_80688,227,4368_6136,Merrion Square,4965,1,4368_7778195_4026007,4368_180 -4358_80688,228,4368_6137,Merrion Square,12052,1,4368_7778195_4026019,4368_180 -4358_80688,227,4368_6138,Merrion Square,5105,1,4368_7778195_4026025,4368_180 -4358_80688,229,4368_6139,Merrion Square,17738,1,4368_7778195_4026011,4368_181 -4358_80754,227,4368_614,Ashtown Stn,2089,0,4368_7778195_5120008,4368_21 -4358_80688,228,4368_6140,Merrion Square,12067,1,4368_7778195_4026010,4368_180 -4358_80688,227,4368_6141,Merrion Square,4946,1,4368_7778195_4026019,4368_181 -4358_80688,229,4368_6142,Merrion Square,17752,1,4368_7778195_4026014,4368_180 -4358_80688,227,4368_6143,Merrion Square,5047,1,4368_7778195_4026013,4368_180 -4358_80688,228,4368_6144,Merrion Square,13325,1,4368_7778195_4026020,4368_180 -4358_80688,229,4368_6145,Merrion Square,17723,1,4368_7778195_4026006,4368_180 -4358_80688,227,4368_6146,Merrion Square,4857,1,4368_7778195_4026002,4368_180 -4358_80688,228,4368_6147,Merrion Square,12175,1,4368_7778195_4026022,4368_180 -4358_80688,227,4368_6148,Merrion Square,5116,1,4368_7778195_4026026,4368_180 -4358_80688,229,4368_6149,Merrion Square,17653,1,4368_7778195_4026010,4368_181 -4358_80754,228,4368_615,Ashtown Stn,9885,0,4368_7778195_5120004,4368_20 -4358_80688,227,4368_6150,Merrion Square,4888,1,4368_7778195_4026022,4368_180 -4358_80688,228,4368_6151,Merrion Square,12028,1,4368_7778195_4026005,4368_181 -4358_80688,229,4368_6152,Merrion Square,17763,1,4368_7778195_4026016,4368_180 -4358_80688,227,4368_6153,Merrion Square,4938,1,4368_7778195_4026012,4368_180 -4358_80688,228,4368_6154,Merrion Square,11982,1,4368_7778195_4026006,4368_180 -4358_80688,229,4368_6155,Merrion Square,17670,1,4368_7778195_4026007,4368_180 -4358_80688,227,4368_6156,Merrion Square,5107,1,4368_7778195_4026025,4368_180 -4358_80688,228,4368_6157,Merrion Square,12054,1,4368_7778195_4026019,4368_180 -4358_80688,227,4368_6158,Merrion Square,4948,1,4368_7778195_4026019,4368_180 -4358_80688,229,4368_6159,Merrion Square,17782,1,4368_7778195_4026017,4368_181 -4358_80754,227,4368_616,Ashtown Stn,2149,0,4368_7778195_5120003,4368_22 -4358_80688,228,4368_6160,Merrion Square,12069,1,4368_7778195_4026010,4368_180 -4358_80688,227,4368_6161,Merrion Square,4859,1,4368_7778195_4026002,4368_181 -4358_80688,229,4368_6162,Merrion Square,17754,1,4368_7778195_4026014,4368_180 -4358_80688,227,4368_6163,Merrion Square,5049,1,4368_7778195_4026013,4368_180 -4358_80688,228,4368_6164,Merrion Square,12177,1,4368_7778195_4026022,4368_181 -4358_80688,229,4368_6165,Merrion Square,17655,1,4368_7778195_4026010,4368_182 -4358_80689,227,4368_6166,Jobstown,5546,0,4368_7778195_6027101,4368_183 -4358_80689,227,4368_6167,Jobstown,1247,0,4368_7778195_3027008,4368_184 -4358_80689,228,4368_6168,Jobstown,12395,0,4368_7778195_6027101,4368_183 -4358_80689,227,4368_6169,Jobstown,5560,0,4368_7778195_6027102,4368_183 -4358_80754,227,4368_617,Ashtown Stn,2113,0,4368_7778195_5120007,4368_21 -4358_80689,227,4368_6170,Jobstown,1273,0,4368_7778195_3027012,4368_184 -4358_80689,228,4368_6171,Jobstown,12259,0,4368_7778195_6027102,4368_183 -4358_80689,227,4368_6172,Jobstown,5522,0,4368_7778195_6027103,4368_186 -4358_80689,227,4368_6173,Jobstown,6554,0,4368_7778195_6027105,4368_183 -4358_80689,227,4368_6174,Jobstown,1231,0,4368_7778195_3027016,4368_184 -4358_80689,227,4368_6175,Jobstown,5501,0,4368_7778195_6027106,4368_183 -4358_80689,227,4368_6176,Jobstown,5535,0,4368_7778195_6027107,4368_183 -4358_80689,227,4368_6177,Jobstown,1254,0,4368_7778195_3027017,4368_184 -4358_80689,228,4368_6178,Jobstown,12252,0,4368_7778195_6027103,4368_186 -4358_80689,227,4368_6179,Jobstown,5481,0,4368_7778195_6027108,4368_183 -4358_80754,227,4368_618,Ashtown Stn,2156,0,4368_7778195_5120012,4368_20 -4358_80689,227,4368_6180,Jobstown,5596,0,4368_7778195_6027109,4368_183 -4358_80689,227,4368_6181,Jobstown,5586,0,4368_7778195_6027110,4368_183 -4358_80689,228,4368_6182,Jobstown,8821,0,4368_7778195_3027001,4368_186 -4358_80689,227,4368_6183,Jobstown,5640,0,4368_7778195_6027104,4368_183 -4358_80689,227,4368_6184,Jobstown,5602,0,4368_7778195_6027111,4368_183 -4358_80689,227,4368_6185,Jobstown,5529,0,4368_7778195_6027112,4368_183 -4358_80689,228,4368_6186,Jobstown,8766,0,4368_7778195_3027002,4368_186 -4358_80689,227,4368_6187,Jobstown,5608,0,4368_7778195_6027113,4368_183 -4358_80689,227,4368_6188,Jobstown,1239,0,4368_7778195_3027002,4368_183 -4358_80689,227,4368_6189,Jobstown,1281,0,4368_7778195_3027004,4368_183 -4358_80754,229,4368_619,Ashtown Stn,15922,0,4368_7778195_5120003,4368_22 -4358_80689,228,4368_6190,Jobstown,8906,0,4368_7778195_3027004,4368_186 -4358_80689,229,4368_6191,Jobstown,17895,0,4368_7778195_6027101,4368_188 -4358_80689,227,4368_6192,Jobstown,1192,0,4368_7778195_3027006,4368_183 -4358_80689,228,4368_6193,Jobstown,12397,0,4368_7778195_6027104,4368_183 -4358_80689,227,4368_6194,Jobstown,1288,0,4368_7778195_3027007,4368_186 -4358_80689,227,4368_6195,Jobstown,1249,0,4368_7778195_3027008,4368_183 -4358_80689,229,4368_6196,Jobstown,17901,0,4368_7778195_6027102,4368_186 -4358_80689,228,4368_6197,Jobstown,12296,0,4368_7778195_6027105,4368_183 -4358_80689,227,4368_6198,Jobstown,1337,0,4368_7778195_3027029,4368_186 -4358_80689,227,4368_6199,Jobstown,1338,0,4368_7778195_3027031,4368_183 -4358_80760,229,4368_62,Shaw street,15662,0,4368_7778195_9001005,4368_1 -4358_80754,228,4368_620,Ashtown Stn,9808,0,4368_7778195_5120002,4368_20 -4358_80689,227,4368_6200,Jobstown,1262,0,4368_7778195_3027011,4368_183 -4358_80689,229,4368_6201,Jobstown,17883,0,4368_7778195_6027103,4368_186 -4358_80689,228,4368_6202,Jobstown,12261,0,4368_7778195_6027102,4368_188 -4358_80689,227,4368_6203,Jobstown,1275,0,4368_7778195_3027012,4368_183 -4358_80689,228,4368_6204,Jobstown,12271,0,4368_7778195_6027106,4368_186 -4358_80689,229,4368_6205,Jobstown,15075,0,4368_7778195_3027001,4368_183 -4358_80689,228,4368_6206,Jobstown,12244,0,4368_7778195_6027107,4368_186 -4358_80689,227,4368_6207,Jobstown,1177,0,4368_7778195_3027015,4368_188 -4358_80689,227,4368_6208,Jobstown,1233,0,4368_7778195_3027016,4368_183 -4358_80689,228,4368_6209,Jobstown,12327,0,4368_7778195_6027108,4368_186 -4358_80754,227,4368_621,Ashtown Stn,2188,0,4368_7778195_5120009,4368_20 -4358_80689,227,4368_6210,Jobstown,1153,0,4368_7778195_3027003,4368_183 -4358_80689,229,4368_6211,Jobstown,17916,0,4368_7778195_6027104,4368_186 -4358_80689,228,4368_6212,Jobstown,12254,0,4368_7778195_6027103,4368_188 -4358_80689,227,4368_6213,Jobstown,1256,0,4368_7778195_3027017,4368_183 -4358_80689,228,4368_6214,Jobstown,12276,0,4368_7778195_6027109,4368_186 -4358_80689,229,4368_6215,Jobstown,15111,0,4368_7778195_3027005,4368_183 -4358_80689,228,4368_6216,Jobstown,8805,0,4368_7778195_3027009,4368_186 -4358_80689,227,4368_6217,Jobstown,5548,0,4368_7778195_6027101,4368_188 -4358_80689,227,4368_6218,Jobstown,5562,0,4368_7778195_6027102,4368_183 -4358_80689,228,4368_6219,Jobstown,12291,0,4368_7778195_6027110,4368_186 -4358_80754,227,4368_622,Ashtown Stn,2123,0,4368_7778195_5120011,4368_21 -4358_80689,228,4368_6220,Jobstown,12335,0,4368_7778195_6027111,4368_183 -4358_80689,229,4368_6221,Jobstown,17890,0,4368_7778195_6027105,4368_186 -4358_80689,227,4368_6222,Jobstown,5524,0,4368_7778195_6027103,4368_188 -4358_80689,227,4368_6223,Jobstown,6556,0,4368_7778195_6027105,4368_183 -4358_80689,228,4368_6224,Jobstown,12314,0,4368_7778195_6027112,4368_186 -4358_80689,229,4368_6225,Jobstown,15095,0,4368_7778195_3027007,4368_183 -4358_80689,228,4368_6226,Jobstown,8823,0,4368_7778195_3027001,4368_186 -4358_80689,227,4368_6227,Jobstown,5503,0,4368_7778195_6027106,4368_188 -4358_80689,227,4368_6228,Jobstown,1326,0,4368_7778195_3027026,4368_183 -4358_80689,228,4368_6229,Jobstown,8768,0,4368_7778195_3027002,4368_186 -4358_80754,229,4368_623,Ashtown Stn,15947,0,4368_7778195_5120004,4368_20 -4358_80689,228,4368_6230,Jobstown,8871,0,4368_7778195_3027012,4368_183 -4358_80689,227,4368_6231,Jobstown,1333,0,4368_7778195_3027028,4368_186 -4358_80689,229,4368_6232,Jobstown,15149,0,4368_7778195_3027008,4368_188 -4358_80689,227,4368_6233,Jobstown,5483,0,4368_7778195_6027108,4368_183 -4358_80689,228,4368_6234,Jobstown,8919,0,4368_7778195_3027013,4368_186 -4358_80689,229,4368_6235,Jobstown,17927,0,4368_7778195_6027106,4368_183 -4358_80689,227,4368_6236,Jobstown,5598,0,4368_7778195_6027109,4368_183 -4358_80689,228,4368_6237,Jobstown,8924,0,4368_7778195_3027014,4368_186 -4358_80689,227,4368_6238,Jobstown,5588,0,4368_7778195_6027110,4368_183 -4358_80689,228,4368_6239,Jobstown,8908,0,4368_7778195_3027004,4368_186 -4358_80754,227,4368_624,Ashtown Stn,2192,0,4368_7778195_5120010,4368_20 -4358_80689,229,4368_6240,Jobstown,17897,0,4368_7778195_6027101,4368_188 -4358_80689,227,4368_6241,Jobstown,5642,0,4368_7778195_6027104,4368_183 -4358_80689,228,4368_6242,Jobstown,8889,0,4368_7778195_3027015,4368_186 -4358_80689,229,4368_6243,Jobstown,17903,0,4368_7778195_6027102,4368_183 -4358_80689,228,4368_6244,Jobstown,12399,0,4368_7778195_6027104,4368_183 -4358_80689,227,4368_6245,Jobstown,5604,0,4368_7778195_6027111,4368_186 -4358_80689,227,4368_6246,Jobstown,5531,0,4368_7778195_6027112,4368_183 -4358_80689,228,4368_6247,Jobstown,12319,0,4368_7778195_6027113,4368_186 -4358_80689,229,4368_6248,Jobstown,15163,0,4368_7778195_3027011,4368_188 -4358_80689,228,4368_6249,Jobstown,8759,0,4368_7778195_3027018,4368_183 -4358_80754,228,4368_625,Ashtown Stn,9860,0,4368_7778195_5120003,4368_20 -4358_80689,227,4368_6250,Jobstown,5610,0,4368_7778195_6027113,4368_186 -4358_80689,229,4368_6251,Jobstown,17921,0,4368_7778195_6027107,4368_183 -4358_80689,228,4368_6252,Jobstown,8742,0,4368_7778195_3027019,4368_183 -4358_80689,227,4368_6253,Jobstown,1241,0,4368_7778195_3027002,4368_186 -4358_80689,227,4368_6254,Jobstown,1283,0,4368_7778195_3027004,4368_183 -4358_80689,228,4368_6255,Jobstown,12298,0,4368_7778195_6027105,4368_186 -4358_80689,229,4368_6256,Jobstown,17885,0,4368_7778195_6027103,4368_188 -4358_80689,227,4368_6257,Jobstown,1194,0,4368_7778195_3027006,4368_183 -4358_80689,228,4368_6258,Jobstown,8879,0,4368_7778195_3027020,4368_186 -4358_80689,229,4368_6259,Jobstown,15175,0,4368_7778195_3027012,4368_183 -4358_80754,229,4368_626,Ashtown Stn,15932,0,4368_7778195_5120005,4368_20 -4358_80689,228,4368_6260,Jobstown,12263,0,4368_7778195_6027102,4368_183 -4358_80689,227,4368_6261,Jobstown,1290,0,4368_7778195_3027007,4368_186 -4358_80689,228,4368_6262,Jobstown,12273,0,4368_7778195_6027106,4368_183 -4358_80689,229,4368_6263,Jobstown,15077,0,4368_7778195_3027001,4368_186 -4358_80689,227,4368_6264,Jobstown,1251,0,4368_7778195_3027008,4368_188 -4358_80689,227,4368_6265,Jobstown,1340,0,4368_7778195_3027031,4368_183 -4358_80689,228,4368_6266,Jobstown,12246,0,4368_7778195_6027107,4368_186 -4358_80689,229,4368_6267,Jobstown,17918,0,4368_7778195_6027104,4368_183 -4358_80689,227,4368_6268,Jobstown,1264,0,4368_7778195_3027011,4368_183 -4358_80689,228,4368_6269,Jobstown,12329,0,4368_7778195_6027108,4368_186 -4358_80754,227,4368_627,Ashtown Stn,2151,0,4368_7778195_5120003,4368_20 -4358_80689,227,4368_6270,Jobstown,1277,0,4368_7778195_3027012,4368_183 -4358_80689,229,4368_6271,Jobstown,15113,0,4368_7778195_3027005,4368_186 -4358_80689,228,4368_6272,Jobstown,12256,0,4368_7778195_6027103,4368_188 -4358_80689,228,4368_6273,Jobstown,12278,0,4368_7778195_6027109,4368_183 -4358_80689,227,4368_6274,Jobstown,1179,0,4368_7778195_3027015,4368_186 -4358_80689,229,4368_6275,Jobstown,17910,0,4368_7778195_6027108,4368_183 -4358_80689,228,4368_6276,Jobstown,8807,0,4368_7778195_3027009,4368_183 -4358_80689,227,4368_6277,Jobstown,1235,0,4368_7778195_3027016,4368_186 -4358_80689,227,4368_6278,Jobstown,1155,0,4368_7778195_3027003,4368_183 -4358_80689,228,4368_6279,Jobstown,12293,0,4368_7778195_6027110,4368_186 -4358_80754,228,4368_628,Ashtown Stn,9887,0,4368_7778195_5120004,4368_20 -4358_80689,229,4368_6280,Jobstown,17892,0,4368_7778195_6027105,4368_188 -4358_80689,227,4368_6281,Jobstown,1258,0,4368_7778195_3027017,4368_183 -4358_80689,228,4368_6282,Jobstown,12337,0,4368_7778195_6027111,4368_186 -4358_80689,229,4368_6283,Jobstown,15142,0,4368_7778195_3027013,4368_183 -4358_80689,227,4368_6284,Jobstown,5550,0,4368_7778195_6027101,4368_183 -4358_80689,228,4368_6285,Jobstown,12316,0,4368_7778195_6027112,4368_186 -4358_80689,227,4368_6286,Jobstown,5564,0,4368_7778195_6027102,4368_183 -4358_80689,229,4368_6287,Jobstown,15097,0,4368_7778195_3027007,4368_186 -4358_80689,228,4368_6288,Jobstown,8915,0,4368_7778195_3027021,4368_188 -4358_80689,228,4368_6289,Jobstown,8825,0,4368_7778195_3027001,4368_183 -4358_80754,229,4368_629,Ashtown Stn,15924,0,4368_7778195_5120003,4368_20 -4358_80689,227,4368_6290,Jobstown,5526,0,4368_7778195_6027103,4368_186 -4358_80689,229,4368_6291,Jobstown,15151,0,4368_7778195_3027008,4368_183 -4358_80689,228,4368_6292,Jobstown,8770,0,4368_7778195_3027002,4368_183 -4358_80689,227,4368_6293,Jobstown,6558,0,4368_7778195_6027105,4368_186 -4358_80689,228,4368_6294,Jobstown,8784,0,4368_7778195_3027022,4368_183 -4358_80689,227,4368_6295,Jobstown,5505,0,4368_7778195_6027106,4368_186 -4358_80689,229,4368_6296,Jobstown,17929,0,4368_7778195_6027106,4368_188 -4358_80689,227,4368_6297,Jobstown,1328,0,4368_7778195_3027026,4368_183 -4358_80689,228,4368_6298,Jobstown,8921,0,4368_7778195_3027013,4368_186 -4358_80689,229,4368_6299,Jobstown,15120,0,4368_7778195_3027014,4368_183 -4358_80760,227,4368_63,Shaw street,1703,0,4368_7778195_9001008,4368_1 -4358_80754,227,4368_630,Ashtown Stn,2158,0,4368_7778195_5120012,4368_20 -4358_80689,228,4368_6300,Jobstown,8926,0,4368_7778195_3027014,4368_183 -4358_80689,227,4368_6301,Jobstown,1335,0,4368_7778195_3027028,4368_186 -4358_80689,228,4368_6302,Jobstown,12323,0,4368_7778195_6027114,4368_183 -4358_80689,227,4368_6303,Jobstown,5485,0,4368_7778195_6027108,4368_186 -4358_80689,229,4368_6304,Jobstown,17899,0,4368_7778195_6027101,4368_188 -4358_80689,227,4368_6305,Jobstown,5600,0,4368_7778195_6027109,4368_183 -4358_80689,228,4368_6306,Jobstown,8910,0,4368_7778195_3027004,4368_186 -4358_80689,229,4368_6307,Jobstown,17905,0,4368_7778195_6027102,4368_183 -4358_80689,227,4368_6308,Jobstown,5590,0,4368_7778195_6027110,4368_183 -4358_80689,228,4368_6309,Jobstown,8891,0,4368_7778195_3027015,4368_186 -4358_80754,228,4368_631,Ashtown Stn,9810,0,4368_7778195_5120002,4368_20 -4358_80689,227,4368_6310,Jobstown,5644,0,4368_7778195_6027104,4368_183 -4358_80689,228,4368_6311,Jobstown,12401,0,4368_7778195_6027104,4368_186 -4358_80689,229,4368_6312,Jobstown,15165,0,4368_7778195_3027011,4368_188 -4358_80689,228,4368_6313,Jobstown,12321,0,4368_7778195_6027113,4368_183 -4358_80689,227,4368_6314,Jobstown,5606,0,4368_7778195_6027111,4368_186 -4358_80689,229,4368_6315,Jobstown,17923,0,4368_7778195_6027107,4368_183 -4358_80689,227,4368_6316,Jobstown,5533,0,4368_7778195_6027112,4368_183 -4358_80689,228,4368_6317,Jobstown,8761,0,4368_7778195_3027018,4368_186 -4358_80689,228,4368_6318,Jobstown,8744,0,4368_7778195_3027019,4368_183 -4358_80689,229,4368_6319,Jobstown,17887,0,4368_7778195_6027103,4368_186 -4358_80754,229,4368_632,Ashtown Stn,15949,0,4368_7778195_5120004,4368_20 -4358_80689,227,4368_6320,Jobstown,5612,0,4368_7778195_6027113,4368_188 -4358_80689,228,4368_6321,Jobstown,12300,0,4368_7778195_6027105,4368_183 -4358_80689,227,4368_6322,Jobstown,1243,0,4368_7778195_3027002,4368_186 -4358_80689,229,4368_6323,Jobstown,15177,0,4368_7778195_3027012,4368_183 -4358_80689,227,4368_6324,Jobstown,1285,0,4368_7778195_3027004,4368_183 -4358_80689,228,4368_6325,Jobstown,8881,0,4368_7778195_3027020,4368_186 -4358_80689,227,4368_6326,Jobstown,1196,0,4368_7778195_3027006,4368_183 -4358_80689,229,4368_6327,Jobstown,15079,0,4368_7778195_3027001,4368_186 -4358_80689,228,4368_6328,Jobstown,12265,0,4368_7778195_6027102,4368_188 -4358_80689,228,4368_6329,Jobstown,12275,0,4368_7778195_6027106,4368_183 -4358_80754,227,4368_633,Ashtown Stn,2125,0,4368_7778195_5120011,4368_20 -4358_80689,227,4368_6330,Jobstown,5616,0,4368_7778195_6027114,4368_186 -4358_80689,229,4368_6331,Jobstown,17920,0,4368_7778195_6027104,4368_183 -4358_80689,228,4368_6332,Jobstown,12248,0,4368_7778195_6027107,4368_183 -4358_80689,227,4368_6333,Jobstown,1292,0,4368_7778195_3027007,4368_186 -4358_80689,229,4368_6334,Jobstown,15115,0,4368_7778195_3027005,4368_183 -4358_80689,227,4368_6335,Jobstown,1253,0,4368_7778195_3027008,4368_186 -4358_80689,228,4368_6336,Jobstown,12331,0,4368_7778195_6027108,4368_188 -4358_80689,227,4368_6337,Jobstown,1342,0,4368_7778195_3027031,4368_183 -4358_80689,228,4368_6338,Jobstown,12258,0,4368_7778195_6027103,4368_186 -4358_80689,229,4368_6339,Jobstown,17912,0,4368_7778195_6027108,4368_183 -4358_80754,228,4368_634,Ashtown Stn,9862,0,4368_7778195_5120003,4368_20 -4358_80689,227,4368_6340,Jobstown,1266,0,4368_7778195_3027011,4368_183 -4358_80689,228,4368_6341,Jobstown,12280,0,4368_7778195_6027109,4368_186 -4358_80689,227,4368_6342,Jobstown,1279,0,4368_7778195_3027012,4368_183 -4358_80689,229,4368_6343,Jobstown,17894,0,4368_7778195_6027105,4368_186 -4358_80689,228,4368_6344,Jobstown,8913,0,4368_7778195_3027025,4368_188 -4358_80689,228,4368_6345,Jobstown,8809,0,4368_7778195_3027009,4368_183 -4358_80689,227,4368_6346,Jobstown,1181,0,4368_7778195_3027015,4368_186 -4358_80689,229,4368_6347,Jobstown,15144,0,4368_7778195_3027013,4368_183 -4358_80689,228,4368_6348,Jobstown,12295,0,4368_7778195_6027110,4368_183 -4358_80689,227,4368_6349,Jobstown,1237,0,4368_7778195_3027016,4368_186 -4358_80754,229,4368_635,Ashtown Stn,15934,0,4368_7778195_5120005,4368_20 -4358_80689,227,4368_6350,Jobstown,1157,0,4368_7778195_3027003,4368_183 -4358_80689,228,4368_6351,Jobstown,12339,0,4368_7778195_6027111,4368_186 -4358_80689,229,4368_6352,Jobstown,15099,0,4368_7778195_3027007,4368_188 -4358_80689,227,4368_6353,Jobstown,1260,0,4368_7778195_3027017,4368_183 -4358_80689,228,4368_6354,Jobstown,12318,0,4368_7778195_6027112,4368_186 -4358_80689,229,4368_6355,Jobstown,15153,0,4368_7778195_3027008,4368_183 -4358_80689,227,4368_6356,Jobstown,5552,0,4368_7778195_6027101,4368_183 -4358_80689,228,4368_6357,Jobstown,8917,0,4368_7778195_3027021,4368_186 -4358_80689,227,4368_6358,Jobstown,1295,0,4368_7778195_3027036,4368_183 -4358_80689,228,4368_6359,Jobstown,8827,0,4368_7778195_3027001,4368_186 -4358_80754,228,4368_636,Ashtown Stn,9889,0,4368_7778195_5120004,4368_22 -4358_80689,229,4368_6360,Jobstown,17931,0,4368_7778195_6027106,4368_188 -4358_80689,227,4368_6361,Jobstown,5566,0,4368_7778195_6027102,4368_183 -4358_80689,229,4368_6362,Jobstown,15122,0,4368_7778195_3027014,4368_183 -4358_80689,228,4368_6363,Jobstown,8786,0,4368_7778195_3027022,4368_186 -4358_80689,227,4368_6364,Jobstown,5528,0,4368_7778195_6027103,4368_188 -4358_80689,227,4368_6365,Jobstown,6560,0,4368_7778195_6027105,4368_183 -4358_80689,228,4368_6366,Jobstown,8928,0,4368_7778195_3027014,4368_183 -4358_80689,229,4368_6367,Jobstown,17907,0,4368_7778195_6027102,4368_186 -4358_80689,227,4368_6368,Jobstown,5487,0,4368_7778195_6027108,4368_183 -4358_80689,228,4368_6369,Jobstown,12325,0,4368_7778195_6027114,4368_183 -4358_80754,227,4368_637,Ashtown Stn,2153,0,4368_7778195_5120003,4368_23 -4358_80689,229,4368_6370,Jobstown,17925,0,4368_7778195_6027107,4368_186 -4358_80689,227,4368_6371,Jobstown,5592,0,4368_7778195_6027110,4368_183 -4358_80689,228,4368_6372,Jobstown,12403,0,4368_7778195_6027104,4368_183 -4358_80689,229,4368_6373,Jobstown,17889,0,4368_7778195_6027103,4368_186 -4358_80689,227,4368_6374,Jobstown,5646,0,4368_7778195_6027104,4368_183 -4358_80689,229,4368_6375,Jobstown,15081,0,4368_7778195_3027001,4368_183 -4358_80689,228,4368_6376,Jobstown,8763,0,4368_7778195_3027018,4368_186 -4358_80689,227,4368_6377,Jobstown,5614,0,4368_7778195_6027113,4368_183 -4358_80689,229,4368_6378,Jobstown,15117,0,4368_7778195_3027005,4368_183 -4358_80689,228,4368_6379,Jobstown,8883,0,4368_7778195_3027020,4368_186 -4358_80754,227,4368_638,Ashtown Stn,2160,0,4368_7778195_5120012,4368_20 -4358_80689,227,4368_6380,Jobstown,1245,0,4368_7778195_3027002,4368_183 -4358_80689,229,4368_6381,Jobstown,17914,0,4368_7778195_6027108,4368_183 -4358_80689,228,4368_6382,Jobstown,12250,0,4368_7778195_6027107,4368_186 -4358_80689,227,4368_6383,Jobstown,5618,0,4368_7778195_6027114,4368_183 -4358_80689,229,4368_6384,Jobstown,15146,0,4368_7778195_3027013,4368_183 -4358_80689,228,4368_6385,Jobstown,12333,0,4368_7778195_6027108,4368_186 -4358_80689,227,4368_6386,Jobstown,6668,0,4368_7778195_3027040,4368_183 -4358_80689,228,4368_6387,Jobstown,8811,0,4368_7778195_3027009,4368_183 -4358_80689,229,4368_6388,Jobstown,15186,0,4368_7778195_3027017,4368_186 -4358_80689,227,4368_6389,Jobstown,1159,0,4368_7778195_3027003,4368_183 -4358_80754,228,4368_639,Ashtown Stn,9812,0,4368_7778195_5120002,4368_20 -4358_80689,228,4368_6390,Jobstown,12341,0,4368_7778195_6027111,4368_183 -4358_80689,229,4368_6391,Jobstown,15155,0,4368_7778195_3027008,4368_186 -4358_80689,227,4368_6392,Jobstown,5554,0,4368_7778195_6027101,4368_183 -4358_80689,228,4368_6393,Jobstown,8829,0,4368_7778195_3027001,4368_183 -4358_80689,229,4368_6394,Jobstown,17933,0,4368_7778195_6027106,4368_186 -4358_80689,227,4368_6395,Jobstown,1297,0,4368_7778195_3027036,4368_183 -4358_80689,229,4368_6396,Jobstown,15124,0,4368_7778195_3027014,4368_183 -4358_80689,228,4368_6397,Jobstown,8788,0,4368_7778195_3027022,4368_186 -4358_80689,227,4368_6398,Eden Quay,6562,0,4368_7778195_6027105,4368_185 -4358_80689,227,4368_6399,Eden Quay,5594,0,4368_7778195_6027110,4368_185 -4358_80760,228,4368_64,Shaw street,9448,0,4368_7778195_9001003,4368_1 -4358_80754,229,4368_640,Ashtown Stn,15926,0,4368_7778195_5120003,4368_22 -4358_80689,228,4368_6400,Eden Quay,8930,0,4368_7778195_3027014,4368_187 -4358_80689,229,4368_6401,Eden Quay,17909,0,4368_7778195_6027102,4368_189 -4358_80689,227,4368_6402,Eden Quay,1304,1,4368_7778195_3027001,4368_191 -4358_80689,228,4368_6403,Clare Hall,8820,1,4368_7778195_3027001,4368_190 -4358_80689,227,4368_6404,Clare Hall,1238,1,4368_7778195_3027002,4368_190 -4358_80689,227,4368_6405,Eden Quay,1151,1,4368_7778195_3027003,4368_194 -4358_80689,227,4368_6406,Clare Hall,1280,1,4368_7778195_3027004,4368_190 -4358_80689,228,4368_6407,Clare Hall,8765,1,4368_7778195_3027002,4368_193 -4358_80689,227,4368_6408,Clare Hall,5639,1,4368_7778195_6027104,4368_192 -4358_80689,227,4368_6409,Clare Hall,1191,1,4368_7778195_3027006,4368_190 -4358_80754,227,4368_641,Ashtown Stn,2127,0,4368_7778195_5120011,4368_20 -4358_80689,227,4368_6410,Clare Hall,1287,1,4368_7778195_3027007,4368_190 -4358_80689,228,4368_6411,Clare Hall,8905,1,4368_7778195_3027004,4368_190 -4358_80689,227,4368_6412,Clare Hall,1248,1,4368_7778195_3027008,4368_193 -4358_80689,227,4368_6413,Clare Hall,1261,1,4368_7778195_3027011,4368_190 -4358_80689,227,4368_6414,Clare Hall,1274,1,4368_7778195_3027012,4368_190 -4358_80689,228,4368_6415,Clare Hall,12396,1,4368_7778195_6027101,4368_190 -4358_80689,227,4368_6416,Clare Hall,1176,1,4368_7778195_3027015,4368_193 -4358_80689,227,4368_6417,Clare Hall,1232,1,4368_7778195_3027016,4368_190 -4358_80689,227,4368_6418,Clare Hall,1152,1,4368_7778195_3027003,4368_190 -4358_80689,227,4368_6419,Clare Hall,1255,1,4368_7778195_3027017,4368_190 -4358_80754,228,4368_642,Ashtown Stn,9864,0,4368_7778195_5120003,4368_20 -4358_80689,228,4368_6420,Clare Hall,12260,1,4368_7778195_6027102,4368_193 -4358_80689,227,4368_6421,Clare Hall,5547,1,4368_7778195_6027101,4368_190 -4358_80689,227,4368_6422,Clare Hall,5561,1,4368_7778195_6027102,4368_190 -4358_80689,229,4368_6423,Clare Hall,15074,1,4368_7778195_3027001,4368_190 -4358_80689,227,4368_6424,Clare Hall,5523,1,4368_7778195_6027103,4368_193 -4358_80689,228,4368_6425,Clare Hall,12253,1,4368_7778195_6027103,4368_195 -4358_80689,227,4368_6426,Clare Hall,6555,1,4368_7778195_6027105,4368_190 -4358_80689,228,4368_6427,Clare Hall,8804,1,4368_7778195_3027009,4368_190 -4358_80689,227,4368_6428,Clare Hall,5502,1,4368_7778195_6027106,4368_193 -4358_80689,227,4368_6429,Clare Hall,5536,1,4368_7778195_6027107,4368_190 -4358_80754,229,4368_643,Ashtown Stn,15951,0,4368_7778195_5120004,4368_22 -4358_80689,229,4368_6430,Clare Hall,15110,1,4368_7778195_3027005,4368_193 -4358_80689,227,4368_6431,Clare Hall,1325,1,4368_7778195_3027026,4368_190 -4358_80689,228,4368_6432,Clare Hall,8822,1,4368_7778195_3027001,4368_193 -4358_80689,227,4368_6433,Clare Hall,1332,1,4368_7778195_3027028,4368_190 -4358_80689,227,4368_6434,Clare Hall,5482,1,4368_7778195_6027108,4368_190 -4358_80689,229,4368_6435,Clare Hall,15094,1,4368_7778195_3027007,4368_193 -4358_80689,228,4368_6436,Clare Hall,8767,1,4368_7778195_3027002,4368_195 -4358_80689,228,4368_6437,Clare Hall,8870,1,4368_7778195_3027012,4368_190 -4358_80689,227,4368_6438,Clare Hall,5597,1,4368_7778195_6027109,4368_193 -4358_80689,227,4368_6439,Clare Hall,5587,1,4368_7778195_6027110,4368_190 -4358_80754,227,4368_644,Ashtown Stn,2155,0,4368_7778195_5120003,4368_20 -4358_80689,228,4368_6440,Clare Hall,8918,1,4368_7778195_3027013,4368_193 -4358_80689,229,4368_6441,Clare Hall,15148,1,4368_7778195_3027008,4368_195 -4358_80689,227,4368_6442,Clare Hall,5641,1,4368_7778195_6027104,4368_190 -4358_80689,228,4368_6443,Clare Hall,8923,1,4368_7778195_3027014,4368_193 -4358_80689,228,4368_6444,Clare Hall,8907,1,4368_7778195_3027004,4368_190 -4358_80689,227,4368_6445,Clare Hall,5603,1,4368_7778195_6027111,4368_193 -4358_80689,229,4368_6446,Clare Hall,17896,1,4368_7778195_6027101,4368_195 -4358_80689,227,4368_6447,Clare Hall,5530,1,4368_7778195_6027112,4368_190 -4358_80689,228,4368_6448,Clare Hall,8888,1,4368_7778195_3027015,4368_193 -4358_80689,228,4368_6449,Clare Hall,12398,1,4368_7778195_6027104,4368_190 -4358_80754,229,4368_645,Ashtown Stn,15936,0,4368_7778195_5120005,4368_20 -4358_80689,229,4368_6450,Clare Hall,17902,1,4368_7778195_6027102,4368_193 -4358_80689,227,4368_6451,Clare Hall,5609,1,4368_7778195_6027113,4368_195 -4358_80689,228,4368_6452,Clare Hall,8758,1,4368_7778195_3027018,4368_190 -4358_80689,227,4368_6453,Clare Hall,1240,1,4368_7778195_3027002,4368_193 -4358_80689,227,4368_6454,Clare Hall,1282,1,4368_7778195_3027004,4368_190 -4358_80689,228,4368_6455,Clare Hall,8741,1,4368_7778195_3027019,4368_193 -4358_80689,229,4368_6456,Clare Hall,15162,1,4368_7778195_3027011,4368_195 -4358_80689,228,4368_6457,Clare Hall,12297,1,4368_7778195_6027105,4368_190 -4358_80689,227,4368_6458,Clare Hall,1193,1,4368_7778195_3027006,4368_193 -4358_80689,229,4368_6459,Clare Hall,17884,1,4368_7778195_6027103,4368_190 -4358_80754,228,4368_646,Ashtown Stn,9814,0,4368_7778195_5120002,4368_22 -4358_80689,228,4368_6460,Clare Hall,8878,1,4368_7778195_3027020,4368_193 -4358_80689,227,4368_6461,Clare Hall,1289,1,4368_7778195_3027007,4368_195 -4358_80689,227,4368_6462,Clare Hall,1250,1,4368_7778195_3027008,4368_190 -4358_80689,228,4368_6463,Clare Hall,12262,1,4368_7778195_6027102,4368_193 -4358_80689,227,4368_6464,Clare Hall,1339,1,4368_7778195_3027031,4368_190 -4358_80689,229,4368_6465,Clare Hall,15174,1,4368_7778195_3027012,4368_193 -4358_80689,228,4368_6466,Clare Hall,12272,1,4368_7778195_6027106,4368_195 -4358_80689,227,4368_6467,Clare Hall,1263,1,4368_7778195_3027011,4368_190 -4358_80689,228,4368_6468,Clare Hall,12245,1,4368_7778195_6027107,4368_193 -4358_80689,229,4368_6469,Clare Hall,15076,1,4368_7778195_3027001,4368_190 -4358_80754,227,4368_647,Ashtown Stn,2162,0,4368_7778195_5120012,4368_20 -4358_80689,227,4368_6470,Clare Hall,1276,1,4368_7778195_3027012,4368_190 -4358_80689,228,4368_6471,Clare Hall,12328,1,4368_7778195_6027108,4368_193 -4358_80689,229,4368_6472,Clare Hall,17917,1,4368_7778195_6027104,4368_190 -4358_80689,227,4368_6473,Clare Hall,1178,1,4368_7778195_3027015,4368_193 -4358_80689,228,4368_6474,Clare Hall,12255,1,4368_7778195_6027103,4368_195 -4358_80689,227,4368_6475,Clare Hall,1234,1,4368_7778195_3027016,4368_190 -4358_80689,228,4368_6476,Clare Hall,12277,1,4368_7778195_6027109,4368_193 -4358_80689,229,4368_6477,Clare Hall,15112,1,4368_7778195_3027005,4368_190 -4358_80689,227,4368_6478,Clare Hall,1154,1,4368_7778195_3027003,4368_190 -4358_80689,228,4368_6479,Clare Hall,8806,1,4368_7778195_3027009,4368_193 -4358_80754,228,4368_648,Ashtown Stn,9866,0,4368_7778195_5120003,4368_20 -4358_80689,228,4368_6480,Clare Hall,12292,1,4368_7778195_6027110,4368_190 -4358_80689,227,4368_6481,Clare Hall,1257,1,4368_7778195_3027017,4368_193 -4358_80689,229,4368_6482,Clare Hall,17891,1,4368_7778195_6027105,4368_195 -4358_80689,228,4368_6483,Clare Hall,12336,1,4368_7778195_6027111,4368_190 -4358_80689,227,4368_6484,Clare Hall,5549,1,4368_7778195_6027101,4368_193 -4358_80689,229,4368_6485,Clare Hall,15141,1,4368_7778195_3027013,4368_190 -4358_80689,227,4368_6486,Clare Hall,5563,1,4368_7778195_6027102,4368_190 -4358_80689,228,4368_6487,Clare Hall,12315,1,4368_7778195_6027112,4368_193 -4358_80689,229,4368_6488,Clare Hall,15096,1,4368_7778195_3027007,4368_190 -4358_80689,228,4368_6489,Clare Hall,8914,1,4368_7778195_3027021,4368_193 -4358_80754,229,4368_649,Ashtown Stn,15953,0,4368_7778195_5120004,4368_22 -4358_80689,227,4368_6490,Clare Hall,5525,1,4368_7778195_6027103,4368_195 -4358_80689,228,4368_6491,Clare Hall,8824,1,4368_7778195_3027001,4368_190 -4358_80689,227,4368_6492,Clare Hall,6557,1,4368_7778195_6027105,4368_193 -4358_80689,229,4368_6493,Clare Hall,15150,1,4368_7778195_3027008,4368_190 -4358_80689,228,4368_6494,Clare Hall,8769,1,4368_7778195_3027002,4368_190 -4358_80689,227,4368_6495,Clare Hall,5504,1,4368_7778195_6027106,4368_193 -4358_80689,227,4368_6496,Clare Hall,1327,1,4368_7778195_3027026,4368_190 -4358_80689,228,4368_6497,Clare Hall,8783,1,4368_7778195_3027022,4368_193 -4358_80689,229,4368_6498,Clare Hall,17928,1,4368_7778195_6027106,4368_195 -4358_80689,227,4368_6499,Clare Hall,1334,1,4368_7778195_3027028,4368_190 -4358_80760,227,4368_65,Shaw street,1821,0,4368_7778195_9001001,4368_1 -4358_80754,227,4368_650,Ashtown Stn,2129,0,4368_7778195_5120011,4368_20 -4358_80689,228,4368_6500,Clare Hall,8920,1,4368_7778195_3027013,4368_193 -4358_80689,229,4368_6501,Clare Hall,15119,1,4368_7778195_3027014,4368_190 -4358_80689,228,4368_6502,Clare Hall,8925,1,4368_7778195_3027014,4368_190 -4358_80689,227,4368_6503,Clare Hall,5484,1,4368_7778195_6027108,4368_193 -4358_80689,227,4368_6504,Clare Hall,5599,1,4368_7778195_6027109,4368_190 -4358_80689,228,4368_6505,Clare Hall,8909,1,4368_7778195_3027004,4368_193 -4358_80689,229,4368_6506,Clare Hall,17898,1,4368_7778195_6027101,4368_195 -4358_80689,227,4368_6507,Clare Hall,5589,1,4368_7778195_6027110,4368_190 -4358_80689,228,4368_6508,Clare Hall,8890,1,4368_7778195_3027015,4368_193 -4358_80689,229,4368_6509,Clare Hall,17904,1,4368_7778195_6027102,4368_190 -4358_80754,229,4368_651,Ashtown Stn,15938,0,4368_7778195_5120005,4368_20 -4358_80689,227,4368_6510,Clare Hall,5643,1,4368_7778195_6027104,4368_190 -4358_80689,228,4368_6511,Clare Hall,12400,1,4368_7778195_6027104,4368_193 -4358_80689,228,4368_6512,Clare Hall,12320,1,4368_7778195_6027113,4368_190 -4358_80689,227,4368_6513,Clare Hall,5605,1,4368_7778195_6027111,4368_193 -4358_80689,229,4368_6514,Clare Hall,15164,1,4368_7778195_3027011,4368_195 -4358_80689,227,4368_6515,Clare Hall,5532,1,4368_7778195_6027112,4368_190 -4358_80689,228,4368_6516,Clare Hall,8760,1,4368_7778195_3027018,4368_193 -4358_80689,229,4368_6517,Clare Hall,17922,1,4368_7778195_6027107,4368_190 -4358_80689,228,4368_6518,Clare Hall,8743,1,4368_7778195_3027019,4368_190 -4358_80689,227,4368_6519,Clare Hall,5611,1,4368_7778195_6027113,4368_193 -4358_80754,228,4368_652,Ashtown Stn,9816,0,4368_7778195_5120002,4368_22 -4358_80689,228,4368_6520,Clare Hall,12299,1,4368_7778195_6027105,4368_190 -4358_80689,229,4368_6521,Clare Hall,17886,1,4368_7778195_6027103,4368_193 -4358_80689,227,4368_6522,Clare Hall,1242,1,4368_7778195_3027002,4368_195 -4358_80689,227,4368_6523,Clare Hall,1284,1,4368_7778195_3027004,4368_190 -4358_80689,228,4368_6524,Clare Hall,8880,1,4368_7778195_3027020,4368_193 -4358_80689,229,4368_6525,Clare Hall,15176,1,4368_7778195_3027012,4368_190 -4358_80689,227,4368_6526,Clare Hall,1195,1,4368_7778195_3027006,4368_190 -4358_80689,228,4368_6527,Clare Hall,12264,1,4368_7778195_6027102,4368_193 -4358_80689,228,4368_6528,Clare Hall,12274,1,4368_7778195_6027106,4368_190 -4358_80689,229,4368_6529,Clare Hall,15078,1,4368_7778195_3027001,4368_193 -4358_80754,227,4368_653,Ashtown Stn,2164,0,4368_7778195_5120012,4368_20 -4358_80689,227,4368_6530,Clare Hall,1291,1,4368_7778195_3027007,4368_195 -4358_80689,227,4368_6531,Clare Hall,1252,1,4368_7778195_3027008,4368_190 -4358_80689,228,4368_6532,Clare Hall,12247,1,4368_7778195_6027107,4368_193 -4358_80689,229,4368_6533,Clare Hall,17919,1,4368_7778195_6027104,4368_190 -4358_80689,227,4368_6534,Clare Hall,1341,1,4368_7778195_3027031,4368_190 -4358_80689,228,4368_6535,Clare Hall,12330,1,4368_7778195_6027108,4368_193 -4358_80689,227,4368_6536,Clare Hall,1265,1,4368_7778195_3027011,4368_190 -4358_80689,229,4368_6537,Clare Hall,15114,1,4368_7778195_3027005,4368_193 -4358_80689,228,4368_6538,Clare Hall,12257,1,4368_7778195_6027103,4368_195 -4358_80689,227,4368_6539,Clare Hall,1278,1,4368_7778195_3027012,4368_190 -4358_80754,228,4368_654,Ashtown Stn,9868,0,4368_7778195_5120003,4368_20 -4358_80689,228,4368_6540,Clare Hall,12279,1,4368_7778195_6027109,4368_193 -4358_80689,229,4368_6541,Clare Hall,17911,1,4368_7778195_6027108,4368_190 -4358_80689,228,4368_6542,Clare Hall,8912,1,4368_7778195_3027025,4368_190 -4358_80689,227,4368_6543,Clare Hall,1180,1,4368_7778195_3027015,4368_193 -4358_80689,228,4368_6544,Clare Hall,8808,1,4368_7778195_3027009,4368_190 -4358_80689,229,4368_6545,Clare Hall,17893,1,4368_7778195_6027105,4368_193 -4358_80689,227,4368_6546,Clare Hall,1236,1,4368_7778195_3027016,4368_195 -4358_80689,227,4368_6547,Clare Hall,1156,1,4368_7778195_3027003,4368_190 -4358_80689,228,4368_6548,Clare Hall,12294,1,4368_7778195_6027110,4368_193 -4358_80689,229,4368_6549,Clare Hall,15143,1,4368_7778195_3027013,4368_190 -4358_80754,229,4368_655,Ashtown Stn,15955,0,4368_7778195_5120004,4368_22 -4358_80689,227,4368_6550,Clare Hall,1259,1,4368_7778195_3027017,4368_190 -4358_80689,228,4368_6551,Clare Hall,12338,1,4368_7778195_6027111,4368_193 -4358_80689,229,4368_6552,Clare Hall,15098,1,4368_7778195_3027007,4368_190 -4358_80689,227,4368_6553,Clare Hall,5551,1,4368_7778195_6027101,4368_193 -4358_80689,228,4368_6554,Clare Hall,12317,1,4368_7778195_6027112,4368_195 -4358_80689,227,4368_6555,Clare Hall,1294,1,4368_7778195_3027036,4368_190 -4358_80689,228,4368_6556,Clare Hall,8916,1,4368_7778195_3027021,4368_193 -4358_80689,229,4368_6557,Clare Hall,15152,1,4368_7778195_3027008,4368_190 -4358_80689,227,4368_6558,Clare Hall,5565,1,4368_7778195_6027102,4368_190 -4358_80689,228,4368_6559,Clare Hall,8826,1,4368_7778195_3027001,4368_193 -4358_80754,227,4368_656,Ashtown Stn,2131,0,4368_7778195_5120011,4368_20 -4358_80689,228,4368_6560,Clare Hall,8771,1,4368_7778195_3027002,4368_190 -4358_80689,229,4368_6561,Clare Hall,17930,1,4368_7778195_6027106,4368_193 -4358_80689,227,4368_6562,Clare Hall,5527,1,4368_7778195_6027103,4368_195 -4358_80689,228,4368_6563,Clare Hall,8785,1,4368_7778195_3027022,4368_190 -4358_80689,227,4368_6564,Clare Hall,6559,1,4368_7778195_6027105,4368_193 -4358_80689,229,4368_6565,Clare Hall,15121,1,4368_7778195_3027014,4368_190 -4358_80689,228,4368_6566,Clare Hall,8922,1,4368_7778195_3027013,4368_190 -4358_80689,227,4368_6567,Clare Hall,5506,1,4368_7778195_6027106,4368_193 -4358_80689,227,4368_6568,Clare Hall,1329,1,4368_7778195_3027026,4368_190 -4358_80689,228,4368_6569,Clare Hall,8927,1,4368_7778195_3027014,4368_193 -4358_80754,229,4368_657,Ashtown Stn,15940,0,4368_7778195_5120005,4368_20 -4358_80689,229,4368_6570,Clare Hall,17900,1,4368_7778195_6027101,4368_195 -4358_80689,228,4368_6571,Clare Hall,12324,1,4368_7778195_6027114,4368_190 -4358_80689,227,4368_6572,Clare Hall,1336,1,4368_7778195_3027028,4368_193 -4358_80689,229,4368_6573,Clare Hall,17906,1,4368_7778195_6027102,4368_190 -4358_80689,227,4368_6574,Clare Hall,5486,1,4368_7778195_6027108,4368_190 -4358_80689,228,4368_6575,Clare Hall,8911,1,4368_7778195_3027004,4368_193 -4358_80689,227,4368_6576,Clare Hall,5601,1,4368_7778195_6027109,4368_190 -4358_80689,228,4368_6577,Clare Hall,8892,1,4368_7778195_3027015,4368_193 -4358_80689,229,4368_6578,Clare Hall,15166,1,4368_7778195_3027011,4368_195 -4358_80689,227,4368_6579,Clare Hall,5591,1,4368_7778195_6027110,4368_190 -4358_80754,228,4368_658,Ashtown Stn,9818,0,4368_7778195_5120002,4368_22 -4358_80689,228,4368_6580,Clare Hall,12402,1,4368_7778195_6027104,4368_193 -4358_80689,229,4368_6581,Clare Hall,17924,1,4368_7778195_6027107,4368_190 -4358_80689,227,4368_6582,Clare Hall,5645,1,4368_7778195_6027104,4368_190 -4358_80689,228,4368_6583,Clare Hall,12322,1,4368_7778195_6027113,4368_193 -4358_80689,227,4368_6584,Clare Hall,5607,1,4368_7778195_6027111,4368_190 -4358_80689,229,4368_6585,Clare Hall,17888,1,4368_7778195_6027103,4368_193 -4358_80689,228,4368_6586,Clare Hall,8762,1,4368_7778195_3027018,4368_195 -4358_80689,227,4368_6587,Clare Hall,5534,1,4368_7778195_6027112,4368_190 -4358_80689,228,4368_6588,Clare Hall,8745,1,4368_7778195_3027019,4368_193 -4358_80689,229,4368_6589,Clare Hall,15178,1,4368_7778195_3027012,4368_190 -4358_80754,228,4368_659,Ashtown Stn,9870,0,4368_7778195_5120003,4368_20 -4358_80689,228,4368_6590,Clare Hall,12301,1,4368_7778195_6027105,4368_190 -4358_80689,227,4368_6591,Clare Hall,5613,1,4368_7778195_6027113,4368_193 -4358_80689,229,4368_6592,Clare Hall,15080,1,4368_7778195_3027001,4368_190 -4358_80689,228,4368_6593,Clare Hall,8882,1,4368_7778195_3027020,4368_193 -4358_80689,227,4368_6594,Clare Hall,1244,1,4368_7778195_3027002,4368_195 -4358_80689,227,4368_6595,Clare Hall,1286,1,4368_7778195_3027004,4368_190 -4358_80689,229,4368_6596,Clare Hall,15116,1,4368_7778195_3027005,4368_190 -4358_80689,227,4368_6597,Clare Hall,1197,1,4368_7778195_3027006,4368_193 -4358_80689,228,4368_6598,Clare Hall,12249,1,4368_7778195_6027107,4368_195 -4358_80689,227,4368_6599,Clare Hall,5617,1,4368_7778195_6027114,4368_190 -4358_80760,229,4368_66,Shaw street,15689,0,4368_7778195_9001001,4368_2 -4358_80754,227,4368_660,Ashtown Stn,2166,0,4368_7778195_5120012,4368_22 -4358_80689,229,4368_6600,Clare Hall,17913,1,4368_7778195_6027108,4368_190 -4358_80689,228,4368_6601,Clare Hall,12332,1,4368_7778195_6027108,4368_193 -4358_80689,227,4368_6602,Clare Hall,1267,1,4368_7778195_3027011,4368_190 -4358_80689,229,4368_6603,Clare Hall,15145,1,4368_7778195_3027013,4368_190 -4358_80689,228,4368_6604,Clare Hall,12281,1,4368_7778195_6027109,4368_193 -4358_80689,227,4368_6605,Clare Hall,1182,1,4368_7778195_3027015,4368_190 -4358_80689,228,4368_6606,Clare Hall,8810,1,4368_7778195_3027009,4368_190 -4358_80689,229,4368_6607,Clare Hall,15185,1,4368_7778195_3027017,4368_193 -4358_80689,227,4368_6608,Clare Hall,1158,1,4368_7778195_3027003,4368_190 -4358_80689,228,4368_6609,Clare Hall,12340,1,4368_7778195_6027111,4368_190 -4358_80754,229,4368_661,Ashtown Stn,15957,0,4368_7778195_5120004,4368_23 -4358_80689,229,4368_6610,Clare Hall,15154,1,4368_7778195_3027008,4368_193 -4358_80689,227,4368_6611,Clare Hall,5553,1,4368_7778195_6027101,4368_190 -4358_80689,228,4368_6612,Clare Hall,8828,1,4368_7778195_3027001,4368_190 -4358_80689,229,4368_6613,Clare Hall,17932,1,4368_7778195_6027106,4368_193 -4358_80689,227,4368_6614,Clare Hall,1296,1,4368_7778195_3027036,4368_190 -4358_80689,229,4368_6615,Clare Hall,15123,1,4368_7778195_3027014,4368_190 -4358_80689,228,4368_6616,Clare Hall,8787,1,4368_7778195_3027022,4368_193 -4358_80689,227,4368_6617,Clare Hall,6561,1,4368_7778195_6027105,4368_190 -4358_80689,228,4368_6618,Clare Hall,8929,1,4368_7778195_3027014,4368_190 -4358_80689,229,4368_6619,Clare Hall,17908,1,4368_7778195_6027102,4368_193 -4358_80754,227,4368_662,Parnell St,2180,1,4368_7778195_5120001,4368_24 -4358_80689,227,4368_6620,Clare Hall,5593,1,4368_7778195_6027110,4368_190 -4358_80689,228,4368_6621,Clare Hall,12326,1,4368_7778195_6027114,4368_190 -4358_80689,229,4368_6622,Clare Hall,17926,1,4368_7778195_6027107,4368_193 -4358_80689,227,4368_6623,Clare Hall,5647,1,4368_7778195_6027104,4368_190 -4358_80689,229,4368_6624,Clare Hall,15082,1,4368_7778195_3027001,4368_190 -4358_80689,228,4368_6625,Clare Hall,8764,1,4368_7778195_3027018,4368_193 -4358_80689,227,4368_6626,Clare Hall,5615,1,4368_7778195_6027113,4368_190 -4358_80689,229,4368_6627,Clare Hall,15118,1,4368_7778195_3027005,4368_190 -4358_80689,228,4368_6628,Clare Hall,8884,1,4368_7778195_3027020,4368_193 -4358_80689,227,4368_6629,Eden Quay,1246,1,4368_7778195_3027002,4368_191 -4358_80754,227,4368_663,Parnell St,2167,1,4368_7778195_5120002,4368_24 -4358_80689,229,4368_6630,Eden Quay,17915,1,4368_7778195_6027108,4368_191 -4358_80689,228,4368_6631,Eden Quay,12251,1,4368_7778195_6027107,4368_196 -4358_80689,227,4368_6632,Eden Quay,5619,1,4368_7778195_6027114,4368_191 -4358_80689,229,4368_6633,Eden Quay,15147,1,4368_7778195_3027013,4368_191 -4358_80689,228,4368_6634,Eden Quay,12334,1,4368_7778195_6027108,4368_196 -4358_80689,227,4368_6635,Eden Quay,6669,1,4368_7778195_3027040,4368_197 -4358_80732,228,4368_6636,Blunden Drive,12364,0,4368_7778195_6053001,4368_198 -4358_80732,227,4368_6637,Blunden Drive,1,0,4368_7778195_6826101,4368_198 -4358_80732,227,4368_6638,Blunden Drive,5630,0,4368_7778195_6053001,4368_198 -4358_80732,228,4368_6639,Blunden Drive,12366,0,4368_7778195_6053001,4368_198 -4358_80754,228,4368_664,Parnell St,9774,1,4368_7778195_5120001,4368_24 -4358_80732,227,4368_6640,Blunden Drive,5508,0,4368_7778195_6053002,4368_198 -4358_80732,227,4368_6641,Blunden Drive,5568,0,4368_7778195_6053003,4368_198 -4358_80732,228,4368_6642,Blunden Drive,12283,0,4368_7778195_6053002,4368_198 -4358_80732,229,4368_6643,Blunden Drive,17935,0,4368_7778195_6053001,4368_198 -4358_80732,227,4368_6644,Blunden Drive,5632,0,4368_7778195_6053001,4368_198 -4358_80732,228,4368_6645,Blunden Drive,12368,0,4368_7778195_6053001,4368_198 -4358_80732,227,4368_6646,Blunden Drive,5510,0,4368_7778195_6053002,4368_198 -4358_80732,229,4368_6647,Blunden Drive,17937,0,4368_7778195_6053001,4368_198 -4358_80732,228,4368_6648,Blunden Drive,12285,0,4368_7778195_6053002,4368_199 -4358_80732,227,4368_6649,Blunden Drive,5570,0,4368_7778195_6053003,4368_198 -4358_80754,227,4368_665,Parnell St,2136,1,4368_7778195_5120003,4368_26 -4358_80732,227,4368_6650,Blunden Drive,5634,0,4368_7778195_6053001,4368_198 -4358_80732,228,4368_6651,Blunden Drive,12370,0,4368_7778195_6053001,4368_198 -4358_80732,229,4368_6652,Blunden Drive,17866,0,4368_7778195_6053002,4368_199 -4358_80732,227,4368_6653,Blunden Drive,5512,0,4368_7778195_6053002,4368_198 -4358_80732,228,4368_6654,Blunden Drive,12386,0,4368_7778195_6053003,4368_199 -4358_80732,229,4368_6655,Blunden Drive,17939,0,4368_7778195_6053001,4368_198 -4358_80732,228,4368_6656,Blunden Drive,12287,0,4368_7778195_6053002,4368_198 -4358_80732,227,4368_6657,Blunden Drive,5572,0,4368_7778195_6053003,4368_198 -4358_80732,228,4368_6658,Blunden Drive,12349,0,4368_7778195_6053004,4368_198 -4358_80732,229,4368_6659,Blunden Drive,17868,0,4368_7778195_6053002,4368_199 -4358_80754,227,4368_666,Parnell St,2220,1,4368_7778195_5120004,4368_24 -4358_80732,227,4368_6660,Blunden Drive,5636,0,4368_7778195_6053001,4368_198 -4358_80732,228,4368_6661,Blunden Drive,12372,0,4368_7778195_6053001,4368_198 -4358_80732,227,4368_6662,Blunden Drive,5514,0,4368_7778195_6053002,4368_198 -4358_80732,229,4368_6663,Blunden Drive,17941,0,4368_7778195_6053001,4368_199 -4358_80732,228,4368_6664,Blunden Drive,12388,0,4368_7778195_6053003,4368_198 -4358_80732,227,4368_6665,Blunden Drive,5574,0,4368_7778195_6053003,4368_198 -4358_80732,229,4368_6666,Blunden Drive,17870,0,4368_7778195_6053002,4368_198 -4358_80732,228,4368_6667,Blunden Drive,12289,0,4368_7778195_6053002,4368_199 -4358_80732,227,4368_6668,Blunden Drive,5638,0,4368_7778195_6053001,4368_198 -4358_80732,228,4368_6669,Blunden Drive,12351,0,4368_7778195_6053004,4368_198 -4358_80754,228,4368_667,Parnell St,9795,1,4368_7778195_5120002,4368_24 -4358_80732,229,4368_6670,Blunden Drive,17943,0,4368_7778195_6053001,4368_198 -4358_80732,227,4368_6671,Blunden Drive,5516,0,4368_7778195_6053002,4368_198 -4358_80732,228,4368_6672,Blunden Drive,12374,0,4368_7778195_6053001,4368_199 -4358_80732,228,4368_6673,Blunden Drive,12390,0,4368_7778195_6053003,4368_198 -4358_80732,229,4368_6674,Blunden Drive,17872,0,4368_7778195_6053002,4368_199 -4358_80732,227,4368_6675,Blunden Drive,5576,0,4368_7778195_6053003,4368_198 -4358_80732,228,4368_6676,Blunden Drive,12353,0,4368_7778195_6053004,4368_198 -4358_80732,227,4368_6677,Blunden Drive,5620,0,4368_7778195_6053004,4368_198 -4358_80732,229,4368_6678,Blunden Drive,17945,0,4368_7778195_6053001,4368_198 -4358_80732,228,4368_6679,Blunden Drive,12376,0,4368_7778195_6053001,4368_198 -4358_80754,227,4368_668,Parnell St,2207,1,4368_7778195_5120006,4368_26 -4358_80732,227,4368_6680,Blunden Drive,5518,0,4368_7778195_6053002,4368_198 -4358_80732,228,4368_6681,Blunden Drive,12392,0,4368_7778195_6053003,4368_198 -4358_80732,229,4368_6682,Blunden Drive,17874,0,4368_7778195_6053002,4368_199 -4358_80732,227,4368_6683,Blunden Drive,5578,0,4368_7778195_6053003,4368_198 -4358_80732,228,4368_6684,Blunden Drive,12355,0,4368_7778195_6053004,4368_198 -4358_80732,229,4368_6685,Blunden Drive,17947,0,4368_7778195_6053001,4368_198 -4358_80732,227,4368_6686,Blunden Drive,5622,0,4368_7778195_6053004,4368_198 -4358_80732,228,4368_6687,Blunden Drive,12378,0,4368_7778195_6053001,4368_198 -4358_80732,227,4368_6688,Blunden Drive,5520,0,4368_7778195_6053002,4368_198 -4358_80732,228,4368_6689,Blunden Drive,12394,0,4368_7778195_6053003,4368_199 -4358_80754,227,4368_669,Ballsbridge,2101,1,4368_7778195_5120005,4368_25 -4358_80732,229,4368_6690,Blunden Drive,17876,0,4368_7778195_6053002,4368_200 -4358_80732,228,4368_6691,Blunden Drive,12357,0,4368_7778195_6053004,4368_198 -4358_80732,227,4368_6692,Blunden Drive,5580,0,4368_7778195_6053003,4368_198 -4358_80732,229,4368_6693,Blunden Drive,17949,0,4368_7778195_6053001,4368_198 -4358_80732,228,4368_6694,Blunden Drive,12380,0,4368_7778195_6053001,4368_198 -4358_80732,227,4368_6695,Blunden Drive,5624,0,4368_7778195_6053004,4368_198 -4358_80732,229,4368_6696,Blunden Drive,17878,0,4368_7778195_6053002,4368_199 -4358_80732,228,4368_6697,Blunden Drive,12359,0,4368_7778195_6053004,4368_198 -4358_80732,229,4368_6698,Blunden Drive,17951,0,4368_7778195_6053001,4368_199 -4358_80732,227,4368_6699,Blunden Drive,5582,0,4368_7778195_6053003,4368_198 -4358_80760,228,4368_67,Shaw street,9486,0,4368_7778195_9001004,4368_1 -4358_80754,227,4368_670,Parnell St,2102,1,4368_7778195_5120007,4368_24 -4358_80732,228,4368_6700,Blunden Drive,12382,0,4368_7778195_6053001,4368_198 -4358_80732,229,4368_6701,Blunden Drive,17880,0,4368_7778195_6053002,4368_199 -4358_80732,227,4368_6702,Blunden Drive,5626,0,4368_7778195_6053004,4368_198 -4358_80732,228,4368_6703,Blunden Drive,12361,0,4368_7778195_6053004,4368_198 -4358_80732,229,4368_6704,Blunden Drive,17953,0,4368_7778195_6053001,4368_199 -4358_80732,227,4368_6705,Blunden Drive,5584,0,4368_7778195_6053003,4368_200 -4358_80732,227,4368_6706,Blunden Drive,5628,0,4368_7778195_6053004,4368_198 -4358_80732,228,4368_6707,Blunden Drive,12384,0,4368_7778195_6053001,4368_198 -4358_80732,229,4368_6708,Blunden Drive,17882,0,4368_7778195_6053002,4368_199 -4358_80732,228,4368_6709,Eden Quay,12363,1,4368_7778195_6053001,4368_202 -4358_80754,228,4368_671,Parnell St,9847,1,4368_7778195_5120003,4368_24 -4358_80732,227,4368_6710,Eden Quay,6,1,4368_7778195_6053101,4368_204 -4358_80732,227,4368_6711,Eden Quay,5629,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6712,Eden Quay,5507,1,4368_7778195_6053002,4368_201 -4358_80732,228,4368_6713,Eden Quay,12365,1,4368_7778195_6053001,4368_203 -4358_80732,227,4368_6714,Eden Quay,5567,1,4368_7778195_6053003,4368_201 -4358_80732,228,4368_6715,Eden Quay,12282,1,4368_7778195_6053002,4368_201 -4358_80732,229,4368_6716,Eden Quay,17934,1,4368_7778195_6053001,4368_202 -4358_80732,227,4368_6717,Eden Quay,5631,1,4368_7778195_6053001,4368_201 -4358_80732,228,4368_6718,Eden Quay,12367,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6719,Eden Quay,5509,1,4368_7778195_6053002,4368_201 -4358_80754,227,4368_672,Ballsbridge,2182,1,4368_7778195_5120001,4368_25 -4358_80732,227,4368_6720,Eden Quay,5569,1,4368_7778195_6053003,4368_201 -4358_80732,229,4368_6721,Eden Quay,17936,1,4368_7778195_6053001,4368_201 -4358_80732,228,4368_6722,Eden Quay,12284,1,4368_7778195_6053002,4368_203 -4358_80732,227,4368_6723,Eden Quay,5633,1,4368_7778195_6053001,4368_201 -4358_80732,228,4368_6724,Eden Quay,12369,1,4368_7778195_6053001,4368_201 -4358_80732,229,4368_6725,Eden Quay,17865,1,4368_7778195_6053002,4368_203 -4358_80732,227,4368_6726,Eden Quay,5511,1,4368_7778195_6053002,4368_201 -4358_80732,228,4368_6727,Eden Quay,12385,1,4368_7778195_6053003,4368_201 -4358_80732,229,4368_6728,Eden Quay,17938,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6729,Eden Quay,5571,1,4368_7778195_6053003,4368_201 -4358_80754,227,4368_673,Ballsbridge,2169,1,4368_7778195_5120002,4368_25 -4358_80732,228,4368_6730,Eden Quay,12286,1,4368_7778195_6053002,4368_203 -4358_80732,228,4368_6731,Eden Quay,12371,1,4368_7778195_6053001,4368_201 -4358_80732,229,4368_6732,Eden Quay,17867,1,4368_7778195_6053002,4368_203 -4358_80732,227,4368_6733,Eden Quay,5635,1,4368_7778195_6053001,4368_201 -4358_80732,228,4368_6734,Eden Quay,12387,1,4368_7778195_6053003,4368_201 -4358_80732,227,4368_6735,Eden Quay,5513,1,4368_7778195_6053002,4368_201 -4358_80732,229,4368_6736,Eden Quay,17940,1,4368_7778195_6053001,4368_201 -4358_80732,228,4368_6737,Eden Quay,12288,1,4368_7778195_6053002,4368_201 -4358_80732,227,4368_6738,Eden Quay,5573,1,4368_7778195_6053003,4368_201 -4358_80732,228,4368_6739,Eden Quay,12350,1,4368_7778195_6053004,4368_201 -4358_80754,228,4368_674,Parnell St,9776,1,4368_7778195_5120001,4368_24 -4358_80732,229,4368_6740,Eden Quay,17869,1,4368_7778195_6053002,4368_203 -4358_80732,227,4368_6741,Eden Quay,5637,1,4368_7778195_6053001,4368_201 -4358_80732,228,4368_6742,Eden Quay,12373,1,4368_7778195_6053001,4368_201 -4358_80732,229,4368_6743,Eden Quay,17942,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6744,Eden Quay,5515,1,4368_7778195_6053002,4368_201 -4358_80732,228,4368_6745,Eden Quay,12389,1,4368_7778195_6053003,4368_201 -4358_80732,229,4368_6746,Eden Quay,17871,1,4368_7778195_6053002,4368_201 -4358_80732,227,4368_6747,Eden Quay,5575,1,4368_7778195_6053003,4368_203 -4358_80732,228,4368_6748,Eden Quay,12290,1,4368_7778195_6053002,4368_205 -4358_80732,228,4368_6749,Eden Quay,12352,1,4368_7778195_6053004,4368_201 -4358_80754,227,4368_675,Parnell St,2138,1,4368_7778195_5120003,4368_26 -4358_80732,227,4368_6750,Eden Quay,4,1,4368_7778195_6816204,4368_201 -4358_80732,229,4368_6751,Eden Quay,17944,1,4368_7778195_6053001,4368_201 -4358_80732,228,4368_6752,Eden Quay,12375,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6753,Eden Quay,5517,1,4368_7778195_6053002,4368_201 -4358_80732,228,4368_6754,Eden Quay,12391,1,4368_7778195_6053003,4368_201 -4358_80732,229,4368_6755,Eden Quay,17873,1,4368_7778195_6053002,4368_203 -4358_80732,227,4368_6756,Eden Quay,5577,1,4368_7778195_6053003,4368_201 -4358_80732,228,4368_6757,Eden Quay,12354,1,4368_7778195_6053004,4368_201 -4358_80732,229,4368_6758,Eden Quay,17946,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6759,Eden Quay,5621,1,4368_7778195_6053004,4368_201 -4358_80754,227,4368_676,Parnell St,2222,1,4368_7778195_5120004,4368_24 -4358_80732,228,4368_6760,Eden Quay,12377,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6761,Eden Quay,5519,1,4368_7778195_6053002,4368_201 -4358_80732,228,4368_6762,Eden Quay,12393,1,4368_7778195_6053003,4368_201 -4358_80732,229,4368_6763,Eden Quay,17875,1,4368_7778195_6053002,4368_203 -4358_80732,228,4368_6764,Eden Quay,12356,1,4368_7778195_6053004,4368_201 -4358_80732,227,4368_6765,Eden Quay,5579,1,4368_7778195_6053003,4368_203 -4358_80732,229,4368_6766,Eden Quay,17948,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6767,Eden Quay,5623,1,4368_7778195_6053004,4368_201 -4358_80732,228,4368_6768,Eden Quay,12379,1,4368_7778195_6053001,4368_201 -4358_80732,229,4368_6769,Eden Quay,17877,1,4368_7778195_6053002,4368_201 -4358_80754,228,4368_677,Parnell St,9797,1,4368_7778195_5120002,4368_24 -4358_80732,227,4368_6770,Eden Quay,5521,1,4368_7778195_6053002,4368_201 -4358_80732,228,4368_6771,Eden Quay,12358,1,4368_7778195_6053004,4368_201 -4358_80732,229,4368_6772,Eden Quay,17950,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6773,Eden Quay,5581,1,4368_7778195_6053003,4368_203 -4358_80732,228,4368_6774,Eden Quay,12381,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6775,Eden Quay,5625,1,4368_7778195_6053004,4368_203 -4358_80732,229,4368_6776,Eden Quay,17879,1,4368_7778195_6053002,4368_205 -4358_80732,228,4368_6777,Eden Quay,12360,1,4368_7778195_6053004,4368_201 -4358_80732,229,4368_6778,Eden Quay,17952,1,4368_7778195_6053001,4368_203 -4358_80732,227,4368_6779,Eden Quay,5583,1,4368_7778195_6053003,4368_205 -4358_80754,227,4368_678,Parnell St,2209,1,4368_7778195_5120006,4368_26 -4358_80732,228,4368_6780,Eden Quay,12383,1,4368_7778195_6053001,4368_201 -4358_80732,227,4368_6781,Eden Quay,5627,1,4368_7778195_6053004,4368_203 -4358_80732,229,4368_6782,Eden Quay,17881,1,4368_7778195_6053002,4368_205 -4358_80732,227,4368_6783,Eden Quay,5585,1,4368_7778195_6053003,4368_201 -4358_80732,228,4368_6784,Eden Quay,12362,1,4368_7778195_6053004,4368_201 -4358_80732,229,4368_6785,Eden Quay,17954,1,4368_7778195_6053001,4368_203 -4358_80792,227,4368_6786,Harristown,7699,0,4368_7778195_8727001,4368_207 -4358_80792,227,4368_6787,Harristown,7678,0,4368_7778195_8727002,4368_206 -4358_80792,228,4368_6788,Harristown,14179,0,4368_7778195_8727002,4368_206 -4358_80792,227,4368_6789,Castletimon,7929,0,4368_7778195_8727003,4368_210 -4358_80754,227,4368_679,Parnell St,2104,1,4368_7778195_5120007,4368_24 -4358_80792,228,4368_6790,Harristown,14172,0,4368_7778195_8727001,4368_206 -4358_80792,227,4368_6791,Coolock Lane,7550,0,4368_7778195_8727004,4368_208 -4358_80792,228,4368_6792,Harristown,14123,0,4368_7778195_8727004,4368_206 -4358_80792,227,4368_6793,Coolock Lane,7635,0,4368_7778195_8727005,4368_208 -4358_80792,228,4368_6794,Harristown,14192,0,4368_7778195_8727003,4368_206 -4358_80792,227,4368_6795,Castletimon,7563,0,4368_7778195_8727006,4368_210 -4358_80792,228,4368_6796,Harristown,14203,0,4368_7778195_8727005,4368_206 -4358_80792,227,4368_6797,Coolock Lane,7880,0,4368_7778195_8727007,4368_211 -4358_80792,228,4368_6798,Harristown,14148,0,4368_7778195_8727006,4368_206 -4358_80792,228,4368_6799,Harristown,14181,0,4368_7778195_8727002,4368_206 -4358_80760,227,4368_68,Shaw street,1658,0,4368_7778195_9001003,4368_1 -4358_80754,228,4368_680,Parnell St,9849,1,4368_7778195_5120003,4368_26 -4358_80792,227,4368_6800,Coolock Lane,7885,0,4368_7778195_8727008,4368_211 -4358_80792,227,4368_6801,Harristown,7931,0,4368_7778195_8727003,4368_206 -4358_80792,227,4368_6802,Harristown,7720,0,4368_7778195_8727009,4368_206 -4358_80792,228,4368_6803,Harristown,14174,0,4368_7778195_8727001,4368_209 -4358_80792,227,4368_6804,Harristown,7680,0,4368_7778195_8727002,4368_206 -4358_80792,228,4368_6805,Harristown,14125,0,4368_7778195_8727004,4368_209 -4358_80792,229,4368_6806,Harristown,19324,0,4368_7778195_8727001,4368_206 -4358_80792,227,4368_6807,Harristown,7552,0,4368_7778195_8727004,4368_206 -4358_80792,228,4368_6808,Harristown,14194,0,4368_7778195_8727003,4368_206 -4358_80792,227,4368_6809,Harristown,7637,0,4368_7778195_8727005,4368_206 -4358_80754,228,4368_681,Parnell St,9778,1,4368_7778195_5120001,4368_24 -4358_80792,227,4368_6810,Harristown,7565,0,4368_7778195_8727006,4368_206 -4358_80792,229,4368_6811,Harristown,19287,0,4368_7778195_8727002,4368_207 -4358_80792,228,4368_6812,Harristown,14206,0,4368_7778195_8727007,4368_209 -4358_80792,228,4368_6813,Harristown,14205,0,4368_7778195_8727005,4368_206 -4358_80792,227,4368_6814,Harristown,7882,0,4368_7778195_8727007,4368_206 -4358_80792,228,4368_6815,Harristown,14150,0,4368_7778195_8727006,4368_209 -4358_80792,227,4368_6816,Harristown,7887,0,4368_7778195_8727008,4368_206 -4358_80792,228,4368_6817,Harristown,14183,0,4368_7778195_8727002,4368_206 -4358_80792,229,4368_6818,Harristown,19326,0,4368_7778195_8727001,4368_207 -4358_80792,227,4368_6819,Harristown,7601,0,4368_7778195_8727010,4368_206 -4358_80754,229,4368_682,Parnell St,15909,1,4368_7778195_5120001,4368_26 -4358_80792,228,4368_6820,Harristown,14176,0,4368_7778195_8727001,4368_206 -4358_80792,227,4368_6821,Harristown,7722,0,4368_7778195_8727009,4368_206 -4358_80792,228,4368_6822,Harristown,14127,0,4368_7778195_8727004,4368_206 -4358_80792,227,4368_6823,Harristown,7682,0,4368_7778195_8727002,4368_206 -4358_80792,228,4368_6824,Harristown,14196,0,4368_7778195_8727003,4368_206 -4358_80792,229,4368_6825,Harristown,19289,0,4368_7778195_8727002,4368_209 -4358_80792,227,4368_6826,Harristown,7733,0,4368_7778195_8727011,4368_206 -4358_80792,229,4368_6827,Harristown,19200,0,4368_7778195_8727003,4368_206 -4358_80792,228,4368_6828,Harristown,14208,0,4368_7778195_8727007,4368_206 -4358_80792,227,4368_6829,Harristown,7639,0,4368_7778195_8727005,4368_206 -4358_80754,227,4368_683,Parnell St,2140,1,4368_7778195_5120003,4368_27 -4358_80792,228,4368_6830,Harristown,14152,0,4368_7778195_8727006,4368_206 -4358_80792,229,4368_6831,Harristown,19328,0,4368_7778195_8727001,4368_206 -4358_80792,227,4368_6832,Harristown,7889,0,4368_7778195_8727008,4368_206 -4358_80792,228,4368_6833,Harristown,14185,0,4368_7778195_8727002,4368_206 -4358_80792,227,4368_6834,Harristown,7603,0,4368_7778195_8727010,4368_206 -4358_80792,229,4368_6835,Harristown,19180,0,4368_7778195_8727005,4368_209 -4358_80792,228,4368_6836,Harristown,14178,0,4368_7778195_8727001,4368_206 -4358_80792,227,4368_6837,Harristown,7684,0,4368_7778195_8727002,4368_206 -4358_80792,228,4368_6838,Harristown,14129,0,4368_7778195_8727004,4368_206 -4358_80792,229,4368_6839,Harristown,19291,0,4368_7778195_8727002,4368_209 -4358_80754,228,4368_684,Parnell St,9799,1,4368_7778195_5120002,4368_24 -4358_80792,229,4368_6840,Harristown,19202,0,4368_7778195_8727003,4368_206 -4358_80792,228,4368_6841,Harristown,14198,0,4368_7778195_8727003,4368_206 -4358_80792,227,4368_6842,Harristown,7659,0,4368_7778195_8727013,4368_209 -4358_80792,228,4368_6843,Harristown,14214,0,4368_7778195_8727008,4368_206 -4358_80792,227,4368_6844,Harristown,7625,0,4368_7778195_8727012,4368_206 -4358_80792,229,4368_6845,Harristown,19330,0,4368_7778195_8727001,4368_206 -4358_80792,228,4368_6846,Harristown,14210,0,4368_7778195_8727007,4368_209 -4358_80792,227,4368_6847,Harristown,7735,0,4368_7778195_8727011,4368_206 -4358_80792,228,4368_6848,Harristown,14154,0,4368_7778195_8727006,4368_206 -4358_80792,227,4368_6849,Harristown,7641,0,4368_7778195_8727005,4368_206 -4358_80754,227,4368_685,Parnell St,2211,1,4368_7778195_5120006,4368_26 -4358_80792,229,4368_6850,Harristown,19182,0,4368_7778195_8727005,4368_209 -4358_80792,228,4368_6851,Harristown,14187,0,4368_7778195_8727002,4368_206 -4358_80792,227,4368_6852,Harristown,7891,0,4368_7778195_8727008,4368_206 -4358_80792,229,4368_6853,Harristown,19190,0,4368_7778195_8727006,4368_206 -4358_80792,228,4368_6854,Harristown,14230,0,4368_7778195_8727009,4368_209 -4358_80792,227,4368_6855,Harristown,7686,0,4368_7778195_8727002,4368_206 -4358_80792,228,4368_6856,Harristown,14131,0,4368_7778195_8727004,4368_206 -4358_80792,227,4368_6857,Harristown,7661,0,4368_7778195_8727013,4368_206 -4358_80792,229,4368_6858,Harristown,19204,0,4368_7778195_8727003,4368_209 -4358_80792,228,4368_6859,Harristown,14200,0,4368_7778195_8727003,4368_206 -4358_80754,229,4368_686,Parnell St,15902,1,4368_7778195_5120002,4368_27 -4358_80792,229,4368_6860,Harristown,19336,0,4368_7778195_8727007,4368_206 -4358_80792,227,4368_6861,Harristown,7627,0,4368_7778195_8727012,4368_206 -4358_80792,228,4368_6862,Harristown,14216,0,4368_7778195_8727008,4368_209 -4358_80792,229,4368_6863,Harristown,19225,0,4368_7778195_8727008,4368_206 -4358_80792,227,4368_6864,Harristown,7737,0,4368_7778195_8727011,4368_206 -4358_80792,228,4368_6865,Harristown,14212,0,4368_7778195_8727007,4368_209 -4358_80792,229,4368_6866,Harristown,19277,0,4368_7778195_8727009,4368_206 -4358_80792,228,4368_6867,Harristown,14156,0,4368_7778195_8727006,4368_209 -4358_80792,227,4368_6868,Harristown,7643,0,4368_7778195_8727005,4368_206 -4358_80792,228,4368_6869,Harristown,14189,0,4368_7778195_8727002,4368_206 -4358_80754,227,4368_687,Parnell St,2106,1,4368_7778195_5120007,4368_24 -4358_80792,227,4368_6870,Harristown,7652,0,4368_7778195_8727015,4368_209 -4358_80792,227,4368_6871,Harristown,7893,0,4368_7778195_8727008,4368_206 -4358_80792,228,4368_6872,Harristown,14232,0,4368_7778195_8727009,4368_209 -4358_80792,229,4368_6873,Harristown,19206,0,4368_7778195_8727003,4368_206 -4358_80792,227,4368_6874,Harristown,7730,0,4368_7778195_8727014,4368_206 -4358_80792,228,4368_6875,Harristown,14133,0,4368_7778195_8727004,4368_206 -4358_80792,227,4368_6876,Harristown,7582,0,4368_7778195_8727016,4368_206 -4358_80792,229,4368_6877,Harristown,19338,0,4368_7778195_8727007,4368_209 -4358_80792,228,4368_6878,Harristown,14244,0,4368_7778195_8727010,4368_206 -4358_80792,227,4368_6879,Harristown,7688,0,4368_7778195_8727002,4368_206 -4358_80754,228,4368_688,Parnell St,9851,1,4368_7778195_5120003,4368_26 -4358_80792,229,4368_6880,Harristown,19227,0,4368_7778195_8727008,4368_206 -4358_80792,228,4368_6881,Harristown,14218,0,4368_7778195_8727008,4368_206 -4358_80792,227,4368_6882,Harristown,7663,0,4368_7778195_8727013,4368_209 -4358_80792,229,4368_6883,Harristown,19251,0,4368_7778195_8727010,4368_206 -4358_80792,227,4368_6884,Harristown,7677,0,4368_7778195_8727017,4368_206 -4358_80792,228,4368_6885,Harristown,14158,0,4368_7778195_8727006,4368_209 -4358_80792,227,4368_6886,Harristown,7629,0,4368_7778195_8727012,4368_206 -4358_80792,229,4368_6887,Harristown,19279,0,4368_7778195_8727009,4368_209 -4358_80792,228,4368_6888,Harristown,14246,0,4368_7778195_8727011,4368_206 -4358_80792,227,4368_6889,Harristown,7654,0,4368_7778195_8727015,4368_206 -4358_80754,229,4368_689,Parnell St,15911,1,4368_7778195_5120001,4368_27 -4358_80792,228,4368_6890,Harristown,14234,0,4368_7778195_8727009,4368_206 -4358_80792,229,4368_6891,Harristown,19208,0,4368_7778195_8727003,4368_206 -4358_80792,227,4368_6892,Harristown,7732,0,4368_7778195_8727014,4368_206 -4358_80792,228,4368_6893,Harristown,14135,0,4368_7778195_8727004,4368_206 -4358_80792,227,4368_6894,Harristown,7584,0,4368_7778195_8727016,4368_206 -4358_80792,229,4368_6895,Harristown,19229,0,4368_7778195_8727008,4368_209 -4358_80792,228,4368_6896,Harristown,14160,0,4368_7778195_8727006,4368_206 -4358_80792,229,4368_6897,Harristown,19253,0,4368_7778195_8727010,4368_206 -4358_80792,227,4368_6898,Harristown,7665,0,4368_7778195_8727013,4368_209 -4358_80792,228,4368_6899,Harristown,14248,0,4368_7778195_8727011,4368_206 -4358_80760,229,4368_69,Shaw street,15587,0,4368_7778195_9001004,4368_1 -4358_80754,228,4368_690,Parnell St,9780,1,4368_7778195_5120001,4368_24 -4358_80792,227,4368_6900,Harristown,7631,0,4368_7778195_8727012,4368_206 -4358_80792,229,4368_6901,Harristown,19281,0,4368_7778195_8727009,4368_209 -4358_80792,228,4368_6902,Harristown,14253,0,4368_7778195_8727012,4368_206 -4358_80792,227,4368_6903,Harristown,7656,0,4368_7778195_8727015,4368_206 -4358_80792,229,4368_6904,Harristown,19210,0,4368_7778195_8727003,4368_209 -4358_80792,228,4368_6905,Harristown,14267,0,4368_7778195_8727013,4368_212 -4358_80792,227,4368_6906,Harristown,7586,0,4368_7778195_8727016,4368_206 -4358_80792,228,4368_6907,Harristown,14162,0,4368_7778195_8727006,4368_206 -4358_80792,229,4368_6908,Harristown,19231,0,4368_7778195_8727008,4368_206 -4358_80792,227,4368_6909,Harristown,7667,0,4368_7778195_8727013,4368_206 -4358_80754,227,4368_691,Parnell St,2142,1,4368_7778195_5120003,4368_26 -4358_80792,228,4368_6910,Harristown,14250,0,4368_7778195_8727011,4368_209 -4358_80792,229,4368_6911,Harristown,19255,0,4368_7778195_8727010,4368_206 -4358_80792,228,4368_6912,Harristown,14255,0,4368_7778195_8727012,4368_207 -4358_80792,227,4368_6913,Harristown,7633,0,4368_7778195_8727012,4368_207 -4358_80792,229,4368_6914,Harristown,19283,0,4368_7778195_8727009,4368_206 -4358_80792,228,4368_6915,Harristown,14269,0,4368_7778195_8727013,4368_207 -4358_80792,227,4368_6916,Harristown,7658,0,4368_7778195_8727015,4368_207 -4358_80792,227,4368_6917,Harristown,7588,0,4368_7778195_8727016,4368_207 -4358_80792,229,4368_6918,Harristown,19212,0,4368_7778195_8727003,4368_206 -4358_80792,228,4368_6919,Harristown,14164,0,4368_7778195_8727006,4368_213 -4358_80754,229,4368_692,Parnell St,15904,1,4368_7778195_5120002,4368_27 -4358_80792,227,4368_6920,Eden Quay,7928,1,4368_7778195_8727003,4368_215 -4358_80792,228,4368_6921,Eden Quay,14171,1,4368_7778195_8727001,4368_214 -4358_80792,227,4368_6922,Eden Quay,7549,1,4368_7778195_8727004,4368_215 -4358_80792,227,4368_6923,Eden Quay,7634,1,4368_7778195_8727005,4368_215 -4358_80792,227,4368_6924,Eden Quay,7562,1,4368_7778195_8727006,4368_215 -4358_80792,227,4368_6925,Eden Quay,7879,1,4368_7778195_8727007,4368_215 -4358_80792,228,4368_6926,Eden Quay,14191,1,4368_7778195_8727003,4368_215 -4358_80792,227,4368_6927,Eden Quay,7884,1,4368_7778195_8727008,4368_215 -4358_80792,227,4368_6928,Eden Quay,7719,1,4368_7778195_8727009,4368_215 -4358_80792,228,4368_6929,Eden Quay,14202,1,4368_7778195_8727005,4368_215 -4358_80754,228,4368_693,Parnell St,9801,1,4368_7778195_5120002,4368_24 -4358_80792,227,4368_6930,Eden Quay,7930,1,4368_7778195_8727003,4368_220 -4358_80792,227,4368_6931,Eden Quay,7700,1,4368_7778195_8727001,4368_215 -4358_80792,227,4368_6932,Eden Quay,7679,1,4368_7778195_8727002,4368_215 -4358_80792,228,4368_6933,Eden Quay,14147,1,4368_7778195_8727006,4368_214 -4358_80792,228,4368_6934,Eden Quay,14180,1,4368_7778195_8727002,4368_215 -4358_80792,228,4368_6935,Eden Quay,14173,1,4368_7778195_8727001,4368_215 -4358_80792,227,4368_6936,Eden Quay,7551,1,4368_7778195_8727004,4368_216 -4358_80792,228,4368_6937,Eden Quay,14124,1,4368_7778195_8727004,4368_214 -4358_80792,229,4368_6938,Eden Quay,19323,1,4368_7778195_8727001,4368_215 -4358_80792,227,4368_6939,Eden Quay,7636,1,4368_7778195_8727005,4368_216 -4358_80754,229,4368_694,Parnell St,15913,1,4368_7778195_5120001,4368_26 -4358_80792,227,4368_6940,Eden Quay,7564,1,4368_7778195_8727006,4368_218 -4358_80792,228,4368_6941,Eden Quay,14193,1,4368_7778195_8727003,4368_214 -4358_80792,227,4368_6942,Eden Quay,7881,1,4368_7778195_8727007,4368_216 -4358_80792,229,4368_6943,Eden Quay,19286,1,4368_7778195_8727002,4368_215 -4358_80792,228,4368_6944,Eden Quay,14204,1,4368_7778195_8727005,4368_214 -4358_80792,228,4368_6945,Eden Quay,14149,1,4368_7778195_8727006,4368_214 -4358_80792,228,4368_6946,Eden Quay,14182,1,4368_7778195_8727002,4368_214 -4358_80792,227,4368_6947,Eden Quay,7886,1,4368_7778195_8727008,4368_216 -4358_80792,227,4368_6948,Eden Quay,7600,1,4368_7778195_8727010,4368_214 -4358_80792,228,4368_6949,Eden Quay,14175,1,4368_7778195_8727001,4368_214 -4358_80754,227,4368_695,Parnell St,2084,1,4368_7778195_5120008,4368_27 -4358_80792,227,4368_6950,Eden Quay,7721,1,4368_7778195_8727009,4368_214 -4358_80792,229,4368_6951,Eden Quay,19325,1,4368_7778195_8727001,4368_215 -4358_80792,228,4368_6952,Eden Quay,14126,1,4368_7778195_8727004,4368_214 -4358_80792,227,4368_6953,Eden Quay,7681,1,4368_7778195_8727002,4368_214 -4358_80792,228,4368_6954,Eden Quay,14195,1,4368_7778195_8727003,4368_214 -4358_80792,229,4368_6955,Eden Quay,19288,1,4368_7778195_8727002,4368_215 -4358_80792,228,4368_6956,Eden Quay,14207,1,4368_7778195_8727007,4368_214 -4358_80792,227,4368_6957,Eden Quay,7638,1,4368_7778195_8727005,4368_214 -4358_80792,229,4368_6958,Eden Quay,19199,1,4368_7778195_8727003,4368_214 -4358_80792,228,4368_6959,Eden Quay,14151,1,4368_7778195_8727006,4368_214 -4358_80754,227,4368_696,Parnell St,2108,1,4368_7778195_5120007,4368_24 -4358_80792,227,4368_6960,Eden Quay,7883,1,4368_7778195_8727007,4368_214 -4358_80792,228,4368_6961,Eden Quay,14184,1,4368_7778195_8727002,4368_214 -4358_80792,227,4368_6962,Eden Quay,7888,1,4368_7778195_8727008,4368_214 -4358_80792,229,4368_6963,Eden Quay,19327,1,4368_7778195_8727001,4368_214 -4358_80792,228,4368_6964,Eden Quay,14177,1,4368_7778195_8727001,4368_214 -4358_80792,227,4368_6965,Eden Quay,7602,1,4368_7778195_8727010,4368_214 -4358_80792,229,4368_6966,Eden Quay,19183,1,4368_7778195_8727004,4368_214 -4358_80792,228,4368_6967,Eden Quay,14128,1,4368_7778195_8727004,4368_217 -4358_80792,227,4368_6968,Eden Quay,7683,1,4368_7778195_8727002,4368_214 -4358_80792,228,4368_6969,Eden Quay,14197,1,4368_7778195_8727003,4368_214 -4358_80754,228,4368_697,Parnell St,9853,1,4368_7778195_5120003,4368_26 -4358_80792,229,4368_6970,Eden Quay,19290,1,4368_7778195_8727002,4368_217 -4358_80792,227,4368_6971,Eden Quay,7624,1,4368_7778195_8727012,4368_214 -4358_80792,228,4368_6972,Eden Quay,14213,1,4368_7778195_8727008,4368_214 -4358_80792,229,4368_6973,Eden Quay,19201,1,4368_7778195_8727003,4368_217 -4358_80792,227,4368_6974,Eden Quay,7734,1,4368_7778195_8727011,4368_214 -4358_80792,228,4368_6975,Eden Quay,14209,1,4368_7778195_8727007,4368_217 -4358_80792,227,4368_6976,Eden Quay,7640,1,4368_7778195_8727005,4368_214 -4358_80792,228,4368_6977,Eden Quay,14153,1,4368_7778195_8727006,4368_217 -4358_80792,229,4368_6978,Eden Quay,19329,1,4368_7778195_8727001,4368_214 -4358_80792,228,4368_6979,Eden Quay,14186,1,4368_7778195_8727002,4368_214 -4358_80754,229,4368_698,Parnell St,15906,1,4368_7778195_5120002,4368_27 -4358_80792,227,4368_6980,Eden Quay,7890,1,4368_7778195_8727008,4368_217 -4358_80792,229,4368_6981,Eden Quay,19181,1,4368_7778195_8727005,4368_214 -4358_80792,227,4368_6982,Eden Quay,7604,1,4368_7778195_8727010,4368_214 -4358_80792,228,4368_6983,Eden Quay,14229,1,4368_7778195_8727009,4368_217 -4358_80792,227,4368_6984,Eden Quay,7685,1,4368_7778195_8727002,4368_214 -4358_80792,228,4368_6985,Eden Quay,14130,1,4368_7778195_8727004,4368_217 -4358_80792,229,4368_6986,Eden Quay,19203,1,4368_7778195_8727003,4368_214 -4358_80792,228,4368_6987,Eden Quay,14199,1,4368_7778195_8727003,4368_214 -4358_80792,227,4368_6988,Eden Quay,7660,1,4368_7778195_8727013,4368_214 -4358_80792,228,4368_6989,Eden Quay,14215,1,4368_7778195_8727008,4368_214 -4358_80754,229,4368_699,Parnell St,15917,1,4368_7778195_5120003,4368_24 -4358_80792,229,4368_6990,Eden Quay,19335,1,4368_7778195_8727007,4368_217 -4358_80792,227,4368_6991,Eden Quay,7626,1,4368_7778195_8727012,4368_214 -4358_80792,229,4368_6992,Eden Quay,19331,1,4368_7778195_8727001,4368_214 -4358_80792,228,4368_6993,Eden Quay,14211,1,4368_7778195_8727007,4368_214 -4358_80792,227,4368_6994,Eden Quay,7736,1,4368_7778195_8727011,4368_214 -4358_80792,229,4368_6995,Eden Quay,19224,1,4368_7778195_8727008,4368_214 -4358_80792,228,4368_6996,Eden Quay,14155,1,4368_7778195_8727006,4368_214 -4358_80792,227,4368_6997,Eden Quay,7642,1,4368_7778195_8727005,4368_214 -4358_80792,228,4368_6998,Eden Quay,14188,1,4368_7778195_8727002,4368_214 -4358_80792,229,4368_6999,Eden Quay,19276,1,4368_7778195_8727009,4368_217 -4358_80760,227,4368_7,Shaw street,3135,0,4368_7778195_9001004,4368_1 -4358_80760,227,4368_70,Shaw street,1592,0,4368_7778195_9001005,4368_1 -4358_80754,228,4368_700,Parnell St,9880,1,4368_7778195_5120004,4368_24 -4358_80792,227,4368_7000,Eden Quay,7892,1,4368_7778195_8727008,4368_214 -4358_80792,228,4368_7001,Eden Quay,14231,1,4368_7778195_8727009,4368_214 -4358_80792,227,4368_7002,Eden Quay,7729,1,4368_7778195_8727014,4368_214 -4358_80792,227,4368_7003,Eden Quay,7581,1,4368_7778195_8727016,4368_214 -4358_80792,228,4368_7004,Eden Quay,14132,1,4368_7778195_8727004,4368_217 -4358_80792,229,4368_7005,Eden Quay,19205,1,4368_7778195_8727003,4368_214 -4358_80792,227,4368_7006,Eden Quay,7687,1,4368_7778195_8727002,4368_214 -4358_80792,228,4368_7007,Eden Quay,14201,1,4368_7778195_8727003,4368_214 -4358_80792,229,4368_7008,Eden Quay,19337,1,4368_7778195_8727007,4368_214 -4358_80792,228,4368_7009,Eden Quay,14243,1,4368_7778195_8727010,4368_214 -4358_80754,227,4368_701,Parnell St,2144,1,4368_7778195_5120003,4368_26 -4358_80792,229,4368_7010,Eden Quay,19226,1,4368_7778195_8727008,4368_214 -4358_80792,227,4368_7011,Eden Quay,7662,1,4368_7778195_8727013,4368_217 -4358_80792,227,4368_7012,Eden Quay,7676,1,4368_7778195_8727017,4368_219 -4358_80792,228,4368_7013,Eden Quay,14217,1,4368_7778195_8727008,4368_214 -4358_80792,229,4368_7014,Eden Quay,19250,1,4368_7778195_8727010,4368_214 -4358_80792,227,4368_7015,Eden Quay,7628,1,4368_7778195_8727012,4368_214 -4358_80792,228,4368_7016,Eden Quay,14157,1,4368_7778195_8727006,4368_214 -4358_80792,227,4368_7017,Eden Quay,7738,1,4368_7778195_8727011,4368_214 -4358_80792,229,4368_7018,Eden Quay,19278,1,4368_7778195_8727009,4368_214 -4358_80792,228,4368_7019,Eden Quay,14190,1,4368_7778195_8727002,4368_214 -4358_80754,229,4368_702,Parnell St,15915,1,4368_7778195_5120001,4368_24 -4358_80792,227,4368_7020,Eden Quay,7653,1,4368_7778195_8727015,4368_214 -4358_80792,228,4368_7021,Eden Quay,14233,1,4368_7778195_8727009,4368_217 -4358_80792,229,4368_7022,Eden Quay,19207,1,4368_7778195_8727003,4368_214 -4358_80792,228,4368_7023,Eden Quay,14134,1,4368_7778195_8727004,4368_214 -4358_80792,227,4368_7024,Eden Quay,7731,1,4368_7778195_8727014,4368_214 -4358_80792,229,4368_7025,Eden Quay,19228,1,4368_7778195_8727008,4368_214 -4358_80792,227,4368_7026,Eden Quay,7583,1,4368_7778195_8727016,4368_214 -4358_80792,228,4368_7027,Eden Quay,14245,1,4368_7778195_8727010,4368_217 -4358_80792,228,4368_7028,Eden Quay,14159,1,4368_7778195_8727006,4368_214 -4358_80792,229,4368_7029,Eden Quay,19252,1,4368_7778195_8727010,4368_214 -4358_80754,228,4368_703,Parnell St,9803,1,4368_7778195_5120002,4368_24 -4358_80792,227,4368_7030,Eden Quay,7664,1,4368_7778195_8727013,4368_217 -4358_80792,228,4368_7031,Eden Quay,14247,1,4368_7778195_8727011,4368_214 -4358_80792,227,4368_7032,Eden Quay,7630,1,4368_7778195_8727012,4368_214 -4358_80792,229,4368_7033,Eden Quay,19280,1,4368_7778195_8727009,4368_217 -4358_80792,228,4368_7034,Eden Quay,14252,1,4368_7778195_8727012,4368_214 -4358_80792,229,4368_7035,Eden Quay,19209,1,4368_7778195_8727003,4368_214 -4358_80792,227,4368_7036,Eden Quay,7655,1,4368_7778195_8727015,4368_214 -4358_80792,228,4368_7037,Eden Quay,14266,1,4368_7778195_8727013,4368_214 -4358_80792,227,4368_7038,Eden Quay,7585,1,4368_7778195_8727016,4368_214 -4358_80792,229,4368_7039,Eden Quay,19230,1,4368_7778195_8727008,4368_217 -4358_80754,227,4368_704,Parnell St,2086,1,4368_7778195_5120008,4368_26 -4358_80792,228,4368_7040,Eden Quay,14161,1,4368_7778195_8727006,4368_214 -4358_80792,229,4368_7041,Eden Quay,19254,1,4368_7778195_8727010,4368_214 -4358_80792,227,4368_7042,Eden Quay,7666,1,4368_7778195_8727013,4368_217 -4358_80792,228,4368_7043,Eden Quay,14249,1,4368_7778195_8727011,4368_221 -4358_80792,227,4368_7044,Eden Quay,7632,1,4368_7778195_8727012,4368_214 -4358_80792,228,4368_7045,Eden Quay,14254,1,4368_7778195_8727012,4368_217 -4358_80792,229,4368_7046,Eden Quay,19282,1,4368_7778195_8727009,4368_214 -4358_80792,227,4368_7047,Eden Quay,7657,1,4368_7778195_8727015,4368_214 -4358_80792,228,4368_7048,Eden Quay,14268,1,4368_7778195_8727013,4368_215 -4358_80792,229,4368_7049,Eden Quay,19211,1,4368_7778195_8727003,4368_214 -4358_80754,229,4368_705,Parnell St,15942,1,4368_7778195_5120004,4368_24 -4358_80792,227,4368_7050,Eden Quay,7587,1,4368_7778195_8727016,4368_215 -4358_80792,228,4368_7051,Eden Quay,14163,1,4368_7778195_8727006,4368_222 -4358_80792,229,4368_7052,Eden Quay,19232,1,4368_7778195_8727008,4368_214 -4358_80792,227,4368_7053,Eden Quay,7668,1,4368_7778195_8727013,4368_215 -4358_80792,228,4368_7054,Eden Quay,14251,1,4368_7778195_8727011,4368_222 -4358_80792,229,4368_7055,Eden Quay,19256,1,4368_7778195_8727010,4368_214 -4358_80690,227,4368_7056,Clare Hall,5,0,4368_7778195_6816204,4368_223 -4358_80690,227,4368_7057,UCD,3,1,4368_7778195_6816104,4368_224 -4358_80690,227,4368_7058,UCD,2,1,4368_7778195_6826101,4368_224 -4358_80692,227,4368_7059,UCD,7844,0,4368_7778195_8818130,4368_225 -4358_80754,227,4368_706,Parnell St,2110,1,4368_7778195_5120007,4368_24 -4358_80692,227,4368_7060,Malahide,7845,1,4368_7778195_8818230,4368_226 -4358_80693,227,4368_7061,Balbriggan,7524,0,4368_7778195_8033101,4368_228 -4358_80693,227,4368_7062,Balbriggan,2786,0,4368_7778195_5033001,4368_228 -4358_80693,228,4368_7063,Balbriggan,10513,0,4368_7778195_5033001,4368_228 -4358_80693,227,4368_7064,Skerries,7527,0,4368_7778195_8033103,4368_227 -4358_80693,229,4368_7065,Skerries,16408,0,4368_7778195_5033002,4368_227 -4358_80693,227,4368_7066,Balbriggan,7528,0,4368_7778195_8033104,4368_228 -4358_80693,228,4368_7067,Balbriggan,10517,0,4368_7778195_5033002,4368_228 -4358_80693,227,4368_7068,Balbriggan,2790,0,4368_7778195_5033004,4368_228 -4358_80693,229,4368_7069,Balbriggan,16405,0,4368_7778195_5033001,4368_228 -4358_80754,228,4368_707,Parnell St,9855,1,4368_7778195_5120003,4368_26 -4358_80693,228,4368_7070,Balbriggan,10519,0,4368_7778195_5033003,4368_229 -4358_80693,229,4368_7071,Balbriggan,16410,0,4368_7778195_5033002,4368_228 -4358_80693,227,4368_7072,Balbriggan,7530,0,4368_7778195_8033105,4368_229 -4358_80693,228,4368_7073,Balbriggan,10515,0,4368_7778195_5033001,4368_228 -4358_80693,228,4368_7074,Balbriggan,10522,0,4368_7778195_5033005,4368_228 -4358_80693,229,4368_7075,Balbriggan,16413,0,4368_7778195_5033003,4368_229 -4358_80693,227,4368_7076,Balbriggan,2793,0,4368_7778195_5033006,4368_228 -4358_80693,227,4368_7077,Balbriggan,2796,0,4368_7778195_5033008,4368_228 -4358_80693,228,4368_7078,Balbriggan,10521,0,4368_7778195_5033004,4368_228 -4358_80693,229,4368_7079,Balbriggan,16407,0,4368_7778195_5033001,4368_228 -4358_80754,229,4368_708,Parnell St,15908,1,4368_7778195_5120002,4368_24 -4358_80693,227,4368_7080,Skerries,7532,0,4368_7778195_8033106,4368_227 -4358_80693,227,4368_7081,Skerries,7536,0,4368_7778195_8033108,4368_227 -4358_80693,229,4368_7082,Balbriggan,18673,0,4368_7778195_5033004,4368_228 -4358_80693,227,4368_7083,Balbriggan,7534,0,4368_7778195_8033107,4368_228 -4358_80693,228,4368_7084,Balbriggan,14357,0,4368_7778195_8828201,4368_229 -4358_80693,227,4368_7085,Skerries,2800,0,4368_7778195_5033009,4368_227 -4358_80693,229,4368_7086,Balbriggan,19342,0,4368_7778195_8033102,4368_228 -4358_80693,228,4368_7087,Balbriggan,14350,0,4368_7778195_8033104,4368_228 -4358_80693,227,4368_7088,Skerries,7848,0,4368_7778195_8818232,4368_227 -4358_80693,227,4368_7089,Balbriggan,2803,0,4368_7778195_5033011,4368_228 -4358_80754,228,4368_709,Parnell St,9882,1,4368_7778195_5120004,4368_24 -4358_80693,227,4368_7090,Skerries,7537,0,4368_7778195_8033109,4368_227 -4358_80693,228,4368_7091,Balbriggan,10525,0,4368_7778195_5033007,4368_228 -4358_80693,229,4368_7092,Balbriggan,16415,0,4368_7778195_5033005,4368_228 -4358_80693,227,4368_7093,Skerries,2802,0,4368_7778195_5033010,4368_227 -4358_80693,228,4368_7094,Skerries,14359,0,4368_7778195_8828202,4368_227 -4358_80693,227,4368_7095,Balbriggan,7539,0,4368_7778195_8033110,4368_228 -4358_80693,227,4368_7096,Balbriggan,2798,0,4368_7778195_5033008,4368_228 -4358_80693,229,4368_7097,Balbriggan,16418,0,4368_7778195_5033009,4368_228 -4358_80693,228,4368_7098,Balbriggan,10526,0,4368_7778195_5033009,4368_229 -4358_80693,227,4368_7099,Balbriggan,7540,0,4368_7778195_8033111,4368_228 -4358_80760,228,4368_71,Shaw street,9318,0,4368_7778195_9001002,4368_1 -4358_80754,227,4368_710,Parnell St,2146,1,4368_7778195_5120003,4368_26 -4358_80693,229,4368_7100,Balbriggan,19343,0,4368_7778195_8033103,4368_228 -4358_80693,228,4368_7101,Balbriggan,14354,0,4368_7778195_8033107,4368_229 -4358_80693,227,4368_7102,Skerries,2805,0,4368_7778195_5033012,4368_227 -4358_80693,229,4368_7103,Skerries,16420,0,4368_7778195_5033010,4368_230 -4358_80693,228,4368_7104,Skerries,14353,0,4368_7778195_8033106,4368_227 -4358_80693,229,4368_7105,Skerries,16422,0,4368_7778195_5033011,4368_227 -4358_80693,227,4368_7106,Skerries,2807,0,4368_7778195_5033013,4368_230 -4358_80693,228,4368_7107,Skerries,10528,0,4368_7778195_5033010,4368_231 -4358_80693,227,4368_7108,Abbey St,5970,1,4368_7778195_5033201,4368_233 -4358_80693,228,4368_7109,Abbey St,10512,1,4368_7778195_5033001,4368_233 -4358_80754,229,4368_711,Parnell St,15919,1,4368_7778195_5120003,4368_24 -4358_80693,227,4368_7110,Abbey St,2785,1,4368_7778195_5033001,4368_232 -4358_80693,227,4368_7111,Abbey St,2787,1,4368_7778195_5033002,4368_233 -4358_80693,228,4368_7112,Abbey St,10516,1,4368_7778195_5033002,4368_233 -4358_80693,227,4368_7113,Abbey St,2788,1,4368_7778195_5033003,4368_232 -4358_80693,227,4368_7114,Abbey St,7526,1,4368_7778195_8033102,4368_232 -4358_80693,227,4368_7115,Abbey St,2789,1,4368_7778195_5033004,4368_232 -4358_80693,229,4368_7116,Abbey St,16404,1,4368_7778195_5033001,4368_233 -4358_80693,227,4368_7117,Abbey St,7525,1,4368_7778195_8033101,4368_233 -4358_80693,227,4368_7118,Abbey St,7849,1,4368_7778195_8818132,4368_233 -4358_80693,228,4368_7119,Abbey St,10518,1,4368_7778195_5033003,4368_232 -4358_80754,228,4368_712,Parnell St,9805,1,4368_7778195_5120002,4368_24 -4358_80693,227,4368_7120,Abbey St,7855,1,4368_7778195_8828101,4368_232 -4358_80693,228,4368_7121,Abbey St,10514,1,4368_7778195_5033001,4368_233 -4358_80693,227,4368_7122,Abbey St,2791,1,4368_7778195_5033005,4368_234 -4358_80693,229,4368_7123,Abbey St,16409,1,4368_7778195_5033002,4368_232 -4358_80693,227,4368_7124,Abbey St,2792,1,4368_7778195_5033006,4368_232 -4358_80693,228,4368_7125,Abbey St,14356,1,4368_7778195_8828101,4368_233 -4358_80693,227,4368_7126,Abbey St,7529,1,4368_7778195_8033104,4368_234 -4358_80693,229,4368_7127,Abbey St,16412,1,4368_7778195_5033003,4368_236 -4358_80693,227,4368_7128,Abbey St,2794,1,4368_7778195_5033007,4368_232 -4358_80693,229,4368_7129,Abbey St,19341,1,4368_7778195_8033101,4368_235 -4358_80754,227,4368_713,Parnell St,2088,1,4368_7778195_5120008,4368_26 -4358_80693,228,4368_7130,Abbey St,14358,1,4368_7778195_8828102,4368_237 -4358_80693,229,4368_7131,Abbey St,16406,1,4368_7778195_5033001,4368_233 -4358_80693,227,4368_7132,Abbey St,2795,1,4368_7778195_5033008,4368_234 -4358_80693,228,4368_7133,Abbey St,10520,1,4368_7778195_5033004,4368_236 -4358_80693,227,4368_7134,Abbey St,7531,1,4368_7778195_8033106,4368_232 -4358_80693,227,4368_7135,Abbey St,7533,1,4368_7778195_8033107,4368_233 -4358_80693,228,4368_7136,Abbey St,10523,1,4368_7778195_5033006,4368_233 -4358_80693,229,4368_7137,Abbey St,16411,1,4368_7778195_5033002,4368_234 -4358_80693,227,4368_7138,Abbey St,2799,1,4368_7778195_5033009,4368_232 -4358_80693,227,4368_7139,Abbey St,7864,1,4368_7778195_8828105,4368_233 -4358_80754,229,4368_714,Parnell St,15944,1,4368_7778195_5120004,4368_24 -4358_80693,228,4368_7140,Abbey St,10524,1,4368_7778195_5033007,4368_233 -4358_80693,229,4368_7141,Abbey St,16414,1,4368_7778195_5033005,4368_234 -4358_80693,227,4368_7142,Abbey St,2801,1,4368_7778195_5033010,4368_232 -4358_80693,228,4368_7143,Abbey St,13462,1,4368_7778195_5033008,4368_233 -4358_80693,229,4368_7144,Abbey St,16416,1,4368_7778195_5033006,4368_234 -4358_80693,227,4368_7145,Abbey St,2797,1,4368_7778195_5033008,4368_236 -4358_80693,227,4368_7146,Abbey St,7535,1,4368_7778195_8033107,4368_233 -4358_80693,229,4368_7147,Abbey St,16417,1,4368_7778195_5033008,4368_233 -4358_80693,228,4368_7148,Abbey St,14351,1,4368_7778195_8033104,4368_233 -4358_80693,227,4368_7149,Abbey St,7538,1,4368_7778195_8033109,4368_232 -4358_80754,227,4368_715,Parnell St,2112,1,4368_7778195_5120007,4368_24 -4358_80693,229,4368_7150,Abbey St,16419,1,4368_7778195_5033010,4368_233 -4358_80693,228,4368_7151,Abbey St,14352,1,4368_7778195_8033106,4368_234 -4358_80693,227,4368_7152,Abbey St,2804,1,4368_7778195_5033012,4368_232 -4358_80693,229,4368_7153,Abbey St,16421,1,4368_7778195_5033011,4368_233 -4358_80693,227,4368_7154,Abbey St,2806,1,4368_7778195_5033013,4368_234 -4358_80693,228,4368_7155,Abbey St,10527,1,4368_7778195_5033010,4368_236 -4358_80693,229,4368_7156,Abbey St,19344,1,4368_7778195_8033103,4368_233 -4358_80693,227,4368_7157,Abbey St,7541,1,4368_7778195_8033111,4368_234 -4358_80693,228,4368_7158,Abbey St,14355,1,4368_7778195_8033107,4368_236 -4358_80695,227,4368_7159,Portrane,7826,0,4368_7778195_8818223,4368_238 -4358_80754,228,4368_716,Parnell St,9857,1,4368_7778195_5120003,4368_26 -4358_80695,227,4368_7160,St Stephen's Green,7825,1,4368_7778195_8818123,4368_239 -4358_80696,227,4368_7161,Skerries,7854,0,4368_7778195_8828101,4368_240 -4358_80694,227,4368_7162,Balbriggan,7824,0,4368_7778195_8818222,4368_241 -4358_80694,227,4368_7163,Balbriggan,7813,0,4368_7778195_8818217,4368_241 -4358_80694,227,4368_7164,Balbriggan,6456,0,4368_7778195_7033666,4368_241 -4358_80694,227,4368_7165,Balbriggan,6448,0,4368_7778195_7033661,4368_241 -4358_80694,227,4368_7166,Balbriggan,6452,0,4368_7778195_7033663,4368_241 -4358_80694,227,4368_7167,Merrion Square W,7823,1,4368_7778195_8818122,4368_242 -4358_80694,227,4368_7168,Merrion Square W,7812,1,4368_7778195_8818117,4368_242 -4358_80694,227,4368_7169,Merrion Square W,6455,1,4368_7778195_7033566,4368_242 -4358_80754,229,4368_717,Parnell St,15929,1,4368_7778195_5120005,4368_24 -4358_80694,227,4368_7170,Merrion Square W,6447,1,4368_7778195_7033561,4368_242 -4358_80694,227,4368_7171,Merrion Square W,6451,1,4368_7778195_7033563,4368_242 -4358_80697,227,4368_7172,Blanchardstown SC,4268,0,4368_7778195_9037003,4368_243 -4358_80697,228,4368_7173,Blanchardstown SC,11432,0,4368_7778195_9037001,4368_243 -4358_80697,227,4368_7174,Blanchardstown SC,4283,0,4368_7778195_9037006,4368_243 -4358_80697,227,4368_7175,Blanchardstown SC,4253,0,4368_7778195_9037001,4368_243 -4358_80697,228,4368_7176,Blanchardstown SC,11441,0,4368_7778195_9037003,4368_243 -4358_80697,227,4368_7177,Blanchardstown SC,4266,0,4368_7778195_9037002,4368_243 -4358_80697,228,4368_7178,Blanchardstown SC,11421,0,4368_7778195_9037002,4368_243 -4358_80697,227,4368_7179,Blanchardstown SC,4282,0,4368_7778195_9037005,4368_243 -4358_80754,228,4368_718,Parnell St,9884,1,4368_7778195_5120004,4368_24 -4358_80697,227,4368_7180,Blanchardstown SC,4235,0,4368_7778195_9037007,4368_243 -4358_80697,228,4368_7181,Blanchardstown SC,11467,0,4368_7778195_9037006,4368_243 -4358_80697,227,4368_7182,Blanchardstown SC,4278,0,4368_7778195_9037008,4368_243 -4358_80697,228,4368_7183,Blanchardstown SC,11453,0,4368_7778195_9037004,4368_243 -4358_80697,227,4368_7184,Blanchardstown SC,4270,0,4368_7778195_9037003,4368_243 -4358_80697,227,4368_7185,Blanchardstown SC,4290,0,4368_7778195_9037009,4368_243 -4358_80697,228,4368_7186,Blanchardstown SC,11434,0,4368_7778195_9037001,4368_243 -4358_80697,229,4368_7187,Blanchardstown SC,17247,0,4368_7778195_9037002,4368_244 -4358_80697,227,4368_7188,Blanchardstown SC,4285,0,4368_7778195_9037006,4368_243 -4358_80697,229,4368_7189,Blanchardstown SC,17268,0,4368_7778195_9037004,4368_243 -4358_80754,227,4368_719,Parnell St,2148,1,4368_7778195_5120003,4368_26 -4358_80697,228,4368_7190,Blanchardstown SC,11485,0,4368_7778195_9037005,4368_244 -4358_80697,227,4368_7191,Blanchardstown SC,4307,0,4368_7778195_9037010,4368_243 -4358_80697,227,4368_7192,Blanchardstown SC,4255,0,4368_7778195_9037001,4368_243 -4358_80697,229,4368_7193,Blanchardstown SC,17244,0,4368_7778195_9037006,4368_243 -4358_80697,228,4368_7194,Blanchardstown SC,11443,0,4368_7778195_9037003,4368_244 -4358_80697,227,4368_7195,Blanchardstown SC,4302,0,4368_7778195_9037011,4368_243 -4358_80697,229,4368_7196,Blanchardstown SC,17284,0,4368_7778195_9037001,4368_243 -4358_80697,228,4368_7197,Blanchardstown SC,11423,0,4368_7778195_9037002,4368_244 -4358_80697,227,4368_7198,Blanchardstown SC,4237,0,4368_7778195_9037007,4368_243 -4358_80697,227,4368_7199,Blanchardstown SC,4280,0,4368_7778195_9037008,4368_243 -4358_80760,227,4368_72,Shaw street,1545,0,4368_7778195_9001010,4368_1 -4358_80754,229,4368_720,Parnell St,15921,1,4368_7778195_5120003,4368_24 -4358_80697,229,4368_7200,Blanchardstown SC,17256,0,4368_7778195_9037003,4368_243 -4358_80697,228,4368_7201,Blanchardstown SC,11469,0,4368_7778195_9037006,4368_244 -4358_80697,227,4368_7202,Blanchardstown SC,4272,0,4368_7778195_9037003,4368_243 -4358_80697,229,4368_7203,Blanchardstown SC,17235,0,4368_7778195_9037005,4368_243 -4358_80697,228,4368_7204,Blanchardstown SC,11455,0,4368_7778195_9037004,4368_244 -4358_80697,227,4368_7205,Blanchardstown SC,4292,0,4368_7778195_9037009,4368_243 -4358_80697,227,4368_7206,Blanchardstown SC,4287,0,4368_7778195_9037006,4368_243 -4358_80697,228,4368_7207,Blanchardstown SC,11436,0,4368_7778195_9037001,4368_244 -4358_80697,229,4368_7208,Blanchardstown SC,17249,0,4368_7778195_9037002,4368_243 -4358_80697,228,4368_7209,Blanchardstown SC,11460,0,4368_7778195_9037008,4368_243 -4358_80754,227,4368_721,Parnell St,2187,1,4368_7778195_5120009,4368_24 -4358_80697,227,4368_7210,Blanchardstown SC,4244,0,4368_7778195_9037012,4368_244 -4358_80697,229,4368_7211,Blanchardstown SC,17270,0,4368_7778195_9037004,4368_243 -4358_80697,228,4368_7212,Blanchardstown SC,11487,0,4368_7778195_9037005,4368_243 -4358_80697,227,4368_7213,Blanchardstown SC,4257,0,4368_7778195_9037001,4368_244 -4358_80697,227,4368_7214,Blanchardstown SC,4304,0,4368_7778195_9037011,4368_243 -4358_80697,228,4368_7215,Blanchardstown SC,11496,0,4368_7778195_9037007,4368_244 -4358_80697,229,4368_7216,Blanchardstown SC,17246,0,4368_7778195_9037006,4368_243 -4358_80697,227,4368_7217,Blanchardstown SC,4239,0,4368_7778195_9037007,4368_243 -4358_80697,228,4368_7218,Blanchardstown SC,11445,0,4368_7778195_9037003,4368_244 -4358_80697,229,4368_7219,Blanchardstown SC,17286,0,4368_7778195_9037001,4368_243 -4358_80754,228,4368_722,Parnell St,9807,1,4368_7778195_5120002,4368_26 -4358_80697,227,4368_7220,Blanchardstown SC,4310,0,4368_7778195_9037013,4368_243 -4358_80697,228,4368_7221,Blanchardstown SC,11425,0,4368_7778195_9037002,4368_244 -4358_80697,227,4368_7222,Blanchardstown SC,4274,0,4368_7778195_9037003,4368_243 -4358_80697,228,4368_7223,Blanchardstown SC,11501,0,4368_7778195_9037009,4368_244 -4358_80697,229,4368_7224,Blanchardstown SC,17258,0,4368_7778195_9037003,4368_243 -4358_80697,227,4368_7225,Blanchardstown SC,4294,0,4368_7778195_9037009,4368_243 -4358_80697,228,4368_7226,Blanchardstown SC,11478,0,4368_7778195_9037011,4368_244 -4358_80697,229,4368_7227,Blanchardstown SC,17237,0,4368_7778195_9037005,4368_243 -4358_80697,227,4368_7228,Blanchardstown SC,4318,0,4368_7778195_9037014,4368_243 -4358_80697,228,4368_7229,Blanchardstown SC,11457,0,4368_7778195_9037004,4368_244 -4358_80754,229,4368_723,Parnell St,15946,1,4368_7778195_5120004,4368_24 -4358_80697,228,4368_7230,Blanchardstown SC,11472,0,4368_7778195_9037010,4368_243 -4358_80697,227,4368_7231,Blanchardstown SC,4246,0,4368_7778195_9037012,4368_244 -4358_80697,229,4368_7232,Blanchardstown SC,17251,0,4368_7778195_9037002,4368_243 -4358_80697,228,4368_7233,Blanchardstown SC,11438,0,4368_7778195_9037001,4368_243 -4358_80697,227,4368_7234,Blanchardstown SC,4231,0,4368_7778195_9037015,4368_244 -4358_80697,229,4368_7235,Blanchardstown SC,17272,0,4368_7778195_9037004,4368_243 -4358_80697,228,4368_7236,Blanchardstown SC,11462,0,4368_7778195_9037008,4368_243 -4358_80697,227,4368_7237,Blanchardstown SC,4259,0,4368_7778195_9037001,4368_244 -4358_80697,227,4368_7238,Blanchardstown SC,4241,0,4368_7778195_9037007,4368_243 -4358_80697,228,4368_7239,Blanchardstown SC,11489,0,4368_7778195_9037005,4368_244 -4358_80754,228,4368_724,Parnell St,9859,1,4368_7778195_5120003,4368_24 -4358_80697,229,4368_7240,Blanchardstown SC,17277,0,4368_7778195_9037007,4368_243 -4358_80697,227,4368_7241,Blanchardstown SC,7806,0,4368_7778195_8818214,4368_243 -4358_80697,228,4368_7242,Blanchardstown SC,11498,0,4368_7778195_9037007,4368_244 -4358_80697,229,4368_7243,Blanchardstown SC,17288,0,4368_7778195_9037001,4368_243 -4358_80697,228,4368_7244,Blanchardstown SC,11447,0,4368_7778195_9037003,4368_243 -4358_80697,227,4368_7245,Blanchardstown SC,4312,0,4368_7778195_9037013,4368_244 -4358_80697,227,4368_7246,Blanchardstown SC,7792,0,4368_7778195_8818207,4368_243 -4358_80697,227,4368_7247,Blanchardstown SC,7799,0,4368_7778195_8818210,4368_243 -4358_80697,228,4368_7248,Blanchardstown SC,11427,0,4368_7778195_9037002,4368_244 -4358_80697,227,4368_7249,Blanchardstown SC,6468,0,4368_7778195_7037656,4368_243 -4358_80754,227,4368_725,Parnell St,2191,1,4368_7778195_5120010,4368_26 -4358_80697,229,4368_7250,Blanchardstown SC,17260,0,4368_7778195_9037003,4368_244 -4358_80697,227,4368_7251,Blanchardstown SC,4326,0,4368_7778195_9037016,4368_243 -4358_80697,227,4368_7252,Blanchardstown SC,7936,0,4368_7778195_7037619,4368_243 -4358_80697,227,4368_7253,Blanchardstown SC,4276,0,4368_7778195_9037003,4368_243 -4358_80697,228,4368_7254,Blanchardstown SC,11503,0,4368_7778195_9037009,4368_244 -4358_80697,227,4368_7255,Blanchardstown SC,7787,0,4368_7778195_8818204,4368_243 -4358_80697,229,4368_7256,Blanchardstown SC,17239,0,4368_7778195_9037005,4368_243 -4358_80697,227,4368_7257,Blanchardstown SC,4296,0,4368_7778195_9037009,4368_243 -4358_80697,228,4368_7258,Blanchardstown SC,11480,0,4368_7778195_9037011,4368_244 -4358_80697,227,4368_7259,Blanchardstown SC,4320,0,4368_7778195_9037014,4368_243 -4358_80754,229,4368_726,Parnell St,15931,1,4368_7778195_5120005,4368_24 -4358_80697,228,4368_7260,Blanchardstown SC,11459,0,4368_7778195_9037004,4368_243 -4358_80697,227,4368_7261,Blanchardstown SC,7789,0,4368_7778195_8818205,4368_243 -4358_80697,229,4368_7262,Blanchardstown SC,17253,0,4368_7778195_9037002,4368_244 -4358_80697,228,4368_7263,Blanchardstown SC,11474,0,4368_7778195_9037010,4368_243 -4358_80697,227,4368_7264,Blanchardstown SC,4248,0,4368_7778195_9037012,4368_244 -4358_80697,229,4368_7265,Blanchardstown SC,17274,0,4368_7778195_9037004,4368_243 -4358_80697,228,4368_7266,Blanchardstown SC,11440,0,4368_7778195_9037001,4368_243 -4358_80697,227,4368_7267,Blanchardstown SC,4233,0,4368_7778195_9037015,4368_244 -4358_80697,228,4368_7268,Blanchardstown SC,11464,0,4368_7778195_9037008,4368_243 -4358_80697,227,4368_7269,Blanchardstown SC,4261,0,4368_7778195_9037001,4368_244 -4358_80754,228,4368_727,Parnell St,9886,1,4368_7778195_5120004,4368_24 -4358_80697,229,4368_7270,Blanchardstown SC,17279,0,4368_7778195_9037007,4368_243 -4358_80697,227,4368_7271,Blanchardstown SC,4243,0,4368_7778195_9037007,4368_243 -4358_80697,228,4368_7272,Blanchardstown SC,11491,0,4368_7778195_9037005,4368_244 -4358_80697,229,4368_7273,Blanchardstown SC,17290,0,4368_7778195_9037001,4368_243 -4358_80697,228,4368_7274,Blanchardstown SC,11449,0,4368_7778195_9037003,4368_243 -4358_80697,227,4368_7275,Blanchardstown SC,4314,0,4368_7778195_9037013,4368_244 -4358_80697,229,4368_7276,Blanchardstown SC,17262,0,4368_7778195_9037003,4368_243 -4358_80697,227,4368_7277,Blanchardstown SC,4298,0,4368_7778195_9037009,4368_243 -4358_80697,228,4368_7278,Blanchardstown SC,11429,0,4368_7778195_9037002,4368_244 -4358_80697,229,4368_7279,Blanchardstown SC,17241,0,4368_7778195_9037005,4368_243 -4358_80754,227,4368_728,Parnell St,2150,1,4368_7778195_5120003,4368_26 -4358_80697,227,4368_7280,Blanchardstown SC,4322,0,4368_7778195_9037014,4368_243 -4358_80697,228,4368_7281,Blanchardstown SC,11482,0,4368_7778195_9037011,4368_244 -4358_80697,229,4368_7282,Blanchardstown SC,17265,0,4368_7778195_9037008,4368_243 -4358_80697,228,4368_7283,Blanchardstown SC,11476,0,4368_7778195_9037010,4368_243 -4358_80697,227,4368_7284,Blanchardstown SC,4250,0,4368_7778195_9037012,4368_244 -4358_80697,229,4368_7285,Blanchardstown SC,17281,0,4368_7778195_9037007,4368_243 -4358_80697,228,4368_7286,Blanchardstown SC,11466,0,4368_7778195_9037008,4368_243 -4358_80697,227,4368_7287,Blanchardstown SC,4263,0,4368_7778195_9037001,4368_244 -4358_80697,229,4368_7288,Blanchardstown SC,17292,0,4368_7778195_9037001,4368_243 -4358_80697,228,4368_7289,Blanchardstown SC,11493,0,4368_7778195_9037005,4368_243 -4358_80754,227,4368_729,Parnell St,2157,1,4368_7778195_5120012,4368_24 -4358_80697,227,4368_7290,Blanchardstown SC,4316,0,4368_7778195_9037013,4368_244 -4358_80697,229,4368_7291,Blanchardstown SC,17264,0,4368_7778195_9037003,4368_243 -4358_80697,227,4368_7292,Blanchardstown SC,4300,0,4368_7778195_9037009,4368_243 -4358_80697,228,4368_7293,Blanchardstown SC,11451,0,4368_7778195_9037003,4368_244 -4358_80697,229,4368_7294,Blanchardstown SC,17243,0,4368_7778195_9037005,4368_243 -4358_80697,227,4368_7295,Blanchardstown SC,4324,0,4368_7778195_9037014,4368_243 -4358_80697,228,4368_7296,Blanchardstown SC,11431,0,4368_7778195_9037002,4368_244 -4358_80697,229,4368_7297,Blanchardstown SC,17267,0,4368_7778195_9037008,4368_243 -4358_80697,227,4368_7298,Wilton Terrace,4252,1,4368_7778195_9037001,4368_245 -4358_80697,227,4368_7299,Wilton Terrace,4265,1,4368_7778195_9037002,4368_245 -4358_80760,229,4368_73,Shaw street,15728,0,4368_7778195_9001002,4368_1 -4358_80754,229,4368_730,Parnell St,15923,1,4368_7778195_5120003,4368_26 -4358_80697,227,4368_7300,Wilton Terrace,4328,1,4368_7778195_9037004,4368_245 -4358_80697,227,4368_7301,Wilton Terrace,4281,1,4368_7778195_9037005,4368_245 -4358_80697,228,4368_7302,Wilton Terrace,11420,1,4368_7778195_9037002,4368_245 -4358_80697,227,4368_7303,Wilton Terrace,4234,1,4368_7778195_9037007,4368_245 -4358_80697,227,4368_7304,Wilton Terrace,4277,1,4368_7778195_9037008,4368_245 -4358_80697,227,4368_7305,Wilton Terrace,7934,1,4368_7778195_7037517,4368_245 -4358_80697,228,4368_7306,Wilton Terrace,11452,1,4368_7778195_9037004,4368_247 -4358_80697,227,4368_7307,Wilton Terrace,7809,1,4368_7778195_8818115,4368_245 -4358_80697,227,4368_7308,Wilton Terrace,4269,1,4368_7778195_9037003,4368_245 -4358_80697,227,4368_7309,Wilton Terrace,7857,1,4368_7778195_8828102,4368_245 -4358_80754,227,4368_731,Parnell St,2189,1,4368_7778195_5120009,4368_24 -4358_80697,228,4368_7310,Wilton Terrace,11433,1,4368_7778195_9037001,4368_245 -4358_80697,227,4368_7311,Wilton Terrace,7873,1,4368_7778195_7037512,4368_247 -4358_80697,227,4368_7312,Wilton Terrace,4289,1,4368_7778195_9037009,4368_245 -4358_80697,227,4368_7313,Wilton Terrace,4284,1,4368_7778195_9037006,4368_245 -4358_80697,227,4368_7314,Wilton Terrace,7802,1,4368_7778195_8818111,4368_245 -4358_80697,227,4368_7315,Wilton Terrace,4306,1,4368_7778195_9037010,4368_245 -4358_80697,228,4368_7316,Wilton Terrace,11484,1,4368_7778195_9037005,4368_245 -4358_80697,227,4368_7317,Wilton Terrace,7788,1,4368_7778195_8818105,4368_245 -4358_80697,227,4368_7318,Wilton Terrace,4254,1,4368_7778195_9037001,4368_245 -4358_80697,227,4368_7319,Wilton Terrace,7790,1,4368_7778195_8818106,4368_245 -4358_80754,228,4368_732,Parnell St,9809,1,4368_7778195_5120002,4368_26 -4358_80697,228,4368_7320,Wilton Terrace,11442,1,4368_7778195_9037003,4368_245 -4358_80697,227,4368_7321,Wilton Terrace,4301,1,4368_7778195_9037011,4368_245 -4358_80697,227,4368_7322,Wilton Terrace,4267,1,4368_7778195_9037002,4368_245 -4358_80697,229,4368_7323,Wilton Terrace,17283,1,4368_7778195_9037001,4368_245 -4358_80697,228,4368_7324,Wilton Terrace,11422,1,4368_7778195_9037002,4368_247 -4358_80697,227,4368_7325,Wilton Terrace,4236,1,4368_7778195_9037007,4368_245 -4358_80697,229,4368_7326,Wilton Terrace,17255,1,4368_7778195_9037003,4368_245 -4358_80697,228,4368_7327,Wilton Terrace,11468,1,4368_7778195_9037006,4368_247 -4358_80697,227,4368_7328,Wilton Terrace,4279,1,4368_7778195_9037008,4368_245 -4358_80697,227,4368_7329,Wilton Terrace,4271,1,4368_7778195_9037003,4368_245 -4358_80754,229,4368_733,Parnell St,15948,1,4368_7778195_5120004,4368_24 -4358_80697,229,4368_7330,Wilton Terrace,17234,1,4368_7778195_9037005,4368_245 -4358_80697,228,4368_7331,Wilton Terrace,11454,1,4368_7778195_9037004,4368_247 -4358_80697,227,4368_7332,Wilton Terrace,4291,1,4368_7778195_9037009,4368_245 -4358_80697,228,4368_7333,Wilton Terrace,11435,1,4368_7778195_9037001,4368_245 -4358_80697,229,4368_7334,Wilton Terrace,17248,1,4368_7778195_9037002,4368_247 -4358_80697,227,4368_7335,Wilton Terrace,4286,1,4368_7778195_9037006,4368_245 -4358_80697,227,4368_7336,Wilton Terrace,4308,1,4368_7778195_9037010,4368_245 -4358_80697,229,4368_7337,Wilton Terrace,17269,1,4368_7778195_9037004,4368_245 -4358_80697,228,4368_7338,Wilton Terrace,11486,1,4368_7778195_9037005,4368_247 -4358_80697,227,4368_7339,Wilton Terrace,4256,1,4368_7778195_9037001,4368_245 -4358_80754,228,4368_734,Parnell St,9861,1,4368_7778195_5120003,4368_24 -4358_80697,228,4368_7340,Wilton Terrace,11495,1,4368_7778195_9037007,4368_245 -4358_80697,229,4368_7341,Wilton Terrace,17245,1,4368_7778195_9037006,4368_245 -4358_80697,227,4368_7342,Wilton Terrace,4303,1,4368_7778195_9037011,4368_245 -4358_80697,228,4368_7343,Wilton Terrace,11444,1,4368_7778195_9037003,4368_245 -4358_80697,227,4368_7344,Wilton Terrace,4238,1,4368_7778195_9037007,4368_245 -4358_80697,229,4368_7345,Wilton Terrace,17285,1,4368_7778195_9037001,4368_245 -4358_80697,228,4368_7346,Wilton Terrace,11424,1,4368_7778195_9037002,4368_245 -4358_80697,227,4368_7347,Wilton Terrace,4309,1,4368_7778195_9037013,4368_245 -4358_80697,228,4368_7348,Wilton Terrace,11500,1,4368_7778195_9037009,4368_245 -4358_80697,229,4368_7349,Wilton Terrace,17257,1,4368_7778195_9037003,4368_245 -4358_80754,227,4368_735,Parnell St,2124,1,4368_7778195_5120011,4368_26 -4358_80697,227,4368_7350,Wilton Terrace,4273,1,4368_7778195_9037003,4368_245 -4358_80697,228,4368_7351,Wilton Terrace,11470,1,4368_7778195_9037006,4368_245 -4358_80697,227,4368_7352,Wilton Terrace,4293,1,4368_7778195_9037009,4368_245 -4358_80697,229,4368_7353,Wilton Terrace,17236,1,4368_7778195_9037005,4368_247 -4358_80697,228,4368_7354,Wilton Terrace,11456,1,4368_7778195_9037004,4368_245 -4358_80697,228,4368_7355,Wilton Terrace,11471,1,4368_7778195_9037010,4368_245 -4358_80697,227,4368_7356,Wilton Terrace,4288,1,4368_7778195_9037006,4368_247 -4358_80697,229,4368_7357,Wilton Terrace,17250,1,4368_7778195_9037002,4368_245 -4358_80697,227,4368_7358,Wilton Terrace,4245,1,4368_7778195_9037012,4368_245 -4358_80697,228,4368_7359,Wilton Terrace,11437,1,4368_7778195_9037001,4368_247 -4358_80754,229,4368_736,Parnell St,15933,1,4368_7778195_5120005,4368_24 -4358_80697,229,4368_7360,Wilton Terrace,17271,1,4368_7778195_9037004,4368_245 -4358_80697,228,4368_7361,Wilton Terrace,11461,1,4368_7778195_9037008,4368_245 -4358_80697,227,4368_7362,Wilton Terrace,4258,1,4368_7778195_9037001,4368_247 -4358_80697,228,4368_7363,Wilton Terrace,11488,1,4368_7778195_9037005,4368_245 -4358_80697,227,4368_7364,Wilton Terrace,4305,1,4368_7778195_9037011,4368_247 -4358_80697,229,4368_7365,Wilton Terrace,17276,1,4368_7778195_9037007,4368_245 -4358_80697,227,4368_7366,Wilton Terrace,4240,1,4368_7778195_9037007,4368_245 -4358_80697,228,4368_7367,Wilton Terrace,11497,1,4368_7778195_9037007,4368_247 -4358_80697,229,4368_7368,Wilton Terrace,17287,1,4368_7778195_9037001,4368_245 -4358_80697,228,4368_7369,Wilton Terrace,11446,1,4368_7778195_9037003,4368_245 -4358_80754,227,4368_737,Parnell St,2152,1,4368_7778195_5120003,4368_24 -4358_80697,227,4368_7370,Wilton Terrace,4311,1,4368_7778195_9037013,4368_247 -4358_80697,227,4368_7371,Wilton Terrace,4325,1,4368_7778195_9037016,4368_245 -4358_80697,228,4368_7372,Wilton Terrace,11426,1,4368_7778195_9037002,4368_247 -4358_80697,229,4368_7373,Wilton Terrace,17259,1,4368_7778195_9037003,4368_245 -4358_80697,227,4368_7374,Wilton Terrace,4275,1,4368_7778195_9037003,4368_245 -4358_80697,228,4368_7375,Wilton Terrace,11502,1,4368_7778195_9037009,4368_247 -4358_80697,229,4368_7376,Wilton Terrace,17238,1,4368_7778195_9037005,4368_245 -4358_80697,227,4368_7377,Wilton Terrace,4295,1,4368_7778195_9037009,4368_245 -4358_80697,228,4368_7378,Wilton Terrace,11479,1,4368_7778195_9037011,4368_247 -4358_80697,227,4368_7379,Wilton Terrace,4319,1,4368_7778195_9037014,4368_245 -4358_80754,228,4368_738,Parnell St,9888,1,4368_7778195_5120004,4368_24 -4358_80697,228,4368_7380,Wilton Terrace,11458,1,4368_7778195_9037004,4368_247 -4358_80697,229,4368_7381,Wilton Terrace,17252,1,4368_7778195_9037002,4368_245 -4358_80697,228,4368_7382,Wilton Terrace,11473,1,4368_7778195_9037010,4368_245 -4358_80697,227,4368_7383,Wilton Terrace,4247,1,4368_7778195_9037012,4368_247 -4358_80697,229,4368_7384,Wilton Terrace,17273,1,4368_7778195_9037004,4368_245 -4358_80697,228,4368_7385,Wilton Terrace,11439,1,4368_7778195_9037001,4368_245 -4358_80697,227,4368_7386,Wilton Terrace,4232,1,4368_7778195_9037015,4368_247 -4358_80697,228,4368_7387,Wilton Terrace,11463,1,4368_7778195_9037008,4368_245 -4358_80697,227,4368_7388,Wilton Terrace,4260,1,4368_7778195_9037001,4368_247 -4358_80697,229,4368_7389,Wilton Terrace,17278,1,4368_7778195_9037007,4368_245 -4358_80754,227,4368_739,Parnell St,2159,1,4368_7778195_5120012,4368_24 -4358_80697,227,4368_7390,Wilton Terrace,4242,1,4368_7778195_9037007,4368_245 -4358_80697,228,4368_7391,Wilton Terrace,11490,1,4368_7778195_9037005,4368_247 -4358_80697,229,4368_7392,Wilton Terrace,17289,1,4368_7778195_9037001,4368_245 -4358_80697,227,4368_7393,Wilton Terrace,7791,1,4368_7778195_8818206,4368_245 -4358_80697,228,4368_7394,Wilton Terrace,11499,1,4368_7778195_9037007,4368_247 -4358_80697,228,4368_7395,Wilton Terrace,11448,1,4368_7778195_9037003,4368_245 -4358_80697,227,4368_7396,Wilton Terrace,4313,1,4368_7778195_9037013,4368_247 -4358_80697,229,4368_7397,Wilton Terrace,17261,1,4368_7778195_9037003,4368_245 -4358_80697,227,4368_7398,Wilton Terrace,4327,1,4368_7778195_9037016,4368_245 -4358_80697,228,4368_7399,Wilton Terrace,11428,1,4368_7778195_9037002,4368_247 -4358_80760,227,4368_74,Shaw street,1639,0,4368_7778195_9001011,4368_1 -4358_80754,229,4368_740,Parnell St,15925,1,4368_7778195_5120003,4368_26 -4358_80697,229,4368_7400,Wilton Terrace,17240,1,4368_7778195_9037005,4368_245 -4358_80697,228,4368_7401,Wilton Terrace,11504,1,4368_7778195_9037009,4368_245 -4358_80697,227,4368_7402,Wilton Terrace,4297,1,4368_7778195_9037009,4368_247 -4358_80697,228,4368_7403,Wilton Terrace,11481,1,4368_7778195_9037011,4368_245 -4358_80697,227,4368_7404,Wilton Terrace,4321,1,4368_7778195_9037014,4368_245 -4358_80697,229,4368_7405,Wilton Terrace,17254,1,4368_7778195_9037002,4368_247 -4358_80697,228,4368_7406,Wilton Terrace,11475,1,4368_7778195_9037010,4368_245 -4358_80697,229,4368_7407,Wilton Terrace,17275,1,4368_7778195_9037004,4368_245 -4358_80697,227,4368_7408,Wilton Terrace,4249,1,4368_7778195_9037012,4368_247 -4358_80697,228,4368_7409,Wilton Terrace,11465,1,4368_7778195_9037008,4368_245 -4358_80754,228,4368_741,Parnell St,9811,1,4368_7778195_5120002,4368_24 -4358_80697,229,4368_7410,Wilton Terrace,17280,1,4368_7778195_9037007,4368_245 -4358_80697,227,4368_7411,Wilton Terrace,4262,1,4368_7778195_9037001,4368_247 -4358_80697,228,4368_7412,Wilton Terrace,11492,1,4368_7778195_9037005,4368_245 -4358_80697,229,4368_7413,Wilton Terrace,17291,1,4368_7778195_9037001,4368_245 -4358_80697,227,4368_7414,Wilton Terrace,4315,1,4368_7778195_9037013,4368_247 -4358_80697,228,4368_7415,Wilton Terrace,11450,1,4368_7778195_9037003,4368_245 -4358_80697,229,4368_7416,Wilton Terrace,17263,1,4368_7778195_9037003,4368_245 -4358_80697,227,4368_7417,Wilton Terrace,4299,1,4368_7778195_9037009,4368_247 -4358_80697,228,4368_7418,Wilton Terrace,11430,1,4368_7778195_9037002,4368_245 -4358_80697,227,4368_7419,Wilton Terrace,4323,1,4368_7778195_9037014,4368_245 -4358_80754,229,4368_742,Parnell St,15950,1,4368_7778195_5120004,4368_24 -4358_80697,229,4368_7420,Wilton Terrace,17242,1,4368_7778195_9037005,4368_247 -4358_80697,228,4368_7421,Wilton Terrace,11483,1,4368_7778195_9037011,4368_245 -4358_80697,229,4368_7422,Wilton Terrace,17266,1,4368_7778195_9037008,4368_245 -4358_80697,227,4368_7423,Wilton Terrace,4251,1,4368_7778195_9037012,4368_247 -4358_80697,228,4368_7424,Bachelor's Walk,11477,1,4368_7778195_9037010,4368_246 -4358_80697,229,4368_7425,Bachelor's Walk,17282,1,4368_7778195_9037007,4368_246 -4358_80697,227,4368_7426,Bachelor's Walk,4264,1,4368_7778195_9037001,4368_248 -4358_80697,228,4368_7427,Bachelor's Walk,11494,1,4368_7778195_9037005,4368_246 -4358_80697,229,4368_7428,Bachelor's Walk,17293,1,4368_7778195_9037001,4368_248 -4358_80697,227,4368_7429,Bachelor's Walk,4317,1,4368_7778195_9037013,4368_249 -4358_80754,227,4368_743,Parnell St,2126,1,4368_7778195_5120011,4368_26 -4358_80698,227,4368_7430,Damastown,4101,0,4368_7778195_9038004,4368_251 -4358_80698,227,4368_7431,Damastown,4053,0,4368_7778195_9038008,4368_251 -4358_80698,227,4368_7432,Damastown,4137,0,4368_7778195_9038011,4368_251 -4358_80698,227,4368_7433,Damastown,4225,0,4368_7778195_9038002,4368_251 -4358_80698,227,4368_7434,Damastown,4076,0,4368_7778195_9038003,4368_251 -4358_80698,228,4368_7435,Damastown,11348,0,4368_7778195_9038001,4368_250 -4358_80698,227,4368_7436,Damastown,7786,0,4368_7778195_8818104,4368_251 -4358_80698,227,4368_7437,Damastown,4090,0,4368_7778195_9038010,4368_250 -4358_80698,228,4368_7438,Damastown,11363,0,4368_7778195_9038003,4368_252 -4358_80698,227,4368_7439,Damastown,4088,0,4368_7778195_9038001,4368_250 -4358_80754,228,4368_744,Parnell St,9863,1,4368_7778195_5120003,4368_24 -4358_80698,228,4368_7440,Damastown,11385,0,4368_7778195_9038005,4368_252 -4358_80698,229,4368_7441,Damastown,17154,0,4368_7778195_9038003,4368_253 -4358_80698,227,4368_7442,Damastown,4066,0,4368_7778195_9038013,4368_250 -4358_80698,228,4368_7443,Damastown,11293,0,4368_7778195_9038006,4368_250 -4358_80698,229,4368_7444,Damastown,17211,0,4368_7778195_9038007,4368_252 -4358_80698,227,4368_7445,Damastown,4103,0,4368_7778195_9038004,4368_250 -4358_80698,229,4368_7446,Damastown,17159,0,4368_7778195_9038002,4368_250 -4358_80698,228,4368_7447,Damastown,11360,0,4368_7778195_9038010,4368_252 -4358_80698,227,4368_7448,Damastown,4127,0,4368_7778195_9038009,4368_250 -4358_80698,228,4368_7449,Damastown,11369,0,4368_7778195_9038011,4368_250 -4358_80754,229,4368_745,Parnell St,15935,1,4368_7778195_5120005,4368_24 -4358_80698,229,4368_7450,Damastown,17093,0,4368_7778195_9038004,4368_252 -4358_80698,227,4368_7451,Damastown,4227,0,4368_7778195_9038002,4368_250 -4358_80698,228,4368_7452,Damastown,11345,0,4368_7778195_9038009,4368_250 -4358_80698,229,4368_7453,Damastown,17196,0,4368_7778195_9038009,4368_252 -4358_80698,228,4368_7454,Damastown,11402,0,4368_7778195_9038004,4368_250 -4358_80698,227,4368_7455,Damastown,4116,0,4368_7778195_9038007,4368_252 -4358_80698,229,4368_7456,Damastown,17222,0,4368_7778195_9038013,4368_253 -4358_80698,227,4368_7457,Damastown,4168,0,4368_7778195_9038015,4368_250 -4358_80698,229,4368_7458,Damastown,17228,0,4368_7778195_9038006,4368_252 -4358_80698,228,4368_7459,Damastown,11253,0,4368_7778195_9038017,4368_253 -4358_80754,227,4368_746,Parnell St,2154,1,4368_7778195_5120003,4368_26 -4358_80698,228,4368_7460,Damastown,11302,0,4368_7778195_9038014,4368_250 -4358_80698,227,4368_7461,Damastown,4148,0,4368_7778195_9038016,4368_252 -4358_80698,229,4368_7462,Damastown,17118,0,4368_7778195_9038010,4368_253 -4358_80698,228,4368_7463,Damastown,11320,0,4368_7778195_9038015,4368_250 -4358_80698,229,4368_7464,Damastown,17185,0,4368_7778195_9038011,4368_252 -4358_80698,227,4368_7465,Damastown,4057,0,4368_7778195_9038008,4368_253 -4358_80698,228,4368_7466,Damastown,11329,0,4368_7778195_9038016,4368_250 -4358_80698,229,4368_7467,Damastown,17176,0,4368_7778195_9038008,4368_252 -4358_80698,227,4368_7468,Damastown,4141,0,4368_7778195_9038011,4368_253 -4358_80698,228,4368_7469,Damastown,11294,0,4368_7778195_9038019,4368_250 -4358_80754,228,4368_747,Parnell St,9813,1,4368_7778195_5120002,4368_24 -4358_80698,227,4368_7470,Damastown,4176,0,4368_7778195_9038014,4368_252 -4358_80698,229,4368_7471,Damastown,17198,0,4368_7778195_9038009,4368_253 -4358_80698,228,4368_7472,Damastown,11316,0,4368_7778195_9038013,4368_250 -4358_80698,227,4368_7473,Damastown,4118,0,4368_7778195_9038007,4368_252 -4358_80698,229,4368_7474,Damastown,17224,0,4368_7778195_9038013,4368_253 -4358_80698,228,4368_7475,Damastown,11275,0,4368_7778195_9038020,4368_250 -4358_80698,229,4368_7476,Damastown,17230,0,4368_7778195_9038006,4368_252 -4358_80698,227,4368_7477,Damastown,4154,0,4368_7778195_9038017,4368_253 -4358_80698,229,4368_7478,Damastown,17177,0,4368_7778195_9038017,4368_250 -4358_80698,228,4368_7479,Damastown,11382,0,4368_7778195_9038012,4368_252 -4358_80754,227,4368_748,Parnell St,2161,1,4368_7778195_5120012,4368_24 -4358_80698,227,4368_7480,Damastown,4070,0,4368_7778195_9038013,4368_253 -4358_80698,227,4368_7481,Damastown,4107,0,4368_7778195_9038004,4368_250 -4358_80698,229,4368_7482,Damastown,17163,0,4368_7778195_9038002,4368_252 -4358_80698,228,4368_7483,Damastown,11304,0,4368_7778195_9038014,4368_253 -4358_80698,228,4368_7484,Damastown,11322,0,4368_7778195_9038015,4368_250 -4358_80698,227,4368_7485,Damastown,4131,0,4368_7778195_9038009,4368_252 -4358_80698,229,4368_7486,Damastown,17097,0,4368_7778195_9038004,4368_253 -4358_80698,227,4368_7487,Damastown,7808,0,4368_7778195_8818215,4368_250 -4358_80698,228,4368_7488,Damastown,11331,0,4368_7778195_9038016,4368_250 -4358_80698,229,4368_7489,Damastown,17208,0,4368_7778195_9038014,4368_252 -4358_80754,229,4368_749,Parnell St,15927,1,4368_7778195_5120003,4368_26 -4358_80698,227,4368_7490,Damastown,4178,0,4368_7778195_9038014,4368_250 -4358_80698,227,4368_7491,Damastown,7874,0,4368_7778195_7038612,4368_250 -4358_80698,228,4368_7492,Damastown,11296,0,4368_7778195_9038019,4368_250 -4358_80698,229,4368_7493,Damastown,17151,0,4368_7778195_9038012,4368_252 -4358_80698,227,4368_7494,Damastown,4082,0,4368_7778195_9038003,4368_250 -4358_80698,228,4368_7495,Damastown,11318,0,4368_7778195_9038013,4368_250 -4358_80698,229,4368_7496,Damastown,17232,0,4368_7778195_9038006,4368_252 -4358_80698,227,4368_7497,Damastown,4120,0,4368_7778195_9038007,4368_253 -4358_80698,229,4368_7498,Damastown,17179,0,4368_7778195_9038017,4368_250 -4358_80698,228,4368_7499,Damastown,11277,0,4368_7778195_9038020,4368_252 -4358_80760,228,4368_75,Shaw street,9380,0,4368_7778195_9001001,4368_1 -4358_80754,228,4368_750,Parnell St,9865,1,4368_7778195_5120003,4368_24 -4358_80698,227,4368_7500,Damastown,4152,0,4368_7778195_9038016,4368_253 -4358_80698,227,4368_7501,Damastown,4161,0,4368_7778195_9038018,4368_250 -4358_80698,229,4368_7502,Damastown,17165,0,4368_7778195_9038002,4368_252 -4358_80698,228,4368_7503,Damastown,11339,0,4368_7778195_9038018,4368_253 -4358_80698,228,4368_7504,Damastown,11324,0,4368_7778195_9038015,4368_250 -4358_80698,227,4368_7505,Damastown,4166,0,4368_7778195_9038019,4368_252 -4358_80698,229,4368_7506,Damastown,17099,0,4368_7778195_9038004,4368_253 -4358_80698,227,4368_7507,Damastown,4061,0,4368_7778195_9038008,4368_250 -4358_80698,228,4368_7508,Damastown,11365,0,4368_7778195_9038021,4368_252 -4358_80698,229,4368_7509,Damastown,17202,0,4368_7778195_9038009,4368_253 -4358_80754,229,4368_751,Parnell St,15952,1,4368_7778195_5120004,4368_26 -4358_80698,229,4368_7510,Damastown,17085,0,4368_7778195_9038015,4368_250 -4358_80698,228,4368_7511,Damastown,11375,0,4368_7778195_9038011,4368_252 -4358_80698,227,4368_7512,Damastown,4180,0,4368_7778195_9038014,4368_253 -4358_80698,228,4368_7513,Damastown,11356,0,4368_7778195_9038001,4368_250 -4358_80698,227,4368_7514,Damastown,4122,0,4368_7778195_9038007,4368_252 -4358_80698,229,4368_7515,Damastown,17219,0,4368_7778195_9038007,4368_253 -4358_80698,228,4368_7516,Damastown,11279,0,4368_7778195_9038020,4368_250 -4358_80698,227,4368_7517,Damastown,4158,0,4368_7778195_9038017,4368_252 -4358_80698,229,4368_7518,Damastown,17124,0,4368_7778195_9038010,4368_253 -4358_80698,229,4368_7519,Damastown,17167,0,4368_7778195_9038002,4368_250 -4358_80754,227,4368_752,Parnell St,2128,1,4368_7778195_5120011,4368_24 -4358_80698,227,4368_7520,Damastown,4074,0,4368_7778195_9038013,4368_252 -4358_80698,228,4368_7521,Damastown,11341,0,4368_7778195_9038018,4368_253 -4358_80698,228,4368_7522,Damastown,11326,0,4368_7778195_9038015,4368_250 -4358_80698,229,4368_7523,Damastown,17137,0,4368_7778195_9038016,4368_252 -4358_80698,227,4368_7524,Damastown,4063,0,4368_7778195_9038008,4368_253 -4358_80698,228,4368_7525,Damastown,11335,0,4368_7778195_9038016,4368_250 -4358_80698,229,4368_7526,Damastown,17087,0,4368_7778195_9038015,4368_252 -4358_80698,227,4368_7527,Damastown,4182,0,4368_7778195_9038014,4368_253 -4358_80698,228,4368_7528,Damastown,11358,0,4368_7778195_9038001,4368_250 -4358_80698,227,4368_7529,Damastown,4100,0,4368_7778195_9038010,4368_252 -4358_80754,229,4368_753,Parnell St,15937,1,4368_7778195_5120005,4368_24 -4358_80698,229,4368_7530,Damastown,17221,0,4368_7778195_9038007,4368_253 -4358_80698,227,4368_7531,Burlington Road,4075,1,4368_7778195_9038003,4368_254 -4358_80698,228,4368_7532,Burlington Road,11347,1,4368_7778195_9038001,4368_254 -4358_80698,227,4368_7533,Burlington Road,4113,1,4368_7778195_9038007,4368_254 -4358_80698,228,4368_7534,Burlington Road,11362,1,4368_7778195_9038003,4368_254 -4358_80698,227,4368_7535,Burlington Road,4087,1,4368_7778195_9038001,4368_254 -4358_80698,227,4368_7536,Burlington Road,4332,1,4368_7778195_9038006,4368_254 -4358_80698,228,4368_7537,Burlington Road,11384,1,4368_7778195_9038005,4368_254 -4358_80698,227,4368_7538,Burlington Road,7807,1,4368_7778195_8818114,4368_254 -4358_80698,228,4368_7539,Burlington Road,11409,1,4368_7778195_9038008,4368_254 -4358_80754,228,4368_754,Parnell St,9815,1,4368_7778195_5120002,4368_26 -4358_80698,227,4368_7540,Burlington Road,4126,1,4368_7778195_9038009,4368_254 -4358_80698,227,4368_7541,Burlington Road,4138,1,4368_7778195_9038011,4368_254 -4358_80698,229,4368_7542,Burlington Road,17158,1,4368_7778195_9038002,4368_254 -4358_80698,228,4368_7543,Burlington Road,11390,1,4368_7778195_9038007,4368_257 -4358_80698,227,4368_7544,Burlington Road,4226,1,4368_7778195_9038002,4368_254 -4358_80698,228,4368_7545,Burlington Road,11349,1,4368_7778195_9038001,4368_254 -4358_80698,229,4368_7546,Burlington Road,17111,1,4368_7778195_9038005,4368_257 -4358_80698,227,4368_7547,Burlington Road,4147,1,4368_7778195_9038005,4368_254 -4358_80698,228,4368_7548,Burlington Road,11313,1,4368_7778195_9038013,4368_254 -4358_80698,229,4368_7549,Burlington Road,17195,1,4368_7778195_9038009,4368_257 -4358_80754,227,4368_755,Parnell St,2163,1,4368_7778195_5120012,4368_24 -4358_80698,227,4368_7550,Burlington Road,4115,1,4368_7778195_9038007,4368_254 -4358_80698,228,4368_7551,Burlington Road,11386,1,4368_7778195_9038005,4368_254 -4358_80698,229,4368_7552,Burlington Road,17155,1,4368_7778195_9038003,4368_257 -4358_80698,227,4368_7553,Burlington Road,4167,1,4368_7778195_9038015,4368_254 -4358_80698,228,4368_7554,Burlington Road,11301,1,4368_7778195_9038014,4368_254 -4358_80698,229,4368_7555,Burlington Road,17212,1,4368_7778195_9038007,4368_257 -4358_80698,227,4368_7556,Burlington Road,4104,1,4368_7778195_9038004,4368_254 -4358_80698,228,4368_7557,Burlington Road,11319,1,4368_7778195_9038015,4368_254 -4358_80698,229,4368_7558,Burlington Road,17160,1,4368_7778195_9038002,4368_257 -4358_80698,227,4368_7559,Burlington Road,4128,1,4368_7778195_9038009,4368_254 -4358_80754,228,4368_756,Parnell St,9867,1,4368_7778195_5120003,4368_24 -4358_80698,228,4368_7560,Burlington Road,11328,1,4368_7778195_9038016,4368_254 -4358_80698,229,4368_7561,Burlington Road,17094,1,4368_7778195_9038004,4368_257 -4358_80698,227,4368_7562,Burlington Road,4228,1,4368_7778195_9038002,4368_254 -4358_80698,228,4368_7563,Burlington Road,11351,1,4368_7778195_9038001,4368_254 -4358_80698,229,4368_7564,Burlington Road,17205,1,4368_7778195_9038014,4368_257 -4358_80698,227,4368_7565,Burlington Road,4079,1,4368_7778195_9038003,4368_254 -4358_80698,228,4368_7566,Burlington Road,11315,1,4368_7778195_9038013,4368_254 -4358_80698,229,4368_7567,Burlington Road,17148,1,4368_7778195_9038012,4368_257 -4358_80698,227,4368_7568,Burlington Road,4093,1,4368_7778195_9038010,4368_254 -4358_80698,228,4368_7569,Burlington Road,11388,1,4368_7778195_9038005,4368_254 -4358_80754,229,4368_757,Parnell St,15954,1,4368_7778195_5120004,4368_26 -4358_80698,229,4368_7570,Burlington Road,17157,1,4368_7778195_9038003,4368_257 -4358_80698,227,4368_7571,Burlington Road,4169,1,4368_7778195_9038015,4368_254 -4358_80698,228,4368_7572,Burlington Road,11381,1,4368_7778195_9038012,4368_254 -4358_80698,229,4368_7573,Burlington Road,17214,1,4368_7778195_9038007,4368_257 -4358_80698,227,4368_7574,Burlington Road,4149,1,4368_7778195_9038016,4368_254 -4358_80698,229,4368_7575,Burlington Road,17162,1,4368_7778195_9038002,4368_254 -4358_80698,228,4368_7576,Burlington Road,11303,1,4368_7778195_9038014,4368_257 -4358_80698,227,4368_7577,Burlington Road,4058,1,4368_7778195_9038008,4368_254 -4358_80698,228,4368_7578,Burlington Road,11321,1,4368_7778195_9038015,4368_254 -4358_80698,229,4368_7579,Burlington Road,17096,1,4368_7778195_9038004,4368_257 -4358_80754,227,4368_758,Parnell St,2130,1,4368_7778195_5120011,4368_24 -4358_80698,227,4368_7580,Burlington Road,4142,1,4368_7778195_9038011,4368_254 -4358_80698,228,4368_7581,Burlington Road,11330,1,4368_7778195_9038016,4368_254 -4358_80698,229,4368_7582,Burlington Road,17207,1,4368_7778195_9038014,4368_257 -4358_80698,227,4368_7583,Burlington Road,4177,1,4368_7778195_9038014,4368_254 -4358_80698,228,4368_7584,Burlington Road,11295,1,4368_7778195_9038019,4368_254 -4358_80698,229,4368_7585,Burlington Road,17150,1,4368_7778195_9038012,4368_257 -4358_80698,227,4368_7586,Burlington Road,4119,1,4368_7778195_9038007,4368_254 -4358_80698,228,4368_7587,Burlington Road,11317,1,4368_7778195_9038013,4368_254 -4358_80698,229,4368_7588,Burlington Road,17082,1,4368_7778195_9038015,4368_257 -4358_80698,227,4368_7589,Burlington Road,7783,1,4368_7778195_8818201,4368_254 -4358_80754,229,4368_759,Parnell St,15939,1,4368_7778195_5120005,4368_24 -4358_80698,227,4368_7590,Burlington Road,4155,1,4368_7778195_9038017,4368_258 -4358_80698,228,4368_7591,Burlington Road,11276,1,4368_7778195_9038020,4368_254 -4358_80698,229,4368_7592,Burlington Road,17216,1,4368_7778195_9038007,4368_257 -4358_80698,227,4368_7593,Burlington Road,4171,1,4368_7778195_9038015,4368_258 -4358_80698,228,4368_7594,Burlington Road,11383,1,4368_7778195_9038012,4368_254 -4358_80698,229,4368_7595,Burlington Road,17121,1,4368_7778195_9038010,4368_257 -4358_80698,229,4368_7596,Burlington Road,17188,1,4368_7778195_9038011,4368_254 -4358_80698,228,4368_7597,Burlington Road,11415,1,4368_7778195_9038008,4368_257 -4358_80698,227,4368_7598,Burlington Road,4108,1,4368_7778195_9038004,4368_258 -4358_80698,229,4368_7599,Burlington Road,17134,1,4368_7778195_9038016,4368_254 -4358_80760,227,4368_76,Shaw street,3143,0,4368_7778195_9001004,4368_1 -4358_80754,228,4368_760,Parnell St,9817,1,4368_7778195_5120002,4368_26 -4358_80698,228,4368_7600,Burlington Road,11396,1,4368_7778195_9038007,4368_257 -4358_80698,227,4368_7601,Burlington Road,4132,1,4368_7778195_9038009,4368_258 -4358_80698,228,4368_7602,Burlington Road,11332,1,4368_7778195_9038016,4368_254 -4358_80698,229,4368_7603,Burlington Road,17209,1,4368_7778195_9038014,4368_257 -4358_80698,227,4368_7604,Burlington Road,4179,1,4368_7778195_9038014,4368_254 -4358_80698,229,4368_7605,Burlington Road,17169,1,4368_7778195_9038018,4368_254 -4358_80698,228,4368_7606,Burlington Road,11297,1,4368_7778195_9038019,4368_257 -4358_80698,227,4368_7607,Burlington Road,4184,1,4368_7778195_9038020,4368_254 -4358_80698,228,4368_7608,Burlington Road,11407,1,4368_7778195_9038004,4368_254 -4358_80698,229,4368_7609,Burlington Road,17218,1,4368_7778195_9038007,4368_257 -4358_80754,227,4368_761,Parnell St,2165,1,4368_7778195_5120012,4368_24 -4358_80698,227,4368_7610,Burlington Road,4097,1,4368_7778195_9038010,4368_254 -4358_80698,228,4368_7611,Burlington Road,11258,1,4368_7778195_9038017,4368_254 -4358_80698,229,4368_7612,Burlington Road,17123,1,4368_7778195_9038010,4368_257 -4358_80698,227,4368_7613,Burlington Road,4162,1,4368_7778195_9038018,4368_254 -4358_80698,228,4368_7614,Burlington Road,11417,1,4368_7778195_9038008,4368_254 -4358_80698,229,4368_7615,Burlington Road,17166,1,4368_7778195_9038002,4368_257 -4358_80698,227,4368_7616,Burlington Road,4110,1,4368_7778195_9038004,4368_254 -4358_80698,229,4368_7617,Burlington Road,17136,1,4368_7778195_9038016,4368_254 -4358_80698,228,4368_7618,Burlington Road,11398,1,4368_7778195_9038007,4368_257 -4358_80698,227,4368_7619,Burlington Road,4134,1,4368_7778195_9038009,4368_254 -4358_80754,228,4368_762,Parnell St,9869,1,4368_7778195_5120003,4368_24 -4358_80698,228,4368_7620,Burlington Road,11334,1,4368_7778195_9038016,4368_254 -4358_80698,229,4368_7621,Burlington Road,17086,1,4368_7778195_9038015,4368_257 -4358_80698,227,4368_7622,Burlington Road,4085,1,4368_7778195_9038003,4368_254 -4358_80698,228,4368_7623,Burlington Road,11299,1,4368_7778195_9038019,4368_254 -4358_80698,229,4368_7624,Burlington Road,17220,1,4368_7778195_9038007,4368_257 -4358_80698,227,4368_7625,Burlington Road,4099,1,4368_7778195_9038010,4368_254 -4358_80698,228,4368_7626,Burlington Road,11280,1,4368_7778195_9038020,4368_254 -4358_80698,229,4368_7627,Burlington Road,17125,1,4368_7778195_9038010,4368_257 -4358_80698,227,4368_7628,Burlington Road,4164,1,4368_7778195_9038018,4368_254 -4358_80698,229,4368_7629,Parnell Sq,17168,1,4368_7778195_9038002,4368_255 -4358_80754,229,4368_763,Parnell St,15956,1,4368_7778195_5120004,4368_26 -4358_80698,228,4368_7630,Parnell Sq,11342,1,4368_7778195_9038018,4368_256 -4358_80698,227,4368_7631,Parnell Sq,4064,1,4368_7778195_9038008,4368_255 -4358_80698,228,4368_7632,Parnell Sq,11327,1,4368_7778195_9038015,4368_255 -4358_80698,229,4368_7633,Parnell Sq,17138,1,4368_7778195_9038016,4368_256 -4358_80699,228,4368_7634,Damastown,11389,0,4368_7778195_9038007,4368_259 -4358_80699,228,4368_7635,Damastown,11343,0,4368_7778195_9038009,4368_259 -4358_80699,227,4368_7636,Damastown,4114,0,4368_7778195_9038007,4368_259 -4358_80699,229,4368_7637,Damastown,17193,0,4368_7778195_9038001,4368_259 -4358_80699,228,4368_7638,Damastown,11400,0,4368_7778195_9038004,4368_260 -4358_80699,227,4368_7639,Damastown,6466,0,4368_7778195_7038585,4368_259 -4358_80754,229,4368_764,Parnell St,15941,1,4368_7778195_5120005,4368_24 -4358_80699,227,4368_7640,Damastown,7858,0,4368_7778195_8828102,4368_259 -4358_80699,228,4368_7641,Damastown,11378,0,4368_7778195_9038012,4368_259 -4358_80699,229,4368_7642,Damastown,17226,0,4368_7778195_9038006,4368_260 -4358_80699,227,4368_7643,Damastown,4333,0,4368_7778195_9038006,4368_259 -4358_80699,228,4368_7644,Damastown,11410,0,4368_7778195_9038008,4368_259 -4358_80699,229,4368_7645,Damastown,17116,0,4368_7778195_9038010,4368_260 -4358_80699,227,4368_7646,Damastown,4055,0,4368_7778195_9038008,4368_259 -4358_80699,229,4368_7647,Damastown,17183,0,4368_7778195_9038011,4368_259 -4358_80699,228,4368_7648,Damastown,11391,0,4368_7778195_9038007,4368_260 -4358_80699,227,4368_7649,Damastown,4139,0,4368_7778195_9038011,4368_259 -4358_80754,228,4368_765,Parnell St,9819,1,4368_7778195_5120002,4368_26 -4358_80699,228,4368_7650,Damastown,11350,0,4368_7778195_9038001,4368_259 -4358_80699,229,4368_7651,Damastown,17174,0,4368_7778195_9038008,4368_260 -4358_80699,227,4368_7652,Damastown,4174,0,4368_7778195_9038014,4368_259 -4358_80699,227,4368_7653,Damastown,4078,0,4368_7778195_9038003,4368_259 -4358_80699,228,4368_7654,Damastown,11314,0,4368_7778195_9038013,4368_260 -4358_80699,229,4368_7655,Damastown,17147,0,4368_7778195_9038012,4368_261 -4358_80699,227,4368_7656,Damastown,4092,0,4368_7778195_9038010,4368_259 -4358_80699,228,4368_7657,Damastown,11387,0,4368_7778195_9038005,4368_260 -4358_80699,229,4368_7658,Damastown,17156,0,4368_7778195_9038003,4368_261 -4358_80699,228,4368_7659,Damastown,11380,0,4368_7778195_9038012,4368_259 -4358_80754,227,4368_766,Parnell St,2132,1,4368_7778195_5120011,4368_27 -4358_80699,227,4368_7660,Damastown,4068,0,4368_7778195_9038013,4368_260 -4358_80699,229,4368_7661,Damastown,17213,0,4368_7778195_9038007,4368_261 -4358_80699,228,4368_7662,Damastown,11412,0,4368_7778195_9038008,4368_259 -4358_80699,227,4368_7663,Damastown,4105,0,4368_7778195_9038004,4368_260 -4358_80699,229,4368_7664,Damastown,17161,0,4368_7778195_9038002,4368_261 -4358_80699,227,4368_7665,Damastown,4129,0,4368_7778195_9038009,4368_259 -4358_80699,229,4368_7666,Damastown,17095,0,4368_7778195_9038004,4368_260 -4358_80699,228,4368_7667,Damastown,11393,0,4368_7778195_9038007,4368_261 -4358_80699,227,4368_7668,Damastown,4229,0,4368_7778195_9038002,4368_259 -4358_80699,228,4368_7669,Damastown,11371,0,4368_7778195_9038011,4368_260 -4358_80756,227,4368_767,Drimnagh Road,3613,0,4368_7778195_7122001,4368_28 -4358_80699,229,4368_7670,Damastown,17206,0,4368_7778195_9038014,4368_261 -4358_80699,227,4368_7671,Damastown,4080,0,4368_7778195_9038003,4368_259 -4358_80699,228,4368_7672,Damastown,11352,0,4368_7778195_9038001,4368_260 -4358_80699,229,4368_7673,Damastown,17149,0,4368_7778195_9038012,4368_261 -4358_80699,227,4368_7674,Damastown,4094,0,4368_7778195_9038010,4368_259 -4358_80699,229,4368_7675,Damastown,17081,0,4368_7778195_9038015,4368_260 -4358_80699,228,4368_7676,Damastown,11404,0,4368_7778195_9038004,4368_261 -4358_80699,227,4368_7677,Damastown,4170,0,4368_7778195_9038015,4368_259 -4358_80699,228,4368_7678,Damastown,11255,0,4368_7778195_9038017,4368_260 -4358_80699,229,4368_7679,Damastown,17215,0,4368_7778195_9038007,4368_261 -4358_80756,227,4368_768,Drimnagh Road,3536,0,4368_7778195_7122003,4368_28 -4358_80699,227,4368_7680,Damastown,4150,0,4368_7778195_9038016,4368_259 -4358_80699,228,4368_7681,Damastown,11337,0,4368_7778195_9038018,4368_260 -4358_80699,229,4368_7682,Damastown,17120,0,4368_7778195_9038010,4368_261 -4358_80699,229,4368_7683,Damastown,17187,0,4368_7778195_9038011,4368_259 -4358_80699,227,4368_7684,Damastown,4059,0,4368_7778195_9038008,4368_260 -4358_80699,228,4368_7685,Damastown,11414,0,4368_7778195_9038008,4368_261 -4358_80699,229,4368_7686,Damastown,17133,0,4368_7778195_9038016,4368_259 -4358_80699,227,4368_7687,Damastown,7801,0,4368_7778195_8818211,4368_260 -4358_80699,228,4368_7688,Damastown,11395,0,4368_7778195_9038007,4368_261 -4358_80699,227,4368_7689,Damastown,4143,0,4368_7778195_9038011,4368_259 -4358_80756,227,4368_769,Drimnagh Road,3394,0,4368_7778195_7122005,4368_28 -4358_80699,228,4368_7690,Damastown,11373,0,4368_7778195_9038011,4368_259 -4358_80699,229,4368_7691,Damastown,17200,0,4368_7778195_9038009,4368_260 -4358_80699,227,4368_7692,Damastown,7822,0,4368_7778195_8818221,4368_259 -4358_80699,227,4368_7693,Damastown,6470,0,4368_7778195_7038674,4368_259 -4358_80699,228,4368_7694,Damastown,11354,0,4368_7778195_9038001,4368_259 -4358_80699,229,4368_7695,Damastown,17083,0,4368_7778195_9038015,4368_260 -4358_80699,227,4368_7696,Damastown,4183,0,4368_7778195_9038020,4368_261 -4358_80699,227,4368_7697,Damastown,4096,0,4368_7778195_9038010,4368_259 -4358_80699,228,4368_7698,Damastown,11406,0,4368_7778195_9038004,4368_260 -4358_80699,229,4368_7699,Damastown,17217,0,4368_7778195_9038007,4368_261 -4358_80760,229,4368_77,Shaw street,15513,0,4368_7778195_9001003,4368_2 -4358_80756,228,4368_770,Drimnagh Road,13099,0,4368_7778195_7122001,4368_28 -4358_80699,227,4368_7700,Damastown,4156,0,4368_7778195_9038017,4368_259 -4358_80699,228,4368_7701,Damastown,11257,0,4368_7778195_9038017,4368_260 -4358_80699,229,4368_7702,Damastown,17122,0,4368_7778195_9038010,4368_261 -4358_80699,229,4368_7703,Damastown,17189,0,4368_7778195_9038011,4368_259 -4358_80699,228,4368_7704,Damastown,11416,0,4368_7778195_9038008,4368_260 -4358_80699,227,4368_7705,Damastown,4072,0,4368_7778195_9038013,4368_261 -4358_80699,229,4368_7706,Damastown,17135,0,4368_7778195_9038016,4368_259 -4358_80699,227,4368_7707,Damastown,4109,0,4368_7778195_9038004,4368_260 -4358_80699,228,4368_7708,Damastown,11397,0,4368_7778195_9038007,4368_261 -4358_80699,228,4368_7709,Damastown,11333,0,4368_7778195_9038016,4368_259 -4358_80756,227,4368_771,Drimnagh Road,3385,0,4368_7778195_7122007,4368_28 -4358_80699,227,4368_7710,Damastown,4133,0,4368_7778195_9038009,4368_260 -4358_80699,229,4368_7711,Damastown,17210,0,4368_7778195_9038014,4368_261 -4358_80699,227,4368_7712,Damastown,4084,0,4368_7778195_9038003,4368_259 -4358_80699,229,4368_7713,Damastown,17170,0,4368_7778195_9038018,4368_260 -4358_80699,228,4368_7714,Damastown,11298,0,4368_7778195_9038019,4368_261 -4358_80699,229,4368_7715,Damastown,17181,0,4368_7778195_9038017,4368_259 -4358_80699,227,4368_7716,Damastown,4098,0,4368_7778195_9038010,4368_260 -4358_80699,228,4368_7717,Damastown,11408,0,4368_7778195_9038004,4368_261 -4358_80699,227,4368_7718,Damastown,4163,0,4368_7778195_9038018,4368_259 -4358_80699,229,4368_7719,Damastown,17191,0,4368_7778195_9038011,4368_260 -4358_80756,227,4368_772,Drimnagh Road,3503,0,4368_7778195_7122009,4368_28 -4358_80699,228,4368_7720,Damastown,11259,0,4368_7778195_9038017,4368_261 -4358_80699,228,4368_7721,Damastown,11418,0,4368_7778195_9038008,4368_259 -4358_80699,227,4368_7722,Damastown,4111,0,4368_7778195_9038004,4368_260 -4358_80699,229,4368_7723,Damastown,17101,0,4368_7778195_9038004,4368_261 -4358_80699,227,4368_7724,Damastown,4135,0,4368_7778195_9038009,4368_259 -4358_80699,228,4368_7725,Damastown,11367,0,4368_7778195_9038021,4368_260 -4358_80699,229,4368_7726,Damastown,17204,0,4368_7778195_9038009,4368_261 -4358_80699,229,4368_7727,Damastown,17172,0,4368_7778195_9038018,4368_259 -4358_80699,228,4368_7728,Damastown,11377,0,4368_7778195_9038011,4368_260 -4358_80699,227,4368_7729,Damastown,4124,0,4368_7778195_9038007,4368_261 -4358_80756,228,4368_773,Drimnagh Road,13115,0,4368_7778195_7122003,4368_29 -4358_80699,228,4368_7730,Burlington Road,11361,1,4368_7778195_9038002,4368_262 -4358_80699,228,4368_7731,Burlington Road,11399,1,4368_7778195_9038004,4368_262 -4358_80699,228,4368_7732,Burlington Road,11292,1,4368_7778195_9038006,4368_262 -4358_80699,228,4368_7733,Burlington Road,11359,1,4368_7778195_9038010,4368_262 -4358_80699,228,4368_7734,Burlington Road,11368,1,4368_7778195_9038011,4368_262 -4358_80699,229,4368_7735,Burlington Road,17092,1,4368_7778195_9038004,4368_264 -4358_80699,227,4368_7736,Burlington Road,4173,1,4368_7778195_9038014,4368_262 -4358_80699,228,4368_7737,Burlington Road,11344,1,4368_7778195_9038009,4368_262 -4358_80699,229,4368_7738,Burlington Road,17173,1,4368_7778195_9038008,4368_264 -4358_80699,227,4368_7739,Burlington Road,4077,1,4368_7778195_9038003,4368_262 -4358_80756,227,4368_774,Drimnagh Road,3573,0,4368_7778195_7122010,4368_28 -4358_80699,229,4368_7740,Burlington Road,17194,1,4368_7778195_9038001,4368_262 -4358_80699,228,4368_7741,Burlington Road,11401,1,4368_7778195_9038004,4368_264 -4358_80699,227,4368_7742,Burlington Road,4091,1,4368_7778195_9038010,4368_262 -4358_80699,228,4368_7743,Burlington Road,11379,1,4368_7778195_9038012,4368_262 -4358_80699,229,4368_7744,Burlington Road,17227,1,4368_7778195_9038006,4368_264 -4358_80699,227,4368_7745,Burlington Road,4067,1,4368_7778195_9038013,4368_262 -4358_80699,228,4368_7746,Burlington Road,11411,1,4368_7778195_9038008,4368_262 -4358_80699,229,4368_7747,Burlington Road,17117,1,4368_7778195_9038010,4368_264 -4358_80699,227,4368_7748,Burlington Road,4056,1,4368_7778195_9038008,4368_262 -4358_80699,229,4368_7749,Burlington Road,17184,1,4368_7778195_9038011,4368_262 -4358_80756,228,4368_775,Drimnagh Road,13148,0,4368_7778195_7122005,4368_28 -4358_80699,228,4368_7750,Burlington Road,11392,1,4368_7778195_9038007,4368_264 -4358_80699,227,4368_7751,Burlington Road,4140,1,4368_7778195_9038011,4368_262 -4358_80699,228,4368_7752,Burlington Road,11370,1,4368_7778195_9038011,4368_262 -4358_80699,229,4368_7753,Burlington Road,17175,1,4368_7778195_9038008,4368_264 -4358_80699,227,4368_7754,Burlington Road,4175,1,4368_7778195_9038014,4368_262 -4358_80699,228,4368_7755,Burlington Road,11346,1,4368_7778195_9038009,4368_262 -4358_80699,229,4368_7756,Burlington Road,17197,1,4368_7778195_9038009,4368_264 -4358_80699,227,4368_7757,Burlington Road,4117,1,4368_7778195_9038007,4368_262 -4358_80699,228,4368_7758,Burlington Road,11403,1,4368_7778195_9038004,4368_262 -4358_80699,229,4368_7759,Burlington Road,17223,1,4368_7778195_9038013,4368_264 -4358_80756,227,4368_776,Drimnagh Road,3583,0,4368_7778195_7122012,4368_29 -4358_80699,227,4368_7760,Burlington Road,4153,1,4368_7778195_9038017,4368_262 -4358_80699,229,4368_7761,Burlington Road,17229,1,4368_7778195_9038006,4368_262 -4358_80699,228,4368_7762,Burlington Road,11254,1,4368_7778195_9038017,4368_264 -4358_80699,227,4368_7763,Burlington Road,4069,1,4368_7778195_9038013,4368_262 -4358_80699,228,4368_7764,Burlington Road,11336,1,4368_7778195_9038018,4368_262 -4358_80699,229,4368_7765,Burlington Road,17119,1,4368_7778195_9038010,4368_264 -4358_80699,227,4368_7766,Burlington Road,4106,1,4368_7778195_9038004,4368_262 -4358_80699,229,4368_7767,Burlington Road,17186,1,4368_7778195_9038011,4368_262 -4358_80699,228,4368_7768,Burlington Road,11413,1,4368_7778195_9038008,4368_264 -4358_80699,227,4368_7769,Burlington Road,4130,1,4368_7778195_9038009,4368_262 -4358_80756,227,4368_777,Drimnagh Road,3499,0,4368_7778195_7122002,4368_28 -4358_80699,229,4368_7770,Burlington Road,17132,1,4368_7778195_9038016,4368_262 -4358_80699,228,4368_7771,Burlington Road,11394,1,4368_7778195_9038007,4368_264 -4358_80699,227,4368_7772,Burlington Road,4230,1,4368_7778195_9038002,4368_262 -4358_80699,228,4368_7773,Burlington Road,11372,1,4368_7778195_9038011,4368_262 -4358_80699,229,4368_7774,Burlington Road,17199,1,4368_7778195_9038009,4368_264 -4358_80699,227,4368_7775,Burlington Road,4081,1,4368_7778195_9038003,4368_262 -4358_80699,228,4368_7776,Burlington Road,11353,1,4368_7778195_9038001,4368_262 -4358_80699,229,4368_7777,Burlington Road,17225,1,4368_7778195_9038013,4368_264 -4358_80699,227,4368_7778,Burlington Road,4095,1,4368_7778195_9038010,4368_263 -4358_80699,228,4368_7779,Burlington Road,11405,1,4368_7778195_9038004,4368_262 -4358_80756,227,4368_778,Drimnagh Road,3575,0,4368_7778195_7122014,4368_28 -4358_80699,229,4368_7780,Burlington Road,17231,1,4368_7778195_9038006,4368_264 -4358_80699,227,4368_7781,Burlington Road,7871,1,4368_7778195_8828209,4368_263 -4358_80699,229,4368_7782,Burlington Road,17178,1,4368_7778195_9038017,4368_262 -4358_80699,228,4368_7783,Burlington Road,11256,1,4368_7778195_9038017,4368_264 -4358_80699,227,4368_7784,Burlington Road,4160,1,4368_7778195_9038018,4368_263 -4358_80699,227,4368_7785,Burlington Road,4071,1,4368_7778195_9038013,4368_263 -4358_80699,229,4368_7786,Burlington Road,17164,1,4368_7778195_9038002,4368_262 -4358_80699,228,4368_7787,Burlington Road,11338,1,4368_7778195_9038018,4368_264 -4358_80699,227,4368_7788,Burlington Road,4165,1,4368_7778195_9038019,4368_263 -4358_80699,228,4368_7789,Burlington Road,11323,1,4368_7778195_9038015,4368_262 -4358_80756,228,4368_779,Drimnagh Road,13172,0,4368_7778195_7122007,4368_29 -4358_80699,229,4368_7790,Burlington Road,17098,1,4368_7778195_9038004,4368_264 -4358_80699,227,4368_7791,Burlington Road,4060,1,4368_7778195_9038008,4368_262 -4358_80699,228,4368_7792,Burlington Road,11364,1,4368_7778195_9038021,4368_262 -4358_80699,229,4368_7793,Burlington Road,17201,1,4368_7778195_9038009,4368_264 -4358_80699,227,4368_7794,Burlington Road,4144,1,4368_7778195_9038011,4368_262 -4358_80699,229,4368_7795,Burlington Road,17084,1,4368_7778195_9038015,4368_262 -4358_80699,228,4368_7796,Burlington Road,11374,1,4368_7778195_9038011,4368_264 -4358_80699,227,4368_7797,Burlington Road,4083,1,4368_7778195_9038003,4368_262 -4358_80699,228,4368_7798,Burlington Road,11355,1,4368_7778195_9038001,4368_262 -4358_80699,229,4368_7799,Burlington Road,17233,1,4368_7778195_9038006,4368_264 -4358_80760,228,4368_78,Shaw street,9510,0,4368_7778195_9001005,4368_1 -4358_80756,229,4368_780,Drimnagh Road,18556,0,4368_7778195_7122002,4368_28 -4358_80699,227,4368_7800,Burlington Road,4121,1,4368_7778195_9038007,4368_262 -4358_80699,229,4368_7801,Burlington Road,17180,1,4368_7778195_9038017,4368_262 -4358_80699,228,4368_7802,Burlington Road,11278,1,4368_7778195_9038020,4368_264 -4358_80699,227,4368_7803,Burlington Road,4157,1,4368_7778195_9038017,4368_262 -4358_80699,229,4368_7804,Burlington Road,17190,1,4368_7778195_9038011,4368_262 -4358_80699,228,4368_7805,Burlington Road,11340,1,4368_7778195_9038018,4368_264 -4358_80699,227,4368_7806,Burlington Road,4073,1,4368_7778195_9038013,4368_262 -4358_80699,228,4368_7807,Burlington Road,11325,1,4368_7778195_9038015,4368_262 -4358_80699,229,4368_7808,Burlington Road,17100,1,4368_7778195_9038004,4368_264 -4358_80699,227,4368_7809,Burlington Road,4062,1,4368_7778195_9038008,4368_262 -4358_80756,227,4368_781,Drimnagh Road,3422,0,4368_7778195_7122004,4368_28 -4358_80699,228,4368_7810,Burlington Road,11366,1,4368_7778195_9038021,4368_262 -4358_80699,229,4368_7811,Burlington Road,17203,1,4368_7778195_9038009,4368_264 -4358_80699,227,4368_7812,Burlington Road,4181,1,4368_7778195_9038014,4368_262 -4358_80699,229,4368_7813,Burlington Road,17171,1,4368_7778195_9038018,4368_262 -4358_80699,228,4368_7814,Burlington Road,11376,1,4368_7778195_9038011,4368_264 -4358_80699,227,4368_7815,Burlington Road,4123,1,4368_7778195_9038007,4368_262 -4358_80699,229,4368_7816,Burlington Road,17182,1,4368_7778195_9038017,4368_262 -4358_80699,228,4368_7817,Burlington Road,11357,1,4368_7778195_9038001,4368_264 -4358_80699,227,4368_7818,Burlington Road,4159,1,4368_7778195_9038017,4368_262 -4358_80699,229,4368_7819,Burlington Road,17192,1,4368_7778195_9038011,4368_262 -4358_80756,228,4368_782,Drimnagh Road,13184,0,4368_7778195_7122002,4368_28 -4358_80699,228,4368_7820,Burlington Road,11260,1,4368_7778195_9038017,4368_264 -4358_80699,227,4368_7821,Parnell Sq,4112,1,4368_7778195_9038004,4368_265 -4358_80699,228,4368_7822,Parnell Sq,11419,1,4368_7778195_9038008,4368_265 -4358_80699,229,4368_7823,Parnell Sq,17102,1,4368_7778195_9038004,4368_266 -4358_80699,227,4368_7824,Parnell Sq,4136,1,4368_7778195_9038009,4368_265 -4358_80700,227,4368_7825,Damastown,4086,0,4368_7778195_9038001,4368_267 -4358_80700,227,4368_7826,Damastown,4331,0,4368_7778195_9038006,4368_267 -4358_80700,227,4368_7827,Damastown,4125,0,4368_7778195_9038009,4368_267 -4358_80700,227,4368_7828,Damastown,4329,0,4368_7778195_9038012,4368_267 -4358_80700,227,4368_7829,Damastown,4172,0,4368_7778195_9038014,4368_267 -4358_80756,227,4368_783,Drimnagh Road,3403,0,4368_7778195_7122015,4368_29 -4358_80700,227,4368_7830,O'Connell Street,7869,1,4368_7778195_8828110,4368_268 -4358_80700,227,4368_7831,Burlington Road,4089,1,4368_7778195_9038010,4368_269 -4358_80700,227,4368_7832,Burlington Road,4065,1,4368_7778195_9038013,4368_269 -4358_80700,227,4368_7833,Burlington Road,4102,1,4368_7778195_9038004,4368_269 -4358_80700,227,4368_7834,Burlington Road,4054,1,4368_7778195_9038008,4368_269 -4358_80700,227,4368_7835,Burlington Road,6438,1,4368_7778195_7038556,4368_269 -4358_80700,227,4368_7836,Burlington Road,4330,1,4368_7778195_9038012,4368_269 -4358_80702,227,4368_7837,Damastown,4146,0,4368_7778195_9038005,4368_270 -4358_80702,227,4368_7838,Burlington Road,4151,1,4368_7778195_9038016,4368_271 -4358_80705,227,4368_7839,Ongar,4002,0,4368_7778195_7039013,4368_272 -4358_80756,227,4368_784,Drimnagh Road,3439,0,4368_7778195_7122006,4368_28 -4358_80705,228,4368_7840,Ongar,11109,0,4368_7778195_7039011,4368_272 -4358_80705,227,4368_7841,Ongar,3679,0,4368_7778195_7039016,4368_272 -4358_80705,228,4368_7842,Ongar,10957,0,4368_7778195_7039015,4368_272 -4358_80705,227,4368_7843,Ongar,3670,0,4368_7778195_7039005,4368_272 -4358_80705,228,4368_7844,Ongar,11048,0,4368_7778195_7039007,4368_272 -4358_80705,227,4368_7845,Ongar,3650,0,4368_7778195_7039010,4368_272 -4358_80705,228,4368_7846,Ongar,11166,0,4368_7778195_7039019,4368_272 -4358_80705,227,4368_7847,Ongar,3686,0,4368_7778195_7039014,4368_272 -4358_80705,228,4368_7848,Ongar,11075,0,4368_7778195_7039010,4368_272 -4358_80705,229,4368_7849,Ongar,16856,0,4368_7778195_7039009,4368_272 -4358_80756,229,4368_785,Drimnagh Road,18524,0,4368_7778195_7122004,4368_28 -4358_80705,227,4368_7850,Ongar,3693,0,4368_7778195_7039017,4368_272 -4358_80705,228,4368_7851,Ongar,11131,0,4368_7778195_7039014,4368_272 -4358_80705,229,4368_7852,Ongar,16800,0,4368_7778195_7039014,4368_272 -4358_80705,227,4368_7853,Ongar,3699,0,4368_7778195_7039019,4368_272 -4358_80705,228,4368_7854,Ongar,11146,0,4368_7778195_7039017,4368_272 -4358_80705,227,4368_7855,Ongar,3726,0,4368_7778195_7039021,4368_272 -4358_80705,229,4368_7856,Ongar,16796,0,4368_7778195_7039010,4368_273 -4358_80705,227,4368_7857,Ongar,3963,0,4368_7778195_7039024,4368_272 -4358_80705,228,4368_7858,Ongar,11111,0,4368_7778195_7039011,4368_272 -4358_80705,229,4368_7859,Ongar,16844,0,4368_7778195_7039011,4368_272 -4358_80756,228,4368_786,Drimnagh Road,13128,0,4368_7778195_7122004,4368_28 -4358_80705,228,4368_7860,Ongar,10959,0,4368_7778195_7039015,4368_272 -4358_80705,227,4368_7861,Ongar,4004,0,4368_7778195_7039013,4368_272 -4358_80705,229,4368_7862,Ongar,16807,0,4368_7778195_7039013,4368_272 -4358_80705,228,4368_7863,Ongar,11050,0,4368_7778195_7039007,4368_272 -4358_80705,227,4368_7864,Ongar,3645,0,4368_7778195_7039032,4368_272 -4358_80705,229,4368_7865,Ongar,16814,0,4368_7778195_7039022,4368_272 -4358_80705,228,4368_7866,Ongar,11168,0,4368_7778195_7039019,4368_272 -4358_80705,227,4368_7867,Ongar,3672,0,4368_7778195_7039005,4368_272 -4358_80705,229,4368_7868,Ongar,16788,0,4368_7778195_7039016,4368_272 -4358_80705,228,4368_7869,Ongar,11021,0,4368_7778195_7039022,4368_272 -4358_80756,227,4368_787,Drimnagh Road,3393,0,4368_7778195_7122016,4368_28 -4358_80705,227,4368_7870,Ongar,3652,0,4368_7778195_7039010,4368_272 -4358_80705,229,4368_7871,Ongar,16837,0,4368_7778195_7039017,4368_273 -4358_80705,228,4368_7872,Ongar,11184,0,4368_7778195_7039028,4368_272 -4358_80705,227,4368_7873,Ongar,3695,0,4368_7778195_7039017,4368_272 -4358_80705,229,4368_7874,Ongar,16858,0,4368_7778195_7039009,4368_273 -4358_80705,228,4368_7875,Ongar,11077,0,4368_7778195_7039010,4368_272 -4358_80705,227,4368_7876,Ongar,3701,0,4368_7778195_7039019,4368_272 -4358_80705,229,4368_7877,Ongar,16802,0,4368_7778195_7039014,4368_273 -4358_80705,228,4368_7878,Ongar,11133,0,4368_7778195_7039014,4368_272 -4358_80705,227,4368_7879,Ongar,3728,0,4368_7778195_7039021,4368_272 -4358_80756,228,4368_788,Drimnagh Road,13140,0,4368_7778195_7122006,4368_28 -4358_80705,229,4368_7880,Ongar,16798,0,4368_7778195_7039010,4368_273 -4358_80705,228,4368_7881,Ongar,11148,0,4368_7778195_7039017,4368_272 -4358_80705,229,4368_7882,Ongar,16846,0,4368_7778195_7039011,4368_272 -4358_80705,227,4368_7883,Ongar,3664,0,4368_7778195_7039042,4368_273 -4358_80705,228,4368_7884,Ongar,11113,0,4368_7778195_7039011,4368_272 -4358_80705,229,4368_7885,Ongar,16809,0,4368_7778195_7039013,4368_272 -4358_80705,227,4368_7886,Ongar,3994,0,4368_7778195_7039040,4368_273 -4358_80705,228,4368_7887,Ongar,10961,0,4368_7778195_7039015,4368_272 -4358_80705,227,4368_7888,Ongar,4006,0,4368_7778195_7039013,4368_272 -4358_80705,229,4368_7889,Ongar,16850,0,4368_7778195_7039024,4368_273 -4358_80756,227,4368_789,Drimnagh Road,3598,0,4368_7778195_7122008,4368_29 -4358_80705,228,4368_7890,Ongar,11052,0,4368_7778195_7039007,4368_272 -4358_80705,229,4368_7891,Ongar,16816,0,4368_7778195_7039022,4368_272 -4358_80705,227,4368_7892,Ongar,3647,0,4368_7778195_7039032,4368_273 -4358_80705,228,4368_7893,Ongar,11170,0,4368_7778195_7039019,4368_272 -4358_80705,227,4368_7894,Ongar,3674,0,4368_7778195_7039005,4368_272 -4358_80705,229,4368_7895,Ongar,16790,0,4368_7778195_7039016,4368_273 -4358_80705,228,4368_7896,Ongar,11023,0,4368_7778195_7039022,4368_272 -4358_80705,227,4368_7897,Ongar,3654,0,4368_7778195_7039010,4368_272 -4358_80705,229,4368_7898,Ongar,16839,0,4368_7778195_7039017,4368_273 -4358_80705,227,4368_7899,Ongar,7856,0,4368_7778195_8828202,4368_272 -4358_80760,227,4368_79,Shaw street,1797,0,4368_7778195_9001012,4368_1 -4358_80756,229,4368_790,Drimnagh Road,18548,0,4368_7778195_7122005,4368_28 -4358_80705,228,4368_7900,Ongar,11186,0,4368_7778195_7039028,4368_272 -4358_80705,227,4368_7901,Ongar,3697,0,4368_7778195_7039017,4368_272 -4358_80705,229,4368_7902,Ongar,16860,0,4368_7778195_7039009,4368_273 -4358_80705,227,4368_7903,Ongar,3703,0,4368_7778195_7039019,4368_272 -4358_80705,228,4368_7904,Ongar,11079,0,4368_7778195_7039010,4368_272 -4358_80705,229,4368_7905,Ongar,16804,0,4368_7778195_7039014,4368_272 -4358_80705,227,4368_7906,Ongar,3731,0,4368_7778195_7039046,4368_273 -4358_80705,228,4368_7907,Ongar,11135,0,4368_7778195_7039014,4368_272 -4358_80705,229,4368_7908,Ongar,16848,0,4368_7778195_7039011,4368_272 -4358_80705,227,4368_7909,Ongar,3730,0,4368_7778195_7039021,4368_273 -4358_80756,227,4368_791,Drimnagh Road,3607,0,4368_7778195_7122011,4368_28 -4358_80705,228,4368_7910,Ongar,11150,0,4368_7778195_7039017,4368_272 -4358_80705,229,4368_7911,Ongar,16811,0,4368_7778195_7039013,4368_272 -4358_80705,227,4368_7912,Ongar,3666,0,4368_7778195_7039042,4368_273 -4358_80705,228,4368_7913,Ongar,11115,0,4368_7778195_7039011,4368_272 -4358_80705,229,4368_7914,Ongar,16852,0,4368_7778195_7039024,4368_272 -4358_80705,227,4368_7915,Ongar,3996,0,4368_7778195_7039040,4368_273 -4358_80705,228,4368_7916,Ongar,10963,0,4368_7778195_7039015,4368_272 -4358_80705,227,4368_7917,Ongar,4008,0,4368_7778195_7039013,4368_272 -4358_80705,229,4368_7918,Ongar,16818,0,4368_7778195_7039022,4368_273 -4358_80705,228,4368_7919,Ongar,11054,0,4368_7778195_7039007,4368_272 -4358_80756,228,4368_792,Drimnagh Road,13101,0,4368_7778195_7122001,4368_28 -4358_80705,227,4368_7920,Ongar,3736,0,4368_7778195_7039047,4368_273 -4358_80705,229,4368_7921,Ongar,16792,0,4368_7778195_7039016,4368_272 -4358_80705,227,4368_7922,Ongar,3676,0,4368_7778195_7039005,4368_272 -4358_80705,228,4368_7923,Ongar,11172,0,4368_7778195_7039019,4368_273 -4358_80705,229,4368_7924,Ongar,16841,0,4368_7778195_7039017,4368_272 -4358_80705,228,4368_7925,Ongar,11188,0,4368_7778195_7039028,4368_272 -4358_80705,227,4368_7926,Ongar,3656,0,4368_7778195_7039010,4368_273 -4358_80705,229,4368_7927,Ongar,16862,0,4368_7778195_7039009,4368_272 -4358_80705,228,4368_7928,Ongar,11081,0,4368_7778195_7039010,4368_272 -4358_80705,227,4368_7929,Ongar,3733,0,4368_7778195_7039046,4368_273 -4358_80756,227,4368_793,Drimnagh Road,3615,0,4368_7778195_7122001,4368_28 -4358_80705,229,4368_7930,Ongar,16813,0,4368_7778195_7039013,4368_272 -4358_80705,228,4368_7931,Ongar,11137,0,4368_7778195_7039014,4368_272 -4358_80705,227,4368_7932,Ongar,3668,0,4368_7778195_7039042,4368_273 -4358_80705,229,4368_7933,Ongar,16854,0,4368_7778195_7039024,4368_272 -4358_80705,227,4368_7934,Ongar,3998,0,4368_7778195_7039040,4368_272 -4358_80705,228,4368_7935,Ongar,11117,0,4368_7778195_7039011,4368_273 -4358_80705,229,4368_7936,Ongar,16820,0,4368_7778195_7039022,4368_272 -4358_80705,228,4368_7937,Ongar,10965,0,4368_7778195_7039015,4368_272 -4358_80705,227,4368_7938,Ongar,4010,0,4368_7778195_7039013,4368_273 -4358_80705,229,4368_7939,Ongar,16794,0,4368_7778195_7039016,4368_272 -4358_80756,229,4368_794,Drimnagh Road,18567,0,4368_7778195_7122001,4368_28 -4358_80705,227,4368_7940,Burlington Road,3669,1,4368_7778195_7039005,4368_274 -4358_80705,227,4368_7941,Burlington Road,3649,1,4368_7778195_7039010,4368_274 -4358_80705,228,4368_7942,Burlington Road,11047,1,4368_7778195_7039007,4368_274 -4358_80705,227,4368_7943,Burlington Road,3685,1,4368_7778195_7039014,4368_274 -4358_80705,228,4368_7944,Burlington Road,11074,1,4368_7778195_7039010,4368_274 -4358_80705,227,4368_7945,Burlington Road,3692,1,4368_7778195_7039017,4368_274 -4358_80705,227,4368_7946,Burlington Road,3698,1,4368_7778195_7039019,4368_274 -4358_80705,228,4368_7947,Burlington Road,11130,1,4368_7778195_7039014,4368_274 -4358_80705,227,4368_7948,Burlington Road,3725,1,4368_7778195_7039021,4368_274 -4358_80705,227,4368_7949,Burlington Road,3962,1,4368_7778195_7039024,4368_274 -4358_80756,228,4368_795,Drimnagh Road,13117,0,4368_7778195_7122003,4368_28 -4358_80705,228,4368_7950,Burlington Road,11145,1,4368_7778195_7039017,4368_274 -4358_80705,227,4368_7951,Burlington Road,3999,1,4368_7778195_7039027,4368_274 -4358_80705,227,4368_7952,Burlington Road,4003,1,4368_7778195_7039013,4368_274 -4358_80705,229,4368_7953,Burlington Road,16795,1,4368_7778195_7039010,4368_275 -4358_80705,227,4368_7954,Burlington Road,7818,1,4368_7778195_8818120,4368_274 -4358_80705,228,4368_7955,Burlington Road,11110,1,4368_7778195_7039011,4368_274 -4358_80705,227,4368_7956,Burlington Road,3644,1,4368_7778195_7039032,4368_274 -4358_80705,229,4368_7957,Burlington Road,16843,1,4368_7778195_7039011,4368_274 -4358_80705,228,4368_7958,Burlington Road,10958,1,4368_7778195_7039015,4368_274 -4358_80705,227,4368_7959,Burlington Road,3680,1,4368_7778195_7039016,4368_274 -4358_80756,227,4368_796,Drimnagh Road,3502,0,4368_7778195_7122013,4368_28 -4358_80705,229,4368_7960,Burlington Road,16806,1,4368_7778195_7039013,4368_274 -4358_80705,227,4368_7961,Burlington Road,3671,1,4368_7778195_7039005,4368_274 -4358_80705,228,4368_7962,Burlington Road,11049,1,4368_7778195_7039007,4368_274 -4358_80705,229,4368_7963,Burlington Road,16787,1,4368_7778195_7039016,4368_274 -4358_80705,227,4368_7964,Burlington Road,3659,1,4368_7778195_7039038,4368_274 -4358_80705,228,4368_7965,Burlington Road,11167,1,4368_7778195_7039019,4368_274 -4358_80705,229,4368_7966,Burlington Road,16836,1,4368_7778195_7039017,4368_274 -4358_80705,227,4368_7967,Burlington Road,3651,1,4368_7778195_7039010,4368_274 -4358_80705,228,4368_7968,Burlington Road,11020,1,4368_7778195_7039022,4368_274 -4358_80705,229,4368_7969,Burlington Road,16857,1,4368_7778195_7039009,4368_274 -4358_80756,228,4368_797,Drimnagh Road,13150,0,4368_7778195_7122005,4368_28 -4358_80705,227,4368_7970,Burlington Road,3694,1,4368_7778195_7039017,4368_274 -4358_80705,228,4368_7971,Burlington Road,11076,1,4368_7778195_7039010,4368_274 -4358_80705,229,4368_7972,Burlington Road,16801,1,4368_7778195_7039014,4368_274 -4358_80705,227,4368_7973,Burlington Road,3700,1,4368_7778195_7039019,4368_274 -4358_80705,228,4368_7974,Burlington Road,11132,1,4368_7778195_7039014,4368_274 -4358_80705,227,4368_7975,Burlington Road,3727,1,4368_7778195_7039021,4368_274 -4358_80705,229,4368_7976,Burlington Road,16797,1,4368_7778195_7039010,4368_275 -4358_80705,228,4368_7977,Burlington Road,11147,1,4368_7778195_7039017,4368_274 -4358_80705,227,4368_7978,Burlington Road,3964,1,4368_7778195_7039024,4368_274 -4358_80705,229,4368_7979,Burlington Road,16845,1,4368_7778195_7039011,4368_275 -4358_80756,227,4368_798,Drimnagh Road,3396,0,4368_7778195_7122005,4368_28 -4358_80705,228,4368_7980,Burlington Road,11112,1,4368_7778195_7039011,4368_274 -4358_80705,227,4368_7981,Burlington Road,3993,1,4368_7778195_7039040,4368_274 -4358_80705,229,4368_7982,Burlington Road,16808,1,4368_7778195_7039013,4368_274 -4358_80705,228,4368_7983,Burlington Road,10960,1,4368_7778195_7039015,4368_274 -4358_80705,227,4368_7984,Burlington Road,4005,1,4368_7778195_7039013,4368_274 -4358_80705,229,4368_7985,Burlington Road,16849,1,4368_7778195_7039024,4368_275 -4358_80705,228,4368_7986,Burlington Road,11051,1,4368_7778195_7039007,4368_274 -4358_80705,229,4368_7987,Burlington Road,16815,1,4368_7778195_7039022,4368_274 -4358_80705,227,4368_7988,Burlington Road,3646,1,4368_7778195_7039032,4368_274 -4358_80705,228,4368_7989,Burlington Road,11169,1,4368_7778195_7039019,4368_274 -4358_80756,229,4368_799,Drimnagh Road,18537,0,4368_7778195_7122003,4368_29 -4358_80705,229,4368_7990,Burlington Road,16789,1,4368_7778195_7039016,4368_274 -4358_80705,227,4368_7991,Burlington Road,3673,1,4368_7778195_7039005,4368_274 -4358_80705,228,4368_7992,Burlington Road,11022,1,4368_7778195_7039022,4368_274 -4358_80705,229,4368_7993,Burlington Road,16838,1,4368_7778195_7039017,4368_274 -4358_80705,227,4368_7994,Burlington Road,3653,1,4368_7778195_7039010,4368_274 -4358_80705,228,4368_7995,Burlington Road,11185,1,4368_7778195_7039028,4368_274 -4358_80705,229,4368_7996,Burlington Road,16859,1,4368_7778195_7039009,4368_274 -4358_80705,227,4368_7997,Burlington Road,3696,1,4368_7778195_7039017,4368_274 -4358_80705,228,4368_7998,Burlington Road,11078,1,4368_7778195_7039010,4368_274 -4358_80705,229,4368_7999,Burlington Road,16803,1,4368_7778195_7039014,4368_274 -4358_80760,228,4368_8,Shaw street,9372,0,4368_7778195_9001001,4368_2 -4358_80760,229,4368_80,Shaw street,15664,0,4368_7778195_9001005,4368_1 -4358_80756,228,4368_800,Drimnagh Road,13159,0,4368_7778195_7122008,4368_28 -4358_80705,227,4368_8000,Burlington Road,3702,1,4368_7778195_7039019,4368_274 -4358_80705,228,4368_8001,Burlington Road,11134,1,4368_7778195_7039014,4368_274 -4358_80705,229,4368_8002,Burlington Road,16799,1,4368_7778195_7039010,4368_274 -4358_80705,227,4368_8003,Burlington Road,3729,1,4368_7778195_7039021,4368_274 -4358_80705,228,4368_8004,Burlington Road,11149,1,4368_7778195_7039017,4368_274 -4358_80705,229,4368_8005,Burlington Road,16847,1,4368_7778195_7039011,4368_274 -4358_80705,227,4368_8006,Burlington Road,3665,1,4368_7778195_7039042,4368_274 -4358_80705,228,4368_8007,Burlington Road,11114,1,4368_7778195_7039011,4368_274 -4358_80705,229,4368_8008,Burlington Road,16810,1,4368_7778195_7039013,4368_274 -4358_80705,227,4368_8009,Burlington Road,3995,1,4368_7778195_7039040,4368_274 -4358_80756,227,4368_801,Drimnagh Road,3505,0,4368_7778195_7122009,4368_28 -4358_80705,228,4368_8010,Burlington Road,10962,1,4368_7778195_7039015,4368_274 -4358_80705,229,4368_8011,Burlington Road,16851,1,4368_7778195_7039024,4368_274 -4358_80705,227,4368_8012,Burlington Road,4007,1,4368_7778195_7039013,4368_274 -4358_80705,228,4368_8013,Burlington Road,11053,1,4368_7778195_7039007,4368_274 -4358_80705,229,4368_8014,Burlington Road,16817,1,4368_7778195_7039022,4368_274 -4358_80705,227,4368_8015,Burlington Road,3735,1,4368_7778195_7039047,4368_274 -4358_80705,228,4368_8016,Burlington Road,11171,1,4368_7778195_7039019,4368_274 -4358_80705,229,4368_8017,Burlington Road,16791,1,4368_7778195_7039016,4368_274 -4358_80705,227,4368_8018,Burlington Road,3648,1,4368_7778195_7039032,4368_274 -4358_80705,228,4368_8019,Burlington Road,11024,1,4368_7778195_7039022,4368_274 -4358_80756,229,4368_802,Drimnagh Road,18558,0,4368_7778195_7122002,4368_28 -4358_80705,229,4368_8020,Burlington Road,16840,1,4368_7778195_7039017,4368_274 -4358_80705,227,4368_8021,Burlington Road,3675,1,4368_7778195_7039005,4368_274 -4358_80705,228,4368_8022,Burlington Road,11187,1,4368_7778195_7039028,4368_274 -4358_80705,229,4368_8023,Burlington Road,16861,1,4368_7778195_7039009,4368_274 -4358_80705,227,4368_8024,Burlington Road,3655,1,4368_7778195_7039010,4368_274 -4358_80705,228,4368_8025,Burlington Road,11080,1,4368_7778195_7039010,4368_274 -4358_80705,229,4368_8026,Burlington Road,16805,1,4368_7778195_7039014,4368_274 -4358_80705,227,4368_8027,Burlington Road,3732,1,4368_7778195_7039046,4368_274 -4358_80705,228,4368_8028,Burlington Road,11136,1,4368_7778195_7039014,4368_274 -4358_80705,229,4368_8029,Burlington Road,16812,1,4368_7778195_7039013,4368_274 -4358_80756,228,4368_803,Drimnagh Road,13174,0,4368_7778195_7122007,4368_28 -4358_80705,227,4368_8030,Burlington Road,3667,1,4368_7778195_7039042,4368_274 -4358_80705,228,4368_8031,Burlington Road,11116,1,4368_7778195_7039011,4368_274 -4358_80705,229,4368_8032,Burlington Road,16853,1,4368_7778195_7039024,4368_274 -4358_80705,227,4368_8033,Burlington Road,3997,1,4368_7778195_7039040,4368_274 -4358_80705,228,4368_8034,Burlington Road,10964,1,4368_7778195_7039015,4368_274 -4358_80705,229,4368_8035,Burlington Road,16819,1,4368_7778195_7039022,4368_274 -4358_80705,227,4368_8036,Burlington Road,4009,1,4368_7778195_7039013,4368_274 -4358_80705,228,4368_8037,Burlington Road,11138,1,4368_7778195_7039033,4368_274 -4358_80705,229,4368_8038,Burlington Road,16793,1,4368_7778195_7039016,4368_274 -4358_80705,227,4368_8039,Burlington Road,3737,1,4368_7778195_7039047,4368_274 -4358_80756,227,4368_804,Drimnagh Road,3585,0,4368_7778195_7122012,4368_28 -4358_80705,228,4368_8040,Burlington Road,11055,1,4368_7778195_7039007,4368_274 -4358_80705,229,4368_8041,Burlington Road,16842,1,4368_7778195_7039017,4368_274 -4358_80705,227,4368_8042,Burlington Road,3677,1,4368_7778195_7039005,4368_274 -4358_80705,228,4368_8043,Burlington Road,11173,1,4368_7778195_7039019,4368_274 -4358_80705,229,4368_8044,Burlington Road,16863,1,4368_7778195_7039009,4368_274 -4358_80705,227,4368_8045,Burlington Road,3657,1,4368_7778195_7039010,4368_274 -4358_80705,228,4368_8046,Burlington Road,11189,1,4368_7778195_7039028,4368_274 -4358_80705,227,4368_8047,Burlington Road,3734,1,4368_7778195_7039046,4368_274 -4358_80705,228,4368_8048,Burlington Road,11082,1,4368_7778195_7039010,4368_274 -4358_80705,229,4368_8049,Burlington Road,16855,1,4368_7778195_7039024,4368_274 -4358_80756,229,4368_805,Drimnagh Road,18577,0,4368_7778195_7122006,4368_28 -4358_80706,228,4368_8050,Ongar,11229,0,4368_7778195_7039001,4368_276 -4358_80706,229,4368_8051,Ongar,16878,0,4368_7778195_7039002,4368_277 -4358_80706,227,4368_8052,Ongar,4024,0,4368_7778195_7039002,4368_278 -4358_80706,227,4368_8053,Ongar,3715,0,4368_7778195_7039004,4368_276 -4358_80706,228,4368_8054,Ongar,11036,0,4368_7778195_7039004,4368_277 -4358_80706,229,4368_8055,Ongar,17072,0,4368_7778195_7039004,4368_278 -4358_80706,228,4368_8056,Ongar,10999,0,4368_7778195_7039005,4368_276 -4358_80706,227,4368_8057,Ongar,3752,0,4368_7778195_7039009,4368_277 -4358_80706,229,4368_8058,Ongar,16886,0,4368_7778195_7039006,4368_278 -4358_80706,227,4368_8059,Ongar,3708,0,4368_7778195_7039001,4368_276 -4358_80756,228,4368_806,Drimnagh Road,13186,0,4368_7778195_7122002,4368_28 -4358_80706,229,4368_8060,Ongar,16912,0,4368_7778195_7039001,4368_277 -4358_80706,228,4368_8061,Ongar,11026,0,4368_7778195_7039002,4368_278 -4358_80706,229,4368_8062,Ongar,17022,0,4368_7778195_7039003,4368_276 -4358_80706,228,4368_8063,Ongar,11198,0,4368_7778195_7039003,4368_277 -4358_80706,227,4368_8064,Ongar,3975,0,4368_7778195_7039003,4368_278 -4358_80706,228,4368_8065,Ongar,11101,0,4368_7778195_7039013,4368_276 -4358_80706,227,4368_8066,Ongar,3755,0,4368_7778195_7039006,4368_277 -4358_80706,227,4368_8067,Ongar,4018,0,4368_7778195_7039007,4368_276 -4358_80706,228,4368_8068,Ongar,11008,0,4368_7778195_7039006,4368_277 -4358_80706,229,4368_8069,Ongar,16951,0,4368_7778195_7039005,4368_278 -4358_80756,227,4368_807,Drimnagh Road,3577,0,4368_7778195_7122014,4368_28 -4358_80706,227,4368_8070,Ongar,3897,0,4368_7778195_7039025,4368_276 -4358_80706,228,4368_8071,Ongar,11231,0,4368_7778195_7039001,4368_276 -4358_80706,227,4368_8072,Ongar,3687,0,4368_7778195_7039029,4368_276 -4358_80706,227,4368_8073,Ongar,6636,0,4368_7778195_7039008,4368_276 -4358_80706,228,4368_8074,Ongar,11247,0,4368_7778195_7039008,4368_277 -4358_80706,229,4368_8075,Ongar,16880,0,4368_7778195_7039002,4368_278 -4358_80706,227,4368_8076,Ongar,4036,0,4368_7778195_7039011,4368_276 -4358_80706,228,4368_8077,Ongar,11237,0,4368_7778195_7039009,4368_276 -4358_80706,229,4368_8078,Ongar,16960,0,4368_7778195_7039007,4368_276 -4358_80706,227,4368_8079,Ongar,4026,0,4368_7778195_7039002,4368_277 -4358_80756,229,4368_808,Drimnagh Road,18526,0,4368_7778195_7122004,4368_28 -4358_80706,228,4368_8080,Ongar,11038,0,4368_7778195_7039004,4368_276 -4358_80706,227,4368_8081,Ongar,3985,0,4368_7778195_7039012,4368_277 -4358_80706,227,4368_8082,Ongar,3773,0,4368_7778195_7039015,4368_276 -4358_80706,229,4368_8083,Ongar,17074,0,4368_7778195_7039004,4368_277 -4358_80706,228,4368_8084,Ongar,11217,0,4368_7778195_7039012,4368_276 -4358_80706,227,4368_8085,Ongar,3717,0,4368_7778195_7039004,4368_276 -4358_80706,228,4368_8086,Ongar,11001,0,4368_7778195_7039005,4368_276 -4358_80706,229,4368_8087,Ongar,16941,0,4368_7778195_7039012,4368_277 -4358_80706,227,4368_8088,Ongar,3796,0,4368_7778195_7039018,4368_278 -4358_80706,227,4368_8089,Ongar,3803,0,4368_7778195_7039020,4368_276 -4358_80756,228,4368_809,Drimnagh Road,13130,0,4368_7778195_7122004,4368_28 -4358_80706,228,4368_8090,Ongar,11119,0,4368_7778195_7039016,4368_276 -4358_80706,227,4368_8091,Ongar,3854,0,4368_7778195_7039036,4368_276 -4358_80706,229,4368_8092,Ongar,16888,0,4368_7778195_7039006,4368_277 -4358_80706,228,4368_8093,Ongar,11028,0,4368_7778195_7039002,4368_276 -4358_80706,227,4368_8094,Ongar,3866,0,4368_7778195_7039022,4368_276 -4358_80706,228,4368_8095,Ongar,11159,0,4368_7778195_7039021,4368_276 -4358_80706,229,4368_8096,Ongar,16914,0,4368_7778195_7039001,4368_276 -4358_80706,227,4368_8097,Ongar,3746,0,4368_7778195_7039023,4368_277 -4358_80706,228,4368_8098,Ongar,11089,0,4368_7778195_7039018,4368_276 -4358_80706,227,4368_8099,Ongar,3875,0,4368_7778195_7039026,4368_276 -4358_80760,227,4368_81,Shaw street,1849,0,4368_7778195_9001006,4368_1 -4358_80756,227,4368_810,Drimnagh Road,3424,0,4368_7778195_7122004,4368_28 -4358_80706,229,4368_8100,Ongar,17024,0,4368_7778195_7039003,4368_276 -4358_80706,228,4368_8101,Ongar,11200,0,4368_7778195_7039003,4368_277 -4358_80706,227,4368_8102,Ongar,3887,0,4368_7778195_7039028,4368_278 -4358_80706,227,4368_8103,Ongar,3767,0,4368_7778195_7039030,4368_276 -4358_80706,228,4368_8104,Ongar,11207,0,4368_7778195_7039023,4368_276 -4358_80706,229,4368_8105,Ongar,17057,0,4368_7778195_7039018,4368_276 -4358_80706,227,4368_8106,Ongar,7821,0,4368_7778195_8818121,4368_276 -4358_80706,228,4368_8107,Ongar,11211,0,4368_7778195_7039025,4368_276 -4358_80706,227,4368_8108,Ongar,3710,0,4368_7778195_7039001,4368_276 -4358_80706,229,4368_8109,Ongar,16923,0,4368_7778195_7039008,4368_277 -4358_80756,229,4368_811,Drimnagh Road,18587,0,4368_7778195_7122007,4368_28 -4358_80706,228,4368_8110,Ongar,11103,0,4368_7778195_7039013,4368_276 -4358_80706,227,4368_8111,Ongar,3832,0,4368_7778195_7039034,4368_276 -4358_80706,229,4368_8112,Ongar,16953,0,4368_7778195_7039005,4368_276 -4358_80706,228,4368_8113,Ongar,11010,0,4368_7778195_7039006,4368_276 -4358_80706,227,4368_8114,Ongar,3977,0,4368_7778195_7039003,4368_276 -4358_80706,228,4368_8115,Ongar,11233,0,4368_7778195_7039001,4368_276 -4358_80706,227,4368_8116,Ongar,3757,0,4368_7778195_7039006,4368_277 -4358_80706,229,4368_8117,Ongar,16822,0,4368_7778195_7039015,4368_278 -4358_80706,227,4368_8118,Ongar,3790,0,4368_7778195_7039035,4368_276 -4358_80706,228,4368_8119,Ongar,11152,0,4368_7778195_7039020,4368_276 -4358_80756,228,4368_812,Drimnagh Road,13142,0,4368_7778195_7122006,4368_28 -4358_80706,229,4368_8120,Ongar,16904,0,4368_7778195_7039021,4368_276 -4358_80706,227,4368_8121,Ongar,4012,0,4368_7778195_7039037,4368_276 -4358_80706,228,4368_8122,Ongar,11249,0,4368_7778195_7039008,4368_276 -4358_80706,227,4368_8123,Ongar,4020,0,4368_7778195_7039007,4368_276 -4358_80706,229,4368_8124,Ongar,16882,0,4368_7778195_7039002,4368_277 -4358_80706,228,4368_8125,Ongar,11239,0,4368_7778195_7039009,4368_276 -4358_80706,227,4368_8126,Ongar,3899,0,4368_7778195_7039025,4368_276 -4358_80706,229,4368_8127,Ongar,16962,0,4368_7778195_7039007,4368_276 -4358_80706,228,4368_8128,Ongar,11040,0,4368_7778195_7039004,4368_276 -4358_80706,227,4368_8129,Ongar,3689,0,4368_7778195_7039029,4368_276 -4358_80756,227,4368_813,Drimnagh Road,3441,0,4368_7778195_7122006,4368_28 -4358_80706,228,4368_8130,Ongar,11095,0,4368_7778195_7039024,4368_276 -4358_80706,229,4368_8131,Ongar,17076,0,4368_7778195_7039004,4368_277 -4358_80706,227,4368_8132,Ongar,6638,0,4368_7778195_7039008,4368_278 -4358_80706,227,4368_8133,Ongar,4038,0,4368_7778195_7039011,4368_276 -4358_80706,228,4368_8134,Ongar,11219,0,4368_7778195_7039012,4368_276 -4358_80706,229,4368_8135,Ongar,16943,0,4368_7778195_7039012,4368_276 -4358_80706,227,4368_8136,Ongar,4028,0,4368_7778195_7039002,4368_276 -4358_80706,228,4368_8137,Ongar,11003,0,4368_7778195_7039005,4368_276 -4358_80706,229,4368_8138,Ongar,16871,0,4368_7778195_7039019,4368_276 -4358_80706,227,4368_8139,Ongar,3987,0,4368_7778195_7039012,4368_277 -4358_80756,229,4368_814,Drimnagh Road,18550,0,4368_7778195_7122005,4368_28 -4358_80706,228,4368_8140,Ongar,11057,0,4368_7778195_7039026,4368_276 -4358_80706,227,4368_8141,Ongar,3775,0,4368_7778195_7039015,4368_276 -4358_80706,229,4368_8142,Ongar,16890,0,4368_7778195_7039006,4368_276 -4358_80706,228,4368_8143,Ongar,10945,0,4368_7778195_7039029,4368_276 -4358_80706,227,4368_8144,Ongar,3719,0,4368_7778195_7039004,4368_276 -4358_80706,228,4368_8145,Ongar,11121,0,4368_7778195_7039016,4368_276 -4358_80706,227,4368_8146,Ongar,3798,0,4368_7778195_7039018,4368_277 -4358_80706,229,4368_8147,Ongar,16898,0,4368_7778195_7039025,4368_278 -4358_80706,227,4368_8148,Ongar,3805,0,4368_7778195_7039020,4368_276 -4358_80706,228,4368_8149,Ongar,11030,0,4368_7778195_7039002,4368_276 -4358_80756,228,4368_815,Drimnagh Road,13166,0,4368_7778195_7122009,4368_28 -4358_80706,229,4368_8150,Ongar,16892,0,4368_7778195_7039020,4368_276 -4358_80706,227,4368_8151,Ongar,3856,0,4368_7778195_7039036,4368_276 -4358_80706,228,4368_8152,Ongar,11161,0,4368_7778195_7039021,4368_276 -4358_80706,229,4368_8153,Ongar,16916,0,4368_7778195_7039001,4368_276 -4358_80706,227,4368_8154,Ongar,3868,0,4368_7778195_7039022,4368_277 -4358_80706,228,4368_8155,Ongar,11091,0,4368_7778195_7039018,4368_276 -4358_80706,227,4368_8156,Ongar,3748,0,4368_7778195_7039023,4368_276 -4358_80706,229,4368_8157,Ongar,17026,0,4368_7778195_7039003,4368_276 -4358_80706,228,4368_8158,Ongar,11202,0,4368_7778195_7039003,4368_276 -4358_80706,227,4368_8159,Ongar,3877,0,4368_7778195_7039026,4368_276 -4358_80756,227,4368_816,Drimnagh Road,3600,0,4368_7778195_7122008,4368_28 -4358_80706,228,4368_8160,Ongar,11209,0,4368_7778195_7039023,4368_276 -4358_80706,229,4368_8161,Ongar,17059,0,4368_7778195_7039018,4368_277 -4358_80706,227,4368_8162,Ongar,3889,0,4368_7778195_7039028,4368_278 -4358_80706,227,4368_8163,Ongar,3769,0,4368_7778195_7039030,4368_276 -4358_80706,228,4368_8164,Ongar,11213,0,4368_7778195_7039025,4368_276 -4358_80706,229,4368_8165,Ongar,16997,0,4368_7778195_7039023,4368_276 -4358_80706,227,4368_8166,Ongar,3822,0,4368_7778195_7039039,4368_276 -4358_80706,228,4368_8167,Ongar,11140,0,4368_7778195_7039027,4368_276 -4358_80706,227,4368_8168,Ongar,3712,0,4368_7778195_7039001,4368_276 -4358_80706,229,4368_8169,Ongar,16925,0,4368_7778195_7039008,4368_277 -4358_80756,229,4368_817,Drimnagh Road,18596,0,4368_7778195_7122009,4368_28 -4358_80706,228,4368_8170,Ongar,11105,0,4368_7778195_7039013,4368_276 -4358_80706,227,4368_8171,Ongar,3834,0,4368_7778195_7039034,4368_276 -4358_80706,229,4368_8172,Ongar,16955,0,4368_7778195_7039005,4368_276 -4358_80706,228,4368_8173,Ongar,11012,0,4368_7778195_7039006,4368_276 -4358_80706,227,4368_8174,Ongar,3979,0,4368_7778195_7039003,4368_276 -4358_80706,228,4368_8175,Ongar,11235,0,4368_7778195_7039001,4368_276 -4358_80706,227,4368_8176,Ongar,3759,0,4368_7778195_7039006,4368_277 -4358_80706,229,4368_8177,Ongar,16824,0,4368_7778195_7039015,4368_278 -4358_80706,227,4368_8178,Ongar,7876,0,4368_7778195_7039615,4368_276 -4358_80706,227,4368_8179,Ongar,3792,0,4368_7778195_7039035,4368_276 -4358_80756,228,4368_818,Drimnagh Road,13103,0,4368_7778195_7122001,4368_28 -4358_80706,228,4368_8180,Ongar,11154,0,4368_7778195_7039020,4368_276 -4358_80706,229,4368_8181,Ongar,16906,0,4368_7778195_7039021,4368_276 -4358_80706,227,4368_8182,Ongar,4014,0,4368_7778195_7039037,4368_276 -4358_80706,228,4368_8183,Ongar,11179,0,4368_7778195_7039030,4368_276 -4358_80706,227,4368_8184,Ongar,7935,0,4368_7778195_7039617,4368_276 -4358_80706,227,4368_8185,Ongar,4022,0,4368_7778195_7039007,4368_276 -4358_80706,229,4368_8186,Ongar,16884,0,4368_7778195_7039002,4368_277 -4358_80706,228,4368_8187,Ongar,11251,0,4368_7778195_7039008,4368_276 -4358_80706,227,4368_8188,Ongar,4051,0,4368_7778195_7039041,4368_276 -4358_80706,229,4368_8189,Ongar,16964,0,4368_7778195_7039007,4368_276 -4358_80756,227,4368_819,Drimnagh Road,3609,0,4368_7778195_7122011,4368_28 -4358_80706,228,4368_8190,Ongar,11241,0,4368_7778195_7039009,4368_276 -4358_80706,227,4368_8191,Ongar,3901,0,4368_7778195_7039025,4368_276 -4358_80706,227,4368_8192,Ongar,7804,0,4368_7778195_8818213,4368_276 -4358_80706,229,4368_8193,Ongar,16865,0,4368_7778195_7039026,4368_277 -4358_80706,228,4368_8194,Ongar,11042,0,4368_7778195_7039004,4368_278 -4358_80706,227,4368_8195,Ongar,6432,0,4368_7778195_7391652,4368_276 -4358_80706,228,4368_8196,Ongar,11097,0,4368_7778195_7039024,4368_276 -4358_80706,229,4368_8197,Ongar,17078,0,4368_7778195_7039004,4368_276 -4358_80706,227,4368_8198,Ongar,7797,0,4368_7778195_8818209,4368_276 -4358_80706,228,4368_8199,Ongar,11221,0,4368_7778195_7039012,4368_276 -4358_80760,228,4368_82,Shaw street,9450,0,4368_7778195_9001003,4368_1 -4358_80756,229,4368_820,Drimnagh Road,18569,0,4368_7778195_7122001,4368_28 -4358_80706,227,4368_8200,Ongar,3691,0,4368_7778195_7039029,4368_276 -4358_80706,229,4368_8201,Ongar,16945,0,4368_7778195_7039012,4368_276 -4358_80706,227,4368_8202,Ongar,6640,0,4368_7778195_7039008,4368_277 -4358_80706,227,4368_8203,Ongar,4040,0,4368_7778195_7039011,4368_276 -4358_80706,228,4368_8204,Ongar,11005,0,4368_7778195_7039005,4368_276 -4358_80706,227,4368_8205,Ongar,4030,0,4368_7778195_7039002,4368_276 -4358_80706,229,4368_8206,Ongar,16873,0,4368_7778195_7039019,4368_276 -4358_80706,227,4368_8207,Ongar,3989,0,4368_7778195_7039012,4368_277 -4358_80706,228,4368_8208,Ongar,11059,0,4368_7778195_7039026,4368_276 -4358_80706,227,4368_8209,Ongar,3777,0,4368_7778195_7039015,4368_276 -4358_80756,228,4368_821,Drimnagh Road,13119,0,4368_7778195_7122003,4368_28 -4358_80706,227,4368_8210,Ongar,7819,0,4368_7778195_8818220,4368_276 -4358_80706,227,4368_8211,Ongar,3721,0,4368_7778195_7039004,4368_276 -4358_80706,228,4368_8212,Ongar,11084,0,4368_7778195_7039031,4368_277 -4358_80706,229,4368_8213,Ongar,16900,0,4368_7778195_7039025,4368_278 -4358_80706,227,4368_8214,Ongar,3972,0,4368_7778195_7039044,4368_276 -4358_80706,227,4368_8215,Ongar,3800,0,4368_7778195_7039018,4368_276 -4358_80706,228,4368_8216,Ongar,10947,0,4368_7778195_7039029,4368_276 -4358_80706,229,4368_8217,Ongar,16894,0,4368_7778195_7039020,4368_276 -4358_80706,227,4368_8218,Ongar,3807,0,4368_7778195_7039020,4368_276 -4358_80706,228,4368_8219,Ongar,11123,0,4368_7778195_7039016,4368_276 -4358_80756,227,4368_822,Drimnagh Road,3617,0,4368_7778195_7122001,4368_28 -4358_80706,229,4368_8220,Ongar,16918,0,4368_7778195_7039001,4368_276 -4358_80706,227,4368_8221,Ongar,3858,0,4368_7778195_7039036,4368_277 -4358_80706,228,4368_8222,Ongar,11032,0,4368_7778195_7039002,4368_276 -4358_80706,227,4368_8223,Ongar,3870,0,4368_7778195_7039022,4368_276 -4358_80706,229,4368_8224,Ongar,17028,0,4368_7778195_7039003,4368_276 -4358_80706,228,4368_8225,Ongar,11190,0,4368_7778195_7039032,4368_276 -4358_80706,227,4368_8226,Ongar,3750,0,4368_7778195_7039023,4368_276 -4358_80706,228,4368_8227,Ongar,11163,0,4368_7778195_7039021,4368_276 -4358_80706,229,4368_8228,Ongar,17061,0,4368_7778195_7039018,4368_277 -4358_80706,227,4368_8229,Ongar,3879,0,4368_7778195_7039026,4368_278 -4358_80756,229,4368_823,Drimnagh Road,18539,0,4368_7778195_7122003,4368_28 -4358_80706,227,4368_8230,Ongar,3891,0,4368_7778195_7039028,4368_276 -4358_80706,228,4368_8231,Ongar,11093,0,4368_7778195_7039018,4368_276 -4358_80706,229,4368_8232,Ongar,16999,0,4368_7778195_7039023,4368_276 -4358_80706,227,4368_8233,Ongar,3818,0,4368_7778195_7039043,4368_276 -4358_80706,228,4368_8234,Ongar,11204,0,4368_7778195_7039003,4368_276 -4358_80706,227,4368_8235,Ongar,3771,0,4368_7778195_7039030,4368_276 -4358_80706,229,4368_8236,Ongar,16927,0,4368_7778195_7039008,4368_277 -4358_80706,228,4368_8237,Ongar,11215,0,4368_7778195_7039025,4368_276 -4358_80706,227,4368_8238,Ongar,3824,0,4368_7778195_7039039,4368_276 -4358_80706,229,4368_8239,Ongar,16957,0,4368_7778195_7039005,4368_276 -4358_80756,228,4368_824,Drimnagh Road,13152,0,4368_7778195_7122005,4368_28 -4358_80706,228,4368_8240,Ongar,11142,0,4368_7778195_7039027,4368_276 -4358_80706,227,4368_8241,Ongar,3714,0,4368_7778195_7039001,4368_276 -4358_80706,228,4368_8242,Ongar,11107,0,4368_7778195_7039013,4368_276 -4358_80706,227,4368_8243,Ongar,3836,0,4368_7778195_7039034,4368_277 -4358_80706,229,4368_8244,Ongar,16826,0,4368_7778195_7039015,4368_278 -4358_80706,228,4368_8245,Ongar,11014,0,4368_7778195_7039006,4368_276 -4358_80706,227,4368_8246,Ongar,3981,0,4368_7778195_7039003,4368_277 -4358_80706,229,4368_8247,Ongar,16908,0,4368_7778195_7039021,4368_278 -4358_80706,228,4368_8248,Ongar,11156,0,4368_7778195_7039020,4368_276 -4358_80706,227,4368_8249,Ongar,3761,0,4368_7778195_7039006,4368_277 -4358_80756,227,4368_825,Drimnagh Road,3398,0,4368_7778195_7122005,4368_28 -4358_80706,229,4368_8250,Ongar,16966,0,4368_7778195_7039007,4368_278 -4358_80706,229,4368_8251,Ongar,16867,0,4368_7778195_7039026,4368_276 -4358_80706,228,4368_8252,Ongar,11181,0,4368_7778195_7039030,4368_277 -4358_80706,227,4368_8253,Ongar,3794,0,4368_7778195_7039035,4368_278 -4358_80706,227,4368_8254,Ongar,4016,0,4368_7778195_7039037,4368_276 -4358_80706,228,4368_8255,Ongar,11044,0,4368_7778195_7039004,4368_277 -4358_80706,229,4368_8256,Ongar,17080,0,4368_7778195_7039004,4368_278 -4358_80706,228,4368_8257,Ongar,11099,0,4368_7778195_7039024,4368_276 -4358_80706,229,4368_8258,Ongar,16947,0,4368_7778195_7039012,4368_277 -4358_80706,227,4368_8259,Ongar,3903,0,4368_7778195_7039025,4368_278 -4358_80756,229,4368_826,Drimnagh Road,18560,0,4368_7778195_7122002,4368_28 -4358_80706,229,4368_8260,Ongar,16875,0,4368_7778195_7039019,4368_276 -4358_80706,227,4368_8261,Ongar,6642,0,4368_7778195_7039008,4368_277 -4358_80706,228,4368_8262,Ongar,11223,0,4368_7778195_7039012,4368_278 -4358_80706,228,4368_8263,Ongar,11061,0,4368_7778195_7039026,4368_276 -4358_80706,229,4368_8264,Ongar,16902,0,4368_7778195_7039025,4368_277 -4358_80706,227,4368_8265,Ongar,4032,0,4368_7778195_7039002,4368_278 -4358_80706,228,4368_8266,Ongar,11086,0,4368_7778195_7039031,4368_276 -4358_80706,229,4368_8267,Ongar,16896,0,4368_7778195_7039020,4368_277 -4358_80706,227,4368_8268,Ongar,3991,0,4368_7778195_7039012,4368_278 -4358_80706,228,4368_8269,Ongar,11125,0,4368_7778195_7039016,4368_276 -4358_80756,228,4368_827,Drimnagh Road,13161,0,4368_7778195_7122008,4368_28 -4358_80706,229,4368_8270,Ongar,16920,0,4368_7778195_7039001,4368_277 -4358_80706,227,4368_8271,Ongar,3860,0,4368_7778195_7039036,4368_278 -4358_80706,229,4368_8272,Ongar,17030,0,4368_7778195_7039003,4368_276 -4358_80706,227,4368_8273,Ongar,3872,0,4368_7778195_7039022,4368_277 -4358_80706,228,4368_8274,Ongar,11034,0,4368_7778195_7039002,4368_278 -4358_80706,229,4368_8275,Ongar,17063,0,4368_7778195_7039018,4368_276 -4358_80706,228,4368_8276,Ongar,11192,0,4368_7778195_7039032,4368_277 -4358_80706,227,4368_8277,Ongar,3881,0,4368_7778195_7039026,4368_278 -4358_80706,228,4368_8278,Ongar,11165,0,4368_7778195_7039021,4368_276 -4358_80706,229,4368_8279,Ongar,17001,0,4368_7778195_7039023,4368_277 -4358_80756,227,4368_828,Drimnagh Road,3507,0,4368_7778195_7122009,4368_28 -4358_80706,227,4368_8280,Ongar,3820,0,4368_7778195_7039043,4368_278 -4358_80706,227,4368_8281,Ongar,3826,0,4368_7778195_7039039,4368_276 -4358_80706,228,4368_8282,Ongar,11206,0,4368_7778195_7039003,4368_277 -4358_80706,229,4368_8283,Ongar,16959,0,4368_7778195_7039005,4368_278 -4358_80706,227,4368_8284,Ongar,3838,0,4368_7778195_7039034,4368_276 -4358_80706,228,4368_8285,Ongar,11144,0,4368_7778195_7039027,4368_277 -4358_80706,229,4368_8286,Ongar,16828,0,4368_7778195_7039015,4368_278 -4358_80706,228,4368_8287,Ongar,11016,0,4368_7778195_7039006,4368_276 -4358_80706,227,4368_8288,Ongar,3983,0,4368_7778195_7039003,4368_277 -4358_80706,229,4368_8289,Ongar,16910,0,4368_7778195_7039021,4368_278 -4358_80756,229,4368_829,Drimnagh Road,18579,0,4368_7778195_7122006,4368_28 -4358_80706,228,4368_8290,Ongar,11158,0,4368_7778195_7039020,4368_276 -4358_80706,229,4368_8291,Ongar,16869,0,4368_7778195_7039026,4368_277 -4358_80706,227,4368_8292,Ongar,3763,0,4368_7778195_7039006,4368_278 -4358_80706,227,4368_8293,Ongar,3850,0,4368_7778195_7039048,4368_276 -4358_80706,229,4368_8294,Ongar,17056,0,4368_7778195_7039027,4368_277 -4358_80706,228,4368_8295,Ongar,11183,0,4368_7778195_7039030,4368_278 -4358_80706,228,4368_8296,Ongar,11046,0,4368_7778195_7039034,4368_276 -4358_80706,229,4368_8297,Ongar,16949,0,4368_7778195_7039012,4368_277 -4358_80706,227,4368_8298,Ongar,3905,0,4368_7778195_7039025,4368_278 -4358_80706,229,4368_8299,Ongar,16877,0,4368_7778195_7039019,4368_276 -4358_80760,227,4368_83,Shaw street,1705,0,4368_7778195_9001008,4368_1 -4358_80756,228,4368_830,Drimnagh Road,13176,0,4368_7778195_7122007,4368_28 -4358_80706,228,4368_8300,Ongar,11225,0,4368_7778195_7039012,4368_277 -4358_80706,227,4368_8301,Ongar,4034,0,4368_7778195_7039002,4368_278 -4358_80706,228,4368_8302,Ongar,11127,0,4368_7778195_7039016,4368_276 -4358_80706,227,4368_8303,Ongar,3862,0,4368_7778195_7039036,4368_277 -4358_80706,229,4368_8304,Ongar,17052,0,4368_7778195_7039029,4368_278 -4358_80706,228,4368_8305,Ongar,11194,0,4368_7778195_7039032,4368_276 -4358_80706,227,4368_8306,Ongar,3883,0,4368_7778195_7039026,4368_277 -4358_80706,229,4368_8307,Ongar,16967,0,4368_7778195_7039031,4368_278 -4358_80706,228,4368_8308,Ongar,11175,0,4368_7778195_7039035,4368_276 -4358_80706,227,4368_8309,Ongar,3828,0,4368_7778195_7039039,4368_277 -4358_80756,227,4368_831,Drimnagh Road,3587,0,4368_7778195_7122012,4368_28 -4358_80706,229,4368_8310,Ongar,16830,0,4368_7778195_7039015,4368_278 -4358_80706,227,4368_8311,Ongar,3852,0,4368_7778195_7039048,4368_276 -4358_80706,228,4368_8312,Ongar,11018,0,4368_7778195_7039006,4368_277 -4358_80706,229,4368_8313,Ongar,16834,0,4368_7778195_7039028,4368_278 -4358_80706,228,4368_8314,Ongar,11244,0,4368_7778195_7039036,4368_276 -4358_80706,229,4368_8315,Ongar,17013,0,4368_7778195_7039030,4368_277 -4358_80706,227,4368_8316,Ongar,3907,0,4368_7778195_7039025,4368_278 -4358_80706,229,4368_8317,Ongar,16971,0,4368_7778195_7039032,4368_276 -4358_80706,227,4368_8318,Ongar,3913,0,4368_7778195_7039049,4368_277 -4358_80706,228,4368_8319,Ongar,11227,0,4368_7778195_7039012,4368_278 -4358_80756,229,4368_832,Drimnagh Road,18602,0,4368_7778195_7122008,4368_28 -4358_80706,228,4368_8320,Ongar,11129,0,4368_7778195_7039016,4368_276 -4358_80706,227,4368_8321,Ongar,3864,0,4368_7778195_7039036,4368_277 -4358_80706,229,4368_8322,Ongar,17054,0,4368_7778195_7039029,4368_278 -4358_80706,228,4368_8323,Ongar,11196,0,4368_7778195_7039032,4368_276 -4358_80706,227,4368_8324,Ongar,3885,0,4368_7778195_7039026,4368_277 -4358_80706,229,4368_8325,Ongar,16969,0,4368_7778195_7039031,4368_278 -4358_80706,228,4368_8326,Ongar,11177,0,4368_7778195_7039035,4368_276 -4358_80706,227,4368_8327,Ongar,3830,0,4368_7778195_7039039,4368_277 -4358_80706,229,4368_8328,Ongar,16832,0,4368_7778195_7039015,4368_278 -4358_80706,227,4368_8329,UCD,3707,1,4368_7778195_7039001,4368_279 -4358_80756,228,4368_833,Drimnagh Road,13188,0,4368_7778195_7122002,4368_28 -4358_80706,229,4368_8330,UCD,16911,1,4368_7778195_7039001,4368_280 -4358_80706,228,4368_8331,UCD,11025,1,4368_7778195_7039002,4368_281 -4358_80706,227,4368_8332,UCD,3974,1,4368_7778195_7039003,4368_279 -4358_80706,227,4368_8333,UCD,7866,1,4368_7778195_8828106,4368_279 -4358_80706,229,4368_8334,UCD,17021,1,4368_7778195_7039003,4368_280 -4358_80706,228,4368_8335,UCD,11197,1,4368_7778195_7039003,4368_281 -4358_80706,227,4368_8336,UCD,3754,1,4368_7778195_7039006,4368_279 -4358_80706,227,4368_8337,UCD,4017,1,4368_7778195_7039007,4368_279 -4358_80706,228,4368_8338,UCD,11007,1,4368_7778195_7039006,4368_279 -4358_80706,229,4368_8339,UCD,16950,1,4368_7778195_7039005,4368_280 -4358_80756,227,4368_834,Drimnagh Road,3579,0,4368_7778195_7122014,4368_28 -4358_80706,227,4368_8340,UCD,6635,1,4368_7778195_7039008,4368_281 -4358_80706,227,4368_8341,UCD,7875,1,4368_7778195_7039515,4368_279 -4358_80706,227,4368_8342,UCD,4035,1,4368_7778195_7039011,4368_279 -4358_80706,228,4368_8343,UCD,11230,1,4368_7778195_7039001,4368_279 -4358_80706,227,4368_8344,UCD,4025,1,4368_7778195_7039002,4368_279 -4358_80706,228,4368_8345,UCD,11246,1,4368_7778195_7039008,4368_279 -4358_80706,227,4368_8346,UCD,3984,1,4368_7778195_7039012,4368_280 -4358_80706,229,4368_8347,UCD,16879,1,4368_7778195_7039002,4368_281 -4358_80706,227,4368_8348,UCD,3772,1,4368_7778195_7039015,4368_279 -4358_80706,228,4368_8349,UCD,11236,1,4368_7778195_7039009,4368_279 -4358_80756,229,4368_835,Drimnagh Road,18528,0,4368_7778195_7122004,4368_28 -4358_80706,227,4368_8350,UCD,3716,1,4368_7778195_7039004,4368_279 -4358_80706,228,4368_8351,UCD,11037,1,4368_7778195_7039004,4368_279 -4358_80706,227,4368_8352,UCD,3795,1,4368_7778195_7039018,4368_280 -4358_80706,229,4368_8353,UCD,17073,1,4368_7778195_7039004,4368_281 -4358_80706,227,4368_8354,UCD,3802,1,4368_7778195_7039020,4368_279 -4358_80706,228,4368_8355,UCD,11216,1,4368_7778195_7039012,4368_279 -4358_80706,227,4368_8356,UCD,3865,1,4368_7778195_7039022,4368_279 -4358_80706,228,4368_8357,UCD,11000,1,4368_7778195_7039005,4368_279 -4358_80706,227,4368_8358,UCD,3745,1,4368_7778195_7039023,4368_280 -4358_80706,229,4368_8359,UCD,16887,1,4368_7778195_7039006,4368_281 -4358_80756,228,4368_836,Drimnagh Road,13132,0,4368_7778195_7122004,4368_28 -4358_80706,227,4368_8360,UCD,3753,1,4368_7778195_7039009,4368_279 -4358_80706,227,4368_8361,UCD,3874,1,4368_7778195_7039026,4368_279 -4358_80706,228,4368_8362,UCD,11118,1,4368_7778195_7039016,4368_279 -4358_80706,227,4368_8363,UCD,7800,1,4368_7778195_8818110,4368_280 -4358_80706,227,4368_8364,UCD,3886,1,4368_7778195_7039028,4368_279 -4358_80706,227,4368_8365,UCD,4000,1,4368_7778195_7039031,4368_279 -4358_80706,229,4368_8366,UCD,16913,1,4368_7778195_7039001,4368_279 -4358_80706,227,4368_8367,UCD,3766,1,4368_7778195_7039030,4368_280 -4358_80706,228,4368_8368,UCD,11027,1,4368_7778195_7039002,4368_281 -4358_80706,227,4368_8369,UCD,4001,1,4368_7778195_7039033,4368_279 -4358_80756,227,4368_837,Drimnagh Road,3426,0,4368_7778195_7122004,4368_28 -4358_80706,227,4368_8370,UCD,3709,1,4368_7778195_7039001,4368_279 -4358_80706,228,4368_8371,UCD,11088,1,4368_7778195_7039018,4368_279 -4358_80706,227,4368_8372,UCD,7810,1,4368_7778195_8818116,4368_280 -4358_80706,229,4368_8373,UCD,17023,1,4368_7778195_7039003,4368_279 -4358_80706,227,4368_8374,UCD,7820,1,4368_7778195_8818121,4368_280 -4358_80706,228,4368_8375,UCD,11199,1,4368_7778195_7039003,4368_279 -4358_80706,227,4368_8376,UCD,3831,1,4368_7778195_7039034,4368_280 -4358_80706,227,4368_8377,UCD,7835,1,4368_7778195_8818126,4368_279 -4358_80706,229,4368_8378,UCD,16922,1,4368_7778195_7039008,4368_280 -4358_80706,228,4368_8379,UCD,11102,1,4368_7778195_7039013,4368_279 -4358_80756,229,4368_838,Drimnagh Road,18589,0,4368_7778195_7122007,4368_28 -4358_80706,227,4368_8380,UCD,3976,1,4368_7778195_7039003,4368_279 -4358_80706,227,4368_8381,UCD,3756,1,4368_7778195_7039006,4368_279 -4358_80706,228,4368_8382,UCD,11009,1,4368_7778195_7039006,4368_280 -4358_80706,229,4368_8383,UCD,16952,1,4368_7778195_7039005,4368_281 -4358_80706,227,4368_8384,UCD,3789,1,4368_7778195_7039035,4368_279 -4358_80706,228,4368_8385,UCD,11232,1,4368_7778195_7039001,4368_279 -4358_80706,227,4368_8386,UCD,4011,1,4368_7778195_7039037,4368_279 -4358_80706,229,4368_8387,UCD,16821,1,4368_7778195_7039015,4368_280 -4358_80706,228,4368_8388,UCD,11151,1,4368_7778195_7039020,4368_279 -4358_80706,227,4368_8389,UCD,4019,1,4368_7778195_7039007,4368_279 -4358_80756,228,4368_839,Drimnagh Road,13144,0,4368_7778195_7122006,4368_28 -4358_80706,228,4368_8390,UCD,11248,1,4368_7778195_7039008,4368_279 -4358_80706,229,4368_8391,UCD,16881,1,4368_7778195_7039002,4368_279 -4358_80706,227,4368_8392,UCD,3898,1,4368_7778195_7039025,4368_280 -4358_80706,228,4368_8393,UCD,11238,1,4368_7778195_7039009,4368_279 -4358_80706,227,4368_8394,UCD,3688,1,4368_7778195_7039029,4368_279 -4358_80706,228,4368_8395,UCD,11039,1,4368_7778195_7039004,4368_279 -4358_80706,227,4368_8396,UCD,6637,1,4368_7778195_7039008,4368_280 -4358_80706,229,4368_8397,UCD,16961,1,4368_7778195_7039007,4368_281 -4358_80706,227,4368_8398,UCD,4037,1,4368_7778195_7039011,4368_279 -4358_80706,228,4368_8399,UCD,11094,1,4368_7778195_7039024,4368_279 -4358_80760,229,4368_84,Shaw street,15691,0,4368_7778195_9001001,4368_1 -4358_80756,227,4368_840,Drimnagh Road,3443,0,4368_7778195_7122006,4368_28 -4358_80706,229,4368_8400,UCD,17075,1,4368_7778195_7039004,4368_279 -4358_80706,227,4368_8401,UCD,4027,1,4368_7778195_7039002,4368_279 -4358_80706,228,4368_8402,UCD,11218,1,4368_7778195_7039012,4368_279 -4358_80706,229,4368_8403,UCD,16942,1,4368_7778195_7039012,4368_279 -4358_80706,227,4368_8404,UCD,3986,1,4368_7778195_7039012,4368_280 -4358_80706,228,4368_8405,UCD,11002,1,4368_7778195_7039005,4368_279 -4358_80706,227,4368_8406,UCD,3774,1,4368_7778195_7039015,4368_279 -4358_80706,229,4368_8407,UCD,16870,1,4368_7778195_7039019,4368_279 -4358_80706,228,4368_8408,UCD,11056,1,4368_7778195_7039026,4368_279 -4358_80706,227,4368_8409,UCD,3718,1,4368_7778195_7039004,4368_279 -4358_80756,229,4368_841,Drimnagh Road,18552,0,4368_7778195_7122005,4368_28 -4358_80706,228,4368_8410,UCD,11120,1,4368_7778195_7039016,4368_279 -4358_80706,227,4368_8411,UCD,3797,1,4368_7778195_7039018,4368_280 -4358_80706,229,4368_8412,UCD,16889,1,4368_7778195_7039006,4368_281 -4358_80706,227,4368_8413,UCD,3804,1,4368_7778195_7039020,4368_279 -4358_80706,228,4368_8414,UCD,11029,1,4368_7778195_7039002,4368_279 -4358_80706,229,4368_8415,UCD,16891,1,4368_7778195_7039020,4368_279 -4358_80706,227,4368_8416,UCD,3855,1,4368_7778195_7039036,4368_279 -4358_80706,228,4368_8417,UCD,11160,1,4368_7778195_7039021,4368_279 -4358_80706,229,4368_8418,UCD,16915,1,4368_7778195_7039001,4368_279 -4358_80706,227,4368_8419,UCD,3867,1,4368_7778195_7039022,4368_280 -4358_80756,228,4368_842,Drimnagh Road,13168,0,4368_7778195_7122009,4368_28 -4358_80706,228,4368_8420,UCD,11090,1,4368_7778195_7039018,4368_279 -4358_80706,227,4368_8421,UCD,3747,1,4368_7778195_7039023,4368_279 -4358_80706,229,4368_8422,UCD,17025,1,4368_7778195_7039003,4368_279 -4358_80706,228,4368_8423,UCD,11201,1,4368_7778195_7039003,4368_279 -4358_80706,227,4368_8424,UCD,3876,1,4368_7778195_7039026,4368_279 -4358_80706,228,4368_8425,UCD,11208,1,4368_7778195_7039023,4368_279 -4358_80706,229,4368_8426,UCD,17058,1,4368_7778195_7039018,4368_280 -4358_80706,227,4368_8427,UCD,3888,1,4368_7778195_7039028,4368_281 -4358_80706,227,4368_8428,UCD,3768,1,4368_7778195_7039030,4368_279 -4358_80706,228,4368_8429,UCD,11212,1,4368_7778195_7039025,4368_279 -4358_80756,227,4368_843,Drimnagh Road,3602,0,4368_7778195_7122008,4368_28 -4358_80706,229,4368_8430,UCD,16996,1,4368_7778195_7039023,4368_279 -4358_80706,227,4368_8431,UCD,3821,1,4368_7778195_7039039,4368_279 -4358_80706,228,4368_8432,UCD,11139,1,4368_7778195_7039027,4368_279 -4358_80706,227,4368_8433,UCD,3711,1,4368_7778195_7039001,4368_279 -4358_80706,229,4368_8434,UCD,16924,1,4368_7778195_7039008,4368_280 -4358_80706,228,4368_8435,UCD,11104,1,4368_7778195_7039013,4368_279 -4358_80706,227,4368_8436,UCD,3833,1,4368_7778195_7039034,4368_279 -4358_80706,229,4368_8437,UCD,16954,1,4368_7778195_7039005,4368_279 -4358_80706,228,4368_8438,UCD,11011,1,4368_7778195_7039006,4368_279 -4358_80706,227,4368_8439,UCD,3978,1,4368_7778195_7039003,4368_279 -4358_80756,227,4368_844,Drimnagh Road,3560,0,4368_7778195_7122017,4368_28 -4358_80706,228,4368_8440,UCD,11234,1,4368_7778195_7039001,4368_279 -4358_80706,227,4368_8441,UCD,3758,1,4368_7778195_7039006,4368_280 -4358_80706,229,4368_8442,UCD,16823,1,4368_7778195_7039015,4368_281 -4358_80706,227,4368_8443,UCD,3791,1,4368_7778195_7039035,4368_279 -4358_80706,228,4368_8444,UCD,11153,1,4368_7778195_7039020,4368_279 -4358_80706,229,4368_8445,UCD,16905,1,4368_7778195_7039021,4368_279 -4358_80706,227,4368_8446,UCD,4013,1,4368_7778195_7039037,4368_279 -4358_80706,228,4368_8447,UCD,11178,1,4368_7778195_7039030,4368_279 -4358_80706,227,4368_8448,UCD,4021,1,4368_7778195_7039007,4368_279 -4358_80706,229,4368_8449,UCD,16883,1,4368_7778195_7039002,4368_280 -4358_80756,229,4368_845,Drimnagh Road,18598,0,4368_7778195_7122009,4368_29 -4358_80706,228,4368_8450,UCD,11250,1,4368_7778195_7039008,4368_279 -4358_80706,227,4368_8451,UCD,4050,1,4368_7778195_7039041,4368_279 -4358_80706,229,4368_8452,UCD,16963,1,4368_7778195_7039007,4368_279 -4358_80706,228,4368_8453,UCD,11240,1,4368_7778195_7039009,4368_279 -4358_80706,227,4368_8454,UCD,3900,1,4368_7778195_7039025,4368_279 -4358_80706,229,4368_8455,UCD,16864,1,4368_7778195_7039026,4368_279 -4358_80706,228,4368_8456,UCD,11041,1,4368_7778195_7039004,4368_280 -4358_80706,227,4368_8457,UCD,3690,1,4368_7778195_7039029,4368_281 -4358_80706,227,4368_8458,UCD,6639,1,4368_7778195_7039008,4368_279 -4358_80706,228,4368_8459,UCD,11096,1,4368_7778195_7039024,4368_279 -4358_80756,228,4368_846,Drimnagh Road,13105,0,4368_7778195_7122001,4368_28 -4358_80706,229,4368_8460,UCD,17077,1,4368_7778195_7039004,4368_279 -4358_80706,227,4368_8461,UCD,4039,1,4368_7778195_7039011,4368_279 -4358_80706,228,4368_8462,UCD,11220,1,4368_7778195_7039012,4368_279 -4358_80706,229,4368_8463,UCD,16944,1,4368_7778195_7039012,4368_279 -4358_80706,227,4368_8464,UCD,4029,1,4368_7778195_7039002,4368_280 -4358_80706,228,4368_8465,UCD,11004,1,4368_7778195_7039005,4368_279 -4358_80706,227,4368_8466,UCD,3988,1,4368_7778195_7039012,4368_279 -4358_80706,229,4368_8467,UCD,16872,1,4368_7778195_7039019,4368_279 -4358_80706,228,4368_8468,UCD,11058,1,4368_7778195_7039026,4368_279 -4358_80706,227,4368_8469,UCD,3776,1,4368_7778195_7039015,4368_279 -4358_80756,227,4368_847,Drimnagh Road,3621,0,4368_7778195_7122019,4368_28 -4358_80706,227,4368_8470,UCD,3720,1,4368_7778195_7039004,4368_279 -4358_80706,228,4368_8471,UCD,11083,1,4368_7778195_7039031,4368_280 -4358_80706,229,4368_8472,UCD,16899,1,4368_7778195_7039025,4368_281 -4358_80706,227,4368_8473,UCD,3799,1,4368_7778195_7039018,4368_279 -4358_80706,228,4368_8474,UCD,10946,1,4368_7778195_7039029,4368_279 -4358_80706,229,4368_8475,UCD,16893,1,4368_7778195_7039020,4368_279 -4358_80706,227,4368_8476,UCD,3806,1,4368_7778195_7039020,4368_279 -4358_80706,228,4368_8477,UCD,11122,1,4368_7778195_7039016,4368_279 -4358_80706,229,4368_8478,UCD,16917,1,4368_7778195_7039001,4368_279 -4358_80706,227,4368_8479,UCD,3857,1,4368_7778195_7039036,4368_280 -4358_80756,229,4368_848,Drimnagh Road,18571,0,4368_7778195_7122001,4368_28 -4358_80706,228,4368_8480,UCD,11031,1,4368_7778195_7039002,4368_279 -4358_80706,227,4368_8481,UCD,3869,1,4368_7778195_7039022,4368_279 -4358_80706,229,4368_8482,UCD,17027,1,4368_7778195_7039003,4368_279 -4358_80706,228,4368_8483,UCD,11162,1,4368_7778195_7039021,4368_279 -4358_80706,227,4368_8484,UCD,3749,1,4368_7778195_7039023,4368_279 -4358_80706,228,4368_8485,UCD,11092,1,4368_7778195_7039018,4368_279 -4358_80706,229,4368_8486,UCD,17060,1,4368_7778195_7039018,4368_280 -4358_80706,227,4368_8487,UCD,3878,1,4368_7778195_7039026,4368_281 -4358_80706,227,4368_8488,UCD,3890,1,4368_7778195_7039028,4368_279 -4358_80706,228,4368_8489,UCD,11203,1,4368_7778195_7039003,4368_279 -4358_80756,227,4368_849,Drimnagh Road,3611,0,4368_7778195_7122011,4368_28 -4358_80706,229,4368_8490,UCD,16998,1,4368_7778195_7039023,4368_279 -4358_80706,227,4368_8491,UCD,3817,1,4368_7778195_7039043,4368_279 -4358_80706,228,4368_8492,UCD,11210,1,4368_7778195_7039023,4368_279 -4358_80706,227,4368_8493,UCD,3770,1,4368_7778195_7039030,4368_279 -4358_80706,229,4368_8494,UCD,16926,1,4368_7778195_7039008,4368_280 -4358_80706,228,4368_8495,UCD,11214,1,4368_7778195_7039025,4368_279 -4358_80706,227,4368_8496,UCD,3823,1,4368_7778195_7039039,4368_279 -4358_80706,229,4368_8497,UCD,16956,1,4368_7778195_7039005,4368_279 -4358_80706,228,4368_8498,UCD,11141,1,4368_7778195_7039027,4368_279 -4358_80706,227,4368_8499,UCD,3713,1,4368_7778195_7039001,4368_279 -4358_80760,227,4368_85,Shaw street,1823,0,4368_7778195_9001001,4368_1 -4358_80756,228,4368_850,Drimnagh Road,13121,0,4368_7778195_7122003,4368_28 -4358_80706,228,4368_8500,UCD,11106,1,4368_7778195_7039013,4368_279 -4358_80706,227,4368_8501,UCD,3835,1,4368_7778195_7039034,4368_280 -4358_80706,229,4368_8502,UCD,16825,1,4368_7778195_7039015,4368_281 -4358_80706,227,4368_8503,UCD,3973,1,4368_7778195_7039045,4368_279 -4358_80706,228,4368_8504,UCD,11013,1,4368_7778195_7039006,4368_279 -4358_80706,229,4368_8505,UCD,16907,1,4368_7778195_7039021,4368_279 -4358_80706,227,4368_8506,UCD,3980,1,4368_7778195_7039003,4368_279 -4358_80706,228,4368_8507,UCD,11155,1,4368_7778195_7039020,4368_279 -4358_80706,227,4368_8508,UCD,3760,1,4368_7778195_7039006,4368_279 -4358_80706,229,4368_8509,UCD,16885,1,4368_7778195_7039002,4368_280 -4358_80756,227,4368_851,Drimnagh Road,3619,0,4368_7778195_7122001,4368_28 -4358_80706,228,4368_8510,UCD,11180,1,4368_7778195_7039030,4368_279 -4358_80706,227,4368_8511,UCD,3793,1,4368_7778195_7039035,4368_279 -4358_80706,229,4368_8512,UCD,16965,1,4368_7778195_7039007,4368_279 -4358_80706,228,4368_8513,UCD,11252,1,4368_7778195_7039008,4368_279 -4358_80706,227,4368_8514,UCD,4015,1,4368_7778195_7039037,4368_279 -4358_80706,227,4368_8515,UCD,4023,1,4368_7778195_7039007,4368_279 -4358_80706,229,4368_8516,UCD,16866,1,4368_7778195_7039026,4368_280 -4358_80706,228,4368_8517,UCD,11242,1,4368_7778195_7039009,4368_281 -4358_80706,228,4368_8518,UCD,11043,1,4368_7778195_7039004,4368_279 -4358_80706,227,4368_8519,UCD,4052,1,4368_7778195_7039041,4368_279 -4358_80756,229,4368_852,Drimnagh Road,18541,0,4368_7778195_7122003,4368_28 -4358_80706,229,4368_8520,UCD,17079,1,4368_7778195_7039004,4368_280 -4358_80706,228,4368_8521,UCD,11098,1,4368_7778195_7039024,4368_279 -4358_80706,229,4368_8522,UCD,16946,1,4368_7778195_7039012,4368_279 -4358_80706,227,4368_8523,UCD,3902,1,4368_7778195_7039025,4368_280 -4358_80706,228,4368_8524,UCD,11222,1,4368_7778195_7039012,4368_279 -4358_80706,229,4368_8525,UCD,16874,1,4368_7778195_7039019,4368_279 -4358_80706,227,4368_8526,UCD,6641,1,4368_7778195_7039008,4368_280 -4358_80706,228,4368_8527,UCD,11006,1,4368_7778195_7039005,4368_279 -4358_80706,228,4368_8528,UCD,11060,1,4368_7778195_7039026,4368_279 -4358_80706,229,4368_8529,UCD,16901,1,4368_7778195_7039025,4368_280 -4358_80756,228,4368_853,Drimnagh Road,13154,0,4368_7778195_7122005,4368_28 -4358_80706,227,4368_8530,UCD,4031,1,4368_7778195_7039002,4368_281 -4358_80706,228,4368_8531,UCD,11085,1,4368_7778195_7039031,4368_279 -4358_80706,229,4368_8532,UCD,16895,1,4368_7778195_7039020,4368_280 -4358_80706,227,4368_8533,UCD,3990,1,4368_7778195_7039012,4368_281 -4358_80706,228,4368_8534,UCD,11124,1,4368_7778195_7039016,4368_279 -4358_80706,229,4368_8535,UCD,16919,1,4368_7778195_7039001,4368_280 -4358_80706,227,4368_8536,UCD,3722,1,4368_7778195_7039004,4368_281 -4358_80706,229,4368_8537,UCD,17029,1,4368_7778195_7039003,4368_279 -4358_80706,228,4368_8538,UCD,11033,1,4368_7778195_7039002,4368_280 -4358_80706,227,4368_8539,UCD,3859,1,4368_7778195_7039036,4368_281 -4358_80756,227,4368_854,Drimnagh Road,3538,0,4368_7778195_7122020,4368_28 -4358_80706,229,4368_8540,UCD,17062,1,4368_7778195_7039018,4368_279 -4358_80706,228,4368_8541,UCD,11191,1,4368_7778195_7039032,4368_280 -4358_80706,227,4368_8542,UCD,3871,1,4368_7778195_7039022,4368_281 -4358_80706,228,4368_8543,UCD,11164,1,4368_7778195_7039021,4368_279 -4358_80706,229,4368_8544,UCD,17000,1,4368_7778195_7039023,4368_280 -4358_80706,227,4368_8545,UCD,3880,1,4368_7778195_7039026,4368_281 -4358_80706,227,4368_8546,UCD,3819,1,4368_7778195_7039043,4368_279 -4358_80706,228,4368_8547,UCD,11205,1,4368_7778195_7039003,4368_280 -4358_80706,229,4368_8548,UCD,16928,1,4368_7778195_7039008,4368_281 -4358_80706,227,4368_8549,UCD,3825,1,4368_7778195_7039039,4368_279 -4358_80756,227,4368_855,Drimnagh Road,3400,0,4368_7778195_7122005,4368_28 -4358_80706,229,4368_8550,UCD,16958,1,4368_7778195_7039005,4368_280 -4358_80706,228,4368_8551,UCD,11143,1,4368_7778195_7039027,4368_281 -4358_80706,228,4368_8552,UCD,11108,1,4368_7778195_7039013,4368_279 -4358_80706,227,4368_8553,UCD,3837,1,4368_7778195_7039034,4368_280 -4358_80706,229,4368_8554,UCD,16827,1,4368_7778195_7039015,4368_281 -4358_80706,228,4368_8555,UCD,11015,1,4368_7778195_7039006,4368_279 -4358_80706,227,4368_8556,UCD,3982,1,4368_7778195_7039003,4368_280 -4358_80706,229,4368_8557,UCD,16909,1,4368_7778195_7039021,4368_281 -4358_80706,228,4368_8558,UCD,11157,1,4368_7778195_7039020,4368_279 -4358_80706,229,4368_8559,UCD,16868,1,4368_7778195_7039026,4368_280 -4358_80756,229,4368_856,Drimnagh Road,18562,0,4368_7778195_7122002,4368_29 -4358_80706,227,4368_8560,UCD,3762,1,4368_7778195_7039006,4368_281 -4358_80706,227,4368_8561,UCD,3849,1,4368_7778195_7039048,4368_279 -4358_80706,229,4368_8562,UCD,17055,1,4368_7778195_7039027,4368_280 -4358_80706,228,4368_8563,UCD,11182,1,4368_7778195_7039030,4368_281 -4358_80706,228,4368_8564,UCD,11100,1,4368_7778195_7039024,4368_279 -4358_80706,229,4368_8565,UCD,16948,1,4368_7778195_7039012,4368_280 -4358_80706,227,4368_8566,UCD,3904,1,4368_7778195_7039025,4368_281 -4358_80706,229,4368_8567,UCD,16876,1,4368_7778195_7039019,4368_279 -4358_80706,228,4368_8568,UCD,11045,1,4368_7778195_7039034,4368_280 -4358_80706,227,4368_8569,UCD,6643,1,4368_7778195_7039008,4368_281 -4358_80756,228,4368_857,Drimnagh Road,13163,0,4368_7778195_7122008,4368_28 -4358_80706,229,4368_8570,UCD,16903,1,4368_7778195_7039025,4368_279 -4358_80706,228,4368_8571,UCD,11224,1,4368_7778195_7039012,4368_280 -4358_80706,227,4368_8572,UCD,4033,1,4368_7778195_7039002,4368_281 -4358_80706,228,4368_8573,UCD,11087,1,4368_7778195_7039031,4368_279 -4358_80706,229,4368_8574,UCD,16897,1,4368_7778195_7039020,4368_280 -4358_80706,227,4368_8575,UCD,3992,1,4368_7778195_7039012,4368_281 -4358_80706,228,4368_8576,UCD,11126,1,4368_7778195_7039016,4368_279 -4358_80706,229,4368_8577,UCD,16921,1,4368_7778195_7039001,4368_280 -4358_80706,227,4368_8578,UCD,3861,1,4368_7778195_7039036,4368_281 -4358_80706,229,4368_8579,UCD,17031,1,4368_7778195_7039003,4368_279 -4358_80756,227,4368_858,Drimnagh Road,3591,0,4368_7778195_7122022,4368_28 -4358_80706,227,4368_8580,UCD,3873,1,4368_7778195_7039022,4368_280 -4358_80706,228,4368_8581,UCD,11035,1,4368_7778195_7039002,4368_281 -4358_80706,229,4368_8582,UCD,17002,1,4368_7778195_7039023,4368_279 -4358_80706,228,4368_8583,UCD,11193,1,4368_7778195_7039032,4368_280 -4358_80706,227,4368_8584,UCD,3882,1,4368_7778195_7039026,4368_281 -4358_80706,228,4368_8585,UCD,11174,1,4368_7778195_7039035,4368_279 -4358_80706,227,4368_8586,UCD,3827,1,4368_7778195_7039039,4368_280 -4358_80706,229,4368_8587,UCD,16829,1,4368_7778195_7039015,4368_281 -4358_80706,227,4368_8588,UCD,3851,1,4368_7778195_7039048,4368_279 -4358_80706,228,4368_8589,UCD,11017,1,4368_7778195_7039006,4368_280 -4358_80756,229,4368_859,Drimnagh Road,18581,0,4368_7778195_7122006,4368_28 -4358_80706,229,4368_8590,UCD,16833,1,4368_7778195_7039028,4368_281 -4358_80706,228,4368_8591,UCD,11243,1,4368_7778195_7039036,4368_279 -4358_80706,229,4368_8592,UCD,17012,1,4368_7778195_7039030,4368_280 -4358_80706,227,4368_8593,UCD,3906,1,4368_7778195_7039025,4368_281 -4358_80706,229,4368_8594,UCD,16970,1,4368_7778195_7039032,4368_279 -4358_80706,227,4368_8595,UCD,3912,1,4368_7778195_7039049,4368_280 -4358_80706,228,4368_8596,UCD,11226,1,4368_7778195_7039012,4368_281 -4358_80706,228,4368_8597,UCD,11128,1,4368_7778195_7039016,4368_279 -4358_80706,227,4368_8598,UCD,3863,1,4368_7778195_7039036,4368_280 -4358_80706,229,4368_8599,UCD,17053,1,4368_7778195_7039029,4368_281 -4358_80760,228,4368_86,Shaw street,9488,0,4368_7778195_9001004,4368_1 -4358_80756,227,4368_860,Drimnagh Road,3509,0,4368_7778195_7122009,4368_28 -4358_80706,228,4368_8600,UCD,11195,1,4368_7778195_7039032,4368_279 -4358_80706,227,4368_8601,UCD,3884,1,4368_7778195_7039026,4368_280 -4358_80706,229,4368_8602,UCD,16968,1,4368_7778195_7039031,4368_281 -4358_80706,228,4368_8603,UCD,11176,1,4368_7778195_7039035,4368_279 -4358_80706,227,4368_8604,UCD,3829,1,4368_7778195_7039039,4368_280 -4358_80706,229,4368_8605,UCD,16831,1,4368_7778195_7039015,4368_281 -4358_80706,227,4368_8606,UCD,3853,1,4368_7778195_7039048,4368_279 -4358_80706,228,4368_8607,UCD,11019,1,4368_7778195_7039006,4368_280 -4358_80706,229,4368_8608,UCD,16835,1,4368_7778195_7039028,4368_279 -4358_80706,228,4368_8609,UCD,11245,1,4368_7778195_7039036,4368_279 -4358_80756,228,4368_861,Drimnagh Road,13178,0,4368_7778195_7122007,4368_28 -4358_80706,229,4368_8610,UCD,17014,1,4368_7778195_7039030,4368_280 -4358_80706,227,4368_8611,UCD,3908,1,4368_7778195_7039025,4368_281 -4358_80706,229,4368_8612,UCD,16972,1,4368_7778195_7039032,4368_279 -4358_80706,227,4368_8613,UCD,3914,1,4368_7778195_7039049,4368_280 -4358_80706,228,4368_8614,UCD,11228,1,4368_7778195_7039012,4368_281 -4358_80704,227,4368_8615,Ongar,7815,0,4368_7778195_8818218,4368_282 -4358_80704,227,4368_8616,Ongar,6437,0,4368_7778195_7037655,4368_282 -4358_80704,227,4368_8617,Burlington Road,7814,1,4368_7778195_8818118,4368_283 -4358_80704,227,4368_8618,Burlington Road,6436,1,4368_7778195_7038555,4368_283 -4358_80681,227,4368_8619,Monkstown Ave,6847,0,4368_7778195_8004002,4368_284 -4358_80756,227,4368_862,Drimnagh Road,3589,0,4368_7778195_7122012,4368_28 -4358_80681,227,4368_8620,Monkstown Ave,6522,0,4368_7778195_8004005,4368_284 -4358_80681,227,4368_8621,Monkstown Ave,6530,0,4368_7778195_8004007,4368_284 -4358_80681,228,4368_8622,Monkstown Ave,13512,0,4368_7778195_8004003,4368_285 -4358_80681,227,4368_8623,Monkstown Ave,6910,0,4368_7778195_8004008,4368_284 -4358_80681,228,4368_8624,Monkstown Ave,13065,0,4368_7778195_8004005,4368_284 -4358_80681,227,4368_8625,Monkstown Ave,6918,0,4368_7778195_8004009,4368_285 -4358_80681,227,4368_8626,Monkstown Ave,6932,0,4368_7778195_8004011,4368_284 -4358_80681,227,4368_8627,Monkstown Ave,6940,0,4368_7778195_8004012,4368_284 -4358_80681,228,4368_8628,Monkstown Ave,13032,0,4368_7778195_8004001,4368_285 -4358_80681,227,4368_8629,Monkstown Ave,6840,0,4368_7778195_8004001,4368_284 -4358_80756,229,4368_863,Drimnagh Road,18604,0,4368_7778195_7122008,4368_28 -4358_80681,228,4368_8630,Monkstown Ave,13041,0,4368_7778195_8004008,4368_284 -4358_80681,227,4368_8631,Monkstown Ave,6851,0,4368_7778195_8004003,4368_284 -4358_80681,228,4368_8632,Monkstown Ave,13053,0,4368_7778195_8004009,4368_284 -4358_80681,227,4368_8633,Monkstown Ave,6952,0,4368_7778195_8004014,4368_284 -4358_80681,228,4368_8634,Monkstown Ave,13511,0,4368_7778195_8004002,4368_284 -4358_80681,227,4368_8635,Monkstown Ave,6863,0,4368_7778195_8004004,4368_284 -4358_80681,228,4368_8636,Monkstown Ave,13533,0,4368_7778195_8004010,4368_284 -4358_80681,227,4368_8637,Monkstown Ave,6480,0,4368_7778195_8004006,4368_285 -4358_80681,229,4368_8638,Monkstown Ave,18469,0,4368_7778195_8004003,4368_287 -4358_80681,227,4368_8639,Monkstown Ave,6487,0,4368_7778195_8004016,4368_284 -4358_80756,228,4368_864,Drimnagh Road,13190,0,4368_7778195_7122002,4368_28 -4358_80681,228,4368_8640,Monkstown Ave,13514,0,4368_7778195_8004003,4368_284 -4358_80681,227,4368_8641,Monkstown Ave,6497,0,4368_7778195_8004017,4368_284 -4358_80681,229,4368_8642,Monkstown Ave,18813,0,4368_7778195_8004004,4368_284 -4358_80681,228,4368_8643,Monkstown Ave,13523,0,4368_7778195_8004004,4368_285 -4358_80681,227,4368_8644,Monkstown Ave,6849,0,4368_7778195_8004002,4368_284 -4358_80681,228,4368_8645,Monkstown Ave,13067,0,4368_7778195_8004005,4368_284 -4358_80681,227,4368_8646,Monkstown Ave,6507,0,4368_7778195_8004018,4368_284 -4358_80681,229,4368_8647,Monkstown Ave,18821,0,4368_7778195_8004005,4368_284 -4358_80681,228,4368_8648,Monkstown Ave,13010,0,4368_7778195_8004006,4368_285 -4358_80681,227,4368_8649,Monkstown Ave,6515,0,4368_7778195_8004010,4368_287 -4358_80756,227,4368_865,Drimnagh Road,3437,0,4368_7778195_7122023,4368_28 -4358_80681,227,4368_8650,Monkstown Ave,6524,0,4368_7778195_8004005,4368_284 -4358_80681,228,4368_8651,Monkstown Ave,13562,0,4368_7778195_8004013,4368_284 -4358_80681,227,4368_8652,Monkstown Ave,6532,0,4368_7778195_8004007,4368_284 -4358_80681,228,4368_8653,Monkstown Ave,13020,0,4368_7778195_8004007,4368_284 -4358_80681,229,4368_8654,Monkstown Ave,18449,0,4368_7778195_8004001,4368_285 -4358_80681,227,4368_8655,Monkstown Ave,6912,0,4368_7778195_8004008,4368_284 -4358_80681,228,4368_8656,Monkstown Ave,13034,0,4368_7778195_8004001,4368_284 -4358_80681,227,4368_8657,Monkstown Ave,6920,0,4368_7778195_8004009,4368_284 -4358_80681,229,4368_8658,Monkstown Ave,18458,0,4368_7778195_8004002,4368_284 -4358_80681,227,4368_8659,Monkstown Ave,6943,0,4368_7778195_8004013,4368_285 -4358_80756,227,4368_866,Drimnagh Road,3523,0,4368_7778195_7122018,4368_28 -4358_80681,228,4368_8660,Monkstown Ave,13043,0,4368_7778195_8004008,4368_287 -4358_80681,227,4368_8661,Monkstown Ave,6934,0,4368_7778195_8004011,4368_284 -4358_80681,228,4368_8662,Monkstown Ave,13055,0,4368_7778195_8004009,4368_284 -4358_80681,227,4368_8663,Monkstown Ave,6960,0,4368_7778195_8004015,4368_284 -4358_80681,228,4368_8664,Monkstown Ave,13545,0,4368_7778195_8004011,4368_284 -4358_80681,229,4368_8665,Monkstown Ave,18471,0,4368_7778195_8004003,4368_285 -4358_80681,227,4368_8666,Monkstown Ave,6842,0,4368_7778195_8004001,4368_284 -4358_80681,228,4368_8667,Monkstown Ave,13552,0,4368_7778195_8004012,4368_284 -4358_80681,227,4368_8668,Monkstown Ave,6853,0,4368_7778195_8004003,4368_284 -4358_80681,229,4368_8669,Monkstown Ave,18815,0,4368_7778195_8004004,4368_284 -4358_80756,229,4368_867,Drimnagh Road,18530,0,4368_7778195_7122004,4368_29 -4358_80681,228,4368_8670,Monkstown Ave,13535,0,4368_7778195_8004010,4368_285 -4358_80681,227,4368_8671,Monkstown Ave,6954,0,4368_7778195_8004014,4368_287 -4358_80681,227,4368_8672,Monkstown Ave,6865,0,4368_7778195_8004004,4368_284 -4358_80681,228,4368_8673,Monkstown Ave,13516,0,4368_7778195_8004003,4368_284 -4358_80681,227,4368_8674,Monkstown Ave,6482,0,4368_7778195_8004006,4368_284 -4358_80681,229,4368_8675,Monkstown Ave,18825,0,4368_7778195_8004006,4368_284 -4358_80681,228,4368_8676,Monkstown Ave,13525,0,4368_7778195_8004004,4368_285 -4358_80681,227,4368_8677,Monkstown Ave,6489,0,4368_7778195_8004016,4368_284 -4358_80681,228,4368_8678,Monkstown Ave,13069,0,4368_7778195_8004005,4368_284 -4358_80681,229,4368_8679,Monkstown Ave,18855,0,4368_7778195_8004009,4368_285 -4358_80756,228,4368_868,Drimnagh Road,13112,0,4368_7778195_7122010,4368_28 -4358_80681,227,4368_8680,Monkstown Ave,6499,0,4368_7778195_8004017,4368_284 -4358_80681,229,4368_8681,Monkstown Ave,18823,0,4368_7778195_8004005,4368_284 -4358_80681,227,4368_8682,Monkstown Ave,6509,0,4368_7778195_8004018,4368_285 -4358_80681,228,4368_8683,Monkstown Ave,13012,0,4368_7778195_8004006,4368_287 -4358_80681,227,4368_8684,Monkstown Ave,6517,0,4368_7778195_8004010,4368_284 -4358_80681,228,4368_8685,Monkstown Ave,13564,0,4368_7778195_8004013,4368_284 -4358_80681,229,4368_8686,Monkstown Ave,18844,0,4368_7778195_8004011,4368_285 -4358_80681,227,4368_8687,Monkstown Ave,6526,0,4368_7778195_8004005,4368_284 -4358_80681,228,4368_8688,Monkstown Ave,13022,0,4368_7778195_8004007,4368_284 -4358_80681,229,4368_8689,Monkstown Ave,18481,0,4368_7778195_8004012,4368_285 -4358_80756,227,4368_869,Drimnagh Road,3581,0,4368_7778195_7122014,4368_28 -4358_80681,227,4368_8690,Monkstown Ave,6534,0,4368_7778195_8004007,4368_284 -4358_80681,229,4368_8691,Monkstown Ave,18451,0,4368_7778195_8004001,4368_284 -4358_80681,228,4368_8692,Monkstown Ave,13036,0,4368_7778195_8004001,4368_285 -4358_80681,227,4368_8693,Monkstown Ave,6914,0,4368_7778195_8004008,4368_284 -4358_80681,229,4368_8694,Monkstown Ave,18460,0,4368_7778195_8004002,4368_284 -4358_80681,227,4368_8695,Monkstown Ave,6922,0,4368_7778195_8004009,4368_285 -4358_80681,228,4368_8696,Monkstown Ave,13045,0,4368_7778195_8004008,4368_287 -4358_80681,227,4368_8697,Monkstown Ave,6945,0,4368_7778195_8004013,4368_284 -4358_80681,229,4368_8698,Monkstown Ave,18832,0,4368_7778195_8004007,4368_284 -4358_80681,228,4368_8699,Monkstown Ave,13057,0,4368_7778195_8004009,4368_285 -4358_80760,227,4368_87,Shaw street,1660,0,4368_7778195_9001003,4368_1 -4358_80756,229,4368_870,Drimnagh Road,18591,0,4368_7778195_7122007,4368_28 -4358_80681,227,4368_8700,Monkstown Ave,6936,0,4368_7778195_8004011,4368_284 -4358_80681,228,4368_8701,Monkstown Ave,13547,0,4368_7778195_8004011,4368_284 -4358_80681,229,4368_8702,Monkstown Ave,18473,0,4368_7778195_8004003,4368_285 -4358_80681,227,4368_8703,Monkstown Ave,6962,0,4368_7778195_8004015,4368_284 -4358_80681,229,4368_8704,Monkstown Ave,18865,0,4368_7778195_8004008,4368_284 -4358_80681,228,4368_8705,Monkstown Ave,13554,0,4368_7778195_8004012,4368_285 -4358_80681,227,4368_8706,Monkstown Ave,6844,0,4368_7778195_8004001,4368_284 -4358_80681,229,4368_8707,Monkstown Ave,18817,0,4368_7778195_8004004,4368_284 -4358_80681,228,4368_8708,Monkstown Ave,13537,0,4368_7778195_8004010,4368_285 -4358_80681,227,4368_8709,Monkstown Ave,6855,0,4368_7778195_8004003,4368_287 -4358_80756,228,4368_871,Drimnagh Road,13134,0,4368_7778195_7122004,4368_28 -4358_80681,227,4368_8710,Monkstown Ave,6956,0,4368_7778195_8004014,4368_284 -4358_80681,229,4368_8711,Monkstown Ave,18850,0,4368_7778195_8004010,4368_284 -4358_80681,228,4368_8712,Monkstown Ave,13518,0,4368_7778195_8004003,4368_285 -4358_80681,227,4368_8713,Monkstown Ave,6867,0,4368_7778195_8004004,4368_284 -4358_80681,229,4368_8714,Monkstown Ave,18827,0,4368_7778195_8004006,4368_284 -4358_80681,228,4368_8715,Monkstown Ave,13527,0,4368_7778195_8004004,4368_285 -4358_80681,227,4368_8716,Monkstown Ave,6484,0,4368_7778195_8004006,4368_284 -4358_80681,228,4368_8717,Monkstown Ave,13071,0,4368_7778195_8004005,4368_284 -4358_80681,229,4368_8718,Monkstown Ave,18857,0,4368_7778195_8004009,4368_285 -4358_80681,227,4368_8719,Monkstown Ave,6491,0,4368_7778195_8004016,4368_284 -4358_80756,227,4368_872,Drimnagh Road,3428,0,4368_7778195_7122004,4368_29 -4358_80681,227,4368_8720,Monkstown Ave,6501,0,4368_7778195_8004017,4368_284 -4358_80681,229,4368_8721,Monkstown Ave,18837,0,4368_7778195_8004013,4368_285 -4358_80681,228,4368_8722,Monkstown Ave,13014,0,4368_7778195_8004006,4368_287 -4358_80681,227,4368_8723,Monkstown Ave,6511,0,4368_7778195_8004018,4368_284 -4358_80681,228,4368_8724,Monkstown Ave,13566,0,4368_7778195_8004013,4368_284 -4358_80681,229,4368_8725,Monkstown Ave,18846,0,4368_7778195_8004011,4368_285 -4358_80681,227,4368_8726,Monkstown Ave,6519,0,4368_7778195_8004010,4368_284 -4358_80681,228,4368_8727,Monkstown Ave,13024,0,4368_7778195_8004007,4368_284 -4358_80681,229,4368_8728,Monkstown Ave,18483,0,4368_7778195_8004012,4368_285 -4358_80681,227,4368_8729,Monkstown Ave,6528,0,4368_7778195_8004005,4368_284 -4358_80756,227,4368_873,Drimnagh Road,3628,0,4368_7778195_7122021,4368_28 -4358_80681,229,4368_8730,Monkstown Ave,18453,0,4368_7778195_8004001,4368_284 -4358_80681,228,4368_8731,Monkstown Ave,13038,0,4368_7778195_8004001,4368_285 -4358_80681,227,4368_8732,Monkstown Ave,6536,0,4368_7778195_8004007,4368_284 -4358_80681,229,4368_8733,Monkstown Ave,18462,0,4368_7778195_8004002,4368_284 -4358_80681,227,4368_8734,Monkstown Ave,6916,0,4368_7778195_8004008,4368_285 -4358_80681,228,4368_8735,Monkstown Ave,13047,0,4368_7778195_8004008,4368_287 -4358_80681,227,4368_8736,Monkstown Ave,6924,0,4368_7778195_8004009,4368_284 -4358_80681,229,4368_8737,Monkstown Ave,18834,0,4368_7778195_8004007,4368_284 -4358_80681,228,4368_8738,Monkstown Ave,13059,0,4368_7778195_8004009,4368_285 -4358_80681,227,4368_8739,Monkstown Ave,6947,0,4368_7778195_8004013,4368_284 -4358_80756,229,4368_874,Drimnagh Road,18554,0,4368_7778195_7122005,4368_29 -4358_80681,228,4368_8740,Monkstown Ave,13549,0,4368_7778195_8004011,4368_284 -4358_80681,229,4368_8741,Monkstown Ave,18475,0,4368_7778195_8004003,4368_285 -4358_80681,227,4368_8742,Monkstown Ave,6972,0,4368_7778195_8004020,4368_284 -4358_80681,229,4368_8743,Monkstown Ave,18867,0,4368_7778195_8004008,4368_284 -4358_80681,228,4368_8744,Monkstown Ave,13556,0,4368_7778195_8004012,4368_285 -4358_80681,227,4368_8745,Monkstown Ave,6938,0,4368_7778195_8004011,4368_284 -4358_80681,229,4368_8746,Monkstown Ave,18819,0,4368_7778195_8004004,4368_284 -4358_80681,228,4368_8747,Monkstown Ave,13539,0,4368_7778195_8004010,4368_285 -4358_80681,227,4368_8748,Monkstown Ave,6967,0,4368_7778195_8004019,4368_287 -4358_80681,227,4368_8749,Monkstown Ave,6964,0,4368_7778195_8004015,4368_284 -4358_80756,228,4368_875,Drimnagh Road,13146,0,4368_7778195_7122006,4368_28 -4358_80681,229,4368_8750,Monkstown Ave,18852,0,4368_7778195_8004010,4368_284 -4358_80681,228,4368_8751,Monkstown Ave,13520,0,4368_7778195_8004003,4368_285 -4358_80681,227,4368_8752,Monkstown Ave,6846,0,4368_7778195_8004001,4368_284 -4358_80681,229,4368_8753,Monkstown Ave,18829,0,4368_7778195_8004006,4368_284 -4358_80681,228,4368_8754,Monkstown Ave,13529,0,4368_7778195_8004004,4368_285 -4358_80681,227,4368_8755,Monkstown Ave,6857,0,4368_7778195_8004003,4368_284 -4358_80681,228,4368_8756,Monkstown Ave,13073,0,4368_7778195_8004005,4368_284 -4358_80681,229,4368_8757,Monkstown Ave,18859,0,4368_7778195_8004009,4368_285 -4358_80681,227,4368_8758,Monkstown Ave,6958,0,4368_7778195_8004014,4368_284 -4358_80681,229,4368_8759,Monkstown Ave,18839,0,4368_7778195_8004013,4368_284 -4358_80756,227,4368_876,Drimnagh Road,3604,0,4368_7778195_7122008,4368_28 -4358_80681,228,4368_8760,Monkstown Ave,13016,0,4368_7778195_8004006,4368_285 -4358_80681,227,4368_8761,Monkstown Ave,6869,0,4368_7778195_8004004,4368_287 -4358_80681,227,4368_8762,Monkstown Ave,6486,0,4368_7778195_8004006,4368_284 -4358_80681,228,4368_8763,Monkstown Ave,13568,0,4368_7778195_8004013,4368_284 -4358_80681,229,4368_8764,Monkstown Ave,18848,0,4368_7778195_8004011,4368_285 -4358_80681,227,4368_8765,Monkstown Ave,6493,0,4368_7778195_8004016,4368_284 -4358_80681,228,4368_8766,Monkstown Ave,13026,0,4368_7778195_8004007,4368_284 -4358_80681,229,4368_8767,Monkstown Ave,18485,0,4368_7778195_8004012,4368_285 -4358_80681,227,4368_8768,Monkstown Ave,6503,0,4368_7778195_8004017,4368_284 -4358_80681,229,4368_8769,Monkstown Ave,18455,0,4368_7778195_8004001,4368_284 -4358_80756,229,4368_877,Drimnagh Road,18600,0,4368_7778195_7122009,4368_29 -4358_80681,228,4368_8770,Monkstown Ave,13040,0,4368_7778195_8004001,4368_285 -4358_80681,227,4368_8771,Monkstown Ave,6513,0,4368_7778195_8004018,4368_284 -4358_80681,229,4368_8772,Monkstown Ave,18464,0,4368_7778195_8004002,4368_284 -4358_80681,228,4368_8773,Monkstown Ave,13049,0,4368_7778195_8004008,4368_285 -4358_80681,227,4368_8774,Monkstown Ave,6521,0,4368_7778195_8004010,4368_287 -4358_80681,227,4368_8775,Monkstown Ave,6538,0,4368_7778195_8004007,4368_284 -4358_80681,228,4368_8776,Monkstown Ave,13061,0,4368_7778195_8004009,4368_285 -4358_80681,229,4368_8777,Monkstown Ave,18477,0,4368_7778195_8004003,4368_284 -4358_80681,228,4368_8778,Monkstown Ave,13558,0,4368_7778195_8004012,4368_284 -4358_80681,227,4368_8779,Monkstown Ave,6926,0,4368_7778195_8004009,4368_285 -4358_80756,228,4368_878,Drimnagh Road,13170,0,4368_7778195_7122009,4368_28 -4358_80681,228,4368_8780,Monkstown Ave,13541,0,4368_7778195_8004010,4368_284 -4358_80681,227,4368_8781,Monkstown Ave,6949,0,4368_7778195_8004013,4368_285 -4358_80681,229,4368_8782,Monkstown Ave,18854,0,4368_7778195_8004010,4368_287 -4358_80681,228,4368_8783,Monkstown Ave,13531,0,4368_7778195_8004004,4368_284 -4358_80681,227,4368_8784,Monkstown Ave,6969,0,4368_7778195_8004019,4368_285 -4358_80681,229,4368_8785,Monkstown Ave,18860,0,4368_7778195_8004014,4368_284 -4358_80681,228,4368_8786,Monkstown Ave,13018,0,4368_7778195_8004006,4368_284 -4358_80681,227,4368_8787,Monkstown Ave,6859,0,4368_7778195_8004003,4368_285 -4358_80681,228,4368_8788,Monkstown Ave,13570,0,4368_7778195_8004013,4368_284 -4358_80681,229,4368_8789,Monkstown Ave,18841,0,4368_7778195_8004013,4368_285 -4358_80756,229,4368_879,Drimnagh Road,18573,0,4368_7778195_7122001,4368_28 -4358_80681,227,4368_8790,Monkstown Ave,6871,0,4368_7778195_8004004,4368_287 -4358_80681,228,4368_8791,Monkstown Ave,13028,0,4368_7778195_8004007,4368_284 -4358_80681,227,4368_8792,Monkstown Ave,6495,0,4368_7778195_8004016,4368_285 -4358_80681,229,4368_8793,Monkstown Ave,18466,0,4368_7778195_8004002,4368_284 -4358_80681,227,4368_8794,Monkstown Ave,6505,0,4368_7778195_8004017,4368_284 -4358_80681,228,4368_8795,Monkstown Ave,13051,0,4368_7778195_8004008,4368_285 -4358_80681,227,4368_8796,Monkstown Ave,6540,0,4368_7778195_8004007,4368_284 -4358_80681,228,4368_8797,Monkstown Ave,13063,0,4368_7778195_8004009,4368_285 -4358_80681,229,4368_8798,Monkstown Ave,18479,0,4368_7778195_8004003,4368_287 -4358_80681,228,4368_8799,Monkstown Ave,13560,0,4368_7778195_8004012,4368_284 -4358_80760,229,4368_88,Shaw street,15589,0,4368_7778195_9001004,4368_2 -4358_80756,227,4368_880,Drimnagh Road,3562,0,4368_7778195_7122017,4368_29 -4358_80681,227,4368_8800,Monkstown Ave,6928,0,4368_7778195_8004009,4368_285 -4358_80681,229,4368_8801,Monkstown Ave,18862,0,4368_7778195_8004014,4368_284 -4358_80681,228,4368_8802,Monkstown Ave,13543,0,4368_7778195_8004010,4368_284 -4358_80681,227,4368_8803,Monkstown Ave,6951,0,4368_7778195_8004013,4368_285 -4358_80681,228,4368_8804,Monkstown Ave,13572,0,4368_7778195_8004013,4368_284 -4358_80681,229,4368_8805,Monkstown Ave,18843,0,4368_7778195_8004013,4368_285 -4358_80681,227,4368_8806,Monkstown Ave,6971,0,4368_7778195_8004019,4368_287 -4358_80681,228,4368_8807,O'Connell St,13030,0,4368_7778195_8004007,4368_286 -4358_80681,227,4368_8808,O'Connell St,6861,0,4368_7778195_8004003,4368_288 -4358_80681,229,4368_8809,O'Connell St,18468,0,4368_7778195_8004002,4368_286 -4358_80756,228,4368_881,Drimnagh Road,13107,0,4368_7778195_7122001,4368_28 -4358_80681,227,4368_8810,Harristown,6839,1,4368_7778195_8004001,4368_289 -4358_80681,228,4368_8811,Harristown,13031,1,4368_7778195_8004001,4368_291 -4358_80681,227,4368_8812,Harristown,6850,1,4368_7778195_8004003,4368_289 -4358_80681,228,4368_8813,Harristown,13510,1,4368_7778195_8004002,4368_289 -4358_80681,227,4368_8814,Harristown,6862,1,4368_7778195_8004004,4368_291 -4358_80681,227,4368_8815,Harristown,6479,1,4368_7778195_8004006,4368_289 -4358_80681,227,4368_8816,Harristown,6848,1,4368_7778195_8004002,4368_289 -4358_80681,228,4368_8817,Harristown,13513,1,4368_7778195_8004003,4368_291 -4358_80681,227,4368_8818,Harristown,6514,1,4368_7778195_8004010,4368_289 -4358_80681,228,4368_8819,Harristown,13522,1,4368_7778195_8004004,4368_289 -4358_80756,227,4368_882,Drimnagh Road,3623,0,4368_7778195_7122019,4368_28 -4358_80681,227,4368_8820,Harristown,6523,1,4368_7778195_8004005,4368_289 -4358_80681,228,4368_8821,Harristown,13066,1,4368_7778195_8004005,4368_289 -4358_80681,227,4368_8822,Harristown,6531,1,4368_7778195_8004007,4368_289 -4358_80681,228,4368_8823,Harristown,13009,1,4368_7778195_8004006,4368_289 -4358_80681,227,4368_8824,Harristown,6911,1,4368_7778195_8004008,4368_289 -4358_80681,228,4368_8825,Harristown,13019,1,4368_7778195_8004007,4368_289 -4358_80681,227,4368_8826,Harristown,6919,1,4368_7778195_8004009,4368_291 -4358_80681,229,4368_8827,Harristown,18448,1,4368_7778195_8004001,4368_292 -4358_80681,227,4368_8828,Harristown,6942,1,4368_7778195_8004013,4368_289 -4358_80681,228,4368_8829,Harristown,13033,1,4368_7778195_8004001,4368_289 -4358_80756,229,4368_883,Drimnagh Road,18543,0,4368_7778195_7122003,4368_29 -4358_80681,227,4368_8830,Harristown,6933,1,4368_7778195_8004011,4368_289 -4358_80681,229,4368_8831,Harristown,18457,1,4368_7778195_8004002,4368_289 -4358_80681,228,4368_8832,Harristown,13042,1,4368_7778195_8004008,4368_291 -4358_80681,227,4368_8833,Harristown,6941,1,4368_7778195_8004012,4368_289 -4358_80681,228,4368_8834,Harristown,13054,1,4368_7778195_8004009,4368_289 -4358_80681,227,4368_8835,Harristown,6959,1,4368_7778195_8004015,4368_289 -4358_80681,228,4368_8836,Harristown,13544,1,4368_7778195_8004011,4368_289 -4358_80681,227,4368_8837,Harristown,6841,1,4368_7778195_8004001,4368_291 -4358_80681,229,4368_8838,Harristown,18470,1,4368_7778195_8004003,4368_292 -4358_80681,227,4368_8839,Harristown,6852,1,4368_7778195_8004003,4368_289 -4358_80756,228,4368_884,Drimnagh Road,13123,0,4368_7778195_7122003,4368_28 -4358_80681,228,4368_8840,Harristown,13551,1,4368_7778195_8004012,4368_289 -4358_80681,227,4368_8841,Harristown,6953,1,4368_7778195_8004014,4368_289 -4358_80681,229,4368_8842,Harristown,18814,1,4368_7778195_8004004,4368_289 -4358_80681,228,4368_8843,Harristown,13534,1,4368_7778195_8004010,4368_291 -4358_80681,227,4368_8844,Harristown,6864,1,4368_7778195_8004004,4368_289 -4358_80681,228,4368_8845,Harristown,13515,1,4368_7778195_8004003,4368_289 -4358_80681,227,4368_8846,Harristown,6481,1,4368_7778195_8004006,4368_289 -4358_80681,229,4368_8847,Harristown,18824,1,4368_7778195_8004006,4368_289 -4358_80681,228,4368_8848,Harristown,13524,1,4368_7778195_8004004,4368_291 -4358_80681,227,4368_8849,Harristown,6488,1,4368_7778195_8004016,4368_292 -4358_80756,229,4368_885,Drimnagh Road,18564,0,4368_7778195_7122002,4368_28 -4358_80681,227,4368_8850,Harristown,6498,1,4368_7778195_8004017,4368_289 -4358_80681,228,4368_8851,Harristown,13068,1,4368_7778195_8004005,4368_289 -4358_80681,227,4368_8852,Harristown,6508,1,4368_7778195_8004018,4368_289 -4358_80681,229,4368_8853,Harristown,18822,1,4368_7778195_8004005,4368_289 -4358_80681,228,4368_8854,Harristown,13011,1,4368_7778195_8004006,4368_291 -4358_80681,227,4368_8855,Harristown,6516,1,4368_7778195_8004010,4368_289 -4358_80681,228,4368_8856,Harristown,13563,1,4368_7778195_8004013,4368_289 -4358_80681,227,4368_8857,Harristown,6525,1,4368_7778195_8004005,4368_289 -4358_80681,227,4368_8858,Harristown,6533,1,4368_7778195_8004007,4368_289 -4358_80681,228,4368_8859,Harristown,13021,1,4368_7778195_8004007,4368_291 -4358_80756,227,4368_886,Drimnagh Road,3402,0,4368_7778195_7122005,4368_28 -4358_80681,229,4368_8860,Harristown,18450,1,4368_7778195_8004001,4368_292 -4358_80681,227,4368_8861,Harristown,6913,1,4368_7778195_8004008,4368_289 -4358_80681,228,4368_8862,Harristown,13035,1,4368_7778195_8004001,4368_289 -4358_80681,227,4368_8863,Harristown,6921,1,4368_7778195_8004009,4368_289 -4358_80681,229,4368_8864,Harristown,18459,1,4368_7778195_8004002,4368_289 -4358_80681,228,4368_8865,Harristown,13044,1,4368_7778195_8004008,4368_291 -4358_80681,227,4368_8866,Harristown,6944,1,4368_7778195_8004013,4368_289 -4358_80681,229,4368_8867,Harristown,18831,1,4368_7778195_8004007,4368_289 -4358_80681,228,4368_8868,Harristown,13056,1,4368_7778195_8004009,4368_291 -4358_80681,227,4368_8869,Harristown,6935,1,4368_7778195_8004011,4368_289 -4358_80756,228,4368_887,Drimnagh Road,13156,0,4368_7778195_7122005,4368_29 -4358_80681,228,4368_8870,Harristown,13546,1,4368_7778195_8004011,4368_289 -4358_80681,229,4368_8871,Harristown,18472,1,4368_7778195_8004003,4368_291 -4358_80681,227,4368_8872,Harristown,6961,1,4368_7778195_8004015,4368_292 -4358_80681,227,4368_8873,Harristown,6843,1,4368_7778195_8004001,4368_289 -4358_80681,229,4368_8874,Harristown,18864,1,4368_7778195_8004008,4368_289 -4358_80681,228,4368_8875,Harristown,13553,1,4368_7778195_8004012,4368_291 -4358_80681,227,4368_8876,Harristown,6854,1,4368_7778195_8004003,4368_289 -4358_80681,229,4368_8877,Harristown,18816,1,4368_7778195_8004004,4368_289 -4358_80681,228,4368_8878,Harristown,13536,1,4368_7778195_8004010,4368_291 -4358_80681,227,4368_8879,Harristown,6955,1,4368_7778195_8004014,4368_289 -4358_80756,229,4368_888,Drimnagh Road,18583,0,4368_7778195_7122006,4368_28 -4358_80681,229,4368_8880,Harristown,18849,1,4368_7778195_8004010,4368_289 -4358_80681,228,4368_8881,Harristown,13517,1,4368_7778195_8004003,4368_291 -4358_80681,227,4368_8882,Harristown,6866,1,4368_7778195_8004004,4368_289 -4358_80681,227,4368_8883,Harristown,6483,1,4368_7778195_8004006,4368_289 -4358_80681,229,4368_8884,Harristown,18826,1,4368_7778195_8004006,4368_291 -4358_80681,228,4368_8885,Harristown,13526,1,4368_7778195_8004004,4368_292 -4358_80681,227,4368_8886,Harristown,6490,1,4368_7778195_8004016,4368_289 -4358_80681,228,4368_8887,Harristown,13070,1,4368_7778195_8004005,4368_289 -4358_80681,229,4368_8888,Harristown,18856,1,4368_7778195_8004009,4368_291 -4358_80681,227,4368_8889,Harristown,6500,1,4368_7778195_8004017,4368_289 -4358_80756,227,4368_889,Drimnagh Road,3593,0,4368_7778195_7122022,4368_28 -4358_80681,228,4368_8890,Harristown,13013,1,4368_7778195_8004006,4368_289 -4358_80681,229,4368_8891,Harristown,18845,1,4368_7778195_8004011,4368_291 -4358_80681,227,4368_8892,Harristown,6510,1,4368_7778195_8004018,4368_289 -4358_80681,228,4368_8893,Harristown,13565,1,4368_7778195_8004013,4368_289 -4358_80681,229,4368_8894,Harristown,18836,1,4368_7778195_8004013,4368_291 -4358_80681,227,4368_8895,Harristown,6518,1,4368_7778195_8004010,4368_289 -4358_80681,228,4368_8896,Harristown,13023,1,4368_7778195_8004007,4368_289 -4358_80681,229,4368_8897,Harristown,18482,1,4368_7778195_8004012,4368_291 -4358_80681,227,4368_8898,Harristown,6527,1,4368_7778195_8004005,4368_292 -4358_80681,227,4368_8899,Harristown,6535,1,4368_7778195_8004007,4368_289 -4358_80760,228,4368_89,Shaw street,9320,0,4368_7778195_9001002,4368_1 -4358_80756,228,4368_890,Drimnagh Road,13180,0,4368_7778195_7122007,4368_29 -4358_80681,229,4368_8900,Harristown,18452,1,4368_7778195_8004001,4368_289 -4358_80681,228,4368_8901,Harristown,13037,1,4368_7778195_8004001,4368_291 -4358_80681,227,4368_8902,Harristown,6915,1,4368_7778195_8004008,4368_289 -4358_80681,229,4368_8903,Harristown,18461,1,4368_7778195_8004002,4368_289 -4358_80681,228,4368_8904,Harristown,13046,1,4368_7778195_8004008,4368_291 -4358_80681,227,4368_8905,Harristown,6923,1,4368_7778195_8004009,4368_289 -4358_80681,229,4368_8906,Harristown,18833,1,4368_7778195_8004007,4368_289 -4358_80681,228,4368_8907,Harristown,13058,1,4368_7778195_8004009,4368_291 -4358_80681,227,4368_8908,Harristown,6946,1,4368_7778195_8004013,4368_289 -4358_80681,228,4368_8909,Harristown,13548,1,4368_7778195_8004011,4368_289 -4358_80756,229,4368_891,Drimnagh Road,18532,0,4368_7778195_7122004,4368_28 -4358_80681,227,4368_8910,Harristown,6937,1,4368_7778195_8004011,4368_291 -4358_80681,229,4368_8911,Harristown,18474,1,4368_7778195_8004003,4368_292 -4358_80681,227,4368_8912,Harristown,6966,1,4368_7778195_8004019,4368_289 -4358_80681,229,4368_8913,Harristown,18866,1,4368_7778195_8004008,4368_289 -4358_80681,228,4368_8914,Harristown,13555,1,4368_7778195_8004012,4368_291 -4358_80681,227,4368_8915,Harristown,6963,1,4368_7778195_8004015,4368_289 -4358_80681,229,4368_8916,Harristown,18818,1,4368_7778195_8004004,4368_289 -4358_80681,228,4368_8917,Harristown,13538,1,4368_7778195_8004010,4368_291 -4358_80681,227,4368_8918,Harristown,6845,1,4368_7778195_8004001,4368_289 -4358_80681,229,4368_8919,Harristown,18851,1,4368_7778195_8004010,4368_289 -4358_80756,228,4368_892,Drimnagh Road,13114,0,4368_7778195_7122010,4368_28 -4358_80681,228,4368_8920,Harristown,13519,1,4368_7778195_8004003,4368_291 -4358_80681,227,4368_8921,Harristown,6856,1,4368_7778195_8004003,4368_289 -4358_80681,227,4368_8922,Harristown,6957,1,4368_7778195_8004014,4368_289 -4358_80681,229,4368_8923,Harristown,18828,1,4368_7778195_8004006,4368_291 -4358_80681,228,4368_8924,Harristown,13528,1,4368_7778195_8004004,4368_292 -4358_80681,227,4368_8925,Harristown,6868,1,4368_7778195_8004004,4368_289 -4358_80681,228,4368_8926,Harristown,13072,1,4368_7778195_8004005,4368_289 -4358_80681,229,4368_8927,Harristown,18858,1,4368_7778195_8004009,4368_291 -4358_80681,227,4368_8928,Harristown,6485,1,4368_7778195_8004006,4368_289 -4358_80681,229,4368_8929,Harristown,18838,1,4368_7778195_8004013,4368_289 -4358_80756,227,4368_893,Drimnagh Road,3525,0,4368_7778195_7122018,4368_29 -4358_80681,228,4368_8930,Harristown,13015,1,4368_7778195_8004006,4368_291 -4358_80681,227,4368_8931,Harristown,6492,1,4368_7778195_8004016,4368_289 -4358_80681,228,4368_8932,Harristown,13567,1,4368_7778195_8004013,4368_289 -4358_80681,229,4368_8933,Harristown,18847,1,4368_7778195_8004011,4368_291 -4358_80681,227,4368_8934,Harristown,6502,1,4368_7778195_8004017,4368_289 -4358_80681,228,4368_8935,Harristown,13025,1,4368_7778195_8004007,4368_289 -4358_80681,229,4368_8936,Harristown,18484,1,4368_7778195_8004012,4368_291 -4358_80681,227,4368_8937,Harristown,6512,1,4368_7778195_8004018,4368_292 -4358_80681,227,4368_8938,Harristown,6520,1,4368_7778195_8004010,4368_289 -4358_80681,229,4368_8939,Harristown,18454,1,4368_7778195_8004001,4368_289 -4358_80756,229,4368_894,Drimnagh Road,18593,0,4368_7778195_7122007,4368_28 -4358_80681,228,4368_8940,Harristown,13039,1,4368_7778195_8004001,4368_291 -4358_80681,227,4368_8941,Harristown,6529,1,4368_7778195_8004005,4368_289 -4358_80681,229,4368_8942,Harristown,18463,1,4368_7778195_8004002,4368_289 -4358_80681,228,4368_8943,Harristown,13048,1,4368_7778195_8004008,4368_291 -4358_80681,227,4368_8944,Harristown,6537,1,4368_7778195_8004007,4368_289 -4358_80681,229,4368_8945,Harristown,18835,1,4368_7778195_8004007,4368_289 -4358_80681,228,4368_8946,Harristown,13060,1,4368_7778195_8004009,4368_291 -4358_80681,227,4368_8947,Harristown,6917,1,4368_7778195_8004008,4368_289 -4358_80681,228,4368_8948,Harristown,13550,1,4368_7778195_8004011,4368_289 -4358_80681,227,4368_8949,Harristown,6925,1,4368_7778195_8004009,4368_291 -4358_80756,228,4368_895,Drimnagh Road,13136,0,4368_7778195_7122004,4368_28 -4358_80681,229,4368_8950,Harristown,18476,1,4368_7778195_8004003,4368_292 -4358_80681,227,4368_8951,Harristown,6948,1,4368_7778195_8004013,4368_289 -4358_80681,229,4368_8952,Harristown,18868,1,4368_7778195_8004008,4368_289 -4358_80681,228,4368_8953,Harristown,13557,1,4368_7778195_8004012,4368_291 -4358_80681,227,4368_8954,Harristown,6973,1,4368_7778195_8004020,4368_289 -4358_80681,229,4368_8955,Harristown,18820,1,4368_7778195_8004004,4368_289 -4358_80681,228,4368_8956,Harristown,13540,1,4368_7778195_8004010,4368_291 -4358_80681,227,4368_8957,Harristown,6939,1,4368_7778195_8004011,4368_289 -4358_80681,229,4368_8958,Harristown,18853,1,4368_7778195_8004010,4368_289 -4358_80681,228,4368_8959,Harristown,13521,1,4368_7778195_8004003,4368_291 -4358_80756,227,4368_896,Drimnagh Road,3630,0,4368_7778195_7122021,4368_29 -4358_80681,227,4368_8960,Harristown,6968,1,4368_7778195_8004019,4368_289 -4358_80681,229,4368_8961,Harristown,18830,1,4368_7778195_8004006,4368_289 -4358_80681,228,4368_8962,Harristown,13530,1,4368_7778195_8004004,4368_291 -4358_80681,227,4368_8963,Harristown,6965,1,4368_7778195_8004015,4368_292 -4358_80681,228,4368_8964,Harristown,13017,1,4368_7778195_8004006,4368_289 -4358_80681,227,4368_8965,Harristown,6858,1,4368_7778195_8004003,4368_291 -4358_80681,229,4368_8966,Harristown,18840,1,4368_7778195_8004013,4368_289 -4358_80681,228,4368_8967,Harristown,13569,1,4368_7778195_8004013,4368_289 -4358_80681,227,4368_8968,Harristown,6870,1,4368_7778195_8004004,4368_291 -4358_80681,228,4368_8969,Harristown,13027,1,4368_7778195_8004007,4368_289 -4358_80756,229,4368_897,Drimnagh Road,18575,0,4368_7778195_7122001,4368_28 -4358_80681,227,4368_8970,Harristown,6494,1,4368_7778195_8004016,4368_291 -4358_80681,229,4368_8971,Harristown,18456,1,4368_7778195_8004001,4368_292 -4358_80681,227,4368_8972,Harristown,6504,1,4368_7778195_8004017,4368_289 -4358_80681,228,4368_8973,Harristown,13050,1,4368_7778195_8004008,4368_291 -4358_80681,229,4368_8974,Harristown,18465,1,4368_7778195_8004002,4368_289 -4358_80681,227,4368_8975,Harristown,6539,1,4368_7778195_8004007,4368_289 -4358_80681,228,4368_8976,Harristown,13062,1,4368_7778195_8004009,4368_291 -4358_80681,228,4368_8977,Harristown,13559,1,4368_7778195_8004012,4368_289 -4358_80681,227,4368_8978,Harristown,6927,1,4368_7778195_8004009,4368_291 -4358_80681,229,4368_8979,Harristown,18478,1,4368_7778195_8004003,4368_292 -4358_80756,228,4368_898,Drimnagh Road,13109,0,4368_7778195_7122001,4368_28 -4358_80681,228,4368_8980,Harristown,13542,1,4368_7778195_8004010,4368_289 -4358_80681,227,4368_8981,Harristown,6950,1,4368_7778195_8004013,4368_291 -4358_80681,229,4368_8982,Harristown,18861,1,4368_7778195_8004014,4368_289 -4358_80681,228,4368_8983,Harristown,13532,1,4368_7778195_8004004,4368_289 -4358_80681,227,4368_8984,Harristown,6970,1,4368_7778195_8004019,4368_291 -4358_80681,228,4368_8985,Harristown,13571,1,4368_7778195_8004013,4368_289 -4358_80681,229,4368_8986,Harristown,18842,1,4368_7778195_8004013,4368_291 -4358_80681,227,4368_8987,Harristown,6860,1,4368_7778195_8004003,4368_292 -4358_80681,228,4368_8988,Harristown,13029,1,4368_7778195_8004007,4368_289 -4358_80681,227,4368_8989,Harristown,6872,1,4368_7778195_8004004,4368_291 -4358_80756,227,4368_899,Drimnagh Road,3564,0,4368_7778195_7122017,4368_29 -4358_80681,229,4368_8990,Harristown,18467,1,4368_7778195_8004002,4368_289 -4358_80681,228,4368_8991,Harristown,13052,1,4368_7778195_8004008,4368_289 -4358_80681,227,4368_8992,Harristown,6496,1,4368_7778195_8004016,4368_291 -4358_80681,228,4368_8993,Harristown,13064,1,4368_7778195_8004009,4368_289 -4358_80681,227,4368_8994,Harristown,6506,1,4368_7778195_8004017,4368_291 -4358_80681,229,4368_8995,Harristown,18480,1,4368_7778195_8004003,4368_292 -4358_80681,227,4368_8996,O'Connell St,6541,1,4368_7778195_8004007,4368_290 -4358_80681,228,4368_8997,O'Connell St,13561,1,4368_7778195_8004012,4368_293 -4358_80681,229,4368_8998,O'Connell St,18863,1,4368_7778195_8004014,4368_290 -4358_80707,227,4368_8999,Earlsfort Terrace,7074,0,4368_7778195_8040102,4368_294 -4358_80760,227,4368_9,Shaw street,1841,0,4368_7778195_9001006,4368_1 -4358_80760,227,4368_90,Shaw street,1594,0,4368_7778195_9001005,4368_1 -4358_80756,229,4368_900,Drimnagh Road,18545,0,4368_7778195_7122003,4368_28 -4358_80707,227,4368_9000,Earlsfort Terrace,7085,0,4368_7778195_8040103,4368_294 -4358_80707,227,4368_9001,Earlsfort Terrace,7117,0,4368_7778195_8040106,4368_294 -4358_80707,227,4368_9002,Earlsfort Terrace,7129,0,4368_7778195_8040108,4368_294 -4358_80707,227,4368_9003,Earlsfort Terrace,7135,0,4368_7778195_8040109,4368_294 -4358_80707,228,4368_9004,Earlsfort Terrace,13691,0,4368_7778195_8040102,4368_296 -4358_80707,227,4368_9005,Earlsfort Terrace,7149,0,4368_7778195_8040110,4368_294 -4358_80707,227,4368_9006,Earlsfort Terrace,7169,0,4368_7778195_8040112,4368_294 -4358_80707,228,4368_9007,Earlsfort Terrace,13713,0,4368_7778195_8040104,4368_296 -4358_80707,227,4368_9008,Earlsfort Terrace,7061,0,4368_7778195_8040101,4368_294 -4358_80707,228,4368_9009,Earlsfort Terrace,13735,0,4368_7778195_8040106,4368_294 -4358_80756,227,4368_901,Drimnagh Road,3625,0,4368_7778195_7122019,4368_28 -4358_80707,227,4368_9010,Earlsfort Terrace,7177,0,4368_7778195_8040113,4368_295 -4358_80707,227,4368_9011,Earlsfort Terrace,7100,0,4368_7778195_8040104,4368_294 -4358_80707,228,4368_9012,Earlsfort Terrace,13745,0,4368_7778195_8040108,4368_294 -4358_80707,227,4368_9013,Earlsfort Terrace,7114,0,4368_7778195_8040105,4368_294 -4358_80707,228,4368_9014,Earlsfort Terrace,13759,0,4368_7778195_8040109,4368_294 -4358_80707,227,4368_9015,Earlsfort Terrace,7076,0,4368_7778195_8040102,4368_295 -4358_80707,227,4368_9016,Earlsfort Terrace,7121,0,4368_7778195_8040107,4368_294 -4358_80707,228,4368_9017,Earlsfort Terrace,13769,0,4368_7778195_8040110,4368_294 -4358_80707,227,4368_9018,Earlsfort Terrace,7193,0,4368_7778195_8040117,4368_294 -4358_80707,229,4368_9019,Earlsfort Terrace,18710,0,4368_7778195_8040101,4368_296 -4358_80756,228,4368_902,Drimnagh Road,13125,0,4368_7778195_7122003,4368_29 -4358_80707,227,4368_9020,Earlsfort Terrace,7087,0,4368_7778195_8040103,4368_294 -4358_80707,228,4368_9021,Earlsfort Terrace,13678,0,4368_7778195_8040101,4368_295 -4358_80707,227,4368_9022,Earlsfort Terrace,7161,0,4368_7778195_8040111,4368_294 -4358_80707,228,4368_9023,Earlsfort Terrace,13703,0,4368_7778195_8040103,4368_294 -4358_80707,227,4368_9024,Earlsfort Terrace,7119,0,4368_7778195_8040106,4368_294 -4358_80707,229,4368_9025,Earlsfort Terrace,18716,0,4368_7778195_8040102,4368_295 -4358_80707,227,4368_9026,Earlsfort Terrace,7131,0,4368_7778195_8040108,4368_294 -4358_80707,228,4368_9027,Earlsfort Terrace,13725,0,4368_7778195_8040105,4368_295 -4358_80707,227,4368_9028,Earlsfort Terrace,7137,0,4368_7778195_8040109,4368_294 -4358_80707,228,4368_9029,Earlsfort Terrace,13693,0,4368_7778195_8040102,4368_294 -4358_80756,229,4368_903,Drimnagh Road,18585,0,4368_7778195_7122006,4368_28 -4358_80707,229,4368_9030,Earlsfort Terrace,18720,0,4368_7778195_8040103,4368_294 -4358_80707,227,4368_9031,Earlsfort Terrace,7151,0,4368_7778195_8040110,4368_295 -4358_80707,228,4368_9032,Earlsfort Terrace,13715,0,4368_7778195_8040104,4368_294 -4358_80707,227,4368_9033,Earlsfort Terrace,7184,0,4368_7778195_8040115,4368_295 -4358_80707,227,4368_9034,Earlsfort Terrace,7171,0,4368_7778195_8040112,4368_294 -4358_80707,228,4368_9035,Earlsfort Terrace,13737,0,4368_7778195_8040106,4368_294 -4358_80707,227,4368_9036,Earlsfort Terrace,7192,0,4368_7778195_8040116,4368_294 -4358_80707,229,4368_9037,Earlsfort Terrace,18736,0,4368_7778195_8040105,4368_295 -4358_80707,228,4368_9038,Earlsfort Terrace,13747,0,4368_7778195_8040108,4368_294 -4358_80707,227,4368_9039,Earlsfort Terrace,7063,0,4368_7778195_8040101,4368_295 -4358_80756,227,4368_904,Drimnagh Road,3595,0,4368_7778195_7122022,4368_28 -4358_80707,227,4368_9040,Earlsfort Terrace,7179,0,4368_7778195_8040113,4368_294 -4358_80707,228,4368_9041,Earlsfort Terrace,13761,0,4368_7778195_8040109,4368_294 -4358_80707,229,4368_9042,Earlsfort Terrace,18712,0,4368_7778195_8040101,4368_294 -4358_80707,227,4368_9043,Earlsfort Terrace,7102,0,4368_7778195_8040104,4368_295 -4358_80707,228,4368_9044,Earlsfort Terrace,13771,0,4368_7778195_8040110,4368_294 -4358_80707,227,4368_9045,Earlsfort Terrace,7078,0,4368_7778195_8040102,4368_295 -4358_80707,227,4368_9046,Earlsfort Terrace,7123,0,4368_7778195_8040107,4368_294 -4358_80707,228,4368_9047,Earlsfort Terrace,13680,0,4368_7778195_8040101,4368_294 -4358_80707,227,4368_9048,Earlsfort Terrace,7203,0,4368_7778195_8040118,4368_294 -4358_80707,229,4368_9049,Earlsfort Terrace,18718,0,4368_7778195_8040102,4368_295 -4358_80756,228,4368_905,Drimnagh Road,13097,0,4368_7778195_7122011,4368_29 -4358_80707,228,4368_9050,Earlsfort Terrace,13705,0,4368_7778195_8040103,4368_294 -4358_80707,227,4368_9051,Earlsfort Terrace,7215,0,4368_7778195_8040119,4368_294 -4358_80707,229,4368_9052,Earlsfort Terrace,18725,0,4368_7778195_8040104,4368_294 -4358_80707,227,4368_9053,Earlsfort Terrace,7195,0,4368_7778195_8040117,4368_294 -4358_80707,228,4368_9054,Earlsfort Terrace,13727,0,4368_7778195_8040105,4368_294 -4358_80707,227,4368_9055,Earlsfort Terrace,7089,0,4368_7778195_8040103,4368_294 -4358_80707,228,4368_9056,Earlsfort Terrace,13695,0,4368_7778195_8040102,4368_294 -4358_80707,229,4368_9057,Earlsfort Terrace,18765,0,4368_7778195_8040108,4368_295 -4358_80707,227,4368_9058,Earlsfort Terrace,7163,0,4368_7778195_8040111,4368_294 -4358_80707,228,4368_9059,Earlsfort Terrace,13802,0,4368_7778195_8040113,4368_294 -4358_80756,229,4368_906,Drimnagh Road,18534,0,4368_7778195_7122004,4368_28 -4358_80707,229,4368_9060,Earlsfort Terrace,18722,0,4368_7778195_8040103,4368_294 -4358_80707,228,4368_9061,Earlsfort Terrace,13783,0,4368_7778195_8040111,4368_295 -4358_80707,227,4368_9062,Earlsfort Terrace,7133,0,4368_7778195_8040108,4368_298 -4358_80707,228,4368_9063,Earlsfort Terrace,13717,0,4368_7778195_8040104,4368_294 -4358_80707,227,4368_9064,Earlsfort Terrace,7139,0,4368_7778195_8040109,4368_294 -4358_80707,228,4368_9065,Earlsfort Terrace,13817,0,4368_7778195_8040115,4368_294 -4358_80707,229,4368_9066,Earlsfort Terrace,18738,0,4368_7778195_8040105,4368_295 -4358_80707,227,4368_9067,Earlsfort Terrace,7153,0,4368_7778195_8040110,4368_294 -4358_80707,228,4368_9068,Earlsfort Terrace,13739,0,4368_7778195_8040106,4368_294 -4358_80707,227,4368_9069,Earlsfort Terrace,7186,0,4368_7778195_8040115,4368_294 -4358_80756,228,4368_907,Drimnagh Road,13158,0,4368_7778195_7122005,4368_28 -4358_80707,228,4368_9070,Earlsfort Terrace,13749,0,4368_7778195_8040108,4368_294 -4358_80707,229,4368_9071,Earlsfort Terrace,18743,0,4368_7778195_8040106,4368_295 -4358_80707,227,4368_9072,Earlsfort Terrace,7173,0,4368_7778195_8040112,4368_294 -4358_80707,229,4368_9073,Earlsfort Terrace,18755,0,4368_7778195_8040107,4368_294 -4358_80707,228,4368_9074,Earlsfort Terrace,13827,0,4368_7778195_8040116,4368_295 -4358_80707,228,4368_9075,Earlsfort Terrace,13763,0,4368_7778195_8040109,4368_294 -4358_80707,229,4368_9076,Earlsfort Terrace,18714,0,4368_7778195_8040101,4368_295 -4358_80707,227,4368_9077,Earlsfort Terrace,7065,0,4368_7778195_8040101,4368_298 -4358_80707,228,4368_9078,Earlsfort Terrace,13773,0,4368_7778195_8040110,4368_294 -4358_80707,227,4368_9079,Earlsfort Terrace,7104,0,4368_7778195_8040104,4368_294 -4358_80756,227,4368_908,Drimnagh Road,3527,0,4368_7778195_7122018,4368_29 -4358_80707,229,4368_9080,Earlsfort Terrace,18787,0,4368_7778195_8040111,4368_294 -4358_80707,228,4368_9081,Earlsfort Terrace,13790,0,4368_7778195_8040112,4368_294 -4358_80707,227,4368_9082,Earlsfort Terrace,7080,0,4368_7778195_8040102,4368_294 -4358_80707,229,4368_9083,Earlsfort Terrace,18488,0,4368_7778195_8040112,4368_294 -4358_80707,228,4368_9084,Earlsfort Terrace,13682,0,4368_7778195_8040101,4368_295 -4358_80707,227,4368_9085,Earlsfort Terrace,7125,0,4368_7778195_8040107,4368_294 -4358_80707,228,4368_9086,Earlsfort Terrace,13839,0,4368_7778195_8040118,4368_294 -4358_80707,229,4368_9087,Earlsfort Terrace,18727,0,4368_7778195_8040104,4368_294 -4358_80707,227,4368_9088,Earlsfort Terrace,7205,0,4368_7778195_8040118,4368_294 -4358_80707,228,4368_9089,Earlsfort Terrace,13814,0,4368_7778195_8040114,4368_294 -4358_80756,229,4368_909,Drimnagh Road,18595,0,4368_7778195_7122007,4368_28 -4358_80707,229,4368_9090,Earlsfort Terrace,18767,0,4368_7778195_8040108,4368_294 -4358_80707,227,4368_9091,Earlsfort Terrace,7217,0,4368_7778195_8040119,4368_295 -4358_80707,228,4368_9092,Earlsfort Terrace,13729,0,4368_7778195_8040105,4368_298 -4358_80707,228,4368_9093,Earlsfort Terrace,13697,0,4368_7778195_8040102,4368_294 -4358_80707,227,4368_9094,Earlsfort Terrace,7197,0,4368_7778195_8040117,4368_294 -4358_80707,229,4368_9095,Earlsfort Terrace,18790,0,4368_7778195_8040113,4368_294 -4358_80707,228,4368_9096,Earlsfort Terrace,13804,0,4368_7778195_8040113,4368_294 -4358_80707,227,4368_9097,Earlsfort Terrace,7091,0,4368_7778195_8040103,4368_294 -4358_80707,229,4368_9098,Earlsfort Terrace,18777,0,4368_7778195_8040109,4368_294 -4358_80707,228,4368_9099,Earlsfort Terrace,13785,0,4368_7778195_8040111,4368_295 -4358_80760,229,4368_91,Shaw street,15730,0,4368_7778195_9001002,4368_1 -4358_80756,227,4368_910,Drimnagh Road,3632,0,4368_7778195_7122021,4368_28 -4358_80707,227,4368_9100,Earlsfort Terrace,7165,0,4368_7778195_8040111,4368_294 -4358_80707,228,4368_9101,Earlsfort Terrace,13719,0,4368_7778195_8040104,4368_294 -4358_80707,229,4368_9102,Earlsfort Terrace,18740,0,4368_7778195_8040105,4368_294 -4358_80707,227,4368_9103,Earlsfort Terrace,7227,0,4368_7778195_8040120,4368_294 -4358_80707,228,4368_9104,Earlsfort Terrace,13819,0,4368_7778195_8040115,4368_294 -4358_80707,227,4368_9105,Earlsfort Terrace,7141,0,4368_7778195_8040109,4368_294 -4358_80707,228,4368_9106,Earlsfort Terrace,13741,0,4368_7778195_8040106,4368_295 -4358_80707,229,4368_9107,Earlsfort Terrace,18745,0,4368_7778195_8040106,4368_298 -4358_80707,228,4368_9108,Earlsfort Terrace,13751,0,4368_7778195_8040108,4368_294 -4358_80707,227,4368_9109,Earlsfort Terrace,7155,0,4368_7778195_8040110,4368_294 -4358_80756,228,4368_911,Drimnagh Road,13182,0,4368_7778195_7122007,4368_29 -4358_80707,229,4368_9110,Earlsfort Terrace,18757,0,4368_7778195_8040107,4368_294 -4358_80707,228,4368_9111,Earlsfort Terrace,13829,0,4368_7778195_8040116,4368_294 -4358_80707,227,4368_9112,Earlsfort Terrace,7188,0,4368_7778195_8040115,4368_294 -4358_80707,228,4368_9113,Earlsfort Terrace,13765,0,4368_7778195_8040109,4368_294 -4358_80707,229,4368_9114,Earlsfort Terrace,18783,0,4368_7778195_8040110,4368_295 -4358_80707,227,4368_9115,Earlsfort Terrace,7175,0,4368_7778195_8040112,4368_294 -4358_80707,228,4368_9116,Earlsfort Terrace,13775,0,4368_7778195_8040110,4368_294 -4358_80707,229,4368_9117,Earlsfort Terrace,18802,0,4368_7778195_8040115,4368_294 -4358_80707,227,4368_9118,Earlsfort Terrace,7067,0,4368_7778195_8040101,4368_294 -4358_80707,228,4368_9119,Earlsfort Terrace,13792,0,4368_7778195_8040112,4368_294 -4358_80756,229,4368_912,Parnell Square,18547,0,4368_7778195_7122003,4368_30 -4358_80707,227,4368_9120,Earlsfort Terrace,7106,0,4368_7778195_8040104,4368_294 -4358_80707,229,4368_9121,Earlsfort Terrace,18490,0,4368_7778195_8040112,4368_295 -4358_80707,228,4368_9122,Earlsfort Terrace,13684,0,4368_7778195_8040101,4368_298 -4358_80707,228,4368_9123,Earlsfort Terrace,13841,0,4368_7778195_8040118,4368_294 -4358_80707,227,4368_9124,Earlsfort Terrace,7082,0,4368_7778195_8040102,4368_295 -4358_80707,229,4368_9125,Earlsfort Terrace,18729,0,4368_7778195_8040104,4368_294 -4358_80707,227,4368_9126,Earlsfort Terrace,7238,0,4368_7778195_8040122,4368_294 -4358_80707,228,4368_9127,Earlsfort Terrace,13816,0,4368_7778195_8040114,4368_295 -4358_80707,227,4368_9128,Earlsfort Terrace,7127,0,4368_7778195_8040107,4368_294 -4358_80707,229,4368_9129,Earlsfort Terrace,18769,0,4368_7778195_8040108,4368_295 -4358_80756,228,4368_913,Parnell Square,13138,0,4368_7778195_7122004,4368_31 -4358_80707,228,4368_9130,Earlsfort Terrace,13731,0,4368_7778195_8040105,4368_298 -4358_80707,227,4368_9131,Earlsfort Terrace,7207,0,4368_7778195_8040118,4368_294 -4358_80707,228,4368_9132,Earlsfort Terrace,13865,0,4368_7778195_8040122,4368_295 -4358_80707,229,4368_9133,Earlsfort Terrace,18792,0,4368_7778195_8040113,4368_294 -4358_80707,227,4368_9134,Earlsfort Terrace,7236,0,4368_7778195_8040121,4368_294 -4358_80707,228,4368_9135,Earlsfort Terrace,13699,0,4368_7778195_8040102,4368_295 -4358_80707,228,4368_9136,Earlsfort Terrace,13806,0,4368_7778195_8040113,4368_294 -4358_80707,229,4368_9137,Earlsfort Terrace,18779,0,4368_7778195_8040109,4368_295 -4358_80707,227,4368_9138,Earlsfort Terrace,7219,0,4368_7778195_8040119,4368_298 -4358_80707,227,4368_9139,Earlsfort Terrace,7199,0,4368_7778195_8040117,4368_294 -4358_80756,227,4368_914,Parnell Square,3566,0,4368_7778195_7122017,4368_32 -4358_80707,228,4368_9140,Earlsfort Terrace,13787,0,4368_7778195_8040111,4368_295 -4358_80707,229,4368_9141,Earlsfort Terrace,18800,0,4368_7778195_8040114,4368_294 -4358_80707,228,4368_9142,Earlsfort Terrace,13721,0,4368_7778195_8040104,4368_294 -4358_80707,227,4368_9143,Earlsfort Terrace,7093,0,4368_7778195_8040103,4368_295 -4358_80707,227,4368_9144,Earlsfort Terrace,7167,0,4368_7778195_8040111,4368_294 -4358_80707,228,4368_9145,Earlsfort Terrace,13821,0,4368_7778195_8040115,4368_295 -4358_80707,229,4368_9146,Earlsfort Terrace,18747,0,4368_7778195_8040106,4368_298 -4358_80707,227,4368_9147,Earlsfort Terrace,7229,0,4368_7778195_8040120,4368_294 -4358_80707,228,4368_9148,Earlsfort Terrace,13848,0,4368_7778195_8040120,4368_295 -4358_80707,229,4368_9149,Earlsfort Terrace,18759,0,4368_7778195_8040107,4368_294 -4358_80756,227,4368_915,Ashington,3498,1,4368_7778195_7122002,4368_33 -4358_80707,227,4368_9150,Earlsfort Terrace,7254,0,4368_7778195_8040125,4368_294 -4358_80707,228,4368_9151,Earlsfort Terrace,13753,0,4368_7778195_8040108,4368_295 -4358_80707,227,4368_9152,Earlsfort Terrace,7143,0,4368_7778195_8040109,4368_294 -4358_80707,229,4368_9153,Earlsfort Terrace,18785,0,4368_7778195_8040110,4368_295 -4358_80707,228,4368_9154,Earlsfort Terrace,13831,0,4368_7778195_8040116,4368_298 -4358_80707,227,4368_9155,Earlsfort Terrace,7157,0,4368_7778195_8040110,4368_294 -4358_80707,228,4368_9156,Earlsfort Terrace,13856,0,4368_7778195_8040121,4368_295 -4358_80707,229,4368_9157,Earlsfort Terrace,18804,0,4368_7778195_8040115,4368_294 -4358_80707,228,4368_9158,Earlsfort Terrace,13767,0,4368_7778195_8040109,4368_294 -4358_80707,227,4368_9159,Earlsfort Terrace,7190,0,4368_7778195_8040115,4368_295 -4358_80756,227,4368_916,Ashington,3421,1,4368_7778195_7122004,4368_33 -4358_80707,227,4368_9160,Earlsfort Terrace,7257,0,4368_7778195_8040127,4368_294 -4358_80707,228,4368_9161,Earlsfort Terrace,13777,0,4368_7778195_8040110,4368_295 -4358_80707,229,4368_9162,Earlsfort Terrace,18492,0,4368_7778195_8040112,4368_298 -4358_80707,228,4368_9163,Earlsfort Terrace,13794,0,4368_7778195_8040112,4368_294 -4358_80707,227,4368_9164,Earlsfort Terrace,7069,0,4368_7778195_8040101,4368_295 -4358_80707,229,4368_9165,Earlsfort Terrace,18731,0,4368_7778195_8040104,4368_294 -4358_80707,227,4368_9166,Earlsfort Terrace,7108,0,4368_7778195_8040104,4368_294 -4358_80707,228,4368_9167,Earlsfort Terrace,13686,0,4368_7778195_8040101,4368_295 -4358_80707,229,4368_9168,Earlsfort Terrace,18771,0,4368_7778195_8040108,4368_294 -4358_80707,228,4368_9169,Earlsfort Terrace,13843,0,4368_7778195_8040118,4368_295 -4358_80756,227,4368_917,Ashington,3438,1,4368_7778195_7122006,4368_33 -4358_80707,227,4368_9170,Earlsfort Terrace,7084,0,4368_7778195_8040102,4368_298 -4358_80707,227,4368_9171,Earlsfort Terrace,7240,0,4368_7778195_8040122,4368_294 -4358_80707,228,4368_9172,Earlsfort Terrace,13733,0,4368_7778195_8040105,4368_295 -4358_80707,228,4368_9173,Earlsfort Terrace,13867,0,4368_7778195_8040122,4368_294 -4358_80707,229,4368_9174,Earlsfort Terrace,18794,0,4368_7778195_8040113,4368_295 -4358_80707,227,4368_9175,Earlsfort Terrace,7253,0,4368_7778195_8040124,4368_298 -4358_80707,227,4368_9176,Earlsfort Terrace,7209,0,4368_7778195_8040118,4368_294 -4358_80707,228,4368_9177,Earlsfort Terrace,13701,0,4368_7778195_8040102,4368_295 -4358_80707,228,4368_9178,Earlsfort Terrace,13808,0,4368_7778195_8040113,4368_294 -4358_80707,227,4368_9179,Earlsfort Terrace,7221,0,4368_7778195_8040119,4368_295 -4358_80756,228,4368_918,Ashington,13183,1,4368_7778195_7122002,4368_33 -4358_80707,229,4368_9180,Earlsfort Terrace,18487,0,4368_7778195_8040116,4368_298 -4358_80707,227,4368_9181,Earlsfort Terrace,7201,0,4368_7778195_8040117,4368_294 -4358_80707,228,4368_9182,Earlsfort Terrace,13723,0,4368_7778195_8040104,4368_295 -4358_80707,227,4368_9183,Earlsfort Terrace,7095,0,4368_7778195_8040103,4368_294 -4358_80707,228,4368_9184,Earlsfort Terrace,13823,0,4368_7778195_8040115,4368_295 -4358_80707,229,4368_9185,Earlsfort Terrace,18749,0,4368_7778195_8040106,4368_298 -4358_80707,228,4368_9186,Earlsfort Terrace,13850,0,4368_7778195_8040120,4368_294 -4358_80707,227,4368_9187,Earlsfort Terrace,7248,0,4368_7778195_8040123,4368_294 -4358_80707,229,4368_9188,Earlsfort Terrace,18761,0,4368_7778195_8040107,4368_294 -4358_80707,228,4368_9189,Earlsfort Terrace,13755,0,4368_7778195_8040108,4368_294 -4358_80756,227,4368_919,Ashington,3597,1,4368_7778195_7122008,4368_33 -4358_80707,227,4368_9190,Earlsfort Terrace,7231,0,4368_7778195_8040120,4368_294 -4358_80707,229,4368_9191,Earlsfort Terrace,18806,0,4368_7778195_8040115,4368_294 -4358_80707,228,4368_9192,Earlsfort Terrace,13858,0,4368_7778195_8040121,4368_295 -4358_80707,227,4368_9193,Earlsfort Terrace,7145,0,4368_7778195_8040109,4368_294 -4358_80707,228,4368_9194,Earlsfort Terrace,13779,0,4368_7778195_8040110,4368_294 -4358_80707,227,4368_9195,Earlsfort Terrace,7259,0,4368_7778195_8040127,4368_294 -4358_80707,229,4368_9196,Earlsfort Terrace,18810,0,4368_7778195_8040117,4368_295 -4358_80707,228,4368_9197,Earlsfort Terrace,13796,0,4368_7778195_8040112,4368_294 -4358_80707,227,4368_9198,Earlsfort Terrace,7071,0,4368_7778195_8040101,4368_294 -4358_80707,229,4368_9199,Earlsfort Terrace,18733,0,4368_7778195_8040104,4368_294 -4358_80760,227,4368_92,Shaw street,1547,0,4368_7778195_9001010,4368_1 -4358_80756,228,4368_920,Ashington,13127,1,4368_7778195_7122004,4368_33 -4358_80707,227,4368_9200,Earlsfort Terrace,7110,0,4368_7778195_8040104,4368_294 -4358_80707,228,4368_9201,Earlsfort Terrace,13688,0,4368_7778195_8040101,4368_295 -4358_80707,229,4368_9202,Earlsfort Terrace,18773,0,4368_7778195_8040108,4368_294 -4358_80707,227,4368_9203,Earlsfort Terrace,7242,0,4368_7778195_8040122,4368_294 -4358_80707,228,4368_9204,Earlsfort Terrace,13869,0,4368_7778195_8040122,4368_294 -4358_80707,227,4368_9205,Earlsfort Terrace,7211,0,4368_7778195_8040118,4368_294 -4358_80707,229,4368_9206,Earlsfort Terrace,18796,0,4368_7778195_8040113,4368_295 -4358_80707,228,4368_9207,Earlsfort Terrace,13810,0,4368_7778195_8040113,4368_294 -4358_80707,227,4368_9208,Earlsfort Terrace,7223,0,4368_7778195_8040119,4368_294 -4358_80707,229,4368_9209,Earlsfort Terrace,18751,0,4368_7778195_8040106,4368_294 -4358_80756,227,4368_921,Ashington,3606,1,4368_7778195_7122011,4368_33 -4358_80707,227,4368_9210,Earlsfort Terrace,7097,0,4368_7778195_8040103,4368_294 -4358_80707,228,4368_9211,Earlsfort Terrace,13825,0,4368_7778195_8040115,4368_295 -4358_80707,229,4368_9212,Earlsfort Terrace,18763,0,4368_7778195_8040107,4368_294 -4358_80707,227,4368_9213,Earlsfort Terrace,7250,0,4368_7778195_8040123,4368_294 -4358_80707,228,4368_9214,Earlsfort Terrace,13852,0,4368_7778195_8040120,4368_294 -4358_80707,229,4368_9215,Earlsfort Terrace,18808,0,4368_7778195_8040115,4368_294 -4358_80707,227,4368_9216,Earlsfort Terrace,7233,0,4368_7778195_8040120,4368_295 -4358_80707,228,4368_9217,Earlsfort Terrace,13860,0,4368_7778195_8040121,4368_294 -4358_80707,227,4368_9218,Earlsfort Terrace,7147,0,4368_7778195_8040109,4368_294 -4358_80707,229,4368_9219,Earlsfort Terrace,18812,0,4368_7778195_8040117,4368_294 -4358_80756,227,4368_922,Ashington,3614,1,4368_7778195_7122001,4368_33 -4358_80707,227,4368_9220,Earlsfort Terrace,7261,0,4368_7778195_8040127,4368_294 -4358_80707,228,4368_9221,Earlsfort Terrace,13781,0,4368_7778195_8040110,4368_295 -4358_80707,229,4368_9222,Earlsfort Terrace,18735,0,4368_7778195_8040104,4368_294 -4358_80707,227,4368_9223,Earlsfort Terrace,7073,0,4368_7778195_8040101,4368_294 -4358_80707,228,4368_9224,Earlsfort Terrace,13798,0,4368_7778195_8040112,4368_294 -4358_80707,227,4368_9225,Earlsfort Terrace,7112,0,4368_7778195_8040104,4368_294 -4358_80707,229,4368_9226,Earlsfort Terrace,18775,0,4368_7778195_8040108,4368_295 -4358_80707,227,4368_9227,Earlsfort Terrace,7213,0,4368_7778195_8040118,4368_294 -4358_80707,228,4368_9228,O'Connell St,13812,0,4368_7778195_8040113,4368_297 -4358_80707,229,4368_9229,O'Connell St,18798,0,4368_7778195_8040113,4368_299 -4358_80756,228,4368_923,Ashington,13139,1,4368_7778195_7122006,4368_33 -4358_80707,227,4368_9230,Earlsfort Terrace,7225,0,4368_7778195_8040119,4368_294 -4358_80707,227,4368_9231,Charlestown,7060,1,4368_7778195_8040101,4368_300 -4358_80707,227,4368_9232,Charlestown,7099,1,4368_7778195_8040104,4368_300 -4358_80707,227,4368_9233,Charlestown,7113,1,4368_7778195_8040105,4368_300 -4358_80707,227,4368_9234,Charlestown,7075,1,4368_7778195_8040102,4368_300 -4358_80707,227,4368_9235,Charlestown,7120,1,4368_7778195_8040107,4368_300 -4358_80707,227,4368_9236,Charlestown,7086,1,4368_7778195_8040103,4368_300 -4358_80707,228,4368_9237,Charlestown,13677,1,4368_7778195_8040101,4368_300 -4358_80707,227,4368_9238,Charlestown,7160,1,4368_7778195_8040111,4368_300 -4358_80707,227,4368_9239,Charlestown,7118,1,4368_7778195_8040106,4368_300 -4358_80756,227,4368_924,Ashington,3537,1,4368_7778195_7122003,4368_33 -4358_80707,228,4368_9240,Charlestown,13702,1,4368_7778195_8040103,4368_301 -4358_80707,227,4368_9241,Charlestown,7130,1,4368_7778195_8040108,4368_300 -4358_80707,228,4368_9242,Charlestown,13724,1,4368_7778195_8040105,4368_300 -4358_80707,227,4368_9243,Charlestown,7136,1,4368_7778195_8040109,4368_300 -4358_80707,228,4368_9244,Charlestown,13692,1,4368_7778195_8040102,4368_300 -4358_80707,227,4368_9245,Charlestown,7150,1,4368_7778195_8040110,4368_301 -4358_80707,227,4368_9246,Charlestown,7170,1,4368_7778195_8040112,4368_300 -4358_80707,228,4368_9247,Charlestown,13714,1,4368_7778195_8040104,4368_300 -4358_80707,227,4368_9248,Charlestown,7191,1,4368_7778195_8040116,4368_300 -4358_80707,228,4368_9249,Charlestown,13736,1,4368_7778195_8040106,4368_300 -4358_80756,229,4368_925,Ashington,18566,1,4368_7778195_7122001,4368_33 -4358_80707,227,4368_9250,Charlestown,7062,1,4368_7778195_8040101,4368_301 -4358_80707,227,4368_9251,Charlestown,7178,1,4368_7778195_8040113,4368_300 -4358_80707,228,4368_9252,Charlestown,13746,1,4368_7778195_8040108,4368_300 -4358_80707,227,4368_9253,Charlestown,7101,1,4368_7778195_8040104,4368_300 -4358_80707,228,4368_9254,Charlestown,13760,1,4368_7778195_8040109,4368_300 -4358_80707,229,4368_9255,Charlestown,18711,1,4368_7778195_8040101,4368_301 -4358_80707,227,4368_9256,Charlestown,7115,1,4368_7778195_8040105,4368_302 -4358_80707,227,4368_9257,Charlestown,7077,1,4368_7778195_8040102,4368_300 -4358_80707,228,4368_9258,Charlestown,13770,1,4368_7778195_8040110,4368_300 -4358_80707,227,4368_9259,Charlestown,7122,1,4368_7778195_8040107,4368_300 -4358_80756,227,4368_926,Ashington,3501,1,4368_7778195_7122013,4368_34 -4358_80707,227,4368_9260,Charlestown,7202,1,4368_7778195_8040118,4368_300 -4358_80707,229,4368_9261,Charlestown,18717,1,4368_7778195_8040102,4368_301 -4358_80707,228,4368_9262,Charlestown,13679,1,4368_7778195_8040101,4368_302 -4358_80707,227,4368_9263,Charlestown,7214,1,4368_7778195_8040119,4368_300 -4358_80707,228,4368_9264,Charlestown,13704,1,4368_7778195_8040103,4368_300 -4358_80707,227,4368_9265,Charlestown,7194,1,4368_7778195_8040117,4368_300 -4358_80707,229,4368_9266,Charlestown,18724,1,4368_7778195_8040104,4368_300 -4358_80707,227,4368_9267,Charlestown,7088,1,4368_7778195_8040103,4368_301 -4358_80707,228,4368_9268,Charlestown,13726,1,4368_7778195_8040105,4368_302 -4358_80707,227,4368_9269,Charlestown,7162,1,4368_7778195_8040111,4368_300 -4358_80756,228,4368_927,Ashington,13100,1,4368_7778195_7122001,4368_33 -4358_80707,228,4368_9270,Charlestown,13694,1,4368_7778195_8040102,4368_300 -4358_80707,227,4368_9271,Charlestown,7182,1,4368_7778195_8040114,4368_300 -4358_80707,229,4368_9272,Charlestown,18721,1,4368_7778195_8040103,4368_300 -4358_80707,228,4368_9273,Charlestown,13782,1,4368_7778195_8040111,4368_301 -4358_80707,227,4368_9274,Charlestown,7132,1,4368_7778195_8040108,4368_302 -4358_80707,227,4368_9275,Charlestown,7138,1,4368_7778195_8040109,4368_300 -4358_80707,228,4368_9276,Charlestown,13716,1,4368_7778195_8040104,4368_300 -4358_80707,227,4368_9277,Charlestown,7152,1,4368_7778195_8040110,4368_300 -4358_80707,229,4368_9278,Charlestown,18737,1,4368_7778195_8040105,4368_301 -4358_80707,228,4368_9279,Charlestown,13738,1,4368_7778195_8040106,4368_300 -4358_80756,227,4368_928,Ashington,3395,1,4368_7778195_7122005,4368_33 -4358_80707,229,4368_9280,Charlestown,18742,1,4368_7778195_8040106,4368_301 -4358_80707,227,4368_9281,Charlestown,7185,1,4368_7778195_8040115,4368_302 -4358_80707,229,4368_9282,Charlestown,18754,1,4368_7778195_8040107,4368_300 -4358_80707,227,4368_9283,Charlestown,7172,1,4368_7778195_8040112,4368_301 -4358_80707,228,4368_9284,Charlestown,13748,1,4368_7778195_8040108,4368_300 -4358_80707,227,4368_9285,Charlestown,7064,1,4368_7778195_8040101,4368_300 -4358_80707,228,4368_9286,Charlestown,13762,1,4368_7778195_8040109,4368_300 -4358_80707,229,4368_9287,Charlestown,18713,1,4368_7778195_8040101,4368_301 -4358_80707,227,4368_9288,Charlestown,7103,1,4368_7778195_8040104,4368_300 -4358_80707,228,4368_9289,Charlestown,13772,1,4368_7778195_8040110,4368_300 -4358_80756,227,4368_929,Ashington,3386,1,4368_7778195_7122007,4368_33 -4358_80707,227,4368_9290,Charlestown,7079,1,4368_7778195_8040102,4368_300 -4358_80707,228,4368_9291,Charlestown,13789,1,4368_7778195_8040112,4368_300 -4358_80707,229,4368_9292,Charlestown,18719,1,4368_7778195_8040102,4368_301 -4358_80707,227,4368_9293,Charlestown,7124,1,4368_7778195_8040107,4368_300 -4358_80707,228,4368_9294,Charlestown,13681,1,4368_7778195_8040101,4368_300 -4358_80707,229,4368_9295,Charlestown,18726,1,4368_7778195_8040104,4368_300 -4358_80707,227,4368_9296,Charlestown,7204,1,4368_7778195_8040118,4368_301 -4358_80707,228,4368_9297,Charlestown,13706,1,4368_7778195_8040103,4368_302 -4358_80707,228,4368_9298,Charlestown,13813,1,4368_7778195_8040114,4368_300 -4358_80707,227,4368_9299,Charlestown,7216,1,4368_7778195_8040119,4368_300 -4358_80760,228,4368_93,Shaw street,9382,0,4368_7778195_9001001,4368_1 -4358_80756,228,4368_930,Ashington,13116,1,4368_7778195_7122003,4368_33 -4358_80707,229,4368_9300,Charlestown,18766,1,4368_7778195_8040108,4368_300 -4358_80707,228,4368_9301,Charlestown,13728,1,4368_7778195_8040105,4368_301 -4358_80707,227,4368_9302,Charlestown,7196,1,4368_7778195_8040117,4368_300 -4358_80707,228,4368_9303,Charlestown,13696,1,4368_7778195_8040102,4368_300 -4358_80707,227,4368_9304,Charlestown,7090,1,4368_7778195_8040103,4368_300 -4358_80707,228,4368_9305,Charlestown,13803,1,4368_7778195_8040113,4368_300 -4358_80707,229,4368_9306,Charlestown,18776,1,4368_7778195_8040109,4368_301 -4358_80707,227,4368_9307,Charlestown,7164,1,4368_7778195_8040111,4368_300 -4358_80707,228,4368_9308,Charlestown,13784,1,4368_7778195_8040111,4368_300 -4358_80707,228,4368_9309,Charlestown,13718,1,4368_7778195_8040104,4368_300 -4358_80756,229,4368_931,Ashington,18536,1,4368_7778195_7122003,4368_33 -4358_80707,227,4368_9310,Charlestown,7134,1,4368_7778195_8040108,4368_301 -4358_80707,229,4368_9311,Charlestown,18739,1,4368_7778195_8040105,4368_302 -4358_80707,228,4368_9312,Charlestown,13818,1,4368_7778195_8040115,4368_300 -4358_80707,227,4368_9313,Charlestown,7140,1,4368_7778195_8040109,4368_300 -4358_80707,229,4368_9314,Charlestown,18744,1,4368_7778195_8040106,4368_300 -4358_80707,228,4368_9315,Charlestown,13740,1,4368_7778195_8040106,4368_300 -4358_80707,227,4368_9316,Charlestown,7154,1,4368_7778195_8040110,4368_300 -4358_80707,229,4368_9317,Charlestown,18756,1,4368_7778195_8040107,4368_300 -4358_80707,228,4368_9318,Charlestown,13750,1,4368_7778195_8040108,4368_301 -4358_80707,227,4368_9319,Charlestown,7187,1,4368_7778195_8040115,4368_300 -4358_80756,227,4368_932,Ashington,3504,1,4368_7778195_7122009,4368_33 -4358_80707,229,4368_9320,Charlestown,18715,1,4368_7778195_8040101,4368_300 -4358_80707,228,4368_9321,Charlestown,13828,1,4368_7778195_8040116,4368_301 -4358_80707,227,4368_9322,Charlestown,7174,1,4368_7778195_8040112,4368_300 -4358_80707,228,4368_9323,Charlestown,13764,1,4368_7778195_8040109,4368_300 -4358_80707,229,4368_9324,Charlestown,18782,1,4368_7778195_8040110,4368_301 -4358_80707,229,4368_9325,Charlestown,18788,1,4368_7778195_8040111,4368_300 -4358_80707,228,4368_9326,Charlestown,13774,1,4368_7778195_8040110,4368_301 -4358_80707,227,4368_9327,Charlestown,7066,1,4368_7778195_8040101,4368_302 -4358_80707,228,4368_9328,Charlestown,13791,1,4368_7778195_8040112,4368_300 -4358_80707,227,4368_9329,Charlestown,7105,1,4368_7778195_8040104,4368_300 -4358_80756,228,4368_933,Ashington,13149,1,4368_7778195_7122005,4368_33 -4358_80707,229,4368_9330,Charlestown,18489,1,4368_7778195_8040112,4368_300 -4358_80707,228,4368_9331,Charlestown,13683,1,4368_7778195_8040101,4368_300 -4358_80707,227,4368_9332,Charlestown,7081,1,4368_7778195_8040102,4368_300 -4358_80707,229,4368_9333,Charlestown,18728,1,4368_7778195_8040104,4368_300 -4358_80707,228,4368_9334,Charlestown,13840,1,4368_7778195_8040118,4368_301 -4358_80707,227,4368_9335,Charlestown,7126,1,4368_7778195_8040107,4368_300 -4358_80707,228,4368_9336,Charlestown,13815,1,4368_7778195_8040114,4368_300 -4358_80707,229,4368_9337,Charlestown,18768,1,4368_7778195_8040108,4368_300 -4358_80707,227,4368_9338,Charlestown,7206,1,4368_7778195_8040118,4368_300 -4358_80707,228,4368_9339,Charlestown,13730,1,4368_7778195_8040105,4368_300 -4358_80756,227,4368_934,Ashington,3574,1,4368_7778195_7122010,4368_33 -4358_80707,228,4368_9340,Charlestown,13698,1,4368_7778195_8040102,4368_300 -4358_80707,227,4368_9341,Charlestown,7218,1,4368_7778195_8040119,4368_301 -4358_80707,229,4368_9342,Charlestown,18791,1,4368_7778195_8040113,4368_302 -4358_80707,228,4368_9343,Charlestown,13805,1,4368_7778195_8040113,4368_300 -4358_80707,227,4368_9344,Charlestown,7198,1,4368_7778195_8040117,4368_300 -4358_80707,229,4368_9345,Charlestown,18778,1,4368_7778195_8040109,4368_300 -4358_80707,228,4368_9346,Charlestown,13786,1,4368_7778195_8040111,4368_300 -4358_80707,227,4368_9347,Charlestown,7092,1,4368_7778195_8040103,4368_300 -4358_80707,229,4368_9348,Charlestown,18799,1,4368_7778195_8040114,4368_300 -4358_80707,228,4368_9349,Charlestown,13720,1,4368_7778195_8040104,4368_301 -4358_80756,229,4368_935,Ashington,18557,1,4368_7778195_7122002,4368_33 -4358_80707,227,4368_9350,Charlestown,7166,1,4368_7778195_8040111,4368_300 -4358_80707,228,4368_9351,Charlestown,13820,1,4368_7778195_8040115,4368_300 -4358_80707,229,4368_9352,Charlestown,18746,1,4368_7778195_8040106,4368_300 -4358_80707,227,4368_9353,Charlestown,7228,1,4368_7778195_8040120,4368_300 -4358_80707,228,4368_9354,Charlestown,13847,1,4368_7778195_8040120,4368_300 -4358_80707,227,4368_9355,Charlestown,7142,1,4368_7778195_8040109,4368_300 -4358_80707,229,4368_9356,Charlestown,18758,1,4368_7778195_8040107,4368_301 -4358_80707,228,4368_9357,Charlestown,13752,1,4368_7778195_8040108,4368_302 -4358_80707,228,4368_9358,Charlestown,13830,1,4368_7778195_8040116,4368_300 -4358_80707,227,4368_9359,Charlestown,7156,1,4368_7778195_8040110,4368_300 -4358_80756,228,4368_936,Ashington,13173,1,4368_7778195_7122007,4368_33 -4358_80707,229,4368_9360,Charlestown,18784,1,4368_7778195_8040110,4368_300 -4358_80707,228,4368_9361,Charlestown,13855,1,4368_7778195_8040121,4368_300 -4358_80707,227,4368_9362,Charlestown,7189,1,4368_7778195_8040115,4368_300 -4358_80707,229,4368_9363,Charlestown,18803,1,4368_7778195_8040115,4368_300 -4358_80707,228,4368_9364,Charlestown,13766,1,4368_7778195_8040109,4368_301 -4358_80707,227,4368_9365,Charlestown,7176,1,4368_7778195_8040112,4368_300 -4358_80707,228,4368_9366,Charlestown,13776,1,4368_7778195_8040110,4368_300 -4358_80707,229,4368_9367,Charlestown,18491,1,4368_7778195_8040112,4368_300 -4358_80707,227,4368_9368,Charlestown,7068,1,4368_7778195_8040101,4368_301 -4358_80707,228,4368_9369,Charlestown,13793,1,4368_7778195_8040112,4368_300 -4358_80756,227,4368_937,Ashington,3584,1,4368_7778195_7122012,4368_34 -4358_80707,227,4368_9370,Charlestown,7107,1,4368_7778195_8040104,4368_300 -4358_80707,229,4368_9371,Charlestown,18730,1,4368_7778195_8040104,4368_300 -4358_80707,228,4368_9372,Charlestown,13685,1,4368_7778195_8040101,4368_301 -4358_80707,227,4368_9373,Charlestown,7083,1,4368_7778195_8040102,4368_300 -4358_80707,228,4368_9374,Charlestown,13842,1,4368_7778195_8040118,4368_300 -4358_80707,227,4368_9375,Charlestown,7239,1,4368_7778195_8040122,4368_300 -4358_80707,229,4368_9376,Charlestown,18770,1,4368_7778195_8040108,4368_301 -4358_80707,228,4368_9377,Charlestown,13732,1,4368_7778195_8040105,4368_300 -4358_80707,227,4368_9378,Charlestown,7252,1,4368_7778195_8040124,4368_300 -4358_80707,228,4368_9379,Charlestown,13866,1,4368_7778195_8040122,4368_300 -4358_80756,227,4368_938,Ashington,3500,1,4368_7778195_7122002,4368_33 -4358_80707,229,4368_9380,Charlestown,18793,1,4368_7778195_8040113,4368_301 -4358_80707,227,4368_9381,Charlestown,7208,1,4368_7778195_8040118,4368_300 -4358_80707,228,4368_9382,Charlestown,13700,1,4368_7778195_8040102,4368_300 -4358_80707,227,4368_9383,Charlestown,7237,1,4368_7778195_8040121,4368_300 -4358_80707,229,4368_9384,Charlestown,18486,1,4368_7778195_8040116,4368_301 -4358_80707,228,4368_9385,Charlestown,13807,1,4368_7778195_8040113,4368_300 -4358_80707,227,4368_9386,Charlestown,7220,1,4368_7778195_8040119,4368_300 -4358_80707,229,4368_9387,Charlestown,18801,1,4368_7778195_8040114,4368_300 -4358_80707,228,4368_9388,Charlestown,13788,1,4368_7778195_8040111,4368_301 -4358_80707,227,4368_9389,Charlestown,7200,1,4368_7778195_8040117,4368_300 -4358_80756,228,4368_939,Ashington,13185,1,4368_7778195_7122002,4368_33 -4358_80707,228,4368_9390,Charlestown,13722,1,4368_7778195_8040104,4368_300 -4358_80707,227,4368_9391,Charlestown,7094,1,4368_7778195_8040103,4368_300 -4358_80707,229,4368_9392,Charlestown,18748,1,4368_7778195_8040106,4368_301 -4358_80707,228,4368_9393,Charlestown,13822,1,4368_7778195_8040115,4368_300 -4358_80707,227,4368_9394,Charlestown,7247,1,4368_7778195_8040123,4368_300 -4358_80707,229,4368_9395,Charlestown,18760,1,4368_7778195_8040107,4368_300 -4358_80707,228,4368_9396,Charlestown,13849,1,4368_7778195_8040120,4368_301 -4358_80707,227,4368_9397,Charlestown,7256,1,4368_7778195_8040126,4368_300 -4358_80707,228,4368_9398,Charlestown,13754,1,4368_7778195_8040108,4368_300 -4358_80707,229,4368_9399,Charlestown,18786,1,4368_7778195_8040110,4368_300 -4358_80760,227,4368_94,Shaw street,1641,0,4368_7778195_9001011,4368_1 -4358_80756,229,4368_940,Ashington,18576,1,4368_7778195_7122006,4368_33 -4358_80707,227,4368_9400,Charlestown,7230,1,4368_7778195_8040120,4368_301 -4358_80707,228,4368_9401,Charlestown,13832,1,4368_7778195_8040116,4368_300 -4358_80707,227,4368_9402,Charlestown,7255,1,4368_7778195_8040125,4368_300 -4358_80707,229,4368_9403,Charlestown,18805,1,4368_7778195_8040115,4368_300 -4358_80707,228,4368_9404,Charlestown,13857,1,4368_7778195_8040121,4368_301 -4358_80707,227,4368_9405,Charlestown,7144,1,4368_7778195_8040109,4368_300 -4358_80707,228,4368_9406,Charlestown,13768,1,4368_7778195_8040109,4368_300 -4358_80707,227,4368_9407,Charlestown,7158,1,4368_7778195_8040110,4368_300 -4358_80707,228,4368_9408,Charlestown,13778,1,4368_7778195_8040110,4368_300 -4358_80707,229,4368_9409,Charlestown,18493,1,4368_7778195_8040112,4368_301 -4358_80756,227,4368_941,Ashington,3576,1,4368_7778195_7122014,4368_33 -4358_80707,227,4368_9410,Charlestown,7258,1,4368_7778195_8040127,4368_300 -4358_80707,228,4368_9411,Charlestown,13795,1,4368_7778195_8040112,4368_300 -4358_80707,227,4368_9412,Charlestown,7070,1,4368_7778195_8040101,4368_300 -4358_80707,229,4368_9413,Charlestown,18732,1,4368_7778195_8040104,4368_300 -4358_80707,227,4368_9414,Charlestown,7109,1,4368_7778195_8040104,4368_300 -4358_80707,228,4368_9415,Charlestown,13687,1,4368_7778195_8040101,4368_301 -4358_80707,227,4368_9416,Charlestown,7241,1,4368_7778195_8040122,4368_300 -4358_80707,229,4368_9417,Charlestown,18772,1,4368_7778195_8040108,4368_301 -4358_80707,228,4368_9418,Charlestown,13734,1,4368_7778195_8040105,4368_302 -4358_80707,227,4368_9419,Charlestown,7210,1,4368_7778195_8040118,4368_300 -4358_80756,228,4368_942,Ashington,13129,1,4368_7778195_7122004,4368_33 -4358_80707,228,4368_9420,Charlestown,13868,1,4368_7778195_8040122,4368_301 -4358_80707,229,4368_9421,Charlestown,18795,1,4368_7778195_8040113,4368_300 -4358_80707,228,4368_9422,Charlestown,13809,1,4368_7778195_8040113,4368_300 -4358_80707,227,4368_9423,Charlestown,7222,1,4368_7778195_8040119,4368_301 -4358_80707,229,4368_9424,Charlestown,18750,1,4368_7778195_8040106,4368_300 -4358_80707,227,4368_9425,Charlestown,7096,1,4368_7778195_8040103,4368_300 -4358_80707,228,4368_9426,Charlestown,13824,1,4368_7778195_8040115,4368_300 -4358_80707,229,4368_9427,Charlestown,18762,1,4368_7778195_8040107,4368_300 -4358_80707,227,4368_9428,Charlestown,7249,1,4368_7778195_8040123,4368_301 -4358_80707,228,4368_9429,Charlestown,13851,1,4368_7778195_8040120,4368_300 -4358_80756,227,4368_943,Ashington,3423,1,4368_7778195_7122004,4368_33 -4358_80707,227,4368_9430,Charlestown,7232,1,4368_7778195_8040120,4368_300 -4358_80707,229,4368_9431,Charlestown,18807,1,4368_7778195_8040115,4368_300 -4358_80707,227,4368_9432,Charlestown,7146,1,4368_7778195_8040109,4368_300 -4358_80707,228,4368_9433,Charlestown,13859,1,4368_7778195_8040121,4368_301 -4358_80707,229,4368_9434,Charlestown,18811,1,4368_7778195_8040117,4368_300 -4358_80707,227,4368_9435,Charlestown,7260,1,4368_7778195_8040127,4368_300 -4358_80707,228,4368_9436,Charlestown,13780,1,4368_7778195_8040110,4368_300 -4358_80707,229,4368_9437,Charlestown,18734,1,4368_7778195_8040104,4368_300 -4358_80707,227,4368_9438,Charlestown,7072,1,4368_7778195_8040101,4368_301 -4358_80707,228,4368_9439,Charlestown,13797,1,4368_7778195_8040112,4368_300 -4358_80756,229,4368_944,Ashington,18525,1,4368_7778195_7122004,4368_33 -4358_80707,227,4368_9440,Charlestown,7111,1,4368_7778195_8040104,4368_300 -4358_80707,229,4368_9441,Charlestown,18774,1,4368_7778195_8040108,4368_300 -4358_80707,227,4368_9442,Charlestown,7243,1,4368_7778195_8040122,4368_300 -4358_80707,228,4368_9443,Charlestown,13870,1,4368_7778195_8040122,4368_301 -4358_80707,229,4368_9444,Charlestown,18797,1,4368_7778195_8040113,4368_300 -4358_80707,227,4368_9445,Charlestown,7212,1,4368_7778195_8040118,4368_300 -4358_80707,228,4368_9446,Charlestown,13811,1,4368_7778195_8040113,4368_300 -4358_80707,227,4368_9447,Charlestown,7224,1,4368_7778195_8040119,4368_300 -4358_80707,229,4368_9448,Charlestown,18752,1,4368_7778195_8040106,4368_301 -4358_80707,228,4368_9449,Charlestown,13826,1,4368_7778195_8040115,4368_300 -4358_80756,228,4368_945,Ashington,13141,1,4368_7778195_7122006,4368_33 -4358_80707,227,4368_9450,Charlestown,7098,1,4368_7778195_8040103,4368_300 -4358_80707,229,4368_9451,Charlestown,18764,1,4368_7778195_8040107,4368_300 -4358_80707,227,4368_9452,Charlestown,7251,1,4368_7778195_8040123,4368_300 -4358_80707,228,4368_9453,Charlestown,13853,1,4368_7778195_8040120,4368_301 -4358_80707,229,4368_9454,Charlestown,18809,1,4368_7778195_8040115,4368_300 -4358_80707,227,4368_9455,Charlestown,7234,1,4368_7778195_8040120,4368_301 -4358_80707,228,4368_9456,Charlestown,13861,1,4368_7778195_8040121,4368_302 -4358_80707,227,4368_9457,Charlestown,7148,1,4368_7778195_8040109,4368_300 -4358_80708,228,4368_9458,Toberburr,13742,0,4368_7778195_8040107,4368_304 -4358_80708,227,4368_9459,Toberburr,7180,0,4368_7778195_8040114,4368_304 -4358_80756,227,4368_946,Ashington,3440,1,4368_7778195_7122006,4368_33 -4358_80708,227,4368_9460,Toberburr,7226,0,4368_7778195_8040120,4368_304 -4358_80708,229,4368_9461,Toberburr,18723,0,4368_7778195_8040103,4368_304 -4358_80708,228,4368_9462,Toberburr,13834,0,4368_7778195_8040117,4368_304 -4358_80708,228,4368_9463,Toberburr,13844,0,4368_7778195_8040119,4368_304 -4358_80708,229,4368_9464,Toberburr,18741,0,4368_7778195_8040105,4368_304 -4358_80708,227,4368_9465,Toberburr,7245,0,4368_7778195_8040123,4368_304 -4358_80708,227,4368_9466,Toberburr,7128,0,4368_7778195_8040107,4368_304 -4358_80708,228,4368_9467,Toberburr,13846,0,4368_7778195_8040119,4368_304 -4358_80708,229,4368_9468,Toberburr,18780,0,4368_7778195_8040109,4368_304 -4358_80708,227,4368_9469,Toberburr,7168,0,4368_7778195_8040111,4368_304 -4358_80756,228,4368_947,Ashington,13165,1,4368_7778195_7122009,4368_33 -4358_80708,227,4368_9470,Toberburr,7244,0,4368_7778195_8040122,4368_303 -4358_80708,229,4368_9471,Toberburr,18753,0,4368_7778195_8040106,4368_305 -4358_80708,228,4368_9472,Toberburr,13854,0,4368_7778195_8040120,4368_306 -4358_80708,227,4368_9473,O'Connell St,7183,1,4368_7778195_8040115,4368_307 -4358_80708,228,4368_9474,O'Connell St,13743,1,4368_7778195_8040107,4368_307 -4358_80708,227,4368_9475,O'Connell St,7181,1,4368_7778195_8040114,4368_307 -4358_80708,228,4368_9476,O'Connell St,13744,1,4368_7778195_8040107,4368_307 -4358_80708,227,4368_9477,O'Connell St,7116,1,4368_7778195_8040105,4368_307 -4358_80708,229,4368_9478,O'Connell St,18781,1,4368_7778195_8040110,4368_307 -4358_80708,228,4368_9479,O'Connell St,13835,1,4368_7778195_8040117,4368_307 -4358_80756,229,4368_948,Ashington,18549,1,4368_7778195_7122005,4368_33 -4358_80708,227,4368_9480,O'Connell St,7235,1,4368_7778195_8040121,4368_307 -4358_80708,229,4368_9481,O'Connell St,18789,1,4368_7778195_8040111,4368_307 -4358_80708,228,4368_9482,O'Connell St,13845,1,4368_7778195_8040119,4368_307 -4358_80708,227,4368_9483,O'Connell St,7246,1,4368_7778195_8040123,4368_307 -4358_80708,228,4368_9484,O'Connell St,13833,1,4368_7778195_8040116,4368_307 -4358_80708,227,4368_9485,O'Connell St,7159,1,4368_7778195_8040110,4368_307 -4358_80708,229,4368_9486,O'Connell St,18494,1,4368_7778195_8040112,4368_307 -4358_80710,227,4368_9487,Tyrrelstown,6722,0,4368_7778195_8040202,4368_309 -4358_80710,227,4368_9488,Tyrrelstown,6728,0,4368_7778195_8040204,4368_309 -4358_80710,227,4368_9489,Tyrrelstown,6739,0,4368_7778195_8040207,4368_309 -4358_80756,227,4368_949,Ashington,3599,1,4368_7778195_7122008,4368_34 -4358_80710,228,4368_9490,Tyrrelstown,13467,0,4368_7778195_8040203,4368_308 -4358_80710,227,4368_9491,Tyrrelstown,6719,0,4368_7778195_8040201,4368_309 -4358_80710,228,4368_9492,Tyrrelstown,13470,0,4368_7778195_8040204,4368_308 -4358_80710,227,4368_9493,Tyrrelstown,6726,0,4368_7778195_8040203,4368_309 -4358_80710,227,4368_9494,Tyrrelstown,6732,0,4368_7778195_8040205,4368_309 -4358_80710,227,4368_9495,Tyrrelstown,6736,0,4368_7778195_8040206,4368_309 -4358_80710,228,4368_9496,Tyrrelstown,13464,0,4368_7778195_8040201,4368_308 -4358_80710,227,4368_9497,Tyrrelstown,6744,0,4368_7778195_8040208,4368_309 -4358_80710,228,4368_9498,Tyrrelstown,13473,0,4368_7778195_8040205,4368_308 -4358_80710,227,4368_9499,Tyrrelstown,6724,0,4368_7778195_8040202,4368_309 -4358_80760,229,4368_95,Shaw street,15515,0,4368_7778195_9001003,4368_1 -4358_80756,228,4368_950,Ashington,13102,1,4368_7778195_7122001,4368_33 -4358_80710,227,4368_9500,Tyrrelstown,6730,0,4368_7778195_8040204,4368_309 -4358_80710,229,4368_9501,Tyrrelstown,18674,0,4368_7778195_8040201,4368_308 -4358_80710,227,4368_9502,Tyrrelstown,6741,0,4368_7778195_8040207,4368_309 -4358_80710,228,4368_9503,Tyrrelstown,13469,0,4368_7778195_8040203,4368_308 -4358_80710,227,4368_9504,Tyrrelstown,6721,0,4368_7778195_8040201,4368_309 -4358_80710,228,4368_9505,Tyrrelstown,13472,0,4368_7778195_8040204,4368_308 -4358_80710,229,4368_9506,Tyrrelstown,18680,0,4368_7778195_8040202,4368_308 -4358_80710,227,4368_9507,Tyrrelstown,6734,0,4368_7778195_8040205,4368_309 -4358_80710,228,4368_9508,Tyrrelstown,13475,0,4368_7778195_8040205,4368_308 -4358_80710,227,4368_9509,Tyrrelstown,6738,0,4368_7778195_8040206,4368_309 -4358_80756,227,4368_951,Ashington,3608,1,4368_7778195_7122011,4368_33 -4358_80710,229,4368_9510,Tyrrelstown,18676,0,4368_7778195_8040201,4368_308 -4358_80710,228,4368_9511,Tyrrelstown,13478,0,4368_7778195_8040206,4368_308 -4358_80710,227,4368_9512,Tyrrelstown,6747,0,4368_7778195_8040209,4368_309 -4358_80710,229,4368_9513,Tyrrelstown,18682,0,4368_7778195_8040202,4368_308 -4358_80710,227,4368_9514,Tyrrelstown,6750,0,4368_7778195_8040211,4368_309 -4358_80710,228,4368_9515,Tyrrelstown,13481,0,4368_7778195_8040207,4368_308 -4358_80710,227,4368_9516,Tyrrelstown,6749,0,4368_7778195_8040210,4368_309 -4358_80710,229,4368_9517,Tyrrelstown,18678,0,4368_7778195_8040201,4368_308 -4358_80710,228,4368_9518,Tyrrelstown,13483,0,4368_7778195_8040208,4368_308 -4358_80710,227,4368_9519,Tyrrelstown,6753,0,4368_7778195_8040212,4368_309 -4358_80756,229,4368_952,Ashington,18568,1,4368_7778195_7122001,4368_33 -4358_80710,229,4368_9520,Tyrrelstown,18688,0,4368_7778195_8040204,4368_308 -4358_80710,228,4368_9521,Tyrrelstown,13485,0,4368_7778195_8040209,4368_311 -4358_80710,227,4368_9522,Hollystown,6755,0,4368_7778195_8040213,4368_310 -4358_80710,227,4368_9523,Tyrrelstown,6760,0,4368_7778195_8040215,4368_309 -4358_80710,228,4368_9524,Tyrrelstown,13486,0,4368_7778195_8040210,4368_308 -4358_80710,229,4368_9525,Tyrrelstown,18685,0,4368_7778195_8040203,4368_308 -4358_80710,227,4368_9526,Tyrrelstown,6757,0,4368_7778195_8040214,4368_309 -4358_80710,228,4368_9527,Tyrrelstown,13492,0,4368_7778195_8040212,4368_308 -4358_80710,227,4368_9528,Tyrrelstown,6763,0,4368_7778195_8040216,4368_309 -4358_80710,229,4368_9529,Tyrrelstown,18690,0,4368_7778195_8040204,4368_308 -4358_80756,228,4368_953,Ashington,13118,1,4368_7778195_7122003,4368_33 -4358_80710,228,4368_9530,Tyrrelstown,13490,0,4368_7778195_8040211,4368_308 -4358_80710,227,4368_9531,Tyrrelstown,6766,0,4368_7778195_8040217,4368_309 -4358_80710,227,4368_9532,Tyrrelstown,6767,0,4368_7778195_8040218,4368_309 -4358_80710,229,4368_9533,Tyrrelstown,18692,0,4368_7778195_8040205,4368_308 -4358_80710,228,4368_9534,Tyrrelstown,13488,0,4368_7778195_8040210,4368_308 -4358_80710,227,4368_9535,Hollystown,6759,0,4368_7778195_8040214,4368_310 -4358_80710,227,4368_9536,Tyrrelstown,6773,0,4368_7778195_8040220,4368_309 -4358_80710,229,4368_9537,Tyrrelstown,18687,0,4368_7778195_8040203,4368_308 -4358_80710,228,4368_9538,Tyrrelstown,13494,0,4368_7778195_8040213,4368_311 -4358_80710,227,4368_9539,Tyrrelstown,6779,0,4368_7778195_8040222,4368_309 -4358_80756,227,4368_954,Ashington,3616,1,4368_7778195_7122001,4368_33 -4358_80710,227,4368_9540,Tyrrelstown,6782,0,4368_7778195_8040223,4368_309 -4358_80710,227,4368_9541,Tyrrelstown,6771,0,4368_7778195_8040219,4368_309 -4358_80710,228,4368_9542,Tyrrelstown,13495,0,4368_7778195_8040215,4368_308 -4358_80710,227,4368_9543,Tyrrelstown,6777,0,4368_7778195_8040221,4368_309 -4358_80710,229,4368_9544,Tyrrelstown,18694,0,4368_7778195_8040205,4368_308 -4358_80710,227,4368_9545,Tyrrelstown,6769,0,4368_7778195_8040218,4368_309 -4358_80710,228,4368_9546,Tyrrelstown,13075,0,4368_7778195_8040214,4368_308 -4358_80710,227,4368_9547,Tyrrelstown,6786,0,4368_7778195_8040224,4368_309 -4358_80710,227,4368_9548,Tyrrelstown,6789,0,4368_7778195_8040225,4368_309 -4358_80710,229,4368_9549,Tyrrelstown,18698,0,4368_7778195_8040206,4368_308 -4358_80756,229,4368_955,Ashington,18538,1,4368_7778195_7122003,4368_33 -4358_80710,227,4368_9550,Hollystown,6775,0,4368_7778195_8040220,4368_310 -4358_80710,228,4368_9551,Tyrrelstown,13498,0,4368_7778195_8040216,4368_308 -4358_80710,227,4368_9552,Tyrrelstown,6781,0,4368_7778195_8040222,4368_309 -4358_80710,227,4368_9553,Tyrrelstown,6784,0,4368_7778195_8040223,4368_309 -4358_80710,229,4368_9554,Tyrrelstown,18696,0,4368_7778195_8040205,4368_308 -4358_80710,227,4368_9555,Tyrrelstown,6795,0,4368_7778195_8040227,4368_309 -4358_80710,228,4368_9556,Tyrrelstown,13500,0,4368_7778195_8040218,4368_308 -4358_80710,227,4368_9557,Tyrrelstown,6793,0,4368_7778195_8040226,4368_309 -4358_80710,229,4368_9558,Tyrrelstown,18700,0,4368_7778195_8040207,4368_308 -4358_80710,227,4368_9559,Tyrrelstown,6791,0,4368_7778195_8040225,4368_308 -4358_80756,228,4368_956,Ashington,13151,1,4368_7778195_7122005,4368_33 -4358_80710,228,4368_9560,Tyrrelstown,13077,0,4368_7778195_8040217,4368_308 -4358_80710,227,4368_9561,Tyrrelstown,6798,0,4368_7778195_8040228,4368_308 -4358_80710,229,4368_9562,Tyrrelstown,18703,0,4368_7778195_8040208,4368_308 -4358_80710,228,4368_9563,Tyrrelstown,13502,0,4368_7778195_8040219,4368_308 -4358_80710,227,4368_9564,Tyrrelstown,6799,0,4368_7778195_8040229,4368_308 -4358_80710,229,4368_9565,Tyrrelstown,18707,0,4368_7778195_8040209,4368_308 -4358_80710,227,4368_9566,Tyrrelstown,6805,0,4368_7778195_8040231,4368_308 -4358_80710,228,4368_9567,Tyrrelstown,13507,0,4368_7778195_8040220,4368_308 -4358_80710,227,4368_9568,Tyrrelstown,6803,0,4368_7778195_8040230,4368_308 -4358_80710,229,4368_9569,Tyrrelstown,18705,0,4368_7778195_8040208,4368_308 -4358_80756,227,4368_957,Ashington,3397,1,4368_7778195_7122005,4368_33 -4358_80710,227,4368_9570,Tyrrelstown,6809,0,4368_7778195_8040232,4368_308 -4358_80710,228,4368_9571,Tyrrelstown,13504,0,4368_7778195_8040219,4368_308 -4358_80710,227,4368_9572,Tyrrelstown,6801,0,4368_7778195_8040229,4368_308 -4358_80710,229,4368_9573,Tyrrelstown,18709,0,4368_7778195_8040209,4368_308 -4358_80710,228,4368_9574,Tyrrelstown,13509,0,4368_7778195_8040220,4368_311 -4358_80710,227,4368_9575,Tyrrelstown,6807,0,4368_7778195_8040231,4368_308 -4358_80710,227,4368_9576,Parnell St,6718,1,4368_7778195_8040201,4368_312 -4358_80710,227,4368_9577,Parnell St,6725,1,4368_7778195_8040203,4368_312 -4358_80710,227,4368_9578,Parnell St,6731,1,4368_7778195_8040205,4368_312 -4358_80710,227,4368_9579,Parnell St,6735,1,4368_7778195_8040206,4368_314 -4358_80756,229,4368_958,Ashington,18559,1,4368_7778195_7122002,4368_33 -4358_80710,228,4368_9580,Parnell St,13463,1,4368_7778195_8040201,4368_312 -4358_80710,227,4368_9581,Parnell St,6743,1,4368_7778195_8040208,4368_312 -4358_80710,227,4368_9582,Parnell St,6723,1,4368_7778195_8040202,4368_312 -4358_80710,228,4368_9583,Parnell St,13466,1,4368_7778195_8040202,4368_312 -4358_80710,227,4368_9584,Parnell St,6729,1,4368_7778195_8040204,4368_312 -4358_80710,227,4368_9585,Parnell St,6740,1,4368_7778195_8040207,4368_312 -4358_80710,228,4368_9586,Parnell St,13468,1,4368_7778195_8040203,4368_312 -4358_80710,227,4368_9587,Parnell St,6720,1,4368_7778195_8040201,4368_312 -4358_80710,228,4368_9588,Parnell St,13471,1,4368_7778195_8040204,4368_312 -4358_80710,227,4368_9589,Parnell St,6727,1,4368_7778195_8040203,4368_313 -4358_80756,228,4368_959,Ashington,13160,1,4368_7778195_7122008,4368_33 -4358_80710,227,4368_9590,Parnell St,6733,1,4368_7778195_8040205,4368_312 -4358_80710,229,4368_9591,Parnell St,18679,1,4368_7778195_8040202,4368_312 -4358_80710,227,4368_9592,Parnell St,6737,1,4368_7778195_8040206,4368_312 -4358_80710,228,4368_9593,Parnell St,13465,1,4368_7778195_8040201,4368_313 -4358_80710,227,4368_9594,Parnell St,6745,1,4368_7778195_8040208,4368_312 -4358_80710,228,4368_9595,Parnell St,13474,1,4368_7778195_8040205,4368_313 -4358_80710,229,4368_9596,Parnell St,18675,1,4368_7778195_8040201,4368_312 -4358_80710,228,4368_9597,Parnell St,13477,1,4368_7778195_8040206,4368_312 -4358_80710,227,4368_9598,Parnell St,6746,1,4368_7778195_8040209,4368_313 -4358_80710,227,4368_9599,Parnell St,6742,1,4368_7778195_8040207,4368_312 -4358_80760,227,4368_96,Shaw street,3145,0,4368_7778195_9001004,4368_1 -4358_80756,227,4368_960,Ashington,3506,1,4368_7778195_7122009,4368_33 -4358_80710,229,4368_9600,Parnell St,18681,1,4368_7778195_8040202,4368_312 -4358_80710,228,4368_9601,Parnell St,13480,1,4368_7778195_8040207,4368_312 -4358_80710,227,4368_9602,Parnell St,6748,1,4368_7778195_8040210,4368_312 -4358_80710,228,4368_9603,Parnell St,13476,1,4368_7778195_8040205,4368_312 -4358_80710,229,4368_9604,Parnell St,18677,1,4368_7778195_8040201,4368_312 -4358_80710,227,4368_9605,Parnell St,6752,1,4368_7778195_8040212,4368_312 -4358_80710,227,4368_9606,Parnell St,6754,1,4368_7778195_8040213,4368_314 -4358_80710,228,4368_9607,Parnell St,13479,1,4368_7778195_8040206,4368_312 -4358_80710,229,4368_9608,Parnell St,18683,1,4368_7778195_8040202,4368_312 -4358_80710,227,4368_9609,Parnell St,6751,1,4368_7778195_8040211,4368_312 -4358_80756,229,4368_961,Ashington,18578,1,4368_7778195_7122006,4368_33 -4358_80710,228,4368_9610,Parnell St,13482,1,4368_7778195_8040207,4368_312 -4358_80710,227,4368_9611,Parnell St,6756,1,4368_7778195_8040214,4368_312 -4358_80710,229,4368_9612,Parnell St,18684,1,4368_7778195_8040203,4368_312 -4358_80710,228,4368_9613,Parnell St,13484,1,4368_7778195_8040208,4368_312 -4358_80710,227,4368_9614,Parnell St,6762,1,4368_7778195_8040216,4368_312 -4358_80710,229,4368_9615,Parnell St,18689,1,4368_7778195_8040204,4368_312 -4358_80710,228,4368_9616,Parnell St,13489,1,4368_7778195_8040211,4368_312 -4358_80710,227,4368_9617,Parnell St,6765,1,4368_7778195_8040217,4368_313 -4358_80710,227,4368_9618,Parnell St,6761,1,4368_7778195_8040215,4368_312 -4358_80710,228,4368_9619,Parnell St,13487,1,4368_7778195_8040210,4368_312 -4358_80756,228,4368_962,Ashington,13175,1,4368_7778195_7122007,4368_33 -4358_80710,229,4368_9620,Parnell St,18686,1,4368_7778195_8040203,4368_312 -4358_80710,227,4368_9621,Parnell St,6758,1,4368_7778195_8040214,4368_312 -4358_80710,228,4368_9622,Parnell St,13493,1,4368_7778195_8040213,4368_312 -4358_80710,227,4368_9623,Parnell St,6770,1,4368_7778195_8040219,4368_312 -4358_80710,229,4368_9624,Parnell St,18691,1,4368_7778195_8040204,4368_312 -4358_80710,227,4368_9625,Parnell St,6764,1,4368_7778195_8040216,4368_312 -4358_80710,228,4368_9626,Parnell St,13491,1,4368_7778195_8040211,4368_312 -4358_80710,227,4368_9627,Parnell St,6776,1,4368_7778195_8040221,4368_314 -4358_80710,229,4368_9628,Parnell St,18693,1,4368_7778195_8040205,4368_312 -4358_80710,227,4368_9629,Parnell St,6768,1,4368_7778195_8040218,4368_312 -4358_80756,227,4368_963,Ashington,3586,1,4368_7778195_7122012,4368_33 -4358_80710,228,4368_9630,Parnell St,13074,1,4368_7778195_8040214,4368_312 -4358_80710,227,4368_9631,Parnell St,6785,1,4368_7778195_8040224,4368_312 -4358_80710,227,4368_9632,Parnell St,6788,1,4368_7778195_8040225,4368_312 -4358_80710,227,4368_9633,Parnell St,6774,1,4368_7778195_8040220,4368_312 -4358_80710,228,4368_9634,Parnell St,13497,1,4368_7778195_8040216,4368_312 -4358_80710,229,4368_9635,Parnell St,18697,1,4368_7778195_8040206,4368_313 -4358_80710,227,4368_9636,Parnell St,6780,1,4368_7778195_8040222,4368_312 -4358_80710,227,4368_9637,Parnell St,6783,1,4368_7778195_8040223,4368_312 -4358_80710,227,4368_9638,Parnell St,6772,1,4368_7778195_8040219,4368_312 -4358_80710,228,4368_9639,Parnell St,13496,1,4368_7778195_8040215,4368_313 -4358_80756,229,4368_964,Ashington,18601,1,4368_7778195_7122008,4368_33 -4358_80710,229,4368_9640,Parnell St,18695,1,4368_7778195_8040205,4368_312 -4358_80710,227,4368_9641,Parnell St,6778,1,4368_7778195_8040221,4368_312 -4358_80710,227,4368_9642,Parnell St,6792,1,4368_7778195_8040226,4368_312 -4358_80710,228,4368_9643,Parnell St,13076,1,4368_7778195_8040217,4368_312 -4358_80710,227,4368_9644,Parnell St,6787,1,4368_7778195_8040224,4368_312 -4358_80710,229,4368_9645,Parnell St,18699,1,4368_7778195_8040207,4368_312 -4358_80710,227,4368_9646,Parnell St,6790,1,4368_7778195_8040225,4368_312 -4358_80710,228,4368_9647,Parnell St,13499,1,4368_7778195_8040216,4368_312 -4358_80710,227,4368_9648,Parnell St,6797,1,4368_7778195_8040228,4368_312 -4358_80710,229,4368_9649,Parnell St,18702,1,4368_7778195_8040208,4368_312 -4358_80756,228,4368_965,Ashington,13187,1,4368_7778195_7122002,4368_33 -4358_80710,227,4368_9650,Parnell St,6796,1,4368_7778195_8040227,4368_312 -4358_80710,228,4368_9651,Parnell St,13501,1,4368_7778195_8040218,4368_313 -4358_80710,227,4368_9652,Parnell St,6794,1,4368_7778195_8040226,4368_312 -4358_80710,229,4368_9653,Parnell St,18701,1,4368_7778195_8040207,4368_312 -4358_80710,228,4368_9654,Parnell St,13506,1,4368_7778195_8040220,4368_312 -4358_80710,227,4368_9655,Parnell St,6802,1,4368_7778195_8040230,4368_312 -4358_80710,229,4368_9656,Parnell St,18704,1,4368_7778195_8040208,4368_312 -4358_80710,227,4368_9657,Parnell St,6808,1,4368_7778195_8040232,4368_312 -4358_80710,228,4368_9658,Parnell St,13503,1,4368_7778195_8040219,4368_312 -4358_80710,227,4368_9659,Parnell St,6800,1,4368_7778195_8040229,4368_312 -4358_80756,227,4368_966,Ashington,3578,1,4368_7778195_7122014,4368_33 -4358_80710,229,4368_9660,Parnell St,18708,1,4368_7778195_8040209,4368_312 -4358_80710,228,4368_9661,Parnell St,13508,1,4368_7778195_8040220,4368_312 -4358_80710,227,4368_9662,Parnell St,6806,1,4368_7778195_8040231,4368_313 -4358_80710,227,4368_9663,Parnell St,6804,1,4368_7778195_8040230,4368_312 -4358_80710,229,4368_9664,Parnell St,18706,1,4368_7778195_8040208,4368_312 -4358_80710,228,4368_9665,Parnell St,13505,1,4368_7778195_8040219,4368_312 -4358_80710,227,4368_9666,Parnell St,6810,1,4368_7778195_8040232,4368_312 -4358_80709,227,4368_9667,Tyrrelstown,7263,0,4368_7778195_8040301,4368_315 -4358_80709,227,4368_9668,Tyrrelstown,7269,0,4368_7778195_8040302,4368_315 -4358_80709,227,4368_9669,Tyrrelstown,7274,0,4368_7778195_8040303,4368_315 -4358_80756,229,4368_967,Ashington,18527,1,4368_7778195_7122004,4368_33 -4358_80709,228,4368_9670,Tyrrelstown,13884,0,4368_7778195_8040301,4368_315 -4358_80709,229,4368_9671,Tyrrelstown,18870,0,4368_7778195_8040301,4368_315 -4358_80709,227,4368_9672,Tyrrelstown,7265,0,4368_7778195_8040301,4368_315 -4358_80709,228,4368_9673,Tyrrelstown,13890,0,4368_7778195_8040302,4368_315 -4358_80709,228,4368_9674,Tyrrelstown,13893,0,4368_7778195_8040303,4368_315 -4358_80709,227,4368_9675,Tyrrelstown,7271,0,4368_7778195_8040302,4368_316 -4358_80709,228,4368_9676,Tyrrelstown,13886,0,4368_7778195_8040301,4368_315 -4358_80709,227,4368_9677,Tyrrelstown,7276,0,4368_7778195_8040303,4368_316 -4358_80709,229,4368_9678,Tyrrelstown,18872,0,4368_7778195_8040301,4368_315 -4358_80709,227,4368_9679,Tyrrelstown,7267,0,4368_7778195_8040301,4368_315 -4358_80756,228,4368_968,Ashington,13131,1,4368_7778195_7122004,4368_33 -4358_80709,228,4368_9680,Tyrrelstown,13897,0,4368_7778195_8040304,4368_316 -4358_80709,227,4368_9681,Tyrrelstown,7278,0,4368_7778195_8040304,4368_315 -4358_80709,228,4368_9682,Tyrrelstown,13895,0,4368_7778195_8040303,4368_316 -4358_80709,229,4368_9683,Tyrrelstown,18876,0,4368_7778195_8040302,4368_315 -4358_80709,228,4368_9684,Tyrrelstown,13888,0,4368_7778195_8040301,4368_315 -4358_80709,227,4368_9685,Tyrrelstown,7286,0,4368_7778195_8040306,4368_316 -4358_80709,228,4368_9686,Tyrrelstown,13899,0,4368_7778195_8040304,4368_315 -4358_80709,227,4368_9687,Tyrrelstown,7283,0,4368_7778195_8040305,4368_316 -4358_80709,229,4368_9688,Tyrrelstown,18874,0,4368_7778195_8040301,4368_317 -4358_80709,227,4368_9689,Tyrrelstown,7280,0,4368_7778195_8040304,4368_315 -4358_80756,227,4368_969,Ashington,3425,1,4368_7778195_7122004,4368_33 -4358_80709,228,4368_9690,Tyrrelstown,13902,0,4368_7778195_8040305,4368_315 -4358_80709,229,4368_9691,Tyrrelstown,18878,0,4368_7778195_8040302,4368_315 -4358_80709,227,4368_9692,Tyrrelstown,7288,0,4368_7778195_8040307,4368_315 -4358_80709,228,4368_9693,Tyrrelstown,13901,0,4368_7778195_8040304,4368_315 -4358_80709,227,4368_9694,Tyrrelstown,7285,0,4368_7778195_8040305,4368_315 -4358_80709,229,4368_9695,Tyrrelstown,18881,0,4368_7778195_8040303,4368_315 -4358_80709,227,4368_9696,Tyrrelstown,7291,0,4368_7778195_8040308,4368_315 -4358_80709,228,4368_9697,Tyrrelstown,13904,0,4368_7778195_8040305,4368_316 -4358_80709,229,4368_9698,Tyrrelstown,18885,0,4368_7778195_8040304,4368_315 -4358_80709,227,4368_9699,Tyrrelstown,7290,0,4368_7778195_8040307,4368_316 -4358_80760,228,4368_97,Shaw street,9512,0,4368_7778195_9001005,4368_1 -4358_80756,229,4368_970,Ashington,18588,1,4368_7778195_7122007,4368_33 -4358_80709,228,4368_9700,Tyrrelstown,13908,0,4368_7778195_8040306,4368_315 -4358_80709,227,4368_9701,Tyrrelstown,7296,0,4368_7778195_8040309,4368_315 -4358_80709,228,4368_9702,Tyrrelstown,13906,0,4368_7778195_8040305,4368_315 -4358_80709,229,4368_9703,Tyrrelstown,18883,0,4368_7778195_8040303,4368_316 -4358_80709,227,4368_9704,Tyrrelstown,7293,0,4368_7778195_8040308,4368_315 -4358_80709,228,4368_9705,Tyrrelstown,13910,0,4368_7778195_8040306,4368_315 -4358_80709,227,4368_9706,Tyrrelstown,7299,0,4368_7778195_8040310,4368_316 -4358_80709,229,4368_9707,Tyrrelstown,18887,0,4368_7778195_8040304,4368_315 -4358_80709,227,4368_9708,Tyrrelstown,7303,0,4368_7778195_8040311,4368_315 -4358_80709,228,4368_9709,Tyrrelstown,13914,0,4368_7778195_8040307,4368_315 -4358_80756,228,4368_971,Ashington,13143,1,4368_7778195_7122006,4368_33 -4358_80709,229,4368_9710,Tyrrelstown,18889,0,4368_7778195_8040305,4368_315 -4358_80709,227,4368_9711,Tyrrelstown,7305,0,4368_7778195_8040312,4368_315 -4358_80709,228,4368_9712,Tyrrelstown,13912,0,4368_7778195_8040306,4368_315 -4358_80709,227,4368_9713,Tyrrelstown,7301,0,4368_7778195_8040310,4368_315 -4358_80709,229,4368_9714,Tyrrelstown,18893,0,4368_7778195_8040306,4368_315 -4358_80709,228,4368_9715,Tyrrelstown,13916,0,4368_7778195_8040308,4368_315 -4358_80709,227,4368_9716,Tyrrelstown,7309,0,4368_7778195_8040314,4368_315 -4358_80709,229,4368_9717,Tyrrelstown,18891,0,4368_7778195_8040305,4368_315 -4358_80709,227,4368_9718,Tyrrelstown,7307,0,4368_7778195_8040313,4368_315 -4358_80709,228,4368_9719,Tyrrelstown,13920,0,4368_7778195_8040309,4368_315 -4358_80756,227,4368_972,Ashington,3442,1,4368_7778195_7122006,4368_33 -4358_80709,227,4368_9720,Tyrrelstown,7312,0,4368_7778195_8040315,4368_315 -4358_80709,228,4368_9721,Tyrrelstown,13918,0,4368_7778195_8040308,4368_315 -4358_80709,227,4368_9722,Tyrrelstown,7311,0,4368_7778195_8040314,4368_315 -4358_80709,229,4368_9723,Tyrrelstown,18895,0,4368_7778195_8040307,4368_315 -4358_80709,228,4368_9724,Tyrrelstown,13922,0,4368_7778195_8040310,4368_315 -4358_80709,227,4368_9725,Tyrrelstown,7315,0,4368_7778195_8040316,4368_315 -4358_80709,229,4368_9726,Tyrrelstown,18898,0,4368_7778195_8040308,4368_315 -4358_80709,227,4368_9727,Tyrrelstown,7314,0,4368_7778195_8040315,4368_315 -4358_80709,228,4368_9728,Tyrrelstown,13926,0,4368_7778195_8040311,4368_315 -4358_80709,227,4368_9729,Tyrrelstown,7321,0,4368_7778195_8040317,4368_315 -4358_80756,229,4368_973,Ashington,18551,1,4368_7778195_7122005,4368_33 -4358_80709,229,4368_9730,Tyrrelstown,18897,0,4368_7778195_8040307,4368_315 -4358_80709,228,4368_9731,Tyrrelstown,13924,0,4368_7778195_8040310,4368_315 -4358_80709,227,4368_9732,Tyrrelstown,7327,0,4368_7778195_8040318,4368_315 -4358_80709,227,4368_9733,Tyrrelstown,7317,0,4368_7778195_8040316,4368_315 -4358_80709,229,4368_9734,Tyrrelstown,18900,0,4368_7778195_8040309,4368_316 -4358_80709,228,4368_9735,Tyrrelstown,13928,0,4368_7778195_8040311,4368_315 -4358_80709,227,4368_9736,Tyrrelstown,7323,0,4368_7778195_8040317,4368_315 -4358_80709,229,4368_9737,Tyrrelstown,18905,0,4368_7778195_8040310,4368_315 -4358_80709,227,4368_9738,Tyrrelstown,7329,0,4368_7778195_8040318,4368_315 -4358_80709,228,4368_9739,Tyrrelstown,13932,0,4368_7778195_8040312,4368_315 -4358_80756,228,4368_974,Ashington,13167,1,4368_7778195_7122009,4368_33 -4358_80709,227,4368_9740,Tyrrelstown,7319,0,4368_7778195_8040316,4368_315 -4358_80709,229,4368_9741,Tyrrelstown,18902,0,4368_7778195_8040309,4368_315 -4358_80709,228,4368_9742,Tyrrelstown,13930,0,4368_7778195_8040311,4368_315 -4358_80709,227,4368_9743,Tyrrelstown,7325,0,4368_7778195_8040317,4368_315 -4358_80709,227,4368_9744,Tyrrelstown,7331,0,4368_7778195_8040318,4368_315 -4358_80709,228,4368_9745,Tyrrelstown,13934,0,4368_7778195_8040312,4368_316 -4358_80709,229,4368_9746,Tyrrelstown,18907,0,4368_7778195_8040310,4368_317 -4358_80709,227,4368_9747,Broombridge Luas,7262,1,4368_7778195_8040301,4368_318 -4358_80709,227,4368_9748,Broombridge Luas,7268,1,4368_7778195_8040302,4368_318 -4358_80709,227,4368_9749,Broombridge Luas,7273,1,4368_7778195_8040303,4368_318 -4358_80756,227,4368_975,Ashington,3601,1,4368_7778195_7122008,4368_33 -4358_80709,228,4368_9750,Broombridge Luas,13883,1,4368_7778195_8040301,4368_318 -4358_80709,227,4368_9751,Broombridge Luas,7264,1,4368_7778195_8040301,4368_318 -4358_80709,229,4368_9752,Broombridge Luas,18869,1,4368_7778195_8040301,4368_318 -4358_80709,228,4368_9753,Broombridge Luas,13889,1,4368_7778195_8040302,4368_319 -4358_80709,227,4368_9754,Broombridge Luas,7270,1,4368_7778195_8040302,4368_318 -4358_80709,228,4368_9755,Broombridge Luas,13892,1,4368_7778195_8040303,4368_318 -4358_80709,227,4368_9756,Broombridge Luas,7275,1,4368_7778195_8040303,4368_318 -4358_80709,228,4368_9757,Broombridge Luas,13885,1,4368_7778195_8040301,4368_318 -4358_80709,229,4368_9758,Broombridge Luas,18871,1,4368_7778195_8040301,4368_318 -4358_80709,227,4368_9759,Broombridge Luas,7266,1,4368_7778195_8040301,4368_318 -4358_80756,229,4368_976,Ashington,18597,1,4368_7778195_7122009,4368_33 -4358_80709,228,4368_9760,Broombridge Luas,13891,1,4368_7778195_8040302,4368_318 -4358_80709,228,4368_9761,Broombridge Luas,13894,1,4368_7778195_8040303,4368_318 -4358_80709,227,4368_9762,Broombridge Luas,7272,1,4368_7778195_8040302,4368_319 -4358_80709,229,4368_9763,Broombridge Luas,18875,1,4368_7778195_8040302,4368_318 -4358_80709,228,4368_9764,Broombridge Luas,13887,1,4368_7778195_8040301,4368_318 -4358_80709,227,4368_9765,Broombridge Luas,7277,1,4368_7778195_8040303,4368_319 -4358_80709,229,4368_9766,Broombridge Luas,18873,1,4368_7778195_8040301,4368_318 -4358_80709,227,4368_9767,Broombridge Luas,7282,1,4368_7778195_8040305,4368_318 -4358_80709,228,4368_9768,Broombridge Luas,13898,1,4368_7778195_8040304,4368_318 -4358_80709,227,4368_9769,Broombridge Luas,7279,1,4368_7778195_8040304,4368_318 -4358_80756,228,4368_977,Ashington,13104,1,4368_7778195_7122001,4368_33 -4358_80709,229,4368_9770,Broombridge Luas,18877,1,4368_7778195_8040302,4368_318 -4358_80709,228,4368_9771,Broombridge Luas,13896,1,4368_7778195_8040303,4368_319 -4358_80709,227,4368_9772,Broombridge Luas,7287,1,4368_7778195_8040306,4368_318 -4358_80709,228,4368_9773,Broombridge Luas,13900,1,4368_7778195_8040304,4368_318 -4358_80709,227,4368_9774,Broombridge Luas,7284,1,4368_7778195_8040305,4368_318 -4358_80709,229,4368_9775,Broombridge Luas,18880,1,4368_7778195_8040303,4368_318 -4358_80709,227,4368_9776,Broombridge Luas,7281,1,4368_7778195_8040304,4368_318 -4358_80709,228,4368_9777,Broombridge Luas,13903,1,4368_7778195_8040305,4368_318 -4358_80709,229,4368_9778,Broombridge Luas,18879,1,4368_7778195_8040302,4368_318 -4358_80709,227,4368_9779,Broombridge Luas,7289,1,4368_7778195_8040307,4368_318 -4358_80756,227,4368_978,Ashington,3610,1,4368_7778195_7122011,4368_33 -4358_80709,228,4368_9780,Broombridge Luas,13907,1,4368_7778195_8040306,4368_318 -4358_80709,227,4368_9781,Broombridge Luas,7295,1,4368_7778195_8040309,4368_318 -4358_80709,229,4368_9782,Broombridge Luas,18882,1,4368_7778195_8040303,4368_318 -4358_80709,228,4368_9783,Broombridge Luas,13905,1,4368_7778195_8040305,4368_318 -4358_80709,227,4368_9784,Broombridge Luas,7292,1,4368_7778195_8040308,4368_318 -4358_80709,227,4368_9785,Broombridge Luas,7298,1,4368_7778195_8040310,4368_318 -4358_80709,229,4368_9786,Broombridge Luas,18886,1,4368_7778195_8040304,4368_318 -4358_80709,228,4368_9787,Broombridge Luas,13909,1,4368_7778195_8040306,4368_319 -4358_80709,227,4368_9788,Broombridge Luas,7297,1,4368_7778195_8040309,4368_318 -4358_80709,228,4368_9789,Broombridge Luas,13913,1,4368_7778195_8040307,4368_318 -4358_80756,229,4368_979,Ashington,18570,1,4368_7778195_7122001,4368_33 -4358_80709,229,4368_9790,Broombridge Luas,18884,1,4368_7778195_8040303,4368_318 -4358_80709,227,4368_9791,Broombridge Luas,7294,1,4368_7778195_8040308,4368_318 -4358_80709,228,4368_9792,Broombridge Luas,13911,1,4368_7778195_8040306,4368_318 -4358_80709,227,4368_9793,Broombridge Luas,7300,1,4368_7778195_8040310,4368_318 -4358_80709,229,4368_9794,Broombridge Luas,18888,1,4368_7778195_8040304,4368_318 -4358_80709,228,4368_9795,Broombridge Luas,13915,1,4368_7778195_8040308,4368_318 -4358_80709,227,4368_9796,Broombridge Luas,7304,1,4368_7778195_8040311,4368_318 -4358_80709,227,4368_9797,Broombridge Luas,7306,1,4368_7778195_8040313,4368_318 -4358_80709,229,4368_9798,Broombridge Luas,18890,1,4368_7778195_8040305,4368_318 -4358_80709,228,4368_9799,Broombridge Luas,13919,1,4368_7778195_8040309,4368_318 -4358_80760,229,4368_98,Shaw street,15666,0,4368_7778195_9001005,4368_1 -4358_80756,228,4368_980,Ashington,13120,1,4368_7778195_7122003,4368_33 -4358_80709,227,4368_9800,Broombridge Luas,7302,1,4368_7778195_8040310,4368_318 -4358_80709,228,4368_9801,Broombridge Luas,13917,1,4368_7778195_8040308,4368_318 -4358_80709,229,4368_9802,Broombridge Luas,18894,1,4368_7778195_8040306,4368_318 -4358_80709,227,4368_9803,Broombridge Luas,7310,1,4368_7778195_8040314,4368_318 -4358_80709,228,4368_9804,Broombridge Luas,13921,1,4368_7778195_8040309,4368_318 -4358_80709,227,4368_9805,Broombridge Luas,7308,1,4368_7778195_8040313,4368_318 -4358_80709,229,4368_9806,Broombridge Luas,18892,1,4368_7778195_8040305,4368_318 -4358_80709,227,4368_9807,Broombridge Luas,7313,1,4368_7778195_8040315,4368_318 -4358_80709,228,4368_9808,Broombridge Luas,13925,1,4368_7778195_8040311,4368_318 -4358_80709,227,4368_9809,Broombridge Luas,7320,1,4368_7778195_8040317,4368_318 -4358_80756,227,4368_981,Ashington,3618,1,4368_7778195_7122001,4368_33 -4358_80709,229,4368_9810,Broombridge Luas,18896,1,4368_7778195_8040307,4368_318 -4358_80709,228,4368_9811,Broombridge Luas,13923,1,4368_7778195_8040310,4368_318 -4358_80709,227,4368_9812,Broombridge Luas,7326,1,4368_7778195_8040318,4368_318 -4358_80709,229,4368_9813,Broombridge Luas,18899,1,4368_7778195_8040308,4368_318 -4358_80709,227,4368_9814,Broombridge Luas,7316,1,4368_7778195_8040316,4368_318 -4358_80709,228,4368_9815,Broombridge Luas,13927,1,4368_7778195_8040311,4368_318 -4358_80709,227,4368_9816,Broombridge Luas,7322,1,4368_7778195_8040317,4368_318 -4358_80709,229,4368_9817,Broombridge Luas,18904,1,4368_7778195_8040310,4368_318 -4358_80709,228,4368_9818,Broombridge Luas,13931,1,4368_7778195_8040312,4368_318 -4358_80709,227,4368_9819,Broombridge Luas,7328,1,4368_7778195_8040318,4368_318 -4358_80756,229,4368_982,Ashington,18540,1,4368_7778195_7122003,4368_33 -4358_80709,227,4368_9820,Broombridge Luas,7318,1,4368_7778195_8040316,4368_318 -4358_80709,229,4368_9821,Broombridge Luas,18901,1,4368_7778195_8040309,4368_318 -4358_80709,228,4368_9822,Broombridge Luas,13929,1,4368_7778195_8040311,4368_318 -4358_80709,227,4368_9823,Broombridge Luas,7324,1,4368_7778195_8040317,4368_318 -4358_80709,229,4368_9824,Broombridge Luas,18906,1,4368_7778195_8040310,4368_318 -4358_80709,227,4368_9825,Broombridge Luas,7330,1,4368_7778195_8040318,4368_318 -4358_80709,228,4368_9826,Broombridge Luas,13933,1,4368_7778195_8040312,4368_318 -4358_80709,229,4368_9827,Broombridge Luas,18903,1,4368_7778195_8040309,4368_318 -4358_80711,227,4368_9828,Swords Manor,2644,0,4368_7778195_5041001,4368_320 -4358_80711,228,4368_9829,Swords Manor,10247,0,4368_7778195_5041002,4368_321 -4358_80756,228,4368_983,Ashington,13153,1,4368_7778195_7122005,4368_33 -4358_80711,229,4368_9830,Swords Manor,16152,0,4368_7778195_5041002,4368_322 -4358_80711,228,4368_9831,Swords Manor,9955,0,4368_7778195_5041003,4368_320 -4358_80711,229,4368_9832,Swords Manor,16308,0,4368_7778195_5041003,4368_321 -4358_80711,227,4368_9833,Swords Manor,2658,0,4368_7778195_5041003,4368_322 -4358_80711,227,4368_9834,Swords Manor,2763,0,4368_7778195_5041009,4368_320 -4358_80711,227,4368_9835,Swords Manor,2613,0,4368_7778195_5041007,4368_320 -4358_80711,228,4368_9836,Swords Manor,10043,0,4368_7778195_5041004,4368_320 -4358_80711,229,4368_9837,Swords Manor,16598,0,4368_7778195_5041004,4368_321 -4358_80711,227,4368_9838,Swords Manor,2630,0,4368_7778195_5041010,4368_320 -4358_80711,229,4368_9839,Swords Manor,16114,0,4368_7778195_5041001,4368_320 -4358_80756,227,4368_984,Ashington,3399,1,4368_7778195_7122005,4368_33 -4358_80711,227,4368_9840,Swords Manor,2327,0,4368_7778195_5041014,4368_321 -4358_80711,228,4368_9841,Swords Manor,10164,0,4368_7778195_5041001,4368_322 -4358_80711,227,4368_9842,Swords Manor,2503,0,4368_7778195_5041002,4368_320 -4358_80711,228,4368_9843,Swords Manor,10137,0,4368_7778195_5041007,4368_320 -4358_80711,229,4368_9844,Swords Manor,16154,0,4368_7778195_5041002,4368_321 -4358_80711,227,4368_9845,Swords Manor,2646,0,4368_7778195_5041001,4368_320 -4358_80711,228,4368_9846,Swords Manor,9957,0,4368_7778195_5041003,4368_320 -4358_80711,229,4368_9847,Swords Manor,16310,0,4368_7778195_5041003,4368_321 -4358_80711,227,4368_9848,Swords Manor,2660,0,4368_7778195_5041003,4368_320 -4358_80711,227,4368_9849,Swords Manor,2765,0,4368_7778195_5041009,4368_320 -4358_80756,229,4368_985,Ashington,18561,1,4368_7778195_7122002,4368_33 -4358_80711,228,4368_9850,Swords Manor,10045,0,4368_7778195_5041004,4368_320 -4358_80711,229,4368_9851,Swords Manor,16600,0,4368_7778195_5041038,4368_321 -4358_80711,227,4368_9852,Swords Manor,2615,0,4368_7778195_5041007,4368_320 -4358_80711,229,4368_9853,Swords Manor,16174,0,4368_7778195_5041005,4368_320 -4358_80711,227,4368_9854,Swords Manor,2559,0,4368_7778195_5041015,4368_321 -4358_80711,228,4368_9855,Swords Manor,10166,0,4368_7778195_5041001,4368_322 -4358_80711,227,4368_9856,Swords Manor,2691,0,4368_7778195_5041017,4368_320 -4358_80711,228,4368_9857,Swords Manor,10259,0,4368_7778195_5041008,4368_320 -4358_80711,229,4368_9858,Swords Manor,16116,0,4368_7778195_5041001,4368_321 -4358_80711,227,4368_9859,Swords Manor,2329,0,4368_7778195_5041014,4368_320 -4358_80756,228,4368_986,Ashington,13162,1,4368_7778195_7122008,4368_33 -4358_80711,228,4368_9860,Swords Manor,10251,0,4368_7778195_5041002,4368_320 -4358_80711,227,4368_9861,Swords Manor,6462,0,4368_7778195_7041576,4368_320 -4358_80711,229,4368_9862,Swords Manor,16156,0,4368_7778195_5041002,4368_321 -4358_80711,228,4368_9863,Swords Manor,9959,0,4368_7778195_5041003,4368_320 -4358_80711,227,4368_9864,Swords Manor,2705,0,4368_7778195_5041004,4368_320 -4358_80711,229,4368_9865,Swords Manor,16312,0,4368_7778195_5041003,4368_320 -4358_80711,228,4368_9866,Swords Manor,10221,0,4368_7778195_5041013,4368_320 -4358_80711,227,4368_9867,Swords Manor,7838,0,4368_7778195_8818127,4368_320 -4358_80711,228,4368_9868,Swords Manor,10235,0,4368_7778195_5041005,4368_320 -4358_80711,229,4368_9869,Swords Manor,16120,0,4368_7778195_5041010,4368_320 -4358_80756,227,4368_987,Ashington,3508,1,4368_7778195_7122009,4368_33 -4358_80711,227,4368_9870,Swords Manor,2447,0,4368_7778195_5041008,4368_321 -4358_80711,228,4368_9871,Swords Manor,10168,0,4368_7778195_5041001,4368_320 -4358_80711,227,4368_9872,Swords Manor,2487,0,4368_7778195_5041011,4368_320 -4358_80711,229,4368_9873,Swords Manor,16176,0,4368_7778195_5041005,4368_320 -4358_80711,228,4368_9874,Swords Manor,10158,0,4368_7778195_5041010,4368_320 -4358_80711,227,4368_9875,Swords Manor,2561,0,4368_7778195_5041015,4368_320 -4358_80711,228,4368_9876,Swords Manor,9947,0,4368_7778195_5041012,4368_320 -4358_80711,227,4368_9877,Swords Manor,2562,0,4368_7778195_5041025,4368_320 -4358_80711,229,4368_9878,Swords Manor,16349,0,4368_7778195_5041006,4368_321 -4358_80711,228,4368_9879,Swords Manor,10141,0,4368_7778195_5041007,4368_320 -4358_80756,229,4368_988,Ashington,18580,1,4368_7778195_7122006,4368_33 -4358_80711,227,4368_9880,Swords Manor,2433,0,4368_7778195_5041018,4368_320 -4358_80711,228,4368_9881,Swords Manor,10177,0,4368_7778195_5041011,4368_320 -4358_80711,229,4368_9882,Swords Manor,16258,0,4368_7778195_5041008,4368_320 -4358_80711,227,4368_9883,Swords Manor,2375,0,4368_7778195_5041019,4368_320 -4358_80711,228,4368_9884,Swords Manor,10281,0,4368_7778195_5041017,4368_320 -4358_80711,227,4368_9885,Swords Manor,2650,0,4368_7778195_5041001,4368_320 -4358_80711,229,4368_9886,Swords Manor,16314,0,4368_7778195_5041003,4368_321 -4358_80711,228,4368_9887,Swords Manor,10223,0,4368_7778195_5041013,4368_320 -4358_80711,227,4368_9888,Swords Manor,2664,0,4368_7778195_5041003,4368_320 -4358_80711,228,4368_9889,Swords Manor,10237,0,4368_7778195_5041005,4368_320 -4358_80756,228,4368_989,Ashington,13177,1,4368_7778195_7122007,4368_33 -4358_80711,229,4368_9890,Swords Manor,16204,0,4368_7778195_5041009,4368_320 -4358_80711,227,4368_9891,Swords Manor,2440,0,4368_7778195_5041021,4368_320 -4358_80711,228,4368_9892,Swords Manor,10170,0,4368_7778195_5041001,4368_320 -4358_80711,227,4368_9893,Swords Manor,2489,0,4368_7778195_5041011,4368_320 -4358_80711,229,4368_9894,Swords Manor,16193,0,4368_7778195_5041017,4368_321 -4358_80711,228,4368_9895,Swords Manor,10059,0,4368_7778195_5041014,4368_320 -4358_80711,227,4368_9896,Swords Manor,2674,0,4368_7778195_5041022,4368_320 -4358_80711,228,4368_9897,Swords Manor,10312,0,4368_7778195_5041019,4368_320 -4358_80711,229,4368_9898,Swords Manor,16125,0,4368_7778195_5041018,4368_320 -4358_80711,227,4368_9899,Swords Manor,2738,0,4368_7778195_5041024,4368_320 -4358_80760,227,4368_99,Shaw street,1799,0,4368_7778195_9001012,4368_2 -4358_80756,227,4368_990,Ashington,3588,1,4368_7778195_7122012,4368_33 -4358_80711,228,4368_9900,Swords Manor,10143,0,4368_7778195_5041007,4368_320 -4358_80711,229,4368_9901,Swords Manor,16201,0,4368_7778195_5041013,4368_320 -4358_80711,227,4368_9902,Swords Manor,2564,0,4368_7778195_5041025,4368_321 -4358_80711,228,4368_9903,Swords Manor,10179,0,4368_7778195_5041011,4368_320 -4358_80711,227,4368_9904,Swords Manor,2435,0,4368_7778195_5041018,4368_320 -4358_80711,228,4368_9905,Swords Manor,10283,0,4368_7778195_5041017,4368_320 -4358_80711,229,4368_9906,Swords Manor,16372,0,4368_7778195_5041022,4368_320 -4358_80711,227,4368_9907,Swords Manor,2709,0,4368_7778195_5041004,4368_320 -4358_80711,228,4368_9908,Swords Manor,10225,0,4368_7778195_5041013,4368_320 -4358_80711,227,4368_9909,Swords Manor,2669,0,4368_7778195_5041026,4368_320 -4358_80756,229,4368_991,Ashington,18603,1,4368_7778195_7122008,4368_33 -4358_80711,229,4368_9910,Swords Manor,16206,0,4368_7778195_5041009,4368_321 -4358_80711,228,4368_9911,Swords Manor,10051,0,4368_7778195_5041004,4368_320 -4358_80711,227,4368_9912,Swords Manor,2370,0,4368_7778195_5041028,4368_320 -4358_80711,228,4368_9913,Swords Manor,10172,0,4368_7778195_5041001,4368_320 -4358_80711,229,4368_9914,Swords Manor,16132,0,4368_7778195_5041020,4368_320 -4358_80711,227,4368_9915,Swords Manor,2356,0,4368_7778195_5041020,4368_320 -4358_80711,228,4368_9916,Swords Manor,10061,0,4368_7778195_5041014,4368_320 -4358_80711,229,4368_9917,Swords Manor,16195,0,4368_7778195_5041017,4368_320 -4358_80711,227,4368_9918,Swords Manor,2349,0,4368_7778195_5041029,4368_321 -4358_80711,228,4368_9919,Swords Manor,10007,0,4368_7778195_5041015,4368_320 -4358_80756,228,4368_992,Ashington,13189,1,4368_7778195_7122002,4368_33 -4358_80711,227,4368_9920,Swords Manor,2729,0,4368_7778195_5041023,4368_320 -4358_80711,228,4368_9921,Swords Manor,10145,0,4368_7778195_5041007,4368_320 -4358_80711,229,4368_9922,Swords Manor,16238,0,4368_7778195_5041019,4368_320 -4358_80711,227,4368_9923,Swords Manor,2616,0,4368_7778195_5041037,4368_320 -4358_80711,228,4368_9924,Swords Manor,10316,0,4368_7778195_5041022,4368_320 -4358_80711,227,4368_9925,Swords Manor,7836,0,4368_7778195_8818227,4368_321 -4358_80711,229,4368_9926,Swords Manor,16318,0,4368_7778195_5041021,4368_320 -4358_80711,227,4368_9927,Swords Manor,2697,0,4368_7778195_5041017,4368_321 -4358_80711,228,4368_9928,Swords Manor,10119,0,4368_7778195_5041009,4368_320 -4358_80711,227,4368_9929,Swords Manor,2437,0,4368_7778195_5041018,4368_320 -4358_80756,227,4368_993,Ashington,3522,1,4368_7778195_7122018,4368_33 -4358_80711,228,4368_9930,Swords Manor,10102,0,4368_7778195_5041024,4368_320 -4358_80711,229,4368_9931,Swords Manor,16141,0,4368_7778195_5041011,4368_320 -4358_80711,227,4368_9932,Swords Manor,2755,0,4368_7778195_5041034,4368_320 -4358_80711,228,4368_9933,Swords Manor,10241,0,4368_7778195_5041005,4368_320 -4358_80711,227,4368_9934,Swords Manor,2654,0,4368_7778195_5041001,4368_320 -4358_80711,229,4368_9935,Swords Manor,16191,0,4368_7778195_5041024,4368_321 -4358_80711,228,4368_9936,Swords Manor,10279,0,4368_7778195_5041016,4368_320 -4358_80711,228,4368_9937,Swords Manor,10148,0,4368_7778195_5041023,4368_320 -4358_80711,229,4368_9938,Swords Manor,16149,0,4368_7778195_5041016,4368_321 -4358_80711,227,4368_9939,Swords Manor,2478,0,4368_7778195_5041031,4368_322 -4358_80756,228,4368_994,Ashington,13111,1,4368_7778195_7122010,4368_33 -4358_80711,227,4368_9940,Swords Manor,2747,0,4368_7778195_5041032,4368_320 -4358_80711,229,4368_9941,Swords Manor,16240,0,4368_7778195_5041019,4368_321 -4358_80711,228,4368_9942,Swords Manor,9953,0,4368_7778195_5041012,4368_322 -4358_80711,229,4368_9943,Swords Manor,16320,0,4368_7778195_5041021,4368_320 -4358_80711,228,4368_9944,Swords Manor,10287,0,4368_7778195_5041017,4368_321 -4358_80711,227,4368_9945,Swords Manor,2751,0,4368_7778195_5041033,4368_322 -4358_80711,229,4368_9946,Swords Manor,16214,0,4368_7778195_5041025,4368_320 -4358_80711,228,4368_9947,Swords Manor,10104,0,4368_7778195_5041024,4368_321 -4358_80711,227,4368_9948,Swords Manor,2760,0,4368_7778195_5041036,4368_322 -4358_80711,228,4368_9949,Swords Manor,10065,0,4368_7778195_5041014,4368_320 -4358_80756,227,4368_995,Ashington,3580,1,4368_7778195_7122014,4368_33 -4358_80711,227,4368_9950,Swords Manor,2687,0,4368_7778195_5041042,4368_321 -4358_80711,229,4368_9951,Swords Manor,16169,0,4368_7778195_5041027,4368_322 -4358_80711,229,4368_9952,Swords Manor,16151,0,4368_7778195_5041016,4368_320 -4358_80711,227,4368_9953,Swords Manor,2480,0,4368_7778195_5041031,4368_321 -4358_80711,228,4368_9954,Swords Manor,10011,0,4368_7778195_5041015,4368_322 -4358_80711,229,4368_9955,Swords Manor,16280,0,4368_7778195_5041023,4368_320 -4358_80711,227,4368_9956,Swords Manor,2722,0,4368_7778195_5041038,4368_321 -4358_80711,228,4368_9957,Swords Manor,10320,0,4368_7778195_5041022,4368_322 -4358_80711,227,4368_9958,Swords Manor,2423,0,4368_7778195_5041039,4368_320 -4358_80711,229,4368_9959,Swords Manor,16252,0,4368_7778195_5041031,4368_321 -4358_80756,229,4368_996,Ashington,18529,1,4368_7778195_7122004,4368_34 -4358_80711,228,4368_9960,Swords Manor,10098,0,4368_7778195_5041026,4368_322 -4358_80711,228,4368_9961,Swords Manor,10054,0,4368_7778195_5041025,4368_320 -4358_80711,227,4368_9962,Swords Manor,2759,0,4368_7778195_5041034,4368_321 -4358_80711,229,4368_9963,Swords Manor,16171,0,4368_7778195_5041027,4368_322 -4358_80711,227,4368_9964,Swords Manor,2429,0,4368_7778195_5041041,4368_320 -4358_80711,228,4368_9965,Swords Manor,10152,0,4368_7778195_5041023,4368_321 -4358_80711,229,4368_9966,Swords Manor,16217,0,4368_7778195_5041030,4368_322 -4358_80711,228,4368_9967,Swords Manor,10245,0,4368_7778195_5041027,4368_320 -4358_80711,227,4368_9968,Swords Manor,2724,0,4368_7778195_5041038,4368_321 -4358_80711,229,4368_9969,Swords Manor,16306,0,4368_7778195_5041029,4368_322 -4358_80756,227,4368_997,Ashington,3427,1,4368_7778195_7122004,4368_33 -4358_80711,227,4368_9970,Swords Manor,2425,0,4368_7778195_5041039,4368_320 -4358_80711,229,4368_9971,Swords Manor,16254,0,4368_7778195_5041031,4368_321 -4358_80711,228,4368_9972,Swords Manor,10100,0,4368_7778195_5041026,4368_322 -4358_80711,228,4368_9973,Swords Manor,9965,0,4368_7778195_5041030,4368_320 -4358_80711,229,4368_9974,Swords Manor,16327,0,4368_7778195_5041033,4368_321 -4358_80711,227,4368_9975,Swords Manor,2494,0,4368_7778195_5041040,4368_322 -4358_80711,228,4368_9976,Swords Manor,9991,0,4368_7778195_5041028,4368_320 -4358_80711,229,4368_9977,Swords Manor,16143,0,4368_7778195_5041032,4368_321 -4358_80711,227,4368_9978,Swords Manor,2611,0,4368_7778195_5041043,4368_322 -4358_80711,227,4368_9979,Swords Manor,2640,0,4368_7778195_5041044,4368_320 -4358_80756,228,4368_998,Ashington,13133,1,4368_7778195_7122004,4368_33 -4358_80711,229,4368_9980,Swords Manor,16209,0,4368_7778195_5041034,4368_321 -4358_80711,228,4368_9981,Swords Manor,10013,0,4368_7778195_5041031,4368_322 -4358_80711,227,4368_9982,Swords Manor,2625,0,4368_7778195_5041045,4368_320 -4358_80711,229,4368_9983,Swords Manor,16122,0,4368_7778195_5041035,4368_321 -4358_80711,228,4368_9984,Swords Manor,10160,0,4368_7778195_5041032,4368_322 -4358_80711,228,4368_9985,Swords Manor,9967,0,4368_7778195_5041030,4368_320 -4358_80711,229,4368_9986,Swords Manor,16329,0,4368_7778195_5041033,4368_321 -4358_80711,227,4368_9987,Swords Manor,2496,0,4368_7778195_5041040,4368_322 -4358_80711,227,4368_9988,Swords Manor,2524,0,4368_7778195_5041046,4368_320 -4358_80711,229,4368_9989,Swords Manor,16179,0,4368_7778195_5041037,4368_321 -4358_80756,229,4368_999,Ashington,18590,1,4368_7778195_7122007,4368_33 -4358_80711,228,4368_9990,Swords Manor,10055,0,4368_7778195_5041033,4368_322 -4358_80711,227,4368_9991,Swords Manor,2642,0,4368_7778195_5041044,4368_320 -4358_80711,229,4368_9992,Swords Manor,16211,0,4368_7778195_5041034,4368_321 -4358_80711,228,4368_9993,Swords Manor,10015,0,4368_7778195_5041031,4368_322 -4358_80711,227,4368_9994,Swords Manor,2627,0,4368_7778195_5041045,4368_320 -4358_80711,229,4368_9995,Swords Manor,16124,0,4368_7778195_5041035,4368_321 -4358_80711,228,4368_9996,Swords Manor,10162,0,4368_7778195_5041032,4368_322 -4358_80711,229,4368_9997,Abbey St,16113,1,4368_7778195_5041001,4368_323 -4358_80711,227,4368_9998,Abbey St,2502,1,4368_7778195_5041002,4368_324 -4358_80711,228,4368_9999,Abbey St,10163,1,4368_7778195_5041001,4368_325 -4289_75960,259,4376_1,Sutton Station,105764014,0,4376_7778022_103101,4376_1 -4289_75960,268,4376_10,Sutton Station,106141026,0,4376_7778022_103503,4376_1 -4289_75960,263,4376_100,Sutton Station,105541490,0,4376_7778022_103108,4376_1 -4289_75960,268,4376_1000,Dublin Airport,106142841,1,4376_7778022_103503,4376_3 -4289_75959,264,4376_10000,Dun Laoghaire,105652264,0,4376_7778022_100100,4376_119 -4289_75959,265,4376_10001,Dun Laoghaire,105812264,0,4376_7778022_100100,4376_119 -4289_75959,266,4376_10002,Dun Laoghaire,105822264,0,4376_7778022_100100,4376_119 -4289_75959,267,4376_10003,Dun Laoghaire,106052264,0,4376_7778022_100100,4376_119 -4289_75959,268,4376_10004,Dun Laoghaire,106142264,0,4376_7778022_100100,4376_119 -4289_75959,269,4376_10005,Dun Laoghaire,106232264,0,4376_7778022_100100,4376_119 -4289_75959,259,4376_10006,Dun Laoghaire,105765042,0,4376_7778022_100110,4376_119 -4289_75959,270,4376_10007,Dun Laoghaire,105277752,0,4376_7778022_100030,4376_119 -4289_75959,146,4376_10008,Dun Laoghaire,105247752,0,4376_7778022_100030,4376_119 -4289_75959,271,4376_10009,Dun Laoghaire,105237752,0,4376_7778022_100030,4376_119 -4289_75960,269,4376_1001,Dublin Airport,106232841,1,4376_7778022_103503,4376_3 -4289_75959,115,4376_10010,Dun Laoghaire,105217752,0,4376_7778022_100030,4376_119 -4289_75959,260,4376_10011,Dun Laoghaire,105312322,0,4376_7778022_100120,4376_119 -4289_75959,261,4376_10012,Dun Laoghaire,105322322,0,4376_7778022_100120,4376_119 -4289_75959,262,4376_10013,Dun Laoghaire,105432322,0,4376_7778022_100120,4376_119 -4289_75959,263,4376_10014,Dun Laoghaire,105542322,0,4376_7778022_100120,4376_119 -4289_75959,264,4376_10015,Dun Laoghaire,105652322,0,4376_7778022_100120,4376_119 -4289_75959,265,4376_10016,Dun Laoghaire,105812322,0,4376_7778022_100120,4376_119 -4289_75959,266,4376_10017,Dun Laoghaire,105822322,0,4376_7778022_100120,4376_119 -4289_75959,267,4376_10018,Dun Laoghaire,106052322,0,4376_7778022_100120,4376_119 -4289_75959,268,4376_10019,Dun Laoghaire,106142322,0,4376_7778022_100120,4376_119 -4289_75960,259,4376_1002,Dublin Airport,105765557,1,4376_7778022_103502,4376_3 -4289_75959,269,4376_10020,Dun Laoghaire,106232322,0,4376_7778022_100120,4376_119 -4289_75959,259,4376_10021,Dun Laoghaire,105765090,0,4376_7778022_100080,4376_119 -4289_75959,270,4376_10022,Dun Laoghaire,105277790,0,4376_7778022_100070,4376_119 -4289_75959,146,4376_10023,Dun Laoghaire,105247790,0,4376_7778022_100070,4376_119 -4289_75959,271,4376_10024,Dun Laoghaire,105237790,0,4376_7778022_100070,4376_119 -4289_75959,115,4376_10025,Dun Laoghaire,105217790,0,4376_7778022_100070,4376_119 -4289_75959,260,4376_10026,Dun Laoghaire,105312380,0,4376_7778022_100130,4376_119 -4289_75959,261,4376_10027,Dun Laoghaire,105322380,0,4376_7778022_100130,4376_119 -4289_75959,262,4376_10028,Dun Laoghaire,105432380,0,4376_7778022_100130,4376_119 -4289_75959,263,4376_10029,Dun Laoghaire,105542380,0,4376_7778022_100130,4376_119 -4289_75960,270,4376_1003,Dublin Airport,105278223,1,4376_7778022_103502,4376_4 -4289_75959,264,4376_10030,Dun Laoghaire,105652380,0,4376_7778022_100130,4376_119 -4289_75959,265,4376_10031,Dun Laoghaire,105812380,0,4376_7778022_100130,4376_119 -4289_75959,266,4376_10032,Dun Laoghaire,105822380,0,4376_7778022_100130,4376_119 -4289_75959,267,4376_10033,Dun Laoghaire,106052380,0,4376_7778022_100130,4376_119 -4289_75959,268,4376_10034,Dun Laoghaire,106142380,0,4376_7778022_100130,4376_119 -4289_75959,269,4376_10035,Dun Laoghaire,106232380,0,4376_7778022_100130,4376_119 -4289_75959,259,4376_10036,Dun Laoghaire,105765142,0,4376_7778022_100120,4376_119 -4289_75959,270,4376_10037,Dun Laoghaire,105277842,0,4376_7778022_100010,4376_119 -4289_75959,146,4376_10038,Dun Laoghaire,105247842,0,4376_7778022_100010,4376_119 -4289_75959,271,4376_10039,Dun Laoghaire,105237842,0,4376_7778022_100010,4376_119 -4289_75960,146,4376_1004,Dublin Airport,105248223,1,4376_7778022_103502,4376_4 -4289_75959,115,4376_10040,Dun Laoghaire,105217842,0,4376_7778022_100010,4376_119 -4289_75959,260,4376_10041,Dun Laoghaire,105312438,0,4376_7778022_100110,4376_119 -4289_75959,261,4376_10042,Dun Laoghaire,105322438,0,4376_7778022_100110,4376_119 -4289_75959,262,4376_10043,Dun Laoghaire,105432438,0,4376_7778022_100110,4376_119 -4289_75959,263,4376_10044,Dun Laoghaire,105542438,0,4376_7778022_100110,4376_119 -4289_75959,264,4376_10045,Dun Laoghaire,105652438,0,4376_7778022_100110,4376_119 -4289_75959,265,4376_10046,Dun Laoghaire,105812438,0,4376_7778022_100110,4376_119 -4289_75959,266,4376_10047,Dun Laoghaire,105822438,0,4376_7778022_100110,4376_119 -4289_75959,267,4376_10048,Dun Laoghaire,106052438,0,4376_7778022_100110,4376_119 -4289_75959,268,4376_10049,Dun Laoghaire,106142438,0,4376_7778022_100110,4376_119 -4289_75960,271,4376_1005,Dublin Airport,105238223,1,4376_7778022_103502,4376_4 -4289_75959,269,4376_10050,Dun Laoghaire,106232438,0,4376_7778022_100110,4376_119 -4289_75959,259,4376_10051,Dun Laoghaire,105765204,0,4376_7778022_100090,4376_119 -4289_75959,270,4376_10052,Dun Laoghaire,105277892,0,4376_7778022_100050,4376_119 -4289_75959,146,4376_10053,Dun Laoghaire,105247892,0,4376_7778022_100050,4376_119 -4289_75959,271,4376_10054,Dun Laoghaire,105237892,0,4376_7778022_100050,4376_119 -4289_75959,115,4376_10055,Dun Laoghaire,105217892,0,4376_7778022_100050,4376_119 -4289_75959,260,4376_10056,Dun Laoghaire,105312498,0,4376_7778022_100100,4376_119 -4289_75959,261,4376_10057,Dun Laoghaire,105322498,0,4376_7778022_100100,4376_119 -4289_75959,262,4376_10058,Dun Laoghaire,105432498,0,4376_7778022_100100,4376_119 -4289_75959,263,4376_10059,Dun Laoghaire,105542498,0,4376_7778022_100100,4376_119 -4289_75960,115,4376_1006,Dublin Airport,105218223,1,4376_7778022_103502,4376_4 -4289_75959,264,4376_10060,Dun Laoghaire,105652498,0,4376_7778022_100100,4376_119 -4289_75959,265,4376_10061,Dun Laoghaire,105812498,0,4376_7778022_100100,4376_119 -4289_75959,266,4376_10062,Dun Laoghaire,105822498,0,4376_7778022_100100,4376_119 -4289_75959,267,4376_10063,Dun Laoghaire,106052498,0,4376_7778022_100100,4376_119 -4289_75959,268,4376_10064,Dun Laoghaire,106142498,0,4376_7778022_100100,4376_119 -4289_75959,269,4376_10065,Dun Laoghaire,106232498,0,4376_7778022_100100,4376_119 -4289_75959,259,4376_10066,Dun Laoghaire,105765258,0,4376_7778022_100010,4376_119 -4289_75959,270,4376_10067,Dun Laoghaire,105277938,0,4376_7778022_100030,4376_119 -4289_75959,146,4376_10068,Dun Laoghaire,105247938,0,4376_7778022_100030,4376_119 -4289_75959,271,4376_10069,Dun Laoghaire,105237938,0,4376_7778022_100030,4376_119 -4289_75960,260,4376_1007,Dublin Airport,105312885,1,4376_7778022_103501,4376_3 -4289_75959,115,4376_10070,Dun Laoghaire,105217938,0,4376_7778022_100030,4376_119 -4289_75959,260,4376_10071,Dun Laoghaire,105312548,0,4376_7778022_100120,4376_119 -4289_75959,261,4376_10072,Dun Laoghaire,105322548,0,4376_7778022_100120,4376_119 -4289_75959,262,4376_10073,Dun Laoghaire,105432548,0,4376_7778022_100120,4376_119 -4289_75959,263,4376_10074,Dun Laoghaire,105542548,0,4376_7778022_100120,4376_119 -4289_75959,264,4376_10075,Dun Laoghaire,105652548,0,4376_7778022_100120,4376_119 -4289_75959,265,4376_10076,Dun Laoghaire,105812548,0,4376_7778022_100120,4376_119 -4289_75959,266,4376_10077,Dun Laoghaire,105822548,0,4376_7778022_100120,4376_119 -4289_75959,267,4376_10078,Dun Laoghaire,106052548,0,4376_7778022_100120,4376_119 -4289_75959,268,4376_10079,Dun Laoghaire,106142548,0,4376_7778022_100120,4376_119 -4289_75960,261,4376_1008,Dublin Airport,105322885,1,4376_7778022_103501,4376_3 -4289_75959,269,4376_10080,Dun Laoghaire,106232548,0,4376_7778022_100120,4376_119 -4289_75959,259,4376_10081,Dun Laoghaire,105765288,0,4376_7778022_100080,4376_118 -4289_75959,270,4376_10082,Dun Laoghaire,105277966,0,4376_7778022_100070,4376_118 -4289_75959,146,4376_10083,Dun Laoghaire,105247966,0,4376_7778022_100070,4376_118 -4289_75959,271,4376_10084,Dun Laoghaire,105237966,0,4376_7778022_100070,4376_118 -4289_75959,115,4376_10085,Dun Laoghaire,105217966,0,4376_7778022_100070,4376_118 -4289_75959,259,4376_10086,Dun Laoghaire,105765332,0,4376_7778022_100090,4376_118 -4289_75959,270,4376_10087,Dun Laoghaire,105278004,0,4376_7778022_100010,4376_118 -4289_75959,146,4376_10088,Dun Laoghaire,105248004,0,4376_7778022_100010,4376_118 -4289_75959,271,4376_10089,Dun Laoghaire,105238004,0,4376_7778022_100010,4376_118 -4289_75960,262,4376_1009,Dublin Airport,105432885,1,4376_7778022_103501,4376_3 -4289_75959,115,4376_10090,Dun Laoghaire,105218004,0,4376_7778022_100010,4376_118 -4289_75959,260,4376_10091,Dun Laoghaire,105312628,0,4376_7778022_100130,4376_119 -4289_75959,261,4376_10092,Dun Laoghaire,105322628,0,4376_7778022_100130,4376_119 -4289_75959,262,4376_10093,Dun Laoghaire,105432628,0,4376_7778022_100130,4376_119 -4289_75959,263,4376_10094,Dun Laoghaire,105542628,0,4376_7778022_100130,4376_119 -4289_75959,264,4376_10095,Dun Laoghaire,105652628,0,4376_7778022_100130,4376_119 -4289_75959,265,4376_10096,Dun Laoghaire,105812628,0,4376_7778022_100130,4376_119 -4289_75959,266,4376_10097,Dun Laoghaire,105822628,0,4376_7778022_100130,4376_119 -4289_75959,267,4376_10098,Dun Laoghaire,106052628,0,4376_7778022_100130,4376_119 -4289_75959,268,4376_10099,Dun Laoghaire,106142628,0,4376_7778022_100130,4376_119 -4289_75960,264,4376_101,Sutton Station,105651490,0,4376_7778022_103108,4376_1 -4289_75960,263,4376_1010,Dublin Airport,105542885,1,4376_7778022_103501,4376_3 -4289_75959,269,4376_10100,Dun Laoghaire,106232628,0,4376_7778022_100130,4376_119 -4289_75959,259,4376_10101,Dun Laoghaire,105765372,0,4376_7778022_100120,4376_118 -4289_75959,270,4376_10102,Dun Laoghaire,105278042,0,4376_7778022_100090,4376_118 -4289_75959,146,4376_10103,Dun Laoghaire,105248042,0,4376_7778022_100090,4376_118 -4289_75959,271,4376_10104,Dun Laoghaire,105238042,0,4376_7778022_100090,4376_118 -4289_75959,115,4376_10105,Dun Laoghaire,105218042,0,4376_7778022_100090,4376_118 -4289_75959,260,4376_10106,Dun Laoghaire,105312672,0,4376_7778022_100060,4376_119 -4289_75959,261,4376_10107,Dun Laoghaire,105322672,0,4376_7778022_100060,4376_119 -4289_75959,262,4376_10108,Dun Laoghaire,105432672,0,4376_7778022_100060,4376_119 -4289_75959,263,4376_10109,Dun Laoghaire,105542672,0,4376_7778022_100060,4376_119 -4289_75960,264,4376_1011,Dublin Airport,105652885,1,4376_7778022_103501,4376_3 -4289_75959,264,4376_10110,Dun Laoghaire,105652672,0,4376_7778022_100060,4376_119 -4289_75959,265,4376_10111,Dun Laoghaire,105812672,0,4376_7778022_100060,4376_119 -4289_75959,266,4376_10112,Dun Laoghaire,105822672,0,4376_7778022_100060,4376_119 -4289_75959,267,4376_10113,Dun Laoghaire,106052672,0,4376_7778022_100060,4376_119 -4289_75959,268,4376_10114,Dun Laoghaire,106142672,0,4376_7778022_100060,4376_119 -4289_75959,269,4376_10115,Dun Laoghaire,106232672,0,4376_7778022_100060,4376_119 -4289_75959,259,4376_10116,Dun Laoghaire,105765420,0,4376_7778022_100050,4376_118 -4289_75959,270,4376_10117,Dun Laoghaire,105278084,0,4376_7778022_100080,4376_118 -4289_75959,146,4376_10118,Dun Laoghaire,105248084,0,4376_7778022_100080,4376_118 -4289_75959,271,4376_10119,Dun Laoghaire,105238084,0,4376_7778022_100080,4376_118 -4289_75960,265,4376_1012,Dublin Airport,105812885,1,4376_7778022_103501,4376_3 -4289_75959,115,4376_10120,Dun Laoghaire,105218084,0,4376_7778022_100080,4376_118 -4289_75959,260,4376_10121,Dun Laoghaire,105312726,0,4376_7778022_100090,4376_119 -4289_75959,261,4376_10122,Dun Laoghaire,105322726,0,4376_7778022_100090,4376_119 -4289_75959,262,4376_10123,Dun Laoghaire,105432726,0,4376_7778022_100090,4376_119 -4289_75959,263,4376_10124,Dun Laoghaire,105542726,0,4376_7778022_100090,4376_119 -4289_75959,264,4376_10125,Dun Laoghaire,105652726,0,4376_7778022_100090,4376_119 -4289_75959,265,4376_10126,Dun Laoghaire,105812726,0,4376_7778022_100090,4376_119 -4289_75959,266,4376_10127,Dun Laoghaire,105822726,0,4376_7778022_100090,4376_119 -4289_75959,267,4376_10128,Dun Laoghaire,106052726,0,4376_7778022_100090,4376_119 -4289_75959,268,4376_10129,Dun Laoghaire,106142726,0,4376_7778022_100090,4376_119 -4289_75960,266,4376_1013,Dublin Airport,105822885,1,4376_7778022_103501,4376_3 -4289_75959,269,4376_10130,Dun Laoghaire,106232726,0,4376_7778022_100090,4376_119 -4289_75959,259,4376_10131,Dun Laoghaire,105765460,0,4376_7778022_100090,4376_118 -4289_75959,270,4376_10132,Dun Laoghaire,105278120,0,4376_7778022_100010,4376_118 -4289_75959,146,4376_10133,Dun Laoghaire,105248120,0,4376_7778022_100010,4376_118 -4289_75959,271,4376_10134,Dun Laoghaire,105238120,0,4376_7778022_100010,4376_118 -4289_75959,115,4376_10135,Dun Laoghaire,105218120,0,4376_7778022_100010,4376_118 -4289_75959,260,4376_10136,Dun Laoghaire,105312768,0,4376_7778022_100040,4376_119 -4289_75959,261,4376_10137,Dun Laoghaire,105322768,0,4376_7778022_100040,4376_119 -4289_75959,262,4376_10138,Dun Laoghaire,105432768,0,4376_7778022_100040,4376_119 -4289_75959,263,4376_10139,Dun Laoghaire,105542768,0,4376_7778022_100040,4376_119 -4289_75960,267,4376_1014,Dublin Airport,106052885,1,4376_7778022_103501,4376_3 -4289_75959,264,4376_10140,Dun Laoghaire,105652768,0,4376_7778022_100040,4376_119 -4289_75959,265,4376_10141,Dun Laoghaire,105812768,0,4376_7778022_100040,4376_119 -4289_75959,266,4376_10142,Dun Laoghaire,105822768,0,4376_7778022_100040,4376_119 -4289_75959,267,4376_10143,Dun Laoghaire,106052768,0,4376_7778022_100040,4376_119 -4289_75959,268,4376_10144,Dun Laoghaire,106142768,0,4376_7778022_100040,4376_119 -4289_75959,269,4376_10145,Dun Laoghaire,106232768,0,4376_7778022_100040,4376_119 -4289_75959,259,4376_10146,Dun Laoghaire,105765508,0,4376_7778022_100100,4376_118 -4289_75959,270,4376_10147,Dun Laoghaire,105278162,0,4376_7778022_100090,4376_118 -4289_75959,146,4376_10148,Dun Laoghaire,105248162,0,4376_7778022_100090,4376_118 -4289_75959,271,4376_10149,Dun Laoghaire,105238162,0,4376_7778022_100090,4376_118 -4289_75960,268,4376_1015,Dublin Airport,106142885,1,4376_7778022_103501,4376_3 -4289_75959,115,4376_10150,Dun Laoghaire,105218162,0,4376_7778022_100090,4376_118 -4289_75959,260,4376_10151,Dun Laoghaire,105312820,0,4376_7778022_100060,4376_119 -4289_75959,261,4376_10152,Dun Laoghaire,105322820,0,4376_7778022_100060,4376_119 -4289_75959,262,4376_10153,Dun Laoghaire,105432820,0,4376_7778022_100060,4376_119 -4289_75959,263,4376_10154,Dun Laoghaire,105542820,0,4376_7778022_100060,4376_119 -4289_75959,264,4376_10155,Dun Laoghaire,105652820,0,4376_7778022_100060,4376_119 -4289_75959,265,4376_10156,Dun Laoghaire,105812820,0,4376_7778022_100060,4376_119 -4289_75959,266,4376_10157,Dun Laoghaire,105822820,0,4376_7778022_100060,4376_119 -4289_75959,267,4376_10158,Dun Laoghaire,106052820,0,4376_7778022_100060,4376_119 -4289_75959,268,4376_10159,Dun Laoghaire,106142820,0,4376_7778022_100060,4376_119 -4289_75960,269,4376_1016,Dublin Airport,106232885,1,4376_7778022_103501,4376_3 -4289_75959,269,4376_10160,Dun Laoghaire,106232820,0,4376_7778022_100060,4376_119 -4289_75959,259,4376_10161,Dun Laoghaire,105765544,0,4376_7778022_100050,4376_118 -4289_75959,270,4376_10162,Dun Laoghaire,105278196,0,4376_7778022_100080,4376_118 -4289_75959,146,4376_10163,Dun Laoghaire,105248196,0,4376_7778022_100080,4376_118 -4289_75959,271,4376_10164,Dun Laoghaire,105238196,0,4376_7778022_100080,4376_118 -4289_75959,115,4376_10165,Dun Laoghaire,105218196,0,4376_7778022_100080,4376_118 -4289_75959,260,4376_10166,Dun Laoghaire,105312862,0,4376_7778022_100090,4376_119 -4289_75959,261,4376_10167,Dun Laoghaire,105322862,0,4376_7778022_100090,4376_119 -4289_75959,262,4376_10168,Dun Laoghaire,105432862,0,4376_7778022_100090,4376_119 -4289_75959,263,4376_10169,Dun Laoghaire,105542862,0,4376_7778022_100090,4376_119 -4289_75960,259,4376_1017,Dublin Airport,105765605,1,4376_7778022_103503,4376_3 -4289_75959,264,4376_10170,Dun Laoghaire,105652862,0,4376_7778022_100090,4376_119 -4289_75959,265,4376_10171,Dun Laoghaire,105812862,0,4376_7778022_100090,4376_119 -4289_75959,266,4376_10172,Dun Laoghaire,105822862,0,4376_7778022_100090,4376_119 -4289_75959,267,4376_10173,Dun Laoghaire,106052862,0,4376_7778022_100090,4376_119 -4289_75959,268,4376_10174,Dun Laoghaire,106142862,0,4376_7778022_100090,4376_119 -4289_75959,269,4376_10175,Dun Laoghaire,106232862,0,4376_7778022_100090,4376_119 -4289_75959,260,4376_10176,Dun Laoghaire,105312908,0,4376_7778022_100040,4376_118 -4289_75959,261,4376_10177,Dun Laoghaire,105322908,0,4376_7778022_100040,4376_118 -4289_75959,262,4376_10178,Dun Laoghaire,105432908,0,4376_7778022_100040,4376_118 -4289_75959,263,4376_10179,Dun Laoghaire,105542908,0,4376_7778022_100040,4376_118 -4289_75960,270,4376_1018,Dublin Airport,105278263,1,4376_7778022_103501,4376_4 -4289_75959,264,4376_10180,Dun Laoghaire,105652908,0,4376_7778022_100040,4376_118 -4289_75959,265,4376_10181,Dun Laoghaire,105812908,0,4376_7778022_100040,4376_118 -4289_75959,266,4376_10182,Dun Laoghaire,105822908,0,4376_7778022_100040,4376_118 -4289_75959,267,4376_10183,Dun Laoghaire,106052908,0,4376_7778022_100040,4376_118 -4289_75959,268,4376_10184,Dun Laoghaire,106142908,0,4376_7778022_100040,4376_118 -4289_75959,269,4376_10185,Dun Laoghaire,106232908,0,4376_7778022_100040,4376_118 -4289_75959,259,4376_10186,Dun Laoghaire,105765590,0,4376_7778022_100090,4376_118 -4289_75959,270,4376_10187,Dun Laoghaire,105278236,0,4376_7778022_100010,4376_118 -4289_75959,146,4376_10188,Dun Laoghaire,105248236,0,4376_7778022_100010,4376_118 -4289_75959,271,4376_10189,Dun Laoghaire,105238236,0,4376_7778022_100010,4376_118 -4289_75960,146,4376_1019,Dublin Airport,105248263,1,4376_7778022_103501,4376_4 -4289_75959,115,4376_10190,Dun Laoghaire,105218236,0,4376_7778022_100010,4376_118 -4289_75959,260,4376_10191,Dun Laoghaire,105312954,0,4376_7778022_100060,4376_118 -4289_75959,261,4376_10192,Dun Laoghaire,105322954,0,4376_7778022_100060,4376_118 -4289_75959,262,4376_10193,Dun Laoghaire,105432954,0,4376_7778022_100060,4376_118 -4289_75959,263,4376_10194,Dun Laoghaire,105542954,0,4376_7778022_100060,4376_118 -4289_75959,264,4376_10195,Dun Laoghaire,105652954,0,4376_7778022_100060,4376_118 -4289_75959,265,4376_10196,Dun Laoghaire,105812954,0,4376_7778022_100060,4376_118 -4289_75959,266,4376_10197,Dun Laoghaire,105822954,0,4376_7778022_100060,4376_118 -4289_75959,267,4376_10198,Dun Laoghaire,106052954,0,4376_7778022_100060,4376_118 -4289_75959,268,4376_10199,Dun Laoghaire,106142954,0,4376_7778022_100060,4376_118 -4289_75960,265,4376_102,Sutton Station,105811490,0,4376_7778022_103108,4376_1 -4289_75960,271,4376_1020,Dublin Airport,105238263,1,4376_7778022_103501,4376_4 -4289_75959,269,4376_10200,Dun Laoghaire,106232954,0,4376_7778022_100060,4376_118 -4289_75959,259,4376_10201,Dun Laoghaire,105765626,0,4376_7778022_100100,4376_118 -4289_75959,270,4376_10202,Dun Laoghaire,105278270,0,4376_7778022_100090,4376_118 -4289_75959,146,4376_10203,Dun Laoghaire,105248270,0,4376_7778022_100090,4376_118 -4289_75959,271,4376_10204,Dun Laoghaire,105238270,0,4376_7778022_100090,4376_118 -4289_75959,115,4376_10205,Dun Laoghaire,105218270,0,4376_7778022_100090,4376_118 -4289_75959,260,4376_10206,Kilternan,105311099,1,4376_7778022_100110,4376_122 -4289_75959,261,4376_10207,Kilternan,105321099,1,4376_7778022_100110,4376_122 -4289_75959,262,4376_10208,Kilternan,105431099,1,4376_7778022_100110,4376_122 -4289_75959,263,4376_10209,Kilternan,105541099,1,4376_7778022_100110,4376_122 -4289_75960,115,4376_1021,Dublin Airport,105218263,1,4376_7778022_103501,4376_4 -4289_75959,264,4376_10210,Kilternan,105651099,1,4376_7778022_100110,4376_122 -4289_75959,265,4376_10211,Kilternan,105811099,1,4376_7778022_100110,4376_122 -4289_75959,266,4376_10212,Kilternan,105821099,1,4376_7778022_100110,4376_122 -4289_75959,267,4376_10213,Kilternan,106051099,1,4376_7778022_100110,4376_122 -4289_75959,268,4376_10214,Kilternan,106141099,1,4376_7778022_100110,4376_122 -4289_75959,269,4376_10215,Kilternan,106231099,1,4376_7778022_100110,4376_122 -4289_75959,260,4376_10216,Kilternan,105311143,1,4376_7778022_100100,4376_122 -4289_75959,261,4376_10217,Kilternan,105321143,1,4376_7778022_100100,4376_122 -4289_75959,262,4376_10218,Kilternan,105431143,1,4376_7778022_100100,4376_122 -4289_75959,263,4376_10219,Kilternan,105541143,1,4376_7778022_100100,4376_122 -4289_75960,260,4376_1022,Dublin Airport,105312935,1,4376_7778022_103107,4376_3 -4289_75959,264,4376_10220,Kilternan,105651143,1,4376_7778022_100100,4376_122 -4289_75959,265,4376_10221,Kilternan,105811143,1,4376_7778022_100100,4376_122 -4289_75959,266,4376_10222,Kilternan,105821143,1,4376_7778022_100100,4376_122 -4289_75959,267,4376_10223,Kilternan,106051143,1,4376_7778022_100100,4376_122 -4289_75959,268,4376_10224,Kilternan,106141143,1,4376_7778022_100100,4376_122 -4289_75959,269,4376_10225,Kilternan,106231143,1,4376_7778022_100100,4376_122 -4289_75959,260,4376_10226,Kilternan,105311165,1,4376_7778022_100120,4376_121 -4289_75959,261,4376_10227,Kilternan,105321165,1,4376_7778022_100120,4376_121 -4289_75959,262,4376_10228,Kilternan,105431165,1,4376_7778022_100120,4376_121 -4289_75959,263,4376_10229,Kilternan,105541165,1,4376_7778022_100120,4376_121 -4289_75960,261,4376_1023,Dublin Airport,105322935,1,4376_7778022_103107,4376_3 -4289_75959,264,4376_10230,Kilternan,105651165,1,4376_7778022_100120,4376_121 -4289_75959,265,4376_10231,Kilternan,105811165,1,4376_7778022_100120,4376_121 -4289_75959,266,4376_10232,Kilternan,105821165,1,4376_7778022_100120,4376_121 -4289_75959,267,4376_10233,Kilternan,106051165,1,4376_7778022_100120,4376_121 -4289_75959,268,4376_10234,Kilternan,106141165,1,4376_7778022_100120,4376_121 -4289_75959,269,4376_10235,Kilternan,106231165,1,4376_7778022_100120,4376_121 -4289_75959,259,4376_10236,Kilternan,105764101,1,4376_7778022_100030,4376_122 -4289_75959,259,4376_10237,Kilternan,105764143,1,4376_7778022_100070,4376_122 -4289_75959,260,4376_10238,Kilternan,105311253,1,4376_7778022_100130,4376_121 -4289_75959,261,4376_10239,Kilternan,105321253,1,4376_7778022_100130,4376_121 -4289_75960,262,4376_1024,Dublin Airport,105432935,1,4376_7778022_103107,4376_3 -4289_75959,262,4376_10240,Kilternan,105431253,1,4376_7778022_100130,4376_121 -4289_75959,263,4376_10241,Kilternan,105541253,1,4376_7778022_100130,4376_121 -4289_75959,264,4376_10242,Kilternan,105651253,1,4376_7778022_100130,4376_121 -4289_75959,265,4376_10243,Kilternan,105811253,1,4376_7778022_100130,4376_121 -4289_75959,266,4376_10244,Kilternan,105821253,1,4376_7778022_100130,4376_121 -4289_75959,267,4376_10245,Kilternan,106051253,1,4376_7778022_100130,4376_121 -4289_75959,268,4376_10246,Kilternan,106141253,1,4376_7778022_100130,4376_121 -4289_75959,269,4376_10247,Kilternan,106231253,1,4376_7778022_100130,4376_121 -4289_75959,259,4376_10248,Kilternan,105764185,1,4376_7778022_100080,4376_122 -4289_75959,260,4376_10249,Kilternan,105311335,1,4376_7778022_100110,4376_121 -4289_75960,263,4376_1025,Dublin Airport,105542935,1,4376_7778022_103107,4376_3 -4289_75959,261,4376_10250,Kilternan,105321335,1,4376_7778022_100110,4376_121 -4289_75959,262,4376_10251,Kilternan,105431335,1,4376_7778022_100110,4376_121 -4289_75959,263,4376_10252,Kilternan,105541335,1,4376_7778022_100110,4376_121 -4289_75959,264,4376_10253,Kilternan,105651335,1,4376_7778022_100110,4376_121 -4289_75959,265,4376_10254,Kilternan,105811335,1,4376_7778022_100110,4376_121 -4289_75959,266,4376_10255,Kilternan,105821335,1,4376_7778022_100110,4376_121 -4289_75959,267,4376_10256,Kilternan,106051335,1,4376_7778022_100110,4376_121 -4289_75959,268,4376_10257,Kilternan,106141335,1,4376_7778022_100110,4376_121 -4289_75959,269,4376_10258,Kilternan,106231335,1,4376_7778022_100110,4376_121 -4289_75959,259,4376_10259,Kilternan,105764229,1,4376_7778022_100030,4376_122 -4289_75960,264,4376_1026,Dublin Airport,105652935,1,4376_7778022_103107,4376_3 -4289_75959,260,4376_10260,Kilternan,105311411,1,4376_7778022_100100,4376_121 -4289_75959,261,4376_10261,Kilternan,105321411,1,4376_7778022_100100,4376_121 -4289_75959,262,4376_10262,Kilternan,105431411,1,4376_7778022_100100,4376_121 -4289_75959,263,4376_10263,Kilternan,105541411,1,4376_7778022_100100,4376_121 -4289_75959,264,4376_10264,Kilternan,105651411,1,4376_7778022_100100,4376_121 -4289_75959,265,4376_10265,Kilternan,105811411,1,4376_7778022_100100,4376_121 -4289_75959,266,4376_10266,Kilternan,105821411,1,4376_7778022_100100,4376_121 -4289_75959,267,4376_10267,Kilternan,106051411,1,4376_7778022_100100,4376_121 -4289_75959,268,4376_10268,Kilternan,106141411,1,4376_7778022_100100,4376_121 -4289_75959,269,4376_10269,Kilternan,106231411,1,4376_7778022_100100,4376_121 -4289_75960,265,4376_1027,Dublin Airport,105812935,1,4376_7778022_103107,4376_3 -4289_75959,259,4376_10270,Kilternan,105764273,1,4376_7778022_100070,4376_122 -4289_75959,270,4376_10271,Kilternan,105277095,1,4376_7778022_100030,4376_122 -4289_75959,146,4376_10272,Kilternan,105247095,1,4376_7778022_100030,4376_122 -4289_75959,271,4376_10273,Kilternan,105237095,1,4376_7778022_100030,4376_122 -4289_75959,115,4376_10274,Kilternan,105217095,1,4376_7778022_100030,4376_122 -4289_75959,260,4376_10275,Kilternan,105311459,1,4376_7778022_100120,4376_121 -4289_75959,261,4376_10276,Kilternan,105321459,1,4376_7778022_100120,4376_121 -4289_75959,262,4376_10277,Kilternan,105431459,1,4376_7778022_100120,4376_121 -4289_75959,263,4376_10278,Kilternan,105541459,1,4376_7778022_100120,4376_121 -4289_75959,264,4376_10279,Kilternan,105651459,1,4376_7778022_100120,4376_121 -4289_75960,266,4376_1028,Dublin Airport,105822935,1,4376_7778022_103107,4376_3 -4289_75959,265,4376_10280,Kilternan,105811459,1,4376_7778022_100120,4376_121 -4289_75959,266,4376_10281,Kilternan,105821459,1,4376_7778022_100120,4376_121 -4289_75959,267,4376_10282,Kilternan,106051459,1,4376_7778022_100120,4376_121 -4289_75959,268,4376_10283,Kilternan,106141459,1,4376_7778022_100120,4376_121 -4289_75959,269,4376_10284,Kilternan,106231459,1,4376_7778022_100120,4376_121 -4289_75959,259,4376_10285,Kilternan,105764321,1,4376_7778022_100110,4376_121 -4289_75959,270,4376_10286,Kilternan,105277137,1,4376_7778022_100060,4376_121 -4289_75959,146,4376_10287,Kilternan,105247137,1,4376_7778022_100060,4376_121 -4289_75959,271,4376_10288,Kilternan,105237137,1,4376_7778022_100060,4376_121 -4289_75959,115,4376_10289,Kilternan,105217137,1,4376_7778022_100060,4376_121 -4289_75960,267,4376_1029,Dublin Airport,106052935,1,4376_7778022_103107,4376_3 -4289_75959,260,4376_10290,Kilternan,105311517,1,4376_7778022_100130,4376_121 -4289_75959,261,4376_10291,Kilternan,105321517,1,4376_7778022_100130,4376_121 -4289_75959,262,4376_10292,Kilternan,105431517,1,4376_7778022_100130,4376_121 -4289_75959,263,4376_10293,Kilternan,105541517,1,4376_7778022_100130,4376_121 -4289_75959,264,4376_10294,Kilternan,105651517,1,4376_7778022_100130,4376_121 -4289_75959,265,4376_10295,Kilternan,105811517,1,4376_7778022_100130,4376_121 -4289_75959,266,4376_10296,Kilternan,105821517,1,4376_7778022_100130,4376_121 -4289_75959,267,4376_10297,Kilternan,106051517,1,4376_7778022_100130,4376_121 -4289_75959,268,4376_10298,Kilternan,106141517,1,4376_7778022_100130,4376_121 -4289_75959,269,4376_10299,Kilternan,106231517,1,4376_7778022_100130,4376_121 -4289_75960,266,4376_103,Sutton Station,105821490,0,4376_7778022_103108,4376_1 -4289_75960,268,4376_1030,Dublin Airport,106142935,1,4376_7778022_103107,4376_3 -4289_75959,259,4376_10300,Kilternan,105764373,1,4376_7778022_100080,4376_121 -4289_75959,270,4376_10301,Kilternan,105277171,1,4376_7778022_100070,4376_121 -4289_75959,146,4376_10302,Kilternan,105247171,1,4376_7778022_100070,4376_121 -4289_75959,271,4376_10303,Kilternan,105237171,1,4376_7778022_100070,4376_121 -4289_75959,115,4376_10304,Kilternan,105217171,1,4376_7778022_100070,4376_121 -4289_75959,260,4376_10305,Kilternan,105311571,1,4376_7778022_100110,4376_121 -4289_75959,261,4376_10306,Kilternan,105321571,1,4376_7778022_100110,4376_121 -4289_75959,262,4376_10307,Kilternan,105431571,1,4376_7778022_100110,4376_121 -4289_75959,263,4376_10308,Kilternan,105541571,1,4376_7778022_100110,4376_121 -4289_75959,264,4376_10309,Kilternan,105651571,1,4376_7778022_100110,4376_121 -4289_75960,269,4376_1031,Dublin Airport,106232935,1,4376_7778022_103107,4376_3 -4289_75959,265,4376_10310,Kilternan,105811571,1,4376_7778022_100110,4376_121 -4289_75959,266,4376_10311,Kilternan,105821571,1,4376_7778022_100110,4376_121 -4289_75959,267,4376_10312,Kilternan,106051571,1,4376_7778022_100110,4376_121 -4289_75959,268,4376_10313,Kilternan,106141571,1,4376_7778022_100110,4376_121 -4289_75959,269,4376_10314,Kilternan,106231571,1,4376_7778022_100110,4376_121 -4289_75959,259,4376_10315,Kilternan,105764425,1,4376_7778022_100030,4376_121 -4289_75959,270,4376_10316,Kilternan,105277221,1,4376_7778022_100080,4376_121 -4289_75959,146,4376_10317,Kilternan,105247221,1,4376_7778022_100080,4376_121 -4289_75959,271,4376_10318,Kilternan,105237221,1,4376_7778022_100080,4376_121 -4289_75959,115,4376_10319,Kilternan,105217221,1,4376_7778022_100080,4376_121 -4289_75960,259,4376_1032,Dublin Airport,105765641,1,4376_7778022_103101,4376_3 -4289_75959,260,4376_10320,Kilternan,105311625,1,4376_7778022_100100,4376_121 -4289_75959,261,4376_10321,Kilternan,105321625,1,4376_7778022_100100,4376_121 -4289_75959,262,4376_10322,Kilternan,105431625,1,4376_7778022_100100,4376_121 -4289_75959,263,4376_10323,Kilternan,105541625,1,4376_7778022_100100,4376_121 -4289_75959,264,4376_10324,Kilternan,105651625,1,4376_7778022_100100,4376_121 -4289_75959,265,4376_10325,Kilternan,105811625,1,4376_7778022_100100,4376_121 -4289_75959,266,4376_10326,Kilternan,105821625,1,4376_7778022_100100,4376_121 -4289_75959,267,4376_10327,Kilternan,106051625,1,4376_7778022_100100,4376_121 -4289_75959,268,4376_10328,Kilternan,106141625,1,4376_7778022_100100,4376_121 -4289_75959,269,4376_10329,Kilternan,106231625,1,4376_7778022_100100,4376_121 -4289_75960,270,4376_1033,Dublin Airport,105278295,1,4376_7778022_103503,4376_4 -4289_75959,259,4376_10330,Kilternan,105764477,1,4376_7778022_100070,4376_121 -4289_75959,270,4376_10331,Kilternan,105277263,1,4376_7778022_100040,4376_121 -4289_75959,146,4376_10332,Kilternan,105247263,1,4376_7778022_100040,4376_121 -4289_75959,271,4376_10333,Kilternan,105237263,1,4376_7778022_100040,4376_121 -4289_75959,115,4376_10334,Kilternan,105217263,1,4376_7778022_100040,4376_121 -4289_75959,260,4376_10335,Kilternan,105311679,1,4376_7778022_100120,4376_121 -4289_75959,261,4376_10336,Kilternan,105321679,1,4376_7778022_100120,4376_121 -4289_75959,262,4376_10337,Kilternan,105431679,1,4376_7778022_100120,4376_121 -4289_75959,263,4376_10338,Kilternan,105541679,1,4376_7778022_100120,4376_121 -4289_75959,264,4376_10339,Kilternan,105651679,1,4376_7778022_100120,4376_121 -4289_75960,146,4376_1034,Dublin Airport,105248295,1,4376_7778022_103503,4376_4 -4289_75959,265,4376_10340,Kilternan,105811679,1,4376_7778022_100120,4376_121 -4289_75959,266,4376_10341,Kilternan,105821679,1,4376_7778022_100120,4376_121 -4289_75959,267,4376_10342,Kilternan,106051679,1,4376_7778022_100120,4376_121 -4289_75959,268,4376_10343,Kilternan,106141679,1,4376_7778022_100120,4376_121 -4289_75959,269,4376_10344,Kilternan,106231679,1,4376_7778022_100120,4376_121 -4289_75959,259,4376_10345,Kilternan,105764527,1,4376_7778022_100110,4376_121 -4289_75959,270,4376_10346,Kilternan,105277307,1,4376_7778022_100020,4376_121 -4289_75959,146,4376_10347,Kilternan,105247307,1,4376_7778022_100020,4376_121 -4289_75959,271,4376_10348,Kilternan,105237307,1,4376_7778022_100020,4376_121 -4289_75959,115,4376_10349,Kilternan,105217307,1,4376_7778022_100020,4376_121 -4289_75960,271,4376_1035,Dublin Airport,105238295,1,4376_7778022_103503,4376_4 -4289_75959,260,4376_10350,Kilternan,105311733,1,4376_7778022_100130,4376_121 -4289_75959,261,4376_10351,Kilternan,105321733,1,4376_7778022_100130,4376_121 -4289_75959,262,4376_10352,Kilternan,105431733,1,4376_7778022_100130,4376_121 -4289_75959,263,4376_10353,Kilternan,105541733,1,4376_7778022_100130,4376_121 -4289_75959,264,4376_10354,Kilternan,105651733,1,4376_7778022_100130,4376_121 -4289_75959,265,4376_10355,Kilternan,105811733,1,4376_7778022_100130,4376_121 -4289_75959,266,4376_10356,Kilternan,105821733,1,4376_7778022_100130,4376_121 -4289_75959,267,4376_10357,Kilternan,106051733,1,4376_7778022_100130,4376_121 -4289_75959,268,4376_10358,Kilternan,106141733,1,4376_7778022_100130,4376_121 -4289_75959,269,4376_10359,Kilternan,106231733,1,4376_7778022_100130,4376_121 -4289_75960,115,4376_1036,Dublin Airport,105218295,1,4376_7778022_103503,4376_4 -4289_75959,259,4376_10360,Kilternan,105764579,1,4376_7778022_100080,4376_121 -4289_75959,270,4376_10361,Kilternan,105277351,1,4376_7778022_100070,4376_121 -4289_75959,146,4376_10362,Kilternan,105247351,1,4376_7778022_100070,4376_121 -4289_75959,271,4376_10363,Kilternan,105237351,1,4376_7778022_100070,4376_121 -4289_75959,115,4376_10364,Kilternan,105217351,1,4376_7778022_100070,4376_121 -4289_75959,259,4376_10365,Kilternan,105764631,1,4376_7778022_100030,4376_121 -4289_75959,270,4376_10366,Kilternan,105277397,1,4376_7778022_100010,4376_121 -4289_75959,146,4376_10367,Kilternan,105247397,1,4376_7778022_100010,4376_121 -4289_75959,271,4376_10368,Kilternan,105237397,1,4376_7778022_100010,4376_121 -4289_75959,115,4376_10369,Kilternan,105217397,1,4376_7778022_100010,4376_121 -4289_75960,260,4376_1037,Dublin Airport,105312967,1,4376_7778022_103502,4376_3 -4289_75959,260,4376_10370,Kilternan,105311845,1,4376_7778022_100100,4376_121 -4289_75959,261,4376_10371,Kilternan,105321845,1,4376_7778022_100100,4376_121 -4289_75959,262,4376_10372,Kilternan,105431845,1,4376_7778022_100100,4376_121 -4289_75959,263,4376_10373,Kilternan,105541845,1,4376_7778022_100100,4376_121 -4289_75959,264,4376_10374,Kilternan,105651845,1,4376_7778022_100100,4376_121 -4289_75959,265,4376_10375,Kilternan,105811845,1,4376_7778022_100100,4376_121 -4289_75959,266,4376_10376,Kilternan,105821845,1,4376_7778022_100100,4376_121 -4289_75959,267,4376_10377,Kilternan,106051845,1,4376_7778022_100100,4376_121 -4289_75959,268,4376_10378,Kilternan,106141845,1,4376_7778022_100100,4376_121 -4289_75959,269,4376_10379,Kilternan,106231845,1,4376_7778022_100100,4376_121 -4289_75960,261,4376_1038,Dublin Airport,105322967,1,4376_7778022_103502,4376_3 -4289_75959,259,4376_10380,Kilternan,105764681,1,4376_7778022_100070,4376_121 -4289_75959,270,4376_10381,Kilternan,105277439,1,4376_7778022_100040,4376_121 -4289_75959,146,4376_10382,Kilternan,105247439,1,4376_7778022_100040,4376_121 -4289_75959,271,4376_10383,Kilternan,105237439,1,4376_7778022_100040,4376_121 -4289_75959,115,4376_10384,Kilternan,105217439,1,4376_7778022_100040,4376_121 -4289_75959,260,4376_10385,Kilternan,105311901,1,4376_7778022_100120,4376_121 -4289_75959,261,4376_10386,Kilternan,105321901,1,4376_7778022_100120,4376_121 -4289_75959,262,4376_10387,Kilternan,105431901,1,4376_7778022_100120,4376_121 -4289_75959,263,4376_10388,Kilternan,105541901,1,4376_7778022_100120,4376_121 -4289_75959,264,4376_10389,Kilternan,105651901,1,4376_7778022_100120,4376_121 -4289_75960,262,4376_1039,Dublin Airport,105432967,1,4376_7778022_103502,4376_3 -4289_75959,265,4376_10390,Kilternan,105811901,1,4376_7778022_100120,4376_121 -4289_75959,266,4376_10391,Kilternan,105821901,1,4376_7778022_100120,4376_121 -4289_75959,267,4376_10392,Kilternan,106051901,1,4376_7778022_100120,4376_121 -4289_75959,268,4376_10393,Kilternan,106141901,1,4376_7778022_100120,4376_121 -4289_75959,269,4376_10394,Kilternan,106231901,1,4376_7778022_100120,4376_121 -4289_75959,259,4376_10395,Kilternan,105764733,1,4376_7778022_100110,4376_121 -4289_75959,270,4376_10396,Kilternan,105277487,1,4376_7778022_100060,4376_121 -4289_75959,146,4376_10397,Kilternan,105247487,1,4376_7778022_100060,4376_121 -4289_75959,271,4376_10398,Kilternan,105237487,1,4376_7778022_100060,4376_121 -4289_75959,115,4376_10399,Kilternan,105217487,1,4376_7778022_100060,4376_121 -4289_75960,267,4376_104,Sutton Station,106051490,0,4376_7778022_103108,4376_1 -4289_75960,263,4376_1040,Dublin Airport,105542967,1,4376_7778022_103502,4376_3 -4289_75959,260,4376_10400,Kilternan,105311957,1,4376_7778022_100130,4376_121 -4289_75959,261,4376_10401,Kilternan,105321957,1,4376_7778022_100130,4376_121 -4289_75959,262,4376_10402,Kilternan,105431957,1,4376_7778022_100130,4376_121 -4289_75959,263,4376_10403,Kilternan,105541957,1,4376_7778022_100130,4376_121 -4289_75959,264,4376_10404,Kilternan,105651957,1,4376_7778022_100130,4376_121 -4289_75959,265,4376_10405,Kilternan,105811957,1,4376_7778022_100130,4376_121 -4289_75959,266,4376_10406,Kilternan,105821957,1,4376_7778022_100130,4376_121 -4289_75959,267,4376_10407,Kilternan,106051957,1,4376_7778022_100130,4376_121 -4289_75959,268,4376_10408,Kilternan,106141957,1,4376_7778022_100130,4376_121 -4289_75959,269,4376_10409,Kilternan,106231957,1,4376_7778022_100130,4376_121 -4289_75960,264,4376_1041,Dublin Airport,105652967,1,4376_7778022_103502,4376_3 -4289_75959,259,4376_10410,Kilternan,105764785,1,4376_7778022_100080,4376_121 -4289_75959,270,4376_10411,Kilternan,105277531,1,4376_7778022_100070,4376_121 -4289_75959,146,4376_10412,Kilternan,105247531,1,4376_7778022_100070,4376_121 -4289_75959,271,4376_10413,Kilternan,105237531,1,4376_7778022_100070,4376_121 -4289_75959,115,4376_10414,Kilternan,105217531,1,4376_7778022_100070,4376_121 -4289_75959,260,4376_10415,Kilternan,105312011,1,4376_7778022_100110,4376_121 -4289_75959,261,4376_10416,Kilternan,105322011,1,4376_7778022_100110,4376_121 -4289_75959,262,4376_10417,Kilternan,105432011,1,4376_7778022_100110,4376_121 -4289_75959,263,4376_10418,Kilternan,105542011,1,4376_7778022_100110,4376_121 -4289_75959,264,4376_10419,Kilternan,105652011,1,4376_7778022_100110,4376_121 -4289_75960,265,4376_1042,Dublin Airport,105812967,1,4376_7778022_103502,4376_3 -4289_75959,265,4376_10420,Kilternan,105812011,1,4376_7778022_100110,4376_121 -4289_75959,266,4376_10421,Kilternan,105822011,1,4376_7778022_100110,4376_121 -4289_75959,267,4376_10422,Kilternan,106052011,1,4376_7778022_100110,4376_121 -4289_75959,268,4376_10423,Kilternan,106142011,1,4376_7778022_100110,4376_121 -4289_75959,269,4376_10424,Kilternan,106232011,1,4376_7778022_100110,4376_121 -4289_75959,259,4376_10425,Kilternan,105764835,1,4376_7778022_100120,4376_123 -4289_75959,270,4376_10426,Kilternan,105277577,1,4376_7778022_100010,4376_123 -4289_75959,146,4376_10427,Kilternan,105247577,1,4376_7778022_100010,4376_123 -4289_75959,271,4376_10428,Kilternan,105237577,1,4376_7778022_100010,4376_123 -4289_75959,115,4376_10429,Kilternan,105217577,1,4376_7778022_100010,4376_123 -4289_75960,266,4376_1043,Dublin Airport,105822967,1,4376_7778022_103502,4376_3 -4289_75959,260,4376_10430,Kilternan,105312073,1,4376_7778022_100100,4376_121 -4289_75959,261,4376_10431,Kilternan,105322073,1,4376_7778022_100100,4376_121 -4289_75959,262,4376_10432,Kilternan,105432073,1,4376_7778022_100100,4376_121 -4289_75959,263,4376_10433,Kilternan,105542073,1,4376_7778022_100100,4376_121 -4289_75959,264,4376_10434,Kilternan,105652073,1,4376_7778022_100100,4376_121 -4289_75959,265,4376_10435,Kilternan,105812073,1,4376_7778022_100100,4376_121 -4289_75959,266,4376_10436,Kilternan,105822073,1,4376_7778022_100100,4376_121 -4289_75959,267,4376_10437,Kilternan,106052073,1,4376_7778022_100100,4376_121 -4289_75959,268,4376_10438,Kilternan,106142073,1,4376_7778022_100100,4376_121 -4289_75959,269,4376_10439,Kilternan,106232073,1,4376_7778022_100100,4376_121 -4289_75960,267,4376_1044,Dublin Airport,106052967,1,4376_7778022_103502,4376_3 -4289_75959,259,4376_10440,Kilternan,105764887,1,4376_7778022_100070,4376_123 -4289_75959,270,4376_10441,Kilternan,105277623,1,4376_7778022_100080,4376_123 -4289_75959,146,4376_10442,Kilternan,105247623,1,4376_7778022_100080,4376_123 -4289_75959,271,4376_10443,Kilternan,105237623,1,4376_7778022_100080,4376_123 -4289_75959,115,4376_10444,Kilternan,105217623,1,4376_7778022_100080,4376_123 -4289_75959,260,4376_10445,Kilternan,105312131,1,4376_7778022_100120,4376_121 -4289_75959,261,4376_10446,Kilternan,105322131,1,4376_7778022_100120,4376_121 -4289_75959,262,4376_10447,Kilternan,105432131,1,4376_7778022_100120,4376_121 -4289_75959,263,4376_10448,Kilternan,105542131,1,4376_7778022_100120,4376_121 -4289_75959,264,4376_10449,Kilternan,105652131,1,4376_7778022_100120,4376_121 -4289_75960,268,4376_1045,Dublin Airport,106142967,1,4376_7778022_103502,4376_3 -4289_75959,265,4376_10450,Kilternan,105812131,1,4376_7778022_100120,4376_121 -4289_75959,266,4376_10451,Kilternan,105822131,1,4376_7778022_100120,4376_121 -4289_75959,267,4376_10452,Kilternan,106052131,1,4376_7778022_100120,4376_121 -4289_75959,268,4376_10453,Kilternan,106142131,1,4376_7778022_100120,4376_121 -4289_75959,269,4376_10454,Kilternan,106232131,1,4376_7778022_100120,4376_121 -4289_75959,259,4376_10455,Kilternan,105764939,1,4376_7778022_100110,4376_123 -4289_75959,270,4376_10456,Kilternan,105277671,1,4376_7778022_100030,4376_123 -4289_75959,146,4376_10457,Kilternan,105247671,1,4376_7778022_100030,4376_123 -4289_75959,271,4376_10458,Kilternan,105237671,1,4376_7778022_100030,4376_123 -4289_75959,115,4376_10459,Kilternan,105217671,1,4376_7778022_100030,4376_123 -4289_75960,269,4376_1046,Dublin Airport,106232967,1,4376_7778022_103502,4376_3 -4289_75959,260,4376_10460,Kilternan,105312221,1,4376_7778022_100130,4376_121 -4289_75959,261,4376_10461,Kilternan,105322221,1,4376_7778022_100130,4376_121 -4289_75959,262,4376_10462,Kilternan,105432221,1,4376_7778022_100130,4376_121 -4289_75959,263,4376_10463,Kilternan,105542221,1,4376_7778022_100130,4376_121 -4289_75959,264,4376_10464,Kilternan,105652221,1,4376_7778022_100130,4376_121 -4289_75959,265,4376_10465,Kilternan,105812221,1,4376_7778022_100130,4376_121 -4289_75959,266,4376_10466,Kilternan,105822221,1,4376_7778022_100130,4376_121 -4289_75959,267,4376_10467,Kilternan,106052221,1,4376_7778022_100130,4376_121 -4289_75959,268,4376_10468,Kilternan,106142221,1,4376_7778022_100130,4376_121 -4289_75959,269,4376_10469,Kilternan,106232221,1,4376_7778022_100130,4376_121 -4289_75960,259,4376_1047,Dublin Airport,105765673,1,4376_7778022_103501,4376_3 -4289_75959,259,4376_10470,Kilternan,105764989,1,4376_7778022_100080,4376_123 -4289_75959,270,4376_10471,Kilternan,105277713,1,4376_7778022_100070,4376_123 -4289_75959,146,4376_10472,Kilternan,105247713,1,4376_7778022_100070,4376_123 -4289_75959,271,4376_10473,Kilternan,105237713,1,4376_7778022_100070,4376_123 -4289_75959,115,4376_10474,Kilternan,105217713,1,4376_7778022_100070,4376_123 -4289_75959,260,4376_10475,Kilternan,105312291,1,4376_7778022_100110,4376_121 -4289_75959,261,4376_10476,Kilternan,105322291,1,4376_7778022_100110,4376_121 -4289_75959,262,4376_10477,Kilternan,105432291,1,4376_7778022_100110,4376_121 -4289_75959,263,4376_10478,Kilternan,105542291,1,4376_7778022_100110,4376_121 -4289_75959,264,4376_10479,Kilternan,105652291,1,4376_7778022_100110,4376_121 -4289_75960,270,4376_1048,Dublin Airport,105278327,1,4376_7778022_103106,4376_4 -4289_75959,265,4376_10480,Kilternan,105812291,1,4376_7778022_100110,4376_121 -4289_75959,266,4376_10481,Kilternan,105822291,1,4376_7778022_100110,4376_121 -4289_75959,267,4376_10482,Kilternan,106052291,1,4376_7778022_100110,4376_121 -4289_75959,268,4376_10483,Kilternan,106142291,1,4376_7778022_100110,4376_121 -4289_75959,269,4376_10484,Kilternan,106232291,1,4376_7778022_100110,4376_121 -4289_75959,259,4376_10485,Kilternan,105765041,1,4376_7778022_100120,4376_123 -4289_75959,270,4376_10486,Kilternan,105277761,1,4376_7778022_100010,4376_123 -4289_75959,146,4376_10487,Kilternan,105247761,1,4376_7778022_100010,4376_123 -4289_75959,271,4376_10488,Kilternan,105237761,1,4376_7778022_100010,4376_123 -4289_75959,115,4376_10489,Kilternan,105217761,1,4376_7778022_100010,4376_123 -4289_75960,146,4376_1049,Dublin Airport,105248327,1,4376_7778022_103106,4376_4 -4289_75959,260,4376_10490,Kilternan,105312349,1,4376_7778022_100100,4376_121 -4289_75959,261,4376_10491,Kilternan,105322349,1,4376_7778022_100100,4376_121 -4289_75959,262,4376_10492,Kilternan,105432349,1,4376_7778022_100100,4376_121 -4289_75959,263,4376_10493,Kilternan,105542349,1,4376_7778022_100100,4376_121 -4289_75959,264,4376_10494,Kilternan,105652349,1,4376_7778022_100100,4376_121 -4289_75959,265,4376_10495,Kilternan,105812349,1,4376_7778022_100100,4376_121 -4289_75959,266,4376_10496,Kilternan,105822349,1,4376_7778022_100100,4376_121 -4289_75959,267,4376_10497,Kilternan,106052349,1,4376_7778022_100100,4376_121 -4289_75959,268,4376_10498,Kilternan,106142349,1,4376_7778022_100100,4376_121 -4289_75959,269,4376_10499,Kilternan,106232349,1,4376_7778022_100100,4376_121 -4289_75960,268,4376_105,Sutton Station,106141490,0,4376_7778022_103108,4376_1 -4289_75960,271,4376_1050,Dublin Airport,105238327,1,4376_7778022_103106,4376_4 -4289_75959,259,4376_10500,Kilternan,105765093,1,4376_7778022_100090,4376_123 -4289_75959,270,4376_10501,Kilternan,105277807,1,4376_7778022_100050,4376_123 -4289_75959,146,4376_10502,Kilternan,105247807,1,4376_7778022_100050,4376_123 -4289_75959,271,4376_10503,Kilternan,105237807,1,4376_7778022_100050,4376_123 -4289_75959,115,4376_10504,Kilternan,105217807,1,4376_7778022_100050,4376_123 -4289_75959,260,4376_10505,Kilternan,105312407,1,4376_7778022_100120,4376_121 -4289_75959,261,4376_10506,Kilternan,105322407,1,4376_7778022_100120,4376_121 -4289_75959,262,4376_10507,Kilternan,105432407,1,4376_7778022_100120,4376_121 -4289_75959,263,4376_10508,Kilternan,105542407,1,4376_7778022_100120,4376_121 -4289_75959,264,4376_10509,Kilternan,105652407,1,4376_7778022_100120,4376_121 -4289_75960,115,4376_1051,Dublin Airport,105218327,1,4376_7778022_103106,4376_4 -4289_75959,265,4376_10510,Kilternan,105812407,1,4376_7778022_100120,4376_121 -4289_75959,266,4376_10511,Kilternan,105822407,1,4376_7778022_100120,4376_121 -4289_75959,267,4376_10512,Kilternan,106052407,1,4376_7778022_100120,4376_121 -4289_75959,268,4376_10513,Kilternan,106142407,1,4376_7778022_100120,4376_121 -4289_75959,269,4376_10514,Kilternan,106232407,1,4376_7778022_100120,4376_121 -4289_75959,259,4376_10515,Kilternan,105765139,1,4376_7778022_100010,4376_123 -4289_75959,270,4376_10516,Kilternan,105277847,1,4376_7778022_100030,4376_123 -4289_75959,146,4376_10517,Kilternan,105247847,1,4376_7778022_100030,4376_123 -4289_75959,271,4376_10518,Kilternan,105237847,1,4376_7778022_100030,4376_123 -4289_75959,115,4376_10519,Kilternan,105217847,1,4376_7778022_100030,4376_123 -4289_75960,260,4376_1052,Dublin Airport,105313005,1,4376_7778022_103503,4376_3 -4289_75959,260,4376_10520,Kilternan,105312463,1,4376_7778022_100130,4376_121 -4289_75959,261,4376_10521,Kilternan,105322463,1,4376_7778022_100130,4376_121 -4289_75959,262,4376_10522,Kilternan,105432463,1,4376_7778022_100130,4376_121 -4289_75959,263,4376_10523,Kilternan,105542463,1,4376_7778022_100130,4376_121 -4289_75959,264,4376_10524,Kilternan,105652463,1,4376_7778022_100130,4376_121 -4289_75959,265,4376_10525,Kilternan,105812463,1,4376_7778022_100130,4376_121 -4289_75959,266,4376_10526,Kilternan,105822463,1,4376_7778022_100130,4376_121 -4289_75959,267,4376_10527,Kilternan,106052463,1,4376_7778022_100130,4376_121 -4289_75959,268,4376_10528,Kilternan,106142463,1,4376_7778022_100130,4376_121 -4289_75959,269,4376_10529,Kilternan,106232463,1,4376_7778022_100130,4376_121 -4289_75960,261,4376_1053,Dublin Airport,105323005,1,4376_7778022_103503,4376_3 -4289_75959,259,4376_10530,Kilternan,105765193,1,4376_7778022_100080,4376_123 -4289_75959,270,4376_10531,Kilternan,105277891,1,4376_7778022_100070,4376_123 -4289_75959,146,4376_10532,Kilternan,105247891,1,4376_7778022_100070,4376_123 -4289_75959,271,4376_10533,Kilternan,105237891,1,4376_7778022_100070,4376_123 -4289_75959,115,4376_10534,Kilternan,105217891,1,4376_7778022_100070,4376_123 -4289_75959,260,4376_10535,Kilternan,105312519,1,4376_7778022_100110,4376_121 -4289_75959,261,4376_10536,Kilternan,105322519,1,4376_7778022_100110,4376_121 -4289_75959,262,4376_10537,Kilternan,105432519,1,4376_7778022_100110,4376_121 -4289_75959,263,4376_10538,Kilternan,105542519,1,4376_7778022_100110,4376_121 -4289_75959,264,4376_10539,Kilternan,105652519,1,4376_7778022_100110,4376_121 -4289_75960,262,4376_1054,Dublin Airport,105433005,1,4376_7778022_103503,4376_3 -4289_75959,265,4376_10540,Kilternan,105812519,1,4376_7778022_100110,4376_121 -4289_75959,266,4376_10541,Kilternan,105822519,1,4376_7778022_100110,4376_121 -4289_75959,267,4376_10542,Kilternan,106052519,1,4376_7778022_100110,4376_121 -4289_75959,268,4376_10543,Kilternan,106142519,1,4376_7778022_100110,4376_121 -4289_75959,269,4376_10544,Kilternan,106232519,1,4376_7778022_100110,4376_121 -4289_75959,259,4376_10545,Kilternan,105765245,1,4376_7778022_100120,4376_123 -4289_75959,270,4376_10546,Kilternan,105277943,1,4376_7778022_100010,4376_122 -4289_75959,146,4376_10547,Kilternan,105247943,1,4376_7778022_100010,4376_122 -4289_75959,271,4376_10548,Kilternan,105237943,1,4376_7778022_100010,4376_122 -4289_75959,115,4376_10549,Kilternan,105217943,1,4376_7778022_100010,4376_122 -4289_75960,263,4376_1055,Dublin Airport,105543005,1,4376_7778022_103503,4376_3 -4289_75959,260,4376_10550,Kilternan,105312565,1,4376_7778022_100060,4376_121 -4289_75959,261,4376_10551,Kilternan,105322565,1,4376_7778022_100060,4376_121 -4289_75959,262,4376_10552,Kilternan,105432565,1,4376_7778022_100060,4376_121 -4289_75959,263,4376_10553,Kilternan,105542565,1,4376_7778022_100060,4376_121 -4289_75959,264,4376_10554,Kilternan,105652565,1,4376_7778022_100060,4376_121 -4289_75959,265,4376_10555,Kilternan,105812565,1,4376_7778022_100060,4376_121 -4289_75959,266,4376_10556,Kilternan,105822565,1,4376_7778022_100060,4376_121 -4289_75959,267,4376_10557,Kilternan,106052565,1,4376_7778022_100060,4376_121 -4289_75959,268,4376_10558,Kilternan,106142565,1,4376_7778022_100060,4376_121 -4289_75959,269,4376_10559,Kilternan,106232565,1,4376_7778022_100060,4376_121 -4289_75960,264,4376_1056,Dublin Airport,105653005,1,4376_7778022_103503,4376_3 -4289_75959,259,4376_10560,Kilternan,105765293,1,4376_7778022_100050,4376_121 -4289_75959,270,4376_10561,Kilternan,105277981,1,4376_7778022_100090,4376_122 -4289_75959,146,4376_10562,Kilternan,105247981,1,4376_7778022_100090,4376_122 -4289_75959,271,4376_10563,Kilternan,105237981,1,4376_7778022_100090,4376_122 -4289_75959,115,4376_10564,Kilternan,105217981,1,4376_7778022_100090,4376_122 -4289_75959,260,4376_10565,Kilternan,105312617,1,4376_7778022_100090,4376_121 -4289_75959,261,4376_10566,Kilternan,105322617,1,4376_7778022_100090,4376_121 -4289_75959,262,4376_10567,Kilternan,105432617,1,4376_7778022_100090,4376_121 -4289_75959,263,4376_10568,Kilternan,105542617,1,4376_7778022_100090,4376_121 -4289_75959,264,4376_10569,Kilternan,105652617,1,4376_7778022_100090,4376_121 -4289_75960,265,4376_1057,Dublin Airport,105813005,1,4376_7778022_103503,4376_3 -4289_75959,265,4376_10570,Kilternan,105812617,1,4376_7778022_100090,4376_121 -4289_75959,266,4376_10571,Kilternan,105822617,1,4376_7778022_100090,4376_121 -4289_75959,267,4376_10572,Kilternan,106052617,1,4376_7778022_100090,4376_121 -4289_75959,268,4376_10573,Kilternan,106142617,1,4376_7778022_100090,4376_121 -4289_75959,269,4376_10574,Kilternan,106232617,1,4376_7778022_100090,4376_121 -4289_75959,259,4376_10575,Kilternan,105765339,1,4376_7778022_100010,4376_121 -4289_75959,270,4376_10576,Kilternan,105278025,1,4376_7778022_100080,4376_122 -4289_75959,146,4376_10577,Kilternan,105248025,1,4376_7778022_100080,4376_122 -4289_75959,271,4376_10578,Kilternan,105238025,1,4376_7778022_100080,4376_122 -4289_75959,115,4376_10579,Kilternan,105218025,1,4376_7778022_100080,4376_122 -4289_75960,266,4376_1058,Dublin Airport,105823005,1,4376_7778022_103503,4376_3 -4289_75959,260,4376_10580,Kilternan,105312667,1,4376_7778022_100040,4376_121 -4289_75959,261,4376_10581,Kilternan,105322667,1,4376_7778022_100040,4376_121 -4289_75959,262,4376_10582,Kilternan,105432667,1,4376_7778022_100040,4376_121 -4289_75959,263,4376_10583,Kilternan,105542667,1,4376_7778022_100040,4376_121 -4289_75959,264,4376_10584,Kilternan,105652667,1,4376_7778022_100040,4376_121 -4289_75959,265,4376_10585,Kilternan,105812667,1,4376_7778022_100040,4376_121 -4289_75959,266,4376_10586,Kilternan,105822667,1,4376_7778022_100040,4376_121 -4289_75959,267,4376_10587,Kilternan,106052667,1,4376_7778022_100040,4376_121 -4289_75959,268,4376_10588,Kilternan,106142667,1,4376_7778022_100040,4376_121 -4289_75959,269,4376_10589,Kilternan,106232667,1,4376_7778022_100040,4376_121 -4289_75960,267,4376_1059,Dublin Airport,106053005,1,4376_7778022_103503,4376_3 -4289_75959,259,4376_10590,Kilternan,105765383,1,4376_7778022_100090,4376_122 -4289_75959,270,4376_10591,Kilternan,105278063,1,4376_7778022_100010,4376_122 -4289_75959,146,4376_10592,Kilternan,105248063,1,4376_7778022_100010,4376_122 -4289_75959,271,4376_10593,Kilternan,105238063,1,4376_7778022_100010,4376_122 -4289_75959,115,4376_10594,Kilternan,105218063,1,4376_7778022_100010,4376_122 -4289_75959,260,4376_10595,Kilternan,105312729,1,4376_7778022_100060,4376_121 -4289_75959,261,4376_10596,Kilternan,105322729,1,4376_7778022_100060,4376_121 -4289_75959,262,4376_10597,Kilternan,105432729,1,4376_7778022_100060,4376_121 -4289_75959,263,4376_10598,Kilternan,105542729,1,4376_7778022_100060,4376_121 -4289_75959,264,4376_10599,Kilternan,105652729,1,4376_7778022_100060,4376_121 -4289_75960,269,4376_106,Sutton Station,106231490,0,4376_7778022_103108,4376_1 -4289_75960,268,4376_1060,Dublin Airport,106143005,1,4376_7778022_103503,4376_3 -4289_75959,265,4376_10600,Kilternan,105812729,1,4376_7778022_100060,4376_121 -4289_75959,266,4376_10601,Kilternan,105822729,1,4376_7778022_100060,4376_121 -4289_75959,267,4376_10602,Kilternan,106052729,1,4376_7778022_100060,4376_121 -4289_75959,268,4376_10603,Kilternan,106142729,1,4376_7778022_100060,4376_121 -4289_75959,269,4376_10604,Kilternan,106232729,1,4376_7778022_100060,4376_121 -4289_75959,259,4376_10605,Kilternan,105765429,1,4376_7778022_100100,4376_122 -4289_75959,270,4376_10606,Kilternan,105278105,1,4376_7778022_100090,4376_122 -4289_75959,146,4376_10607,Kilternan,105248105,1,4376_7778022_100090,4376_122 -4289_75959,271,4376_10608,Kilternan,105238105,1,4376_7778022_100090,4376_122 -4289_75959,115,4376_10609,Kilternan,105218105,1,4376_7778022_100090,4376_122 -4289_75960,269,4376_1061,Dublin Airport,106233005,1,4376_7778022_103503,4376_3 -4289_75959,260,4376_10610,Kilternan,105312777,1,4376_7778022_100090,4376_121 -4289_75959,261,4376_10611,Kilternan,105322777,1,4376_7778022_100090,4376_121 -4289_75959,262,4376_10612,Kilternan,105432777,1,4376_7778022_100090,4376_121 -4289_75959,263,4376_10613,Kilternan,105542777,1,4376_7778022_100090,4376_121 -4289_75959,264,4376_10614,Kilternan,105652777,1,4376_7778022_100090,4376_121 -4289_75959,265,4376_10615,Kilternan,105812777,1,4376_7778022_100090,4376_121 -4289_75959,266,4376_10616,Kilternan,105822777,1,4376_7778022_100090,4376_121 -4289_75959,267,4376_10617,Kilternan,106052777,1,4376_7778022_100090,4376_121 -4289_75959,268,4376_10618,Kilternan,106142777,1,4376_7778022_100090,4376_121 -4289_75959,269,4376_10619,Kilternan,106232777,1,4376_7778022_100090,4376_121 -4289_75987,264,4376_1062,Swords Pavilions,105651863,1,4376_7778022_109505,4376_6 -4289_75959,259,4376_10620,Kilternan,105765469,1,4376_7778022_100050,4376_122 -4289_75959,270,4376_10621,Kilternan,105278141,1,4376_7778022_100080,4376_122 -4289_75959,146,4376_10622,Kilternan,105248141,1,4376_7778022_100080,4376_122 -4289_75959,271,4376_10623,Kilternan,105238141,1,4376_7778022_100080,4376_122 -4289_75959,115,4376_10624,Kilternan,105218141,1,4376_7778022_100080,4376_122 -4289_75959,260,4376_10625,Kilternan,105312827,1,4376_7778022_100040,4376_121 -4289_75959,261,4376_10626,Kilternan,105322827,1,4376_7778022_100040,4376_121 -4289_75959,262,4376_10627,Kilternan,105432827,1,4376_7778022_100040,4376_121 -4289_75959,263,4376_10628,Kilternan,105542827,1,4376_7778022_100040,4376_121 -4289_75959,264,4376_10629,Kilternan,105652827,1,4376_7778022_100040,4376_121 -4289_75987,260,4376_1063,Swords Pavilions,105312157,1,4376_7778022_109103,4376_6 -4289_75959,265,4376_10630,Kilternan,105812827,1,4376_7778022_100040,4376_121 -4289_75959,266,4376_10631,Kilternan,105822827,1,4376_7778022_100040,4376_121 -4289_75959,267,4376_10632,Kilternan,106052827,1,4376_7778022_100040,4376_121 -4289_75959,268,4376_10633,Kilternan,106142827,1,4376_7778022_100040,4376_121 -4289_75959,269,4376_10634,Kilternan,106232827,1,4376_7778022_100040,4376_121 -4289_75959,259,4376_10635,Kilternan,105765517,1,4376_7778022_100090,4376_122 -4289_75959,270,4376_10636,Kilternan,105278185,1,4376_7778022_100010,4376_122 -4289_75959,146,4376_10637,Kilternan,105248185,1,4376_7778022_100010,4376_122 -4289_75959,271,4376_10638,Kilternan,105238185,1,4376_7778022_100010,4376_122 -4289_75959,115,4376_10639,Kilternan,105218185,1,4376_7778022_100010,4376_122 -4289_75987,261,4376_1064,Swords Pavilions,105322157,1,4376_7778022_109103,4376_6 -4289_75959,260,4376_10640,Kilternan,105312871,1,4376_7778022_100060,4376_122 -4289_75959,261,4376_10641,Kilternan,105322871,1,4376_7778022_100060,4376_122 -4289_75959,262,4376_10642,Kilternan,105432871,1,4376_7778022_100060,4376_122 -4289_75959,263,4376_10643,Kilternan,105542871,1,4376_7778022_100060,4376_122 -4289_75959,264,4376_10644,Kilternan,105652871,1,4376_7778022_100060,4376_122 -4289_75959,265,4376_10645,Kilternan,105812871,1,4376_7778022_100060,4376_122 -4289_75959,266,4376_10646,Kilternan,105822871,1,4376_7778022_100060,4376_122 -4289_75959,267,4376_10647,Kilternan,106052871,1,4376_7778022_100060,4376_122 -4289_75959,268,4376_10648,Kilternan,106142871,1,4376_7778022_100060,4376_122 -4289_75959,269,4376_10649,Kilternan,106232871,1,4376_7778022_100060,4376_122 -4289_75987,262,4376_1065,Swords Pavilions,105432159,1,4376_7778022_109306,4376_7 -4289_75959,259,4376_10650,Kilternan,105765555,1,4376_7778022_100100,4376_122 -4289_75959,270,4376_10651,Kilternan,105278219,1,4376_7778022_100090,4376_122 -4289_75959,146,4376_10652,Kilternan,105248219,1,4376_7778022_100090,4376_122 -4289_75959,271,4376_10653,Kilternan,105238219,1,4376_7778022_100090,4376_122 -4289_75959,115,4376_10654,Kilternan,105218219,1,4376_7778022_100090,4376_122 -4289_75959,260,4376_10655,Kilternan,105312921,1,4376_7778022_100090,4376_122 -4289_75959,261,4376_10656,Kilternan,105322921,1,4376_7778022_100090,4376_122 -4289_75959,262,4376_10657,Kilternan,105432921,1,4376_7778022_100090,4376_122 -4289_75959,263,4376_10658,Kilternan,105542921,1,4376_7778022_100090,4376_122 -4289_75959,264,4376_10659,Kilternan,105652921,1,4376_7778022_100090,4376_122 -4289_75987,263,4376_1066,Swords Pavilions,105542161,1,4376_7778022_109404,4376_6 -4289_75959,265,4376_10660,Kilternan,105812921,1,4376_7778022_100090,4376_122 -4289_75959,266,4376_10661,Kilternan,105822921,1,4376_7778022_100090,4376_122 -4289_75959,267,4376_10662,Kilternan,106052921,1,4376_7778022_100090,4376_122 -4289_75959,268,4376_10663,Kilternan,106142921,1,4376_7778022_100090,4376_122 -4289_75959,269,4376_10664,Kilternan,106232921,1,4376_7778022_100090,4376_122 -4289_75959,259,4376_10665,Kilternan,105765601,1,4376_7778022_100060,4376_122 -4289_75959,270,4376_10666,Kilternan,105278261,1,4376_7778022_100080,4376_122 -4289_75959,146,4376_10667,Kilternan,105248261,1,4376_7778022_100080,4376_122 -4289_75959,271,4376_10668,Kilternan,105238261,1,4376_7778022_100080,4376_122 -4289_75959,115,4376_10669,Kilternan,105218261,1,4376_7778022_100080,4376_122 -4289_75988,260,4376_1067,Sutton Park School,105311252,0,4376_7778022_109104,4376_8 -4289_75959,260,4376_10670,Kilternan,105312963,1,4376_7778022_100040,4376_122 -4289_75959,261,4376_10671,Kilternan,105322963,1,4376_7778022_100040,4376_122 -4289_75959,262,4376_10672,Kilternan,105432963,1,4376_7778022_100040,4376_122 -4289_75959,263,4376_10673,Kilternan,105542963,1,4376_7778022_100040,4376_122 -4289_75959,264,4376_10674,Kilternan,105652963,1,4376_7778022_100040,4376_122 -4289_75959,265,4376_10675,Kilternan,105812963,1,4376_7778022_100040,4376_122 -4289_75959,266,4376_10676,Kilternan,105822963,1,4376_7778022_100040,4376_122 -4289_75959,267,4376_10677,Kilternan,106052963,1,4376_7778022_100040,4376_122 -4289_75959,268,4376_10678,Kilternan,106142963,1,4376_7778022_100040,4376_122 -4289_75959,269,4376_10679,Kilternan,106232963,1,4376_7778022_100040,4376_122 -4289_75988,261,4376_1068,Sutton Park School,105321252,0,4376_7778022_109104,4376_8 -4289_75959,259,4376_10680,Kilternan,105765639,1,4376_7778022_100090,4376_122 -4289_75959,270,4376_10681,Kilternan,105278293,1,4376_7778022_100010,4376_122 -4289_75959,146,4376_10682,Kilternan,105248293,1,4376_7778022_100010,4376_122 -4289_75959,271,4376_10683,Kilternan,105238293,1,4376_7778022_100010,4376_122 -4289_75959,115,4376_10684,Kilternan,105218293,1,4376_7778022_100010,4376_122 -4289_75959,260,4376_10685,Kilternan,105312995,1,4376_7778022_100060,4376_122 -4289_75959,261,4376_10686,Kilternan,105322995,1,4376_7778022_100060,4376_122 -4289_75959,262,4376_10687,Kilternan,105432995,1,4376_7778022_100060,4376_122 -4289_75959,263,4376_10688,Kilternan,105542995,1,4376_7778022_100060,4376_122 -4289_75959,264,4376_10689,Kilternan,105652995,1,4376_7778022_100060,4376_122 -4289_75988,262,4376_1069,Sutton Park School,105431254,0,4376_7778022_109304,4376_8 -4289_75959,265,4376_10690,Kilternan,105812995,1,4376_7778022_100060,4376_122 -4289_75959,266,4376_10691,Kilternan,105822995,1,4376_7778022_100060,4376_122 -4289_75959,267,4376_10692,Kilternan,106052995,1,4376_7778022_100060,4376_122 -4289_75959,268,4376_10693,Kilternan,106142995,1,4376_7778022_100060,4376_122 -4289_75959,269,4376_10694,Kilternan,106232995,1,4376_7778022_100060,4376_122 -4289_75959,259,4376_10695,Kilternan,105765671,1,4376_7778022_100100,4376_122 -4289_75959,270,4376_10696,Kilternan,105278325,1,4376_7778022_100050,4376_122 -4289_75959,146,4376_10697,Kilternan,105248325,1,4376_7778022_100050,4376_122 -4289_75959,271,4376_10698,Kilternan,105238325,1,4376_7778022_100050,4376_122 -4289_75959,115,4376_10699,Kilternan,105218325,1,4376_7778022_100050,4376_122 -4289_75960,259,4376_107,Sutton Station,105764314,0,4376_7778022_103501,4376_2 -4289_75988,263,4376_1070,Sutton Park School,105541256,0,4376_7778022_109404,4376_8 -4289_75983,260,4376_10700,Dun Laoghaire,105311604,0,4376_7778022_100120,4376_124 -4289_75983,261,4376_10701,Dun Laoghaire,105321604,0,4376_7778022_100120,4376_124 -4289_75983,262,4376_10702,Dun Laoghaire,105431604,0,4376_7778022_100120,4376_124 -4289_75983,263,4376_10703,Dun Laoghaire,105541604,0,4376_7778022_100120,4376_124 -4289_75983,264,4376_10704,Dun Laoghaire,105651604,0,4376_7778022_100120,4376_124 -4289_75983,265,4376_10705,Dun Laoghaire,105811604,0,4376_7778022_100120,4376_124 -4289_75983,266,4376_10706,Dun Laoghaire,105821604,0,4376_7778022_100120,4376_124 -4289_75983,267,4376_10707,Dun Laoghaire,106051604,0,4376_7778022_100120,4376_124 -4289_75983,268,4376_10708,Dun Laoghaire,106141604,0,4376_7778022_100120,4376_124 -4289_75983,269,4376_10709,Dun Laoghaire,106231604,0,4376_7778022_100120,4376_124 -4289_75988,264,4376_1071,Sutton Park School,105651258,0,4376_7778022_109504,4376_8 -4289_75983,260,4376_10710,Kilternan,105311787,1,4376_7778022_100110,4376_125 -4289_75983,261,4376_10711,Kilternan,105321787,1,4376_7778022_100110,4376_125 -4289_75983,262,4376_10712,Kilternan,105431787,1,4376_7778022_100110,4376_125 -4289_75983,263,4376_10713,Kilternan,105541787,1,4376_7778022_100110,4376_125 -4289_75983,264,4376_10714,Kilternan,105651787,1,4376_7778022_100110,4376_125 -4289_75983,265,4376_10715,Kilternan,105811787,1,4376_7778022_100110,4376_125 -4289_75983,266,4376_10716,Kilternan,105821787,1,4376_7778022_100110,4376_125 -4289_75983,267,4376_10717,Kilternan,106051787,1,4376_7778022_100110,4376_125 -4289_75983,268,4376_10718,Kilternan,106141787,1,4376_7778022_100110,4376_125 -4289_75983,269,4376_10719,Kilternan,106231787,1,4376_7778022_100110,4376_125 -4289_75988,262,4376_1072,Balgriffin Cottages,105432041,1,4376_7778022_109308,4376_9 -4289_75984,259,4376_10720,Adamstown Station,105764018,0,4376_7778022_104230,4376_126 -4289_75984,260,4376_10721,Adamstown Station,105311032,0,4376_7778022_104220,4376_126 -4289_75984,261,4376_10722,Adamstown Station,105321032,0,4376_7778022_104220,4376_126 -4289_75984,262,4376_10723,Adamstown Station,105431032,0,4376_7778022_104220,4376_126 -4289_75984,263,4376_10724,Adamstown Station,105541032,0,4376_7778022_104220,4376_126 -4289_75984,264,4376_10725,Adamstown Station,105651032,0,4376_7778022_104220,4376_126 -4289_75984,265,4376_10726,Adamstown Station,105811032,0,4376_7778022_104220,4376_126 -4289_75984,266,4376_10727,Adamstown Station,105821032,0,4376_7778022_104220,4376_126 -4289_75984,267,4376_10728,Adamstown Station,106051032,0,4376_7778022_104220,4376_126 -4289_75984,268,4376_10729,Adamstown Station,106141032,0,4376_7778022_104220,4376_126 -4289_75988,264,4376_1073,Balgriffin Cottages,105652043,1,4376_7778022_109503,4376_9 -4289_75984,269,4376_10730,Adamstown Station,106231032,0,4376_7778022_104220,4376_126 -4289_75984,259,4376_10731,Adamstown Station,105764082,0,4376_7778022_104220,4376_126 -4289_75984,260,4376_10732,Adamstown Station,105311148,0,4376_7778022_104240,4376_126 -4289_75984,261,4376_10733,Adamstown Station,105321148,0,4376_7778022_104240,4376_126 -4289_75984,262,4376_10734,Adamstown Station,105431148,0,4376_7778022_104240,4376_126 -4289_75984,263,4376_10735,Adamstown Station,105541148,0,4376_7778022_104240,4376_126 -4289_75984,264,4376_10736,Adamstown Station,105651148,0,4376_7778022_104240,4376_126 -4289_75984,265,4376_10737,Adamstown Station,105811148,0,4376_7778022_104240,4376_126 -4289_75984,266,4376_10738,Adamstown Station,105821148,0,4376_7778022_104240,4376_126 -4289_75984,267,4376_10739,Adamstown Station,106051148,0,4376_7778022_104240,4376_126 -4289_75988,260,4376_1074,Balgriffin Cottages,105312143,1,4376_7778022_109101,4376_9 -4289_75984,268,4376_10740,Adamstown Station,106141148,0,4376_7778022_104240,4376_126 -4289_75984,269,4376_10741,Adamstown Station,106231148,0,4376_7778022_104240,4376_126 -4289_75984,259,4376_10742,Adamstown Station,105764172,0,4376_7778022_104240,4376_126 -4289_75984,270,4376_10743,Adamstown Station,105277022,0,4376_7778022_104200,4376_127 -4289_75984,146,4376_10744,Adamstown Station,105247022,0,4376_7778022_104200,4376_127 -4289_75984,271,4376_10745,Adamstown Station,105237022,0,4376_7778022_104200,4376_127 -4289_75984,115,4376_10746,Adamstown Station,105217022,0,4376_7778022_104200,4376_127 -4289_75984,260,4376_10747,Adamstown Station,105311310,0,4376_7778022_104210,4376_126 -4289_75984,261,4376_10748,Adamstown Station,105321310,0,4376_7778022_104210,4376_126 -4289_75984,262,4376_10749,Adamstown Station,105431310,0,4376_7778022_104210,4376_126 -4289_75988,261,4376_1075,Balgriffin Cottages,105322143,1,4376_7778022_109101,4376_9 -4289_75984,263,4376_10750,Adamstown Station,105541310,0,4376_7778022_104210,4376_126 -4289_75984,264,4376_10751,Adamstown Station,105651310,0,4376_7778022_104210,4376_126 -4289_75984,265,4376_10752,Adamstown Station,105811310,0,4376_7778022_104210,4376_126 -4289_75984,266,4376_10753,Adamstown Station,105821310,0,4376_7778022_104210,4376_126 -4289_75984,267,4376_10754,Adamstown Station,106051310,0,4376_7778022_104210,4376_126 -4289_75984,268,4376_10755,Adamstown Station,106141310,0,4376_7778022_104210,4376_126 -4289_75984,269,4376_10756,Adamstown Station,106231310,0,4376_7778022_104210,4376_126 -4289_75984,259,4376_10757,Adamstown Station,105764258,0,4376_7778022_104230,4376_126 -4289_75984,270,4376_10758,Adamstown Station,105277076,0,4376_7778022_104190,4376_127 -4289_75984,146,4376_10759,Adamstown Station,105247076,0,4376_7778022_104190,4376_127 -4289_75988,263,4376_1076,Balgriffin Cottages,105542145,1,4376_7778022_109401,4376_9 -4289_75984,271,4376_10760,Adamstown Station,105237076,0,4376_7778022_104190,4376_127 -4289_75984,115,4376_10761,Adamstown Station,105217076,0,4376_7778022_104190,4376_127 -4289_75984,260,4376_10762,Adamstown Station,105311434,0,4376_7778022_104240,4376_126 -4289_75984,261,4376_10763,Adamstown Station,105321434,0,4376_7778022_104240,4376_126 -4289_75984,262,4376_10764,Adamstown Station,105431434,0,4376_7778022_104240,4376_126 -4289_75984,263,4376_10765,Adamstown Station,105541434,0,4376_7778022_104240,4376_126 -4289_75984,264,4376_10766,Adamstown Station,105651434,0,4376_7778022_104240,4376_126 -4289_75984,265,4376_10767,Adamstown Station,105811434,0,4376_7778022_104240,4376_126 -4289_75984,266,4376_10768,Adamstown Station,105821434,0,4376_7778022_104240,4376_126 -4289_75984,267,4376_10769,Adamstown Station,106051434,0,4376_7778022_104240,4376_126 -4289_75989,260,4376_1077,Redfern Avenue,105311264,0,4376_7778022_109102,4376_10 -4289_75984,268,4376_10770,Adamstown Station,106141434,0,4376_7778022_104240,4376_126 -4289_75984,269,4376_10771,Adamstown Station,106231434,0,4376_7778022_104240,4376_126 -4289_75984,259,4376_10772,Adamstown Station,105764348,0,4376_7778022_104220,4376_126 -4289_75984,270,4376_10773,Adamstown Station,105277144,0,4376_7778022_104210,4376_126 -4289_75984,146,4376_10774,Adamstown Station,105247144,0,4376_7778022_104210,4376_126 -4289_75984,271,4376_10775,Adamstown Station,105237144,0,4376_7778022_104210,4376_126 -4289_75984,115,4376_10776,Adamstown Station,105217144,0,4376_7778022_104210,4376_126 -4289_75984,260,4376_10777,Adamstown Station,105311540,0,4376_7778022_104210,4376_126 -4289_75984,261,4376_10778,Adamstown Station,105321540,0,4376_7778022_104210,4376_126 -4289_75984,262,4376_10779,Adamstown Station,105431540,0,4376_7778022_104210,4376_126 -4289_75989,261,4376_1078,Redfern Avenue,105321264,0,4376_7778022_109102,4376_10 -4289_75984,263,4376_10780,Adamstown Station,105541540,0,4376_7778022_104210,4376_126 -4289_75984,264,4376_10781,Adamstown Station,105651540,0,4376_7778022_104210,4376_126 -4289_75984,265,4376_10782,Adamstown Station,105811540,0,4376_7778022_104210,4376_126 -4289_75984,266,4376_10783,Adamstown Station,105821540,0,4376_7778022_104210,4376_126 -4289_75984,267,4376_10784,Adamstown Station,106051540,0,4376_7778022_104210,4376_126 -4289_75984,268,4376_10785,Adamstown Station,106141540,0,4376_7778022_104210,4376_126 -4289_75984,269,4376_10786,Adamstown Station,106231540,0,4376_7778022_104210,4376_126 -4289_75984,259,4376_10787,Adamstown Station,105764452,0,4376_7778022_104240,4376_126 -4289_75984,270,4376_10788,Adamstown Station,105277236,0,4376_7778022_104200,4376_126 -4289_75984,146,4376_10789,Adamstown Station,105247236,0,4376_7778022_104200,4376_126 -4289_75989,262,4376_1079,Redfern Avenue,105431266,0,4376_7778022_109302,4376_10 -4289_75984,271,4376_10790,Adamstown Station,105237236,0,4376_7778022_104200,4376_126 -4289_75984,115,4376_10791,Adamstown Station,105217236,0,4376_7778022_104200,4376_126 -4289_75984,260,4376_10792,Adamstown Station,105311646,0,4376_7778022_104240,4376_126 -4289_75984,261,4376_10793,Adamstown Station,105321646,0,4376_7778022_104240,4376_126 -4289_75984,262,4376_10794,Adamstown Station,105431646,0,4376_7778022_104240,4376_126 -4289_75984,263,4376_10795,Adamstown Station,105541646,0,4376_7778022_104240,4376_126 -4289_75984,264,4376_10796,Adamstown Station,105651646,0,4376_7778022_104240,4376_126 -4289_75984,265,4376_10797,Adamstown Station,105811646,0,4376_7778022_104240,4376_126 -4289_75984,266,4376_10798,Adamstown Station,105821646,0,4376_7778022_104240,4376_126 -4289_75984,267,4376_10799,Adamstown Station,106051646,0,4376_7778022_104240,4376_126 -4289_75960,270,4376_108,Sutton Station,105277136,0,4376_7778022_103106,4376_1 -4289_75989,263,4376_1080,Redfern Avenue,105541268,0,4376_7778022_109403,4376_10 -4289_75984,268,4376_10800,Adamstown Station,106141646,0,4376_7778022_104240,4376_126 -4289_75984,269,4376_10801,Adamstown Station,106231646,0,4376_7778022_104240,4376_126 -4289_75984,259,4376_10802,Adamstown Station,105764554,0,4376_7778022_104230,4376_126 -4289_75984,270,4376_10803,Adamstown Station,105277326,0,4376_7778022_104190,4376_126 -4289_75984,146,4376_10804,Adamstown Station,105247326,0,4376_7778022_104190,4376_126 -4289_75984,271,4376_10805,Adamstown Station,105237326,0,4376_7778022_104190,4376_126 -4289_75984,115,4376_10806,Adamstown Station,105217326,0,4376_7778022_104190,4376_126 -4289_75984,260,4376_10807,Adamstown Station,105311752,0,4376_7778022_104210,4376_126 -4289_75984,261,4376_10808,Adamstown Station,105321752,0,4376_7778022_104210,4376_126 -4289_75984,262,4376_10809,Adamstown Station,105431752,0,4376_7778022_104210,4376_126 -4289_75989,264,4376_1081,Redfern Avenue,105651270,0,4376_7778022_109502,4376_10 -4289_75984,263,4376_10810,Adamstown Station,105541752,0,4376_7778022_104210,4376_126 -4289_75984,264,4376_10811,Adamstown Station,105651752,0,4376_7778022_104210,4376_126 -4289_75984,265,4376_10812,Adamstown Station,105811752,0,4376_7778022_104210,4376_126 -4289_75984,266,4376_10813,Adamstown Station,105821752,0,4376_7778022_104210,4376_126 -4289_75984,267,4376_10814,Adamstown Station,106051752,0,4376_7778022_104210,4376_126 -4289_75984,268,4376_10815,Adamstown Station,106141752,0,4376_7778022_104210,4376_126 -4289_75984,269,4376_10816,Adamstown Station,106231752,0,4376_7778022_104210,4376_126 -4289_75984,259,4376_10817,Adamstown Station,105764656,0,4376_7778022_104220,4376_126 -4289_75984,270,4376_10818,Adamstown Station,105277416,0,4376_7778022_104210,4376_126 -4289_75984,146,4376_10819,Adamstown Station,105247416,0,4376_7778022_104210,4376_126 -4289_75989,260,4376_1082,Redfern Avenue,105311288,0,4376_7778022_109105,4376_10 -4289_75984,271,4376_10820,Adamstown Station,105237416,0,4376_7778022_104210,4376_126 -4289_75984,115,4376_10821,Adamstown Station,105217416,0,4376_7778022_104210,4376_126 -4289_75984,260,4376_10822,Adamstown Station,105311862,0,4376_7778022_104240,4376_126 -4289_75984,261,4376_10823,Adamstown Station,105321862,0,4376_7778022_104240,4376_126 -4289_75984,262,4376_10824,Adamstown Station,105431862,0,4376_7778022_104240,4376_126 -4289_75984,263,4376_10825,Adamstown Station,105541862,0,4376_7778022_104240,4376_126 -4289_75984,264,4376_10826,Adamstown Station,105651862,0,4376_7778022_104240,4376_126 -4289_75984,265,4376_10827,Adamstown Station,105811862,0,4376_7778022_104240,4376_126 -4289_75984,266,4376_10828,Adamstown Station,105821862,0,4376_7778022_104240,4376_126 -4289_75984,267,4376_10829,Adamstown Station,106051862,0,4376_7778022_104240,4376_126 -4289_75989,261,4376_1083,Redfern Avenue,105321288,0,4376_7778022_109105,4376_10 -4289_75984,268,4376_10830,Adamstown Station,106141862,0,4376_7778022_104240,4376_126 -4289_75984,269,4376_10831,Adamstown Station,106231862,0,4376_7778022_104240,4376_126 -4289_75984,259,4376_10832,Adamstown Station,105764760,0,4376_7778022_104240,4376_126 -4289_75984,270,4376_10833,Adamstown Station,105277510,0,4376_7778022_104200,4376_126 -4289_75984,146,4376_10834,Adamstown Station,105247510,0,4376_7778022_104200,4376_126 -4289_75984,271,4376_10835,Adamstown Station,105237510,0,4376_7778022_104200,4376_126 -4289_75984,115,4376_10836,Adamstown Station,105217510,0,4376_7778022_104200,4376_126 -4289_75984,260,4376_10837,Adamstown Station,105311972,0,4376_7778022_104210,4376_126 -4289_75984,261,4376_10838,Adamstown Station,105321972,0,4376_7778022_104210,4376_126 -4289_75984,262,4376_10839,Adamstown Station,105431972,0,4376_7778022_104210,4376_126 -4289_75989,262,4376_1084,Redfern Avenue,105431290,0,4376_7778022_109305,4376_10 -4289_75984,263,4376_10840,Adamstown Station,105541972,0,4376_7778022_104210,4376_126 -4289_75984,264,4376_10841,Adamstown Station,105651972,0,4376_7778022_104210,4376_126 -4289_75984,265,4376_10842,Adamstown Station,105811972,0,4376_7778022_104210,4376_126 -4289_75984,266,4376_10843,Adamstown Station,105821972,0,4376_7778022_104210,4376_126 -4289_75984,267,4376_10844,Adamstown Station,106051972,0,4376_7778022_104210,4376_126 -4289_75984,268,4376_10845,Adamstown Station,106141972,0,4376_7778022_104210,4376_126 -4289_75984,269,4376_10846,Adamstown Station,106231972,0,4376_7778022_104210,4376_126 -4289_75984,259,4376_10847,Adamstown Station,105764862,0,4376_7778022_104230,4376_126 -4289_75984,270,4376_10848,Adamstown Station,105277598,0,4376_7778022_104190,4376_126 -4289_75984,146,4376_10849,Adamstown Station,105247598,0,4376_7778022_104190,4376_126 -4289_75989,263,4376_1085,Redfern Avenue,105541292,0,4376_7778022_109405,4376_10 -4289_75984,271,4376_10850,Adamstown Station,105237598,0,4376_7778022_104190,4376_126 -4289_75984,115,4376_10851,Adamstown Station,105217598,0,4376_7778022_104190,4376_126 -4289_75984,260,4376_10852,Adamstown Station,105312094,0,4376_7778022_104240,4376_126 -4289_75984,261,4376_10853,Adamstown Station,105322094,0,4376_7778022_104240,4376_126 -4289_75984,262,4376_10854,Adamstown Station,105432094,0,4376_7778022_104240,4376_126 -4289_75984,263,4376_10855,Adamstown Station,105542094,0,4376_7778022_104240,4376_126 -4289_75984,264,4376_10856,Adamstown Station,105652094,0,4376_7778022_104240,4376_126 -4289_75984,265,4376_10857,Adamstown Station,105812094,0,4376_7778022_104240,4376_126 -4289_75984,266,4376_10858,Adamstown Station,105822094,0,4376_7778022_104240,4376_126 -4289_75984,267,4376_10859,Adamstown Station,106052094,0,4376_7778022_104240,4376_126 -4289_75989,264,4376_1086,Redfern Avenue,105651294,0,4376_7778022_109505,4376_10 -4289_75984,268,4376_10860,Adamstown Station,106142094,0,4376_7778022_104240,4376_126 -4289_75984,269,4376_10861,Adamstown Station,106232094,0,4376_7778022_104240,4376_126 -4289_75984,259,4376_10862,Adamstown Station,105764964,0,4376_7778022_104220,4376_126 -4289_75984,260,4376_10863,Adamstown Station,105312216,0,4376_7778022_104210,4376_126 -4289_75984,261,4376_10864,Adamstown Station,105322216,0,4376_7778022_104210,4376_126 -4289_75984,262,4376_10865,Adamstown Station,105432216,0,4376_7778022_104210,4376_126 -4289_75984,263,4376_10866,Adamstown Station,105542216,0,4376_7778022_104210,4376_126 -4289_75984,264,4376_10867,Adamstown Station,105652216,0,4376_7778022_104210,4376_126 -4289_75984,265,4376_10868,Adamstown Station,105812216,0,4376_7778022_104210,4376_126 -4289_75984,266,4376_10869,Adamstown Station,105822216,0,4376_7778022_104210,4376_126 -4289_75989,262,4376_1087,Brookdale Drive,105431843,1,4376_7778022_109305,4376_11 -4289_75984,267,4376_10870,Adamstown Station,106052216,0,4376_7778022_104210,4376_126 -4289_75984,268,4376_10871,Adamstown Station,106142216,0,4376_7778022_104210,4376_126 -4289_75984,269,4376_10872,Adamstown Station,106232216,0,4376_7778022_104210,4376_126 -4289_75984,270,4376_10873,Adamstown Station,105277686,0,4376_7778022_104210,4376_127 -4289_75984,146,4376_10874,Adamstown Station,105247686,0,4376_7778022_104210,4376_127 -4289_75984,271,4376_10875,Adamstown Station,105237686,0,4376_7778022_104210,4376_127 -4289_75984,115,4376_10876,Adamstown Station,105217686,0,4376_7778022_104210,4376_127 -4289_75984,259,4376_10877,Adamstown Station,105765068,0,4376_7778022_104240,4376_126 -4289_75984,260,4376_10878,Adamstown Station,105312344,0,4376_7778022_104240,4376_126 -4289_75984,261,4376_10879,Adamstown Station,105322344,0,4376_7778022_104240,4376_126 -4289_75989,262,4376_1088,Brookdale Drive,105431849,1,4376_7778022_109309,4376_11 -4289_75984,262,4376_10880,Adamstown Station,105432344,0,4376_7778022_104240,4376_126 -4289_75984,263,4376_10881,Adamstown Station,105542344,0,4376_7778022_104240,4376_126 -4289_75984,264,4376_10882,Adamstown Station,105652344,0,4376_7778022_104240,4376_126 -4289_75984,265,4376_10883,Adamstown Station,105812344,0,4376_7778022_104240,4376_126 -4289_75984,266,4376_10884,Adamstown Station,105822344,0,4376_7778022_104240,4376_126 -4289_75984,267,4376_10885,Adamstown Station,106052344,0,4376_7778022_104240,4376_126 -4289_75984,268,4376_10886,Adamstown Station,106142344,0,4376_7778022_104240,4376_126 -4289_75984,269,4376_10887,Adamstown Station,106232344,0,4376_7778022_104240,4376_126 -4289_75984,270,4376_10888,Adamstown Station,105277778,0,4376_7778022_104200,4376_127 -4289_75984,146,4376_10889,Adamstown Station,105247778,0,4376_7778022_104200,4376_127 -4289_75989,260,4376_1089,Brookdale Drive,105312213,1,4376_7778022_109105,4376_11 -4289_75984,271,4376_10890,Adamstown Station,105237778,0,4376_7778022_104200,4376_127 -4289_75984,115,4376_10891,Adamstown Station,105217778,0,4376_7778022_104200,4376_127 -4289_75984,259,4376_10892,Adamstown Station,105765170,0,4376_7778022_104230,4376_126 -4289_75984,260,4376_10893,Adamstown Station,105312458,0,4376_7778022_104210,4376_126 -4289_75984,261,4376_10894,Adamstown Station,105322458,0,4376_7778022_104210,4376_126 -4289_75984,262,4376_10895,Adamstown Station,105432458,0,4376_7778022_104210,4376_126 -4289_75984,263,4376_10896,Adamstown Station,105542458,0,4376_7778022_104210,4376_126 -4289_75984,264,4376_10897,Adamstown Station,105652458,0,4376_7778022_104210,4376_126 -4289_75984,265,4376_10898,Adamstown Station,105812458,0,4376_7778022_104210,4376_126 -4289_75984,266,4376_10899,Adamstown Station,105822458,0,4376_7778022_104210,4376_126 -4289_75960,146,4376_109,Sutton Station,105247136,0,4376_7778022_103106,4376_1 -4289_75989,261,4376_1090,Brookdale Drive,105322213,1,4376_7778022_109105,4376_11 -4289_75984,267,4376_10900,Adamstown Station,106052458,0,4376_7778022_104210,4376_126 -4289_75984,268,4376_10901,Adamstown Station,106142458,0,4376_7778022_104210,4376_126 -4289_75984,269,4376_10902,Adamstown Station,106232458,0,4376_7778022_104210,4376_126 -4289_75984,270,4376_10903,Adamstown Station,105277864,0,4376_7778022_104190,4376_127 -4289_75984,146,4376_10904,Adamstown Station,105247864,0,4376_7778022_104190,4376_127 -4289_75984,271,4376_10905,Adamstown Station,105237864,0,4376_7778022_104190,4376_127 -4289_75984,115,4376_10906,Adamstown Station,105217864,0,4376_7778022_104190,4376_127 -4289_75984,259,4376_10907,Adamstown Station,105765270,0,4376_7778022_104220,4376_126 -4289_75984,270,4376_10908,Adamstown Station,105277952,0,4376_7778022_104210,4376_126 -4289_75984,146,4376_10909,Adamstown Station,105247952,0,4376_7778022_104210,4376_126 -4289_75989,263,4376_1091,Brookdale Drive,105542215,1,4376_7778022_109405,4376_11 -4289_75984,271,4376_10910,Adamstown Station,105237952,0,4376_7778022_104210,4376_126 -4289_75984,115,4376_10911,Adamstown Station,105217952,0,4376_7778022_104210,4376_126 -4289_75984,260,4376_10912,Adamstown Station,105312572,0,4376_7778022_104240,4376_126 -4289_75984,261,4376_10913,Adamstown Station,105322572,0,4376_7778022_104240,4376_126 -4289_75984,262,4376_10914,Adamstown Station,105432572,0,4376_7778022_104240,4376_126 -4289_75984,263,4376_10915,Adamstown Station,105542572,0,4376_7778022_104240,4376_126 -4289_75984,264,4376_10916,Adamstown Station,105652572,0,4376_7778022_104240,4376_126 -4289_75984,265,4376_10917,Adamstown Station,105812572,0,4376_7778022_104240,4376_126 -4289_75984,266,4376_10918,Adamstown Station,105822572,0,4376_7778022_104240,4376_126 -4289_75984,267,4376_10919,Adamstown Station,106052572,0,4376_7778022_104240,4376_126 -4289_75989,264,4376_1092,Brookdale Drive,105652217,1,4376_7778022_109505,4376_11 -4289_75984,268,4376_10920,Adamstown Station,106142572,0,4376_7778022_104240,4376_126 -4289_75984,269,4376_10921,Adamstown Station,106232572,0,4376_7778022_104240,4376_126 -4289_75984,259,4376_10922,Adamstown Station,105765362,0,4376_7778022_104240,4376_126 -4289_75984,270,4376_10923,Adamstown Station,105278036,0,4376_7778022_104200,4376_126 -4289_75984,146,4376_10924,Adamstown Station,105248036,0,4376_7778022_104200,4376_126 -4289_75984,271,4376_10925,Adamstown Station,105238036,0,4376_7778022_104200,4376_126 -4289_75984,115,4376_10926,Adamstown Station,105218036,0,4376_7778022_104200,4376_126 -4289_75984,260,4376_10927,Adamstown Station,105312682,0,4376_7778022_104210,4376_126 -4289_75984,261,4376_10928,Adamstown Station,105322682,0,4376_7778022_104210,4376_126 -4289_75984,262,4376_10929,Adamstown Station,105432682,0,4376_7778022_104210,4376_126 -4289_75989,260,4376_1093,Brookdale Drive,105312225,1,4376_7778022_109109,4376_11 -4289_75984,263,4376_10930,Adamstown Station,105542682,0,4376_7778022_104210,4376_126 -4289_75984,264,4376_10931,Adamstown Station,105652682,0,4376_7778022_104210,4376_126 -4289_75984,265,4376_10932,Adamstown Station,105812682,0,4376_7778022_104210,4376_126 -4289_75984,266,4376_10933,Adamstown Station,105822682,0,4376_7778022_104210,4376_126 -4289_75984,267,4376_10934,Adamstown Station,106052682,0,4376_7778022_104210,4376_126 -4289_75984,268,4376_10935,Adamstown Station,106142682,0,4376_7778022_104210,4376_126 -4289_75984,269,4376_10936,Adamstown Station,106232682,0,4376_7778022_104210,4376_126 -4289_75984,259,4376_10937,Adamstown Station,105765450,0,4376_7778022_104230,4376_126 -4289_75984,270,4376_10938,Adamstown Station,105278114,0,4376_7778022_104190,4376_126 -4289_75984,146,4376_10939,Adamstown Station,105248114,0,4376_7778022_104190,4376_126 -4289_75989,261,4376_1094,Brookdale Drive,105322225,1,4376_7778022_109109,4376_11 -4289_75984,271,4376_10940,Adamstown Station,105238114,0,4376_7778022_104190,4376_126 -4289_75984,115,4376_10941,Adamstown Station,105218114,0,4376_7778022_104190,4376_126 -4289_75984,260,4376_10942,Adamstown Station,105312778,0,4376_7778022_104240,4376_126 -4289_75984,261,4376_10943,Adamstown Station,105322778,0,4376_7778022_104240,4376_126 -4289_75984,262,4376_10944,Adamstown Station,105432778,0,4376_7778022_104240,4376_126 -4289_75984,263,4376_10945,Adamstown Station,105542778,0,4376_7778022_104240,4376_126 -4289_75984,264,4376_10946,Adamstown Station,105652778,0,4376_7778022_104240,4376_126 -4289_75984,265,4376_10947,Adamstown Station,105812778,0,4376_7778022_104240,4376_126 -4289_75984,266,4376_10948,Adamstown Station,105822778,0,4376_7778022_104240,4376_126 -4289_75984,267,4376_10949,Adamstown Station,106052778,0,4376_7778022_104240,4376_126 -4289_75989,263,4376_1095,Brookdale Drive,105542227,1,4376_7778022_109409,4376_11 -4289_75984,268,4376_10950,Adamstown Station,106142778,0,4376_7778022_104240,4376_126 -4289_75984,269,4376_10951,Adamstown Station,106232778,0,4376_7778022_104240,4376_126 -4289_75984,259,4376_10952,Adamstown Station,105765532,0,4376_7778022_104220,4376_126 -4289_75984,270,4376_10953,Adamstown Station,105278190,0,4376_7778022_104210,4376_126 -4289_75984,146,4376_10954,Adamstown Station,105248190,0,4376_7778022_104210,4376_126 -4289_75984,271,4376_10955,Adamstown Station,105238190,0,4376_7778022_104210,4376_126 -4289_75984,115,4376_10956,Adamstown Station,105218190,0,4376_7778022_104210,4376_126 -4289_75984,260,4376_10957,Adamstown Station,105312868,0,4376_7778022_104210,4376_126 -4289_75984,261,4376_10958,Adamstown Station,105322868,0,4376_7778022_104210,4376_126 -4289_75984,262,4376_10959,Adamstown Station,105432868,0,4376_7778022_104210,4376_126 -4289_75989,264,4376_1096,Brookdale Drive,105652229,1,4376_7778022_109509,4376_11 -4289_75984,263,4376_10960,Adamstown Station,105542868,0,4376_7778022_104210,4376_126 -4289_75984,264,4376_10961,Adamstown Station,105652868,0,4376_7778022_104210,4376_126 -4289_75984,265,4376_10962,Adamstown Station,105812868,0,4376_7778022_104210,4376_126 -4289_75984,266,4376_10963,Adamstown Station,105822868,0,4376_7778022_104210,4376_126 -4289_75984,267,4376_10964,Adamstown Station,106052868,0,4376_7778022_104210,4376_126 -4289_75984,268,4376_10965,Adamstown Station,106142868,0,4376_7778022_104210,4376_126 -4289_75984,269,4376_10966,Adamstown Station,106232868,0,4376_7778022_104210,4376_126 -4289_75984,259,4376_10967,Adamstown Station,105765618,0,4376_7778022_104240,4376_126 -4289_75984,270,4376_10968,Adamstown Station,105278266,0,4376_7778022_104200,4376_126 -4289_75984,146,4376_10969,Adamstown Station,105248266,0,4376_7778022_104200,4376_126 -4289_75990,260,4376_1097,Sutton Park School,105311204,0,4376_7778022_109101,4376_12 -4289_75984,271,4376_10970,Adamstown Station,105238266,0,4376_7778022_104200,4376_126 -4289_75984,115,4376_10971,Adamstown Station,105218266,0,4376_7778022_104200,4376_126 -4289_75984,260,4376_10972,Adamstown Station,105312960,0,4376_7778022_104240,4376_126 -4289_75984,261,4376_10973,Adamstown Station,105322960,0,4376_7778022_104240,4376_126 -4289_75984,262,4376_10974,Adamstown Station,105432960,0,4376_7778022_104240,4376_126 -4289_75984,263,4376_10975,Adamstown Station,105542960,0,4376_7778022_104240,4376_126 -4289_75984,264,4376_10976,Adamstown Station,105652960,0,4376_7778022_104240,4376_126 -4289_75984,265,4376_10977,Adamstown Station,105812960,0,4376_7778022_104240,4376_126 -4289_75984,266,4376_10978,Adamstown Station,105822960,0,4376_7778022_104240,4376_126 -4289_75984,267,4376_10979,Adamstown Station,106052960,0,4376_7778022_104240,4376_126 -4289_75990,261,4376_1098,Sutton Park School,105321204,0,4376_7778022_109101,4376_12 -4289_75984,268,4376_10980,Adamstown Station,106142960,0,4376_7778022_104240,4376_126 -4289_75984,269,4376_10981,Adamstown Station,106232960,0,4376_7778022_104240,4376_126 -4289_75984,260,4376_10982,Liffey Valley SC,105311027,1,4376_7778022_104210,4376_128 -4289_75984,261,4376_10983,Liffey Valley SC,105321027,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_10984,Liffey Valley SC,105431027,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_10985,Liffey Valley SC,105541027,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_10986,Liffey Valley SC,105651027,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_10987,Liffey Valley SC,105811027,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_10988,Liffey Valley SC,105821027,1,4376_7778022_104210,4376_128 -4289_75984,267,4376_10989,Liffey Valley SC,106051027,1,4376_7778022_104210,4376_128 -4289_75990,262,4376_1099,Sutton Park School,105431206,0,4376_7778022_109301,4376_12 -4289_75984,268,4376_10990,Liffey Valley SC,106141027,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_10991,Liffey Valley SC,106231027,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_10992,Liffey Valley SC,105764017,1,4376_7778022_104220,4376_129 -4289_75984,260,4376_10993,Liffey Valley SC,105311129,1,4376_7778022_104210,4376_128 -4289_75984,261,4376_10994,Liffey Valley SC,105321129,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_10995,Liffey Valley SC,105431129,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_10996,Liffey Valley SC,105541129,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_10997,Liffey Valley SC,105651129,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_10998,Liffey Valley SC,105811129,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_10999,Liffey Valley SC,105821129,1,4376_7778022_104210,4376_128 -4289_75960,269,4376_11,Sutton Station,106231026,0,4376_7778022_103503,4376_1 -4289_75960,271,4376_110,Sutton Station,105237136,0,4376_7778022_103106,4376_1 -4289_75990,263,4376_1100,Sutton Park School,105541208,0,4376_7778022_109401,4376_12 -4289_75984,267,4376_11000,Liffey Valley SC,106051129,1,4376_7778022_104210,4376_128 -4289_75984,268,4376_11001,Liffey Valley SC,106141129,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_11002,Liffey Valley SC,106231129,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_11003,Liffey Valley SC,105764083,1,4376_7778022_104240,4376_129 -4289_75984,270,4376_11004,Liffey Valley SC,105277021,1,4376_7778022_104190,4376_128 -4289_75984,146,4376_11005,Liffey Valley SC,105247021,1,4376_7778022_104190,4376_128 -4289_75984,271,4376_11006,Liffey Valley SC,105237021,1,4376_7778022_104190,4376_128 -4289_75984,115,4376_11007,Liffey Valley SC,105217021,1,4376_7778022_104190,4376_128 -4289_75984,260,4376_11008,Liffey Valley SC,105311251,1,4376_7778022_104240,4376_128 -4289_75984,261,4376_11009,Liffey Valley SC,105321251,1,4376_7778022_104240,4376_128 -4289_75990,264,4376_1101,Sutton Park School,105651210,0,4376_7778022_109501,4376_12 -4289_75984,262,4376_11010,Liffey Valley SC,105431251,1,4376_7778022_104240,4376_128 -4289_75984,263,4376_11011,Liffey Valley SC,105541251,1,4376_7778022_104240,4376_128 -4289_75984,264,4376_11012,Liffey Valley SC,105651251,1,4376_7778022_104240,4376_128 -4289_75984,265,4376_11013,Liffey Valley SC,105811251,1,4376_7778022_104240,4376_128 -4289_75984,266,4376_11014,Liffey Valley SC,105821251,1,4376_7778022_104240,4376_128 -4289_75984,267,4376_11015,Liffey Valley SC,106051251,1,4376_7778022_104240,4376_128 -4289_75984,268,4376_11016,Liffey Valley SC,106141251,1,4376_7778022_104240,4376_128 -4289_75984,269,4376_11017,Liffey Valley SC,106231251,1,4376_7778022_104240,4376_128 -4289_75984,259,4376_11018,Liffey Valley SC,105764159,1,4376_7778022_104230,4376_129 -4289_75984,260,4376_11019,Liffey Valley SC,105311387,1,4376_7778022_104210,4376_128 -4289_75990,260,4376_1102,Sutton Park School,105311242,0,4376_7778022_109103,4376_12 -4289_75984,261,4376_11020,Liffey Valley SC,105321387,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_11021,Liffey Valley SC,105431387,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_11022,Liffey Valley SC,105541387,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_11023,Liffey Valley SC,105651387,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_11024,Liffey Valley SC,105811387,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_11025,Liffey Valley SC,105821387,1,4376_7778022_104210,4376_128 -4289_75984,267,4376_11026,Liffey Valley SC,106051387,1,4376_7778022_104210,4376_128 -4289_75984,268,4376_11027,Liffey Valley SC,106141387,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_11028,Liffey Valley SC,106231387,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_11029,Liffey Valley SC,105764249,1,4376_7778022_104220,4376_129 -4289_75990,261,4376_1103,Sutton Park School,105321242,0,4376_7778022_109103,4376_12 -4289_75984,270,4376_11030,Liffey Valley SC,105277077,1,4376_7778022_104210,4376_130 -4289_75984,146,4376_11031,Liffey Valley SC,105247077,1,4376_7778022_104210,4376_130 -4289_75984,271,4376_11032,Liffey Valley SC,105237077,1,4376_7778022_104210,4376_130 -4289_75984,115,4376_11033,Liffey Valley SC,105217077,1,4376_7778022_104210,4376_130 -4289_75984,260,4376_11034,Liffey Valley SC,105311493,1,4376_7778022_104240,4376_128 -4289_75984,261,4376_11035,Liffey Valley SC,105321493,1,4376_7778022_104240,4376_128 -4289_75984,262,4376_11036,Liffey Valley SC,105431493,1,4376_7778022_104240,4376_128 -4289_75984,263,4376_11037,Liffey Valley SC,105541493,1,4376_7778022_104240,4376_128 -4289_75984,264,4376_11038,Liffey Valley SC,105651493,1,4376_7778022_104240,4376_128 -4289_75984,265,4376_11039,Liffey Valley SC,105811493,1,4376_7778022_104240,4376_128 -4289_75990,262,4376_1104,Sutton Park School,105431244,0,4376_7778022_109303,4376_12 -4289_75984,266,4376_11040,Liffey Valley SC,105821493,1,4376_7778022_104240,4376_128 -4289_75984,267,4376_11041,Liffey Valley SC,106051493,1,4376_7778022_104240,4376_128 -4289_75984,268,4376_11042,Liffey Valley SC,106141493,1,4376_7778022_104240,4376_128 -4289_75984,269,4376_11043,Liffey Valley SC,106231493,1,4376_7778022_104240,4376_128 -4289_75984,259,4376_11044,Liffey Valley SC,105764349,1,4376_7778022_104240,4376_129 -4289_75984,270,4376_11045,Liffey Valley SC,105277151,1,4376_7778022_104200,4376_130 -4289_75984,146,4376_11046,Liffey Valley SC,105247151,1,4376_7778022_104200,4376_130 -4289_75984,271,4376_11047,Liffey Valley SC,105237151,1,4376_7778022_104200,4376_130 -4289_75984,115,4376_11048,Liffey Valley SC,105217151,1,4376_7778022_104200,4376_130 -4289_75984,260,4376_11049,Liffey Valley SC,105311601,1,4376_7778022_104210,4376_128 -4289_75990,263,4376_1105,Sutton Park School,105541246,0,4376_7778022_109402,4376_12 -4289_75984,261,4376_11050,Liffey Valley SC,105321601,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_11051,Liffey Valley SC,105431601,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_11052,Liffey Valley SC,105541601,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_11053,Liffey Valley SC,105651601,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_11054,Liffey Valley SC,105811601,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_11055,Liffey Valley SC,105821601,1,4376_7778022_104210,4376_128 -4289_75984,267,4376_11056,Liffey Valley SC,106051601,1,4376_7778022_104210,4376_128 -4289_75984,268,4376_11057,Liffey Valley SC,106141601,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_11058,Liffey Valley SC,106231601,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_11059,Liffey Valley SC,105764455,1,4376_7778022_104230,4376_129 -4289_75990,264,4376_1106,Sutton Park School,105651248,0,4376_7778022_109503,4376_12 -4289_75984,270,4376_11060,Liffey Valley SC,105277241,1,4376_7778022_104190,4376_130 -4289_75984,146,4376_11061,Liffey Valley SC,105247241,1,4376_7778022_104190,4376_130 -4289_75984,271,4376_11062,Liffey Valley SC,105237241,1,4376_7778022_104190,4376_130 -4289_75984,115,4376_11063,Liffey Valley SC,105217241,1,4376_7778022_104190,4376_130 -4289_75984,260,4376_11064,Liffey Valley SC,105311711,1,4376_7778022_104240,4376_128 -4289_75984,261,4376_11065,Liffey Valley SC,105321711,1,4376_7778022_104240,4376_128 -4289_75984,262,4376_11066,Liffey Valley SC,105431711,1,4376_7778022_104240,4376_128 -4289_75984,263,4376_11067,Liffey Valley SC,105541711,1,4376_7778022_104240,4376_128 -4289_75984,264,4376_11068,Liffey Valley SC,105651711,1,4376_7778022_104240,4376_128 -4289_75984,265,4376_11069,Liffey Valley SC,105811711,1,4376_7778022_104240,4376_128 -4289_75990,262,4376_1107,Swords Pavilions,105432051,1,4376_7778022_109307,4376_13 -4289_75984,266,4376_11070,Liffey Valley SC,105821711,1,4376_7778022_104240,4376_128 -4289_75984,267,4376_11071,Liffey Valley SC,106051711,1,4376_7778022_104240,4376_128 -4289_75984,268,4376_11072,Liffey Valley SC,106141711,1,4376_7778022_104240,4376_128 -4289_75984,269,4376_11073,Liffey Valley SC,106231711,1,4376_7778022_104240,4376_128 -4289_75984,259,4376_11074,Liffey Valley SC,105764555,1,4376_7778022_104220,4376_129 -4289_75984,270,4376_11075,Liffey Valley SC,105277333,1,4376_7778022_104210,4376_130 -4289_75984,146,4376_11076,Liffey Valley SC,105247333,1,4376_7778022_104210,4376_130 -4289_75984,271,4376_11077,Liffey Valley SC,105237333,1,4376_7778022_104210,4376_130 -4289_75984,115,4376_11078,Liffey Valley SC,105217333,1,4376_7778022_104210,4376_130 -4289_75984,260,4376_11079,Liffey Valley SC,105311821,1,4376_7778022_104210,4376_128 -4289_75990,260,4376_1108,Swords Pavilions,105312171,1,4376_7778022_109104,4376_13 -4289_75984,261,4376_11080,Liffey Valley SC,105321821,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_11081,Liffey Valley SC,105431821,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_11082,Liffey Valley SC,105541821,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_11083,Liffey Valley SC,105651821,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_11084,Liffey Valley SC,105811821,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_11085,Liffey Valley SC,105821821,1,4376_7778022_104210,4376_128 -4289_75984,267,4376_11086,Liffey Valley SC,106051821,1,4376_7778022_104210,4376_128 -4289_75984,268,4376_11087,Liffey Valley SC,106141821,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_11088,Liffey Valley SC,106231821,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_11089,Liffey Valley SC,105764657,1,4376_7778022_104240,4376_129 -4289_75990,261,4376_1109,Swords Pavilions,105322171,1,4376_7778022_109104,4376_13 -4289_75984,270,4376_11090,Liffey Valley SC,105277423,1,4376_7778022_104200,4376_130 -4289_75984,146,4376_11091,Liffey Valley SC,105247423,1,4376_7778022_104200,4376_130 -4289_75984,271,4376_11092,Liffey Valley SC,105237423,1,4376_7778022_104200,4376_130 -4289_75984,115,4376_11093,Liffey Valley SC,105217423,1,4376_7778022_104200,4376_130 -4289_75984,260,4376_11094,Liffey Valley SC,105311931,1,4376_7778022_104240,4376_128 -4289_75984,261,4376_11095,Liffey Valley SC,105321931,1,4376_7778022_104240,4376_128 -4289_75984,262,4376_11096,Liffey Valley SC,105431931,1,4376_7778022_104240,4376_128 -4289_75984,263,4376_11097,Liffey Valley SC,105541931,1,4376_7778022_104240,4376_128 -4289_75984,264,4376_11098,Liffey Valley SC,105651931,1,4376_7778022_104240,4376_128 -4289_75984,265,4376_11099,Liffey Valley SC,105811931,1,4376_7778022_104240,4376_128 -4289_75960,115,4376_111,Sutton Station,105217136,0,4376_7778022_103106,4376_1 -4289_75990,263,4376_1110,Swords Pavilions,105542173,1,4376_7778022_109406,4376_13 -4289_75984,266,4376_11100,Liffey Valley SC,105821931,1,4376_7778022_104240,4376_128 -4289_75984,267,4376_11101,Liffey Valley SC,106051931,1,4376_7778022_104240,4376_128 -4289_75984,268,4376_11102,Liffey Valley SC,106141931,1,4376_7778022_104240,4376_128 -4289_75984,269,4376_11103,Liffey Valley SC,106231931,1,4376_7778022_104240,4376_128 -4289_75984,259,4376_11104,Liffey Valley SC,105764761,1,4376_7778022_104230,4376_129 -4289_75984,270,4376_11105,Liffey Valley SC,105277513,1,4376_7778022_104190,4376_130 -4289_75984,146,4376_11106,Liffey Valley SC,105247513,1,4376_7778022_104190,4376_130 -4289_75984,271,4376_11107,Liffey Valley SC,105237513,1,4376_7778022_104190,4376_130 -4289_75984,115,4376_11108,Liffey Valley SC,105217513,1,4376_7778022_104190,4376_130 -4289_75984,260,4376_11109,Liffey Valley SC,105312047,1,4376_7778022_104210,4376_128 -4289_75990,264,4376_1111,Swords Pavilions,105652175,1,4376_7778022_109506,4376_13 -4289_75984,261,4376_11110,Liffey Valley SC,105322047,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_11111,Liffey Valley SC,105432047,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_11112,Liffey Valley SC,105542047,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_11113,Liffey Valley SC,105652047,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_11114,Liffey Valley SC,105812047,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_11115,Liffey Valley SC,105822047,1,4376_7778022_104210,4376_128 -4289_75984,267,4376_11116,Liffey Valley SC,106052047,1,4376_7778022_104210,4376_128 -4289_75984,268,4376_11117,Liffey Valley SC,106142047,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_11118,Liffey Valley SC,106232047,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_11119,Liffey Valley SC,105764863,1,4376_7778022_104220,4376_129 -4289_75961,260,4376_1112,DCU Helix,105311134,0,4376_7778022_104060,4376_14 -4289_75984,270,4376_11120,Liffey Valley SC,105277607,1,4376_7778022_104210,4376_130 -4289_75984,146,4376_11121,Liffey Valley SC,105247607,1,4376_7778022_104210,4376_130 -4289_75984,271,4376_11122,Liffey Valley SC,105237607,1,4376_7778022_104210,4376_130 -4289_75984,115,4376_11123,Liffey Valley SC,105217607,1,4376_7778022_104210,4376_130 -4289_75984,260,4376_11124,Liffey Valley SC,105312185,1,4376_7778022_104240,4376_128 -4289_75984,261,4376_11125,Liffey Valley SC,105322185,1,4376_7778022_104240,4376_128 -4289_75984,262,4376_11126,Liffey Valley SC,105432185,1,4376_7778022_104240,4376_128 -4289_75984,263,4376_11127,Liffey Valley SC,105542185,1,4376_7778022_104240,4376_128 -4289_75984,264,4376_11128,Liffey Valley SC,105652185,1,4376_7778022_104240,4376_128 -4289_75984,265,4376_11129,Liffey Valley SC,105812185,1,4376_7778022_104240,4376_128 -4289_75961,261,4376_1113,DCU Helix,105321134,0,4376_7778022_104060,4376_14 -4289_75984,266,4376_11130,Liffey Valley SC,105822185,1,4376_7778022_104240,4376_128 -4289_75984,267,4376_11131,Liffey Valley SC,106052185,1,4376_7778022_104240,4376_128 -4289_75984,268,4376_11132,Liffey Valley SC,106142185,1,4376_7778022_104240,4376_128 -4289_75984,269,4376_11133,Liffey Valley SC,106232185,1,4376_7778022_104240,4376_128 -4289_75984,259,4376_11134,Liffey Valley SC,105764965,1,4376_7778022_104240,4376_129 -4289_75984,270,4376_11135,Liffey Valley SC,105277693,1,4376_7778022_104200,4376_130 -4289_75984,146,4376_11136,Liffey Valley SC,105247693,1,4376_7778022_104200,4376_130 -4289_75984,271,4376_11137,Liffey Valley SC,105237693,1,4376_7778022_104200,4376_130 -4289_75984,115,4376_11138,Liffey Valley SC,105217693,1,4376_7778022_104200,4376_130 -4289_75984,260,4376_11139,Liffey Valley SC,105312321,1,4376_7778022_104210,4376_128 -4289_75961,262,4376_1114,DCU Helix,105431134,0,4376_7778022_104060,4376_14 -4289_75984,261,4376_11140,Liffey Valley SC,105322321,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_11141,Liffey Valley SC,105432321,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_11142,Liffey Valley SC,105542321,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_11143,Liffey Valley SC,105652321,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_11144,Liffey Valley SC,105812321,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_11145,Liffey Valley SC,105822321,1,4376_7778022_104210,4376_128 -4289_75984,267,4376_11146,Liffey Valley SC,106052321,1,4376_7778022_104210,4376_128 -4289_75984,268,4376_11147,Liffey Valley SC,106142321,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_11148,Liffey Valley SC,106232321,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_11149,Liffey Valley SC,105765067,1,4376_7778022_104230,4376_129 -4289_75961,263,4376_1115,DCU Helix,105541134,0,4376_7778022_104060,4376_14 -4289_75984,270,4376_11150,Liffey Valley SC,105277783,1,4376_7778022_104190,4376_130 -4289_75984,146,4376_11151,Liffey Valley SC,105247783,1,4376_7778022_104190,4376_130 -4289_75984,271,4376_11152,Liffey Valley SC,105237783,1,4376_7778022_104190,4376_130 -4289_75984,115,4376_11153,Liffey Valley SC,105217783,1,4376_7778022_104190,4376_130 -4289_75984,260,4376_11154,Liffey Valley SC,105312443,1,4376_7778022_104240,4376_128 -4289_75984,261,4376_11155,Liffey Valley SC,105322443,1,4376_7778022_104240,4376_128 -4289_75984,262,4376_11156,Liffey Valley SC,105432443,1,4376_7778022_104240,4376_128 -4289_75984,263,4376_11157,Liffey Valley SC,105542443,1,4376_7778022_104240,4376_128 -4289_75984,264,4376_11158,Liffey Valley SC,105652443,1,4376_7778022_104240,4376_128 -4289_75984,265,4376_11159,Liffey Valley SC,105812443,1,4376_7778022_104240,4376_128 -4289_75961,264,4376_1116,DCU Helix,105651134,0,4376_7778022_104060,4376_14 -4289_75984,266,4376_11160,Liffey Valley SC,105822443,1,4376_7778022_104240,4376_128 -4289_75984,267,4376_11161,Liffey Valley SC,106052443,1,4376_7778022_104240,4376_128 -4289_75984,268,4376_11162,Liffey Valley SC,106142443,1,4376_7778022_104240,4376_128 -4289_75984,269,4376_11163,Liffey Valley SC,106232443,1,4376_7778022_104240,4376_128 -4289_75984,259,4376_11164,Liffey Valley SC,105765173,1,4376_7778022_104220,4376_129 -4289_75984,270,4376_11165,Liffey Valley SC,105277877,1,4376_7778022_104210,4376_130 -4289_75984,146,4376_11166,Liffey Valley SC,105247877,1,4376_7778022_104210,4376_130 -4289_75984,271,4376_11167,Liffey Valley SC,105237877,1,4376_7778022_104210,4376_130 -4289_75984,115,4376_11168,Liffey Valley SC,105217877,1,4376_7778022_104210,4376_130 -4289_75984,260,4376_11169,Liffey Valley SC,105312551,1,4376_7778022_104210,4376_128 -4289_75961,265,4376_1117,DCU Helix,105811134,0,4376_7778022_104060,4376_14 -4289_75984,261,4376_11170,Liffey Valley SC,105322551,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_11171,Liffey Valley SC,105432551,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_11172,Liffey Valley SC,105542551,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_11173,Liffey Valley SC,105652551,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_11174,Liffey Valley SC,105812551,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_11175,Liffey Valley SC,105822551,1,4376_7778022_104210,4376_128 -4289_75984,267,4376_11176,Liffey Valley SC,106052551,1,4376_7778022_104210,4376_128 -4289_75984,268,4376_11177,Liffey Valley SC,106142551,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_11178,Liffey Valley SC,106232551,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_11179,Liffey Valley SC,105765275,1,4376_7778022_104240,4376_129 -4289_75961,266,4376_1118,DCU Helix,105821134,0,4376_7778022_104060,4376_14 -4289_75984,270,4376_11180,Liffey Valley SC,105277967,1,4376_7778022_104200,4376_130 -4289_75984,146,4376_11181,Liffey Valley SC,105247967,1,4376_7778022_104200,4376_130 -4289_75984,271,4376_11182,Liffey Valley SC,105237967,1,4376_7778022_104200,4376_130 -4289_75984,115,4376_11183,Liffey Valley SC,105217967,1,4376_7778022_104200,4376_130 -4289_75984,260,4376_11184,Liffey Valley SC,105312659,1,4376_7778022_104240,4376_128 -4289_75984,261,4376_11185,Liffey Valley SC,105322659,1,4376_7778022_104240,4376_128 -4289_75984,262,4376_11186,Liffey Valley SC,105432659,1,4376_7778022_104240,4376_128 -4289_75984,263,4376_11187,Liffey Valley SC,105542659,1,4376_7778022_104240,4376_128 -4289_75984,264,4376_11188,Liffey Valley SC,105652659,1,4376_7778022_104240,4376_128 -4289_75984,265,4376_11189,Liffey Valley SC,105812659,1,4376_7778022_104240,4376_128 -4289_75961,267,4376_1119,DCU Helix,106051134,0,4376_7778022_104060,4376_14 -4289_75984,266,4376_11190,Liffey Valley SC,105822659,1,4376_7778022_104240,4376_128 -4289_75984,267,4376_11191,Liffey Valley SC,106052659,1,4376_7778022_104240,4376_128 -4289_75984,268,4376_11192,Liffey Valley SC,106142659,1,4376_7778022_104240,4376_128 -4289_75984,269,4376_11193,Liffey Valley SC,106232659,1,4376_7778022_104240,4376_128 -4289_75984,259,4376_11194,Liffey Valley SC,105765367,1,4376_7778022_104230,4376_129 -4289_75984,270,4376_11195,Liffey Valley SC,105278047,1,4376_7778022_104190,4376_130 -4289_75984,146,4376_11196,Liffey Valley SC,105248047,1,4376_7778022_104190,4376_130 -4289_75984,271,4376_11197,Liffey Valley SC,105238047,1,4376_7778022_104190,4376_130 -4289_75984,115,4376_11198,Liffey Valley SC,105218047,1,4376_7778022_104190,4376_130 -4289_75984,260,4376_11199,Liffey Valley SC,105312755,1,4376_7778022_104210,4376_128 -4289_75960,260,4376_112,Sutton Station,105311544,0,4376_7778022_103501,4376_1 -4289_75961,268,4376_1120,DCU Helix,106141134,0,4376_7778022_104060,4376_14 -4289_75984,261,4376_11200,Liffey Valley SC,105322755,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_11201,Liffey Valley SC,105432755,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_11202,Liffey Valley SC,105542755,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_11203,Liffey Valley SC,105652755,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_11204,Liffey Valley SC,105812755,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_11205,Liffey Valley SC,105822755,1,4376_7778022_104210,4376_128 -4289_75984,267,4376_11206,Liffey Valley SC,106052755,1,4376_7778022_104210,4376_128 -4289_75984,268,4376_11207,Liffey Valley SC,106142755,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_11208,Liffey Valley SC,106232755,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_11209,Liffey Valley SC,105765451,1,4376_7778022_104220,4376_129 -4289_75961,269,4376_1121,DCU Helix,106231134,0,4376_7778022_104060,4376_14 -4289_75984,270,4376_11210,Liffey Valley SC,105278125,1,4376_7778022_104210,4376_130 -4289_75984,146,4376_11211,Liffey Valley SC,105248125,1,4376_7778022_104210,4376_130 -4289_75984,271,4376_11212,Liffey Valley SC,105238125,1,4376_7778022_104210,4376_130 -4289_75984,115,4376_11213,Liffey Valley SC,105218125,1,4376_7778022_104210,4376_130 -4289_75984,260,4376_11214,Liffey Valley SC,105312849,1,4376_7778022_104240,4376_128 -4289_75984,261,4376_11215,Liffey Valley SC,105322849,1,4376_7778022_104240,4376_128 -4289_75984,262,4376_11216,Liffey Valley SC,105432849,1,4376_7778022_104240,4376_128 -4289_75984,263,4376_11217,Liffey Valley SC,105542849,1,4376_7778022_104240,4376_128 -4289_75984,264,4376_11218,Liffey Valley SC,105652849,1,4376_7778022_104240,4376_128 -4289_75984,265,4376_11219,Liffey Valley SC,105812849,1,4376_7778022_104240,4376_128 -4289_75961,259,4376_1122,DCU Helix,105764110,0,4376_7778022_104100,4376_16 -4289_75984,266,4376_11220,Liffey Valley SC,105822849,1,4376_7778022_104240,4376_128 -4289_75984,267,4376_11221,Liffey Valley SC,106052849,1,4376_7778022_104240,4376_128 -4289_75984,268,4376_11222,Liffey Valley SC,106142849,1,4376_7778022_104240,4376_128 -4289_75984,269,4376_11223,Liffey Valley SC,106232849,1,4376_7778022_104240,4376_128 -4289_75984,259,4376_11224,Liffey Valley SC,105765537,1,4376_7778022_104240,4376_129 -4289_75984,270,4376_11225,Liffey Valley SC,105278203,1,4376_7778022_104200,4376_130 -4289_75984,146,4376_11226,Liffey Valley SC,105248203,1,4376_7778022_104200,4376_130 -4289_75984,271,4376_11227,Liffey Valley SC,105238203,1,4376_7778022_104200,4376_130 -4289_75984,115,4376_11228,Liffey Valley SC,105218203,1,4376_7778022_104200,4376_130 -4289_75984,260,4376_11229,Liffey Valley SC,105312945,1,4376_7778022_104210,4376_128 -4289_75961,260,4376_1123,DCU Helix,105311302,0,4376_7778022_104110,4376_14 -4289_75984,261,4376_11230,Liffey Valley SC,105322945,1,4376_7778022_104210,4376_128 -4289_75984,262,4376_11231,Liffey Valley SC,105432945,1,4376_7778022_104210,4376_128 -4289_75984,263,4376_11232,Liffey Valley SC,105542945,1,4376_7778022_104210,4376_128 -4289_75984,264,4376_11233,Liffey Valley SC,105652945,1,4376_7778022_104210,4376_128 -4289_75984,265,4376_11234,Liffey Valley SC,105812945,1,4376_7778022_104210,4376_128 -4289_75984,266,4376_11235,Liffey Valley SC,105822945,1,4376_7778022_104210,4376_128 -4289_75984,267,4376_11236,Liffey Valley SC,106052945,1,4376_7778022_104210,4376_128 -4289_75984,268,4376_11237,Liffey Valley SC,106142945,1,4376_7778022_104210,4376_128 -4289_75984,269,4376_11238,Liffey Valley SC,106232945,1,4376_7778022_104210,4376_128 -4289_75984,259,4376_11239,Liffey Valley SC,105765621,1,4376_7778022_104230,4376_129 -4289_75961,261,4376_1124,DCU Helix,105321302,0,4376_7778022_104110,4376_14 -4289_75984,270,4376_11240,Liffey Valley SC,105278277,1,4376_7778022_104190,4376_130 -4289_75984,146,4376_11241,Liffey Valley SC,105248277,1,4376_7778022_104190,4376_130 -4289_75984,271,4376_11242,Liffey Valley SC,105238277,1,4376_7778022_104190,4376_130 -4289_75984,115,4376_11243,Liffey Valley SC,105218277,1,4376_7778022_104190,4376_130 -4289_75985,260,4376_11244,Adamstown Station,105311058,0,4376_7778022_104230,4376_131 -4289_75985,261,4376_11245,Adamstown Station,105321058,0,4376_7778022_104230,4376_131 -4289_75985,262,4376_11246,Adamstown Station,105431058,0,4376_7778022_104230,4376_131 -4289_75985,263,4376_11247,Adamstown Station,105541058,0,4376_7778022_104230,4376_131 -4289_75985,264,4376_11248,Adamstown Station,105651058,0,4376_7778022_104230,4376_131 -4289_75985,265,4376_11249,Adamstown Station,105811058,0,4376_7778022_104230,4376_131 -4289_75961,262,4376_1125,DCU Helix,105431302,0,4376_7778022_104110,4376_14 -4289_75985,266,4376_11250,Adamstown Station,105821058,0,4376_7778022_104230,4376_131 -4289_75985,267,4376_11251,Adamstown Station,106051058,0,4376_7778022_104230,4376_131 -4289_75985,268,4376_11252,Adamstown Station,106141058,0,4376_7778022_104230,4376_131 -4289_75985,269,4376_11253,Adamstown Station,106231058,0,4376_7778022_104230,4376_131 -4289_75985,259,4376_11254,Adamstown Station,105764038,0,4376_7778022_104240,4376_132 -4289_75985,260,4376_11255,Adamstown Station,105311178,0,4376_7778022_104220,4376_131 -4289_75985,261,4376_11256,Adamstown Station,105321178,0,4376_7778022_104220,4376_131 -4289_75985,262,4376_11257,Adamstown Station,105431178,0,4376_7778022_104220,4376_131 -4289_75985,263,4376_11258,Adamstown Station,105541178,0,4376_7778022_104220,4376_131 -4289_75985,264,4376_11259,Adamstown Station,105651178,0,4376_7778022_104220,4376_131 -4289_75961,263,4376_1126,DCU Helix,105541302,0,4376_7778022_104110,4376_14 -4289_75985,265,4376_11260,Adamstown Station,105811178,0,4376_7778022_104220,4376_131 -4289_75985,266,4376_11261,Adamstown Station,105821178,0,4376_7778022_104220,4376_131 -4289_75985,267,4376_11262,Adamstown Station,106051178,0,4376_7778022_104220,4376_131 -4289_75985,268,4376_11263,Adamstown Station,106141178,0,4376_7778022_104220,4376_131 -4289_75985,269,4376_11264,Adamstown Station,106231178,0,4376_7778022_104220,4376_131 -4289_75985,259,4376_11265,Adamstown Station,105764120,0,4376_7778022_104230,4376_131 -4289_75985,260,4376_11266,Adamstown Station,105311354,0,4376_7778022_104230,4376_131 -4289_75985,261,4376_11267,Adamstown Station,105321354,0,4376_7778022_104230,4376_131 -4289_75985,262,4376_11268,Adamstown Station,105431354,0,4376_7778022_104230,4376_131 -4289_75985,263,4376_11269,Adamstown Station,105541354,0,4376_7778022_104230,4376_131 -4289_75961,264,4376_1127,DCU Helix,105651302,0,4376_7778022_104110,4376_14 -4289_75985,264,4376_11270,Adamstown Station,105651354,0,4376_7778022_104230,4376_131 -4289_75985,265,4376_11271,Adamstown Station,105811354,0,4376_7778022_104230,4376_131 -4289_75985,266,4376_11272,Adamstown Station,105821354,0,4376_7778022_104230,4376_131 -4289_75985,267,4376_11273,Adamstown Station,106051354,0,4376_7778022_104230,4376_131 -4289_75985,268,4376_11274,Adamstown Station,106141354,0,4376_7778022_104230,4376_131 -4289_75985,269,4376_11275,Adamstown Station,106231354,0,4376_7778022_104230,4376_131 -4289_75985,259,4376_11276,Adamstown Station,105764204,0,4376_7778022_104220,4376_131 -4289_75985,270,4376_11277,Adamstown Station,105277040,0,4376_7778022_104210,4376_132 -4289_75985,146,4376_11278,Adamstown Station,105247040,0,4376_7778022_104210,4376_132 -4289_75985,271,4376_11279,Adamstown Station,105237040,0,4376_7778022_104210,4376_132 -4289_75961,265,4376_1128,DCU Helix,105811302,0,4376_7778022_104110,4376_14 -4289_75985,115,4376_11280,Adamstown Station,105217040,0,4376_7778022_104210,4376_132 -4289_75985,259,4376_11281,Adamstown Station,105764292,0,4376_7778022_104240,4376_131 -4289_75985,270,4376_11282,Adamstown Station,105277106,0,4376_7778022_104200,4376_131 -4289_75985,146,4376_11283,Adamstown Station,105247106,0,4376_7778022_104200,4376_131 -4289_75985,271,4376_11284,Adamstown Station,105237106,0,4376_7778022_104200,4376_131 -4289_75985,115,4376_11285,Adamstown Station,105217106,0,4376_7778022_104200,4376_131 -4289_75985,260,4376_11286,Adamstown Station,105311480,0,4376_7778022_104220,4376_131 -4289_75985,261,4376_11287,Adamstown Station,105321480,0,4376_7778022_104220,4376_131 -4289_75985,262,4376_11288,Adamstown Station,105431480,0,4376_7778022_104220,4376_131 -4289_75985,263,4376_11289,Adamstown Station,105541480,0,4376_7778022_104220,4376_131 -4289_75961,266,4376_1129,DCU Helix,105821302,0,4376_7778022_104110,4376_14 -4289_75985,264,4376_11290,Adamstown Station,105651480,0,4376_7778022_104220,4376_131 -4289_75985,265,4376_11291,Adamstown Station,105811480,0,4376_7778022_104220,4376_131 -4289_75985,266,4376_11292,Adamstown Station,105821480,0,4376_7778022_104220,4376_131 -4289_75985,267,4376_11293,Adamstown Station,106051480,0,4376_7778022_104220,4376_131 -4289_75985,268,4376_11294,Adamstown Station,106141480,0,4376_7778022_104220,4376_131 -4289_75985,269,4376_11295,Adamstown Station,106231480,0,4376_7778022_104220,4376_131 -4289_75985,259,4376_11296,Adamstown Station,105764398,0,4376_7778022_104230,4376_131 -4289_75985,270,4376_11297,Adamstown Station,105277186,0,4376_7778022_104190,4376_131 -4289_75985,146,4376_11298,Adamstown Station,105247186,0,4376_7778022_104190,4376_131 -4289_75985,271,4376_11299,Adamstown Station,105237186,0,4376_7778022_104190,4376_131 -4289_75960,261,4376_113,Sutton Station,105321544,0,4376_7778022_103501,4376_1 -4289_75961,267,4376_1130,DCU Helix,106051302,0,4376_7778022_104110,4376_14 -4289_75985,115,4376_11300,Adamstown Station,105217186,0,4376_7778022_104190,4376_131 -4289_75985,260,4376_11301,Adamstown Station,105311586,0,4376_7778022_104230,4376_131 -4289_75985,261,4376_11302,Adamstown Station,105321586,0,4376_7778022_104230,4376_131 -4289_75985,262,4376_11303,Adamstown Station,105431586,0,4376_7778022_104230,4376_131 -4289_75985,263,4376_11304,Adamstown Station,105541586,0,4376_7778022_104230,4376_131 -4289_75985,264,4376_11305,Adamstown Station,105651586,0,4376_7778022_104230,4376_131 -4289_75985,265,4376_11306,Adamstown Station,105811586,0,4376_7778022_104230,4376_131 -4289_75985,266,4376_11307,Adamstown Station,105821586,0,4376_7778022_104230,4376_131 -4289_75985,267,4376_11308,Adamstown Station,106051586,0,4376_7778022_104230,4376_131 -4289_75985,268,4376_11309,Adamstown Station,106141586,0,4376_7778022_104230,4376_131 -4289_75961,268,4376_1131,DCU Helix,106141302,0,4376_7778022_104110,4376_14 -4289_75985,269,4376_11310,Adamstown Station,106231586,0,4376_7778022_104230,4376_131 -4289_75985,259,4376_11311,Adamstown Station,105764498,0,4376_7778022_104220,4376_131 -4289_75985,270,4376_11312,Adamstown Station,105277272,0,4376_7778022_104210,4376_131 -4289_75985,146,4376_11313,Adamstown Station,105247272,0,4376_7778022_104210,4376_131 -4289_75985,271,4376_11314,Adamstown Station,105237272,0,4376_7778022_104210,4376_131 -4289_75985,115,4376_11315,Adamstown Station,105217272,0,4376_7778022_104210,4376_131 -4289_75985,260,4376_11316,Adamstown Station,105311694,0,4376_7778022_104220,4376_131 -4289_75985,261,4376_11317,Adamstown Station,105321694,0,4376_7778022_104220,4376_131 -4289_75985,262,4376_11318,Adamstown Station,105431694,0,4376_7778022_104220,4376_131 -4289_75985,263,4376_11319,Adamstown Station,105541694,0,4376_7778022_104220,4376_131 -4289_75961,269,4376_1132,DCU Helix,106231302,0,4376_7778022_104110,4376_14 -4289_75985,264,4376_11320,Adamstown Station,105651694,0,4376_7778022_104220,4376_131 -4289_75985,265,4376_11321,Adamstown Station,105811694,0,4376_7778022_104220,4376_131 -4289_75985,266,4376_11322,Adamstown Station,105821694,0,4376_7778022_104220,4376_131 -4289_75985,267,4376_11323,Adamstown Station,106051694,0,4376_7778022_104220,4376_131 -4289_75985,268,4376_11324,Adamstown Station,106141694,0,4376_7778022_104220,4376_131 -4289_75985,269,4376_11325,Adamstown Station,106231694,0,4376_7778022_104220,4376_131 -4289_75985,259,4376_11326,Adamstown Station,105764602,0,4376_7778022_104240,4376_131 -4289_75985,260,4376_11327,Adamstown Station,105311794,0,4376_7778022_104230,4376_131 -4289_75985,261,4376_11328,Adamstown Station,105321794,0,4376_7778022_104230,4376_131 -4289_75985,262,4376_11329,Adamstown Station,105431794,0,4376_7778022_104230,4376_131 -4289_75961,259,4376_1133,DCU Helix,105764188,0,4376_7778022_104150,4376_14 -4289_75985,263,4376_11330,Adamstown Station,105541794,0,4376_7778022_104230,4376_131 -4289_75985,264,4376_11331,Adamstown Station,105651794,0,4376_7778022_104230,4376_131 -4289_75985,265,4376_11332,Adamstown Station,105811794,0,4376_7778022_104230,4376_131 -4289_75985,266,4376_11333,Adamstown Station,105821794,0,4376_7778022_104230,4376_131 -4289_75985,267,4376_11334,Adamstown Station,106051794,0,4376_7778022_104230,4376_131 -4289_75985,268,4376_11335,Adamstown Station,106141794,0,4376_7778022_104230,4376_131 -4289_75985,269,4376_11336,Adamstown Station,106231794,0,4376_7778022_104230,4376_131 -4289_75985,270,4376_11337,Adamstown Station,105277366,0,4376_7778022_104200,4376_132 -4289_75985,146,4376_11338,Adamstown Station,105247366,0,4376_7778022_104200,4376_132 -4289_75985,271,4376_11339,Adamstown Station,105237366,0,4376_7778022_104200,4376_132 -4289_75961,260,4376_1134,DCU Helix,105311422,0,4376_7778022_104040,4376_14 -4289_75985,115,4376_11340,Adamstown Station,105217366,0,4376_7778022_104200,4376_132 -4289_75985,259,4376_11341,Adamstown Station,105764702,0,4376_7778022_104230,4376_131 -4289_75985,260,4376_11342,Adamstown Station,105311902,0,4376_7778022_104220,4376_131 -4289_75985,261,4376_11343,Adamstown Station,105321902,0,4376_7778022_104220,4376_131 -4289_75985,262,4376_11344,Adamstown Station,105431902,0,4376_7778022_104220,4376_131 -4289_75985,263,4376_11345,Adamstown Station,105541902,0,4376_7778022_104220,4376_131 -4289_75985,264,4376_11346,Adamstown Station,105651902,0,4376_7778022_104220,4376_131 -4289_75985,265,4376_11347,Adamstown Station,105811902,0,4376_7778022_104220,4376_131 -4289_75985,266,4376_11348,Adamstown Station,105821902,0,4376_7778022_104220,4376_131 -4289_75985,267,4376_11349,Adamstown Station,106051902,0,4376_7778022_104220,4376_131 -4289_75961,261,4376_1135,DCU Helix,105321422,0,4376_7778022_104040,4376_14 -4289_75985,268,4376_11350,Adamstown Station,106141902,0,4376_7778022_104220,4376_131 -4289_75985,269,4376_11351,Adamstown Station,106231902,0,4376_7778022_104220,4376_131 -4289_75985,270,4376_11352,Adamstown Station,105277456,0,4376_7778022_104190,4376_132 -4289_75985,146,4376_11353,Adamstown Station,105247456,0,4376_7778022_104190,4376_132 -4289_75985,271,4376_11354,Adamstown Station,105237456,0,4376_7778022_104190,4376_132 -4289_75985,115,4376_11355,Adamstown Station,105217456,0,4376_7778022_104190,4376_132 -4289_75985,259,4376_11356,Adamstown Station,105764806,0,4376_7778022_104220,4376_131 -4289_75985,260,4376_11357,Adamstown Station,105312010,0,4376_7778022_104230,4376_131 -4289_75985,261,4376_11358,Adamstown Station,105322010,0,4376_7778022_104230,4376_131 -4289_75985,262,4376_11359,Adamstown Station,105432010,0,4376_7778022_104230,4376_131 -4289_75961,262,4376_1136,DCU Helix,105431422,0,4376_7778022_104040,4376_14 -4289_75985,263,4376_11360,Adamstown Station,105542010,0,4376_7778022_104230,4376_131 -4289_75985,264,4376_11361,Adamstown Station,105652010,0,4376_7778022_104230,4376_131 -4289_75985,265,4376_11362,Adamstown Station,105812010,0,4376_7778022_104230,4376_131 -4289_75985,266,4376_11363,Adamstown Station,105822010,0,4376_7778022_104230,4376_131 -4289_75985,267,4376_11364,Adamstown Station,106052010,0,4376_7778022_104230,4376_131 -4289_75985,268,4376_11365,Adamstown Station,106142010,0,4376_7778022_104230,4376_131 -4289_75985,269,4376_11366,Adamstown Station,106232010,0,4376_7778022_104230,4376_131 -4289_75985,270,4376_11367,Adamstown Station,105277546,0,4376_7778022_104210,4376_132 -4289_75985,146,4376_11368,Adamstown Station,105247546,0,4376_7778022_104210,4376_132 -4289_75985,271,4376_11369,Adamstown Station,105237546,0,4376_7778022_104210,4376_132 -4289_75961,263,4376_1137,DCU Helix,105541422,0,4376_7778022_104040,4376_14 -4289_75985,115,4376_11370,Adamstown Station,105217546,0,4376_7778022_104210,4376_132 -4289_75985,259,4376_11371,Adamstown Station,105764912,0,4376_7778022_104240,4376_131 -4289_75985,260,4376_11372,Adamstown Station,105312148,0,4376_7778022_104220,4376_131 -4289_75985,261,4376_11373,Adamstown Station,105322148,0,4376_7778022_104220,4376_131 -4289_75985,262,4376_11374,Adamstown Station,105432148,0,4376_7778022_104220,4376_131 -4289_75985,263,4376_11375,Adamstown Station,105542148,0,4376_7778022_104220,4376_131 -4289_75985,264,4376_11376,Adamstown Station,105652148,0,4376_7778022_104220,4376_131 -4289_75985,265,4376_11377,Adamstown Station,105812148,0,4376_7778022_104220,4376_131 -4289_75985,266,4376_11378,Adamstown Station,105822148,0,4376_7778022_104220,4376_131 -4289_75985,267,4376_11379,Adamstown Station,106052148,0,4376_7778022_104220,4376_131 -4289_75961,264,4376_1138,DCU Helix,105651422,0,4376_7778022_104040,4376_14 -4289_75985,268,4376_11380,Adamstown Station,106142148,0,4376_7778022_104220,4376_131 -4289_75985,269,4376_11381,Adamstown Station,106232148,0,4376_7778022_104220,4376_131 -4289_75985,270,4376_11382,Adamstown Station,105277638,0,4376_7778022_104200,4376_132 -4289_75985,146,4376_11383,Adamstown Station,105247638,0,4376_7778022_104200,4376_132 -4289_75985,271,4376_11384,Adamstown Station,105237638,0,4376_7778022_104200,4376_132 -4289_75985,115,4376_11385,Adamstown Station,105217638,0,4376_7778022_104200,4376_132 -4289_75985,259,4376_11386,Adamstown Station,105765014,0,4376_7778022_104230,4376_131 -4289_75985,260,4376_11387,Adamstown Station,105312274,0,4376_7778022_104230,4376_131 -4289_75985,261,4376_11388,Adamstown Station,105322274,0,4376_7778022_104230,4376_131 -4289_75985,262,4376_11389,Adamstown Station,105432274,0,4376_7778022_104230,4376_131 -4289_75961,265,4376_1139,DCU Helix,105811422,0,4376_7778022_104040,4376_14 -4289_75985,263,4376_11390,Adamstown Station,105542274,0,4376_7778022_104230,4376_131 -4289_75985,264,4376_11391,Adamstown Station,105652274,0,4376_7778022_104230,4376_131 -4289_75985,265,4376_11392,Adamstown Station,105812274,0,4376_7778022_104230,4376_131 -4289_75985,266,4376_11393,Adamstown Station,105822274,0,4376_7778022_104230,4376_131 -4289_75985,267,4376_11394,Adamstown Station,106052274,0,4376_7778022_104230,4376_131 -4289_75985,268,4376_11395,Adamstown Station,106142274,0,4376_7778022_104230,4376_131 -4289_75985,269,4376_11396,Adamstown Station,106232274,0,4376_7778022_104230,4376_131 -4289_75985,270,4376_11397,Adamstown Station,105277726,0,4376_7778022_104190,4376_132 -4289_75985,146,4376_11398,Adamstown Station,105247726,0,4376_7778022_104190,4376_132 -4289_75985,271,4376_11399,Adamstown Station,105237726,0,4376_7778022_104190,4376_132 -4289_75960,262,4376_114,Sutton Station,105431544,0,4376_7778022_103501,4376_1 -4289_75961,266,4376_1140,DCU Helix,105821422,0,4376_7778022_104040,4376_14 -4289_75985,115,4376_11400,Adamstown Station,105217726,0,4376_7778022_104190,4376_132 -4289_75985,259,4376_11401,Adamstown Station,105765112,0,4376_7778022_104220,4376_131 -4289_75985,260,4376_11402,Adamstown Station,105312390,0,4376_7778022_104220,4376_131 -4289_75985,261,4376_11403,Adamstown Station,105322390,0,4376_7778022_104220,4376_131 -4289_75985,262,4376_11404,Adamstown Station,105432390,0,4376_7778022_104220,4376_131 -4289_75985,263,4376_11405,Adamstown Station,105542390,0,4376_7778022_104220,4376_131 -4289_75985,264,4376_11406,Adamstown Station,105652390,0,4376_7778022_104220,4376_131 -4289_75985,265,4376_11407,Adamstown Station,105812390,0,4376_7778022_104220,4376_131 -4289_75985,266,4376_11408,Adamstown Station,105822390,0,4376_7778022_104220,4376_131 -4289_75985,267,4376_11409,Adamstown Station,106052390,0,4376_7778022_104220,4376_131 -4289_75961,267,4376_1141,DCU Helix,106051422,0,4376_7778022_104040,4376_14 -4289_75985,268,4376_11410,Adamstown Station,106142390,0,4376_7778022_104220,4376_131 -4289_75985,269,4376_11411,Adamstown Station,106232390,0,4376_7778022_104220,4376_131 -4289_75985,270,4376_11412,Adamstown Station,105277816,0,4376_7778022_104210,4376_132 -4289_75985,146,4376_11413,Adamstown Station,105247816,0,4376_7778022_104210,4376_132 -4289_75985,271,4376_11414,Adamstown Station,105237816,0,4376_7778022_104210,4376_132 -4289_75985,115,4376_11415,Adamstown Station,105217816,0,4376_7778022_104210,4376_132 -4289_75985,259,4376_11416,Adamstown Station,105765218,0,4376_7778022_104240,4376_131 -4289_75985,260,4376_11417,Adamstown Station,105312504,0,4376_7778022_104230,4376_131 -4289_75985,261,4376_11418,Adamstown Station,105322504,0,4376_7778022_104230,4376_131 -4289_75985,262,4376_11419,Adamstown Station,105432504,0,4376_7778022_104230,4376_131 -4289_75961,268,4376_1142,DCU Helix,106141422,0,4376_7778022_104040,4376_14 -4289_75985,263,4376_11420,Adamstown Station,105542504,0,4376_7778022_104230,4376_131 -4289_75985,264,4376_11421,Adamstown Station,105652504,0,4376_7778022_104230,4376_131 -4289_75985,265,4376_11422,Adamstown Station,105812504,0,4376_7778022_104230,4376_131 -4289_75985,266,4376_11423,Adamstown Station,105822504,0,4376_7778022_104230,4376_131 -4289_75985,267,4376_11424,Adamstown Station,106052504,0,4376_7778022_104230,4376_131 -4289_75985,268,4376_11425,Adamstown Station,106142504,0,4376_7778022_104230,4376_131 -4289_75985,269,4376_11426,Adamstown Station,106232504,0,4376_7778022_104230,4376_131 -4289_75985,270,4376_11427,Adamstown Station,105277910,0,4376_7778022_104200,4376_132 -4289_75985,146,4376_11428,Adamstown Station,105247910,0,4376_7778022_104200,4376_132 -4289_75985,271,4376_11429,Adamstown Station,105237910,0,4376_7778022_104200,4376_132 -4289_75961,269,4376_1143,DCU Helix,106231422,0,4376_7778022_104040,4376_14 -4289_75985,115,4376_11430,Adamstown Station,105217910,0,4376_7778022_104200,4376_132 -4289_75985,260,4376_11431,Adamstown Station,105312612,0,4376_7778022_104220,4376_131 -4289_75985,261,4376_11432,Adamstown Station,105322612,0,4376_7778022_104220,4376_131 -4289_75985,262,4376_11433,Adamstown Station,105432612,0,4376_7778022_104220,4376_131 -4289_75985,263,4376_11434,Adamstown Station,105542612,0,4376_7778022_104220,4376_131 -4289_75985,264,4376_11435,Adamstown Station,105652612,0,4376_7778022_104220,4376_131 -4289_75985,265,4376_11436,Adamstown Station,105812612,0,4376_7778022_104220,4376_131 -4289_75985,266,4376_11437,Adamstown Station,105822612,0,4376_7778022_104220,4376_131 -4289_75985,267,4376_11438,Adamstown Station,106052612,0,4376_7778022_104220,4376_131 -4289_75985,268,4376_11439,Adamstown Station,106142612,0,4376_7778022_104220,4376_131 -4289_75961,259,4376_1144,DCU Helix,105764276,0,4376_7778022_104110,4376_14 -4289_75985,269,4376_11440,Adamstown Station,106232612,0,4376_7778022_104220,4376_131 -4289_75985,259,4376_11441,Adamstown Station,105765322,0,4376_7778022_104230,4376_132 -4289_75985,270,4376_11442,Adamstown Station,105277998,0,4376_7778022_104190,4376_133 -4289_75985,146,4376_11443,Adamstown Station,105247998,0,4376_7778022_104190,4376_133 -4289_75985,271,4376_11444,Adamstown Station,105237998,0,4376_7778022_104190,4376_133 -4289_75985,115,4376_11445,Adamstown Station,105217998,0,4376_7778022_104190,4376_133 -4289_75985,259,4376_11446,Adamstown Station,105765410,0,4376_7778022_104220,4376_131 -4289_75985,260,4376_11447,Adamstown Station,105312718,0,4376_7778022_104230,4376_131 -4289_75985,261,4376_11448,Adamstown Station,105322718,0,4376_7778022_104230,4376_131 -4289_75985,262,4376_11449,Adamstown Station,105432718,0,4376_7778022_104230,4376_131 -4289_75961,270,4376_1145,DCU Helix,105277084,0,4376_7778022_104070,4376_15 -4289_75985,263,4376_11450,Adamstown Station,105542718,0,4376_7778022_104230,4376_131 -4289_75985,264,4376_11451,Adamstown Station,105652718,0,4376_7778022_104230,4376_131 -4289_75985,265,4376_11452,Adamstown Station,105812718,0,4376_7778022_104230,4376_131 -4289_75985,266,4376_11453,Adamstown Station,105822718,0,4376_7778022_104230,4376_131 -4289_75985,267,4376_11454,Adamstown Station,106052718,0,4376_7778022_104230,4376_131 -4289_75985,268,4376_11455,Adamstown Station,106142718,0,4376_7778022_104230,4376_131 -4289_75985,269,4376_11456,Adamstown Station,106232718,0,4376_7778022_104230,4376_131 -4289_75985,270,4376_11457,Adamstown Station,105278082,0,4376_7778022_104210,4376_132 -4289_75985,146,4376_11458,Adamstown Station,105248082,0,4376_7778022_104210,4376_132 -4289_75985,271,4376_11459,Adamstown Station,105238082,0,4376_7778022_104210,4376_132 -4289_75961,146,4376_1146,DCU Helix,105247084,0,4376_7778022_104070,4376_15 -4289_75985,115,4376_11460,Adamstown Station,105218082,0,4376_7778022_104210,4376_132 -4289_75985,259,4376_11461,Adamstown Station,105765496,0,4376_7778022_104240,4376_131 -4289_75985,270,4376_11462,Adamstown Station,105278160,0,4376_7778022_104200,4376_131 -4289_75985,146,4376_11463,Adamstown Station,105248160,0,4376_7778022_104200,4376_131 -4289_75985,271,4376_11464,Adamstown Station,105238160,0,4376_7778022_104200,4376_131 -4289_75985,115,4376_11465,Adamstown Station,105218160,0,4376_7778022_104200,4376_131 -4289_75985,260,4376_11466,Adamstown Station,105312818,0,4376_7778022_104220,4376_131 -4289_75985,261,4376_11467,Adamstown Station,105322818,0,4376_7778022_104220,4376_131 -4289_75985,262,4376_11468,Adamstown Station,105432818,0,4376_7778022_104220,4376_131 -4289_75985,263,4376_11469,Adamstown Station,105542818,0,4376_7778022_104220,4376_131 -4289_75961,271,4376_1147,DCU Helix,105237084,0,4376_7778022_104070,4376_15 -4289_75985,264,4376_11470,Adamstown Station,105652818,0,4376_7778022_104220,4376_131 -4289_75985,265,4376_11471,Adamstown Station,105812818,0,4376_7778022_104220,4376_131 -4289_75985,266,4376_11472,Adamstown Station,105822818,0,4376_7778022_104220,4376_131 -4289_75985,267,4376_11473,Adamstown Station,106052818,0,4376_7778022_104220,4376_131 -4289_75985,268,4376_11474,Adamstown Station,106142818,0,4376_7778022_104220,4376_131 -4289_75985,269,4376_11475,Adamstown Station,106232818,0,4376_7778022_104220,4376_131 -4289_75985,259,4376_11476,Adamstown Station,105765578,0,4376_7778022_104230,4376_131 -4289_75985,270,4376_11477,Adamstown Station,105278234,0,4376_7778022_104190,4376_131 -4289_75985,146,4376_11478,Adamstown Station,105248234,0,4376_7778022_104190,4376_131 -4289_75985,271,4376_11479,Adamstown Station,105238234,0,4376_7778022_104190,4376_131 -4289_75961,115,4376_1148,DCU Helix,105217084,0,4376_7778022_104070,4376_15 -4289_75985,115,4376_11480,Adamstown Station,105218234,0,4376_7778022_104190,4376_131 -4289_75985,260,4376_11481,Adamstown Station,105312912,0,4376_7778022_104230,4376_131 -4289_75985,261,4376_11482,Adamstown Station,105322912,0,4376_7778022_104230,4376_131 -4289_75985,262,4376_11483,Adamstown Station,105432912,0,4376_7778022_104230,4376_131 -4289_75985,263,4376_11484,Adamstown Station,105542912,0,4376_7778022_104230,4376_131 -4289_75985,264,4376_11485,Adamstown Station,105652912,0,4376_7778022_104230,4376_131 -4289_75985,265,4376_11486,Adamstown Station,105812912,0,4376_7778022_104230,4376_131 -4289_75985,266,4376_11487,Adamstown Station,105822912,0,4376_7778022_104230,4376_131 -4289_75985,267,4376_11488,Adamstown Station,106052912,0,4376_7778022_104230,4376_131 -4289_75985,268,4376_11489,Adamstown Station,106142912,0,4376_7778022_104230,4376_131 -4289_75961,260,4376_1149,DCU Helix,105311552,0,4376_7778022_104140,4376_14 -4289_75985,269,4376_11490,Adamstown Station,106232912,0,4376_7778022_104230,4376_131 -4289_75985,259,4376_11491,Adamstown Station,105765652,0,4376_7778022_104220,4376_131 -4289_75985,270,4376_11492,Adamstown Station,105278298,0,4376_7778022_104210,4376_131 -4289_75985,146,4376_11493,Adamstown Station,105248298,0,4376_7778022_104210,4376_131 -4289_75985,271,4376_11494,Adamstown Station,105238298,0,4376_7778022_104210,4376_131 -4289_75985,115,4376_11495,Adamstown Station,105218298,0,4376_7778022_104210,4376_131 -4289_75985,260,4376_11496,Adamstown Station,105312988,0,4376_7778022_104220,4376_131 -4289_75985,261,4376_11497,Adamstown Station,105322988,0,4376_7778022_104220,4376_131 -4289_75985,262,4376_11498,Adamstown Station,105432988,0,4376_7778022_104220,4376_131 -4289_75985,263,4376_11499,Adamstown Station,105542988,0,4376_7778022_104220,4376_131 -4289_75960,263,4376_115,Sutton Station,105541544,0,4376_7778022_103501,4376_1 -4289_75961,261,4376_1150,DCU Helix,105321552,0,4376_7778022_104140,4376_14 -4289_75985,264,4376_11500,Adamstown Station,105652988,0,4376_7778022_104220,4376_131 -4289_75985,265,4376_11501,Adamstown Station,105812988,0,4376_7778022_104220,4376_131 -4289_75985,266,4376_11502,Adamstown Station,105822988,0,4376_7778022_104220,4376_131 -4289_75985,267,4376_11503,Adamstown Station,106052988,0,4376_7778022_104220,4376_131 -4289_75985,268,4376_11504,Adamstown Station,106142988,0,4376_7778022_104220,4376_131 -4289_75985,269,4376_11505,Adamstown Station,106232988,0,4376_7778022_104220,4376_131 -4289_75985,259,4376_11506,Blanchardstown,105764045,1,4376_7778022_104230,4376_134 -4289_75985,260,4376_11507,Blanchardstown,105311071,1,4376_7778022_104220,4376_134 -4289_75985,261,4376_11508,Blanchardstown,105321071,1,4376_7778022_104220,4376_134 -4289_75985,262,4376_11509,Blanchardstown,105431071,1,4376_7778022_104220,4376_134 -4289_75961,262,4376_1151,DCU Helix,105431552,0,4376_7778022_104140,4376_14 -4289_75985,263,4376_11510,Blanchardstown,105541071,1,4376_7778022_104220,4376_134 -4289_75985,264,4376_11511,Blanchardstown,105651071,1,4376_7778022_104220,4376_134 -4289_75985,265,4376_11512,Blanchardstown,105811071,1,4376_7778022_104220,4376_134 -4289_75985,266,4376_11513,Blanchardstown,105821071,1,4376_7778022_104220,4376_134 -4289_75985,267,4376_11514,Blanchardstown,106051071,1,4376_7778022_104220,4376_134 -4289_75985,268,4376_11515,Blanchardstown,106141071,1,4376_7778022_104220,4376_134 -4289_75985,269,4376_11516,Blanchardstown,106231071,1,4376_7778022_104220,4376_134 -4289_75985,260,4376_11517,Blanchardstown,105311195,1,4376_7778022_104230,4376_134 -4289_75985,261,4376_11518,Blanchardstown,105321195,1,4376_7778022_104230,4376_134 -4289_75985,262,4376_11519,Blanchardstown,105431195,1,4376_7778022_104230,4376_134 -4289_75961,263,4376_1152,DCU Helix,105541552,0,4376_7778022_104140,4376_14 -4289_75985,263,4376_11520,Blanchardstown,105541195,1,4376_7778022_104230,4376_134 -4289_75985,264,4376_11521,Blanchardstown,105651195,1,4376_7778022_104230,4376_134 -4289_75985,265,4376_11522,Blanchardstown,105811195,1,4376_7778022_104230,4376_134 -4289_75985,266,4376_11523,Blanchardstown,105821195,1,4376_7778022_104230,4376_134 -4289_75985,267,4376_11524,Blanchardstown,106051195,1,4376_7778022_104230,4376_134 -4289_75985,268,4376_11525,Blanchardstown,106141195,1,4376_7778022_104230,4376_134 -4289_75985,269,4376_11526,Blanchardstown,106231195,1,4376_7778022_104230,4376_134 -4289_75985,259,4376_11527,Blanchardstown,105764123,1,4376_7778022_104220,4376_135 -4289_75985,270,4376_11528,Blanchardstown,105277037,1,4376_7778022_104200,4376_134 -4289_75985,146,4376_11529,Blanchardstown,105247037,1,4376_7778022_104200,4376_134 -4289_75961,264,4376_1153,DCU Helix,105651552,0,4376_7778022_104140,4376_14 -4289_75985,271,4376_11530,Blanchardstown,105237037,1,4376_7778022_104200,4376_134 -4289_75985,115,4376_11531,Blanchardstown,105217037,1,4376_7778022_104200,4376_134 -4289_75985,260,4376_11532,Blanchardstown,105311331,1,4376_7778022_104220,4376_134 -4289_75985,261,4376_11533,Blanchardstown,105321331,1,4376_7778022_104220,4376_134 -4289_75985,262,4376_11534,Blanchardstown,105431331,1,4376_7778022_104220,4376_134 -4289_75985,263,4376_11535,Blanchardstown,105541331,1,4376_7778022_104220,4376_134 -4289_75985,264,4376_11536,Blanchardstown,105651331,1,4376_7778022_104220,4376_134 -4289_75985,265,4376_11537,Blanchardstown,105811331,1,4376_7778022_104220,4376_134 -4289_75985,266,4376_11538,Blanchardstown,105821331,1,4376_7778022_104220,4376_134 -4289_75985,267,4376_11539,Blanchardstown,106051331,1,4376_7778022_104220,4376_134 -4289_75961,265,4376_1154,DCU Helix,105811552,0,4376_7778022_104140,4376_14 -4289_75985,268,4376_11540,Blanchardstown,106141331,1,4376_7778022_104220,4376_134 -4289_75985,269,4376_11541,Blanchardstown,106231331,1,4376_7778022_104220,4376_134 -4289_75985,259,4376_11542,Blanchardstown,105764209,1,4376_7778022_104240,4376_135 -4289_75985,260,4376_11543,Blanchardstown,105311441,1,4376_7778022_104230,4376_134 -4289_75985,261,4376_11544,Blanchardstown,105321441,1,4376_7778022_104230,4376_134 -4289_75985,262,4376_11545,Blanchardstown,105431441,1,4376_7778022_104230,4376_134 -4289_75985,263,4376_11546,Blanchardstown,105541441,1,4376_7778022_104230,4376_134 -4289_75985,264,4376_11547,Blanchardstown,105651441,1,4376_7778022_104230,4376_134 -4289_75985,265,4376_11548,Blanchardstown,105811441,1,4376_7778022_104230,4376_134 -4289_75985,266,4376_11549,Blanchardstown,105821441,1,4376_7778022_104230,4376_134 -4289_75961,266,4376_1155,DCU Helix,105821552,0,4376_7778022_104140,4376_14 -4289_75985,267,4376_11550,Blanchardstown,106051441,1,4376_7778022_104230,4376_134 -4289_75985,268,4376_11551,Blanchardstown,106141441,1,4376_7778022_104230,4376_134 -4289_75985,269,4376_11552,Blanchardstown,106231441,1,4376_7778022_104230,4376_134 -4289_75985,259,4376_11553,Blanchardstown,105764303,1,4376_7778022_104230,4376_135 -4289_75985,270,4376_11554,Blanchardstown,105277111,1,4376_7778022_104190,4376_136 -4289_75985,146,4376_11555,Blanchardstown,105247111,1,4376_7778022_104190,4376_136 -4289_75985,271,4376_11556,Blanchardstown,105237111,1,4376_7778022_104190,4376_136 -4289_75985,115,4376_11557,Blanchardstown,105217111,1,4376_7778022_104190,4376_136 -4289_75985,260,4376_11558,Blanchardstown,105311551,1,4376_7778022_104220,4376_134 -4289_75985,261,4376_11559,Blanchardstown,105321551,1,4376_7778022_104220,4376_134 -4289_75961,267,4376_1156,DCU Helix,106051552,0,4376_7778022_104140,4376_14 -4289_75985,262,4376_11560,Blanchardstown,105431551,1,4376_7778022_104220,4376_134 -4289_75985,263,4376_11561,Blanchardstown,105541551,1,4376_7778022_104220,4376_134 -4289_75985,264,4376_11562,Blanchardstown,105651551,1,4376_7778022_104220,4376_134 -4289_75985,265,4376_11563,Blanchardstown,105811551,1,4376_7778022_104220,4376_134 -4289_75985,266,4376_11564,Blanchardstown,105821551,1,4376_7778022_104220,4376_134 -4289_75985,267,4376_11565,Blanchardstown,106051551,1,4376_7778022_104220,4376_134 -4289_75985,268,4376_11566,Blanchardstown,106141551,1,4376_7778022_104220,4376_134 -4289_75985,269,4376_11567,Blanchardstown,106231551,1,4376_7778022_104220,4376_134 -4289_75985,259,4376_11568,Blanchardstown,105764405,1,4376_7778022_104220,4376_135 -4289_75985,270,4376_11569,Blanchardstown,105277199,1,4376_7778022_104210,4376_136 -4289_75961,268,4376_1157,DCU Helix,106141552,0,4376_7778022_104140,4376_14 -4289_75985,146,4376_11570,Blanchardstown,105247199,1,4376_7778022_104210,4376_136 -4289_75985,271,4376_11571,Blanchardstown,105237199,1,4376_7778022_104210,4376_136 -4289_75985,115,4376_11572,Blanchardstown,105217199,1,4376_7778022_104210,4376_136 -4289_75985,260,4376_11573,Blanchardstown,105311657,1,4376_7778022_104230,4376_134 -4289_75985,261,4376_11574,Blanchardstown,105321657,1,4376_7778022_104230,4376_134 -4289_75985,262,4376_11575,Blanchardstown,105431657,1,4376_7778022_104230,4376_134 -4289_75985,263,4376_11576,Blanchardstown,105541657,1,4376_7778022_104230,4376_134 -4289_75985,264,4376_11577,Blanchardstown,105651657,1,4376_7778022_104230,4376_134 -4289_75985,265,4376_11578,Blanchardstown,105811657,1,4376_7778022_104230,4376_134 -4289_75985,266,4376_11579,Blanchardstown,105821657,1,4376_7778022_104230,4376_134 -4289_75961,269,4376_1158,DCU Helix,106231552,0,4376_7778022_104140,4376_14 -4289_75985,267,4376_11580,Blanchardstown,106051657,1,4376_7778022_104230,4376_134 -4289_75985,268,4376_11581,Blanchardstown,106141657,1,4376_7778022_104230,4376_134 -4289_75985,269,4376_11582,Blanchardstown,106231657,1,4376_7778022_104230,4376_134 -4289_75985,259,4376_11583,Blanchardstown,105764503,1,4376_7778022_104240,4376_135 -4289_75985,270,4376_11584,Blanchardstown,105277297,1,4376_7778022_104200,4376_134 -4289_75985,146,4376_11585,Blanchardstown,105247297,1,4376_7778022_104200,4376_134 -4289_75985,271,4376_11586,Blanchardstown,105237297,1,4376_7778022_104200,4376_134 -4289_75985,115,4376_11587,Blanchardstown,105217297,1,4376_7778022_104200,4376_134 -4289_75985,260,4376_11588,Blanchardstown,105311769,1,4376_7778022_104220,4376_134 -4289_75985,261,4376_11589,Blanchardstown,105321769,1,4376_7778022_104220,4376_134 -4289_75961,259,4376_1159,DCU Helix,105764374,0,4376_7778022_104080,4376_15 -4289_75985,262,4376_11590,Blanchardstown,105431769,1,4376_7778022_104220,4376_134 -4289_75985,263,4376_11591,Blanchardstown,105541769,1,4376_7778022_104220,4376_134 -4289_75985,264,4376_11592,Blanchardstown,105651769,1,4376_7778022_104220,4376_134 -4289_75985,265,4376_11593,Blanchardstown,105811769,1,4376_7778022_104220,4376_134 -4289_75985,266,4376_11594,Blanchardstown,105821769,1,4376_7778022_104220,4376_134 -4289_75985,267,4376_11595,Blanchardstown,106051769,1,4376_7778022_104220,4376_134 -4289_75985,268,4376_11596,Blanchardstown,106141769,1,4376_7778022_104220,4376_134 -4289_75985,269,4376_11597,Blanchardstown,106231769,1,4376_7778022_104220,4376_134 -4289_75985,259,4376_11598,Blanchardstown,105764611,1,4376_7778022_104230,4376_135 -4289_75985,270,4376_11599,Blanchardstown,105277387,1,4376_7778022_104190,4376_134 -4289_75960,264,4376_116,Sutton Station,105651544,0,4376_7778022_103501,4376_1 -4289_75961,270,4376_1160,DCU Helix,105277158,0,4376_7778022_104100,4376_17 -4289_75985,146,4376_11600,Blanchardstown,105247387,1,4376_7778022_104190,4376_134 -4289_75985,271,4376_11601,Blanchardstown,105237387,1,4376_7778022_104190,4376_134 -4289_75985,115,4376_11602,Blanchardstown,105217387,1,4376_7778022_104190,4376_134 -4289_75985,260,4376_11603,Blanchardstown,105311883,1,4376_7778022_104230,4376_134 -4289_75985,261,4376_11604,Blanchardstown,105321883,1,4376_7778022_104230,4376_134 -4289_75985,262,4376_11605,Blanchardstown,105431883,1,4376_7778022_104230,4376_134 -4289_75985,263,4376_11606,Blanchardstown,105541883,1,4376_7778022_104230,4376_134 -4289_75985,264,4376_11607,Blanchardstown,105651883,1,4376_7778022_104230,4376_134 -4289_75985,265,4376_11608,Blanchardstown,105811883,1,4376_7778022_104230,4376_134 -4289_75985,266,4376_11609,Blanchardstown,105821883,1,4376_7778022_104230,4376_134 -4289_75961,146,4376_1161,DCU Helix,105247158,0,4376_7778022_104100,4376_17 -4289_75985,267,4376_11610,Blanchardstown,106051883,1,4376_7778022_104230,4376_134 -4289_75985,268,4376_11611,Blanchardstown,106141883,1,4376_7778022_104230,4376_134 -4289_75985,269,4376_11612,Blanchardstown,106231883,1,4376_7778022_104230,4376_134 -4289_75985,259,4376_11613,Blanchardstown,105764709,1,4376_7778022_104220,4376_135 -4289_75985,270,4376_11614,Blanchardstown,105277479,1,4376_7778022_104210,4376_134 -4289_75985,146,4376_11615,Blanchardstown,105247479,1,4376_7778022_104210,4376_134 -4289_75985,271,4376_11616,Blanchardstown,105237479,1,4376_7778022_104210,4376_134 -4289_75985,115,4376_11617,Blanchardstown,105217479,1,4376_7778022_104210,4376_134 -4289_75985,260,4376_11618,Blanchardstown,105311991,1,4376_7778022_104220,4376_134 -4289_75985,261,4376_11619,Blanchardstown,105321991,1,4376_7778022_104220,4376_134 -4289_75961,271,4376_1162,DCU Helix,105237158,0,4376_7778022_104100,4376_17 -4289_75985,262,4376_11620,Blanchardstown,105431991,1,4376_7778022_104220,4376_134 -4289_75985,263,4376_11621,Blanchardstown,105541991,1,4376_7778022_104220,4376_134 -4289_75985,264,4376_11622,Blanchardstown,105651991,1,4376_7778022_104220,4376_134 -4289_75985,265,4376_11623,Blanchardstown,105811991,1,4376_7778022_104220,4376_134 -4289_75985,266,4376_11624,Blanchardstown,105821991,1,4376_7778022_104220,4376_134 -4289_75985,267,4376_11625,Blanchardstown,106051991,1,4376_7778022_104220,4376_134 -4289_75985,268,4376_11626,Blanchardstown,106141991,1,4376_7778022_104220,4376_134 -4289_75985,269,4376_11627,Blanchardstown,106231991,1,4376_7778022_104220,4376_134 -4289_75985,259,4376_11628,Blanchardstown,105764811,1,4376_7778022_104240,4376_135 -4289_75985,270,4376_11629,Blanchardstown,105277567,1,4376_7778022_104200,4376_134 -4289_75961,115,4376_1163,DCU Helix,105217158,0,4376_7778022_104100,4376_17 -4289_75985,146,4376_11630,Blanchardstown,105247567,1,4376_7778022_104200,4376_134 -4289_75985,271,4376_11631,Blanchardstown,105237567,1,4376_7778022_104200,4376_134 -4289_75985,115,4376_11632,Blanchardstown,105217567,1,4376_7778022_104200,4376_134 -4289_75985,260,4376_11633,Blanchardstown,105312107,1,4376_7778022_104230,4376_134 -4289_75985,261,4376_11634,Blanchardstown,105322107,1,4376_7778022_104230,4376_134 -4289_75985,262,4376_11635,Blanchardstown,105432107,1,4376_7778022_104230,4376_134 -4289_75985,263,4376_11636,Blanchardstown,105542107,1,4376_7778022_104230,4376_134 -4289_75985,264,4376_11637,Blanchardstown,105652107,1,4376_7778022_104230,4376_134 -4289_75985,265,4376_11638,Blanchardstown,105812107,1,4376_7778022_104230,4376_134 -4289_75985,266,4376_11639,Blanchardstown,105822107,1,4376_7778022_104230,4376_134 -4289_75961,260,4376_1164,DCU Helix,105311660,0,4376_7778022_104080,4376_14 -4289_75985,267,4376_11640,Blanchardstown,106052107,1,4376_7778022_104230,4376_134 -4289_75985,268,4376_11641,Blanchardstown,106142107,1,4376_7778022_104230,4376_134 -4289_75985,269,4376_11642,Blanchardstown,106232107,1,4376_7778022_104230,4376_134 -4289_75985,259,4376_11643,Blanchardstown,105764913,1,4376_7778022_104230,4376_135 -4289_75985,270,4376_11644,Blanchardstown,105277659,1,4376_7778022_104190,4376_134 -4289_75985,146,4376_11645,Blanchardstown,105247659,1,4376_7778022_104190,4376_134 -4289_75985,271,4376_11646,Blanchardstown,105237659,1,4376_7778022_104190,4376_134 -4289_75985,115,4376_11647,Blanchardstown,105217659,1,4376_7778022_104190,4376_134 -4289_75985,260,4376_11648,Blanchardstown,105312267,1,4376_7778022_104220,4376_134 -4289_75985,261,4376_11649,Blanchardstown,105322267,1,4376_7778022_104220,4376_134 -4289_75961,261,4376_1165,DCU Helix,105321660,0,4376_7778022_104080,4376_14 -4289_75985,262,4376_11650,Blanchardstown,105432267,1,4376_7778022_104220,4376_134 -4289_75985,263,4376_11651,Blanchardstown,105542267,1,4376_7778022_104220,4376_134 -4289_75985,264,4376_11652,Blanchardstown,105652267,1,4376_7778022_104220,4376_134 -4289_75985,265,4376_11653,Blanchardstown,105812267,1,4376_7778022_104220,4376_134 -4289_75985,266,4376_11654,Blanchardstown,105822267,1,4376_7778022_104220,4376_134 -4289_75985,267,4376_11655,Blanchardstown,106052267,1,4376_7778022_104220,4376_134 -4289_75985,268,4376_11656,Blanchardstown,106142267,1,4376_7778022_104220,4376_134 -4289_75985,269,4376_11657,Blanchardstown,106232267,1,4376_7778022_104220,4376_134 -4289_75985,259,4376_11658,Blanchardstown,105765015,1,4376_7778022_104220,4376_135 -4289_75985,270,4376_11659,Blanchardstown,105277749,1,4376_7778022_104210,4376_134 -4289_75961,262,4376_1166,DCU Helix,105431660,0,4376_7778022_104080,4376_14 -4289_75985,146,4376_11660,Blanchardstown,105247749,1,4376_7778022_104210,4376_134 -4289_75985,271,4376_11661,Blanchardstown,105237749,1,4376_7778022_104210,4376_134 -4289_75985,115,4376_11662,Blanchardstown,105217749,1,4376_7778022_104210,4376_134 -4289_75985,260,4376_11663,Blanchardstown,105312383,1,4376_7778022_104230,4376_134 -4289_75985,261,4376_11664,Blanchardstown,105322383,1,4376_7778022_104230,4376_134 -4289_75985,262,4376_11665,Blanchardstown,105432383,1,4376_7778022_104230,4376_134 -4289_75985,263,4376_11666,Blanchardstown,105542383,1,4376_7778022_104230,4376_134 -4289_75985,264,4376_11667,Blanchardstown,105652383,1,4376_7778022_104230,4376_134 -4289_75985,265,4376_11668,Blanchardstown,105812383,1,4376_7778022_104230,4376_134 -4289_75985,266,4376_11669,Blanchardstown,105822383,1,4376_7778022_104230,4376_134 -4289_75961,263,4376_1167,DCU Helix,105541660,0,4376_7778022_104080,4376_14 -4289_75985,267,4376_11670,Blanchardstown,106052383,1,4376_7778022_104230,4376_134 -4289_75985,268,4376_11671,Blanchardstown,106142383,1,4376_7778022_104230,4376_134 -4289_75985,269,4376_11672,Blanchardstown,106232383,1,4376_7778022_104230,4376_134 -4289_75985,259,4376_11673,Blanchardstown,105765117,1,4376_7778022_104240,4376_135 -4289_75985,270,4376_11674,Blanchardstown,105277837,1,4376_7778022_104200,4376_134 -4289_75985,146,4376_11675,Blanchardstown,105247837,1,4376_7778022_104200,4376_134 -4289_75985,271,4376_11676,Blanchardstown,105237837,1,4376_7778022_104200,4376_134 -4289_75985,115,4376_11677,Blanchardstown,105217837,1,4376_7778022_104200,4376_134 -4289_75985,260,4376_11678,Blanchardstown,105312499,1,4376_7778022_104220,4376_134 -4289_75985,261,4376_11679,Blanchardstown,105322499,1,4376_7778022_104220,4376_134 -4289_75961,264,4376_1168,DCU Helix,105651660,0,4376_7778022_104080,4376_14 -4289_75985,262,4376_11680,Blanchardstown,105432499,1,4376_7778022_104220,4376_134 -4289_75985,263,4376_11681,Blanchardstown,105542499,1,4376_7778022_104220,4376_134 -4289_75985,264,4376_11682,Blanchardstown,105652499,1,4376_7778022_104220,4376_134 -4289_75985,265,4376_11683,Blanchardstown,105812499,1,4376_7778022_104220,4376_134 -4289_75985,266,4376_11684,Blanchardstown,105822499,1,4376_7778022_104220,4376_134 -4289_75985,267,4376_11685,Blanchardstown,106052499,1,4376_7778022_104220,4376_134 -4289_75985,268,4376_11686,Blanchardstown,106142499,1,4376_7778022_104220,4376_134 -4289_75985,269,4376_11687,Blanchardstown,106232499,1,4376_7778022_104220,4376_134 -4289_75985,259,4376_11688,Blanchardstown,105765219,1,4376_7778022_104230,4376_135 -4289_75985,270,4376_11689,Blanchardstown,105277923,1,4376_7778022_104190,4376_134 -4289_75961,265,4376_1169,DCU Helix,105811660,0,4376_7778022_104080,4376_14 -4289_75985,146,4376_11690,Blanchardstown,105247923,1,4376_7778022_104190,4376_134 -4289_75985,271,4376_11691,Blanchardstown,105237923,1,4376_7778022_104190,4376_134 -4289_75985,115,4376_11692,Blanchardstown,105217923,1,4376_7778022_104190,4376_134 -4289_75985,260,4376_11693,Blanchardstown,105312607,1,4376_7778022_104230,4376_134 -4289_75985,261,4376_11694,Blanchardstown,105322607,1,4376_7778022_104230,4376_134 -4289_75985,262,4376_11695,Blanchardstown,105432607,1,4376_7778022_104230,4376_134 -4289_75985,263,4376_11696,Blanchardstown,105542607,1,4376_7778022_104230,4376_134 -4289_75985,264,4376_11697,Blanchardstown,105652607,1,4376_7778022_104230,4376_134 -4289_75985,265,4376_11698,Blanchardstown,105812607,1,4376_7778022_104230,4376_134 -4289_75985,266,4376_11699,Blanchardstown,105822607,1,4376_7778022_104230,4376_134 -4289_75960,265,4376_117,Sutton Station,105811544,0,4376_7778022_103501,4376_1 -4289_75961,266,4376_1170,DCU Helix,105821660,0,4376_7778022_104080,4376_14 -4289_75985,267,4376_11700,Blanchardstown,106052607,1,4376_7778022_104230,4376_134 -4289_75985,268,4376_11701,Blanchardstown,106142607,1,4376_7778022_104230,4376_134 -4289_75985,269,4376_11702,Blanchardstown,106232607,1,4376_7778022_104230,4376_134 -4289_75985,259,4376_11703,Blanchardstown,105765319,1,4376_7778022_104220,4376_135 -4289_75985,270,4376_11704,Blanchardstown,105278007,1,4376_7778022_104210,4376_134 -4289_75985,146,4376_11705,Blanchardstown,105248007,1,4376_7778022_104210,4376_134 -4289_75985,271,4376_11706,Blanchardstown,105238007,1,4376_7778022_104210,4376_134 -4289_75985,115,4376_11707,Blanchardstown,105218007,1,4376_7778022_104210,4376_134 -4289_75985,260,4376_11708,Blanchardstown,105312701,1,4376_7778022_104220,4376_134 -4289_75985,261,4376_11709,Blanchardstown,105322701,1,4376_7778022_104220,4376_134 -4289_75961,267,4376_1171,DCU Helix,106051660,0,4376_7778022_104080,4376_14 -4289_75985,262,4376_11710,Blanchardstown,105432701,1,4376_7778022_104220,4376_134 -4289_75985,263,4376_11711,Blanchardstown,105542701,1,4376_7778022_104220,4376_134 -4289_75985,264,4376_11712,Blanchardstown,105652701,1,4376_7778022_104220,4376_134 -4289_75985,265,4376_11713,Blanchardstown,105812701,1,4376_7778022_104220,4376_134 -4289_75985,266,4376_11714,Blanchardstown,105822701,1,4376_7778022_104220,4376_134 -4289_75985,267,4376_11715,Blanchardstown,106052701,1,4376_7778022_104220,4376_134 -4289_75985,268,4376_11716,Blanchardstown,106142701,1,4376_7778022_104220,4376_134 -4289_75985,269,4376_11717,Blanchardstown,106232701,1,4376_7778022_104220,4376_134 -4289_75985,259,4376_11718,Blanchardstown,105765403,1,4376_7778022_104240,4376_135 -4289_75985,270,4376_11719,Blanchardstown,105278089,1,4376_7778022_104200,4376_134 -4289_75961,268,4376_1172,DCU Helix,106141660,0,4376_7778022_104080,4376_14 -4289_75985,146,4376_11720,Blanchardstown,105248089,1,4376_7778022_104200,4376_134 -4289_75985,271,4376_11721,Blanchardstown,105238089,1,4376_7778022_104200,4376_134 -4289_75985,115,4376_11722,Blanchardstown,105218089,1,4376_7778022_104200,4376_134 -4289_75985,260,4376_11723,Blanchardstown,105312799,1,4376_7778022_104230,4376_134 -4289_75985,261,4376_11724,Blanchardstown,105322799,1,4376_7778022_104230,4376_134 -4289_75985,262,4376_11725,Blanchardstown,105432799,1,4376_7778022_104230,4376_134 -4289_75985,263,4376_11726,Blanchardstown,105542799,1,4376_7778022_104230,4376_134 -4289_75985,264,4376_11727,Blanchardstown,105652799,1,4376_7778022_104230,4376_134 -4289_75985,265,4376_11728,Blanchardstown,105812799,1,4376_7778022_104230,4376_134 -4289_75985,266,4376_11729,Blanchardstown,105822799,1,4376_7778022_104230,4376_134 -4289_75961,269,4376_1173,DCU Helix,106231660,0,4376_7778022_104080,4376_14 -4289_75985,267,4376_11730,Blanchardstown,106052799,1,4376_7778022_104230,4376_134 -4289_75985,268,4376_11731,Blanchardstown,106142799,1,4376_7778022_104230,4376_134 -4289_75985,269,4376_11732,Blanchardstown,106232799,1,4376_7778022_104230,4376_134 -4289_75985,259,4376_11733,Blanchardstown,105765491,1,4376_7778022_104230,4376_135 -4289_75985,270,4376_11734,Blanchardstown,105278157,1,4376_7778022_104190,4376_136 -4289_75985,146,4376_11735,Blanchardstown,105248157,1,4376_7778022_104190,4376_136 -4289_75985,271,4376_11736,Blanchardstown,105238157,1,4376_7778022_104190,4376_136 -4289_75985,115,4376_11737,Blanchardstown,105218157,1,4376_7778022_104190,4376_136 -4289_75985,260,4376_11738,Blanchardstown,105312895,1,4376_7778022_104220,4376_134 -4289_75985,261,4376_11739,Blanchardstown,105322895,1,4376_7778022_104220,4376_134 -4289_75961,259,4376_1174,DCU Helix,105764480,0,4376_7778022_104100,4376_15 -4289_75985,262,4376_11740,Blanchardstown,105432895,1,4376_7778022_104220,4376_134 -4289_75985,263,4376_11741,Blanchardstown,105542895,1,4376_7778022_104220,4376_134 -4289_75985,264,4376_11742,Blanchardstown,105652895,1,4376_7778022_104220,4376_134 -4289_75985,265,4376_11743,Blanchardstown,105812895,1,4376_7778022_104220,4376_134 -4289_75985,266,4376_11744,Blanchardstown,105822895,1,4376_7778022_104220,4376_134 -4289_75985,267,4376_11745,Blanchardstown,106052895,1,4376_7778022_104220,4376_134 -4289_75985,268,4376_11746,Blanchardstown,106142895,1,4376_7778022_104220,4376_134 -4289_75985,269,4376_11747,Blanchardstown,106232895,1,4376_7778022_104220,4376_134 -4289_75985,259,4376_11748,Blanchardstown,105765577,1,4376_7778022_104220,4376_135 -4289_75985,270,4376_11749,Blanchardstown,105278235,1,4376_7778022_104210,4376_136 -4289_75961,270,4376_1175,DCU Helix,105277248,0,4376_7778022_104080,4376_17 -4289_75985,146,4376_11750,Blanchardstown,105248235,1,4376_7778022_104210,4376_136 -4289_75985,271,4376_11751,Blanchardstown,105238235,1,4376_7778022_104210,4376_136 -4289_75985,115,4376_11752,Blanchardstown,105218235,1,4376_7778022_104210,4376_136 -4289_75985,260,4376_11753,Blanchardstown,105312977,1,4376_7778022_104230,4376_134 -4289_75985,261,4376_11754,Blanchardstown,105322977,1,4376_7778022_104230,4376_134 -4289_75985,262,4376_11755,Blanchardstown,105432977,1,4376_7778022_104230,4376_134 -4289_75985,263,4376_11756,Blanchardstown,105542977,1,4376_7778022_104230,4376_134 -4289_75985,264,4376_11757,Blanchardstown,105652977,1,4376_7778022_104230,4376_134 -4289_75985,265,4376_11758,Blanchardstown,105812977,1,4376_7778022_104230,4376_134 -4289_75985,266,4376_11759,Blanchardstown,105822977,1,4376_7778022_104230,4376_134 -4289_75961,146,4376_1176,DCU Helix,105247248,0,4376_7778022_104080,4376_17 -4289_75985,267,4376_11760,Blanchardstown,106052977,1,4376_7778022_104230,4376_134 -4289_75985,268,4376_11761,Blanchardstown,106142977,1,4376_7778022_104230,4376_134 -4289_75985,269,4376_11762,Blanchardstown,106232977,1,4376_7778022_104230,4376_134 -4289_75985,259,4376_11763,Blanchardstown,105765653,1,4376_7778022_104240,4376_135 -4289_75985,270,4376_11764,Blanchardstown,105278305,1,4376_7778022_104200,4376_136 -4289_75985,146,4376_11765,Blanchardstown,105248305,1,4376_7778022_104200,4376_136 -4289_75985,271,4376_11766,Blanchardstown,105238305,1,4376_7778022_104200,4376_136 -4289_75985,115,4376_11767,Blanchardstown,105218305,1,4376_7778022_104200,4376_136 -4289_75986,260,4376_11768,Chapelizod,105311168,0,4376_7778022_104250,4376_137 -4289_75986,261,4376_11769,Chapelizod,105321168,0,4376_7778022_104250,4376_137 -4289_75961,271,4376_1177,DCU Helix,105237248,0,4376_7778022_104080,4376_17 -4289_75986,262,4376_11770,Chapelizod,105431168,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11771,Chapelizod,105541168,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11772,Chapelizod,105651168,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11773,Chapelizod,105811168,0,4376_7778022_104250,4376_137 -4289_75986,266,4376_11774,Chapelizod,105821168,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11775,Chapelizod,106051168,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11776,Chapelizod,106141168,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11777,Chapelizod,106231168,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11778,Chapelizod,105764112,0,4376_7778022_104250,4376_137 -4289_75986,260,4376_11779,Chapelizod,105311336,0,4376_7778022_104250,4376_137 -4289_75961,115,4376_1178,DCU Helix,105217248,0,4376_7778022_104080,4376_17 -4289_75986,261,4376_11780,Chapelizod,105321336,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11781,Chapelizod,105431336,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11782,Chapelizod,105541336,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11783,Chapelizod,105651336,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11784,Chapelizod,105811336,0,4376_7778022_104250,4376_137 -4289_75986,266,4376_11785,Chapelizod,105821336,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11786,Chapelizod,106051336,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11787,Chapelizod,106141336,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11788,Chapelizod,106231336,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11789,Chapelizod,105764196,0,4376_7778022_104250,4376_137 -4289_75961,260,4376_1179,DCU Helix,105311764,0,4376_7778022_104170,4376_14 -4289_75986,270,4376_11790,Chapelizod,105277034,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11791,Chapelizod,105247034,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11792,Chapelizod,105237034,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11793,Chapelizod,105217034,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11794,Chapelizod,105311460,0,4376_7778022_104250,4376_137 -4289_75986,261,4376_11795,Chapelizod,105321460,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11796,Chapelizod,105431460,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11797,Chapelizod,105541460,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11798,Chapelizod,105651460,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11799,Chapelizod,105811460,0,4376_7778022_104250,4376_137 -4289_75960,266,4376_118,Sutton Station,105821544,0,4376_7778022_103501,4376_1 -4289_75961,261,4376_1180,DCU Helix,105321764,0,4376_7778022_104170,4376_14 -4289_75986,266,4376_11800,Chapelizod,105821460,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11801,Chapelizod,106051460,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11802,Chapelizod,106141460,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11803,Chapelizod,106231460,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11804,Chapelizod,105764286,0,4376_7778022_104250,4376_137 -4289_75986,270,4376_11805,Chapelizod,105277094,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11806,Chapelizod,105247094,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11807,Chapelizod,105237094,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11808,Chapelizod,105217094,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11809,Chapelizod,105311564,0,4376_7778022_104250,4376_137 -4289_75961,262,4376_1181,DCU Helix,105431764,0,4376_7778022_104170,4376_14 -4289_75986,261,4376_11810,Chapelizod,105321564,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11811,Chapelizod,105431564,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11812,Chapelizod,105541564,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11813,Chapelizod,105651564,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11814,Chapelizod,105811564,0,4376_7778022_104250,4376_137 -4289_75986,266,4376_11815,Chapelizod,105821564,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11816,Chapelizod,106051564,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11817,Chapelizod,106141564,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11818,Chapelizod,106231564,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11819,Chapelizod,105764390,0,4376_7778022_104250,4376_137 -4289_75961,263,4376_1182,DCU Helix,105541764,0,4376_7778022_104170,4376_14 -4289_75986,270,4376_11820,Chapelizod,105277170,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11821,Chapelizod,105247170,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11822,Chapelizod,105237170,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11823,Chapelizod,105217170,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11824,Chapelizod,105311672,0,4376_7778022_104250,4376_137 -4289_75986,261,4376_11825,Chapelizod,105321672,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11826,Chapelizod,105431672,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11827,Chapelizod,105541672,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11828,Chapelizod,105651672,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11829,Chapelizod,105811672,0,4376_7778022_104250,4376_137 -4289_75961,264,4376_1183,DCU Helix,105651764,0,4376_7778022_104170,4376_14 -4289_75986,266,4376_11830,Chapelizod,105821672,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11831,Chapelizod,106051672,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11832,Chapelizod,106141672,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11833,Chapelizod,106231672,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11834,Chapelizod,105764492,0,4376_7778022_104250,4376_137 -4289_75986,270,4376_11835,Chapelizod,105277264,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11836,Chapelizod,105247264,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11837,Chapelizod,105237264,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11838,Chapelizod,105217264,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11839,Chapelizod,105311780,0,4376_7778022_104250,4376_137 -4289_75961,265,4376_1184,DCU Helix,105811764,0,4376_7778022_104170,4376_14 -4289_75986,261,4376_11840,Chapelizod,105321780,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11841,Chapelizod,105431780,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11842,Chapelizod,105541780,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11843,Chapelizod,105651780,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11844,Chapelizod,105811780,0,4376_7778022_104250,4376_137 -4289_75986,266,4376_11845,Chapelizod,105821780,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11846,Chapelizod,106051780,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11847,Chapelizod,106141780,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11848,Chapelizod,106231780,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11849,Chapelizod,105764596,0,4376_7778022_104250,4376_137 -4289_75961,266,4376_1185,DCU Helix,105821764,0,4376_7778022_104170,4376_14 -4289_75986,270,4376_11850,Chapelizod,105277354,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11851,Chapelizod,105247354,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11852,Chapelizod,105237354,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11853,Chapelizod,105217354,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11854,Chapelizod,105311888,0,4376_7778022_104250,4376_137 -4289_75986,261,4376_11855,Chapelizod,105321888,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11856,Chapelizod,105431888,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11857,Chapelizod,105541888,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11858,Chapelizod,105651888,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11859,Chapelizod,105811888,0,4376_7778022_104250,4376_137 -4289_75961,267,4376_1186,DCU Helix,106051764,0,4376_7778022_104170,4376_14 -4289_75986,266,4376_11860,Chapelizod,105821888,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11861,Chapelizod,106051888,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11862,Chapelizod,106141888,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11863,Chapelizod,106231888,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11864,Chapelizod,105764698,0,4376_7778022_104250,4376_137 -4289_75986,270,4376_11865,Chapelizod,105277444,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11866,Chapelizod,105247444,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11867,Chapelizod,105237444,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11868,Chapelizod,105217444,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11869,Chapelizod,105311998,0,4376_7778022_104250,4376_137 -4289_75961,268,4376_1187,DCU Helix,106141764,0,4376_7778022_104170,4376_14 -4289_75986,261,4376_11870,Chapelizod,105321998,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11871,Chapelizod,105431998,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11872,Chapelizod,105541998,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11873,Chapelizod,105651998,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11874,Chapelizod,105811998,0,4376_7778022_104250,4376_137 -4289_75986,266,4376_11875,Chapelizod,105821998,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11876,Chapelizod,106051998,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11877,Chapelizod,106141998,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11878,Chapelizod,106231998,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11879,Chapelizod,105764800,0,4376_7778022_104250,4376_137 -4289_75961,269,4376_1188,DCU Helix,106231764,0,4376_7778022_104170,4376_14 -4289_75986,270,4376_11880,Chapelizod,105277536,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11881,Chapelizod,105247536,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11882,Chapelizod,105237536,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11883,Chapelizod,105217536,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11884,Chapelizod,105312130,0,4376_7778022_104250,4376_137 -4289_75986,261,4376_11885,Chapelizod,105322130,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11886,Chapelizod,105432130,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11887,Chapelizod,105542130,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11888,Chapelizod,105652130,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11889,Chapelizod,105812130,0,4376_7778022_104250,4376_137 -4289_75961,259,4376_1189,DCU Helix,105764582,0,4376_7778022_104090,4376_15 -4289_75986,266,4376_11890,Chapelizod,105822130,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11891,Chapelizod,106052130,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11892,Chapelizod,106142130,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11893,Chapelizod,106232130,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11894,Chapelizod,105764904,0,4376_7778022_104250,4376_137 -4289_75986,270,4376_11895,Chapelizod,105277628,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11896,Chapelizod,105247628,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11897,Chapelizod,105237628,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11898,Chapelizod,105217628,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11899,Chapelizod,105312254,0,4376_7778022_104250,4376_137 -4289_75960,267,4376_119,Sutton Station,106051544,0,4376_7778022_103501,4376_1 -4289_75961,270,4376_1190,DCU Helix,105277338,0,4376_7778022_104051,4376_17 -4289_75986,261,4376_11900,Chapelizod,105322254,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11901,Chapelizod,105432254,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11902,Chapelizod,105542254,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11903,Chapelizod,105652254,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11904,Chapelizod,105812254,0,4376_7778022_104250,4376_137 -4289_75986,266,4376_11905,Chapelizod,105822254,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11906,Chapelizod,106052254,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11907,Chapelizod,106142254,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11908,Chapelizod,106232254,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11909,Chapelizod,105765004,0,4376_7778022_104250,4376_137 -4289_75961,146,4376_1191,DCU Helix,105247338,0,4376_7778022_104051,4376_17 -4289_75986,270,4376_11910,Chapelizod,105277716,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11911,Chapelizod,105247716,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11912,Chapelizod,105237716,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11913,Chapelizod,105217716,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11914,Chapelizod,105312370,0,4376_7778022_104250,4376_137 -4289_75986,261,4376_11915,Chapelizod,105322370,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11916,Chapelizod,105432370,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11917,Chapelizod,105542370,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11918,Chapelizod,105652370,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11919,Chapelizod,105812370,0,4376_7778022_104250,4376_137 -4289_75961,271,4376_1192,DCU Helix,105237338,0,4376_7778022_104051,4376_17 -4289_75986,266,4376_11920,Chapelizod,105822370,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11921,Chapelizod,106052370,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11922,Chapelizod,106142370,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11923,Chapelizod,106232370,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11924,Chapelizod,105765104,0,4376_7778022_104250,4376_137 -4289_75986,270,4376_11925,Chapelizod,105277802,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11926,Chapelizod,105247802,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11927,Chapelizod,105237802,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11928,Chapelizod,105217802,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11929,Chapelizod,105312486,0,4376_7778022_104250,4376_137 -4289_75961,115,4376_1193,DCU Helix,105217338,0,4376_7778022_104051,4376_17 -4289_75986,261,4376_11930,Chapelizod,105322486,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11931,Chapelizod,105432486,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11932,Chapelizod,105542486,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11933,Chapelizod,105652486,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11934,Chapelizod,105812486,0,4376_7778022_104250,4376_137 -4289_75986,266,4376_11935,Chapelizod,105822486,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11936,Chapelizod,106052486,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11937,Chapelizod,106142486,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11938,Chapelizod,106232486,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11939,Chapelizod,105765208,0,4376_7778022_104250,4376_137 -4289_75961,260,4376_1194,DCU Helix,105311874,0,4376_7778022_104190,4376_14 -4289_75986,270,4376_11940,Chapelizod,105277894,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11941,Chapelizod,105247894,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11942,Chapelizod,105237894,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11943,Chapelizod,105217894,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11944,Chapelizod,105312594,0,4376_7778022_104250,4376_137 -4289_75986,261,4376_11945,Chapelizod,105322594,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11946,Chapelizod,105432594,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11947,Chapelizod,105542594,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11948,Chapelizod,105652594,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11949,Chapelizod,105812594,0,4376_7778022_104250,4376_137 -4289_75961,261,4376_1195,DCU Helix,105321874,0,4376_7778022_104190,4376_14 -4289_75986,266,4376_11950,Chapelizod,105822594,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11951,Chapelizod,106052594,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11952,Chapelizod,106142594,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11953,Chapelizod,106232594,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11954,Chapelizod,105765310,0,4376_7778022_104250,4376_137 -4289_75986,270,4376_11955,Chapelizod,105277984,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11956,Chapelizod,105247984,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11957,Chapelizod,105237984,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11958,Chapelizod,105217984,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11959,Chapelizod,105312698,0,4376_7778022_104250,4376_137 -4289_75961,262,4376_1196,DCU Helix,105431874,0,4376_7778022_104190,4376_14 -4289_75986,261,4376_11960,Chapelizod,105322698,0,4376_7778022_104250,4376_137 -4289_75986,262,4376_11961,Chapelizod,105432698,0,4376_7778022_104250,4376_137 -4289_75986,263,4376_11962,Chapelizod,105542698,0,4376_7778022_104250,4376_137 -4289_75986,264,4376_11963,Chapelizod,105652698,0,4376_7778022_104250,4376_137 -4289_75986,265,4376_11964,Chapelizod,105812698,0,4376_7778022_104250,4376_137 -4289_75986,266,4376_11965,Chapelizod,105822698,0,4376_7778022_104250,4376_137 -4289_75986,267,4376_11966,Chapelizod,106052698,0,4376_7778022_104250,4376_137 -4289_75986,268,4376_11967,Chapelizod,106142698,0,4376_7778022_104250,4376_137 -4289_75986,269,4376_11968,Chapelizod,106232698,0,4376_7778022_104250,4376_137 -4289_75986,259,4376_11969,Chapelizod,105765396,0,4376_7778022_104250,4376_137 -4289_75961,263,4376_1197,DCU Helix,105541874,0,4376_7778022_104190,4376_14 -4289_75986,270,4376_11970,Chapelizod,105278064,0,4376_7778022_104220,4376_137 -4289_75986,146,4376_11971,Chapelizod,105248064,0,4376_7778022_104220,4376_137 -4289_75986,271,4376_11972,Chapelizod,105238064,0,4376_7778022_104220,4376_137 -4289_75986,115,4376_11973,Chapelizod,105218064,0,4376_7778022_104220,4376_137 -4289_75986,260,4376_11974,Palmerstown,105311201,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_11975,Palmerstown,105321201,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_11976,Palmerstown,105431201,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_11977,Palmerstown,105541201,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_11978,Palmerstown,105651201,1,4376_7778022_104250,4376_138 -4289_75986,265,4376_11979,Palmerstown,105811201,1,4376_7778022_104250,4376_138 -4289_75961,264,4376_1198,DCU Helix,105651874,0,4376_7778022_104190,4376_14 -4289_75986,266,4376_11980,Palmerstown,105821201,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_11981,Palmerstown,106051201,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_11982,Palmerstown,106141201,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_11983,Palmerstown,106231201,1,4376_7778022_104250,4376_138 -4289_75986,259,4376_11984,Palmerstown,105764131,1,4376_7778022_104250,4376_138 -4289_75986,260,4376_11985,Palmerstown,105311341,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_11986,Palmerstown,105321341,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_11987,Palmerstown,105431341,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_11988,Palmerstown,105541341,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_11989,Palmerstown,105651341,1,4376_7778022_104250,4376_138 -4289_75961,265,4376_1199,DCU Helix,105811874,0,4376_7778022_104190,4376_14 -4289_75986,265,4376_11990,Palmerstown,105811341,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_11991,Palmerstown,105821341,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_11992,Palmerstown,106051341,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_11993,Palmerstown,106141341,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_11994,Palmerstown,106231341,1,4376_7778022_104250,4376_138 -4289_75986,259,4376_11995,Palmerstown,105764215,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_11996,Palmerstown,105277051,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_11997,Palmerstown,105247051,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_11998,Palmerstown,105237051,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_11999,Palmerstown,105217051,1,4376_7778022_104220,4376_138 -4289_75960,259,4376_12,Sutton Station,105764042,0,4376_7778022_103502,4376_1 -4289_75960,268,4376_120,Sutton Station,106141544,0,4376_7778022_103501,4376_1 -4289_75961,266,4376_1200,DCU Helix,105821874,0,4376_7778022_104190,4376_14 -4289_75986,260,4376_12000,Palmerstown,105311449,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12001,Palmerstown,105321449,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12002,Palmerstown,105431449,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12003,Palmerstown,105541449,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12004,Palmerstown,105651449,1,4376_7778022_104250,4376_138 -4289_75986,265,4376_12005,Palmerstown,105811449,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12006,Palmerstown,105821449,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12007,Palmerstown,106051449,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12008,Palmerstown,106141449,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12009,Palmerstown,106231449,1,4376_7778022_104250,4376_138 -4289_75961,267,4376_1201,DCU Helix,106051874,0,4376_7778022_104190,4376_14 -4289_75986,259,4376_12010,Palmerstown,105764311,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12011,Palmerstown,105277123,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12012,Palmerstown,105247123,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12013,Palmerstown,105237123,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12014,Palmerstown,105217123,1,4376_7778022_104220,4376_138 -4289_75986,260,4376_12015,Palmerstown,105311559,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12016,Palmerstown,105321559,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12017,Palmerstown,105431559,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12018,Palmerstown,105541559,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12019,Palmerstown,105651559,1,4376_7778022_104250,4376_138 -4289_75961,268,4376_1202,DCU Helix,106141874,0,4376_7778022_104190,4376_14 -4289_75986,265,4376_12020,Palmerstown,105811559,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12021,Palmerstown,105821559,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12022,Palmerstown,106051559,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12023,Palmerstown,106141559,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12024,Palmerstown,106231559,1,4376_7778022_104250,4376_138 -4289_75986,259,4376_12025,Palmerstown,105764413,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12026,Palmerstown,105277207,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12027,Palmerstown,105247207,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12028,Palmerstown,105237207,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12029,Palmerstown,105217207,1,4376_7778022_104220,4376_138 -4289_75961,269,4376_1203,DCU Helix,106231874,0,4376_7778022_104190,4376_14 -4289_75986,260,4376_12030,Palmerstown,105311667,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12031,Palmerstown,105321667,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12032,Palmerstown,105431667,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12033,Palmerstown,105541667,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12034,Palmerstown,105651667,1,4376_7778022_104250,4376_138 -4289_75986,265,4376_12035,Palmerstown,105811667,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12036,Palmerstown,105821667,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12037,Palmerstown,106051667,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12038,Palmerstown,106141667,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12039,Palmerstown,106231667,1,4376_7778022_104250,4376_138 -4289_75961,259,4376_1204,DCU Helix,105764684,0,4376_7778022_104150,4376_15 -4289_75986,259,4376_12040,Palmerstown,105764515,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12041,Palmerstown,105277295,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12042,Palmerstown,105247295,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12043,Palmerstown,105237295,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12044,Palmerstown,105217295,1,4376_7778022_104220,4376_138 -4289_75986,260,4376_12045,Palmerstown,105311775,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12046,Palmerstown,105321775,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12047,Palmerstown,105431775,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12048,Palmerstown,105541775,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12049,Palmerstown,105651775,1,4376_7778022_104250,4376_138 -4289_75961,270,4376_1205,DCU Helix,105277432,0,4376_7778022_104130,4376_17 -4289_75986,265,4376_12050,Palmerstown,105811775,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12051,Palmerstown,105821775,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12052,Palmerstown,106051775,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12053,Palmerstown,106141775,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12054,Palmerstown,106231775,1,4376_7778022_104250,4376_138 -4289_75986,259,4376_12055,Palmerstown,105764619,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12056,Palmerstown,105277385,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12057,Palmerstown,105247385,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12058,Palmerstown,105237385,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12059,Palmerstown,105217385,1,4376_7778022_104220,4376_138 -4289_75961,146,4376_1206,DCU Helix,105247432,0,4376_7778022_104130,4376_17 -4289_75986,260,4376_12060,Palmerstown,105311891,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12061,Palmerstown,105321891,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12062,Palmerstown,105431891,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12063,Palmerstown,105541891,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12064,Palmerstown,105651891,1,4376_7778022_104250,4376_138 -4289_75986,265,4376_12065,Palmerstown,105811891,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12066,Palmerstown,105821891,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12067,Palmerstown,106051891,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12068,Palmerstown,106141891,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12069,Palmerstown,106231891,1,4376_7778022_104250,4376_138 -4289_75961,271,4376_1207,DCU Helix,105237432,0,4376_7778022_104130,4376_17 -4289_75986,259,4376_12070,Palmerstown,105764721,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12071,Palmerstown,105277475,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12072,Palmerstown,105247475,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12073,Palmerstown,105237475,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12074,Palmerstown,105217475,1,4376_7778022_104220,4376_138 -4289_75986,260,4376_12075,Palmerstown,105311999,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12076,Palmerstown,105321999,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12077,Palmerstown,105431999,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12078,Palmerstown,105541999,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12079,Palmerstown,105651999,1,4376_7778022_104250,4376_138 -4289_75961,115,4376_1208,DCU Helix,105217432,0,4376_7778022_104130,4376_17 -4289_75986,265,4376_12080,Palmerstown,105811999,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12081,Palmerstown,105821999,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12082,Palmerstown,106051999,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12083,Palmerstown,106141999,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12084,Palmerstown,106231999,1,4376_7778022_104250,4376_138 -4289_75986,259,4376_12085,Palmerstown,105764821,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12086,Palmerstown,105277563,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12087,Palmerstown,105247563,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12088,Palmerstown,105237563,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12089,Palmerstown,105217563,1,4376_7778022_104220,4376_138 -4289_75961,260,4376_1209,DCU Helix,105311984,0,4376_7778022_104060,4376_14 -4289_75986,260,4376_12090,Palmerstown,105312117,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12091,Palmerstown,105322117,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12092,Palmerstown,105432117,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12093,Palmerstown,105542117,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12094,Palmerstown,105652117,1,4376_7778022_104250,4376_138 -4289_75986,265,4376_12095,Palmerstown,105812117,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12096,Palmerstown,105822117,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12097,Palmerstown,106052117,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12098,Palmerstown,106142117,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12099,Palmerstown,106232117,1,4376_7778022_104250,4376_138 -4289_75960,269,4376_121,Sutton Station,106231544,0,4376_7778022_103501,4376_1 -4289_75961,261,4376_1210,DCU Helix,105321984,0,4376_7778022_104060,4376_14 -4289_75986,259,4376_12100,Palmerstown,105764925,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12101,Palmerstown,105277655,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12102,Palmerstown,105247655,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12103,Palmerstown,105237655,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12104,Palmerstown,105217655,1,4376_7778022_104220,4376_138 -4289_75986,260,4376_12105,Palmerstown,105312277,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12106,Palmerstown,105322277,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12107,Palmerstown,105432277,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12108,Palmerstown,105542277,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12109,Palmerstown,105652277,1,4376_7778022_104250,4376_138 -4289_75961,262,4376_1211,DCU Helix,105431984,0,4376_7778022_104060,4376_14 -4289_75986,265,4376_12110,Palmerstown,105812277,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12111,Palmerstown,105822277,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12112,Palmerstown,106052277,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12113,Palmerstown,106142277,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12114,Palmerstown,106232277,1,4376_7778022_104250,4376_138 -4289_75986,259,4376_12115,Palmerstown,105765027,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12116,Palmerstown,105277745,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12117,Palmerstown,105247745,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12118,Palmerstown,105237745,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12119,Palmerstown,105217745,1,4376_7778022_104220,4376_138 -4289_75961,263,4376_1212,DCU Helix,105541984,0,4376_7778022_104060,4376_14 -4289_75986,260,4376_12120,Palmerstown,105312395,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12121,Palmerstown,105322395,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12122,Palmerstown,105432395,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12123,Palmerstown,105542395,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12124,Palmerstown,105652395,1,4376_7778022_104250,4376_138 -4289_75986,265,4376_12125,Palmerstown,105812395,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12126,Palmerstown,105822395,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12127,Palmerstown,106052395,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12128,Palmerstown,106142395,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12129,Palmerstown,106232395,1,4376_7778022_104250,4376_138 -4289_75961,264,4376_1213,DCU Helix,105651984,0,4376_7778022_104060,4376_14 -4289_75986,259,4376_12130,Palmerstown,105765127,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12131,Palmerstown,105277833,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12132,Palmerstown,105247833,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12133,Palmerstown,105237833,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12134,Palmerstown,105217833,1,4376_7778022_104220,4376_138 -4289_75986,260,4376_12135,Palmerstown,105312507,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12136,Palmerstown,105322507,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12137,Palmerstown,105432507,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12138,Palmerstown,105542507,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12139,Palmerstown,105652507,1,4376_7778022_104250,4376_138 -4289_75961,265,4376_1214,DCU Helix,105811984,0,4376_7778022_104060,4376_14 -4289_75986,265,4376_12140,Palmerstown,105812507,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12141,Palmerstown,105822507,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12142,Palmerstown,106052507,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12143,Palmerstown,106142507,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12144,Palmerstown,106232507,1,4376_7778022_104250,4376_138 -4289_75986,259,4376_12145,Palmerstown,105765229,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12146,Palmerstown,105277921,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12147,Palmerstown,105247921,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12148,Palmerstown,105237921,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12149,Palmerstown,105217921,1,4376_7778022_104220,4376_138 -4289_75961,266,4376_1215,DCU Helix,105821984,0,4376_7778022_104060,4376_14 -4289_75986,260,4376_12150,Palmerstown,105312611,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12151,Palmerstown,105322611,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12152,Palmerstown,105432611,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12153,Palmerstown,105542611,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12154,Palmerstown,105652611,1,4376_7778022_104250,4376_138 -4289_75986,265,4376_12155,Palmerstown,105812611,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12156,Palmerstown,105822611,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12157,Palmerstown,106052611,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12158,Palmerstown,106142611,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12159,Palmerstown,106232611,1,4376_7778022_104250,4376_138 -4289_75961,267,4376_1216,DCU Helix,106051984,0,4376_7778022_104060,4376_14 -4289_75986,259,4376_12160,Palmerstown,105765321,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12161,Palmerstown,105278005,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12162,Palmerstown,105248005,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12163,Palmerstown,105238005,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12164,Palmerstown,105218005,1,4376_7778022_104220,4376_138 -4289_75986,260,4376_12165,Palmerstown,105312709,1,4376_7778022_104250,4376_138 -4289_75986,261,4376_12166,Palmerstown,105322709,1,4376_7778022_104250,4376_138 -4289_75986,262,4376_12167,Palmerstown,105432709,1,4376_7778022_104250,4376_138 -4289_75986,263,4376_12168,Palmerstown,105542709,1,4376_7778022_104250,4376_138 -4289_75986,264,4376_12169,Palmerstown,105652709,1,4376_7778022_104250,4376_138 -4289_75961,268,4376_1217,DCU Helix,106141984,0,4376_7778022_104060,4376_14 -4289_75986,265,4376_12170,Palmerstown,105812709,1,4376_7778022_104250,4376_138 -4289_75986,266,4376_12171,Palmerstown,105822709,1,4376_7778022_104250,4376_138 -4289_75986,267,4376_12172,Palmerstown,106052709,1,4376_7778022_104250,4376_138 -4289_75986,268,4376_12173,Palmerstown,106142709,1,4376_7778022_104250,4376_138 -4289_75986,269,4376_12174,Palmerstown,106232709,1,4376_7778022_104250,4376_138 -4289_75986,259,4376_12175,Palmerstown,105765409,1,4376_7778022_104250,4376_138 -4289_75986,270,4376_12176,Palmerstown,105278085,1,4376_7778022_104220,4376_138 -4289_75986,146,4376_12177,Palmerstown,105248085,1,4376_7778022_104220,4376_138 -4289_75986,271,4376_12178,Palmerstown,105238085,1,4376_7778022_104220,4376_138 -4289_75986,115,4376_12179,Palmerstown,105218085,1,4376_7778022_104220,4376_138 -4289_75961,269,4376_1218,DCU Helix,106231984,0,4376_7778022_104060,4376_14 -4289_75976,260,4376_12180,Heuston Station,105311008,0,4376_7778022_101111,4376_139 -4289_75976,261,4376_12181,Heuston Station,105321008,0,4376_7778022_101111,4376_139 -4289_75976,262,4376_12182,Heuston Station,105431008,0,4376_7778022_101111,4376_139 -4289_75976,263,4376_12183,Heuston Station,105541008,0,4376_7778022_101111,4376_139 -4289_75976,264,4376_12184,Heuston Station,105651008,0,4376_7778022_101111,4376_139 -4289_75976,265,4376_12185,Heuston Station,105811008,0,4376_7778022_101111,4376_139 -4289_75976,266,4376_12186,Heuston Station,105821008,0,4376_7778022_101111,4376_139 -4289_75976,267,4376_12187,Heuston Station,106051008,0,4376_7778022_101111,4376_139 -4289_75976,268,4376_12188,Heuston Station,106141008,0,4376_7778022_101111,4376_139 -4289_75976,269,4376_12189,Heuston Station,106231008,0,4376_7778022_101111,4376_139 -4289_75961,259,4376_1219,DCU Helix,105764788,0,4376_7778022_104171,4376_15 -4289_75976,259,4376_12190,Heuston Station,105764006,0,4376_7778022_100860,4376_140 -4289_75976,260,4376_12191,Heuston Station,105311022,0,4376_7778022_101140,4376_139 -4289_75976,261,4376_12192,Heuston Station,105321022,0,4376_7778022_101140,4376_139 -4289_75976,262,4376_12193,Heuston Station,105431022,0,4376_7778022_101140,4376_139 -4289_75976,263,4376_12194,Heuston Station,105541022,0,4376_7778022_101140,4376_139 -4289_75976,264,4376_12195,Heuston Station,105651022,0,4376_7778022_101140,4376_139 -4289_75976,265,4376_12196,Heuston Station,105811022,0,4376_7778022_101140,4376_139 -4289_75976,266,4376_12197,Heuston Station,105821022,0,4376_7778022_101140,4376_139 -4289_75976,267,4376_12198,Heuston Station,106051022,0,4376_7778022_101140,4376_139 -4289_75976,268,4376_12199,Heuston Station,106141022,0,4376_7778022_101140,4376_139 -4289_75960,259,4376_122,Sutton Station,105764368,0,4376_7778022_103101,4376_2 -4289_75961,270,4376_1220,DCU Helix,105277520,0,4376_7778022_104070,4376_17 -4289_75976,269,4376_12200,Heuston Station,106231022,0,4376_7778022_101140,4376_139 -4289_75976,259,4376_12201,Heuston Station,105764026,0,4376_7778022_100870,4376_139 -4289_75976,260,4376_12202,Heuston Station,105311054,0,4376_7778022_101120,4376_139 -4289_75976,261,4376_12203,Heuston Station,105321054,0,4376_7778022_101120,4376_139 -4289_75976,262,4376_12204,Heuston Station,105431054,0,4376_7778022_101120,4376_139 -4289_75976,263,4376_12205,Heuston Station,105541054,0,4376_7778022_101120,4376_139 -4289_75976,264,4376_12206,Heuston Station,105651054,0,4376_7778022_101120,4376_139 -4289_75976,265,4376_12207,Heuston Station,105811054,0,4376_7778022_101120,4376_139 -4289_75976,266,4376_12208,Heuston Station,105821054,0,4376_7778022_101120,4376_139 -4289_75976,267,4376_12209,Heuston Station,106051054,0,4376_7778022_101120,4376_139 -4289_75961,146,4376_1221,DCU Helix,105247520,0,4376_7778022_104070,4376_17 -4289_75976,268,4376_12210,Heuston Station,106141054,0,4376_7778022_101120,4376_139 -4289_75976,269,4376_12211,Heuston Station,106231054,0,4376_7778022_101120,4376_139 -4289_75976,260,4376_12212,Heuston Station,105311084,0,4376_7778022_101131,4376_139 -4289_75976,261,4376_12213,Heuston Station,105321084,0,4376_7778022_101131,4376_139 -4289_75976,262,4376_12214,Heuston Station,105431084,0,4376_7778022_101131,4376_139 -4289_75976,263,4376_12215,Heuston Station,105541084,0,4376_7778022_101131,4376_139 -4289_75976,264,4376_12216,Heuston Station,105651084,0,4376_7778022_101131,4376_139 -4289_75976,265,4376_12217,Heuston Station,105811084,0,4376_7778022_101131,4376_139 -4289_75976,266,4376_12218,Heuston Station,105821084,0,4376_7778022_101131,4376_139 -4289_75976,267,4376_12219,Heuston Station,106051084,0,4376_7778022_101131,4376_139 -4289_75961,271,4376_1222,DCU Helix,105237520,0,4376_7778022_104070,4376_17 -4289_75976,268,4376_12220,Heuston Station,106141084,0,4376_7778022_101131,4376_139 -4289_75976,269,4376_12221,Heuston Station,106231084,0,4376_7778022_101131,4376_139 -4289_75976,259,4376_12222,Heuston Station,105764056,0,4376_7778022_100890,4376_140 -4289_75976,260,4376_12223,Heuston Station,105311126,0,4376_7778022_101160,4376_139 -4289_75976,261,4376_12224,Heuston Station,105321126,0,4376_7778022_101160,4376_139 -4289_75976,262,4376_12225,Heuston Station,105431126,0,4376_7778022_101160,4376_139 -4289_75976,263,4376_12226,Heuston Station,105541126,0,4376_7778022_101160,4376_139 -4289_75976,264,4376_12227,Heuston Station,105651126,0,4376_7778022_101160,4376_139 -4289_75976,265,4376_12228,Heuston Station,105811126,0,4376_7778022_101160,4376_139 -4289_75976,266,4376_12229,Heuston Station,105821126,0,4376_7778022_101160,4376_139 -4289_75961,115,4376_1223,DCU Helix,105217520,0,4376_7778022_104070,4376_17 -4289_75976,267,4376_12230,Heuston Station,106051126,0,4376_7778022_101160,4376_139 -4289_75976,268,4376_12231,Heuston Station,106141126,0,4376_7778022_101160,4376_139 -4289_75976,269,4376_12232,Heuston Station,106231126,0,4376_7778022_101160,4376_139 -4289_75976,260,4376_12233,Heuston Station,105311154,0,4376_7778022_101151,4376_139 -4289_75976,261,4376_12234,Heuston Station,105321154,0,4376_7778022_101151,4376_139 -4289_75976,262,4376_12235,Heuston Station,105431154,0,4376_7778022_101151,4376_139 -4289_75976,263,4376_12236,Heuston Station,105541154,0,4376_7778022_101151,4376_139 -4289_75976,264,4376_12237,Heuston Station,105651154,0,4376_7778022_101151,4376_139 -4289_75976,265,4376_12238,Heuston Station,105811154,0,4376_7778022_101151,4376_139 -4289_75976,266,4376_12239,Heuston Station,105821154,0,4376_7778022_101151,4376_139 -4289_75961,260,4376_1224,DCU Helix,105312110,0,4376_7778022_104110,4376_14 -4289_75976,267,4376_12240,Heuston Station,106051154,0,4376_7778022_101151,4376_139 -4289_75976,268,4376_12241,Heuston Station,106141154,0,4376_7778022_101151,4376_139 -4289_75976,269,4376_12242,Heuston Station,106231154,0,4376_7778022_101151,4376_139 -4289_75976,259,4376_12243,Heuston Station,105764100,0,4376_7778022_100880,4376_140 -4289_75976,260,4376_12244,Heuston Station,105311192,0,4376_7778022_101111,4376_139 -4289_75976,261,4376_12245,Heuston Station,105321192,0,4376_7778022_101111,4376_139 -4289_75976,262,4376_12246,Heuston Station,105431192,0,4376_7778022_101111,4376_139 -4289_75976,263,4376_12247,Heuston Station,105541192,0,4376_7778022_101111,4376_139 -4289_75976,264,4376_12248,Heuston Station,105651192,0,4376_7778022_101111,4376_139 -4289_75976,265,4376_12249,Heuston Station,105811192,0,4376_7778022_101111,4376_139 -4289_75961,261,4376_1225,DCU Helix,105322110,0,4376_7778022_104110,4376_14 -4289_75976,266,4376_12250,Heuston Station,105821192,0,4376_7778022_101111,4376_139 -4289_75976,267,4376_12251,Heuston Station,106051192,0,4376_7778022_101111,4376_139 -4289_75976,268,4376_12252,Heuston Station,106141192,0,4376_7778022_101111,4376_139 -4289_75976,269,4376_12253,Heuston Station,106231192,0,4376_7778022_101111,4376_139 -4289_75976,270,4376_12254,Heuston Station,105277006,0,4376_7778022_100680,4376_139 -4289_75976,146,4376_12255,Heuston Station,105247006,0,4376_7778022_100680,4376_139 -4289_75976,271,4376_12256,Heuston Station,105237006,0,4376_7778022_100680,4376_139 -4289_75976,115,4376_12257,Heuston Station,105217006,0,4376_7778022_100680,4376_139 -4289_75976,260,4376_12258,Heuston Station,105311236,0,4376_7778022_101180,4376_139 -4289_75976,261,4376_12259,Heuston Station,105321236,0,4376_7778022_101180,4376_139 -4289_75961,262,4376_1226,DCU Helix,105432110,0,4376_7778022_104110,4376_14 -4289_75976,262,4376_12260,Heuston Station,105431236,0,4376_7778022_101180,4376_139 -4289_75976,263,4376_12261,Heuston Station,105541236,0,4376_7778022_101180,4376_139 -4289_75976,264,4376_12262,Heuston Station,105651236,0,4376_7778022_101180,4376_139 -4289_75976,265,4376_12263,Heuston Station,105811236,0,4376_7778022_101180,4376_139 -4289_75976,266,4376_12264,Heuston Station,105821236,0,4376_7778022_101180,4376_139 -4289_75976,267,4376_12265,Heuston Station,106051236,0,4376_7778022_101180,4376_139 -4289_75976,268,4376_12266,Heuston Station,106141236,0,4376_7778022_101180,4376_139 -4289_75976,269,4376_12267,Heuston Station,106231236,0,4376_7778022_101180,4376_139 -4289_75976,259,4376_12268,Heuston Station,105764142,0,4376_7778022_100860,4376_140 -4289_75976,260,4376_12269,Heuston Station,105311296,0,4376_7778022_101140,4376_139 -4289_75961,263,4376_1227,DCU Helix,105542110,0,4376_7778022_104110,4376_14 -4289_75976,261,4376_12270,Heuston Station,105321296,0,4376_7778022_101140,4376_139 -4289_75976,262,4376_12271,Heuston Station,105431296,0,4376_7778022_101140,4376_139 -4289_75976,263,4376_12272,Heuston Station,105541296,0,4376_7778022_101140,4376_139 -4289_75976,264,4376_12273,Heuston Station,105651296,0,4376_7778022_101140,4376_139 -4289_75976,265,4376_12274,Heuston Station,105811296,0,4376_7778022_101140,4376_139 -4289_75976,266,4376_12275,Heuston Station,105821296,0,4376_7778022_101140,4376_139 -4289_75976,267,4376_12276,Heuston Station,106051296,0,4376_7778022_101140,4376_139 -4289_75976,268,4376_12277,Heuston Station,106141296,0,4376_7778022_101140,4376_139 -4289_75976,269,4376_12278,Heuston Station,106231296,0,4376_7778022_101140,4376_139 -4289_75976,260,4376_12279,Heuston Station,105311326,0,4376_7778022_101170,4376_139 -4289_75961,264,4376_1228,DCU Helix,105652110,0,4376_7778022_104110,4376_14 -4289_75976,261,4376_12280,Heuston Station,105321326,0,4376_7778022_101170,4376_139 -4289_75976,262,4376_12281,Heuston Station,105431326,0,4376_7778022_101170,4376_139 -4289_75976,263,4376_12282,Heuston Station,105541326,0,4376_7778022_101170,4376_139 -4289_75976,264,4376_12283,Heuston Station,105651326,0,4376_7778022_101170,4376_139 -4289_75976,265,4376_12284,Heuston Station,105811326,0,4376_7778022_101170,4376_139 -4289_75976,266,4376_12285,Heuston Station,105821326,0,4376_7778022_101170,4376_139 -4289_75976,267,4376_12286,Heuston Station,106051326,0,4376_7778022_101170,4376_139 -4289_75976,268,4376_12287,Heuston Station,106141326,0,4376_7778022_101170,4376_139 -4289_75976,269,4376_12288,Heuston Station,106231326,0,4376_7778022_101170,4376_139 -4289_75976,259,4376_12289,Heuston Station,105764190,0,4376_7778022_100870,4376_140 -4289_75961,265,4376_1229,DCU Helix,105812110,0,4376_7778022_104110,4376_14 -4289_75976,260,4376_12290,Heuston Station,105311362,0,4376_7778022_101120,4376_139 -4289_75976,261,4376_12291,Heuston Station,105321362,0,4376_7778022_101120,4376_139 -4289_75976,262,4376_12292,Heuston Station,105431362,0,4376_7778022_101120,4376_139 -4289_75976,263,4376_12293,Heuston Station,105541362,0,4376_7778022_101120,4376_139 -4289_75976,264,4376_12294,Heuston Station,105651362,0,4376_7778022_101120,4376_139 -4289_75976,265,4376_12295,Heuston Station,105811362,0,4376_7778022_101120,4376_139 -4289_75976,266,4376_12296,Heuston Station,105821362,0,4376_7778022_101120,4376_139 -4289_75976,267,4376_12297,Heuston Station,106051362,0,4376_7778022_101120,4376_139 -4289_75976,268,4376_12298,Heuston Station,106141362,0,4376_7778022_101120,4376_139 -4289_75976,269,4376_12299,Heuston Station,106231362,0,4376_7778022_101120,4376_139 -4289_75960,270,4376_123,Sutton Station,105277182,0,4376_7778022_103501,4376_1 -4289_75961,266,4376_1230,DCU Helix,105822110,0,4376_7778022_104110,4376_14 -4289_75976,260,4376_12300,Heuston Station,105311396,0,4376_7778022_101200,4376_139 -4289_75976,261,4376_12301,Heuston Station,105321396,0,4376_7778022_101200,4376_139 -4289_75976,262,4376_12302,Heuston Station,105431396,0,4376_7778022_101200,4376_139 -4289_75976,263,4376_12303,Heuston Station,105541396,0,4376_7778022_101200,4376_139 -4289_75976,264,4376_12304,Heuston Station,105651396,0,4376_7778022_101200,4376_139 -4289_75976,265,4376_12305,Heuston Station,105811396,0,4376_7778022_101200,4376_139 -4289_75976,266,4376_12306,Heuston Station,105821396,0,4376_7778022_101200,4376_139 -4289_75976,267,4376_12307,Heuston Station,106051396,0,4376_7778022_101200,4376_139 -4289_75976,268,4376_12308,Heuston Station,106141396,0,4376_7778022_101200,4376_139 -4289_75976,269,4376_12309,Heuston Station,106231396,0,4376_7778022_101200,4376_139 -4289_75961,267,4376_1231,DCU Helix,106052110,0,4376_7778022_104110,4376_14 -4289_75976,259,4376_12310,Heuston Station,105764224,0,4376_7778022_100890,4376_140 -4289_75976,270,4376_12311,Heuston Station,105277050,0,4376_7778022_100690,4376_141 -4289_75976,146,4376_12312,Heuston Station,105247050,0,4376_7778022_100690,4376_141 -4289_75976,271,4376_12313,Heuston Station,105237050,0,4376_7778022_100690,4376_141 -4289_75976,115,4376_12314,Heuston Station,105217050,0,4376_7778022_100690,4376_141 -4289_75976,260,4376_12315,Heuston Station,105311416,0,4376_7778022_101131,4376_139 -4289_75976,261,4376_12316,Heuston Station,105321416,0,4376_7778022_101131,4376_139 -4289_75976,262,4376_12317,Heuston Station,105431416,0,4376_7778022_101131,4376_139 -4289_75976,263,4376_12318,Heuston Station,105541416,0,4376_7778022_101131,4376_139 -4289_75976,264,4376_12319,Heuston Station,105651416,0,4376_7778022_101131,4376_139 -4289_75961,268,4376_1232,DCU Helix,106142110,0,4376_7778022_104110,4376_14 -4289_75976,265,4376_12320,Heuston Station,105811416,0,4376_7778022_101131,4376_139 -4289_75976,266,4376_12321,Heuston Station,105821416,0,4376_7778022_101131,4376_139 -4289_75976,267,4376_12322,Heuston Station,106051416,0,4376_7778022_101131,4376_139 -4289_75976,268,4376_12323,Heuston Station,106141416,0,4376_7778022_101131,4376_139 -4289_75976,269,4376_12324,Heuston Station,106231416,0,4376_7778022_101131,4376_139 -4289_75976,260,4376_12325,Heuston Station,105311444,0,4376_7778022_101160,4376_139 -4289_75976,261,4376_12326,Heuston Station,105321444,0,4376_7778022_101160,4376_139 -4289_75976,262,4376_12327,Heuston Station,105431444,0,4376_7778022_101160,4376_139 -4289_75976,263,4376_12328,Heuston Station,105541444,0,4376_7778022_101160,4376_139 -4289_75976,264,4376_12329,Heuston Station,105651444,0,4376_7778022_101160,4376_139 -4289_75961,269,4376_1233,DCU Helix,106232110,0,4376_7778022_104110,4376_14 -4289_75976,265,4376_12330,Heuston Station,105811444,0,4376_7778022_101160,4376_139 -4289_75976,266,4376_12331,Heuston Station,105821444,0,4376_7778022_101160,4376_139 -4289_75976,267,4376_12332,Heuston Station,106051444,0,4376_7778022_101160,4376_139 -4289_75976,268,4376_12333,Heuston Station,106141444,0,4376_7778022_101160,4376_139 -4289_75976,269,4376_12334,Heuston Station,106231444,0,4376_7778022_101160,4376_139 -4289_75976,259,4376_12335,Heuston Station,105764274,0,4376_7778022_100880,4376_140 -4289_75976,260,4376_12336,Heuston Station,105311482,0,4376_7778022_101190,4376_139 -4289_75976,261,4376_12337,Heuston Station,105321482,0,4376_7778022_101190,4376_139 -4289_75976,262,4376_12338,Heuston Station,105431482,0,4376_7778022_101190,4376_139 -4289_75976,263,4376_12339,Heuston Station,105541482,0,4376_7778022_101190,4376_139 -4289_75961,259,4376_1234,DCU Helix,105764890,0,4376_7778022_104180,4376_15 -4289_75976,264,4376_12340,Heuston Station,105651482,0,4376_7778022_101190,4376_139 -4289_75976,265,4376_12341,Heuston Station,105811482,0,4376_7778022_101190,4376_139 -4289_75976,266,4376_12342,Heuston Station,105821482,0,4376_7778022_101190,4376_139 -4289_75976,267,4376_12343,Heuston Station,106051482,0,4376_7778022_101190,4376_139 -4289_75976,268,4376_12344,Heuston Station,106141482,0,4376_7778022_101190,4376_139 -4289_75976,269,4376_12345,Heuston Station,106231482,0,4376_7778022_101190,4376_139 -4289_75976,259,4376_12346,Heuston Station,105764320,0,4376_7778022_100860,4376_139 -4289_75976,270,4376_12347,Heuston Station,105277120,0,4376_7778022_100680,4376_140 -4289_75976,146,4376_12348,Heuston Station,105247120,0,4376_7778022_100680,4376_140 -4289_75976,271,4376_12349,Heuston Station,105237120,0,4376_7778022_100680,4376_140 -4289_75961,270,4376_1235,DCU Helix,105277614,0,4376_7778022_104110,4376_17 -4289_75976,115,4376_12350,Heuston Station,105217120,0,4376_7778022_100680,4376_140 -4289_75976,260,4376_12351,Heuston Station,105311510,0,4376_7778022_101180,4376_139 -4289_75976,261,4376_12352,Heuston Station,105321510,0,4376_7778022_101180,4376_139 -4289_75976,262,4376_12353,Heuston Station,105431510,0,4376_7778022_101180,4376_139 -4289_75976,263,4376_12354,Heuston Station,105541510,0,4376_7778022_101180,4376_139 -4289_75976,264,4376_12355,Heuston Station,105651510,0,4376_7778022_101180,4376_139 -4289_75976,265,4376_12356,Heuston Station,105811510,0,4376_7778022_101180,4376_139 -4289_75976,266,4376_12357,Heuston Station,105821510,0,4376_7778022_101180,4376_139 -4289_75976,267,4376_12358,Heuston Station,106051510,0,4376_7778022_101180,4376_139 -4289_75976,268,4376_12359,Heuston Station,106141510,0,4376_7778022_101180,4376_139 -4289_75961,146,4376_1236,DCU Helix,105247614,0,4376_7778022_104110,4376_17 -4289_75976,269,4376_12360,Heuston Station,106231510,0,4376_7778022_101180,4376_139 -4289_75976,260,4376_12361,Heuston Station,105311556,0,4376_7778022_101140,4376_139 -4289_75976,261,4376_12362,Heuston Station,105321556,0,4376_7778022_101140,4376_139 -4289_75976,262,4376_12363,Heuston Station,105431556,0,4376_7778022_101140,4376_139 -4289_75976,263,4376_12364,Heuston Station,105541556,0,4376_7778022_101140,4376_139 -4289_75976,264,4376_12365,Heuston Station,105651556,0,4376_7778022_101140,4376_139 -4289_75976,265,4376_12366,Heuston Station,105811556,0,4376_7778022_101140,4376_139 -4289_75976,266,4376_12367,Heuston Station,105821556,0,4376_7778022_101140,4376_139 -4289_75976,267,4376_12368,Heuston Station,106051556,0,4376_7778022_101140,4376_139 -4289_75976,268,4376_12369,Heuston Station,106141556,0,4376_7778022_101140,4376_139 -4289_75961,271,4376_1237,DCU Helix,105237614,0,4376_7778022_104110,4376_17 -4289_75976,269,4376_12370,Heuston Station,106231556,0,4376_7778022_101140,4376_139 -4289_75976,259,4376_12371,Heuston Station,105764380,0,4376_7778022_100870,4376_140 -4289_75976,270,4376_12372,Heuston Station,105277160,0,4376_7778022_100710,4376_141 -4289_75976,146,4376_12373,Heuston Station,105247160,0,4376_7778022_100710,4376_141 -4289_75976,271,4376_12374,Heuston Station,105237160,0,4376_7778022_100710,4376_141 -4289_75976,115,4376_12375,Heuston Station,105217160,0,4376_7778022_100710,4376_141 -4289_75976,260,4376_12376,Heuston Station,105311580,0,4376_7778022_101170,4376_139 -4289_75976,261,4376_12377,Heuston Station,105321580,0,4376_7778022_101170,4376_139 -4289_75976,262,4376_12378,Heuston Station,105431580,0,4376_7778022_101170,4376_139 -4289_75976,263,4376_12379,Heuston Station,105541580,0,4376_7778022_101170,4376_139 -4289_75961,115,4376_1238,DCU Helix,105217614,0,4376_7778022_104110,4376_17 -4289_75976,264,4376_12380,Heuston Station,105651580,0,4376_7778022_101170,4376_139 -4289_75976,265,4376_12381,Heuston Station,105811580,0,4376_7778022_101170,4376_139 -4289_75976,266,4376_12382,Heuston Station,105821580,0,4376_7778022_101170,4376_139 -4289_75976,267,4376_12383,Heuston Station,106051580,0,4376_7778022_101170,4376_139 -4289_75976,268,4376_12384,Heuston Station,106141580,0,4376_7778022_101170,4376_139 -4289_75976,269,4376_12385,Heuston Station,106231580,0,4376_7778022_101170,4376_139 -4289_75976,259,4376_12386,Heuston Station,105764426,0,4376_7778022_100890,4376_139 -4289_75976,270,4376_12387,Heuston Station,105277202,0,4376_7778022_100690,4376_140 -4289_75976,146,4376_12388,Heuston Station,105247202,0,4376_7778022_100690,4376_140 -4289_75976,271,4376_12389,Heuston Station,105237202,0,4376_7778022_100690,4376_140 -4289_75961,260,4376_1239,DCU Helix,105312258,0,4376_7778022_104040,4376_14 -4289_75976,115,4376_12390,Heuston Station,105217202,0,4376_7778022_100690,4376_140 -4289_75976,260,4376_12391,Heuston Station,105311622,0,4376_7778022_101120,4376_139 -4289_75976,261,4376_12392,Heuston Station,105321622,0,4376_7778022_101120,4376_139 -4289_75976,262,4376_12393,Heuston Station,105431622,0,4376_7778022_101120,4376_139 -4289_75976,263,4376_12394,Heuston Station,105541622,0,4376_7778022_101120,4376_139 -4289_75976,264,4376_12395,Heuston Station,105651622,0,4376_7778022_101120,4376_139 -4289_75976,265,4376_12396,Heuston Station,105811622,0,4376_7778022_101120,4376_139 -4289_75976,266,4376_12397,Heuston Station,105821622,0,4376_7778022_101120,4376_139 -4289_75976,267,4376_12398,Heuston Station,106051622,0,4376_7778022_101120,4376_139 -4289_75976,268,4376_12399,Heuston Station,106141622,0,4376_7778022_101120,4376_139 -4289_75960,146,4376_124,Sutton Station,105247182,0,4376_7778022_103501,4376_1 -4289_75961,261,4376_1240,DCU Helix,105322258,0,4376_7778022_104040,4376_14 -4289_75976,269,4376_12400,Heuston Station,106231622,0,4376_7778022_101120,4376_139 -4289_75976,260,4376_12401,Heuston Station,105311656,0,4376_7778022_101200,4376_139 -4289_75976,261,4376_12402,Heuston Station,105321656,0,4376_7778022_101200,4376_139 -4289_75976,262,4376_12403,Heuston Station,105431656,0,4376_7778022_101200,4376_139 -4289_75976,263,4376_12404,Heuston Station,105541656,0,4376_7778022_101200,4376_139 -4289_75976,264,4376_12405,Heuston Station,105651656,0,4376_7778022_101200,4376_139 -4289_75976,265,4376_12406,Heuston Station,105811656,0,4376_7778022_101200,4376_139 -4289_75976,266,4376_12407,Heuston Station,105821656,0,4376_7778022_101200,4376_139 -4289_75976,267,4376_12408,Heuston Station,106051656,0,4376_7778022_101200,4376_139 -4289_75976,268,4376_12409,Heuston Station,106141656,0,4376_7778022_101200,4376_139 -4289_75961,262,4376_1241,DCU Helix,105432258,0,4376_7778022_104040,4376_14 -4289_75976,269,4376_12410,Heuston Station,106231656,0,4376_7778022_101200,4376_139 -4289_75976,259,4376_12411,Heuston Station,105764484,0,4376_7778022_100880,4376_140 -4289_75976,270,4376_12412,Heuston Station,105277254,0,4376_7778022_100700,4376_141 -4289_75976,146,4376_12413,Heuston Station,105247254,0,4376_7778022_100700,4376_141 -4289_75976,271,4376_12414,Heuston Station,105237254,0,4376_7778022_100700,4376_141 -4289_75976,115,4376_12415,Heuston Station,105217254,0,4376_7778022_100700,4376_141 -4289_75976,260,4376_12416,Heuston Station,105311696,0,4376_7778022_101160,4376_139 -4289_75976,261,4376_12417,Heuston Station,105321696,0,4376_7778022_101160,4376_139 -4289_75976,262,4376_12418,Heuston Station,105431696,0,4376_7778022_101160,4376_139 -4289_75976,263,4376_12419,Heuston Station,105541696,0,4376_7778022_101160,4376_139 -4289_75961,263,4376_1242,DCU Helix,105542258,0,4376_7778022_104040,4376_14 -4289_75976,264,4376_12420,Heuston Station,105651696,0,4376_7778022_101160,4376_139 -4289_75976,265,4376_12421,Heuston Station,105811696,0,4376_7778022_101160,4376_139 -4289_75976,266,4376_12422,Heuston Station,105821696,0,4376_7778022_101160,4376_139 -4289_75976,267,4376_12423,Heuston Station,106051696,0,4376_7778022_101160,4376_139 -4289_75976,268,4376_12424,Heuston Station,106141696,0,4376_7778022_101160,4376_139 -4289_75976,269,4376_12425,Heuston Station,106231696,0,4376_7778022_101160,4376_139 -4289_75976,259,4376_12426,Heuston Station,105764536,0,4376_7778022_100860,4376_139 -4289_75976,270,4376_12427,Heuston Station,105277294,0,4376_7778022_100680,4376_140 -4289_75976,146,4376_12428,Heuston Station,105247294,0,4376_7778022_100680,4376_140 -4289_75976,271,4376_12429,Heuston Station,105237294,0,4376_7778022_100680,4376_140 -4289_75961,264,4376_1243,DCU Helix,105652258,0,4376_7778022_104040,4376_14 -4289_75976,115,4376_12430,Heuston Station,105217294,0,4376_7778022_100680,4376_140 -4289_75976,260,4376_12431,Heuston Station,105311734,0,4376_7778022_101190,4376_139 -4289_75976,261,4376_12432,Heuston Station,105321734,0,4376_7778022_101190,4376_139 -4289_75976,262,4376_12433,Heuston Station,105431734,0,4376_7778022_101190,4376_139 -4289_75976,263,4376_12434,Heuston Station,105541734,0,4376_7778022_101190,4376_139 -4289_75976,264,4376_12435,Heuston Station,105651734,0,4376_7778022_101190,4376_139 -4289_75976,265,4376_12436,Heuston Station,105811734,0,4376_7778022_101190,4376_139 -4289_75976,266,4376_12437,Heuston Station,105821734,0,4376_7778022_101190,4376_139 -4289_75976,267,4376_12438,Heuston Station,106051734,0,4376_7778022_101190,4376_139 -4289_75976,268,4376_12439,Heuston Station,106141734,0,4376_7778022_101190,4376_139 -4289_75961,265,4376_1244,DCU Helix,105812258,0,4376_7778022_104040,4376_14 -4289_75976,269,4376_12440,Heuston Station,106231734,0,4376_7778022_101190,4376_139 -4289_75976,260,4376_12441,Heuston Station,105311762,0,4376_7778022_101180,4376_139 -4289_75976,261,4376_12442,Heuston Station,105321762,0,4376_7778022_101180,4376_139 -4289_75976,262,4376_12443,Heuston Station,105431762,0,4376_7778022_101180,4376_139 -4289_75976,263,4376_12444,Heuston Station,105541762,0,4376_7778022_101180,4376_139 -4289_75976,264,4376_12445,Heuston Station,105651762,0,4376_7778022_101180,4376_139 -4289_75976,265,4376_12446,Heuston Station,105811762,0,4376_7778022_101180,4376_139 -4289_75976,266,4376_12447,Heuston Station,105821762,0,4376_7778022_101180,4376_139 -4289_75976,267,4376_12448,Heuston Station,106051762,0,4376_7778022_101180,4376_139 -4289_75976,268,4376_12449,Heuston Station,106141762,0,4376_7778022_101180,4376_139 -4289_75961,266,4376_1245,DCU Helix,105822258,0,4376_7778022_104040,4376_14 -4289_75976,269,4376_12450,Heuston Station,106231762,0,4376_7778022_101180,4376_139 -4289_75976,259,4376_12451,Heuston Station,105764586,0,4376_7778022_100870,4376_140 -4289_75976,270,4376_12452,Heuston Station,105277344,0,4376_7778022_100710,4376_140 -4289_75976,146,4376_12453,Heuston Station,105247344,0,4376_7778022_100710,4376_140 -4289_75976,271,4376_12454,Heuston Station,105237344,0,4376_7778022_100710,4376_140 -4289_75976,115,4376_12455,Heuston Station,105217344,0,4376_7778022_100710,4376_140 -4289_75976,260,4376_12456,Heuston Station,105311800,0,4376_7778022_101140,4376_139 -4289_75976,261,4376_12457,Heuston Station,105321800,0,4376_7778022_101140,4376_139 -4289_75976,262,4376_12458,Heuston Station,105431800,0,4376_7778022_101140,4376_139 -4289_75976,263,4376_12459,Heuston Station,105541800,0,4376_7778022_101140,4376_139 -4289_75961,267,4376_1246,DCU Helix,106052258,0,4376_7778022_104040,4376_14 -4289_75976,264,4376_12460,Heuston Station,105651800,0,4376_7778022_101140,4376_139 -4289_75976,265,4376_12461,Heuston Station,105811800,0,4376_7778022_101140,4376_139 -4289_75976,266,4376_12462,Heuston Station,105821800,0,4376_7778022_101140,4376_139 -4289_75976,267,4376_12463,Heuston Station,106051800,0,4376_7778022_101140,4376_139 -4289_75976,268,4376_12464,Heuston Station,106141800,0,4376_7778022_101140,4376_139 -4289_75976,269,4376_12465,Heuston Station,106231800,0,4376_7778022_101140,4376_139 -4289_75976,259,4376_12466,Heuston Station,105764638,0,4376_7778022_100890,4376_139 -4289_75976,270,4376_12467,Heuston Station,105277392,0,4376_7778022_100690,4376_140 -4289_75976,146,4376_12468,Heuston Station,105247392,0,4376_7778022_100690,4376_140 -4289_75976,271,4376_12469,Heuston Station,105237392,0,4376_7778022_100690,4376_140 -4289_75961,268,4376_1247,DCU Helix,106142258,0,4376_7778022_104040,4376_14 -4289_75976,115,4376_12470,Heuston Station,105217392,0,4376_7778022_100690,4376_140 -4289_75976,260,4376_12471,Heuston Station,105311838,0,4376_7778022_101170,4376_139 -4289_75976,261,4376_12472,Heuston Station,105321838,0,4376_7778022_101170,4376_139 -4289_75976,262,4376_12473,Heuston Station,105431838,0,4376_7778022_101170,4376_139 -4289_75976,263,4376_12474,Heuston Station,105541838,0,4376_7778022_101170,4376_139 -4289_75976,264,4376_12475,Heuston Station,105651838,0,4376_7778022_101170,4376_139 -4289_75976,265,4376_12476,Heuston Station,105811838,0,4376_7778022_101170,4376_139 -4289_75976,266,4376_12477,Heuston Station,105821838,0,4376_7778022_101170,4376_139 -4289_75976,267,4376_12478,Heuston Station,106051838,0,4376_7778022_101170,4376_139 -4289_75976,268,4376_12479,Heuston Station,106141838,0,4376_7778022_101170,4376_139 -4289_75961,269,4376_1248,DCU Helix,106232258,0,4376_7778022_104040,4376_14 -4289_75976,269,4376_12480,Heuston Station,106231838,0,4376_7778022_101170,4376_139 -4289_75976,260,4376_12481,Heuston Station,105311878,0,4376_7778022_101120,4376_139 -4289_75976,261,4376_12482,Heuston Station,105321878,0,4376_7778022_101120,4376_139 -4289_75976,262,4376_12483,Heuston Station,105431878,0,4376_7778022_101120,4376_139 -4289_75976,263,4376_12484,Heuston Station,105541878,0,4376_7778022_101120,4376_139 -4289_75976,264,4376_12485,Heuston Station,105651878,0,4376_7778022_101120,4376_139 -4289_75976,265,4376_12486,Heuston Station,105811878,0,4376_7778022_101120,4376_139 -4289_75976,266,4376_12487,Heuston Station,105821878,0,4376_7778022_101120,4376_139 -4289_75976,267,4376_12488,Heuston Station,106051878,0,4376_7778022_101120,4376_139 -4289_75976,268,4376_12489,Heuston Station,106141878,0,4376_7778022_101120,4376_139 -4289_75961,259,4376_1249,DCU Helix,105765006,0,4376_7778022_104110,4376_15 -4289_75976,269,4376_12490,Heuston Station,106231878,0,4376_7778022_101120,4376_139 -4289_75976,259,4376_12491,Heuston Station,105764686,0,4376_7778022_100900,4376_140 -4289_75976,270,4376_12492,Heuston Station,105277438,0,4376_7778022_100700,4376_141 -4289_75976,146,4376_12493,Heuston Station,105247438,0,4376_7778022_100700,4376_141 -4289_75976,271,4376_12494,Heuston Station,105237438,0,4376_7778022_100700,4376_141 -4289_75976,115,4376_12495,Heuston Station,105217438,0,4376_7778022_100700,4376_141 -4289_75976,260,4376_12496,Heuston Station,105311912,0,4376_7778022_101200,4376_139 -4289_75976,261,4376_12497,Heuston Station,105321912,0,4376_7778022_101200,4376_139 -4289_75976,262,4376_12498,Heuston Station,105431912,0,4376_7778022_101200,4376_139 -4289_75976,263,4376_12499,Heuston Station,105541912,0,4376_7778022_101200,4376_139 -4289_75960,271,4376_125,Sutton Station,105237182,0,4376_7778022_103501,4376_1 -4289_75961,270,4376_1250,DCU Helix,105277718,0,4376_7778022_104150,4376_17 -4289_75976,264,4376_12500,Heuston Station,105651912,0,4376_7778022_101200,4376_139 -4289_75976,265,4376_12501,Heuston Station,105811912,0,4376_7778022_101200,4376_139 -4289_75976,266,4376_12502,Heuston Station,105821912,0,4376_7778022_101200,4376_139 -4289_75976,267,4376_12503,Heuston Station,106051912,0,4376_7778022_101200,4376_139 -4289_75976,268,4376_12504,Heuston Station,106141912,0,4376_7778022_101200,4376_139 -4289_75976,269,4376_12505,Heuston Station,106231912,0,4376_7778022_101200,4376_139 -4289_75976,259,4376_12506,Heuston Station,105764742,0,4376_7778022_100880,4376_139 -4289_75976,270,4376_12507,Heuston Station,105277482,0,4376_7778022_100720,4376_140 -4289_75976,146,4376_12508,Heuston Station,105247482,0,4376_7778022_100720,4376_140 -4289_75976,271,4376_12509,Heuston Station,105237482,0,4376_7778022_100720,4376_140 -4289_75961,146,4376_1251,DCU Helix,105247718,0,4376_7778022_104150,4376_17 -4289_75976,115,4376_12510,Heuston Station,105217482,0,4376_7778022_100720,4376_140 -4289_75976,260,4376_12511,Heuston Station,105311950,0,4376_7778022_101160,4376_139 -4289_75976,261,4376_12512,Heuston Station,105321950,0,4376_7778022_101160,4376_139 -4289_75976,262,4376_12513,Heuston Station,105431950,0,4376_7778022_101160,4376_139 -4289_75976,263,4376_12514,Heuston Station,105541950,0,4376_7778022_101160,4376_139 -4289_75976,264,4376_12515,Heuston Station,105651950,0,4376_7778022_101160,4376_139 -4289_75976,265,4376_12516,Heuston Station,105811950,0,4376_7778022_101160,4376_139 -4289_75976,266,4376_12517,Heuston Station,105821950,0,4376_7778022_101160,4376_139 -4289_75976,267,4376_12518,Heuston Station,106051950,0,4376_7778022_101160,4376_139 -4289_75976,268,4376_12519,Heuston Station,106141950,0,4376_7778022_101160,4376_139 -4289_75961,271,4376_1252,DCU Helix,105237718,0,4376_7778022_104150,4376_17 -4289_75976,269,4376_12520,Heuston Station,106231950,0,4376_7778022_101160,4376_139 -4289_75976,260,4376_12521,Heuston Station,105311986,0,4376_7778022_101152,4376_139 -4289_75976,261,4376_12522,Heuston Station,105321986,0,4376_7778022_101152,4376_139 -4289_75976,262,4376_12523,Heuston Station,105431986,0,4376_7778022_101152,4376_139 -4289_75976,263,4376_12524,Heuston Station,105541986,0,4376_7778022_101152,4376_139 -4289_75976,264,4376_12525,Heuston Station,105651986,0,4376_7778022_101152,4376_139 -4289_75976,265,4376_12526,Heuston Station,105811986,0,4376_7778022_101152,4376_139 -4289_75976,266,4376_12527,Heuston Station,105821986,0,4376_7778022_101152,4376_139 -4289_75976,267,4376_12528,Heuston Station,106051986,0,4376_7778022_101152,4376_139 -4289_75976,268,4376_12529,Heuston Station,106141986,0,4376_7778022_101152,4376_139 -4289_75961,115,4376_1253,DCU Helix,105217718,0,4376_7778022_104150,4376_17 -4289_75976,269,4376_12530,Heuston Station,106231986,0,4376_7778022_101152,4376_139 -4289_75976,259,4376_12531,Heuston Station,105764784,0,4376_7778022_100860,4376_140 -4289_75976,270,4376_12532,Heuston Station,105277526,0,4376_7778022_100680,4376_141 -4289_75976,146,4376_12533,Heuston Station,105247526,0,4376_7778022_100680,4376_141 -4289_75976,271,4376_12534,Heuston Station,105237526,0,4376_7778022_100680,4376_141 -4289_75976,115,4376_12535,Heuston Station,105217526,0,4376_7778022_100680,4376_141 -4289_75976,260,4376_12536,Heuston Station,105312024,0,4376_7778022_101190,4376_139 -4289_75976,261,4376_12537,Heuston Station,105322024,0,4376_7778022_101190,4376_139 -4289_75976,262,4376_12538,Heuston Station,105432024,0,4376_7778022_101190,4376_139 -4289_75976,263,4376_12539,Heuston Station,105542024,0,4376_7778022_101190,4376_139 -4289_75961,260,4376_1254,DCU Helix,105312372,0,4376_7778022_104140,4376_14 -4289_75976,264,4376_12540,Heuston Station,105652024,0,4376_7778022_101190,4376_139 -4289_75976,265,4376_12541,Heuston Station,105812024,0,4376_7778022_101190,4376_139 -4289_75976,266,4376_12542,Heuston Station,105822024,0,4376_7778022_101190,4376_139 -4289_75976,267,4376_12543,Heuston Station,106052024,0,4376_7778022_101190,4376_139 -4289_75976,268,4376_12544,Heuston Station,106142024,0,4376_7778022_101190,4376_139 -4289_75976,269,4376_12545,Heuston Station,106232024,0,4376_7778022_101190,4376_139 -4289_75976,259,4376_12546,Heuston Station,105764838,0,4376_7778022_100870,4376_139 -4289_75976,270,4376_12547,Heuston Station,105277570,0,4376_7778022_100710,4376_140 -4289_75976,146,4376_12548,Heuston Station,105247570,0,4376_7778022_100710,4376_140 -4289_75976,271,4376_12549,Heuston Station,105237570,0,4376_7778022_100710,4376_140 -4289_75961,261,4376_1255,DCU Helix,105322372,0,4376_7778022_104140,4376_14 -4289_75976,115,4376_12550,Heuston Station,105217570,0,4376_7778022_100710,4376_140 -4289_75976,260,4376_12551,Heuston Station,105312066,0,4376_7778022_101180,4376_139 -4289_75976,261,4376_12552,Heuston Station,105322066,0,4376_7778022_101180,4376_139 -4289_75976,262,4376_12553,Heuston Station,105432066,0,4376_7778022_101180,4376_139 -4289_75976,263,4376_12554,Heuston Station,105542066,0,4376_7778022_101180,4376_139 -4289_75976,264,4376_12555,Heuston Station,105652066,0,4376_7778022_101180,4376_139 -4289_75976,265,4376_12556,Heuston Station,105812066,0,4376_7778022_101180,4376_139 -4289_75976,266,4376_12557,Heuston Station,105822066,0,4376_7778022_101180,4376_139 -4289_75976,267,4376_12558,Heuston Station,106052066,0,4376_7778022_101180,4376_139 -4289_75976,268,4376_12559,Heuston Station,106142066,0,4376_7778022_101180,4376_139 -4289_75961,262,4376_1256,DCU Helix,105432372,0,4376_7778022_104140,4376_14 -4289_75976,269,4376_12560,Heuston Station,106232066,0,4376_7778022_101180,4376_139 -4289_75976,260,4376_12561,Heuston Station,105312114,0,4376_7778022_101140,4376_139 -4289_75976,261,4376_12562,Heuston Station,105322114,0,4376_7778022_101140,4376_139 -4289_75976,262,4376_12563,Heuston Station,105432114,0,4376_7778022_101140,4376_139 -4289_75976,263,4376_12564,Heuston Station,105542114,0,4376_7778022_101140,4376_139 -4289_75976,264,4376_12565,Heuston Station,105652114,0,4376_7778022_101140,4376_139 -4289_75976,265,4376_12566,Heuston Station,105812114,0,4376_7778022_101140,4376_139 -4289_75976,266,4376_12567,Heuston Station,105822114,0,4376_7778022_101140,4376_139 -4289_75976,267,4376_12568,Heuston Station,106052114,0,4376_7778022_101140,4376_139 -4289_75976,268,4376_12569,Heuston Station,106142114,0,4376_7778022_101140,4376_139 -4289_75961,263,4376_1257,DCU Helix,105542372,0,4376_7778022_104140,4376_14 -4289_75976,269,4376_12570,Heuston Station,106232114,0,4376_7778022_101140,4376_139 -4289_75976,259,4376_12571,Heuston Station,105764896,0,4376_7778022_100890,4376_140 -4289_75976,270,4376_12572,Heuston Station,105277612,0,4376_7778022_100690,4376_140 -4289_75976,146,4376_12573,Heuston Station,105247612,0,4376_7778022_100690,4376_140 -4289_75976,271,4376_12574,Heuston Station,105237612,0,4376_7778022_100690,4376_140 -4289_75976,115,4376_12575,Heuston Station,105217612,0,4376_7778022_100690,4376_140 -4289_75976,260,4376_12576,Heuston Station,105312146,0,4376_7778022_101170,4376_139 -4289_75976,261,4376_12577,Heuston Station,105322146,0,4376_7778022_101170,4376_139 -4289_75976,262,4376_12578,Heuston Station,105432146,0,4376_7778022_101170,4376_139 -4289_75976,263,4376_12579,Heuston Station,105542146,0,4376_7778022_101170,4376_139 -4289_75961,264,4376_1258,DCU Helix,105652372,0,4376_7778022_104140,4376_14 -4289_75976,264,4376_12580,Heuston Station,105652146,0,4376_7778022_101170,4376_139 -4289_75976,265,4376_12581,Heuston Station,105812146,0,4376_7778022_101170,4376_139 -4289_75976,266,4376_12582,Heuston Station,105822146,0,4376_7778022_101170,4376_139 -4289_75976,267,4376_12583,Heuston Station,106052146,0,4376_7778022_101170,4376_139 -4289_75976,268,4376_12584,Heuston Station,106142146,0,4376_7778022_101170,4376_139 -4289_75976,269,4376_12585,Heuston Station,106232146,0,4376_7778022_101170,4376_139 -4289_75976,260,4376_12586,Heuston Station,105312176,0,4376_7778022_101120,4376_139 -4289_75976,261,4376_12587,Heuston Station,105322176,0,4376_7778022_101120,4376_139 -4289_75976,262,4376_12588,Heuston Station,105432176,0,4376_7778022_101120,4376_139 -4289_75976,263,4376_12589,Heuston Station,105542176,0,4376_7778022_101120,4376_139 -4289_75961,265,4376_1259,DCU Helix,105812372,0,4376_7778022_104140,4376_14 -4289_75976,264,4376_12590,Heuston Station,105652176,0,4376_7778022_101120,4376_139 -4289_75976,265,4376_12591,Heuston Station,105812176,0,4376_7778022_101120,4376_139 -4289_75976,266,4376_12592,Heuston Station,105822176,0,4376_7778022_101120,4376_139 -4289_75976,267,4376_12593,Heuston Station,106052176,0,4376_7778022_101120,4376_139 -4289_75976,268,4376_12594,Heuston Station,106142176,0,4376_7778022_101120,4376_139 -4289_75976,269,4376_12595,Heuston Station,106232176,0,4376_7778022_101120,4376_139 -4289_75976,259,4376_12596,Heuston Station,105764940,0,4376_7778022_100900,4376_140 -4289_75976,270,4376_12597,Heuston Station,105277658,0,4376_7778022_100700,4376_140 -4289_75976,146,4376_12598,Heuston Station,105247658,0,4376_7778022_100700,4376_140 -4289_75976,271,4376_12599,Heuston Station,105237658,0,4376_7778022_100700,4376_140 -4289_75960,115,4376_126,Sutton Station,105217182,0,4376_7778022_103501,4376_1 -4289_75961,266,4376_1260,DCU Helix,105822372,0,4376_7778022_104140,4376_14 -4289_75976,115,4376_12600,Heuston Station,105217658,0,4376_7778022_100700,4376_140 -4289_75976,260,4376_12601,Heuston Station,105312204,0,4376_7778022_101112,4376_139 -4289_75976,261,4376_12602,Heuston Station,105322204,0,4376_7778022_101112,4376_139 -4289_75976,262,4376_12603,Heuston Station,105432204,0,4376_7778022_101112,4376_139 -4289_75976,263,4376_12604,Heuston Station,105542204,0,4376_7778022_101112,4376_139 -4289_75976,264,4376_12605,Heuston Station,105652204,0,4376_7778022_101112,4376_139 -4289_75976,265,4376_12606,Heuston Station,105812204,0,4376_7778022_101112,4376_139 -4289_75976,266,4376_12607,Heuston Station,105822204,0,4376_7778022_101112,4376_139 -4289_75976,267,4376_12608,Heuston Station,106052204,0,4376_7778022_101112,4376_139 -4289_75976,268,4376_12609,Heuston Station,106142204,0,4376_7778022_101112,4376_139 -4289_75961,267,4376_1261,DCU Helix,106052372,0,4376_7778022_104140,4376_14 -4289_75976,269,4376_12610,Heuston Station,106232204,0,4376_7778022_101112,4376_139 -4289_75976,260,4376_12611,Heuston Station,105312240,0,4376_7778022_101200,4376_139 -4289_75976,261,4376_12612,Heuston Station,105322240,0,4376_7778022_101200,4376_139 -4289_75976,262,4376_12613,Heuston Station,105432240,0,4376_7778022_101200,4376_139 -4289_75976,263,4376_12614,Heuston Station,105542240,0,4376_7778022_101200,4376_139 -4289_75976,264,4376_12615,Heuston Station,105652240,0,4376_7778022_101200,4376_139 -4289_75976,265,4376_12616,Heuston Station,105812240,0,4376_7778022_101200,4376_139 -4289_75976,266,4376_12617,Heuston Station,105822240,0,4376_7778022_101200,4376_139 -4289_75976,267,4376_12618,Heuston Station,106052240,0,4376_7778022_101200,4376_139 -4289_75976,268,4376_12619,Heuston Station,106142240,0,4376_7778022_101200,4376_139 -4289_75961,268,4376_1262,DCU Helix,106142372,0,4376_7778022_104140,4376_14 -4289_75976,269,4376_12620,Heuston Station,106232240,0,4376_7778022_101200,4376_139 -4289_75976,259,4376_12621,Heuston Station,105764988,0,4376_7778022_100880,4376_140 -4289_75976,270,4376_12622,Heuston Station,105277706,0,4376_7778022_100720,4376_140 -4289_75976,146,4376_12623,Heuston Station,105247706,0,4376_7778022_100720,4376_140 -4289_75976,271,4376_12624,Heuston Station,105237706,0,4376_7778022_100720,4376_140 -4289_75976,115,4376_12625,Heuston Station,105217706,0,4376_7778022_100720,4376_140 -4289_75976,260,4376_12626,Heuston Station,105312272,0,4376_7778022_101160,4376_139 -4289_75976,261,4376_12627,Heuston Station,105322272,0,4376_7778022_101160,4376_139 -4289_75976,262,4376_12628,Heuston Station,105432272,0,4376_7778022_101160,4376_139 -4289_75976,263,4376_12629,Heuston Station,105542272,0,4376_7778022_101160,4376_139 -4289_75961,269,4376_1263,DCU Helix,106232372,0,4376_7778022_104140,4376_14 -4289_75976,264,4376_12630,Heuston Station,105652272,0,4376_7778022_101160,4376_139 -4289_75976,265,4376_12631,Heuston Station,105812272,0,4376_7778022_101160,4376_139 -4289_75976,266,4376_12632,Heuston Station,105822272,0,4376_7778022_101160,4376_139 -4289_75976,267,4376_12633,Heuston Station,106052272,0,4376_7778022_101160,4376_139 -4289_75976,268,4376_12634,Heuston Station,106142272,0,4376_7778022_101160,4376_139 -4289_75976,269,4376_12635,Heuston Station,106232272,0,4376_7778022_101160,4376_139 -4289_75976,260,4376_12636,Heuston Station,105312304,0,4376_7778022_101152,4376_139 -4289_75976,261,4376_12637,Heuston Station,105322304,0,4376_7778022_101152,4376_139 -4289_75976,262,4376_12638,Heuston Station,105432304,0,4376_7778022_101152,4376_139 -4289_75976,263,4376_12639,Heuston Station,105542304,0,4376_7778022_101152,4376_139 -4289_75961,259,4376_1264,DCU Helix,105765108,0,4376_7778022_104080,4376_15 -4289_75976,264,4376_12640,Heuston Station,105652304,0,4376_7778022_101152,4376_139 -4289_75976,265,4376_12641,Heuston Station,105812304,0,4376_7778022_101152,4376_139 -4289_75976,266,4376_12642,Heuston Station,105822304,0,4376_7778022_101152,4376_139 -4289_75976,267,4376_12643,Heuston Station,106052304,0,4376_7778022_101152,4376_139 -4289_75976,268,4376_12644,Heuston Station,106142304,0,4376_7778022_101152,4376_139 -4289_75976,269,4376_12645,Heuston Station,106232304,0,4376_7778022_101152,4376_139 -4289_75976,259,4376_12646,Heuston Station,105765048,0,4376_7778022_100860,4376_140 -4289_75976,270,4376_12647,Heuston Station,105277748,0,4376_7778022_100680,4376_141 -4289_75976,146,4376_12648,Heuston Station,105247748,0,4376_7778022_100680,4376_141 -4289_75976,271,4376_12649,Heuston Station,105237748,0,4376_7778022_100680,4376_141 -4289_75961,270,4376_1265,DCU Helix,105277806,0,4376_7778022_104100,4376_17 -4289_75976,115,4376_12650,Heuston Station,105217748,0,4376_7778022_100680,4376_141 -4289_75976,260,4376_12651,Heuston Station,105312336,0,4376_7778022_101190,4376_139 -4289_75976,261,4376_12652,Heuston Station,105322336,0,4376_7778022_101190,4376_139 -4289_75976,262,4376_12653,Heuston Station,105432336,0,4376_7778022_101190,4376_139 -4289_75976,263,4376_12654,Heuston Station,105542336,0,4376_7778022_101190,4376_139 -4289_75976,264,4376_12655,Heuston Station,105652336,0,4376_7778022_101190,4376_139 -4289_75976,265,4376_12656,Heuston Station,105812336,0,4376_7778022_101190,4376_139 -4289_75976,266,4376_12657,Heuston Station,105822336,0,4376_7778022_101190,4376_139 -4289_75976,267,4376_12658,Heuston Station,106052336,0,4376_7778022_101190,4376_139 -4289_75976,268,4376_12659,Heuston Station,106142336,0,4376_7778022_101190,4376_139 -4289_75961,146,4376_1266,DCU Helix,105247806,0,4376_7778022_104100,4376_17 -4289_75976,269,4376_12660,Heuston Station,106232336,0,4376_7778022_101190,4376_139 -4289_75976,260,4376_12661,Heuston Station,105312358,0,4376_7778022_101132,4376_139 -4289_75976,261,4376_12662,Heuston Station,105322358,0,4376_7778022_101132,4376_139 -4289_75976,262,4376_12663,Heuston Station,105432358,0,4376_7778022_101132,4376_139 -4289_75976,263,4376_12664,Heuston Station,105542358,0,4376_7778022_101132,4376_139 -4289_75976,264,4376_12665,Heuston Station,105652358,0,4376_7778022_101132,4376_139 -4289_75976,265,4376_12666,Heuston Station,105812358,0,4376_7778022_101132,4376_139 -4289_75976,266,4376_12667,Heuston Station,105822358,0,4376_7778022_101132,4376_139 -4289_75976,267,4376_12668,Heuston Station,106052358,0,4376_7778022_101132,4376_139 -4289_75976,268,4376_12669,Heuston Station,106142358,0,4376_7778022_101132,4376_139 -4289_75961,271,4376_1267,DCU Helix,105237806,0,4376_7778022_104100,4376_17 -4289_75976,269,4376_12670,Heuston Station,106232358,0,4376_7778022_101132,4376_139 -4289_75976,259,4376_12671,Heuston Station,105765094,0,4376_7778022_100870,4376_140 -4289_75976,270,4376_12672,Heuston Station,105277794,0,4376_7778022_100710,4376_141 -4289_75976,146,4376_12673,Heuston Station,105247794,0,4376_7778022_100710,4376_141 -4289_75976,271,4376_12674,Heuston Station,105237794,0,4376_7778022_100710,4376_141 -4289_75976,115,4376_12675,Heuston Station,105217794,0,4376_7778022_100710,4376_141 -4289_75976,260,4376_12676,Heuston Station,105312388,0,4376_7778022_101180,4376_139 -4289_75976,261,4376_12677,Heuston Station,105322388,0,4376_7778022_101180,4376_139 -4289_75976,262,4376_12678,Heuston Station,105432388,0,4376_7778022_101180,4376_139 -4289_75976,263,4376_12679,Heuston Station,105542388,0,4376_7778022_101180,4376_139 -4289_75961,115,4376_1268,DCU Helix,105217806,0,4376_7778022_104100,4376_17 -4289_75976,264,4376_12680,Heuston Station,105652388,0,4376_7778022_101180,4376_139 -4289_75976,265,4376_12681,Heuston Station,105812388,0,4376_7778022_101180,4376_139 -4289_75976,266,4376_12682,Heuston Station,105822388,0,4376_7778022_101180,4376_139 -4289_75976,267,4376_12683,Heuston Station,106052388,0,4376_7778022_101180,4376_139 -4289_75976,268,4376_12684,Heuston Station,106142388,0,4376_7778022_101180,4376_139 -4289_75976,269,4376_12685,Heuston Station,106232388,0,4376_7778022_101180,4376_139 -4289_75976,260,4376_12686,Heuston Station,105312422,0,4376_7778022_101140,4376_139 -4289_75976,261,4376_12687,Heuston Station,105322422,0,4376_7778022_101140,4376_139 -4289_75976,262,4376_12688,Heuston Station,105432422,0,4376_7778022_101140,4376_139 -4289_75976,263,4376_12689,Heuston Station,105542422,0,4376_7778022_101140,4376_139 -4289_75961,260,4376_1269,DCU Helix,105312488,0,4376_7778022_104080,4376_14 -4289_75976,264,4376_12690,Heuston Station,105652422,0,4376_7778022_101140,4376_139 -4289_75976,265,4376_12691,Heuston Station,105812422,0,4376_7778022_101140,4376_139 -4289_75976,266,4376_12692,Heuston Station,105822422,0,4376_7778022_101140,4376_139 -4289_75976,267,4376_12693,Heuston Station,106052422,0,4376_7778022_101140,4376_139 -4289_75976,268,4376_12694,Heuston Station,106142422,0,4376_7778022_101140,4376_139 -4289_75976,269,4376_12695,Heuston Station,106232422,0,4376_7778022_101140,4376_139 -4289_75976,259,4376_12696,Heuston Station,105765148,0,4376_7778022_100890,4376_140 -4289_75976,270,4376_12697,Heuston Station,105277840,0,4376_7778022_100690,4376_141 -4289_75976,146,4376_12698,Heuston Station,105247840,0,4376_7778022_100690,4376_141 -4289_75976,271,4376_12699,Heuston Station,105237840,0,4376_7778022_100690,4376_141 -4289_75960,260,4376_127,Sutton Station,105311594,0,4376_7778022_103502,4376_1 -4289_75961,261,4376_1270,DCU Helix,105322488,0,4376_7778022_104080,4376_14 -4289_75976,115,4376_12700,Heuston Station,105217840,0,4376_7778022_100690,4376_141 -4289_75976,260,4376_12701,Heuston Station,105312448,0,4376_7778022_101170,4376_139 -4289_75976,261,4376_12702,Heuston Station,105322448,0,4376_7778022_101170,4376_139 -4289_75976,262,4376_12703,Heuston Station,105432448,0,4376_7778022_101170,4376_139 -4289_75976,263,4376_12704,Heuston Station,105542448,0,4376_7778022_101170,4376_139 -4289_75976,264,4376_12705,Heuston Station,105652448,0,4376_7778022_101170,4376_139 -4289_75976,265,4376_12706,Heuston Station,105812448,0,4376_7778022_101170,4376_139 -4289_75976,266,4376_12707,Heuston Station,105822448,0,4376_7778022_101170,4376_139 -4289_75976,267,4376_12708,Heuston Station,106052448,0,4376_7778022_101170,4376_139 -4289_75976,268,4376_12709,Heuston Station,106142448,0,4376_7778022_101170,4376_139 -4289_75961,262,4376_1271,DCU Helix,105432488,0,4376_7778022_104080,4376_14 -4289_75976,269,4376_12710,Heuston Station,106232448,0,4376_7778022_101170,4376_139 -4289_75976,260,4376_12711,Heuston Station,105312476,0,4376_7778022_101120,4376_139 -4289_75976,261,4376_12712,Heuston Station,105322476,0,4376_7778022_101120,4376_139 -4289_75976,262,4376_12713,Heuston Station,105432476,0,4376_7778022_101120,4376_139 -4289_75976,263,4376_12714,Heuston Station,105542476,0,4376_7778022_101120,4376_139 -4289_75976,264,4376_12715,Heuston Station,105652476,0,4376_7778022_101120,4376_139 -4289_75976,265,4376_12716,Heuston Station,105812476,0,4376_7778022_101120,4376_139 -4289_75976,266,4376_12717,Heuston Station,105822476,0,4376_7778022_101120,4376_139 -4289_75976,267,4376_12718,Heuston Station,106052476,0,4376_7778022_101120,4376_139 -4289_75976,268,4376_12719,Heuston Station,106142476,0,4376_7778022_101120,4376_139 -4289_75961,263,4376_1272,DCU Helix,105542488,0,4376_7778022_104080,4376_14 -4289_75976,269,4376_12720,Heuston Station,106232476,0,4376_7778022_101120,4376_139 -4289_75976,259,4376_12721,Heuston Station,105765192,0,4376_7778022_100900,4376_140 -4289_75976,270,4376_12722,Heuston Station,105277882,0,4376_7778022_100700,4376_141 -4289_75976,146,4376_12723,Heuston Station,105247882,0,4376_7778022_100700,4376_141 -4289_75976,271,4376_12724,Heuston Station,105237882,0,4376_7778022_100700,4376_141 -4289_75976,115,4376_12725,Heuston Station,105217882,0,4376_7778022_100700,4376_141 -4289_75976,260,4376_12726,Heuston Station,105312514,0,4376_7778022_101112,4376_139 -4289_75976,261,4376_12727,Heuston Station,105322514,0,4376_7778022_101112,4376_139 -4289_75976,262,4376_12728,Heuston Station,105432514,0,4376_7778022_101112,4376_139 -4289_75976,263,4376_12729,Heuston Station,105542514,0,4376_7778022_101112,4376_139 -4289_75961,264,4376_1273,DCU Helix,105652488,0,4376_7778022_104080,4376_14 -4289_75976,264,4376_12730,Heuston Station,105652514,0,4376_7778022_101112,4376_139 -4289_75976,265,4376_12731,Heuston Station,105812514,0,4376_7778022_101112,4376_139 -4289_75976,266,4376_12732,Heuston Station,105822514,0,4376_7778022_101112,4376_139 -4289_75976,267,4376_12733,Heuston Station,106052514,0,4376_7778022_101112,4376_139 -4289_75976,268,4376_12734,Heuston Station,106142514,0,4376_7778022_101112,4376_139 -4289_75976,269,4376_12735,Heuston Station,106232514,0,4376_7778022_101112,4376_139 -4289_75976,259,4376_12736,Heuston Station,105765244,0,4376_7778022_100880,4376_139 -4289_75976,270,4376_12737,Heuston Station,105277930,0,4376_7778022_100720,4376_140 -4289_75976,146,4376_12738,Heuston Station,105247930,0,4376_7778022_100720,4376_140 -4289_75976,271,4376_12739,Heuston Station,105237930,0,4376_7778022_100720,4376_140 -4289_75961,265,4376_1274,DCU Helix,105812488,0,4376_7778022_104080,4376_14 -4289_75976,115,4376_12740,Heuston Station,105217930,0,4376_7778022_100720,4376_140 -4289_75976,260,4376_12741,Heuston Station,105312550,0,4376_7778022_101160,4376_139 -4289_75976,261,4376_12742,Heuston Station,105322550,0,4376_7778022_101160,4376_139 -4289_75976,262,4376_12743,Heuston Station,105432550,0,4376_7778022_101160,4376_139 -4289_75976,263,4376_12744,Heuston Station,105542550,0,4376_7778022_101160,4376_139 -4289_75976,264,4376_12745,Heuston Station,105652550,0,4376_7778022_101160,4376_139 -4289_75976,265,4376_12746,Heuston Station,105812550,0,4376_7778022_101160,4376_139 -4289_75976,266,4376_12747,Heuston Station,105822550,0,4376_7778022_101160,4376_139 -4289_75976,267,4376_12748,Heuston Station,106052550,0,4376_7778022_101160,4376_139 -4289_75976,268,4376_12749,Heuston Station,106142550,0,4376_7778022_101160,4376_139 -4289_75961,266,4376_1275,DCU Helix,105822488,0,4376_7778022_104080,4376_14 -4289_75976,269,4376_12750,Heuston Station,106232550,0,4376_7778022_101160,4376_139 -4289_75976,260,4376_12751,Heuston Station,105312584,0,4376_7778022_101190,4376_139 -4289_75976,261,4376_12752,Heuston Station,105322584,0,4376_7778022_101190,4376_139 -4289_75976,262,4376_12753,Heuston Station,105432584,0,4376_7778022_101190,4376_139 -4289_75976,263,4376_12754,Heuston Station,105542584,0,4376_7778022_101190,4376_139 -4289_75976,264,4376_12755,Heuston Station,105652584,0,4376_7778022_101190,4376_139 -4289_75976,265,4376_12756,Heuston Station,105812584,0,4376_7778022_101190,4376_139 -4289_75976,266,4376_12757,Heuston Station,105822584,0,4376_7778022_101190,4376_139 -4289_75976,267,4376_12758,Heuston Station,106052584,0,4376_7778022_101190,4376_139 -4289_75976,268,4376_12759,Heuston Station,106142584,0,4376_7778022_101190,4376_139 -4289_75961,267,4376_1276,DCU Helix,106052488,0,4376_7778022_104080,4376_14 -4289_75976,269,4376_12760,Heuston Station,106232584,0,4376_7778022_101190,4376_139 -4289_75976,259,4376_12761,Heuston Station,105765296,0,4376_7778022_100860,4376_140 -4289_75976,270,4376_12762,Heuston Station,105277970,0,4376_7778022_100680,4376_141 -4289_75976,146,4376_12763,Heuston Station,105247970,0,4376_7778022_100680,4376_141 -4289_75976,271,4376_12764,Heuston Station,105237970,0,4376_7778022_100680,4376_141 -4289_75976,115,4376_12765,Heuston Station,105217970,0,4376_7778022_100680,4376_141 -4289_75976,260,4376_12766,Heuston Station,105312642,0,4376_7778022_101180,4376_139 -4289_75976,261,4376_12767,Heuston Station,105322642,0,4376_7778022_101180,4376_139 -4289_75976,262,4376_12768,Heuston Station,105432642,0,4376_7778022_101180,4376_139 -4289_75976,263,4376_12769,Heuston Station,105542642,0,4376_7778022_101180,4376_139 -4289_75961,268,4376_1277,DCU Helix,106142488,0,4376_7778022_104080,4376_14 -4289_75976,264,4376_12770,Heuston Station,105652642,0,4376_7778022_101180,4376_139 -4289_75976,265,4376_12771,Heuston Station,105812642,0,4376_7778022_101180,4376_139 -4289_75976,266,4376_12772,Heuston Station,105822642,0,4376_7778022_101180,4376_139 -4289_75976,267,4376_12773,Heuston Station,106052642,0,4376_7778022_101180,4376_139 -4289_75976,268,4376_12774,Heuston Station,106142642,0,4376_7778022_101180,4376_139 -4289_75976,269,4376_12775,Heuston Station,106232642,0,4376_7778022_101180,4376_139 -4289_75976,259,4376_12776,Heuston Station,105765342,0,4376_7778022_100870,4376_140 -4289_75976,270,4376_12777,Heuston Station,105278016,0,4376_7778022_100710,4376_141 -4289_75976,146,4376_12778,Heuston Station,105248016,0,4376_7778022_100710,4376_141 -4289_75976,271,4376_12779,Heuston Station,105238016,0,4376_7778022_100710,4376_141 -4289_75961,269,4376_1278,DCU Helix,106232488,0,4376_7778022_104080,4376_14 -4289_75976,115,4376_12780,Heuston Station,105218016,0,4376_7778022_100710,4376_141 -4289_75976,260,4376_12781,Heuston Station,105312680,0,4376_7778022_101170,4376_139 -4289_75976,261,4376_12782,Heuston Station,105322680,0,4376_7778022_101170,4376_139 -4289_75976,262,4376_12783,Heuston Station,105432680,0,4376_7778022_101170,4376_139 -4289_75976,263,4376_12784,Heuston Station,105542680,0,4376_7778022_101170,4376_139 -4289_75976,264,4376_12785,Heuston Station,105652680,0,4376_7778022_101170,4376_139 -4289_75976,265,4376_12786,Heuston Station,105812680,0,4376_7778022_101170,4376_139 -4289_75976,266,4376_12787,Heuston Station,105822680,0,4376_7778022_101170,4376_139 -4289_75976,267,4376_12788,Heuston Station,106052680,0,4376_7778022_101170,4376_139 -4289_75976,268,4376_12789,Heuston Station,106142680,0,4376_7778022_101170,4376_139 -4289_75961,259,4376_1279,DCU Helix,105765210,0,4376_7778022_104100,4376_15 -4289_75976,269,4376_12790,Heuston Station,106232680,0,4376_7778022_101170,4376_139 -4289_75976,259,4376_12791,Heuston Station,105765384,0,4376_7778022_100900,4376_140 -4289_75976,270,4376_12792,Heuston Station,105278050,0,4376_7778022_100690,4376_141 -4289_75976,146,4376_12793,Heuston Station,105248050,0,4376_7778022_100690,4376_141 -4289_75976,271,4376_12794,Heuston Station,105238050,0,4376_7778022_100690,4376_141 -4289_75976,115,4376_12795,Heuston Station,105218050,0,4376_7778022_100690,4376_141 -4289_75976,260,4376_12796,Heuston Station,105312734,0,4376_7778022_101112,4376_139 -4289_75976,261,4376_12797,Heuston Station,105322734,0,4376_7778022_101112,4376_139 -4289_75976,262,4376_12798,Heuston Station,105432734,0,4376_7778022_101112,4376_139 -4289_75976,263,4376_12799,Heuston Station,105542734,0,4376_7778022_101112,4376_139 -4289_75960,261,4376_128,Sutton Station,105321594,0,4376_7778022_103502,4376_1 -4289_75961,270,4376_1280,DCU Helix,105277896,0,4376_7778022_104080,4376_17 -4289_75976,264,4376_12800,Heuston Station,105652734,0,4376_7778022_101112,4376_139 -4289_75976,265,4376_12801,Heuston Station,105812734,0,4376_7778022_101112,4376_139 -4289_75976,266,4376_12802,Heuston Station,105822734,0,4376_7778022_101112,4376_139 -4289_75976,267,4376_12803,Heuston Station,106052734,0,4376_7778022_101112,4376_139 -4289_75976,268,4376_12804,Heuston Station,106142734,0,4376_7778022_101112,4376_139 -4289_75976,269,4376_12805,Heuston Station,106232734,0,4376_7778022_101112,4376_139 -4289_75976,259,4376_12806,Heuston Station,105765432,0,4376_7778022_100880,4376_140 -4289_75976,270,4376_12807,Heuston Station,105278096,0,4376_7778022_100700,4376_141 -4289_75976,146,4376_12808,Heuston Station,105248096,0,4376_7778022_100700,4376_141 -4289_75976,271,4376_12809,Heuston Station,105238096,0,4376_7778022_100700,4376_141 -4289_75961,146,4376_1281,DCU Helix,105247896,0,4376_7778022_104080,4376_17 -4289_75976,115,4376_12810,Heuston Station,105218096,0,4376_7778022_100700,4376_141 -4289_75976,260,4376_12811,Heuston Station,105312776,0,4376_7778022_101190,4376_139 -4289_75976,261,4376_12812,Heuston Station,105322776,0,4376_7778022_101190,4376_139 -4289_75976,262,4376_12813,Heuston Station,105432776,0,4376_7778022_101190,4376_139 -4289_75976,263,4376_12814,Heuston Station,105542776,0,4376_7778022_101190,4376_139 -4289_75976,264,4376_12815,Heuston Station,105652776,0,4376_7778022_101190,4376_139 -4289_75976,265,4376_12816,Heuston Station,105812776,0,4376_7778022_101190,4376_139 -4289_75976,266,4376_12817,Heuston Station,105822776,0,4376_7778022_101190,4376_139 -4289_75976,267,4376_12818,Heuston Station,106052776,0,4376_7778022_101190,4376_139 -4289_75976,268,4376_12819,Heuston Station,106142776,0,4376_7778022_101190,4376_139 -4289_75961,271,4376_1282,DCU Helix,105237896,0,4376_7778022_104080,4376_17 -4289_75976,269,4376_12820,Heuston Station,106232776,0,4376_7778022_101190,4376_139 -4289_75976,259,4376_12821,Heuston Station,105765472,0,4376_7778022_100860,4376_140 -4289_75976,270,4376_12822,Heuston Station,105278124,0,4376_7778022_100680,4376_141 -4289_75976,146,4376_12823,Heuston Station,105248124,0,4376_7778022_100680,4376_141 -4289_75976,271,4376_12824,Heuston Station,105238124,0,4376_7778022_100680,4376_141 -4289_75976,115,4376_12825,Heuston Station,105218124,0,4376_7778022_100680,4376_141 -4289_75976,260,4376_12826,Heuston Station,105312826,0,4376_7778022_101180,4376_139 -4289_75976,261,4376_12827,Heuston Station,105322826,0,4376_7778022_101180,4376_139 -4289_75976,262,4376_12828,Heuston Station,105432826,0,4376_7778022_101180,4376_139 -4289_75976,263,4376_12829,Heuston Station,105542826,0,4376_7778022_101180,4376_139 -4289_75961,115,4376_1283,DCU Helix,105217896,0,4376_7778022_104080,4376_17 -4289_75976,264,4376_12830,Heuston Station,105652826,0,4376_7778022_101180,4376_139 -4289_75976,265,4376_12831,Heuston Station,105812826,0,4376_7778022_101180,4376_139 -4289_75976,266,4376_12832,Heuston Station,105822826,0,4376_7778022_101180,4376_139 -4289_75976,267,4376_12833,Heuston Station,106052826,0,4376_7778022_101180,4376_139 -4289_75976,268,4376_12834,Heuston Station,106142826,0,4376_7778022_101180,4376_139 -4289_75976,269,4376_12835,Heuston Station,106232826,0,4376_7778022_101180,4376_139 -4289_75976,259,4376_12836,Heuston Station,105765514,0,4376_7778022_100870,4376_140 -4289_75976,270,4376_12837,Heuston Station,105278170,0,4376_7778022_100710,4376_141 -4289_75976,146,4376_12838,Heuston Station,105248170,0,4376_7778022_100710,4376_141 -4289_75976,271,4376_12839,Heuston Station,105238170,0,4376_7778022_100710,4376_141 -4289_75961,260,4376_1284,DCU Helix,105312598,0,4376_7778022_104170,4376_14 -4289_75976,115,4376_12840,Heuston Station,105218170,0,4376_7778022_100710,4376_141 -4289_75976,260,4376_12841,Heuston Station,105312870,0,4376_7778022_101170,4376_139 -4289_75976,261,4376_12842,Heuston Station,105322870,0,4376_7778022_101170,4376_139 -4289_75976,262,4376_12843,Heuston Station,105432870,0,4376_7778022_101170,4376_139 -4289_75976,263,4376_12844,Heuston Station,105542870,0,4376_7778022_101170,4376_139 -4289_75976,264,4376_12845,Heuston Station,105652870,0,4376_7778022_101170,4376_139 -4289_75976,265,4376_12846,Heuston Station,105812870,0,4376_7778022_101170,4376_139 -4289_75976,266,4376_12847,Heuston Station,105822870,0,4376_7778022_101170,4376_139 -4289_75976,267,4376_12848,Heuston Station,106052870,0,4376_7778022_101170,4376_139 -4289_75976,268,4376_12849,Heuston Station,106142870,0,4376_7778022_101170,4376_139 -4289_75961,261,4376_1285,DCU Helix,105322598,0,4376_7778022_104170,4376_14 -4289_75976,269,4376_12850,Heuston Station,106232870,0,4376_7778022_101170,4376_139 -4289_75976,259,4376_12851,Heuston Station,105765556,0,4376_7778022_100900,4376_140 -4289_75976,270,4376_12852,Heuston Station,105278202,0,4376_7778022_100690,4376_141 -4289_75976,146,4376_12853,Heuston Station,105248202,0,4376_7778022_100690,4376_141 -4289_75976,271,4376_12854,Heuston Station,105238202,0,4376_7778022_100690,4376_141 -4289_75976,115,4376_12855,Heuston Station,105218202,0,4376_7778022_100690,4376_141 -4289_75976,260,4376_12856,Heuston Station,105312918,0,4376_7778022_101112,4376_139 -4289_75976,261,4376_12857,Heuston Station,105322918,0,4376_7778022_101112,4376_139 -4289_75976,262,4376_12858,Heuston Station,105432918,0,4376_7778022_101112,4376_139 -4289_75976,263,4376_12859,Heuston Station,105542918,0,4376_7778022_101112,4376_139 -4289_75961,262,4376_1286,DCU Helix,105432598,0,4376_7778022_104170,4376_14 -4289_75976,264,4376_12860,Heuston Station,105652918,0,4376_7778022_101112,4376_139 -4289_75976,265,4376_12861,Heuston Station,105812918,0,4376_7778022_101112,4376_139 -4289_75976,266,4376_12862,Heuston Station,105822918,0,4376_7778022_101112,4376_139 -4289_75976,267,4376_12863,Heuston Station,106052918,0,4376_7778022_101112,4376_139 -4289_75976,268,4376_12864,Heuston Station,106142918,0,4376_7778022_101112,4376_139 -4289_75976,269,4376_12865,Heuston Station,106232918,0,4376_7778022_101112,4376_139 -4289_75976,259,4376_12866,Heuston Station,105765594,0,4376_7778022_100880,4376_140 -4289_75976,270,4376_12867,Heuston Station,105278244,0,4376_7778022_100700,4376_141 -4289_75976,146,4376_12868,Heuston Station,105248244,0,4376_7778022_100700,4376_141 -4289_75976,271,4376_12869,Heuston Station,105238244,0,4376_7778022_100700,4376_141 -4289_75961,263,4376_1287,DCU Helix,105542598,0,4376_7778022_104170,4376_14 -4289_75976,115,4376_12870,Heuston Station,105218244,0,4376_7778022_100700,4376_141 -4289_75976,260,4376_12871,Heuston Station,105312962,0,4376_7778022_101190,4376_139 -4289_75976,261,4376_12872,Heuston Station,105322962,0,4376_7778022_101190,4376_139 -4289_75976,262,4376_12873,Heuston Station,105432962,0,4376_7778022_101190,4376_139 -4289_75976,263,4376_12874,Heuston Station,105542962,0,4376_7778022_101190,4376_139 -4289_75976,264,4376_12875,Heuston Station,105652962,0,4376_7778022_101190,4376_139 -4289_75976,265,4376_12876,Heuston Station,105812962,0,4376_7778022_101190,4376_139 -4289_75976,266,4376_12877,Heuston Station,105822962,0,4376_7778022_101190,4376_139 -4289_75976,267,4376_12878,Heuston Station,106052962,0,4376_7778022_101190,4376_139 -4289_75976,268,4376_12879,Heuston Station,106142962,0,4376_7778022_101190,4376_139 -4289_75961,264,4376_1288,DCU Helix,105652598,0,4376_7778022_104170,4376_14 -4289_75976,269,4376_12880,Heuston Station,106232962,0,4376_7778022_101190,4376_139 -4289_75976,259,4376_12881,Heuston Station,105765634,0,4376_7778022_100860,4376_140 -4289_75976,270,4376_12882,Heuston Station,105278276,0,4376_7778022_100680,4376_141 -4289_75976,146,4376_12883,Heuston Station,105248276,0,4376_7778022_100680,4376_141 -4289_75976,271,4376_12884,Heuston Station,105238276,0,4376_7778022_100680,4376_141 -4289_75976,115,4376_12885,Heuston Station,105218276,0,4376_7778022_100680,4376_141 -4289_75976,260,4376_12886,Heuston Station,105312992,0,4376_7778022_101180,4376_139 -4289_75976,261,4376_12887,Heuston Station,105322992,0,4376_7778022_101180,4376_139 -4289_75976,262,4376_12888,Heuston Station,105432992,0,4376_7778022_101180,4376_139 -4289_75976,263,4376_12889,Heuston Station,105542992,0,4376_7778022_101180,4376_139 -4289_75961,265,4376_1289,DCU Helix,105812598,0,4376_7778022_104170,4376_14 -4289_75976,264,4376_12890,Heuston Station,105652992,0,4376_7778022_101180,4376_139 -4289_75976,265,4376_12891,Heuston Station,105812992,0,4376_7778022_101180,4376_139 -4289_75976,266,4376_12892,Heuston Station,105822992,0,4376_7778022_101180,4376_139 -4289_75976,267,4376_12893,Heuston Station,106052992,0,4376_7778022_101180,4376_139 -4289_75976,268,4376_12894,Heuston Station,106142992,0,4376_7778022_101180,4376_139 -4289_75976,269,4376_12895,Heuston Station,106232992,0,4376_7778022_101180,4376_139 -4289_75976,259,4376_12896,Heuston Station,105765664,0,4376_7778022_100870,4376_140 -4289_75976,270,4376_12897,Heuston Station,105278308,0,4376_7778022_100710,4376_141 -4289_75976,146,4376_12898,Heuston Station,105248308,0,4376_7778022_100710,4376_141 -4289_75976,271,4376_12899,Heuston Station,105238308,0,4376_7778022_100710,4376_141 -4289_75960,262,4376_129,Sutton Station,105431594,0,4376_7778022_103502,4376_1 -4289_75961,266,4376_1290,DCU Helix,105822598,0,4376_7778022_104170,4376_14 -4289_75976,115,4376_12900,Heuston Station,105218308,0,4376_7778022_100710,4376_141 -4289_75976,260,4376_12901,Heuston Station,105313010,0,4376_7778022_101170,4376_139 -4289_75976,261,4376_12902,Heuston Station,105323010,0,4376_7778022_101170,4376_139 -4289_75976,262,4376_12903,Heuston Station,105433010,0,4376_7778022_101170,4376_139 -4289_75976,263,4376_12904,Heuston Station,105543010,0,4376_7778022_101170,4376_139 -4289_75976,264,4376_12905,Heuston Station,105653010,0,4376_7778022_101170,4376_139 -4289_75976,265,4376_12906,Heuston Station,105813010,0,4376_7778022_101170,4376_139 -4289_75976,266,4376_12907,Heuston Station,105823010,0,4376_7778022_101170,4376_139 -4289_75976,267,4376_12908,Heuston Station,106053010,0,4376_7778022_101170,4376_139 -4289_75976,268,4376_12909,Heuston Station,106143010,0,4376_7778022_101170,4376_139 -4289_75961,267,4376_1291,DCU Helix,106052598,0,4376_7778022_104170,4376_14 -4289_75976,269,4376_12910,Heuston Station,106233010,0,4376_7778022_101170,4376_139 -4289_75976,259,4376_12911,Heuston Station,105765682,0,4376_7778022_100900,4376_140 -4289_75976,270,4376_12912,Heuston Station,105278324,0,4376_7778022_100690,4376_141 -4289_75976,146,4376_12913,Heuston Station,105248324,0,4376_7778022_100690,4376_141 -4289_75976,271,4376_12914,Heuston Station,105238324,0,4376_7778022_100690,4376_141 -4289_75976,115,4376_12915,Heuston Station,105218324,0,4376_7778022_100690,4376_141 -4289_75976,260,4376_12916,Clontarf Station,105311005,1,4376_7778022_101120,4376_142 -4289_75976,261,4376_12917,Clontarf Station,105321005,1,4376_7778022_101120,4376_142 -4289_75976,262,4376_12918,Clontarf Station,105431005,1,4376_7778022_101120,4376_142 -4289_75976,263,4376_12919,Clontarf Station,105541005,1,4376_7778022_101120,4376_142 -4289_75961,268,4376_1292,DCU Helix,106142598,0,4376_7778022_104170,4376_14 -4289_75976,264,4376_12920,Clontarf Station,105651005,1,4376_7778022_101120,4376_142 -4289_75976,265,4376_12921,Clontarf Station,105811005,1,4376_7778022_101120,4376_142 -4289_75976,266,4376_12922,Clontarf Station,105821005,1,4376_7778022_101120,4376_142 -4289_75976,267,4376_12923,Clontarf Station,106051005,1,4376_7778022_101120,4376_142 -4289_75976,268,4376_12924,Clontarf Station,106141005,1,4376_7778022_101120,4376_142 -4289_75976,269,4376_12925,Clontarf Station,106231005,1,4376_7778022_101120,4376_142 -4289_75976,259,4376_12926,Clontarf Station,105764003,1,4376_7778022_100870,4376_142 -4289_75976,260,4376_12927,Clontarf Station,105311023,1,4376_7778022_101131,4376_142 -4289_75976,261,4376_12928,Clontarf Station,105321023,1,4376_7778022_101131,4376_142 -4289_75976,262,4376_12929,Clontarf Station,105431023,1,4376_7778022_101131,4376_142 -4289_75961,269,4376_1293,DCU Helix,106232598,0,4376_7778022_104170,4376_14 -4289_75976,263,4376_12930,Clontarf Station,105541023,1,4376_7778022_101131,4376_142 -4289_75976,264,4376_12931,Clontarf Station,105651023,1,4376_7778022_101131,4376_142 -4289_75976,265,4376_12932,Clontarf Station,105811023,1,4376_7778022_101131,4376_142 -4289_75976,266,4376_12933,Clontarf Station,105821023,1,4376_7778022_101131,4376_142 -4289_75976,267,4376_12934,Clontarf Station,106051023,1,4376_7778022_101131,4376_142 -4289_75976,268,4376_12935,Clontarf Station,106141023,1,4376_7778022_101131,4376_142 -4289_75976,269,4376_12936,Clontarf Station,106231023,1,4376_7778022_101131,4376_142 -4289_75976,259,4376_12937,Clontarf Station,105764021,1,4376_7778022_100880,4376_142 -4289_75976,260,4376_12938,Clontarf Station,105311047,1,4376_7778022_101151,4376_142 -4289_75976,261,4376_12939,Clontarf Station,105321047,1,4376_7778022_101151,4376_142 -4289_75961,259,4376_1294,DCU Helix,105765314,0,4376_7778022_104090,4376_15 -4289_75976,262,4376_12940,Clontarf Station,105431047,1,4376_7778022_101151,4376_142 -4289_75976,263,4376_12941,Clontarf Station,105541047,1,4376_7778022_101151,4376_142 -4289_75976,264,4376_12942,Clontarf Station,105651047,1,4376_7778022_101151,4376_142 -4289_75976,265,4376_12943,Clontarf Station,105811047,1,4376_7778022_101151,4376_142 -4289_75976,266,4376_12944,Clontarf Station,105821047,1,4376_7778022_101151,4376_142 -4289_75976,267,4376_12945,Clontarf Station,106051047,1,4376_7778022_101151,4376_142 -4289_75976,268,4376_12946,Clontarf Station,106141047,1,4376_7778022_101151,4376_142 -4289_75976,269,4376_12947,Clontarf Station,106231047,1,4376_7778022_101151,4376_142 -4289_75976,260,4376_12948,Clontarf Station,105311075,1,4376_7778022_101111,4376_142 -4289_75976,261,4376_12949,Clontarf Station,105321075,1,4376_7778022_101111,4376_142 -4289_75961,270,4376_1295,DCU Helix,105277986,0,4376_7778022_104070,4376_17 -4289_75976,262,4376_12950,Clontarf Station,105431075,1,4376_7778022_101111,4376_142 -4289_75976,263,4376_12951,Clontarf Station,105541075,1,4376_7778022_101111,4376_142 -4289_75976,264,4376_12952,Clontarf Station,105651075,1,4376_7778022_101111,4376_142 -4289_75976,265,4376_12953,Clontarf Station,105811075,1,4376_7778022_101111,4376_142 -4289_75976,266,4376_12954,Clontarf Station,105821075,1,4376_7778022_101111,4376_142 -4289_75976,267,4376_12955,Clontarf Station,106051075,1,4376_7778022_101111,4376_142 -4289_75976,268,4376_12956,Clontarf Station,106141075,1,4376_7778022_101111,4376_142 -4289_75976,269,4376_12957,Clontarf Station,106231075,1,4376_7778022_101111,4376_142 -4289_75976,259,4376_12958,Clontarf Station,105764049,1,4376_7778022_100860,4376_143 -4289_75976,260,4376_12959,Clontarf Station,105311101,1,4376_7778022_101140,4376_142 -4289_75961,146,4376_1296,DCU Helix,105247986,0,4376_7778022_104070,4376_17 -4289_75976,261,4376_12960,Clontarf Station,105321101,1,4376_7778022_101140,4376_142 -4289_75976,262,4376_12961,Clontarf Station,105431101,1,4376_7778022_101140,4376_142 -4289_75976,263,4376_12962,Clontarf Station,105541101,1,4376_7778022_101140,4376_142 -4289_75976,264,4376_12963,Clontarf Station,105651101,1,4376_7778022_101140,4376_142 -4289_75976,265,4376_12964,Clontarf Station,105811101,1,4376_7778022_101140,4376_142 -4289_75976,266,4376_12965,Clontarf Station,105821101,1,4376_7778022_101140,4376_142 -4289_75976,267,4376_12966,Clontarf Station,106051101,1,4376_7778022_101140,4376_142 -4289_75976,268,4376_12967,Clontarf Station,106141101,1,4376_7778022_101140,4376_142 -4289_75976,269,4376_12968,Clontarf Station,106231101,1,4376_7778022_101140,4376_142 -4289_75976,260,4376_12969,Clontarf Station,105311135,1,4376_7778022_101170,4376_142 -4289_75961,271,4376_1297,DCU Helix,105237986,0,4376_7778022_104070,4376_17 -4289_75976,261,4376_12970,Clontarf Station,105321135,1,4376_7778022_101170,4376_142 -4289_75976,262,4376_12971,Clontarf Station,105431135,1,4376_7778022_101170,4376_142 -4289_75976,263,4376_12972,Clontarf Station,105541135,1,4376_7778022_101170,4376_142 -4289_75976,264,4376_12973,Clontarf Station,105651135,1,4376_7778022_101170,4376_142 -4289_75976,265,4376_12974,Clontarf Station,105811135,1,4376_7778022_101170,4376_142 -4289_75976,266,4376_12975,Clontarf Station,105821135,1,4376_7778022_101170,4376_142 -4289_75976,267,4376_12976,Clontarf Station,106051135,1,4376_7778022_101170,4376_142 -4289_75976,268,4376_12977,Clontarf Station,106141135,1,4376_7778022_101170,4376_142 -4289_75976,269,4376_12978,Clontarf Station,106231135,1,4376_7778022_101170,4376_142 -4289_75976,259,4376_12979,Clontarf Station,105764079,1,4376_7778022_100870,4376_143 -4289_75961,115,4376_1298,DCU Helix,105217986,0,4376_7778022_104070,4376_17 -4289_75976,260,4376_12980,Clontarf Station,105311163,1,4376_7778022_101120,4376_142 -4289_75976,261,4376_12981,Clontarf Station,105321163,1,4376_7778022_101120,4376_142 -4289_75976,262,4376_12982,Clontarf Station,105431163,1,4376_7778022_101120,4376_142 -4289_75976,263,4376_12983,Clontarf Station,105541163,1,4376_7778022_101120,4376_142 -4289_75976,264,4376_12984,Clontarf Station,105651163,1,4376_7778022_101120,4376_142 -4289_75976,265,4376_12985,Clontarf Station,105811163,1,4376_7778022_101120,4376_142 -4289_75976,266,4376_12986,Clontarf Station,105821163,1,4376_7778022_101120,4376_142 -4289_75976,267,4376_12987,Clontarf Station,106051163,1,4376_7778022_101120,4376_142 -4289_75976,268,4376_12988,Clontarf Station,106141163,1,4376_7778022_101120,4376_142 -4289_75976,269,4376_12989,Clontarf Station,106231163,1,4376_7778022_101120,4376_142 -4289_75961,260,4376_1299,DCU Helix,105312704,0,4376_7778022_104190,4376_14 -4289_75976,270,4376_12990,Clontarf Station,105277003,1,4376_7778022_100690,4376_142 -4289_75976,146,4376_12991,Clontarf Station,105247003,1,4376_7778022_100690,4376_142 -4289_75976,271,4376_12992,Clontarf Station,105237003,1,4376_7778022_100690,4376_142 -4289_75976,115,4376_12993,Clontarf Station,105217003,1,4376_7778022_100690,4376_142 -4289_75976,260,4376_12994,Clontarf Station,105311187,1,4376_7778022_101131,4376_142 -4289_75976,261,4376_12995,Clontarf Station,105321187,1,4376_7778022_101131,4376_142 -4289_75976,262,4376_12996,Clontarf Station,105431187,1,4376_7778022_101131,4376_142 -4289_75976,263,4376_12997,Clontarf Station,105541187,1,4376_7778022_101131,4376_142 -4289_75976,264,4376_12998,Clontarf Station,105651187,1,4376_7778022_101131,4376_142 -4289_75976,265,4376_12999,Clontarf Station,105811187,1,4376_7778022_101131,4376_142 -4289_75960,260,4376_13,Sutton Station,105311070,0,4376_7778022_103107,4376_1 -4289_75960,263,4376_130,Sutton Station,105541594,0,4376_7778022_103502,4376_1 -4289_75961,261,4376_1300,DCU Helix,105322704,0,4376_7778022_104190,4376_14 -4289_75976,266,4376_13000,Clontarf Station,105821187,1,4376_7778022_101131,4376_142 -4289_75976,267,4376_13001,Clontarf Station,106051187,1,4376_7778022_101131,4376_142 -4289_75976,268,4376_13002,Clontarf Station,106141187,1,4376_7778022_101131,4376_142 -4289_75976,269,4376_13003,Clontarf Station,106231187,1,4376_7778022_101131,4376_142 -4289_75976,259,4376_13004,Clontarf Station,105764125,1,4376_7778022_100890,4376_143 -4289_75976,260,4376_13005,Clontarf Station,105311219,1,4376_7778022_101160,4376_142 -4289_75976,261,4376_13006,Clontarf Station,105321219,1,4376_7778022_101160,4376_142 -4289_75976,262,4376_13007,Clontarf Station,105431219,1,4376_7778022_101160,4376_142 -4289_75976,263,4376_13008,Clontarf Station,105541219,1,4376_7778022_101160,4376_142 -4289_75976,264,4376_13009,Clontarf Station,105651219,1,4376_7778022_101160,4376_142 -4289_75961,262,4376_1301,DCU Helix,105432704,0,4376_7778022_104190,4376_14 -4289_75976,265,4376_13010,Clontarf Station,105811219,1,4376_7778022_101160,4376_142 -4289_75976,266,4376_13011,Clontarf Station,105821219,1,4376_7778022_101160,4376_142 -4289_75976,267,4376_13012,Clontarf Station,106051219,1,4376_7778022_101160,4376_142 -4289_75976,268,4376_13013,Clontarf Station,106141219,1,4376_7778022_101160,4376_142 -4289_75976,269,4376_13014,Clontarf Station,106231219,1,4376_7778022_101160,4376_142 -4289_75976,260,4376_13015,Clontarf Station,105311255,1,4376_7778022_101151,4376_142 -4289_75976,261,4376_13016,Clontarf Station,105321255,1,4376_7778022_101151,4376_142 -4289_75976,262,4376_13017,Clontarf Station,105431255,1,4376_7778022_101151,4376_142 -4289_75976,263,4376_13018,Clontarf Station,105541255,1,4376_7778022_101151,4376_142 -4289_75976,264,4376_13019,Clontarf Station,105651255,1,4376_7778022_101151,4376_142 -4289_75961,263,4376_1302,DCU Helix,105542704,0,4376_7778022_104190,4376_14 -4289_75976,265,4376_13020,Clontarf Station,105811255,1,4376_7778022_101151,4376_142 -4289_75976,266,4376_13021,Clontarf Station,105821255,1,4376_7778022_101151,4376_142 -4289_75976,267,4376_13022,Clontarf Station,106051255,1,4376_7778022_101151,4376_142 -4289_75976,268,4376_13023,Clontarf Station,106141255,1,4376_7778022_101151,4376_142 -4289_75976,269,4376_13024,Clontarf Station,106231255,1,4376_7778022_101151,4376_142 -4289_75976,259,4376_13025,Clontarf Station,105764163,1,4376_7778022_100880,4376_143 -4289_75976,260,4376_13026,Clontarf Station,105311299,1,4376_7778022_101190,4376_142 -4289_75976,261,4376_13027,Clontarf Station,105321299,1,4376_7778022_101190,4376_142 -4289_75976,262,4376_13028,Clontarf Station,105431299,1,4376_7778022_101190,4376_142 -4289_75976,263,4376_13029,Clontarf Station,105541299,1,4376_7778022_101190,4376_142 -4289_75961,264,4376_1303,DCU Helix,105652704,0,4376_7778022_104190,4376_14 -4289_75976,264,4376_13030,Clontarf Station,105651299,1,4376_7778022_101190,4376_142 -4289_75976,265,4376_13031,Clontarf Station,105811299,1,4376_7778022_101190,4376_142 -4289_75976,266,4376_13032,Clontarf Station,105821299,1,4376_7778022_101190,4376_142 -4289_75976,267,4376_13033,Clontarf Station,106051299,1,4376_7778022_101190,4376_142 -4289_75976,268,4376_13034,Clontarf Station,106141299,1,4376_7778022_101190,4376_142 -4289_75976,269,4376_13035,Clontarf Station,106231299,1,4376_7778022_101190,4376_142 -4289_75976,260,4376_13036,Clontarf Station,105311333,1,4376_7778022_101111,4376_142 -4289_75976,261,4376_13037,Clontarf Station,105321333,1,4376_7778022_101111,4376_142 -4289_75976,262,4376_13038,Clontarf Station,105431333,1,4376_7778022_101111,4376_142 -4289_75976,263,4376_13039,Clontarf Station,105541333,1,4376_7778022_101111,4376_142 -4289_75961,265,4376_1304,DCU Helix,105812704,0,4376_7778022_104190,4376_14 -4289_75976,264,4376_13040,Clontarf Station,105651333,1,4376_7778022_101111,4376_142 -4289_75976,265,4376_13041,Clontarf Station,105811333,1,4376_7778022_101111,4376_142 -4289_75976,266,4376_13042,Clontarf Station,105821333,1,4376_7778022_101111,4376_142 -4289_75976,267,4376_13043,Clontarf Station,106051333,1,4376_7778022_101111,4376_142 -4289_75976,268,4376_13044,Clontarf Station,106141333,1,4376_7778022_101111,4376_142 -4289_75976,269,4376_13045,Clontarf Station,106231333,1,4376_7778022_101111,4376_142 -4289_75976,259,4376_13046,Clontarf Station,105764207,1,4376_7778022_100860,4376_143 -4289_75976,270,4376_13047,Clontarf Station,105277045,1,4376_7778022_100680,4376_144 -4289_75976,146,4376_13048,Clontarf Station,105247045,1,4376_7778022_100680,4376_144 -4289_75976,271,4376_13049,Clontarf Station,105237045,1,4376_7778022_100680,4376_144 -4289_75961,266,4376_1305,DCU Helix,105822704,0,4376_7778022_104190,4376_14 -4289_75976,115,4376_13050,Clontarf Station,105217045,1,4376_7778022_100680,4376_144 -4289_75976,260,4376_13051,Clontarf Station,105311359,1,4376_7778022_101180,4376_142 -4289_75976,261,4376_13052,Clontarf Station,105321359,1,4376_7778022_101180,4376_142 -4289_75976,262,4376_13053,Clontarf Station,105431359,1,4376_7778022_101180,4376_142 -4289_75976,263,4376_13054,Clontarf Station,105541359,1,4376_7778022_101180,4376_142 -4289_75976,264,4376_13055,Clontarf Station,105651359,1,4376_7778022_101180,4376_142 -4289_75976,265,4376_13056,Clontarf Station,105811359,1,4376_7778022_101180,4376_142 -4289_75976,266,4376_13057,Clontarf Station,105821359,1,4376_7778022_101180,4376_142 -4289_75976,267,4376_13058,Clontarf Station,106051359,1,4376_7778022_101180,4376_142 -4289_75976,268,4376_13059,Clontarf Station,106141359,1,4376_7778022_101180,4376_142 -4289_75961,267,4376_1306,DCU Helix,106052704,0,4376_7778022_104190,4376_14 -4289_75976,269,4376_13060,Clontarf Station,106231359,1,4376_7778022_101180,4376_142 -4289_75976,260,4376_13061,Clontarf Station,105311385,1,4376_7778022_101140,4376_142 -4289_75976,261,4376_13062,Clontarf Station,105321385,1,4376_7778022_101140,4376_142 -4289_75976,262,4376_13063,Clontarf Station,105431385,1,4376_7778022_101140,4376_142 -4289_75976,263,4376_13064,Clontarf Station,105541385,1,4376_7778022_101140,4376_142 -4289_75976,264,4376_13065,Clontarf Station,105651385,1,4376_7778022_101140,4376_142 -4289_75976,265,4376_13066,Clontarf Station,105811385,1,4376_7778022_101140,4376_142 -4289_75976,266,4376_13067,Clontarf Station,105821385,1,4376_7778022_101140,4376_142 -4289_75976,267,4376_13068,Clontarf Station,106051385,1,4376_7778022_101140,4376_142 -4289_75976,268,4376_13069,Clontarf Station,106141385,1,4376_7778022_101140,4376_142 -4289_75961,268,4376_1307,DCU Helix,106142704,0,4376_7778022_104190,4376_14 -4289_75976,269,4376_13070,Clontarf Station,106231385,1,4376_7778022_101140,4376_142 -4289_75976,259,4376_13071,Clontarf Station,105764253,1,4376_7778022_100870,4376_143 -4289_75976,260,4376_13072,Clontarf Station,105311421,1,4376_7778022_101170,4376_142 -4289_75976,261,4376_13073,Clontarf Station,105321421,1,4376_7778022_101170,4376_142 -4289_75976,262,4376_13074,Clontarf Station,105431421,1,4376_7778022_101170,4376_142 -4289_75976,263,4376_13075,Clontarf Station,105541421,1,4376_7778022_101170,4376_142 -4289_75976,264,4376_13076,Clontarf Station,105651421,1,4376_7778022_101170,4376_142 -4289_75976,265,4376_13077,Clontarf Station,105811421,1,4376_7778022_101170,4376_142 -4289_75976,266,4376_13078,Clontarf Station,105821421,1,4376_7778022_101170,4376_142 -4289_75976,267,4376_13079,Clontarf Station,106051421,1,4376_7778022_101170,4376_142 -4289_75961,269,4376_1308,DCU Helix,106232704,0,4376_7778022_104190,4376_14 -4289_75976,268,4376_13080,Clontarf Station,106141421,1,4376_7778022_101170,4376_142 -4289_75976,269,4376_13081,Clontarf Station,106231421,1,4376_7778022_101170,4376_142 -4289_75976,259,4376_13082,Clontarf Station,105764305,1,4376_7778022_100890,4376_142 -4289_75976,270,4376_13083,Clontarf Station,105277113,1,4376_7778022_100690,4376_143 -4289_75976,146,4376_13084,Clontarf Station,105247113,1,4376_7778022_100690,4376_143 -4289_75976,271,4376_13085,Clontarf Station,105237113,1,4376_7778022_100690,4376_143 -4289_75976,115,4376_13086,Clontarf Station,105217113,1,4376_7778022_100690,4376_143 -4289_75976,260,4376_13087,Clontarf Station,105311461,1,4376_7778022_101120,4376_142 -4289_75976,261,4376_13088,Clontarf Station,105321461,1,4376_7778022_101120,4376_142 -4289_75976,262,4376_13089,Clontarf Station,105431461,1,4376_7778022_101120,4376_142 -4289_75961,259,4376_1309,DCU Helix,105765404,0,4376_7778022_104150,4376_15 -4289_75976,263,4376_13090,Clontarf Station,105541461,1,4376_7778022_101120,4376_142 -4289_75976,264,4376_13091,Clontarf Station,105651461,1,4376_7778022_101120,4376_142 -4289_75976,265,4376_13092,Clontarf Station,105811461,1,4376_7778022_101120,4376_142 -4289_75976,266,4376_13093,Clontarf Station,105821461,1,4376_7778022_101120,4376_142 -4289_75976,267,4376_13094,Clontarf Station,106051461,1,4376_7778022_101120,4376_142 -4289_75976,268,4376_13095,Clontarf Station,106141461,1,4376_7778022_101120,4376_142 -4289_75976,269,4376_13096,Clontarf Station,106231461,1,4376_7778022_101120,4376_142 -4289_75976,260,4376_13097,Clontarf Station,105311497,1,4376_7778022_101200,4376_142 -4289_75976,261,4376_13098,Clontarf Station,105321497,1,4376_7778022_101200,4376_142 -4289_75976,262,4376_13099,Clontarf Station,105431497,1,4376_7778022_101200,4376_142 -4289_75960,264,4376_131,Sutton Station,105651594,0,4376_7778022_103502,4376_1 -4289_75961,270,4376_1310,DCU Helix,105278072,0,4376_7778022_104110,4376_17 -4289_75976,263,4376_13100,Clontarf Station,105541497,1,4376_7778022_101200,4376_142 -4289_75976,264,4376_13101,Clontarf Station,105651497,1,4376_7778022_101200,4376_142 -4289_75976,265,4376_13102,Clontarf Station,105811497,1,4376_7778022_101200,4376_142 -4289_75976,266,4376_13103,Clontarf Station,105821497,1,4376_7778022_101200,4376_142 -4289_75976,267,4376_13104,Clontarf Station,106051497,1,4376_7778022_101200,4376_142 -4289_75976,268,4376_13105,Clontarf Station,106141497,1,4376_7778022_101200,4376_142 -4289_75976,269,4376_13106,Clontarf Station,106231497,1,4376_7778022_101200,4376_142 -4289_75976,259,4376_13107,Clontarf Station,105764353,1,4376_7778022_100880,4376_143 -4289_75976,270,4376_13108,Clontarf Station,105277155,1,4376_7778022_100700,4376_144 -4289_75976,146,4376_13109,Clontarf Station,105247155,1,4376_7778022_100700,4376_144 -4289_75961,146,4376_1311,DCU Helix,105248072,0,4376_7778022_104110,4376_17 -4289_75976,271,4376_13110,Clontarf Station,105237155,1,4376_7778022_100700,4376_144 -4289_75976,115,4376_13111,Clontarf Station,105217155,1,4376_7778022_100700,4376_144 -4289_75976,260,4376_13112,Clontarf Station,105311533,1,4376_7778022_101160,4376_142 -4289_75976,261,4376_13113,Clontarf Station,105321533,1,4376_7778022_101160,4376_142 -4289_75976,262,4376_13114,Clontarf Station,105431533,1,4376_7778022_101160,4376_142 -4289_75976,263,4376_13115,Clontarf Station,105541533,1,4376_7778022_101160,4376_142 -4289_75976,264,4376_13116,Clontarf Station,105651533,1,4376_7778022_101160,4376_142 -4289_75976,265,4376_13117,Clontarf Station,105811533,1,4376_7778022_101160,4376_142 -4289_75976,266,4376_13118,Clontarf Station,105821533,1,4376_7778022_101160,4376_142 -4289_75976,267,4376_13119,Clontarf Station,106051533,1,4376_7778022_101160,4376_142 -4289_75961,271,4376_1312,DCU Helix,105238072,0,4376_7778022_104110,4376_17 -4289_75976,268,4376_13120,Clontarf Station,106141533,1,4376_7778022_101160,4376_142 -4289_75976,269,4376_13121,Clontarf Station,106231533,1,4376_7778022_101160,4376_142 -4289_75976,259,4376_13122,Clontarf Station,105764401,1,4376_7778022_100860,4376_142 -4289_75976,270,4376_13123,Clontarf Station,105277195,1,4376_7778022_100680,4376_143 -4289_75976,146,4376_13124,Clontarf Station,105247195,1,4376_7778022_100680,4376_143 -4289_75976,271,4376_13125,Clontarf Station,105237195,1,4376_7778022_100680,4376_143 -4289_75976,115,4376_13126,Clontarf Station,105217195,1,4376_7778022_100680,4376_143 -4289_75976,260,4376_13127,Clontarf Station,105311569,1,4376_7778022_101190,4376_142 -4289_75976,261,4376_13128,Clontarf Station,105321569,1,4376_7778022_101190,4376_142 -4289_75976,262,4376_13129,Clontarf Station,105431569,1,4376_7778022_101190,4376_142 -4289_75961,115,4376_1313,DCU Helix,105218072,0,4376_7778022_104110,4376_17 -4289_75976,263,4376_13130,Clontarf Station,105541569,1,4376_7778022_101190,4376_142 -4289_75976,264,4376_13131,Clontarf Station,105651569,1,4376_7778022_101190,4376_142 -4289_75976,265,4376_13132,Clontarf Station,105811569,1,4376_7778022_101190,4376_142 -4289_75976,266,4376_13133,Clontarf Station,105821569,1,4376_7778022_101190,4376_142 -4289_75976,267,4376_13134,Clontarf Station,106051569,1,4376_7778022_101190,4376_142 -4289_75976,268,4376_13135,Clontarf Station,106141569,1,4376_7778022_101190,4376_142 -4289_75976,269,4376_13136,Clontarf Station,106231569,1,4376_7778022_101190,4376_142 -4289_75976,260,4376_13137,Clontarf Station,105311605,1,4376_7778022_101180,4376_142 -4289_75976,261,4376_13138,Clontarf Station,105321605,1,4376_7778022_101180,4376_142 -4289_75976,262,4376_13139,Clontarf Station,105431605,1,4376_7778022_101180,4376_142 -4289_75961,260,4376_1314,DCU Helix,105312804,0,4376_7778022_104060,4376_14 -4289_75976,263,4376_13140,Clontarf Station,105541605,1,4376_7778022_101180,4376_142 -4289_75976,264,4376_13141,Clontarf Station,105651605,1,4376_7778022_101180,4376_142 -4289_75976,265,4376_13142,Clontarf Station,105811605,1,4376_7778022_101180,4376_142 -4289_75976,266,4376_13143,Clontarf Station,105821605,1,4376_7778022_101180,4376_142 -4289_75976,267,4376_13144,Clontarf Station,106051605,1,4376_7778022_101180,4376_142 -4289_75976,268,4376_13145,Clontarf Station,106141605,1,4376_7778022_101180,4376_142 -4289_75976,269,4376_13146,Clontarf Station,106231605,1,4376_7778022_101180,4376_142 -4289_75976,259,4376_13147,Clontarf Station,105764453,1,4376_7778022_100870,4376_143 -4289_75976,270,4376_13148,Clontarf Station,105277245,1,4376_7778022_100710,4376_144 -4289_75976,146,4376_13149,Clontarf Station,105247245,1,4376_7778022_100710,4376_144 -4289_75961,261,4376_1315,DCU Helix,105322804,0,4376_7778022_104060,4376_14 -4289_75976,271,4376_13150,Clontarf Station,105237245,1,4376_7778022_100710,4376_144 -4289_75976,115,4376_13151,Clontarf Station,105217245,1,4376_7778022_100710,4376_144 -4289_75976,260,4376_13152,Clontarf Station,105311639,1,4376_7778022_101140,4376_142 -4289_75976,261,4376_13153,Clontarf Station,105321639,1,4376_7778022_101140,4376_142 -4289_75976,262,4376_13154,Clontarf Station,105431639,1,4376_7778022_101140,4376_142 -4289_75976,263,4376_13155,Clontarf Station,105541639,1,4376_7778022_101140,4376_142 -4289_75976,264,4376_13156,Clontarf Station,105651639,1,4376_7778022_101140,4376_142 -4289_75976,265,4376_13157,Clontarf Station,105811639,1,4376_7778022_101140,4376_142 -4289_75976,266,4376_13158,Clontarf Station,105821639,1,4376_7778022_101140,4376_142 -4289_75976,267,4376_13159,Clontarf Station,106051639,1,4376_7778022_101140,4376_142 -4289_75961,262,4376_1316,DCU Helix,105432804,0,4376_7778022_104060,4376_14 -4289_75976,268,4376_13160,Clontarf Station,106141639,1,4376_7778022_101140,4376_142 -4289_75976,269,4376_13161,Clontarf Station,106231639,1,4376_7778022_101140,4376_142 -4289_75976,259,4376_13162,Clontarf Station,105764507,1,4376_7778022_100890,4376_142 -4289_75976,270,4376_13163,Clontarf Station,105277287,1,4376_7778022_100690,4376_143 -4289_75976,146,4376_13164,Clontarf Station,105247287,1,4376_7778022_100690,4376_143 -4289_75976,271,4376_13165,Clontarf Station,105237287,1,4376_7778022_100690,4376_143 -4289_75976,115,4376_13166,Clontarf Station,105217287,1,4376_7778022_100690,4376_143 -4289_75976,260,4376_13167,Clontarf Station,105311677,1,4376_7778022_101170,4376_142 -4289_75976,261,4376_13168,Clontarf Station,105321677,1,4376_7778022_101170,4376_142 -4289_75976,262,4376_13169,Clontarf Station,105431677,1,4376_7778022_101170,4376_142 -4289_75961,263,4376_1317,DCU Helix,105542804,0,4376_7778022_104060,4376_14 -4289_75976,263,4376_13170,Clontarf Station,105541677,1,4376_7778022_101170,4376_142 -4289_75976,264,4376_13171,Clontarf Station,105651677,1,4376_7778022_101170,4376_142 -4289_75976,265,4376_13172,Clontarf Station,105811677,1,4376_7778022_101170,4376_142 -4289_75976,266,4376_13173,Clontarf Station,105821677,1,4376_7778022_101170,4376_142 -4289_75976,267,4376_13174,Clontarf Station,106051677,1,4376_7778022_101170,4376_142 -4289_75976,268,4376_13175,Clontarf Station,106141677,1,4376_7778022_101170,4376_142 -4289_75976,269,4376_13176,Clontarf Station,106231677,1,4376_7778022_101170,4376_142 -4289_75976,260,4376_13177,Clontarf Station,105311709,1,4376_7778022_101120,4376_142 -4289_75976,261,4376_13178,Clontarf Station,105321709,1,4376_7778022_101120,4376_142 -4289_75976,262,4376_13179,Clontarf Station,105431709,1,4376_7778022_101120,4376_142 -4289_75961,264,4376_1318,DCU Helix,105652804,0,4376_7778022_104060,4376_14 -4289_75976,263,4376_13180,Clontarf Station,105541709,1,4376_7778022_101120,4376_142 -4289_75976,264,4376_13181,Clontarf Station,105651709,1,4376_7778022_101120,4376_142 -4289_75976,265,4376_13182,Clontarf Station,105811709,1,4376_7778022_101120,4376_142 -4289_75976,266,4376_13183,Clontarf Station,105821709,1,4376_7778022_101120,4376_142 -4289_75976,267,4376_13184,Clontarf Station,106051709,1,4376_7778022_101120,4376_142 -4289_75976,268,4376_13185,Clontarf Station,106141709,1,4376_7778022_101120,4376_142 -4289_75976,269,4376_13186,Clontarf Station,106231709,1,4376_7778022_101120,4376_142 -4289_75976,259,4376_13187,Clontarf Station,105764559,1,4376_7778022_100900,4376_143 -4289_75976,270,4376_13188,Clontarf Station,105277331,1,4376_7778022_100700,4376_144 -4289_75976,146,4376_13189,Clontarf Station,105247331,1,4376_7778022_100700,4376_144 -4289_75961,265,4376_1319,DCU Helix,105812804,0,4376_7778022_104060,4376_14 -4289_75976,271,4376_13190,Clontarf Station,105237331,1,4376_7778022_100700,4376_144 -4289_75976,115,4376_13191,Clontarf Station,105217331,1,4376_7778022_100700,4376_144 -4289_75976,260,4376_13192,Clontarf Station,105311747,1,4376_7778022_101200,4376_142 -4289_75976,261,4376_13193,Clontarf Station,105321747,1,4376_7778022_101200,4376_142 -4289_75976,262,4376_13194,Clontarf Station,105431747,1,4376_7778022_101200,4376_142 -4289_75976,263,4376_13195,Clontarf Station,105541747,1,4376_7778022_101200,4376_142 -4289_75976,264,4376_13196,Clontarf Station,105651747,1,4376_7778022_101200,4376_142 -4289_75976,265,4376_13197,Clontarf Station,105811747,1,4376_7778022_101200,4376_142 -4289_75976,266,4376_13198,Clontarf Station,105821747,1,4376_7778022_101200,4376_142 -4289_75976,267,4376_13199,Clontarf Station,106051747,1,4376_7778022_101200,4376_142 -4289_75960,265,4376_132,Sutton Station,105811594,0,4376_7778022_103502,4376_1 -4289_75961,266,4376_1320,DCU Helix,105822804,0,4376_7778022_104060,4376_14 -4289_75976,268,4376_13200,Clontarf Station,106141747,1,4376_7778022_101200,4376_142 -4289_75976,269,4376_13201,Clontarf Station,106231747,1,4376_7778022_101200,4376_142 -4289_75976,259,4376_13202,Clontarf Station,105764607,1,4376_7778022_100880,4376_142 -4289_75976,270,4376_13203,Clontarf Station,105277379,1,4376_7778022_100720,4376_143 -4289_75976,146,4376_13204,Clontarf Station,105247379,1,4376_7778022_100720,4376_143 -4289_75976,271,4376_13205,Clontarf Station,105237379,1,4376_7778022_100720,4376_143 -4289_75976,115,4376_13206,Clontarf Station,105217379,1,4376_7778022_100720,4376_143 -4289_75976,260,4376_13207,Clontarf Station,105311789,1,4376_7778022_101160,4376_142 -4289_75976,261,4376_13208,Clontarf Station,105321789,1,4376_7778022_101160,4376_142 -4289_75976,262,4376_13209,Clontarf Station,105431789,1,4376_7778022_101160,4376_142 -4289_75961,267,4376_1321,DCU Helix,106052804,0,4376_7778022_104060,4376_14 -4289_75976,263,4376_13210,Clontarf Station,105541789,1,4376_7778022_101160,4376_142 -4289_75976,264,4376_13211,Clontarf Station,105651789,1,4376_7778022_101160,4376_142 -4289_75976,265,4376_13212,Clontarf Station,105811789,1,4376_7778022_101160,4376_142 -4289_75976,266,4376_13213,Clontarf Station,105821789,1,4376_7778022_101160,4376_142 -4289_75976,267,4376_13214,Clontarf Station,106051789,1,4376_7778022_101160,4376_142 -4289_75976,268,4376_13215,Clontarf Station,106141789,1,4376_7778022_101160,4376_142 -4289_75976,269,4376_13216,Clontarf Station,106231789,1,4376_7778022_101160,4376_142 -4289_75976,260,4376_13217,Clontarf Station,105311825,1,4376_7778022_101190,4376_142 -4289_75976,261,4376_13218,Clontarf Station,105321825,1,4376_7778022_101190,4376_142 -4289_75976,262,4376_13219,Clontarf Station,105431825,1,4376_7778022_101190,4376_142 -4289_75961,268,4376_1322,DCU Helix,106142804,0,4376_7778022_104060,4376_14 -4289_75976,263,4376_13220,Clontarf Station,105541825,1,4376_7778022_101190,4376_142 -4289_75976,264,4376_13221,Clontarf Station,105651825,1,4376_7778022_101190,4376_142 -4289_75976,265,4376_13222,Clontarf Station,105811825,1,4376_7778022_101190,4376_142 -4289_75976,266,4376_13223,Clontarf Station,105821825,1,4376_7778022_101190,4376_142 -4289_75976,267,4376_13224,Clontarf Station,106051825,1,4376_7778022_101190,4376_142 -4289_75976,268,4376_13225,Clontarf Station,106141825,1,4376_7778022_101190,4376_142 -4289_75976,269,4376_13226,Clontarf Station,106231825,1,4376_7778022_101190,4376_142 -4289_75976,259,4376_13227,Clontarf Station,105764661,1,4376_7778022_100860,4376_143 -4289_75976,270,4376_13228,Clontarf Station,105277421,1,4376_7778022_100680,4376_144 -4289_75976,146,4376_13229,Clontarf Station,105247421,1,4376_7778022_100680,4376_144 -4289_75961,269,4376_1323,DCU Helix,106232804,0,4376_7778022_104060,4376_14 -4289_75976,271,4376_13230,Clontarf Station,105237421,1,4376_7778022_100680,4376_144 -4289_75976,115,4376_13231,Clontarf Station,105217421,1,4376_7778022_100680,4376_144 -4289_75976,260,4376_13232,Clontarf Station,105311865,1,4376_7778022_101180,4376_142 -4289_75976,261,4376_13233,Clontarf Station,105321865,1,4376_7778022_101180,4376_142 -4289_75976,262,4376_13234,Clontarf Station,105431865,1,4376_7778022_101180,4376_142 -4289_75976,263,4376_13235,Clontarf Station,105541865,1,4376_7778022_101180,4376_142 -4289_75976,264,4376_13236,Clontarf Station,105651865,1,4376_7778022_101180,4376_142 -4289_75976,265,4376_13237,Clontarf Station,105811865,1,4376_7778022_101180,4376_142 -4289_75976,266,4376_13238,Clontarf Station,105821865,1,4376_7778022_101180,4376_142 -4289_75976,267,4376_13239,Clontarf Station,106051865,1,4376_7778022_101180,4376_142 -4289_75961,259,4376_1324,DCU Helix,105765490,0,4376_7778022_104172,4376_15 -4289_75976,268,4376_13240,Clontarf Station,106141865,1,4376_7778022_101180,4376_142 -4289_75976,269,4376_13241,Clontarf Station,106231865,1,4376_7778022_101180,4376_142 -4289_75976,259,4376_13242,Clontarf Station,105764713,1,4376_7778022_100870,4376_142 -4289_75976,270,4376_13243,Clontarf Station,105277469,1,4376_7778022_100710,4376_143 -4289_75976,146,4376_13244,Clontarf Station,105247469,1,4376_7778022_100710,4376_143 -4289_75976,271,4376_13245,Clontarf Station,105237469,1,4376_7778022_100710,4376_143 -4289_75976,115,4376_13246,Clontarf Station,105217469,1,4376_7778022_100710,4376_143 -4289_75976,260,4376_13247,Clontarf Station,105311903,1,4376_7778022_101140,4376_142 -4289_75976,261,4376_13248,Clontarf Station,105321903,1,4376_7778022_101140,4376_142 -4289_75976,262,4376_13249,Clontarf Station,105431903,1,4376_7778022_101140,4376_142 -4289_75961,270,4376_1325,DCU Helix,105278150,0,4376_7778022_104130,4376_17 -4289_75976,263,4376_13250,Clontarf Station,105541903,1,4376_7778022_101140,4376_142 -4289_75976,264,4376_13251,Clontarf Station,105651903,1,4376_7778022_101140,4376_142 -4289_75976,265,4376_13252,Clontarf Station,105811903,1,4376_7778022_101140,4376_142 -4289_75976,266,4376_13253,Clontarf Station,105821903,1,4376_7778022_101140,4376_142 -4289_75976,267,4376_13254,Clontarf Station,106051903,1,4376_7778022_101140,4376_142 -4289_75976,268,4376_13255,Clontarf Station,106141903,1,4376_7778022_101140,4376_142 -4289_75976,269,4376_13256,Clontarf Station,106231903,1,4376_7778022_101140,4376_142 -4289_75976,260,4376_13257,Clontarf Station,105311935,1,4376_7778022_101170,4376_142 -4289_75976,261,4376_13258,Clontarf Station,105321935,1,4376_7778022_101170,4376_142 -4289_75976,262,4376_13259,Clontarf Station,105431935,1,4376_7778022_101170,4376_142 -4289_75961,146,4376_1326,DCU Helix,105248150,0,4376_7778022_104130,4376_17 -4289_75976,263,4376_13260,Clontarf Station,105541935,1,4376_7778022_101170,4376_142 -4289_75976,264,4376_13261,Clontarf Station,105651935,1,4376_7778022_101170,4376_142 -4289_75976,265,4376_13262,Clontarf Station,105811935,1,4376_7778022_101170,4376_142 -4289_75976,266,4376_13263,Clontarf Station,105821935,1,4376_7778022_101170,4376_142 -4289_75976,267,4376_13264,Clontarf Station,106051935,1,4376_7778022_101170,4376_142 -4289_75976,268,4376_13265,Clontarf Station,106141935,1,4376_7778022_101170,4376_142 -4289_75976,269,4376_13266,Clontarf Station,106231935,1,4376_7778022_101170,4376_142 -4289_75976,259,4376_13267,Clontarf Station,105764759,1,4376_7778022_100890,4376_143 -4289_75976,270,4376_13268,Clontarf Station,105277515,1,4376_7778022_100690,4376_144 -4289_75976,146,4376_13269,Clontarf Station,105247515,1,4376_7778022_100690,4376_144 -4289_75961,271,4376_1327,DCU Helix,105238150,0,4376_7778022_104130,4376_17 -4289_75976,271,4376_13270,Clontarf Station,105237515,1,4376_7778022_100690,4376_144 -4289_75976,115,4376_13271,Clontarf Station,105217515,1,4376_7778022_100690,4376_144 -4289_75976,260,4376_13272,Clontarf Station,105311971,1,4376_7778022_101120,4376_142 -4289_75976,261,4376_13273,Clontarf Station,105321971,1,4376_7778022_101120,4376_142 -4289_75976,262,4376_13274,Clontarf Station,105431971,1,4376_7778022_101120,4376_142 -4289_75976,263,4376_13275,Clontarf Station,105541971,1,4376_7778022_101120,4376_142 -4289_75976,264,4376_13276,Clontarf Station,105651971,1,4376_7778022_101120,4376_142 -4289_75976,265,4376_13277,Clontarf Station,105811971,1,4376_7778022_101120,4376_142 -4289_75976,266,4376_13278,Clontarf Station,105821971,1,4376_7778022_101120,4376_142 -4289_75976,267,4376_13279,Clontarf Station,106051971,1,4376_7778022_101120,4376_142 -4289_75961,115,4376_1328,DCU Helix,105218150,0,4376_7778022_104130,4376_17 -4289_75976,268,4376_13280,Clontarf Station,106141971,1,4376_7778022_101120,4376_142 -4289_75976,269,4376_13281,Clontarf Station,106231971,1,4376_7778022_101120,4376_142 -4289_75976,259,4376_13282,Clontarf Station,105764815,1,4376_7778022_100900,4376_142 -4289_75976,270,4376_13283,Clontarf Station,105277559,1,4376_7778022_100700,4376_143 -4289_75976,146,4376_13284,Clontarf Station,105247559,1,4376_7778022_100700,4376_143 -4289_75976,271,4376_13285,Clontarf Station,105237559,1,4376_7778022_100700,4376_143 -4289_75976,115,4376_13286,Clontarf Station,105217559,1,4376_7778022_100700,4376_143 -4289_75976,260,4376_13287,Clontarf Station,105312009,1,4376_7778022_101200,4376_142 -4289_75976,261,4376_13288,Clontarf Station,105322009,1,4376_7778022_101200,4376_142 -4289_75976,262,4376_13289,Clontarf Station,105432009,1,4376_7778022_101200,4376_142 -4289_75961,260,4376_1329,Clontarf Station,105311141,1,4376_7778022_104110,4376_18 -4289_75976,263,4376_13290,Clontarf Station,105542009,1,4376_7778022_101200,4376_142 -4289_75976,264,4376_13291,Clontarf Station,105652009,1,4376_7778022_101200,4376_142 -4289_75976,265,4376_13292,Clontarf Station,105812009,1,4376_7778022_101200,4376_142 -4289_75976,266,4376_13293,Clontarf Station,105822009,1,4376_7778022_101200,4376_142 -4289_75976,267,4376_13294,Clontarf Station,106052009,1,4376_7778022_101200,4376_142 -4289_75976,268,4376_13295,Clontarf Station,106142009,1,4376_7778022_101200,4376_142 -4289_75976,269,4376_13296,Clontarf Station,106232009,1,4376_7778022_101200,4376_142 -4289_75976,260,4376_13297,Clontarf Station,105312053,1,4376_7778022_101160,4376_142 -4289_75976,261,4376_13298,Clontarf Station,105322053,1,4376_7778022_101160,4376_142 -4289_75976,262,4376_13299,Clontarf Station,105432053,1,4376_7778022_101160,4376_142 -4289_75960,266,4376_133,Sutton Station,105821594,0,4376_7778022_103502,4376_1 -4289_75961,261,4376_1330,Clontarf Station,105321141,1,4376_7778022_104110,4376_18 -4289_75976,263,4376_13300,Clontarf Station,105542053,1,4376_7778022_101160,4376_142 -4289_75976,264,4376_13301,Clontarf Station,105652053,1,4376_7778022_101160,4376_142 -4289_75976,265,4376_13302,Clontarf Station,105812053,1,4376_7778022_101160,4376_142 -4289_75976,266,4376_13303,Clontarf Station,105822053,1,4376_7778022_101160,4376_142 -4289_75976,267,4376_13304,Clontarf Station,106052053,1,4376_7778022_101160,4376_142 -4289_75976,268,4376_13305,Clontarf Station,106142053,1,4376_7778022_101160,4376_142 -4289_75976,269,4376_13306,Clontarf Station,106232053,1,4376_7778022_101160,4376_142 -4289_75976,259,4376_13307,Clontarf Station,105764867,1,4376_7778022_100880,4376_143 -4289_75976,270,4376_13308,Clontarf Station,105277601,1,4376_7778022_100720,4376_144 -4289_75976,146,4376_13309,Clontarf Station,105247601,1,4376_7778022_100720,4376_144 -4289_75961,262,4376_1331,Clontarf Station,105431141,1,4376_7778022_104110,4376_18 -4289_75976,271,4376_13310,Clontarf Station,105237601,1,4376_7778022_100720,4376_144 -4289_75976,115,4376_13311,Clontarf Station,105217601,1,4376_7778022_100720,4376_144 -4289_75976,260,4376_13312,Clontarf Station,105312077,1,4376_7778022_101152,4376_142 -4289_75976,261,4376_13313,Clontarf Station,105322077,1,4376_7778022_101152,4376_142 -4289_75976,262,4376_13314,Clontarf Station,105432077,1,4376_7778022_101152,4376_142 -4289_75976,263,4376_13315,Clontarf Station,105542077,1,4376_7778022_101152,4376_142 -4289_75976,264,4376_13316,Clontarf Station,105652077,1,4376_7778022_101152,4376_142 -4289_75976,265,4376_13317,Clontarf Station,105812077,1,4376_7778022_101152,4376_142 -4289_75976,266,4376_13318,Clontarf Station,105822077,1,4376_7778022_101152,4376_142 -4289_75976,267,4376_13319,Clontarf Station,106052077,1,4376_7778022_101152,4376_142 -4289_75961,263,4376_1332,Clontarf Station,105541141,1,4376_7778022_104110,4376_18 -4289_75976,268,4376_13320,Clontarf Station,106142077,1,4376_7778022_101152,4376_142 -4289_75976,269,4376_13321,Clontarf Station,106232077,1,4376_7778022_101152,4376_142 -4289_75976,260,4376_13322,Clontarf Station,105312111,1,4376_7778022_101190,4376_142 -4289_75976,261,4376_13323,Clontarf Station,105322111,1,4376_7778022_101190,4376_142 -4289_75976,262,4376_13324,Clontarf Station,105432111,1,4376_7778022_101190,4376_142 -4289_75976,263,4376_13325,Clontarf Station,105542111,1,4376_7778022_101190,4376_142 -4289_75976,264,4376_13326,Clontarf Station,105652111,1,4376_7778022_101190,4376_142 -4289_75976,265,4376_13327,Clontarf Station,105812111,1,4376_7778022_101190,4376_142 -4289_75976,266,4376_13328,Clontarf Station,105822111,1,4376_7778022_101190,4376_142 -4289_75976,267,4376_13329,Clontarf Station,106052111,1,4376_7778022_101190,4376_142 -4289_75961,264,4376_1333,Clontarf Station,105651141,1,4376_7778022_104110,4376_18 -4289_75976,268,4376_13330,Clontarf Station,106142111,1,4376_7778022_101190,4376_142 -4289_75976,269,4376_13331,Clontarf Station,106232111,1,4376_7778022_101190,4376_142 -4289_75976,259,4376_13332,Clontarf Station,105764917,1,4376_7778022_100860,4376_143 -4289_75976,270,4376_13333,Clontarf Station,105277649,1,4376_7778022_100680,4376_144 -4289_75976,146,4376_13334,Clontarf Station,105247649,1,4376_7778022_100680,4376_144 -4289_75976,271,4376_13335,Clontarf Station,105237649,1,4376_7778022_100680,4376_144 -4289_75976,115,4376_13336,Clontarf Station,105217649,1,4376_7778022_100680,4376_144 -4289_75976,260,4376_13337,Clontarf Station,105312149,1,4376_7778022_101132,4376_142 -4289_75976,261,4376_13338,Clontarf Station,105322149,1,4376_7778022_101132,4376_142 -4289_75976,262,4376_13339,Clontarf Station,105432149,1,4376_7778022_101132,4376_142 -4289_75961,265,4376_1334,Clontarf Station,105811141,1,4376_7778022_104110,4376_18 -4289_75976,263,4376_13340,Clontarf Station,105542149,1,4376_7778022_101132,4376_142 -4289_75976,264,4376_13341,Clontarf Station,105652149,1,4376_7778022_101132,4376_142 -4289_75976,265,4376_13342,Clontarf Station,105812149,1,4376_7778022_101132,4376_142 -4289_75976,266,4376_13343,Clontarf Station,105822149,1,4376_7778022_101132,4376_142 -4289_75976,267,4376_13344,Clontarf Station,106052149,1,4376_7778022_101132,4376_142 -4289_75976,268,4376_13345,Clontarf Station,106142149,1,4376_7778022_101132,4376_142 -4289_75976,269,4376_13346,Clontarf Station,106232149,1,4376_7778022_101132,4376_142 -4289_75976,260,4376_13347,Clontarf Station,105312181,1,4376_7778022_101180,4376_142 -4289_75976,261,4376_13348,Clontarf Station,105322181,1,4376_7778022_101180,4376_142 -4289_75976,262,4376_13349,Clontarf Station,105432181,1,4376_7778022_101180,4376_142 -4289_75961,266,4376_1335,Clontarf Station,105821141,1,4376_7778022_104110,4376_18 -4289_75976,263,4376_13350,Clontarf Station,105542181,1,4376_7778022_101180,4376_142 -4289_75976,264,4376_13351,Clontarf Station,105652181,1,4376_7778022_101180,4376_142 -4289_75976,265,4376_13352,Clontarf Station,105812181,1,4376_7778022_101180,4376_142 -4289_75976,266,4376_13353,Clontarf Station,105822181,1,4376_7778022_101180,4376_142 -4289_75976,267,4376_13354,Clontarf Station,106052181,1,4376_7778022_101180,4376_142 -4289_75976,268,4376_13355,Clontarf Station,106142181,1,4376_7778022_101180,4376_142 -4289_75976,269,4376_13356,Clontarf Station,106232181,1,4376_7778022_101180,4376_142 -4289_75976,259,4376_13357,Clontarf Station,105764969,1,4376_7778022_100870,4376_143 -4289_75976,270,4376_13358,Clontarf Station,105277697,1,4376_7778022_100710,4376_144 -4289_75976,146,4376_13359,Clontarf Station,105247697,1,4376_7778022_100710,4376_144 -4289_75961,267,4376_1336,Clontarf Station,106051141,1,4376_7778022_104110,4376_18 -4289_75976,271,4376_13360,Clontarf Station,105237697,1,4376_7778022_100710,4376_144 -4289_75976,115,4376_13361,Clontarf Station,105217697,1,4376_7778022_100710,4376_144 -4289_75976,260,4376_13362,Clontarf Station,105312223,1,4376_7778022_101140,4376_142 -4289_75976,261,4376_13363,Clontarf Station,105322223,1,4376_7778022_101140,4376_142 -4289_75976,262,4376_13364,Clontarf Station,105432223,1,4376_7778022_101140,4376_142 -4289_75976,263,4376_13365,Clontarf Station,105542223,1,4376_7778022_101140,4376_142 -4289_75976,264,4376_13366,Clontarf Station,105652223,1,4376_7778022_101140,4376_142 -4289_75976,265,4376_13367,Clontarf Station,105812223,1,4376_7778022_101140,4376_142 -4289_75976,266,4376_13368,Clontarf Station,105822223,1,4376_7778022_101140,4376_142 -4289_75976,267,4376_13369,Clontarf Station,106052223,1,4376_7778022_101140,4376_142 -4289_75961,268,4376_1337,Clontarf Station,106141141,1,4376_7778022_104110,4376_18 -4289_75976,268,4376_13370,Clontarf Station,106142223,1,4376_7778022_101140,4376_142 -4289_75976,269,4376_13371,Clontarf Station,106232223,1,4376_7778022_101140,4376_142 -4289_75976,260,4376_13372,Clontarf Station,105312271,1,4376_7778022_101170,4376_142 -4289_75976,261,4376_13373,Clontarf Station,105322271,1,4376_7778022_101170,4376_142 -4289_75976,262,4376_13374,Clontarf Station,105432271,1,4376_7778022_101170,4376_142 -4289_75976,263,4376_13375,Clontarf Station,105542271,1,4376_7778022_101170,4376_142 -4289_75976,264,4376_13376,Clontarf Station,105652271,1,4376_7778022_101170,4376_142 -4289_75976,265,4376_13377,Clontarf Station,105812271,1,4376_7778022_101170,4376_142 -4289_75976,266,4376_13378,Clontarf Station,105822271,1,4376_7778022_101170,4376_142 -4289_75976,267,4376_13379,Clontarf Station,106052271,1,4376_7778022_101170,4376_142 -4289_75961,269,4376_1338,Clontarf Station,106231141,1,4376_7778022_104110,4376_18 -4289_75976,268,4376_13380,Clontarf Station,106142271,1,4376_7778022_101170,4376_142 -4289_75976,269,4376_13381,Clontarf Station,106232271,1,4376_7778022_101170,4376_142 -4289_75976,259,4376_13382,Clontarf Station,105765019,1,4376_7778022_100890,4376_143 -4289_75976,270,4376_13383,Clontarf Station,105277739,1,4376_7778022_100690,4376_144 -4289_75976,146,4376_13384,Clontarf Station,105247739,1,4376_7778022_100690,4376_144 -4289_75976,271,4376_13385,Clontarf Station,105237739,1,4376_7778022_100690,4376_144 -4289_75976,115,4376_13386,Clontarf Station,105217739,1,4376_7778022_100690,4376_144 -4289_75976,260,4376_13387,Clontarf Station,105312295,1,4376_7778022_101120,4376_142 -4289_75976,261,4376_13388,Clontarf Station,105322295,1,4376_7778022_101120,4376_142 -4289_75976,262,4376_13389,Clontarf Station,105432295,1,4376_7778022_101120,4376_142 -4289_75961,260,4376_1339,Clontarf Station,105311241,1,4376_7778022_104040,4376_18 -4289_75976,263,4376_13390,Clontarf Station,105542295,1,4376_7778022_101120,4376_142 -4289_75976,264,4376_13391,Clontarf Station,105652295,1,4376_7778022_101120,4376_142 -4289_75976,265,4376_13392,Clontarf Station,105812295,1,4376_7778022_101120,4376_142 -4289_75976,266,4376_13393,Clontarf Station,105822295,1,4376_7778022_101120,4376_142 -4289_75976,267,4376_13394,Clontarf Station,106052295,1,4376_7778022_101120,4376_142 -4289_75976,268,4376_13395,Clontarf Station,106142295,1,4376_7778022_101120,4376_142 -4289_75976,269,4376_13396,Clontarf Station,106232295,1,4376_7778022_101120,4376_142 -4289_75976,260,4376_13397,Clontarf Station,105312325,1,4376_7778022_101112,4376_142 -4289_75976,261,4376_13398,Clontarf Station,105322325,1,4376_7778022_101112,4376_142 -4289_75976,262,4376_13399,Clontarf Station,105432325,1,4376_7778022_101112,4376_142 -4289_75960,267,4376_134,Sutton Station,106051594,0,4376_7778022_103502,4376_1 -4289_75961,261,4376_1340,Clontarf Station,105321241,1,4376_7778022_104040,4376_18 -4289_75976,263,4376_13400,Clontarf Station,105542325,1,4376_7778022_101112,4376_142 -4289_75976,264,4376_13401,Clontarf Station,105652325,1,4376_7778022_101112,4376_142 -4289_75976,265,4376_13402,Clontarf Station,105812325,1,4376_7778022_101112,4376_142 -4289_75976,266,4376_13403,Clontarf Station,105822325,1,4376_7778022_101112,4376_142 -4289_75976,267,4376_13404,Clontarf Station,106052325,1,4376_7778022_101112,4376_142 -4289_75976,268,4376_13405,Clontarf Station,106142325,1,4376_7778022_101112,4376_142 -4289_75976,269,4376_13406,Clontarf Station,106232325,1,4376_7778022_101112,4376_142 -4289_75976,259,4376_13407,Clontarf Station,105765065,1,4376_7778022_100900,4376_143 -4289_75976,270,4376_13408,Clontarf Station,105277785,1,4376_7778022_100700,4376_144 -4289_75976,146,4376_13409,Clontarf Station,105247785,1,4376_7778022_100700,4376_144 -4289_75961,262,4376_1341,Clontarf Station,105431241,1,4376_7778022_104040,4376_18 -4289_75976,271,4376_13410,Clontarf Station,105237785,1,4376_7778022_100700,4376_144 -4289_75976,115,4376_13411,Clontarf Station,105217785,1,4376_7778022_100700,4376_144 -4289_75976,260,4376_13412,Clontarf Station,105312357,1,4376_7778022_101200,4376_142 -4289_75976,261,4376_13413,Clontarf Station,105322357,1,4376_7778022_101200,4376_142 -4289_75976,262,4376_13414,Clontarf Station,105432357,1,4376_7778022_101200,4376_142 -4289_75976,263,4376_13415,Clontarf Station,105542357,1,4376_7778022_101200,4376_142 -4289_75976,264,4376_13416,Clontarf Station,105652357,1,4376_7778022_101200,4376_142 -4289_75976,265,4376_13417,Clontarf Station,105812357,1,4376_7778022_101200,4376_142 -4289_75976,266,4376_13418,Clontarf Station,105822357,1,4376_7778022_101200,4376_142 -4289_75976,267,4376_13419,Clontarf Station,106052357,1,4376_7778022_101200,4376_142 -4289_75961,263,4376_1342,Clontarf Station,105541241,1,4376_7778022_104040,4376_18 -4289_75976,268,4376_13420,Clontarf Station,106142357,1,4376_7778022_101200,4376_142 -4289_75976,269,4376_13421,Clontarf Station,106232357,1,4376_7778022_101200,4376_142 -4289_75976,260,4376_13422,Clontarf Station,105312387,1,4376_7778022_101160,4376_142 -4289_75976,261,4376_13423,Clontarf Station,105322387,1,4376_7778022_101160,4376_142 -4289_75976,262,4376_13424,Clontarf Station,105432387,1,4376_7778022_101160,4376_142 -4289_75976,263,4376_13425,Clontarf Station,105542387,1,4376_7778022_101160,4376_142 -4289_75976,264,4376_13426,Clontarf Station,105652387,1,4376_7778022_101160,4376_142 -4289_75976,265,4376_13427,Clontarf Station,105812387,1,4376_7778022_101160,4376_142 -4289_75976,266,4376_13428,Clontarf Station,105822387,1,4376_7778022_101160,4376_142 -4289_75976,267,4376_13429,Clontarf Station,106052387,1,4376_7778022_101160,4376_142 -4289_75961,264,4376_1343,Clontarf Station,105651241,1,4376_7778022_104040,4376_18 -4289_75976,268,4376_13430,Clontarf Station,106142387,1,4376_7778022_101160,4376_142 -4289_75976,269,4376_13431,Clontarf Station,106232387,1,4376_7778022_101160,4376_142 -4289_75976,259,4376_13432,Clontarf Station,105765121,1,4376_7778022_100880,4376_143 -4289_75976,270,4376_13433,Clontarf Station,105277829,1,4376_7778022_100720,4376_144 -4289_75976,146,4376_13434,Clontarf Station,105247829,1,4376_7778022_100720,4376_144 -4289_75976,271,4376_13435,Clontarf Station,105237829,1,4376_7778022_100720,4376_144 -4289_75976,115,4376_13436,Clontarf Station,105217829,1,4376_7778022_100720,4376_144 -4289_75976,260,4376_13437,Clontarf Station,105312413,1,4376_7778022_101152,4376_142 -4289_75976,261,4376_13438,Clontarf Station,105322413,1,4376_7778022_101152,4376_142 -4289_75976,262,4376_13439,Clontarf Station,105432413,1,4376_7778022_101152,4376_142 -4289_75961,265,4376_1344,Clontarf Station,105811241,1,4376_7778022_104040,4376_18 -4289_75976,263,4376_13440,Clontarf Station,105542413,1,4376_7778022_101152,4376_142 -4289_75976,264,4376_13441,Clontarf Station,105652413,1,4376_7778022_101152,4376_142 -4289_75976,265,4376_13442,Clontarf Station,105812413,1,4376_7778022_101152,4376_142 -4289_75976,266,4376_13443,Clontarf Station,105822413,1,4376_7778022_101152,4376_142 -4289_75976,267,4376_13444,Clontarf Station,106052413,1,4376_7778022_101152,4376_142 -4289_75976,268,4376_13445,Clontarf Station,106142413,1,4376_7778022_101152,4376_142 -4289_75976,269,4376_13446,Clontarf Station,106232413,1,4376_7778022_101152,4376_142 -4289_75976,260,4376_13447,Clontarf Station,105312439,1,4376_7778022_101190,4376_142 -4289_75976,261,4376_13448,Clontarf Station,105322439,1,4376_7778022_101190,4376_142 -4289_75976,262,4376_13449,Clontarf Station,105432439,1,4376_7778022_101190,4376_142 -4289_75961,266,4376_1345,Clontarf Station,105821241,1,4376_7778022_104040,4376_18 -4289_75976,263,4376_13450,Clontarf Station,105542439,1,4376_7778022_101190,4376_142 -4289_75976,264,4376_13451,Clontarf Station,105652439,1,4376_7778022_101190,4376_142 -4289_75976,265,4376_13452,Clontarf Station,105812439,1,4376_7778022_101190,4376_142 -4289_75976,266,4376_13453,Clontarf Station,105822439,1,4376_7778022_101190,4376_142 -4289_75976,267,4376_13454,Clontarf Station,106052439,1,4376_7778022_101190,4376_142 -4289_75976,268,4376_13455,Clontarf Station,106142439,1,4376_7778022_101190,4376_142 -4289_75976,269,4376_13456,Clontarf Station,106232439,1,4376_7778022_101190,4376_142 -4289_75976,259,4376_13457,Clontarf Station,105765171,1,4376_7778022_100860,4376_143 -4289_75976,270,4376_13458,Clontarf Station,105277879,1,4376_7778022_100680,4376_144 -4289_75976,146,4376_13459,Clontarf Station,105247879,1,4376_7778022_100680,4376_144 -4289_75961,267,4376_1346,Clontarf Station,106051241,1,4376_7778022_104040,4376_18 -4289_75976,271,4376_13460,Clontarf Station,105237879,1,4376_7778022_100680,4376_144 -4289_75976,115,4376_13461,Clontarf Station,105217879,1,4376_7778022_100680,4376_144 -4289_75976,260,4376_13462,Clontarf Station,105312481,1,4376_7778022_101132,4376_142 -4289_75976,261,4376_13463,Clontarf Station,105322481,1,4376_7778022_101132,4376_142 -4289_75976,262,4376_13464,Clontarf Station,105432481,1,4376_7778022_101132,4376_142 -4289_75976,263,4376_13465,Clontarf Station,105542481,1,4376_7778022_101132,4376_142 -4289_75976,264,4376_13466,Clontarf Station,105652481,1,4376_7778022_101132,4376_142 -4289_75976,265,4376_13467,Clontarf Station,105812481,1,4376_7778022_101132,4376_142 -4289_75976,266,4376_13468,Clontarf Station,105822481,1,4376_7778022_101132,4376_142 -4289_75976,267,4376_13469,Clontarf Station,106052481,1,4376_7778022_101132,4376_142 -4289_75961,268,4376_1347,Clontarf Station,106141241,1,4376_7778022_104040,4376_18 -4289_75976,268,4376_13470,Clontarf Station,106142481,1,4376_7778022_101132,4376_142 -4289_75976,269,4376_13471,Clontarf Station,106232481,1,4376_7778022_101132,4376_142 -4289_75976,259,4376_13472,Clontarf Station,105765217,1,4376_7778022_100870,4376_142 -4289_75976,270,4376_13473,Clontarf Station,105277915,1,4376_7778022_100710,4376_143 -4289_75976,146,4376_13474,Clontarf Station,105247915,1,4376_7778022_100710,4376_143 -4289_75976,271,4376_13475,Clontarf Station,105237915,1,4376_7778022_100710,4376_143 -4289_75976,115,4376_13476,Clontarf Station,105217915,1,4376_7778022_100710,4376_143 -4289_75976,260,4376_13477,Clontarf Station,105312517,1,4376_7778022_101180,4376_142 -4289_75976,261,4376_13478,Clontarf Station,105322517,1,4376_7778022_101180,4376_142 -4289_75976,262,4376_13479,Clontarf Station,105432517,1,4376_7778022_101180,4376_142 -4289_75961,269,4376_1348,Clontarf Station,106231241,1,4376_7778022_104040,4376_18 -4289_75976,263,4376_13480,Clontarf Station,105542517,1,4376_7778022_101180,4376_142 -4289_75976,264,4376_13481,Clontarf Station,105652517,1,4376_7778022_101180,4376_142 -4289_75976,265,4376_13482,Clontarf Station,105812517,1,4376_7778022_101180,4376_142 -4289_75976,266,4376_13483,Clontarf Station,105822517,1,4376_7778022_101180,4376_142 -4289_75976,267,4376_13484,Clontarf Station,106052517,1,4376_7778022_101180,4376_142 -4289_75976,268,4376_13485,Clontarf Station,106142517,1,4376_7778022_101180,4376_142 -4289_75976,269,4376_13486,Clontarf Station,106232517,1,4376_7778022_101180,4376_142 -4289_75976,260,4376_13487,Clontarf Station,105312555,1,4376_7778022_101170,4376_142 -4289_75976,261,4376_13488,Clontarf Station,105322555,1,4376_7778022_101170,4376_142 -4289_75976,262,4376_13489,Clontarf Station,105432555,1,4376_7778022_101170,4376_142 -4289_75961,259,4376_1349,Clontarf Station,105764197,1,4376_7778022_104110,4376_18 -4289_75976,263,4376_13490,Clontarf Station,105542555,1,4376_7778022_101170,4376_142 -4289_75976,264,4376_13491,Clontarf Station,105652555,1,4376_7778022_101170,4376_142 -4289_75976,265,4376_13492,Clontarf Station,105812555,1,4376_7778022_101170,4376_142 -4289_75976,266,4376_13493,Clontarf Station,105822555,1,4376_7778022_101170,4376_142 -4289_75976,267,4376_13494,Clontarf Station,106052555,1,4376_7778022_101170,4376_142 -4289_75976,268,4376_13495,Clontarf Station,106142555,1,4376_7778022_101170,4376_142 -4289_75976,269,4376_13496,Clontarf Station,106232555,1,4376_7778022_101170,4376_142 -4289_75976,259,4376_13497,Clontarf Station,105765277,1,4376_7778022_100900,4376_143 -4289_75976,270,4376_13498,Clontarf Station,105277969,1,4376_7778022_100690,4376_144 -4289_75976,146,4376_13499,Clontarf Station,105247969,1,4376_7778022_100690,4376_144 -4289_75960,268,4376_135,Sutton Station,106141594,0,4376_7778022_103502,4376_1 -4289_75961,260,4376_1350,Clontarf Station,105311397,1,4376_7778022_104140,4376_18 -4289_75976,271,4376_13500,Clontarf Station,105237969,1,4376_7778022_100690,4376_144 -4289_75976,115,4376_13501,Clontarf Station,105217969,1,4376_7778022_100690,4376_144 -4289_75976,260,4376_13502,Clontarf Station,105312603,1,4376_7778022_101112,4376_142 -4289_75976,261,4376_13503,Clontarf Station,105322603,1,4376_7778022_101112,4376_142 -4289_75976,262,4376_13504,Clontarf Station,105432603,1,4376_7778022_101112,4376_142 -4289_75976,263,4376_13505,Clontarf Station,105542603,1,4376_7778022_101112,4376_142 -4289_75976,264,4376_13506,Clontarf Station,105652603,1,4376_7778022_101112,4376_142 -4289_75976,265,4376_13507,Clontarf Station,105812603,1,4376_7778022_101112,4376_142 -4289_75976,266,4376_13508,Clontarf Station,105822603,1,4376_7778022_101112,4376_142 -4289_75976,267,4376_13509,Clontarf Station,106052603,1,4376_7778022_101112,4376_142 -4289_75961,261,4376_1351,Clontarf Station,105321397,1,4376_7778022_104140,4376_18 -4289_75976,268,4376_13510,Clontarf Station,106142603,1,4376_7778022_101112,4376_142 -4289_75976,269,4376_13511,Clontarf Station,106232603,1,4376_7778022_101112,4376_142 -4289_75976,259,4376_13512,Clontarf Station,105765317,1,4376_7778022_100880,4376_143 -4289_75976,270,4376_13513,Clontarf Station,105277997,1,4376_7778022_100700,4376_144 -4289_75976,146,4376_13514,Clontarf Station,105247997,1,4376_7778022_100700,4376_144 -4289_75976,271,4376_13515,Clontarf Station,105237997,1,4376_7778022_100700,4376_144 -4289_75976,115,4376_13516,Clontarf Station,105217997,1,4376_7778022_100700,4376_144 -4289_75976,260,4376_13517,Clontarf Station,105312661,1,4376_7778022_101190,4376_142 -4289_75976,261,4376_13518,Clontarf Station,105322661,1,4376_7778022_101190,4376_142 -4289_75976,262,4376_13519,Clontarf Station,105432661,1,4376_7778022_101190,4376_142 -4289_75961,262,4376_1352,Clontarf Station,105431397,1,4376_7778022_104140,4376_18 -4289_75976,263,4376_13520,Clontarf Station,105542661,1,4376_7778022_101190,4376_142 -4289_75976,264,4376_13521,Clontarf Station,105652661,1,4376_7778022_101190,4376_142 -4289_75976,265,4376_13522,Clontarf Station,105812661,1,4376_7778022_101190,4376_142 -4289_75976,266,4376_13523,Clontarf Station,105822661,1,4376_7778022_101190,4376_142 -4289_75976,267,4376_13524,Clontarf Station,106052661,1,4376_7778022_101190,4376_142 -4289_75976,268,4376_13525,Clontarf Station,106142661,1,4376_7778022_101190,4376_142 -4289_75976,269,4376_13526,Clontarf Station,106232661,1,4376_7778022_101190,4376_142 -4289_75976,259,4376_13527,Clontarf Station,105765363,1,4376_7778022_100860,4376_143 -4289_75976,270,4376_13528,Clontarf Station,105278049,1,4376_7778022_100680,4376_144 -4289_75976,146,4376_13529,Clontarf Station,105248049,1,4376_7778022_100680,4376_144 -4289_75961,263,4376_1353,Clontarf Station,105541397,1,4376_7778022_104140,4376_18 -4289_75976,271,4376_13530,Clontarf Station,105238049,1,4376_7778022_100680,4376_144 -4289_75976,115,4376_13531,Clontarf Station,105218049,1,4376_7778022_100680,4376_144 -4289_75976,260,4376_13532,Clontarf Station,105312703,1,4376_7778022_101180,4376_142 -4289_75976,261,4376_13533,Clontarf Station,105322703,1,4376_7778022_101180,4376_142 -4289_75976,262,4376_13534,Clontarf Station,105432703,1,4376_7778022_101180,4376_142 -4289_75976,263,4376_13535,Clontarf Station,105542703,1,4376_7778022_101180,4376_142 -4289_75976,264,4376_13536,Clontarf Station,105652703,1,4376_7778022_101180,4376_142 -4289_75976,265,4376_13537,Clontarf Station,105812703,1,4376_7778022_101180,4376_142 -4289_75976,266,4376_13538,Clontarf Station,105822703,1,4376_7778022_101180,4376_142 -4289_75976,267,4376_13539,Clontarf Station,106052703,1,4376_7778022_101180,4376_142 -4289_75961,264,4376_1354,Clontarf Station,105651397,1,4376_7778022_104140,4376_18 -4289_75976,268,4376_13540,Clontarf Station,106142703,1,4376_7778022_101180,4376_142 -4289_75976,269,4376_13541,Clontarf Station,106232703,1,4376_7778022_101180,4376_142 -4289_75976,259,4376_13542,Clontarf Station,105765405,1,4376_7778022_100870,4376_143 -4289_75976,270,4376_13543,Clontarf Station,105278079,1,4376_7778022_100710,4376_144 -4289_75976,146,4376_13544,Clontarf Station,105248079,1,4376_7778022_100710,4376_144 -4289_75976,271,4376_13545,Clontarf Station,105238079,1,4376_7778022_100710,4376_144 -4289_75976,115,4376_13546,Clontarf Station,105218079,1,4376_7778022_100710,4376_144 -4289_75976,260,4376_13547,Clontarf Station,105312757,1,4376_7778022_101170,4376_142 -4289_75976,261,4376_13548,Clontarf Station,105322757,1,4376_7778022_101170,4376_142 -4289_75976,262,4376_13549,Clontarf Station,105432757,1,4376_7778022_101170,4376_142 -4289_75961,265,4376_1355,Clontarf Station,105811397,1,4376_7778022_104140,4376_18 -4289_75976,263,4376_13550,Clontarf Station,105542757,1,4376_7778022_101170,4376_142 -4289_75976,264,4376_13551,Clontarf Station,105652757,1,4376_7778022_101170,4376_142 -4289_75976,265,4376_13552,Clontarf Station,105812757,1,4376_7778022_101170,4376_142 -4289_75976,266,4376_13553,Clontarf Station,105822757,1,4376_7778022_101170,4376_142 -4289_75976,267,4376_13554,Clontarf Station,106052757,1,4376_7778022_101170,4376_142 -4289_75976,268,4376_13555,Clontarf Station,106142757,1,4376_7778022_101170,4376_142 -4289_75976,269,4376_13556,Clontarf Station,106232757,1,4376_7778022_101170,4376_142 -4289_75976,259,4376_13557,Clontarf Station,105765449,1,4376_7778022_100900,4376_143 -4289_75976,270,4376_13558,Clontarf Station,105278123,1,4376_7778022_100690,4376_144 -4289_75976,146,4376_13559,Clontarf Station,105248123,1,4376_7778022_100690,4376_144 -4289_75961,266,4376_1356,Clontarf Station,105821397,1,4376_7778022_104140,4376_18 -4289_75976,271,4376_13560,Clontarf Station,105238123,1,4376_7778022_100690,4376_144 -4289_75976,115,4376_13561,Clontarf Station,105218123,1,4376_7778022_100690,4376_144 -4289_75976,260,4376_13562,Clontarf Station,105312801,1,4376_7778022_101112,4376_142 -4289_75976,261,4376_13563,Clontarf Station,105322801,1,4376_7778022_101112,4376_142 -4289_75976,262,4376_13564,Clontarf Station,105432801,1,4376_7778022_101112,4376_142 -4289_75976,263,4376_13565,Clontarf Station,105542801,1,4376_7778022_101112,4376_142 -4289_75976,264,4376_13566,Clontarf Station,105652801,1,4376_7778022_101112,4376_142 -4289_75976,265,4376_13567,Clontarf Station,105812801,1,4376_7778022_101112,4376_142 -4289_75976,266,4376_13568,Clontarf Station,105822801,1,4376_7778022_101112,4376_142 -4289_75976,267,4376_13569,Clontarf Station,106052801,1,4376_7778022_101112,4376_142 -4289_75961,267,4376_1357,Clontarf Station,106051397,1,4376_7778022_104140,4376_18 -4289_75976,268,4376_13570,Clontarf Station,106142801,1,4376_7778022_101112,4376_142 -4289_75976,269,4376_13571,Clontarf Station,106232801,1,4376_7778022_101112,4376_142 -4289_75976,259,4376_13572,Clontarf Station,105765493,1,4376_7778022_100880,4376_143 -4289_75976,270,4376_13573,Clontarf Station,105278161,1,4376_7778022_100700,4376_144 -4289_75976,146,4376_13574,Clontarf Station,105248161,1,4376_7778022_100700,4376_144 -4289_75976,271,4376_13575,Clontarf Station,105238161,1,4376_7778022_100700,4376_144 -4289_75976,115,4376_13576,Clontarf Station,105218161,1,4376_7778022_100700,4376_144 -4289_75976,260,4376_13577,Clontarf Station,105312853,1,4376_7778022_101190,4376_142 -4289_75976,261,4376_13578,Clontarf Station,105322853,1,4376_7778022_101190,4376_142 -4289_75976,262,4376_13579,Clontarf Station,105432853,1,4376_7778022_101190,4376_142 -4289_75961,268,4376_1358,Clontarf Station,106141397,1,4376_7778022_104140,4376_18 -4289_75976,263,4376_13580,Clontarf Station,105542853,1,4376_7778022_101190,4376_142 -4289_75976,264,4376_13581,Clontarf Station,105652853,1,4376_7778022_101190,4376_142 -4289_75976,265,4376_13582,Clontarf Station,105812853,1,4376_7778022_101190,4376_142 -4289_75976,266,4376_13583,Clontarf Station,105822853,1,4376_7778022_101190,4376_142 -4289_75976,267,4376_13584,Clontarf Station,106052853,1,4376_7778022_101190,4376_142 -4289_75976,268,4376_13585,Clontarf Station,106142853,1,4376_7778022_101190,4376_142 -4289_75976,269,4376_13586,Clontarf Station,106232853,1,4376_7778022_101190,4376_142 -4289_75976,259,4376_13587,Clontarf Station,105765539,1,4376_7778022_100860,4376_143 -4289_75976,270,4376_13588,Clontarf Station,105278205,1,4376_7778022_100680,4376_144 -4289_75976,146,4376_13589,Clontarf Station,105248205,1,4376_7778022_100680,4376_144 -4289_75961,269,4376_1359,Clontarf Station,106231397,1,4376_7778022_104140,4376_18 -4289_75976,271,4376_13590,Clontarf Station,105238205,1,4376_7778022_100680,4376_144 -4289_75976,115,4376_13591,Clontarf Station,105218205,1,4376_7778022_100680,4376_144 -4289_75976,260,4376_13592,Clontarf Station,105312897,1,4376_7778022_101180,4376_142 -4289_75976,261,4376_13593,Clontarf Station,105322897,1,4376_7778022_101180,4376_142 -4289_75976,262,4376_13594,Clontarf Station,105432897,1,4376_7778022_101180,4376_142 -4289_75976,263,4376_13595,Clontarf Station,105542897,1,4376_7778022_101180,4376_142 -4289_75976,264,4376_13596,Clontarf Station,105652897,1,4376_7778022_101180,4376_142 -4289_75976,265,4376_13597,Clontarf Station,105812897,1,4376_7778022_101180,4376_142 -4289_75976,266,4376_13598,Clontarf Station,105822897,1,4376_7778022_101180,4376_142 -4289_75976,267,4376_13599,Clontarf Station,106052897,1,4376_7778022_101180,4376_142 -4289_75960,269,4376_136,Sutton Station,106231594,0,4376_7778022_103502,4376_1 -4289_75961,259,4376_1360,Clontarf Station,105764283,1,4376_7778022_104080,4376_18 -4289_75976,268,4376_13600,Clontarf Station,106142897,1,4376_7778022_101180,4376_142 -4289_75976,269,4376_13601,Clontarf Station,106232897,1,4376_7778022_101180,4376_142 -4289_75976,259,4376_13602,Clontarf Station,105765579,1,4376_7778022_100870,4376_143 -4289_75976,270,4376_13603,Clontarf Station,105278239,1,4376_7778022_100710,4376_144 -4289_75976,146,4376_13604,Clontarf Station,105248239,1,4376_7778022_100710,4376_144 -4289_75976,271,4376_13605,Clontarf Station,105238239,1,4376_7778022_100710,4376_144 -4289_75976,115,4376_13606,Clontarf Station,105218239,1,4376_7778022_100710,4376_144 -4289_75976,260,4376_13607,Clontarf Station,105312947,1,4376_7778022_101170,4376_142 -4289_75976,261,4376_13608,Clontarf Station,105322947,1,4376_7778022_101170,4376_142 -4289_75976,262,4376_13609,Clontarf Station,105432947,1,4376_7778022_101170,4376_142 -4289_75961,270,4376_1361,Clontarf Station,105277103,1,4376_7778022_104100,4376_19 -4289_75976,263,4376_13610,Clontarf Station,105542947,1,4376_7778022_101170,4376_142 -4289_75976,264,4376_13611,Clontarf Station,105652947,1,4376_7778022_101170,4376_142 -4289_75976,265,4376_13612,Clontarf Station,105812947,1,4376_7778022_101170,4376_142 -4289_75976,266,4376_13613,Clontarf Station,105822947,1,4376_7778022_101170,4376_142 -4289_75976,267,4376_13614,Clontarf Station,106052947,1,4376_7778022_101170,4376_142 -4289_75976,268,4376_13615,Clontarf Station,106142947,1,4376_7778022_101170,4376_142 -4289_75976,269,4376_13616,Clontarf Station,106232947,1,4376_7778022_101170,4376_142 -4289_75976,259,4376_13617,Clontarf Station,105765623,1,4376_7778022_100900,4376_143 -4289_75976,270,4376_13618,Clontarf Station,105278279,1,4376_7778022_100690,4376_144 -4289_75976,146,4376_13619,Clontarf Station,105248279,1,4376_7778022_100690,4376_144 -4289_75961,146,4376_1362,Clontarf Station,105247103,1,4376_7778022_104100,4376_19 -4289_75976,271,4376_13620,Clontarf Station,105238279,1,4376_7778022_100690,4376_144 -4289_75976,115,4376_13621,Clontarf Station,105218279,1,4376_7778022_100690,4376_144 -4289_75976,260,4376_13622,Clontarf Station,105312979,1,4376_7778022_101112,4376_142 -4289_75976,261,4376_13623,Clontarf Station,105322979,1,4376_7778022_101112,4376_142 -4289_75976,262,4376_13624,Clontarf Station,105432979,1,4376_7778022_101112,4376_142 -4289_75976,263,4376_13625,Clontarf Station,105542979,1,4376_7778022_101112,4376_142 -4289_75976,264,4376_13626,Clontarf Station,105652979,1,4376_7778022_101112,4376_142 -4289_75976,265,4376_13627,Clontarf Station,105812979,1,4376_7778022_101112,4376_142 -4289_75976,266,4376_13628,Clontarf Station,105822979,1,4376_7778022_101112,4376_142 -4289_75976,267,4376_13629,Clontarf Station,106052979,1,4376_7778022_101112,4376_142 -4289_75961,271,4376_1363,Clontarf Station,105237103,1,4376_7778022_104100,4376_19 -4289_75976,268,4376_13630,Clontarf Station,106142979,1,4376_7778022_101112,4376_142 -4289_75976,269,4376_13631,Clontarf Station,106232979,1,4376_7778022_101112,4376_142 -4289_75976,259,4376_13632,Clontarf Station,105765655,1,4376_7778022_100880,4376_143 -4289_75976,270,4376_13633,Clontarf Station,105278309,1,4376_7778022_100700,4376_144 -4289_75976,146,4376_13634,Clontarf Station,105248309,1,4376_7778022_100700,4376_144 -4289_75976,271,4376_13635,Clontarf Station,105238309,1,4376_7778022_100700,4376_144 -4289_75976,115,4376_13636,Clontarf Station,105218309,1,4376_7778022_100700,4376_144 -4289_75976,260,4376_13637,Clontarf Station,105313009,1,4376_7778022_101190,4376_142 -4289_75976,261,4376_13638,Clontarf Station,105323009,1,4376_7778022_101190,4376_142 -4289_75976,262,4376_13639,Clontarf Station,105433009,1,4376_7778022_101190,4376_142 -4289_75961,115,4376_1364,Clontarf Station,105217103,1,4376_7778022_104100,4376_19 -4289_75976,263,4376_13640,Clontarf Station,105543009,1,4376_7778022_101190,4376_142 -4289_75976,264,4376_13641,Clontarf Station,105653009,1,4376_7778022_101190,4376_142 -4289_75976,265,4376_13642,Clontarf Station,105813009,1,4376_7778022_101190,4376_142 -4289_75976,266,4376_13643,Clontarf Station,105823009,1,4376_7778022_101190,4376_142 -4289_75976,267,4376_13644,Clontarf Station,106053009,1,4376_7778022_101190,4376_142 -4289_75976,268,4376_13645,Clontarf Station,106143009,1,4376_7778022_101190,4376_142 -4289_75976,269,4376_13646,Clontarf Station,106233009,1,4376_7778022_101190,4376_142 -4289_75976,259,4376_13647,Clontarf Station,105765683,1,4376_7778022_100860,4376_143 -4289_75976,270,4376_13648,Clontarf Station,105278333,1,4376_7778022_100680,4376_144 -4289_75976,146,4376_13649,Clontarf Station,105248333,1,4376_7778022_100680,4376_144 -4289_75961,260,4376_1365,Clontarf Station,105311523,1,4376_7778022_104080,4376_18 -4289_75976,271,4376_13650,Clontarf Station,105238333,1,4376_7778022_100680,4376_144 -4289_75976,115,4376_13651,Clontarf Station,105218333,1,4376_7778022_100680,4376_144 -4289_75977,260,4376_13652,Naomh Barróg GAA,105311002,0,4376_7778022_100210,4376_145 -4289_75977,261,4376_13653,Naomh Barróg GAA,105321002,0,4376_7778022_100210,4376_145 -4289_75977,262,4376_13654,Naomh Barróg GAA,105431002,0,4376_7778022_100210,4376_145 -4289_75977,263,4376_13655,Naomh Barróg GAA,105541002,0,4376_7778022_100210,4376_145 -4289_75977,264,4376_13656,Naomh Barróg GAA,105651002,0,4376_7778022_100210,4376_145 -4289_75977,265,4376_13657,Naomh Barróg GAA,105811002,0,4376_7778022_100210,4376_145 -4289_75977,266,4376_13658,Naomh Barróg GAA,105821002,0,4376_7778022_100210,4376_145 -4289_75977,267,4376_13659,Naomh Barróg GAA,106051002,0,4376_7778022_100210,4376_145 -4289_75961,261,4376_1366,Clontarf Station,105321523,1,4376_7778022_104080,4376_18 -4289_75977,268,4376_13660,Naomh Barróg GAA,106141002,0,4376_7778022_100210,4376_145 -4289_75977,269,4376_13661,Naomh Barróg GAA,106231002,0,4376_7778022_100210,4376_145 -4289_75977,259,4376_13662,Naomh Barróg GAA,105764002,0,4376_7778022_100170,4376_146 -4289_75977,260,4376_13663,Naomh Barróg GAA,105311016,0,4376_7778022_100230,4376_145 -4289_75977,261,4376_13664,Naomh Barróg GAA,105321016,0,4376_7778022_100230,4376_145 -4289_75977,262,4376_13665,Naomh Barróg GAA,105431016,0,4376_7778022_100230,4376_145 -4289_75977,263,4376_13666,Naomh Barróg GAA,105541016,0,4376_7778022_100230,4376_145 -4289_75977,264,4376_13667,Naomh Barróg GAA,105651016,0,4376_7778022_100230,4376_145 -4289_75977,265,4376_13668,Naomh Barróg GAA,105811016,0,4376_7778022_100230,4376_145 -4289_75977,266,4376_13669,Naomh Barróg GAA,105821016,0,4376_7778022_100230,4376_145 -4289_75961,262,4376_1367,Clontarf Station,105431523,1,4376_7778022_104080,4376_18 -4289_75977,267,4376_13670,Naomh Barróg GAA,106051016,0,4376_7778022_100230,4376_145 -4289_75977,268,4376_13671,Naomh Barróg GAA,106141016,0,4376_7778022_100230,4376_145 -4289_75977,269,4376_13672,Naomh Barróg GAA,106231016,0,4376_7778022_100230,4376_145 -4289_75977,259,4376_13673,Naomh Barróg GAA,105764012,0,4376_7778022_100190,4376_146 -4289_75977,260,4376_13674,Naomh Barróg GAA,105311030,0,4376_7778022_100250,4376_145 -4289_75977,261,4376_13675,Naomh Barróg GAA,105321030,0,4376_7778022_100250,4376_145 -4289_75977,262,4376_13676,Naomh Barróg GAA,105431030,0,4376_7778022_100250,4376_145 -4289_75977,263,4376_13677,Naomh Barróg GAA,105541030,0,4376_7778022_100250,4376_145 -4289_75977,264,4376_13678,Naomh Barróg GAA,105651030,0,4376_7778022_100250,4376_145 -4289_75977,265,4376_13679,Naomh Barróg GAA,105811030,0,4376_7778022_100250,4376_145 -4289_75961,263,4376_1368,Clontarf Station,105541523,1,4376_7778022_104080,4376_18 -4289_75977,266,4376_13680,Naomh Barróg GAA,105821030,0,4376_7778022_100250,4376_145 -4289_75977,267,4376_13681,Naomh Barróg GAA,106051030,0,4376_7778022_100250,4376_145 -4289_75977,268,4376_13682,Naomh Barróg GAA,106141030,0,4376_7778022_100250,4376_145 -4289_75977,269,4376_13683,Naomh Barróg GAA,106231030,0,4376_7778022_100250,4376_145 -4289_75977,259,4376_13684,Naomh Barróg GAA,105764022,0,4376_7778022_100210,4376_145 -4289_75977,260,4376_13685,Naomh Barróg GAA,105311042,0,4376_7778022_100271,4376_145 -4289_75977,261,4376_13686,Naomh Barróg GAA,105321042,0,4376_7778022_100271,4376_145 -4289_75977,262,4376_13687,Naomh Barróg GAA,105431042,0,4376_7778022_100271,4376_145 -4289_75977,263,4376_13688,Naomh Barróg GAA,105541042,0,4376_7778022_100271,4376_145 -4289_75977,264,4376_13689,Naomh Barróg GAA,105651042,0,4376_7778022_100271,4376_145 -4289_75961,264,4376_1369,Clontarf Station,105651523,1,4376_7778022_104080,4376_18 -4289_75977,265,4376_13690,Naomh Barróg GAA,105811042,0,4376_7778022_100271,4376_145 -4289_75977,266,4376_13691,Naomh Barróg GAA,105821042,0,4376_7778022_100271,4376_145 -4289_75977,267,4376_13692,Naomh Barróg GAA,106051042,0,4376_7778022_100271,4376_145 -4289_75977,268,4376_13693,Naomh Barróg GAA,106141042,0,4376_7778022_100271,4376_145 -4289_75977,269,4376_13694,Naomh Barróg GAA,106231042,0,4376_7778022_100271,4376_145 -4289_75977,259,4376_13695,Naomh Barróg GAA,105764032,0,4376_7778022_100160,4376_145 -4289_75977,260,4376_13696,Naomh Barróg GAA,105311066,0,4376_7778022_100200,4376_145 -4289_75977,261,4376_13697,Naomh Barróg GAA,105321066,0,4376_7778022_100200,4376_145 -4289_75977,262,4376_13698,Naomh Barróg GAA,105431066,0,4376_7778022_100200,4376_145 -4289_75977,263,4376_13699,Naomh Barróg GAA,105541066,0,4376_7778022_100200,4376_145 -4289_75960,259,4376_137,Sutton Station,105764416,0,4376_7778022_103103,4376_2 -4289_75961,265,4376_1370,Clontarf Station,105811523,1,4376_7778022_104080,4376_18 -4289_75977,264,4376_13700,Naomh Barróg GAA,105651066,0,4376_7778022_100200,4376_145 -4289_75977,265,4376_13701,Naomh Barróg GAA,105811066,0,4376_7778022_100200,4376_145 -4289_75977,266,4376_13702,Naomh Barróg GAA,105821066,0,4376_7778022_100200,4376_145 -4289_75977,267,4376_13703,Naomh Barróg GAA,106051066,0,4376_7778022_100200,4376_145 -4289_75977,268,4376_13704,Naomh Barróg GAA,106141066,0,4376_7778022_100200,4376_145 -4289_75977,269,4376_13705,Naomh Barróg GAA,106231066,0,4376_7778022_100200,4376_145 -4289_75977,259,4376_13706,Naomh Barróg GAA,105764048,0,4376_7778022_100180,4376_145 -4289_75977,260,4376_13707,Naomh Barróg GAA,105311082,0,4376_7778022_100220,4376_145 -4289_75977,261,4376_13708,Naomh Barróg GAA,105321082,0,4376_7778022_100220,4376_145 -4289_75977,262,4376_13709,Naomh Barróg GAA,105431082,0,4376_7778022_100220,4376_145 -4289_75961,266,4376_1371,Clontarf Station,105821523,1,4376_7778022_104080,4376_18 -4289_75977,263,4376_13710,Naomh Barróg GAA,105541082,0,4376_7778022_100220,4376_145 -4289_75977,264,4376_13711,Naomh Barróg GAA,105651082,0,4376_7778022_100220,4376_145 -4289_75977,265,4376_13712,Naomh Barróg GAA,105811082,0,4376_7778022_100220,4376_145 -4289_75977,266,4376_13713,Naomh Barróg GAA,105821082,0,4376_7778022_100220,4376_145 -4289_75977,267,4376_13714,Naomh Barróg GAA,106051082,0,4376_7778022_100220,4376_145 -4289_75977,268,4376_13715,Naomh Barróg GAA,106141082,0,4376_7778022_100220,4376_145 -4289_75977,269,4376_13716,Naomh Barróg GAA,106231082,0,4376_7778022_100220,4376_145 -4289_75977,260,4376_13717,Naomh Barróg GAA,105311104,0,4376_7778022_100290,4376_145 -4289_75977,261,4376_13718,Naomh Barróg GAA,105321104,0,4376_7778022_100290,4376_145 -4289_75977,262,4376_13719,Naomh Barróg GAA,105431104,0,4376_7778022_100290,4376_145 -4289_75961,267,4376_1372,Clontarf Station,106051523,1,4376_7778022_104080,4376_18 -4289_75977,263,4376_13720,Naomh Barróg GAA,105541104,0,4376_7778022_100290,4376_145 -4289_75977,264,4376_13721,Naomh Barróg GAA,105651104,0,4376_7778022_100290,4376_145 -4289_75977,265,4376_13722,Naomh Barróg GAA,105811104,0,4376_7778022_100290,4376_145 -4289_75977,266,4376_13723,Naomh Barróg GAA,105821104,0,4376_7778022_100290,4376_145 -4289_75977,267,4376_13724,Naomh Barróg GAA,106051104,0,4376_7778022_100290,4376_145 -4289_75977,268,4376_13725,Naomh Barróg GAA,106141104,0,4376_7778022_100290,4376_145 -4289_75977,269,4376_13726,Naomh Barróg GAA,106231104,0,4376_7778022_100290,4376_145 -4289_75977,259,4376_13727,Naomh Barróg GAA,105764068,0,4376_7778022_100200,4376_146 -4289_75977,260,4376_13728,Naomh Barróg GAA,105311146,0,4376_7778022_100240,4376_145 -4289_75977,261,4376_13729,Naomh Barróg GAA,105321146,0,4376_7778022_100240,4376_145 -4289_75961,268,4376_1373,Clontarf Station,106141523,1,4376_7778022_104080,4376_18 -4289_75977,262,4376_13730,Naomh Barróg GAA,105431146,0,4376_7778022_100240,4376_145 -4289_75977,263,4376_13731,Naomh Barróg GAA,105541146,0,4376_7778022_100240,4376_145 -4289_75977,264,4376_13732,Naomh Barróg GAA,105651146,0,4376_7778022_100240,4376_145 -4289_75977,265,4376_13733,Naomh Barróg GAA,105811146,0,4376_7778022_100240,4376_145 -4289_75977,266,4376_13734,Naomh Barróg GAA,105821146,0,4376_7778022_100240,4376_145 -4289_75977,267,4376_13735,Naomh Barróg GAA,106051146,0,4376_7778022_100240,4376_145 -4289_75977,268,4376_13736,Naomh Barróg GAA,106141146,0,4376_7778022_100240,4376_145 -4289_75977,269,4376_13737,Naomh Barróg GAA,106231146,0,4376_7778022_100240,4376_145 -4289_75977,259,4376_13738,Naomh Barróg GAA,105764092,0,4376_7778022_100170,4376_145 -4289_75977,260,4376_13739,Naomh Barróg GAA,105311166,0,4376_7778022_100260,4376_145 -4289_75961,269,4376_1374,Clontarf Station,106231523,1,4376_7778022_104080,4376_18 -4289_75977,261,4376_13740,Naomh Barróg GAA,105321166,0,4376_7778022_100260,4376_145 -4289_75977,262,4376_13741,Naomh Barróg GAA,105431166,0,4376_7778022_100260,4376_145 -4289_75977,263,4376_13742,Naomh Barróg GAA,105541166,0,4376_7778022_100260,4376_145 -4289_75977,264,4376_13743,Naomh Barróg GAA,105651166,0,4376_7778022_100260,4376_145 -4289_75977,265,4376_13744,Naomh Barróg GAA,105811166,0,4376_7778022_100260,4376_145 -4289_75977,266,4376_13745,Naomh Barróg GAA,105821166,0,4376_7778022_100260,4376_145 -4289_75977,267,4376_13746,Naomh Barróg GAA,106051166,0,4376_7778022_100260,4376_145 -4289_75977,268,4376_13747,Naomh Barróg GAA,106141166,0,4376_7778022_100260,4376_145 -4289_75977,269,4376_13748,Naomh Barróg GAA,106231166,0,4376_7778022_100260,4376_145 -4289_75977,259,4376_13749,Naomh Barróg GAA,105764114,0,4376_7778022_100220,4376_145 -4289_75961,259,4376_1375,Clontarf Station,105764377,1,4376_7778022_104100,4376_19 -4289_75977,260,4376_13750,Naomh Barróg GAA,105311200,0,4376_7778022_100210,4376_145 -4289_75977,261,4376_13751,Naomh Barróg GAA,105321200,0,4376_7778022_100210,4376_145 -4289_75977,262,4376_13752,Naomh Barróg GAA,105431200,0,4376_7778022_100210,4376_145 -4289_75977,263,4376_13753,Naomh Barróg GAA,105541200,0,4376_7778022_100210,4376_145 -4289_75977,264,4376_13754,Naomh Barróg GAA,105651200,0,4376_7778022_100210,4376_145 -4289_75977,265,4376_13755,Naomh Barróg GAA,105811200,0,4376_7778022_100210,4376_145 -4289_75977,266,4376_13756,Naomh Barróg GAA,105821200,0,4376_7778022_100210,4376_145 -4289_75977,267,4376_13757,Naomh Barróg GAA,106051200,0,4376_7778022_100210,4376_145 -4289_75977,268,4376_13758,Naomh Barróg GAA,106141200,0,4376_7778022_100210,4376_145 -4289_75977,269,4376_13759,Naomh Barróg GAA,106231200,0,4376_7778022_100210,4376_145 -4289_75961,270,4376_1376,Clontarf Station,105277177,1,4376_7778022_104080,4376_20 -4289_75977,270,4376_13760,Naomh Barróg GAA,105277002,0,4376_7778022_100170,4376_145 -4289_75977,146,4376_13761,Naomh Barróg GAA,105247002,0,4376_7778022_100170,4376_145 -4289_75977,271,4376_13762,Naomh Barróg GAA,105237002,0,4376_7778022_100170,4376_145 -4289_75977,115,4376_13763,Naomh Barróg GAA,105217002,0,4376_7778022_100170,4376_145 -4289_75977,259,4376_13764,Naomh Barróg GAA,105764132,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_13765,Naomh Barróg GAA,105311226,0,4376_7778022_100281,4376_145 -4289_75977,261,4376_13766,Naomh Barróg GAA,105321226,0,4376_7778022_100281,4376_145 -4289_75977,262,4376_13767,Naomh Barróg GAA,105431226,0,4376_7778022_100281,4376_145 -4289_75977,263,4376_13768,Naomh Barróg GAA,105541226,0,4376_7778022_100281,4376_145 -4289_75977,264,4376_13769,Naomh Barróg GAA,105651226,0,4376_7778022_100281,4376_145 -4289_75961,146,4376_1377,Clontarf Station,105247177,1,4376_7778022_104080,4376_20 -4289_75977,265,4376_13770,Naomh Barróg GAA,105811226,0,4376_7778022_100281,4376_145 -4289_75977,266,4376_13771,Naomh Barróg GAA,105821226,0,4376_7778022_100281,4376_145 -4289_75977,267,4376_13772,Naomh Barróg GAA,106051226,0,4376_7778022_100281,4376_145 -4289_75977,268,4376_13773,Naomh Barróg GAA,106141226,0,4376_7778022_100281,4376_145 -4289_75977,269,4376_13774,Naomh Barróg GAA,106231226,0,4376_7778022_100281,4376_145 -4289_75977,260,4376_13775,Naomh Barróg GAA,105311276,0,4376_7778022_100230,4376_145 -4289_75977,261,4376_13776,Naomh Barróg GAA,105321276,0,4376_7778022_100230,4376_145 -4289_75977,262,4376_13777,Naomh Barróg GAA,105431276,0,4376_7778022_100230,4376_145 -4289_75977,263,4376_13778,Naomh Barróg GAA,105541276,0,4376_7778022_100230,4376_145 -4289_75977,264,4376_13779,Naomh Barróg GAA,105651276,0,4376_7778022_100230,4376_145 -4289_75961,271,4376_1378,Clontarf Station,105237177,1,4376_7778022_104080,4376_20 -4289_75977,265,4376_13780,Naomh Barróg GAA,105811276,0,4376_7778022_100230,4376_145 -4289_75977,266,4376_13781,Naomh Barróg GAA,105821276,0,4376_7778022_100230,4376_145 -4289_75977,267,4376_13782,Naomh Barróg GAA,106051276,0,4376_7778022_100230,4376_145 -4289_75977,268,4376_13783,Naomh Barróg GAA,106141276,0,4376_7778022_100230,4376_145 -4289_75977,269,4376_13784,Naomh Barróg GAA,106231276,0,4376_7778022_100230,4376_145 -4289_75977,259,4376_13785,Naomh Barróg GAA,105764158,0,4376_7778022_100210,4376_146 -4289_75977,270,4376_13786,Naomh Barróg GAA,105277026,0,4376_7778022_100190,4376_145 -4289_75977,146,4376_13787,Naomh Barróg GAA,105247026,0,4376_7778022_100190,4376_145 -4289_75977,271,4376_13788,Naomh Barróg GAA,105237026,0,4376_7778022_100190,4376_145 -4289_75977,115,4376_13789,Naomh Barróg GAA,105217026,0,4376_7778022_100190,4376_145 -4289_75961,115,4376_1379,Clontarf Station,105217177,1,4376_7778022_104080,4376_20 -4289_75977,260,4376_13790,Naomh Barróg GAA,105311308,0,4376_7778022_100300,4376_145 -4289_75977,261,4376_13791,Naomh Barróg GAA,105321308,0,4376_7778022_100300,4376_145 -4289_75977,262,4376_13792,Naomh Barróg GAA,105431308,0,4376_7778022_100300,4376_145 -4289_75977,263,4376_13793,Naomh Barróg GAA,105541308,0,4376_7778022_100300,4376_145 -4289_75977,264,4376_13794,Naomh Barróg GAA,105651308,0,4376_7778022_100300,4376_145 -4289_75977,265,4376_13795,Naomh Barróg GAA,105811308,0,4376_7778022_100300,4376_145 -4289_75977,266,4376_13796,Naomh Barróg GAA,105821308,0,4376_7778022_100300,4376_145 -4289_75977,267,4376_13797,Naomh Barróg GAA,106051308,0,4376_7778022_100300,4376_145 -4289_75977,268,4376_13798,Naomh Barróg GAA,106141308,0,4376_7778022_100300,4376_145 -4289_75977,269,4376_13799,Naomh Barróg GAA,106231308,0,4376_7778022_100300,4376_145 -4289_75960,270,4376_138,Sutton Station,105277208,0,4376_7778022_103103,4376_1 -4289_75961,260,4376_1380,Clontarf Station,105311631,1,4376_7778022_104170,4376_18 -4289_75977,259,4376_13800,Naomh Barróg GAA,105764178,0,4376_7778022_100160,4376_145 -4289_75977,260,4376_13801,Naomh Barróg GAA,105311334,0,4376_7778022_100250,4376_145 -4289_75977,261,4376_13802,Naomh Barróg GAA,105321334,0,4376_7778022_100250,4376_145 -4289_75977,262,4376_13803,Naomh Barróg GAA,105431334,0,4376_7778022_100250,4376_145 -4289_75977,263,4376_13804,Naomh Barróg GAA,105541334,0,4376_7778022_100250,4376_145 -4289_75977,264,4376_13805,Naomh Barróg GAA,105651334,0,4376_7778022_100250,4376_145 -4289_75977,265,4376_13806,Naomh Barróg GAA,105811334,0,4376_7778022_100250,4376_145 -4289_75977,266,4376_13807,Naomh Barróg GAA,105821334,0,4376_7778022_100250,4376_145 -4289_75977,267,4376_13808,Naomh Barróg GAA,106051334,0,4376_7778022_100250,4376_145 -4289_75977,268,4376_13809,Naomh Barróg GAA,106141334,0,4376_7778022_100250,4376_145 -4289_75961,261,4376_1381,Clontarf Station,105321631,1,4376_7778022_104170,4376_18 -4289_75977,269,4376_13810,Naomh Barróg GAA,106231334,0,4376_7778022_100250,4376_145 -4289_75977,259,4376_13811,Naomh Barróg GAA,105764198,0,4376_7778022_100180,4376_145 -4289_75977,270,4376_13812,Naomh Barróg GAA,105277038,0,4376_7778022_100160,4376_146 -4289_75977,146,4376_13813,Naomh Barróg GAA,105247038,0,4376_7778022_100160,4376_146 -4289_75977,271,4376_13814,Naomh Barróg GAA,105237038,0,4376_7778022_100160,4376_146 -4289_75977,115,4376_13815,Naomh Barróg GAA,105217038,0,4376_7778022_100160,4376_146 -4289_75977,260,4376_13816,Naomh Barróg GAA,105311370,0,4376_7778022_100271,4376_145 -4289_75977,261,4376_13817,Naomh Barróg GAA,105321370,0,4376_7778022_100271,4376_145 -4289_75977,262,4376_13818,Naomh Barróg GAA,105431370,0,4376_7778022_100271,4376_145 -4289_75977,263,4376_13819,Naomh Barróg GAA,105541370,0,4376_7778022_100271,4376_145 -4289_75961,262,4376_1382,Clontarf Station,105431631,1,4376_7778022_104170,4376_18 -4289_75977,264,4376_13820,Naomh Barróg GAA,105651370,0,4376_7778022_100271,4376_145 -4289_75977,265,4376_13821,Naomh Barróg GAA,105811370,0,4376_7778022_100271,4376_145 -4289_75977,266,4376_13822,Naomh Barróg GAA,105821370,0,4376_7778022_100271,4376_145 -4289_75977,267,4376_13823,Naomh Barróg GAA,106051370,0,4376_7778022_100271,4376_145 -4289_75977,268,4376_13824,Naomh Barróg GAA,106141370,0,4376_7778022_100271,4376_145 -4289_75977,269,4376_13825,Naomh Barróg GAA,106231370,0,4376_7778022_100271,4376_145 -4289_75977,259,4376_13826,Naomh Barróg GAA,105764218,0,4376_7778022_100200,4376_145 -4289_75977,260,4376_13827,Naomh Barróg GAA,105311386,0,4376_7778022_100200,4376_145 -4289_75977,261,4376_13828,Naomh Barróg GAA,105321386,0,4376_7778022_100200,4376_145 -4289_75977,262,4376_13829,Naomh Barróg GAA,105431386,0,4376_7778022_100200,4376_145 -4289_75961,263,4376_1383,Clontarf Station,105541631,1,4376_7778022_104170,4376_18 -4289_75977,263,4376_13830,Naomh Barróg GAA,105541386,0,4376_7778022_100200,4376_145 -4289_75977,264,4376_13831,Naomh Barróg GAA,105651386,0,4376_7778022_100200,4376_145 -4289_75977,265,4376_13832,Naomh Barróg GAA,105811386,0,4376_7778022_100200,4376_145 -4289_75977,266,4376_13833,Naomh Barróg GAA,105821386,0,4376_7778022_100200,4376_145 -4289_75977,267,4376_13834,Naomh Barróg GAA,106051386,0,4376_7778022_100200,4376_145 -4289_75977,268,4376_13835,Naomh Barróg GAA,106141386,0,4376_7778022_100200,4376_145 -4289_75977,269,4376_13836,Naomh Barróg GAA,106231386,0,4376_7778022_100200,4376_145 -4289_75977,270,4376_13837,Naomh Barróg GAA,105277054,0,4376_7778022_100210,4376_145 -4289_75977,146,4376_13838,Naomh Barróg GAA,105247054,0,4376_7778022_100210,4376_145 -4289_75977,271,4376_13839,Naomh Barróg GAA,105237054,0,4376_7778022_100210,4376_145 -4289_75961,264,4376_1384,Clontarf Station,105651631,1,4376_7778022_104170,4376_18 -4289_75977,115,4376_13840,Naomh Barróg GAA,105217054,0,4376_7778022_100210,4376_145 -4289_75977,260,4376_13841,Naomh Barróg GAA,105311408,0,4376_7778022_100220,4376_145 -4289_75977,261,4376_13842,Naomh Barróg GAA,105321408,0,4376_7778022_100220,4376_145 -4289_75977,262,4376_13843,Naomh Barróg GAA,105431408,0,4376_7778022_100220,4376_145 -4289_75977,263,4376_13844,Naomh Barróg GAA,105541408,0,4376_7778022_100220,4376_145 -4289_75977,264,4376_13845,Naomh Barróg GAA,105651408,0,4376_7778022_100220,4376_145 -4289_75977,265,4376_13846,Naomh Barróg GAA,105811408,0,4376_7778022_100220,4376_145 -4289_75977,266,4376_13847,Naomh Barróg GAA,105821408,0,4376_7778022_100220,4376_145 -4289_75977,267,4376_13848,Naomh Barróg GAA,106051408,0,4376_7778022_100220,4376_145 -4289_75977,268,4376_13849,Naomh Barróg GAA,106141408,0,4376_7778022_100220,4376_145 -4289_75961,265,4376_1385,Clontarf Station,105811631,1,4376_7778022_104170,4376_18 -4289_75977,269,4376_13850,Naomh Barróg GAA,106231408,0,4376_7778022_100220,4376_145 -4289_75977,259,4376_13851,Naomh Barróg GAA,105764242,0,4376_7778022_100170,4376_146 -4289_75977,270,4376_13852,Naomh Barróg GAA,105277078,0,4376_7778022_100180,4376_145 -4289_75977,146,4376_13853,Naomh Barróg GAA,105247078,0,4376_7778022_100180,4376_145 -4289_75977,271,4376_13854,Naomh Barróg GAA,105237078,0,4376_7778022_100180,4376_145 -4289_75977,115,4376_13855,Naomh Barróg GAA,105217078,0,4376_7778022_100180,4376_145 -4289_75977,260,4376_13856,Naomh Barróg GAA,105311430,0,4376_7778022_100290,4376_145 -4289_75977,261,4376_13857,Naomh Barróg GAA,105321430,0,4376_7778022_100290,4376_145 -4289_75977,262,4376_13858,Naomh Barróg GAA,105431430,0,4376_7778022_100290,4376_145 -4289_75977,263,4376_13859,Naomh Barróg GAA,105541430,0,4376_7778022_100290,4376_145 -4289_75961,266,4376_1386,Clontarf Station,105821631,1,4376_7778022_104170,4376_18 -4289_75977,264,4376_13860,Naomh Barróg GAA,105651430,0,4376_7778022_100290,4376_145 -4289_75977,265,4376_13861,Naomh Barróg GAA,105811430,0,4376_7778022_100290,4376_145 -4289_75977,266,4376_13862,Naomh Barróg GAA,105821430,0,4376_7778022_100290,4376_145 -4289_75977,267,4376_13863,Naomh Barróg GAA,106051430,0,4376_7778022_100290,4376_145 -4289_75977,268,4376_13864,Naomh Barróg GAA,106141430,0,4376_7778022_100290,4376_145 -4289_75977,269,4376_13865,Naomh Barróg GAA,106231430,0,4376_7778022_100290,4376_145 -4289_75977,259,4376_13866,Naomh Barróg GAA,105764260,0,4376_7778022_100220,4376_146 -4289_75977,260,4376_13867,Naomh Barróg GAA,105311456,0,4376_7778022_100330,4376_145 -4289_75977,261,4376_13868,Naomh Barróg GAA,105321456,0,4376_7778022_100330,4376_145 -4289_75977,262,4376_13869,Naomh Barróg GAA,105431456,0,4376_7778022_100330,4376_145 -4289_75961,267,4376_1387,Clontarf Station,106051631,1,4376_7778022_104170,4376_18 -4289_75977,263,4376_13870,Naomh Barróg GAA,105541456,0,4376_7778022_100330,4376_145 -4289_75977,264,4376_13871,Naomh Barróg GAA,105651456,0,4376_7778022_100330,4376_145 -4289_75977,265,4376_13872,Naomh Barróg GAA,105811456,0,4376_7778022_100330,4376_145 -4289_75977,266,4376_13873,Naomh Barróg GAA,105821456,0,4376_7778022_100330,4376_145 -4289_75977,267,4376_13874,Naomh Barróg GAA,106051456,0,4376_7778022_100330,4376_145 -4289_75977,268,4376_13875,Naomh Barróg GAA,106141456,0,4376_7778022_100330,4376_145 -4289_75977,269,4376_13876,Naomh Barróg GAA,106231456,0,4376_7778022_100330,4376_145 -4289_75977,259,4376_13877,Naomh Barróg GAA,105764284,0,4376_7778022_100230,4376_146 -4289_75977,270,4376_13878,Naomh Barróg GAA,105277102,0,4376_7778022_100170,4376_145 -4289_75977,146,4376_13879,Naomh Barróg GAA,105247102,0,4376_7778022_100170,4376_145 -4289_75961,268,4376_1388,Clontarf Station,106141631,1,4376_7778022_104170,4376_18 -4289_75977,271,4376_13880,Naomh Barróg GAA,105237102,0,4376_7778022_100170,4376_145 -4289_75977,115,4376_13881,Naomh Barróg GAA,105217102,0,4376_7778022_100170,4376_145 -4289_75977,260,4376_13882,Naomh Barróg GAA,105311472,0,4376_7778022_100310,4376_145 -4289_75977,261,4376_13883,Naomh Barróg GAA,105321472,0,4376_7778022_100310,4376_145 -4289_75977,262,4376_13884,Naomh Barróg GAA,105431472,0,4376_7778022_100310,4376_145 -4289_75977,263,4376_13885,Naomh Barróg GAA,105541472,0,4376_7778022_100310,4376_145 -4289_75977,264,4376_13886,Naomh Barróg GAA,105651472,0,4376_7778022_100310,4376_145 -4289_75977,265,4376_13887,Naomh Barróg GAA,105811472,0,4376_7778022_100310,4376_145 -4289_75977,266,4376_13888,Naomh Barróg GAA,105821472,0,4376_7778022_100310,4376_145 -4289_75977,267,4376_13889,Naomh Barróg GAA,106051472,0,4376_7778022_100310,4376_145 -4289_75961,269,4376_1389,Clontarf Station,106231631,1,4376_7778022_104170,4376_18 -4289_75977,268,4376_13890,Naomh Barróg GAA,106141472,0,4376_7778022_100310,4376_145 -4289_75977,269,4376_13891,Naomh Barróg GAA,106231472,0,4376_7778022_100310,4376_145 -4289_75977,259,4376_13892,Naomh Barróg GAA,105764306,0,4376_7778022_100190,4376_146 -4289_75977,260,4376_13893,Naomh Barróg GAA,105311494,0,4376_7778022_100240,4376_145 -4289_75977,261,4376_13894,Naomh Barróg GAA,105321494,0,4376_7778022_100240,4376_145 -4289_75977,262,4376_13895,Naomh Barróg GAA,105431494,0,4376_7778022_100240,4376_145 -4289_75977,263,4376_13896,Naomh Barróg GAA,105541494,0,4376_7778022_100240,4376_145 -4289_75977,264,4376_13897,Naomh Barróg GAA,105651494,0,4376_7778022_100240,4376_145 -4289_75977,265,4376_13898,Naomh Barróg GAA,105811494,0,4376_7778022_100240,4376_145 -4289_75977,266,4376_13899,Naomh Barróg GAA,105821494,0,4376_7778022_100240,4376_145 -4289_75960,146,4376_139,Sutton Station,105247208,0,4376_7778022_103103,4376_1 -4289_75961,259,4376_1390,Clontarf Station,105764483,1,4376_7778022_104090,4376_19 -4289_75977,267,4376_13900,Naomh Barróg GAA,106051494,0,4376_7778022_100240,4376_145 -4289_75977,268,4376_13901,Naomh Barróg GAA,106141494,0,4376_7778022_100240,4376_145 -4289_75977,269,4376_13902,Naomh Barróg GAA,106231494,0,4376_7778022_100240,4376_145 -4289_75977,259,4376_13903,Naomh Barróg GAA,105764316,0,4376_7778022_100250,4376_146 -4289_75977,270,4376_13904,Naomh Barróg GAA,105277122,0,4376_7778022_100200,4376_145 -4289_75977,146,4376_13905,Naomh Barróg GAA,105247122,0,4376_7778022_100200,4376_145 -4289_75977,271,4376_13906,Naomh Barróg GAA,105237122,0,4376_7778022_100200,4376_145 -4289_75977,115,4376_13907,Naomh Barróg GAA,105217122,0,4376_7778022_100200,4376_145 -4289_75977,260,4376_13908,Naomh Barróg GAA,105311516,0,4376_7778022_100260,4376_145 -4289_75977,261,4376_13909,Naomh Barróg GAA,105321516,0,4376_7778022_100260,4376_145 -4289_75961,270,4376_1391,Clontarf Station,105277269,1,4376_7778022_104051,4376_20 -4289_75977,262,4376_13910,Naomh Barróg GAA,105431516,0,4376_7778022_100260,4376_145 -4289_75977,263,4376_13911,Naomh Barróg GAA,105541516,0,4376_7778022_100260,4376_145 -4289_75977,264,4376_13912,Naomh Barróg GAA,105651516,0,4376_7778022_100260,4376_145 -4289_75977,265,4376_13913,Naomh Barróg GAA,105811516,0,4376_7778022_100260,4376_145 -4289_75977,266,4376_13914,Naomh Barróg GAA,105821516,0,4376_7778022_100260,4376_145 -4289_75977,267,4376_13915,Naomh Barróg GAA,106051516,0,4376_7778022_100260,4376_145 -4289_75977,268,4376_13916,Naomh Barróg GAA,106141516,0,4376_7778022_100260,4376_145 -4289_75977,269,4376_13917,Naomh Barróg GAA,106231516,0,4376_7778022_100260,4376_145 -4289_75977,259,4376_13918,Naomh Barróg GAA,105764344,0,4376_7778022_100210,4376_146 -4289_75977,270,4376_13919,Naomh Barróg GAA,105277146,0,4376_7778022_100190,4376_145 -4289_75961,146,4376_1392,Clontarf Station,105247269,1,4376_7778022_104051,4376_20 -4289_75977,146,4376_13920,Naomh Barróg GAA,105247146,0,4376_7778022_100190,4376_145 -4289_75977,271,4376_13921,Naomh Barróg GAA,105237146,0,4376_7778022_100190,4376_145 -4289_75977,115,4376_13922,Naomh Barróg GAA,105217146,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_13923,Naomh Barróg GAA,105311538,0,4376_7778022_100210,4376_145 -4289_75977,261,4376_13924,Naomh Barróg GAA,105321538,0,4376_7778022_100210,4376_145 -4289_75977,262,4376_13925,Naomh Barróg GAA,105431538,0,4376_7778022_100210,4376_145 -4289_75977,263,4376_13926,Naomh Barróg GAA,105541538,0,4376_7778022_100210,4376_145 -4289_75977,264,4376_13927,Naomh Barróg GAA,105651538,0,4376_7778022_100210,4376_145 -4289_75977,265,4376_13928,Naomh Barróg GAA,105811538,0,4376_7778022_100210,4376_145 -4289_75977,266,4376_13929,Naomh Barróg GAA,105821538,0,4376_7778022_100210,4376_145 -4289_75961,271,4376_1393,Clontarf Station,105237269,1,4376_7778022_104051,4376_20 -4289_75977,267,4376_13930,Naomh Barróg GAA,106051538,0,4376_7778022_100210,4376_145 -4289_75977,268,4376_13931,Naomh Barróg GAA,106141538,0,4376_7778022_100210,4376_145 -4289_75977,269,4376_13932,Naomh Barróg GAA,106231538,0,4376_7778022_100210,4376_145 -4289_75977,259,4376_13933,Naomh Barróg GAA,105764364,0,4376_7778022_100160,4376_146 -4289_75977,260,4376_13934,Naomh Barróg GAA,105311562,0,4376_7778022_100230,4376_145 -4289_75977,261,4376_13935,Naomh Barróg GAA,105321562,0,4376_7778022_100230,4376_145 -4289_75977,262,4376_13936,Naomh Barróg GAA,105431562,0,4376_7778022_100230,4376_145 -4289_75977,263,4376_13937,Naomh Barróg GAA,105541562,0,4376_7778022_100230,4376_145 -4289_75977,264,4376_13938,Naomh Barróg GAA,105651562,0,4376_7778022_100230,4376_145 -4289_75977,265,4376_13939,Naomh Barróg GAA,105811562,0,4376_7778022_100230,4376_145 -4289_75961,115,4376_1394,Clontarf Station,105217269,1,4376_7778022_104051,4376_20 -4289_75977,266,4376_13940,Naomh Barróg GAA,105821562,0,4376_7778022_100230,4376_145 -4289_75977,267,4376_13941,Naomh Barróg GAA,106051562,0,4376_7778022_100230,4376_145 -4289_75977,268,4376_13942,Naomh Barróg GAA,106141562,0,4376_7778022_100230,4376_145 -4289_75977,269,4376_13943,Naomh Barróg GAA,106231562,0,4376_7778022_100230,4376_145 -4289_75977,259,4376_13944,Naomh Barróg GAA,105764388,0,4376_7778022_100180,4376_146 -4289_75977,270,4376_13945,Naomh Barróg GAA,105277172,0,4376_7778022_100160,4376_145 -4289_75977,146,4376_13946,Naomh Barróg GAA,105247172,0,4376_7778022_100160,4376_145 -4289_75977,271,4376_13947,Naomh Barróg GAA,105237172,0,4376_7778022_100160,4376_145 -4289_75977,115,4376_13948,Naomh Barróg GAA,105217172,0,4376_7778022_100160,4376_145 -4289_75977,260,4376_13949,Naomh Barróg GAA,105311578,0,4376_7778022_100320,4376_145 -4289_75961,260,4376_1395,Clontarf Station,105311739,1,4376_7778022_104190,4376_18 -4289_75977,261,4376_13950,Naomh Barróg GAA,105321578,0,4376_7778022_100320,4376_145 -4289_75977,262,4376_13951,Naomh Barróg GAA,105431578,0,4376_7778022_100320,4376_145 -4289_75977,263,4376_13952,Naomh Barróg GAA,105541578,0,4376_7778022_100320,4376_145 -4289_75977,264,4376_13953,Naomh Barróg GAA,105651578,0,4376_7778022_100320,4376_145 -4289_75977,265,4376_13954,Naomh Barróg GAA,105811578,0,4376_7778022_100320,4376_145 -4289_75977,266,4376_13955,Naomh Barróg GAA,105821578,0,4376_7778022_100320,4376_145 -4289_75977,267,4376_13956,Naomh Barróg GAA,106051578,0,4376_7778022_100320,4376_145 -4289_75977,268,4376_13957,Naomh Barróg GAA,106141578,0,4376_7778022_100320,4376_145 -4289_75977,269,4376_13958,Naomh Barróg GAA,106231578,0,4376_7778022_100320,4376_145 -4289_75977,259,4376_13959,Naomh Barróg GAA,105764406,0,4376_7778022_100240,4376_146 -4289_75961,261,4376_1396,Clontarf Station,105321739,1,4376_7778022_104190,4376_18 -4289_75977,270,4376_13960,Naomh Barróg GAA,105277192,0,4376_7778022_100210,4376_145 -4289_75977,146,4376_13961,Naomh Barróg GAA,105247192,0,4376_7778022_100210,4376_145 -4289_75977,271,4376_13962,Naomh Barróg GAA,105237192,0,4376_7778022_100210,4376_145 -4289_75977,115,4376_13963,Naomh Barróg GAA,105217192,0,4376_7778022_100210,4376_145 -4289_75977,260,4376_13964,Naomh Barróg GAA,105311598,0,4376_7778022_100300,4376_145 -4289_75977,261,4376_13965,Naomh Barróg GAA,105321598,0,4376_7778022_100300,4376_145 -4289_75977,262,4376_13966,Naomh Barróg GAA,105431598,0,4376_7778022_100300,4376_145 -4289_75977,263,4376_13967,Naomh Barróg GAA,105541598,0,4376_7778022_100300,4376_145 -4289_75977,264,4376_13968,Naomh Barróg GAA,105651598,0,4376_7778022_100300,4376_145 -4289_75977,265,4376_13969,Naomh Barróg GAA,105811598,0,4376_7778022_100300,4376_145 -4289_75961,262,4376_1397,Clontarf Station,105431739,1,4376_7778022_104190,4376_18 -4289_75977,266,4376_13970,Naomh Barróg GAA,105821598,0,4376_7778022_100300,4376_145 -4289_75977,267,4376_13971,Naomh Barróg GAA,106051598,0,4376_7778022_100300,4376_145 -4289_75977,268,4376_13972,Naomh Barróg GAA,106141598,0,4376_7778022_100300,4376_145 -4289_75977,269,4376_13973,Naomh Barróg GAA,106231598,0,4376_7778022_100300,4376_145 -4289_75977,259,4376_13974,Naomh Barróg GAA,105764420,0,4376_7778022_100200,4376_146 -4289_75977,270,4376_13975,Naomh Barróg GAA,105277220,0,4376_7778022_100230,4376_145 -4289_75977,146,4376_13976,Naomh Barróg GAA,105247220,0,4376_7778022_100230,4376_145 -4289_75977,271,4376_13977,Naomh Barróg GAA,105237220,0,4376_7778022_100230,4376_145 -4289_75977,115,4376_13978,Naomh Barróg GAA,105217220,0,4376_7778022_100230,4376_145 -4289_75977,260,4376_13979,Naomh Barróg GAA,105311626,0,4376_7778022_100250,4376_145 -4289_75961,263,4376_1398,Clontarf Station,105541739,1,4376_7778022_104190,4376_18 -4289_75977,261,4376_13980,Naomh Barróg GAA,105321626,0,4376_7778022_100250,4376_145 -4289_75977,262,4376_13981,Naomh Barróg GAA,105431626,0,4376_7778022_100250,4376_145 -4289_75977,263,4376_13982,Naomh Barróg GAA,105541626,0,4376_7778022_100250,4376_145 -4289_75977,264,4376_13983,Naomh Barróg GAA,105651626,0,4376_7778022_100250,4376_145 -4289_75977,265,4376_13984,Naomh Barróg GAA,105811626,0,4376_7778022_100250,4376_145 -4289_75977,266,4376_13985,Naomh Barróg GAA,105821626,0,4376_7778022_100250,4376_145 -4289_75977,267,4376_13986,Naomh Barróg GAA,106051626,0,4376_7778022_100250,4376_145 -4289_75977,268,4376_13987,Naomh Barróg GAA,106141626,0,4376_7778022_100250,4376_145 -4289_75977,269,4376_13988,Naomh Barróg GAA,106231626,0,4376_7778022_100250,4376_145 -4289_75977,259,4376_13989,Naomh Barróg GAA,105764448,0,4376_7778022_100170,4376_146 -4289_75961,264,4376_1399,Clontarf Station,105651739,1,4376_7778022_104190,4376_18 -4289_75977,270,4376_13990,Naomh Barróg GAA,105277238,0,4376_7778022_100180,4376_145 -4289_75977,146,4376_13991,Naomh Barróg GAA,105247238,0,4376_7778022_100180,4376_145 -4289_75977,271,4376_13992,Naomh Barróg GAA,105237238,0,4376_7778022_100180,4376_145 -4289_75977,115,4376_13993,Naomh Barróg GAA,105217238,0,4376_7778022_100180,4376_145 -4289_75977,260,4376_13994,Naomh Barróg GAA,105311644,0,4376_7778022_100200,4376_145 -4289_75977,261,4376_13995,Naomh Barróg GAA,105321644,0,4376_7778022_100200,4376_145 -4289_75977,262,4376_13996,Naomh Barróg GAA,105431644,0,4376_7778022_100200,4376_145 -4289_75977,263,4376_13997,Naomh Barróg GAA,105541644,0,4376_7778022_100200,4376_145 -4289_75977,264,4376_13998,Naomh Barróg GAA,105651644,0,4376_7778022_100200,4376_145 -4289_75977,265,4376_13999,Naomh Barróg GAA,105811644,0,4376_7778022_100200,4376_145 -4289_75960,261,4376_14,Sutton Station,105321070,0,4376_7778022_103107,4376_1 -4289_75960,271,4376_140,Sutton Station,105237208,0,4376_7778022_103103,4376_1 -4289_75961,265,4376_1400,Clontarf Station,105811739,1,4376_7778022_104190,4376_18 -4289_75977,266,4376_14000,Naomh Barróg GAA,105821644,0,4376_7778022_100200,4376_145 -4289_75977,267,4376_14001,Naomh Barróg GAA,106051644,0,4376_7778022_100200,4376_145 -4289_75977,268,4376_14002,Naomh Barróg GAA,106141644,0,4376_7778022_100200,4376_145 -4289_75977,269,4376_14003,Naomh Barróg GAA,106231644,0,4376_7778022_100200,4376_145 -4289_75977,259,4376_14004,Naomh Barróg GAA,105764466,0,4376_7778022_100220,4376_146 -4289_75977,260,4376_14005,Naomh Barróg GAA,105311670,0,4376_7778022_100220,4376_145 -4289_75977,261,4376_14006,Naomh Barróg GAA,105321670,0,4376_7778022_100220,4376_145 -4289_75977,262,4376_14007,Naomh Barróg GAA,105431670,0,4376_7778022_100220,4376_145 -4289_75977,263,4376_14008,Naomh Barróg GAA,105541670,0,4376_7778022_100220,4376_145 -4289_75977,264,4376_14009,Naomh Barróg GAA,105651670,0,4376_7778022_100220,4376_145 -4289_75961,266,4376_1401,Clontarf Station,105821739,1,4376_7778022_104190,4376_18 -4289_75977,265,4376_14010,Naomh Barróg GAA,105811670,0,4376_7778022_100220,4376_145 -4289_75977,266,4376_14011,Naomh Barróg GAA,105821670,0,4376_7778022_100220,4376_145 -4289_75977,267,4376_14012,Naomh Barróg GAA,106051670,0,4376_7778022_100220,4376_145 -4289_75977,268,4376_14013,Naomh Barróg GAA,106141670,0,4376_7778022_100220,4376_145 -4289_75977,269,4376_14014,Naomh Barróg GAA,106231670,0,4376_7778022_100220,4376_145 -4289_75977,259,4376_14015,Naomh Barróg GAA,105764490,0,4376_7778022_100230,4376_146 -4289_75977,270,4376_14016,Naomh Barróg GAA,105277266,0,4376_7778022_100170,4376_145 -4289_75977,146,4376_14017,Naomh Barróg GAA,105247266,0,4376_7778022_100170,4376_145 -4289_75977,271,4376_14018,Naomh Barróg GAA,105237266,0,4376_7778022_100170,4376_145 -4289_75977,115,4376_14019,Naomh Barróg GAA,105217266,0,4376_7778022_100170,4376_145 -4289_75961,267,4376_1402,Clontarf Station,106051739,1,4376_7778022_104190,4376_18 -4289_75977,260,4376_14020,Naomh Barróg GAA,105311688,0,4376_7778022_100290,4376_145 -4289_75977,261,4376_14021,Naomh Barróg GAA,105321688,0,4376_7778022_100290,4376_145 -4289_75977,262,4376_14022,Naomh Barróg GAA,105431688,0,4376_7778022_100290,4376_145 -4289_75977,263,4376_14023,Naomh Barróg GAA,105541688,0,4376_7778022_100290,4376_145 -4289_75977,264,4376_14024,Naomh Barróg GAA,105651688,0,4376_7778022_100290,4376_145 -4289_75977,265,4376_14025,Naomh Barróg GAA,105811688,0,4376_7778022_100290,4376_145 -4289_75977,266,4376_14026,Naomh Barróg GAA,105821688,0,4376_7778022_100290,4376_145 -4289_75977,267,4376_14027,Naomh Barróg GAA,106051688,0,4376_7778022_100290,4376_145 -4289_75977,268,4376_14028,Naomh Barróg GAA,106141688,0,4376_7778022_100290,4376_145 -4289_75977,269,4376_14029,Naomh Barróg GAA,106231688,0,4376_7778022_100290,4376_145 -4289_75961,268,4376_1403,Clontarf Station,106141739,1,4376_7778022_104190,4376_18 -4289_75977,259,4376_14030,Naomh Barróg GAA,105764510,0,4376_7778022_100190,4376_146 -4289_75977,270,4376_14031,Naomh Barróg GAA,105277282,0,4376_7778022_100200,4376_145 -4289_75977,146,4376_14032,Naomh Barróg GAA,105247282,0,4376_7778022_100200,4376_145 -4289_75977,271,4376_14033,Naomh Barróg GAA,105237282,0,4376_7778022_100200,4376_145 -4289_75977,115,4376_14034,Naomh Barróg GAA,105217282,0,4376_7778022_100200,4376_145 -4289_75977,260,4376_14035,Naomh Barróg GAA,105311708,0,4376_7778022_100330,4376_145 -4289_75977,261,4376_14036,Naomh Barróg GAA,105321708,0,4376_7778022_100330,4376_145 -4289_75977,262,4376_14037,Naomh Barróg GAA,105431708,0,4376_7778022_100330,4376_145 -4289_75977,263,4376_14038,Naomh Barróg GAA,105541708,0,4376_7778022_100330,4376_145 -4289_75977,264,4376_14039,Naomh Barróg GAA,105651708,0,4376_7778022_100330,4376_145 -4289_75961,269,4376_1404,Clontarf Station,106231739,1,4376_7778022_104190,4376_18 -4289_75977,265,4376_14040,Naomh Barróg GAA,105811708,0,4376_7778022_100330,4376_145 -4289_75977,266,4376_14041,Naomh Barróg GAA,105821708,0,4376_7778022_100330,4376_145 -4289_75977,267,4376_14042,Naomh Barróg GAA,106051708,0,4376_7778022_100330,4376_145 -4289_75977,268,4376_14043,Naomh Barróg GAA,106141708,0,4376_7778022_100330,4376_145 -4289_75977,269,4376_14044,Naomh Barróg GAA,106231708,0,4376_7778022_100330,4376_145 -4289_75977,259,4376_14045,Naomh Barróg GAA,105764524,0,4376_7778022_100250,4376_146 -4289_75977,270,4376_14046,Naomh Barróg GAA,105277312,0,4376_7778022_100220,4376_145 -4289_75977,146,4376_14047,Naomh Barróg GAA,105247312,0,4376_7778022_100220,4376_145 -4289_75977,271,4376_14048,Naomh Barróg GAA,105237312,0,4376_7778022_100220,4376_145 -4289_75977,115,4376_14049,Naomh Barróg GAA,105217312,0,4376_7778022_100220,4376_145 -4289_75961,259,4376_1405,Clontarf Station,105764585,1,4376_7778022_104150,4376_19 -4289_75977,260,4376_14050,Naomh Barróg GAA,105311736,0,4376_7778022_100310,4376_145 -4289_75977,261,4376_14051,Naomh Barróg GAA,105321736,0,4376_7778022_100310,4376_145 -4289_75977,262,4376_14052,Naomh Barróg GAA,105431736,0,4376_7778022_100310,4376_145 -4289_75977,263,4376_14053,Naomh Barróg GAA,105541736,0,4376_7778022_100310,4376_145 -4289_75977,264,4376_14054,Naomh Barróg GAA,105651736,0,4376_7778022_100310,4376_145 -4289_75977,265,4376_14055,Naomh Barróg GAA,105811736,0,4376_7778022_100310,4376_145 -4289_75977,266,4376_14056,Naomh Barróg GAA,105821736,0,4376_7778022_100310,4376_145 -4289_75977,267,4376_14057,Naomh Barróg GAA,106051736,0,4376_7778022_100310,4376_145 -4289_75977,268,4376_14058,Naomh Barróg GAA,106141736,0,4376_7778022_100310,4376_145 -4289_75977,269,4376_14059,Naomh Barróg GAA,106231736,0,4376_7778022_100310,4376_145 -4289_75961,270,4376_1406,Clontarf Station,105277355,1,4376_7778022_104130,4376_20 -4289_75977,259,4376_14060,Naomh Barróg GAA,105764550,0,4376_7778022_100270,4376_146 -4289_75977,270,4376_14061,Naomh Barróg GAA,105277328,0,4376_7778022_100190,4376_145 -4289_75977,146,4376_14062,Naomh Barróg GAA,105247328,0,4376_7778022_100190,4376_145 -4289_75977,271,4376_14063,Naomh Barróg GAA,105237328,0,4376_7778022_100190,4376_145 -4289_75977,115,4376_14064,Naomh Barróg GAA,105217328,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_14065,Naomh Barróg GAA,105311750,0,4376_7778022_100240,4376_145 -4289_75977,261,4376_14066,Naomh Barróg GAA,105321750,0,4376_7778022_100240,4376_145 -4289_75977,262,4376_14067,Naomh Barróg GAA,105431750,0,4376_7778022_100240,4376_145 -4289_75977,263,4376_14068,Naomh Barróg GAA,105541750,0,4376_7778022_100240,4376_145 -4289_75977,264,4376_14069,Naomh Barróg GAA,105651750,0,4376_7778022_100240,4376_145 -4289_75961,146,4376_1407,Clontarf Station,105247355,1,4376_7778022_104130,4376_20 -4289_75977,265,4376_14070,Naomh Barróg GAA,105811750,0,4376_7778022_100240,4376_145 -4289_75977,266,4376_14071,Naomh Barróg GAA,105821750,0,4376_7778022_100240,4376_145 -4289_75977,267,4376_14072,Naomh Barróg GAA,106051750,0,4376_7778022_100240,4376_145 -4289_75977,268,4376_14073,Naomh Barróg GAA,106141750,0,4376_7778022_100240,4376_145 -4289_75977,269,4376_14074,Naomh Barróg GAA,106231750,0,4376_7778022_100240,4376_145 -4289_75977,259,4376_14075,Naomh Barróg GAA,105764568,0,4376_7778022_100210,4376_146 -4289_75977,260,4376_14076,Naomh Barróg GAA,105311778,0,4376_7778022_100260,4376_145 -4289_75977,261,4376_14077,Naomh Barróg GAA,105321778,0,4376_7778022_100260,4376_145 -4289_75977,262,4376_14078,Naomh Barróg GAA,105431778,0,4376_7778022_100260,4376_145 -4289_75977,263,4376_14079,Naomh Barróg GAA,105541778,0,4376_7778022_100260,4376_145 -4289_75961,271,4376_1408,Clontarf Station,105237355,1,4376_7778022_104130,4376_20 -4289_75977,264,4376_14080,Naomh Barróg GAA,105651778,0,4376_7778022_100260,4376_145 -4289_75977,265,4376_14081,Naomh Barróg GAA,105811778,0,4376_7778022_100260,4376_145 -4289_75977,266,4376_14082,Naomh Barróg GAA,105821778,0,4376_7778022_100260,4376_145 -4289_75977,267,4376_14083,Naomh Barróg GAA,106051778,0,4376_7778022_100260,4376_145 -4289_75977,268,4376_14084,Naomh Barróg GAA,106141778,0,4376_7778022_100260,4376_145 -4289_75977,269,4376_14085,Naomh Barróg GAA,106231778,0,4376_7778022_100260,4376_145 -4289_75977,259,4376_14086,Naomh Barróg GAA,105764594,0,4376_7778022_100160,4376_146 -4289_75977,270,4376_14087,Naomh Barróg GAA,105277358,0,4376_7778022_100160,4376_145 -4289_75977,146,4376_14088,Naomh Barróg GAA,105247358,0,4376_7778022_100160,4376_145 -4289_75977,271,4376_14089,Naomh Barróg GAA,105237358,0,4376_7778022_100160,4376_145 -4289_75961,115,4376_1409,Clontarf Station,105217355,1,4376_7778022_104130,4376_20 -4289_75977,115,4376_14090,Naomh Barróg GAA,105217358,0,4376_7778022_100160,4376_145 -4289_75977,260,4376_14091,Naomh Barróg GAA,105311798,0,4376_7778022_100210,4376_145 -4289_75977,261,4376_14092,Naomh Barróg GAA,105321798,0,4376_7778022_100210,4376_145 -4289_75977,262,4376_14093,Naomh Barróg GAA,105431798,0,4376_7778022_100210,4376_145 -4289_75977,263,4376_14094,Naomh Barróg GAA,105541798,0,4376_7778022_100210,4376_145 -4289_75977,264,4376_14095,Naomh Barróg GAA,105651798,0,4376_7778022_100210,4376_145 -4289_75977,265,4376_14096,Naomh Barróg GAA,105811798,0,4376_7778022_100210,4376_145 -4289_75977,266,4376_14097,Naomh Barróg GAA,105821798,0,4376_7778022_100210,4376_145 -4289_75977,267,4376_14098,Naomh Barróg GAA,106051798,0,4376_7778022_100210,4376_145 -4289_75977,268,4376_14099,Naomh Barróg GAA,106141798,0,4376_7778022_100210,4376_145 -4289_75960,115,4376_141,Sutton Station,105217208,0,4376_7778022_103103,4376_1 -4289_75961,260,4376_1410,Clontarf Station,105311853,1,4376_7778022_104060,4376_18 -4289_75977,269,4376_14100,Naomh Barróg GAA,106231798,0,4376_7778022_100210,4376_145 -4289_75977,259,4376_14101,Naomh Barróg GAA,105764612,0,4376_7778022_100260,4376_146 -4289_75977,270,4376_14102,Naomh Barróg GAA,105277374,0,4376_7778022_100210,4376_145 -4289_75977,146,4376_14103,Naomh Barróg GAA,105247374,0,4376_7778022_100210,4376_145 -4289_75977,271,4376_14104,Naomh Barróg GAA,105237374,0,4376_7778022_100210,4376_145 -4289_75977,115,4376_14105,Naomh Barróg GAA,105217374,0,4376_7778022_100210,4376_145 -4289_75977,260,4376_14106,Naomh Barróg GAA,105311816,0,4376_7778022_100230,4376_145 -4289_75977,261,4376_14107,Naomh Barróg GAA,105321816,0,4376_7778022_100230,4376_145 -4289_75977,262,4376_14108,Naomh Barróg GAA,105431816,0,4376_7778022_100230,4376_145 -4289_75977,263,4376_14109,Naomh Barróg GAA,105541816,0,4376_7778022_100230,4376_145 -4289_75961,261,4376_1411,Clontarf Station,105321853,1,4376_7778022_104060,4376_18 -4289_75977,264,4376_14110,Naomh Barróg GAA,105651816,0,4376_7778022_100230,4376_145 -4289_75977,265,4376_14111,Naomh Barróg GAA,105811816,0,4376_7778022_100230,4376_145 -4289_75977,266,4376_14112,Naomh Barróg GAA,105821816,0,4376_7778022_100230,4376_145 -4289_75977,267,4376_14113,Naomh Barróg GAA,106051816,0,4376_7778022_100230,4376_145 -4289_75977,268,4376_14114,Naomh Barróg GAA,106141816,0,4376_7778022_100230,4376_145 -4289_75977,269,4376_14115,Naomh Barróg GAA,106231816,0,4376_7778022_100230,4376_145 -4289_75977,259,4376_14116,Naomh Barróg GAA,105764626,0,4376_7778022_100180,4376_146 -4289_75977,270,4376_14117,Naomh Barróg GAA,105277404,0,4376_7778022_100230,4376_145 -4289_75977,146,4376_14118,Naomh Barróg GAA,105247404,0,4376_7778022_100230,4376_145 -4289_75977,271,4376_14119,Naomh Barróg GAA,105237404,0,4376_7778022_100230,4376_145 -4289_75961,262,4376_1412,Clontarf Station,105431853,1,4376_7778022_104060,4376_18 -4289_75977,115,4376_14120,Naomh Barróg GAA,105217404,0,4376_7778022_100230,4376_145 -4289_75977,260,4376_14121,Naomh Barróg GAA,105311840,0,4376_7778022_100320,4376_145 -4289_75977,261,4376_14122,Naomh Barróg GAA,105321840,0,4376_7778022_100320,4376_145 -4289_75977,262,4376_14123,Naomh Barróg GAA,105431840,0,4376_7778022_100320,4376_145 -4289_75977,263,4376_14124,Naomh Barróg GAA,105541840,0,4376_7778022_100320,4376_145 -4289_75977,264,4376_14125,Naomh Barróg GAA,105651840,0,4376_7778022_100320,4376_145 -4289_75977,265,4376_14126,Naomh Barróg GAA,105811840,0,4376_7778022_100320,4376_145 -4289_75977,266,4376_14127,Naomh Barróg GAA,105821840,0,4376_7778022_100320,4376_145 -4289_75977,267,4376_14128,Naomh Barróg GAA,106051840,0,4376_7778022_100320,4376_145 -4289_75977,268,4376_14129,Naomh Barróg GAA,106141840,0,4376_7778022_100320,4376_145 -4289_75961,263,4376_1413,Clontarf Station,105541853,1,4376_7778022_104060,4376_18 -4289_75977,269,4376_14130,Naomh Barróg GAA,106231840,0,4376_7778022_100320,4376_145 -4289_75977,259,4376_14131,Naomh Barróg GAA,105764654,0,4376_7778022_100240,4376_146 -4289_75977,270,4376_14132,Naomh Barróg GAA,105277418,0,4376_7778022_100180,4376_145 -4289_75977,146,4376_14133,Naomh Barróg GAA,105247418,0,4376_7778022_100180,4376_145 -4289_75977,271,4376_14134,Naomh Barróg GAA,105237418,0,4376_7778022_100180,4376_145 -4289_75977,115,4376_14135,Naomh Barróg GAA,105217418,0,4376_7778022_100180,4376_145 -4289_75977,260,4376_14136,Naomh Barróg GAA,105311860,0,4376_7778022_100300,4376_145 -4289_75977,261,4376_14137,Naomh Barróg GAA,105321860,0,4376_7778022_100300,4376_145 -4289_75977,262,4376_14138,Naomh Barróg GAA,105431860,0,4376_7778022_100300,4376_145 -4289_75977,263,4376_14139,Naomh Barróg GAA,105541860,0,4376_7778022_100300,4376_145 -4289_75961,264,4376_1414,Clontarf Station,105651853,1,4376_7778022_104060,4376_18 -4289_75977,264,4376_14140,Naomh Barróg GAA,105651860,0,4376_7778022_100300,4376_145 -4289_75977,265,4376_14141,Naomh Barróg GAA,105811860,0,4376_7778022_100300,4376_145 -4289_75977,266,4376_14142,Naomh Barróg GAA,105821860,0,4376_7778022_100300,4376_145 -4289_75977,267,4376_14143,Naomh Barróg GAA,106051860,0,4376_7778022_100300,4376_145 -4289_75977,268,4376_14144,Naomh Barróg GAA,106141860,0,4376_7778022_100300,4376_145 -4289_75977,269,4376_14145,Naomh Barróg GAA,106231860,0,4376_7778022_100300,4376_145 -4289_75977,259,4376_14146,Naomh Barróg GAA,105764672,0,4376_7778022_100200,4376_146 -4289_75977,260,4376_14147,Naomh Barróg GAA,105311886,0,4376_7778022_100250,4376_145 -4289_75977,261,4376_14148,Naomh Barróg GAA,105321886,0,4376_7778022_100250,4376_145 -4289_75977,262,4376_14149,Naomh Barróg GAA,105431886,0,4376_7778022_100250,4376_145 -4289_75961,265,4376_1415,Clontarf Station,105811853,1,4376_7778022_104060,4376_18 -4289_75977,263,4376_14150,Naomh Barróg GAA,105541886,0,4376_7778022_100250,4376_145 -4289_75977,264,4376_14151,Naomh Barróg GAA,105651886,0,4376_7778022_100250,4376_145 -4289_75977,265,4376_14152,Naomh Barróg GAA,105811886,0,4376_7778022_100250,4376_145 -4289_75977,266,4376_14153,Naomh Barróg GAA,105821886,0,4376_7778022_100250,4376_145 -4289_75977,267,4376_14154,Naomh Barróg GAA,106051886,0,4376_7778022_100250,4376_145 -4289_75977,268,4376_14155,Naomh Barróg GAA,106141886,0,4376_7778022_100250,4376_145 -4289_75977,269,4376_14156,Naomh Barróg GAA,106231886,0,4376_7778022_100250,4376_145 -4289_75977,259,4376_14157,Naomh Barróg GAA,105764696,0,4376_7778022_100170,4376_146 -4289_75977,270,4376_14158,Naomh Barróg GAA,105277448,0,4376_7778022_100170,4376_145 -4289_75977,146,4376_14159,Naomh Barróg GAA,105247448,0,4376_7778022_100170,4376_145 -4289_75961,266,4376_1416,Clontarf Station,105821853,1,4376_7778022_104060,4376_18 -4289_75977,271,4376_14160,Naomh Barróg GAA,105237448,0,4376_7778022_100170,4376_145 -4289_75977,115,4376_14161,Naomh Barróg GAA,105217448,0,4376_7778022_100170,4376_145 -4289_75977,260,4376_14162,Naomh Barróg GAA,105311906,0,4376_7778022_100200,4376_145 -4289_75977,261,4376_14163,Naomh Barróg GAA,105321906,0,4376_7778022_100200,4376_145 -4289_75977,262,4376_14164,Naomh Barróg GAA,105431906,0,4376_7778022_100200,4376_145 -4289_75977,263,4376_14165,Naomh Barróg GAA,105541906,0,4376_7778022_100200,4376_145 -4289_75977,264,4376_14166,Naomh Barróg GAA,105651906,0,4376_7778022_100200,4376_145 -4289_75977,265,4376_14167,Naomh Barróg GAA,105811906,0,4376_7778022_100200,4376_145 -4289_75977,266,4376_14168,Naomh Barróg GAA,105821906,0,4376_7778022_100200,4376_145 -4289_75977,267,4376_14169,Naomh Barróg GAA,106051906,0,4376_7778022_100200,4376_145 -4289_75961,267,4376_1417,Clontarf Station,106051853,1,4376_7778022_104060,4376_18 -4289_75977,268,4376_14170,Naomh Barróg GAA,106141906,0,4376_7778022_100200,4376_145 -4289_75977,269,4376_14171,Naomh Barróg GAA,106231906,0,4376_7778022_100200,4376_145 -4289_75977,259,4376_14172,Naomh Barróg GAA,105764714,0,4376_7778022_100220,4376_146 -4289_75977,270,4376_14173,Naomh Barróg GAA,105277464,0,4376_7778022_100200,4376_145 -4289_75977,146,4376_14174,Naomh Barróg GAA,105247464,0,4376_7778022_100200,4376_145 -4289_75977,271,4376_14175,Naomh Barróg GAA,105237464,0,4376_7778022_100200,4376_145 -4289_75977,115,4376_14176,Naomh Barróg GAA,105217464,0,4376_7778022_100200,4376_145 -4289_75977,260,4376_14177,Naomh Barróg GAA,105311924,0,4376_7778022_100220,4376_145 -4289_75977,261,4376_14178,Naomh Barróg GAA,105321924,0,4376_7778022_100220,4376_145 -4289_75977,262,4376_14179,Naomh Barróg GAA,105431924,0,4376_7778022_100220,4376_145 -4289_75961,268,4376_1418,Clontarf Station,106141853,1,4376_7778022_104060,4376_18 -4289_75977,263,4376_14180,Naomh Barróg GAA,105541924,0,4376_7778022_100220,4376_145 -4289_75977,264,4376_14181,Naomh Barróg GAA,105651924,0,4376_7778022_100220,4376_145 -4289_75977,265,4376_14182,Naomh Barróg GAA,105811924,0,4376_7778022_100220,4376_145 -4289_75977,266,4376_14183,Naomh Barróg GAA,105821924,0,4376_7778022_100220,4376_145 -4289_75977,267,4376_14184,Naomh Barróg GAA,106051924,0,4376_7778022_100220,4376_145 -4289_75977,268,4376_14185,Naomh Barróg GAA,106141924,0,4376_7778022_100220,4376_145 -4289_75977,269,4376_14186,Naomh Barróg GAA,106231924,0,4376_7778022_100220,4376_145 -4289_75977,259,4376_14187,Naomh Barróg GAA,105764730,0,4376_7778022_100230,4376_146 -4289_75977,270,4376_14188,Naomh Barróg GAA,105277494,0,4376_7778022_100220,4376_145 -4289_75977,146,4376_14189,Naomh Barróg GAA,105247494,0,4376_7778022_100220,4376_145 -4289_75961,269,4376_1419,Clontarf Station,106231853,1,4376_7778022_104060,4376_18 -4289_75977,271,4376_14190,Naomh Barróg GAA,105237494,0,4376_7778022_100220,4376_145 -4289_75977,115,4376_14191,Naomh Barróg GAA,105217494,0,4376_7778022_100220,4376_145 -4289_75977,260,4376_14192,Naomh Barróg GAA,105311954,0,4376_7778022_100290,4376_145 -4289_75977,261,4376_14193,Naomh Barróg GAA,105321954,0,4376_7778022_100290,4376_145 -4289_75977,262,4376_14194,Naomh Barróg GAA,105431954,0,4376_7778022_100290,4376_145 -4289_75977,263,4376_14195,Naomh Barróg GAA,105541954,0,4376_7778022_100290,4376_145 -4289_75977,264,4376_14196,Naomh Barróg GAA,105651954,0,4376_7778022_100290,4376_145 -4289_75977,265,4376_14197,Naomh Barróg GAA,105811954,0,4376_7778022_100290,4376_145 -4289_75977,266,4376_14198,Naomh Barróg GAA,105821954,0,4376_7778022_100290,4376_145 -4289_75977,267,4376_14199,Naomh Barróg GAA,106051954,0,4376_7778022_100290,4376_145 -4289_75960,260,4376_142,Sutton Station,105311650,0,4376_7778022_103104,4376_1 -4289_75961,259,4376_1420,Clontarf Station,105764687,1,4376_7778022_104171,4376_19 -4289_75977,268,4376_14200,Naomh Barróg GAA,106141954,0,4376_7778022_100290,4376_145 -4289_75977,269,4376_14201,Naomh Barróg GAA,106231954,0,4376_7778022_100290,4376_145 -4289_75977,259,4376_14202,Naomh Barróg GAA,105764758,0,4376_7778022_100190,4376_146 -4289_75977,270,4376_14203,Naomh Barróg GAA,105277512,0,4376_7778022_100190,4376_145 -4289_75977,146,4376_14204,Naomh Barróg GAA,105247512,0,4376_7778022_100190,4376_145 -4289_75977,271,4376_14205,Naomh Barróg GAA,105237512,0,4376_7778022_100190,4376_145 -4289_75977,115,4376_14206,Naomh Barróg GAA,105217512,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_14207,Naomh Barróg GAA,105311970,0,4376_7778022_100330,4376_145 -4289_75977,261,4376_14208,Naomh Barróg GAA,105321970,0,4376_7778022_100330,4376_145 -4289_75977,262,4376_14209,Naomh Barróg GAA,105431970,0,4376_7778022_100330,4376_145 -4289_75961,270,4376_1421,Clontarf Station,105277445,1,4376_7778022_104070,4376_20 -4289_75977,263,4376_14210,Naomh Barróg GAA,105541970,0,4376_7778022_100330,4376_145 -4289_75977,264,4376_14211,Naomh Barróg GAA,105651970,0,4376_7778022_100330,4376_145 -4289_75977,265,4376_14212,Naomh Barróg GAA,105811970,0,4376_7778022_100330,4376_145 -4289_75977,266,4376_14213,Naomh Barróg GAA,105821970,0,4376_7778022_100330,4376_145 -4289_75977,267,4376_14214,Naomh Barróg GAA,106051970,0,4376_7778022_100330,4376_145 -4289_75977,268,4376_14215,Naomh Barróg GAA,106141970,0,4376_7778022_100330,4376_145 -4289_75977,269,4376_14216,Naomh Barróg GAA,106231970,0,4376_7778022_100330,4376_145 -4289_75977,259,4376_14217,Naomh Barróg GAA,105764774,0,4376_7778022_100250,4376_146 -4289_75977,260,4376_14218,Naomh Barróg GAA,105311996,0,4376_7778022_100310,4376_145 -4289_75977,261,4376_14219,Naomh Barróg GAA,105321996,0,4376_7778022_100310,4376_145 -4289_75961,146,4376_1422,Clontarf Station,105247445,1,4376_7778022_104070,4376_20 -4289_75977,262,4376_14220,Naomh Barróg GAA,105431996,0,4376_7778022_100310,4376_145 -4289_75977,263,4376_14221,Naomh Barróg GAA,105541996,0,4376_7778022_100310,4376_145 -4289_75977,264,4376_14222,Naomh Barróg GAA,105651996,0,4376_7778022_100310,4376_145 -4289_75977,265,4376_14223,Naomh Barróg GAA,105811996,0,4376_7778022_100310,4376_145 -4289_75977,266,4376_14224,Naomh Barróg GAA,105821996,0,4376_7778022_100310,4376_145 -4289_75977,267,4376_14225,Naomh Barróg GAA,106051996,0,4376_7778022_100310,4376_145 -4289_75977,268,4376_14226,Naomh Barróg GAA,106141996,0,4376_7778022_100310,4376_145 -4289_75977,269,4376_14227,Naomh Barróg GAA,106231996,0,4376_7778022_100310,4376_145 -4289_75977,259,4376_14228,Naomh Barróg GAA,105764798,0,4376_7778022_100270,4376_146 -4289_75977,270,4376_14229,Naomh Barróg GAA,105277538,0,4376_7778022_100160,4376_145 -4289_75961,271,4376_1423,Clontarf Station,105237445,1,4376_7778022_104070,4376_20 -4289_75977,146,4376_14230,Naomh Barróg GAA,105247538,0,4376_7778022_100160,4376_145 -4289_75977,271,4376_14231,Naomh Barróg GAA,105237538,0,4376_7778022_100160,4376_145 -4289_75977,115,4376_14232,Naomh Barróg GAA,105217538,0,4376_7778022_100160,4376_145 -4289_75977,260,4376_14233,Naomh Barróg GAA,105312016,0,4376_7778022_100240,4376_145 -4289_75977,261,4376_14234,Naomh Barróg GAA,105322016,0,4376_7778022_100240,4376_145 -4289_75977,262,4376_14235,Naomh Barróg GAA,105432016,0,4376_7778022_100240,4376_145 -4289_75977,263,4376_14236,Naomh Barróg GAA,105542016,0,4376_7778022_100240,4376_145 -4289_75977,264,4376_14237,Naomh Barróg GAA,105652016,0,4376_7778022_100240,4376_145 -4289_75977,265,4376_14238,Naomh Barróg GAA,105812016,0,4376_7778022_100240,4376_145 -4289_75977,266,4376_14239,Naomh Barróg GAA,105822016,0,4376_7778022_100240,4376_145 -4289_75961,115,4376_1424,Clontarf Station,105217445,1,4376_7778022_104070,4376_20 -4289_75977,267,4376_14240,Naomh Barróg GAA,106052016,0,4376_7778022_100240,4376_145 -4289_75977,268,4376_14241,Naomh Barróg GAA,106142016,0,4376_7778022_100240,4376_145 -4289_75977,269,4376_14242,Naomh Barróg GAA,106232016,0,4376_7778022_100240,4376_145 -4289_75977,259,4376_14243,Naomh Barróg GAA,105764816,0,4376_7778022_100210,4376_146 -4289_75977,270,4376_14244,Naomh Barróg GAA,105277554,0,4376_7778022_100210,4376_145 -4289_75977,146,4376_14245,Naomh Barróg GAA,105247554,0,4376_7778022_100210,4376_145 -4289_75977,271,4376_14246,Naomh Barróg GAA,105237554,0,4376_7778022_100210,4376_145 -4289_75977,115,4376_14247,Naomh Barróg GAA,105217554,0,4376_7778022_100210,4376_145 -4289_75977,260,4376_14248,Naomh Barróg GAA,105312036,0,4376_7778022_100282,4376_145 -4289_75977,261,4376_14249,Naomh Barróg GAA,105322036,0,4376_7778022_100282,4376_145 -4289_75961,260,4376_1425,Clontarf Station,105311963,1,4376_7778022_104110,4376_18 -4289_75977,262,4376_14250,Naomh Barróg GAA,105432036,0,4376_7778022_100282,4376_145 -4289_75977,263,4376_14251,Naomh Barróg GAA,105542036,0,4376_7778022_100282,4376_145 -4289_75977,264,4376_14252,Naomh Barróg GAA,105652036,0,4376_7778022_100282,4376_145 -4289_75977,265,4376_14253,Naomh Barróg GAA,105812036,0,4376_7778022_100282,4376_145 -4289_75977,266,4376_14254,Naomh Barróg GAA,105822036,0,4376_7778022_100282,4376_145 -4289_75977,267,4376_14255,Naomh Barróg GAA,106052036,0,4376_7778022_100282,4376_145 -4289_75977,268,4376_14256,Naomh Barróg GAA,106142036,0,4376_7778022_100282,4376_145 -4289_75977,269,4376_14257,Naomh Barróg GAA,106232036,0,4376_7778022_100282,4376_145 -4289_75977,259,4376_14258,Naomh Barróg GAA,105764832,0,4376_7778022_100160,4376_146 -4289_75977,270,4376_14259,Naomh Barróg GAA,105277586,0,4376_7778022_100230,4376_145 -4289_75961,261,4376_1426,Clontarf Station,105321963,1,4376_7778022_104110,4376_18 -4289_75977,146,4376_14260,Naomh Barróg GAA,105247586,0,4376_7778022_100230,4376_145 -4289_75977,271,4376_14261,Naomh Barróg GAA,105237586,0,4376_7778022_100230,4376_145 -4289_75977,115,4376_14262,Naomh Barróg GAA,105217586,0,4376_7778022_100230,4376_145 -4289_75977,260,4376_14263,Naomh Barróg GAA,105312068,0,4376_7778022_100260,4376_145 -4289_75977,261,4376_14264,Naomh Barróg GAA,105322068,0,4376_7778022_100260,4376_145 -4289_75977,262,4376_14265,Naomh Barróg GAA,105432068,0,4376_7778022_100260,4376_145 -4289_75977,263,4376_14266,Naomh Barróg GAA,105542068,0,4376_7778022_100260,4376_145 -4289_75977,264,4376_14267,Naomh Barróg GAA,105652068,0,4376_7778022_100260,4376_145 -4289_75977,265,4376_14268,Naomh Barróg GAA,105812068,0,4376_7778022_100260,4376_145 -4289_75977,266,4376_14269,Naomh Barróg GAA,105822068,0,4376_7778022_100260,4376_145 -4289_75961,262,4376_1427,Clontarf Station,105431963,1,4376_7778022_104110,4376_18 -4289_75977,267,4376_14270,Naomh Barróg GAA,106052068,0,4376_7778022_100260,4376_145 -4289_75977,268,4376_14271,Naomh Barróg GAA,106142068,0,4376_7778022_100260,4376_145 -4289_75977,269,4376_14272,Naomh Barróg GAA,106232068,0,4376_7778022_100260,4376_145 -4289_75977,259,4376_14273,Naomh Barróg GAA,105764860,0,4376_7778022_100260,4376_146 -4289_75977,270,4376_14274,Naomh Barróg GAA,105277600,0,4376_7778022_100180,4376_145 -4289_75977,146,4376_14275,Naomh Barróg GAA,105247600,0,4376_7778022_100180,4376_145 -4289_75977,271,4376_14276,Naomh Barróg GAA,105237600,0,4376_7778022_100180,4376_145 -4289_75977,115,4376_14277,Naomh Barróg GAA,105217600,0,4376_7778022_100180,4376_145 -4289_75977,260,4376_14278,Naomh Barróg GAA,105312092,0,4376_7778022_100210,4376_145 -4289_75977,261,4376_14279,Naomh Barróg GAA,105322092,0,4376_7778022_100210,4376_145 -4289_75961,263,4376_1428,Clontarf Station,105541963,1,4376_7778022_104110,4376_18 -4289_75977,262,4376_14280,Naomh Barróg GAA,105432092,0,4376_7778022_100210,4376_145 -4289_75977,263,4376_14281,Naomh Barróg GAA,105542092,0,4376_7778022_100210,4376_145 -4289_75977,264,4376_14282,Naomh Barróg GAA,105652092,0,4376_7778022_100210,4376_145 -4289_75977,265,4376_14283,Naomh Barróg GAA,105812092,0,4376_7778022_100210,4376_145 -4289_75977,266,4376_14284,Naomh Barróg GAA,105822092,0,4376_7778022_100210,4376_145 -4289_75977,267,4376_14285,Naomh Barróg GAA,106052092,0,4376_7778022_100210,4376_145 -4289_75977,268,4376_14286,Naomh Barróg GAA,106142092,0,4376_7778022_100210,4376_145 -4289_75977,269,4376_14287,Naomh Barróg GAA,106232092,0,4376_7778022_100210,4376_145 -4289_75977,259,4376_14288,Naomh Barróg GAA,105764874,0,4376_7778022_100180,4376_146 -4289_75977,260,4376_14289,Naomh Barróg GAA,105312128,0,4376_7778022_100230,4376_145 -4289_75961,264,4376_1429,Clontarf Station,105651963,1,4376_7778022_104110,4376_18 -4289_75977,261,4376_14290,Naomh Barróg GAA,105322128,0,4376_7778022_100230,4376_145 -4289_75977,262,4376_14291,Naomh Barróg GAA,105432128,0,4376_7778022_100230,4376_145 -4289_75977,263,4376_14292,Naomh Barróg GAA,105542128,0,4376_7778022_100230,4376_145 -4289_75977,264,4376_14293,Naomh Barróg GAA,105652128,0,4376_7778022_100230,4376_145 -4289_75977,265,4376_14294,Naomh Barróg GAA,105812128,0,4376_7778022_100230,4376_145 -4289_75977,266,4376_14295,Naomh Barróg GAA,105822128,0,4376_7778022_100230,4376_145 -4289_75977,267,4376_14296,Naomh Barróg GAA,106052128,0,4376_7778022_100230,4376_145 -4289_75977,268,4376_14297,Naomh Barróg GAA,106142128,0,4376_7778022_100230,4376_145 -4289_75977,269,4376_14298,Naomh Barróg GAA,106232128,0,4376_7778022_100230,4376_145 -4289_75977,259,4376_14299,Naomh Barróg GAA,105764902,0,4376_7778022_100240,4376_146 -4289_75960,261,4376_143,Sutton Station,105321650,0,4376_7778022_103104,4376_1 -4289_75961,265,4376_1430,Clontarf Station,105811963,1,4376_7778022_104110,4376_18 -4289_75977,270,4376_14300,Naomh Barróg GAA,105277630,0,4376_7778022_100170,4376_145 -4289_75977,146,4376_14301,Naomh Barróg GAA,105247630,0,4376_7778022_100170,4376_145 -4289_75977,271,4376_14302,Naomh Barróg GAA,105237630,0,4376_7778022_100170,4376_145 -4289_75977,115,4376_14303,Naomh Barróg GAA,105217630,0,4376_7778022_100170,4376_145 -4289_75977,260,4376_14304,Naomh Barróg GAA,105312156,0,4376_7778022_100320,4376_145 -4289_75977,261,4376_14305,Naomh Barróg GAA,105322156,0,4376_7778022_100320,4376_145 -4289_75977,262,4376_14306,Naomh Barróg GAA,105432156,0,4376_7778022_100320,4376_145 -4289_75977,263,4376_14307,Naomh Barróg GAA,105542156,0,4376_7778022_100320,4376_145 -4289_75977,264,4376_14308,Naomh Barróg GAA,105652156,0,4376_7778022_100320,4376_145 -4289_75977,265,4376_14309,Naomh Barróg GAA,105812156,0,4376_7778022_100320,4376_145 -4289_75961,266,4376_1431,Clontarf Station,105821963,1,4376_7778022_104110,4376_18 -4289_75977,266,4376_14310,Naomh Barróg GAA,105822156,0,4376_7778022_100320,4376_145 -4289_75977,267,4376_14311,Naomh Barróg GAA,106052156,0,4376_7778022_100320,4376_145 -4289_75977,268,4376_14312,Naomh Barróg GAA,106142156,0,4376_7778022_100320,4376_145 -4289_75977,269,4376_14313,Naomh Barróg GAA,106232156,0,4376_7778022_100320,4376_145 -4289_75977,259,4376_14314,Naomh Barróg GAA,105764920,0,4376_7778022_100200,4376_146 -4289_75977,270,4376_14315,Naomh Barróg GAA,105277646,0,4376_7778022_100200,4376_145 -4289_75977,146,4376_14316,Naomh Barróg GAA,105247646,0,4376_7778022_100200,4376_145 -4289_75977,271,4376_14317,Naomh Barróg GAA,105237646,0,4376_7778022_100200,4376_145 -4289_75977,115,4376_14318,Naomh Barróg GAA,105217646,0,4376_7778022_100200,4376_145 -4289_75977,260,4376_14319,Naomh Barróg GAA,105312170,0,4376_7778022_100300,4376_145 -4289_75961,267,4376_1432,Clontarf Station,106051963,1,4376_7778022_104110,4376_18 -4289_75977,261,4376_14320,Naomh Barróg GAA,105322170,0,4376_7778022_100300,4376_145 -4289_75977,262,4376_14321,Naomh Barróg GAA,105432170,0,4376_7778022_100300,4376_145 -4289_75977,263,4376_14322,Naomh Barróg GAA,105542170,0,4376_7778022_100300,4376_145 -4289_75977,264,4376_14323,Naomh Barróg GAA,105652170,0,4376_7778022_100300,4376_145 -4289_75977,265,4376_14324,Naomh Barróg GAA,105812170,0,4376_7778022_100300,4376_145 -4289_75977,266,4376_14325,Naomh Barróg GAA,105822170,0,4376_7778022_100300,4376_145 -4289_75977,267,4376_14326,Naomh Barróg GAA,106052170,0,4376_7778022_100300,4376_145 -4289_75977,268,4376_14327,Naomh Barróg GAA,106142170,0,4376_7778022_100300,4376_145 -4289_75977,269,4376_14328,Naomh Barróg GAA,106232170,0,4376_7778022_100300,4376_145 -4289_75977,259,4376_14329,Naomh Barróg GAA,105764934,0,4376_7778022_100170,4376_146 -4289_75961,268,4376_1433,Clontarf Station,106141963,1,4376_7778022_104110,4376_18 -4289_75977,270,4376_14330,Naomh Barróg GAA,105277674,0,4376_7778022_100220,4376_145 -4289_75977,146,4376_14331,Naomh Barróg GAA,105247674,0,4376_7778022_100220,4376_145 -4289_75977,271,4376_14332,Naomh Barróg GAA,105237674,0,4376_7778022_100220,4376_145 -4289_75977,115,4376_14333,Naomh Barróg GAA,105217674,0,4376_7778022_100220,4376_145 -4289_75977,260,4376_14334,Naomh Barróg GAA,105312198,0,4376_7778022_100272,4376_145 -4289_75977,261,4376_14335,Naomh Barróg GAA,105322198,0,4376_7778022_100272,4376_145 -4289_75977,262,4376_14336,Naomh Barróg GAA,105432198,0,4376_7778022_100272,4376_145 -4289_75977,263,4376_14337,Naomh Barróg GAA,105542198,0,4376_7778022_100272,4376_145 -4289_75977,264,4376_14338,Naomh Barróg GAA,105652198,0,4376_7778022_100272,4376_145 -4289_75977,265,4376_14339,Naomh Barróg GAA,105812198,0,4376_7778022_100272,4376_145 -4289_75961,269,4376_1434,Clontarf Station,106231963,1,4376_7778022_104110,4376_18 -4289_75977,266,4376_14340,Naomh Barróg GAA,105822198,0,4376_7778022_100272,4376_145 -4289_75977,267,4376_14341,Naomh Barróg GAA,106052198,0,4376_7778022_100272,4376_145 -4289_75977,268,4376_14342,Naomh Barróg GAA,106142198,0,4376_7778022_100272,4376_145 -4289_75977,269,4376_14343,Naomh Barróg GAA,106232198,0,4376_7778022_100272,4376_145 -4289_75977,259,4376_14344,Naomh Barróg GAA,105764962,0,4376_7778022_100220,4376_146 -4289_75977,270,4376_14345,Naomh Barróg GAA,105277688,0,4376_7778022_100240,4376_145 -4289_75977,146,4376_14346,Naomh Barróg GAA,105247688,0,4376_7778022_100240,4376_145 -4289_75977,271,4376_14347,Naomh Barróg GAA,105237688,0,4376_7778022_100240,4376_145 -4289_75977,115,4376_14348,Naomh Barróg GAA,105217688,0,4376_7778022_100240,4376_145 -4289_75977,260,4376_14349,Naomh Barróg GAA,105312224,0,4376_7778022_100250,4376_145 -4289_75961,259,4376_1435,Clontarf Station,105764791,1,4376_7778022_104180,4376_19 -4289_75977,261,4376_14350,Naomh Barróg GAA,105322224,0,4376_7778022_100250,4376_145 -4289_75977,262,4376_14351,Naomh Barróg GAA,105432224,0,4376_7778022_100250,4376_145 -4289_75977,263,4376_14352,Naomh Barróg GAA,105542224,0,4376_7778022_100250,4376_145 -4289_75977,264,4376_14353,Naomh Barróg GAA,105652224,0,4376_7778022_100250,4376_145 -4289_75977,265,4376_14354,Naomh Barróg GAA,105812224,0,4376_7778022_100250,4376_145 -4289_75977,266,4376_14355,Naomh Barróg GAA,105822224,0,4376_7778022_100250,4376_145 -4289_75977,267,4376_14356,Naomh Barróg GAA,106052224,0,4376_7778022_100250,4376_145 -4289_75977,268,4376_14357,Naomh Barróg GAA,106142224,0,4376_7778022_100250,4376_145 -4289_75977,269,4376_14358,Naomh Barróg GAA,106232224,0,4376_7778022_100250,4376_145 -4289_75977,259,4376_14359,Naomh Barróg GAA,105764976,0,4376_7778022_100230,4376_146 -4289_75961,270,4376_1436,Clontarf Station,105277537,1,4376_7778022_104110,4376_20 -4289_75977,260,4376_14360,Naomh Barróg GAA,105312252,0,4376_7778022_100200,4376_145 -4289_75977,261,4376_14361,Naomh Barróg GAA,105322252,0,4376_7778022_100200,4376_145 -4289_75977,262,4376_14362,Naomh Barróg GAA,105432252,0,4376_7778022_100200,4376_145 -4289_75977,263,4376_14363,Naomh Barróg GAA,105542252,0,4376_7778022_100200,4376_145 -4289_75977,264,4376_14364,Naomh Barróg GAA,105652252,0,4376_7778022_100200,4376_145 -4289_75977,265,4376_14365,Naomh Barróg GAA,105812252,0,4376_7778022_100200,4376_145 -4289_75977,266,4376_14366,Naomh Barróg GAA,105822252,0,4376_7778022_100200,4376_145 -4289_75977,267,4376_14367,Naomh Barróg GAA,106052252,0,4376_7778022_100200,4376_145 -4289_75977,268,4376_14368,Naomh Barróg GAA,106142252,0,4376_7778022_100200,4376_145 -4289_75977,269,4376_14369,Naomh Barróg GAA,106232252,0,4376_7778022_100200,4376_145 -4289_75961,146,4376_1437,Clontarf Station,105247537,1,4376_7778022_104110,4376_20 -4289_75977,259,4376_14370,Naomh Barróg GAA,105765002,0,4376_7778022_100190,4376_146 -4289_75977,270,4376_14371,Naomh Barróg GAA,105277720,0,4376_7778022_100190,4376_145 -4289_75977,146,4376_14372,Naomh Barróg GAA,105247720,0,4376_7778022_100190,4376_145 -4289_75977,271,4376_14373,Naomh Barróg GAA,105237720,0,4376_7778022_100190,4376_145 -4289_75977,115,4376_14374,Naomh Barróg GAA,105217720,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_14375,Naomh Barróg GAA,105312282,0,4376_7778022_100220,4376_145 -4289_75977,261,4376_14376,Naomh Barróg GAA,105322282,0,4376_7778022_100220,4376_145 -4289_75977,262,4376_14377,Naomh Barróg GAA,105432282,0,4376_7778022_100220,4376_145 -4289_75977,263,4376_14378,Naomh Barróg GAA,105542282,0,4376_7778022_100220,4376_145 -4289_75977,264,4376_14379,Naomh Barróg GAA,105652282,0,4376_7778022_100220,4376_145 -4289_75961,271,4376_1438,Clontarf Station,105237537,1,4376_7778022_104110,4376_20 -4289_75977,265,4376_14380,Naomh Barróg GAA,105812282,0,4376_7778022_100220,4376_145 -4289_75977,266,4376_14381,Naomh Barróg GAA,105822282,0,4376_7778022_100220,4376_145 -4289_75977,267,4376_14382,Naomh Barróg GAA,106052282,0,4376_7778022_100220,4376_145 -4289_75977,268,4376_14383,Naomh Barróg GAA,106142282,0,4376_7778022_100220,4376_145 -4289_75977,269,4376_14384,Naomh Barróg GAA,106232282,0,4376_7778022_100220,4376_145 -4289_75977,259,4376_14385,Naomh Barróg GAA,105765022,0,4376_7778022_100250,4376_146 -4289_75977,270,4376_14386,Naomh Barróg GAA,105277734,0,4376_7778022_100160,4376_145 -4289_75977,146,4376_14387,Naomh Barróg GAA,105247734,0,4376_7778022_100160,4376_145 -4289_75977,271,4376_14388,Naomh Barróg GAA,105237734,0,4376_7778022_100160,4376_145 -4289_75977,115,4376_14389,Naomh Barróg GAA,105217734,0,4376_7778022_100160,4376_145 -4289_75961,115,4376_1439,Clontarf Station,105217537,1,4376_7778022_104110,4376_20 -4289_75977,260,4376_14390,Naomh Barróg GAA,105312296,0,4376_7778022_100290,4376_145 -4289_75977,261,4376_14391,Naomh Barróg GAA,105322296,0,4376_7778022_100290,4376_145 -4289_75977,262,4376_14392,Naomh Barróg GAA,105432296,0,4376_7778022_100290,4376_145 -4289_75977,263,4376_14393,Naomh Barróg GAA,105542296,0,4376_7778022_100290,4376_145 -4289_75977,264,4376_14394,Naomh Barróg GAA,105652296,0,4376_7778022_100290,4376_145 -4289_75977,265,4376_14395,Naomh Barróg GAA,105812296,0,4376_7778022_100290,4376_145 -4289_75977,266,4376_14396,Naomh Barróg GAA,105822296,0,4376_7778022_100290,4376_145 -4289_75977,267,4376_14397,Naomh Barróg GAA,106052296,0,4376_7778022_100290,4376_145 -4289_75977,268,4376_14398,Naomh Barróg GAA,106142296,0,4376_7778022_100290,4376_145 -4289_75977,269,4376_14399,Naomh Barróg GAA,106232296,0,4376_7778022_100290,4376_145 -4289_75960,262,4376_144,Sutton Station,105431650,0,4376_7778022_103104,4376_1 -4289_75961,260,4376_1440,Clontarf Station,105312081,1,4376_7778022_104040,4376_18 -4289_75977,259,4376_14400,Naomh Barróg GAA,105765034,0,4376_7778022_100270,4376_146 -4289_75977,270,4376_14401,Naomh Barróg GAA,105277766,0,4376_7778022_100230,4376_145 -4289_75977,146,4376_14402,Naomh Barróg GAA,105247766,0,4376_7778022_100230,4376_145 -4289_75977,271,4376_14403,Naomh Barróg GAA,105237766,0,4376_7778022_100230,4376_145 -4289_75977,115,4376_14404,Naomh Barróg GAA,105217766,0,4376_7778022_100230,4376_145 -4289_75977,260,4376_14405,Naomh Barróg GAA,105312324,0,4376_7778022_100330,4376_145 -4289_75977,261,4376_14406,Naomh Barróg GAA,105322324,0,4376_7778022_100330,4376_145 -4289_75977,262,4376_14407,Naomh Barróg GAA,105432324,0,4376_7778022_100330,4376_145 -4289_75977,263,4376_14408,Naomh Barróg GAA,105542324,0,4376_7778022_100330,4376_145 -4289_75977,264,4376_14409,Naomh Barróg GAA,105652324,0,4376_7778022_100330,4376_145 -4289_75961,261,4376_1441,Clontarf Station,105322081,1,4376_7778022_104040,4376_18 -4289_75977,265,4376_14410,Naomh Barróg GAA,105812324,0,4376_7778022_100330,4376_145 -4289_75977,266,4376_14411,Naomh Barróg GAA,105822324,0,4376_7778022_100330,4376_145 -4289_75977,267,4376_14412,Naomh Barróg GAA,106052324,0,4376_7778022_100330,4376_145 -4289_75977,268,4376_14413,Naomh Barróg GAA,106142324,0,4376_7778022_100330,4376_145 -4289_75977,269,4376_14414,Naomh Barróg GAA,106232324,0,4376_7778022_100330,4376_145 -4289_75977,259,4376_14415,Naomh Barróg GAA,105765064,0,4376_7778022_100210,4376_146 -4289_75977,270,4376_14416,Naomh Barróg GAA,105277780,0,4376_7778022_100180,4376_145 -4289_75977,146,4376_14417,Naomh Barróg GAA,105247780,0,4376_7778022_100180,4376_145 -4289_75977,271,4376_14418,Naomh Barróg GAA,105237780,0,4376_7778022_100180,4376_145 -4289_75977,115,4376_14419,Naomh Barróg GAA,105217780,0,4376_7778022_100180,4376_145 -4289_75961,262,4376_1442,Clontarf Station,105432081,1,4376_7778022_104040,4376_18 -4289_75977,260,4376_14420,Naomh Barróg GAA,105312350,0,4376_7778022_100310,4376_145 -4289_75977,261,4376_14421,Naomh Barróg GAA,105322350,0,4376_7778022_100310,4376_145 -4289_75977,262,4376_14422,Naomh Barróg GAA,105432350,0,4376_7778022_100310,4376_145 -4289_75977,263,4376_14423,Naomh Barróg GAA,105542350,0,4376_7778022_100310,4376_145 -4289_75977,264,4376_14424,Naomh Barróg GAA,105652350,0,4376_7778022_100310,4376_145 -4289_75977,265,4376_14425,Naomh Barróg GAA,105812350,0,4376_7778022_100310,4376_145 -4289_75977,266,4376_14426,Naomh Barróg GAA,105822350,0,4376_7778022_100310,4376_145 -4289_75977,267,4376_14427,Naomh Barróg GAA,106052350,0,4376_7778022_100310,4376_145 -4289_75977,268,4376_14428,Naomh Barróg GAA,106142350,0,4376_7778022_100310,4376_145 -4289_75977,269,4376_14429,Naomh Barróg GAA,106232350,0,4376_7778022_100310,4376_145 -4289_75961,263,4376_1443,Clontarf Station,105542081,1,4376_7778022_104040,4376_18 -4289_75977,259,4376_14430,Naomh Barróg GAA,105765078,0,4376_7778022_100160,4376_146 -4289_75977,260,4376_14431,Naomh Barróg GAA,105312368,0,4376_7778022_100240,4376_145 -4289_75977,261,4376_14432,Naomh Barróg GAA,105322368,0,4376_7778022_100240,4376_145 -4289_75977,262,4376_14433,Naomh Barróg GAA,105432368,0,4376_7778022_100240,4376_145 -4289_75977,263,4376_14434,Naomh Barróg GAA,105542368,0,4376_7778022_100240,4376_145 -4289_75977,264,4376_14435,Naomh Barróg GAA,105652368,0,4376_7778022_100240,4376_145 -4289_75977,265,4376_14436,Naomh Barróg GAA,105812368,0,4376_7778022_100240,4376_145 -4289_75977,266,4376_14437,Naomh Barróg GAA,105822368,0,4376_7778022_100240,4376_145 -4289_75977,267,4376_14438,Naomh Barróg GAA,106052368,0,4376_7778022_100240,4376_145 -4289_75977,268,4376_14439,Naomh Barróg GAA,106142368,0,4376_7778022_100240,4376_145 -4289_75961,264,4376_1444,Clontarf Station,105652081,1,4376_7778022_104040,4376_18 -4289_75977,269,4376_14440,Naomh Barróg GAA,106232368,0,4376_7778022_100240,4376_145 -4289_75977,259,4376_14441,Naomh Barróg GAA,105765102,0,4376_7778022_100260,4376_146 -4289_75977,270,4376_14442,Naomh Barróg GAA,105277808,0,4376_7778022_100170,4376_145 -4289_75977,146,4376_14443,Naomh Barróg GAA,105247808,0,4376_7778022_100170,4376_145 -4289_75977,271,4376_14444,Naomh Barróg GAA,105237808,0,4376_7778022_100170,4376_145 -4289_75977,115,4376_14445,Naomh Barróg GAA,105217808,0,4376_7778022_100170,4376_145 -4289_75977,260,4376_14446,Naomh Barróg GAA,105312400,0,4376_7778022_100282,4376_145 -4289_75977,261,4376_14447,Naomh Barróg GAA,105322400,0,4376_7778022_100282,4376_145 -4289_75977,262,4376_14448,Naomh Barróg GAA,105432400,0,4376_7778022_100282,4376_145 -4289_75977,263,4376_14449,Naomh Barróg GAA,105542400,0,4376_7778022_100282,4376_145 -4289_75961,265,4376_1445,Clontarf Station,105812081,1,4376_7778022_104040,4376_18 -4289_75977,264,4376_14450,Naomh Barróg GAA,105652400,0,4376_7778022_100282,4376_145 -4289_75977,265,4376_14451,Naomh Barróg GAA,105812400,0,4376_7778022_100282,4376_145 -4289_75977,266,4376_14452,Naomh Barróg GAA,105822400,0,4376_7778022_100282,4376_145 -4289_75977,267,4376_14453,Naomh Barróg GAA,106052400,0,4376_7778022_100282,4376_145 -4289_75977,268,4376_14454,Naomh Barróg GAA,106142400,0,4376_7778022_100282,4376_145 -4289_75977,269,4376_14455,Naomh Barróg GAA,106232400,0,4376_7778022_100282,4376_145 -4289_75977,259,4376_14456,Naomh Barróg GAA,105765126,0,4376_7778022_100240,4376_146 -4289_75977,270,4376_14457,Naomh Barróg GAA,105277824,0,4376_7778022_100200,4376_145 -4289_75977,146,4376_14458,Naomh Barróg GAA,105247824,0,4376_7778022_100200,4376_145 -4289_75977,271,4376_14459,Naomh Barróg GAA,105237824,0,4376_7778022_100200,4376_145 -4289_75961,266,4376_1446,Clontarf Station,105822081,1,4376_7778022_104040,4376_18 -4289_75977,115,4376_14460,Naomh Barróg GAA,105217824,0,4376_7778022_100200,4376_145 -4289_75977,260,4376_14461,Naomh Barróg GAA,105312416,0,4376_7778022_100260,4376_145 -4289_75977,261,4376_14462,Naomh Barróg GAA,105322416,0,4376_7778022_100260,4376_145 -4289_75977,262,4376_14463,Naomh Barróg GAA,105432416,0,4376_7778022_100260,4376_145 -4289_75977,263,4376_14464,Naomh Barróg GAA,105542416,0,4376_7778022_100260,4376_145 -4289_75977,264,4376_14465,Naomh Barróg GAA,105652416,0,4376_7778022_100260,4376_145 -4289_75977,265,4376_14466,Naomh Barróg GAA,105812416,0,4376_7778022_100260,4376_145 -4289_75977,266,4376_14467,Naomh Barróg GAA,105822416,0,4376_7778022_100260,4376_145 -4289_75977,267,4376_14468,Naomh Barróg GAA,106052416,0,4376_7778022_100260,4376_145 -4289_75977,268,4376_14469,Naomh Barróg GAA,106142416,0,4376_7778022_100260,4376_145 -4289_75961,267,4376_1447,Clontarf Station,106052081,1,4376_7778022_104040,4376_18 -4289_75977,269,4376_14470,Naomh Barróg GAA,106232416,0,4376_7778022_100260,4376_145 -4289_75977,259,4376_14471,Naomh Barróg GAA,105765136,0,4376_7778022_100200,4376_146 -4289_75977,270,4376_14472,Naomh Barróg GAA,105277854,0,4376_7778022_100220,4376_145 -4289_75977,146,4376_14473,Naomh Barróg GAA,105247854,0,4376_7778022_100220,4376_145 -4289_75977,271,4376_14474,Naomh Barróg GAA,105237854,0,4376_7778022_100220,4376_145 -4289_75977,115,4376_14475,Naomh Barróg GAA,105217854,0,4376_7778022_100220,4376_145 -4289_75977,260,4376_14476,Naomh Barróg GAA,105312440,0,4376_7778022_100210,4376_145 -4289_75977,261,4376_14477,Naomh Barróg GAA,105322440,0,4376_7778022_100210,4376_145 -4289_75977,262,4376_14478,Naomh Barróg GAA,105432440,0,4376_7778022_100210,4376_145 -4289_75977,263,4376_14479,Naomh Barróg GAA,105542440,0,4376_7778022_100210,4376_145 -4289_75961,268,4376_1448,Clontarf Station,106142081,1,4376_7778022_104040,4376_18 -4289_75977,264,4376_14480,Naomh Barróg GAA,105652440,0,4376_7778022_100210,4376_145 -4289_75977,265,4376_14481,Naomh Barróg GAA,105812440,0,4376_7778022_100210,4376_145 -4289_75977,266,4376_14482,Naomh Barróg GAA,105822440,0,4376_7778022_100210,4376_145 -4289_75977,267,4376_14483,Naomh Barróg GAA,106052440,0,4376_7778022_100210,4376_145 -4289_75977,268,4376_14484,Naomh Barróg GAA,106142440,0,4376_7778022_100210,4376_145 -4289_75977,269,4376_14485,Naomh Barróg GAA,106232440,0,4376_7778022_100210,4376_145 -4289_75977,259,4376_14486,Naomh Barróg GAA,105765166,0,4376_7778022_100170,4376_146 -4289_75977,270,4376_14487,Naomh Barróg GAA,105277866,0,4376_7778022_100240,4376_145 -4289_75977,146,4376_14488,Naomh Barróg GAA,105247866,0,4376_7778022_100240,4376_145 -4289_75977,271,4376_14489,Naomh Barróg GAA,105237866,0,4376_7778022_100240,4376_145 -4289_75961,269,4376_1449,Clontarf Station,106232081,1,4376_7778022_104040,4376_18 -4289_75977,115,4376_14490,Naomh Barróg GAA,105217866,0,4376_7778022_100240,4376_145 -4289_75977,260,4376_14491,Naomh Barróg GAA,105312462,0,4376_7778022_100230,4376_145 -4289_75977,261,4376_14492,Naomh Barróg GAA,105322462,0,4376_7778022_100230,4376_145 -4289_75977,262,4376_14493,Naomh Barróg GAA,105432462,0,4376_7778022_100230,4376_145 -4289_75977,263,4376_14494,Naomh Barróg GAA,105542462,0,4376_7778022_100230,4376_145 -4289_75977,264,4376_14495,Naomh Barróg GAA,105652462,0,4376_7778022_100230,4376_145 -4289_75977,265,4376_14496,Naomh Barróg GAA,105812462,0,4376_7778022_100230,4376_145 -4289_75977,266,4376_14497,Naomh Barróg GAA,105822462,0,4376_7778022_100230,4376_145 -4289_75977,267,4376_14498,Naomh Barróg GAA,106052462,0,4376_7778022_100230,4376_145 -4289_75977,268,4376_14499,Naomh Barróg GAA,106142462,0,4376_7778022_100230,4376_145 -4289_75960,263,4376_145,Sutton Station,105541650,0,4376_7778022_103104,4376_1 -4289_75961,259,4376_1450,Clontarf Station,105764893,1,4376_7778022_104110,4376_19 -4289_75977,269,4376_14500,Naomh Barróg GAA,106232462,0,4376_7778022_100230,4376_145 -4289_75977,259,4376_14501,Naomh Barróg GAA,105765180,0,4376_7778022_100220,4376_146 -4289_75977,260,4376_14502,Naomh Barróg GAA,105312484,0,4376_7778022_100320,4376_145 -4289_75977,261,4376_14503,Naomh Barróg GAA,105322484,0,4376_7778022_100320,4376_145 -4289_75977,262,4376_14504,Naomh Barróg GAA,105432484,0,4376_7778022_100320,4376_145 -4289_75977,263,4376_14505,Naomh Barróg GAA,105542484,0,4376_7778022_100320,4376_145 -4289_75977,264,4376_14506,Naomh Barróg GAA,105652484,0,4376_7778022_100320,4376_145 -4289_75977,265,4376_14507,Naomh Barróg GAA,105812484,0,4376_7778022_100320,4376_145 -4289_75977,266,4376_14508,Naomh Barróg GAA,105822484,0,4376_7778022_100320,4376_145 -4289_75977,267,4376_14509,Naomh Barróg GAA,106052484,0,4376_7778022_100320,4376_145 -4289_75961,270,4376_1451,Clontarf Station,105277627,1,4376_7778022_104150,4376_20 -4289_75977,268,4376_14510,Naomh Barróg GAA,106142484,0,4376_7778022_100320,4376_145 -4289_75977,269,4376_14511,Naomh Barróg GAA,106232484,0,4376_7778022_100320,4376_145 -4289_75977,259,4376_14512,Naomh Barróg GAA,105765206,0,4376_7778022_100230,4376_146 -4289_75977,270,4376_14513,Naomh Barróg GAA,105277898,0,4376_7778022_100190,4376_145 -4289_75977,146,4376_14514,Naomh Barróg GAA,105247898,0,4376_7778022_100190,4376_145 -4289_75977,271,4376_14515,Naomh Barróg GAA,105237898,0,4376_7778022_100190,4376_145 -4289_75977,115,4376_14516,Naomh Barróg GAA,105217898,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_14517,Naomh Barróg GAA,105312510,0,4376_7778022_100300,4376_145 -4289_75977,261,4376_14518,Naomh Barróg GAA,105322510,0,4376_7778022_100300,4376_145 -4289_75977,262,4376_14519,Naomh Barróg GAA,105432510,0,4376_7778022_100300,4376_145 -4289_75961,146,4376_1452,Clontarf Station,105247627,1,4376_7778022_104150,4376_20 -4289_75977,263,4376_14520,Naomh Barróg GAA,105542510,0,4376_7778022_100300,4376_145 -4289_75977,264,4376_14521,Naomh Barróg GAA,105652510,0,4376_7778022_100300,4376_145 -4289_75977,265,4376_14522,Naomh Barróg GAA,105812510,0,4376_7778022_100300,4376_145 -4289_75977,266,4376_14523,Naomh Barróg GAA,105822510,0,4376_7778022_100300,4376_145 -4289_75977,267,4376_14524,Naomh Barróg GAA,106052510,0,4376_7778022_100300,4376_145 -4289_75977,268,4376_14525,Naomh Barróg GAA,106142510,0,4376_7778022_100300,4376_145 -4289_75977,269,4376_14526,Naomh Barróg GAA,106232510,0,4376_7778022_100300,4376_145 -4289_75977,259,4376_14527,Naomh Barróg GAA,105765232,0,4376_7778022_100190,4376_146 -4289_75977,270,4376_14528,Naomh Barróg GAA,105277916,0,4376_7778022_100160,4376_145 -4289_75977,146,4376_14529,Naomh Barróg GAA,105247916,0,4376_7778022_100160,4376_145 -4289_75961,271,4376_1453,Clontarf Station,105237627,1,4376_7778022_104150,4376_20 -4289_75977,271,4376_14530,Naomh Barróg GAA,105237916,0,4376_7778022_100160,4376_145 -4289_75977,115,4376_14531,Naomh Barróg GAA,105217916,0,4376_7778022_100160,4376_145 -4289_75977,260,4376_14532,Naomh Barróg GAA,105312528,0,4376_7778022_100272,4376_145 -4289_75977,261,4376_14533,Naomh Barróg GAA,105322528,0,4376_7778022_100272,4376_145 -4289_75977,262,4376_14534,Naomh Barróg GAA,105432528,0,4376_7778022_100272,4376_145 -4289_75977,263,4376_14535,Naomh Barróg GAA,105542528,0,4376_7778022_100272,4376_145 -4289_75977,264,4376_14536,Naomh Barróg GAA,105652528,0,4376_7778022_100272,4376_145 -4289_75977,265,4376_14537,Naomh Barróg GAA,105812528,0,4376_7778022_100272,4376_145 -4289_75977,266,4376_14538,Naomh Barróg GAA,105822528,0,4376_7778022_100272,4376_145 -4289_75977,267,4376_14539,Naomh Barróg GAA,106052528,0,4376_7778022_100272,4376_145 -4289_75961,115,4376_1454,Clontarf Station,105217627,1,4376_7778022_104150,4376_20 -4289_75977,268,4376_14540,Naomh Barróg GAA,106142528,0,4376_7778022_100272,4376_145 -4289_75977,269,4376_14541,Naomh Barróg GAA,106232528,0,4376_7778022_100272,4376_145 -4289_75977,259,4376_14542,Naomh Barróg GAA,105765242,0,4376_7778022_100250,4376_146 -4289_75977,270,4376_14543,Naomh Barróg GAA,105277942,0,4376_7778022_100230,4376_145 -4289_75977,146,4376_14544,Naomh Barróg GAA,105247942,0,4376_7778022_100230,4376_145 -4289_75977,271,4376_14545,Naomh Barróg GAA,105237942,0,4376_7778022_100230,4376_145 -4289_75977,115,4376_14546,Naomh Barróg GAA,105217942,0,4376_7778022_100230,4376_145 -4289_75977,260,4376_14547,Naomh Barróg GAA,105312552,0,4376_7778022_100250,4376_145 -4289_75977,261,4376_14548,Naomh Barróg GAA,105322552,0,4376_7778022_100250,4376_145 -4289_75977,262,4376_14549,Naomh Barróg GAA,105432552,0,4376_7778022_100250,4376_145 -4289_75961,260,4376_1455,Clontarf Station,105312233,1,4376_7778022_104140,4376_18 -4289_75977,263,4376_14550,Naomh Barróg GAA,105542552,0,4376_7778022_100250,4376_145 -4289_75977,264,4376_14551,Naomh Barróg GAA,105652552,0,4376_7778022_100250,4376_145 -4289_75977,265,4376_14552,Naomh Barróg GAA,105812552,0,4376_7778022_100250,4376_145 -4289_75977,266,4376_14553,Naomh Barróg GAA,105822552,0,4376_7778022_100250,4376_145 -4289_75977,267,4376_14554,Naomh Barróg GAA,106052552,0,4376_7778022_100250,4376_145 -4289_75977,268,4376_14555,Naomh Barróg GAA,106142552,0,4376_7778022_100250,4376_145 -4289_75977,269,4376_14556,Naomh Barróg GAA,106232552,0,4376_7778022_100250,4376_145 -4289_75977,259,4376_14557,Naomh Barróg GAA,105765266,0,4376_7778022_100270,4376_146 -4289_75977,270,4376_14558,Naomh Barróg GAA,105277954,0,4376_7778022_100180,4376_145 -4289_75977,146,4376_14559,Naomh Barróg GAA,105247954,0,4376_7778022_100180,4376_145 -4289_75961,261,4376_1456,Clontarf Station,105322233,1,4376_7778022_104140,4376_18 -4289_75977,271,4376_14560,Naomh Barróg GAA,105237954,0,4376_7778022_100180,4376_145 -4289_75977,115,4376_14561,Naomh Barróg GAA,105217954,0,4376_7778022_100180,4376_145 -4289_75977,260,4376_14562,Naomh Barróg GAA,105312568,0,4376_7778022_100220,4376_145 -4289_75977,261,4376_14563,Naomh Barróg GAA,105322568,0,4376_7778022_100220,4376_145 -4289_75977,262,4376_14564,Naomh Barróg GAA,105432568,0,4376_7778022_100220,4376_145 -4289_75977,263,4376_14565,Naomh Barróg GAA,105542568,0,4376_7778022_100220,4376_145 -4289_75977,264,4376_14566,Naomh Barróg GAA,105652568,0,4376_7778022_100220,4376_145 -4289_75977,265,4376_14567,Naomh Barróg GAA,105812568,0,4376_7778022_100220,4376_145 -4289_75977,266,4376_14568,Naomh Barróg GAA,105822568,0,4376_7778022_100220,4376_145 -4289_75977,267,4376_14569,Naomh Barróg GAA,106052568,0,4376_7778022_100220,4376_145 -4289_75961,262,4376_1457,Clontarf Station,105432233,1,4376_7778022_104140,4376_18 -4289_75977,268,4376_14570,Naomh Barróg GAA,106142568,0,4376_7778022_100220,4376_145 -4289_75977,269,4376_14571,Naomh Barróg GAA,106232568,0,4376_7778022_100220,4376_145 -4289_75977,259,4376_14572,Naomh Barróg GAA,105765280,0,4376_7778022_100210,4376_146 -4289_75977,260,4376_14573,Naomh Barróg GAA,105312592,0,4376_7778022_100290,4376_145 -4289_75977,261,4376_14574,Naomh Barróg GAA,105322592,0,4376_7778022_100290,4376_145 -4289_75977,262,4376_14575,Naomh Barróg GAA,105432592,0,4376_7778022_100290,4376_145 -4289_75977,263,4376_14576,Naomh Barróg GAA,105542592,0,4376_7778022_100290,4376_145 -4289_75977,264,4376_14577,Naomh Barróg GAA,105652592,0,4376_7778022_100290,4376_145 -4289_75977,265,4376_14578,Naomh Barróg GAA,105812592,0,4376_7778022_100290,4376_145 -4289_75977,266,4376_14579,Naomh Barróg GAA,105822592,0,4376_7778022_100290,4376_145 -4289_75961,263,4376_1458,Clontarf Station,105542233,1,4376_7778022_104140,4376_18 -4289_75977,267,4376_14580,Naomh Barróg GAA,106052592,0,4376_7778022_100290,4376_145 -4289_75977,268,4376_14581,Naomh Barróg GAA,106142592,0,4376_7778022_100290,4376_145 -4289_75977,269,4376_14582,Naomh Barróg GAA,106232592,0,4376_7778022_100290,4376_145 -4289_75977,259,4376_14583,Naomh Barróg GAA,105765316,0,4376_7778022_100160,4376_145 -4289_75977,270,4376_14584,Naomh Barróg GAA,105277994,0,4376_7778022_100170,4376_145 -4289_75977,146,4376_14585,Naomh Barróg GAA,105247994,0,4376_7778022_100170,4376_145 -4289_75977,271,4376_14586,Naomh Barróg GAA,105237994,0,4376_7778022_100170,4376_145 -4289_75977,115,4376_14587,Naomh Barróg GAA,105217994,0,4376_7778022_100170,4376_145 -4289_75977,260,4376_14588,Naomh Barróg GAA,105312616,0,4376_7778022_100330,4376_145 -4289_75977,261,4376_14589,Naomh Barróg GAA,105322616,0,4376_7778022_100330,4376_145 -4289_75961,264,4376_1459,Clontarf Station,105652233,1,4376_7778022_104140,4376_18 -4289_75977,262,4376_14590,Naomh Barróg GAA,105432616,0,4376_7778022_100330,4376_145 -4289_75977,263,4376_14591,Naomh Barróg GAA,105542616,0,4376_7778022_100330,4376_145 -4289_75977,264,4376_14592,Naomh Barróg GAA,105652616,0,4376_7778022_100330,4376_145 -4289_75977,265,4376_14593,Naomh Barróg GAA,105812616,0,4376_7778022_100330,4376_145 -4289_75977,266,4376_14594,Naomh Barróg GAA,105822616,0,4376_7778022_100330,4376_145 -4289_75977,267,4376_14595,Naomh Barróg GAA,106052616,0,4376_7778022_100330,4376_145 -4289_75977,268,4376_14596,Naomh Barróg GAA,106142616,0,4376_7778022_100330,4376_145 -4289_75977,269,4376_14597,Naomh Barróg GAA,106232616,0,4376_7778022_100330,4376_145 -4289_75977,259,4376_14598,Naomh Barróg GAA,105765328,0,4376_7778022_100260,4376_145 -4289_75977,260,4376_14599,Naomh Barróg GAA,105312630,0,4376_7778022_100310,4376_145 -4289_75960,264,4376_146,Sutton Station,105651650,0,4376_7778022_103104,4376_1 -4289_75961,265,4376_1460,Clontarf Station,105812233,1,4376_7778022_104140,4376_18 -4289_75977,261,4376_14600,Naomh Barróg GAA,105322630,0,4376_7778022_100310,4376_145 -4289_75977,262,4376_14601,Naomh Barróg GAA,105432630,0,4376_7778022_100310,4376_145 -4289_75977,263,4376_14602,Naomh Barróg GAA,105542630,0,4376_7778022_100310,4376_145 -4289_75977,264,4376_14603,Naomh Barróg GAA,105652630,0,4376_7778022_100310,4376_145 -4289_75977,265,4376_14604,Naomh Barróg GAA,105812630,0,4376_7778022_100310,4376_145 -4289_75977,266,4376_14605,Naomh Barróg GAA,105822630,0,4376_7778022_100310,4376_145 -4289_75977,267,4376_14606,Naomh Barróg GAA,106052630,0,4376_7778022_100310,4376_145 -4289_75977,268,4376_14607,Naomh Barróg GAA,106142630,0,4376_7778022_100310,4376_145 -4289_75977,269,4376_14608,Naomh Barróg GAA,106232630,0,4376_7778022_100310,4376_145 -4289_75977,270,4376_14609,Naomh Barróg GAA,105278020,0,4376_7778022_100220,4376_145 -4289_75961,266,4376_1461,Clontarf Station,105822233,1,4376_7778022_104140,4376_18 -4289_75977,146,4376_14610,Naomh Barróg GAA,105248020,0,4376_7778022_100220,4376_145 -4289_75977,271,4376_14611,Naomh Barróg GAA,105238020,0,4376_7778022_100220,4376_145 -4289_75977,115,4376_14612,Naomh Barróg GAA,105218020,0,4376_7778022_100220,4376_145 -4289_75977,259,4376_14613,Naomh Barróg GAA,105765352,0,4376_7778022_100170,4376_145 -4289_75977,260,4376_14614,Naomh Barróg GAA,105312656,0,4376_7778022_100240,4376_145 -4289_75977,261,4376_14615,Naomh Barróg GAA,105322656,0,4376_7778022_100240,4376_145 -4289_75977,262,4376_14616,Naomh Barróg GAA,105432656,0,4376_7778022_100240,4376_145 -4289_75977,263,4376_14617,Naomh Barróg GAA,105542656,0,4376_7778022_100240,4376_145 -4289_75977,264,4376_14618,Naomh Barróg GAA,105652656,0,4376_7778022_100240,4376_145 -4289_75977,265,4376_14619,Naomh Barróg GAA,105812656,0,4376_7778022_100240,4376_145 -4289_75961,267,4376_1462,Clontarf Station,106052233,1,4376_7778022_104140,4376_18 -4289_75977,266,4376_14620,Naomh Barróg GAA,105822656,0,4376_7778022_100240,4376_145 -4289_75977,267,4376_14621,Naomh Barróg GAA,106052656,0,4376_7778022_100240,4376_145 -4289_75977,268,4376_14622,Naomh Barróg GAA,106142656,0,4376_7778022_100240,4376_145 -4289_75977,269,4376_14623,Naomh Barróg GAA,106232656,0,4376_7778022_100240,4376_145 -4289_75977,259,4376_14624,Naomh Barróg GAA,105765368,0,4376_7778022_100220,4376_145 -4289_75977,270,4376_14625,Naomh Barróg GAA,105278038,0,4376_7778022_100240,4376_146 -4289_75977,146,4376_14626,Naomh Barróg GAA,105248038,0,4376_7778022_100240,4376_146 -4289_75977,271,4376_14627,Naomh Barróg GAA,105238038,0,4376_7778022_100240,4376_146 -4289_75977,115,4376_14628,Naomh Barróg GAA,105218038,0,4376_7778022_100240,4376_146 -4289_75977,260,4376_14629,Naomh Barróg GAA,105312666,0,4376_7778022_100210,4376_145 -4289_75961,268,4376_1463,Clontarf Station,106142233,1,4376_7778022_104140,4376_18 -4289_75977,261,4376_14630,Naomh Barróg GAA,105322666,0,4376_7778022_100210,4376_145 -4289_75977,262,4376_14631,Naomh Barróg GAA,105432666,0,4376_7778022_100210,4376_145 -4289_75977,263,4376_14632,Naomh Barróg GAA,105542666,0,4376_7778022_100210,4376_145 -4289_75977,264,4376_14633,Naomh Barróg GAA,105652666,0,4376_7778022_100210,4376_145 -4289_75977,265,4376_14634,Naomh Barróg GAA,105812666,0,4376_7778022_100210,4376_145 -4289_75977,266,4376_14635,Naomh Barróg GAA,105822666,0,4376_7778022_100210,4376_145 -4289_75977,267,4376_14636,Naomh Barróg GAA,106052666,0,4376_7778022_100210,4376_145 -4289_75977,268,4376_14637,Naomh Barróg GAA,106142666,0,4376_7778022_100210,4376_145 -4289_75977,269,4376_14638,Naomh Barróg GAA,106232666,0,4376_7778022_100210,4376_145 -4289_75977,260,4376_14639,Naomh Barróg GAA,105312696,0,4376_7778022_100230,4376_145 -4289_75961,269,4376_1464,Clontarf Station,106232233,1,4376_7778022_104140,4376_18 -4289_75977,261,4376_14640,Naomh Barróg GAA,105322696,0,4376_7778022_100230,4376_145 -4289_75977,262,4376_14641,Naomh Barróg GAA,105432696,0,4376_7778022_100230,4376_145 -4289_75977,263,4376_14642,Naomh Barróg GAA,105542696,0,4376_7778022_100230,4376_145 -4289_75977,264,4376_14643,Naomh Barróg GAA,105652696,0,4376_7778022_100230,4376_145 -4289_75977,265,4376_14644,Naomh Barróg GAA,105812696,0,4376_7778022_100230,4376_145 -4289_75977,266,4376_14645,Naomh Barróg GAA,105822696,0,4376_7778022_100230,4376_145 -4289_75977,267,4376_14646,Naomh Barróg GAA,106052696,0,4376_7778022_100230,4376_145 -4289_75977,268,4376_14647,Naomh Barróg GAA,106142696,0,4376_7778022_100230,4376_145 -4289_75977,269,4376_14648,Naomh Barróg GAA,106232696,0,4376_7778022_100230,4376_145 -4289_75977,259,4376_14649,Naomh Barróg GAA,105765398,0,4376_7778022_100230,4376_145 -4289_75961,259,4376_1465,Clontarf Station,105764995,1,4376_7778022_104080,4376_19 -4289_75977,270,4376_14650,Naomh Barróg GAA,105278074,0,4376_7778022_100190,4376_145 -4289_75977,146,4376_14651,Naomh Barróg GAA,105248074,0,4376_7778022_100190,4376_145 -4289_75977,271,4376_14652,Naomh Barróg GAA,105238074,0,4376_7778022_100190,4376_145 -4289_75977,115,4376_14653,Naomh Barróg GAA,105218074,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_14654,Naomh Barróg GAA,105312714,0,4376_7778022_100320,4376_145 -4289_75977,261,4376_14655,Naomh Barróg GAA,105322714,0,4376_7778022_100320,4376_145 -4289_75977,262,4376_14656,Naomh Barróg GAA,105432714,0,4376_7778022_100320,4376_145 -4289_75977,263,4376_14657,Naomh Barróg GAA,105542714,0,4376_7778022_100320,4376_145 -4289_75977,264,4376_14658,Naomh Barróg GAA,105652714,0,4376_7778022_100320,4376_145 -4289_75977,265,4376_14659,Naomh Barróg GAA,105812714,0,4376_7778022_100320,4376_145 -4289_75961,270,4376_1466,Clontarf Station,105277717,1,4376_7778022_104100,4376_20 -4289_75977,266,4376_14660,Naomh Barróg GAA,105822714,0,4376_7778022_100320,4376_145 -4289_75977,267,4376_14661,Naomh Barróg GAA,106052714,0,4376_7778022_100320,4376_145 -4289_75977,268,4376_14662,Naomh Barróg GAA,106142714,0,4376_7778022_100320,4376_145 -4289_75977,269,4376_14663,Naomh Barróg GAA,106232714,0,4376_7778022_100320,4376_145 -4289_75977,259,4376_14664,Naomh Barróg GAA,105765416,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_14665,Naomh Barróg GAA,105312728,0,4376_7778022_100300,4376_145 -4289_75977,261,4376_14666,Naomh Barróg GAA,105322728,0,4376_7778022_100300,4376_145 -4289_75977,262,4376_14667,Naomh Barróg GAA,105432728,0,4376_7778022_100300,4376_145 -4289_75977,263,4376_14668,Naomh Barróg GAA,105542728,0,4376_7778022_100300,4376_145 -4289_75977,264,4376_14669,Naomh Barróg GAA,105652728,0,4376_7778022_100300,4376_145 -4289_75961,146,4376_1467,Clontarf Station,105247717,1,4376_7778022_104100,4376_20 -4289_75977,265,4376_14670,Naomh Barróg GAA,105812728,0,4376_7778022_100300,4376_145 -4289_75977,266,4376_14671,Naomh Barróg GAA,105822728,0,4376_7778022_100300,4376_145 -4289_75977,267,4376_14672,Naomh Barróg GAA,106052728,0,4376_7778022_100300,4376_145 -4289_75977,268,4376_14673,Naomh Barróg GAA,106142728,0,4376_7778022_100300,4376_145 -4289_75977,269,4376_14674,Naomh Barróg GAA,106232728,0,4376_7778022_100300,4376_145 -4289_75977,270,4376_14675,Naomh Barróg GAA,105278094,0,4376_7778022_100160,4376_145 -4289_75977,146,4376_14676,Naomh Barróg GAA,105248094,0,4376_7778022_100160,4376_145 -4289_75977,271,4376_14677,Naomh Barróg GAA,105238094,0,4376_7778022_100160,4376_145 -4289_75977,115,4376_14678,Naomh Barróg GAA,105218094,0,4376_7778022_100160,4376_145 -4289_75977,259,4376_14679,Naomh Barróg GAA,105765440,0,4376_7778022_100250,4376_145 -4289_75961,271,4376_1468,Clontarf Station,105237717,1,4376_7778022_104100,4376_20 -4289_75977,260,4376_14680,Naomh Barróg GAA,105312750,0,4376_7778022_100272,4376_145 -4289_75977,261,4376_14681,Naomh Barróg GAA,105322750,0,4376_7778022_100272,4376_145 -4289_75977,262,4376_14682,Naomh Barróg GAA,105432750,0,4376_7778022_100272,4376_145 -4289_75977,263,4376_14683,Naomh Barróg GAA,105542750,0,4376_7778022_100272,4376_145 -4289_75977,264,4376_14684,Naomh Barróg GAA,105652750,0,4376_7778022_100272,4376_145 -4289_75977,265,4376_14685,Naomh Barróg GAA,105812750,0,4376_7778022_100272,4376_145 -4289_75977,266,4376_14686,Naomh Barróg GAA,105822750,0,4376_7778022_100272,4376_145 -4289_75977,267,4376_14687,Naomh Barróg GAA,106052750,0,4376_7778022_100272,4376_145 -4289_75977,268,4376_14688,Naomh Barróg GAA,106142750,0,4376_7778022_100272,4376_145 -4289_75977,269,4376_14689,Naomh Barróg GAA,106232750,0,4376_7778022_100272,4376_145 -4289_75961,115,4376_1469,Clontarf Station,105217717,1,4376_7778022_104100,4376_20 -4289_75977,259,4376_14690,Naomh Barróg GAA,105765456,0,4376_7778022_100210,4376_145 -4289_75977,270,4376_14691,Naomh Barróg GAA,105278116,0,4376_7778022_100180,4376_146 -4289_75977,146,4376_14692,Naomh Barróg GAA,105248116,0,4376_7778022_100180,4376_146 -4289_75977,271,4376_14693,Naomh Barróg GAA,105238116,0,4376_7778022_100180,4376_146 -4289_75977,115,4376_14694,Naomh Barróg GAA,105218116,0,4376_7778022_100180,4376_146 -4289_75977,260,4376_14695,Naomh Barróg GAA,105312764,0,4376_7778022_100220,4376_145 -4289_75977,261,4376_14696,Naomh Barróg GAA,105322764,0,4376_7778022_100220,4376_145 -4289_75977,262,4376_14697,Naomh Barróg GAA,105432764,0,4376_7778022_100220,4376_145 -4289_75977,263,4376_14698,Naomh Barróg GAA,105542764,0,4376_7778022_100220,4376_145 -4289_75977,264,4376_14699,Naomh Barróg GAA,105652764,0,4376_7778022_100220,4376_145 -4289_75960,265,4376_147,Sutton Station,105811650,0,4376_7778022_103104,4376_1 -4289_75961,260,4376_1470,Clontarf Station,105312353,1,4376_7778022_104080,4376_18 -4289_75977,265,4376_14700,Naomh Barróg GAA,105812764,0,4376_7778022_100220,4376_145 -4289_75977,266,4376_14701,Naomh Barróg GAA,105822764,0,4376_7778022_100220,4376_145 -4289_75977,267,4376_14702,Naomh Barróg GAA,106052764,0,4376_7778022_100220,4376_145 -4289_75977,268,4376_14703,Naomh Barróg GAA,106142764,0,4376_7778022_100220,4376_145 -4289_75977,269,4376_14704,Naomh Barróg GAA,106232764,0,4376_7778022_100220,4376_145 -4289_75977,260,4376_14705,Naomh Barróg GAA,105312792,0,4376_7778022_100290,4376_145 -4289_75977,261,4376_14706,Naomh Barróg GAA,105322792,0,4376_7778022_100290,4376_145 -4289_75977,262,4376_14707,Naomh Barróg GAA,105432792,0,4376_7778022_100290,4376_145 -4289_75977,263,4376_14708,Naomh Barróg GAA,105542792,0,4376_7778022_100290,4376_145 -4289_75977,264,4376_14709,Naomh Barróg GAA,105652792,0,4376_7778022_100290,4376_145 -4289_75961,261,4376_1471,Clontarf Station,105322353,1,4376_7778022_104080,4376_18 -4289_75977,265,4376_14710,Naomh Barróg GAA,105812792,0,4376_7778022_100290,4376_145 -4289_75977,266,4376_14711,Naomh Barróg GAA,105822792,0,4376_7778022_100290,4376_145 -4289_75977,267,4376_14712,Naomh Barróg GAA,106052792,0,4376_7778022_100290,4376_145 -4289_75977,268,4376_14713,Naomh Barróg GAA,106142792,0,4376_7778022_100290,4376_145 -4289_75977,269,4376_14714,Naomh Barróg GAA,106232792,0,4376_7778022_100290,4376_145 -4289_75977,259,4376_14715,Naomh Barróg GAA,105765484,0,4376_7778022_100160,4376_145 -4289_75977,270,4376_14716,Naomh Barróg GAA,105278152,0,4376_7778022_100170,4376_145 -4289_75977,146,4376_14717,Naomh Barróg GAA,105248152,0,4376_7778022_100170,4376_145 -4289_75977,271,4376_14718,Naomh Barróg GAA,105238152,0,4376_7778022_100170,4376_145 -4289_75977,115,4376_14719,Naomh Barróg GAA,105218152,0,4376_7778022_100170,4376_145 -4289_75961,262,4376_1472,Clontarf Station,105432353,1,4376_7778022_104080,4376_18 -4289_75977,260,4376_14720,Naomh Barróg GAA,105312812,0,4376_7778022_100330,4376_145 -4289_75977,261,4376_14721,Naomh Barróg GAA,105322812,0,4376_7778022_100330,4376_145 -4289_75977,262,4376_14722,Naomh Barróg GAA,105432812,0,4376_7778022_100330,4376_145 -4289_75977,263,4376_14723,Naomh Barróg GAA,105542812,0,4376_7778022_100330,4376_145 -4289_75977,264,4376_14724,Naomh Barróg GAA,105652812,0,4376_7778022_100330,4376_145 -4289_75977,265,4376_14725,Naomh Barróg GAA,105812812,0,4376_7778022_100330,4376_145 -4289_75977,266,4376_14726,Naomh Barróg GAA,105822812,0,4376_7778022_100330,4376_145 -4289_75977,267,4376_14727,Naomh Barróg GAA,106052812,0,4376_7778022_100330,4376_145 -4289_75977,268,4376_14728,Naomh Barróg GAA,106142812,0,4376_7778022_100330,4376_145 -4289_75977,269,4376_14729,Naomh Barróg GAA,106232812,0,4376_7778022_100330,4376_145 -4289_75961,263,4376_1473,Clontarf Station,105542353,1,4376_7778022_104080,4376_18 -4289_75977,259,4376_14730,Naomh Barróg GAA,105765504,0,4376_7778022_100260,4376_145 -4289_75977,260,4376_14731,Naomh Barróg GAA,105312822,0,4376_7778022_100310,4376_145 -4289_75977,261,4376_14732,Naomh Barróg GAA,105322822,0,4376_7778022_100310,4376_145 -4289_75977,262,4376_14733,Naomh Barróg GAA,105432822,0,4376_7778022_100310,4376_145 -4289_75977,263,4376_14734,Naomh Barróg GAA,105542822,0,4376_7778022_100310,4376_145 -4289_75977,264,4376_14735,Naomh Barróg GAA,105652822,0,4376_7778022_100310,4376_145 -4289_75977,265,4376_14736,Naomh Barróg GAA,105812822,0,4376_7778022_100310,4376_145 -4289_75977,266,4376_14737,Naomh Barróg GAA,105822822,0,4376_7778022_100310,4376_145 -4289_75977,267,4376_14738,Naomh Barróg GAA,106052822,0,4376_7778022_100310,4376_145 -4289_75977,268,4376_14739,Naomh Barróg GAA,106142822,0,4376_7778022_100310,4376_145 -4289_75961,264,4376_1474,Clontarf Station,105652353,1,4376_7778022_104080,4376_18 -4289_75977,269,4376_14740,Naomh Barróg GAA,106232822,0,4376_7778022_100310,4376_145 -4289_75977,270,4376_14741,Naomh Barróg GAA,105278172,0,4376_7778022_100220,4376_145 -4289_75977,146,4376_14742,Naomh Barróg GAA,105248172,0,4376_7778022_100220,4376_145 -4289_75977,271,4376_14743,Naomh Barróg GAA,105238172,0,4376_7778022_100220,4376_145 -4289_75977,115,4376_14744,Naomh Barróg GAA,105218172,0,4376_7778022_100220,4376_145 -4289_75977,259,4376_14745,Naomh Barróg GAA,105765522,0,4376_7778022_100170,4376_145 -4289_75977,260,4376_14746,Naomh Barróg GAA,105312844,0,4376_7778022_100240,4376_145 -4289_75977,261,4376_14747,Naomh Barróg GAA,105322844,0,4376_7778022_100240,4376_145 -4289_75977,262,4376_14748,Naomh Barróg GAA,105432844,0,4376_7778022_100240,4376_145 -4289_75977,263,4376_14749,Naomh Barróg GAA,105542844,0,4376_7778022_100240,4376_145 -4289_75961,265,4376_1475,Clontarf Station,105812353,1,4376_7778022_104080,4376_18 -4289_75977,264,4376_14750,Naomh Barróg GAA,105652844,0,4376_7778022_100240,4376_145 -4289_75977,265,4376_14751,Naomh Barróg GAA,105812844,0,4376_7778022_100240,4376_145 -4289_75977,266,4376_14752,Naomh Barróg GAA,105822844,0,4376_7778022_100240,4376_145 -4289_75977,267,4376_14753,Naomh Barróg GAA,106052844,0,4376_7778022_100240,4376_145 -4289_75977,268,4376_14754,Naomh Barróg GAA,106142844,0,4376_7778022_100240,4376_145 -4289_75977,269,4376_14755,Naomh Barróg GAA,106232844,0,4376_7778022_100240,4376_145 -4289_75977,259,4376_14756,Naomh Barróg GAA,105765540,0,4376_7778022_100220,4376_145 -4289_75977,270,4376_14757,Naomh Barróg GAA,105278192,0,4376_7778022_100240,4376_146 -4289_75977,146,4376_14758,Naomh Barróg GAA,105248192,0,4376_7778022_100240,4376_146 -4289_75977,271,4376_14759,Naomh Barróg GAA,105238192,0,4376_7778022_100240,4376_146 -4289_75961,266,4376_1476,Clontarf Station,105822353,1,4376_7778022_104080,4376_18 -4289_75977,115,4376_14760,Naomh Barróg GAA,105218192,0,4376_7778022_100240,4376_146 -4289_75977,260,4376_14761,Naomh Barróg GAA,105312858,0,4376_7778022_100210,4376_145 -4289_75977,261,4376_14762,Naomh Barróg GAA,105322858,0,4376_7778022_100210,4376_145 -4289_75977,262,4376_14763,Naomh Barróg GAA,105432858,0,4376_7778022_100210,4376_145 -4289_75977,263,4376_14764,Naomh Barróg GAA,105542858,0,4376_7778022_100210,4376_145 -4289_75977,264,4376_14765,Naomh Barróg GAA,105652858,0,4376_7778022_100210,4376_145 -4289_75977,265,4376_14766,Naomh Barróg GAA,105812858,0,4376_7778022_100210,4376_145 -4289_75977,266,4376_14767,Naomh Barróg GAA,105822858,0,4376_7778022_100210,4376_145 -4289_75977,267,4376_14768,Naomh Barróg GAA,106052858,0,4376_7778022_100210,4376_145 -4289_75977,268,4376_14769,Naomh Barróg GAA,106142858,0,4376_7778022_100210,4376_145 -4289_75961,267,4376_1477,Clontarf Station,106052353,1,4376_7778022_104080,4376_18 -4289_75977,269,4376_14770,Naomh Barróg GAA,106232858,0,4376_7778022_100210,4376_145 -4289_75977,260,4376_14771,Naomh Barróg GAA,105312886,0,4376_7778022_100230,4376_145 -4289_75977,261,4376_14772,Naomh Barróg GAA,105322886,0,4376_7778022_100230,4376_145 -4289_75977,262,4376_14773,Naomh Barróg GAA,105432886,0,4376_7778022_100230,4376_145 -4289_75977,263,4376_14774,Naomh Barróg GAA,105542886,0,4376_7778022_100230,4376_145 -4289_75977,264,4376_14775,Naomh Barróg GAA,105652886,0,4376_7778022_100230,4376_145 -4289_75977,265,4376_14776,Naomh Barróg GAA,105812886,0,4376_7778022_100230,4376_145 -4289_75977,266,4376_14777,Naomh Barróg GAA,105822886,0,4376_7778022_100230,4376_145 -4289_75977,267,4376_14778,Naomh Barróg GAA,106052886,0,4376_7778022_100230,4376_145 -4289_75977,268,4376_14779,Naomh Barróg GAA,106142886,0,4376_7778022_100230,4376_145 -4289_75961,268,4376_1478,Clontarf Station,106142353,1,4376_7778022_104080,4376_18 -4289_75977,269,4376_14780,Naomh Barróg GAA,106232886,0,4376_7778022_100230,4376_145 -4289_75977,259,4376_14781,Naomh Barróg GAA,105765568,0,4376_7778022_100230,4376_145 -4289_75977,270,4376_14782,Naomh Barróg GAA,105278226,0,4376_7778022_100190,4376_145 -4289_75977,146,4376_14783,Naomh Barróg GAA,105248226,0,4376_7778022_100190,4376_145 -4289_75977,271,4376_14784,Naomh Barróg GAA,105238226,0,4376_7778022_100190,4376_145 -4289_75977,115,4376_14785,Naomh Barróg GAA,105218226,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_14786,Naomh Barróg GAA,105312904,0,4376_7778022_100300,4376_145 -4289_75977,261,4376_14787,Naomh Barróg GAA,105322904,0,4376_7778022_100300,4376_145 -4289_75977,262,4376_14788,Naomh Barróg GAA,105432904,0,4376_7778022_100300,4376_145 -4289_75977,263,4376_14789,Naomh Barróg GAA,105542904,0,4376_7778022_100300,4376_145 -4289_75961,269,4376_1479,Clontarf Station,106232353,1,4376_7778022_104080,4376_18 -4289_75977,264,4376_14790,Naomh Barróg GAA,105652904,0,4376_7778022_100300,4376_145 -4289_75977,265,4376_14791,Naomh Barróg GAA,105812904,0,4376_7778022_100300,4376_145 -4289_75977,266,4376_14792,Naomh Barróg GAA,105822904,0,4376_7778022_100300,4376_145 -4289_75977,267,4376_14793,Naomh Barróg GAA,106052904,0,4376_7778022_100300,4376_145 -4289_75977,268,4376_14794,Naomh Barróg GAA,106142904,0,4376_7778022_100300,4376_145 -4289_75977,269,4376_14795,Naomh Barróg GAA,106232904,0,4376_7778022_100300,4376_145 -4289_75977,259,4376_14796,Naomh Barróg GAA,105765586,0,4376_7778022_100190,4376_145 -4289_75977,260,4376_14797,Naomh Barróg GAA,105312914,0,4376_7778022_100272,4376_145 -4289_75977,261,4376_14798,Naomh Barróg GAA,105322914,0,4376_7778022_100272,4376_145 -4289_75977,262,4376_14799,Naomh Barróg GAA,105432914,0,4376_7778022_100272,4376_145 -4289_75960,266,4376_148,Sutton Station,105821650,0,4376_7778022_103104,4376_1 -4289_75961,259,4376_1480,Clontarf Station,105765099,1,4376_7778022_104100,4376_19 -4289_75977,263,4376_14800,Naomh Barróg GAA,105542914,0,4376_7778022_100272,4376_145 -4289_75977,264,4376_14801,Naomh Barróg GAA,105652914,0,4376_7778022_100272,4376_145 -4289_75977,265,4376_14802,Naomh Barróg GAA,105812914,0,4376_7778022_100272,4376_145 -4289_75977,266,4376_14803,Naomh Barróg GAA,105822914,0,4376_7778022_100272,4376_145 -4289_75977,267,4376_14804,Naomh Barróg GAA,106052914,0,4376_7778022_100272,4376_145 -4289_75977,268,4376_14805,Naomh Barróg GAA,106142914,0,4376_7778022_100272,4376_145 -4289_75977,269,4376_14806,Naomh Barróg GAA,106232914,0,4376_7778022_100272,4376_145 -4289_75977,270,4376_14807,Naomh Barróg GAA,105278246,0,4376_7778022_100160,4376_145 -4289_75977,146,4376_14808,Naomh Barróg GAA,105248246,0,4376_7778022_100160,4376_145 -4289_75977,271,4376_14809,Naomh Barróg GAA,105238246,0,4376_7778022_100160,4376_145 -4289_75961,270,4376_1481,Clontarf Station,105277809,1,4376_7778022_104080,4376_20 -4289_75977,115,4376_14810,Naomh Barróg GAA,105218246,0,4376_7778022_100160,4376_145 -4289_75977,259,4376_14811,Naomh Barróg GAA,105765606,0,4376_7778022_100250,4376_145 -4289_75977,260,4376_14812,Naomh Barróg GAA,105312940,0,4376_7778022_100220,4376_145 -4289_75977,261,4376_14813,Naomh Barróg GAA,105322940,0,4376_7778022_100220,4376_145 -4289_75977,262,4376_14814,Naomh Barróg GAA,105432940,0,4376_7778022_100220,4376_145 -4289_75977,263,4376_14815,Naomh Barróg GAA,105542940,0,4376_7778022_100220,4376_145 -4289_75977,264,4376_14816,Naomh Barróg GAA,105652940,0,4376_7778022_100220,4376_145 -4289_75977,265,4376_14817,Naomh Barróg GAA,105812940,0,4376_7778022_100220,4376_145 -4289_75977,266,4376_14818,Naomh Barróg GAA,105822940,0,4376_7778022_100220,4376_145 -4289_75977,267,4376_14819,Naomh Barróg GAA,106052940,0,4376_7778022_100220,4376_145 -4289_75961,146,4376_1482,Clontarf Station,105247809,1,4376_7778022_104080,4376_20 -4289_75977,268,4376_14820,Naomh Barróg GAA,106142940,0,4376_7778022_100220,4376_145 -4289_75977,269,4376_14821,Naomh Barróg GAA,106232940,0,4376_7778022_100220,4376_145 -4289_75977,259,4376_14822,Naomh Barróg GAA,105765624,0,4376_7778022_100210,4376_145 -4289_75977,270,4376_14823,Naomh Barróg GAA,105278268,0,4376_7778022_100180,4376_145 -4289_75977,146,4376_14824,Naomh Barróg GAA,105248268,0,4376_7778022_100180,4376_145 -4289_75977,271,4376_14825,Naomh Barróg GAA,105238268,0,4376_7778022_100180,4376_145 -4289_75977,115,4376_14826,Naomh Barróg GAA,105218268,0,4376_7778022_100180,4376_145 -4289_75977,260,4376_14827,Naomh Barróg GAA,105312952,0,4376_7778022_100290,4376_145 -4289_75977,261,4376_14828,Naomh Barróg GAA,105322952,0,4376_7778022_100290,4376_145 -4289_75977,262,4376_14829,Naomh Barróg GAA,105432952,0,4376_7778022_100290,4376_145 -4289_75961,271,4376_1483,Clontarf Station,105237809,1,4376_7778022_104080,4376_20 -4289_75977,263,4376_14830,Naomh Barróg GAA,105542952,0,4376_7778022_100290,4376_145 -4289_75977,264,4376_14831,Naomh Barróg GAA,105652952,0,4376_7778022_100290,4376_145 -4289_75977,265,4376_14832,Naomh Barróg GAA,105812952,0,4376_7778022_100290,4376_145 -4289_75977,266,4376_14833,Naomh Barróg GAA,105822952,0,4376_7778022_100290,4376_145 -4289_75977,267,4376_14834,Naomh Barróg GAA,106052952,0,4376_7778022_100290,4376_145 -4289_75977,268,4376_14835,Naomh Barróg GAA,106142952,0,4376_7778022_100290,4376_145 -4289_75977,269,4376_14836,Naomh Barróg GAA,106232952,0,4376_7778022_100290,4376_145 -4289_75977,260,4376_14837,Naomh Barróg GAA,105312974,0,4376_7778022_100330,4376_145 -4289_75977,261,4376_14838,Naomh Barróg GAA,105322974,0,4376_7778022_100330,4376_145 -4289_75977,262,4376_14839,Naomh Barróg GAA,105432974,0,4376_7778022_100330,4376_145 -4289_75961,115,4376_1484,Clontarf Station,105217809,1,4376_7778022_104080,4376_20 -4289_75977,263,4376_14840,Naomh Barróg GAA,105542974,0,4376_7778022_100330,4376_145 -4289_75977,264,4376_14841,Naomh Barróg GAA,105652974,0,4376_7778022_100330,4376_145 -4289_75977,265,4376_14842,Naomh Barróg GAA,105812974,0,4376_7778022_100330,4376_145 -4289_75977,266,4376_14843,Naomh Barróg GAA,105822974,0,4376_7778022_100330,4376_145 -4289_75977,267,4376_14844,Naomh Barróg GAA,106052974,0,4376_7778022_100330,4376_145 -4289_75977,268,4376_14845,Naomh Barróg GAA,106142974,0,4376_7778022_100330,4376_145 -4289_75977,269,4376_14846,Naomh Barróg GAA,106232974,0,4376_7778022_100330,4376_145 -4289_75977,259,4376_14847,Naomh Barróg GAA,105765646,0,4376_7778022_100160,4376_145 -4289_75977,260,4376_14848,Naomh Barróg GAA,105312982,0,4376_7778022_100310,4376_145 -4289_75977,261,4376_14849,Naomh Barróg GAA,105322982,0,4376_7778022_100310,4376_145 -4289_75961,260,4376_1485,Clontarf Station,105312469,1,4376_7778022_104170,4376_18 -4289_75977,262,4376_14850,Naomh Barróg GAA,105432982,0,4376_7778022_100310,4376_145 -4289_75977,263,4376_14851,Naomh Barróg GAA,105542982,0,4376_7778022_100310,4376_145 -4289_75977,264,4376_14852,Naomh Barróg GAA,105652982,0,4376_7778022_100310,4376_145 -4289_75977,265,4376_14853,Naomh Barróg GAA,105812982,0,4376_7778022_100310,4376_145 -4289_75977,266,4376_14854,Naomh Barróg GAA,105822982,0,4376_7778022_100310,4376_145 -4289_75977,267,4376_14855,Naomh Barróg GAA,106052982,0,4376_7778022_100310,4376_145 -4289_75977,268,4376_14856,Naomh Barróg GAA,106142982,0,4376_7778022_100310,4376_145 -4289_75977,269,4376_14857,Naomh Barróg GAA,106232982,0,4376_7778022_100310,4376_145 -4289_75977,259,4376_14858,Naomh Barróg GAA,105765658,0,4376_7778022_100260,4376_145 -4289_75977,270,4376_14859,Naomh Barróg GAA,105278300,0,4376_7778022_100220,4376_146 -4289_75961,261,4376_1486,Clontarf Station,105322469,1,4376_7778022_104170,4376_18 -4289_75977,146,4376_14860,Naomh Barróg GAA,105248300,0,4376_7778022_100220,4376_146 -4289_75977,271,4376_14861,Naomh Barróg GAA,105238300,0,4376_7778022_100220,4376_146 -4289_75977,115,4376_14862,Naomh Barróg GAA,105218300,0,4376_7778022_100220,4376_146 -4289_75977,260,4376_14863,Finglas Village,105311007,1,4376_7778022_100200,4376_147 -4289_75977,261,4376_14864,Finglas Village,105321007,1,4376_7778022_100200,4376_147 -4289_75977,262,4376_14865,Finglas Village,105431007,1,4376_7778022_100200,4376_147 -4289_75977,263,4376_14866,Finglas Village,105541007,1,4376_7778022_100200,4376_147 -4289_75977,264,4376_14867,Finglas Village,105651007,1,4376_7778022_100200,4376_147 -4289_75977,265,4376_14868,Finglas Village,105811007,1,4376_7778022_100200,4376_147 -4289_75977,266,4376_14869,Finglas Village,105821007,1,4376_7778022_100200,4376_147 -4289_75961,262,4376_1487,Clontarf Station,105432469,1,4376_7778022_104170,4376_18 -4289_75977,267,4376_14870,Finglas Village,106051007,1,4376_7778022_100200,4376_147 -4289_75977,268,4376_14871,Finglas Village,106141007,1,4376_7778022_100200,4376_147 -4289_75977,269,4376_14872,Finglas Village,106231007,1,4376_7778022_100200,4376_147 -4289_75977,259,4376_14873,Finglas Village,105764005,1,4376_7778022_100160,4376_148 -4289_75977,260,4376_14874,Finglas Village,105311019,1,4376_7778022_100220,4376_147 -4289_75977,261,4376_14875,Finglas Village,105321019,1,4376_7778022_100220,4376_147 -4289_75977,262,4376_14876,Finglas Village,105431019,1,4376_7778022_100220,4376_147 -4289_75977,263,4376_14877,Finglas Village,105541019,1,4376_7778022_100220,4376_147 -4289_75977,264,4376_14878,Finglas Village,105651019,1,4376_7778022_100220,4376_147 -4289_75977,265,4376_14879,Finglas Village,105811019,1,4376_7778022_100220,4376_147 -4289_75961,263,4376_1488,Clontarf Station,105542469,1,4376_7778022_104170,4376_18 -4289_75977,266,4376_14880,Finglas Village,105821019,1,4376_7778022_100220,4376_147 -4289_75977,267,4376_14881,Finglas Village,106051019,1,4376_7778022_100220,4376_147 -4289_75977,268,4376_14882,Finglas Village,106141019,1,4376_7778022_100220,4376_147 -4289_75977,269,4376_14883,Finglas Village,106231019,1,4376_7778022_100220,4376_147 -4289_75977,259,4376_14884,Finglas Village,105764013,1,4376_7778022_100180,4376_148 -4289_75977,260,4376_14885,Finglas Village,105311031,1,4376_7778022_100240,4376_147 -4289_75977,261,4376_14886,Finglas Village,105321031,1,4376_7778022_100240,4376_147 -4289_75977,262,4376_14887,Finglas Village,105431031,1,4376_7778022_100240,4376_147 -4289_75977,263,4376_14888,Finglas Village,105541031,1,4376_7778022_100240,4376_147 -4289_75977,264,4376_14889,Finglas Village,105651031,1,4376_7778022_100240,4376_147 -4289_75961,264,4376_1489,Clontarf Station,105652469,1,4376_7778022_104170,4376_18 -4289_75977,265,4376_14890,Finglas Village,105811031,1,4376_7778022_100240,4376_147 -4289_75977,266,4376_14891,Finglas Village,105821031,1,4376_7778022_100240,4376_147 -4289_75977,267,4376_14892,Finglas Village,106051031,1,4376_7778022_100240,4376_147 -4289_75977,268,4376_14893,Finglas Village,106141031,1,4376_7778022_100240,4376_147 -4289_75977,269,4376_14894,Finglas Village,106231031,1,4376_7778022_100240,4376_147 -4289_75977,259,4376_14895,Finglas Village,105764023,1,4376_7778022_100200,4376_147 -4289_75977,260,4376_14896,Finglas Village,105311043,1,4376_7778022_100260,4376_147 -4289_75977,261,4376_14897,Finglas Village,105321043,1,4376_7778022_100260,4376_147 -4289_75977,262,4376_14898,Finglas Village,105431043,1,4376_7778022_100260,4376_147 -4289_75977,263,4376_14899,Finglas Village,105541043,1,4376_7778022_100260,4376_147 -4289_75960,267,4376_149,Sutton Station,106051650,0,4376_7778022_103104,4376_1 -4289_75961,265,4376_1490,Clontarf Station,105812469,1,4376_7778022_104170,4376_18 -4289_75977,264,4376_14900,Finglas Village,105651043,1,4376_7778022_100260,4376_147 -4289_75977,265,4376_14901,Finglas Village,105811043,1,4376_7778022_100260,4376_147 -4289_75977,266,4376_14902,Finglas Village,105821043,1,4376_7778022_100260,4376_147 -4289_75977,267,4376_14903,Finglas Village,106051043,1,4376_7778022_100260,4376_147 -4289_75977,268,4376_14904,Finglas Village,106141043,1,4376_7778022_100260,4376_147 -4289_75977,269,4376_14905,Finglas Village,106231043,1,4376_7778022_100260,4376_147 -4289_75977,259,4376_14906,Finglas Village,105764033,1,4376_7778022_100170,4376_147 -4289_75977,260,4376_14907,Finglas Village,105311063,1,4376_7778022_100210,4376_147 -4289_75977,261,4376_14908,Finglas Village,105321063,1,4376_7778022_100210,4376_147 -4289_75977,262,4376_14909,Finglas Village,105431063,1,4376_7778022_100210,4376_147 -4289_75961,266,4376_1491,Clontarf Station,105822469,1,4376_7778022_104170,4376_18 -4289_75977,263,4376_14910,Finglas Village,105541063,1,4376_7778022_100210,4376_147 -4289_75977,264,4376_14911,Finglas Village,105651063,1,4376_7778022_100210,4376_147 -4289_75977,265,4376_14912,Finglas Village,105811063,1,4376_7778022_100210,4376_147 -4289_75977,266,4376_14913,Finglas Village,105821063,1,4376_7778022_100210,4376_147 -4289_75977,267,4376_14914,Finglas Village,106051063,1,4376_7778022_100210,4376_147 -4289_75977,268,4376_14915,Finglas Village,106141063,1,4376_7778022_100210,4376_147 -4289_75977,269,4376_14916,Finglas Village,106231063,1,4376_7778022_100210,4376_147 -4289_75977,259,4376_14917,Finglas Village,105764051,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_14918,Finglas Village,105311077,1,4376_7778022_100281,4376_147 -4289_75977,261,4376_14919,Finglas Village,105321077,1,4376_7778022_100281,4376_147 -4289_75961,267,4376_1492,Clontarf Station,106052469,1,4376_7778022_104170,4376_18 -4289_75977,262,4376_14920,Finglas Village,105431077,1,4376_7778022_100281,4376_147 -4289_75977,263,4376_14921,Finglas Village,105541077,1,4376_7778022_100281,4376_147 -4289_75977,264,4376_14922,Finglas Village,105651077,1,4376_7778022_100281,4376_147 -4289_75977,265,4376_14923,Finglas Village,105811077,1,4376_7778022_100281,4376_147 -4289_75977,266,4376_14924,Finglas Village,105821077,1,4376_7778022_100281,4376_147 -4289_75977,267,4376_14925,Finglas Village,106051077,1,4376_7778022_100281,4376_147 -4289_75977,268,4376_14926,Finglas Village,106141077,1,4376_7778022_100281,4376_147 -4289_75977,269,4376_14927,Finglas Village,106231077,1,4376_7778022_100281,4376_147 -4289_75977,260,4376_14928,Finglas Village,105311103,1,4376_7778022_100230,4376_147 -4289_75977,261,4376_14929,Finglas Village,105321103,1,4376_7778022_100230,4376_147 -4289_75961,268,4376_1493,Clontarf Station,106142469,1,4376_7778022_104170,4376_18 -4289_75977,262,4376_14930,Finglas Village,105431103,1,4376_7778022_100230,4376_147 -4289_75977,263,4376_14931,Finglas Village,105541103,1,4376_7778022_100230,4376_147 -4289_75977,264,4376_14932,Finglas Village,105651103,1,4376_7778022_100230,4376_147 -4289_75977,265,4376_14933,Finglas Village,105811103,1,4376_7778022_100230,4376_147 -4289_75977,266,4376_14934,Finglas Village,105821103,1,4376_7778022_100230,4376_147 -4289_75977,267,4376_14935,Finglas Village,106051103,1,4376_7778022_100230,4376_147 -4289_75977,268,4376_14936,Finglas Village,106141103,1,4376_7778022_100230,4376_147 -4289_75977,269,4376_14937,Finglas Village,106231103,1,4376_7778022_100230,4376_147 -4289_75977,259,4376_14938,Finglas Village,105764065,1,4376_7778022_100210,4376_148 -4289_75977,260,4376_14939,Finglas Village,105311121,1,4376_7778022_100250,4376_147 -4289_75961,269,4376_1494,Clontarf Station,106232469,1,4376_7778022_104170,4376_18 -4289_75977,261,4376_14940,Finglas Village,105321121,1,4376_7778022_100250,4376_147 -4289_75977,262,4376_14941,Finglas Village,105431121,1,4376_7778022_100250,4376_147 -4289_75977,263,4376_14942,Finglas Village,105541121,1,4376_7778022_100250,4376_147 -4289_75977,264,4376_14943,Finglas Village,105651121,1,4376_7778022_100250,4376_147 -4289_75977,265,4376_14944,Finglas Village,105811121,1,4376_7778022_100250,4376_147 -4289_75977,266,4376_14945,Finglas Village,105821121,1,4376_7778022_100250,4376_147 -4289_75977,267,4376_14946,Finglas Village,106051121,1,4376_7778022_100250,4376_147 -4289_75977,268,4376_14947,Finglas Village,106141121,1,4376_7778022_100250,4376_147 -4289_75977,269,4376_14948,Finglas Village,106231121,1,4376_7778022_100250,4376_147 -4289_75977,259,4376_14949,Finglas Village,105764085,1,4376_7778022_100160,4376_147 -4289_75961,259,4376_1495,Clontarf Station,105765199,1,4376_7778022_104090,4376_19 -4289_75977,260,4376_14950,Finglas Village,105311151,1,4376_7778022_100271,4376_147 -4289_75977,261,4376_14951,Finglas Village,105321151,1,4376_7778022_100271,4376_147 -4289_75977,262,4376_14952,Finglas Village,105431151,1,4376_7778022_100271,4376_147 -4289_75977,263,4376_14953,Finglas Village,105541151,1,4376_7778022_100271,4376_147 -4289_75977,264,4376_14954,Finglas Village,105651151,1,4376_7778022_100271,4376_147 -4289_75977,265,4376_14955,Finglas Village,105811151,1,4376_7778022_100271,4376_147 -4289_75977,266,4376_14956,Finglas Village,105821151,1,4376_7778022_100271,4376_147 -4289_75977,267,4376_14957,Finglas Village,106051151,1,4376_7778022_100271,4376_147 -4289_75977,268,4376_14958,Finglas Village,106141151,1,4376_7778022_100271,4376_147 -4289_75977,269,4376_14959,Finglas Village,106231151,1,4376_7778022_100271,4376_147 -4289_75961,270,4376_1496,Clontarf Station,105277897,1,4376_7778022_104070,4376_20 -4289_75977,259,4376_14960,Finglas Village,105764103,1,4376_7778022_100180,4376_147 -4289_75977,260,4376_14961,Finglas Village,105311181,1,4376_7778022_100200,4376_147 -4289_75977,261,4376_14962,Finglas Village,105321181,1,4376_7778022_100200,4376_147 -4289_75977,262,4376_14963,Finglas Village,105431181,1,4376_7778022_100200,4376_147 -4289_75977,263,4376_14964,Finglas Village,105541181,1,4376_7778022_100200,4376_147 -4289_75977,264,4376_14965,Finglas Village,105651181,1,4376_7778022_100200,4376_147 -4289_75977,265,4376_14966,Finglas Village,105811181,1,4376_7778022_100200,4376_147 -4289_75977,266,4376_14967,Finglas Village,105821181,1,4376_7778022_100200,4376_147 -4289_75977,267,4376_14968,Finglas Village,106051181,1,4376_7778022_100200,4376_147 -4289_75977,268,4376_14969,Finglas Village,106141181,1,4376_7778022_100200,4376_147 -4289_75961,146,4376_1497,Clontarf Station,105247897,1,4376_7778022_104070,4376_20 -4289_75977,269,4376_14970,Finglas Village,106231181,1,4376_7778022_100200,4376_147 -4289_75977,270,4376_14971,Finglas Village,105277005,1,4376_7778022_100160,4376_147 -4289_75977,146,4376_14972,Finglas Village,105247005,1,4376_7778022_100160,4376_147 -4289_75977,271,4376_14973,Finglas Village,105237005,1,4376_7778022_100160,4376_147 -4289_75977,115,4376_14974,Finglas Village,105217005,1,4376_7778022_100160,4376_147 -4289_75977,259,4376_14975,Finglas Village,105764127,1,4376_7778022_100200,4376_147 -4289_75977,260,4376_14976,Finglas Village,105311197,1,4376_7778022_100220,4376_147 -4289_75977,261,4376_14977,Finglas Village,105321197,1,4376_7778022_100220,4376_147 -4289_75977,262,4376_14978,Finglas Village,105431197,1,4376_7778022_100220,4376_147 -4289_75977,263,4376_14979,Finglas Village,105541197,1,4376_7778022_100220,4376_147 -4289_75961,271,4376_1498,Clontarf Station,105237897,1,4376_7778022_104070,4376_20 -4289_75977,264,4376_14980,Finglas Village,105651197,1,4376_7778022_100220,4376_147 -4289_75977,265,4376_14981,Finglas Village,105811197,1,4376_7778022_100220,4376_147 -4289_75977,266,4376_14982,Finglas Village,105821197,1,4376_7778022_100220,4376_147 -4289_75977,267,4376_14983,Finglas Village,106051197,1,4376_7778022_100220,4376_147 -4289_75977,268,4376_14984,Finglas Village,106141197,1,4376_7778022_100220,4376_147 -4289_75977,269,4376_14985,Finglas Village,106231197,1,4376_7778022_100220,4376_147 -4289_75977,260,4376_14986,Finglas Village,105311221,1,4376_7778022_100290,4376_147 -4289_75977,261,4376_14987,Finglas Village,105321221,1,4376_7778022_100290,4376_147 -4289_75977,262,4376_14988,Finglas Village,105431221,1,4376_7778022_100290,4376_147 -4289_75977,263,4376_14989,Finglas Village,105541221,1,4376_7778022_100290,4376_147 -4289_75961,115,4376_1499,Clontarf Station,105217897,1,4376_7778022_104070,4376_20 -4289_75977,264,4376_14990,Finglas Village,105651221,1,4376_7778022_100290,4376_147 -4289_75977,265,4376_14991,Finglas Village,105811221,1,4376_7778022_100290,4376_147 -4289_75977,266,4376_14992,Finglas Village,105821221,1,4376_7778022_100290,4376_147 -4289_75977,267,4376_14993,Finglas Village,106051221,1,4376_7778022_100290,4376_147 -4289_75977,268,4376_14994,Finglas Village,106141221,1,4376_7778022_100290,4376_147 -4289_75977,269,4376_14995,Finglas Village,106231221,1,4376_7778022_100290,4376_147 -4289_75977,259,4376_14996,Finglas Village,105764145,1,4376_7778022_100170,4376_148 -4289_75977,270,4376_14997,Finglas Village,105277023,1,4376_7778022_100180,4376_147 -4289_75977,146,4376_14998,Finglas Village,105247023,1,4376_7778022_100180,4376_147 -4289_75977,271,4376_14999,Finglas Village,105237023,1,4376_7778022_100180,4376_147 -4289_75960,262,4376_15,Sutton Station,105431070,0,4376_7778022_103107,4376_1 -4289_75960,268,4376_150,Sutton Station,106141650,0,4376_7778022_103104,4376_1 -4289_75961,260,4376_1500,Clontarf Station,105312595,1,4376_7778022_104190,4376_18 -4289_75977,115,4376_15000,Finglas Village,105217023,1,4376_7778022_100180,4376_147 -4289_75977,260,4376_15001,Finglas Village,105311245,1,4376_7778022_100310,4376_147 -4289_75977,261,4376_15002,Finglas Village,105321245,1,4376_7778022_100310,4376_147 -4289_75977,262,4376_15003,Finglas Village,105431245,1,4376_7778022_100310,4376_147 -4289_75977,263,4376_15004,Finglas Village,105541245,1,4376_7778022_100310,4376_147 -4289_75977,264,4376_15005,Finglas Village,105651245,1,4376_7778022_100310,4376_147 -4289_75977,265,4376_15006,Finglas Village,105811245,1,4376_7778022_100310,4376_147 -4289_75977,266,4376_15007,Finglas Village,105821245,1,4376_7778022_100310,4376_147 -4289_75977,267,4376_15008,Finglas Village,106051245,1,4376_7778022_100310,4376_147 -4289_75977,268,4376_15009,Finglas Village,106141245,1,4376_7778022_100310,4376_147 -4289_75961,261,4376_1501,Clontarf Station,105322595,1,4376_7778022_104190,4376_18 -4289_75977,269,4376_15010,Finglas Village,106231245,1,4376_7778022_100310,4376_147 -4289_75977,259,4376_15011,Finglas Village,105764165,1,4376_7778022_100220,4376_147 -4289_75977,260,4376_15012,Finglas Village,105311287,1,4376_7778022_100240,4376_147 -4289_75977,261,4376_15013,Finglas Village,105321287,1,4376_7778022_100240,4376_147 -4289_75977,262,4376_15014,Finglas Village,105431287,1,4376_7778022_100240,4376_147 -4289_75977,263,4376_15015,Finglas Village,105541287,1,4376_7778022_100240,4376_147 -4289_75977,264,4376_15016,Finglas Village,105651287,1,4376_7778022_100240,4376_147 -4289_75977,265,4376_15017,Finglas Village,105811287,1,4376_7778022_100240,4376_147 -4289_75977,266,4376_15018,Finglas Village,105821287,1,4376_7778022_100240,4376_147 -4289_75977,267,4376_15019,Finglas Village,106051287,1,4376_7778022_100240,4376_147 -4289_75961,262,4376_1502,Clontarf Station,105432595,1,4376_7778022_104190,4376_18 -4289_75977,268,4376_15020,Finglas Village,106141287,1,4376_7778022_100240,4376_147 -4289_75977,269,4376_15021,Finglas Village,106231287,1,4376_7778022_100240,4376_147 -4289_75977,259,4376_15022,Finglas Village,105764187,1,4376_7778022_100230,4376_147 -4289_75977,270,4376_15023,Finglas Village,105277035,1,4376_7778022_100170,4376_148 -4289_75977,146,4376_15024,Finglas Village,105247035,1,4376_7778022_100170,4376_148 -4289_75977,271,4376_15025,Finglas Village,105237035,1,4376_7778022_100170,4376_148 -4289_75977,115,4376_15026,Finglas Village,105217035,1,4376_7778022_100170,4376_148 -4289_75977,260,4376_15027,Finglas Village,105311313,1,4376_7778022_100260,4376_147 -4289_75977,261,4376_15028,Finglas Village,105321313,1,4376_7778022_100260,4376_147 -4289_75977,262,4376_15029,Finglas Village,105431313,1,4376_7778022_100260,4376_147 -4289_75961,263,4376_1503,Clontarf Station,105542595,1,4376_7778022_104190,4376_18 -4289_75977,263,4376_15030,Finglas Village,105541313,1,4376_7778022_100260,4376_147 -4289_75977,264,4376_15031,Finglas Village,105651313,1,4376_7778022_100260,4376_147 -4289_75977,265,4376_15032,Finglas Village,105811313,1,4376_7778022_100260,4376_147 -4289_75977,266,4376_15033,Finglas Village,105821313,1,4376_7778022_100260,4376_147 -4289_75977,267,4376_15034,Finglas Village,106051313,1,4376_7778022_100260,4376_147 -4289_75977,268,4376_15035,Finglas Village,106141313,1,4376_7778022_100260,4376_147 -4289_75977,269,4376_15036,Finglas Village,106231313,1,4376_7778022_100260,4376_147 -4289_75977,259,4376_15037,Finglas Village,105764211,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_15038,Finglas Village,105311337,1,4376_7778022_100210,4376_147 -4289_75977,261,4376_15039,Finglas Village,105321337,1,4376_7778022_100210,4376_147 -4289_75961,264,4376_1504,Clontarf Station,105652595,1,4376_7778022_104190,4376_18 -4289_75977,262,4376_15040,Finglas Village,105431337,1,4376_7778022_100210,4376_147 -4289_75977,263,4376_15041,Finglas Village,105541337,1,4376_7778022_100210,4376_147 -4289_75977,264,4376_15042,Finglas Village,105651337,1,4376_7778022_100210,4376_147 -4289_75977,265,4376_15043,Finglas Village,105811337,1,4376_7778022_100210,4376_147 -4289_75977,266,4376_15044,Finglas Village,105821337,1,4376_7778022_100210,4376_147 -4289_75977,267,4376_15045,Finglas Village,106051337,1,4376_7778022_100210,4376_147 -4289_75977,268,4376_15046,Finglas Village,106141337,1,4376_7778022_100210,4376_147 -4289_75977,269,4376_15047,Finglas Village,106231337,1,4376_7778022_100210,4376_147 -4289_75977,270,4376_15048,Finglas Village,105277057,1,4376_7778022_100200,4376_147 -4289_75977,146,4376_15049,Finglas Village,105247057,1,4376_7778022_100200,4376_147 -4289_75961,265,4376_1505,Clontarf Station,105812595,1,4376_7778022_104190,4376_18 -4289_75977,271,4376_15050,Finglas Village,105237057,1,4376_7778022_100200,4376_147 -4289_75977,115,4376_15051,Finglas Village,105217057,1,4376_7778022_100200,4376_147 -4289_75977,260,4376_15052,Finglas Village,105311363,1,4376_7778022_100281,4376_147 -4289_75977,261,4376_15053,Finglas Village,105321363,1,4376_7778022_100281,4376_147 -4289_75977,262,4376_15054,Finglas Village,105431363,1,4376_7778022_100281,4376_147 -4289_75977,263,4376_15055,Finglas Village,105541363,1,4376_7778022_100281,4376_147 -4289_75977,264,4376_15056,Finglas Village,105651363,1,4376_7778022_100281,4376_147 -4289_75977,265,4376_15057,Finglas Village,105811363,1,4376_7778022_100281,4376_147 -4289_75977,266,4376_15058,Finglas Village,105821363,1,4376_7778022_100281,4376_147 -4289_75977,267,4376_15059,Finglas Village,106051363,1,4376_7778022_100281,4376_147 -4289_75961,266,4376_1506,Clontarf Station,105822595,1,4376_7778022_104190,4376_18 -4289_75977,268,4376_15060,Finglas Village,106141363,1,4376_7778022_100281,4376_147 -4289_75977,269,4376_15061,Finglas Village,106231363,1,4376_7778022_100281,4376_147 -4289_75977,259,4376_15062,Finglas Village,105764231,1,4376_7778022_100210,4376_148 -4289_75977,270,4376_15063,Finglas Village,105277071,1,4376_7778022_100190,4376_147 -4289_75977,146,4376_15064,Finglas Village,105247071,1,4376_7778022_100190,4376_147 -4289_75977,271,4376_15065,Finglas Village,105237071,1,4376_7778022_100190,4376_147 -4289_75977,115,4376_15066,Finglas Village,105217071,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_15067,Finglas Village,105311381,1,4376_7778022_100230,4376_147 -4289_75977,261,4376_15068,Finglas Village,105321381,1,4376_7778022_100230,4376_147 -4289_75977,262,4376_15069,Finglas Village,105431381,1,4376_7778022_100230,4376_147 -4289_75961,267,4376_1507,Clontarf Station,106052595,1,4376_7778022_104190,4376_18 -4289_75977,263,4376_15070,Finglas Village,105541381,1,4376_7778022_100230,4376_147 -4289_75977,264,4376_15071,Finglas Village,105651381,1,4376_7778022_100230,4376_147 -4289_75977,265,4376_15072,Finglas Village,105811381,1,4376_7778022_100230,4376_147 -4289_75977,266,4376_15073,Finglas Village,105821381,1,4376_7778022_100230,4376_147 -4289_75977,267,4376_15074,Finglas Village,106051381,1,4376_7778022_100230,4376_147 -4289_75977,268,4376_15075,Finglas Village,106141381,1,4376_7778022_100230,4376_147 -4289_75977,269,4376_15076,Finglas Village,106231381,1,4376_7778022_100230,4376_147 -4289_75977,259,4376_15077,Finglas Village,105764247,1,4376_7778022_100160,4376_148 -4289_75977,260,4376_15078,Finglas Village,105311409,1,4376_7778022_100320,4376_147 -4289_75977,261,4376_15079,Finglas Village,105321409,1,4376_7778022_100320,4376_147 -4289_75961,268,4376_1508,Clontarf Station,106142595,1,4376_7778022_104190,4376_18 -4289_75977,262,4376_15080,Finglas Village,105431409,1,4376_7778022_100320,4376_147 -4289_75977,263,4376_15081,Finglas Village,105541409,1,4376_7778022_100320,4376_147 -4289_75977,264,4376_15082,Finglas Village,105651409,1,4376_7778022_100320,4376_147 -4289_75977,265,4376_15083,Finglas Village,105811409,1,4376_7778022_100320,4376_147 -4289_75977,266,4376_15084,Finglas Village,105821409,1,4376_7778022_100320,4376_147 -4289_75977,267,4376_15085,Finglas Village,106051409,1,4376_7778022_100320,4376_147 -4289_75977,268,4376_15086,Finglas Village,106141409,1,4376_7778022_100320,4376_147 -4289_75977,269,4376_15087,Finglas Village,106231409,1,4376_7778022_100320,4376_147 -4289_75977,259,4376_15088,Finglas Village,105764269,1,4376_7778022_100180,4376_148 -4289_75977,270,4376_15089,Finglas Village,105277097,1,4376_7778022_100160,4376_147 -4289_75961,269,4376_1509,Clontarf Station,106232595,1,4376_7778022_104190,4376_18 -4289_75977,146,4376_15090,Finglas Village,105247097,1,4376_7778022_100160,4376_147 -4289_75977,271,4376_15091,Finglas Village,105237097,1,4376_7778022_100160,4376_147 -4289_75977,115,4376_15092,Finglas Village,105217097,1,4376_7778022_100160,4376_147 -4289_75977,260,4376_15093,Finglas Village,105311427,1,4376_7778022_100300,4376_147 -4289_75977,261,4376_15094,Finglas Village,105321427,1,4376_7778022_100300,4376_147 -4289_75977,262,4376_15095,Finglas Village,105431427,1,4376_7778022_100300,4376_147 -4289_75977,263,4376_15096,Finglas Village,105541427,1,4376_7778022_100300,4376_147 -4289_75977,264,4376_15097,Finglas Village,105651427,1,4376_7778022_100300,4376_147 -4289_75977,265,4376_15098,Finglas Village,105811427,1,4376_7778022_100300,4376_147 -4289_75977,266,4376_15099,Finglas Village,105821427,1,4376_7778022_100300,4376_147 -4289_75960,269,4376_151,Sutton Station,106231650,0,4376_7778022_103104,4376_1 -4289_75961,259,4376_1510,Clontarf Station,105765307,1,4376_7778022_104150,4376_19 -4289_75977,267,4376_15100,Finglas Village,106051427,1,4376_7778022_100300,4376_147 -4289_75977,268,4376_15101,Finglas Village,106141427,1,4376_7778022_100300,4376_147 -4289_75977,269,4376_15102,Finglas Village,106231427,1,4376_7778022_100300,4376_147 -4289_75977,259,4376_15103,Finglas Village,105764291,1,4376_7778022_100240,4376_148 -4289_75977,260,4376_15104,Finglas Village,105311443,1,4376_7778022_100250,4376_147 -4289_75977,261,4376_15105,Finglas Village,105321443,1,4376_7778022_100250,4376_147 -4289_75977,262,4376_15106,Finglas Village,105431443,1,4376_7778022_100250,4376_147 -4289_75977,263,4376_15107,Finglas Village,105541443,1,4376_7778022_100250,4376_147 -4289_75977,264,4376_15108,Finglas Village,105651443,1,4376_7778022_100250,4376_147 -4289_75977,265,4376_15109,Finglas Village,105811443,1,4376_7778022_100250,4376_147 -4289_75961,270,4376_1511,Clontarf Station,105277993,1,4376_7778022_104110,4376_20 -4289_75977,266,4376_15110,Finglas Village,105821443,1,4376_7778022_100250,4376_147 -4289_75977,267,4376_15111,Finglas Village,106051443,1,4376_7778022_100250,4376_147 -4289_75977,268,4376_15112,Finglas Village,106141443,1,4376_7778022_100250,4376_147 -4289_75977,269,4376_15113,Finglas Village,106231443,1,4376_7778022_100250,4376_147 -4289_75977,259,4376_15114,Finglas Village,105764307,1,4376_7778022_100200,4376_148 -4289_75977,270,4376_15115,Finglas Village,105277129,1,4376_7778022_100210,4376_147 -4289_75977,146,4376_15116,Finglas Village,105247129,1,4376_7778022_100210,4376_147 -4289_75977,271,4376_15117,Finglas Village,105237129,1,4376_7778022_100210,4376_147 -4289_75977,115,4376_15118,Finglas Village,105217129,1,4376_7778022_100210,4376_147 -4289_75977,260,4376_15119,Finglas Village,105311471,1,4376_7778022_100200,4376_147 -4289_75961,146,4376_1512,Clontarf Station,105247993,1,4376_7778022_104110,4376_20 -4289_75977,261,4376_15120,Finglas Village,105321471,1,4376_7778022_100200,4376_147 -4289_75977,262,4376_15121,Finglas Village,105431471,1,4376_7778022_100200,4376_147 -4289_75977,263,4376_15122,Finglas Village,105541471,1,4376_7778022_100200,4376_147 -4289_75977,264,4376_15123,Finglas Village,105651471,1,4376_7778022_100200,4376_147 -4289_75977,265,4376_15124,Finglas Village,105811471,1,4376_7778022_100200,4376_147 -4289_75977,266,4376_15125,Finglas Village,105821471,1,4376_7778022_100200,4376_147 -4289_75977,267,4376_15126,Finglas Village,106051471,1,4376_7778022_100200,4376_147 -4289_75977,268,4376_15127,Finglas Village,106141471,1,4376_7778022_100200,4376_147 -4289_75977,269,4376_15128,Finglas Village,106231471,1,4376_7778022_100200,4376_147 -4289_75977,259,4376_15129,Finglas Village,105764327,1,4376_7778022_100170,4376_148 -4289_75961,271,4376_1513,Clontarf Station,105237993,1,4376_7778022_104110,4376_20 -4289_75977,270,4376_15130,Finglas Village,105277147,1,4376_7778022_100180,4376_147 -4289_75977,146,4376_15131,Finglas Village,105247147,1,4376_7778022_100180,4376_147 -4289_75977,271,4376_15132,Finglas Village,105237147,1,4376_7778022_100180,4376_147 -4289_75977,115,4376_15133,Finglas Village,105217147,1,4376_7778022_100180,4376_147 -4289_75977,260,4376_15134,Finglas Village,105311489,1,4376_7778022_100220,4376_147 -4289_75977,261,4376_15135,Finglas Village,105321489,1,4376_7778022_100220,4376_147 -4289_75977,262,4376_15136,Finglas Village,105431489,1,4376_7778022_100220,4376_147 -4289_75977,263,4376_15137,Finglas Village,105541489,1,4376_7778022_100220,4376_147 -4289_75977,264,4376_15138,Finglas Village,105651489,1,4376_7778022_100220,4376_147 -4289_75977,265,4376_15139,Finglas Village,105811489,1,4376_7778022_100220,4376_147 -4289_75961,115,4376_1514,Clontarf Station,105217993,1,4376_7778022_104110,4376_20 -4289_75977,266,4376_15140,Finglas Village,105821489,1,4376_7778022_100220,4376_147 -4289_75977,267,4376_15141,Finglas Village,106051489,1,4376_7778022_100220,4376_147 -4289_75977,268,4376_15142,Finglas Village,106141489,1,4376_7778022_100220,4376_147 -4289_75977,269,4376_15143,Finglas Village,106231489,1,4376_7778022_100220,4376_147 -4289_75977,259,4376_15144,Finglas Village,105764347,1,4376_7778022_100220,4376_148 -4289_75977,260,4376_15145,Finglas Village,105311515,1,4376_7778022_100290,4376_147 -4289_75977,261,4376_15146,Finglas Village,105321515,1,4376_7778022_100290,4376_147 -4289_75977,262,4376_15147,Finglas Village,105431515,1,4376_7778022_100290,4376_147 -4289_75977,263,4376_15148,Finglas Village,105541515,1,4376_7778022_100290,4376_147 -4289_75977,264,4376_15149,Finglas Village,105651515,1,4376_7778022_100290,4376_147 -4289_75961,260,4376_1515,Clontarf Station,105312693,1,4376_7778022_104060,4376_18 -4289_75977,265,4376_15150,Finglas Village,105811515,1,4376_7778022_100290,4376_147 -4289_75977,266,4376_15151,Finglas Village,105821515,1,4376_7778022_100290,4376_147 -4289_75977,267,4376_15152,Finglas Village,106051515,1,4376_7778022_100290,4376_147 -4289_75977,268,4376_15153,Finglas Village,106141515,1,4376_7778022_100290,4376_147 -4289_75977,269,4376_15154,Finglas Village,106231515,1,4376_7778022_100290,4376_147 -4289_75977,259,4376_15155,Finglas Village,105764371,1,4376_7778022_100230,4376_148 -4289_75977,270,4376_15156,Finglas Village,105277169,1,4376_7778022_100170,4376_147 -4289_75977,146,4376_15157,Finglas Village,105247169,1,4376_7778022_100170,4376_147 -4289_75977,271,4376_15158,Finglas Village,105237169,1,4376_7778022_100170,4376_147 -4289_75977,115,4376_15159,Finglas Village,105217169,1,4376_7778022_100170,4376_147 -4289_75961,261,4376_1516,Clontarf Station,105322693,1,4376_7778022_104060,4376_18 -4289_75977,260,4376_15160,Finglas Village,105311537,1,4376_7778022_100330,4376_147 -4289_75977,261,4376_15161,Finglas Village,105321537,1,4376_7778022_100330,4376_147 -4289_75977,262,4376_15162,Finglas Village,105431537,1,4376_7778022_100330,4376_147 -4289_75977,263,4376_15163,Finglas Village,105541537,1,4376_7778022_100330,4376_147 -4289_75977,264,4376_15164,Finglas Village,105651537,1,4376_7778022_100330,4376_147 -4289_75977,265,4376_15165,Finglas Village,105811537,1,4376_7778022_100330,4376_147 -4289_75977,266,4376_15166,Finglas Village,105821537,1,4376_7778022_100330,4376_147 -4289_75977,267,4376_15167,Finglas Village,106051537,1,4376_7778022_100330,4376_147 -4289_75977,268,4376_15168,Finglas Village,106141537,1,4376_7778022_100330,4376_147 -4289_75977,269,4376_15169,Finglas Village,106231537,1,4376_7778022_100330,4376_147 -4289_75961,262,4376_1517,Clontarf Station,105432693,1,4376_7778022_104060,4376_18 -4289_75977,259,4376_15170,Finglas Village,105764391,1,4376_7778022_100190,4376_148 -4289_75977,270,4376_15171,Finglas Village,105277187,1,4376_7778022_100200,4376_147 -4289_75977,146,4376_15172,Finglas Village,105247187,1,4376_7778022_100200,4376_147 -4289_75977,271,4376_15173,Finglas Village,105237187,1,4376_7778022_100200,4376_147 -4289_75977,115,4376_15174,Finglas Village,105217187,1,4376_7778022_100200,4376_147 -4289_75977,260,4376_15175,Finglas Village,105311555,1,4376_7778022_100310,4376_147 -4289_75977,261,4376_15176,Finglas Village,105321555,1,4376_7778022_100310,4376_147 -4289_75977,262,4376_15177,Finglas Village,105431555,1,4376_7778022_100310,4376_147 -4289_75977,263,4376_15178,Finglas Village,105541555,1,4376_7778022_100310,4376_147 -4289_75977,264,4376_15179,Finglas Village,105651555,1,4376_7778022_100310,4376_147 -4289_75961,263,4376_1518,Clontarf Station,105542693,1,4376_7778022_104060,4376_18 -4289_75977,265,4376_15180,Finglas Village,105811555,1,4376_7778022_100310,4376_147 -4289_75977,266,4376_15181,Finglas Village,105821555,1,4376_7778022_100310,4376_147 -4289_75977,267,4376_15182,Finglas Village,106051555,1,4376_7778022_100310,4376_147 -4289_75977,268,4376_15183,Finglas Village,106141555,1,4376_7778022_100310,4376_147 -4289_75977,269,4376_15184,Finglas Village,106231555,1,4376_7778022_100310,4376_147 -4289_75977,259,4376_15185,Finglas Village,105764409,1,4376_7778022_100250,4376_148 -4289_75977,270,4376_15186,Finglas Village,105277219,1,4376_7778022_100220,4376_147 -4289_75977,146,4376_15187,Finglas Village,105247219,1,4376_7778022_100220,4376_147 -4289_75977,271,4376_15188,Finglas Village,105237219,1,4376_7778022_100220,4376_147 -4289_75977,115,4376_15189,Finglas Village,105217219,1,4376_7778022_100220,4376_147 -4289_75961,264,4376_1519,Clontarf Station,105652693,1,4376_7778022_104060,4376_18 -4289_75977,260,4376_15190,Finglas Village,105311577,1,4376_7778022_100240,4376_147 -4289_75977,261,4376_15191,Finglas Village,105321577,1,4376_7778022_100240,4376_147 -4289_75977,262,4376_15192,Finglas Village,105431577,1,4376_7778022_100240,4376_147 -4289_75977,263,4376_15193,Finglas Village,105541577,1,4376_7778022_100240,4376_147 -4289_75977,264,4376_15194,Finglas Village,105651577,1,4376_7778022_100240,4376_147 -4289_75977,265,4376_15195,Finglas Village,105811577,1,4376_7778022_100240,4376_147 -4289_75977,266,4376_15196,Finglas Village,105821577,1,4376_7778022_100240,4376_147 -4289_75977,267,4376_15197,Finglas Village,106051577,1,4376_7778022_100240,4376_147 -4289_75977,268,4376_15198,Finglas Village,106141577,1,4376_7778022_100240,4376_147 -4289_75977,269,4376_15199,Finglas Village,106231577,1,4376_7778022_100240,4376_147 -4289_75960,259,4376_152,Sutton Station,105764472,0,4376_7778022_103105,4376_2 -4289_75961,265,4376_1520,Clontarf Station,105812693,1,4376_7778022_104060,4376_18 -4289_75977,259,4376_15200,Finglas Village,105764429,1,4376_7778022_100210,4376_148 -4289_75977,270,4376_15201,Finglas Village,105277233,1,4376_7778022_100190,4376_147 -4289_75977,146,4376_15202,Finglas Village,105247233,1,4376_7778022_100190,4376_147 -4289_75977,271,4376_15203,Finglas Village,105237233,1,4376_7778022_100190,4376_147 -4289_75977,115,4376_15204,Finglas Village,105217233,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_15205,Finglas Village,105311599,1,4376_7778022_100260,4376_147 -4289_75977,261,4376_15206,Finglas Village,105321599,1,4376_7778022_100260,4376_147 -4289_75977,262,4376_15207,Finglas Village,105431599,1,4376_7778022_100260,4376_147 -4289_75977,263,4376_15208,Finglas Village,105541599,1,4376_7778022_100260,4376_147 -4289_75977,264,4376_15209,Finglas Village,105651599,1,4376_7778022_100260,4376_147 -4289_75961,266,4376_1521,Clontarf Station,105822693,1,4376_7778022_104060,4376_18 -4289_75977,265,4376_15210,Finglas Village,105811599,1,4376_7778022_100260,4376_147 -4289_75977,266,4376_15211,Finglas Village,105821599,1,4376_7778022_100260,4376_147 -4289_75977,267,4376_15212,Finglas Village,106051599,1,4376_7778022_100260,4376_147 -4289_75977,268,4376_15213,Finglas Village,106141599,1,4376_7778022_100260,4376_147 -4289_75977,269,4376_15214,Finglas Village,106231599,1,4376_7778022_100260,4376_147 -4289_75977,259,4376_15215,Finglas Village,105764451,1,4376_7778022_100160,4376_148 -4289_75977,260,4376_15216,Finglas Village,105311623,1,4376_7778022_100210,4376_147 -4289_75977,261,4376_15217,Finglas Village,105321623,1,4376_7778022_100210,4376_147 -4289_75977,262,4376_15218,Finglas Village,105431623,1,4376_7778022_100210,4376_147 -4289_75977,263,4376_15219,Finglas Village,105541623,1,4376_7778022_100210,4376_147 -4289_75961,267,4376_1522,Clontarf Station,106052693,1,4376_7778022_104060,4376_18 -4289_75977,264,4376_15220,Finglas Village,105651623,1,4376_7778022_100210,4376_147 -4289_75977,265,4376_15221,Finglas Village,105811623,1,4376_7778022_100210,4376_147 -4289_75977,266,4376_15222,Finglas Village,105821623,1,4376_7778022_100210,4376_147 -4289_75977,267,4376_15223,Finglas Village,106051623,1,4376_7778022_100210,4376_147 -4289_75977,268,4376_15224,Finglas Village,106141623,1,4376_7778022_100210,4376_147 -4289_75977,269,4376_15225,Finglas Village,106231623,1,4376_7778022_100210,4376_147 -4289_75977,259,4376_15226,Finglas Village,105764475,1,4376_7778022_100260,4376_148 -4289_75977,270,4376_15227,Finglas Village,105277261,1,4376_7778022_100160,4376_147 -4289_75977,146,4376_15228,Finglas Village,105247261,1,4376_7778022_100160,4376_147 -4289_75977,271,4376_15229,Finglas Village,105237261,1,4376_7778022_100160,4376_147 -4289_75961,268,4376_1523,Clontarf Station,106142693,1,4376_7778022_104060,4376_18 -4289_75977,115,4376_15230,Finglas Village,105217261,1,4376_7778022_100160,4376_147 -4289_75977,260,4376_15231,Finglas Village,105311643,1,4376_7778022_100230,4376_147 -4289_75977,261,4376_15232,Finglas Village,105321643,1,4376_7778022_100230,4376_147 -4289_75977,262,4376_15233,Finglas Village,105431643,1,4376_7778022_100230,4376_147 -4289_75977,263,4376_15234,Finglas Village,105541643,1,4376_7778022_100230,4376_147 -4289_75977,264,4376_15235,Finglas Village,105651643,1,4376_7778022_100230,4376_147 -4289_75977,265,4376_15236,Finglas Village,105811643,1,4376_7778022_100230,4376_147 -4289_75977,266,4376_15237,Finglas Village,105821643,1,4376_7778022_100230,4376_147 -4289_75977,267,4376_15238,Finglas Village,106051643,1,4376_7778022_100230,4376_147 -4289_75977,268,4376_15239,Finglas Village,106141643,1,4376_7778022_100230,4376_147 -4289_75961,269,4376_1524,Clontarf Station,106232693,1,4376_7778022_104060,4376_18 -4289_75977,269,4376_15240,Finglas Village,106231643,1,4376_7778022_100230,4376_147 -4289_75977,259,4376_15241,Finglas Village,105764493,1,4376_7778022_100180,4376_148 -4289_75977,270,4376_15242,Finglas Village,105277277,1,4376_7778022_100210,4376_147 -4289_75977,146,4376_15243,Finglas Village,105247277,1,4376_7778022_100210,4376_147 -4289_75977,271,4376_15244,Finglas Village,105237277,1,4376_7778022_100210,4376_147 -4289_75977,115,4376_15245,Finglas Village,105217277,1,4376_7778022_100210,4376_147 -4289_75977,260,4376_15246,Finglas Village,105311663,1,4376_7778022_100320,4376_147 -4289_75977,261,4376_15247,Finglas Village,105321663,1,4376_7778022_100320,4376_147 -4289_75977,262,4376_15248,Finglas Village,105431663,1,4376_7778022_100320,4376_147 -4289_75977,263,4376_15249,Finglas Village,105541663,1,4376_7778022_100320,4376_147 -4289_75961,259,4376_1525,Clontarf Station,105765395,1,4376_7778022_104172,4376_19 -4289_75977,264,4376_15250,Finglas Village,105651663,1,4376_7778022_100320,4376_147 -4289_75977,265,4376_15251,Finglas Village,105811663,1,4376_7778022_100320,4376_147 -4289_75977,266,4376_15252,Finglas Village,105821663,1,4376_7778022_100320,4376_147 -4289_75977,267,4376_15253,Finglas Village,106051663,1,4376_7778022_100320,4376_147 -4289_75977,268,4376_15254,Finglas Village,106141663,1,4376_7778022_100320,4376_147 -4289_75977,269,4376_15255,Finglas Village,106231663,1,4376_7778022_100320,4376_147 -4289_75977,259,4376_15256,Finglas Village,105764511,1,4376_7778022_100240,4376_148 -4289_75977,270,4376_15257,Finglas Village,105277309,1,4376_7778022_100230,4376_147 -4289_75977,146,4376_15258,Finglas Village,105247309,1,4376_7778022_100230,4376_147 -4289_75977,271,4376_15259,Finglas Village,105237309,1,4376_7778022_100230,4376_147 -4289_75961,270,4376_1526,Clontarf Station,105278071,1,4376_7778022_104130,4376_20 -4289_75977,115,4376_15260,Finglas Village,105217309,1,4376_7778022_100230,4376_147 -4289_75977,260,4376_15261,Finglas Village,105311687,1,4376_7778022_100300,4376_147 -4289_75977,261,4376_15262,Finglas Village,105321687,1,4376_7778022_100300,4376_147 -4289_75977,262,4376_15263,Finglas Village,105431687,1,4376_7778022_100300,4376_147 -4289_75977,263,4376_15264,Finglas Village,105541687,1,4376_7778022_100300,4376_147 -4289_75977,264,4376_15265,Finglas Village,105651687,1,4376_7778022_100300,4376_147 -4289_75977,265,4376_15266,Finglas Village,105811687,1,4376_7778022_100300,4376_147 -4289_75977,266,4376_15267,Finglas Village,105821687,1,4376_7778022_100300,4376_147 -4289_75977,267,4376_15268,Finglas Village,106051687,1,4376_7778022_100300,4376_147 -4289_75977,268,4376_15269,Finglas Village,106141687,1,4376_7778022_100300,4376_147 -4289_75961,146,4376_1527,Clontarf Station,105248071,1,4376_7778022_104130,4376_20 -4289_75977,269,4376_15270,Finglas Village,106231687,1,4376_7778022_100300,4376_147 -4289_75977,259,4376_15271,Finglas Village,105764535,1,4376_7778022_100200,4376_148 -4289_75977,270,4376_15272,Finglas Village,105277325,1,4376_7778022_100180,4376_147 -4289_75977,146,4376_15273,Finglas Village,105247325,1,4376_7778022_100180,4376_147 -4289_75977,271,4376_15274,Finglas Village,105237325,1,4376_7778022_100180,4376_147 -4289_75977,115,4376_15275,Finglas Village,105217325,1,4376_7778022_100180,4376_147 -4289_75977,260,4376_15276,Finglas Village,105311707,1,4376_7778022_100250,4376_147 -4289_75977,261,4376_15277,Finglas Village,105321707,1,4376_7778022_100250,4376_147 -4289_75977,262,4376_15278,Finglas Village,105431707,1,4376_7778022_100250,4376_147 -4289_75977,263,4376_15279,Finglas Village,105541707,1,4376_7778022_100250,4376_147 -4289_75961,271,4376_1528,Clontarf Station,105238071,1,4376_7778022_104130,4376_20 -4289_75977,264,4376_15280,Finglas Village,105651707,1,4376_7778022_100250,4376_147 -4289_75977,265,4376_15281,Finglas Village,105811707,1,4376_7778022_100250,4376_147 -4289_75977,266,4376_15282,Finglas Village,105821707,1,4376_7778022_100250,4376_147 -4289_75977,267,4376_15283,Finglas Village,106051707,1,4376_7778022_100250,4376_147 -4289_75977,268,4376_15284,Finglas Village,106141707,1,4376_7778022_100250,4376_147 -4289_75977,269,4376_15285,Finglas Village,106231707,1,4376_7778022_100250,4376_147 -4289_75977,259,4376_15286,Finglas Village,105764553,1,4376_7778022_100170,4376_148 -4289_75977,260,4376_15287,Finglas Village,105311731,1,4376_7778022_100200,4376_147 -4289_75977,261,4376_15288,Finglas Village,105321731,1,4376_7778022_100200,4376_147 -4289_75977,262,4376_15289,Finglas Village,105431731,1,4376_7778022_100200,4376_147 -4289_75961,115,4376_1529,Clontarf Station,105218071,1,4376_7778022_104130,4376_20 -4289_75977,263,4376_15290,Finglas Village,105541731,1,4376_7778022_100200,4376_147 -4289_75977,264,4376_15291,Finglas Village,105651731,1,4376_7778022_100200,4376_147 -4289_75977,265,4376_15292,Finglas Village,105811731,1,4376_7778022_100200,4376_147 -4289_75977,266,4376_15293,Finglas Village,105821731,1,4376_7778022_100200,4376_147 -4289_75977,267,4376_15294,Finglas Village,106051731,1,4376_7778022_100200,4376_147 -4289_75977,268,4376_15295,Finglas Village,106141731,1,4376_7778022_100200,4376_147 -4289_75977,269,4376_15296,Finglas Village,106231731,1,4376_7778022_100200,4376_147 -4289_75977,259,4376_15297,Finglas Village,105764577,1,4376_7778022_100220,4376_148 -4289_75977,270,4376_15298,Finglas Village,105277353,1,4376_7778022_100170,4376_147 -4289_75977,146,4376_15299,Finglas Village,105247353,1,4376_7778022_100170,4376_147 -4289_75960,270,4376_153,Sutton Station,105277258,0,4376_7778022_103502,4376_1 -4289_75961,260,4376_1530,Clontarf Station,105312791,1,4376_7778022_104140,4376_18 -4289_75977,271,4376_15300,Finglas Village,105237353,1,4376_7778022_100170,4376_147 -4289_75977,115,4376_15301,Finglas Village,105217353,1,4376_7778022_100170,4376_147 -4289_75977,260,4376_15302,Finglas Village,105311751,1,4376_7778022_100220,4376_147 -4289_75977,261,4376_15303,Finglas Village,105321751,1,4376_7778022_100220,4376_147 -4289_75977,262,4376_15304,Finglas Village,105431751,1,4376_7778022_100220,4376_147 -4289_75977,263,4376_15305,Finglas Village,105541751,1,4376_7778022_100220,4376_147 -4289_75977,264,4376_15306,Finglas Village,105651751,1,4376_7778022_100220,4376_147 -4289_75977,265,4376_15307,Finglas Village,105811751,1,4376_7778022_100220,4376_147 -4289_75977,266,4376_15308,Finglas Village,105821751,1,4376_7778022_100220,4376_147 -4289_75977,267,4376_15309,Finglas Village,106051751,1,4376_7778022_100220,4376_147 -4289_75961,261,4376_1531,Clontarf Station,105322791,1,4376_7778022_104140,4376_18 -4289_75977,268,4376_15310,Finglas Village,106141751,1,4376_7778022_100220,4376_147 -4289_75977,269,4376_15311,Finglas Village,106231751,1,4376_7778022_100220,4376_147 -4289_75977,259,4376_15312,Finglas Village,105764595,1,4376_7778022_100230,4376_148 -4289_75977,270,4376_15313,Finglas Village,105277371,1,4376_7778022_100200,4376_147 -4289_75977,146,4376_15314,Finglas Village,105247371,1,4376_7778022_100200,4376_147 -4289_75977,271,4376_15315,Finglas Village,105237371,1,4376_7778022_100200,4376_147 -4289_75977,115,4376_15316,Finglas Village,105217371,1,4376_7778022_100200,4376_147 -4289_75977,260,4376_15317,Finglas Village,105311771,1,4376_7778022_100290,4376_147 -4289_75977,261,4376_15318,Finglas Village,105321771,1,4376_7778022_100290,4376_147 -4289_75977,262,4376_15319,Finglas Village,105431771,1,4376_7778022_100290,4376_147 -4289_75961,262,4376_1532,Clontarf Station,105432791,1,4376_7778022_104140,4376_18 -4289_75977,263,4376_15320,Finglas Village,105541771,1,4376_7778022_100290,4376_147 -4289_75977,264,4376_15321,Finglas Village,105651771,1,4376_7778022_100290,4376_147 -4289_75977,265,4376_15322,Finglas Village,105811771,1,4376_7778022_100290,4376_147 -4289_75977,266,4376_15323,Finglas Village,105821771,1,4376_7778022_100290,4376_147 -4289_75977,267,4376_15324,Finglas Village,106051771,1,4376_7778022_100290,4376_147 -4289_75977,268,4376_15325,Finglas Village,106141771,1,4376_7778022_100290,4376_147 -4289_75977,269,4376_15326,Finglas Village,106231771,1,4376_7778022_100290,4376_147 -4289_75977,259,4376_15327,Finglas Village,105764615,1,4376_7778022_100190,4376_148 -4289_75977,270,4376_15328,Finglas Village,105277399,1,4376_7778022_100220,4376_147 -4289_75977,146,4376_15329,Finglas Village,105247399,1,4376_7778022_100220,4376_147 -4289_75961,263,4376_1533,Clontarf Station,105542791,1,4376_7778022_104140,4376_18 -4289_75977,271,4376_15330,Finglas Village,105237399,1,4376_7778022_100220,4376_147 -4289_75977,115,4376_15331,Finglas Village,105217399,1,4376_7778022_100220,4376_147 -4289_75977,260,4376_15332,Finglas Village,105311795,1,4376_7778022_100330,4376_147 -4289_75977,261,4376_15333,Finglas Village,105321795,1,4376_7778022_100330,4376_147 -4289_75977,262,4376_15334,Finglas Village,105431795,1,4376_7778022_100330,4376_147 -4289_75977,263,4376_15335,Finglas Village,105541795,1,4376_7778022_100330,4376_147 -4289_75977,264,4376_15336,Finglas Village,105651795,1,4376_7778022_100330,4376_147 -4289_75977,265,4376_15337,Finglas Village,105811795,1,4376_7778022_100330,4376_147 -4289_75977,266,4376_15338,Finglas Village,105821795,1,4376_7778022_100330,4376_147 -4289_75977,267,4376_15339,Finglas Village,106051795,1,4376_7778022_100330,4376_147 -4289_75961,264,4376_1534,Clontarf Station,105652791,1,4376_7778022_104140,4376_18 -4289_75977,268,4376_15340,Finglas Village,106141795,1,4376_7778022_100330,4376_147 -4289_75977,269,4376_15341,Finglas Village,106231795,1,4376_7778022_100330,4376_147 -4289_75977,259,4376_15342,Finglas Village,105764637,1,4376_7778022_100250,4376_148 -4289_75977,270,4376_15343,Finglas Village,105277417,1,4376_7778022_100190,4376_147 -4289_75977,146,4376_15344,Finglas Village,105247417,1,4376_7778022_100190,4376_147 -4289_75977,271,4376_15345,Finglas Village,105237417,1,4376_7778022_100190,4376_147 -4289_75977,115,4376_15346,Finglas Village,105217417,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_15347,Finglas Village,105311817,1,4376_7778022_100310,4376_147 -4289_75977,261,4376_15348,Finglas Village,105321817,1,4376_7778022_100310,4376_147 -4289_75977,262,4376_15349,Finglas Village,105431817,1,4376_7778022_100310,4376_147 -4289_75961,265,4376_1535,Clontarf Station,105812791,1,4376_7778022_104140,4376_18 -4289_75977,263,4376_15350,Finglas Village,105541817,1,4376_7778022_100310,4376_147 -4289_75977,264,4376_15351,Finglas Village,105651817,1,4376_7778022_100310,4376_147 -4289_75977,265,4376_15352,Finglas Village,105811817,1,4376_7778022_100310,4376_147 -4289_75977,266,4376_15353,Finglas Village,105821817,1,4376_7778022_100310,4376_147 -4289_75977,267,4376_15354,Finglas Village,106051817,1,4376_7778022_100310,4376_147 -4289_75977,268,4376_15355,Finglas Village,106141817,1,4376_7778022_100310,4376_147 -4289_75977,269,4376_15356,Finglas Village,106231817,1,4376_7778022_100310,4376_147 -4289_75977,259,4376_15357,Finglas Village,105764655,1,4376_7778022_100270,4376_148 -4289_75977,260,4376_15358,Finglas Village,105311841,1,4376_7778022_100240,4376_147 -4289_75977,261,4376_15359,Finglas Village,105321841,1,4376_7778022_100240,4376_147 -4289_75961,266,4376_1536,Clontarf Station,105822791,1,4376_7778022_104140,4376_18 -4289_75977,262,4376_15360,Finglas Village,105431841,1,4376_7778022_100240,4376_147 -4289_75977,263,4376_15361,Finglas Village,105541841,1,4376_7778022_100240,4376_147 -4289_75977,264,4376_15362,Finglas Village,105651841,1,4376_7778022_100240,4376_147 -4289_75977,265,4376_15363,Finglas Village,105811841,1,4376_7778022_100240,4376_147 -4289_75977,266,4376_15364,Finglas Village,105821841,1,4376_7778022_100240,4376_147 -4289_75977,267,4376_15365,Finglas Village,106051841,1,4376_7778022_100240,4376_147 -4289_75977,268,4376_15366,Finglas Village,106141841,1,4376_7778022_100240,4376_147 -4289_75977,269,4376_15367,Finglas Village,106231841,1,4376_7778022_100240,4376_147 -4289_75977,259,4376_15368,Finglas Village,105764679,1,4376_7778022_100210,4376_148 -4289_75977,270,4376_15369,Finglas Village,105277441,1,4376_7778022_100160,4376_147 -4289_75961,267,4376_1537,Clontarf Station,106052791,1,4376_7778022_104140,4376_18 -4289_75977,146,4376_15370,Finglas Village,105247441,1,4376_7778022_100160,4376_147 -4289_75977,271,4376_15371,Finglas Village,105237441,1,4376_7778022_100160,4376_147 -4289_75977,115,4376_15372,Finglas Village,105217441,1,4376_7778022_100160,4376_147 -4289_75977,260,4376_15373,Finglas Village,105311869,1,4376_7778022_100260,4376_147 -4289_75977,261,4376_15374,Finglas Village,105321869,1,4376_7778022_100260,4376_147 -4289_75977,262,4376_15375,Finglas Village,105431869,1,4376_7778022_100260,4376_147 -4289_75977,263,4376_15376,Finglas Village,105541869,1,4376_7778022_100260,4376_147 -4289_75977,264,4376_15377,Finglas Village,105651869,1,4376_7778022_100260,4376_147 -4289_75977,265,4376_15378,Finglas Village,105811869,1,4376_7778022_100260,4376_147 -4289_75977,266,4376_15379,Finglas Village,105821869,1,4376_7778022_100260,4376_147 -4289_75961,268,4376_1538,Clontarf Station,106142791,1,4376_7778022_104140,4376_18 -4289_75977,267,4376_15380,Finglas Village,106051869,1,4376_7778022_100260,4376_147 -4289_75977,268,4376_15381,Finglas Village,106141869,1,4376_7778022_100260,4376_147 -4289_75977,269,4376_15382,Finglas Village,106231869,1,4376_7778022_100260,4376_147 -4289_75977,259,4376_15383,Finglas Village,105764699,1,4376_7778022_100160,4376_148 -4289_75977,270,4376_15384,Finglas Village,105277463,1,4376_7778022_100210,4376_147 -4289_75977,146,4376_15385,Finglas Village,105247463,1,4376_7778022_100210,4376_147 -4289_75977,271,4376_15386,Finglas Village,105237463,1,4376_7778022_100210,4376_147 -4289_75977,115,4376_15387,Finglas Village,105217463,1,4376_7778022_100210,4376_147 -4289_75977,260,4376_15388,Finglas Village,105311887,1,4376_7778022_100210,4376_147 -4289_75977,261,4376_15389,Finglas Village,105321887,1,4376_7778022_100210,4376_147 -4289_75961,269,4376_1539,Clontarf Station,106232791,1,4376_7778022_104140,4376_18 -4289_75977,262,4376_15390,Finglas Village,105431887,1,4376_7778022_100210,4376_147 -4289_75977,263,4376_15391,Finglas Village,105541887,1,4376_7778022_100210,4376_147 -4289_75977,264,4376_15392,Finglas Village,105651887,1,4376_7778022_100210,4376_147 -4289_75977,265,4376_15393,Finglas Village,105811887,1,4376_7778022_100210,4376_147 -4289_75977,266,4376_15394,Finglas Village,105821887,1,4376_7778022_100210,4376_147 -4289_75977,267,4376_15395,Finglas Village,106051887,1,4376_7778022_100210,4376_147 -4289_75977,268,4376_15396,Finglas Village,106141887,1,4376_7778022_100210,4376_147 -4289_75977,269,4376_15397,Finglas Village,106231887,1,4376_7778022_100210,4376_147 -4289_75977,259,4376_15398,Finglas Village,105764717,1,4376_7778022_100260,4376_148 -4289_75977,270,4376_15399,Finglas Village,105277489,1,4376_7778022_100230,4376_147 -4289_75960,146,4376_154,Sutton Station,105247258,0,4376_7778022_103502,4376_1 -4289_75961,259,4376_1540,Clontarf Station,105765483,1,4376_7778022_104080,4376_19 -4289_75977,146,4376_15400,Finglas Village,105247489,1,4376_7778022_100230,4376_147 -4289_75977,271,4376_15401,Finglas Village,105237489,1,4376_7778022_100230,4376_147 -4289_75977,115,4376_15402,Finglas Village,105217489,1,4376_7778022_100230,4376_147 -4289_75977,260,4376_15403,Finglas Village,105311911,1,4376_7778022_100230,4376_147 -4289_75977,261,4376_15404,Finglas Village,105321911,1,4376_7778022_100230,4376_147 -4289_75977,262,4376_15405,Finglas Village,105431911,1,4376_7778022_100230,4376_147 -4289_75977,263,4376_15406,Finglas Village,105541911,1,4376_7778022_100230,4376_147 -4289_75977,264,4376_15407,Finglas Village,105651911,1,4376_7778022_100230,4376_147 -4289_75977,265,4376_15408,Finglas Village,105811911,1,4376_7778022_100230,4376_147 -4289_75977,266,4376_15409,Finglas Village,105821911,1,4376_7778022_100230,4376_147 -4289_75961,270,4376_1541,Clontarf Station,105278151,1,4376_7778022_104100,4376_20 -4289_75977,267,4376_15410,Finglas Village,106051911,1,4376_7778022_100230,4376_147 -4289_75977,268,4376_15411,Finglas Village,106141911,1,4376_7778022_100230,4376_147 -4289_75977,269,4376_15412,Finglas Village,106231911,1,4376_7778022_100230,4376_147 -4289_75977,259,4376_15413,Finglas Village,105764739,1,4376_7778022_100180,4376_148 -4289_75977,270,4376_15414,Finglas Village,105277507,1,4376_7778022_100180,4376_147 -4289_75977,146,4376_15415,Finglas Village,105247507,1,4376_7778022_100180,4376_147 -4289_75977,271,4376_15416,Finglas Village,105237507,1,4376_7778022_100180,4376_147 -4289_75977,115,4376_15417,Finglas Village,105217507,1,4376_7778022_100180,4376_147 -4289_75977,260,4376_15418,Finglas Village,105311929,1,4376_7778022_100320,4376_147 -4289_75977,261,4376_15419,Finglas Village,105321929,1,4376_7778022_100320,4376_147 -4289_75961,146,4376_1542,Clontarf Station,105248151,1,4376_7778022_104100,4376_20 -4289_75977,262,4376_15420,Finglas Village,105431929,1,4376_7778022_100320,4376_147 -4289_75977,263,4376_15421,Finglas Village,105541929,1,4376_7778022_100320,4376_147 -4289_75977,264,4376_15422,Finglas Village,105651929,1,4376_7778022_100320,4376_147 -4289_75977,265,4376_15423,Finglas Village,105811929,1,4376_7778022_100320,4376_147 -4289_75977,266,4376_15424,Finglas Village,105821929,1,4376_7778022_100320,4376_147 -4289_75977,267,4376_15425,Finglas Village,106051929,1,4376_7778022_100320,4376_147 -4289_75977,268,4376_15426,Finglas Village,106141929,1,4376_7778022_100320,4376_147 -4289_75977,269,4376_15427,Finglas Village,106231929,1,4376_7778022_100320,4376_147 -4289_75977,259,4376_15428,Finglas Village,105764757,1,4376_7778022_100240,4376_148 -4289_75977,260,4376_15429,Finglas Village,105311955,1,4376_7778022_100300,4376_147 -4289_75961,271,4376_1543,Clontarf Station,105238151,1,4376_7778022_104100,4376_20 -4289_75977,261,4376_15430,Finglas Village,105321955,1,4376_7778022_100300,4376_147 -4289_75977,262,4376_15431,Finglas Village,105431955,1,4376_7778022_100300,4376_147 -4289_75977,263,4376_15432,Finglas Village,105541955,1,4376_7778022_100300,4376_147 -4289_75977,264,4376_15433,Finglas Village,105651955,1,4376_7778022_100300,4376_147 -4289_75977,265,4376_15434,Finglas Village,105811955,1,4376_7778022_100300,4376_147 -4289_75977,266,4376_15435,Finglas Village,105821955,1,4376_7778022_100300,4376_147 -4289_75977,267,4376_15436,Finglas Village,106051955,1,4376_7778022_100300,4376_147 -4289_75977,268,4376_15437,Finglas Village,106141955,1,4376_7778022_100300,4376_147 -4289_75977,269,4376_15438,Finglas Village,106231955,1,4376_7778022_100300,4376_147 -4289_75977,259,4376_15439,Finglas Village,105764783,1,4376_7778022_100200,4376_148 -4289_75961,115,4376_1544,Clontarf Station,105218151,1,4376_7778022_104100,4376_20 -4289_75977,270,4376_15440,Finglas Village,105277533,1,4376_7778022_100170,4376_147 -4289_75977,146,4376_15441,Finglas Village,105247533,1,4376_7778022_100170,4376_147 -4289_75977,271,4376_15442,Finglas Village,105237533,1,4376_7778022_100170,4376_147 -4289_75977,115,4376_15443,Finglas Village,105217533,1,4376_7778022_100170,4376_147 -4289_75977,260,4376_15444,Finglas Village,105311975,1,4376_7778022_100272,4376_147 -4289_75977,261,4376_15445,Finglas Village,105321975,1,4376_7778022_100272,4376_147 -4289_75977,262,4376_15446,Finglas Village,105431975,1,4376_7778022_100272,4376_147 -4289_75977,263,4376_15447,Finglas Village,105541975,1,4376_7778022_100272,4376_147 -4289_75977,264,4376_15448,Finglas Village,105651975,1,4376_7778022_100272,4376_147 -4289_75977,265,4376_15449,Finglas Village,105811975,1,4376_7778022_100272,4376_147 -4289_75962,260,4376_1545,Dalkey,105311118,0,4376_7778022_104030,4376_21 -4289_75977,266,4376_15450,Finglas Village,105821975,1,4376_7778022_100272,4376_147 -4289_75977,267,4376_15451,Finglas Village,106051975,1,4376_7778022_100272,4376_147 -4289_75977,268,4376_15452,Finglas Village,106141975,1,4376_7778022_100272,4376_147 -4289_75977,269,4376_15453,Finglas Village,106231975,1,4376_7778022_100272,4376_147 -4289_75977,259,4376_15454,Finglas Village,105764801,1,4376_7778022_100170,4376_148 -4289_75977,270,4376_15455,Finglas Village,105277555,1,4376_7778022_100200,4376_147 -4289_75977,146,4376_15456,Finglas Village,105247555,1,4376_7778022_100200,4376_147 -4289_75977,271,4376_15457,Finglas Village,105237555,1,4376_7778022_100200,4376_147 -4289_75977,115,4376_15458,Finglas Village,105217555,1,4376_7778022_100200,4376_147 -4289_75977,260,4376_15459,Finglas Village,105311995,1,4376_7778022_100250,4376_147 -4289_75962,261,4376_1546,Dalkey,105321118,0,4376_7778022_104030,4376_21 -4289_75977,261,4376_15460,Finglas Village,105321995,1,4376_7778022_100250,4376_147 -4289_75977,262,4376_15461,Finglas Village,105431995,1,4376_7778022_100250,4376_147 -4289_75977,263,4376_15462,Finglas Village,105541995,1,4376_7778022_100250,4376_147 -4289_75977,264,4376_15463,Finglas Village,105651995,1,4376_7778022_100250,4376_147 -4289_75977,265,4376_15464,Finglas Village,105811995,1,4376_7778022_100250,4376_147 -4289_75977,266,4376_15465,Finglas Village,105821995,1,4376_7778022_100250,4376_147 -4289_75977,267,4376_15466,Finglas Village,106051995,1,4376_7778022_100250,4376_147 -4289_75977,268,4376_15467,Finglas Village,106141995,1,4376_7778022_100250,4376_147 -4289_75977,269,4376_15468,Finglas Village,106231995,1,4376_7778022_100250,4376_147 -4289_75977,259,4376_15469,Finglas Village,105764817,1,4376_7778022_100220,4376_148 -4289_75962,262,4376_1547,Dalkey,105431118,0,4376_7778022_104030,4376_21 -4289_75977,270,4376_15470,Finglas Village,105277579,1,4376_7778022_100220,4376_147 -4289_75977,146,4376_15471,Finglas Village,105247579,1,4376_7778022_100220,4376_147 -4289_75977,271,4376_15472,Finglas Village,105237579,1,4376_7778022_100220,4376_147 -4289_75977,115,4376_15473,Finglas Village,105217579,1,4376_7778022_100220,4376_147 -4289_75977,260,4376_15474,Finglas Village,105312021,1,4376_7778022_100200,4376_147 -4289_75977,261,4376_15475,Finglas Village,105322021,1,4376_7778022_100200,4376_147 -4289_75977,262,4376_15476,Finglas Village,105432021,1,4376_7778022_100200,4376_147 -4289_75977,263,4376_15477,Finglas Village,105542021,1,4376_7778022_100200,4376_147 -4289_75977,264,4376_15478,Finglas Village,105652021,1,4376_7778022_100200,4376_147 -4289_75977,265,4376_15479,Finglas Village,105812021,1,4376_7778022_100200,4376_147 -4289_75962,263,4376_1548,Dalkey,105541118,0,4376_7778022_104030,4376_21 -4289_75977,266,4376_15480,Finglas Village,105822021,1,4376_7778022_100200,4376_147 -4289_75977,267,4376_15481,Finglas Village,106052021,1,4376_7778022_100200,4376_147 -4289_75977,268,4376_15482,Finglas Village,106142021,1,4376_7778022_100200,4376_147 -4289_75977,269,4376_15483,Finglas Village,106232021,1,4376_7778022_100200,4376_147 -4289_75977,259,4376_15484,Finglas Village,105764841,1,4376_7778022_100230,4376_148 -4289_75977,270,4376_15485,Finglas Village,105277597,1,4376_7778022_100240,4376_147 -4289_75977,146,4376_15486,Finglas Village,105247597,1,4376_7778022_100240,4376_147 -4289_75977,271,4376_15487,Finglas Village,105237597,1,4376_7778022_100240,4376_147 -4289_75977,115,4376_15488,Finglas Village,105217597,1,4376_7778022_100240,4376_147 -4289_75977,260,4376_15489,Finglas Village,105312045,1,4376_7778022_100220,4376_147 -4289_75962,264,4376_1549,Dalkey,105651118,0,4376_7778022_104030,4376_21 -4289_75977,261,4376_15490,Finglas Village,105322045,1,4376_7778022_100220,4376_147 -4289_75977,262,4376_15491,Finglas Village,105432045,1,4376_7778022_100220,4376_147 -4289_75977,263,4376_15492,Finglas Village,105542045,1,4376_7778022_100220,4376_147 -4289_75977,264,4376_15493,Finglas Village,105652045,1,4376_7778022_100220,4376_147 -4289_75977,265,4376_15494,Finglas Village,105812045,1,4376_7778022_100220,4376_147 -4289_75977,266,4376_15495,Finglas Village,105822045,1,4376_7778022_100220,4376_147 -4289_75977,267,4376_15496,Finglas Village,106052045,1,4376_7778022_100220,4376_147 -4289_75977,268,4376_15497,Finglas Village,106142045,1,4376_7778022_100220,4376_147 -4289_75977,269,4376_15498,Finglas Village,106232045,1,4376_7778022_100220,4376_147 -4289_75977,259,4376_15499,Finglas Village,105764861,1,4376_7778022_100190,4376_148 -4289_75960,271,4376_155,Sutton Station,105237258,0,4376_7778022_103502,4376_1 -4289_75962,265,4376_1550,Dalkey,105811118,0,4376_7778022_104030,4376_21 -4289_75977,260,4376_15500,Finglas Village,105312071,1,4376_7778022_100290,4376_147 -4289_75977,261,4376_15501,Finglas Village,105322071,1,4376_7778022_100290,4376_147 -4289_75977,262,4376_15502,Finglas Village,105432071,1,4376_7778022_100290,4376_147 -4289_75977,263,4376_15503,Finglas Village,105542071,1,4376_7778022_100290,4376_147 -4289_75977,264,4376_15504,Finglas Village,105652071,1,4376_7778022_100290,4376_147 -4289_75977,265,4376_15505,Finglas Village,105812071,1,4376_7778022_100290,4376_147 -4289_75977,266,4376_15506,Finglas Village,105822071,1,4376_7778022_100290,4376_147 -4289_75977,267,4376_15507,Finglas Village,106052071,1,4376_7778022_100290,4376_147 -4289_75977,268,4376_15508,Finglas Village,106142071,1,4376_7778022_100290,4376_147 -4289_75977,269,4376_15509,Finglas Village,106232071,1,4376_7778022_100290,4376_147 -4289_75962,266,4376_1551,Dalkey,105821118,0,4376_7778022_104030,4376_21 -4289_75977,259,4376_15510,Finglas Village,105764885,1,4376_7778022_100250,4376_148 -4289_75977,270,4376_15511,Finglas Village,105277625,1,4376_7778022_100190,4376_147 -4289_75977,146,4376_15512,Finglas Village,105247625,1,4376_7778022_100190,4376_147 -4289_75977,271,4376_15513,Finglas Village,105237625,1,4376_7778022_100190,4376_147 -4289_75977,115,4376_15514,Finglas Village,105217625,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_15515,Finglas Village,105312095,1,4376_7778022_100330,4376_147 -4289_75977,261,4376_15516,Finglas Village,105322095,1,4376_7778022_100330,4376_147 -4289_75977,262,4376_15517,Finglas Village,105432095,1,4376_7778022_100330,4376_147 -4289_75977,263,4376_15518,Finglas Village,105542095,1,4376_7778022_100330,4376_147 -4289_75977,264,4376_15519,Finglas Village,105652095,1,4376_7778022_100330,4376_147 -4289_75962,267,4376_1552,Dalkey,106051118,0,4376_7778022_104030,4376_21 -4289_75977,265,4376_15520,Finglas Village,105812095,1,4376_7778022_100330,4376_147 -4289_75977,266,4376_15521,Finglas Village,105822095,1,4376_7778022_100330,4376_147 -4289_75977,267,4376_15522,Finglas Village,106052095,1,4376_7778022_100330,4376_147 -4289_75977,268,4376_15523,Finglas Village,106142095,1,4376_7778022_100330,4376_147 -4289_75977,269,4376_15524,Finglas Village,106232095,1,4376_7778022_100330,4376_147 -4289_75977,259,4376_15525,Finglas Village,105764903,1,4376_7778022_100270,4376_148 -4289_75977,270,4376_15526,Finglas Village,105277643,1,4376_7778022_100160,4376_147 -4289_75977,146,4376_15527,Finglas Village,105247643,1,4376_7778022_100160,4376_147 -4289_75977,271,4376_15528,Finglas Village,105237643,1,4376_7778022_100160,4376_147 -4289_75977,115,4376_15529,Finglas Village,105217643,1,4376_7778022_100160,4376_147 -4289_75962,268,4376_1553,Dalkey,106141118,0,4376_7778022_104030,4376_21 -4289_75977,260,4376_15530,Finglas Village,105312113,1,4376_7778022_100310,4376_147 -4289_75977,261,4376_15531,Finglas Village,105322113,1,4376_7778022_100310,4376_147 -4289_75977,262,4376_15532,Finglas Village,105432113,1,4376_7778022_100310,4376_147 -4289_75977,263,4376_15533,Finglas Village,105542113,1,4376_7778022_100310,4376_147 -4289_75977,264,4376_15534,Finglas Village,105652113,1,4376_7778022_100310,4376_147 -4289_75977,265,4376_15535,Finglas Village,105812113,1,4376_7778022_100310,4376_147 -4289_75977,266,4376_15536,Finglas Village,105822113,1,4376_7778022_100310,4376_147 -4289_75977,267,4376_15537,Finglas Village,106052113,1,4376_7778022_100310,4376_147 -4289_75977,268,4376_15538,Finglas Village,106142113,1,4376_7778022_100310,4376_147 -4289_75977,269,4376_15539,Finglas Village,106232113,1,4376_7778022_100310,4376_147 -4289_75962,269,4376_1554,Dalkey,106231118,0,4376_7778022_104030,4376_21 -4289_75977,259,4376_15540,Finglas Village,105764921,1,4376_7778022_100210,4376_148 -4289_75977,270,4376_15541,Finglas Village,105277673,1,4376_7778022_100230,4376_147 -4289_75977,146,4376_15542,Finglas Village,105247673,1,4376_7778022_100230,4376_147 -4289_75977,271,4376_15543,Finglas Village,105237673,1,4376_7778022_100230,4376_147 -4289_75977,115,4376_15544,Finglas Village,105217673,1,4376_7778022_100230,4376_147 -4289_75977,260,4376_15545,Finglas Village,105312151,1,4376_7778022_100240,4376_147 -4289_75977,261,4376_15546,Finglas Village,105322151,1,4376_7778022_100240,4376_147 -4289_75977,262,4376_15547,Finglas Village,105432151,1,4376_7778022_100240,4376_147 -4289_75977,263,4376_15548,Finglas Village,105542151,1,4376_7778022_100240,4376_147 -4289_75977,264,4376_15549,Finglas Village,105652151,1,4376_7778022_100240,4376_147 -4289_75962,259,4376_1555,Dalkey,105764072,0,4376_7778022_104061,4376_21 -4289_75977,265,4376_15550,Finglas Village,105812151,1,4376_7778022_100240,4376_147 -4289_75977,266,4376_15551,Finglas Village,105822151,1,4376_7778022_100240,4376_147 -4289_75977,267,4376_15552,Finglas Village,106052151,1,4376_7778022_100240,4376_147 -4289_75977,268,4376_15553,Finglas Village,106142151,1,4376_7778022_100240,4376_147 -4289_75977,269,4376_15554,Finglas Village,106232151,1,4376_7778022_100240,4376_147 -4289_75977,259,4376_15555,Finglas Village,105764945,1,4376_7778022_100160,4376_148 -4289_75977,270,4376_15556,Finglas Village,105277689,1,4376_7778022_100180,4376_147 -4289_75977,146,4376_15557,Finglas Village,105247689,1,4376_7778022_100180,4376_147 -4289_75977,271,4376_15558,Finglas Village,105237689,1,4376_7778022_100180,4376_147 -4289_75977,115,4376_15559,Finglas Village,105217689,1,4376_7778022_100180,4376_147 -4289_75962,260,4376_1556,Dalkey,105311216,0,4376_7778022_104071,4376_21 -4289_75977,260,4376_15560,Finglas Village,105312179,1,4376_7778022_100282,4376_147 -4289_75977,261,4376_15561,Finglas Village,105322179,1,4376_7778022_100282,4376_147 -4289_75977,262,4376_15562,Finglas Village,105432179,1,4376_7778022_100282,4376_147 -4289_75977,263,4376_15563,Finglas Village,105542179,1,4376_7778022_100282,4376_147 -4289_75977,264,4376_15564,Finglas Village,105652179,1,4376_7778022_100282,4376_147 -4289_75977,265,4376_15565,Finglas Village,105812179,1,4376_7778022_100282,4376_147 -4289_75977,266,4376_15566,Finglas Village,105822179,1,4376_7778022_100282,4376_147 -4289_75977,267,4376_15567,Finglas Village,106052179,1,4376_7778022_100282,4376_147 -4289_75977,268,4376_15568,Finglas Village,106142179,1,4376_7778022_100282,4376_147 -4289_75977,269,4376_15569,Finglas Village,106232179,1,4376_7778022_100282,4376_147 -4289_75962,261,4376_1557,Dalkey,105321216,0,4376_7778022_104071,4376_21 -4289_75977,259,4376_15570,Finglas Village,105764961,1,4376_7778022_100260,4376_148 -4289_75977,260,4376_15571,Finglas Village,105312211,1,4376_7778022_100260,4376_147 -4289_75977,261,4376_15572,Finglas Village,105322211,1,4376_7778022_100260,4376_147 -4289_75977,262,4376_15573,Finglas Village,105432211,1,4376_7778022_100260,4376_147 -4289_75977,263,4376_15574,Finglas Village,105542211,1,4376_7778022_100260,4376_147 -4289_75977,264,4376_15575,Finglas Village,105652211,1,4376_7778022_100260,4376_147 -4289_75977,265,4376_15576,Finglas Village,105812211,1,4376_7778022_100260,4376_147 -4289_75977,266,4376_15577,Finglas Village,105822211,1,4376_7778022_100260,4376_147 -4289_75977,267,4376_15578,Finglas Village,106052211,1,4376_7778022_100260,4376_147 -4289_75977,268,4376_15579,Finglas Village,106142211,1,4376_7778022_100260,4376_147 -4289_75962,262,4376_1558,Dalkey,105431216,0,4376_7778022_104071,4376_21 -4289_75977,269,4376_15580,Finglas Village,106232211,1,4376_7778022_100260,4376_147 -4289_75977,259,4376_15581,Finglas Village,105764987,1,4376_7778022_100180,4376_148 -4289_75977,270,4376_15582,Finglas Village,105277715,1,4376_7778022_100170,4376_147 -4289_75977,146,4376_15583,Finglas Village,105247715,1,4376_7778022_100170,4376_147 -4289_75977,271,4376_15584,Finglas Village,105237715,1,4376_7778022_100170,4376_147 -4289_75977,115,4376_15585,Finglas Village,105217715,1,4376_7778022_100170,4376_147 -4289_75977,260,4376_15586,Finglas Village,105312257,1,4376_7778022_100210,4376_147 -4289_75977,261,4376_15587,Finglas Village,105322257,1,4376_7778022_100210,4376_147 -4289_75977,262,4376_15588,Finglas Village,105432257,1,4376_7778022_100210,4376_147 -4289_75977,263,4376_15589,Finglas Village,105542257,1,4376_7778022_100210,4376_147 -4289_75962,263,4376_1559,Dalkey,105541216,0,4376_7778022_104071,4376_21 -4289_75977,264,4376_15590,Finglas Village,105652257,1,4376_7778022_100210,4376_147 -4289_75977,265,4376_15591,Finglas Village,105812257,1,4376_7778022_100210,4376_147 -4289_75977,266,4376_15592,Finglas Village,105822257,1,4376_7778022_100210,4376_147 -4289_75977,267,4376_15593,Finglas Village,106052257,1,4376_7778022_100210,4376_147 -4289_75977,268,4376_15594,Finglas Village,106142257,1,4376_7778022_100210,4376_147 -4289_75977,269,4376_15595,Finglas Village,106232257,1,4376_7778022_100210,4376_147 -4289_75977,259,4376_15596,Finglas Village,105765007,1,4376_7778022_100240,4376_148 -4289_75977,270,4376_15597,Finglas Village,105277733,1,4376_7778022_100200,4376_147 -4289_75977,146,4376_15598,Finglas Village,105247733,1,4376_7778022_100200,4376_147 -4289_75977,271,4376_15599,Finglas Village,105237733,1,4376_7778022_100200,4376_147 -4289_75960,115,4376_156,Sutton Station,105217258,0,4376_7778022_103502,4376_1 -4289_75962,264,4376_1560,Dalkey,105651216,0,4376_7778022_104071,4376_21 -4289_75977,115,4376_15600,Finglas Village,105217733,1,4376_7778022_100200,4376_147 -4289_75977,260,4376_15601,Finglas Village,105312273,1,4376_7778022_100230,4376_147 -4289_75977,261,4376_15602,Finglas Village,105322273,1,4376_7778022_100230,4376_147 -4289_75977,262,4376_15603,Finglas Village,105432273,1,4376_7778022_100230,4376_147 -4289_75977,263,4376_15604,Finglas Village,105542273,1,4376_7778022_100230,4376_147 -4289_75977,264,4376_15605,Finglas Village,105652273,1,4376_7778022_100230,4376_147 -4289_75977,265,4376_15606,Finglas Village,105812273,1,4376_7778022_100230,4376_147 -4289_75977,266,4376_15607,Finglas Village,105822273,1,4376_7778022_100230,4376_147 -4289_75977,267,4376_15608,Finglas Village,106052273,1,4376_7778022_100230,4376_147 -4289_75977,268,4376_15609,Finglas Village,106142273,1,4376_7778022_100230,4376_147 -4289_75962,265,4376_1561,Dalkey,105811216,0,4376_7778022_104071,4376_21 -4289_75977,269,4376_15610,Finglas Village,106232273,1,4376_7778022_100230,4376_147 -4289_75977,259,4376_15611,Finglas Village,105765023,1,4376_7778022_100200,4376_148 -4289_75977,270,4376_15612,Finglas Village,105277759,1,4376_7778022_100220,4376_147 -4289_75977,146,4376_15613,Finglas Village,105247759,1,4376_7778022_100220,4376_147 -4289_75977,271,4376_15614,Finglas Village,105237759,1,4376_7778022_100220,4376_147 -4289_75977,115,4376_15615,Finglas Village,105217759,1,4376_7778022_100220,4376_147 -4289_75977,260,4376_15616,Finglas Village,105312301,1,4376_7778022_100320,4376_147 -4289_75977,261,4376_15617,Finglas Village,105322301,1,4376_7778022_100320,4376_147 -4289_75977,262,4376_15618,Finglas Village,105432301,1,4376_7778022_100320,4376_147 -4289_75977,263,4376_15619,Finglas Village,105542301,1,4376_7778022_100320,4376_147 -4289_75962,266,4376_1562,Dalkey,105821216,0,4376_7778022_104071,4376_21 -4289_75977,264,4376_15620,Finglas Village,105652301,1,4376_7778022_100320,4376_147 -4289_75977,265,4376_15621,Finglas Village,105812301,1,4376_7778022_100320,4376_147 -4289_75977,266,4376_15622,Finglas Village,105822301,1,4376_7778022_100320,4376_147 -4289_75977,267,4376_15623,Finglas Village,106052301,1,4376_7778022_100320,4376_147 -4289_75977,268,4376_15624,Finglas Village,106142301,1,4376_7778022_100320,4376_147 -4289_75977,269,4376_15625,Finglas Village,106232301,1,4376_7778022_100320,4376_147 -4289_75977,259,4376_15626,Finglas Village,105765049,1,4376_7778022_100170,4376_148 -4289_75977,270,4376_15627,Finglas Village,105277777,1,4376_7778022_100240,4376_147 -4289_75977,146,4376_15628,Finglas Village,105247777,1,4376_7778022_100240,4376_147 -4289_75977,271,4376_15629,Finglas Village,105237777,1,4376_7778022_100240,4376_147 -4289_75962,267,4376_1563,Dalkey,106051216,0,4376_7778022_104071,4376_21 -4289_75977,115,4376_15630,Finglas Village,105217777,1,4376_7778022_100240,4376_147 -4289_75977,260,4376_15631,Finglas Village,105312319,1,4376_7778022_100300,4376_147 -4289_75977,261,4376_15632,Finglas Village,105322319,1,4376_7778022_100300,4376_147 -4289_75977,262,4376_15633,Finglas Village,105432319,1,4376_7778022_100300,4376_147 -4289_75977,263,4376_15634,Finglas Village,105542319,1,4376_7778022_100300,4376_147 -4289_75977,264,4376_15635,Finglas Village,105652319,1,4376_7778022_100300,4376_147 -4289_75977,265,4376_15636,Finglas Village,105812319,1,4376_7778022_100300,4376_147 -4289_75977,266,4376_15637,Finglas Village,105822319,1,4376_7778022_100300,4376_147 -4289_75977,267,4376_15638,Finglas Village,106052319,1,4376_7778022_100300,4376_147 -4289_75977,268,4376_15639,Finglas Village,106142319,1,4376_7778022_100300,4376_147 -4289_75962,268,4376_1564,Dalkey,106141216,0,4376_7778022_104071,4376_21 -4289_75977,269,4376_15640,Finglas Village,106232319,1,4376_7778022_100300,4376_147 -4289_75977,259,4376_15641,Finglas Village,105765063,1,4376_7778022_100220,4376_148 -4289_75977,260,4376_15642,Finglas Village,105312345,1,4376_7778022_100272,4376_147 -4289_75977,261,4376_15643,Finglas Village,105322345,1,4376_7778022_100272,4376_147 -4289_75977,262,4376_15644,Finglas Village,105432345,1,4376_7778022_100272,4376_147 -4289_75977,263,4376_15645,Finglas Village,105542345,1,4376_7778022_100272,4376_147 -4289_75977,264,4376_15646,Finglas Village,105652345,1,4376_7778022_100272,4376_147 -4289_75977,265,4376_15647,Finglas Village,105812345,1,4376_7778022_100272,4376_147 -4289_75977,266,4376_15648,Finglas Village,105822345,1,4376_7778022_100272,4376_147 -4289_75977,267,4376_15649,Finglas Village,106052345,1,4376_7778022_100272,4376_147 -4289_75962,269,4376_1565,Dalkey,106231216,0,4376_7778022_104071,4376_21 -4289_75977,268,4376_15650,Finglas Village,106142345,1,4376_7778022_100272,4376_147 -4289_75977,269,4376_15651,Finglas Village,106232345,1,4376_7778022_100272,4376_147 -4289_75977,259,4376_15652,Finglas Village,105765091,1,4376_7778022_100230,4376_148 -4289_75977,270,4376_15653,Finglas Village,105277805,1,4376_7778022_100190,4376_147 -4289_75977,146,4376_15654,Finglas Village,105247805,1,4376_7778022_100190,4376_147 -4289_75977,271,4376_15655,Finglas Village,105237805,1,4376_7778022_100190,4376_147 -4289_75977,115,4376_15656,Finglas Village,105217805,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_15657,Finglas Village,105312373,1,4376_7778022_100250,4376_147 -4289_75977,261,4376_15658,Finglas Village,105322373,1,4376_7778022_100250,4376_147 -4289_75977,262,4376_15659,Finglas Village,105432373,1,4376_7778022_100250,4376_147 -4289_75962,259,4376_1566,Dalkey,105764162,0,4376_7778022_104131,4376_21 -4289_75977,263,4376_15660,Finglas Village,105542373,1,4376_7778022_100250,4376_147 -4289_75977,264,4376_15661,Finglas Village,105652373,1,4376_7778022_100250,4376_147 -4289_75977,265,4376_15662,Finglas Village,105812373,1,4376_7778022_100250,4376_147 -4289_75977,266,4376_15663,Finglas Village,105822373,1,4376_7778022_100250,4376_147 -4289_75977,267,4376_15664,Finglas Village,106052373,1,4376_7778022_100250,4376_147 -4289_75977,268,4376_15665,Finglas Village,106142373,1,4376_7778022_100250,4376_147 -4289_75977,269,4376_15666,Finglas Village,106232373,1,4376_7778022_100250,4376_147 -4289_75977,259,4376_15667,Finglas Village,105765109,1,4376_7778022_100190,4376_148 -4289_75977,270,4376_15668,Finglas Village,105277825,1,4376_7778022_100160,4376_147 -4289_75977,146,4376_15669,Finglas Village,105247825,1,4376_7778022_100160,4376_147 -4289_75962,260,4376_1567,Dalkey,105311380,0,4376_7778022_104030,4376_21 -4289_75977,271,4376_15670,Finglas Village,105237825,1,4376_7778022_100160,4376_147 -4289_75977,115,4376_15671,Finglas Village,105217825,1,4376_7778022_100160,4376_147 -4289_75977,260,4376_15672,Finglas Village,105312389,1,4376_7778022_100200,4376_147 -4289_75977,261,4376_15673,Finglas Village,105322389,1,4376_7778022_100200,4376_147 -4289_75977,262,4376_15674,Finglas Village,105432389,1,4376_7778022_100200,4376_147 -4289_75977,263,4376_15675,Finglas Village,105542389,1,4376_7778022_100200,4376_147 -4289_75977,264,4376_15676,Finglas Village,105652389,1,4376_7778022_100200,4376_147 -4289_75977,265,4376_15677,Finglas Village,105812389,1,4376_7778022_100200,4376_147 -4289_75977,266,4376_15678,Finglas Village,105822389,1,4376_7778022_100200,4376_147 -4289_75977,267,4376_15679,Finglas Village,106052389,1,4376_7778022_100200,4376_147 -4289_75962,261,4376_1568,Dalkey,105321380,0,4376_7778022_104030,4376_21 -4289_75977,268,4376_15680,Finglas Village,106142389,1,4376_7778022_100200,4376_147 -4289_75977,269,4376_15681,Finglas Village,106232389,1,4376_7778022_100200,4376_147 -4289_75977,259,4376_15682,Finglas Village,105765123,1,4376_7778022_100250,4376_148 -4289_75977,270,4376_15683,Finglas Village,105277845,1,4376_7778022_100230,4376_147 -4289_75977,146,4376_15684,Finglas Village,105247845,1,4376_7778022_100230,4376_147 -4289_75977,271,4376_15685,Finglas Village,105237845,1,4376_7778022_100230,4376_147 -4289_75977,115,4376_15686,Finglas Village,105217845,1,4376_7778022_100230,4376_147 -4289_75977,260,4376_15687,Finglas Village,105312415,1,4376_7778022_100220,4376_147 -4289_75977,261,4376_15688,Finglas Village,105322415,1,4376_7778022_100220,4376_147 -4289_75977,262,4376_15689,Finglas Village,105432415,1,4376_7778022_100220,4376_147 -4289_75962,262,4376_1569,Dalkey,105431380,0,4376_7778022_104030,4376_21 -4289_75977,263,4376_15690,Finglas Village,105542415,1,4376_7778022_100220,4376_147 -4289_75977,264,4376_15691,Finglas Village,105652415,1,4376_7778022_100220,4376_147 -4289_75977,265,4376_15692,Finglas Village,105812415,1,4376_7778022_100220,4376_147 -4289_75977,266,4376_15693,Finglas Village,105822415,1,4376_7778022_100220,4376_147 -4289_75977,267,4376_15694,Finglas Village,106052415,1,4376_7778022_100220,4376_147 -4289_75977,268,4376_15695,Finglas Village,106142415,1,4376_7778022_100220,4376_147 -4289_75977,269,4376_15696,Finglas Village,106232415,1,4376_7778022_100220,4376_147 -4289_75977,259,4376_15697,Finglas Village,105765147,1,4376_7778022_100270,4376_148 -4289_75977,270,4376_15698,Finglas Village,105277871,1,4376_7778022_100180,4376_147 -4289_75977,146,4376_15699,Finglas Village,105247871,1,4376_7778022_100180,4376_147 -4289_75960,260,4376_157,Sutton Station,105311704,0,4376_7778022_103102,4376_1 -4289_75962,263,4376_1570,Dalkey,105541380,0,4376_7778022_104030,4376_21 -4289_75977,271,4376_15700,Finglas Village,105237871,1,4376_7778022_100180,4376_147 -4289_75977,115,4376_15701,Finglas Village,105217871,1,4376_7778022_100180,4376_147 -4289_75977,260,4376_15702,Finglas Village,105312437,1,4376_7778022_100290,4376_147 -4289_75977,261,4376_15703,Finglas Village,105322437,1,4376_7778022_100290,4376_147 -4289_75977,262,4376_15704,Finglas Village,105432437,1,4376_7778022_100290,4376_147 -4289_75977,263,4376_15705,Finglas Village,105542437,1,4376_7778022_100290,4376_147 -4289_75977,264,4376_15706,Finglas Village,105652437,1,4376_7778022_100290,4376_147 -4289_75977,265,4376_15707,Finglas Village,105812437,1,4376_7778022_100290,4376_147 -4289_75977,266,4376_15708,Finglas Village,105822437,1,4376_7778022_100290,4376_147 -4289_75977,267,4376_15709,Finglas Village,106052437,1,4376_7778022_100290,4376_147 -4289_75962,264,4376_1571,Dalkey,105651380,0,4376_7778022_104030,4376_21 -4289_75977,268,4376_15710,Finglas Village,106142437,1,4376_7778022_100290,4376_147 -4289_75977,269,4376_15711,Finglas Village,106232437,1,4376_7778022_100290,4376_147 -4289_75977,259,4376_15712,Finglas Village,105765169,1,4376_7778022_100210,4376_148 -4289_75977,260,4376_15713,Finglas Village,105312461,1,4376_7778022_100330,4376_147 -4289_75977,261,4376_15714,Finglas Village,105322461,1,4376_7778022_100330,4376_147 -4289_75977,262,4376_15715,Finglas Village,105432461,1,4376_7778022_100330,4376_147 -4289_75977,263,4376_15716,Finglas Village,105542461,1,4376_7778022_100330,4376_147 -4289_75977,264,4376_15717,Finglas Village,105652461,1,4376_7778022_100330,4376_147 -4289_75977,265,4376_15718,Finglas Village,105812461,1,4376_7778022_100330,4376_147 -4289_75977,266,4376_15719,Finglas Village,105822461,1,4376_7778022_100330,4376_147 -4289_75962,265,4376_1572,Dalkey,105811380,0,4376_7778022_104030,4376_21 -4289_75977,267,4376_15720,Finglas Village,106052461,1,4376_7778022_100330,4376_147 -4289_75977,268,4376_15721,Finglas Village,106142461,1,4376_7778022_100330,4376_147 -4289_75977,269,4376_15722,Finglas Village,106232461,1,4376_7778022_100330,4376_147 -4289_75977,259,4376_15723,Finglas Village,105765189,1,4376_7778022_100160,4376_148 -4289_75977,270,4376_15724,Finglas Village,105277893,1,4376_7778022_100170,4376_147 -4289_75977,146,4376_15725,Finglas Village,105247893,1,4376_7778022_100170,4376_147 -4289_75977,271,4376_15726,Finglas Village,105237893,1,4376_7778022_100170,4376_147 -4289_75977,115,4376_15727,Finglas Village,105217893,1,4376_7778022_100170,4376_147 -4289_75977,260,4376_15728,Finglas Village,105312485,1,4376_7778022_100310,4376_147 -4289_75977,261,4376_15729,Finglas Village,105322485,1,4376_7778022_100310,4376_147 -4289_75962,266,4376_1573,Dalkey,105821380,0,4376_7778022_104030,4376_21 -4289_75977,262,4376_15730,Finglas Village,105432485,1,4376_7778022_100310,4376_147 -4289_75977,263,4376_15731,Finglas Village,105542485,1,4376_7778022_100310,4376_147 -4289_75977,264,4376_15732,Finglas Village,105652485,1,4376_7778022_100310,4376_147 -4289_75977,265,4376_15733,Finglas Village,105812485,1,4376_7778022_100310,4376_147 -4289_75977,266,4376_15734,Finglas Village,105822485,1,4376_7778022_100310,4376_147 -4289_75977,267,4376_15735,Finglas Village,106052485,1,4376_7778022_100310,4376_147 -4289_75977,268,4376_15736,Finglas Village,106142485,1,4376_7778022_100310,4376_147 -4289_75977,269,4376_15737,Finglas Village,106232485,1,4376_7778022_100310,4376_147 -4289_75977,259,4376_15738,Finglas Village,105765211,1,4376_7778022_100260,4376_148 -4289_75977,270,4376_15739,Finglas Village,105277909,1,4376_7778022_100200,4376_147 -4289_75962,267,4376_1574,Dalkey,106051380,0,4376_7778022_104030,4376_21 -4289_75977,146,4376_15740,Finglas Village,105247909,1,4376_7778022_100200,4376_147 -4289_75977,271,4376_15741,Finglas Village,105237909,1,4376_7778022_100200,4376_147 -4289_75977,115,4376_15742,Finglas Village,105217909,1,4376_7778022_100200,4376_147 -4289_75977,260,4376_15743,Finglas Village,105312503,1,4376_7778022_100240,4376_147 -4289_75977,261,4376_15744,Finglas Village,105322503,1,4376_7778022_100240,4376_147 -4289_75977,262,4376_15745,Finglas Village,105432503,1,4376_7778022_100240,4376_147 -4289_75977,263,4376_15746,Finglas Village,105542503,1,4376_7778022_100240,4376_147 -4289_75977,264,4376_15747,Finglas Village,105652503,1,4376_7778022_100240,4376_147 -4289_75977,265,4376_15748,Finglas Village,105812503,1,4376_7778022_100240,4376_147 -4289_75977,266,4376_15749,Finglas Village,105822503,1,4376_7778022_100240,4376_147 -4289_75962,268,4376_1575,Dalkey,106141380,0,4376_7778022_104030,4376_21 -4289_75977,267,4376_15750,Finglas Village,106052503,1,4376_7778022_100240,4376_147 -4289_75977,268,4376_15751,Finglas Village,106142503,1,4376_7778022_100240,4376_147 -4289_75977,269,4376_15752,Finglas Village,106232503,1,4376_7778022_100240,4376_147 -4289_75977,259,4376_15753,Finglas Village,105765225,1,4376_7778022_100200,4376_148 -4289_75977,270,4376_15754,Finglas Village,105277937,1,4376_7778022_100220,4376_147 -4289_75977,146,4376_15755,Finglas Village,105247937,1,4376_7778022_100220,4376_147 -4289_75977,271,4376_15756,Finglas Village,105237937,1,4376_7778022_100220,4376_147 -4289_75977,115,4376_15757,Finglas Village,105217937,1,4376_7778022_100220,4376_147 -4289_75977,260,4376_15758,Finglas Village,105312525,1,4376_7778022_100260,4376_147 -4289_75977,261,4376_15759,Finglas Village,105322525,1,4376_7778022_100260,4376_147 -4289_75962,269,4376_1576,Dalkey,106231380,0,4376_7778022_104030,4376_21 -4289_75977,262,4376_15760,Finglas Village,105432525,1,4376_7778022_100260,4376_147 -4289_75977,263,4376_15761,Finglas Village,105542525,1,4376_7778022_100260,4376_147 -4289_75977,264,4376_15762,Finglas Village,105652525,1,4376_7778022_100260,4376_147 -4289_75977,265,4376_15763,Finglas Village,105812525,1,4376_7778022_100260,4376_147 -4289_75977,266,4376_15764,Finglas Village,105822525,1,4376_7778022_100260,4376_147 -4289_75977,267,4376_15765,Finglas Village,106052525,1,4376_7778022_100260,4376_147 -4289_75977,268,4376_15766,Finglas Village,106142525,1,4376_7778022_100260,4376_147 -4289_75977,269,4376_15767,Finglas Village,106232525,1,4376_7778022_100260,4376_147 -4289_75977,259,4376_15768,Finglas Village,105765251,1,4376_7778022_100170,4376_148 -4289_75977,270,4376_15769,Finglas Village,105277957,1,4376_7778022_100240,4376_147 -4289_75962,259,4376_1577,Dalkey,105764248,0,4376_7778022_104161,4376_21 -4289_75977,146,4376_15770,Finglas Village,105247957,1,4376_7778022_100240,4376_147 -4289_75977,271,4376_15771,Finglas Village,105237957,1,4376_7778022_100240,4376_147 -4289_75977,115,4376_15772,Finglas Village,105217957,1,4376_7778022_100240,4376_147 -4289_75977,260,4376_15773,Finglas Village,105312547,1,4376_7778022_100210,4376_147 -4289_75977,261,4376_15774,Finglas Village,105322547,1,4376_7778022_100210,4376_147 -4289_75977,262,4376_15775,Finglas Village,105432547,1,4376_7778022_100210,4376_147 -4289_75977,263,4376_15776,Finglas Village,105542547,1,4376_7778022_100210,4376_147 -4289_75977,264,4376_15777,Finglas Village,105652547,1,4376_7778022_100210,4376_147 -4289_75977,265,4376_15778,Finglas Village,105812547,1,4376_7778022_100210,4376_147 -4289_75977,266,4376_15779,Finglas Village,105822547,1,4376_7778022_100210,4376_147 -4289_75962,260,4376_1578,Dalkey,105311488,0,4376_7778022_104071,4376_21 -4289_75977,267,4376_15780,Finglas Village,106052547,1,4376_7778022_100210,4376_147 -4289_75977,268,4376_15781,Finglas Village,106142547,1,4376_7778022_100210,4376_147 -4289_75977,269,4376_15782,Finglas Village,106232547,1,4376_7778022_100210,4376_147 -4289_75977,259,4376_15783,Finglas Village,105765271,1,4376_7778022_100220,4376_148 -4289_75977,260,4376_15784,Finglas Village,105312575,1,4376_7778022_100230,4376_147 -4289_75977,261,4376_15785,Finglas Village,105322575,1,4376_7778022_100230,4376_147 -4289_75977,262,4376_15786,Finglas Village,105432575,1,4376_7778022_100230,4376_147 -4289_75977,263,4376_15787,Finglas Village,105542575,1,4376_7778022_100230,4376_147 -4289_75977,264,4376_15788,Finglas Village,105652575,1,4376_7778022_100230,4376_147 -4289_75977,265,4376_15789,Finglas Village,105812575,1,4376_7778022_100230,4376_147 -4289_75962,261,4376_1579,Dalkey,105321488,0,4376_7778022_104071,4376_21 -4289_75977,266,4376_15790,Finglas Village,105822575,1,4376_7778022_100230,4376_147 -4289_75977,267,4376_15791,Finglas Village,106052575,1,4376_7778022_100230,4376_147 -4289_75977,268,4376_15792,Finglas Village,106142575,1,4376_7778022_100230,4376_147 -4289_75977,269,4376_15793,Finglas Village,106232575,1,4376_7778022_100230,4376_147 -4289_75977,259,4376_15794,Finglas Village,105765291,1,4376_7778022_100230,4376_147 -4289_75977,270,4376_15795,Finglas Village,105277983,1,4376_7778022_100190,4376_147 -4289_75977,146,4376_15796,Finglas Village,105247983,1,4376_7778022_100190,4376_147 -4289_75977,271,4376_15797,Finglas Village,105237983,1,4376_7778022_100190,4376_147 -4289_75977,115,4376_15798,Finglas Village,105217983,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_15799,Finglas Village,105312593,1,4376_7778022_100320,4376_147 -4289_75960,261,4376_158,Sutton Station,105321704,0,4376_7778022_103102,4376_1 -4289_75962,262,4376_1580,Dalkey,105431488,0,4376_7778022_104071,4376_21 -4289_75977,261,4376_15800,Finglas Village,105322593,1,4376_7778022_100320,4376_147 -4289_75977,262,4376_15801,Finglas Village,105432593,1,4376_7778022_100320,4376_147 -4289_75977,263,4376_15802,Finglas Village,105542593,1,4376_7778022_100320,4376_147 -4289_75977,264,4376_15803,Finglas Village,105652593,1,4376_7778022_100320,4376_147 -4289_75977,265,4376_15804,Finglas Village,105812593,1,4376_7778022_100320,4376_147 -4289_75977,266,4376_15805,Finglas Village,105822593,1,4376_7778022_100320,4376_147 -4289_75977,267,4376_15806,Finglas Village,106052593,1,4376_7778022_100320,4376_147 -4289_75977,268,4376_15807,Finglas Village,106142593,1,4376_7778022_100320,4376_147 -4289_75977,269,4376_15808,Finglas Village,106232593,1,4376_7778022_100320,4376_147 -4289_75977,259,4376_15809,Finglas Village,105765309,1,4376_7778022_100190,4376_147 -4289_75962,263,4376_1581,Dalkey,105541488,0,4376_7778022_104071,4376_21 -4289_75977,260,4376_15810,Finglas Village,105312609,1,4376_7778022_100300,4376_147 -4289_75977,261,4376_15811,Finglas Village,105322609,1,4376_7778022_100300,4376_147 -4289_75977,262,4376_15812,Finglas Village,105432609,1,4376_7778022_100300,4376_147 -4289_75977,263,4376_15813,Finglas Village,105542609,1,4376_7778022_100300,4376_147 -4289_75977,264,4376_15814,Finglas Village,105652609,1,4376_7778022_100300,4376_147 -4289_75977,265,4376_15815,Finglas Village,105812609,1,4376_7778022_100300,4376_147 -4289_75977,266,4376_15816,Finglas Village,105822609,1,4376_7778022_100300,4376_147 -4289_75977,267,4376_15817,Finglas Village,106052609,1,4376_7778022_100300,4376_147 -4289_75977,268,4376_15818,Finglas Village,106142609,1,4376_7778022_100300,4376_147 -4289_75977,269,4376_15819,Finglas Village,106232609,1,4376_7778022_100300,4376_147 -4289_75962,264,4376_1582,Dalkey,105651488,0,4376_7778022_104071,4376_21 -4289_75977,270,4376_15820,Finglas Village,105278013,1,4376_7778022_100160,4376_147 -4289_75977,146,4376_15821,Finglas Village,105248013,1,4376_7778022_100160,4376_147 -4289_75977,271,4376_15822,Finglas Village,105238013,1,4376_7778022_100160,4376_147 -4289_75977,115,4376_15823,Finglas Village,105218013,1,4376_7778022_100160,4376_147 -4289_75977,259,4376_15824,Finglas Village,105765337,1,4376_7778022_100250,4376_147 -4289_75977,260,4376_15825,Finglas Village,105312633,1,4376_7778022_100272,4376_147 -4289_75977,261,4376_15826,Finglas Village,105322633,1,4376_7778022_100272,4376_147 -4289_75977,262,4376_15827,Finglas Village,105432633,1,4376_7778022_100272,4376_147 -4289_75977,263,4376_15828,Finglas Village,105542633,1,4376_7778022_100272,4376_147 -4289_75977,264,4376_15829,Finglas Village,105652633,1,4376_7778022_100272,4376_147 -4289_75962,265,4376_1583,Dalkey,105811488,0,4376_7778022_104071,4376_21 -4289_75977,265,4376_15830,Finglas Village,105812633,1,4376_7778022_100272,4376_147 -4289_75977,266,4376_15831,Finglas Village,105822633,1,4376_7778022_100272,4376_147 -4289_75977,267,4376_15832,Finglas Village,106052633,1,4376_7778022_100272,4376_147 -4289_75977,268,4376_15833,Finglas Village,106142633,1,4376_7778022_100272,4376_147 -4289_75977,269,4376_15834,Finglas Village,106232633,1,4376_7778022_100272,4376_147 -4289_75977,259,4376_15835,Finglas Village,105765355,1,4376_7778022_100210,4376_147 -4289_75977,270,4376_15836,Finglas Village,105278035,1,4376_7778022_100180,4376_148 -4289_75977,146,4376_15837,Finglas Village,105248035,1,4376_7778022_100180,4376_148 -4289_75977,271,4376_15838,Finglas Village,105238035,1,4376_7778022_100180,4376_148 -4289_75977,115,4376_15839,Finglas Village,105218035,1,4376_7778022_100180,4376_148 -4289_75962,266,4376_1584,Dalkey,105821488,0,4376_7778022_104071,4376_21 -4289_75977,260,4376_15840,Finglas Village,105312655,1,4376_7778022_100220,4376_147 -4289_75977,261,4376_15841,Finglas Village,105322655,1,4376_7778022_100220,4376_147 -4289_75977,262,4376_15842,Finglas Village,105432655,1,4376_7778022_100220,4376_147 -4289_75977,263,4376_15843,Finglas Village,105542655,1,4376_7778022_100220,4376_147 -4289_75977,264,4376_15844,Finglas Village,105652655,1,4376_7778022_100220,4376_147 -4289_75977,265,4376_15845,Finglas Village,105812655,1,4376_7778022_100220,4376_147 -4289_75977,266,4376_15846,Finglas Village,105822655,1,4376_7778022_100220,4376_147 -4289_75977,267,4376_15847,Finglas Village,106052655,1,4376_7778022_100220,4376_147 -4289_75977,268,4376_15848,Finglas Village,106142655,1,4376_7778022_100220,4376_147 -4289_75977,269,4376_15849,Finglas Village,106232655,1,4376_7778022_100220,4376_147 -4289_75962,267,4376_1585,Dalkey,106051488,0,4376_7778022_104071,4376_21 -4289_75977,260,4376_15850,Finglas Village,105312675,1,4376_7778022_100290,4376_147 -4289_75977,261,4376_15851,Finglas Village,105322675,1,4376_7778022_100290,4376_147 -4289_75977,262,4376_15852,Finglas Village,105432675,1,4376_7778022_100290,4376_147 -4289_75977,263,4376_15853,Finglas Village,105542675,1,4376_7778022_100290,4376_147 -4289_75977,264,4376_15854,Finglas Village,105652675,1,4376_7778022_100290,4376_147 -4289_75977,265,4376_15855,Finglas Village,105812675,1,4376_7778022_100290,4376_147 -4289_75977,266,4376_15856,Finglas Village,105822675,1,4376_7778022_100290,4376_147 -4289_75977,267,4376_15857,Finglas Village,106052675,1,4376_7778022_100290,4376_147 -4289_75977,268,4376_15858,Finglas Village,106142675,1,4376_7778022_100290,4376_147 -4289_75977,269,4376_15859,Finglas Village,106232675,1,4376_7778022_100290,4376_147 -4289_75962,268,4376_1586,Dalkey,106141488,0,4376_7778022_104071,4376_21 -4289_75977,259,4376_15860,Finglas Village,105765381,1,4376_7778022_100160,4376_147 -4289_75977,270,4376_15861,Finglas Village,105278065,1,4376_7778022_100170,4376_147 -4289_75977,146,4376_15862,Finglas Village,105248065,1,4376_7778022_100170,4376_147 -4289_75977,271,4376_15863,Finglas Village,105238065,1,4376_7778022_100170,4376_147 -4289_75977,115,4376_15864,Finglas Village,105218065,1,4376_7778022_100170,4376_147 -4289_75977,260,4376_15865,Finglas Village,105312691,1,4376_7778022_100330,4376_147 -4289_75977,261,4376_15866,Finglas Village,105322691,1,4376_7778022_100330,4376_147 -4289_75977,262,4376_15867,Finglas Village,105432691,1,4376_7778022_100330,4376_147 -4289_75977,263,4376_15868,Finglas Village,105542691,1,4376_7778022_100330,4376_147 -4289_75977,264,4376_15869,Finglas Village,105652691,1,4376_7778022_100330,4376_147 -4289_75962,269,4376_1587,Dalkey,106231488,0,4376_7778022_104071,4376_21 -4289_75977,265,4376_15870,Finglas Village,105812691,1,4376_7778022_100330,4376_147 -4289_75977,266,4376_15871,Finglas Village,105822691,1,4376_7778022_100330,4376_147 -4289_75977,267,4376_15872,Finglas Village,106052691,1,4376_7778022_100330,4376_147 -4289_75977,268,4376_15873,Finglas Village,106142691,1,4376_7778022_100330,4376_147 -4289_75977,269,4376_15874,Finglas Village,106232691,1,4376_7778022_100330,4376_147 -4289_75977,259,4376_15875,Finglas Village,105765397,1,4376_7778022_100260,4376_147 -4289_75977,260,4376_15876,Finglas Village,105312707,1,4376_7778022_100310,4376_147 -4289_75977,261,4376_15877,Finglas Village,105322707,1,4376_7778022_100310,4376_147 -4289_75977,262,4376_15878,Finglas Village,105432707,1,4376_7778022_100310,4376_147 -4289_75977,263,4376_15879,Finglas Village,105542707,1,4376_7778022_100310,4376_147 -4289_75962,259,4376_1588,Dalkey,105764326,0,4376_7778022_104022,4376_21 -4289_75977,264,4376_15880,Finglas Village,105652707,1,4376_7778022_100310,4376_147 -4289_75977,265,4376_15881,Finglas Village,105812707,1,4376_7778022_100310,4376_147 -4289_75977,266,4376_15882,Finglas Village,105822707,1,4376_7778022_100310,4376_147 -4289_75977,267,4376_15883,Finglas Village,106052707,1,4376_7778022_100310,4376_147 -4289_75977,268,4376_15884,Finglas Village,106142707,1,4376_7778022_100310,4376_147 -4289_75977,269,4376_15885,Finglas Village,106232707,1,4376_7778022_100310,4376_147 -4289_75977,270,4376_15886,Finglas Village,105278093,1,4376_7778022_100220,4376_147 -4289_75977,146,4376_15887,Finglas Village,105248093,1,4376_7778022_100220,4376_147 -4289_75977,271,4376_15888,Finglas Village,105238093,1,4376_7778022_100220,4376_147 -4289_75977,115,4376_15889,Finglas Village,105218093,1,4376_7778022_100220,4376_147 -4289_75962,270,4376_1589,Dun Laoghaire,105277130,0,4376_7778022_100140,4376_23 -4289_75977,259,4376_15890,Finglas Village,105765423,1,4376_7778022_100170,4376_147 -4289_75977,260,4376_15891,Finglas Village,105312731,1,4376_7778022_100240,4376_147 -4289_75977,261,4376_15892,Finglas Village,105322731,1,4376_7778022_100240,4376_147 -4289_75977,262,4376_15893,Finglas Village,105432731,1,4376_7778022_100240,4376_147 -4289_75977,263,4376_15894,Finglas Village,105542731,1,4376_7778022_100240,4376_147 -4289_75977,264,4376_15895,Finglas Village,105652731,1,4376_7778022_100240,4376_147 -4289_75977,265,4376_15896,Finglas Village,105812731,1,4376_7778022_100240,4376_147 -4289_75977,266,4376_15897,Finglas Village,105822731,1,4376_7778022_100240,4376_147 -4289_75977,267,4376_15898,Finglas Village,106052731,1,4376_7778022_100240,4376_147 -4289_75977,268,4376_15899,Finglas Village,106142731,1,4376_7778022_100240,4376_147 -4289_75960,262,4376_159,Sutton Station,105431704,0,4376_7778022_103102,4376_1 -4289_75962,146,4376_1590,Dun Laoghaire,105247130,0,4376_7778022_100140,4376_23 -4289_75977,269,4376_15900,Finglas Village,106232731,1,4376_7778022_100240,4376_147 -4289_75977,259,4376_15901,Finglas Village,105765445,1,4376_7778022_100220,4376_147 -4289_75977,270,4376_15902,Finglas Village,105278119,1,4376_7778022_100240,4376_148 -4289_75977,146,4376_15903,Finglas Village,105248119,1,4376_7778022_100240,4376_148 -4289_75977,271,4376_15904,Finglas Village,105238119,1,4376_7778022_100240,4376_148 -4289_75977,115,4376_15905,Finglas Village,105218119,1,4376_7778022_100240,4376_148 -4289_75977,260,4376_15906,Finglas Village,105312751,1,4376_7778022_100210,4376_147 -4289_75977,261,4376_15907,Finglas Village,105322751,1,4376_7778022_100210,4376_147 -4289_75977,262,4376_15908,Finglas Village,105432751,1,4376_7778022_100210,4376_147 -4289_75977,263,4376_15909,Finglas Village,105542751,1,4376_7778022_100210,4376_147 -4289_75962,271,4376_1591,Dun Laoghaire,105237130,0,4376_7778022_100140,4376_23 -4289_75977,264,4376_15910,Finglas Village,105652751,1,4376_7778022_100210,4376_147 -4289_75977,265,4376_15911,Finglas Village,105812751,1,4376_7778022_100210,4376_147 -4289_75977,266,4376_15912,Finglas Village,105822751,1,4376_7778022_100210,4376_147 -4289_75977,267,4376_15913,Finglas Village,106052751,1,4376_7778022_100210,4376_147 -4289_75977,268,4376_15914,Finglas Village,106142751,1,4376_7778022_100210,4376_147 -4289_75977,269,4376_15915,Finglas Village,106232751,1,4376_7778022_100210,4376_147 -4289_75977,260,4376_15916,Finglas Village,105312769,1,4376_7778022_100230,4376_147 -4289_75977,261,4376_15917,Finglas Village,105322769,1,4376_7778022_100230,4376_147 -4289_75977,262,4376_15918,Finglas Village,105432769,1,4376_7778022_100230,4376_147 -4289_75977,263,4376_15919,Finglas Village,105542769,1,4376_7778022_100230,4376_147 -4289_75962,115,4376_1592,Dun Laoghaire,105217130,0,4376_7778022_100140,4376_23 -4289_75977,264,4376_15920,Finglas Village,105652769,1,4376_7778022_100230,4376_147 -4289_75977,265,4376_15921,Finglas Village,105812769,1,4376_7778022_100230,4376_147 -4289_75977,266,4376_15922,Finglas Village,105822769,1,4376_7778022_100230,4376_147 -4289_75977,267,4376_15923,Finglas Village,106052769,1,4376_7778022_100230,4376_147 -4289_75977,268,4376_15924,Finglas Village,106142769,1,4376_7778022_100230,4376_147 -4289_75977,269,4376_15925,Finglas Village,106232769,1,4376_7778022_100230,4376_147 -4289_75977,259,4376_15926,Finglas Village,105765467,1,4376_7778022_100230,4376_147 -4289_75977,270,4376_15927,Finglas Village,105278143,1,4376_7778022_100190,4376_147 -4289_75977,146,4376_15928,Finglas Village,105248143,1,4376_7778022_100190,4376_147 -4289_75977,271,4376_15929,Finglas Village,105238143,1,4376_7778022_100190,4376_147 -4289_75962,260,4376_1593,Dalkey,105311608,0,4376_7778022_104030,4376_21 -4289_75977,115,4376_15930,Finglas Village,105218143,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_15931,Finglas Village,105312789,1,4376_7778022_100320,4376_147 -4289_75977,261,4376_15932,Finglas Village,105322789,1,4376_7778022_100320,4376_147 -4289_75977,262,4376_15933,Finglas Village,105432789,1,4376_7778022_100320,4376_147 -4289_75977,263,4376_15934,Finglas Village,105542789,1,4376_7778022_100320,4376_147 -4289_75977,264,4376_15935,Finglas Village,105652789,1,4376_7778022_100320,4376_147 -4289_75977,265,4376_15936,Finglas Village,105812789,1,4376_7778022_100320,4376_147 -4289_75977,266,4376_15937,Finglas Village,105822789,1,4376_7778022_100320,4376_147 -4289_75977,267,4376_15938,Finglas Village,106052789,1,4376_7778022_100320,4376_147 -4289_75977,268,4376_15939,Finglas Village,106142789,1,4376_7778022_100320,4376_147 -4289_75962,261,4376_1594,Dalkey,105321608,0,4376_7778022_104030,4376_21 -4289_75977,269,4376_15940,Finglas Village,106232789,1,4376_7778022_100320,4376_147 -4289_75977,259,4376_15941,Finglas Village,105765485,1,4376_7778022_100190,4376_147 -4289_75977,260,4376_15942,Finglas Village,105312805,1,4376_7778022_100300,4376_147 -4289_75977,261,4376_15943,Finglas Village,105322805,1,4376_7778022_100300,4376_147 -4289_75977,262,4376_15944,Finglas Village,105432805,1,4376_7778022_100300,4376_147 -4289_75977,263,4376_15945,Finglas Village,105542805,1,4376_7778022_100300,4376_147 -4289_75977,264,4376_15946,Finglas Village,105652805,1,4376_7778022_100300,4376_147 -4289_75977,265,4376_15947,Finglas Village,105812805,1,4376_7778022_100300,4376_147 -4289_75977,266,4376_15948,Finglas Village,105822805,1,4376_7778022_100300,4376_147 -4289_75977,267,4376_15949,Finglas Village,106052805,1,4376_7778022_100300,4376_147 -4289_75962,262,4376_1595,Dalkey,105431608,0,4376_7778022_104030,4376_21 -4289_75977,268,4376_15950,Finglas Village,106142805,1,4376_7778022_100300,4376_147 -4289_75977,269,4376_15951,Finglas Village,106232805,1,4376_7778022_100300,4376_147 -4289_75977,270,4376_15952,Finglas Village,105278171,1,4376_7778022_100160,4376_147 -4289_75977,146,4376_15953,Finglas Village,105248171,1,4376_7778022_100160,4376_147 -4289_75977,271,4376_15954,Finglas Village,105238171,1,4376_7778022_100160,4376_147 -4289_75977,115,4376_15955,Finglas Village,105218171,1,4376_7778022_100160,4376_147 -4289_75977,259,4376_15956,Finglas Village,105765509,1,4376_7778022_100250,4376_147 -4289_75977,260,4376_15957,Finglas Village,105312829,1,4376_7778022_100272,4376_147 -4289_75977,261,4376_15958,Finglas Village,105322829,1,4376_7778022_100272,4376_147 -4289_75977,262,4376_15959,Finglas Village,105432829,1,4376_7778022_100272,4376_147 -4289_75962,263,4376_1596,Dalkey,105541608,0,4376_7778022_104030,4376_21 -4289_75977,263,4376_15960,Finglas Village,105542829,1,4376_7778022_100272,4376_147 -4289_75977,264,4376_15961,Finglas Village,105652829,1,4376_7778022_100272,4376_147 -4289_75977,265,4376_15962,Finglas Village,105812829,1,4376_7778022_100272,4376_147 -4289_75977,266,4376_15963,Finglas Village,105822829,1,4376_7778022_100272,4376_147 -4289_75977,267,4376_15964,Finglas Village,106052829,1,4376_7778022_100272,4376_147 -4289_75977,268,4376_15965,Finglas Village,106142829,1,4376_7778022_100272,4376_147 -4289_75977,269,4376_15966,Finglas Village,106232829,1,4376_7778022_100272,4376_147 -4289_75977,259,4376_15967,Finglas Village,105765531,1,4376_7778022_100210,4376_147 -4289_75977,270,4376_15968,Finglas Village,105278197,1,4376_7778022_100180,4376_148 -4289_75977,146,4376_15969,Finglas Village,105248197,1,4376_7778022_100180,4376_148 -4289_75962,264,4376_1597,Dalkey,105651608,0,4376_7778022_104030,4376_21 -4289_75977,271,4376_15970,Finglas Village,105238197,1,4376_7778022_100180,4376_148 -4289_75977,115,4376_15971,Finglas Village,105218197,1,4376_7778022_100180,4376_148 -4289_75977,260,4376_15972,Finglas Village,105312847,1,4376_7778022_100220,4376_147 -4289_75977,261,4376_15973,Finglas Village,105322847,1,4376_7778022_100220,4376_147 -4289_75977,262,4376_15974,Finglas Village,105432847,1,4376_7778022_100220,4376_147 -4289_75977,263,4376_15975,Finglas Village,105542847,1,4376_7778022_100220,4376_147 -4289_75977,264,4376_15976,Finglas Village,105652847,1,4376_7778022_100220,4376_147 -4289_75977,265,4376_15977,Finglas Village,105812847,1,4376_7778022_100220,4376_147 -4289_75977,266,4376_15978,Finglas Village,105822847,1,4376_7778022_100220,4376_147 -4289_75977,267,4376_15979,Finglas Village,106052847,1,4376_7778022_100220,4376_147 -4289_75962,265,4376_1598,Dalkey,105811608,0,4376_7778022_104030,4376_21 -4289_75977,268,4376_15980,Finglas Village,106142847,1,4376_7778022_100220,4376_147 -4289_75977,269,4376_15981,Finglas Village,106232847,1,4376_7778022_100220,4376_147 -4289_75977,260,4376_15982,Finglas Village,105312863,1,4376_7778022_100290,4376_147 -4289_75977,261,4376_15983,Finglas Village,105322863,1,4376_7778022_100290,4376_147 -4289_75977,262,4376_15984,Finglas Village,105432863,1,4376_7778022_100290,4376_147 -4289_75977,263,4376_15985,Finglas Village,105542863,1,4376_7778022_100290,4376_147 -4289_75977,264,4376_15986,Finglas Village,105652863,1,4376_7778022_100290,4376_147 -4289_75977,265,4376_15987,Finglas Village,105812863,1,4376_7778022_100290,4376_147 -4289_75977,266,4376_15988,Finglas Village,105822863,1,4376_7778022_100290,4376_147 -4289_75977,267,4376_15989,Finglas Village,106052863,1,4376_7778022_100290,4376_147 -4289_75962,266,4376_1599,Dalkey,105821608,0,4376_7778022_104030,4376_21 -4289_75977,268,4376_15990,Finglas Village,106142863,1,4376_7778022_100290,4376_147 -4289_75977,269,4376_15991,Finglas Village,106232863,1,4376_7778022_100290,4376_147 -4289_75977,259,4376_15992,Finglas Village,105765551,1,4376_7778022_100160,4376_147 -4289_75977,270,4376_15993,Finglas Village,105278221,1,4376_7778022_100170,4376_147 -4289_75977,146,4376_15994,Finglas Village,105248221,1,4376_7778022_100170,4376_147 -4289_75977,271,4376_15995,Finglas Village,105238221,1,4376_7778022_100170,4376_147 -4289_75977,115,4376_15996,Finglas Village,105218221,1,4376_7778022_100170,4376_147 -4289_75977,260,4376_15997,Finglas Village,105312887,1,4376_7778022_100330,4376_147 -4289_75977,261,4376_15998,Finglas Village,105322887,1,4376_7778022_100330,4376_147 -4289_75977,262,4376_15999,Finglas Village,105432887,1,4376_7778022_100330,4376_147 -4289_75960,263,4376_16,Sutton Station,105541070,0,4376_7778022_103107,4376_1 -4289_75960,263,4376_160,Sutton Station,105541704,0,4376_7778022_103102,4376_1 -4289_75962,267,4376_1600,Dalkey,106051608,0,4376_7778022_104030,4376_21 -4289_75977,263,4376_16000,Finglas Village,105542887,1,4376_7778022_100330,4376_147 -4289_75977,264,4376_16001,Finglas Village,105652887,1,4376_7778022_100330,4376_147 -4289_75977,265,4376_16002,Finglas Village,105812887,1,4376_7778022_100330,4376_147 -4289_75977,266,4376_16003,Finglas Village,105822887,1,4376_7778022_100330,4376_147 -4289_75977,267,4376_16004,Finglas Village,106052887,1,4376_7778022_100330,4376_147 -4289_75977,268,4376_16005,Finglas Village,106142887,1,4376_7778022_100330,4376_147 -4289_75977,269,4376_16006,Finglas Village,106232887,1,4376_7778022_100330,4376_147 -4289_75977,259,4376_16007,Finglas Village,105765571,1,4376_7778022_100260,4376_147 -4289_75977,260,4376_16008,Finglas Village,105312899,1,4376_7778022_100310,4376_147 -4289_75977,261,4376_16009,Finglas Village,105322899,1,4376_7778022_100310,4376_147 -4289_75962,268,4376_1601,Dalkey,106141608,0,4376_7778022_104030,4376_21 -4289_75977,262,4376_16010,Finglas Village,105432899,1,4376_7778022_100310,4376_147 -4289_75977,263,4376_16011,Finglas Village,105542899,1,4376_7778022_100310,4376_147 -4289_75977,264,4376_16012,Finglas Village,105652899,1,4376_7778022_100310,4376_147 -4289_75977,265,4376_16013,Finglas Village,105812899,1,4376_7778022_100310,4376_147 -4289_75977,266,4376_16014,Finglas Village,105822899,1,4376_7778022_100310,4376_147 -4289_75977,267,4376_16015,Finglas Village,106052899,1,4376_7778022_100310,4376_147 -4289_75977,268,4376_16016,Finglas Village,106142899,1,4376_7778022_100310,4376_147 -4289_75977,269,4376_16017,Finglas Village,106232899,1,4376_7778022_100310,4376_147 -4289_75977,270,4376_16018,Finglas Village,105278247,1,4376_7778022_100220,4376_147 -4289_75977,146,4376_16019,Finglas Village,105248247,1,4376_7778022_100220,4376_147 -4289_75962,269,4376_1602,Dalkey,106231608,0,4376_7778022_104030,4376_21 -4289_75977,271,4376_16020,Finglas Village,105238247,1,4376_7778022_100220,4376_147 -4289_75977,115,4376_16021,Finglas Village,105218247,1,4376_7778022_100220,4376_147 -4289_75977,259,4376_16022,Finglas Village,105765593,1,4376_7778022_100170,4376_147 -4289_75977,260,4376_16023,Finglas Village,105312923,1,4376_7778022_100210,4376_147 -4289_75977,261,4376_16024,Finglas Village,105322923,1,4376_7778022_100210,4376_147 -4289_75977,262,4376_16025,Finglas Village,105432923,1,4376_7778022_100210,4376_147 -4289_75977,263,4376_16026,Finglas Village,105542923,1,4376_7778022_100210,4376_147 -4289_75977,264,4376_16027,Finglas Village,105652923,1,4376_7778022_100210,4376_147 -4289_75977,265,4376_16028,Finglas Village,105812923,1,4376_7778022_100210,4376_147 -4289_75977,266,4376_16029,Finglas Village,105822923,1,4376_7778022_100210,4376_147 -4289_75962,259,4376_1603,Dalkey,105764434,0,4376_7778022_104161,4376_21 -4289_75977,267,4376_16030,Finglas Village,106052923,1,4376_7778022_100210,4376_147 -4289_75977,268,4376_16031,Finglas Village,106142923,1,4376_7778022_100210,4376_147 -4289_75977,269,4376_16032,Finglas Village,106232923,1,4376_7778022_100210,4376_147 -4289_75977,259,4376_16033,Finglas Village,105765615,1,4376_7778022_100220,4376_147 -4289_75977,270,4376_16034,Finglas Village,105278271,1,4376_7778022_100240,4376_148 -4289_75977,146,4376_16035,Finglas Village,105248271,1,4376_7778022_100240,4376_148 -4289_75977,271,4376_16036,Finglas Village,105238271,1,4376_7778022_100240,4376_148 -4289_75977,115,4376_16037,Finglas Village,105218271,1,4376_7778022_100240,4376_148 -4289_75977,260,4376_16038,Finglas Village,105312941,1,4376_7778022_100230,4376_147 -4289_75977,261,4376_16039,Finglas Village,105322941,1,4376_7778022_100230,4376_147 -4289_75962,270,4376_1604,Dalkey,105277214,0,4376_7778022_100150,4376_21 -4289_75977,262,4376_16040,Finglas Village,105432941,1,4376_7778022_100230,4376_147 -4289_75977,263,4376_16041,Finglas Village,105542941,1,4376_7778022_100230,4376_147 -4289_75977,264,4376_16042,Finglas Village,105652941,1,4376_7778022_100230,4376_147 -4289_75977,265,4376_16043,Finglas Village,105812941,1,4376_7778022_100230,4376_147 -4289_75977,266,4376_16044,Finglas Village,105822941,1,4376_7778022_100230,4376_147 -4289_75977,267,4376_16045,Finglas Village,106052941,1,4376_7778022_100230,4376_147 -4289_75977,268,4376_16046,Finglas Village,106142941,1,4376_7778022_100230,4376_147 -4289_75977,269,4376_16047,Finglas Village,106232941,1,4376_7778022_100230,4376_147 -4289_75977,260,4376_16048,Finglas Village,105312957,1,4376_7778022_100300,4376_147 -4289_75977,261,4376_16049,Finglas Village,105322957,1,4376_7778022_100300,4376_147 -4289_75962,146,4376_1605,Dalkey,105247214,0,4376_7778022_100150,4376_21 -4289_75977,262,4376_16050,Finglas Village,105432957,1,4376_7778022_100300,4376_147 -4289_75977,263,4376_16051,Finglas Village,105542957,1,4376_7778022_100300,4376_147 -4289_75977,264,4376_16052,Finglas Village,105652957,1,4376_7778022_100300,4376_147 -4289_75977,265,4376_16053,Finglas Village,105812957,1,4376_7778022_100300,4376_147 -4289_75977,266,4376_16054,Finglas Village,105822957,1,4376_7778022_100300,4376_147 -4289_75977,267,4376_16055,Finglas Village,106052957,1,4376_7778022_100300,4376_147 -4289_75977,268,4376_16056,Finglas Village,106142957,1,4376_7778022_100300,4376_147 -4289_75977,269,4376_16057,Finglas Village,106232957,1,4376_7778022_100300,4376_147 -4289_75977,259,4376_16058,Finglas Village,105765635,1,4376_7778022_100230,4376_147 -4289_75977,260,4376_16059,Finglas Village,105312969,1,4376_7778022_100272,4376_147 -4289_75962,271,4376_1606,Dalkey,105237214,0,4376_7778022_100150,4376_21 -4289_75977,261,4376_16060,Finglas Village,105322969,1,4376_7778022_100272,4376_147 -4289_75977,262,4376_16061,Finglas Village,105432969,1,4376_7778022_100272,4376_147 -4289_75977,263,4376_16062,Finglas Village,105542969,1,4376_7778022_100272,4376_147 -4289_75977,264,4376_16063,Finglas Village,105652969,1,4376_7778022_100272,4376_147 -4289_75977,265,4376_16064,Finglas Village,105812969,1,4376_7778022_100272,4376_147 -4289_75977,266,4376_16065,Finglas Village,105822969,1,4376_7778022_100272,4376_147 -4289_75977,267,4376_16066,Finglas Village,106052969,1,4376_7778022_100272,4376_147 -4289_75977,268,4376_16067,Finglas Village,106142969,1,4376_7778022_100272,4376_147 -4289_75977,269,4376_16068,Finglas Village,106232969,1,4376_7778022_100272,4376_147 -4289_75977,259,4376_16069,Finglas Village,105765645,1,4376_7778022_100190,4376_147 -4289_75962,115,4376_1607,Dalkey,105217214,0,4376_7778022_100150,4376_21 -4289_75977,270,4376_16070,Finglas Village,105278297,1,4376_7778022_100160,4376_148 -4289_75977,146,4376_16071,Finglas Village,105248297,1,4376_7778022_100160,4376_148 -4289_75977,271,4376_16072,Finglas Village,105238297,1,4376_7778022_100160,4376_148 -4289_75977,115,4376_16073,Finglas Village,105218297,1,4376_7778022_100160,4376_148 -4289_75978,260,4376_16074,UCD Belfield,105311012,0,4376_7778022_100611,4376_149 -4289_75978,261,4376_16075,UCD Belfield,105321012,0,4376_7778022_100611,4376_149 -4289_75978,262,4376_16076,UCD Belfield,105431012,0,4376_7778022_100611,4376_149 -4289_75978,263,4376_16077,UCD Belfield,105541012,0,4376_7778022_100611,4376_149 -4289_75978,264,4376_16078,UCD Belfield,105651012,0,4376_7778022_100611,4376_149 -4289_75978,265,4376_16079,UCD Belfield,105811012,0,4376_7778022_100611,4376_149 -4289_75962,260,4376_1608,Dalkey,105311718,0,4376_7778022_104071,4376_21 -4289_75978,266,4376_16080,UCD Belfield,105821012,0,4376_7778022_100611,4376_149 -4289_75978,267,4376_16081,UCD Belfield,106051012,0,4376_7778022_100611,4376_149 -4289_75978,268,4376_16082,UCD Belfield,106141012,0,4376_7778022_100611,4376_149 -4289_75978,269,4376_16083,UCD Belfield,106231012,0,4376_7778022_100611,4376_149 -4289_75978,260,4376_16084,UCD Belfield,105311024,0,4376_7778022_100630,4376_149 -4289_75978,261,4376_16085,UCD Belfield,105321024,0,4376_7778022_100630,4376_149 -4289_75978,262,4376_16086,UCD Belfield,105431024,0,4376_7778022_100630,4376_149 -4289_75978,263,4376_16087,UCD Belfield,105541024,0,4376_7778022_100630,4376_149 -4289_75978,264,4376_16088,UCD Belfield,105651024,0,4376_7778022_100630,4376_149 -4289_75978,265,4376_16089,UCD Belfield,105811024,0,4376_7778022_100630,4376_149 -4289_75962,261,4376_1609,Dalkey,105321718,0,4376_7778022_104071,4376_21 -4289_75978,266,4376_16090,UCD Belfield,105821024,0,4376_7778022_100630,4376_149 -4289_75978,267,4376_16091,UCD Belfield,106051024,0,4376_7778022_100630,4376_149 -4289_75978,268,4376_16092,UCD Belfield,106141024,0,4376_7778022_100630,4376_149 -4289_75978,269,4376_16093,UCD Belfield,106231024,0,4376_7778022_100630,4376_149 -4289_75978,259,4376_16094,UCD Belfield,105764024,0,4376_7778022_100500,4376_149 -4289_75978,260,4376_16095,UCD Belfield,105311044,0,4376_7778022_100651,4376_149 -4289_75978,261,4376_16096,UCD Belfield,105321044,0,4376_7778022_100651,4376_149 -4289_75978,262,4376_16097,UCD Belfield,105431044,0,4376_7778022_100651,4376_149 -4289_75978,263,4376_16098,UCD Belfield,105541044,0,4376_7778022_100651,4376_149 -4289_75978,264,4376_16099,UCD Belfield,105651044,0,4376_7778022_100651,4376_149 -4289_75960,264,4376_161,Sutton Station,105651704,0,4376_7778022_103102,4376_1 -4289_75962,262,4376_1610,Dalkey,105431718,0,4376_7778022_104071,4376_21 -4289_75978,265,4376_16100,UCD Belfield,105811044,0,4376_7778022_100651,4376_149 -4289_75978,266,4376_16101,UCD Belfield,105821044,0,4376_7778022_100651,4376_149 -4289_75978,267,4376_16102,UCD Belfield,106051044,0,4376_7778022_100651,4376_149 -4289_75978,268,4376_16103,UCD Belfield,106141044,0,4376_7778022_100651,4376_149 -4289_75978,269,4376_16104,UCD Belfield,106231044,0,4376_7778022_100651,4376_149 -4289_75978,259,4376_16105,UCD Belfield,105764040,0,4376_7778022_100520,4376_149 -4289_75978,260,4376_16106,UCD Belfield,105311072,0,4376_7778022_100600,4376_149 -4289_75978,261,4376_16107,UCD Belfield,105321072,0,4376_7778022_100600,4376_149 -4289_75978,262,4376_16108,UCD Belfield,105431072,0,4376_7778022_100600,4376_149 -4289_75978,263,4376_16109,UCD Belfield,105541072,0,4376_7778022_100600,4376_149 -4289_75962,263,4376_1611,Dalkey,105541718,0,4376_7778022_104071,4376_21 -4289_75978,264,4376_16110,UCD Belfield,105651072,0,4376_7778022_100600,4376_149 -4289_75978,265,4376_16111,UCD Belfield,105811072,0,4376_7778022_100600,4376_149 -4289_75978,266,4376_16112,UCD Belfield,105821072,0,4376_7778022_100600,4376_149 -4289_75978,267,4376_16113,UCD Belfield,106051072,0,4376_7778022_100600,4376_149 -4289_75978,268,4376_16114,UCD Belfield,106141072,0,4376_7778022_100600,4376_149 -4289_75978,269,4376_16115,UCD Belfield,106231072,0,4376_7778022_100600,4376_149 -4289_75978,260,4376_16116,UCD Belfield,105311090,0,4376_7778022_100690,4376_149 -4289_75978,261,4376_16117,UCD Belfield,105321090,0,4376_7778022_100690,4376_149 -4289_75978,262,4376_16118,UCD Belfield,105431090,0,4376_7778022_100690,4376_149 -4289_75978,263,4376_16119,UCD Belfield,105541090,0,4376_7778022_100690,4376_149 -4289_75962,264,4376_1612,Dalkey,105651718,0,4376_7778022_104071,4376_21 -4289_75978,264,4376_16120,UCD Belfield,105651090,0,4376_7778022_100690,4376_149 -4289_75978,265,4376_16121,UCD Belfield,105811090,0,4376_7778022_100690,4376_149 -4289_75978,266,4376_16122,UCD Belfield,105821090,0,4376_7778022_100690,4376_149 -4289_75978,267,4376_16123,UCD Belfield,106051090,0,4376_7778022_100690,4376_149 -4289_75978,268,4376_16124,UCD Belfield,106141090,0,4376_7778022_100690,4376_149 -4289_75978,269,4376_16125,UCD Belfield,106231090,0,4376_7778022_100690,4376_149 -4289_75978,259,4376_16126,UCD Belfield,105764058,0,4376_7778022_100530,4376_150 -4289_75978,260,4376_16127,UCD Belfield,105311110,0,4376_7778022_100620,4376_149 -4289_75978,261,4376_16128,UCD Belfield,105321110,0,4376_7778022_100620,4376_149 -4289_75978,262,4376_16129,UCD Belfield,105431110,0,4376_7778022_100620,4376_149 -4289_75962,265,4376_1613,Dalkey,105811718,0,4376_7778022_104071,4376_21 -4289_75978,263,4376_16130,UCD Belfield,105541110,0,4376_7778022_100620,4376_149 -4289_75978,264,4376_16131,UCD Belfield,105651110,0,4376_7778022_100620,4376_149 -4289_75978,265,4376_16132,UCD Belfield,105811110,0,4376_7778022_100620,4376_149 -4289_75978,266,4376_16133,UCD Belfield,105821110,0,4376_7778022_100620,4376_149 -4289_75978,267,4376_16134,UCD Belfield,106051110,0,4376_7778022_100620,4376_149 -4289_75978,268,4376_16135,UCD Belfield,106141110,0,4376_7778022_100620,4376_149 -4289_75978,269,4376_16136,UCD Belfield,106231110,0,4376_7778022_100620,4376_149 -4289_75978,260,4376_16137,UCD Belfield,105311120,0,4376_7778022_100710,4376_149 -4289_75978,261,4376_16138,UCD Belfield,105321120,0,4376_7778022_100710,4376_149 -4289_75978,262,4376_16139,UCD Belfield,105431120,0,4376_7778022_100710,4376_149 -4289_75962,266,4376_1614,Dalkey,105821718,0,4376_7778022_104071,4376_21 -4289_75978,263,4376_16140,UCD Belfield,105541120,0,4376_7778022_100710,4376_149 -4289_75978,264,4376_16141,UCD Belfield,105651120,0,4376_7778022_100710,4376_149 -4289_75978,265,4376_16142,UCD Belfield,105811120,0,4376_7778022_100710,4376_149 -4289_75978,266,4376_16143,UCD Belfield,105821120,0,4376_7778022_100710,4376_149 -4289_75978,267,4376_16144,UCD Belfield,106051120,0,4376_7778022_100710,4376_149 -4289_75978,268,4376_16145,UCD Belfield,106141120,0,4376_7778022_100710,4376_149 -4289_75978,269,4376_16146,UCD Belfield,106231120,0,4376_7778022_100710,4376_149 -4289_75978,259,4376_16147,UCD Belfield,105764076,0,4376_7778022_100480,4376_149 -4289_75978,260,4376_16148,UCD Belfield,105311138,0,4376_7778022_100730,4376_149 -4289_75978,261,4376_16149,UCD Belfield,105321138,0,4376_7778022_100730,4376_149 -4289_75962,267,4376_1615,Dalkey,106051718,0,4376_7778022_104071,4376_21 -4289_75978,262,4376_16150,UCD Belfield,105431138,0,4376_7778022_100730,4376_149 -4289_75978,263,4376_16151,UCD Belfield,105541138,0,4376_7778022_100730,4376_149 -4289_75978,264,4376_16152,UCD Belfield,105651138,0,4376_7778022_100730,4376_149 -4289_75978,265,4376_16153,UCD Belfield,105811138,0,4376_7778022_100730,4376_149 -4289_75978,266,4376_16154,UCD Belfield,105821138,0,4376_7778022_100730,4376_149 -4289_75978,267,4376_16155,UCD Belfield,106051138,0,4376_7778022_100730,4376_149 -4289_75978,268,4376_16156,UCD Belfield,106141138,0,4376_7778022_100730,4376_149 -4289_75978,269,4376_16157,UCD Belfield,106231138,0,4376_7778022_100730,4376_149 -4289_75978,260,4376_16158,UCD Belfield,105311144,0,4376_7778022_100750,4376_149 -4289_75978,261,4376_16159,UCD Belfield,105321144,0,4376_7778022_100750,4376_149 -4289_75962,268,4376_1616,Dalkey,106141718,0,4376_7778022_104071,4376_21 -4289_75978,262,4376_16160,UCD Belfield,105431144,0,4376_7778022_100750,4376_149 -4289_75978,263,4376_16161,UCD Belfield,105541144,0,4376_7778022_100750,4376_149 -4289_75978,264,4376_16162,UCD Belfield,105651144,0,4376_7778022_100750,4376_149 -4289_75978,265,4376_16163,UCD Belfield,105811144,0,4376_7778022_100750,4376_149 -4289_75978,266,4376_16164,UCD Belfield,105821144,0,4376_7778022_100750,4376_149 -4289_75978,267,4376_16165,UCD Belfield,106051144,0,4376_7778022_100750,4376_149 -4289_75978,268,4376_16166,UCD Belfield,106141144,0,4376_7778022_100750,4376_149 -4289_75978,269,4376_16167,UCD Belfield,106231144,0,4376_7778022_100750,4376_149 -4289_75978,260,4376_16168,UCD Belfield,105311160,0,4376_7778022_100760,4376_149 -4289_75978,261,4376_16169,UCD Belfield,105321160,0,4376_7778022_100760,4376_149 -4289_75962,269,4376_1617,Dalkey,106231718,0,4376_7778022_104071,4376_21 -4289_75978,262,4376_16170,UCD Belfield,105431160,0,4376_7778022_100760,4376_149 -4289_75978,263,4376_16171,UCD Belfield,105541160,0,4376_7778022_100760,4376_149 -4289_75978,264,4376_16172,UCD Belfield,105651160,0,4376_7778022_100760,4376_149 -4289_75978,265,4376_16173,UCD Belfield,105811160,0,4376_7778022_100760,4376_149 -4289_75978,266,4376_16174,UCD Belfield,105821160,0,4376_7778022_100760,4376_149 -4289_75978,267,4376_16175,UCD Belfield,106051160,0,4376_7778022_100760,4376_149 -4289_75978,268,4376_16176,UCD Belfield,106141160,0,4376_7778022_100760,4376_149 -4289_75978,269,4376_16177,UCD Belfield,106231160,0,4376_7778022_100760,4376_149 -4289_75978,259,4376_16178,UCD Belfield,105764102,0,4376_7778022_100490,4376_150 -4289_75978,260,4376_16179,UCD Belfield,105311184,0,4376_7778022_100640,4376_149 -4289_75962,259,4376_1618,Dalkey,105764532,0,4376_7778022_104191,4376_21 -4289_75978,261,4376_16180,UCD Belfield,105321184,0,4376_7778022_100640,4376_149 -4289_75978,262,4376_16181,UCD Belfield,105431184,0,4376_7778022_100640,4376_149 -4289_75978,263,4376_16182,UCD Belfield,105541184,0,4376_7778022_100640,4376_149 -4289_75978,264,4376_16183,UCD Belfield,105651184,0,4376_7778022_100640,4376_149 -4289_75978,265,4376_16184,UCD Belfield,105811184,0,4376_7778022_100640,4376_149 -4289_75978,266,4376_16185,UCD Belfield,105821184,0,4376_7778022_100640,4376_149 -4289_75978,267,4376_16186,UCD Belfield,106051184,0,4376_7778022_100640,4376_149 -4289_75978,268,4376_16187,UCD Belfield,106141184,0,4376_7778022_100640,4376_149 -4289_75978,269,4376_16188,UCD Belfield,106231184,0,4376_7778022_100640,4376_149 -4289_75978,259,4376_16189,UCD Belfield,105764122,0,4376_7778022_100510,4376_149 -4289_75962,270,4376_1619,Dalkey,105277298,0,4376_7778022_100140,4376_22 -4289_75978,260,4376_16190,UCD Belfield,105311202,0,4376_7778022_100781,4376_149 -4289_75978,261,4376_16191,UCD Belfield,105321202,0,4376_7778022_100781,4376_149 -4289_75978,262,4376_16192,UCD Belfield,105431202,0,4376_7778022_100781,4376_149 -4289_75978,263,4376_16193,UCD Belfield,105541202,0,4376_7778022_100781,4376_149 -4289_75978,264,4376_16194,UCD Belfield,105651202,0,4376_7778022_100781,4376_149 -4289_75978,265,4376_16195,UCD Belfield,105811202,0,4376_7778022_100781,4376_149 -4289_75978,266,4376_16196,UCD Belfield,105821202,0,4376_7778022_100781,4376_149 -4289_75978,267,4376_16197,UCD Belfield,106051202,0,4376_7778022_100781,4376_149 -4289_75978,268,4376_16198,UCD Belfield,106141202,0,4376_7778022_100781,4376_149 -4289_75978,269,4376_16199,UCD Belfield,106231202,0,4376_7778022_100781,4376_149 -4289_75960,265,4376_162,Sutton Station,105811704,0,4376_7778022_103102,4376_1 -4289_75962,146,4376_1620,Dalkey,105247298,0,4376_7778022_100140,4376_22 -4289_75978,270,4376_16200,UCD Belfield,105277008,0,4376_7778022_100430,4376_149 -4289_75978,146,4376_16201,UCD Belfield,105247008,0,4376_7778022_100430,4376_149 -4289_75978,271,4376_16202,UCD Belfield,105237008,0,4376_7778022_100430,4376_149 -4289_75978,115,4376_16203,UCD Belfield,105217008,0,4376_7778022_100430,4376_149 -4289_75978,260,4376_16204,UCD Belfield,105311232,0,4376_7778022_100611,4376_149 -4289_75978,261,4376_16205,UCD Belfield,105321232,0,4376_7778022_100611,4376_149 -4289_75978,262,4376_16206,UCD Belfield,105431232,0,4376_7778022_100611,4376_149 -4289_75978,263,4376_16207,UCD Belfield,105541232,0,4376_7778022_100611,4376_149 -4289_75978,264,4376_16208,UCD Belfield,105651232,0,4376_7778022_100611,4376_149 -4289_75978,265,4376_16209,UCD Belfield,105811232,0,4376_7778022_100611,4376_149 -4289_75962,271,4376_1621,Dalkey,105237298,0,4376_7778022_100140,4376_22 -4289_75978,266,4376_16210,UCD Belfield,105821232,0,4376_7778022_100611,4376_149 -4289_75978,267,4376_16211,UCD Belfield,106051232,0,4376_7778022_100611,4376_149 -4289_75978,268,4376_16212,UCD Belfield,106141232,0,4376_7778022_100611,4376_149 -4289_75978,269,4376_16213,UCD Belfield,106231232,0,4376_7778022_100611,4376_149 -4289_75978,259,4376_16214,UCD Belfield,105764138,0,4376_7778022_100500,4376_150 -4289_75978,260,4376_16215,UCD Belfield,105311280,0,4376_7778022_100660,4376_149 -4289_75978,261,4376_16216,UCD Belfield,105321280,0,4376_7778022_100660,4376_149 -4289_75978,262,4376_16217,UCD Belfield,105431280,0,4376_7778022_100660,4376_149 -4289_75978,263,4376_16218,UCD Belfield,105541280,0,4376_7778022_100660,4376_149 -4289_75978,264,4376_16219,UCD Belfield,105651280,0,4376_7778022_100660,4376_149 -4289_75962,115,4376_1622,Dalkey,105217298,0,4376_7778022_100140,4376_22 -4289_75978,265,4376_16220,UCD Belfield,105811280,0,4376_7778022_100660,4376_149 -4289_75978,266,4376_16221,UCD Belfield,105821280,0,4376_7778022_100660,4376_149 -4289_75978,267,4376_16222,UCD Belfield,106051280,0,4376_7778022_100660,4376_149 -4289_75978,268,4376_16223,UCD Belfield,106141280,0,4376_7778022_100660,4376_149 -4289_75978,269,4376_16224,UCD Belfield,106231280,0,4376_7778022_100660,4376_149 -4289_75978,259,4376_16225,UCD Belfield,105764166,0,4376_7778022_100520,4376_149 -4289_75978,270,4376_16226,UCD Belfield,105277016,0,4376_7778022_100440,4376_150 -4289_75978,146,4376_16227,UCD Belfield,105247016,0,4376_7778022_100440,4376_150 -4289_75978,271,4376_16228,UCD Belfield,105237016,0,4376_7778022_100440,4376_150 -4289_75978,115,4376_16229,UCD Belfield,105217016,0,4376_7778022_100440,4376_150 -4289_75962,260,4376_1623,Dalkey,105311822,0,4376_7778022_104030,4376_21 -4289_75978,260,4376_16230,UCD Belfield,105311306,0,4376_7778022_100670,4376_149 -4289_75978,261,4376_16231,UCD Belfield,105321306,0,4376_7778022_100670,4376_149 -4289_75978,262,4376_16232,UCD Belfield,105431306,0,4376_7778022_100670,4376_149 -4289_75978,263,4376_16233,UCD Belfield,105541306,0,4376_7778022_100670,4376_149 -4289_75978,264,4376_16234,UCD Belfield,105651306,0,4376_7778022_100670,4376_149 -4289_75978,265,4376_16235,UCD Belfield,105811306,0,4376_7778022_100670,4376_149 -4289_75978,266,4376_16236,UCD Belfield,105821306,0,4376_7778022_100670,4376_149 -4289_75978,267,4376_16237,UCD Belfield,106051306,0,4376_7778022_100670,4376_149 -4289_75978,268,4376_16238,UCD Belfield,106141306,0,4376_7778022_100670,4376_149 -4289_75978,269,4376_16239,UCD Belfield,106231306,0,4376_7778022_100670,4376_149 -4289_75962,261,4376_1624,Dalkey,105321822,0,4376_7778022_104030,4376_21 -4289_75978,260,4376_16240,UCD Belfield,105311332,0,4376_7778022_100680,4376_149 -4289_75978,261,4376_16241,UCD Belfield,105321332,0,4376_7778022_100680,4376_149 -4289_75978,262,4376_16242,UCD Belfield,105431332,0,4376_7778022_100680,4376_149 -4289_75978,263,4376_16243,UCD Belfield,105541332,0,4376_7778022_100680,4376_149 -4289_75978,264,4376_16244,UCD Belfield,105651332,0,4376_7778022_100680,4376_149 -4289_75978,265,4376_16245,UCD Belfield,105811332,0,4376_7778022_100680,4376_149 -4289_75978,266,4376_16246,UCD Belfield,105821332,0,4376_7778022_100680,4376_149 -4289_75978,267,4376_16247,UCD Belfield,106051332,0,4376_7778022_100680,4376_149 -4289_75978,268,4376_16248,UCD Belfield,106141332,0,4376_7778022_100680,4376_149 -4289_75978,269,4376_16249,UCD Belfield,106231332,0,4376_7778022_100680,4376_149 -4289_75962,262,4376_1625,Dalkey,105431822,0,4376_7778022_104030,4376_21 -4289_75978,259,4376_16250,UCD Belfield,105764192,0,4376_7778022_100530,4376_150 -4289_75978,270,4376_16251,UCD Belfield,105277036,0,4376_7778022_100460,4376_149 -4289_75978,146,4376_16252,UCD Belfield,105247036,0,4376_7778022_100460,4376_149 -4289_75978,271,4376_16253,UCD Belfield,105237036,0,4376_7778022_100460,4376_149 -4289_75978,115,4376_16254,UCD Belfield,105217036,0,4376_7778022_100460,4376_149 -4289_75978,260,4376_16255,UCD Belfield,105311348,0,4376_7778022_100630,4376_149 -4289_75978,261,4376_16256,UCD Belfield,105321348,0,4376_7778022_100630,4376_149 -4289_75978,262,4376_16257,UCD Belfield,105431348,0,4376_7778022_100630,4376_149 -4289_75978,263,4376_16258,UCD Belfield,105541348,0,4376_7778022_100630,4376_149 -4289_75978,264,4376_16259,UCD Belfield,105651348,0,4376_7778022_100630,4376_149 -4289_75962,263,4376_1626,Dalkey,105541822,0,4376_7778022_104030,4376_21 -4289_75978,265,4376_16260,UCD Belfield,105811348,0,4376_7778022_100630,4376_149 -4289_75978,266,4376_16261,UCD Belfield,105821348,0,4376_7778022_100630,4376_149 -4289_75978,267,4376_16262,UCD Belfield,106051348,0,4376_7778022_100630,4376_149 -4289_75978,268,4376_16263,UCD Belfield,106141348,0,4376_7778022_100630,4376_149 -4289_75978,269,4376_16264,UCD Belfield,106231348,0,4376_7778022_100630,4376_149 -4289_75978,259,4376_16265,UCD Belfield,105764208,0,4376_7778022_100550,4376_149 -4289_75978,260,4376_16266,UCD Belfield,105311376,0,4376_7778022_100700,4376_149 -4289_75978,261,4376_16267,UCD Belfield,105321376,0,4376_7778022_100700,4376_149 -4289_75978,262,4376_16268,UCD Belfield,105431376,0,4376_7778022_100700,4376_149 -4289_75978,263,4376_16269,UCD Belfield,105541376,0,4376_7778022_100700,4376_149 -4289_75962,264,4376_1627,Dalkey,105651822,0,4376_7778022_104030,4376_21 -4289_75978,264,4376_16270,UCD Belfield,105651376,0,4376_7778022_100700,4376_149 -4289_75978,265,4376_16271,UCD Belfield,105811376,0,4376_7778022_100700,4376_149 -4289_75978,266,4376_16272,UCD Belfield,105821376,0,4376_7778022_100700,4376_149 -4289_75978,267,4376_16273,UCD Belfield,106051376,0,4376_7778022_100700,4376_149 -4289_75978,268,4376_16274,UCD Belfield,106141376,0,4376_7778022_100700,4376_149 -4289_75978,269,4376_16275,UCD Belfield,106231376,0,4376_7778022_100700,4376_149 -4289_75978,270,4376_16276,UCD Belfield,105277044,0,4376_7778022_100410,4376_149 -4289_75978,146,4376_16277,UCD Belfield,105247044,0,4376_7778022_100410,4376_149 -4289_75978,271,4376_16278,UCD Belfield,105237044,0,4376_7778022_100410,4376_149 -4289_75978,115,4376_16279,UCD Belfield,105217044,0,4376_7778022_100410,4376_149 -4289_75962,265,4376_1628,Dalkey,105811822,0,4376_7778022_104030,4376_21 -4289_75978,260,4376_16280,UCD Belfield,105311398,0,4376_7778022_100720,4376_149 -4289_75978,261,4376_16281,UCD Belfield,105321398,0,4376_7778022_100720,4376_149 -4289_75978,262,4376_16282,UCD Belfield,105431398,0,4376_7778022_100720,4376_149 -4289_75978,263,4376_16283,UCD Belfield,105541398,0,4376_7778022_100720,4376_149 -4289_75978,264,4376_16284,UCD Belfield,105651398,0,4376_7778022_100720,4376_149 -4289_75978,265,4376_16285,UCD Belfield,105811398,0,4376_7778022_100720,4376_149 -4289_75978,266,4376_16286,UCD Belfield,105821398,0,4376_7778022_100720,4376_149 -4289_75978,267,4376_16287,UCD Belfield,106051398,0,4376_7778022_100720,4376_149 -4289_75978,268,4376_16288,UCD Belfield,106141398,0,4376_7778022_100720,4376_149 -4289_75978,269,4376_16289,UCD Belfield,106231398,0,4376_7778022_100720,4376_149 -4289_75962,266,4376_1629,Dalkey,105821822,0,4376_7778022_104030,4376_21 -4289_75978,259,4376_16290,UCD Belfield,105764230,0,4376_7778022_100480,4376_150 -4289_75978,260,4376_16291,UCD Belfield,105311410,0,4376_7778022_100740,4376_149 -4289_75978,261,4376_16292,UCD Belfield,105321410,0,4376_7778022_100740,4376_149 -4289_75978,262,4376_16293,UCD Belfield,105431410,0,4376_7778022_100740,4376_149 -4289_75978,263,4376_16294,UCD Belfield,105541410,0,4376_7778022_100740,4376_149 -4289_75978,264,4376_16295,UCD Belfield,105651410,0,4376_7778022_100740,4376_149 -4289_75978,265,4376_16296,UCD Belfield,105811410,0,4376_7778022_100740,4376_149 -4289_75978,266,4376_16297,UCD Belfield,105821410,0,4376_7778022_100740,4376_149 -4289_75978,267,4376_16298,UCD Belfield,106051410,0,4376_7778022_100740,4376_149 -4289_75978,268,4376_16299,UCD Belfield,106141410,0,4376_7778022_100740,4376_149 -4289_75960,266,4376_163,Sutton Station,105821704,0,4376_7778022_103102,4376_1 -4289_75962,267,4376_1630,Dalkey,106051822,0,4376_7778022_104030,4376_21 -4289_75978,269,4376_16300,UCD Belfield,106231410,0,4376_7778022_100740,4376_149 -4289_75978,259,4376_16301,UCD Belfield,105764252,0,4376_7778022_100540,4376_149 -4289_75978,270,4376_16302,UCD Belfield,105277070,0,4376_7778022_100420,4376_150 -4289_75978,146,4376_16303,UCD Belfield,105247070,0,4376_7778022_100420,4376_150 -4289_75978,271,4376_16304,UCD Belfield,105237070,0,4376_7778022_100420,4376_150 -4289_75978,115,4376_16305,UCD Belfield,105217070,0,4376_7778022_100420,4376_150 -4289_75978,260,4376_16306,UCD Belfield,105311426,0,4376_7778022_100651,4376_149 -4289_75978,261,4376_16307,UCD Belfield,105321426,0,4376_7778022_100651,4376_149 -4289_75978,262,4376_16308,UCD Belfield,105431426,0,4376_7778022_100651,4376_149 -4289_75978,263,4376_16309,UCD Belfield,105541426,0,4376_7778022_100651,4376_149 -4289_75962,268,4376_1631,Dalkey,106141822,0,4376_7778022_104030,4376_21 -4289_75978,264,4376_16310,UCD Belfield,105651426,0,4376_7778022_100651,4376_149 -4289_75978,265,4376_16311,UCD Belfield,105811426,0,4376_7778022_100651,4376_149 -4289_75978,266,4376_16312,UCD Belfield,105821426,0,4376_7778022_100651,4376_149 -4289_75978,267,4376_16313,UCD Belfield,106051426,0,4376_7778022_100651,4376_149 -4289_75978,268,4376_16314,UCD Belfield,106141426,0,4376_7778022_100651,4376_149 -4289_75978,269,4376_16315,UCD Belfield,106231426,0,4376_7778022_100651,4376_149 -4289_75978,260,4376_16316,UCD Belfield,105311450,0,4376_7778022_100600,4376_149 -4289_75978,261,4376_16317,UCD Belfield,105321450,0,4376_7778022_100600,4376_149 -4289_75978,262,4376_16318,UCD Belfield,105431450,0,4376_7778022_100600,4376_149 -4289_75978,263,4376_16319,UCD Belfield,105541450,0,4376_7778022_100600,4376_149 -4289_75962,269,4376_1632,Dalkey,106231822,0,4376_7778022_104030,4376_21 -4289_75978,264,4376_16320,UCD Belfield,105651450,0,4376_7778022_100600,4376_149 -4289_75978,265,4376_16321,UCD Belfield,105811450,0,4376_7778022_100600,4376_149 -4289_75978,266,4376_16322,UCD Belfield,105821450,0,4376_7778022_100600,4376_149 -4289_75978,267,4376_16323,UCD Belfield,106051450,0,4376_7778022_100600,4376_149 -4289_75978,268,4376_16324,UCD Belfield,106141450,0,4376_7778022_100600,4376_149 -4289_75978,269,4376_16325,UCD Belfield,106231450,0,4376_7778022_100600,4376_149 -4289_75978,259,4376_16326,UCD Belfield,105764272,0,4376_7778022_100490,4376_150 -4289_75978,270,4376_16327,UCD Belfield,105277096,0,4376_7778022_100450,4376_149 -4289_75978,146,4376_16328,UCD Belfield,105247096,0,4376_7778022_100450,4376_149 -4289_75978,271,4376_16329,UCD Belfield,105237096,0,4376_7778022_100450,4376_149 -4289_75962,259,4376_1633,Dalkey,105764634,0,4376_7778022_104023,4376_21 -4289_75978,115,4376_16330,UCD Belfield,105217096,0,4376_7778022_100450,4376_149 -4289_75978,260,4376_16331,UCD Belfield,105311462,0,4376_7778022_100690,4376_149 -4289_75978,261,4376_16332,UCD Belfield,105321462,0,4376_7778022_100690,4376_149 -4289_75978,262,4376_16333,UCD Belfield,105431462,0,4376_7778022_100690,4376_149 -4289_75978,263,4376_16334,UCD Belfield,105541462,0,4376_7778022_100690,4376_149 -4289_75978,264,4376_16335,UCD Belfield,105651462,0,4376_7778022_100690,4376_149 -4289_75978,265,4376_16336,UCD Belfield,105811462,0,4376_7778022_100690,4376_149 -4289_75978,266,4376_16337,UCD Belfield,105821462,0,4376_7778022_100690,4376_149 -4289_75978,267,4376_16338,UCD Belfield,106051462,0,4376_7778022_100690,4376_149 -4289_75978,268,4376_16339,UCD Belfield,106141462,0,4376_7778022_100690,4376_149 -4289_75962,270,4376_1634,Dalkey,105277386,0,4376_7778022_100150,4376_22 -4289_75978,269,4376_16340,UCD Belfield,106231462,0,4376_7778022_100690,4376_149 -4289_75978,259,4376_16341,UCD Belfield,105764296,0,4376_7778022_100570,4376_150 -4289_75978,260,4376_16342,UCD Belfield,105311484,0,4376_7778022_100771,4376_149 -4289_75978,261,4376_16343,UCD Belfield,105321484,0,4376_7778022_100771,4376_149 -4289_75978,262,4376_16344,UCD Belfield,105431484,0,4376_7778022_100771,4376_149 -4289_75978,263,4376_16345,UCD Belfield,105541484,0,4376_7778022_100771,4376_149 -4289_75978,264,4376_16346,UCD Belfield,105651484,0,4376_7778022_100771,4376_149 -4289_75978,265,4376_16347,UCD Belfield,105811484,0,4376_7778022_100771,4376_149 -4289_75978,266,4376_16348,UCD Belfield,105821484,0,4376_7778022_100771,4376_149 -4289_75978,267,4376_16349,UCD Belfield,106051484,0,4376_7778022_100771,4376_149 -4289_75962,146,4376_1635,Dalkey,105247386,0,4376_7778022_100150,4376_22 -4289_75978,268,4376_16350,UCD Belfield,106141484,0,4376_7778022_100771,4376_149 -4289_75978,269,4376_16351,UCD Belfield,106231484,0,4376_7778022_100771,4376_149 -4289_75978,259,4376_16352,UCD Belfield,105764308,0,4376_7778022_100510,4376_150 -4289_75978,270,4376_16353,UCD Belfield,105277114,0,4376_7778022_100430,4376_149 -4289_75978,146,4376_16354,UCD Belfield,105247114,0,4376_7778022_100430,4376_149 -4289_75978,271,4376_16355,UCD Belfield,105237114,0,4376_7778022_100430,4376_149 -4289_75978,115,4376_16356,UCD Belfield,105217114,0,4376_7778022_100430,4376_149 -4289_75978,260,4376_16357,UCD Belfield,105311498,0,4376_7778022_100620,4376_149 -4289_75978,261,4376_16358,UCD Belfield,105321498,0,4376_7778022_100620,4376_149 -4289_75978,262,4376_16359,UCD Belfield,105431498,0,4376_7778022_100620,4376_149 -4289_75962,271,4376_1636,Dalkey,105237386,0,4376_7778022_100150,4376_22 -4289_75978,263,4376_16360,UCD Belfield,105541498,0,4376_7778022_100620,4376_149 -4289_75978,264,4376_16361,UCD Belfield,105651498,0,4376_7778022_100620,4376_149 -4289_75978,265,4376_16362,UCD Belfield,105811498,0,4376_7778022_100620,4376_149 -4289_75978,266,4376_16363,UCD Belfield,105821498,0,4376_7778022_100620,4376_149 -4289_75978,267,4376_16364,UCD Belfield,106051498,0,4376_7778022_100620,4376_149 -4289_75978,268,4376_16365,UCD Belfield,106141498,0,4376_7778022_100620,4376_149 -4289_75978,269,4376_16366,UCD Belfield,106231498,0,4376_7778022_100620,4376_149 -4289_75978,259,4376_16367,UCD Belfield,105764328,0,4376_7778022_100500,4376_150 -4289_75978,260,4376_16368,UCD Belfield,105311518,0,4376_7778022_100710,4376_149 -4289_75978,261,4376_16369,UCD Belfield,105321518,0,4376_7778022_100710,4376_149 -4289_75962,115,4376_1637,Dalkey,105217386,0,4376_7778022_100150,4376_22 -4289_75978,262,4376_16370,UCD Belfield,105431518,0,4376_7778022_100710,4376_149 -4289_75978,263,4376_16371,UCD Belfield,105541518,0,4376_7778022_100710,4376_149 -4289_75978,264,4376_16372,UCD Belfield,105651518,0,4376_7778022_100710,4376_149 -4289_75978,265,4376_16373,UCD Belfield,105811518,0,4376_7778022_100710,4376_149 -4289_75978,266,4376_16374,UCD Belfield,105821518,0,4376_7778022_100710,4376_149 -4289_75978,267,4376_16375,UCD Belfield,106051518,0,4376_7778022_100710,4376_149 -4289_75978,268,4376_16376,UCD Belfield,106141518,0,4376_7778022_100710,4376_149 -4289_75978,269,4376_16377,UCD Belfield,106231518,0,4376_7778022_100710,4376_149 -4289_75978,259,4376_16378,UCD Belfield,105764346,0,4376_7778022_100590,4376_150 -4289_75978,270,4376_16379,UCD Belfield,105277138,0,4376_7778022_100440,4376_149 -4289_75962,260,4376_1638,Dalkey,105311930,0,4376_7778022_104071,4376_21 -4289_75978,146,4376_16380,UCD Belfield,105247138,0,4376_7778022_100440,4376_149 -4289_75978,271,4376_16381,UCD Belfield,105237138,0,4376_7778022_100440,4376_149 -4289_75978,115,4376_16382,UCD Belfield,105217138,0,4376_7778022_100440,4376_149 -4289_75978,260,4376_16383,UCD Belfield,105311530,0,4376_7778022_100730,4376_149 -4289_75978,261,4376_16384,UCD Belfield,105321530,0,4376_7778022_100730,4376_149 -4289_75978,262,4376_16385,UCD Belfield,105431530,0,4376_7778022_100730,4376_149 -4289_75978,263,4376_16386,UCD Belfield,105541530,0,4376_7778022_100730,4376_149 -4289_75978,264,4376_16387,UCD Belfield,105651530,0,4376_7778022_100730,4376_149 -4289_75978,265,4376_16388,UCD Belfield,105811530,0,4376_7778022_100730,4376_149 -4289_75978,266,4376_16389,UCD Belfield,105821530,0,4376_7778022_100730,4376_149 -4289_75962,261,4376_1639,Dalkey,105321930,0,4376_7778022_104071,4376_21 -4289_75978,267,4376_16390,UCD Belfield,106051530,0,4376_7778022_100730,4376_149 -4289_75978,268,4376_16391,UCD Belfield,106141530,0,4376_7778022_100730,4376_149 -4289_75978,269,4376_16392,UCD Belfield,106231530,0,4376_7778022_100730,4376_149 -4289_75978,259,4376_16393,UCD Belfield,105764360,0,4376_7778022_100520,4376_150 -4289_75978,260,4376_16394,UCD Belfield,105311548,0,4376_7778022_100750,4376_149 -4289_75978,261,4376_16395,UCD Belfield,105321548,0,4376_7778022_100750,4376_149 -4289_75978,262,4376_16396,UCD Belfield,105431548,0,4376_7778022_100750,4376_149 -4289_75978,263,4376_16397,UCD Belfield,105541548,0,4376_7778022_100750,4376_149 -4289_75978,264,4376_16398,UCD Belfield,105651548,0,4376_7778022_100750,4376_149 -4289_75978,265,4376_16399,UCD Belfield,105811548,0,4376_7778022_100750,4376_149 -4289_75960,267,4376_164,Sutton Station,106051704,0,4376_7778022_103102,4376_1 -4289_75962,262,4376_1640,Dalkey,105431930,0,4376_7778022_104071,4376_21 -4289_75978,266,4376_16400,UCD Belfield,105821548,0,4376_7778022_100750,4376_149 -4289_75978,267,4376_16401,UCD Belfield,106051548,0,4376_7778022_100750,4376_149 -4289_75978,268,4376_16402,UCD Belfield,106141548,0,4376_7778022_100750,4376_149 -4289_75978,269,4376_16403,UCD Belfield,106231548,0,4376_7778022_100750,4376_149 -4289_75978,259,4376_16404,UCD Belfield,105764382,0,4376_7778022_100610,4376_150 -4289_75978,270,4376_16405,UCD Belfield,105277174,0,4376_7778022_100460,4376_149 -4289_75978,146,4376_16406,UCD Belfield,105247174,0,4376_7778022_100460,4376_149 -4289_75978,271,4376_16407,UCD Belfield,105237174,0,4376_7778022_100460,4376_149 -4289_75978,115,4376_16408,UCD Belfield,105217174,0,4376_7778022_100460,4376_149 -4289_75978,260,4376_16409,UCD Belfield,105311568,0,4376_7778022_100760,4376_149 -4289_75962,263,4376_1641,Dalkey,105541930,0,4376_7778022_104071,4376_21 -4289_75978,261,4376_16410,UCD Belfield,105321568,0,4376_7778022_100760,4376_149 -4289_75978,262,4376_16411,UCD Belfield,105431568,0,4376_7778022_100760,4376_149 -4289_75978,263,4376_16412,UCD Belfield,105541568,0,4376_7778022_100760,4376_149 -4289_75978,264,4376_16413,UCD Belfield,105651568,0,4376_7778022_100760,4376_149 -4289_75978,265,4376_16414,UCD Belfield,105811568,0,4376_7778022_100760,4376_149 -4289_75978,266,4376_16415,UCD Belfield,105821568,0,4376_7778022_100760,4376_149 -4289_75978,267,4376_16416,UCD Belfield,106051568,0,4376_7778022_100760,4376_149 -4289_75978,268,4376_16417,UCD Belfield,106141568,0,4376_7778022_100760,4376_149 -4289_75978,269,4376_16418,UCD Belfield,106231568,0,4376_7778022_100760,4376_149 -4289_75978,259,4376_16419,UCD Belfield,105764394,0,4376_7778022_100530,4376_150 -4289_75962,264,4376_1642,Dalkey,105651930,0,4376_7778022_104071,4376_21 -4289_75978,260,4376_16420,UCD Belfield,105311588,0,4376_7778022_100640,4376_149 -4289_75978,261,4376_16421,UCD Belfield,105321588,0,4376_7778022_100640,4376_149 -4289_75978,262,4376_16422,UCD Belfield,105431588,0,4376_7778022_100640,4376_149 -4289_75978,263,4376_16423,UCD Belfield,105541588,0,4376_7778022_100640,4376_149 -4289_75978,264,4376_16424,UCD Belfield,105651588,0,4376_7778022_100640,4376_149 -4289_75978,265,4376_16425,UCD Belfield,105811588,0,4376_7778022_100640,4376_149 -4289_75978,266,4376_16426,UCD Belfield,105821588,0,4376_7778022_100640,4376_149 -4289_75978,267,4376_16427,UCD Belfield,106051588,0,4376_7778022_100640,4376_149 -4289_75978,268,4376_16428,UCD Belfield,106141588,0,4376_7778022_100640,4376_149 -4289_75978,269,4376_16429,UCD Belfield,106231588,0,4376_7778022_100640,4376_149 -4289_75962,265,4376_1643,Dalkey,105811930,0,4376_7778022_104071,4376_21 -4289_75978,259,4376_16430,UCD Belfield,105764412,0,4376_7778022_100561,4376_150 -4289_75978,270,4376_16431,UCD Belfield,105277194,0,4376_7778022_100480,4376_151 -4289_75978,146,4376_16432,UCD Belfield,105247194,0,4376_7778022_100480,4376_151 -4289_75978,271,4376_16433,UCD Belfield,105237194,0,4376_7778022_100480,4376_151 -4289_75978,115,4376_16434,UCD Belfield,105217194,0,4376_7778022_100480,4376_151 -4289_75978,260,4376_16435,UCD Belfield,105311602,0,4376_7778022_100781,4376_149 -4289_75978,261,4376_16436,UCD Belfield,105321602,0,4376_7778022_100781,4376_149 -4289_75978,262,4376_16437,UCD Belfield,105431602,0,4376_7778022_100781,4376_149 -4289_75978,263,4376_16438,UCD Belfield,105541602,0,4376_7778022_100781,4376_149 -4289_75978,264,4376_16439,UCD Belfield,105651602,0,4376_7778022_100781,4376_149 -4289_75962,266,4376_1644,Dalkey,105821930,0,4376_7778022_104071,4376_21 -4289_75978,265,4376_16440,UCD Belfield,105811602,0,4376_7778022_100781,4376_149 -4289_75978,266,4376_16441,UCD Belfield,105821602,0,4376_7778022_100781,4376_149 -4289_75978,267,4376_16442,UCD Belfield,106051602,0,4376_7778022_100781,4376_149 -4289_75978,268,4376_16443,UCD Belfield,106141602,0,4376_7778022_100781,4376_149 -4289_75978,269,4376_16444,UCD Belfield,106231602,0,4376_7778022_100781,4376_149 -4289_75978,259,4376_16445,UCD Belfield,105764424,0,4376_7778022_100550,4376_150 -4289_75978,270,4376_16446,UCD Belfield,105277222,0,4376_7778022_100410,4376_149 -4289_75978,146,4376_16447,UCD Belfield,105247222,0,4376_7778022_100410,4376_149 -4289_75978,271,4376_16448,UCD Belfield,105237222,0,4376_7778022_100410,4376_149 -4289_75978,115,4376_16449,UCD Belfield,105217222,0,4376_7778022_100410,4376_149 -4289_75962,267,4376_1645,Dalkey,106051930,0,4376_7778022_104071,4376_21 -4289_75978,260,4376_16450,UCD Belfield,105311628,0,4376_7778022_100660,4376_149 -4289_75978,261,4376_16451,UCD Belfield,105321628,0,4376_7778022_100660,4376_149 -4289_75978,262,4376_16452,UCD Belfield,105431628,0,4376_7778022_100660,4376_149 -4289_75978,263,4376_16453,UCD Belfield,105541628,0,4376_7778022_100660,4376_149 -4289_75978,264,4376_16454,UCD Belfield,105651628,0,4376_7778022_100660,4376_149 -4289_75978,265,4376_16455,UCD Belfield,105811628,0,4376_7778022_100660,4376_149 -4289_75978,266,4376_16456,UCD Belfield,105821628,0,4376_7778022_100660,4376_149 -4289_75978,267,4376_16457,UCD Belfield,106051628,0,4376_7778022_100660,4376_149 -4289_75978,268,4376_16458,UCD Belfield,106141628,0,4376_7778022_100660,4376_149 -4289_75978,269,4376_16459,UCD Belfield,106231628,0,4376_7778022_100660,4376_149 -4289_75962,268,4376_1646,Dalkey,106141930,0,4376_7778022_104071,4376_21 -4289_75978,259,4376_16460,UCD Belfield,105764450,0,4376_7778022_100480,4376_150 -4289_75978,260,4376_16461,UCD Belfield,105311640,0,4376_7778022_100670,4376_149 -4289_75978,261,4376_16462,UCD Belfield,105321640,0,4376_7778022_100670,4376_149 -4289_75978,262,4376_16463,UCD Belfield,105431640,0,4376_7778022_100670,4376_149 -4289_75978,263,4376_16464,UCD Belfield,105541640,0,4376_7778022_100670,4376_149 -4289_75978,264,4376_16465,UCD Belfield,105651640,0,4376_7778022_100670,4376_149 -4289_75978,265,4376_16466,UCD Belfield,105811640,0,4376_7778022_100670,4376_149 -4289_75978,266,4376_16467,UCD Belfield,105821640,0,4376_7778022_100670,4376_149 -4289_75978,267,4376_16468,UCD Belfield,106051640,0,4376_7778022_100670,4376_149 -4289_75978,268,4376_16469,UCD Belfield,106141640,0,4376_7778022_100670,4376_149 -4289_75962,269,4376_1647,Dalkey,106231930,0,4376_7778022_104071,4376_21 -4289_75978,269,4376_16470,UCD Belfield,106231640,0,4376_7778022_100670,4376_149 -4289_75978,259,4376_16471,UCD Belfield,105764462,0,4376_7778022_100580,4376_150 -4289_75978,270,4376_16472,UCD Belfield,105277240,0,4376_7778022_100420,4376_151 -4289_75978,146,4376_16473,UCD Belfield,105247240,0,4376_7778022_100420,4376_151 -4289_75978,271,4376_16474,UCD Belfield,105237240,0,4376_7778022_100420,4376_151 -4289_75978,115,4376_16475,UCD Belfield,105217240,0,4376_7778022_100420,4376_151 -4289_75978,260,4376_16476,UCD Belfield,105311664,0,4376_7778022_100680,4376_149 -4289_75978,261,4376_16477,UCD Belfield,105321664,0,4376_7778022_100680,4376_149 -4289_75978,262,4376_16478,UCD Belfield,105431664,0,4376_7778022_100680,4376_149 -4289_75978,263,4376_16479,UCD Belfield,105541664,0,4376_7778022_100680,4376_149 -4289_75962,259,4376_1648,Dalkey,105764740,0,4376_7778022_104042,4376_22 -4289_75978,264,4376_16480,UCD Belfield,105651664,0,4376_7778022_100680,4376_149 -4289_75978,265,4376_16481,UCD Belfield,105811664,0,4376_7778022_100680,4376_149 -4289_75978,266,4376_16482,UCD Belfield,105821664,0,4376_7778022_100680,4376_149 -4289_75978,267,4376_16483,UCD Belfield,106051664,0,4376_7778022_100680,4376_149 -4289_75978,268,4376_16484,UCD Belfield,106141664,0,4376_7778022_100680,4376_149 -4289_75978,269,4376_16485,UCD Belfield,106231664,0,4376_7778022_100680,4376_149 -4289_75978,259,4376_16486,UCD Belfield,105764476,0,4376_7778022_100540,4376_150 -4289_75978,270,4376_16487,UCD Belfield,105277262,0,4376_7778022_100450,4376_149 -4289_75978,146,4376_16488,UCD Belfield,105247262,0,4376_7778022_100450,4376_149 -4289_75978,271,4376_16489,UCD Belfield,105237262,0,4376_7778022_100450,4376_149 -4289_75962,270,4376_1649,Dalkey,105277478,0,4376_7778022_100140,4376_24 -4289_75978,115,4376_16490,UCD Belfield,105217262,0,4376_7778022_100450,4376_149 -4289_75978,260,4376_16491,UCD Belfield,105311676,0,4376_7778022_100630,4376_149 -4289_75978,261,4376_16492,UCD Belfield,105321676,0,4376_7778022_100630,4376_149 -4289_75978,262,4376_16493,UCD Belfield,105431676,0,4376_7778022_100630,4376_149 -4289_75978,263,4376_16494,UCD Belfield,105541676,0,4376_7778022_100630,4376_149 -4289_75978,264,4376_16495,UCD Belfield,105651676,0,4376_7778022_100630,4376_149 -4289_75978,265,4376_16496,UCD Belfield,105811676,0,4376_7778022_100630,4376_149 -4289_75978,266,4376_16497,UCD Belfield,105821676,0,4376_7778022_100630,4376_149 -4289_75978,267,4376_16498,UCD Belfield,106051676,0,4376_7778022_100630,4376_149 -4289_75978,268,4376_16499,UCD Belfield,106141676,0,4376_7778022_100630,4376_149 -4289_75960,268,4376_165,Sutton Station,106141704,0,4376_7778022_103102,4376_1 -4289_75962,146,4376_1650,Dalkey,105247478,0,4376_7778022_100140,4376_24 -4289_75978,269,4376_16500,UCD Belfield,106231676,0,4376_7778022_100630,4376_149 -4289_75978,259,4376_16501,UCD Belfield,105764500,0,4376_7778022_100600,4376_150 -4289_75978,260,4376_16502,UCD Belfield,105311698,0,4376_7778022_100700,4376_149 -4289_75978,261,4376_16503,UCD Belfield,105321698,0,4376_7778022_100700,4376_149 -4289_75978,262,4376_16504,UCD Belfield,105431698,0,4376_7778022_100700,4376_149 -4289_75978,263,4376_16505,UCD Belfield,105541698,0,4376_7778022_100700,4376_149 -4289_75978,264,4376_16506,UCD Belfield,105651698,0,4376_7778022_100700,4376_149 -4289_75978,265,4376_16507,UCD Belfield,105811698,0,4376_7778022_100700,4376_149 -4289_75978,266,4376_16508,UCD Belfield,105821698,0,4376_7778022_100700,4376_149 -4289_75978,267,4376_16509,UCD Belfield,106051698,0,4376_7778022_100700,4376_149 -4289_75962,271,4376_1651,Dalkey,105237478,0,4376_7778022_100140,4376_24 -4289_75978,268,4376_16510,UCD Belfield,106141698,0,4376_7778022_100700,4376_149 -4289_75978,269,4376_16511,UCD Belfield,106231698,0,4376_7778022_100700,4376_149 -4289_75978,259,4376_16512,UCD Belfield,105764516,0,4376_7778022_100490,4376_149 -4289_75978,270,4376_16513,UCD Belfield,105277286,0,4376_7778022_100470,4376_150 -4289_75978,146,4376_16514,UCD Belfield,105247286,0,4376_7778022_100470,4376_150 -4289_75978,271,4376_16515,UCD Belfield,105237286,0,4376_7778022_100470,4376_150 -4289_75978,115,4376_16516,UCD Belfield,105217286,0,4376_7778022_100470,4376_150 -4289_75978,260,4376_16517,UCD Belfield,105311712,0,4376_7778022_100720,4376_149 -4289_75978,261,4376_16518,UCD Belfield,105321712,0,4376_7778022_100720,4376_149 -4289_75978,262,4376_16519,UCD Belfield,105431712,0,4376_7778022_100720,4376_149 -4289_75962,115,4376_1652,Dalkey,105217478,0,4376_7778022_100140,4376_24 -4289_75978,263,4376_16520,UCD Belfield,105541712,0,4376_7778022_100720,4376_149 -4289_75978,264,4376_16521,UCD Belfield,105651712,0,4376_7778022_100720,4376_149 -4289_75978,265,4376_16522,UCD Belfield,105811712,0,4376_7778022_100720,4376_149 -4289_75978,266,4376_16523,UCD Belfield,105821712,0,4376_7778022_100720,4376_149 -4289_75978,267,4376_16524,UCD Belfield,106051712,0,4376_7778022_100720,4376_149 -4289_75978,268,4376_16525,UCD Belfield,106141712,0,4376_7778022_100720,4376_149 -4289_75978,269,4376_16526,UCD Belfield,106231712,0,4376_7778022_100720,4376_149 -4289_75978,259,4376_16527,UCD Belfield,105764538,0,4376_7778022_100570,4376_149 -4289_75978,270,4376_16528,UCD Belfield,105277314,0,4376_7778022_100500,4376_149 -4289_75978,146,4376_16529,UCD Belfield,105247314,0,4376_7778022_100500,4376_149 -4289_75962,260,4376_1653,Dalkey,105312030,0,4376_7778022_104030,4376_21 -4289_75978,271,4376_16530,UCD Belfield,105237314,0,4376_7778022_100500,4376_149 -4289_75978,115,4376_16531,UCD Belfield,105217314,0,4376_7778022_100500,4376_149 -4289_75978,260,4376_16532,UCD Belfield,105311730,0,4376_7778022_100740,4376_149 -4289_75978,261,4376_16533,UCD Belfield,105321730,0,4376_7778022_100740,4376_149 -4289_75978,262,4376_16534,UCD Belfield,105431730,0,4376_7778022_100740,4376_149 -4289_75978,263,4376_16535,UCD Belfield,105541730,0,4376_7778022_100740,4376_149 -4289_75978,264,4376_16536,UCD Belfield,105651730,0,4376_7778022_100740,4376_149 -4289_75978,265,4376_16537,UCD Belfield,105811730,0,4376_7778022_100740,4376_149 -4289_75978,266,4376_16538,UCD Belfield,105821730,0,4376_7778022_100740,4376_149 -4289_75978,267,4376_16539,UCD Belfield,106051730,0,4376_7778022_100740,4376_149 -4289_75962,261,4376_1654,Dalkey,105322030,0,4376_7778022_104030,4376_21 -4289_75978,268,4376_16540,UCD Belfield,106141730,0,4376_7778022_100740,4376_149 -4289_75978,269,4376_16541,UCD Belfield,106231730,0,4376_7778022_100740,4376_149 -4289_75978,259,4376_16542,UCD Belfield,105764552,0,4376_7778022_100510,4376_149 -4289_75978,260,4376_16543,UCD Belfield,105311746,0,4376_7778022_100600,4376_149 -4289_75978,261,4376_16544,UCD Belfield,105321746,0,4376_7778022_100600,4376_149 -4289_75978,262,4376_16545,UCD Belfield,105431746,0,4376_7778022_100600,4376_149 -4289_75978,263,4376_16546,UCD Belfield,105541746,0,4376_7778022_100600,4376_149 -4289_75978,264,4376_16547,UCD Belfield,105651746,0,4376_7778022_100600,4376_149 -4289_75978,265,4376_16548,UCD Belfield,105811746,0,4376_7778022_100600,4376_149 -4289_75978,266,4376_16549,UCD Belfield,105821746,0,4376_7778022_100600,4376_149 -4289_75962,262,4376_1655,Dalkey,105432030,0,4376_7778022_104030,4376_21 -4289_75978,267,4376_16550,UCD Belfield,106051746,0,4376_7778022_100600,4376_149 -4289_75978,268,4376_16551,UCD Belfield,106141746,0,4376_7778022_100600,4376_149 -4289_75978,269,4376_16552,UCD Belfield,106231746,0,4376_7778022_100600,4376_149 -4289_75978,259,4376_16553,UCD Belfield,105764564,0,4376_7778022_100630,4376_149 -4289_75978,270,4376_16554,UCD Belfield,105277330,0,4376_7778022_100430,4376_150 -4289_75978,146,4376_16555,UCD Belfield,105247330,0,4376_7778022_100430,4376_150 -4289_75978,271,4376_16556,UCD Belfield,105237330,0,4376_7778022_100430,4376_150 -4289_75978,115,4376_16557,UCD Belfield,105217330,0,4376_7778022_100430,4376_150 -4289_75978,260,4376_16558,UCD Belfield,105311770,0,4376_7778022_100690,4376_149 -4289_75978,261,4376_16559,UCD Belfield,105321770,0,4376_7778022_100690,4376_149 -4289_75962,263,4376_1656,Dalkey,105542030,0,4376_7778022_104030,4376_21 -4289_75978,262,4376_16560,UCD Belfield,105431770,0,4376_7778022_100690,4376_149 -4289_75978,263,4376_16561,UCD Belfield,105541770,0,4376_7778022_100690,4376_149 -4289_75978,264,4376_16562,UCD Belfield,105651770,0,4376_7778022_100690,4376_149 -4289_75978,265,4376_16563,UCD Belfield,105811770,0,4376_7778022_100690,4376_149 -4289_75978,266,4376_16564,UCD Belfield,105821770,0,4376_7778022_100690,4376_149 -4289_75978,267,4376_16565,UCD Belfield,106051770,0,4376_7778022_100690,4376_149 -4289_75978,268,4376_16566,UCD Belfield,106141770,0,4376_7778022_100690,4376_149 -4289_75978,269,4376_16567,UCD Belfield,106231770,0,4376_7778022_100690,4376_149 -4289_75978,259,4376_16568,UCD Belfield,105764578,0,4376_7778022_100500,4376_149 -4289_75978,270,4376_16569,UCD Belfield,105277356,0,4376_7778022_100440,4376_149 -4289_75962,264,4376_1657,Dalkey,105652030,0,4376_7778022_104030,4376_21 -4289_75978,146,4376_16570,UCD Belfield,105247356,0,4376_7778022_100440,4376_149 -4289_75978,271,4376_16571,UCD Belfield,105237356,0,4376_7778022_100440,4376_149 -4289_75978,115,4376_16572,UCD Belfield,105217356,0,4376_7778022_100440,4376_149 -4289_75978,260,4376_16573,UCD Belfield,105311788,0,4376_7778022_100620,4376_149 -4289_75978,261,4376_16574,UCD Belfield,105321788,0,4376_7778022_100620,4376_149 -4289_75978,262,4376_16575,UCD Belfield,105431788,0,4376_7778022_100620,4376_149 -4289_75978,263,4376_16576,UCD Belfield,105541788,0,4376_7778022_100620,4376_149 -4289_75978,264,4376_16577,UCD Belfield,105651788,0,4376_7778022_100620,4376_149 -4289_75978,265,4376_16578,UCD Belfield,105811788,0,4376_7778022_100620,4376_149 -4289_75978,266,4376_16579,UCD Belfield,105821788,0,4376_7778022_100620,4376_149 -4289_75962,265,4376_1658,Dalkey,105812030,0,4376_7778022_104030,4376_21 -4289_75978,267,4376_16580,UCD Belfield,106051788,0,4376_7778022_100620,4376_149 -4289_75978,268,4376_16581,UCD Belfield,106141788,0,4376_7778022_100620,4376_149 -4289_75978,269,4376_16582,UCD Belfield,106231788,0,4376_7778022_100620,4376_149 -4289_75978,259,4376_16583,UCD Belfield,105764604,0,4376_7778022_100590,4376_149 -4289_75978,260,4376_16584,UCD Belfield,105311802,0,4376_7778022_100710,4376_149 -4289_75978,261,4376_16585,UCD Belfield,105321802,0,4376_7778022_100710,4376_149 -4289_75978,262,4376_16586,UCD Belfield,105431802,0,4376_7778022_100710,4376_149 -4289_75978,263,4376_16587,UCD Belfield,105541802,0,4376_7778022_100710,4376_149 -4289_75978,264,4376_16588,UCD Belfield,105651802,0,4376_7778022_100710,4376_149 -4289_75978,265,4376_16589,UCD Belfield,105811802,0,4376_7778022_100710,4376_149 -4289_75962,266,4376_1659,Dalkey,105822030,0,4376_7778022_104030,4376_21 -4289_75978,266,4376_16590,UCD Belfield,105821802,0,4376_7778022_100710,4376_149 -4289_75978,267,4376_16591,UCD Belfield,106051802,0,4376_7778022_100710,4376_149 -4289_75978,268,4376_16592,UCD Belfield,106141802,0,4376_7778022_100710,4376_149 -4289_75978,269,4376_16593,UCD Belfield,106231802,0,4376_7778022_100710,4376_149 -4289_75978,259,4376_16594,UCD Belfield,105764614,0,4376_7778022_100620,4376_150 -4289_75978,270,4376_16595,UCD Belfield,105277376,0,4376_7778022_100490,4376_151 -4289_75978,146,4376_16596,UCD Belfield,105247376,0,4376_7778022_100490,4376_151 -4289_75978,271,4376_16597,UCD Belfield,105237376,0,4376_7778022_100490,4376_151 -4289_75978,115,4376_16598,UCD Belfield,105217376,0,4376_7778022_100490,4376_151 -4289_75978,260,4376_16599,UCD Belfield,105311828,0,4376_7778022_100730,4376_149 -4289_75960,269,4376_166,Sutton Station,106231704,0,4376_7778022_103102,4376_1 -4289_75962,267,4376_1660,Dalkey,106052030,0,4376_7778022_104030,4376_21 -4289_75978,261,4376_16600,UCD Belfield,105321828,0,4376_7778022_100730,4376_149 -4289_75978,262,4376_16601,UCD Belfield,105431828,0,4376_7778022_100730,4376_149 -4289_75978,263,4376_16602,UCD Belfield,105541828,0,4376_7778022_100730,4376_149 -4289_75978,264,4376_16603,UCD Belfield,105651828,0,4376_7778022_100730,4376_149 -4289_75978,265,4376_16604,UCD Belfield,105811828,0,4376_7778022_100730,4376_149 -4289_75978,266,4376_16605,UCD Belfield,105821828,0,4376_7778022_100730,4376_149 -4289_75978,267,4376_16606,UCD Belfield,106051828,0,4376_7778022_100730,4376_149 -4289_75978,268,4376_16607,UCD Belfield,106141828,0,4376_7778022_100730,4376_149 -4289_75978,269,4376_16608,UCD Belfield,106231828,0,4376_7778022_100730,4376_149 -4289_75978,259,4376_16609,UCD Belfield,105764640,0,4376_7778022_100520,4376_150 -4289_75962,268,4376_1661,Dalkey,106142030,0,4376_7778022_104030,4376_21 -4289_75978,270,4376_16610,UCD Belfield,105277400,0,4376_7778022_100460,4376_149 -4289_75978,146,4376_16611,UCD Belfield,105247400,0,4376_7778022_100460,4376_149 -4289_75978,271,4376_16612,UCD Belfield,105237400,0,4376_7778022_100460,4376_149 -4289_75978,115,4376_16613,UCD Belfield,105217400,0,4376_7778022_100460,4376_149 -4289_75978,260,4376_16614,UCD Belfield,105311842,0,4376_7778022_100750,4376_149 -4289_75978,261,4376_16615,UCD Belfield,105321842,0,4376_7778022_100750,4376_149 -4289_75978,262,4376_16616,UCD Belfield,105431842,0,4376_7778022_100750,4376_149 -4289_75978,263,4376_16617,UCD Belfield,105541842,0,4376_7778022_100750,4376_149 -4289_75978,264,4376_16618,UCD Belfield,105651842,0,4376_7778022_100750,4376_149 -4289_75978,265,4376_16619,UCD Belfield,105811842,0,4376_7778022_100750,4376_149 -4289_75962,269,4376_1662,Dalkey,106232030,0,4376_7778022_104030,4376_21 -4289_75978,266,4376_16620,UCD Belfield,105821842,0,4376_7778022_100750,4376_149 -4289_75978,267,4376_16621,UCD Belfield,106051842,0,4376_7778022_100750,4376_149 -4289_75978,268,4376_16622,UCD Belfield,106141842,0,4376_7778022_100750,4376_149 -4289_75978,269,4376_16623,UCD Belfield,106231842,0,4376_7778022_100750,4376_149 -4289_75978,259,4376_16624,UCD Belfield,105764650,0,4376_7778022_100610,4376_150 -4289_75978,260,4376_16625,UCD Belfield,105311856,0,4376_7778022_100760,4376_149 -4289_75978,261,4376_16626,UCD Belfield,105321856,0,4376_7778022_100760,4376_149 -4289_75978,262,4376_16627,UCD Belfield,105431856,0,4376_7778022_100760,4376_149 -4289_75978,263,4376_16628,UCD Belfield,105541856,0,4376_7778022_100760,4376_149 -4289_75978,264,4376_16629,UCD Belfield,105651856,0,4376_7778022_100760,4376_149 -4289_75962,259,4376_1663,Dalkey,105764842,0,4376_7778022_104201,4376_21 -4289_75978,265,4376_16630,UCD Belfield,105811856,0,4376_7778022_100760,4376_149 -4289_75978,266,4376_16631,UCD Belfield,105821856,0,4376_7778022_100760,4376_149 -4289_75978,267,4376_16632,UCD Belfield,106051856,0,4376_7778022_100760,4376_149 -4289_75978,268,4376_16633,UCD Belfield,106141856,0,4376_7778022_100760,4376_149 -4289_75978,269,4376_16634,UCD Belfield,106231856,0,4376_7778022_100760,4376_149 -4289_75978,259,4376_16635,UCD Belfield,105764668,0,4376_7778022_100650,4376_150 -4289_75978,270,4376_16636,UCD Belfield,105277422,0,4376_7778022_100480,4376_151 -4289_75978,146,4376_16637,UCD Belfield,105247422,0,4376_7778022_100480,4376_151 -4289_75978,271,4376_16638,UCD Belfield,105237422,0,4376_7778022_100480,4376_151 -4289_75978,115,4376_16639,UCD Belfield,105217422,0,4376_7778022_100480,4376_151 -4289_75962,270,4376_1664,Dalkey,105277572,0,4376_7778022_100150,4376_22 -4289_75978,260,4376_16640,UCD Belfield,105311882,0,4376_7778022_100612,4376_149 -4289_75978,261,4376_16641,UCD Belfield,105321882,0,4376_7778022_100612,4376_149 -4289_75978,262,4376_16642,UCD Belfield,105431882,0,4376_7778022_100612,4376_149 -4289_75978,263,4376_16643,UCD Belfield,105541882,0,4376_7778022_100612,4376_149 -4289_75978,264,4376_16644,UCD Belfield,105651882,0,4376_7778022_100612,4376_149 -4289_75978,265,4376_16645,UCD Belfield,105811882,0,4376_7778022_100612,4376_149 -4289_75978,266,4376_16646,UCD Belfield,105821882,0,4376_7778022_100612,4376_149 -4289_75978,267,4376_16647,UCD Belfield,106051882,0,4376_7778022_100612,4376_149 -4289_75978,268,4376_16648,UCD Belfield,106141882,0,4376_7778022_100612,4376_149 -4289_75978,269,4376_16649,UCD Belfield,106231882,0,4376_7778022_100612,4376_149 -4289_75962,146,4376_1665,Dalkey,105247572,0,4376_7778022_100150,4376_22 -4289_75978,259,4376_16650,UCD Belfield,105764690,0,4376_7778022_100530,4376_150 -4289_75978,270,4376_16651,UCD Belfield,105277446,0,4376_7778022_100410,4376_149 -4289_75978,146,4376_16652,UCD Belfield,105247446,0,4376_7778022_100410,4376_149 -4289_75978,271,4376_16653,UCD Belfield,105237446,0,4376_7778022_100410,4376_149 -4289_75978,115,4376_16654,UCD Belfield,105217446,0,4376_7778022_100410,4376_149 -4289_75978,260,4376_16655,UCD Belfield,105311896,0,4376_7778022_100640,4376_149 -4289_75978,261,4376_16656,UCD Belfield,105321896,0,4376_7778022_100640,4376_149 -4289_75978,262,4376_16657,UCD Belfield,105431896,0,4376_7778022_100640,4376_149 -4289_75978,263,4376_16658,UCD Belfield,105541896,0,4376_7778022_100640,4376_149 -4289_75978,264,4376_16659,UCD Belfield,105651896,0,4376_7778022_100640,4376_149 -4289_75962,271,4376_1666,Dalkey,105237572,0,4376_7778022_100150,4376_22 -4289_75978,265,4376_16660,UCD Belfield,105811896,0,4376_7778022_100640,4376_149 -4289_75978,266,4376_16661,UCD Belfield,105821896,0,4376_7778022_100640,4376_149 -4289_75978,267,4376_16662,UCD Belfield,106051896,0,4376_7778022_100640,4376_149 -4289_75978,268,4376_16663,UCD Belfield,106141896,0,4376_7778022_100640,4376_149 -4289_75978,269,4376_16664,UCD Belfield,106231896,0,4376_7778022_100640,4376_149 -4289_75978,259,4376_16665,UCD Belfield,105764706,0,4376_7778022_100561,4376_150 -4289_75978,260,4376_16666,UCD Belfield,105311914,0,4376_7778022_100781,4376_149 -4289_75978,261,4376_16667,UCD Belfield,105321914,0,4376_7778022_100781,4376_149 -4289_75978,262,4376_16668,UCD Belfield,105431914,0,4376_7778022_100781,4376_149 -4289_75978,263,4376_16669,UCD Belfield,105541914,0,4376_7778022_100781,4376_149 -4289_75962,115,4376_1667,Dalkey,105217572,0,4376_7778022_100150,4376_22 -4289_75978,264,4376_16670,UCD Belfield,105651914,0,4376_7778022_100781,4376_149 -4289_75978,265,4376_16671,UCD Belfield,105811914,0,4376_7778022_100781,4376_149 -4289_75978,266,4376_16672,UCD Belfield,105821914,0,4376_7778022_100781,4376_149 -4289_75978,267,4376_16673,UCD Belfield,106051914,0,4376_7778022_100781,4376_149 -4289_75978,268,4376_16674,UCD Belfield,106141914,0,4376_7778022_100781,4376_149 -4289_75978,269,4376_16675,UCD Belfield,106231914,0,4376_7778022_100781,4376_149 -4289_75978,259,4376_16676,UCD Belfield,105764716,0,4376_7778022_100550,4376_150 -4289_75978,270,4376_16677,UCD Belfield,105277466,0,4376_7778022_100420,4376_151 -4289_75978,146,4376_16678,UCD Belfield,105247466,0,4376_7778022_100420,4376_151 -4289_75978,271,4376_16679,UCD Belfield,105237466,0,4376_7778022_100420,4376_151 -4289_75962,260,4376_1668,Dalkey,105312164,0,4376_7778022_100172,4376_21 -4289_75978,115,4376_16680,UCD Belfield,105217466,0,4376_7778022_100420,4376_151 -4289_75978,260,4376_16681,UCD Belfield,105311934,0,4376_7778022_100660,4376_149 -4289_75978,261,4376_16682,UCD Belfield,105321934,0,4376_7778022_100660,4376_149 -4289_75978,262,4376_16683,UCD Belfield,105431934,0,4376_7778022_100660,4376_149 -4289_75978,263,4376_16684,UCD Belfield,105541934,0,4376_7778022_100660,4376_149 -4289_75978,264,4376_16685,UCD Belfield,105651934,0,4376_7778022_100660,4376_149 -4289_75978,265,4376_16686,UCD Belfield,105811934,0,4376_7778022_100660,4376_149 -4289_75978,266,4376_16687,UCD Belfield,105821934,0,4376_7778022_100660,4376_149 -4289_75978,267,4376_16688,UCD Belfield,106051934,0,4376_7778022_100660,4376_149 -4289_75978,268,4376_16689,UCD Belfield,106141934,0,4376_7778022_100660,4376_149 -4289_75962,261,4376_1669,Dalkey,105322164,0,4376_7778022_100172,4376_21 -4289_75978,269,4376_16690,UCD Belfield,106231934,0,4376_7778022_100660,4376_149 -4289_75978,259,4376_16691,UCD Belfield,105764734,0,4376_7778022_100480,4376_150 -4289_75978,270,4376_16692,UCD Belfield,105277496,0,4376_7778022_100450,4376_149 -4289_75978,146,4376_16693,UCD Belfield,105247496,0,4376_7778022_100450,4376_149 -4289_75978,271,4376_16694,UCD Belfield,105237496,0,4376_7778022_100450,4376_149 -4289_75978,115,4376_16695,UCD Belfield,105217496,0,4376_7778022_100450,4376_149 -4289_75978,260,4376_16696,UCD Belfield,105311948,0,4376_7778022_100670,4376_149 -4289_75978,261,4376_16697,UCD Belfield,105321948,0,4376_7778022_100670,4376_149 -4289_75978,262,4376_16698,UCD Belfield,105431948,0,4376_7778022_100670,4376_149 -4289_75978,263,4376_16699,UCD Belfield,105541948,0,4376_7778022_100670,4376_149 -4289_75960,259,4376_167,Sutton Station,105764520,0,4376_7778022_103503,4376_2 -4289_75962,262,4376_1670,Dalkey,105432164,0,4376_7778022_100172,4376_21 -4289_75978,264,4376_16700,UCD Belfield,105651948,0,4376_7778022_100670,4376_149 -4289_75978,265,4376_16701,UCD Belfield,105811948,0,4376_7778022_100670,4376_149 -4289_75978,266,4376_16702,UCD Belfield,105821948,0,4376_7778022_100670,4376_149 -4289_75978,267,4376_16703,UCD Belfield,106051948,0,4376_7778022_100670,4376_149 -4289_75978,268,4376_16704,UCD Belfield,106141948,0,4376_7778022_100670,4376_149 -4289_75978,269,4376_16705,UCD Belfield,106231948,0,4376_7778022_100670,4376_149 -4289_75978,259,4376_16706,UCD Belfield,105764754,0,4376_7778022_100580,4376_150 -4289_75978,260,4376_16707,UCD Belfield,105311964,0,4376_7778022_100680,4376_149 -4289_75978,261,4376_16708,UCD Belfield,105321964,0,4376_7778022_100680,4376_149 -4289_75978,262,4376_16709,UCD Belfield,105431964,0,4376_7778022_100680,4376_149 -4289_75962,263,4376_1671,Dalkey,105542164,0,4376_7778022_100172,4376_21 -4289_75978,263,4376_16710,UCD Belfield,105541964,0,4376_7778022_100680,4376_149 -4289_75978,264,4376_16711,UCD Belfield,105651964,0,4376_7778022_100680,4376_149 -4289_75978,265,4376_16712,UCD Belfield,105811964,0,4376_7778022_100680,4376_149 -4289_75978,266,4376_16713,UCD Belfield,105821964,0,4376_7778022_100680,4376_149 -4289_75978,267,4376_16714,UCD Belfield,106051964,0,4376_7778022_100680,4376_149 -4289_75978,268,4376_16715,UCD Belfield,106141964,0,4376_7778022_100680,4376_149 -4289_75978,269,4376_16716,UCD Belfield,106231964,0,4376_7778022_100680,4376_149 -4289_75978,259,4376_16717,UCD Belfield,105764768,0,4376_7778022_100540,4376_149 -4289_75978,270,4376_16718,UCD Belfield,105277506,0,4376_7778022_100470,4376_150 -4289_75978,146,4376_16719,UCD Belfield,105247506,0,4376_7778022_100470,4376_150 -4289_75962,264,4376_1672,Dalkey,105652164,0,4376_7778022_100172,4376_21 -4289_75978,271,4376_16720,UCD Belfield,105237506,0,4376_7778022_100470,4376_150 -4289_75978,115,4376_16721,UCD Belfield,105217506,0,4376_7778022_100470,4376_150 -4289_75978,260,4376_16722,UCD Belfield,105311990,0,4376_7778022_100630,4376_149 -4289_75978,261,4376_16723,UCD Belfield,105321990,0,4376_7778022_100630,4376_149 -4289_75978,262,4376_16724,UCD Belfield,105431990,0,4376_7778022_100630,4376_149 -4289_75978,263,4376_16725,UCD Belfield,105541990,0,4376_7778022_100630,4376_149 -4289_75978,264,4376_16726,UCD Belfield,105651990,0,4376_7778022_100630,4376_149 -4289_75978,265,4376_16727,UCD Belfield,105811990,0,4376_7778022_100630,4376_149 -4289_75978,266,4376_16728,UCD Belfield,105821990,0,4376_7778022_100630,4376_149 -4289_75978,267,4376_16729,UCD Belfield,106051990,0,4376_7778022_100630,4376_149 -4289_75962,265,4376_1673,Dalkey,105812164,0,4376_7778022_100172,4376_21 -4289_75978,268,4376_16730,UCD Belfield,106141990,0,4376_7778022_100630,4376_149 -4289_75978,269,4376_16731,UCD Belfield,106231990,0,4376_7778022_100630,4376_149 -4289_75978,259,4376_16732,UCD Belfield,105764792,0,4376_7778022_100600,4376_149 -4289_75978,270,4376_16733,UCD Belfield,105277534,0,4376_7778022_100500,4376_149 -4289_75978,146,4376_16734,UCD Belfield,105247534,0,4376_7778022_100500,4376_149 -4289_75978,271,4376_16735,UCD Belfield,105237534,0,4376_7778022_100500,4376_149 -4289_75978,115,4376_16736,UCD Belfield,105217534,0,4376_7778022_100500,4376_149 -4289_75978,260,4376_16737,UCD Belfield,105312004,0,4376_7778022_100652,4376_149 -4289_75978,261,4376_16738,UCD Belfield,105322004,0,4376_7778022_100652,4376_149 -4289_75978,262,4376_16739,UCD Belfield,105432004,0,4376_7778022_100652,4376_149 -4289_75962,266,4376_1674,Dalkey,105822164,0,4376_7778022_100172,4376_21 -4289_75978,263,4376_16740,UCD Belfield,105542004,0,4376_7778022_100652,4376_149 -4289_75978,264,4376_16741,UCD Belfield,105652004,0,4376_7778022_100652,4376_149 -4289_75978,265,4376_16742,UCD Belfield,105812004,0,4376_7778022_100652,4376_149 -4289_75978,266,4376_16743,UCD Belfield,105822004,0,4376_7778022_100652,4376_149 -4289_75978,267,4376_16744,UCD Belfield,106052004,0,4376_7778022_100652,4376_149 -4289_75978,268,4376_16745,UCD Belfield,106142004,0,4376_7778022_100652,4376_149 -4289_75978,269,4376_16746,UCD Belfield,106232004,0,4376_7778022_100652,4376_149 -4289_75978,259,4376_16747,UCD Belfield,105764808,0,4376_7778022_100640,4376_149 -4289_75978,260,4376_16748,UCD Belfield,105312018,0,4376_7778022_100700,4376_149 -4289_75978,261,4376_16749,UCD Belfield,105322018,0,4376_7778022_100700,4376_149 -4289_75962,267,4376_1675,Dalkey,106052164,0,4376_7778022_100172,4376_21 -4289_75978,262,4376_16750,UCD Belfield,105432018,0,4376_7778022_100700,4376_149 -4289_75978,263,4376_16751,UCD Belfield,105542018,0,4376_7778022_100700,4376_149 -4289_75978,264,4376_16752,UCD Belfield,105652018,0,4376_7778022_100700,4376_149 -4289_75978,265,4376_16753,UCD Belfield,105812018,0,4376_7778022_100700,4376_149 -4289_75978,266,4376_16754,UCD Belfield,105822018,0,4376_7778022_100700,4376_149 -4289_75978,267,4376_16755,UCD Belfield,106052018,0,4376_7778022_100700,4376_149 -4289_75978,268,4376_16756,UCD Belfield,106142018,0,4376_7778022_100700,4376_149 -4289_75978,269,4376_16757,UCD Belfield,106232018,0,4376_7778022_100700,4376_149 -4289_75978,259,4376_16758,UCD Belfield,105764824,0,4376_7778022_100490,4376_150 -4289_75978,270,4376_16759,UCD Belfield,105277558,0,4376_7778022_100510,4376_151 -4289_75962,268,4376_1676,Dalkey,106142164,0,4376_7778022_100172,4376_21 -4289_75978,146,4376_16760,UCD Belfield,105247558,0,4376_7778022_100510,4376_151 -4289_75978,271,4376_16761,UCD Belfield,105237558,0,4376_7778022_100510,4376_151 -4289_75978,115,4376_16762,UCD Belfield,105217558,0,4376_7778022_100510,4376_151 -4289_75978,260,4376_16763,UCD Belfield,105312040,0,4376_7778022_100720,4376_149 -4289_75978,261,4376_16764,UCD Belfield,105322040,0,4376_7778022_100720,4376_149 -4289_75978,262,4376_16765,UCD Belfield,105432040,0,4376_7778022_100720,4376_149 -4289_75978,263,4376_16766,UCD Belfield,105542040,0,4376_7778022_100720,4376_149 -4289_75978,264,4376_16767,UCD Belfield,105652040,0,4376_7778022_100720,4376_149 -4289_75978,265,4376_16768,UCD Belfield,105812040,0,4376_7778022_100720,4376_149 -4289_75978,266,4376_16769,UCD Belfield,105822040,0,4376_7778022_100720,4376_149 -4289_75962,269,4376_1677,Dalkey,106232164,0,4376_7778022_100172,4376_21 -4289_75978,267,4376_16770,UCD Belfield,106052040,0,4376_7778022_100720,4376_149 -4289_75978,268,4376_16771,UCD Belfield,106142040,0,4376_7778022_100720,4376_149 -4289_75978,269,4376_16772,UCD Belfield,106232040,0,4376_7778022_100720,4376_149 -4289_75978,259,4376_16773,UCD Belfield,105764846,0,4376_7778022_100570,4376_150 -4289_75978,270,4376_16774,UCD Belfield,105277582,0,4376_7778022_100430,4376_149 -4289_75978,146,4376_16775,UCD Belfield,105247582,0,4376_7778022_100430,4376_149 -4289_75978,271,4376_16776,UCD Belfield,105237582,0,4376_7778022_100430,4376_149 -4289_75978,115,4376_16777,UCD Belfield,105217582,0,4376_7778022_100430,4376_149 -4289_75978,260,4376_16778,UCD Belfield,105312062,0,4376_7778022_100740,4376_149 -4289_75978,261,4376_16779,UCD Belfield,105322062,0,4376_7778022_100740,4376_149 -4289_75962,259,4376_1678,Dalkey,105764944,0,4376_7778022_104032,4376_21 -4289_75978,262,4376_16780,UCD Belfield,105432062,0,4376_7778022_100740,4376_149 -4289_75978,263,4376_16781,UCD Belfield,105542062,0,4376_7778022_100740,4376_149 -4289_75978,264,4376_16782,UCD Belfield,105652062,0,4376_7778022_100740,4376_149 -4289_75978,265,4376_16783,UCD Belfield,105812062,0,4376_7778022_100740,4376_149 -4289_75978,266,4376_16784,UCD Belfield,105822062,0,4376_7778022_100740,4376_149 -4289_75978,267,4376_16785,UCD Belfield,106052062,0,4376_7778022_100740,4376_149 -4289_75978,268,4376_16786,UCD Belfield,106142062,0,4376_7778022_100740,4376_149 -4289_75978,269,4376_16787,UCD Belfield,106232062,0,4376_7778022_100740,4376_149 -4289_75978,259,4376_16788,UCD Belfield,105764856,0,4376_7778022_100510,4376_150 -4289_75978,260,4376_16789,UCD Belfield,105312088,0,4376_7778022_100600,4376_149 -4289_75962,270,4376_1679,Dalkey,105277660,0,4376_7778022_100140,4376_22 -4289_75978,261,4376_16790,UCD Belfield,105322088,0,4376_7778022_100600,4376_149 -4289_75978,262,4376_16791,UCD Belfield,105432088,0,4376_7778022_100600,4376_149 -4289_75978,263,4376_16792,UCD Belfield,105542088,0,4376_7778022_100600,4376_149 -4289_75978,264,4376_16793,UCD Belfield,105652088,0,4376_7778022_100600,4376_149 -4289_75978,265,4376_16794,UCD Belfield,105812088,0,4376_7778022_100600,4376_149 -4289_75978,266,4376_16795,UCD Belfield,105822088,0,4376_7778022_100600,4376_149 -4289_75978,267,4376_16796,UCD Belfield,106052088,0,4376_7778022_100600,4376_149 -4289_75978,268,4376_16797,UCD Belfield,106142088,0,4376_7778022_100600,4376_149 -4289_75978,269,4376_16798,UCD Belfield,106232088,0,4376_7778022_100600,4376_149 -4289_75978,259,4376_16799,UCD Belfield,105764870,0,4376_7778022_100630,4376_150 -4289_75960,270,4376_168,Sutton Station,105277304,0,4376_7778022_103503,4376_1 -4289_75962,146,4376_1680,Dalkey,105247660,0,4376_7778022_100140,4376_22 -4289_75978,270,4376_16800,UCD Belfield,105277602,0,4376_7778022_100440,4376_151 -4289_75978,146,4376_16801,UCD Belfield,105247602,0,4376_7778022_100440,4376_151 -4289_75978,271,4376_16802,UCD Belfield,105237602,0,4376_7778022_100440,4376_151 -4289_75978,115,4376_16803,UCD Belfield,105217602,0,4376_7778022_100440,4376_151 -4289_75978,260,4376_16804,UCD Belfield,105312116,0,4376_7778022_100690,4376_149 -4289_75978,261,4376_16805,UCD Belfield,105322116,0,4376_7778022_100690,4376_149 -4289_75978,262,4376_16806,UCD Belfield,105432116,0,4376_7778022_100690,4376_149 -4289_75978,263,4376_16807,UCD Belfield,105542116,0,4376_7778022_100690,4376_149 -4289_75978,264,4376_16808,UCD Belfield,105652116,0,4376_7778022_100690,4376_149 -4289_75978,265,4376_16809,UCD Belfield,105812116,0,4376_7778022_100690,4376_149 -4289_75962,271,4376_1681,Dalkey,105237660,0,4376_7778022_100140,4376_22 -4289_75978,266,4376_16810,UCD Belfield,105822116,0,4376_7778022_100690,4376_149 -4289_75978,267,4376_16811,UCD Belfield,106052116,0,4376_7778022_100690,4376_149 -4289_75978,268,4376_16812,UCD Belfield,106142116,0,4376_7778022_100690,4376_149 -4289_75978,269,4376_16813,UCD Belfield,106232116,0,4376_7778022_100690,4376_149 -4289_75978,259,4376_16814,UCD Belfield,105764898,0,4376_7778022_100500,4376_150 -4289_75978,270,4376_16815,UCD Belfield,105277626,0,4376_7778022_100490,4376_149 -4289_75978,146,4376_16816,UCD Belfield,105247626,0,4376_7778022_100490,4376_149 -4289_75978,271,4376_16817,UCD Belfield,105237626,0,4376_7778022_100490,4376_149 -4289_75978,115,4376_16818,UCD Belfield,105217626,0,4376_7778022_100490,4376_149 -4289_75978,260,4376_16819,UCD Belfield,105312138,0,4376_7778022_100620,4376_149 -4289_75962,115,4376_1682,Dalkey,105217660,0,4376_7778022_100140,4376_22 -4289_75978,261,4376_16820,UCD Belfield,105322138,0,4376_7778022_100620,4376_149 -4289_75978,262,4376_16821,UCD Belfield,105432138,0,4376_7778022_100620,4376_149 -4289_75978,263,4376_16822,UCD Belfield,105542138,0,4376_7778022_100620,4376_149 -4289_75978,264,4376_16823,UCD Belfield,105652138,0,4376_7778022_100620,4376_149 -4289_75978,265,4376_16824,UCD Belfield,105812138,0,4376_7778022_100620,4376_149 -4289_75978,266,4376_16825,UCD Belfield,105822138,0,4376_7778022_100620,4376_149 -4289_75978,267,4376_16826,UCD Belfield,106052138,0,4376_7778022_100620,4376_149 -4289_75978,268,4376_16827,UCD Belfield,106142138,0,4376_7778022_100620,4376_149 -4289_75978,269,4376_16828,UCD Belfield,106232138,0,4376_7778022_100620,4376_149 -4289_75978,259,4376_16829,UCD Belfield,105764908,0,4376_7778022_100590,4376_150 -4289_75962,260,4376_1683,Dalkey,105312290,0,4376_7778022_104030,4376_21 -4289_75978,260,4376_16830,UCD Belfield,105312160,0,4376_7778022_100790,4376_149 -4289_75978,261,4376_16831,UCD Belfield,105322160,0,4376_7778022_100790,4376_149 -4289_75978,262,4376_16832,UCD Belfield,105432160,0,4376_7778022_100790,4376_149 -4289_75978,263,4376_16833,UCD Belfield,105542160,0,4376_7778022_100790,4376_149 -4289_75978,264,4376_16834,UCD Belfield,105652160,0,4376_7778022_100790,4376_149 -4289_75978,265,4376_16835,UCD Belfield,105812160,0,4376_7778022_100790,4376_149 -4289_75978,266,4376_16836,UCD Belfield,105822160,0,4376_7778022_100790,4376_149 -4289_75978,267,4376_16837,UCD Belfield,106052160,0,4376_7778022_100790,4376_149 -4289_75978,268,4376_16838,UCD Belfield,106142160,0,4376_7778022_100790,4376_149 -4289_75978,269,4376_16839,UCD Belfield,106232160,0,4376_7778022_100790,4376_149 -4289_75962,261,4376_1684,Dalkey,105322290,0,4376_7778022_104030,4376_21 -4289_75978,259,4376_16840,UCD Belfield,105764924,0,4376_7778022_100620,4376_150 -4289_75978,270,4376_16841,UCD Belfield,105277642,0,4376_7778022_100460,4376_151 -4289_75978,146,4376_16842,UCD Belfield,105247642,0,4376_7778022_100460,4376_151 -4289_75978,271,4376_16843,UCD Belfield,105237642,0,4376_7778022_100460,4376_151 -4289_75978,115,4376_16844,UCD Belfield,105217642,0,4376_7778022_100460,4376_151 -4289_75978,260,4376_16845,UCD Belfield,105312180,0,4376_7778022_100710,4376_149 -4289_75978,261,4376_16846,UCD Belfield,105322180,0,4376_7778022_100710,4376_149 -4289_75978,262,4376_16847,UCD Belfield,105432180,0,4376_7778022_100710,4376_149 -4289_75978,263,4376_16848,UCD Belfield,105542180,0,4376_7778022_100710,4376_149 -4289_75978,264,4376_16849,UCD Belfield,105652180,0,4376_7778022_100710,4376_149 -4289_75962,262,4376_1685,Dalkey,105432290,0,4376_7778022_104030,4376_21 -4289_75978,265,4376_16850,UCD Belfield,105812180,0,4376_7778022_100710,4376_149 -4289_75978,266,4376_16851,UCD Belfield,105822180,0,4376_7778022_100710,4376_149 -4289_75978,267,4376_16852,UCD Belfield,106052180,0,4376_7778022_100710,4376_149 -4289_75978,268,4376_16853,UCD Belfield,106142180,0,4376_7778022_100710,4376_149 -4289_75978,269,4376_16854,UCD Belfield,106232180,0,4376_7778022_100710,4376_149 -4289_75978,259,4376_16855,UCD Belfield,105764948,0,4376_7778022_100520,4376_150 -4289_75978,270,4376_16856,UCD Belfield,105277676,0,4376_7778022_100480,4376_149 -4289_75978,146,4376_16857,UCD Belfield,105247676,0,4376_7778022_100480,4376_149 -4289_75978,271,4376_16858,UCD Belfield,105237676,0,4376_7778022_100480,4376_149 -4289_75978,115,4376_16859,UCD Belfield,105217676,0,4376_7778022_100480,4376_149 -4289_75962,263,4376_1686,Dalkey,105542290,0,4376_7778022_104030,4376_21 -4289_75978,260,4376_16860,UCD Belfield,105312200,0,4376_7778022_100730,4376_149 -4289_75978,261,4376_16861,UCD Belfield,105322200,0,4376_7778022_100730,4376_149 -4289_75978,262,4376_16862,UCD Belfield,105432200,0,4376_7778022_100730,4376_149 -4289_75978,263,4376_16863,UCD Belfield,105542200,0,4376_7778022_100730,4376_149 -4289_75978,264,4376_16864,UCD Belfield,105652200,0,4376_7778022_100730,4376_149 -4289_75978,265,4376_16865,UCD Belfield,105812200,0,4376_7778022_100730,4376_149 -4289_75978,266,4376_16866,UCD Belfield,105822200,0,4376_7778022_100730,4376_149 -4289_75978,267,4376_16867,UCD Belfield,106052200,0,4376_7778022_100730,4376_149 -4289_75978,268,4376_16868,UCD Belfield,106142200,0,4376_7778022_100730,4376_149 -4289_75978,269,4376_16869,UCD Belfield,106232200,0,4376_7778022_100730,4376_149 -4289_75962,264,4376_1687,Dalkey,105652290,0,4376_7778022_104030,4376_21 -4289_75978,259,4376_16870,UCD Belfield,105764958,0,4376_7778022_100610,4376_150 -4289_75978,260,4376_16871,UCD Belfield,105312218,0,4376_7778022_100750,4376_149 -4289_75978,261,4376_16872,UCD Belfield,105322218,0,4376_7778022_100750,4376_149 -4289_75978,262,4376_16873,UCD Belfield,105432218,0,4376_7778022_100750,4376_149 -4289_75978,263,4376_16874,UCD Belfield,105542218,0,4376_7778022_100750,4376_149 -4289_75978,264,4376_16875,UCD Belfield,105652218,0,4376_7778022_100750,4376_149 -4289_75978,265,4376_16876,UCD Belfield,105812218,0,4376_7778022_100750,4376_149 -4289_75978,266,4376_16877,UCD Belfield,105822218,0,4376_7778022_100750,4376_149 -4289_75978,267,4376_16878,UCD Belfield,106052218,0,4376_7778022_100750,4376_149 -4289_75978,268,4376_16879,UCD Belfield,106142218,0,4376_7778022_100750,4376_149 -4289_75962,265,4376_1688,Dalkey,105812290,0,4376_7778022_104030,4376_21 -4289_75978,269,4376_16880,UCD Belfield,106232218,0,4376_7778022_100750,4376_149 -4289_75978,259,4376_16881,UCD Belfield,105764974,0,4376_7778022_100650,4376_150 -4289_75978,270,4376_16882,UCD Belfield,105277690,0,4376_7778022_100410,4376_151 -4289_75978,146,4376_16883,UCD Belfield,105247690,0,4376_7778022_100410,4376_151 -4289_75978,271,4376_16884,UCD Belfield,105237690,0,4376_7778022_100410,4376_151 -4289_75978,115,4376_16885,UCD Belfield,105217690,0,4376_7778022_100410,4376_151 -4289_75978,260,4376_16886,UCD Belfield,105312244,0,4376_7778022_100760,4376_149 -4289_75978,261,4376_16887,UCD Belfield,105322244,0,4376_7778022_100760,4376_149 -4289_75978,262,4376_16888,UCD Belfield,105432244,0,4376_7778022_100760,4376_149 -4289_75978,263,4376_16889,UCD Belfield,105542244,0,4376_7778022_100760,4376_149 -4289_75962,266,4376_1689,Dalkey,105822290,0,4376_7778022_104030,4376_21 -4289_75978,264,4376_16890,UCD Belfield,105652244,0,4376_7778022_100760,4376_149 -4289_75978,265,4376_16891,UCD Belfield,105812244,0,4376_7778022_100760,4376_149 -4289_75978,266,4376_16892,UCD Belfield,105822244,0,4376_7778022_100760,4376_149 -4289_75978,267,4376_16893,UCD Belfield,106052244,0,4376_7778022_100760,4376_149 -4289_75978,268,4376_16894,UCD Belfield,106142244,0,4376_7778022_100760,4376_149 -4289_75978,269,4376_16895,UCD Belfield,106232244,0,4376_7778022_100760,4376_149 -4289_75978,259,4376_16896,UCD Belfield,105764994,0,4376_7778022_100530,4376_150 -4289_75978,270,4376_16897,UCD Belfield,105277714,0,4376_7778022_100420,4376_149 -4289_75978,146,4376_16898,UCD Belfield,105247714,0,4376_7778022_100420,4376_149 -4289_75978,271,4376_16899,UCD Belfield,105237714,0,4376_7778022_100420,4376_149 -4289_75960,146,4376_169,Sutton Station,105247304,0,4376_7778022_103503,4376_1 -4289_75962,267,4376_1690,Dalkey,106052290,0,4376_7778022_104030,4376_21 -4289_75978,115,4376_16900,UCD Belfield,105217714,0,4376_7778022_100420,4376_149 -4289_75978,260,4376_16901,UCD Belfield,105312268,0,4376_7778022_100612,4376_149 -4289_75978,261,4376_16902,UCD Belfield,105322268,0,4376_7778022_100612,4376_149 -4289_75978,262,4376_16903,UCD Belfield,105432268,0,4376_7778022_100612,4376_149 -4289_75978,263,4376_16904,UCD Belfield,105542268,0,4376_7778022_100612,4376_149 -4289_75978,264,4376_16905,UCD Belfield,105652268,0,4376_7778022_100612,4376_149 -4289_75978,265,4376_16906,UCD Belfield,105812268,0,4376_7778022_100612,4376_149 -4289_75978,266,4376_16907,UCD Belfield,105822268,0,4376_7778022_100612,4376_149 -4289_75978,267,4376_16908,UCD Belfield,106052268,0,4376_7778022_100612,4376_149 -4289_75978,268,4376_16909,UCD Belfield,106142268,0,4376_7778022_100612,4376_149 -4289_75962,268,4376_1691,Dalkey,106142290,0,4376_7778022_104030,4376_21 -4289_75978,269,4376_16910,UCD Belfield,106232268,0,4376_7778022_100612,4376_149 -4289_75978,259,4376_16911,UCD Belfield,105765010,0,4376_7778022_100550,4376_150 -4289_75978,260,4376_16912,UCD Belfield,105312284,0,4376_7778022_100640,4376_149 -4289_75978,261,4376_16913,UCD Belfield,105322284,0,4376_7778022_100640,4376_149 -4289_75978,262,4376_16914,UCD Belfield,105432284,0,4376_7778022_100640,4376_149 -4289_75978,263,4376_16915,UCD Belfield,105542284,0,4376_7778022_100640,4376_149 -4289_75978,264,4376_16916,UCD Belfield,105652284,0,4376_7778022_100640,4376_149 -4289_75978,265,4376_16917,UCD Belfield,105812284,0,4376_7778022_100640,4376_149 -4289_75978,266,4376_16918,UCD Belfield,105822284,0,4376_7778022_100640,4376_149 -4289_75978,267,4376_16919,UCD Belfield,106052284,0,4376_7778022_100640,4376_149 -4289_75962,269,4376_1692,Dalkey,106232290,0,4376_7778022_104030,4376_21 -4289_75978,268,4376_16920,UCD Belfield,106142284,0,4376_7778022_100640,4376_149 -4289_75978,269,4376_16921,UCD Belfield,106232284,0,4376_7778022_100640,4376_149 -4289_75978,259,4376_16922,UCD Belfield,105765026,0,4376_7778022_100480,4376_150 -4289_75978,270,4376_16923,UCD Belfield,105277736,0,4376_7778022_100470,4376_151 -4289_75978,146,4376_16924,UCD Belfield,105247736,0,4376_7778022_100470,4376_151 -4289_75978,271,4376_16925,UCD Belfield,105237736,0,4376_7778022_100470,4376_151 -4289_75978,115,4376_16926,UCD Belfield,105217736,0,4376_7778022_100470,4376_151 -4289_75978,260,4376_16927,UCD Belfield,105312310,0,4376_7778022_100660,4376_149 -4289_75978,261,4376_16928,UCD Belfield,105322310,0,4376_7778022_100660,4376_149 -4289_75978,262,4376_16929,UCD Belfield,105432310,0,4376_7778022_100660,4376_149 -4289_75962,259,4376_1693,Dalkey,105765046,0,4376_7778022_104024,4376_21 -4289_75978,263,4376_16930,UCD Belfield,105542310,0,4376_7778022_100660,4376_149 -4289_75978,264,4376_16931,UCD Belfield,105652310,0,4376_7778022_100660,4376_149 -4289_75978,265,4376_16932,UCD Belfield,105812310,0,4376_7778022_100660,4376_149 -4289_75978,266,4376_16933,UCD Belfield,105822310,0,4376_7778022_100660,4376_149 -4289_75978,267,4376_16934,UCD Belfield,106052310,0,4376_7778022_100660,4376_149 -4289_75978,268,4376_16935,UCD Belfield,106142310,0,4376_7778022_100660,4376_149 -4289_75978,269,4376_16936,UCD Belfield,106232310,0,4376_7778022_100660,4376_149 -4289_75978,259,4376_16937,UCD Belfield,105765050,0,4376_7778022_100580,4376_150 -4289_75978,270,4376_16938,UCD Belfield,105277768,0,4376_7778022_100500,4376_149 -4289_75978,146,4376_16939,UCD Belfield,105247768,0,4376_7778022_100500,4376_149 -4289_75962,270,4376_1694,Dalkey,105277750,0,4376_7778022_100150,4376_22 -4289_75978,271,4376_16940,UCD Belfield,105237768,0,4376_7778022_100500,4376_149 -4289_75978,115,4376_16941,UCD Belfield,105217768,0,4376_7778022_100500,4376_149 -4289_75978,260,4376_16942,UCD Belfield,105312326,0,4376_7778022_100782,4376_149 -4289_75978,261,4376_16943,UCD Belfield,105322326,0,4376_7778022_100782,4376_149 -4289_75978,262,4376_16944,UCD Belfield,105432326,0,4376_7778022_100782,4376_149 -4289_75978,263,4376_16945,UCD Belfield,105542326,0,4376_7778022_100782,4376_149 -4289_75978,264,4376_16946,UCD Belfield,105652326,0,4376_7778022_100782,4376_149 -4289_75978,265,4376_16947,UCD Belfield,105812326,0,4376_7778022_100782,4376_149 -4289_75978,266,4376_16948,UCD Belfield,105822326,0,4376_7778022_100782,4376_149 -4289_75978,267,4376_16949,UCD Belfield,106052326,0,4376_7778022_100782,4376_149 -4289_75962,146,4376_1695,Dalkey,105247750,0,4376_7778022_100150,4376_22 -4289_75978,268,4376_16950,UCD Belfield,106142326,0,4376_7778022_100782,4376_149 -4289_75978,269,4376_16951,UCD Belfield,106232326,0,4376_7778022_100782,4376_149 -4289_75978,259,4376_16952,UCD Belfield,105765066,0,4376_7778022_100540,4376_150 -4289_75978,260,4376_16953,UCD Belfield,105312348,0,4376_7778022_100670,4376_149 -4289_75978,261,4376_16954,UCD Belfield,105322348,0,4376_7778022_100670,4376_149 -4289_75978,262,4376_16955,UCD Belfield,105432348,0,4376_7778022_100670,4376_149 -4289_75978,263,4376_16956,UCD Belfield,105542348,0,4376_7778022_100670,4376_149 -4289_75978,264,4376_16957,UCD Belfield,105652348,0,4376_7778022_100670,4376_149 -4289_75978,265,4376_16958,UCD Belfield,105812348,0,4376_7778022_100670,4376_149 -4289_75978,266,4376_16959,UCD Belfield,105822348,0,4376_7778022_100670,4376_149 -4289_75962,271,4376_1696,Dalkey,105237750,0,4376_7778022_100150,4376_22 -4289_75978,267,4376_16960,UCD Belfield,106052348,0,4376_7778022_100670,4376_149 -4289_75978,268,4376_16961,UCD Belfield,106142348,0,4376_7778022_100670,4376_149 -4289_75978,269,4376_16962,UCD Belfield,106232348,0,4376_7778022_100670,4376_149 -4289_75978,259,4376_16963,UCD Belfield,105765076,0,4376_7778022_100640,4376_150 -4289_75978,270,4376_16964,UCD Belfield,105277782,0,4376_7778022_100510,4376_151 -4289_75978,146,4376_16965,UCD Belfield,105247782,0,4376_7778022_100510,4376_151 -4289_75978,271,4376_16966,UCD Belfield,105237782,0,4376_7778022_100510,4376_151 -4289_75978,115,4376_16967,UCD Belfield,105217782,0,4376_7778022_100510,4376_151 -4289_75978,260,4376_16968,UCD Belfield,105312362,0,4376_7778022_100680,4376_149 -4289_75978,261,4376_16969,UCD Belfield,105322362,0,4376_7778022_100680,4376_149 -4289_75962,115,4376_1697,Dalkey,105217750,0,4376_7778022_100150,4376_22 -4289_75978,262,4376_16970,UCD Belfield,105432362,0,4376_7778022_100680,4376_149 -4289_75978,263,4376_16971,UCD Belfield,105542362,0,4376_7778022_100680,4376_149 -4289_75978,264,4376_16972,UCD Belfield,105652362,0,4376_7778022_100680,4376_149 -4289_75978,265,4376_16973,UCD Belfield,105812362,0,4376_7778022_100680,4376_149 -4289_75978,266,4376_16974,UCD Belfield,105822362,0,4376_7778022_100680,4376_149 -4289_75978,267,4376_16975,UCD Belfield,106052362,0,4376_7778022_100680,4376_149 -4289_75978,268,4376_16976,UCD Belfield,106142362,0,4376_7778022_100680,4376_149 -4289_75978,269,4376_16977,UCD Belfield,106232362,0,4376_7778022_100680,4376_149 -4289_75978,259,4376_16978,UCD Belfield,105765088,0,4376_7778022_100490,4376_150 -4289_75978,270,4376_16979,UCD Belfield,105277810,0,4376_7778022_100430,4376_149 -4289_75962,260,4376_1698,Dalkey,105312410,0,4376_7778022_104072,4376_21 -4289_75978,146,4376_16980,UCD Belfield,105247810,0,4376_7778022_100430,4376_149 -4289_75978,271,4376_16981,UCD Belfield,105237810,0,4376_7778022_100430,4376_149 -4289_75978,115,4376_16982,UCD Belfield,105217810,0,4376_7778022_100430,4376_149 -4289_75978,260,4376_16983,UCD Belfield,105312382,0,4376_7778022_100772,4376_149 -4289_75978,261,4376_16984,UCD Belfield,105322382,0,4376_7778022_100772,4376_149 -4289_75978,262,4376_16985,UCD Belfield,105432382,0,4376_7778022_100772,4376_149 -4289_75978,263,4376_16986,UCD Belfield,105542382,0,4376_7778022_100772,4376_149 -4289_75978,264,4376_16987,UCD Belfield,105652382,0,4376_7778022_100772,4376_149 -4289_75978,265,4376_16988,UCD Belfield,105812382,0,4376_7778022_100772,4376_149 -4289_75978,266,4376_16989,UCD Belfield,105822382,0,4376_7778022_100772,4376_149 -4289_75962,261,4376_1699,Dalkey,105322410,0,4376_7778022_104072,4376_21 -4289_75978,267,4376_16990,UCD Belfield,106052382,0,4376_7778022_100772,4376_149 -4289_75978,268,4376_16991,UCD Belfield,106142382,0,4376_7778022_100772,4376_149 -4289_75978,269,4376_16992,UCD Belfield,106232382,0,4376_7778022_100772,4376_149 -4289_75978,259,4376_16993,UCD Belfield,105765116,0,4376_7778022_100570,4376_150 -4289_75978,260,4376_16994,UCD Belfield,105312406,0,4376_7778022_100630,4376_149 -4289_75978,261,4376_16995,UCD Belfield,105322406,0,4376_7778022_100630,4376_149 -4289_75978,262,4376_16996,UCD Belfield,105432406,0,4376_7778022_100630,4376_149 -4289_75978,263,4376_16997,UCD Belfield,105542406,0,4376_7778022_100630,4376_149 -4289_75978,264,4376_16998,UCD Belfield,105652406,0,4376_7778022_100630,4376_149 -4289_75978,265,4376_16999,UCD Belfield,105812406,0,4376_7778022_100630,4376_149 -4289_75960,264,4376_17,Sutton Station,105651070,0,4376_7778022_103107,4376_1 -4289_75960,271,4376_170,Sutton Station,105237304,0,4376_7778022_103503,4376_1 -4289_75962,262,4376_1700,Dalkey,105432410,0,4376_7778022_104072,4376_21 -4289_75978,266,4376_17000,UCD Belfield,105822406,0,4376_7778022_100630,4376_149 -4289_75978,267,4376_17001,UCD Belfield,106052406,0,4376_7778022_100630,4376_149 -4289_75978,268,4376_17002,UCD Belfield,106142406,0,4376_7778022_100630,4376_149 -4289_75978,269,4376_17003,UCD Belfield,106232406,0,4376_7778022_100630,4376_149 -4289_75978,259,4376_17004,UCD Belfield,105765130,0,4376_7778022_100510,4376_150 -4289_75978,270,4376_17005,UCD Belfield,105277826,0,4376_7778022_100440,4376_151 -4289_75978,146,4376_17006,UCD Belfield,105247826,0,4376_7778022_100440,4376_151 -4289_75978,271,4376_17007,UCD Belfield,105237826,0,4376_7778022_100440,4376_151 -4289_75978,115,4376_17008,UCD Belfield,105217826,0,4376_7778022_100440,4376_151 -4289_75978,260,4376_17009,UCD Belfield,105312424,0,4376_7778022_100652,4376_149 -4289_75962,263,4376_1701,Dalkey,105542410,0,4376_7778022_104072,4376_21 -4289_75978,261,4376_17010,UCD Belfield,105322424,0,4376_7778022_100652,4376_149 -4289_75978,262,4376_17011,UCD Belfield,105432424,0,4376_7778022_100652,4376_149 -4289_75978,263,4376_17012,UCD Belfield,105542424,0,4376_7778022_100652,4376_149 -4289_75978,264,4376_17013,UCD Belfield,105652424,0,4376_7778022_100652,4376_149 -4289_75978,265,4376_17014,UCD Belfield,105812424,0,4376_7778022_100652,4376_149 -4289_75978,266,4376_17015,UCD Belfield,105822424,0,4376_7778022_100652,4376_149 -4289_75978,267,4376_17016,UCD Belfield,106052424,0,4376_7778022_100652,4376_149 -4289_75978,268,4376_17017,UCD Belfield,106142424,0,4376_7778022_100652,4376_149 -4289_75978,269,4376_17018,UCD Belfield,106232424,0,4376_7778022_100652,4376_149 -4289_75978,259,4376_17019,UCD Belfield,105765150,0,4376_7778022_100630,4376_150 -4289_75962,264,4376_1702,Dalkey,105652410,0,4376_7778022_104072,4376_21 -4289_75978,270,4376_17020,UCD Belfield,105277856,0,4376_7778022_100490,4376_149 -4289_75978,146,4376_17021,UCD Belfield,105247856,0,4376_7778022_100490,4376_149 -4289_75978,271,4376_17022,UCD Belfield,105237856,0,4376_7778022_100490,4376_149 -4289_75978,115,4376_17023,UCD Belfield,105217856,0,4376_7778022_100490,4376_149 -4289_75978,260,4376_17024,UCD Belfield,105312442,0,4376_7778022_100700,4376_149 -4289_75978,261,4376_17025,UCD Belfield,105322442,0,4376_7778022_100700,4376_149 -4289_75978,262,4376_17026,UCD Belfield,105432442,0,4376_7778022_100700,4376_149 -4289_75978,263,4376_17027,UCD Belfield,105542442,0,4376_7778022_100700,4376_149 -4289_75978,264,4376_17028,UCD Belfield,105652442,0,4376_7778022_100700,4376_149 -4289_75978,265,4376_17029,UCD Belfield,105812442,0,4376_7778022_100700,4376_149 -4289_75962,265,4376_1703,Dalkey,105812410,0,4376_7778022_104072,4376_21 -4289_75978,266,4376_17030,UCD Belfield,105822442,0,4376_7778022_100700,4376_149 -4289_75978,267,4376_17031,UCD Belfield,106052442,0,4376_7778022_100700,4376_149 -4289_75978,268,4376_17032,UCD Belfield,106142442,0,4376_7778022_100700,4376_149 -4289_75978,269,4376_17033,UCD Belfield,106232442,0,4376_7778022_100700,4376_149 -4289_75978,259,4376_17034,UCD Belfield,105765168,0,4376_7778022_100562,4376_150 -4289_75978,260,4376_17035,UCD Belfield,105312460,0,4376_7778022_100720,4376_149 -4289_75978,261,4376_17036,UCD Belfield,105322460,0,4376_7778022_100720,4376_149 -4289_75978,262,4376_17037,UCD Belfield,105432460,0,4376_7778022_100720,4376_149 -4289_75978,263,4376_17038,UCD Belfield,105542460,0,4376_7778022_100720,4376_149 -4289_75978,264,4376_17039,UCD Belfield,105652460,0,4376_7778022_100720,4376_149 -4289_75962,266,4376_1704,Dalkey,105822410,0,4376_7778022_104072,4376_21 -4289_75978,265,4376_17040,UCD Belfield,105812460,0,4376_7778022_100720,4376_149 -4289_75978,266,4376_17041,UCD Belfield,105822460,0,4376_7778022_100720,4376_149 -4289_75978,267,4376_17042,UCD Belfield,106052460,0,4376_7778022_100720,4376_149 -4289_75978,268,4376_17043,UCD Belfield,106142460,0,4376_7778022_100720,4376_149 -4289_75978,269,4376_17044,UCD Belfield,106232460,0,4376_7778022_100720,4376_149 -4289_75978,259,4376_17045,UCD Belfield,105765176,0,4376_7778022_100590,4376_150 -4289_75978,270,4376_17046,UCD Belfield,105277868,0,4376_7778022_100460,4376_151 -4289_75978,146,4376_17047,UCD Belfield,105247868,0,4376_7778022_100460,4376_151 -4289_75978,271,4376_17048,UCD Belfield,105237868,0,4376_7778022_100460,4376_151 -4289_75978,115,4376_17049,UCD Belfield,105217868,0,4376_7778022_100460,4376_151 -4289_75962,267,4376_1705,Dalkey,106052410,0,4376_7778022_104072,4376_21 -4289_75978,260,4376_17050,UCD Belfield,105312472,0,4376_7778022_100740,4376_149 -4289_75978,261,4376_17051,UCD Belfield,105322472,0,4376_7778022_100740,4376_149 -4289_75978,262,4376_17052,UCD Belfield,105432472,0,4376_7778022_100740,4376_149 -4289_75978,263,4376_17053,UCD Belfield,105542472,0,4376_7778022_100740,4376_149 -4289_75978,264,4376_17054,UCD Belfield,105652472,0,4376_7778022_100740,4376_149 -4289_75978,265,4376_17055,UCD Belfield,105812472,0,4376_7778022_100740,4376_149 -4289_75978,266,4376_17056,UCD Belfield,105822472,0,4376_7778022_100740,4376_149 -4289_75978,267,4376_17057,UCD Belfield,106052472,0,4376_7778022_100740,4376_149 -4289_75978,268,4376_17058,UCD Belfield,106142472,0,4376_7778022_100740,4376_149 -4289_75978,269,4376_17059,UCD Belfield,106232472,0,4376_7778022_100740,4376_149 -4289_75962,268,4376_1706,Dalkey,106142410,0,4376_7778022_104072,4376_21 -4289_75978,259,4376_17060,UCD Belfield,105765196,0,4376_7778022_100620,4376_150 -4289_75978,270,4376_17061,UCD Belfield,105277900,0,4376_7778022_100480,4376_149 -4289_75978,146,4376_17062,UCD Belfield,105247900,0,4376_7778022_100480,4376_149 -4289_75978,271,4376_17063,UCD Belfield,105237900,0,4376_7778022_100480,4376_149 -4289_75978,115,4376_17064,UCD Belfield,105217900,0,4376_7778022_100480,4376_149 -4289_75978,260,4376_17065,UCD Belfield,105312494,0,4376_7778022_100600,4376_149 -4289_75978,261,4376_17066,UCD Belfield,105322494,0,4376_7778022_100600,4376_149 -4289_75978,262,4376_17067,UCD Belfield,105432494,0,4376_7778022_100600,4376_149 -4289_75978,263,4376_17068,UCD Belfield,105542494,0,4376_7778022_100600,4376_149 -4289_75978,264,4376_17069,UCD Belfield,105652494,0,4376_7778022_100600,4376_149 -4289_75962,269,4376_1707,Dalkey,106232410,0,4376_7778022_104072,4376_21 -4289_75978,265,4376_17070,UCD Belfield,105812494,0,4376_7778022_100600,4376_149 -4289_75978,266,4376_17071,UCD Belfield,105822494,0,4376_7778022_100600,4376_149 -4289_75978,267,4376_17072,UCD Belfield,106052494,0,4376_7778022_100600,4376_149 -4289_75978,268,4376_17073,UCD Belfield,106142494,0,4376_7778022_100600,4376_149 -4289_75978,269,4376_17074,UCD Belfield,106232494,0,4376_7778022_100600,4376_149 -4289_75978,259,4376_17075,UCD Belfield,105765220,0,4376_7778022_100520,4376_150 -4289_75978,260,4376_17076,UCD Belfield,105312516,0,4376_7778022_100690,4376_149 -4289_75978,261,4376_17077,UCD Belfield,105322516,0,4376_7778022_100690,4376_149 -4289_75978,262,4376_17078,UCD Belfield,105432516,0,4376_7778022_100690,4376_149 -4289_75978,263,4376_17079,UCD Belfield,105542516,0,4376_7778022_100690,4376_149 -4289_75962,259,4376_1708,Dalkey,105765144,0,4376_7778022_104043,4376_21 -4289_75978,264,4376_17080,UCD Belfield,105652516,0,4376_7778022_100690,4376_149 -4289_75978,265,4376_17081,UCD Belfield,105812516,0,4376_7778022_100690,4376_149 -4289_75978,266,4376_17082,UCD Belfield,105822516,0,4376_7778022_100690,4376_149 -4289_75978,267,4376_17083,UCD Belfield,106052516,0,4376_7778022_100690,4376_149 -4289_75978,268,4376_17084,UCD Belfield,106142516,0,4376_7778022_100690,4376_149 -4289_75978,269,4376_17085,UCD Belfield,106232516,0,4376_7778022_100690,4376_149 -4289_75978,259,4376_17086,UCD Belfield,105765234,0,4376_7778022_100610,4376_150 -4289_75978,270,4376_17087,UCD Belfield,105277918,0,4376_7778022_100410,4376_151 -4289_75978,146,4376_17088,UCD Belfield,105247918,0,4376_7778022_100410,4376_151 -4289_75978,271,4376_17089,UCD Belfield,105237918,0,4376_7778022_100410,4376_151 -4289_75962,270,4376_1709,Dalkey,105277846,0,4376_7778022_100140,4376_22 -4289_75978,115,4376_17090,UCD Belfield,105217918,0,4376_7778022_100410,4376_151 -4289_75978,260,4376_17091,UCD Belfield,105312536,0,4376_7778022_100620,4376_149 -4289_75978,261,4376_17092,UCD Belfield,105322536,0,4376_7778022_100620,4376_149 -4289_75978,262,4376_17093,UCD Belfield,105432536,0,4376_7778022_100620,4376_149 -4289_75978,263,4376_17094,UCD Belfield,105542536,0,4376_7778022_100620,4376_149 -4289_75978,264,4376_17095,UCD Belfield,105652536,0,4376_7778022_100620,4376_149 -4289_75978,265,4376_17096,UCD Belfield,105812536,0,4376_7778022_100620,4376_149 -4289_75978,266,4376_17097,UCD Belfield,105822536,0,4376_7778022_100620,4376_149 -4289_75978,267,4376_17098,UCD Belfield,106052536,0,4376_7778022_100620,4376_149 -4289_75978,268,4376_17099,UCD Belfield,106142536,0,4376_7778022_100620,4376_149 -4289_75960,115,4376_171,Sutton Station,105217304,0,4376_7778022_103503,4376_1 -4289_75962,146,4376_1710,Dalkey,105247846,0,4376_7778022_100140,4376_22 -4289_75978,269,4376_17100,UCD Belfield,106232536,0,4376_7778022_100620,4376_149 -4289_75978,259,4376_17101,UCD Belfield,105765250,0,4376_7778022_100650,4376_150 -4289_75978,270,4376_17102,UCD Belfield,105277944,0,4376_7778022_100420,4376_149 -4289_75978,146,4376_17103,UCD Belfield,105247944,0,4376_7778022_100420,4376_149 -4289_75978,271,4376_17104,UCD Belfield,105237944,0,4376_7778022_100420,4376_149 -4289_75978,115,4376_17105,UCD Belfield,105217944,0,4376_7778022_100420,4376_149 -4289_75978,260,4376_17106,UCD Belfield,105312554,0,4376_7778022_100790,4376_149 -4289_75978,261,4376_17107,UCD Belfield,105322554,0,4376_7778022_100790,4376_149 -4289_75978,262,4376_17108,UCD Belfield,105432554,0,4376_7778022_100790,4376_149 -4289_75978,263,4376_17109,UCD Belfield,105542554,0,4376_7778022_100790,4376_149 -4289_75962,271,4376_1711,Dalkey,105237846,0,4376_7778022_100140,4376_22 -4289_75978,264,4376_17110,UCD Belfield,105652554,0,4376_7778022_100790,4376_149 -4289_75978,265,4376_17111,UCD Belfield,105812554,0,4376_7778022_100790,4376_149 -4289_75978,266,4376_17112,UCD Belfield,105822554,0,4376_7778022_100790,4376_149 -4289_75978,267,4376_17113,UCD Belfield,106052554,0,4376_7778022_100790,4376_149 -4289_75978,268,4376_17114,UCD Belfield,106142554,0,4376_7778022_100790,4376_149 -4289_75978,269,4376_17115,UCD Belfield,106232554,0,4376_7778022_100790,4376_149 -4289_75978,259,4376_17116,UCD Belfield,105765268,0,4376_7778022_100530,4376_150 -4289_75978,260,4376_17117,UCD Belfield,105312564,0,4376_7778022_100730,4376_149 -4289_75978,261,4376_17118,UCD Belfield,105322564,0,4376_7778022_100730,4376_149 -4289_75978,262,4376_17119,UCD Belfield,105432564,0,4376_7778022_100730,4376_149 -4289_75962,115,4376_1712,Dalkey,105217846,0,4376_7778022_100140,4376_22 -4289_75978,263,4376_17120,UCD Belfield,105542564,0,4376_7778022_100730,4376_149 -4289_75978,264,4376_17121,UCD Belfield,105652564,0,4376_7778022_100730,4376_149 -4289_75978,265,4376_17122,UCD Belfield,105812564,0,4376_7778022_100730,4376_149 -4289_75978,266,4376_17123,UCD Belfield,105822564,0,4376_7778022_100730,4376_149 -4289_75978,267,4376_17124,UCD Belfield,106052564,0,4376_7778022_100730,4376_149 -4289_75978,268,4376_17125,UCD Belfield,106142564,0,4376_7778022_100730,4376_149 -4289_75978,269,4376_17126,UCD Belfield,106232564,0,4376_7778022_100730,4376_149 -4289_75978,259,4376_17127,UCD Belfield,105765278,0,4376_7778022_100550,4376_150 -4289_75978,270,4376_17128,UCD Belfield,105277956,0,4376_7778022_100470,4376_151 -4289_75978,146,4376_17129,UCD Belfield,105247956,0,4376_7778022_100470,4376_151 -4289_75962,260,4376_1713,Dalkey,105312524,0,4376_7778022_104030,4376_21 -4289_75978,271,4376_17130,UCD Belfield,105237956,0,4376_7778022_100470,4376_151 -4289_75978,115,4376_17131,UCD Belfield,105217956,0,4376_7778022_100470,4376_151 -4289_75978,260,4376_17132,UCD Belfield,105312580,0,4376_7778022_100750,4376_149 -4289_75978,261,4376_17133,UCD Belfield,105322580,0,4376_7778022_100750,4376_149 -4289_75978,262,4376_17134,UCD Belfield,105432580,0,4376_7778022_100750,4376_149 -4289_75978,263,4376_17135,UCD Belfield,105542580,0,4376_7778022_100750,4376_149 -4289_75978,264,4376_17136,UCD Belfield,105652580,0,4376_7778022_100750,4376_149 -4289_75978,265,4376_17137,UCD Belfield,105812580,0,4376_7778022_100750,4376_149 -4289_75978,266,4376_17138,UCD Belfield,105822580,0,4376_7778022_100750,4376_149 -4289_75978,267,4376_17139,UCD Belfield,106052580,0,4376_7778022_100750,4376_149 -4289_75962,261,4376_1714,Dalkey,105322524,0,4376_7778022_104030,4376_21 -4289_75978,268,4376_17140,UCD Belfield,106142580,0,4376_7778022_100750,4376_149 -4289_75978,269,4376_17141,UCD Belfield,106232580,0,4376_7778022_100750,4376_149 -4289_75978,259,4376_17142,UCD Belfield,105765298,0,4376_7778022_100580,4376_150 -4289_75978,270,4376_17143,UCD Belfield,105277980,0,4376_7778022_100500,4376_149 -4289_75978,146,4376_17144,UCD Belfield,105247980,0,4376_7778022_100500,4376_149 -4289_75978,271,4376_17145,UCD Belfield,105237980,0,4376_7778022_100500,4376_149 -4289_75978,115,4376_17146,UCD Belfield,105217980,0,4376_7778022_100500,4376_149 -4289_75978,260,4376_17147,UCD Belfield,105312604,0,4376_7778022_100760,4376_149 -4289_75978,261,4376_17148,UCD Belfield,105322604,0,4376_7778022_100760,4376_149 -4289_75978,262,4376_17149,UCD Belfield,105432604,0,4376_7778022_100760,4376_149 -4289_75962,262,4376_1715,Dalkey,105432524,0,4376_7778022_104030,4376_21 -4289_75978,263,4376_17150,UCD Belfield,105542604,0,4376_7778022_100760,4376_149 -4289_75978,264,4376_17151,UCD Belfield,105652604,0,4376_7778022_100760,4376_149 -4289_75978,265,4376_17152,UCD Belfield,105812604,0,4376_7778022_100760,4376_149 -4289_75978,266,4376_17153,UCD Belfield,105822604,0,4376_7778022_100760,4376_149 -4289_75978,267,4376_17154,UCD Belfield,106052604,0,4376_7778022_100760,4376_149 -4289_75978,268,4376_17155,UCD Belfield,106142604,0,4376_7778022_100760,4376_149 -4289_75978,269,4376_17156,UCD Belfield,106232604,0,4376_7778022_100760,4376_149 -4289_75978,259,4376_17157,UCD Belfield,105765324,0,4376_7778022_100540,4376_149 -4289_75978,260,4376_17158,UCD Belfield,105312620,0,4376_7778022_100640,4376_149 -4289_75978,261,4376_17159,UCD Belfield,105322620,0,4376_7778022_100640,4376_149 -4289_75962,263,4376_1716,Dalkey,105542524,0,4376_7778022_104030,4376_21 -4289_75978,262,4376_17160,UCD Belfield,105432620,0,4376_7778022_100640,4376_149 -4289_75978,263,4376_17161,UCD Belfield,105542620,0,4376_7778022_100640,4376_149 -4289_75978,264,4376_17162,UCD Belfield,105652620,0,4376_7778022_100640,4376_149 -4289_75978,265,4376_17163,UCD Belfield,105812620,0,4376_7778022_100640,4376_149 -4289_75978,266,4376_17164,UCD Belfield,105822620,0,4376_7778022_100640,4376_149 -4289_75978,267,4376_17165,UCD Belfield,106052620,0,4376_7778022_100640,4376_149 -4289_75978,268,4376_17166,UCD Belfield,106142620,0,4376_7778022_100640,4376_149 -4289_75978,269,4376_17167,UCD Belfield,106232620,0,4376_7778022_100640,4376_149 -4289_75978,270,4376_17168,UCD Belfield,105278010,0,4376_7778022_100430,4376_149 -4289_75978,146,4376_17169,UCD Belfield,105248010,0,4376_7778022_100430,4376_149 -4289_75962,264,4376_1717,Dalkey,105652524,0,4376_7778022_104030,4376_21 -4289_75978,271,4376_17170,UCD Belfield,105238010,0,4376_7778022_100430,4376_149 -4289_75978,115,4376_17171,UCD Belfield,105218010,0,4376_7778022_100430,4376_149 -4289_75978,260,4376_17172,UCD Belfield,105312636,0,4376_7778022_100660,4376_149 -4289_75978,261,4376_17173,UCD Belfield,105322636,0,4376_7778022_100660,4376_149 -4289_75978,262,4376_17174,UCD Belfield,105432636,0,4376_7778022_100660,4376_149 -4289_75978,263,4376_17175,UCD Belfield,105542636,0,4376_7778022_100660,4376_149 -4289_75978,264,4376_17176,UCD Belfield,105652636,0,4376_7778022_100660,4376_149 -4289_75978,265,4376_17177,UCD Belfield,105812636,0,4376_7778022_100660,4376_149 -4289_75978,266,4376_17178,UCD Belfield,105822636,0,4376_7778022_100660,4376_149 -4289_75978,267,4376_17179,UCD Belfield,106052636,0,4376_7778022_100660,4376_149 -4289_75962,265,4376_1718,Dalkey,105812524,0,4376_7778022_104030,4376_21 -4289_75978,268,4376_17180,UCD Belfield,106142636,0,4376_7778022_100660,4376_149 -4289_75978,269,4376_17181,UCD Belfield,106232636,0,4376_7778022_100660,4376_149 -4289_75978,259,4376_17182,UCD Belfield,105765344,0,4376_7778022_100490,4376_150 -4289_75978,260,4376_17183,UCD Belfield,105312652,0,4376_7778022_100782,4376_149 -4289_75978,261,4376_17184,UCD Belfield,105322652,0,4376_7778022_100782,4376_149 -4289_75978,262,4376_17185,UCD Belfield,105432652,0,4376_7778022_100782,4376_149 -4289_75978,263,4376_17186,UCD Belfield,105542652,0,4376_7778022_100782,4376_149 -4289_75978,264,4376_17187,UCD Belfield,105652652,0,4376_7778022_100782,4376_149 -4289_75978,265,4376_17188,UCD Belfield,105812652,0,4376_7778022_100782,4376_149 -4289_75978,266,4376_17189,UCD Belfield,105822652,0,4376_7778022_100782,4376_149 -4289_75962,266,4376_1719,Dalkey,105822524,0,4376_7778022_104030,4376_21 -4289_75978,267,4376_17190,UCD Belfield,106052652,0,4376_7778022_100782,4376_149 -4289_75978,268,4376_17191,UCD Belfield,106142652,0,4376_7778022_100782,4376_149 -4289_75978,269,4376_17192,UCD Belfield,106232652,0,4376_7778022_100782,4376_149 -4289_75978,259,4376_17193,UCD Belfield,105765364,0,4376_7778022_100510,4376_149 -4289_75978,270,4376_17194,UCD Belfield,105278032,0,4376_7778022_100440,4376_150 -4289_75978,146,4376_17195,UCD Belfield,105248032,0,4376_7778022_100440,4376_150 -4289_75978,271,4376_17196,UCD Belfield,105238032,0,4376_7778022_100440,4376_150 -4289_75978,115,4376_17197,UCD Belfield,105218032,0,4376_7778022_100440,4376_150 -4289_75978,260,4376_17198,UCD Belfield,105312662,0,4376_7778022_100680,4376_149 -4289_75978,261,4376_17199,UCD Belfield,105322662,0,4376_7778022_100680,4376_149 -4289_75960,260,4376_172,Sutton Station,105311756,0,4376_7778022_103106,4376_1 -4289_75962,267,4376_1720,Dalkey,106052524,0,4376_7778022_104030,4376_21 -4289_75978,262,4376_17200,UCD Belfield,105432662,0,4376_7778022_100680,4376_149 -4289_75978,263,4376_17201,UCD Belfield,105542662,0,4376_7778022_100680,4376_149 -4289_75978,264,4376_17202,UCD Belfield,105652662,0,4376_7778022_100680,4376_149 -4289_75978,265,4376_17203,UCD Belfield,105812662,0,4376_7778022_100680,4376_149 -4289_75978,266,4376_17204,UCD Belfield,105822662,0,4376_7778022_100680,4376_149 -4289_75978,267,4376_17205,UCD Belfield,106052662,0,4376_7778022_100680,4376_149 -4289_75978,268,4376_17206,UCD Belfield,106142662,0,4376_7778022_100680,4376_149 -4289_75978,269,4376_17207,UCD Belfield,106232662,0,4376_7778022_100680,4376_149 -4289_75978,260,4376_17208,UCD Belfield,105312678,0,4376_7778022_100772,4376_149 -4289_75978,261,4376_17209,UCD Belfield,105322678,0,4376_7778022_100772,4376_149 -4289_75962,268,4376_1721,Dalkey,106142524,0,4376_7778022_104030,4376_21 -4289_75978,262,4376_17210,UCD Belfield,105432678,0,4376_7778022_100772,4376_149 -4289_75978,263,4376_17211,UCD Belfield,105542678,0,4376_7778022_100772,4376_149 -4289_75978,264,4376_17212,UCD Belfield,105652678,0,4376_7778022_100772,4376_149 -4289_75978,265,4376_17213,UCD Belfield,105812678,0,4376_7778022_100772,4376_149 -4289_75978,266,4376_17214,UCD Belfield,105822678,0,4376_7778022_100772,4376_149 -4289_75978,267,4376_17215,UCD Belfield,106052678,0,4376_7778022_100772,4376_149 -4289_75978,268,4376_17216,UCD Belfield,106142678,0,4376_7778022_100772,4376_149 -4289_75978,269,4376_17217,UCD Belfield,106232678,0,4376_7778022_100772,4376_149 -4289_75978,259,4376_17218,UCD Belfield,105765386,0,4376_7778022_100562,4376_150 -4289_75978,270,4376_17219,UCD Belfield,105278060,0,4376_7778022_100460,4376_149 -4289_75962,269,4376_1722,Dalkey,106232524,0,4376_7778022_104030,4376_21 -4289_75978,146,4376_17220,UCD Belfield,105248060,0,4376_7778022_100460,4376_149 -4289_75978,271,4376_17221,UCD Belfield,105238060,0,4376_7778022_100460,4376_149 -4289_75978,115,4376_17222,UCD Belfield,105218060,0,4376_7778022_100460,4376_149 -4289_75978,260,4376_17223,UCD Belfield,105312706,0,4376_7778022_100630,4376_149 -4289_75978,261,4376_17224,UCD Belfield,105322706,0,4376_7778022_100630,4376_149 -4289_75978,262,4376_17225,UCD Belfield,105432706,0,4376_7778022_100630,4376_149 -4289_75978,263,4376_17226,UCD Belfield,105542706,0,4376_7778022_100630,4376_149 -4289_75978,264,4376_17227,UCD Belfield,105652706,0,4376_7778022_100630,4376_149 -4289_75978,265,4376_17228,UCD Belfield,105812706,0,4376_7778022_100630,4376_149 -4289_75978,266,4376_17229,UCD Belfield,105822706,0,4376_7778022_100630,4376_149 -4289_75962,259,4376_1723,Dalkey,105765246,0,4376_7778022_104024,4376_21 -4289_75978,267,4376_17230,UCD Belfield,106052706,0,4376_7778022_100630,4376_149 -4289_75978,268,4376_17231,UCD Belfield,106142706,0,4376_7778022_100630,4376_149 -4289_75978,269,4376_17232,UCD Belfield,106232706,0,4376_7778022_100630,4376_149 -4289_75978,259,4376_17233,UCD Belfield,105765412,0,4376_7778022_100620,4376_149 -4289_75978,260,4376_17234,UCD Belfield,105312716,0,4376_7778022_100652,4376_149 -4289_75978,261,4376_17235,UCD Belfield,105322716,0,4376_7778022_100652,4376_149 -4289_75978,262,4376_17236,UCD Belfield,105432716,0,4376_7778022_100652,4376_149 -4289_75978,263,4376_17237,UCD Belfield,105542716,0,4376_7778022_100652,4376_149 -4289_75978,264,4376_17238,UCD Belfield,105652716,0,4376_7778022_100652,4376_149 -4289_75978,265,4376_17239,UCD Belfield,105812716,0,4376_7778022_100652,4376_149 -4289_75962,270,4376_1724,Dun Laoghaire,105277936,0,4376_7778022_100150,4376_23 -4289_75978,266,4376_17240,UCD Belfield,105822716,0,4376_7778022_100652,4376_149 -4289_75978,267,4376_17241,UCD Belfield,106052716,0,4376_7778022_100652,4376_149 -4289_75978,268,4376_17242,UCD Belfield,106142716,0,4376_7778022_100652,4376_149 -4289_75978,269,4376_17243,UCD Belfield,106232716,0,4376_7778022_100652,4376_149 -4289_75978,270,4376_17244,UCD Belfield,105278088,0,4376_7778022_100410,4376_149 -4289_75978,146,4376_17245,UCD Belfield,105248088,0,4376_7778022_100410,4376_149 -4289_75978,271,4376_17246,UCD Belfield,105238088,0,4376_7778022_100410,4376_149 -4289_75978,115,4376_17247,UCD Belfield,105218088,0,4376_7778022_100410,4376_149 -4289_75978,260,4376_17248,UCD Belfield,105312738,0,4376_7778022_100700,4376_149 -4289_75978,261,4376_17249,UCD Belfield,105322738,0,4376_7778022_100700,4376_149 -4289_75962,146,4376_1725,Dun Laoghaire,105247936,0,4376_7778022_100150,4376_23 -4289_75978,262,4376_17250,UCD Belfield,105432738,0,4376_7778022_100700,4376_149 -4289_75978,263,4376_17251,UCD Belfield,105542738,0,4376_7778022_100700,4376_149 -4289_75978,264,4376_17252,UCD Belfield,105652738,0,4376_7778022_100700,4376_149 -4289_75978,265,4376_17253,UCD Belfield,105812738,0,4376_7778022_100700,4376_149 -4289_75978,266,4376_17254,UCD Belfield,105822738,0,4376_7778022_100700,4376_149 -4289_75978,267,4376_17255,UCD Belfield,106052738,0,4376_7778022_100700,4376_149 -4289_75978,268,4376_17256,UCD Belfield,106142738,0,4376_7778022_100700,4376_149 -4289_75978,269,4376_17257,UCD Belfield,106232738,0,4376_7778022_100700,4376_149 -4289_75978,259,4376_17258,UCD Belfield,105765434,0,4376_7778022_100610,4376_150 -4289_75978,260,4376_17259,UCD Belfield,105312752,0,4376_7778022_100600,4376_149 -4289_75962,271,4376_1726,Dun Laoghaire,105237936,0,4376_7778022_100150,4376_23 -4289_75978,261,4376_17260,UCD Belfield,105322752,0,4376_7778022_100600,4376_149 -4289_75978,262,4376_17261,UCD Belfield,105432752,0,4376_7778022_100600,4376_149 -4289_75978,263,4376_17262,UCD Belfield,105542752,0,4376_7778022_100600,4376_149 -4289_75978,264,4376_17263,UCD Belfield,105652752,0,4376_7778022_100600,4376_149 -4289_75978,265,4376_17264,UCD Belfield,105812752,0,4376_7778022_100600,4376_149 -4289_75978,266,4376_17265,UCD Belfield,105822752,0,4376_7778022_100600,4376_149 -4289_75978,267,4376_17266,UCD Belfield,106052752,0,4376_7778022_100600,4376_149 -4289_75978,268,4376_17267,UCD Belfield,106142752,0,4376_7778022_100600,4376_149 -4289_75978,269,4376_17268,UCD Belfield,106232752,0,4376_7778022_100600,4376_149 -4289_75978,259,4376_17269,UCD Belfield,105765452,0,4376_7778022_100650,4376_149 -4289_75962,115,4376_1727,Dun Laoghaire,105217936,0,4376_7778022_100150,4376_23 -4289_75978,270,4376_17270,UCD Belfield,105278110,0,4376_7778022_100420,4376_150 -4289_75978,146,4376_17271,UCD Belfield,105248110,0,4376_7778022_100420,4376_150 -4289_75978,271,4376_17272,UCD Belfield,105238110,0,4376_7778022_100420,4376_150 -4289_75978,115,4376_17273,UCD Belfield,105218110,0,4376_7778022_100420,4376_150 -4289_75978,260,4376_17274,UCD Belfield,105312760,0,4376_7778022_100690,4376_149 -4289_75978,261,4376_17275,UCD Belfield,105322760,0,4376_7778022_100690,4376_149 -4289_75978,262,4376_17276,UCD Belfield,105432760,0,4376_7778022_100690,4376_149 -4289_75978,263,4376_17277,UCD Belfield,105542760,0,4376_7778022_100690,4376_149 -4289_75978,264,4376_17278,UCD Belfield,105652760,0,4376_7778022_100690,4376_149 -4289_75978,265,4376_17279,UCD Belfield,105812760,0,4376_7778022_100690,4376_149 -4289_75962,260,4376_1728,Dalkey,105312624,0,4376_7778022_100173,4376_21 -4289_75978,266,4376_17280,UCD Belfield,105822760,0,4376_7778022_100690,4376_149 -4289_75978,267,4376_17281,UCD Belfield,106052760,0,4376_7778022_100690,4376_149 -4289_75978,268,4376_17282,UCD Belfield,106142760,0,4376_7778022_100690,4376_149 -4289_75978,269,4376_17283,UCD Belfield,106232760,0,4376_7778022_100690,4376_149 -4289_75978,260,4376_17284,UCD Belfield,105312774,0,4376_7778022_100620,4376_149 -4289_75978,261,4376_17285,UCD Belfield,105322774,0,4376_7778022_100620,4376_149 -4289_75978,262,4376_17286,UCD Belfield,105432774,0,4376_7778022_100620,4376_149 -4289_75978,263,4376_17287,UCD Belfield,105542774,0,4376_7778022_100620,4376_149 -4289_75978,264,4376_17288,UCD Belfield,105652774,0,4376_7778022_100620,4376_149 -4289_75978,265,4376_17289,UCD Belfield,105812774,0,4376_7778022_100620,4376_149 -4289_75962,261,4376_1729,Dalkey,105322624,0,4376_7778022_100173,4376_21 -4289_75978,266,4376_17290,UCD Belfield,105822774,0,4376_7778022_100620,4376_149 -4289_75978,267,4376_17291,UCD Belfield,106052774,0,4376_7778022_100620,4376_149 -4289_75978,268,4376_17292,UCD Belfield,106142774,0,4376_7778022_100620,4376_149 -4289_75978,269,4376_17293,UCD Belfield,106232774,0,4376_7778022_100620,4376_149 -4289_75978,259,4376_17294,UCD Belfield,105765470,0,4376_7778022_100550,4376_150 -4289_75978,270,4376_17295,UCD Belfield,105278140,0,4376_7778022_100500,4376_149 -4289_75978,146,4376_17296,UCD Belfield,105248140,0,4376_7778022_100500,4376_149 -4289_75978,271,4376_17297,UCD Belfield,105238140,0,4376_7778022_100500,4376_149 -4289_75978,115,4376_17298,UCD Belfield,105218140,0,4376_7778022_100500,4376_149 -4289_75978,260,4376_17299,UCD Belfield,105312798,0,4376_7778022_100790,4376_149 -4289_75960,261,4376_173,Sutton Station,105321756,0,4376_7778022_103106,4376_1 -4289_75962,262,4376_1730,Dalkey,105432624,0,4376_7778022_100173,4376_21 -4289_75978,261,4376_17300,UCD Belfield,105322798,0,4376_7778022_100790,4376_149 -4289_75978,262,4376_17301,UCD Belfield,105432798,0,4376_7778022_100790,4376_149 -4289_75978,263,4376_17302,UCD Belfield,105542798,0,4376_7778022_100790,4376_149 -4289_75978,264,4376_17303,UCD Belfield,105652798,0,4376_7778022_100790,4376_149 -4289_75978,265,4376_17304,UCD Belfield,105812798,0,4376_7778022_100790,4376_149 -4289_75978,266,4376_17305,UCD Belfield,105822798,0,4376_7778022_100790,4376_149 -4289_75978,267,4376_17306,UCD Belfield,106052798,0,4376_7778022_100790,4376_149 -4289_75978,268,4376_17307,UCD Belfield,106142798,0,4376_7778022_100790,4376_149 -4289_75978,269,4376_17308,UCD Belfield,106232798,0,4376_7778022_100790,4376_149 -4289_75978,259,4376_17309,UCD Belfield,105765498,0,4376_7778022_100540,4376_149 -4289_75962,263,4376_1731,Dalkey,105542624,0,4376_7778022_100173,4376_21 -4289_75978,260,4376_17310,UCD Belfield,105312814,0,4376_7778022_100730,4376_149 -4289_75978,261,4376_17311,UCD Belfield,105322814,0,4376_7778022_100730,4376_149 -4289_75978,262,4376_17312,UCD Belfield,105432814,0,4376_7778022_100730,4376_149 -4289_75978,263,4376_17313,UCD Belfield,105542814,0,4376_7778022_100730,4376_149 -4289_75978,264,4376_17314,UCD Belfield,105652814,0,4376_7778022_100730,4376_149 -4289_75978,265,4376_17315,UCD Belfield,105812814,0,4376_7778022_100730,4376_149 -4289_75978,266,4376_17316,UCD Belfield,105822814,0,4376_7778022_100730,4376_149 -4289_75978,267,4376_17317,UCD Belfield,106052814,0,4376_7778022_100730,4376_149 -4289_75978,268,4376_17318,UCD Belfield,106142814,0,4376_7778022_100730,4376_149 -4289_75978,269,4376_17319,UCD Belfield,106232814,0,4376_7778022_100730,4376_149 -4289_75962,264,4376_1732,Dalkey,105652624,0,4376_7778022_100173,4376_21 -4289_75978,270,4376_17320,UCD Belfield,105278166,0,4376_7778022_100430,4376_149 -4289_75978,146,4376_17321,UCD Belfield,105248166,0,4376_7778022_100430,4376_149 -4289_75978,271,4376_17322,UCD Belfield,105238166,0,4376_7778022_100430,4376_149 -4289_75978,115,4376_17323,UCD Belfield,105218166,0,4376_7778022_100430,4376_149 -4289_75978,260,4376_17324,UCD Belfield,105312830,0,4376_7778022_100750,4376_149 -4289_75978,261,4376_17325,UCD Belfield,105322830,0,4376_7778022_100750,4376_149 -4289_75978,262,4376_17326,UCD Belfield,105432830,0,4376_7778022_100750,4376_149 -4289_75978,263,4376_17327,UCD Belfield,105542830,0,4376_7778022_100750,4376_149 -4289_75978,264,4376_17328,UCD Belfield,105652830,0,4376_7778022_100750,4376_149 -4289_75978,265,4376_17329,UCD Belfield,105812830,0,4376_7778022_100750,4376_149 -4289_75962,265,4376_1733,Dalkey,105812624,0,4376_7778022_100173,4376_21 -4289_75978,266,4376_17330,UCD Belfield,105822830,0,4376_7778022_100750,4376_149 -4289_75978,267,4376_17331,UCD Belfield,106052830,0,4376_7778022_100750,4376_149 -4289_75978,268,4376_17332,UCD Belfield,106142830,0,4376_7778022_100750,4376_149 -4289_75978,269,4376_17333,UCD Belfield,106232830,0,4376_7778022_100750,4376_149 -4289_75978,259,4376_17334,UCD Belfield,105765512,0,4376_7778022_100490,4376_150 -4289_75978,260,4376_17335,UCD Belfield,105312842,0,4376_7778022_100760,4376_149 -4289_75978,261,4376_17336,UCD Belfield,105322842,0,4376_7778022_100760,4376_149 -4289_75978,262,4376_17337,UCD Belfield,105432842,0,4376_7778022_100760,4376_149 -4289_75978,263,4376_17338,UCD Belfield,105542842,0,4376_7778022_100760,4376_149 -4289_75978,264,4376_17339,UCD Belfield,105652842,0,4376_7778022_100760,4376_149 -4289_75962,266,4376_1734,Dalkey,105822624,0,4376_7778022_100173,4376_21 -4289_75978,265,4376_17340,UCD Belfield,105812842,0,4376_7778022_100760,4376_149 -4289_75978,266,4376_17341,UCD Belfield,105822842,0,4376_7778022_100760,4376_149 -4289_75978,267,4376_17342,UCD Belfield,106052842,0,4376_7778022_100760,4376_149 -4289_75978,268,4376_17343,UCD Belfield,106142842,0,4376_7778022_100760,4376_149 -4289_75978,269,4376_17344,UCD Belfield,106232842,0,4376_7778022_100760,4376_149 -4289_75978,259,4376_17345,UCD Belfield,105765534,0,4376_7778022_100510,4376_149 -4289_75978,270,4376_17346,UCD Belfield,105278186,0,4376_7778022_100440,4376_150 -4289_75978,146,4376_17347,UCD Belfield,105248186,0,4376_7778022_100440,4376_150 -4289_75978,271,4376_17348,UCD Belfield,105238186,0,4376_7778022_100440,4376_150 -4289_75978,115,4376_17349,UCD Belfield,105218186,0,4376_7778022_100440,4376_150 -4289_75962,267,4376_1735,Dalkey,106052624,0,4376_7778022_100173,4376_21 -4289_75978,260,4376_17350,UCD Belfield,105312854,0,4376_7778022_100660,4376_149 -4289_75978,261,4376_17351,UCD Belfield,105322854,0,4376_7778022_100660,4376_149 -4289_75978,262,4376_17352,UCD Belfield,105432854,0,4376_7778022_100660,4376_149 -4289_75978,263,4376_17353,UCD Belfield,105542854,0,4376_7778022_100660,4376_149 -4289_75978,264,4376_17354,UCD Belfield,105652854,0,4376_7778022_100660,4376_149 -4289_75978,265,4376_17355,UCD Belfield,105812854,0,4376_7778022_100660,4376_149 -4289_75978,266,4376_17356,UCD Belfield,105822854,0,4376_7778022_100660,4376_149 -4289_75978,267,4376_17357,UCD Belfield,106052854,0,4376_7778022_100660,4376_149 -4289_75978,268,4376_17358,UCD Belfield,106142854,0,4376_7778022_100660,4376_149 -4289_75978,269,4376_17359,UCD Belfield,106232854,0,4376_7778022_100660,4376_149 -4289_75962,268,4376_1736,Dalkey,106142624,0,4376_7778022_100173,4376_21 -4289_75978,260,4376_17360,UCD Belfield,105312874,0,4376_7778022_100680,4376_149 -4289_75978,261,4376_17361,UCD Belfield,105322874,0,4376_7778022_100680,4376_149 -4289_75978,262,4376_17362,UCD Belfield,105432874,0,4376_7778022_100680,4376_149 -4289_75978,263,4376_17363,UCD Belfield,105542874,0,4376_7778022_100680,4376_149 -4289_75978,264,4376_17364,UCD Belfield,105652874,0,4376_7778022_100680,4376_149 -4289_75978,265,4376_17365,UCD Belfield,105812874,0,4376_7778022_100680,4376_149 -4289_75978,266,4376_17366,UCD Belfield,105822874,0,4376_7778022_100680,4376_149 -4289_75978,267,4376_17367,UCD Belfield,106052874,0,4376_7778022_100680,4376_149 -4289_75978,268,4376_17368,UCD Belfield,106142874,0,4376_7778022_100680,4376_149 -4289_75978,269,4376_17369,UCD Belfield,106232874,0,4376_7778022_100680,4376_149 -4289_75962,269,4376_1737,Dalkey,106232624,0,4376_7778022_100173,4376_21 -4289_75978,259,4376_17370,UCD Belfield,105765552,0,4376_7778022_100562,4376_150 -4289_75978,270,4376_17371,UCD Belfield,105278216,0,4376_7778022_100460,4376_149 -4289_75978,146,4376_17372,UCD Belfield,105248216,0,4376_7778022_100460,4376_149 -4289_75978,271,4376_17373,UCD Belfield,105238216,0,4376_7778022_100460,4376_149 -4289_75978,115,4376_17374,UCD Belfield,105218216,0,4376_7778022_100460,4376_149 -4289_75978,260,4376_17375,UCD Belfield,105312894,0,4376_7778022_100772,4376_149 -4289_75978,261,4376_17376,UCD Belfield,105322894,0,4376_7778022_100772,4376_149 -4289_75978,262,4376_17377,UCD Belfield,105432894,0,4376_7778022_100772,4376_149 -4289_75978,263,4376_17378,UCD Belfield,105542894,0,4376_7778022_100772,4376_149 -4289_75978,264,4376_17379,UCD Belfield,105652894,0,4376_7778022_100772,4376_149 -4289_75962,270,4376_1738,Dun Laoghaire,105278024,0,4376_7778022_100140,4376_23 -4289_75978,265,4376_17380,UCD Belfield,105812894,0,4376_7778022_100772,4376_149 -4289_75978,266,4376_17381,UCD Belfield,105822894,0,4376_7778022_100772,4376_149 -4289_75978,267,4376_17382,UCD Belfield,106052894,0,4376_7778022_100772,4376_149 -4289_75978,268,4376_17383,UCD Belfield,106142894,0,4376_7778022_100772,4376_149 -4289_75978,269,4376_17384,UCD Belfield,106232894,0,4376_7778022_100772,4376_149 -4289_75978,259,4376_17385,UCD Belfield,105765580,0,4376_7778022_100620,4376_149 -4289_75978,260,4376_17386,UCD Belfield,105312906,0,4376_7778022_100630,4376_149 -4289_75978,261,4376_17387,UCD Belfield,105322906,0,4376_7778022_100630,4376_149 -4289_75978,262,4376_17388,UCD Belfield,105432906,0,4376_7778022_100630,4376_149 -4289_75978,263,4376_17389,UCD Belfield,105542906,0,4376_7778022_100630,4376_149 -4289_75962,146,4376_1739,Dun Laoghaire,105248024,0,4376_7778022_100140,4376_23 -4289_75978,264,4376_17390,UCD Belfield,105652906,0,4376_7778022_100630,4376_149 -4289_75978,265,4376_17391,UCD Belfield,105812906,0,4376_7778022_100630,4376_149 -4289_75978,266,4376_17392,UCD Belfield,105822906,0,4376_7778022_100630,4376_149 -4289_75978,267,4376_17393,UCD Belfield,106052906,0,4376_7778022_100630,4376_149 -4289_75978,268,4376_17394,UCD Belfield,106142906,0,4376_7778022_100630,4376_149 -4289_75978,269,4376_17395,UCD Belfield,106232906,0,4376_7778022_100630,4376_149 -4289_75978,270,4376_17396,UCD Belfield,105278238,0,4376_7778022_100420,4376_149 -4289_75978,146,4376_17397,UCD Belfield,105248238,0,4376_7778022_100420,4376_149 -4289_75978,271,4376_17398,UCD Belfield,105238238,0,4376_7778022_100420,4376_149 -4289_75978,115,4376_17399,UCD Belfield,105218238,0,4376_7778022_100420,4376_149 -4289_75960,262,4376_174,Sutton Station,105431756,0,4376_7778022_103106,4376_1 -4289_75962,271,4376_1740,Dun Laoghaire,105238024,0,4376_7778022_100140,4376_23 -4289_75978,260,4376_17400,UCD Belfield,105312922,0,4376_7778022_100652,4376_149 -4289_75978,261,4376_17401,UCD Belfield,105322922,0,4376_7778022_100652,4376_149 -4289_75978,262,4376_17402,UCD Belfield,105432922,0,4376_7778022_100652,4376_149 -4289_75978,263,4376_17403,UCD Belfield,105542922,0,4376_7778022_100652,4376_149 -4289_75978,264,4376_17404,UCD Belfield,105652922,0,4376_7778022_100652,4376_149 -4289_75978,265,4376_17405,UCD Belfield,105812922,0,4376_7778022_100652,4376_149 -4289_75978,266,4376_17406,UCD Belfield,105822922,0,4376_7778022_100652,4376_149 -4289_75978,267,4376_17407,UCD Belfield,106052922,0,4376_7778022_100652,4376_149 -4289_75978,268,4376_17408,UCD Belfield,106142922,0,4376_7778022_100652,4376_149 -4289_75978,269,4376_17409,UCD Belfield,106232922,0,4376_7778022_100652,4376_149 -4289_75962,115,4376_1741,Dun Laoghaire,105218024,0,4376_7778022_100140,4376_23 -4289_75978,259,4376_17410,UCD Belfield,105765596,0,4376_7778022_100610,4376_150 -4289_75978,260,4376_17411,UCD Belfield,105312938,0,4376_7778022_100700,4376_149 -4289_75978,261,4376_17412,UCD Belfield,105322938,0,4376_7778022_100700,4376_149 -4289_75978,262,4376_17413,UCD Belfield,105432938,0,4376_7778022_100700,4376_149 -4289_75978,263,4376_17414,UCD Belfield,105542938,0,4376_7778022_100700,4376_149 -4289_75978,264,4376_17415,UCD Belfield,105652938,0,4376_7778022_100700,4376_149 -4289_75978,265,4376_17416,UCD Belfield,105812938,0,4376_7778022_100700,4376_149 -4289_75978,266,4376_17417,UCD Belfield,105822938,0,4376_7778022_100700,4376_149 -4289_75978,267,4376_17418,UCD Belfield,106052938,0,4376_7778022_100700,4376_149 -4289_75978,268,4376_17419,UCD Belfield,106142938,0,4376_7778022_100700,4376_149 -4289_75962,259,4376_1742,Dalkey,105765360,0,4376_7778022_104043,4376_21 -4289_75978,269,4376_17420,UCD Belfield,106232938,0,4376_7778022_100700,4376_149 -4289_75978,259,4376_17421,UCD Belfield,105765616,0,4376_7778022_100650,4376_149 -4289_75978,270,4376_17422,UCD Belfield,105278262,0,4376_7778022_100500,4376_150 -4289_75978,146,4376_17423,UCD Belfield,105248262,0,4376_7778022_100500,4376_150 -4289_75978,271,4376_17424,UCD Belfield,105238262,0,4376_7778022_100500,4376_150 -4289_75978,115,4376_17425,UCD Belfield,105218262,0,4376_7778022_100500,4376_150 -4289_75978,260,4376_17426,UCD Belfield,105312948,0,4376_7778022_100620,4376_149 -4289_75978,261,4376_17427,UCD Belfield,105322948,0,4376_7778022_100620,4376_149 -4289_75978,262,4376_17428,UCD Belfield,105432948,0,4376_7778022_100620,4376_149 -4289_75978,263,4376_17429,UCD Belfield,105542948,0,4376_7778022_100620,4376_149 -4289_75962,270,4376_1743,Dun Laoghaire,105278104,0,4376_7778022_100150,4376_23 -4289_75978,264,4376_17430,UCD Belfield,105652948,0,4376_7778022_100620,4376_149 -4289_75978,265,4376_17431,UCD Belfield,105812948,0,4376_7778022_100620,4376_149 -4289_75978,266,4376_17432,UCD Belfield,105822948,0,4376_7778022_100620,4376_149 -4289_75978,267,4376_17433,UCD Belfield,106052948,0,4376_7778022_100620,4376_149 -4289_75978,268,4376_17434,UCD Belfield,106142948,0,4376_7778022_100620,4376_149 -4289_75978,269,4376_17435,UCD Belfield,106232948,0,4376_7778022_100620,4376_149 -4289_75978,260,4376_17436,UCD Belfield,105312964,0,4376_7778022_100790,4376_149 -4289_75978,261,4376_17437,UCD Belfield,105322964,0,4376_7778022_100790,4376_149 -4289_75978,262,4376_17438,UCD Belfield,105432964,0,4376_7778022_100790,4376_149 -4289_75978,263,4376_17439,UCD Belfield,105542964,0,4376_7778022_100790,4376_149 -4289_75962,146,4376_1744,Dun Laoghaire,105248104,0,4376_7778022_100150,4376_23 -4289_75978,264,4376_17440,UCD Belfield,105652964,0,4376_7778022_100790,4376_149 -4289_75978,265,4376_17441,UCD Belfield,105812964,0,4376_7778022_100790,4376_149 -4289_75978,266,4376_17442,UCD Belfield,105822964,0,4376_7778022_100790,4376_149 -4289_75978,267,4376_17443,UCD Belfield,106052964,0,4376_7778022_100790,4376_149 -4289_75978,268,4376_17444,UCD Belfield,106142964,0,4376_7778022_100790,4376_149 -4289_75978,269,4376_17445,UCD Belfield,106232964,0,4376_7778022_100790,4376_149 -4289_75978,259,4376_17446,UCD Belfield,105765636,0,4376_7778022_100550,4376_150 -4289_75978,270,4376_17447,UCD Belfield,105278288,0,4376_7778022_100440,4376_149 -4289_75978,146,4376_17448,UCD Belfield,105248288,0,4376_7778022_100440,4376_149 -4289_75978,271,4376_17449,UCD Belfield,105238288,0,4376_7778022_100440,4376_149 -4289_75962,271,4376_1745,Dun Laoghaire,105238104,0,4376_7778022_100150,4376_23 -4289_75978,115,4376_17450,UCD Belfield,105218288,0,4376_7778022_100440,4376_149 -4289_75978,260,4376_17451,UCD Belfield,105312984,0,4376_7778022_100760,4376_149 -4289_75978,261,4376_17452,UCD Belfield,105322984,0,4376_7778022_100760,4376_149 -4289_75978,262,4376_17453,UCD Belfield,105432984,0,4376_7778022_100760,4376_149 -4289_75978,263,4376_17454,UCD Belfield,105542984,0,4376_7778022_100760,4376_149 -4289_75978,264,4376_17455,UCD Belfield,105652984,0,4376_7778022_100760,4376_149 -4289_75978,265,4376_17456,UCD Belfield,105812984,0,4376_7778022_100760,4376_149 -4289_75978,266,4376_17457,UCD Belfield,105822984,0,4376_7778022_100760,4376_149 -4289_75978,267,4376_17458,UCD Belfield,106052984,0,4376_7778022_100760,4376_149 -4289_75978,268,4376_17459,UCD Belfield,106142984,0,4376_7778022_100760,4376_149 -4289_75962,115,4376_1746,Dun Laoghaire,105218104,0,4376_7778022_100150,4376_23 -4289_75978,269,4376_17460,UCD Belfield,106232984,0,4376_7778022_100760,4376_149 -4289_75978,259,4376_17461,UCD Belfield,105765656,0,4376_7778022_100490,4376_150 -4289_75978,270,4376_17462,UCD Belfield,105278304,0,4376_7778022_100460,4376_149 -4289_75978,146,4376_17463,UCD Belfield,105248304,0,4376_7778022_100460,4376_149 -4289_75978,271,4376_17464,UCD Belfield,105238304,0,4376_7778022_100460,4376_149 -4289_75978,115,4376_17465,UCD Belfield,105218304,0,4376_7778022_100460,4376_149 -4289_75978,260,4376_17466,Liffey Valley SC,105311015,1,4376_7778022_100600,4376_152 -4289_75978,261,4376_17467,Liffey Valley SC,105321015,1,4376_7778022_100600,4376_152 -4289_75978,262,4376_17468,Liffey Valley SC,105431015,1,4376_7778022_100600,4376_152 -4289_75978,263,4376_17469,Liffey Valley SC,105541015,1,4376_7778022_100600,4376_152 -4289_75962,260,4376_1747,Dalkey,105312756,0,4376_7778022_100192,4376_21 -4289_75978,264,4376_17470,Liffey Valley SC,105651015,1,4376_7778022_100600,4376_152 -4289_75978,265,4376_17471,Liffey Valley SC,105811015,1,4376_7778022_100600,4376_152 -4289_75978,266,4376_17472,Liffey Valley SC,105821015,1,4376_7778022_100600,4376_152 -4289_75978,267,4376_17473,Liffey Valley SC,106051015,1,4376_7778022_100600,4376_152 -4289_75978,268,4376_17474,Liffey Valley SC,106141015,1,4376_7778022_100600,4376_152 -4289_75978,269,4376_17475,Liffey Valley SC,106231015,1,4376_7778022_100600,4376_152 -4289_75978,260,4376_17476,Liffey Valley SC,105311029,1,4376_7778022_100620,4376_152 -4289_75978,261,4376_17477,Liffey Valley SC,105321029,1,4376_7778022_100620,4376_152 -4289_75978,262,4376_17478,Liffey Valley SC,105431029,1,4376_7778022_100620,4376_152 -4289_75978,263,4376_17479,Liffey Valley SC,105541029,1,4376_7778022_100620,4376_152 -4289_75962,261,4376_1748,Dalkey,105322756,0,4376_7778022_100192,4376_21 -4289_75978,264,4376_17480,Liffey Valley SC,105651029,1,4376_7778022_100620,4376_152 -4289_75978,265,4376_17481,Liffey Valley SC,105811029,1,4376_7778022_100620,4376_152 -4289_75978,266,4376_17482,Liffey Valley SC,105821029,1,4376_7778022_100620,4376_152 -4289_75978,267,4376_17483,Liffey Valley SC,106051029,1,4376_7778022_100620,4376_152 -4289_75978,268,4376_17484,Liffey Valley SC,106141029,1,4376_7778022_100620,4376_152 -4289_75978,269,4376_17485,Liffey Valley SC,106231029,1,4376_7778022_100620,4376_152 -4289_75978,259,4376_17486,Liffey Valley SC,105764025,1,4376_7778022_100480,4376_152 -4289_75978,260,4376_17487,Liffey Valley SC,105311051,1,4376_7778022_100640,4376_152 -4289_75978,261,4376_17488,Liffey Valley SC,105321051,1,4376_7778022_100640,4376_152 -4289_75978,262,4376_17489,Liffey Valley SC,105431051,1,4376_7778022_100640,4376_152 -4289_75962,262,4376_1749,Dalkey,105432756,0,4376_7778022_100192,4376_21 -4289_75978,263,4376_17490,Liffey Valley SC,105541051,1,4376_7778022_100640,4376_152 -4289_75978,264,4376_17491,Liffey Valley SC,105651051,1,4376_7778022_100640,4376_152 -4289_75978,265,4376_17492,Liffey Valley SC,105811051,1,4376_7778022_100640,4376_152 -4289_75978,266,4376_17493,Liffey Valley SC,105821051,1,4376_7778022_100640,4376_152 -4289_75978,267,4376_17494,Liffey Valley SC,106051051,1,4376_7778022_100640,4376_152 -4289_75978,268,4376_17495,Liffey Valley SC,106141051,1,4376_7778022_100640,4376_152 -4289_75978,269,4376_17496,Liffey Valley SC,106231051,1,4376_7778022_100640,4376_152 -4289_75978,259,4376_17497,Liffey Valley SC,105764041,1,4376_7778022_100490,4376_152 -4289_75978,260,4376_17498,Liffey Valley SC,105311067,1,4376_7778022_100611,4376_152 -4289_75978,261,4376_17499,Liffey Valley SC,105321067,1,4376_7778022_100611,4376_152 -4289_75960,263,4376_175,Sutton Station,105541756,0,4376_7778022_103106,4376_1 -4289_75962,263,4376_1750,Dalkey,105542756,0,4376_7778022_100192,4376_21 -4289_75978,262,4376_17500,Liffey Valley SC,105431067,1,4376_7778022_100611,4376_152 -4289_75978,263,4376_17501,Liffey Valley SC,105541067,1,4376_7778022_100611,4376_152 -4289_75978,264,4376_17502,Liffey Valley SC,105651067,1,4376_7778022_100611,4376_152 -4289_75978,265,4376_17503,Liffey Valley SC,105811067,1,4376_7778022_100611,4376_152 -4289_75978,266,4376_17504,Liffey Valley SC,105821067,1,4376_7778022_100611,4376_152 -4289_75978,267,4376_17505,Liffey Valley SC,106051067,1,4376_7778022_100611,4376_152 -4289_75978,268,4376_17506,Liffey Valley SC,106141067,1,4376_7778022_100611,4376_152 -4289_75978,269,4376_17507,Liffey Valley SC,106231067,1,4376_7778022_100611,4376_152 -4289_75978,260,4376_17508,Liffey Valley SC,105311083,1,4376_7778022_100660,4376_152 -4289_75978,261,4376_17509,Liffey Valley SC,105321083,1,4376_7778022_100660,4376_152 -4289_75962,264,4376_1751,Dalkey,105652756,0,4376_7778022_100192,4376_21 -4289_75978,262,4376_17510,Liffey Valley SC,105431083,1,4376_7778022_100660,4376_152 -4289_75978,263,4376_17511,Liffey Valley SC,105541083,1,4376_7778022_100660,4376_152 -4289_75978,264,4376_17512,Liffey Valley SC,105651083,1,4376_7778022_100660,4376_152 -4289_75978,265,4376_17513,Liffey Valley SC,105811083,1,4376_7778022_100660,4376_152 -4289_75978,266,4376_17514,Liffey Valley SC,105821083,1,4376_7778022_100660,4376_152 -4289_75978,267,4376_17515,Liffey Valley SC,106051083,1,4376_7778022_100660,4376_152 -4289_75978,268,4376_17516,Liffey Valley SC,106141083,1,4376_7778022_100660,4376_152 -4289_75978,269,4376_17517,Liffey Valley SC,106231083,1,4376_7778022_100660,4376_152 -4289_75978,259,4376_17518,Liffey Valley SC,105764059,1,4376_7778022_100510,4376_153 -4289_75978,260,4376_17519,Liffey Valley SC,105311091,1,4376_7778022_100670,4376_152 -4289_75962,265,4376_1752,Dalkey,105812756,0,4376_7778022_100192,4376_21 -4289_75978,261,4376_17520,Liffey Valley SC,105321091,1,4376_7778022_100670,4376_152 -4289_75978,262,4376_17521,Liffey Valley SC,105431091,1,4376_7778022_100670,4376_152 -4289_75978,263,4376_17522,Liffey Valley SC,105541091,1,4376_7778022_100670,4376_152 -4289_75978,264,4376_17523,Liffey Valley SC,105651091,1,4376_7778022_100670,4376_152 -4289_75978,265,4376_17524,Liffey Valley SC,105811091,1,4376_7778022_100670,4376_152 -4289_75978,266,4376_17525,Liffey Valley SC,105821091,1,4376_7778022_100670,4376_152 -4289_75978,267,4376_17526,Liffey Valley SC,106051091,1,4376_7778022_100670,4376_152 -4289_75978,268,4376_17527,Liffey Valley SC,106141091,1,4376_7778022_100670,4376_152 -4289_75978,269,4376_17528,Liffey Valley SC,106231091,1,4376_7778022_100670,4376_152 -4289_75978,260,4376_17529,Liffey Valley SC,105311105,1,4376_7778022_100680,4376_152 -4289_75962,266,4376_1753,Dalkey,105822756,0,4376_7778022_100192,4376_21 -4289_75978,261,4376_17530,Liffey Valley SC,105321105,1,4376_7778022_100680,4376_152 -4289_75978,262,4376_17531,Liffey Valley SC,105431105,1,4376_7778022_100680,4376_152 -4289_75978,263,4376_17532,Liffey Valley SC,105541105,1,4376_7778022_100680,4376_152 -4289_75978,264,4376_17533,Liffey Valley SC,105651105,1,4376_7778022_100680,4376_152 -4289_75978,265,4376_17534,Liffey Valley SC,105811105,1,4376_7778022_100680,4376_152 -4289_75978,266,4376_17535,Liffey Valley SC,105821105,1,4376_7778022_100680,4376_152 -4289_75978,267,4376_17536,Liffey Valley SC,106051105,1,4376_7778022_100680,4376_152 -4289_75978,268,4376_17537,Liffey Valley SC,106141105,1,4376_7778022_100680,4376_152 -4289_75978,269,4376_17538,Liffey Valley SC,106231105,1,4376_7778022_100680,4376_152 -4289_75978,259,4376_17539,Liffey Valley SC,105764071,1,4376_7778022_100500,4376_152 -4289_75962,267,4376_1754,Dalkey,106052756,0,4376_7778022_100192,4376_21 -4289_75978,260,4376_17540,Liffey Valley SC,105311117,1,4376_7778022_100630,4376_152 -4289_75978,261,4376_17541,Liffey Valley SC,105321117,1,4376_7778022_100630,4376_152 -4289_75978,262,4376_17542,Liffey Valley SC,105431117,1,4376_7778022_100630,4376_152 -4289_75978,263,4376_17543,Liffey Valley SC,105541117,1,4376_7778022_100630,4376_152 -4289_75978,264,4376_17544,Liffey Valley SC,105651117,1,4376_7778022_100630,4376_152 -4289_75978,265,4376_17545,Liffey Valley SC,105811117,1,4376_7778022_100630,4376_152 -4289_75978,266,4376_17546,Liffey Valley SC,105821117,1,4376_7778022_100630,4376_152 -4289_75978,267,4376_17547,Liffey Valley SC,106051117,1,4376_7778022_100630,4376_152 -4289_75978,268,4376_17548,Liffey Valley SC,106141117,1,4376_7778022_100630,4376_152 -4289_75978,269,4376_17549,Liffey Valley SC,106231117,1,4376_7778022_100630,4376_152 -4289_75962,268,4376_1755,Dalkey,106142756,0,4376_7778022_100192,4376_21 -4289_75978,260,4376_17550,Liffey Valley SC,105311147,1,4376_7778022_100700,4376_152 -4289_75978,261,4376_17551,Liffey Valley SC,105321147,1,4376_7778022_100700,4376_152 -4289_75978,262,4376_17552,Liffey Valley SC,105431147,1,4376_7778022_100700,4376_152 -4289_75978,263,4376_17553,Liffey Valley SC,105541147,1,4376_7778022_100700,4376_152 -4289_75978,264,4376_17554,Liffey Valley SC,105651147,1,4376_7778022_100700,4376_152 -4289_75978,265,4376_17555,Liffey Valley SC,105811147,1,4376_7778022_100700,4376_152 -4289_75978,266,4376_17556,Liffey Valley SC,105821147,1,4376_7778022_100700,4376_152 -4289_75978,267,4376_17557,Liffey Valley SC,106051147,1,4376_7778022_100700,4376_152 -4289_75978,268,4376_17558,Liffey Valley SC,106141147,1,4376_7778022_100700,4376_152 -4289_75978,269,4376_17559,Liffey Valley SC,106231147,1,4376_7778022_100700,4376_152 -4289_75962,269,4376_1756,Dalkey,106232756,0,4376_7778022_100192,4376_21 -4289_75978,259,4376_17560,Liffey Valley SC,105764093,1,4376_7778022_100520,4376_153 -4289_75978,260,4376_17561,Liffey Valley SC,105311157,1,4376_7778022_100720,4376_152 -4289_75978,261,4376_17562,Liffey Valley SC,105321157,1,4376_7778022_100720,4376_152 -4289_75978,262,4376_17563,Liffey Valley SC,105431157,1,4376_7778022_100720,4376_152 -4289_75978,263,4376_17564,Liffey Valley SC,105541157,1,4376_7778022_100720,4376_152 -4289_75978,264,4376_17565,Liffey Valley SC,105651157,1,4376_7778022_100720,4376_152 -4289_75978,265,4376_17566,Liffey Valley SC,105811157,1,4376_7778022_100720,4376_152 -4289_75978,266,4376_17567,Liffey Valley SC,105821157,1,4376_7778022_100720,4376_152 -4289_75978,267,4376_17568,Liffey Valley SC,106051157,1,4376_7778022_100720,4376_152 -4289_75978,268,4376_17569,Liffey Valley SC,106141157,1,4376_7778022_100720,4376_152 -4289_75962,259,4376_1757,Dalkey,105765448,0,4376_7778022_104033,4376_21 -4289_75978,269,4376_17570,Liffey Valley SC,106231157,1,4376_7778022_100720,4376_152 -4289_75978,260,4376_17571,Liffey Valley SC,105311167,1,4376_7778022_100740,4376_152 -4289_75978,261,4376_17572,Liffey Valley SC,105321167,1,4376_7778022_100740,4376_152 -4289_75978,262,4376_17573,Liffey Valley SC,105431167,1,4376_7778022_100740,4376_152 -4289_75978,263,4376_17574,Liffey Valley SC,105541167,1,4376_7778022_100740,4376_152 -4289_75978,264,4376_17575,Liffey Valley SC,105651167,1,4376_7778022_100740,4376_152 -4289_75978,265,4376_17576,Liffey Valley SC,105811167,1,4376_7778022_100740,4376_152 -4289_75978,266,4376_17577,Liffey Valley SC,105821167,1,4376_7778022_100740,4376_152 -4289_75978,267,4376_17578,Liffey Valley SC,106051167,1,4376_7778022_100740,4376_152 -4289_75978,268,4376_17579,Liffey Valley SC,106141167,1,4376_7778022_100740,4376_152 -4289_75962,270,4376_1758,Dun Laoghaire,105278178,0,4376_7778022_100140,4376_23 -4289_75978,269,4376_17580,Liffey Valley SC,106231167,1,4376_7778022_100740,4376_152 -4289_75978,259,4376_17581,Liffey Valley SC,105764115,1,4376_7778022_100530,4376_152 -4289_75978,260,4376_17582,Liffey Valley SC,105311185,1,4376_7778022_100651,4376_152 -4289_75978,261,4376_17583,Liffey Valley SC,105321185,1,4376_7778022_100651,4376_152 -4289_75978,262,4376_17584,Liffey Valley SC,105431185,1,4376_7778022_100651,4376_152 -4289_75978,263,4376_17585,Liffey Valley SC,105541185,1,4376_7778022_100651,4376_152 -4289_75978,264,4376_17586,Liffey Valley SC,105651185,1,4376_7778022_100651,4376_152 -4289_75978,265,4376_17587,Liffey Valley SC,105811185,1,4376_7778022_100651,4376_152 -4289_75978,266,4376_17588,Liffey Valley SC,105821185,1,4376_7778022_100651,4376_152 -4289_75978,267,4376_17589,Liffey Valley SC,106051185,1,4376_7778022_100651,4376_152 -4289_75962,146,4376_1759,Dun Laoghaire,105248178,0,4376_7778022_100140,4376_23 -4289_75978,268,4376_17590,Liffey Valley SC,106141185,1,4376_7778022_100651,4376_152 -4289_75978,269,4376_17591,Liffey Valley SC,106231185,1,4376_7778022_100651,4376_152 -4289_75978,270,4376_17592,Liffey Valley SC,105277009,1,4376_7778022_100410,4376_152 -4289_75978,146,4376_17593,Liffey Valley SC,105247009,1,4376_7778022_100410,4376_152 -4289_75978,271,4376_17594,Liffey Valley SC,105237009,1,4376_7778022_100410,4376_152 -4289_75978,115,4376_17595,Liffey Valley SC,105217009,1,4376_7778022_100410,4376_152 -4289_75978,260,4376_17596,Liffey Valley SC,105311205,1,4376_7778022_100600,4376_152 -4289_75978,261,4376_17597,Liffey Valley SC,105321205,1,4376_7778022_100600,4376_152 -4289_75978,262,4376_17598,Liffey Valley SC,105431205,1,4376_7778022_100600,4376_152 -4289_75978,263,4376_17599,Liffey Valley SC,105541205,1,4376_7778022_100600,4376_152 -4289_75960,264,4376_176,Sutton Station,105651756,0,4376_7778022_103106,4376_1 -4289_75962,271,4376_1760,Dun Laoghaire,105238178,0,4376_7778022_100140,4376_23 -4289_75978,264,4376_17600,Liffey Valley SC,105651205,1,4376_7778022_100600,4376_152 -4289_75978,265,4376_17601,Liffey Valley SC,105811205,1,4376_7778022_100600,4376_152 -4289_75978,266,4376_17602,Liffey Valley SC,105821205,1,4376_7778022_100600,4376_152 -4289_75978,267,4376_17603,Liffey Valley SC,106051205,1,4376_7778022_100600,4376_152 -4289_75978,268,4376_17604,Liffey Valley SC,106141205,1,4376_7778022_100600,4376_152 -4289_75978,269,4376_17605,Liffey Valley SC,106231205,1,4376_7778022_100600,4376_152 -4289_75978,259,4376_17606,Liffey Valley SC,105764135,1,4376_7778022_100480,4376_153 -4289_75978,260,4376_17607,Liffey Valley SC,105311223,1,4376_7778022_100690,4376_152 -4289_75978,261,4376_17608,Liffey Valley SC,105321223,1,4376_7778022_100690,4376_152 -4289_75978,262,4376_17609,Liffey Valley SC,105431223,1,4376_7778022_100690,4376_152 -4289_75962,115,4376_1761,Dun Laoghaire,105218178,0,4376_7778022_100140,4376_23 -4289_75978,263,4376_17610,Liffey Valley SC,105541223,1,4376_7778022_100690,4376_152 -4289_75978,264,4376_17611,Liffey Valley SC,105651223,1,4376_7778022_100690,4376_152 -4289_75978,265,4376_17612,Liffey Valley SC,105811223,1,4376_7778022_100690,4376_152 -4289_75978,266,4376_17613,Liffey Valley SC,105821223,1,4376_7778022_100690,4376_152 -4289_75978,267,4376_17614,Liffey Valley SC,106051223,1,4376_7778022_100690,4376_152 -4289_75978,268,4376_17615,Liffey Valley SC,106141223,1,4376_7778022_100690,4376_152 -4289_75978,269,4376_17616,Liffey Valley SC,106231223,1,4376_7778022_100690,4376_152 -4289_75978,259,4376_17617,Liffey Valley SC,105764155,1,4376_7778022_100540,4376_152 -4289_75978,270,4376_17618,Liffey Valley SC,105277019,1,4376_7778022_100420,4376_153 -4289_75978,146,4376_17619,Liffey Valley SC,105247019,1,4376_7778022_100420,4376_153 -4289_75962,260,4376_1762,Dalkey,105312850,0,4376_7778022_104073,4376_21 -4289_75978,271,4376_17620,Liffey Valley SC,105237019,1,4376_7778022_100420,4376_153 -4289_75978,115,4376_17621,Liffey Valley SC,105217019,1,4376_7778022_100420,4376_153 -4289_75978,260,4376_17622,Liffey Valley SC,105311243,1,4376_7778022_100771,4376_152 -4289_75978,261,4376_17623,Liffey Valley SC,105321243,1,4376_7778022_100771,4376_152 -4289_75978,262,4376_17624,Liffey Valley SC,105431243,1,4376_7778022_100771,4376_152 -4289_75978,263,4376_17625,Liffey Valley SC,105541243,1,4376_7778022_100771,4376_152 -4289_75978,264,4376_17626,Liffey Valley SC,105651243,1,4376_7778022_100771,4376_152 -4289_75978,265,4376_17627,Liffey Valley SC,105811243,1,4376_7778022_100771,4376_152 -4289_75978,266,4376_17628,Liffey Valley SC,105821243,1,4376_7778022_100771,4376_152 -4289_75978,267,4376_17629,Liffey Valley SC,106051243,1,4376_7778022_100771,4376_152 -4289_75962,261,4376_1763,Dalkey,105322850,0,4376_7778022_104073,4376_21 -4289_75978,268,4376_17630,Liffey Valley SC,106141243,1,4376_7778022_100771,4376_152 -4289_75978,269,4376_17631,Liffey Valley SC,106231243,1,4376_7778022_100771,4376_152 -4289_75978,260,4376_17632,Liffey Valley SC,105311281,1,4376_7778022_100620,4376_152 -4289_75978,261,4376_17633,Liffey Valley SC,105321281,1,4376_7778022_100620,4376_152 -4289_75978,262,4376_17634,Liffey Valley SC,105431281,1,4376_7778022_100620,4376_152 -4289_75978,263,4376_17635,Liffey Valley SC,105541281,1,4376_7778022_100620,4376_152 -4289_75978,264,4376_17636,Liffey Valley SC,105651281,1,4376_7778022_100620,4376_152 -4289_75978,265,4376_17637,Liffey Valley SC,105811281,1,4376_7778022_100620,4376_152 -4289_75978,266,4376_17638,Liffey Valley SC,105821281,1,4376_7778022_100620,4376_152 -4289_75978,267,4376_17639,Liffey Valley SC,106051281,1,4376_7778022_100620,4376_152 -4289_75962,262,4376_1764,Dalkey,105432850,0,4376_7778022_104073,4376_21 -4289_75978,268,4376_17640,Liffey Valley SC,106141281,1,4376_7778022_100620,4376_152 -4289_75978,269,4376_17641,Liffey Valley SC,106231281,1,4376_7778022_100620,4376_152 -4289_75978,259,4376_17642,Liffey Valley SC,105764175,1,4376_7778022_100490,4376_153 -4289_75978,270,4376_17643,Liffey Valley SC,105277031,1,4376_7778022_100450,4376_152 -4289_75978,146,4376_17644,Liffey Valley SC,105247031,1,4376_7778022_100450,4376_152 -4289_75978,271,4376_17645,Liffey Valley SC,105237031,1,4376_7778022_100450,4376_152 -4289_75978,115,4376_17646,Liffey Valley SC,105217031,1,4376_7778022_100450,4376_152 -4289_75978,260,4376_17647,Liffey Valley SC,105311297,1,4376_7778022_100710,4376_152 -4289_75978,261,4376_17648,Liffey Valley SC,105321297,1,4376_7778022_100710,4376_152 -4289_75978,262,4376_17649,Liffey Valley SC,105431297,1,4376_7778022_100710,4376_152 -4289_75962,263,4376_1765,Dalkey,105542850,0,4376_7778022_104073,4376_21 -4289_75978,263,4376_17650,Liffey Valley SC,105541297,1,4376_7778022_100710,4376_152 -4289_75978,264,4376_17651,Liffey Valley SC,105651297,1,4376_7778022_100710,4376_152 -4289_75978,265,4376_17652,Liffey Valley SC,105811297,1,4376_7778022_100710,4376_152 -4289_75978,266,4376_17653,Liffey Valley SC,105821297,1,4376_7778022_100710,4376_152 -4289_75978,267,4376_17654,Liffey Valley SC,106051297,1,4376_7778022_100710,4376_152 -4289_75978,268,4376_17655,Liffey Valley SC,106141297,1,4376_7778022_100710,4376_152 -4289_75978,269,4376_17656,Liffey Valley SC,106231297,1,4376_7778022_100710,4376_152 -4289_75978,259,4376_17657,Liffey Valley SC,105764201,1,4376_7778022_100510,4376_152 -4289_75978,260,4376_17658,Liffey Valley SC,105311327,1,4376_7778022_100730,4376_152 -4289_75978,261,4376_17659,Liffey Valley SC,105321327,1,4376_7778022_100730,4376_152 -4289_75962,264,4376_1766,Dalkey,105652850,0,4376_7778022_104073,4376_21 -4289_75978,262,4376_17660,Liffey Valley SC,105431327,1,4376_7778022_100730,4376_152 -4289_75978,263,4376_17661,Liffey Valley SC,105541327,1,4376_7778022_100730,4376_152 -4289_75978,264,4376_17662,Liffey Valley SC,105651327,1,4376_7778022_100730,4376_152 -4289_75978,265,4376_17663,Liffey Valley SC,105811327,1,4376_7778022_100730,4376_152 -4289_75978,266,4376_17664,Liffey Valley SC,105821327,1,4376_7778022_100730,4376_152 -4289_75978,267,4376_17665,Liffey Valley SC,106051327,1,4376_7778022_100730,4376_152 -4289_75978,268,4376_17666,Liffey Valley SC,106141327,1,4376_7778022_100730,4376_152 -4289_75978,269,4376_17667,Liffey Valley SC,106231327,1,4376_7778022_100730,4376_152 -4289_75978,270,4376_17668,Liffey Valley SC,105277047,1,4376_7778022_100430,4376_152 -4289_75978,146,4376_17669,Liffey Valley SC,105247047,1,4376_7778022_100430,4376_152 -4289_75962,265,4376_1767,Dalkey,105812850,0,4376_7778022_104073,4376_21 -4289_75978,271,4376_17670,Liffey Valley SC,105237047,1,4376_7778022_100430,4376_152 -4289_75978,115,4376_17671,Liffey Valley SC,105217047,1,4376_7778022_100430,4376_152 -4289_75978,260,4376_17672,Liffey Valley SC,105311345,1,4376_7778022_100750,4376_152 -4289_75978,261,4376_17673,Liffey Valley SC,105321345,1,4376_7778022_100750,4376_152 -4289_75978,262,4376_17674,Liffey Valley SC,105431345,1,4376_7778022_100750,4376_152 -4289_75978,263,4376_17675,Liffey Valley SC,105541345,1,4376_7778022_100750,4376_152 -4289_75978,264,4376_17676,Liffey Valley SC,105651345,1,4376_7778022_100750,4376_152 -4289_75978,265,4376_17677,Liffey Valley SC,105811345,1,4376_7778022_100750,4376_152 -4289_75978,266,4376_17678,Liffey Valley SC,105821345,1,4376_7778022_100750,4376_152 -4289_75978,267,4376_17679,Liffey Valley SC,106051345,1,4376_7778022_100750,4376_152 -4289_75962,266,4376_1768,Dalkey,105822850,0,4376_7778022_104073,4376_21 -4289_75978,268,4376_17680,Liffey Valley SC,106141345,1,4376_7778022_100750,4376_152 -4289_75978,269,4376_17681,Liffey Valley SC,106231345,1,4376_7778022_100750,4376_152 -4289_75978,259,4376_17682,Liffey Valley SC,105764219,1,4376_7778022_100500,4376_153 -4289_75978,260,4376_17683,Liffey Valley SC,105311365,1,4376_7778022_100760,4376_152 -4289_75978,261,4376_17684,Liffey Valley SC,105321365,1,4376_7778022_100760,4376_152 -4289_75978,262,4376_17685,Liffey Valley SC,105431365,1,4376_7778022_100760,4376_152 -4289_75978,263,4376_17686,Liffey Valley SC,105541365,1,4376_7778022_100760,4376_152 -4289_75978,264,4376_17687,Liffey Valley SC,105651365,1,4376_7778022_100760,4376_152 -4289_75978,265,4376_17688,Liffey Valley SC,105811365,1,4376_7778022_100760,4376_152 -4289_75978,266,4376_17689,Liffey Valley SC,105821365,1,4376_7778022_100760,4376_152 -4289_75962,267,4376_1769,Dalkey,106052850,0,4376_7778022_104073,4376_21 -4289_75978,267,4376_17690,Liffey Valley SC,106051365,1,4376_7778022_100760,4376_152 -4289_75978,268,4376_17691,Liffey Valley SC,106141365,1,4376_7778022_100760,4376_152 -4289_75978,269,4376_17692,Liffey Valley SC,106231365,1,4376_7778022_100760,4376_152 -4289_75978,259,4376_17693,Liffey Valley SC,105764243,1,4376_7778022_100520,4376_152 -4289_75978,270,4376_17694,Liffey Valley SC,105277069,1,4376_7778022_100440,4376_153 -4289_75978,146,4376_17695,Liffey Valley SC,105247069,1,4376_7778022_100440,4376_153 -4289_75978,271,4376_17696,Liffey Valley SC,105237069,1,4376_7778022_100440,4376_153 -4289_75978,115,4376_17697,Liffey Valley SC,105217069,1,4376_7778022_100440,4376_153 -4289_75978,260,4376_17698,Liffey Valley SC,105311379,1,4376_7778022_100640,4376_152 -4289_75978,261,4376_17699,Liffey Valley SC,105321379,1,4376_7778022_100640,4376_152 -4289_75960,265,4376_177,Sutton Station,105811756,0,4376_7778022_103106,4376_1 -4289_75962,268,4376_1770,Dalkey,106142850,0,4376_7778022_104073,4376_21 -4289_75978,262,4376_17700,Liffey Valley SC,105431379,1,4376_7778022_100640,4376_152 -4289_75978,263,4376_17701,Liffey Valley SC,105541379,1,4376_7778022_100640,4376_152 -4289_75978,264,4376_17702,Liffey Valley SC,105651379,1,4376_7778022_100640,4376_152 -4289_75978,265,4376_17703,Liffey Valley SC,105811379,1,4376_7778022_100640,4376_152 -4289_75978,266,4376_17704,Liffey Valley SC,105821379,1,4376_7778022_100640,4376_152 -4289_75978,267,4376_17705,Liffey Valley SC,106051379,1,4376_7778022_100640,4376_152 -4289_75978,268,4376_17706,Liffey Valley SC,106141379,1,4376_7778022_100640,4376_152 -4289_75978,269,4376_17707,Liffey Valley SC,106231379,1,4376_7778022_100640,4376_152 -4289_75978,260,4376_17708,Liffey Valley SC,105311401,1,4376_7778022_100781,4376_152 -4289_75978,261,4376_17709,Liffey Valley SC,105321401,1,4376_7778022_100781,4376_152 -4289_75962,269,4376_1771,Dalkey,106232850,0,4376_7778022_104073,4376_21 -4289_75978,262,4376_17710,Liffey Valley SC,105431401,1,4376_7778022_100781,4376_152 -4289_75978,263,4376_17711,Liffey Valley SC,105541401,1,4376_7778022_100781,4376_152 -4289_75978,264,4376_17712,Liffey Valley SC,105651401,1,4376_7778022_100781,4376_152 -4289_75978,265,4376_17713,Liffey Valley SC,105811401,1,4376_7778022_100781,4376_152 -4289_75978,266,4376_17714,Liffey Valley SC,105821401,1,4376_7778022_100781,4376_152 -4289_75978,267,4376_17715,Liffey Valley SC,106051401,1,4376_7778022_100781,4376_152 -4289_75978,268,4376_17716,Liffey Valley SC,106141401,1,4376_7778022_100781,4376_152 -4289_75978,269,4376_17717,Liffey Valley SC,106231401,1,4376_7778022_100781,4376_152 -4289_75978,259,4376_17718,Liffey Valley SC,105764261,1,4376_7778022_100530,4376_153 -4289_75978,270,4376_17719,Liffey Valley SC,105277091,1,4376_7778022_100460,4376_152 -4289_75962,259,4376_1772,Dalkey,105765530,0,4376_7778022_104193,4376_21 -4289_75978,146,4376_17720,Liffey Valley SC,105247091,1,4376_7778022_100460,4376_152 -4289_75978,271,4376_17721,Liffey Valley SC,105237091,1,4376_7778022_100460,4376_152 -4289_75978,115,4376_17722,Liffey Valley SC,105217091,1,4376_7778022_100460,4376_152 -4289_75978,260,4376_17723,Liffey Valley SC,105311415,1,4376_7778022_100611,4376_152 -4289_75978,261,4376_17724,Liffey Valley SC,105321415,1,4376_7778022_100611,4376_152 -4289_75978,262,4376_17725,Liffey Valley SC,105431415,1,4376_7778022_100611,4376_152 -4289_75978,263,4376_17726,Liffey Valley SC,105541415,1,4376_7778022_100611,4376_152 -4289_75978,264,4376_17727,Liffey Valley SC,105651415,1,4376_7778022_100611,4376_152 -4289_75978,265,4376_17728,Liffey Valley SC,105811415,1,4376_7778022_100611,4376_152 -4289_75978,266,4376_17729,Liffey Valley SC,105821415,1,4376_7778022_100611,4376_152 -4289_75962,260,4376_1773,Dalkey,105312928,0,4376_7778022_100192,4376_21 -4289_75978,267,4376_17730,Liffey Valley SC,106051415,1,4376_7778022_100611,4376_152 -4289_75978,268,4376_17731,Liffey Valley SC,106141415,1,4376_7778022_100611,4376_152 -4289_75978,269,4376_17732,Liffey Valley SC,106231415,1,4376_7778022_100611,4376_152 -4289_75978,259,4376_17733,Liffey Valley SC,105764275,1,4376_7778022_100561,4376_153 -4289_75978,260,4376_17734,Liffey Valley SC,105311431,1,4376_7778022_100660,4376_152 -4289_75978,261,4376_17735,Liffey Valley SC,105321431,1,4376_7778022_100660,4376_152 -4289_75978,262,4376_17736,Liffey Valley SC,105431431,1,4376_7778022_100660,4376_152 -4289_75978,263,4376_17737,Liffey Valley SC,105541431,1,4376_7778022_100660,4376_152 -4289_75978,264,4376_17738,Liffey Valley SC,105651431,1,4376_7778022_100660,4376_152 -4289_75978,265,4376_17739,Liffey Valley SC,105811431,1,4376_7778022_100660,4376_152 -4289_75962,261,4376_1774,Dalkey,105322928,0,4376_7778022_100192,4376_21 -4289_75978,266,4376_17740,Liffey Valley SC,105821431,1,4376_7778022_100660,4376_152 -4289_75978,267,4376_17741,Liffey Valley SC,106051431,1,4376_7778022_100660,4376_152 -4289_75978,268,4376_17742,Liffey Valley SC,106141431,1,4376_7778022_100660,4376_152 -4289_75978,269,4376_17743,Liffey Valley SC,106231431,1,4376_7778022_100660,4376_152 -4289_75978,259,4376_17744,Liffey Valley SC,105764293,1,4376_7778022_100550,4376_153 -4289_75978,270,4376_17745,Liffey Valley SC,105277115,1,4376_7778022_100410,4376_152 -4289_75978,146,4376_17746,Liffey Valley SC,105247115,1,4376_7778022_100410,4376_152 -4289_75978,271,4376_17747,Liffey Valley SC,105237115,1,4376_7778022_100410,4376_152 -4289_75978,115,4376_17748,Liffey Valley SC,105217115,1,4376_7778022_100410,4376_152 -4289_75978,260,4376_17749,Liffey Valley SC,105311455,1,4376_7778022_100670,4376_152 -4289_75962,262,4376_1775,Dalkey,105432928,0,4376_7778022_100192,4376_21 -4289_75978,261,4376_17750,Liffey Valley SC,105321455,1,4376_7778022_100670,4376_152 -4289_75978,262,4376_17751,Liffey Valley SC,105431455,1,4376_7778022_100670,4376_152 -4289_75978,263,4376_17752,Liffey Valley SC,105541455,1,4376_7778022_100670,4376_152 -4289_75978,264,4376_17753,Liffey Valley SC,105651455,1,4376_7778022_100670,4376_152 -4289_75978,265,4376_17754,Liffey Valley SC,105811455,1,4376_7778022_100670,4376_152 -4289_75978,266,4376_17755,Liffey Valley SC,105821455,1,4376_7778022_100670,4376_152 -4289_75978,267,4376_17756,Liffey Valley SC,106051455,1,4376_7778022_100670,4376_152 -4289_75978,268,4376_17757,Liffey Valley SC,106141455,1,4376_7778022_100670,4376_152 -4289_75978,269,4376_17758,Liffey Valley SC,106231455,1,4376_7778022_100670,4376_152 -4289_75978,259,4376_17759,Liffey Valley SC,105764313,1,4376_7778022_100480,4376_153 -4289_75962,263,4376_1776,Dalkey,105542928,0,4376_7778022_100192,4376_21 -4289_75978,260,4376_17760,Liffey Valley SC,105311469,1,4376_7778022_100680,4376_152 -4289_75978,261,4376_17761,Liffey Valley SC,105321469,1,4376_7778022_100680,4376_152 -4289_75978,262,4376_17762,Liffey Valley SC,105431469,1,4376_7778022_100680,4376_152 -4289_75978,263,4376_17763,Liffey Valley SC,105541469,1,4376_7778022_100680,4376_152 -4289_75978,264,4376_17764,Liffey Valley SC,105651469,1,4376_7778022_100680,4376_152 -4289_75978,265,4376_17765,Liffey Valley SC,105811469,1,4376_7778022_100680,4376_152 -4289_75978,266,4376_17766,Liffey Valley SC,105821469,1,4376_7778022_100680,4376_152 -4289_75978,267,4376_17767,Liffey Valley SC,106051469,1,4376_7778022_100680,4376_152 -4289_75978,268,4376_17768,Liffey Valley SC,106141469,1,4376_7778022_100680,4376_152 -4289_75978,269,4376_17769,Liffey Valley SC,106231469,1,4376_7778022_100680,4376_152 -4289_75962,264,4376_1777,Dalkey,105652928,0,4376_7778022_100192,4376_21 -4289_75978,259,4376_17770,Liffey Valley SC,105764329,1,4376_7778022_100580,4376_153 -4289_75978,270,4376_17771,Liffey Valley SC,105277143,1,4376_7778022_100420,4376_152 -4289_75978,146,4376_17772,Liffey Valley SC,105247143,1,4376_7778022_100420,4376_152 -4289_75978,271,4376_17773,Liffey Valley SC,105237143,1,4376_7778022_100420,4376_152 -4289_75978,115,4376_17774,Liffey Valley SC,105217143,1,4376_7778022_100420,4376_152 -4289_75978,260,4376_17775,Liffey Valley SC,105311487,1,4376_7778022_100630,4376_152 -4289_75978,261,4376_17776,Liffey Valley SC,105321487,1,4376_7778022_100630,4376_152 -4289_75978,262,4376_17777,Liffey Valley SC,105431487,1,4376_7778022_100630,4376_152 -4289_75978,263,4376_17778,Liffey Valley SC,105541487,1,4376_7778022_100630,4376_152 -4289_75978,264,4376_17779,Liffey Valley SC,105651487,1,4376_7778022_100630,4376_152 -4289_75962,265,4376_1778,Dalkey,105812928,0,4376_7778022_100192,4376_21 -4289_75978,265,4376_17780,Liffey Valley SC,105811487,1,4376_7778022_100630,4376_152 -4289_75978,266,4376_17781,Liffey Valley SC,105821487,1,4376_7778022_100630,4376_152 -4289_75978,267,4376_17782,Liffey Valley SC,106051487,1,4376_7778022_100630,4376_152 -4289_75978,268,4376_17783,Liffey Valley SC,106141487,1,4376_7778022_100630,4376_152 -4289_75978,269,4376_17784,Liffey Valley SC,106231487,1,4376_7778022_100630,4376_152 -4289_75978,259,4376_17785,Liffey Valley SC,105764345,1,4376_7778022_100540,4376_153 -4289_75978,260,4376_17786,Liffey Valley SC,105311505,1,4376_7778022_100700,4376_152 -4289_75978,261,4376_17787,Liffey Valley SC,105321505,1,4376_7778022_100700,4376_152 -4289_75978,262,4376_17788,Liffey Valley SC,105431505,1,4376_7778022_100700,4376_152 -4289_75978,263,4376_17789,Liffey Valley SC,105541505,1,4376_7778022_100700,4376_152 -4289_75962,266,4376_1779,Dalkey,105822928,0,4376_7778022_100192,4376_21 -4289_75978,264,4376_17790,Liffey Valley SC,105651505,1,4376_7778022_100700,4376_152 -4289_75978,265,4376_17791,Liffey Valley SC,105811505,1,4376_7778022_100700,4376_152 -4289_75978,266,4376_17792,Liffey Valley SC,105821505,1,4376_7778022_100700,4376_152 -4289_75978,267,4376_17793,Liffey Valley SC,106051505,1,4376_7778022_100700,4376_152 -4289_75978,268,4376_17794,Liffey Valley SC,106141505,1,4376_7778022_100700,4376_152 -4289_75978,269,4376_17795,Liffey Valley SC,106231505,1,4376_7778022_100700,4376_152 -4289_75978,259,4376_17796,Liffey Valley SC,105764359,1,4376_7778022_100600,4376_153 -4289_75978,270,4376_17797,Liffey Valley SC,105277173,1,4376_7778022_100450,4376_152 -4289_75978,146,4376_17798,Liffey Valley SC,105247173,1,4376_7778022_100450,4376_152 -4289_75978,271,4376_17799,Liffey Valley SC,105237173,1,4376_7778022_100450,4376_152 -4289_75960,266,4376_178,Sutton Station,105821756,0,4376_7778022_103106,4376_1 -4289_75962,267,4376_1780,Dalkey,106052928,0,4376_7778022_100192,4376_21 -4289_75978,115,4376_17800,Liffey Valley SC,105217173,1,4376_7778022_100450,4376_152 -4289_75978,260,4376_17801,Liffey Valley SC,105311525,1,4376_7778022_100720,4376_152 -4289_75978,261,4376_17802,Liffey Valley SC,105321525,1,4376_7778022_100720,4376_152 -4289_75978,262,4376_17803,Liffey Valley SC,105431525,1,4376_7778022_100720,4376_152 -4289_75978,263,4376_17804,Liffey Valley SC,105541525,1,4376_7778022_100720,4376_152 -4289_75978,264,4376_17805,Liffey Valley SC,105651525,1,4376_7778022_100720,4376_152 -4289_75978,265,4376_17806,Liffey Valley SC,105811525,1,4376_7778022_100720,4376_152 -4289_75978,266,4376_17807,Liffey Valley SC,105821525,1,4376_7778022_100720,4376_152 -4289_75978,267,4376_17808,Liffey Valley SC,106051525,1,4376_7778022_100720,4376_152 -4289_75978,268,4376_17809,Liffey Valley SC,106141525,1,4376_7778022_100720,4376_152 -4289_75962,268,4376_1781,Dalkey,106142928,0,4376_7778022_100192,4376_21 -4289_75978,269,4376_17810,Liffey Valley SC,106231525,1,4376_7778022_100720,4376_152 -4289_75978,259,4376_17811,Liffey Valley SC,105764379,1,4376_7778022_100490,4376_153 -4289_75978,260,4376_17812,Liffey Valley SC,105311543,1,4376_7778022_100740,4376_152 -4289_75978,261,4376_17813,Liffey Valley SC,105321543,1,4376_7778022_100740,4376_152 -4289_75978,262,4376_17814,Liffey Valley SC,105431543,1,4376_7778022_100740,4376_152 -4289_75978,263,4376_17815,Liffey Valley SC,105541543,1,4376_7778022_100740,4376_152 -4289_75978,264,4376_17816,Liffey Valley SC,105651543,1,4376_7778022_100740,4376_152 -4289_75978,265,4376_17817,Liffey Valley SC,105811543,1,4376_7778022_100740,4376_152 -4289_75978,266,4376_17818,Liffey Valley SC,105821543,1,4376_7778022_100740,4376_152 -4289_75978,267,4376_17819,Liffey Valley SC,106051543,1,4376_7778022_100740,4376_152 -4289_75962,269,4376_1782,Dalkey,106232928,0,4376_7778022_100192,4376_21 -4289_75978,268,4376_17820,Liffey Valley SC,106141543,1,4376_7778022_100740,4376_152 -4289_75978,269,4376_17821,Liffey Valley SC,106231543,1,4376_7778022_100740,4376_152 -4289_75978,259,4376_17822,Liffey Valley SC,105764395,1,4376_7778022_100570,4376_153 -4289_75978,270,4376_17823,Liffey Valley SC,105277189,1,4376_7778022_100470,4376_154 -4289_75978,146,4376_17824,Liffey Valley SC,105247189,1,4376_7778022_100470,4376_154 -4289_75978,271,4376_17825,Liffey Valley SC,105237189,1,4376_7778022_100470,4376_154 -4289_75978,115,4376_17826,Liffey Valley SC,105217189,1,4376_7778022_100470,4376_154 -4289_75978,260,4376_17827,Liffey Valley SC,105311565,1,4376_7778022_100600,4376_152 -4289_75978,261,4376_17828,Liffey Valley SC,105321565,1,4376_7778022_100600,4376_152 -4289_75978,262,4376_17829,Liffey Valley SC,105431565,1,4376_7778022_100600,4376_152 -4289_75962,259,4376_1783,Dalkey,105765602,0,4376_7778022_104033,4376_21 -4289_75978,263,4376_17830,Liffey Valley SC,105541565,1,4376_7778022_100600,4376_152 -4289_75978,264,4376_17831,Liffey Valley SC,105651565,1,4376_7778022_100600,4376_152 -4289_75978,265,4376_17832,Liffey Valley SC,105811565,1,4376_7778022_100600,4376_152 -4289_75978,266,4376_17833,Liffey Valley SC,105821565,1,4376_7778022_100600,4376_152 -4289_75978,267,4376_17834,Liffey Valley SC,106051565,1,4376_7778022_100600,4376_152 -4289_75978,268,4376_17835,Liffey Valley SC,106141565,1,4376_7778022_100600,4376_152 -4289_75978,269,4376_17836,Liffey Valley SC,106231565,1,4376_7778022_100600,4376_152 -4289_75978,259,4376_17837,Liffey Valley SC,105764419,1,4376_7778022_100510,4376_153 -4289_75978,270,4376_17838,Liffey Valley SC,105277217,1,4376_7778022_100430,4376_152 -4289_75978,146,4376_17839,Liffey Valley SC,105247217,1,4376_7778022_100430,4376_152 -4289_75962,270,4376_1784,Dun Laoghaire,105278252,0,4376_7778022_100150,4376_23 -4289_75978,271,4376_17840,Liffey Valley SC,105237217,1,4376_7778022_100430,4376_152 -4289_75978,115,4376_17841,Liffey Valley SC,105217217,1,4376_7778022_100430,4376_152 -4289_75978,260,4376_17842,Liffey Valley SC,105311581,1,4376_7778022_100690,4376_152 -4289_75978,261,4376_17843,Liffey Valley SC,105321581,1,4376_7778022_100690,4376_152 -4289_75978,262,4376_17844,Liffey Valley SC,105431581,1,4376_7778022_100690,4376_152 -4289_75978,263,4376_17845,Liffey Valley SC,105541581,1,4376_7778022_100690,4376_152 -4289_75978,264,4376_17846,Liffey Valley SC,105651581,1,4376_7778022_100690,4376_152 -4289_75978,265,4376_17847,Liffey Valley SC,105811581,1,4376_7778022_100690,4376_152 -4289_75978,266,4376_17848,Liffey Valley SC,105821581,1,4376_7778022_100690,4376_152 -4289_75978,267,4376_17849,Liffey Valley SC,106051581,1,4376_7778022_100690,4376_152 -4289_75962,146,4376_1785,Dun Laoghaire,105248252,0,4376_7778022_100150,4376_23 -4289_75978,268,4376_17850,Liffey Valley SC,106141581,1,4376_7778022_100690,4376_152 -4289_75978,269,4376_17851,Liffey Valley SC,106231581,1,4376_7778022_100690,4376_152 -4289_75978,259,4376_17852,Liffey Valley SC,105764431,1,4376_7778022_100500,4376_153 -4289_75978,260,4376_17853,Liffey Valley SC,105311595,1,4376_7778022_100620,4376_152 -4289_75978,261,4376_17854,Liffey Valley SC,105321595,1,4376_7778022_100620,4376_152 -4289_75978,262,4376_17855,Liffey Valley SC,105431595,1,4376_7778022_100620,4376_152 -4289_75978,263,4376_17856,Liffey Valley SC,105541595,1,4376_7778022_100620,4376_152 -4289_75978,264,4376_17857,Liffey Valley SC,105651595,1,4376_7778022_100620,4376_152 -4289_75978,265,4376_17858,Liffey Valley SC,105811595,1,4376_7778022_100620,4376_152 -4289_75978,266,4376_17859,Liffey Valley SC,105821595,1,4376_7778022_100620,4376_152 -4289_75962,271,4376_1786,Dun Laoghaire,105238252,0,4376_7778022_100150,4376_23 -4289_75978,267,4376_17860,Liffey Valley SC,106051595,1,4376_7778022_100620,4376_152 -4289_75978,268,4376_17861,Liffey Valley SC,106141595,1,4376_7778022_100620,4376_152 -4289_75978,269,4376_17862,Liffey Valley SC,106231595,1,4376_7778022_100620,4376_152 -4289_75978,259,4376_17863,Liffey Valley SC,105764447,1,4376_7778022_100590,4376_153 -4289_75978,270,4376_17864,Liffey Valley SC,105277235,1,4376_7778022_100440,4376_154 -4289_75978,146,4376_17865,Liffey Valley SC,105247235,1,4376_7778022_100440,4376_154 -4289_75978,271,4376_17866,Liffey Valley SC,105237235,1,4376_7778022_100440,4376_154 -4289_75978,115,4376_17867,Liffey Valley SC,105217235,1,4376_7778022_100440,4376_154 -4289_75978,260,4376_17868,Liffey Valley SC,105311617,1,4376_7778022_100710,4376_152 -4289_75978,261,4376_17869,Liffey Valley SC,105321617,1,4376_7778022_100710,4376_152 -4289_75962,115,4376_1787,Dun Laoghaire,105218252,0,4376_7778022_100150,4376_23 -4289_75978,262,4376_17870,Liffey Valley SC,105431617,1,4376_7778022_100710,4376_152 -4289_75978,263,4376_17871,Liffey Valley SC,105541617,1,4376_7778022_100710,4376_152 -4289_75978,264,4376_17872,Liffey Valley SC,105651617,1,4376_7778022_100710,4376_152 -4289_75978,265,4376_17873,Liffey Valley SC,105811617,1,4376_7778022_100710,4376_152 -4289_75978,266,4376_17874,Liffey Valley SC,105821617,1,4376_7778022_100710,4376_152 -4289_75978,267,4376_17875,Liffey Valley SC,106051617,1,4376_7778022_100710,4376_152 -4289_75978,268,4376_17876,Liffey Valley SC,106141617,1,4376_7778022_100710,4376_152 -4289_75978,269,4376_17877,Liffey Valley SC,106231617,1,4376_7778022_100710,4376_152 -4289_75978,259,4376_17878,Liffey Valley SC,105764467,1,4376_7778022_100620,4376_153 -4289_75978,270,4376_17879,Liffey Valley SC,105277265,1,4376_7778022_100490,4376_152 -4289_75962,260,4376_1788,Dalkey,105313000,0,4376_7778022_104073,4376_21 -4289_75978,146,4376_17880,Liffey Valley SC,105247265,1,4376_7778022_100490,4376_152 -4289_75978,271,4376_17881,Liffey Valley SC,105237265,1,4376_7778022_100490,4376_152 -4289_75978,115,4376_17882,Liffey Valley SC,105217265,1,4376_7778022_100490,4376_152 -4289_75978,260,4376_17883,Liffey Valley SC,105311633,1,4376_7778022_100730,4376_152 -4289_75978,261,4376_17884,Liffey Valley SC,105321633,1,4376_7778022_100730,4376_152 -4289_75978,262,4376_17885,Liffey Valley SC,105431633,1,4376_7778022_100730,4376_152 -4289_75978,263,4376_17886,Liffey Valley SC,105541633,1,4376_7778022_100730,4376_152 -4289_75978,264,4376_17887,Liffey Valley SC,105651633,1,4376_7778022_100730,4376_152 -4289_75978,265,4376_17888,Liffey Valley SC,105811633,1,4376_7778022_100730,4376_152 -4289_75978,266,4376_17889,Liffey Valley SC,105821633,1,4376_7778022_100730,4376_152 -4289_75962,261,4376_1789,Dalkey,105323000,0,4376_7778022_104073,4376_21 -4289_75978,267,4376_17890,Liffey Valley SC,106051633,1,4376_7778022_100730,4376_152 -4289_75978,268,4376_17891,Liffey Valley SC,106141633,1,4376_7778022_100730,4376_152 -4289_75978,269,4376_17892,Liffey Valley SC,106231633,1,4376_7778022_100730,4376_152 -4289_75978,259,4376_17893,Liffey Valley SC,105764487,1,4376_7778022_100520,4376_153 -4289_75978,260,4376_17894,Liffey Valley SC,105311649,1,4376_7778022_100750,4376_152 -4289_75978,261,4376_17895,Liffey Valley SC,105321649,1,4376_7778022_100750,4376_152 -4289_75978,262,4376_17896,Liffey Valley SC,105431649,1,4376_7778022_100750,4376_152 -4289_75978,263,4376_17897,Liffey Valley SC,105541649,1,4376_7778022_100750,4376_152 -4289_75978,264,4376_17898,Liffey Valley SC,105651649,1,4376_7778022_100750,4376_152 -4289_75978,265,4376_17899,Liffey Valley SC,105811649,1,4376_7778022_100750,4376_152 -4289_75960,267,4376_179,Sutton Station,106051756,0,4376_7778022_103106,4376_1 -4289_75962,262,4376_1790,Dalkey,105433000,0,4376_7778022_104073,4376_21 -4289_75978,266,4376_17900,Liffey Valley SC,105821649,1,4376_7778022_100750,4376_152 -4289_75978,267,4376_17901,Liffey Valley SC,106051649,1,4376_7778022_100750,4376_152 -4289_75978,268,4376_17902,Liffey Valley SC,106141649,1,4376_7778022_100750,4376_152 -4289_75978,269,4376_17903,Liffey Valley SC,106231649,1,4376_7778022_100750,4376_152 -4289_75978,259,4376_17904,Liffey Valley SC,105764501,1,4376_7778022_100610,4376_153 -4289_75978,270,4376_17905,Liffey Valley SC,105277279,1,4376_7778022_100460,4376_154 -4289_75978,146,4376_17906,Liffey Valley SC,105247279,1,4376_7778022_100460,4376_154 -4289_75978,271,4376_17907,Liffey Valley SC,105237279,1,4376_7778022_100460,4376_154 -4289_75978,115,4376_17908,Liffey Valley SC,105217279,1,4376_7778022_100460,4376_154 -4289_75978,260,4376_17909,Liffey Valley SC,105311673,1,4376_7778022_100760,4376_152 -4289_75962,263,4376_1791,Dalkey,105543000,0,4376_7778022_104073,4376_21 -4289_75978,261,4376_17910,Liffey Valley SC,105321673,1,4376_7778022_100760,4376_152 -4289_75978,262,4376_17911,Liffey Valley SC,105431673,1,4376_7778022_100760,4376_152 -4289_75978,263,4376_17912,Liffey Valley SC,105541673,1,4376_7778022_100760,4376_152 -4289_75978,264,4376_17913,Liffey Valley SC,105651673,1,4376_7778022_100760,4376_152 -4289_75978,265,4376_17914,Liffey Valley SC,105811673,1,4376_7778022_100760,4376_152 -4289_75978,266,4376_17915,Liffey Valley SC,105821673,1,4376_7778022_100760,4376_152 -4289_75978,267,4376_17916,Liffey Valley SC,106051673,1,4376_7778022_100760,4376_152 -4289_75978,268,4376_17917,Liffey Valley SC,106141673,1,4376_7778022_100760,4376_152 -4289_75978,269,4376_17918,Liffey Valley SC,106231673,1,4376_7778022_100760,4376_152 -4289_75978,259,4376_17919,Liffey Valley SC,105764521,1,4376_7778022_100530,4376_153 -4289_75962,264,4376_1792,Dalkey,105653000,0,4376_7778022_104073,4376_21 -4289_75978,270,4376_17920,Liffey Valley SC,105277311,1,4376_7778022_100480,4376_152 -4289_75978,146,4376_17921,Liffey Valley SC,105247311,1,4376_7778022_100480,4376_152 -4289_75978,271,4376_17922,Liffey Valley SC,105237311,1,4376_7778022_100480,4376_152 -4289_75978,115,4376_17923,Liffey Valley SC,105217311,1,4376_7778022_100480,4376_152 -4289_75978,260,4376_17924,Liffey Valley SC,105311685,1,4376_7778022_100640,4376_152 -4289_75978,261,4376_17925,Liffey Valley SC,105321685,1,4376_7778022_100640,4376_152 -4289_75978,262,4376_17926,Liffey Valley SC,105431685,1,4376_7778022_100640,4376_152 -4289_75978,263,4376_17927,Liffey Valley SC,105541685,1,4376_7778022_100640,4376_152 -4289_75978,264,4376_17928,Liffey Valley SC,105651685,1,4376_7778022_100640,4376_152 -4289_75978,265,4376_17929,Liffey Valley SC,105811685,1,4376_7778022_100640,4376_152 -4289_75962,265,4376_1793,Dalkey,105813000,0,4376_7778022_104073,4376_21 -4289_75978,266,4376_17930,Liffey Valley SC,105821685,1,4376_7778022_100640,4376_152 -4289_75978,267,4376_17931,Liffey Valley SC,106051685,1,4376_7778022_100640,4376_152 -4289_75978,268,4376_17932,Liffey Valley SC,106141685,1,4376_7778022_100640,4376_152 -4289_75978,269,4376_17933,Liffey Valley SC,106231685,1,4376_7778022_100640,4376_152 -4289_75978,259,4376_17934,Liffey Valley SC,105764533,1,4376_7778022_100561,4376_153 -4289_75978,260,4376_17935,Liffey Valley SC,105311705,1,4376_7778022_100781,4376_152 -4289_75978,261,4376_17936,Liffey Valley SC,105321705,1,4376_7778022_100781,4376_152 -4289_75978,262,4376_17937,Liffey Valley SC,105431705,1,4376_7778022_100781,4376_152 -4289_75978,263,4376_17938,Liffey Valley SC,105541705,1,4376_7778022_100781,4376_152 -4289_75978,264,4376_17939,Liffey Valley SC,105651705,1,4376_7778022_100781,4376_152 -4289_75962,266,4376_1794,Dalkey,105823000,0,4376_7778022_104073,4376_21 -4289_75978,265,4376_17940,Liffey Valley SC,105811705,1,4376_7778022_100781,4376_152 -4289_75978,266,4376_17941,Liffey Valley SC,105821705,1,4376_7778022_100781,4376_152 -4289_75978,267,4376_17942,Liffey Valley SC,106051705,1,4376_7778022_100781,4376_152 -4289_75978,268,4376_17943,Liffey Valley SC,106141705,1,4376_7778022_100781,4376_152 -4289_75978,269,4376_17944,Liffey Valley SC,106231705,1,4376_7778022_100781,4376_152 -4289_75978,259,4376_17945,Liffey Valley SC,105764551,1,4376_7778022_100550,4376_152 -4289_75978,270,4376_17946,Liffey Valley SC,105277327,1,4376_7778022_100410,4376_153 -4289_75978,146,4376_17947,Liffey Valley SC,105247327,1,4376_7778022_100410,4376_153 -4289_75978,271,4376_17948,Liffey Valley SC,105237327,1,4376_7778022_100410,4376_153 -4289_75978,115,4376_17949,Liffey Valley SC,105217327,1,4376_7778022_100410,4376_153 -4289_75962,267,4376_1795,Dalkey,106053000,0,4376_7778022_104073,4376_21 -4289_75978,260,4376_17950,Liffey Valley SC,105311723,1,4376_7778022_100660,4376_152 -4289_75978,261,4376_17951,Liffey Valley SC,105321723,1,4376_7778022_100660,4376_152 -4289_75978,262,4376_17952,Liffey Valley SC,105431723,1,4376_7778022_100660,4376_152 -4289_75978,263,4376_17953,Liffey Valley SC,105541723,1,4376_7778022_100660,4376_152 -4289_75978,264,4376_17954,Liffey Valley SC,105651723,1,4376_7778022_100660,4376_152 -4289_75978,265,4376_17955,Liffey Valley SC,105811723,1,4376_7778022_100660,4376_152 -4289_75978,266,4376_17956,Liffey Valley SC,105821723,1,4376_7778022_100660,4376_152 -4289_75978,267,4376_17957,Liffey Valley SC,106051723,1,4376_7778022_100660,4376_152 -4289_75978,268,4376_17958,Liffey Valley SC,106141723,1,4376_7778022_100660,4376_152 -4289_75978,269,4376_17959,Liffey Valley SC,106231723,1,4376_7778022_100660,4376_152 -4289_75962,268,4376_1796,Dalkey,106143000,0,4376_7778022_104073,4376_21 -4289_75978,259,4376_17960,Liffey Valley SC,105764571,1,4376_7778022_100480,4376_152 -4289_75978,270,4376_17961,Liffey Valley SC,105277349,1,4376_7778022_100420,4376_152 -4289_75978,146,4376_17962,Liffey Valley SC,105247349,1,4376_7778022_100420,4376_152 -4289_75978,271,4376_17963,Liffey Valley SC,105237349,1,4376_7778022_100420,4376_152 -4289_75978,115,4376_17964,Liffey Valley SC,105217349,1,4376_7778022_100420,4376_152 -4289_75978,260,4376_17965,Liffey Valley SC,105311743,1,4376_7778022_100670,4376_152 -4289_75978,261,4376_17966,Liffey Valley SC,105321743,1,4376_7778022_100670,4376_152 -4289_75978,262,4376_17967,Liffey Valley SC,105431743,1,4376_7778022_100670,4376_152 -4289_75978,263,4376_17968,Liffey Valley SC,105541743,1,4376_7778022_100670,4376_152 -4289_75978,264,4376_17969,Liffey Valley SC,105651743,1,4376_7778022_100670,4376_152 -4289_75962,269,4376_1797,Dalkey,106233000,0,4376_7778022_104073,4376_21 -4289_75978,265,4376_17970,Liffey Valley SC,105811743,1,4376_7778022_100670,4376_152 -4289_75978,266,4376_17971,Liffey Valley SC,105821743,1,4376_7778022_100670,4376_152 -4289_75978,267,4376_17972,Liffey Valley SC,106051743,1,4376_7778022_100670,4376_152 -4289_75978,268,4376_17973,Liffey Valley SC,106141743,1,4376_7778022_100670,4376_152 -4289_75978,269,4376_17974,Liffey Valley SC,106231743,1,4376_7778022_100670,4376_152 -4289_75978,259,4376_17975,Liffey Valley SC,105764589,1,4376_7778022_100580,4376_152 -4289_75978,260,4376_17976,Liffey Valley SC,105311761,1,4376_7778022_100680,4376_152 -4289_75978,261,4376_17977,Liffey Valley SC,105321761,1,4376_7778022_100680,4376_152 -4289_75978,262,4376_17978,Liffey Valley SC,105431761,1,4376_7778022_100680,4376_152 -4289_75978,263,4376_17979,Liffey Valley SC,105541761,1,4376_7778022_100680,4376_152 -4289_75962,259,4376_1798,Dalkey,105765672,0,4376_7778022_104193,4376_21 -4289_75978,264,4376_17980,Liffey Valley SC,105651761,1,4376_7778022_100680,4376_152 -4289_75978,265,4376_17981,Liffey Valley SC,105811761,1,4376_7778022_100680,4376_152 -4289_75978,266,4376_17982,Liffey Valley SC,105821761,1,4376_7778022_100680,4376_152 -4289_75978,267,4376_17983,Liffey Valley SC,106051761,1,4376_7778022_100680,4376_152 -4289_75978,268,4376_17984,Liffey Valley SC,106141761,1,4376_7778022_100680,4376_152 -4289_75978,269,4376_17985,Liffey Valley SC,106231761,1,4376_7778022_100680,4376_152 -4289_75978,259,4376_17986,Liffey Valley SC,105764603,1,4376_7778022_100540,4376_152 -4289_75978,270,4376_17987,Liffey Valley SC,105277373,1,4376_7778022_100450,4376_153 -4289_75978,146,4376_17988,Liffey Valley SC,105247373,1,4376_7778022_100450,4376_153 -4289_75978,271,4376_17989,Liffey Valley SC,105237373,1,4376_7778022_100450,4376_153 -4289_75962,270,4376_1799,Dalkey,105278316,0,4376_7778022_100140,4376_21 -4289_75978,115,4376_17990,Liffey Valley SC,105217373,1,4376_7778022_100450,4376_153 -4289_75978,260,4376_17991,Liffey Valley SC,105311779,1,4376_7778022_100630,4376_152 -4289_75978,261,4376_17992,Liffey Valley SC,105321779,1,4376_7778022_100630,4376_152 -4289_75978,262,4376_17993,Liffey Valley SC,105431779,1,4376_7778022_100630,4376_152 -4289_75978,263,4376_17994,Liffey Valley SC,105541779,1,4376_7778022_100630,4376_152 -4289_75978,264,4376_17995,Liffey Valley SC,105651779,1,4376_7778022_100630,4376_152 -4289_75978,265,4376_17996,Liffey Valley SC,105811779,1,4376_7778022_100630,4376_152 -4289_75978,266,4376_17997,Liffey Valley SC,105821779,1,4376_7778022_100630,4376_152 -4289_75978,267,4376_17998,Liffey Valley SC,106051779,1,4376_7778022_100630,4376_152 -4289_75978,268,4376_17999,Liffey Valley SC,106141779,1,4376_7778022_100630,4376_152 -4289_75960,265,4376_18,Sutton Station,105811070,0,4376_7778022_103107,4376_1 -4289_75960,268,4376_180,Sutton Station,106141756,0,4376_7778022_103106,4376_1 -4289_75962,146,4376_1800,Dalkey,105248316,0,4376_7778022_100140,4376_21 -4289_75978,269,4376_18000,Liffey Valley SC,106231779,1,4376_7778022_100630,4376_152 -4289_75978,259,4376_18001,Liffey Valley SC,105764625,1,4376_7778022_100600,4376_152 -4289_75978,270,4376_18002,Liffey Valley SC,105277401,1,4376_7778022_100470,4376_152 -4289_75978,146,4376_18003,Liffey Valley SC,105247401,1,4376_7778022_100470,4376_152 -4289_75978,271,4376_18004,Liffey Valley SC,105237401,1,4376_7778022_100470,4376_152 -4289_75978,115,4376_18005,Liffey Valley SC,105217401,1,4376_7778022_100470,4376_152 -4289_75978,260,4376_18006,Liffey Valley SC,105311801,1,4376_7778022_100652,4376_152 -4289_75978,261,4376_18007,Liffey Valley SC,105321801,1,4376_7778022_100652,4376_152 -4289_75978,262,4376_18008,Liffey Valley SC,105431801,1,4376_7778022_100652,4376_152 -4289_75978,263,4376_18009,Liffey Valley SC,105541801,1,4376_7778022_100652,4376_152 -4289_75962,271,4376_1801,Dalkey,105238316,0,4376_7778022_100140,4376_21 -4289_75978,264,4376_18010,Liffey Valley SC,105651801,1,4376_7778022_100652,4376_152 -4289_75978,265,4376_18011,Liffey Valley SC,105811801,1,4376_7778022_100652,4376_152 -4289_75978,266,4376_18012,Liffey Valley SC,105821801,1,4376_7778022_100652,4376_152 -4289_75978,267,4376_18013,Liffey Valley SC,106051801,1,4376_7778022_100652,4376_152 -4289_75978,268,4376_18014,Liffey Valley SC,106141801,1,4376_7778022_100652,4376_152 -4289_75978,269,4376_18015,Liffey Valley SC,106231801,1,4376_7778022_100652,4376_152 -4289_75978,259,4376_18016,Liffey Valley SC,105764641,1,4376_7778022_100640,4376_152 -4289_75978,260,4376_18017,Liffey Valley SC,105311813,1,4376_7778022_100700,4376_152 -4289_75978,261,4376_18018,Liffey Valley SC,105321813,1,4376_7778022_100700,4376_152 -4289_75978,262,4376_18019,Liffey Valley SC,105431813,1,4376_7778022_100700,4376_152 -4289_75962,115,4376_1802,Dalkey,105218316,0,4376_7778022_100140,4376_21 -4289_75978,263,4376_18020,Liffey Valley SC,105541813,1,4376_7778022_100700,4376_152 -4289_75978,264,4376_18021,Liffey Valley SC,105651813,1,4376_7778022_100700,4376_152 -4289_75978,265,4376_18022,Liffey Valley SC,105811813,1,4376_7778022_100700,4376_152 -4289_75978,266,4376_18023,Liffey Valley SC,105821813,1,4376_7778022_100700,4376_152 -4289_75978,267,4376_18024,Liffey Valley SC,106051813,1,4376_7778022_100700,4376_152 -4289_75978,268,4376_18025,Liffey Valley SC,106141813,1,4376_7778022_100700,4376_152 -4289_75978,269,4376_18026,Liffey Valley SC,106231813,1,4376_7778022_100700,4376_152 -4289_75978,259,4376_18027,Liffey Valley SC,105764653,1,4376_7778022_100490,4376_153 -4289_75978,270,4376_18028,Liffey Valley SC,105277419,1,4376_7778022_100500,4376_154 -4289_75978,146,4376_18029,Liffey Valley SC,105247419,1,4376_7778022_100500,4376_154 -4289_75962,260,4376_1803,Brides Glen Luas,105311053,1,4376_7778022_104030,4376_26 -4289_75978,271,4376_18030,Liffey Valley SC,105237419,1,4376_7778022_100500,4376_154 -4289_75978,115,4376_18031,Liffey Valley SC,105217419,1,4376_7778022_100500,4376_154 -4289_75978,260,4376_18032,Liffey Valley SC,105311835,1,4376_7778022_100720,4376_152 -4289_75978,261,4376_18033,Liffey Valley SC,105321835,1,4376_7778022_100720,4376_152 -4289_75978,262,4376_18034,Liffey Valley SC,105431835,1,4376_7778022_100720,4376_152 -4289_75978,263,4376_18035,Liffey Valley SC,105541835,1,4376_7778022_100720,4376_152 -4289_75978,264,4376_18036,Liffey Valley SC,105651835,1,4376_7778022_100720,4376_152 -4289_75978,265,4376_18037,Liffey Valley SC,105811835,1,4376_7778022_100720,4376_152 -4289_75978,266,4376_18038,Liffey Valley SC,105821835,1,4376_7778022_100720,4376_152 -4289_75978,267,4376_18039,Liffey Valley SC,106051835,1,4376_7778022_100720,4376_152 -4289_75962,261,4376_1804,Brides Glen Luas,105321053,1,4376_7778022_104030,4376_26 -4289_75978,268,4376_18040,Liffey Valley SC,106141835,1,4376_7778022_100720,4376_152 -4289_75978,269,4376_18041,Liffey Valley SC,106231835,1,4376_7778022_100720,4376_152 -4289_75978,259,4376_18042,Liffey Valley SC,105764671,1,4376_7778022_100570,4376_153 -4289_75978,270,4376_18043,Liffey Valley SC,105277443,1,4376_7778022_100510,4376_152 -4289_75978,146,4376_18044,Liffey Valley SC,105247443,1,4376_7778022_100510,4376_152 -4289_75978,271,4376_18045,Liffey Valley SC,105237443,1,4376_7778022_100510,4376_152 -4289_75978,115,4376_18046,Liffey Valley SC,105217443,1,4376_7778022_100510,4376_152 -4289_75978,260,4376_18047,Liffey Valley SC,105311857,1,4376_7778022_100740,4376_152 -4289_75978,261,4376_18048,Liffey Valley SC,105321857,1,4376_7778022_100740,4376_152 -4289_75978,262,4376_18049,Liffey Valley SC,105431857,1,4376_7778022_100740,4376_152 -4289_75962,262,4376_1805,Brides Glen Luas,105431053,1,4376_7778022_104030,4376_26 -4289_75978,263,4376_18050,Liffey Valley SC,105541857,1,4376_7778022_100740,4376_152 -4289_75978,264,4376_18051,Liffey Valley SC,105651857,1,4376_7778022_100740,4376_152 -4289_75978,265,4376_18052,Liffey Valley SC,105811857,1,4376_7778022_100740,4376_152 -4289_75978,266,4376_18053,Liffey Valley SC,105821857,1,4376_7778022_100740,4376_152 -4289_75978,267,4376_18054,Liffey Valley SC,106051857,1,4376_7778022_100740,4376_152 -4289_75978,268,4376_18055,Liffey Valley SC,106141857,1,4376_7778022_100740,4376_152 -4289_75978,269,4376_18056,Liffey Valley SC,106231857,1,4376_7778022_100740,4376_152 -4289_75978,259,4376_18057,Liffey Valley SC,105764689,1,4376_7778022_100510,4376_153 -4289_75978,260,4376_18058,Liffey Valley SC,105311877,1,4376_7778022_100600,4376_152 -4289_75978,261,4376_18059,Liffey Valley SC,105321877,1,4376_7778022_100600,4376_152 -4289_75962,263,4376_1806,Brides Glen Luas,105541053,1,4376_7778022_104030,4376_26 -4289_75978,262,4376_18060,Liffey Valley SC,105431877,1,4376_7778022_100600,4376_152 -4289_75978,263,4376_18061,Liffey Valley SC,105541877,1,4376_7778022_100600,4376_152 -4289_75978,264,4376_18062,Liffey Valley SC,105651877,1,4376_7778022_100600,4376_152 -4289_75978,265,4376_18063,Liffey Valley SC,105811877,1,4376_7778022_100600,4376_152 -4289_75978,266,4376_18064,Liffey Valley SC,105821877,1,4376_7778022_100600,4376_152 -4289_75978,267,4376_18065,Liffey Valley SC,106051877,1,4376_7778022_100600,4376_152 -4289_75978,268,4376_18066,Liffey Valley SC,106141877,1,4376_7778022_100600,4376_152 -4289_75978,269,4376_18067,Liffey Valley SC,106231877,1,4376_7778022_100600,4376_152 -4289_75978,259,4376_18068,Liffey Valley SC,105764707,1,4376_7778022_100630,4376_153 -4289_75978,270,4376_18069,Liffey Valley SC,105277465,1,4376_7778022_100430,4376_154 -4289_75962,264,4376_1807,Brides Glen Luas,105651053,1,4376_7778022_104030,4376_26 -4289_75978,146,4376_18070,Liffey Valley SC,105247465,1,4376_7778022_100430,4376_154 -4289_75978,271,4376_18071,Liffey Valley SC,105237465,1,4376_7778022_100430,4376_154 -4289_75978,115,4376_18072,Liffey Valley SC,105217465,1,4376_7778022_100430,4376_154 -4289_75978,260,4376_18073,Liffey Valley SC,105311895,1,4376_7778022_100690,4376_152 -4289_75978,261,4376_18074,Liffey Valley SC,105321895,1,4376_7778022_100690,4376_152 -4289_75978,262,4376_18075,Liffey Valley SC,105431895,1,4376_7778022_100690,4376_152 -4289_75978,263,4376_18076,Liffey Valley SC,105541895,1,4376_7778022_100690,4376_152 -4289_75978,264,4376_18077,Liffey Valley SC,105651895,1,4376_7778022_100690,4376_152 -4289_75978,265,4376_18078,Liffey Valley SC,105811895,1,4376_7778022_100690,4376_152 -4289_75978,266,4376_18079,Liffey Valley SC,105821895,1,4376_7778022_100690,4376_152 -4289_75962,265,4376_1808,Brides Glen Luas,105811053,1,4376_7778022_104030,4376_26 -4289_75978,267,4376_18080,Liffey Valley SC,106051895,1,4376_7778022_100690,4376_152 -4289_75978,268,4376_18081,Liffey Valley SC,106141895,1,4376_7778022_100690,4376_152 -4289_75978,269,4376_18082,Liffey Valley SC,106231895,1,4376_7778022_100690,4376_152 -4289_75978,259,4376_18083,Liffey Valley SC,105764727,1,4376_7778022_100500,4376_153 -4289_75978,270,4376_18084,Liffey Valley SC,105277491,1,4376_7778022_100440,4376_152 -4289_75978,146,4376_18085,Liffey Valley SC,105247491,1,4376_7778022_100440,4376_152 -4289_75978,271,4376_18086,Liffey Valley SC,105237491,1,4376_7778022_100440,4376_152 -4289_75978,115,4376_18087,Liffey Valley SC,105217491,1,4376_7778022_100440,4376_152 -4289_75978,260,4376_18088,Liffey Valley SC,105311915,1,4376_7778022_100620,4376_152 -4289_75978,261,4376_18089,Liffey Valley SC,105321915,1,4376_7778022_100620,4376_152 -4289_75962,266,4376_1809,Brides Glen Luas,105821053,1,4376_7778022_104030,4376_26 -4289_75978,262,4376_18090,Liffey Valley SC,105431915,1,4376_7778022_100620,4376_152 -4289_75978,263,4376_18091,Liffey Valley SC,105541915,1,4376_7778022_100620,4376_152 -4289_75978,264,4376_18092,Liffey Valley SC,105651915,1,4376_7778022_100620,4376_152 -4289_75978,265,4376_18093,Liffey Valley SC,105811915,1,4376_7778022_100620,4376_152 -4289_75978,266,4376_18094,Liffey Valley SC,105821915,1,4376_7778022_100620,4376_152 -4289_75978,267,4376_18095,Liffey Valley SC,106051915,1,4376_7778022_100620,4376_152 -4289_75978,268,4376_18096,Liffey Valley SC,106141915,1,4376_7778022_100620,4376_152 -4289_75978,269,4376_18097,Liffey Valley SC,106231915,1,4376_7778022_100620,4376_152 -4289_75978,259,4376_18098,Liffey Valley SC,105764745,1,4376_7778022_100590,4376_153 -4289_75978,260,4376_18099,Liffey Valley SC,105311927,1,4376_7778022_100710,4376_152 -4289_75960,269,4376_181,Sutton Station,106231756,0,4376_7778022_103106,4376_1 -4289_75962,267,4376_1810,Brides Glen Luas,106051053,1,4376_7778022_104030,4376_26 -4289_75978,261,4376_18100,Liffey Valley SC,105321927,1,4376_7778022_100710,4376_152 -4289_75978,262,4376_18101,Liffey Valley SC,105431927,1,4376_7778022_100710,4376_152 -4289_75978,263,4376_18102,Liffey Valley SC,105541927,1,4376_7778022_100710,4376_152 -4289_75978,264,4376_18103,Liffey Valley SC,105651927,1,4376_7778022_100710,4376_152 -4289_75978,265,4376_18104,Liffey Valley SC,105811927,1,4376_7778022_100710,4376_152 -4289_75978,266,4376_18105,Liffey Valley SC,105821927,1,4376_7778022_100710,4376_152 -4289_75978,267,4376_18106,Liffey Valley SC,106051927,1,4376_7778022_100710,4376_152 -4289_75978,268,4376_18107,Liffey Valley SC,106141927,1,4376_7778022_100710,4376_152 -4289_75978,269,4376_18108,Liffey Valley SC,106231927,1,4376_7778022_100710,4376_152 -4289_75978,259,4376_18109,Liffey Valley SC,105764755,1,4376_7778022_100620,4376_153 -4289_75962,268,4376_1811,Brides Glen Luas,106141053,1,4376_7778022_104030,4376_26 -4289_75978,270,4376_18110,Liffey Valley SC,105277509,1,4376_7778022_100490,4376_154 -4289_75978,146,4376_18111,Liffey Valley SC,105247509,1,4376_7778022_100490,4376_154 -4289_75978,271,4376_18112,Liffey Valley SC,105237509,1,4376_7778022_100490,4376_154 -4289_75978,115,4376_18113,Liffey Valley SC,105217509,1,4376_7778022_100490,4376_154 -4289_75978,260,4376_18114,Liffey Valley SC,105311947,1,4376_7778022_100730,4376_152 -4289_75978,261,4376_18115,Liffey Valley SC,105321947,1,4376_7778022_100730,4376_152 -4289_75978,262,4376_18116,Liffey Valley SC,105431947,1,4376_7778022_100730,4376_152 -4289_75978,263,4376_18117,Liffey Valley SC,105541947,1,4376_7778022_100730,4376_152 -4289_75978,264,4376_18118,Liffey Valley SC,105651947,1,4376_7778022_100730,4376_152 -4289_75978,265,4376_18119,Liffey Valley SC,105811947,1,4376_7778022_100730,4376_152 -4289_75962,269,4376_1812,Brides Glen Luas,106231053,1,4376_7778022_104030,4376_26 -4289_75978,266,4376_18120,Liffey Valley SC,105821947,1,4376_7778022_100730,4376_152 -4289_75978,267,4376_18121,Liffey Valley SC,106051947,1,4376_7778022_100730,4376_152 -4289_75978,268,4376_18122,Liffey Valley SC,106141947,1,4376_7778022_100730,4376_152 -4289_75978,269,4376_18123,Liffey Valley SC,106231947,1,4376_7778022_100730,4376_152 -4289_75978,259,4376_18124,Liffey Valley SC,105764773,1,4376_7778022_100520,4376_153 -4289_75978,270,4376_18125,Liffey Valley SC,105277535,1,4376_7778022_100460,4376_152 -4289_75978,146,4376_18126,Liffey Valley SC,105247535,1,4376_7778022_100460,4376_152 -4289_75978,271,4376_18127,Liffey Valley SC,105237535,1,4376_7778022_100460,4376_152 -4289_75978,115,4376_18128,Liffey Valley SC,105217535,1,4376_7778022_100460,4376_152 -4289_75978,260,4376_18129,Liffey Valley SC,105311965,1,4376_7778022_100750,4376_152 -4289_75962,259,4376_1813,Brides Glen Luas,105764035,1,4376_7778022_104021,4376_26 -4289_75978,261,4376_18130,Liffey Valley SC,105321965,1,4376_7778022_100750,4376_152 -4289_75978,262,4376_18131,Liffey Valley SC,105431965,1,4376_7778022_100750,4376_152 -4289_75978,263,4376_18132,Liffey Valley SC,105541965,1,4376_7778022_100750,4376_152 -4289_75978,264,4376_18133,Liffey Valley SC,105651965,1,4376_7778022_100750,4376_152 -4289_75978,265,4376_18134,Liffey Valley SC,105811965,1,4376_7778022_100750,4376_152 -4289_75978,266,4376_18135,Liffey Valley SC,105821965,1,4376_7778022_100750,4376_152 -4289_75978,267,4376_18136,Liffey Valley SC,106051965,1,4376_7778022_100750,4376_152 -4289_75978,268,4376_18137,Liffey Valley SC,106141965,1,4376_7778022_100750,4376_152 -4289_75978,269,4376_18138,Liffey Valley SC,106231965,1,4376_7778022_100750,4376_152 -4289_75978,259,4376_18139,Liffey Valley SC,105764793,1,4376_7778022_100610,4376_153 -4289_75962,260,4376_1814,Brides Glen Luas,105311107,1,4376_7778022_104071,4376_26 -4289_75978,260,4376_18140,Liffey Valley SC,105311983,1,4376_7778022_100760,4376_152 -4289_75978,261,4376_18141,Liffey Valley SC,105321983,1,4376_7778022_100760,4376_152 -4289_75978,262,4376_18142,Liffey Valley SC,105431983,1,4376_7778022_100760,4376_152 -4289_75978,263,4376_18143,Liffey Valley SC,105541983,1,4376_7778022_100760,4376_152 -4289_75978,264,4376_18144,Liffey Valley SC,105651983,1,4376_7778022_100760,4376_152 -4289_75978,265,4376_18145,Liffey Valley SC,105811983,1,4376_7778022_100760,4376_152 -4289_75978,266,4376_18146,Liffey Valley SC,105821983,1,4376_7778022_100760,4376_152 -4289_75978,267,4376_18147,Liffey Valley SC,106051983,1,4376_7778022_100760,4376_152 -4289_75978,268,4376_18148,Liffey Valley SC,106141983,1,4376_7778022_100760,4376_152 -4289_75978,269,4376_18149,Liffey Valley SC,106231983,1,4376_7778022_100760,4376_152 -4289_75962,261,4376_1815,Brides Glen Luas,105321107,1,4376_7778022_104071,4376_26 -4289_75978,259,4376_18150,Liffey Valley SC,105764809,1,4376_7778022_100650,4376_153 -4289_75978,270,4376_18151,Liffey Valley SC,105277553,1,4376_7778022_100480,4376_154 -4289_75978,146,4376_18152,Liffey Valley SC,105247553,1,4376_7778022_100480,4376_154 -4289_75978,271,4376_18153,Liffey Valley SC,105237553,1,4376_7778022_100480,4376_154 -4289_75978,115,4376_18154,Liffey Valley SC,105217553,1,4376_7778022_100480,4376_154 -4289_75978,260,4376_18155,Liffey Valley SC,105312005,1,4376_7778022_100612,4376_152 -4289_75978,261,4376_18156,Liffey Valley SC,105322005,1,4376_7778022_100612,4376_152 -4289_75978,262,4376_18157,Liffey Valley SC,105432005,1,4376_7778022_100612,4376_152 -4289_75978,263,4376_18158,Liffey Valley SC,105542005,1,4376_7778022_100612,4376_152 -4289_75978,264,4376_18159,Liffey Valley SC,105652005,1,4376_7778022_100612,4376_152 -4289_75962,262,4376_1816,Brides Glen Luas,105431107,1,4376_7778022_104071,4376_26 -4289_75978,265,4376_18160,Liffey Valley SC,105812005,1,4376_7778022_100612,4376_152 -4289_75978,266,4376_18161,Liffey Valley SC,105822005,1,4376_7778022_100612,4376_152 -4289_75978,267,4376_18162,Liffey Valley SC,106052005,1,4376_7778022_100612,4376_152 -4289_75978,268,4376_18163,Liffey Valley SC,106142005,1,4376_7778022_100612,4376_152 -4289_75978,269,4376_18164,Liffey Valley SC,106232005,1,4376_7778022_100612,4376_152 -4289_75978,259,4376_18165,Liffey Valley SC,105764825,1,4376_7778022_100530,4376_153 -4289_75978,270,4376_18166,Liffey Valley SC,105277581,1,4376_7778022_100410,4376_152 -4289_75978,146,4376_18167,Liffey Valley SC,105247581,1,4376_7778022_100410,4376_152 -4289_75978,271,4376_18168,Liffey Valley SC,105237581,1,4376_7778022_100410,4376_152 -4289_75978,115,4376_18169,Liffey Valley SC,105217581,1,4376_7778022_100410,4376_152 -4289_75962,263,4376_1817,Brides Glen Luas,105541107,1,4376_7778022_104071,4376_26 -4289_75978,260,4376_18170,Liffey Valley SC,105312025,1,4376_7778022_100640,4376_152 -4289_75978,261,4376_18171,Liffey Valley SC,105322025,1,4376_7778022_100640,4376_152 -4289_75978,262,4376_18172,Liffey Valley SC,105432025,1,4376_7778022_100640,4376_152 -4289_75978,263,4376_18173,Liffey Valley SC,105542025,1,4376_7778022_100640,4376_152 -4289_75978,264,4376_18174,Liffey Valley SC,105652025,1,4376_7778022_100640,4376_152 -4289_75978,265,4376_18175,Liffey Valley SC,105812025,1,4376_7778022_100640,4376_152 -4289_75978,266,4376_18176,Liffey Valley SC,105822025,1,4376_7778022_100640,4376_152 -4289_75978,267,4376_18177,Liffey Valley SC,106052025,1,4376_7778022_100640,4376_152 -4289_75978,268,4376_18178,Liffey Valley SC,106142025,1,4376_7778022_100640,4376_152 -4289_75978,269,4376_18179,Liffey Valley SC,106232025,1,4376_7778022_100640,4376_152 -4289_75962,264,4376_1818,Brides Glen Luas,105651107,1,4376_7778022_104071,4376_26 -4289_75978,259,4376_18180,Liffey Valley SC,105764845,1,4376_7778022_100561,4376_153 -4289_75978,260,4376_18181,Liffey Valley SC,105312039,1,4376_7778022_100660,4376_152 -4289_75978,261,4376_18182,Liffey Valley SC,105322039,1,4376_7778022_100660,4376_152 -4289_75978,262,4376_18183,Liffey Valley SC,105432039,1,4376_7778022_100660,4376_152 -4289_75978,263,4376_18184,Liffey Valley SC,105542039,1,4376_7778022_100660,4376_152 -4289_75978,264,4376_18185,Liffey Valley SC,105652039,1,4376_7778022_100660,4376_152 -4289_75978,265,4376_18186,Liffey Valley SC,105812039,1,4376_7778022_100660,4376_152 -4289_75978,266,4376_18187,Liffey Valley SC,105822039,1,4376_7778022_100660,4376_152 -4289_75978,267,4376_18188,Liffey Valley SC,106052039,1,4376_7778022_100660,4376_152 -4289_75978,268,4376_18189,Liffey Valley SC,106142039,1,4376_7778022_100660,4376_152 -4289_75962,265,4376_1819,Brides Glen Luas,105811107,1,4376_7778022_104071,4376_26 -4289_75978,269,4376_18190,Liffey Valley SC,106232039,1,4376_7778022_100660,4376_152 -4289_75978,259,4376_18191,Liffey Valley SC,105764859,1,4376_7778022_100550,4376_153 -4289_75978,270,4376_18192,Liffey Valley SC,105277599,1,4376_7778022_100420,4376_154 -4289_75978,146,4376_18193,Liffey Valley SC,105247599,1,4376_7778022_100420,4376_154 -4289_75978,271,4376_18194,Liffey Valley SC,105237599,1,4376_7778022_100420,4376_154 -4289_75978,115,4376_18195,Liffey Valley SC,105217599,1,4376_7778022_100420,4376_154 -4289_75978,260,4376_18196,Liffey Valley SC,105312063,1,4376_7778022_100670,4376_152 -4289_75978,261,4376_18197,Liffey Valley SC,105322063,1,4376_7778022_100670,4376_152 -4289_75978,262,4376_18198,Liffey Valley SC,105432063,1,4376_7778022_100670,4376_152 -4289_75978,263,4376_18199,Liffey Valley SC,105542063,1,4376_7778022_100670,4376_152 -4289_75960,259,4376_182,Sutton Station,105764574,0,4376_7778022_103106,4376_2 -4289_75962,266,4376_1820,Brides Glen Luas,105821107,1,4376_7778022_104071,4376_26 -4289_75978,264,4376_18200,Liffey Valley SC,105652063,1,4376_7778022_100670,4376_152 -4289_75978,265,4376_18201,Liffey Valley SC,105812063,1,4376_7778022_100670,4376_152 -4289_75978,266,4376_18202,Liffey Valley SC,105822063,1,4376_7778022_100670,4376_152 -4289_75978,267,4376_18203,Liffey Valley SC,106052063,1,4376_7778022_100670,4376_152 -4289_75978,268,4376_18204,Liffey Valley SC,106142063,1,4376_7778022_100670,4376_152 -4289_75978,269,4376_18205,Liffey Valley SC,106232063,1,4376_7778022_100670,4376_152 -4289_75978,259,4376_18206,Liffey Valley SC,105764879,1,4376_7778022_100480,4376_153 -4289_75978,270,4376_18207,Liffey Valley SC,105277621,1,4376_7778022_100470,4376_152 -4289_75978,146,4376_18208,Liffey Valley SC,105247621,1,4376_7778022_100470,4376_152 -4289_75978,271,4376_18209,Liffey Valley SC,105237621,1,4376_7778022_100470,4376_152 -4289_75962,267,4376_1821,Brides Glen Luas,106051107,1,4376_7778022_104071,4376_26 -4289_75978,115,4376_18210,Liffey Valley SC,105217621,1,4376_7778022_100470,4376_152 -4289_75978,260,4376_18211,Liffey Valley SC,105312083,1,4376_7778022_100680,4376_152 -4289_75978,261,4376_18212,Liffey Valley SC,105322083,1,4376_7778022_100680,4376_152 -4289_75978,262,4376_18213,Liffey Valley SC,105432083,1,4376_7778022_100680,4376_152 -4289_75978,263,4376_18214,Liffey Valley SC,105542083,1,4376_7778022_100680,4376_152 -4289_75978,264,4376_18215,Liffey Valley SC,105652083,1,4376_7778022_100680,4376_152 -4289_75978,265,4376_18216,Liffey Valley SC,105812083,1,4376_7778022_100680,4376_152 -4289_75978,266,4376_18217,Liffey Valley SC,105822083,1,4376_7778022_100680,4376_152 -4289_75978,267,4376_18218,Liffey Valley SC,106052083,1,4376_7778022_100680,4376_152 -4289_75978,268,4376_18219,Liffey Valley SC,106142083,1,4376_7778022_100680,4376_152 -4289_75962,268,4376_1822,Brides Glen Luas,106141107,1,4376_7778022_104071,4376_26 -4289_75978,269,4376_18220,Liffey Valley SC,106232083,1,4376_7778022_100680,4376_152 -4289_75978,259,4376_18221,Liffey Valley SC,105764895,1,4376_7778022_100580,4376_153 -4289_75978,260,4376_18222,Liffey Valley SC,105312099,1,4376_7778022_100772,4376_152 -4289_75978,261,4376_18223,Liffey Valley SC,105322099,1,4376_7778022_100772,4376_152 -4289_75978,262,4376_18224,Liffey Valley SC,105432099,1,4376_7778022_100772,4376_152 -4289_75978,263,4376_18225,Liffey Valley SC,105542099,1,4376_7778022_100772,4376_152 -4289_75978,264,4376_18226,Liffey Valley SC,105652099,1,4376_7778022_100772,4376_152 -4289_75978,265,4376_18227,Liffey Valley SC,105812099,1,4376_7778022_100772,4376_152 -4289_75978,266,4376_18228,Liffey Valley SC,105822099,1,4376_7778022_100772,4376_152 -4289_75978,267,4376_18229,Liffey Valley SC,106052099,1,4376_7778022_100772,4376_152 -4289_75962,269,4376_1823,Brides Glen Luas,106231107,1,4376_7778022_104071,4376_26 -4289_75978,268,4376_18230,Liffey Valley SC,106142099,1,4376_7778022_100772,4376_152 -4289_75978,269,4376_18231,Liffey Valley SC,106232099,1,4376_7778022_100772,4376_152 -4289_75978,259,4376_18232,Liffey Valley SC,105764911,1,4376_7778022_100540,4376_153 -4289_75978,270,4376_18233,Liffey Valley SC,105277645,1,4376_7778022_100500,4376_154 -4289_75978,146,4376_18234,Liffey Valley SC,105247645,1,4376_7778022_100500,4376_154 -4289_75978,271,4376_18235,Liffey Valley SC,105237645,1,4376_7778022_100500,4376_154 -4289_75978,115,4376_18236,Liffey Valley SC,105217645,1,4376_7778022_100500,4376_154 -4289_75978,260,4376_18237,Liffey Valley SC,105312125,1,4376_7778022_100630,4376_152 -4289_75978,261,4376_18238,Liffey Valley SC,105322125,1,4376_7778022_100630,4376_152 -4289_75978,262,4376_18239,Liffey Valley SC,105432125,1,4376_7778022_100630,4376_152 -4289_75962,259,4376_1824,Brides Glen Luas,105764107,1,4376_7778022_104131,4376_26 -4289_75978,263,4376_18240,Liffey Valley SC,105542125,1,4376_7778022_100630,4376_152 -4289_75978,264,4376_18241,Liffey Valley SC,105652125,1,4376_7778022_100630,4376_152 -4289_75978,265,4376_18242,Liffey Valley SC,105812125,1,4376_7778022_100630,4376_152 -4289_75978,266,4376_18243,Liffey Valley SC,105822125,1,4376_7778022_100630,4376_152 -4289_75978,267,4376_18244,Liffey Valley SC,106052125,1,4376_7778022_100630,4376_152 -4289_75978,268,4376_18245,Liffey Valley SC,106142125,1,4376_7778022_100630,4376_152 -4289_75978,269,4376_18246,Liffey Valley SC,106232125,1,4376_7778022_100630,4376_152 -4289_75978,259,4376_18247,Liffey Valley SC,105764929,1,4376_7778022_100640,4376_153 -4289_75978,270,4376_18248,Liffey Valley SC,105277669,1,4376_7778022_100510,4376_152 -4289_75978,146,4376_18249,Liffey Valley SC,105247669,1,4376_7778022_100510,4376_152 -4289_75962,260,4376_1825,Brides Glen Luas,105311199,1,4376_7778022_104030,4376_25 -4289_75978,271,4376_18250,Liffey Valley SC,105237669,1,4376_7778022_100510,4376_152 -4289_75978,115,4376_18251,Liffey Valley SC,105217669,1,4376_7778022_100510,4376_152 -4289_75978,260,4376_18252,Liffey Valley SC,105312147,1,4376_7778022_100652,4376_152 -4289_75978,261,4376_18253,Liffey Valley SC,105322147,1,4376_7778022_100652,4376_152 -4289_75978,262,4376_18254,Liffey Valley SC,105432147,1,4376_7778022_100652,4376_152 -4289_75978,263,4376_18255,Liffey Valley SC,105542147,1,4376_7778022_100652,4376_152 -4289_75978,264,4376_18256,Liffey Valley SC,105652147,1,4376_7778022_100652,4376_152 -4289_75978,265,4376_18257,Liffey Valley SC,105812147,1,4376_7778022_100652,4376_152 -4289_75978,266,4376_18258,Liffey Valley SC,105822147,1,4376_7778022_100652,4376_152 -4289_75978,267,4376_18259,Liffey Valley SC,106052147,1,4376_7778022_100652,4376_152 -4289_75962,261,4376_1826,Brides Glen Luas,105321199,1,4376_7778022_104030,4376_25 -4289_75978,268,4376_18260,Liffey Valley SC,106142147,1,4376_7778022_100652,4376_152 -4289_75978,269,4376_18261,Liffey Valley SC,106232147,1,4376_7778022_100652,4376_152 -4289_75978,259,4376_18262,Liffey Valley SC,105764949,1,4376_7778022_100490,4376_153 -4289_75978,260,4376_18263,Liffey Valley SC,105312177,1,4376_7778022_100700,4376_152 -4289_75978,261,4376_18264,Liffey Valley SC,105322177,1,4376_7778022_100700,4376_152 -4289_75978,262,4376_18265,Liffey Valley SC,105432177,1,4376_7778022_100700,4376_152 -4289_75978,263,4376_18266,Liffey Valley SC,105542177,1,4376_7778022_100700,4376_152 -4289_75978,264,4376_18267,Liffey Valley SC,105652177,1,4376_7778022_100700,4376_152 -4289_75978,265,4376_18268,Liffey Valley SC,105812177,1,4376_7778022_100700,4376_152 -4289_75978,266,4376_18269,Liffey Valley SC,105822177,1,4376_7778022_100700,4376_152 -4289_75962,262,4376_1827,Brides Glen Luas,105431199,1,4376_7778022_104030,4376_25 -4289_75978,267,4376_18270,Liffey Valley SC,106052177,1,4376_7778022_100700,4376_152 -4289_75978,268,4376_18271,Liffey Valley SC,106142177,1,4376_7778022_100700,4376_152 -4289_75978,269,4376_18272,Liffey Valley SC,106232177,1,4376_7778022_100700,4376_152 -4289_75978,259,4376_18273,Liffey Valley SC,105764959,1,4376_7778022_100570,4376_153 -4289_75978,270,4376_18274,Liffey Valley SC,105277687,1,4376_7778022_100430,4376_154 -4289_75978,146,4376_18275,Liffey Valley SC,105247687,1,4376_7778022_100430,4376_154 -4289_75978,271,4376_18276,Liffey Valley SC,105237687,1,4376_7778022_100430,4376_154 -4289_75978,115,4376_18277,Liffey Valley SC,105217687,1,4376_7778022_100430,4376_154 -4289_75978,260,4376_18278,Liffey Valley SC,105312205,1,4376_7778022_100720,4376_152 -4289_75978,261,4376_18279,Liffey Valley SC,105322205,1,4376_7778022_100720,4376_152 -4289_75962,263,4376_1828,Brides Glen Luas,105541199,1,4376_7778022_104030,4376_25 -4289_75978,262,4376_18280,Liffey Valley SC,105432205,1,4376_7778022_100720,4376_152 -4289_75978,263,4376_18281,Liffey Valley SC,105542205,1,4376_7778022_100720,4376_152 -4289_75978,264,4376_18282,Liffey Valley SC,105652205,1,4376_7778022_100720,4376_152 -4289_75978,265,4376_18283,Liffey Valley SC,105812205,1,4376_7778022_100720,4376_152 -4289_75978,266,4376_18284,Liffey Valley SC,105822205,1,4376_7778022_100720,4376_152 -4289_75978,267,4376_18285,Liffey Valley SC,106052205,1,4376_7778022_100720,4376_152 -4289_75978,268,4376_18286,Liffey Valley SC,106142205,1,4376_7778022_100720,4376_152 -4289_75978,269,4376_18287,Liffey Valley SC,106232205,1,4376_7778022_100720,4376_152 -4289_75978,259,4376_18288,Liffey Valley SC,105764981,1,4376_7778022_100510,4376_153 -4289_75978,270,4376_18289,Liffey Valley SC,105277711,1,4376_7778022_100440,4376_152 -4289_75962,264,4376_1829,Brides Glen Luas,105651199,1,4376_7778022_104030,4376_25 -4289_75978,146,4376_18290,Liffey Valley SC,105247711,1,4376_7778022_100440,4376_152 -4289_75978,271,4376_18291,Liffey Valley SC,105237711,1,4376_7778022_100440,4376_152 -4289_75978,115,4376_18292,Liffey Valley SC,105217711,1,4376_7778022_100440,4376_152 -4289_75978,260,4376_18293,Liffey Valley SC,105312237,1,4376_7778022_100740,4376_152 -4289_75978,261,4376_18294,Liffey Valley SC,105322237,1,4376_7778022_100740,4376_152 -4289_75978,262,4376_18295,Liffey Valley SC,105432237,1,4376_7778022_100740,4376_152 -4289_75978,263,4376_18296,Liffey Valley SC,105542237,1,4376_7778022_100740,4376_152 -4289_75978,264,4376_18297,Liffey Valley SC,105652237,1,4376_7778022_100740,4376_152 -4289_75978,265,4376_18298,Liffey Valley SC,105812237,1,4376_7778022_100740,4376_152 -4289_75978,266,4376_18299,Liffey Valley SC,105822237,1,4376_7778022_100740,4376_152 -4289_75960,270,4376_183,Sutton Station,105277346,0,4376_7778022_103108,4376_1 -4289_75962,265,4376_1830,Brides Glen Luas,105811199,1,4376_7778022_104030,4376_25 -4289_75978,267,4376_18300,Liffey Valley SC,106052237,1,4376_7778022_100740,4376_152 -4289_75978,268,4376_18301,Liffey Valley SC,106142237,1,4376_7778022_100740,4376_152 -4289_75978,269,4376_18302,Liffey Valley SC,106232237,1,4376_7778022_100740,4376_152 -4289_75978,259,4376_18303,Liffey Valley SC,105764997,1,4376_7778022_100630,4376_153 -4289_75978,260,4376_18304,Liffey Valley SC,105312265,1,4376_7778022_100600,4376_152 -4289_75978,261,4376_18305,Liffey Valley SC,105322265,1,4376_7778022_100600,4376_152 -4289_75978,262,4376_18306,Liffey Valley SC,105432265,1,4376_7778022_100600,4376_152 -4289_75978,263,4376_18307,Liffey Valley SC,105542265,1,4376_7778022_100600,4376_152 -4289_75978,264,4376_18308,Liffey Valley SC,105652265,1,4376_7778022_100600,4376_152 -4289_75978,265,4376_18309,Liffey Valley SC,105812265,1,4376_7778022_100600,4376_152 -4289_75962,266,4376_1831,Brides Glen Luas,105821199,1,4376_7778022_104030,4376_25 -4289_75978,266,4376_18310,Liffey Valley SC,105822265,1,4376_7778022_100600,4376_152 -4289_75978,267,4376_18311,Liffey Valley SC,106052265,1,4376_7778022_100600,4376_152 -4289_75978,268,4376_18312,Liffey Valley SC,106142265,1,4376_7778022_100600,4376_152 -4289_75978,269,4376_18313,Liffey Valley SC,106232265,1,4376_7778022_100600,4376_152 -4289_75978,259,4376_18314,Liffey Valley SC,105765013,1,4376_7778022_100500,4376_153 -4289_75978,270,4376_18315,Liffey Valley SC,105277735,1,4376_7778022_100490,4376_154 -4289_75978,146,4376_18316,Liffey Valley SC,105247735,1,4376_7778022_100490,4376_154 -4289_75978,271,4376_18317,Liffey Valley SC,105237735,1,4376_7778022_100490,4376_154 -4289_75978,115,4376_18318,Liffey Valley SC,105217735,1,4376_7778022_100490,4376_154 -4289_75978,260,4376_18319,Liffey Valley SC,105312283,1,4376_7778022_100690,4376_152 -4289_75962,267,4376_1832,Brides Glen Luas,106051199,1,4376_7778022_104030,4376_25 -4289_75978,261,4376_18320,Liffey Valley SC,105322283,1,4376_7778022_100690,4376_152 -4289_75978,262,4376_18321,Liffey Valley SC,105432283,1,4376_7778022_100690,4376_152 -4289_75978,263,4376_18322,Liffey Valley SC,105542283,1,4376_7778022_100690,4376_152 -4289_75978,264,4376_18323,Liffey Valley SC,105652283,1,4376_7778022_100690,4376_152 -4289_75978,265,4376_18324,Liffey Valley SC,105812283,1,4376_7778022_100690,4376_152 -4289_75978,266,4376_18325,Liffey Valley SC,105822283,1,4376_7778022_100690,4376_152 -4289_75978,267,4376_18326,Liffey Valley SC,106052283,1,4376_7778022_100690,4376_152 -4289_75978,268,4376_18327,Liffey Valley SC,106142283,1,4376_7778022_100690,4376_152 -4289_75978,269,4376_18328,Liffey Valley SC,106232283,1,4376_7778022_100690,4376_152 -4289_75978,259,4376_18329,Liffey Valley SC,105765033,1,4376_7778022_100590,4376_153 -4289_75962,268,4376_1833,Brides Glen Luas,106141199,1,4376_7778022_104030,4376_25 -4289_75978,270,4376_18330,Liffey Valley SC,105277763,1,4376_7778022_100460,4376_152 -4289_75978,146,4376_18331,Liffey Valley SC,105247763,1,4376_7778022_100460,4376_152 -4289_75978,271,4376_18332,Liffey Valley SC,105237763,1,4376_7778022_100460,4376_152 -4289_75978,115,4376_18333,Liffey Valley SC,105217763,1,4376_7778022_100460,4376_152 -4289_75978,260,4376_18334,Liffey Valley SC,105312299,1,4376_7778022_100620,4376_152 -4289_75978,261,4376_18335,Liffey Valley SC,105322299,1,4376_7778022_100620,4376_152 -4289_75978,262,4376_18336,Liffey Valley SC,105432299,1,4376_7778022_100620,4376_152 -4289_75978,263,4376_18337,Liffey Valley SC,105542299,1,4376_7778022_100620,4376_152 -4289_75978,264,4376_18338,Liffey Valley SC,105652299,1,4376_7778022_100620,4376_152 -4289_75978,265,4376_18339,Liffey Valley SC,105812299,1,4376_7778022_100620,4376_152 -4289_75962,269,4376_1834,Brides Glen Luas,106231199,1,4376_7778022_104030,4376_25 -4289_75978,266,4376_18340,Liffey Valley SC,105822299,1,4376_7778022_100620,4376_152 -4289_75978,267,4376_18341,Liffey Valley SC,106052299,1,4376_7778022_100620,4376_152 -4289_75978,268,4376_18342,Liffey Valley SC,106142299,1,4376_7778022_100620,4376_152 -4289_75978,269,4376_18343,Liffey Valley SC,106232299,1,4376_7778022_100620,4376_152 -4289_75978,259,4376_18344,Liffey Valley SC,105765047,1,4376_7778022_100620,4376_153 -4289_75978,260,4376_18345,Liffey Valley SC,105312317,1,4376_7778022_100790,4376_152 -4289_75978,261,4376_18346,Liffey Valley SC,105322317,1,4376_7778022_100790,4376_152 -4289_75978,262,4376_18347,Liffey Valley SC,105432317,1,4376_7778022_100790,4376_152 -4289_75978,263,4376_18348,Liffey Valley SC,105542317,1,4376_7778022_100790,4376_152 -4289_75978,264,4376_18349,Liffey Valley SC,105652317,1,4376_7778022_100790,4376_152 -4289_75962,259,4376_1835,Brides Glen Luas,105764139,1,4376_7778022_104061,4376_25 -4289_75978,265,4376_18350,Liffey Valley SC,105812317,1,4376_7778022_100790,4376_152 -4289_75978,266,4376_18351,Liffey Valley SC,105822317,1,4376_7778022_100790,4376_152 -4289_75978,267,4376_18352,Liffey Valley SC,106052317,1,4376_7778022_100790,4376_152 -4289_75978,268,4376_18353,Liffey Valley SC,106142317,1,4376_7778022_100790,4376_152 -4289_75978,269,4376_18354,Liffey Valley SC,106232317,1,4376_7778022_100790,4376_152 -4289_75978,259,4376_18355,Liffey Valley SC,105765061,1,4376_7778022_100520,4376_153 -4289_75978,270,4376_18356,Liffey Valley SC,105277779,1,4376_7778022_100480,4376_154 -4289_75978,146,4376_18357,Liffey Valley SC,105247779,1,4376_7778022_100480,4376_154 -4289_75978,271,4376_18358,Liffey Valley SC,105237779,1,4376_7778022_100480,4376_154 -4289_75978,115,4376_18359,Liffey Valley SC,105217779,1,4376_7778022_100480,4376_154 -4289_75962,260,4376_1836,Brides Glen Luas,105311339,1,4376_7778022_104071,4376_25 -4289_75978,260,4376_18360,Liffey Valley SC,105312341,1,4376_7778022_100710,4376_152 -4289_75978,261,4376_18361,Liffey Valley SC,105322341,1,4376_7778022_100710,4376_152 -4289_75978,262,4376_18362,Liffey Valley SC,105432341,1,4376_7778022_100710,4376_152 -4289_75978,263,4376_18363,Liffey Valley SC,105542341,1,4376_7778022_100710,4376_152 -4289_75978,264,4376_18364,Liffey Valley SC,105652341,1,4376_7778022_100710,4376_152 -4289_75978,265,4376_18365,Liffey Valley SC,105812341,1,4376_7778022_100710,4376_152 -4289_75978,266,4376_18366,Liffey Valley SC,105822341,1,4376_7778022_100710,4376_152 -4289_75978,267,4376_18367,Liffey Valley SC,106052341,1,4376_7778022_100710,4376_152 -4289_75978,268,4376_18368,Liffey Valley SC,106142341,1,4376_7778022_100710,4376_152 -4289_75978,269,4376_18369,Liffey Valley SC,106232341,1,4376_7778022_100710,4376_152 -4289_75962,261,4376_1837,Brides Glen Luas,105321339,1,4376_7778022_104071,4376_25 -4289_75978,259,4376_18370,Liffey Valley SC,105765081,1,4376_7778022_100610,4376_153 -4289_75978,270,4376_18371,Liffey Valley SC,105277803,1,4376_7778022_100410,4376_152 -4289_75978,146,4376_18372,Liffey Valley SC,105247803,1,4376_7778022_100410,4376_152 -4289_75978,271,4376_18373,Liffey Valley SC,105237803,1,4376_7778022_100410,4376_152 -4289_75978,115,4376_18374,Liffey Valley SC,105217803,1,4376_7778022_100410,4376_152 -4289_75978,260,4376_18375,Liffey Valley SC,105312355,1,4376_7778022_100730,4376_152 -4289_75978,261,4376_18376,Liffey Valley SC,105322355,1,4376_7778022_100730,4376_152 -4289_75978,262,4376_18377,Liffey Valley SC,105432355,1,4376_7778022_100730,4376_152 -4289_75978,263,4376_18378,Liffey Valley SC,105542355,1,4376_7778022_100730,4376_152 -4289_75978,264,4376_18379,Liffey Valley SC,105652355,1,4376_7778022_100730,4376_152 -4289_75962,262,4376_1838,Brides Glen Luas,105431339,1,4376_7778022_104071,4376_25 -4289_75978,265,4376_18380,Liffey Valley SC,105812355,1,4376_7778022_100730,4376_152 -4289_75978,266,4376_18381,Liffey Valley SC,105822355,1,4376_7778022_100730,4376_152 -4289_75978,267,4376_18382,Liffey Valley SC,106052355,1,4376_7778022_100730,4376_152 -4289_75978,268,4376_18383,Liffey Valley SC,106142355,1,4376_7778022_100730,4376_152 -4289_75978,269,4376_18384,Liffey Valley SC,106232355,1,4376_7778022_100730,4376_152 -4289_75978,259,4376_18385,Liffey Valley SC,105765101,1,4376_7778022_100650,4376_153 -4289_75978,260,4376_18386,Liffey Valley SC,105312379,1,4376_7778022_100750,4376_152 -4289_75978,261,4376_18387,Liffey Valley SC,105322379,1,4376_7778022_100750,4376_152 -4289_75978,262,4376_18388,Liffey Valley SC,105432379,1,4376_7778022_100750,4376_152 -4289_75978,263,4376_18389,Liffey Valley SC,105542379,1,4376_7778022_100750,4376_152 -4289_75962,263,4376_1839,Brides Glen Luas,105541339,1,4376_7778022_104071,4376_25 -4289_75978,264,4376_18390,Liffey Valley SC,105652379,1,4376_7778022_100750,4376_152 -4289_75978,265,4376_18391,Liffey Valley SC,105812379,1,4376_7778022_100750,4376_152 -4289_75978,266,4376_18392,Liffey Valley SC,105822379,1,4376_7778022_100750,4376_152 -4289_75978,267,4376_18393,Liffey Valley SC,106052379,1,4376_7778022_100750,4376_152 -4289_75978,268,4376_18394,Liffey Valley SC,106142379,1,4376_7778022_100750,4376_152 -4289_75978,269,4376_18395,Liffey Valley SC,106232379,1,4376_7778022_100750,4376_152 -4289_75978,259,4376_18396,Liffey Valley SC,105765113,1,4376_7778022_100530,4376_153 -4289_75978,270,4376_18397,Liffey Valley SC,105277823,1,4376_7778022_100420,4376_154 -4289_75978,146,4376_18398,Liffey Valley SC,105247823,1,4376_7778022_100420,4376_154 -4289_75978,271,4376_18399,Liffey Valley SC,105237823,1,4376_7778022_100420,4376_154 -4289_75960,146,4376_184,Sutton Station,105247346,0,4376_7778022_103108,4376_1 -4289_75962,264,4376_1840,Brides Glen Luas,105651339,1,4376_7778022_104071,4376_25 -4289_75978,115,4376_18400,Liffey Valley SC,105217823,1,4376_7778022_100420,4376_154 -4289_75978,260,4376_18401,Liffey Valley SC,105312401,1,4376_7778022_100760,4376_152 -4289_75978,261,4376_18402,Liffey Valley SC,105322401,1,4376_7778022_100760,4376_152 -4289_75978,262,4376_18403,Liffey Valley SC,105432401,1,4376_7778022_100760,4376_152 -4289_75978,263,4376_18404,Liffey Valley SC,105542401,1,4376_7778022_100760,4376_152 -4289_75978,264,4376_18405,Liffey Valley SC,105652401,1,4376_7778022_100760,4376_152 -4289_75978,265,4376_18406,Liffey Valley SC,105812401,1,4376_7778022_100760,4376_152 -4289_75978,266,4376_18407,Liffey Valley SC,105822401,1,4376_7778022_100760,4376_152 -4289_75978,267,4376_18408,Liffey Valley SC,106052401,1,4376_7778022_100760,4376_152 -4289_75978,268,4376_18409,Liffey Valley SC,106142401,1,4376_7778022_100760,4376_152 -4289_75962,265,4376_1841,Brides Glen Luas,105811339,1,4376_7778022_104071,4376_25 -4289_75978,269,4376_18410,Liffey Valley SC,106232401,1,4376_7778022_100760,4376_152 -4289_75978,259,4376_18411,Liffey Valley SC,105765133,1,4376_7778022_100550,4376_153 -4289_75978,270,4376_18412,Liffey Valley SC,105277849,1,4376_7778022_100470,4376_152 -4289_75978,146,4376_18413,Liffey Valley SC,105247849,1,4376_7778022_100470,4376_152 -4289_75978,271,4376_18414,Liffey Valley SC,105237849,1,4376_7778022_100470,4376_152 -4289_75978,115,4376_18415,Liffey Valley SC,105217849,1,4376_7778022_100470,4376_152 -4289_75978,260,4376_18416,Liffey Valley SC,105312419,1,4376_7778022_100612,4376_152 -4289_75978,261,4376_18417,Liffey Valley SC,105322419,1,4376_7778022_100612,4376_152 -4289_75978,262,4376_18418,Liffey Valley SC,105432419,1,4376_7778022_100612,4376_152 -4289_75978,263,4376_18419,Liffey Valley SC,105542419,1,4376_7778022_100612,4376_152 -4289_75962,266,4376_1842,Brides Glen Luas,105821339,1,4376_7778022_104071,4376_25 -4289_75978,264,4376_18420,Liffey Valley SC,105652419,1,4376_7778022_100612,4376_152 -4289_75978,265,4376_18421,Liffey Valley SC,105812419,1,4376_7778022_100612,4376_152 -4289_75978,266,4376_18422,Liffey Valley SC,105822419,1,4376_7778022_100612,4376_152 -4289_75978,267,4376_18423,Liffey Valley SC,106052419,1,4376_7778022_100612,4376_152 -4289_75978,268,4376_18424,Liffey Valley SC,106142419,1,4376_7778022_100612,4376_152 -4289_75978,269,4376_18425,Liffey Valley SC,106232419,1,4376_7778022_100612,4376_152 -4289_75978,259,4376_18426,Liffey Valley SC,105765149,1,4376_7778022_100480,4376_153 -4289_75978,260,4376_18427,Liffey Valley SC,105312435,1,4376_7778022_100640,4376_152 -4289_75978,261,4376_18428,Liffey Valley SC,105322435,1,4376_7778022_100640,4376_152 -4289_75978,262,4376_18429,Liffey Valley SC,105432435,1,4376_7778022_100640,4376_152 -4289_75962,267,4376_1843,Brides Glen Luas,106051339,1,4376_7778022_104071,4376_25 -4289_75978,263,4376_18430,Liffey Valley SC,105542435,1,4376_7778022_100640,4376_152 -4289_75978,264,4376_18431,Liffey Valley SC,105652435,1,4376_7778022_100640,4376_152 -4289_75978,265,4376_18432,Liffey Valley SC,105812435,1,4376_7778022_100640,4376_152 -4289_75978,266,4376_18433,Liffey Valley SC,105822435,1,4376_7778022_100640,4376_152 -4289_75978,267,4376_18434,Liffey Valley SC,106052435,1,4376_7778022_100640,4376_152 -4289_75978,268,4376_18435,Liffey Valley SC,106142435,1,4376_7778022_100640,4376_152 -4289_75978,269,4376_18436,Liffey Valley SC,106232435,1,4376_7778022_100640,4376_152 -4289_75978,259,4376_18437,Liffey Valley SC,105765167,1,4376_7778022_100580,4376_153 -4289_75978,270,4376_18438,Liffey Valley SC,105277873,1,4376_7778022_100500,4376_154 -4289_75978,146,4376_18439,Liffey Valley SC,105247873,1,4376_7778022_100500,4376_154 -4289_75962,268,4376_1844,Brides Glen Luas,106141339,1,4376_7778022_104071,4376_25 -4289_75978,271,4376_18440,Liffey Valley SC,105237873,1,4376_7778022_100500,4376_154 -4289_75978,115,4376_18441,Liffey Valley SC,105217873,1,4376_7778022_100500,4376_154 -4289_75978,260,4376_18442,Liffey Valley SC,105312455,1,4376_7778022_100660,4376_152 -4289_75978,261,4376_18443,Liffey Valley SC,105322455,1,4376_7778022_100660,4376_152 -4289_75978,262,4376_18444,Liffey Valley SC,105432455,1,4376_7778022_100660,4376_152 -4289_75978,263,4376_18445,Liffey Valley SC,105542455,1,4376_7778022_100660,4376_152 -4289_75978,264,4376_18446,Liffey Valley SC,105652455,1,4376_7778022_100660,4376_152 -4289_75978,265,4376_18447,Liffey Valley SC,105812455,1,4376_7778022_100660,4376_152 -4289_75978,266,4376_18448,Liffey Valley SC,105822455,1,4376_7778022_100660,4376_152 -4289_75978,267,4376_18449,Liffey Valley SC,106052455,1,4376_7778022_100660,4376_152 -4289_75962,269,4376_1845,Brides Glen Luas,106231339,1,4376_7778022_104071,4376_25 -4289_75978,268,4376_18450,Liffey Valley SC,106142455,1,4376_7778022_100660,4376_152 -4289_75978,269,4376_18451,Liffey Valley SC,106232455,1,4376_7778022_100660,4376_152 -4289_75978,259,4376_18452,Liffey Valley SC,105765179,1,4376_7778022_100540,4376_153 -4289_75978,270,4376_18453,Liffey Valley SC,105277895,1,4376_7778022_100510,4376_152 -4289_75978,146,4376_18454,Liffey Valley SC,105247895,1,4376_7778022_100510,4376_152 -4289_75978,271,4376_18455,Liffey Valley SC,105237895,1,4376_7778022_100510,4376_152 -4289_75978,115,4376_18456,Liffey Valley SC,105217895,1,4376_7778022_100510,4376_152 -4289_75978,260,4376_18457,Liffey Valley SC,105312473,1,4376_7778022_100782,4376_152 -4289_75978,261,4376_18458,Liffey Valley SC,105322473,1,4376_7778022_100782,4376_152 -4289_75978,262,4376_18459,Liffey Valley SC,105432473,1,4376_7778022_100782,4376_152 -4289_75962,259,4376_1846,Brides Glen Luas,105764223,1,4376_7778022_104131,4376_25 -4289_75978,263,4376_18460,Liffey Valley SC,105542473,1,4376_7778022_100782,4376_152 -4289_75978,264,4376_18461,Liffey Valley SC,105652473,1,4376_7778022_100782,4376_152 -4289_75978,265,4376_18462,Liffey Valley SC,105812473,1,4376_7778022_100782,4376_152 -4289_75978,266,4376_18463,Liffey Valley SC,105822473,1,4376_7778022_100782,4376_152 -4289_75978,267,4376_18464,Liffey Valley SC,106052473,1,4376_7778022_100782,4376_152 -4289_75978,268,4376_18465,Liffey Valley SC,106142473,1,4376_7778022_100782,4376_152 -4289_75978,269,4376_18466,Liffey Valley SC,106232473,1,4376_7778022_100782,4376_152 -4289_75978,259,4376_18467,Liffey Valley SC,105765201,1,4376_7778022_100640,4376_153 -4289_75978,260,4376_18468,Liffey Valley SC,105312491,1,4376_7778022_100670,4376_152 -4289_75978,261,4376_18469,Liffey Valley SC,105322491,1,4376_7778022_100670,4376_152 -4289_75962,270,4376_1847,Brides Glen Luas,105277089,1,4376_7778022_100140,4376_26 -4289_75978,262,4376_18470,Liffey Valley SC,105432491,1,4376_7778022_100670,4376_152 -4289_75978,263,4376_18471,Liffey Valley SC,105542491,1,4376_7778022_100670,4376_152 -4289_75978,264,4376_18472,Liffey Valley SC,105652491,1,4376_7778022_100670,4376_152 -4289_75978,265,4376_18473,Liffey Valley SC,105812491,1,4376_7778022_100670,4376_152 -4289_75978,266,4376_18474,Liffey Valley SC,105822491,1,4376_7778022_100670,4376_152 -4289_75978,267,4376_18475,Liffey Valley SC,106052491,1,4376_7778022_100670,4376_152 -4289_75978,268,4376_18476,Liffey Valley SC,106142491,1,4376_7778022_100670,4376_152 -4289_75978,269,4376_18477,Liffey Valley SC,106232491,1,4376_7778022_100670,4376_152 -4289_75978,259,4376_18478,Liffey Valley SC,105765213,1,4376_7778022_100490,4376_153 -4289_75978,270,4376_18479,Liffey Valley SC,105277911,1,4376_7778022_100430,4376_154 -4289_75962,146,4376_1848,Brides Glen Luas,105247089,1,4376_7778022_100140,4376_26 -4289_75978,146,4376_18480,Liffey Valley SC,105247911,1,4376_7778022_100430,4376_154 -4289_75978,271,4376_18481,Liffey Valley SC,105237911,1,4376_7778022_100430,4376_154 -4289_75978,115,4376_18482,Liffey Valley SC,105217911,1,4376_7778022_100430,4376_154 -4289_75978,260,4376_18483,Liffey Valley SC,105312511,1,4376_7778022_100680,4376_152 -4289_75978,261,4376_18484,Liffey Valley SC,105322511,1,4376_7778022_100680,4376_152 -4289_75978,262,4376_18485,Liffey Valley SC,105432511,1,4376_7778022_100680,4376_152 -4289_75978,263,4376_18486,Liffey Valley SC,105542511,1,4376_7778022_100680,4376_152 -4289_75978,264,4376_18487,Liffey Valley SC,105652511,1,4376_7778022_100680,4376_152 -4289_75978,265,4376_18488,Liffey Valley SC,105812511,1,4376_7778022_100680,4376_152 -4289_75978,266,4376_18489,Liffey Valley SC,105822511,1,4376_7778022_100680,4376_152 -4289_75962,271,4376_1849,Brides Glen Luas,105237089,1,4376_7778022_100140,4376_26 -4289_75978,267,4376_18490,Liffey Valley SC,106052511,1,4376_7778022_100680,4376_152 -4289_75978,268,4376_18491,Liffey Valley SC,106142511,1,4376_7778022_100680,4376_152 -4289_75978,269,4376_18492,Liffey Valley SC,106232511,1,4376_7778022_100680,4376_152 -4289_75978,259,4376_18493,Liffey Valley SC,105765233,1,4376_7778022_100510,4376_153 -4289_75978,270,4376_18494,Liffey Valley SC,105277939,1,4376_7778022_100440,4376_152 -4289_75978,146,4376_18495,Liffey Valley SC,105247939,1,4376_7778022_100440,4376_152 -4289_75978,271,4376_18496,Liffey Valley SC,105237939,1,4376_7778022_100440,4376_152 -4289_75978,115,4376_18497,Liffey Valley SC,105217939,1,4376_7778022_100440,4376_152 -4289_75978,260,4376_18498,Liffey Valley SC,105312531,1,4376_7778022_100772,4376_152 -4289_75978,261,4376_18499,Liffey Valley SC,105322531,1,4376_7778022_100772,4376_152 -4289_75960,271,4376_185,Sutton Station,105237346,0,4376_7778022_103108,4376_1 -4289_75962,115,4376_1850,Brides Glen Luas,105217089,1,4376_7778022_100140,4376_26 -4289_75978,262,4376_18500,Liffey Valley SC,105432531,1,4376_7778022_100772,4376_152 -4289_75978,263,4376_18501,Liffey Valley SC,105542531,1,4376_7778022_100772,4376_152 -4289_75978,264,4376_18502,Liffey Valley SC,105652531,1,4376_7778022_100772,4376_152 -4289_75978,265,4376_18503,Liffey Valley SC,105812531,1,4376_7778022_100772,4376_152 -4289_75978,266,4376_18504,Liffey Valley SC,105822531,1,4376_7778022_100772,4376_152 -4289_75978,267,4376_18505,Liffey Valley SC,106052531,1,4376_7778022_100772,4376_152 -4289_75978,268,4376_18506,Liffey Valley SC,106142531,1,4376_7778022_100772,4376_152 -4289_75978,269,4376_18507,Liffey Valley SC,106232531,1,4376_7778022_100772,4376_152 -4289_75978,259,4376_18508,Liffey Valley SC,105765253,1,4376_7778022_100630,4376_153 -4289_75978,260,4376_18509,Liffey Valley SC,105312545,1,4376_7778022_100630,4376_152 -4289_75962,260,4376_1851,Brides Glen Luas,105311447,1,4376_7778022_104030,4376_25 -4289_75978,261,4376_18510,Liffey Valley SC,105322545,1,4376_7778022_100630,4376_152 -4289_75978,262,4376_18511,Liffey Valley SC,105432545,1,4376_7778022_100630,4376_152 -4289_75978,263,4376_18512,Liffey Valley SC,105542545,1,4376_7778022_100630,4376_152 -4289_75978,264,4376_18513,Liffey Valley SC,105652545,1,4376_7778022_100630,4376_152 -4289_75978,265,4376_18514,Liffey Valley SC,105812545,1,4376_7778022_100630,4376_152 -4289_75978,266,4376_18515,Liffey Valley SC,105822545,1,4376_7778022_100630,4376_152 -4289_75978,267,4376_18516,Liffey Valley SC,106052545,1,4376_7778022_100630,4376_152 -4289_75978,268,4376_18517,Liffey Valley SC,106142545,1,4376_7778022_100630,4376_152 -4289_75978,269,4376_18518,Liffey Valley SC,106232545,1,4376_7778022_100630,4376_152 -4289_75978,259,4376_18519,Liffey Valley SC,105765265,1,4376_7778022_100562,4376_153 -4289_75962,261,4376_1852,Brides Glen Luas,105321447,1,4376_7778022_104030,4376_25 -4289_75978,270,4376_18520,Liffey Valley SC,105277959,1,4376_7778022_100490,4376_154 -4289_75978,146,4376_18521,Liffey Valley SC,105247959,1,4376_7778022_100490,4376_154 -4289_75978,271,4376_18522,Liffey Valley SC,105237959,1,4376_7778022_100490,4376_154 -4289_75978,115,4376_18523,Liffey Valley SC,105217959,1,4376_7778022_100490,4376_154 -4289_75978,260,4376_18524,Liffey Valley SC,105312567,1,4376_7778022_100652,4376_152 -4289_75978,261,4376_18525,Liffey Valley SC,105322567,1,4376_7778022_100652,4376_152 -4289_75978,262,4376_18526,Liffey Valley SC,105432567,1,4376_7778022_100652,4376_152 -4289_75978,263,4376_18527,Liffey Valley SC,105542567,1,4376_7778022_100652,4376_152 -4289_75978,264,4376_18528,Liffey Valley SC,105652567,1,4376_7778022_100652,4376_152 -4289_75978,265,4376_18529,Liffey Valley SC,105812567,1,4376_7778022_100652,4376_152 -4289_75962,262,4376_1853,Brides Glen Luas,105431447,1,4376_7778022_104030,4376_25 -4289_75978,266,4376_18530,Liffey Valley SC,105822567,1,4376_7778022_100652,4376_152 -4289_75978,267,4376_18531,Liffey Valley SC,106052567,1,4376_7778022_100652,4376_152 -4289_75978,268,4376_18532,Liffey Valley SC,106142567,1,4376_7778022_100652,4376_152 -4289_75978,269,4376_18533,Liffey Valley SC,106232567,1,4376_7778022_100652,4376_152 -4289_75978,259,4376_18534,Liffey Valley SC,105765283,1,4376_7778022_100590,4376_153 -4289_75978,270,4376_18535,Liffey Valley SC,105277979,1,4376_7778022_100460,4376_152 -4289_75978,146,4376_18536,Liffey Valley SC,105247979,1,4376_7778022_100460,4376_152 -4289_75978,271,4376_18537,Liffey Valley SC,105237979,1,4376_7778022_100460,4376_152 -4289_75978,115,4376_18538,Liffey Valley SC,105217979,1,4376_7778022_100460,4376_152 -4289_75978,260,4376_18539,Liffey Valley SC,105312581,1,4376_7778022_100700,4376_152 -4289_75962,263,4376_1854,Brides Glen Luas,105541447,1,4376_7778022_104030,4376_25 -4289_75978,261,4376_18540,Liffey Valley SC,105322581,1,4376_7778022_100700,4376_152 -4289_75978,262,4376_18541,Liffey Valley SC,105432581,1,4376_7778022_100700,4376_152 -4289_75978,263,4376_18542,Liffey Valley SC,105542581,1,4376_7778022_100700,4376_152 -4289_75978,264,4376_18543,Liffey Valley SC,105652581,1,4376_7778022_100700,4376_152 -4289_75978,265,4376_18544,Liffey Valley SC,105812581,1,4376_7778022_100700,4376_152 -4289_75978,266,4376_18545,Liffey Valley SC,105822581,1,4376_7778022_100700,4376_152 -4289_75978,267,4376_18546,Liffey Valley SC,106052581,1,4376_7778022_100700,4376_152 -4289_75978,268,4376_18547,Liffey Valley SC,106142581,1,4376_7778022_100700,4376_152 -4289_75978,269,4376_18548,Liffey Valley SC,106232581,1,4376_7778022_100700,4376_152 -4289_75978,259,4376_18549,Liffey Valley SC,105765303,1,4376_7778022_100620,4376_152 -4289_75962,264,4376_1855,Brides Glen Luas,105651447,1,4376_7778022_104030,4376_25 -4289_75978,260,4376_18550,Liffey Valley SC,105312599,1,4376_7778022_100740,4376_152 -4289_75978,261,4376_18551,Liffey Valley SC,105322599,1,4376_7778022_100740,4376_152 -4289_75978,262,4376_18552,Liffey Valley SC,105432599,1,4376_7778022_100740,4376_152 -4289_75978,263,4376_18553,Liffey Valley SC,105542599,1,4376_7778022_100740,4376_152 -4289_75978,264,4376_18554,Liffey Valley SC,105652599,1,4376_7778022_100740,4376_152 -4289_75978,265,4376_18555,Liffey Valley SC,105812599,1,4376_7778022_100740,4376_152 -4289_75978,266,4376_18556,Liffey Valley SC,105822599,1,4376_7778022_100740,4376_152 -4289_75978,267,4376_18557,Liffey Valley SC,106052599,1,4376_7778022_100740,4376_152 -4289_75978,268,4376_18558,Liffey Valley SC,106142599,1,4376_7778022_100740,4376_152 -4289_75978,269,4376_18559,Liffey Valley SC,106232599,1,4376_7778022_100740,4376_152 -4289_75962,265,4376_1856,Brides Glen Luas,105811447,1,4376_7778022_104030,4376_25 -4289_75978,270,4376_18560,Liffey Valley SC,105278001,1,4376_7778022_100410,4376_152 -4289_75978,146,4376_18561,Liffey Valley SC,105248001,1,4376_7778022_100410,4376_152 -4289_75978,271,4376_18562,Liffey Valley SC,105238001,1,4376_7778022_100410,4376_152 -4289_75978,115,4376_18563,Liffey Valley SC,105218001,1,4376_7778022_100410,4376_152 -4289_75978,260,4376_18564,Liffey Valley SC,105312619,1,4376_7778022_100600,4376_152 -4289_75978,261,4376_18565,Liffey Valley SC,105322619,1,4376_7778022_100600,4376_152 -4289_75978,262,4376_18566,Liffey Valley SC,105432619,1,4376_7778022_100600,4376_152 -4289_75978,263,4376_18567,Liffey Valley SC,105542619,1,4376_7778022_100600,4376_152 -4289_75978,264,4376_18568,Liffey Valley SC,105652619,1,4376_7778022_100600,4376_152 -4289_75978,265,4376_18569,Liffey Valley SC,105812619,1,4376_7778022_100600,4376_152 -4289_75962,266,4376_1857,Brides Glen Luas,105821447,1,4376_7778022_104030,4376_25 -4289_75978,266,4376_18570,Liffey Valley SC,105822619,1,4376_7778022_100600,4376_152 -4289_75978,267,4376_18571,Liffey Valley SC,106052619,1,4376_7778022_100600,4376_152 -4289_75978,268,4376_18572,Liffey Valley SC,106142619,1,4376_7778022_100600,4376_152 -4289_75978,269,4376_18573,Liffey Valley SC,106232619,1,4376_7778022_100600,4376_152 -4289_75978,259,4376_18574,Liffey Valley SC,105765323,1,4376_7778022_100610,4376_153 -4289_75978,260,4376_18575,Liffey Valley SC,105312635,1,4376_7778022_100690,4376_152 -4289_75978,261,4376_18576,Liffey Valley SC,105322635,1,4376_7778022_100690,4376_152 -4289_75978,262,4376_18577,Liffey Valley SC,105432635,1,4376_7778022_100690,4376_152 -4289_75978,263,4376_18578,Liffey Valley SC,105542635,1,4376_7778022_100690,4376_152 -4289_75978,264,4376_18579,Liffey Valley SC,105652635,1,4376_7778022_100690,4376_152 -4289_75962,267,4376_1858,Brides Glen Luas,106051447,1,4376_7778022_104030,4376_25 -4289_75978,265,4376_18580,Liffey Valley SC,105812635,1,4376_7778022_100690,4376_152 -4289_75978,266,4376_18581,Liffey Valley SC,105822635,1,4376_7778022_100690,4376_152 -4289_75978,267,4376_18582,Liffey Valley SC,106052635,1,4376_7778022_100690,4376_152 -4289_75978,268,4376_18583,Liffey Valley SC,106142635,1,4376_7778022_100690,4376_152 -4289_75978,269,4376_18584,Liffey Valley SC,106232635,1,4376_7778022_100690,4376_152 -4289_75978,259,4376_18585,Liffey Valley SC,105765351,1,4376_7778022_100650,4376_152 -4289_75978,270,4376_18586,Liffey Valley SC,105278031,1,4376_7778022_100420,4376_153 -4289_75978,146,4376_18587,Liffey Valley SC,105248031,1,4376_7778022_100420,4376_153 -4289_75978,271,4376_18588,Liffey Valley SC,105238031,1,4376_7778022_100420,4376_153 -4289_75978,115,4376_18589,Liffey Valley SC,105218031,1,4376_7778022_100420,4376_153 -4289_75962,268,4376_1859,Brides Glen Luas,106141447,1,4376_7778022_104030,4376_25 -4289_75978,260,4376_18590,Liffey Valley SC,105312647,1,4376_7778022_100620,4376_152 -4289_75978,261,4376_18591,Liffey Valley SC,105322647,1,4376_7778022_100620,4376_152 -4289_75978,262,4376_18592,Liffey Valley SC,105432647,1,4376_7778022_100620,4376_152 -4289_75978,263,4376_18593,Liffey Valley SC,105542647,1,4376_7778022_100620,4376_152 -4289_75978,264,4376_18594,Liffey Valley SC,105652647,1,4376_7778022_100620,4376_152 -4289_75978,265,4376_18595,Liffey Valley SC,105812647,1,4376_7778022_100620,4376_152 -4289_75978,266,4376_18596,Liffey Valley SC,105822647,1,4376_7778022_100620,4376_152 -4289_75978,267,4376_18597,Liffey Valley SC,106052647,1,4376_7778022_100620,4376_152 -4289_75978,268,4376_18598,Liffey Valley SC,106142647,1,4376_7778022_100620,4376_152 -4289_75978,269,4376_18599,Liffey Valley SC,106232647,1,4376_7778022_100620,4376_152 -4289_75960,115,4376_186,Sutton Station,105217346,0,4376_7778022_103108,4376_1 -4289_75962,269,4376_1860,Brides Glen Luas,106231447,1,4376_7778022_104030,4376_25 -4289_75978,260,4376_18600,Liffey Valley SC,105312669,1,4376_7778022_100790,4376_152 -4289_75978,261,4376_18601,Liffey Valley SC,105322669,1,4376_7778022_100790,4376_152 -4289_75978,262,4376_18602,Liffey Valley SC,105432669,1,4376_7778022_100790,4376_152 -4289_75978,263,4376_18603,Liffey Valley SC,105542669,1,4376_7778022_100790,4376_152 -4289_75978,264,4376_18604,Liffey Valley SC,105652669,1,4376_7778022_100790,4376_152 -4289_75978,265,4376_18605,Liffey Valley SC,105812669,1,4376_7778022_100790,4376_152 -4289_75978,266,4376_18606,Liffey Valley SC,105822669,1,4376_7778022_100790,4376_152 -4289_75978,267,4376_18607,Liffey Valley SC,106052669,1,4376_7778022_100790,4376_152 -4289_75978,268,4376_18608,Liffey Valley SC,106142669,1,4376_7778022_100790,4376_152 -4289_75978,269,4376_18609,Liffey Valley SC,106232669,1,4376_7778022_100790,4376_152 -4289_75962,259,4376_1861,Brides Glen Luas,105764309,1,4376_7778022_104161,4376_25 -4289_75978,259,4376_18610,Liffey Valley SC,105765371,1,4376_7778022_100550,4376_153 -4289_75978,270,4376_18611,Liffey Valley SC,105278061,1,4376_7778022_100500,4376_152 -4289_75978,146,4376_18612,Liffey Valley SC,105248061,1,4376_7778022_100500,4376_152 -4289_75978,271,4376_18613,Liffey Valley SC,105238061,1,4376_7778022_100500,4376_152 -4289_75978,115,4376_18614,Liffey Valley SC,105218061,1,4376_7778022_100500,4376_152 -4289_75978,260,4376_18615,Liffey Valley SC,105312681,1,4376_7778022_100730,4376_152 -4289_75978,261,4376_18616,Liffey Valley SC,105322681,1,4376_7778022_100730,4376_152 -4289_75978,262,4376_18617,Liffey Valley SC,105432681,1,4376_7778022_100730,4376_152 -4289_75978,263,4376_18618,Liffey Valley SC,105542681,1,4376_7778022_100730,4376_152 -4289_75978,264,4376_18619,Liffey Valley SC,105652681,1,4376_7778022_100730,4376_152 -4289_75962,270,4376_1862,Brides Glen Luas,105277145,1,4376_7778022_100150,4376_28 -4289_75978,265,4376_18620,Liffey Valley SC,105812681,1,4376_7778022_100730,4376_152 -4289_75978,266,4376_18621,Liffey Valley SC,105822681,1,4376_7778022_100730,4376_152 -4289_75978,267,4376_18622,Liffey Valley SC,106052681,1,4376_7778022_100730,4376_152 -4289_75978,268,4376_18623,Liffey Valley SC,106142681,1,4376_7778022_100730,4376_152 -4289_75978,269,4376_18624,Liffey Valley SC,106232681,1,4376_7778022_100730,4376_152 -4289_75978,259,4376_18625,Liffey Valley SC,105765393,1,4376_7778022_100540,4376_152 -4289_75978,260,4376_18626,Liffey Valley SC,105312695,1,4376_7778022_100750,4376_152 -4289_75978,261,4376_18627,Liffey Valley SC,105322695,1,4376_7778022_100750,4376_152 -4289_75978,262,4376_18628,Liffey Valley SC,105432695,1,4376_7778022_100750,4376_152 -4289_75978,263,4376_18629,Liffey Valley SC,105542695,1,4376_7778022_100750,4376_152 -4289_75962,146,4376_1863,Brides Glen Luas,105247145,1,4376_7778022_100150,4376_28 -4289_75978,264,4376_18630,Liffey Valley SC,105652695,1,4376_7778022_100750,4376_152 -4289_75978,265,4376_18631,Liffey Valley SC,105812695,1,4376_7778022_100750,4376_152 -4289_75978,266,4376_18632,Liffey Valley SC,105822695,1,4376_7778022_100750,4376_152 -4289_75978,267,4376_18633,Liffey Valley SC,106052695,1,4376_7778022_100750,4376_152 -4289_75978,268,4376_18634,Liffey Valley SC,106142695,1,4376_7778022_100750,4376_152 -4289_75978,269,4376_18635,Liffey Valley SC,106232695,1,4376_7778022_100750,4376_152 -4289_75978,270,4376_18636,Liffey Valley SC,105278077,1,4376_7778022_100430,4376_152 -4289_75978,146,4376_18637,Liffey Valley SC,105248077,1,4376_7778022_100430,4376_152 -4289_75978,271,4376_18638,Liffey Valley SC,105238077,1,4376_7778022_100430,4376_152 -4289_75978,115,4376_18639,Liffey Valley SC,105218077,1,4376_7778022_100430,4376_152 -4289_75962,271,4376_1864,Brides Glen Luas,105237145,1,4376_7778022_100150,4376_28 -4289_75978,260,4376_18640,Liffey Valley SC,105312711,1,4376_7778022_100760,4376_152 -4289_75978,261,4376_18641,Liffey Valley SC,105322711,1,4376_7778022_100760,4376_152 -4289_75978,262,4376_18642,Liffey Valley SC,105432711,1,4376_7778022_100760,4376_152 -4289_75978,263,4376_18643,Liffey Valley SC,105542711,1,4376_7778022_100760,4376_152 -4289_75978,264,4376_18644,Liffey Valley SC,105652711,1,4376_7778022_100760,4376_152 -4289_75978,265,4376_18645,Liffey Valley SC,105812711,1,4376_7778022_100760,4376_152 -4289_75978,266,4376_18646,Liffey Valley SC,105822711,1,4376_7778022_100760,4376_152 -4289_75978,267,4376_18647,Liffey Valley SC,106052711,1,4376_7778022_100760,4376_152 -4289_75978,268,4376_18648,Liffey Valley SC,106142711,1,4376_7778022_100760,4376_152 -4289_75978,269,4376_18649,Liffey Valley SC,106232711,1,4376_7778022_100760,4376_152 -4289_75962,115,4376_1865,Brides Glen Luas,105217145,1,4376_7778022_100150,4376_28 -4289_75978,259,4376_18650,Liffey Valley SC,105765413,1,4376_7778022_100490,4376_153 -4289_75978,260,4376_18651,Liffey Valley SC,105312733,1,4376_7778022_100660,4376_152 -4289_75978,261,4376_18652,Liffey Valley SC,105322733,1,4376_7778022_100660,4376_152 -4289_75978,262,4376_18653,Liffey Valley SC,105432733,1,4376_7778022_100660,4376_152 -4289_75978,263,4376_18654,Liffey Valley SC,105542733,1,4376_7778022_100660,4376_152 -4289_75978,264,4376_18655,Liffey Valley SC,105652733,1,4376_7778022_100660,4376_152 -4289_75978,265,4376_18656,Liffey Valley SC,105812733,1,4376_7778022_100660,4376_152 -4289_75978,266,4376_18657,Liffey Valley SC,105822733,1,4376_7778022_100660,4376_152 -4289_75978,267,4376_18658,Liffey Valley SC,106052733,1,4376_7778022_100660,4376_152 -4289_75978,268,4376_18659,Liffey Valley SC,106142733,1,4376_7778022_100660,4376_152 -4289_75962,260,4376_1866,Brides Glen Luas,105311557,1,4376_7778022_104071,4376_25 -4289_75978,269,4376_18660,Liffey Valley SC,106232733,1,4376_7778022_100660,4376_152 -4289_75978,259,4376_18661,Liffey Valley SC,105765443,1,4376_7778022_100510,4376_152 -4289_75978,270,4376_18662,Liffey Valley SC,105278113,1,4376_7778022_100440,4376_153 -4289_75978,146,4376_18663,Liffey Valley SC,105248113,1,4376_7778022_100440,4376_153 -4289_75978,271,4376_18664,Liffey Valley SC,105238113,1,4376_7778022_100440,4376_153 -4289_75978,115,4376_18665,Liffey Valley SC,105218113,1,4376_7778022_100440,4376_153 -4289_75978,260,4376_18666,Liffey Valley SC,105312747,1,4376_7778022_100782,4376_152 -4289_75978,261,4376_18667,Liffey Valley SC,105322747,1,4376_7778022_100782,4376_152 -4289_75978,262,4376_18668,Liffey Valley SC,105432747,1,4376_7778022_100782,4376_152 -4289_75978,263,4376_18669,Liffey Valley SC,105542747,1,4376_7778022_100782,4376_152 -4289_75962,261,4376_1867,Brides Glen Luas,105321557,1,4376_7778022_104071,4376_25 -4289_75978,264,4376_18670,Liffey Valley SC,105652747,1,4376_7778022_100782,4376_152 -4289_75978,265,4376_18671,Liffey Valley SC,105812747,1,4376_7778022_100782,4376_152 -4289_75978,266,4376_18672,Liffey Valley SC,105822747,1,4376_7778022_100782,4376_152 -4289_75978,267,4376_18673,Liffey Valley SC,106052747,1,4376_7778022_100782,4376_152 -4289_75978,268,4376_18674,Liffey Valley SC,106142747,1,4376_7778022_100782,4376_152 -4289_75978,269,4376_18675,Liffey Valley SC,106232747,1,4376_7778022_100782,4376_152 -4289_75978,260,4376_18676,Liffey Valley SC,105312761,1,4376_7778022_100680,4376_152 -4289_75978,261,4376_18677,Liffey Valley SC,105322761,1,4376_7778022_100680,4376_152 -4289_75978,262,4376_18678,Liffey Valley SC,105432761,1,4376_7778022_100680,4376_152 -4289_75978,263,4376_18679,Liffey Valley SC,105542761,1,4376_7778022_100680,4376_152 -4289_75962,262,4376_1868,Brides Glen Luas,105431557,1,4376_7778022_104071,4376_25 -4289_75978,264,4376_18680,Liffey Valley SC,105652761,1,4376_7778022_100680,4376_152 -4289_75978,265,4376_18681,Liffey Valley SC,105812761,1,4376_7778022_100680,4376_152 -4289_75978,266,4376_18682,Liffey Valley SC,105822761,1,4376_7778022_100680,4376_152 -4289_75978,267,4376_18683,Liffey Valley SC,106052761,1,4376_7778022_100680,4376_152 -4289_75978,268,4376_18684,Liffey Valley SC,106142761,1,4376_7778022_100680,4376_152 -4289_75978,269,4376_18685,Liffey Valley SC,106232761,1,4376_7778022_100680,4376_152 -4289_75978,259,4376_18686,Liffey Valley SC,105765455,1,4376_7778022_100562,4376_153 -4289_75978,270,4376_18687,Liffey Valley SC,105278139,1,4376_7778022_100460,4376_152 -4289_75978,146,4376_18688,Liffey Valley SC,105248139,1,4376_7778022_100460,4376_152 -4289_75978,271,4376_18689,Liffey Valley SC,105238139,1,4376_7778022_100460,4376_152 -4289_75962,263,4376_1869,Brides Glen Luas,105541557,1,4376_7778022_104071,4376_25 -4289_75978,115,4376_18690,Liffey Valley SC,105218139,1,4376_7778022_100460,4376_152 -4289_75978,260,4376_18691,Liffey Valley SC,105312779,1,4376_7778022_100772,4376_152 -4289_75978,261,4376_18692,Liffey Valley SC,105322779,1,4376_7778022_100772,4376_152 -4289_75978,262,4376_18693,Liffey Valley SC,105432779,1,4376_7778022_100772,4376_152 -4289_75978,263,4376_18694,Liffey Valley SC,105542779,1,4376_7778022_100772,4376_152 -4289_75978,264,4376_18695,Liffey Valley SC,105652779,1,4376_7778022_100772,4376_152 -4289_75978,265,4376_18696,Liffey Valley SC,105812779,1,4376_7778022_100772,4376_152 -4289_75978,266,4376_18697,Liffey Valley SC,105822779,1,4376_7778022_100772,4376_152 -4289_75978,267,4376_18698,Liffey Valley SC,106052779,1,4376_7778022_100772,4376_152 -4289_75978,268,4376_18699,Liffey Valley SC,106142779,1,4376_7778022_100772,4376_152 -4289_75960,260,4376_187,Sutton Station,105311812,0,4376_7778022_103108,4376_1 -4289_75962,264,4376_1870,Brides Glen Luas,105651557,1,4376_7778022_104071,4376_25 -4289_75978,269,4376_18700,Liffey Valley SC,106232779,1,4376_7778022_100772,4376_152 -4289_75978,259,4376_18701,Liffey Valley SC,105765481,1,4376_7778022_100620,4376_152 -4289_75978,260,4376_18702,Liffey Valley SC,105312793,1,4376_7778022_100630,4376_152 -4289_75978,261,4376_18703,Liffey Valley SC,105322793,1,4376_7778022_100630,4376_152 -4289_75978,262,4376_18704,Liffey Valley SC,105432793,1,4376_7778022_100630,4376_152 -4289_75978,263,4376_18705,Liffey Valley SC,105542793,1,4376_7778022_100630,4376_152 -4289_75978,264,4376_18706,Liffey Valley SC,105652793,1,4376_7778022_100630,4376_152 -4289_75978,265,4376_18707,Liffey Valley SC,105812793,1,4376_7778022_100630,4376_152 -4289_75978,266,4376_18708,Liffey Valley SC,105822793,1,4376_7778022_100630,4376_152 -4289_75978,267,4376_18709,Liffey Valley SC,106052793,1,4376_7778022_100630,4376_152 -4289_75962,265,4376_1871,Brides Glen Luas,105811557,1,4376_7778022_104071,4376_25 -4289_75978,268,4376_18710,Liffey Valley SC,106142793,1,4376_7778022_100630,4376_152 -4289_75978,269,4376_18711,Liffey Valley SC,106232793,1,4376_7778022_100630,4376_152 -4289_75978,270,4376_18712,Liffey Valley SC,105278159,1,4376_7778022_100410,4376_152 -4289_75978,146,4376_18713,Liffey Valley SC,105248159,1,4376_7778022_100410,4376_152 -4289_75978,271,4376_18714,Liffey Valley SC,105238159,1,4376_7778022_100410,4376_152 -4289_75978,115,4376_18715,Liffey Valley SC,105218159,1,4376_7778022_100410,4376_152 -4289_75978,260,4376_18716,Liffey Valley SC,105312809,1,4376_7778022_100652,4376_152 -4289_75978,261,4376_18717,Liffey Valley SC,105322809,1,4376_7778022_100652,4376_152 -4289_75978,262,4376_18718,Liffey Valley SC,105432809,1,4376_7778022_100652,4376_152 -4289_75978,263,4376_18719,Liffey Valley SC,105542809,1,4376_7778022_100652,4376_152 -4289_75962,266,4376_1872,Brides Glen Luas,105821557,1,4376_7778022_104071,4376_25 -4289_75978,264,4376_18720,Liffey Valley SC,105652809,1,4376_7778022_100652,4376_152 -4289_75978,265,4376_18721,Liffey Valley SC,105812809,1,4376_7778022_100652,4376_152 -4289_75978,266,4376_18722,Liffey Valley SC,105822809,1,4376_7778022_100652,4376_152 -4289_75978,267,4376_18723,Liffey Valley SC,106052809,1,4376_7778022_100652,4376_152 -4289_75978,268,4376_18724,Liffey Valley SC,106142809,1,4376_7778022_100652,4376_152 -4289_75978,269,4376_18725,Liffey Valley SC,106232809,1,4376_7778022_100652,4376_152 -4289_75978,259,4376_18726,Liffey Valley SC,105765499,1,4376_7778022_100610,4376_152 -4289_75978,260,4376_18727,Liffey Valley SC,105312831,1,4376_7778022_100700,4376_152 -4289_75978,261,4376_18728,Liffey Valley SC,105322831,1,4376_7778022_100700,4376_152 -4289_75978,262,4376_18729,Liffey Valley SC,105432831,1,4376_7778022_100700,4376_152 -4289_75962,267,4376_1873,Brides Glen Luas,106051557,1,4376_7778022_104071,4376_25 -4289_75978,263,4376_18730,Liffey Valley SC,105542831,1,4376_7778022_100700,4376_152 -4289_75978,264,4376_18731,Liffey Valley SC,105652831,1,4376_7778022_100700,4376_152 -4289_75978,265,4376_18732,Liffey Valley SC,105812831,1,4376_7778022_100700,4376_152 -4289_75978,266,4376_18733,Liffey Valley SC,105822831,1,4376_7778022_100700,4376_152 -4289_75978,267,4376_18734,Liffey Valley SC,106052831,1,4376_7778022_100700,4376_152 -4289_75978,268,4376_18735,Liffey Valley SC,106142831,1,4376_7778022_100700,4376_152 -4289_75978,269,4376_18736,Liffey Valley SC,106232831,1,4376_7778022_100700,4376_152 -4289_75978,259,4376_18737,Liffey Valley SC,105765529,1,4376_7778022_100650,4376_152 -4289_75978,270,4376_18738,Liffey Valley SC,105278191,1,4376_7778022_100420,4376_153 -4289_75978,146,4376_18739,Liffey Valley SC,105248191,1,4376_7778022_100420,4376_153 -4289_75962,268,4376_1874,Brides Glen Luas,106141557,1,4376_7778022_104071,4376_25 -4289_75978,271,4376_18740,Liffey Valley SC,105238191,1,4376_7778022_100420,4376_153 -4289_75978,115,4376_18741,Liffey Valley SC,105218191,1,4376_7778022_100420,4376_153 -4289_75978,260,4376_18742,Liffey Valley SC,105312843,1,4376_7778022_100600,4376_152 -4289_75978,261,4376_18743,Liffey Valley SC,105322843,1,4376_7778022_100600,4376_152 -4289_75978,262,4376_18744,Liffey Valley SC,105432843,1,4376_7778022_100600,4376_152 -4289_75978,263,4376_18745,Liffey Valley SC,105542843,1,4376_7778022_100600,4376_152 -4289_75978,264,4376_18746,Liffey Valley SC,105652843,1,4376_7778022_100600,4376_152 -4289_75978,265,4376_18747,Liffey Valley SC,105812843,1,4376_7778022_100600,4376_152 -4289_75978,266,4376_18748,Liffey Valley SC,105822843,1,4376_7778022_100600,4376_152 -4289_75978,267,4376_18749,Liffey Valley SC,106052843,1,4376_7778022_100600,4376_152 -4289_75962,269,4376_1875,Brides Glen Luas,106231557,1,4376_7778022_104071,4376_25 -4289_75978,268,4376_18750,Liffey Valley SC,106142843,1,4376_7778022_100600,4376_152 -4289_75978,269,4376_18751,Liffey Valley SC,106232843,1,4376_7778022_100600,4376_152 -4289_75978,260,4376_18752,Liffey Valley SC,105312857,1,4376_7778022_100620,4376_152 -4289_75978,261,4376_18753,Liffey Valley SC,105322857,1,4376_7778022_100620,4376_152 -4289_75978,262,4376_18754,Liffey Valley SC,105432857,1,4376_7778022_100620,4376_152 -4289_75978,263,4376_18755,Liffey Valley SC,105542857,1,4376_7778022_100620,4376_152 -4289_75978,264,4376_18756,Liffey Valley SC,105652857,1,4376_7778022_100620,4376_152 -4289_75978,265,4376_18757,Liffey Valley SC,105812857,1,4376_7778022_100620,4376_152 -4289_75978,266,4376_18758,Liffey Valley SC,105822857,1,4376_7778022_100620,4376_152 -4289_75978,267,4376_18759,Liffey Valley SC,106052857,1,4376_7778022_100620,4376_152 -4289_75962,259,4376_1876,Brides Glen Luas,105764411,1,4376_7778022_104022,4376_25 -4289_75978,268,4376_18760,Liffey Valley SC,106142857,1,4376_7778022_100620,4376_152 -4289_75978,269,4376_18761,Liffey Valley SC,106232857,1,4376_7778022_100620,4376_152 -4289_75978,259,4376_18762,Liffey Valley SC,105765543,1,4376_7778022_100550,4376_153 -4289_75978,270,4376_18763,Liffey Valley SC,105278215,1,4376_7778022_100500,4376_152 -4289_75978,146,4376_18764,Liffey Valley SC,105248215,1,4376_7778022_100500,4376_152 -4289_75978,271,4376_18765,Liffey Valley SC,105238215,1,4376_7778022_100500,4376_152 -4289_75978,115,4376_18766,Liffey Valley SC,105218215,1,4376_7778022_100500,4376_152 -4289_75978,260,4376_18767,Liffey Valley SC,105312873,1,4376_7778022_100790,4376_152 -4289_75978,261,4376_18768,Liffey Valley SC,105322873,1,4376_7778022_100790,4376_152 -4289_75978,262,4376_18769,Liffey Valley SC,105432873,1,4376_7778022_100790,4376_152 -4289_75962,270,4376_1877,Brides Glen Luas,105277231,1,4376_7778022_100140,4376_28 -4289_75978,263,4376_18770,Liffey Valley SC,105542873,1,4376_7778022_100790,4376_152 -4289_75978,264,4376_18771,Liffey Valley SC,105652873,1,4376_7778022_100790,4376_152 -4289_75978,265,4376_18772,Liffey Valley SC,105812873,1,4376_7778022_100790,4376_152 -4289_75978,266,4376_18773,Liffey Valley SC,105822873,1,4376_7778022_100790,4376_152 -4289_75978,267,4376_18774,Liffey Valley SC,106052873,1,4376_7778022_100790,4376_152 -4289_75978,268,4376_18775,Liffey Valley SC,106142873,1,4376_7778022_100790,4376_152 -4289_75978,269,4376_18776,Liffey Valley SC,106232873,1,4376_7778022_100790,4376_152 -4289_75978,259,4376_18777,Liffey Valley SC,105765569,1,4376_7778022_100540,4376_152 -4289_75978,260,4376_18778,Liffey Valley SC,105312889,1,4376_7778022_100750,4376_152 -4289_75978,261,4376_18779,Liffey Valley SC,105322889,1,4376_7778022_100750,4376_152 -4289_75962,146,4376_1878,Brides Glen Luas,105247231,1,4376_7778022_100140,4376_28 -4289_75978,262,4376_18780,Liffey Valley SC,105432889,1,4376_7778022_100750,4376_152 -4289_75978,263,4376_18781,Liffey Valley SC,105542889,1,4376_7778022_100750,4376_152 -4289_75978,264,4376_18782,Liffey Valley SC,105652889,1,4376_7778022_100750,4376_152 -4289_75978,265,4376_18783,Liffey Valley SC,105812889,1,4376_7778022_100750,4376_152 -4289_75978,266,4376_18784,Liffey Valley SC,105822889,1,4376_7778022_100750,4376_152 -4289_75978,267,4376_18785,Liffey Valley SC,106052889,1,4376_7778022_100750,4376_152 -4289_75978,268,4376_18786,Liffey Valley SC,106142889,1,4376_7778022_100750,4376_152 -4289_75978,269,4376_18787,Liffey Valley SC,106232889,1,4376_7778022_100750,4376_152 -4289_75978,270,4376_18788,Liffey Valley SC,105278237,1,4376_7778022_100440,4376_152 -4289_75978,146,4376_18789,Liffey Valley SC,105248237,1,4376_7778022_100440,4376_152 -4289_75962,271,4376_1879,Brides Glen Luas,105237231,1,4376_7778022_100140,4376_28 -4289_75978,271,4376_18790,Liffey Valley SC,105238237,1,4376_7778022_100440,4376_152 -4289_75978,115,4376_18791,Liffey Valley SC,105218237,1,4376_7778022_100440,4376_152 -4289_75978,260,4376_18792,Liffey Valley SC,105312903,1,4376_7778022_100760,4376_152 -4289_75978,261,4376_18793,Liffey Valley SC,105322903,1,4376_7778022_100760,4376_152 -4289_75978,262,4376_18794,Liffey Valley SC,105432903,1,4376_7778022_100760,4376_152 -4289_75978,263,4376_18795,Liffey Valley SC,105542903,1,4376_7778022_100760,4376_152 -4289_75978,264,4376_18796,Liffey Valley SC,105652903,1,4376_7778022_100760,4376_152 -4289_75978,265,4376_18797,Liffey Valley SC,105812903,1,4376_7778022_100760,4376_152 -4289_75978,266,4376_18798,Liffey Valley SC,105822903,1,4376_7778022_100760,4376_152 -4289_75978,267,4376_18799,Liffey Valley SC,106052903,1,4376_7778022_100760,4376_152 -4289_75960,261,4376_188,Sutton Station,105321812,0,4376_7778022_103108,4376_1 -4289_75962,115,4376_1880,Brides Glen Luas,105217231,1,4376_7778022_100140,4376_28 -4289_75978,268,4376_18800,Liffey Valley SC,106142903,1,4376_7778022_100760,4376_152 -4289_75978,269,4376_18801,Liffey Valley SC,106232903,1,4376_7778022_100760,4376_152 -4289_75978,259,4376_18802,Liffey Valley SC,105765583,1,4376_7778022_100490,4376_153 -4289_75978,260,4376_18803,Liffey Valley SC,105312925,1,4376_7778022_100660,4376_152 -4289_75978,261,4376_18804,Liffey Valley SC,105322925,1,4376_7778022_100660,4376_152 -4289_75978,262,4376_18805,Liffey Valley SC,105432925,1,4376_7778022_100660,4376_152 -4289_75978,263,4376_18806,Liffey Valley SC,105542925,1,4376_7778022_100660,4376_152 -4289_75978,264,4376_18807,Liffey Valley SC,105652925,1,4376_7778022_100660,4376_152 -4289_75978,265,4376_18808,Liffey Valley SC,105812925,1,4376_7778022_100660,4376_152 -4289_75978,266,4376_18809,Liffey Valley SC,105822925,1,4376_7778022_100660,4376_152 -4289_75962,260,4376_1881,Brides Glen Luas,105311665,1,4376_7778022_104030,4376_25 -4289_75978,267,4376_18810,Liffey Valley SC,106052925,1,4376_7778022_100660,4376_152 -4289_75978,268,4376_18811,Liffey Valley SC,106142925,1,4376_7778022_100660,4376_152 -4289_75978,269,4376_18812,Liffey Valley SC,106232925,1,4376_7778022_100660,4376_152 -4289_75978,259,4376_18813,Liffey Valley SC,105765611,1,4376_7778022_100562,4376_152 -4289_75978,270,4376_18814,Liffey Valley SC,105278267,1,4376_7778022_100460,4376_153 -4289_75978,146,4376_18815,Liffey Valley SC,105248267,1,4376_7778022_100460,4376_153 -4289_75978,271,4376_18816,Liffey Valley SC,105238267,1,4376_7778022_100460,4376_153 -4289_75978,115,4376_18817,Liffey Valley SC,105218267,1,4376_7778022_100460,4376_153 -4289_75978,260,4376_18818,Liffey Valley SC,105312937,1,4376_7778022_100680,4376_152 -4289_75978,261,4376_18819,Liffey Valley SC,105322937,1,4376_7778022_100680,4376_152 -4289_75962,261,4376_1882,Brides Glen Luas,105321665,1,4376_7778022_104030,4376_25 -4289_75978,262,4376_18820,Liffey Valley SC,105432937,1,4376_7778022_100680,4376_152 -4289_75978,263,4376_18821,Liffey Valley SC,105542937,1,4376_7778022_100680,4376_152 -4289_75978,264,4376_18822,Liffey Valley SC,105652937,1,4376_7778022_100680,4376_152 -4289_75978,265,4376_18823,Liffey Valley SC,105812937,1,4376_7778022_100680,4376_152 -4289_75978,266,4376_18824,Liffey Valley SC,105822937,1,4376_7778022_100680,4376_152 -4289_75978,267,4376_18825,Liffey Valley SC,106052937,1,4376_7778022_100680,4376_152 -4289_75978,268,4376_18826,Liffey Valley SC,106142937,1,4376_7778022_100680,4376_152 -4289_75978,269,4376_18827,Liffey Valley SC,106232937,1,4376_7778022_100680,4376_152 -4289_75978,260,4376_18828,Liffey Valley SC,105312951,1,4376_7778022_100772,4376_152 -4289_75978,261,4376_18829,Liffey Valley SC,105322951,1,4376_7778022_100772,4376_152 -4289_75962,262,4376_1883,Brides Glen Luas,105431665,1,4376_7778022_104030,4376_25 -4289_75978,262,4376_18830,Liffey Valley SC,105432951,1,4376_7778022_100772,4376_152 -4289_75978,263,4376_18831,Liffey Valley SC,105542951,1,4376_7778022_100772,4376_152 -4289_75978,264,4376_18832,Liffey Valley SC,105652951,1,4376_7778022_100772,4376_152 -4289_75978,265,4376_18833,Liffey Valley SC,105812951,1,4376_7778022_100772,4376_152 -4289_75978,266,4376_18834,Liffey Valley SC,105822951,1,4376_7778022_100772,4376_152 -4289_75978,267,4376_18835,Liffey Valley SC,106052951,1,4376_7778022_100772,4376_152 -4289_75978,268,4376_18836,Liffey Valley SC,106142951,1,4376_7778022_100772,4376_152 -4289_75978,269,4376_18837,Liffey Valley SC,106232951,1,4376_7778022_100772,4376_152 -4289_75978,259,4376_18838,Liffey Valley SC,105765627,1,4376_7778022_100620,4376_153 -4289_75978,270,4376_18839,Liffey Valley SC,105278289,1,4376_7778022_100420,4376_152 -4289_75962,263,4376_1884,Brides Glen Luas,105541665,1,4376_7778022_104030,4376_25 -4289_75978,146,4376_18840,Liffey Valley SC,105248289,1,4376_7778022_100420,4376_152 -4289_75978,271,4376_18841,Liffey Valley SC,105238289,1,4376_7778022_100420,4376_152 -4289_75978,115,4376_18842,Liffey Valley SC,105218289,1,4376_7778022_100420,4376_152 -4289_75978,260,4376_18843,Liffey Valley SC,105312971,1,4376_7778022_100652,4376_152 -4289_75978,261,4376_18844,Liffey Valley SC,105322971,1,4376_7778022_100652,4376_152 -4289_75978,262,4376_18845,Liffey Valley SC,105432971,1,4376_7778022_100652,4376_152 -4289_75978,263,4376_18846,Liffey Valley SC,105542971,1,4376_7778022_100652,4376_152 -4289_75978,264,4376_18847,Liffey Valley SC,105652971,1,4376_7778022_100652,4376_152 -4289_75978,265,4376_18848,Liffey Valley SC,105812971,1,4376_7778022_100652,4376_152 -4289_75978,266,4376_18849,Liffey Valley SC,105822971,1,4376_7778022_100652,4376_152 -4289_75962,264,4376_1885,Brides Glen Luas,105651665,1,4376_7778022_104030,4376_25 -4289_75978,267,4376_18850,Liffey Valley SC,106052971,1,4376_7778022_100652,4376_152 -4289_75978,268,4376_18851,Liffey Valley SC,106142971,1,4376_7778022_100652,4376_152 -4289_75978,269,4376_18852,Liffey Valley SC,106232971,1,4376_7778022_100652,4376_152 -4289_75978,259,4376_18853,Liffey Valley SC,105765643,1,4376_7778022_100610,4376_153 -4289_75978,270,4376_18854,Liffey Valley SC,105278307,1,4376_7778022_100500,4376_152 -4289_75978,146,4376_18855,Liffey Valley SC,105248307,1,4376_7778022_100500,4376_152 -4289_75978,271,4376_18856,Liffey Valley SC,105238307,1,4376_7778022_100500,4376_152 -4289_75978,115,4376_18857,Liffey Valley SC,105218307,1,4376_7778022_100500,4376_152 -4289_75979,260,4376_18858,Blackrock,105311014,0,4376_7778022_100810,4376_155 -4289_75979,261,4376_18859,Blackrock,105321014,0,4376_7778022_100810,4376_155 -4289_75962,265,4376_1886,Brides Glen Luas,105811665,1,4376_7778022_104030,4376_25 -4289_75979,262,4376_18860,Blackrock,105431014,0,4376_7778022_100810,4376_155 -4289_75979,263,4376_18861,Blackrock,105541014,0,4376_7778022_100810,4376_155 -4289_75979,264,4376_18862,Blackrock,105651014,0,4376_7778022_100810,4376_155 -4289_75979,265,4376_18863,Blackrock,105811014,0,4376_7778022_100810,4376_155 -4289_75979,266,4376_18864,Blackrock,105821014,0,4376_7778022_100810,4376_155 -4289_75979,267,4376_18865,Blackrock,106051014,0,4376_7778022_100810,4376_155 -4289_75979,268,4376_18866,Blackrock,106141014,0,4376_7778022_100810,4376_155 -4289_75979,269,4376_18867,Blackrock,106231014,0,4376_7778022_100810,4376_155 -4289_75979,260,4376_18868,Blackrock,105311038,0,4376_7778022_100841,4376_155 -4289_75979,261,4376_18869,Blackrock,105321038,0,4376_7778022_100841,4376_155 -4289_75962,266,4376_1887,Brides Glen Luas,105821665,1,4376_7778022_104030,4376_25 -4289_75979,262,4376_18870,Blackrock,105431038,0,4376_7778022_100841,4376_155 -4289_75979,263,4376_18871,Blackrock,105541038,0,4376_7778022_100841,4376_155 -4289_75979,264,4376_18872,Blackrock,105651038,0,4376_7778022_100841,4376_155 -4289_75979,265,4376_18873,Blackrock,105811038,0,4376_7778022_100841,4376_155 -4289_75979,266,4376_18874,Blackrock,105821038,0,4376_7778022_100841,4376_155 -4289_75979,267,4376_18875,Blackrock,106051038,0,4376_7778022_100841,4376_155 -4289_75979,268,4376_18876,Blackrock,106141038,0,4376_7778022_100841,4376_155 -4289_75979,269,4376_18877,Blackrock,106231038,0,4376_7778022_100841,4376_155 -4289_75979,259,4376_18878,Blackrock,105764028,0,4376_7778022_100671,4376_156 -4289_75979,260,4376_18879,Blackrock,105311060,0,4376_7778022_100860,4376_155 -4289_75962,267,4376_1888,Brides Glen Luas,106051665,1,4376_7778022_104030,4376_25 -4289_75979,261,4376_18880,Blackrock,105321060,0,4376_7778022_100860,4376_155 -4289_75979,262,4376_18881,Blackrock,105431060,0,4376_7778022_100860,4376_155 -4289_75979,263,4376_18882,Blackrock,105541060,0,4376_7778022_100860,4376_155 -4289_75979,264,4376_18883,Blackrock,105651060,0,4376_7778022_100860,4376_155 -4289_75979,265,4376_18884,Blackrock,105811060,0,4376_7778022_100860,4376_155 -4289_75979,266,4376_18885,Blackrock,105821060,0,4376_7778022_100860,4376_155 -4289_75979,267,4376_18886,Blackrock,106051060,0,4376_7778022_100860,4376_155 -4289_75979,268,4376_18887,Blackrock,106141060,0,4376_7778022_100860,4376_155 -4289_75979,269,4376_18888,Blackrock,106231060,0,4376_7778022_100860,4376_155 -4289_75979,259,4376_18889,Blackrock,105764044,0,4376_7778022_100690,4376_155 -4289_75962,268,4376_1889,Brides Glen Luas,106141665,1,4376_7778022_104030,4376_25 -4289_75979,260,4376_18890,Blackrock,105311088,0,4376_7778022_100800,4376_155 -4289_75979,261,4376_18891,Blackrock,105321088,0,4376_7778022_100800,4376_155 -4289_75979,262,4376_18892,Blackrock,105431088,0,4376_7778022_100800,4376_155 -4289_75979,263,4376_18893,Blackrock,105541088,0,4376_7778022_100800,4376_155 -4289_75979,264,4376_18894,Blackrock,105651088,0,4376_7778022_100800,4376_155 -4289_75979,265,4376_18895,Blackrock,105811088,0,4376_7778022_100800,4376_155 -4289_75979,266,4376_18896,Blackrock,105821088,0,4376_7778022_100800,4376_155 -4289_75979,267,4376_18897,Blackrock,106051088,0,4376_7778022_100800,4376_155 -4289_75979,268,4376_18898,Blackrock,106141088,0,4376_7778022_100800,4376_155 -4289_75979,269,4376_18899,Blackrock,106231088,0,4376_7778022_100800,4376_155 -4289_75960,262,4376_189,Sutton Station,105431812,0,4376_7778022_103108,4376_1 -4289_75962,269,4376_1890,Brides Glen Luas,106231665,1,4376_7778022_104030,4376_25 -4289_75979,260,4376_18900,Blackrock,105311098,0,4376_7778022_100881,4376_155 -4289_75979,261,4376_18901,Blackrock,105321098,0,4376_7778022_100881,4376_155 -4289_75979,262,4376_18902,Blackrock,105431098,0,4376_7778022_100881,4376_155 -4289_75979,263,4376_18903,Blackrock,105541098,0,4376_7778022_100881,4376_155 -4289_75979,264,4376_18904,Blackrock,105651098,0,4376_7778022_100881,4376_155 -4289_75979,265,4376_18905,Blackrock,105811098,0,4376_7778022_100881,4376_155 -4289_75979,266,4376_18906,Blackrock,105821098,0,4376_7778022_100881,4376_155 -4289_75979,267,4376_18907,Blackrock,106051098,0,4376_7778022_100881,4376_155 -4289_75979,268,4376_18908,Blackrock,106141098,0,4376_7778022_100881,4376_155 -4289_75979,269,4376_18909,Blackrock,106231098,0,4376_7778022_100881,4376_155 -4289_75962,259,4376_1891,Brides Glen Luas,105764513,1,4376_7778022_104161,4376_25 -4289_75979,259,4376_18910,Blackrock,105764070,0,4376_7778022_100711,4376_155 -4289_75979,260,4376_18911,Blackrock,105311132,0,4376_7778022_100901,4376_155 -4289_75979,261,4376_18912,Blackrock,105321132,0,4376_7778022_100901,4376_155 -4289_75979,262,4376_18913,Blackrock,105431132,0,4376_7778022_100901,4376_155 -4289_75979,263,4376_18914,Blackrock,105541132,0,4376_7778022_100901,4376_155 -4289_75979,264,4376_18915,Blackrock,105651132,0,4376_7778022_100901,4376_155 -4289_75979,265,4376_18916,Blackrock,105811132,0,4376_7778022_100901,4376_155 -4289_75979,266,4376_18917,Blackrock,105821132,0,4376_7778022_100901,4376_155 -4289_75979,267,4376_18918,Blackrock,106051132,0,4376_7778022_100901,4376_155 -4289_75979,268,4376_18919,Blackrock,106141132,0,4376_7778022_100901,4376_155 -4289_75962,270,4376_1892,Brides Glen Luas,105277293,1,4376_7778022_100150,4376_27 -4289_75979,269,4376_18920,Blackrock,106231132,0,4376_7778022_100901,4376_155 -4289_75979,260,4376_18921,Blackrock,105311158,0,4376_7778022_100910,4376_155 -4289_75979,261,4376_18922,Blackrock,105321158,0,4376_7778022_100910,4376_155 -4289_75979,262,4376_18923,Blackrock,105431158,0,4376_7778022_100910,4376_155 -4289_75979,263,4376_18924,Blackrock,105541158,0,4376_7778022_100910,4376_155 -4289_75979,264,4376_18925,Blackrock,105651158,0,4376_7778022_100910,4376_155 -4289_75979,265,4376_18926,Blackrock,105811158,0,4376_7778022_100910,4376_155 -4289_75979,266,4376_18927,Blackrock,105821158,0,4376_7778022_100910,4376_155 -4289_75979,267,4376_18928,Blackrock,106051158,0,4376_7778022_100910,4376_155 -4289_75979,268,4376_18929,Blackrock,106141158,0,4376_7778022_100910,4376_155 -4289_75962,146,4376_1893,Brides Glen Luas,105247293,1,4376_7778022_100150,4376_27 -4289_75979,269,4376_18930,Blackrock,106231158,0,4376_7778022_100910,4376_155 -4289_75979,259,4376_18931,Blackrock,105764104,0,4376_7778022_100660,4376_156 -4289_75979,260,4376_18932,Blackrock,105311174,0,4376_7778022_100920,4376_155 -4289_75979,261,4376_18933,Blackrock,105321174,0,4376_7778022_100920,4376_155 -4289_75979,262,4376_18934,Blackrock,105431174,0,4376_7778022_100920,4376_155 -4289_75979,263,4376_18935,Blackrock,105541174,0,4376_7778022_100920,4376_155 -4289_75979,264,4376_18936,Blackrock,105651174,0,4376_7778022_100920,4376_155 -4289_75979,265,4376_18937,Blackrock,105811174,0,4376_7778022_100920,4376_155 -4289_75979,266,4376_18938,Blackrock,105821174,0,4376_7778022_100920,4376_155 -4289_75979,267,4376_18939,Blackrock,106051174,0,4376_7778022_100920,4376_155 -4289_75962,271,4376_1894,Brides Glen Luas,105237293,1,4376_7778022_100150,4376_27 -4289_75979,268,4376_18940,Blackrock,106141174,0,4376_7778022_100920,4376_155 -4289_75979,269,4376_18941,Blackrock,106231174,0,4376_7778022_100920,4376_155 -4289_75979,260,4376_18942,Blackrock,105311198,0,4376_7778022_100821,4376_155 -4289_75979,261,4376_18943,Blackrock,105321198,0,4376_7778022_100821,4376_155 -4289_75979,262,4376_18944,Blackrock,105431198,0,4376_7778022_100821,4376_155 -4289_75979,263,4376_18945,Blackrock,105541198,0,4376_7778022_100821,4376_155 -4289_75979,264,4376_18946,Blackrock,105651198,0,4376_7778022_100821,4376_155 -4289_75979,265,4376_18947,Blackrock,105811198,0,4376_7778022_100821,4376_155 -4289_75979,266,4376_18948,Blackrock,105821198,0,4376_7778022_100821,4376_155 -4289_75979,267,4376_18949,Blackrock,106051198,0,4376_7778022_100821,4376_155 -4289_75962,115,4376_1895,Brides Glen Luas,105217293,1,4376_7778022_100150,4376_27 -4289_75979,268,4376_18950,Blackrock,106141198,0,4376_7778022_100821,4376_155 -4289_75979,269,4376_18951,Blackrock,106231198,0,4376_7778022_100821,4376_155 -4289_75979,259,4376_18952,Blackrock,105764126,0,4376_7778022_100681,4376_155 -4289_75979,260,4376_18953,Blackrock,105311240,0,4376_7778022_100831,4376_155 -4289_75979,261,4376_18954,Blackrock,105321240,0,4376_7778022_100831,4376_155 -4289_75979,262,4376_18955,Blackrock,105431240,0,4376_7778022_100831,4376_155 -4289_75979,263,4376_18956,Blackrock,105541240,0,4376_7778022_100831,4376_155 -4289_75979,264,4376_18957,Blackrock,105651240,0,4376_7778022_100831,4376_155 -4289_75979,265,4376_18958,Blackrock,105811240,0,4376_7778022_100831,4376_155 -4289_75979,266,4376_18959,Blackrock,105821240,0,4376_7778022_100831,4376_155 -4289_75962,260,4376_1896,Brides Glen Luas,105311773,1,4376_7778022_104071,4376_25 -4289_75979,267,4376_18960,Blackrock,106051240,0,4376_7778022_100831,4376_155 -4289_75979,268,4376_18961,Blackrock,106141240,0,4376_7778022_100831,4376_155 -4289_75979,269,4376_18962,Blackrock,106231240,0,4376_7778022_100831,4376_155 -4289_75979,270,4376_18963,Blackrock,105277012,0,4376_7778022_100531,4376_156 -4289_75979,146,4376_18964,Blackrock,105247012,0,4376_7778022_100531,4376_156 -4289_75979,271,4376_18965,Blackrock,105237012,0,4376_7778022_100531,4376_156 -4289_75979,115,4376_18966,Blackrock,105217012,0,4376_7778022_100531,4376_156 -4289_75979,259,4376_18967,Blackrock,105764160,0,4376_7778022_100701,4376_155 -4289_75979,260,4376_18968,Blackrock,105311300,0,4376_7778022_100810,4376_155 -4289_75979,261,4376_18969,Blackrock,105321300,0,4376_7778022_100810,4376_155 -4289_75962,261,4376_1897,Brides Glen Luas,105321773,1,4376_7778022_104071,4376_25 -4289_75979,262,4376_18970,Blackrock,105431300,0,4376_7778022_100810,4376_155 -4289_75979,263,4376_18971,Blackrock,105541300,0,4376_7778022_100810,4376_155 -4289_75979,264,4376_18972,Blackrock,105651300,0,4376_7778022_100810,4376_155 -4289_75979,265,4376_18973,Blackrock,105811300,0,4376_7778022_100810,4376_155 -4289_75979,266,4376_18974,Blackrock,105821300,0,4376_7778022_100810,4376_155 -4289_75979,267,4376_18975,Blackrock,106051300,0,4376_7778022_100810,4376_155 -4289_75979,268,4376_18976,Blackrock,106141300,0,4376_7778022_100810,4376_155 -4289_75979,269,4376_18977,Blackrock,106231300,0,4376_7778022_100810,4376_155 -4289_75979,260,4376_18978,Blackrock,105311330,0,4376_7778022_100850,4376_155 -4289_75979,261,4376_18979,Blackrock,105321330,0,4376_7778022_100850,4376_155 -4289_75962,262,4376_1898,Brides Glen Luas,105431773,1,4376_7778022_104071,4376_25 -4289_75979,262,4376_18980,Blackrock,105431330,0,4376_7778022_100850,4376_155 -4289_75979,263,4376_18981,Blackrock,105541330,0,4376_7778022_100850,4376_155 -4289_75979,264,4376_18982,Blackrock,105651330,0,4376_7778022_100850,4376_155 -4289_75979,265,4376_18983,Blackrock,105811330,0,4376_7778022_100850,4376_155 -4289_75979,266,4376_18984,Blackrock,105821330,0,4376_7778022_100850,4376_155 -4289_75979,267,4376_18985,Blackrock,106051330,0,4376_7778022_100850,4376_155 -4289_75979,268,4376_18986,Blackrock,106141330,0,4376_7778022_100850,4376_155 -4289_75979,269,4376_18987,Blackrock,106231330,0,4376_7778022_100850,4376_155 -4289_75979,259,4376_18988,Blackrock,105764194,0,4376_7778022_100671,4376_156 -4289_75979,270,4376_18989,Blackrock,105277030,0,4376_7778022_100551,4376_156 -4289_75962,263,4376_1899,Brides Glen Luas,105541773,1,4376_7778022_104071,4376_25 -4289_75979,146,4376_18990,Blackrock,105247030,0,4376_7778022_100551,4376_156 -4289_75979,271,4376_18991,Blackrock,105237030,0,4376_7778022_100551,4376_156 -4289_75979,115,4376_18992,Blackrock,105217030,0,4376_7778022_100551,4376_156 -4289_75979,260,4376_18993,Blackrock,105311368,0,4376_7778022_100871,4376_155 -4289_75979,261,4376_18994,Blackrock,105321368,0,4376_7778022_100871,4376_155 -4289_75979,262,4376_18995,Blackrock,105431368,0,4376_7778022_100871,4376_155 -4289_75979,263,4376_18996,Blackrock,105541368,0,4376_7778022_100871,4376_155 -4289_75979,264,4376_18997,Blackrock,105651368,0,4376_7778022_100871,4376_155 -4289_75979,265,4376_18998,Blackrock,105811368,0,4376_7778022_100871,4376_155 -4289_75979,266,4376_18999,Blackrock,105821368,0,4376_7778022_100871,4376_155 -4289_75960,266,4376_19,Sutton Station,105821070,0,4376_7778022_103107,4376_1 -4289_75960,263,4376_190,Sutton Station,105541812,0,4376_7778022_103108,4376_1 -4289_75962,264,4376_1900,Brides Glen Luas,105651773,1,4376_7778022_104071,4376_25 -4289_75979,267,4376_19000,Blackrock,106051368,0,4376_7778022_100871,4376_155 -4289_75979,268,4376_19001,Blackrock,106141368,0,4376_7778022_100871,4376_155 -4289_75979,269,4376_19002,Blackrock,106231368,0,4376_7778022_100871,4376_155 -4289_75979,259,4376_19003,Blackrock,105764214,0,4376_7778022_100690,4376_155 -4289_75979,260,4376_19004,Blackrock,105311400,0,4376_7778022_100930,4376_155 -4289_75979,261,4376_19005,Blackrock,105321400,0,4376_7778022_100930,4376_155 -4289_75979,262,4376_19006,Blackrock,105431400,0,4376_7778022_100930,4376_155 -4289_75979,263,4376_19007,Blackrock,105541400,0,4376_7778022_100930,4376_155 -4289_75979,264,4376_19008,Blackrock,105651400,0,4376_7778022_100930,4376_155 -4289_75979,265,4376_19009,Blackrock,105811400,0,4376_7778022_100930,4376_155 -4289_75962,265,4376_1901,Brides Glen Luas,105811773,1,4376_7778022_104071,4376_25 -4289_75979,266,4376_19010,Blackrock,105821400,0,4376_7778022_100930,4376_155 -4289_75979,267,4376_19011,Blackrock,106051400,0,4376_7778022_100930,4376_155 -4289_75979,268,4376_19012,Blackrock,106141400,0,4376_7778022_100930,4376_155 -4289_75979,269,4376_19013,Blackrock,106231400,0,4376_7778022_100930,4376_155 -4289_75979,270,4376_19014,Blackrock,105277058,0,4376_7778022_100520,4376_156 -4289_75979,146,4376_19015,Blackrock,105247058,0,4376_7778022_100520,4376_156 -4289_75979,271,4376_19016,Blackrock,105237058,0,4376_7778022_100520,4376_156 -4289_75979,115,4376_19017,Blackrock,105217058,0,4376_7778022_100520,4376_156 -4289_75979,259,4376_19018,Blackrock,105764244,0,4376_7778022_100711,4376_155 -4289_75979,260,4376_19019,Blackrock,105311418,0,4376_7778022_100890,4376_155 -4289_75962,266,4376_1902,Brides Glen Luas,105821773,1,4376_7778022_104071,4376_25 -4289_75979,261,4376_19020,Blackrock,105321418,0,4376_7778022_100890,4376_155 -4289_75979,262,4376_19021,Blackrock,105431418,0,4376_7778022_100890,4376_155 -4289_75979,263,4376_19022,Blackrock,105541418,0,4376_7778022_100890,4376_155 -4289_75979,264,4376_19023,Blackrock,105651418,0,4376_7778022_100890,4376_155 -4289_75979,265,4376_19024,Blackrock,105811418,0,4376_7778022_100890,4376_155 -4289_75979,266,4376_19025,Blackrock,105821418,0,4376_7778022_100890,4376_155 -4289_75979,267,4376_19026,Blackrock,106051418,0,4376_7778022_100890,4376_155 -4289_75979,268,4376_19027,Blackrock,106141418,0,4376_7778022_100890,4376_155 -4289_75979,269,4376_19028,Blackrock,106231418,0,4376_7778022_100890,4376_155 -4289_75979,260,4376_19029,Blackrock,105311452,0,4376_7778022_100841,4376_155 -4289_75962,267,4376_1903,Brides Glen Luas,106051773,1,4376_7778022_104071,4376_25 -4289_75979,261,4376_19030,Blackrock,105321452,0,4376_7778022_100841,4376_155 -4289_75979,262,4376_19031,Blackrock,105431452,0,4376_7778022_100841,4376_155 -4289_75979,263,4376_19032,Blackrock,105541452,0,4376_7778022_100841,4376_155 -4289_75979,264,4376_19033,Blackrock,105651452,0,4376_7778022_100841,4376_155 -4289_75979,265,4376_19034,Blackrock,105811452,0,4376_7778022_100841,4376_155 -4289_75979,266,4376_19035,Blackrock,105821452,0,4376_7778022_100841,4376_155 -4289_75979,267,4376_19036,Blackrock,106051452,0,4376_7778022_100841,4376_155 -4289_75979,268,4376_19037,Blackrock,106141452,0,4376_7778022_100841,4376_155 -4289_75979,269,4376_19038,Blackrock,106231452,0,4376_7778022_100841,4376_155 -4289_75979,259,4376_19039,Blackrock,105764280,0,4376_7778022_100731,4376_156 -4289_75962,268,4376_1904,Brides Glen Luas,106141773,1,4376_7778022_104071,4376_25 -4289_75979,270,4376_19040,Blackrock,105277088,0,4376_7778022_100541,4376_157 -4289_75979,146,4376_19041,Blackrock,105247088,0,4376_7778022_100541,4376_157 -4289_75979,271,4376_19042,Blackrock,105237088,0,4376_7778022_100541,4376_157 -4289_75979,115,4376_19043,Blackrock,105217088,0,4376_7778022_100541,4376_157 -4289_75979,260,4376_19044,Blackrock,105311470,0,4376_7778022_100860,4376_155 -4289_75979,261,4376_19045,Blackrock,105321470,0,4376_7778022_100860,4376_155 -4289_75979,262,4376_19046,Blackrock,105431470,0,4376_7778022_100860,4376_155 -4289_75979,263,4376_19047,Blackrock,105541470,0,4376_7778022_100860,4376_155 -4289_75979,264,4376_19048,Blackrock,105651470,0,4376_7778022_100860,4376_155 -4289_75979,265,4376_19049,Blackrock,105811470,0,4376_7778022_100860,4376_155 -4289_75962,269,4376_1905,Brides Glen Luas,106231773,1,4376_7778022_104071,4376_25 -4289_75979,266,4376_19050,Blackrock,105821470,0,4376_7778022_100860,4376_155 -4289_75979,267,4376_19051,Blackrock,106051470,0,4376_7778022_100860,4376_155 -4289_75979,268,4376_19052,Blackrock,106141470,0,4376_7778022_100860,4376_155 -4289_75979,269,4376_19053,Blackrock,106231470,0,4376_7778022_100860,4376_155 -4289_75979,259,4376_19054,Blackrock,105764302,0,4376_7778022_100660,4376_156 -4289_75979,260,4376_19055,Blackrock,105311504,0,4376_7778022_100800,4376_155 -4289_75979,261,4376_19056,Blackrock,105321504,0,4376_7778022_100800,4376_155 -4289_75979,262,4376_19057,Blackrock,105431504,0,4376_7778022_100800,4376_155 -4289_75979,263,4376_19058,Blackrock,105541504,0,4376_7778022_100800,4376_155 -4289_75979,264,4376_19059,Blackrock,105651504,0,4376_7778022_100800,4376_155 -4289_75962,259,4376_1906,Brides Glen Luas,105764617,1,4376_7778022_104191,4376_25 -4289_75979,265,4376_19060,Blackrock,105811504,0,4376_7778022_100800,4376_155 -4289_75979,266,4376_19061,Blackrock,105821504,0,4376_7778022_100800,4376_155 -4289_75979,267,4376_19062,Blackrock,106051504,0,4376_7778022_100800,4376_155 -4289_75979,268,4376_19063,Blackrock,106141504,0,4376_7778022_100800,4376_155 -4289_75979,269,4376_19064,Blackrock,106231504,0,4376_7778022_100800,4376_155 -4289_75979,259,4376_19065,Blackrock,105764330,0,4376_7778022_100681,4376_156 -4289_75979,270,4376_19066,Blackrock,105277124,0,4376_7778022_100531,4376_157 -4289_75979,146,4376_19067,Blackrock,105247124,0,4376_7778022_100531,4376_157 -4289_75979,271,4376_19068,Blackrock,105237124,0,4376_7778022_100531,4376_157 -4289_75979,115,4376_19069,Blackrock,105217124,0,4376_7778022_100531,4376_157 -4289_75962,270,4376_1907,Brides Glen Luas,105277383,1,4376_7778022_100140,4376_27 -4289_75979,260,4376_19070,Blackrock,105311526,0,4376_7778022_100901,4376_155 -4289_75979,261,4376_19071,Blackrock,105321526,0,4376_7778022_100901,4376_155 -4289_75979,262,4376_19072,Blackrock,105431526,0,4376_7778022_100901,4376_155 -4289_75979,263,4376_19073,Blackrock,105541526,0,4376_7778022_100901,4376_155 -4289_75979,264,4376_19074,Blackrock,105651526,0,4376_7778022_100901,4376_155 -4289_75979,265,4376_19075,Blackrock,105811526,0,4376_7778022_100901,4376_155 -4289_75979,266,4376_19076,Blackrock,105821526,0,4376_7778022_100901,4376_155 -4289_75979,267,4376_19077,Blackrock,106051526,0,4376_7778022_100901,4376_155 -4289_75979,268,4376_19078,Blackrock,106141526,0,4376_7778022_100901,4376_155 -4289_75979,269,4376_19079,Blackrock,106231526,0,4376_7778022_100901,4376_155 -4289_75962,146,4376_1908,Brides Glen Luas,105247383,1,4376_7778022_100140,4376_27 -4289_75979,259,4376_19080,Blackrock,105764354,0,4376_7778022_100750,4376_156 -4289_75979,260,4376_19081,Blackrock,105311558,0,4376_7778022_100910,4376_155 -4289_75979,261,4376_19082,Blackrock,105321558,0,4376_7778022_100910,4376_155 -4289_75979,262,4376_19083,Blackrock,105431558,0,4376_7778022_100910,4376_155 -4289_75979,263,4376_19084,Blackrock,105541558,0,4376_7778022_100910,4376_155 -4289_75979,264,4376_19085,Blackrock,105651558,0,4376_7778022_100910,4376_155 -4289_75979,265,4376_19086,Blackrock,105811558,0,4376_7778022_100910,4376_155 -4289_75979,266,4376_19087,Blackrock,105821558,0,4376_7778022_100910,4376_155 -4289_75979,267,4376_19088,Blackrock,106051558,0,4376_7778022_100910,4376_155 -4289_75979,268,4376_19089,Blackrock,106141558,0,4376_7778022_100910,4376_155 -4289_75962,271,4376_1909,Brides Glen Luas,105237383,1,4376_7778022_100140,4376_27 -4289_75979,269,4376_19090,Blackrock,106231558,0,4376_7778022_100910,4376_155 -4289_75979,259,4376_19091,Blackrock,105764384,0,4376_7778022_100701,4376_155 -4289_75979,270,4376_19092,Blackrock,105277164,0,4376_7778022_100551,4376_156 -4289_75979,146,4376_19093,Blackrock,105247164,0,4376_7778022_100551,4376_156 -4289_75979,271,4376_19094,Blackrock,105237164,0,4376_7778022_100551,4376_156 -4289_75979,115,4376_19095,Blackrock,105217164,0,4376_7778022_100551,4376_156 -4289_75979,260,4376_19096,Blackrock,105311576,0,4376_7778022_100920,4376_155 -4289_75979,261,4376_19097,Blackrock,105321576,0,4376_7778022_100920,4376_155 -4289_75979,262,4376_19098,Blackrock,105431576,0,4376_7778022_100920,4376_155 -4289_75979,263,4376_19099,Blackrock,105541576,0,4376_7778022_100920,4376_155 -4289_75960,264,4376_191,Sutton Station,105651812,0,4376_7778022_103108,4376_1 -4289_75962,115,4376_1910,Brides Glen Luas,105217383,1,4376_7778022_100140,4376_27 -4289_75979,264,4376_19100,Blackrock,105651576,0,4376_7778022_100920,4376_155 -4289_75979,265,4376_19101,Blackrock,105811576,0,4376_7778022_100920,4376_155 -4289_75979,266,4376_19102,Blackrock,105821576,0,4376_7778022_100920,4376_155 -4289_75979,267,4376_19103,Blackrock,106051576,0,4376_7778022_100920,4376_155 -4289_75979,268,4376_19104,Blackrock,106141576,0,4376_7778022_100920,4376_155 -4289_75979,269,4376_19105,Blackrock,106231576,0,4376_7778022_100920,4376_155 -4289_75979,259,4376_19106,Blackrock,105764402,0,4376_7778022_100721,4376_155 -4289_75979,270,4376_19107,Blackrock,105277196,0,4376_7778022_100570,4376_155 -4289_75979,146,4376_19108,Blackrock,105247196,0,4376_7778022_100570,4376_155 -4289_75979,271,4376_19109,Blackrock,105237196,0,4376_7778022_100570,4376_155 -4289_75962,260,4376_1911,Brides Glen Luas,105311889,1,4376_7778022_104030,4376_25 -4289_75979,115,4376_19110,Blackrock,105217196,0,4376_7778022_100570,4376_155 -4289_75979,260,4376_19111,Blackrock,105311610,0,4376_7778022_100821,4376_155 -4289_75979,261,4376_19112,Blackrock,105321610,0,4376_7778022_100821,4376_155 -4289_75979,262,4376_19113,Blackrock,105431610,0,4376_7778022_100821,4376_155 -4289_75979,263,4376_19114,Blackrock,105541610,0,4376_7778022_100821,4376_155 -4289_75979,264,4376_19115,Blackrock,105651610,0,4376_7778022_100821,4376_155 -4289_75979,265,4376_19116,Blackrock,105811610,0,4376_7778022_100821,4376_155 -4289_75979,266,4376_19117,Blackrock,105821610,0,4376_7778022_100821,4376_155 -4289_75979,267,4376_19118,Blackrock,106051610,0,4376_7778022_100821,4376_155 -4289_75979,268,4376_19119,Blackrock,106141610,0,4376_7778022_100821,4376_155 -4289_75962,261,4376_1912,Brides Glen Luas,105321889,1,4376_7778022_104030,4376_25 -4289_75979,269,4376_19120,Blackrock,106231610,0,4376_7778022_100821,4376_155 -4289_75979,259,4376_19121,Blackrock,105764436,0,4376_7778022_100671,4376_156 -4289_75979,270,4376_19122,Blackrock,105277230,0,4376_7778022_100520,4376_155 -4289_75979,146,4376_19123,Blackrock,105247230,0,4376_7778022_100520,4376_155 -4289_75979,271,4376_19124,Blackrock,105237230,0,4376_7778022_100520,4376_155 -4289_75979,115,4376_19125,Blackrock,105217230,0,4376_7778022_100520,4376_155 -4289_75979,260,4376_19126,Blackrock,105311634,0,4376_7778022_100831,4376_155 -4289_75979,261,4376_19127,Blackrock,105321634,0,4376_7778022_100831,4376_155 -4289_75979,262,4376_19128,Blackrock,105431634,0,4376_7778022_100831,4376_155 -4289_75979,263,4376_19129,Blackrock,105541634,0,4376_7778022_100831,4376_155 -4289_75962,262,4376_1913,Brides Glen Luas,105431889,1,4376_7778022_104030,4376_25 -4289_75979,264,4376_19130,Blackrock,105651634,0,4376_7778022_100831,4376_155 -4289_75979,265,4376_19131,Blackrock,105811634,0,4376_7778022_100831,4376_155 -4289_75979,266,4376_19132,Blackrock,105821634,0,4376_7778022_100831,4376_155 -4289_75979,267,4376_19133,Blackrock,106051634,0,4376_7778022_100831,4376_155 -4289_75979,268,4376_19134,Blackrock,106141634,0,4376_7778022_100831,4376_155 -4289_75979,269,4376_19135,Blackrock,106231634,0,4376_7778022_100831,4376_155 -4289_75979,259,4376_19136,Blackrock,105764454,0,4376_7778022_100690,4376_156 -4289_75979,260,4376_19137,Blackrock,105311666,0,4376_7778022_100810,4376_155 -4289_75979,261,4376_19138,Blackrock,105321666,0,4376_7778022_100810,4376_155 -4289_75979,262,4376_19139,Blackrock,105431666,0,4376_7778022_100810,4376_155 -4289_75962,263,4376_1914,Brides Glen Luas,105541889,1,4376_7778022_104030,4376_25 -4289_75979,263,4376_19140,Blackrock,105541666,0,4376_7778022_100810,4376_155 -4289_75979,264,4376_19141,Blackrock,105651666,0,4376_7778022_100810,4376_155 -4289_75979,265,4376_19142,Blackrock,105811666,0,4376_7778022_100810,4376_155 -4289_75979,266,4376_19143,Blackrock,105821666,0,4376_7778022_100810,4376_155 -4289_75979,267,4376_19144,Blackrock,106051666,0,4376_7778022_100810,4376_155 -4289_75979,268,4376_19145,Blackrock,106141666,0,4376_7778022_100810,4376_155 -4289_75979,269,4376_19146,Blackrock,106231666,0,4376_7778022_100810,4376_155 -4289_75979,259,4376_19147,Blackrock,105764486,0,4376_7778022_100711,4376_156 -4289_75979,270,4376_19148,Blackrock,105277256,0,4376_7778022_100590,4376_157 -4289_75979,146,4376_19149,Blackrock,105247256,0,4376_7778022_100590,4376_157 -4289_75962,264,4376_1915,Brides Glen Luas,105651889,1,4376_7778022_104030,4376_25 -4289_75979,271,4376_19150,Blackrock,105237256,0,4376_7778022_100590,4376_157 -4289_75979,115,4376_19151,Blackrock,105217256,0,4376_7778022_100590,4376_157 -4289_75979,260,4376_19152,Blackrock,105311686,0,4376_7778022_100850,4376_155 -4289_75979,261,4376_19153,Blackrock,105321686,0,4376_7778022_100850,4376_155 -4289_75979,262,4376_19154,Blackrock,105431686,0,4376_7778022_100850,4376_155 -4289_75979,263,4376_19155,Blackrock,105541686,0,4376_7778022_100850,4376_155 -4289_75979,264,4376_19156,Blackrock,105651686,0,4376_7778022_100850,4376_155 -4289_75979,265,4376_19157,Blackrock,105811686,0,4376_7778022_100850,4376_155 -4289_75979,266,4376_19158,Blackrock,105821686,0,4376_7778022_100850,4376_155 -4289_75979,267,4376_19159,Blackrock,106051686,0,4376_7778022_100850,4376_155 -4289_75962,265,4376_1916,Brides Glen Luas,105811889,1,4376_7778022_104030,4376_25 -4289_75979,268,4376_19160,Blackrock,106141686,0,4376_7778022_100850,4376_155 -4289_75979,269,4376_19161,Blackrock,106231686,0,4376_7778022_100850,4376_155 -4289_75979,259,4376_19162,Blackrock,105764508,0,4376_7778022_100740,4376_156 -4289_75979,270,4376_19163,Blackrock,105277288,0,4376_7778022_100541,4376_155 -4289_75979,146,4376_19164,Blackrock,105247288,0,4376_7778022_100541,4376_155 -4289_75979,271,4376_19165,Blackrock,105237288,0,4376_7778022_100541,4376_155 -4289_75979,115,4376_19166,Blackrock,105217288,0,4376_7778022_100541,4376_155 -4289_75979,260,4376_19167,Blackrock,105311720,0,4376_7778022_100871,4376_155 -4289_75979,261,4376_19168,Blackrock,105321720,0,4376_7778022_100871,4376_155 -4289_75979,262,4376_19169,Blackrock,105431720,0,4376_7778022_100871,4376_155 -4289_75962,266,4376_1917,Brides Glen Luas,105821889,1,4376_7778022_104030,4376_25 -4289_75979,263,4376_19170,Blackrock,105541720,0,4376_7778022_100871,4376_155 -4289_75979,264,4376_19171,Blackrock,105651720,0,4376_7778022_100871,4376_155 -4289_75979,265,4376_19172,Blackrock,105811720,0,4376_7778022_100871,4376_155 -4289_75979,266,4376_19173,Blackrock,105821720,0,4376_7778022_100871,4376_155 -4289_75979,267,4376_19174,Blackrock,106051720,0,4376_7778022_100871,4376_155 -4289_75979,268,4376_19175,Blackrock,106141720,0,4376_7778022_100871,4376_155 -4289_75979,269,4376_19176,Blackrock,106231720,0,4376_7778022_100871,4376_155 -4289_75979,259,4376_19177,Blackrock,105764542,0,4376_7778022_100770,4376_156 -4289_75979,270,4376_19178,Blackrock,105277318,0,4376_7778022_100560,4376_155 -4289_75979,146,4376_19179,Blackrock,105247318,0,4376_7778022_100560,4376_155 -4289_75962,267,4376_1918,Brides Glen Luas,106051889,1,4376_7778022_104030,4376_25 -4289_75979,271,4376_19180,Blackrock,105237318,0,4376_7778022_100560,4376_155 -4289_75979,115,4376_19181,Blackrock,105217318,0,4376_7778022_100560,4376_155 -4289_75979,260,4376_19182,Blackrock,105311740,0,4376_7778022_100930,4376_155 -4289_75979,261,4376_19183,Blackrock,105321740,0,4376_7778022_100930,4376_155 -4289_75979,262,4376_19184,Blackrock,105431740,0,4376_7778022_100930,4376_155 -4289_75979,263,4376_19185,Blackrock,105541740,0,4376_7778022_100930,4376_155 -4289_75979,264,4376_19186,Blackrock,105651740,0,4376_7778022_100930,4376_155 -4289_75979,265,4376_19187,Blackrock,105811740,0,4376_7778022_100930,4376_155 -4289_75979,266,4376_19188,Blackrock,105821740,0,4376_7778022_100930,4376_155 -4289_75979,267,4376_19189,Blackrock,106051740,0,4376_7778022_100930,4376_155 -4289_75962,268,4376_1919,Brides Glen Luas,106141889,1,4376_7778022_104030,4376_25 -4289_75979,268,4376_19190,Blackrock,106141740,0,4376_7778022_100930,4376_155 -4289_75979,269,4376_19191,Blackrock,106231740,0,4376_7778022_100930,4376_155 -4289_75979,259,4376_19192,Blackrock,105764558,0,4376_7778022_100731,4376_156 -4289_75979,260,4376_19193,Blackrock,105311772,0,4376_7778022_100890,4376_155 -4289_75979,261,4376_19194,Blackrock,105321772,0,4376_7778022_100890,4376_155 -4289_75979,262,4376_19195,Blackrock,105431772,0,4376_7778022_100890,4376_155 -4289_75979,263,4376_19196,Blackrock,105541772,0,4376_7778022_100890,4376_155 -4289_75979,264,4376_19197,Blackrock,105651772,0,4376_7778022_100890,4376_155 -4289_75979,265,4376_19198,Blackrock,105811772,0,4376_7778022_100890,4376_155 -4289_75979,266,4376_19199,Blackrock,105821772,0,4376_7778022_100890,4376_155 -4289_75960,265,4376_192,Sutton Station,105811812,0,4376_7778022_103108,4376_1 -4289_75962,269,4376_1920,Brides Glen Luas,106231889,1,4376_7778022_104030,4376_25 -4289_75979,267,4376_19200,Blackrock,106051772,0,4376_7778022_100890,4376_155 -4289_75979,268,4376_19201,Blackrock,106141772,0,4376_7778022_100890,4376_155 -4289_75979,269,4376_19202,Blackrock,106231772,0,4376_7778022_100890,4376_155 -4289_75979,259,4376_19203,Blackrock,105764588,0,4376_7778022_100660,4376_156 -4289_75979,270,4376_19204,Blackrock,105277348,0,4376_7778022_100531,4376_157 -4289_75979,146,4376_19205,Blackrock,105247348,0,4376_7778022_100531,4376_157 -4289_75979,271,4376_19206,Blackrock,105237348,0,4376_7778022_100531,4376_157 -4289_75979,115,4376_19207,Blackrock,105217348,0,4376_7778022_100531,4376_157 -4289_75979,260,4376_19208,Blackrock,105311796,0,4376_7778022_100860,4376_155 -4289_75979,261,4376_19209,Blackrock,105321796,0,4376_7778022_100860,4376_155 -4289_75962,259,4376_1921,Brides Glen Luas,105764719,1,4376_7778022_104023,4376_25 -4289_75979,262,4376_19210,Blackrock,105431796,0,4376_7778022_100860,4376_155 -4289_75979,263,4376_19211,Blackrock,105541796,0,4376_7778022_100860,4376_155 -4289_75979,264,4376_19212,Blackrock,105651796,0,4376_7778022_100860,4376_155 -4289_75979,265,4376_19213,Blackrock,105811796,0,4376_7778022_100860,4376_155 -4289_75979,266,4376_19214,Blackrock,105821796,0,4376_7778022_100860,4376_155 -4289_75979,267,4376_19215,Blackrock,106051796,0,4376_7778022_100860,4376_155 -4289_75979,268,4376_19216,Blackrock,106141796,0,4376_7778022_100860,4376_155 -4289_75979,269,4376_19217,Blackrock,106231796,0,4376_7778022_100860,4376_155 -4289_75979,259,4376_19218,Blackrock,105764608,0,4376_7778022_100681,4376_156 -4289_75979,270,4376_19219,Blackrock,105277380,0,4376_7778022_100581,4376_155 -4289_75962,270,4376_1922,Brides Glen Luas,105277473,1,4376_7778022_100150,4376_27 -4289_75979,146,4376_19220,Blackrock,105247380,0,4376_7778022_100581,4376_155 -4289_75979,271,4376_19221,Blackrock,105237380,0,4376_7778022_100581,4376_155 -4289_75979,115,4376_19222,Blackrock,105217380,0,4376_7778022_100581,4376_155 -4289_75979,260,4376_19223,Blackrock,105311830,0,4376_7778022_100800,4376_155 -4289_75979,261,4376_19224,Blackrock,105321830,0,4376_7778022_100800,4376_155 -4289_75979,262,4376_19225,Blackrock,105431830,0,4376_7778022_100800,4376_155 -4289_75979,263,4376_19226,Blackrock,105541830,0,4376_7778022_100800,4376_155 -4289_75979,264,4376_19227,Blackrock,105651830,0,4376_7778022_100800,4376_155 -4289_75979,265,4376_19228,Blackrock,105811830,0,4376_7778022_100800,4376_155 -4289_75979,266,4376_19229,Blackrock,105821830,0,4376_7778022_100800,4376_155 -4289_75962,146,4376_1923,Brides Glen Luas,105247473,1,4376_7778022_100150,4376_27 -4289_75979,267,4376_19230,Blackrock,106051830,0,4376_7778022_100800,4376_155 -4289_75979,268,4376_19231,Blackrock,106141830,0,4376_7778022_100800,4376_155 -4289_75979,269,4376_19232,Blackrock,106231830,0,4376_7778022_100800,4376_155 -4289_75979,259,4376_19233,Blackrock,105764644,0,4376_7778022_100750,4376_156 -4289_75979,270,4376_19234,Blackrock,105277408,0,4376_7778022_100551,4376_155 -4289_75979,146,4376_19235,Blackrock,105247408,0,4376_7778022_100551,4376_155 -4289_75979,271,4376_19236,Blackrock,105237408,0,4376_7778022_100551,4376_155 -4289_75979,115,4376_19237,Blackrock,105217408,0,4376_7778022_100551,4376_155 -4289_75979,260,4376_19238,Blackrock,105311850,0,4376_7778022_100901,4376_155 -4289_75979,261,4376_19239,Blackrock,105321850,0,4376_7778022_100901,4376_155 -4289_75962,271,4376_1924,Brides Glen Luas,105237473,1,4376_7778022_100150,4376_27 -4289_75979,262,4376_19240,Blackrock,105431850,0,4376_7778022_100901,4376_155 -4289_75979,263,4376_19241,Blackrock,105541850,0,4376_7778022_100901,4376_155 -4289_75979,264,4376_19242,Blackrock,105651850,0,4376_7778022_100901,4376_155 -4289_75979,265,4376_19243,Blackrock,105811850,0,4376_7778022_100901,4376_155 -4289_75979,266,4376_19244,Blackrock,105821850,0,4376_7778022_100901,4376_155 -4289_75979,267,4376_19245,Blackrock,106051850,0,4376_7778022_100901,4376_155 -4289_75979,268,4376_19246,Blackrock,106141850,0,4376_7778022_100901,4376_155 -4289_75979,269,4376_19247,Blackrock,106231850,0,4376_7778022_100901,4376_155 -4289_75979,259,4376_19248,Blackrock,105764660,0,4376_7778022_100701,4376_156 -4289_75979,260,4376_19249,Blackrock,105311884,0,4376_7778022_100910,4376_155 -4289_75962,115,4376_1925,Brides Glen Luas,105217473,1,4376_7778022_100150,4376_27 -4289_75979,261,4376_19250,Blackrock,105321884,0,4376_7778022_100910,4376_155 -4289_75979,262,4376_19251,Blackrock,105431884,0,4376_7778022_100910,4376_155 -4289_75979,263,4376_19252,Blackrock,105541884,0,4376_7778022_100910,4376_155 -4289_75979,264,4376_19253,Blackrock,105651884,0,4376_7778022_100910,4376_155 -4289_75979,265,4376_19254,Blackrock,105811884,0,4376_7778022_100910,4376_155 -4289_75979,266,4376_19255,Blackrock,105821884,0,4376_7778022_100910,4376_155 -4289_75979,267,4376_19256,Blackrock,106051884,0,4376_7778022_100910,4376_155 -4289_75979,268,4376_19257,Blackrock,106141884,0,4376_7778022_100910,4376_155 -4289_75979,269,4376_19258,Blackrock,106231884,0,4376_7778022_100910,4376_155 -4289_75979,259,4376_19259,Blackrock,105764692,0,4376_7778022_100760,4376_156 -4289_75962,260,4376_1926,Brides Glen Luas,105311997,1,4376_7778022_104071,4376_25 -4289_75979,270,4376_19260,Blackrock,105277442,0,4376_7778022_100570,4376_155 -4289_75979,146,4376_19261,Blackrock,105247442,0,4376_7778022_100570,4376_155 -4289_75979,271,4376_19262,Blackrock,105237442,0,4376_7778022_100570,4376_155 -4289_75979,115,4376_19263,Blackrock,105217442,0,4376_7778022_100570,4376_155 -4289_75979,260,4376_19264,Blackrock,105311904,0,4376_7778022_100920,4376_155 -4289_75979,261,4376_19265,Blackrock,105321904,0,4376_7778022_100920,4376_155 -4289_75979,262,4376_19266,Blackrock,105431904,0,4376_7778022_100920,4376_155 -4289_75979,263,4376_19267,Blackrock,105541904,0,4376_7778022_100920,4376_155 -4289_75979,264,4376_19268,Blackrock,105651904,0,4376_7778022_100920,4376_155 -4289_75979,265,4376_19269,Blackrock,105811904,0,4376_7778022_100920,4376_155 -4289_75962,261,4376_1927,Brides Glen Luas,105321997,1,4376_7778022_104071,4376_25 -4289_75979,266,4376_19270,Blackrock,105821904,0,4376_7778022_100920,4376_155 -4289_75979,267,4376_19271,Blackrock,106051904,0,4376_7778022_100920,4376_155 -4289_75979,268,4376_19272,Blackrock,106141904,0,4376_7778022_100920,4376_155 -4289_75979,269,4376_19273,Blackrock,106231904,0,4376_7778022_100920,4376_155 -4289_75979,259,4376_19274,Blackrock,105764710,0,4376_7778022_100721,4376_156 -4289_75979,270,4376_19275,Blackrock,105277470,0,4376_7778022_100520,4376_155 -4289_75979,146,4376_19276,Blackrock,105247470,0,4376_7778022_100520,4376_155 -4289_75979,271,4376_19277,Blackrock,105237470,0,4376_7778022_100520,4376_155 -4289_75979,115,4376_19278,Blackrock,105217470,0,4376_7778022_100520,4376_155 -4289_75979,260,4376_19279,Blackrock,105311938,0,4376_7778022_100821,4376_155 -4289_75962,262,4376_1928,Brides Glen Luas,105431997,1,4376_7778022_104071,4376_25 -4289_75979,261,4376_19280,Blackrock,105321938,0,4376_7778022_100821,4376_155 -4289_75979,262,4376_19281,Blackrock,105431938,0,4376_7778022_100821,4376_155 -4289_75979,263,4376_19282,Blackrock,105541938,0,4376_7778022_100821,4376_155 -4289_75979,264,4376_19283,Blackrock,105651938,0,4376_7778022_100821,4376_155 -4289_75979,265,4376_19284,Blackrock,105811938,0,4376_7778022_100821,4376_155 -4289_75979,266,4376_19285,Blackrock,105821938,0,4376_7778022_100821,4376_155 -4289_75979,267,4376_19286,Blackrock,106051938,0,4376_7778022_100821,4376_155 -4289_75979,268,4376_19287,Blackrock,106141938,0,4376_7778022_100821,4376_155 -4289_75979,269,4376_19288,Blackrock,106231938,0,4376_7778022_100821,4376_155 -4289_75979,259,4376_19289,Blackrock,105764748,0,4376_7778022_100671,4376_155 -4289_75962,263,4376_1929,Brides Glen Luas,105541997,1,4376_7778022_104071,4376_25 -4289_75979,270,4376_19290,Blackrock,105277500,0,4376_7778022_100590,4376_155 -4289_75979,146,4376_19291,Blackrock,105247500,0,4376_7778022_100590,4376_155 -4289_75979,271,4376_19292,Blackrock,105237500,0,4376_7778022_100590,4376_155 -4289_75979,115,4376_19293,Blackrock,105217500,0,4376_7778022_100590,4376_155 -4289_75979,260,4376_19294,Blackrock,105311960,0,4376_7778022_100831,4376_155 -4289_75979,261,4376_19295,Blackrock,105321960,0,4376_7778022_100831,4376_155 -4289_75979,262,4376_19296,Blackrock,105431960,0,4376_7778022_100831,4376_155 -4289_75979,263,4376_19297,Blackrock,105541960,0,4376_7778022_100831,4376_155 -4289_75979,264,4376_19298,Blackrock,105651960,0,4376_7778022_100831,4376_155 -4289_75979,265,4376_19299,Blackrock,105811960,0,4376_7778022_100831,4376_155 -4289_75960,266,4376_193,Sutton Station,105821812,0,4376_7778022_103108,4376_1 -4289_75962,264,4376_1930,Brides Glen Luas,105651997,1,4376_7778022_104071,4376_25 -4289_75979,266,4376_19300,Blackrock,105821960,0,4376_7778022_100831,4376_155 -4289_75979,267,4376_19301,Blackrock,106051960,0,4376_7778022_100831,4376_155 -4289_75979,268,4376_19302,Blackrock,106141960,0,4376_7778022_100831,4376_155 -4289_75979,269,4376_19303,Blackrock,106231960,0,4376_7778022_100831,4376_155 -4289_75979,259,4376_19304,Blackrock,105764762,0,4376_7778022_100690,4376_155 -4289_75979,260,4376_19305,Blackrock,105311992,0,4376_7778022_100810,4376_155 -4289_75979,261,4376_19306,Blackrock,105321992,0,4376_7778022_100810,4376_155 -4289_75979,262,4376_19307,Blackrock,105431992,0,4376_7778022_100810,4376_155 -4289_75979,263,4376_19308,Blackrock,105541992,0,4376_7778022_100810,4376_155 -4289_75979,264,4376_19309,Blackrock,105651992,0,4376_7778022_100810,4376_155 -4289_75962,265,4376_1931,Brides Glen Luas,105811997,1,4376_7778022_104071,4376_25 -4289_75979,265,4376_19310,Blackrock,105811992,0,4376_7778022_100810,4376_155 -4289_75979,266,4376_19311,Blackrock,105821992,0,4376_7778022_100810,4376_155 -4289_75979,267,4376_19312,Blackrock,106051992,0,4376_7778022_100810,4376_155 -4289_75979,268,4376_19313,Blackrock,106141992,0,4376_7778022_100810,4376_155 -4289_75979,269,4376_19314,Blackrock,106231992,0,4376_7778022_100810,4376_155 -4289_75979,259,4376_19315,Blackrock,105764794,0,4376_7778022_100711,4376_156 -4289_75979,270,4376_19316,Blackrock,105277530,0,4376_7778022_100541,4376_157 -4289_75979,146,4376_19317,Blackrock,105247530,0,4376_7778022_100541,4376_157 -4289_75979,271,4376_19318,Blackrock,105237530,0,4376_7778022_100541,4376_157 -4289_75979,115,4376_19319,Blackrock,105217530,0,4376_7778022_100541,4376_157 -4289_75962,266,4376_1932,Brides Glen Luas,105821997,1,4376_7778022_104071,4376_25 -4289_75979,260,4376_19320,Blackrock,105312014,0,4376_7778022_100882,4376_155 -4289_75979,261,4376_19321,Blackrock,105322014,0,4376_7778022_100882,4376_155 -4289_75979,262,4376_19322,Blackrock,105432014,0,4376_7778022_100882,4376_155 -4289_75979,263,4376_19323,Blackrock,105542014,0,4376_7778022_100882,4376_155 -4289_75979,264,4376_19324,Blackrock,105652014,0,4376_7778022_100882,4376_155 -4289_75979,265,4376_19325,Blackrock,105812014,0,4376_7778022_100882,4376_155 -4289_75979,266,4376_19326,Blackrock,105822014,0,4376_7778022_100882,4376_155 -4289_75979,267,4376_19327,Blackrock,106052014,0,4376_7778022_100882,4376_155 -4289_75979,268,4376_19328,Blackrock,106142014,0,4376_7778022_100882,4376_155 -4289_75979,269,4376_19329,Blackrock,106232014,0,4376_7778022_100882,4376_155 -4289_75962,267,4376_1933,Brides Glen Luas,106051997,1,4376_7778022_104071,4376_25 -4289_75979,259,4376_19330,Blackrock,105764812,0,4376_7778022_100740,4376_156 -4289_75979,270,4376_19331,Blackrock,105277562,0,4376_7778022_100560,4376_155 -4289_75979,146,4376_19332,Blackrock,105247562,0,4376_7778022_100560,4376_155 -4289_75979,271,4376_19333,Blackrock,105237562,0,4376_7778022_100560,4376_155 -4289_75979,115,4376_19334,Blackrock,105217562,0,4376_7778022_100560,4376_155 -4289_75979,260,4376_19335,Blackrock,105312048,0,4376_7778022_100850,4376_155 -4289_75979,261,4376_19336,Blackrock,105322048,0,4376_7778022_100850,4376_155 -4289_75979,262,4376_19337,Blackrock,105432048,0,4376_7778022_100850,4376_155 -4289_75979,263,4376_19338,Blackrock,105542048,0,4376_7778022_100850,4376_155 -4289_75979,264,4376_19339,Blackrock,105652048,0,4376_7778022_100850,4376_155 -4289_75962,268,4376_1934,Brides Glen Luas,106141997,1,4376_7778022_104071,4376_25 -4289_75979,265,4376_19340,Blackrock,105812048,0,4376_7778022_100850,4376_155 -4289_75979,266,4376_19341,Blackrock,105822048,0,4376_7778022_100850,4376_155 -4289_75979,267,4376_19342,Blackrock,106052048,0,4376_7778022_100850,4376_155 -4289_75979,268,4376_19343,Blackrock,106142048,0,4376_7778022_100850,4376_155 -4289_75979,269,4376_19344,Blackrock,106232048,0,4376_7778022_100850,4376_155 -4289_75979,259,4376_19345,Blackrock,105764848,0,4376_7778022_100770,4376_156 -4289_75979,270,4376_19346,Blackrock,105277590,0,4376_7778022_100531,4376_155 -4289_75979,146,4376_19347,Blackrock,105247590,0,4376_7778022_100531,4376_155 -4289_75979,271,4376_19348,Blackrock,105237590,0,4376_7778022_100531,4376_155 -4289_75979,115,4376_19349,Blackrock,105217590,0,4376_7778022_100531,4376_155 -4289_75962,269,4376_1935,Brides Glen Luas,106231997,1,4376_7778022_104071,4376_25 -4289_75979,260,4376_19350,Blackrock,105312084,0,4376_7778022_100871,4376_155 -4289_75979,261,4376_19351,Blackrock,105322084,0,4376_7778022_100871,4376_155 -4289_75979,262,4376_19352,Blackrock,105432084,0,4376_7778022_100871,4376_155 -4289_75979,263,4376_19353,Blackrock,105542084,0,4376_7778022_100871,4376_155 -4289_75979,264,4376_19354,Blackrock,105652084,0,4376_7778022_100871,4376_155 -4289_75979,265,4376_19355,Blackrock,105812084,0,4376_7778022_100871,4376_155 -4289_75979,266,4376_19356,Blackrock,105822084,0,4376_7778022_100871,4376_155 -4289_75979,267,4376_19357,Blackrock,106052084,0,4376_7778022_100871,4376_155 -4289_75979,268,4376_19358,Blackrock,106142084,0,4376_7778022_100871,4376_155 -4289_75979,269,4376_19359,Blackrock,106232084,0,4376_7778022_100871,4376_155 -4289_75962,259,4376_1936,Brides Glen Luas,105764819,1,4376_7778022_104042,4376_27 -4289_75979,259,4376_19360,Blackrock,105764864,0,4376_7778022_100731,4376_156 -4289_75979,260,4376_19361,Blackrock,105312118,0,4376_7778022_100930,4376_155 -4289_75979,261,4376_19362,Blackrock,105322118,0,4376_7778022_100930,4376_155 -4289_75979,262,4376_19363,Blackrock,105432118,0,4376_7778022_100930,4376_155 -4289_75979,263,4376_19364,Blackrock,105542118,0,4376_7778022_100930,4376_155 -4289_75979,264,4376_19365,Blackrock,105652118,0,4376_7778022_100930,4376_155 -4289_75979,265,4376_19366,Blackrock,105812118,0,4376_7778022_100930,4376_155 -4289_75979,266,4376_19367,Blackrock,105822118,0,4376_7778022_100930,4376_155 -4289_75979,267,4376_19368,Blackrock,106052118,0,4376_7778022_100930,4376_155 -4289_75979,268,4376_19369,Blackrock,106142118,0,4376_7778022_100930,4376_155 -4289_75962,270,4376_1937,Brides Glen Luas,105277561,1,4376_7778022_100140,4376_29 -4289_75979,269,4376_19370,Blackrock,106232118,0,4376_7778022_100930,4376_155 -4289_75979,259,4376_19371,Blackrock,105764900,0,4376_7778022_100660,4376_156 -4289_75979,270,4376_19372,Blackrock,105277620,0,4376_7778022_100581,4376_157 -4289_75979,146,4376_19373,Blackrock,105247620,0,4376_7778022_100581,4376_157 -4289_75979,271,4376_19374,Blackrock,105237620,0,4376_7778022_100581,4376_157 -4289_75979,115,4376_19375,Blackrock,105217620,0,4376_7778022_100581,4376_157 -4289_75979,260,4376_19376,Blackrock,105312152,0,4376_7778022_100890,4376_155 -4289_75979,261,4376_19377,Blackrock,105322152,0,4376_7778022_100890,4376_155 -4289_75979,262,4376_19378,Blackrock,105432152,0,4376_7778022_100890,4376_155 -4289_75979,263,4376_19379,Blackrock,105542152,0,4376_7778022_100890,4376_155 -4289_75962,146,4376_1938,Brides Glen Luas,105247561,1,4376_7778022_100140,4376_29 -4289_75979,264,4376_19380,Blackrock,105652152,0,4376_7778022_100890,4376_155 -4289_75979,265,4376_19381,Blackrock,105812152,0,4376_7778022_100890,4376_155 -4289_75979,266,4376_19382,Blackrock,105822152,0,4376_7778022_100890,4376_155 -4289_75979,267,4376_19383,Blackrock,106052152,0,4376_7778022_100890,4376_155 -4289_75979,268,4376_19384,Blackrock,106142152,0,4376_7778022_100890,4376_155 -4289_75979,269,4376_19385,Blackrock,106232152,0,4376_7778022_100890,4376_155 -4289_75979,259,4376_19386,Blackrock,105764918,0,4376_7778022_100681,4376_156 -4289_75979,270,4376_19387,Blackrock,105277648,0,4376_7778022_100551,4376_155 -4289_75979,146,4376_19388,Blackrock,105247648,0,4376_7778022_100551,4376_155 -4289_75979,271,4376_19389,Blackrock,105237648,0,4376_7778022_100551,4376_155 -4289_75962,271,4376_1939,Brides Glen Luas,105237561,1,4376_7778022_100140,4376_29 -4289_75979,115,4376_19390,Blackrock,105217648,0,4376_7778022_100551,4376_155 -4289_75979,260,4376_19391,Blackrock,105312184,0,4376_7778022_100860,4376_155 -4289_75979,261,4376_19392,Blackrock,105322184,0,4376_7778022_100860,4376_155 -4289_75979,262,4376_19393,Blackrock,105432184,0,4376_7778022_100860,4376_155 -4289_75979,263,4376_19394,Blackrock,105542184,0,4376_7778022_100860,4376_155 -4289_75979,264,4376_19395,Blackrock,105652184,0,4376_7778022_100860,4376_155 -4289_75979,265,4376_19396,Blackrock,105812184,0,4376_7778022_100860,4376_155 -4289_75979,266,4376_19397,Blackrock,105822184,0,4376_7778022_100860,4376_155 -4289_75979,267,4376_19398,Blackrock,106052184,0,4376_7778022_100860,4376_155 -4289_75979,268,4376_19399,Blackrock,106142184,0,4376_7778022_100860,4376_155 -4289_75960,267,4376_194,Sutton Station,106051812,0,4376_7778022_103108,4376_1 -4289_75962,115,4376_1940,Brides Glen Luas,105217561,1,4376_7778022_100140,4376_29 -4289_75979,269,4376_19400,Blackrock,106232184,0,4376_7778022_100860,4376_155 -4289_75979,259,4376_19401,Blackrock,105764950,0,4376_7778022_100750,4376_156 -4289_75979,270,4376_19402,Blackrock,105277680,0,4376_7778022_100570,4376_155 -4289_75979,146,4376_19403,Blackrock,105247680,0,4376_7778022_100570,4376_155 -4289_75979,271,4376_19404,Blackrock,105237680,0,4376_7778022_100570,4376_155 -4289_75979,115,4376_19405,Blackrock,105217680,0,4376_7778022_100570,4376_155 -4289_75979,260,4376_19406,Blackrock,105312208,0,4376_7778022_100800,4376_155 -4289_75979,261,4376_19407,Blackrock,105322208,0,4376_7778022_100800,4376_155 -4289_75979,262,4376_19408,Blackrock,105432208,0,4376_7778022_100800,4376_155 -4289_75979,263,4376_19409,Blackrock,105542208,0,4376_7778022_100800,4376_155 -4289_75962,260,4376_1941,Brides Glen Luas,105312115,1,4376_7778022_104030,4376_25 -4289_75979,264,4376_19410,Blackrock,105652208,0,4376_7778022_100800,4376_155 -4289_75979,265,4376_19411,Blackrock,105812208,0,4376_7778022_100800,4376_155 -4289_75979,266,4376_19412,Blackrock,105822208,0,4376_7778022_100800,4376_155 -4289_75979,267,4376_19413,Blackrock,106052208,0,4376_7778022_100800,4376_155 -4289_75979,268,4376_19414,Blackrock,106142208,0,4376_7778022_100800,4376_155 -4289_75979,269,4376_19415,Blackrock,106232208,0,4376_7778022_100800,4376_155 -4289_75979,259,4376_19416,Blackrock,105764970,0,4376_7778022_100701,4376_156 -4289_75979,260,4376_19417,Blackrock,105312246,0,4376_7778022_100901,4376_155 -4289_75979,261,4376_19418,Blackrock,105322246,0,4376_7778022_100901,4376_155 -4289_75979,262,4376_19419,Blackrock,105432246,0,4376_7778022_100901,4376_155 -4289_75962,261,4376_1942,Brides Glen Luas,105322115,1,4376_7778022_104030,4376_25 -4289_75979,263,4376_19420,Blackrock,105542246,0,4376_7778022_100901,4376_155 -4289_75979,264,4376_19421,Blackrock,105652246,0,4376_7778022_100901,4376_155 -4289_75979,265,4376_19422,Blackrock,105812246,0,4376_7778022_100901,4376_155 -4289_75979,266,4376_19423,Blackrock,105822246,0,4376_7778022_100901,4376_155 -4289_75979,267,4376_19424,Blackrock,106052246,0,4376_7778022_100901,4376_155 -4289_75979,268,4376_19425,Blackrock,106142246,0,4376_7778022_100901,4376_155 -4289_75979,269,4376_19426,Blackrock,106232246,0,4376_7778022_100901,4376_155 -4289_75979,259,4376_19427,Blackrock,105764998,0,4376_7778022_100760,4376_156 -4289_75979,270,4376_19428,Blackrock,105277708,0,4376_7778022_100520,4376_157 -4289_75979,146,4376_19429,Blackrock,105247708,0,4376_7778022_100520,4376_157 -4289_75962,262,4376_1943,Brides Glen Luas,105432115,1,4376_7778022_104030,4376_25 -4289_75979,271,4376_19430,Blackrock,105237708,0,4376_7778022_100520,4376_157 -4289_75979,115,4376_19431,Blackrock,105217708,0,4376_7778022_100520,4376_157 -4289_75979,260,4376_19432,Blackrock,105312278,0,4376_7778022_100910,4376_155 -4289_75979,261,4376_19433,Blackrock,105322278,0,4376_7778022_100910,4376_155 -4289_75979,262,4376_19434,Blackrock,105432278,0,4376_7778022_100910,4376_155 -4289_75979,263,4376_19435,Blackrock,105542278,0,4376_7778022_100910,4376_155 -4289_75979,264,4376_19436,Blackrock,105652278,0,4376_7778022_100910,4376_155 -4289_75979,265,4376_19437,Blackrock,105812278,0,4376_7778022_100910,4376_155 -4289_75979,266,4376_19438,Blackrock,105822278,0,4376_7778022_100910,4376_155 -4289_75979,267,4376_19439,Blackrock,106052278,0,4376_7778022_100910,4376_155 -4289_75962,263,4376_1944,Brides Glen Luas,105542115,1,4376_7778022_104030,4376_25 -4289_75979,268,4376_19440,Blackrock,106142278,0,4376_7778022_100910,4376_155 -4289_75979,269,4376_19441,Blackrock,106232278,0,4376_7778022_100910,4376_155 -4289_75979,259,4376_19442,Blackrock,105765020,0,4376_7778022_100721,4376_156 -4289_75979,270,4376_19443,Blackrock,105277738,0,4376_7778022_100590,4376_155 -4289_75979,146,4376_19444,Blackrock,105247738,0,4376_7778022_100590,4376_155 -4289_75979,271,4376_19445,Blackrock,105237738,0,4376_7778022_100590,4376_155 -4289_75979,115,4376_19446,Blackrock,105217738,0,4376_7778022_100590,4376_155 -4289_75979,260,4376_19447,Blackrock,105312312,0,4376_7778022_100920,4376_155 -4289_75979,261,4376_19448,Blackrock,105322312,0,4376_7778022_100920,4376_155 -4289_75979,262,4376_19449,Blackrock,105432312,0,4376_7778022_100920,4376_155 -4289_75962,264,4376_1945,Brides Glen Luas,105652115,1,4376_7778022_104030,4376_25 -4289_75979,263,4376_19450,Blackrock,105542312,0,4376_7778022_100920,4376_155 -4289_75979,264,4376_19451,Blackrock,105652312,0,4376_7778022_100920,4376_155 -4289_75979,265,4376_19452,Blackrock,105812312,0,4376_7778022_100920,4376_155 -4289_75979,266,4376_19453,Blackrock,105822312,0,4376_7778022_100920,4376_155 -4289_75979,267,4376_19454,Blackrock,106052312,0,4376_7778022_100920,4376_155 -4289_75979,268,4376_19455,Blackrock,106142312,0,4376_7778022_100920,4376_155 -4289_75979,269,4376_19456,Blackrock,106232312,0,4376_7778022_100920,4376_155 -4289_75979,259,4376_19457,Blackrock,105765054,0,4376_7778022_100671,4376_156 -4289_75979,270,4376_19458,Blackrock,105277772,0,4376_7778022_100541,4376_155 -4289_75979,146,4376_19459,Blackrock,105247772,0,4376_7778022_100541,4376_155 -4289_75962,265,4376_1946,Brides Glen Luas,105812115,1,4376_7778022_104030,4376_25 -4289_75979,271,4376_19460,Blackrock,105237772,0,4376_7778022_100541,4376_155 -4289_75979,115,4376_19461,Blackrock,105217772,0,4376_7778022_100541,4376_155 -4289_75979,260,4376_19462,Blackrock,105312338,0,4376_7778022_100821,4376_155 -4289_75979,261,4376_19463,Blackrock,105322338,0,4376_7778022_100821,4376_155 -4289_75979,262,4376_19464,Blackrock,105432338,0,4376_7778022_100821,4376_155 -4289_75979,263,4376_19465,Blackrock,105542338,0,4376_7778022_100821,4376_155 -4289_75979,264,4376_19466,Blackrock,105652338,0,4376_7778022_100821,4376_155 -4289_75979,265,4376_19467,Blackrock,105812338,0,4376_7778022_100821,4376_155 -4289_75979,266,4376_19468,Blackrock,105822338,0,4376_7778022_100821,4376_155 -4289_75979,267,4376_19469,Blackrock,106052338,0,4376_7778022_100821,4376_155 -4289_75962,266,4376_1947,Brides Glen Luas,105822115,1,4376_7778022_104030,4376_25 -4289_75979,268,4376_19470,Blackrock,106142338,0,4376_7778022_100821,4376_155 -4289_75979,269,4376_19471,Blackrock,106232338,0,4376_7778022_100821,4376_155 -4289_75979,259,4376_19472,Blackrock,105765072,0,4376_7778022_100690,4376_156 -4289_75979,260,4376_19473,Blackrock,105312364,0,4376_7778022_100831,4376_155 -4289_75979,261,4376_19474,Blackrock,105322364,0,4376_7778022_100831,4376_155 -4289_75979,262,4376_19475,Blackrock,105432364,0,4376_7778022_100831,4376_155 -4289_75979,263,4376_19476,Blackrock,105542364,0,4376_7778022_100831,4376_155 -4289_75979,264,4376_19477,Blackrock,105652364,0,4376_7778022_100831,4376_155 -4289_75979,265,4376_19478,Blackrock,105812364,0,4376_7778022_100831,4376_155 -4289_75979,266,4376_19479,Blackrock,105822364,0,4376_7778022_100831,4376_155 -4289_75962,267,4376_1948,Brides Glen Luas,106052115,1,4376_7778022_104030,4376_25 -4289_75979,267,4376_19480,Blackrock,106052364,0,4376_7778022_100831,4376_155 -4289_75979,268,4376_19481,Blackrock,106142364,0,4376_7778022_100831,4376_155 -4289_75979,269,4376_19482,Blackrock,106232364,0,4376_7778022_100831,4376_155 -4289_75979,259,4376_19483,Blackrock,105765096,0,4376_7778022_100711,4376_156 -4289_75979,270,4376_19484,Blackrock,105277796,0,4376_7778022_100560,4376_157 -4289_75979,146,4376_19485,Blackrock,105247796,0,4376_7778022_100560,4376_157 -4289_75979,271,4376_19486,Blackrock,105237796,0,4376_7778022_100560,4376_157 -4289_75979,115,4376_19487,Blackrock,105217796,0,4376_7778022_100560,4376_157 -4289_75979,260,4376_19488,Blackrock,105312396,0,4376_7778022_100810,4376_155 -4289_75979,261,4376_19489,Blackrock,105322396,0,4376_7778022_100810,4376_155 -4289_75962,268,4376_1949,Brides Glen Luas,106142115,1,4376_7778022_104030,4376_25 -4289_75979,262,4376_19490,Blackrock,105432396,0,4376_7778022_100810,4376_155 -4289_75979,263,4376_19491,Blackrock,105542396,0,4376_7778022_100810,4376_155 -4289_75979,264,4376_19492,Blackrock,105652396,0,4376_7778022_100810,4376_155 -4289_75979,265,4376_19493,Blackrock,105812396,0,4376_7778022_100810,4376_155 -4289_75979,266,4376_19494,Blackrock,105822396,0,4376_7778022_100810,4376_155 -4289_75979,267,4376_19495,Blackrock,106052396,0,4376_7778022_100810,4376_155 -4289_75979,268,4376_19496,Blackrock,106142396,0,4376_7778022_100810,4376_155 -4289_75979,269,4376_19497,Blackrock,106232396,0,4376_7778022_100810,4376_155 -4289_75979,259,4376_19498,Blackrock,105765120,0,4376_7778022_100740,4376_156 -4289_75979,270,4376_19499,Blackrock,105277828,0,4376_7778022_100531,4376_155 -4289_75960,268,4376_195,Sutton Station,106141812,0,4376_7778022_103108,4376_1 -4289_75962,269,4376_1950,Brides Glen Luas,106232115,1,4376_7778022_104030,4376_25 -4289_75979,146,4376_19500,Blackrock,105247828,0,4376_7778022_100531,4376_155 -4289_75979,271,4376_19501,Blackrock,105237828,0,4376_7778022_100531,4376_155 -4289_75979,115,4376_19502,Blackrock,105217828,0,4376_7778022_100531,4376_155 -4289_75979,260,4376_19503,Blackrock,105312426,0,4376_7778022_100882,4376_155 -4289_75979,261,4376_19504,Blackrock,105322426,0,4376_7778022_100882,4376_155 -4289_75979,262,4376_19505,Blackrock,105432426,0,4376_7778022_100882,4376_155 -4289_75979,263,4376_19506,Blackrock,105542426,0,4376_7778022_100882,4376_155 -4289_75979,264,4376_19507,Blackrock,105652426,0,4376_7778022_100882,4376_155 -4289_75979,265,4376_19508,Blackrock,105812426,0,4376_7778022_100882,4376_155 -4289_75979,266,4376_19509,Blackrock,105822426,0,4376_7778022_100882,4376_155 -4289_75962,259,4376_1951,Brides Glen Luas,105764923,1,4376_7778022_104201,4376_27 -4289_75979,267,4376_19510,Blackrock,106052426,0,4376_7778022_100882,4376_155 -4289_75979,268,4376_19511,Blackrock,106142426,0,4376_7778022_100882,4376_155 -4289_75979,269,4376_19512,Blackrock,106232426,0,4376_7778022_100882,4376_155 -4289_75979,259,4376_19513,Blackrock,105765152,0,4376_7778022_100770,4376_156 -4289_75979,270,4376_19514,Blackrock,105277860,0,4376_7778022_100581,4376_155 -4289_75979,146,4376_19515,Blackrock,105247860,0,4376_7778022_100581,4376_155 -4289_75979,271,4376_19516,Blackrock,105237860,0,4376_7778022_100581,4376_155 -4289_75979,115,4376_19517,Blackrock,105217860,0,4376_7778022_100581,4376_155 -4289_75979,260,4376_19518,Blackrock,105312450,0,4376_7778022_100850,4376_155 -4289_75979,261,4376_19519,Blackrock,105322450,0,4376_7778022_100850,4376_155 -4289_75962,270,4376_1952,Brides Glen Luas,105277653,1,4376_7778022_100150,4376_29 -4289_75979,262,4376_19520,Blackrock,105432450,0,4376_7778022_100850,4376_155 -4289_75979,263,4376_19521,Blackrock,105542450,0,4376_7778022_100850,4376_155 -4289_75979,264,4376_19522,Blackrock,105652450,0,4376_7778022_100850,4376_155 -4289_75979,265,4376_19523,Blackrock,105812450,0,4376_7778022_100850,4376_155 -4289_75979,266,4376_19524,Blackrock,105822450,0,4376_7778022_100850,4376_155 -4289_75979,267,4376_19525,Blackrock,106052450,0,4376_7778022_100850,4376_155 -4289_75979,268,4376_19526,Blackrock,106142450,0,4376_7778022_100850,4376_155 -4289_75979,269,4376_19527,Blackrock,106232450,0,4376_7778022_100850,4376_155 -4289_75979,259,4376_19528,Blackrock,105765172,0,4376_7778022_100731,4376_156 -4289_75979,260,4376_19529,Blackrock,105312480,0,4376_7778022_100871,4376_155 -4289_75962,146,4376_1953,Brides Glen Luas,105247653,1,4376_7778022_100150,4376_29 -4289_75979,261,4376_19530,Blackrock,105322480,0,4376_7778022_100871,4376_155 -4289_75979,262,4376_19531,Blackrock,105432480,0,4376_7778022_100871,4376_155 -4289_75979,263,4376_19532,Blackrock,105542480,0,4376_7778022_100871,4376_155 -4289_75979,264,4376_19533,Blackrock,105652480,0,4376_7778022_100871,4376_155 -4289_75979,265,4376_19534,Blackrock,105812480,0,4376_7778022_100871,4376_155 -4289_75979,266,4376_19535,Blackrock,105822480,0,4376_7778022_100871,4376_155 -4289_75979,267,4376_19536,Blackrock,106052480,0,4376_7778022_100871,4376_155 -4289_75979,268,4376_19537,Blackrock,106142480,0,4376_7778022_100871,4376_155 -4289_75979,269,4376_19538,Blackrock,106232480,0,4376_7778022_100871,4376_155 -4289_75979,259,4376_19539,Blackrock,105765198,0,4376_7778022_100660,4376_156 -4289_75962,271,4376_1954,Brides Glen Luas,105237653,1,4376_7778022_100150,4376_29 -4289_75979,270,4376_19540,Blackrock,105277884,0,4376_7778022_100551,4376_157 -4289_75979,146,4376_19541,Blackrock,105247884,0,4376_7778022_100551,4376_157 -4289_75979,271,4376_19542,Blackrock,105237884,0,4376_7778022_100551,4376_157 -4289_75979,115,4376_19543,Blackrock,105217884,0,4376_7778022_100551,4376_157 -4289_75979,260,4376_19544,Blackrock,105312508,0,4376_7778022_100842,4376_155 -4289_75979,261,4376_19545,Blackrock,105322508,0,4376_7778022_100842,4376_155 -4289_75979,262,4376_19546,Blackrock,105432508,0,4376_7778022_100842,4376_155 -4289_75979,263,4376_19547,Blackrock,105542508,0,4376_7778022_100842,4376_155 -4289_75979,264,4376_19548,Blackrock,105652508,0,4376_7778022_100842,4376_155 -4289_75979,265,4376_19549,Blackrock,105812508,0,4376_7778022_100842,4376_155 -4289_75962,115,4376_1955,Brides Glen Luas,105217653,1,4376_7778022_100150,4376_29 -4289_75979,266,4376_19550,Blackrock,105822508,0,4376_7778022_100842,4376_155 -4289_75979,267,4376_19551,Blackrock,106052508,0,4376_7778022_100842,4376_155 -4289_75979,268,4376_19552,Blackrock,106142508,0,4376_7778022_100842,4376_155 -4289_75979,269,4376_19553,Blackrock,106232508,0,4376_7778022_100842,4376_155 -4289_75979,259,4376_19554,Blackrock,105765228,0,4376_7778022_100681,4376_156 -4289_75979,270,4376_19555,Blackrock,105277920,0,4376_7778022_100570,4376_155 -4289_75979,146,4376_19556,Blackrock,105247920,0,4376_7778022_100570,4376_155 -4289_75979,271,4376_19557,Blackrock,105237920,0,4376_7778022_100570,4376_155 -4289_75979,115,4376_19558,Blackrock,105217920,0,4376_7778022_100570,4376_155 -4289_75979,260,4376_19559,Blackrock,105312538,0,4376_7778022_100930,4376_155 -4289_75962,260,4376_1956,Brides Glen Luas,105312275,1,4376_7778022_100172,4376_25 -4289_75979,261,4376_19560,Blackrock,105322538,0,4376_7778022_100930,4376_155 -4289_75979,262,4376_19561,Blackrock,105432538,0,4376_7778022_100930,4376_155 -4289_75979,263,4376_19562,Blackrock,105542538,0,4376_7778022_100930,4376_155 -4289_75979,264,4376_19563,Blackrock,105652538,0,4376_7778022_100930,4376_155 -4289_75979,265,4376_19564,Blackrock,105812538,0,4376_7778022_100930,4376_155 -4289_75979,266,4376_19565,Blackrock,105822538,0,4376_7778022_100930,4376_155 -4289_75979,267,4376_19566,Blackrock,106052538,0,4376_7778022_100930,4376_155 -4289_75979,268,4376_19567,Blackrock,106142538,0,4376_7778022_100930,4376_155 -4289_75979,269,4376_19568,Blackrock,106232538,0,4376_7778022_100930,4376_155 -4289_75979,259,4376_19569,Blackrock,105765252,0,4376_7778022_100750,4376_156 -4289_75962,261,4376_1957,Brides Glen Luas,105322275,1,4376_7778022_100172,4376_25 -4289_75979,270,4376_19570,Blackrock,105277948,0,4376_7778022_100520,4376_155 -4289_75979,146,4376_19571,Blackrock,105247948,0,4376_7778022_100520,4376_155 -4289_75979,271,4376_19572,Blackrock,105237948,0,4376_7778022_100520,4376_155 -4289_75979,115,4376_19573,Blackrock,105217948,0,4376_7778022_100520,4376_155 -4289_75979,260,4376_19574,Blackrock,105312560,0,4376_7778022_100890,4376_155 -4289_75979,261,4376_19575,Blackrock,105322560,0,4376_7778022_100890,4376_155 -4289_75979,262,4376_19576,Blackrock,105432560,0,4376_7778022_100890,4376_155 -4289_75979,263,4376_19577,Blackrock,105542560,0,4376_7778022_100890,4376_155 -4289_75979,264,4376_19578,Blackrock,105652560,0,4376_7778022_100890,4376_155 -4289_75979,265,4376_19579,Blackrock,105812560,0,4376_7778022_100890,4376_155 -4289_75962,262,4376_1958,Brides Glen Luas,105432275,1,4376_7778022_100172,4376_25 -4289_75979,266,4376_19580,Blackrock,105822560,0,4376_7778022_100890,4376_155 -4289_75979,267,4376_19581,Blackrock,106052560,0,4376_7778022_100890,4376_155 -4289_75979,268,4376_19582,Blackrock,106142560,0,4376_7778022_100890,4376_155 -4289_75979,269,4376_19583,Blackrock,106232560,0,4376_7778022_100890,4376_155 -4289_75979,259,4376_19584,Blackrock,105765272,0,4376_7778022_100760,4376_156 -4289_75979,260,4376_19585,Blackrock,105312586,0,4376_7778022_100860,4376_155 -4289_75979,261,4376_19586,Blackrock,105322586,0,4376_7778022_100860,4376_155 -4289_75979,262,4376_19587,Blackrock,105432586,0,4376_7778022_100860,4376_155 -4289_75979,263,4376_19588,Blackrock,105542586,0,4376_7778022_100860,4376_155 -4289_75979,264,4376_19589,Blackrock,105652586,0,4376_7778022_100860,4376_155 -4289_75962,263,4376_1959,Brides Glen Luas,105542275,1,4376_7778022_100172,4376_25 -4289_75979,265,4376_19590,Blackrock,105812586,0,4376_7778022_100860,4376_155 -4289_75979,266,4376_19591,Blackrock,105822586,0,4376_7778022_100860,4376_155 -4289_75979,267,4376_19592,Blackrock,106052586,0,4376_7778022_100860,4376_155 -4289_75979,268,4376_19593,Blackrock,106142586,0,4376_7778022_100860,4376_155 -4289_75979,269,4376_19594,Blackrock,106232586,0,4376_7778022_100860,4376_155 -4289_75979,259,4376_19595,Blackrock,105765300,0,4376_7778022_100702,4376_156 -4289_75979,270,4376_19596,Blackrock,105277972,0,4376_7778022_100590,4376_157 -4289_75979,146,4376_19597,Blackrock,105247972,0,4376_7778022_100590,4376_157 -4289_75979,271,4376_19598,Blackrock,105237972,0,4376_7778022_100590,4376_157 -4289_75979,115,4376_19599,Blackrock,105217972,0,4376_7778022_100590,4376_157 -4289_75960,269,4376_196,Sutton Station,106231812,0,4376_7778022_103108,4376_1 -4289_75962,264,4376_1960,Brides Glen Luas,105652275,1,4376_7778022_100172,4376_25 -4289_75979,260,4376_19600,Blackrock,105312614,0,4376_7778022_100800,4376_155 -4289_75979,261,4376_19601,Blackrock,105322614,0,4376_7778022_100800,4376_155 -4289_75979,262,4376_19602,Blackrock,105432614,0,4376_7778022_100800,4376_155 -4289_75979,263,4376_19603,Blackrock,105542614,0,4376_7778022_100800,4376_155 -4289_75979,264,4376_19604,Blackrock,105652614,0,4376_7778022_100800,4376_155 -4289_75979,265,4376_19605,Blackrock,105812614,0,4376_7778022_100800,4376_155 -4289_75979,266,4376_19606,Blackrock,105822614,0,4376_7778022_100800,4376_155 -4289_75979,267,4376_19607,Blackrock,106052614,0,4376_7778022_100800,4376_155 -4289_75979,268,4376_19608,Blackrock,106142614,0,4376_7778022_100800,4376_155 -4289_75979,269,4376_19609,Blackrock,106232614,0,4376_7778022_100800,4376_155 -4289_75962,265,4376_1961,Brides Glen Luas,105812275,1,4376_7778022_100172,4376_25 -4289_75979,259,4376_19610,Blackrock,105765330,0,4376_7778022_100690,4376_155 -4289_75979,260,4376_19611,Blackrock,105312644,0,4376_7778022_100910,4376_155 -4289_75979,261,4376_19612,Blackrock,105322644,0,4376_7778022_100910,4376_155 -4289_75979,262,4376_19613,Blackrock,105432644,0,4376_7778022_100910,4376_155 -4289_75979,263,4376_19614,Blackrock,105542644,0,4376_7778022_100910,4376_155 -4289_75979,264,4376_19615,Blackrock,105652644,0,4376_7778022_100910,4376_155 -4289_75979,265,4376_19616,Blackrock,105812644,0,4376_7778022_100910,4376_155 -4289_75979,266,4376_19617,Blackrock,105822644,0,4376_7778022_100910,4376_155 -4289_75979,267,4376_19618,Blackrock,106052644,0,4376_7778022_100910,4376_155 -4289_75979,268,4376_19619,Blackrock,106142644,0,4376_7778022_100910,4376_155 -4289_75962,266,4376_1962,Brides Glen Luas,105822275,1,4376_7778022_100172,4376_25 -4289_75979,269,4376_19620,Blackrock,106232644,0,4376_7778022_100910,4376_155 -4289_75979,270,4376_19621,Blackrock,105278022,0,4376_7778022_100560,4376_156 -4289_75979,146,4376_19622,Blackrock,105248022,0,4376_7778022_100560,4376_156 -4289_75979,271,4376_19623,Blackrock,105238022,0,4376_7778022_100560,4376_156 -4289_75979,115,4376_19624,Blackrock,105218022,0,4376_7778022_100560,4376_156 -4289_75979,259,4376_19625,Blackrock,105765358,0,4376_7778022_100740,4376_155 -4289_75979,260,4376_19626,Blackrock,105312660,0,4376_7778022_100920,4376_155 -4289_75979,261,4376_19627,Blackrock,105322660,0,4376_7778022_100920,4376_155 -4289_75979,262,4376_19628,Blackrock,105432660,0,4376_7778022_100920,4376_155 -4289_75979,263,4376_19629,Blackrock,105542660,0,4376_7778022_100920,4376_155 -4289_75962,267,4376_1963,Brides Glen Luas,106052275,1,4376_7778022_100172,4376_25 -4289_75979,264,4376_19630,Blackrock,105652660,0,4376_7778022_100920,4376_155 -4289_75979,265,4376_19631,Blackrock,105812660,0,4376_7778022_100920,4376_155 -4289_75979,266,4376_19632,Blackrock,105822660,0,4376_7778022_100920,4376_155 -4289_75979,267,4376_19633,Blackrock,106052660,0,4376_7778022_100920,4376_155 -4289_75979,268,4376_19634,Blackrock,106142660,0,4376_7778022_100920,4376_155 -4289_75979,269,4376_19635,Blackrock,106232660,0,4376_7778022_100920,4376_155 -4289_75979,260,4376_19636,Blackrock,105312686,0,4376_7778022_100902,4376_155 -4289_75979,261,4376_19637,Blackrock,105322686,0,4376_7778022_100902,4376_155 -4289_75979,262,4376_19638,Blackrock,105432686,0,4376_7778022_100902,4376_155 -4289_75979,263,4376_19639,Blackrock,105542686,0,4376_7778022_100902,4376_155 -4289_75962,268,4376_1964,Brides Glen Luas,106142275,1,4376_7778022_100172,4376_25 -4289_75979,264,4376_19640,Blackrock,105652686,0,4376_7778022_100902,4376_155 -4289_75979,265,4376_19641,Blackrock,105812686,0,4376_7778022_100902,4376_155 -4289_75979,266,4376_19642,Blackrock,105822686,0,4376_7778022_100902,4376_155 -4289_75979,267,4376_19643,Blackrock,106052686,0,4376_7778022_100902,4376_155 -4289_75979,268,4376_19644,Blackrock,106142686,0,4376_7778022_100902,4376_155 -4289_75979,269,4376_19645,Blackrock,106232686,0,4376_7778022_100902,4376_155 -4289_75979,259,4376_19646,Blackrock,105765388,0,4376_7778022_100712,4376_156 -4289_75979,270,4376_19647,Blackrock,105278052,0,4376_7778022_100542,4376_157 -4289_75979,146,4376_19648,Blackrock,105248052,0,4376_7778022_100542,4376_157 -4289_75979,271,4376_19649,Blackrock,105238052,0,4376_7778022_100542,4376_157 -4289_75962,269,4376_1965,Brides Glen Luas,106232275,1,4376_7778022_100172,4376_25 -4289_75979,115,4376_19650,Blackrock,105218052,0,4376_7778022_100542,4376_157 -4289_75979,260,4376_19651,Blackrock,105312712,0,4376_7778022_100883,4376_155 -4289_75979,261,4376_19652,Blackrock,105322712,0,4376_7778022_100883,4376_155 -4289_75979,262,4376_19653,Blackrock,105432712,0,4376_7778022_100883,4376_155 -4289_75979,263,4376_19654,Blackrock,105542712,0,4376_7778022_100883,4376_155 -4289_75979,264,4376_19655,Blackrock,105652712,0,4376_7778022_100883,4376_155 -4289_75979,265,4376_19656,Blackrock,105812712,0,4376_7778022_100883,4376_155 -4289_75979,266,4376_19657,Blackrock,105822712,0,4376_7778022_100883,4376_155 -4289_75979,267,4376_19658,Blackrock,106052712,0,4376_7778022_100883,4376_155 -4289_75979,268,4376_19659,Blackrock,106142712,0,4376_7778022_100883,4376_155 -4289_75962,259,4376_1966,Brides Glen Luas,105765025,1,4376_7778022_104032,4376_27 -4289_75979,269,4376_19660,Blackrock,106232712,0,4376_7778022_100883,4376_155 -4289_75979,259,4376_19661,Blackrock,105765418,0,4376_7778022_100672,4376_155 -4289_75979,260,4376_19662,Blackrock,105312740,0,4376_7778022_100822,4376_155 -4289_75979,261,4376_19663,Blackrock,105322740,0,4376_7778022_100822,4376_155 -4289_75979,262,4376_19664,Blackrock,105432740,0,4376_7778022_100822,4376_155 -4289_75979,263,4376_19665,Blackrock,105542740,0,4376_7778022_100822,4376_155 -4289_75979,264,4376_19666,Blackrock,105652740,0,4376_7778022_100822,4376_155 -4289_75979,265,4376_19667,Blackrock,105812740,0,4376_7778022_100822,4376_155 -4289_75979,266,4376_19668,Blackrock,105822740,0,4376_7778022_100822,4376_155 -4289_75979,267,4376_19669,Blackrock,106052740,0,4376_7778022_100822,4376_155 -4289_75962,270,4376_1967,Brides Glen Luas,105277743,1,4376_7778022_100140,4376_29 -4289_75979,268,4376_19670,Blackrock,106142740,0,4376_7778022_100822,4376_155 -4289_75979,269,4376_19671,Blackrock,106232740,0,4376_7778022_100822,4376_155 -4289_75979,270,4376_19672,Blackrock,105278098,0,4376_7778022_100552,4376_156 -4289_75979,146,4376_19673,Blackrock,105248098,0,4376_7778022_100552,4376_156 -4289_75979,271,4376_19674,Blackrock,105238098,0,4376_7778022_100552,4376_156 -4289_75979,115,4376_19675,Blackrock,105218098,0,4376_7778022_100552,4376_156 -4289_75979,259,4376_19676,Blackrock,105765444,0,4376_7778022_100722,4376_155 -4289_75979,260,4376_19677,Blackrock,105312758,0,4376_7778022_100832,4376_155 -4289_75979,261,4376_19678,Blackrock,105322758,0,4376_7778022_100832,4376_155 -4289_75979,262,4376_19679,Blackrock,105432758,0,4376_7778022_100832,4376_155 -4289_75962,146,4376_1968,Brides Glen Luas,105247743,1,4376_7778022_100140,4376_29 -4289_75979,263,4376_19680,Blackrock,105542758,0,4376_7778022_100832,4376_155 -4289_75979,264,4376_19681,Blackrock,105652758,0,4376_7778022_100832,4376_155 -4289_75979,265,4376_19682,Blackrock,105812758,0,4376_7778022_100832,4376_155 -4289_75979,266,4376_19683,Blackrock,105822758,0,4376_7778022_100832,4376_155 -4289_75979,267,4376_19684,Blackrock,106052758,0,4376_7778022_100832,4376_155 -4289_75979,268,4376_19685,Blackrock,106142758,0,4376_7778022_100832,4376_155 -4289_75979,269,4376_19686,Blackrock,106232758,0,4376_7778022_100832,4376_155 -4289_75979,260,4376_19687,Blackrock,105312784,0,4376_7778022_100930,4376_155 -4289_75979,261,4376_19688,Blackrock,105322784,0,4376_7778022_100930,4376_155 -4289_75979,262,4376_19689,Blackrock,105432784,0,4376_7778022_100930,4376_155 -4289_75962,271,4376_1969,Brides Glen Luas,105237743,1,4376_7778022_100140,4376_29 -4289_75979,263,4376_19690,Blackrock,105542784,0,4376_7778022_100930,4376_155 -4289_75979,264,4376_19691,Blackrock,105652784,0,4376_7778022_100930,4376_155 -4289_75979,265,4376_19692,Blackrock,105812784,0,4376_7778022_100930,4376_155 -4289_75979,266,4376_19693,Blackrock,105822784,0,4376_7778022_100930,4376_155 -4289_75979,267,4376_19694,Blackrock,106052784,0,4376_7778022_100930,4376_155 -4289_75979,268,4376_19695,Blackrock,106142784,0,4376_7778022_100930,4376_155 -4289_75979,269,4376_19696,Blackrock,106232784,0,4376_7778022_100930,4376_155 -4289_75979,259,4376_19697,Blackrock,105765474,0,4376_7778022_100732,4376_156 -4289_75979,270,4376_19698,Blackrock,105278128,0,4376_7778022_100532,4376_157 -4289_75979,146,4376_19699,Blackrock,105248128,0,4376_7778022_100532,4376_157 -4289_75960,259,4376_197,Sutton Station,105764622,0,4376_7778022_103108,4376_2 -4289_75962,115,4376_1970,Brides Glen Luas,105217743,1,4376_7778022_100140,4376_29 -4289_75979,271,4376_19700,Blackrock,105238128,0,4376_7778022_100532,4376_157 -4289_75979,115,4376_19701,Blackrock,105218128,0,4376_7778022_100532,4376_157 -4289_75979,260,4376_19702,Blackrock,105312810,0,4376_7778022_100890,4376_155 -4289_75979,261,4376_19703,Blackrock,105322810,0,4376_7778022_100890,4376_155 -4289_75979,262,4376_19704,Blackrock,105432810,0,4376_7778022_100890,4376_155 -4289_75979,263,4376_19705,Blackrock,105542810,0,4376_7778022_100890,4376_155 -4289_75979,264,4376_19706,Blackrock,105652810,0,4376_7778022_100890,4376_155 -4289_75979,265,4376_19707,Blackrock,105812810,0,4376_7778022_100890,4376_155 -4289_75979,266,4376_19708,Blackrock,105822810,0,4376_7778022_100890,4376_155 -4289_75979,267,4376_19709,Blackrock,106052810,0,4376_7778022_100890,4376_155 -4289_75962,260,4376_1971,Brides Glen Luas,105312393,1,4376_7778022_104030,4376_25 -4289_75979,268,4376_19710,Blackrock,106142810,0,4376_7778022_100890,4376_155 -4289_75979,269,4376_19711,Blackrock,106232810,0,4376_7778022_100890,4376_155 -4289_75979,259,4376_19712,Blackrock,105765506,0,4376_7778022_100702,4376_155 -4289_75979,260,4376_19713,Blackrock,105312832,0,4376_7778022_100872,4376_155 -4289_75979,261,4376_19714,Blackrock,105322832,0,4376_7778022_100872,4376_155 -4289_75979,262,4376_19715,Blackrock,105432832,0,4376_7778022_100872,4376_155 -4289_75979,263,4376_19716,Blackrock,105542832,0,4376_7778022_100872,4376_155 -4289_75979,264,4376_19717,Blackrock,105652832,0,4376_7778022_100872,4376_155 -4289_75979,265,4376_19718,Blackrock,105812832,0,4376_7778022_100872,4376_155 -4289_75979,266,4376_19719,Blackrock,105822832,0,4376_7778022_100872,4376_155 -4289_75962,261,4376_1972,Brides Glen Luas,105322393,1,4376_7778022_104030,4376_25 -4289_75979,267,4376_19720,Blackrock,106052832,0,4376_7778022_100872,4376_155 -4289_75979,268,4376_19721,Blackrock,106142832,0,4376_7778022_100872,4376_155 -4289_75979,269,4376_19722,Blackrock,106232832,0,4376_7778022_100872,4376_155 -4289_75979,270,4376_19723,Blackrock,105278174,0,4376_7778022_100582,4376_156 -4289_75979,146,4376_19724,Blackrock,105248174,0,4376_7778022_100582,4376_156 -4289_75979,271,4376_19725,Blackrock,105238174,0,4376_7778022_100582,4376_156 -4289_75979,115,4376_19726,Blackrock,105218174,0,4376_7778022_100582,4376_156 -4289_75979,259,4376_19727,Blackrock,105765528,0,4376_7778022_100682,4376_155 -4289_75979,260,4376_19728,Blackrock,105312852,0,4376_7778022_100800,4376_155 -4289_75979,261,4376_19729,Blackrock,105322852,0,4376_7778022_100800,4376_155 -4289_75962,262,4376_1973,Brides Glen Luas,105432393,1,4376_7778022_104030,4376_25 -4289_75979,262,4376_19730,Blackrock,105432852,0,4376_7778022_100800,4376_155 -4289_75979,263,4376_19731,Blackrock,105542852,0,4376_7778022_100800,4376_155 -4289_75979,264,4376_19732,Blackrock,105652852,0,4376_7778022_100800,4376_155 -4289_75979,265,4376_19733,Blackrock,105812852,0,4376_7778022_100800,4376_155 -4289_75979,266,4376_19734,Blackrock,105822852,0,4376_7778022_100800,4376_155 -4289_75979,267,4376_19735,Blackrock,106052852,0,4376_7778022_100800,4376_155 -4289_75979,268,4376_19736,Blackrock,106142852,0,4376_7778022_100800,4376_155 -4289_75979,269,4376_19737,Blackrock,106232852,0,4376_7778022_100800,4376_155 -4289_75979,260,4376_19738,Blackrock,105312876,0,4376_7778022_100910,4376_155 -4289_75979,261,4376_19739,Blackrock,105322876,0,4376_7778022_100910,4376_155 -4289_75962,263,4376_1974,Brides Glen Luas,105542393,1,4376_7778022_104030,4376_25 -4289_75979,262,4376_19740,Blackrock,105432876,0,4376_7778022_100910,4376_155 -4289_75979,263,4376_19741,Blackrock,105542876,0,4376_7778022_100910,4376_155 -4289_75979,264,4376_19742,Blackrock,105652876,0,4376_7778022_100910,4376_155 -4289_75979,265,4376_19743,Blackrock,105812876,0,4376_7778022_100910,4376_155 -4289_75979,266,4376_19744,Blackrock,105822876,0,4376_7778022_100910,4376_155 -4289_75979,267,4376_19745,Blackrock,106052876,0,4376_7778022_100910,4376_155 -4289_75979,268,4376_19746,Blackrock,106142876,0,4376_7778022_100910,4376_155 -4289_75979,269,4376_19747,Blackrock,106232876,0,4376_7778022_100910,4376_155 -4289_75979,259,4376_19748,Blackrock,105765558,0,4376_7778022_100712,4376_156 -4289_75979,270,4376_19749,Blackrock,105278204,0,4376_7778022_100542,4376_157 -4289_75962,264,4376_1975,Brides Glen Luas,105652393,1,4376_7778022_104030,4376_25 -4289_75979,146,4376_19750,Blackrock,105248204,0,4376_7778022_100542,4376_157 -4289_75979,271,4376_19751,Blackrock,105238204,0,4376_7778022_100542,4376_157 -4289_75979,115,4376_19752,Blackrock,105218204,0,4376_7778022_100542,4376_157 -4289_75979,260,4376_19753,Blackrock,105312902,0,4376_7778022_100902,4376_155 -4289_75979,261,4376_19754,Blackrock,105322902,0,4376_7778022_100902,4376_155 -4289_75979,262,4376_19755,Blackrock,105432902,0,4376_7778022_100902,4376_155 -4289_75979,263,4376_19756,Blackrock,105542902,0,4376_7778022_100902,4376_155 -4289_75979,264,4376_19757,Blackrock,105652902,0,4376_7778022_100902,4376_155 -4289_75979,265,4376_19758,Blackrock,105812902,0,4376_7778022_100902,4376_155 -4289_75979,266,4376_19759,Blackrock,105822902,0,4376_7778022_100902,4376_155 -4289_75962,265,4376_1976,Brides Glen Luas,105812393,1,4376_7778022_104030,4376_25 -4289_75979,267,4376_19760,Blackrock,106052902,0,4376_7778022_100902,4376_155 -4289_75979,268,4376_19761,Blackrock,106142902,0,4376_7778022_100902,4376_155 -4289_75979,269,4376_19762,Blackrock,106232902,0,4376_7778022_100902,4376_155 -4289_75979,259,4376_19763,Blackrock,105765588,0,4376_7778022_100672,4376_155 -4289_75979,260,4376_19764,Blackrock,105312924,0,4376_7778022_100883,4376_155 -4289_75979,261,4376_19765,Blackrock,105322924,0,4376_7778022_100883,4376_155 -4289_75979,262,4376_19766,Blackrock,105432924,0,4376_7778022_100883,4376_155 -4289_75979,263,4376_19767,Blackrock,105542924,0,4376_7778022_100883,4376_155 -4289_75979,264,4376_19768,Blackrock,105652924,0,4376_7778022_100883,4376_155 -4289_75979,265,4376_19769,Blackrock,105812924,0,4376_7778022_100883,4376_155 -4289_75962,266,4376_1977,Brides Glen Luas,105822393,1,4376_7778022_104030,4376_25 -4289_75979,266,4376_19770,Blackrock,105822924,0,4376_7778022_100883,4376_155 -4289_75979,267,4376_19771,Blackrock,106052924,0,4376_7778022_100883,4376_155 -4289_75979,268,4376_19772,Blackrock,106142924,0,4376_7778022_100883,4376_155 -4289_75979,269,4376_19773,Blackrock,106232924,0,4376_7778022_100883,4376_155 -4289_75979,270,4376_19774,Blackrock,105278248,0,4376_7778022_100552,4376_156 -4289_75979,146,4376_19775,Blackrock,105248248,0,4376_7778022_100552,4376_156 -4289_75979,271,4376_19776,Blackrock,105238248,0,4376_7778022_100552,4376_156 -4289_75979,115,4376_19777,Blackrock,105218248,0,4376_7778022_100552,4376_156 -4289_75979,259,4376_19778,Blackrock,105765614,0,4376_7778022_100722,4376_155 -4289_75979,260,4376_19779,Blackrock,105312946,0,4376_7778022_100822,4376_155 -4289_75962,267,4376_1978,Brides Glen Luas,106052393,1,4376_7778022_104030,4376_25 -4289_75979,261,4376_19780,Blackrock,105322946,0,4376_7778022_100822,4376_155 -4289_75979,262,4376_19781,Blackrock,105432946,0,4376_7778022_100822,4376_155 -4289_75979,263,4376_19782,Blackrock,105542946,0,4376_7778022_100822,4376_155 -4289_75979,264,4376_19783,Blackrock,105652946,0,4376_7778022_100822,4376_155 -4289_75979,265,4376_19784,Blackrock,105812946,0,4376_7778022_100822,4376_155 -4289_75979,266,4376_19785,Blackrock,105822946,0,4376_7778022_100822,4376_155 -4289_75979,267,4376_19786,Blackrock,106052946,0,4376_7778022_100822,4376_155 -4289_75979,268,4376_19787,Blackrock,106142946,0,4376_7778022_100822,4376_155 -4289_75979,269,4376_19788,Blackrock,106232946,0,4376_7778022_100822,4376_155 -4289_75979,260,4376_19789,Blackrock,105312966,0,4376_7778022_100832,4376_155 -4289_75962,268,4376_1979,Brides Glen Luas,106142393,1,4376_7778022_104030,4376_25 -4289_75979,261,4376_19790,Blackrock,105322966,0,4376_7778022_100832,4376_155 -4289_75979,262,4376_19791,Blackrock,105432966,0,4376_7778022_100832,4376_155 -4289_75979,263,4376_19792,Blackrock,105542966,0,4376_7778022_100832,4376_155 -4289_75979,264,4376_19793,Blackrock,105652966,0,4376_7778022_100832,4376_155 -4289_75979,265,4376_19794,Blackrock,105812966,0,4376_7778022_100832,4376_155 -4289_75979,266,4376_19795,Blackrock,105822966,0,4376_7778022_100832,4376_155 -4289_75979,267,4376_19796,Blackrock,106052966,0,4376_7778022_100832,4376_155 -4289_75979,268,4376_19797,Blackrock,106142966,0,4376_7778022_100832,4376_155 -4289_75979,269,4376_19798,Blackrock,106232966,0,4376_7778022_100832,4376_155 -4289_75979,259,4376_19799,Blackrock,105765638,0,4376_7778022_100732,4376_155 -4289_75960,270,4376_198,Sutton Station,105277394,0,4376_7778022_103501,4376_1 -4289_75962,269,4376_1980,Brides Glen Luas,106232393,1,4376_7778022_104030,4376_25 -4289_75979,270,4376_19800,Blackrock,105278278,0,4376_7778022_100532,4376_156 -4289_75979,146,4376_19801,Blackrock,105248278,0,4376_7778022_100532,4376_156 -4289_75979,271,4376_19802,Blackrock,105238278,0,4376_7778022_100532,4376_156 -4289_75979,115,4376_19803,Blackrock,105218278,0,4376_7778022_100532,4376_156 -4289_75979,260,4376_19804,Blackrock,105312994,0,4376_7778022_100872,4376_155 -4289_75979,261,4376_19805,Blackrock,105322994,0,4376_7778022_100872,4376_155 -4289_75979,262,4376_19806,Blackrock,105432994,0,4376_7778022_100872,4376_155 -4289_75979,263,4376_19807,Blackrock,105542994,0,4376_7778022_100872,4376_155 -4289_75979,264,4376_19808,Blackrock,105652994,0,4376_7778022_100872,4376_155 -4289_75979,265,4376_19809,Blackrock,105812994,0,4376_7778022_100872,4376_155 -4289_75962,259,4376_1981,Brides Glen Luas,105765125,1,4376_7778022_104024,4376_27 -4289_75979,266,4376_19810,Blackrock,105822994,0,4376_7778022_100872,4376_155 -4289_75979,267,4376_19811,Blackrock,106052994,0,4376_7778022_100872,4376_155 -4289_75979,268,4376_19812,Blackrock,106142994,0,4376_7778022_100872,4376_155 -4289_75979,269,4376_19813,Blackrock,106232994,0,4376_7778022_100872,4376_155 -4289_75979,259,4376_19814,Blackrock,105765666,0,4376_7778022_100682,4376_156 -4289_75979,270,4376_19815,Blackrock,105278310,0,4376_7778022_100582,4376_157 -4289_75979,146,4376_19816,Blackrock,105248310,0,4376_7778022_100582,4376_157 -4289_75979,271,4376_19817,Blackrock,105238310,0,4376_7778022_100582,4376_157 -4289_75979,115,4376_19818,Blackrock,105218310,0,4376_7778022_100582,4376_157 -4289_75979,260,4376_19819,The Square,105311017,1,4376_7778022_100800,4376_158 -4289_75962,270,4376_1982,Brides Glen Luas,105277831,1,4376_7778022_100150,4376_29 -4289_75979,261,4376_19820,The Square,105321017,1,4376_7778022_100800,4376_158 -4289_75979,262,4376_19821,The Square,105431017,1,4376_7778022_100800,4376_158 -4289_75979,263,4376_19822,The Square,105541017,1,4376_7778022_100800,4376_158 -4289_75979,264,4376_19823,The Square,105651017,1,4376_7778022_100800,4376_158 -4289_75979,265,4376_19824,The Square,105811017,1,4376_7778022_100800,4376_158 -4289_75979,266,4376_19825,The Square,105821017,1,4376_7778022_100800,4376_158 -4289_75979,267,4376_19826,The Square,106051017,1,4376_7778022_100800,4376_158 -4289_75979,268,4376_19827,The Square,106141017,1,4376_7778022_100800,4376_158 -4289_75979,269,4376_19828,The Square,106231017,1,4376_7778022_100800,4376_158 -4289_75979,260,4376_19829,The Square,105311041,1,4376_7778022_100821,4376_158 -4289_75962,146,4376_1983,Brides Glen Luas,105247831,1,4376_7778022_100150,4376_29 -4289_75979,261,4376_19830,The Square,105321041,1,4376_7778022_100821,4376_158 -4289_75979,262,4376_19831,The Square,105431041,1,4376_7778022_100821,4376_158 -4289_75979,263,4376_19832,The Square,105541041,1,4376_7778022_100821,4376_158 -4289_75979,264,4376_19833,The Square,105651041,1,4376_7778022_100821,4376_158 -4289_75979,265,4376_19834,The Square,105811041,1,4376_7778022_100821,4376_158 -4289_75979,266,4376_19835,The Square,105821041,1,4376_7778022_100821,4376_158 -4289_75979,267,4376_19836,The Square,106051041,1,4376_7778022_100821,4376_158 -4289_75979,268,4376_19837,The Square,106141041,1,4376_7778022_100821,4376_158 -4289_75979,269,4376_19838,The Square,106231041,1,4376_7778022_100821,4376_158 -4289_75979,259,4376_19839,The Square,105764027,1,4376_7778022_100660,4376_159 -4289_75962,271,4376_1984,Brides Glen Luas,105237831,1,4376_7778022_100150,4376_29 -4289_75979,260,4376_19840,The Square,105311055,1,4376_7778022_100831,4376_158 -4289_75979,261,4376_19841,The Square,105321055,1,4376_7778022_100831,4376_158 -4289_75979,262,4376_19842,The Square,105431055,1,4376_7778022_100831,4376_158 -4289_75979,263,4376_19843,The Square,105541055,1,4376_7778022_100831,4376_158 -4289_75979,264,4376_19844,The Square,105651055,1,4376_7778022_100831,4376_158 -4289_75979,265,4376_19845,The Square,105811055,1,4376_7778022_100831,4376_158 -4289_75979,266,4376_19846,The Square,105821055,1,4376_7778022_100831,4376_158 -4289_75979,267,4376_19847,The Square,106051055,1,4376_7778022_100831,4376_158 -4289_75979,268,4376_19848,The Square,106141055,1,4376_7778022_100831,4376_158 -4289_75979,269,4376_19849,The Square,106231055,1,4376_7778022_100831,4376_158 -4289_75962,115,4376_1985,Brides Glen Luas,105217831,1,4376_7778022_100150,4376_29 -4289_75979,259,4376_19850,The Square,105764047,1,4376_7778022_100681,4376_158 -4289_75979,260,4376_19851,The Square,105311087,1,4376_7778022_100810,4376_158 -4289_75979,261,4376_19852,The Square,105321087,1,4376_7778022_100810,4376_158 -4289_75979,262,4376_19853,The Square,105431087,1,4376_7778022_100810,4376_158 -4289_75979,263,4376_19854,The Square,105541087,1,4376_7778022_100810,4376_158 -4289_75979,264,4376_19855,The Square,105651087,1,4376_7778022_100810,4376_158 -4289_75979,265,4376_19856,The Square,105811087,1,4376_7778022_100810,4376_158 -4289_75979,266,4376_19857,The Square,105821087,1,4376_7778022_100810,4376_158 -4289_75979,267,4376_19858,The Square,106051087,1,4376_7778022_100810,4376_158 -4289_75979,268,4376_19859,The Square,106141087,1,4376_7778022_100810,4376_158 -4289_75962,260,4376_1986,Brides Glen Luas,105312505,1,4376_7778022_104072,4376_25 -4289_75979,269,4376_19860,The Square,106231087,1,4376_7778022_100810,4376_158 -4289_75979,260,4376_19861,The Square,105311093,1,4376_7778022_100850,4376_158 -4289_75979,261,4376_19862,The Square,105321093,1,4376_7778022_100850,4376_158 -4289_75979,262,4376_19863,The Square,105431093,1,4376_7778022_100850,4376_158 -4289_75979,263,4376_19864,The Square,105541093,1,4376_7778022_100850,4376_158 -4289_75979,264,4376_19865,The Square,105651093,1,4376_7778022_100850,4376_158 -4289_75979,265,4376_19866,The Square,105811093,1,4376_7778022_100850,4376_158 -4289_75979,266,4376_19867,The Square,105821093,1,4376_7778022_100850,4376_158 -4289_75979,267,4376_19868,The Square,106051093,1,4376_7778022_100850,4376_158 -4289_75979,268,4376_19869,The Square,106141093,1,4376_7778022_100850,4376_158 -4289_75962,261,4376_1987,Brides Glen Luas,105322505,1,4376_7778022_104072,4376_25 -4289_75979,269,4376_19870,The Square,106231093,1,4376_7778022_100850,4376_158 -4289_75979,259,4376_19871,The Square,105764067,1,4376_7778022_100701,4376_158 -4289_75979,260,4376_19872,The Square,105311119,1,4376_7778022_100871,4376_158 -4289_75979,261,4376_19873,The Square,105321119,1,4376_7778022_100871,4376_158 -4289_75979,262,4376_19874,The Square,105431119,1,4376_7778022_100871,4376_158 -4289_75979,263,4376_19875,The Square,105541119,1,4376_7778022_100871,4376_158 -4289_75979,264,4376_19876,The Square,105651119,1,4376_7778022_100871,4376_158 -4289_75979,265,4376_19877,The Square,105811119,1,4376_7778022_100871,4376_158 -4289_75979,266,4376_19878,The Square,105821119,1,4376_7778022_100871,4376_158 -4289_75979,267,4376_19879,The Square,106051119,1,4376_7778022_100871,4376_158 -4289_75962,262,4376_1988,Brides Glen Luas,105432505,1,4376_7778022_104072,4376_25 -4289_75979,268,4376_19880,The Square,106141119,1,4376_7778022_100871,4376_158 -4289_75979,269,4376_19881,The Square,106231119,1,4376_7778022_100871,4376_158 -4289_75979,259,4376_19882,The Square,105764095,1,4376_7778022_100671,4376_158 -4289_75979,260,4376_19883,The Square,105311159,1,4376_7778022_100890,4376_158 -4289_75979,261,4376_19884,The Square,105321159,1,4376_7778022_100890,4376_158 -4289_75979,262,4376_19885,The Square,105431159,1,4376_7778022_100890,4376_158 -4289_75979,263,4376_19886,The Square,105541159,1,4376_7778022_100890,4376_158 -4289_75979,264,4376_19887,The Square,105651159,1,4376_7778022_100890,4376_158 -4289_75979,265,4376_19888,The Square,105811159,1,4376_7778022_100890,4376_158 -4289_75979,266,4376_19889,The Square,105821159,1,4376_7778022_100890,4376_158 -4289_75962,263,4376_1989,Brides Glen Luas,105542505,1,4376_7778022_104072,4376_25 -4289_75979,267,4376_19890,The Square,106051159,1,4376_7778022_100890,4376_158 -4289_75979,268,4376_19891,The Square,106141159,1,4376_7778022_100890,4376_158 -4289_75979,269,4376_19892,The Square,106231159,1,4376_7778022_100890,4376_158 -4289_75979,260,4376_19893,The Square,105311177,1,4376_7778022_100841,4376_158 -4289_75979,261,4376_19894,The Square,105321177,1,4376_7778022_100841,4376_158 -4289_75979,262,4376_19895,The Square,105431177,1,4376_7778022_100841,4376_158 -4289_75979,263,4376_19896,The Square,105541177,1,4376_7778022_100841,4376_158 -4289_75979,264,4376_19897,The Square,105651177,1,4376_7778022_100841,4376_158 -4289_75979,265,4376_19898,The Square,105811177,1,4376_7778022_100841,4376_158 -4289_75979,266,4376_19899,The Square,105821177,1,4376_7778022_100841,4376_158 -4289_75960,146,4376_199,Sutton Station,105247394,0,4376_7778022_103501,4376_1 -4289_75962,264,4376_1990,Brides Glen Luas,105652505,1,4376_7778022_104072,4376_25 -4289_75979,267,4376_19900,The Square,106051177,1,4376_7778022_100841,4376_158 -4289_75979,268,4376_19901,The Square,106141177,1,4376_7778022_100841,4376_158 -4289_75979,269,4376_19902,The Square,106231177,1,4376_7778022_100841,4376_158 -4289_75979,259,4376_19903,The Square,105764119,1,4376_7778022_100690,4376_158 -4289_75979,260,4376_19904,The Square,105311209,1,4376_7778022_100860,4376_158 -4289_75979,261,4376_19905,The Square,105321209,1,4376_7778022_100860,4376_158 -4289_75979,262,4376_19906,The Square,105431209,1,4376_7778022_100860,4376_158 -4289_75979,263,4376_19907,The Square,105541209,1,4376_7778022_100860,4376_158 -4289_75979,264,4376_19908,The Square,105651209,1,4376_7778022_100860,4376_158 -4289_75979,265,4376_19909,The Square,105811209,1,4376_7778022_100860,4376_158 -4289_75962,265,4376_1991,Brides Glen Luas,105812505,1,4376_7778022_104072,4376_25 -4289_75979,266,4376_19910,The Square,105821209,1,4376_7778022_100860,4376_158 -4289_75979,267,4376_19911,The Square,106051209,1,4376_7778022_100860,4376_158 -4289_75979,268,4376_19912,The Square,106141209,1,4376_7778022_100860,4376_158 -4289_75979,269,4376_19913,The Square,106231209,1,4376_7778022_100860,4376_158 -4289_75979,270,4376_19914,The Square,105277013,1,4376_7778022_100520,4376_159 -4289_75979,146,4376_19915,The Square,105247013,1,4376_7778022_100520,4376_159 -4289_75979,271,4376_19916,The Square,105237013,1,4376_7778022_100520,4376_159 -4289_75979,115,4376_19917,The Square,105217013,1,4376_7778022_100520,4376_159 -4289_75979,259,4376_19918,The Square,105764147,1,4376_7778022_100711,4376_158 -4289_75979,260,4376_19919,The Square,105311233,1,4376_7778022_100800,4376_158 -4289_75962,266,4376_1992,Brides Glen Luas,105822505,1,4376_7778022_104072,4376_25 -4289_75979,261,4376_19920,The Square,105321233,1,4376_7778022_100800,4376_158 -4289_75979,262,4376_19921,The Square,105431233,1,4376_7778022_100800,4376_158 -4289_75979,263,4376_19922,The Square,105541233,1,4376_7778022_100800,4376_158 -4289_75979,264,4376_19923,The Square,105651233,1,4376_7778022_100800,4376_158 -4289_75979,265,4376_19924,The Square,105811233,1,4376_7778022_100800,4376_158 -4289_75979,266,4376_19925,The Square,105821233,1,4376_7778022_100800,4376_158 -4289_75979,267,4376_19926,The Square,106051233,1,4376_7778022_100800,4376_158 -4289_75979,268,4376_19927,The Square,106141233,1,4376_7778022_100800,4376_158 -4289_75979,269,4376_19928,The Square,106231233,1,4376_7778022_100800,4376_158 -4289_75979,260,4376_19929,The Square,105311283,1,4376_7778022_100881,4376_158 -4289_75962,267,4376_1993,Brides Glen Luas,106052505,1,4376_7778022_104072,4376_25 -4289_75979,261,4376_19930,The Square,105321283,1,4376_7778022_100881,4376_158 -4289_75979,262,4376_19931,The Square,105431283,1,4376_7778022_100881,4376_158 -4289_75979,263,4376_19932,The Square,105541283,1,4376_7778022_100881,4376_158 -4289_75979,264,4376_19933,The Square,105651283,1,4376_7778022_100881,4376_158 -4289_75979,265,4376_19934,The Square,105811283,1,4376_7778022_100881,4376_158 -4289_75979,266,4376_19935,The Square,105821283,1,4376_7778022_100881,4376_158 -4289_75979,267,4376_19936,The Square,106051283,1,4376_7778022_100881,4376_158 -4289_75979,268,4376_19937,The Square,106141283,1,4376_7778022_100881,4376_158 -4289_75979,269,4376_19938,The Square,106231283,1,4376_7778022_100881,4376_158 -4289_75979,259,4376_19939,The Square,105764177,1,4376_7778022_100660,4376_159 -4289_75962,268,4376_1994,Brides Glen Luas,106142505,1,4376_7778022_104072,4376_25 -4289_75979,270,4376_19940,The Square,105277027,1,4376_7778022_100541,4376_160 -4289_75979,146,4376_19941,The Square,105247027,1,4376_7778022_100541,4376_160 -4289_75979,271,4376_19942,The Square,105237027,1,4376_7778022_100541,4376_160 -4289_75979,115,4376_19943,The Square,105217027,1,4376_7778022_100541,4376_160 -4289_75979,260,4376_19944,The Square,105311309,1,4376_7778022_100901,4376_158 -4289_75979,261,4376_19945,The Square,105321309,1,4376_7778022_100901,4376_158 -4289_75979,262,4376_19946,The Square,105431309,1,4376_7778022_100901,4376_158 -4289_75979,263,4376_19947,The Square,105541309,1,4376_7778022_100901,4376_158 -4289_75979,264,4376_19948,The Square,105651309,1,4376_7778022_100901,4376_158 -4289_75979,265,4376_19949,The Square,105811309,1,4376_7778022_100901,4376_158 -4289_75962,269,4376_1995,Brides Glen Luas,106232505,1,4376_7778022_104072,4376_25 -4289_75979,266,4376_19950,The Square,105821309,1,4376_7778022_100901,4376_158 -4289_75979,267,4376_19951,The Square,106051309,1,4376_7778022_100901,4376_158 -4289_75979,268,4376_19952,The Square,106141309,1,4376_7778022_100901,4376_158 -4289_75979,269,4376_19953,The Square,106231309,1,4376_7778022_100901,4376_158 -4289_75979,259,4376_19954,The Square,105764203,1,4376_7778022_100681,4376_158 -4289_75979,260,4376_19955,The Square,105311347,1,4376_7778022_100910,4376_158 -4289_75979,261,4376_19956,The Square,105321347,1,4376_7778022_100910,4376_158 -4289_75979,262,4376_19957,The Square,105431347,1,4376_7778022_100910,4376_158 -4289_75979,263,4376_19958,The Square,105541347,1,4376_7778022_100910,4376_158 -4289_75979,264,4376_19959,The Square,105651347,1,4376_7778022_100910,4376_158 -4289_75962,259,4376_1996,Brides Glen Luas,105765243,1,4376_7778022_104043,4376_25 -4289_75979,265,4376_19960,The Square,105811347,1,4376_7778022_100910,4376_158 -4289_75979,266,4376_19961,The Square,105821347,1,4376_7778022_100910,4376_158 -4289_75979,267,4376_19962,The Square,106051347,1,4376_7778022_100910,4376_158 -4289_75979,268,4376_19963,The Square,106141347,1,4376_7778022_100910,4376_158 -4289_75979,269,4376_19964,The Square,106231347,1,4376_7778022_100910,4376_158 -4289_75979,270,4376_19965,The Square,105277059,1,4376_7778022_100531,4376_159 -4289_75979,146,4376_19966,The Square,105247059,1,4376_7778022_100531,4376_159 -4289_75979,271,4376_19967,The Square,105237059,1,4376_7778022_100531,4376_159 -4289_75979,115,4376_19968,The Square,105217059,1,4376_7778022_100531,4376_159 -4289_75979,259,4376_19969,The Square,105764235,1,4376_7778022_100701,4376_158 -4289_75962,270,4376_1997,Brides Glen Luas,105277931,1,4376_7778022_100140,4376_27 -4289_75979,260,4376_19970,The Square,105311373,1,4376_7778022_100920,4376_158 -4289_75979,261,4376_19971,The Square,105321373,1,4376_7778022_100920,4376_158 -4289_75979,262,4376_19972,The Square,105431373,1,4376_7778022_100920,4376_158 -4289_75979,263,4376_19973,The Square,105541373,1,4376_7778022_100920,4376_158 -4289_75979,264,4376_19974,The Square,105651373,1,4376_7778022_100920,4376_158 -4289_75979,265,4376_19975,The Square,105811373,1,4376_7778022_100920,4376_158 -4289_75979,266,4376_19976,The Square,105821373,1,4376_7778022_100920,4376_158 -4289_75979,267,4376_19977,The Square,106051373,1,4376_7778022_100920,4376_158 -4289_75979,268,4376_19978,The Square,106141373,1,4376_7778022_100920,4376_158 -4289_75979,269,4376_19979,The Square,106231373,1,4376_7778022_100920,4376_158 -4289_75962,146,4376_1998,Brides Glen Luas,105247931,1,4376_7778022_100140,4376_27 -4289_75979,260,4376_19980,The Square,105311403,1,4376_7778022_100821,4376_158 -4289_75979,261,4376_19981,The Square,105321403,1,4376_7778022_100821,4376_158 -4289_75979,262,4376_19982,The Square,105431403,1,4376_7778022_100821,4376_158 -4289_75979,263,4376_19983,The Square,105541403,1,4376_7778022_100821,4376_158 -4289_75979,264,4376_19984,The Square,105651403,1,4376_7778022_100821,4376_158 -4289_75979,265,4376_19985,The Square,105811403,1,4376_7778022_100821,4376_158 -4289_75979,266,4376_19986,The Square,105821403,1,4376_7778022_100821,4376_158 -4289_75979,267,4376_19987,The Square,106051403,1,4376_7778022_100821,4376_158 -4289_75979,268,4376_19988,The Square,106141403,1,4376_7778022_100821,4376_158 -4289_75979,269,4376_19989,The Square,106231403,1,4376_7778022_100821,4376_158 -4289_75962,271,4376_1999,Brides Glen Luas,105237931,1,4376_7778022_100140,4376_27 -4289_75979,259,4376_19990,The Square,105764263,1,4376_7778022_100721,4376_159 -4289_75979,270,4376_19991,The Square,105277085,1,4376_7778022_100551,4376_160 -4289_75979,146,4376_19992,The Square,105247085,1,4376_7778022_100551,4376_160 -4289_75979,271,4376_19993,The Square,105237085,1,4376_7778022_100551,4376_160 -4289_75979,115,4376_19994,The Square,105217085,1,4376_7778022_100551,4376_160 -4289_75979,260,4376_19995,The Square,105311425,1,4376_7778022_100831,4376_158 -4289_75979,261,4376_19996,The Square,105321425,1,4376_7778022_100831,4376_158 -4289_75979,262,4376_19997,The Square,105431425,1,4376_7778022_100831,4376_158 -4289_75979,263,4376_19998,The Square,105541425,1,4376_7778022_100831,4376_158 -4289_75979,264,4376_19999,The Square,105651425,1,4376_7778022_100831,4376_158 -4289_75960,260,4376_2,Sutton Station,105311026,0,4376_7778022_103503,4376_1 -4289_75960,267,4376_20,Sutton Station,106051070,0,4376_7778022_103107,4376_1 -4289_75960,271,4376_200,Sutton Station,105237394,0,4376_7778022_103501,4376_1 -4289_75962,115,4376_2000,Brides Glen Luas,105217931,1,4376_7778022_100140,4376_27 -4289_75979,265,4376_20000,The Square,105811425,1,4376_7778022_100831,4376_158 -4289_75979,266,4376_20001,The Square,105821425,1,4376_7778022_100831,4376_158 -4289_75979,267,4376_20002,The Square,106051425,1,4376_7778022_100831,4376_158 -4289_75979,268,4376_20003,The Square,106141425,1,4376_7778022_100831,4376_158 -4289_75979,269,4376_20004,The Square,106231425,1,4376_7778022_100831,4376_158 -4289_75979,259,4376_20005,The Square,105764289,1,4376_7778022_100671,4376_159 -4289_75979,260,4376_20006,The Square,105311457,1,4376_7778022_100810,4376_158 -4289_75979,261,4376_20007,The Square,105321457,1,4376_7778022_100810,4376_158 -4289_75979,262,4376_20008,The Square,105431457,1,4376_7778022_100810,4376_158 -4289_75979,263,4376_20009,The Square,105541457,1,4376_7778022_100810,4376_158 -4289_75962,260,4376_2001,Brides Glen Luas,105312627,1,4376_7778022_104030,4376_25 -4289_75979,264,4376_20010,The Square,105651457,1,4376_7778022_100810,4376_158 -4289_75979,265,4376_20011,The Square,105811457,1,4376_7778022_100810,4376_158 -4289_75979,266,4376_20012,The Square,105821457,1,4376_7778022_100810,4376_158 -4289_75979,267,4376_20013,The Square,106051457,1,4376_7778022_100810,4376_158 -4289_75979,268,4376_20014,The Square,106141457,1,4376_7778022_100810,4376_158 -4289_75979,269,4376_20015,The Square,106231457,1,4376_7778022_100810,4376_158 -4289_75979,259,4376_20016,The Square,105764317,1,4376_7778022_100690,4376_159 -4289_75979,270,4376_20017,The Square,105277131,1,4376_7778022_100520,4376_160 -4289_75979,146,4376_20018,The Square,105247131,1,4376_7778022_100520,4376_160 -4289_75979,271,4376_20019,The Square,105237131,1,4376_7778022_100520,4376_160 -4289_75962,261,4376_2002,Brides Glen Luas,105322627,1,4376_7778022_104030,4376_25 -4289_75979,115,4376_20020,The Square,105217131,1,4376_7778022_100520,4376_160 -4289_75979,260,4376_20021,The Square,105311481,1,4376_7778022_100850,4376_158 -4289_75979,261,4376_20022,The Square,105321481,1,4376_7778022_100850,4376_158 -4289_75979,262,4376_20023,The Square,105431481,1,4376_7778022_100850,4376_158 -4289_75979,263,4376_20024,The Square,105541481,1,4376_7778022_100850,4376_158 -4289_75979,264,4376_20025,The Square,105651481,1,4376_7778022_100850,4376_158 -4289_75979,265,4376_20026,The Square,105811481,1,4376_7778022_100850,4376_158 -4289_75979,266,4376_20027,The Square,105821481,1,4376_7778022_100850,4376_158 -4289_75979,267,4376_20028,The Square,106051481,1,4376_7778022_100850,4376_158 -4289_75979,268,4376_20029,The Square,106141481,1,4376_7778022_100850,4376_158 -4289_75962,262,4376_2003,Brides Glen Luas,105432627,1,4376_7778022_104030,4376_25 -4289_75979,269,4376_20030,The Square,106231481,1,4376_7778022_100850,4376_158 -4289_75979,259,4376_20031,The Square,105764339,1,4376_7778022_100711,4376_159 -4289_75979,260,4376_20032,The Square,105311509,1,4376_7778022_100871,4376_158 -4289_75979,261,4376_20033,The Square,105321509,1,4376_7778022_100871,4376_158 -4289_75979,262,4376_20034,The Square,105431509,1,4376_7778022_100871,4376_158 -4289_75979,263,4376_20035,The Square,105541509,1,4376_7778022_100871,4376_158 -4289_75979,264,4376_20036,The Square,105651509,1,4376_7778022_100871,4376_158 -4289_75979,265,4376_20037,The Square,105811509,1,4376_7778022_100871,4376_158 -4289_75979,266,4376_20038,The Square,105821509,1,4376_7778022_100871,4376_158 -4289_75979,267,4376_20039,The Square,106051509,1,4376_7778022_100871,4376_158 -4289_75962,263,4376_2004,Brides Glen Luas,105542627,1,4376_7778022_104030,4376_25 -4289_75979,268,4376_20040,The Square,106141509,1,4376_7778022_100871,4376_158 -4289_75979,269,4376_20041,The Square,106231509,1,4376_7778022_100871,4376_158 -4289_75979,259,4376_20042,The Square,105764365,1,4376_7778022_100740,4376_159 -4289_75979,270,4376_20043,The Square,105277163,1,4376_7778022_100541,4376_160 -4289_75979,146,4376_20044,The Square,105247163,1,4376_7778022_100541,4376_160 -4289_75979,271,4376_20045,The Square,105237163,1,4376_7778022_100541,4376_160 -4289_75979,115,4376_20046,The Square,105217163,1,4376_7778022_100541,4376_160 -4289_75979,260,4376_20047,The Square,105311535,1,4376_7778022_100930,4376_158 -4289_75979,261,4376_20048,The Square,105321535,1,4376_7778022_100930,4376_158 -4289_75979,262,4376_20049,The Square,105431535,1,4376_7778022_100930,4376_158 -4289_75962,264,4376_2005,Brides Glen Luas,105652627,1,4376_7778022_104030,4376_25 -4289_75979,263,4376_20050,The Square,105541535,1,4376_7778022_100930,4376_158 -4289_75979,264,4376_20051,The Square,105651535,1,4376_7778022_100930,4376_158 -4289_75979,265,4376_20052,The Square,105811535,1,4376_7778022_100930,4376_158 -4289_75979,266,4376_20053,The Square,105821535,1,4376_7778022_100930,4376_158 -4289_75979,267,4376_20054,The Square,106051535,1,4376_7778022_100930,4376_158 -4289_75979,268,4376_20055,The Square,106141535,1,4376_7778022_100930,4376_158 -4289_75979,269,4376_20056,The Square,106231535,1,4376_7778022_100930,4376_158 -4289_75979,259,4376_20057,The Square,105764389,1,4376_7778022_100731,4376_159 -4289_75979,270,4376_20058,The Square,105277191,1,4376_7778022_100560,4376_158 -4289_75979,146,4376_20059,The Square,105247191,1,4376_7778022_100560,4376_158 -4289_75962,265,4376_2006,Brides Glen Luas,105812627,1,4376_7778022_104030,4376_25 -4289_75979,271,4376_20060,The Square,105237191,1,4376_7778022_100560,4376_158 -4289_75979,115,4376_20061,The Square,105217191,1,4376_7778022_100560,4376_158 -4289_75979,260,4376_20062,The Square,105311567,1,4376_7778022_100890,4376_158 -4289_75979,261,4376_20063,The Square,105321567,1,4376_7778022_100890,4376_158 -4289_75979,262,4376_20064,The Square,105431567,1,4376_7778022_100890,4376_158 -4289_75979,263,4376_20065,The Square,105541567,1,4376_7778022_100890,4376_158 -4289_75979,264,4376_20066,The Square,105651567,1,4376_7778022_100890,4376_158 -4289_75979,265,4376_20067,The Square,105811567,1,4376_7778022_100890,4376_158 -4289_75979,266,4376_20068,The Square,105821567,1,4376_7778022_100890,4376_158 -4289_75979,267,4376_20069,The Square,106051567,1,4376_7778022_100890,4376_158 -4289_75962,266,4376_2007,Brides Glen Luas,105822627,1,4376_7778022_104030,4376_25 -4289_75979,268,4376_20070,The Square,106141567,1,4376_7778022_100890,4376_158 -4289_75979,269,4376_20071,The Square,106231567,1,4376_7778022_100890,4376_158 -4289_75979,259,4376_20072,The Square,105764421,1,4376_7778022_100660,4376_159 -4289_75979,270,4376_20073,The Square,105277225,1,4376_7778022_100531,4376_158 -4289_75979,146,4376_20074,The Square,105247225,1,4376_7778022_100531,4376_158 -4289_75979,271,4376_20075,The Square,105237225,1,4376_7778022_100531,4376_158 -4289_75979,115,4376_20076,The Square,105217225,1,4376_7778022_100531,4376_158 -4289_75979,260,4376_20077,The Square,105311589,1,4376_7778022_100860,4376_158 -4289_75979,261,4376_20078,The Square,105321589,1,4376_7778022_100860,4376_158 -4289_75979,262,4376_20079,The Square,105431589,1,4376_7778022_100860,4376_158 -4289_75962,267,4376_2008,Brides Glen Luas,106052627,1,4376_7778022_104030,4376_25 -4289_75979,263,4376_20080,The Square,105541589,1,4376_7778022_100860,4376_158 -4289_75979,264,4376_20081,The Square,105651589,1,4376_7778022_100860,4376_158 -4289_75979,265,4376_20082,The Square,105811589,1,4376_7778022_100860,4376_158 -4289_75979,266,4376_20083,The Square,105821589,1,4376_7778022_100860,4376_158 -4289_75979,267,4376_20084,The Square,106051589,1,4376_7778022_100860,4376_158 -4289_75979,268,4376_20085,The Square,106141589,1,4376_7778022_100860,4376_158 -4289_75979,269,4376_20086,The Square,106231589,1,4376_7778022_100860,4376_158 -4289_75979,259,4376_20087,The Square,105764441,1,4376_7778022_100681,4376_159 -4289_75979,260,4376_20088,The Square,105311619,1,4376_7778022_100800,4376_158 -4289_75979,261,4376_20089,The Square,105321619,1,4376_7778022_100800,4376_158 -4289_75962,268,4376_2009,Brides Glen Luas,106142627,1,4376_7778022_104030,4376_25 -4289_75979,262,4376_20090,The Square,105431619,1,4376_7778022_100800,4376_158 -4289_75979,263,4376_20091,The Square,105541619,1,4376_7778022_100800,4376_158 -4289_75979,264,4376_20092,The Square,105651619,1,4376_7778022_100800,4376_158 -4289_75979,265,4376_20093,The Square,105811619,1,4376_7778022_100800,4376_158 -4289_75979,266,4376_20094,The Square,105821619,1,4376_7778022_100800,4376_158 -4289_75979,267,4376_20095,The Square,106051619,1,4376_7778022_100800,4376_158 -4289_75979,268,4376_20096,The Square,106141619,1,4376_7778022_100800,4376_158 -4289_75979,269,4376_20097,The Square,106231619,1,4376_7778022_100800,4376_158 -4289_75979,259,4376_20098,The Square,105764469,1,4376_7778022_100750,4376_159 -4289_75979,270,4376_20099,The Square,105277255,1,4376_7778022_100581,4376_160 -4289_75960,115,4376_201,Sutton Station,105217394,0,4376_7778022_103501,4376_1 -4289_75962,269,4376_2010,Brides Glen Luas,106232627,1,4376_7778022_104030,4376_25 -4289_75979,146,4376_20100,The Square,105247255,1,4376_7778022_100581,4376_160 -4289_75979,271,4376_20101,The Square,105237255,1,4376_7778022_100581,4376_160 -4289_75979,115,4376_20102,The Square,105217255,1,4376_7778022_100581,4376_160 -4289_75979,260,4376_20103,The Square,105311641,1,4376_7778022_100901,4376_158 -4289_75979,261,4376_20104,The Square,105321641,1,4376_7778022_100901,4376_158 -4289_75979,262,4376_20105,The Square,105431641,1,4376_7778022_100901,4376_158 -4289_75979,263,4376_20106,The Square,105541641,1,4376_7778022_100901,4376_158 -4289_75979,264,4376_20107,The Square,105651641,1,4376_7778022_100901,4376_158 -4289_75979,265,4376_20108,The Square,105811641,1,4376_7778022_100901,4376_158 -4289_75979,266,4376_20109,The Square,105821641,1,4376_7778022_100901,4376_158 -4289_75962,259,4376_2011,Brides Glen Luas,105765333,1,4376_7778022_104024,4376_25 -4289_75979,267,4376_20110,The Square,106051641,1,4376_7778022_100901,4376_158 -4289_75979,268,4376_20111,The Square,106141641,1,4376_7778022_100901,4376_158 -4289_75979,269,4376_20112,The Square,106231641,1,4376_7778022_100901,4376_158 -4289_75979,259,4376_20113,The Square,105764491,1,4376_7778022_100701,4376_159 -4289_75979,270,4376_20114,The Square,105277281,1,4376_7778022_100551,4376_158 -4289_75979,146,4376_20115,The Square,105247281,1,4376_7778022_100551,4376_158 -4289_75979,271,4376_20116,The Square,105237281,1,4376_7778022_100551,4376_158 -4289_75979,115,4376_20117,The Square,105217281,1,4376_7778022_100551,4376_158 -4289_75979,260,4376_20118,The Square,105311675,1,4376_7778022_100910,4376_158 -4289_75979,261,4376_20119,The Square,105321675,1,4376_7778022_100910,4376_158 -4289_75962,270,4376_2012,Brides Glen Luas,105278033,1,4376_7778022_100150,4376_28 -4289_75979,262,4376_20120,The Square,105431675,1,4376_7778022_100910,4376_158 -4289_75979,263,4376_20121,The Square,105541675,1,4376_7778022_100910,4376_158 -4289_75979,264,4376_20122,The Square,105651675,1,4376_7778022_100910,4376_158 -4289_75979,265,4376_20123,The Square,105811675,1,4376_7778022_100910,4376_158 -4289_75979,266,4376_20124,The Square,105821675,1,4376_7778022_100910,4376_158 -4289_75979,267,4376_20125,The Square,106051675,1,4376_7778022_100910,4376_158 -4289_75979,268,4376_20126,The Square,106141675,1,4376_7778022_100910,4376_158 -4289_75979,269,4376_20127,The Square,106231675,1,4376_7778022_100910,4376_158 -4289_75979,259,4376_20128,The Square,105764523,1,4376_7778022_100760,4376_159 -4289_75979,270,4376_20129,The Square,105277313,1,4376_7778022_100570,4376_158 -4289_75962,146,4376_2013,Brides Glen Luas,105248033,1,4376_7778022_100150,4376_28 -4289_75979,146,4376_20130,The Square,105247313,1,4376_7778022_100570,4376_158 -4289_75979,271,4376_20131,The Square,105237313,1,4376_7778022_100570,4376_158 -4289_75979,115,4376_20132,The Square,105217313,1,4376_7778022_100570,4376_158 -4289_75979,260,4376_20133,The Square,105311699,1,4376_7778022_100920,4376_158 -4289_75979,261,4376_20134,The Square,105321699,1,4376_7778022_100920,4376_158 -4289_75979,262,4376_20135,The Square,105431699,1,4376_7778022_100920,4376_158 -4289_75979,263,4376_20136,The Square,105541699,1,4376_7778022_100920,4376_158 -4289_75979,264,4376_20137,The Square,105651699,1,4376_7778022_100920,4376_158 -4289_75979,265,4376_20138,The Square,105811699,1,4376_7778022_100920,4376_158 -4289_75979,266,4376_20139,The Square,105821699,1,4376_7778022_100920,4376_158 -4289_75962,271,4376_2014,Brides Glen Luas,105238033,1,4376_7778022_100150,4376_28 -4289_75979,267,4376_20140,The Square,106051699,1,4376_7778022_100920,4376_158 -4289_75979,268,4376_20141,The Square,106141699,1,4376_7778022_100920,4376_158 -4289_75979,269,4376_20142,The Square,106231699,1,4376_7778022_100920,4376_158 -4289_75979,259,4376_20143,The Square,105764545,1,4376_7778022_100721,4376_159 -4289_75979,260,4376_20144,The Square,105311727,1,4376_7778022_100821,4376_158 -4289_75979,261,4376_20145,The Square,105321727,1,4376_7778022_100821,4376_158 -4289_75979,262,4376_20146,The Square,105431727,1,4376_7778022_100821,4376_158 -4289_75979,263,4376_20147,The Square,105541727,1,4376_7778022_100821,4376_158 -4289_75979,264,4376_20148,The Square,105651727,1,4376_7778022_100821,4376_158 -4289_75979,265,4376_20149,The Square,105811727,1,4376_7778022_100821,4376_158 -4289_75962,115,4376_2015,Brides Glen Luas,105218033,1,4376_7778022_100150,4376_28 -4289_75979,266,4376_20150,The Square,105821727,1,4376_7778022_100821,4376_158 -4289_75979,267,4376_20151,The Square,106051727,1,4376_7778022_100821,4376_158 -4289_75979,268,4376_20152,The Square,106141727,1,4376_7778022_100821,4376_158 -4289_75979,269,4376_20153,The Square,106231727,1,4376_7778022_100821,4376_158 -4289_75979,259,4376_20154,The Square,105764573,1,4376_7778022_100671,4376_159 -4289_75979,270,4376_20155,The Square,105277345,1,4376_7778022_100520,4376_160 -4289_75979,146,4376_20156,The Square,105247345,1,4376_7778022_100520,4376_160 -4289_75979,271,4376_20157,The Square,105237345,1,4376_7778022_100520,4376_160 -4289_75979,115,4376_20158,The Square,105217345,1,4376_7778022_100520,4376_160 -4289_75979,260,4376_20159,The Square,105311749,1,4376_7778022_100831,4376_158 -4289_75962,260,4376_2016,Brides Glen Luas,105312721,1,4376_7778022_100173,4376_25 -4289_75979,261,4376_20160,The Square,105321749,1,4376_7778022_100831,4376_158 -4289_75979,262,4376_20161,The Square,105431749,1,4376_7778022_100831,4376_158 -4289_75979,263,4376_20162,The Square,105541749,1,4376_7778022_100831,4376_158 -4289_75979,264,4376_20163,The Square,105651749,1,4376_7778022_100831,4376_158 -4289_75979,265,4376_20164,The Square,105811749,1,4376_7778022_100831,4376_158 -4289_75979,266,4376_20165,The Square,105821749,1,4376_7778022_100831,4376_158 -4289_75979,267,4376_20166,The Square,106051749,1,4376_7778022_100831,4376_158 -4289_75979,268,4376_20167,The Square,106141749,1,4376_7778022_100831,4376_158 -4289_75979,269,4376_20168,The Square,106231749,1,4376_7778022_100831,4376_158 -4289_75979,259,4376_20169,The Square,105764593,1,4376_7778022_100690,4376_159 -4289_75962,261,4376_2017,Brides Glen Luas,105322721,1,4376_7778022_100173,4376_25 -4289_75979,270,4376_20170,The Square,105277375,1,4376_7778022_100590,4376_158 -4289_75979,146,4376_20171,The Square,105247375,1,4376_7778022_100590,4376_158 -4289_75979,271,4376_20172,The Square,105237375,1,4376_7778022_100590,4376_158 -4289_75979,115,4376_20173,The Square,105217375,1,4376_7778022_100590,4376_158 -4289_75979,260,4376_20174,The Square,105311783,1,4376_7778022_100810,4376_158 -4289_75979,261,4376_20175,The Square,105321783,1,4376_7778022_100810,4376_158 -4289_75979,262,4376_20176,The Square,105431783,1,4376_7778022_100810,4376_158 -4289_75979,263,4376_20177,The Square,105541783,1,4376_7778022_100810,4376_158 -4289_75979,264,4376_20178,The Square,105651783,1,4376_7778022_100810,4376_158 -4289_75979,265,4376_20179,The Square,105811783,1,4376_7778022_100810,4376_158 -4289_75962,262,4376_2018,Brides Glen Luas,105432721,1,4376_7778022_100173,4376_25 -4289_75979,266,4376_20180,The Square,105821783,1,4376_7778022_100810,4376_158 -4289_75979,267,4376_20181,The Square,106051783,1,4376_7778022_100810,4376_158 -4289_75979,268,4376_20182,The Square,106141783,1,4376_7778022_100810,4376_158 -4289_75979,269,4376_20183,The Square,106231783,1,4376_7778022_100810,4376_158 -4289_75979,259,4376_20184,The Square,105764627,1,4376_7778022_100711,4376_159 -4289_75979,270,4376_20185,The Square,105277405,1,4376_7778022_100541,4376_158 -4289_75979,146,4376_20186,The Square,105247405,1,4376_7778022_100541,4376_158 -4289_75979,271,4376_20187,The Square,105237405,1,4376_7778022_100541,4376_158 -4289_75979,115,4376_20188,The Square,105217405,1,4376_7778022_100541,4376_158 -4289_75979,260,4376_20189,The Square,105311807,1,4376_7778022_100850,4376_158 -4289_75962,263,4376_2019,Brides Glen Luas,105542721,1,4376_7778022_100173,4376_25 -4289_75979,261,4376_20190,The Square,105321807,1,4376_7778022_100850,4376_158 -4289_75979,262,4376_20191,The Square,105431807,1,4376_7778022_100850,4376_158 -4289_75979,263,4376_20192,The Square,105541807,1,4376_7778022_100850,4376_158 -4289_75979,264,4376_20193,The Square,105651807,1,4376_7778022_100850,4376_158 -4289_75979,265,4376_20194,The Square,105811807,1,4376_7778022_100850,4376_158 -4289_75979,266,4376_20195,The Square,105821807,1,4376_7778022_100850,4376_158 -4289_75979,267,4376_20196,The Square,106051807,1,4376_7778022_100850,4376_158 -4289_75979,268,4376_20197,The Square,106141807,1,4376_7778022_100850,4376_158 -4289_75979,269,4376_20198,The Square,106231807,1,4376_7778022_100850,4376_158 -4289_75979,259,4376_20199,The Square,105764647,1,4376_7778022_100740,4376_159 -4289_75960,260,4376_202,Sutton Station,105311866,0,4376_7778022_103502,4376_1 -4289_75962,264,4376_2020,Brides Glen Luas,105652721,1,4376_7778022_100173,4376_25 -4289_75979,260,4376_20200,The Square,105311837,1,4376_7778022_100871,4376_158 -4289_75979,261,4376_20201,The Square,105321837,1,4376_7778022_100871,4376_158 -4289_75979,262,4376_20202,The Square,105431837,1,4376_7778022_100871,4376_158 -4289_75979,263,4376_20203,The Square,105541837,1,4376_7778022_100871,4376_158 -4289_75979,264,4376_20204,The Square,105651837,1,4376_7778022_100871,4376_158 -4289_75979,265,4376_20205,The Square,105811837,1,4376_7778022_100871,4376_158 -4289_75979,266,4376_20206,The Square,105821837,1,4376_7778022_100871,4376_158 -4289_75979,267,4376_20207,The Square,106051837,1,4376_7778022_100871,4376_158 -4289_75979,268,4376_20208,The Square,106141837,1,4376_7778022_100871,4376_158 -4289_75979,269,4376_20209,The Square,106231837,1,4376_7778022_100871,4376_158 -4289_75962,265,4376_2021,Brides Glen Luas,105812721,1,4376_7778022_100173,4376_25 -4289_75979,259,4376_20210,The Square,105764675,1,4376_7778022_100770,4376_159 -4289_75979,270,4376_20211,The Square,105277435,1,4376_7778022_100560,4376_160 -4289_75979,146,4376_20212,The Square,105247435,1,4376_7778022_100560,4376_160 -4289_75979,271,4376_20213,The Square,105237435,1,4376_7778022_100560,4376_160 -4289_75979,115,4376_20214,The Square,105217435,1,4376_7778022_100560,4376_160 -4289_75979,260,4376_20215,The Square,105311867,1,4376_7778022_100930,4376_158 -4289_75979,261,4376_20216,The Square,105321867,1,4376_7778022_100930,4376_158 -4289_75979,262,4376_20217,The Square,105431867,1,4376_7778022_100930,4376_158 -4289_75979,263,4376_20218,The Square,105541867,1,4376_7778022_100930,4376_158 -4289_75979,264,4376_20219,The Square,105651867,1,4376_7778022_100930,4376_158 -4289_75962,266,4376_2022,Brides Glen Luas,105822721,1,4376_7778022_100173,4376_25 -4289_75979,265,4376_20220,The Square,105811867,1,4376_7778022_100930,4376_158 -4289_75979,266,4376_20221,The Square,105821867,1,4376_7778022_100930,4376_158 -4289_75979,267,4376_20222,The Square,106051867,1,4376_7778022_100930,4376_158 -4289_75979,268,4376_20223,The Square,106141867,1,4376_7778022_100930,4376_158 -4289_75979,269,4376_20224,The Square,106231867,1,4376_7778022_100930,4376_158 -4289_75979,259,4376_20225,The Square,105764697,1,4376_7778022_100731,4376_159 -4289_75979,270,4376_20226,The Square,105277467,1,4376_7778022_100531,4376_158 -4289_75979,146,4376_20227,The Square,105247467,1,4376_7778022_100531,4376_158 -4289_75979,271,4376_20228,The Square,105237467,1,4376_7778022_100531,4376_158 -4289_75979,115,4376_20229,The Square,105217467,1,4376_7778022_100531,4376_158 -4289_75962,267,4376_2023,Brides Glen Luas,106052721,1,4376_7778022_100173,4376_25 -4289_75979,260,4376_20230,The Square,105311899,1,4376_7778022_100890,4376_158 -4289_75979,261,4376_20231,The Square,105321899,1,4376_7778022_100890,4376_158 -4289_75979,262,4376_20232,The Square,105431899,1,4376_7778022_100890,4376_158 -4289_75979,263,4376_20233,The Square,105541899,1,4376_7778022_100890,4376_158 -4289_75979,264,4376_20234,The Square,105651899,1,4376_7778022_100890,4376_158 -4289_75979,265,4376_20235,The Square,105811899,1,4376_7778022_100890,4376_158 -4289_75979,266,4376_20236,The Square,105821899,1,4376_7778022_100890,4376_158 -4289_75979,267,4376_20237,The Square,106051899,1,4376_7778022_100890,4376_158 -4289_75979,268,4376_20238,The Square,106141899,1,4376_7778022_100890,4376_158 -4289_75979,269,4376_20239,The Square,106231899,1,4376_7778022_100890,4376_158 -4289_75962,268,4376_2024,Brides Glen Luas,106142721,1,4376_7778022_100173,4376_25 -4289_75979,259,4376_20240,The Square,105764729,1,4376_7778022_100660,4376_159 -4289_75979,270,4376_20241,The Square,105277495,1,4376_7778022_100581,4376_158 -4289_75979,146,4376_20242,The Square,105247495,1,4376_7778022_100581,4376_158 -4289_75979,271,4376_20243,The Square,105237495,1,4376_7778022_100581,4376_158 -4289_75979,115,4376_20244,The Square,105217495,1,4376_7778022_100581,4376_158 -4289_75979,260,4376_20245,The Square,105311921,1,4376_7778022_100860,4376_158 -4289_75979,261,4376_20246,The Square,105321921,1,4376_7778022_100860,4376_158 -4289_75979,262,4376_20247,The Square,105431921,1,4376_7778022_100860,4376_158 -4289_75979,263,4376_20248,The Square,105541921,1,4376_7778022_100860,4376_158 -4289_75979,264,4376_20249,The Square,105651921,1,4376_7778022_100860,4376_158 -4289_75962,269,4376_2025,Brides Glen Luas,106232721,1,4376_7778022_100173,4376_25 -4289_75979,265,4376_20250,The Square,105811921,1,4376_7778022_100860,4376_158 -4289_75979,266,4376_20251,The Square,105821921,1,4376_7778022_100860,4376_158 -4289_75979,267,4376_20252,The Square,106051921,1,4376_7778022_100860,4376_158 -4289_75979,268,4376_20253,The Square,106141921,1,4376_7778022_100860,4376_158 -4289_75979,269,4376_20254,The Square,106231921,1,4376_7778022_100860,4376_158 -4289_75979,259,4376_20255,The Square,105764749,1,4376_7778022_100681,4376_159 -4289_75979,260,4376_20256,The Square,105311951,1,4376_7778022_100800,4376_158 -4289_75979,261,4376_20257,The Square,105321951,1,4376_7778022_100800,4376_158 -4289_75979,262,4376_20258,The Square,105431951,1,4376_7778022_100800,4376_158 -4289_75979,263,4376_20259,The Square,105541951,1,4376_7778022_100800,4376_158 -4289_75962,259,4376_2026,Brides Glen Luas,105765419,1,4376_7778022_104043,4376_25 -4289_75979,264,4376_20260,The Square,105651951,1,4376_7778022_100800,4376_158 -4289_75979,265,4376_20261,The Square,105811951,1,4376_7778022_100800,4376_158 -4289_75979,266,4376_20262,The Square,105821951,1,4376_7778022_100800,4376_158 -4289_75979,267,4376_20263,The Square,106051951,1,4376_7778022_100800,4376_158 -4289_75979,268,4376_20264,The Square,106141951,1,4376_7778022_100800,4376_158 -4289_75979,269,4376_20265,The Square,106231951,1,4376_7778022_100800,4376_158 -4289_75979,259,4376_20266,The Square,105764779,1,4376_7778022_100750,4376_159 -4289_75979,270,4376_20267,The Square,105277527,1,4376_7778022_100551,4376_160 -4289_75979,146,4376_20268,The Square,105247527,1,4376_7778022_100551,4376_160 -4289_75979,271,4376_20269,The Square,105237527,1,4376_7778022_100551,4376_160 -4289_75962,270,4376_2027,Brides Glen Luas,105278115,1,4376_7778022_100140,4376_28 -4289_75979,115,4376_20270,The Square,105217527,1,4376_7778022_100551,4376_160 -4289_75979,260,4376_20271,The Square,105311973,1,4376_7778022_100901,4376_158 -4289_75979,261,4376_20272,The Square,105321973,1,4376_7778022_100901,4376_158 -4289_75979,262,4376_20273,The Square,105431973,1,4376_7778022_100901,4376_158 -4289_75979,263,4376_20274,The Square,105541973,1,4376_7778022_100901,4376_158 -4289_75979,264,4376_20275,The Square,105651973,1,4376_7778022_100901,4376_158 -4289_75979,265,4376_20276,The Square,105811973,1,4376_7778022_100901,4376_158 -4289_75979,266,4376_20277,The Square,105821973,1,4376_7778022_100901,4376_158 -4289_75979,267,4376_20278,The Square,106051973,1,4376_7778022_100901,4376_158 -4289_75979,268,4376_20279,The Square,106141973,1,4376_7778022_100901,4376_158 -4289_75962,146,4376_2028,Brides Glen Luas,105248115,1,4376_7778022_100140,4376_28 -4289_75979,269,4376_20280,The Square,106231973,1,4376_7778022_100901,4376_158 -4289_75979,259,4376_20281,The Square,105764799,1,4376_7778022_100701,4376_159 -4289_75979,270,4376_20282,The Square,105277557,1,4376_7778022_100570,4376_158 -4289_75979,146,4376_20283,The Square,105247557,1,4376_7778022_100570,4376_158 -4289_75979,271,4376_20284,The Square,105237557,1,4376_7778022_100570,4376_158 -4289_75979,115,4376_20285,The Square,105217557,1,4376_7778022_100570,4376_158 -4289_75979,260,4376_20286,The Square,105312007,1,4376_7778022_100910,4376_158 -4289_75979,261,4376_20287,The Square,105322007,1,4376_7778022_100910,4376_158 -4289_75979,262,4376_20288,The Square,105432007,1,4376_7778022_100910,4376_158 -4289_75979,263,4376_20289,The Square,105542007,1,4376_7778022_100910,4376_158 -4289_75962,271,4376_2029,Brides Glen Luas,105238115,1,4376_7778022_100140,4376_28 -4289_75979,264,4376_20290,The Square,105652007,1,4376_7778022_100910,4376_158 -4289_75979,265,4376_20291,The Square,105812007,1,4376_7778022_100910,4376_158 -4289_75979,266,4376_20292,The Square,105822007,1,4376_7778022_100910,4376_158 -4289_75979,267,4376_20293,The Square,106052007,1,4376_7778022_100910,4376_158 -4289_75979,268,4376_20294,The Square,106142007,1,4376_7778022_100910,4376_158 -4289_75979,269,4376_20295,The Square,106232007,1,4376_7778022_100910,4376_158 -4289_75979,259,4376_20296,The Square,105764829,1,4376_7778022_100760,4376_159 -4289_75979,270,4376_20297,The Square,105277583,1,4376_7778022_100520,4376_158 -4289_75979,146,4376_20298,The Square,105247583,1,4376_7778022_100520,4376_158 -4289_75979,271,4376_20299,The Square,105237583,1,4376_7778022_100520,4376_158 -4289_75960,261,4376_203,Sutton Station,105321866,0,4376_7778022_103502,4376_1 -4289_75962,115,4376_2030,Brides Glen Luas,105218115,1,4376_7778022_100140,4376_28 -4289_75979,115,4376_20300,The Square,105217583,1,4376_7778022_100520,4376_158 -4289_75979,260,4376_20301,The Square,105312033,1,4376_7778022_100920,4376_158 -4289_75979,261,4376_20302,The Square,105322033,1,4376_7778022_100920,4376_158 -4289_75979,262,4376_20303,The Square,105432033,1,4376_7778022_100920,4376_158 -4289_75979,263,4376_20304,The Square,105542033,1,4376_7778022_100920,4376_158 -4289_75979,264,4376_20305,The Square,105652033,1,4376_7778022_100920,4376_158 -4289_75979,265,4376_20306,The Square,105812033,1,4376_7778022_100920,4376_158 -4289_75979,266,4376_20307,The Square,105822033,1,4376_7778022_100920,4376_158 -4289_75979,267,4376_20308,The Square,106052033,1,4376_7778022_100920,4376_158 -4289_75979,268,4376_20309,The Square,106142033,1,4376_7778022_100920,4376_158 -4289_75962,260,4376_2031,Brides Glen Luas,105312819,1,4376_7778022_100192,4376_25 -4289_75979,269,4376_20310,The Square,106232033,1,4376_7778022_100920,4376_158 -4289_75979,259,4376_20311,The Square,105764853,1,4376_7778022_100721,4376_159 -4289_75979,260,4376_20312,The Square,105312067,1,4376_7778022_100821,4376_158 -4289_75979,261,4376_20313,The Square,105322067,1,4376_7778022_100821,4376_158 -4289_75979,262,4376_20314,The Square,105432067,1,4376_7778022_100821,4376_158 -4289_75979,263,4376_20315,The Square,105542067,1,4376_7778022_100821,4376_158 -4289_75979,264,4376_20316,The Square,105652067,1,4376_7778022_100821,4376_158 -4289_75979,265,4376_20317,The Square,105812067,1,4376_7778022_100821,4376_158 -4289_75979,266,4376_20318,The Square,105822067,1,4376_7778022_100821,4376_158 -4289_75979,267,4376_20319,The Square,106052067,1,4376_7778022_100821,4376_158 -4289_75962,261,4376_2032,Brides Glen Luas,105322819,1,4376_7778022_100192,4376_25 -4289_75979,268,4376_20320,The Square,106142067,1,4376_7778022_100821,4376_158 -4289_75979,269,4376_20321,The Square,106232067,1,4376_7778022_100821,4376_158 -4289_75979,259,4376_20322,The Square,105764881,1,4376_7778022_100671,4376_159 -4289_75979,270,4376_20323,The Square,105277617,1,4376_7778022_100590,4376_160 -4289_75979,146,4376_20324,The Square,105247617,1,4376_7778022_100590,4376_160 -4289_75979,271,4376_20325,The Square,105237617,1,4376_7778022_100590,4376_160 -4289_75979,115,4376_20326,The Square,105217617,1,4376_7778022_100590,4376_160 -4289_75979,260,4376_20327,The Square,105312091,1,4376_7778022_100831,4376_158 -4289_75979,261,4376_20328,The Square,105322091,1,4376_7778022_100831,4376_158 -4289_75979,262,4376_20329,The Square,105432091,1,4376_7778022_100831,4376_158 -4289_75962,262,4376_2033,Brides Glen Luas,105432819,1,4376_7778022_100192,4376_25 -4289_75979,263,4376_20330,The Square,105542091,1,4376_7778022_100831,4376_158 -4289_75979,264,4376_20331,The Square,105652091,1,4376_7778022_100831,4376_158 -4289_75979,265,4376_20332,The Square,105812091,1,4376_7778022_100831,4376_158 -4289_75979,266,4376_20333,The Square,105822091,1,4376_7778022_100831,4376_158 -4289_75979,267,4376_20334,The Square,106052091,1,4376_7778022_100831,4376_158 -4289_75979,268,4376_20335,The Square,106142091,1,4376_7778022_100831,4376_158 -4289_75979,269,4376_20336,The Square,106232091,1,4376_7778022_100831,4376_158 -4289_75979,259,4376_20337,The Square,105764901,1,4376_7778022_100690,4376_159 -4289_75979,270,4376_20338,The Square,105277647,1,4376_7778022_100541,4376_158 -4289_75979,146,4376_20339,The Square,105247647,1,4376_7778022_100541,4376_158 -4289_75962,263,4376_2034,Brides Glen Luas,105542819,1,4376_7778022_100192,4376_25 -4289_75979,271,4376_20340,The Square,105237647,1,4376_7778022_100541,4376_158 -4289_75979,115,4376_20341,The Square,105217647,1,4376_7778022_100541,4376_158 -4289_75979,260,4376_20342,The Square,105312127,1,4376_7778022_100810,4376_158 -4289_75979,261,4376_20343,The Square,105322127,1,4376_7778022_100810,4376_158 -4289_75979,262,4376_20344,The Square,105432127,1,4376_7778022_100810,4376_158 -4289_75979,263,4376_20345,The Square,105542127,1,4376_7778022_100810,4376_158 -4289_75979,264,4376_20346,The Square,105652127,1,4376_7778022_100810,4376_158 -4289_75979,265,4376_20347,The Square,105812127,1,4376_7778022_100810,4376_158 -4289_75979,266,4376_20348,The Square,105822127,1,4376_7778022_100810,4376_158 -4289_75979,267,4376_20349,The Square,106052127,1,4376_7778022_100810,4376_158 -4289_75962,264,4376_2035,Brides Glen Luas,105652819,1,4376_7778022_100192,4376_25 -4289_75979,268,4376_20350,The Square,106142127,1,4376_7778022_100810,4376_158 -4289_75979,269,4376_20351,The Square,106232127,1,4376_7778022_100810,4376_158 -4289_75979,259,4376_20352,The Square,105764933,1,4376_7778022_100711,4376_159 -4289_75979,270,4376_20353,The Square,105277677,1,4376_7778022_100560,4376_158 -4289_75979,146,4376_20354,The Square,105247677,1,4376_7778022_100560,4376_158 -4289_75979,271,4376_20355,The Square,105237677,1,4376_7778022_100560,4376_158 -4289_75979,115,4376_20356,The Square,105217677,1,4376_7778022_100560,4376_158 -4289_75979,260,4376_20357,The Square,105312167,1,4376_7778022_100882,4376_158 -4289_75979,261,4376_20358,The Square,105322167,1,4376_7778022_100882,4376_158 -4289_75979,262,4376_20359,The Square,105432167,1,4376_7778022_100882,4376_158 -4289_75962,265,4376_2036,Brides Glen Luas,105812819,1,4376_7778022_100192,4376_25 -4289_75979,263,4376_20360,The Square,105542167,1,4376_7778022_100882,4376_158 -4289_75979,264,4376_20361,The Square,105652167,1,4376_7778022_100882,4376_158 -4289_75979,265,4376_20362,The Square,105812167,1,4376_7778022_100882,4376_158 -4289_75979,266,4376_20363,The Square,105822167,1,4376_7778022_100882,4376_158 -4289_75979,267,4376_20364,The Square,106052167,1,4376_7778022_100882,4376_158 -4289_75979,268,4376_20365,The Square,106142167,1,4376_7778022_100882,4376_158 -4289_75979,269,4376_20366,The Square,106232167,1,4376_7778022_100882,4376_158 -4289_75979,259,4376_20367,The Square,105764955,1,4376_7778022_100740,4376_159 -4289_75979,260,4376_20368,The Square,105312203,1,4376_7778022_100850,4376_158 -4289_75979,261,4376_20369,The Square,105322203,1,4376_7778022_100850,4376_158 -4289_75962,266,4376_2037,Brides Glen Luas,105822819,1,4376_7778022_100192,4376_25 -4289_75979,262,4376_20370,The Square,105432203,1,4376_7778022_100850,4376_158 -4289_75979,263,4376_20371,The Square,105542203,1,4376_7778022_100850,4376_158 -4289_75979,264,4376_20372,The Square,105652203,1,4376_7778022_100850,4376_158 -4289_75979,265,4376_20373,The Square,105812203,1,4376_7778022_100850,4376_158 -4289_75979,266,4376_20374,The Square,105822203,1,4376_7778022_100850,4376_158 -4289_75979,267,4376_20375,The Square,106052203,1,4376_7778022_100850,4376_158 -4289_75979,268,4376_20376,The Square,106142203,1,4376_7778022_100850,4376_158 -4289_75979,269,4376_20377,The Square,106232203,1,4376_7778022_100850,4376_158 -4289_75979,259,4376_20378,The Square,105764983,1,4376_7778022_100770,4376_159 -4289_75979,270,4376_20379,The Square,105277707,1,4376_7778022_100531,4376_160 -4289_75962,267,4376_2038,Brides Glen Luas,106052819,1,4376_7778022_100192,4376_25 -4289_75979,146,4376_20380,The Square,105247707,1,4376_7778022_100531,4376_160 -4289_75979,271,4376_20381,The Square,105237707,1,4376_7778022_100531,4376_160 -4289_75979,115,4376_20382,The Square,105217707,1,4376_7778022_100531,4376_160 -4289_75979,260,4376_20383,The Square,105312253,1,4376_7778022_100871,4376_158 -4289_75979,261,4376_20384,The Square,105322253,1,4376_7778022_100871,4376_158 -4289_75979,262,4376_20385,The Square,105432253,1,4376_7778022_100871,4376_158 -4289_75979,263,4376_20386,The Square,105542253,1,4376_7778022_100871,4376_158 -4289_75979,264,4376_20387,The Square,105652253,1,4376_7778022_100871,4376_158 -4289_75979,265,4376_20388,The Square,105812253,1,4376_7778022_100871,4376_158 -4289_75979,266,4376_20389,The Square,105822253,1,4376_7778022_100871,4376_158 -4289_75962,268,4376_2039,Brides Glen Luas,106142819,1,4376_7778022_100192,4376_25 -4289_75979,267,4376_20390,The Square,106052253,1,4376_7778022_100871,4376_158 -4289_75979,268,4376_20391,The Square,106142253,1,4376_7778022_100871,4376_158 -4289_75979,269,4376_20392,The Square,106232253,1,4376_7778022_100871,4376_158 -4289_75979,259,4376_20393,The Square,105765005,1,4376_7778022_100731,4376_159 -4289_75979,270,4376_20394,The Square,105277737,1,4376_7778022_100581,4376_158 -4289_75979,146,4376_20395,The Square,105247737,1,4376_7778022_100581,4376_158 -4289_75979,271,4376_20396,The Square,105237737,1,4376_7778022_100581,4376_158 -4289_75979,115,4376_20397,The Square,105217737,1,4376_7778022_100581,4376_158 -4289_75979,260,4376_20398,The Square,105312285,1,4376_7778022_100842,4376_158 -4289_75979,261,4376_20399,The Square,105322285,1,4376_7778022_100842,4376_158 -4289_75960,262,4376_204,Sutton Station,105431866,0,4376_7778022_103502,4376_1 -4289_75962,269,4376_2040,Brides Glen Luas,106232819,1,4376_7778022_100192,4376_25 -4289_75979,262,4376_20400,The Square,105432285,1,4376_7778022_100842,4376_158 -4289_75979,263,4376_20401,The Square,105542285,1,4376_7778022_100842,4376_158 -4289_75979,264,4376_20402,The Square,105652285,1,4376_7778022_100842,4376_158 -4289_75979,265,4376_20403,The Square,105812285,1,4376_7778022_100842,4376_158 -4289_75979,266,4376_20404,The Square,105822285,1,4376_7778022_100842,4376_158 -4289_75979,267,4376_20405,The Square,106052285,1,4376_7778022_100842,4376_158 -4289_75979,268,4376_20406,The Square,106142285,1,4376_7778022_100842,4376_158 -4289_75979,269,4376_20407,The Square,106232285,1,4376_7778022_100842,4376_158 -4289_75979,259,4376_20408,The Square,105765035,1,4376_7778022_100660,4376_159 -4289_75979,270,4376_20409,The Square,105277767,1,4376_7778022_100551,4376_158 -4289_75962,259,4376_2041,Brides Glen Luas,105765505,1,4376_7778022_104033,4376_25 -4289_75979,146,4376_20410,The Square,105247767,1,4376_7778022_100551,4376_158 -4289_75979,271,4376_20411,The Square,105237767,1,4376_7778022_100551,4376_158 -4289_75979,115,4376_20412,The Square,105217767,1,4376_7778022_100551,4376_158 -4289_75979,260,4376_20413,The Square,105312313,1,4376_7778022_100930,4376_158 -4289_75979,261,4376_20414,The Square,105322313,1,4376_7778022_100930,4376_158 -4289_75979,262,4376_20415,The Square,105432313,1,4376_7778022_100930,4376_158 -4289_75979,263,4376_20416,The Square,105542313,1,4376_7778022_100930,4376_158 -4289_75979,264,4376_20417,The Square,105652313,1,4376_7778022_100930,4376_158 -4289_75979,265,4376_20418,The Square,105812313,1,4376_7778022_100930,4376_158 -4289_75979,266,4376_20419,The Square,105822313,1,4376_7778022_100930,4376_158 -4289_75962,270,4376_2042,Brides Glen Luas,105278193,1,4376_7778022_100150,4376_28 -4289_75979,267,4376_20420,The Square,106052313,1,4376_7778022_100930,4376_158 -4289_75979,268,4376_20421,The Square,106142313,1,4376_7778022_100930,4376_158 -4289_75979,269,4376_20422,The Square,106232313,1,4376_7778022_100930,4376_158 -4289_75979,259,4376_20423,The Square,105765057,1,4376_7778022_100681,4376_159 -4289_75979,260,4376_20424,The Square,105312339,1,4376_7778022_100890,4376_158 -4289_75979,261,4376_20425,The Square,105322339,1,4376_7778022_100890,4376_158 -4289_75979,262,4376_20426,The Square,105432339,1,4376_7778022_100890,4376_158 -4289_75979,263,4376_20427,The Square,105542339,1,4376_7778022_100890,4376_158 -4289_75979,264,4376_20428,The Square,105652339,1,4376_7778022_100890,4376_158 -4289_75979,265,4376_20429,The Square,105812339,1,4376_7778022_100890,4376_158 -4289_75962,146,4376_2043,Brides Glen Luas,105248193,1,4376_7778022_100150,4376_28 -4289_75979,266,4376_20430,The Square,105822339,1,4376_7778022_100890,4376_158 -4289_75979,267,4376_20431,The Square,106052339,1,4376_7778022_100890,4376_158 -4289_75979,268,4376_20432,The Square,106142339,1,4376_7778022_100890,4376_158 -4289_75979,269,4376_20433,The Square,106232339,1,4376_7778022_100890,4376_158 -4289_75979,259,4376_20434,The Square,105765085,1,4376_7778022_100750,4376_159 -4289_75979,270,4376_20435,The Square,105277797,1,4376_7778022_100570,4376_159 -4289_75979,146,4376_20436,The Square,105247797,1,4376_7778022_100570,4376_159 -4289_75979,271,4376_20437,The Square,105237797,1,4376_7778022_100570,4376_159 -4289_75979,115,4376_20438,The Square,105217797,1,4376_7778022_100570,4376_159 -4289_75979,260,4376_20439,The Square,105312369,1,4376_7778022_100860,4376_158 -4289_75962,271,4376_2044,Brides Glen Luas,105238193,1,4376_7778022_100150,4376_28 -4289_75979,261,4376_20440,The Square,105322369,1,4376_7778022_100860,4376_158 -4289_75979,262,4376_20441,The Square,105432369,1,4376_7778022_100860,4376_158 -4289_75979,263,4376_20442,The Square,105542369,1,4376_7778022_100860,4376_158 -4289_75979,264,4376_20443,The Square,105652369,1,4376_7778022_100860,4376_158 -4289_75979,265,4376_20444,The Square,105812369,1,4376_7778022_100860,4376_158 -4289_75979,266,4376_20445,The Square,105822369,1,4376_7778022_100860,4376_158 -4289_75979,267,4376_20446,The Square,106052369,1,4376_7778022_100860,4376_158 -4289_75979,268,4376_20447,The Square,106142369,1,4376_7778022_100860,4376_158 -4289_75979,269,4376_20448,The Square,106232369,1,4376_7778022_100860,4376_158 -4289_75979,259,4376_20449,The Square,105765107,1,4376_7778022_100701,4376_159 -4289_75962,115,4376_2045,Brides Glen Luas,105218193,1,4376_7778022_100150,4376_28 -4289_75979,270,4376_20450,The Square,105277827,1,4376_7778022_100520,4376_158 -4289_75979,146,4376_20451,The Square,105247827,1,4376_7778022_100520,4376_158 -4289_75979,271,4376_20452,The Square,105237827,1,4376_7778022_100520,4376_158 -4289_75979,115,4376_20453,The Square,105217827,1,4376_7778022_100520,4376_158 -4289_75979,260,4376_20454,The Square,105312403,1,4376_7778022_100800,4376_158 -4289_75979,261,4376_20455,The Square,105322403,1,4376_7778022_100800,4376_158 -4289_75979,262,4376_20456,The Square,105432403,1,4376_7778022_100800,4376_158 -4289_75979,263,4376_20457,The Square,105542403,1,4376_7778022_100800,4376_158 -4289_75979,264,4376_20458,The Square,105652403,1,4376_7778022_100800,4376_158 -4289_75979,265,4376_20459,The Square,105812403,1,4376_7778022_100800,4376_158 -4289_75962,260,4376_2046,Brides Glen Luas,105312911,1,4376_7778022_104073,4376_25 -4289_75979,266,4376_20460,The Square,105822403,1,4376_7778022_100800,4376_158 -4289_75979,267,4376_20461,The Square,106052403,1,4376_7778022_100800,4376_158 -4289_75979,268,4376_20462,The Square,106142403,1,4376_7778022_100800,4376_158 -4289_75979,269,4376_20463,The Square,106232403,1,4376_7778022_100800,4376_158 -4289_75979,259,4376_20464,The Square,105765135,1,4376_7778022_100760,4376_159 -4289_75979,270,4376_20465,The Square,105277855,1,4376_7778022_100590,4376_158 -4289_75979,146,4376_20466,The Square,105247855,1,4376_7778022_100590,4376_158 -4289_75979,271,4376_20467,The Square,105237855,1,4376_7778022_100590,4376_158 -4289_75979,115,4376_20468,The Square,105217855,1,4376_7778022_100590,4376_158 -4289_75979,260,4376_20469,The Square,105312429,1,4376_7778022_100901,4376_158 -4289_75962,261,4376_2047,Brides Glen Luas,105322911,1,4376_7778022_104073,4376_25 -4289_75979,261,4376_20470,The Square,105322429,1,4376_7778022_100901,4376_158 -4289_75979,262,4376_20471,The Square,105432429,1,4376_7778022_100901,4376_158 -4289_75979,263,4376_20472,The Square,105542429,1,4376_7778022_100901,4376_158 -4289_75979,264,4376_20473,The Square,105652429,1,4376_7778022_100901,4376_158 -4289_75979,265,4376_20474,The Square,105812429,1,4376_7778022_100901,4376_158 -4289_75979,266,4376_20475,The Square,105822429,1,4376_7778022_100901,4376_158 -4289_75979,267,4376_20476,The Square,106052429,1,4376_7778022_100901,4376_158 -4289_75979,268,4376_20477,The Square,106142429,1,4376_7778022_100901,4376_158 -4289_75979,269,4376_20478,The Square,106232429,1,4376_7778022_100901,4376_158 -4289_75979,259,4376_20479,The Square,105765163,1,4376_7778022_100721,4376_159 -4289_75962,262,4376_2048,Brides Glen Luas,105432911,1,4376_7778022_104073,4376_25 -4289_75979,260,4376_20480,The Square,105312457,1,4376_7778022_100910,4376_158 -4289_75979,261,4376_20481,The Square,105322457,1,4376_7778022_100910,4376_158 -4289_75979,262,4376_20482,The Square,105432457,1,4376_7778022_100910,4376_158 -4289_75979,263,4376_20483,The Square,105542457,1,4376_7778022_100910,4376_158 -4289_75979,264,4376_20484,The Square,105652457,1,4376_7778022_100910,4376_158 -4289_75979,265,4376_20485,The Square,105812457,1,4376_7778022_100910,4376_158 -4289_75979,266,4376_20486,The Square,105822457,1,4376_7778022_100910,4376_158 -4289_75979,267,4376_20487,The Square,106052457,1,4376_7778022_100910,4376_158 -4289_75979,268,4376_20488,The Square,106142457,1,4376_7778022_100910,4376_158 -4289_75979,269,4376_20489,The Square,106232457,1,4376_7778022_100910,4376_158 -4289_75962,263,4376_2049,Brides Glen Luas,105542911,1,4376_7778022_104073,4376_25 -4289_75979,259,4376_20490,The Square,105765183,1,4376_7778022_100671,4376_159 -4289_75979,270,4376_20491,The Square,105277885,1,4376_7778022_100541,4376_160 -4289_75979,146,4376_20492,The Square,105247885,1,4376_7778022_100541,4376_160 -4289_75979,271,4376_20493,The Square,105237885,1,4376_7778022_100541,4376_160 -4289_75979,115,4376_20494,The Square,105217885,1,4376_7778022_100541,4376_160 -4289_75979,260,4376_20495,The Square,105312483,1,4376_7778022_100920,4376_158 -4289_75979,261,4376_20496,The Square,105322483,1,4376_7778022_100920,4376_158 -4289_75979,262,4376_20497,The Square,105432483,1,4376_7778022_100920,4376_158 -4289_75979,263,4376_20498,The Square,105542483,1,4376_7778022_100920,4376_158 -4289_75979,264,4376_20499,The Square,105652483,1,4376_7778022_100920,4376_158 -4289_75960,263,4376_205,Sutton Station,105541866,0,4376_7778022_103502,4376_1 -4289_75962,264,4376_2050,Brides Glen Luas,105652911,1,4376_7778022_104073,4376_25 -4289_75979,265,4376_20500,The Square,105812483,1,4376_7778022_100920,4376_158 -4289_75979,266,4376_20501,The Square,105822483,1,4376_7778022_100920,4376_158 -4289_75979,267,4376_20502,The Square,106052483,1,4376_7778022_100920,4376_158 -4289_75979,268,4376_20503,The Square,106142483,1,4376_7778022_100920,4376_158 -4289_75979,269,4376_20504,The Square,106232483,1,4376_7778022_100920,4376_158 -4289_75979,259,4376_20505,The Square,105765209,1,4376_7778022_100711,4376_159 -4289_75979,270,4376_20506,The Square,105277913,1,4376_7778022_100560,4376_158 -4289_75979,146,4376_20507,The Square,105247913,1,4376_7778022_100560,4376_158 -4289_75979,271,4376_20508,The Square,105237913,1,4376_7778022_100560,4376_158 -4289_75979,115,4376_20509,The Square,105217913,1,4376_7778022_100560,4376_158 -4289_75962,265,4376_2051,Brides Glen Luas,105812911,1,4376_7778022_104073,4376_25 -4289_75979,260,4376_20510,The Square,105312515,1,4376_7778022_100821,4376_158 -4289_75979,261,4376_20511,The Square,105322515,1,4376_7778022_100821,4376_158 -4289_75979,262,4376_20512,The Square,105432515,1,4376_7778022_100821,4376_158 -4289_75979,263,4376_20513,The Square,105542515,1,4376_7778022_100821,4376_158 -4289_75979,264,4376_20514,The Square,105652515,1,4376_7778022_100821,4376_158 -4289_75979,265,4376_20515,The Square,105812515,1,4376_7778022_100821,4376_158 -4289_75979,266,4376_20516,The Square,105822515,1,4376_7778022_100821,4376_158 -4289_75979,267,4376_20517,The Square,106052515,1,4376_7778022_100821,4376_158 -4289_75979,268,4376_20518,The Square,106142515,1,4376_7778022_100821,4376_158 -4289_75979,269,4376_20519,The Square,106232515,1,4376_7778022_100821,4376_158 -4289_75962,266,4376_2052,Brides Glen Luas,105822911,1,4376_7778022_104073,4376_25 -4289_75979,259,4376_20520,The Square,105765237,1,4376_7778022_100740,4376_159 -4289_75979,270,4376_20521,The Square,105277945,1,4376_7778022_100531,4376_158 -4289_75979,146,4376_20522,The Square,105247945,1,4376_7778022_100531,4376_158 -4289_75979,271,4376_20523,The Square,105237945,1,4376_7778022_100531,4376_158 -4289_75979,115,4376_20524,The Square,105217945,1,4376_7778022_100531,4376_158 -4289_75979,260,4376_20525,The Square,105312541,1,4376_7778022_100831,4376_158 -4289_75979,261,4376_20526,The Square,105322541,1,4376_7778022_100831,4376_158 -4289_75979,262,4376_20527,The Square,105432541,1,4376_7778022_100831,4376_158 -4289_75979,263,4376_20528,The Square,105542541,1,4376_7778022_100831,4376_158 -4289_75979,264,4376_20529,The Square,105652541,1,4376_7778022_100831,4376_158 -4289_75962,267,4376_2053,Brides Glen Luas,106052911,1,4376_7778022_104073,4376_25 -4289_75979,265,4376_20530,The Square,105812541,1,4376_7778022_100831,4376_158 -4289_75979,266,4376_20531,The Square,105822541,1,4376_7778022_100831,4376_158 -4289_75979,267,4376_20532,The Square,106052541,1,4376_7778022_100831,4376_158 -4289_75979,268,4376_20533,The Square,106142541,1,4376_7778022_100831,4376_158 -4289_75979,269,4376_20534,The Square,106232541,1,4376_7778022_100831,4376_158 -4289_75979,259,4376_20535,The Square,105765259,1,4376_7778022_100770,4376_159 -4289_75979,260,4376_20536,The Square,105312569,1,4376_7778022_100810,4376_158 -4289_75979,261,4376_20537,The Square,105322569,1,4376_7778022_100810,4376_158 -4289_75979,262,4376_20538,The Square,105432569,1,4376_7778022_100810,4376_158 -4289_75979,263,4376_20539,The Square,105542569,1,4376_7778022_100810,4376_158 -4289_75962,268,4376_2054,Brides Glen Luas,106142911,1,4376_7778022_104073,4376_25 -4289_75979,264,4376_20540,The Square,105652569,1,4376_7778022_100810,4376_158 -4289_75979,265,4376_20541,The Square,105812569,1,4376_7778022_100810,4376_158 -4289_75979,266,4376_20542,The Square,105822569,1,4376_7778022_100810,4376_158 -4289_75979,267,4376_20543,The Square,106052569,1,4376_7778022_100810,4376_158 -4289_75979,268,4376_20544,The Square,106142569,1,4376_7778022_100810,4376_158 -4289_75979,269,4376_20545,The Square,106232569,1,4376_7778022_100810,4376_158 -4289_75979,259,4376_20546,The Square,105765285,1,4376_7778022_100731,4376_159 -4289_75979,270,4376_20547,The Square,105277975,1,4376_7778022_100581,4376_160 -4289_75979,146,4376_20548,The Square,105247975,1,4376_7778022_100581,4376_160 -4289_75979,271,4376_20549,The Square,105237975,1,4376_7778022_100581,4376_160 -4289_75962,269,4376_2055,Brides Glen Luas,106232911,1,4376_7778022_104073,4376_25 -4289_75979,115,4376_20550,The Square,105217975,1,4376_7778022_100581,4376_160 -4289_75979,260,4376_20551,The Square,105312591,1,4376_7778022_100850,4376_158 -4289_75979,261,4376_20552,The Square,105322591,1,4376_7778022_100850,4376_158 -4289_75979,262,4376_20553,The Square,105432591,1,4376_7778022_100850,4376_158 -4289_75979,263,4376_20554,The Square,105542591,1,4376_7778022_100850,4376_158 -4289_75979,264,4376_20555,The Square,105652591,1,4376_7778022_100850,4376_158 -4289_75979,265,4376_20556,The Square,105812591,1,4376_7778022_100850,4376_158 -4289_75979,266,4376_20557,The Square,105822591,1,4376_7778022_100850,4376_158 -4289_75979,267,4376_20558,The Square,106052591,1,4376_7778022_100850,4376_158 -4289_75979,268,4376_20559,The Square,106142591,1,4376_7778022_100850,4376_158 -4289_75962,259,4376_2056,Brides Glen Luas,105765589,1,4376_7778022_104193,4376_25 -4289_75979,269,4376_20560,The Square,106232591,1,4376_7778022_100850,4376_158 -4289_75979,259,4376_20561,The Square,105765311,1,4376_7778022_100660,4376_158 -4289_75979,260,4376_20562,The Square,105312621,1,4376_7778022_100842,4376_158 -4289_75979,261,4376_20563,The Square,105322621,1,4376_7778022_100842,4376_158 -4289_75979,262,4376_20564,The Square,105432621,1,4376_7778022_100842,4376_158 -4289_75979,263,4376_20565,The Square,105542621,1,4376_7778022_100842,4376_158 -4289_75979,264,4376_20566,The Square,105652621,1,4376_7778022_100842,4376_158 -4289_75979,265,4376_20567,The Square,105812621,1,4376_7778022_100842,4376_158 -4289_75979,266,4376_20568,The Square,105822621,1,4376_7778022_100842,4376_158 -4289_75979,267,4376_20569,The Square,106052621,1,4376_7778022_100842,4376_158 -4289_75962,270,4376_2057,Brides Glen Luas,105278269,1,4376_7778022_100140,4376_28 -4289_75979,268,4376_20570,The Square,106142621,1,4376_7778022_100842,4376_158 -4289_75979,269,4376_20571,The Square,106232621,1,4376_7778022_100842,4376_158 -4289_75979,270,4376_20572,The Square,105278015,1,4376_7778022_100570,4376_159 -4289_75979,146,4376_20573,The Square,105248015,1,4376_7778022_100570,4376_159 -4289_75979,271,4376_20574,The Square,105238015,1,4376_7778022_100570,4376_159 -4289_75979,115,4376_20575,The Square,105218015,1,4376_7778022_100570,4376_159 -4289_75979,259,4376_20576,The Square,105765345,1,4376_7778022_100750,4376_158 -4289_75979,260,4376_20577,The Square,105312643,1,4376_7778022_100930,4376_158 -4289_75979,261,4376_20578,The Square,105322643,1,4376_7778022_100930,4376_158 -4289_75979,262,4376_20579,The Square,105432643,1,4376_7778022_100930,4376_158 -4289_75962,146,4376_2058,Brides Glen Luas,105248269,1,4376_7778022_100140,4376_28 -4289_75979,263,4376_20580,The Square,105542643,1,4376_7778022_100930,4376_158 -4289_75979,264,4376_20581,The Square,105652643,1,4376_7778022_100930,4376_158 -4289_75979,265,4376_20582,The Square,105812643,1,4376_7778022_100930,4376_158 -4289_75979,266,4376_20583,The Square,105822643,1,4376_7778022_100930,4376_158 -4289_75979,267,4376_20584,The Square,106052643,1,4376_7778022_100930,4376_158 -4289_75979,268,4376_20585,The Square,106142643,1,4376_7778022_100930,4376_158 -4289_75979,269,4376_20586,The Square,106232643,1,4376_7778022_100930,4376_158 -4289_75979,260,4376_20587,The Square,105312671,1,4376_7778022_100890,4376_158 -4289_75979,261,4376_20588,The Square,105322671,1,4376_7778022_100890,4376_158 -4289_75979,262,4376_20589,The Square,105432671,1,4376_7778022_100890,4376_158 -4289_75962,271,4376_2059,Brides Glen Luas,105238269,1,4376_7778022_100140,4376_28 -4289_75979,263,4376_20590,The Square,105542671,1,4376_7778022_100890,4376_158 -4289_75979,264,4376_20591,The Square,105652671,1,4376_7778022_100890,4376_158 -4289_75979,265,4376_20592,The Square,105812671,1,4376_7778022_100890,4376_158 -4289_75979,266,4376_20593,The Square,105822671,1,4376_7778022_100890,4376_158 -4289_75979,267,4376_20594,The Square,106052671,1,4376_7778022_100890,4376_158 -4289_75979,268,4376_20595,The Square,106142671,1,4376_7778022_100890,4376_158 -4289_75979,269,4376_20596,The Square,106232671,1,4376_7778022_100890,4376_158 -4289_75979,259,4376_20597,The Square,105765375,1,4376_7778022_100760,4376_159 -4289_75979,270,4376_20598,The Square,105278057,1,4376_7778022_100520,4376_160 -4289_75979,146,4376_20599,The Square,105248057,1,4376_7778022_100520,4376_160 -4289_75960,264,4376_206,Sutton Station,105651866,0,4376_7778022_103502,4376_1 -4289_75962,115,4376_2060,Brides Glen Luas,105218269,1,4376_7778022_100140,4376_28 -4289_75979,271,4376_20600,The Square,105238057,1,4376_7778022_100520,4376_160 -4289_75979,115,4376_20601,The Square,105218057,1,4376_7778022_100520,4376_160 -4289_75979,260,4376_20602,The Square,105312687,1,4376_7778022_100860,4376_158 -4289_75979,261,4376_20603,The Square,105322687,1,4376_7778022_100860,4376_158 -4289_75979,262,4376_20604,The Square,105432687,1,4376_7778022_100860,4376_158 -4289_75979,263,4376_20605,The Square,105542687,1,4376_7778022_100860,4376_158 -4289_75979,264,4376_20606,The Square,105652687,1,4376_7778022_100860,4376_158 -4289_75979,265,4376_20607,The Square,105812687,1,4376_7778022_100860,4376_158 -4289_75979,266,4376_20608,The Square,105822687,1,4376_7778022_100860,4376_158 -4289_75979,267,4376_20609,The Square,106052687,1,4376_7778022_100860,4376_158 -4289_75962,260,4376_2061,Brides Glen Luas,105312973,1,4376_7778022_100192,4376_25 -4289_75979,268,4376_20610,The Square,106142687,1,4376_7778022_100860,4376_158 -4289_75979,269,4376_20611,The Square,106232687,1,4376_7778022_100860,4376_158 -4289_75979,259,4376_20612,The Square,105765399,1,4376_7778022_100702,4376_158 -4289_75979,260,4376_20613,The Square,105312715,1,4376_7778022_100800,4376_158 -4289_75979,261,4376_20614,The Square,105322715,1,4376_7778022_100800,4376_158 -4289_75979,262,4376_20615,The Square,105432715,1,4376_7778022_100800,4376_158 -4289_75979,263,4376_20616,The Square,105542715,1,4376_7778022_100800,4376_158 -4289_75979,264,4376_20617,The Square,105652715,1,4376_7778022_100800,4376_158 -4289_75979,265,4376_20618,The Square,105812715,1,4376_7778022_100800,4376_158 -4289_75979,266,4376_20619,The Square,105822715,1,4376_7778022_100800,4376_158 -4289_75962,261,4376_2062,Brides Glen Luas,105322973,1,4376_7778022_100192,4376_25 -4289_75979,267,4376_20620,The Square,106052715,1,4376_7778022_100800,4376_158 -4289_75979,268,4376_20621,The Square,106142715,1,4376_7778022_100800,4376_158 -4289_75979,269,4376_20622,The Square,106232715,1,4376_7778022_100800,4376_158 -4289_75979,270,4376_20623,The Square,105278095,1,4376_7778022_100560,4376_159 -4289_75979,146,4376_20624,The Square,105248095,1,4376_7778022_100560,4376_159 -4289_75979,271,4376_20625,The Square,105238095,1,4376_7778022_100560,4376_159 -4289_75979,115,4376_20626,The Square,105218095,1,4376_7778022_100560,4376_159 -4289_75979,259,4376_20627,The Square,105765431,1,4376_7778022_100690,4376_158 -4289_75979,260,4376_20628,The Square,105312743,1,4376_7778022_100910,4376_158 -4289_75979,261,4376_20629,The Square,105322743,1,4376_7778022_100910,4376_158 -4289_75962,262,4376_2063,Brides Glen Luas,105432973,1,4376_7778022_100192,4376_25 -4289_75979,262,4376_20630,The Square,105432743,1,4376_7778022_100910,4376_158 -4289_75979,263,4376_20631,The Square,105542743,1,4376_7778022_100910,4376_158 -4289_75979,264,4376_20632,The Square,105652743,1,4376_7778022_100910,4376_158 -4289_75979,265,4376_20633,The Square,105812743,1,4376_7778022_100910,4376_158 -4289_75979,266,4376_20634,The Square,105822743,1,4376_7778022_100910,4376_158 -4289_75979,267,4376_20635,The Square,106052743,1,4376_7778022_100910,4376_158 -4289_75979,268,4376_20636,The Square,106142743,1,4376_7778022_100910,4376_158 -4289_75979,269,4376_20637,The Square,106232743,1,4376_7778022_100910,4376_158 -4289_75979,260,4376_20638,The Square,105312763,1,4376_7778022_100920,4376_158 -4289_75979,261,4376_20639,The Square,105322763,1,4376_7778022_100920,4376_158 -4289_75962,263,4376_2064,Brides Glen Luas,105542973,1,4376_7778022_100192,4376_25 -4289_75979,262,4376_20640,The Square,105432763,1,4376_7778022_100920,4376_158 -4289_75979,263,4376_20641,The Square,105542763,1,4376_7778022_100920,4376_158 -4289_75979,264,4376_20642,The Square,105652763,1,4376_7778022_100920,4376_158 -4289_75979,265,4376_20643,The Square,105812763,1,4376_7778022_100920,4376_158 -4289_75979,266,4376_20644,The Square,105822763,1,4376_7778022_100920,4376_158 -4289_75979,267,4376_20645,The Square,106052763,1,4376_7778022_100920,4376_158 -4289_75979,268,4376_20646,The Square,106142763,1,4376_7778022_100920,4376_158 -4289_75979,269,4376_20647,The Square,106232763,1,4376_7778022_100920,4376_158 -4289_75979,259,4376_20648,The Square,105765459,1,4376_7778022_100712,4376_159 -4289_75979,270,4376_20649,The Square,105278133,1,4376_7778022_100542,4376_160 -4289_75962,264,4376_2065,Brides Glen Luas,105652973,1,4376_7778022_100192,4376_25 -4289_75979,146,4376_20650,The Square,105248133,1,4376_7778022_100542,4376_160 -4289_75979,271,4376_20651,The Square,105238133,1,4376_7778022_100542,4376_160 -4289_75979,115,4376_20652,The Square,105218133,1,4376_7778022_100542,4376_160 -4289_75979,260,4376_20653,The Square,105312785,1,4376_7778022_100902,4376_158 -4289_75979,261,4376_20654,The Square,105322785,1,4376_7778022_100902,4376_158 -4289_75979,262,4376_20655,The Square,105432785,1,4376_7778022_100902,4376_158 -4289_75979,263,4376_20656,The Square,105542785,1,4376_7778022_100902,4376_158 -4289_75979,264,4376_20657,The Square,105652785,1,4376_7778022_100902,4376_158 -4289_75979,265,4376_20658,The Square,105812785,1,4376_7778022_100902,4376_158 -4289_75979,266,4376_20659,The Square,105822785,1,4376_7778022_100902,4376_158 -4289_75962,265,4376_2066,Brides Glen Luas,105812973,1,4376_7778022_100192,4376_25 -4289_75979,267,4376_20660,The Square,106052785,1,4376_7778022_100902,4376_158 -4289_75979,268,4376_20661,The Square,106142785,1,4376_7778022_100902,4376_158 -4289_75979,269,4376_20662,The Square,106232785,1,4376_7778022_100902,4376_158 -4289_75979,259,4376_20663,The Square,105765487,1,4376_7778022_100672,4376_158 -4289_75979,260,4376_20664,The Square,105312811,1,4376_7778022_100883,4376_158 -4289_75979,261,4376_20665,The Square,105322811,1,4376_7778022_100883,4376_158 -4289_75979,262,4376_20666,The Square,105432811,1,4376_7778022_100883,4376_158 -4289_75979,263,4376_20667,The Square,105542811,1,4376_7778022_100883,4376_158 -4289_75979,264,4376_20668,The Square,105652811,1,4376_7778022_100883,4376_158 -4289_75979,265,4376_20669,The Square,105812811,1,4376_7778022_100883,4376_158 -4289_75962,266,4376_2067,Brides Glen Luas,105822973,1,4376_7778022_100192,4376_25 -4289_75979,266,4376_20670,The Square,105822811,1,4376_7778022_100883,4376_158 -4289_75979,267,4376_20671,The Square,106052811,1,4376_7778022_100883,4376_158 -4289_75979,268,4376_20672,The Square,106142811,1,4376_7778022_100883,4376_158 -4289_75979,269,4376_20673,The Square,106232811,1,4376_7778022_100883,4376_158 -4289_75979,270,4376_20674,The Square,105278173,1,4376_7778022_100552,4376_159 -4289_75979,146,4376_20675,The Square,105248173,1,4376_7778022_100552,4376_159 -4289_75979,271,4376_20676,The Square,105238173,1,4376_7778022_100552,4376_159 -4289_75979,115,4376_20677,The Square,105218173,1,4376_7778022_100552,4376_159 -4289_75979,259,4376_20678,The Square,105765519,1,4376_7778022_100722,4376_158 -4289_75979,260,4376_20679,The Square,105312839,1,4376_7778022_100822,4376_158 -4289_75962,267,4376_2068,Brides Glen Luas,106052973,1,4376_7778022_100192,4376_25 -4289_75979,261,4376_20680,The Square,105322839,1,4376_7778022_100822,4376_158 -4289_75979,262,4376_20681,The Square,105432839,1,4376_7778022_100822,4376_158 -4289_75979,263,4376_20682,The Square,105542839,1,4376_7778022_100822,4376_158 -4289_75979,264,4376_20683,The Square,105652839,1,4376_7778022_100822,4376_158 -4289_75979,265,4376_20684,The Square,105812839,1,4376_7778022_100822,4376_158 -4289_75979,266,4376_20685,The Square,105822839,1,4376_7778022_100822,4376_158 -4289_75979,267,4376_20686,The Square,106052839,1,4376_7778022_100822,4376_158 -4289_75979,268,4376_20687,The Square,106142839,1,4376_7778022_100822,4376_158 -4289_75979,269,4376_20688,The Square,106232839,1,4376_7778022_100822,4376_158 -4289_75979,260,4376_20689,The Square,105312859,1,4376_7778022_100832,4376_158 -4289_75962,268,4376_2069,Brides Glen Luas,106142973,1,4376_7778022_100192,4376_25 -4289_75979,261,4376_20690,The Square,105322859,1,4376_7778022_100832,4376_158 -4289_75979,262,4376_20691,The Square,105432859,1,4376_7778022_100832,4376_158 -4289_75979,263,4376_20692,The Square,105542859,1,4376_7778022_100832,4376_158 -4289_75979,264,4376_20693,The Square,105652859,1,4376_7778022_100832,4376_158 -4289_75979,265,4376_20694,The Square,105812859,1,4376_7778022_100832,4376_158 -4289_75979,266,4376_20695,The Square,105822859,1,4376_7778022_100832,4376_158 -4289_75979,267,4376_20696,The Square,106052859,1,4376_7778022_100832,4376_158 -4289_75979,268,4376_20697,The Square,106142859,1,4376_7778022_100832,4376_158 -4289_75979,269,4376_20698,The Square,106232859,1,4376_7778022_100832,4376_158 -4289_75979,259,4376_20699,The Square,105765545,1,4376_7778022_100732,4376_159 -4289_75960,265,4376_207,Sutton Station,105811866,0,4376_7778022_103502,4376_1 -4289_75962,269,4376_2070,Brides Glen Luas,106232973,1,4376_7778022_100192,4376_25 -4289_75979,270,4376_20700,The Square,105278211,1,4376_7778022_100532,4376_160 -4289_75979,146,4376_20701,The Square,105248211,1,4376_7778022_100532,4376_160 -4289_75979,271,4376_20702,The Square,105238211,1,4376_7778022_100532,4376_160 -4289_75979,115,4376_20703,The Square,105218211,1,4376_7778022_100532,4376_160 -4289_75979,260,4376_20704,The Square,105312883,1,4376_7778022_100890,4376_158 -4289_75979,261,4376_20705,The Square,105322883,1,4376_7778022_100890,4376_158 -4289_75979,262,4376_20706,The Square,105432883,1,4376_7778022_100890,4376_158 -4289_75979,263,4376_20707,The Square,105542883,1,4376_7778022_100890,4376_158 -4289_75979,264,4376_20708,The Square,105652883,1,4376_7778022_100890,4376_158 -4289_75979,265,4376_20709,The Square,105812883,1,4376_7778022_100890,4376_158 -4289_75962,259,4376_2071,Brides Glen Luas,105765647,1,4376_7778022_104033,4376_25 -4289_75979,266,4376_20710,The Square,105822883,1,4376_7778022_100890,4376_158 -4289_75979,267,4376_20711,The Square,106052883,1,4376_7778022_100890,4376_158 -4289_75979,268,4376_20712,The Square,106142883,1,4376_7778022_100890,4376_158 -4289_75979,269,4376_20713,The Square,106232883,1,4376_7778022_100890,4376_158 -4289_75979,259,4376_20714,The Square,105765573,1,4376_7778022_100702,4376_158 -4289_75979,260,4376_20715,The Square,105312905,1,4376_7778022_100872,4376_158 -4289_75979,261,4376_20716,The Square,105322905,1,4376_7778022_100872,4376_158 -4289_75979,262,4376_20717,The Square,105432905,1,4376_7778022_100872,4376_158 -4289_75979,263,4376_20718,The Square,105542905,1,4376_7778022_100872,4376_158 -4289_75979,264,4376_20719,The Square,105652905,1,4376_7778022_100872,4376_158 -4289_75963,260,4376_2072,Blackrock,105311050,0,4376_7778022_100150,4376_30 -4289_75979,265,4376_20720,The Square,105812905,1,4376_7778022_100872,4376_158 -4289_75979,266,4376_20721,The Square,105822905,1,4376_7778022_100872,4376_158 -4289_75979,267,4376_20722,The Square,106052905,1,4376_7778022_100872,4376_158 -4289_75979,268,4376_20723,The Square,106142905,1,4376_7778022_100872,4376_158 -4289_75979,269,4376_20724,The Square,106232905,1,4376_7778022_100872,4376_158 -4289_75979,270,4376_20725,The Square,105278249,1,4376_7778022_100582,4376_159 -4289_75979,146,4376_20726,The Square,105248249,1,4376_7778022_100582,4376_159 -4289_75979,271,4376_20727,The Square,105238249,1,4376_7778022_100582,4376_159 -4289_75979,115,4376_20728,The Square,105218249,1,4376_7778022_100582,4376_159 -4289_75979,259,4376_20729,The Square,105765603,1,4376_7778022_100682,4376_158 -4289_75963,261,4376_2073,Blackrock,105321050,0,4376_7778022_100150,4376_30 -4289_75979,260,4376_20730,The Square,105312933,1,4376_7778022_100800,4376_158 -4289_75979,261,4376_20731,The Square,105322933,1,4376_7778022_100800,4376_158 -4289_75979,262,4376_20732,The Square,105432933,1,4376_7778022_100800,4376_158 -4289_75979,263,4376_20733,The Square,105542933,1,4376_7778022_100800,4376_158 -4289_75979,264,4376_20734,The Square,105652933,1,4376_7778022_100800,4376_158 -4289_75979,265,4376_20735,The Square,105812933,1,4376_7778022_100800,4376_158 -4289_75979,266,4376_20736,The Square,105822933,1,4376_7778022_100800,4376_158 -4289_75979,267,4376_20737,The Square,106052933,1,4376_7778022_100800,4376_158 -4289_75979,268,4376_20738,The Square,106142933,1,4376_7778022_100800,4376_158 -4289_75979,269,4376_20739,The Square,106232933,1,4376_7778022_100800,4376_158 -4289_75963,262,4376_2074,Blackrock,105431050,0,4376_7778022_100150,4376_30 -4289_75979,260,4376_20740,The Square,105312953,1,4376_7778022_100910,4376_158 -4289_75979,261,4376_20741,The Square,105322953,1,4376_7778022_100910,4376_158 -4289_75979,262,4376_20742,The Square,105432953,1,4376_7778022_100910,4376_158 -4289_75979,263,4376_20743,The Square,105542953,1,4376_7778022_100910,4376_158 -4289_75979,264,4376_20744,The Square,105652953,1,4376_7778022_100910,4376_158 -4289_75979,265,4376_20745,The Square,105812953,1,4376_7778022_100910,4376_158 -4289_75979,266,4376_20746,The Square,105822953,1,4376_7778022_100910,4376_158 -4289_75979,267,4376_20747,The Square,106052953,1,4376_7778022_100910,4376_158 -4289_75979,268,4376_20748,The Square,106142953,1,4376_7778022_100910,4376_158 -4289_75979,269,4376_20749,The Square,106232953,1,4376_7778022_100910,4376_158 -4289_75963,263,4376_2075,Blackrock,105541050,0,4376_7778022_100150,4376_30 -4289_75979,259,4376_20750,The Square,105765629,1,4376_7778022_100712,4376_159 -4289_75979,270,4376_20751,The Square,105278285,1,4376_7778022_100542,4376_158 -4289_75979,146,4376_20752,The Square,105248285,1,4376_7778022_100542,4376_158 -4289_75979,271,4376_20753,The Square,105238285,1,4376_7778022_100542,4376_158 -4289_75979,115,4376_20754,The Square,105218285,1,4376_7778022_100542,4376_158 -4289_75979,260,4376_20755,The Square,105312985,1,4376_7778022_100883,4376_158 -4289_75979,261,4376_20756,The Square,105322985,1,4376_7778022_100883,4376_158 -4289_75979,262,4376_20757,The Square,105432985,1,4376_7778022_100883,4376_158 -4289_75979,263,4376_20758,The Square,105542985,1,4376_7778022_100883,4376_158 -4289_75979,264,4376_20759,The Square,105652985,1,4376_7778022_100883,4376_158 -4289_75963,264,4376_2076,Blackrock,105651050,0,4376_7778022_100150,4376_30 -4289_75979,265,4376_20760,The Square,105812985,1,4376_7778022_100883,4376_158 -4289_75979,266,4376_20761,The Square,105822985,1,4376_7778022_100883,4376_158 -4289_75979,267,4376_20762,The Square,106052985,1,4376_7778022_100883,4376_158 -4289_75979,268,4376_20763,The Square,106142985,1,4376_7778022_100883,4376_158 -4289_75979,269,4376_20764,The Square,106232985,1,4376_7778022_100883,4376_158 -4289_75979,259,4376_20765,The Square,105765661,1,4376_7778022_100722,4376_159 -4289_75979,270,4376_20766,The Square,105278315,1,4376_7778022_100552,4376_160 -4289_75979,146,4376_20767,The Square,105248315,1,4376_7778022_100552,4376_160 -4289_75979,271,4376_20768,The Square,105238315,1,4376_7778022_100552,4376_160 -4289_75979,115,4376_20769,The Square,105218315,1,4376_7778022_100552,4376_160 -4289_75963,265,4376_2077,Blackrock,105811050,0,4376_7778022_100150,4376_30 -4289_75980,260,4376_20770,Dun Laoghaire,105311000,0,4376_7778022_100961,4376_161 -4289_75980,261,4376_20771,Dun Laoghaire,105321000,0,4376_7778022_100961,4376_161 -4289_75980,262,4376_20772,Dun Laoghaire,105431000,0,4376_7778022_100961,4376_161 -4289_75980,263,4376_20773,Dun Laoghaire,105541000,0,4376_7778022_100961,4376_161 -4289_75980,264,4376_20774,Dun Laoghaire,105651000,0,4376_7778022_100961,4376_161 -4289_75980,265,4376_20775,Dun Laoghaire,105811000,0,4376_7778022_100961,4376_161 -4289_75980,266,4376_20776,Dun Laoghaire,105821000,0,4376_7778022_100961,4376_161 -4289_75980,267,4376_20777,Dun Laoghaire,106051000,0,4376_7778022_100961,4376_161 -4289_75980,268,4376_20778,Dun Laoghaire,106141000,0,4376_7778022_100961,4376_161 -4289_75980,269,4376_20779,Dun Laoghaire,106231000,0,4376_7778022_100961,4376_161 -4289_75963,266,4376_2078,Blackrock,105821050,0,4376_7778022_100150,4376_30 -4289_75980,259,4376_20780,Dun Laoghaire,105764000,0,4376_7778022_100790,4376_162 -4289_75980,260,4376_20781,Dun Laoghaire,105311004,0,4376_7778022_100981,4376_161 -4289_75980,261,4376_20782,Dun Laoghaire,105321004,0,4376_7778022_100981,4376_161 -4289_75980,262,4376_20783,Dun Laoghaire,105431004,0,4376_7778022_100981,4376_161 -4289_75980,263,4376_20784,Dun Laoghaire,105541004,0,4376_7778022_100981,4376_161 -4289_75980,264,4376_20785,Dun Laoghaire,105651004,0,4376_7778022_100981,4376_161 -4289_75980,265,4376_20786,Dun Laoghaire,105811004,0,4376_7778022_100981,4376_161 -4289_75980,266,4376_20787,Dun Laoghaire,105821004,0,4376_7778022_100981,4376_161 -4289_75980,267,4376_20788,Dun Laoghaire,106051004,0,4376_7778022_100981,4376_161 -4289_75980,268,4376_20789,Dun Laoghaire,106141004,0,4376_7778022_100981,4376_161 -4289_75963,267,4376_2079,Blackrock,106051050,0,4376_7778022_100150,4376_30 -4289_75980,269,4376_20790,Dun Laoghaire,106231004,0,4376_7778022_100981,4376_161 -4289_75980,259,4376_20791,Dun Laoghaire,105764010,0,4376_7778022_100810,4376_161 -4289_75980,260,4376_20792,Dun Laoghaire,105311018,0,4376_7778022_101001,4376_161 -4289_75980,261,4376_20793,Dun Laoghaire,105321018,0,4376_7778022_101001,4376_161 -4289_75980,262,4376_20794,Dun Laoghaire,105431018,0,4376_7778022_101001,4376_161 -4289_75980,263,4376_20795,Dun Laoghaire,105541018,0,4376_7778022_101001,4376_161 -4289_75980,264,4376_20796,Dun Laoghaire,105651018,0,4376_7778022_101001,4376_161 -4289_75980,265,4376_20797,Dun Laoghaire,105811018,0,4376_7778022_101001,4376_161 -4289_75980,266,4376_20798,Dun Laoghaire,105821018,0,4376_7778022_101001,4376_161 -4289_75980,267,4376_20799,Dun Laoghaire,106051018,0,4376_7778022_101001,4376_161 -4289_75960,266,4376_208,Sutton Station,105821866,0,4376_7778022_103502,4376_1 -4289_75963,268,4376_2080,Blackrock,106141050,0,4376_7778022_100150,4376_30 -4289_75980,268,4376_20800,Dun Laoghaire,106141018,0,4376_7778022_101001,4376_161 -4289_75980,269,4376_20801,Dun Laoghaire,106231018,0,4376_7778022_101001,4376_161 -4289_75980,260,4376_20802,Dun Laoghaire,105311028,0,4376_7778022_101010,4376_161 -4289_75980,261,4376_20803,Dun Laoghaire,105321028,0,4376_7778022_101010,4376_161 -4289_75980,262,4376_20804,Dun Laoghaire,105431028,0,4376_7778022_101010,4376_161 -4289_75980,263,4376_20805,Dun Laoghaire,105541028,0,4376_7778022_101010,4376_161 -4289_75980,264,4376_20806,Dun Laoghaire,105651028,0,4376_7778022_101010,4376_161 -4289_75980,265,4376_20807,Dun Laoghaire,105811028,0,4376_7778022_101010,4376_161 -4289_75980,266,4376_20808,Dun Laoghaire,105821028,0,4376_7778022_101010,4376_161 -4289_75980,267,4376_20809,Dun Laoghaire,106051028,0,4376_7778022_101010,4376_161 -4289_75963,269,4376_2081,Blackrock,106231050,0,4376_7778022_100150,4376_30 -4289_75980,268,4376_20810,Dun Laoghaire,106141028,0,4376_7778022_101010,4376_161 -4289_75980,269,4376_20811,Dun Laoghaire,106231028,0,4376_7778022_101010,4376_161 -4289_75980,260,4376_20812,Dun Laoghaire,105311040,0,4376_7778022_100940,4376_161 -4289_75980,261,4376_20813,Dun Laoghaire,105321040,0,4376_7778022_100940,4376_161 -4289_75980,262,4376_20814,Dun Laoghaire,105431040,0,4376_7778022_100940,4376_161 -4289_75980,263,4376_20815,Dun Laoghaire,105541040,0,4376_7778022_100940,4376_161 -4289_75980,264,4376_20816,Dun Laoghaire,105651040,0,4376_7778022_100940,4376_161 -4289_75980,265,4376_20817,Dun Laoghaire,105811040,0,4376_7778022_100940,4376_161 -4289_75980,266,4376_20818,Dun Laoghaire,105821040,0,4376_7778022_100940,4376_161 -4289_75980,267,4376_20819,Dun Laoghaire,106051040,0,4376_7778022_100940,4376_161 -4289_75963,259,4376_2082,Blackrock,105764054,0,4376_7778022_100141,4376_30 -4289_75980,268,4376_20820,Dun Laoghaire,106141040,0,4376_7778022_100940,4376_161 -4289_75980,269,4376_20821,Dun Laoghaire,106231040,0,4376_7778022_100940,4376_161 -4289_75980,259,4376_20822,Dun Laoghaire,105764030,0,4376_7778022_100780,4376_162 -4289_75980,260,4376_20823,Dun Laoghaire,105311064,0,4376_7778022_101021,4376_161 -4289_75980,261,4376_20824,Dun Laoghaire,105321064,0,4376_7778022_101021,4376_161 -4289_75980,262,4376_20825,Dun Laoghaire,105431064,0,4376_7778022_101021,4376_161 -4289_75980,263,4376_20826,Dun Laoghaire,105541064,0,4376_7778022_101021,4376_161 -4289_75980,264,4376_20827,Dun Laoghaire,105651064,0,4376_7778022_101021,4376_161 -4289_75980,265,4376_20828,Dun Laoghaire,105811064,0,4376_7778022_101021,4376_161 -4289_75980,266,4376_20829,Dun Laoghaire,105821064,0,4376_7778022_101021,4376_161 -4289_75963,260,4376_2083,Blackrock,105311100,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_20830,Dun Laoghaire,106051064,0,4376_7778022_101021,4376_161 -4289_75980,268,4376_20831,Dun Laoghaire,106141064,0,4376_7778022_101021,4376_161 -4289_75980,269,4376_20832,Dun Laoghaire,106231064,0,4376_7778022_101021,4376_161 -4289_75980,260,4376_20833,Dun Laoghaire,105311074,0,4376_7778022_100950,4376_161 -4289_75980,261,4376_20834,Dun Laoghaire,105321074,0,4376_7778022_100950,4376_161 -4289_75980,262,4376_20835,Dun Laoghaire,105431074,0,4376_7778022_100950,4376_161 -4289_75980,263,4376_20836,Dun Laoghaire,105541074,0,4376_7778022_100950,4376_161 -4289_75980,264,4376_20837,Dun Laoghaire,105651074,0,4376_7778022_100950,4376_161 -4289_75980,265,4376_20838,Dun Laoghaire,105811074,0,4376_7778022_100950,4376_161 -4289_75980,266,4376_20839,Dun Laoghaire,105821074,0,4376_7778022_100950,4376_161 -4289_75963,261,4376_2084,Blackrock,105321100,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_20840,Dun Laoghaire,106051074,0,4376_7778022_100950,4376_161 -4289_75980,268,4376_20841,Dun Laoghaire,106141074,0,4376_7778022_100950,4376_161 -4289_75980,269,4376_20842,Dun Laoghaire,106231074,0,4376_7778022_100950,4376_161 -4289_75980,259,4376_20843,Dun Laoghaire,105764062,0,4376_7778022_100820,4376_161 -4289_75980,260,4376_20844,Dun Laoghaire,105311096,0,4376_7778022_101041,4376_161 -4289_75980,261,4376_20845,Dun Laoghaire,105321096,0,4376_7778022_101041,4376_161 -4289_75980,262,4376_20846,Dun Laoghaire,105431096,0,4376_7778022_101041,4376_161 -4289_75980,263,4376_20847,Dun Laoghaire,105541096,0,4376_7778022_101041,4376_161 -4289_75980,264,4376_20848,Dun Laoghaire,105651096,0,4376_7778022_101041,4376_161 -4289_75980,265,4376_20849,Dun Laoghaire,105811096,0,4376_7778022_101041,4376_161 -4289_75963,262,4376_2085,Blackrock,105431100,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_20850,Dun Laoghaire,105821096,0,4376_7778022_101041,4376_161 -4289_75980,267,4376_20851,Dun Laoghaire,106051096,0,4376_7778022_101041,4376_161 -4289_75980,268,4376_20852,Dun Laoghaire,106141096,0,4376_7778022_101041,4376_161 -4289_75980,269,4376_20853,Dun Laoghaire,106231096,0,4376_7778022_101041,4376_161 -4289_75980,260,4376_20854,Dun Laoghaire,105311116,0,4376_7778022_101051,4376_161 -4289_75980,261,4376_20855,Dun Laoghaire,105321116,0,4376_7778022_101051,4376_161 -4289_75980,262,4376_20856,Dun Laoghaire,105431116,0,4376_7778022_101051,4376_161 -4289_75980,263,4376_20857,Dun Laoghaire,105541116,0,4376_7778022_101051,4376_161 -4289_75980,264,4376_20858,Dun Laoghaire,105651116,0,4376_7778022_101051,4376_161 -4289_75980,265,4376_20859,Dun Laoghaire,105811116,0,4376_7778022_101051,4376_161 -4289_75963,263,4376_2086,Blackrock,105541100,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_20860,Dun Laoghaire,105821116,0,4376_7778022_101051,4376_161 -4289_75980,267,4376_20861,Dun Laoghaire,106051116,0,4376_7778022_101051,4376_161 -4289_75980,268,4376_20862,Dun Laoghaire,106141116,0,4376_7778022_101051,4376_161 -4289_75980,269,4376_20863,Dun Laoghaire,106231116,0,4376_7778022_101051,4376_161 -4289_75980,260,4376_20864,Dun Laoghaire,105311152,0,4376_7778022_101061,4376_161 -4289_75980,261,4376_20865,Dun Laoghaire,105321152,0,4376_7778022_101061,4376_161 -4289_75980,262,4376_20866,Dun Laoghaire,105431152,0,4376_7778022_101061,4376_161 -4289_75980,263,4376_20867,Dun Laoghaire,105541152,0,4376_7778022_101061,4376_161 -4289_75980,264,4376_20868,Dun Laoghaire,105651152,0,4376_7778022_101061,4376_161 -4289_75980,265,4376_20869,Dun Laoghaire,105811152,0,4376_7778022_101061,4376_161 -4289_75963,264,4376_2087,Blackrock,105651100,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_20870,Dun Laoghaire,105821152,0,4376_7778022_101061,4376_161 -4289_75980,267,4376_20871,Dun Laoghaire,106051152,0,4376_7778022_101061,4376_161 -4289_75980,268,4376_20872,Dun Laoghaire,106141152,0,4376_7778022_101061,4376_161 -4289_75980,269,4376_20873,Dun Laoghaire,106231152,0,4376_7778022_101061,4376_161 -4289_75980,259,4376_20874,Dun Laoghaire,105764108,0,4376_7778022_100800,4376_161 -4289_75980,270,4376_20875,Dun Laoghaire,105277000,0,4376_7778022_100610,4376_162 -4289_75980,146,4376_20876,Dun Laoghaire,105247000,0,4376_7778022_100610,4376_162 -4289_75980,271,4376_20877,Dun Laoghaire,105237000,0,4376_7778022_100610,4376_162 -4289_75980,115,4376_20878,Dun Laoghaire,105217000,0,4376_7778022_100610,4376_162 -4289_75980,260,4376_20879,Dun Laoghaire,105311186,0,4376_7778022_100971,4376_161 -4289_75963,265,4376_2088,Blackrock,105811100,0,4376_7778022_100160,4376_30 -4289_75980,261,4376_20880,Dun Laoghaire,105321186,0,4376_7778022_100971,4376_161 -4289_75980,262,4376_20881,Dun Laoghaire,105431186,0,4376_7778022_100971,4376_161 -4289_75980,263,4376_20882,Dun Laoghaire,105541186,0,4376_7778022_100971,4376_161 -4289_75980,264,4376_20883,Dun Laoghaire,105651186,0,4376_7778022_100971,4376_161 -4289_75980,265,4376_20884,Dun Laoghaire,105811186,0,4376_7778022_100971,4376_161 -4289_75980,266,4376_20885,Dun Laoghaire,105821186,0,4376_7778022_100971,4376_161 -4289_75980,267,4376_20886,Dun Laoghaire,106051186,0,4376_7778022_100971,4376_161 -4289_75980,268,4376_20887,Dun Laoghaire,106141186,0,4376_7778022_100971,4376_161 -4289_75980,269,4376_20888,Dun Laoghaire,106231186,0,4376_7778022_100971,4376_161 -4289_75980,260,4376_20889,Dun Laoghaire,105311224,0,4376_7778022_101080,4376_161 -4289_75963,266,4376_2089,Blackrock,105821100,0,4376_7778022_100160,4376_30 -4289_75980,261,4376_20890,Dun Laoghaire,105321224,0,4376_7778022_101080,4376_161 -4289_75980,262,4376_20891,Dun Laoghaire,105431224,0,4376_7778022_101080,4376_161 -4289_75980,263,4376_20892,Dun Laoghaire,105541224,0,4376_7778022_101080,4376_161 -4289_75980,264,4376_20893,Dun Laoghaire,105651224,0,4376_7778022_101080,4376_161 -4289_75980,265,4376_20894,Dun Laoghaire,105811224,0,4376_7778022_101080,4376_161 -4289_75980,266,4376_20895,Dun Laoghaire,105821224,0,4376_7778022_101080,4376_161 -4289_75980,267,4376_20896,Dun Laoghaire,106051224,0,4376_7778022_101080,4376_161 -4289_75980,268,4376_20897,Dun Laoghaire,106141224,0,4376_7778022_101080,4376_161 -4289_75980,269,4376_20898,Dun Laoghaire,106231224,0,4376_7778022_101080,4376_161 -4289_75980,259,4376_20899,Dun Laoghaire,105764146,0,4376_7778022_100790,4376_161 -4289_75960,267,4376_209,Sutton Station,106051866,0,4376_7778022_103502,4376_1 -4289_75963,267,4376_2090,Blackrock,106051100,0,4376_7778022_100160,4376_30 -4289_75980,270,4376_20900,Dun Laoghaire,105277014,0,4376_7778022_100631,4376_162 -4289_75980,146,4376_20901,Dun Laoghaire,105247014,0,4376_7778022_100631,4376_162 -4289_75980,271,4376_20902,Dun Laoghaire,105237014,0,4376_7778022_100631,4376_162 -4289_75980,115,4376_20903,Dun Laoghaire,105217014,0,4376_7778022_100631,4376_162 -4289_75980,260,4376_20904,Dun Laoghaire,105311282,0,4376_7778022_100991,4376_161 -4289_75980,261,4376_20905,Dun Laoghaire,105321282,0,4376_7778022_100991,4376_161 -4289_75980,262,4376_20906,Dun Laoghaire,105431282,0,4376_7778022_100991,4376_161 -4289_75980,263,4376_20907,Dun Laoghaire,105541282,0,4376_7778022_100991,4376_161 -4289_75980,264,4376_20908,Dun Laoghaire,105651282,0,4376_7778022_100991,4376_161 -4289_75980,265,4376_20909,Dun Laoghaire,105811282,0,4376_7778022_100991,4376_161 -4289_75963,268,4376_2091,Blackrock,106141100,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_20910,Dun Laoghaire,105821282,0,4376_7778022_100991,4376_161 -4289_75980,267,4376_20911,Dun Laoghaire,106051282,0,4376_7778022_100991,4376_161 -4289_75980,268,4376_20912,Dun Laoghaire,106141282,0,4376_7778022_100991,4376_161 -4289_75980,269,4376_20913,Dun Laoghaire,106231282,0,4376_7778022_100991,4376_161 -4289_75980,260,4376_20914,Dun Laoghaire,105311316,0,4376_7778022_100961,4376_161 -4289_75980,261,4376_20915,Dun Laoghaire,105321316,0,4376_7778022_100961,4376_161 -4289_75980,262,4376_20916,Dun Laoghaire,105431316,0,4376_7778022_100961,4376_161 -4289_75980,263,4376_20917,Dun Laoghaire,105541316,0,4376_7778022_100961,4376_161 -4289_75980,264,4376_20918,Dun Laoghaire,105651316,0,4376_7778022_100961,4376_161 -4289_75980,265,4376_20919,Dun Laoghaire,105811316,0,4376_7778022_100961,4376_161 -4289_75963,269,4376_2092,Blackrock,106231100,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_20920,Dun Laoghaire,105821316,0,4376_7778022_100961,4376_161 -4289_75980,267,4376_20921,Dun Laoghaire,106051316,0,4376_7778022_100961,4376_161 -4289_75980,268,4376_20922,Dun Laoghaire,106141316,0,4376_7778022_100961,4376_161 -4289_75980,269,4376_20923,Dun Laoghaire,106231316,0,4376_7778022_100961,4376_161 -4289_75980,259,4376_20924,Dun Laoghaire,105764186,0,4376_7778022_100810,4376_161 -4289_75980,270,4376_20925,Dun Laoghaire,105277032,0,4376_7778022_100640,4376_162 -4289_75980,146,4376_20926,Dun Laoghaire,105247032,0,4376_7778022_100640,4376_162 -4289_75980,271,4376_20927,Dun Laoghaire,105237032,0,4376_7778022_100640,4376_162 -4289_75980,115,4376_20928,Dun Laoghaire,105217032,0,4376_7778022_100640,4376_162 -4289_75980,260,4376_20929,Dun Laoghaire,105311338,0,4376_7778022_100981,4376_161 -4289_75963,260,4376_2093,Blackrock,105311170,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_20930,Dun Laoghaire,105321338,0,4376_7778022_100981,4376_161 -4289_75980,262,4376_20931,Dun Laoghaire,105431338,0,4376_7778022_100981,4376_161 -4289_75980,263,4376_20932,Dun Laoghaire,105541338,0,4376_7778022_100981,4376_161 -4289_75980,264,4376_20933,Dun Laoghaire,105651338,0,4376_7778022_100981,4376_161 -4289_75980,265,4376_20934,Dun Laoghaire,105811338,0,4376_7778022_100981,4376_161 -4289_75980,266,4376_20935,Dun Laoghaire,105821338,0,4376_7778022_100981,4376_161 -4289_75980,267,4376_20936,Dun Laoghaire,106051338,0,4376_7778022_100981,4376_161 -4289_75980,268,4376_20937,Dun Laoghaire,106141338,0,4376_7778022_100981,4376_161 -4289_75980,269,4376_20938,Dun Laoghaire,106231338,0,4376_7778022_100981,4376_161 -4289_75980,260,4376_20939,Dun Laoghaire,105311384,0,4376_7778022_101031,4376_161 -4289_75963,261,4376_2094,Blackrock,105321170,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_20940,Dun Laoghaire,105321384,0,4376_7778022_101031,4376_161 -4289_75980,262,4376_20941,Dun Laoghaire,105431384,0,4376_7778022_101031,4376_161 -4289_75980,263,4376_20942,Dun Laoghaire,105541384,0,4376_7778022_101031,4376_161 -4289_75980,264,4376_20943,Dun Laoghaire,105651384,0,4376_7778022_101031,4376_161 -4289_75980,265,4376_20944,Dun Laoghaire,105811384,0,4376_7778022_101031,4376_161 -4289_75980,266,4376_20945,Dun Laoghaire,105821384,0,4376_7778022_101031,4376_161 -4289_75980,267,4376_20946,Dun Laoghaire,106051384,0,4376_7778022_101031,4376_161 -4289_75980,268,4376_20947,Dun Laoghaire,106141384,0,4376_7778022_101031,4376_161 -4289_75980,269,4376_20948,Dun Laoghaire,106231384,0,4376_7778022_101031,4376_161 -4289_75980,259,4376_20949,Dun Laoghaire,105764232,0,4376_7778022_100780,4376_161 -4289_75963,262,4376_2095,Blackrock,105431170,0,4376_7778022_100150,4376_30 -4289_75980,270,4376_20950,Dun Laoghaire,105277060,0,4376_7778022_100600,4376_162 -4289_75980,146,4376_20951,Dun Laoghaire,105247060,0,4376_7778022_100600,4376_162 -4289_75980,271,4376_20952,Dun Laoghaire,105237060,0,4376_7778022_100600,4376_162 -4289_75980,115,4376_20953,Dun Laoghaire,105217060,0,4376_7778022_100600,4376_162 -4289_75980,260,4376_20954,Dun Laoghaire,105311404,0,4376_7778022_101101,4376_161 -4289_75980,261,4376_20955,Dun Laoghaire,105321404,0,4376_7778022_101101,4376_161 -4289_75980,262,4376_20956,Dun Laoghaire,105431404,0,4376_7778022_101101,4376_161 -4289_75980,263,4376_20957,Dun Laoghaire,105541404,0,4376_7778022_101101,4376_161 -4289_75980,264,4376_20958,Dun Laoghaire,105651404,0,4376_7778022_101101,4376_161 -4289_75980,265,4376_20959,Dun Laoghaire,105811404,0,4376_7778022_101101,4376_161 -4289_75963,263,4376_2096,Blackrock,105541170,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_20960,Dun Laoghaire,105821404,0,4376_7778022_101101,4376_161 -4289_75980,267,4376_20961,Dun Laoghaire,106051404,0,4376_7778022_101101,4376_161 -4289_75980,268,4376_20962,Dun Laoghaire,106141404,0,4376_7778022_101101,4376_161 -4289_75980,269,4376_20963,Dun Laoghaire,106231404,0,4376_7778022_101101,4376_161 -4289_75980,260,4376_20964,Dun Laoghaire,105311440,0,4376_7778022_101001,4376_161 -4289_75980,261,4376_20965,Dun Laoghaire,105321440,0,4376_7778022_101001,4376_161 -4289_75980,262,4376_20966,Dun Laoghaire,105431440,0,4376_7778022_101001,4376_161 -4289_75980,263,4376_20967,Dun Laoghaire,105541440,0,4376_7778022_101001,4376_161 -4289_75980,264,4376_20968,Dun Laoghaire,105651440,0,4376_7778022_101001,4376_161 -4289_75980,265,4376_20969,Dun Laoghaire,105811440,0,4376_7778022_101001,4376_161 -4289_75963,264,4376_2097,Blackrock,105651170,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_20970,Dun Laoghaire,105821440,0,4376_7778022_101001,4376_161 -4289_75980,267,4376_20971,Dun Laoghaire,106051440,0,4376_7778022_101001,4376_161 -4289_75980,268,4376_20972,Dun Laoghaire,106141440,0,4376_7778022_101001,4376_161 -4289_75980,269,4376_20973,Dun Laoghaire,106231440,0,4376_7778022_101001,4376_161 -4289_75980,259,4376_20974,Dun Laoghaire,105764282,0,4376_7778022_100820,4376_162 -4289_75980,270,4376_20975,Dun Laoghaire,105277090,0,4376_7778022_100621,4376_163 -4289_75980,146,4376_20976,Dun Laoghaire,105247090,0,4376_7778022_100621,4376_163 -4289_75980,271,4376_20977,Dun Laoghaire,105237090,0,4376_7778022_100621,4376_163 -4289_75980,115,4376_20978,Dun Laoghaire,105217090,0,4376_7778022_100621,4376_163 -4289_75980,260,4376_20979,Dun Laoghaire,105311474,0,4376_7778022_101010,4376_161 -4289_75963,265,4376_2098,Blackrock,105811170,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_20980,Dun Laoghaire,105321474,0,4376_7778022_101010,4376_161 -4289_75980,262,4376_20981,Dun Laoghaire,105431474,0,4376_7778022_101010,4376_161 -4289_75980,263,4376_20982,Dun Laoghaire,105541474,0,4376_7778022_101010,4376_161 -4289_75980,264,4376_20983,Dun Laoghaire,105651474,0,4376_7778022_101010,4376_161 -4289_75980,265,4376_20984,Dun Laoghaire,105811474,0,4376_7778022_101010,4376_161 -4289_75980,266,4376_20985,Dun Laoghaire,105821474,0,4376_7778022_101010,4376_161 -4289_75980,267,4376_20986,Dun Laoghaire,106051474,0,4376_7778022_101010,4376_161 -4289_75980,268,4376_20987,Dun Laoghaire,106141474,0,4376_7778022_101010,4376_161 -4289_75980,269,4376_20988,Dun Laoghaire,106231474,0,4376_7778022_101010,4376_161 -4289_75980,259,4376_20989,Dun Laoghaire,105764332,0,4376_7778022_100830,4376_161 -4289_75963,266,4376_2099,Blackrock,105821170,0,4376_7778022_100150,4376_30 -4289_75980,270,4376_20990,Dun Laoghaire,105277126,0,4376_7778022_100610,4376_162 -4289_75980,146,4376_20991,Dun Laoghaire,105247126,0,4376_7778022_100610,4376_162 -4289_75980,271,4376_20992,Dun Laoghaire,105237126,0,4376_7778022_100610,4376_162 -4289_75980,115,4376_20993,Dun Laoghaire,105217126,0,4376_7778022_100610,4376_162 -4289_75980,260,4376_20994,Dun Laoghaire,105311520,0,4376_7778022_100940,4376_161 -4289_75980,261,4376_20995,Dun Laoghaire,105321520,0,4376_7778022_100940,4376_161 -4289_75980,262,4376_20996,Dun Laoghaire,105431520,0,4376_7778022_100940,4376_161 -4289_75980,263,4376_20997,Dun Laoghaire,105541520,0,4376_7778022_100940,4376_161 -4289_75980,264,4376_20998,Dun Laoghaire,105651520,0,4376_7778022_100940,4376_161 -4289_75980,265,4376_20999,Dun Laoghaire,105811520,0,4376_7778022_100940,4376_161 -4289_75960,268,4376_21,Sutton Station,106141070,0,4376_7778022_103107,4376_1 -4289_75960,268,4376_210,Sutton Station,106141866,0,4376_7778022_103502,4376_1 -4289_75963,267,4376_2100,Blackrock,106051170,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21000,Dun Laoghaire,105821520,0,4376_7778022_100940,4376_161 -4289_75980,267,4376_21001,Dun Laoghaire,106051520,0,4376_7778022_100940,4376_161 -4289_75980,268,4376_21002,Dun Laoghaire,106141520,0,4376_7778022_100940,4376_161 -4289_75980,269,4376_21003,Dun Laoghaire,106231520,0,4376_7778022_100940,4376_161 -4289_75980,260,4376_21004,Dun Laoghaire,105311560,0,4376_7778022_101070,4376_161 -4289_75980,261,4376_21005,Dun Laoghaire,105321560,0,4376_7778022_101070,4376_161 -4289_75980,262,4376_21006,Dun Laoghaire,105431560,0,4376_7778022_101070,4376_161 -4289_75980,263,4376_21007,Dun Laoghaire,105541560,0,4376_7778022_101070,4376_161 -4289_75980,264,4376_21008,Dun Laoghaire,105651560,0,4376_7778022_101070,4376_161 -4289_75980,265,4376_21009,Dun Laoghaire,105811560,0,4376_7778022_101070,4376_161 -4289_75963,268,4376_2101,Blackrock,106141170,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21010,Dun Laoghaire,105821560,0,4376_7778022_101070,4376_161 -4289_75980,267,4376_21011,Dun Laoghaire,106051560,0,4376_7778022_101070,4376_161 -4289_75980,268,4376_21012,Dun Laoghaire,106141560,0,4376_7778022_101070,4376_161 -4289_75980,269,4376_21013,Dun Laoghaire,106231560,0,4376_7778022_101070,4376_161 -4289_75980,259,4376_21014,Dun Laoghaire,105764386,0,4376_7778022_100800,4376_162 -4289_75980,270,4376_21015,Dun Laoghaire,105277166,0,4376_7778022_100631,4376_163 -4289_75980,146,4376_21016,Dun Laoghaire,105247166,0,4376_7778022_100631,4376_163 -4289_75980,271,4376_21017,Dun Laoghaire,105237166,0,4376_7778022_100631,4376_163 -4289_75980,115,4376_21018,Dun Laoghaire,105217166,0,4376_7778022_100631,4376_163 -4289_75980,260,4376_21019,Dun Laoghaire,105311590,0,4376_7778022_100950,4376_161 -4289_75963,269,4376_2102,Blackrock,106231170,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_21020,Dun Laoghaire,105321590,0,4376_7778022_100950,4376_161 -4289_75980,262,4376_21021,Dun Laoghaire,105431590,0,4376_7778022_100950,4376_161 -4289_75980,263,4376_21022,Dun Laoghaire,105541590,0,4376_7778022_100950,4376_161 -4289_75980,264,4376_21023,Dun Laoghaire,105651590,0,4376_7778022_100950,4376_161 -4289_75980,265,4376_21024,Dun Laoghaire,105811590,0,4376_7778022_100950,4376_161 -4289_75980,266,4376_21025,Dun Laoghaire,105821590,0,4376_7778022_100950,4376_161 -4289_75980,267,4376_21026,Dun Laoghaire,106051590,0,4376_7778022_100950,4376_161 -4289_75980,268,4376_21027,Dun Laoghaire,106141590,0,4376_7778022_100950,4376_161 -4289_75980,269,4376_21028,Dun Laoghaire,106231590,0,4376_7778022_100950,4376_161 -4289_75980,259,4376_21029,Dun Laoghaire,105764440,0,4376_7778022_100790,4376_161 -4289_75963,259,4376_2103,Blackrock,105764140,0,4376_7778022_100150,4376_30 -4289_75980,270,4376_21030,Dun Laoghaire,105277210,0,4376_7778022_100650,4376_162 -4289_75980,146,4376_21031,Dun Laoghaire,105247210,0,4376_7778022_100650,4376_162 -4289_75980,271,4376_21032,Dun Laoghaire,105237210,0,4376_7778022_100650,4376_162 -4289_75980,115,4376_21033,Dun Laoghaire,105217210,0,4376_7778022_100650,4376_162 -4289_75980,260,4376_21034,Dun Laoghaire,105311630,0,4376_7778022_101090,4376_161 -4289_75980,261,4376_21035,Dun Laoghaire,105321630,0,4376_7778022_101090,4376_161 -4289_75980,262,4376_21036,Dun Laoghaire,105431630,0,4376_7778022_101090,4376_161 -4289_75980,263,4376_21037,Dun Laoghaire,105541630,0,4376_7778022_101090,4376_161 -4289_75980,264,4376_21038,Dun Laoghaire,105651630,0,4376_7778022_101090,4376_161 -4289_75980,265,4376_21039,Dun Laoghaire,105811630,0,4376_7778022_101090,4376_161 -4289_75963,260,4376_2104,Blackrock,105311272,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21040,Dun Laoghaire,105821630,0,4376_7778022_101090,4376_161 -4289_75980,267,4376_21041,Dun Laoghaire,106051630,0,4376_7778022_101090,4376_161 -4289_75980,268,4376_21042,Dun Laoghaire,106141630,0,4376_7778022_101090,4376_161 -4289_75980,269,4376_21043,Dun Laoghaire,106231630,0,4376_7778022_101090,4376_161 -4289_75980,260,4376_21044,Dun Laoghaire,105311668,0,4376_7778022_101041,4376_161 -4289_75980,261,4376_21045,Dun Laoghaire,105321668,0,4376_7778022_101041,4376_161 -4289_75980,262,4376_21046,Dun Laoghaire,105431668,0,4376_7778022_101041,4376_161 -4289_75980,263,4376_21047,Dun Laoghaire,105541668,0,4376_7778022_101041,4376_161 -4289_75980,264,4376_21048,Dun Laoghaire,105651668,0,4376_7778022_101041,4376_161 -4289_75980,265,4376_21049,Dun Laoghaire,105811668,0,4376_7778022_101041,4376_161 -4289_75963,261,4376_2105,Blackrock,105321272,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21050,Dun Laoghaire,105821668,0,4376_7778022_101041,4376_161 -4289_75980,267,4376_21051,Dun Laoghaire,106051668,0,4376_7778022_101041,4376_161 -4289_75980,268,4376_21052,Dun Laoghaire,106141668,0,4376_7778022_101041,4376_161 -4289_75980,269,4376_21053,Dun Laoghaire,106231668,0,4376_7778022_101041,4376_161 -4289_75980,259,4376_21054,Dun Laoghaire,105764488,0,4376_7778022_100810,4376_162 -4289_75980,270,4376_21055,Dun Laoghaire,105277260,0,4376_7778022_100640,4376_163 -4289_75980,146,4376_21056,Dun Laoghaire,105247260,0,4376_7778022_100640,4376_163 -4289_75980,271,4376_21057,Dun Laoghaire,105237260,0,4376_7778022_100640,4376_163 -4289_75980,115,4376_21058,Dun Laoghaire,105217260,0,4376_7778022_100640,4376_163 -4289_75980,260,4376_21059,Dun Laoghaire,105311700,0,4376_7778022_101062,4376_161 -4289_75963,262,4376_2106,Blackrock,105431272,0,4376_7778022_100160,4376_30 -4289_75980,261,4376_21060,Dun Laoghaire,105321700,0,4376_7778022_101062,4376_161 -4289_75980,262,4376_21061,Dun Laoghaire,105431700,0,4376_7778022_101062,4376_161 -4289_75980,263,4376_21062,Dun Laoghaire,105541700,0,4376_7778022_101062,4376_161 -4289_75980,264,4376_21063,Dun Laoghaire,105651700,0,4376_7778022_101062,4376_161 -4289_75980,265,4376_21064,Dun Laoghaire,105811700,0,4376_7778022_101062,4376_161 -4289_75980,266,4376_21065,Dun Laoghaire,105821700,0,4376_7778022_101062,4376_161 -4289_75980,267,4376_21066,Dun Laoghaire,106051700,0,4376_7778022_101062,4376_161 -4289_75980,268,4376_21067,Dun Laoghaire,106141700,0,4376_7778022_101062,4376_161 -4289_75980,269,4376_21068,Dun Laoghaire,106231700,0,4376_7778022_101062,4376_161 -4289_75980,259,4376_21069,Dun Laoghaire,105764544,0,4376_7778022_100850,4376_161 -4289_75963,263,4376_2107,Blackrock,105541272,0,4376_7778022_100160,4376_30 -4289_75980,270,4376_21070,Dun Laoghaire,105277306,0,4376_7778022_100600,4376_162 -4289_75980,146,4376_21071,Dun Laoghaire,105247306,0,4376_7778022_100600,4376_162 -4289_75980,271,4376_21072,Dun Laoghaire,105237306,0,4376_7778022_100600,4376_162 -4289_75980,115,4376_21073,Dun Laoghaire,105217306,0,4376_7778022_100600,4376_162 -4289_75980,260,4376_21074,Dun Laoghaire,105311728,0,4376_7778022_101080,4376_161 -4289_75980,261,4376_21075,Dun Laoghaire,105321728,0,4376_7778022_101080,4376_161 -4289_75980,262,4376_21076,Dun Laoghaire,105431728,0,4376_7778022_101080,4376_161 -4289_75980,263,4376_21077,Dun Laoghaire,105541728,0,4376_7778022_101080,4376_161 -4289_75980,264,4376_21078,Dun Laoghaire,105651728,0,4376_7778022_101080,4376_161 -4289_75980,265,4376_21079,Dun Laoghaire,105811728,0,4376_7778022_101080,4376_161 -4289_75963,264,4376_2108,Blackrock,105651272,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21080,Dun Laoghaire,105821728,0,4376_7778022_101080,4376_161 -4289_75980,267,4376_21081,Dun Laoghaire,106051728,0,4376_7778022_101080,4376_161 -4289_75980,268,4376_21082,Dun Laoghaire,106141728,0,4376_7778022_101080,4376_161 -4289_75980,269,4376_21083,Dun Laoghaire,106231728,0,4376_7778022_101080,4376_161 -4289_75980,260,4376_21084,Dun Laoghaire,105311774,0,4376_7778022_101052,4376_161 -4289_75980,261,4376_21085,Dun Laoghaire,105321774,0,4376_7778022_101052,4376_161 -4289_75980,262,4376_21086,Dun Laoghaire,105431774,0,4376_7778022_101052,4376_161 -4289_75980,263,4376_21087,Dun Laoghaire,105541774,0,4376_7778022_101052,4376_161 -4289_75980,264,4376_21088,Dun Laoghaire,105651774,0,4376_7778022_101052,4376_161 -4289_75980,265,4376_21089,Dun Laoghaire,105811774,0,4376_7778022_101052,4376_161 -4289_75963,265,4376_2109,Blackrock,105811272,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21090,Dun Laoghaire,105821774,0,4376_7778022_101052,4376_161 -4289_75980,267,4376_21091,Dun Laoghaire,106051774,0,4376_7778022_101052,4376_161 -4289_75980,268,4376_21092,Dun Laoghaire,106141774,0,4376_7778022_101052,4376_161 -4289_75980,269,4376_21093,Dun Laoghaire,106231774,0,4376_7778022_101052,4376_161 -4289_75980,259,4376_21094,Dun Laoghaire,105764590,0,4376_7778022_100780,4376_162 -4289_75980,270,4376_21095,Dun Laoghaire,105277350,0,4376_7778022_100621,4376_163 -4289_75980,146,4376_21096,Dun Laoghaire,105247350,0,4376_7778022_100621,4376_163 -4289_75980,271,4376_21097,Dun Laoghaire,105237350,0,4376_7778022_100621,4376_163 -4289_75980,115,4376_21098,Dun Laoghaire,105217350,0,4376_7778022_100621,4376_163 -4289_75980,260,4376_21099,Dun Laoghaire,105311808,0,4376_7778022_101102,4376_161 -4289_75960,269,4376_211,Sutton Station,106231866,0,4376_7778022_103502,4376_1 -4289_75963,266,4376_2110,Blackrock,105821272,0,4376_7778022_100160,4376_30 -4289_75980,261,4376_21100,Dun Laoghaire,105321808,0,4376_7778022_101102,4376_161 -4289_75980,262,4376_21101,Dun Laoghaire,105431808,0,4376_7778022_101102,4376_161 -4289_75980,263,4376_21102,Dun Laoghaire,105541808,0,4376_7778022_101102,4376_161 -4289_75980,264,4376_21103,Dun Laoghaire,105651808,0,4376_7778022_101102,4376_161 -4289_75980,265,4376_21104,Dun Laoghaire,105811808,0,4376_7778022_101102,4376_161 -4289_75980,266,4376_21105,Dun Laoghaire,105821808,0,4376_7778022_101102,4376_161 -4289_75980,267,4376_21106,Dun Laoghaire,106051808,0,4376_7778022_101102,4376_161 -4289_75980,268,4376_21107,Dun Laoghaire,106141808,0,4376_7778022_101102,4376_161 -4289_75980,269,4376_21108,Dun Laoghaire,106231808,0,4376_7778022_101102,4376_161 -4289_75980,259,4376_21109,Dun Laoghaire,105764646,0,4376_7778022_100820,4376_161 -4289_75963,267,4376_2111,Blackrock,106051272,0,4376_7778022_100160,4376_30 -4289_75980,270,4376_21110,Dun Laoghaire,105277396,0,4376_7778022_100610,4376_162 -4289_75980,146,4376_21111,Dun Laoghaire,105247396,0,4376_7778022_100610,4376_162 -4289_75980,271,4376_21112,Dun Laoghaire,105237396,0,4376_7778022_100610,4376_162 -4289_75980,115,4376_21113,Dun Laoghaire,105217396,0,4376_7778022_100610,4376_162 -4289_75980,260,4376_21114,Dun Laoghaire,105311844,0,4376_7778022_100992,4376_161 -4289_75980,261,4376_21115,Dun Laoghaire,105321844,0,4376_7778022_100992,4376_161 -4289_75980,262,4376_21116,Dun Laoghaire,105431844,0,4376_7778022_100992,4376_161 -4289_75980,263,4376_21117,Dun Laoghaire,105541844,0,4376_7778022_100992,4376_161 -4289_75980,264,4376_21118,Dun Laoghaire,105651844,0,4376_7778022_100992,4376_161 -4289_75980,265,4376_21119,Dun Laoghaire,105811844,0,4376_7778022_100992,4376_161 -4289_75963,268,4376_2112,Blackrock,106141272,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21120,Dun Laoghaire,105821844,0,4376_7778022_100992,4376_161 -4289_75980,267,4376_21121,Dun Laoghaire,106051844,0,4376_7778022_100992,4376_161 -4289_75980,268,4376_21122,Dun Laoghaire,106141844,0,4376_7778022_100992,4376_161 -4289_75980,269,4376_21123,Dun Laoghaire,106231844,0,4376_7778022_100992,4376_161 -4289_75980,260,4376_21124,Dun Laoghaire,105311872,0,4376_7778022_101010,4376_161 -4289_75980,261,4376_21125,Dun Laoghaire,105321872,0,4376_7778022_101010,4376_161 -4289_75980,262,4376_21126,Dun Laoghaire,105431872,0,4376_7778022_101010,4376_161 -4289_75980,263,4376_21127,Dun Laoghaire,105541872,0,4376_7778022_101010,4376_161 -4289_75980,264,4376_21128,Dun Laoghaire,105651872,0,4376_7778022_101010,4376_161 -4289_75980,265,4376_21129,Dun Laoghaire,105811872,0,4376_7778022_101010,4376_161 -4289_75963,269,4376_2113,Blackrock,106231272,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21130,Dun Laoghaire,105821872,0,4376_7778022_101010,4376_161 -4289_75980,267,4376_21131,Dun Laoghaire,106051872,0,4376_7778022_101010,4376_161 -4289_75980,268,4376_21132,Dun Laoghaire,106141872,0,4376_7778022_101010,4376_161 -4289_75980,269,4376_21133,Dun Laoghaire,106231872,0,4376_7778022_101010,4376_161 -4289_75980,259,4376_21134,Dun Laoghaire,105764694,0,4376_7778022_100830,4376_162 -4289_75980,270,4376_21135,Dun Laoghaire,105277430,0,4376_7778022_100631,4376_163 -4289_75980,146,4376_21136,Dun Laoghaire,105247430,0,4376_7778022_100631,4376_163 -4289_75980,271,4376_21137,Dun Laoghaire,105237430,0,4376_7778022_100631,4376_163 -4289_75980,115,4376_21138,Dun Laoghaire,105217430,0,4376_7778022_100631,4376_163 -4289_75980,260,4376_21139,Dun Laoghaire,105311916,0,4376_7778022_100940,4376_161 -4289_75963,260,4376_2114,Blackrock,105311392,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_21140,Dun Laoghaire,105321916,0,4376_7778022_100940,4376_161 -4289_75980,262,4376_21141,Dun Laoghaire,105431916,0,4376_7778022_100940,4376_161 -4289_75980,263,4376_21142,Dun Laoghaire,105541916,0,4376_7778022_100940,4376_161 -4289_75980,264,4376_21143,Dun Laoghaire,105651916,0,4376_7778022_100940,4376_161 -4289_75980,265,4376_21144,Dun Laoghaire,105811916,0,4376_7778022_100940,4376_161 -4289_75980,266,4376_21145,Dun Laoghaire,105821916,0,4376_7778022_100940,4376_161 -4289_75980,267,4376_21146,Dun Laoghaire,106051916,0,4376_7778022_100940,4376_161 -4289_75980,268,4376_21147,Dun Laoghaire,106141916,0,4376_7778022_100940,4376_161 -4289_75980,269,4376_21148,Dun Laoghaire,106231916,0,4376_7778022_100940,4376_161 -4289_75980,259,4376_21149,Dun Laoghaire,105764750,0,4376_7778022_100840,4376_161 -4289_75963,261,4376_2115,Blackrock,105321392,0,4376_7778022_100150,4376_30 -4289_75980,270,4376_21150,Dun Laoghaire,105277486,0,4376_7778022_100661,4376_162 -4289_75980,146,4376_21151,Dun Laoghaire,105247486,0,4376_7778022_100661,4376_162 -4289_75980,271,4376_21152,Dun Laoghaire,105237486,0,4376_7778022_100661,4376_162 -4289_75980,115,4376_21153,Dun Laoghaire,105217486,0,4376_7778022_100661,4376_162 -4289_75980,260,4376_21154,Dun Laoghaire,105311956,0,4376_7778022_101032,4376_161 -4289_75980,261,4376_21155,Dun Laoghaire,105321956,0,4376_7778022_101032,4376_161 -4289_75980,262,4376_21156,Dun Laoghaire,105431956,0,4376_7778022_101032,4376_161 -4289_75980,263,4376_21157,Dun Laoghaire,105541956,0,4376_7778022_101032,4376_161 -4289_75980,264,4376_21158,Dun Laoghaire,105651956,0,4376_7778022_101032,4376_161 -4289_75980,265,4376_21159,Dun Laoghaire,105811956,0,4376_7778022_101032,4376_161 -4289_75963,262,4376_2116,Blackrock,105431392,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21160,Dun Laoghaire,105821956,0,4376_7778022_101032,4376_161 -4289_75980,267,4376_21161,Dun Laoghaire,106051956,0,4376_7778022_101032,4376_161 -4289_75980,268,4376_21162,Dun Laoghaire,106141956,0,4376_7778022_101032,4376_161 -4289_75980,269,4376_21163,Dun Laoghaire,106231956,0,4376_7778022_101032,4376_161 -4289_75980,260,4376_21164,Dun Laoghaire,105311994,0,4376_7778022_101070,4376_161 -4289_75980,261,4376_21165,Dun Laoghaire,105321994,0,4376_7778022_101070,4376_161 -4289_75980,262,4376_21166,Dun Laoghaire,105431994,0,4376_7778022_101070,4376_161 -4289_75980,263,4376_21167,Dun Laoghaire,105541994,0,4376_7778022_101070,4376_161 -4289_75980,264,4376_21168,Dun Laoghaire,105651994,0,4376_7778022_101070,4376_161 -4289_75980,265,4376_21169,Dun Laoghaire,105811994,0,4376_7778022_101070,4376_161 -4289_75963,263,4376_2117,Blackrock,105541392,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21170,Dun Laoghaire,105821994,0,4376_7778022_101070,4376_161 -4289_75980,267,4376_21171,Dun Laoghaire,106051994,0,4376_7778022_101070,4376_161 -4289_75980,268,4376_21172,Dun Laoghaire,106141994,0,4376_7778022_101070,4376_161 -4289_75980,269,4376_21173,Dun Laoghaire,106231994,0,4376_7778022_101070,4376_161 -4289_75980,259,4376_21174,Dun Laoghaire,105764796,0,4376_7778022_100800,4376_162 -4289_75980,270,4376_21175,Dun Laoghaire,105277532,0,4376_7778022_100650,4376_163 -4289_75980,146,4376_21176,Dun Laoghaire,105247532,0,4376_7778022_100650,4376_163 -4289_75980,271,4376_21177,Dun Laoghaire,105237532,0,4376_7778022_100650,4376_163 -4289_75980,115,4376_21178,Dun Laoghaire,105217532,0,4376_7778022_100650,4376_163 -4289_75980,260,4376_21179,Dun Laoghaire,105312026,0,4376_7778022_100950,4376_161 -4289_75963,264,4376_2118,Blackrock,105651392,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_21180,Dun Laoghaire,105322026,0,4376_7778022_100950,4376_161 -4289_75980,262,4376_21181,Dun Laoghaire,105432026,0,4376_7778022_100950,4376_161 -4289_75980,263,4376_21182,Dun Laoghaire,105542026,0,4376_7778022_100950,4376_161 -4289_75980,264,4376_21183,Dun Laoghaire,105652026,0,4376_7778022_100950,4376_161 -4289_75980,265,4376_21184,Dun Laoghaire,105812026,0,4376_7778022_100950,4376_161 -4289_75980,266,4376_21185,Dun Laoghaire,105822026,0,4376_7778022_100950,4376_161 -4289_75980,267,4376_21186,Dun Laoghaire,106052026,0,4376_7778022_100950,4376_161 -4289_75980,268,4376_21187,Dun Laoghaire,106142026,0,4376_7778022_100950,4376_161 -4289_75980,269,4376_21188,Dun Laoghaire,106232026,0,4376_7778022_100950,4376_161 -4289_75980,259,4376_21189,Dun Laoghaire,105764850,0,4376_7778022_100790,4376_161 -4289_75963,265,4376_2119,Blackrock,105811392,0,4376_7778022_100150,4376_30 -4289_75980,270,4376_21190,Dun Laoghaire,105277566,0,4376_7778022_100640,4376_162 -4289_75980,146,4376_21191,Dun Laoghaire,105247566,0,4376_7778022_100640,4376_162 -4289_75980,271,4376_21192,Dun Laoghaire,105237566,0,4376_7778022_100640,4376_162 -4289_75980,115,4376_21193,Dun Laoghaire,105217566,0,4376_7778022_100640,4376_162 -4289_75980,260,4376_21194,Dun Laoghaire,105312070,0,4376_7778022_101090,4376_161 -4289_75980,261,4376_21195,Dun Laoghaire,105322070,0,4376_7778022_101090,4376_161 -4289_75980,262,4376_21196,Dun Laoghaire,105432070,0,4376_7778022_101090,4376_161 -4289_75980,263,4376_21197,Dun Laoghaire,105542070,0,4376_7778022_101090,4376_161 -4289_75980,264,4376_21198,Dun Laoghaire,105652070,0,4376_7778022_101090,4376_161 -4289_75980,265,4376_21199,Dun Laoghaire,105812070,0,4376_7778022_101090,4376_161 -4289_75960,259,4376_212,Sutton Station,105764676,0,4376_7778022_103103,4376_2 -4289_75963,266,4376_2120,Blackrock,105821392,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21200,Dun Laoghaire,105822070,0,4376_7778022_101090,4376_161 -4289_75980,267,4376_21201,Dun Laoghaire,106052070,0,4376_7778022_101090,4376_161 -4289_75980,268,4376_21202,Dun Laoghaire,106142070,0,4376_7778022_101090,4376_161 -4289_75980,269,4376_21203,Dun Laoghaire,106232070,0,4376_7778022_101090,4376_161 -4289_75980,260,4376_21204,Dun Laoghaire,105312122,0,4376_7778022_101062,4376_161 -4289_75980,261,4376_21205,Dun Laoghaire,105322122,0,4376_7778022_101062,4376_161 -4289_75980,262,4376_21206,Dun Laoghaire,105432122,0,4376_7778022_101062,4376_161 -4289_75980,263,4376_21207,Dun Laoghaire,105542122,0,4376_7778022_101062,4376_161 -4289_75980,264,4376_21208,Dun Laoghaire,105652122,0,4376_7778022_101062,4376_161 -4289_75980,265,4376_21209,Dun Laoghaire,105812122,0,4376_7778022_101062,4376_161 -4289_75963,267,4376_2121,Blackrock,106051392,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21210,Dun Laoghaire,105822122,0,4376_7778022_101062,4376_161 -4289_75980,267,4376_21211,Dun Laoghaire,106052122,0,4376_7778022_101062,4376_161 -4289_75980,268,4376_21212,Dun Laoghaire,106142122,0,4376_7778022_101062,4376_161 -4289_75980,269,4376_21213,Dun Laoghaire,106232122,0,4376_7778022_101062,4376_161 -4289_75980,259,4376_21214,Dun Laoghaire,105764888,0,4376_7778022_100810,4376_162 -4289_75980,270,4376_21215,Dun Laoghaire,105277610,0,4376_7778022_100600,4376_163 -4289_75980,146,4376_21216,Dun Laoghaire,105247610,0,4376_7778022_100600,4376_163 -4289_75980,271,4376_21217,Dun Laoghaire,105237610,0,4376_7778022_100600,4376_163 -4289_75980,115,4376_21218,Dun Laoghaire,105217610,0,4376_7778022_100600,4376_163 -4289_75980,260,4376_21219,Dun Laoghaire,105312154,0,4376_7778022_101080,4376_161 -4289_75963,268,4376_2122,Blackrock,106141392,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_21220,Dun Laoghaire,105322154,0,4376_7778022_101080,4376_161 -4289_75980,262,4376_21221,Dun Laoghaire,105432154,0,4376_7778022_101080,4376_161 -4289_75980,263,4376_21222,Dun Laoghaire,105542154,0,4376_7778022_101080,4376_161 -4289_75980,264,4376_21223,Dun Laoghaire,105652154,0,4376_7778022_101080,4376_161 -4289_75980,265,4376_21224,Dun Laoghaire,105812154,0,4376_7778022_101080,4376_161 -4289_75980,266,4376_21225,Dun Laoghaire,105822154,0,4376_7778022_101080,4376_161 -4289_75980,267,4376_21226,Dun Laoghaire,106052154,0,4376_7778022_101080,4376_161 -4289_75980,268,4376_21227,Dun Laoghaire,106142154,0,4376_7778022_101080,4376_161 -4289_75980,269,4376_21228,Dun Laoghaire,106232154,0,4376_7778022_101080,4376_161 -4289_75980,260,4376_21229,Dun Laoghaire,105312186,0,4376_7778022_101002,4376_161 -4289_75963,269,4376_2123,Blackrock,106231392,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_21230,Dun Laoghaire,105322186,0,4376_7778022_101002,4376_161 -4289_75980,262,4376_21231,Dun Laoghaire,105432186,0,4376_7778022_101002,4376_161 -4289_75980,263,4376_21232,Dun Laoghaire,105542186,0,4376_7778022_101002,4376_161 -4289_75980,264,4376_21233,Dun Laoghaire,105652186,0,4376_7778022_101002,4376_161 -4289_75980,265,4376_21234,Dun Laoghaire,105812186,0,4376_7778022_101002,4376_161 -4289_75980,266,4376_21235,Dun Laoghaire,105822186,0,4376_7778022_101002,4376_161 -4289_75980,267,4376_21236,Dun Laoghaire,106052186,0,4376_7778022_101002,4376_161 -4289_75980,268,4376_21237,Dun Laoghaire,106142186,0,4376_7778022_101002,4376_161 -4289_75980,269,4376_21238,Dun Laoghaire,106232186,0,4376_7778022_101002,4376_161 -4289_75980,259,4376_21239,Dun Laoghaire,105764952,0,4376_7778022_100850,4376_162 -4289_75963,259,4376_2124,Blackrock,105764226,0,4376_7778022_100150,4376_31 -4289_75980,270,4376_21240,Dun Laoghaire,105277668,0,4376_7778022_100671,4376_163 -4289_75980,146,4376_21241,Dun Laoghaire,105247668,0,4376_7778022_100671,4376_163 -4289_75980,271,4376_21242,Dun Laoghaire,105237668,0,4376_7778022_100671,4376_163 -4289_75980,115,4376_21243,Dun Laoghaire,105217668,0,4376_7778022_100671,4376_163 -4289_75980,260,4376_21244,Dun Laoghaire,105312210,0,4376_7778022_101052,4376_161 -4289_75980,261,4376_21245,Dun Laoghaire,105322210,0,4376_7778022_101052,4376_161 -4289_75980,262,4376_21246,Dun Laoghaire,105432210,0,4376_7778022_101052,4376_161 -4289_75980,263,4376_21247,Dun Laoghaire,105542210,0,4376_7778022_101052,4376_161 -4289_75980,264,4376_21248,Dun Laoghaire,105652210,0,4376_7778022_101052,4376_161 -4289_75980,265,4376_21249,Dun Laoghaire,105812210,0,4376_7778022_101052,4376_161 -4289_75963,259,4376_2125,Blackrock,105764322,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21250,Dun Laoghaire,105822210,0,4376_7778022_101052,4376_161 -4289_75980,267,4376_21251,Dun Laoghaire,106052210,0,4376_7778022_101052,4376_161 -4289_75980,268,4376_21252,Dun Laoghaire,106142210,0,4376_7778022_101052,4376_161 -4289_75980,269,4376_21253,Dun Laoghaire,106232210,0,4376_7778022_101052,4376_161 -4289_75980,260,4376_21254,Dun Laoghaire,105312250,0,4376_7778022_100982,4376_161 -4289_75980,261,4376_21255,Dun Laoghaire,105322250,0,4376_7778022_100982,4376_161 -4289_75980,262,4376_21256,Dun Laoghaire,105432250,0,4376_7778022_100982,4376_161 -4289_75980,263,4376_21257,Dun Laoghaire,105542250,0,4376_7778022_100982,4376_161 -4289_75980,264,4376_21258,Dun Laoghaire,105652250,0,4376_7778022_100982,4376_161 -4289_75980,265,4376_21259,Dun Laoghaire,105812250,0,4376_7778022_100982,4376_161 -4289_75963,260,4376_2126,Blackrock,105311512,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21260,Dun Laoghaire,105822250,0,4376_7778022_100982,4376_161 -4289_75980,267,4376_21261,Dun Laoghaire,106052250,0,4376_7778022_100982,4376_161 -4289_75980,268,4376_21262,Dun Laoghaire,106142250,0,4376_7778022_100982,4376_161 -4289_75980,269,4376_21263,Dun Laoghaire,106232250,0,4376_7778022_100982,4376_161 -4289_75980,259,4376_21264,Dun Laoghaire,105765000,0,4376_7778022_100780,4376_162 -4289_75980,270,4376_21265,Dun Laoghaire,105277712,0,4376_7778022_100621,4376_163 -4289_75980,146,4376_21266,Dun Laoghaire,105247712,0,4376_7778022_100621,4376_163 -4289_75980,271,4376_21267,Dun Laoghaire,105237712,0,4376_7778022_100621,4376_163 -4289_75980,115,4376_21268,Dun Laoghaire,105217712,0,4376_7778022_100621,4376_163 -4289_75980,260,4376_21269,Dun Laoghaire,105312280,0,4376_7778022_101102,4376_161 -4289_75963,261,4376_2127,Blackrock,105321512,0,4376_7778022_100160,4376_30 -4289_75980,261,4376_21270,Dun Laoghaire,105322280,0,4376_7778022_101102,4376_161 -4289_75980,262,4376_21271,Dun Laoghaire,105432280,0,4376_7778022_101102,4376_161 -4289_75980,263,4376_21272,Dun Laoghaire,105542280,0,4376_7778022_101102,4376_161 -4289_75980,264,4376_21273,Dun Laoghaire,105652280,0,4376_7778022_101102,4376_161 -4289_75980,265,4376_21274,Dun Laoghaire,105812280,0,4376_7778022_101102,4376_161 -4289_75980,266,4376_21275,Dun Laoghaire,105822280,0,4376_7778022_101102,4376_161 -4289_75980,267,4376_21276,Dun Laoghaire,106052280,0,4376_7778022_101102,4376_161 -4289_75980,268,4376_21277,Dun Laoghaire,106142280,0,4376_7778022_101102,4376_161 -4289_75980,269,4376_21278,Dun Laoghaire,106232280,0,4376_7778022_101102,4376_161 -4289_75980,260,4376_21279,Dun Laoghaire,105312298,0,4376_7778022_101042,4376_161 -4289_75963,262,4376_2128,Blackrock,105431512,0,4376_7778022_100160,4376_30 -4289_75980,261,4376_21280,Dun Laoghaire,105322298,0,4376_7778022_101042,4376_161 -4289_75980,262,4376_21281,Dun Laoghaire,105432298,0,4376_7778022_101042,4376_161 -4289_75980,263,4376_21282,Dun Laoghaire,105542298,0,4376_7778022_101042,4376_161 -4289_75980,264,4376_21283,Dun Laoghaire,105652298,0,4376_7778022_101042,4376_161 -4289_75980,265,4376_21284,Dun Laoghaire,105812298,0,4376_7778022_101042,4376_161 -4289_75980,266,4376_21285,Dun Laoghaire,105822298,0,4376_7778022_101042,4376_161 -4289_75980,267,4376_21286,Dun Laoghaire,106052298,0,4376_7778022_101042,4376_161 -4289_75980,268,4376_21287,Dun Laoghaire,106142298,0,4376_7778022_101042,4376_161 -4289_75980,269,4376_21288,Dun Laoghaire,106232298,0,4376_7778022_101042,4376_161 -4289_75980,259,4376_21289,Dun Laoghaire,105765056,0,4376_7778022_100820,4376_162 -4289_75963,263,4376_2129,Blackrock,105541512,0,4376_7778022_100160,4376_30 -4289_75980,270,4376_21290,Dun Laoghaire,105277758,0,4376_7778022_100610,4376_163 -4289_75980,146,4376_21291,Dun Laoghaire,105247758,0,4376_7778022_100610,4376_163 -4289_75980,271,4376_21292,Dun Laoghaire,105237758,0,4376_7778022_100610,4376_163 -4289_75980,115,4376_21293,Dun Laoghaire,105217758,0,4376_7778022_100610,4376_163 -4289_75980,260,4376_21294,Dun Laoghaire,105312330,0,4376_7778022_100992,4376_161 -4289_75980,261,4376_21295,Dun Laoghaire,105322330,0,4376_7778022_100992,4376_161 -4289_75980,262,4376_21296,Dun Laoghaire,105432330,0,4376_7778022_100992,4376_161 -4289_75980,263,4376_21297,Dun Laoghaire,105542330,0,4376_7778022_100992,4376_161 -4289_75980,264,4376_21298,Dun Laoghaire,105652330,0,4376_7778022_100992,4376_161 -4289_75980,265,4376_21299,Dun Laoghaire,105812330,0,4376_7778022_100992,4376_161 -4289_75960,270,4376_213,Sutton Station,105277440,0,4376_7778022_103103,4376_1 -4289_75963,264,4376_2130,Blackrock,105651512,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21300,Dun Laoghaire,105822330,0,4376_7778022_100992,4376_161 -4289_75980,267,4376_21301,Dun Laoghaire,106052330,0,4376_7778022_100992,4376_161 -4289_75980,268,4376_21302,Dun Laoghaire,106142330,0,4376_7778022_100992,4376_161 -4289_75980,269,4376_21303,Dun Laoghaire,106232330,0,4376_7778022_100992,4376_161 -4289_75980,260,4376_21304,Dun Laoghaire,105312366,0,4376_7778022_101022,4376_161 -4289_75980,261,4376_21305,Dun Laoghaire,105322366,0,4376_7778022_101022,4376_161 -4289_75980,262,4376_21306,Dun Laoghaire,105432366,0,4376_7778022_101022,4376_161 -4289_75980,263,4376_21307,Dun Laoghaire,105542366,0,4376_7778022_101022,4376_161 -4289_75980,264,4376_21308,Dun Laoghaire,105652366,0,4376_7778022_101022,4376_161 -4289_75980,265,4376_21309,Dun Laoghaire,105812366,0,4376_7778022_101022,4376_161 -4289_75963,265,4376_2131,Blackrock,105811512,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21310,Dun Laoghaire,105822366,0,4376_7778022_101022,4376_161 -4289_75980,267,4376_21311,Dun Laoghaire,106052366,0,4376_7778022_101022,4376_161 -4289_75980,268,4376_21312,Dun Laoghaire,106142366,0,4376_7778022_101022,4376_161 -4289_75980,269,4376_21313,Dun Laoghaire,106232366,0,4376_7778022_101022,4376_161 -4289_75980,259,4376_21314,Dun Laoghaire,105765100,0,4376_7778022_100830,4376_162 -4289_75980,270,4376_21315,Dun Laoghaire,105277800,0,4376_7778022_100631,4376_163 -4289_75980,146,4376_21316,Dun Laoghaire,105247800,0,4376_7778022_100631,4376_163 -4289_75980,271,4376_21317,Dun Laoghaire,105237800,0,4376_7778022_100631,4376_163 -4289_75980,115,4376_21318,Dun Laoghaire,105217800,0,4376_7778022_100631,4376_163 -4289_75980,260,4376_21319,Dun Laoghaire,105312398,0,4376_7778022_101010,4376_161 -4289_75963,266,4376_2132,Blackrock,105821512,0,4376_7778022_100160,4376_30 -4289_75980,261,4376_21320,Dun Laoghaire,105322398,0,4376_7778022_101010,4376_161 -4289_75980,262,4376_21321,Dun Laoghaire,105432398,0,4376_7778022_101010,4376_161 -4289_75980,263,4376_21322,Dun Laoghaire,105542398,0,4376_7778022_101010,4376_161 -4289_75980,264,4376_21323,Dun Laoghaire,105652398,0,4376_7778022_101010,4376_161 -4289_75980,265,4376_21324,Dun Laoghaire,105812398,0,4376_7778022_101010,4376_161 -4289_75980,266,4376_21325,Dun Laoghaire,105822398,0,4376_7778022_101010,4376_161 -4289_75980,267,4376_21326,Dun Laoghaire,106052398,0,4376_7778022_101010,4376_161 -4289_75980,268,4376_21327,Dun Laoghaire,106142398,0,4376_7778022_101010,4376_161 -4289_75980,269,4376_21328,Dun Laoghaire,106232398,0,4376_7778022_101010,4376_161 -4289_75980,260,4376_21329,Dun Laoghaire,105312428,0,4376_7778022_100940,4376_161 -4289_75963,267,4376_2133,Blackrock,106051512,0,4376_7778022_100160,4376_30 -4289_75980,261,4376_21330,Dun Laoghaire,105322428,0,4376_7778022_100940,4376_161 -4289_75980,262,4376_21331,Dun Laoghaire,105432428,0,4376_7778022_100940,4376_161 -4289_75980,263,4376_21332,Dun Laoghaire,105542428,0,4376_7778022_100940,4376_161 -4289_75980,264,4376_21333,Dun Laoghaire,105652428,0,4376_7778022_100940,4376_161 -4289_75980,265,4376_21334,Dun Laoghaire,105812428,0,4376_7778022_100940,4376_161 -4289_75980,266,4376_21335,Dun Laoghaire,105822428,0,4376_7778022_100940,4376_161 -4289_75980,267,4376_21336,Dun Laoghaire,106052428,0,4376_7778022_100940,4376_161 -4289_75980,268,4376_21337,Dun Laoghaire,106142428,0,4376_7778022_100940,4376_161 -4289_75980,269,4376_21338,Dun Laoghaire,106232428,0,4376_7778022_100940,4376_161 -4289_75980,259,4376_21339,Dun Laoghaire,105765156,0,4376_7778022_100840,4376_162 -4289_75963,268,4376_2134,Blackrock,106141512,0,4376_7778022_100160,4376_30 -4289_75980,270,4376_21340,Dun Laoghaire,105277834,0,4376_7778022_100661,4376_163 -4289_75980,146,4376_21341,Dun Laoghaire,105247834,0,4376_7778022_100661,4376_163 -4289_75980,271,4376_21342,Dun Laoghaire,105237834,0,4376_7778022_100661,4376_163 -4289_75980,115,4376_21343,Dun Laoghaire,105217834,0,4376_7778022_100661,4376_163 -4289_75980,260,4376_21344,Dun Laoghaire,105312452,0,4376_7778022_101032,4376_161 -4289_75980,261,4376_21345,Dun Laoghaire,105322452,0,4376_7778022_101032,4376_161 -4289_75980,262,4376_21346,Dun Laoghaire,105432452,0,4376_7778022_101032,4376_161 -4289_75980,263,4376_21347,Dun Laoghaire,105542452,0,4376_7778022_101032,4376_161 -4289_75980,264,4376_21348,Dun Laoghaire,105652452,0,4376_7778022_101032,4376_161 -4289_75980,265,4376_21349,Dun Laoghaire,105812452,0,4376_7778022_101032,4376_161 -4289_75963,269,4376_2135,Blackrock,106231512,0,4376_7778022_100160,4376_30 -4289_75980,266,4376_21350,Dun Laoghaire,105822452,0,4376_7778022_101032,4376_161 -4289_75980,267,4376_21351,Dun Laoghaire,106052452,0,4376_7778022_101032,4376_161 -4289_75980,268,4376_21352,Dun Laoghaire,106142452,0,4376_7778022_101032,4376_161 -4289_75980,269,4376_21353,Dun Laoghaire,106232452,0,4376_7778022_101032,4376_161 -4289_75980,260,4376_21354,Dun Laoghaire,105312482,0,4376_7778022_100962,4376_161 -4289_75980,261,4376_21355,Dun Laoghaire,105322482,0,4376_7778022_100962,4376_161 -4289_75980,262,4376_21356,Dun Laoghaire,105432482,0,4376_7778022_100962,4376_161 -4289_75980,263,4376_21357,Dun Laoghaire,105542482,0,4376_7778022_100962,4376_161 -4289_75980,264,4376_21358,Dun Laoghaire,105652482,0,4376_7778022_100962,4376_161 -4289_75980,265,4376_21359,Dun Laoghaire,105812482,0,4376_7778022_100962,4376_161 -4289_75963,259,4376_2136,Blackrock,105764428,0,4376_7778022_100142,4376_30 -4289_75980,266,4376_21360,Dun Laoghaire,105822482,0,4376_7778022_100962,4376_161 -4289_75980,267,4376_21361,Dun Laoghaire,106052482,0,4376_7778022_100962,4376_161 -4289_75980,268,4376_21362,Dun Laoghaire,106142482,0,4376_7778022_100962,4376_161 -4289_75980,269,4376_21363,Dun Laoghaire,106232482,0,4376_7778022_100962,4376_161 -4289_75980,259,4376_21364,Dun Laoghaire,105765202,0,4376_7778022_100800,4376_162 -4289_75980,270,4376_21365,Dun Laoghaire,105277888,0,4376_7778022_100650,4376_163 -4289_75980,146,4376_21366,Dun Laoghaire,105247888,0,4376_7778022_100650,4376_163 -4289_75980,271,4376_21367,Dun Laoghaire,105237888,0,4376_7778022_100650,4376_163 -4289_75980,115,4376_21368,Dun Laoghaire,105217888,0,4376_7778022_100650,4376_163 -4289_75980,260,4376_21369,Dun Laoghaire,105312518,0,4376_7778022_101070,4376_161 -4289_75963,270,4376_2137,Blackrock,105277204,0,4376_7778022_100111,4376_31 -4289_75980,261,4376_21370,Dun Laoghaire,105322518,0,4376_7778022_101070,4376_161 -4289_75980,262,4376_21371,Dun Laoghaire,105432518,0,4376_7778022_101070,4376_161 -4289_75980,263,4376_21372,Dun Laoghaire,105542518,0,4376_7778022_101070,4376_161 -4289_75980,264,4376_21373,Dun Laoghaire,105652518,0,4376_7778022_101070,4376_161 -4289_75980,265,4376_21374,Dun Laoghaire,105812518,0,4376_7778022_101070,4376_161 -4289_75980,266,4376_21375,Dun Laoghaire,105822518,0,4376_7778022_101070,4376_161 -4289_75980,267,4376_21376,Dun Laoghaire,106052518,0,4376_7778022_101070,4376_161 -4289_75980,268,4376_21377,Dun Laoghaire,106142518,0,4376_7778022_101070,4376_161 -4289_75980,269,4376_21378,Dun Laoghaire,106232518,0,4376_7778022_101070,4376_161 -4289_75980,259,4376_21379,Dun Laoghaire,105765256,0,4376_7778022_100790,4376_161 -4289_75963,146,4376_2138,Blackrock,105247204,0,4376_7778022_100111,4376_31 -4289_75980,270,4376_21380,Dun Laoghaire,105277934,0,4376_7778022_100640,4376_162 -4289_75980,146,4376_21381,Dun Laoghaire,105247934,0,4376_7778022_100640,4376_162 -4289_75980,271,4376_21382,Dun Laoghaire,105237934,0,4376_7778022_100640,4376_162 -4289_75980,115,4376_21383,Dun Laoghaire,105217934,0,4376_7778022_100640,4376_162 -4289_75980,260,4376_21384,Dun Laoghaire,105312556,0,4376_7778022_100950,4376_161 -4289_75980,261,4376_21385,Dun Laoghaire,105322556,0,4376_7778022_100950,4376_161 -4289_75980,262,4376_21386,Dun Laoghaire,105432556,0,4376_7778022_100950,4376_161 -4289_75980,263,4376_21387,Dun Laoghaire,105542556,0,4376_7778022_100950,4376_161 -4289_75980,264,4376_21388,Dun Laoghaire,105652556,0,4376_7778022_100950,4376_161 -4289_75980,265,4376_21389,Dun Laoghaire,105812556,0,4376_7778022_100950,4376_161 -4289_75963,271,4376_2139,Blackrock,105237204,0,4376_7778022_100111,4376_31 -4289_75980,266,4376_21390,Dun Laoghaire,105822556,0,4376_7778022_100950,4376_161 -4289_75980,267,4376_21391,Dun Laoghaire,106052556,0,4376_7778022_100950,4376_161 -4289_75980,268,4376_21392,Dun Laoghaire,106142556,0,4376_7778022_100950,4376_161 -4289_75980,269,4376_21393,Dun Laoghaire,106232556,0,4376_7778022_100950,4376_161 -4289_75980,260,4376_21394,Dun Laoghaire,105312590,0,4376_7778022_100972,4376_161 -4289_75980,261,4376_21395,Dun Laoghaire,105322590,0,4376_7778022_100972,4376_161 -4289_75980,262,4376_21396,Dun Laoghaire,105432590,0,4376_7778022_100972,4376_161 -4289_75980,263,4376_21397,Dun Laoghaire,105542590,0,4376_7778022_100972,4376_161 -4289_75980,264,4376_21398,Dun Laoghaire,105652590,0,4376_7778022_100972,4376_161 -4289_75980,265,4376_21399,Dun Laoghaire,105812590,0,4376_7778022_100972,4376_161 -4289_75960,146,4376_214,Sutton Station,105247440,0,4376_7778022_103103,4376_1 -4289_75963,115,4376_2140,Blackrock,105217204,0,4376_7778022_100111,4376_31 -4289_75980,266,4376_21400,Dun Laoghaire,105822590,0,4376_7778022_100972,4376_161 -4289_75980,267,4376_21401,Dun Laoghaire,106052590,0,4376_7778022_100972,4376_161 -4289_75980,268,4376_21402,Dun Laoghaire,106142590,0,4376_7778022_100972,4376_161 -4289_75980,269,4376_21403,Dun Laoghaire,106232590,0,4376_7778022_100972,4376_161 -4289_75980,259,4376_21404,Dun Laoghaire,105765304,0,4376_7778022_100810,4376_162 -4289_75980,270,4376_21405,Dun Laoghaire,105277974,0,4376_7778022_100600,4376_163 -4289_75980,146,4376_21406,Dun Laoghaire,105247974,0,4376_7778022_100600,4376_163 -4289_75980,271,4376_21407,Dun Laoghaire,105237974,0,4376_7778022_100600,4376_163 -4289_75980,115,4376_21408,Dun Laoghaire,105217974,0,4376_7778022_100600,4376_163 -4289_75980,260,4376_21409,Dun Laoghaire,105312648,0,4376_7778022_101002,4376_161 -4289_75963,260,4376_2141,Blackrock,105311620,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_21410,Dun Laoghaire,105322648,0,4376_7778022_101002,4376_161 -4289_75980,262,4376_21411,Dun Laoghaire,105432648,0,4376_7778022_101002,4376_161 -4289_75980,263,4376_21412,Dun Laoghaire,105542648,0,4376_7778022_101002,4376_161 -4289_75980,264,4376_21413,Dun Laoghaire,105652648,0,4376_7778022_101002,4376_161 -4289_75980,265,4376_21414,Dun Laoghaire,105812648,0,4376_7778022_101002,4376_161 -4289_75980,266,4376_21415,Dun Laoghaire,105822648,0,4376_7778022_101002,4376_161 -4289_75980,267,4376_21416,Dun Laoghaire,106052648,0,4376_7778022_101002,4376_161 -4289_75980,268,4376_21417,Dun Laoghaire,106142648,0,4376_7778022_101002,4376_161 -4289_75980,269,4376_21418,Dun Laoghaire,106232648,0,4376_7778022_101002,4376_161 -4289_75980,259,4376_21419,Dun Laoghaire,105765348,0,4376_7778022_100780,4376_162 -4289_75963,261,4376_2142,Blackrock,105321620,0,4376_7778022_100150,4376_30 -4289_75980,270,4376_21420,Dun Laoghaire,105278014,0,4376_7778022_100610,4376_163 -4289_75980,146,4376_21421,Dun Laoghaire,105248014,0,4376_7778022_100610,4376_163 -4289_75980,271,4376_21422,Dun Laoghaire,105238014,0,4376_7778022_100610,4376_163 -4289_75980,115,4376_21423,Dun Laoghaire,105218014,0,4376_7778022_100610,4376_163 -4289_75980,260,4376_21424,Dun Laoghaire,105312690,0,4376_7778022_100982,4376_161 -4289_75980,261,4376_21425,Dun Laoghaire,105322690,0,4376_7778022_100982,4376_161 -4289_75980,262,4376_21426,Dun Laoghaire,105432690,0,4376_7778022_100982,4376_161 -4289_75980,263,4376_21427,Dun Laoghaire,105542690,0,4376_7778022_100982,4376_161 -4289_75980,264,4376_21428,Dun Laoghaire,105652690,0,4376_7778022_100982,4376_161 -4289_75980,265,4376_21429,Dun Laoghaire,105812690,0,4376_7778022_100982,4376_161 -4289_75963,262,4376_2143,Blackrock,105431620,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21430,Dun Laoghaire,105822690,0,4376_7778022_100982,4376_161 -4289_75980,267,4376_21431,Dun Laoghaire,106052690,0,4376_7778022_100982,4376_161 -4289_75980,268,4376_21432,Dun Laoghaire,106142690,0,4376_7778022_100982,4376_161 -4289_75980,269,4376_21433,Dun Laoghaire,106232690,0,4376_7778022_100982,4376_161 -4289_75980,259,4376_21434,Dun Laoghaire,105765390,0,4376_7778022_100820,4376_162 -4289_75980,270,4376_21435,Dun Laoghaire,105278054,0,4376_7778022_100622,4376_163 -4289_75980,146,4376_21436,Dun Laoghaire,105248054,0,4376_7778022_100622,4376_163 -4289_75980,271,4376_21437,Dun Laoghaire,105238054,0,4376_7778022_100622,4376_163 -4289_75980,115,4376_21438,Dun Laoghaire,105218054,0,4376_7778022_100622,4376_163 -4289_75980,260,4376_21439,Dun Laoghaire,105312742,0,4376_7778022_100993,4376_161 -4289_75963,263,4376_2144,Blackrock,105541620,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_21440,Dun Laoghaire,105322742,0,4376_7778022_100993,4376_161 -4289_75980,262,4376_21441,Dun Laoghaire,105432742,0,4376_7778022_100993,4376_161 -4289_75980,263,4376_21442,Dun Laoghaire,105542742,0,4376_7778022_100993,4376_161 -4289_75980,264,4376_21443,Dun Laoghaire,105652742,0,4376_7778022_100993,4376_161 -4289_75980,265,4376_21444,Dun Laoghaire,105812742,0,4376_7778022_100993,4376_161 -4289_75980,266,4376_21445,Dun Laoghaire,105822742,0,4376_7778022_100993,4376_161 -4289_75980,267,4376_21446,Dun Laoghaire,106052742,0,4376_7778022_100993,4376_161 -4289_75980,268,4376_21447,Dun Laoghaire,106142742,0,4376_7778022_100993,4376_161 -4289_75980,269,4376_21448,Dun Laoghaire,106232742,0,4376_7778022_100993,4376_161 -4289_75980,259,4376_21449,Dun Laoghaire,105765436,0,4376_7778022_100830,4376_162 -4289_75963,264,4376_2145,Blackrock,105651620,0,4376_7778022_100150,4376_30 -4289_75980,270,4376_21450,Dun Laoghaire,105278102,0,4376_7778022_100632,4376_163 -4289_75980,146,4376_21451,Dun Laoghaire,105248102,0,4376_7778022_100632,4376_163 -4289_75980,271,4376_21452,Dun Laoghaire,105238102,0,4376_7778022_100632,4376_163 -4289_75980,115,4376_21453,Dun Laoghaire,105218102,0,4376_7778022_100632,4376_163 -4289_75980,260,4376_21454,Dun Laoghaire,105312786,0,4376_7778022_101032,4376_161 -4289_75980,261,4376_21455,Dun Laoghaire,105322786,0,4376_7778022_101032,4376_161 -4289_75980,262,4376_21456,Dun Laoghaire,105432786,0,4376_7778022_101032,4376_161 -4289_75980,263,4376_21457,Dun Laoghaire,105542786,0,4376_7778022_101032,4376_161 -4289_75980,264,4376_21458,Dun Laoghaire,105652786,0,4376_7778022_101032,4376_161 -4289_75980,265,4376_21459,Dun Laoghaire,105812786,0,4376_7778022_101032,4376_161 -4289_75963,265,4376_2146,Blackrock,105811620,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21460,Dun Laoghaire,105822786,0,4376_7778022_101032,4376_161 -4289_75980,267,4376_21461,Dun Laoghaire,106052786,0,4376_7778022_101032,4376_161 -4289_75980,268,4376_21462,Dun Laoghaire,106142786,0,4376_7778022_101032,4376_161 -4289_75980,269,4376_21463,Dun Laoghaire,106232786,0,4376_7778022_101032,4376_161 -4289_75980,259,4376_21464,Dun Laoghaire,105765478,0,4376_7778022_100840,4376_162 -4289_75980,270,4376_21465,Dun Laoghaire,105278132,0,4376_7778022_100672,4376_163 -4289_75980,146,4376_21466,Dun Laoghaire,105248132,0,4376_7778022_100672,4376_163 -4289_75980,271,4376_21467,Dun Laoghaire,105238132,0,4376_7778022_100672,4376_163 -4289_75980,115,4376_21468,Dun Laoghaire,105218132,0,4376_7778022_100672,4376_163 -4289_75980,260,4376_21469,Dun Laoghaire,105312834,0,4376_7778022_101070,4376_161 -4289_75963,266,4376_2147,Blackrock,105821620,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_21470,Dun Laoghaire,105322834,0,4376_7778022_101070,4376_161 -4289_75980,262,4376_21471,Dun Laoghaire,105432834,0,4376_7778022_101070,4376_161 -4289_75980,263,4376_21472,Dun Laoghaire,105542834,0,4376_7778022_101070,4376_161 -4289_75980,264,4376_21473,Dun Laoghaire,105652834,0,4376_7778022_101070,4376_161 -4289_75980,265,4376_21474,Dun Laoghaire,105812834,0,4376_7778022_101070,4376_161 -4289_75980,266,4376_21475,Dun Laoghaire,105822834,0,4376_7778022_101070,4376_161 -4289_75980,267,4376_21476,Dun Laoghaire,106052834,0,4376_7778022_101070,4376_161 -4289_75980,268,4376_21477,Dun Laoghaire,106142834,0,4376_7778022_101070,4376_161 -4289_75980,269,4376_21478,Dun Laoghaire,106232834,0,4376_7778022_101070,4376_161 -4289_75980,259,4376_21479,Dun Laoghaire,105765518,0,4376_7778022_100790,4376_161 -4289_75963,267,4376_2148,Blackrock,106051620,0,4376_7778022_100150,4376_30 -4289_75980,270,4376_21480,Dun Laoghaire,105278176,0,4376_7778022_100640,4376_161 -4289_75980,146,4376_21481,Dun Laoghaire,105248176,0,4376_7778022_100640,4376_161 -4289_75980,271,4376_21482,Dun Laoghaire,105238176,0,4376_7778022_100640,4376_161 -4289_75980,115,4376_21483,Dun Laoghaire,105218176,0,4376_7778022_100640,4376_161 -4289_75980,260,4376_21484,Dun Laoghaire,105312880,0,4376_7778022_101023,4376_161 -4289_75980,261,4376_21485,Dun Laoghaire,105322880,0,4376_7778022_101023,4376_161 -4289_75980,262,4376_21486,Dun Laoghaire,105432880,0,4376_7778022_101023,4376_161 -4289_75980,263,4376_21487,Dun Laoghaire,105542880,0,4376_7778022_101023,4376_161 -4289_75980,264,4376_21488,Dun Laoghaire,105652880,0,4376_7778022_101023,4376_161 -4289_75980,265,4376_21489,Dun Laoghaire,105812880,0,4376_7778022_101023,4376_161 -4289_75963,268,4376_2149,Blackrock,106141620,0,4376_7778022_100150,4376_30 -4289_75980,266,4376_21490,Dun Laoghaire,105822880,0,4376_7778022_101023,4376_161 -4289_75980,267,4376_21491,Dun Laoghaire,106052880,0,4376_7778022_101023,4376_161 -4289_75980,268,4376_21492,Dun Laoghaire,106142880,0,4376_7778022_101023,4376_161 -4289_75980,269,4376_21493,Dun Laoghaire,106232880,0,4376_7778022_101023,4376_161 -4289_75980,259,4376_21494,Dun Laoghaire,105765562,0,4376_7778022_100810,4376_162 -4289_75980,270,4376_21495,Dun Laoghaire,105278208,0,4376_7778022_100662,4376_163 -4289_75980,146,4376_21496,Dun Laoghaire,105248208,0,4376_7778022_100662,4376_163 -4289_75980,271,4376_21497,Dun Laoghaire,105238208,0,4376_7778022_100662,4376_163 -4289_75980,115,4376_21498,Dun Laoghaire,105218208,0,4376_7778022_100662,4376_163 -4289_75980,260,4376_21499,Dun Laoghaire,105312926,0,4376_7778022_101002,4376_161 -4289_75960,271,4376_215,Sutton Station,105237440,0,4376_7778022_103103,4376_1 -4289_75963,269,4376_2150,Blackrock,106231620,0,4376_7778022_100150,4376_30 -4289_75980,261,4376_21500,Dun Laoghaire,105322926,0,4376_7778022_101002,4376_161 -4289_75980,262,4376_21501,Dun Laoghaire,105432926,0,4376_7778022_101002,4376_161 -4289_75980,263,4376_21502,Dun Laoghaire,105542926,0,4376_7778022_101002,4376_161 -4289_75980,264,4376_21503,Dun Laoghaire,105652926,0,4376_7778022_101002,4376_161 -4289_75980,265,4376_21504,Dun Laoghaire,105812926,0,4376_7778022_101002,4376_161 -4289_75980,266,4376_21505,Dun Laoghaire,105822926,0,4376_7778022_101002,4376_161 -4289_75980,267,4376_21506,Dun Laoghaire,106052926,0,4376_7778022_101002,4376_161 -4289_75980,268,4376_21507,Dun Laoghaire,106142926,0,4376_7778022_101002,4376_161 -4289_75980,269,4376_21508,Dun Laoghaire,106232926,0,4376_7778022_101002,4376_161 -4289_75980,259,4376_21509,Dun Laoghaire,105765600,0,4376_7778022_100780,4376_162 -4289_75963,259,4376_2151,Blackrock,105764528,0,4376_7778022_100150,4376_30 -4289_75980,270,4376_21510,Dun Laoghaire,105278250,0,4376_7778022_100610,4376_163 -4289_75980,146,4376_21511,Dun Laoghaire,105248250,0,4376_7778022_100610,4376_163 -4289_75980,271,4376_21512,Dun Laoghaire,105238250,0,4376_7778022_100610,4376_163 -4289_75980,115,4376_21513,Dun Laoghaire,105218250,0,4376_7778022_100610,4376_163 -4289_75980,260,4376_21514,Dun Laoghaire,105312968,0,4376_7778022_100982,4376_161 -4289_75980,261,4376_21515,Dun Laoghaire,105322968,0,4376_7778022_100982,4376_161 -4289_75980,262,4376_21516,Dun Laoghaire,105432968,0,4376_7778022_100982,4376_161 -4289_75980,263,4376_21517,Dun Laoghaire,105542968,0,4376_7778022_100982,4376_161 -4289_75980,264,4376_21518,Dun Laoghaire,105652968,0,4376_7778022_100982,4376_161 -4289_75980,265,4376_21519,Dun Laoghaire,105812968,0,4376_7778022_100982,4376_161 -4289_75963,270,4376_2152,Blackrock,105277296,0,4376_7778022_100111,4376_31 -4289_75980,266,4376_21520,Dun Laoghaire,105822968,0,4376_7778022_100982,4376_161 -4289_75980,267,4376_21521,Dun Laoghaire,106052968,0,4376_7778022_100982,4376_161 -4289_75980,268,4376_21522,Dun Laoghaire,106142968,0,4376_7778022_100982,4376_161 -4289_75980,269,4376_21523,Dun Laoghaire,106232968,0,4376_7778022_100982,4376_161 -4289_75980,259,4376_21524,Dun Laoghaire,105765640,0,4376_7778022_100820,4376_161 -4289_75980,270,4376_21525,Dun Laoghaire,105278280,0,4376_7778022_100622,4376_162 -4289_75980,146,4376_21526,Dun Laoghaire,105248280,0,4376_7778022_100622,4376_162 -4289_75980,271,4376_21527,Dun Laoghaire,105238280,0,4376_7778022_100622,4376_162 -4289_75980,115,4376_21528,Dun Laoghaire,105218280,0,4376_7778022_100622,4376_162 -4289_75980,260,4376_21529,Dun Laoghaire,105312998,0,4376_7778022_100993,4376_161 -4289_75963,146,4376_2153,Blackrock,105247296,0,4376_7778022_100111,4376_31 -4289_75980,261,4376_21530,Dun Laoghaire,105322998,0,4376_7778022_100993,4376_161 -4289_75980,262,4376_21531,Dun Laoghaire,105432998,0,4376_7778022_100993,4376_161 -4289_75980,263,4376_21532,Dun Laoghaire,105542998,0,4376_7778022_100993,4376_161 -4289_75980,264,4376_21533,Dun Laoghaire,105652998,0,4376_7778022_100993,4376_161 -4289_75980,265,4376_21534,Dun Laoghaire,105812998,0,4376_7778022_100993,4376_161 -4289_75980,266,4376_21535,Dun Laoghaire,105822998,0,4376_7778022_100993,4376_161 -4289_75980,267,4376_21536,Dun Laoghaire,106052998,0,4376_7778022_100993,4376_161 -4289_75980,268,4376_21537,Dun Laoghaire,106142998,0,4376_7778022_100993,4376_161 -4289_75980,269,4376_21538,Dun Laoghaire,106232998,0,4376_7778022_100993,4376_161 -4289_75980,259,4376_21539,Dun Laoghaire,105765670,0,4376_7778022_100830,4376_161 -4289_75963,271,4376_2154,Blackrock,105237296,0,4376_7778022_100111,4376_31 -4289_75980,270,4376_21540,Dun Laoghaire,105278314,0,4376_7778022_100632,4376_162 -4289_75980,146,4376_21541,Dun Laoghaire,105248314,0,4376_7778022_100632,4376_162 -4289_75980,271,4376_21542,Dun Laoghaire,105238314,0,4376_7778022_100632,4376_162 -4289_75980,115,4376_21543,Dun Laoghaire,105218314,0,4376_7778022_100632,4376_162 -4289_75980,260,4376_21544,Citywest,105311003,1,4376_7778022_100940,4376_164 -4289_75980,261,4376_21545,Citywest,105321003,1,4376_7778022_100940,4376_164 -4289_75980,262,4376_21546,Citywest,105431003,1,4376_7778022_100940,4376_164 -4289_75980,263,4376_21547,Citywest,105541003,1,4376_7778022_100940,4376_164 -4289_75980,264,4376_21548,Citywest,105651003,1,4376_7778022_100940,4376_164 -4289_75980,265,4376_21549,Citywest,105811003,1,4376_7778022_100940,4376_164 -4289_75963,115,4376_2155,Blackrock,105217296,0,4376_7778022_100111,4376_31 -4289_75980,266,4376_21550,Citywest,105821003,1,4376_7778022_100940,4376_164 -4289_75980,267,4376_21551,Citywest,106051003,1,4376_7778022_100940,4376_164 -4289_75980,268,4376_21552,Citywest,106141003,1,4376_7778022_100940,4376_164 -4289_75980,269,4376_21553,Citywest,106231003,1,4376_7778022_100940,4376_164 -4289_75980,259,4376_21554,Citywest,105764001,1,4376_7778022_100780,4376_165 -4289_75980,260,4376_21555,Citywest,105311009,1,4376_7778022_100950,4376_164 -4289_75980,261,4376_21556,Citywest,105321009,1,4376_7778022_100950,4376_164 -4289_75980,262,4376_21557,Citywest,105431009,1,4376_7778022_100950,4376_164 -4289_75980,263,4376_21558,Citywest,105541009,1,4376_7778022_100950,4376_164 -4289_75980,264,4376_21559,Citywest,105651009,1,4376_7778022_100950,4376_164 -4289_75963,260,4376_2156,Blackrock,105311726,0,4376_7778022_100160,4376_30 -4289_75980,265,4376_21560,Citywest,105811009,1,4376_7778022_100950,4376_164 -4289_75980,266,4376_21561,Citywest,105821009,1,4376_7778022_100950,4376_164 -4289_75980,267,4376_21562,Citywest,106051009,1,4376_7778022_100950,4376_164 -4289_75980,268,4376_21563,Citywest,106141009,1,4376_7778022_100950,4376_164 -4289_75980,269,4376_21564,Citywest,106231009,1,4376_7778022_100950,4376_164 -4289_75980,259,4376_21565,Citywest,105764011,1,4376_7778022_100800,4376_164 -4289_75980,260,4376_21566,Citywest,105311021,1,4376_7778022_100971,4376_164 -4289_75980,261,4376_21567,Citywest,105321021,1,4376_7778022_100971,4376_164 -4289_75980,262,4376_21568,Citywest,105431021,1,4376_7778022_100971,4376_164 -4289_75980,263,4376_21569,Citywest,105541021,1,4376_7778022_100971,4376_164 -4289_75963,261,4376_2157,Blackrock,105321726,0,4376_7778022_100160,4376_30 -4289_75980,264,4376_21570,Citywest,105651021,1,4376_7778022_100971,4376_164 -4289_75980,265,4376_21571,Citywest,105811021,1,4376_7778022_100971,4376_164 -4289_75980,266,4376_21572,Citywest,105821021,1,4376_7778022_100971,4376_164 -4289_75980,267,4376_21573,Citywest,106051021,1,4376_7778022_100971,4376_164 -4289_75980,268,4376_21574,Citywest,106141021,1,4376_7778022_100971,4376_164 -4289_75980,269,4376_21575,Citywest,106231021,1,4376_7778022_100971,4376_164 -4289_75980,260,4376_21576,Citywest,105311035,1,4376_7778022_100991,4376_164 -4289_75980,261,4376_21577,Citywest,105321035,1,4376_7778022_100991,4376_164 -4289_75980,262,4376_21578,Citywest,105431035,1,4376_7778022_100991,4376_164 -4289_75980,263,4376_21579,Citywest,105541035,1,4376_7778022_100991,4376_164 -4289_75963,262,4376_2158,Blackrock,105431726,0,4376_7778022_100160,4376_30 -4289_75980,264,4376_21580,Citywest,105651035,1,4376_7778022_100991,4376_164 -4289_75980,265,4376_21581,Citywest,105811035,1,4376_7778022_100991,4376_164 -4289_75980,266,4376_21582,Citywest,105821035,1,4376_7778022_100991,4376_164 -4289_75980,267,4376_21583,Citywest,106051035,1,4376_7778022_100991,4376_164 -4289_75980,268,4376_21584,Citywest,106141035,1,4376_7778022_100991,4376_164 -4289_75980,269,4376_21585,Citywest,106231035,1,4376_7778022_100991,4376_164 -4289_75980,259,4376_21586,Citywest,105764031,1,4376_7778022_100790,4376_164 -4289_75980,260,4376_21587,Citywest,105311057,1,4376_7778022_100961,4376_164 -4289_75980,261,4376_21588,Citywest,105321057,1,4376_7778022_100961,4376_164 -4289_75980,262,4376_21589,Citywest,105431057,1,4376_7778022_100961,4376_164 -4289_75963,263,4376_2159,Blackrock,105541726,0,4376_7778022_100160,4376_30 -4289_75980,263,4376_21590,Citywest,105541057,1,4376_7778022_100961,4376_164 -4289_75980,264,4376_21591,Citywest,105651057,1,4376_7778022_100961,4376_164 -4289_75980,265,4376_21592,Citywest,105811057,1,4376_7778022_100961,4376_164 -4289_75980,266,4376_21593,Citywest,105821057,1,4376_7778022_100961,4376_164 -4289_75980,267,4376_21594,Citywest,106051057,1,4376_7778022_100961,4376_164 -4289_75980,268,4376_21595,Citywest,106141057,1,4376_7778022_100961,4376_164 -4289_75980,269,4376_21596,Citywest,106231057,1,4376_7778022_100961,4376_164 -4289_75980,260,4376_21597,Citywest,105311089,1,4376_7778022_100981,4376_164 -4289_75980,261,4376_21598,Citywest,105321089,1,4376_7778022_100981,4376_164 -4289_75980,262,4376_21599,Citywest,105431089,1,4376_7778022_100981,4376_164 -4289_75960,115,4376_216,Sutton Station,105217440,0,4376_7778022_103103,4376_1 -4289_75963,264,4376_2160,Blackrock,105651726,0,4376_7778022_100160,4376_30 -4289_75980,263,4376_21600,Citywest,105541089,1,4376_7778022_100981,4376_164 -4289_75980,264,4376_21601,Citywest,105651089,1,4376_7778022_100981,4376_164 -4289_75980,265,4376_21602,Citywest,105811089,1,4376_7778022_100981,4376_164 -4289_75980,266,4376_21603,Citywest,105821089,1,4376_7778022_100981,4376_164 -4289_75980,267,4376_21604,Citywest,106051089,1,4376_7778022_100981,4376_164 -4289_75980,268,4376_21605,Citywest,106141089,1,4376_7778022_100981,4376_164 -4289_75980,269,4376_21606,Citywest,106231089,1,4376_7778022_100981,4376_164 -4289_75980,259,4376_21607,Citywest,105764061,1,4376_7778022_100810,4376_165 -4289_75980,260,4376_21608,Citywest,105311115,1,4376_7778022_101031,4376_164 -4289_75980,261,4376_21609,Citywest,105321115,1,4376_7778022_101031,4376_164 -4289_75963,265,4376_2161,Blackrock,105811726,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_21610,Citywest,105431115,1,4376_7778022_101031,4376_164 -4289_75980,263,4376_21611,Citywest,105541115,1,4376_7778022_101031,4376_164 -4289_75980,264,4376_21612,Citywest,105651115,1,4376_7778022_101031,4376_164 -4289_75980,265,4376_21613,Citywest,105811115,1,4376_7778022_101031,4376_164 -4289_75980,266,4376_21614,Citywest,105821115,1,4376_7778022_101031,4376_164 -4289_75980,267,4376_21615,Citywest,106051115,1,4376_7778022_101031,4376_164 -4289_75980,268,4376_21616,Citywest,106141115,1,4376_7778022_101031,4376_164 -4289_75980,269,4376_21617,Citywest,106231115,1,4376_7778022_101031,4376_164 -4289_75980,260,4376_21618,Citywest,105311139,1,4376_7778022_101001,4376_164 -4289_75980,261,4376_21619,Citywest,105321139,1,4376_7778022_101001,4376_164 -4289_75963,266,4376_2162,Blackrock,105821726,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_21620,Citywest,105431139,1,4376_7778022_101001,4376_164 -4289_75980,263,4376_21621,Citywest,105541139,1,4376_7778022_101001,4376_164 -4289_75980,264,4376_21622,Citywest,105651139,1,4376_7778022_101001,4376_164 -4289_75980,265,4376_21623,Citywest,105811139,1,4376_7778022_101001,4376_164 -4289_75980,266,4376_21624,Citywest,105821139,1,4376_7778022_101001,4376_164 -4289_75980,267,4376_21625,Citywest,106051139,1,4376_7778022_101001,4376_164 -4289_75980,268,4376_21626,Citywest,106141139,1,4376_7778022_101001,4376_164 -4289_75980,269,4376_21627,Citywest,106231139,1,4376_7778022_101001,4376_164 -4289_75980,259,4376_21628,Citywest,105764097,1,4376_7778022_100780,4376_164 -4289_75980,270,4376_21629,Citywest,105277001,1,4376_7778022_100600,4376_165 -4289_75963,267,4376_2163,Blackrock,106051726,0,4376_7778022_100160,4376_30 -4289_75980,146,4376_21630,Citywest,105247001,1,4376_7778022_100600,4376_165 -4289_75980,271,4376_21631,Citywest,105237001,1,4376_7778022_100600,4376_165 -4289_75980,115,4376_21632,Citywest,105217001,1,4376_7778022_100600,4376_165 -4289_75980,260,4376_21633,Citywest,105311179,1,4376_7778022_101010,4376_164 -4289_75980,261,4376_21634,Citywest,105321179,1,4376_7778022_101010,4376_164 -4289_75980,262,4376_21635,Citywest,105431179,1,4376_7778022_101010,4376_164 -4289_75980,263,4376_21636,Citywest,105541179,1,4376_7778022_101010,4376_164 -4289_75980,264,4376_21637,Citywest,105651179,1,4376_7778022_101010,4376_164 -4289_75980,265,4376_21638,Citywest,105811179,1,4376_7778022_101010,4376_164 -4289_75980,266,4376_21639,Citywest,105821179,1,4376_7778022_101010,4376_164 -4289_75963,268,4376_2164,Blackrock,106141726,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_21640,Citywest,106051179,1,4376_7778022_101010,4376_164 -4289_75980,268,4376_21641,Citywest,106141179,1,4376_7778022_101010,4376_164 -4289_75980,269,4376_21642,Citywest,106231179,1,4376_7778022_101010,4376_164 -4289_75980,260,4376_21643,Citywest,105311211,1,4376_7778022_100940,4376_164 -4289_75980,261,4376_21644,Citywest,105321211,1,4376_7778022_100940,4376_164 -4289_75980,262,4376_21645,Citywest,105431211,1,4376_7778022_100940,4376_164 -4289_75980,263,4376_21646,Citywest,105541211,1,4376_7778022_100940,4376_164 -4289_75980,264,4376_21647,Citywest,105651211,1,4376_7778022_100940,4376_164 -4289_75980,265,4376_21648,Citywest,105811211,1,4376_7778022_100940,4376_164 -4289_75980,266,4376_21649,Citywest,105821211,1,4376_7778022_100940,4376_164 -4289_75963,269,4376_2165,Blackrock,106231726,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_21650,Citywest,106051211,1,4376_7778022_100940,4376_164 -4289_75980,268,4376_21651,Citywest,106141211,1,4376_7778022_100940,4376_164 -4289_75980,269,4376_21652,Citywest,106231211,1,4376_7778022_100940,4376_164 -4289_75980,259,4376_21653,Citywest,105764137,1,4376_7778022_100820,4376_165 -4289_75980,270,4376_21654,Citywest,105277015,1,4376_7778022_100621,4376_166 -4289_75980,146,4376_21655,Citywest,105247015,1,4376_7778022_100621,4376_166 -4289_75980,271,4376_21656,Citywest,105237015,1,4376_7778022_100621,4376_166 -4289_75980,115,4376_21657,Citywest,105217015,1,4376_7778022_100621,4376_166 -4289_75980,260,4376_21658,Citywest,105311235,1,4376_7778022_101070,4376_164 -4289_75980,261,4376_21659,Citywest,105321235,1,4376_7778022_101070,4376_164 -4289_75963,259,4376_2166,Blackrock,105764630,0,4376_7778022_100142,4376_30 -4289_75980,262,4376_21660,Citywest,105431235,1,4376_7778022_101070,4376_164 -4289_75980,263,4376_21661,Citywest,105541235,1,4376_7778022_101070,4376_164 -4289_75980,264,4376_21662,Citywest,105651235,1,4376_7778022_101070,4376_164 -4289_75980,265,4376_21663,Citywest,105811235,1,4376_7778022_101070,4376_164 -4289_75980,266,4376_21664,Citywest,105821235,1,4376_7778022_101070,4376_164 -4289_75980,267,4376_21665,Citywest,106051235,1,4376_7778022_101070,4376_164 -4289_75980,268,4376_21666,Citywest,106141235,1,4376_7778022_101070,4376_164 -4289_75980,269,4376_21667,Citywest,106231235,1,4376_7778022_101070,4376_164 -4289_75980,260,4376_21668,Citywest,105311285,1,4376_7778022_101021,4376_164 -4289_75980,261,4376_21669,Citywest,105321285,1,4376_7778022_101021,4376_164 -4289_75963,270,4376_2167,Blackrock,105277384,0,4376_7778022_100111,4376_31 -4289_75980,262,4376_21670,Citywest,105431285,1,4376_7778022_101021,4376_164 -4289_75980,263,4376_21671,Citywest,105541285,1,4376_7778022_101021,4376_164 -4289_75980,264,4376_21672,Citywest,105651285,1,4376_7778022_101021,4376_164 -4289_75980,265,4376_21673,Citywest,105811285,1,4376_7778022_101021,4376_164 -4289_75980,266,4376_21674,Citywest,105821285,1,4376_7778022_101021,4376_164 -4289_75980,267,4376_21675,Citywest,106051285,1,4376_7778022_101021,4376_164 -4289_75980,268,4376_21676,Citywest,106141285,1,4376_7778022_101021,4376_164 -4289_75980,269,4376_21677,Citywest,106231285,1,4376_7778022_101021,4376_164 -4289_75980,259,4376_21678,Citywest,105764179,1,4376_7778022_100830,4376_165 -4289_75980,270,4376_21679,Citywest,105277029,1,4376_7778022_100610,4376_166 -4289_75963,146,4376_2168,Blackrock,105247384,0,4376_7778022_100111,4376_31 -4289_75980,146,4376_21680,Citywest,105247029,1,4376_7778022_100610,4376_166 -4289_75980,271,4376_21681,Citywest,105237029,1,4376_7778022_100610,4376_166 -4289_75980,115,4376_21682,Citywest,105217029,1,4376_7778022_100610,4376_166 -4289_75980,260,4376_21683,Citywest,105311311,1,4376_7778022_100950,4376_164 -4289_75980,261,4376_21684,Citywest,105321311,1,4376_7778022_100950,4376_164 -4289_75980,262,4376_21685,Citywest,105431311,1,4376_7778022_100950,4376_164 -4289_75980,263,4376_21686,Citywest,105541311,1,4376_7778022_100950,4376_164 -4289_75980,264,4376_21687,Citywest,105651311,1,4376_7778022_100950,4376_164 -4289_75980,265,4376_21688,Citywest,105811311,1,4376_7778022_100950,4376_164 -4289_75980,266,4376_21689,Citywest,105821311,1,4376_7778022_100950,4376_164 -4289_75963,271,4376_2169,Blackrock,105237384,0,4376_7778022_100111,4376_31 -4289_75980,267,4376_21690,Citywest,106051311,1,4376_7778022_100950,4376_164 -4289_75980,268,4376_21691,Citywest,106141311,1,4376_7778022_100950,4376_164 -4289_75980,269,4376_21692,Citywest,106231311,1,4376_7778022_100950,4376_164 -4289_75980,260,4376_21693,Citywest,105311349,1,4376_7778022_101090,4376_164 -4289_75980,261,4376_21694,Citywest,105321349,1,4376_7778022_101090,4376_164 -4289_75980,262,4376_21695,Citywest,105431349,1,4376_7778022_101090,4376_164 -4289_75980,263,4376_21696,Citywest,105541349,1,4376_7778022_101090,4376_164 -4289_75980,264,4376_21697,Citywest,105651349,1,4376_7778022_101090,4376_164 -4289_75980,265,4376_21698,Citywest,105811349,1,4376_7778022_101090,4376_164 -4289_75980,266,4376_21699,Citywest,105821349,1,4376_7778022_101090,4376_164 -4289_75960,260,4376_217,Sutton Station,105311920,0,4376_7778022_103101,4376_1 -4289_75963,115,4376_2170,Blackrock,105217384,0,4376_7778022_100111,4376_31 -4289_75980,267,4376_21700,Citywest,106051349,1,4376_7778022_101090,4376_164 -4289_75980,268,4376_21701,Citywest,106141349,1,4376_7778022_101090,4376_164 -4289_75980,269,4376_21702,Citywest,106231349,1,4376_7778022_101090,4376_164 -4289_75980,259,4376_21703,Citywest,105764221,1,4376_7778022_100800,4376_165 -4289_75980,270,4376_21704,Citywest,105277061,1,4376_7778022_100631,4376_166 -4289_75980,146,4376_21705,Citywest,105247061,1,4376_7778022_100631,4376_166 -4289_75980,271,4376_21706,Citywest,105237061,1,4376_7778022_100631,4376_166 -4289_75980,115,4376_21707,Citywest,105217061,1,4376_7778022_100631,4376_166 -4289_75980,260,4376_21708,Citywest,105311375,1,4376_7778022_101041,4376_164 -4289_75980,261,4376_21709,Citywest,105321375,1,4376_7778022_101041,4376_164 -4289_75963,260,4376_2171,Blackrock,105311834,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_21710,Citywest,105431375,1,4376_7778022_101041,4376_164 -4289_75980,263,4376_21711,Citywest,105541375,1,4376_7778022_101041,4376_164 -4289_75980,264,4376_21712,Citywest,105651375,1,4376_7778022_101041,4376_164 -4289_75980,265,4376_21713,Citywest,105811375,1,4376_7778022_101041,4376_164 -4289_75980,266,4376_21714,Citywest,105821375,1,4376_7778022_101041,4376_164 -4289_75980,267,4376_21715,Citywest,106051375,1,4376_7778022_101041,4376_164 -4289_75980,268,4376_21716,Citywest,106141375,1,4376_7778022_101041,4376_164 -4289_75980,269,4376_21717,Citywest,106231375,1,4376_7778022_101041,4376_164 -4289_75980,260,4376_21718,Citywest,105311405,1,4376_7778022_101051,4376_164 -4289_75980,261,4376_21719,Citywest,105321405,1,4376_7778022_101051,4376_164 -4289_75963,261,4376_2172,Blackrock,105321834,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_21720,Citywest,105431405,1,4376_7778022_101051,4376_164 -4289_75980,263,4376_21721,Citywest,105541405,1,4376_7778022_101051,4376_164 -4289_75980,264,4376_21722,Citywest,105651405,1,4376_7778022_101051,4376_164 -4289_75980,265,4376_21723,Citywest,105811405,1,4376_7778022_101051,4376_164 -4289_75980,266,4376_21724,Citywest,105821405,1,4376_7778022_101051,4376_164 -4289_75980,267,4376_21725,Citywest,106051405,1,4376_7778022_101051,4376_164 -4289_75980,268,4376_21726,Citywest,106141405,1,4376_7778022_101051,4376_164 -4289_75980,269,4376_21727,Citywest,106231405,1,4376_7778022_101051,4376_164 -4289_75980,259,4376_21728,Citywest,105764265,1,4376_7778022_100790,4376_165 -4289_75980,270,4376_21729,Citywest,105277087,1,4376_7778022_100650,4376_166 -4289_75963,262,4376_2173,Blackrock,105431834,0,4376_7778022_100150,4376_30 -4289_75980,146,4376_21730,Citywest,105247087,1,4376_7778022_100650,4376_166 -4289_75980,271,4376_21731,Citywest,105237087,1,4376_7778022_100650,4376_166 -4289_75980,115,4376_21732,Citywest,105217087,1,4376_7778022_100650,4376_166 -4289_75980,260,4376_21733,Citywest,105311435,1,4376_7778022_100971,4376_164 -4289_75980,261,4376_21734,Citywest,105321435,1,4376_7778022_100971,4376_164 -4289_75980,262,4376_21735,Citywest,105431435,1,4376_7778022_100971,4376_164 -4289_75980,263,4376_21736,Citywest,105541435,1,4376_7778022_100971,4376_164 -4289_75980,264,4376_21737,Citywest,105651435,1,4376_7778022_100971,4376_164 -4289_75980,265,4376_21738,Citywest,105811435,1,4376_7778022_100971,4376_164 -4289_75980,266,4376_21739,Citywest,105821435,1,4376_7778022_100971,4376_164 -4289_75963,263,4376_2174,Blackrock,105541834,0,4376_7778022_100150,4376_30 -4289_75980,267,4376_21740,Citywest,106051435,1,4376_7778022_100971,4376_164 -4289_75980,268,4376_21741,Citywest,106141435,1,4376_7778022_100971,4376_164 -4289_75980,269,4376_21742,Citywest,106231435,1,4376_7778022_100971,4376_164 -4289_75980,259,4376_21743,Citywest,105764319,1,4376_7778022_100810,4376_164 -4289_75980,270,4376_21744,Citywest,105277133,1,4376_7778022_100640,4376_165 -4289_75980,146,4376_21745,Citywest,105247133,1,4376_7778022_100640,4376_165 -4289_75980,271,4376_21746,Citywest,105237133,1,4376_7778022_100640,4376_165 -4289_75980,115,4376_21747,Citywest,105217133,1,4376_7778022_100640,4376_165 -4289_75980,260,4376_21748,Citywest,105311477,1,4376_7778022_101080,4376_164 -4289_75980,261,4376_21749,Citywest,105321477,1,4376_7778022_101080,4376_164 -4289_75963,264,4376_2175,Blackrock,105651834,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_21750,Citywest,105431477,1,4376_7778022_101080,4376_164 -4289_75980,263,4376_21751,Citywest,105541477,1,4376_7778022_101080,4376_164 -4289_75980,264,4376_21752,Citywest,105651477,1,4376_7778022_101080,4376_164 -4289_75980,265,4376_21753,Citywest,105811477,1,4376_7778022_101080,4376_164 -4289_75980,266,4376_21754,Citywest,105821477,1,4376_7778022_101080,4376_164 -4289_75980,267,4376_21755,Citywest,106051477,1,4376_7778022_101080,4376_164 -4289_75980,268,4376_21756,Citywest,106141477,1,4376_7778022_101080,4376_164 -4289_75980,269,4376_21757,Citywest,106231477,1,4376_7778022_101080,4376_164 -4289_75980,260,4376_21758,Citywest,105311513,1,4376_7778022_100961,4376_164 -4289_75980,261,4376_21759,Citywest,105321513,1,4376_7778022_100961,4376_164 -4289_75963,265,4376_2176,Blackrock,105811834,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_21760,Citywest,105431513,1,4376_7778022_100961,4376_164 -4289_75980,263,4376_21761,Citywest,105541513,1,4376_7778022_100961,4376_164 -4289_75980,264,4376_21762,Citywest,105651513,1,4376_7778022_100961,4376_164 -4289_75980,265,4376_21763,Citywest,105811513,1,4376_7778022_100961,4376_164 -4289_75980,266,4376_21764,Citywest,105821513,1,4376_7778022_100961,4376_164 -4289_75980,267,4376_21765,Citywest,106051513,1,4376_7778022_100961,4376_164 -4289_75980,268,4376_21766,Citywest,106141513,1,4376_7778022_100961,4376_164 -4289_75980,269,4376_21767,Citywest,106231513,1,4376_7778022_100961,4376_164 -4289_75980,259,4376_21768,Citywest,105764367,1,4376_7778022_100780,4376_165 -4289_75980,270,4376_21769,Citywest,105277165,1,4376_7778022_100600,4376_166 -4289_75963,266,4376_2177,Blackrock,105821834,0,4376_7778022_100150,4376_30 -4289_75980,146,4376_21770,Citywest,105247165,1,4376_7778022_100600,4376_166 -4289_75980,271,4376_21771,Citywest,105237165,1,4376_7778022_100600,4376_166 -4289_75980,115,4376_21772,Citywest,105217165,1,4376_7778022_100600,4376_166 -4289_75980,260,4376_21773,Citywest,105311547,1,4376_7778022_100981,4376_164 -4289_75980,261,4376_21774,Citywest,105321547,1,4376_7778022_100981,4376_164 -4289_75980,262,4376_21775,Citywest,105431547,1,4376_7778022_100981,4376_164 -4289_75980,263,4376_21776,Citywest,105541547,1,4376_7778022_100981,4376_164 -4289_75980,264,4376_21777,Citywest,105651547,1,4376_7778022_100981,4376_164 -4289_75980,265,4376_21778,Citywest,105811547,1,4376_7778022_100981,4376_164 -4289_75980,266,4376_21779,Citywest,105821547,1,4376_7778022_100981,4376_164 -4289_75963,267,4376_2178,Blackrock,106051834,0,4376_7778022_100150,4376_30 -4289_75980,267,4376_21780,Citywest,106051547,1,4376_7778022_100981,4376_164 -4289_75980,268,4376_21781,Citywest,106141547,1,4376_7778022_100981,4376_164 -4289_75980,269,4376_21782,Citywest,106231547,1,4376_7778022_100981,4376_164 -4289_75980,259,4376_21783,Citywest,105764423,1,4376_7778022_100820,4376_164 -4289_75980,270,4376_21784,Citywest,105277213,1,4376_7778022_100621,4376_165 -4289_75980,146,4376_21785,Citywest,105247213,1,4376_7778022_100621,4376_165 -4289_75980,271,4376_21786,Citywest,105237213,1,4376_7778022_100621,4376_165 -4289_75980,115,4376_21787,Citywest,105217213,1,4376_7778022_100621,4376_165 -4289_75980,260,4376_21788,Citywest,105311585,1,4376_7778022_101031,4376_164 -4289_75980,261,4376_21789,Citywest,105321585,1,4376_7778022_101031,4376_164 -4289_75963,268,4376_2179,Blackrock,106141834,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_21790,Citywest,105431585,1,4376_7778022_101031,4376_164 -4289_75980,263,4376_21791,Citywest,105541585,1,4376_7778022_101031,4376_164 -4289_75980,264,4376_21792,Citywest,105651585,1,4376_7778022_101031,4376_164 -4289_75980,265,4376_21793,Citywest,105811585,1,4376_7778022_101031,4376_164 -4289_75980,266,4376_21794,Citywest,105821585,1,4376_7778022_101031,4376_164 -4289_75980,267,4376_21795,Citywest,106051585,1,4376_7778022_101031,4376_164 -4289_75980,268,4376_21796,Citywest,106141585,1,4376_7778022_101031,4376_164 -4289_75980,269,4376_21797,Citywest,106231585,1,4376_7778022_101031,4376_164 -4289_75980,260,4376_21798,Citywest,105311621,1,4376_7778022_101001,4376_164 -4289_75980,261,4376_21799,Citywest,105321621,1,4376_7778022_101001,4376_164 -4289_75960,261,4376_218,Sutton Station,105321920,0,4376_7778022_103101,4376_1 -4289_75963,269,4376_2180,Blackrock,106231834,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_21800,Citywest,105431621,1,4376_7778022_101001,4376_164 -4289_75980,263,4376_21801,Citywest,105541621,1,4376_7778022_101001,4376_164 -4289_75980,264,4376_21802,Citywest,105651621,1,4376_7778022_101001,4376_164 -4289_75980,265,4376_21803,Citywest,105811621,1,4376_7778022_101001,4376_164 -4289_75980,266,4376_21804,Citywest,105821621,1,4376_7778022_101001,4376_164 -4289_75980,267,4376_21805,Citywest,106051621,1,4376_7778022_101001,4376_164 -4289_75980,268,4376_21806,Citywest,106141621,1,4376_7778022_101001,4376_164 -4289_75980,269,4376_21807,Citywest,106231621,1,4376_7778022_101001,4376_164 -4289_75980,259,4376_21808,Citywest,105764471,1,4376_7778022_100830,4376_165 -4289_75980,270,4376_21809,Citywest,105277257,1,4376_7778022_100610,4376_166 -4289_75963,259,4376_2181,Blackrock,105764736,0,4376_7778022_100150,4376_30 -4289_75980,146,4376_21810,Citywest,105247257,1,4376_7778022_100610,4376_166 -4289_75980,271,4376_21811,Citywest,105237257,1,4376_7778022_100610,4376_166 -4289_75980,115,4376_21812,Citywest,105217257,1,4376_7778022_100610,4376_166 -4289_75980,260,4376_21813,Citywest,105311653,1,4376_7778022_101010,4376_164 -4289_75980,261,4376_21814,Citywest,105321653,1,4376_7778022_101010,4376_164 -4289_75980,262,4376_21815,Citywest,105431653,1,4376_7778022_101010,4376_164 -4289_75980,263,4376_21816,Citywest,105541653,1,4376_7778022_101010,4376_164 -4289_75980,264,4376_21817,Citywest,105651653,1,4376_7778022_101010,4376_164 -4289_75980,265,4376_21818,Citywest,105811653,1,4376_7778022_101010,4376_164 -4289_75980,266,4376_21819,Citywest,105821653,1,4376_7778022_101010,4376_164 -4289_75963,270,4376_2182,Blackrock,105277474,0,4376_7778022_100121,4376_31 -4289_75980,267,4376_21820,Citywest,106051653,1,4376_7778022_101010,4376_164 -4289_75980,268,4376_21821,Citywest,106141653,1,4376_7778022_101010,4376_164 -4289_75980,269,4376_21822,Citywest,106231653,1,4376_7778022_101010,4376_164 -4289_75980,259,4376_21823,Citywest,105764525,1,4376_7778022_100840,4376_164 -4289_75980,270,4376_21824,Citywest,105277303,1,4376_7778022_100631,4376_165 -4289_75980,146,4376_21825,Citywest,105247303,1,4376_7778022_100631,4376_165 -4289_75980,271,4376_21826,Citywest,105237303,1,4376_7778022_100631,4376_165 -4289_75980,115,4376_21827,Citywest,105217303,1,4376_7778022_100631,4376_165 -4289_75980,260,4376_21828,Citywest,105311693,1,4376_7778022_100940,4376_164 -4289_75980,261,4376_21829,Citywest,105321693,1,4376_7778022_100940,4376_164 -4289_75963,146,4376_2183,Blackrock,105247474,0,4376_7778022_100121,4376_31 -4289_75980,262,4376_21830,Citywest,105431693,1,4376_7778022_100940,4376_164 -4289_75980,263,4376_21831,Citywest,105541693,1,4376_7778022_100940,4376_164 -4289_75980,264,4376_21832,Citywest,105651693,1,4376_7778022_100940,4376_164 -4289_75980,265,4376_21833,Citywest,105811693,1,4376_7778022_100940,4376_164 -4289_75980,266,4376_21834,Citywest,105821693,1,4376_7778022_100940,4376_164 -4289_75980,267,4376_21835,Citywest,106051693,1,4376_7778022_100940,4376_164 -4289_75980,268,4376_21836,Citywest,106141693,1,4376_7778022_100940,4376_164 -4289_75980,269,4376_21837,Citywest,106231693,1,4376_7778022_100940,4376_164 -4289_75980,260,4376_21838,Citywest,105311729,1,4376_7778022_101070,4376_164 -4289_75980,261,4376_21839,Citywest,105321729,1,4376_7778022_101070,4376_164 -4289_75963,271,4376_2184,Blackrock,105237474,0,4376_7778022_100121,4376_31 -4289_75980,262,4376_21840,Citywest,105431729,1,4376_7778022_101070,4376_164 -4289_75980,263,4376_21841,Citywest,105541729,1,4376_7778022_101070,4376_164 -4289_75980,264,4376_21842,Citywest,105651729,1,4376_7778022_101070,4376_164 -4289_75980,265,4376_21843,Citywest,105811729,1,4376_7778022_101070,4376_164 -4289_75980,266,4376_21844,Citywest,105821729,1,4376_7778022_101070,4376_164 -4289_75980,267,4376_21845,Citywest,106051729,1,4376_7778022_101070,4376_164 -4289_75980,268,4376_21846,Citywest,106141729,1,4376_7778022_101070,4376_164 -4289_75980,269,4376_21847,Citywest,106231729,1,4376_7778022_101070,4376_164 -4289_75980,259,4376_21848,Citywest,105764575,1,4376_7778022_100800,4376_165 -4289_75980,270,4376_21849,Citywest,105277347,1,4376_7778022_100650,4376_166 -4289_75963,115,4376_2185,Blackrock,105217474,0,4376_7778022_100121,4376_31 -4289_75980,146,4376_21850,Citywest,105247347,1,4376_7778022_100650,4376_166 -4289_75980,271,4376_21851,Citywest,105237347,1,4376_7778022_100650,4376_166 -4289_75980,115,4376_21852,Citywest,105217347,1,4376_7778022_100650,4376_166 -4289_75980,260,4376_21853,Citywest,105311763,1,4376_7778022_100950,4376_164 -4289_75980,261,4376_21854,Citywest,105321763,1,4376_7778022_100950,4376_164 -4289_75980,262,4376_21855,Citywest,105431763,1,4376_7778022_100950,4376_164 -4289_75980,263,4376_21856,Citywest,105541763,1,4376_7778022_100950,4376_164 -4289_75980,264,4376_21857,Citywest,105651763,1,4376_7778022_100950,4376_164 -4289_75980,265,4376_21858,Citywest,105811763,1,4376_7778022_100950,4376_164 -4289_75980,266,4376_21859,Citywest,105821763,1,4376_7778022_100950,4376_164 -4289_75963,260,4376_2186,Blackrock,105311946,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_21860,Citywest,106051763,1,4376_7778022_100950,4376_164 -4289_75980,268,4376_21861,Citywest,106141763,1,4376_7778022_100950,4376_164 -4289_75980,269,4376_21862,Citywest,106231763,1,4376_7778022_100950,4376_164 -4289_75980,259,4376_21863,Citywest,105764629,1,4376_7778022_100790,4376_164 -4289_75980,270,4376_21864,Citywest,105277393,1,4376_7778022_100640,4376_165 -4289_75980,146,4376_21865,Citywest,105247393,1,4376_7778022_100640,4376_165 -4289_75980,271,4376_21866,Citywest,105237393,1,4376_7778022_100640,4376_165 -4289_75980,115,4376_21867,Citywest,105217393,1,4376_7778022_100640,4376_165 -4289_75980,260,4376_21868,Citywest,105311803,1,4376_7778022_101090,4376_164 -4289_75980,261,4376_21869,Citywest,105321803,1,4376_7778022_101090,4376_164 -4289_75963,261,4376_2187,Blackrock,105321946,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_21870,Citywest,105431803,1,4376_7778022_101090,4376_164 -4289_75980,263,4376_21871,Citywest,105541803,1,4376_7778022_101090,4376_164 -4289_75980,264,4376_21872,Citywest,105651803,1,4376_7778022_101090,4376_164 -4289_75980,265,4376_21873,Citywest,105811803,1,4376_7778022_101090,4376_164 -4289_75980,266,4376_21874,Citywest,105821803,1,4376_7778022_101090,4376_164 -4289_75980,267,4376_21875,Citywest,106051803,1,4376_7778022_101090,4376_164 -4289_75980,268,4376_21876,Citywest,106141803,1,4376_7778022_101090,4376_164 -4289_75980,269,4376_21877,Citywest,106231803,1,4376_7778022_101090,4376_164 -4289_75980,260,4376_21878,Citywest,105311839,1,4376_7778022_101062,4376_164 -4289_75980,261,4376_21879,Citywest,105321839,1,4376_7778022_101062,4376_164 -4289_75963,262,4376_2188,Blackrock,105431946,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_21880,Citywest,105431839,1,4376_7778022_101062,4376_164 -4289_75980,263,4376_21881,Citywest,105541839,1,4376_7778022_101062,4376_164 -4289_75980,264,4376_21882,Citywest,105651839,1,4376_7778022_101062,4376_164 -4289_75980,265,4376_21883,Citywest,105811839,1,4376_7778022_101062,4376_164 -4289_75980,266,4376_21884,Citywest,105821839,1,4376_7778022_101062,4376_164 -4289_75980,267,4376_21885,Citywest,106051839,1,4376_7778022_101062,4376_164 -4289_75980,268,4376_21886,Citywest,106141839,1,4376_7778022_101062,4376_164 -4289_75980,269,4376_21887,Citywest,106231839,1,4376_7778022_101062,4376_164 -4289_75980,259,4376_21888,Citywest,105764677,1,4376_7778022_100810,4376_165 -4289_75980,270,4376_21889,Citywest,105277437,1,4376_7778022_100600,4376_166 -4289_75963,263,4376_2189,Blackrock,105541946,0,4376_7778022_100160,4376_30 -4289_75980,146,4376_21890,Citywest,105247437,1,4376_7778022_100600,4376_166 -4289_75980,271,4376_21891,Citywest,105237437,1,4376_7778022_100600,4376_166 -4289_75980,115,4376_21892,Citywest,105217437,1,4376_7778022_100600,4376_166 -4289_75980,260,4376_21893,Citywest,105311881,1,4376_7778022_101080,4376_164 -4289_75980,261,4376_21894,Citywest,105321881,1,4376_7778022_101080,4376_164 -4289_75980,262,4376_21895,Citywest,105431881,1,4376_7778022_101080,4376_164 -4289_75980,263,4376_21896,Citywest,105541881,1,4376_7778022_101080,4376_164 -4289_75980,264,4376_21897,Citywest,105651881,1,4376_7778022_101080,4376_164 -4289_75980,265,4376_21898,Citywest,105811881,1,4376_7778022_101080,4376_164 -4289_75980,266,4376_21899,Citywest,105821881,1,4376_7778022_101080,4376_164 -4289_75960,262,4376_219,Sutton Station,105431920,0,4376_7778022_103101,4376_1 -4289_75963,264,4376_2190,Blackrock,105651946,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_21900,Citywest,106051881,1,4376_7778022_101080,4376_164 -4289_75980,268,4376_21901,Citywest,106141881,1,4376_7778022_101080,4376_164 -4289_75980,269,4376_21902,Citywest,106231881,1,4376_7778022_101080,4376_164 -4289_75980,259,4376_21903,Citywest,105764731,1,4376_7778022_100850,4376_164 -4289_75980,270,4376_21904,Citywest,105277483,1,4376_7778022_100671,4376_165 -4289_75980,146,4376_21905,Citywest,105247483,1,4376_7778022_100671,4376_165 -4289_75980,271,4376_21906,Citywest,105237483,1,4376_7778022_100671,4376_165 -4289_75980,115,4376_21907,Citywest,105217483,1,4376_7778022_100671,4376_165 -4289_75980,260,4376_21908,Citywest,105311917,1,4376_7778022_101052,4376_164 -4289_75980,261,4376_21909,Citywest,105321917,1,4376_7778022_101052,4376_164 -4289_75963,265,4376_2191,Blackrock,105811946,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_21910,Citywest,105431917,1,4376_7778022_101052,4376_164 -4289_75980,263,4376_21911,Citywest,105541917,1,4376_7778022_101052,4376_164 -4289_75980,264,4376_21912,Citywest,105651917,1,4376_7778022_101052,4376_164 -4289_75980,265,4376_21913,Citywest,105811917,1,4376_7778022_101052,4376_164 -4289_75980,266,4376_21914,Citywest,105821917,1,4376_7778022_101052,4376_164 -4289_75980,267,4376_21915,Citywest,106051917,1,4376_7778022_101052,4376_164 -4289_75980,268,4376_21916,Citywest,106141917,1,4376_7778022_101052,4376_164 -4289_75980,269,4376_21917,Citywest,106231917,1,4376_7778022_101052,4376_164 -4289_75980,260,4376_21918,Citywest,105311953,1,4376_7778022_101102,4376_164 -4289_75980,261,4376_21919,Citywest,105321953,1,4376_7778022_101102,4376_164 -4289_75963,266,4376_2192,Blackrock,105821946,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_21920,Citywest,105431953,1,4376_7778022_101102,4376_164 -4289_75980,263,4376_21921,Citywest,105541953,1,4376_7778022_101102,4376_164 -4289_75980,264,4376_21922,Citywest,105651953,1,4376_7778022_101102,4376_164 -4289_75980,265,4376_21923,Citywest,105811953,1,4376_7778022_101102,4376_164 -4289_75980,266,4376_21924,Citywest,105821953,1,4376_7778022_101102,4376_164 -4289_75980,267,4376_21925,Citywest,106051953,1,4376_7778022_101102,4376_164 -4289_75980,268,4376_21926,Citywest,106141953,1,4376_7778022_101102,4376_164 -4289_75980,269,4376_21927,Citywest,106231953,1,4376_7778022_101102,4376_164 -4289_75980,259,4376_21928,Citywest,105764781,1,4376_7778022_100780,4376_165 -4289_75980,270,4376_21929,Citywest,105277529,1,4376_7778022_100621,4376_166 -4289_75963,267,4376_2193,Blackrock,106051946,0,4376_7778022_100160,4376_30 -4289_75980,146,4376_21930,Citywest,105247529,1,4376_7778022_100621,4376_166 -4289_75980,271,4376_21931,Citywest,105237529,1,4376_7778022_100621,4376_166 -4289_75980,115,4376_21932,Citywest,105217529,1,4376_7778022_100621,4376_166 -4289_75980,260,4376_21933,Citywest,105311987,1,4376_7778022_101042,4376_164 -4289_75980,261,4376_21934,Citywest,105321987,1,4376_7778022_101042,4376_164 -4289_75980,262,4376_21935,Citywest,105431987,1,4376_7778022_101042,4376_164 -4289_75980,263,4376_21936,Citywest,105541987,1,4376_7778022_101042,4376_164 -4289_75980,264,4376_21937,Citywest,105651987,1,4376_7778022_101042,4376_164 -4289_75980,265,4376_21938,Citywest,105811987,1,4376_7778022_101042,4376_164 -4289_75980,266,4376_21939,Citywest,105821987,1,4376_7778022_101042,4376_164 -4289_75963,268,4376_2194,Blackrock,106141946,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_21940,Citywest,106051987,1,4376_7778022_101042,4376_164 -4289_75980,268,4376_21941,Citywest,106141987,1,4376_7778022_101042,4376_164 -4289_75980,269,4376_21942,Citywest,106231987,1,4376_7778022_101042,4376_164 -4289_75980,259,4376_21943,Citywest,105764831,1,4376_7778022_100820,4376_164 -4289_75980,270,4376_21944,Citywest,105277571,1,4376_7778022_100610,4376_165 -4289_75980,146,4376_21945,Citywest,105247571,1,4376_7778022_100610,4376_165 -4289_75980,271,4376_21946,Citywest,105237571,1,4376_7778022_100610,4376_165 -4289_75980,115,4376_21947,Citywest,105217571,1,4376_7778022_100610,4376_165 -4289_75980,260,4376_21948,Citywest,105312027,1,4376_7778022_100992,4376_164 -4289_75980,261,4376_21949,Citywest,105322027,1,4376_7778022_100992,4376_164 -4289_75963,269,4376_2195,Blackrock,106231946,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_21950,Citywest,105432027,1,4376_7778022_100992,4376_164 -4289_75980,263,4376_21951,Citywest,105542027,1,4376_7778022_100992,4376_164 -4289_75980,264,4376_21952,Citywest,105652027,1,4376_7778022_100992,4376_164 -4289_75980,265,4376_21953,Citywest,105812027,1,4376_7778022_100992,4376_164 -4289_75980,266,4376_21954,Citywest,105822027,1,4376_7778022_100992,4376_164 -4289_75980,267,4376_21955,Citywest,106052027,1,4376_7778022_100992,4376_164 -4289_75980,268,4376_21956,Citywest,106142027,1,4376_7778022_100992,4376_164 -4289_75980,269,4376_21957,Citywest,106232027,1,4376_7778022_100992,4376_164 -4289_75980,260,4376_21958,Citywest,105312069,1,4376_7778022_101010,4376_164 -4289_75980,261,4376_21959,Citywest,105322069,1,4376_7778022_101010,4376_164 -4289_75963,259,4376_2196,Blackrock,105764836,0,4376_7778022_100142,4376_30 -4289_75980,262,4376_21960,Citywest,105432069,1,4376_7778022_101010,4376_164 -4289_75980,263,4376_21961,Citywest,105542069,1,4376_7778022_101010,4376_164 -4289_75980,264,4376_21962,Citywest,105652069,1,4376_7778022_101010,4376_164 -4289_75980,265,4376_21963,Citywest,105812069,1,4376_7778022_101010,4376_164 -4289_75980,266,4376_21964,Citywest,105822069,1,4376_7778022_101010,4376_164 -4289_75980,267,4376_21965,Citywest,106052069,1,4376_7778022_101010,4376_164 -4289_75980,268,4376_21966,Citywest,106142069,1,4376_7778022_101010,4376_164 -4289_75980,269,4376_21967,Citywest,106232069,1,4376_7778022_101010,4376_164 -4289_75980,259,4376_21968,Citywest,105764883,1,4376_7778022_100830,4376_165 -4289_75980,270,4376_21969,Citywest,105277619,1,4376_7778022_100631,4376_166 -4289_75963,270,4376_2197,Blackrock,105277568,0,4376_7778022_100111,4376_30 -4289_75980,146,4376_21970,Citywest,105247619,1,4376_7778022_100631,4376_166 -4289_75980,271,4376_21971,Citywest,105237619,1,4376_7778022_100631,4376_166 -4289_75980,115,4376_21972,Citywest,105217619,1,4376_7778022_100631,4376_166 -4289_75980,260,4376_21973,Citywest,105312093,1,4376_7778022_100940,4376_164 -4289_75980,261,4376_21974,Citywest,105322093,1,4376_7778022_100940,4376_164 -4289_75980,262,4376_21975,Citywest,105432093,1,4376_7778022_100940,4376_164 -4289_75980,263,4376_21976,Citywest,105542093,1,4376_7778022_100940,4376_164 -4289_75980,264,4376_21977,Citywest,105652093,1,4376_7778022_100940,4376_164 -4289_75980,265,4376_21978,Citywest,105812093,1,4376_7778022_100940,4376_164 -4289_75980,266,4376_21979,Citywest,105822093,1,4376_7778022_100940,4376_164 -4289_75963,146,4376_2198,Blackrock,105247568,0,4376_7778022_100111,4376_30 -4289_75980,267,4376_21980,Citywest,106052093,1,4376_7778022_100940,4376_164 -4289_75980,268,4376_21981,Citywest,106142093,1,4376_7778022_100940,4376_164 -4289_75980,269,4376_21982,Citywest,106232093,1,4376_7778022_100940,4376_164 -4289_75980,260,4376_21983,Citywest,105312129,1,4376_7778022_101032,4376_164 -4289_75980,261,4376_21984,Citywest,105322129,1,4376_7778022_101032,4376_164 -4289_75980,262,4376_21985,Citywest,105432129,1,4376_7778022_101032,4376_164 -4289_75980,263,4376_21986,Citywest,105542129,1,4376_7778022_101032,4376_164 -4289_75980,264,4376_21987,Citywest,105652129,1,4376_7778022_101032,4376_164 -4289_75980,265,4376_21988,Citywest,105812129,1,4376_7778022_101032,4376_164 -4289_75980,266,4376_21989,Citywest,105822129,1,4376_7778022_101032,4376_164 -4289_75963,271,4376_2199,Blackrock,105237568,0,4376_7778022_100111,4376_30 -4289_75980,267,4376_21990,Citywest,106052129,1,4376_7778022_101032,4376_164 -4289_75980,268,4376_21991,Citywest,106142129,1,4376_7778022_101032,4376_164 -4289_75980,269,4376_21992,Citywest,106232129,1,4376_7778022_101032,4376_164 -4289_75980,259,4376_21993,Citywest,105764935,1,4376_7778022_100840,4376_165 -4289_75980,270,4376_21994,Citywest,105277663,1,4376_7778022_100661,4376_166 -4289_75980,146,4376_21995,Citywest,105247663,1,4376_7778022_100661,4376_166 -4289_75980,271,4376_21996,Citywest,105237663,1,4376_7778022_100661,4376_166 -4289_75980,115,4376_21997,Citywest,105217663,1,4376_7778022_100661,4376_166 -4289_75980,260,4376_21998,Citywest,105312169,1,4376_7778022_100962,4376_164 -4289_75980,261,4376_21999,Citywest,105322169,1,4376_7778022_100962,4376_164 -4289_75960,269,4376_22,Sutton Station,106231070,0,4376_7778022_103107,4376_1 -4289_75960,263,4376_220,Sutton Station,105541920,0,4376_7778022_103101,4376_1 -4289_75963,115,4376_2200,Blackrock,105217568,0,4376_7778022_100111,4376_30 -4289_75980,262,4376_22000,Citywest,105432169,1,4376_7778022_100962,4376_164 -4289_75980,263,4376_22001,Citywest,105542169,1,4376_7778022_100962,4376_164 -4289_75980,264,4376_22002,Citywest,105652169,1,4376_7778022_100962,4376_164 -4289_75980,265,4376_22003,Citywest,105812169,1,4376_7778022_100962,4376_164 -4289_75980,266,4376_22004,Citywest,105822169,1,4376_7778022_100962,4376_164 -4289_75980,267,4376_22005,Citywest,106052169,1,4376_7778022_100962,4376_164 -4289_75980,268,4376_22006,Citywest,106142169,1,4376_7778022_100962,4376_164 -4289_75980,269,4376_22007,Citywest,106232169,1,4376_7778022_100962,4376_164 -4289_75980,260,4376_22008,Citywest,105312207,1,4376_7778022_101070,4376_164 -4289_75980,261,4376_22009,Citywest,105322207,1,4376_7778022_101070,4376_164 -4289_75963,260,4376_2201,Blackrock,105312060,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_22010,Citywest,105432207,1,4376_7778022_101070,4376_164 -4289_75980,263,4376_22011,Citywest,105542207,1,4376_7778022_101070,4376_164 -4289_75980,264,4376_22012,Citywest,105652207,1,4376_7778022_101070,4376_164 -4289_75980,265,4376_22013,Citywest,105812207,1,4376_7778022_101070,4376_164 -4289_75980,266,4376_22014,Citywest,105822207,1,4376_7778022_101070,4376_164 -4289_75980,267,4376_22015,Citywest,106052207,1,4376_7778022_101070,4376_164 -4289_75980,268,4376_22016,Citywest,106142207,1,4376_7778022_101070,4376_164 -4289_75980,269,4376_22017,Citywest,106232207,1,4376_7778022_101070,4376_164 -4289_75980,259,4376_22018,Citywest,105764985,1,4376_7778022_100800,4376_165 -4289_75980,270,4376_22019,Citywest,105277709,1,4376_7778022_100650,4376_166 -4289_75963,261,4376_2202,Blackrock,105322060,0,4376_7778022_100150,4376_30 -4289_75980,146,4376_22020,Citywest,105247709,1,4376_7778022_100650,4376_166 -4289_75980,271,4376_22021,Citywest,105237709,1,4376_7778022_100650,4376_166 -4289_75980,115,4376_22022,Citywest,105217709,1,4376_7778022_100650,4376_166 -4289_75980,260,4376_22023,Citywest,105312255,1,4376_7778022_100950,4376_164 -4289_75980,261,4376_22024,Citywest,105322255,1,4376_7778022_100950,4376_164 -4289_75980,262,4376_22025,Citywest,105432255,1,4376_7778022_100950,4376_164 -4289_75980,263,4376_22026,Citywest,105542255,1,4376_7778022_100950,4376_164 -4289_75980,264,4376_22027,Citywest,105652255,1,4376_7778022_100950,4376_164 -4289_75980,265,4376_22028,Citywest,105812255,1,4376_7778022_100950,4376_164 -4289_75980,266,4376_22029,Citywest,105822255,1,4376_7778022_100950,4376_164 -4289_75963,262,4376_2203,Blackrock,105432060,0,4376_7778022_100150,4376_30 -4289_75980,267,4376_22030,Citywest,106052255,1,4376_7778022_100950,4376_164 -4289_75980,268,4376_22031,Citywest,106142255,1,4376_7778022_100950,4376_164 -4289_75980,269,4376_22032,Citywest,106232255,1,4376_7778022_100950,4376_164 -4289_75980,260,4376_22033,Citywest,105312287,1,4376_7778022_101090,4376_164 -4289_75980,261,4376_22034,Citywest,105322287,1,4376_7778022_101090,4376_164 -4289_75980,262,4376_22035,Citywest,105432287,1,4376_7778022_101090,4376_164 -4289_75980,263,4376_22036,Citywest,105542287,1,4376_7778022_101090,4376_164 -4289_75980,264,4376_22037,Citywest,105652287,1,4376_7778022_101090,4376_164 -4289_75980,265,4376_22038,Citywest,105812287,1,4376_7778022_101090,4376_164 -4289_75980,266,4376_22039,Citywest,105822287,1,4376_7778022_101090,4376_164 -4289_75963,263,4376_2204,Blackrock,105542060,0,4376_7778022_100150,4376_30 -4289_75980,267,4376_22040,Citywest,106052287,1,4376_7778022_101090,4376_164 -4289_75980,268,4376_22041,Citywest,106142287,1,4376_7778022_101090,4376_164 -4289_75980,269,4376_22042,Citywest,106232287,1,4376_7778022_101090,4376_164 -4289_75980,259,4376_22043,Citywest,105765037,1,4376_7778022_100790,4376_165 -4289_75980,270,4376_22044,Citywest,105277753,1,4376_7778022_100640,4376_166 -4289_75980,146,4376_22045,Citywest,105247753,1,4376_7778022_100640,4376_166 -4289_75980,271,4376_22046,Citywest,105237753,1,4376_7778022_100640,4376_166 -4289_75980,115,4376_22047,Citywest,105217753,1,4376_7778022_100640,4376_166 -4289_75980,260,4376_22048,Citywest,105312315,1,4376_7778022_100972,4376_164 -4289_75980,261,4376_22049,Citywest,105322315,1,4376_7778022_100972,4376_164 -4289_75963,264,4376_2205,Blackrock,105652060,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_22050,Citywest,105432315,1,4376_7778022_100972,4376_164 -4289_75980,263,4376_22051,Citywest,105542315,1,4376_7778022_100972,4376_164 -4289_75980,264,4376_22052,Citywest,105652315,1,4376_7778022_100972,4376_164 -4289_75980,265,4376_22053,Citywest,105812315,1,4376_7778022_100972,4376_164 -4289_75980,266,4376_22054,Citywest,105822315,1,4376_7778022_100972,4376_164 -4289_75980,267,4376_22055,Citywest,106052315,1,4376_7778022_100972,4376_164 -4289_75980,268,4376_22056,Citywest,106142315,1,4376_7778022_100972,4376_164 -4289_75980,269,4376_22057,Citywest,106232315,1,4376_7778022_100972,4376_164 -4289_75980,260,4376_22058,Citywest,105312343,1,4376_7778022_101062,4376_164 -4289_75980,261,4376_22059,Citywest,105322343,1,4376_7778022_101062,4376_164 -4289_75963,265,4376_2206,Blackrock,105812060,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_22060,Citywest,105432343,1,4376_7778022_101062,4376_164 -4289_75980,263,4376_22061,Citywest,105542343,1,4376_7778022_101062,4376_164 -4289_75980,264,4376_22062,Citywest,105652343,1,4376_7778022_101062,4376_164 -4289_75980,265,4376_22063,Citywest,105812343,1,4376_7778022_101062,4376_164 -4289_75980,266,4376_22064,Citywest,105822343,1,4376_7778022_101062,4376_164 -4289_75980,267,4376_22065,Citywest,106052343,1,4376_7778022_101062,4376_164 -4289_75980,268,4376_22066,Citywest,106142343,1,4376_7778022_101062,4376_164 -4289_75980,269,4376_22067,Citywest,106232343,1,4376_7778022_101062,4376_164 -4289_75980,259,4376_22068,Citywest,105765087,1,4376_7778022_100810,4376_165 -4289_75980,270,4376_22069,Citywest,105277799,1,4376_7778022_100600,4376_166 -4289_75963,266,4376_2207,Blackrock,105822060,0,4376_7778022_100150,4376_30 -4289_75980,146,4376_22070,Citywest,105247799,1,4376_7778022_100600,4376_166 -4289_75980,271,4376_22071,Citywest,105237799,1,4376_7778022_100600,4376_166 -4289_75980,115,4376_22072,Citywest,105217799,1,4376_7778022_100600,4376_166 -4289_75980,260,4376_22073,Citywest,105312371,1,4376_7778022_101080,4376_164 -4289_75980,261,4376_22074,Citywest,105322371,1,4376_7778022_101080,4376_164 -4289_75980,262,4376_22075,Citywest,105432371,1,4376_7778022_101080,4376_164 -4289_75980,263,4376_22076,Citywest,105542371,1,4376_7778022_101080,4376_164 -4289_75980,264,4376_22077,Citywest,105652371,1,4376_7778022_101080,4376_164 -4289_75980,265,4376_22078,Citywest,105812371,1,4376_7778022_101080,4376_164 -4289_75980,266,4376_22079,Citywest,105822371,1,4376_7778022_101080,4376_164 -4289_75963,267,4376_2208,Blackrock,106052060,0,4376_7778022_100150,4376_30 -4289_75980,267,4376_22080,Citywest,106052371,1,4376_7778022_101080,4376_164 -4289_75980,268,4376_22081,Citywest,106142371,1,4376_7778022_101080,4376_164 -4289_75980,269,4376_22082,Citywest,106232371,1,4376_7778022_101080,4376_164 -4289_75980,260,4376_22083,Citywest,105312405,1,4376_7778022_101002,4376_164 -4289_75980,261,4376_22084,Citywest,105322405,1,4376_7778022_101002,4376_164 -4289_75980,262,4376_22085,Citywest,105432405,1,4376_7778022_101002,4376_164 -4289_75980,263,4376_22086,Citywest,105542405,1,4376_7778022_101002,4376_164 -4289_75980,264,4376_22087,Citywest,105652405,1,4376_7778022_101002,4376_164 -4289_75980,265,4376_22088,Citywest,105812405,1,4376_7778022_101002,4376_164 -4289_75980,266,4376_22089,Citywest,105822405,1,4376_7778022_101002,4376_164 -4289_75963,268,4376_2209,Blackrock,106142060,0,4376_7778022_100150,4376_30 -4289_75980,267,4376_22090,Citywest,106052405,1,4376_7778022_101002,4376_164 -4289_75980,268,4376_22091,Citywest,106142405,1,4376_7778022_101002,4376_164 -4289_75980,269,4376_22092,Citywest,106232405,1,4376_7778022_101002,4376_164 -4289_75980,259,4376_22093,Citywest,105765137,1,4376_7778022_100850,4376_165 -4289_75980,270,4376_22094,Citywest,105277841,1,4376_7778022_100621,4376_166 -4289_75980,146,4376_22095,Citywest,105247841,1,4376_7778022_100621,4376_166 -4289_75980,271,4376_22096,Citywest,105237841,1,4376_7778022_100621,4376_166 -4289_75980,115,4376_22097,Citywest,105217841,1,4376_7778022_100621,4376_166 -4289_75980,260,4376_22098,Citywest,105312431,1,4376_7778022_101052,4376_164 -4289_75980,261,4376_22099,Citywest,105322431,1,4376_7778022_101052,4376_164 -4289_75960,264,4376_221,Sutton Station,105651920,0,4376_7778022_103101,4376_1 -4289_75963,269,4376_2210,Blackrock,106232060,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_22100,Citywest,105432431,1,4376_7778022_101052,4376_164 -4289_75980,263,4376_22101,Citywest,105542431,1,4376_7778022_101052,4376_164 -4289_75980,264,4376_22102,Citywest,105652431,1,4376_7778022_101052,4376_164 -4289_75980,265,4376_22103,Citywest,105812431,1,4376_7778022_101052,4376_164 -4289_75980,266,4376_22104,Citywest,105822431,1,4376_7778022_101052,4376_164 -4289_75980,267,4376_22105,Citywest,106052431,1,4376_7778022_101052,4376_164 -4289_75980,268,4376_22106,Citywest,106142431,1,4376_7778022_101052,4376_164 -4289_75980,269,4376_22107,Citywest,106232431,1,4376_7778022_101052,4376_164 -4289_75980,260,4376_22108,Citywest,105312459,1,4376_7778022_100982,4376_164 -4289_75980,261,4376_22109,Citywest,105322459,1,4376_7778022_100982,4376_164 -4289_75963,259,4376_2211,Blackrock,105764938,0,4376_7778022_100150,4376_30 -4289_75980,262,4376_22110,Citywest,105432459,1,4376_7778022_100982,4376_164 -4289_75980,263,4376_22111,Citywest,105542459,1,4376_7778022_100982,4376_164 -4289_75980,264,4376_22112,Citywest,105652459,1,4376_7778022_100982,4376_164 -4289_75980,265,4376_22113,Citywest,105812459,1,4376_7778022_100982,4376_164 -4289_75980,266,4376_22114,Citywest,105822459,1,4376_7778022_100982,4376_164 -4289_75980,267,4376_22115,Citywest,106052459,1,4376_7778022_100982,4376_164 -4289_75980,268,4376_22116,Citywest,106142459,1,4376_7778022_100982,4376_164 -4289_75980,269,4376_22117,Citywest,106232459,1,4376_7778022_100982,4376_164 -4289_75980,259,4376_22118,Citywest,105765187,1,4376_7778022_100780,4376_165 -4289_75980,270,4376_22119,Citywest,105277887,1,4376_7778022_100610,4376_166 -4289_75963,270,4376_2212,Blackrock,105277656,0,4376_7778022_100121,4376_31 -4289_75980,146,4376_22120,Citywest,105247887,1,4376_7778022_100610,4376_166 -4289_75980,271,4376_22121,Citywest,105237887,1,4376_7778022_100610,4376_166 -4289_75980,115,4376_22122,Citywest,105217887,1,4376_7778022_100610,4376_166 -4289_75980,260,4376_22123,Citywest,105312493,1,4376_7778022_101102,4376_164 -4289_75980,261,4376_22124,Citywest,105322493,1,4376_7778022_101102,4376_164 -4289_75980,262,4376_22125,Citywest,105432493,1,4376_7778022_101102,4376_164 -4289_75980,263,4376_22126,Citywest,105542493,1,4376_7778022_101102,4376_164 -4289_75980,264,4376_22127,Citywest,105652493,1,4376_7778022_101102,4376_164 -4289_75980,265,4376_22128,Citywest,105812493,1,4376_7778022_101102,4376_164 -4289_75980,266,4376_22129,Citywest,105822493,1,4376_7778022_101102,4376_164 -4289_75963,146,4376_2213,Blackrock,105247656,0,4376_7778022_100121,4376_31 -4289_75980,267,4376_22130,Citywest,106052493,1,4376_7778022_101102,4376_164 -4289_75980,268,4376_22131,Citywest,106142493,1,4376_7778022_101102,4376_164 -4289_75980,269,4376_22132,Citywest,106232493,1,4376_7778022_101102,4376_164 -4289_75980,259,4376_22133,Citywest,105765239,1,4376_7778022_100820,4376_164 -4289_75980,270,4376_22134,Citywest,105277929,1,4376_7778022_100631,4376_165 -4289_75980,146,4376_22135,Citywest,105247929,1,4376_7778022_100631,4376_165 -4289_75980,271,4376_22136,Citywest,105237929,1,4376_7778022_100631,4376_165 -4289_75980,115,4376_22137,Citywest,105217929,1,4376_7778022_100631,4376_165 -4289_75980,260,4376_22138,Citywest,105312537,1,4376_7778022_101042,4376_164 -4289_75980,261,4376_22139,Citywest,105322537,1,4376_7778022_101042,4376_164 -4289_75963,271,4376_2214,Blackrock,105237656,0,4376_7778022_100121,4376_31 -4289_75980,262,4376_22140,Citywest,105432537,1,4376_7778022_101042,4376_164 -4289_75980,263,4376_22141,Citywest,105542537,1,4376_7778022_101042,4376_164 -4289_75980,264,4376_22142,Citywest,105652537,1,4376_7778022_101042,4376_164 -4289_75980,265,4376_22143,Citywest,105812537,1,4376_7778022_101042,4376_164 -4289_75980,266,4376_22144,Citywest,105822537,1,4376_7778022_101042,4376_164 -4289_75980,267,4376_22145,Citywest,106052537,1,4376_7778022_101042,4376_164 -4289_75980,268,4376_22146,Citywest,106142537,1,4376_7778022_101042,4376_164 -4289_75980,269,4376_22147,Citywest,106232537,1,4376_7778022_101042,4376_164 -4289_75980,260,4376_22148,Citywest,105312573,1,4376_7778022_101022,4376_164 -4289_75980,261,4376_22149,Citywest,105322573,1,4376_7778022_101022,4376_164 -4289_75963,115,4376_2215,Blackrock,105217656,0,4376_7778022_100121,4376_31 -4289_75980,262,4376_22150,Citywest,105432573,1,4376_7778022_101022,4376_164 -4289_75980,263,4376_22151,Citywest,105542573,1,4376_7778022_101022,4376_164 -4289_75980,264,4376_22152,Citywest,105652573,1,4376_7778022_101022,4376_164 -4289_75980,265,4376_22153,Citywest,105812573,1,4376_7778022_101022,4376_164 -4289_75980,266,4376_22154,Citywest,105822573,1,4376_7778022_101022,4376_164 -4289_75980,267,4376_22155,Citywest,106052573,1,4376_7778022_101022,4376_164 -4289_75980,268,4376_22156,Citywest,106142573,1,4376_7778022_101022,4376_164 -4289_75980,269,4376_22157,Citywest,106232573,1,4376_7778022_101022,4376_164 -4289_75980,259,4376_22158,Citywest,105765287,1,4376_7778022_100830,4376_165 -4289_75980,270,4376_22159,Citywest,105277977,1,4376_7778022_100661,4376_166 -4289_75963,260,4376_2216,Blackrock,105312190,0,4376_7778022_100160,4376_30 -4289_75980,146,4376_22160,Citywest,105247977,1,4376_7778022_100661,4376_166 -4289_75980,271,4376_22161,Citywest,105237977,1,4376_7778022_100661,4376_166 -4289_75980,115,4376_22162,Citywest,105217977,1,4376_7778022_100661,4376_166 -4289_75980,260,4376_22163,Citywest,105312623,1,4376_7778022_101032,4376_164 -4289_75980,261,4376_22164,Citywest,105322623,1,4376_7778022_101032,4376_164 -4289_75980,262,4376_22165,Citywest,105432623,1,4376_7778022_101032,4376_164 -4289_75980,263,4376_22166,Citywest,105542623,1,4376_7778022_101032,4376_164 -4289_75980,264,4376_22167,Citywest,105652623,1,4376_7778022_101032,4376_164 -4289_75980,265,4376_22168,Citywest,105812623,1,4376_7778022_101032,4376_164 -4289_75980,266,4376_22169,Citywest,105822623,1,4376_7778022_101032,4376_164 -4289_75963,261,4376_2217,Blackrock,105322190,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_22170,Citywest,106052623,1,4376_7778022_101032,4376_164 -4289_75980,268,4376_22171,Citywest,106142623,1,4376_7778022_101032,4376_164 -4289_75980,269,4376_22172,Citywest,106232623,1,4376_7778022_101032,4376_164 -4289_75980,259,4376_22173,Citywest,105765327,1,4376_7778022_100840,4376_165 -4289_75980,270,4376_22174,Citywest,105278017,1,4376_7778022_100650,4376_166 -4289_75980,146,4376_22175,Citywest,105248017,1,4376_7778022_100650,4376_166 -4289_75980,271,4376_22176,Citywest,105238017,1,4376_7778022_100650,4376_166 -4289_75980,115,4376_22177,Citywest,105218017,1,4376_7778022_100650,4376_166 -4289_75980,260,4376_22178,Citywest,105312673,1,4376_7778022_101070,4376_164 -4289_75980,261,4376_22179,Citywest,105322673,1,4376_7778022_101070,4376_164 -4289_75963,262,4376_2218,Blackrock,105432190,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_22180,Citywest,105432673,1,4376_7778022_101070,4376_164 -4289_75980,263,4376_22181,Citywest,105542673,1,4376_7778022_101070,4376_164 -4289_75980,264,4376_22182,Citywest,105652673,1,4376_7778022_101070,4376_164 -4289_75980,265,4376_22183,Citywest,105812673,1,4376_7778022_101070,4376_164 -4289_75980,266,4376_22184,Citywest,105822673,1,4376_7778022_101070,4376_164 -4289_75980,267,4376_22185,Citywest,106052673,1,4376_7778022_101070,4376_164 -4289_75980,268,4376_22186,Citywest,106142673,1,4376_7778022_101070,4376_164 -4289_75980,269,4376_22187,Citywest,106232673,1,4376_7778022_101070,4376_164 -4289_75980,259,4376_22188,Citywest,105765377,1,4376_7778022_100790,4376_165 -4289_75980,270,4376_22189,Citywest,105278059,1,4376_7778022_100640,4376_166 -4289_75963,263,4376_2219,Blackrock,105542190,0,4376_7778022_100160,4376_30 -4289_75980,146,4376_22190,Citywest,105248059,1,4376_7778022_100640,4376_166 -4289_75980,271,4376_22191,Citywest,105238059,1,4376_7778022_100640,4376_166 -4289_75980,115,4376_22192,Citywest,105218059,1,4376_7778022_100640,4376_166 -4289_75980,260,4376_22193,Citywest,105312717,1,4376_7778022_100972,4376_164 -4289_75980,261,4376_22194,Citywest,105322717,1,4376_7778022_100972,4376_164 -4289_75980,262,4376_22195,Citywest,105432717,1,4376_7778022_100972,4376_164 -4289_75980,263,4376_22196,Citywest,105542717,1,4376_7778022_100972,4376_164 -4289_75980,264,4376_22197,Citywest,105652717,1,4376_7778022_100972,4376_164 -4289_75980,265,4376_22198,Citywest,105812717,1,4376_7778022_100972,4376_164 -4289_75980,266,4376_22199,Citywest,105822717,1,4376_7778022_100972,4376_164 -4289_75960,265,4376_222,Sutton Station,105811920,0,4376_7778022_103101,4376_1 -4289_75963,264,4376_2220,Blackrock,105652190,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_22200,Citywest,106052717,1,4376_7778022_100972,4376_164 -4289_75980,268,4376_22201,Citywest,106142717,1,4376_7778022_100972,4376_164 -4289_75980,269,4376_22202,Citywest,106232717,1,4376_7778022_100972,4376_164 -4289_75980,259,4376_22203,Citywest,105765415,1,4376_7778022_100810,4376_165 -4289_75980,270,4376_22204,Citywest,105278097,1,4376_7778022_100600,4376_166 -4289_75980,146,4376_22205,Citywest,105248097,1,4376_7778022_100600,4376_166 -4289_75980,271,4376_22206,Citywest,105238097,1,4376_7778022_100600,4376_166 -4289_75980,115,4376_22207,Citywest,105218097,1,4376_7778022_100600,4376_166 -4289_75980,260,4376_22208,Citywest,105312767,1,4376_7778022_101002,4376_164 -4289_75980,261,4376_22209,Citywest,105322767,1,4376_7778022_101002,4376_164 -4289_75963,265,4376_2221,Blackrock,105812190,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_22210,Citywest,105432767,1,4376_7778022_101002,4376_164 -4289_75980,263,4376_22211,Citywest,105542767,1,4376_7778022_101002,4376_164 -4289_75980,264,4376_22212,Citywest,105652767,1,4376_7778022_101002,4376_164 -4289_75980,265,4376_22213,Citywest,105812767,1,4376_7778022_101002,4376_164 -4289_75980,266,4376_22214,Citywest,105822767,1,4376_7778022_101002,4376_164 -4289_75980,267,4376_22215,Citywest,106052767,1,4376_7778022_101002,4376_164 -4289_75980,268,4376_22216,Citywest,106142767,1,4376_7778022_101002,4376_164 -4289_75980,269,4376_22217,Citywest,106232767,1,4376_7778022_101002,4376_164 -4289_75980,259,4376_22218,Citywest,105765463,1,4376_7778022_100780,4376_165 -4289_75980,270,4376_22219,Citywest,105278137,1,4376_7778022_100610,4376_166 -4289_75963,266,4376_2222,Blackrock,105822190,0,4376_7778022_100160,4376_30 -4289_75980,146,4376_22220,Citywest,105248137,1,4376_7778022_100610,4376_166 -4289_75980,271,4376_22221,Citywest,105238137,1,4376_7778022_100610,4376_166 -4289_75980,115,4376_22222,Citywest,105218137,1,4376_7778022_100610,4376_166 -4289_75980,260,4376_22223,Citywest,105312815,1,4376_7778022_100982,4376_164 -4289_75980,261,4376_22224,Citywest,105322815,1,4376_7778022_100982,4376_164 -4289_75980,262,4376_22225,Citywest,105432815,1,4376_7778022_100982,4376_164 -4289_75980,263,4376_22226,Citywest,105542815,1,4376_7778022_100982,4376_164 -4289_75980,264,4376_22227,Citywest,105652815,1,4376_7778022_100982,4376_164 -4289_75980,265,4376_22228,Citywest,105812815,1,4376_7778022_100982,4376_164 -4289_75980,266,4376_22229,Citywest,105822815,1,4376_7778022_100982,4376_164 -4289_75963,267,4376_2223,Blackrock,106052190,0,4376_7778022_100160,4376_30 -4289_75980,267,4376_22230,Citywest,106052815,1,4376_7778022_100982,4376_164 -4289_75980,268,4376_22231,Citywest,106142815,1,4376_7778022_100982,4376_164 -4289_75980,269,4376_22232,Citywest,106232815,1,4376_7778022_100982,4376_164 -4289_75980,259,4376_22233,Citywest,105765501,1,4376_7778022_100820,4376_165 -4289_75980,270,4376_22234,Citywest,105278175,1,4376_7778022_100622,4376_166 -4289_75980,146,4376_22235,Citywest,105248175,1,4376_7778022_100622,4376_166 -4289_75980,271,4376_22236,Citywest,105238175,1,4376_7778022_100622,4376_166 -4289_75980,115,4376_22237,Citywest,105218175,1,4376_7778022_100622,4376_166 -4289_75980,260,4376_22238,Citywest,105312861,1,4376_7778022_100993,4376_164 -4289_75980,261,4376_22239,Citywest,105322861,1,4376_7778022_100993,4376_164 -4289_75963,268,4376_2224,Blackrock,106142190,0,4376_7778022_100160,4376_30 -4289_75980,262,4376_22240,Citywest,105432861,1,4376_7778022_100993,4376_164 -4289_75980,263,4376_22241,Citywest,105542861,1,4376_7778022_100993,4376_164 -4289_75980,264,4376_22242,Citywest,105652861,1,4376_7778022_100993,4376_164 -4289_75980,265,4376_22243,Citywest,105812861,1,4376_7778022_100993,4376_164 -4289_75980,266,4376_22244,Citywest,105822861,1,4376_7778022_100993,4376_164 -4289_75980,267,4376_22245,Citywest,106052861,1,4376_7778022_100993,4376_164 -4289_75980,268,4376_22246,Citywest,106142861,1,4376_7778022_100993,4376_164 -4289_75980,269,4376_22247,Citywest,106232861,1,4376_7778022_100993,4376_164 -4289_75980,259,4376_22248,Citywest,105765547,1,4376_7778022_100830,4376_165 -4289_75980,270,4376_22249,Citywest,105278213,1,4376_7778022_100632,4376_165 -4289_75963,269,4376_2225,Blackrock,106232190,0,4376_7778022_100160,4376_30 -4289_75980,146,4376_22250,Citywest,105248213,1,4376_7778022_100632,4376_165 -4289_75980,271,4376_22251,Citywest,105238213,1,4376_7778022_100632,4376_165 -4289_75980,115,4376_22252,Citywest,105218213,1,4376_7778022_100632,4376_165 -4289_75980,260,4376_22253,Citywest,105312907,1,4376_7778022_101032,4376_164 -4289_75980,261,4376_22254,Citywest,105322907,1,4376_7778022_101032,4376_164 -4289_75980,262,4376_22255,Citywest,105432907,1,4376_7778022_101032,4376_164 -4289_75980,263,4376_22256,Citywest,105542907,1,4376_7778022_101032,4376_164 -4289_75980,264,4376_22257,Citywest,105652907,1,4376_7778022_101032,4376_164 -4289_75980,265,4376_22258,Citywest,105812907,1,4376_7778022_101032,4376_164 -4289_75980,266,4376_22259,Citywest,105822907,1,4376_7778022_101032,4376_164 -4289_75963,259,4376_2226,Blackrock,105765040,0,4376_7778022_100142,4376_30 -4289_75980,267,4376_22260,Citywest,106052907,1,4376_7778022_101032,4376_164 -4289_75980,268,4376_22261,Citywest,106142907,1,4376_7778022_101032,4376_164 -4289_75980,269,4376_22262,Citywest,106232907,1,4376_7778022_101032,4376_164 -4289_75980,259,4376_22263,Citywest,105765585,1,4376_7778022_100840,4376_165 -4289_75980,270,4376_22264,Citywest,105278251,1,4376_7778022_100672,4376_166 -4289_75980,146,4376_22265,Citywest,105248251,1,4376_7778022_100672,4376_166 -4289_75980,271,4376_22266,Citywest,105238251,1,4376_7778022_100672,4376_166 -4289_75980,115,4376_22267,Citywest,105218251,1,4376_7778022_100672,4376_166 -4289_75980,260,4376_22268,Citywest,105312955,1,4376_7778022_101070,4376_164 -4289_75980,261,4376_22269,Citywest,105322955,1,4376_7778022_101070,4376_164 -4289_75963,270,4376_2227,Blackrock,105277744,0,4376_7778022_100130,4376_31 -4289_75980,262,4376_22270,Citywest,105432955,1,4376_7778022_101070,4376_164 -4289_75980,263,4376_22271,Citywest,105542955,1,4376_7778022_101070,4376_164 -4289_75980,264,4376_22272,Citywest,105652955,1,4376_7778022_101070,4376_164 -4289_75980,265,4376_22273,Citywest,105812955,1,4376_7778022_101070,4376_164 -4289_75980,266,4376_22274,Citywest,105822955,1,4376_7778022_101070,4376_164 -4289_75980,267,4376_22275,Citywest,106052955,1,4376_7778022_101070,4376_164 -4289_75980,268,4376_22276,Citywest,106142955,1,4376_7778022_101070,4376_164 -4289_75980,269,4376_22277,Citywest,106232955,1,4376_7778022_101070,4376_164 -4289_75980,259,4376_22278,Citywest,105765631,1,4376_7778022_100790,4376_165 -4289_75980,270,4376_22279,Citywest,105278287,1,4376_7778022_100662,4376_164 -4289_75963,146,4376_2228,Blackrock,105247744,0,4376_7778022_100130,4376_31 -4289_75980,146,4376_22280,Citywest,105248287,1,4376_7778022_100662,4376_164 -4289_75980,271,4376_22281,Citywest,105238287,1,4376_7778022_100662,4376_164 -4289_75980,115,4376_22282,Citywest,105218287,1,4376_7778022_100662,4376_164 -4289_75980,260,4376_22283,Citywest,105312987,1,4376_7778022_101023,4376_164 -4289_75980,261,4376_22284,Citywest,105322987,1,4376_7778022_101023,4376_164 -4289_75980,262,4376_22285,Citywest,105432987,1,4376_7778022_101023,4376_164 -4289_75980,263,4376_22286,Citywest,105542987,1,4376_7778022_101023,4376_164 -4289_75980,264,4376_22287,Citywest,105652987,1,4376_7778022_101023,4376_164 -4289_75980,265,4376_22288,Citywest,105812987,1,4376_7778022_101023,4376_164 -4289_75980,266,4376_22289,Citywest,105822987,1,4376_7778022_101023,4376_164 -4289_75963,271,4376_2229,Blackrock,105237744,0,4376_7778022_100130,4376_31 -4289_75980,267,4376_22290,Citywest,106052987,1,4376_7778022_101023,4376_164 -4289_75980,268,4376_22291,Citywest,106142987,1,4376_7778022_101023,4376_164 -4289_75980,269,4376_22292,Citywest,106232987,1,4376_7778022_101023,4376_164 -4289_75980,259,4376_22293,Citywest,105765663,1,4376_7778022_100780,4376_165 -4289_75980,270,4376_22294,Citywest,105278317,1,4376_7778022_100610,4376_164 -4289_75980,146,4376_22295,Citywest,105248317,1,4376_7778022_100610,4376_164 -4289_75980,271,4376_22296,Citywest,105238317,1,4376_7778022_100610,4376_164 -4289_75980,115,4376_22297,Citywest,105218317,1,4376_7778022_100610,4376_164 -4289_75981,260,4376_22298,The Square,105311006,0,4376_7778022_100341,4376_167 -4289_75981,261,4376_22299,The Square,105321006,0,4376_7778022_100341,4376_167 -4289_75960,266,4376_223,Sutton Station,105821920,0,4376_7778022_103101,4376_1 -4289_75963,115,4376_2230,Blackrock,105217744,0,4376_7778022_100130,4376_31 -4289_75981,262,4376_22300,The Square,105431006,0,4376_7778022_100341,4376_167 -4289_75981,263,4376_22301,The Square,105541006,0,4376_7778022_100341,4376_167 -4289_75981,264,4376_22302,The Square,105651006,0,4376_7778022_100341,4376_167 -4289_75981,265,4376_22303,The Square,105811006,0,4376_7778022_100341,4376_167 -4289_75981,266,4376_22304,The Square,105821006,0,4376_7778022_100341,4376_167 -4289_75981,267,4376_22305,The Square,106051006,0,4376_7778022_100341,4376_167 -4289_75981,268,4376_22306,The Square,106141006,0,4376_7778022_100341,4376_167 -4289_75981,269,4376_22307,The Square,106231006,0,4376_7778022_100341,4376_167 -4289_75981,259,4376_22308,The Square,105764004,0,4376_7778022_100280,4376_168 -4289_75981,260,4376_22309,The Square,105311034,0,4376_7778022_100350,4376_167 -4289_75963,260,4376_2231,Blackrock,105312342,0,4376_7778022_100150,4376_30 -4289_75981,261,4376_22310,The Square,105321034,0,4376_7778022_100350,4376_167 -4289_75981,262,4376_22311,The Square,105431034,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_22312,The Square,105541034,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_22313,The Square,105651034,0,4376_7778022_100350,4376_167 -4289_75981,265,4376_22314,The Square,105811034,0,4376_7778022_100350,4376_167 -4289_75981,266,4376_22315,The Square,105821034,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_22316,The Square,106051034,0,4376_7778022_100350,4376_167 -4289_75981,268,4376_22317,The Square,106141034,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_22318,The Square,106231034,0,4376_7778022_100350,4376_167 -4289_75981,259,4376_22319,The Square,105764020,0,4376_7778022_100290,4376_168 -4289_75963,261,4376_2232,Blackrock,105322342,0,4376_7778022_100150,4376_30 -4289_75981,260,4376_22320,The Square,105311052,0,4376_7778022_100360,4376_167 -4289_75981,261,4376_22321,The Square,105321052,0,4376_7778022_100360,4376_167 -4289_75981,262,4376_22322,The Square,105431052,0,4376_7778022_100360,4376_167 -4289_75981,263,4376_22323,The Square,105541052,0,4376_7778022_100360,4376_167 -4289_75981,264,4376_22324,The Square,105651052,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_22325,The Square,105811052,0,4376_7778022_100360,4376_167 -4289_75981,266,4376_22326,The Square,105821052,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_22327,The Square,106051052,0,4376_7778022_100360,4376_167 -4289_75981,268,4376_22328,The Square,106141052,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_22329,The Square,106231052,0,4376_7778022_100360,4376_167 -4289_75963,262,4376_2233,Blackrock,105432342,0,4376_7778022_100150,4376_30 -4289_75981,259,4376_22330,The Square,105764036,0,4376_7778022_100300,4376_167 -4289_75981,260,4376_22331,The Square,105311078,0,4376_7778022_100341,4376_167 -4289_75981,261,4376_22332,The Square,105321078,0,4376_7778022_100341,4376_167 -4289_75981,262,4376_22333,The Square,105431078,0,4376_7778022_100341,4376_167 -4289_75981,263,4376_22334,The Square,105541078,0,4376_7778022_100341,4376_167 -4289_75981,264,4376_22335,The Square,105651078,0,4376_7778022_100341,4376_167 -4289_75981,265,4376_22336,The Square,105811078,0,4376_7778022_100341,4376_167 -4289_75981,266,4376_22337,The Square,105821078,0,4376_7778022_100341,4376_167 -4289_75981,267,4376_22338,The Square,106051078,0,4376_7778022_100341,4376_167 -4289_75981,268,4376_22339,The Square,106141078,0,4376_7778022_100341,4376_167 -4289_75963,263,4376_2234,Blackrock,105542342,0,4376_7778022_100150,4376_30 -4289_75981,269,4376_22340,The Square,106231078,0,4376_7778022_100341,4376_167 -4289_75981,259,4376_22341,The Square,105764066,0,4376_7778022_100280,4376_167 -4289_75981,260,4376_22342,The Square,105311102,0,4376_7778022_100390,4376_167 -4289_75981,261,4376_22343,The Square,105321102,0,4376_7778022_100390,4376_167 -4289_75981,262,4376_22344,The Square,105431102,0,4376_7778022_100390,4376_167 -4289_75981,263,4376_22345,The Square,105541102,0,4376_7778022_100390,4376_167 -4289_75981,264,4376_22346,The Square,105651102,0,4376_7778022_100390,4376_167 -4289_75981,265,4376_22347,The Square,105811102,0,4376_7778022_100390,4376_167 -4289_75981,266,4376_22348,The Square,105821102,0,4376_7778022_100390,4376_167 -4289_75981,267,4376_22349,The Square,106051102,0,4376_7778022_100390,4376_167 -4289_75963,264,4376_2235,Blackrock,105652342,0,4376_7778022_100150,4376_30 -4289_75981,268,4376_22350,The Square,106141102,0,4376_7778022_100390,4376_167 -4289_75981,269,4376_22351,The Square,106231102,0,4376_7778022_100390,4376_167 -4289_75981,260,4376_22352,The Square,105311150,0,4376_7778022_100370,4376_167 -4289_75981,261,4376_22353,The Square,105321150,0,4376_7778022_100370,4376_167 -4289_75981,262,4376_22354,The Square,105431150,0,4376_7778022_100370,4376_167 -4289_75981,263,4376_22355,The Square,105541150,0,4376_7778022_100370,4376_167 -4289_75981,264,4376_22356,The Square,105651150,0,4376_7778022_100370,4376_167 -4289_75981,265,4376_22357,The Square,105811150,0,4376_7778022_100370,4376_167 -4289_75981,266,4376_22358,The Square,105821150,0,4376_7778022_100370,4376_167 -4289_75981,267,4376_22359,The Square,106051150,0,4376_7778022_100370,4376_167 -4289_75963,265,4376_2236,Blackrock,105812342,0,4376_7778022_100150,4376_30 -4289_75981,268,4376_22360,The Square,106141150,0,4376_7778022_100370,4376_167 -4289_75981,269,4376_22361,The Square,106231150,0,4376_7778022_100370,4376_167 -4289_75981,259,4376_22362,The Square,105764090,0,4376_7778022_100310,4376_168 -4289_75981,260,4376_22363,The Square,105311180,0,4376_7778022_100380,4376_167 -4289_75981,261,4376_22364,The Square,105321180,0,4376_7778022_100380,4376_167 -4289_75981,262,4376_22365,The Square,105431180,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_22366,The Square,105541180,0,4376_7778022_100380,4376_167 -4289_75981,264,4376_22367,The Square,105651180,0,4376_7778022_100380,4376_167 -4289_75981,265,4376_22368,The Square,105811180,0,4376_7778022_100380,4376_167 -4289_75981,266,4376_22369,The Square,105821180,0,4376_7778022_100380,4376_167 -4289_75963,266,4376_2237,Blackrock,105822342,0,4376_7778022_100150,4376_30 -4289_75981,267,4376_22370,The Square,106051180,0,4376_7778022_100380,4376_167 -4289_75981,268,4376_22371,The Square,106141180,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_22372,The Square,106231180,0,4376_7778022_100380,4376_167 -4289_75981,259,4376_22373,The Square,105764118,0,4376_7778022_100290,4376_167 -4289_75981,260,4376_22374,The Square,105311212,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_22375,The Square,105321212,0,4376_7778022_100350,4376_167 -4289_75981,262,4376_22376,The Square,105431212,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_22377,The Square,105541212,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_22378,The Square,105651212,0,4376_7778022_100350,4376_167 -4289_75981,265,4376_22379,The Square,105811212,0,4376_7778022_100350,4376_167 -4289_75963,267,4376_2238,Blackrock,106052342,0,4376_7778022_100150,4376_30 -4289_75981,266,4376_22380,The Square,105821212,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_22381,The Square,106051212,0,4376_7778022_100350,4376_167 -4289_75981,268,4376_22382,The Square,106141212,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_22383,The Square,106231212,0,4376_7778022_100350,4376_167 -4289_75981,270,4376_22384,The Square,105277004,0,4376_7778022_100360,4376_168 -4289_75981,146,4376_22385,The Square,105247004,0,4376_7778022_100360,4376_168 -4289_75981,271,4376_22386,The Square,105237004,0,4376_7778022_100360,4376_168 -4289_75981,115,4376_22387,The Square,105217004,0,4376_7778022_100360,4376_168 -4289_75981,259,4376_22388,The Square,105764154,0,4376_7778022_100300,4376_167 -4289_75981,260,4376_22389,The Square,105311274,0,4376_7778022_100410,4376_167 -4289_75963,268,4376_2239,Blackrock,106142342,0,4376_7778022_100150,4376_30 -4289_75981,261,4376_22390,The Square,105321274,0,4376_7778022_100410,4376_167 -4289_75981,262,4376_22391,The Square,105431274,0,4376_7778022_100410,4376_167 -4289_75981,263,4376_22392,The Square,105541274,0,4376_7778022_100410,4376_167 -4289_75981,264,4376_22393,The Square,105651274,0,4376_7778022_100410,4376_167 -4289_75981,265,4376_22394,The Square,105811274,0,4376_7778022_100410,4376_167 -4289_75981,266,4376_22395,The Square,105821274,0,4376_7778022_100410,4376_167 -4289_75981,267,4376_22396,The Square,106051274,0,4376_7778022_100410,4376_167 -4289_75981,268,4376_22397,The Square,106141274,0,4376_7778022_100410,4376_167 -4289_75981,269,4376_22398,The Square,106231274,0,4376_7778022_100410,4376_167 -4289_75981,260,4376_22399,The Square,105311312,0,4376_7778022_100360,4376_167 -4289_75960,267,4376_224,Sutton Station,106051920,0,4376_7778022_103101,4376_1 -4289_75963,269,4376_2240,Blackrock,106232342,0,4376_7778022_100150,4376_30 -4289_75981,261,4376_22400,The Square,105321312,0,4376_7778022_100360,4376_167 -4289_75981,262,4376_22401,The Square,105431312,0,4376_7778022_100360,4376_167 -4289_75981,263,4376_22402,The Square,105541312,0,4376_7778022_100360,4376_167 -4289_75981,264,4376_22403,The Square,105651312,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_22404,The Square,105811312,0,4376_7778022_100360,4376_167 -4289_75981,266,4376_22405,The Square,105821312,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_22406,The Square,106051312,0,4376_7778022_100360,4376_167 -4289_75981,268,4376_22407,The Square,106141312,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_22408,The Square,106231312,0,4376_7778022_100360,4376_167 -4289_75981,259,4376_22409,The Square,105764176,0,4376_7778022_100280,4376_168 -4289_75963,259,4376_2241,Blackrock,105765140,0,4376_7778022_100150,4376_30 -4289_75981,270,4376_22410,The Square,105277028,0,4376_7778022_100350,4376_169 -4289_75981,146,4376_22411,The Square,105247028,0,4376_7778022_100350,4376_169 -4289_75981,271,4376_22412,The Square,105237028,0,4376_7778022_100350,4376_169 -4289_75981,115,4376_22413,The Square,105217028,0,4376_7778022_100350,4376_169 -4289_75981,260,4376_22414,The Square,105311352,0,4376_7778022_100341,4376_167 -4289_75981,261,4376_22415,The Square,105321352,0,4376_7778022_100341,4376_167 -4289_75981,262,4376_22416,The Square,105431352,0,4376_7778022_100341,4376_167 -4289_75981,263,4376_22417,The Square,105541352,0,4376_7778022_100341,4376_167 -4289_75981,264,4376_22418,The Square,105651352,0,4376_7778022_100341,4376_167 -4289_75981,265,4376_22419,The Square,105811352,0,4376_7778022_100341,4376_167 -4289_75963,270,4376_2242,Blackrock,105277838,0,4376_7778022_100112,4376_31 -4289_75981,266,4376_22420,The Square,105821352,0,4376_7778022_100341,4376_167 -4289_75981,267,4376_22421,The Square,106051352,0,4376_7778022_100341,4376_167 -4289_75981,268,4376_22422,The Square,106141352,0,4376_7778022_100341,4376_167 -4289_75981,269,4376_22423,The Square,106231352,0,4376_7778022_100341,4376_167 -4289_75981,259,4376_22424,The Square,105764206,0,4376_7778022_100310,4376_167 -4289_75981,260,4376_22425,The Square,105311378,0,4376_7778022_100390,4376_167 -4289_75981,261,4376_22426,The Square,105321378,0,4376_7778022_100390,4376_167 -4289_75981,262,4376_22427,The Square,105431378,0,4376_7778022_100390,4376_167 -4289_75981,263,4376_22428,The Square,105541378,0,4376_7778022_100390,4376_167 -4289_75981,264,4376_22429,The Square,105651378,0,4376_7778022_100390,4376_167 -4289_75963,146,4376_2243,Blackrock,105247838,0,4376_7778022_100112,4376_31 -4289_75981,265,4376_22430,The Square,105811378,0,4376_7778022_100390,4376_167 -4289_75981,266,4376_22431,The Square,105821378,0,4376_7778022_100390,4376_167 -4289_75981,267,4376_22432,The Square,106051378,0,4376_7778022_100390,4376_167 -4289_75981,268,4376_22433,The Square,106141378,0,4376_7778022_100390,4376_167 -4289_75981,269,4376_22434,The Square,106231378,0,4376_7778022_100390,4376_167 -4289_75981,270,4376_22435,The Square,105277046,0,4376_7778022_100260,4376_168 -4289_75981,146,4376_22436,The Square,105247046,0,4376_7778022_100260,4376_168 -4289_75981,271,4376_22437,The Square,105237046,0,4376_7778022_100260,4376_168 -4289_75981,115,4376_22438,The Square,105217046,0,4376_7778022_100260,4376_168 -4289_75981,259,4376_22439,The Square,105764240,0,4376_7778022_100290,4376_167 -4289_75963,271,4376_2244,Blackrock,105237838,0,4376_7778022_100112,4376_31 -4289_75981,260,4376_22440,The Square,105311406,0,4376_7778022_100400,4376_167 -4289_75981,261,4376_22441,The Square,105321406,0,4376_7778022_100400,4376_167 -4289_75981,262,4376_22442,The Square,105431406,0,4376_7778022_100400,4376_167 -4289_75981,263,4376_22443,The Square,105541406,0,4376_7778022_100400,4376_167 -4289_75981,264,4376_22444,The Square,105651406,0,4376_7778022_100400,4376_167 -4289_75981,265,4376_22445,The Square,105811406,0,4376_7778022_100400,4376_167 -4289_75981,266,4376_22446,The Square,105821406,0,4376_7778022_100400,4376_167 -4289_75981,267,4376_22447,The Square,106051406,0,4376_7778022_100400,4376_167 -4289_75981,268,4376_22448,The Square,106141406,0,4376_7778022_100400,4376_167 -4289_75981,269,4376_22449,The Square,106231406,0,4376_7778022_100400,4376_167 -4289_75963,115,4376_2245,Blackrock,105217838,0,4376_7778022_100112,4376_31 -4289_75981,260,4376_22450,The Square,105311436,0,4376_7778022_100370,4376_167 -4289_75981,261,4376_22451,The Square,105321436,0,4376_7778022_100370,4376_167 -4289_75981,262,4376_22452,The Square,105431436,0,4376_7778022_100370,4376_167 -4289_75981,263,4376_22453,The Square,105541436,0,4376_7778022_100370,4376_167 -4289_75981,264,4376_22454,The Square,105651436,0,4376_7778022_100370,4376_167 -4289_75981,265,4376_22455,The Square,105811436,0,4376_7778022_100370,4376_167 -4289_75981,266,4376_22456,The Square,105821436,0,4376_7778022_100370,4376_167 -4289_75981,267,4376_22457,The Square,106051436,0,4376_7778022_100370,4376_167 -4289_75981,268,4376_22458,The Square,106141436,0,4376_7778022_100370,4376_167 -4289_75981,269,4376_22459,The Square,106231436,0,4376_7778022_100370,4376_167 -4289_75963,260,4376_2246,Blackrock,105312432,0,4376_7778022_100160,4376_30 -4289_75981,259,4376_22460,The Square,105764262,0,4376_7778022_100300,4376_168 -4289_75981,270,4376_22461,The Square,105277082,0,4376_7778022_100360,4376_169 -4289_75981,146,4376_22462,The Square,105247082,0,4376_7778022_100360,4376_169 -4289_75981,271,4376_22463,The Square,105237082,0,4376_7778022_100360,4376_169 -4289_75981,115,4376_22464,The Square,105217082,0,4376_7778022_100360,4376_169 -4289_75981,260,4376_22465,The Square,105311464,0,4376_7778022_100380,4376_167 -4289_75981,261,4376_22466,The Square,105321464,0,4376_7778022_100380,4376_167 -4289_75981,262,4376_22467,The Square,105431464,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_22468,The Square,105541464,0,4376_7778022_100380,4376_167 -4289_75981,264,4376_22469,The Square,105651464,0,4376_7778022_100380,4376_167 -4289_75963,261,4376_2247,Blackrock,105322432,0,4376_7778022_100160,4376_30 -4289_75981,265,4376_22470,The Square,105811464,0,4376_7778022_100380,4376_167 -4289_75981,266,4376_22471,The Square,105821464,0,4376_7778022_100380,4376_167 -4289_75981,267,4376_22472,The Square,106051464,0,4376_7778022_100380,4376_167 -4289_75981,268,4376_22473,The Square,106141464,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_22474,The Square,106231464,0,4376_7778022_100380,4376_167 -4289_75981,259,4376_22475,The Square,105764290,0,4376_7778022_100320,4376_168 -4289_75981,260,4376_22476,The Square,105311486,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_22477,The Square,105321486,0,4376_7778022_100350,4376_167 -4289_75981,262,4376_22478,The Square,105431486,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_22479,The Square,105541486,0,4376_7778022_100350,4376_167 -4289_75963,262,4376_2248,Blackrock,105432432,0,4376_7778022_100160,4376_30 -4289_75981,264,4376_22480,The Square,105651486,0,4376_7778022_100350,4376_167 -4289_75981,265,4376_22481,The Square,105811486,0,4376_7778022_100350,4376_167 -4289_75981,266,4376_22482,The Square,105821486,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_22483,The Square,106051486,0,4376_7778022_100350,4376_167 -4289_75981,268,4376_22484,The Square,106141486,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_22485,The Square,106231486,0,4376_7778022_100350,4376_167 -4289_75981,259,4376_22486,The Square,105764312,0,4376_7778022_100280,4376_168 -4289_75981,270,4376_22487,The Square,105277112,0,4376_7778022_100270,4376_169 -4289_75981,146,4376_22488,The Square,105247112,0,4376_7778022_100270,4376_169 -4289_75981,271,4376_22489,The Square,105237112,0,4376_7778022_100270,4376_169 -4289_75963,263,4376_2249,Blackrock,105542432,0,4376_7778022_100160,4376_30 -4289_75981,115,4376_22490,The Square,105217112,0,4376_7778022_100270,4376_169 -4289_75981,260,4376_22491,The Square,105311514,0,4376_7778022_100410,4376_167 -4289_75981,261,4376_22492,The Square,105321514,0,4376_7778022_100410,4376_167 -4289_75981,262,4376_22493,The Square,105431514,0,4376_7778022_100410,4376_167 -4289_75981,263,4376_22494,The Square,105541514,0,4376_7778022_100410,4376_167 -4289_75981,264,4376_22495,The Square,105651514,0,4376_7778022_100410,4376_167 -4289_75981,265,4376_22496,The Square,105811514,0,4376_7778022_100410,4376_167 -4289_75981,266,4376_22497,The Square,105821514,0,4376_7778022_100410,4376_167 -4289_75981,267,4376_22498,The Square,106051514,0,4376_7778022_100410,4376_167 -4289_75981,268,4376_22499,The Square,106141514,0,4376_7778022_100410,4376_167 -4289_75960,268,4376_225,Sutton Station,106141920,0,4376_7778022_103101,4376_1 -4289_75963,264,4376_2250,Blackrock,105652432,0,4376_7778022_100160,4376_30 -4289_75981,269,4376_22500,The Square,106231514,0,4376_7778022_100410,4376_167 -4289_75981,259,4376_22501,The Square,105764342,0,4376_7778022_100310,4376_168 -4289_75981,260,4376_22502,The Square,105311542,0,4376_7778022_100360,4376_167 -4289_75981,261,4376_22503,The Square,105321542,0,4376_7778022_100360,4376_167 -4289_75981,262,4376_22504,The Square,105431542,0,4376_7778022_100360,4376_167 -4289_75981,263,4376_22505,The Square,105541542,0,4376_7778022_100360,4376_167 -4289_75981,264,4376_22506,The Square,105651542,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_22507,The Square,105811542,0,4376_7778022_100360,4376_167 -4289_75981,266,4376_22508,The Square,105821542,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_22509,The Square,106051542,0,4376_7778022_100360,4376_167 -4289_75963,265,4376_2251,Blackrock,105812432,0,4376_7778022_100160,4376_30 -4289_75981,268,4376_22510,The Square,106141542,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_22511,The Square,106231542,0,4376_7778022_100360,4376_167 -4289_75981,259,4376_22512,The Square,105764366,0,4376_7778022_100330,4376_168 -4289_75981,270,4376_22513,The Square,105277154,0,4376_7778022_100250,4376_169 -4289_75981,146,4376_22514,The Square,105247154,0,4376_7778022_100250,4376_169 -4289_75981,271,4376_22515,The Square,105237154,0,4376_7778022_100250,4376_169 -4289_75981,115,4376_22516,The Square,105217154,0,4376_7778022_100250,4376_169 -4289_75981,260,4376_22517,The Square,105311570,0,4376_7778022_100390,4376_167 -4289_75981,261,4376_22518,The Square,105321570,0,4376_7778022_100390,4376_167 -4289_75981,262,4376_22519,The Square,105431570,0,4376_7778022_100390,4376_167 -4289_75963,266,4376_2252,Blackrock,105822432,0,4376_7778022_100160,4376_30 -4289_75981,263,4376_22520,The Square,105541570,0,4376_7778022_100390,4376_167 -4289_75981,264,4376_22521,The Square,105651570,0,4376_7778022_100390,4376_167 -4289_75981,265,4376_22522,The Square,105811570,0,4376_7778022_100390,4376_167 -4289_75981,266,4376_22523,The Square,105821570,0,4376_7778022_100390,4376_167 -4289_75981,267,4376_22524,The Square,106051570,0,4376_7778022_100390,4376_167 -4289_75981,268,4376_22525,The Square,106141570,0,4376_7778022_100390,4376_167 -4289_75981,269,4376_22526,The Square,106231570,0,4376_7778022_100390,4376_167 -4289_75981,259,4376_22527,The Square,105764396,0,4376_7778022_100290,4376_168 -4289_75981,270,4376_22528,The Square,105277184,0,4376_7778022_100260,4376_167 -4289_75981,146,4376_22529,The Square,105247184,0,4376_7778022_100260,4376_167 -4289_75963,267,4376_2253,Blackrock,106052432,0,4376_7778022_100160,4376_30 -4289_75981,271,4376_22530,The Square,105237184,0,4376_7778022_100260,4376_167 -4289_75981,115,4376_22531,The Square,105217184,0,4376_7778022_100260,4376_167 -4289_75981,260,4376_22532,The Square,105311592,0,4376_7778022_100400,4376_167 -4289_75981,261,4376_22533,The Square,105321592,0,4376_7778022_100400,4376_167 -4289_75981,262,4376_22534,The Square,105431592,0,4376_7778022_100400,4376_167 -4289_75981,263,4376_22535,The Square,105541592,0,4376_7778022_100400,4376_167 -4289_75981,264,4376_22536,The Square,105651592,0,4376_7778022_100400,4376_167 -4289_75981,265,4376_22537,The Square,105811592,0,4376_7778022_100400,4376_167 -4289_75981,266,4376_22538,The Square,105821592,0,4376_7778022_100400,4376_167 -4289_75981,267,4376_22539,The Square,106051592,0,4376_7778022_100400,4376_167 -4289_75963,268,4376_2254,Blackrock,106142432,0,4376_7778022_100160,4376_30 -4289_75981,268,4376_22540,The Square,106141592,0,4376_7778022_100400,4376_167 -4289_75981,269,4376_22541,The Square,106231592,0,4376_7778022_100400,4376_167 -4289_75981,259,4376_22542,The Square,105764414,0,4376_7778022_100300,4376_168 -4289_75981,270,4376_22543,The Square,105277218,0,4376_7778022_100280,4376_167 -4289_75981,146,4376_22544,The Square,105247218,0,4376_7778022_100280,4376_167 -4289_75981,271,4376_22545,The Square,105237218,0,4376_7778022_100280,4376_167 -4289_75981,115,4376_22546,The Square,105217218,0,4376_7778022_100280,4376_167 -4289_75981,260,4376_22547,The Square,105311624,0,4376_7778022_100370,4376_167 -4289_75981,261,4376_22548,The Square,105321624,0,4376_7778022_100370,4376_167 -4289_75981,262,4376_22549,The Square,105431624,0,4376_7778022_100370,4376_167 -4289_75963,269,4376_2255,Blackrock,106232432,0,4376_7778022_100160,4376_30 -4289_75981,263,4376_22550,The Square,105541624,0,4376_7778022_100370,4376_167 -4289_75981,264,4376_22551,The Square,105651624,0,4376_7778022_100370,4376_167 -4289_75981,265,4376_22552,The Square,105811624,0,4376_7778022_100370,4376_167 -4289_75981,266,4376_22553,The Square,105821624,0,4376_7778022_100370,4376_167 -4289_75981,267,4376_22554,The Square,106051624,0,4376_7778022_100370,4376_167 -4289_75981,268,4376_22555,The Square,106141624,0,4376_7778022_100370,4376_167 -4289_75981,269,4376_22556,The Square,106231624,0,4376_7778022_100370,4376_167 -4289_75981,259,4376_22557,The Square,105764446,0,4376_7778022_100320,4376_168 -4289_75981,260,4376_22558,The Square,105311648,0,4376_7778022_100380,4376_167 -4289_75981,261,4376_22559,The Square,105321648,0,4376_7778022_100380,4376_167 -4289_75963,259,4376_2256,Blackrock,105765236,0,4376_7778022_100142,4376_30 -4289_75981,262,4376_22560,The Square,105431648,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_22561,The Square,105541648,0,4376_7778022_100380,4376_167 -4289_75981,264,4376_22562,The Square,105651648,0,4376_7778022_100380,4376_167 -4289_75981,265,4376_22563,The Square,105811648,0,4376_7778022_100380,4376_167 -4289_75981,266,4376_22564,The Square,105821648,0,4376_7778022_100380,4376_167 -4289_75981,267,4376_22565,The Square,106051648,0,4376_7778022_100380,4376_167 -4289_75981,268,4376_22566,The Square,106141648,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_22567,The Square,106231648,0,4376_7778022_100380,4376_167 -4289_75981,259,4376_22568,The Square,105764470,0,4376_7778022_100280,4376_168 -4289_75981,270,4376_22569,The Square,105277244,0,4376_7778022_100270,4376_169 -4289_75963,270,4376_2257,Blackrock,105277922,0,4376_7778022_100122,4376_31 -4289_75981,146,4376_22570,The Square,105247244,0,4376_7778022_100270,4376_169 -4289_75981,271,4376_22571,The Square,105237244,0,4376_7778022_100270,4376_169 -4289_75981,115,4376_22572,The Square,105217244,0,4376_7778022_100270,4376_169 -4289_75981,260,4376_22573,The Square,105311678,0,4376_7778022_100342,4376_167 -4289_75981,261,4376_22574,The Square,105321678,0,4376_7778022_100342,4376_167 -4289_75981,262,4376_22575,The Square,105431678,0,4376_7778022_100342,4376_167 -4289_75981,263,4376_22576,The Square,105541678,0,4376_7778022_100342,4376_167 -4289_75981,264,4376_22577,The Square,105651678,0,4376_7778022_100342,4376_167 -4289_75981,265,4376_22578,The Square,105811678,0,4376_7778022_100342,4376_167 -4289_75981,266,4376_22579,The Square,105821678,0,4376_7778022_100342,4376_167 -4289_75963,146,4376_2258,Blackrock,105247922,0,4376_7778022_100122,4376_31 -4289_75981,267,4376_22580,The Square,106051678,0,4376_7778022_100342,4376_167 -4289_75981,268,4376_22581,The Square,106141678,0,4376_7778022_100342,4376_167 -4289_75981,269,4376_22582,The Square,106231678,0,4376_7778022_100342,4376_167 -4289_75981,259,4376_22583,The Square,105764496,0,4376_7778022_100310,4376_168 -4289_75981,270,4376_22584,The Square,105277274,0,4376_7778022_100250,4376_167 -4289_75981,146,4376_22585,The Square,105247274,0,4376_7778022_100250,4376_167 -4289_75981,271,4376_22586,The Square,105237274,0,4376_7778022_100250,4376_167 -4289_75981,115,4376_22587,The Square,105217274,0,4376_7778022_100250,4376_167 -4289_75981,260,4376_22588,The Square,105311702,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_22589,The Square,105321702,0,4376_7778022_100350,4376_167 -4289_75963,271,4376_2259,Blackrock,105237922,0,4376_7778022_100122,4376_31 -4289_75981,262,4376_22590,The Square,105431702,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_22591,The Square,105541702,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_22592,The Square,105651702,0,4376_7778022_100350,4376_167 -4289_75981,265,4376_22593,The Square,105811702,0,4376_7778022_100350,4376_167 -4289_75981,266,4376_22594,The Square,105821702,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_22595,The Square,106051702,0,4376_7778022_100350,4376_167 -4289_75981,268,4376_22596,The Square,106141702,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_22597,The Square,106231702,0,4376_7778022_100350,4376_167 -4289_75981,259,4376_22598,The Square,105764518,0,4376_7778022_100340,4376_168 -4289_75981,270,4376_22599,The Square,105277310,0,4376_7778022_100260,4376_167 -4289_75960,269,4376_226,Sutton Station,106231920,0,4376_7778022_103101,4376_1 -4289_75963,115,4376_2260,Blackrock,105217922,0,4376_7778022_100122,4376_31 -4289_75981,146,4376_22600,The Square,105247310,0,4376_7778022_100260,4376_167 -4289_75981,271,4376_22601,The Square,105237310,0,4376_7778022_100260,4376_167 -4289_75981,115,4376_22602,The Square,105217310,0,4376_7778022_100260,4376_167 -4289_75981,260,4376_22603,The Square,105311732,0,4376_7778022_100410,4376_167 -4289_75981,261,4376_22604,The Square,105321732,0,4376_7778022_100410,4376_167 -4289_75981,262,4376_22605,The Square,105431732,0,4376_7778022_100410,4376_167 -4289_75981,263,4376_22606,The Square,105541732,0,4376_7778022_100410,4376_167 -4289_75981,264,4376_22607,The Square,105651732,0,4376_7778022_100410,4376_167 -4289_75981,265,4376_22608,The Square,105811732,0,4376_7778022_100410,4376_167 -4289_75981,266,4376_22609,The Square,105821732,0,4376_7778022_100410,4376_167 -4289_75963,260,4376_2261,Blackrock,105312542,0,4376_7778022_100150,4376_30 -4289_75981,267,4376_22610,The Square,106051732,0,4376_7778022_100410,4376_167 -4289_75981,268,4376_22611,The Square,106141732,0,4376_7778022_100410,4376_167 -4289_75981,269,4376_22612,The Square,106231732,0,4376_7778022_100410,4376_167 -4289_75981,259,4376_22613,The Square,105764548,0,4376_7778022_100330,4376_168 -4289_75981,260,4376_22614,The Square,105311754,0,4376_7778022_100360,4376_167 -4289_75981,261,4376_22615,The Square,105321754,0,4376_7778022_100360,4376_167 -4289_75981,262,4376_22616,The Square,105431754,0,4376_7778022_100360,4376_167 -4289_75981,263,4376_22617,The Square,105541754,0,4376_7778022_100360,4376_167 -4289_75981,264,4376_22618,The Square,105651754,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_22619,The Square,105811754,0,4376_7778022_100360,4376_167 -4289_75963,261,4376_2262,Blackrock,105322542,0,4376_7778022_100150,4376_30 -4289_75981,266,4376_22620,The Square,105821754,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_22621,The Square,106051754,0,4376_7778022_100360,4376_167 -4289_75981,268,4376_22622,The Square,106141754,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_22623,The Square,106231754,0,4376_7778022_100360,4376_167 -4289_75981,259,4376_22624,The Square,105764572,0,4376_7778022_100290,4376_168 -4289_75981,270,4376_22625,The Square,105277334,0,4376_7778022_100300,4376_169 -4289_75981,146,4376_22626,The Square,105247334,0,4376_7778022_100300,4376_169 -4289_75981,271,4376_22627,The Square,105237334,0,4376_7778022_100300,4376_169 -4289_75981,115,4376_22628,The Square,105217334,0,4376_7778022_100300,4376_169 -4289_75981,260,4376_22629,The Square,105311786,0,4376_7778022_100390,4376_167 -4289_75963,262,4376_2263,Blackrock,105432542,0,4376_7778022_100150,4376_30 -4289_75981,261,4376_22630,The Square,105321786,0,4376_7778022_100390,4376_167 -4289_75981,262,4376_22631,The Square,105431786,0,4376_7778022_100390,4376_167 -4289_75981,263,4376_22632,The Square,105541786,0,4376_7778022_100390,4376_167 -4289_75981,264,4376_22633,The Square,105651786,0,4376_7778022_100390,4376_167 -4289_75981,265,4376_22634,The Square,105811786,0,4376_7778022_100390,4376_167 -4289_75981,266,4376_22635,The Square,105821786,0,4376_7778022_100390,4376_167 -4289_75981,267,4376_22636,The Square,106051786,0,4376_7778022_100390,4376_167 -4289_75981,268,4376_22637,The Square,106141786,0,4376_7778022_100390,4376_167 -4289_75981,269,4376_22638,The Square,106231786,0,4376_7778022_100390,4376_167 -4289_75981,259,4376_22639,The Square,105764600,0,4376_7778022_100300,4376_168 -4289_75963,263,4376_2264,Blackrock,105542542,0,4376_7778022_100150,4376_30 -4289_75981,270,4376_22640,The Square,105277364,0,4376_7778022_100280,4376_167 -4289_75981,146,4376_22641,The Square,105247364,0,4376_7778022_100280,4376_167 -4289_75981,271,4376_22642,The Square,105237364,0,4376_7778022_100280,4376_167 -4289_75981,115,4376_22643,The Square,105217364,0,4376_7778022_100280,4376_167 -4289_75981,260,4376_22644,The Square,105311810,0,4376_7778022_100400,4376_167 -4289_75981,261,4376_22645,The Square,105321810,0,4376_7778022_100400,4376_167 -4289_75981,262,4376_22646,The Square,105431810,0,4376_7778022_100400,4376_167 -4289_75981,263,4376_22647,The Square,105541810,0,4376_7778022_100400,4376_167 -4289_75981,264,4376_22648,The Square,105651810,0,4376_7778022_100400,4376_167 -4289_75981,265,4376_22649,The Square,105811810,0,4376_7778022_100400,4376_167 -4289_75963,264,4376_2265,Blackrock,105652542,0,4376_7778022_100150,4376_30 -4289_75981,266,4376_22650,The Square,105821810,0,4376_7778022_100400,4376_167 -4289_75981,267,4376_22651,The Square,106051810,0,4376_7778022_100400,4376_167 -4289_75981,268,4376_22652,The Square,106141810,0,4376_7778022_100400,4376_167 -4289_75981,269,4376_22653,The Square,106231810,0,4376_7778022_100400,4376_167 -4289_75981,259,4376_22654,The Square,105764620,0,4376_7778022_100320,4376_168 -4289_75981,270,4376_22655,The Square,105277402,0,4376_7778022_100270,4376_167 -4289_75981,146,4376_22656,The Square,105247402,0,4376_7778022_100270,4376_167 -4289_75981,271,4376_22657,The Square,105237402,0,4376_7778022_100270,4376_167 -4289_75981,115,4376_22658,The Square,105217402,0,4376_7778022_100270,4376_167 -4289_75981,260,4376_22659,The Square,105311836,0,4376_7778022_100370,4376_167 -4289_75963,265,4376_2266,Blackrock,105812542,0,4376_7778022_100150,4376_30 -4289_75981,261,4376_22660,The Square,105321836,0,4376_7778022_100370,4376_167 -4289_75981,262,4376_22661,The Square,105431836,0,4376_7778022_100370,4376_167 -4289_75981,263,4376_22662,The Square,105541836,0,4376_7778022_100370,4376_167 -4289_75981,264,4376_22663,The Square,105651836,0,4376_7778022_100370,4376_167 -4289_75981,265,4376_22664,The Square,105811836,0,4376_7778022_100370,4376_167 -4289_75981,266,4376_22665,The Square,105821836,0,4376_7778022_100370,4376_167 -4289_75981,267,4376_22666,The Square,106051836,0,4376_7778022_100370,4376_167 -4289_75981,268,4376_22667,The Square,106141836,0,4376_7778022_100370,4376_167 -4289_75981,269,4376_22668,The Square,106231836,0,4376_7778022_100370,4376_167 -4289_75981,259,4376_22669,The Square,105764652,0,4376_7778022_100350,4376_167 -4289_75963,266,4376_2267,Blackrock,105822542,0,4376_7778022_100150,4376_30 -4289_75981,260,4376_22670,The Square,105311864,0,4376_7778022_100380,4376_167 -4289_75981,261,4376_22671,The Square,105321864,0,4376_7778022_100380,4376_167 -4289_75981,262,4376_22672,The Square,105431864,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_22673,The Square,105541864,0,4376_7778022_100380,4376_167 -4289_75981,264,4376_22674,The Square,105651864,0,4376_7778022_100380,4376_167 -4289_75981,265,4376_22675,The Square,105811864,0,4376_7778022_100380,4376_167 -4289_75981,266,4376_22676,The Square,105821864,0,4376_7778022_100380,4376_167 -4289_75981,267,4376_22677,The Square,106051864,0,4376_7778022_100380,4376_167 -4289_75981,268,4376_22678,The Square,106141864,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_22679,The Square,106231864,0,4376_7778022_100380,4376_167 -4289_75963,267,4376_2268,Blackrock,106052542,0,4376_7778022_100150,4376_30 -4289_75981,259,4376_22680,The Square,105764674,0,4376_7778022_100280,4376_167 -4289_75981,270,4376_22681,The Square,105277426,0,4376_7778022_100290,4376_168 -4289_75981,146,4376_22682,The Square,105247426,0,4376_7778022_100290,4376_168 -4289_75981,271,4376_22683,The Square,105237426,0,4376_7778022_100290,4376_168 -4289_75981,115,4376_22684,The Square,105217426,0,4376_7778022_100290,4376_168 -4289_75981,260,4376_22685,The Square,105311894,0,4376_7778022_100342,4376_167 -4289_75981,261,4376_22686,The Square,105321894,0,4376_7778022_100342,4376_167 -4289_75981,262,4376_22687,The Square,105431894,0,4376_7778022_100342,4376_167 -4289_75981,263,4376_22688,The Square,105541894,0,4376_7778022_100342,4376_167 -4289_75981,264,4376_22689,The Square,105651894,0,4376_7778022_100342,4376_167 -4289_75963,268,4376_2269,Blackrock,106142542,0,4376_7778022_100150,4376_30 -4289_75981,265,4376_22690,The Square,105811894,0,4376_7778022_100342,4376_167 -4289_75981,266,4376_22691,The Square,105821894,0,4376_7778022_100342,4376_167 -4289_75981,267,4376_22692,The Square,106051894,0,4376_7778022_100342,4376_167 -4289_75981,268,4376_22693,The Square,106141894,0,4376_7778022_100342,4376_167 -4289_75981,269,4376_22694,The Square,106231894,0,4376_7778022_100342,4376_167 -4289_75981,259,4376_22695,The Square,105764704,0,4376_7778022_100310,4376_168 -4289_75981,270,4376_22696,The Square,105277454,0,4376_7778022_100250,4376_167 -4289_75981,146,4376_22697,The Square,105247454,0,4376_7778022_100250,4376_167 -4289_75981,271,4376_22698,The Square,105237454,0,4376_7778022_100250,4376_167 -4289_75981,115,4376_22699,The Square,105217454,0,4376_7778022_100250,4376_167 -4289_75960,259,4376_227,Sutton Station,105764724,0,4376_7778022_103105,4376_2 -4289_75963,269,4376_2270,Blackrock,106232542,0,4376_7778022_100150,4376_30 -4289_75981,260,4376_22700,The Square,105311918,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_22701,The Square,105321918,0,4376_7778022_100350,4376_167 -4289_75981,262,4376_22702,The Square,105431918,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_22703,The Square,105541918,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_22704,The Square,105651918,0,4376_7778022_100350,4376_167 -4289_75981,265,4376_22705,The Square,105811918,0,4376_7778022_100350,4376_167 -4289_75981,266,4376_22706,The Square,105821918,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_22707,The Square,106051918,0,4376_7778022_100350,4376_167 -4289_75981,268,4376_22708,The Square,106141918,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_22709,The Square,106231918,0,4376_7778022_100350,4376_167 -4289_75963,259,4376_2271,Blackrock,105765334,0,4376_7778022_100150,4376_30 -4289_75981,259,4376_22710,The Square,105764722,0,4376_7778022_100340,4376_168 -4289_75981,270,4376_22711,The Square,105277492,0,4376_7778022_100260,4376_167 -4289_75981,146,4376_22712,The Square,105247492,0,4376_7778022_100260,4376_167 -4289_75981,271,4376_22713,The Square,105237492,0,4376_7778022_100260,4376_167 -4289_75981,115,4376_22714,The Square,105217492,0,4376_7778022_100260,4376_167 -4289_75981,260,4376_22715,The Square,105311952,0,4376_7778022_100410,4376_167 -4289_75981,261,4376_22716,The Square,105321952,0,4376_7778022_100410,4376_167 -4289_75981,262,4376_22717,The Square,105431952,0,4376_7778022_100410,4376_167 -4289_75981,263,4376_22718,The Square,105541952,0,4376_7778022_100410,4376_167 -4289_75981,264,4376_22719,The Square,105651952,0,4376_7778022_100410,4376_167 -4289_75963,270,4376_2272,Blackrock,105278006,0,4376_7778022_100122,4376_30 -4289_75981,265,4376_22720,The Square,105811952,0,4376_7778022_100410,4376_167 -4289_75981,266,4376_22721,The Square,105821952,0,4376_7778022_100410,4376_167 -4289_75981,267,4376_22722,The Square,106051952,0,4376_7778022_100410,4376_167 -4289_75981,268,4376_22723,The Square,106141952,0,4376_7778022_100410,4376_167 -4289_75981,269,4376_22724,The Square,106231952,0,4376_7778022_100410,4376_167 -4289_75981,259,4376_22725,The Square,105764756,0,4376_7778022_100330,4376_168 -4289_75981,260,4376_22726,The Square,105311974,0,4376_7778022_100360,4376_167 -4289_75981,261,4376_22727,The Square,105321974,0,4376_7778022_100360,4376_167 -4289_75981,262,4376_22728,The Square,105431974,0,4376_7778022_100360,4376_167 -4289_75981,263,4376_22729,The Square,105541974,0,4376_7778022_100360,4376_167 -4289_75963,146,4376_2273,Blackrock,105248006,0,4376_7778022_100122,4376_30 -4289_75981,264,4376_22730,The Square,105651974,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_22731,The Square,105811974,0,4376_7778022_100360,4376_167 -4289_75981,266,4376_22732,The Square,105821974,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_22733,The Square,106051974,0,4376_7778022_100360,4376_167 -4289_75981,268,4376_22734,The Square,106141974,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_22735,The Square,106231974,0,4376_7778022_100360,4376_167 -4289_75981,259,4376_22736,The Square,105764778,0,4376_7778022_100290,4376_168 -4289_75981,270,4376_22737,The Square,105277516,0,4376_7778022_100300,4376_169 -4289_75981,146,4376_22738,The Square,105247516,0,4376_7778022_100300,4376_169 -4289_75981,271,4376_22739,The Square,105237516,0,4376_7778022_100300,4376_169 -4289_75963,271,4376_2274,Blackrock,105238006,0,4376_7778022_100122,4376_30 -4289_75981,115,4376_22740,The Square,105217516,0,4376_7778022_100300,4376_169 -4289_75981,260,4376_22741,The Square,105312002,0,4376_7778022_100390,4376_167 -4289_75981,261,4376_22742,The Square,105322002,0,4376_7778022_100390,4376_167 -4289_75981,262,4376_22743,The Square,105432002,0,4376_7778022_100390,4376_167 -4289_75981,263,4376_22744,The Square,105542002,0,4376_7778022_100390,4376_167 -4289_75981,264,4376_22745,The Square,105652002,0,4376_7778022_100390,4376_167 -4289_75981,265,4376_22746,The Square,105812002,0,4376_7778022_100390,4376_167 -4289_75981,266,4376_22747,The Square,105822002,0,4376_7778022_100390,4376_167 -4289_75981,267,4376_22748,The Square,106052002,0,4376_7778022_100390,4376_167 -4289_75981,268,4376_22749,The Square,106142002,0,4376_7778022_100390,4376_167 -4289_75963,115,4376_2275,Blackrock,105218006,0,4376_7778022_100122,4376_30 -4289_75981,269,4376_22750,The Square,106232002,0,4376_7778022_100390,4376_167 -4289_75981,259,4376_22751,The Square,105764804,0,4376_7778022_100300,4376_168 -4289_75981,270,4376_22752,The Square,105277544,0,4376_7778022_100280,4376_167 -4289_75981,146,4376_22753,The Square,105247544,0,4376_7778022_100280,4376_167 -4289_75981,271,4376_22754,The Square,105237544,0,4376_7778022_100280,4376_167 -4289_75981,115,4376_22755,The Square,105217544,0,4376_7778022_100280,4376_167 -4289_75981,260,4376_22756,The Square,105312028,0,4376_7778022_100400,4376_167 -4289_75981,261,4376_22757,The Square,105322028,0,4376_7778022_100400,4376_167 -4289_75981,262,4376_22758,The Square,105432028,0,4376_7778022_100400,4376_167 -4289_75981,263,4376_22759,The Square,105542028,0,4376_7778022_100400,4376_167 -4289_75963,260,4376_2276,Blackrock,105312638,0,4376_7778022_100160,4376_30 -4289_75981,264,4376_22760,The Square,105652028,0,4376_7778022_100400,4376_167 -4289_75981,265,4376_22761,The Square,105812028,0,4376_7778022_100400,4376_167 -4289_75981,266,4376_22762,The Square,105822028,0,4376_7778022_100400,4376_167 -4289_75981,267,4376_22763,The Square,106052028,0,4376_7778022_100400,4376_167 -4289_75981,268,4376_22764,The Square,106142028,0,4376_7778022_100400,4376_167 -4289_75981,269,4376_22765,The Square,106232028,0,4376_7778022_100400,4376_167 -4289_75981,259,4376_22766,The Square,105764826,0,4376_7778022_100320,4376_168 -4289_75981,270,4376_22767,The Square,105277584,0,4376_7778022_100270,4376_167 -4289_75981,146,4376_22768,The Square,105247584,0,4376_7778022_100270,4376_167 -4289_75981,271,4376_22769,The Square,105237584,0,4376_7778022_100270,4376_167 -4289_75963,261,4376_2277,Blackrock,105322638,0,4376_7778022_100160,4376_30 -4289_75981,115,4376_22770,The Square,105217584,0,4376_7778022_100270,4376_167 -4289_75981,260,4376_22771,The Square,105312064,0,4376_7778022_100370,4376_167 -4289_75981,261,4376_22772,The Square,105322064,0,4376_7778022_100370,4376_167 -4289_75981,262,4376_22773,The Square,105432064,0,4376_7778022_100370,4376_167 -4289_75981,263,4376_22774,The Square,105542064,0,4376_7778022_100370,4376_167 -4289_75981,264,4376_22775,The Square,105652064,0,4376_7778022_100370,4376_167 -4289_75981,265,4376_22776,The Square,105812064,0,4376_7778022_100370,4376_167 -4289_75981,266,4376_22777,The Square,105822064,0,4376_7778022_100370,4376_167 -4289_75981,267,4376_22778,The Square,106052064,0,4376_7778022_100370,4376_167 -4289_75981,268,4376_22779,The Square,106142064,0,4376_7778022_100370,4376_167 -4289_75963,262,4376_2278,Blackrock,105432638,0,4376_7778022_100160,4376_30 -4289_75981,269,4376_22780,The Square,106232064,0,4376_7778022_100370,4376_167 -4289_75981,259,4376_22781,The Square,105764858,0,4376_7778022_100350,4376_168 -4289_75981,260,4376_22782,The Square,105312096,0,4376_7778022_100380,4376_167 -4289_75981,261,4376_22783,The Square,105322096,0,4376_7778022_100380,4376_167 -4289_75981,262,4376_22784,The Square,105432096,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_22785,The Square,105542096,0,4376_7778022_100380,4376_167 -4289_75981,264,4376_22786,The Square,105652096,0,4376_7778022_100380,4376_167 -4289_75981,265,4376_22787,The Square,105812096,0,4376_7778022_100380,4376_167 -4289_75981,266,4376_22788,The Square,105822096,0,4376_7778022_100380,4376_167 -4289_75981,267,4376_22789,The Square,106052096,0,4376_7778022_100380,4376_167 -4289_75963,263,4376_2279,Blackrock,105542638,0,4376_7778022_100160,4376_30 -4289_75981,268,4376_22790,The Square,106142096,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_22791,The Square,106232096,0,4376_7778022_100380,4376_167 -4289_75981,259,4376_22792,The Square,105764880,0,4376_7778022_100280,4376_168 -4289_75981,270,4376_22793,The Square,105277608,0,4376_7778022_100290,4376_169 -4289_75981,146,4376_22794,The Square,105247608,0,4376_7778022_100290,4376_169 -4289_75981,271,4376_22795,The Square,105237608,0,4376_7778022_100290,4376_169 -4289_75981,115,4376_22796,The Square,105217608,0,4376_7778022_100290,4376_169 -4289_75981,260,4376_22797,The Square,105312140,0,4376_7778022_100342,4376_167 -4289_75981,261,4376_22798,The Square,105322140,0,4376_7778022_100342,4376_167 -4289_75981,262,4376_22799,The Square,105432140,0,4376_7778022_100342,4376_167 -4289_75960,270,4376_228,Sutton Station,105277484,0,4376_7778022_103104,4376_1 -4289_75963,264,4376_2280,Blackrock,105652638,0,4376_7778022_100160,4376_30 -4289_75981,263,4376_22800,The Square,105542140,0,4376_7778022_100342,4376_167 -4289_75981,264,4376_22801,The Square,105652140,0,4376_7778022_100342,4376_167 -4289_75981,265,4376_22802,The Square,105812140,0,4376_7778022_100342,4376_167 -4289_75981,266,4376_22803,The Square,105822140,0,4376_7778022_100342,4376_167 -4289_75981,267,4376_22804,The Square,106052140,0,4376_7778022_100342,4376_167 -4289_75981,268,4376_22805,The Square,106142140,0,4376_7778022_100342,4376_167 -4289_75981,269,4376_22806,The Square,106232140,0,4376_7778022_100342,4376_167 -4289_75981,259,4376_22807,The Square,105764910,0,4376_7778022_100310,4376_168 -4289_75981,270,4376_22808,The Square,105277636,0,4376_7778022_100250,4376_167 -4289_75981,146,4376_22809,The Square,105247636,0,4376_7778022_100250,4376_167 -4289_75963,265,4376_2281,Blackrock,105812638,0,4376_7778022_100160,4376_30 -4289_75981,271,4376_22810,The Square,105237636,0,4376_7778022_100250,4376_167 -4289_75981,115,4376_22811,The Square,105217636,0,4376_7778022_100250,4376_167 -4289_75981,260,4376_22812,The Square,105312162,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_22813,The Square,105322162,0,4376_7778022_100350,4376_167 -4289_75981,262,4376_22814,The Square,105432162,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_22815,The Square,105542162,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_22816,The Square,105652162,0,4376_7778022_100350,4376_167 -4289_75981,265,4376_22817,The Square,105812162,0,4376_7778022_100350,4376_167 -4289_75981,266,4376_22818,The Square,105822162,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_22819,The Square,106052162,0,4376_7778022_100350,4376_167 -4289_75963,266,4376_2282,Blackrock,105822638,0,4376_7778022_100160,4376_30 -4289_75981,268,4376_22820,The Square,106142162,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_22821,The Square,106232162,0,4376_7778022_100350,4376_167 -4289_75981,259,4376_22822,The Square,105764928,0,4376_7778022_100340,4376_168 -4289_75981,270,4376_22823,The Square,105277672,0,4376_7778022_100310,4376_167 -4289_75981,146,4376_22824,The Square,105247672,0,4376_7778022_100310,4376_167 -4289_75981,271,4376_22825,The Square,105237672,0,4376_7778022_100310,4376_167 -4289_75981,115,4376_22826,The Square,105217672,0,4376_7778022_100310,4376_167 -4289_75981,260,4376_22827,The Square,105312196,0,4376_7778022_100410,4376_167 -4289_75981,261,4376_22828,The Square,105322196,0,4376_7778022_100410,4376_167 -4289_75981,262,4376_22829,The Square,105432196,0,4376_7778022_100410,4376_167 -4289_75963,267,4376_2283,Blackrock,106052638,0,4376_7778022_100160,4376_30 -4289_75981,263,4376_22830,The Square,105542196,0,4376_7778022_100410,4376_167 -4289_75981,264,4376_22831,The Square,105652196,0,4376_7778022_100410,4376_167 -4289_75981,265,4376_22832,The Square,105812196,0,4376_7778022_100410,4376_167 -4289_75981,266,4376_22833,The Square,105822196,0,4376_7778022_100410,4376_167 -4289_75981,267,4376_22834,The Square,106052196,0,4376_7778022_100410,4376_167 -4289_75981,268,4376_22835,The Square,106142196,0,4376_7778022_100410,4376_167 -4289_75981,269,4376_22836,The Square,106232196,0,4376_7778022_100410,4376_167 -4289_75981,259,4376_22837,The Square,105764960,0,4376_7778022_100330,4376_168 -4289_75981,260,4376_22838,The Square,105312226,0,4376_7778022_100360,4376_167 -4289_75981,261,4376_22839,The Square,105322226,0,4376_7778022_100360,4376_167 -4289_75963,268,4376_2284,Blackrock,106142638,0,4376_7778022_100160,4376_30 -4289_75981,262,4376_22840,The Square,105432226,0,4376_7778022_100360,4376_167 -4289_75981,263,4376_22841,The Square,105542226,0,4376_7778022_100360,4376_167 -4289_75981,264,4376_22842,The Square,105652226,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_22843,The Square,105812226,0,4376_7778022_100360,4376_167 -4289_75981,266,4376_22844,The Square,105822226,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_22845,The Square,106052226,0,4376_7778022_100360,4376_167 -4289_75981,268,4376_22846,The Square,106142226,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_22847,The Square,106232226,0,4376_7778022_100360,4376_167 -4289_75981,259,4376_22848,The Square,105764984,0,4376_7778022_100290,4376_168 -4289_75981,270,4376_22849,The Square,105277700,0,4376_7778022_100300,4376_169 -4289_75963,269,4376_2285,Blackrock,106232638,0,4376_7778022_100160,4376_30 -4289_75981,146,4376_22850,The Square,105247700,0,4376_7778022_100300,4376_169 -4289_75981,271,4376_22851,The Square,105237700,0,4376_7778022_100300,4376_169 -4289_75981,115,4376_22852,The Square,105217700,0,4376_7778022_100300,4376_169 -4289_75981,260,4376_22853,The Square,105312262,0,4376_7778022_100390,4376_167 -4289_75981,261,4376_22854,The Square,105322262,0,4376_7778022_100390,4376_167 -4289_75981,262,4376_22855,The Square,105432262,0,4376_7778022_100390,4376_167 -4289_75981,263,4376_22856,The Square,105542262,0,4376_7778022_100390,4376_167 -4289_75981,264,4376_22857,The Square,105652262,0,4376_7778022_100390,4376_167 -4289_75981,265,4376_22858,The Square,105812262,0,4376_7778022_100390,4376_167 -4289_75981,266,4376_22859,The Square,105822262,0,4376_7778022_100390,4376_167 -4289_75963,259,4376_2286,Blackrock,105765422,0,4376_7778022_100150,4376_30 -4289_75981,267,4376_22860,The Square,106052262,0,4376_7778022_100390,4376_167 -4289_75981,268,4376_22861,The Square,106142262,0,4376_7778022_100390,4376_167 -4289_75981,269,4376_22862,The Square,106232262,0,4376_7778022_100390,4376_167 -4289_75981,259,4376_22863,The Square,105765012,0,4376_7778022_100300,4376_168 -4289_75981,270,4376_22864,The Square,105277728,0,4376_7778022_100280,4376_167 -4289_75981,146,4376_22865,The Square,105247728,0,4376_7778022_100280,4376_167 -4289_75981,271,4376_22866,The Square,105237728,0,4376_7778022_100280,4376_167 -4289_75981,115,4376_22867,The Square,105217728,0,4376_7778022_100280,4376_167 -4289_75981,260,4376_22868,The Square,105312288,0,4376_7778022_100400,4376_167 -4289_75981,261,4376_22869,The Square,105322288,0,4376_7778022_100400,4376_167 -4289_75963,260,4376_2287,Blackrock,105312732,0,4376_7778022_100150,4376_30 -4289_75981,262,4376_22870,The Square,105432288,0,4376_7778022_100400,4376_167 -4289_75981,263,4376_22871,The Square,105542288,0,4376_7778022_100400,4376_167 -4289_75981,264,4376_22872,The Square,105652288,0,4376_7778022_100400,4376_167 -4289_75981,265,4376_22873,The Square,105812288,0,4376_7778022_100400,4376_167 -4289_75981,266,4376_22874,The Square,105822288,0,4376_7778022_100400,4376_167 -4289_75981,267,4376_22875,The Square,106052288,0,4376_7778022_100400,4376_167 -4289_75981,268,4376_22876,The Square,106142288,0,4376_7778022_100400,4376_167 -4289_75981,269,4376_22877,The Square,106232288,0,4376_7778022_100400,4376_167 -4289_75981,259,4376_22878,The Square,105765028,0,4376_7778022_100320,4376_168 -4289_75981,270,4376_22879,The Square,105277764,0,4376_7778022_100270,4376_167 -4289_75963,261,4376_2288,Blackrock,105322732,0,4376_7778022_100150,4376_30 -4289_75981,146,4376_22880,The Square,105247764,0,4376_7778022_100270,4376_167 -4289_75981,271,4376_22881,The Square,105237764,0,4376_7778022_100270,4376_167 -4289_75981,115,4376_22882,The Square,105217764,0,4376_7778022_100270,4376_167 -4289_75981,260,4376_22883,The Square,105312320,0,4376_7778022_100370,4376_167 -4289_75981,261,4376_22884,The Square,105322320,0,4376_7778022_100370,4376_167 -4289_75981,262,4376_22885,The Square,105432320,0,4376_7778022_100370,4376_167 -4289_75981,263,4376_22886,The Square,105542320,0,4376_7778022_100370,4376_167 -4289_75981,264,4376_22887,The Square,105652320,0,4376_7778022_100370,4376_167 -4289_75981,265,4376_22888,The Square,105812320,0,4376_7778022_100370,4376_167 -4289_75981,266,4376_22889,The Square,105822320,0,4376_7778022_100370,4376_167 -4289_75963,262,4376_2289,Blackrock,105432732,0,4376_7778022_100150,4376_30 -4289_75981,267,4376_22890,The Square,106052320,0,4376_7778022_100370,4376_167 -4289_75981,268,4376_22891,The Square,106142320,0,4376_7778022_100370,4376_167 -4289_75981,269,4376_22892,The Square,106232320,0,4376_7778022_100370,4376_167 -4289_75981,259,4376_22893,The Square,105765062,0,4376_7778022_100350,4376_168 -4289_75981,260,4376_22894,The Square,105312352,0,4376_7778022_100380,4376_167 -4289_75981,261,4376_22895,The Square,105322352,0,4376_7778022_100380,4376_167 -4289_75981,262,4376_22896,The Square,105432352,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_22897,The Square,105542352,0,4376_7778022_100380,4376_167 -4289_75981,264,4376_22898,The Square,105652352,0,4376_7778022_100380,4376_167 -4289_75981,265,4376_22899,The Square,105812352,0,4376_7778022_100380,4376_167 -4289_75960,146,4376_229,Sutton Station,105247484,0,4376_7778022_103104,4376_1 -4289_75963,263,4376_2290,Blackrock,105542732,0,4376_7778022_100150,4376_30 -4289_75981,266,4376_22900,The Square,105822352,0,4376_7778022_100380,4376_167 -4289_75981,267,4376_22901,The Square,106052352,0,4376_7778022_100380,4376_167 -4289_75981,268,4376_22902,The Square,106142352,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_22903,The Square,106232352,0,4376_7778022_100380,4376_167 -4289_75981,259,4376_22904,The Square,105765084,0,4376_7778022_100280,4376_168 -4289_75981,270,4376_22905,The Square,105277786,0,4376_7778022_100290,4376_169 -4289_75981,146,4376_22906,The Square,105247786,0,4376_7778022_100290,4376_169 -4289_75981,271,4376_22907,The Square,105237786,0,4376_7778022_100290,4376_169 -4289_75981,115,4376_22908,The Square,105217786,0,4376_7778022_100290,4376_169 -4289_75981,260,4376_22909,The Square,105312378,0,4376_7778022_100342,4376_167 -4289_75963,264,4376_2291,Blackrock,105652732,0,4376_7778022_100150,4376_30 -4289_75981,261,4376_22910,The Square,105322378,0,4376_7778022_100342,4376_167 -4289_75981,262,4376_22911,The Square,105432378,0,4376_7778022_100342,4376_167 -4289_75981,263,4376_22912,The Square,105542378,0,4376_7778022_100342,4376_167 -4289_75981,264,4376_22913,The Square,105652378,0,4376_7778022_100342,4376_167 -4289_75981,265,4376_22914,The Square,105812378,0,4376_7778022_100342,4376_167 -4289_75981,266,4376_22915,The Square,105822378,0,4376_7778022_100342,4376_167 -4289_75981,267,4376_22916,The Square,106052378,0,4376_7778022_100342,4376_167 -4289_75981,268,4376_22917,The Square,106142378,0,4376_7778022_100342,4376_167 -4289_75981,269,4376_22918,The Square,106232378,0,4376_7778022_100342,4376_167 -4289_75981,259,4376_22919,The Square,105765114,0,4376_7778022_100310,4376_168 -4289_75963,265,4376_2292,Blackrock,105812732,0,4376_7778022_100150,4376_30 -4289_75981,270,4376_22920,The Square,105277818,0,4376_7778022_100250,4376_167 -4289_75981,146,4376_22921,The Square,105247818,0,4376_7778022_100250,4376_167 -4289_75981,271,4376_22922,The Square,105237818,0,4376_7778022_100250,4376_167 -4289_75981,115,4376_22923,The Square,105217818,0,4376_7778022_100250,4376_167 -4289_75981,260,4376_22924,The Square,105312408,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_22925,The Square,105322408,0,4376_7778022_100350,4376_167 -4289_75981,262,4376_22926,The Square,105432408,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_22927,The Square,105542408,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_22928,The Square,105652408,0,4376_7778022_100350,4376_167 -4289_75981,265,4376_22929,The Square,105812408,0,4376_7778022_100350,4376_167 -4289_75963,266,4376_2293,Blackrock,105822732,0,4376_7778022_100150,4376_30 -4289_75981,266,4376_22930,The Square,105822408,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_22931,The Square,106052408,0,4376_7778022_100350,4376_167 -4289_75981,268,4376_22932,The Square,106142408,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_22933,The Square,106232408,0,4376_7778022_100350,4376_167 -4289_75981,259,4376_22934,The Square,105765132,0,4376_7778022_100340,4376_168 -4289_75981,270,4376_22935,The Square,105277852,0,4376_7778022_100300,4376_167 -4289_75981,146,4376_22936,The Square,105247852,0,4376_7778022_100300,4376_167 -4289_75981,271,4376_22937,The Square,105237852,0,4376_7778022_100300,4376_167 -4289_75981,115,4376_22938,The Square,105217852,0,4376_7778022_100300,4376_167 -4289_75981,260,4376_22939,The Square,105312436,0,4376_7778022_100410,4376_167 -4289_75963,267,4376_2294,Blackrock,106052732,0,4376_7778022_100150,4376_30 -4289_75981,261,4376_22940,The Square,105322436,0,4376_7778022_100410,4376_167 -4289_75981,262,4376_22941,The Square,105432436,0,4376_7778022_100410,4376_167 -4289_75981,263,4376_22942,The Square,105542436,0,4376_7778022_100410,4376_167 -4289_75981,264,4376_22943,The Square,105652436,0,4376_7778022_100410,4376_167 -4289_75981,265,4376_22944,The Square,105812436,0,4376_7778022_100410,4376_167 -4289_75981,266,4376_22945,The Square,105822436,0,4376_7778022_100410,4376_167 -4289_75981,267,4376_22946,The Square,106052436,0,4376_7778022_100410,4376_167 -4289_75981,268,4376_22947,The Square,106142436,0,4376_7778022_100410,4376_167 -4289_75981,269,4376_22948,The Square,106232436,0,4376_7778022_100410,4376_167 -4289_75981,259,4376_22949,The Square,105765164,0,4376_7778022_100330,4376_168 -4289_75963,268,4376_2295,Blackrock,106142732,0,4376_7778022_100150,4376_30 -4289_75981,260,4376_22950,The Square,105312464,0,4376_7778022_100360,4376_167 -4289_75981,261,4376_22951,The Square,105322464,0,4376_7778022_100360,4376_167 -4289_75981,262,4376_22952,The Square,105432464,0,4376_7778022_100360,4376_167 -4289_75981,263,4376_22953,The Square,105542464,0,4376_7778022_100360,4376_167 -4289_75981,264,4376_22954,The Square,105652464,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_22955,The Square,105812464,0,4376_7778022_100360,4376_167 -4289_75981,266,4376_22956,The Square,105822464,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_22957,The Square,106052464,0,4376_7778022_100360,4376_167 -4289_75981,268,4376_22958,The Square,106142464,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_22959,The Square,106232464,0,4376_7778022_100360,4376_167 -4289_75963,269,4376_2296,Blackrock,106232732,0,4376_7778022_100150,4376_30 -4289_75981,259,4376_22960,The Square,105765182,0,4376_7778022_100290,4376_168 -4289_75981,270,4376_22961,The Square,105277874,0,4376_7778022_100310,4376_169 -4289_75981,146,4376_22962,The Square,105247874,0,4376_7778022_100310,4376_169 -4289_75981,271,4376_22963,The Square,105237874,0,4376_7778022_100310,4376_169 -4289_75981,115,4376_22964,The Square,105217874,0,4376_7778022_100310,4376_169 -4289_75981,260,4376_22965,The Square,105312496,0,4376_7778022_100390,4376_167 -4289_75981,261,4376_22966,The Square,105322496,0,4376_7778022_100390,4376_167 -4289_75981,262,4376_22967,The Square,105432496,0,4376_7778022_100390,4376_167 -4289_75981,263,4376_22968,The Square,105542496,0,4376_7778022_100390,4376_167 -4289_75981,264,4376_22969,The Square,105652496,0,4376_7778022_100390,4376_167 -4289_75963,260,4376_2297,Ticknock,105311217,1,4376_7778022_100150,4376_32 -4289_75981,265,4376_22970,The Square,105812496,0,4376_7778022_100390,4376_167 -4289_75981,266,4376_22971,The Square,105822496,0,4376_7778022_100390,4376_167 -4289_75981,267,4376_22972,The Square,106052496,0,4376_7778022_100390,4376_167 -4289_75981,268,4376_22973,The Square,106142496,0,4376_7778022_100390,4376_167 -4289_75981,269,4376_22974,The Square,106232496,0,4376_7778022_100390,4376_167 -4289_75981,259,4376_22975,The Square,105765216,0,4376_7778022_100300,4376_168 -4289_75981,270,4376_22976,The Square,105277908,0,4376_7778022_100270,4376_167 -4289_75981,146,4376_22977,The Square,105247908,0,4376_7778022_100270,4376_167 -4289_75981,271,4376_22978,The Square,105237908,0,4376_7778022_100270,4376_167 -4289_75981,115,4376_22979,The Square,105217908,0,4376_7778022_100270,4376_167 -4289_75963,261,4376_2298,Ticknock,105321217,1,4376_7778022_100150,4376_32 -4289_75981,260,4376_22980,The Square,105312522,0,4376_7778022_100400,4376_167 -4289_75981,261,4376_22981,The Square,105322522,0,4376_7778022_100400,4376_167 -4289_75981,262,4376_22982,The Square,105432522,0,4376_7778022_100400,4376_167 -4289_75981,263,4376_22983,The Square,105542522,0,4376_7778022_100400,4376_167 -4289_75981,264,4376_22984,The Square,105652522,0,4376_7778022_100400,4376_167 -4289_75981,265,4376_22985,The Square,105812522,0,4376_7778022_100400,4376_167 -4289_75981,266,4376_22986,The Square,105822522,0,4376_7778022_100400,4376_167 -4289_75981,267,4376_22987,The Square,106052522,0,4376_7778022_100400,4376_167 -4289_75981,268,4376_22988,The Square,106142522,0,4376_7778022_100400,4376_167 -4289_75981,269,4376_22989,The Square,106232522,0,4376_7778022_100400,4376_167 -4289_75963,262,4376_2299,Ticknock,105431217,1,4376_7778022_100150,4376_32 -4289_75981,259,4376_22990,The Square,105765238,0,4376_7778022_100320,4376_167 -4289_75981,270,4376_22991,The Square,105277940,0,4376_7778022_100290,4376_167 -4289_75981,146,4376_22992,The Square,105247940,0,4376_7778022_100290,4376_167 -4289_75981,271,4376_22993,The Square,105237940,0,4376_7778022_100290,4376_167 -4289_75981,115,4376_22994,The Square,105217940,0,4376_7778022_100290,4376_167 -4289_75981,260,4376_22995,The Square,105312546,0,4376_7778022_100370,4376_167 -4289_75981,261,4376_22996,The Square,105322546,0,4376_7778022_100370,4376_167 -4289_75981,262,4376_22997,The Square,105432546,0,4376_7778022_100370,4376_167 -4289_75981,263,4376_22998,The Square,105542546,0,4376_7778022_100370,4376_167 -4289_75981,264,4376_22999,The Square,105652546,0,4376_7778022_100370,4376_167 -4289_75960,260,4376_23,Sutton Station,105311106,0,4376_7778022_103108,4376_1 -4289_75960,271,4376_230,Sutton Station,105237484,0,4376_7778022_103104,4376_1 -4289_75963,263,4376_2300,Ticknock,105541217,1,4376_7778022_100150,4376_32 -4289_75981,265,4376_23000,The Square,105812546,0,4376_7778022_100370,4376_167 -4289_75981,266,4376_23001,The Square,105822546,0,4376_7778022_100370,4376_167 -4289_75981,267,4376_23002,The Square,106052546,0,4376_7778022_100370,4376_167 -4289_75981,268,4376_23003,The Square,106142546,0,4376_7778022_100370,4376_167 -4289_75981,269,4376_23004,The Square,106232546,0,4376_7778022_100370,4376_167 -4289_75981,259,4376_23005,The Square,105765264,0,4376_7778022_100280,4376_167 -4289_75981,260,4376_23006,The Square,105312570,0,4376_7778022_100380,4376_167 -4289_75981,261,4376_23007,The Square,105322570,0,4376_7778022_100380,4376_167 -4289_75981,262,4376_23008,The Square,105432570,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_23009,The Square,105542570,0,4376_7778022_100380,4376_167 -4289_75963,264,4376_2301,Ticknock,105651217,1,4376_7778022_100150,4376_32 -4289_75981,264,4376_23010,The Square,105652570,0,4376_7778022_100380,4376_167 -4289_75981,265,4376_23011,The Square,105812570,0,4376_7778022_100380,4376_167 -4289_75981,266,4376_23012,The Square,105822570,0,4376_7778022_100380,4376_167 -4289_75981,267,4376_23013,The Square,106052570,0,4376_7778022_100380,4376_167 -4289_75981,268,4376_23014,The Square,106142570,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_23015,The Square,106232570,0,4376_7778022_100380,4376_167 -4289_75981,259,4376_23016,The Square,105765284,0,4376_7778022_100340,4376_168 -4289_75981,270,4376_23017,The Square,105277958,0,4376_7778022_100300,4376_169 -4289_75981,146,4376_23018,The Square,105247958,0,4376_7778022_100300,4376_169 -4289_75981,271,4376_23019,The Square,105237958,0,4376_7778022_100300,4376_169 -4289_75963,265,4376_2302,Ticknock,105811217,1,4376_7778022_100150,4376_32 -4289_75981,115,4376_23020,The Square,105217958,0,4376_7778022_100300,4376_169 -4289_75981,260,4376_23021,The Square,105312606,0,4376_7778022_100342,4376_167 -4289_75981,261,4376_23022,The Square,105322606,0,4376_7778022_100342,4376_167 -4289_75981,262,4376_23023,The Square,105432606,0,4376_7778022_100342,4376_167 -4289_75981,263,4376_23024,The Square,105542606,0,4376_7778022_100342,4376_167 -4289_75981,264,4376_23025,The Square,105652606,0,4376_7778022_100342,4376_167 -4289_75981,265,4376_23026,The Square,105812606,0,4376_7778022_100342,4376_167 -4289_75981,266,4376_23027,The Square,105822606,0,4376_7778022_100342,4376_167 -4289_75981,267,4376_23028,The Square,106052606,0,4376_7778022_100342,4376_167 -4289_75981,268,4376_23029,The Square,106142606,0,4376_7778022_100342,4376_167 -4289_75963,266,4376_2303,Ticknock,105821217,1,4376_7778022_100150,4376_32 -4289_75981,269,4376_23030,The Square,106232606,0,4376_7778022_100342,4376_167 -4289_75981,259,4376_23031,The Square,105765320,0,4376_7778022_100330,4376_167 -4289_75981,260,4376_23032,The Square,105312622,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_23033,The Square,105322622,0,4376_7778022_100350,4376_167 -4289_75981,262,4376_23034,The Square,105432622,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_23035,The Square,105542622,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_23036,The Square,105652622,0,4376_7778022_100350,4376_167 -4289_75981,265,4376_23037,The Square,105812622,0,4376_7778022_100350,4376_167 -4289_75981,266,4376_23038,The Square,105822622,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_23039,The Square,106052622,0,4376_7778022_100350,4376_167 -4289_75963,267,4376_2304,Ticknock,106051217,1,4376_7778022_100150,4376_32 -4289_75981,268,4376_23040,The Square,106142622,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_23041,The Square,106232622,0,4376_7778022_100350,4376_167 -4289_75981,270,4376_23042,The Square,105278008,0,4376_7778022_100310,4376_168 -4289_75981,146,4376_23043,The Square,105248008,0,4376_7778022_100310,4376_168 -4289_75981,271,4376_23044,The Square,105238008,0,4376_7778022_100310,4376_168 -4289_75981,115,4376_23045,The Square,105218008,0,4376_7778022_100310,4376_168 -4289_75981,259,4376_23046,The Square,105765350,0,4376_7778022_100300,4376_167 -4289_75981,260,4376_23047,The Square,105312654,0,4376_7778022_100410,4376_167 -4289_75981,261,4376_23048,The Square,105322654,0,4376_7778022_100410,4376_167 -4289_75981,262,4376_23049,The Square,105432654,0,4376_7778022_100410,4376_167 -4289_75963,268,4376_2305,Ticknock,106141217,1,4376_7778022_100150,4376_32 -4289_75981,263,4376_23050,The Square,105542654,0,4376_7778022_100410,4376_167 -4289_75981,264,4376_23051,The Square,105652654,0,4376_7778022_100410,4376_167 -4289_75981,265,4376_23052,The Square,105812654,0,4376_7778022_100410,4376_167 -4289_75981,266,4376_23053,The Square,105822654,0,4376_7778022_100410,4376_167 -4289_75981,267,4376_23054,The Square,106052654,0,4376_7778022_100410,4376_167 -4289_75981,268,4376_23055,The Square,106142654,0,4376_7778022_100410,4376_167 -4289_75981,269,4376_23056,The Square,106232654,0,4376_7778022_100410,4376_167 -4289_75981,260,4376_23057,The Square,105312668,0,4376_7778022_100360,4376_167 -4289_75981,261,4376_23058,The Square,105322668,0,4376_7778022_100360,4376_167 -4289_75981,262,4376_23059,The Square,105432668,0,4376_7778022_100360,4376_167 -4289_75963,269,4376_2306,Ticknock,106231217,1,4376_7778022_100150,4376_32 -4289_75981,263,4376_23060,The Square,105542668,0,4376_7778022_100360,4376_167 -4289_75981,264,4376_23061,The Square,105652668,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_23062,The Square,105812668,0,4376_7778022_100360,4376_167 -4289_75981,266,4376_23063,The Square,105822668,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_23064,The Square,106052668,0,4376_7778022_100360,4376_167 -4289_75981,268,4376_23065,The Square,106142668,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_23066,The Square,106232668,0,4376_7778022_100360,4376_167 -4289_75981,259,4376_23067,The Square,105765374,0,4376_7778022_100320,4376_167 -4289_75981,270,4376_23068,The Square,105278044,0,4376_7778022_100270,4376_168 -4289_75981,146,4376_23069,The Square,105248044,0,4376_7778022_100270,4376_168 -4289_75963,260,4376_2307,Ticknock,105311369,1,4376_7778022_100160,4376_32 -4289_75981,271,4376_23070,The Square,105238044,0,4376_7778022_100270,4376_168 -4289_75981,115,4376_23071,The Square,105218044,0,4376_7778022_100270,4376_168 -4289_75981,260,4376_23072,The Square,105312702,0,4376_7778022_100370,4376_167 -4289_75981,261,4376_23073,The Square,105322702,0,4376_7778022_100370,4376_167 -4289_75981,262,4376_23074,The Square,105432702,0,4376_7778022_100370,4376_167 -4289_75981,263,4376_23075,The Square,105542702,0,4376_7778022_100370,4376_167 -4289_75981,264,4376_23076,The Square,105652702,0,4376_7778022_100370,4376_167 -4289_75981,265,4376_23077,The Square,105812702,0,4376_7778022_100370,4376_167 -4289_75981,266,4376_23078,The Square,105822702,0,4376_7778022_100370,4376_167 -4289_75981,267,4376_23079,The Square,106052702,0,4376_7778022_100370,4376_167 -4289_75963,261,4376_2308,Ticknock,105321369,1,4376_7778022_100160,4376_32 -4289_75981,268,4376_23080,The Square,106142702,0,4376_7778022_100370,4376_167 -4289_75981,269,4376_23081,The Square,106232702,0,4376_7778022_100370,4376_167 -4289_75981,259,4376_23082,The Square,105765408,0,4376_7778022_100340,4376_167 -4289_75981,260,4376_23083,The Square,105312720,0,4376_7778022_100380,4376_167 -4289_75981,261,4376_23084,The Square,105322720,0,4376_7778022_100380,4376_167 -4289_75981,262,4376_23085,The Square,105432720,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_23086,The Square,105542720,0,4376_7778022_100380,4376_167 -4289_75981,264,4376_23087,The Square,105652720,0,4376_7778022_100380,4376_167 -4289_75981,265,4376_23088,The Square,105812720,0,4376_7778022_100380,4376_167 -4289_75981,266,4376_23089,The Square,105822720,0,4376_7778022_100380,4376_167 -4289_75963,262,4376_2309,Ticknock,105431369,1,4376_7778022_100160,4376_32 -4289_75981,267,4376_23090,The Square,106052720,0,4376_7778022_100380,4376_167 -4289_75981,268,4376_23091,The Square,106142720,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_23092,The Square,106232720,0,4376_7778022_100380,4376_167 -4289_75981,270,4376_23093,The Square,105278086,0,4376_7778022_100290,4376_168 -4289_75981,146,4376_23094,The Square,105248086,0,4376_7778022_100290,4376_168 -4289_75981,271,4376_23095,The Square,105238086,0,4376_7778022_100290,4376_168 -4289_75981,115,4376_23096,The Square,105218086,0,4376_7778022_100290,4376_168 -4289_75981,259,4376_23097,The Square,105765438,0,4376_7778022_100330,4376_167 -4289_75981,260,4376_23098,The Square,105312748,0,4376_7778022_100342,4376_167 -4289_75981,261,4376_23099,The Square,105322748,0,4376_7778022_100342,4376_167 -4289_75960,115,4376_231,Sutton Station,105217484,0,4376_7778022_103104,4376_1 -4289_75963,263,4376_2310,Ticknock,105541369,1,4376_7778022_100160,4376_32 -4289_75981,262,4376_23100,The Square,105432748,0,4376_7778022_100342,4376_167 -4289_75981,263,4376_23101,The Square,105542748,0,4376_7778022_100342,4376_167 -4289_75981,264,4376_23102,The Square,105652748,0,4376_7778022_100342,4376_167 -4289_75981,265,4376_23103,The Square,105812748,0,4376_7778022_100342,4376_167 -4289_75981,266,4376_23104,The Square,105822748,0,4376_7778022_100342,4376_167 -4289_75981,267,4376_23105,The Square,106052748,0,4376_7778022_100342,4376_167 -4289_75981,268,4376_23106,The Square,106142748,0,4376_7778022_100342,4376_167 -4289_75981,269,4376_23107,The Square,106232748,0,4376_7778022_100342,4376_167 -4289_75981,260,4376_23108,The Square,105312766,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_23109,The Square,105322766,0,4376_7778022_100350,4376_167 -4289_75963,264,4376_2311,Ticknock,105651369,1,4376_7778022_100160,4376_32 -4289_75981,262,4376_23110,The Square,105432766,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_23111,The Square,105542766,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_23112,The Square,105652766,0,4376_7778022_100350,4376_167 -4289_75981,265,4376_23113,The Square,105812766,0,4376_7778022_100350,4376_167 -4289_75981,266,4376_23114,The Square,105822766,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_23115,The Square,106052766,0,4376_7778022_100350,4376_167 -4289_75981,268,4376_23116,The Square,106142766,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_23117,The Square,106232766,0,4376_7778022_100350,4376_167 -4289_75981,259,4376_23118,The Square,105765462,0,4376_7778022_100300,4376_168 -4289_75981,270,4376_23119,The Square,105278122,0,4376_7778022_100250,4376_169 -4289_75963,265,4376_2312,Ticknock,105811369,1,4376_7778022_100160,4376_32 -4289_75981,146,4376_23120,The Square,105248122,0,4376_7778022_100250,4376_169 -4289_75981,271,4376_23121,The Square,105238122,0,4376_7778022_100250,4376_169 -4289_75981,115,4376_23122,The Square,105218122,0,4376_7778022_100250,4376_169 -4289_75981,260,4376_23123,The Square,105312802,0,4376_7778022_100410,4376_167 -4289_75981,261,4376_23124,The Square,105322802,0,4376_7778022_100410,4376_167 -4289_75981,262,4376_23125,The Square,105432802,0,4376_7778022_100410,4376_167 -4289_75981,263,4376_23126,The Square,105542802,0,4376_7778022_100410,4376_167 -4289_75981,264,4376_23127,The Square,105652802,0,4376_7778022_100410,4376_167 -4289_75981,265,4376_23128,The Square,105812802,0,4376_7778022_100410,4376_167 -4289_75981,266,4376_23129,The Square,105822802,0,4376_7778022_100410,4376_167 -4289_75963,266,4376_2313,Ticknock,105821369,1,4376_7778022_100160,4376_32 -4289_75981,267,4376_23130,The Square,106052802,0,4376_7778022_100410,4376_167 -4289_75981,268,4376_23131,The Square,106142802,0,4376_7778022_100410,4376_167 -4289_75981,269,4376_23132,The Square,106232802,0,4376_7778022_100410,4376_167 -4289_75981,259,4376_23133,The Square,105765494,0,4376_7778022_100320,4376_167 -4289_75981,260,4376_23134,The Square,105312816,0,4376_7778022_100360,4376_167 -4289_75981,261,4376_23135,The Square,105322816,0,4376_7778022_100360,4376_167 -4289_75981,262,4376_23136,The Square,105432816,0,4376_7778022_100360,4376_167 -4289_75981,263,4376_23137,The Square,105542816,0,4376_7778022_100360,4376_167 -4289_75981,264,4376_23138,The Square,105652816,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_23139,The Square,105812816,0,4376_7778022_100360,4376_167 -4289_75963,267,4376_2314,Ticknock,106051369,1,4376_7778022_100160,4376_32 -4289_75981,266,4376_23140,The Square,105822816,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_23141,The Square,106052816,0,4376_7778022_100360,4376_167 -4289_75981,268,4376_23142,The Square,106142816,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_23143,The Square,106232816,0,4376_7778022_100360,4376_167 -4289_75981,270,4376_23144,The Square,105278164,0,4376_7778022_100342,4376_168 -4289_75981,146,4376_23145,The Square,105248164,0,4376_7778022_100342,4376_168 -4289_75981,271,4376_23146,The Square,105238164,0,4376_7778022_100342,4376_168 -4289_75981,115,4376_23147,The Square,105218164,0,4376_7778022_100342,4376_168 -4289_75981,259,4376_23148,The Square,105765520,0,4376_7778022_100340,4376_167 -4289_75981,260,4376_23149,The Square,105312840,0,4376_7778022_100370,4376_167 -4289_75963,268,4376_2315,Ticknock,106141369,1,4376_7778022_100160,4376_32 -4289_75981,261,4376_23150,The Square,105322840,0,4376_7778022_100370,4376_167 -4289_75981,262,4376_23151,The Square,105432840,0,4376_7778022_100370,4376_167 -4289_75981,263,4376_23152,The Square,105542840,0,4376_7778022_100370,4376_167 -4289_75981,264,4376_23153,The Square,105652840,0,4376_7778022_100370,4376_167 -4289_75981,265,4376_23154,The Square,105812840,0,4376_7778022_100370,4376_167 -4289_75981,266,4376_23155,The Square,105822840,0,4376_7778022_100370,4376_167 -4289_75981,267,4376_23156,The Square,106052840,0,4376_7778022_100370,4376_167 -4289_75981,268,4376_23157,The Square,106142840,0,4376_7778022_100370,4376_167 -4289_75981,269,4376_23158,The Square,106232840,0,4376_7778022_100370,4376_167 -4289_75981,260,4376_23159,The Square,105312860,0,4376_7778022_100380,4376_167 -4289_75963,269,4376_2316,Ticknock,106231369,1,4376_7778022_100160,4376_32 -4289_75981,261,4376_23160,The Square,105322860,0,4376_7778022_100380,4376_167 -4289_75981,262,4376_23161,The Square,105432860,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_23162,The Square,105542860,0,4376_7778022_100380,4376_167 -4289_75981,264,4376_23163,The Square,105652860,0,4376_7778022_100380,4376_167 -4289_75981,265,4376_23164,The Square,105812860,0,4376_7778022_100380,4376_167 -4289_75981,266,4376_23165,The Square,105822860,0,4376_7778022_100380,4376_167 -4289_75981,267,4376_23166,The Square,106052860,0,4376_7778022_100380,4376_167 -4289_75981,268,4376_23167,The Square,106142860,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_23168,The Square,106232860,0,4376_7778022_100380,4376_167 -4289_75981,259,4376_23169,The Square,105765546,0,4376_7778022_100330,4376_167 -4289_75963,260,4376_2317,Ticknock,105311485,1,4376_7778022_100150,4376_32 -4289_75981,270,4376_23170,The Square,105278198,0,4376_7778022_100320,4376_168 -4289_75981,146,4376_23171,The Square,105248198,0,4376_7778022_100320,4376_168 -4289_75981,271,4376_23172,The Square,105238198,0,4376_7778022_100320,4376_168 -4289_75981,115,4376_23173,The Square,105218198,0,4376_7778022_100320,4376_168 -4289_75981,260,4376_23174,The Square,105312890,0,4376_7778022_100342,4376_167 -4289_75981,261,4376_23175,The Square,105322890,0,4376_7778022_100342,4376_167 -4289_75981,262,4376_23176,The Square,105432890,0,4376_7778022_100342,4376_167 -4289_75981,263,4376_23177,The Square,105542890,0,4376_7778022_100342,4376_167 -4289_75981,264,4376_23178,The Square,105652890,0,4376_7778022_100342,4376_167 -4289_75981,265,4376_23179,The Square,105812890,0,4376_7778022_100342,4376_167 -4289_75963,261,4376_2318,Ticknock,105321485,1,4376_7778022_100150,4376_32 -4289_75981,266,4376_23180,The Square,105822890,0,4376_7778022_100342,4376_167 -4289_75981,267,4376_23181,The Square,106052890,0,4376_7778022_100342,4376_167 -4289_75981,268,4376_23182,The Square,106142890,0,4376_7778022_100342,4376_167 -4289_75981,269,4376_23183,The Square,106232890,0,4376_7778022_100342,4376_167 -4289_75981,259,4376_23184,The Square,105765576,0,4376_7778022_100300,4376_167 -4289_75981,260,4376_23185,The Square,105312910,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_23186,The Square,105322910,0,4376_7778022_100350,4376_167 -4289_75981,262,4376_23187,The Square,105432910,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_23188,The Square,105542910,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_23189,The Square,105652910,0,4376_7778022_100350,4376_167 -4289_75963,262,4376_2319,Ticknock,105431485,1,4376_7778022_100150,4376_32 -4289_75981,265,4376_23190,The Square,105812910,0,4376_7778022_100350,4376_167 -4289_75981,266,4376_23191,The Square,105822910,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_23192,The Square,106052910,0,4376_7778022_100350,4376_167 -4289_75981,268,4376_23193,The Square,106142910,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_23194,The Square,106232910,0,4376_7778022_100350,4376_167 -4289_75981,270,4376_23195,The Square,105278240,0,4376_7778022_100342,4376_168 -4289_75981,146,4376_23196,The Square,105248240,0,4376_7778022_100342,4376_168 -4289_75981,271,4376_23197,The Square,105238240,0,4376_7778022_100342,4376_168 -4289_75981,115,4376_23198,The Square,105218240,0,4376_7778022_100342,4376_168 -4289_75981,259,4376_23199,The Square,105765604,0,4376_7778022_100320,4376_167 -4289_75960,260,4376_232,Sutton Station,105311976,0,4376_7778022_103104,4376_1 -4289_75963,263,4376_2320,Ticknock,105541485,1,4376_7778022_100150,4376_32 -4289_75981,260,4376_23200,The Square,105312936,0,4376_7778022_100360,4376_167 -4289_75981,261,4376_23201,The Square,105322936,0,4376_7778022_100360,4376_167 -4289_75981,262,4376_23202,The Square,105432936,0,4376_7778022_100360,4376_167 -4289_75981,263,4376_23203,The Square,105542936,0,4376_7778022_100360,4376_167 -4289_75981,264,4376_23204,The Square,105652936,0,4376_7778022_100360,4376_167 -4289_75981,265,4376_23205,The Square,105812936,0,4376_7778022_100360,4376_167 -4289_75981,266,4376_23206,The Square,105822936,0,4376_7778022_100360,4376_167 -4289_75981,267,4376_23207,The Square,106052936,0,4376_7778022_100360,4376_167 -4289_75981,268,4376_23208,The Square,106142936,0,4376_7778022_100360,4376_167 -4289_75981,269,4376_23209,The Square,106232936,0,4376_7778022_100360,4376_167 -4289_75963,264,4376_2321,Ticknock,105651485,1,4376_7778022_100150,4376_32 -4289_75981,260,4376_23210,The Square,105312956,0,4376_7778022_100380,4376_167 -4289_75981,261,4376_23211,The Square,105322956,0,4376_7778022_100380,4376_167 -4289_75981,262,4376_23212,The Square,105432956,0,4376_7778022_100380,4376_167 -4289_75981,263,4376_23213,The Square,105542956,0,4376_7778022_100380,4376_167 -4289_75981,264,4376_23214,The Square,105652956,0,4376_7778022_100380,4376_167 -4289_75981,265,4376_23215,The Square,105812956,0,4376_7778022_100380,4376_167 -4289_75981,266,4376_23216,The Square,105822956,0,4376_7778022_100380,4376_167 -4289_75981,267,4376_23217,The Square,106052956,0,4376_7778022_100380,4376_167 -4289_75981,268,4376_23218,The Square,106142956,0,4376_7778022_100380,4376_167 -4289_75981,269,4376_23219,The Square,106232956,0,4376_7778022_100380,4376_167 -4289_75963,265,4376_2322,Ticknock,105811485,1,4376_7778022_100150,4376_32 -4289_75981,259,4376_23220,The Square,105765628,0,4376_7778022_100340,4376_168 -4289_75981,270,4376_23221,The Square,105278272,0,4376_7778022_100270,4376_167 -4289_75981,146,4376_23222,The Square,105248272,0,4376_7778022_100270,4376_167 -4289_75981,271,4376_23223,The Square,105238272,0,4376_7778022_100270,4376_167 -4289_75981,115,4376_23224,The Square,105218272,0,4376_7778022_100270,4376_167 -4289_75981,260,4376_23225,The Square,105312986,0,4376_7778022_100350,4376_167 -4289_75981,261,4376_23226,The Square,105322986,0,4376_7778022_100350,4376_167 -4289_75981,262,4376_23227,The Square,105432986,0,4376_7778022_100350,4376_167 -4289_75981,263,4376_23228,The Square,105542986,0,4376_7778022_100350,4376_167 -4289_75981,264,4376_23229,The Square,105652986,0,4376_7778022_100350,4376_167 -4289_75963,266,4376_2323,Ticknock,105821485,1,4376_7778022_100150,4376_32 -4289_75981,265,4376_23230,The Square,105812986,0,4376_7778022_100350,4376_167 -4289_75981,266,4376_23231,The Square,105822986,0,4376_7778022_100350,4376_167 -4289_75981,267,4376_23232,The Square,106052986,0,4376_7778022_100350,4376_167 -4289_75981,268,4376_23233,The Square,106142986,0,4376_7778022_100350,4376_167 -4289_75981,269,4376_23234,The Square,106232986,0,4376_7778022_100350,4376_167 -4289_75981,259,4376_23235,The Square,105765660,0,4376_7778022_100300,4376_168 -4289_75981,270,4376_23236,The Square,105278302,0,4376_7778022_100342,4376_167 -4289_75981,146,4376_23237,The Square,105248302,0,4376_7778022_100342,4376_167 -4289_75981,271,4376_23238,The Square,105238302,0,4376_7778022_100342,4376_167 -4289_75981,115,4376_23239,The Square,105218302,0,4376_7778022_100342,4376_167 -4289_75963,267,4376_2324,Ticknock,106051485,1,4376_7778022_100150,4376_32 -4289_75981,260,4376_23240,Liffey Valley SC,105311011,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_23241,Liffey Valley SC,105321011,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_23242,Liffey Valley SC,105431011,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_23243,Liffey Valley SC,105541011,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_23244,Liffey Valley SC,105651011,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_23245,Liffey Valley SC,105811011,1,4376_7778022_100350,4376_170 -4289_75981,266,4376_23246,Liffey Valley SC,105821011,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_23247,Liffey Valley SC,106051011,1,4376_7778022_100350,4376_170 -4289_75981,268,4376_23248,Liffey Valley SC,106141011,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_23249,Liffey Valley SC,106231011,1,4376_7778022_100350,4376_170 -4289_75963,268,4376_2325,Ticknock,106141485,1,4376_7778022_100150,4376_32 -4289_75981,259,4376_23250,Liffey Valley SC,105764007,1,4376_7778022_100290,4376_171 -4289_75981,260,4376_23251,Liffey Valley SC,105311033,1,4376_7778022_100341,4376_170 -4289_75981,261,4376_23252,Liffey Valley SC,105321033,1,4376_7778022_100341,4376_170 -4289_75981,262,4376_23253,Liffey Valley SC,105431033,1,4376_7778022_100341,4376_170 -4289_75981,263,4376_23254,Liffey Valley SC,105541033,1,4376_7778022_100341,4376_170 -4289_75981,264,4376_23255,Liffey Valley SC,105651033,1,4376_7778022_100341,4376_170 -4289_75981,265,4376_23256,Liffey Valley SC,105811033,1,4376_7778022_100341,4376_170 -4289_75981,266,4376_23257,Liffey Valley SC,105821033,1,4376_7778022_100341,4376_170 -4289_75981,267,4376_23258,Liffey Valley SC,106051033,1,4376_7778022_100341,4376_170 -4289_75981,268,4376_23259,Liffey Valley SC,106141033,1,4376_7778022_100341,4376_170 -4289_75963,269,4376_2326,Ticknock,106231485,1,4376_7778022_100150,4376_32 -4289_75981,269,4376_23260,Liffey Valley SC,106231033,1,4376_7778022_100341,4376_170 -4289_75981,259,4376_23261,Liffey Valley SC,105764019,1,4376_7778022_100280,4376_171 -4289_75981,260,4376_23262,Liffey Valley SC,105311049,1,4376_7778022_100370,4376_170 -4289_75981,261,4376_23263,Liffey Valley SC,105321049,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_23264,Liffey Valley SC,105431049,1,4376_7778022_100370,4376_170 -4289_75981,263,4376_23265,Liffey Valley SC,105541049,1,4376_7778022_100370,4376_170 -4289_75981,264,4376_23266,Liffey Valley SC,105651049,1,4376_7778022_100370,4376_170 -4289_75981,265,4376_23267,Liffey Valley SC,105811049,1,4376_7778022_100370,4376_170 -4289_75981,266,4376_23268,Liffey Valley SC,105821049,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_23269,Liffey Valley SC,106051049,1,4376_7778022_100370,4376_170 -4289_75963,259,4376_2327,Ticknock,105764343,1,4376_7778022_100142,4376_33 -4289_75981,268,4376_23270,Liffey Valley SC,106141049,1,4376_7778022_100370,4376_170 -4289_75981,269,4376_23271,Liffey Valley SC,106231049,1,4376_7778022_100370,4376_170 -4289_75981,259,4376_23272,Liffey Valley SC,105764039,1,4376_7778022_100310,4376_170 -4289_75981,260,4376_23273,Liffey Valley SC,105311069,1,4376_7778022_100380,4376_170 -4289_75981,261,4376_23274,Liffey Valley SC,105321069,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_23275,Liffey Valley SC,105431069,1,4376_7778022_100380,4376_170 -4289_75981,263,4376_23276,Liffey Valley SC,105541069,1,4376_7778022_100380,4376_170 -4289_75981,264,4376_23277,Liffey Valley SC,105651069,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_23278,Liffey Valley SC,105811069,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_23279,Liffey Valley SC,105821069,1,4376_7778022_100380,4376_170 -4289_75963,260,4376_2328,Ticknock,105311593,1,4376_7778022_100160,4376_32 -4289_75981,267,4376_23280,Liffey Valley SC,106051069,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_23281,Liffey Valley SC,106141069,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_23282,Liffey Valley SC,106231069,1,4376_7778022_100380,4376_170 -4289_75981,259,4376_23283,Liffey Valley SC,105764063,1,4376_7778022_100290,4376_170 -4289_75981,260,4376_23284,Liffey Valley SC,105311097,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_23285,Liffey Valley SC,105321097,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_23286,Liffey Valley SC,105431097,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_23287,Liffey Valley SC,105541097,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_23288,Liffey Valley SC,105651097,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_23289,Liffey Valley SC,105811097,1,4376_7778022_100350,4376_170 -4289_75963,261,4376_2329,Ticknock,105321593,1,4376_7778022_100160,4376_32 -4289_75981,266,4376_23290,Liffey Valley SC,105821097,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_23291,Liffey Valley SC,106051097,1,4376_7778022_100350,4376_170 -4289_75981,268,4376_23292,Liffey Valley SC,106141097,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_23293,Liffey Valley SC,106231097,1,4376_7778022_100350,4376_170 -4289_75981,260,4376_23294,Liffey Valley SC,105311131,1,4376_7778022_100360,4376_170 -4289_75981,261,4376_23295,Liffey Valley SC,105321131,1,4376_7778022_100360,4376_170 -4289_75981,262,4376_23296,Liffey Valley SC,105431131,1,4376_7778022_100360,4376_170 -4289_75981,263,4376_23297,Liffey Valley SC,105541131,1,4376_7778022_100360,4376_170 -4289_75981,264,4376_23298,Liffey Valley SC,105651131,1,4376_7778022_100360,4376_170 -4289_75981,265,4376_23299,Liffey Valley SC,105811131,1,4376_7778022_100360,4376_170 -4289_75960,261,4376_233,Sutton Station,105321976,0,4376_7778022_103104,4376_1 -4289_75963,262,4376_2330,Ticknock,105431593,1,4376_7778022_100160,4376_32 -4289_75981,266,4376_23300,Liffey Valley SC,105821131,1,4376_7778022_100360,4376_170 -4289_75981,267,4376_23301,Liffey Valley SC,106051131,1,4376_7778022_100360,4376_170 -4289_75981,268,4376_23302,Liffey Valley SC,106141131,1,4376_7778022_100360,4376_170 -4289_75981,269,4376_23303,Liffey Valley SC,106231131,1,4376_7778022_100360,4376_170 -4289_75981,259,4376_23304,Liffey Valley SC,105764081,1,4376_7778022_100300,4376_171 -4289_75981,260,4376_23305,Liffey Valley SC,105311161,1,4376_7778022_100341,4376_170 -4289_75981,261,4376_23306,Liffey Valley SC,105321161,1,4376_7778022_100341,4376_170 -4289_75981,262,4376_23307,Liffey Valley SC,105431161,1,4376_7778022_100341,4376_170 -4289_75981,263,4376_23308,Liffey Valley SC,105541161,1,4376_7778022_100341,4376_170 -4289_75981,264,4376_23309,Liffey Valley SC,105651161,1,4376_7778022_100341,4376_170 -4289_75963,263,4376_2331,Ticknock,105541593,1,4376_7778022_100160,4376_32 -4289_75981,265,4376_23310,Liffey Valley SC,105811161,1,4376_7778022_100341,4376_170 -4289_75981,266,4376_23311,Liffey Valley SC,105821161,1,4376_7778022_100341,4376_170 -4289_75981,267,4376_23312,Liffey Valley SC,106051161,1,4376_7778022_100341,4376_170 -4289_75981,268,4376_23313,Liffey Valley SC,106141161,1,4376_7778022_100341,4376_170 -4289_75981,269,4376_23314,Liffey Valley SC,106231161,1,4376_7778022_100341,4376_170 -4289_75981,259,4376_23315,Liffey Valley SC,105764113,1,4376_7778022_100280,4376_170 -4289_75981,260,4376_23316,Liffey Valley SC,105311191,1,4376_7778022_100390,4376_170 -4289_75981,261,4376_23317,Liffey Valley SC,105321191,1,4376_7778022_100390,4376_170 -4289_75981,262,4376_23318,Liffey Valley SC,105431191,1,4376_7778022_100390,4376_170 -4289_75981,263,4376_23319,Liffey Valley SC,105541191,1,4376_7778022_100390,4376_170 -4289_75963,264,4376_2332,Ticknock,105651593,1,4376_7778022_100160,4376_32 -4289_75981,264,4376_23320,Liffey Valley SC,105651191,1,4376_7778022_100390,4376_170 -4289_75981,265,4376_23321,Liffey Valley SC,105811191,1,4376_7778022_100390,4376_170 -4289_75981,266,4376_23322,Liffey Valley SC,105821191,1,4376_7778022_100390,4376_170 -4289_75981,267,4376_23323,Liffey Valley SC,106051191,1,4376_7778022_100390,4376_170 -4289_75981,268,4376_23324,Liffey Valley SC,106141191,1,4376_7778022_100390,4376_170 -4289_75981,269,4376_23325,Liffey Valley SC,106231191,1,4376_7778022_100390,4376_170 -4289_75981,270,4376_23326,Liffey Valley SC,105277007,1,4376_7778022_100350,4376_171 -4289_75981,146,4376_23327,Liffey Valley SC,105247007,1,4376_7778022_100350,4376_171 -4289_75981,271,4376_23328,Liffey Valley SC,105237007,1,4376_7778022_100350,4376_171 -4289_75981,115,4376_23329,Liffey Valley SC,105217007,1,4376_7778022_100350,4376_171 -4289_75963,265,4376_2333,Ticknock,105811593,1,4376_7778022_100160,4376_32 -4289_75981,259,4376_23330,Liffey Valley SC,105764141,1,4376_7778022_100310,4376_170 -4289_75981,260,4376_23331,Liffey Valley SC,105311215,1,4376_7778022_100400,4376_170 -4289_75981,261,4376_23332,Liffey Valley SC,105321215,1,4376_7778022_100400,4376_170 -4289_75981,262,4376_23333,Liffey Valley SC,105431215,1,4376_7778022_100400,4376_170 -4289_75981,263,4376_23334,Liffey Valley SC,105541215,1,4376_7778022_100400,4376_170 -4289_75981,264,4376_23335,Liffey Valley SC,105651215,1,4376_7778022_100400,4376_170 -4289_75981,265,4376_23336,Liffey Valley SC,105811215,1,4376_7778022_100400,4376_170 -4289_75981,266,4376_23337,Liffey Valley SC,105821215,1,4376_7778022_100400,4376_170 -4289_75981,267,4376_23338,Liffey Valley SC,106051215,1,4376_7778022_100400,4376_170 -4289_75981,268,4376_23339,Liffey Valley SC,106141215,1,4376_7778022_100400,4376_170 -4289_75963,266,4376_2334,Ticknock,105821593,1,4376_7778022_100160,4376_32 -4289_75981,269,4376_23340,Liffey Valley SC,106231215,1,4376_7778022_100400,4376_170 -4289_75981,260,4376_23341,Liffey Valley SC,105311249,1,4376_7778022_100370,4376_170 -4289_75981,261,4376_23342,Liffey Valley SC,105321249,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_23343,Liffey Valley SC,105431249,1,4376_7778022_100370,4376_170 -4289_75981,263,4376_23344,Liffey Valley SC,105541249,1,4376_7778022_100370,4376_170 -4289_75981,264,4376_23345,Liffey Valley SC,105651249,1,4376_7778022_100370,4376_170 -4289_75981,265,4376_23346,Liffey Valley SC,105811249,1,4376_7778022_100370,4376_170 -4289_75981,266,4376_23347,Liffey Valley SC,105821249,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_23348,Liffey Valley SC,106051249,1,4376_7778022_100370,4376_170 -4289_75981,268,4376_23349,Liffey Valley SC,106141249,1,4376_7778022_100370,4376_170 -4289_75963,267,4376_2335,Ticknock,106051593,1,4376_7778022_100160,4376_32 -4289_75981,269,4376_23350,Liffey Valley SC,106231249,1,4376_7778022_100370,4376_170 -4289_75981,259,4376_23351,Liffey Valley SC,105764161,1,4376_7778022_100290,4376_171 -4289_75981,270,4376_23352,Liffey Valley SC,105277025,1,4376_7778022_100360,4376_172 -4289_75981,146,4376_23353,Liffey Valley SC,105247025,1,4376_7778022_100360,4376_172 -4289_75981,271,4376_23354,Liffey Valley SC,105237025,1,4376_7778022_100360,4376_172 -4289_75981,115,4376_23355,Liffey Valley SC,105217025,1,4376_7778022_100360,4376_172 -4289_75981,260,4376_23356,Liffey Valley SC,105311295,1,4376_7778022_100380,4376_170 -4289_75981,261,4376_23357,Liffey Valley SC,105321295,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_23358,Liffey Valley SC,105431295,1,4376_7778022_100380,4376_170 -4289_75981,263,4376_23359,Liffey Valley SC,105541295,1,4376_7778022_100380,4376_170 -4289_75963,268,4376_2336,Ticknock,106141593,1,4376_7778022_100160,4376_32 -4289_75981,264,4376_23360,Liffey Valley SC,105651295,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_23361,Liffey Valley SC,105811295,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_23362,Liffey Valley SC,105821295,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_23363,Liffey Valley SC,106051295,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_23364,Liffey Valley SC,106141295,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_23365,Liffey Valley SC,106231295,1,4376_7778022_100380,4376_170 -4289_75981,259,4376_23366,Liffey Valley SC,105764195,1,4376_7778022_100300,4376_170 -4289_75981,260,4376_23367,Liffey Valley SC,105311329,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_23368,Liffey Valley SC,105321329,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_23369,Liffey Valley SC,105431329,1,4376_7778022_100350,4376_170 -4289_75963,269,4376_2337,Ticknock,106231593,1,4376_7778022_100160,4376_32 -4289_75981,263,4376_23370,Liffey Valley SC,105541329,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_23371,Liffey Valley SC,105651329,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_23372,Liffey Valley SC,105811329,1,4376_7778022_100350,4376_170 -4289_75981,266,4376_23373,Liffey Valley SC,105821329,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_23374,Liffey Valley SC,106051329,1,4376_7778022_100350,4376_170 -4289_75981,268,4376_23375,Liffey Valley SC,106141329,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_23376,Liffey Valley SC,106231329,1,4376_7778022_100350,4376_170 -4289_75981,270,4376_23377,Liffey Valley SC,105277043,1,4376_7778022_100270,4376_171 -4289_75981,146,4376_23378,Liffey Valley SC,105247043,1,4376_7778022_100270,4376_171 -4289_75981,271,4376_23379,Liffey Valley SC,105237043,1,4376_7778022_100270,4376_171 -4289_75963,259,4376_2338,Ticknock,105764445,1,4376_7778022_100150,4376_33 -4289_75981,115,4376_23380,Liffey Valley SC,105217043,1,4376_7778022_100270,4376_171 -4289_75981,259,4376_23381,Liffey Valley SC,105764225,1,4376_7778022_100280,4376_170 -4289_75981,260,4376_23382,Liffey Valley SC,105311357,1,4376_7778022_100410,4376_170 -4289_75981,261,4376_23383,Liffey Valley SC,105321357,1,4376_7778022_100410,4376_170 -4289_75981,262,4376_23384,Liffey Valley SC,105431357,1,4376_7778022_100410,4376_170 -4289_75981,263,4376_23385,Liffey Valley SC,105541357,1,4376_7778022_100410,4376_170 -4289_75981,264,4376_23386,Liffey Valley SC,105651357,1,4376_7778022_100410,4376_170 -4289_75981,265,4376_23387,Liffey Valley SC,105811357,1,4376_7778022_100410,4376_170 -4289_75981,266,4376_23388,Liffey Valley SC,105821357,1,4376_7778022_100410,4376_170 -4289_75981,267,4376_23389,Liffey Valley SC,106051357,1,4376_7778022_100410,4376_170 -4289_75963,260,4376_2339,Ticknock,105311703,1,4376_7778022_100150,4376_32 -4289_75981,268,4376_23390,Liffey Valley SC,106141357,1,4376_7778022_100410,4376_170 -4289_75981,269,4376_23391,Liffey Valley SC,106231357,1,4376_7778022_100410,4376_170 -4289_75981,260,4376_23392,Liffey Valley SC,105311389,1,4376_7778022_100360,4376_170 -4289_75981,261,4376_23393,Liffey Valley SC,105321389,1,4376_7778022_100360,4376_170 -4289_75981,262,4376_23394,Liffey Valley SC,105431389,1,4376_7778022_100360,4376_170 -4289_75981,263,4376_23395,Liffey Valley SC,105541389,1,4376_7778022_100360,4376_170 -4289_75981,264,4376_23396,Liffey Valley SC,105651389,1,4376_7778022_100360,4376_170 -4289_75981,265,4376_23397,Liffey Valley SC,105811389,1,4376_7778022_100360,4376_170 -4289_75981,266,4376_23398,Liffey Valley SC,105821389,1,4376_7778022_100360,4376_170 -4289_75981,267,4376_23399,Liffey Valley SC,106051389,1,4376_7778022_100360,4376_170 -4289_75960,262,4376_234,Sutton Station,105431976,0,4376_7778022_103104,4376_1 -4289_75963,261,4376_2340,Ticknock,105321703,1,4376_7778022_100150,4376_32 -4289_75981,268,4376_23400,Liffey Valley SC,106141389,1,4376_7778022_100360,4376_170 -4289_75981,269,4376_23401,Liffey Valley SC,106231389,1,4376_7778022_100360,4376_170 -4289_75981,259,4376_23402,Liffey Valley SC,105764251,1,4376_7778022_100310,4376_171 -4289_75981,270,4376_23403,Liffey Valley SC,105277079,1,4376_7778022_100250,4376_172 -4289_75981,146,4376_23404,Liffey Valley SC,105247079,1,4376_7778022_100250,4376_172 -4289_75981,271,4376_23405,Liffey Valley SC,105237079,1,4376_7778022_100250,4376_172 -4289_75981,115,4376_23406,Liffey Valley SC,105217079,1,4376_7778022_100250,4376_172 -4289_75981,260,4376_23407,Liffey Valley SC,105311413,1,4376_7778022_100341,4376_170 -4289_75981,261,4376_23408,Liffey Valley SC,105321413,1,4376_7778022_100341,4376_170 -4289_75981,262,4376_23409,Liffey Valley SC,105431413,1,4376_7778022_100341,4376_170 -4289_75963,262,4376_2341,Ticknock,105431703,1,4376_7778022_100150,4376_32 -4289_75981,263,4376_23410,Liffey Valley SC,105541413,1,4376_7778022_100341,4376_170 -4289_75981,264,4376_23411,Liffey Valley SC,105651413,1,4376_7778022_100341,4376_170 -4289_75981,265,4376_23412,Liffey Valley SC,105811413,1,4376_7778022_100341,4376_170 -4289_75981,266,4376_23413,Liffey Valley SC,105821413,1,4376_7778022_100341,4376_170 -4289_75981,267,4376_23414,Liffey Valley SC,106051413,1,4376_7778022_100341,4376_170 -4289_75981,268,4376_23415,Liffey Valley SC,106141413,1,4376_7778022_100341,4376_170 -4289_75981,269,4376_23416,Liffey Valley SC,106231413,1,4376_7778022_100341,4376_170 -4289_75981,259,4376_23417,Liffey Valley SC,105764271,1,4376_7778022_100330,4376_171 -4289_75981,260,4376_23418,Liffey Valley SC,105311439,1,4376_7778022_100390,4376_170 -4289_75981,261,4376_23419,Liffey Valley SC,105321439,1,4376_7778022_100390,4376_170 -4289_75963,263,4376_2342,Ticknock,105541703,1,4376_7778022_100150,4376_32 -4289_75981,262,4376_23420,Liffey Valley SC,105431439,1,4376_7778022_100390,4376_170 -4289_75981,263,4376_23421,Liffey Valley SC,105541439,1,4376_7778022_100390,4376_170 -4289_75981,264,4376_23422,Liffey Valley SC,105651439,1,4376_7778022_100390,4376_170 -4289_75981,265,4376_23423,Liffey Valley SC,105811439,1,4376_7778022_100390,4376_170 -4289_75981,266,4376_23424,Liffey Valley SC,105821439,1,4376_7778022_100390,4376_170 -4289_75981,267,4376_23425,Liffey Valley SC,106051439,1,4376_7778022_100390,4376_170 -4289_75981,268,4376_23426,Liffey Valley SC,106141439,1,4376_7778022_100390,4376_170 -4289_75981,269,4376_23427,Liffey Valley SC,106231439,1,4376_7778022_100390,4376_170 -4289_75981,259,4376_23428,Liffey Valley SC,105764301,1,4376_7778022_100290,4376_171 -4289_75981,270,4376_23429,Liffey Valley SC,105277109,1,4376_7778022_100260,4376_172 -4289_75963,264,4376_2343,Ticknock,105651703,1,4376_7778022_100150,4376_32 -4289_75981,146,4376_23430,Liffey Valley SC,105247109,1,4376_7778022_100260,4376_172 -4289_75981,271,4376_23431,Liffey Valley SC,105237109,1,4376_7778022_100260,4376_172 -4289_75981,115,4376_23432,Liffey Valley SC,105217109,1,4376_7778022_100260,4376_172 -4289_75981,260,4376_23433,Liffey Valley SC,105311467,1,4376_7778022_100400,4376_170 -4289_75981,261,4376_23434,Liffey Valley SC,105321467,1,4376_7778022_100400,4376_170 -4289_75981,262,4376_23435,Liffey Valley SC,105431467,1,4376_7778022_100400,4376_170 -4289_75981,263,4376_23436,Liffey Valley SC,105541467,1,4376_7778022_100400,4376_170 -4289_75981,264,4376_23437,Liffey Valley SC,105651467,1,4376_7778022_100400,4376_170 -4289_75981,265,4376_23438,Liffey Valley SC,105811467,1,4376_7778022_100400,4376_170 -4289_75981,266,4376_23439,Liffey Valley SC,105821467,1,4376_7778022_100400,4376_170 -4289_75963,265,4376_2344,Ticknock,105811703,1,4376_7778022_100150,4376_32 -4289_75981,267,4376_23440,Liffey Valley SC,106051467,1,4376_7778022_100400,4376_170 -4289_75981,268,4376_23441,Liffey Valley SC,106141467,1,4376_7778022_100400,4376_170 -4289_75981,269,4376_23442,Liffey Valley SC,106231467,1,4376_7778022_100400,4376_170 -4289_75981,259,4376_23443,Liffey Valley SC,105764325,1,4376_7778022_100300,4376_171 -4289_75981,260,4376_23444,Liffey Valley SC,105311495,1,4376_7778022_100370,4376_170 -4289_75981,261,4376_23445,Liffey Valley SC,105321495,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_23446,Liffey Valley SC,105431495,1,4376_7778022_100370,4376_170 -4289_75981,263,4376_23447,Liffey Valley SC,105541495,1,4376_7778022_100370,4376_170 -4289_75981,264,4376_23448,Liffey Valley SC,105651495,1,4376_7778022_100370,4376_170 -4289_75981,265,4376_23449,Liffey Valley SC,105811495,1,4376_7778022_100370,4376_170 -4289_75963,266,4376_2345,Ticknock,105821703,1,4376_7778022_100150,4376_32 -4289_75981,266,4376_23450,Liffey Valley SC,105821495,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_23451,Liffey Valley SC,106051495,1,4376_7778022_100370,4376_170 -4289_75981,268,4376_23452,Liffey Valley SC,106141495,1,4376_7778022_100370,4376_170 -4289_75981,269,4376_23453,Liffey Valley SC,106231495,1,4376_7778022_100370,4376_170 -4289_75981,259,4376_23454,Liffey Valley SC,105764351,1,4376_7778022_100320,4376_171 -4289_75981,270,4376_23455,Liffey Valley SC,105277153,1,4376_7778022_100280,4376_172 -4289_75981,146,4376_23456,Liffey Valley SC,105247153,1,4376_7778022_100280,4376_172 -4289_75981,271,4376_23457,Liffey Valley SC,105237153,1,4376_7778022_100280,4376_172 -4289_75981,115,4376_23458,Liffey Valley SC,105217153,1,4376_7778022_100280,4376_172 -4289_75981,260,4376_23459,Liffey Valley SC,105311521,1,4376_7778022_100380,4376_170 -4289_75963,267,4376_2346,Ticknock,106051703,1,4376_7778022_100150,4376_32 -4289_75981,261,4376_23460,Liffey Valley SC,105321521,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_23461,Liffey Valley SC,105431521,1,4376_7778022_100380,4376_170 -4289_75981,263,4376_23462,Liffey Valley SC,105541521,1,4376_7778022_100380,4376_170 -4289_75981,264,4376_23463,Liffey Valley SC,105651521,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_23464,Liffey Valley SC,105811521,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_23465,Liffey Valley SC,105821521,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_23466,Liffey Valley SC,106051521,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_23467,Liffey Valley SC,106141521,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_23468,Liffey Valley SC,106231521,1,4376_7778022_100380,4376_170 -4289_75981,259,4376_23469,Liffey Valley SC,105764375,1,4376_7778022_100280,4376_171 -4289_75963,268,4376_2347,Ticknock,106141703,1,4376_7778022_100150,4376_32 -4289_75981,270,4376_23470,Liffey Valley SC,105277185,1,4376_7778022_100270,4376_170 -4289_75981,146,4376_23471,Liffey Valley SC,105247185,1,4376_7778022_100270,4376_170 -4289_75981,271,4376_23472,Liffey Valley SC,105237185,1,4376_7778022_100270,4376_170 -4289_75981,115,4376_23473,Liffey Valley SC,105217185,1,4376_7778022_100270,4376_170 -4289_75981,260,4376_23474,Liffey Valley SC,105311549,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_23475,Liffey Valley SC,105321549,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_23476,Liffey Valley SC,105431549,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_23477,Liffey Valley SC,105541549,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_23478,Liffey Valley SC,105651549,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_23479,Liffey Valley SC,105811549,1,4376_7778022_100350,4376_170 -4289_75963,269,4376_2348,Ticknock,106231703,1,4376_7778022_100150,4376_32 -4289_75981,266,4376_23480,Liffey Valley SC,105821549,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_23481,Liffey Valley SC,106051549,1,4376_7778022_100350,4376_170 -4289_75981,268,4376_23482,Liffey Valley SC,106141549,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_23483,Liffey Valley SC,106231549,1,4376_7778022_100350,4376_170 -4289_75981,259,4376_23484,Liffey Valley SC,105764403,1,4376_7778022_100310,4376_171 -4289_75981,270,4376_23485,Liffey Valley SC,105277215,1,4376_7778022_100250,4376_170 -4289_75981,146,4376_23486,Liffey Valley SC,105247215,1,4376_7778022_100250,4376_170 -4289_75981,271,4376_23487,Liffey Valley SC,105237215,1,4376_7778022_100250,4376_170 -4289_75981,115,4376_23488,Liffey Valley SC,105217215,1,4376_7778022_100250,4376_170 -4289_75981,260,4376_23489,Liffey Valley SC,105311575,1,4376_7778022_100410,4376_170 -4289_75963,259,4376_2349,Ticknock,105764549,1,4376_7778022_100142,4376_33 -4289_75981,261,4376_23490,Liffey Valley SC,105321575,1,4376_7778022_100410,4376_170 -4289_75981,262,4376_23491,Liffey Valley SC,105431575,1,4376_7778022_100410,4376_170 -4289_75981,263,4376_23492,Liffey Valley SC,105541575,1,4376_7778022_100410,4376_170 -4289_75981,264,4376_23493,Liffey Valley SC,105651575,1,4376_7778022_100410,4376_170 -4289_75981,265,4376_23494,Liffey Valley SC,105811575,1,4376_7778022_100410,4376_170 -4289_75981,266,4376_23495,Liffey Valley SC,105821575,1,4376_7778022_100410,4376_170 -4289_75981,267,4376_23496,Liffey Valley SC,106051575,1,4376_7778022_100410,4376_170 -4289_75981,268,4376_23497,Liffey Valley SC,106141575,1,4376_7778022_100410,4376_170 -4289_75981,269,4376_23498,Liffey Valley SC,106231575,1,4376_7778022_100410,4376_170 -4289_75981,259,4376_23499,Liffey Valley SC,105764427,1,4376_7778022_100330,4376_171 -4289_75960,263,4376_235,Sutton Station,105541976,0,4376_7778022_103104,4376_1 -4289_75963,260,4376_2350,Ticknock,105311811,1,4376_7778022_100160,4376_32 -4289_75981,260,4376_23500,Liffey Valley SC,105311603,1,4376_7778022_100360,4376_170 -4289_75981,261,4376_23501,Liffey Valley SC,105321603,1,4376_7778022_100360,4376_170 -4289_75981,262,4376_23502,Liffey Valley SC,105431603,1,4376_7778022_100360,4376_170 -4289_75981,263,4376_23503,Liffey Valley SC,105541603,1,4376_7778022_100360,4376_170 -4289_75981,264,4376_23504,Liffey Valley SC,105651603,1,4376_7778022_100360,4376_170 -4289_75981,265,4376_23505,Liffey Valley SC,105811603,1,4376_7778022_100360,4376_170 -4289_75981,266,4376_23506,Liffey Valley SC,105821603,1,4376_7778022_100360,4376_170 -4289_75981,267,4376_23507,Liffey Valley SC,106051603,1,4376_7778022_100360,4376_170 -4289_75981,268,4376_23508,Liffey Valley SC,106141603,1,4376_7778022_100360,4376_170 -4289_75981,269,4376_23509,Liffey Valley SC,106231603,1,4376_7778022_100360,4376_170 -4289_75963,261,4376_2351,Ticknock,105321811,1,4376_7778022_100160,4376_32 -4289_75981,259,4376_23510,Liffey Valley SC,105764457,1,4376_7778022_100290,4376_171 -4289_75981,270,4376_23511,Liffey Valley SC,105277243,1,4376_7778022_100260,4376_172 -4289_75981,146,4376_23512,Liffey Valley SC,105247243,1,4376_7778022_100260,4376_172 -4289_75981,271,4376_23513,Liffey Valley SC,105237243,1,4376_7778022_100260,4376_172 -4289_75981,115,4376_23514,Liffey Valley SC,105217243,1,4376_7778022_100260,4376_172 -4289_75981,260,4376_23515,Liffey Valley SC,105311629,1,4376_7778022_100390,4376_170 -4289_75981,261,4376_23516,Liffey Valley SC,105321629,1,4376_7778022_100390,4376_170 -4289_75981,262,4376_23517,Liffey Valley SC,105431629,1,4376_7778022_100390,4376_170 -4289_75981,263,4376_23518,Liffey Valley SC,105541629,1,4376_7778022_100390,4376_170 -4289_75981,264,4376_23519,Liffey Valley SC,105651629,1,4376_7778022_100390,4376_170 -4289_75963,262,4376_2352,Ticknock,105431811,1,4376_7778022_100160,4376_32 -4289_75981,265,4376_23520,Liffey Valley SC,105811629,1,4376_7778022_100390,4376_170 -4289_75981,266,4376_23521,Liffey Valley SC,105821629,1,4376_7778022_100390,4376_170 -4289_75981,267,4376_23522,Liffey Valley SC,106051629,1,4376_7778022_100390,4376_170 -4289_75981,268,4376_23523,Liffey Valley SC,106141629,1,4376_7778022_100390,4376_170 -4289_75981,269,4376_23524,Liffey Valley SC,106231629,1,4376_7778022_100390,4376_170 -4289_75981,259,4376_23525,Liffey Valley SC,105764481,1,4376_7778022_100300,4376_171 -4289_75981,270,4376_23526,Liffey Valley SC,105277275,1,4376_7778022_100280,4376_170 -4289_75981,146,4376_23527,Liffey Valley SC,105247275,1,4376_7778022_100280,4376_170 -4289_75981,271,4376_23528,Liffey Valley SC,105237275,1,4376_7778022_100280,4376_170 -4289_75981,115,4376_23529,Liffey Valley SC,105217275,1,4376_7778022_100280,4376_170 -4289_75963,263,4376_2353,Ticknock,105541811,1,4376_7778022_100160,4376_32 -4289_75981,260,4376_23530,Liffey Valley SC,105311659,1,4376_7778022_100400,4376_170 -4289_75981,261,4376_23531,Liffey Valley SC,105321659,1,4376_7778022_100400,4376_170 -4289_75981,262,4376_23532,Liffey Valley SC,105431659,1,4376_7778022_100400,4376_170 -4289_75981,263,4376_23533,Liffey Valley SC,105541659,1,4376_7778022_100400,4376_170 -4289_75981,264,4376_23534,Liffey Valley SC,105651659,1,4376_7778022_100400,4376_170 -4289_75981,265,4376_23535,Liffey Valley SC,105811659,1,4376_7778022_100400,4376_170 -4289_75981,266,4376_23536,Liffey Valley SC,105821659,1,4376_7778022_100400,4376_170 -4289_75981,267,4376_23537,Liffey Valley SC,106051659,1,4376_7778022_100400,4376_170 -4289_75981,268,4376_23538,Liffey Valley SC,106141659,1,4376_7778022_100400,4376_170 -4289_75981,269,4376_23539,Liffey Valley SC,106231659,1,4376_7778022_100400,4376_170 -4289_75963,264,4376_2354,Ticknock,105651811,1,4376_7778022_100160,4376_32 -4289_75981,259,4376_23540,Liffey Valley SC,105764505,1,4376_7778022_100320,4376_171 -4289_75981,270,4376_23541,Liffey Valley SC,105277305,1,4376_7778022_100270,4376_170 -4289_75981,146,4376_23542,Liffey Valley SC,105247305,1,4376_7778022_100270,4376_170 -4289_75981,271,4376_23543,Liffey Valley SC,105237305,1,4376_7778022_100270,4376_170 -4289_75981,115,4376_23544,Liffey Valley SC,105217305,1,4376_7778022_100270,4376_170 -4289_75981,260,4376_23545,Liffey Valley SC,105311683,1,4376_7778022_100370,4376_170 -4289_75981,261,4376_23546,Liffey Valley SC,105321683,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_23547,Liffey Valley SC,105431683,1,4376_7778022_100370,4376_170 -4289_75981,263,4376_23548,Liffey Valley SC,105541683,1,4376_7778022_100370,4376_170 -4289_75981,264,4376_23549,Liffey Valley SC,105651683,1,4376_7778022_100370,4376_170 -4289_75963,265,4376_2355,Ticknock,105811811,1,4376_7778022_100160,4376_32 -4289_75981,265,4376_23550,Liffey Valley SC,105811683,1,4376_7778022_100370,4376_170 -4289_75981,266,4376_23551,Liffey Valley SC,105821683,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_23552,Liffey Valley SC,106051683,1,4376_7778022_100370,4376_170 -4289_75981,268,4376_23553,Liffey Valley SC,106141683,1,4376_7778022_100370,4376_170 -4289_75981,269,4376_23554,Liffey Valley SC,106231683,1,4376_7778022_100370,4376_170 -4289_75981,259,4376_23555,Liffey Valley SC,105764531,1,4376_7778022_100350,4376_171 -4289_75981,260,4376_23556,Liffey Valley SC,105311713,1,4376_7778022_100380,4376_170 -4289_75981,261,4376_23557,Liffey Valley SC,105321713,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_23558,Liffey Valley SC,105431713,1,4376_7778022_100380,4376_170 -4289_75981,263,4376_23559,Liffey Valley SC,105541713,1,4376_7778022_100380,4376_170 -4289_75963,266,4376_2356,Ticknock,105821811,1,4376_7778022_100160,4376_32 -4289_75981,264,4376_23560,Liffey Valley SC,105651713,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_23561,Liffey Valley SC,105811713,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_23562,Liffey Valley SC,105821713,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_23563,Liffey Valley SC,106051713,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_23564,Liffey Valley SC,106141713,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_23565,Liffey Valley SC,106231713,1,4376_7778022_100380,4376_170 -4289_75981,259,4376_23566,Liffey Valley SC,105764557,1,4376_7778022_100280,4376_171 -4289_75981,270,4376_23567,Liffey Valley SC,105277335,1,4376_7778022_100290,4376_172 -4289_75981,146,4376_23568,Liffey Valley SC,105247335,1,4376_7778022_100290,4376_172 -4289_75981,271,4376_23569,Liffey Valley SC,105237335,1,4376_7778022_100290,4376_172 -4289_75963,267,4376_2357,Ticknock,106051811,1,4376_7778022_100160,4376_32 -4289_75981,115,4376_23570,Liffey Valley SC,105217335,1,4376_7778022_100290,4376_172 -4289_75981,260,4376_23571,Liffey Valley SC,105311737,1,4376_7778022_100342,4376_170 -4289_75981,261,4376_23572,Liffey Valley SC,105321737,1,4376_7778022_100342,4376_170 -4289_75981,262,4376_23573,Liffey Valley SC,105431737,1,4376_7778022_100342,4376_170 -4289_75981,263,4376_23574,Liffey Valley SC,105541737,1,4376_7778022_100342,4376_170 -4289_75981,264,4376_23575,Liffey Valley SC,105651737,1,4376_7778022_100342,4376_170 -4289_75981,265,4376_23576,Liffey Valley SC,105811737,1,4376_7778022_100342,4376_170 -4289_75981,266,4376_23577,Liffey Valley SC,105821737,1,4376_7778022_100342,4376_170 -4289_75981,267,4376_23578,Liffey Valley SC,106051737,1,4376_7778022_100342,4376_170 -4289_75981,268,4376_23579,Liffey Valley SC,106141737,1,4376_7778022_100342,4376_170 -4289_75963,268,4376_2358,Ticknock,106141811,1,4376_7778022_100160,4376_32 -4289_75981,269,4376_23580,Liffey Valley SC,106231737,1,4376_7778022_100342,4376_170 -4289_75981,259,4376_23581,Liffey Valley SC,105764583,1,4376_7778022_100310,4376_171 -4289_75981,270,4376_23582,Liffey Valley SC,105277363,1,4376_7778022_100250,4376_170 -4289_75981,146,4376_23583,Liffey Valley SC,105247363,1,4376_7778022_100250,4376_170 -4289_75981,271,4376_23584,Liffey Valley SC,105237363,1,4376_7778022_100250,4376_170 -4289_75981,115,4376_23585,Liffey Valley SC,105217363,1,4376_7778022_100250,4376_170 -4289_75981,260,4376_23586,Liffey Valley SC,105311767,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_23587,Liffey Valley SC,105321767,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_23588,Liffey Valley SC,105431767,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_23589,Liffey Valley SC,105541767,1,4376_7778022_100350,4376_170 -4289_75963,269,4376_2359,Ticknock,106231811,1,4376_7778022_100160,4376_32 -4289_75981,264,4376_23590,Liffey Valley SC,105651767,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_23591,Liffey Valley SC,105811767,1,4376_7778022_100350,4376_170 -4289_75981,266,4376_23592,Liffey Valley SC,105821767,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_23593,Liffey Valley SC,106051767,1,4376_7778022_100350,4376_170 -4289_75981,268,4376_23594,Liffey Valley SC,106141767,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_23595,Liffey Valley SC,106231767,1,4376_7778022_100350,4376_170 -4289_75981,259,4376_23596,Liffey Valley SC,105764609,1,4376_7778022_100340,4376_171 -4289_75981,270,4376_23597,Liffey Valley SC,105277395,1,4376_7778022_100260,4376_170 -4289_75981,146,4376_23598,Liffey Valley SC,105247395,1,4376_7778022_100260,4376_170 -4289_75981,271,4376_23599,Liffey Valley SC,105237395,1,4376_7778022_100260,4376_170 -4289_75960,264,4376_236,Sutton Station,105651976,0,4376_7778022_103104,4376_1 -4289_75963,259,4376_2360,Ticknock,105764651,1,4376_7778022_100150,4376_33 -4289_75981,115,4376_23600,Liffey Valley SC,105217395,1,4376_7778022_100260,4376_170 -4289_75981,260,4376_23601,Liffey Valley SC,105311793,1,4376_7778022_100410,4376_170 -4289_75981,261,4376_23602,Liffey Valley SC,105321793,1,4376_7778022_100410,4376_170 -4289_75981,262,4376_23603,Liffey Valley SC,105431793,1,4376_7778022_100410,4376_170 -4289_75981,263,4376_23604,Liffey Valley SC,105541793,1,4376_7778022_100410,4376_170 -4289_75981,264,4376_23605,Liffey Valley SC,105651793,1,4376_7778022_100410,4376_170 -4289_75981,265,4376_23606,Liffey Valley SC,105811793,1,4376_7778022_100410,4376_170 -4289_75981,266,4376_23607,Liffey Valley SC,105821793,1,4376_7778022_100410,4376_170 -4289_75981,267,4376_23608,Liffey Valley SC,106051793,1,4376_7778022_100410,4376_170 -4289_75981,268,4376_23609,Liffey Valley SC,106141793,1,4376_7778022_100410,4376_170 -4289_75963,270,4376_2361,Ticknock,105277415,1,4376_7778022_100121,4376_34 -4289_75981,269,4376_23610,Liffey Valley SC,106231793,1,4376_7778022_100410,4376_170 -4289_75981,259,4376_23611,Liffey Valley SC,105764635,1,4376_7778022_100330,4376_171 -4289_75981,260,4376_23612,Liffey Valley SC,105311823,1,4376_7778022_100360,4376_170 -4289_75981,261,4376_23613,Liffey Valley SC,105321823,1,4376_7778022_100360,4376_170 -4289_75981,262,4376_23614,Liffey Valley SC,105431823,1,4376_7778022_100360,4376_170 -4289_75981,263,4376_23615,Liffey Valley SC,105541823,1,4376_7778022_100360,4376_170 -4289_75981,264,4376_23616,Liffey Valley SC,105651823,1,4376_7778022_100360,4376_170 -4289_75981,265,4376_23617,Liffey Valley SC,105811823,1,4376_7778022_100360,4376_170 -4289_75981,266,4376_23618,Liffey Valley SC,105821823,1,4376_7778022_100360,4376_170 -4289_75981,267,4376_23619,Liffey Valley SC,106051823,1,4376_7778022_100360,4376_170 -4289_75963,146,4376_2362,Ticknock,105247415,1,4376_7778022_100121,4376_34 -4289_75981,268,4376_23620,Liffey Valley SC,106141823,1,4376_7778022_100360,4376_170 -4289_75981,269,4376_23621,Liffey Valley SC,106231823,1,4376_7778022_100360,4376_170 -4289_75981,259,4376_23622,Liffey Valley SC,105764659,1,4376_7778022_100290,4376_171 -4289_75981,270,4376_23623,Liffey Valley SC,105277425,1,4376_7778022_100300,4376_172 -4289_75981,146,4376_23624,Liffey Valley SC,105247425,1,4376_7778022_100300,4376_172 -4289_75981,271,4376_23625,Liffey Valley SC,105237425,1,4376_7778022_100300,4376_172 -4289_75981,115,4376_23626,Liffey Valley SC,105217425,1,4376_7778022_100300,4376_172 -4289_75981,260,4376_23627,Liffey Valley SC,105311851,1,4376_7778022_100390,4376_170 -4289_75981,261,4376_23628,Liffey Valley SC,105321851,1,4376_7778022_100390,4376_170 -4289_75981,262,4376_23629,Liffey Valley SC,105431851,1,4376_7778022_100390,4376_170 -4289_75963,271,4376_2363,Ticknock,105237415,1,4376_7778022_100121,4376_34 -4289_75981,263,4376_23630,Liffey Valley SC,105541851,1,4376_7778022_100390,4376_170 -4289_75981,264,4376_23631,Liffey Valley SC,105651851,1,4376_7778022_100390,4376_170 -4289_75981,265,4376_23632,Liffey Valley SC,105811851,1,4376_7778022_100390,4376_170 -4289_75981,266,4376_23633,Liffey Valley SC,105821851,1,4376_7778022_100390,4376_170 -4289_75981,267,4376_23634,Liffey Valley SC,106051851,1,4376_7778022_100390,4376_170 -4289_75981,268,4376_23635,Liffey Valley SC,106141851,1,4376_7778022_100390,4376_170 -4289_75981,269,4376_23636,Liffey Valley SC,106231851,1,4376_7778022_100390,4376_170 -4289_75981,259,4376_23637,Liffey Valley SC,105764685,1,4376_7778022_100300,4376_171 -4289_75981,270,4376_23638,Liffey Valley SC,105277455,1,4376_7778022_100280,4376_170 -4289_75981,146,4376_23639,Liffey Valley SC,105247455,1,4376_7778022_100280,4376_170 -4289_75963,115,4376_2364,Ticknock,105217415,1,4376_7778022_100121,4376_34 -4289_75981,271,4376_23640,Liffey Valley SC,105237455,1,4376_7778022_100280,4376_170 -4289_75981,115,4376_23641,Liffey Valley SC,105217455,1,4376_7778022_100280,4376_170 -4289_75981,260,4376_23642,Liffey Valley SC,105311885,1,4376_7778022_100400,4376_170 -4289_75981,261,4376_23643,Liffey Valley SC,105321885,1,4376_7778022_100400,4376_170 -4289_75981,262,4376_23644,Liffey Valley SC,105431885,1,4376_7778022_100400,4376_170 -4289_75981,263,4376_23645,Liffey Valley SC,105541885,1,4376_7778022_100400,4376_170 -4289_75981,264,4376_23646,Liffey Valley SC,105651885,1,4376_7778022_100400,4376_170 -4289_75981,265,4376_23647,Liffey Valley SC,105811885,1,4376_7778022_100400,4376_170 -4289_75981,266,4376_23648,Liffey Valley SC,105821885,1,4376_7778022_100400,4376_170 -4289_75981,267,4376_23649,Liffey Valley SC,106051885,1,4376_7778022_100400,4376_170 -4289_75963,260,4376_2365,Ticknock,105311925,1,4376_7778022_100150,4376_32 -4289_75981,268,4376_23650,Liffey Valley SC,106141885,1,4376_7778022_100400,4376_170 -4289_75981,269,4376_23651,Liffey Valley SC,106231885,1,4376_7778022_100400,4376_170 -4289_75981,259,4376_23652,Liffey Valley SC,105764711,1,4376_7778022_100320,4376_171 -4289_75981,270,4376_23653,Liffey Valley SC,105277485,1,4376_7778022_100270,4376_170 -4289_75981,146,4376_23654,Liffey Valley SC,105247485,1,4376_7778022_100270,4376_170 -4289_75981,271,4376_23655,Liffey Valley SC,105237485,1,4376_7778022_100270,4376_170 -4289_75981,115,4376_23656,Liffey Valley SC,105217485,1,4376_7778022_100270,4376_170 -4289_75981,260,4376_23657,Liffey Valley SC,105311907,1,4376_7778022_100370,4376_170 -4289_75981,261,4376_23658,Liffey Valley SC,105321907,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_23659,Liffey Valley SC,105431907,1,4376_7778022_100370,4376_170 -4289_75963,261,4376_2366,Ticknock,105321925,1,4376_7778022_100150,4376_32 -4289_75981,263,4376_23660,Liffey Valley SC,105541907,1,4376_7778022_100370,4376_170 -4289_75981,264,4376_23661,Liffey Valley SC,105651907,1,4376_7778022_100370,4376_170 -4289_75981,265,4376_23662,Liffey Valley SC,105811907,1,4376_7778022_100370,4376_170 -4289_75981,266,4376_23663,Liffey Valley SC,105821907,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_23664,Liffey Valley SC,106051907,1,4376_7778022_100370,4376_170 -4289_75981,268,4376_23665,Liffey Valley SC,106141907,1,4376_7778022_100370,4376_170 -4289_75981,269,4376_23666,Liffey Valley SC,106231907,1,4376_7778022_100370,4376_170 -4289_75981,259,4376_23667,Liffey Valley SC,105764737,1,4376_7778022_100350,4376_170 -4289_75981,260,4376_23668,Liffey Valley SC,105311933,1,4376_7778022_100380,4376_170 -4289_75981,261,4376_23669,Liffey Valley SC,105321933,1,4376_7778022_100380,4376_170 -4289_75963,262,4376_2367,Ticknock,105431925,1,4376_7778022_100150,4376_32 -4289_75981,262,4376_23670,Liffey Valley SC,105431933,1,4376_7778022_100380,4376_170 -4289_75981,263,4376_23671,Liffey Valley SC,105541933,1,4376_7778022_100380,4376_170 -4289_75981,264,4376_23672,Liffey Valley SC,105651933,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_23673,Liffey Valley SC,105811933,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_23674,Liffey Valley SC,105821933,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_23675,Liffey Valley SC,106051933,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_23676,Liffey Valley SC,106141933,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_23677,Liffey Valley SC,106231933,1,4376_7778022_100380,4376_170 -4289_75981,259,4376_23678,Liffey Valley SC,105764763,1,4376_7778022_100280,4376_170 -4289_75981,270,4376_23679,Liffey Valley SC,105277511,1,4376_7778022_100290,4376_171 -4289_75963,263,4376_2368,Ticknock,105541925,1,4376_7778022_100150,4376_32 -4289_75981,146,4376_23680,Liffey Valley SC,105247511,1,4376_7778022_100290,4376_171 -4289_75981,271,4376_23681,Liffey Valley SC,105237511,1,4376_7778022_100290,4376_171 -4289_75981,115,4376_23682,Liffey Valley SC,105217511,1,4376_7778022_100290,4376_171 -4289_75981,260,4376_23683,Liffey Valley SC,105311961,1,4376_7778022_100342,4376_170 -4289_75981,261,4376_23684,Liffey Valley SC,105321961,1,4376_7778022_100342,4376_170 -4289_75981,262,4376_23685,Liffey Valley SC,105431961,1,4376_7778022_100342,4376_170 -4289_75981,263,4376_23686,Liffey Valley SC,105541961,1,4376_7778022_100342,4376_170 -4289_75981,264,4376_23687,Liffey Valley SC,105651961,1,4376_7778022_100342,4376_170 -4289_75981,265,4376_23688,Liffey Valley SC,105811961,1,4376_7778022_100342,4376_170 -4289_75981,266,4376_23689,Liffey Valley SC,105821961,1,4376_7778022_100342,4376_170 -4289_75963,264,4376_2369,Ticknock,105651925,1,4376_7778022_100150,4376_32 -4289_75981,267,4376_23690,Liffey Valley SC,106051961,1,4376_7778022_100342,4376_170 -4289_75981,268,4376_23691,Liffey Valley SC,106141961,1,4376_7778022_100342,4376_170 -4289_75981,269,4376_23692,Liffey Valley SC,106231961,1,4376_7778022_100342,4376_170 -4289_75981,259,4376_23693,Liffey Valley SC,105764789,1,4376_7778022_100310,4376_170 -4289_75981,270,4376_23694,Liffey Valley SC,105277545,1,4376_7778022_100250,4376_170 -4289_75981,146,4376_23695,Liffey Valley SC,105247545,1,4376_7778022_100250,4376_170 -4289_75981,271,4376_23696,Liffey Valley SC,105237545,1,4376_7778022_100250,4376_170 -4289_75981,115,4376_23697,Liffey Valley SC,105217545,1,4376_7778022_100250,4376_170 -4289_75981,260,4376_23698,Liffey Valley SC,105311993,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_23699,Liffey Valley SC,105321993,1,4376_7778022_100350,4376_170 -4289_75960,265,4376_237,Sutton Station,105811976,0,4376_7778022_103104,4376_1 -4289_75963,265,4376_2370,Ticknock,105811925,1,4376_7778022_100150,4376_32 -4289_75981,262,4376_23700,Liffey Valley SC,105431993,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_23701,Liffey Valley SC,105541993,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_23702,Liffey Valley SC,105651993,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_23703,Liffey Valley SC,105811993,1,4376_7778022_100350,4376_170 -4289_75981,266,4376_23704,Liffey Valley SC,105821993,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_23705,Liffey Valley SC,106051993,1,4376_7778022_100350,4376_170 -4289_75981,268,4376_23706,Liffey Valley SC,106141993,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_23707,Liffey Valley SC,106231993,1,4376_7778022_100350,4376_170 -4289_75981,259,4376_23708,Liffey Valley SC,105764813,1,4376_7778022_100340,4376_171 -4289_75981,270,4376_23709,Liffey Valley SC,105277575,1,4376_7778022_100310,4376_170 -4289_75963,266,4376_2371,Ticknock,105821925,1,4376_7778022_100150,4376_32 -4289_75981,146,4376_23710,Liffey Valley SC,105247575,1,4376_7778022_100310,4376_170 -4289_75981,271,4376_23711,Liffey Valley SC,105237575,1,4376_7778022_100310,4376_170 -4289_75981,115,4376_23712,Liffey Valley SC,105217575,1,4376_7778022_100310,4376_170 -4289_75981,260,4376_23713,Liffey Valley SC,105312015,1,4376_7778022_100410,4376_170 -4289_75981,261,4376_23714,Liffey Valley SC,105322015,1,4376_7778022_100410,4376_170 -4289_75981,262,4376_23715,Liffey Valley SC,105432015,1,4376_7778022_100410,4376_170 -4289_75981,263,4376_23716,Liffey Valley SC,105542015,1,4376_7778022_100410,4376_170 -4289_75981,264,4376_23717,Liffey Valley SC,105652015,1,4376_7778022_100410,4376_170 -4289_75981,265,4376_23718,Liffey Valley SC,105812015,1,4376_7778022_100410,4376_170 -4289_75981,266,4376_23719,Liffey Valley SC,105822015,1,4376_7778022_100410,4376_170 -4289_75963,267,4376_2372,Ticknock,106051925,1,4376_7778022_100150,4376_32 -4289_75981,267,4376_23720,Liffey Valley SC,106052015,1,4376_7778022_100410,4376_170 -4289_75981,268,4376_23721,Liffey Valley SC,106142015,1,4376_7778022_100410,4376_170 -4289_75981,269,4376_23722,Liffey Valley SC,106232015,1,4376_7778022_100410,4376_170 -4289_75981,259,4376_23723,Liffey Valley SC,105764839,1,4376_7778022_100330,4376_171 -4289_75981,260,4376_23724,Liffey Valley SC,105312049,1,4376_7778022_100360,4376_170 -4289_75981,261,4376_23725,Liffey Valley SC,105322049,1,4376_7778022_100360,4376_170 -4289_75981,262,4376_23726,Liffey Valley SC,105432049,1,4376_7778022_100360,4376_170 -4289_75981,263,4376_23727,Liffey Valley SC,105542049,1,4376_7778022_100360,4376_170 -4289_75981,264,4376_23728,Liffey Valley SC,105652049,1,4376_7778022_100360,4376_170 -4289_75981,265,4376_23729,Liffey Valley SC,105812049,1,4376_7778022_100360,4376_170 -4289_75963,268,4376_2373,Ticknock,106141925,1,4376_7778022_100150,4376_32 -4289_75981,266,4376_23730,Liffey Valley SC,105822049,1,4376_7778022_100360,4376_170 -4289_75981,267,4376_23731,Liffey Valley SC,106052049,1,4376_7778022_100360,4376_170 -4289_75981,268,4376_23732,Liffey Valley SC,106142049,1,4376_7778022_100360,4376_170 -4289_75981,269,4376_23733,Liffey Valley SC,106232049,1,4376_7778022_100360,4376_170 -4289_75981,259,4376_23734,Liffey Valley SC,105764865,1,4376_7778022_100290,4376_171 -4289_75981,270,4376_23735,Liffey Valley SC,105277605,1,4376_7778022_100300,4376_172 -4289_75981,146,4376_23736,Liffey Valley SC,105247605,1,4376_7778022_100300,4376_172 -4289_75981,271,4376_23737,Liffey Valley SC,105237605,1,4376_7778022_100300,4376_172 -4289_75981,115,4376_23738,Liffey Valley SC,105217605,1,4376_7778022_100300,4376_172 -4289_75981,260,4376_23739,Liffey Valley SC,105312079,1,4376_7778022_100390,4376_170 -4289_75963,269,4376_2374,Ticknock,106231925,1,4376_7778022_100150,4376_32 -4289_75981,261,4376_23740,Liffey Valley SC,105322079,1,4376_7778022_100390,4376_170 -4289_75981,262,4376_23741,Liffey Valley SC,105432079,1,4376_7778022_100390,4376_170 -4289_75981,263,4376_23742,Liffey Valley SC,105542079,1,4376_7778022_100390,4376_170 -4289_75981,264,4376_23743,Liffey Valley SC,105652079,1,4376_7778022_100390,4376_170 -4289_75981,265,4376_23744,Liffey Valley SC,105812079,1,4376_7778022_100390,4376_170 -4289_75981,266,4376_23745,Liffey Valley SC,105822079,1,4376_7778022_100390,4376_170 -4289_75981,267,4376_23746,Liffey Valley SC,106052079,1,4376_7778022_100390,4376_170 -4289_75981,268,4376_23747,Liffey Valley SC,106142079,1,4376_7778022_100390,4376_170 -4289_75981,269,4376_23748,Liffey Valley SC,106232079,1,4376_7778022_100390,4376_170 -4289_75981,259,4376_23749,Liffey Valley SC,105764891,1,4376_7778022_100300,4376_171 -4289_75963,259,4376_2375,Ticknock,105764753,1,4376_7778022_100142,4376_33 -4289_75981,270,4376_23750,Liffey Valley SC,105277635,1,4376_7778022_100280,4376_170 -4289_75981,146,4376_23751,Liffey Valley SC,105247635,1,4376_7778022_100280,4376_170 -4289_75981,271,4376_23752,Liffey Valley SC,105237635,1,4376_7778022_100280,4376_170 -4289_75981,115,4376_23753,Liffey Valley SC,105217635,1,4376_7778022_100280,4376_170 -4289_75981,260,4376_23754,Liffey Valley SC,105312109,1,4376_7778022_100400,4376_170 -4289_75981,261,4376_23755,Liffey Valley SC,105322109,1,4376_7778022_100400,4376_170 -4289_75981,262,4376_23756,Liffey Valley SC,105432109,1,4376_7778022_100400,4376_170 -4289_75981,263,4376_23757,Liffey Valley SC,105542109,1,4376_7778022_100400,4376_170 -4289_75981,264,4376_23758,Liffey Valley SC,105652109,1,4376_7778022_100400,4376_170 -4289_75981,265,4376_23759,Liffey Valley SC,105812109,1,4376_7778022_100400,4376_170 -4289_75963,270,4376_2376,Ticknock,105277505,1,4376_7778022_100111,4376_34 -4289_75981,266,4376_23760,Liffey Valley SC,105822109,1,4376_7778022_100400,4376_170 -4289_75981,267,4376_23761,Liffey Valley SC,106052109,1,4376_7778022_100400,4376_170 -4289_75981,268,4376_23762,Liffey Valley SC,106142109,1,4376_7778022_100400,4376_170 -4289_75981,269,4376_23763,Liffey Valley SC,106232109,1,4376_7778022_100400,4376_170 -4289_75981,259,4376_23764,Liffey Valley SC,105764915,1,4376_7778022_100320,4376_171 -4289_75981,270,4376_23765,Liffey Valley SC,105277667,1,4376_7778022_100270,4376_170 -4289_75981,146,4376_23766,Liffey Valley SC,105247667,1,4376_7778022_100270,4376_170 -4289_75981,271,4376_23767,Liffey Valley SC,105237667,1,4376_7778022_100270,4376_170 -4289_75981,115,4376_23768,Liffey Valley SC,105217667,1,4376_7778022_100270,4376_170 -4289_75981,260,4376_23769,Liffey Valley SC,105312141,1,4376_7778022_100370,4376_170 -4289_75963,146,4376_2377,Ticknock,105247505,1,4376_7778022_100111,4376_34 -4289_75981,261,4376_23770,Liffey Valley SC,105322141,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_23771,Liffey Valley SC,105432141,1,4376_7778022_100370,4376_170 -4289_75981,263,4376_23772,Liffey Valley SC,105542141,1,4376_7778022_100370,4376_170 -4289_75981,264,4376_23773,Liffey Valley SC,105652141,1,4376_7778022_100370,4376_170 -4289_75981,265,4376_23774,Liffey Valley SC,105812141,1,4376_7778022_100370,4376_170 -4289_75981,266,4376_23775,Liffey Valley SC,105822141,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_23776,Liffey Valley SC,106052141,1,4376_7778022_100370,4376_170 -4289_75981,268,4376_23777,Liffey Valley SC,106142141,1,4376_7778022_100370,4376_170 -4289_75981,269,4376_23778,Liffey Valley SC,106232141,1,4376_7778022_100370,4376_170 -4289_75981,259,4376_23779,Liffey Valley SC,105764943,1,4376_7778022_100350,4376_171 -4289_75963,271,4376_2378,Ticknock,105237505,1,4376_7778022_100111,4376_34 -4289_75981,260,4376_23780,Liffey Valley SC,105312187,1,4376_7778022_100380,4376_170 -4289_75981,261,4376_23781,Liffey Valley SC,105322187,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_23782,Liffey Valley SC,105432187,1,4376_7778022_100380,4376_170 -4289_75981,263,4376_23783,Liffey Valley SC,105542187,1,4376_7778022_100380,4376_170 -4289_75981,264,4376_23784,Liffey Valley SC,105652187,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_23785,Liffey Valley SC,105812187,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_23786,Liffey Valley SC,105822187,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_23787,Liffey Valley SC,106052187,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_23788,Liffey Valley SC,106142187,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_23789,Liffey Valley SC,106232187,1,4376_7778022_100380,4376_170 -4289_75963,115,4376_2379,Ticknock,105217505,1,4376_7778022_100111,4376_34 -4289_75981,259,4376_23790,Liffey Valley SC,105764967,1,4376_7778022_100280,4376_171 -4289_75981,270,4376_23791,Liffey Valley SC,105277695,1,4376_7778022_100290,4376_172 -4289_75981,146,4376_23792,Liffey Valley SC,105247695,1,4376_7778022_100290,4376_172 -4289_75981,271,4376_23793,Liffey Valley SC,105237695,1,4376_7778022_100290,4376_172 -4289_75981,115,4376_23794,Liffey Valley SC,105217695,1,4376_7778022_100290,4376_172 -4289_75981,260,4376_23795,Liffey Valley SC,105312231,1,4376_7778022_100342,4376_170 -4289_75981,261,4376_23796,Liffey Valley SC,105322231,1,4376_7778022_100342,4376_170 -4289_75981,262,4376_23797,Liffey Valley SC,105432231,1,4376_7778022_100342,4376_170 -4289_75981,263,4376_23798,Liffey Valley SC,105542231,1,4376_7778022_100342,4376_170 -4289_75981,264,4376_23799,Liffey Valley SC,105652231,1,4376_7778022_100342,4376_170 -4289_75960,266,4376_238,Sutton Station,105821976,0,4376_7778022_103104,4376_1 -4289_75963,260,4376_2380,Ticknock,105312037,1,4376_7778022_100160,4376_32 -4289_75981,265,4376_23800,Liffey Valley SC,105812231,1,4376_7778022_100342,4376_170 -4289_75981,266,4376_23801,Liffey Valley SC,105822231,1,4376_7778022_100342,4376_170 -4289_75981,267,4376_23802,Liffey Valley SC,106052231,1,4376_7778022_100342,4376_170 -4289_75981,268,4376_23803,Liffey Valley SC,106142231,1,4376_7778022_100342,4376_170 -4289_75981,269,4376_23804,Liffey Valley SC,106232231,1,4376_7778022_100342,4376_170 -4289_75981,259,4376_23805,Liffey Valley SC,105764993,1,4376_7778022_100310,4376_171 -4289_75981,270,4376_23806,Liffey Valley SC,105277727,1,4376_7778022_100250,4376_170 -4289_75981,146,4376_23807,Liffey Valley SC,105247727,1,4376_7778022_100250,4376_170 -4289_75981,271,4376_23808,Liffey Valley SC,105237727,1,4376_7778022_100250,4376_170 -4289_75981,115,4376_23809,Liffey Valley SC,105217727,1,4376_7778022_100250,4376_170 -4289_75963,261,4376_2381,Ticknock,105322037,1,4376_7778022_100160,4376_32 -4289_75981,260,4376_23810,Liffey Valley SC,105312269,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_23811,Liffey Valley SC,105322269,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_23812,Liffey Valley SC,105432269,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_23813,Liffey Valley SC,105542269,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_23814,Liffey Valley SC,105652269,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_23815,Liffey Valley SC,105812269,1,4376_7778022_100350,4376_170 -4289_75981,266,4376_23816,Liffey Valley SC,105822269,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_23817,Liffey Valley SC,106052269,1,4376_7778022_100350,4376_170 -4289_75981,268,4376_23818,Liffey Valley SC,106142269,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_23819,Liffey Valley SC,106232269,1,4376_7778022_100350,4376_170 -4289_75963,262,4376_2382,Ticknock,105432037,1,4376_7778022_100160,4376_32 -4289_75981,259,4376_23820,Liffey Valley SC,105765017,1,4376_7778022_100340,4376_171 -4289_75981,270,4376_23821,Liffey Valley SC,105277757,1,4376_7778022_100310,4376_170 -4289_75981,146,4376_23822,Liffey Valley SC,105247757,1,4376_7778022_100310,4376_170 -4289_75981,271,4376_23823,Liffey Valley SC,105237757,1,4376_7778022_100310,4376_170 -4289_75981,115,4376_23824,Liffey Valley SC,105217757,1,4376_7778022_100310,4376_170 -4289_75981,260,4376_23825,Liffey Valley SC,105312297,1,4376_7778022_100410,4376_170 -4289_75981,261,4376_23826,Liffey Valley SC,105322297,1,4376_7778022_100410,4376_170 -4289_75981,262,4376_23827,Liffey Valley SC,105432297,1,4376_7778022_100410,4376_170 -4289_75981,263,4376_23828,Liffey Valley SC,105542297,1,4376_7778022_100410,4376_170 -4289_75981,264,4376_23829,Liffey Valley SC,105652297,1,4376_7778022_100410,4376_170 -4289_75963,263,4376_2383,Ticknock,105542037,1,4376_7778022_100160,4376_32 -4289_75981,265,4376_23830,Liffey Valley SC,105812297,1,4376_7778022_100410,4376_170 -4289_75981,266,4376_23831,Liffey Valley SC,105822297,1,4376_7778022_100410,4376_170 -4289_75981,267,4376_23832,Liffey Valley SC,106052297,1,4376_7778022_100410,4376_170 -4289_75981,268,4376_23833,Liffey Valley SC,106142297,1,4376_7778022_100410,4376_170 -4289_75981,269,4376_23834,Liffey Valley SC,106232297,1,4376_7778022_100410,4376_170 -4289_75981,259,4376_23835,Liffey Valley SC,105765045,1,4376_7778022_100330,4376_171 -4289_75981,260,4376_23836,Liffey Valley SC,105312323,1,4376_7778022_100360,4376_170 -4289_75981,261,4376_23837,Liffey Valley SC,105322323,1,4376_7778022_100360,4376_170 -4289_75981,262,4376_23838,Liffey Valley SC,105432323,1,4376_7778022_100360,4376_170 -4289_75981,263,4376_23839,Liffey Valley SC,105542323,1,4376_7778022_100360,4376_170 -4289_75963,264,4376_2384,Ticknock,105652037,1,4376_7778022_100160,4376_32 -4289_75981,264,4376_23840,Liffey Valley SC,105652323,1,4376_7778022_100360,4376_170 -4289_75981,265,4376_23841,Liffey Valley SC,105812323,1,4376_7778022_100360,4376_170 -4289_75981,266,4376_23842,Liffey Valley SC,105822323,1,4376_7778022_100360,4376_170 -4289_75981,267,4376_23843,Liffey Valley SC,106052323,1,4376_7778022_100360,4376_170 -4289_75981,268,4376_23844,Liffey Valley SC,106142323,1,4376_7778022_100360,4376_170 -4289_75981,269,4376_23845,Liffey Valley SC,106232323,1,4376_7778022_100360,4376_170 -4289_75981,259,4376_23846,Liffey Valley SC,105765069,1,4376_7778022_100290,4376_171 -4289_75981,270,4376_23847,Liffey Valley SC,105277781,1,4376_7778022_100300,4376_172 -4289_75981,146,4376_23848,Liffey Valley SC,105247781,1,4376_7778022_100300,4376_172 -4289_75981,271,4376_23849,Liffey Valley SC,105237781,1,4376_7778022_100300,4376_172 -4289_75963,265,4376_2385,Ticknock,105812037,1,4376_7778022_100160,4376_32 -4289_75981,115,4376_23850,Liffey Valley SC,105217781,1,4376_7778022_100300,4376_172 -4289_75981,260,4376_23851,Liffey Valley SC,105312351,1,4376_7778022_100390,4376_170 -4289_75981,261,4376_23852,Liffey Valley SC,105322351,1,4376_7778022_100390,4376_170 -4289_75981,262,4376_23853,Liffey Valley SC,105432351,1,4376_7778022_100390,4376_170 -4289_75981,263,4376_23854,Liffey Valley SC,105542351,1,4376_7778022_100390,4376_170 -4289_75981,264,4376_23855,Liffey Valley SC,105652351,1,4376_7778022_100390,4376_170 -4289_75981,265,4376_23856,Liffey Valley SC,105812351,1,4376_7778022_100390,4376_170 -4289_75981,266,4376_23857,Liffey Valley SC,105822351,1,4376_7778022_100390,4376_170 -4289_75981,267,4376_23858,Liffey Valley SC,106052351,1,4376_7778022_100390,4376_170 -4289_75981,268,4376_23859,Liffey Valley SC,106142351,1,4376_7778022_100390,4376_170 -4289_75963,266,4376_2386,Ticknock,105822037,1,4376_7778022_100160,4376_32 -4289_75981,269,4376_23860,Liffey Valley SC,106232351,1,4376_7778022_100390,4376_170 -4289_75981,259,4376_23861,Liffey Valley SC,105765097,1,4376_7778022_100300,4376_171 -4289_75981,270,4376_23862,Liffey Valley SC,105277817,1,4376_7778022_100280,4376_170 -4289_75981,146,4376_23863,Liffey Valley SC,105247817,1,4376_7778022_100280,4376_170 -4289_75981,271,4376_23864,Liffey Valley SC,105237817,1,4376_7778022_100280,4376_170 -4289_75981,115,4376_23865,Liffey Valley SC,105217817,1,4376_7778022_100280,4376_170 -4289_75981,260,4376_23866,Liffey Valley SC,105312385,1,4376_7778022_100400,4376_170 -4289_75981,261,4376_23867,Liffey Valley SC,105322385,1,4376_7778022_100400,4376_170 -4289_75981,262,4376_23868,Liffey Valley SC,105432385,1,4376_7778022_100400,4376_170 -4289_75981,263,4376_23869,Liffey Valley SC,105542385,1,4376_7778022_100400,4376_170 -4289_75963,267,4376_2387,Ticknock,106052037,1,4376_7778022_100160,4376_32 -4289_75981,264,4376_23870,Liffey Valley SC,105652385,1,4376_7778022_100400,4376_170 -4289_75981,265,4376_23871,Liffey Valley SC,105812385,1,4376_7778022_100400,4376_170 -4289_75981,266,4376_23872,Liffey Valley SC,105822385,1,4376_7778022_100400,4376_170 -4289_75981,267,4376_23873,Liffey Valley SC,106052385,1,4376_7778022_100400,4376_170 -4289_75981,268,4376_23874,Liffey Valley SC,106142385,1,4376_7778022_100400,4376_170 -4289_75981,269,4376_23875,Liffey Valley SC,106232385,1,4376_7778022_100400,4376_170 -4289_75981,259,4376_23876,Liffey Valley SC,105765119,1,4376_7778022_100320,4376_171 -4289_75981,270,4376_23877,Liffey Valley SC,105277843,1,4376_7778022_100270,4376_170 -4289_75981,146,4376_23878,Liffey Valley SC,105247843,1,4376_7778022_100270,4376_170 -4289_75981,271,4376_23879,Liffey Valley SC,105237843,1,4376_7778022_100270,4376_170 -4289_75963,268,4376_2388,Ticknock,106142037,1,4376_7778022_100160,4376_32 -4289_75981,115,4376_23880,Liffey Valley SC,105217843,1,4376_7778022_100270,4376_170 -4289_75981,260,4376_23881,Liffey Valley SC,105312411,1,4376_7778022_100370,4376_170 -4289_75981,261,4376_23882,Liffey Valley SC,105322411,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_23883,Liffey Valley SC,105432411,1,4376_7778022_100370,4376_170 -4289_75981,263,4376_23884,Liffey Valley SC,105542411,1,4376_7778022_100370,4376_170 -4289_75981,264,4376_23885,Liffey Valley SC,105652411,1,4376_7778022_100370,4376_170 -4289_75981,265,4376_23886,Liffey Valley SC,105812411,1,4376_7778022_100370,4376_170 -4289_75981,266,4376_23887,Liffey Valley SC,105822411,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_23888,Liffey Valley SC,106052411,1,4376_7778022_100370,4376_170 -4289_75981,268,4376_23889,Liffey Valley SC,106142411,1,4376_7778022_100370,4376_170 -4289_75963,269,4376_2389,Ticknock,106232037,1,4376_7778022_100160,4376_32 -4289_75981,269,4376_23890,Liffey Valley SC,106232411,1,4376_7778022_100370,4376_170 -4289_75981,259,4376_23891,Liffey Valley SC,105765145,1,4376_7778022_100350,4376_171 -4289_75981,260,4376_23892,Liffey Valley SC,105312441,1,4376_7778022_100380,4376_170 -4289_75981,261,4376_23893,Liffey Valley SC,105322441,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_23894,Liffey Valley SC,105432441,1,4376_7778022_100380,4376_170 -4289_75981,263,4376_23895,Liffey Valley SC,105542441,1,4376_7778022_100380,4376_170 -4289_75981,264,4376_23896,Liffey Valley SC,105652441,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_23897,Liffey Valley SC,105812441,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_23898,Liffey Valley SC,105822441,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_23899,Liffey Valley SC,106052441,1,4376_7778022_100380,4376_170 -4289_75960,267,4376_239,Sutton Station,106051976,0,4376_7778022_103104,4376_1 -4289_75963,259,4376_2390,Ticknock,105764857,1,4376_7778022_100150,4376_33 -4289_75981,268,4376_23900,Liffey Valley SC,106142441,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_23901,Liffey Valley SC,106232441,1,4376_7778022_100380,4376_170 -4289_75981,259,4376_23902,Liffey Valley SC,105765175,1,4376_7778022_100280,4376_171 -4289_75981,270,4376_23903,Liffey Valley SC,105277875,1,4376_7778022_100290,4376_172 -4289_75981,146,4376_23904,Liffey Valley SC,105247875,1,4376_7778022_100290,4376_172 -4289_75981,271,4376_23905,Liffey Valley SC,105237875,1,4376_7778022_100290,4376_172 -4289_75981,115,4376_23906,Liffey Valley SC,105217875,1,4376_7778022_100290,4376_172 -4289_75981,260,4376_23907,Liffey Valley SC,105312467,1,4376_7778022_100342,4376_170 -4289_75981,261,4376_23908,Liffey Valley SC,105322467,1,4376_7778022_100342,4376_170 -4289_75981,262,4376_23909,Liffey Valley SC,105432467,1,4376_7778022_100342,4376_170 -4289_75963,270,4376_2391,Ticknock,105277603,1,4376_7778022_100121,4376_32 -4289_75981,263,4376_23910,Liffey Valley SC,105542467,1,4376_7778022_100342,4376_170 -4289_75981,264,4376_23911,Liffey Valley SC,105652467,1,4376_7778022_100342,4376_170 -4289_75981,265,4376_23912,Liffey Valley SC,105812467,1,4376_7778022_100342,4376_170 -4289_75981,266,4376_23913,Liffey Valley SC,105822467,1,4376_7778022_100342,4376_170 -4289_75981,267,4376_23914,Liffey Valley SC,106052467,1,4376_7778022_100342,4376_170 -4289_75981,268,4376_23915,Liffey Valley SC,106142467,1,4376_7778022_100342,4376_170 -4289_75981,269,4376_23916,Liffey Valley SC,106232467,1,4376_7778022_100342,4376_170 -4289_75981,259,4376_23917,Liffey Valley SC,105765197,1,4376_7778022_100340,4376_171 -4289_75981,270,4376_23918,Liffey Valley SC,105277903,1,4376_7778022_100300,4376_170 -4289_75981,146,4376_23919,Liffey Valley SC,105247903,1,4376_7778022_100300,4376_170 -4289_75963,146,4376_2392,Ticknock,105247603,1,4376_7778022_100121,4376_32 -4289_75981,271,4376_23920,Liffey Valley SC,105237903,1,4376_7778022_100300,4376_170 -4289_75981,115,4376_23921,Liffey Valley SC,105217903,1,4376_7778022_100300,4376_170 -4289_75981,260,4376_23922,Liffey Valley SC,105312497,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_23923,Liffey Valley SC,105322497,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_23924,Liffey Valley SC,105432497,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_23925,Liffey Valley SC,105542497,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_23926,Liffey Valley SC,105652497,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_23927,Liffey Valley SC,105812497,1,4376_7778022_100350,4376_170 -4289_75981,266,4376_23928,Liffey Valley SC,105822497,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_23929,Liffey Valley SC,106052497,1,4376_7778022_100350,4376_170 -4289_75963,271,4376_2393,Ticknock,105237603,1,4376_7778022_100121,4376_32 -4289_75981,268,4376_23930,Liffey Valley SC,106142497,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_23931,Liffey Valley SC,106232497,1,4376_7778022_100350,4376_170 -4289_75981,259,4376_23932,Liffey Valley SC,105765221,1,4376_7778022_100330,4376_171 -4289_75981,270,4376_23933,Liffey Valley SC,105277935,1,4376_7778022_100310,4376_170 -4289_75981,146,4376_23934,Liffey Valley SC,105247935,1,4376_7778022_100310,4376_170 -4289_75981,271,4376_23935,Liffey Valley SC,105237935,1,4376_7778022_100310,4376_170 -4289_75981,115,4376_23936,Liffey Valley SC,105217935,1,4376_7778022_100310,4376_170 -4289_75981,260,4376_23937,Liffey Valley SC,105312521,1,4376_7778022_100410,4376_170 -4289_75981,261,4376_23938,Liffey Valley SC,105322521,1,4376_7778022_100410,4376_170 -4289_75981,262,4376_23939,Liffey Valley SC,105432521,1,4376_7778022_100410,4376_170 -4289_75963,115,4376_2394,Ticknock,105217603,1,4376_7778022_100121,4376_32 -4289_75981,263,4376_23940,Liffey Valley SC,105542521,1,4376_7778022_100410,4376_170 -4289_75981,264,4376_23941,Liffey Valley SC,105652521,1,4376_7778022_100410,4376_170 -4289_75981,265,4376_23942,Liffey Valley SC,105812521,1,4376_7778022_100410,4376_170 -4289_75981,266,4376_23943,Liffey Valley SC,105822521,1,4376_7778022_100410,4376_170 -4289_75981,267,4376_23944,Liffey Valley SC,106052521,1,4376_7778022_100410,4376_170 -4289_75981,268,4376_23945,Liffey Valley SC,106142521,1,4376_7778022_100410,4376_170 -4289_75981,269,4376_23946,Liffey Valley SC,106232521,1,4376_7778022_100410,4376_170 -4289_75981,259,4376_23947,Liffey Valley SC,105765249,1,4376_7778022_100290,4376_171 -4289_75981,260,4376_23948,Liffey Valley SC,105312553,1,4376_7778022_100360,4376_170 -4289_75981,261,4376_23949,Liffey Valley SC,105322553,1,4376_7778022_100360,4376_170 -4289_75963,259,4376_2395,Ticknock,105764957,1,4376_7778022_100142,4376_32 -4289_75981,262,4376_23950,Liffey Valley SC,105432553,1,4376_7778022_100360,4376_170 -4289_75981,263,4376_23951,Liffey Valley SC,105542553,1,4376_7778022_100360,4376_170 -4289_75981,264,4376_23952,Liffey Valley SC,105652553,1,4376_7778022_100360,4376_170 -4289_75981,265,4376_23953,Liffey Valley SC,105812553,1,4376_7778022_100360,4376_170 -4289_75981,266,4376_23954,Liffey Valley SC,105822553,1,4376_7778022_100360,4376_170 -4289_75981,267,4376_23955,Liffey Valley SC,106052553,1,4376_7778022_100360,4376_170 -4289_75981,268,4376_23956,Liffey Valley SC,106142553,1,4376_7778022_100360,4376_170 -4289_75981,269,4376_23957,Liffey Valley SC,106232553,1,4376_7778022_100360,4376_170 -4289_75981,259,4376_23958,Liffey Valley SC,105765273,1,4376_7778022_100300,4376_171 -4289_75981,270,4376_23959,Liffey Valley SC,105277965,1,4376_7778022_100270,4376_171 -4289_75963,270,4376_2396,Ticknock,105277685,1,4376_7778022_100130,4376_32 -4289_75981,146,4376_23960,Liffey Valley SC,105247965,1,4376_7778022_100270,4376_171 -4289_75981,271,4376_23961,Liffey Valley SC,105237965,1,4376_7778022_100270,4376_171 -4289_75981,115,4376_23962,Liffey Valley SC,105217965,1,4376_7778022_100270,4376_171 -4289_75981,260,4376_23963,Liffey Valley SC,105312579,1,4376_7778022_100400,4376_170 -4289_75981,261,4376_23964,Liffey Valley SC,105322579,1,4376_7778022_100400,4376_170 -4289_75981,262,4376_23965,Liffey Valley SC,105432579,1,4376_7778022_100400,4376_170 -4289_75981,263,4376_23966,Liffey Valley SC,105542579,1,4376_7778022_100400,4376_170 -4289_75981,264,4376_23967,Liffey Valley SC,105652579,1,4376_7778022_100400,4376_170 -4289_75981,265,4376_23968,Liffey Valley SC,105812579,1,4376_7778022_100400,4376_170 -4289_75981,266,4376_23969,Liffey Valley SC,105822579,1,4376_7778022_100400,4376_170 -4289_75963,146,4376_2397,Ticknock,105247685,1,4376_7778022_100130,4376_32 -4289_75981,267,4376_23970,Liffey Valley SC,106052579,1,4376_7778022_100400,4376_170 -4289_75981,268,4376_23971,Liffey Valley SC,106142579,1,4376_7778022_100400,4376_170 -4289_75981,269,4376_23972,Liffey Valley SC,106232579,1,4376_7778022_100400,4376_170 -4289_75981,259,4376_23973,Liffey Valley SC,105765301,1,4376_7778022_100320,4376_170 -4289_75981,260,4376_23974,Liffey Valley SC,105312605,1,4376_7778022_100370,4376_170 -4289_75981,261,4376_23975,Liffey Valley SC,105322605,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_23976,Liffey Valley SC,105432605,1,4376_7778022_100370,4376_170 -4289_75981,263,4376_23977,Liffey Valley SC,105542605,1,4376_7778022_100370,4376_170 -4289_75981,264,4376_23978,Liffey Valley SC,105652605,1,4376_7778022_100370,4376_170 -4289_75981,265,4376_23979,Liffey Valley SC,105812605,1,4376_7778022_100370,4376_170 -4289_75963,271,4376_2398,Ticknock,105237685,1,4376_7778022_100130,4376_32 -4289_75981,266,4376_23980,Liffey Valley SC,105822605,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_23981,Liffey Valley SC,106052605,1,4376_7778022_100370,4376_170 -4289_75981,268,4376_23982,Liffey Valley SC,106142605,1,4376_7778022_100370,4376_170 -4289_75981,269,4376_23983,Liffey Valley SC,106232605,1,4376_7778022_100370,4376_170 -4289_75981,270,4376_23984,Liffey Valley SC,105277999,1,4376_7778022_100290,4376_171 -4289_75981,146,4376_23985,Liffey Valley SC,105247999,1,4376_7778022_100290,4376_171 -4289_75981,271,4376_23986,Liffey Valley SC,105237999,1,4376_7778022_100290,4376_171 -4289_75981,115,4376_23987,Liffey Valley SC,105217999,1,4376_7778022_100290,4376_171 -4289_75981,259,4376_23988,Liffey Valley SC,105765335,1,4376_7778022_100340,4376_170 -4289_75981,260,4376_23989,Liffey Valley SC,105312631,1,4376_7778022_100380,4376_170 -4289_75963,115,4376_2399,Ticknock,105217685,1,4376_7778022_100130,4376_32 -4289_75981,261,4376_23990,Liffey Valley SC,105322631,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_23991,Liffey Valley SC,105432631,1,4376_7778022_100380,4376_170 -4289_75981,263,4376_23992,Liffey Valley SC,105542631,1,4376_7778022_100380,4376_170 -4289_75981,264,4376_23993,Liffey Valley SC,105652631,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_23994,Liffey Valley SC,105812631,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_23995,Liffey Valley SC,105822631,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_23996,Liffey Valley SC,106052631,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_23997,Liffey Valley SC,106142631,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_23998,Liffey Valley SC,106232631,1,4376_7778022_100380,4376_170 -4289_75981,260,4376_23999,Liffey Valley SC,105312657,1,4376_7778022_100342,4376_170 -4289_75960,261,4376_24,Sutton Station,105321106,0,4376_7778022_103108,4376_1 -4289_75960,268,4376_240,Sutton Station,106141976,0,4376_7778022_103104,4376_1 -4289_75963,260,4376_2400,Ticknock,105312197,1,4376_7778022_100150,4376_32 -4289_75981,261,4376_24000,Liffey Valley SC,105322657,1,4376_7778022_100342,4376_170 -4289_75981,262,4376_24001,Liffey Valley SC,105432657,1,4376_7778022_100342,4376_170 -4289_75981,263,4376_24002,Liffey Valley SC,105542657,1,4376_7778022_100342,4376_170 -4289_75981,264,4376_24003,Liffey Valley SC,105652657,1,4376_7778022_100342,4376_170 -4289_75981,265,4376_24004,Liffey Valley SC,105812657,1,4376_7778022_100342,4376_170 -4289_75981,266,4376_24005,Liffey Valley SC,105822657,1,4376_7778022_100342,4376_170 -4289_75981,267,4376_24006,Liffey Valley SC,106052657,1,4376_7778022_100342,4376_170 -4289_75981,268,4376_24007,Liffey Valley SC,106142657,1,4376_7778022_100342,4376_170 -4289_75981,269,4376_24008,Liffey Valley SC,106232657,1,4376_7778022_100342,4376_170 -4289_75981,259,4376_24009,Liffey Valley SC,105765365,1,4376_7778022_100330,4376_171 -4289_75963,261,4376_2401,Ticknock,105322197,1,4376_7778022_100150,4376_32 -4289_75981,270,4376_24010,Liffey Valley SC,105278045,1,4376_7778022_100250,4376_172 -4289_75981,146,4376_24011,Liffey Valley SC,105248045,1,4376_7778022_100250,4376_172 -4289_75981,271,4376_24012,Liffey Valley SC,105238045,1,4376_7778022_100250,4376_172 -4289_75981,115,4376_24013,Liffey Valley SC,105218045,1,4376_7778022_100250,4376_172 -4289_75981,260,4376_24014,Liffey Valley SC,105312679,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_24015,Liffey Valley SC,105322679,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_24016,Liffey Valley SC,105432679,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_24017,Liffey Valley SC,105542679,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_24018,Liffey Valley SC,105652679,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_24019,Liffey Valley SC,105812679,1,4376_7778022_100350,4376_170 -4289_75963,262,4376_2402,Ticknock,105432197,1,4376_7778022_100150,4376_32 -4289_75981,266,4376_24020,Liffey Valley SC,105822679,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_24021,Liffey Valley SC,106052679,1,4376_7778022_100350,4376_170 -4289_75981,268,4376_24022,Liffey Valley SC,106142679,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_24023,Liffey Valley SC,106232679,1,4376_7778022_100350,4376_170 -4289_75981,259,4376_24024,Liffey Valley SC,105765389,1,4376_7778022_100300,4376_170 -4289_75981,260,4376_24025,Liffey Valley SC,105312699,1,4376_7778022_100410,4376_170 -4289_75981,261,4376_24026,Liffey Valley SC,105322699,1,4376_7778022_100410,4376_170 -4289_75981,262,4376_24027,Liffey Valley SC,105432699,1,4376_7778022_100410,4376_170 -4289_75981,263,4376_24028,Liffey Valley SC,105542699,1,4376_7778022_100410,4376_170 -4289_75981,264,4376_24029,Liffey Valley SC,105652699,1,4376_7778022_100410,4376_170 -4289_75963,263,4376_2403,Ticknock,105542197,1,4376_7778022_100150,4376_32 -4289_75981,265,4376_24030,Liffey Valley SC,105812699,1,4376_7778022_100410,4376_170 -4289_75981,266,4376_24031,Liffey Valley SC,105822699,1,4376_7778022_100410,4376_170 -4289_75981,267,4376_24032,Liffey Valley SC,106052699,1,4376_7778022_100410,4376_170 -4289_75981,268,4376_24033,Liffey Valley SC,106142699,1,4376_7778022_100410,4376_170 -4289_75981,269,4376_24034,Liffey Valley SC,106232699,1,4376_7778022_100410,4376_170 -4289_75981,270,4376_24035,Liffey Valley SC,105278075,1,4376_7778022_100342,4376_171 -4289_75981,146,4376_24036,Liffey Valley SC,105248075,1,4376_7778022_100342,4376_171 -4289_75981,271,4376_24037,Liffey Valley SC,105238075,1,4376_7778022_100342,4376_171 -4289_75981,115,4376_24038,Liffey Valley SC,105218075,1,4376_7778022_100342,4376_171 -4289_75981,259,4376_24039,Liffey Valley SC,105765421,1,4376_7778022_100320,4376_170 -4289_75963,264,4376_2404,Ticknock,105652197,1,4376_7778022_100150,4376_32 -4289_75981,260,4376_24040,Liffey Valley SC,105312727,1,4376_7778022_100360,4376_170 -4289_75981,261,4376_24041,Liffey Valley SC,105322727,1,4376_7778022_100360,4376_170 -4289_75981,262,4376_24042,Liffey Valley SC,105432727,1,4376_7778022_100360,4376_170 -4289_75981,263,4376_24043,Liffey Valley SC,105542727,1,4376_7778022_100360,4376_170 -4289_75981,264,4376_24044,Liffey Valley SC,105652727,1,4376_7778022_100360,4376_170 -4289_75981,265,4376_24045,Liffey Valley SC,105812727,1,4376_7778022_100360,4376_170 -4289_75981,266,4376_24046,Liffey Valley SC,105822727,1,4376_7778022_100360,4376_170 -4289_75981,267,4376_24047,Liffey Valley SC,106052727,1,4376_7778022_100360,4376_170 -4289_75981,268,4376_24048,Liffey Valley SC,106142727,1,4376_7778022_100360,4376_170 -4289_75981,269,4376_24049,Liffey Valley SC,106232727,1,4376_7778022_100360,4376_170 -4289_75963,265,4376_2405,Ticknock,105812197,1,4376_7778022_100150,4376_32 -4289_75981,260,4376_24050,Liffey Valley SC,105312753,1,4376_7778022_100370,4376_170 -4289_75981,261,4376_24051,Liffey Valley SC,105322753,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_24052,Liffey Valley SC,105432753,1,4376_7778022_100370,4376_170 -4289_75981,263,4376_24053,Liffey Valley SC,105542753,1,4376_7778022_100370,4376_170 -4289_75981,264,4376_24054,Liffey Valley SC,105652753,1,4376_7778022_100370,4376_170 -4289_75981,265,4376_24055,Liffey Valley SC,105812753,1,4376_7778022_100370,4376_170 -4289_75981,266,4376_24056,Liffey Valley SC,105822753,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_24057,Liffey Valley SC,106052753,1,4376_7778022_100370,4376_170 -4289_75981,268,4376_24058,Liffey Valley SC,106142753,1,4376_7778022_100370,4376_170 -4289_75981,269,4376_24059,Liffey Valley SC,106232753,1,4376_7778022_100370,4376_170 -4289_75963,266,4376_2406,Ticknock,105822197,1,4376_7778022_100150,4376_32 -4289_75981,259,4376_24060,Liffey Valley SC,105765453,1,4376_7778022_100340,4376_170 -4289_75981,270,4376_24061,Liffey Valley SC,105278127,1,4376_7778022_100330,4376_170 -4289_75981,146,4376_24062,Liffey Valley SC,105248127,1,4376_7778022_100330,4376_170 -4289_75981,271,4376_24063,Liffey Valley SC,105238127,1,4376_7778022_100330,4376_170 -4289_75981,115,4376_24064,Liffey Valley SC,105218127,1,4376_7778022_100330,4376_170 -4289_75981,260,4376_24065,Liffey Valley SC,105312775,1,4376_7778022_100380,4376_170 -4289_75981,261,4376_24066,Liffey Valley SC,105322775,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_24067,Liffey Valley SC,105432775,1,4376_7778022_100380,4376_170 -4289_75981,263,4376_24068,Liffey Valley SC,105542775,1,4376_7778022_100380,4376_170 -4289_75981,264,4376_24069,Liffey Valley SC,105652775,1,4376_7778022_100380,4376_170 -4289_75963,267,4376_2407,Ticknock,106052197,1,4376_7778022_100150,4376_32 -4289_75981,265,4376_24070,Liffey Valley SC,105812775,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_24071,Liffey Valley SC,105822775,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_24072,Liffey Valley SC,106052775,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_24073,Liffey Valley SC,106142775,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_24074,Liffey Valley SC,106232775,1,4376_7778022_100380,4376_170 -4289_75981,259,4376_24075,Liffey Valley SC,105765477,1,4376_7778022_100330,4376_170 -4289_75981,260,4376_24076,Liffey Valley SC,105312797,1,4376_7778022_100342,4376_170 -4289_75981,261,4376_24077,Liffey Valley SC,105322797,1,4376_7778022_100342,4376_170 -4289_75981,262,4376_24078,Liffey Valley SC,105432797,1,4376_7778022_100342,4376_170 -4289_75981,263,4376_24079,Liffey Valley SC,105542797,1,4376_7778022_100342,4376_170 -4289_75963,268,4376_2408,Ticknock,106142197,1,4376_7778022_100150,4376_32 -4289_75981,264,4376_24080,Liffey Valley SC,105652797,1,4376_7778022_100342,4376_170 -4289_75981,265,4376_24081,Liffey Valley SC,105812797,1,4376_7778022_100342,4376_170 -4289_75981,266,4376_24082,Liffey Valley SC,105822797,1,4376_7778022_100342,4376_170 -4289_75981,267,4376_24083,Liffey Valley SC,106052797,1,4376_7778022_100342,4376_170 -4289_75981,268,4376_24084,Liffey Valley SC,106142797,1,4376_7778022_100342,4376_170 -4289_75981,269,4376_24085,Liffey Valley SC,106232797,1,4376_7778022_100342,4376_170 -4289_75981,270,4376_24086,Liffey Valley SC,105278155,1,4376_7778022_100320,4376_171 -4289_75981,146,4376_24087,Liffey Valley SC,105248155,1,4376_7778022_100320,4376_171 -4289_75981,271,4376_24088,Liffey Valley SC,105238155,1,4376_7778022_100320,4376_171 -4289_75981,115,4376_24089,Liffey Valley SC,105218155,1,4376_7778022_100320,4376_171 -4289_75963,269,4376_2409,Ticknock,106232197,1,4376_7778022_100150,4376_32 -4289_75981,259,4376_24090,Liffey Valley SC,105765507,1,4376_7778022_100300,4376_170 -4289_75981,260,4376_24091,Liffey Valley SC,105312825,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_24092,Liffey Valley SC,105322825,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_24093,Liffey Valley SC,105432825,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_24094,Liffey Valley SC,105542825,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_24095,Liffey Valley SC,105652825,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_24096,Liffey Valley SC,105812825,1,4376_7778022_100350,4376_170 -4289_75981,266,4376_24097,Liffey Valley SC,105822825,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_24098,Liffey Valley SC,106052825,1,4376_7778022_100350,4376_170 -4289_75981,268,4376_24099,Liffey Valley SC,106142825,1,4376_7778022_100350,4376_170 -4289_75960,269,4376_241,Sutton Station,106231976,0,4376_7778022_103104,4376_1 -4289_75963,260,4376_2410,Ticknock,105312307,1,4376_7778022_100160,4376_32 -4289_75981,269,4376_24100,Liffey Valley SC,106232825,1,4376_7778022_100350,4376_170 -4289_75981,260,4376_24101,Liffey Valley SC,105312851,1,4376_7778022_100360,4376_170 -4289_75981,261,4376_24102,Liffey Valley SC,105322851,1,4376_7778022_100360,4376_170 -4289_75981,262,4376_24103,Liffey Valley SC,105432851,1,4376_7778022_100360,4376_170 -4289_75981,263,4376_24104,Liffey Valley SC,105542851,1,4376_7778022_100360,4376_170 -4289_75981,264,4376_24105,Liffey Valley SC,105652851,1,4376_7778022_100360,4376_170 -4289_75981,265,4376_24106,Liffey Valley SC,105812851,1,4376_7778022_100360,4376_170 -4289_75981,266,4376_24107,Liffey Valley SC,105822851,1,4376_7778022_100360,4376_170 -4289_75981,267,4376_24108,Liffey Valley SC,106052851,1,4376_7778022_100360,4376_170 -4289_75981,268,4376_24109,Liffey Valley SC,106142851,1,4376_7778022_100360,4376_170 -4289_75963,261,4376_2411,Ticknock,105322307,1,4376_7778022_100160,4376_32 -4289_75981,269,4376_24110,Liffey Valley SC,106232851,1,4376_7778022_100360,4376_170 -4289_75981,259,4376_24111,Liffey Valley SC,105765535,1,4376_7778022_100320,4376_171 -4289_75981,270,4376_24112,Liffey Valley SC,105278201,1,4376_7778022_100342,4376_171 -4289_75981,146,4376_24113,Liffey Valley SC,105248201,1,4376_7778022_100342,4376_171 -4289_75981,271,4376_24114,Liffey Valley SC,105238201,1,4376_7778022_100342,4376_171 -4289_75981,115,4376_24115,Liffey Valley SC,105218201,1,4376_7778022_100342,4376_171 -4289_75981,260,4376_24116,Liffey Valley SC,105312869,1,4376_7778022_100370,4376_170 -4289_75981,261,4376_24117,Liffey Valley SC,105322869,1,4376_7778022_100370,4376_170 -4289_75981,262,4376_24118,Liffey Valley SC,105432869,1,4376_7778022_100370,4376_170 -4289_75981,263,4376_24119,Liffey Valley SC,105542869,1,4376_7778022_100370,4376_170 -4289_75963,262,4376_2412,Ticknock,105432307,1,4376_7778022_100160,4376_32 -4289_75981,264,4376_24120,Liffey Valley SC,105652869,1,4376_7778022_100370,4376_170 -4289_75981,265,4376_24121,Liffey Valley SC,105812869,1,4376_7778022_100370,4376_170 -4289_75981,266,4376_24122,Liffey Valley SC,105822869,1,4376_7778022_100370,4376_170 -4289_75981,267,4376_24123,Liffey Valley SC,106052869,1,4376_7778022_100370,4376_170 -4289_75981,268,4376_24124,Liffey Valley SC,106142869,1,4376_7778022_100370,4376_170 -4289_75981,269,4376_24125,Liffey Valley SC,106232869,1,4376_7778022_100370,4376_170 -4289_75981,259,4376_24126,Liffey Valley SC,105765565,1,4376_7778022_100340,4376_170 -4289_75981,260,4376_24127,Liffey Valley SC,105312893,1,4376_7778022_100380,4376_170 -4289_75981,261,4376_24128,Liffey Valley SC,105322893,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_24129,Liffey Valley SC,105432893,1,4376_7778022_100380,4376_170 -4289_75963,263,4376_2413,Ticknock,105542307,1,4376_7778022_100160,4376_32 -4289_75981,263,4376_24130,Liffey Valley SC,105542893,1,4376_7778022_100380,4376_170 -4289_75981,264,4376_24131,Liffey Valley SC,105652893,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_24132,Liffey Valley SC,105812893,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_24133,Liffey Valley SC,105822893,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_24134,Liffey Valley SC,106052893,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_24135,Liffey Valley SC,106142893,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_24136,Liffey Valley SC,106232893,1,4376_7778022_100380,4376_170 -4289_75981,270,4376_24137,Liffey Valley SC,105278233,1,4376_7778022_100270,4376_171 -4289_75981,146,4376_24138,Liffey Valley SC,105248233,1,4376_7778022_100270,4376_171 -4289_75981,271,4376_24139,Liffey Valley SC,105238233,1,4376_7778022_100270,4376_171 -4289_75963,264,4376_2414,Ticknock,105652307,1,4376_7778022_100160,4376_32 -4289_75981,115,4376_24140,Liffey Valley SC,105218233,1,4376_7778022_100270,4376_171 -4289_75981,259,4376_24141,Liffey Valley SC,105765591,1,4376_7778022_100330,4376_170 -4289_75981,260,4376_24142,Liffey Valley SC,105312919,1,4376_7778022_100342,4376_170 -4289_75981,261,4376_24143,Liffey Valley SC,105322919,1,4376_7778022_100342,4376_170 -4289_75981,262,4376_24144,Liffey Valley SC,105432919,1,4376_7778022_100342,4376_170 -4289_75981,263,4376_24145,Liffey Valley SC,105542919,1,4376_7778022_100342,4376_170 -4289_75981,264,4376_24146,Liffey Valley SC,105652919,1,4376_7778022_100342,4376_170 -4289_75981,265,4376_24147,Liffey Valley SC,105812919,1,4376_7778022_100342,4376_170 -4289_75981,266,4376_24148,Liffey Valley SC,105822919,1,4376_7778022_100342,4376_170 -4289_75981,267,4376_24149,Liffey Valley SC,106052919,1,4376_7778022_100342,4376_170 -4289_75963,265,4376_2415,Ticknock,105812307,1,4376_7778022_100160,4376_32 -4289_75981,268,4376_24150,Liffey Valley SC,106142919,1,4376_7778022_100342,4376_170 -4289_75981,269,4376_24151,Liffey Valley SC,106232919,1,4376_7778022_100342,4376_170 -4289_75981,260,4376_24152,Liffey Valley SC,105312943,1,4376_7778022_100350,4376_170 -4289_75981,261,4376_24153,Liffey Valley SC,105322943,1,4376_7778022_100350,4376_170 -4289_75981,262,4376_24154,Liffey Valley SC,105432943,1,4376_7778022_100350,4376_170 -4289_75981,263,4376_24155,Liffey Valley SC,105542943,1,4376_7778022_100350,4376_170 -4289_75981,264,4376_24156,Liffey Valley SC,105652943,1,4376_7778022_100350,4376_170 -4289_75981,265,4376_24157,Liffey Valley SC,105812943,1,4376_7778022_100350,4376_170 -4289_75981,266,4376_24158,Liffey Valley SC,105822943,1,4376_7778022_100350,4376_170 -4289_75981,267,4376_24159,Liffey Valley SC,106052943,1,4376_7778022_100350,4376_170 -4289_75963,266,4376_2416,Ticknock,105822307,1,4376_7778022_100160,4376_32 -4289_75981,268,4376_24160,Liffey Valley SC,106142943,1,4376_7778022_100350,4376_170 -4289_75981,269,4376_24161,Liffey Valley SC,106232943,1,4376_7778022_100350,4376_170 -4289_75981,259,4376_24162,Liffey Valley SC,105765619,1,4376_7778022_100300,4376_170 -4289_75981,270,4376_24163,Liffey Valley SC,105278275,1,4376_7778022_100342,4376_170 -4289_75981,146,4376_24164,Liffey Valley SC,105248275,1,4376_7778022_100342,4376_170 -4289_75981,271,4376_24165,Liffey Valley SC,105238275,1,4376_7778022_100342,4376_170 -4289_75981,115,4376_24166,Liffey Valley SC,105218275,1,4376_7778022_100342,4376_170 -4289_75981,260,4376_24167,Liffey Valley SC,105312975,1,4376_7778022_100380,4376_170 -4289_75981,261,4376_24168,Liffey Valley SC,105322975,1,4376_7778022_100380,4376_170 -4289_75981,262,4376_24169,Liffey Valley SC,105432975,1,4376_7778022_100380,4376_170 -4289_75963,267,4376_2417,Ticknock,106052307,1,4376_7778022_100160,4376_32 -4289_75981,263,4376_24170,Liffey Valley SC,105542975,1,4376_7778022_100380,4376_170 -4289_75981,264,4376_24171,Liffey Valley SC,105652975,1,4376_7778022_100380,4376_170 -4289_75981,265,4376_24172,Liffey Valley SC,105812975,1,4376_7778022_100380,4376_170 -4289_75981,266,4376_24173,Liffey Valley SC,105822975,1,4376_7778022_100380,4376_170 -4289_75981,267,4376_24174,Liffey Valley SC,106052975,1,4376_7778022_100380,4376_170 -4289_75981,268,4376_24175,Liffey Valley SC,106142975,1,4376_7778022_100380,4376_170 -4289_75981,269,4376_24176,Liffey Valley SC,106232975,1,4376_7778022_100380,4376_170 -4289_75981,259,4376_24177,Liffey Valley SC,105765651,1,4376_7778022_100340,4376_171 -4289_75981,270,4376_24178,Liffey Valley SC,105278303,1,4376_7778022_100270,4376_170 -4289_75981,146,4376_24179,Liffey Valley SC,105248303,1,4376_7778022_100270,4376_170 -4289_75963,268,4376_2418,Ticknock,106142307,1,4376_7778022_100160,4376_32 -4289_75981,271,4376_24180,Liffey Valley SC,105238303,1,4376_7778022_100270,4376_170 -4289_75981,115,4376_24181,Liffey Valley SC,105218303,1,4376_7778022_100270,4376_170 -4289_75982,260,4376_24182,The Square,105311010,0,4376_7778022_100421,4376_173 -4289_75982,261,4376_24183,The Square,105321010,0,4376_7778022_100421,4376_173 -4289_75982,262,4376_24184,The Square,105431010,0,4376_7778022_100421,4376_173 -4289_75982,263,4376_24185,The Square,105541010,0,4376_7778022_100421,4376_173 -4289_75982,264,4376_24186,The Square,105651010,0,4376_7778022_100421,4376_173 -4289_75982,265,4376_24187,The Square,105811010,0,4376_7778022_100421,4376_173 -4289_75982,266,4376_24188,The Square,105821010,0,4376_7778022_100421,4376_173 -4289_75982,267,4376_24189,The Square,106051010,0,4376_7778022_100421,4376_173 -4289_75963,269,4376_2419,Ticknock,106232307,1,4376_7778022_100160,4376_32 -4289_75982,268,4376_24190,The Square,106141010,0,4376_7778022_100421,4376_173 -4289_75982,269,4376_24191,The Square,106231010,0,4376_7778022_100421,4376_173 -4289_75982,259,4376_24192,The Square,105764008,0,4376_7778022_100360,4376_174 -4289_75982,260,4376_24193,The Square,105311036,0,4376_7778022_100441,4376_173 -4289_75982,261,4376_24194,The Square,105321036,0,4376_7778022_100441,4376_173 -4289_75982,262,4376_24195,The Square,105431036,0,4376_7778022_100441,4376_173 -4289_75982,263,4376_24196,The Square,105541036,0,4376_7778022_100441,4376_173 -4289_75982,264,4376_24197,The Square,105651036,0,4376_7778022_100441,4376_173 -4289_75982,265,4376_24198,The Square,105811036,0,4376_7778022_100441,4376_173 -4289_75982,266,4376_24199,The Square,105821036,0,4376_7778022_100441,4376_173 -4289_75960,259,4376_242,Sutton Station,105764780,0,4376_7778022_103104,4376_2 -4289_75963,259,4376_2420,Ticknock,105765059,1,4376_7778022_100150,4376_32 -4289_75982,267,4376_24200,The Square,106051036,0,4376_7778022_100441,4376_173 -4289_75982,268,4376_24201,The Square,106141036,0,4376_7778022_100441,4376_173 -4289_75982,269,4376_24202,The Square,106231036,0,4376_7778022_100441,4376_173 -4289_75982,260,4376_24203,The Square,105311086,0,4376_7778022_100431,4376_173 -4289_75982,261,4376_24204,The Square,105321086,0,4376_7778022_100431,4376_173 -4289_75982,262,4376_24205,The Square,105431086,0,4376_7778022_100431,4376_173 -4289_75982,263,4376_24206,The Square,105541086,0,4376_7778022_100431,4376_173 -4289_75982,264,4376_24207,The Square,105651086,0,4376_7778022_100431,4376_173 -4289_75982,265,4376_24208,The Square,105811086,0,4376_7778022_100431,4376_173 -4289_75982,266,4376_24209,The Square,105821086,0,4376_7778022_100431,4376_173 -4289_75963,270,4376_2421,Ticknock,105277775,1,4376_7778022_100112,4376_32 -4289_75982,267,4376_24210,The Square,106051086,0,4376_7778022_100431,4376_173 -4289_75982,268,4376_24211,The Square,106141086,0,4376_7778022_100431,4376_173 -4289_75982,269,4376_24212,The Square,106231086,0,4376_7778022_100431,4376_173 -4289_75982,259,4376_24213,The Square,105764060,0,4376_7778022_100370,4376_174 -4289_75982,260,4376_24214,The Square,105311128,0,4376_7778022_100461,4376_173 -4289_75982,261,4376_24215,The Square,105321128,0,4376_7778022_100461,4376_173 -4289_75982,262,4376_24216,The Square,105431128,0,4376_7778022_100461,4376_173 -4289_75982,263,4376_24217,The Square,105541128,0,4376_7778022_100461,4376_173 -4289_75982,264,4376_24218,The Square,105651128,0,4376_7778022_100461,4376_173 -4289_75982,265,4376_24219,The Square,105811128,0,4376_7778022_100461,4376_173 -4289_75963,146,4376_2422,Ticknock,105247775,1,4376_7778022_100112,4376_32 -4289_75982,266,4376_24220,The Square,105821128,0,4376_7778022_100461,4376_173 -4289_75982,267,4376_24221,The Square,106051128,0,4376_7778022_100461,4376_173 -4289_75982,268,4376_24222,The Square,106141128,0,4376_7778022_100461,4376_173 -4289_75982,269,4376_24223,The Square,106231128,0,4376_7778022_100461,4376_173 -4289_75982,260,4376_24224,The Square,105311156,0,4376_7778022_100451,4376_173 -4289_75982,261,4376_24225,The Square,105321156,0,4376_7778022_100451,4376_173 -4289_75982,262,4376_24226,The Square,105431156,0,4376_7778022_100451,4376_173 -4289_75982,263,4376_24227,The Square,105541156,0,4376_7778022_100451,4376_173 -4289_75982,264,4376_24228,The Square,105651156,0,4376_7778022_100451,4376_173 -4289_75982,265,4376_24229,The Square,105811156,0,4376_7778022_100451,4376_173 -4289_75963,271,4376_2423,Ticknock,105237775,1,4376_7778022_100112,4376_32 -4289_75982,266,4376_24230,The Square,105821156,0,4376_7778022_100451,4376_173 -4289_75982,267,4376_24231,The Square,106051156,0,4376_7778022_100451,4376_173 -4289_75982,268,4376_24232,The Square,106141156,0,4376_7778022_100451,4376_173 -4289_75982,269,4376_24233,The Square,106231156,0,4376_7778022_100451,4376_173 -4289_75982,260,4376_24234,The Square,105311196,0,4376_7778022_100490,4376_173 -4289_75982,261,4376_24235,The Square,105321196,0,4376_7778022_100490,4376_173 -4289_75982,262,4376_24236,The Square,105431196,0,4376_7778022_100490,4376_173 -4289_75982,263,4376_24237,The Square,105541196,0,4376_7778022_100490,4376_173 -4289_75982,264,4376_24238,The Square,105651196,0,4376_7778022_100490,4376_173 -4289_75982,265,4376_24239,The Square,105811196,0,4376_7778022_100490,4376_173 -4289_75963,115,4376_2424,Ticknock,105217775,1,4376_7778022_100112,4376_32 -4289_75982,266,4376_24240,The Square,105821196,0,4376_7778022_100490,4376_173 -4289_75982,267,4376_24241,The Square,106051196,0,4376_7778022_100490,4376_173 -4289_75982,268,4376_24242,The Square,106141196,0,4376_7778022_100490,4376_173 -4289_75982,269,4376_24243,The Square,106231196,0,4376_7778022_100490,4376_173 -4289_75982,260,4376_24244,The Square,105311238,0,4376_7778022_100421,4376_173 -4289_75982,261,4376_24245,The Square,105321238,0,4376_7778022_100421,4376_173 -4289_75982,262,4376_24246,The Square,105431238,0,4376_7778022_100421,4376_173 -4289_75982,263,4376_24247,The Square,105541238,0,4376_7778022_100421,4376_173 -4289_75982,264,4376_24248,The Square,105651238,0,4376_7778022_100421,4376_173 -4289_75982,265,4376_24249,The Square,105811238,0,4376_7778022_100421,4376_173 -4289_75963,260,4376_2425,Ticknock,105312425,1,4376_7778022_100150,4376_32 -4289_75982,266,4376_24250,The Square,105821238,0,4376_7778022_100421,4376_173 -4289_75982,267,4376_24251,The Square,106051238,0,4376_7778022_100421,4376_173 -4289_75982,268,4376_24252,The Square,106141238,0,4376_7778022_100421,4376_173 -4289_75982,269,4376_24253,The Square,106231238,0,4376_7778022_100421,4376_173 -4289_75982,259,4376_24254,The Square,105764144,0,4376_7778022_100360,4376_174 -4289_75982,270,4376_24255,The Square,105277010,0,4376_7778022_100310,4376_175 -4289_75982,146,4376_24256,The Square,105247010,0,4376_7778022_100310,4376_175 -4289_75982,271,4376_24257,The Square,105237010,0,4376_7778022_100310,4376_175 -4289_75982,115,4376_24258,The Square,105217010,0,4376_7778022_100310,4376_175 -4289_75982,260,4376_24259,The Square,105311298,0,4376_7778022_100470,4376_173 -4289_75963,261,4376_2426,Ticknock,105322425,1,4376_7778022_100150,4376_32 -4289_75982,261,4376_24260,The Square,105321298,0,4376_7778022_100470,4376_173 -4289_75982,262,4376_24261,The Square,105431298,0,4376_7778022_100470,4376_173 -4289_75982,263,4376_24262,The Square,105541298,0,4376_7778022_100470,4376_173 -4289_75982,264,4376_24263,The Square,105651298,0,4376_7778022_100470,4376_173 -4289_75982,265,4376_24264,The Square,105811298,0,4376_7778022_100470,4376_173 -4289_75982,266,4376_24265,The Square,105821298,0,4376_7778022_100470,4376_173 -4289_75982,267,4376_24266,The Square,106051298,0,4376_7778022_100470,4376_173 -4289_75982,268,4376_24267,The Square,106141298,0,4376_7778022_100470,4376_173 -4289_75982,269,4376_24268,The Square,106231298,0,4376_7778022_100470,4376_173 -4289_75982,260,4376_24269,The Square,105311324,0,4376_7778022_100510,4376_173 -4289_75963,262,4376_2427,Ticknock,105432425,1,4376_7778022_100150,4376_32 -4289_75982,261,4376_24270,The Square,105321324,0,4376_7778022_100510,4376_173 -4289_75982,262,4376_24271,The Square,105431324,0,4376_7778022_100510,4376_173 -4289_75982,263,4376_24272,The Square,105541324,0,4376_7778022_100510,4376_173 -4289_75982,264,4376_24273,The Square,105651324,0,4376_7778022_100510,4376_173 -4289_75982,265,4376_24274,The Square,105811324,0,4376_7778022_100510,4376_173 -4289_75982,266,4376_24275,The Square,105821324,0,4376_7778022_100510,4376_173 -4289_75982,267,4376_24276,The Square,106051324,0,4376_7778022_100510,4376_173 -4289_75982,268,4376_24277,The Square,106141324,0,4376_7778022_100510,4376_173 -4289_75982,269,4376_24278,The Square,106231324,0,4376_7778022_100510,4376_173 -4289_75982,260,4376_24279,The Square,105311364,0,4376_7778022_100481,4376_173 -4289_75963,263,4376_2428,Ticknock,105542425,1,4376_7778022_100150,4376_32 -4289_75982,261,4376_24280,The Square,105321364,0,4376_7778022_100481,4376_173 -4289_75982,262,4376_24281,The Square,105431364,0,4376_7778022_100481,4376_173 -4289_75982,263,4376_24282,The Square,105541364,0,4376_7778022_100481,4376_173 -4289_75982,264,4376_24283,The Square,105651364,0,4376_7778022_100481,4376_173 -4289_75982,265,4376_24284,The Square,105811364,0,4376_7778022_100481,4376_173 -4289_75982,266,4376_24285,The Square,105821364,0,4376_7778022_100481,4376_173 -4289_75982,267,4376_24286,The Square,106051364,0,4376_7778022_100481,4376_173 -4289_75982,268,4376_24287,The Square,106141364,0,4376_7778022_100481,4376_173 -4289_75982,269,4376_24288,The Square,106231364,0,4376_7778022_100481,4376_173 -4289_75982,260,4376_24289,The Square,105311394,0,4376_7778022_100441,4376_173 -4289_75963,264,4376_2429,Ticknock,105652425,1,4376_7778022_100150,4376_32 -4289_75982,261,4376_24290,The Square,105321394,0,4376_7778022_100441,4376_173 -4289_75982,262,4376_24291,The Square,105431394,0,4376_7778022_100441,4376_173 -4289_75982,263,4376_24292,The Square,105541394,0,4376_7778022_100441,4376_173 -4289_75982,264,4376_24293,The Square,105651394,0,4376_7778022_100441,4376_173 -4289_75982,265,4376_24294,The Square,105811394,0,4376_7778022_100441,4376_173 -4289_75982,266,4376_24295,The Square,105821394,0,4376_7778022_100441,4376_173 -4289_75982,267,4376_24296,The Square,106051394,0,4376_7778022_100441,4376_173 -4289_75982,268,4376_24297,The Square,106141394,0,4376_7778022_100441,4376_173 -4289_75982,269,4376_24298,The Square,106231394,0,4376_7778022_100441,4376_173 -4289_75982,259,4376_24299,The Square,105764228,0,4376_7778022_100370,4376_174 -4289_75960,270,4376_243,Sutton Station,105277528,0,4376_7778022_103105,4376_1 -4289_75963,265,4376_2430,Ticknock,105812425,1,4376_7778022_100150,4376_32 -4289_75982,270,4376_24300,The Square,105277052,0,4376_7778022_100320,4376_175 -4289_75982,146,4376_24301,The Square,105247052,0,4376_7778022_100320,4376_175 -4289_75982,271,4376_24302,The Square,105237052,0,4376_7778022_100320,4376_175 -4289_75982,115,4376_24303,The Square,105217052,0,4376_7778022_100320,4376_175 -4289_75982,260,4376_24304,The Square,105311448,0,4376_7778022_100500,4376_173 -4289_75982,261,4376_24305,The Square,105321448,0,4376_7778022_100500,4376_173 -4289_75982,262,4376_24306,The Square,105431448,0,4376_7778022_100500,4376_173 -4289_75982,263,4376_24307,The Square,105541448,0,4376_7778022_100500,4376_173 -4289_75982,264,4376_24308,The Square,105651448,0,4376_7778022_100500,4376_173 -4289_75982,265,4376_24309,The Square,105811448,0,4376_7778022_100500,4376_173 -4289_75963,266,4376_2431,Ticknock,105822425,1,4376_7778022_100150,4376_32 -4289_75982,266,4376_24310,The Square,105821448,0,4376_7778022_100500,4376_173 -4289_75982,267,4376_24311,The Square,106051448,0,4376_7778022_100500,4376_173 -4289_75982,268,4376_24312,The Square,106141448,0,4376_7778022_100500,4376_173 -4289_75982,269,4376_24313,The Square,106231448,0,4376_7778022_100500,4376_173 -4289_75982,259,4376_24314,The Square,105764278,0,4376_7778022_100380,4376_174 -4289_75982,260,4376_24315,The Square,105311502,0,4376_7778022_100490,4376_173 -4289_75982,261,4376_24316,The Square,105321502,0,4376_7778022_100490,4376_173 -4289_75982,262,4376_24317,The Square,105431502,0,4376_7778022_100490,4376_173 -4289_75982,263,4376_24318,The Square,105541502,0,4376_7778022_100490,4376_173 -4289_75982,264,4376_24319,The Square,105651502,0,4376_7778022_100490,4376_173 -4289_75963,267,4376_2432,Ticknock,106052425,1,4376_7778022_100150,4376_32 -4289_75982,265,4376_24320,The Square,105811502,0,4376_7778022_100490,4376_173 -4289_75982,266,4376_24321,The Square,105821502,0,4376_7778022_100490,4376_173 -4289_75982,267,4376_24322,The Square,106051502,0,4376_7778022_100490,4376_173 -4289_75982,268,4376_24323,The Square,106141502,0,4376_7778022_100490,4376_173 -4289_75982,269,4376_24324,The Square,106231502,0,4376_7778022_100490,4376_173 -4289_75982,259,4376_24325,The Square,105764324,0,4376_7778022_100360,4376_174 -4289_75982,270,4376_24326,The Square,105277118,0,4376_7778022_100310,4376_175 -4289_75982,146,4376_24327,The Square,105247118,0,4376_7778022_100310,4376_175 -4289_75982,271,4376_24328,The Square,105237118,0,4376_7778022_100310,4376_175 -4289_75982,115,4376_24329,The Square,105217118,0,4376_7778022_100310,4376_175 -4289_75963,268,4376_2433,Ticknock,106142425,1,4376_7778022_100150,4376_32 -4289_75982,260,4376_24330,The Square,105311554,0,4376_7778022_100470,4376_173 -4289_75982,261,4376_24331,The Square,105321554,0,4376_7778022_100470,4376_173 -4289_75982,262,4376_24332,The Square,105431554,0,4376_7778022_100470,4376_173 -4289_75982,263,4376_24333,The Square,105541554,0,4376_7778022_100470,4376_173 -4289_75982,264,4376_24334,The Square,105651554,0,4376_7778022_100470,4376_173 -4289_75982,265,4376_24335,The Square,105811554,0,4376_7778022_100470,4376_173 -4289_75982,266,4376_24336,The Square,105821554,0,4376_7778022_100470,4376_173 -4289_75982,267,4376_24337,The Square,106051554,0,4376_7778022_100470,4376_173 -4289_75982,268,4376_24338,The Square,106141554,0,4376_7778022_100470,4376_173 -4289_75982,269,4376_24339,The Square,106231554,0,4376_7778022_100470,4376_173 -4289_75963,269,4376_2434,Ticknock,106232425,1,4376_7778022_100150,4376_32 -4289_75982,259,4376_24340,The Square,105764378,0,4376_7778022_100390,4376_174 -4289_75982,270,4376_24341,The Square,105277162,0,4376_7778022_100330,4376_175 -4289_75982,146,4376_24342,The Square,105247162,0,4376_7778022_100330,4376_175 -4289_75982,271,4376_24343,The Square,105237162,0,4376_7778022_100330,4376_175 -4289_75982,115,4376_24344,The Square,105217162,0,4376_7778022_100330,4376_175 -4289_75982,260,4376_24345,The Square,105311606,0,4376_7778022_100510,4376_173 -4289_75982,261,4376_24346,The Square,105321606,0,4376_7778022_100510,4376_173 -4289_75982,262,4376_24347,The Square,105431606,0,4376_7778022_100510,4376_173 -4289_75982,263,4376_24348,The Square,105541606,0,4376_7778022_100510,4376_173 -4289_75982,264,4376_24349,The Square,105651606,0,4376_7778022_100510,4376_173 -4289_75963,259,4376_2435,Ticknock,105765165,1,4376_7778022_100142,4376_32 -4289_75982,265,4376_24350,The Square,105811606,0,4376_7778022_100510,4376_173 -4289_75982,266,4376_24351,The Square,105821606,0,4376_7778022_100510,4376_173 -4289_75982,267,4376_24352,The Square,106051606,0,4376_7778022_100510,4376_173 -4289_75982,268,4376_24353,The Square,106141606,0,4376_7778022_100510,4376_173 -4289_75982,269,4376_24354,The Square,106231606,0,4376_7778022_100510,4376_173 -4289_75982,259,4376_24355,The Square,105764432,0,4376_7778022_100370,4376_174 -4289_75982,270,4376_24356,The Square,105277206,0,4376_7778022_100320,4376_175 -4289_75982,146,4376_24357,The Square,105247206,0,4376_7778022_100320,4376_175 -4289_75982,271,4376_24358,The Square,105237206,0,4376_7778022_100320,4376_175 -4289_75982,115,4376_24359,The Square,105217206,0,4376_7778022_100320,4376_175 -4289_75963,270,4376_2436,Ticknock,105277869,1,4376_7778022_100130,4376_33 -4289_75982,260,4376_24360,The Square,105311662,0,4376_7778022_100500,4376_173 -4289_75982,261,4376_24361,The Square,105321662,0,4376_7778022_100500,4376_173 -4289_75982,262,4376_24362,The Square,105431662,0,4376_7778022_100500,4376_173 -4289_75982,263,4376_24363,The Square,105541662,0,4376_7778022_100500,4376_173 -4289_75982,264,4376_24364,The Square,105651662,0,4376_7778022_100500,4376_173 -4289_75982,265,4376_24365,The Square,105811662,0,4376_7778022_100500,4376_173 -4289_75982,266,4376_24366,The Square,105821662,0,4376_7778022_100500,4376_173 -4289_75982,267,4376_24367,The Square,106051662,0,4376_7778022_100500,4376_173 -4289_75982,268,4376_24368,The Square,106141662,0,4376_7778022_100500,4376_173 -4289_75982,269,4376_24369,The Square,106231662,0,4376_7778022_100500,4376_173 -4289_75963,146,4376_2437,Ticknock,105247869,1,4376_7778022_100130,4376_33 -4289_75982,259,4376_24370,The Square,105764482,0,4376_7778022_100380,4376_174 -4289_75982,270,4376_24371,The Square,105277250,0,4376_7778022_100341,4376_175 -4289_75982,146,4376_24372,The Square,105247250,0,4376_7778022_100341,4376_175 -4289_75982,271,4376_24373,The Square,105237250,0,4376_7778022_100341,4376_175 -4289_75982,115,4376_24374,The Square,105217250,0,4376_7778022_100341,4376_175 -4289_75982,260,4376_24375,The Square,105311716,0,4376_7778022_100490,4376_173 -4289_75982,261,4376_24376,The Square,105321716,0,4376_7778022_100490,4376_173 -4289_75982,262,4376_24377,The Square,105431716,0,4376_7778022_100490,4376_173 -4289_75982,263,4376_24378,The Square,105541716,0,4376_7778022_100490,4376_173 -4289_75982,264,4376_24379,The Square,105651716,0,4376_7778022_100490,4376_173 -4289_75963,271,4376_2438,Ticknock,105237869,1,4376_7778022_100130,4376_33 -4289_75982,265,4376_24380,The Square,105811716,0,4376_7778022_100490,4376_173 -4289_75982,266,4376_24381,The Square,105821716,0,4376_7778022_100490,4376_173 -4289_75982,267,4376_24382,The Square,106051716,0,4376_7778022_100490,4376_173 -4289_75982,268,4376_24383,The Square,106141716,0,4376_7778022_100490,4376_173 -4289_75982,269,4376_24384,The Square,106231716,0,4376_7778022_100490,4376_173 -4289_75982,259,4376_24385,The Square,105764534,0,4376_7778022_100360,4376_174 -4289_75982,270,4376_24386,The Square,105277300,0,4376_7778022_100310,4376_175 -4289_75982,146,4376_24387,The Square,105247300,0,4376_7778022_100310,4376_175 -4289_75982,271,4376_24388,The Square,105237300,0,4376_7778022_100310,4376_175 -4289_75982,115,4376_24389,The Square,105217300,0,4376_7778022_100310,4376_175 -4289_75963,115,4376_2439,Ticknock,105217869,1,4376_7778022_100130,4376_33 -4289_75982,260,4376_24390,The Square,105311768,0,4376_7778022_100470,4376_173 -4289_75982,261,4376_24391,The Square,105321768,0,4376_7778022_100470,4376_173 -4289_75982,262,4376_24392,The Square,105431768,0,4376_7778022_100470,4376_173 -4289_75982,263,4376_24393,The Square,105541768,0,4376_7778022_100470,4376_173 -4289_75982,264,4376_24394,The Square,105651768,0,4376_7778022_100470,4376_173 -4289_75982,265,4376_24395,The Square,105811768,0,4376_7778022_100470,4376_173 -4289_75982,266,4376_24396,The Square,105821768,0,4376_7778022_100470,4376_173 -4289_75982,267,4376_24397,The Square,106051768,0,4376_7778022_100470,4376_173 -4289_75982,268,4376_24398,The Square,106141768,0,4376_7778022_100470,4376_173 -4289_75982,269,4376_24399,The Square,106231768,0,4376_7778022_100470,4376_173 -4289_75960,146,4376_244,Sutton Station,105247528,0,4376_7778022_103105,4376_1 -4289_75963,260,4376_2440,Ticknock,105312543,1,4376_7778022_100160,4376_32 -4289_75982,259,4376_24400,The Square,105764584,0,4376_7778022_100390,4376_174 -4289_75982,270,4376_24401,The Square,105277340,0,4376_7778022_100330,4376_175 -4289_75982,146,4376_24402,The Square,105247340,0,4376_7778022_100330,4376_175 -4289_75982,271,4376_24403,The Square,105237340,0,4376_7778022_100330,4376_175 -4289_75982,115,4376_24404,The Square,105217340,0,4376_7778022_100330,4376_175 -4289_75982,260,4376_24405,The Square,105311824,0,4376_7778022_100510,4376_173 -4289_75982,261,4376_24406,The Square,105321824,0,4376_7778022_100510,4376_173 -4289_75982,262,4376_24407,The Square,105431824,0,4376_7778022_100510,4376_173 -4289_75982,263,4376_24408,The Square,105541824,0,4376_7778022_100510,4376_173 -4289_75982,264,4376_24409,The Square,105651824,0,4376_7778022_100510,4376_173 -4289_75963,261,4376_2441,Ticknock,105322543,1,4376_7778022_100160,4376_32 -4289_75982,265,4376_24410,The Square,105811824,0,4376_7778022_100510,4376_173 -4289_75982,266,4376_24411,The Square,105821824,0,4376_7778022_100510,4376_173 -4289_75982,267,4376_24412,The Square,106051824,0,4376_7778022_100510,4376_173 -4289_75982,268,4376_24413,The Square,106141824,0,4376_7778022_100510,4376_173 -4289_75982,269,4376_24414,The Square,106231824,0,4376_7778022_100510,4376_173 -4289_75982,259,4376_24415,The Square,105764636,0,4376_7778022_100370,4376_174 -4289_75982,270,4376_24416,The Square,105277388,0,4376_7778022_100320,4376_175 -4289_75982,146,4376_24417,The Square,105247388,0,4376_7778022_100320,4376_175 -4289_75982,271,4376_24418,The Square,105237388,0,4376_7778022_100320,4376_175 -4289_75982,115,4376_24419,The Square,105217388,0,4376_7778022_100320,4376_175 -4289_75963,262,4376_2442,Ticknock,105432543,1,4376_7778022_100160,4376_32 -4289_75982,260,4376_24420,The Square,105311880,0,4376_7778022_100482,4376_173 -4289_75982,261,4376_24421,The Square,105321880,0,4376_7778022_100482,4376_173 -4289_75982,262,4376_24422,The Square,105431880,0,4376_7778022_100482,4376_173 -4289_75982,263,4376_24423,The Square,105541880,0,4376_7778022_100482,4376_173 -4289_75982,264,4376_24424,The Square,105651880,0,4376_7778022_100482,4376_173 -4289_75982,265,4376_24425,The Square,105811880,0,4376_7778022_100482,4376_173 -4289_75982,266,4376_24426,The Square,105821880,0,4376_7778022_100482,4376_173 -4289_75982,267,4376_24427,The Square,106051880,0,4376_7778022_100482,4376_173 -4289_75982,268,4376_24428,The Square,106141880,0,4376_7778022_100482,4376_173 -4289_75982,269,4376_24429,The Square,106231880,0,4376_7778022_100482,4376_173 -4289_75963,263,4376_2443,Ticknock,105542543,1,4376_7778022_100160,4376_32 -4289_75982,259,4376_24430,The Square,105764688,0,4376_7778022_100400,4376_174 -4289_75982,270,4376_24431,The Square,105277436,0,4376_7778022_100341,4376_175 -4289_75982,146,4376_24432,The Square,105247436,0,4376_7778022_100341,4376_175 -4289_75982,271,4376_24433,The Square,105237436,0,4376_7778022_100341,4376_175 -4289_75982,115,4376_24434,The Square,105217436,0,4376_7778022_100341,4376_175 -4289_75982,260,4376_24435,The Square,105311932,0,4376_7778022_100500,4376_173 -4289_75982,261,4376_24436,The Square,105321932,0,4376_7778022_100500,4376_173 -4289_75982,262,4376_24437,The Square,105431932,0,4376_7778022_100500,4376_173 -4289_75982,263,4376_24438,The Square,105541932,0,4376_7778022_100500,4376_173 -4289_75982,264,4376_24439,The Square,105651932,0,4376_7778022_100500,4376_173 -4289_75963,264,4376_2444,Ticknock,105652543,1,4376_7778022_100160,4376_32 -4289_75982,265,4376_24440,The Square,105811932,0,4376_7778022_100500,4376_173 -4289_75982,266,4376_24441,The Square,105821932,0,4376_7778022_100500,4376_173 -4289_75982,267,4376_24442,The Square,106051932,0,4376_7778022_100500,4376_173 -4289_75982,268,4376_24443,The Square,106141932,0,4376_7778022_100500,4376_173 -4289_75982,269,4376_24444,The Square,106231932,0,4376_7778022_100500,4376_173 -4289_75982,259,4376_24445,The Square,105764744,0,4376_7778022_100380,4376_174 -4289_75982,270,4376_24446,The Square,105277480,0,4376_7778022_100310,4376_175 -4289_75982,146,4376_24447,The Square,105247480,0,4376_7778022_100310,4376_175 -4289_75982,271,4376_24448,The Square,105237480,0,4376_7778022_100310,4376_175 -4289_75982,115,4376_24449,The Square,105217480,0,4376_7778022_100310,4376_175 -4289_75963,265,4376_2445,Ticknock,105812543,1,4376_7778022_100160,4376_32 -4289_75982,260,4376_24450,The Square,105311988,0,4376_7778022_100462,4376_173 -4289_75982,261,4376_24451,The Square,105321988,0,4376_7778022_100462,4376_173 -4289_75982,262,4376_24452,The Square,105431988,0,4376_7778022_100462,4376_173 -4289_75982,263,4376_24453,The Square,105541988,0,4376_7778022_100462,4376_173 -4289_75982,264,4376_24454,The Square,105651988,0,4376_7778022_100462,4376_173 -4289_75982,265,4376_24455,The Square,105811988,0,4376_7778022_100462,4376_173 -4289_75982,266,4376_24456,The Square,105821988,0,4376_7778022_100462,4376_173 -4289_75982,267,4376_24457,The Square,106051988,0,4376_7778022_100462,4376_173 -4289_75982,268,4376_24458,The Square,106141988,0,4376_7778022_100462,4376_173 -4289_75982,269,4376_24459,The Square,106231988,0,4376_7778022_100462,4376_173 -4289_75963,266,4376_2446,Ticknock,105822543,1,4376_7778022_100160,4376_32 -4289_75982,259,4376_24460,The Square,105764790,0,4376_7778022_100410,4376_174 -4289_75982,270,4376_24461,The Square,105277524,0,4376_7778022_100330,4376_175 -4289_75982,146,4376_24462,The Square,105247524,0,4376_7778022_100330,4376_175 -4289_75982,271,4376_24463,The Square,105237524,0,4376_7778022_100330,4376_175 -4289_75982,115,4376_24464,The Square,105217524,0,4376_7778022_100330,4376_175 -4289_75982,260,4376_24465,The Square,105312044,0,4376_7778022_100490,4376_173 -4289_75982,261,4376_24466,The Square,105322044,0,4376_7778022_100490,4376_173 -4289_75982,262,4376_24467,The Square,105432044,0,4376_7778022_100490,4376_173 -4289_75982,263,4376_24468,The Square,105542044,0,4376_7778022_100490,4376_173 -4289_75982,264,4376_24469,The Square,105652044,0,4376_7778022_100490,4376_173 -4289_75963,267,4376_2447,Ticknock,106052543,1,4376_7778022_100160,4376_32 -4289_75982,265,4376_24470,The Square,105812044,0,4376_7778022_100490,4376_173 -4289_75982,266,4376_24471,The Square,105822044,0,4376_7778022_100490,4376_173 -4289_75982,267,4376_24472,The Square,106052044,0,4376_7778022_100490,4376_173 -4289_75982,268,4376_24473,The Square,106142044,0,4376_7778022_100490,4376_173 -4289_75982,269,4376_24474,The Square,106232044,0,4376_7778022_100490,4376_173 -4289_75982,259,4376_24475,The Square,105764844,0,4376_7778022_100360,4376_174 -4289_75982,270,4376_24476,The Square,105277576,0,4376_7778022_100320,4376_175 -4289_75982,146,4376_24477,The Square,105247576,0,4376_7778022_100320,4376_175 -4289_75982,271,4376_24478,The Square,105237576,0,4376_7778022_100320,4376_175 -4289_75982,115,4376_24479,The Square,105217576,0,4376_7778022_100320,4376_175 -4289_75963,268,4376_2448,Ticknock,106142543,1,4376_7778022_100160,4376_32 -4289_75982,260,4376_24480,The Square,105312082,0,4376_7778022_100470,4376_173 -4289_75982,261,4376_24481,The Square,105322082,0,4376_7778022_100470,4376_173 -4289_75982,262,4376_24482,The Square,105432082,0,4376_7778022_100470,4376_173 -4289_75982,263,4376_24483,The Square,105542082,0,4376_7778022_100470,4376_173 -4289_75982,264,4376_24484,The Square,105652082,0,4376_7778022_100470,4376_173 -4289_75982,265,4376_24485,The Square,105812082,0,4376_7778022_100470,4376_173 -4289_75982,266,4376_24486,The Square,105822082,0,4376_7778022_100470,4376_173 -4289_75982,267,4376_24487,The Square,106052082,0,4376_7778022_100470,4376_173 -4289_75982,268,4376_24488,The Square,106142082,0,4376_7778022_100470,4376_173 -4289_75982,269,4376_24489,The Square,106232082,0,4376_7778022_100470,4376_173 -4289_75963,269,4376_2449,Ticknock,106232543,1,4376_7778022_100160,4376_32 -4289_75982,260,4376_24490,The Square,105312112,0,4376_7778022_100432,4376_173 -4289_75982,261,4376_24491,The Square,105322112,0,4376_7778022_100432,4376_173 -4289_75982,262,4376_24492,The Square,105432112,0,4376_7778022_100432,4376_173 -4289_75982,263,4376_24493,The Square,105542112,0,4376_7778022_100432,4376_173 -4289_75982,264,4376_24494,The Square,105652112,0,4376_7778022_100432,4376_173 -4289_75982,265,4376_24495,The Square,105812112,0,4376_7778022_100432,4376_173 -4289_75982,266,4376_24496,The Square,105822112,0,4376_7778022_100432,4376_173 -4289_75982,267,4376_24497,The Square,106052112,0,4376_7778022_100432,4376_173 -4289_75982,268,4376_24498,The Square,106142112,0,4376_7778022_100432,4376_173 -4289_75982,269,4376_24499,The Square,106232112,0,4376_7778022_100432,4376_173 -4289_75960,271,4376_245,Sutton Station,105237528,0,4376_7778022_103105,4376_1 -4289_75963,259,4376_2450,Ticknock,105765261,1,4376_7778022_100150,4376_33 -4289_75982,259,4376_24500,The Square,105764894,0,4376_7778022_100390,4376_174 -4289_75982,270,4376_24501,The Square,105277618,0,4376_7778022_100342,4376_175 -4289_75982,146,4376_24502,The Square,105247618,0,4376_7778022_100342,4376_175 -4289_75982,271,4376_24503,The Square,105237618,0,4376_7778022_100342,4376_175 -4289_75982,115,4376_24504,The Square,105217618,0,4376_7778022_100342,4376_175 -4289_75982,260,4376_24505,The Square,105312150,0,4376_7778022_100510,4376_173 -4289_75982,261,4376_24506,The Square,105322150,0,4376_7778022_100510,4376_173 -4289_75982,262,4376_24507,The Square,105432150,0,4376_7778022_100510,4376_173 -4289_75982,263,4376_24508,The Square,105542150,0,4376_7778022_100510,4376_173 -4289_75982,264,4376_24509,The Square,105652150,0,4376_7778022_100510,4376_173 -4289_75963,270,4376_2451,Ticknock,105277955,1,4376_7778022_100122,4376_34 -4289_75982,265,4376_24510,The Square,105812150,0,4376_7778022_100510,4376_173 -4289_75982,266,4376_24511,The Square,105822150,0,4376_7778022_100510,4376_173 -4289_75982,267,4376_24512,The Square,106052150,0,4376_7778022_100510,4376_173 -4289_75982,268,4376_24513,The Square,106142150,0,4376_7778022_100510,4376_173 -4289_75982,269,4376_24514,The Square,106232150,0,4376_7778022_100510,4376_173 -4289_75982,260,4376_24515,The Square,105312178,0,4376_7778022_100452,4376_173 -4289_75982,261,4376_24516,The Square,105322178,0,4376_7778022_100452,4376_173 -4289_75982,262,4376_24517,The Square,105432178,0,4376_7778022_100452,4376_173 -4289_75982,263,4376_24518,The Square,105542178,0,4376_7778022_100452,4376_173 -4289_75982,264,4376_24519,The Square,105652178,0,4376_7778022_100452,4376_173 -4289_75963,146,4376_2452,Ticknock,105247955,1,4376_7778022_100122,4376_34 -4289_75982,265,4376_24520,The Square,105812178,0,4376_7778022_100452,4376_173 -4289_75982,266,4376_24521,The Square,105822178,0,4376_7778022_100452,4376_173 -4289_75982,267,4376_24522,The Square,106052178,0,4376_7778022_100452,4376_173 -4289_75982,268,4376_24523,The Square,106142178,0,4376_7778022_100452,4376_173 -4289_75982,269,4376_24524,The Square,106232178,0,4376_7778022_100452,4376_173 -4289_75982,259,4376_24525,The Square,105764946,0,4376_7778022_100370,4376_174 -4289_75982,270,4376_24526,The Square,105277664,0,4376_7778022_100260,4376_175 -4289_75982,146,4376_24527,The Square,105247664,0,4376_7778022_100260,4376_175 -4289_75982,271,4376_24528,The Square,105237664,0,4376_7778022_100260,4376_175 -4289_75982,115,4376_24529,The Square,105217664,0,4376_7778022_100260,4376_175 -4289_75963,271,4376_2453,Ticknock,105237955,1,4376_7778022_100122,4376_34 -4289_75982,260,4376_24530,The Square,105312206,0,4376_7778022_100482,4376_173 -4289_75982,261,4376_24531,The Square,105322206,0,4376_7778022_100482,4376_173 -4289_75982,262,4376_24532,The Square,105432206,0,4376_7778022_100482,4376_173 -4289_75982,263,4376_24533,The Square,105542206,0,4376_7778022_100482,4376_173 -4289_75982,264,4376_24534,The Square,105652206,0,4376_7778022_100482,4376_173 -4289_75982,265,4376_24535,The Square,105812206,0,4376_7778022_100482,4376_173 -4289_75982,266,4376_24536,The Square,105822206,0,4376_7778022_100482,4376_173 -4289_75982,267,4376_24537,The Square,106052206,0,4376_7778022_100482,4376_173 -4289_75982,268,4376_24538,The Square,106142206,0,4376_7778022_100482,4376_173 -4289_75982,269,4376_24539,The Square,106232206,0,4376_7778022_100482,4376_173 -4289_75963,115,4376_2454,Ticknock,105217955,1,4376_7778022_100122,4376_34 -4289_75982,260,4376_24540,The Square,105312242,0,4376_7778022_100500,4376_173 -4289_75982,261,4376_24541,The Square,105322242,0,4376_7778022_100500,4376_173 -4289_75982,262,4376_24542,The Square,105432242,0,4376_7778022_100500,4376_173 -4289_75982,263,4376_24543,The Square,105542242,0,4376_7778022_100500,4376_173 -4289_75982,264,4376_24544,The Square,105652242,0,4376_7778022_100500,4376_173 -4289_75982,265,4376_24545,The Square,105812242,0,4376_7778022_100500,4376_173 -4289_75982,266,4376_24546,The Square,105822242,0,4376_7778022_100500,4376_173 -4289_75982,267,4376_24547,The Square,106052242,0,4376_7778022_100500,4376_173 -4289_75982,268,4376_24548,The Square,106142242,0,4376_7778022_100500,4376_173 -4289_75982,269,4376_24549,The Square,106232242,0,4376_7778022_100500,4376_173 -4289_75963,260,4376_2455,Ticknock,105312645,1,4376_7778022_100150,4376_32 -4289_75982,259,4376_24550,The Square,105764992,0,4376_7778022_100400,4376_174 -4289_75982,270,4376_24551,The Square,105277704,0,4376_7778022_100330,4376_175 -4289_75982,146,4376_24552,The Square,105247704,0,4376_7778022_100330,4376_175 -4289_75982,271,4376_24553,The Square,105237704,0,4376_7778022_100330,4376_175 -4289_75982,115,4376_24554,The Square,105217704,0,4376_7778022_100330,4376_175 -4289_75982,260,4376_24555,The Square,105312276,0,4376_7778022_100422,4376_173 -4289_75982,261,4376_24556,The Square,105322276,0,4376_7778022_100422,4376_173 -4289_75982,262,4376_24557,The Square,105432276,0,4376_7778022_100422,4376_173 -4289_75982,263,4376_24558,The Square,105542276,0,4376_7778022_100422,4376_173 -4289_75982,264,4376_24559,The Square,105652276,0,4376_7778022_100422,4376_173 -4289_75963,261,4376_2456,Ticknock,105322645,1,4376_7778022_100150,4376_32 -4289_75982,265,4376_24560,The Square,105812276,0,4376_7778022_100422,4376_173 -4289_75982,266,4376_24561,The Square,105822276,0,4376_7778022_100422,4376_173 -4289_75982,267,4376_24562,The Square,106052276,0,4376_7778022_100422,4376_173 -4289_75982,268,4376_24563,The Square,106142276,0,4376_7778022_100422,4376_173 -4289_75982,269,4376_24564,The Square,106232276,0,4376_7778022_100422,4376_173 -4289_75982,260,4376_24565,The Square,105312302,0,4376_7778022_100462,4376_173 -4289_75982,261,4376_24566,The Square,105322302,0,4376_7778022_100462,4376_173 -4289_75982,262,4376_24567,The Square,105432302,0,4376_7778022_100462,4376_173 -4289_75982,263,4376_24568,The Square,105542302,0,4376_7778022_100462,4376_173 -4289_75982,264,4376_24569,The Square,105652302,0,4376_7778022_100462,4376_173 -4289_75963,262,4376_2457,Ticknock,105432645,1,4376_7778022_100150,4376_32 -4289_75982,265,4376_24570,The Square,105812302,0,4376_7778022_100462,4376_173 -4289_75982,266,4376_24571,The Square,105822302,0,4376_7778022_100462,4376_173 -4289_75982,267,4376_24572,The Square,106052302,0,4376_7778022_100462,4376_173 -4289_75982,268,4376_24573,The Square,106142302,0,4376_7778022_100462,4376_173 -4289_75982,269,4376_24574,The Square,106232302,0,4376_7778022_100462,4376_173 -4289_75982,259,4376_24575,The Square,105765044,0,4376_7778022_100380,4376_174 -4289_75982,270,4376_24576,The Square,105277754,0,4376_7778022_100320,4376_175 -4289_75982,146,4376_24577,The Square,105247754,0,4376_7778022_100320,4376_175 -4289_75982,271,4376_24578,The Square,105237754,0,4376_7778022_100320,4376_175 -4289_75982,115,4376_24579,The Square,105217754,0,4376_7778022_100320,4376_175 -4289_75963,263,4376_2458,Ticknock,105542645,1,4376_7778022_100150,4376_32 -4289_75982,260,4376_24580,The Square,105312334,0,4376_7778022_100442,4376_173 -4289_75982,261,4376_24581,The Square,105322334,0,4376_7778022_100442,4376_173 -4289_75982,262,4376_24582,The Square,105432334,0,4376_7778022_100442,4376_173 -4289_75982,263,4376_24583,The Square,105542334,0,4376_7778022_100442,4376_173 -4289_75982,264,4376_24584,The Square,105652334,0,4376_7778022_100442,4376_173 -4289_75982,265,4376_24585,The Square,105812334,0,4376_7778022_100442,4376_173 -4289_75982,266,4376_24586,The Square,105822334,0,4376_7778022_100442,4376_173 -4289_75982,267,4376_24587,The Square,106052334,0,4376_7778022_100442,4376_173 -4289_75982,268,4376_24588,The Square,106142334,0,4376_7778022_100442,4376_173 -4289_75982,269,4376_24589,The Square,106232334,0,4376_7778022_100442,4376_173 -4289_75963,264,4376_2459,Ticknock,105652645,1,4376_7778022_100150,4376_32 -4289_75982,260,4376_24590,The Square,105312360,0,4376_7778022_100490,4376_173 -4289_75982,261,4376_24591,The Square,105322360,0,4376_7778022_100490,4376_173 -4289_75982,262,4376_24592,The Square,105432360,0,4376_7778022_100490,4376_173 -4289_75982,263,4376_24593,The Square,105542360,0,4376_7778022_100490,4376_173 -4289_75982,264,4376_24594,The Square,105652360,0,4376_7778022_100490,4376_173 -4289_75982,265,4376_24595,The Square,105812360,0,4376_7778022_100490,4376_173 -4289_75982,266,4376_24596,The Square,105822360,0,4376_7778022_100490,4376_173 -4289_75982,267,4376_24597,The Square,106052360,0,4376_7778022_100490,4376_173 -4289_75982,268,4376_24598,The Square,106142360,0,4376_7778022_100490,4376_173 -4289_75982,269,4376_24599,The Square,106232360,0,4376_7778022_100490,4376_173 -4289_75960,115,4376_246,Sutton Station,105217528,0,4376_7778022_103105,4376_1 -4289_75963,265,4376_2460,Ticknock,105812645,1,4376_7778022_100150,4376_32 -4289_75982,259,4376_24600,The Square,105765092,0,4376_7778022_100360,4376_174 -4289_75982,270,4376_24601,The Square,105277792,0,4376_7778022_100342,4376_175 -4289_75982,146,4376_24602,The Square,105247792,0,4376_7778022_100342,4376_175 -4289_75982,271,4376_24603,The Square,105237792,0,4376_7778022_100342,4376_175 -4289_75982,115,4376_24604,The Square,105217792,0,4376_7778022_100342,4376_175 -4289_75982,260,4376_24605,The Square,105312392,0,4376_7778022_100470,4376_173 -4289_75982,261,4376_24606,The Square,105322392,0,4376_7778022_100470,4376_173 -4289_75982,262,4376_24607,The Square,105432392,0,4376_7778022_100470,4376_173 -4289_75982,263,4376_24608,The Square,105542392,0,4376_7778022_100470,4376_173 -4289_75982,264,4376_24609,The Square,105652392,0,4376_7778022_100470,4376_173 -4289_75963,266,4376_2461,Ticknock,105822645,1,4376_7778022_100150,4376_32 -4289_75982,265,4376_24610,The Square,105812392,0,4376_7778022_100470,4376_173 -4289_75982,266,4376_24611,The Square,105822392,0,4376_7778022_100470,4376_173 -4289_75982,267,4376_24612,The Square,106052392,0,4376_7778022_100470,4376_173 -4289_75982,268,4376_24613,The Square,106142392,0,4376_7778022_100470,4376_173 -4289_75982,269,4376_24614,The Square,106232392,0,4376_7778022_100470,4376_173 -4289_75982,260,4376_24615,The Square,105312420,0,4376_7778022_100432,4376_173 -4289_75982,261,4376_24616,The Square,105322420,0,4376_7778022_100432,4376_173 -4289_75982,262,4376_24617,The Square,105432420,0,4376_7778022_100432,4376_173 -4289_75982,263,4376_24618,The Square,105542420,0,4376_7778022_100432,4376_173 -4289_75982,264,4376_24619,The Square,105652420,0,4376_7778022_100432,4376_173 -4289_75963,267,4376_2462,Ticknock,106052645,1,4376_7778022_100150,4376_32 -4289_75982,265,4376_24620,The Square,105812420,0,4376_7778022_100432,4376_173 -4289_75982,266,4376_24621,The Square,105822420,0,4376_7778022_100432,4376_173 -4289_75982,267,4376_24622,The Square,106052420,0,4376_7778022_100432,4376_173 -4289_75982,268,4376_24623,The Square,106142420,0,4376_7778022_100432,4376_173 -4289_75982,269,4376_24624,The Square,106232420,0,4376_7778022_100432,4376_173 -4289_75982,259,4376_24625,The Square,105765146,0,4376_7778022_100390,4376_174 -4289_75982,270,4376_24626,The Square,105277844,0,4376_7778022_100260,4376_175 -4289_75982,146,4376_24627,The Square,105247844,0,4376_7778022_100260,4376_175 -4289_75982,271,4376_24628,The Square,105237844,0,4376_7778022_100260,4376_175 -4289_75982,115,4376_24629,The Square,105217844,0,4376_7778022_100260,4376_175 -4289_75963,268,4376_2463,Ticknock,106142645,1,4376_7778022_100150,4376_32 -4289_75982,260,4376_24630,The Square,105312474,0,4376_7778022_100452,4376_173 -4289_75982,261,4376_24631,The Square,105322474,0,4376_7778022_100452,4376_173 -4289_75982,262,4376_24632,The Square,105432474,0,4376_7778022_100452,4376_173 -4289_75982,263,4376_24633,The Square,105542474,0,4376_7778022_100452,4376_173 -4289_75982,264,4376_24634,The Square,105652474,0,4376_7778022_100452,4376_173 -4289_75982,265,4376_24635,The Square,105812474,0,4376_7778022_100452,4376_173 -4289_75982,266,4376_24636,The Square,105822474,0,4376_7778022_100452,4376_173 -4289_75982,267,4376_24637,The Square,106052474,0,4376_7778022_100452,4376_173 -4289_75982,268,4376_24638,The Square,106142474,0,4376_7778022_100452,4376_173 -4289_75982,269,4376_24639,The Square,106232474,0,4376_7778022_100452,4376_173 -4289_75963,269,4376_2464,Ticknock,106232645,1,4376_7778022_100150,4376_32 -4289_75982,259,4376_24640,The Square,105765194,0,4376_7778022_100370,4376_174 -4289_75982,270,4376_24641,The Square,105277880,0,4376_7778022_100330,4376_175 -4289_75982,146,4376_24642,The Square,105247880,0,4376_7778022_100330,4376_175 -4289_75982,271,4376_24643,The Square,105237880,0,4376_7778022_100330,4376_175 -4289_75982,115,4376_24644,The Square,105217880,0,4376_7778022_100330,4376_175 -4289_75982,260,4376_24645,The Square,105312534,0,4376_7778022_100500,4376_173 -4289_75982,261,4376_24646,The Square,105322534,0,4376_7778022_100500,4376_173 -4289_75982,262,4376_24647,The Square,105432534,0,4376_7778022_100500,4376_173 -4289_75982,263,4376_24648,The Square,105542534,0,4376_7778022_100500,4376_173 -4289_75982,264,4376_24649,The Square,105652534,0,4376_7778022_100500,4376_173 -4289_75963,259,4376_2465,Ticknock,105765353,1,4376_7778022_100150,4376_33 -4289_75982,265,4376_24650,The Square,105812534,0,4376_7778022_100500,4376_173 -4289_75982,266,4376_24651,The Square,105822534,0,4376_7778022_100500,4376_173 -4289_75982,267,4376_24652,The Square,106052534,0,4376_7778022_100500,4376_173 -4289_75982,268,4376_24653,The Square,106142534,0,4376_7778022_100500,4376_173 -4289_75982,269,4376_24654,The Square,106232534,0,4376_7778022_100500,4376_173 -4289_75982,259,4376_24655,The Square,105765248,0,4376_7778022_100400,4376_174 -4289_75982,270,4376_24656,The Square,105277928,0,4376_7778022_100320,4376_175 -4289_75982,146,4376_24657,The Square,105247928,0,4376_7778022_100320,4376_175 -4289_75982,271,4376_24658,The Square,105237928,0,4376_7778022_100320,4376_175 -4289_75982,115,4376_24659,The Square,105217928,0,4376_7778022_100320,4376_175 -4289_75963,270,4376_2466,Ticknock,105278043,1,4376_7778022_100122,4376_32 -4289_75982,260,4376_24660,The Square,105312582,0,4376_7778022_100442,4376_173 -4289_75982,261,4376_24661,The Square,105322582,0,4376_7778022_100442,4376_173 -4289_75982,262,4376_24662,The Square,105432582,0,4376_7778022_100442,4376_173 -4289_75982,263,4376_24663,The Square,105542582,0,4376_7778022_100442,4376_173 -4289_75982,264,4376_24664,The Square,105652582,0,4376_7778022_100442,4376_173 -4289_75982,265,4376_24665,The Square,105812582,0,4376_7778022_100442,4376_173 -4289_75982,266,4376_24666,The Square,105822582,0,4376_7778022_100442,4376_173 -4289_75982,267,4376_24667,The Square,106052582,0,4376_7778022_100442,4376_173 -4289_75982,268,4376_24668,The Square,106142582,0,4376_7778022_100442,4376_173 -4289_75982,269,4376_24669,The Square,106232582,0,4376_7778022_100442,4376_173 -4289_75963,146,4376_2467,Ticknock,105248043,1,4376_7778022_100122,4376_32 -4289_75982,259,4376_24670,The Square,105765294,0,4376_7778022_100380,4376_174 -4289_75982,270,4376_24671,The Square,105277968,0,4376_7778022_100250,4376_175 -4289_75982,146,4376_24672,The Square,105247968,0,4376_7778022_100250,4376_175 -4289_75982,271,4376_24673,The Square,105237968,0,4376_7778022_100250,4376_175 -4289_75982,115,4376_24674,The Square,105217968,0,4376_7778022_100250,4376_175 -4289_75982,260,4376_24675,The Square,105312640,0,4376_7778022_100470,4376_173 -4289_75982,261,4376_24676,The Square,105322640,0,4376_7778022_100470,4376_173 -4289_75982,262,4376_24677,The Square,105432640,0,4376_7778022_100470,4376_173 -4289_75982,263,4376_24678,The Square,105542640,0,4376_7778022_100470,4376_173 -4289_75982,264,4376_24679,The Square,105652640,0,4376_7778022_100470,4376_173 -4289_75963,271,4376_2468,Ticknock,105238043,1,4376_7778022_100122,4376_32 -4289_75982,265,4376_24680,The Square,105812640,0,4376_7778022_100470,4376_173 -4289_75982,266,4376_24681,The Square,105822640,0,4376_7778022_100470,4376_173 -4289_75982,267,4376_24682,The Square,106052640,0,4376_7778022_100470,4376_173 -4289_75982,268,4376_24683,The Square,106142640,0,4376_7778022_100470,4376_173 -4289_75982,269,4376_24684,The Square,106232640,0,4376_7778022_100470,4376_173 -4289_75982,259,4376_24685,The Square,105765340,0,4376_7778022_100360,4376_174 -4289_75982,270,4376_24686,The Square,105278018,0,4376_7778022_100342,4376_175 -4289_75982,146,4376_24687,The Square,105248018,0,4376_7778022_100342,4376_175 -4289_75982,271,4376_24688,The Square,105238018,0,4376_7778022_100342,4376_175 -4289_75982,115,4376_24689,The Square,105218018,0,4376_7778022_100342,4376_175 -4289_75963,115,4376_2469,Ticknock,105218043,1,4376_7778022_100122,4376_32 -4289_75982,260,4376_24690,The Square,105312684,0,4376_7778022_100432,4376_173 -4289_75982,261,4376_24691,The Square,105322684,0,4376_7778022_100432,4376_173 -4289_75982,262,4376_24692,The Square,105432684,0,4376_7778022_100432,4376_173 -4289_75982,263,4376_24693,The Square,105542684,0,4376_7778022_100432,4376_173 -4289_75982,264,4376_24694,The Square,105652684,0,4376_7778022_100432,4376_173 -4289_75982,265,4376_24695,The Square,105812684,0,4376_7778022_100432,4376_173 -4289_75982,266,4376_24696,The Square,105822684,0,4376_7778022_100432,4376_173 -4289_75982,267,4376_24697,The Square,106052684,0,4376_7778022_100432,4376_173 -4289_75982,268,4376_24698,The Square,106142684,0,4376_7778022_100432,4376_173 -4289_75982,269,4376_24699,The Square,106232684,0,4376_7778022_100432,4376_173 -4289_75960,260,4376_247,Sutton Station,105312032,0,4376_7778022_103503,4376_1 -4289_75963,260,4376_2470,Ticknock,105312739,1,4376_7778022_100160,4376_32 -4289_75982,259,4376_24700,The Square,105765382,0,4376_7778022_100370,4376_174 -4289_75982,270,4376_24701,The Square,105278048,0,4376_7778022_100330,4376_175 -4289_75982,146,4376_24702,The Square,105248048,0,4376_7778022_100330,4376_175 -4289_75982,271,4376_24703,The Square,105238048,0,4376_7778022_100330,4376_175 -4289_75982,115,4376_24704,The Square,105218048,0,4376_7778022_100330,4376_175 -4289_75982,260,4376_24705,The Square,105312736,0,4376_7778022_100452,4376_173 -4289_75982,261,4376_24706,The Square,105322736,0,4376_7778022_100452,4376_173 -4289_75982,262,4376_24707,The Square,105432736,0,4376_7778022_100452,4376_173 -4289_75982,263,4376_24708,The Square,105542736,0,4376_7778022_100452,4376_173 -4289_75982,264,4376_24709,The Square,105652736,0,4376_7778022_100452,4376_173 -4289_75963,261,4376_2471,Ticknock,105322739,1,4376_7778022_100160,4376_32 -4289_75982,265,4376_24710,The Square,105812736,0,4376_7778022_100452,4376_173 -4289_75982,266,4376_24711,The Square,105822736,0,4376_7778022_100452,4376_173 -4289_75982,267,4376_24712,The Square,106052736,0,4376_7778022_100452,4376_173 -4289_75982,268,4376_24713,The Square,106142736,0,4376_7778022_100452,4376_173 -4289_75982,269,4376_24714,The Square,106232736,0,4376_7778022_100452,4376_173 -4289_75982,259,4376_24715,The Square,105765430,0,4376_7778022_100400,4376_174 -4289_75982,270,4376_24716,The Square,105278092,0,4376_7778022_100320,4376_175 -4289_75982,146,4376_24717,The Square,105248092,0,4376_7778022_100320,4376_175 -4289_75982,271,4376_24718,The Square,105238092,0,4376_7778022_100320,4376_175 -4289_75982,115,4376_24719,The Square,105218092,0,4376_7778022_100320,4376_175 -4289_75963,262,4376_2472,Ticknock,105432739,1,4376_7778022_100160,4376_32 -4289_75982,260,4376_24720,The Square,105312780,0,4376_7778022_100442,4376_173 -4289_75982,261,4376_24721,The Square,105322780,0,4376_7778022_100442,4376_173 -4289_75982,262,4376_24722,The Square,105432780,0,4376_7778022_100442,4376_173 -4289_75982,263,4376_24723,The Square,105542780,0,4376_7778022_100442,4376_173 -4289_75982,264,4376_24724,The Square,105652780,0,4376_7778022_100442,4376_173 -4289_75982,265,4376_24725,The Square,105812780,0,4376_7778022_100442,4376_173 -4289_75982,266,4376_24726,The Square,105822780,0,4376_7778022_100442,4376_173 -4289_75982,267,4376_24727,The Square,106052780,0,4376_7778022_100442,4376_173 -4289_75982,268,4376_24728,The Square,106142780,0,4376_7778022_100442,4376_173 -4289_75982,269,4376_24729,The Square,106232780,0,4376_7778022_100442,4376_173 -4289_75963,263,4376_2473,Ticknock,105542739,1,4376_7778022_100160,4376_32 -4289_75982,259,4376_24730,The Square,105765468,0,4376_7778022_100380,4376_174 -4289_75982,270,4376_24731,The Square,105278126,0,4376_7778022_100310,4376_175 -4289_75982,146,4376_24732,The Square,105248126,0,4376_7778022_100310,4376_175 -4289_75982,271,4376_24733,The Square,105238126,0,4376_7778022_100310,4376_175 -4289_75982,115,4376_24734,The Square,105218126,0,4376_7778022_100310,4376_175 -4289_75982,260,4376_24735,The Square,105312828,0,4376_7778022_100470,4376_173 -4289_75982,261,4376_24736,The Square,105322828,0,4376_7778022_100470,4376_173 -4289_75982,262,4376_24737,The Square,105432828,0,4376_7778022_100470,4376_173 -4289_75982,263,4376_24738,The Square,105542828,0,4376_7778022_100470,4376_173 -4289_75982,264,4376_24739,The Square,105652828,0,4376_7778022_100470,4376_173 -4289_75963,264,4376_2474,Ticknock,105652739,1,4376_7778022_100160,4376_32 -4289_75982,265,4376_24740,The Square,105812828,0,4376_7778022_100470,4376_173 -4289_75982,266,4376_24741,The Square,105822828,0,4376_7778022_100470,4376_173 -4289_75982,267,4376_24742,The Square,106052828,0,4376_7778022_100470,4376_173 -4289_75982,268,4376_24743,The Square,106142828,0,4376_7778022_100470,4376_173 -4289_75982,269,4376_24744,The Square,106232828,0,4376_7778022_100470,4376_173 -4289_75982,259,4376_24745,The Square,105765516,0,4376_7778022_100360,4376_174 -4289_75982,270,4376_24746,The Square,105278168,0,4376_7778022_100270,4376_175 -4289_75982,146,4376_24747,The Square,105248168,0,4376_7778022_100270,4376_175 -4289_75982,271,4376_24748,The Square,105238168,0,4376_7778022_100270,4376_175 -4289_75982,115,4376_24749,The Square,105218168,0,4376_7778022_100270,4376_175 -4289_75963,265,4376_2475,Ticknock,105812739,1,4376_7778022_100160,4376_32 -4289_75982,260,4376_24750,The Square,105312872,0,4376_7778022_100432,4376_173 -4289_75982,261,4376_24751,The Square,105322872,0,4376_7778022_100432,4376_173 -4289_75982,262,4376_24752,The Square,105432872,0,4376_7778022_100432,4376_173 -4289_75982,263,4376_24753,The Square,105542872,0,4376_7778022_100432,4376_173 -4289_75982,264,4376_24754,The Square,105652872,0,4376_7778022_100432,4376_173 -4289_75982,265,4376_24755,The Square,105812872,0,4376_7778022_100432,4376_173 -4289_75982,266,4376_24756,The Square,105822872,0,4376_7778022_100432,4376_173 -4289_75982,267,4376_24757,The Square,106052872,0,4376_7778022_100432,4376_173 -4289_75982,268,4376_24758,The Square,106142872,0,4376_7778022_100432,4376_173 -4289_75982,269,4376_24759,The Square,106232872,0,4376_7778022_100432,4376_173 -4289_75963,266,4376_2476,Ticknock,105822739,1,4376_7778022_100160,4376_32 -4289_75982,259,4376_24760,The Square,105765554,0,4376_7778022_100370,4376_174 -4289_75982,270,4376_24761,The Square,105278200,0,4376_7778022_100290,4376_175 -4289_75982,146,4376_24762,The Square,105248200,0,4376_7778022_100290,4376_175 -4289_75982,271,4376_24763,The Square,105238200,0,4376_7778022_100290,4376_175 -4289_75982,115,4376_24764,The Square,105218200,0,4376_7778022_100290,4376_175 -4289_75982,260,4376_24765,The Square,105312920,0,4376_7778022_100452,4376_173 -4289_75982,261,4376_24766,The Square,105322920,0,4376_7778022_100452,4376_173 -4289_75982,262,4376_24767,The Square,105432920,0,4376_7778022_100452,4376_173 -4289_75982,263,4376_24768,The Square,105542920,0,4376_7778022_100452,4376_173 -4289_75982,264,4376_24769,The Square,105652920,0,4376_7778022_100452,4376_173 -4289_75963,267,4376_2477,Ticknock,106052739,1,4376_7778022_100160,4376_32 -4289_75982,265,4376_24770,The Square,105812920,0,4376_7778022_100452,4376_173 -4289_75982,266,4376_24771,The Square,105822920,0,4376_7778022_100452,4376_173 -4289_75982,267,4376_24772,The Square,106052920,0,4376_7778022_100452,4376_173 -4289_75982,268,4376_24773,The Square,106142920,0,4376_7778022_100452,4376_173 -4289_75982,269,4376_24774,The Square,106232920,0,4376_7778022_100452,4376_173 -4289_75982,259,4376_24775,The Square,105765598,0,4376_7778022_100400,4376_174 -4289_75982,270,4376_24776,The Square,105278242,0,4376_7778022_100250,4376_175 -4289_75982,146,4376_24777,The Square,105248242,0,4376_7778022_100250,4376_175 -4289_75982,271,4376_24778,The Square,105238242,0,4376_7778022_100250,4376_175 -4289_75982,115,4376_24779,The Square,105218242,0,4376_7778022_100250,4376_175 -4289_75963,268,4376_2478,Ticknock,106142739,1,4376_7778022_100160,4376_32 -4289_75982,260,4376_24780,The Square,105312990,0,4376_7778022_100470,4376_173 -4289_75982,261,4376_24781,The Square,105322990,0,4376_7778022_100470,4376_173 -4289_75982,262,4376_24782,The Square,105432990,0,4376_7778022_100470,4376_173 -4289_75982,263,4376_24783,The Square,105542990,0,4376_7778022_100470,4376_173 -4289_75982,264,4376_24784,The Square,105652990,0,4376_7778022_100470,4376_173 -4289_75982,265,4376_24785,The Square,105812990,0,4376_7778022_100470,4376_173 -4289_75982,266,4376_24786,The Square,105822990,0,4376_7778022_100470,4376_173 -4289_75982,267,4376_24787,The Square,106052990,0,4376_7778022_100470,4376_173 -4289_75982,268,4376_24788,The Square,106142990,0,4376_7778022_100470,4376_173 -4289_75982,269,4376_24789,The Square,106232990,0,4376_7778022_100470,4376_173 -4289_75963,269,4376_2479,Ticknock,106232739,1,4376_7778022_100160,4376_32 -4289_75982,259,4376_24790,The Square,105765662,0,4376_7778022_100360,4376_174 -4289_75982,270,4376_24791,The Square,105278306,0,4376_7778022_100320,4376_175 -4289_75982,146,4376_24792,The Square,105248306,0,4376_7778022_100320,4376_175 -4289_75982,271,4376_24793,The Square,105238306,0,4376_7778022_100320,4376_175 -4289_75982,115,4376_24794,The Square,105218306,0,4376_7778022_100320,4376_175 -4289_75982,260,4376_24795,Blanchardstown,105311013,1,4376_7778022_100431,4376_176 -4289_75982,261,4376_24796,Blanchardstown,105321013,1,4376_7778022_100431,4376_176 -4289_75982,262,4376_24797,Blanchardstown,105431013,1,4376_7778022_100431,4376_176 -4289_75982,263,4376_24798,Blanchardstown,105541013,1,4376_7778022_100431,4376_176 -4289_75982,264,4376_24799,Blanchardstown,105651013,1,4376_7778022_100431,4376_176 -4289_75960,261,4376_248,Sutton Station,105322032,0,4376_7778022_103503,4376_1 -4289_75963,259,4376_2480,Ticknock,105765439,1,4376_7778022_100143,4376_33 -4289_75982,265,4376_24800,Blanchardstown,105811013,1,4376_7778022_100431,4376_176 -4289_75982,266,4376_24801,Blanchardstown,105821013,1,4376_7778022_100431,4376_176 -4289_75982,267,4376_24802,Blanchardstown,106051013,1,4376_7778022_100431,4376_176 -4289_75982,268,4376_24803,Blanchardstown,106141013,1,4376_7778022_100431,4376_176 -4289_75982,269,4376_24804,Blanchardstown,106231013,1,4376_7778022_100431,4376_176 -4289_75982,259,4376_24805,Blanchardstown,105764009,1,4376_7778022_100370,4376_177 -4289_75982,260,4376_24806,Blanchardstown,105311037,1,4376_7778022_100451,4376_176 -4289_75982,261,4376_24807,Blanchardstown,105321037,1,4376_7778022_100451,4376_176 -4289_75982,262,4376_24808,Blanchardstown,105431037,1,4376_7778022_100451,4376_176 -4289_75982,263,4376_24809,Blanchardstown,105541037,1,4376_7778022_100451,4376_176 -4289_75963,270,4376_2481,Ticknock,105278117,1,4376_7778022_100122,4376_32 -4289_75982,264,4376_24810,Blanchardstown,105651037,1,4376_7778022_100451,4376_176 -4289_75982,265,4376_24811,Blanchardstown,105811037,1,4376_7778022_100451,4376_176 -4289_75982,266,4376_24812,Blanchardstown,105821037,1,4376_7778022_100451,4376_176 -4289_75982,267,4376_24813,Blanchardstown,106051037,1,4376_7778022_100451,4376_176 -4289_75982,268,4376_24814,Blanchardstown,106141037,1,4376_7778022_100451,4376_176 -4289_75982,269,4376_24815,Blanchardstown,106231037,1,4376_7778022_100451,4376_176 -4289_75982,260,4376_24816,Blanchardstown,105311079,1,4376_7778022_100421,4376_176 -4289_75982,261,4376_24817,Blanchardstown,105321079,1,4376_7778022_100421,4376_176 -4289_75982,262,4376_24818,Blanchardstown,105431079,1,4376_7778022_100421,4376_176 -4289_75982,263,4376_24819,Blanchardstown,105541079,1,4376_7778022_100421,4376_176 -4289_75963,146,4376_2482,Ticknock,105248117,1,4376_7778022_100122,4376_32 -4289_75982,264,4376_24820,Blanchardstown,105651079,1,4376_7778022_100421,4376_176 -4289_75982,265,4376_24821,Blanchardstown,105811079,1,4376_7778022_100421,4376_176 -4289_75982,266,4376_24822,Blanchardstown,105821079,1,4376_7778022_100421,4376_176 -4289_75982,267,4376_24823,Blanchardstown,106051079,1,4376_7778022_100421,4376_176 -4289_75982,268,4376_24824,Blanchardstown,106141079,1,4376_7778022_100421,4376_176 -4289_75982,269,4376_24825,Blanchardstown,106231079,1,4376_7778022_100421,4376_176 -4289_75982,259,4376_24826,Blanchardstown,105764057,1,4376_7778022_100360,4376_177 -4289_75982,260,4376_24827,Blanchardstown,105311109,1,4376_7778022_100470,4376_176 -4289_75982,261,4376_24828,Blanchardstown,105321109,1,4376_7778022_100470,4376_176 -4289_75982,262,4376_24829,Blanchardstown,105431109,1,4376_7778022_100470,4376_176 -4289_75963,271,4376_2483,Ticknock,105238117,1,4376_7778022_100122,4376_32 -4289_75982,263,4376_24830,Blanchardstown,105541109,1,4376_7778022_100470,4376_176 -4289_75982,264,4376_24831,Blanchardstown,105651109,1,4376_7778022_100470,4376_176 -4289_75982,265,4376_24832,Blanchardstown,105811109,1,4376_7778022_100470,4376_176 -4289_75982,266,4376_24833,Blanchardstown,105821109,1,4376_7778022_100470,4376_176 -4289_75982,267,4376_24834,Blanchardstown,106051109,1,4376_7778022_100470,4376_176 -4289_75982,268,4376_24835,Blanchardstown,106141109,1,4376_7778022_100470,4376_176 -4289_75982,269,4376_24836,Blanchardstown,106231109,1,4376_7778022_100470,4376_176 -4289_75982,260,4376_24837,Blanchardstown,105311145,1,4376_7778022_100481,4376_176 -4289_75982,261,4376_24838,Blanchardstown,105321145,1,4376_7778022_100481,4376_176 -4289_75982,262,4376_24839,Blanchardstown,105431145,1,4376_7778022_100481,4376_176 -4289_75963,115,4376_2484,Ticknock,105218117,1,4376_7778022_100122,4376_32 -4289_75982,263,4376_24840,Blanchardstown,105541145,1,4376_7778022_100481,4376_176 -4289_75982,264,4376_24841,Blanchardstown,105651145,1,4376_7778022_100481,4376_176 -4289_75982,265,4376_24842,Blanchardstown,105811145,1,4376_7778022_100481,4376_176 -4289_75982,266,4376_24843,Blanchardstown,105821145,1,4376_7778022_100481,4376_176 -4289_75982,267,4376_24844,Blanchardstown,106051145,1,4376_7778022_100481,4376_176 -4289_75982,268,4376_24845,Blanchardstown,106141145,1,4376_7778022_100481,4376_176 -4289_75982,269,4376_24846,Blanchardstown,106231145,1,4376_7778022_100481,4376_176 -4289_75982,260,4376_24847,Blanchardstown,105311171,1,4376_7778022_100441,4376_176 -4289_75982,261,4376_24848,Blanchardstown,105321171,1,4376_7778022_100441,4376_176 -4289_75982,262,4376_24849,Blanchardstown,105431171,1,4376_7778022_100441,4376_176 -4289_75963,260,4376_2485,Ticknock,105312835,1,4376_7778022_100150,4376_32 -4289_75982,263,4376_24850,Blanchardstown,105541171,1,4376_7778022_100441,4376_176 -4289_75982,264,4376_24851,Blanchardstown,105651171,1,4376_7778022_100441,4376_176 -4289_75982,265,4376_24852,Blanchardstown,105811171,1,4376_7778022_100441,4376_176 -4289_75982,266,4376_24853,Blanchardstown,105821171,1,4376_7778022_100441,4376_176 -4289_75982,267,4376_24854,Blanchardstown,106051171,1,4376_7778022_100441,4376_176 -4289_75982,268,4376_24855,Blanchardstown,106141171,1,4376_7778022_100441,4376_176 -4289_75982,269,4376_24856,Blanchardstown,106231171,1,4376_7778022_100441,4376_176 -4289_75982,260,4376_24857,Blanchardstown,105311207,1,4376_7778022_100500,4376_176 -4289_75982,261,4376_24858,Blanchardstown,105321207,1,4376_7778022_100500,4376_176 -4289_75982,262,4376_24859,Blanchardstown,105431207,1,4376_7778022_100500,4376_176 -4289_75963,261,4376_2486,Ticknock,105322835,1,4376_7778022_100150,4376_32 -4289_75982,263,4376_24860,Blanchardstown,105541207,1,4376_7778022_100500,4376_176 -4289_75982,264,4376_24861,Blanchardstown,105651207,1,4376_7778022_100500,4376_176 -4289_75982,265,4376_24862,Blanchardstown,105811207,1,4376_7778022_100500,4376_176 -4289_75982,266,4376_24863,Blanchardstown,105821207,1,4376_7778022_100500,4376_176 -4289_75982,267,4376_24864,Blanchardstown,106051207,1,4376_7778022_100500,4376_176 -4289_75982,268,4376_24865,Blanchardstown,106141207,1,4376_7778022_100500,4376_176 -4289_75982,269,4376_24866,Blanchardstown,106231207,1,4376_7778022_100500,4376_176 -4289_75982,259,4376_24867,Blanchardstown,105764133,1,4376_7778022_100370,4376_177 -4289_75982,270,4376_24868,Blanchardstown,105277011,1,4376_7778022_100320,4376_178 -4289_75982,146,4376_24869,Blanchardstown,105247011,1,4376_7778022_100320,4376_178 -4289_75963,262,4376_2487,Ticknock,105432835,1,4376_7778022_100150,4376_32 -4289_75982,271,4376_24870,Blanchardstown,105237011,1,4376_7778022_100320,4376_178 -4289_75982,115,4376_24871,Blanchardstown,105217011,1,4376_7778022_100320,4376_178 -4289_75982,260,4376_24872,Blanchardstown,105311227,1,4376_7778022_100431,4376_176 -4289_75982,261,4376_24873,Blanchardstown,105321227,1,4376_7778022_100431,4376_176 -4289_75982,262,4376_24874,Blanchardstown,105431227,1,4376_7778022_100431,4376_176 -4289_75982,263,4376_24875,Blanchardstown,105541227,1,4376_7778022_100431,4376_176 -4289_75982,264,4376_24876,Blanchardstown,105651227,1,4376_7778022_100431,4376_176 -4289_75982,265,4376_24877,Blanchardstown,105811227,1,4376_7778022_100431,4376_176 -4289_75982,266,4376_24878,Blanchardstown,105821227,1,4376_7778022_100431,4376_176 -4289_75982,267,4376_24879,Blanchardstown,106051227,1,4376_7778022_100431,4376_176 -4289_75963,263,4376_2488,Ticknock,105542835,1,4376_7778022_100150,4376_32 -4289_75982,268,4376_24880,Blanchardstown,106141227,1,4376_7778022_100431,4376_176 -4289_75982,269,4376_24881,Blanchardstown,106231227,1,4376_7778022_100431,4376_176 -4289_75982,260,4376_24882,Blanchardstown,105311279,1,4376_7778022_100461,4376_176 -4289_75982,261,4376_24883,Blanchardstown,105321279,1,4376_7778022_100461,4376_176 -4289_75982,262,4376_24884,Blanchardstown,105431279,1,4376_7778022_100461,4376_176 -4289_75982,263,4376_24885,Blanchardstown,105541279,1,4376_7778022_100461,4376_176 -4289_75982,264,4376_24886,Blanchardstown,105651279,1,4376_7778022_100461,4376_176 -4289_75982,265,4376_24887,Blanchardstown,105811279,1,4376_7778022_100461,4376_176 -4289_75982,266,4376_24888,Blanchardstown,105821279,1,4376_7778022_100461,4376_176 -4289_75982,267,4376_24889,Blanchardstown,106051279,1,4376_7778022_100461,4376_176 -4289_75963,264,4376_2489,Ticknock,105652835,1,4376_7778022_100150,4376_32 -4289_75982,268,4376_24890,Blanchardstown,106141279,1,4376_7778022_100461,4376_176 -4289_75982,269,4376_24891,Blanchardstown,106231279,1,4376_7778022_100461,4376_176 -4289_75982,260,4376_24892,Blanchardstown,105311305,1,4376_7778022_100451,4376_176 -4289_75982,261,4376_24893,Blanchardstown,105321305,1,4376_7778022_100451,4376_176 -4289_75982,262,4376_24894,Blanchardstown,105431305,1,4376_7778022_100451,4376_176 -4289_75982,263,4376_24895,Blanchardstown,105541305,1,4376_7778022_100451,4376_176 -4289_75982,264,4376_24896,Blanchardstown,105651305,1,4376_7778022_100451,4376_176 -4289_75982,265,4376_24897,Blanchardstown,105811305,1,4376_7778022_100451,4376_176 -4289_75982,266,4376_24898,Blanchardstown,105821305,1,4376_7778022_100451,4376_176 -4289_75982,267,4376_24899,Blanchardstown,106051305,1,4376_7778022_100451,4376_176 -4289_75960,262,4376_249,Sutton Station,105432032,0,4376_7778022_103503,4376_1 -4289_75963,265,4376_2490,Ticknock,105812835,1,4376_7778022_100150,4376_32 -4289_75982,268,4376_24900,Blanchardstown,106141305,1,4376_7778022_100451,4376_176 -4289_75982,269,4376_24901,Blanchardstown,106231305,1,4376_7778022_100451,4376_176 -4289_75982,260,4376_24902,Blanchardstown,105311343,1,4376_7778022_100490,4376_176 -4289_75982,261,4376_24903,Blanchardstown,105321343,1,4376_7778022_100490,4376_176 -4289_75982,262,4376_24904,Blanchardstown,105431343,1,4376_7778022_100490,4376_176 -4289_75982,263,4376_24905,Blanchardstown,105541343,1,4376_7778022_100490,4376_176 -4289_75982,264,4376_24906,Blanchardstown,105651343,1,4376_7778022_100490,4376_176 -4289_75982,265,4376_24907,Blanchardstown,105811343,1,4376_7778022_100490,4376_176 -4289_75982,266,4376_24908,Blanchardstown,105821343,1,4376_7778022_100490,4376_176 -4289_75982,267,4376_24909,Blanchardstown,106051343,1,4376_7778022_100490,4376_176 -4289_75963,266,4376_2491,Ticknock,105822835,1,4376_7778022_100150,4376_32 -4289_75982,268,4376_24910,Blanchardstown,106141343,1,4376_7778022_100490,4376_176 -4289_75982,269,4376_24911,Blanchardstown,106231343,1,4376_7778022_100490,4376_176 -4289_75982,259,4376_24912,Blanchardstown,105764217,1,4376_7778022_100360,4376_177 -4289_75982,270,4376_24913,Blanchardstown,105277055,1,4376_7778022_100310,4376_178 -4289_75982,146,4376_24914,Blanchardstown,105247055,1,4376_7778022_100310,4376_178 -4289_75982,271,4376_24915,Blanchardstown,105237055,1,4376_7778022_100310,4376_178 -4289_75982,115,4376_24916,Blanchardstown,105217055,1,4376_7778022_100310,4376_178 -4289_75982,260,4376_24917,Blanchardstown,105311395,1,4376_7778022_100470,4376_176 -4289_75982,261,4376_24918,Blanchardstown,105321395,1,4376_7778022_100470,4376_176 -4289_75982,262,4376_24919,Blanchardstown,105431395,1,4376_7778022_100470,4376_176 -4289_75963,267,4376_2492,Ticknock,106052835,1,4376_7778022_100150,4376_32 -4289_75982,263,4376_24920,Blanchardstown,105541395,1,4376_7778022_100470,4376_176 -4289_75982,264,4376_24921,Blanchardstown,105651395,1,4376_7778022_100470,4376_176 -4289_75982,265,4376_24922,Blanchardstown,105811395,1,4376_7778022_100470,4376_176 -4289_75982,266,4376_24923,Blanchardstown,105821395,1,4376_7778022_100470,4376_176 -4289_75982,267,4376_24924,Blanchardstown,106051395,1,4376_7778022_100470,4376_176 -4289_75982,268,4376_24925,Blanchardstown,106141395,1,4376_7778022_100470,4376_176 -4289_75982,269,4376_24926,Blanchardstown,106231395,1,4376_7778022_100470,4376_176 -4289_75982,259,4376_24927,Blanchardstown,105764259,1,4376_7778022_100390,4376_177 -4289_75982,260,4376_24928,Blanchardstown,105311453,1,4376_7778022_100510,4376_176 -4289_75982,261,4376_24929,Blanchardstown,105321453,1,4376_7778022_100510,4376_176 -4289_75963,268,4376_2493,Ticknock,106142835,1,4376_7778022_100150,4376_32 -4289_75982,262,4376_24930,Blanchardstown,105431453,1,4376_7778022_100510,4376_176 -4289_75982,263,4376_24931,Blanchardstown,105541453,1,4376_7778022_100510,4376_176 -4289_75982,264,4376_24932,Blanchardstown,105651453,1,4376_7778022_100510,4376_176 -4289_75982,265,4376_24933,Blanchardstown,105811453,1,4376_7778022_100510,4376_176 -4289_75982,266,4376_24934,Blanchardstown,105821453,1,4376_7778022_100510,4376_176 -4289_75982,267,4376_24935,Blanchardstown,106051453,1,4376_7778022_100510,4376_176 -4289_75982,268,4376_24936,Blanchardstown,106141453,1,4376_7778022_100510,4376_176 -4289_75982,269,4376_24937,Blanchardstown,106231453,1,4376_7778022_100510,4376_176 -4289_75982,259,4376_24938,Blanchardstown,105764315,1,4376_7778022_100370,4376_177 -4289_75982,270,4376_24939,Blanchardstown,105277127,1,4376_7778022_100320,4376_178 -4289_75963,269,4376_2494,Ticknock,106232835,1,4376_7778022_100150,4376_32 -4289_75982,146,4376_24940,Blanchardstown,105247127,1,4376_7778022_100320,4376_178 -4289_75982,271,4376_24941,Blanchardstown,105237127,1,4376_7778022_100320,4376_178 -4289_75982,115,4376_24942,Blanchardstown,105217127,1,4376_7778022_100320,4376_178 -4289_75982,260,4376_24943,Blanchardstown,105311507,1,4376_7778022_100500,4376_176 -4289_75982,261,4376_24944,Blanchardstown,105321507,1,4376_7778022_100500,4376_176 -4289_75982,262,4376_24945,Blanchardstown,105431507,1,4376_7778022_100500,4376_176 -4289_75982,263,4376_24946,Blanchardstown,105541507,1,4376_7778022_100500,4376_176 -4289_75982,264,4376_24947,Blanchardstown,105651507,1,4376_7778022_100500,4376_176 -4289_75982,265,4376_24948,Blanchardstown,105811507,1,4376_7778022_100500,4376_176 -4289_75982,266,4376_24949,Blanchardstown,105821507,1,4376_7778022_100500,4376_176 -4289_75963,259,4376_2495,Ticknock,105765525,1,4376_7778022_100150,4376_33 -4289_75982,267,4376_24950,Blanchardstown,106051507,1,4376_7778022_100500,4376_176 -4289_75982,268,4376_24951,Blanchardstown,106141507,1,4376_7778022_100500,4376_176 -4289_75982,269,4376_24952,Blanchardstown,106231507,1,4376_7778022_100500,4376_176 -4289_75982,259,4376_24953,Blanchardstown,105764361,1,4376_7778022_100380,4376_177 -4289_75982,270,4376_24954,Blanchardstown,105277161,1,4376_7778022_100341,4376_178 -4289_75982,146,4376_24955,Blanchardstown,105247161,1,4376_7778022_100341,4376_178 -4289_75982,271,4376_24956,Blanchardstown,105237161,1,4376_7778022_100341,4376_178 -4289_75982,115,4376_24957,Blanchardstown,105217161,1,4376_7778022_100341,4376_178 -4289_75982,260,4376_24958,Blanchardstown,105311563,1,4376_7778022_100490,4376_176 -4289_75982,261,4376_24959,Blanchardstown,105321563,1,4376_7778022_100490,4376_176 -4289_75963,270,4376_2496,Ticknock,105278195,1,4376_7778022_100122,4376_32 -4289_75982,262,4376_24960,Blanchardstown,105431563,1,4376_7778022_100490,4376_176 -4289_75982,263,4376_24961,Blanchardstown,105541563,1,4376_7778022_100490,4376_176 -4289_75982,264,4376_24962,Blanchardstown,105651563,1,4376_7778022_100490,4376_176 -4289_75982,265,4376_24963,Blanchardstown,105811563,1,4376_7778022_100490,4376_176 -4289_75982,266,4376_24964,Blanchardstown,105821563,1,4376_7778022_100490,4376_176 -4289_75982,267,4376_24965,Blanchardstown,106051563,1,4376_7778022_100490,4376_176 -4289_75982,268,4376_24966,Blanchardstown,106141563,1,4376_7778022_100490,4376_176 -4289_75982,269,4376_24967,Blanchardstown,106231563,1,4376_7778022_100490,4376_176 -4289_75982,259,4376_24968,Blanchardstown,105764417,1,4376_7778022_100360,4376_177 -4289_75982,270,4376_24969,Blanchardstown,105277211,1,4376_7778022_100310,4376_178 -4289_75963,146,4376_2497,Ticknock,105248195,1,4376_7778022_100122,4376_32 -4289_75982,146,4376_24970,Blanchardstown,105247211,1,4376_7778022_100310,4376_178 -4289_75982,271,4376_24971,Blanchardstown,105237211,1,4376_7778022_100310,4376_178 -4289_75982,115,4376_24972,Blanchardstown,105217211,1,4376_7778022_100310,4376_178 -4289_75982,260,4376_24973,Blanchardstown,105311613,1,4376_7778022_100470,4376_176 -4289_75982,261,4376_24974,Blanchardstown,105321613,1,4376_7778022_100470,4376_176 -4289_75982,262,4376_24975,Blanchardstown,105431613,1,4376_7778022_100470,4376_176 -4289_75982,263,4376_24976,Blanchardstown,105541613,1,4376_7778022_100470,4376_176 -4289_75982,264,4376_24977,Blanchardstown,105651613,1,4376_7778022_100470,4376_176 -4289_75982,265,4376_24978,Blanchardstown,105811613,1,4376_7778022_100470,4376_176 -4289_75982,266,4376_24979,Blanchardstown,105821613,1,4376_7778022_100470,4376_176 -4289_75963,271,4376_2498,Ticknock,105238195,1,4376_7778022_100122,4376_32 -4289_75982,267,4376_24980,Blanchardstown,106051613,1,4376_7778022_100470,4376_176 -4289_75982,268,4376_24981,Blanchardstown,106141613,1,4376_7778022_100470,4376_176 -4289_75982,269,4376_24982,Blanchardstown,106231613,1,4376_7778022_100470,4376_176 -4289_75982,259,4376_24983,Blanchardstown,105764463,1,4376_7778022_100390,4376_177 -4289_75982,270,4376_24984,Blanchardstown,105277253,1,4376_7778022_100330,4376_178 -4289_75982,146,4376_24985,Blanchardstown,105247253,1,4376_7778022_100330,4376_178 -4289_75982,271,4376_24986,Blanchardstown,105237253,1,4376_7778022_100330,4376_178 -4289_75982,115,4376_24987,Blanchardstown,105217253,1,4376_7778022_100330,4376_178 -4289_75982,260,4376_24988,Blanchardstown,105311671,1,4376_7778022_100510,4376_176 -4289_75982,261,4376_24989,Blanchardstown,105321671,1,4376_7778022_100510,4376_176 -4289_75963,115,4376_2499,Ticknock,105218195,1,4376_7778022_100122,4376_32 -4289_75982,262,4376_24990,Blanchardstown,105431671,1,4376_7778022_100510,4376_176 -4289_75982,263,4376_24991,Blanchardstown,105541671,1,4376_7778022_100510,4376_176 -4289_75982,264,4376_24992,Blanchardstown,105651671,1,4376_7778022_100510,4376_176 -4289_75982,265,4376_24993,Blanchardstown,105811671,1,4376_7778022_100510,4376_176 -4289_75982,266,4376_24994,Blanchardstown,105821671,1,4376_7778022_100510,4376_176 -4289_75982,267,4376_24995,Blanchardstown,106051671,1,4376_7778022_100510,4376_176 -4289_75982,268,4376_24996,Blanchardstown,106141671,1,4376_7778022_100510,4376_176 -4289_75982,269,4376_24997,Blanchardstown,106231671,1,4376_7778022_100510,4376_176 -4289_75982,259,4376_24998,Blanchardstown,105764519,1,4376_7778022_100370,4376_177 -4289_75982,270,4376_24999,Blanchardstown,105277301,1,4376_7778022_100320,4376_178 -4289_75960,262,4376_25,Sutton Station,105431106,0,4376_7778022_103108,4376_1 -4289_75960,263,4376_250,Sutton Station,105542032,0,4376_7778022_103503,4376_1 -4289_75963,260,4376_2500,Ticknock,105312929,1,4376_7778022_100150,4376_32 -4289_75982,146,4376_25000,Blanchardstown,105247301,1,4376_7778022_100320,4376_178 -4289_75982,271,4376_25001,Blanchardstown,105237301,1,4376_7778022_100320,4376_178 -4289_75982,115,4376_25002,Blanchardstown,105217301,1,4376_7778022_100320,4376_178 -4289_75982,260,4376_25003,Blanchardstown,105311721,1,4376_7778022_100482,4376_176 -4289_75982,261,4376_25004,Blanchardstown,105321721,1,4376_7778022_100482,4376_176 -4289_75982,262,4376_25005,Blanchardstown,105431721,1,4376_7778022_100482,4376_176 -4289_75982,263,4376_25006,Blanchardstown,105541721,1,4376_7778022_100482,4376_176 -4289_75982,264,4376_25007,Blanchardstown,105651721,1,4376_7778022_100482,4376_176 -4289_75982,265,4376_25008,Blanchardstown,105811721,1,4376_7778022_100482,4376_176 -4289_75982,266,4376_25009,Blanchardstown,105821721,1,4376_7778022_100482,4376_176 -4289_75963,261,4376_2501,Ticknock,105322929,1,4376_7778022_100150,4376_32 -4289_75982,267,4376_25010,Blanchardstown,106051721,1,4376_7778022_100482,4376_176 -4289_75982,268,4376_25011,Blanchardstown,106141721,1,4376_7778022_100482,4376_176 -4289_75982,269,4376_25012,Blanchardstown,106231721,1,4376_7778022_100482,4376_176 -4289_75982,259,4376_25013,Blanchardstown,105764567,1,4376_7778022_100400,4376_177 -4289_75982,270,4376_25014,Blanchardstown,105277343,1,4376_7778022_100341,4376_178 -4289_75982,146,4376_25015,Blanchardstown,105247343,1,4376_7778022_100341,4376_178 -4289_75982,271,4376_25016,Blanchardstown,105237343,1,4376_7778022_100341,4376_178 -4289_75982,115,4376_25017,Blanchardstown,105217343,1,4376_7778022_100341,4376_178 -4289_75982,260,4376_25018,Blanchardstown,105311781,1,4376_7778022_100500,4376_176 -4289_75982,261,4376_25019,Blanchardstown,105321781,1,4376_7778022_100500,4376_176 -4289_75963,262,4376_2502,Ticknock,105432929,1,4376_7778022_100150,4376_32 -4289_75982,262,4376_25020,Blanchardstown,105431781,1,4376_7778022_100500,4376_176 -4289_75982,263,4376_25021,Blanchardstown,105541781,1,4376_7778022_100500,4376_176 -4289_75982,264,4376_25022,Blanchardstown,105651781,1,4376_7778022_100500,4376_176 -4289_75982,265,4376_25023,Blanchardstown,105811781,1,4376_7778022_100500,4376_176 -4289_75982,266,4376_25024,Blanchardstown,105821781,1,4376_7778022_100500,4376_176 -4289_75982,267,4376_25025,Blanchardstown,106051781,1,4376_7778022_100500,4376_176 -4289_75982,268,4376_25026,Blanchardstown,106141781,1,4376_7778022_100500,4376_176 -4289_75982,269,4376_25027,Blanchardstown,106231781,1,4376_7778022_100500,4376_176 -4289_75982,259,4376_25028,Blanchardstown,105764623,1,4376_7778022_100380,4376_177 -4289_75982,270,4376_25029,Blanchardstown,105277391,1,4376_7778022_100310,4376_178 -4289_75963,263,4376_2503,Ticknock,105542929,1,4376_7778022_100150,4376_32 -4289_75982,146,4376_25030,Blanchardstown,105247391,1,4376_7778022_100310,4376_178 -4289_75982,271,4376_25031,Blanchardstown,105237391,1,4376_7778022_100310,4376_178 -4289_75982,115,4376_25032,Blanchardstown,105217391,1,4376_7778022_100310,4376_178 -4289_75982,260,4376_25033,Blanchardstown,105311833,1,4376_7778022_100490,4376_176 -4289_75982,261,4376_25034,Blanchardstown,105321833,1,4376_7778022_100490,4376_176 -4289_75982,262,4376_25035,Blanchardstown,105431833,1,4376_7778022_100490,4376_176 -4289_75982,263,4376_25036,Blanchardstown,105541833,1,4376_7778022_100490,4376_176 -4289_75982,264,4376_25037,Blanchardstown,105651833,1,4376_7778022_100490,4376_176 -4289_75982,265,4376_25038,Blanchardstown,105811833,1,4376_7778022_100490,4376_176 -4289_75982,266,4376_25039,Blanchardstown,105821833,1,4376_7778022_100490,4376_176 -4289_75963,264,4376_2504,Ticknock,105652929,1,4376_7778022_100150,4376_32 -4289_75982,267,4376_25040,Blanchardstown,106051833,1,4376_7778022_100490,4376_176 -4289_75982,268,4376_25041,Blanchardstown,106141833,1,4376_7778022_100490,4376_176 -4289_75982,269,4376_25042,Blanchardstown,106231833,1,4376_7778022_100490,4376_176 -4289_75982,259,4376_25043,Blanchardstown,105764673,1,4376_7778022_100360,4376_177 -4289_75982,270,4376_25044,Blanchardstown,105277433,1,4376_7778022_100330,4376_178 -4289_75982,146,4376_25045,Blanchardstown,105247433,1,4376_7778022_100330,4376_178 -4289_75982,271,4376_25046,Blanchardstown,105237433,1,4376_7778022_100330,4376_178 -4289_75982,115,4376_25047,Blanchardstown,105217433,1,4376_7778022_100330,4376_178 -4289_75982,260,4376_25048,Blanchardstown,105311897,1,4376_7778022_100470,4376_176 -4289_75982,261,4376_25049,Blanchardstown,105321897,1,4376_7778022_100470,4376_176 -4289_75963,265,4376_2505,Ticknock,105812929,1,4376_7778022_100150,4376_32 -4289_75982,262,4376_25050,Blanchardstown,105431897,1,4376_7778022_100470,4376_176 -4289_75982,263,4376_25051,Blanchardstown,105541897,1,4376_7778022_100470,4376_176 -4289_75982,264,4376_25052,Blanchardstown,105651897,1,4376_7778022_100470,4376_176 -4289_75982,265,4376_25053,Blanchardstown,105811897,1,4376_7778022_100470,4376_176 -4289_75982,266,4376_25054,Blanchardstown,105821897,1,4376_7778022_100470,4376_176 -4289_75982,267,4376_25055,Blanchardstown,106051897,1,4376_7778022_100470,4376_176 -4289_75982,268,4376_25056,Blanchardstown,106141897,1,4376_7778022_100470,4376_176 -4289_75982,269,4376_25057,Blanchardstown,106231897,1,4376_7778022_100470,4376_176 -4289_75982,259,4376_25058,Blanchardstown,105764725,1,4376_7778022_100390,4376_177 -4289_75982,270,4376_25059,Blanchardstown,105277481,1,4376_7778022_100320,4376_178 -4289_75963,266,4376_2506,Ticknock,105822929,1,4376_7778022_100150,4376_32 -4289_75982,146,4376_25060,Blanchardstown,105247481,1,4376_7778022_100320,4376_178 -4289_75982,271,4376_25061,Blanchardstown,105237481,1,4376_7778022_100320,4376_178 -4289_75982,115,4376_25062,Blanchardstown,105217481,1,4376_7778022_100320,4376_178 -4289_75982,260,4376_25063,Blanchardstown,105311945,1,4376_7778022_100510,4376_176 -4289_75982,261,4376_25064,Blanchardstown,105321945,1,4376_7778022_100510,4376_176 -4289_75982,262,4376_25065,Blanchardstown,105431945,1,4376_7778022_100510,4376_176 -4289_75982,263,4376_25066,Blanchardstown,105541945,1,4376_7778022_100510,4376_176 -4289_75982,264,4376_25067,Blanchardstown,105651945,1,4376_7778022_100510,4376_176 -4289_75982,265,4376_25068,Blanchardstown,105811945,1,4376_7778022_100510,4376_176 -4289_75982,266,4376_25069,Blanchardstown,105821945,1,4376_7778022_100510,4376_176 -4289_75963,267,4376_2507,Ticknock,106052929,1,4376_7778022_100150,4376_32 -4289_75982,267,4376_25070,Blanchardstown,106051945,1,4376_7778022_100510,4376_176 -4289_75982,268,4376_25071,Blanchardstown,106141945,1,4376_7778022_100510,4376_176 -4289_75982,269,4376_25072,Blanchardstown,106231945,1,4376_7778022_100510,4376_176 -4289_75982,259,4376_25073,Blanchardstown,105764775,1,4376_7778022_100370,4376_177 -4289_75982,270,4376_25074,Blanchardstown,105277525,1,4376_7778022_100342,4376_178 -4289_75982,146,4376_25075,Blanchardstown,105247525,1,4376_7778022_100342,4376_178 -4289_75982,271,4376_25076,Blanchardstown,105237525,1,4376_7778022_100342,4376_178 -4289_75982,115,4376_25077,Blanchardstown,105217525,1,4376_7778022_100342,4376_178 -4289_75982,260,4376_25078,Blanchardstown,105312003,1,4376_7778022_100482,4376_176 -4289_75982,261,4376_25079,Blanchardstown,105322003,1,4376_7778022_100482,4376_176 -4289_75963,268,4376_2508,Ticknock,106142929,1,4376_7778022_100150,4376_32 -4289_75982,262,4376_25080,Blanchardstown,105432003,1,4376_7778022_100482,4376_176 -4289_75982,263,4376_25081,Blanchardstown,105542003,1,4376_7778022_100482,4376_176 -4289_75982,264,4376_25082,Blanchardstown,105652003,1,4376_7778022_100482,4376_176 -4289_75982,265,4376_25083,Blanchardstown,105812003,1,4376_7778022_100482,4376_176 -4289_75982,266,4376_25084,Blanchardstown,105822003,1,4376_7778022_100482,4376_176 -4289_75982,267,4376_25085,Blanchardstown,106052003,1,4376_7778022_100482,4376_176 -4289_75982,268,4376_25086,Blanchardstown,106142003,1,4376_7778022_100482,4376_176 -4289_75982,269,4376_25087,Blanchardstown,106232003,1,4376_7778022_100482,4376_176 -4289_75982,259,4376_25088,Blanchardstown,105764827,1,4376_7778022_100400,4376_177 -4289_75982,270,4376_25089,Blanchardstown,105277569,1,4376_7778022_100260,4376_178 -4289_75963,269,4376_2509,Ticknock,106232929,1,4376_7778022_100150,4376_32 -4289_75982,146,4376_25090,Blanchardstown,105247569,1,4376_7778022_100260,4376_178 -4289_75982,271,4376_25091,Blanchardstown,105237569,1,4376_7778022_100260,4376_178 -4289_75982,115,4376_25092,Blanchardstown,105217569,1,4376_7778022_100260,4376_178 -4289_75982,260,4376_25093,Blanchardstown,105312031,1,4376_7778022_100500,4376_176 -4289_75982,261,4376_25094,Blanchardstown,105322031,1,4376_7778022_100500,4376_176 -4289_75982,262,4376_25095,Blanchardstown,105432031,1,4376_7778022_100500,4376_176 -4289_75982,263,4376_25096,Blanchardstown,105542031,1,4376_7778022_100500,4376_176 -4289_75982,264,4376_25097,Blanchardstown,105652031,1,4376_7778022_100500,4376_176 -4289_75982,265,4376_25098,Blanchardstown,105812031,1,4376_7778022_100500,4376_176 -4289_75982,266,4376_25099,Blanchardstown,105822031,1,4376_7778022_100500,4376_176 -4289_75960,264,4376_251,Sutton Station,105652032,0,4376_7778022_103503,4376_1 -4289_75963,259,4376_2510,Ticknock,105765609,1,4376_7778022_100150,4376_33 -4289_75982,267,4376_25100,Blanchardstown,106052031,1,4376_7778022_100500,4376_176 -4289_75982,268,4376_25101,Blanchardstown,106142031,1,4376_7778022_100500,4376_176 -4289_75982,269,4376_25102,Blanchardstown,106232031,1,4376_7778022_100500,4376_176 -4289_75982,260,4376_25103,Blanchardstown,105312061,1,4376_7778022_100422,4376_176 -4289_75982,261,4376_25104,Blanchardstown,105322061,1,4376_7778022_100422,4376_176 -4289_75982,262,4376_25105,Blanchardstown,105432061,1,4376_7778022_100422,4376_176 -4289_75982,263,4376_25106,Blanchardstown,105542061,1,4376_7778022_100422,4376_176 -4289_75982,264,4376_25107,Blanchardstown,105652061,1,4376_7778022_100422,4376_176 -4289_75982,265,4376_25108,Blanchardstown,105812061,1,4376_7778022_100422,4376_176 -4289_75982,266,4376_25109,Blanchardstown,105822061,1,4376_7778022_100422,4376_176 -4289_75963,260,4376_2511,Ticknock,105313003,1,4376_7778022_100150,4376_32 -4289_75982,267,4376_25110,Blanchardstown,106052061,1,4376_7778022_100422,4376_176 -4289_75982,268,4376_25111,Blanchardstown,106142061,1,4376_7778022_100422,4376_176 -4289_75982,269,4376_25112,Blanchardstown,106232061,1,4376_7778022_100422,4376_176 -4289_75982,259,4376_25113,Blanchardstown,105764875,1,4376_7778022_100380,4376_177 -4289_75982,270,4376_25114,Blanchardstown,105277615,1,4376_7778022_100330,4376_178 -4289_75982,146,4376_25115,Blanchardstown,105247615,1,4376_7778022_100330,4376_178 -4289_75982,271,4376_25116,Blanchardstown,105237615,1,4376_7778022_100330,4376_178 -4289_75982,115,4376_25117,Blanchardstown,105217615,1,4376_7778022_100330,4376_178 -4289_75982,260,4376_25118,Blanchardstown,105312089,1,4376_7778022_100462,4376_176 -4289_75982,261,4376_25119,Blanchardstown,105322089,1,4376_7778022_100462,4376_176 -4289_75963,261,4376_2512,Ticknock,105323003,1,4376_7778022_100150,4376_32 -4289_75982,262,4376_25120,Blanchardstown,105432089,1,4376_7778022_100462,4376_176 -4289_75982,263,4376_25121,Blanchardstown,105542089,1,4376_7778022_100462,4376_176 -4289_75982,264,4376_25122,Blanchardstown,105652089,1,4376_7778022_100462,4376_176 -4289_75982,265,4376_25123,Blanchardstown,105812089,1,4376_7778022_100462,4376_176 -4289_75982,266,4376_25124,Blanchardstown,105822089,1,4376_7778022_100462,4376_176 -4289_75982,267,4376_25125,Blanchardstown,106052089,1,4376_7778022_100462,4376_176 -4289_75982,268,4376_25126,Blanchardstown,106142089,1,4376_7778022_100462,4376_176 -4289_75982,269,4376_25127,Blanchardstown,106232089,1,4376_7778022_100462,4376_176 -4289_75982,260,4376_25128,Blanchardstown,105312123,1,4376_7778022_100442,4376_176 -4289_75982,261,4376_25129,Blanchardstown,105322123,1,4376_7778022_100442,4376_176 -4289_75963,262,4376_2513,Ticknock,105433003,1,4376_7778022_100150,4376_32 -4289_75982,262,4376_25130,Blanchardstown,105432123,1,4376_7778022_100442,4376_176 -4289_75982,263,4376_25131,Blanchardstown,105542123,1,4376_7778022_100442,4376_176 -4289_75982,264,4376_25132,Blanchardstown,105652123,1,4376_7778022_100442,4376_176 -4289_75982,265,4376_25133,Blanchardstown,105812123,1,4376_7778022_100442,4376_176 -4289_75982,266,4376_25134,Blanchardstown,105822123,1,4376_7778022_100442,4376_176 -4289_75982,267,4376_25135,Blanchardstown,106052123,1,4376_7778022_100442,4376_176 -4289_75982,268,4376_25136,Blanchardstown,106142123,1,4376_7778022_100442,4376_176 -4289_75982,269,4376_25137,Blanchardstown,106232123,1,4376_7778022_100442,4376_176 -4289_75982,259,4376_25138,Blanchardstown,105764931,1,4376_7778022_100410,4376_177 -4289_75982,270,4376_25139,Blanchardstown,105277661,1,4376_7778022_100320,4376_178 -4289_75963,263,4376_2514,Ticknock,105543003,1,4376_7778022_100150,4376_32 -4289_75982,146,4376_25140,Blanchardstown,105247661,1,4376_7778022_100320,4376_178 -4289_75982,271,4376_25141,Blanchardstown,105237661,1,4376_7778022_100320,4376_178 -4289_75982,115,4376_25142,Blanchardstown,105217661,1,4376_7778022_100320,4376_178 -4289_75982,260,4376_25143,Blanchardstown,105312163,1,4376_7778022_100490,4376_176 -4289_75982,261,4376_25144,Blanchardstown,105322163,1,4376_7778022_100490,4376_176 -4289_75982,262,4376_25145,Blanchardstown,105432163,1,4376_7778022_100490,4376_176 -4289_75982,263,4376_25146,Blanchardstown,105542163,1,4376_7778022_100490,4376_176 -4289_75982,264,4376_25147,Blanchardstown,105652163,1,4376_7778022_100490,4376_176 -4289_75982,265,4376_25148,Blanchardstown,105812163,1,4376_7778022_100490,4376_176 -4289_75982,266,4376_25149,Blanchardstown,105822163,1,4376_7778022_100490,4376_176 -4289_75963,264,4376_2515,Ticknock,105653003,1,4376_7778022_100150,4376_32 -4289_75982,267,4376_25150,Blanchardstown,106052163,1,4376_7778022_100490,4376_176 -4289_75982,268,4376_25151,Blanchardstown,106142163,1,4376_7778022_100490,4376_176 -4289_75982,269,4376_25152,Blanchardstown,106232163,1,4376_7778022_100490,4376_176 -4289_75982,260,4376_25153,Blanchardstown,105312199,1,4376_7778022_100470,4376_176 -4289_75982,261,4376_25154,Blanchardstown,105322199,1,4376_7778022_100470,4376_176 -4289_75982,262,4376_25155,Blanchardstown,105432199,1,4376_7778022_100470,4376_176 -4289_75982,263,4376_25156,Blanchardstown,105542199,1,4376_7778022_100470,4376_176 -4289_75982,264,4376_25157,Blanchardstown,105652199,1,4376_7778022_100470,4376_176 -4289_75982,265,4376_25158,Blanchardstown,105812199,1,4376_7778022_100470,4376_176 -4289_75982,266,4376_25159,Blanchardstown,105822199,1,4376_7778022_100470,4376_176 -4289_75963,265,4376_2516,Ticknock,105813003,1,4376_7778022_100150,4376_32 -4289_75982,267,4376_25160,Blanchardstown,106052199,1,4376_7778022_100470,4376_176 -4289_75982,268,4376_25161,Blanchardstown,106142199,1,4376_7778022_100470,4376_176 -4289_75982,269,4376_25162,Blanchardstown,106232199,1,4376_7778022_100470,4376_176 -4289_75982,259,4376_25163,Blanchardstown,105764977,1,4376_7778022_100360,4376_177 -4289_75982,270,4376_25164,Blanchardstown,105277705,1,4376_7778022_100342,4376_178 -4289_75982,146,4376_25165,Blanchardstown,105247705,1,4376_7778022_100342,4376_178 -4289_75982,271,4376_25166,Blanchardstown,105237705,1,4376_7778022_100342,4376_178 -4289_75982,115,4376_25167,Blanchardstown,105217705,1,4376_7778022_100342,4376_178 -4289_75982,260,4376_25168,Blanchardstown,105312247,1,4376_7778022_100432,4376_176 -4289_75982,261,4376_25169,Blanchardstown,105322247,1,4376_7778022_100432,4376_176 -4289_75963,266,4376_2517,Ticknock,105823003,1,4376_7778022_100150,4376_32 -4289_75982,262,4376_25170,Blanchardstown,105432247,1,4376_7778022_100432,4376_176 -4289_75982,263,4376_25171,Blanchardstown,105542247,1,4376_7778022_100432,4376_176 -4289_75982,264,4376_25172,Blanchardstown,105652247,1,4376_7778022_100432,4376_176 -4289_75982,265,4376_25173,Blanchardstown,105812247,1,4376_7778022_100432,4376_176 -4289_75982,266,4376_25174,Blanchardstown,105822247,1,4376_7778022_100432,4376_176 -4289_75982,267,4376_25175,Blanchardstown,106052247,1,4376_7778022_100432,4376_176 -4289_75982,268,4376_25176,Blanchardstown,106142247,1,4376_7778022_100432,4376_176 -4289_75982,269,4376_25177,Blanchardstown,106232247,1,4376_7778022_100432,4376_176 -4289_75982,260,4376_25178,Blanchardstown,105312281,1,4376_7778022_100510,4376_176 -4289_75982,261,4376_25179,Blanchardstown,105322281,1,4376_7778022_100510,4376_176 -4289_75963,267,4376_2518,Ticknock,106053003,1,4376_7778022_100150,4376_32 -4289_75982,262,4376_25180,Blanchardstown,105432281,1,4376_7778022_100510,4376_176 -4289_75982,263,4376_25181,Blanchardstown,105542281,1,4376_7778022_100510,4376_176 -4289_75982,264,4376_25182,Blanchardstown,105652281,1,4376_7778022_100510,4376_176 -4289_75982,265,4376_25183,Blanchardstown,105812281,1,4376_7778022_100510,4376_176 -4289_75982,266,4376_25184,Blanchardstown,105822281,1,4376_7778022_100510,4376_176 -4289_75982,267,4376_25185,Blanchardstown,106052281,1,4376_7778022_100510,4376_176 -4289_75982,268,4376_25186,Blanchardstown,106142281,1,4376_7778022_100510,4376_176 -4289_75982,269,4376_25187,Blanchardstown,106232281,1,4376_7778022_100510,4376_176 -4289_75982,259,4376_25188,Blanchardstown,105765031,1,4376_7778022_100390,4376_177 -4289_75982,270,4376_25189,Blanchardstown,105277751,1,4376_7778022_100260,4376_178 -4289_75963,268,4376_2519,Ticknock,106143003,1,4376_7778022_100150,4376_32 -4289_75982,146,4376_25190,Blanchardstown,105247751,1,4376_7778022_100260,4376_178 -4289_75982,271,4376_25191,Blanchardstown,105237751,1,4376_7778022_100260,4376_178 -4289_75982,115,4376_25192,Blanchardstown,105217751,1,4376_7778022_100260,4376_178 -4289_75982,260,4376_25193,Blanchardstown,105312309,1,4376_7778022_100452,4376_176 -4289_75982,261,4376_25194,Blanchardstown,105322309,1,4376_7778022_100452,4376_176 -4289_75982,262,4376_25195,Blanchardstown,105432309,1,4376_7778022_100452,4376_176 -4289_75982,263,4376_25196,Blanchardstown,105542309,1,4376_7778022_100452,4376_176 -4289_75982,264,4376_25197,Blanchardstown,105652309,1,4376_7778022_100452,4376_176 -4289_75982,265,4376_25198,Blanchardstown,105812309,1,4376_7778022_100452,4376_176 -4289_75982,266,4376_25199,Blanchardstown,105822309,1,4376_7778022_100452,4376_176 -4289_75960,265,4376_252,Sutton Station,105812032,0,4376_7778022_103503,4376_1 -4289_75963,269,4376_2520,Ticknock,106233003,1,4376_7778022_100150,4376_32 -4289_75982,267,4376_25200,Blanchardstown,106052309,1,4376_7778022_100452,4376_176 -4289_75982,268,4376_25201,Blanchardstown,106142309,1,4376_7778022_100452,4376_176 -4289_75982,269,4376_25202,Blanchardstown,106232309,1,4376_7778022_100452,4376_176 -4289_75982,260,4376_25203,Blanchardstown,105312333,1,4376_7778022_100482,4376_176 -4289_75982,261,4376_25204,Blanchardstown,105322333,1,4376_7778022_100482,4376_176 -4289_75982,262,4376_25205,Blanchardstown,105432333,1,4376_7778022_100482,4376_176 -4289_75982,263,4376_25206,Blanchardstown,105542333,1,4376_7778022_100482,4376_176 -4289_75982,264,4376_25207,Blanchardstown,105652333,1,4376_7778022_100482,4376_176 -4289_75982,265,4376_25208,Blanchardstown,105812333,1,4376_7778022_100482,4376_176 -4289_75982,266,4376_25209,Blanchardstown,105822333,1,4376_7778022_100482,4376_176 -4289_75963,259,4376_2521,Ticknock,105765679,1,4376_7778022_100150,4376_32 -4289_75982,267,4376_25210,Blanchardstown,106052333,1,4376_7778022_100482,4376_176 -4289_75982,268,4376_25211,Blanchardstown,106142333,1,4376_7778022_100482,4376_176 -4289_75982,269,4376_25212,Blanchardstown,106232333,1,4376_7778022_100482,4376_176 -4289_75982,259,4376_25213,Blanchardstown,105765079,1,4376_7778022_100370,4376_177 -4289_75982,270,4376_25214,Blanchardstown,105277795,1,4376_7778022_100330,4376_178 -4289_75982,146,4376_25215,Blanchardstown,105247795,1,4376_7778022_100330,4376_178 -4289_75982,271,4376_25216,Blanchardstown,105237795,1,4376_7778022_100330,4376_178 -4289_75982,115,4376_25217,Blanchardstown,105217795,1,4376_7778022_100330,4376_178 -4289_75982,260,4376_25218,Blanchardstown,105312365,1,4376_7778022_100500,4376_176 -4289_75982,261,4376_25219,Blanchardstown,105322365,1,4376_7778022_100500,4376_176 -4289_75964,260,4376_2522,Dundrum Luas,105311122,0,4376_7778022_100060,4376_35 -4289_75982,262,4376_25220,Blanchardstown,105432365,1,4376_7778022_100500,4376_176 -4289_75982,263,4376_25221,Blanchardstown,105542365,1,4376_7778022_100500,4376_176 -4289_75982,264,4376_25222,Blanchardstown,105652365,1,4376_7778022_100500,4376_176 -4289_75982,265,4376_25223,Blanchardstown,105812365,1,4376_7778022_100500,4376_176 -4289_75982,266,4376_25224,Blanchardstown,105822365,1,4376_7778022_100500,4376_176 -4289_75982,267,4376_25225,Blanchardstown,106052365,1,4376_7778022_100500,4376_176 -4289_75982,268,4376_25226,Blanchardstown,106142365,1,4376_7778022_100500,4376_176 -4289_75982,269,4376_25227,Blanchardstown,106232365,1,4376_7778022_100500,4376_176 -4289_75982,260,4376_25228,Blanchardstown,105312399,1,4376_7778022_100422,4376_176 -4289_75982,261,4376_25229,Blanchardstown,105322399,1,4376_7778022_100422,4376_176 -4289_75964,261,4376_2523,Dundrum Luas,105321122,0,4376_7778022_100060,4376_35 -4289_75982,262,4376_25230,Blanchardstown,105432399,1,4376_7778022_100422,4376_176 -4289_75982,263,4376_25231,Blanchardstown,105542399,1,4376_7778022_100422,4376_176 -4289_75982,264,4376_25232,Blanchardstown,105652399,1,4376_7778022_100422,4376_176 -4289_75982,265,4376_25233,Blanchardstown,105812399,1,4376_7778022_100422,4376_176 -4289_75982,266,4376_25234,Blanchardstown,105822399,1,4376_7778022_100422,4376_176 -4289_75982,267,4376_25235,Blanchardstown,106052399,1,4376_7778022_100422,4376_176 -4289_75982,268,4376_25236,Blanchardstown,106142399,1,4376_7778022_100422,4376_176 -4289_75982,269,4376_25237,Blanchardstown,106232399,1,4376_7778022_100422,4376_176 -4289_75982,259,4376_25238,Blanchardstown,105765131,1,4376_7778022_100400,4376_177 -4289_75982,270,4376_25239,Blanchardstown,105277839,1,4376_7778022_100320,4376_178 -4289_75964,262,4376_2524,Dundrum Luas,105431122,0,4376_7778022_100060,4376_35 -4289_75982,146,4376_25240,Blanchardstown,105247839,1,4376_7778022_100320,4376_178 -4289_75982,271,4376_25241,Blanchardstown,105237839,1,4376_7778022_100320,4376_178 -4289_75982,115,4376_25242,Blanchardstown,105217839,1,4376_7778022_100320,4376_178 -4289_75982,260,4376_25243,Blanchardstown,105312451,1,4376_7778022_100442,4376_176 -4289_75982,261,4376_25244,Blanchardstown,105322451,1,4376_7778022_100442,4376_176 -4289_75982,262,4376_25245,Blanchardstown,105432451,1,4376_7778022_100442,4376_176 -4289_75982,263,4376_25246,Blanchardstown,105542451,1,4376_7778022_100442,4376_176 -4289_75982,264,4376_25247,Blanchardstown,105652451,1,4376_7778022_100442,4376_176 -4289_75982,265,4376_25248,Blanchardstown,105812451,1,4376_7778022_100442,4376_176 -4289_75982,266,4376_25249,Blanchardstown,105822451,1,4376_7778022_100442,4376_176 -4289_75964,263,4376_2525,Dundrum Luas,105541122,0,4376_7778022_100060,4376_35 -4289_75982,267,4376_25250,Blanchardstown,106052451,1,4376_7778022_100442,4376_176 -4289_75982,268,4376_25251,Blanchardstown,106142451,1,4376_7778022_100442,4376_176 -4289_75982,269,4376_25252,Blanchardstown,106232451,1,4376_7778022_100442,4376_176 -4289_75982,259,4376_25253,Blanchardstown,105765181,1,4376_7778022_100380,4376_177 -4289_75982,270,4376_25254,Blanchardstown,105277883,1,4376_7778022_100250,4376_178 -4289_75982,146,4376_25255,Blanchardstown,105247883,1,4376_7778022_100250,4376_178 -4289_75982,271,4376_25256,Blanchardstown,105237883,1,4376_7778022_100250,4376_178 -4289_75982,115,4376_25257,Blanchardstown,105217883,1,4376_7778022_100250,4376_178 -4289_75982,260,4376_25258,Blanchardstown,105312513,1,4376_7778022_100470,4376_176 -4289_75982,261,4376_25259,Blanchardstown,105322513,1,4376_7778022_100470,4376_176 -4289_75964,264,4376_2526,Dundrum Luas,105651122,0,4376_7778022_100060,4376_35 -4289_75982,262,4376_25260,Blanchardstown,105432513,1,4376_7778022_100470,4376_176 -4289_75982,263,4376_25261,Blanchardstown,105542513,1,4376_7778022_100470,4376_176 -4289_75982,264,4376_25262,Blanchardstown,105652513,1,4376_7778022_100470,4376_176 -4289_75982,265,4376_25263,Blanchardstown,105812513,1,4376_7778022_100470,4376_176 -4289_75982,266,4376_25264,Blanchardstown,105822513,1,4376_7778022_100470,4376_176 -4289_75982,267,4376_25265,Blanchardstown,106052513,1,4376_7778022_100470,4376_176 -4289_75982,268,4376_25266,Blanchardstown,106142513,1,4376_7778022_100470,4376_176 -4289_75982,269,4376_25267,Blanchardstown,106232513,1,4376_7778022_100470,4376_176 -4289_75982,259,4376_25268,Blanchardstown,105765235,1,4376_7778022_100360,4376_177 -4289_75982,270,4376_25269,Blanchardstown,105277927,1,4376_7778022_100342,4376_178 -4289_75964,265,4376_2527,Dundrum Luas,105811122,0,4376_7778022_100060,4376_35 -4289_75982,146,4376_25270,Blanchardstown,105247927,1,4376_7778022_100342,4376_178 -4289_75982,271,4376_25271,Blanchardstown,105237927,1,4376_7778022_100342,4376_178 -4289_75982,115,4376_25272,Blanchardstown,105217927,1,4376_7778022_100342,4376_178 -4289_75982,260,4376_25273,Blanchardstown,105312563,1,4376_7778022_100432,4376_176 -4289_75982,261,4376_25274,Blanchardstown,105322563,1,4376_7778022_100432,4376_176 -4289_75982,262,4376_25275,Blanchardstown,105432563,1,4376_7778022_100432,4376_176 -4289_75982,263,4376_25276,Blanchardstown,105542563,1,4376_7778022_100432,4376_176 -4289_75982,264,4376_25277,Blanchardstown,105652563,1,4376_7778022_100432,4376_176 -4289_75982,265,4376_25278,Blanchardstown,105812563,1,4376_7778022_100432,4376_176 -4289_75982,266,4376_25279,Blanchardstown,105822563,1,4376_7778022_100432,4376_176 -4289_75964,266,4376_2528,Dundrum Luas,105821122,0,4376_7778022_100060,4376_35 -4289_75982,267,4376_25280,Blanchardstown,106052563,1,4376_7778022_100432,4376_176 -4289_75982,268,4376_25281,Blanchardstown,106142563,1,4376_7778022_100432,4376_176 -4289_75982,269,4376_25282,Blanchardstown,106232563,1,4376_7778022_100432,4376_176 -4289_75982,259,4376_25283,Blanchardstown,105765281,1,4376_7778022_100370,4376_177 -4289_75982,270,4376_25284,Blanchardstown,105277973,1,4376_7778022_100330,4376_178 -4289_75982,146,4376_25285,Blanchardstown,105247973,1,4376_7778022_100330,4376_178 -4289_75982,271,4376_25286,Blanchardstown,105237973,1,4376_7778022_100330,4376_178 -4289_75982,115,4376_25287,Blanchardstown,105217973,1,4376_7778022_100330,4376_178 -4289_75982,260,4376_25288,Blanchardstown,105312615,1,4376_7778022_100452,4376_176 -4289_75982,261,4376_25289,Blanchardstown,105322615,1,4376_7778022_100452,4376_176 -4289_75964,267,4376_2529,Dundrum Luas,106051122,0,4376_7778022_100060,4376_35 -4289_75982,262,4376_25290,Blanchardstown,105432615,1,4376_7778022_100452,4376_176 -4289_75982,263,4376_25291,Blanchardstown,105542615,1,4376_7778022_100452,4376_176 -4289_75982,264,4376_25292,Blanchardstown,105652615,1,4376_7778022_100452,4376_176 -4289_75982,265,4376_25293,Blanchardstown,105812615,1,4376_7778022_100452,4376_176 -4289_75982,266,4376_25294,Blanchardstown,105822615,1,4376_7778022_100452,4376_176 -4289_75982,267,4376_25295,Blanchardstown,106052615,1,4376_7778022_100452,4376_176 -4289_75982,268,4376_25296,Blanchardstown,106142615,1,4376_7778022_100452,4376_176 -4289_75982,269,4376_25297,Blanchardstown,106232615,1,4376_7778022_100452,4376_176 -4289_75982,259,4376_25298,Blanchardstown,105765325,1,4376_7778022_100400,4376_177 -4289_75982,270,4376_25299,Blanchardstown,105278011,1,4376_7778022_100320,4376_178 -4289_75960,266,4376_253,Sutton Station,105822032,0,4376_7778022_103503,4376_1 -4289_75964,268,4376_2530,Dundrum Luas,106141122,0,4376_7778022_100060,4376_35 -4289_75982,146,4376_25300,Blanchardstown,105248011,1,4376_7778022_100320,4376_178 -4289_75982,271,4376_25301,Blanchardstown,105238011,1,4376_7778022_100320,4376_178 -4289_75982,115,4376_25302,Blanchardstown,105218011,1,4376_7778022_100320,4376_178 -4289_75982,260,4376_25303,Blanchardstown,105312665,1,4376_7778022_100442,4376_176 -4289_75982,261,4376_25304,Blanchardstown,105322665,1,4376_7778022_100442,4376_176 -4289_75982,262,4376_25305,Blanchardstown,105432665,1,4376_7778022_100442,4376_176 -4289_75982,263,4376_25306,Blanchardstown,105542665,1,4376_7778022_100442,4376_176 -4289_75982,264,4376_25307,Blanchardstown,105652665,1,4376_7778022_100442,4376_176 -4289_75982,265,4376_25308,Blanchardstown,105812665,1,4376_7778022_100442,4376_176 -4289_75982,266,4376_25309,Blanchardstown,105822665,1,4376_7778022_100442,4376_176 -4289_75964,269,4376_2531,Dundrum Luas,106231122,0,4376_7778022_100060,4376_35 -4289_75982,267,4376_25310,Blanchardstown,106052665,1,4376_7778022_100442,4376_176 -4289_75982,268,4376_25311,Blanchardstown,106142665,1,4376_7778022_100442,4376_176 -4289_75982,269,4376_25312,Blanchardstown,106232665,1,4376_7778022_100442,4376_176 -4289_75982,259,4376_25313,Blanchardstown,105765373,1,4376_7778022_100380,4376_177 -4289_75982,270,4376_25314,Blanchardstown,105278055,1,4376_7778022_100310,4376_178 -4289_75982,146,4376_25315,Blanchardstown,105248055,1,4376_7778022_100310,4376_178 -4289_75982,271,4376_25316,Blanchardstown,105238055,1,4376_7778022_100310,4376_178 -4289_75982,115,4376_25317,Blanchardstown,105218055,1,4376_7778022_100310,4376_178 -4289_75982,260,4376_25318,Blanchardstown,105312713,1,4376_7778022_100470,4376_176 -4289_75982,261,4376_25319,Blanchardstown,105322713,1,4376_7778022_100470,4376_176 -4289_75964,260,4376_2532,Dundrum Luas,105311234,0,4376_7778022_100181,4376_35 -4289_75982,262,4376_25320,Blanchardstown,105432713,1,4376_7778022_100470,4376_176 -4289_75982,263,4376_25321,Blanchardstown,105542713,1,4376_7778022_100470,4376_176 -4289_75982,264,4376_25322,Blanchardstown,105652713,1,4376_7778022_100470,4376_176 -4289_75982,265,4376_25323,Blanchardstown,105812713,1,4376_7778022_100470,4376_176 -4289_75982,266,4376_25324,Blanchardstown,105822713,1,4376_7778022_100470,4376_176 -4289_75982,267,4376_25325,Blanchardstown,106052713,1,4376_7778022_100470,4376_176 -4289_75982,268,4376_25326,Blanchardstown,106142713,1,4376_7778022_100470,4376_176 -4289_75982,269,4376_25327,Blanchardstown,106232713,1,4376_7778022_100470,4376_176 -4289_75982,259,4376_25328,Blanchardstown,105765411,1,4376_7778022_100360,4376_177 -4289_75982,270,4376_25329,Blanchardstown,105278091,1,4376_7778022_100270,4376_178 -4289_75964,261,4376_2533,Dundrum Luas,105321234,0,4376_7778022_100181,4376_35 -4289_75982,146,4376_25330,Blanchardstown,105248091,1,4376_7778022_100270,4376_178 -4289_75982,271,4376_25331,Blanchardstown,105238091,1,4376_7778022_100270,4376_178 -4289_75982,115,4376_25332,Blanchardstown,105218091,1,4376_7778022_100270,4376_178 -4289_75982,260,4376_25333,Blanchardstown,105312759,1,4376_7778022_100432,4376_176 -4289_75982,261,4376_25334,Blanchardstown,105322759,1,4376_7778022_100432,4376_176 -4289_75982,262,4376_25335,Blanchardstown,105432759,1,4376_7778022_100432,4376_176 -4289_75982,263,4376_25336,Blanchardstown,105542759,1,4376_7778022_100432,4376_176 -4289_75982,264,4376_25337,Blanchardstown,105652759,1,4376_7778022_100432,4376_176 -4289_75982,265,4376_25338,Blanchardstown,105812759,1,4376_7778022_100432,4376_176 -4289_75982,266,4376_25339,Blanchardstown,105822759,1,4376_7778022_100432,4376_176 -4289_75964,262,4376_2534,Dundrum Luas,105431234,0,4376_7778022_100181,4376_35 -4289_75982,267,4376_25340,Blanchardstown,106052759,1,4376_7778022_100432,4376_176 -4289_75982,268,4376_25341,Blanchardstown,106142759,1,4376_7778022_100432,4376_176 -4289_75982,269,4376_25342,Blanchardstown,106232759,1,4376_7778022_100432,4376_176 -4289_75982,259,4376_25343,Blanchardstown,105765457,1,4376_7778022_100370,4376_177 -4289_75982,270,4376_25344,Blanchardstown,105278131,1,4376_7778022_100290,4376_178 -4289_75982,146,4376_25345,Blanchardstown,105248131,1,4376_7778022_100290,4376_178 -4289_75982,271,4376_25346,Blanchardstown,105238131,1,4376_7778022_100290,4376_178 -4289_75982,115,4376_25347,Blanchardstown,105218131,1,4376_7778022_100290,4376_178 -4289_75982,260,4376_25348,Blanchardstown,105312807,1,4376_7778022_100452,4376_176 -4289_75982,261,4376_25349,Blanchardstown,105322807,1,4376_7778022_100452,4376_176 -4289_75964,263,4376_2535,Dundrum Luas,105541234,0,4376_7778022_100181,4376_35 -4289_75982,262,4376_25350,Blanchardstown,105432807,1,4376_7778022_100452,4376_176 -4289_75982,263,4376_25351,Blanchardstown,105542807,1,4376_7778022_100452,4376_176 -4289_75982,264,4376_25352,Blanchardstown,105652807,1,4376_7778022_100452,4376_176 -4289_75982,265,4376_25353,Blanchardstown,105812807,1,4376_7778022_100452,4376_176 -4289_75982,266,4376_25354,Blanchardstown,105822807,1,4376_7778022_100452,4376_176 -4289_75982,267,4376_25355,Blanchardstown,106052807,1,4376_7778022_100452,4376_176 -4289_75982,268,4376_25356,Blanchardstown,106142807,1,4376_7778022_100452,4376_176 -4289_75982,269,4376_25357,Blanchardstown,106232807,1,4376_7778022_100452,4376_176 -4289_75982,259,4376_25358,Blanchardstown,105765497,1,4376_7778022_100400,4376_177 -4289_75982,270,4376_25359,Blanchardstown,105278169,1,4376_7778022_100250,4376_178 -4289_75964,264,4376_2536,Dundrum Luas,105651234,0,4376_7778022_100181,4376_35 -4289_75982,146,4376_25360,Blanchardstown,105248169,1,4376_7778022_100250,4376_178 -4289_75982,271,4376_25361,Blanchardstown,105238169,1,4376_7778022_100250,4376_178 -4289_75982,115,4376_25362,Blanchardstown,105218169,1,4376_7778022_100250,4376_178 -4289_75982,260,4376_25363,Blanchardstown,105312855,1,4376_7778022_100442,4376_176 -4289_75982,261,4376_25364,Blanchardstown,105322855,1,4376_7778022_100442,4376_176 -4289_75982,262,4376_25365,Blanchardstown,105432855,1,4376_7778022_100442,4376_176 -4289_75982,263,4376_25366,Blanchardstown,105542855,1,4376_7778022_100442,4376_176 -4289_75982,264,4376_25367,Blanchardstown,105652855,1,4376_7778022_100442,4376_176 -4289_75982,265,4376_25368,Blanchardstown,105812855,1,4376_7778022_100442,4376_176 -4289_75982,266,4376_25369,Blanchardstown,105822855,1,4376_7778022_100442,4376_176 -4289_75964,265,4376_2537,Dundrum Luas,105811234,0,4376_7778022_100181,4376_35 -4289_75982,267,4376_25370,Blanchardstown,106052855,1,4376_7778022_100442,4376_176 -4289_75982,268,4376_25371,Blanchardstown,106142855,1,4376_7778022_100442,4376_176 -4289_75982,269,4376_25372,Blanchardstown,106232855,1,4376_7778022_100442,4376_176 -4289_75982,259,4376_25373,Blanchardstown,105765541,1,4376_7778022_100380,4376_177 -4289_75982,270,4376_25374,Blanchardstown,105278209,1,4376_7778022_100310,4376_178 -4289_75982,146,4376_25375,Blanchardstown,105248209,1,4376_7778022_100310,4376_178 -4289_75982,271,4376_25376,Blanchardstown,105238209,1,4376_7778022_100310,4376_178 -4289_75982,115,4376_25377,Blanchardstown,105218209,1,4376_7778022_100310,4376_178 -4289_75982,260,4376_25378,Blanchardstown,105312901,1,4376_7778022_100470,4376_176 -4289_75982,261,4376_25379,Blanchardstown,105322901,1,4376_7778022_100470,4376_176 -4289_75964,266,4376_2538,Dundrum Luas,105821234,0,4376_7778022_100181,4376_35 -4289_75982,262,4376_25380,Blanchardstown,105432901,1,4376_7778022_100470,4376_176 -4289_75982,263,4376_25381,Blanchardstown,105542901,1,4376_7778022_100470,4376_176 -4289_75982,264,4376_25382,Blanchardstown,105652901,1,4376_7778022_100470,4376_176 -4289_75982,265,4376_25383,Blanchardstown,105812901,1,4376_7778022_100470,4376_176 -4289_75982,266,4376_25384,Blanchardstown,105822901,1,4376_7778022_100470,4376_176 -4289_75982,267,4376_25385,Blanchardstown,106052901,1,4376_7778022_100470,4376_176 -4289_75982,268,4376_25386,Blanchardstown,106142901,1,4376_7778022_100470,4376_176 -4289_75982,269,4376_25387,Blanchardstown,106232901,1,4376_7778022_100470,4376_176 -4289_75982,259,4376_25388,Blanchardstown,105765581,1,4376_7778022_100360,4376_177 -4289_75982,270,4376_25389,Blanchardstown,105278245,1,4376_7778022_100320,4376_178 -4289_75964,267,4376_2539,Dundrum Luas,106051234,0,4376_7778022_100181,4376_35 -4289_75982,146,4376_25390,Blanchardstown,105248245,1,4376_7778022_100320,4376_178 -4289_75982,271,4376_25391,Blanchardstown,105238245,1,4376_7778022_100320,4376_178 -4289_75982,115,4376_25392,Blanchardstown,105218245,1,4376_7778022_100320,4376_178 -4289_75982,260,4376_25393,Blanchardstown,105312983,1,4376_7778022_100452,4376_176 -4289_75982,261,4376_25394,Blanchardstown,105322983,1,4376_7778022_100452,4376_176 -4289_75982,262,4376_25395,Blanchardstown,105432983,1,4376_7778022_100452,4376_176 -4289_75982,263,4376_25396,Blanchardstown,105542983,1,4376_7778022_100452,4376_176 -4289_75982,264,4376_25397,Blanchardstown,105652983,1,4376_7778022_100452,4376_176 -4289_75982,265,4376_25398,Blanchardstown,105812983,1,4376_7778022_100452,4376_176 -4289_75982,266,4376_25399,Blanchardstown,105822983,1,4376_7778022_100452,4376_176 -4289_75960,267,4376_254,Sutton Station,106052032,0,4376_7778022_103503,4376_1 -4289_75964,268,4376_2540,Dundrum Luas,106141234,0,4376_7778022_100181,4376_35 -4289_75982,267,4376_25400,Blanchardstown,106052983,1,4376_7778022_100452,4376_176 -4289_75982,268,4376_25401,Blanchardstown,106142983,1,4376_7778022_100452,4376_176 -4289_75982,269,4376_25402,Blanchardstown,106232983,1,4376_7778022_100452,4376_176 -4289_75982,259,4376_25403,Blanchardstown,105765659,1,4376_7778022_100400,4376_177 -4289_75982,270,4376_25404,Blanchardstown,105278313,1,4376_7778022_100250,4376_178 -4289_75982,146,4376_25405,Blanchardstown,105248313,1,4376_7778022_100250,4376_178 -4289_75982,271,4376_25406,Blanchardstown,105238313,1,4376_7778022_100250,4376_178 -4289_75982,115,4376_25407,Blanchardstown,105218313,1,4376_7778022_100250,4376_178 -4376_82530,260,4376_25408,The Square,105311020,0,4376_7778022_100520,4376_179 -4376_82530,261,4376_25409,The Square,105321020,0,4376_7778022_100520,4376_179 -4289_75964,269,4376_2541,Dundrum Luas,106231234,0,4376_7778022_100181,4376_35 -4376_82530,262,4376_25410,The Square,105431020,0,4376_7778022_100520,4376_179 -4376_82530,263,4376_25411,The Square,105541020,0,4376_7778022_100520,4376_179 -4376_82530,264,4376_25412,The Square,105651020,0,4376_7778022_100520,4376_179 -4376_82530,265,4376_25413,The Square,105811020,0,4376_7778022_100520,4376_179 -4376_82530,266,4376_25414,The Square,105821020,0,4376_7778022_100520,4376_179 -4376_82530,267,4376_25415,The Square,106051020,0,4376_7778022_100520,4376_179 -4376_82530,268,4376_25416,The Square,106141020,0,4376_7778022_100520,4376_179 -4376_82530,269,4376_25417,The Square,106231020,0,4376_7778022_100520,4376_179 -4376_82530,259,4376_25418,The Square,105764016,0,4376_7778022_100420,4376_180 -4376_82530,260,4376_25419,The Square,105311062,0,4376_7778022_100540,4376_179 -4289_75964,260,4376_2542,Dundrum Luas,105311432,0,4376_7778022_100181,4376_35 -4376_82530,261,4376_25420,The Square,105321062,0,4376_7778022_100540,4376_179 -4376_82530,262,4376_25421,The Square,105431062,0,4376_7778022_100540,4376_179 -4376_82530,263,4376_25422,The Square,105541062,0,4376_7778022_100540,4376_179 -4376_82530,264,4376_25423,The Square,105651062,0,4376_7778022_100540,4376_179 -4376_82530,265,4376_25424,The Square,105811062,0,4376_7778022_100540,4376_179 -4376_82530,266,4376_25425,The Square,105821062,0,4376_7778022_100540,4376_179 -4376_82530,267,4376_25426,The Square,106051062,0,4376_7778022_100540,4376_179 -4376_82530,268,4376_25427,The Square,106141062,0,4376_7778022_100540,4376_179 -4376_82530,269,4376_25428,The Square,106231062,0,4376_7778022_100540,4376_179 -4376_82530,260,4376_25429,The Square,105311130,0,4376_7778022_100561,4376_179 -4289_75964,261,4376_2543,Dundrum Luas,105321432,0,4376_7778022_100181,4376_35 -4376_82530,261,4376_25430,The Square,105321130,0,4376_7778022_100561,4376_179 -4376_82530,262,4376_25431,The Square,105431130,0,4376_7778022_100561,4376_179 -4376_82530,263,4376_25432,The Square,105541130,0,4376_7778022_100561,4376_179 -4376_82530,264,4376_25433,The Square,105651130,0,4376_7778022_100561,4376_179 -4376_82530,265,4376_25434,The Square,105811130,0,4376_7778022_100561,4376_179 -4376_82530,266,4376_25435,The Square,105821130,0,4376_7778022_100561,4376_179 -4376_82530,267,4376_25436,The Square,106051130,0,4376_7778022_100561,4376_179 -4376_82530,268,4376_25437,The Square,106141130,0,4376_7778022_100561,4376_179 -4376_82530,269,4376_25438,The Square,106231130,0,4376_7778022_100561,4376_179 -4376_82530,259,4376_25439,The Square,105764080,0,4376_7778022_100430,4376_180 -4289_75964,262,4376_2544,Dundrum Luas,105431432,0,4376_7778022_100181,4376_35 -4376_82530,260,4376_25440,The Square,105311190,0,4376_7778022_100530,4376_179 -4376_82530,261,4376_25441,The Square,105321190,0,4376_7778022_100530,4376_179 -4376_82530,262,4376_25442,The Square,105431190,0,4376_7778022_100530,4376_179 -4376_82530,263,4376_25443,The Square,105541190,0,4376_7778022_100530,4376_179 -4376_82530,264,4376_25444,The Square,105651190,0,4376_7778022_100530,4376_179 -4376_82530,265,4376_25445,The Square,105811190,0,4376_7778022_100530,4376_179 -4376_82530,266,4376_25446,The Square,105821190,0,4376_7778022_100530,4376_179 -4376_82530,267,4376_25447,The Square,106051190,0,4376_7778022_100530,4376_179 -4376_82530,268,4376_25448,The Square,106141190,0,4376_7778022_100530,4376_179 -4376_82530,269,4376_25449,The Square,106231190,0,4376_7778022_100530,4376_179 -4289_75964,263,4376_2545,Dundrum Luas,105541432,0,4376_7778022_100181,4376_35 -4376_82530,260,4376_25450,The Square,105311284,0,4376_7778022_100550,4376_179 -4376_82530,261,4376_25451,The Square,105321284,0,4376_7778022_100550,4376_179 -4376_82530,262,4376_25452,The Square,105431284,0,4376_7778022_100550,4376_179 -4376_82530,263,4376_25453,The Square,105541284,0,4376_7778022_100550,4376_179 -4376_82530,264,4376_25454,The Square,105651284,0,4376_7778022_100550,4376_179 -4376_82530,265,4376_25455,The Square,105811284,0,4376_7778022_100550,4376_179 -4376_82530,266,4376_25456,The Square,105821284,0,4376_7778022_100550,4376_179 -4376_82530,267,4376_25457,The Square,106051284,0,4376_7778022_100550,4376_179 -4376_82530,268,4376_25458,The Square,106141284,0,4376_7778022_100550,4376_179 -4376_82530,269,4376_25459,The Square,106231284,0,4376_7778022_100550,4376_179 -4289_75964,264,4376_2546,Dundrum Luas,105651432,0,4376_7778022_100181,4376_35 -4376_82530,259,4376_25460,The Square,105764170,0,4376_7778022_100440,4376_179 -4376_82530,270,4376_25461,The Square,105277018,0,4376_7778022_100250,4376_179 -4376_82530,146,4376_25462,The Square,105247018,0,4376_7778022_100250,4376_179 -4376_82530,271,4376_25463,The Square,105237018,0,4376_7778022_100250,4376_179 -4376_82530,115,4376_25464,The Square,105217018,0,4376_7778022_100250,4376_179 -4376_82530,260,4376_25465,The Square,105311358,0,4376_7778022_100520,4376_179 -4376_82530,261,4376_25466,The Square,105321358,0,4376_7778022_100520,4376_179 -4376_82530,262,4376_25467,The Square,105431358,0,4376_7778022_100520,4376_179 -4376_82530,263,4376_25468,The Square,105541358,0,4376_7778022_100520,4376_179 -4376_82530,264,4376_25469,The Square,105651358,0,4376_7778022_100520,4376_179 -4289_75964,265,4376_2547,Dundrum Luas,105811432,0,4376_7778022_100181,4376_35 -4376_82530,265,4376_25470,The Square,105811358,0,4376_7778022_100520,4376_179 -4376_82530,266,4376_25471,The Square,105821358,0,4376_7778022_100520,4376_179 -4376_82530,267,4376_25472,The Square,106051358,0,4376_7778022_100520,4376_179 -4376_82530,268,4376_25473,The Square,106141358,0,4376_7778022_100520,4376_179 -4376_82530,269,4376_25474,The Square,106231358,0,4376_7778022_100520,4376_179 -4376_82530,259,4376_25475,The Square,105764210,0,4376_7778022_100450,4376_179 -4376_82530,260,4376_25476,The Square,105311412,0,4376_7778022_100570,4376_179 -4376_82530,261,4376_25477,The Square,105321412,0,4376_7778022_100570,4376_179 -4376_82530,262,4376_25478,The Square,105431412,0,4376_7778022_100570,4376_179 -4376_82530,263,4376_25479,The Square,105541412,0,4376_7778022_100570,4376_179 -4289_75964,266,4376_2548,Dundrum Luas,105821432,0,4376_7778022_100181,4376_35 -4376_82530,264,4376_25480,The Square,105651412,0,4376_7778022_100570,4376_179 -4376_82530,265,4376_25481,The Square,105811412,0,4376_7778022_100570,4376_179 -4376_82530,266,4376_25482,The Square,105821412,0,4376_7778022_100570,4376_179 -4376_82530,267,4376_25483,The Square,106051412,0,4376_7778022_100570,4376_179 -4376_82530,268,4376_25484,The Square,106141412,0,4376_7778022_100570,4376_179 -4376_82530,269,4376_25485,The Square,106231412,0,4376_7778022_100570,4376_179 -4376_82530,259,4376_25486,The Square,105764254,0,4376_7778022_100470,4376_179 -4376_82530,270,4376_25487,The Square,105277072,0,4376_7778022_100370,4376_179 -4376_82530,146,4376_25488,The Square,105247072,0,4376_7778022_100370,4376_179 -4376_82530,271,4376_25489,The Square,105237072,0,4376_7778022_100370,4376_179 -4289_75964,267,4376_2549,Dundrum Luas,106051432,0,4376_7778022_100181,4376_35 -4376_82530,115,4376_25490,The Square,105217072,0,4376_7778022_100370,4376_179 -4376_82530,260,4376_25491,The Square,105311468,0,4376_7778022_100580,4376_179 -4376_82530,261,4376_25492,The Square,105321468,0,4376_7778022_100580,4376_179 -4376_82530,262,4376_25493,The Square,105431468,0,4376_7778022_100580,4376_179 -4376_82530,263,4376_25494,The Square,105541468,0,4376_7778022_100580,4376_179 -4376_82530,264,4376_25495,The Square,105651468,0,4376_7778022_100580,4376_179 -4376_82530,265,4376_25496,The Square,105811468,0,4376_7778022_100580,4376_179 -4376_82530,266,4376_25497,The Square,105821468,0,4376_7778022_100580,4376_179 -4376_82530,267,4376_25498,The Square,106051468,0,4376_7778022_100580,4376_179 -4376_82530,268,4376_25499,The Square,106141468,0,4376_7778022_100580,4376_179 -4289_75960,268,4376_255,Sutton Station,106142032,0,4376_7778022_103503,4376_1 -4289_75964,268,4376_2550,Dundrum Luas,106141432,0,4376_7778022_100181,4376_35 -4376_82530,269,4376_25500,The Square,106231468,0,4376_7778022_100580,4376_179 -4376_82530,259,4376_25501,The Square,105764304,0,4376_7778022_100420,4376_179 -4376_82530,260,4376_25502,The Square,105311522,0,4376_7778022_100540,4376_179 -4376_82530,261,4376_25503,The Square,105321522,0,4376_7778022_100540,4376_179 -4376_82530,262,4376_25504,The Square,105431522,0,4376_7778022_100540,4376_179 -4376_82530,263,4376_25505,The Square,105541522,0,4376_7778022_100540,4376_179 -4376_82530,264,4376_25506,The Square,105651522,0,4376_7778022_100540,4376_179 -4376_82530,265,4376_25507,The Square,105811522,0,4376_7778022_100540,4376_179 -4376_82530,266,4376_25508,The Square,105821522,0,4376_7778022_100540,4376_179 -4376_82530,267,4376_25509,The Square,106051522,0,4376_7778022_100540,4376_179 -4289_75964,269,4376_2551,Dundrum Luas,106231432,0,4376_7778022_100181,4376_35 -4376_82530,268,4376_25510,The Square,106141522,0,4376_7778022_100540,4376_179 -4376_82530,269,4376_25511,The Square,106231522,0,4376_7778022_100540,4376_179 -4376_82530,259,4376_25512,The Square,105764352,0,4376_7778022_100430,4376_179 -4376_82530,270,4376_25513,The Square,105277140,0,4376_7778022_100350,4376_180 -4376_82530,146,4376_25514,The Square,105247140,0,4376_7778022_100350,4376_180 -4376_82530,271,4376_25515,The Square,105237140,0,4376_7778022_100350,4376_180 -4376_82530,115,4376_25516,The Square,105217140,0,4376_7778022_100350,4376_180 -4376_82530,260,4376_25517,The Square,105311574,0,4376_7778022_100530,4376_179 -4376_82530,261,4376_25518,The Square,105321574,0,4376_7778022_100530,4376_179 -4376_82530,262,4376_25519,The Square,105431574,0,4376_7778022_100530,4376_179 -4289_75964,260,4376_2552,Dundrum Luas,105311618,0,4376_7778022_100181,4376_35 -4376_82530,263,4376_25520,The Square,105541574,0,4376_7778022_100530,4376_179 -4376_82530,264,4376_25521,The Square,105651574,0,4376_7778022_100530,4376_179 -4376_82530,265,4376_25522,The Square,105811574,0,4376_7778022_100530,4376_179 -4376_82530,266,4376_25523,The Square,105821574,0,4376_7778022_100530,4376_179 -4376_82530,267,4376_25524,The Square,106051574,0,4376_7778022_100530,4376_179 -4376_82530,268,4376_25525,The Square,106141574,0,4376_7778022_100530,4376_179 -4376_82530,269,4376_25526,The Square,106231574,0,4376_7778022_100530,4376_179 -4376_82530,259,4376_25527,The Square,105764404,0,4376_7778022_100460,4376_179 -4376_82530,270,4376_25528,The Square,105277188,0,4376_7778022_100380,4376_180 -4376_82530,146,4376_25529,The Square,105247188,0,4376_7778022_100380,4376_180 -4289_75964,261,4376_2553,Dundrum Luas,105321618,0,4376_7778022_100181,4376_35 -4376_82530,271,4376_25530,The Square,105237188,0,4376_7778022_100380,4376_180 -4376_82530,115,4376_25531,The Square,105217188,0,4376_7778022_100380,4376_180 -4376_82530,260,4376_25532,The Square,105311632,0,4376_7778022_100550,4376_179 -4376_82530,261,4376_25533,The Square,105321632,0,4376_7778022_100550,4376_179 -4376_82530,262,4376_25534,The Square,105431632,0,4376_7778022_100550,4376_179 -4376_82530,263,4376_25535,The Square,105541632,0,4376_7778022_100550,4376_179 -4376_82530,264,4376_25536,The Square,105651632,0,4376_7778022_100550,4376_179 -4376_82530,265,4376_25537,The Square,105811632,0,4376_7778022_100550,4376_179 -4376_82530,266,4376_25538,The Square,105821632,0,4376_7778022_100550,4376_179 -4376_82530,267,4376_25539,The Square,106051632,0,4376_7778022_100550,4376_179 -4289_75964,262,4376_2554,Dundrum Luas,105431618,0,4376_7778022_100181,4376_35 -4376_82530,268,4376_25540,The Square,106141632,0,4376_7778022_100550,4376_179 -4376_82530,269,4376_25541,The Square,106231632,0,4376_7778022_100550,4376_179 -4376_82530,259,4376_25542,The Square,105764456,0,4376_7778022_100440,4376_179 -4376_82530,270,4376_25543,The Square,105277232,0,4376_7778022_100390,4376_180 -4376_82530,146,4376_25544,The Square,105247232,0,4376_7778022_100390,4376_180 -4376_82530,271,4376_25545,The Square,105237232,0,4376_7778022_100390,4376_180 -4376_82530,115,4376_25546,The Square,105217232,0,4376_7778022_100390,4376_180 -4376_82530,260,4376_25547,The Square,105311682,0,4376_7778022_100520,4376_179 -4376_82530,261,4376_25548,The Square,105321682,0,4376_7778022_100520,4376_179 -4376_82530,262,4376_25549,The Square,105431682,0,4376_7778022_100520,4376_179 -4289_75964,263,4376_2555,Dundrum Luas,105541618,0,4376_7778022_100181,4376_35 -4376_82530,263,4376_25550,The Square,105541682,0,4376_7778022_100520,4376_179 -4376_82530,264,4376_25551,The Square,105651682,0,4376_7778022_100520,4376_179 -4376_82530,265,4376_25552,The Square,105811682,0,4376_7778022_100520,4376_179 -4376_82530,266,4376_25553,The Square,105821682,0,4376_7778022_100520,4376_179 -4376_82530,267,4376_25554,The Square,106051682,0,4376_7778022_100520,4376_179 -4376_82530,268,4376_25555,The Square,106141682,0,4376_7778022_100520,4376_179 -4376_82530,269,4376_25556,The Square,106231682,0,4376_7778022_100520,4376_179 -4376_82530,259,4376_25557,The Square,105764506,0,4376_7778022_100450,4376_179 -4376_82530,270,4376_25558,The Square,105277276,0,4376_7778022_100360,4376_180 -4376_82530,146,4376_25559,The Square,105247276,0,4376_7778022_100360,4376_180 -4289_75964,264,4376_2556,Dundrum Luas,105651618,0,4376_7778022_100181,4376_35 -4376_82530,271,4376_25560,The Square,105237276,0,4376_7778022_100360,4376_180 -4376_82530,115,4376_25561,The Square,105217276,0,4376_7778022_100360,4376_180 -4376_82530,260,4376_25562,The Square,105311738,0,4376_7778022_100570,4376_179 -4376_82530,261,4376_25563,The Square,105321738,0,4376_7778022_100570,4376_179 -4376_82530,262,4376_25564,The Square,105431738,0,4376_7778022_100570,4376_179 -4376_82530,263,4376_25565,The Square,105541738,0,4376_7778022_100570,4376_179 -4376_82530,264,4376_25566,The Square,105651738,0,4376_7778022_100570,4376_179 -4376_82530,265,4376_25567,The Square,105811738,0,4376_7778022_100570,4376_179 -4376_82530,266,4376_25568,The Square,105821738,0,4376_7778022_100570,4376_179 -4376_82530,267,4376_25569,The Square,106051738,0,4376_7778022_100570,4376_179 -4289_75964,265,4376_2557,Dundrum Luas,105811618,0,4376_7778022_100181,4376_35 -4376_82530,268,4376_25570,The Square,106141738,0,4376_7778022_100570,4376_179 -4376_82530,269,4376_25571,The Square,106231738,0,4376_7778022_100570,4376_179 -4376_82530,259,4376_25572,The Square,105764556,0,4376_7778022_100470,4376_179 -4376_82530,270,4376_25573,The Square,105277320,0,4376_7778022_100370,4376_180 -4376_82530,146,4376_25574,The Square,105247320,0,4376_7778022_100370,4376_180 -4376_82530,271,4376_25575,The Square,105237320,0,4376_7778022_100370,4376_180 -4376_82530,115,4376_25576,The Square,105217320,0,4376_7778022_100370,4376_180 -4376_82530,260,4376_25577,The Square,105311792,0,4376_7778022_100580,4376_179 -4376_82530,261,4376_25578,The Square,105321792,0,4376_7778022_100580,4376_179 -4376_82530,262,4376_25579,The Square,105431792,0,4376_7778022_100580,4376_179 -4289_75964,266,4376_2558,Dundrum Luas,105821618,0,4376_7778022_100181,4376_35 -4376_82530,263,4376_25580,The Square,105541792,0,4376_7778022_100580,4376_179 -4376_82530,264,4376_25581,The Square,105651792,0,4376_7778022_100580,4376_179 -4376_82530,265,4376_25582,The Square,105811792,0,4376_7778022_100580,4376_179 -4376_82530,266,4376_25583,The Square,105821792,0,4376_7778022_100580,4376_179 -4376_82530,267,4376_25584,The Square,106051792,0,4376_7778022_100580,4376_179 -4376_82530,268,4376_25585,The Square,106141792,0,4376_7778022_100580,4376_179 -4376_82530,269,4376_25586,The Square,106231792,0,4376_7778022_100580,4376_179 -4376_82530,259,4376_25587,The Square,105764610,0,4376_7778022_100420,4376_179 -4376_82530,270,4376_25588,The Square,105277368,0,4376_7778022_100400,4376_180 -4376_82530,146,4376_25589,The Square,105247368,0,4376_7778022_100400,4376_180 -4289_75964,267,4376_2559,Dundrum Luas,106051618,0,4376_7778022_100181,4376_35 -4376_82530,271,4376_25590,The Square,105237368,0,4376_7778022_100400,4376_180 -4376_82530,115,4376_25591,The Square,105217368,0,4376_7778022_100400,4376_180 -4376_82530,260,4376_25592,The Square,105311846,0,4376_7778022_100540,4376_179 -4376_82530,261,4376_25593,The Square,105321846,0,4376_7778022_100540,4376_179 -4376_82530,262,4376_25594,The Square,105431846,0,4376_7778022_100540,4376_179 -4376_82530,263,4376_25595,The Square,105541846,0,4376_7778022_100540,4376_179 -4376_82530,264,4376_25596,The Square,105651846,0,4376_7778022_100540,4376_179 -4376_82530,265,4376_25597,The Square,105811846,0,4376_7778022_100540,4376_179 -4376_82530,266,4376_25598,The Square,105821846,0,4376_7778022_100540,4376_179 -4376_82530,267,4376_25599,The Square,106051846,0,4376_7778022_100540,4376_179 -4289_75960,269,4376_256,Sutton Station,106232032,0,4376_7778022_103503,4376_1 -4289_75964,268,4376_2560,Dundrum Luas,106141618,0,4376_7778022_100181,4376_35 -4376_82530,268,4376_25600,The Square,106141846,0,4376_7778022_100540,4376_179 -4376_82530,269,4376_25601,The Square,106231846,0,4376_7778022_100540,4376_179 -4376_82530,259,4376_25602,The Square,105764662,0,4376_7778022_100430,4376_179 -4376_82530,270,4376_25603,The Square,105277410,0,4376_7778022_100350,4376_180 -4376_82530,146,4376_25604,The Square,105247410,0,4376_7778022_100350,4376_180 -4376_82530,271,4376_25605,The Square,105237410,0,4376_7778022_100350,4376_180 -4376_82530,115,4376_25606,The Square,105217410,0,4376_7778022_100350,4376_180 -4376_82530,260,4376_25607,The Square,105311900,0,4376_7778022_100530,4376_179 -4376_82530,261,4376_25608,The Square,105321900,0,4376_7778022_100530,4376_179 -4376_82530,262,4376_25609,The Square,105431900,0,4376_7778022_100530,4376_179 -4289_75964,269,4376_2561,Dundrum Luas,106231618,0,4376_7778022_100181,4376_35 -4376_82530,263,4376_25610,The Square,105541900,0,4376_7778022_100530,4376_179 -4376_82530,264,4376_25611,The Square,105651900,0,4376_7778022_100530,4376_179 -4376_82530,265,4376_25612,The Square,105811900,0,4376_7778022_100530,4376_179 -4376_82530,266,4376_25613,The Square,105821900,0,4376_7778022_100530,4376_179 -4376_82530,267,4376_25614,The Square,106051900,0,4376_7778022_100530,4376_179 -4376_82530,268,4376_25615,The Square,106141900,0,4376_7778022_100530,4376_179 -4376_82530,269,4376_25616,The Square,106231900,0,4376_7778022_100530,4376_179 -4376_82530,259,4376_25617,The Square,105764712,0,4376_7778022_100460,4376_179 -4376_82530,270,4376_25618,The Square,105277458,0,4376_7778022_100380,4376_180 -4376_82530,146,4376_25619,The Square,105247458,0,4376_7778022_100380,4376_180 -4289_75964,260,4376_2562,Dundrum Luas,105311782,0,4376_7778022_104201,4376_35 -4376_82530,271,4376_25620,The Square,105237458,0,4376_7778022_100380,4376_180 -4376_82530,115,4376_25621,The Square,105217458,0,4376_7778022_100380,4376_180 -4376_82530,260,4376_25622,The Square,105311958,0,4376_7778022_100550,4376_179 -4376_82530,261,4376_25623,The Square,105321958,0,4376_7778022_100550,4376_179 -4376_82530,262,4376_25624,The Square,105431958,0,4376_7778022_100550,4376_179 -4376_82530,263,4376_25625,The Square,105541958,0,4376_7778022_100550,4376_179 -4376_82530,264,4376_25626,The Square,105651958,0,4376_7778022_100550,4376_179 -4376_82530,265,4376_25627,The Square,105811958,0,4376_7778022_100550,4376_179 -4376_82530,266,4376_25628,The Square,105821958,0,4376_7778022_100550,4376_179 -4376_82530,267,4376_25629,The Square,106051958,0,4376_7778022_100550,4376_179 -4289_75964,261,4376_2563,Dundrum Luas,105321782,0,4376_7778022_104201,4376_35 -4376_82530,268,4376_25630,The Square,106141958,0,4376_7778022_100550,4376_179 -4376_82530,269,4376_25631,The Square,106231958,0,4376_7778022_100550,4376_179 -4376_82530,259,4376_25632,The Square,105764764,0,4376_7778022_100440,4376_179 -4376_82530,270,4376_25633,The Square,105277502,0,4376_7778022_100390,4376_180 -4376_82530,146,4376_25634,The Square,105247502,0,4376_7778022_100390,4376_180 -4376_82530,271,4376_25635,The Square,105237502,0,4376_7778022_100390,4376_180 -4376_82530,115,4376_25636,The Square,105217502,0,4376_7778022_100390,4376_180 -4376_82530,260,4376_25637,The Square,105312006,0,4376_7778022_100520,4376_179 -4376_82530,261,4376_25638,The Square,105322006,0,4376_7778022_100520,4376_179 -4376_82530,262,4376_25639,The Square,105432006,0,4376_7778022_100520,4376_179 -4289_75964,262,4376_2564,Dundrum Luas,105431782,0,4376_7778022_104201,4376_35 -4376_82530,263,4376_25640,The Square,105542006,0,4376_7778022_100520,4376_179 -4376_82530,264,4376_25641,The Square,105652006,0,4376_7778022_100520,4376_179 -4376_82530,265,4376_25642,The Square,105812006,0,4376_7778022_100520,4376_179 -4376_82530,266,4376_25643,The Square,105822006,0,4376_7778022_100520,4376_179 -4376_82530,267,4376_25644,The Square,106052006,0,4376_7778022_100520,4376_179 -4376_82530,268,4376_25645,The Square,106142006,0,4376_7778022_100520,4376_179 -4376_82530,269,4376_25646,The Square,106232006,0,4376_7778022_100520,4376_179 -4376_82530,259,4376_25647,The Square,105764814,0,4376_7778022_100450,4376_179 -4376_82530,270,4376_25648,The Square,105277548,0,4376_7778022_100360,4376_180 -4376_82530,146,4376_25649,The Square,105247548,0,4376_7778022_100360,4376_180 -4289_75964,263,4376_2565,Dundrum Luas,105541782,0,4376_7778022_104201,4376_35 -4376_82530,271,4376_25650,The Square,105237548,0,4376_7778022_100360,4376_180 -4376_82530,115,4376_25651,The Square,105217548,0,4376_7778022_100360,4376_180 -4376_82530,260,4376_25652,The Square,105312072,0,4376_7778022_100570,4376_179 -4376_82530,261,4376_25653,The Square,105322072,0,4376_7778022_100570,4376_179 -4376_82530,262,4376_25654,The Square,105432072,0,4376_7778022_100570,4376_179 -4376_82530,263,4376_25655,The Square,105542072,0,4376_7778022_100570,4376_179 -4376_82530,264,4376_25656,The Square,105652072,0,4376_7778022_100570,4376_179 -4376_82530,265,4376_25657,The Square,105812072,0,4376_7778022_100570,4376_179 -4376_82530,266,4376_25658,The Square,105822072,0,4376_7778022_100570,4376_179 -4376_82530,267,4376_25659,The Square,106052072,0,4376_7778022_100570,4376_179 -4289_75964,264,4376_2566,Dundrum Luas,105651782,0,4376_7778022_104201,4376_35 -4376_82530,268,4376_25660,The Square,106142072,0,4376_7778022_100570,4376_179 -4376_82530,269,4376_25661,The Square,106232072,0,4376_7778022_100570,4376_179 -4376_82530,259,4376_25662,The Square,105764866,0,4376_7778022_100470,4376_179 -4376_82530,270,4376_25663,The Square,105277592,0,4376_7778022_100370,4376_180 -4376_82530,146,4376_25664,The Square,105247592,0,4376_7778022_100370,4376_180 -4376_82530,271,4376_25665,The Square,105237592,0,4376_7778022_100370,4376_180 -4376_82530,115,4376_25666,The Square,105217592,0,4376_7778022_100370,4376_180 -4376_82530,260,4376_25667,The Square,105312144,0,4376_7778022_100580,4376_179 -4376_82530,261,4376_25668,The Square,105322144,0,4376_7778022_100580,4376_179 -4376_82530,262,4376_25669,The Square,105432144,0,4376_7778022_100580,4376_179 -4289_75964,265,4376_2567,Dundrum Luas,105811782,0,4376_7778022_104201,4376_35 -4376_82530,263,4376_25670,The Square,105542144,0,4376_7778022_100580,4376_179 -4376_82530,264,4376_25671,The Square,105652144,0,4376_7778022_100580,4376_179 -4376_82530,265,4376_25672,The Square,105812144,0,4376_7778022_100580,4376_179 -4376_82530,266,4376_25673,The Square,105822144,0,4376_7778022_100580,4376_179 -4376_82530,267,4376_25674,The Square,106052144,0,4376_7778022_100580,4376_179 -4376_82530,268,4376_25675,The Square,106142144,0,4376_7778022_100580,4376_179 -4376_82530,269,4376_25676,The Square,106232144,0,4376_7778022_100580,4376_179 -4376_82530,259,4376_25677,The Square,105764916,0,4376_7778022_100420,4376_179 -4376_82530,270,4376_25678,The Square,105277640,0,4376_7778022_100400,4376_180 -4376_82530,146,4376_25679,The Square,105247640,0,4376_7778022_100400,4376_180 -4289_75964,266,4376_2568,Dundrum Luas,105821782,0,4376_7778022_104201,4376_35 -4376_82530,271,4376_25680,The Square,105237640,0,4376_7778022_100400,4376_180 -4376_82530,115,4376_25681,The Square,105217640,0,4376_7778022_100400,4376_180 -4376_82530,260,4376_25682,The Square,105312202,0,4376_7778022_100540,4376_179 -4376_82530,261,4376_25683,The Square,105322202,0,4376_7778022_100540,4376_179 -4376_82530,262,4376_25684,The Square,105432202,0,4376_7778022_100540,4376_179 -4376_82530,263,4376_25685,The Square,105542202,0,4376_7778022_100540,4376_179 -4376_82530,264,4376_25686,The Square,105652202,0,4376_7778022_100540,4376_179 -4376_82530,265,4376_25687,The Square,105812202,0,4376_7778022_100540,4376_179 -4376_82530,266,4376_25688,The Square,105822202,0,4376_7778022_100540,4376_179 -4376_82530,267,4376_25689,The Square,106052202,0,4376_7778022_100540,4376_179 -4289_75964,267,4376_2569,Dundrum Luas,106051782,0,4376_7778022_104201,4376_35 -4376_82530,268,4376_25690,The Square,106142202,0,4376_7778022_100540,4376_179 -4376_82530,269,4376_25691,The Square,106232202,0,4376_7778022_100540,4376_179 -4376_82530,259,4376_25692,The Square,105764968,0,4376_7778022_100430,4376_179 -4376_82530,270,4376_25693,The Square,105277682,0,4376_7778022_100350,4376_180 -4376_82530,146,4376_25694,The Square,105247682,0,4376_7778022_100350,4376_180 -4376_82530,271,4376_25695,The Square,105237682,0,4376_7778022_100350,4376_180 -4376_82530,115,4376_25696,The Square,105217682,0,4376_7778022_100350,4376_180 -4376_82530,260,4376_25697,The Square,105312270,0,4376_7778022_100562,4376_179 -4376_82530,261,4376_25698,The Square,105322270,0,4376_7778022_100562,4376_179 -4376_82530,262,4376_25699,The Square,105432270,0,4376_7778022_100562,4376_179 -4289_75960,259,4376_257,Sutton Station,105764828,0,4376_7778022_103106,4376_2 -4289_75964,268,4376_2570,Dundrum Luas,106141782,0,4376_7778022_104201,4376_35 -4376_82530,263,4376_25700,The Square,105542270,0,4376_7778022_100562,4376_179 -4376_82530,264,4376_25701,The Square,105652270,0,4376_7778022_100562,4376_179 -4376_82530,265,4376_25702,The Square,105812270,0,4376_7778022_100562,4376_179 -4376_82530,266,4376_25703,The Square,105822270,0,4376_7778022_100562,4376_179 -4376_82530,267,4376_25704,The Square,106052270,0,4376_7778022_100562,4376_179 -4376_82530,268,4376_25705,The Square,106142270,0,4376_7778022_100562,4376_179 -4376_82530,269,4376_25706,The Square,106232270,0,4376_7778022_100562,4376_179 -4376_82530,259,4376_25707,The Square,105765018,0,4376_7778022_100460,4376_179 -4376_82530,270,4376_25708,The Square,105277730,0,4376_7778022_100380,4376_180 -4376_82530,146,4376_25709,The Square,105247730,0,4376_7778022_100380,4376_180 -4289_75964,269,4376_2571,Dundrum Luas,106231782,0,4376_7778022_104201,4376_35 -4376_82530,271,4376_25710,The Square,105237730,0,4376_7778022_100380,4376_180 -4376_82530,115,4376_25711,The Square,105217730,0,4376_7778022_100380,4376_180 -4376_82530,260,4376_25712,The Square,105312328,0,4376_7778022_100530,4376_179 -4376_82530,261,4376_25713,The Square,105322328,0,4376_7778022_100530,4376_179 -4376_82530,262,4376_25714,The Square,105432328,0,4376_7778022_100530,4376_179 -4376_82530,263,4376_25715,The Square,105542328,0,4376_7778022_100530,4376_179 -4376_82530,264,4376_25716,The Square,105652328,0,4376_7778022_100530,4376_179 -4376_82530,265,4376_25717,The Square,105812328,0,4376_7778022_100530,4376_179 -4376_82530,266,4376_25718,The Square,105822328,0,4376_7778022_100530,4376_179 -4376_82530,267,4376_25719,The Square,106052328,0,4376_7778022_100530,4376_179 -4289_75964,260,4376_2572,Dundrum Luas,105311944,0,4376_7778022_104201,4376_35 -4376_82530,268,4376_25720,The Square,106142328,0,4376_7778022_100530,4376_179 -4376_82530,269,4376_25721,The Square,106232328,0,4376_7778022_100530,4376_179 -4376_82530,259,4376_25722,The Square,105765070,0,4376_7778022_100440,4376_179 -4376_82530,270,4376_25723,The Square,105277774,0,4376_7778022_100390,4376_180 -4376_82530,146,4376_25724,The Square,105247774,0,4376_7778022_100390,4376_180 -4376_82530,271,4376_25725,The Square,105237774,0,4376_7778022_100390,4376_180 -4376_82530,115,4376_25726,The Square,105217774,0,4376_7778022_100390,4376_180 -4376_82530,260,4376_25727,The Square,105312384,0,4376_7778022_100550,4376_179 -4376_82530,261,4376_25728,The Square,105322384,0,4376_7778022_100550,4376_179 -4376_82530,262,4376_25729,The Square,105432384,0,4376_7778022_100550,4376_179 -4289_75964,261,4376_2573,Dundrum Luas,105321944,0,4376_7778022_104201,4376_35 -4376_82530,263,4376_25730,The Square,105542384,0,4376_7778022_100550,4376_179 -4376_82530,264,4376_25731,The Square,105652384,0,4376_7778022_100550,4376_179 -4376_82530,265,4376_25732,The Square,105812384,0,4376_7778022_100550,4376_179 -4376_82530,266,4376_25733,The Square,105822384,0,4376_7778022_100550,4376_179 -4376_82530,267,4376_25734,The Square,106052384,0,4376_7778022_100550,4376_179 -4376_82530,268,4376_25735,The Square,106142384,0,4376_7778022_100550,4376_179 -4376_82530,269,4376_25736,The Square,106232384,0,4376_7778022_100550,4376_179 -4376_82530,259,4376_25737,The Square,105765124,0,4376_7778022_100450,4376_179 -4376_82530,270,4376_25738,The Square,105277820,0,4376_7778022_100360,4376_179 -4376_82530,146,4376_25739,The Square,105247820,0,4376_7778022_100360,4376_179 -4289_75964,262,4376_2574,Dundrum Luas,105431944,0,4376_7778022_104201,4376_35 -4376_82530,271,4376_25740,The Square,105237820,0,4376_7778022_100360,4376_179 -4376_82530,115,4376_25741,The Square,105217820,0,4376_7778022_100360,4376_179 -4376_82530,260,4376_25742,The Square,105312444,0,4376_7778022_100520,4376_179 -4376_82530,261,4376_25743,The Square,105322444,0,4376_7778022_100520,4376_179 -4376_82530,262,4376_25744,The Square,105432444,0,4376_7778022_100520,4376_179 -4376_82530,263,4376_25745,The Square,105542444,0,4376_7778022_100520,4376_179 -4376_82530,264,4376_25746,The Square,105652444,0,4376_7778022_100520,4376_179 -4376_82530,265,4376_25747,The Square,105812444,0,4376_7778022_100520,4376_179 -4376_82530,266,4376_25748,The Square,105822444,0,4376_7778022_100520,4376_179 -4376_82530,267,4376_25749,The Square,106052444,0,4376_7778022_100520,4376_179 -4289_75964,263,4376_2575,Dundrum Luas,105541944,0,4376_7778022_104201,4376_35 -4376_82530,268,4376_25750,The Square,106142444,0,4376_7778022_100520,4376_179 -4376_82530,269,4376_25751,The Square,106232444,0,4376_7778022_100520,4376_179 -4376_82530,259,4376_25752,The Square,105765174,0,4376_7778022_100470,4376_179 -4376_82530,270,4376_25753,The Square,105277862,0,4376_7778022_100370,4376_180 -4376_82530,146,4376_25754,The Square,105247862,0,4376_7778022_100370,4376_180 -4376_82530,271,4376_25755,The Square,105237862,0,4376_7778022_100370,4376_180 -4376_82530,115,4376_25756,The Square,105217862,0,4376_7778022_100370,4376_180 -4376_82530,260,4376_25757,The Square,105312500,0,4376_7778022_100590,4376_179 -4376_82530,261,4376_25758,The Square,105322500,0,4376_7778022_100590,4376_179 -4376_82530,262,4376_25759,The Square,105432500,0,4376_7778022_100590,4376_179 -4289_75964,264,4376_2576,Dundrum Luas,105651944,0,4376_7778022_104201,4376_35 -4376_82530,263,4376_25760,The Square,105542500,0,4376_7778022_100590,4376_179 -4376_82530,264,4376_25761,The Square,105652500,0,4376_7778022_100590,4376_179 -4376_82530,265,4376_25762,The Square,105812500,0,4376_7778022_100590,4376_179 -4376_82530,266,4376_25763,The Square,105822500,0,4376_7778022_100590,4376_179 -4376_82530,267,4376_25764,The Square,106052500,0,4376_7778022_100590,4376_179 -4376_82530,268,4376_25765,The Square,106142500,0,4376_7778022_100590,4376_179 -4376_82530,269,4376_25766,The Square,106232500,0,4376_7778022_100590,4376_179 -4376_82530,259,4376_25767,The Square,105765230,0,4376_7778022_100420,4376_179 -4376_82530,270,4376_25768,The Square,105277912,0,4376_7778022_100400,4376_180 -4376_82530,146,4376_25769,The Square,105247912,0,4376_7778022_100400,4376_180 -4289_75964,265,4376_2577,Dundrum Luas,105811944,0,4376_7778022_104201,4376_35 -4376_82530,271,4376_25770,The Square,105237912,0,4376_7778022_100400,4376_180 -4376_82530,115,4376_25771,The Square,105217912,0,4376_7778022_100400,4376_180 -4376_82530,260,4376_25772,The Square,105312558,0,4376_7778022_100570,4376_179 -4376_82530,261,4376_25773,The Square,105322558,0,4376_7778022_100570,4376_179 -4376_82530,262,4376_25774,The Square,105432558,0,4376_7778022_100570,4376_179 -4376_82530,263,4376_25775,The Square,105542558,0,4376_7778022_100570,4376_179 -4376_82530,264,4376_25776,The Square,105652558,0,4376_7778022_100570,4376_179 -4376_82530,265,4376_25777,The Square,105812558,0,4376_7778022_100570,4376_179 -4376_82530,266,4376_25778,The Square,105822558,0,4376_7778022_100570,4376_179 -4376_82530,267,4376_25779,The Square,106052558,0,4376_7778022_100570,4376_179 -4289_75964,266,4376_2578,Dundrum Luas,105821944,0,4376_7778022_104201,4376_35 -4376_82530,268,4376_25780,The Square,106142558,0,4376_7778022_100570,4376_179 -4376_82530,269,4376_25781,The Square,106232558,0,4376_7778022_100570,4376_179 -4376_82530,259,4376_25782,The Square,105765274,0,4376_7778022_100430,4376_179 -4376_82530,270,4376_25783,The Square,105277950,0,4376_7778022_100350,4376_179 -4376_82530,146,4376_25784,The Square,105247950,0,4376_7778022_100350,4376_179 -4376_82530,271,4376_25785,The Square,105237950,0,4376_7778022_100350,4376_179 -4376_82530,115,4376_25786,The Square,105217950,0,4376_7778022_100350,4376_179 -4376_82530,260,4376_25787,The Square,105312608,0,4376_7778022_100580,4376_179 -4376_82530,261,4376_25788,The Square,105322608,0,4376_7778022_100580,4376_179 -4376_82530,262,4376_25789,The Square,105432608,0,4376_7778022_100580,4376_179 -4289_75964,267,4376_2579,Dundrum Luas,106051944,0,4376_7778022_104201,4376_35 -4376_82530,263,4376_25790,The Square,105542608,0,4376_7778022_100580,4376_179 -4376_82530,264,4376_25791,The Square,105652608,0,4376_7778022_100580,4376_179 -4376_82530,265,4376_25792,The Square,105812608,0,4376_7778022_100580,4376_179 -4376_82530,266,4376_25793,The Square,105822608,0,4376_7778022_100580,4376_179 -4376_82530,267,4376_25794,The Square,106052608,0,4376_7778022_100580,4376_179 -4376_82530,268,4376_25795,The Square,106142608,0,4376_7778022_100580,4376_179 -4376_82530,269,4376_25796,The Square,106232608,0,4376_7778022_100580,4376_179 -4376_82530,259,4376_25797,The Square,105765326,0,4376_7778022_100460,4376_179 -4376_82530,270,4376_25798,The Square,105278000,0,4376_7778022_100380,4376_179 -4376_82530,146,4376_25799,The Square,105248000,0,4376_7778022_100380,4376_179 -4289_75960,270,4376_258,Sutton Station,105277578,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2580,Dundrum Luas,106141944,0,4376_7778022_104201,4376_35 -4376_82530,271,4376_25800,The Square,105238000,0,4376_7778022_100380,4376_179 -4376_82530,115,4376_25801,The Square,105218000,0,4376_7778022_100380,4376_179 -4376_82530,260,4376_25802,The Square,105312658,0,4376_7778022_100562,4376_179 -4376_82530,261,4376_25803,The Square,105322658,0,4376_7778022_100562,4376_179 -4376_82530,262,4376_25804,The Square,105432658,0,4376_7778022_100562,4376_179 -4376_82530,263,4376_25805,The Square,105542658,0,4376_7778022_100562,4376_179 -4376_82530,264,4376_25806,The Square,105652658,0,4376_7778022_100562,4376_179 -4376_82530,265,4376_25807,The Square,105812658,0,4376_7778022_100562,4376_179 -4376_82530,266,4376_25808,The Square,105822658,0,4376_7778022_100562,4376_179 -4376_82530,267,4376_25809,The Square,106052658,0,4376_7778022_100562,4376_179 -4289_75964,269,4376_2581,Dundrum Luas,106231944,0,4376_7778022_104201,4376_35 -4376_82530,268,4376_25810,The Square,106142658,0,4376_7778022_100562,4376_179 -4376_82530,269,4376_25811,The Square,106232658,0,4376_7778022_100562,4376_179 -4376_82530,259,4376_25812,The Square,105765366,0,4376_7778022_100440,4376_179 -4376_82530,270,4376_25813,The Square,105278034,0,4376_7778022_100390,4376_179 -4376_82530,146,4376_25814,The Square,105248034,0,4376_7778022_100390,4376_179 -4376_82530,271,4376_25815,The Square,105238034,0,4376_7778022_100390,4376_179 -4376_82530,115,4376_25816,The Square,105218034,0,4376_7778022_100390,4376_179 -4376_82530,260,4376_25817,The Square,105312708,0,4376_7778022_100530,4376_179 -4376_82530,261,4376_25818,The Square,105322708,0,4376_7778022_100530,4376_179 -4376_82530,262,4376_25819,The Square,105432708,0,4376_7778022_100530,4376_179 -4289_75964,260,4376_2582,Dundrum Luas,105312132,0,4376_7778022_100182,4376_35 -4376_82530,263,4376_25820,The Square,105542708,0,4376_7778022_100530,4376_179 -4376_82530,264,4376_25821,The Square,105652708,0,4376_7778022_100530,4376_179 -4376_82530,265,4376_25822,The Square,105812708,0,4376_7778022_100530,4376_179 -4376_82530,266,4376_25823,The Square,105822708,0,4376_7778022_100530,4376_179 -4376_82530,267,4376_25824,The Square,106052708,0,4376_7778022_100530,4376_179 -4376_82530,268,4376_25825,The Square,106142708,0,4376_7778022_100530,4376_179 -4376_82530,269,4376_25826,The Square,106232708,0,4376_7778022_100530,4376_179 -4376_82530,259,4376_25827,The Square,105765414,0,4376_7778022_100450,4376_179 -4376_82530,270,4376_25828,The Square,105278078,0,4376_7778022_100360,4376_179 -4376_82530,146,4376_25829,The Square,105248078,0,4376_7778022_100360,4376_179 -4289_75964,261,4376_2583,Dundrum Luas,105322132,0,4376_7778022_100182,4376_35 -4376_82530,271,4376_25830,The Square,105238078,0,4376_7778022_100360,4376_179 -4376_82530,115,4376_25831,The Square,105218078,0,4376_7778022_100360,4376_179 -4376_82530,260,4376_25832,The Square,105312754,0,4376_7778022_100520,4376_179 -4376_82530,261,4376_25833,The Square,105322754,0,4376_7778022_100520,4376_179 -4376_82530,262,4376_25834,The Square,105432754,0,4376_7778022_100520,4376_179 -4376_82530,263,4376_25835,The Square,105542754,0,4376_7778022_100520,4376_179 -4376_82530,264,4376_25836,The Square,105652754,0,4376_7778022_100520,4376_179 -4376_82530,265,4376_25837,The Square,105812754,0,4376_7778022_100520,4376_179 -4376_82530,266,4376_25838,The Square,105822754,0,4376_7778022_100520,4376_179 -4376_82530,267,4376_25839,The Square,106052754,0,4376_7778022_100520,4376_179 -4289_75964,262,4376_2584,Dundrum Luas,105432132,0,4376_7778022_100182,4376_35 -4376_82530,268,4376_25840,The Square,106142754,0,4376_7778022_100520,4376_179 -4376_82530,269,4376_25841,The Square,106232754,0,4376_7778022_100520,4376_179 -4376_82530,259,4376_25842,The Square,105765454,0,4376_7778022_100470,4376_179 -4376_82530,270,4376_25843,The Square,105278112,0,4376_7778022_100370,4376_179 -4376_82530,146,4376_25844,The Square,105248112,0,4376_7778022_100370,4376_179 -4376_82530,271,4376_25845,The Square,105238112,0,4376_7778022_100370,4376_179 -4376_82530,115,4376_25846,The Square,105218112,0,4376_7778022_100370,4376_179 -4376_82530,260,4376_25847,The Square,105312806,0,4376_7778022_100590,4376_179 -4376_82530,261,4376_25848,The Square,105322806,0,4376_7778022_100590,4376_179 -4376_82530,262,4376_25849,The Square,105432806,0,4376_7778022_100590,4376_179 -4289_75964,263,4376_2585,Dundrum Luas,105542132,0,4376_7778022_100182,4376_35 -4376_82530,263,4376_25850,The Square,105542806,0,4376_7778022_100590,4376_179 -4376_82530,264,4376_25851,The Square,105652806,0,4376_7778022_100590,4376_179 -4376_82530,265,4376_25852,The Square,105812806,0,4376_7778022_100590,4376_179 -4376_82530,266,4376_25853,The Square,105822806,0,4376_7778022_100590,4376_179 -4376_82530,267,4376_25854,The Square,106052806,0,4376_7778022_100590,4376_179 -4376_82530,268,4376_25855,The Square,106142806,0,4376_7778022_100590,4376_179 -4376_82530,269,4376_25856,The Square,106232806,0,4376_7778022_100590,4376_179 -4376_82530,259,4376_25857,The Square,105765502,0,4376_7778022_100420,4376_179 -4376_82530,270,4376_25858,The Square,105278156,0,4376_7778022_100400,4376_179 -4376_82530,146,4376_25859,The Square,105248156,0,4376_7778022_100400,4376_179 -4289_75964,264,4376_2586,Dundrum Luas,105652132,0,4376_7778022_100182,4376_35 -4376_82530,271,4376_25860,The Square,105238156,0,4376_7778022_100400,4376_179 -4376_82530,115,4376_25861,The Square,105218156,0,4376_7778022_100400,4376_179 -4376_82530,260,4376_25862,The Square,105312848,0,4376_7778022_100570,4376_179 -4376_82530,261,4376_25863,The Square,105322848,0,4376_7778022_100570,4376_179 -4376_82530,262,4376_25864,The Square,105432848,0,4376_7778022_100570,4376_179 -4376_82530,263,4376_25865,The Square,105542848,0,4376_7778022_100570,4376_179 -4376_82530,264,4376_25866,The Square,105652848,0,4376_7778022_100570,4376_179 -4376_82530,265,4376_25867,The Square,105812848,0,4376_7778022_100570,4376_179 -4376_82530,266,4376_25868,The Square,105822848,0,4376_7778022_100570,4376_179 -4376_82530,267,4376_25869,The Square,106052848,0,4376_7778022_100570,4376_179 -4289_75964,265,4376_2587,Dundrum Luas,105812132,0,4376_7778022_100182,4376_35 -4376_82530,268,4376_25870,The Square,106142848,0,4376_7778022_100570,4376_179 -4376_82530,269,4376_25871,The Square,106232848,0,4376_7778022_100570,4376_179 -4376_82530,259,4376_25872,The Square,105765538,0,4376_7778022_100430,4376_179 -4376_82530,270,4376_25873,The Square,105278188,0,4376_7778022_100350,4376_179 -4376_82530,146,4376_25874,The Square,105248188,0,4376_7778022_100350,4376_179 -4376_82530,271,4376_25875,The Square,105238188,0,4376_7778022_100350,4376_179 -4376_82530,115,4376_25876,The Square,105218188,0,4376_7778022_100350,4376_179 -4376_82530,260,4376_25877,The Square,105312898,0,4376_7778022_100580,4376_179 -4376_82530,261,4376_25878,The Square,105322898,0,4376_7778022_100580,4376_179 -4376_82530,262,4376_25879,The Square,105432898,0,4376_7778022_100580,4376_179 -4289_75964,266,4376_2588,Dundrum Luas,105822132,0,4376_7778022_100182,4376_35 -4376_82530,263,4376_25880,The Square,105542898,0,4376_7778022_100580,4376_179 -4376_82530,264,4376_25881,The Square,105652898,0,4376_7778022_100580,4376_179 -4376_82530,265,4376_25882,The Square,105812898,0,4376_7778022_100580,4376_179 -4376_82530,266,4376_25883,The Square,105822898,0,4376_7778022_100580,4376_179 -4376_82530,267,4376_25884,The Square,106052898,0,4376_7778022_100580,4376_179 -4376_82530,268,4376_25885,The Square,106142898,0,4376_7778022_100580,4376_179 -4376_82530,269,4376_25886,The Square,106232898,0,4376_7778022_100580,4376_179 -4376_82530,259,4376_25887,The Square,105765584,0,4376_7778022_100460,4376_179 -4376_82530,270,4376_25888,The Square,105278230,0,4376_7778022_100380,4376_179 -4376_82530,146,4376_25889,The Square,105248230,0,4376_7778022_100380,4376_179 -4289_75964,267,4376_2589,Dundrum Luas,106052132,0,4376_7778022_100182,4376_35 -4376_82530,271,4376_25890,The Square,105238230,0,4376_7778022_100380,4376_179 -4376_82530,115,4376_25891,The Square,105218230,0,4376_7778022_100380,4376_179 -4376_82530,260,4376_25892,The Square,105312944,0,4376_7778022_100562,4376_179 -4376_82530,261,4376_25893,The Square,105322944,0,4376_7778022_100562,4376_179 -4376_82530,262,4376_25894,The Square,105432944,0,4376_7778022_100562,4376_179 -4376_82530,263,4376_25895,The Square,105542944,0,4376_7778022_100562,4376_179 -4376_82530,264,4376_25896,The Square,105652944,0,4376_7778022_100562,4376_179 -4376_82530,265,4376_25897,The Square,105812944,0,4376_7778022_100562,4376_179 -4376_82530,266,4376_25898,The Square,105822944,0,4376_7778022_100562,4376_179 -4376_82530,267,4376_25899,The Square,106052944,0,4376_7778022_100562,4376_179 -4289_75960,146,4376_259,Sutton Station,105247578,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2590,Dundrum Luas,106142132,0,4376_7778022_100182,4376_35 -4376_82530,268,4376_25900,The Square,106142944,0,4376_7778022_100562,4376_179 -4376_82530,269,4376_25901,The Square,106232944,0,4376_7778022_100562,4376_179 -4376_82530,259,4376_25902,The Square,105765622,0,4376_7778022_100450,4376_179 -4376_82530,270,4376_25903,The Square,105278264,0,4376_7778022_100360,4376_179 -4376_82530,146,4376_25904,The Square,105248264,0,4376_7778022_100360,4376_179 -4376_82530,271,4376_25905,The Square,105238264,0,4376_7778022_100360,4376_179 -4376_82530,115,4376_25906,The Square,105218264,0,4376_7778022_100360,4376_179 -4376_82530,260,4376_25907,The Square,105313008,0,4376_7778022_100570,4376_179 -4376_82530,261,4376_25908,The Square,105323008,0,4376_7778022_100570,4376_179 -4376_82530,262,4376_25909,The Square,105433008,0,4376_7778022_100570,4376_179 -4289_75964,269,4376_2591,Dundrum Luas,106232132,0,4376_7778022_100182,4376_35 -4376_82530,263,4376_25910,The Square,105543008,0,4376_7778022_100570,4376_179 -4376_82530,264,4376_25911,The Square,105653008,0,4376_7778022_100570,4376_179 -4376_82530,265,4376_25912,The Square,105813008,0,4376_7778022_100570,4376_179 -4376_82530,266,4376_25913,The Square,105823008,0,4376_7778022_100570,4376_179 -4376_82530,267,4376_25914,The Square,106053008,0,4376_7778022_100570,4376_179 -4376_82530,268,4376_25915,The Square,106143008,0,4376_7778022_100570,4376_179 -4376_82530,269,4376_25916,The Square,106233008,0,4376_7778022_100570,4376_179 -4376_82530,259,4376_25917,The Square,105765680,0,4376_7778022_100420,4376_179 -4376_82530,270,4376_25918,The Square,105278322,0,4376_7778022_100400,4376_179 -4376_82530,146,4376_25919,The Square,105248322,0,4376_7778022_100400,4376_179 -4289_75964,260,4376_2592,Dundrum Luas,105312232,0,4376_7778022_100182,4376_35 -4376_82530,271,4376_25920,The Square,105238322,0,4376_7778022_100400,4376_179 -4376_82530,115,4376_25921,The Square,105218322,0,4376_7778022_100400,4376_179 -4376_82530,259,4376_25922,Community College,105764015,1,4376_7778022_100430,4376_181 -4376_82530,260,4376_25923,Community College,105311025,1,4376_7778022_100530,4376_181 -4376_82530,261,4376_25924,Community College,105321025,1,4376_7778022_100530,4376_181 -4376_82530,262,4376_25925,Community College,105431025,1,4376_7778022_100530,4376_181 -4376_82530,263,4376_25926,Community College,105541025,1,4376_7778022_100530,4376_181 -4376_82530,264,4376_25927,Community College,105651025,1,4376_7778022_100530,4376_181 -4376_82530,265,4376_25928,Community College,105811025,1,4376_7778022_100530,4376_181 -4376_82530,266,4376_25929,Community College,105821025,1,4376_7778022_100530,4376_181 -4289_75964,261,4376_2593,Dundrum Luas,105322232,0,4376_7778022_100182,4376_35 -4376_82530,267,4376_25930,Community College,106051025,1,4376_7778022_100530,4376_181 -4376_82530,268,4376_25931,Community College,106141025,1,4376_7778022_100530,4376_181 -4376_82530,269,4376_25932,Community College,106231025,1,4376_7778022_100530,4376_181 -4376_82530,260,4376_25933,Community College,105311059,1,4376_7778022_100550,4376_181 -4376_82530,261,4376_25934,Community College,105321059,1,4376_7778022_100550,4376_181 -4376_82530,262,4376_25935,Community College,105431059,1,4376_7778022_100550,4376_181 -4376_82530,263,4376_25936,Community College,105541059,1,4376_7778022_100550,4376_181 -4376_82530,264,4376_25937,Community College,105651059,1,4376_7778022_100550,4376_181 -4376_82530,265,4376_25938,Community College,105811059,1,4376_7778022_100550,4376_181 -4376_82530,266,4376_25939,Community College,105821059,1,4376_7778022_100550,4376_181 -4289_75964,262,4376_2594,Dundrum Luas,105432232,0,4376_7778022_100182,4376_35 -4376_82530,267,4376_25940,Community College,106051059,1,4376_7778022_100550,4376_181 -4376_82530,268,4376_25941,Community College,106141059,1,4376_7778022_100550,4376_181 -4376_82530,269,4376_25942,Community College,106231059,1,4376_7778022_100550,4376_181 -4376_82530,259,4376_25943,Community College,105764069,1,4376_7778022_100440,4376_181 -4376_82530,260,4376_25944,Community College,105311113,1,4376_7778022_100520,4376_181 -4376_82530,261,4376_25945,Community College,105321113,1,4376_7778022_100520,4376_181 -4376_82530,262,4376_25946,Community College,105431113,1,4376_7778022_100520,4376_181 -4376_82530,263,4376_25947,Community College,105541113,1,4376_7778022_100520,4376_181 -4376_82530,264,4376_25948,Community College,105651113,1,4376_7778022_100520,4376_181 -4376_82530,265,4376_25949,Community College,105811113,1,4376_7778022_100520,4376_181 -4289_75964,263,4376_2595,Dundrum Luas,105542232,0,4376_7778022_100182,4376_35 -4376_82530,266,4376_25950,Community College,105821113,1,4376_7778022_100520,4376_181 -4376_82530,267,4376_25951,Community College,106051113,1,4376_7778022_100520,4376_181 -4376_82530,268,4376_25952,Community College,106141113,1,4376_7778022_100520,4376_181 -4376_82530,269,4376_25953,Community College,106231113,1,4376_7778022_100520,4376_181 -4376_82530,260,4376_25954,Community College,105311169,1,4376_7778022_100570,4376_181 -4376_82530,261,4376_25955,Community College,105321169,1,4376_7778022_100570,4376_181 -4376_82530,262,4376_25956,Community College,105431169,1,4376_7778022_100570,4376_181 -4376_82530,263,4376_25957,Community College,105541169,1,4376_7778022_100570,4376_181 -4376_82530,264,4376_25958,Community College,105651169,1,4376_7778022_100570,4376_181 -4376_82530,265,4376_25959,Community College,105811169,1,4376_7778022_100570,4376_181 -4289_75964,264,4376_2596,Dundrum Luas,105652232,0,4376_7778022_100182,4376_35 -4376_82530,266,4376_25960,Community College,105821169,1,4376_7778022_100570,4376_181 -4376_82530,267,4376_25961,Community College,106051169,1,4376_7778022_100570,4376_181 -4376_82530,268,4376_25962,Community College,106141169,1,4376_7778022_100570,4376_181 -4376_82530,269,4376_25963,Community College,106231169,1,4376_7778022_100570,4376_181 -4376_82530,260,4376_25964,Community College,105311225,1,4376_7778022_100540,4376_181 -4376_82530,261,4376_25965,Community College,105321225,1,4376_7778022_100540,4376_181 -4376_82530,262,4376_25966,Community College,105431225,1,4376_7778022_100540,4376_181 -4376_82530,263,4376_25967,Community College,105541225,1,4376_7778022_100540,4376_181 -4376_82530,264,4376_25968,Community College,105651225,1,4376_7778022_100540,4376_181 -4376_82530,265,4376_25969,Community College,105811225,1,4376_7778022_100540,4376_181 -4289_75964,265,4376_2597,Dundrum Luas,105812232,0,4376_7778022_100182,4376_35 -4376_82530,266,4376_25970,Community College,105821225,1,4376_7778022_100540,4376_181 -4376_82530,267,4376_25971,Community College,106051225,1,4376_7778022_100540,4376_181 -4376_82530,268,4376_25972,Community College,106141225,1,4376_7778022_100540,4376_181 -4376_82530,269,4376_25973,Community College,106231225,1,4376_7778022_100540,4376_181 -4376_82530,259,4376_25974,Community College,105764151,1,4376_7778022_100420,4376_182 -4376_82530,270,4376_25975,Community College,105277017,1,4376_7778022_100370,4376_183 -4376_82530,146,4376_25976,Community College,105247017,1,4376_7778022_100370,4376_183 -4376_82530,271,4376_25977,Community College,105237017,1,4376_7778022_100370,4376_183 -4376_82530,115,4376_25978,Community College,105217017,1,4376_7778022_100370,4376_183 -4376_82530,260,4376_25979,Community College,105311303,1,4376_7778022_100561,4376_181 -4289_75964,266,4376_2598,Dundrum Luas,105822232,0,4376_7778022_100182,4376_35 -4376_82530,261,4376_25980,Community College,105321303,1,4376_7778022_100561,4376_181 -4376_82530,262,4376_25981,Community College,105431303,1,4376_7778022_100561,4376_181 -4376_82530,263,4376_25982,Community College,105541303,1,4376_7778022_100561,4376_181 -4376_82530,264,4376_25983,Community College,105651303,1,4376_7778022_100561,4376_181 -4376_82530,265,4376_25984,Community College,105811303,1,4376_7778022_100561,4376_181 -4376_82530,266,4376_25985,Community College,105821303,1,4376_7778022_100561,4376_181 -4376_82530,267,4376_25986,Community College,106051303,1,4376_7778022_100561,4376_181 -4376_82530,268,4376_25987,Community College,106141303,1,4376_7778022_100561,4376_181 -4376_82530,269,4376_25988,Community College,106231303,1,4376_7778022_100561,4376_181 -4376_82530,259,4376_25989,Community College,105764191,1,4376_7778022_100430,4376_182 -4289_75964,267,4376_2599,Dundrum Luas,106052232,0,4376_7778022_100182,4376_35 -4376_82530,259,4376_25990,Community College,105764237,1,4376_7778022_100460,4376_181 -4376_82530,270,4376_25991,Community College,105277065,1,4376_7778022_100350,4376_182 -4376_82530,146,4376_25992,Community College,105247065,1,4376_7778022_100350,4376_182 -4376_82530,271,4376_25993,Community College,105237065,1,4376_7778022_100350,4376_182 -4376_82530,115,4376_25994,Community College,105217065,1,4376_7778022_100350,4376_182 -4376_82530,260,4376_25995,Community College,105311367,1,4376_7778022_100530,4376_181 -4376_82530,261,4376_25996,Community College,105321367,1,4376_7778022_100530,4376_181 -4376_82530,262,4376_25997,Community College,105431367,1,4376_7778022_100530,4376_181 -4376_82530,263,4376_25998,Community College,105541367,1,4376_7778022_100530,4376_181 -4376_82530,264,4376_25999,Community College,105651367,1,4376_7778022_100530,4376_181 -4289_75960,263,4376_26,Sutton Station,105541106,0,4376_7778022_103108,4376_1 -4289_75960,271,4376_260,Sutton Station,105237578,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2600,Dundrum Luas,106142232,0,4376_7778022_100182,4376_35 -4376_82530,265,4376_26000,Community College,105811367,1,4376_7778022_100530,4376_181 -4376_82530,266,4376_26001,Community College,105821367,1,4376_7778022_100530,4376_181 -4376_82530,267,4376_26002,Community College,106051367,1,4376_7778022_100530,4376_181 -4376_82530,268,4376_26003,Community College,106141367,1,4376_7778022_100530,4376_181 -4376_82530,269,4376_26004,Community College,106231367,1,4376_7778022_100530,4376_181 -4376_82530,259,4376_26005,Community College,105764279,1,4376_7778022_100440,4376_181 -4376_82530,260,4376_26006,Community College,105311417,1,4376_7778022_100550,4376_181 -4376_82530,261,4376_26007,Community College,105321417,1,4376_7778022_100550,4376_181 -4376_82530,262,4376_26008,Community College,105431417,1,4376_7778022_100550,4376_181 -4376_82530,263,4376_26009,Community College,105541417,1,4376_7778022_100550,4376_181 -4289_75964,269,4376_2601,Dundrum Luas,106232232,0,4376_7778022_100182,4376_35 -4376_82530,264,4376_26010,Community College,105651417,1,4376_7778022_100550,4376_181 -4376_82530,265,4376_26011,Community College,105811417,1,4376_7778022_100550,4376_181 -4376_82530,266,4376_26012,Community College,105821417,1,4376_7778022_100550,4376_181 -4376_82530,267,4376_26013,Community College,106051417,1,4376_7778022_100550,4376_181 -4376_82530,268,4376_26014,Community College,106141417,1,4376_7778022_100550,4376_181 -4376_82530,269,4376_26015,Community College,106231417,1,4376_7778022_100550,4376_181 -4376_82530,259,4376_26016,Community College,105764335,1,4376_7778022_100450,4376_181 -4376_82530,270,4376_26017,Community College,105277141,1,4376_7778022_100360,4376_182 -4376_82530,146,4376_26018,Community College,105247141,1,4376_7778022_100360,4376_182 -4376_82530,271,4376_26019,Community College,105237141,1,4376_7778022_100360,4376_182 -4289_75964,260,4376_2602,Dundrum Luas,105312332,0,4376_7778022_104202,4376_35 -4376_82530,115,4376_26020,Community College,105217141,1,4376_7778022_100360,4376_182 -4376_82530,260,4376_26021,Community College,105311479,1,4376_7778022_100520,4376_181 -4376_82530,261,4376_26022,Community College,105321479,1,4376_7778022_100520,4376_181 -4376_82530,262,4376_26023,Community College,105431479,1,4376_7778022_100520,4376_181 -4376_82530,263,4376_26024,Community College,105541479,1,4376_7778022_100520,4376_181 -4376_82530,264,4376_26025,Community College,105651479,1,4376_7778022_100520,4376_181 -4376_82530,265,4376_26026,Community College,105811479,1,4376_7778022_100520,4376_181 -4376_82530,266,4376_26027,Community College,105821479,1,4376_7778022_100520,4376_181 -4376_82530,267,4376_26028,Community College,106051479,1,4376_7778022_100520,4376_181 -4376_82530,268,4376_26029,Community College,106141479,1,4376_7778022_100520,4376_181 -4289_75964,261,4376_2603,Dundrum Luas,105322332,0,4376_7778022_104202,4376_35 -4376_82530,269,4376_26030,Community College,106231479,1,4376_7778022_100520,4376_181 -4376_82530,259,4376_26031,Community College,105764383,1,4376_7778022_100470,4376_181 -4376_82530,270,4376_26032,Community College,105277181,1,4376_7778022_100370,4376_182 -4376_82530,146,4376_26033,Community College,105247181,1,4376_7778022_100370,4376_182 -4376_82530,271,4376_26034,Community College,105237181,1,4376_7778022_100370,4376_182 -4376_82530,115,4376_26035,Community College,105217181,1,4376_7778022_100370,4376_182 -4376_82530,260,4376_26036,Community College,105311531,1,4376_7778022_100570,4376_181 -4376_82530,261,4376_26037,Community College,105321531,1,4376_7778022_100570,4376_181 -4376_82530,262,4376_26038,Community College,105431531,1,4376_7778022_100570,4376_181 -4376_82530,263,4376_26039,Community College,105541531,1,4376_7778022_100570,4376_181 -4289_75964,262,4376_2604,Dundrum Luas,105432332,0,4376_7778022_104202,4376_35 -4376_82530,264,4376_26040,Community College,105651531,1,4376_7778022_100570,4376_181 -4376_82530,265,4376_26041,Community College,105811531,1,4376_7778022_100570,4376_181 -4376_82530,266,4376_26042,Community College,105821531,1,4376_7778022_100570,4376_181 -4376_82530,267,4376_26043,Community College,106051531,1,4376_7778022_100570,4376_181 -4376_82530,268,4376_26044,Community College,106141531,1,4376_7778022_100570,4376_181 -4376_82530,269,4376_26045,Community College,106231531,1,4376_7778022_100570,4376_181 -4376_82530,259,4376_26046,Community College,105764437,1,4376_7778022_100420,4376_181 -4376_82530,270,4376_26047,Community College,105277227,1,4376_7778022_100400,4376_182 -4376_82530,146,4376_26048,Community College,105247227,1,4376_7778022_100400,4376_182 -4376_82530,271,4376_26049,Community College,105237227,1,4376_7778022_100400,4376_182 -4289_75964,263,4376_2605,Dundrum Luas,105542332,0,4376_7778022_104202,4376_35 -4376_82530,115,4376_26050,Community College,105217227,1,4376_7778022_100400,4376_182 -4376_82530,260,4376_26051,Community College,105311587,1,4376_7778022_100580,4376_181 -4376_82530,261,4376_26052,Community College,105321587,1,4376_7778022_100580,4376_181 -4376_82530,262,4376_26053,Community College,105431587,1,4376_7778022_100580,4376_181 -4376_82530,263,4376_26054,Community College,105541587,1,4376_7778022_100580,4376_181 -4376_82530,264,4376_26055,Community College,105651587,1,4376_7778022_100580,4376_181 -4376_82530,265,4376_26056,Community College,105811587,1,4376_7778022_100580,4376_181 -4376_82530,266,4376_26057,Community College,105821587,1,4376_7778022_100580,4376_181 -4376_82530,267,4376_26058,Community College,106051587,1,4376_7778022_100580,4376_181 -4376_82530,268,4376_26059,Community College,106141587,1,4376_7778022_100580,4376_181 -4289_75964,264,4376_2606,Dundrum Luas,105652332,0,4376_7778022_104202,4376_35 -4376_82530,269,4376_26060,Community College,106231587,1,4376_7778022_100580,4376_181 -4376_82530,259,4376_26061,Community College,105764489,1,4376_7778022_100430,4376_181 -4376_82530,270,4376_26062,Community College,105277273,1,4376_7778022_100350,4376_182 -4376_82530,146,4376_26063,Community College,105247273,1,4376_7778022_100350,4376_182 -4376_82530,271,4376_26064,Community College,105237273,1,4376_7778022_100350,4376_182 -4376_82530,115,4376_26065,Community College,105217273,1,4376_7778022_100350,4376_182 -4376_82530,260,4376_26066,Community College,105311637,1,4376_7778022_100540,4376_181 -4376_82530,261,4376_26067,Community College,105321637,1,4376_7778022_100540,4376_181 -4376_82530,262,4376_26068,Community College,105431637,1,4376_7778022_100540,4376_181 -4376_82530,263,4376_26069,Community College,105541637,1,4376_7778022_100540,4376_181 -4289_75964,265,4376_2607,Dundrum Luas,105812332,0,4376_7778022_104202,4376_35 -4376_82530,264,4376_26070,Community College,105651637,1,4376_7778022_100540,4376_181 -4376_82530,265,4376_26071,Community College,105811637,1,4376_7778022_100540,4376_181 -4376_82530,266,4376_26072,Community College,105821637,1,4376_7778022_100540,4376_181 -4376_82530,267,4376_26073,Community College,106051637,1,4376_7778022_100540,4376_181 -4376_82530,268,4376_26074,Community College,106141637,1,4376_7778022_100540,4376_181 -4376_82530,269,4376_26075,Community College,106231637,1,4376_7778022_100540,4376_181 -4376_82530,259,4376_26076,Community College,105764541,1,4376_7778022_100460,4376_181 -4376_82530,270,4376_26077,Community College,105277317,1,4376_7778022_100380,4376_182 -4376_82530,146,4376_26078,Community College,105247317,1,4376_7778022_100380,4376_182 -4376_82530,271,4376_26079,Community College,105237317,1,4376_7778022_100380,4376_182 -4289_75964,266,4376_2608,Dundrum Luas,105822332,0,4376_7778022_104202,4376_35 -4376_82530,115,4376_26080,Community College,105217317,1,4376_7778022_100380,4376_182 -4376_82530,260,4376_26081,Community College,105311697,1,4376_7778022_100530,4376_181 -4376_82530,261,4376_26082,Community College,105321697,1,4376_7778022_100530,4376_181 -4376_82530,262,4376_26083,Community College,105431697,1,4376_7778022_100530,4376_181 -4376_82530,263,4376_26084,Community College,105541697,1,4376_7778022_100530,4376_181 -4376_82530,264,4376_26085,Community College,105651697,1,4376_7778022_100530,4376_181 -4376_82530,265,4376_26086,Community College,105811697,1,4376_7778022_100530,4376_181 -4376_82530,266,4376_26087,Community College,105821697,1,4376_7778022_100530,4376_181 -4376_82530,267,4376_26088,Community College,106051697,1,4376_7778022_100530,4376_181 -4376_82530,268,4376_26089,Community College,106141697,1,4376_7778022_100530,4376_181 -4289_75964,267,4376_2609,Dundrum Luas,106052332,0,4376_7778022_104202,4376_35 -4376_82530,269,4376_26090,Community College,106231697,1,4376_7778022_100530,4376_181 -4376_82530,260,4376_26091,Community College,105311745,1,4376_7778022_100550,4376_181 -4376_82530,261,4376_26092,Community College,105321745,1,4376_7778022_100550,4376_181 -4376_82530,262,4376_26093,Community College,105431745,1,4376_7778022_100550,4376_181 -4376_82530,263,4376_26094,Community College,105541745,1,4376_7778022_100550,4376_181 -4376_82530,264,4376_26095,Community College,105651745,1,4376_7778022_100550,4376_181 -4376_82530,265,4376_26096,Community College,105811745,1,4376_7778022_100550,4376_181 -4376_82530,266,4376_26097,Community College,105821745,1,4376_7778022_100550,4376_181 -4376_82530,267,4376_26098,Community College,106051745,1,4376_7778022_100550,4376_181 -4376_82530,268,4376_26099,Community College,106141745,1,4376_7778022_100550,4376_181 -4289_75960,115,4376_261,Sutton Station,105217578,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2610,Dundrum Luas,106142332,0,4376_7778022_104202,4376_35 -4376_82530,269,4376_26100,Community College,106231745,1,4376_7778022_100550,4376_181 -4376_82530,259,4376_26101,Community College,105764591,1,4376_7778022_100440,4376_182 -4376_82530,270,4376_26102,Community College,105277361,1,4376_7778022_100390,4376_183 -4376_82530,146,4376_26103,Community College,105247361,1,4376_7778022_100390,4376_183 -4376_82530,271,4376_26104,Community College,105237361,1,4376_7778022_100390,4376_183 -4376_82530,115,4376_26105,Community College,105217361,1,4376_7778022_100390,4376_183 -4376_82530,260,4376_26106,Community College,105311805,1,4376_7778022_100520,4376_181 -4376_82530,261,4376_26107,Community College,105321805,1,4376_7778022_100520,4376_181 -4376_82530,262,4376_26108,Community College,105431805,1,4376_7778022_100520,4376_181 -4376_82530,263,4376_26109,Community College,105541805,1,4376_7778022_100520,4376_181 -4289_75964,269,4376_2611,Dundrum Luas,106232332,0,4376_7778022_104202,4376_35 -4376_82530,264,4376_26110,Community College,105651805,1,4376_7778022_100520,4376_181 -4376_82530,265,4376_26111,Community College,105811805,1,4376_7778022_100520,4376_181 -4376_82530,266,4376_26112,Community College,105821805,1,4376_7778022_100520,4376_181 -4376_82530,267,4376_26113,Community College,106051805,1,4376_7778022_100520,4376_181 -4376_82530,268,4376_26114,Community College,106141805,1,4376_7778022_100520,4376_181 -4376_82530,269,4376_26115,Community College,106231805,1,4376_7778022_100520,4376_181 -4376_82530,259,4376_26116,Community College,105764645,1,4376_7778022_100450,4376_182 -4376_82530,270,4376_26117,Community College,105277409,1,4376_7778022_100360,4376_183 -4376_82530,146,4376_26118,Community College,105247409,1,4376_7778022_100360,4376_183 -4376_82530,271,4376_26119,Community College,105237409,1,4376_7778022_100360,4376_183 -4289_75964,260,4376_2612,Dundrum Luas,105312502,0,4376_7778022_104202,4376_35 -4376_82530,115,4376_26120,Community College,105217409,1,4376_7778022_100360,4376_183 -4376_82530,260,4376_26121,Community College,105311859,1,4376_7778022_100570,4376_181 -4376_82530,261,4376_26122,Community College,105321859,1,4376_7778022_100570,4376_181 -4376_82530,262,4376_26123,Community College,105431859,1,4376_7778022_100570,4376_181 -4376_82530,263,4376_26124,Community College,105541859,1,4376_7778022_100570,4376_181 -4376_82530,264,4376_26125,Community College,105651859,1,4376_7778022_100570,4376_181 -4376_82530,265,4376_26126,Community College,105811859,1,4376_7778022_100570,4376_181 -4376_82530,266,4376_26127,Community College,105821859,1,4376_7778022_100570,4376_181 -4376_82530,267,4376_26128,Community College,106051859,1,4376_7778022_100570,4376_181 -4376_82530,268,4376_26129,Community College,106141859,1,4376_7778022_100570,4376_181 -4289_75964,261,4376_2613,Dundrum Luas,105322502,0,4376_7778022_104202,4376_35 -4376_82530,269,4376_26130,Community College,106231859,1,4376_7778022_100570,4376_181 -4376_82530,259,4376_26131,Community College,105764693,1,4376_7778022_100470,4376_182 -4376_82530,270,4376_26132,Community College,105277449,1,4376_7778022_100370,4376_183 -4376_82530,146,4376_26133,Community College,105247449,1,4376_7778022_100370,4376_183 -4376_82530,271,4376_26134,Community College,105237449,1,4376_7778022_100370,4376_183 -4376_82530,115,4376_26135,Community College,105217449,1,4376_7778022_100370,4376_183 -4376_82530,260,4376_26136,Community College,105311919,1,4376_7778022_100580,4376_181 -4376_82530,261,4376_26137,Community College,105321919,1,4376_7778022_100580,4376_181 -4376_82530,262,4376_26138,Community College,105431919,1,4376_7778022_100580,4376_181 -4376_82530,263,4376_26139,Community College,105541919,1,4376_7778022_100580,4376_181 -4289_75964,262,4376_2614,Dundrum Luas,105432502,0,4376_7778022_104202,4376_35 -4376_82530,264,4376_26140,Community College,105651919,1,4376_7778022_100580,4376_181 -4376_82530,265,4376_26141,Community College,105811919,1,4376_7778022_100580,4376_181 -4376_82530,266,4376_26142,Community College,105821919,1,4376_7778022_100580,4376_181 -4376_82530,267,4376_26143,Community College,106051919,1,4376_7778022_100580,4376_181 -4376_82530,268,4376_26144,Community College,106141919,1,4376_7778022_100580,4376_181 -4376_82530,269,4376_26145,Community College,106231919,1,4376_7778022_100580,4376_181 -4376_82530,259,4376_26146,Community College,105764747,1,4376_7778022_100420,4376_182 -4376_82530,270,4376_26147,Community College,105277497,1,4376_7778022_100400,4376_183 -4376_82530,146,4376_26148,Community College,105247497,1,4376_7778022_100400,4376_183 -4376_82530,271,4376_26149,Community College,105237497,1,4376_7778022_100400,4376_183 -4289_75964,263,4376_2615,Dundrum Luas,105542502,0,4376_7778022_104202,4376_35 -4376_82530,115,4376_26150,Community College,105217497,1,4376_7778022_100400,4376_183 -4376_82530,260,4376_26151,Community College,105311969,1,4376_7778022_100540,4376_181 -4376_82530,261,4376_26152,Community College,105321969,1,4376_7778022_100540,4376_181 -4376_82530,262,4376_26153,Community College,105431969,1,4376_7778022_100540,4376_181 -4376_82530,263,4376_26154,Community College,105541969,1,4376_7778022_100540,4376_181 -4376_82530,264,4376_26155,Community College,105651969,1,4376_7778022_100540,4376_181 -4376_82530,265,4376_26156,Community College,105811969,1,4376_7778022_100540,4376_181 -4376_82530,266,4376_26157,Community College,105821969,1,4376_7778022_100540,4376_181 -4376_82530,267,4376_26158,Community College,106051969,1,4376_7778022_100540,4376_181 -4376_82530,268,4376_26159,Community College,106141969,1,4376_7778022_100540,4376_181 -4289_75964,264,4376_2616,Dundrum Luas,105652502,0,4376_7778022_104202,4376_35 -4376_82530,269,4376_26160,Community College,106231969,1,4376_7778022_100540,4376_181 -4376_82530,259,4376_26161,Community College,105764797,1,4376_7778022_100430,4376_182 -4376_82530,270,4376_26162,Community College,105277541,1,4376_7778022_100350,4376_183 -4376_82530,146,4376_26163,Community College,105247541,1,4376_7778022_100350,4376_183 -4376_82530,271,4376_26164,Community College,105237541,1,4376_7778022_100350,4376_183 -4376_82530,115,4376_26165,Community College,105217541,1,4376_7778022_100350,4376_183 -4376_82530,259,4376_26166,Community College,105764849,1,4376_7778022_100460,4376_181 -4376_82530,270,4376_26167,Community College,105277587,1,4376_7778022_100380,4376_182 -4376_82530,146,4376_26168,Community College,105247587,1,4376_7778022_100380,4376_182 -4376_82530,271,4376_26169,Community College,105237587,1,4376_7778022_100380,4376_182 -4289_75964,265,4376_2617,Dundrum Luas,105812502,0,4376_7778022_104202,4376_35 -4376_82530,115,4376_26170,Community College,105217587,1,4376_7778022_100380,4376_182 -4376_82530,260,4376_26171,Community College,105312029,1,4376_7778022_100530,4376_181 -4376_82530,261,4376_26172,Community College,105322029,1,4376_7778022_100530,4376_181 -4376_82530,262,4376_26173,Community College,105432029,1,4376_7778022_100530,4376_181 -4376_82530,263,4376_26174,Community College,105542029,1,4376_7778022_100530,4376_181 -4376_82530,264,4376_26175,Community College,105652029,1,4376_7778022_100530,4376_181 -4376_82530,265,4376_26176,Community College,105812029,1,4376_7778022_100530,4376_181 -4376_82530,266,4376_26177,Community College,105822029,1,4376_7778022_100530,4376_181 -4376_82530,267,4376_26178,Community College,106052029,1,4376_7778022_100530,4376_181 -4376_82530,268,4376_26179,Community College,106142029,1,4376_7778022_100530,4376_181 -4289_75964,266,4376_2618,Dundrum Luas,105822502,0,4376_7778022_104202,4376_35 -4376_82530,269,4376_26180,Community College,106232029,1,4376_7778022_100530,4376_181 -4376_82530,260,4376_26181,Community College,105312087,1,4376_7778022_100550,4376_181 -4376_82530,261,4376_26182,Community College,105322087,1,4376_7778022_100550,4376_181 -4376_82530,262,4376_26183,Community College,105432087,1,4376_7778022_100550,4376_181 -4376_82530,263,4376_26184,Community College,105542087,1,4376_7778022_100550,4376_181 -4376_82530,264,4376_26185,Community College,105652087,1,4376_7778022_100550,4376_181 -4376_82530,265,4376_26186,Community College,105812087,1,4376_7778022_100550,4376_181 -4376_82530,266,4376_26187,Community College,105822087,1,4376_7778022_100550,4376_181 -4376_82530,267,4376_26188,Community College,106052087,1,4376_7778022_100550,4376_181 -4376_82530,268,4376_26189,Community College,106142087,1,4376_7778022_100550,4376_181 -4289_75964,267,4376_2619,Dundrum Luas,106052502,0,4376_7778022_104202,4376_35 -4376_82530,269,4376_26190,Community College,106232087,1,4376_7778022_100550,4376_181 -4376_82530,259,4376_26191,Community College,105764899,1,4376_7778022_100440,4376_182 -4376_82530,270,4376_26192,Community College,105277631,1,4376_7778022_100390,4376_183 -4376_82530,146,4376_26193,Community College,105247631,1,4376_7778022_100390,4376_183 -4376_82530,271,4376_26194,Community College,105237631,1,4376_7778022_100390,4376_183 -4376_82530,115,4376_26195,Community College,105217631,1,4376_7778022_100390,4376_183 -4376_82530,260,4376_26196,Community College,105312155,1,4376_7778022_100520,4376_181 -4376_82530,261,4376_26197,Community College,105322155,1,4376_7778022_100520,4376_181 -4376_82530,262,4376_26198,Community College,105432155,1,4376_7778022_100520,4376_181 -4376_82530,263,4376_26199,Community College,105542155,1,4376_7778022_100520,4376_181 -4289_75960,260,4376_262,Sutton Station,105312098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2620,Dundrum Luas,106142502,0,4376_7778022_104202,4376_35 -4376_82530,264,4376_26200,Community College,105652155,1,4376_7778022_100520,4376_181 -4376_82530,265,4376_26201,Community College,105812155,1,4376_7778022_100520,4376_181 -4376_82530,266,4376_26202,Community College,105822155,1,4376_7778022_100520,4376_181 -4376_82530,267,4376_26203,Community College,106052155,1,4376_7778022_100520,4376_181 -4376_82530,268,4376_26204,Community College,106142155,1,4376_7778022_100520,4376_181 -4376_82530,269,4376_26205,Community College,106232155,1,4376_7778022_100520,4376_181 -4376_82530,259,4376_26206,Community College,105764953,1,4376_7778022_100450,4376_182 -4376_82530,270,4376_26207,Community College,105277679,1,4376_7778022_100360,4376_183 -4376_82530,146,4376_26208,Community College,105247679,1,4376_7778022_100360,4376_183 -4376_82530,271,4376_26209,Community College,105237679,1,4376_7778022_100360,4376_183 -4289_75964,269,4376_2621,Dundrum Luas,106232502,0,4376_7778022_104202,4376_35 -4376_82530,115,4376_26210,Community College,105217679,1,4376_7778022_100360,4376_183 -4376_82530,260,4376_26211,Community College,105312235,1,4376_7778022_100590,4376_181 -4376_82530,261,4376_26212,Community College,105322235,1,4376_7778022_100590,4376_181 -4376_82530,262,4376_26213,Community College,105432235,1,4376_7778022_100590,4376_181 -4376_82530,263,4376_26214,Community College,105542235,1,4376_7778022_100590,4376_181 -4376_82530,264,4376_26215,Community College,105652235,1,4376_7778022_100590,4376_181 -4376_82530,265,4376_26216,Community College,105812235,1,4376_7778022_100590,4376_181 -4376_82530,266,4376_26217,Community College,105822235,1,4376_7778022_100590,4376_181 -4376_82530,267,4376_26218,Community College,106052235,1,4376_7778022_100590,4376_181 -4376_82530,268,4376_26219,Community College,106142235,1,4376_7778022_100590,4376_181 -4289_75964,260,4376_2622,Rockbrook,105311291,1,4376_7778022_100181,4376_36 -4376_82530,269,4376_26220,Community College,106232235,1,4376_7778022_100590,4376_181 -4376_82530,259,4376_26221,Community College,105765001,1,4376_7778022_100470,4376_182 -4376_82530,270,4376_26222,Community College,105277721,1,4376_7778022_100370,4376_183 -4376_82530,146,4376_26223,Community College,105247721,1,4376_7778022_100370,4376_183 -4376_82530,271,4376_26224,Community College,105237721,1,4376_7778022_100370,4376_183 -4376_82530,115,4376_26225,Community College,105217721,1,4376_7778022_100370,4376_183 -4376_82530,260,4376_26226,Community College,105312305,1,4376_7778022_100570,4376_181 -4376_82530,261,4376_26227,Community College,105322305,1,4376_7778022_100570,4376_181 -4376_82530,262,4376_26228,Community College,105432305,1,4376_7778022_100570,4376_181 -4376_82530,263,4376_26229,Community College,105542305,1,4376_7778022_100570,4376_181 -4289_75964,261,4376_2623,Rockbrook,105321291,1,4376_7778022_100181,4376_36 -4376_82530,264,4376_26230,Community College,105652305,1,4376_7778022_100570,4376_181 -4376_82530,265,4376_26231,Community College,105812305,1,4376_7778022_100570,4376_181 -4376_82530,266,4376_26232,Community College,105822305,1,4376_7778022_100570,4376_181 -4376_82530,267,4376_26233,Community College,106052305,1,4376_7778022_100570,4376_181 -4376_82530,268,4376_26234,Community College,106142305,1,4376_7778022_100570,4376_181 -4376_82530,269,4376_26235,Community College,106232305,1,4376_7778022_100570,4376_181 -4376_82530,259,4376_26236,Community College,105765055,1,4376_7778022_100420,4376_182 -4376_82530,270,4376_26237,Community College,105277769,1,4376_7778022_100400,4376_183 -4376_82530,146,4376_26238,Community College,105247769,1,4376_7778022_100400,4376_183 -4376_82530,271,4376_26239,Community College,105237769,1,4376_7778022_100400,4376_183 -4289_75964,262,4376_2624,Rockbrook,105431291,1,4376_7778022_100181,4376_36 -4376_82530,115,4376_26240,Community College,105217769,1,4376_7778022_100400,4376_183 -4376_82530,260,4376_26241,Community College,105312359,1,4376_7778022_100580,4376_181 -4376_82530,261,4376_26242,Community College,105322359,1,4376_7778022_100580,4376_181 -4376_82530,262,4376_26243,Community College,105432359,1,4376_7778022_100580,4376_181 -4376_82530,263,4376_26244,Community College,105542359,1,4376_7778022_100580,4376_181 -4376_82530,264,4376_26245,Community College,105652359,1,4376_7778022_100580,4376_181 -4376_82530,265,4376_26246,Community College,105812359,1,4376_7778022_100580,4376_181 -4376_82530,266,4376_26247,Community College,105822359,1,4376_7778022_100580,4376_181 -4376_82530,267,4376_26248,Community College,106052359,1,4376_7778022_100580,4376_181 -4376_82530,268,4376_26249,Community College,106142359,1,4376_7778022_100580,4376_181 -4289_75964,263,4376_2625,Rockbrook,105541291,1,4376_7778022_100181,4376_36 -4376_82530,269,4376_26250,Community College,106232359,1,4376_7778022_100580,4376_181 -4376_82530,259,4376_26251,Community College,105765105,1,4376_7778022_100430,4376_182 -4376_82530,270,4376_26252,Community College,105277813,1,4376_7778022_100350,4376_183 -4376_82530,146,4376_26253,Community College,105247813,1,4376_7778022_100350,4376_183 -4376_82530,271,4376_26254,Community College,105237813,1,4376_7778022_100350,4376_183 -4376_82530,115,4376_26255,Community College,105217813,1,4376_7778022_100350,4376_183 -4376_82530,260,4376_26256,Community College,105312421,1,4376_7778022_100540,4376_181 -4376_82530,261,4376_26257,Community College,105322421,1,4376_7778022_100540,4376_181 -4376_82530,262,4376_26258,Community College,105432421,1,4376_7778022_100540,4376_181 -4376_82530,263,4376_26259,Community College,105542421,1,4376_7778022_100540,4376_181 -4289_75964,264,4376_2626,Rockbrook,105651291,1,4376_7778022_100181,4376_36 -4376_82530,264,4376_26260,Community College,105652421,1,4376_7778022_100540,4376_181 -4376_82530,265,4376_26261,Community College,105812421,1,4376_7778022_100540,4376_181 -4376_82530,266,4376_26262,Community College,105822421,1,4376_7778022_100540,4376_181 -4376_82530,267,4376_26263,Community College,106052421,1,4376_7778022_100540,4376_181 -4376_82530,268,4376_26264,Community College,106142421,1,4376_7778022_100540,4376_181 -4376_82530,269,4376_26265,Community College,106232421,1,4376_7778022_100540,4376_181 -4376_82530,259,4376_26266,Community College,105765153,1,4376_7778022_100460,4376_182 -4376_82530,270,4376_26267,Community College,105277857,1,4376_7778022_100380,4376_183 -4376_82530,146,4376_26268,Community College,105247857,1,4376_7778022_100380,4376_183 -4376_82530,271,4376_26269,Community College,105237857,1,4376_7778022_100380,4376_183 -4289_75964,265,4376_2627,Rockbrook,105811291,1,4376_7778022_100181,4376_36 -4376_82530,115,4376_26270,Community College,105217857,1,4376_7778022_100380,4376_183 -4376_82530,260,4376_26271,Community College,105312475,1,4376_7778022_100562,4376_181 -4376_82530,261,4376_26272,Community College,105322475,1,4376_7778022_100562,4376_181 -4376_82530,262,4376_26273,Community College,105432475,1,4376_7778022_100562,4376_181 -4376_82530,263,4376_26274,Community College,105542475,1,4376_7778022_100562,4376_181 -4376_82530,264,4376_26275,Community College,105652475,1,4376_7778022_100562,4376_181 -4376_82530,265,4376_26276,Community College,105812475,1,4376_7778022_100562,4376_181 -4376_82530,266,4376_26277,Community College,105822475,1,4376_7778022_100562,4376_181 -4376_82530,267,4376_26278,Community College,106052475,1,4376_7778022_100562,4376_181 -4376_82530,268,4376_26279,Community College,106142475,1,4376_7778022_100562,4376_181 -4289_75964,266,4376_2628,Rockbrook,105821291,1,4376_7778022_100181,4376_36 -4376_82530,269,4376_26280,Community College,106232475,1,4376_7778022_100562,4376_181 -4376_82530,259,4376_26281,Community College,105765203,1,4376_7778022_100440,4376_182 -4376_82530,270,4376_26282,Community College,105277901,1,4376_7778022_100390,4376_183 -4376_82530,146,4376_26283,Community College,105247901,1,4376_7778022_100390,4376_183 -4376_82530,271,4376_26284,Community College,105237901,1,4376_7778022_100390,4376_183 -4376_82530,115,4376_26285,Community College,105217901,1,4376_7778022_100390,4376_183 -4376_82530,260,4376_26286,Community College,105312535,1,4376_7778022_100530,4376_181 -4376_82530,261,4376_26287,Community College,105322535,1,4376_7778022_100530,4376_181 -4376_82530,262,4376_26288,Community College,105432535,1,4376_7778022_100530,4376_181 -4376_82530,263,4376_26289,Community College,105542535,1,4376_7778022_100530,4376_181 -4289_75964,267,4376_2629,Rockbrook,106051291,1,4376_7778022_100181,4376_36 -4376_82530,264,4376_26290,Community College,105652535,1,4376_7778022_100530,4376_181 -4376_82530,265,4376_26291,Community College,105812535,1,4376_7778022_100530,4376_181 -4376_82530,266,4376_26292,Community College,105822535,1,4376_7778022_100530,4376_181 -4376_82530,267,4376_26293,Community College,106052535,1,4376_7778022_100530,4376_181 -4376_82530,268,4376_26294,Community College,106142535,1,4376_7778022_100530,4376_181 -4376_82530,269,4376_26295,Community College,106232535,1,4376_7778022_100530,4376_181 -4376_82530,259,4376_26296,Community College,105765255,1,4376_7778022_100450,4376_182 -4376_82530,270,4376_26297,Community College,105277949,1,4376_7778022_100360,4376_183 -4376_82530,146,4376_26298,Community College,105247949,1,4376_7778022_100360,4376_183 -4376_82530,271,4376_26299,Community College,105237949,1,4376_7778022_100360,4376_183 -4289_75960,261,4376_263,Sutton Station,105322098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2630,Rockbrook,106141291,1,4376_7778022_100181,4376_36 -4376_82530,115,4376_26300,Community College,105217949,1,4376_7778022_100360,4376_183 -4376_82530,260,4376_26301,Community College,105312587,1,4376_7778022_100520,4376_181 -4376_82530,261,4376_26302,Community College,105322587,1,4376_7778022_100520,4376_181 -4376_82530,262,4376_26303,Community College,105432587,1,4376_7778022_100520,4376_181 -4376_82530,263,4376_26304,Community College,105542587,1,4376_7778022_100520,4376_181 -4376_82530,264,4376_26305,Community College,105652587,1,4376_7778022_100520,4376_181 -4376_82530,265,4376_26306,Community College,105812587,1,4376_7778022_100520,4376_181 -4376_82530,266,4376_26307,Community College,105822587,1,4376_7778022_100520,4376_181 -4376_82530,267,4376_26308,Community College,106052587,1,4376_7778022_100520,4376_181 -4376_82530,268,4376_26309,Community College,106142587,1,4376_7778022_100520,4376_181 -4289_75964,269,4376_2631,Rockbrook,106231291,1,4376_7778022_100181,4376_36 -4376_82530,269,4376_26310,Community College,106232587,1,4376_7778022_100520,4376_181 -4376_82530,259,4376_26311,Community College,105765295,1,4376_7778022_100470,4376_182 -4376_82530,270,4376_26312,Community College,105277987,1,4376_7778022_100370,4376_183 -4376_82530,146,4376_26313,Community College,105247987,1,4376_7778022_100370,4376_183 -4376_82530,271,4376_26314,Community College,105237987,1,4376_7778022_100370,4376_183 -4376_82530,115,4376_26315,Community College,105217987,1,4376_7778022_100370,4376_183 -4376_82530,260,4376_26316,Community College,105312639,1,4376_7778022_100590,4376_181 -4376_82530,261,4376_26317,Community College,105322639,1,4376_7778022_100590,4376_181 -4376_82530,262,4376_26318,Community College,105432639,1,4376_7778022_100590,4376_181 -4376_82530,263,4376_26319,Community College,105542639,1,4376_7778022_100590,4376_181 -4289_75964,260,4376_2632,Rockbrook,105311491,1,4376_7778022_100181,4376_36 -4376_82530,264,4376_26320,Community College,105652639,1,4376_7778022_100590,4376_181 -4376_82530,265,4376_26321,Community College,105812639,1,4376_7778022_100590,4376_181 -4376_82530,266,4376_26322,Community College,105822639,1,4376_7778022_100590,4376_181 -4376_82530,267,4376_26323,Community College,106052639,1,4376_7778022_100590,4376_181 -4376_82530,268,4376_26324,Community College,106142639,1,4376_7778022_100590,4376_181 -4376_82530,269,4376_26325,Community College,106232639,1,4376_7778022_100590,4376_181 -4376_82530,259,4376_26326,Community College,105765347,1,4376_7778022_100420,4376_182 -4376_82530,270,4376_26327,Community College,105278029,1,4376_7778022_100400,4376_183 -4376_82530,146,4376_26328,Community College,105248029,1,4376_7778022_100400,4376_183 -4376_82530,271,4376_26329,Community College,105238029,1,4376_7778022_100400,4376_183 -4289_75964,261,4376_2633,Rockbrook,105321491,1,4376_7778022_100181,4376_36 -4376_82530,115,4376_26330,Community College,105218029,1,4376_7778022_100400,4376_183 -4376_82530,260,4376_26331,Community College,105312683,1,4376_7778022_100570,4376_181 -4376_82530,261,4376_26332,Community College,105322683,1,4376_7778022_100570,4376_181 -4376_82530,262,4376_26333,Community College,105432683,1,4376_7778022_100570,4376_181 -4376_82530,263,4376_26334,Community College,105542683,1,4376_7778022_100570,4376_181 -4376_82530,264,4376_26335,Community College,105652683,1,4376_7778022_100570,4376_181 -4376_82530,265,4376_26336,Community College,105812683,1,4376_7778022_100570,4376_181 -4376_82530,266,4376_26337,Community College,105822683,1,4376_7778022_100570,4376_181 -4376_82530,267,4376_26338,Community College,106052683,1,4376_7778022_100570,4376_181 -4376_82530,268,4376_26339,Community College,106142683,1,4376_7778022_100570,4376_181 -4289_75964,262,4376_2634,Rockbrook,105431491,1,4376_7778022_100181,4376_36 -4376_82530,269,4376_26340,Community College,106232683,1,4376_7778022_100570,4376_181 -4376_82530,259,4376_26341,Community College,105765387,1,4376_7778022_100430,4376_182 -4376_82530,270,4376_26342,Community College,105278069,1,4376_7778022_100350,4376_183 -4376_82530,146,4376_26343,Community College,105248069,1,4376_7778022_100350,4376_183 -4376_82530,271,4376_26344,Community College,105238069,1,4376_7778022_100350,4376_183 -4376_82530,115,4376_26345,Community College,105218069,1,4376_7778022_100350,4376_183 -4376_82530,260,4376_26346,Community College,105312735,1,4376_7778022_100580,4376_181 -4376_82530,261,4376_26347,Community College,105322735,1,4376_7778022_100580,4376_181 -4376_82530,262,4376_26348,Community College,105432735,1,4376_7778022_100580,4376_181 -4376_82530,263,4376_26349,Community College,105542735,1,4376_7778022_100580,4376_181 -4289_75964,263,4376_2635,Rockbrook,105541491,1,4376_7778022_100181,4376_36 -4376_82530,264,4376_26350,Community College,105652735,1,4376_7778022_100580,4376_181 -4376_82530,265,4376_26351,Community College,105812735,1,4376_7778022_100580,4376_181 -4376_82530,266,4376_26352,Community College,105822735,1,4376_7778022_100580,4376_181 -4376_82530,267,4376_26353,Community College,106052735,1,4376_7778022_100580,4376_181 -4376_82530,268,4376_26354,Community College,106142735,1,4376_7778022_100580,4376_181 -4376_82530,269,4376_26355,Community College,106232735,1,4376_7778022_100580,4376_181 -4376_82530,259,4376_26356,Community College,105765435,1,4376_7778022_100460,4376_182 -4376_82530,270,4376_26357,Community College,105278109,1,4376_7778022_100380,4376_183 -4376_82530,146,4376_26358,Community College,105248109,1,4376_7778022_100380,4376_183 -4376_82530,271,4376_26359,Community College,105238109,1,4376_7778022_100380,4376_183 -4289_75964,264,4376_2636,Rockbrook,105651491,1,4376_7778022_100181,4376_36 -4376_82530,115,4376_26360,Community College,105218109,1,4376_7778022_100380,4376_183 -4376_82530,260,4376_26361,Community College,105312781,1,4376_7778022_100562,4376_181 -4376_82530,261,4376_26362,Community College,105322781,1,4376_7778022_100562,4376_181 -4376_82530,262,4376_26363,Community College,105432781,1,4376_7778022_100562,4376_181 -4376_82530,263,4376_26364,Community College,105542781,1,4376_7778022_100562,4376_181 -4376_82530,264,4376_26365,Community College,105652781,1,4376_7778022_100562,4376_181 -4376_82530,265,4376_26366,Community College,105812781,1,4376_7778022_100562,4376_181 -4376_82530,266,4376_26367,Community College,105822781,1,4376_7778022_100562,4376_181 -4376_82530,267,4376_26368,Community College,106052781,1,4376_7778022_100562,4376_181 -4376_82530,268,4376_26369,Community College,106142781,1,4376_7778022_100562,4376_181 -4289_75964,265,4376_2637,Rockbrook,105811491,1,4376_7778022_100181,4376_36 -4376_82530,269,4376_26370,Community College,106232781,1,4376_7778022_100562,4376_181 -4376_82530,259,4376_26371,Community College,105765475,1,4376_7778022_100440,4376_182 -4376_82530,270,4376_26372,Community College,105278147,1,4376_7778022_100390,4376_183 -4376_82530,146,4376_26373,Community College,105248147,1,4376_7778022_100390,4376_183 -4376_82530,271,4376_26374,Community College,105238147,1,4376_7778022_100390,4376_183 -4376_82530,115,4376_26375,Community College,105218147,1,4376_7778022_100390,4376_183 -4376_82530,260,4376_26376,Community College,105312833,1,4376_7778022_100530,4376_181 -4376_82530,261,4376_26377,Community College,105322833,1,4376_7778022_100530,4376_181 -4376_82530,262,4376_26378,Community College,105432833,1,4376_7778022_100530,4376_181 -4376_82530,263,4376_26379,Community College,105542833,1,4376_7778022_100530,4376_181 -4289_75964,266,4376_2638,Rockbrook,105821491,1,4376_7778022_100181,4376_36 -4376_82530,264,4376_26380,Community College,105652833,1,4376_7778022_100530,4376_181 -4376_82530,265,4376_26381,Community College,105812833,1,4376_7778022_100530,4376_181 -4376_82530,266,4376_26382,Community College,105822833,1,4376_7778022_100530,4376_181 -4376_82530,267,4376_26383,Community College,106052833,1,4376_7778022_100530,4376_181 -4376_82530,268,4376_26384,Community College,106142833,1,4376_7778022_100530,4376_181 -4376_82530,269,4376_26385,Community College,106232833,1,4376_7778022_100530,4376_181 -4376_82530,259,4376_26386,Community College,105765523,1,4376_7778022_100450,4376_182 -4376_82530,270,4376_26387,Community College,105278189,1,4376_7778022_100360,4376_183 -4376_82530,146,4376_26388,Community College,105248189,1,4376_7778022_100360,4376_183 -4376_82530,271,4376_26389,Community College,105238189,1,4376_7778022_100360,4376_183 -4289_75964,267,4376_2639,Rockbrook,106051491,1,4376_7778022_100181,4376_36 -4376_82530,115,4376_26390,Community College,105218189,1,4376_7778022_100360,4376_183 -4376_82530,260,4376_26391,Community College,105312875,1,4376_7778022_100590,4376_181 -4376_82530,261,4376_26392,Community College,105322875,1,4376_7778022_100590,4376_181 -4376_82530,262,4376_26393,Community College,105432875,1,4376_7778022_100590,4376_181 -4376_82530,263,4376_26394,Community College,105542875,1,4376_7778022_100590,4376_181 -4376_82530,264,4376_26395,Community College,105652875,1,4376_7778022_100590,4376_181 -4376_82530,265,4376_26396,Community College,105812875,1,4376_7778022_100590,4376_181 -4376_82530,266,4376_26397,Community College,105822875,1,4376_7778022_100590,4376_181 -4376_82530,267,4376_26398,Community College,106052875,1,4376_7778022_100590,4376_181 -4376_82530,268,4376_26399,Community College,106142875,1,4376_7778022_100590,4376_181 -4289_75960,262,4376_264,Sutton Station,105432098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2640,Rockbrook,106141491,1,4376_7778022_100181,4376_36 -4376_82530,269,4376_26400,Community College,106232875,1,4376_7778022_100590,4376_181 -4376_82530,259,4376_26401,Community College,105765559,1,4376_7778022_100470,4376_182 -4376_82530,270,4376_26402,Community College,105278225,1,4376_7778022_100370,4376_183 -4376_82530,146,4376_26403,Community College,105248225,1,4376_7778022_100370,4376_183 -4376_82530,271,4376_26404,Community College,105238225,1,4376_7778022_100370,4376_183 -4376_82530,115,4376_26405,Community College,105218225,1,4376_7778022_100370,4376_183 -4376_82530,260,4376_26406,Community College,105312927,1,4376_7778022_100570,4376_181 -4376_82530,261,4376_26407,Community College,105322927,1,4376_7778022_100570,4376_181 -4376_82530,262,4376_26408,Community College,105432927,1,4376_7778022_100570,4376_181 -4376_82530,263,4376_26409,Community College,105542927,1,4376_7778022_100570,4376_181 -4289_75964,269,4376_2641,Rockbrook,106231491,1,4376_7778022_100181,4376_36 -4376_82530,264,4376_26410,Community College,105652927,1,4376_7778022_100570,4376_181 -4376_82530,265,4376_26411,Community College,105812927,1,4376_7778022_100570,4376_181 -4376_82530,266,4376_26412,Community College,105822927,1,4376_7778022_100570,4376_181 -4376_82530,267,4376_26413,Community College,106052927,1,4376_7778022_100570,4376_181 -4376_82530,268,4376_26414,Community College,106142927,1,4376_7778022_100570,4376_181 -4376_82530,269,4376_26415,Community College,106232927,1,4376_7778022_100570,4376_181 -4376_82530,259,4376_26416,Community College,105765607,1,4376_7778022_100420,4376_182 -4376_82530,270,4376_26417,Community College,105278265,1,4376_7778022_100400,4376_183 -4376_82530,146,4376_26418,Community College,105248265,1,4376_7778022_100400,4376_183 -4376_82530,271,4376_26419,Community College,105238265,1,4376_7778022_100400,4376_183 -4289_75964,260,4376_2642,Rockbrook,105311655,1,4376_7778022_104201,4376_36 -4376_82530,115,4376_26420,Community College,105218265,1,4376_7778022_100400,4376_183 -4376_82530,260,4376_26421,Community College,105312999,1,4376_7778022_100562,4376_181 -4376_82530,261,4376_26422,Community College,105322999,1,4376_7778022_100562,4376_181 -4376_82530,262,4376_26423,Community College,105432999,1,4376_7778022_100562,4376_181 -4376_82530,263,4376_26424,Community College,105542999,1,4376_7778022_100562,4376_181 -4376_82530,264,4376_26425,Community College,105652999,1,4376_7778022_100562,4376_181 -4376_82530,265,4376_26426,Community College,105812999,1,4376_7778022_100562,4376_181 -4376_82530,266,4376_26427,Community College,105822999,1,4376_7778022_100562,4376_181 -4376_82530,267,4376_26428,Community College,106052999,1,4376_7778022_100562,4376_181 -4376_82530,268,4376_26429,Community College,106142999,1,4376_7778022_100562,4376_181 -4289_75964,261,4376_2643,Rockbrook,105321655,1,4376_7778022_104201,4376_36 -4376_82530,269,4376_26430,Community College,106232999,1,4376_7778022_100562,4376_181 -4376_82530,259,4376_26431,Community College,105765675,1,4376_7778022_100460,4376_182 -4376_82530,270,4376_26432,Community College,105278329,1,4376_7778022_100380,4376_182 -4376_82530,146,4376_26433,Community College,105248329,1,4376_7778022_100380,4376_182 -4376_82530,271,4376_26434,Community College,105238329,1,4376_7778022_100380,4376_182 -4376_82530,115,4376_26435,Community College,105218329,1,4376_7778022_100380,4376_182 -4289_75964,262,4376_2644,Rockbrook,105431655,1,4376_7778022_104201,4376_36 -4289_75964,263,4376_2645,Rockbrook,105541655,1,4376_7778022_104201,4376_36 -4289_75964,264,4376_2646,Rockbrook,105651655,1,4376_7778022_104201,4376_36 -4289_75964,265,4376_2647,Rockbrook,105811655,1,4376_7778022_104201,4376_36 -4289_75964,266,4376_2648,Rockbrook,105821655,1,4376_7778022_104201,4376_36 -4289_75964,267,4376_2649,Rockbrook,106051655,1,4376_7778022_104201,4376_36 -4289_75960,263,4376_265,Sutton Station,105542098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2650,Rockbrook,106141655,1,4376_7778022_104201,4376_36 -4289_75964,269,4376_2651,Rockbrook,106231655,1,4376_7778022_104201,4376_36 -4289_75964,260,4376_2652,Rockbrook,105311819,1,4376_7778022_104201,4376_36 -4289_75964,261,4376_2653,Rockbrook,105321819,1,4376_7778022_104201,4376_36 -4289_75964,262,4376_2654,Rockbrook,105431819,1,4376_7778022_104201,4376_36 -4289_75964,263,4376_2655,Rockbrook,105541819,1,4376_7778022_104201,4376_36 -4289_75964,264,4376_2656,Rockbrook,105651819,1,4376_7778022_104201,4376_36 -4289_75964,265,4376_2657,Rockbrook,105811819,1,4376_7778022_104201,4376_36 -4289_75964,266,4376_2658,Rockbrook,105821819,1,4376_7778022_104201,4376_36 -4289_75964,267,4376_2659,Rockbrook,106051819,1,4376_7778022_104201,4376_36 -4289_75960,264,4376_266,Sutton Station,105652098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2660,Rockbrook,106141819,1,4376_7778022_104201,4376_36 -4289_75964,269,4376_2661,Rockbrook,106231819,1,4376_7778022_104201,4376_36 -4289_75964,260,4376_2662,Rockbrook,105311989,1,4376_7778022_100182,4376_36 -4289_75964,261,4376_2663,Rockbrook,105321989,1,4376_7778022_100182,4376_36 -4289_75964,262,4376_2664,Rockbrook,105431989,1,4376_7778022_100182,4376_36 -4289_75964,263,4376_2665,Rockbrook,105541989,1,4376_7778022_100182,4376_36 -4289_75964,264,4376_2666,Rockbrook,105651989,1,4376_7778022_100182,4376_36 -4289_75964,265,4376_2667,Rockbrook,105811989,1,4376_7778022_100182,4376_36 -4289_75964,266,4376_2668,Rockbrook,105821989,1,4376_7778022_100182,4376_36 -4289_75964,267,4376_2669,Rockbrook,106051989,1,4376_7778022_100182,4376_36 -4289_75960,265,4376_267,Sutton Station,105812098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2670,Rockbrook,106141989,1,4376_7778022_100182,4376_36 -4289_75964,269,4376_2671,Rockbrook,106231989,1,4376_7778022_100182,4376_36 -4289_75964,260,4376_2672,Rockbrook,105312183,1,4376_7778022_104202,4376_36 -4289_75964,261,4376_2673,Rockbrook,105322183,1,4376_7778022_104202,4376_36 -4289_75964,262,4376_2674,Rockbrook,105432183,1,4376_7778022_104202,4376_36 -4289_75964,263,4376_2675,Rockbrook,105542183,1,4376_7778022_104202,4376_36 -4289_75964,264,4376_2676,Rockbrook,105652183,1,4376_7778022_104202,4376_36 -4289_75964,265,4376_2677,Rockbrook,105812183,1,4376_7778022_104202,4376_36 -4289_75964,266,4376_2678,Rockbrook,105822183,1,4376_7778022_104202,4376_36 -4289_75964,267,4376_2679,Rockbrook,106052183,1,4376_7778022_104202,4376_36 -4289_75960,266,4376_268,Sutton Station,105822098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2680,Rockbrook,106142183,1,4376_7778022_104202,4376_36 -4289_75964,269,4376_2681,Rockbrook,106232183,1,4376_7778022_104202,4376_36 -4289_75964,260,4376_2682,Rockbrook,105312381,1,4376_7778022_104202,4376_36 -4289_75964,261,4376_2683,Rockbrook,105322381,1,4376_7778022_104202,4376_36 -4289_75964,262,4376_2684,Rockbrook,105432381,1,4376_7778022_104202,4376_36 -4289_75964,263,4376_2685,Rockbrook,105542381,1,4376_7778022_104202,4376_36 -4289_75964,264,4376_2686,Rockbrook,105652381,1,4376_7778022_104202,4376_36 -4289_75964,265,4376_2687,Rockbrook,105812381,1,4376_7778022_104202,4376_36 -4289_75964,266,4376_2688,Rockbrook,105822381,1,4376_7778022_104202,4376_36 -4289_75964,267,4376_2689,Rockbrook,106052381,1,4376_7778022_104202,4376_36 -4289_75960,267,4376_269,Sutton Station,106052098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2690,Rockbrook,106142381,1,4376_7778022_104202,4376_36 -4289_75964,269,4376_2691,Rockbrook,106232381,1,4376_7778022_104202,4376_36 -4289_75964,260,4376_2692,Rockbrook,105312479,1,4376_7778022_100183,4376_36 -4289_75964,261,4376_2693,Rockbrook,105322479,1,4376_7778022_100183,4376_36 -4289_75964,262,4376_2694,Rockbrook,105432479,1,4376_7778022_100183,4376_36 -4289_75964,263,4376_2695,Rockbrook,105542479,1,4376_7778022_100183,4376_36 -4289_75964,264,4376_2696,Rockbrook,105652479,1,4376_7778022_100183,4376_36 -4289_75964,265,4376_2697,Rockbrook,105812479,1,4376_7778022_100183,4376_36 -4289_75964,266,4376_2698,Rockbrook,105822479,1,4376_7778022_100183,4376_36 -4289_75964,267,4376_2699,Rockbrook,106052479,1,4376_7778022_100183,4376_36 -4289_75960,264,4376_27,Sutton Station,105651106,0,4376_7778022_103108,4376_1 -4289_75960,268,4376_270,Sutton Station,106142098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2700,Rockbrook,106142479,1,4376_7778022_100183,4376_36 -4289_75964,269,4376_2701,Rockbrook,106232479,1,4376_7778022_100183,4376_36 -4289_75964,260,4376_2702,Rockbrook,105312549,1,4376_7778022_104202,4376_36 -4289_75964,261,4376_2703,Rockbrook,105322549,1,4376_7778022_104202,4376_36 -4289_75964,262,4376_2704,Rockbrook,105432549,1,4376_7778022_104202,4376_36 -4289_75964,263,4376_2705,Rockbrook,105542549,1,4376_7778022_104202,4376_36 -4289_75964,264,4376_2706,Rockbrook,105652549,1,4376_7778022_104202,4376_36 -4289_75964,265,4376_2707,Rockbrook,105812549,1,4376_7778022_104202,4376_36 -4289_75964,266,4376_2708,Rockbrook,105822549,1,4376_7778022_104202,4376_36 -4289_75964,267,4376_2709,Rockbrook,106052549,1,4376_7778022_104202,4376_36 -4289_75960,269,4376_271,Sutton Station,106232098,0,4376_7778022_103108,4376_1 -4289_75964,268,4376_2710,Rockbrook,106142549,1,4376_7778022_104202,4376_36 -4289_75964,269,4376_2711,Rockbrook,106232549,1,4376_7778022_104202,4376_36 -4289_75965,260,4376_2712,Bray Station,105311068,0,4376_7778022_104021,4376_37 -4289_75965,261,4376_2713,Bray Station,105321068,0,4376_7778022_104021,4376_37 -4289_75965,262,4376_2714,Bray Station,105431068,0,4376_7778022_104021,4376_37 -4289_75965,263,4376_2715,Bray Station,105541068,0,4376_7778022_104021,4376_37 -4289_75965,264,4376_2716,Bray Station,105651068,0,4376_7778022_104021,4376_37 -4289_75965,265,4376_2717,Bray Station,105811068,0,4376_7778022_104021,4376_37 -4289_75965,266,4376_2718,Bray Station,105821068,0,4376_7778022_104021,4376_37 -4289_75965,267,4376_2719,Bray Station,106051068,0,4376_7778022_104021,4376_37 -4289_75960,259,4376_272,Sutton Station,105764882,0,4376_7778022_103108,4376_2 -4289_75965,268,4376_2720,Bray Station,106141068,0,4376_7778022_104021,4376_37 -4289_75965,269,4376_2721,Bray Station,106231068,0,4376_7778022_104021,4376_37 -4289_75965,259,4376_2722,Bray Station,105764052,0,4376_7778022_104031,4376_37 -4289_75965,260,4376_2723,Bray Station,105311136,0,4376_7778022_104050,4376_37 -4289_75965,261,4376_2724,Bray Station,105321136,0,4376_7778022_104050,4376_37 -4289_75965,262,4376_2725,Bray Station,105431136,0,4376_7778022_104050,4376_37 -4289_75965,263,4376_2726,Bray Station,105541136,0,4376_7778022_104050,4376_37 -4289_75965,264,4376_2727,Bray Station,105651136,0,4376_7778022_104050,4376_37 -4289_75965,265,4376_2728,Bray Station,105811136,0,4376_7778022_104050,4376_37 -4289_75965,266,4376_2729,Bray Station,105821136,0,4376_7778022_104050,4376_37 -4289_75960,270,4376_273,Sutton Station,105277622,0,4376_7778022_103102,4376_1 -4289_75965,267,4376_2730,Bray Station,106051136,0,4376_7778022_104050,4376_37 -4289_75965,268,4376_2731,Bray Station,106141136,0,4376_7778022_104050,4376_37 -4289_75965,269,4376_2732,Bray Station,106231136,0,4376_7778022_104050,4376_37 -4289_75965,259,4376_2733,Bray Station,105764096,0,4376_7778022_104041,4376_37 -4289_75965,260,4376_2734,Bray Station,105311188,0,4376_7778022_100171,4376_37 -4289_75965,261,4376_2735,Bray Station,105321188,0,4376_7778022_100171,4376_37 -4289_75965,262,4376_2736,Bray Station,105431188,0,4376_7778022_100171,4376_37 -4289_75965,263,4376_2737,Bray Station,105541188,0,4376_7778022_100171,4376_37 -4289_75965,264,4376_2738,Bray Station,105651188,0,4376_7778022_100171,4376_37 -4289_75965,265,4376_2739,Bray Station,105811188,0,4376_7778022_100171,4376_37 -4289_75960,146,4376_274,Sutton Station,105247622,0,4376_7778022_103102,4376_1 -4289_75965,266,4376_2740,Bray Station,105821188,0,4376_7778022_100171,4376_37 -4289_75965,267,4376_2741,Bray Station,106051188,0,4376_7778022_100171,4376_37 -4289_75965,268,4376_2742,Bray Station,106141188,0,4376_7778022_100171,4376_37 -4289_75965,269,4376_2743,Bray Station,106231188,0,4376_7778022_100171,4376_37 -4289_75965,259,4376_2744,Bray Station,105764136,0,4376_7778022_104011,4376_37 -4289_75965,260,4376_2745,Bray Station,105311286,0,4376_7778022_104101,4376_37 -4289_75965,261,4376_2746,Bray Station,105321286,0,4376_7778022_104101,4376_37 -4289_75965,262,4376_2747,Bray Station,105431286,0,4376_7778022_104101,4376_37 -4289_75965,263,4376_2748,Bray Station,105541286,0,4376_7778022_104101,4376_37 -4289_75965,264,4376_2749,Bray Station,105651286,0,4376_7778022_104101,4376_37 -4289_75960,271,4376_275,Sutton Station,105237622,0,4376_7778022_103102,4376_1 -4289_75965,265,4376_2750,Bray Station,105811286,0,4376_7778022_104101,4376_37 -4289_75965,266,4376_2751,Bray Station,105821286,0,4376_7778022_104101,4376_37 -4289_75965,267,4376_2752,Bray Station,106051286,0,4376_7778022_104101,4376_37 -4289_75965,268,4376_2753,Bray Station,106141286,0,4376_7778022_104101,4376_37 -4289_75965,269,4376_2754,Bray Station,106231286,0,4376_7778022_104101,4376_37 -4289_75965,259,4376_2755,Bray Station,105764182,0,4376_7778022_104140,4376_37 -4289_75965,260,4376_2756,Bray Station,105311356,0,4376_7778022_104021,4376_37 -4289_75965,261,4376_2757,Bray Station,105321356,0,4376_7778022_104021,4376_37 -4289_75965,262,4376_2758,Bray Station,105431356,0,4376_7778022_104021,4376_37 -4289_75965,263,4376_2759,Bray Station,105541356,0,4376_7778022_104021,4376_37 -4289_75960,115,4376_276,Sutton Station,105217622,0,4376_7778022_103102,4376_1 -4289_75965,264,4376_2760,Bray Station,105651356,0,4376_7778022_104021,4376_37 -4289_75965,265,4376_2761,Bray Station,105811356,0,4376_7778022_104021,4376_37 -4289_75965,266,4376_2762,Bray Station,105821356,0,4376_7778022_104021,4376_37 -4289_75965,267,4376_2763,Bray Station,106051356,0,4376_7778022_104021,4376_37 -4289_75965,268,4376_2764,Bray Station,106141356,0,4376_7778022_104021,4376_37 -4289_75965,269,4376_2765,Bray Station,106231356,0,4376_7778022_104021,4376_37 -4289_75965,259,4376_2766,Bray Station,105764222,0,4376_7778022_104120,4376_37 -4289_75965,270,4376_2767,Bray Station,105277064,0,4376_7778022_104031,4376_37 -4289_75965,146,4376_2768,Bray Station,105247064,0,4376_7778022_104031,4376_37 -4289_75965,271,4376_2769,Bray Station,105237064,0,4376_7778022_104031,4376_37 -4289_75960,260,4376_277,Sutton Station,105312166,0,4376_7778022_103106,4376_1 -4289_75965,115,4376_2770,Bray Station,105217064,0,4376_7778022_104031,4376_37 -4289_75965,260,4376_2771,Bray Station,105311420,0,4376_7778022_104161,4376_37 -4289_75965,261,4376_2772,Bray Station,105321420,0,4376_7778022_104161,4376_37 -4289_75965,262,4376_2773,Bray Station,105431420,0,4376_7778022_104161,4376_37 -4289_75965,263,4376_2774,Bray Station,105541420,0,4376_7778022_104161,4376_37 -4289_75965,264,4376_2775,Bray Station,105651420,0,4376_7778022_104161,4376_37 -4289_75965,265,4376_2776,Bray Station,105811420,0,4376_7778022_104161,4376_37 -4289_75965,266,4376_2777,Bray Station,105821420,0,4376_7778022_104161,4376_37 -4289_75965,267,4376_2778,Bray Station,106051420,0,4376_7778022_104161,4376_37 -4289_75965,268,4376_2779,Bray Station,106141420,0,4376_7778022_104161,4376_37 -4289_75960,261,4376_278,Sutton Station,105322166,0,4376_7778022_103106,4376_1 -4289_75965,269,4376_2780,Bray Station,106231420,0,4376_7778022_104161,4376_37 -4289_75965,259,4376_2781,Bray Station,105764268,0,4376_7778022_104071,4376_37 -4289_75965,270,4376_2782,Bray Station,105277100,0,4376_7778022_104010,4376_37 -4289_75965,146,4376_2783,Bray Station,105247100,0,4376_7778022_104010,4376_37 -4289_75965,271,4376_2784,Bray Station,105237100,0,4376_7778022_104010,4376_37 -4289_75965,115,4376_2785,Bray Station,105217100,0,4376_7778022_104010,4376_37 -4289_75965,260,4376_2786,Bray Station,105311492,0,4376_7778022_100171,4376_37 -4289_75965,261,4376_2787,Bray Station,105321492,0,4376_7778022_100171,4376_37 -4289_75965,262,4376_2788,Bray Station,105431492,0,4376_7778022_100171,4376_37 -4289_75965,263,4376_2789,Bray Station,105541492,0,4376_7778022_100171,4376_37 -4289_75960,262,4376_279,Sutton Station,105432166,0,4376_7778022_103106,4376_1 -4289_75965,264,4376_2790,Bray Station,105651492,0,4376_7778022_100171,4376_37 -4289_75965,265,4376_2791,Bray Station,105811492,0,4376_7778022_100171,4376_37 -4289_75965,266,4376_2792,Bray Station,105821492,0,4376_7778022_100171,4376_37 -4289_75965,267,4376_2793,Bray Station,106051492,0,4376_7778022_100171,4376_37 -4289_75965,268,4376_2794,Bray Station,106141492,0,4376_7778022_100171,4376_37 -4289_75965,269,4376_2795,Bray Station,106231492,0,4376_7778022_100171,4376_37 -4289_75965,259,4376_2796,Bray Station,105764318,0,4376_7778022_104041,4376_37 -4289_75965,270,4376_2797,Bray Station,105277132,0,4376_7778022_104061,4376_37 -4289_75965,146,4376_2798,Bray Station,105247132,0,4376_7778022_104061,4376_37 -4289_75965,271,4376_2799,Bray Station,105237132,0,4376_7778022_104061,4376_37 -4289_75960,265,4376_28,Sutton Station,105811106,0,4376_7778022_103108,4376_1 -4289_75960,263,4376_280,Sutton Station,105542166,0,4376_7778022_103106,4376_1 -4289_75965,115,4376_2800,Bray Station,105217132,0,4376_7778022_104061,4376_37 -4289_75965,260,4376_2801,Bray Station,105311546,0,4376_7778022_104180,4376_37 -4289_75965,261,4376_2802,Bray Station,105321546,0,4376_7778022_104180,4376_37 -4289_75965,262,4376_2803,Bray Station,105431546,0,4376_7778022_104180,4376_37 -4289_75965,263,4376_2804,Bray Station,105541546,0,4376_7778022_104180,4376_37 -4289_75965,264,4376_2805,Bray Station,105651546,0,4376_7778022_104180,4376_37 -4289_75965,265,4376_2806,Bray Station,105811546,0,4376_7778022_104180,4376_37 -4289_75965,266,4376_2807,Bray Station,105821546,0,4376_7778022_104180,4376_37 -4289_75965,267,4376_2808,Bray Station,106051546,0,4376_7778022_104180,4376_37 -4289_75965,268,4376_2809,Bray Station,106141546,0,4376_7778022_104180,4376_37 -4289_75960,264,4376_281,Sutton Station,105652166,0,4376_7778022_103106,4376_1 -4289_75965,269,4376_2810,Bray Station,106231546,0,4376_7778022_104180,4376_37 -4289_75965,259,4376_2811,Bray Station,105764372,0,4376_7778022_104140,4376_37 -4289_75965,270,4376_2812,Bray Station,105277178,0,4376_7778022_104090,4376_37 -4289_75965,146,4376_2813,Bray Station,105247178,0,4376_7778022_104090,4376_37 -4289_75965,271,4376_2814,Bray Station,105237178,0,4376_7778022_104090,4376_37 -4289_75965,115,4376_2815,Bray Station,105217178,0,4376_7778022_104090,4376_37 -4289_75965,260,4376_2816,Bray Station,105311596,0,4376_7778022_104010,4376_37 -4289_75965,261,4376_2817,Bray Station,105321596,0,4376_7778022_104010,4376_37 -4289_75965,262,4376_2818,Bray Station,105431596,0,4376_7778022_104010,4376_37 -4289_75965,263,4376_2819,Bray Station,105541596,0,4376_7778022_104010,4376_37 -4289_75960,265,4376_282,Sutton Station,105812166,0,4376_7778022_103106,4376_1 -4289_75965,264,4376_2820,Bray Station,105651596,0,4376_7778022_104010,4376_37 -4289_75965,265,4376_2821,Bray Station,105811596,0,4376_7778022_104010,4376_37 -4289_75965,266,4376_2822,Bray Station,105821596,0,4376_7778022_104010,4376_37 -4289_75965,267,4376_2823,Bray Station,106051596,0,4376_7778022_104010,4376_37 -4289_75965,268,4376_2824,Bray Station,106141596,0,4376_7778022_104010,4376_37 -4289_75965,269,4376_2825,Bray Station,106231596,0,4376_7778022_104010,4376_37 -4289_75965,259,4376_2826,Bray Station,105764418,0,4376_7778022_104031,4376_37 -4289_75965,270,4376_2827,Bray Station,105277224,0,4376_7778022_104041,4376_37 -4289_75965,146,4376_2828,Bray Station,105247224,0,4376_7778022_104041,4376_37 -4289_75965,271,4376_2829,Bray Station,105237224,0,4376_7778022_104041,4376_37 -4289_75960,266,4376_283,Sutton Station,105822166,0,4376_7778022_103106,4376_1 -4289_75965,115,4376_2830,Bray Station,105217224,0,4376_7778022_104041,4376_37 -4289_75965,260,4376_2831,Bray Station,105311654,0,4376_7778022_104150,4376_37 -4289_75965,261,4376_2832,Bray Station,105321654,0,4376_7778022_104150,4376_37 -4289_75965,262,4376_2833,Bray Station,105431654,0,4376_7778022_104150,4376_37 -4289_75965,263,4376_2834,Bray Station,105541654,0,4376_7778022_104150,4376_37 -4289_75965,264,4376_2835,Bray Station,105651654,0,4376_7778022_104150,4376_37 -4289_75965,265,4376_2836,Bray Station,105811654,0,4376_7778022_104150,4376_37 -4289_75965,266,4376_2837,Bray Station,105821654,0,4376_7778022_104150,4376_37 -4289_75965,267,4376_2838,Bray Station,106051654,0,4376_7778022_104150,4376_37 -4289_75965,268,4376_2839,Bray Station,106141654,0,4376_7778022_104150,4376_37 -4289_75960,267,4376_284,Sutton Station,106052166,0,4376_7778022_103106,4376_1 -4289_75965,269,4376_2840,Bray Station,106231654,0,4376_7778022_104150,4376_37 -4289_75965,259,4376_2841,Bray Station,105764474,0,4376_7778022_104062,4376_37 -4289_75965,270,4376_2842,Bray Station,105277268,0,4376_7778022_104120,4376_37 -4289_75965,146,4376_2843,Bray Station,105247268,0,4376_7778022_104120,4376_37 -4289_75965,271,4376_2844,Bray Station,105237268,0,4376_7778022_104120,4376_37 -4289_75965,115,4376_2845,Bray Station,105217268,0,4376_7778022_104120,4376_37 -4289_75965,260,4376_2846,Bray Station,105311706,0,4376_7778022_104021,4376_37 -4289_75965,261,4376_2847,Bray Station,105321706,0,4376_7778022_104021,4376_37 -4289_75965,262,4376_2848,Bray Station,105431706,0,4376_7778022_104021,4376_37 -4289_75965,263,4376_2849,Bray Station,105541706,0,4376_7778022_104021,4376_37 -4289_75960,268,4376_285,Sutton Station,106142166,0,4376_7778022_103106,4376_1 -4289_75965,264,4376_2850,Bray Station,105651706,0,4376_7778022_104021,4376_37 -4289_75965,265,4376_2851,Bray Station,105811706,0,4376_7778022_104021,4376_37 -4289_75965,266,4376_2852,Bray Station,105821706,0,4376_7778022_104021,4376_37 -4289_75965,267,4376_2853,Bray Station,106051706,0,4376_7778022_104021,4376_37 -4289_75965,268,4376_2854,Bray Station,106141706,0,4376_7778022_104021,4376_37 -4289_75965,269,4376_2855,Bray Station,106231706,0,4376_7778022_104021,4376_37 -4289_75965,259,4376_2856,Bray Station,105764522,0,4376_7778022_104132,4376_37 -4289_75965,270,4376_2857,Bray Station,105277316,0,4376_7778022_104031,4376_37 -4289_75965,146,4376_2858,Bray Station,105247316,0,4376_7778022_104031,4376_37 -4289_75965,271,4376_2859,Bray Station,105237316,0,4376_7778022_104031,4376_37 -4289_75960,269,4376_286,Sutton Station,106232166,0,4376_7778022_103106,4376_1 -4289_75965,115,4376_2860,Bray Station,105217316,0,4376_7778022_104031,4376_37 -4289_75965,260,4376_2861,Bray Station,105311760,0,4376_7778022_104101,4376_37 -4289_75965,261,4376_2862,Bray Station,105321760,0,4376_7778022_104101,4376_37 -4289_75965,262,4376_2863,Bray Station,105431760,0,4376_7778022_104101,4376_37 -4289_75965,263,4376_2864,Bray Station,105541760,0,4376_7778022_104101,4376_37 -4289_75965,264,4376_2865,Bray Station,105651760,0,4376_7778022_104101,4376_37 -4289_75965,265,4376_2866,Bray Station,105811760,0,4376_7778022_104101,4376_37 -4289_75965,266,4376_2867,Bray Station,105821760,0,4376_7778022_104101,4376_37 -4289_75965,267,4376_2868,Bray Station,106051760,0,4376_7778022_104101,4376_37 -4289_75965,268,4376_2869,Bray Station,106141760,0,4376_7778022_104101,4376_37 -4289_75960,259,4376_287,Sutton Station,105764930,0,4376_7778022_103101,4376_2 -4289_75965,269,4376_2870,Bray Station,106231760,0,4376_7778022_104101,4376_37 -4289_75965,259,4376_2871,Bray Station,105764576,0,4376_7778022_104011,4376_37 -4289_75965,270,4376_2872,Bray Station,105277360,0,4376_7778022_104090,4376_37 -4289_75965,146,4376_2873,Bray Station,105247360,0,4376_7778022_104090,4376_37 -4289_75965,271,4376_2874,Bray Station,105237360,0,4376_7778022_104090,4376_37 -4289_75965,115,4376_2875,Bray Station,105217360,0,4376_7778022_104090,4376_37 -4289_75965,260,4376_2876,Bray Station,105311814,0,4376_7778022_100171,4376_37 -4289_75965,261,4376_2877,Bray Station,105321814,0,4376_7778022_100171,4376_37 -4289_75965,262,4376_2878,Bray Station,105431814,0,4376_7778022_100171,4376_37 -4289_75965,263,4376_2879,Bray Station,105541814,0,4376_7778022_100171,4376_37 -4289_75960,270,4376_288,Sutton Station,105277666,0,4376_7778022_103501,4376_1 -4289_75965,264,4376_2880,Bray Station,105651814,0,4376_7778022_100171,4376_37 -4289_75965,265,4376_2881,Bray Station,105811814,0,4376_7778022_100171,4376_37 -4289_75965,266,4376_2882,Bray Station,105821814,0,4376_7778022_100171,4376_37 -4289_75965,267,4376_2883,Bray Station,106051814,0,4376_7778022_100171,4376_37 -4289_75965,268,4376_2884,Bray Station,106141814,0,4376_7778022_100171,4376_37 -4289_75965,269,4376_2885,Bray Station,106231814,0,4376_7778022_100171,4376_37 -4289_75965,259,4376_2886,Bray Station,105764624,0,4376_7778022_104031,4376_37 -4289_75965,270,4376_2887,Bray Station,105277406,0,4376_7778022_104140,4376_37 -4289_75965,146,4376_2888,Bray Station,105247406,0,4376_7778022_104140,4376_37 -4289_75965,271,4376_2889,Bray Station,105237406,0,4376_7778022_104140,4376_37 -4289_75960,146,4376_289,Sutton Station,105247666,0,4376_7778022_103501,4376_1 -4289_75965,115,4376_2890,Bray Station,105217406,0,4376_7778022_104140,4376_37 -4289_75965,260,4376_2891,Bray Station,105311870,0,4376_7778022_104050,4376_37 -4289_75965,261,4376_2892,Bray Station,105321870,0,4376_7778022_104050,4376_37 -4289_75965,262,4376_2893,Bray Station,105431870,0,4376_7778022_104050,4376_37 -4289_75965,263,4376_2894,Bray Station,105541870,0,4376_7778022_104050,4376_37 -4289_75965,264,4376_2895,Bray Station,105651870,0,4376_7778022_104050,4376_37 -4289_75965,265,4376_2896,Bray Station,105811870,0,4376_7778022_104050,4376_37 -4289_75965,266,4376_2897,Bray Station,105821870,0,4376_7778022_104050,4376_37 -4289_75965,267,4376_2898,Bray Station,106051870,0,4376_7778022_104050,4376_37 -4289_75965,268,4376_2899,Bray Station,106141870,0,4376_7778022_104050,4376_37 -4289_75960,266,4376_29,Sutton Station,105821106,0,4376_7778022_103108,4376_1 -4289_75960,271,4376_290,Sutton Station,105237666,0,4376_7778022_103501,4376_1 -4289_75965,269,4376_2900,Bray Station,106231870,0,4376_7778022_104050,4376_37 -4289_75965,259,4376_2901,Bray Station,105764680,0,4376_7778022_104062,4376_37 -4289_75965,270,4376_2902,Bray Station,105277450,0,4376_7778022_104120,4376_37 -4289_75965,146,4376_2903,Bray Station,105247450,0,4376_7778022_104120,4376_37 -4289_75965,271,4376_2904,Bray Station,105237450,0,4376_7778022_104120,4376_37 -4289_75965,115,4376_2905,Bray Station,105217450,0,4376_7778022_104120,4376_37 -4289_75965,260,4376_2906,Bray Station,105311922,0,4376_7778022_104021,4376_37 -4289_75965,261,4376_2907,Bray Station,105321922,0,4376_7778022_104021,4376_37 -4289_75965,262,4376_2908,Bray Station,105431922,0,4376_7778022_104021,4376_37 -4289_75965,263,4376_2909,Bray Station,105541922,0,4376_7778022_104021,4376_37 -4289_75960,115,4376_291,Sutton Station,105217666,0,4376_7778022_103501,4376_1 -4289_75965,264,4376_2910,Bray Station,105651922,0,4376_7778022_104021,4376_37 -4289_75965,265,4376_2911,Bray Station,105811922,0,4376_7778022_104021,4376_37 -4289_75965,266,4376_2912,Bray Station,105821922,0,4376_7778022_104021,4376_37 -4289_75965,267,4376_2913,Bray Station,106051922,0,4376_7778022_104021,4376_37 -4289_75965,268,4376_2914,Bray Station,106141922,0,4376_7778022_104021,4376_37 -4289_75965,269,4376_2915,Bray Station,106231922,0,4376_7778022_104021,4376_37 -4289_75965,259,4376_2916,Bray Station,105764728,0,4376_7778022_104140,4376_37 -4289_75965,270,4376_2917,Bray Station,105277498,0,4376_7778022_104160,4376_37 -4289_75965,146,4376_2918,Bray Station,105247498,0,4376_7778022_104160,4376_37 -4289_75965,271,4376_2919,Bray Station,105237498,0,4376_7778022_104160,4376_37 -4289_75960,260,4376_292,Sutton Station,105312228,0,4376_7778022_103502,4376_1 -4289_75965,115,4376_2920,Bray Station,105217498,0,4376_7778022_104160,4376_37 -4289_75965,260,4376_2921,Bray Station,105311980,0,4376_7778022_100192,4376_37 -4289_75965,261,4376_2922,Bray Station,105321980,0,4376_7778022_100192,4376_37 -4289_75965,262,4376_2923,Bray Station,105431980,0,4376_7778022_100192,4376_37 -4289_75965,263,4376_2924,Bray Station,105541980,0,4376_7778022_100192,4376_37 -4289_75965,264,4376_2925,Bray Station,105651980,0,4376_7778022_100192,4376_37 -4289_75965,265,4376_2926,Bray Station,105811980,0,4376_7778022_100192,4376_37 -4289_75965,266,4376_2927,Bray Station,105821980,0,4376_7778022_100192,4376_37 -4289_75965,267,4376_2928,Bray Station,106051980,0,4376_7778022_100192,4376_37 -4289_75965,268,4376_2929,Bray Station,106141980,0,4376_7778022_100192,4376_37 -4289_75960,261,4376_293,Sutton Station,105322228,0,4376_7778022_103502,4376_1 -4289_75965,269,4376_2930,Bray Station,106231980,0,4376_7778022_100192,4376_37 -4289_75965,259,4376_2931,Bray Station,105764782,0,4376_7778022_104011,4376_37 -4289_75965,270,4376_2932,Bray Station,105277540,0,4376_7778022_104061,4376_37 -4289_75965,146,4376_2933,Bray Station,105247540,0,4376_7778022_104061,4376_37 -4289_75965,271,4376_2934,Bray Station,105237540,0,4376_7778022_104061,4376_37 -4289_75965,115,4376_2935,Bray Station,105217540,0,4376_7778022_104061,4376_37 -4289_75965,260,4376_2936,Bray Station,105312034,0,4376_7778022_104010,4376_37 -4289_75965,261,4376_2937,Bray Station,105322034,0,4376_7778022_104010,4376_37 -4289_75965,262,4376_2938,Bray Station,105432034,0,4376_7778022_104010,4376_37 -4289_75965,263,4376_2939,Bray Station,105542034,0,4376_7778022_104010,4376_37 -4289_75960,262,4376_294,Sutton Station,105432228,0,4376_7778022_103502,4376_1 -4289_75965,264,4376_2940,Bray Station,105652034,0,4376_7778022_104010,4376_37 -4289_75965,265,4376_2941,Bray Station,105812034,0,4376_7778022_104010,4376_37 -4289_75965,266,4376_2942,Bray Station,105822034,0,4376_7778022_104010,4376_37 -4289_75965,267,4376_2943,Bray Station,106052034,0,4376_7778022_104010,4376_37 -4289_75965,268,4376_2944,Bray Station,106142034,0,4376_7778022_104010,4376_37 -4289_75965,269,4376_2945,Bray Station,106232034,0,4376_7778022_104010,4376_37 -4289_75965,259,4376_2946,Bray Station,105764830,0,4376_7778022_104071,4376_37 -4289_75965,270,4376_2947,Bray Station,105277588,0,4376_7778022_104140,4376_37 -4289_75965,146,4376_2948,Bray Station,105247588,0,4376_7778022_104140,4376_37 -4289_75965,271,4376_2949,Bray Station,105237588,0,4376_7778022_104140,4376_37 -4289_75960,263,4376_295,Sutton Station,105542228,0,4376_7778022_103502,4376_1 -4289_75965,115,4376_2950,Bray Station,105217588,0,4376_7778022_104140,4376_37 -4289_75965,260,4376_2951,Bray Station,105312100,0,4376_7778022_104162,4376_37 -4289_75965,261,4376_2952,Bray Station,105322100,0,4376_7778022_104162,4376_37 -4289_75965,262,4376_2953,Bray Station,105432100,0,4376_7778022_104162,4376_37 -4289_75965,263,4376_2954,Bray Station,105542100,0,4376_7778022_104162,4376_37 -4289_75965,264,4376_2955,Bray Station,105652100,0,4376_7778022_104162,4376_37 -4289_75965,265,4376_2956,Bray Station,105812100,0,4376_7778022_104162,4376_37 -4289_75965,266,4376_2957,Bray Station,105822100,0,4376_7778022_104162,4376_37 -4289_75965,267,4376_2958,Bray Station,106052100,0,4376_7778022_104162,4376_37 -4289_75965,268,4376_2959,Bray Station,106142100,0,4376_7778022_104162,4376_37 -4289_75960,264,4376_296,Sutton Station,105652228,0,4376_7778022_103502,4376_1 -4289_75965,269,4376_2960,Bray Station,106232100,0,4376_7778022_104162,4376_37 -4289_75965,259,4376_2961,Bray Station,105764886,0,4376_7778022_104133,4376_37 -4289_75965,270,4376_2962,Bray Station,105277632,0,4376_7778022_104090,4376_37 -4289_75965,146,4376_2963,Bray Station,105247632,0,4376_7778022_104090,4376_37 -4289_75965,271,4376_2964,Bray Station,105237632,0,4376_7778022_104090,4376_37 -4289_75965,115,4376_2965,Bray Station,105217632,0,4376_7778022_104090,4376_37 -4289_75965,260,4376_2966,Bray Station,105312168,0,4376_7778022_104050,4376_37 -4289_75965,261,4376_2967,Bray Station,105322168,0,4376_7778022_104050,4376_37 -4289_75965,262,4376_2968,Bray Station,105432168,0,4376_7778022_104050,4376_37 -4289_75965,263,4376_2969,Bray Station,105542168,0,4376_7778022_104050,4376_37 -4289_75960,265,4376_297,Sutton Station,105812228,0,4376_7778022_103502,4376_1 -4289_75965,264,4376_2970,Bray Station,105652168,0,4376_7778022_104050,4376_37 -4289_75965,265,4376_2971,Bray Station,105812168,0,4376_7778022_104050,4376_37 -4289_75965,266,4376_2972,Bray Station,105822168,0,4376_7778022_104050,4376_37 -4289_75965,267,4376_2973,Bray Station,106052168,0,4376_7778022_104050,4376_37 -4289_75965,268,4376_2974,Bray Station,106142168,0,4376_7778022_104050,4376_37 -4289_75965,269,4376_2975,Bray Station,106232168,0,4376_7778022_104050,4376_37 -4289_75965,259,4376_2976,Bray Station,105764932,0,4376_7778022_104140,4376_37 -4289_75965,270,4376_2977,Bray Station,105277678,0,4376_7778022_104160,4376_37 -4289_75965,146,4376_2978,Bray Station,105247678,0,4376_7778022_104160,4376_37 -4289_75965,271,4376_2979,Bray Station,105237678,0,4376_7778022_104160,4376_37 -4289_75960,266,4376_298,Sutton Station,105822228,0,4376_7778022_103502,4376_1 -4289_75965,115,4376_2980,Bray Station,105217678,0,4376_7778022_104160,4376_37 -4289_75965,260,4376_2981,Bray Station,105312230,0,4376_7778022_104180,4376_37 -4289_75965,261,4376_2982,Bray Station,105322230,0,4376_7778022_104180,4376_37 -4289_75965,262,4376_2983,Bray Station,105432230,0,4376_7778022_104180,4376_37 -4289_75965,263,4376_2984,Bray Station,105542230,0,4376_7778022_104180,4376_37 -4289_75965,264,4376_2985,Bray Station,105652230,0,4376_7778022_104180,4376_37 -4289_75965,265,4376_2986,Bray Station,105812230,0,4376_7778022_104180,4376_37 -4289_75965,266,4376_2987,Bray Station,105822230,0,4376_7778022_104180,4376_37 -4289_75965,267,4376_2988,Bray Station,106052230,0,4376_7778022_104180,4376_37 -4289_75965,268,4376_2989,Bray Station,106142230,0,4376_7778022_104180,4376_37 -4289_75960,267,4376_299,Sutton Station,106052228,0,4376_7778022_103502,4376_1 -4289_75965,269,4376_2990,Bray Station,106232230,0,4376_7778022_104180,4376_37 -4289_75965,259,4376_2991,Bray Station,105764986,0,4376_7778022_104062,4376_37 -4289_75965,270,4376_2992,Bray Station,105277722,0,4376_7778022_104120,4376_37 -4289_75965,146,4376_2993,Bray Station,105247722,0,4376_7778022_104120,4376_37 -4289_75965,271,4376_2994,Bray Station,105237722,0,4376_7778022_104120,4376_37 -4289_75965,115,4376_2995,Bray Station,105217722,0,4376_7778022_104120,4376_37 -4289_75965,260,4376_2996,Bray Station,105312294,0,4376_7778022_104150,4376_37 -4289_75965,261,4376_2997,Bray Station,105322294,0,4376_7778022_104150,4376_37 -4289_75965,262,4376_2998,Bray Station,105432294,0,4376_7778022_104150,4376_37 -4289_75965,263,4376_2999,Bray Station,105542294,0,4376_7778022_104150,4376_37 -4289_75960,261,4376_3,Sutton Station,105321026,0,4376_7778022_103503,4376_1 -4289_75960,267,4376_30,Sutton Station,106051106,0,4376_7778022_103108,4376_1 -4289_75960,268,4376_300,Sutton Station,106142228,0,4376_7778022_103502,4376_1 -4289_75965,264,4376_3000,Bray Station,105652294,0,4376_7778022_104150,4376_37 -4289_75965,265,4376_3001,Bray Station,105812294,0,4376_7778022_104150,4376_37 -4289_75965,266,4376_3002,Bray Station,105822294,0,4376_7778022_104150,4376_37 -4289_75965,267,4376_3003,Bray Station,106052294,0,4376_7778022_104150,4376_37 -4289_75965,268,4376_3004,Bray Station,106142294,0,4376_7778022_104150,4376_37 -4289_75965,269,4376_3005,Bray Station,106232294,0,4376_7778022_104150,4376_37 -4289_75965,259,4376_3006,Bray Station,105765032,0,4376_7778022_104192,4376_37 -4289_75965,270,4376_3007,Bray Station,105277770,0,4376_7778022_104170,4376_37 -4289_75965,146,4376_3008,Bray Station,105247770,0,4376_7778022_104170,4376_37 -4289_75965,271,4376_3009,Bray Station,105237770,0,4376_7778022_104170,4376_37 -4289_75960,269,4376_301,Sutton Station,106232228,0,4376_7778022_103502,4376_1 -4289_75965,115,4376_3010,Bray Station,105217770,0,4376_7778022_104170,4376_37 -4289_75965,260,4376_3011,Bray Station,105312356,0,4376_7778022_100192,4376_37 -4289_75965,261,4376_3012,Bray Station,105322356,0,4376_7778022_100192,4376_37 -4289_75965,262,4376_3013,Bray Station,105432356,0,4376_7778022_100192,4376_37 -4289_75965,263,4376_3014,Bray Station,105542356,0,4376_7778022_100192,4376_37 -4289_75965,264,4376_3015,Bray Station,105652356,0,4376_7778022_100192,4376_37 -4289_75965,265,4376_3016,Bray Station,105812356,0,4376_7778022_100192,4376_37 -4289_75965,266,4376_3017,Bray Station,105822356,0,4376_7778022_100192,4376_37 -4289_75965,267,4376_3018,Bray Station,106052356,0,4376_7778022_100192,4376_37 -4289_75965,268,4376_3019,Bray Station,106142356,0,4376_7778022_100192,4376_37 -4289_75960,259,4376_302,Sutton Station,105764996,0,4376_7778022_103502,4376_1 -4289_75965,269,4376_3020,Bray Station,106232356,0,4376_7778022_100192,4376_37 -4289_75965,259,4376_3021,Bray Station,105765086,0,4376_7778022_104133,4376_37 -4289_75965,270,4376_3022,Bray Station,105277812,0,4376_7778022_104062,4376_37 -4289_75965,146,4376_3023,Bray Station,105247812,0,4376_7778022_104062,4376_37 -4289_75965,271,4376_3024,Bray Station,105237812,0,4376_7778022_104062,4376_37 -4289_75965,115,4376_3025,Bray Station,105217812,0,4376_7778022_104062,4376_37 -4289_75965,260,4376_3026,Bray Station,105312414,0,4376_7778022_104162,4376_37 -4289_75965,261,4376_3027,Bray Station,105322414,0,4376_7778022_104162,4376_37 -4289_75965,262,4376_3028,Bray Station,105432414,0,4376_7778022_104162,4376_37 -4289_75965,263,4376_3029,Bray Station,105542414,0,4376_7778022_104162,4376_37 -4289_75960,270,4376_303,Sutton Station,105277710,0,4376_7778022_103502,4376_2 -4289_75965,264,4376_3030,Bray Station,105652414,0,4376_7778022_104162,4376_37 -4289_75965,265,4376_3031,Bray Station,105812414,0,4376_7778022_104162,4376_37 -4289_75965,266,4376_3032,Bray Station,105822414,0,4376_7778022_104162,4376_37 -4289_75965,267,4376_3033,Bray Station,106052414,0,4376_7778022_104162,4376_37 -4289_75965,268,4376_3034,Bray Station,106142414,0,4376_7778022_104162,4376_37 -4289_75965,269,4376_3035,Bray Station,106232414,0,4376_7778022_104162,4376_37 -4289_75965,259,4376_3036,Bray Station,105765134,0,4376_7778022_104072,4376_37 -4289_75965,270,4376_3037,Bray Station,105277858,0,4376_7778022_104140,4376_37 -4289_75965,146,4376_3038,Bray Station,105247858,0,4376_7778022_104140,4376_37 -4289_75965,271,4376_3039,Bray Station,105237858,0,4376_7778022_104140,4376_37 -4289_75960,146,4376_304,Sutton Station,105247710,0,4376_7778022_103502,4376_2 -4289_75965,115,4376_3040,Bray Station,105217858,0,4376_7778022_104140,4376_37 -4289_75965,260,4376_3041,Bray Station,105312470,0,4376_7778022_104102,4376_37 -4289_75965,261,4376_3042,Bray Station,105322470,0,4376_7778022_104102,4376_37 -4289_75965,262,4376_3043,Bray Station,105432470,0,4376_7778022_104102,4376_37 -4289_75965,263,4376_3044,Bray Station,105542470,0,4376_7778022_104102,4376_37 -4289_75965,264,4376_3045,Bray Station,105652470,0,4376_7778022_104102,4376_37 -4289_75965,265,4376_3046,Bray Station,105812470,0,4376_7778022_104102,4376_37 -4289_75965,266,4376_3047,Bray Station,105822470,0,4376_7778022_104102,4376_37 -4289_75965,267,4376_3048,Bray Station,106052470,0,4376_7778022_104102,4376_37 -4289_75965,268,4376_3049,Bray Station,106142470,0,4376_7778022_104102,4376_37 -4289_75960,271,4376_305,Sutton Station,105237710,0,4376_7778022_103502,4376_2 -4289_75965,269,4376_3050,Bray Station,106232470,0,4376_7778022_104102,4376_37 -4289_75965,259,4376_3051,Bray Station,105765188,0,4376_7778022_104062,4376_37 -4289_75965,270,4376_3052,Bray Station,105277902,0,4376_7778022_104120,4376_37 -4289_75965,146,4376_3053,Bray Station,105247902,0,4376_7778022_104120,4376_37 -4289_75965,271,4376_3054,Bray Station,105237902,0,4376_7778022_104120,4376_37 -4289_75965,115,4376_3055,Bray Station,105217902,0,4376_7778022_104120,4376_37 -4289_75965,259,4376_3056,Bray Station,105765240,0,4376_7778022_104192,4376_37 -4289_75965,260,4376_3057,Bray Station,105312530,0,4376_7778022_104180,4376_37 -4289_75965,261,4376_3058,Bray Station,105322530,0,4376_7778022_104180,4376_37 -4289_75965,262,4376_3059,Bray Station,105432530,0,4376_7778022_104180,4376_37 -4289_75960,115,4376_306,Sutton Station,105217710,0,4376_7778022_103502,4376_2 -4289_75965,263,4376_3060,Bray Station,105542530,0,4376_7778022_104180,4376_37 -4289_75965,264,4376_3061,Bray Station,105652530,0,4376_7778022_104180,4376_37 -4289_75965,265,4376_3062,Bray Station,105812530,0,4376_7778022_104180,4376_37 -4289_75965,266,4376_3063,Bray Station,105822530,0,4376_7778022_104180,4376_37 -4289_75965,267,4376_3064,Bray Station,106052530,0,4376_7778022_104180,4376_37 -4289_75965,268,4376_3065,Bray Station,106142530,0,4376_7778022_104180,4376_37 -4289_75965,269,4376_3066,Bray Station,106232530,0,4376_7778022_104180,4376_37 -4289_75965,270,4376_3067,Bray Station,105277946,0,4376_7778022_104170,4376_37 -4289_75965,146,4376_3068,Bray Station,105247946,0,4376_7778022_104170,4376_37 -4289_75965,271,4376_3069,Bray Station,105237946,0,4376_7778022_104170,4376_37 -4289_75960,260,4376_307,Sutton Station,105312292,0,4376_7778022_103101,4376_1 -4289_75965,115,4376_3070,Bray Station,105217946,0,4376_7778022_104170,4376_37 -4289_75965,260,4376_3071,Bray Station,105312578,0,4376_7778022_104050,4376_37 -4289_75965,261,4376_3072,Bray Station,105322578,0,4376_7778022_104050,4376_37 -4289_75965,262,4376_3073,Bray Station,105432578,0,4376_7778022_104050,4376_37 -4289_75965,263,4376_3074,Bray Station,105542578,0,4376_7778022_104050,4376_37 -4289_75965,264,4376_3075,Bray Station,105652578,0,4376_7778022_104050,4376_37 -4289_75965,265,4376_3076,Bray Station,105812578,0,4376_7778022_104050,4376_37 -4289_75965,266,4376_3077,Bray Station,105822578,0,4376_7778022_104050,4376_37 -4289_75965,267,4376_3078,Bray Station,106052578,0,4376_7778022_104050,4376_37 -4289_75965,268,4376_3079,Bray Station,106142578,0,4376_7778022_104050,4376_37 -4289_75960,261,4376_308,Sutton Station,105322292,0,4376_7778022_103101,4376_1 -4289_75965,269,4376_3080,Bray Station,106232578,0,4376_7778022_104050,4376_37 -4289_75965,259,4376_3081,Bray Station,105765290,0,4376_7778022_104210,4376_37 -4289_75965,270,4376_3082,Bray Station,105277990,0,4376_7778022_104032,4376_37 -4289_75965,146,4376_3083,Bray Station,105247990,0,4376_7778022_104032,4376_37 -4289_75965,271,4376_3084,Bray Station,105237990,0,4376_7778022_104032,4376_37 -4289_75965,115,4376_3085,Bray Station,105217990,0,4376_7778022_104032,4376_37 -4289_75965,260,4376_3086,Bray Station,105312632,0,4376_7778022_104162,4376_37 -4289_75965,261,4376_3087,Bray Station,105322632,0,4376_7778022_104162,4376_37 -4289_75965,262,4376_3088,Bray Station,105432632,0,4376_7778022_104162,4376_37 -4289_75965,263,4376_3089,Bray Station,105542632,0,4376_7778022_104162,4376_37 -4289_75960,262,4376_309,Sutton Station,105432292,0,4376_7778022_103101,4376_1 -4289_75965,264,4376_3090,Bray Station,105652632,0,4376_7778022_104162,4376_37 -4289_75965,265,4376_3091,Bray Station,105812632,0,4376_7778022_104162,4376_37 -4289_75965,266,4376_3092,Bray Station,105822632,0,4376_7778022_104162,4376_37 -4289_75965,267,4376_3093,Bray Station,106052632,0,4376_7778022_104162,4376_37 -4289_75965,268,4376_3094,Bray Station,106142632,0,4376_7778022_104162,4376_37 -4289_75965,269,4376_3095,Bray Station,106232632,0,4376_7778022_104162,4376_37 -4289_75965,259,4376_3096,Bray Station,105765338,0,4376_7778022_104012,4376_37 -4289_75965,270,4376_3097,Bray Station,105278026,0,4376_7778022_104140,4376_37 -4289_75965,146,4376_3098,Bray Station,105248026,0,4376_7778022_104140,4376_37 -4289_75965,271,4376_3099,Bray Station,105238026,0,4376_7778022_104140,4376_37 -4289_75960,268,4376_31,Sutton Station,106141106,0,4376_7778022_103108,4376_1 -4289_75960,263,4376_310,Sutton Station,105542292,0,4376_7778022_103101,4376_1 -4289_75965,115,4376_3100,Bray Station,105218026,0,4376_7778022_104140,4376_37 -4289_75965,260,4376_3101,Bray Station,105312674,0,4376_7778022_104122,4376_37 -4289_75965,261,4376_3102,Bray Station,105322674,0,4376_7778022_104122,4376_37 -4289_75965,262,4376_3103,Bray Station,105432674,0,4376_7778022_104122,4376_37 -4289_75965,263,4376_3104,Bray Station,105542674,0,4376_7778022_104122,4376_37 -4289_75965,264,4376_3105,Bray Station,105652674,0,4376_7778022_104122,4376_37 -4289_75965,265,4376_3106,Bray Station,105812674,0,4376_7778022_104122,4376_37 -4289_75965,266,4376_3107,Bray Station,105822674,0,4376_7778022_104122,4376_37 -4289_75965,267,4376_3108,Bray Station,106052674,0,4376_7778022_104122,4376_37 -4289_75965,268,4376_3109,Bray Station,106142674,0,4376_7778022_104122,4376_37 -4289_75960,264,4376_311,Sutton Station,105652292,0,4376_7778022_103101,4376_1 -4289_75965,269,4376_3110,Bray Station,106232674,0,4376_7778022_104122,4376_37 -4289_75965,259,4376_3111,Bray Station,105765378,0,4376_7778022_104133,4376_37 -4289_75965,270,4376_3112,Bray Station,105278068,0,4376_7778022_104180,4376_37 -4289_75965,146,4376_3113,Bray Station,105248068,0,4376_7778022_104180,4376_37 -4289_75965,271,4376_3114,Bray Station,105238068,0,4376_7778022_104180,4376_37 -4289_75965,115,4376_3115,Bray Station,105218068,0,4376_7778022_104180,4376_37 -4289_75965,260,4376_3116,Bray Station,105312730,0,4376_7778022_100080,4376_37 -4289_75965,261,4376_3117,Bray Station,105322730,0,4376_7778022_100080,4376_37 -4289_75965,262,4376_3118,Bray Station,105432730,0,4376_7778022_100080,4376_37 -4289_75965,263,4376_3119,Bray Station,105542730,0,4376_7778022_100080,4376_37 -4289_75960,265,4376_312,Sutton Station,105812292,0,4376_7778022_103101,4376_1 -4289_75965,264,4376_3120,Bray Station,105652730,0,4376_7778022_100080,4376_37 -4289_75965,265,4376_3121,Bray Station,105812730,0,4376_7778022_100080,4376_37 -4289_75965,266,4376_3122,Bray Station,105822730,0,4376_7778022_100080,4376_37 -4289_75965,267,4376_3123,Bray Station,106052730,0,4376_7778022_100080,4376_37 -4289_75965,268,4376_3124,Bray Station,106142730,0,4376_7778022_100080,4376_37 -4289_75965,269,4376_3125,Bray Station,106232730,0,4376_7778022_100080,4376_37 -4289_75965,259,4376_3126,Bray Station,105765428,0,4376_7778022_104162,4376_37 -4289_75965,270,4376_3127,Bray Station,105278106,0,4376_7778022_104160,4376_37 -4289_75965,146,4376_3128,Bray Station,105248106,0,4376_7778022_104160,4376_37 -4289_75965,271,4376_3129,Bray Station,105238106,0,4376_7778022_104160,4376_37 -4289_75960,266,4376_313,Sutton Station,105822292,0,4376_7778022_103101,4376_1 -4289_75965,115,4376_3130,Bray Station,105218106,0,4376_7778022_104160,4376_37 -4289_75965,260,4376_3131,Bray Station,105312770,0,4376_7778022_104050,4376_37 -4289_75965,261,4376_3132,Bray Station,105322770,0,4376_7778022_104050,4376_37 -4289_75965,262,4376_3133,Bray Station,105432770,0,4376_7778022_104050,4376_37 -4289_75965,263,4376_3134,Bray Station,105542770,0,4376_7778022_104050,4376_37 -4289_75965,264,4376_3135,Bray Station,105652770,0,4376_7778022_104050,4376_37 -4289_75965,265,4376_3136,Bray Station,105812770,0,4376_7778022_104050,4376_37 -4289_75965,266,4376_3137,Bray Station,105822770,0,4376_7778022_104050,4376_37 -4289_75965,267,4376_3138,Bray Station,106052770,0,4376_7778022_104050,4376_37 -4289_75965,268,4376_3139,Bray Station,106142770,0,4376_7778022_104050,4376_37 -4289_75960,267,4376_314,Sutton Station,106052292,0,4376_7778022_103101,4376_1 -4289_75965,269,4376_3140,Bray Station,106232770,0,4376_7778022_104050,4376_37 -4289_75965,259,4376_3141,Bray Station,105765464,0,4376_7778022_104072,4376_37 -4289_75965,270,4376_3142,Bray Station,105278144,0,4376_7778022_104042,4376_37 -4289_75965,146,4376_3143,Bray Station,105248144,0,4376_7778022_104042,4376_37 -4289_75965,271,4376_3144,Bray Station,105238144,0,4376_7778022_104042,4376_37 -4289_75965,115,4376_3145,Bray Station,105218144,0,4376_7778022_104042,4376_37 -4289_75965,260,4376_3146,Bray Station,105312824,0,4376_7778022_104010,4376_37 -4289_75965,261,4376_3147,Bray Station,105322824,0,4376_7778022_104010,4376_37 -4289_75965,262,4376_3148,Bray Station,105432824,0,4376_7778022_104010,4376_37 -4289_75965,263,4376_3149,Bray Station,105542824,0,4376_7778022_104010,4376_37 -4289_75960,268,4376_315,Sutton Station,106142292,0,4376_7778022_103101,4376_1 -4289_75965,264,4376_3150,Bray Station,105652824,0,4376_7778022_104010,4376_37 -4289_75965,265,4376_3151,Bray Station,105812824,0,4376_7778022_104010,4376_37 -4289_75965,266,4376_3152,Bray Station,105822824,0,4376_7778022_104010,4376_37 -4289_75965,267,4376_3153,Bray Station,106052824,0,4376_7778022_104010,4376_37 -4289_75965,268,4376_3154,Bray Station,106142824,0,4376_7778022_104010,4376_37 -4289_75965,269,4376_3155,Bray Station,106232824,0,4376_7778022_104010,4376_37 -4289_75965,259,4376_3156,Bray Station,105765510,0,4376_7778022_104210,4376_37 -4289_75965,270,4376_3157,Bray Station,105278182,0,4376_7778022_104032,4376_37 -4289_75965,146,4376_3158,Bray Station,105248182,0,4376_7778022_104032,4376_37 -4289_75965,271,4376_3159,Bray Station,105238182,0,4376_7778022_104032,4376_37 -4289_75960,269,4376_316,Sutton Station,106232292,0,4376_7778022_103101,4376_1 -4289_75965,115,4376_3160,Bray Station,105218182,0,4376_7778022_104032,4376_37 -4289_75965,260,4376_3161,Bray Station,105312864,0,4376_7778022_104122,4376_37 -4289_75965,261,4376_3162,Bray Station,105322864,0,4376_7778022_104122,4376_37 -4289_75965,262,4376_3163,Bray Station,105432864,0,4376_7778022_104122,4376_37 -4289_75965,263,4376_3164,Bray Station,105542864,0,4376_7778022_104122,4376_37 -4289_75965,264,4376_3165,Bray Station,105652864,0,4376_7778022_104122,4376_37 -4289_75965,265,4376_3166,Bray Station,105812864,0,4376_7778022_104122,4376_37 -4289_75965,266,4376_3167,Bray Station,105822864,0,4376_7778022_104122,4376_37 -4289_75965,267,4376_3168,Bray Station,106052864,0,4376_7778022_104122,4376_37 -4289_75965,268,4376_3169,Bray Station,106142864,0,4376_7778022_104122,4376_37 -4289_75960,259,4376_317,Sutton Station,105765052,0,4376_7778022_103104,4376_1 -4289_75965,269,4376_3170,Bray Station,106232864,0,4376_7778022_104122,4376_37 -4289_75965,259,4376_3171,Bray Station,105765548,0,4376_7778022_104133,4376_37 -4289_75965,270,4376_3172,Bray Station,105278222,0,4376_7778022_104180,4376_37 -4289_75965,146,4376_3173,Bray Station,105248222,0,4376_7778022_104180,4376_37 -4289_75965,271,4376_3174,Bray Station,105238222,0,4376_7778022_104180,4376_37 -4289_75965,115,4376_3175,Bray Station,105218222,0,4376_7778022_104180,4376_37 -4289_75965,260,4376_3176,Bray Station,105312916,0,4376_7778022_104102,4376_37 -4289_75965,261,4376_3177,Bray Station,105322916,0,4376_7778022_104102,4376_37 -4289_75965,262,4376_3178,Bray Station,105432916,0,4376_7778022_104102,4376_37 -4289_75965,263,4376_3179,Bray Station,105542916,0,4376_7778022_104102,4376_37 -4289_75960,270,4376_318,Sutton Station,105277756,0,4376_7778022_103105,4376_2 -4289_75965,264,4376_3180,Bray Station,105652916,0,4376_7778022_104102,4376_37 -4289_75965,265,4376_3181,Bray Station,105812916,0,4376_7778022_104102,4376_37 -4289_75965,266,4376_3182,Bray Station,105822916,0,4376_7778022_104102,4376_37 -4289_75965,267,4376_3183,Bray Station,106052916,0,4376_7778022_104102,4376_37 -4289_75965,268,4376_3184,Bray Station,106142916,0,4376_7778022_104102,4376_37 -4289_75965,269,4376_3185,Bray Station,106232916,0,4376_7778022_104102,4376_37 -4289_75965,259,4376_3186,Bray Station,105765592,0,4376_7778022_104202,4376_37 -4289_75965,270,4376_3187,Bray Station,105278256,0,4376_7778022_104170,4376_37 -4289_75965,146,4376_3188,Bray Station,105248256,0,4376_7778022_104170,4376_37 -4289_75965,271,4376_3189,Bray Station,105238256,0,4376_7778022_104170,4376_37 -4289_75960,146,4376_319,Sutton Station,105247756,0,4376_7778022_103105,4376_2 -4289_75965,115,4376_3190,Bray Station,105218256,0,4376_7778022_104170,4376_37 -4289_75965,260,4376_3191,Bray Station,105312958,0,4376_7778022_104030,4376_37 -4289_75965,261,4376_3192,Bray Station,105322958,0,4376_7778022_104030,4376_37 -4289_75965,262,4376_3193,Bray Station,105432958,0,4376_7778022_104030,4376_37 -4289_75965,263,4376_3194,Bray Station,105542958,0,4376_7778022_104030,4376_37 -4289_75965,264,4376_3195,Bray Station,105652958,0,4376_7778022_104030,4376_37 -4289_75965,265,4376_3196,Bray Station,105812958,0,4376_7778022_104030,4376_37 -4289_75965,266,4376_3197,Bray Station,105822958,0,4376_7778022_104030,4376_37 -4289_75965,267,4376_3198,Bray Station,106052958,0,4376_7778022_104030,4376_37 -4289_75965,268,4376_3199,Bray Station,106142958,0,4376_7778022_104030,4376_37 -4289_75960,269,4376_32,Sutton Station,106231106,0,4376_7778022_103108,4376_1 -4289_75960,271,4376_320,Sutton Station,105237756,0,4376_7778022_103105,4376_2 -4289_75965,269,4376_3200,Bray Station,106232958,0,4376_7778022_104030,4376_37 -4289_75965,259,4376_3201,Bray Station,105765630,0,4376_7778022_104072,4376_37 -4289_75965,270,4376_3202,Bray Station,105278292,0,4376_7778022_104042,4376_37 -4289_75965,146,4376_3203,Bray Station,105248292,0,4376_7778022_104042,4376_37 -4289_75965,271,4376_3204,Bray Station,105238292,0,4376_7778022_104042,4376_37 -4289_75965,115,4376_3205,Bray Station,105218292,0,4376_7778022_104042,4376_37 -4289_75965,259,4376_3206,Newtownmountkennedy,105764043,1,4376_7778022_104041,4376_38 -4289_75965,260,4376_3207,Newtownmountkennedy,105311073,1,4376_7778022_100171,4376_38 -4289_75965,261,4376_3208,Newtownmountkennedy,105321073,1,4376_7778022_100171,4376_38 -4289_75965,262,4376_3209,Newtownmountkennedy,105431073,1,4376_7778022_100171,4376_38 -4289_75960,115,4376_321,Sutton Station,105217756,0,4376_7778022_103105,4376_2 -4289_75965,263,4376_3210,Newtownmountkennedy,105541073,1,4376_7778022_100171,4376_38 -4289_75965,264,4376_3211,Newtownmountkennedy,105651073,1,4376_7778022_100171,4376_38 -4289_75965,265,4376_3212,Newtownmountkennedy,105811073,1,4376_7778022_100171,4376_38 -4289_75965,266,4376_3213,Newtownmountkennedy,105821073,1,4376_7778022_100171,4376_38 -4289_75965,267,4376_3214,Newtownmountkennedy,106051073,1,4376_7778022_100171,4376_38 -4289_75965,268,4376_3215,Newtownmountkennedy,106141073,1,4376_7778022_100171,4376_38 -4289_75965,269,4376_3216,Newtownmountkennedy,106231073,1,4376_7778022_100171,4376_38 -4289_75965,259,4376_3217,Newtownmountkennedy,105764073,1,4376_7778022_104011,4376_38 -4289_75965,260,4376_3218,Newtownmountkennedy,105311133,1,4376_7778022_104101,4376_38 -4289_75965,261,4376_3219,Newtownmountkennedy,105321133,1,4376_7778022_104101,4376_38 -4289_75960,260,4376_322,Sutton Station,105312354,0,4376_7778022_103102,4376_1 -4289_75965,262,4376_3220,Newtownmountkennedy,105431133,1,4376_7778022_104101,4376_38 -4289_75965,263,4376_3221,Newtownmountkennedy,105541133,1,4376_7778022_104101,4376_38 -4289_75965,264,4376_3222,Newtownmountkennedy,105651133,1,4376_7778022_104101,4376_38 -4289_75965,265,4376_3223,Newtownmountkennedy,105811133,1,4376_7778022_104101,4376_38 -4289_75965,266,4376_3224,Newtownmountkennedy,105821133,1,4376_7778022_104101,4376_38 -4289_75965,267,4376_3225,Newtownmountkennedy,106051133,1,4376_7778022_104101,4376_38 -4289_75965,268,4376_3226,Newtownmountkennedy,106141133,1,4376_7778022_104101,4376_38 -4289_75965,269,4376_3227,Newtownmountkennedy,106231133,1,4376_7778022_104101,4376_38 -4289_75965,259,4376_3228,Newtownmountkennedy,105764117,1,4376_7778022_104140,4376_38 -4289_75965,260,4376_3229,Newtownmountkennedy,105311193,1,4376_7778022_104021,4376_38 -4289_75960,261,4376_323,Sutton Station,105322354,0,4376_7778022_103102,4376_1 -4289_75965,261,4376_3230,Newtownmountkennedy,105321193,1,4376_7778022_104021,4376_38 -4289_75965,262,4376_3231,Newtownmountkennedy,105431193,1,4376_7778022_104021,4376_38 -4289_75965,263,4376_3232,Newtownmountkennedy,105541193,1,4376_7778022_104021,4376_38 -4289_75965,264,4376_3233,Newtownmountkennedy,105651193,1,4376_7778022_104021,4376_38 -4289_75965,265,4376_3234,Newtownmountkennedy,105811193,1,4376_7778022_104021,4376_38 -4289_75965,266,4376_3235,Newtownmountkennedy,105821193,1,4376_7778022_104021,4376_38 -4289_75965,267,4376_3236,Newtownmountkennedy,106051193,1,4376_7778022_104021,4376_38 -4289_75965,268,4376_3237,Newtownmountkennedy,106141193,1,4376_7778022_104021,4376_38 -4289_75965,269,4376_3238,Newtownmountkennedy,106231193,1,4376_7778022_104021,4376_38 -4289_75965,259,4376_3239,Newtownmountkennedy,105764153,1,4376_7778022_104120,4376_38 -4289_75960,262,4376_324,Sutton Station,105432354,0,4376_7778022_103102,4376_1 -4289_75965,260,4376_3240,Newtownmountkennedy,105311247,1,4376_7778022_104161,4376_38 -4289_75965,261,4376_3241,Newtownmountkennedy,105321247,1,4376_7778022_104161,4376_38 -4289_75965,262,4376_3242,Newtownmountkennedy,105431247,1,4376_7778022_104161,4376_38 -4289_75965,263,4376_3243,Newtownmountkennedy,105541247,1,4376_7778022_104161,4376_38 -4289_75965,264,4376_3244,Newtownmountkennedy,105651247,1,4376_7778022_104161,4376_38 -4289_75965,265,4376_3245,Newtownmountkennedy,105811247,1,4376_7778022_104161,4376_38 -4289_75965,266,4376_3246,Newtownmountkennedy,105821247,1,4376_7778022_104161,4376_38 -4289_75965,267,4376_3247,Newtownmountkennedy,106051247,1,4376_7778022_104161,4376_38 -4289_75965,268,4376_3248,Newtownmountkennedy,106141247,1,4376_7778022_104161,4376_38 -4289_75965,269,4376_3249,Newtownmountkennedy,106231247,1,4376_7778022_104161,4376_38 -4289_75960,263,4376_325,Sutton Station,105542354,0,4376_7778022_103102,4376_1 -4289_75965,259,4376_3250,Newtownmountkennedy,105764199,1,4376_7778022_104071,4376_38 -4289_75965,270,4376_3251,Newtownmountkennedy,105277039,1,4376_7778022_104010,4376_38 -4289_75965,146,4376_3252,Newtownmountkennedy,105247039,1,4376_7778022_104010,4376_38 -4289_75965,271,4376_3253,Newtownmountkennedy,105237039,1,4376_7778022_104010,4376_38 -4289_75965,115,4376_3254,Newtownmountkennedy,105217039,1,4376_7778022_104010,4376_38 -4289_75965,260,4376_3255,Newtownmountkennedy,105311351,1,4376_7778022_100171,4376_38 -4289_75965,261,4376_3256,Newtownmountkennedy,105321351,1,4376_7778022_100171,4376_38 -4289_75965,262,4376_3257,Newtownmountkennedy,105431351,1,4376_7778022_100171,4376_38 -4289_75965,263,4376_3258,Newtownmountkennedy,105541351,1,4376_7778022_100171,4376_38 -4289_75965,264,4376_3259,Newtownmountkennedy,105651351,1,4376_7778022_100171,4376_38 -4289_75960,264,4376_326,Sutton Station,105652354,0,4376_7778022_103102,4376_1 -4289_75965,265,4376_3260,Newtownmountkennedy,105811351,1,4376_7778022_100171,4376_38 -4289_75965,266,4376_3261,Newtownmountkennedy,105821351,1,4376_7778022_100171,4376_38 -4289_75965,267,4376_3262,Newtownmountkennedy,106051351,1,4376_7778022_100171,4376_38 -4289_75965,268,4376_3263,Newtownmountkennedy,106141351,1,4376_7778022_100171,4376_38 -4289_75965,269,4376_3264,Newtownmountkennedy,106231351,1,4376_7778022_100171,4376_38 -4289_75965,259,4376_3265,Newtownmountkennedy,105764241,1,4376_7778022_104041,4376_38 -4289_75965,270,4376_3266,Newtownmountkennedy,105277075,1,4376_7778022_104061,4376_38 -4289_75965,146,4376_3267,Newtownmountkennedy,105247075,1,4376_7778022_104061,4376_38 -4289_75965,271,4376_3268,Newtownmountkennedy,105237075,1,4376_7778022_104061,4376_38 -4289_75965,115,4376_3269,Newtownmountkennedy,105217075,1,4376_7778022_104061,4376_38 -4289_75960,265,4376_327,Sutton Station,105812354,0,4376_7778022_103102,4376_1 -4289_75965,260,4376_3270,Newtownmountkennedy,105311407,1,4376_7778022_104180,4376_38 -4289_75965,261,4376_3271,Newtownmountkennedy,105321407,1,4376_7778022_104180,4376_38 -4289_75965,262,4376_3272,Newtownmountkennedy,105431407,1,4376_7778022_104180,4376_38 -4289_75965,263,4376_3273,Newtownmountkennedy,105541407,1,4376_7778022_104180,4376_38 -4289_75965,264,4376_3274,Newtownmountkennedy,105651407,1,4376_7778022_104180,4376_38 -4289_75965,265,4376_3275,Newtownmountkennedy,105811407,1,4376_7778022_104180,4376_38 -4289_75965,266,4376_3276,Newtownmountkennedy,105821407,1,4376_7778022_104180,4376_38 -4289_75965,267,4376_3277,Newtownmountkennedy,106051407,1,4376_7778022_104180,4376_38 -4289_75965,268,4376_3278,Newtownmountkennedy,106141407,1,4376_7778022_104180,4376_38 -4289_75965,269,4376_3279,Newtownmountkennedy,106231407,1,4376_7778022_104180,4376_38 -4289_75960,266,4376_328,Sutton Station,105822354,0,4376_7778022_103102,4376_1 -4289_75965,259,4376_3280,Newtownmountkennedy,105764285,1,4376_7778022_104140,4376_38 -4289_75965,270,4376_3281,Newtownmountkennedy,105277105,1,4376_7778022_104090,4376_38 -4289_75965,146,4376_3282,Newtownmountkennedy,105247105,1,4376_7778022_104090,4376_38 -4289_75965,271,4376_3283,Newtownmountkennedy,105237105,1,4376_7778022_104090,4376_38 -4289_75965,115,4376_3284,Newtownmountkennedy,105217105,1,4376_7778022_104090,4376_38 -4289_75965,260,4376_3285,Newtownmountkennedy,105311463,1,4376_7778022_104010,4376_38 -4289_75965,261,4376_3286,Newtownmountkennedy,105321463,1,4376_7778022_104010,4376_38 -4289_75965,262,4376_3287,Newtownmountkennedy,105431463,1,4376_7778022_104010,4376_38 -4289_75965,263,4376_3288,Newtownmountkennedy,105541463,1,4376_7778022_104010,4376_38 -4289_75965,264,4376_3289,Newtownmountkennedy,105651463,1,4376_7778022_104010,4376_38 -4289_75960,267,4376_329,Sutton Station,106052354,0,4376_7778022_103102,4376_1 -4289_75965,265,4376_3290,Newtownmountkennedy,105811463,1,4376_7778022_104010,4376_38 -4289_75965,266,4376_3291,Newtownmountkennedy,105821463,1,4376_7778022_104010,4376_38 -4289_75965,267,4376_3292,Newtownmountkennedy,106051463,1,4376_7778022_104010,4376_38 -4289_75965,268,4376_3293,Newtownmountkennedy,106141463,1,4376_7778022_104010,4376_38 -4289_75965,269,4376_3294,Newtownmountkennedy,106231463,1,4376_7778022_104010,4376_38 -4289_75965,259,4376_3295,Newtownmountkennedy,105764337,1,4376_7778022_104031,4376_38 -4289_75965,270,4376_3296,Newtownmountkennedy,105277149,1,4376_7778022_104041,4376_38 -4289_75965,146,4376_3297,Newtownmountkennedy,105247149,1,4376_7778022_104041,4376_38 -4289_75965,271,4376_3298,Newtownmountkennedy,105237149,1,4376_7778022_104041,4376_38 -4289_75965,115,4376_3299,Newtownmountkennedy,105217149,1,4376_7778022_104041,4376_38 -4289_75960,259,4376_33,Sutton Station,105764078,0,4376_7778022_103104,4376_1 -4289_75960,268,4376_330,Sutton Station,106142354,0,4376_7778022_103102,4376_1 -4289_75965,260,4376_3300,Newtownmountkennedy,105311519,1,4376_7778022_104150,4376_38 -4289_75965,261,4376_3301,Newtownmountkennedy,105321519,1,4376_7778022_104150,4376_38 -4289_75965,262,4376_3302,Newtownmountkennedy,105431519,1,4376_7778022_104150,4376_38 -4289_75965,263,4376_3303,Newtownmountkennedy,105541519,1,4376_7778022_104150,4376_38 -4289_75965,264,4376_3304,Newtownmountkennedy,105651519,1,4376_7778022_104150,4376_38 -4289_75965,265,4376_3305,Newtownmountkennedy,105811519,1,4376_7778022_104150,4376_38 -4289_75965,266,4376_3306,Newtownmountkennedy,105821519,1,4376_7778022_104150,4376_38 -4289_75965,267,4376_3307,Newtownmountkennedy,106051519,1,4376_7778022_104150,4376_38 -4289_75965,268,4376_3308,Newtownmountkennedy,106141519,1,4376_7778022_104150,4376_38 -4289_75965,269,4376_3309,Newtownmountkennedy,106231519,1,4376_7778022_104150,4376_38 -4289_75960,269,4376_331,Sutton Station,106232354,0,4376_7778022_103102,4376_1 -4289_75965,259,4376_3310,Newtownmountkennedy,105764387,1,4376_7778022_104062,4376_38 -4289_75965,270,4376_3311,Newtownmountkennedy,105277193,1,4376_7778022_104120,4376_38 -4289_75965,146,4376_3312,Newtownmountkennedy,105247193,1,4376_7778022_104120,4376_38 -4289_75965,271,4376_3313,Newtownmountkennedy,105237193,1,4376_7778022_104120,4376_38 -4289_75965,115,4376_3314,Newtownmountkennedy,105217193,1,4376_7778022_104120,4376_38 -4289_75965,260,4376_3315,Newtownmountkennedy,105311573,1,4376_7778022_104021,4376_38 -4289_75965,261,4376_3316,Newtownmountkennedy,105321573,1,4376_7778022_104021,4376_38 -4289_75965,262,4376_3317,Newtownmountkennedy,105431573,1,4376_7778022_104021,4376_38 -4289_75965,263,4376_3318,Newtownmountkennedy,105541573,1,4376_7778022_104021,4376_38 -4289_75965,264,4376_3319,Newtownmountkennedy,105651573,1,4376_7778022_104021,4376_38 -4289_75960,259,4376_332,Sutton Station,105765098,0,4376_7778022_103503,4376_1 -4289_75965,265,4376_3320,Newtownmountkennedy,105811573,1,4376_7778022_104021,4376_38 -4289_75965,266,4376_3321,Newtownmountkennedy,105821573,1,4376_7778022_104021,4376_38 -4289_75965,267,4376_3322,Newtownmountkennedy,106051573,1,4376_7778022_104021,4376_38 -4289_75965,268,4376_3323,Newtownmountkennedy,106141573,1,4376_7778022_104021,4376_38 -4289_75965,269,4376_3324,Newtownmountkennedy,106231573,1,4376_7778022_104021,4376_38 -4289_75965,259,4376_3325,Newtownmountkennedy,105764439,1,4376_7778022_104132,4376_38 -4289_75965,270,4376_3326,Newtownmountkennedy,105277237,1,4376_7778022_104031,4376_38 -4289_75965,146,4376_3327,Newtownmountkennedy,105247237,1,4376_7778022_104031,4376_38 -4289_75965,271,4376_3328,Newtownmountkennedy,105237237,1,4376_7778022_104031,4376_38 -4289_75965,115,4376_3329,Newtownmountkennedy,105217237,1,4376_7778022_104031,4376_38 -4289_75960,270,4376_333,Sutton Station,105277798,0,4376_7778022_103503,4376_2 -4289_75965,260,4376_3330,Newtownmountkennedy,105311627,1,4376_7778022_104101,4376_38 -4289_75965,261,4376_3331,Newtownmountkennedy,105321627,1,4376_7778022_104101,4376_38 -4289_75965,262,4376_3332,Newtownmountkennedy,105431627,1,4376_7778022_104101,4376_38 -4289_75965,263,4376_3333,Newtownmountkennedy,105541627,1,4376_7778022_104101,4376_38 -4289_75965,264,4376_3334,Newtownmountkennedy,105651627,1,4376_7778022_104101,4376_38 -4289_75965,265,4376_3335,Newtownmountkennedy,105811627,1,4376_7778022_104101,4376_38 -4289_75965,266,4376_3336,Newtownmountkennedy,105821627,1,4376_7778022_104101,4376_38 -4289_75965,267,4376_3337,Newtownmountkennedy,106051627,1,4376_7778022_104101,4376_38 -4289_75965,268,4376_3338,Newtownmountkennedy,106141627,1,4376_7778022_104101,4376_38 -4289_75965,269,4376_3339,Newtownmountkennedy,106231627,1,4376_7778022_104101,4376_38 -4289_75960,146,4376_334,Sutton Station,105247798,0,4376_7778022_103503,4376_2 -4289_75965,259,4376_3340,Newtownmountkennedy,105764479,1,4376_7778022_104011,4376_38 -4289_75965,270,4376_3341,Newtownmountkennedy,105277283,1,4376_7778022_104090,4376_38 -4289_75965,146,4376_3342,Newtownmountkennedy,105247283,1,4376_7778022_104090,4376_38 -4289_75965,271,4376_3343,Newtownmountkennedy,105237283,1,4376_7778022_104090,4376_38 -4289_75965,115,4376_3344,Newtownmountkennedy,105217283,1,4376_7778022_104090,4376_38 -4289_75965,260,4376_3345,Newtownmountkennedy,105311681,1,4376_7778022_100171,4376_38 -4289_75965,261,4376_3346,Newtownmountkennedy,105321681,1,4376_7778022_100171,4376_38 -4289_75965,262,4376_3347,Newtownmountkennedy,105431681,1,4376_7778022_100171,4376_38 -4289_75965,263,4376_3348,Newtownmountkennedy,105541681,1,4376_7778022_100171,4376_38 -4289_75965,264,4376_3349,Newtownmountkennedy,105651681,1,4376_7778022_100171,4376_38 -4289_75960,271,4376_335,Sutton Station,105237798,0,4376_7778022_103503,4376_2 -4289_75965,265,4376_3350,Newtownmountkennedy,105811681,1,4376_7778022_100171,4376_38 -4289_75965,266,4376_3351,Newtownmountkennedy,105821681,1,4376_7778022_100171,4376_38 -4289_75965,267,4376_3352,Newtownmountkennedy,106051681,1,4376_7778022_100171,4376_38 -4289_75965,268,4376_3353,Newtownmountkennedy,106141681,1,4376_7778022_100171,4376_38 -4289_75965,269,4376_3354,Newtownmountkennedy,106231681,1,4376_7778022_100171,4376_38 -4289_75965,259,4376_3355,Newtownmountkennedy,105764529,1,4376_7778022_104031,4376_38 -4289_75965,270,4376_3356,Newtownmountkennedy,105277329,1,4376_7778022_104140,4376_38 -4289_75965,146,4376_3357,Newtownmountkennedy,105247329,1,4376_7778022_104140,4376_38 -4289_75965,271,4376_3358,Newtownmountkennedy,105237329,1,4376_7778022_104140,4376_38 -4289_75965,115,4376_3359,Newtownmountkennedy,105217329,1,4376_7778022_104140,4376_38 -4289_75960,115,4376_336,Sutton Station,105217798,0,4376_7778022_103503,4376_2 -4289_75965,260,4376_3360,Newtownmountkennedy,105311735,1,4376_7778022_104050,4376_38 -4289_75965,261,4376_3361,Newtownmountkennedy,105321735,1,4376_7778022_104050,4376_38 -4289_75965,262,4376_3362,Newtownmountkennedy,105431735,1,4376_7778022_104050,4376_38 -4289_75965,263,4376_3363,Newtownmountkennedy,105541735,1,4376_7778022_104050,4376_38 -4289_75965,264,4376_3364,Newtownmountkennedy,105651735,1,4376_7778022_104050,4376_38 -4289_75965,265,4376_3365,Newtownmountkennedy,105811735,1,4376_7778022_104050,4376_38 -4289_75965,266,4376_3366,Newtownmountkennedy,105821735,1,4376_7778022_104050,4376_38 -4289_75965,267,4376_3367,Newtownmountkennedy,106051735,1,4376_7778022_104050,4376_38 -4289_75965,268,4376_3368,Newtownmountkennedy,106141735,1,4376_7778022_104050,4376_38 -4289_75965,269,4376_3369,Newtownmountkennedy,106231735,1,4376_7778022_104050,4376_38 -4289_75960,260,4376_337,Sutton Station,105312412,0,4376_7778022_103104,4376_1 -4289_75965,259,4376_3370,Newtownmountkennedy,105764581,1,4376_7778022_104062,4376_38 -4289_75965,270,4376_3371,Newtownmountkennedy,105277365,1,4376_7778022_104120,4376_38 -4289_75965,146,4376_3372,Newtownmountkennedy,105247365,1,4376_7778022_104120,4376_38 -4289_75965,271,4376_3373,Newtownmountkennedy,105237365,1,4376_7778022_104120,4376_38 -4289_75965,115,4376_3374,Newtownmountkennedy,105217365,1,4376_7778022_104120,4376_38 -4289_75965,260,4376_3375,Newtownmountkennedy,105311791,1,4376_7778022_104021,4376_38 -4289_75965,261,4376_3376,Newtownmountkennedy,105321791,1,4376_7778022_104021,4376_38 -4289_75965,262,4376_3377,Newtownmountkennedy,105431791,1,4376_7778022_104021,4376_38 -4289_75965,263,4376_3378,Newtownmountkennedy,105541791,1,4376_7778022_104021,4376_38 -4289_75965,264,4376_3379,Newtownmountkennedy,105651791,1,4376_7778022_104021,4376_38 -4289_75960,261,4376_338,Sutton Station,105322412,0,4376_7778022_103104,4376_1 -4289_75965,265,4376_3380,Newtownmountkennedy,105811791,1,4376_7778022_104021,4376_38 -4289_75965,266,4376_3381,Newtownmountkennedy,105821791,1,4376_7778022_104021,4376_38 -4289_75965,267,4376_3382,Newtownmountkennedy,106051791,1,4376_7778022_104021,4376_38 -4289_75965,268,4376_3383,Newtownmountkennedy,106141791,1,4376_7778022_104021,4376_38 -4289_75965,269,4376_3384,Newtownmountkennedy,106231791,1,4376_7778022_104021,4376_38 -4289_75965,259,4376_3385,Newtownmountkennedy,105764633,1,4376_7778022_104140,4376_38 -4289_75965,270,4376_3386,Newtownmountkennedy,105277411,1,4376_7778022_104160,4376_38 -4289_75965,146,4376_3387,Newtownmountkennedy,105247411,1,4376_7778022_104160,4376_38 -4289_75965,271,4376_3388,Newtownmountkennedy,105237411,1,4376_7778022_104160,4376_38 -4289_75965,115,4376_3389,Newtownmountkennedy,105217411,1,4376_7778022_104160,4376_38 -4289_75960,262,4376_339,Sutton Station,105432412,0,4376_7778022_103104,4376_1 -4289_75965,260,4376_3390,Newtownmountkennedy,105311847,1,4376_7778022_100192,4376_38 -4289_75965,261,4376_3391,Newtownmountkennedy,105321847,1,4376_7778022_100192,4376_38 -4289_75965,262,4376_3392,Newtownmountkennedy,105431847,1,4376_7778022_100192,4376_38 -4289_75965,263,4376_3393,Newtownmountkennedy,105541847,1,4376_7778022_100192,4376_38 -4289_75965,264,4376_3394,Newtownmountkennedy,105651847,1,4376_7778022_100192,4376_38 -4289_75965,265,4376_3395,Newtownmountkennedy,105811847,1,4376_7778022_100192,4376_38 -4289_75965,266,4376_3396,Newtownmountkennedy,105821847,1,4376_7778022_100192,4376_38 -4289_75965,267,4376_3397,Newtownmountkennedy,106051847,1,4376_7778022_100192,4376_38 -4289_75965,268,4376_3398,Newtownmountkennedy,106141847,1,4376_7778022_100192,4376_38 -4289_75965,269,4376_3399,Newtownmountkennedy,106231847,1,4376_7778022_100192,4376_38 -4289_75960,260,4376_34,Sutton Station,105311172,0,4376_7778022_103501,4376_1 -4289_75960,263,4376_340,Sutton Station,105542412,0,4376_7778022_103104,4376_1 -4289_75965,259,4376_3400,Newtownmountkennedy,105764683,1,4376_7778022_104011,4376_38 -4289_75965,270,4376_3401,Newtownmountkennedy,105277457,1,4376_7778022_104061,4376_38 -4289_75965,146,4376_3402,Newtownmountkennedy,105247457,1,4376_7778022_104061,4376_38 -4289_75965,271,4376_3403,Newtownmountkennedy,105237457,1,4376_7778022_104061,4376_38 -4289_75965,115,4376_3404,Newtownmountkennedy,105217457,1,4376_7778022_104061,4376_38 -4289_75965,260,4376_3405,Newtownmountkennedy,105311905,1,4376_7778022_104010,4376_38 -4289_75965,261,4376_3406,Newtownmountkennedy,105321905,1,4376_7778022_104010,4376_38 -4289_75965,262,4376_3407,Newtownmountkennedy,105431905,1,4376_7778022_104010,4376_38 -4289_75965,263,4376_3408,Newtownmountkennedy,105541905,1,4376_7778022_104010,4376_38 -4289_75965,264,4376_3409,Newtownmountkennedy,105651905,1,4376_7778022_104010,4376_38 -4289_75960,264,4376_341,Sutton Station,105652412,0,4376_7778022_103104,4376_1 -4289_75965,265,4376_3410,Newtownmountkennedy,105811905,1,4376_7778022_104010,4376_38 -4289_75965,266,4376_3411,Newtownmountkennedy,105821905,1,4376_7778022_104010,4376_38 -4289_75965,267,4376_3412,Newtownmountkennedy,106051905,1,4376_7778022_104010,4376_38 -4289_75965,268,4376_3413,Newtownmountkennedy,106141905,1,4376_7778022_104010,4376_38 -4289_75965,269,4376_3414,Newtownmountkennedy,106231905,1,4376_7778022_104010,4376_38 -4289_75965,259,4376_3415,Newtownmountkennedy,105764735,1,4376_7778022_104071,4376_38 -4289_75965,270,4376_3416,Newtownmountkennedy,105277501,1,4376_7778022_104140,4376_38 -4289_75965,146,4376_3417,Newtownmountkennedy,105247501,1,4376_7778022_104140,4376_38 -4289_75965,271,4376_3418,Newtownmountkennedy,105237501,1,4376_7778022_104140,4376_38 -4289_75965,115,4376_3419,Newtownmountkennedy,105217501,1,4376_7778022_104140,4376_38 -4289_75960,265,4376_342,Sutton Station,105812412,0,4376_7778022_103104,4376_1 -4289_75965,260,4376_3420,Newtownmountkennedy,105311959,1,4376_7778022_104050,4376_38 -4289_75965,261,4376_3421,Newtownmountkennedy,105321959,1,4376_7778022_104050,4376_38 -4289_75965,262,4376_3422,Newtownmountkennedy,105431959,1,4376_7778022_104050,4376_38 -4289_75965,263,4376_3423,Newtownmountkennedy,105541959,1,4376_7778022_104050,4376_38 -4289_75965,264,4376_3424,Newtownmountkennedy,105651959,1,4376_7778022_104050,4376_38 -4289_75965,265,4376_3425,Newtownmountkennedy,105811959,1,4376_7778022_104050,4376_38 -4289_75965,266,4376_3426,Newtownmountkennedy,105821959,1,4376_7778022_104050,4376_38 -4289_75965,267,4376_3427,Newtownmountkennedy,106051959,1,4376_7778022_104050,4376_38 -4289_75965,268,4376_3428,Newtownmountkennedy,106141959,1,4376_7778022_104050,4376_38 -4289_75965,269,4376_3429,Newtownmountkennedy,106231959,1,4376_7778022_104050,4376_38 -4289_75960,266,4376_343,Sutton Station,105822412,0,4376_7778022_103104,4376_1 -4289_75965,259,4376_3430,Newtownmountkennedy,105764787,1,4376_7778022_104133,4376_38 -4289_75965,270,4376_3431,Newtownmountkennedy,105277547,1,4376_7778022_104090,4376_38 -4289_75965,146,4376_3432,Newtownmountkennedy,105247547,1,4376_7778022_104090,4376_38 -4289_75965,271,4376_3433,Newtownmountkennedy,105237547,1,4376_7778022_104090,4376_38 -4289_75965,115,4376_3434,Newtownmountkennedy,105217547,1,4376_7778022_104090,4376_38 -4289_75965,260,4376_3435,Newtownmountkennedy,105312013,1,4376_7778022_104180,4376_38 -4289_75965,261,4376_3436,Newtownmountkennedy,105322013,1,4376_7778022_104180,4376_38 -4289_75965,262,4376_3437,Newtownmountkennedy,105432013,1,4376_7778022_104180,4376_38 -4289_75965,263,4376_3438,Newtownmountkennedy,105542013,1,4376_7778022_104180,4376_38 -4289_75965,264,4376_3439,Newtownmountkennedy,105652013,1,4376_7778022_104180,4376_38 -4289_75960,267,4376_344,Sutton Station,106052412,0,4376_7778022_103104,4376_1 -4289_75965,265,4376_3440,Newtownmountkennedy,105812013,1,4376_7778022_104180,4376_38 -4289_75965,266,4376_3441,Newtownmountkennedy,105822013,1,4376_7778022_104180,4376_38 -4289_75965,267,4376_3442,Newtownmountkennedy,106052013,1,4376_7778022_104180,4376_38 -4289_75965,268,4376_3443,Newtownmountkennedy,106142013,1,4376_7778022_104180,4376_38 -4289_75965,269,4376_3444,Newtownmountkennedy,106232013,1,4376_7778022_104180,4376_38 -4289_75965,259,4376_3445,Newtownmountkennedy,105764837,1,4376_7778022_104140,4376_38 -4289_75965,270,4376_3446,Newtownmountkennedy,105277593,1,4376_7778022_104160,4376_38 -4289_75965,146,4376_3447,Newtownmountkennedy,105247593,1,4376_7778022_104160,4376_38 -4289_75965,271,4376_3448,Newtownmountkennedy,105237593,1,4376_7778022_104160,4376_38 -4289_75965,115,4376_3449,Newtownmountkennedy,105217593,1,4376_7778022_104160,4376_38 -4289_75960,268,4376_345,Sutton Station,106142412,0,4376_7778022_103104,4376_1 -4289_75965,260,4376_3450,Newtownmountkennedy,105312075,1,4376_7778022_104150,4376_38 -4289_75965,261,4376_3451,Newtownmountkennedy,105322075,1,4376_7778022_104150,4376_38 -4289_75965,262,4376_3452,Newtownmountkennedy,105432075,1,4376_7778022_104150,4376_38 -4289_75965,263,4376_3453,Newtownmountkennedy,105542075,1,4376_7778022_104150,4376_38 -4289_75965,264,4376_3454,Newtownmountkennedy,105652075,1,4376_7778022_104150,4376_38 -4289_75965,265,4376_3455,Newtownmountkennedy,105812075,1,4376_7778022_104150,4376_38 -4289_75965,266,4376_3456,Newtownmountkennedy,105822075,1,4376_7778022_104150,4376_38 -4289_75965,267,4376_3457,Newtownmountkennedy,106052075,1,4376_7778022_104150,4376_38 -4289_75965,268,4376_3458,Newtownmountkennedy,106142075,1,4376_7778022_104150,4376_38 -4289_75965,269,4376_3459,Newtownmountkennedy,106232075,1,4376_7778022_104150,4376_38 -4289_75960,269,4376_346,Sutton Station,106232412,0,4376_7778022_103104,4376_1 -4289_75965,259,4376_3460,Newtownmountkennedy,105764889,1,4376_7778022_104062,4376_38 -4289_75965,270,4376_3461,Newtownmountkennedy,105277637,1,4376_7778022_104120,4376_38 -4289_75965,146,4376_3462,Newtownmountkennedy,105247637,1,4376_7778022_104120,4376_38 -4289_75965,271,4376_3463,Newtownmountkennedy,105237637,1,4376_7778022_104120,4376_38 -4289_75965,115,4376_3464,Newtownmountkennedy,105217637,1,4376_7778022_104120,4376_38 -4289_75965,260,4376_3465,Newtownmountkennedy,105312133,1,4376_7778022_100192,4376_38 -4289_75965,261,4376_3466,Newtownmountkennedy,105322133,1,4376_7778022_100192,4376_38 -4289_75965,262,4376_3467,Newtownmountkennedy,105432133,1,4376_7778022_100192,4376_38 -4289_75965,263,4376_3468,Newtownmountkennedy,105542133,1,4376_7778022_100192,4376_38 -4289_75965,264,4376_3469,Newtownmountkennedy,105652133,1,4376_7778022_100192,4376_38 -4289_75960,259,4376_347,Sutton Station,105765154,0,4376_7778022_103501,4376_1 -4289_75965,265,4376_3470,Newtownmountkennedy,105812133,1,4376_7778022_100192,4376_38 -4289_75965,266,4376_3471,Newtownmountkennedy,105822133,1,4376_7778022_100192,4376_38 -4289_75965,267,4376_3472,Newtownmountkennedy,106052133,1,4376_7778022_100192,4376_38 -4289_75965,268,4376_3473,Newtownmountkennedy,106142133,1,4376_7778022_100192,4376_38 -4289_75965,269,4376_3474,Newtownmountkennedy,106232133,1,4376_7778022_100192,4376_38 -4289_75965,259,4376_3475,Newtownmountkennedy,105764941,1,4376_7778022_104192,4376_38 -4289_75965,270,4376_3476,Newtownmountkennedy,105277683,1,4376_7778022_104170,4376_38 -4289_75965,146,4376_3477,Newtownmountkennedy,105247683,1,4376_7778022_104170,4376_38 -4289_75965,271,4376_3478,Newtownmountkennedy,105237683,1,4376_7778022_104170,4376_38 -4289_75965,115,4376_3479,Newtownmountkennedy,105217683,1,4376_7778022_104170,4376_38 -4289_75960,270,4376_348,Sutton Station,105277848,0,4376_7778022_103106,4376_2 -4289_75965,260,4376_3480,Newtownmountkennedy,105312219,1,4376_7778022_104162,4376_38 -4289_75965,261,4376_3481,Newtownmountkennedy,105322219,1,4376_7778022_104162,4376_38 -4289_75965,262,4376_3482,Newtownmountkennedy,105432219,1,4376_7778022_104162,4376_38 -4289_75965,263,4376_3483,Newtownmountkennedy,105542219,1,4376_7778022_104162,4376_38 -4289_75965,264,4376_3484,Newtownmountkennedy,105652219,1,4376_7778022_104162,4376_38 -4289_75965,265,4376_3485,Newtownmountkennedy,105812219,1,4376_7778022_104162,4376_38 -4289_75965,266,4376_3486,Newtownmountkennedy,105822219,1,4376_7778022_104162,4376_38 -4289_75965,267,4376_3487,Newtownmountkennedy,106052219,1,4376_7778022_104162,4376_38 -4289_75965,268,4376_3488,Newtownmountkennedy,106142219,1,4376_7778022_104162,4376_38 -4289_75965,269,4376_3489,Newtownmountkennedy,106232219,1,4376_7778022_104162,4376_38 -4289_75960,146,4376_349,Sutton Station,105247848,0,4376_7778022_103106,4376_2 -4289_75965,259,4376_3490,Newtownmountkennedy,105764991,1,4376_7778022_104133,4376_38 -4289_75965,270,4376_3491,Newtownmountkennedy,105277729,1,4376_7778022_104062,4376_38 -4289_75965,146,4376_3492,Newtownmountkennedy,105247729,1,4376_7778022_104062,4376_38 -4289_75965,271,4376_3493,Newtownmountkennedy,105237729,1,4376_7778022_104062,4376_38 -4289_75965,115,4376_3494,Newtownmountkennedy,105217729,1,4376_7778022_104062,4376_38 -4289_75965,260,4376_3495,Newtownmountkennedy,105312289,1,4376_7778022_104102,4376_38 -4289_75965,261,4376_3496,Newtownmountkennedy,105322289,1,4376_7778022_104102,4376_38 -4289_75965,262,4376_3497,Newtownmountkennedy,105432289,1,4376_7778022_104102,4376_38 -4289_75965,263,4376_3498,Newtownmountkennedy,105542289,1,4376_7778022_104102,4376_38 -4289_75965,264,4376_3499,Newtownmountkennedy,105652289,1,4376_7778022_104102,4376_38 -4289_75960,261,4376_35,Sutton Station,105321172,0,4376_7778022_103501,4376_1 -4289_75960,271,4376_350,Sutton Station,105237848,0,4376_7778022_103106,4376_2 -4289_75965,265,4376_3500,Newtownmountkennedy,105812289,1,4376_7778022_104102,4376_38 -4289_75965,266,4376_3501,Newtownmountkennedy,105822289,1,4376_7778022_104102,4376_38 -4289_75965,267,4376_3502,Newtownmountkennedy,106052289,1,4376_7778022_104102,4376_38 -4289_75965,268,4376_3503,Newtownmountkennedy,106142289,1,4376_7778022_104102,4376_38 -4289_75965,269,4376_3504,Newtownmountkennedy,106232289,1,4376_7778022_104102,4376_38 -4289_75965,259,4376_3505,Newtownmountkennedy,105765043,1,4376_7778022_104072,4376_38 -4289_75965,270,4376_3506,Newtownmountkennedy,105277773,1,4376_7778022_104140,4376_38 -4289_75965,146,4376_3507,Newtownmountkennedy,105247773,1,4376_7778022_104140,4376_38 -4289_75965,271,4376_3508,Newtownmountkennedy,105237773,1,4376_7778022_104140,4376_38 -4289_75965,115,4376_3509,Newtownmountkennedy,105217773,1,4376_7778022_104140,4376_38 -4289_75960,115,4376_351,Sutton Station,105217848,0,4376_7778022_103106,4376_2 -4289_75965,260,4376_3510,Newtownmountkennedy,105312347,1,4376_7778022_104180,4376_38 -4289_75965,261,4376_3511,Newtownmountkennedy,105322347,1,4376_7778022_104180,4376_38 -4289_75965,262,4376_3512,Newtownmountkennedy,105432347,1,4376_7778022_104180,4376_38 -4289_75965,263,4376_3513,Newtownmountkennedy,105542347,1,4376_7778022_104180,4376_38 -4289_75965,264,4376_3514,Newtownmountkennedy,105652347,1,4376_7778022_104180,4376_38 -4289_75965,265,4376_3515,Newtownmountkennedy,105812347,1,4376_7778022_104180,4376_38 -4289_75965,266,4376_3516,Newtownmountkennedy,105822347,1,4376_7778022_104180,4376_38 -4289_75965,267,4376_3517,Newtownmountkennedy,106052347,1,4376_7778022_104180,4376_38 -4289_75965,268,4376_3518,Newtownmountkennedy,106142347,1,4376_7778022_104180,4376_38 -4289_75965,269,4376_3519,Newtownmountkennedy,106232347,1,4376_7778022_104180,4376_38 -4289_75960,260,4376_352,Sutton Station,105312468,0,4376_7778022_103108,4376_1 -4289_75965,259,4376_3520,Newtownmountkennedy,105765095,1,4376_7778022_104062,4376_38 -4289_75965,270,4376_3521,Newtownmountkennedy,105277819,1,4376_7778022_104120,4376_38 -4289_75965,146,4376_3522,Newtownmountkennedy,105247819,1,4376_7778022_104120,4376_38 -4289_75965,271,4376_3523,Newtownmountkennedy,105237819,1,4376_7778022_104120,4376_38 -4289_75965,115,4376_3524,Newtownmountkennedy,105217819,1,4376_7778022_104120,4376_38 -4289_75965,260,4376_3525,Newtownmountkennedy,105312409,1,4376_7778022_104050,4376_38 -4289_75965,261,4376_3526,Newtownmountkennedy,105322409,1,4376_7778022_104050,4376_38 -4289_75965,262,4376_3527,Newtownmountkennedy,105432409,1,4376_7778022_104050,4376_38 -4289_75965,263,4376_3528,Newtownmountkennedy,105542409,1,4376_7778022_104050,4376_38 -4289_75965,264,4376_3529,Newtownmountkennedy,105652409,1,4376_7778022_104050,4376_38 -4289_75960,261,4376_353,Sutton Station,105322468,0,4376_7778022_103108,4376_1 -4289_75965,265,4376_3530,Newtownmountkennedy,105812409,1,4376_7778022_104050,4376_38 -4289_75965,266,4376_3531,Newtownmountkennedy,105822409,1,4376_7778022_104050,4376_38 -4289_75965,267,4376_3532,Newtownmountkennedy,106052409,1,4376_7778022_104050,4376_38 -4289_75965,268,4376_3533,Newtownmountkennedy,106142409,1,4376_7778022_104050,4376_38 -4289_75965,269,4376_3534,Newtownmountkennedy,106232409,1,4376_7778022_104050,4376_38 -4289_75965,259,4376_3535,Newtownmountkennedy,105765143,1,4376_7778022_104192,4376_39 -4289_75965,270,4376_3536,Newtownmountkennedy,105277867,1,4376_7778022_104170,4376_38 -4289_75965,146,4376_3537,Newtownmountkennedy,105247867,1,4376_7778022_104170,4376_38 -4289_75965,271,4376_3538,Newtownmountkennedy,105237867,1,4376_7778022_104170,4376_38 -4289_75965,115,4376_3539,Newtownmountkennedy,105217867,1,4376_7778022_104170,4376_38 -4289_75960,262,4376_354,Sutton Station,105432468,0,4376_7778022_103108,4376_1 -4289_75965,260,4376_3540,Newtownmountkennedy,105312465,1,4376_7778022_100192,4376_38 -4289_75965,261,4376_3541,Newtownmountkennedy,105322465,1,4376_7778022_100192,4376_38 -4289_75965,262,4376_3542,Newtownmountkennedy,105432465,1,4376_7778022_100192,4376_38 -4289_75965,263,4376_3543,Newtownmountkennedy,105542465,1,4376_7778022_100192,4376_38 -4289_75965,264,4376_3544,Newtownmountkennedy,105652465,1,4376_7778022_100192,4376_38 -4289_75965,265,4376_3545,Newtownmountkennedy,105812465,1,4376_7778022_100192,4376_38 -4289_75965,266,4376_3546,Newtownmountkennedy,105822465,1,4376_7778022_100192,4376_38 -4289_75965,267,4376_3547,Newtownmountkennedy,106052465,1,4376_7778022_100192,4376_38 -4289_75965,268,4376_3548,Newtownmountkennedy,106142465,1,4376_7778022_100192,4376_38 -4289_75965,269,4376_3549,Newtownmountkennedy,106232465,1,4376_7778022_100192,4376_38 -4289_75960,263,4376_355,Sutton Station,105542468,0,4376_7778022_103108,4376_1 -4289_75965,259,4376_3550,Newtownmountkennedy,105765195,1,4376_7778022_104210,4376_39 -4289_75965,270,4376_3551,Newtownmountkennedy,105277907,1,4376_7778022_104032,4376_38 -4289_75965,146,4376_3552,Newtownmountkennedy,105247907,1,4376_7778022_104032,4376_38 -4289_75965,271,4376_3553,Newtownmountkennedy,105237907,1,4376_7778022_104032,4376_38 -4289_75965,115,4376_3554,Newtownmountkennedy,105217907,1,4376_7778022_104032,4376_38 -4289_75965,259,4376_3555,Newtownmountkennedy,105765247,1,4376_7778022_104012,4376_38 -4289_75965,260,4376_3556,Newtownmountkennedy,105312523,1,4376_7778022_104162,4376_38 -4289_75965,261,4376_3557,Newtownmountkennedy,105322523,1,4376_7778022_104162,4376_38 -4289_75965,262,4376_3558,Newtownmountkennedy,105432523,1,4376_7778022_104162,4376_38 -4289_75965,263,4376_3559,Newtownmountkennedy,105542523,1,4376_7778022_104162,4376_38 -4289_75960,264,4376_356,Sutton Station,105652468,0,4376_7778022_103108,4376_1 -4289_75965,264,4376_3560,Newtownmountkennedy,105652523,1,4376_7778022_104162,4376_38 -4289_75965,265,4376_3561,Newtownmountkennedy,105812523,1,4376_7778022_104162,4376_38 -4289_75965,266,4376_3562,Newtownmountkennedy,105822523,1,4376_7778022_104162,4376_38 -4289_75965,267,4376_3563,Newtownmountkennedy,106052523,1,4376_7778022_104162,4376_38 -4289_75965,268,4376_3564,Newtownmountkennedy,106142523,1,4376_7778022_104162,4376_38 -4289_75965,269,4376_3565,Newtownmountkennedy,106232523,1,4376_7778022_104162,4376_38 -4289_75965,270,4376_3566,Newtownmountkennedy,105277953,1,4376_7778022_104140,4376_38 -4289_75965,146,4376_3567,Newtownmountkennedy,105247953,1,4376_7778022_104140,4376_38 -4289_75965,271,4376_3568,Newtownmountkennedy,105237953,1,4376_7778022_104140,4376_38 -4289_75965,115,4376_3569,Newtownmountkennedy,105217953,1,4376_7778022_104140,4376_38 -4289_75960,265,4376_357,Sutton Station,105812468,0,4376_7778022_103108,4376_1 -4289_75965,260,4376_3570,Newtownmountkennedy,105312583,1,4376_7778022_104122,4376_38 -4289_75965,261,4376_3571,Newtownmountkennedy,105322583,1,4376_7778022_104122,4376_38 -4289_75965,262,4376_3572,Newtownmountkennedy,105432583,1,4376_7778022_104122,4376_38 -4289_75965,263,4376_3573,Newtownmountkennedy,105542583,1,4376_7778022_104122,4376_38 -4289_75965,264,4376_3574,Newtownmountkennedy,105652583,1,4376_7778022_104122,4376_38 -4289_75965,265,4376_3575,Newtownmountkennedy,105812583,1,4376_7778022_104122,4376_38 -4289_75965,266,4376_3576,Newtownmountkennedy,105822583,1,4376_7778022_104122,4376_38 -4289_75965,267,4376_3577,Newtownmountkennedy,106052583,1,4376_7778022_104122,4376_38 -4289_75965,268,4376_3578,Newtownmountkennedy,106142583,1,4376_7778022_104122,4376_38 -4289_75965,269,4376_3579,Newtownmountkennedy,106232583,1,4376_7778022_104122,4376_38 -4289_75960,266,4376_358,Sutton Station,105822468,0,4376_7778022_103108,4376_1 -4289_75965,259,4376_3580,Newtownmountkennedy,105765305,1,4376_7778022_104133,4376_38 -4289_75965,270,4376_3581,Newtownmountkennedy,105277995,1,4376_7778022_104180,4376_38 -4289_75965,146,4376_3582,Newtownmountkennedy,105247995,1,4376_7778022_104180,4376_38 -4289_75965,271,4376_3583,Newtownmountkennedy,105237995,1,4376_7778022_104180,4376_38 -4289_75965,115,4376_3584,Newtownmountkennedy,105217995,1,4376_7778022_104180,4376_38 -4289_75965,260,4376_3585,Newtownmountkennedy,105312641,1,4376_7778022_100080,4376_38 -4289_75965,261,4376_3586,Newtownmountkennedy,105322641,1,4376_7778022_100080,4376_38 -4289_75965,262,4376_3587,Newtownmountkennedy,105432641,1,4376_7778022_100080,4376_38 -4289_75965,263,4376_3588,Newtownmountkennedy,105542641,1,4376_7778022_100080,4376_38 -4289_75965,264,4376_3589,Newtownmountkennedy,105652641,1,4376_7778022_100080,4376_38 -4289_75960,267,4376_359,Sutton Station,106052468,0,4376_7778022_103108,4376_1 -4289_75965,265,4376_3590,Newtownmountkennedy,105812641,1,4376_7778022_100080,4376_38 -4289_75965,266,4376_3591,Newtownmountkennedy,105822641,1,4376_7778022_100080,4376_38 -4289_75965,267,4376_3592,Newtownmountkennedy,106052641,1,4376_7778022_100080,4376_38 -4289_75965,268,4376_3593,Newtownmountkennedy,106142641,1,4376_7778022_100080,4376_38 -4289_75965,269,4376_3594,Newtownmountkennedy,106232641,1,4376_7778022_100080,4376_38 -4289_75965,259,4376_3595,Newtownmountkennedy,105765349,1,4376_7778022_104162,4376_38 -4289_75965,270,4376_3596,Newtownmountkennedy,105278039,1,4376_7778022_104160,4376_38 -4289_75965,146,4376_3597,Newtownmountkennedy,105248039,1,4376_7778022_104160,4376_38 -4289_75965,271,4376_3598,Newtownmountkennedy,105238039,1,4376_7778022_104160,4376_38 -4289_75965,115,4376_3599,Newtownmountkennedy,105218039,1,4376_7778022_104160,4376_38 -4289_75960,262,4376_36,Sutton Station,105431172,0,4376_7778022_103501,4376_1 -4289_75960,268,4376_360,Sutton Station,106142468,0,4376_7778022_103108,4376_1 -4289_75965,260,4376_3600,Newtownmountkennedy,105312685,1,4376_7778022_104050,4376_38 -4289_75965,261,4376_3601,Newtownmountkennedy,105322685,1,4376_7778022_104050,4376_38 -4289_75965,262,4376_3602,Newtownmountkennedy,105432685,1,4376_7778022_104050,4376_38 -4289_75965,263,4376_3603,Newtownmountkennedy,105542685,1,4376_7778022_104050,4376_38 -4289_75965,264,4376_3604,Newtownmountkennedy,105652685,1,4376_7778022_104050,4376_38 -4289_75965,265,4376_3605,Newtownmountkennedy,105812685,1,4376_7778022_104050,4376_38 -4289_75965,266,4376_3606,Newtownmountkennedy,105822685,1,4376_7778022_104050,4376_38 -4289_75965,267,4376_3607,Newtownmountkennedy,106052685,1,4376_7778022_104050,4376_38 -4289_75965,268,4376_3608,Newtownmountkennedy,106142685,1,4376_7778022_104050,4376_38 -4289_75965,269,4376_3609,Newtownmountkennedy,106232685,1,4376_7778022_104050,4376_38 -4289_75960,269,4376_361,Sutton Station,106232468,0,4376_7778022_103108,4376_1 -4289_75965,259,4376_3610,Newtownmountkennedy,105765391,1,4376_7778022_104072,4376_38 -4289_75965,270,4376_3611,Newtownmountkennedy,105278073,1,4376_7778022_104042,4376_38 -4289_75965,146,4376_3612,Newtownmountkennedy,105248073,1,4376_7778022_104042,4376_38 -4289_75965,271,4376_3613,Newtownmountkennedy,105238073,1,4376_7778022_104042,4376_38 -4289_75965,115,4376_3614,Newtownmountkennedy,105218073,1,4376_7778022_104042,4376_38 -4289_75965,260,4376_3615,Newtownmountkennedy,105312741,1,4376_7778022_104010,4376_38 -4289_75965,261,4376_3616,Newtownmountkennedy,105322741,1,4376_7778022_104010,4376_38 -4289_75965,262,4376_3617,Newtownmountkennedy,105432741,1,4376_7778022_104010,4376_38 -4289_75965,263,4376_3618,Newtownmountkennedy,105542741,1,4376_7778022_104010,4376_38 -4289_75965,264,4376_3619,Newtownmountkennedy,105652741,1,4376_7778022_104010,4376_38 -4289_75960,259,4376_362,Sutton Station,105765200,0,4376_7778022_103101,4376_1 -4289_75965,265,4376_3620,Newtownmountkennedy,105812741,1,4376_7778022_104010,4376_38 -4289_75965,266,4376_3621,Newtownmountkennedy,105822741,1,4376_7778022_104010,4376_38 -4289_75965,267,4376_3622,Newtownmountkennedy,106052741,1,4376_7778022_104010,4376_38 -4289_75965,268,4376_3623,Newtownmountkennedy,106142741,1,4376_7778022_104010,4376_38 -4289_75965,269,4376_3624,Newtownmountkennedy,106232741,1,4376_7778022_104010,4376_38 -4289_75965,259,4376_3625,Newtownmountkennedy,105765441,1,4376_7778022_104210,4376_38 -4289_75965,270,4376_3626,Newtownmountkennedy,105278121,1,4376_7778022_104032,4376_38 -4289_75965,146,4376_3627,Newtownmountkennedy,105248121,1,4376_7778022_104032,4376_38 -4289_75965,271,4376_3628,Newtownmountkennedy,105238121,1,4376_7778022_104032,4376_38 -4289_75965,115,4376_3629,Newtownmountkennedy,105218121,1,4376_7778022_104032,4376_38 -4289_75960,270,4376_363,Sutton Station,105277886,0,4376_7778022_103103,4376_2 -4289_75965,260,4376_3630,Newtownmountkennedy,105312783,1,4376_7778022_104122,4376_38 -4289_75965,261,4376_3631,Newtownmountkennedy,105322783,1,4376_7778022_104122,4376_38 -4289_75965,262,4376_3632,Newtownmountkennedy,105432783,1,4376_7778022_104122,4376_38 -4289_75965,263,4376_3633,Newtownmountkennedy,105542783,1,4376_7778022_104122,4376_38 -4289_75965,264,4376_3634,Newtownmountkennedy,105652783,1,4376_7778022_104122,4376_38 -4289_75965,265,4376_3635,Newtownmountkennedy,105812783,1,4376_7778022_104122,4376_38 -4289_75965,266,4376_3636,Newtownmountkennedy,105822783,1,4376_7778022_104122,4376_38 -4289_75965,267,4376_3637,Newtownmountkennedy,106052783,1,4376_7778022_104122,4376_38 -4289_75965,268,4376_3638,Newtownmountkennedy,106142783,1,4376_7778022_104122,4376_38 -4289_75965,269,4376_3639,Newtownmountkennedy,106232783,1,4376_7778022_104122,4376_38 -4289_75960,146,4376_364,Sutton Station,105247886,0,4376_7778022_103103,4376_2 -4289_75965,259,4376_3640,Newtownmountkennedy,105765479,1,4376_7778022_104133,4376_38 -4289_75965,270,4376_3641,Newtownmountkennedy,105278153,1,4376_7778022_104180,4376_38 -4289_75965,146,4376_3642,Newtownmountkennedy,105248153,1,4376_7778022_104180,4376_38 -4289_75965,271,4376_3643,Newtownmountkennedy,105238153,1,4376_7778022_104180,4376_38 -4289_75965,115,4376_3644,Newtownmountkennedy,105218153,1,4376_7778022_104180,4376_38 -4289_75965,260,4376_3645,Newtownmountkennedy,105312837,1,4376_7778022_104102,4376_38 -4289_75965,261,4376_3646,Newtownmountkennedy,105322837,1,4376_7778022_104102,4376_38 -4289_75965,262,4376_3647,Newtownmountkennedy,105432837,1,4376_7778022_104102,4376_38 -4289_75965,263,4376_3648,Newtownmountkennedy,105542837,1,4376_7778022_104102,4376_38 -4289_75965,264,4376_3649,Newtownmountkennedy,105652837,1,4376_7778022_104102,4376_38 -4289_75960,271,4376_365,Sutton Station,105237886,0,4376_7778022_103103,4376_2 -4289_75965,265,4376_3650,Newtownmountkennedy,105812837,1,4376_7778022_104102,4376_38 -4289_75965,266,4376_3651,Newtownmountkennedy,105822837,1,4376_7778022_104102,4376_38 -4289_75965,267,4376_3652,Newtownmountkennedy,106052837,1,4376_7778022_104102,4376_38 -4289_75965,268,4376_3653,Newtownmountkennedy,106142837,1,4376_7778022_104102,4376_38 -4289_75965,269,4376_3654,Newtownmountkennedy,106232837,1,4376_7778022_104102,4376_38 -4289_75965,259,4376_3655,Newtownmountkennedy,105765527,1,4376_7778022_104202,4376_38 -4289_75965,270,4376_3656,Newtownmountkennedy,105278199,1,4376_7778022_104170,4376_38 -4289_75965,146,4376_3657,Newtownmountkennedy,105248199,1,4376_7778022_104170,4376_38 -4289_75965,271,4376_3658,Newtownmountkennedy,105238199,1,4376_7778022_104170,4376_38 -4289_75965,115,4376_3659,Newtownmountkennedy,105218199,1,4376_7778022_104170,4376_38 -4289_75960,115,4376_366,Sutton Station,105217886,0,4376_7778022_103103,4376_2 -4289_75965,260,4376_3660,Newtownmountkennedy,105312881,1,4376_7778022_104030,4376_38 -4289_75965,261,4376_3661,Newtownmountkennedy,105322881,1,4376_7778022_104030,4376_38 -4289_75965,262,4376_3662,Newtownmountkennedy,105432881,1,4376_7778022_104030,4376_38 -4289_75965,263,4376_3663,Newtownmountkennedy,105542881,1,4376_7778022_104030,4376_38 -4289_75965,264,4376_3664,Newtownmountkennedy,105652881,1,4376_7778022_104030,4376_38 -4289_75965,265,4376_3665,Newtownmountkennedy,105812881,1,4376_7778022_104030,4376_38 -4289_75965,266,4376_3666,Newtownmountkennedy,105822881,1,4376_7778022_104030,4376_38 -4289_75965,267,4376_3667,Newtownmountkennedy,106052881,1,4376_7778022_104030,4376_38 -4289_75965,268,4376_3668,Newtownmountkennedy,106142881,1,4376_7778022_104030,4376_38 -4289_75965,269,4376_3669,Newtownmountkennedy,106232881,1,4376_7778022_104030,4376_38 -4289_75960,260,4376_367,Sutton Station,105312526,0,4376_7778022_103501,4376_1 -4289_75965,259,4376_3670,Newtownmountkennedy,105765567,1,4376_7778022_104072,4376_38 -4289_75965,270,4376_3671,Newtownmountkennedy,105278231,1,4376_7778022_104042,4376_38 -4289_75965,146,4376_3672,Newtownmountkennedy,105248231,1,4376_7778022_104042,4376_38 -4289_75965,271,4376_3673,Newtownmountkennedy,105238231,1,4376_7778022_104042,4376_38 -4289_75965,115,4376_3674,Newtownmountkennedy,105218231,1,4376_7778022_104042,4376_38 -4289_75965,260,4376_3675,Newtownmountkennedy,105312931,1,4376_7778022_104162,4376_38 -4289_75965,261,4376_3676,Newtownmountkennedy,105322931,1,4376_7778022_104162,4376_38 -4289_75965,262,4376_3677,Newtownmountkennedy,105432931,1,4376_7778022_104162,4376_38 -4289_75965,263,4376_3678,Newtownmountkennedy,105542931,1,4376_7778022_104162,4376_38 -4289_75965,264,4376_3679,Newtownmountkennedy,105652931,1,4376_7778022_104162,4376_38 -4289_75960,261,4376_368,Sutton Station,105322526,0,4376_7778022_103501,4376_1 -4289_75965,265,4376_3680,Newtownmountkennedy,105812931,1,4376_7778022_104162,4376_38 -4289_75965,266,4376_3681,Newtownmountkennedy,105822931,1,4376_7778022_104162,4376_38 -4289_75965,267,4376_3682,Newtownmountkennedy,106052931,1,4376_7778022_104162,4376_38 -4289_75965,268,4376_3683,Newtownmountkennedy,106142931,1,4376_7778022_104162,4376_38 -4289_75965,269,4376_3684,Newtownmountkennedy,106232931,1,4376_7778022_104162,4376_38 -4289_75965,259,4376_3685,Newtownmountkennedy,105765613,1,4376_7778022_104012,4376_38 -4289_75965,270,4376_3686,Newtownmountkennedy,105278273,1,4376_7778022_104062,4376_38 -4289_75965,146,4376_3687,Newtownmountkennedy,105248273,1,4376_7778022_104062,4376_38 -4289_75965,271,4376_3688,Newtownmountkennedy,105238273,1,4376_7778022_104062,4376_38 -4289_75965,115,4376_3689,Newtownmountkennedy,105218273,1,4376_7778022_104062,4376_38 -4289_75960,262,4376_369,Sutton Station,105432526,0,4376_7778022_103501,4376_1 -4289_75965,260,4376_3690,Newtownmountkennedy,105312965,1,4376_7778022_104010,4376_38 -4289_75965,261,4376_3691,Newtownmountkennedy,105322965,1,4376_7778022_104010,4376_38 -4289_75965,262,4376_3692,Newtownmountkennedy,105432965,1,4376_7778022_104010,4376_38 -4289_75965,263,4376_3693,Newtownmountkennedy,105542965,1,4376_7778022_104010,4376_38 -4289_75965,264,4376_3694,Newtownmountkennedy,105652965,1,4376_7778022_104010,4376_38 -4289_75965,265,4376_3695,Newtownmountkennedy,105812965,1,4376_7778022_104010,4376_38 -4289_75965,266,4376_3696,Newtownmountkennedy,105822965,1,4376_7778022_104010,4376_38 -4289_75965,267,4376_3697,Newtownmountkennedy,106052965,1,4376_7778022_104010,4376_38 -4289_75965,268,4376_3698,Newtownmountkennedy,106142965,1,4376_7778022_104010,4376_38 -4289_75965,269,4376_3699,Newtownmountkennedy,106232965,1,4376_7778022_104010,4376_38 -4289_75960,263,4376_37,Sutton Station,105541172,0,4376_7778022_103501,4376_1 -4289_75960,263,4376_370,Sutton Station,105542526,0,4376_7778022_103501,4376_1 -4289_75965,259,4376_3700,Newtownmountkennedy,105765649,1,4376_7778022_104210,4376_38 -4289_75965,270,4376_3701,Newtownmountkennedy,105278299,1,4376_7778022_104032,4376_38 -4289_75965,146,4376_3702,Newtownmountkennedy,105248299,1,4376_7778022_104032,4376_38 -4289_75965,271,4376_3703,Newtownmountkennedy,105238299,1,4376_7778022_104032,4376_38 -4289_75965,115,4376_3704,Newtownmountkennedy,105218299,1,4376_7778022_104032,4376_38 -4289_75965,260,4376_3705,Newtownmountkennedy,105313007,1,4376_7778022_104030,4376_38 -4289_75965,261,4376_3706,Newtownmountkennedy,105323007,1,4376_7778022_104030,4376_38 -4289_75965,262,4376_3707,Newtownmountkennedy,105433007,1,4376_7778022_104030,4376_38 -4289_75965,263,4376_3708,Newtownmountkennedy,105543007,1,4376_7778022_104030,4376_38 -4289_75965,264,4376_3709,Newtownmountkennedy,105653007,1,4376_7778022_104030,4376_38 -4289_75960,264,4376_371,Sutton Station,105652526,0,4376_7778022_103501,4376_1 -4289_75965,265,4376_3710,Newtownmountkennedy,105813007,1,4376_7778022_104030,4376_38 -4289_75965,266,4376_3711,Newtownmountkennedy,105823007,1,4376_7778022_104030,4376_38 -4289_75965,267,4376_3712,Newtownmountkennedy,106053007,1,4376_7778022_104030,4376_38 -4289_75965,268,4376_3713,Newtownmountkennedy,106143007,1,4376_7778022_104030,4376_38 -4289_75965,269,4376_3714,Newtownmountkennedy,106233007,1,4376_7778022_104030,4376_38 -4289_75966,259,4376_3715,Bray Station,105764034,0,4376_7778022_104011,4376_41 -4289_75966,260,4376_3716,Bray Station,105311056,0,4376_7778022_104010,4376_41 -4289_75966,261,4376_3717,Bray Station,105321056,0,4376_7778022_104010,4376_41 -4289_75966,262,4376_3718,Bray Station,105431056,0,4376_7778022_104010,4376_41 -4289_75966,263,4376_3719,Bray Station,105541056,0,4376_7778022_104010,4376_41 -4289_75960,265,4376_372,Sutton Station,105812526,0,4376_7778022_103501,4376_1 -4289_75966,264,4376_3720,Bray Station,105651056,0,4376_7778022_104010,4376_41 -4289_75966,265,4376_3721,Bray Station,105811056,0,4376_7778022_104010,4376_41 -4289_75966,266,4376_3722,Bray Station,105821056,0,4376_7778022_104010,4376_41 -4289_75966,267,4376_3723,Bray Station,106051056,0,4376_7778022_104010,4376_41 -4289_75966,268,4376_3724,Bray Station,106141056,0,4376_7778022_104010,4376_41 -4289_75966,269,4376_3725,Bray Station,106231056,0,4376_7778022_104010,4376_41 -4289_75966,259,4376_3726,Bray Station,105764098,0,4376_7778022_104071,4376_40 -4289_75966,260,4376_3727,Bray Station,105311164,0,4376_7778022_104010,4376_40 -4289_75966,261,4376_3728,Bray Station,105321164,0,4376_7778022_104010,4376_40 -4289_75966,262,4376_3729,Bray Station,105431164,0,4376_7778022_104010,4376_40 -4289_75960,266,4376_373,Sutton Station,105822526,0,4376_7778022_103501,4376_1 -4289_75966,263,4376_3730,Bray Station,105541164,0,4376_7778022_104010,4376_40 -4289_75966,264,4376_3731,Bray Station,105651164,0,4376_7778022_104010,4376_40 -4289_75966,265,4376_3732,Bray Station,105811164,0,4376_7778022_104010,4376_40 -4289_75966,266,4376_3733,Bray Station,105821164,0,4376_7778022_104010,4376_40 -4289_75966,267,4376_3734,Bray Station,106051164,0,4376_7778022_104010,4376_40 -4289_75966,268,4376_3735,Bray Station,106141164,0,4376_7778022_104010,4376_40 -4289_75966,269,4376_3736,Bray Station,106231164,0,4376_7778022_104010,4376_40 -4289_75966,259,4376_3737,Bray Station,105764116,0,4376_7778022_104120,4376_41 -4289_75966,260,4376_3738,Bray Station,105311194,0,4376_7778022_104121,4376_41 -4289_75966,261,4376_3739,Bray Station,105321194,0,4376_7778022_104121,4376_41 -4289_75960,267,4376_374,Sutton Station,106052526,0,4376_7778022_103501,4376_1 -4289_75966,262,4376_3740,Bray Station,105431194,0,4376_7778022_104121,4376_41 -4289_75966,263,4376_3741,Bray Station,105541194,0,4376_7778022_104121,4376_41 -4289_75966,264,4376_3742,Bray Station,105651194,0,4376_7778022_104121,4376_41 -4289_75966,265,4376_3743,Bray Station,105811194,0,4376_7778022_104121,4376_41 -4289_75966,266,4376_3744,Bray Station,105821194,0,4376_7778022_104121,4376_41 -4289_75966,267,4376_3745,Bray Station,106051194,0,4376_7778022_104121,4376_41 -4289_75966,268,4376_3746,Bray Station,106141194,0,4376_7778022_104121,4376_41 -4289_75966,269,4376_3747,Bray Station,106231194,0,4376_7778022_104121,4376_41 -4289_75966,270,4376_3748,Bray Station,105277024,0,4376_7778022_104010,4376_41 -4289_75966,146,4376_3749,Bray Station,105247024,0,4376_7778022_104010,4376_41 -4289_75960,268,4376_375,Sutton Station,106142526,0,4376_7778022_103501,4376_1 -4289_75966,271,4376_3750,Bray Station,105237024,0,4376_7778022_104010,4376_41 -4289_75966,115,4376_3751,Bray Station,105217024,0,4376_7778022_104010,4376_41 -4289_75966,260,4376_3752,Bray Station,105311318,0,4376_7778022_104121,4376_40 -4289_75966,261,4376_3753,Bray Station,105321318,0,4376_7778022_104121,4376_40 -4289_75966,262,4376_3754,Bray Station,105431318,0,4376_7778022_104121,4376_40 -4289_75966,263,4376_3755,Bray Station,105541318,0,4376_7778022_104121,4376_40 -4289_75966,264,4376_3756,Bray Station,105651318,0,4376_7778022_104121,4376_40 -4289_75966,265,4376_3757,Bray Station,105811318,0,4376_7778022_104121,4376_40 -4289_75966,266,4376_3758,Bray Station,105821318,0,4376_7778022_104121,4376_40 -4289_75966,267,4376_3759,Bray Station,106051318,0,4376_7778022_104121,4376_40 -4289_75960,269,4376_376,Sutton Station,106232526,0,4376_7778022_103501,4376_1 -4289_75966,268,4376_3760,Bray Station,106141318,0,4376_7778022_104121,4376_40 -4289_75966,269,4376_3761,Bray Station,106231318,0,4376_7778022_104121,4376_40 -4289_75966,259,4376_3762,Bray Station,105764184,0,4376_7778022_104071,4376_43 -4289_75966,260,4376_3763,Bray Station,105311350,0,4376_7778022_104010,4376_41 -4289_75966,261,4376_3764,Bray Station,105321350,0,4376_7778022_104010,4376_41 -4289_75966,262,4376_3765,Bray Station,105431350,0,4376_7778022_104010,4376_41 -4289_75966,263,4376_3766,Bray Station,105541350,0,4376_7778022_104010,4376_41 -4289_75966,264,4376_3767,Bray Station,105651350,0,4376_7778022_104010,4376_41 -4289_75966,265,4376_3768,Bray Station,105811350,0,4376_7778022_104010,4376_41 -4289_75966,266,4376_3769,Bray Station,105821350,0,4376_7778022_104010,4376_41 -4289_75960,259,4376_377,Sutton Station,105765254,0,4376_7778022_103502,4376_1 -4289_75966,267,4376_3770,Bray Station,106051350,0,4376_7778022_104010,4376_41 -4289_75966,268,4376_3771,Bray Station,106141350,0,4376_7778022_104010,4376_41 -4289_75966,269,4376_3772,Bray Station,106231350,0,4376_7778022_104010,4376_41 -4289_75966,259,4376_3773,Bray Station,105764202,0,4376_7778022_104031,4376_41 -4289_75966,270,4376_3774,Bray Station,105277062,0,4376_7778022_104061,4376_40 -4289_75966,146,4376_3775,Bray Station,105247062,0,4376_7778022_104061,4376_40 -4289_75966,271,4376_3776,Bray Station,105237062,0,4376_7778022_104061,4376_40 -4289_75966,115,4376_3777,Bray Station,105217062,0,4376_7778022_104061,4376_40 -4289_75966,259,4376_3778,Bray Station,105764270,0,4376_7778022_104140,4376_40 -4289_75966,260,4376_3779,Bray Station,105311458,0,4376_7778022_104010,4376_40 -4289_75960,270,4376_378,Sutton Station,105277932,0,4376_7778022_103502,4376_2 -4289_75966,261,4376_3780,Bray Station,105321458,0,4376_7778022_104010,4376_40 -4289_75966,262,4376_3781,Bray Station,105431458,0,4376_7778022_104010,4376_40 -4289_75966,263,4376_3782,Bray Station,105541458,0,4376_7778022_104010,4376_40 -4289_75966,264,4376_3783,Bray Station,105651458,0,4376_7778022_104010,4376_40 -4289_75966,265,4376_3784,Bray Station,105811458,0,4376_7778022_104010,4376_40 -4289_75966,266,4376_3785,Bray Station,105821458,0,4376_7778022_104010,4376_40 -4289_75966,267,4376_3786,Bray Station,106051458,0,4376_7778022_104010,4376_40 -4289_75966,268,4376_3787,Bray Station,106141458,0,4376_7778022_104010,4376_40 -4289_75966,269,4376_3788,Bray Station,106231458,0,4376_7778022_104010,4376_40 -4289_75966,270,4376_3789,Bray Station,105277098,0,4376_7778022_104090,4376_40 -4289_75960,146,4376_379,Sutton Station,105247932,0,4376_7778022_103502,4376_2 -4289_75966,146,4376_3790,Bray Station,105247098,0,4376_7778022_104090,4376_40 -4289_75966,271,4376_3791,Bray Station,105237098,0,4376_7778022_104090,4376_40 -4289_75966,115,4376_3792,Bray Station,105217098,0,4376_7778022_104090,4376_40 -4289_75966,259,4376_3793,Bray Station,105764298,0,4376_7778022_104011,4376_41 -4289_75966,260,4376_3794,Bray Station,105311478,0,4376_7778022_104121,4376_41 -4289_75966,261,4376_3795,Bray Station,105321478,0,4376_7778022_104121,4376_41 -4289_75966,262,4376_3796,Bray Station,105431478,0,4376_7778022_104121,4376_41 -4289_75966,263,4376_3797,Bray Station,105541478,0,4376_7778022_104121,4376_41 -4289_75966,264,4376_3798,Bray Station,105651478,0,4376_7778022_104121,4376_41 -4289_75966,265,4376_3799,Bray Station,105811478,0,4376_7778022_104121,4376_41 -4289_75960,264,4376_38,Sutton Station,105651172,0,4376_7778022_103501,4376_1 -4289_75960,271,4376_380,Sutton Station,105237932,0,4376_7778022_103502,4376_2 -4289_75966,266,4376_3800,Bray Station,105821478,0,4376_7778022_104121,4376_41 -4289_75966,267,4376_3801,Bray Station,106051478,0,4376_7778022_104121,4376_41 -4289_75966,268,4376_3802,Bray Station,106141478,0,4376_7778022_104121,4376_41 -4289_75966,269,4376_3803,Bray Station,106231478,0,4376_7778022_104121,4376_41 -4289_75966,270,4376_3804,Bray Station,105277108,0,4376_7778022_104041,4376_44 -4289_75966,146,4376_3805,Bray Station,105247108,0,4376_7778022_104041,4376_44 -4289_75966,271,4376_3806,Bray Station,105237108,0,4376_7778022_104041,4376_44 -4289_75966,115,4376_3807,Bray Station,105217108,0,4376_7778022_104041,4376_44 -4289_75966,270,4376_3808,Bray Station,105277176,0,4376_7778022_104010,4376_40 -4289_75966,146,4376_3809,Bray Station,105247176,0,4376_7778022_104010,4376_40 -4289_75960,115,4376_381,Sutton Station,105217932,0,4376_7778022_103502,4376_2 -4289_75966,271,4376_3810,Bray Station,105237176,0,4376_7778022_104010,4376_40 -4289_75966,115,4376_3811,Bray Station,105217176,0,4376_7778022_104010,4376_40 -4289_75966,260,4376_3812,Bray Station,105311566,0,4376_7778022_104121,4376_40 -4289_75966,261,4376_3813,Bray Station,105321566,0,4376_7778022_104121,4376_40 -4289_75966,262,4376_3814,Bray Station,105431566,0,4376_7778022_104121,4376_40 -4289_75966,263,4376_3815,Bray Station,105541566,0,4376_7778022_104121,4376_40 -4289_75966,264,4376_3816,Bray Station,105651566,0,4376_7778022_104121,4376_40 -4289_75966,265,4376_3817,Bray Station,105811566,0,4376_7778022_104121,4376_40 -4289_75966,266,4376_3818,Bray Station,105821566,0,4376_7778022_104121,4376_40 -4289_75966,267,4376_3819,Bray Station,106051566,0,4376_7778022_104121,4376_40 -4289_75960,260,4376_382,Sutton Station,105312588,0,4376_7778022_103105,4376_1 -4289_75966,268,4376_3820,Bray Station,106141566,0,4376_7778022_104121,4376_40 -4289_75966,269,4376_3821,Bray Station,106231566,0,4376_7778022_104121,4376_40 -4289_75966,259,4376_3822,Bray Station,105764392,0,4376_7778022_104071,4376_40 -4289_75966,260,4376_3823,Bray Station,105311584,0,4376_7778022_104101,4376_41 -4289_75966,261,4376_3824,Bray Station,105321584,0,4376_7778022_104101,4376_41 -4289_75966,262,4376_3825,Bray Station,105431584,0,4376_7778022_104101,4376_41 -4289_75966,263,4376_3826,Bray Station,105541584,0,4376_7778022_104101,4376_41 -4289_75966,264,4376_3827,Bray Station,105651584,0,4376_7778022_104101,4376_41 -4289_75966,265,4376_3828,Bray Station,105811584,0,4376_7778022_104101,4376_41 -4289_75966,266,4376_3829,Bray Station,105821584,0,4376_7778022_104101,4376_41 -4289_75960,261,4376_383,Sutton Station,105322588,0,4376_7778022_103105,4376_1 -4289_75966,267,4376_3830,Bray Station,106051584,0,4376_7778022_104101,4376_41 -4289_75966,268,4376_3831,Bray Station,106141584,0,4376_7778022_104101,4376_41 -4289_75966,269,4376_3832,Bray Station,106231584,0,4376_7778022_104101,4376_41 -4289_75966,259,4376_3833,Bray Station,105764410,0,4376_7778022_104120,4376_41 -4289_75966,270,4376_3834,Bray Station,105277190,0,4376_7778022_104031,4376_44 -4289_75966,146,4376_3835,Bray Station,105247190,0,4376_7778022_104031,4376_44 -4289_75966,271,4376_3836,Bray Station,105237190,0,4376_7778022_104031,4376_44 -4289_75966,115,4376_3837,Bray Station,105217190,0,4376_7778022_104031,4376_44 -4289_75966,260,4376_3838,Bray Station,105311674,0,4376_7778022_104180,4376_40 -4289_75966,261,4376_3839,Bray Station,105321674,0,4376_7778022_104180,4376_40 -4289_75960,262,4376_384,Sutton Station,105432588,0,4376_7778022_103105,4376_1 -4289_75966,262,4376_3840,Bray Station,105431674,0,4376_7778022_104180,4376_40 -4289_75966,263,4376_3841,Bray Station,105541674,0,4376_7778022_104180,4376_40 -4289_75966,264,4376_3842,Bray Station,105651674,0,4376_7778022_104180,4376_40 -4289_75966,265,4376_3843,Bray Station,105811674,0,4376_7778022_104180,4376_40 -4289_75966,266,4376_3844,Bray Station,105821674,0,4376_7778022_104180,4376_40 -4289_75966,267,4376_3845,Bray Station,106051674,0,4376_7778022_104180,4376_40 -4289_75966,268,4376_3846,Bray Station,106141674,0,4376_7778022_104180,4376_40 -4289_75966,269,4376_3847,Bray Station,106231674,0,4376_7778022_104180,4376_40 -4289_75966,259,4376_3848,Bray Station,105764494,0,4376_7778022_104140,4376_40 -4289_75966,270,4376_3849,Bray Station,105277270,0,4376_7778022_104090,4376_40 -4289_75960,263,4376_385,Sutton Station,105542588,0,4376_7778022_103105,4376_1 -4289_75966,146,4376_3850,Bray Station,105247270,0,4376_7778022_104090,4376_40 -4289_75966,271,4376_3851,Bray Station,105237270,0,4376_7778022_104090,4376_40 -4289_75966,115,4376_3852,Bray Station,105217270,0,4376_7778022_104090,4376_40 -4289_75966,260,4376_3853,Bray Station,105311692,0,4376_7778022_104121,4376_41 -4289_75966,261,4376_3854,Bray Station,105321692,0,4376_7778022_104121,4376_41 -4289_75966,262,4376_3855,Bray Station,105431692,0,4376_7778022_104121,4376_41 -4289_75966,263,4376_3856,Bray Station,105541692,0,4376_7778022_104121,4376_41 -4289_75966,264,4376_3857,Bray Station,105651692,0,4376_7778022_104121,4376_41 -4289_75966,265,4376_3858,Bray Station,105811692,0,4376_7778022_104121,4376_41 -4289_75966,266,4376_3859,Bray Station,105821692,0,4376_7778022_104121,4376_41 -4289_75960,264,4376_386,Sutton Station,105652588,0,4376_7778022_103105,4376_1 -4289_75966,267,4376_3860,Bray Station,106051692,0,4376_7778022_104121,4376_41 -4289_75966,268,4376_3861,Bray Station,106141692,0,4376_7778022_104121,4376_41 -4289_75966,269,4376_3862,Bray Station,106231692,0,4376_7778022_104121,4376_41 -4289_75966,259,4376_3863,Bray Station,105764514,0,4376_7778022_104041,4376_41 -4289_75966,270,4376_3864,Bray Station,105277280,0,4376_7778022_104061,4376_41 -4289_75966,146,4376_3865,Bray Station,105247280,0,4376_7778022_104061,4376_41 -4289_75966,271,4376_3866,Bray Station,105237280,0,4376_7778022_104061,4376_41 -4289_75966,115,4376_3867,Bray Station,105217280,0,4376_7778022_104061,4376_41 -4289_75966,260,4376_3868,Bray Station,105311784,0,4376_7778022_104150,4376_40 -4289_75966,261,4376_3869,Bray Station,105321784,0,4376_7778022_104150,4376_40 -4289_75960,265,4376_387,Sutton Station,105812588,0,4376_7778022_103105,4376_1 -4289_75966,262,4376_3870,Bray Station,105431784,0,4376_7778022_104150,4376_40 -4289_75966,263,4376_3871,Bray Station,105541784,0,4376_7778022_104150,4376_40 -4289_75966,264,4376_3872,Bray Station,105651784,0,4376_7778022_104150,4376_40 -4289_75966,265,4376_3873,Bray Station,105811784,0,4376_7778022_104150,4376_40 -4289_75966,266,4376_3874,Bray Station,105821784,0,4376_7778022_104150,4376_40 -4289_75966,267,4376_3875,Bray Station,106051784,0,4376_7778022_104150,4376_40 -4289_75966,268,4376_3876,Bray Station,106141784,0,4376_7778022_104150,4376_40 -4289_75966,269,4376_3877,Bray Station,106231784,0,4376_7778022_104150,4376_40 -4289_75966,259,4376_3878,Bray Station,105764598,0,4376_7778022_104120,4376_40 -4289_75966,270,4376_3879,Bray Station,105277362,0,4376_7778022_104061,4376_40 -4289_75960,266,4376_388,Sutton Station,105822588,0,4376_7778022_103105,4376_1 -4289_75966,146,4376_3880,Bray Station,105247362,0,4376_7778022_104061,4376_40 -4289_75966,271,4376_3881,Bray Station,105237362,0,4376_7778022_104061,4376_40 -4289_75966,115,4376_3882,Bray Station,105217362,0,4376_7778022_104061,4376_40 -4289_75966,260,4376_3883,Bray Station,105311806,0,4376_7778022_104180,4376_41 -4289_75966,261,4376_3884,Bray Station,105321806,0,4376_7778022_104180,4376_41 -4289_75966,262,4376_3885,Bray Station,105431806,0,4376_7778022_104180,4376_41 -4289_75966,263,4376_3886,Bray Station,105541806,0,4376_7778022_104180,4376_41 -4289_75966,264,4376_3887,Bray Station,105651806,0,4376_7778022_104180,4376_41 -4289_75966,265,4376_3888,Bray Station,105811806,0,4376_7778022_104180,4376_41 -4289_75966,266,4376_3889,Bray Station,105821806,0,4376_7778022_104180,4376_41 -4289_75960,267,4376_389,Sutton Station,106052588,0,4376_7778022_103105,4376_1 -4289_75966,267,4376_3890,Bray Station,106051806,0,4376_7778022_104180,4376_41 -4289_75966,268,4376_3891,Bray Station,106141806,0,4376_7778022_104180,4376_41 -4289_75966,269,4376_3892,Bray Station,106231806,0,4376_7778022_104180,4376_41 -4289_75966,259,4376_3893,Bray Station,105764618,0,4376_7778022_104071,4376_41 -4289_75966,270,4376_3894,Bray Station,105277372,0,4376_7778022_104010,4376_41 -4289_75966,146,4376_3895,Bray Station,105247372,0,4376_7778022_104010,4376_41 -4289_75966,271,4376_3896,Bray Station,105237372,0,4376_7778022_104010,4376_41 -4289_75966,115,4376_3897,Bray Station,105217372,0,4376_7778022_104010,4376_41 -4289_75966,260,4376_3898,Bray Station,105311890,0,4376_7778022_104101,4376_40 -4289_75966,261,4376_3899,Bray Station,105321890,0,4376_7778022_104101,4376_40 -4289_75960,265,4376_39,Sutton Station,105811172,0,4376_7778022_103501,4376_1 -4289_75960,268,4376_390,Sutton Station,106142588,0,4376_7778022_103105,4376_1 -4289_75966,262,4376_3900,Bray Station,105431890,0,4376_7778022_104101,4376_40 -4289_75966,263,4376_3901,Bray Station,105541890,0,4376_7778022_104101,4376_40 -4289_75966,264,4376_3902,Bray Station,105651890,0,4376_7778022_104101,4376_40 -4289_75966,265,4376_3903,Bray Station,105811890,0,4376_7778022_104101,4376_40 -4289_75966,266,4376_3904,Bray Station,105821890,0,4376_7778022_104101,4376_40 -4289_75966,267,4376_3905,Bray Station,106051890,0,4376_7778022_104101,4376_40 -4289_75966,268,4376_3906,Bray Station,106141890,0,4376_7778022_104101,4376_40 -4289_75966,269,4376_3907,Bray Station,106231890,0,4376_7778022_104101,4376_40 -4289_75966,259,4376_3908,Bray Station,105764700,0,4376_7778022_104071,4376_40 -4289_75966,270,4376_3909,Bray Station,105277452,0,4376_7778022_104010,4376_40 -4289_75960,269,4376_391,Sutton Station,106232588,0,4376_7778022_103105,4376_1 -4289_75966,146,4376_3910,Bray Station,105247452,0,4376_7778022_104010,4376_40 -4289_75966,271,4376_3911,Bray Station,105237452,0,4376_7778022_104010,4376_40 -4289_75966,115,4376_3912,Bray Station,105217452,0,4376_7778022_104010,4376_40 -4289_75966,260,4376_3913,Bray Station,105311910,0,4376_7778022_104150,4376_41 -4289_75966,261,4376_3914,Bray Station,105321910,0,4376_7778022_104150,4376_41 -4289_75966,262,4376_3915,Bray Station,105431910,0,4376_7778022_104150,4376_41 -4289_75966,263,4376_3916,Bray Station,105541910,0,4376_7778022_104150,4376_41 -4289_75966,264,4376_3917,Bray Station,105651910,0,4376_7778022_104150,4376_41 -4289_75966,265,4376_3918,Bray Station,105811910,0,4376_7778022_104150,4376_41 -4289_75966,266,4376_3919,Bray Station,105821910,0,4376_7778022_104150,4376_41 -4289_75960,259,4376_392,Sutton Station,105765302,0,4376_7778022_103105,4376_2 -4289_75966,267,4376_3920,Bray Station,106051910,0,4376_7778022_104150,4376_41 -4289_75966,268,4376_3921,Bray Station,106141910,0,4376_7778022_104150,4376_41 -4289_75966,269,4376_3922,Bray Station,106231910,0,4376_7778022_104150,4376_41 -4289_75966,259,4376_3923,Bray Station,105764720,0,4376_7778022_104120,4376_41 -4289_75966,270,4376_3924,Bray Station,105277462,0,4376_7778022_104041,4376_41 -4289_75966,146,4376_3925,Bray Station,105247462,0,4376_7778022_104041,4376_41 -4289_75966,271,4376_3926,Bray Station,105237462,0,4376_7778022_104041,4376_41 -4289_75966,115,4376_3927,Bray Station,105217462,0,4376_7778022_104041,4376_41 -4289_75966,260,4376_3928,Bray Station,105312000,0,4376_7778022_104180,4376_40 -4289_75966,261,4376_3929,Bray Station,105322000,0,4376_7778022_104180,4376_40 -4289_75960,270,4376_393,Sutton Station,105277996,0,4376_7778022_103105,4376_1 -4289_75966,262,4376_3930,Bray Station,105432000,0,4376_7778022_104180,4376_40 -4289_75966,263,4376_3931,Bray Station,105542000,0,4376_7778022_104180,4376_40 -4289_75966,264,4376_3932,Bray Station,105652000,0,4376_7778022_104180,4376_40 -4289_75966,265,4376_3933,Bray Station,105812000,0,4376_7778022_104180,4376_40 -4289_75966,266,4376_3934,Bray Station,105822000,0,4376_7778022_104180,4376_40 -4289_75966,267,4376_3935,Bray Station,106052000,0,4376_7778022_104180,4376_40 -4289_75966,268,4376_3936,Bray Station,106142000,0,4376_7778022_104180,4376_40 -4289_75966,269,4376_3937,Bray Station,106232000,0,4376_7778022_104180,4376_40 -4289_75966,259,4376_3938,Bray Station,105764802,0,4376_7778022_104120,4376_40 -4289_75966,270,4376_3939,Bray Station,105277542,0,4376_7778022_104031,4376_40 -4289_75960,146,4376_394,Sutton Station,105247996,0,4376_7778022_103105,4376_1 -4289_75966,146,4376_3940,Bray Station,105247542,0,4376_7778022_104031,4376_40 -4289_75966,271,4376_3941,Bray Station,105237542,0,4376_7778022_104031,4376_40 -4289_75966,115,4376_3942,Bray Station,105217542,0,4376_7778022_104031,4376_40 -4289_75966,260,4376_3943,Bray Station,105312022,0,4376_7778022_104101,4376_41 -4289_75966,261,4376_3944,Bray Station,105322022,0,4376_7778022_104101,4376_41 -4289_75966,262,4376_3945,Bray Station,105432022,0,4376_7778022_104101,4376_41 -4289_75966,263,4376_3946,Bray Station,105542022,0,4376_7778022_104101,4376_41 -4289_75966,264,4376_3947,Bray Station,105652022,0,4376_7778022_104101,4376_41 -4289_75966,265,4376_3948,Bray Station,105812022,0,4376_7778022_104101,4376_41 -4289_75966,266,4376_3949,Bray Station,105822022,0,4376_7778022_104101,4376_41 -4289_75960,271,4376_395,Sutton Station,105237996,0,4376_7778022_103105,4376_1 -4289_75966,267,4376_3950,Bray Station,106052022,0,4376_7778022_104101,4376_41 -4289_75966,268,4376_3951,Bray Station,106142022,0,4376_7778022_104101,4376_41 -4289_75966,269,4376_3952,Bray Station,106232022,0,4376_7778022_104101,4376_41 -4289_75966,259,4376_3953,Bray Station,105764822,0,4376_7778022_104162,4376_41 -4289_75966,270,4376_3954,Bray Station,105277552,0,4376_7778022_104010,4376_41 -4289_75966,146,4376_3955,Bray Station,105247552,0,4376_7778022_104010,4376_41 -4289_75966,271,4376_3956,Bray Station,105237552,0,4376_7778022_104010,4376_41 -4289_75966,115,4376_3957,Bray Station,105217552,0,4376_7778022_104010,4376_41 -4289_75966,260,4376_3958,Bray Station,105312136,0,4376_7778022_100192,4376_40 -4289_75966,261,4376_3959,Bray Station,105322136,0,4376_7778022_100192,4376_40 -4289_75960,115,4376_396,Sutton Station,105217996,0,4376_7778022_103105,4376_1 -4289_75966,262,4376_3960,Bray Station,105432136,0,4376_7778022_100192,4376_40 -4289_75966,263,4376_3961,Bray Station,105542136,0,4376_7778022_100192,4376_40 -4289_75966,264,4376_3962,Bray Station,105652136,0,4376_7778022_100192,4376_40 -4289_75966,265,4376_3963,Bray Station,105812136,0,4376_7778022_100192,4376_40 -4289_75966,266,4376_3964,Bray Station,105822136,0,4376_7778022_100192,4376_40 -4289_75966,267,4376_3965,Bray Station,106052136,0,4376_7778022_100192,4376_40 -4289_75966,268,4376_3966,Bray Station,106142136,0,4376_7778022_100192,4376_40 -4289_75966,269,4376_3967,Bray Station,106232136,0,4376_7778022_100192,4376_40 -4289_75966,259,4376_3968,Bray Station,105764906,0,4376_7778022_104162,4376_40 -4289_75966,270,4376_3969,Bray Station,105277634,0,4376_7778022_104010,4376_40 -4289_75960,260,4376_397,Sutton Station,105312646,0,4376_7778022_103502,4376_1 -4289_75966,146,4376_3970,Bray Station,105247634,0,4376_7778022_104010,4376_40 -4289_75966,271,4376_3971,Bray Station,105237634,0,4376_7778022_104010,4376_40 -4289_75966,115,4376_3972,Bray Station,105217634,0,4376_7778022_104010,4376_40 -4289_75966,260,4376_3973,Bray Station,105312158,0,4376_7778022_104122,4376_41 -4289_75966,261,4376_3974,Bray Station,105322158,0,4376_7778022_104122,4376_41 -4289_75966,262,4376_3975,Bray Station,105432158,0,4376_7778022_104122,4376_41 -4289_75966,263,4376_3976,Bray Station,105542158,0,4376_7778022_104122,4376_41 -4289_75966,264,4376_3977,Bray Station,105652158,0,4376_7778022_104122,4376_41 -4289_75966,265,4376_3978,Bray Station,105812158,0,4376_7778022_104122,4376_41 -4289_75966,266,4376_3979,Bray Station,105822158,0,4376_7778022_104122,4376_41 -4289_75960,261,4376_398,Sutton Station,105322646,0,4376_7778022_103502,4376_1 -4289_75966,267,4376_3980,Bray Station,106052158,0,4376_7778022_104122,4376_41 -4289_75966,268,4376_3981,Bray Station,106142158,0,4376_7778022_104122,4376_41 -4289_75966,269,4376_3982,Bray Station,106232158,0,4376_7778022_104122,4376_41 -4289_75966,259,4376_3983,Bray Station,105764922,0,4376_7778022_104120,4376_41 -4289_75966,270,4376_3984,Bray Station,105277644,0,4376_7778022_104031,4376_41 -4289_75966,146,4376_3985,Bray Station,105247644,0,4376_7778022_104031,4376_41 -4289_75966,271,4376_3986,Bray Station,105237644,0,4376_7778022_104031,4376_41 -4289_75966,115,4376_3987,Bray Station,105217644,0,4376_7778022_104031,4376_41 -4289_75966,260,4376_3988,Bray Station,105312260,0,4376_7778022_104122,4376_40 -4289_75966,261,4376_3989,Bray Station,105322260,0,4376_7778022_104122,4376_40 -4289_75960,262,4376_399,Sutton Station,105432646,0,4376_7778022_103502,4376_1 -4289_75966,262,4376_3990,Bray Station,105432260,0,4376_7778022_104122,4376_40 -4289_75966,263,4376_3991,Bray Station,105542260,0,4376_7778022_104122,4376_40 -4289_75966,264,4376_3992,Bray Station,105652260,0,4376_7778022_104122,4376_40 -4289_75966,265,4376_3993,Bray Station,105812260,0,4376_7778022_104122,4376_40 -4289_75966,266,4376_3994,Bray Station,105822260,0,4376_7778022_104122,4376_40 -4289_75966,267,4376_3995,Bray Station,106052260,0,4376_7778022_104122,4376_40 -4289_75966,268,4376_3996,Bray Station,106142260,0,4376_7778022_104122,4376_40 -4289_75966,269,4376_3997,Bray Station,106232260,0,4376_7778022_104122,4376_40 -4289_75966,259,4376_3998,Bray Station,105765008,0,4376_7778022_104210,4376_40 -4289_75966,270,4376_3999,Bray Station,105277724,0,4376_7778022_104180,4376_40 -4289_75960,262,4376_4,Sutton Station,105431026,0,4376_7778022_103503,4376_1 -4289_75960,266,4376_40,Sutton Station,105821172,0,4376_7778022_103501,4376_1 -4289_75960,263,4376_400,Sutton Station,105542646,0,4376_7778022_103502,4376_1 -4289_75966,146,4376_4000,Bray Station,105247724,0,4376_7778022_104180,4376_40 -4289_75966,271,4376_4001,Bray Station,105237724,0,4376_7778022_104180,4376_40 -4289_75966,115,4376_4002,Bray Station,105217724,0,4376_7778022_104180,4376_40 -4289_75966,260,4376_4003,Bray Station,105312286,0,4376_7778022_104010,4376_41 -4289_75966,261,4376_4004,Bray Station,105322286,0,4376_7778022_104010,4376_41 -4289_75966,262,4376_4005,Bray Station,105432286,0,4376_7778022_104010,4376_41 -4289_75966,263,4376_4006,Bray Station,105542286,0,4376_7778022_104010,4376_41 -4289_75966,264,4376_4007,Bray Station,105652286,0,4376_7778022_104010,4376_41 -4289_75966,265,4376_4008,Bray Station,105812286,0,4376_7778022_104010,4376_41 -4289_75966,266,4376_4009,Bray Station,105822286,0,4376_7778022_104010,4376_41 -4289_75960,264,4376_401,Sutton Station,105652646,0,4376_7778022_103502,4376_1 -4289_75966,267,4376_4010,Bray Station,106052286,0,4376_7778022_104010,4376_41 -4289_75966,268,4376_4011,Bray Station,106142286,0,4376_7778022_104010,4376_41 -4289_75966,269,4376_4012,Bray Station,106232286,0,4376_7778022_104010,4376_41 -4289_75966,259,4376_4013,Bray Station,105765024,0,4376_7778022_104162,4376_41 -4289_75966,270,4376_4014,Bray Station,105277732,0,4376_7778022_104042,4376_41 -4289_75966,146,4376_4015,Bray Station,105247732,0,4376_7778022_104042,4376_41 -4289_75966,271,4376_4016,Bray Station,105237732,0,4376_7778022_104042,4376_41 -4289_75966,115,4376_4017,Bray Station,105217732,0,4376_7778022_104042,4376_41 -4289_75966,260,4376_4018,Bray Station,105312376,0,4376_7778022_104010,4376_40 -4289_75966,261,4376_4019,Bray Station,105322376,0,4376_7778022_104010,4376_40 -4289_75960,265,4376_402,Sutton Station,105812646,0,4376_7778022_103502,4376_1 -4289_75966,262,4376_4020,Bray Station,105432376,0,4376_7778022_104010,4376_40 -4289_75966,263,4376_4021,Bray Station,105542376,0,4376_7778022_104010,4376_40 -4289_75966,264,4376_4022,Bray Station,105652376,0,4376_7778022_104010,4376_40 -4289_75966,265,4376_4023,Bray Station,105812376,0,4376_7778022_104010,4376_40 -4289_75966,266,4376_4024,Bray Station,105822376,0,4376_7778022_104010,4376_40 -4289_75966,267,4376_4025,Bray Station,106052376,0,4376_7778022_104010,4376_40 -4289_75966,268,4376_4026,Bray Station,106142376,0,4376_7778022_104010,4376_40 -4289_75966,269,4376_4027,Bray Station,106232376,0,4376_7778022_104010,4376_40 -4289_75966,259,4376_4028,Bray Station,105765110,0,4376_7778022_104162,4376_40 -4289_75966,270,4376_4029,Bray Station,105277814,0,4376_7778022_104042,4376_40 -4289_75960,266,4376_403,Sutton Station,105822646,0,4376_7778022_103502,4376_1 -4289_75966,146,4376_4030,Bray Station,105247814,0,4376_7778022_104042,4376_40 -4289_75966,271,4376_4031,Bray Station,105237814,0,4376_7778022_104042,4376_40 -4289_75966,115,4376_4032,Bray Station,105217814,0,4376_7778022_104042,4376_40 -4289_75966,260,4376_4033,Bray Station,105312404,0,4376_7778022_104122,4376_41 -4289_75966,261,4376_4034,Bray Station,105322404,0,4376_7778022_104122,4376_41 -4289_75966,262,4376_4035,Bray Station,105432404,0,4376_7778022_104122,4376_41 -4289_75966,263,4376_4036,Bray Station,105542404,0,4376_7778022_104122,4376_41 -4289_75966,264,4376_4037,Bray Station,105652404,0,4376_7778022_104122,4376_41 -4289_75966,265,4376_4038,Bray Station,105812404,0,4376_7778022_104122,4376_41 -4289_75966,266,4376_4039,Bray Station,105822404,0,4376_7778022_104122,4376_41 -4289_75960,267,4376_404,Sutton Station,106052646,0,4376_7778022_103502,4376_1 -4289_75966,267,4376_4040,Bray Station,106052404,0,4376_7778022_104122,4376_41 -4289_75966,268,4376_4041,Bray Station,106142404,0,4376_7778022_104122,4376_41 -4289_75966,269,4376_4042,Bray Station,106232404,0,4376_7778022_104122,4376_41 -4289_75966,259,4376_4043,Bray Station,105765128,0,4376_7778022_104210,4376_41 -4289_75966,270,4376_4044,Bray Station,105277822,0,4376_7778022_104180,4376_41 -4289_75966,146,4376_4045,Bray Station,105247822,0,4376_7778022_104180,4376_41 -4289_75966,271,4376_4046,Bray Station,105237822,0,4376_7778022_104180,4376_41 -4289_75966,115,4376_4047,Bray Station,105217822,0,4376_7778022_104180,4376_41 -4289_75966,260,4376_4048,Bray Station,105312492,0,4376_7778022_104010,4376_40 -4289_75966,261,4376_4049,Bray Station,105322492,0,4376_7778022_104010,4376_40 -4289_75960,268,4376_405,Sutton Station,106142646,0,4376_7778022_103502,4376_1 -4289_75966,262,4376_4050,Bray Station,105432492,0,4376_7778022_104010,4376_40 -4289_75966,263,4376_4051,Bray Station,105542492,0,4376_7778022_104010,4376_40 -4289_75966,264,4376_4052,Bray Station,105652492,0,4376_7778022_104010,4376_40 -4289_75966,265,4376_4053,Bray Station,105812492,0,4376_7778022_104010,4376_40 -4289_75966,266,4376_4054,Bray Station,105822492,0,4376_7778022_104010,4376_40 -4289_75966,267,4376_4055,Bray Station,106052492,0,4376_7778022_104010,4376_40 -4289_75966,268,4376_4056,Bray Station,106142492,0,4376_7778022_104010,4376_40 -4289_75966,269,4376_4057,Bray Station,106232492,0,4376_7778022_104010,4376_40 -4289_75966,259,4376_4058,Bray Station,105765214,0,4376_7778022_104133,4376_40 -4289_75966,270,4376_4059,Bray Station,105277906,0,4376_7778022_104160,4376_40 -4289_75960,269,4376_406,Sutton Station,106232646,0,4376_7778022_103502,4376_1 -4289_75966,146,4376_4060,Bray Station,105247906,0,4376_7778022_104160,4376_40 -4289_75966,271,4376_4061,Bray Station,105237906,0,4376_7778022_104160,4376_40 -4289_75966,115,4376_4062,Bray Station,105217906,0,4376_7778022_104160,4376_40 -4289_75966,259,4376_4063,Bray Station,105765224,0,4376_7778022_104202,4376_41 -4289_75966,260,4376_4064,Bray Station,105312512,0,4376_7778022_104150,4376_41 -4289_75966,261,4376_4065,Bray Station,105322512,0,4376_7778022_104150,4376_41 -4289_75966,262,4376_4066,Bray Station,105432512,0,4376_7778022_104150,4376_41 -4289_75966,263,4376_4067,Bray Station,105542512,0,4376_7778022_104150,4376_41 -4289_75966,264,4376_4068,Bray Station,105652512,0,4376_7778022_104150,4376_41 -4289_75966,265,4376_4069,Bray Station,105812512,0,4376_7778022_104150,4376_41 -4289_75960,259,4376_407,Sutton Station,105765346,0,4376_7778022_103503,4376_2 -4289_75966,266,4376_4070,Bray Station,105822512,0,4376_7778022_104150,4376_41 -4289_75966,267,4376_4071,Bray Station,106052512,0,4376_7778022_104150,4376_41 -4289_75966,268,4376_4072,Bray Station,106142512,0,4376_7778022_104150,4376_41 -4289_75966,269,4376_4073,Bray Station,106232512,0,4376_7778022_104150,4376_41 -4289_75966,270,4376_4074,Bray Station,105277914,0,4376_7778022_104042,4376_41 -4289_75966,146,4376_4075,Bray Station,105247914,0,4376_7778022_104042,4376_41 -4289_75966,271,4376_4076,Bray Station,105237914,0,4376_7778022_104042,4376_41 -4289_75966,115,4376_4077,Bray Station,105217914,0,4376_7778022_104042,4376_41 -4289_75966,259,4376_4078,Bray Station,105765292,0,4376_7778022_104202,4376_40 -4289_75966,270,4376_4079,Bray Station,105277988,0,4376_7778022_104180,4376_40 -4289_75960,270,4376_408,Sutton Station,105278030,0,4376_7778022_103501,4376_1 -4289_75966,146,4376_4080,Bray Station,105247988,0,4376_7778022_104180,4376_40 -4289_75966,271,4376_4081,Bray Station,105237988,0,4376_7778022_104180,4376_40 -4289_75966,115,4376_4082,Bray Station,105217988,0,4376_7778022_104180,4376_40 -4289_75966,260,4376_4083,Bray Station,105312602,0,4376_7778022_104102,4376_40 -4289_75966,261,4376_4084,Bray Station,105322602,0,4376_7778022_104102,4376_40 -4289_75966,262,4376_4085,Bray Station,105432602,0,4376_7778022_104102,4376_40 -4289_75966,263,4376_4086,Bray Station,105542602,0,4376_7778022_104102,4376_40 -4289_75966,264,4376_4087,Bray Station,105652602,0,4376_7778022_104102,4376_40 -4289_75966,265,4376_4088,Bray Station,105812602,0,4376_7778022_104102,4376_40 -4289_75966,266,4376_4089,Bray Station,105822602,0,4376_7778022_104102,4376_40 -4289_75960,146,4376_409,Sutton Station,105248030,0,4376_7778022_103501,4376_1 -4289_75966,267,4376_4090,Bray Station,106052602,0,4376_7778022_104102,4376_40 -4289_75966,268,4376_4091,Bray Station,106142602,0,4376_7778022_104102,4376_40 -4289_75966,269,4376_4092,Bray Station,106232602,0,4376_7778022_104102,4376_40 -4289_75966,260,4376_4093,Bray Station,105312610,0,4376_7778022_104010,4376_41 -4289_75966,261,4376_4094,Bray Station,105322610,0,4376_7778022_104010,4376_41 -4289_75966,262,4376_4095,Bray Station,105432610,0,4376_7778022_104010,4376_41 -4289_75966,263,4376_4096,Bray Station,105542610,0,4376_7778022_104010,4376_41 -4289_75966,264,4376_4097,Bray Station,105652610,0,4376_7778022_104010,4376_41 -4289_75966,265,4376_4098,Bray Station,105812610,0,4376_7778022_104010,4376_41 -4289_75966,266,4376_4099,Bray Station,105822610,0,4376_7778022_104010,4376_41 -4289_75960,267,4376_41,Sutton Station,106051172,0,4376_7778022_103501,4376_1 -4289_75960,271,4376_410,Sutton Station,105238030,0,4376_7778022_103501,4376_1 -4289_75966,267,4376_4100,Bray Station,106052610,0,4376_7778022_104010,4376_41 -4289_75966,268,4376_4101,Bray Station,106142610,0,4376_7778022_104010,4376_41 -4289_75966,269,4376_4102,Bray Station,106232610,0,4376_7778022_104010,4376_41 -4289_75966,259,4376_4103,Bray Station,105765318,0,4376_7778022_104162,4376_41 -4289_75966,270,4376_4104,Bray Station,105278002,0,4376_7778022_104160,4376_41 -4289_75966,146,4376_4105,Bray Station,105248002,0,4376_7778022_104160,4376_41 -4289_75966,271,4376_4106,Bray Station,105238002,0,4376_7778022_104160,4376_41 -4289_75966,115,4376_4107,Bray Station,105218002,0,4376_7778022_104160,4376_41 -4289_75966,260,4376_4108,Bray Station,105312676,0,4376_7778022_104050,4376_40 -4289_75966,261,4376_4109,Bray Station,105322676,0,4376_7778022_104050,4376_40 -4289_75960,115,4376_411,Sutton Station,105218030,0,4376_7778022_103501,4376_1 -4289_75966,262,4376_4110,Bray Station,105432676,0,4376_7778022_104050,4376_40 -4289_75966,263,4376_4111,Bray Station,105542676,0,4376_7778022_104050,4376_40 -4289_75966,264,4376_4112,Bray Station,105652676,0,4376_7778022_104050,4376_40 -4289_75966,265,4376_4113,Bray Station,105812676,0,4376_7778022_104050,4376_40 -4289_75966,266,4376_4114,Bray Station,105822676,0,4376_7778022_104050,4376_40 -4289_75966,267,4376_4115,Bray Station,106052676,0,4376_7778022_104050,4376_40 -4289_75966,268,4376_4116,Bray Station,106142676,0,4376_7778022_104050,4376_40 -4289_75966,269,4376_4117,Bray Station,106232676,0,4376_7778022_104050,4376_40 -4289_75966,259,4376_4118,Bray Station,105765380,0,4376_7778022_104072,4376_40 -4289_75966,270,4376_4119,Bray Station,105278066,0,4376_7778022_104042,4376_40 -4289_75960,260,4376_412,Sutton Station,105312688,0,4376_7778022_103104,4376_1 -4289_75966,146,4376_4120,Bray Station,105248066,0,4376_7778022_104042,4376_40 -4289_75966,271,4376_4121,Bray Station,105238066,0,4376_7778022_104042,4376_40 -4289_75966,115,4376_4122,Bray Station,105218066,0,4376_7778022_104042,4376_40 -4289_75966,260,4376_4123,Bray Station,105312710,0,4376_7778022_104180,4376_41 -4289_75966,261,4376_4124,Bray Station,105322710,0,4376_7778022_104180,4376_41 -4289_75966,262,4376_4125,Bray Station,105432710,0,4376_7778022_104180,4376_41 -4289_75966,263,4376_4126,Bray Station,105542710,0,4376_7778022_104180,4376_41 -4289_75966,264,4376_4127,Bray Station,105652710,0,4376_7778022_104180,4376_41 -4289_75966,265,4376_4128,Bray Station,105812710,0,4376_7778022_104180,4376_41 -4289_75966,266,4376_4129,Bray Station,105822710,0,4376_7778022_104180,4376_41 -4289_75960,261,4376_413,Sutton Station,105322688,0,4376_7778022_103104,4376_1 -4289_75966,267,4376_4130,Bray Station,106052710,0,4376_7778022_104180,4376_41 -4289_75966,268,4376_4131,Bray Station,106142710,0,4376_7778022_104180,4376_41 -4289_75966,269,4376_4132,Bray Station,106232710,0,4376_7778022_104180,4376_41 -4289_75966,259,4376_4133,Bray Station,105765406,0,4376_7778022_104202,4376_41 -4289_75966,270,4376_4134,Bray Station,105278080,0,4376_7778022_104062,4376_41 -4289_75966,146,4376_4135,Bray Station,105248080,0,4376_7778022_104062,4376_41 -4289_75966,271,4376_4136,Bray Station,105238080,0,4376_7778022_104062,4376_41 -4289_75966,115,4376_4137,Bray Station,105218080,0,4376_7778022_104062,4376_41 -4289_75966,260,4376_4138,Bray Station,105312772,0,4376_7778022_104122,4376_40 -4289_75966,261,4376_4139,Bray Station,105322772,0,4376_7778022_104122,4376_40 -4289_75960,262,4376_414,Sutton Station,105432688,0,4376_7778022_103104,4376_1 -4289_75966,262,4376_4140,Bray Station,105432772,0,4376_7778022_104122,4376_40 -4289_75966,263,4376_4141,Bray Station,105542772,0,4376_7778022_104122,4376_40 -4289_75966,264,4376_4142,Bray Station,105652772,0,4376_7778022_104122,4376_40 -4289_75966,265,4376_4143,Bray Station,105812772,0,4376_7778022_104122,4376_40 -4289_75966,266,4376_4144,Bray Station,105822772,0,4376_7778022_104122,4376_40 -4289_75966,267,4376_4145,Bray Station,106052772,0,4376_7778022_104122,4376_40 -4289_75966,268,4376_4146,Bray Station,106142772,0,4376_7778022_104122,4376_40 -4289_75966,269,4376_4147,Bray Station,106232772,0,4376_7778022_104122,4376_40 -4289_75966,259,4376_4148,Bray Station,105765466,0,4376_7778022_104133,4376_40 -4289_75966,270,4376_4149,Bray Station,105278142,0,4376_7778022_104180,4376_40 -4289_75960,263,4376_415,Sutton Station,105542688,0,4376_7778022_103104,4376_1 -4289_75966,146,4376_4150,Bray Station,105248142,0,4376_7778022_104180,4376_40 -4289_75966,271,4376_4151,Bray Station,105238142,0,4376_7778022_104180,4376_40 -4289_75966,115,4376_4152,Bray Station,105218142,0,4376_7778022_104180,4376_40 -4289_75966,260,4376_4153,Bray Station,105312808,0,4376_7778022_104102,4376_41 -4289_75966,261,4376_4154,Bray Station,105322808,0,4376_7778022_104102,4376_41 -4289_75966,262,4376_4155,Bray Station,105432808,0,4376_7778022_104102,4376_41 -4289_75966,263,4376_4156,Bray Station,105542808,0,4376_7778022_104102,4376_41 -4289_75966,264,4376_4157,Bray Station,105652808,0,4376_7778022_104102,4376_41 -4289_75966,265,4376_4158,Bray Station,105812808,0,4376_7778022_104102,4376_41 -4289_75966,266,4376_4159,Bray Station,105822808,0,4376_7778022_104102,4376_41 -4289_75960,264,4376_416,Sutton Station,105652688,0,4376_7778022_103104,4376_1 -4289_75966,267,4376_4160,Bray Station,106052808,0,4376_7778022_104102,4376_41 -4289_75966,268,4376_4161,Bray Station,106142808,0,4376_7778022_104102,4376_41 -4289_75966,269,4376_4162,Bray Station,106232808,0,4376_7778022_104102,4376_41 -4289_75966,259,4376_4163,Bray Station,105765492,0,4376_7778022_104012,4376_41 -4289_75966,270,4376_4164,Bray Station,105278158,0,4376_7778022_104170,4376_41 -4289_75966,146,4376_4165,Bray Station,105248158,0,4376_7778022_104170,4376_41 -4289_75966,271,4376_4166,Bray Station,105238158,0,4376_7778022_104170,4376_41 -4289_75966,115,4376_4167,Bray Station,105218158,0,4376_7778022_104170,4376_41 -4289_75966,260,4376_4168,Bray Station,105312866,0,4376_7778022_104030,4376_40 -4289_75966,261,4376_4169,Bray Station,105322866,0,4376_7778022_104030,4376_40 -4289_75960,265,4376_417,Sutton Station,105812688,0,4376_7778022_103104,4376_1 -4289_75966,262,4376_4170,Bray Station,105432866,0,4376_7778022_104030,4376_40 -4289_75966,263,4376_4171,Bray Station,105542866,0,4376_7778022_104030,4376_40 -4289_75966,264,4376_4172,Bray Station,105652866,0,4376_7778022_104030,4376_40 -4289_75966,265,4376_4173,Bray Station,105812866,0,4376_7778022_104030,4376_40 -4289_75966,266,4376_4174,Bray Station,105822866,0,4376_7778022_104030,4376_40 -4289_75966,267,4376_4175,Bray Station,106052866,0,4376_7778022_104030,4376_40 -4289_75966,268,4376_4176,Bray Station,106142866,0,4376_7778022_104030,4376_40 -4289_75966,269,4376_4177,Bray Station,106232866,0,4376_7778022_104030,4376_40 -4289_75966,259,4376_4178,Bray Station,105765550,0,4376_7778022_104072,4376_40 -4289_75966,270,4376_4179,Bray Station,105278220,0,4376_7778022_104042,4376_40 -4289_75960,266,4376_418,Sutton Station,105822688,0,4376_7778022_103104,4376_1 -4289_75966,146,4376_4180,Bray Station,105248220,0,4376_7778022_104042,4376_40 -4289_75966,271,4376_4181,Bray Station,105238220,0,4376_7778022_104042,4376_40 -4289_75966,115,4376_4182,Bray Station,105218220,0,4376_7778022_104042,4376_40 -4289_75966,260,4376_4183,Bray Station,105312900,0,4376_7778022_104162,4376_41 -4289_75966,261,4376_4184,Bray Station,105322900,0,4376_7778022_104162,4376_41 -4289_75966,262,4376_4185,Bray Station,105432900,0,4376_7778022_104162,4376_41 -4289_75966,263,4376_4186,Bray Station,105542900,0,4376_7778022_104162,4376_41 -4289_75966,264,4376_4187,Bray Station,105652900,0,4376_7778022_104162,4376_41 -4289_75966,265,4376_4188,Bray Station,105812900,0,4376_7778022_104162,4376_41 -4289_75966,266,4376_4189,Bray Station,105822900,0,4376_7778022_104162,4376_41 -4289_75960,267,4376_419,Sutton Station,106052688,0,4376_7778022_103104,4376_1 -4289_75966,267,4376_4190,Bray Station,106052900,0,4376_7778022_104162,4376_41 -4289_75966,268,4376_4191,Bray Station,106142900,0,4376_7778022_104162,4376_41 -4289_75966,269,4376_4192,Bray Station,106232900,0,4376_7778022_104162,4376_41 -4289_75966,259,4376_4193,Bray Station,105765574,0,4376_7778022_104162,4376_41 -4289_75966,270,4376_4194,Bray Station,105278232,0,4376_7778022_104062,4376_41 -4289_75966,146,4376_4195,Bray Station,105248232,0,4376_7778022_104062,4376_41 -4289_75966,271,4376_4196,Bray Station,105238232,0,4376_7778022_104062,4376_41 -4289_75966,115,4376_4197,Bray Station,105218232,0,4376_7778022_104062,4376_41 -4289_75966,260,4376_4198,Bray Station,105312950,0,4376_7778022_104010,4376_42 -4289_75966,261,4376_4199,Bray Station,105322950,0,4376_7778022_104010,4376_42 -4289_75960,268,4376_42,Sutton Station,106141172,0,4376_7778022_103501,4376_1 -4289_75960,268,4376_420,Sutton Station,106142688,0,4376_7778022_103104,4376_1 -4289_75966,262,4376_4200,Bray Station,105432950,0,4376_7778022_104010,4376_42 -4289_75966,263,4376_4201,Bray Station,105542950,0,4376_7778022_104010,4376_42 -4289_75966,264,4376_4202,Bray Station,105652950,0,4376_7778022_104010,4376_42 -4289_75966,265,4376_4203,Bray Station,105812950,0,4376_7778022_104010,4376_42 -4289_75966,266,4376_4204,Bray Station,105822950,0,4376_7778022_104010,4376_42 -4289_75966,267,4376_4205,Bray Station,106052950,0,4376_7778022_104010,4376_42 -4289_75966,268,4376_4206,Bray Station,106142950,0,4376_7778022_104010,4376_42 -4289_75966,269,4376_4207,Bray Station,106232950,0,4376_7778022_104010,4376_42 -4289_75966,259,4376_4208,Bray Station,105765632,0,4376_7778022_104210,4376_42 -4289_75966,270,4376_4209,Bray Station,105278274,0,4376_7778022_104032,4376_42 -4289_75960,269,4376_421,Sutton Station,106232688,0,4376_7778022_103104,4376_1 -4289_75966,146,4376_4210,Bray Station,105248274,0,4376_7778022_104032,4376_42 -4289_75966,271,4376_4211,Bray Station,105238274,0,4376_7778022_104032,4376_42 -4289_75966,115,4376_4212,Bray Station,105218274,0,4376_7778022_104032,4376_42 -4289_75966,259,4376_4213,Palermo,105764077,1,4376_7778022_104071,4376_45 -4289_75966,260,4376_4214,Palermo,105311123,1,4376_7778022_104010,4376_45 -4289_75966,261,4376_4215,Palermo,105321123,1,4376_7778022_104010,4376_45 -4289_75966,262,4376_4216,Palermo,105431123,1,4376_7778022_104010,4376_45 -4289_75966,263,4376_4217,Palermo,105541123,1,4376_7778022_104010,4376_45 -4289_75966,264,4376_4218,Palermo,105651123,1,4376_7778022_104010,4376_45 -4289_75966,265,4376_4219,Palermo,105811123,1,4376_7778022_104010,4376_45 -4289_75960,259,4376_422,Sutton Station,105765400,0,4376_7778022_103102,4376_1 -4289_75966,266,4376_4220,Palermo,105821123,1,4376_7778022_104010,4376_45 -4289_75966,267,4376_4221,Palermo,106051123,1,4376_7778022_104010,4376_45 -4289_75966,268,4376_4222,Palermo,106141123,1,4376_7778022_104010,4376_45 -4289_75966,269,4376_4223,Palermo,106231123,1,4376_7778022_104010,4376_45 -4289_75966,259,4376_4224,Enniskerry,105764121,1,4376_7778022_104031,4376_46 -4289_75966,260,4376_4225,Enniskerry,105311189,1,4376_7778022_104010,4376_46 -4289_75966,261,4376_4226,Enniskerry,105321189,1,4376_7778022_104010,4376_46 -4289_75966,262,4376_4227,Enniskerry,105431189,1,4376_7778022_104010,4376_46 -4289_75966,263,4376_4228,Enniskerry,105541189,1,4376_7778022_104010,4376_46 -4289_75966,264,4376_4229,Enniskerry,105651189,1,4376_7778022_104010,4376_46 -4289_75960,270,4376_423,Sutton Station,105278076,0,4376_7778022_103503,4376_1 -4289_75966,265,4376_4230,Enniskerry,105811189,1,4376_7778022_104010,4376_46 -4289_75966,266,4376_4231,Enniskerry,105821189,1,4376_7778022_104010,4376_46 -4289_75966,267,4376_4232,Enniskerry,106051189,1,4376_7778022_104010,4376_46 -4289_75966,268,4376_4233,Enniskerry,106141189,1,4376_7778022_104010,4376_46 -4289_75966,269,4376_4234,Enniskerry,106231189,1,4376_7778022_104010,4376_46 -4289_75966,260,4376_4235,Palermo,105311237,1,4376_7778022_104121,4376_45 -4289_75966,261,4376_4236,Palermo,105321237,1,4376_7778022_104121,4376_45 -4289_75966,262,4376_4237,Palermo,105431237,1,4376_7778022_104121,4376_45 -4289_75966,263,4376_4238,Palermo,105541237,1,4376_7778022_104121,4376_45 -4289_75966,264,4376_4239,Palermo,105651237,1,4376_7778022_104121,4376_45 -4289_75960,146,4376_424,Sutton Station,105248076,0,4376_7778022_103503,4376_1 -4289_75966,265,4376_4240,Palermo,105811237,1,4376_7778022_104121,4376_45 -4289_75966,266,4376_4241,Palermo,105821237,1,4376_7778022_104121,4376_45 -4289_75966,267,4376_4242,Palermo,106051237,1,4376_7778022_104121,4376_45 -4289_75966,268,4376_4243,Palermo,106141237,1,4376_7778022_104121,4376_45 -4289_75966,269,4376_4244,Palermo,106231237,1,4376_7778022_104121,4376_45 -4289_75966,259,4376_4245,Palermo,105764157,1,4376_7778022_104071,4376_45 -4289_75966,260,4376_4246,Enniskerry,105311323,1,4376_7778022_104121,4376_46 -4289_75966,261,4376_4247,Enniskerry,105321323,1,4376_7778022_104121,4376_46 -4289_75966,262,4376_4248,Enniskerry,105431323,1,4376_7778022_104121,4376_46 -4289_75966,263,4376_4249,Enniskerry,105541323,1,4376_7778022_104121,4376_46 -4289_75960,271,4376_425,Sutton Station,105238076,0,4376_7778022_103503,4376_1 -4289_75966,264,4376_4250,Enniskerry,105651323,1,4376_7778022_104121,4376_46 -4289_75966,265,4376_4251,Enniskerry,105811323,1,4376_7778022_104121,4376_46 -4289_75966,266,4376_4252,Enniskerry,105821323,1,4376_7778022_104121,4376_46 -4289_75966,267,4376_4253,Enniskerry,106051323,1,4376_7778022_104121,4376_46 -4289_75966,268,4376_4254,Enniskerry,106141323,1,4376_7778022_104121,4376_46 -4289_75966,269,4376_4255,Enniskerry,106231323,1,4376_7778022_104121,4376_46 -4289_75966,259,4376_4256,Enniskerry,105764205,1,4376_7778022_104011,4376_46 -4289_75966,270,4376_4257,Enniskerry,105277053,1,4376_7778022_104041,4376_46 -4289_75966,146,4376_4258,Enniskerry,105247053,1,4376_7778022_104041,4376_46 -4289_75966,271,4376_4259,Enniskerry,105237053,1,4376_7778022_104041,4376_46 -4289_75960,115,4376_426,Sutton Station,105218076,0,4376_7778022_103503,4376_1 -4289_75966,115,4376_4260,Enniskerry,105217053,1,4376_7778022_104041,4376_46 -4289_75966,259,4376_4261,Palermo,105764245,1,4376_7778022_104140,4376_45 -4289_75966,260,4376_4262,Palermo,105311383,1,4376_7778022_104010,4376_45 -4289_75966,261,4376_4263,Palermo,105321383,1,4376_7778022_104010,4376_45 -4289_75966,262,4376_4264,Palermo,105431383,1,4376_7778022_104010,4376_45 -4289_75966,263,4376_4265,Palermo,105541383,1,4376_7778022_104010,4376_45 -4289_75966,264,4376_4266,Palermo,105651383,1,4376_7778022_104010,4376_45 -4289_75966,265,4376_4267,Palermo,105811383,1,4376_7778022_104010,4376_45 -4289_75966,266,4376_4268,Palermo,105821383,1,4376_7778022_104010,4376_45 -4289_75966,267,4376_4269,Palermo,106051383,1,4376_7778022_104010,4376_45 -4289_75960,260,4376_427,Sutton Station,105312744,0,4376_7778022_103503,4376_1 -4289_75966,268,4376_4270,Palermo,106141383,1,4376_7778022_104010,4376_45 -4289_75966,269,4376_4271,Palermo,106231383,1,4376_7778022_104010,4376_45 -4289_75966,270,4376_4272,Palermo,105277083,1,4376_7778022_104090,4376_45 -4289_75966,146,4376_4273,Palermo,105247083,1,4376_7778022_104090,4376_45 -4289_75966,271,4376_4274,Palermo,105237083,1,4376_7778022_104090,4376_45 -4289_75966,115,4376_4275,Palermo,105217083,1,4376_7778022_104090,4376_45 -4289_75966,259,4376_4276,Enniskerry,105764297,1,4376_7778022_104120,4376_46 -4289_75966,260,4376_4277,Enniskerry,105311451,1,4376_7778022_104101,4376_46 -4289_75966,261,4376_4278,Enniskerry,105321451,1,4376_7778022_104101,4376_46 -4289_75966,262,4376_4279,Enniskerry,105431451,1,4376_7778022_104101,4376_46 -4289_75960,261,4376_428,Sutton Station,105322744,0,4376_7778022_103503,4376_1 -4289_75966,263,4376_4280,Enniskerry,105541451,1,4376_7778022_104101,4376_46 -4289_75966,264,4376_4281,Enniskerry,105651451,1,4376_7778022_104101,4376_46 -4289_75966,265,4376_4282,Enniskerry,105811451,1,4376_7778022_104101,4376_46 -4289_75966,266,4376_4283,Enniskerry,105821451,1,4376_7778022_104101,4376_46 -4289_75966,267,4376_4284,Enniskerry,106051451,1,4376_7778022_104101,4376_46 -4289_75966,268,4376_4285,Enniskerry,106141451,1,4376_7778022_104101,4376_46 -4289_75966,269,4376_4286,Enniskerry,106231451,1,4376_7778022_104101,4376_46 -4289_75966,270,4376_4287,Enniskerry,105277125,1,4376_7778022_104031,4376_49 -4289_75966,146,4376_4288,Enniskerry,105247125,1,4376_7778022_104031,4376_49 -4289_75966,271,4376_4289,Enniskerry,105237125,1,4376_7778022_104031,4376_49 -4289_75960,262,4376_429,Sutton Station,105432744,0,4376_7778022_103503,4376_1 -4289_75966,115,4376_4290,Enniskerry,105217125,1,4376_7778022_104031,4376_49 -4289_75966,260,4376_4291,Palermo,105311501,1,4376_7778022_104121,4376_45 -4289_75966,261,4376_4292,Palermo,105321501,1,4376_7778022_104121,4376_45 -4289_75966,262,4376_4293,Palermo,105431501,1,4376_7778022_104121,4376_45 -4289_75966,263,4376_4294,Palermo,105541501,1,4376_7778022_104121,4376_45 -4289_75966,264,4376_4295,Palermo,105651501,1,4376_7778022_104121,4376_45 -4289_75966,265,4376_4296,Palermo,105811501,1,4376_7778022_104121,4376_45 -4289_75966,266,4376_4297,Palermo,105821501,1,4376_7778022_104121,4376_45 -4289_75966,267,4376_4298,Palermo,106051501,1,4376_7778022_104121,4376_45 -4289_75966,268,4376_4299,Palermo,106141501,1,4376_7778022_104121,4376_45 -4289_75960,269,4376_43,Sutton Station,106231172,0,4376_7778022_103501,4376_1 -4289_75960,263,4376_430,Sutton Station,105542744,0,4376_7778022_103503,4376_1 -4289_75966,269,4376_4300,Palermo,106231501,1,4376_7778022_104121,4376_45 -4289_75966,259,4376_4301,Palermo,105764355,1,4376_7778022_104071,4376_45 -4289_75966,270,4376_4302,Palermo,105277159,1,4376_7778022_104010,4376_48 -4289_75966,146,4376_4303,Palermo,105247159,1,4376_7778022_104010,4376_48 -4289_75966,271,4376_4304,Palermo,105237159,1,4376_7778022_104010,4376_48 -4289_75966,115,4376_4305,Palermo,105217159,1,4376_7778022_104010,4376_48 -4289_75966,260,4376_4306,Enniskerry,105311561,1,4376_7778022_104121,4376_46 -4289_75966,261,4376_4307,Enniskerry,105321561,1,4376_7778022_104121,4376_46 -4289_75966,262,4376_4308,Enniskerry,105431561,1,4376_7778022_104121,4376_46 -4289_75966,263,4376_4309,Enniskerry,105541561,1,4376_7778022_104121,4376_46 -4289_75960,264,4376_431,Sutton Station,105652744,0,4376_7778022_103503,4376_1 -4289_75966,264,4376_4310,Enniskerry,105651561,1,4376_7778022_104121,4376_46 -4289_75966,265,4376_4311,Enniskerry,105811561,1,4376_7778022_104121,4376_46 -4289_75966,266,4376_4312,Enniskerry,105821561,1,4376_7778022_104121,4376_46 -4289_75966,267,4376_4313,Enniskerry,106051561,1,4376_7778022_104121,4376_46 -4289_75966,268,4376_4314,Enniskerry,106141561,1,4376_7778022_104121,4376_46 -4289_75966,269,4376_4315,Enniskerry,106231561,1,4376_7778022_104121,4376_46 -4289_75966,259,4376_4316,Enniskerry,105764415,1,4376_7778022_104041,4376_46 -4289_75966,270,4376_4317,Enniskerry,105277209,1,4376_7778022_104061,4376_49 -4289_75966,146,4376_4318,Enniskerry,105247209,1,4376_7778022_104061,4376_49 -4289_75966,271,4376_4319,Enniskerry,105237209,1,4376_7778022_104061,4376_49 -4289_75960,265,4376_432,Sutton Station,105812744,0,4376_7778022_103503,4376_1 -4289_75966,115,4376_4320,Enniskerry,105217209,1,4376_7778022_104061,4376_49 -4289_75966,260,4376_4321,Palermo,105311609,1,4376_7778022_104180,4376_45 -4289_75966,261,4376_4322,Palermo,105321609,1,4376_7778022_104180,4376_45 -4289_75966,262,4376_4323,Palermo,105431609,1,4376_7778022_104180,4376_45 -4289_75966,263,4376_4324,Palermo,105541609,1,4376_7778022_104180,4376_45 -4289_75966,264,4376_4325,Palermo,105651609,1,4376_7778022_104180,4376_45 -4289_75966,265,4376_4326,Palermo,105811609,1,4376_7778022_104180,4376_45 -4289_75966,266,4376_4327,Palermo,105821609,1,4376_7778022_104180,4376_45 -4289_75966,267,4376_4328,Palermo,106051609,1,4376_7778022_104180,4376_45 -4289_75966,268,4376_4329,Palermo,106141609,1,4376_7778022_104180,4376_45 -4289_75960,266,4376_433,Sutton Station,105822744,0,4376_7778022_103503,4376_1 -4289_75966,269,4376_4330,Palermo,106231609,1,4376_7778022_104180,4376_45 -4289_75966,259,4376_4331,Palermo,105764459,1,4376_7778022_104140,4376_45 -4289_75966,270,4376_4332,Palermo,105277249,1,4376_7778022_104090,4376_45 -4289_75966,146,4376_4333,Palermo,105247249,1,4376_7778022_104090,4376_45 -4289_75966,271,4376_4334,Palermo,105237249,1,4376_7778022_104090,4376_45 -4289_75966,115,4376_4335,Palermo,105217249,1,4376_7778022_104090,4376_45 -4289_75966,260,4376_4336,Enniskerry,105311669,1,4376_7778022_104180,4376_46 -4289_75966,261,4376_4337,Enniskerry,105321669,1,4376_7778022_104180,4376_46 -4289_75966,262,4376_4338,Enniskerry,105431669,1,4376_7778022_104180,4376_46 -4289_75966,263,4376_4339,Enniskerry,105541669,1,4376_7778022_104180,4376_46 -4289_75960,267,4376_434,Sutton Station,106052744,0,4376_7778022_103503,4376_1 -4289_75966,264,4376_4340,Enniskerry,105651669,1,4376_7778022_104180,4376_46 -4289_75966,265,4376_4341,Enniskerry,105811669,1,4376_7778022_104180,4376_46 -4289_75966,266,4376_4342,Enniskerry,105821669,1,4376_7778022_104180,4376_46 -4289_75966,267,4376_4343,Enniskerry,106051669,1,4376_7778022_104180,4376_46 -4289_75966,268,4376_4344,Enniskerry,106141669,1,4376_7778022_104180,4376_46 -4289_75966,269,4376_4345,Enniskerry,106231669,1,4376_7778022_104180,4376_46 -4289_75966,259,4376_4346,Enniskerry,105764517,1,4376_7778022_104071,4376_46 -4289_75966,270,4376_4347,Enniskerry,105277299,1,4376_7778022_104010,4376_46 -4289_75966,146,4376_4348,Enniskerry,105247299,1,4376_7778022_104010,4376_46 -4289_75966,271,4376_4349,Enniskerry,105237299,1,4376_7778022_104010,4376_46 -4289_75960,268,4376_435,Sutton Station,106142744,0,4376_7778022_103503,4376_1 -4289_75966,115,4376_4350,Enniskerry,105217299,1,4376_7778022_104010,4376_46 -4289_75966,260,4376_4351,Palermo,105311717,1,4376_7778022_104150,4376_45 -4289_75966,261,4376_4352,Palermo,105321717,1,4376_7778022_104150,4376_45 -4289_75966,262,4376_4353,Palermo,105431717,1,4376_7778022_104150,4376_45 -4289_75966,263,4376_4354,Palermo,105541717,1,4376_7778022_104150,4376_45 -4289_75966,264,4376_4355,Palermo,105651717,1,4376_7778022_104150,4376_45 -4289_75966,265,4376_4356,Palermo,105811717,1,4376_7778022_104150,4376_45 -4289_75966,266,4376_4357,Palermo,105821717,1,4376_7778022_104150,4376_45 -4289_75966,267,4376_4358,Palermo,106051717,1,4376_7778022_104150,4376_45 -4289_75966,268,4376_4359,Palermo,106141717,1,4376_7778022_104150,4376_45 -4289_75960,269,4376_436,Sutton Station,106232744,0,4376_7778022_103503,4376_1 -4289_75966,269,4376_4360,Palermo,106231717,1,4376_7778022_104150,4376_45 -4289_75966,259,4376_4361,Palermo,105764563,1,4376_7778022_104120,4376_45 -4289_75966,270,4376_4362,Palermo,105277339,1,4376_7778022_104061,4376_45 -4289_75966,146,4376_4363,Palermo,105247339,1,4376_7778022_104061,4376_45 -4289_75966,271,4376_4364,Palermo,105237339,1,4376_7778022_104061,4376_45 -4289_75966,115,4376_4365,Palermo,105217339,1,4376_7778022_104061,4376_45 -4289_75966,260,4376_4366,Enniskerry,105311777,1,4376_7778022_104150,4376_46 -4289_75966,261,4376_4367,Enniskerry,105321777,1,4376_7778022_104150,4376_46 -4289_75966,262,4376_4368,Enniskerry,105431777,1,4376_7778022_104150,4376_46 -4289_75966,263,4376_4369,Enniskerry,105541777,1,4376_7778022_104150,4376_46 -4289_75960,259,4376_437,Sutton Station,105765446,0,4376_7778022_103501,4376_1 -4289_75966,264,4376_4370,Enniskerry,105651777,1,4376_7778022_104150,4376_46 -4289_75966,265,4376_4371,Enniskerry,105811777,1,4376_7778022_104150,4376_46 -4289_75966,266,4376_4372,Enniskerry,105821777,1,4376_7778022_104150,4376_46 -4289_75966,267,4376_4373,Enniskerry,106051777,1,4376_7778022_104150,4376_46 -4289_75966,268,4376_4374,Enniskerry,106141777,1,4376_7778022_104150,4376_46 -4289_75966,269,4376_4375,Enniskerry,106231777,1,4376_7778022_104150,4376_46 -4289_75966,259,4376_4376,Enniskerry,105764621,1,4376_7778022_104120,4376_46 -4289_75966,270,4376_4377,Enniskerry,105277389,1,4376_7778022_104041,4376_46 -4289_75966,146,4376_4378,Enniskerry,105247389,1,4376_7778022_104041,4376_46 -4289_75966,271,4376_4379,Enniskerry,105237389,1,4376_7778022_104041,4376_46 -4289_75960,270,4376_438,Sutton Station,105278108,0,4376_7778022_103106,4376_2 -4289_75966,115,4376_4380,Enniskerry,105217389,1,4376_7778022_104041,4376_46 -4289_75966,260,4376_4381,Palermo,105311829,1,4376_7778022_104101,4376_45 -4289_75966,261,4376_4382,Palermo,105321829,1,4376_7778022_104101,4376_45 -4289_75966,262,4376_4383,Palermo,105431829,1,4376_7778022_104101,4376_45 -4289_75966,263,4376_4384,Palermo,105541829,1,4376_7778022_104101,4376_45 -4289_75966,264,4376_4385,Palermo,105651829,1,4376_7778022_104101,4376_45 -4289_75966,265,4376_4386,Palermo,105811829,1,4376_7778022_104101,4376_45 -4289_75966,266,4376_4387,Palermo,105821829,1,4376_7778022_104101,4376_45 -4289_75966,267,4376_4388,Palermo,106051829,1,4376_7778022_104101,4376_45 -4289_75966,268,4376_4389,Palermo,106141829,1,4376_7778022_104101,4376_45 -4289_75960,146,4376_439,Sutton Station,105248108,0,4376_7778022_103106,4376_2 -4289_75966,269,4376_4390,Palermo,106231829,1,4376_7778022_104101,4376_45 -4289_75966,259,4376_4391,Palermo,105764667,1,4376_7778022_104071,4376_45 -4289_75966,270,4376_4392,Palermo,105277429,1,4376_7778022_104010,4376_45 -4289_75966,146,4376_4393,Palermo,105247429,1,4376_7778022_104010,4376_45 -4289_75966,271,4376_4394,Palermo,105237429,1,4376_7778022_104010,4376_45 -4289_75966,115,4376_4395,Palermo,105217429,1,4376_7778022_104010,4376_45 -4289_75966,260,4376_4396,Enniskerry,105311893,1,4376_7778022_104101,4376_46 -4289_75966,261,4376_4397,Enniskerry,105321893,1,4376_7778022_104101,4376_46 -4289_75966,262,4376_4398,Enniskerry,105431893,1,4376_7778022_104101,4376_46 -4289_75966,263,4376_4399,Enniskerry,105541893,1,4376_7778022_104101,4376_46 -4289_75960,259,4376_44,Sutton Station,105764124,0,4376_7778022_103501,4376_1 -4289_75960,271,4376_440,Sutton Station,105238108,0,4376_7778022_103106,4376_2 -4289_75966,264,4376_4400,Enniskerry,105651893,1,4376_7778022_104101,4376_46 -4289_75966,265,4376_4401,Enniskerry,105811893,1,4376_7778022_104101,4376_46 -4289_75966,266,4376_4402,Enniskerry,105821893,1,4376_7778022_104101,4376_46 -4289_75966,267,4376_4403,Enniskerry,106051893,1,4376_7778022_104101,4376_46 -4289_75966,268,4376_4404,Enniskerry,106141893,1,4376_7778022_104101,4376_46 -4289_75966,269,4376_4405,Enniskerry,106231893,1,4376_7778022_104101,4376_46 -4289_75966,259,4376_4406,Enniskerry,105764723,1,4376_7778022_104162,4376_46 -4289_75966,270,4376_4407,Enniskerry,105277477,1,4376_7778022_104010,4376_46 -4289_75966,146,4376_4408,Enniskerry,105247477,1,4376_7778022_104010,4376_46 -4289_75966,271,4376_4409,Enniskerry,105237477,1,4376_7778022_104010,4376_46 -4289_75960,115,4376_441,Sutton Station,105218108,0,4376_7778022_103106,4376_2 -4289_75966,115,4376_4410,Enniskerry,105217477,1,4376_7778022_104010,4376_46 -4289_75966,260,4376_4411,Palermo,105311941,1,4376_7778022_104180,4376_45 -4289_75966,261,4376_4412,Palermo,105321941,1,4376_7778022_104180,4376_45 -4289_75966,262,4376_4413,Palermo,105431941,1,4376_7778022_104180,4376_45 -4289_75966,263,4376_4414,Palermo,105541941,1,4376_7778022_104180,4376_45 -4289_75966,264,4376_4415,Palermo,105651941,1,4376_7778022_104180,4376_45 -4289_75966,265,4376_4416,Palermo,105811941,1,4376_7778022_104180,4376_45 -4289_75966,266,4376_4417,Palermo,105821941,1,4376_7778022_104180,4376_45 -4289_75966,267,4376_4418,Palermo,106051941,1,4376_7778022_104180,4376_45 -4289_75966,268,4376_4419,Palermo,106141941,1,4376_7778022_104180,4376_45 -4289_75960,260,4376_442,Sutton Station,105312794,0,4376_7778022_103501,4376_1 -4289_75966,269,4376_4420,Palermo,106231941,1,4376_7778022_104180,4376_45 -4289_75966,259,4376_4421,Palermo,105764769,1,4376_7778022_104120,4376_45 -4289_75966,270,4376_4422,Palermo,105277521,1,4376_7778022_104031,4376_45 -4289_75966,146,4376_4423,Palermo,105247521,1,4376_7778022_104031,4376_45 -4289_75966,271,4376_4424,Palermo,105237521,1,4376_7778022_104031,4376_45 -4289_75966,115,4376_4425,Palermo,105217521,1,4376_7778022_104031,4376_45 -4289_75966,260,4376_4426,Enniskerry,105312001,1,4376_7778022_104122,4376_46 -4289_75966,261,4376_4427,Enniskerry,105322001,1,4376_7778022_104122,4376_46 -4289_75966,262,4376_4428,Enniskerry,105432001,1,4376_7778022_104122,4376_46 -4289_75966,263,4376_4429,Enniskerry,105542001,1,4376_7778022_104122,4376_46 -4289_75960,261,4376_443,Sutton Station,105322794,0,4376_7778022_103501,4376_1 -4289_75966,264,4376_4430,Enniskerry,105652001,1,4376_7778022_104122,4376_46 -4289_75966,265,4376_4431,Enniskerry,105812001,1,4376_7778022_104122,4376_46 -4289_75966,266,4376_4432,Enniskerry,105822001,1,4376_7778022_104122,4376_46 -4289_75966,267,4376_4433,Enniskerry,106052001,1,4376_7778022_104122,4376_46 -4289_75966,268,4376_4434,Enniskerry,106142001,1,4376_7778022_104122,4376_46 -4289_75966,269,4376_4435,Enniskerry,106232001,1,4376_7778022_104122,4376_46 -4289_75966,259,4376_4436,Enniskerry,105764823,1,4376_7778022_104120,4376_46 -4289_75966,270,4376_4437,Enniskerry,105277565,1,4376_7778022_104031,4376_46 -4289_75966,146,4376_4438,Enniskerry,105247565,1,4376_7778022_104031,4376_46 -4289_75966,271,4376_4439,Enniskerry,105237565,1,4376_7778022_104031,4376_46 -4289_75960,262,4376_444,Sutton Station,105432794,0,4376_7778022_103501,4376_1 -4289_75966,115,4376_4440,Enniskerry,105217565,1,4376_7778022_104031,4376_46 -4289_75966,260,4376_4441,Palermo,105312057,1,4376_7778022_100192,4376_45 -4289_75966,261,4376_4442,Palermo,105322057,1,4376_7778022_100192,4376_45 -4289_75966,262,4376_4443,Palermo,105432057,1,4376_7778022_100192,4376_45 -4289_75966,263,4376_4444,Palermo,105542057,1,4376_7778022_100192,4376_45 -4289_75966,264,4376_4445,Palermo,105652057,1,4376_7778022_100192,4376_45 -4289_75966,265,4376_4446,Palermo,105812057,1,4376_7778022_100192,4376_45 -4289_75966,266,4376_4447,Palermo,105822057,1,4376_7778022_100192,4376_45 -4289_75966,267,4376_4448,Palermo,106052057,1,4376_7778022_100192,4376_45 -4289_75966,268,4376_4449,Palermo,106142057,1,4376_7778022_100192,4376_45 -4289_75960,263,4376_445,Sutton Station,105542794,0,4376_7778022_103501,4376_1 -4289_75966,269,4376_4450,Palermo,106232057,1,4376_7778022_100192,4376_45 -4289_75966,259,4376_4451,Palermo,105764871,1,4376_7778022_104162,4376_45 -4289_75966,270,4376_4452,Palermo,105277611,1,4376_7778022_104010,4376_45 -4289_75966,146,4376_4453,Palermo,105247611,1,4376_7778022_104010,4376_45 -4289_75966,271,4376_4454,Palermo,105237611,1,4376_7778022_104010,4376_45 -4289_75966,115,4376_4455,Palermo,105217611,1,4376_7778022_104010,4376_45 -4289_75966,260,4376_4456,Enniskerry,105312121,1,4376_7778022_104010,4376_46 -4289_75966,261,4376_4457,Enniskerry,105322121,1,4376_7778022_104010,4376_46 -4289_75966,262,4376_4458,Enniskerry,105432121,1,4376_7778022_104010,4376_46 -4289_75966,263,4376_4459,Enniskerry,105542121,1,4376_7778022_104010,4376_46 -4289_75960,264,4376_446,Sutton Station,105652794,0,4376_7778022_103501,4376_1 -4289_75966,264,4376_4460,Enniskerry,105652121,1,4376_7778022_104010,4376_46 -4289_75966,265,4376_4461,Enniskerry,105812121,1,4376_7778022_104010,4376_46 -4289_75966,266,4376_4462,Enniskerry,105822121,1,4376_7778022_104010,4376_46 -4289_75966,267,4376_4463,Enniskerry,106052121,1,4376_7778022_104010,4376_46 -4289_75966,268,4376_4464,Enniskerry,106142121,1,4376_7778022_104010,4376_46 -4289_75966,269,4376_4465,Enniskerry,106232121,1,4376_7778022_104010,4376_46 -4289_75966,259,4376_4466,Enniskerry,105764927,1,4376_7778022_104162,4376_46 -4289_75966,270,4376_4467,Enniskerry,105277657,1,4376_7778022_104042,4376_46 -4289_75966,146,4376_4468,Enniskerry,105247657,1,4376_7778022_104042,4376_46 -4289_75966,271,4376_4469,Enniskerry,105237657,1,4376_7778022_104042,4376_46 -4289_75960,265,4376_447,Sutton Station,105812794,0,4376_7778022_103501,4376_1 -4289_75966,115,4376_4470,Enniskerry,105217657,1,4376_7778022_104042,4376_46 -4289_75966,260,4376_4471,Palermo,105312191,1,4376_7778022_104122,4376_45 -4289_75966,261,4376_4472,Palermo,105322191,1,4376_7778022_104122,4376_45 -4289_75966,262,4376_4473,Palermo,105432191,1,4376_7778022_104122,4376_45 -4289_75966,263,4376_4474,Palermo,105542191,1,4376_7778022_104122,4376_45 -4289_75966,264,4376_4475,Palermo,105652191,1,4376_7778022_104122,4376_45 -4289_75966,265,4376_4476,Palermo,105812191,1,4376_7778022_104122,4376_45 -4289_75966,266,4376_4477,Palermo,105822191,1,4376_7778022_104122,4376_45 -4289_75966,267,4376_4478,Palermo,106052191,1,4376_7778022_104122,4376_45 -4289_75966,268,4376_4479,Palermo,106142191,1,4376_7778022_104122,4376_45 -4289_75960,266,4376_448,Sutton Station,105822794,0,4376_7778022_103501,4376_1 -4289_75966,269,4376_4480,Palermo,106232191,1,4376_7778022_104122,4376_45 -4289_75966,259,4376_4481,Palermo,105764973,1,4376_7778022_104210,4376_45 -4289_75966,270,4376_4482,Palermo,105277701,1,4376_7778022_104180,4376_45 -4289_75966,146,4376_4483,Palermo,105247701,1,4376_7778022_104180,4376_45 -4289_75966,271,4376_4484,Palermo,105237701,1,4376_7778022_104180,4376_45 -4289_75966,115,4376_4485,Palermo,105217701,1,4376_7778022_104180,4376_45 -4289_75966,260,4376_4486,Enniskerry,105312279,1,4376_7778022_104122,4376_46 -4289_75966,261,4376_4487,Enniskerry,105322279,1,4376_7778022_104122,4376_46 -4289_75966,262,4376_4488,Enniskerry,105432279,1,4376_7778022_104122,4376_46 -4289_75966,263,4376_4489,Enniskerry,105542279,1,4376_7778022_104122,4376_46 -4289_75960,267,4376_449,Sutton Station,106052794,0,4376_7778022_103501,4376_1 -4289_75966,264,4376_4490,Enniskerry,105652279,1,4376_7778022_104122,4376_46 -4289_75966,265,4376_4491,Enniskerry,105812279,1,4376_7778022_104122,4376_46 -4289_75966,266,4376_4492,Enniskerry,105822279,1,4376_7778022_104122,4376_46 -4289_75966,267,4376_4493,Enniskerry,106052279,1,4376_7778022_104122,4376_46 -4289_75966,268,4376_4494,Enniskerry,106142279,1,4376_7778022_104122,4376_46 -4289_75966,269,4376_4495,Enniskerry,106232279,1,4376_7778022_104122,4376_46 -4289_75966,259,4376_4496,Enniskerry,105765029,1,4376_7778022_104210,4376_46 -4289_75966,270,4376_4497,Enniskerry,105277747,1,4376_7778022_104180,4376_46 -4289_75966,146,4376_4498,Enniskerry,105247747,1,4376_7778022_104180,4376_46 -4289_75966,271,4376_4499,Enniskerry,105237747,1,4376_7778022_104180,4376_46 -4289_75960,260,4376_45,Sutton Station,105311220,0,4376_7778022_103502,4376_1 -4289_75960,268,4376_450,Sutton Station,106142794,0,4376_7778022_103501,4376_1 -4289_75966,115,4376_4500,Enniskerry,105217747,1,4376_7778022_104180,4376_46 -4289_75966,260,4376_4501,Palermo,105312329,1,4376_7778022_104010,4376_45 -4289_75966,261,4376_4502,Palermo,105322329,1,4376_7778022_104010,4376_45 -4289_75966,262,4376_4503,Palermo,105432329,1,4376_7778022_104010,4376_45 -4289_75966,263,4376_4504,Palermo,105542329,1,4376_7778022_104010,4376_45 -4289_75966,264,4376_4505,Palermo,105652329,1,4376_7778022_104010,4376_45 -4289_75966,265,4376_4506,Palermo,105812329,1,4376_7778022_104010,4376_45 -4289_75966,266,4376_4507,Palermo,105822329,1,4376_7778022_104010,4376_45 -4289_75966,267,4376_4508,Palermo,106052329,1,4376_7778022_104010,4376_45 -4289_75966,268,4376_4509,Palermo,106142329,1,4376_7778022_104010,4376_45 -4289_75960,269,4376_451,Sutton Station,106232794,0,4376_7778022_103501,4376_1 -4289_75966,269,4376_4510,Palermo,106232329,1,4376_7778022_104010,4376_45 -4289_75966,259,4376_4511,Palermo,105765075,1,4376_7778022_104162,4376_45 -4289_75966,270,4376_4512,Palermo,105277791,1,4376_7778022_104042,4376_45 -4289_75966,146,4376_4513,Palermo,105247791,1,4376_7778022_104042,4376_45 -4289_75966,271,4376_4514,Palermo,105237791,1,4376_7778022_104042,4376_45 -4289_75966,115,4376_4515,Palermo,105217791,1,4376_7778022_104042,4376_45 -4289_75966,260,4376_4516,Enniskerry,105312397,1,4376_7778022_104150,4376_46 -4289_75966,261,4376_4517,Enniskerry,105322397,1,4376_7778022_104150,4376_46 -4289_75966,262,4376_4518,Enniskerry,105432397,1,4376_7778022_104150,4376_46 -4289_75966,263,4376_4519,Enniskerry,105542397,1,4376_7778022_104150,4376_46 -4289_75960,270,4376_452,Sutton Station,105278154,0,4376_7778022_103502,4376_1 -4289_75966,264,4376_4520,Enniskerry,105652397,1,4376_7778022_104150,4376_46 -4289_75966,265,4376_4521,Enniskerry,105812397,1,4376_7778022_104150,4376_46 -4289_75966,266,4376_4522,Enniskerry,105822397,1,4376_7778022_104150,4376_46 -4289_75966,267,4376_4523,Enniskerry,106052397,1,4376_7778022_104150,4376_46 -4289_75966,268,4376_4524,Enniskerry,106142397,1,4376_7778022_104150,4376_46 -4289_75966,269,4376_4525,Enniskerry,106232397,1,4376_7778022_104150,4376_46 -4289_75966,259,4376_4526,Enniskerry,105765129,1,4376_7778022_104202,4376_46 -4289_75966,270,4376_4527,Enniskerry,105277835,1,4376_7778022_104042,4376_46 -4289_75966,146,4376_4528,Enniskerry,105247835,1,4376_7778022_104042,4376_46 -4289_75966,271,4376_4529,Enniskerry,105237835,1,4376_7778022_104042,4376_46 -4289_75960,146,4376_453,Sutton Station,105248154,0,4376_7778022_103502,4376_1 -4289_75966,115,4376_4530,Enniskerry,105217835,1,4376_7778022_104042,4376_46 -4289_75966,260,4376_4531,Palermo,105312447,1,4376_7778022_104010,4376_45 -4289_75966,261,4376_4532,Palermo,105322447,1,4376_7778022_104010,4376_45 -4289_75966,262,4376_4533,Palermo,105432447,1,4376_7778022_104010,4376_45 -4289_75966,263,4376_4534,Palermo,105542447,1,4376_7778022_104010,4376_45 -4289_75966,264,4376_4535,Palermo,105652447,1,4376_7778022_104010,4376_45 -4289_75966,265,4376_4536,Palermo,105812447,1,4376_7778022_104010,4376_45 -4289_75966,266,4376_4537,Palermo,105822447,1,4376_7778022_104010,4376_45 -4289_75966,267,4376_4538,Palermo,106052447,1,4376_7778022_104010,4376_45 -4289_75966,268,4376_4539,Palermo,106142447,1,4376_7778022_104010,4376_45 -4289_75960,271,4376_454,Sutton Station,105238154,0,4376_7778022_103502,4376_1 -4289_75966,269,4376_4540,Palermo,106232447,1,4376_7778022_104010,4376_45 -4289_75966,259,4376_4541,Palermo,105765177,1,4376_7778022_104133,4376_45 -4289_75966,270,4376_4542,Palermo,105277881,1,4376_7778022_104160,4376_45 -4289_75966,146,4376_4543,Palermo,105247881,1,4376_7778022_104160,4376_45 -4289_75966,271,4376_4544,Palermo,105237881,1,4376_7778022_104160,4376_45 -4289_75966,115,4376_4545,Palermo,105217881,1,4376_7778022_104160,4376_45 -4289_75966,260,4376_4546,Enniskerry,105312509,1,4376_7778022_104010,4376_46 -4289_75966,261,4376_4547,Enniskerry,105322509,1,4376_7778022_104010,4376_46 -4289_75966,262,4376_4548,Enniskerry,105432509,1,4376_7778022_104010,4376_46 -4289_75966,263,4376_4549,Enniskerry,105542509,1,4376_7778022_104010,4376_46 -4289_75960,115,4376_455,Sutton Station,105218154,0,4376_7778022_103502,4376_1 -4289_75966,264,4376_4550,Enniskerry,105652509,1,4376_7778022_104010,4376_46 -4289_75966,265,4376_4551,Enniskerry,105812509,1,4376_7778022_104010,4376_46 -4289_75966,266,4376_4552,Enniskerry,105822509,1,4376_7778022_104010,4376_46 -4289_75966,267,4376_4553,Enniskerry,106052509,1,4376_7778022_104010,4376_46 -4289_75966,268,4376_4554,Enniskerry,106142509,1,4376_7778022_104010,4376_46 -4289_75966,269,4376_4555,Enniskerry,106232509,1,4376_7778022_104010,4376_46 -4289_75966,259,4376_4556,Enniskerry,105765231,1,4376_7778022_104162,4376_46 -4289_75966,270,4376_4557,Enniskerry,105277925,1,4376_7778022_104160,4376_46 -4289_75966,146,4376_4558,Enniskerry,105247925,1,4376_7778022_104160,4376_46 -4289_75966,271,4376_4559,Enniskerry,105237925,1,4376_7778022_104160,4376_46 -4289_75960,259,4376_456,Sutton Station,105765500,0,4376_7778022_103502,4376_1 -4289_75966,115,4376_4560,Enniskerry,105217925,1,4376_7778022_104160,4376_46 -4289_75966,259,4376_4561,Palermo,105765269,1,4376_7778022_104202,4376_45 -4289_75966,260,4376_4562,Palermo,105312559,1,4376_7778022_104102,4376_45 -4289_75966,261,4376_4563,Palermo,105322559,1,4376_7778022_104102,4376_45 -4289_75966,262,4376_4564,Palermo,105432559,1,4376_7778022_104102,4376_45 -4289_75966,263,4376_4565,Palermo,105542559,1,4376_7778022_104102,4376_45 -4289_75966,264,4376_4566,Palermo,105652559,1,4376_7778022_104102,4376_45 -4289_75966,265,4376_4567,Palermo,105812559,1,4376_7778022_104102,4376_45 -4289_75966,266,4376_4568,Palermo,105822559,1,4376_7778022_104102,4376_45 -4289_75966,267,4376_4569,Palermo,106052559,1,4376_7778022_104102,4376_45 -4289_75960,260,4376_457,Sutton Station,105312846,0,4376_7778022_103107,4376_1 -4289_75966,268,4376_4570,Palermo,106142559,1,4376_7778022_104102,4376_45 -4289_75966,269,4376_4571,Palermo,106232559,1,4376_7778022_104102,4376_45 -4289_75966,270,4376_4572,Palermo,105277971,1,4376_7778022_104180,4376_48 -4289_75966,146,4376_4573,Palermo,105247971,1,4376_7778022_104180,4376_48 -4289_75966,271,4376_4574,Palermo,105237971,1,4376_7778022_104180,4376_48 -4289_75966,115,4376_4575,Palermo,105217971,1,4376_7778022_104180,4376_48 -4289_75966,260,4376_4576,Enniskerry,105312601,1,4376_7778022_104180,4376_46 -4289_75966,261,4376_4577,Enniskerry,105322601,1,4376_7778022_104180,4376_46 -4289_75966,262,4376_4578,Enniskerry,105432601,1,4376_7778022_104180,4376_46 -4289_75966,263,4376_4579,Enniskerry,105542601,1,4376_7778022_104180,4376_46 -4289_75960,261,4376_458,Sutton Station,105322846,0,4376_7778022_103107,4376_1 -4289_75966,264,4376_4580,Enniskerry,105652601,1,4376_7778022_104180,4376_46 -4289_75966,265,4376_4581,Enniskerry,105812601,1,4376_7778022_104180,4376_46 -4289_75966,266,4376_4582,Enniskerry,105822601,1,4376_7778022_104180,4376_46 -4289_75966,267,4376_4583,Enniskerry,106052601,1,4376_7778022_104180,4376_46 -4289_75966,268,4376_4584,Enniskerry,106142601,1,4376_7778022_104180,4376_46 -4289_75966,269,4376_4585,Enniskerry,106232601,1,4376_7778022_104180,4376_46 -4289_75966,259,4376_4586,Enniskerry,105765315,1,4376_7778022_104202,4376_46 -4289_75966,270,4376_4587,Enniskerry,105278009,1,4376_7778022_104062,4376_46 -4289_75966,146,4376_4588,Enniskerry,105248009,1,4376_7778022_104062,4376_46 -4289_75966,271,4376_4589,Enniskerry,105238009,1,4376_7778022_104062,4376_46 -4289_75960,262,4376_459,Sutton Station,105432846,0,4376_7778022_103107,4376_1 -4289_75966,115,4376_4590,Enniskerry,105218009,1,4376_7778022_104062,4376_46 -4289_75966,260,4376_4591,Palermo,105312653,1,4376_7778022_104050,4376_45 -4289_75966,261,4376_4592,Palermo,105322653,1,4376_7778022_104050,4376_45 -4289_75966,262,4376_4593,Palermo,105432653,1,4376_7778022_104050,4376_45 -4289_75966,263,4376_4594,Palermo,105542653,1,4376_7778022_104050,4376_45 -4289_75966,264,4376_4595,Palermo,105652653,1,4376_7778022_104050,4376_45 -4289_75966,265,4376_4596,Palermo,105812653,1,4376_7778022_104050,4376_45 -4289_75966,266,4376_4597,Palermo,105822653,1,4376_7778022_104050,4376_45 -4289_75966,267,4376_4598,Palermo,106052653,1,4376_7778022_104050,4376_45 -4289_75966,268,4376_4599,Palermo,106142653,1,4376_7778022_104050,4376_45 -4289_75960,261,4376_46,Sutton Station,105321220,0,4376_7778022_103502,4376_1 -4289_75960,263,4376_460,Sutton Station,105542846,0,4376_7778022_103107,4376_1 -4289_75966,269,4376_4600,Palermo,106232653,1,4376_7778022_104050,4376_45 -4289_75966,259,4376_4601,Palermo,105765359,1,4376_7778022_104072,4376_45 -4289_75966,270,4376_4602,Palermo,105278053,1,4376_7778022_104042,4376_45 -4289_75966,146,4376_4603,Palermo,105248053,1,4376_7778022_104042,4376_45 -4289_75966,271,4376_4604,Palermo,105238053,1,4376_7778022_104042,4376_45 -4289_75966,115,4376_4605,Palermo,105218053,1,4376_7778022_104042,4376_45 -4289_75966,260,4376_4606,Enniskerry,105312697,1,4376_7778022_104102,4376_46 -4289_75966,261,4376_4607,Enniskerry,105322697,1,4376_7778022_104102,4376_46 -4289_75966,262,4376_4608,Enniskerry,105432697,1,4376_7778022_104102,4376_46 -4289_75966,263,4376_4609,Enniskerry,105542697,1,4376_7778022_104102,4376_46 -4289_75960,264,4376_461,Sutton Station,105652846,0,4376_7778022_103107,4376_1 -4289_75966,264,4376_4610,Enniskerry,105652697,1,4376_7778022_104102,4376_46 -4289_75966,265,4376_4611,Enniskerry,105812697,1,4376_7778022_104102,4376_46 -4289_75966,266,4376_4612,Enniskerry,105822697,1,4376_7778022_104102,4376_46 -4289_75966,267,4376_4613,Enniskerry,106052697,1,4376_7778022_104102,4376_46 -4289_75966,268,4376_4614,Enniskerry,106142697,1,4376_7778022_104102,4376_46 -4289_75966,269,4376_4615,Enniskerry,106232697,1,4376_7778022_104102,4376_46 -4289_75966,259,4376_4616,Enniskerry,105765401,1,4376_7778022_104012,4376_46 -4289_75966,270,4376_4617,Enniskerry,105278087,1,4376_7778022_104170,4376_46 -4289_75966,146,4376_4618,Enniskerry,105248087,1,4376_7778022_104170,4376_46 -4289_75966,271,4376_4619,Enniskerry,105238087,1,4376_7778022_104170,4376_46 -4289_75960,265,4376_462,Sutton Station,105812846,0,4376_7778022_103107,4376_1 -4289_75966,115,4376_4620,Enniskerry,105218087,1,4376_7778022_104170,4376_46 -4289_75966,260,4376_4621,Palermo,105312749,1,4376_7778022_104122,4376_45 -4289_75966,261,4376_4622,Palermo,105322749,1,4376_7778022_104122,4376_45 -4289_75966,262,4376_4623,Palermo,105432749,1,4376_7778022_104122,4376_45 -4289_75966,263,4376_4624,Palermo,105542749,1,4376_7778022_104122,4376_45 -4289_75966,264,4376_4625,Palermo,105652749,1,4376_7778022_104122,4376_45 -4289_75966,265,4376_4626,Palermo,105812749,1,4376_7778022_104122,4376_45 -4289_75966,266,4376_4627,Palermo,105822749,1,4376_7778022_104122,4376_45 -4289_75966,267,4376_4628,Palermo,106052749,1,4376_7778022_104122,4376_45 -4289_75966,268,4376_4629,Palermo,106142749,1,4376_7778022_104122,4376_45 -4289_75960,266,4376_463,Sutton Station,105822846,0,4376_7778022_103107,4376_1 -4289_75966,269,4376_4630,Palermo,106232749,1,4376_7778022_104122,4376_45 -4289_75966,259,4376_4631,Palermo,105765447,1,4376_7778022_104133,4376_45 -4289_75966,270,4376_4632,Palermo,105278129,1,4376_7778022_104180,4376_45 -4289_75966,146,4376_4633,Palermo,105248129,1,4376_7778022_104180,4376_45 -4289_75966,271,4376_4634,Palermo,105238129,1,4376_7778022_104180,4376_45 -4289_75966,115,4376_4635,Palermo,105218129,1,4376_7778022_104180,4376_45 -4289_75966,260,4376_4636,Enniskerry,105312795,1,4376_7778022_104162,4376_46 -4289_75966,261,4376_4637,Enniskerry,105322795,1,4376_7778022_104162,4376_46 -4289_75966,262,4376_4638,Enniskerry,105432795,1,4376_7778022_104162,4376_46 -4289_75966,263,4376_4639,Enniskerry,105542795,1,4376_7778022_104162,4376_46 -4289_75960,267,4376_464,Sutton Station,106052846,0,4376_7778022_103107,4376_1 -4289_75966,264,4376_4640,Enniskerry,105652795,1,4376_7778022_104162,4376_46 -4289_75966,265,4376_4641,Enniskerry,105812795,1,4376_7778022_104162,4376_46 -4289_75966,266,4376_4642,Enniskerry,105822795,1,4376_7778022_104162,4376_46 -4289_75966,267,4376_4643,Enniskerry,106052795,1,4376_7778022_104162,4376_46 -4289_75966,268,4376_4644,Enniskerry,106142795,1,4376_7778022_104162,4376_46 -4289_75966,269,4376_4645,Enniskerry,106232795,1,4376_7778022_104162,4376_46 -4289_75966,259,4376_4646,Enniskerry,105765489,1,4376_7778022_104162,4376_46 -4289_75966,270,4376_4647,Enniskerry,105278167,1,4376_7778022_104062,4376_46 -4289_75966,146,4376_4648,Enniskerry,105248167,1,4376_7778022_104062,4376_46 -4289_75966,271,4376_4649,Enniskerry,105238167,1,4376_7778022_104062,4376_46 -4289_75960,268,4376_465,Sutton Station,106142846,0,4376_7778022_103107,4376_1 -4289_75966,115,4376_4650,Enniskerry,105218167,1,4376_7778022_104062,4376_46 -4289_75966,260,4376_4651,Palermo,105312845,1,4376_7778022_104030,4376_45 -4289_75966,261,4376_4652,Palermo,105322845,1,4376_7778022_104030,4376_45 -4289_75966,262,4376_4653,Palermo,105432845,1,4376_7778022_104030,4376_45 -4289_75966,263,4376_4654,Palermo,105542845,1,4376_7778022_104030,4376_45 -4289_75966,264,4376_4655,Palermo,105652845,1,4376_7778022_104030,4376_45 -4289_75966,265,4376_4656,Palermo,105812845,1,4376_7778022_104030,4376_45 -4289_75966,266,4376_4657,Palermo,105822845,1,4376_7778022_104030,4376_45 -4289_75966,267,4376_4658,Palermo,106052845,1,4376_7778022_104030,4376_45 -4289_75966,268,4376_4659,Palermo,106142845,1,4376_7778022_104030,4376_45 -4289_75960,269,4376_466,Sutton Station,106232846,0,4376_7778022_103107,4376_1 -4289_75966,269,4376_4660,Palermo,106232845,1,4376_7778022_104030,4376_45 -4289_75966,259,4376_4661,Palermo,105765533,1,4376_7778022_104072,4376_45 -4289_75966,270,4376_4662,Palermo,105278207,1,4376_7778022_104042,4376_45 -4289_75966,146,4376_4663,Palermo,105248207,1,4376_7778022_104042,4376_45 -4289_75966,271,4376_4664,Palermo,105238207,1,4376_7778022_104042,4376_45 -4289_75966,115,4376_4665,Palermo,105218207,1,4376_7778022_104042,4376_45 -4289_75966,260,4376_4666,Enniskerry,105312891,1,4376_7778022_104010,4376_46 -4289_75966,261,4376_4667,Enniskerry,105322891,1,4376_7778022_104010,4376_46 -4289_75966,262,4376_4668,Enniskerry,105432891,1,4376_7778022_104010,4376_46 -4289_75966,263,4376_4669,Enniskerry,105542891,1,4376_7778022_104010,4376_46 -4289_75960,270,4376_467,Sutton Station,105278184,0,4376_7778022_103501,4376_2 -4289_75966,264,4376_4670,Enniskerry,105652891,1,4376_7778022_104010,4376_46 -4289_75966,265,4376_4671,Enniskerry,105812891,1,4376_7778022_104010,4376_46 -4289_75966,266,4376_4672,Enniskerry,105822891,1,4376_7778022_104010,4376_46 -4289_75966,267,4376_4673,Enniskerry,106052891,1,4376_7778022_104010,4376_46 -4289_75966,268,4376_4674,Enniskerry,106142891,1,4376_7778022_104010,4376_46 -4289_75966,269,4376_4675,Enniskerry,106232891,1,4376_7778022_104010,4376_46 -4289_75966,259,4376_4676,Enniskerry,105765575,1,4376_7778022_104210,4376_46 -4289_75966,270,4376_4677,Enniskerry,105278243,1,4376_7778022_104032,4376_46 -4289_75966,146,4376_4678,Enniskerry,105248243,1,4376_7778022_104032,4376_46 -4289_75966,271,4376_4679,Enniskerry,105238243,1,4376_7778022_104032,4376_46 -4289_75960,146,4376_468,Sutton Station,105248184,0,4376_7778022_103501,4376_2 -4289_75966,115,4376_4680,Enniskerry,105218243,1,4376_7778022_104032,4376_46 -4289_75966,260,4376_4681,Palermo,105312939,1,4376_7778022_104122,4376_45 -4289_75966,261,4376_4682,Palermo,105322939,1,4376_7778022_104122,4376_45 -4289_75966,262,4376_4683,Palermo,105432939,1,4376_7778022_104122,4376_45 -4289_75966,263,4376_4684,Palermo,105542939,1,4376_7778022_104122,4376_45 -4289_75966,264,4376_4685,Palermo,105652939,1,4376_7778022_104122,4376_45 -4289_75966,265,4376_4686,Palermo,105812939,1,4376_7778022_104122,4376_45 -4289_75966,266,4376_4687,Palermo,105822939,1,4376_7778022_104122,4376_45 -4289_75966,267,4376_4688,Palermo,106052939,1,4376_7778022_104122,4376_45 -4289_75966,268,4376_4689,Palermo,106142939,1,4376_7778022_104122,4376_45 -4289_75960,271,4376_469,Sutton Station,105238184,0,4376_7778022_103501,4376_2 -4289_75966,269,4376_4690,Palermo,106232939,1,4376_7778022_104122,4376_45 -4289_75966,259,4376_4691,Palermo,105765617,1,4376_7778022_104133,4376_45 -4289_75966,270,4376_4692,Palermo,105278283,1,4376_7778022_104180,4376_45 -4289_75966,146,4376_4693,Palermo,105248283,1,4376_7778022_104180,4376_45 -4289_75966,271,4376_4694,Palermo,105238283,1,4376_7778022_104180,4376_45 -4289_75966,115,4376_4695,Palermo,105218283,1,4376_7778022_104180,4376_45 -4289_75966,260,4376_4696,Enniskerry,105312981,1,4376_7778022_104102,4376_47 -4289_75966,261,4376_4697,Enniskerry,105322981,1,4376_7778022_104102,4376_47 -4289_75966,262,4376_4698,Enniskerry,105432981,1,4376_7778022_104102,4376_47 -4289_75966,263,4376_4699,Enniskerry,105542981,1,4376_7778022_104102,4376_47 -4289_75960,262,4376_47,Sutton Station,105431220,0,4376_7778022_103502,4376_1 -4289_75960,115,4376_470,Sutton Station,105218184,0,4376_7778022_103501,4376_2 -4289_75966,264,4376_4700,Enniskerry,105652981,1,4376_7778022_104102,4376_47 -4289_75966,265,4376_4701,Enniskerry,105812981,1,4376_7778022_104102,4376_47 -4289_75966,266,4376_4702,Enniskerry,105822981,1,4376_7778022_104102,4376_47 -4289_75966,267,4376_4703,Enniskerry,106052981,1,4376_7778022_104102,4376_47 -4289_75966,268,4376_4704,Enniskerry,106142981,1,4376_7778022_104102,4376_47 -4289_75966,269,4376_4705,Enniskerry,106232981,1,4376_7778022_104102,4376_47 -4289_75966,259,4376_4706,Enniskerry,105765657,1,4376_7778022_104202,4376_47 -4289_75966,270,4376_4707,Enniskerry,105278311,1,4376_7778022_104170,4376_47 -4289_75966,146,4376_4708,Enniskerry,105248311,1,4376_7778022_104170,4376_47 -4289_75966,271,4376_4709,Enniskerry,105238311,1,4376_7778022_104170,4376_47 -4289_75960,259,4376_471,Sutton Station,105765536,0,4376_7778022_103503,4376_1 -4289_75966,115,4376_4710,Enniskerry,105218311,1,4376_7778022_104170,4376_47 -4289_75991,260,4376_4711,Southern Cross,105311322,0,4376_7778022_104150,4376_50 -4289_75991,261,4376_4712,Southern Cross,105321322,0,4376_7778022_104150,4376_50 -4289_75991,262,4376_4713,Southern Cross,105431322,0,4376_7778022_104150,4376_50 -4289_75991,263,4376_4714,Southern Cross,105541322,0,4376_7778022_104150,4376_50 -4289_75991,264,4376_4715,Southern Cross,105651322,0,4376_7778022_104150,4376_50 -4289_75967,260,4376_4716,Mulhuddart,105311114,0,4376_7778022_104080,4376_52 -4289_75967,261,4376_4717,Mulhuddart,105321114,0,4376_7778022_104080,4376_52 -4289_75967,262,4376_4718,Mulhuddart,105431114,0,4376_7778022_104080,4376_52 -4289_75967,263,4376_4719,Mulhuddart,105541114,0,4376_7778022_104080,4376_52 -4289_75960,260,4376_472,Sutton Station,105312896,0,4376_7778022_103502,4376_1 -4289_75967,264,4376_4720,Mulhuddart,105651114,0,4376_7778022_104080,4376_52 -4289_75967,265,4376_4721,Mulhuddart,105811114,0,4376_7778022_104080,4376_52 -4289_75967,266,4376_4722,Mulhuddart,105821114,0,4376_7778022_104080,4376_52 -4289_75967,267,4376_4723,Mulhuddart,106051114,0,4376_7778022_104080,4376_52 -4289_75967,268,4376_4724,Mulhuddart,106141114,0,4376_7778022_104080,4376_52 -4289_75967,269,4376_4725,Mulhuddart,106231114,0,4376_7778022_104080,4376_52 -4289_75967,259,4376_4726,Mulhuddart,105764084,0,4376_7778022_104080,4376_52 -4289_75967,259,4376_4727,Mulhuddart,105764128,0,4376_7778022_104100,4376_51 -4289_75967,260,4376_4728,Mulhuddart,105311260,0,4376_7778022_104060,4376_51 -4289_75967,261,4376_4729,Mulhuddart,105321260,0,4376_7778022_104060,4376_51 -4289_75960,261,4376_473,Sutton Station,105322896,0,4376_7778022_103502,4376_1 -4289_75967,262,4376_4730,Mulhuddart,105431260,0,4376_7778022_104060,4376_51 -4289_75967,263,4376_4731,Mulhuddart,105541260,0,4376_7778022_104060,4376_51 -4289_75967,264,4376_4732,Mulhuddart,105651260,0,4376_7778022_104060,4376_51 -4289_75967,265,4376_4733,Mulhuddart,105811260,0,4376_7778022_104060,4376_51 -4289_75967,266,4376_4734,Mulhuddart,105821260,0,4376_7778022_104060,4376_51 -4289_75967,267,4376_4735,Mulhuddart,106051260,0,4376_7778022_104060,4376_51 -4289_75967,268,4376_4736,Mulhuddart,106141260,0,4376_7778022_104060,4376_51 -4289_75967,269,4376_4737,Mulhuddart,106231260,0,4376_7778022_104060,4376_51 -4289_75967,270,4376_4738,Mulhuddart,105277048,0,4376_7778022_104051,4376_52 -4289_75967,146,4376_4739,Mulhuddart,105247048,0,4376_7778022_104051,4376_52 -4289_75960,262,4376_474,Sutton Station,105432896,0,4376_7778022_103502,4376_1 -4289_75967,271,4376_4740,Mulhuddart,105237048,0,4376_7778022_104051,4376_52 -4289_75967,115,4376_4741,Mulhuddart,105217048,0,4376_7778022_104051,4376_52 -4289_75967,259,4376_4742,Mulhuddart,105764256,0,4376_7778022_104150,4376_51 -4289_75967,260,4376_4743,Mulhuddart,105311536,0,4376_7778022_104040,4376_51 -4289_75967,261,4376_4744,Mulhuddart,105321536,0,4376_7778022_104040,4376_51 -4289_75967,262,4376_4745,Mulhuddart,105431536,0,4376_7778022_104040,4376_51 -4289_75967,263,4376_4746,Mulhuddart,105541536,0,4376_7778022_104040,4376_51 -4289_75967,264,4376_4747,Mulhuddart,105651536,0,4376_7778022_104040,4376_51 -4289_75967,265,4376_4748,Mulhuddart,105811536,0,4376_7778022_104040,4376_51 -4289_75967,266,4376_4749,Mulhuddart,105821536,0,4376_7778022_104040,4376_51 -4289_75960,263,4376_475,Sutton Station,105542896,0,4376_7778022_103502,4376_1 -4289_75967,267,4376_4750,Mulhuddart,106051536,0,4376_7778022_104040,4376_51 -4289_75967,268,4376_4751,Mulhuddart,106141536,0,4376_7778022_104040,4376_51 -4289_75967,269,4376_4752,Mulhuddart,106231536,0,4376_7778022_104040,4376_51 -4289_75967,259,4376_4753,Mulhuddart,105764358,0,4376_7778022_104110,4376_53 -4289_75967,270,4376_4754,Mulhuddart,105277150,0,4376_7778022_104070,4376_54 -4289_75967,146,4376_4755,Mulhuddart,105247150,0,4376_7778022_104070,4376_54 -4289_75967,271,4376_4756,Mulhuddart,105237150,0,4376_7778022_104070,4376_54 -4289_75967,115,4376_4757,Mulhuddart,105217150,0,4376_7778022_104070,4376_54 -4289_75967,260,4376_4758,Mulhuddart,105311652,0,4376_7778022_104140,4376_51 -4289_75967,261,4376_4759,Mulhuddart,105321652,0,4376_7778022_104140,4376_51 -4289_75960,264,4376_476,Sutton Station,105652896,0,4376_7778022_103502,4376_1 -4289_75967,262,4376_4760,Mulhuddart,105431652,0,4376_7778022_104140,4376_51 -4289_75967,263,4376_4761,Mulhuddart,105541652,0,4376_7778022_104140,4376_51 -4289_75967,264,4376_4762,Mulhuddart,105651652,0,4376_7778022_104140,4376_51 -4289_75967,265,4376_4763,Mulhuddart,105811652,0,4376_7778022_104140,4376_51 -4289_75967,266,4376_4764,Mulhuddart,105821652,0,4376_7778022_104140,4376_51 -4289_75967,267,4376_4765,Mulhuddart,106051652,0,4376_7778022_104140,4376_51 -4289_75967,268,4376_4766,Mulhuddart,106141652,0,4376_7778022_104140,4376_51 -4289_75967,269,4376_4767,Mulhuddart,106231652,0,4376_7778022_104140,4376_51 -4289_75967,259,4376_4768,Mulhuddart,105764468,0,4376_7778022_104080,4376_53 -4289_75967,270,4376_4769,Mulhuddart,105277246,0,4376_7778022_104100,4376_54 -4289_75960,265,4376_477,Sutton Station,105812896,0,4376_7778022_103502,4376_1 -4289_75967,146,4376_4770,Mulhuddart,105247246,0,4376_7778022_104100,4376_54 -4289_75967,271,4376_4771,Mulhuddart,105237246,0,4376_7778022_104100,4376_54 -4289_75967,115,4376_4772,Mulhuddart,105217246,0,4376_7778022_104100,4376_54 -4289_75967,260,4376_4773,Mulhuddart,105311758,0,4376_7778022_104080,4376_51 -4289_75967,261,4376_4774,Mulhuddart,105321758,0,4376_7778022_104080,4376_51 -4289_75967,262,4376_4775,Mulhuddart,105431758,0,4376_7778022_104080,4376_51 -4289_75967,263,4376_4776,Mulhuddart,105541758,0,4376_7778022_104080,4376_51 -4289_75967,264,4376_4777,Mulhuddart,105651758,0,4376_7778022_104080,4376_51 -4289_75967,265,4376_4778,Mulhuddart,105811758,0,4376_7778022_104080,4376_51 -4289_75967,266,4376_4779,Mulhuddart,105821758,0,4376_7778022_104080,4376_51 -4289_75960,266,4376_478,Sutton Station,105822896,0,4376_7778022_103502,4376_1 -4289_75967,267,4376_4780,Mulhuddart,106051758,0,4376_7778022_104080,4376_51 -4289_75967,268,4376_4781,Mulhuddart,106141758,0,4376_7778022_104080,4376_51 -4289_75967,269,4376_4782,Mulhuddart,106231758,0,4376_7778022_104080,4376_51 -4289_75967,259,4376_4783,Mulhuddart,105764570,0,4376_7778022_104100,4376_53 -4289_75967,270,4376_4784,Mulhuddart,105277336,0,4376_7778022_104080,4376_54 -4289_75967,146,4376_4785,Mulhuddart,105247336,0,4376_7778022_104080,4376_54 -4289_75967,271,4376_4786,Mulhuddart,105237336,0,4376_7778022_104080,4376_54 -4289_75967,115,4376_4787,Mulhuddart,105217336,0,4376_7778022_104080,4376_54 -4289_75967,260,4376_4788,Mulhuddart,105311868,0,4376_7778022_104170,4376_51 -4289_75967,261,4376_4789,Mulhuddart,105321868,0,4376_7778022_104170,4376_51 -4289_75960,267,4376_479,Sutton Station,106052896,0,4376_7778022_103502,4376_1 -4289_75967,262,4376_4790,Mulhuddart,105431868,0,4376_7778022_104170,4376_51 -4289_75967,263,4376_4791,Mulhuddart,105541868,0,4376_7778022_104170,4376_51 -4289_75967,264,4376_4792,Mulhuddart,105651868,0,4376_7778022_104170,4376_51 -4289_75967,265,4376_4793,Mulhuddart,105811868,0,4376_7778022_104170,4376_51 -4289_75967,266,4376_4794,Mulhuddart,105821868,0,4376_7778022_104170,4376_51 -4289_75967,267,4376_4795,Mulhuddart,106051868,0,4376_7778022_104170,4376_51 -4289_75967,268,4376_4796,Mulhuddart,106141868,0,4376_7778022_104170,4376_51 -4289_75967,269,4376_4797,Mulhuddart,106231868,0,4376_7778022_104170,4376_51 -4289_75967,259,4376_4798,Mulhuddart,105764678,0,4376_7778022_104090,4376_53 -4289_75967,270,4376_4799,Mulhuddart,105277428,0,4376_7778022_104051,4376_54 -4289_75960,263,4376_48,Sutton Station,105541220,0,4376_7778022_103502,4376_1 -4289_75960,268,4376_480,Sutton Station,106142896,0,4376_7778022_103502,4376_1 -4289_75967,146,4376_4800,Mulhuddart,105247428,0,4376_7778022_104051,4376_54 -4289_75967,271,4376_4801,Mulhuddart,105237428,0,4376_7778022_104051,4376_54 -4289_75967,115,4376_4802,Mulhuddart,105217428,0,4376_7778022_104051,4376_54 -4289_75967,260,4376_4803,Mulhuddart,105311978,0,4376_7778022_104190,4376_51 -4289_75967,261,4376_4804,Mulhuddart,105321978,0,4376_7778022_104190,4376_51 -4289_75967,262,4376_4805,Mulhuddart,105431978,0,4376_7778022_104190,4376_51 -4289_75967,263,4376_4806,Mulhuddart,105541978,0,4376_7778022_104190,4376_51 -4289_75967,264,4376_4807,Mulhuddart,105651978,0,4376_7778022_104190,4376_51 -4289_75967,265,4376_4808,Mulhuddart,105811978,0,4376_7778022_104190,4376_51 -4289_75967,266,4376_4809,Mulhuddart,105821978,0,4376_7778022_104190,4376_51 -4289_75960,269,4376_481,Sutton Station,106232896,0,4376_7778022_103502,4376_1 -4289_75967,267,4376_4810,Mulhuddart,106051978,0,4376_7778022_104190,4376_51 -4289_75967,268,4376_4811,Mulhuddart,106141978,0,4376_7778022_104190,4376_51 -4289_75967,269,4376_4812,Mulhuddart,106231978,0,4376_7778022_104190,4376_51 -4289_75967,259,4376_4813,Mulhuddart,105764776,0,4376_7778022_104150,4376_53 -4289_75967,270,4376_4814,Mulhuddart,105277518,0,4376_7778022_104130,4376_54 -4289_75967,146,4376_4815,Mulhuddart,105247518,0,4376_7778022_104130,4376_54 -4289_75967,271,4376_4816,Mulhuddart,105237518,0,4376_7778022_104130,4376_54 -4289_75967,115,4376_4817,Mulhuddart,105217518,0,4376_7778022_104130,4376_54 -4289_75967,259,4376_4818,Mulhuddart,105764878,0,4376_7778022_104171,4376_51 -4289_75967,270,4376_4819,Mulhuddart,105277606,0,4376_7778022_104070,4376_53 -4289_75960,270,4376_482,Sutton Station,105278228,0,4376_7778022_103503,4376_2 -4289_75967,146,4376_4820,Mulhuddart,105247606,0,4376_7778022_104070,4376_53 -4289_75967,271,4376_4821,Mulhuddart,105237606,0,4376_7778022_104070,4376_53 -4289_75967,115,4376_4822,Mulhuddart,105217606,0,4376_7778022_104070,4376_53 -4289_75967,260,4376_4823,Mulhuddart,105312120,0,4376_7778022_104060,4376_51 -4289_75967,261,4376_4824,Mulhuddart,105322120,0,4376_7778022_104060,4376_51 -4289_75967,262,4376_4825,Mulhuddart,105432120,0,4376_7778022_104060,4376_51 -4289_75967,263,4376_4826,Mulhuddart,105542120,0,4376_7778022_104060,4376_51 -4289_75967,264,4376_4827,Mulhuddart,105652120,0,4376_7778022_104060,4376_51 -4289_75967,265,4376_4828,Mulhuddart,105812120,0,4376_7778022_104060,4376_51 -4289_75967,266,4376_4829,Mulhuddart,105822120,0,4376_7778022_104060,4376_51 -4289_75960,146,4376_483,Sutton Station,105248228,0,4376_7778022_103503,4376_2 -4289_75967,267,4376_4830,Mulhuddart,106052120,0,4376_7778022_104060,4376_51 -4289_75967,268,4376_4831,Mulhuddart,106142120,0,4376_7778022_104060,4376_51 -4289_75967,269,4376_4832,Mulhuddart,106232120,0,4376_7778022_104060,4376_51 -4289_75967,259,4376_4833,Mulhuddart,105764980,0,4376_7778022_104180,4376_51 -4289_75967,270,4376_4834,Mulhuddart,105277696,0,4376_7778022_104110,4376_53 -4289_75967,146,4376_4835,Mulhuddart,105247696,0,4376_7778022_104110,4376_53 -4289_75967,271,4376_4836,Mulhuddart,105237696,0,4376_7778022_104110,4376_53 -4289_75967,115,4376_4837,Mulhuddart,105217696,0,4376_7778022_104110,4376_53 -4289_75967,260,4376_4838,Mulhuddart,105312248,0,4376_7778022_104110,4376_51 -4289_75967,261,4376_4839,Mulhuddart,105322248,0,4376_7778022_104110,4376_51 -4289_75960,271,4376_484,Sutton Station,105238228,0,4376_7778022_103503,4376_2 -4289_75967,262,4376_4840,Mulhuddart,105432248,0,4376_7778022_104110,4376_51 -4289_75967,263,4376_4841,Mulhuddart,105542248,0,4376_7778022_104110,4376_51 -4289_75967,264,4376_4842,Mulhuddart,105652248,0,4376_7778022_104110,4376_51 -4289_75967,265,4376_4843,Mulhuddart,105812248,0,4376_7778022_104110,4376_51 -4289_75967,266,4376_4844,Mulhuddart,105822248,0,4376_7778022_104110,4376_51 -4289_75967,267,4376_4845,Mulhuddart,106052248,0,4376_7778022_104110,4376_51 -4289_75967,268,4376_4846,Mulhuddart,106142248,0,4376_7778022_104110,4376_51 -4289_75967,269,4376_4847,Mulhuddart,106232248,0,4376_7778022_104110,4376_51 -4289_75967,259,4376_4848,Mulhuddart,105765082,0,4376_7778022_104110,4376_51 -4289_75967,270,4376_4849,Mulhuddart,105277788,0,4376_7778022_104150,4376_51 -4289_75960,115,4376_485,Sutton Station,105218228,0,4376_7778022_103503,4376_2 -4289_75967,146,4376_4850,Mulhuddart,105247788,0,4376_7778022_104150,4376_51 -4289_75967,271,4376_4851,Mulhuddart,105237788,0,4376_7778022_104150,4376_51 -4289_75967,115,4376_4852,Mulhuddart,105217788,0,4376_7778022_104150,4376_51 -4289_75967,260,4376_4853,Mulhuddart,105312374,0,4376_7778022_104040,4376_51 -4289_75967,261,4376_4854,Mulhuddart,105322374,0,4376_7778022_104040,4376_51 -4289_75967,262,4376_4855,Mulhuddart,105432374,0,4376_7778022_104040,4376_51 -4289_75967,263,4376_4856,Mulhuddart,105542374,0,4376_7778022_104040,4376_51 -4289_75967,264,4376_4857,Mulhuddart,105652374,0,4376_7778022_104040,4376_51 -4289_75967,265,4376_4858,Mulhuddart,105812374,0,4376_7778022_104040,4376_51 -4289_75967,266,4376_4859,Mulhuddart,105822374,0,4376_7778022_104040,4376_51 -4289_75960,259,4376_486,Sutton Station,105765582,0,4376_7778022_103101,4376_1 -4289_75967,267,4376_4860,Mulhuddart,106052374,0,4376_7778022_104040,4376_51 -4289_75967,268,4376_4861,Mulhuddart,106142374,0,4376_7778022_104040,4376_51 -4289_75967,269,4376_4862,Mulhuddart,106232374,0,4376_7778022_104040,4376_51 -4289_75967,259,4376_4863,Mulhuddart,105765190,0,4376_7778022_104080,4376_51 -4289_75967,270,4376_4864,Mulhuddart,105277878,0,4376_7778022_104100,4376_53 -4289_75967,146,4376_4865,Mulhuddart,105247878,0,4376_7778022_104100,4376_53 -4289_75967,271,4376_4866,Mulhuddart,105237878,0,4376_7778022_104100,4376_53 -4289_75967,115,4376_4867,Mulhuddart,105217878,0,4376_7778022_104100,4376_53 -4289_75967,260,4376_4868,Mulhuddart,105312490,0,4376_7778022_104140,4376_51 -4289_75967,261,4376_4869,Mulhuddart,105322490,0,4376_7778022_104140,4376_51 -4289_75960,260,4376_487,Sutton Station,105312942,0,4376_7778022_103503,4376_1 -4289_75967,262,4376_4870,Mulhuddart,105432490,0,4376_7778022_104140,4376_51 -4289_75967,263,4376_4871,Mulhuddart,105542490,0,4376_7778022_104140,4376_51 -4289_75967,264,4376_4872,Mulhuddart,105652490,0,4376_7778022_104140,4376_51 -4289_75967,265,4376_4873,Mulhuddart,105812490,0,4376_7778022_104140,4376_51 -4289_75967,266,4376_4874,Mulhuddart,105822490,0,4376_7778022_104140,4376_51 -4289_75967,267,4376_4875,Mulhuddart,106052490,0,4376_7778022_104140,4376_51 -4289_75967,268,4376_4876,Mulhuddart,106142490,0,4376_7778022_104140,4376_51 -4289_75967,269,4376_4877,Mulhuddart,106232490,0,4376_7778022_104140,4376_51 -4289_75967,260,4376_4878,Mulhuddart,105312576,0,4376_7778022_104080,4376_51 -4289_75967,261,4376_4879,Mulhuddart,105322576,0,4376_7778022_104080,4376_51 -4289_75960,261,4376_488,Sutton Station,105322942,0,4376_7778022_103503,4376_1 -4289_75967,262,4376_4880,Mulhuddart,105432576,0,4376_7778022_104080,4376_51 -4289_75967,263,4376_4881,Mulhuddart,105542576,0,4376_7778022_104080,4376_51 -4289_75967,264,4376_4882,Mulhuddart,105652576,0,4376_7778022_104080,4376_51 -4289_75967,265,4376_4883,Mulhuddart,105812576,0,4376_7778022_104080,4376_51 -4289_75967,266,4376_4884,Mulhuddart,105822576,0,4376_7778022_104080,4376_51 -4289_75967,267,4376_4885,Mulhuddart,106052576,0,4376_7778022_104080,4376_51 -4289_75967,268,4376_4886,Mulhuddart,106142576,0,4376_7778022_104080,4376_51 -4289_75967,269,4376_4887,Mulhuddart,106232576,0,4376_7778022_104080,4376_51 -4289_75967,259,4376_4888,Mulhuddart,105765282,0,4376_7778022_104100,4376_53 -4289_75967,270,4376_4889,Mulhuddart,105277964,0,4376_7778022_104080,4376_54 -4289_75960,262,4376_489,Sutton Station,105432942,0,4376_7778022_103503,4376_1 -4289_75967,146,4376_4890,Mulhuddart,105247964,0,4376_7778022_104080,4376_54 -4289_75967,271,4376_4891,Mulhuddart,105237964,0,4376_7778022_104080,4376_54 -4289_75967,115,4376_4892,Mulhuddart,105217964,0,4376_7778022_104080,4376_54 -4289_75967,260,4376_4893,Mulhuddart,105312664,0,4376_7778022_104170,4376_51 -4289_75967,261,4376_4894,Mulhuddart,105322664,0,4376_7778022_104170,4376_51 -4289_75967,262,4376_4895,Mulhuddart,105432664,0,4376_7778022_104170,4376_51 -4289_75967,263,4376_4896,Mulhuddart,105542664,0,4376_7778022_104170,4376_51 -4289_75967,264,4376_4897,Mulhuddart,105652664,0,4376_7778022_104170,4376_51 -4289_75967,265,4376_4898,Mulhuddart,105812664,0,4376_7778022_104170,4376_51 -4289_75967,266,4376_4899,Mulhuddart,105822664,0,4376_7778022_104170,4376_51 -4289_75960,264,4376_49,Sutton Station,105651220,0,4376_7778022_103502,4376_1 -4289_75960,263,4376_490,Sutton Station,105542942,0,4376_7778022_103503,4376_1 -4289_75967,267,4376_4900,Mulhuddart,106052664,0,4376_7778022_104170,4376_51 -4289_75967,268,4376_4901,Mulhuddart,106142664,0,4376_7778022_104170,4376_51 -4289_75967,269,4376_4902,Mulhuddart,106232664,0,4376_7778022_104170,4376_51 -4289_75967,259,4376_4903,Mulhuddart,105765370,0,4376_7778022_104090,4376_53 -4289_75967,270,4376_4904,Mulhuddart,105278040,0,4376_7778022_104070,4376_54 -4289_75967,146,4376_4905,Mulhuddart,105248040,0,4376_7778022_104070,4376_54 -4289_75967,271,4376_4906,Mulhuddart,105238040,0,4376_7778022_104070,4376_54 -4289_75967,115,4376_4907,Mulhuddart,105218040,0,4376_7778022_104070,4376_54 -4289_75967,260,4376_4908,Mulhuddart,105312762,0,4376_7778022_104190,4376_51 -4289_75967,261,4376_4909,Mulhuddart,105322762,0,4376_7778022_104190,4376_51 -4289_75960,264,4376_491,Sutton Station,105652942,0,4376_7778022_103503,4376_1 -4289_75967,262,4376_4910,Mulhuddart,105432762,0,4376_7778022_104190,4376_51 -4289_75967,263,4376_4911,Mulhuddart,105542762,0,4376_7778022_104190,4376_51 -4289_75967,264,4376_4912,Mulhuddart,105652762,0,4376_7778022_104190,4376_51 -4289_75967,265,4376_4913,Mulhuddart,105812762,0,4376_7778022_104190,4376_51 -4289_75967,266,4376_4914,Mulhuddart,105822762,0,4376_7778022_104190,4376_51 -4289_75967,267,4376_4915,Mulhuddart,106052762,0,4376_7778022_104190,4376_51 -4289_75967,268,4376_4916,Mulhuddart,106142762,0,4376_7778022_104190,4376_51 -4289_75967,269,4376_4917,Mulhuddart,106232762,0,4376_7778022_104190,4376_51 -4289_75967,259,4376_4918,Mulhuddart,105765458,0,4376_7778022_104150,4376_53 -4289_75967,270,4376_4919,Mulhuddart,105278118,0,4376_7778022_104110,4376_54 -4289_75960,265,4376_492,Sutton Station,105812942,0,4376_7778022_103503,4376_1 -4289_75967,146,4376_4920,Mulhuddart,105248118,0,4376_7778022_104110,4376_54 -4289_75967,271,4376_4921,Mulhuddart,105238118,0,4376_7778022_104110,4376_54 -4289_75967,115,4376_4922,Mulhuddart,105218118,0,4376_7778022_104110,4376_54 -4289_75967,260,4376_4923,Mulhuddart,105312856,0,4376_7778022_104060,4376_51 -4289_75967,261,4376_4924,Mulhuddart,105322856,0,4376_7778022_104060,4376_51 -4289_75967,262,4376_4925,Mulhuddart,105432856,0,4376_7778022_104060,4376_51 -4289_75967,263,4376_4926,Mulhuddart,105542856,0,4376_7778022_104060,4376_51 -4289_75967,264,4376_4927,Mulhuddart,105652856,0,4376_7778022_104060,4376_51 -4289_75967,265,4376_4928,Mulhuddart,105812856,0,4376_7778022_104060,4376_51 -4289_75967,266,4376_4929,Mulhuddart,105822856,0,4376_7778022_104060,4376_51 -4289_75960,266,4376_493,Sutton Station,105822942,0,4376_7778022_103503,4376_1 -4289_75967,267,4376_4930,Mulhuddart,106052856,0,4376_7778022_104060,4376_51 -4289_75967,268,4376_4931,Mulhuddart,106142856,0,4376_7778022_104060,4376_51 -4289_75967,269,4376_4932,Mulhuddart,106232856,0,4376_7778022_104060,4376_51 -4289_75967,259,4376_4933,Mulhuddart,105765542,0,4376_7778022_104172,4376_53 -4289_75967,270,4376_4934,Mulhuddart,105278194,0,4376_7778022_104130,4376_54 -4289_75967,146,4376_4935,Mulhuddart,105248194,0,4376_7778022_104130,4376_54 -4289_75967,271,4376_4936,Mulhuddart,105238194,0,4376_7778022_104130,4376_54 -4289_75967,115,4376_4937,Mulhuddart,105218194,0,4376_7778022_104130,4376_54 -4289_75967,260,4376_4938,DCU Helix,105311061,1,4376_7778022_104040,4376_55 -4289_75967,261,4376_4939,DCU Helix,105321061,1,4376_7778022_104040,4376_55 -4289_75960,267,4376_494,Sutton Station,106052942,0,4376_7778022_103503,4376_1 -4289_75967,262,4376_4940,DCU Helix,105431061,1,4376_7778022_104040,4376_55 -4289_75967,263,4376_4941,DCU Helix,105541061,1,4376_7778022_104040,4376_55 -4289_75967,264,4376_4942,DCU Helix,105651061,1,4376_7778022_104040,4376_55 -4289_75967,265,4376_4943,DCU Helix,105811061,1,4376_7778022_104040,4376_55 -4289_75967,266,4376_4944,DCU Helix,105821061,1,4376_7778022_104040,4376_55 -4289_75967,267,4376_4945,DCU Helix,106051061,1,4376_7778022_104040,4376_55 -4289_75967,268,4376_4946,DCU Helix,106141061,1,4376_7778022_104040,4376_55 -4289_75967,269,4376_4947,DCU Helix,106231061,1,4376_7778022_104040,4376_55 -4289_75967,259,4376_4948,DCU Helix,105764089,1,4376_7778022_104110,4376_55 -4289_75967,260,4376_4949,DCU Helix,105311149,1,4376_7778022_104140,4376_55 -4289_75960,268,4376_495,Sutton Station,106142942,0,4376_7778022_103503,4376_1 -4289_75967,261,4376_4950,DCU Helix,105321149,1,4376_7778022_104140,4376_55 -4289_75967,262,4376_4951,DCU Helix,105431149,1,4376_7778022_104140,4376_55 -4289_75967,263,4376_4952,DCU Helix,105541149,1,4376_7778022_104140,4376_55 -4289_75967,264,4376_4953,DCU Helix,105651149,1,4376_7778022_104140,4376_55 -4289_75967,265,4376_4954,DCU Helix,105811149,1,4376_7778022_104140,4376_55 -4289_75967,266,4376_4955,DCU Helix,105821149,1,4376_7778022_104140,4376_55 -4289_75967,267,4376_4956,DCU Helix,106051149,1,4376_7778022_104140,4376_55 -4289_75967,268,4376_4957,DCU Helix,106141149,1,4376_7778022_104140,4376_55 -4289_75967,269,4376_4958,DCU Helix,106231149,1,4376_7778022_104140,4376_55 -4289_75967,259,4376_4959,DCU Helix,105764171,1,4376_7778022_104080,4376_55 -4289_75960,269,4376_496,Sutton Station,106232942,0,4376_7778022_103503,4376_1 -4289_75967,260,4376_4960,DCU Helix,105311301,1,4376_7778022_104080,4376_55 -4289_75967,261,4376_4961,DCU Helix,105321301,1,4376_7778022_104080,4376_55 -4289_75967,262,4376_4962,DCU Helix,105431301,1,4376_7778022_104080,4376_55 -4289_75967,263,4376_4963,DCU Helix,105541301,1,4376_7778022_104080,4376_55 -4289_75967,264,4376_4964,DCU Helix,105651301,1,4376_7778022_104080,4376_55 -4289_75967,265,4376_4965,DCU Helix,105811301,1,4376_7778022_104080,4376_55 -4289_75967,266,4376_4966,DCU Helix,105821301,1,4376_7778022_104080,4376_55 -4289_75967,267,4376_4967,DCU Helix,106051301,1,4376_7778022_104080,4376_55 -4289_75967,268,4376_4968,DCU Helix,106141301,1,4376_7778022_104080,4376_55 -4289_75967,269,4376_4969,DCU Helix,106231301,1,4376_7778022_104080,4376_55 -4289_75960,270,4376_497,Sutton Station,105278260,0,4376_7778022_103106,4376_2 -4289_75967,259,4376_4970,DCU Helix,105764227,1,4376_7778022_104100,4376_55 -4289_75967,270,4376_4971,DCU Helix,105277073,1,4376_7778022_104080,4376_55 -4289_75967,146,4376_4972,DCU Helix,105247073,1,4376_7778022_104080,4376_55 -4289_75967,271,4376_4973,DCU Helix,105237073,1,4376_7778022_104080,4376_55 -4289_75967,115,4376_4974,DCU Helix,105217073,1,4376_7778022_104080,4376_55 -4289_75967,260,4376_4975,DCU Helix,105311445,1,4376_7778022_104170,4376_55 -4289_75967,261,4376_4976,DCU Helix,105321445,1,4376_7778022_104170,4376_55 -4289_75967,262,4376_4977,DCU Helix,105431445,1,4376_7778022_104170,4376_55 -4289_75967,263,4376_4978,DCU Helix,105541445,1,4376_7778022_104170,4376_55 -4289_75967,264,4376_4979,DCU Helix,105651445,1,4376_7778022_104170,4376_55 -4289_75960,146,4376_498,Sutton Station,105248260,0,4376_7778022_103106,4376_2 -4289_75967,265,4376_4980,DCU Helix,105811445,1,4376_7778022_104170,4376_55 -4289_75967,266,4376_4981,DCU Helix,105821445,1,4376_7778022_104170,4376_55 -4289_75967,267,4376_4982,DCU Helix,106051445,1,4376_7778022_104170,4376_55 -4289_75967,268,4376_4983,DCU Helix,106141445,1,4376_7778022_104170,4376_55 -4289_75967,269,4376_4984,DCU Helix,106231445,1,4376_7778022_104170,4376_55 -4289_75967,270,4376_4985,DCU Helix,105277135,1,4376_7778022_104051,4376_55 -4289_75967,146,4376_4986,DCU Helix,105247135,1,4376_7778022_104051,4376_55 -4289_75967,271,4376_4987,DCU Helix,105237135,1,4376_7778022_104051,4376_55 -4289_75967,115,4376_4988,DCU Helix,105217135,1,4376_7778022_104051,4376_55 -4289_75967,259,4376_4989,DCU Helix,105764323,1,4376_7778022_104090,4376_55 -4289_75960,271,4376_499,Sutton Station,105238260,0,4376_7778022_103106,4376_2 -4289_75967,260,4376_4990,DCU Helix,105311553,1,4376_7778022_104190,4376_55 -4289_75967,261,4376_4991,DCU Helix,105321553,1,4376_7778022_104190,4376_55 -4289_75967,262,4376_4992,DCU Helix,105431553,1,4376_7778022_104190,4376_55 -4289_75967,263,4376_4993,DCU Helix,105541553,1,4376_7778022_104190,4376_55 -4289_75967,264,4376_4994,DCU Helix,105651553,1,4376_7778022_104190,4376_55 -4289_75967,265,4376_4995,DCU Helix,105811553,1,4376_7778022_104190,4376_55 -4289_75967,266,4376_4996,DCU Helix,105821553,1,4376_7778022_104190,4376_55 -4289_75967,267,4376_4997,DCU Helix,106051553,1,4376_7778022_104190,4376_55 -4289_75967,268,4376_4998,DCU Helix,106141553,1,4376_7778022_104190,4376_55 -4289_75967,269,4376_4999,DCU Helix,106231553,1,4376_7778022_104190,4376_55 -4289_75960,263,4376_5,Sutton Station,105541026,0,4376_7778022_103503,4376_1 -4289_75960,265,4376_50,Sutton Station,105811220,0,4376_7778022_103502,4376_1 -4289_75960,115,4376_500,Sutton Station,105218260,0,4376_7778022_103106,4376_2 -4289_75967,259,4376_5000,DCU Helix,105764407,1,4376_7778022_104150,4376_55 -4289_75967,270,4376_5001,DCU Helix,105277203,1,4376_7778022_104130,4376_55 -4289_75967,146,4376_5002,DCU Helix,105247203,1,4376_7778022_104130,4376_55 -4289_75967,271,4376_5003,DCU Helix,105237203,1,4376_7778022_104130,4376_55 -4289_75967,115,4376_5004,DCU Helix,105217203,1,4376_7778022_104130,4376_55 -4289_75967,260,4376_5005,DCU Helix,105311661,1,4376_7778022_104060,4376_55 -4289_75967,261,4376_5006,DCU Helix,105321661,1,4376_7778022_104060,4376_55 -4289_75967,262,4376_5007,DCU Helix,105431661,1,4376_7778022_104060,4376_55 -4289_75967,263,4376_5008,DCU Helix,105541661,1,4376_7778022_104060,4376_55 -4289_75967,264,4376_5009,DCU Helix,105651661,1,4376_7778022_104060,4376_55 -4289_75960,259,4376_501,Sutton Station,105765620,0,4376_7778022_103501,4376_1 -4289_75967,265,4376_5010,DCU Helix,105811661,1,4376_7778022_104060,4376_55 -4289_75967,266,4376_5011,DCU Helix,105821661,1,4376_7778022_104060,4376_55 -4289_75967,267,4376_5012,DCU Helix,106051661,1,4376_7778022_104060,4376_55 -4289_75967,268,4376_5013,DCU Helix,106141661,1,4376_7778022_104060,4376_55 -4289_75967,269,4376_5014,DCU Helix,106231661,1,4376_7778022_104060,4376_55 -4289_75967,259,4376_5015,DCU Helix,105764509,1,4376_7778022_104171,4376_55 -4289_75967,270,4376_5016,DCU Helix,105277291,1,4376_7778022_104070,4376_55 -4289_75967,146,4376_5017,DCU Helix,105247291,1,4376_7778022_104070,4376_55 -4289_75967,271,4376_5018,DCU Helix,105237291,1,4376_7778022_104070,4376_55 -4289_75967,115,4376_5019,DCU Helix,105217291,1,4376_7778022_104070,4376_55 -4289_75960,260,4376_502,Sutton Station,105312980,0,4376_7778022_103501,4376_1 -4289_75967,260,4376_5020,DCU Helix,105311755,1,4376_7778022_104110,4376_55 -4289_75967,261,4376_5021,DCU Helix,105321755,1,4376_7778022_104110,4376_55 -4289_75967,262,4376_5022,DCU Helix,105431755,1,4376_7778022_104110,4376_55 -4289_75967,263,4376_5023,DCU Helix,105541755,1,4376_7778022_104110,4376_55 -4289_75967,264,4376_5024,DCU Helix,105651755,1,4376_7778022_104110,4376_55 -4289_75967,265,4376_5025,DCU Helix,105811755,1,4376_7778022_104110,4376_55 -4289_75967,266,4376_5026,DCU Helix,105821755,1,4376_7778022_104110,4376_55 -4289_75967,267,4376_5027,DCU Helix,106051755,1,4376_7778022_104110,4376_55 -4289_75967,268,4376_5028,DCU Helix,106141755,1,4376_7778022_104110,4376_55 -4289_75967,269,4376_5029,DCU Helix,106231755,1,4376_7778022_104110,4376_55 -4289_75960,261,4376_503,Sutton Station,105322980,0,4376_7778022_103501,4376_1 -4289_75967,259,4376_5030,DCU Helix,105764613,1,4376_7778022_104180,4376_55 -4289_75967,270,4376_5031,DCU Helix,105277381,1,4376_7778022_104110,4376_55 -4289_75967,146,4376_5032,DCU Helix,105247381,1,4376_7778022_104110,4376_55 -4289_75967,271,4376_5033,DCU Helix,105237381,1,4376_7778022_104110,4376_55 -4289_75967,115,4376_5034,DCU Helix,105217381,1,4376_7778022_104110,4376_55 -4289_75967,260,4376_5035,DCU Helix,105311873,1,4376_7778022_104040,4376_55 -4289_75967,261,4376_5036,DCU Helix,105321873,1,4376_7778022_104040,4376_55 -4289_75967,262,4376_5037,DCU Helix,105431873,1,4376_7778022_104040,4376_55 -4289_75967,263,4376_5038,DCU Helix,105541873,1,4376_7778022_104040,4376_55 -4289_75967,264,4376_5039,DCU Helix,105651873,1,4376_7778022_104040,4376_55 -4289_75960,262,4376_504,Sutton Station,105432980,0,4376_7778022_103501,4376_1 -4289_75967,265,4376_5040,DCU Helix,105811873,1,4376_7778022_104040,4376_55 -4289_75967,266,4376_5041,DCU Helix,105821873,1,4376_7778022_104040,4376_55 -4289_75967,267,4376_5042,DCU Helix,106051873,1,4376_7778022_104040,4376_55 -4289_75967,268,4376_5043,DCU Helix,106141873,1,4376_7778022_104040,4376_55 -4289_75967,269,4376_5044,DCU Helix,106231873,1,4376_7778022_104040,4376_55 -4289_75967,259,4376_5045,DCU Helix,105764715,1,4376_7778022_104110,4376_55 -4289_75967,270,4376_5046,DCU Helix,105277471,1,4376_7778022_104150,4376_55 -4289_75967,146,4376_5047,DCU Helix,105247471,1,4376_7778022_104150,4376_55 -4289_75967,271,4376_5048,DCU Helix,105237471,1,4376_7778022_104150,4376_55 -4289_75967,115,4376_5049,DCU Helix,105217471,1,4376_7778022_104150,4376_55 -4289_75960,263,4376_505,Sutton Station,105542980,0,4376_7778022_103501,4376_1 -4289_75967,260,4376_5050,DCU Helix,105311979,1,4376_7778022_104140,4376_55 -4289_75967,261,4376_5051,DCU Helix,105321979,1,4376_7778022_104140,4376_55 -4289_75967,262,4376_5052,DCU Helix,105431979,1,4376_7778022_104140,4376_55 -4289_75967,263,4376_5053,DCU Helix,105541979,1,4376_7778022_104140,4376_55 -4289_75967,264,4376_5054,DCU Helix,105651979,1,4376_7778022_104140,4376_55 -4289_75967,265,4376_5055,DCU Helix,105811979,1,4376_7778022_104140,4376_55 -4289_75967,266,4376_5056,DCU Helix,105821979,1,4376_7778022_104140,4376_55 -4289_75967,267,4376_5057,DCU Helix,106051979,1,4376_7778022_104140,4376_55 -4289_75967,268,4376_5058,DCU Helix,106141979,1,4376_7778022_104140,4376_55 -4289_75967,269,4376_5059,DCU Helix,106231979,1,4376_7778022_104140,4376_55 -4289_75960,264,4376_506,Sutton Station,105652980,0,4376_7778022_103501,4376_1 -4289_75967,259,4376_5060,DCU Helix,105764833,1,4376_7778022_104080,4376_55 -4289_75967,270,4376_5061,DCU Helix,105277573,1,4376_7778022_104100,4376_59 -4289_75967,146,4376_5062,DCU Helix,105247573,1,4376_7778022_104100,4376_59 -4289_75967,271,4376_5063,DCU Helix,105237573,1,4376_7778022_104100,4376_59 -4289_75967,115,4376_5064,DCU Helix,105217573,1,4376_7778022_104100,4376_59 -4289_75967,259,4376_5065,DCU Helix,105764937,1,4376_7778022_104100,4376_55 -4289_75967,270,4376_5066,DCU Helix,105277665,1,4376_7778022_104080,4376_59 -4289_75967,146,4376_5067,DCU Helix,105247665,1,4376_7778022_104080,4376_59 -4289_75967,271,4376_5068,DCU Helix,105237665,1,4376_7778022_104080,4376_59 -4289_75967,115,4376_5069,DCU Helix,105217665,1,4376_7778022_104080,4376_59 -4289_75960,265,4376_507,Sutton Station,105812980,0,4376_7778022_103501,4376_1 -4289_75967,260,4376_5070,DCU Helix,105312259,1,4376_7778022_104170,4376_55 -4289_75967,261,4376_5071,DCU Helix,105322259,1,4376_7778022_104170,4376_55 -4289_75967,262,4376_5072,DCU Helix,105432259,1,4376_7778022_104170,4376_55 -4289_75967,263,4376_5073,DCU Helix,105542259,1,4376_7778022_104170,4376_55 -4289_75967,264,4376_5074,DCU Helix,105652259,1,4376_7778022_104170,4376_55 -4289_75967,265,4376_5075,DCU Helix,105812259,1,4376_7778022_104170,4376_55 -4289_75967,266,4376_5076,DCU Helix,105822259,1,4376_7778022_104170,4376_55 -4289_75967,267,4376_5077,DCU Helix,106052259,1,4376_7778022_104170,4376_55 -4289_75967,268,4376_5078,DCU Helix,106142259,1,4376_7778022_104170,4376_55 -4289_75967,269,4376_5079,DCU Helix,106232259,1,4376_7778022_104170,4376_55 -4289_75960,266,4376_508,Sutton Station,105822980,0,4376_7778022_103501,4376_1 -4289_75967,259,4376_5080,DCU Helix,105765039,1,4376_7778022_104090,4376_55 -4289_75967,270,4376_5081,DCU Helix,105277755,1,4376_7778022_104070,4376_55 -4289_75967,146,4376_5082,DCU Helix,105247755,1,4376_7778022_104070,4376_55 -4289_75967,271,4376_5083,DCU Helix,105237755,1,4376_7778022_104070,4376_55 -4289_75967,115,4376_5084,DCU Helix,105217755,1,4376_7778022_104070,4376_55 -4289_75967,260,4376_5085,DCU Helix,105312391,1,4376_7778022_104190,4376_55 -4289_75967,261,4376_5086,DCU Helix,105322391,1,4376_7778022_104190,4376_55 -4289_75967,262,4376_5087,DCU Helix,105432391,1,4376_7778022_104190,4376_55 -4289_75967,263,4376_5088,DCU Helix,105542391,1,4376_7778022_104190,4376_55 -4289_75967,264,4376_5089,DCU Helix,105652391,1,4376_7778022_104190,4376_55 -4289_75960,267,4376_509,Sutton Station,106052980,0,4376_7778022_103501,4376_1 -4289_75967,265,4376_5090,DCU Helix,105812391,1,4376_7778022_104190,4376_55 -4289_75967,266,4376_5091,DCU Helix,105822391,1,4376_7778022_104190,4376_55 -4289_75967,267,4376_5092,DCU Helix,106052391,1,4376_7778022_104190,4376_55 -4289_75967,268,4376_5093,DCU Helix,106142391,1,4376_7778022_104190,4376_55 -4289_75967,269,4376_5094,DCU Helix,106232391,1,4376_7778022_104190,4376_55 -4289_75967,259,4376_5095,DCU Helix,105765159,1,4376_7778022_104150,4376_55 -4289_75967,270,4376_5096,DCU Helix,105277861,1,4376_7778022_104110,4376_55 -4289_75967,146,4376_5097,DCU Helix,105247861,1,4376_7778022_104110,4376_55 -4289_75967,271,4376_5098,DCU Helix,105237861,1,4376_7778022_104110,4376_55 -4289_75967,115,4376_5099,DCU Helix,105217861,1,4376_7778022_104110,4376_55 -4289_75960,266,4376_51,Sutton Station,105821220,0,4376_7778022_103502,4376_1 -4289_75960,268,4376_510,Sutton Station,106142980,0,4376_7778022_103501,4376_1 -4289_75967,260,4376_5100,DCU Helix,105312533,1,4376_7778022_104060,4376_55 -4289_75967,261,4376_5101,DCU Helix,105322533,1,4376_7778022_104060,4376_55 -4289_75967,262,4376_5102,DCU Helix,105432533,1,4376_7778022_104060,4376_55 -4289_75967,263,4376_5103,DCU Helix,105542533,1,4376_7778022_104060,4376_55 -4289_75967,264,4376_5104,DCU Helix,105652533,1,4376_7778022_104060,4376_55 -4289_75967,265,4376_5105,DCU Helix,105812533,1,4376_7778022_104060,4376_55 -4289_75967,266,4376_5106,DCU Helix,105822533,1,4376_7778022_104060,4376_55 -4289_75967,267,4376_5107,DCU Helix,106052533,1,4376_7778022_104060,4376_55 -4289_75967,268,4376_5108,DCU Helix,106142533,1,4376_7778022_104060,4376_55 -4289_75967,269,4376_5109,DCU Helix,106232533,1,4376_7778022_104060,4376_55 -4289_75960,269,4376_511,Sutton Station,106232980,0,4376_7778022_103501,4376_1 -4289_75967,270,4376_5110,DCU Helix,105277961,1,4376_7778022_104130,4376_55 -4289_75967,146,4376_5111,DCU Helix,105247961,1,4376_7778022_104130,4376_55 -4289_75967,271,4376_5112,DCU Helix,105237961,1,4376_7778022_104130,4376_55 -4289_75967,115,4376_5113,DCU Helix,105217961,1,4376_7778022_104130,4376_55 -4289_75967,259,4376_5114,DCU Helix,105765279,1,4376_7778022_104172,4376_55 -4289_75967,260,4376_5115,DCU Helix,105312651,1,4376_7778022_104140,4376_55 -4289_75967,261,4376_5116,DCU Helix,105322651,1,4376_7778022_104140,4376_55 -4289_75967,262,4376_5117,DCU Helix,105432651,1,4376_7778022_104140,4376_55 -4289_75967,263,4376_5118,DCU Helix,105542651,1,4376_7778022_104140,4376_55 -4289_75967,264,4376_5119,DCU Helix,105652651,1,4376_7778022_104140,4376_55 -4289_75960,270,4376_512,Sutton Station,105278296,0,4376_7778022_103502,4376_2 -4289_75967,265,4376_5120,DCU Helix,105812651,1,4376_7778022_104140,4376_55 -4289_75967,266,4376_5121,DCU Helix,105822651,1,4376_7778022_104140,4376_55 -4289_75967,267,4376_5122,DCU Helix,106052651,1,4376_7778022_104140,4376_55 -4289_75967,268,4376_5123,DCU Helix,106142651,1,4376_7778022_104140,4376_55 -4289_75967,269,4376_5124,DCU Helix,106232651,1,4376_7778022_104140,4376_55 -4289_75967,259,4376_5125,DCU Helix,105765361,1,4376_7778022_104080,4376_55 -4289_75967,270,4376_5126,DCU Helix,105278041,1,4376_7778022_104100,4376_55 -4289_75967,146,4376_5127,DCU Helix,105248041,1,4376_7778022_104100,4376_55 -4289_75967,271,4376_5128,DCU Helix,105238041,1,4376_7778022_104100,4376_55 -4289_75967,115,4376_5129,DCU Helix,105218041,1,4376_7778022_104100,4376_55 -4289_75960,146,4376_513,Sutton Station,105248296,0,4376_7778022_103502,4376_2 -4289_75967,260,4376_5130,Ballymun,105312773,1,4376_7778022_104080,4376_56 -4289_75967,261,4376_5131,Ballymun,105322773,1,4376_7778022_104080,4376_56 -4289_75967,262,4376_5132,Ballymun,105432773,1,4376_7778022_104080,4376_56 -4289_75967,263,4376_5133,Ballymun,105542773,1,4376_7778022_104080,4376_56 -4289_75967,264,4376_5134,Ballymun,105652773,1,4376_7778022_104080,4376_56 -4289_75967,265,4376_5135,Ballymun,105812773,1,4376_7778022_104080,4376_56 -4289_75967,266,4376_5136,Ballymun,105822773,1,4376_7778022_104080,4376_56 -4289_75967,267,4376_5137,Ballymun,106052773,1,4376_7778022_104080,4376_56 -4289_75967,268,4376_5138,Ballymun,106142773,1,4376_7778022_104080,4376_56 -4289_75967,269,4376_5139,Ballymun,106232773,1,4376_7778022_104080,4376_56 -4289_75960,271,4376_514,Sutton Station,105238296,0,4376_7778022_103502,4376_2 -4289_75967,259,4376_5140,Ballymun,105765473,1,4376_7778022_104090,4376_57 -4289_75967,270,4376_5141,Ballymun,105278149,1,4376_7778022_104070,4376_58 -4289_75967,146,4376_5142,Ballymun,105248149,1,4376_7778022_104070,4376_58 -4289_75967,271,4376_5143,Ballymun,105238149,1,4376_7778022_104070,4376_58 -4289_75967,115,4376_5144,Ballymun,105218149,1,4376_7778022_104070,4376_58 -4289_75967,260,4376_5145,Ballymun,105312877,1,4376_7778022_104190,4376_56 -4289_75967,261,4376_5146,Ballymun,105322877,1,4376_7778022_104190,4376_56 -4289_75967,262,4376_5147,Ballymun,105432877,1,4376_7778022_104190,4376_56 -4289_75967,263,4376_5148,Ballymun,105542877,1,4376_7778022_104190,4376_56 -4289_75967,264,4376_5149,Ballymun,105652877,1,4376_7778022_104190,4376_56 -4289_75960,115,4376_515,Sutton Station,105218296,0,4376_7778022_103502,4376_2 -4289_75967,265,4376_5150,Ballymun,105812877,1,4376_7778022_104190,4376_56 -4289_75967,266,4376_5151,Ballymun,105822877,1,4376_7778022_104190,4376_56 -4289_75967,267,4376_5152,Ballymun,106052877,1,4376_7778022_104190,4376_56 -4289_75967,268,4376_5153,Ballymun,106142877,1,4376_7778022_104190,4376_56 -4289_75967,269,4376_5154,Ballymun,106232877,1,4376_7778022_104190,4376_56 -4289_75967,259,4376_5155,Ballymun,105765561,1,4376_7778022_104150,4376_57 -4289_75967,270,4376_5156,Ballymun,105278227,1,4376_7778022_104110,4376_58 -4289_75967,146,4376_5157,Ballymun,105248227,1,4376_7778022_104110,4376_58 -4289_75967,271,4376_5158,Ballymun,105238227,1,4376_7778022_104110,4376_58 -4289_75967,115,4376_5159,Ballymun,105218227,1,4376_7778022_104110,4376_58 -4289_75960,259,4376_516,Sutton Station,105765654,0,4376_7778022_103502,4376_1 -4289_75992,260,4376_5160,Mulhuddart,105311428,0,4376_7778022_104110,4376_60 -4289_75992,261,4376_5161,Mulhuddart,105321428,0,4376_7778022_104110,4376_60 -4289_75992,262,4376_5162,Mulhuddart,105431428,0,4376_7778022_104110,4376_60 -4289_75992,263,4376_5163,Mulhuddart,105541428,0,4376_7778022_104110,4376_60 -4289_75992,264,4376_5164,Mulhuddart,105651428,0,4376_7778022_104110,4376_60 -4289_75992,265,4376_5165,Mulhuddart,105811428,0,4376_7778022_104110,4376_60 -4289_75992,266,4376_5166,Mulhuddart,105821428,0,4376_7778022_104110,4376_60 -4289_75992,267,4376_5167,Mulhuddart,106051428,0,4376_7778022_104110,4376_60 -4289_75992,268,4376_5168,Mulhuddart,106141428,0,4376_7778022_104110,4376_60 -4289_75992,269,4376_5169,Mulhuddart,106231428,0,4376_7778022_104110,4376_60 -4289_75960,260,4376_517,Sutton Station,105313006,0,4376_7778022_103107,4376_1 -4289_75992,260,4376_5170,DCU Helix,105312103,1,4376_7778022_104080,4376_61 -4289_75992,261,4376_5171,DCU Helix,105322103,1,4376_7778022_104080,4376_61 -4289_75992,262,4376_5172,DCU Helix,105432103,1,4376_7778022_104080,4376_61 -4289_75992,263,4376_5173,DCU Helix,105542103,1,4376_7778022_104080,4376_61 -4289_75992,264,4376_5174,DCU Helix,105652103,1,4376_7778022_104080,4376_61 -4289_75992,265,4376_5175,DCU Helix,105812103,1,4376_7778022_104080,4376_61 -4289_75992,266,4376_5176,DCU Helix,105822103,1,4376_7778022_104080,4376_61 -4289_75992,267,4376_5177,DCU Helix,106052103,1,4376_7778022_104080,4376_61 -4289_75992,268,4376_5178,DCU Helix,106142103,1,4376_7778022_104080,4376_61 -4289_75992,269,4376_5179,DCU Helix,106232103,1,4376_7778022_104080,4376_61 -4289_75960,261,4376_518,Sutton Station,105323006,0,4376_7778022_103107,4376_1 -4289_75993,260,4376_5180,Finglas Garda Stn,105312102,0,4376_7778022_109106,4376_62 -4289_75993,261,4376_5181,Finglas Garda Stn,105322102,0,4376_7778022_109106,4376_62 -4289_75993,262,4376_5182,Finglas Garda Stn,105432104,0,4376_7778022_109304,4376_62 -4289_75993,263,4376_5183,Finglas Garda Stn,105542106,0,4376_7778022_109407,4376_62 -4289_75993,264,4376_5184,Finglas Garda Stn,105652108,0,4376_7778022_109507,4376_62 -4289_75993,260,4376_5185,Whitehall,105311271,1,4376_7778022_109106,4376_63 -4289_75993,261,4376_5186,Whitehall,105321271,1,4376_7778022_109106,4376_63 -4289_75993,262,4376_5187,Whitehall,105431273,1,4376_7778022_109306,4376_63 -4289_75993,263,4376_5188,Whitehall,105541275,1,4376_7778022_109406,4376_63 -4289_75993,264,4376_5189,Whitehall,105651277,1,4376_7778022_109506,4376_63 -4289_75960,262,4376_519,Sutton Station,105433006,0,4376_7778022_103107,4376_1 -4289_75968,260,4376_5190,Dublin Tech Campus,105311142,0,4376_7778022_104130,4376_64 -4289_75968,261,4376_5191,Dublin Tech Campus,105321142,0,4376_7778022_104130,4376_64 -4289_75968,262,4376_5192,Dublin Tech Campus,105431142,0,4376_7778022_104130,4376_64 -4289_75968,263,4376_5193,Dublin Tech Campus,105541142,0,4376_7778022_104130,4376_64 -4289_75968,264,4376_5194,Dublin Tech Campus,105651142,0,4376_7778022_104130,4376_64 -4289_75968,265,4376_5195,Dublin Tech Campus,105811142,0,4376_7778022_104130,4376_64 -4289_75968,266,4376_5196,Dublin Tech Campus,105821142,0,4376_7778022_104130,4376_64 -4289_75968,267,4376_5197,Dublin Tech Campus,106051142,0,4376_7778022_104130,4376_64 -4289_75968,268,4376_5198,Dublin Tech Campus,106141142,0,4376_7778022_104130,4376_64 -4289_75968,269,4376_5199,Dublin Tech Campus,106231142,0,4376_7778022_104130,4376_64 -4289_75960,267,4376_52,Sutton Station,106051220,0,4376_7778022_103502,4376_1 -4289_75960,263,4376_520,Sutton Station,105543006,0,4376_7778022_103107,4376_1 -4289_75968,260,4376_5200,Dublin Tech Campus,105311320,0,4376_7778022_104130,4376_64 -4289_75968,261,4376_5201,Dublin Tech Campus,105321320,0,4376_7778022_104130,4376_64 -4289_75968,262,4376_5202,Dublin Tech Campus,105431320,0,4376_7778022_104130,4376_64 -4289_75968,263,4376_5203,Dublin Tech Campus,105541320,0,4376_7778022_104130,4376_64 -4289_75968,264,4376_5204,Dublin Tech Campus,105651320,0,4376_7778022_104130,4376_64 -4289_75968,265,4376_5205,Dublin Tech Campus,105811320,0,4376_7778022_104130,4376_64 -4289_75968,266,4376_5206,Dublin Tech Campus,105821320,0,4376_7778022_104130,4376_64 -4289_75968,267,4376_5207,Dublin Tech Campus,106051320,0,4376_7778022_104130,4376_64 -4289_75968,268,4376_5208,Dublin Tech Campus,106141320,0,4376_7778022_104130,4376_64 -4289_75968,269,4376_5209,Dublin Tech Campus,106231320,0,4376_7778022_104130,4376_64 -4289_75960,264,4376_521,Sutton Station,105653006,0,4376_7778022_103107,4376_1 -4289_75968,260,4376_5210,Dublin Tech Campus,105311442,0,4376_7778022_100191,4376_64 -4289_75968,261,4376_5211,Dublin Tech Campus,105321442,0,4376_7778022_100191,4376_64 -4289_75968,262,4376_5212,Dublin Tech Campus,105431442,0,4376_7778022_100191,4376_64 -4289_75968,263,4376_5213,Dublin Tech Campus,105541442,0,4376_7778022_100191,4376_64 -4289_75968,264,4376_5214,Dublin Tech Campus,105651442,0,4376_7778022_100191,4376_64 -4289_75968,265,4376_5215,Dublin Tech Campus,105811442,0,4376_7778022_100191,4376_64 -4289_75968,266,4376_5216,Dublin Tech Campus,105821442,0,4376_7778022_100191,4376_64 -4289_75968,267,4376_5217,Dublin Tech Campus,106051442,0,4376_7778022_100191,4376_64 -4289_75968,268,4376_5218,Dublin Tech Campus,106141442,0,4376_7778022_100191,4376_64 -4289_75968,269,4376_5219,Dublin Tech Campus,106231442,0,4376_7778022_100191,4376_64 -4289_75960,265,4376_522,Sutton Station,105813006,0,4376_7778022_103107,4376_1 -4289_75968,260,4376_5220,Blanchardstown,105312245,1,4376_7778022_104092,4376_65 -4289_75968,261,4376_5221,Blanchardstown,105322245,1,4376_7778022_104092,4376_65 -4289_75968,262,4376_5222,Blanchardstown,105432245,1,4376_7778022_104092,4376_65 -4289_75968,263,4376_5223,Blanchardstown,105542245,1,4376_7778022_104092,4376_65 -4289_75968,264,4376_5224,Blanchardstown,105652245,1,4376_7778022_104092,4376_65 -4289_75968,265,4376_5225,Blanchardstown,105812245,1,4376_7778022_104092,4376_65 -4289_75968,266,4376_5226,Blanchardstown,105822245,1,4376_7778022_104092,4376_65 -4289_75968,267,4376_5227,Blanchardstown,106052245,1,4376_7778022_104092,4376_65 -4289_75968,268,4376_5228,Blanchardstown,106142245,1,4376_7778022_104092,4376_65 -4289_75968,269,4376_5229,Blanchardstown,106232245,1,4376_7778022_104092,4376_65 -4289_75960,266,4376_523,Sutton Station,105823006,0,4376_7778022_103107,4376_1 -4289_75968,260,4376_5230,Blanchardstown,105312363,1,4376_7778022_104022,4376_65 -4289_75968,261,4376_5231,Blanchardstown,105322363,1,4376_7778022_104022,4376_65 -4289_75968,262,4376_5232,Blanchardstown,105432363,1,4376_7778022_104022,4376_65 -4289_75968,263,4376_5233,Blanchardstown,105542363,1,4376_7778022_104022,4376_65 -4289_75968,264,4376_5234,Blanchardstown,105652363,1,4376_7778022_104022,4376_65 -4289_75968,265,4376_5235,Blanchardstown,105812363,1,4376_7778022_104022,4376_65 -4289_75968,266,4376_5236,Blanchardstown,105822363,1,4376_7778022_104022,4376_65 -4289_75968,267,4376_5237,Blanchardstown,106052363,1,4376_7778022_104022,4376_65 -4289_75968,268,4376_5238,Blanchardstown,106142363,1,4376_7778022_104022,4376_65 -4289_75968,269,4376_5239,Blanchardstown,106232363,1,4376_7778022_104022,4376_65 -4289_75960,267,4376_524,Sutton Station,106053006,0,4376_7778022_103107,4376_1 -4289_75968,260,4376_5240,Blanchardstown,105312477,1,4376_7778022_100510,4376_65 -4289_75968,261,4376_5241,Blanchardstown,105322477,1,4376_7778022_100510,4376_65 -4289_75968,262,4376_5242,Blanchardstown,105432477,1,4376_7778022_100510,4376_65 -4289_75968,263,4376_5243,Blanchardstown,105542477,1,4376_7778022_100510,4376_65 -4289_75968,264,4376_5244,Blanchardstown,105652477,1,4376_7778022_100510,4376_65 -4289_75968,265,4376_5245,Blanchardstown,105812477,1,4376_7778022_100510,4376_65 -4289_75968,266,4376_5246,Blanchardstown,105822477,1,4376_7778022_100510,4376_65 -4289_75968,267,4376_5247,Blanchardstown,106052477,1,4376_7778022_100510,4376_65 -4289_75968,268,4376_5248,Blanchardstown,106142477,1,4376_7778022_100510,4376_65 -4289_75968,269,4376_5249,Blanchardstown,106232477,1,4376_7778022_100510,4376_65 -4289_75960,268,4376_525,Sutton Station,106143006,0,4376_7778022_103107,4376_1 -4289_75994,260,4376_5250,Dublin Tech Campus,105312194,0,4376_7778022_104092,4376_66 -4289_75994,261,4376_5251,Dublin Tech Campus,105322194,0,4376_7778022_104092,4376_66 -4289_75994,262,4376_5252,Dublin Tech Campus,105432194,0,4376_7778022_104092,4376_66 -4289_75994,263,4376_5253,Dublin Tech Campus,105542194,0,4376_7778022_104092,4376_66 -4289_75994,264,4376_5254,Dublin Tech Campus,105652194,0,4376_7778022_104092,4376_66 -4289_75994,265,4376_5255,Dublin Tech Campus,105812194,0,4376_7778022_104092,4376_66 -4289_75994,266,4376_5256,Dublin Tech Campus,105822194,0,4376_7778022_104092,4376_66 -4289_75994,267,4376_5257,Dublin Tech Campus,106052194,0,4376_7778022_104092,4376_66 -4289_75994,268,4376_5258,Dublin Tech Campus,106142194,0,4376_7778022_104092,4376_66 -4289_75994,269,4376_5259,Dublin Tech Campus,106232194,0,4376_7778022_104092,4376_66 -4289_75960,269,4376_526,Sutton Station,106233006,0,4376_7778022_103107,4376_1 -4289_75994,260,4376_5260,Dublin Tech Campus,105312316,0,4376_7778022_104022,4376_66 -4289_75994,261,4376_5261,Dublin Tech Campus,105322316,0,4376_7778022_104022,4376_66 -4289_75994,262,4376_5262,Dublin Tech Campus,105432316,0,4376_7778022_104022,4376_66 -4289_75994,263,4376_5263,Dublin Tech Campus,105542316,0,4376_7778022_104022,4376_66 -4289_75994,264,4376_5264,Dublin Tech Campus,105652316,0,4376_7778022_104022,4376_66 -4289_75994,265,4376_5265,Dublin Tech Campus,105812316,0,4376_7778022_104022,4376_66 -4289_75994,266,4376_5266,Dublin Tech Campus,105822316,0,4376_7778022_104022,4376_66 -4289_75994,267,4376_5267,Dublin Tech Campus,106052316,0,4376_7778022_104022,4376_66 -4289_75994,268,4376_5268,Dublin Tech Campus,106142316,0,4376_7778022_104022,4376_66 -4289_75994,269,4376_5269,Dublin Tech Campus,106232316,0,4376_7778022_104022,4376_66 -4289_75960,270,4376_527,Sutton Station,105278320,0,4376_7778022_103101,4376_2 -4289_75994,260,4376_5270,Dublin Tech Campus,105312446,0,4376_7778022_100510,4376_66 -4289_75994,261,4376_5271,Dublin Tech Campus,105322446,0,4376_7778022_100510,4376_66 -4289_75994,262,4376_5272,Dublin Tech Campus,105432446,0,4376_7778022_100510,4376_66 -4289_75994,263,4376_5273,Dublin Tech Campus,105542446,0,4376_7778022_100510,4376_66 -4289_75994,264,4376_5274,Dublin Tech Campus,105652446,0,4376_7778022_100510,4376_66 -4289_75994,265,4376_5275,Dublin Tech Campus,105812446,0,4376_7778022_100510,4376_66 -4289_75994,266,4376_5276,Dublin Tech Campus,105822446,0,4376_7778022_100510,4376_66 -4289_75994,267,4376_5277,Dublin Tech Campus,106052446,0,4376_7778022_100510,4376_66 -4289_75994,268,4376_5278,Dublin Tech Campus,106142446,0,4376_7778022_100510,4376_66 -4289_75994,269,4376_5279,Dublin Tech Campus,106232446,0,4376_7778022_100510,4376_66 -4289_75960,146,4376_528,Sutton Station,105248320,0,4376_7778022_103101,4376_2 -4289_75994,260,4376_5280,Blanchardstown,105311203,1,4376_7778022_104130,4376_67 -4289_75994,261,4376_5281,Blanchardstown,105321203,1,4376_7778022_104130,4376_67 -4289_75994,262,4376_5282,Blanchardstown,105431203,1,4376_7778022_104130,4376_67 -4289_75994,263,4376_5283,Blanchardstown,105541203,1,4376_7778022_104130,4376_67 -4289_75994,264,4376_5284,Blanchardstown,105651203,1,4376_7778022_104130,4376_67 -4289_75994,265,4376_5285,Blanchardstown,105811203,1,4376_7778022_104130,4376_67 -4289_75994,266,4376_5286,Blanchardstown,105821203,1,4376_7778022_104130,4376_67 -4289_75994,267,4376_5287,Blanchardstown,106051203,1,4376_7778022_104130,4376_67 -4289_75994,268,4376_5288,Blanchardstown,106141203,1,4376_7778022_104130,4376_67 -4289_75994,269,4376_5289,Blanchardstown,106231203,1,4376_7778022_104130,4376_67 -4289_75960,271,4376_529,Sutton Station,105238320,0,4376_7778022_103101,4376_2 -4289_75994,260,4376_5290,Blanchardstown,105311355,1,4376_7778022_104130,4376_67 -4289_75994,261,4376_5291,Blanchardstown,105321355,1,4376_7778022_104130,4376_67 -4289_75994,262,4376_5292,Blanchardstown,105431355,1,4376_7778022_104130,4376_67 -4289_75994,263,4376_5293,Blanchardstown,105541355,1,4376_7778022_104130,4376_67 -4289_75994,264,4376_5294,Blanchardstown,105651355,1,4376_7778022_104130,4376_67 -4289_75994,265,4376_5295,Blanchardstown,105811355,1,4376_7778022_104130,4376_67 -4289_75994,266,4376_5296,Blanchardstown,105821355,1,4376_7778022_104130,4376_67 -4289_75994,267,4376_5297,Blanchardstown,106051355,1,4376_7778022_104130,4376_67 -4289_75994,268,4376_5298,Blanchardstown,106141355,1,4376_7778022_104130,4376_67 -4289_75994,269,4376_5299,Blanchardstown,106231355,1,4376_7778022_104130,4376_67 -4289_75960,268,4376_53,Sutton Station,106141220,0,4376_7778022_103502,4376_1 -4289_75960,115,4376_530,Sutton Station,105218320,0,4376_7778022_103101,4376_2 -4289_75994,260,4376_5300,Blanchardstown,105311465,1,4376_7778022_100191,4376_67 -4289_75994,261,4376_5301,Blanchardstown,105321465,1,4376_7778022_100191,4376_67 -4289_75994,262,4376_5302,Blanchardstown,105431465,1,4376_7778022_100191,4376_67 -4289_75994,263,4376_5303,Blanchardstown,105541465,1,4376_7778022_100191,4376_67 -4289_75994,264,4376_5304,Blanchardstown,105651465,1,4376_7778022_100191,4376_67 -4289_75994,265,4376_5305,Blanchardstown,105811465,1,4376_7778022_100191,4376_67 -4289_75994,266,4376_5306,Blanchardstown,105821465,1,4376_7778022_100191,4376_67 -4289_75994,267,4376_5307,Blanchardstown,106051465,1,4376_7778022_100191,4376_67 -4289_75994,268,4376_5308,Blanchardstown,106141465,1,4376_7778022_100191,4376_67 -4289_75994,269,4376_5309,Blanchardstown,106231465,1,4376_7778022_100191,4376_67 -4289_75960,259,4376_531,Sutton Station,105765678,0,4376_7778022_103503,4376_1 -4289_75995,262,4376_5310,Tyrrelstown,105431892,0,4376_7778022_109308,4376_68 -4289_75995,260,4376_5311,Tyrrelstown,105312234,0,4376_7778022_109108,4376_68 -4289_75995,261,4376_5312,Tyrrelstown,105322234,0,4376_7778022_109108,4376_68 -4289_75995,263,4376_5313,Tyrrelstown,105542236,0,4376_7778022_109408,4376_68 -4289_75995,264,4376_5314,Tyrrelstown,105652238,0,4376_7778022_109508,4376_68 -4289_75995,260,4376_5315,Scoil Oilibheir,105311263,1,4376_7778022_109107,4376_69 -4289_75995,261,4376_5316,Scoil Oilibheir,105321263,1,4376_7778022_109107,4376_69 -4289_75995,262,4376_5317,Scoil Oilibheir,105431265,1,4376_7778022_109307,4376_69 -4289_75995,263,4376_5318,Scoil Oilibheir,105541267,1,4376_7778022_109407,4376_69 -4289_75995,264,4376_5319,Scoil Oilibheir,105651269,1,4376_7778022_109507,4376_69 -4289_75960,260,4376_532,Dublin Airport,105311039,1,4376_7778022_103501,4376_3 -4289_75969,260,4376_5320,Mulhuddart,105311124,0,4376_7778022_104091,4376_70 -4289_75969,261,4376_5321,Mulhuddart,105321124,0,4376_7778022_104091,4376_70 -4289_75969,262,4376_5322,Mulhuddart,105431124,0,4376_7778022_104091,4376_70 -4289_75969,263,4376_5323,Mulhuddart,105541124,0,4376_7778022_104091,4376_70 -4289_75969,264,4376_5324,Mulhuddart,105651124,0,4376_7778022_104091,4376_70 -4289_75969,265,4376_5325,Mulhuddart,105811124,0,4376_7778022_104091,4376_70 -4289_75969,266,4376_5326,Mulhuddart,105821124,0,4376_7778022_104091,4376_70 -4289_75969,267,4376_5327,Mulhuddart,106051124,0,4376_7778022_104091,4376_70 -4289_75969,268,4376_5328,Mulhuddart,106141124,0,4376_7778022_104091,4376_70 -4289_75969,269,4376_5329,Mulhuddart,106231124,0,4376_7778022_104091,4376_70 -4289_75960,261,4376_533,Dublin Airport,105321039,1,4376_7778022_103501,4376_3 -4289_75969,259,4376_5330,Mulhuddart,105764086,0,4376_7778022_104090,4376_70 -4289_75969,260,4376_5331,Mulhuddart,105311250,0,4376_7778022_104091,4376_70 -4289_75969,261,4376_5332,Mulhuddart,105321250,0,4376_7778022_104091,4376_70 -4289_75969,262,4376_5333,Mulhuddart,105431250,0,4376_7778022_104091,4376_70 -4289_75969,263,4376_5334,Mulhuddart,105541250,0,4376_7778022_104091,4376_70 -4289_75969,264,4376_5335,Mulhuddart,105651250,0,4376_7778022_104091,4376_70 -4289_75969,265,4376_5336,Mulhuddart,105811250,0,4376_7778022_104091,4376_70 -4289_75969,266,4376_5337,Mulhuddart,105821250,0,4376_7778022_104091,4376_70 -4289_75969,267,4376_5338,Mulhuddart,106051250,0,4376_7778022_104091,4376_70 -4289_75969,268,4376_5339,Mulhuddart,106141250,0,4376_7778022_104091,4376_70 -4289_75960,262,4376_534,Dublin Airport,105431039,1,4376_7778022_103501,4376_3 -4289_75969,269,4376_5340,Mulhuddart,106231250,0,4376_7778022_104091,4376_70 -4289_75969,259,4376_5341,Mulhuddart,105764150,0,4376_7778022_104090,4376_70 -4289_75969,260,4376_5342,Mulhuddart,105311402,0,4376_7778022_104170,4376_70 -4289_75969,261,4376_5343,Mulhuddart,105321402,0,4376_7778022_104170,4376_70 -4289_75969,262,4376_5344,Mulhuddart,105431402,0,4376_7778022_104170,4376_70 -4289_75969,263,4376_5345,Mulhuddart,105541402,0,4376_7778022_104170,4376_70 -4289_75969,264,4376_5346,Mulhuddart,105651402,0,4376_7778022_104170,4376_70 -4289_75969,265,4376_5347,Mulhuddart,105811402,0,4376_7778022_104170,4376_70 -4289_75969,266,4376_5348,Mulhuddart,105821402,0,4376_7778022_104170,4376_70 -4289_75969,267,4376_5349,Mulhuddart,106051402,0,4376_7778022_104170,4376_70 -4289_75960,263,4376_535,Dublin Airport,105541039,1,4376_7778022_103501,4376_3 -4289_75969,268,4376_5350,Mulhuddart,106141402,0,4376_7778022_104170,4376_70 -4289_75969,269,4376_5351,Mulhuddart,106231402,0,4376_7778022_104170,4376_70 -4289_75969,259,4376_5352,Mulhuddart,105764236,0,4376_7778022_104090,4376_70 -4289_75969,260,4376_5353,Mulhuddart,105311508,0,4376_7778022_104190,4376_70 -4289_75969,261,4376_5354,Mulhuddart,105321508,0,4376_7778022_104190,4376_70 -4289_75969,262,4376_5355,Mulhuddart,105431508,0,4376_7778022_104190,4376_70 -4289_75969,263,4376_5356,Mulhuddart,105541508,0,4376_7778022_104190,4376_70 -4289_75969,264,4376_5357,Mulhuddart,105651508,0,4376_7778022_104190,4376_70 -4289_75969,265,4376_5358,Mulhuddart,105811508,0,4376_7778022_104190,4376_70 -4289_75969,266,4376_5359,Mulhuddart,105821508,0,4376_7778022_104190,4376_70 -4289_75960,264,4376_536,Dublin Airport,105651039,1,4376_7778022_103501,4376_3 -4289_75969,267,4376_5360,Mulhuddart,106051508,0,4376_7778022_104190,4376_70 -4289_75969,268,4376_5361,Mulhuddart,106141508,0,4376_7778022_104190,4376_70 -4289_75969,269,4376_5362,Mulhuddart,106231508,0,4376_7778022_104190,4376_70 -4289_75969,259,4376_5363,Mulhuddart,105764334,0,4376_7778022_104171,4376_70 -4289_75969,270,4376_5364,Mulhuddart,105277128,0,4376_7778022_104110,4376_70 -4289_75969,146,4376_5365,Mulhuddart,105247128,0,4376_7778022_104110,4376_70 -4289_75969,271,4376_5366,Mulhuddart,105237128,0,4376_7778022_104110,4376_70 -4289_75969,115,4376_5367,Mulhuddart,105217128,0,4376_7778022_104110,4376_70 -4289_75969,260,4376_5368,Mulhuddart,105311616,0,4376_7778022_104060,4376_70 -4289_75969,261,4376_5369,Mulhuddart,105321616,0,4376_7778022_104060,4376_70 -4289_75960,265,4376_537,Dublin Airport,105811039,1,4376_7778022_103501,4376_3 -4289_75969,262,4376_5370,Mulhuddart,105431616,0,4376_7778022_104060,4376_70 -4289_75969,263,4376_5371,Mulhuddart,105541616,0,4376_7778022_104060,4376_70 -4289_75969,264,4376_5372,Mulhuddart,105651616,0,4376_7778022_104060,4376_70 -4289_75969,265,4376_5373,Mulhuddart,105811616,0,4376_7778022_104060,4376_70 -4289_75969,266,4376_5374,Mulhuddart,105821616,0,4376_7778022_104060,4376_70 -4289_75969,267,4376_5375,Mulhuddart,106051616,0,4376_7778022_104060,4376_70 -4289_75969,268,4376_5376,Mulhuddart,106141616,0,4376_7778022_104060,4376_70 -4289_75969,269,4376_5377,Mulhuddart,106231616,0,4376_7778022_104060,4376_70 -4289_75969,259,4376_5378,Mulhuddart,105764444,0,4376_7778022_104171,4376_70 -4289_75969,270,4376_5379,Mulhuddart,105277212,0,4376_7778022_104110,4376_70 -4289_75960,266,4376_538,Dublin Airport,105821039,1,4376_7778022_103501,4376_3 -4289_75969,146,4376_5380,Mulhuddart,105247212,0,4376_7778022_104110,4376_70 -4289_75969,271,4376_5381,Mulhuddart,105237212,0,4376_7778022_104110,4376_70 -4289_75969,115,4376_5382,Mulhuddart,105217212,0,4376_7778022_104110,4376_70 -4289_75969,260,4376_5383,Mulhuddart,105311724,0,4376_7778022_104110,4376_70 -4289_75969,261,4376_5384,Mulhuddart,105321724,0,4376_7778022_104110,4376_70 -4289_75969,262,4376_5385,Mulhuddart,105431724,0,4376_7778022_104110,4376_70 -4289_75969,263,4376_5386,Mulhuddart,105541724,0,4376_7778022_104110,4376_70 -4289_75969,264,4376_5387,Mulhuddart,105651724,0,4376_7778022_104110,4376_70 -4289_75969,265,4376_5388,Mulhuddart,105811724,0,4376_7778022_104110,4376_70 -4289_75969,266,4376_5389,Mulhuddart,105821724,0,4376_7778022_104110,4376_70 -4289_75960,267,4376_539,Dublin Airport,106051039,1,4376_7778022_103501,4376_3 -4289_75969,267,4376_5390,Mulhuddart,106051724,0,4376_7778022_104110,4376_70 -4289_75969,268,4376_5391,Mulhuddart,106141724,0,4376_7778022_104110,4376_70 -4289_75969,269,4376_5392,Mulhuddart,106231724,0,4376_7778022_104110,4376_70 -4289_75969,259,4376_5393,Mulhuddart,105764546,0,4376_7778022_104180,4376_70 -4289_75969,270,4376_5394,Mulhuddart,105277308,0,4376_7778022_104110,4376_70 -4289_75969,146,4376_5395,Mulhuddart,105247308,0,4376_7778022_104110,4376_70 -4289_75969,271,4376_5396,Mulhuddart,105237308,0,4376_7778022_104110,4376_70 -4289_75969,115,4376_5397,Mulhuddart,105217308,0,4376_7778022_104110,4376_70 -4289_75969,260,4376_5398,Mulhuddart,105311832,0,4376_7778022_104040,4376_70 -4289_75969,261,4376_5399,Mulhuddart,105321832,0,4376_7778022_104040,4376_70 -4289_75960,269,4376_54,Sutton Station,106231220,0,4376_7778022_103502,4376_1 -4289_75960,268,4376_540,Dublin Airport,106141039,1,4376_7778022_103501,4376_3 -4289_75969,262,4376_5400,Mulhuddart,105431832,0,4376_7778022_104040,4376_70 -4289_75969,263,4376_5401,Mulhuddart,105541832,0,4376_7778022_104040,4376_70 -4289_75969,264,4376_5402,Mulhuddart,105651832,0,4376_7778022_104040,4376_70 -4289_75969,265,4376_5403,Mulhuddart,105811832,0,4376_7778022_104040,4376_70 -4289_75969,266,4376_5404,Mulhuddart,105821832,0,4376_7778022_104040,4376_70 -4289_75969,267,4376_5405,Mulhuddart,106051832,0,4376_7778022_104040,4376_70 -4289_75969,268,4376_5406,Mulhuddart,106141832,0,4376_7778022_104040,4376_70 -4289_75969,269,4376_5407,Mulhuddart,106231832,0,4376_7778022_104040,4376_70 -4289_75969,259,4376_5408,Mulhuddart,105764648,0,4376_7778022_104110,4376_70 -4289_75969,270,4376_5409,Mulhuddart,105277398,0,4376_7778022_104150,4376_70 -4289_75960,269,4376_541,Dublin Airport,106231039,1,4376_7778022_103501,4376_3 -4289_75969,146,4376_5410,Mulhuddart,105247398,0,4376_7778022_104150,4376_70 -4289_75969,271,4376_5411,Mulhuddart,105237398,0,4376_7778022_104150,4376_70 -4289_75969,115,4376_5412,Mulhuddart,105217398,0,4376_7778022_104150,4376_70 -4289_75969,260,4376_5413,Mulhuddart,105311942,0,4376_7778022_104140,4376_70 -4289_75969,261,4376_5414,Mulhuddart,105321942,0,4376_7778022_104140,4376_70 -4289_75969,262,4376_5415,Mulhuddart,105431942,0,4376_7778022_104140,4376_70 -4289_75969,263,4376_5416,Mulhuddart,105541942,0,4376_7778022_104140,4376_70 -4289_75969,264,4376_5417,Mulhuddart,105651942,0,4376_7778022_104140,4376_70 -4289_75969,265,4376_5418,Mulhuddart,105811942,0,4376_7778022_104140,4376_70 -4289_75969,266,4376_5419,Mulhuddart,105821942,0,4376_7778022_104140,4376_70 -4289_75960,259,4376_542,Dublin Airport,105764029,1,4376_7778022_103501,4376_4 -4289_75969,267,4376_5420,Mulhuddart,106051942,0,4376_7778022_104140,4376_70 -4289_75969,268,4376_5421,Mulhuddart,106141942,0,4376_7778022_104140,4376_70 -4289_75969,269,4376_5422,Mulhuddart,106231942,0,4376_7778022_104140,4376_70 -4289_75969,259,4376_5423,Mulhuddart,105764752,0,4376_7778022_104080,4376_70 -4289_75969,270,4376_5424,Mulhuddart,105277490,0,4376_7778022_104100,4376_70 -4289_75969,146,4376_5425,Mulhuddart,105247490,0,4376_7778022_104100,4376_70 -4289_75969,271,4376_5426,Mulhuddart,105237490,0,4376_7778022_104100,4376_70 -4289_75969,115,4376_5427,Mulhuddart,105217490,0,4376_7778022_104100,4376_70 -4289_75969,260,4376_5428,Mulhuddart,105312050,0,4376_7778022_104080,4376_70 -4289_75969,261,4376_5429,Mulhuddart,105322050,0,4376_7778022_104080,4376_70 -4289_75960,260,4376_543,Dublin Airport,105311085,1,4376_7778022_103104,4376_3 -4289_75969,262,4376_5430,Mulhuddart,105432050,0,4376_7778022_104080,4376_70 -4289_75969,263,4376_5431,Mulhuddart,105542050,0,4376_7778022_104080,4376_70 -4289_75969,264,4376_5432,Mulhuddart,105652050,0,4376_7778022_104080,4376_70 -4289_75969,265,4376_5433,Mulhuddart,105812050,0,4376_7778022_104080,4376_70 -4289_75969,266,4376_5434,Mulhuddart,105822050,0,4376_7778022_104080,4376_70 -4289_75969,267,4376_5435,Mulhuddart,106052050,0,4376_7778022_104080,4376_70 -4289_75969,268,4376_5436,Mulhuddart,106142050,0,4376_7778022_104080,4376_70 -4289_75969,269,4376_5437,Mulhuddart,106232050,0,4376_7778022_104080,4376_70 -4289_75969,259,4376_5438,Mulhuddart,105764852,0,4376_7778022_104100,4376_70 -4289_75969,270,4376_5439,Mulhuddart,105277580,0,4376_7778022_104080,4376_70 -4289_75960,261,4376_544,Dublin Airport,105321085,1,4376_7778022_103104,4376_3 -4289_75969,146,4376_5440,Mulhuddart,105247580,0,4376_7778022_104080,4376_70 -4289_75969,271,4376_5441,Mulhuddart,105237580,0,4376_7778022_104080,4376_70 -4289_75969,115,4376_5442,Mulhuddart,105217580,0,4376_7778022_104080,4376_70 -4289_75969,260,4376_5443,Mulhuddart,105312052,0,4376_7778022_109104,4376_70 -4289_75969,261,4376_5444,Mulhuddart,105322052,0,4376_7778022_109104,4376_70 -4289_75969,262,4376_5445,Mulhuddart,105432054,0,4376_7778022_109303,4376_70 -4289_75969,263,4376_5446,Mulhuddart,105542056,0,4376_7778022_109406,4376_70 -4289_75969,264,4376_5447,Mulhuddart,105652058,0,4376_7778022_109502,4376_70 -4289_75969,260,4376_5448,Mulhuddart,105312188,0,4376_7778022_104170,4376_70 -4289_75969,261,4376_5449,Mulhuddart,105322188,0,4376_7778022_104170,4376_70 -4289_75960,262,4376_545,Dublin Airport,105431085,1,4376_7778022_103104,4376_3 -4289_75969,262,4376_5450,Mulhuddart,105432188,0,4376_7778022_104170,4376_70 -4289_75969,263,4376_5451,Mulhuddart,105542188,0,4376_7778022_104170,4376_70 -4289_75969,264,4376_5452,Mulhuddart,105652188,0,4376_7778022_104170,4376_70 -4289_75969,265,4376_5453,Mulhuddart,105812188,0,4376_7778022_104170,4376_70 -4289_75969,266,4376_5454,Mulhuddart,105822188,0,4376_7778022_104170,4376_70 -4289_75969,267,4376_5455,Mulhuddart,106052188,0,4376_7778022_104170,4376_70 -4289_75969,268,4376_5456,Mulhuddart,106142188,0,4376_7778022_104170,4376_70 -4289_75969,269,4376_5457,Mulhuddart,106232188,0,4376_7778022_104170,4376_70 -4289_75969,259,4376_5458,Mulhuddart,105764954,0,4376_7778022_104090,4376_70 -4289_75969,270,4376_5459,Mulhuddart,105277670,0,4376_7778022_104051,4376_70 -4289_75960,263,4376_546,Dublin Airport,105541085,1,4376_7778022_103104,4376_3 -4289_75969,146,4376_5460,Mulhuddart,105247670,0,4376_7778022_104051,4376_70 -4289_75969,271,4376_5461,Mulhuddart,105237670,0,4376_7778022_104051,4376_70 -4289_75969,115,4376_5462,Mulhuddart,105217670,0,4376_7778022_104051,4376_70 -4289_75969,260,4376_5463,Mulhuddart,105312314,0,4376_7778022_104190,4376_70 -4289_75969,261,4376_5464,Mulhuddart,105322314,0,4376_7778022_104190,4376_70 -4289_75969,262,4376_5465,Mulhuddart,105432314,0,4376_7778022_104190,4376_70 -4289_75969,263,4376_5466,Mulhuddart,105542314,0,4376_7778022_104190,4376_70 -4289_75969,264,4376_5467,Mulhuddart,105652314,0,4376_7778022_104190,4376_70 -4289_75969,265,4376_5468,Mulhuddart,105812314,0,4376_7778022_104190,4376_70 -4289_75969,266,4376_5469,Mulhuddart,105822314,0,4376_7778022_104190,4376_70 -4289_75960,264,4376_547,Dublin Airport,105651085,1,4376_7778022_103104,4376_3 -4289_75969,267,4376_5470,Mulhuddart,106052314,0,4376_7778022_104190,4376_70 -4289_75969,268,4376_5471,Mulhuddart,106142314,0,4376_7778022_104190,4376_70 -4289_75969,269,4376_5472,Mulhuddart,106232314,0,4376_7778022_104190,4376_70 -4289_75969,259,4376_5473,Mulhuddart,105765058,0,4376_7778022_104150,4376_70 -4289_75969,270,4376_5474,Mulhuddart,105277762,0,4376_7778022_104130,4376_70 -4289_75969,146,4376_5475,Mulhuddart,105247762,0,4376_7778022_104130,4376_70 -4289_75969,271,4376_5476,Mulhuddart,105237762,0,4376_7778022_104130,4376_70 -4289_75969,115,4376_5477,Mulhuddart,105217762,0,4376_7778022_104130,4376_70 -4289_75969,260,4376_5478,Mulhuddart,105312430,0,4376_7778022_104060,4376_70 -4289_75969,261,4376_5479,Mulhuddart,105322430,0,4376_7778022_104060,4376_70 -4289_75960,265,4376_548,Dublin Airport,105811085,1,4376_7778022_103104,4376_3 -4289_75969,262,4376_5480,Mulhuddart,105432430,0,4376_7778022_104060,4376_70 -4289_75969,263,4376_5481,Mulhuddart,105542430,0,4376_7778022_104060,4376_70 -4289_75969,264,4376_5482,Mulhuddart,105652430,0,4376_7778022_104060,4376_70 -4289_75969,265,4376_5483,Mulhuddart,105812430,0,4376_7778022_104060,4376_70 -4289_75969,266,4376_5484,Mulhuddart,105822430,0,4376_7778022_104060,4376_70 -4289_75969,267,4376_5485,Mulhuddart,106052430,0,4376_7778022_104060,4376_70 -4289_75969,268,4376_5486,Mulhuddart,106142430,0,4376_7778022_104060,4376_70 -4289_75969,269,4376_5487,Mulhuddart,106232430,0,4376_7778022_104060,4376_70 -4289_75969,259,4376_5488,Mulhuddart,105765158,0,4376_7778022_104171,4376_70 -4289_75969,270,4376_5489,Mulhuddart,105277850,0,4376_7778022_104052,4376_70 -4289_75960,266,4376_549,Dublin Airport,105821085,1,4376_7778022_103104,4376_3 -4289_75969,146,4376_5490,Mulhuddart,105247850,0,4376_7778022_104052,4376_70 -4289_75969,271,4376_5491,Mulhuddart,105237850,0,4376_7778022_104052,4376_70 -4289_75969,115,4376_5492,Mulhuddart,105217850,0,4376_7778022_104052,4376_70 -4289_75969,259,4376_5493,Blanchardstown,105765212,0,4376_7778022_104180,4376_72 -4289_75969,270,4376_5494,Blanchardstown,105277904,0,4376_7778022_104130,4376_72 -4289_75969,146,4376_5495,Blanchardstown,105247904,0,4376_7778022_104130,4376_72 -4289_75969,271,4376_5496,Blanchardstown,105237904,0,4376_7778022_104130,4376_72 -4289_75969,115,4376_5497,Blanchardstown,105217904,0,4376_7778022_104130,4376_72 -4289_75969,260,4376_5498,Mulhuddart,105312540,0,4376_7778022_104093,4376_70 -4289_75969,261,4376_5499,Mulhuddart,105322540,0,4376_7778022_104093,4376_70 -4289_75960,259,4376_55,Sutton Station,105764168,0,4376_7778022_103101,4376_1 -4289_75960,267,4376_550,Dublin Airport,106051085,1,4376_7778022_103104,4376_3 -4289_75969,262,4376_5500,Mulhuddart,105432540,0,4376_7778022_104093,4376_70 -4289_75969,263,4376_5501,Mulhuddart,105542540,0,4376_7778022_104093,4376_70 -4289_75969,264,4376_5502,Mulhuddart,105652540,0,4376_7778022_104093,4376_70 -4289_75969,265,4376_5503,Mulhuddart,105812540,0,4376_7778022_104093,4376_70 -4289_75969,266,4376_5504,Mulhuddart,105822540,0,4376_7778022_104093,4376_70 -4289_75969,267,4376_5505,Mulhuddart,106052540,0,4376_7778022_104093,4376_70 -4289_75969,268,4376_5506,Mulhuddart,106142540,0,4376_7778022_104093,4376_70 -4289_75969,269,4376_5507,Mulhuddart,106232540,0,4376_7778022_104093,4376_70 -4289_75969,259,4376_5508,Mulhuddart,105765308,0,4376_7778022_104110,4376_70 -4289_75969,270,4376_5509,Mulhuddart,105277976,0,4376_7778022_104150,4376_70 -4289_75960,268,4376_551,Dublin Airport,106141085,1,4376_7778022_103104,4376_3 -4289_75969,146,4376_5510,Mulhuddart,105247976,0,4376_7778022_104150,4376_70 -4289_75969,271,4376_5511,Mulhuddart,105237976,0,4376_7778022_104150,4376_70 -4289_75969,115,4376_5512,Mulhuddart,105217976,0,4376_7778022_104150,4376_70 -4289_75969,260,4376_5513,Blanchardstown,105312600,0,4376_7778022_104110,4376_72 -4289_75969,261,4376_5514,Blanchardstown,105322600,0,4376_7778022_104110,4376_72 -4289_75969,262,4376_5515,Blanchardstown,105432600,0,4376_7778022_104110,4376_72 -4289_75969,263,4376_5516,Blanchardstown,105542600,0,4376_7778022_104110,4376_72 -4289_75969,264,4376_5517,Blanchardstown,105652600,0,4376_7778022_104110,4376_72 -4289_75969,265,4376_5518,Blanchardstown,105812600,0,4376_7778022_104110,4376_72 -4289_75969,266,4376_5519,Blanchardstown,105822600,0,4376_7778022_104110,4376_72 -4289_75960,269,4376_552,Dublin Airport,106231085,1,4376_7778022_103104,4376_3 -4289_75969,267,4376_5520,Blanchardstown,106052600,0,4376_7778022_104110,4376_72 -4289_75969,268,4376_5521,Blanchardstown,106142600,0,4376_7778022_104110,4376_72 -4289_75969,269,4376_5522,Blanchardstown,106232600,0,4376_7778022_104110,4376_72 -4289_75969,260,4376_5523,Mulhuddart,105312618,0,4376_7778022_104093,4376_71 -4289_75969,261,4376_5524,Mulhuddart,105322618,0,4376_7778022_104093,4376_71 -4289_75969,262,4376_5525,Mulhuddart,105432618,0,4376_7778022_104093,4376_71 -4289_75969,263,4376_5526,Mulhuddart,105542618,0,4376_7778022_104093,4376_71 -4289_75969,264,4376_5527,Mulhuddart,105652618,0,4376_7778022_104093,4376_71 -4289_75969,265,4376_5528,Mulhuddart,105812618,0,4376_7778022_104093,4376_71 -4289_75969,266,4376_5529,Mulhuddart,105822618,0,4376_7778022_104093,4376_71 -4289_75960,260,4376_553,Dublin Airport,105311111,1,4376_7778022_103503,4376_3 -4289_75969,267,4376_5530,Mulhuddart,106052618,0,4376_7778022_104093,4376_71 -4289_75969,268,4376_5531,Mulhuddart,106142618,0,4376_7778022_104093,4376_71 -4289_75969,269,4376_5532,Mulhuddart,106232618,0,4376_7778022_104093,4376_71 -4289_75969,260,4376_5533,Mulhuddart,105312694,0,4376_7778022_104093,4376_70 -4289_75969,261,4376_5534,Mulhuddart,105322694,0,4376_7778022_104093,4376_70 -4289_75969,262,4376_5535,Mulhuddart,105432694,0,4376_7778022_104093,4376_70 -4289_75969,263,4376_5536,Mulhuddart,105542694,0,4376_7778022_104093,4376_70 -4289_75969,264,4376_5537,Mulhuddart,105652694,0,4376_7778022_104093,4376_70 -4289_75969,265,4376_5538,Mulhuddart,105812694,0,4376_7778022_104093,4376_70 -4289_75969,266,4376_5539,Mulhuddart,105822694,0,4376_7778022_104093,4376_70 -4289_75960,261,4376_554,Dublin Airport,105321111,1,4376_7778022_103503,4376_3 -4289_75969,267,4376_5540,Mulhuddart,106052694,0,4376_7778022_104093,4376_70 -4289_75969,268,4376_5541,Mulhuddart,106142694,0,4376_7778022_104093,4376_70 -4289_75969,269,4376_5542,Mulhuddart,106232694,0,4376_7778022_104093,4376_70 -4289_75969,259,4376_5543,Mulhuddart,105765394,0,4376_7778022_104110,4376_70 -4289_75969,270,4376_5544,Mulhuddart,105278058,0,4376_7778022_104150,4376_70 -4289_75969,146,4376_5545,Mulhuddart,105248058,0,4376_7778022_104150,4376_70 -4289_75969,271,4376_5546,Mulhuddart,105238058,0,4376_7778022_104150,4376_70 -4289_75969,115,4376_5547,Mulhuddart,105218058,0,4376_7778022_104150,4376_70 -4289_75969,260,4376_5548,Mulhuddart,105312790,0,4376_7778022_104093,4376_70 -4289_75969,261,4376_5549,Mulhuddart,105322790,0,4376_7778022_104093,4376_70 -4289_75960,262,4376_555,Dublin Airport,105431111,1,4376_7778022_103503,4376_3 -4289_75969,262,4376_5550,Mulhuddart,105432790,0,4376_7778022_104093,4376_70 -4289_75969,263,4376_5551,Mulhuddart,105542790,0,4376_7778022_104093,4376_70 -4289_75969,264,4376_5552,Mulhuddart,105652790,0,4376_7778022_104093,4376_70 -4289_75969,265,4376_5553,Mulhuddart,105812790,0,4376_7778022_104093,4376_70 -4289_75969,266,4376_5554,Mulhuddart,105822790,0,4376_7778022_104093,4376_70 -4289_75969,267,4376_5555,Mulhuddart,106052790,0,4376_7778022_104093,4376_70 -4289_75969,268,4376_5556,Mulhuddart,106142790,0,4376_7778022_104093,4376_70 -4289_75969,269,4376_5557,Mulhuddart,106232790,0,4376_7778022_104093,4376_70 -4289_75969,259,4376_5558,Mulhuddart,105765482,0,4376_7778022_104100,4376_70 -4289_75969,270,4376_5559,Mulhuddart,105278136,0,4376_7778022_104150,4376_70 -4289_75960,263,4376_556,Dublin Airport,105541111,1,4376_7778022_103503,4376_3 -4289_75969,146,4376_5560,Mulhuddart,105248136,0,4376_7778022_104150,4376_70 -4289_75969,271,4376_5561,Mulhuddart,105238136,0,4376_7778022_104150,4376_70 -4289_75969,115,4376_5562,Mulhuddart,105218136,0,4376_7778022_104150,4376_70 -4289_75969,260,4376_5563,Mulhuddart,105312884,0,4376_7778022_104170,4376_70 -4289_75969,261,4376_5564,Mulhuddart,105322884,0,4376_7778022_104170,4376_70 -4289_75969,262,4376_5565,Mulhuddart,105432884,0,4376_7778022_104170,4376_70 -4289_75969,263,4376_5566,Mulhuddart,105542884,0,4376_7778022_104170,4376_70 -4289_75969,264,4376_5567,Mulhuddart,105652884,0,4376_7778022_104170,4376_70 -4289_75969,265,4376_5568,Mulhuddart,105812884,0,4376_7778022_104170,4376_70 -4289_75969,266,4376_5569,Mulhuddart,105822884,0,4376_7778022_104170,4376_70 -4289_75960,264,4376_557,Dublin Airport,105651111,1,4376_7778022_103503,4376_3 -4289_75969,267,4376_5570,Mulhuddart,106052884,0,4376_7778022_104170,4376_70 -4289_75969,268,4376_5571,Mulhuddart,106142884,0,4376_7778022_104170,4376_70 -4289_75969,269,4376_5572,Mulhuddart,106232884,0,4376_7778022_104170,4376_70 -4289_75969,259,4376_5573,Mulhuddart,105765566,0,4376_7778022_104100,4376_70 -4289_75969,270,4376_5574,Mulhuddart,105278212,0,4376_7778022_104150,4376_70 -4289_75969,146,4376_5575,Mulhuddart,105248212,0,4376_7778022_104150,4376_70 -4289_75969,271,4376_5576,Mulhuddart,105238212,0,4376_7778022_104150,4376_70 -4289_75969,115,4376_5577,Mulhuddart,105218212,0,4376_7778022_104150,4376_70 -4289_75969,260,4376_5578,Mulhuddart,105312972,0,4376_7778022_104170,4376_70 -4289_75969,261,4376_5579,Mulhuddart,105322972,0,4376_7778022_104170,4376_70 -4289_75960,265,4376_558,Dublin Airport,105811111,1,4376_7778022_103503,4376_3 -4289_75969,262,4376_5580,Mulhuddart,105432972,0,4376_7778022_104170,4376_70 -4289_75969,263,4376_5581,Mulhuddart,105542972,0,4376_7778022_104170,4376_70 -4289_75969,264,4376_5582,Mulhuddart,105652972,0,4376_7778022_104170,4376_70 -4289_75969,265,4376_5583,Mulhuddart,105812972,0,4376_7778022_104170,4376_70 -4289_75969,266,4376_5584,Mulhuddart,105822972,0,4376_7778022_104170,4376_70 -4289_75969,267,4376_5585,Mulhuddart,106052972,0,4376_7778022_104170,4376_70 -4289_75969,268,4376_5586,Mulhuddart,106142972,0,4376_7778022_104170,4376_70 -4289_75969,269,4376_5587,Mulhuddart,106232972,0,4376_7778022_104170,4376_70 -4289_75969,259,4376_5588,Mulhuddart,105765644,0,4376_7778022_104100,4376_70 -4289_75969,270,4376_5589,Mulhuddart,105278284,0,4376_7778022_104150,4376_70 -4289_75960,266,4376_559,Dublin Airport,105821111,1,4376_7778022_103503,4376_3 -4289_75969,146,4376_5590,Mulhuddart,105248284,0,4376_7778022_104150,4376_70 -4289_75969,271,4376_5591,Mulhuddart,105238284,0,4376_7778022_104150,4376_70 -4289_75969,115,4376_5592,Mulhuddart,105218284,0,4376_7778022_104150,4376_70 -4289_75969,260,4376_5593,Carlton Hotel,105311259,1,4376_7778022_104170,4376_73 -4289_75969,261,4376_5594,Carlton Hotel,105321259,1,4376_7778022_104170,4376_73 -4289_75969,262,4376_5595,Carlton Hotel,105431259,1,4376_7778022_104170,4376_73 -4289_75969,263,4376_5596,Carlton Hotel,105541259,1,4376_7778022_104170,4376_73 -4289_75969,264,4376_5597,Carlton Hotel,105651259,1,4376_7778022_104170,4376_73 -4289_75969,265,4376_5598,Carlton Hotel,105811259,1,4376_7778022_104170,4376_73 -4289_75969,266,4376_5599,Carlton Hotel,105821259,1,4376_7778022_104170,4376_73 -4289_75960,260,4376_56,Sutton Station,105311314,0,4376_7778022_103503,4376_1 -4289_75960,267,4376_560,Dublin Airport,106051111,1,4376_7778022_103503,4376_3 -4289_75969,267,4376_5600,Carlton Hotel,106051259,1,4376_7778022_104170,4376_73 -4289_75969,268,4376_5601,Carlton Hotel,106141259,1,4376_7778022_104170,4376_73 -4289_75969,269,4376_5602,Carlton Hotel,106231259,1,4376_7778022_104170,4376_73 -4289_75969,259,4376_5603,Carlton Hotel,105764181,1,4376_7778022_104090,4376_73 -4289_75969,260,4376_5604,Carlton Hotel,105311391,1,4376_7778022_104190,4376_73 -4289_75969,261,4376_5605,Carlton Hotel,105321391,1,4376_7778022_104190,4376_73 -4289_75969,262,4376_5606,Carlton Hotel,105431391,1,4376_7778022_104190,4376_73 -4289_75969,263,4376_5607,Carlton Hotel,105541391,1,4376_7778022_104190,4376_73 -4289_75969,264,4376_5608,Carlton Hotel,105651391,1,4376_7778022_104190,4376_73 -4289_75969,265,4376_5609,Carlton Hotel,105811391,1,4376_7778022_104190,4376_73 -4289_75960,268,4376_561,Dublin Airport,106141111,1,4376_7778022_103503,4376_3 -4289_75969,266,4376_5610,Carlton Hotel,105821391,1,4376_7778022_104190,4376_73 -4289_75969,267,4376_5611,Carlton Hotel,106051391,1,4376_7778022_104190,4376_73 -4289_75969,268,4376_5612,Carlton Hotel,106141391,1,4376_7778022_104190,4376_73 -4289_75969,269,4376_5613,Carlton Hotel,106231391,1,4376_7778022_104190,4376_73 -4289_75969,259,4376_5614,Carlton Hotel,105764267,1,4376_7778022_104171,4376_73 -4289_75969,270,4376_5615,Carlton Hotel,105277101,1,4376_7778022_104110,4376_75 -4289_75969,146,4376_5616,Carlton Hotel,105247101,1,4376_7778022_104110,4376_75 -4289_75969,271,4376_5617,Carlton Hotel,105237101,1,4376_7778022_104110,4376_75 -4289_75969,115,4376_5618,Carlton Hotel,105217101,1,4376_7778022_104110,4376_75 -4289_75969,260,4376_5619,Carlton Hotel,105311499,1,4376_7778022_104060,4376_73 -4289_75960,269,4376_562,Dublin Airport,106231111,1,4376_7778022_103503,4376_3 -4289_75969,261,4376_5620,Carlton Hotel,105321499,1,4376_7778022_104060,4376_73 -4289_75969,262,4376_5621,Carlton Hotel,105431499,1,4376_7778022_104060,4376_73 -4289_75969,263,4376_5622,Carlton Hotel,105541499,1,4376_7778022_104060,4376_73 -4289_75969,264,4376_5623,Carlton Hotel,105651499,1,4376_7778022_104060,4376_73 -4289_75969,265,4376_5624,Carlton Hotel,105811499,1,4376_7778022_104060,4376_73 -4289_75969,266,4376_5625,Carlton Hotel,105821499,1,4376_7778022_104060,4376_73 -4289_75969,267,4376_5626,Carlton Hotel,106051499,1,4376_7778022_104060,4376_73 -4289_75969,268,4376_5627,Carlton Hotel,106141499,1,4376_7778022_104060,4376_73 -4289_75969,269,4376_5628,Carlton Hotel,106231499,1,4376_7778022_104060,4376_73 -4289_75969,259,4376_5629,Carlton Hotel,105764369,1,4376_7778022_104171,4376_73 -4289_75960,259,4376_563,Dublin Airport,105764075,1,4376_7778022_103101,4376_4 -4289_75969,270,4376_5630,Carlton Hotel,105277167,1,4376_7778022_104110,4376_73 -4289_75969,146,4376_5631,Carlton Hotel,105247167,1,4376_7778022_104110,4376_73 -4289_75969,271,4376_5632,Carlton Hotel,105237167,1,4376_7778022_104110,4376_73 -4289_75969,115,4376_5633,Carlton Hotel,105217167,1,4376_7778022_104110,4376_73 -4289_75969,260,4376_5634,Carlton Hotel,105311607,1,4376_7778022_104110,4376_73 -4289_75969,261,4376_5635,Carlton Hotel,105321607,1,4376_7778022_104110,4376_73 -4289_75969,262,4376_5636,Carlton Hotel,105431607,1,4376_7778022_104110,4376_73 -4289_75969,263,4376_5637,Carlton Hotel,105541607,1,4376_7778022_104110,4376_73 -4289_75969,264,4376_5638,Carlton Hotel,105651607,1,4376_7778022_104110,4376_73 -4289_75969,265,4376_5639,Carlton Hotel,105811607,1,4376_7778022_104110,4376_73 -4289_75960,259,4376_564,Dublin Airport,105764105,1,4376_7778022_103502,4376_3 -4289_75969,266,4376_5640,Carlton Hotel,105821607,1,4376_7778022_104110,4376_73 -4289_75969,267,4376_5641,Carlton Hotel,106051607,1,4376_7778022_104110,4376_73 -4289_75969,268,4376_5642,Carlton Hotel,106141607,1,4376_7778022_104110,4376_73 -4289_75969,269,4376_5643,Carlton Hotel,106231607,1,4376_7778022_104110,4376_73 -4289_75969,259,4376_5644,Carlton Hotel,105764473,1,4376_7778022_104180,4376_73 -4289_75969,270,4376_5645,Carlton Hotel,105277259,1,4376_7778022_104110,4376_73 -4289_75969,146,4376_5646,Carlton Hotel,105247259,1,4376_7778022_104110,4376_73 -4289_75969,271,4376_5647,Carlton Hotel,105237259,1,4376_7778022_104110,4376_73 -4289_75969,115,4376_5648,Carlton Hotel,105217259,1,4376_7778022_104110,4376_73 -4289_75969,260,4376_5649,Carlton Hotel,105311715,1,4376_7778022_104040,4376_73 -4289_75960,260,4376_565,Dublin Airport,105311175,1,4376_7778022_103107,4376_3 -4289_75969,261,4376_5650,Carlton Hotel,105321715,1,4376_7778022_104040,4376_73 -4289_75969,262,4376_5651,Carlton Hotel,105431715,1,4376_7778022_104040,4376_73 -4289_75969,263,4376_5652,Carlton Hotel,105541715,1,4376_7778022_104040,4376_73 -4289_75969,264,4376_5653,Carlton Hotel,105651715,1,4376_7778022_104040,4376_73 -4289_75969,265,4376_5654,Carlton Hotel,105811715,1,4376_7778022_104040,4376_73 -4289_75969,266,4376_5655,Carlton Hotel,105821715,1,4376_7778022_104040,4376_73 -4289_75969,267,4376_5656,Carlton Hotel,106051715,1,4376_7778022_104040,4376_73 -4289_75969,268,4376_5657,Carlton Hotel,106141715,1,4376_7778022_104040,4376_73 -4289_75969,269,4376_5658,Carlton Hotel,106231715,1,4376_7778022_104040,4376_73 -4289_75969,259,4376_5659,Carlton Hotel,105764561,1,4376_7778022_104110,4376_73 -4289_75960,261,4376_566,Dublin Airport,105321175,1,4376_7778022_103107,4376_3 -4289_75969,270,4376_5660,Carlton Hotel,105277337,1,4376_7778022_104150,4376_73 -4289_75969,146,4376_5661,Carlton Hotel,105247337,1,4376_7778022_104150,4376_73 -4289_75969,271,4376_5662,Carlton Hotel,105237337,1,4376_7778022_104150,4376_73 -4289_75969,115,4376_5663,Carlton Hotel,105217337,1,4376_7778022_104150,4376_73 -4289_75969,260,4376_5664,Carlton Hotel,105311827,1,4376_7778022_104140,4376_73 -4289_75969,261,4376_5665,Carlton Hotel,105321827,1,4376_7778022_104140,4376_73 -4289_75969,262,4376_5666,Carlton Hotel,105431827,1,4376_7778022_104140,4376_73 -4289_75969,263,4376_5667,Carlton Hotel,105541827,1,4376_7778022_104140,4376_73 -4289_75969,264,4376_5668,Carlton Hotel,105651827,1,4376_7778022_104140,4376_73 -4289_75969,265,4376_5669,Carlton Hotel,105811827,1,4376_7778022_104140,4376_73 -4289_75960,262,4376_567,Dublin Airport,105431175,1,4376_7778022_103107,4376_3 -4289_75969,266,4376_5670,Carlton Hotel,105821827,1,4376_7778022_104140,4376_73 -4289_75969,267,4376_5671,Carlton Hotel,106051827,1,4376_7778022_104140,4376_73 -4289_75969,268,4376_5672,Carlton Hotel,106141827,1,4376_7778022_104140,4376_73 -4289_75969,269,4376_5673,Carlton Hotel,106231827,1,4376_7778022_104140,4376_73 -4289_75969,259,4376_5674,Carlton Hotel,105764665,1,4376_7778022_104080,4376_73 -4289_75969,270,4376_5675,Carlton Hotel,105277427,1,4376_7778022_104100,4376_73 -4289_75969,146,4376_5676,Carlton Hotel,105247427,1,4376_7778022_104100,4376_73 -4289_75969,271,4376_5677,Carlton Hotel,105237427,1,4376_7778022_104100,4376_73 -4289_75969,115,4376_5678,Carlton Hotel,105217427,1,4376_7778022_104100,4376_73 -4289_75969,260,4376_5679,Carlton Hotel,105311939,1,4376_7778022_104080,4376_73 -4289_75960,263,4376_568,Dublin Airport,105541175,1,4376_7778022_103107,4376_3 -4289_75969,261,4376_5680,Carlton Hotel,105321939,1,4376_7778022_104080,4376_73 -4289_75969,262,4376_5681,Carlton Hotel,105431939,1,4376_7778022_104080,4376_73 -4289_75969,263,4376_5682,Carlton Hotel,105541939,1,4376_7778022_104080,4376_73 -4289_75969,264,4376_5683,Carlton Hotel,105651939,1,4376_7778022_104080,4376_73 -4289_75969,265,4376_5684,Carlton Hotel,105811939,1,4376_7778022_104080,4376_73 -4289_75969,266,4376_5685,Carlton Hotel,105821939,1,4376_7778022_104080,4376_73 -4289_75969,267,4376_5686,Carlton Hotel,106051939,1,4376_7778022_104080,4376_73 -4289_75969,268,4376_5687,Carlton Hotel,106141939,1,4376_7778022_104080,4376_73 -4289_75969,269,4376_5688,Carlton Hotel,106231939,1,4376_7778022_104080,4376_73 -4289_75969,259,4376_5689,Carlton Hotel,105764767,1,4376_7778022_104100,4376_73 -4289_75960,264,4376_569,Dublin Airport,105651175,1,4376_7778022_103107,4376_3 -4289_75969,270,4376_5690,Carlton Hotel,105277519,1,4376_7778022_104080,4376_73 -4289_75969,146,4376_5691,Carlton Hotel,105247519,1,4376_7778022_104080,4376_73 -4289_75969,271,4376_5692,Carlton Hotel,105237519,1,4376_7778022_104080,4376_73 -4289_75969,115,4376_5693,Carlton Hotel,105217519,1,4376_7778022_104080,4376_73 -4289_75969,260,4376_5694,Carlton Hotel,105312055,1,4376_7778022_104170,4376_73 -4289_75969,261,4376_5695,Carlton Hotel,105322055,1,4376_7778022_104170,4376_73 -4289_75969,262,4376_5696,Carlton Hotel,105432055,1,4376_7778022_104170,4376_73 -4289_75969,263,4376_5697,Carlton Hotel,105542055,1,4376_7778022_104170,4376_73 -4289_75969,264,4376_5698,Carlton Hotel,105652055,1,4376_7778022_104170,4376_73 -4289_75969,265,4376_5699,Carlton Hotel,105812055,1,4376_7778022_104170,4376_73 -4289_75960,261,4376_57,Sutton Station,105321314,0,4376_7778022_103503,4376_1 -4289_75960,265,4376_570,Dublin Airport,105811175,1,4376_7778022_103107,4376_3 -4289_75969,266,4376_5700,Carlton Hotel,105822055,1,4376_7778022_104170,4376_73 -4289_75969,267,4376_5701,Carlton Hotel,106052055,1,4376_7778022_104170,4376_73 -4289_75969,268,4376_5702,Carlton Hotel,106142055,1,4376_7778022_104170,4376_73 -4289_75969,269,4376_5703,Carlton Hotel,106232055,1,4376_7778022_104170,4376_73 -4289_75969,259,4376_5704,Carlton Hotel,105764869,1,4376_7778022_104090,4376_73 -4289_75969,270,4376_5705,Carlton Hotel,105277609,1,4376_7778022_104051,4376_73 -4289_75969,146,4376_5706,Carlton Hotel,105247609,1,4376_7778022_104051,4376_73 -4289_75969,271,4376_5707,Carlton Hotel,105237609,1,4376_7778022_104051,4376_73 -4289_75969,115,4376_5708,Carlton Hotel,105217609,1,4376_7778022_104051,4376_73 -4289_75969,260,4376_5709,Carlton Hotel,105312189,1,4376_7778022_104190,4376_73 -4289_75960,266,4376_571,Dublin Airport,105821175,1,4376_7778022_103107,4376_3 -4289_75969,261,4376_5710,Carlton Hotel,105322189,1,4376_7778022_104190,4376_73 -4289_75969,262,4376_5711,Carlton Hotel,105432189,1,4376_7778022_104190,4376_73 -4289_75969,263,4376_5712,Carlton Hotel,105542189,1,4376_7778022_104190,4376_73 -4289_75969,264,4376_5713,Carlton Hotel,105652189,1,4376_7778022_104190,4376_73 -4289_75969,265,4376_5714,Carlton Hotel,105812189,1,4376_7778022_104190,4376_73 -4289_75969,266,4376_5715,Carlton Hotel,105822189,1,4376_7778022_104190,4376_73 -4289_75969,267,4376_5716,Carlton Hotel,106052189,1,4376_7778022_104190,4376_73 -4289_75969,268,4376_5717,Carlton Hotel,106142189,1,4376_7778022_104190,4376_73 -4289_75969,269,4376_5718,Carlton Hotel,106232189,1,4376_7778022_104190,4376_73 -4289_75969,259,4376_5719,Carlton Hotel,105764971,1,4376_7778022_104150,4376_73 -4289_75960,267,4376_572,Dublin Airport,106051175,1,4376_7778022_103107,4376_3 -4289_75969,270,4376_5720,Carlton Hotel,105277699,1,4376_7778022_104130,4376_73 -4289_75969,146,4376_5721,Carlton Hotel,105247699,1,4376_7778022_104130,4376_73 -4289_75969,271,4376_5722,Carlton Hotel,105237699,1,4376_7778022_104130,4376_73 -4289_75969,115,4376_5723,Carlton Hotel,105217699,1,4376_7778022_104130,4376_73 -4289_75969,260,4376_5724,Carlton Hotel,105312327,1,4376_7778022_104060,4376_73 -4289_75969,261,4376_5725,Carlton Hotel,105322327,1,4376_7778022_104060,4376_73 -4289_75969,262,4376_5726,Carlton Hotel,105432327,1,4376_7778022_104060,4376_73 -4289_75969,263,4376_5727,Carlton Hotel,105542327,1,4376_7778022_104060,4376_73 -4289_75969,264,4376_5728,Carlton Hotel,105652327,1,4376_7778022_104060,4376_73 -4289_75969,265,4376_5729,Carlton Hotel,105812327,1,4376_7778022_104060,4376_73 -4289_75960,268,4376_573,Dublin Airport,106141175,1,4376_7778022_103107,4376_3 -4289_75969,266,4376_5730,Carlton Hotel,105822327,1,4376_7778022_104060,4376_73 -4289_75969,267,4376_5731,Carlton Hotel,106052327,1,4376_7778022_104060,4376_73 -4289_75969,268,4376_5732,Carlton Hotel,106142327,1,4376_7778022_104060,4376_73 -4289_75969,269,4376_5733,Carlton Hotel,106232327,1,4376_7778022_104060,4376_73 -4289_75969,259,4376_5734,Carlton Hotel,105765073,1,4376_7778022_104171,4376_73 -4289_75969,270,4376_5735,Carlton Hotel,105277789,1,4376_7778022_104052,4376_73 -4289_75969,146,4376_5736,Carlton Hotel,105247789,1,4376_7778022_104052,4376_73 -4289_75969,271,4376_5737,Carlton Hotel,105237789,1,4376_7778022_104052,4376_73 -4289_75969,115,4376_5738,Carlton Hotel,105217789,1,4376_7778022_104052,4376_73 -4289_75969,259,4376_5739,Carlton Hotel,105765161,1,4376_7778022_104180,4376_75 -4289_75960,269,4376_574,Dublin Airport,106231175,1,4376_7778022_103107,4376_3 -4289_75969,270,4376_5740,Carlton Hotel,105277865,1,4376_7778022_104130,4376_75 -4289_75969,146,4376_5741,Carlton Hotel,105247865,1,4376_7778022_104130,4376_75 -4289_75969,271,4376_5742,Carlton Hotel,105237865,1,4376_7778022_104130,4376_75 -4289_75969,115,4376_5743,Carlton Hotel,105217865,1,4376_7778022_104130,4376_75 -4289_75969,260,4376_5744,Carlton Hotel,105312445,1,4376_7778022_104093,4376_73 -4289_75969,261,4376_5745,Carlton Hotel,105322445,1,4376_7778022_104093,4376_73 -4289_75969,262,4376_5746,Carlton Hotel,105432445,1,4376_7778022_104093,4376_73 -4289_75969,263,4376_5747,Carlton Hotel,105542445,1,4376_7778022_104093,4376_73 -4289_75969,264,4376_5748,Carlton Hotel,105652445,1,4376_7778022_104093,4376_73 -4289_75969,265,4376_5749,Carlton Hotel,105812445,1,4376_7778022_104093,4376_73 -4289_75960,259,4376_575,Dublin Airport,105764149,1,4376_7778022_103104,4376_3 -4289_75969,266,4376_5750,Carlton Hotel,105822445,1,4376_7778022_104093,4376_73 -4289_75969,267,4376_5751,Carlton Hotel,106052445,1,4376_7778022_104093,4376_73 -4289_75969,268,4376_5752,Carlton Hotel,106142445,1,4376_7778022_104093,4376_73 -4289_75969,269,4376_5753,Carlton Hotel,106232445,1,4376_7778022_104093,4376_73 -4289_75969,259,4376_5754,Carlton Hotel,105765241,1,4376_7778022_104110,4376_73 -4289_75969,270,4376_5755,Carlton Hotel,105277933,1,4376_7778022_104150,4376_73 -4289_75969,146,4376_5756,Carlton Hotel,105247933,1,4376_7778022_104150,4376_73 -4289_75969,271,4376_5757,Carlton Hotel,105237933,1,4376_7778022_104150,4376_73 -4289_75969,115,4376_5758,Carlton Hotel,105217933,1,4376_7778022_104150,4376_73 -4289_75969,260,4376_5759,Carlton Hotel,105312539,1,4376_7778022_104110,4376_75 -4289_75960,260,4376_576,Dublin Airport,105311231,1,4376_7778022_103108,4376_3 -4289_75969,261,4376_5760,Carlton Hotel,105322539,1,4376_7778022_104110,4376_75 -4289_75969,262,4376_5761,Carlton Hotel,105432539,1,4376_7778022_104110,4376_75 -4289_75969,263,4376_5762,Carlton Hotel,105542539,1,4376_7778022_104110,4376_75 -4289_75969,264,4376_5763,Carlton Hotel,105652539,1,4376_7778022_104110,4376_75 -4289_75969,265,4376_5764,Carlton Hotel,105812539,1,4376_7778022_104110,4376_75 -4289_75969,266,4376_5765,Carlton Hotel,105822539,1,4376_7778022_104110,4376_75 -4289_75969,267,4376_5766,Carlton Hotel,106052539,1,4376_7778022_104110,4376_75 -4289_75969,268,4376_5767,Carlton Hotel,106142539,1,4376_7778022_104110,4376_75 -4289_75969,269,4376_5768,Carlton Hotel,106232539,1,4376_7778022_104110,4376_75 -4289_75969,260,4376_5769,Blanchardstown,105312577,1,4376_7778022_104093,4376_74 -4289_75960,261,4376_577,Dublin Airport,105321231,1,4376_7778022_103108,4376_3 -4289_75969,261,4376_5770,Blanchardstown,105322577,1,4376_7778022_104093,4376_74 -4289_75969,262,4376_5771,Blanchardstown,105432577,1,4376_7778022_104093,4376_74 -4289_75969,263,4376_5772,Blanchardstown,105542577,1,4376_7778022_104093,4376_74 -4289_75969,264,4376_5773,Blanchardstown,105652577,1,4376_7778022_104093,4376_74 -4289_75969,265,4376_5774,Blanchardstown,105812577,1,4376_7778022_104093,4376_74 -4289_75969,266,4376_5775,Blanchardstown,105822577,1,4376_7778022_104093,4376_74 -4289_75969,267,4376_5776,Blanchardstown,106052577,1,4376_7778022_104093,4376_74 -4289_75969,268,4376_5777,Blanchardstown,106142577,1,4376_7778022_104093,4376_74 -4289_75969,269,4376_5778,Blanchardstown,106232577,1,4376_7778022_104093,4376_74 -4289_75969,260,4376_5779,Carlton Hotel,105312625,1,4376_7778022_104093,4376_73 -4289_75960,262,4376_578,Dublin Airport,105431231,1,4376_7778022_103108,4376_3 -4289_75969,261,4376_5780,Carlton Hotel,105322625,1,4376_7778022_104093,4376_73 -4289_75969,262,4376_5781,Carlton Hotel,105432625,1,4376_7778022_104093,4376_73 -4289_75969,263,4376_5782,Carlton Hotel,105542625,1,4376_7778022_104093,4376_73 -4289_75969,264,4376_5783,Carlton Hotel,105652625,1,4376_7778022_104093,4376_73 -4289_75969,265,4376_5784,Carlton Hotel,105812625,1,4376_7778022_104093,4376_73 -4289_75969,266,4376_5785,Carlton Hotel,105822625,1,4376_7778022_104093,4376_73 -4289_75969,267,4376_5786,Carlton Hotel,106052625,1,4376_7778022_104093,4376_73 -4289_75969,268,4376_5787,Carlton Hotel,106142625,1,4376_7778022_104093,4376_73 -4289_75969,269,4376_5788,Carlton Hotel,106232625,1,4376_7778022_104093,4376_73 -4289_75969,259,4376_5789,Carlton Hotel,105765331,1,4376_7778022_104110,4376_73 -4289_75960,263,4376_579,Dublin Airport,105541231,1,4376_7778022_103108,4376_3 -4289_75969,270,4376_5790,Carlton Hotel,105278019,1,4376_7778022_104150,4376_73 -4289_75969,146,4376_5791,Carlton Hotel,105248019,1,4376_7778022_104150,4376_73 -4289_75969,271,4376_5792,Carlton Hotel,105238019,1,4376_7778022_104150,4376_73 -4289_75969,115,4376_5793,Carlton Hotel,105218019,1,4376_7778022_104150,4376_73 -4289_75969,260,4376_5794,Carlton Hotel,105312719,1,4376_7778022_104093,4376_73 -4289_75969,261,4376_5795,Carlton Hotel,105322719,1,4376_7778022_104093,4376_73 -4289_75969,262,4376_5796,Carlton Hotel,105432719,1,4376_7778022_104093,4376_73 -4289_75969,263,4376_5797,Carlton Hotel,105542719,1,4376_7778022_104093,4376_73 -4289_75969,264,4376_5798,Carlton Hotel,105652719,1,4376_7778022_104093,4376_73 -4289_75969,265,4376_5799,Carlton Hotel,105812719,1,4376_7778022_104093,4376_73 -4289_75960,262,4376_58,Sutton Station,105431314,0,4376_7778022_103503,4376_1 -4289_75960,264,4376_580,Dublin Airport,105651231,1,4376_7778022_103108,4376_3 -4289_75969,266,4376_5800,Carlton Hotel,105822719,1,4376_7778022_104093,4376_73 -4289_75969,267,4376_5801,Carlton Hotel,106052719,1,4376_7778022_104093,4376_73 -4289_75969,268,4376_5802,Carlton Hotel,106142719,1,4376_7778022_104093,4376_73 -4289_75969,269,4376_5803,Carlton Hotel,106232719,1,4376_7778022_104093,4376_73 -4289_75969,259,4376_5804,Carlton Hotel,105765417,1,4376_7778022_104100,4376_73 -4289_75969,270,4376_5805,Carlton Hotel,105278099,1,4376_7778022_104150,4376_73 -4289_75969,146,4376_5806,Carlton Hotel,105248099,1,4376_7778022_104150,4376_73 -4289_75969,271,4376_5807,Carlton Hotel,105238099,1,4376_7778022_104150,4376_73 -4289_75969,115,4376_5808,Carlton Hotel,105218099,1,4376_7778022_104150,4376_73 -4289_75969,260,4376_5809,Carlton Hotel,105312817,1,4376_7778022_104170,4376_73 -4289_75960,265,4376_581,Dublin Airport,105811231,1,4376_7778022_103108,4376_3 -4289_75969,261,4376_5810,Carlton Hotel,105322817,1,4376_7778022_104170,4376_73 -4289_75969,262,4376_5811,Carlton Hotel,105432817,1,4376_7778022_104170,4376_73 -4289_75969,263,4376_5812,Carlton Hotel,105542817,1,4376_7778022_104170,4376_73 -4289_75969,264,4376_5813,Carlton Hotel,105652817,1,4376_7778022_104170,4376_73 -4289_75969,265,4376_5814,Carlton Hotel,105812817,1,4376_7778022_104170,4376_73 -4289_75969,266,4376_5815,Carlton Hotel,105822817,1,4376_7778022_104170,4376_73 -4289_75969,267,4376_5816,Carlton Hotel,106052817,1,4376_7778022_104170,4376_73 -4289_75969,268,4376_5817,Carlton Hotel,106142817,1,4376_7778022_104170,4376_73 -4289_75969,269,4376_5818,Carlton Hotel,106232817,1,4376_7778022_104170,4376_73 -4289_75969,259,4376_5819,Carlton Hotel,105765503,1,4376_7778022_104100,4376_73 -4289_75960,266,4376_582,Dublin Airport,105821231,1,4376_7778022_103108,4376_3 -4289_75969,270,4376_5820,Carlton Hotel,105278177,1,4376_7778022_104150,4376_73 -4289_75969,146,4376_5821,Carlton Hotel,105248177,1,4376_7778022_104150,4376_73 -4289_75969,271,4376_5822,Carlton Hotel,105238177,1,4376_7778022_104150,4376_73 -4289_75969,115,4376_5823,Carlton Hotel,105218177,1,4376_7778022_104150,4376_73 -4289_75969,260,4376_5824,Carlton Hotel,105312909,1,4376_7778022_104170,4376_73 -4289_75969,261,4376_5825,Carlton Hotel,105322909,1,4376_7778022_104170,4376_73 -4289_75969,262,4376_5826,Carlton Hotel,105432909,1,4376_7778022_104170,4376_73 -4289_75969,263,4376_5827,Carlton Hotel,105542909,1,4376_7778022_104170,4376_73 -4289_75969,264,4376_5828,Carlton Hotel,105652909,1,4376_7778022_104170,4376_73 -4289_75969,265,4376_5829,Carlton Hotel,105812909,1,4376_7778022_104170,4376_73 -4289_75960,267,4376_583,Dublin Airport,106051231,1,4376_7778022_103108,4376_3 -4289_75969,266,4376_5830,Carlton Hotel,105822909,1,4376_7778022_104170,4376_73 -4289_75969,267,4376_5831,Carlton Hotel,106052909,1,4376_7778022_104170,4376_73 -4289_75969,268,4376_5832,Carlton Hotel,106142909,1,4376_7778022_104170,4376_73 -4289_75969,269,4376_5833,Carlton Hotel,106232909,1,4376_7778022_104170,4376_73 -4289_75969,259,4376_5834,Carlton Hotel,105765587,1,4376_7778022_104100,4376_73 -4289_75969,270,4376_5835,Carlton Hotel,105278253,1,4376_7778022_104150,4376_73 -4289_75969,146,4376_5836,Carlton Hotel,105248253,1,4376_7778022_104150,4376_73 -4289_75969,271,4376_5837,Carlton Hotel,105238253,1,4376_7778022_104150,4376_73 -4289_75969,115,4376_5838,Carlton Hotel,105218253,1,4376_7778022_104150,4376_73 -4289_75969,260,4376_5839,Carlton Hotel,105312989,1,4376_7778022_104130,4376_75 -4289_75960,268,4376_584,Dublin Airport,106141231,1,4376_7778022_103108,4376_3 -4289_75969,261,4376_5840,Carlton Hotel,105322989,1,4376_7778022_104130,4376_75 -4289_75969,262,4376_5841,Carlton Hotel,105432989,1,4376_7778022_104130,4376_75 -4289_75969,263,4376_5842,Carlton Hotel,105542989,1,4376_7778022_104130,4376_75 -4289_75969,264,4376_5843,Carlton Hotel,105652989,1,4376_7778022_104130,4376_75 -4289_75969,265,4376_5844,Carlton Hotel,105812989,1,4376_7778022_104130,4376_75 -4289_75969,266,4376_5845,Carlton Hotel,105822989,1,4376_7778022_104130,4376_75 -4289_75969,267,4376_5846,Carlton Hotel,106052989,1,4376_7778022_104130,4376_75 -4289_75969,268,4376_5847,Carlton Hotel,106142989,1,4376_7778022_104130,4376_75 -4289_75969,269,4376_5848,Carlton Hotel,106232989,1,4376_7778022_104130,4376_75 -4289_75969,259,4376_5849,Carlton Hotel,105765665,1,4376_7778022_104050,4376_75 -4289_75960,269,4376_585,Dublin Airport,106231231,1,4376_7778022_103108,4376_3 -4289_75970,260,4376_5850,Blanchardstown,105311092,0,4376_7778022_100191,4376_76 -4289_75970,261,4376_5851,Blanchardstown,105321092,0,4376_7778022_100191,4376_76 -4289_75970,262,4376_5852,Blanchardstown,105431092,0,4376_7778022_100191,4376_76 -4289_75970,263,4376_5853,Blanchardstown,105541092,0,4376_7778022_100191,4376_76 -4289_75970,264,4376_5854,Blanchardstown,105651092,0,4376_7778022_100191,4376_76 -4289_75970,265,4376_5855,Blanchardstown,105811092,0,4376_7778022_100191,4376_76 -4289_75970,266,4376_5856,Blanchardstown,105821092,0,4376_7778022_100191,4376_76 -4289_75970,267,4376_5857,Blanchardstown,106051092,0,4376_7778022_100191,4376_76 -4289_75970,268,4376_5858,Blanchardstown,106141092,0,4376_7778022_100191,4376_76 -4289_75970,269,4376_5859,Blanchardstown,106231092,0,4376_7778022_100191,4376_76 -4289_75960,259,4376_586,Dublin Airport,105764189,1,4376_7778022_103501,4376_3 -4289_75970,259,4376_5860,Blanchardstown,105764064,0,4376_7778022_104050,4376_76 -4289_75970,260,4376_5861,Blanchardstown,105311228,0,4376_7778022_100191,4376_76 -4289_75970,261,4376_5862,Blanchardstown,105321228,0,4376_7778022_100191,4376_76 -4289_75970,262,4376_5863,Blanchardstown,105431228,0,4376_7778022_100191,4376_76 -4289_75970,263,4376_5864,Blanchardstown,105541228,0,4376_7778022_100191,4376_76 -4289_75970,264,4376_5865,Blanchardstown,105651228,0,4376_7778022_100191,4376_76 -4289_75970,265,4376_5866,Blanchardstown,105811228,0,4376_7778022_100191,4376_76 -4289_75970,266,4376_5867,Blanchardstown,105821228,0,4376_7778022_100191,4376_76 -4289_75970,267,4376_5868,Blanchardstown,106051228,0,4376_7778022_100191,4376_76 -4289_75970,268,4376_5869,Blanchardstown,106141228,0,4376_7778022_100191,4376_76 -4289_75960,260,4376_587,Dublin Airport,105311307,1,4376_7778022_103501,4376_3 -4289_75970,269,4376_5870,Blanchardstown,106231228,0,4376_7778022_100191,4376_76 -4289_75970,259,4376_5871,Blanchardstown,105764148,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_5872,Blanchardstown,105277020,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_5873,Blanchardstown,105247020,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_5874,Blanchardstown,105237020,0,4376_7778022_104020,4376_76 -4289_75970,115,4376_5875,Blanchardstown,105217020,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_5876,Blanchardstown,105311390,0,4376_7778022_100191,4376_76 -4289_75970,261,4376_5877,Blanchardstown,105321390,0,4376_7778022_100191,4376_76 -4289_75970,262,4376_5878,Blanchardstown,105431390,0,4376_7778022_100191,4376_76 -4289_75970,263,4376_5879,Blanchardstown,105541390,0,4376_7778022_100191,4376_76 -4289_75960,261,4376_588,Dublin Airport,105321307,1,4376_7778022_103501,4376_3 -4289_75970,264,4376_5880,Blanchardstown,105651390,0,4376_7778022_100191,4376_76 -4289_75970,265,4376_5881,Blanchardstown,105811390,0,4376_7778022_100191,4376_76 -4289_75970,266,4376_5882,Blanchardstown,105821390,0,4376_7778022_100191,4376_76 -4289_75970,267,4376_5883,Blanchardstown,106051390,0,4376_7778022_100191,4376_76 -4289_75970,268,4376_5884,Blanchardstown,106141390,0,4376_7778022_100191,4376_76 -4289_75970,269,4376_5885,Blanchardstown,106231390,0,4376_7778022_100191,4376_76 -4289_75970,259,4376_5886,Blanchardstown,105764234,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_5887,Blanchardstown,105277074,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_5888,Blanchardstown,105247074,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_5889,Blanchardstown,105237074,0,4376_7778022_104020,4376_76 -4289_75960,262,4376_589,Dublin Airport,105431307,1,4376_7778022_103501,4376_3 -4289_75970,115,4376_5890,Blanchardstown,105217074,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_5891,Blanchardstown,105311528,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_5892,Blanchardstown,105321528,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_5893,Blanchardstown,105431528,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_5894,Blanchardstown,105541528,0,4376_7778022_104130,4376_76 -4289_75970,264,4376_5895,Blanchardstown,105651528,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_5896,Blanchardstown,105811528,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_5897,Blanchardstown,105821528,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_5898,Blanchardstown,106051528,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_5899,Blanchardstown,106141528,0,4376_7778022_104130,4376_76 -4289_75960,263,4376_59,Sutton Station,105541314,0,4376_7778022_103503,4376_1 -4289_75960,263,4376_590,Dublin Airport,105541307,1,4376_7778022_103501,4376_3 -4289_75970,269,4376_5900,Blanchardstown,106231528,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_5901,Blanchardstown,105764356,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_5902,Blanchardstown,105277142,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_5903,Blanchardstown,105247142,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_5904,Blanchardstown,105237142,0,4376_7778022_104020,4376_76 -4289_75970,115,4376_5905,Blanchardstown,105217142,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_5906,Blanchardstown,105311636,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_5907,Blanchardstown,105321636,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_5908,Blanchardstown,105431636,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_5909,Blanchardstown,105541636,0,4376_7778022_104130,4376_76 -4289_75960,264,4376_591,Dublin Airport,105651307,1,4376_7778022_103501,4376_3 -4289_75970,264,4376_5910,Blanchardstown,105651636,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_5911,Blanchardstown,105811636,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_5912,Blanchardstown,105821636,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_5913,Blanchardstown,106051636,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_5914,Blanchardstown,106141636,0,4376_7778022_104130,4376_76 -4289_75970,269,4376_5915,Blanchardstown,106231636,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_5916,Blanchardstown,105764458,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_5917,Blanchardstown,105277234,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_5918,Blanchardstown,105247234,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_5919,Blanchardstown,105237234,0,4376_7778022_104020,4376_76 -4289_75960,265,4376_592,Dublin Airport,105811307,1,4376_7778022_103501,4376_3 -4289_75970,115,4376_5920,Blanchardstown,105217234,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_5921,Blanchardstown,105311742,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_5922,Blanchardstown,105321742,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_5923,Blanchardstown,105431742,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_5924,Blanchardstown,105541742,0,4376_7778022_104130,4376_76 -4289_75970,264,4376_5925,Blanchardstown,105651742,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_5926,Blanchardstown,105811742,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_5927,Blanchardstown,105821742,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_5928,Blanchardstown,106051742,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_5929,Blanchardstown,106141742,0,4376_7778022_104130,4376_76 -4289_75960,266,4376_593,Dublin Airport,105821307,1,4376_7778022_103501,4376_3 -4289_75970,269,4376_5930,Blanchardstown,106231742,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_5931,Blanchardstown,105764560,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_5932,Blanchardstown,105277322,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_5933,Blanchardstown,105247322,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_5934,Blanchardstown,105237322,0,4376_7778022_104020,4376_76 -4289_75970,115,4376_5935,Blanchardstown,105217322,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_5936,Blanchardstown,105311852,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_5937,Blanchardstown,105321852,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_5938,Blanchardstown,105431852,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_5939,Blanchardstown,105541852,0,4376_7778022_104130,4376_76 -4289_75960,267,4376_594,Dublin Airport,106051307,1,4376_7778022_103501,4376_3 -4289_75970,264,4376_5940,Blanchardstown,105651852,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_5941,Blanchardstown,105811852,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_5942,Blanchardstown,105821852,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_5943,Blanchardstown,106051852,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_5944,Blanchardstown,106141852,0,4376_7778022_104130,4376_76 -4289_75970,269,4376_5945,Blanchardstown,106231852,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_5946,Blanchardstown,105764664,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_5947,Blanchardstown,105277412,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_5948,Blanchardstown,105247412,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_5949,Blanchardstown,105237412,0,4376_7778022_104020,4376_76 -4289_75960,268,4376_595,Dublin Airport,106141307,1,4376_7778022_103501,4376_3 -4289_75970,115,4376_5950,Blanchardstown,105217412,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_5951,Blanchardstown,105311962,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_5952,Blanchardstown,105321962,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_5953,Blanchardstown,105431962,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_5954,Blanchardstown,105541962,0,4376_7778022_104130,4376_76 -4289_75970,264,4376_5955,Blanchardstown,105651962,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_5956,Blanchardstown,105811962,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_5957,Blanchardstown,105821962,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_5958,Blanchardstown,106051962,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_5959,Blanchardstown,106141962,0,4376_7778022_104130,4376_76 -4289_75960,269,4376_596,Dublin Airport,106231307,1,4376_7778022_103501,4376_3 -4289_75970,269,4376_5960,Blanchardstown,106231962,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_5961,Blanchardstown,105764766,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_5962,Blanchardstown,105277504,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_5963,Blanchardstown,105247504,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_5964,Blanchardstown,105237504,0,4376_7778022_104020,4376_76 -4289_75970,115,4376_5965,Blanchardstown,105217504,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_5966,Blanchardstown,105312086,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_5967,Blanchardstown,105322086,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_5968,Blanchardstown,105432086,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_5969,Blanchardstown,105542086,0,4376_7778022_104130,4376_76 -4289_75960,259,4376_597,Dublin Airport,105764233,1,4376_7778022_103101,4376_3 -4289_75970,264,4376_5970,Blanchardstown,105652086,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_5971,Blanchardstown,105812086,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_5972,Blanchardstown,105822086,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_5973,Blanchardstown,106052086,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_5974,Blanchardstown,106142086,0,4376_7778022_104130,4376_76 -4289_75970,269,4376_5975,Blanchardstown,106232086,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_5976,Blanchardstown,105764868,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_5977,Blanchardstown,105277594,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_5978,Blanchardstown,105247594,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_5979,Blanchardstown,105237594,0,4376_7778022_104020,4376_76 -4289_75960,270,4376_598,Dublin Airport,105277063,1,4376_7778022_103501,4376_4 -4289_75970,115,4376_5980,Blanchardstown,105217594,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_5981,Blanchardstown,105312212,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_5982,Blanchardstown,105322212,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_5983,Blanchardstown,105432212,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_5984,Blanchardstown,105542212,0,4376_7778022_104130,4376_76 -4289_75970,264,4376_5985,Blanchardstown,105652212,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_5986,Blanchardstown,105812212,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_5987,Blanchardstown,105822212,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_5988,Blanchardstown,106052212,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_5989,Blanchardstown,106142212,0,4376_7778022_104130,4376_76 -4289_75960,146,4376_599,Dublin Airport,105247063,1,4376_7778022_103501,4376_4 -4289_75970,269,4376_5990,Blanchardstown,106232212,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_5991,Blanchardstown,105764972,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_5992,Blanchardstown,105277684,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_5993,Blanchardstown,105247684,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_5994,Blanchardstown,105237684,0,4376_7778022_104020,4376_76 -4289_75970,115,4376_5995,Blanchardstown,105217684,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_5996,Blanchardstown,105312340,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_5997,Blanchardstown,105322340,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_5998,Blanchardstown,105432340,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_5999,Blanchardstown,105542340,0,4376_7778022_104130,4376_76 -4289_75960,264,4376_6,Sutton Station,105651026,0,4376_7778022_103503,4376_1 -4289_75960,264,4376_60,Sutton Station,105651314,0,4376_7778022_103503,4376_1 -4289_75960,271,4376_600,Dublin Airport,105237063,1,4376_7778022_103501,4376_4 -4289_75970,264,4376_6000,Blanchardstown,105652340,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_6001,Blanchardstown,105812340,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_6002,Blanchardstown,105822340,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_6003,Blanchardstown,106052340,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_6004,Blanchardstown,106142340,0,4376_7778022_104130,4376_76 -4289_75970,269,4376_6005,Blanchardstown,106232340,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_6006,Blanchardstown,105765074,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_6007,Blanchardstown,105277776,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_6008,Blanchardstown,105247776,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_6009,Blanchardstown,105237776,0,4376_7778022_104020,4376_76 -4289_75960,115,4376_601,Dublin Airport,105217063,1,4376_7778022_103501,4376_4 -4289_75970,115,4376_6010,Blanchardstown,105217776,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_6011,Blanchardstown,105312454,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_6012,Blanchardstown,105322454,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_6013,Blanchardstown,105432454,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_6014,Blanchardstown,105542454,0,4376_7778022_104130,4376_76 -4289_75970,264,4376_6015,Blanchardstown,105652454,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_6016,Blanchardstown,105812454,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_6017,Blanchardstown,105822454,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_6018,Blanchardstown,106052454,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_6019,Blanchardstown,106142454,0,4376_7778022_104130,4376_76 -4289_75960,260,4376_602,Dublin Airport,105311371,1,4376_7778022_103502,4376_3 -4289_75970,269,4376_6020,Blanchardstown,106232454,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_6021,Blanchardstown,105765178,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_6022,Blanchardstown,105277870,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_6023,Blanchardstown,105247870,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_6024,Blanchardstown,105237870,0,4376_7778022_104020,4376_76 -4289_75970,115,4376_6025,Blanchardstown,105217870,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_6026,Blanchardstown,105312566,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_6027,Blanchardstown,105322566,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_6028,Blanchardstown,105432566,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_6029,Blanchardstown,105542566,0,4376_7778022_104130,4376_76 -4289_75960,261,4376_603,Dublin Airport,105321371,1,4376_7778022_103502,4376_3 -4289_75970,264,4376_6030,Blanchardstown,105652566,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_6031,Blanchardstown,105812566,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_6032,Blanchardstown,105822566,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_6033,Blanchardstown,106052566,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_6034,Blanchardstown,106142566,0,4376_7778022_104130,4376_76 -4289_75970,269,4376_6035,Blanchardstown,106232566,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_6036,Blanchardstown,105765306,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_6037,Blanchardstown,105277978,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_6038,Blanchardstown,105247978,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_6039,Blanchardstown,105237978,0,4376_7778022_104020,4376_76 -4289_75960,262,4376_604,Dublin Airport,105431371,1,4376_7778022_103502,4376_3 -4289_75970,115,4376_6040,Blanchardstown,105217978,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_6041,Blanchardstown,105312692,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_6042,Blanchardstown,105322692,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_6043,Blanchardstown,105432692,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_6044,Blanchardstown,105542692,0,4376_7778022_104130,4376_76 -4289_75970,264,4376_6045,Blanchardstown,105652692,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_6046,Blanchardstown,105812692,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_6047,Blanchardstown,105822692,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_6048,Blanchardstown,106052692,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_6049,Blanchardstown,106142692,0,4376_7778022_104130,4376_76 -4289_75960,263,4376_605,Dublin Airport,105541371,1,4376_7778022_103502,4376_3 -4289_75970,269,4376_6050,Blanchardstown,106232692,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_6051,Blanchardstown,105765392,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_6052,Blanchardstown,105278056,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_6053,Blanchardstown,105248056,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_6054,Blanchardstown,105238056,0,4376_7778022_104020,4376_76 -4289_75970,115,4376_6055,Blanchardstown,105218056,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_6056,Blanchardstown,105312788,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_6057,Blanchardstown,105322788,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_6058,Blanchardstown,105432788,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_6059,Blanchardstown,105542788,0,4376_7778022_104130,4376_76 -4289_75960,264,4376_606,Dublin Airport,105651371,1,4376_7778022_103502,4376_3 -4289_75970,264,4376_6060,Blanchardstown,105652788,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_6061,Blanchardstown,105812788,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_6062,Blanchardstown,105822788,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_6063,Blanchardstown,106052788,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_6064,Blanchardstown,106142788,0,4376_7778022_104130,4376_76 -4289_75970,269,4376_6065,Blanchardstown,106232788,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_6066,Blanchardstown,105765480,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_6067,Blanchardstown,105278134,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_6068,Blanchardstown,105248134,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_6069,Blanchardstown,105238134,0,4376_7778022_104020,4376_76 -4289_75960,265,4376_607,Dublin Airport,105811371,1,4376_7778022_103502,4376_3 -4289_75970,115,4376_6070,Blanchardstown,105218134,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_6071,Blanchardstown,105312882,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_6072,Blanchardstown,105322882,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_6073,Blanchardstown,105432882,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_6074,Blanchardstown,105542882,0,4376_7778022_104130,4376_76 -4289_75970,264,4376_6075,Blanchardstown,105652882,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_6076,Blanchardstown,105812882,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_6077,Blanchardstown,105822882,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_6078,Blanchardstown,106052882,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_6079,Blanchardstown,106142882,0,4376_7778022_104130,4376_76 -4289_75960,266,4376_608,Dublin Airport,105821371,1,4376_7778022_103502,4376_3 -4289_75970,269,4376_6080,Blanchardstown,106232882,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_6081,Blanchardstown,105765564,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_6082,Blanchardstown,105278210,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_6083,Blanchardstown,105248210,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_6084,Blanchardstown,105238210,0,4376_7778022_104020,4376_76 -4289_75970,115,4376_6085,Blanchardstown,105218210,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_6086,Blanchardstown,105312970,0,4376_7778022_104130,4376_76 -4289_75970,261,4376_6087,Blanchardstown,105322970,0,4376_7778022_104130,4376_76 -4289_75970,262,4376_6088,Blanchardstown,105432970,0,4376_7778022_104130,4376_76 -4289_75970,263,4376_6089,Blanchardstown,105542970,0,4376_7778022_104130,4376_76 -4289_75960,267,4376_609,Dublin Airport,106051371,1,4376_7778022_103502,4376_3 -4289_75970,264,4376_6090,Blanchardstown,105652970,0,4376_7778022_104130,4376_76 -4289_75970,265,4376_6091,Blanchardstown,105812970,0,4376_7778022_104130,4376_76 -4289_75970,266,4376_6092,Blanchardstown,105822970,0,4376_7778022_104130,4376_76 -4289_75970,267,4376_6093,Blanchardstown,106052970,0,4376_7778022_104130,4376_76 -4289_75970,268,4376_6094,Blanchardstown,106142970,0,4376_7778022_104130,4376_76 -4289_75970,269,4376_6095,Blanchardstown,106232970,0,4376_7778022_104130,4376_76 -4289_75970,259,4376_6096,Blanchardstown,105765642,0,4376_7778022_104050,4376_76 -4289_75970,270,4376_6097,Blanchardstown,105278282,0,4376_7778022_104020,4376_76 -4289_75970,146,4376_6098,Blanchardstown,105248282,0,4376_7778022_104020,4376_76 -4289_75970,271,4376_6099,Blanchardstown,105238282,0,4376_7778022_104020,4376_76 -4289_75960,265,4376_61,Sutton Station,105811314,0,4376_7778022_103503,4376_1 -4289_75960,268,4376_610,Dublin Airport,106141371,1,4376_7778022_103502,4376_3 -4289_75970,115,4376_6100,Blanchardstown,105218282,0,4376_7778022_104020,4376_76 -4289_75970,260,4376_6101,Dunboyne,105311153,1,4376_7778022_100191,4376_77 -4289_75970,261,4376_6102,Dunboyne,105321153,1,4376_7778022_100191,4376_77 -4289_75970,262,4376_6103,Dunboyne,105431153,1,4376_7778022_100191,4376_77 -4289_75970,263,4376_6104,Dunboyne,105541153,1,4376_7778022_100191,4376_77 -4289_75970,264,4376_6105,Dunboyne,105651153,1,4376_7778022_100191,4376_77 -4289_75970,265,4376_6106,Dunboyne,105811153,1,4376_7778022_100191,4376_77 -4289_75970,266,4376_6107,Dunboyne,105821153,1,4376_7778022_100191,4376_77 -4289_75970,267,4376_6108,Dunboyne,106051153,1,4376_7778022_100191,4376_77 -4289_75970,268,4376_6109,Dunboyne,106141153,1,4376_7778022_100191,4376_77 -4289_75960,269,4376_611,Dublin Airport,106231371,1,4376_7778022_103502,4376_3 -4289_75970,269,4376_6110,Dunboyne,106231153,1,4376_7778022_100191,4376_77 -4289_75970,259,4376_6111,Dunboyne,105764099,1,4376_7778022_104050,4376_77 -4289_75970,260,4376_6112,Dunboyne,105311289,1,4376_7778022_100191,4376_77 -4289_75970,261,4376_6113,Dunboyne,105321289,1,4376_7778022_100191,4376_77 -4289_75970,262,4376_6114,Dunboyne,105431289,1,4376_7778022_100191,4376_77 -4289_75970,263,4376_6115,Dunboyne,105541289,1,4376_7778022_100191,4376_77 -4289_75970,264,4376_6116,Dunboyne,105651289,1,4376_7778022_100191,4376_77 -4289_75970,265,4376_6117,Dunboyne,105811289,1,4376_7778022_100191,4376_77 -4289_75970,266,4376_6118,Dunboyne,105821289,1,4376_7778022_100191,4376_77 -4289_75970,267,4376_6119,Dunboyne,106051289,1,4376_7778022_100191,4376_77 -4289_75960,259,4376_612,Dublin Airport,105764277,1,4376_7778022_103502,4376_3 -4289_75970,268,4376_6120,Dunboyne,106141289,1,4376_7778022_100191,4376_77 -4289_75970,269,4376_6121,Dunboyne,106231289,1,4376_7778022_100191,4376_77 -4289_75970,259,4376_6122,Dunboyne,105764183,1,4376_7778022_104050,4376_78 -4289_75970,270,4376_6123,Dunboyne,105277041,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6124,Dunboyne,105247041,1,4376_7778022_104020,4376_77 -4289_75970,271,4376_6125,Dunboyne,105237041,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6126,Dunboyne,105217041,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6127,Dunboyne,105311429,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6128,Dunboyne,105321429,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6129,Dunboyne,105431429,1,4376_7778022_104130,4376_77 -4289_75960,270,4376_613,Dublin Airport,105277099,1,4376_7778022_103103,4376_4 -4289_75970,263,4376_6130,Dunboyne,105541429,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6131,Dunboyne,105651429,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6132,Dunboyne,105811429,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6133,Dunboyne,105821429,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6134,Dunboyne,106051429,1,4376_7778022_104130,4376_77 -4289_75970,268,4376_6135,Dunboyne,106141429,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6136,Dunboyne,106231429,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6137,Dunboyne,105764299,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6138,Dunboyne,105277107,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6139,Dunboyne,105247107,1,4376_7778022_104020,4376_77 -4289_75960,146,4376_614,Dublin Airport,105247099,1,4376_7778022_103103,4376_4 -4289_75970,271,4376_6140,Dunboyne,105237107,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6141,Dunboyne,105217107,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6142,Dunboyne,105311541,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6143,Dunboyne,105321541,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6144,Dunboyne,105431541,1,4376_7778022_104130,4376_77 -4289_75970,263,4376_6145,Dunboyne,105541541,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6146,Dunboyne,105651541,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6147,Dunboyne,105811541,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6148,Dunboyne,105821541,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6149,Dunboyne,106051541,1,4376_7778022_104130,4376_77 -4289_75960,271,4376_615,Dublin Airport,105237099,1,4376_7778022_103103,4376_4 -4289_75970,268,4376_6150,Dunboyne,106141541,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6151,Dunboyne,106231541,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6152,Dunboyne,105764399,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6153,Dunboyne,105277197,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6154,Dunboyne,105247197,1,4376_7778022_104020,4376_77 -4289_75970,271,4376_6155,Dunboyne,105237197,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6156,Dunboyne,105217197,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6157,Dunboyne,105311647,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6158,Dunboyne,105321647,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6159,Dunboyne,105431647,1,4376_7778022_104130,4376_77 -4289_75960,115,4376_616,Dublin Airport,105217099,1,4376_7778022_103103,4376_4 -4289_75970,263,4376_6160,Dunboyne,105541647,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6161,Dunboyne,105651647,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6162,Dunboyne,105811647,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6163,Dunboyne,105821647,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6164,Dunboyne,106051647,1,4376_7778022_104130,4376_77 -4289_75970,268,4376_6165,Dunboyne,106141647,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6166,Dunboyne,106231647,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6167,Dunboyne,105764497,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6168,Dunboyne,105277285,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6169,Dunboyne,105247285,1,4376_7778022_104020,4376_77 -4289_75960,260,4376_617,Dublin Airport,105311423,1,4376_7778022_103503,4376_3 -4289_75970,271,4376_6170,Dunboyne,105237285,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6171,Dunboyne,105217285,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6172,Dunboyne,105311757,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6173,Dunboyne,105321757,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6174,Dunboyne,105431757,1,4376_7778022_104130,4376_77 -4289_75970,263,4376_6175,Dunboyne,105541757,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6176,Dunboyne,105651757,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6177,Dunboyne,105811757,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6178,Dunboyne,105821757,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6179,Dunboyne,106051757,1,4376_7778022_104130,4376_77 -4289_75960,261,4376_618,Dublin Airport,105321423,1,4376_7778022_103503,4376_3 -4289_75970,268,4376_6180,Dunboyne,106141757,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6181,Dunboyne,106231757,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6182,Dunboyne,105764599,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6183,Dunboyne,105277369,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6184,Dunboyne,105247369,1,4376_7778022_104020,4376_77 -4289_75970,271,4376_6185,Dunboyne,105237369,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6186,Dunboyne,105217369,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6187,Dunboyne,105311875,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6188,Dunboyne,105321875,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6189,Dunboyne,105431875,1,4376_7778022_104130,4376_77 -4289_75960,262,4376_619,Dublin Airport,105431423,1,4376_7778022_103503,4376_3 -4289_75970,263,4376_6190,Dunboyne,105541875,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6191,Dunboyne,105651875,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6192,Dunboyne,105811875,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6193,Dunboyne,105821875,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6194,Dunboyne,106051875,1,4376_7778022_104130,4376_77 -4289_75970,268,4376_6195,Dunboyne,106141875,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6196,Dunboyne,106231875,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6197,Dunboyne,105764703,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6198,Dunboyne,105277461,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6199,Dunboyne,105247461,1,4376_7778022_104020,4376_77 -4289_75960,266,4376_62,Sutton Station,105821314,0,4376_7778022_103503,4376_1 -4289_75960,263,4376_620,Dublin Airport,105541423,1,4376_7778022_103503,4376_3 -4289_75970,271,4376_6200,Dunboyne,105237461,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6201,Dunboyne,105217461,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6202,Dunboyne,105311981,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6203,Dunboyne,105321981,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6204,Dunboyne,105431981,1,4376_7778022_104130,4376_77 -4289_75970,263,4376_6205,Dunboyne,105541981,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6206,Dunboyne,105651981,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6207,Dunboyne,105811981,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6208,Dunboyne,105821981,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6209,Dunboyne,106051981,1,4376_7778022_104130,4376_77 -4289_75960,264,4376_621,Dublin Airport,105651423,1,4376_7778022_103503,4376_3 -4289_75970,268,4376_6210,Dunboyne,106141981,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6211,Dunboyne,106231981,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6212,Dunboyne,105764805,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6213,Dunboyne,105277551,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6214,Dunboyne,105247551,1,4376_7778022_104020,4376_77 -4289_75970,271,4376_6215,Dunboyne,105237551,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6216,Dunboyne,105217551,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6217,Dunboyne,105312097,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6218,Dunboyne,105322097,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6219,Dunboyne,105432097,1,4376_7778022_104130,4376_77 -4289_75960,265,4376_622,Dublin Airport,105811423,1,4376_7778022_103503,4376_3 -4289_75970,263,4376_6220,Dunboyne,105542097,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6221,Dunboyne,105652097,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6222,Dunboyne,105812097,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6223,Dunboyne,105822097,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6224,Dunboyne,106052097,1,4376_7778022_104130,4376_77 -4289_75970,268,4376_6225,Dunboyne,106142097,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6226,Dunboyne,106232097,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6227,Dunboyne,105764907,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6228,Dunboyne,105277641,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6229,Dunboyne,105247641,1,4376_7778022_104020,4376_77 -4289_75960,266,4376_623,Dublin Airport,105821423,1,4376_7778022_103503,4376_3 -4289_75970,271,4376_6230,Dunboyne,105237641,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6231,Dunboyne,105217641,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6232,Dunboyne,105312261,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6233,Dunboyne,105322261,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6234,Dunboyne,105432261,1,4376_7778022_104130,4376_77 -4289_75970,263,4376_6235,Dunboyne,105542261,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6236,Dunboyne,105652261,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6237,Dunboyne,105812261,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6238,Dunboyne,105822261,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6239,Dunboyne,106052261,1,4376_7778022_104130,4376_77 -4289_75960,267,4376_624,Dublin Airport,106051423,1,4376_7778022_103503,4376_3 -4289_75970,268,4376_6240,Dunboyne,106142261,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6241,Dunboyne,106232261,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6242,Dunboyne,105765009,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6243,Dunboyne,105277731,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6244,Dunboyne,105247731,1,4376_7778022_104020,4376_77 -4289_75970,271,4376_6245,Dunboyne,105237731,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6246,Dunboyne,105217731,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6247,Dunboyne,105312375,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6248,Dunboyne,105322375,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6249,Dunboyne,105432375,1,4376_7778022_104130,4376_77 -4289_75960,268,4376_625,Dublin Airport,106141423,1,4376_7778022_103503,4376_3 -4289_75970,263,4376_6250,Dunboyne,105542375,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6251,Dunboyne,105652375,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6252,Dunboyne,105812375,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6253,Dunboyne,105822375,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6254,Dunboyne,106052375,1,4376_7778022_104130,4376_77 -4289_75970,268,4376_6255,Dunboyne,106142375,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6256,Dunboyne,106232375,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6257,Dunboyne,105765111,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6258,Dunboyne,105277821,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6259,Dunboyne,105247821,1,4376_7778022_104020,4376_77 -4289_75960,269,4376_626,Dublin Airport,106231423,1,4376_7778022_103503,4376_3 -4289_75970,271,4376_6260,Dunboyne,105237821,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6261,Dunboyne,105217821,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6262,Dunboyne,105312487,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6263,Dunboyne,105322487,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6264,Dunboyne,105432487,1,4376_7778022_104130,4376_77 -4289_75970,263,4376_6265,Dunboyne,105542487,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6266,Dunboyne,105652487,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6267,Dunboyne,105812487,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6268,Dunboyne,105822487,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6269,Dunboyne,106052487,1,4376_7778022_104130,4376_77 -4289_75960,260,4376_627,Dublin Airport,105311473,1,4376_7778022_103107,4376_3 -4289_75970,268,4376_6270,Dunboyne,106142487,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6271,Dunboyne,106232487,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6272,Dunboyne,105765227,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6273,Dunboyne,105277919,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6274,Dunboyne,105247919,1,4376_7778022_104020,4376_77 -4289_75970,271,4376_6275,Dunboyne,105237919,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6276,Dunboyne,105217919,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6277,Dunboyne,105312613,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6278,Dunboyne,105322613,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6279,Dunboyne,105432613,1,4376_7778022_104130,4376_77 -4289_75960,261,4376_628,Dublin Airport,105321473,1,4376_7778022_103107,4376_3 -4289_75970,263,4376_6280,Dunboyne,105542613,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6281,Dunboyne,105652613,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6282,Dunboyne,105812613,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6283,Dunboyne,105822613,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6284,Dunboyne,106052613,1,4376_7778022_104130,4376_77 -4289_75970,268,4376_6285,Dunboyne,106142613,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6286,Dunboyne,106232613,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6287,Dunboyne,105765341,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6288,Dunboyne,105278023,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6289,Dunboyne,105248023,1,4376_7778022_104020,4376_77 -4289_75960,262,4376_629,Dublin Airport,105431473,1,4376_7778022_103107,4376_3 -4289_75970,271,4376_6290,Dunboyne,105238023,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6291,Dunboyne,105218023,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6292,Dunboyne,105312725,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6293,Dunboyne,105322725,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6294,Dunboyne,105432725,1,4376_7778022_104130,4376_77 -4289_75970,263,4376_6295,Dunboyne,105542725,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6296,Dunboyne,105652725,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6297,Dunboyne,105812725,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6298,Dunboyne,105822725,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6299,Dunboyne,106052725,1,4376_7778022_104130,4376_77 -4289_75960,267,4376_63,Sutton Station,106051314,0,4376_7778022_103503,4376_1 -4289_75960,263,4376_630,Dublin Airport,105541473,1,4376_7778022_103107,4376_3 -4289_75970,268,4376_6300,Dunboyne,106142725,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6301,Dunboyne,106232725,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6302,Dunboyne,105765427,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6303,Dunboyne,105278103,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6304,Dunboyne,105248103,1,4376_7778022_104020,4376_77 -4289_75970,271,4376_6305,Dunboyne,105238103,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6306,Dunboyne,105218103,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6307,Dunboyne,105312823,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6308,Dunboyne,105322823,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6309,Dunboyne,105432823,1,4376_7778022_104130,4376_77 -4289_75960,264,4376_631,Dublin Airport,105651473,1,4376_7778022_103107,4376_3 -4289_75970,263,4376_6310,Dunboyne,105542823,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6311,Dunboyne,105652823,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6312,Dunboyne,105812823,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6313,Dunboyne,105822823,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6314,Dunboyne,106052823,1,4376_7778022_104130,4376_77 -4289_75970,268,4376_6315,Dunboyne,106142823,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6316,Dunboyne,106232823,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6317,Dunboyne,105765515,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6318,Dunboyne,105278183,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6319,Dunboyne,105248183,1,4376_7778022_104020,4376_77 -4289_75960,265,4376_632,Dublin Airport,105811473,1,4376_7778022_103107,4376_3 -4289_75970,271,4376_6320,Dunboyne,105238183,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6321,Dunboyne,105218183,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6322,Dunboyne,105312917,1,4376_7778022_104130,4376_77 -4289_75970,261,4376_6323,Dunboyne,105322917,1,4376_7778022_104130,4376_77 -4289_75970,262,4376_6324,Dunboyne,105432917,1,4376_7778022_104130,4376_77 -4289_75970,263,4376_6325,Dunboyne,105542917,1,4376_7778022_104130,4376_77 -4289_75970,264,4376_6326,Dunboyne,105652917,1,4376_7778022_104130,4376_77 -4289_75970,265,4376_6327,Dunboyne,105812917,1,4376_7778022_104130,4376_77 -4289_75970,266,4376_6328,Dunboyne,105822917,1,4376_7778022_104130,4376_77 -4289_75970,267,4376_6329,Dunboyne,106052917,1,4376_7778022_104130,4376_77 -4289_75960,266,4376_633,Dublin Airport,105821473,1,4376_7778022_103107,4376_3 -4289_75970,268,4376_6330,Dunboyne,106142917,1,4376_7778022_104130,4376_77 -4289_75970,269,4376_6331,Dunboyne,106232917,1,4376_7778022_104130,4376_77 -4289_75970,259,4376_6332,Dunboyne,105765599,1,4376_7778022_104050,4376_77 -4289_75970,270,4376_6333,Dunboyne,105278259,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6334,Dunboyne,105248259,1,4376_7778022_104020,4376_77 -4289_75970,271,4376_6335,Dunboyne,105238259,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6336,Dunboyne,105218259,1,4376_7778022_104020,4376_77 -4289_75970,260,4376_6337,Dunboyne,105312993,1,4376_7778022_104170,4376_77 -4289_75970,261,4376_6338,Dunboyne,105322993,1,4376_7778022_104170,4376_77 -4289_75970,262,4376_6339,Dunboyne,105432993,1,4376_7778022_104170,4376_77 -4289_75960,267,4376_634,Dublin Airport,106051473,1,4376_7778022_103107,4376_3 -4289_75970,263,4376_6340,Dunboyne,105542993,1,4376_7778022_104170,4376_77 -4289_75970,264,4376_6341,Dunboyne,105652993,1,4376_7778022_104170,4376_77 -4289_75970,265,4376_6342,Dunboyne,105812993,1,4376_7778022_104170,4376_77 -4289_75970,266,4376_6343,Dunboyne,105822993,1,4376_7778022_104170,4376_77 -4289_75970,267,4376_6344,Dunboyne,106052993,1,4376_7778022_104170,4376_77 -4289_75970,268,4376_6345,Dunboyne,106142993,1,4376_7778022_104170,4376_77 -4289_75970,269,4376_6346,Dunboyne,106232993,1,4376_7778022_104170,4376_77 -4289_75970,259,4376_6347,Dunboyne,105765669,1,4376_7778022_104100,4376_77 -4289_75970,270,4376_6348,Dunboyne,105278323,1,4376_7778022_104020,4376_77 -4289_75970,146,4376_6349,Dunboyne,105248323,1,4376_7778022_104020,4376_77 -4289_75960,268,4376_635,Dublin Airport,106141473,1,4376_7778022_103107,4376_3 -4289_75970,271,4376_6350,Dunboyne,105238323,1,4376_7778022_104020,4376_77 -4289_75970,115,4376_6351,Dunboyne,105218323,1,4376_7778022_104020,4376_77 -4289_75996,260,4376_6352,Castleknock College,105311340,0,4376_7778022_109109,4376_79 -4289_75996,261,4376_6353,Castleknock College,105321340,0,4376_7778022_109109,4376_79 -4289_75996,262,4376_6354,Castleknock College,105431342,0,4376_7778022_109309,4376_79 -4289_75996,263,4376_6355,Castleknock College,105541344,0,4376_7778022_109409,4376_79 -4289_75996,264,4376_6356,Castleknock College,105651346,0,4376_7778022_109509,4376_79 -4289_75996,262,4376_6357,Littlepace Park,105431785,1,4376_7778022_109308,4376_80 -4289_75996,260,4376_6358,Littlepace Park,105312239,1,4376_7778022_109106,4376_80 -4289_75996,261,4376_6359,Littlepace Park,105322239,1,4376_7778022_109106,4376_80 -4289_75960,269,4376_636,Dublin Airport,106231473,1,4376_7778022_103107,4376_3 -4289_75996,263,4376_6360,Littlepace Park,105542241,1,4376_7778022_109407,4376_80 -4289_75996,264,4376_6361,Littlepace Park,105652243,1,4376_7778022_109507,4376_80 -4289_75971,260,4376_6362,Balbriggan,105311048,0,4376_7778022_103103,4376_81 -4289_75971,261,4376_6363,Balbriggan,105321048,0,4376_7778022_103103,4376_81 -4289_75971,262,4376_6364,Balbriggan,105431048,0,4376_7778022_103103,4376_81 -4289_75971,263,4376_6365,Balbriggan,105541048,0,4376_7778022_103103,4376_81 -4289_75971,264,4376_6366,Balbriggan,105651048,0,4376_7778022_103103,4376_81 -4289_75971,265,4376_6367,Balbriggan,105811048,0,4376_7778022_103103,4376_81 -4289_75971,266,4376_6368,Balbriggan,105821048,0,4376_7778022_103103,4376_81 -4289_75971,267,4376_6369,Balbriggan,106051048,0,4376_7778022_103103,4376_81 -4289_75960,259,4376_637,Dublin Airport,105764333,1,4376_7778022_103104,4376_4 -4289_75971,268,4376_6370,Balbriggan,106141048,0,4376_7778022_103103,4376_81 -4289_75971,269,4376_6371,Balbriggan,106231048,0,4376_7778022_103103,4376_81 -4289_75971,260,4376_6372,Skerries,105311108,0,4376_7778022_103109,4376_82 -4289_75971,261,4376_6373,Skerries,105321108,0,4376_7778022_103109,4376_82 -4289_75971,262,4376_6374,Skerries,105431108,0,4376_7778022_103109,4376_82 -4289_75971,263,4376_6375,Skerries,105541108,0,4376_7778022_103109,4376_82 -4289_75971,264,4376_6376,Skerries,105651108,0,4376_7778022_103109,4376_82 -4289_75971,265,4376_6377,Skerries,105811108,0,4376_7778022_103109,4376_82 -4289_75971,266,4376_6378,Skerries,105821108,0,4376_7778022_103109,4376_82 -4289_75971,267,4376_6379,Skerries,106051108,0,4376_7778022_103109,4376_82 -4289_75960,270,4376_638,Dublin Airport,105277139,1,4376_7778022_103502,4376_5 -4289_75971,268,4376_6380,Skerries,106141108,0,4376_7778022_103109,4376_82 -4289_75971,269,4376_6381,Skerries,106231108,0,4376_7778022_103109,4376_82 -4289_75971,259,4376_6382,Skerries,105764106,0,4376_7778022_103106,4376_82 -4289_75971,260,4376_6383,Balbriggan,105311218,0,4376_7778022_103101,4376_81 -4289_75971,261,4376_6384,Balbriggan,105321218,0,4376_7778022_103101,4376_81 -4289_75971,262,4376_6385,Balbriggan,105431218,0,4376_7778022_103101,4376_81 -4289_75971,263,4376_6386,Balbriggan,105541218,0,4376_7778022_103101,4376_81 -4289_75971,264,4376_6387,Balbriggan,105651218,0,4376_7778022_103101,4376_81 -4289_75971,265,4376_6388,Balbriggan,105811218,0,4376_7778022_103101,4376_81 -4289_75971,266,4376_6389,Balbriggan,105821218,0,4376_7778022_103101,4376_81 -4289_75960,146,4376_639,Dublin Airport,105247139,1,4376_7778022_103502,4376_5 -4289_75971,267,4376_6390,Balbriggan,106051218,0,4376_7778022_103101,4376_81 -4289_75971,268,4376_6391,Balbriggan,106141218,0,4376_7778022_103101,4376_81 -4289_75971,269,4376_6392,Balbriggan,106231218,0,4376_7778022_103101,4376_81 -4289_75971,259,4376_6393,Balbriggan,105764156,0,4376_7778022_103103,4376_81 -4289_75971,260,4376_6394,Skerries,105311366,0,4376_7778022_103104,4376_82 -4289_75971,261,4376_6395,Skerries,105321366,0,4376_7778022_103104,4376_82 -4289_75971,262,4376_6396,Skerries,105431366,0,4376_7778022_103104,4376_82 -4289_75971,263,4376_6397,Skerries,105541366,0,4376_7778022_103104,4376_82 -4289_75971,264,4376_6398,Skerries,105651366,0,4376_7778022_103104,4376_82 -4289_75971,265,4376_6399,Skerries,105811366,0,4376_7778022_103104,4376_82 -4289_75960,268,4376_64,Sutton Station,106141314,0,4376_7778022_103503,4376_1 -4289_75960,271,4376_640,Dublin Airport,105237139,1,4376_7778022_103502,4376_5 -4289_75971,266,4376_6400,Skerries,105821366,0,4376_7778022_103104,4376_82 -4289_75971,267,4376_6401,Skerries,106051366,0,4376_7778022_103104,4376_82 -4289_75971,268,4376_6402,Skerries,106141366,0,4376_7778022_103104,4376_82 -4289_75971,269,4376_6403,Skerries,106231366,0,4376_7778022_103104,4376_82 -4289_75971,259,4376_6404,Skerries,105764212,0,4376_7778022_103105,4376_82 -4289_75971,260,4376_6405,Balbriggan,105311454,0,4376_7778022_103106,4376_81 -4289_75971,261,4376_6406,Balbriggan,105321454,0,4376_7778022_103106,4376_81 -4289_75971,262,4376_6407,Balbriggan,105431454,0,4376_7778022_103106,4376_81 -4289_75971,263,4376_6408,Balbriggan,105541454,0,4376_7778022_103106,4376_81 -4289_75971,264,4376_6409,Balbriggan,105651454,0,4376_7778022_103106,4376_81 -4289_75960,115,4376_641,Dublin Airport,105217139,1,4376_7778022_103502,4376_5 -4289_75971,265,4376_6410,Balbriggan,105811454,0,4376_7778022_103106,4376_81 -4289_75971,266,4376_6411,Balbriggan,105821454,0,4376_7778022_103106,4376_81 -4289_75971,267,4376_6412,Balbriggan,106051454,0,4376_7778022_103106,4376_81 -4289_75971,268,4376_6413,Balbriggan,106141454,0,4376_7778022_103106,4376_81 -4289_75971,269,4376_6414,Balbriggan,106231454,0,4376_7778022_103106,4376_81 -4289_75971,259,4376_6415,Balbriggan,105764288,0,4376_7778022_103106,4376_81 -4289_75971,260,4376_6416,Skerries,105311524,0,4376_7778022_103103,4376_82 -4289_75971,261,4376_6417,Skerries,105321524,0,4376_7778022_103103,4376_82 -4289_75971,262,4376_6418,Skerries,105431524,0,4376_7778022_103103,4376_82 -4289_75971,263,4376_6419,Skerries,105541524,0,4376_7778022_103103,4376_82 -4289_75960,260,4376_642,Dublin Airport,105311527,1,4376_7778022_103102,4376_3 -4289_75971,264,4376_6420,Skerries,105651524,0,4376_7778022_103103,4376_82 -4289_75971,265,4376_6421,Skerries,105811524,0,4376_7778022_103103,4376_82 -4289_75971,266,4376_6422,Skerries,105821524,0,4376_7778022_103103,4376_82 -4289_75971,267,4376_6423,Skerries,106051524,0,4376_7778022_103103,4376_82 -4289_75971,268,4376_6424,Skerries,106141524,0,4376_7778022_103103,4376_82 -4289_75971,269,4376_6425,Skerries,106231524,0,4376_7778022_103103,4376_82 -4289_75971,259,4376_6426,Skerries,105764350,0,4376_7778022_103108,4376_83 -4289_75971,270,4376_6427,Skerries,105277148,0,4376_7778022_103102,4376_82 -4289_75971,146,4376_6428,Skerries,105247148,0,4376_7778022_103102,4376_82 -4289_75971,271,4376_6429,Skerries,105237148,0,4376_7778022_103102,4376_82 -4289_75960,261,4376_643,Dublin Airport,105321527,1,4376_7778022_103102,4376_3 -4289_75971,115,4376_6430,Skerries,105217148,0,4376_7778022_103102,4376_82 -4289_75971,260,4376_6431,Balbriggan,105311614,0,4376_7778022_103101,4376_81 -4289_75971,261,4376_6432,Balbriggan,105321614,0,4376_7778022_103101,4376_81 -4289_75971,262,4376_6433,Balbriggan,105431614,0,4376_7778022_103101,4376_81 -4289_75971,263,4376_6434,Balbriggan,105541614,0,4376_7778022_103101,4376_81 -4289_75971,264,4376_6435,Balbriggan,105651614,0,4376_7778022_103101,4376_81 -4289_75971,265,4376_6436,Balbriggan,105811614,0,4376_7778022_103101,4376_81 -4289_75971,266,4376_6437,Balbriggan,105821614,0,4376_7778022_103101,4376_81 -4289_75971,267,4376_6438,Balbriggan,106051614,0,4376_7778022_103101,4376_81 -4289_75971,268,4376_6439,Balbriggan,106141614,0,4376_7778022_103101,4376_81 -4289_75960,262,4376_644,Dublin Airport,105431527,1,4376_7778022_103102,4376_3 -4289_75971,269,4376_6440,Balbriggan,106231614,0,4376_7778022_103101,4376_81 -4289_75971,259,4376_6441,Balbriggan,105764442,0,4376_7778022_103502,4376_84 -4289_75971,270,4376_6442,Balbriggan,105277226,0,4376_7778022_103104,4376_81 -4289_75971,146,4376_6443,Balbriggan,105247226,0,4376_7778022_103104,4376_81 -4289_75971,271,4376_6444,Balbriggan,105237226,0,4376_7778022_103104,4376_81 -4289_75971,115,4376_6445,Balbriggan,105217226,0,4376_7778022_103104,4376_81 -4289_75971,260,4376_6446,Skerries,105311684,0,4376_7778022_103503,4376_82 -4289_75971,261,4376_6447,Skerries,105321684,0,4376_7778022_103503,4376_82 -4289_75971,262,4376_6448,Skerries,105431684,0,4376_7778022_103503,4376_82 -4289_75971,263,4376_6449,Skerries,105541684,0,4376_7778022_103503,4376_82 -4289_75960,263,4376_645,Dublin Airport,105541527,1,4376_7778022_103102,4376_3 -4289_75971,264,4376_6450,Skerries,105651684,0,4376_7778022_103503,4376_82 -4289_75971,265,4376_6451,Skerries,105811684,0,4376_7778022_103503,4376_82 -4289_75971,266,4376_6452,Skerries,105821684,0,4376_7778022_103503,4376_82 -4289_75971,267,4376_6453,Skerries,106051684,0,4376_7778022_103503,4376_82 -4289_75971,268,4376_6454,Skerries,106141684,0,4376_7778022_103503,4376_82 -4289_75971,269,4376_6455,Skerries,106231684,0,4376_7778022_103503,4376_82 -4289_75971,259,4376_6456,Skerries,105764504,0,4376_7778022_103104,4376_83 -4289_75971,270,4376_6457,Skerries,105277284,0,4376_7778022_103105,4376_82 -4289_75971,146,4376_6458,Skerries,105247284,0,4376_7778022_103105,4376_82 -4289_75971,271,4376_6459,Skerries,105237284,0,4376_7778022_103105,4376_82 -4289_75960,264,4376_646,Dublin Airport,105651527,1,4376_7778022_103102,4376_3 -4289_75971,115,4376_6460,Skerries,105217284,0,4376_7778022_103105,4376_82 -4289_75971,260,4376_6461,Balbriggan,105311776,0,4376_7778022_103107,4376_81 -4289_75971,261,4376_6462,Balbriggan,105321776,0,4376_7778022_103107,4376_81 -4289_75971,262,4376_6463,Balbriggan,105431776,0,4376_7778022_103107,4376_81 -4289_75971,263,4376_6464,Balbriggan,105541776,0,4376_7778022_103107,4376_81 -4289_75971,264,4376_6465,Balbriggan,105651776,0,4376_7778022_103107,4376_81 -4289_75971,265,4376_6466,Balbriggan,105811776,0,4376_7778022_103107,4376_81 -4289_75971,266,4376_6467,Balbriggan,105821776,0,4376_7778022_103107,4376_81 -4289_75971,267,4376_6468,Balbriggan,106051776,0,4376_7778022_103107,4376_81 -4289_75971,268,4376_6469,Balbriggan,106141776,0,4376_7778022_103107,4376_81 -4289_75960,265,4376_647,Dublin Airport,105811527,1,4376_7778022_103102,4376_3 -4289_75971,269,4376_6470,Balbriggan,106231776,0,4376_7778022_103107,4376_81 -4289_75971,259,4376_6471,Balbriggan,105764592,0,4376_7778022_103501,4376_84 -4289_75971,270,4376_6472,Balbriggan,105277352,0,4376_7778022_103106,4376_85 -4289_75971,146,4376_6473,Balbriggan,105247352,0,4376_7778022_103106,4376_85 -4289_75971,271,4376_6474,Balbriggan,105237352,0,4376_7778022_103106,4376_85 -4289_75971,115,4376_6475,Balbriggan,105217352,0,4376_7778022_103106,4376_85 -4289_75971,260,4376_6476,Skerries,105311848,0,4376_7778022_103501,4376_82 -4289_75971,261,4376_6477,Skerries,105321848,0,4376_7778022_103501,4376_82 -4289_75971,262,4376_6478,Skerries,105431848,0,4376_7778022_103501,4376_82 -4289_75971,263,4376_6479,Skerries,105541848,0,4376_7778022_103501,4376_82 -4289_75960,266,4376_648,Dublin Airport,105821527,1,4376_7778022_103102,4376_3 -4289_75971,264,4376_6480,Skerries,105651848,0,4376_7778022_103501,4376_82 -4289_75971,265,4376_6481,Skerries,105811848,0,4376_7778022_103501,4376_82 -4289_75971,266,4376_6482,Skerries,105821848,0,4376_7778022_103501,4376_82 -4289_75971,267,4376_6483,Skerries,106051848,0,4376_7778022_103501,4376_82 -4289_75971,268,4376_6484,Skerries,106141848,0,4376_7778022_103501,4376_82 -4289_75971,269,4376_6485,Skerries,106231848,0,4376_7778022_103501,4376_82 -4289_75971,259,4376_6486,Skerries,105764658,0,4376_7778022_103101,4376_83 -4289_75971,270,4376_6487,Skerries,105277420,0,4376_7778022_103102,4376_82 -4289_75971,146,4376_6488,Skerries,105247420,0,4376_7778022_103102,4376_82 -4289_75971,271,4376_6489,Skerries,105237420,0,4376_7778022_103102,4376_82 -4289_75960,267,4376_649,Dublin Airport,106051527,1,4376_7778022_103102,4376_3 -4289_75971,115,4376_6490,Skerries,105217420,0,4376_7778022_103102,4376_82 -4289_75971,259,4376_6491,Balbriggan,105764726,0,4376_7778022_103502,4376_81 -4289_75971,260,4376_6492,Balbriggan,105311940,0,4376_7778022_103105,4376_81 -4289_75971,261,4376_6493,Balbriggan,105321940,0,4376_7778022_103105,4376_81 -4289_75971,262,4376_6494,Balbriggan,105431940,0,4376_7778022_103105,4376_81 -4289_75971,263,4376_6495,Balbriggan,105541940,0,4376_7778022_103105,4376_81 -4289_75971,264,4376_6496,Balbriggan,105651940,0,4376_7778022_103105,4376_81 -4289_75971,265,4376_6497,Balbriggan,105811940,0,4376_7778022_103105,4376_81 -4289_75971,266,4376_6498,Balbriggan,105821940,0,4376_7778022_103105,4376_81 -4289_75971,267,4376_6499,Balbriggan,106051940,0,4376_7778022_103105,4376_81 -4289_75960,269,4376_65,Sutton Station,106231314,0,4376_7778022_103503,4376_1 -4289_75960,268,4376_650,Dublin Airport,106141527,1,4376_7778022_103102,4376_3 -4289_75971,268,4376_6500,Balbriggan,106141940,0,4376_7778022_103105,4376_81 -4289_75971,269,4376_6501,Balbriggan,106231940,0,4376_7778022_103105,4376_81 -4289_75971,270,4376_6502,Balbriggan,105277488,0,4376_7778022_103502,4376_84 -4289_75971,146,4376_6503,Balbriggan,105247488,0,4376_7778022_103502,4376_84 -4289_75971,271,4376_6504,Balbriggan,105237488,0,4376_7778022_103502,4376_84 -4289_75971,115,4376_6505,Balbriggan,105217488,0,4376_7778022_103502,4376_84 -4289_75971,260,4376_6506,Skerries,105312012,0,4376_7778022_103102,4376_82 -4289_75971,261,4376_6507,Skerries,105322012,0,4376_7778022_103102,4376_82 -4289_75971,262,4376_6508,Skerries,105432012,0,4376_7778022_103102,4376_82 -4289_75971,263,4376_6509,Skerries,105542012,0,4376_7778022_103102,4376_82 -4289_75960,269,4376_651,Dublin Airport,106231527,1,4376_7778022_103102,4376_3 -4289_75971,264,4376_6510,Skerries,105652012,0,4376_7778022_103102,4376_82 -4289_75971,265,4376_6511,Skerries,105812012,0,4376_7778022_103102,4376_82 -4289_75971,266,4376_6512,Skerries,105822012,0,4376_7778022_103102,4376_82 -4289_75971,267,4376_6513,Skerries,106052012,0,4376_7778022_103102,4376_82 -4289_75971,268,4376_6514,Skerries,106142012,0,4376_7778022_103102,4376_82 -4289_75971,269,4376_6515,Skerries,106232012,0,4376_7778022_103102,4376_82 -4289_75971,259,4376_6516,Skerries,105764810,0,4376_7778022_103503,4376_83 -4289_75971,270,4376_6517,Skerries,105277556,0,4376_7778022_103503,4376_82 -4289_75971,146,4376_6518,Skerries,105247556,0,4376_7778022_103503,4376_82 -4289_75971,271,4376_6519,Skerries,105237556,0,4376_7778022_103503,4376_82 -4289_75960,259,4376_652,Dublin Airport,105764381,1,4376_7778022_103503,4376_4 -4289_75971,115,4376_6520,Skerries,105217556,0,4376_7778022_103503,4376_82 -4289_75971,259,4376_6521,Balbriggan,105764884,0,4376_7778022_103501,4376_81 -4289_75971,260,4376_6522,Balbriggan,105312124,0,4376_7778022_103107,4376_81 -4289_75971,261,4376_6523,Balbriggan,105322124,0,4376_7778022_103107,4376_81 -4289_75971,262,4376_6524,Balbriggan,105432124,0,4376_7778022_103107,4376_81 -4289_75971,263,4376_6525,Balbriggan,105542124,0,4376_7778022_103107,4376_81 -4289_75971,264,4376_6526,Balbriggan,105652124,0,4376_7778022_103107,4376_81 -4289_75971,265,4376_6527,Balbriggan,105812124,0,4376_7778022_103107,4376_81 -4289_75971,266,4376_6528,Balbriggan,105822124,0,4376_7778022_103107,4376_81 -4289_75971,267,4376_6529,Balbriggan,106052124,0,4376_7778022_103107,4376_81 -4289_75960,270,4376_653,Dublin Airport,105277179,1,4376_7778022_103105,4376_5 -4289_75971,268,4376_6530,Balbriggan,106142124,0,4376_7778022_103107,4376_81 -4289_75971,269,4376_6531,Balbriggan,106232124,0,4376_7778022_103107,4376_81 -4289_75971,270,4376_6532,Balbriggan,105277624,0,4376_7778022_103106,4376_84 -4289_75971,146,4376_6533,Balbriggan,105247624,0,4376_7778022_103106,4376_84 -4289_75971,271,4376_6534,Balbriggan,105237624,0,4376_7778022_103106,4376_84 -4289_75971,115,4376_6535,Balbriggan,105217624,0,4376_7778022_103106,4376_84 -4289_75971,259,4376_6536,Skerries,105764966,0,4376_7778022_103103,4376_82 -4289_75971,260,4376_6537,Skerries,105312214,0,4376_7778022_103501,4376_82 -4289_75971,261,4376_6538,Skerries,105322214,0,4376_7778022_103501,4376_82 -4289_75971,262,4376_6539,Skerries,105432214,0,4376_7778022_103501,4376_82 -4289_75960,146,4376_654,Dublin Airport,105247179,1,4376_7778022_103105,4376_5 -4289_75971,263,4376_6540,Skerries,105542214,0,4376_7778022_103501,4376_82 -4289_75971,264,4376_6541,Skerries,105652214,0,4376_7778022_103501,4376_82 -4289_75971,265,4376_6542,Skerries,105812214,0,4376_7778022_103501,4376_82 -4289_75971,266,4376_6543,Skerries,105822214,0,4376_7778022_103501,4376_82 -4289_75971,267,4376_6544,Skerries,106052214,0,4376_7778022_103501,4376_82 -4289_75971,268,4376_6545,Skerries,106142214,0,4376_7778022_103501,4376_82 -4289_75971,269,4376_6546,Skerries,106232214,0,4376_7778022_103501,4376_82 -4289_75971,270,4376_6547,Skerries,105277692,0,4376_7778022_103103,4376_82 -4289_75971,146,4376_6548,Skerries,105247692,0,4376_7778022_103103,4376_82 -4289_75971,271,4376_6549,Skerries,105237692,0,4376_7778022_103103,4376_82 -4289_75960,271,4376_655,Dublin Airport,105237179,1,4376_7778022_103105,4376_5 -4289_75971,115,4376_6550,Skerries,105217692,0,4376_7778022_103103,4376_82 -4289_75971,259,4376_6551,Balbriggan,105765030,0,4376_7778022_103105,4376_81 -4289_75971,260,4376_6552,Balbriggan,105312306,0,4376_7778022_103105,4376_81 -4289_75971,261,4376_6553,Balbriggan,105322306,0,4376_7778022_103105,4376_81 -4289_75971,262,4376_6554,Balbriggan,105432306,0,4376_7778022_103105,4376_81 -4289_75971,263,4376_6555,Balbriggan,105542306,0,4376_7778022_103105,4376_81 -4289_75971,264,4376_6556,Balbriggan,105652306,0,4376_7778022_103105,4376_81 -4289_75971,265,4376_6557,Balbriggan,105812306,0,4376_7778022_103105,4376_81 -4289_75971,266,4376_6558,Balbriggan,105822306,0,4376_7778022_103105,4376_81 -4289_75971,267,4376_6559,Balbriggan,106052306,0,4376_7778022_103105,4376_81 -4289_75960,115,4376_656,Dublin Airport,105217179,1,4376_7778022_103105,4376_5 -4289_75971,268,4376_6560,Balbriggan,106142306,0,4376_7778022_103105,4376_81 -4289_75971,269,4376_6561,Balbriggan,106232306,0,4376_7778022_103105,4376_81 -4289_75971,270,4376_6562,Balbriggan,105277760,0,4376_7778022_103104,4376_81 -4289_75971,146,4376_6563,Balbriggan,105247760,0,4376_7778022_103104,4376_81 -4289_75971,271,4376_6564,Balbriggan,105237760,0,4376_7778022_103104,4376_81 -4289_75971,115,4376_6565,Balbriggan,105217760,0,4376_7778022_103104,4376_81 -4289_75971,259,4376_6566,Skerries,105765122,0,4376_7778022_103106,4376_82 -4289_75971,260,4376_6567,Skerries,105312402,0,4376_7778022_103503,4376_82 -4289_75971,261,4376_6568,Skerries,105322402,0,4376_7778022_103503,4376_82 -4289_75971,262,4376_6569,Skerries,105432402,0,4376_7778022_103503,4376_82 -4289_75960,260,4376_657,Dublin Airport,105311583,1,4376_7778022_103108,4376_3 -4289_75971,263,4376_6570,Skerries,105542402,0,4376_7778022_103503,4376_82 -4289_75971,264,4376_6571,Skerries,105652402,0,4376_7778022_103503,4376_82 -4289_75971,265,4376_6572,Skerries,105812402,0,4376_7778022_103503,4376_82 -4289_75971,266,4376_6573,Skerries,105822402,0,4376_7778022_103503,4376_82 -4289_75971,267,4376_6574,Skerries,106052402,0,4376_7778022_103503,4376_82 -4289_75971,268,4376_6575,Skerries,106142402,0,4376_7778022_103503,4376_82 -4289_75971,269,4376_6576,Skerries,106232402,0,4376_7778022_103503,4376_82 -4289_75971,270,4376_6577,Skerries,105277830,0,4376_7778022_103108,4376_82 -4289_75971,146,4376_6578,Skerries,105247830,0,4376_7778022_103108,4376_82 -4289_75971,271,4376_6579,Skerries,105237830,0,4376_7778022_103108,4376_82 -4289_75960,261,4376_658,Dublin Airport,105321583,1,4376_7778022_103108,4376_3 -4289_75971,115,4376_6580,Skerries,105217830,0,4376_7778022_103108,4376_82 -4289_75971,259,4376_6581,Balbriggan,105765186,0,4376_7778022_103108,4376_81 -4289_75971,260,4376_6582,Balbriggan,105312478,0,4376_7778022_103107,4376_81 -4289_75971,261,4376_6583,Balbriggan,105322478,0,4376_7778022_103107,4376_81 -4289_75971,262,4376_6584,Balbriggan,105432478,0,4376_7778022_103107,4376_81 -4289_75971,263,4376_6585,Balbriggan,105542478,0,4376_7778022_103107,4376_81 -4289_75971,264,4376_6586,Balbriggan,105652478,0,4376_7778022_103107,4376_81 -4289_75971,265,4376_6587,Balbriggan,105812478,0,4376_7778022_103107,4376_81 -4289_75971,266,4376_6588,Balbriggan,105822478,0,4376_7778022_103107,4376_81 -4289_75971,267,4376_6589,Balbriggan,106052478,0,4376_7778022_103107,4376_81 -4289_75960,262,4376_659,Dublin Airport,105431583,1,4376_7778022_103108,4376_3 -4289_75971,268,4376_6590,Balbriggan,106142478,0,4376_7778022_103107,4376_81 -4289_75971,269,4376_6591,Balbriggan,106232478,0,4376_7778022_103107,4376_81 -4289_75971,270,4376_6592,Balbriggan,105277890,0,4376_7778022_103102,4376_81 -4289_75971,146,4376_6593,Balbriggan,105247890,0,4376_7778022_103102,4376_81 -4289_75971,271,4376_6594,Balbriggan,105237890,0,4376_7778022_103102,4376_81 -4289_75971,115,4376_6595,Balbriggan,105217890,0,4376_7778022_103102,4376_81 -4289_75971,259,4376_6596,Skerries,105765276,0,4376_7778022_103103,4376_82 -4289_75971,260,4376_6597,Skerries,105312562,0,4376_7778022_103106,4376_82 -4289_75971,261,4376_6598,Skerries,105322562,0,4376_7778022_103106,4376_82 -4289_75971,262,4376_6599,Skerries,105432562,0,4376_7778022_103106,4376_82 -4289_75960,259,4376_66,Sutton Station,105764200,0,4376_7778022_103502,4376_1 -4289_75960,263,4376_660,Dublin Airport,105541583,1,4376_7778022_103108,4376_3 -4289_75971,263,4376_6600,Skerries,105542562,0,4376_7778022_103106,4376_82 -4289_75971,264,4376_6601,Skerries,105652562,0,4376_7778022_103106,4376_82 -4289_75971,265,4376_6602,Skerries,105812562,0,4376_7778022_103106,4376_82 -4289_75971,266,4376_6603,Skerries,105822562,0,4376_7778022_103106,4376_82 -4289_75971,267,4376_6604,Skerries,106052562,0,4376_7778022_103106,4376_82 -4289_75971,268,4376_6605,Skerries,106142562,0,4376_7778022_103106,4376_82 -4289_75971,269,4376_6606,Skerries,106232562,0,4376_7778022_103106,4376_82 -4289_75971,270,4376_6607,Skerries,105277960,0,4376_7778022_103104,4376_82 -4289_75971,146,4376_6608,Skerries,105247960,0,4376_7778022_103104,4376_82 -4289_75971,271,4376_6609,Skerries,105237960,0,4376_7778022_103104,4376_82 -4289_75960,264,4376_661,Dublin Airport,105651583,1,4376_7778022_103108,4376_3 -4289_75971,115,4376_6610,Skerries,105217960,0,4376_7778022_103104,4376_82 -4289_75971,260,4376_6611,Balbriggan,105312650,0,4376_7778022_103102,4376_81 -4289_75971,261,4376_6612,Balbriggan,105322650,0,4376_7778022_103102,4376_81 -4289_75971,262,4376_6613,Balbriggan,105432650,0,4376_7778022_103102,4376_81 -4289_75971,263,4376_6614,Balbriggan,105542650,0,4376_7778022_103102,4376_81 -4289_75971,264,4376_6615,Balbriggan,105652650,0,4376_7778022_103102,4376_81 -4289_75971,265,4376_6616,Balbriggan,105812650,0,4376_7778022_103102,4376_81 -4289_75971,266,4376_6617,Balbriggan,105822650,0,4376_7778022_103102,4376_81 -4289_75971,267,4376_6618,Balbriggan,106052650,0,4376_7778022_103102,4376_81 -4289_75971,268,4376_6619,Balbriggan,106142650,0,4376_7778022_103102,4376_81 -4289_75960,265,4376_662,Dublin Airport,105811583,1,4376_7778022_103108,4376_3 -4289_75971,269,4376_6620,Balbriggan,106232650,0,4376_7778022_103102,4376_81 -4289_75971,259,4376_6621,Balbriggan,105765354,0,4376_7778022_103106,4376_81 -4289_75971,270,4376_6622,Balbriggan,105278028,0,4376_7778022_103108,4376_84 -4289_75971,146,4376_6623,Balbriggan,105248028,0,4376_7778022_103108,4376_84 -4289_75971,271,4376_6624,Balbriggan,105238028,0,4376_7778022_103108,4376_84 -4289_75971,115,4376_6625,Balbriggan,105218028,0,4376_7778022_103108,4376_84 -4289_75971,260,4376_6626,Skerries,105312722,0,4376_7778022_103108,4376_82 -4289_75971,261,4376_6627,Skerries,105322722,0,4376_7778022_103108,4376_82 -4289_75971,262,4376_6628,Skerries,105432722,0,4376_7778022_103108,4376_82 -4289_75971,263,4376_6629,Skerries,105542722,0,4376_7778022_103108,4376_82 -4289_75960,266,4376_663,Dublin Airport,105821583,1,4376_7778022_103108,4376_3 -4289_75971,264,4376_6630,Skerries,105652722,0,4376_7778022_103108,4376_82 -4289_75971,265,4376_6631,Skerries,105812722,0,4376_7778022_103108,4376_82 -4289_75971,266,4376_6632,Skerries,105822722,0,4376_7778022_103108,4376_82 -4289_75971,267,4376_6633,Skerries,106052722,0,4376_7778022_103108,4376_82 -4289_75971,268,4376_6634,Skerries,106142722,0,4376_7778022_103108,4376_82 -4289_75971,269,4376_6635,Skerries,106232722,0,4376_7778022_103108,4376_82 -4289_75971,259,4376_6636,Skerries,105765424,0,4376_7778022_103108,4376_83 -4289_75971,270,4376_6637,Skerries,105278100,0,4376_7778022_103102,4376_82 -4289_75971,146,4376_6638,Skerries,105248100,0,4376_7778022_103102,4376_82 -4289_75971,271,4376_6639,Skerries,105238100,0,4376_7778022_103102,4376_82 -4289_75960,267,4376_664,Dublin Airport,106051583,1,4376_7778022_103108,4376_3 -4289_75971,115,4376_6640,Skerries,105218100,0,4376_7778022_103102,4376_82 -4289_75971,260,4376_6641,Balbriggan,105312796,0,4376_7778022_103106,4376_81 -4289_75971,261,4376_6642,Balbriggan,105322796,0,4376_7778022_103106,4376_81 -4289_75971,262,4376_6643,Balbriggan,105432796,0,4376_7778022_103106,4376_81 -4289_75971,263,4376_6644,Balbriggan,105542796,0,4376_7778022_103106,4376_81 -4289_75971,264,4376_6645,Balbriggan,105652796,0,4376_7778022_103106,4376_81 -4289_75971,265,4376_6646,Balbriggan,105812796,0,4376_7778022_103106,4376_81 -4289_75971,266,4376_6647,Balbriggan,105822796,0,4376_7778022_103106,4376_81 -4289_75971,267,4376_6648,Balbriggan,106052796,0,4376_7778022_103106,4376_81 -4289_75971,268,4376_6649,Balbriggan,106142796,0,4376_7778022_103106,4376_81 -4289_75960,268,4376_665,Dublin Airport,106141583,1,4376_7778022_103108,4376_3 -4289_75971,269,4376_6650,Balbriggan,106232796,0,4376_7778022_103106,4376_81 -4289_75971,259,4376_6651,Balbriggan,105765486,0,4376_7778022_103103,4376_84 -4289_75971,270,4376_6652,Balbriggan,105278146,0,4376_7778022_103104,4376_85 -4289_75971,146,4376_6653,Balbriggan,105248146,0,4376_7778022_103104,4376_85 -4289_75971,271,4376_6654,Balbriggan,105238146,0,4376_7778022_103104,4376_85 -4289_75971,115,4376_6655,Balbriggan,105218146,0,4376_7778022_103104,4376_85 -4289_75971,260,4376_6656,Skerries,105312878,0,4376_7778022_103105,4376_82 -4289_75971,261,4376_6657,Skerries,105322878,0,4376_7778022_103105,4376_82 -4289_75971,262,4376_6658,Skerries,105432878,0,4376_7778022_103105,4376_82 -4289_75971,263,4376_6659,Skerries,105542878,0,4376_7778022_103105,4376_82 -4289_75960,269,4376_666,Dublin Airport,106231583,1,4376_7778022_103108,4376_3 -4289_75971,264,4376_6660,Skerries,105652878,0,4376_7778022_103105,4376_82 -4289_75971,265,4376_6661,Skerries,105812878,0,4376_7778022_103105,4376_82 -4289_75971,266,4376_6662,Skerries,105822878,0,4376_7778022_103105,4376_82 -4289_75971,267,4376_6663,Skerries,106052878,0,4376_7778022_103105,4376_82 -4289_75971,268,4376_6664,Skerries,106142878,0,4376_7778022_103105,4376_82 -4289_75971,269,4376_6665,Skerries,106232878,0,4376_7778022_103105,4376_82 -4289_75971,259,4376_6666,Skerries,105765560,0,4376_7778022_103106,4376_83 -4289_75971,270,4376_6667,Skerries,105278206,0,4376_7778022_103108,4376_86 -4289_75971,146,4376_6668,Skerries,105248206,0,4376_7778022_103108,4376_86 -4289_75971,271,4376_6669,Skerries,105238206,0,4376_7778022_103108,4376_86 -4289_75960,259,4376_667,Dublin Airport,105764435,1,4376_7778022_103501,4376_4 -4289_75971,115,4376_6670,Skerries,105218206,0,4376_7778022_103108,4376_86 -4289_75971,260,4376_6671,Balbriggan,105312932,0,4376_7778022_103102,4376_81 -4289_75971,261,4376_6672,Balbriggan,105322932,0,4376_7778022_103102,4376_81 -4289_75971,262,4376_6673,Balbriggan,105432932,0,4376_7778022_103102,4376_81 -4289_75971,263,4376_6674,Balbriggan,105542932,0,4376_7778022_103102,4376_81 -4289_75971,264,4376_6675,Balbriggan,105652932,0,4376_7778022_103102,4376_81 -4289_75971,265,4376_6676,Balbriggan,105812932,0,4376_7778022_103102,4376_81 -4289_75971,266,4376_6677,Balbriggan,105822932,0,4376_7778022_103102,4376_81 -4289_75971,267,4376_6678,Balbriggan,106052932,0,4376_7778022_103102,4376_81 -4289_75971,268,4376_6679,Balbriggan,106142932,0,4376_7778022_103102,4376_81 -4289_75960,270,4376_668,Dublin Airport,105277229,1,4376_7778022_103106,4376_5 -4289_75971,269,4376_6680,Balbriggan,106232932,0,4376_7778022_103102,4376_81 -4289_75971,259,4376_6681,Balbriggan,105765610,0,4376_7778022_103108,4376_84 -4289_75971,270,4376_6682,Balbriggan,105278258,0,4376_7778022_103105,4376_85 -4289_75971,146,4376_6683,Balbriggan,105248258,0,4376_7778022_103105,4376_85 -4289_75971,271,4376_6684,Balbriggan,105238258,0,4376_7778022_103105,4376_85 -4289_75971,115,4376_6685,Balbriggan,105218258,0,4376_7778022_103105,4376_85 -4289_75971,260,4376_6686,Skerries,105312996,0,4376_7778022_103104,4376_82 -4289_75971,261,4376_6687,Skerries,105322996,0,4376_7778022_103104,4376_82 -4289_75971,262,4376_6688,Skerries,105432996,0,4376_7778022_103104,4376_82 -4289_75971,263,4376_6689,Skerries,105542996,0,4376_7778022_103104,4376_82 -4289_75960,146,4376_669,Dublin Airport,105247229,1,4376_7778022_103106,4376_5 -4289_75971,264,4376_6690,Skerries,105652996,0,4376_7778022_103104,4376_82 -4289_75971,265,4376_6691,Skerries,105812996,0,4376_7778022_103104,4376_82 -4289_75971,266,4376_6692,Skerries,105822996,0,4376_7778022_103104,4376_82 -4289_75971,267,4376_6693,Skerries,106052996,0,4376_7778022_103104,4376_82 -4289_75971,268,4376_6694,Skerries,106142996,0,4376_7778022_103104,4376_82 -4289_75971,269,4376_6695,Skerries,106232996,0,4376_7778022_103104,4376_82 -4289_75971,259,4376_6696,Skerries,105765668,0,4376_7778022_103103,4376_83 -4289_75971,270,4376_6697,Skerries,105278312,0,4376_7778022_103104,4376_86 -4289_75971,146,4376_6698,Skerries,105248312,0,4376_7778022_103104,4376_86 -4289_75971,271,4376_6699,Skerries,105238312,0,4376_7778022_103104,4376_86 -4289_75960,260,4376_67,Sutton Station,105311382,0,4376_7778022_103107,4376_1 -4289_75960,271,4376_670,Dublin Airport,105237229,1,4376_7778022_103106,4376_5 -4289_75971,115,4376_6700,Skerries,105218312,0,4376_7778022_103104,4376_86 -4289_75971,260,4376_6701,Skerries,105313014,0,4376_7778022_103106,4376_82 -4289_75971,261,4376_6702,Skerries,105323014,0,4376_7778022_103106,4376_82 -4289_75971,262,4376_6703,Skerries,105433014,0,4376_7778022_103106,4376_82 -4289_75971,263,4376_6704,Skerries,105543014,0,4376_7778022_103106,4376_82 -4289_75971,264,4376_6705,Skerries,105653014,0,4376_7778022_103106,4376_82 -4289_75971,265,4376_6706,Skerries,105813014,0,4376_7778022_103106,4376_82 -4289_75971,266,4376_6707,Skerries,105823014,0,4376_7778022_103106,4376_82 -4289_75971,267,4376_6708,Skerries,106053014,0,4376_7778022_103106,4376_82 -4289_75971,268,4376_6709,Skerries,106143014,0,4376_7778022_103106,4376_82 -4289_75960,115,4376_671,Dublin Airport,105217229,1,4376_7778022_103106,4376_5 -4289_75971,269,4376_6710,Skerries,106233014,0,4376_7778022_103106,4376_82 -4289_75971,259,4376_6711,Skerries,105765686,0,4376_7778022_103106,4376_83 -4289_75971,260,4376_6712,Dublin Airport,105311001,1,4376_7778022_103101,4376_87 -4289_75971,261,4376_6713,Dublin Airport,105321001,1,4376_7778022_103101,4376_87 -4289_75971,262,4376_6714,Dublin Airport,105431001,1,4376_7778022_103101,4376_87 -4289_75971,263,4376_6715,Dublin Airport,105541001,1,4376_7778022_103101,4376_87 -4289_75971,264,4376_6716,Dublin Airport,105651001,1,4376_7778022_103101,4376_87 -4289_75971,265,4376_6717,Dublin Airport,105811001,1,4376_7778022_103101,4376_87 -4289_75971,266,4376_6718,Dublin Airport,105821001,1,4376_7778022_103101,4376_87 -4289_75971,267,4376_6719,Dublin Airport,106051001,1,4376_7778022_103101,4376_87 -4289_75960,260,4376_672,Dublin Airport,105311635,1,4376_7778022_103501,4376_3 -4289_75971,268,4376_6720,Dublin Airport,106141001,1,4376_7778022_103101,4376_87 -4289_75971,269,4376_6721,Dublin Airport,106231001,1,4376_7778022_103101,4376_87 -4289_75971,260,4376_6722,Dublin Airport,105311065,1,4376_7778022_103502,4376_87 -4289_75971,261,4376_6723,Dublin Airport,105321065,1,4376_7778022_103502,4376_87 -4289_75971,262,4376_6724,Dublin Airport,105431065,1,4376_7778022_103502,4376_87 -4289_75971,263,4376_6725,Dublin Airport,105541065,1,4376_7778022_103502,4376_87 -4289_75971,264,4376_6726,Dublin Airport,105651065,1,4376_7778022_103502,4376_87 -4289_75971,265,4376_6727,Dublin Airport,105811065,1,4376_7778022_103502,4376_87 -4289_75971,266,4376_6728,Dublin Airport,105821065,1,4376_7778022_103502,4376_87 -4289_75971,267,4376_6729,Dublin Airport,106051065,1,4376_7778022_103502,4376_87 -4289_75960,261,4376_673,Dublin Airport,105321635,1,4376_7778022_103501,4376_3 -4289_75971,268,4376_6730,Dublin Airport,106141065,1,4376_7778022_103502,4376_87 -4289_75971,269,4376_6731,Dublin Airport,106231065,1,4376_7778022_103502,4376_87 -4289_75971,259,4376_6732,Dublin Airport,105764055,1,4376_7778022_103103,4376_87 -4289_75971,260,4376_6733,Carlton Court,105311155,1,4376_7778022_103103,4376_88 -4289_75971,261,4376_6734,Carlton Court,105321155,1,4376_7778022_103103,4376_88 -4289_75971,262,4376_6735,Carlton Court,105431155,1,4376_7778022_103103,4376_88 -4289_75971,263,4376_6736,Carlton Court,105541155,1,4376_7778022_103103,4376_88 -4289_75971,264,4376_6737,Carlton Court,105651155,1,4376_7778022_103103,4376_88 -4289_75971,265,4376_6738,Carlton Court,105811155,1,4376_7778022_103103,4376_88 -4289_75971,266,4376_6739,Carlton Court,105821155,1,4376_7778022_103103,4376_88 -4289_75960,262,4376_674,Dublin Airport,105431635,1,4376_7778022_103501,4376_3 -4289_75971,267,4376_6740,Carlton Court,106051155,1,4376_7778022_103103,4376_88 -4289_75971,268,4376_6741,Carlton Court,106141155,1,4376_7778022_103103,4376_88 -4289_75971,269,4376_6742,Carlton Court,106231155,1,4376_7778022_103103,4376_88 -4289_75971,259,4376_6743,Carlton Court,105764111,1,4376_7778022_103105,4376_88 -4289_75971,260,4376_6744,Dublin Airport,105311229,1,4376_7778022_103109,4376_87 -4289_75971,261,4376_6745,Dublin Airport,105321229,1,4376_7778022_103109,4376_87 -4289_75971,262,4376_6746,Dublin Airport,105431229,1,4376_7778022_103109,4376_87 -4289_75971,263,4376_6747,Dublin Airport,105541229,1,4376_7778022_103109,4376_87 -4289_75971,264,4376_6748,Dublin Airport,105651229,1,4376_7778022_103109,4376_87 -4289_75971,265,4376_6749,Dublin Airport,105811229,1,4376_7778022_103109,4376_87 -4289_75960,263,4376_675,Dublin Airport,105541635,1,4376_7778022_103501,4376_3 -4289_75971,266,4376_6750,Dublin Airport,105821229,1,4376_7778022_103109,4376_87 -4289_75971,267,4376_6751,Dublin Airport,106051229,1,4376_7778022_103109,4376_87 -4289_75971,268,4376_6752,Dublin Airport,106141229,1,4376_7778022_103109,4376_87 -4289_75971,269,4376_6753,Dublin Airport,106231229,1,4376_7778022_103109,4376_87 -4289_75971,259,4376_6754,Dublin Airport,105764169,1,4376_7778022_103106,4376_87 -4289_75971,260,4376_6755,Carlton Court,105311353,1,4376_7778022_103101,4376_88 -4289_75971,261,4376_6756,Carlton Court,105321353,1,4376_7778022_103101,4376_88 -4289_75971,262,4376_6757,Carlton Court,105431353,1,4376_7778022_103101,4376_88 -4289_75971,263,4376_6758,Carlton Court,105541353,1,4376_7778022_103101,4376_88 -4289_75971,264,4376_6759,Carlton Court,105651353,1,4376_7778022_103101,4376_88 -4289_75960,264,4376_676,Dublin Airport,105651635,1,4376_7778022_103501,4376_3 -4289_75971,265,4376_6760,Carlton Court,105811353,1,4376_7778022_103101,4376_88 -4289_75971,266,4376_6761,Carlton Court,105821353,1,4376_7778022_103101,4376_88 -4289_75971,267,4376_6762,Carlton Court,106051353,1,4376_7778022_103101,4376_88 -4289_75971,268,4376_6763,Carlton Court,106141353,1,4376_7778022_103101,4376_88 -4289_75971,269,4376_6764,Carlton Court,106231353,1,4376_7778022_103101,4376_88 -4289_75971,259,4376_6765,Carlton Court,105764239,1,4376_7778022_103103,4376_88 -4289_75971,270,4376_6766,Carlton Court,105277067,1,4376_7778022_103102,4376_91 -4289_75971,146,4376_6767,Carlton Court,105247067,1,4376_7778022_103102,4376_91 -4289_75971,271,4376_6768,Carlton Court,105237067,1,4376_7778022_103102,4376_91 -4289_75971,115,4376_6769,Carlton Court,105217067,1,4376_7778022_103102,4376_91 -4289_75960,265,4376_677,Dublin Airport,105811635,1,4376_7778022_103501,4376_3 -4289_75971,260,4376_6770,Dublin Airport,105311437,1,4376_7778022_103104,4376_87 -4289_75971,261,4376_6771,Dublin Airport,105321437,1,4376_7778022_103104,4376_87 -4289_75971,262,4376_6772,Dublin Airport,105431437,1,4376_7778022_103104,4376_87 -4289_75971,263,4376_6773,Dublin Airport,105541437,1,4376_7778022_103104,4376_87 -4289_75971,264,4376_6774,Dublin Airport,105651437,1,4376_7778022_103104,4376_87 -4289_75971,265,4376_6775,Dublin Airport,105811437,1,4376_7778022_103104,4376_87 -4289_75971,266,4376_6776,Dublin Airport,105821437,1,4376_7778022_103104,4376_87 -4289_75971,267,4376_6777,Dublin Airport,106051437,1,4376_7778022_103104,4376_87 -4289_75971,268,4376_6778,Dublin Airport,106141437,1,4376_7778022_103104,4376_87 -4289_75971,269,4376_6779,Dublin Airport,106231437,1,4376_7778022_103104,4376_87 -4289_75960,266,4376_678,Dublin Airport,105821635,1,4376_7778022_103501,4376_3 -4289_75971,259,4376_6780,Dublin Airport,105764295,1,4376_7778022_103105,4376_90 -4289_75971,270,4376_6781,Dublin Airport,105277119,1,4376_7778022_103104,4376_87 -4289_75971,146,4376_6782,Dublin Airport,105247119,1,4376_7778022_103104,4376_87 -4289_75971,271,4376_6783,Dublin Airport,105237119,1,4376_7778022_103104,4376_87 -4289_75971,115,4376_6784,Dublin Airport,105217119,1,4376_7778022_103104,4376_87 -4289_75971,260,4376_6785,Carlton Court,105311529,1,4376_7778022_103106,4376_88 -4289_75971,261,4376_6786,Carlton Court,105321529,1,4376_7778022_103106,4376_88 -4289_75971,262,4376_6787,Carlton Court,105431529,1,4376_7778022_103106,4376_88 -4289_75971,263,4376_6788,Carlton Court,105541529,1,4376_7778022_103106,4376_88 -4289_75971,264,4376_6789,Carlton Court,105651529,1,4376_7778022_103106,4376_88 -4289_75960,267,4376_679,Dublin Airport,106051635,1,4376_7778022_103501,4376_3 -4289_75971,265,4376_6790,Carlton Court,105811529,1,4376_7778022_103106,4376_88 -4289_75971,266,4376_6791,Carlton Court,105821529,1,4376_7778022_103106,4376_88 -4289_75971,267,4376_6792,Carlton Court,106051529,1,4376_7778022_103106,4376_88 -4289_75971,268,4376_6793,Carlton Court,106141529,1,4376_7778022_103106,4376_88 -4289_75971,269,4376_6794,Carlton Court,106231529,1,4376_7778022_103106,4376_88 -4289_75971,259,4376_6795,Carlton Court,105764385,1,4376_7778022_103106,4376_91 -4289_75971,270,4376_6796,Carlton Court,105277183,1,4376_7778022_103503,4376_93 -4289_75971,146,4376_6797,Carlton Court,105247183,1,4376_7778022_103503,4376_93 -4289_75971,271,4376_6798,Carlton Court,105237183,1,4376_7778022_103503,4376_93 -4289_75971,115,4376_6799,Carlton Court,105217183,1,4376_7778022_103503,4376_93 -4289_75960,261,4376_68,Sutton Station,105321382,0,4376_7778022_103107,4376_1 -4289_75960,268,4376_680,Dublin Airport,106141635,1,4376_7778022_103501,4376_3 -4289_75971,260,4376_6800,Dublin Airport,105311597,1,4376_7778022_103103,4376_87 -4289_75971,261,4376_6801,Dublin Airport,105321597,1,4376_7778022_103103,4376_87 -4289_75971,262,4376_6802,Dublin Airport,105431597,1,4376_7778022_103103,4376_87 -4289_75971,263,4376_6803,Dublin Airport,105541597,1,4376_7778022_103103,4376_87 -4289_75971,264,4376_6804,Dublin Airport,105651597,1,4376_7778022_103103,4376_87 -4289_75971,265,4376_6805,Dublin Airport,105811597,1,4376_7778022_103103,4376_87 -4289_75971,266,4376_6806,Dublin Airport,105821597,1,4376_7778022_103103,4376_87 -4289_75971,267,4376_6807,Dublin Airport,106051597,1,4376_7778022_103103,4376_87 -4289_75971,268,4376_6808,Dublin Airport,106141597,1,4376_7778022_103103,4376_87 -4289_75971,269,4376_6809,Dublin Airport,106231597,1,4376_7778022_103103,4376_87 -4289_75960,269,4376_681,Dublin Airport,106231635,1,4376_7778022_103501,4376_3 -4289_75971,259,4376_6810,Dublin Airport,105764449,1,4376_7778022_103108,4376_90 -4289_75971,270,4376_6811,Dublin Airport,105277239,1,4376_7778022_103102,4376_87 -4289_75971,146,4376_6812,Dublin Airport,105247239,1,4376_7778022_103102,4376_87 -4289_75971,271,4376_6813,Dublin Airport,105237239,1,4376_7778022_103102,4376_87 -4289_75971,115,4376_6814,Dublin Airport,105217239,1,4376_7778022_103102,4376_87 -4289_75971,260,4376_6815,Carlton Court,105311695,1,4376_7778022_103101,4376_88 -4289_75971,261,4376_6816,Carlton Court,105321695,1,4376_7778022_103101,4376_88 -4289_75971,262,4376_6817,Carlton Court,105431695,1,4376_7778022_103101,4376_88 -4289_75971,263,4376_6818,Carlton Court,105541695,1,4376_7778022_103101,4376_88 -4289_75971,264,4376_6819,Carlton Court,105651695,1,4376_7778022_103101,4376_88 -4289_75960,259,4376_682,Dublin Airport,105764485,1,4376_7778022_103101,4376_4 -4289_75971,265,4376_6820,Carlton Court,105811695,1,4376_7778022_103101,4376_88 -4289_75971,266,4376_6821,Carlton Court,105821695,1,4376_7778022_103101,4376_88 -4289_75971,267,4376_6822,Carlton Court,106051695,1,4376_7778022_103101,4376_88 -4289_75971,268,4376_6823,Carlton Court,106141695,1,4376_7778022_103101,4376_88 -4289_75971,269,4376_6824,Carlton Court,106231695,1,4376_7778022_103101,4376_88 -4289_75971,259,4376_6825,Carlton Court,105764543,1,4376_7778022_103502,4376_91 -4289_75971,270,4376_6826,Carlton Court,105277321,1,4376_7778022_103104,4376_93 -4289_75971,146,4376_6827,Carlton Court,105247321,1,4376_7778022_103104,4376_93 -4289_75971,271,4376_6828,Carlton Court,105237321,1,4376_7778022_103104,4376_93 -4289_75971,115,4376_6829,Carlton Court,105217321,1,4376_7778022_103104,4376_93 -4289_75960,270,4376_683,Dublin Airport,105277271,1,4376_7778022_103501,4376_5 -4289_75971,260,4376_6830,Dublin Airport,105311765,1,4376_7778022_103503,4376_87 -4289_75971,261,4376_6831,Dublin Airport,105321765,1,4376_7778022_103503,4376_87 -4289_75971,262,4376_6832,Dublin Airport,105431765,1,4376_7778022_103503,4376_87 -4289_75971,263,4376_6833,Dublin Airport,105541765,1,4376_7778022_103503,4376_87 -4289_75971,264,4376_6834,Dublin Airport,105651765,1,4376_7778022_103503,4376_87 -4289_75971,265,4376_6835,Dublin Airport,105811765,1,4376_7778022_103503,4376_87 -4289_75971,266,4376_6836,Dublin Airport,105821765,1,4376_7778022_103503,4376_87 -4289_75971,267,4376_6837,Dublin Airport,106051765,1,4376_7778022_103503,4376_87 -4289_75971,268,4376_6838,Dublin Airport,106141765,1,4376_7778022_103503,4376_87 -4289_75971,269,4376_6839,Dublin Airport,106231765,1,4376_7778022_103503,4376_87 -4289_75960,146,4376_684,Dublin Airport,105247271,1,4376_7778022_103501,4376_5 -4289_75971,259,4376_6840,Dublin Airport,105764605,1,4376_7778022_103104,4376_90 -4289_75971,270,4376_6841,Dublin Airport,105277377,1,4376_7778022_103105,4376_92 -4289_75971,146,4376_6842,Dublin Airport,105247377,1,4376_7778022_103105,4376_92 -4289_75971,271,4376_6843,Dublin Airport,105237377,1,4376_7778022_103105,4376_92 -4289_75971,115,4376_6844,Dublin Airport,105217377,1,4376_7778022_103105,4376_92 -4289_75971,260,4376_6845,Carlton Court,105311861,1,4376_7778022_103107,4376_88 -4289_75971,261,4376_6846,Carlton Court,105321861,1,4376_7778022_103107,4376_88 -4289_75971,262,4376_6847,Carlton Court,105431861,1,4376_7778022_103107,4376_88 -4289_75971,263,4376_6848,Carlton Court,105541861,1,4376_7778022_103107,4376_88 -4289_75971,264,4376_6849,Carlton Court,105651861,1,4376_7778022_103107,4376_88 -4289_75960,271,4376_685,Dublin Airport,105237271,1,4376_7778022_103501,4376_5 -4289_75971,265,4376_6850,Carlton Court,105811861,1,4376_7778022_103107,4376_88 -4289_75971,266,4376_6851,Carlton Court,105821861,1,4376_7778022_103107,4376_88 -4289_75971,267,4376_6852,Carlton Court,106051861,1,4376_7778022_103107,4376_88 -4289_75971,268,4376_6853,Carlton Court,106141861,1,4376_7778022_103107,4376_88 -4289_75971,269,4376_6854,Carlton Court,106231861,1,4376_7778022_103107,4376_88 -4289_75971,259,4376_6855,Carlton Court,105764695,1,4376_7778022_103501,4376_91 -4289_75971,270,4376_6856,Carlton Court,105277451,1,4376_7778022_103106,4376_93 -4289_75971,146,4376_6857,Carlton Court,105247451,1,4376_7778022_103106,4376_93 -4289_75971,271,4376_6858,Carlton Court,105237451,1,4376_7778022_103106,4376_93 -4289_75971,115,4376_6859,Carlton Court,105217451,1,4376_7778022_103106,4376_93 -4289_75960,115,4376_686,Dublin Airport,105217271,1,4376_7778022_103501,4376_5 -4289_75971,260,4376_6860,Dublin Airport,105311937,1,4376_7778022_103501,4376_87 -4289_75971,261,4376_6861,Dublin Airport,105321937,1,4376_7778022_103501,4376_87 -4289_75971,262,4376_6862,Dublin Airport,105431937,1,4376_7778022_103501,4376_87 -4289_75971,263,4376_6863,Dublin Airport,105541937,1,4376_7778022_103501,4376_87 -4289_75971,264,4376_6864,Dublin Airport,105651937,1,4376_7778022_103501,4376_87 -4289_75971,265,4376_6865,Dublin Airport,105811937,1,4376_7778022_103501,4376_87 -4289_75971,266,4376_6866,Dublin Airport,105821937,1,4376_7778022_103501,4376_87 -4289_75971,267,4376_6867,Dublin Airport,106051937,1,4376_7778022_103501,4376_87 -4289_75971,268,4376_6868,Dublin Airport,106141937,1,4376_7778022_103501,4376_87 -4289_75971,269,4376_6869,Dublin Airport,106231937,1,4376_7778022_103501,4376_87 -4289_75960,260,4376_687,Dublin Airport,105311691,1,4376_7778022_103502,4376_3 -4289_75971,259,4376_6870,Dublin Airport,105764765,1,4376_7778022_103101,4376_90 -4289_75971,270,4376_6871,Dublin Airport,105277517,1,4376_7778022_103102,4376_92 -4289_75971,146,4376_6872,Dublin Airport,105247517,1,4376_7778022_103102,4376_92 -4289_75971,271,4376_6873,Dublin Airport,105237517,1,4376_7778022_103102,4376_92 -4289_75971,115,4376_6874,Dublin Airport,105217517,1,4376_7778022_103102,4376_92 -4289_75971,260,4376_6875,Carlton Court,105312017,1,4376_7778022_103105,4376_88 -4289_75971,261,4376_6876,Carlton Court,105322017,1,4376_7778022_103105,4376_88 -4289_75971,262,4376_6877,Carlton Court,105432017,1,4376_7778022_103105,4376_88 -4289_75971,263,4376_6878,Carlton Court,105542017,1,4376_7778022_103105,4376_88 -4289_75971,264,4376_6879,Carlton Court,105652017,1,4376_7778022_103105,4376_88 -4289_75960,261,4376_688,Dublin Airport,105321691,1,4376_7778022_103502,4376_3 -4289_75971,265,4376_6880,Carlton Court,105812017,1,4376_7778022_103105,4376_88 -4289_75971,266,4376_6881,Carlton Court,105822017,1,4376_7778022_103105,4376_88 -4289_75971,267,4376_6882,Carlton Court,106052017,1,4376_7778022_103105,4376_88 -4289_75971,268,4376_6883,Carlton Court,106142017,1,4376_7778022_103105,4376_88 -4289_75971,269,4376_6884,Carlton Court,106232017,1,4376_7778022_103105,4376_88 -4289_75971,259,4376_6885,Carlton Court,105764851,1,4376_7778022_103502,4376_88 -4289_75971,270,4376_6886,Carlton Court,105277589,1,4376_7778022_103502,4376_91 -4289_75971,146,4376_6887,Carlton Court,105247589,1,4376_7778022_103502,4376_91 -4289_75971,271,4376_6888,Carlton Court,105237589,1,4376_7778022_103502,4376_91 -4289_75971,115,4376_6889,Carlton Court,105217589,1,4376_7778022_103502,4376_91 -4289_75960,262,4376_689,Dublin Airport,105431691,1,4376_7778022_103502,4376_3 -4289_75971,260,4376_6890,Dublin Airport,105312101,1,4376_7778022_103102,4376_87 -4289_75971,261,4376_6891,Dublin Airport,105322101,1,4376_7778022_103102,4376_87 -4289_75971,262,4376_6892,Dublin Airport,105432101,1,4376_7778022_103102,4376_87 -4289_75971,263,4376_6893,Dublin Airport,105542101,1,4376_7778022_103102,4376_87 -4289_75971,264,4376_6894,Dublin Airport,105652101,1,4376_7778022_103102,4376_87 -4289_75971,265,4376_6895,Dublin Airport,105812101,1,4376_7778022_103102,4376_87 -4289_75971,266,4376_6896,Dublin Airport,105822101,1,4376_7778022_103102,4376_87 -4289_75971,267,4376_6897,Dublin Airport,106052101,1,4376_7778022_103102,4376_87 -4289_75971,268,4376_6898,Dublin Airport,106142101,1,4376_7778022_103102,4376_87 -4289_75971,269,4376_6899,Dublin Airport,106232101,1,4376_7778022_103102,4376_87 -4289_75960,262,4376_69,Sutton Station,105431382,0,4376_7778022_103107,4376_1 -4289_75960,263,4376_690,Dublin Airport,105541691,1,4376_7778022_103502,4376_3 -4289_75971,259,4376_6900,Dublin Airport,105764919,1,4376_7778022_103503,4376_87 -4289_75971,270,4376_6901,Dublin Airport,105277651,1,4376_7778022_103503,4376_90 -4289_75971,146,4376_6902,Dublin Airport,105247651,1,4376_7778022_103503,4376_90 -4289_75971,271,4376_6903,Dublin Airport,105237651,1,4376_7778022_103503,4376_90 -4289_75971,115,4376_6904,Dublin Airport,105217651,1,4376_7778022_103503,4376_90 -4289_75971,262,4376_6905,Station Road,105432135,1,4376_7778022_109309,4376_89 -4289_75971,263,4376_6906,Station Road,105542137,1,4376_7778022_109402,4376_89 -4289_75971,264,4376_6907,Station Road,105652139,1,4376_7778022_109504,4376_89 -4289_75971,260,4376_6908,Station Road,105312195,1,4376_7778022_109107,4376_89 -4289_75971,261,4376_6909,Station Road,105322195,1,4376_7778022_109107,4376_89 -4289_75960,264,4376_691,Dublin Airport,105651691,1,4376_7778022_103502,4376_3 -4289_75971,259,4376_6910,Carlton Court,105765003,1,4376_7778022_103501,4376_88 -4289_75971,270,4376_6911,Carlton Court,105277723,1,4376_7778022_103106,4376_91 -4289_75971,146,4376_6912,Carlton Court,105247723,1,4376_7778022_103106,4376_91 -4289_75971,271,4376_6913,Carlton Court,105237723,1,4376_7778022_103106,4376_91 -4289_75971,115,4376_6914,Carlton Court,105217723,1,4376_7778022_103106,4376_91 -4289_75971,260,4376_6915,Carlton Court,105312249,1,4376_7778022_103107,4376_88 -4289_75971,261,4376_6916,Carlton Court,105322249,1,4376_7778022_103107,4376_88 -4289_75971,262,4376_6917,Carlton Court,105432249,1,4376_7778022_103107,4376_88 -4289_75971,263,4376_6918,Carlton Court,105542249,1,4376_7778022_103107,4376_88 -4289_75971,264,4376_6919,Carlton Court,105652249,1,4376_7778022_103107,4376_88 -4289_75960,265,4376_692,Dublin Airport,105811691,1,4376_7778022_103502,4376_3 -4289_75971,265,4376_6920,Carlton Court,105812249,1,4376_7778022_103107,4376_88 -4289_75971,266,4376_6921,Carlton Court,105822249,1,4376_7778022_103107,4376_88 -4289_75971,267,4376_6922,Carlton Court,106052249,1,4376_7778022_103107,4376_88 -4289_75971,268,4376_6923,Carlton Court,106142249,1,4376_7778022_103107,4376_88 -4289_75971,269,4376_6924,Carlton Court,106232249,1,4376_7778022_103107,4376_88 -4289_75971,259,4376_6925,Dublin Airport,105765071,1,4376_7778022_103103,4376_87 -4289_75971,270,4376_6926,Dublin Airport,105277787,1,4376_7778022_103103,4376_90 -4289_75971,146,4376_6927,Dublin Airport,105247787,1,4376_7778022_103103,4376_90 -4289_75971,271,4376_6928,Dublin Airport,105237787,1,4376_7778022_103103,4376_90 -4289_75971,115,4376_6929,Dublin Airport,105217787,1,4376_7778022_103103,4376_90 -4289_75960,266,4376_693,Dublin Airport,105821691,1,4376_7778022_103502,4376_3 -4289_75971,260,4376_6930,Dublin Airport,105312335,1,4376_7778022_103501,4376_87 -4289_75971,261,4376_6931,Dublin Airport,105322335,1,4376_7778022_103501,4376_87 -4289_75971,262,4376_6932,Dublin Airport,105432335,1,4376_7778022_103501,4376_87 -4289_75971,263,4376_6933,Dublin Airport,105542335,1,4376_7778022_103501,4376_87 -4289_75971,264,4376_6934,Dublin Airport,105652335,1,4376_7778022_103501,4376_87 -4289_75971,265,4376_6935,Dublin Airport,105812335,1,4376_7778022_103501,4376_87 -4289_75971,266,4376_6936,Dublin Airport,105822335,1,4376_7778022_103501,4376_87 -4289_75971,267,4376_6937,Dublin Airport,106052335,1,4376_7778022_103501,4376_87 -4289_75971,268,4376_6938,Dublin Airport,106142335,1,4376_7778022_103501,4376_87 -4289_75971,269,4376_6939,Dublin Airport,106232335,1,4376_7778022_103501,4376_87 -4289_75960,267,4376_694,Dublin Airport,106051691,1,4376_7778022_103502,4376_3 -4289_75971,260,4376_6940,Carlton Court,105312423,1,4376_7778022_103105,4376_88 -4289_75971,261,4376_6941,Carlton Court,105322423,1,4376_7778022_103105,4376_88 -4289_75971,262,4376_6942,Carlton Court,105432423,1,4376_7778022_103105,4376_88 -4289_75971,263,4376_6943,Carlton Court,105542423,1,4376_7778022_103105,4376_88 -4289_75971,264,4376_6944,Carlton Court,105652423,1,4376_7778022_103105,4376_88 -4289_75971,265,4376_6945,Carlton Court,105812423,1,4376_7778022_103105,4376_88 -4289_75971,266,4376_6946,Carlton Court,105822423,1,4376_7778022_103105,4376_88 -4289_75971,267,4376_6947,Carlton Court,106052423,1,4376_7778022_103105,4376_88 -4289_75971,268,4376_6948,Carlton Court,106142423,1,4376_7778022_103105,4376_88 -4289_75971,269,4376_6949,Carlton Court,106232423,1,4376_7778022_103105,4376_88 -4289_75960,268,4376_695,Dublin Airport,106141691,1,4376_7778022_103502,4376_3 -4289_75971,259,4376_6950,Carlton Court,105765155,1,4376_7778022_103105,4376_91 -4289_75971,270,4376_6951,Carlton Court,105277863,1,4376_7778022_103104,4376_88 -4289_75971,146,4376_6952,Carlton Court,105247863,1,4376_7778022_103104,4376_88 -4289_75971,271,4376_6953,Carlton Court,105237863,1,4376_7778022_103104,4376_88 -4289_75971,115,4376_6954,Carlton Court,105217863,1,4376_7778022_103104,4376_88 -4289_75971,259,4376_6955,Dublin Airport,105765223,1,4376_7778022_103106,4376_87 -4289_75971,260,4376_6956,Dublin Airport,105312501,1,4376_7778022_103503,4376_87 -4289_75971,261,4376_6957,Dublin Airport,105322501,1,4376_7778022_103503,4376_87 -4289_75971,262,4376_6958,Dublin Airport,105432501,1,4376_7778022_103503,4376_87 -4289_75971,263,4376_6959,Dublin Airport,105542501,1,4376_7778022_103503,4376_87 -4289_75960,269,4376_696,Dublin Airport,106231691,1,4376_7778022_103502,4376_3 -4289_75971,264,4376_6960,Dublin Airport,105652501,1,4376_7778022_103503,4376_87 -4289_75971,265,4376_6961,Dublin Airport,105812501,1,4376_7778022_103503,4376_87 -4289_75971,266,4376_6962,Dublin Airport,105822501,1,4376_7778022_103503,4376_87 -4289_75971,267,4376_6963,Dublin Airport,106052501,1,4376_7778022_103503,4376_87 -4289_75971,268,4376_6964,Dublin Airport,106142501,1,4376_7778022_103503,4376_87 -4289_75971,269,4376_6965,Dublin Airport,106232501,1,4376_7778022_103503,4376_87 -4289_75971,270,4376_6966,Dublin Airport,105277917,1,4376_7778022_103108,4376_87 -4289_75971,146,4376_6967,Dublin Airport,105247917,1,4376_7778022_103108,4376_87 -4289_75971,271,4376_6968,Dublin Airport,105237917,1,4376_7778022_103108,4376_87 -4289_75971,115,4376_6969,Dublin Airport,105217917,1,4376_7778022_103108,4376_87 -4289_75960,259,4376_697,Dublin Airport,105764539,1,4376_7778022_103103,4376_4 -4289_75971,260,4376_6970,Carlton Court,105312589,1,4376_7778022_103107,4376_88 -4289_75971,261,4376_6971,Carlton Court,105322589,1,4376_7778022_103107,4376_88 -4289_75971,262,4376_6972,Carlton Court,105432589,1,4376_7778022_103107,4376_88 -4289_75971,263,4376_6973,Carlton Court,105542589,1,4376_7778022_103107,4376_88 -4289_75971,264,4376_6974,Carlton Court,105652589,1,4376_7778022_103107,4376_88 -4289_75971,265,4376_6975,Carlton Court,105812589,1,4376_7778022_103107,4376_88 -4289_75971,266,4376_6976,Carlton Court,105822589,1,4376_7778022_103107,4376_88 -4289_75971,267,4376_6977,Carlton Court,106052589,1,4376_7778022_103107,4376_88 -4289_75971,268,4376_6978,Carlton Court,106142589,1,4376_7778022_103107,4376_88 -4289_75971,269,4376_6979,Carlton Court,106232589,1,4376_7778022_103107,4376_88 -4289_75960,270,4376_698,Dublin Airport,105277319,1,4376_7778022_103103,4376_5 -4289_75971,259,4376_6980,Carlton Court,105765297,1,4376_7778022_103108,4376_91 -4289_75971,270,4376_6981,Carlton Court,105277989,1,4376_7778022_103102,4376_88 -4289_75971,146,4376_6982,Carlton Court,105247989,1,4376_7778022_103102,4376_88 -4289_75971,271,4376_6983,Carlton Court,105237989,1,4376_7778022_103102,4376_88 -4289_75971,115,4376_6984,Carlton Court,105217989,1,4376_7778022_103102,4376_88 -4289_75971,260,4376_6985,Dublin Airport,105312663,1,4376_7778022_103106,4376_87 -4289_75971,261,4376_6986,Dublin Airport,105322663,1,4376_7778022_103106,4376_87 -4289_75971,262,4376_6987,Dublin Airport,105432663,1,4376_7778022_103106,4376_87 -4289_75971,263,4376_6988,Dublin Airport,105542663,1,4376_7778022_103106,4376_87 -4289_75971,264,4376_6989,Dublin Airport,105652663,1,4376_7778022_103106,4376_87 -4289_75960,146,4376_699,Dublin Airport,105247319,1,4376_7778022_103103,4376_5 -4289_75971,265,4376_6990,Dublin Airport,105812663,1,4376_7778022_103106,4376_87 -4289_75971,266,4376_6991,Dublin Airport,105822663,1,4376_7778022_103106,4376_87 -4289_75971,267,4376_6992,Dublin Airport,106052663,1,4376_7778022_103106,4376_87 -4289_75971,268,4376_6993,Dublin Airport,106142663,1,4376_7778022_103106,4376_87 -4289_75971,269,4376_6994,Dublin Airport,106232663,1,4376_7778022_103106,4376_87 -4289_75971,259,4376_6995,Dublin Airport,105765369,1,4376_7778022_103103,4376_90 -4289_75971,270,4376_6996,Dublin Airport,105278051,1,4376_7778022_103104,4376_87 -4289_75971,146,4376_6997,Dublin Airport,105248051,1,4376_7778022_103104,4376_87 -4289_75971,271,4376_6998,Dublin Airport,105238051,1,4376_7778022_103104,4376_87 -4289_75971,115,4376_6999,Dublin Airport,105218051,1,4376_7778022_103104,4376_87 -4289_75960,265,4376_7,Sutton Station,105811026,0,4376_7778022_103503,4376_1 -4289_75960,263,4376_70,Sutton Station,105541382,0,4376_7778022_103107,4376_1 -4289_75960,271,4376_700,Dublin Airport,105237319,1,4376_7778022_103103,4376_5 -4289_75971,259,4376_7000,Carlton Court,105765437,1,4376_7778022_103106,4376_88 -4289_75971,260,4376_7001,Carlton Court,105312737,1,4376_7778022_103102,4376_88 -4289_75971,261,4376_7002,Carlton Court,105322737,1,4376_7778022_103102,4376_88 -4289_75971,262,4376_7003,Carlton Court,105432737,1,4376_7778022_103102,4376_88 -4289_75971,263,4376_7004,Carlton Court,105542737,1,4376_7778022_103102,4376_88 -4289_75971,264,4376_7005,Carlton Court,105652737,1,4376_7778022_103102,4376_88 -4289_75971,265,4376_7006,Carlton Court,105812737,1,4376_7778022_103102,4376_88 -4289_75971,266,4376_7007,Carlton Court,105822737,1,4376_7778022_103102,4376_88 -4289_75971,267,4376_7008,Carlton Court,106052737,1,4376_7778022_103102,4376_88 -4289_75971,268,4376_7009,Carlton Court,106142737,1,4376_7778022_103102,4376_88 -4289_75960,115,4376_701,Dublin Airport,105217319,1,4376_7778022_103103,4376_5 -4289_75971,269,4376_7010,Carlton Court,106232737,1,4376_7778022_103102,4376_88 -4289_75971,270,4376_7011,Carlton Court,105278111,1,4376_7778022_103108,4376_91 -4289_75971,146,4376_7012,Carlton Court,105248111,1,4376_7778022_103108,4376_91 -4289_75971,271,4376_7013,Carlton Court,105238111,1,4376_7778022_103108,4376_91 -4289_75971,115,4376_7014,Carlton Court,105218111,1,4376_7778022_103108,4376_91 -4289_75971,260,4376_7015,Dublin Airport,105312803,1,4376_7778022_103108,4376_87 -4289_75971,261,4376_7016,Dublin Airport,105322803,1,4376_7778022_103108,4376_87 -4289_75971,262,4376_7017,Dublin Airport,105432803,1,4376_7778022_103108,4376_87 -4289_75971,263,4376_7018,Dublin Airport,105542803,1,4376_7778022_103108,4376_87 -4289_75971,264,4376_7019,Dublin Airport,105652803,1,4376_7778022_103108,4376_87 -4289_75960,260,4376_702,Dublin Airport,105311741,1,4376_7778022_103104,4376_3 -4289_75971,265,4376_7020,Dublin Airport,105812803,1,4376_7778022_103108,4376_87 -4289_75971,266,4376_7021,Dublin Airport,105822803,1,4376_7778022_103108,4376_87 -4289_75971,267,4376_7022,Dublin Airport,106052803,1,4376_7778022_103108,4376_87 -4289_75971,268,4376_7023,Dublin Airport,106142803,1,4376_7778022_103108,4376_87 -4289_75971,269,4376_7024,Dublin Airport,106232803,1,4376_7778022_103108,4376_87 -4289_75971,259,4376_7025,Dublin Airport,105765495,1,4376_7778022_103108,4376_90 -4289_75971,270,4376_7026,Dublin Airport,105278163,1,4376_7778022_103102,4376_87 -4289_75971,146,4376_7027,Dublin Airport,105248163,1,4376_7778022_103102,4376_87 -4289_75971,271,4376_7028,Dublin Airport,105238163,1,4376_7778022_103102,4376_87 -4289_75971,115,4376_7029,Dublin Airport,105218163,1,4376_7778022_103102,4376_87 -4289_75960,261,4376_703,Dublin Airport,105321741,1,4376_7778022_103104,4376_3 -4289_75971,260,4376_7030,Carlton Court,105312879,1,4376_7778022_103106,4376_88 -4289_75971,261,4376_7031,Carlton Court,105322879,1,4376_7778022_103106,4376_88 -4289_75971,262,4376_7032,Carlton Court,105432879,1,4376_7778022_103106,4376_88 -4289_75971,263,4376_7033,Carlton Court,105542879,1,4376_7778022_103106,4376_88 -4289_75971,264,4376_7034,Carlton Court,105652879,1,4376_7778022_103106,4376_88 -4289_75971,265,4376_7035,Carlton Court,105812879,1,4376_7778022_103106,4376_88 -4289_75971,266,4376_7036,Carlton Court,105822879,1,4376_7778022_103106,4376_88 -4289_75971,267,4376_7037,Carlton Court,106052879,1,4376_7778022_103106,4376_88 -4289_75971,268,4376_7038,Carlton Court,106142879,1,4376_7778022_103106,4376_88 -4289_75971,269,4376_7039,Carlton Court,106232879,1,4376_7778022_103106,4376_88 -4289_75960,262,4376_704,Dublin Airport,105431741,1,4376_7778022_103104,4376_3 -4289_75971,259,4376_7040,Carlton Court,105765563,1,4376_7778022_103103,4376_91 -4289_75971,270,4376_7041,Carlton Court,105278229,1,4376_7778022_103104,4376_93 -4289_75971,146,4376_7042,Carlton Court,105248229,1,4376_7778022_103104,4376_93 -4289_75971,271,4376_7043,Carlton Court,105238229,1,4376_7778022_103104,4376_93 -4289_75971,115,4376_7044,Carlton Court,105218229,1,4376_7778022_103104,4376_93 -4289_75971,260,4376_7045,Dublin Airport,105312949,1,4376_7778022_103105,4376_87 -4289_75971,261,4376_7046,Dublin Airport,105322949,1,4376_7778022_103105,4376_87 -4289_75971,262,4376_7047,Dublin Airport,105432949,1,4376_7778022_103105,4376_87 -4289_75971,263,4376_7048,Dublin Airport,105542949,1,4376_7778022_103105,4376_87 -4289_75971,264,4376_7049,Dublin Airport,105652949,1,4376_7778022_103105,4376_87 -4289_75960,263,4376_705,Dublin Airport,105541741,1,4376_7778022_103104,4376_3 -4289_75971,265,4376_7050,Dublin Airport,105812949,1,4376_7778022_103105,4376_87 -4289_75971,266,4376_7051,Dublin Airport,105822949,1,4376_7778022_103105,4376_87 -4289_75971,267,4376_7052,Dublin Airport,106052949,1,4376_7778022_103105,4376_87 -4289_75971,268,4376_7053,Dublin Airport,106142949,1,4376_7778022_103105,4376_87 -4289_75971,269,4376_7054,Dublin Airport,106232949,1,4376_7778022_103105,4376_87 -4289_75971,259,4376_7055,Dublin Airport,105765625,1,4376_7778022_103106,4376_90 -4289_75971,270,4376_7056,Dublin Airport,105278281,1,4376_7778022_103108,4376_92 -4289_75971,146,4376_7057,Dublin Airport,105248281,1,4376_7778022_103108,4376_92 -4289_75971,271,4376_7058,Dublin Airport,105238281,1,4376_7778022_103108,4376_92 -4289_75971,115,4376_7059,Dublin Airport,105218281,1,4376_7778022_103108,4376_92 -4289_75960,264,4376_706,Dublin Airport,105651741,1,4376_7778022_103104,4376_3 -4289_75971,260,4376_7060,Carlton Court,105313001,1,4376_7778022_103102,4376_88 -4289_75971,261,4376_7061,Carlton Court,105323001,1,4376_7778022_103102,4376_88 -4289_75971,262,4376_7062,Carlton Court,105433001,1,4376_7778022_103102,4376_88 -4289_75971,263,4376_7063,Carlton Court,105543001,1,4376_7778022_103102,4376_88 -4289_75971,264,4376_7064,Carlton Court,105653001,1,4376_7778022_103102,4376_88 -4289_75971,265,4376_7065,Carlton Court,105813001,1,4376_7778022_103102,4376_88 -4289_75971,266,4376_7066,Carlton Court,105823001,1,4376_7778022_103102,4376_88 -4289_75971,267,4376_7067,Carlton Court,106053001,1,4376_7778022_103102,4376_88 -4289_75971,268,4376_7068,Carlton Court,106143001,1,4376_7778022_103102,4376_88 -4289_75971,269,4376_7069,Carlton Court,106233001,1,4376_7778022_103102,4376_88 -4289_75960,265,4376_707,Dublin Airport,105811741,1,4376_7778022_103104,4376_3 -4289_75971,259,4376_7070,Carlton Court,105765677,1,4376_7778022_103108,4376_91 -4289_75971,270,4376_7071,Carlton Court,105278331,1,4376_7778022_103105,4376_93 -4289_75971,146,4376_7072,Carlton Court,105248331,1,4376_7778022_103105,4376_93 -4289_75971,271,4376_7073,Carlton Court,105238331,1,4376_7778022_103105,4376_93 -4289_75971,115,4376_7074,Carlton Court,105218331,1,4376_7778022_103105,4376_93 -4289_75972,260,4376_7075,Portrane,105311076,0,4376_7778022_103106,4376_94 -4289_75972,261,4376_7076,Portrane,105321076,0,4376_7778022_103106,4376_94 -4289_75972,262,4376_7077,Portrane,105431076,0,4376_7778022_103106,4376_94 -4289_75972,263,4376_7078,Portrane,105541076,0,4376_7778022_103106,4376_94 -4289_75972,264,4376_7079,Portrane,105651076,0,4376_7778022_103106,4376_94 -4289_75960,266,4376_708,Dublin Airport,105821741,1,4376_7778022_103104,4376_3 -4289_75972,265,4376_7080,Portrane,105811076,0,4376_7778022_103106,4376_94 -4289_75972,266,4376_7081,Portrane,105821076,0,4376_7778022_103106,4376_94 -4289_75972,267,4376_7082,Portrane,106051076,0,4376_7778022_103106,4376_94 -4289_75972,268,4376_7083,Portrane,106141076,0,4376_7778022_103106,4376_94 -4289_75972,269,4376_7084,Portrane,106231076,0,4376_7778022_103106,4376_94 -4289_75972,259,4376_7085,Portrane,105764074,0,4376_7778022_103102,4376_94 -4289_75972,260,4376_7086,Portrane,105311140,0,4376_7778022_103102,4376_94 -4289_75972,261,4376_7087,Portrane,105321140,0,4376_7778022_103102,4376_94 -4289_75972,262,4376_7088,Portrane,105431140,0,4376_7778022_103102,4376_94 -4289_75972,263,4376_7089,Portrane,105541140,0,4376_7778022_103102,4376_94 -4289_75960,267,4376_709,Dublin Airport,106051741,1,4376_7778022_103104,4376_3 -4289_75972,264,4376_7090,Portrane,105651140,0,4376_7778022_103102,4376_94 -4289_75972,265,4376_7091,Portrane,105811140,0,4376_7778022_103102,4376_94 -4289_75972,266,4376_7092,Portrane,105821140,0,4376_7778022_103102,4376_94 -4289_75972,267,4376_7093,Portrane,106051140,0,4376_7778022_103102,4376_94 -4289_75972,268,4376_7094,Portrane,106141140,0,4376_7778022_103102,4376_94 -4289_75972,269,4376_7095,Portrane,106231140,0,4376_7778022_103102,4376_94 -4289_75972,260,4376_7096,Portrane,105311176,0,4376_7778022_103105,4376_94 -4289_75972,261,4376_7097,Portrane,105321176,0,4376_7778022_103105,4376_94 -4289_75972,262,4376_7098,Portrane,105431176,0,4376_7778022_103105,4376_94 -4289_75972,263,4376_7099,Portrane,105541176,0,4376_7778022_103105,4376_94 -4289_75960,264,4376_71,Sutton Station,105651382,0,4376_7778022_103107,4376_1 -4289_75960,268,4376_710,Dublin Airport,106141741,1,4376_7778022_103104,4376_3 -4289_75972,264,4376_7100,Portrane,105651176,0,4376_7778022_103105,4376_94 -4289_75972,265,4376_7101,Portrane,105811176,0,4376_7778022_103105,4376_94 -4289_75972,266,4376_7102,Portrane,105821176,0,4376_7778022_103105,4376_94 -4289_75972,267,4376_7103,Portrane,106051176,0,4376_7778022_103105,4376_94 -4289_75972,268,4376_7104,Portrane,106141176,0,4376_7778022_103105,4376_94 -4289_75972,269,4376_7105,Portrane,106231176,0,4376_7778022_103105,4376_94 -4289_75972,260,4376_7106,Portrane,105311230,0,4376_7778022_103106,4376_94 -4289_75972,261,4376_7107,Portrane,105321230,0,4376_7778022_103106,4376_94 -4289_75972,262,4376_7108,Portrane,105431230,0,4376_7778022_103106,4376_94 -4289_75972,263,4376_7109,Portrane,105541230,0,4376_7778022_103106,4376_94 -4289_75960,269,4376_711,Dublin Airport,106231741,1,4376_7778022_103104,4376_3 -4289_75972,264,4376_7110,Portrane,105651230,0,4376_7778022_103106,4376_94 -4289_75972,265,4376_7111,Portrane,105811230,0,4376_7778022_103106,4376_94 -4289_75972,266,4376_7112,Portrane,105821230,0,4376_7778022_103106,4376_94 -4289_75972,267,4376_7113,Portrane,106051230,0,4376_7778022_103106,4376_94 -4289_75972,268,4376_7114,Portrane,106141230,0,4376_7778022_103106,4376_94 -4289_75972,269,4376_7115,Portrane,106231230,0,4376_7778022_103106,4376_94 -4289_75972,259,4376_7116,Portrane,105764164,0,4376_7778022_103102,4376_94 -4289_75972,260,4376_7117,Portrane,105311360,0,4376_7778022_103103,4376_94 -4289_75972,261,4376_7118,Portrane,105321360,0,4376_7778022_103103,4376_94 -4289_75972,262,4376_7119,Portrane,105431360,0,4376_7778022_103103,4376_94 -4289_75960,259,4376_712,Dublin Airport,105764587,1,4376_7778022_103105,4376_4 -4289_75972,263,4376_7120,Portrane,105541360,0,4376_7778022_103103,4376_94 -4289_75972,264,4376_7121,Portrane,105651360,0,4376_7778022_103103,4376_94 -4289_75972,265,4376_7122,Portrane,105811360,0,4376_7778022_103103,4376_94 -4289_75972,266,4376_7123,Portrane,105821360,0,4376_7778022_103103,4376_94 -4289_75972,267,4376_7124,Portrane,106051360,0,4376_7778022_103103,4376_94 -4289_75972,268,4376_7125,Portrane,106141360,0,4376_7778022_103103,4376_94 -4289_75972,269,4376_7126,Portrane,106231360,0,4376_7778022_103103,4376_94 -4289_75972,270,4376_7127,Portrane,105277066,0,4376_7778022_103101,4376_94 -4289_75972,146,4376_7128,Portrane,105247066,0,4376_7778022_103101,4376_94 -4289_75972,271,4376_7129,Portrane,105237066,0,4376_7778022_103101,4376_94 -4289_75960,270,4376_713,Dublin Airport,105277359,1,4376_7778022_103502,4376_5 -4289_75972,115,4376_7130,Portrane,105217066,0,4376_7778022_103101,4376_94 -4289_75972,260,4376_7131,Seaview,105311414,0,4376_7778022_103105,4376_95 -4289_75972,261,4376_7132,Seaview,105321414,0,4376_7778022_103105,4376_95 -4289_75972,262,4376_7133,Seaview,105431414,0,4376_7778022_103105,4376_95 -4289_75972,263,4376_7134,Seaview,105541414,0,4376_7778022_103105,4376_95 -4289_75972,264,4376_7135,Seaview,105651414,0,4376_7778022_103105,4376_95 -4289_75972,265,4376_7136,Seaview,105811414,0,4376_7778022_103105,4376_95 -4289_75972,266,4376_7137,Seaview,105821414,0,4376_7778022_103105,4376_95 -4289_75972,267,4376_7138,Seaview,106051414,0,4376_7778022_103105,4376_95 -4289_75972,268,4376_7139,Seaview,106141414,0,4376_7778022_103105,4376_95 -4289_75960,146,4376_714,Dublin Airport,105247359,1,4376_7778022_103502,4376_5 -4289_75972,269,4376_7140,Seaview,106231414,0,4376_7778022_103105,4376_95 -4289_75972,259,4376_7141,Portrane,105764250,0,4376_7778022_103102,4376_94 -4289_75972,260,4376_7142,Portrane,105311476,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7143,Portrane,105321476,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7144,Portrane,105431476,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7145,Portrane,105541476,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7146,Portrane,105651476,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7147,Portrane,105811476,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7148,Portrane,105821476,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7149,Portrane,106051476,0,4376_7778022_103109,4376_94 -4289_75960,271,4376_715,Dublin Airport,105237359,1,4376_7778022_103502,4376_5 -4289_75972,268,4376_7150,Portrane,106141476,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7151,Portrane,106231476,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7152,Portrane,105764310,0,4376_7778022_103107,4376_96 -4289_75972,270,4376_7153,Portrane,105277134,0,4376_7778022_103101,4376_94 -4289_75972,146,4376_7154,Portrane,105247134,0,4376_7778022_103101,4376_94 -4289_75972,271,4376_7155,Portrane,105237134,0,4376_7778022_103101,4376_94 -4289_75972,115,4376_7156,Portrane,105217134,0,4376_7778022_103101,4376_94 -4289_75972,260,4376_7157,Seaview,105311532,0,4376_7778022_103105,4376_95 -4289_75972,261,4376_7158,Seaview,105321532,0,4376_7778022_103105,4376_95 -4289_75972,262,4376_7159,Seaview,105431532,0,4376_7778022_103105,4376_95 -4289_75960,115,4376_716,Dublin Airport,105217359,1,4376_7778022_103502,4376_5 -4289_75972,263,4376_7160,Seaview,105541532,0,4376_7778022_103105,4376_95 -4289_75972,264,4376_7161,Seaview,105651532,0,4376_7778022_103105,4376_95 -4289_75972,265,4376_7162,Seaview,105811532,0,4376_7778022_103105,4376_95 -4289_75972,266,4376_7163,Seaview,105821532,0,4376_7778022_103105,4376_95 -4289_75972,267,4376_7164,Seaview,106051532,0,4376_7778022_103105,4376_95 -4289_75972,268,4376_7165,Seaview,106141532,0,4376_7778022_103105,4376_95 -4289_75972,269,4376_7166,Seaview,106231532,0,4376_7778022_103105,4376_95 -4289_75972,259,4376_7167,Seaview,105764362,0,4376_7778022_103102,4376_95 -4289_75972,270,4376_7168,Portrane,105277180,0,4376_7778022_103107,4376_94 -4289_75972,146,4376_7169,Portrane,105247180,0,4376_7778022_103107,4376_94 -4289_75960,260,4376_717,Dublin Airport,105311799,1,4376_7778022_103102,4376_3 -4289_75972,271,4376_7170,Portrane,105237180,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7171,Portrane,105217180,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7172,Portrane,105311582,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7173,Portrane,105321582,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7174,Portrane,105431582,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7175,Portrane,105541582,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7176,Portrane,105651582,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7177,Portrane,105811582,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7178,Portrane,105821582,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7179,Portrane,106051582,0,4376_7778022_103109,4376_94 -4289_75960,261,4376_718,Dublin Airport,105321799,1,4376_7778022_103102,4376_3 -4289_75972,268,4376_7180,Portrane,106141582,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7181,Portrane,106231582,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7182,Portrane,105764408,0,4376_7778022_103107,4376_94 -4289_75972,270,4376_7183,Seaview,105277228,0,4376_7778022_103101,4376_95 -4289_75972,146,4376_7184,Seaview,105247228,0,4376_7778022_103101,4376_95 -4289_75972,271,4376_7185,Seaview,105237228,0,4376_7778022_103101,4376_95 -4289_75972,115,4376_7186,Seaview,105217228,0,4376_7778022_103101,4376_95 -4289_75972,260,4376_7187,Seaview,105311638,0,4376_7778022_103105,4376_95 -4289_75972,261,4376_7188,Seaview,105321638,0,4376_7778022_103105,4376_95 -4289_75972,262,4376_7189,Seaview,105431638,0,4376_7778022_103105,4376_95 -4289_75960,262,4376_719,Dublin Airport,105431799,1,4376_7778022_103102,4376_3 -4289_75972,263,4376_7190,Seaview,105541638,0,4376_7778022_103105,4376_95 -4289_75972,264,4376_7191,Seaview,105651638,0,4376_7778022_103105,4376_95 -4289_75972,265,4376_7192,Seaview,105811638,0,4376_7778022_103105,4376_95 -4289_75972,266,4376_7193,Seaview,105821638,0,4376_7778022_103105,4376_95 -4289_75972,267,4376_7194,Seaview,106051638,0,4376_7778022_103105,4376_95 -4289_75972,268,4376_7195,Seaview,106141638,0,4376_7778022_103105,4376_95 -4289_75972,269,4376_7196,Seaview,106231638,0,4376_7778022_103105,4376_95 -4289_75972,259,4376_7197,Seaview,105764460,0,4376_7778022_103102,4376_95 -4289_75972,260,4376_7198,Portrane,105311690,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7199,Portrane,105321690,0,4376_7778022_103109,4376_94 -4289_75960,265,4376_72,Sutton Station,105811382,0,4376_7778022_103107,4376_1 -4289_75960,263,4376_720,Dublin Airport,105541799,1,4376_7778022_103102,4376_3 -4289_75972,262,4376_7200,Portrane,105431690,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7201,Portrane,105541690,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7202,Portrane,105651690,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7203,Portrane,105811690,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7204,Portrane,105821690,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7205,Portrane,106051690,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7206,Portrane,106141690,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7207,Portrane,106231690,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7208,Portrane,105764512,0,4376_7778022_103107,4376_94 -4289_75972,270,4376_7209,Portrane,105277278,0,4376_7778022_103107,4376_94 -4289_75960,264,4376_721,Dublin Airport,105651799,1,4376_7778022_103102,4376_3 -4289_75972,146,4376_7210,Portrane,105247278,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7211,Portrane,105237278,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7212,Portrane,105217278,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7213,Seaview,105311744,0,4376_7778022_103105,4376_95 -4289_75972,261,4376_7214,Seaview,105321744,0,4376_7778022_103105,4376_95 -4289_75972,262,4376_7215,Seaview,105431744,0,4376_7778022_103105,4376_95 -4289_75972,263,4376_7216,Seaview,105541744,0,4376_7778022_103105,4376_95 -4289_75972,264,4376_7217,Seaview,105651744,0,4376_7778022_103105,4376_95 -4289_75972,265,4376_7218,Seaview,105811744,0,4376_7778022_103105,4376_95 -4289_75972,266,4376_7219,Seaview,105821744,0,4376_7778022_103105,4376_95 -4289_75960,265,4376_722,Dublin Airport,105811799,1,4376_7778022_103102,4376_3 -4289_75972,267,4376_7220,Seaview,106051744,0,4376_7778022_103105,4376_95 -4289_75972,268,4376_7221,Seaview,106141744,0,4376_7778022_103105,4376_95 -4289_75972,269,4376_7222,Seaview,106231744,0,4376_7778022_103105,4376_95 -4289_75972,259,4376_7223,Seaview,105764562,0,4376_7778022_103102,4376_95 -4289_75972,270,4376_7224,Seaview,105277324,0,4376_7778022_103101,4376_95 -4289_75972,146,4376_7225,Seaview,105247324,0,4376_7778022_103101,4376_95 -4289_75972,271,4376_7226,Seaview,105237324,0,4376_7778022_103101,4376_95 -4289_75972,115,4376_7227,Seaview,105217324,0,4376_7778022_103101,4376_95 -4289_75972,260,4376_7228,Portrane,105311804,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7229,Portrane,105321804,0,4376_7778022_103109,4376_94 -4289_75960,266,4376_723,Dublin Airport,105821799,1,4376_7778022_103102,4376_3 -4289_75972,262,4376_7230,Portrane,105431804,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7231,Portrane,105541804,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7232,Portrane,105651804,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7233,Portrane,105811804,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7234,Portrane,105821804,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7235,Portrane,106051804,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7236,Portrane,106141804,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7237,Portrane,106231804,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7238,Portrane,105764616,0,4376_7778022_103107,4376_94 -4289_75972,270,4376_7239,Portrane,105277370,0,4376_7778022_103107,4376_94 -4289_75960,267,4376_724,Dublin Airport,106051799,1,4376_7778022_103102,4376_3 -4289_75972,146,4376_7240,Portrane,105247370,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7241,Portrane,105237370,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7242,Portrane,105217370,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7243,Seaview,105311854,0,4376_7778022_103103,4376_95 -4289_75972,261,4376_7244,Seaview,105321854,0,4376_7778022_103103,4376_95 -4289_75972,262,4376_7245,Seaview,105431854,0,4376_7778022_103103,4376_95 -4289_75972,263,4376_7246,Seaview,105541854,0,4376_7778022_103103,4376_95 -4289_75972,264,4376_7247,Seaview,105651854,0,4376_7778022_103103,4376_95 -4289_75972,265,4376_7248,Seaview,105811854,0,4376_7778022_103103,4376_95 -4289_75972,266,4376_7249,Seaview,105821854,0,4376_7778022_103103,4376_95 -4289_75960,268,4376_725,Dublin Airport,106141799,1,4376_7778022_103102,4376_3 -4289_75972,267,4376_7250,Seaview,106051854,0,4376_7778022_103103,4376_95 -4289_75972,268,4376_7251,Seaview,106141854,0,4376_7778022_103103,4376_95 -4289_75972,269,4376_7252,Seaview,106231854,0,4376_7778022_103103,4376_95 -4289_75972,259,4376_7253,Seaview,105764666,0,4376_7778022_103102,4376_95 -4289_75972,270,4376_7254,Seaview,105277414,0,4376_7778022_103101,4376_95 -4289_75972,146,4376_7255,Seaview,105247414,0,4376_7778022_103101,4376_95 -4289_75972,271,4376_7256,Seaview,105237414,0,4376_7778022_103101,4376_95 -4289_75972,115,4376_7257,Seaview,105217414,0,4376_7778022_103101,4376_95 -4289_75972,260,4376_7258,Portrane,105311908,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7259,Portrane,105321908,0,4376_7778022_103109,4376_94 -4289_75960,269,4376_726,Dublin Airport,106231799,1,4376_7778022_103102,4376_3 -4289_75972,262,4376_7260,Portrane,105431908,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7261,Portrane,105541908,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7262,Portrane,105651908,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7263,Portrane,105811908,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7264,Portrane,105821908,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7265,Portrane,106051908,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7266,Portrane,106141908,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7267,Portrane,106231908,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7268,Portrane,105764718,0,4376_7778022_103107,4376_94 -4289_75972,270,4376_7269,Portrane,105277460,0,4376_7778022_103107,4376_94 -4289_75960,259,4376_727,Dublin Airport,105764643,1,4376_7778022_103503,4376_4 -4289_75972,146,4376_7270,Portrane,105247460,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7271,Portrane,105237460,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7272,Portrane,105217460,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7273,Seaview,105311966,0,4376_7778022_103103,4376_95 -4289_75972,261,4376_7274,Seaview,105321966,0,4376_7778022_103103,4376_95 -4289_75972,262,4376_7275,Seaview,105431966,0,4376_7778022_103103,4376_95 -4289_75972,263,4376_7276,Seaview,105541966,0,4376_7778022_103103,4376_95 -4289_75972,264,4376_7277,Seaview,105651966,0,4376_7778022_103103,4376_95 -4289_75972,265,4376_7278,Seaview,105811966,0,4376_7778022_103103,4376_95 -4289_75972,266,4376_7279,Seaview,105821966,0,4376_7778022_103103,4376_95 -4289_75960,270,4376_728,Dublin Airport,105277407,1,4376_7778022_103503,4376_5 -4289_75972,267,4376_7280,Seaview,106051966,0,4376_7778022_103103,4376_95 -4289_75972,268,4376_7281,Seaview,106141966,0,4376_7778022_103103,4376_95 -4289_75972,269,4376_7282,Seaview,106231966,0,4376_7778022_103103,4376_95 -4289_75972,259,4376_7283,Seaview,105764770,0,4376_7778022_103102,4376_95 -4289_75972,270,4376_7284,Seaview,105277508,0,4376_7778022_103101,4376_95 -4289_75972,146,4376_7285,Seaview,105247508,0,4376_7778022_103101,4376_95 -4289_75972,271,4376_7286,Seaview,105237508,0,4376_7778022_103101,4376_95 -4289_75972,115,4376_7287,Seaview,105217508,0,4376_7778022_103101,4376_95 -4289_75972,260,4376_7288,Portrane,105312020,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7289,Portrane,105322020,0,4376_7778022_103109,4376_94 -4289_75960,146,4376_729,Dublin Airport,105247407,1,4376_7778022_103503,4376_5 -4289_75972,262,4376_7290,Portrane,105432020,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7291,Portrane,105542020,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7292,Portrane,105652020,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7293,Portrane,105812020,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7294,Portrane,105822020,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7295,Portrane,106052020,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7296,Portrane,106142020,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7297,Portrane,106232020,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7298,Portrane,105764820,0,4376_7778022_103107,4376_94 -4289_75972,270,4376_7299,Portrane,105277550,0,4376_7778022_103107,4376_94 -4289_75960,266,4376_73,Sutton Station,105821382,0,4376_7778022_103107,4376_1 -4289_75960,271,4376_730,Dublin Airport,105237407,1,4376_7778022_103503,4376_5 -4289_75972,146,4376_7300,Portrane,105247550,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7301,Portrane,105237550,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7302,Portrane,105217550,0,4376_7778022_103107,4376_94 -4289_75972,259,4376_7303,Seaview,105764872,0,4376_7778022_103102,4376_95 -4289_75972,270,4376_7304,Seaview,105277596,0,4376_7778022_103101,4376_95 -4289_75972,146,4376_7305,Seaview,105247596,0,4376_7778022_103101,4376_95 -4289_75972,271,4376_7306,Seaview,105237596,0,4376_7778022_103101,4376_95 -4289_75972,115,4376_7307,Seaview,105217596,0,4376_7778022_103101,4376_95 -4289_75972,260,4376_7308,Seaview,105312126,0,4376_7778022_103103,4376_95 -4289_75972,261,4376_7309,Seaview,105322126,0,4376_7778022_103103,4376_95 -4289_75960,115,4376_731,Dublin Airport,105217407,1,4376_7778022_103503,4376_5 -4289_75972,262,4376_7310,Seaview,105432126,0,4376_7778022_103103,4376_95 -4289_75972,263,4376_7311,Seaview,105542126,0,4376_7778022_103103,4376_95 -4289_75972,264,4376_7312,Seaview,105652126,0,4376_7778022_103103,4376_95 -4289_75972,265,4376_7313,Seaview,105812126,0,4376_7778022_103103,4376_95 -4289_75972,266,4376_7314,Seaview,105822126,0,4376_7778022_103103,4376_95 -4289_75972,267,4376_7315,Seaview,106052126,0,4376_7778022_103103,4376_95 -4289_75972,268,4376_7316,Seaview,106142126,0,4376_7778022_103103,4376_95 -4289_75972,269,4376_7317,Seaview,106232126,0,4376_7778022_103103,4376_95 -4289_75972,259,4376_7318,Portrane,105764926,0,4376_7778022_103107,4376_94 -4289_75972,270,4376_7319,Portrane,105277652,0,4376_7778022_103107,4376_94 -4289_75960,260,4376_732,Dublin Airport,105311855,1,4376_7778022_103106,4376_3 -4289_75972,146,4376_7320,Portrane,105247652,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7321,Portrane,105237652,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7322,Portrane,105217652,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7323,Portrane,105312174,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7324,Portrane,105322174,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7325,Portrane,105432174,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7326,Portrane,105542174,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7327,Portrane,105652174,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7328,Portrane,105812174,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7329,Portrane,105822174,0,4376_7778022_103109,4376_94 -4289_75960,261,4376_733,Dublin Airport,105321855,1,4376_7778022_103106,4376_3 -4289_75972,267,4376_7330,Portrane,106052174,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7331,Portrane,106142174,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7332,Portrane,106232174,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7333,Seaview,105764982,0,4376_7778022_103102,4376_95 -4289_75972,270,4376_7334,Seaview,105277698,0,4376_7778022_103101,4376_95 -4289_75972,146,4376_7335,Seaview,105247698,0,4376_7778022_103101,4376_95 -4289_75972,271,4376_7336,Seaview,105237698,0,4376_7778022_103101,4376_95 -4289_75972,115,4376_7337,Seaview,105217698,0,4376_7778022_103101,4376_95 -4289_75972,260,4376_7338,Seaview,105312256,0,4376_7778022_103103,4376_95 -4289_75972,261,4376_7339,Seaview,105322256,0,4376_7778022_103103,4376_95 -4289_75960,262,4376_734,Dublin Airport,105431855,1,4376_7778022_103106,4376_3 -4289_75972,262,4376_7340,Seaview,105432256,0,4376_7778022_103103,4376_95 -4289_75972,263,4376_7341,Seaview,105542256,0,4376_7778022_103103,4376_95 -4289_75972,264,4376_7342,Seaview,105652256,0,4376_7778022_103103,4376_95 -4289_75972,265,4376_7343,Seaview,105812256,0,4376_7778022_103103,4376_95 -4289_75972,266,4376_7344,Seaview,105822256,0,4376_7778022_103103,4376_95 -4289_75972,267,4376_7345,Seaview,106052256,0,4376_7778022_103103,4376_95 -4289_75972,268,4376_7346,Seaview,106142256,0,4376_7778022_103103,4376_95 -4289_75972,269,4376_7347,Seaview,106232256,0,4376_7778022_103103,4376_95 -4289_75972,259,4376_7348,Portrane,105765038,0,4376_7778022_103107,4376_94 -4289_75972,270,4376_7349,Portrane,105277746,0,4376_7778022_103107,4376_94 -4289_75960,263,4376_735,Dublin Airport,105541855,1,4376_7778022_103106,4376_3 -4289_75972,146,4376_7350,Portrane,105247746,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7351,Portrane,105237746,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7352,Portrane,105217746,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7353,Portrane,105312318,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7354,Portrane,105322318,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7355,Portrane,105432318,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7356,Portrane,105542318,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7357,Portrane,105652318,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7358,Portrane,105812318,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7359,Portrane,105822318,0,4376_7778022_103109,4376_94 -4289_75960,264,4376_736,Dublin Airport,105651855,1,4376_7778022_103106,4376_3 -4289_75972,267,4376_7360,Portrane,106052318,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7361,Portrane,106142318,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7362,Portrane,106232318,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7363,Seaview,105765106,0,4376_7778022_103102,4376_95 -4289_75972,270,4376_7364,Seaview,105277804,0,4376_7778022_103101,4376_95 -4289_75972,146,4376_7365,Seaview,105247804,0,4376_7778022_103101,4376_95 -4289_75972,271,4376_7366,Seaview,105237804,0,4376_7778022_103101,4376_95 -4289_75972,115,4376_7367,Seaview,105217804,0,4376_7778022_103101,4376_95 -4289_75972,260,4376_7368,Seaview,105312386,0,4376_7778022_103103,4376_95 -4289_75972,261,4376_7369,Seaview,105322386,0,4376_7778022_103103,4376_95 -4289_75960,265,4376_737,Dublin Airport,105811855,1,4376_7778022_103106,4376_3 -4289_75972,262,4376_7370,Seaview,105432386,0,4376_7778022_103103,4376_95 -4289_75972,263,4376_7371,Seaview,105542386,0,4376_7778022_103103,4376_95 -4289_75972,264,4376_7372,Seaview,105652386,0,4376_7778022_103103,4376_95 -4289_75972,265,4376_7373,Seaview,105812386,0,4376_7778022_103103,4376_95 -4289_75972,266,4376_7374,Seaview,105822386,0,4376_7778022_103103,4376_95 -4289_75972,267,4376_7375,Seaview,106052386,0,4376_7778022_103103,4376_95 -4289_75972,268,4376_7376,Seaview,106142386,0,4376_7778022_103103,4376_95 -4289_75972,269,4376_7377,Seaview,106232386,0,4376_7778022_103103,4376_95 -4289_75972,259,4376_7378,Portrane,105765162,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7379,Portrane,105312456,0,4376_7778022_103109,4376_94 -4289_75960,266,4376_738,Dublin Airport,105821855,1,4376_7778022_103106,4376_3 -4289_75972,261,4376_7380,Portrane,105322456,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7381,Portrane,105432456,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7382,Portrane,105542456,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7383,Portrane,105652456,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7384,Portrane,105812456,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7385,Portrane,105822456,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7386,Portrane,106052456,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7387,Portrane,106142456,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7388,Portrane,106232456,0,4376_7778022_103109,4376_94 -4289_75972,270,4376_7389,Portrane,105277872,0,4376_7778022_103107,4376_94 -4289_75960,267,4376_739,Dublin Airport,106051855,1,4376_7778022_103106,4376_3 -4289_75972,146,4376_7390,Portrane,105247872,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7391,Portrane,105237872,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7392,Portrane,105217872,0,4376_7778022_103107,4376_94 -4289_75972,259,4376_7393,Seaview,105765222,0,4376_7778022_103102,4376_95 -4289_75972,260,4376_7394,Seaview,105312520,0,4376_7778022_103103,4376_95 -4289_75972,261,4376_7395,Seaview,105322520,0,4376_7778022_103103,4376_95 -4289_75972,262,4376_7396,Seaview,105432520,0,4376_7778022_103103,4376_95 -4289_75972,263,4376_7397,Seaview,105542520,0,4376_7778022_103103,4376_95 -4289_75972,264,4376_7398,Seaview,105652520,0,4376_7778022_103103,4376_95 -4289_75972,265,4376_7399,Seaview,105812520,0,4376_7778022_103103,4376_95 -4289_75960,267,4376_74,Sutton Station,106051382,0,4376_7778022_103107,4376_1 -4289_75960,268,4376_740,Dublin Airport,106141855,1,4376_7778022_103106,4376_3 -4289_75972,266,4376_7400,Seaview,105822520,0,4376_7778022_103103,4376_95 -4289_75972,267,4376_7401,Seaview,106052520,0,4376_7778022_103103,4376_95 -4289_75972,268,4376_7402,Seaview,106142520,0,4376_7778022_103103,4376_95 -4289_75972,269,4376_7403,Seaview,106232520,0,4376_7778022_103103,4376_95 -4289_75972,260,4376_7404,Portrane,105312596,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7405,Portrane,105322596,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7406,Portrane,105432596,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7407,Portrane,105542596,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7408,Portrane,105652596,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7409,Portrane,105812596,0,4376_7778022_103109,4376_94 -4289_75960,269,4376_741,Dublin Airport,106231855,1,4376_7778022_103106,4376_3 -4289_75972,266,4376_7410,Portrane,105822596,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7411,Portrane,106052596,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7412,Portrane,106142596,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7413,Portrane,106232596,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7414,Portrane,105765312,0,4376_7778022_103107,4376_96 -4289_75972,270,4376_7415,Portrane,105277992,0,4376_7778022_103107,4376_94 -4289_75972,146,4376_7416,Portrane,105247992,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7417,Portrane,105237992,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7418,Portrane,105217992,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7419,Portrane,105312700,0,4376_7778022_103109,4376_94 -4289_75960,259,4376_742,Dublin Airport,105764691,1,4376_7778022_103106,4376_4 -4289_75972,261,4376_7420,Portrane,105322700,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7421,Portrane,105432700,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7422,Portrane,105542700,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7423,Portrane,105652700,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7424,Portrane,105812700,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7425,Portrane,105822700,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7426,Portrane,106052700,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7427,Portrane,106142700,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7428,Portrane,106232700,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7429,Portrane,105765402,0,4376_7778022_103107,4376_94 -4289_75960,270,4376_743,Dublin Airport,105277453,1,4376_7778022_103108,4376_3 -4289_75972,270,4376_7430,Portrane,105278070,0,4376_7778022_103107,4376_94 -4289_75972,146,4376_7431,Portrane,105248070,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7432,Portrane,105238070,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7433,Portrane,105218070,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7434,Portrane,105312800,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7435,Portrane,105322800,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7436,Portrane,105432800,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7437,Portrane,105542800,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7438,Portrane,105652800,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7439,Portrane,105812800,0,4376_7778022_103109,4376_94 -4289_75960,146,4376_744,Dublin Airport,105247453,1,4376_7778022_103108,4376_3 -4289_75972,266,4376_7440,Portrane,105822800,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7441,Portrane,106052800,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7442,Portrane,106142800,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7443,Portrane,106232800,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7444,Portrane,105765488,0,4376_7778022_103107,4376_94 -4289_75972,270,4376_7445,Portrane,105278148,0,4376_7778022_103107,4376_94 -4289_75972,146,4376_7446,Portrane,105248148,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7447,Portrane,105238148,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7448,Portrane,105218148,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7449,Portrane,105312892,0,4376_7778022_103109,4376_94 -4289_75960,271,4376_745,Dublin Airport,105237453,1,4376_7778022_103108,4376_3 -4289_75972,261,4376_7450,Portrane,105322892,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7451,Portrane,105432892,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7452,Portrane,105542892,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7453,Portrane,105652892,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7454,Portrane,105812892,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7455,Portrane,105822892,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7456,Portrane,106052892,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7457,Portrane,106142892,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7458,Portrane,106232892,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7459,Portrane,105765572,0,4376_7778022_103107,4376_94 -4289_75960,115,4376_746,Dublin Airport,105217453,1,4376_7778022_103108,4376_3 -4289_75972,270,4376_7460,Portrane,105278224,0,4376_7778022_103107,4376_94 -4289_75972,146,4376_7461,Portrane,105248224,0,4376_7778022_103107,4376_94 -4289_75972,271,4376_7462,Portrane,105238224,0,4376_7778022_103107,4376_94 -4289_75972,115,4376_7463,Portrane,105218224,0,4376_7778022_103107,4376_94 -4289_75972,260,4376_7464,Portrane,105312978,0,4376_7778022_103109,4376_94 -4289_75972,261,4376_7465,Portrane,105322978,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7466,Portrane,105432978,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7467,Portrane,105542978,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7468,Portrane,105652978,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7469,Portrane,105812978,0,4376_7778022_103109,4376_94 -4289_75960,260,4376_747,Dublin Airport,105311913,1,4376_7778022_103108,4376_3 -4289_75972,266,4376_7470,Portrane,105822978,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7471,Portrane,106052978,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7472,Portrane,106142978,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7473,Portrane,106232978,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7474,Portrane,105765650,0,4376_7778022_103107,4376_96 -4289_75972,270,4376_7475,Portrane,105278294,0,4376_7778022_103107,4376_96 -4289_75972,146,4376_7476,Portrane,105248294,0,4376_7778022_103107,4376_96 -4289_75972,271,4376_7477,Portrane,105238294,0,4376_7778022_103107,4376_96 -4289_75972,115,4376_7478,Portrane,105218294,0,4376_7778022_103107,4376_96 -4289_75972,260,4376_7479,Portrane,105313012,0,4376_7778022_103109,4376_94 -4289_75960,261,4376_748,Dublin Airport,105321913,1,4376_7778022_103108,4376_3 -4289_75972,261,4376_7480,Portrane,105323012,0,4376_7778022_103109,4376_94 -4289_75972,262,4376_7481,Portrane,105433012,0,4376_7778022_103109,4376_94 -4289_75972,263,4376_7482,Portrane,105543012,0,4376_7778022_103109,4376_94 -4289_75972,264,4376_7483,Portrane,105653012,0,4376_7778022_103109,4376_94 -4289_75972,265,4376_7484,Portrane,105813012,0,4376_7778022_103109,4376_94 -4289_75972,266,4376_7485,Portrane,105823012,0,4376_7778022_103109,4376_94 -4289_75972,267,4376_7486,Portrane,106053012,0,4376_7778022_103109,4376_94 -4289_75972,268,4376_7487,Portrane,106143012,0,4376_7778022_103109,4376_94 -4289_75972,269,4376_7488,Portrane,106233012,0,4376_7778022_103109,4376_94 -4289_75972,259,4376_7489,Portrane,105765684,0,4376_7778022_103107,4376_96 -4289_75960,262,4376_749,Dublin Airport,105431913,1,4376_7778022_103108,4376_3 -4289_75972,270,4376_7490,Portrane,105278326,0,4376_7778022_103107,4376_96 -4289_75972,146,4376_7491,Portrane,105248326,0,4376_7778022_103107,4376_96 -4289_75972,271,4376_7492,Portrane,105238326,0,4376_7778022_103107,4376_96 -4289_75972,115,4376_7493,Portrane,105218326,0,4376_7778022_103107,4376_96 -4289_75972,260,4376_7494,Swords Pavilions,105311045,1,4376_7778022_103102,4376_97 -4289_75972,261,4376_7495,Swords Pavilions,105321045,1,4376_7778022_103102,4376_97 -4289_75972,262,4376_7496,Swords Pavilions,105431045,1,4376_7778022_103102,4376_97 -4289_75972,263,4376_7497,Swords Pavilions,105541045,1,4376_7778022_103102,4376_97 -4289_75972,264,4376_7498,Swords Pavilions,105651045,1,4376_7778022_103102,4376_97 -4289_75972,265,4376_7499,Swords Pavilions,105811045,1,4376_7778022_103102,4376_97 -4289_75960,268,4376_75,Sutton Station,106141382,0,4376_7778022_103107,4376_1 -4289_75960,263,4376_750,Dublin Airport,105541913,1,4376_7778022_103108,4376_3 -4289_75972,266,4376_7500,Swords Pavilions,105821045,1,4376_7778022_103102,4376_97 -4289_75972,267,4376_7501,Swords Pavilions,106051045,1,4376_7778022_103102,4376_97 -4289_75972,268,4376_7502,Swords Pavilions,106141045,1,4376_7778022_103102,4376_97 -4289_75972,269,4376_7503,Swords Pavilions,106231045,1,4376_7778022_103102,4376_97 -4289_75972,259,4376_7504,Swords Pavilions,105764037,1,4376_7778022_103102,4376_97 -4289_75972,260,4376_7505,Swords Pavilions,105311095,1,4376_7778022_103105,4376_97 -4289_75972,261,4376_7506,Swords Pavilions,105321095,1,4376_7778022_103105,4376_97 -4289_75972,262,4376_7507,Swords Pavilions,105431095,1,4376_7778022_103105,4376_97 -4289_75972,263,4376_7508,Swords Pavilions,105541095,1,4376_7778022_103105,4376_97 -4289_75972,264,4376_7509,Swords Pavilions,105651095,1,4376_7778022_103105,4376_97 -4289_75960,264,4376_751,Dublin Airport,105651913,1,4376_7778022_103108,4376_3 -4289_75972,265,4376_7510,Swords Pavilions,105811095,1,4376_7778022_103105,4376_97 -4289_75972,266,4376_7511,Swords Pavilions,105821095,1,4376_7778022_103105,4376_97 -4289_75972,267,4376_7512,Swords Pavilions,106051095,1,4376_7778022_103105,4376_97 -4289_75972,268,4376_7513,Swords Pavilions,106141095,1,4376_7778022_103105,4376_97 -4289_75972,269,4376_7514,Swords Pavilions,106231095,1,4376_7778022_103105,4376_97 -4289_75972,260,4376_7515,Swords Pavilions,105311127,1,4376_7778022_103106,4376_97 -4289_75972,261,4376_7516,Swords Pavilions,105321127,1,4376_7778022_103106,4376_97 -4289_75972,262,4376_7517,Swords Pavilions,105431127,1,4376_7778022_103106,4376_97 -4289_75972,263,4376_7518,Swords Pavilions,105541127,1,4376_7778022_103106,4376_97 -4289_75972,264,4376_7519,Swords Pavilions,105651127,1,4376_7778022_103106,4376_97 -4289_75960,265,4376_752,Dublin Airport,105811913,1,4376_7778022_103108,4376_3 -4289_75972,265,4376_7520,Swords Pavilions,105811127,1,4376_7778022_103106,4376_97 -4289_75972,266,4376_7521,Swords Pavilions,105821127,1,4376_7778022_103106,4376_97 -4289_75972,267,4376_7522,Swords Pavilions,106051127,1,4376_7778022_103106,4376_97 -4289_75972,268,4376_7523,Swords Pavilions,106141127,1,4376_7778022_103106,4376_97 -4289_75972,269,4376_7524,Swords Pavilions,106231127,1,4376_7778022_103106,4376_97 -4289_75972,259,4376_7525,Swords Pavilions,105764109,1,4376_7778022_103102,4376_97 -4289_75972,260,4376_7526,Swords Pavilions,105311183,1,4376_7778022_103102,4376_97 -4289_75972,261,4376_7527,Swords Pavilions,105321183,1,4376_7778022_103102,4376_97 -4289_75972,262,4376_7528,Swords Pavilions,105431183,1,4376_7778022_103102,4376_97 -4289_75972,263,4376_7529,Swords Pavilions,105541183,1,4376_7778022_103102,4376_97 -4289_75960,266,4376_753,Dublin Airport,105821913,1,4376_7778022_103108,4376_3 -4289_75972,264,4376_7530,Swords Pavilions,105651183,1,4376_7778022_103102,4376_97 -4289_75972,265,4376_7531,Swords Pavilions,105811183,1,4376_7778022_103102,4376_97 -4289_75972,266,4376_7532,Swords Pavilions,105821183,1,4376_7778022_103102,4376_97 -4289_75972,267,4376_7533,Swords Pavilions,106051183,1,4376_7778022_103102,4376_97 -4289_75972,268,4376_7534,Swords Pavilions,106141183,1,4376_7778022_103102,4376_97 -4289_75972,269,4376_7535,Swords Pavilions,106231183,1,4376_7778022_103102,4376_97 -4289_75972,260,4376_7536,Swords Pavilions,105311239,1,4376_7778022_103105,4376_97 -4289_75972,261,4376_7537,Swords Pavilions,105321239,1,4376_7778022_103105,4376_97 -4289_75972,262,4376_7538,Swords Pavilions,105431239,1,4376_7778022_103105,4376_97 -4289_75972,263,4376_7539,Swords Pavilions,105541239,1,4376_7778022_103105,4376_97 -4289_75960,267,4376_754,Dublin Airport,106051913,1,4376_7778022_103108,4376_3 -4289_75972,264,4376_7540,Swords Pavilions,105651239,1,4376_7778022_103105,4376_97 -4289_75972,265,4376_7541,Swords Pavilions,105811239,1,4376_7778022_103105,4376_97 -4289_75972,266,4376_7542,Swords Pavilions,105821239,1,4376_7778022_103105,4376_97 -4289_75972,267,4376_7543,Swords Pavilions,106051239,1,4376_7778022_103105,4376_97 -4289_75972,268,4376_7544,Swords Pavilions,106141239,1,4376_7778022_103105,4376_97 -4289_75972,269,4376_7545,Swords Pavilions,106231239,1,4376_7778022_103105,4376_97 -4289_75972,270,4376_7546,Swords Pavilions,105277033,1,4376_7778022_103101,4376_97 -4289_75972,146,4376_7547,Swords Pavilions,105247033,1,4376_7778022_103101,4376_97 -4289_75972,271,4376_7548,Swords Pavilions,105237033,1,4376_7778022_103101,4376_97 -4289_75972,115,4376_7549,Swords Pavilions,105217033,1,4376_7778022_103101,4376_97 -4289_75960,268,4376_755,Dublin Airport,106141913,1,4376_7778022_103108,4376_3 -4289_75972,260,4376_7550,Swords Pavilions,105311293,1,4376_7778022_103106,4376_97 -4289_75972,261,4376_7551,Swords Pavilions,105321293,1,4376_7778022_103106,4376_97 -4289_75972,262,4376_7552,Swords Pavilions,105431293,1,4376_7778022_103106,4376_97 -4289_75972,263,4376_7553,Swords Pavilions,105541293,1,4376_7778022_103106,4376_97 -4289_75972,264,4376_7554,Swords Pavilions,105651293,1,4376_7778022_103106,4376_97 -4289_75972,265,4376_7555,Swords Pavilions,105811293,1,4376_7778022_103106,4376_97 -4289_75972,266,4376_7556,Swords Pavilions,105821293,1,4376_7778022_103106,4376_97 -4289_75972,267,4376_7557,Swords Pavilions,106051293,1,4376_7778022_103106,4376_97 -4289_75972,268,4376_7558,Swords Pavilions,106141293,1,4376_7778022_103106,4376_97 -4289_75972,269,4376_7559,Swords Pavilions,106231293,1,4376_7778022_103106,4376_97 -4289_75960,269,4376_756,Dublin Airport,106231913,1,4376_7778022_103108,4376_3 -4289_75972,259,4376_7560,Swords Pavilions,105764193,1,4376_7778022_103102,4376_97 -4289_75972,260,4376_7561,Swords Pavilions,105311377,1,4376_7778022_103103,4376_97 -4289_75972,261,4376_7562,Swords Pavilions,105321377,1,4376_7778022_103103,4376_97 -4289_75972,262,4376_7563,Swords Pavilions,105431377,1,4376_7778022_103103,4376_97 -4289_75972,263,4376_7564,Swords Pavilions,105541377,1,4376_7778022_103103,4376_97 -4289_75972,264,4376_7565,Swords Pavilions,105651377,1,4376_7778022_103103,4376_97 -4289_75972,265,4376_7566,Swords Pavilions,105811377,1,4376_7778022_103103,4376_97 -4289_75972,266,4376_7567,Swords Pavilions,105821377,1,4376_7778022_103103,4376_97 -4289_75972,267,4376_7568,Swords Pavilions,106051377,1,4376_7778022_103103,4376_97 -4289_75972,268,4376_7569,Swords Pavilions,106141377,1,4376_7778022_103103,4376_97 -4289_75960,259,4376_757,Dublin Airport,105764743,1,4376_7778022_103108,4376_4 -4289_75972,269,4376_7570,Swords Pavilions,106231377,1,4376_7778022_103103,4376_97 -4289_75972,270,4376_7571,Swords Pavilions,105277093,1,4376_7778022_103101,4376_97 -4289_75972,146,4376_7572,Swords Pavilions,105247093,1,4376_7778022_103101,4376_97 -4289_75972,271,4376_7573,Swords Pavilions,105237093,1,4376_7778022_103101,4376_97 -4289_75972,115,4376_7574,Swords Pavilions,105217093,1,4376_7778022_103101,4376_97 -4289_75972,259,4376_7575,Swords Pavilions,105764281,1,4376_7778022_103102,4376_97 -4289_75972,260,4376_7576,Swords Pavilions,105311419,1,4376_7778022_103105,4376_98 -4289_75972,261,4376_7577,Swords Pavilions,105321419,1,4376_7778022_103105,4376_98 -4289_75972,262,4376_7578,Swords Pavilions,105431419,1,4376_7778022_103105,4376_98 -4289_75972,263,4376_7579,Swords Pavilions,105541419,1,4376_7778022_103105,4376_98 -4289_75960,270,4376_758,Dublin Airport,105277499,1,4376_7778022_103501,4376_3 -4289_75972,264,4376_7580,Swords Pavilions,105651419,1,4376_7778022_103105,4376_98 -4289_75972,265,4376_7581,Swords Pavilions,105811419,1,4376_7778022_103105,4376_98 -4289_75972,266,4376_7582,Swords Pavilions,105821419,1,4376_7778022_103105,4376_98 -4289_75972,267,4376_7583,Swords Pavilions,106051419,1,4376_7778022_103105,4376_98 -4289_75972,268,4376_7584,Swords Pavilions,106141419,1,4376_7778022_103105,4376_98 -4289_75972,269,4376_7585,Swords Pavilions,106231419,1,4376_7778022_103105,4376_98 -4289_75972,259,4376_7586,Swords Pavilions,105764341,1,4376_7778022_103107,4376_97 -4289_75972,260,4376_7587,Swords Pavilions,105311483,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7588,Swords Pavilions,105321483,1,4376_7778022_103109,4376_99 -4289_75972,262,4376_7589,Swords Pavilions,105431483,1,4376_7778022_103109,4376_99 -4289_75960,146,4376_759,Dublin Airport,105247499,1,4376_7778022_103501,4376_3 -4289_75972,263,4376_7590,Swords Pavilions,105541483,1,4376_7778022_103109,4376_99 -4289_75972,264,4376_7591,Swords Pavilions,105651483,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7592,Swords Pavilions,105811483,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7593,Swords Pavilions,105821483,1,4376_7778022_103109,4376_99 -4289_75972,267,4376_7594,Swords Pavilions,106051483,1,4376_7778022_103109,4376_99 -4289_75972,268,4376_7595,Swords Pavilions,106141483,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7596,Swords Pavilions,106231483,1,4376_7778022_103109,4376_99 -4289_75972,270,4376_7597,Swords Pavilions,105277175,1,4376_7778022_103101,4376_97 -4289_75972,146,4376_7598,Swords Pavilions,105247175,1,4376_7778022_103101,4376_97 -4289_75972,271,4376_7599,Swords Pavilions,105237175,1,4376_7778022_103101,4376_97 -4289_75960,269,4376_76,Sutton Station,106231382,0,4376_7778022_103107,4376_1 -4289_75960,271,4376_760,Dublin Airport,105237499,1,4376_7778022_103501,4376_3 -4289_75972,115,4376_7600,Swords Pavilions,105217175,1,4376_7778022_103101,4376_97 -4289_75972,260,4376_7601,Swords Pavilions,105311539,1,4376_7778022_103105,4376_98 -4289_75972,261,4376_7602,Swords Pavilions,105321539,1,4376_7778022_103105,4376_98 -4289_75972,262,4376_7603,Swords Pavilions,105431539,1,4376_7778022_103105,4376_98 -4289_75972,263,4376_7604,Swords Pavilions,105541539,1,4376_7778022_103105,4376_98 -4289_75972,264,4376_7605,Swords Pavilions,105651539,1,4376_7778022_103105,4376_98 -4289_75972,265,4376_7606,Swords Pavilions,105811539,1,4376_7778022_103105,4376_98 -4289_75972,266,4376_7607,Swords Pavilions,105821539,1,4376_7778022_103105,4376_98 -4289_75972,267,4376_7608,Swords Pavilions,106051539,1,4376_7778022_103105,4376_98 -4289_75972,268,4376_7609,Swords Pavilions,106141539,1,4376_7778022_103105,4376_98 -4289_75960,115,4376_761,Dublin Airport,105217499,1,4376_7778022_103501,4376_3 -4289_75972,269,4376_7610,Swords Pavilions,106231539,1,4376_7778022_103105,4376_98 -4289_75972,259,4376_7611,Swords Pavilions,105764393,1,4376_7778022_103102,4376_100 -4289_75972,270,4376_7612,Swords Pavilions,105277223,1,4376_7778022_103107,4376_97 -4289_75972,146,4376_7613,Swords Pavilions,105247223,1,4376_7778022_103107,4376_97 -4289_75972,271,4376_7614,Swords Pavilions,105237223,1,4376_7778022_103107,4376_97 -4289_75972,115,4376_7615,Swords Pavilions,105217223,1,4376_7778022_103107,4376_97 -4289_75972,260,4376_7616,Swords Pavilions,105311591,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7617,Swords Pavilions,105321591,1,4376_7778022_103109,4376_99 -4289_75972,262,4376_7618,Swords Pavilions,105431591,1,4376_7778022_103109,4376_99 -4289_75972,263,4376_7619,Swords Pavilions,105541591,1,4376_7778022_103109,4376_99 -4289_75960,260,4376_762,Dublin Airport,105311967,1,4376_7778022_103502,4376_3 -4289_75972,264,4376_7620,Swords Pavilions,105651591,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7621,Swords Pavilions,105811591,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7622,Swords Pavilions,105821591,1,4376_7778022_103109,4376_99 -4289_75972,267,4376_7623,Swords Pavilions,106051591,1,4376_7778022_103109,4376_99 -4289_75972,268,4376_7624,Swords Pavilions,106141591,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7625,Swords Pavilions,106231591,1,4376_7778022_103109,4376_99 -4289_75972,259,4376_7626,Swords Pavilions,105764443,1,4376_7778022_103107,4376_101 -4289_75972,270,4376_7627,Swords Pavilions,105277267,1,4376_7778022_103101,4376_98 -4289_75972,146,4376_7628,Swords Pavilions,105247267,1,4376_7778022_103101,4376_98 -4289_75972,271,4376_7629,Swords Pavilions,105237267,1,4376_7778022_103101,4376_98 -4289_75960,261,4376_763,Dublin Airport,105321967,1,4376_7778022_103502,4376_3 -4289_75972,115,4376_7630,Swords Pavilions,105217267,1,4376_7778022_103101,4376_98 -4289_75972,260,4376_7631,Swords Pavilions,105311645,1,4376_7778022_103105,4376_98 -4289_75972,261,4376_7632,Swords Pavilions,105321645,1,4376_7778022_103105,4376_98 -4289_75972,262,4376_7633,Swords Pavilions,105431645,1,4376_7778022_103105,4376_98 -4289_75972,263,4376_7634,Swords Pavilions,105541645,1,4376_7778022_103105,4376_98 -4289_75972,264,4376_7635,Swords Pavilions,105651645,1,4376_7778022_103105,4376_98 -4289_75972,265,4376_7636,Swords Pavilions,105811645,1,4376_7778022_103105,4376_98 -4289_75972,266,4376_7637,Swords Pavilions,105821645,1,4376_7778022_103105,4376_98 -4289_75972,267,4376_7638,Swords Pavilions,106051645,1,4376_7778022_103105,4376_98 -4289_75972,268,4376_7639,Swords Pavilions,106141645,1,4376_7778022_103105,4376_98 -4289_75960,262,4376_764,Dublin Airport,105431967,1,4376_7778022_103502,4376_3 -4289_75972,269,4376_7640,Swords Pavilions,106231645,1,4376_7778022_103105,4376_98 -4289_75972,259,4376_7641,Swords Pavilions,105764495,1,4376_7778022_103102,4376_100 -4289_75972,260,4376_7642,Swords Pavilions,105311701,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7643,Swords Pavilions,105321701,1,4376_7778022_103109,4376_99 -4289_75972,262,4376_7644,Swords Pavilions,105431701,1,4376_7778022_103109,4376_99 -4289_75972,263,4376_7645,Swords Pavilions,105541701,1,4376_7778022_103109,4376_99 -4289_75972,264,4376_7646,Swords Pavilions,105651701,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7647,Swords Pavilions,105811701,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7648,Swords Pavilions,105821701,1,4376_7778022_103109,4376_99 -4289_75972,267,4376_7649,Swords Pavilions,106051701,1,4376_7778022_103109,4376_99 -4289_75960,263,4376_765,Dublin Airport,105541967,1,4376_7778022_103502,4376_3 -4289_75972,268,4376_7650,Swords Pavilions,106141701,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7651,Swords Pavilions,106231701,1,4376_7778022_103109,4376_99 -4289_75972,259,4376_7652,Swords Pavilions,105764547,1,4376_7778022_103107,4376_101 -4289_75972,270,4376_7653,Swords Pavilions,105277323,1,4376_7778022_103107,4376_99 -4289_75972,146,4376_7654,Swords Pavilions,105247323,1,4376_7778022_103107,4376_99 -4289_75972,271,4376_7655,Swords Pavilions,105237323,1,4376_7778022_103107,4376_99 -4289_75972,115,4376_7656,Swords Pavilions,105217323,1,4376_7778022_103107,4376_99 -4289_75972,260,4376_7657,Swords Pavilions,105311753,1,4376_7778022_103105,4376_98 -4289_75972,261,4376_7658,Swords Pavilions,105321753,1,4376_7778022_103105,4376_98 -4289_75972,262,4376_7659,Swords Pavilions,105431753,1,4376_7778022_103105,4376_98 -4289_75960,264,4376_766,Dublin Airport,105651967,1,4376_7778022_103502,4376_3 -4289_75972,263,4376_7660,Swords Pavilions,105541753,1,4376_7778022_103105,4376_98 -4289_75972,264,4376_7661,Swords Pavilions,105651753,1,4376_7778022_103105,4376_98 -4289_75972,265,4376_7662,Swords Pavilions,105811753,1,4376_7778022_103105,4376_98 -4289_75972,266,4376_7663,Swords Pavilions,105821753,1,4376_7778022_103105,4376_98 -4289_75972,267,4376_7664,Swords Pavilions,106051753,1,4376_7778022_103105,4376_98 -4289_75972,268,4376_7665,Swords Pavilions,106141753,1,4376_7778022_103105,4376_98 -4289_75972,269,4376_7666,Swords Pavilions,106231753,1,4376_7778022_103105,4376_98 -4289_75972,259,4376_7667,Swords Pavilions,105764597,1,4376_7778022_103102,4376_100 -4289_75972,270,4376_7668,Swords Pavilions,105277367,1,4376_7778022_103101,4376_98 -4289_75972,146,4376_7669,Swords Pavilions,105247367,1,4376_7778022_103101,4376_98 -4289_75960,265,4376_767,Dublin Airport,105811967,1,4376_7778022_103502,4376_3 -4289_75972,271,4376_7670,Swords Pavilions,105237367,1,4376_7778022_103101,4376_98 -4289_75972,115,4376_7671,Swords Pavilions,105217367,1,4376_7778022_103101,4376_98 -4289_75972,260,4376_7672,Swords Pavilions,105311809,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7673,Swords Pavilions,105321809,1,4376_7778022_103109,4376_99 -4289_75972,262,4376_7674,Swords Pavilions,105431809,1,4376_7778022_103109,4376_99 -4289_75972,263,4376_7675,Swords Pavilions,105541809,1,4376_7778022_103109,4376_99 -4289_75972,264,4376_7676,Swords Pavilions,105651809,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7677,Swords Pavilions,105811809,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7678,Swords Pavilions,105821809,1,4376_7778022_103109,4376_99 -4289_75972,267,4376_7679,Swords Pavilions,106051809,1,4376_7778022_103109,4376_99 -4289_75960,266,4376_768,Dublin Airport,105821967,1,4376_7778022_103502,4376_3 -4289_75972,268,4376_7680,Swords Pavilions,106141809,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7681,Swords Pavilions,106231809,1,4376_7778022_103109,4376_99 -4289_75972,259,4376_7682,Swords Pavilions,105764649,1,4376_7778022_103107,4376_101 -4289_75972,270,4376_7683,Swords Pavilions,105277413,1,4376_7778022_103107,4376_99 -4289_75972,146,4376_7684,Swords Pavilions,105247413,1,4376_7778022_103107,4376_99 -4289_75972,271,4376_7685,Swords Pavilions,105237413,1,4376_7778022_103107,4376_99 -4289_75972,115,4376_7686,Swords Pavilions,105217413,1,4376_7778022_103107,4376_99 -4289_75972,260,4376_7687,Swords Pavilions,105311871,1,4376_7778022_103103,4376_98 -4289_75972,261,4376_7688,Swords Pavilions,105321871,1,4376_7778022_103103,4376_98 -4289_75972,262,4376_7689,Swords Pavilions,105431871,1,4376_7778022_103103,4376_98 -4289_75960,267,4376_769,Dublin Airport,106051967,1,4376_7778022_103502,4376_3 -4289_75972,263,4376_7690,Swords Pavilions,105541871,1,4376_7778022_103103,4376_98 -4289_75972,264,4376_7691,Swords Pavilions,105651871,1,4376_7778022_103103,4376_98 -4289_75972,265,4376_7692,Swords Pavilions,105811871,1,4376_7778022_103103,4376_98 -4289_75972,266,4376_7693,Swords Pavilions,105821871,1,4376_7778022_103103,4376_98 -4289_75972,267,4376_7694,Swords Pavilions,106051871,1,4376_7778022_103103,4376_98 -4289_75972,268,4376_7695,Swords Pavilions,106141871,1,4376_7778022_103103,4376_98 -4289_75972,269,4376_7696,Swords Pavilions,106231871,1,4376_7778022_103103,4376_98 -4289_75972,259,4376_7697,Swords Pavilions,105764701,1,4376_7778022_103102,4376_100 -4289_75972,270,4376_7698,Swords Pavilions,105277459,1,4376_7778022_103101,4376_98 -4289_75972,146,4376_7699,Swords Pavilions,105247459,1,4376_7778022_103101,4376_98 -4289_75960,259,4376_77,Sutton Station,105764246,0,4376_7778022_103104,4376_1 -4289_75960,268,4376_770,Dublin Airport,106141967,1,4376_7778022_103502,4376_3 -4289_75972,271,4376_7700,Swords Pavilions,105237459,1,4376_7778022_103101,4376_98 -4289_75972,115,4376_7701,Swords Pavilions,105217459,1,4376_7778022_103101,4376_98 -4289_75972,260,4376_7702,Swords Pavilions,105311923,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7703,Swords Pavilions,105321923,1,4376_7778022_103109,4376_99 -4289_75972,262,4376_7704,Swords Pavilions,105431923,1,4376_7778022_103109,4376_99 -4289_75972,263,4376_7705,Swords Pavilions,105541923,1,4376_7778022_103109,4376_99 -4289_75972,264,4376_7706,Swords Pavilions,105651923,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7707,Swords Pavilions,105811923,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7708,Swords Pavilions,105821923,1,4376_7778022_103109,4376_99 -4289_75972,267,4376_7709,Swords Pavilions,106051923,1,4376_7778022_103109,4376_99 -4289_75960,269,4376_771,Dublin Airport,106231967,1,4376_7778022_103502,4376_3 -4289_75972,268,4376_7710,Swords Pavilions,106141923,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7711,Swords Pavilions,106231923,1,4376_7778022_103109,4376_99 -4289_75972,259,4376_7712,Swords Pavilions,105764751,1,4376_7778022_103107,4376_101 -4289_75972,270,4376_7713,Swords Pavilions,105277503,1,4376_7778022_103107,4376_99 -4289_75972,146,4376_7714,Swords Pavilions,105247503,1,4376_7778022_103107,4376_99 -4289_75972,271,4376_7715,Swords Pavilions,105237503,1,4376_7778022_103107,4376_99 -4289_75972,115,4376_7716,Swords Pavilions,105217503,1,4376_7778022_103107,4376_99 -4289_75972,260,4376_7717,Swords Pavilions,105311977,1,4376_7778022_103103,4376_98 -4289_75972,261,4376_7718,Swords Pavilions,105321977,1,4376_7778022_103103,4376_98 -4289_75972,262,4376_7719,Swords Pavilions,105431977,1,4376_7778022_103103,4376_98 -4289_75960,259,4376_772,Dublin Airport,105764795,1,4376_7778022_103103,4376_4 -4289_75972,263,4376_7720,Swords Pavilions,105541977,1,4376_7778022_103103,4376_98 -4289_75972,264,4376_7721,Swords Pavilions,105651977,1,4376_7778022_103103,4376_98 -4289_75972,265,4376_7722,Swords Pavilions,105811977,1,4376_7778022_103103,4376_98 -4289_75972,266,4376_7723,Swords Pavilions,105821977,1,4376_7778022_103103,4376_98 -4289_75972,267,4376_7724,Swords Pavilions,106051977,1,4376_7778022_103103,4376_98 -4289_75972,268,4376_7725,Swords Pavilions,106141977,1,4376_7778022_103103,4376_98 -4289_75972,269,4376_7726,Swords Pavilions,106231977,1,4376_7778022_103103,4376_98 -4289_75972,259,4376_7727,Swords Pavilions,105764803,1,4376_7778022_103102,4376_100 -4289_75972,270,4376_7728,Swords Pavilions,105277549,1,4376_7778022_103101,4376_98 -4289_75972,146,4376_7729,Swords Pavilions,105247549,1,4376_7778022_103101,4376_98 -4289_75960,270,4376_773,Dublin Airport,105277543,1,4376_7778022_103103,4376_3 -4289_75972,271,4376_7730,Swords Pavilions,105237549,1,4376_7778022_103101,4376_98 -4289_75972,115,4376_7731,Swords Pavilions,105217549,1,4376_7778022_103101,4376_98 -4289_75972,260,4376_7732,Swords Pavilions,105312035,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7733,Swords Pavilions,105322035,1,4376_7778022_103109,4376_99 -4289_75972,262,4376_7734,Swords Pavilions,105432035,1,4376_7778022_103109,4376_99 -4289_75972,263,4376_7735,Swords Pavilions,105542035,1,4376_7778022_103109,4376_99 -4289_75972,264,4376_7736,Swords Pavilions,105652035,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7737,Swords Pavilions,105812035,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7738,Swords Pavilions,105822035,1,4376_7778022_103109,4376_99 -4289_75972,267,4376_7739,Swords Pavilions,106052035,1,4376_7778022_103109,4376_99 -4289_75960,146,4376_774,Dublin Airport,105247543,1,4376_7778022_103103,4376_3 -4289_75972,268,4376_7740,Swords Pavilions,106142035,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7741,Swords Pavilions,106232035,1,4376_7778022_103109,4376_99 -4289_75972,259,4376_7742,Swords Pavilions,105764855,1,4376_7778022_103107,4376_99 -4289_75972,270,4376_7743,Swords Pavilions,105277595,1,4376_7778022_103107,4376_99 -4289_75972,146,4376_7744,Swords Pavilions,105247595,1,4376_7778022_103107,4376_99 -4289_75972,271,4376_7745,Swords Pavilions,105237595,1,4376_7778022_103107,4376_99 -4289_75972,115,4376_7746,Swords Pavilions,105217595,1,4376_7778022_103107,4376_99 -4289_75972,259,4376_7747,Swords Pavilions,105764905,1,4376_7778022_103102,4376_98 -4289_75972,270,4376_7748,Swords Pavilions,105277639,1,4376_7778022_103101,4376_98 -4289_75972,146,4376_7749,Swords Pavilions,105247639,1,4376_7778022_103101,4376_98 -4289_75960,271,4376_775,Dublin Airport,105237543,1,4376_7778022_103103,4376_3 -4289_75972,271,4376_7750,Swords Pavilions,105237639,1,4376_7778022_103101,4376_98 -4289_75972,115,4376_7751,Swords Pavilions,105217639,1,4376_7778022_103101,4376_98 -4289_75972,260,4376_7752,Swords Pavilions,105312119,1,4376_7778022_103103,4376_98 -4289_75972,261,4376_7753,Swords Pavilions,105322119,1,4376_7778022_103103,4376_98 -4289_75972,262,4376_7754,Swords Pavilions,105432119,1,4376_7778022_103103,4376_98 -4289_75972,263,4376_7755,Swords Pavilions,105542119,1,4376_7778022_103103,4376_98 -4289_75972,264,4376_7756,Swords Pavilions,105652119,1,4376_7778022_103103,4376_98 -4289_75972,265,4376_7757,Swords Pavilions,105812119,1,4376_7778022_103103,4376_98 -4289_75972,266,4376_7758,Swords Pavilions,105822119,1,4376_7778022_103103,4376_98 -4289_75972,267,4376_7759,Swords Pavilions,106052119,1,4376_7778022_103103,4376_98 -4289_75960,115,4376_776,Dublin Airport,105217543,1,4376_7778022_103103,4376_3 -4289_75972,268,4376_7760,Swords Pavilions,106142119,1,4376_7778022_103103,4376_98 -4289_75972,269,4376_7761,Swords Pavilions,106232119,1,4376_7778022_103103,4376_98 -4289_75972,259,4376_7762,Swords Pavilions,105764963,1,4376_7778022_103107,4376_99 -4289_75972,270,4376_7763,Swords Pavilions,105277691,1,4376_7778022_103107,4376_99 -4289_75972,146,4376_7764,Swords Pavilions,105247691,1,4376_7778022_103107,4376_99 -4289_75972,271,4376_7765,Swords Pavilions,105237691,1,4376_7778022_103107,4376_99 -4289_75972,115,4376_7766,Swords Pavilions,105217691,1,4376_7778022_103107,4376_99 -4289_75972,260,4376_7767,Swords Pavilions,105312209,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7768,Swords Pavilions,105322209,1,4376_7778022_103109,4376_99 -4289_75972,262,4376_7769,Swords Pavilions,105432209,1,4376_7778022_103109,4376_99 -4289_75960,260,4376_777,Dublin Airport,105312019,1,4376_7778022_103101,4376_3 -4289_75972,263,4376_7770,Swords Pavilions,105542209,1,4376_7778022_103109,4376_99 -4289_75972,264,4376_7771,Swords Pavilions,105652209,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7772,Swords Pavilions,105812209,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7773,Swords Pavilions,105822209,1,4376_7778022_103109,4376_99 -4289_75972,267,4376_7774,Swords Pavilions,106052209,1,4376_7778022_103109,4376_99 -4289_75972,268,4376_7775,Swords Pavilions,106142209,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7776,Swords Pavilions,106232209,1,4376_7778022_103109,4376_99 -4289_75972,259,4376_7777,Swords Pavilions,105765021,1,4376_7778022_103102,4376_98 -4289_75972,270,4376_7778,Swords Pavilions,105277741,1,4376_7778022_103101,4376_98 -4289_75972,146,4376_7779,Swords Pavilions,105247741,1,4376_7778022_103101,4376_98 -4289_75960,261,4376_778,Dublin Airport,105322019,1,4376_7778022_103101,4376_3 -4289_75972,271,4376_7780,Swords Pavilions,105237741,1,4376_7778022_103101,4376_98 -4289_75972,115,4376_7781,Swords Pavilions,105217741,1,4376_7778022_103101,4376_98 -4289_75972,260,4376_7782,Swords Pavilions,105312293,1,4376_7778022_103103,4376_98 -4289_75972,261,4376_7783,Swords Pavilions,105322293,1,4376_7778022_103103,4376_98 -4289_75972,262,4376_7784,Swords Pavilions,105432293,1,4376_7778022_103103,4376_98 -4289_75972,263,4376_7785,Swords Pavilions,105542293,1,4376_7778022_103103,4376_98 -4289_75972,264,4376_7786,Swords Pavilions,105652293,1,4376_7778022_103103,4376_98 -4289_75972,265,4376_7787,Swords Pavilions,105812293,1,4376_7778022_103103,4376_98 -4289_75972,266,4376_7788,Swords Pavilions,105822293,1,4376_7778022_103103,4376_98 -4289_75972,267,4376_7789,Swords Pavilions,106052293,1,4376_7778022_103103,4376_98 -4289_75960,262,4376_779,Dublin Airport,105432019,1,4376_7778022_103101,4376_3 -4289_75972,268,4376_7790,Swords Pavilions,106142293,1,4376_7778022_103103,4376_98 -4289_75972,269,4376_7791,Swords Pavilions,106232293,1,4376_7778022_103103,4376_98 -4289_75972,259,4376_7792,Swords Pavilions,105765089,1,4376_7778022_103107,4376_99 -4289_75972,270,4376_7793,Swords Pavilions,105277801,1,4376_7778022_103107,4376_99 -4289_75972,146,4376_7794,Swords Pavilions,105247801,1,4376_7778022_103107,4376_99 -4289_75972,271,4376_7795,Swords Pavilions,105237801,1,4376_7778022_103107,4376_99 -4289_75972,115,4376_7796,Swords Pavilions,105217801,1,4376_7778022_103107,4376_99 -4289_75972,260,4376_7797,Swords Pavilions,105312361,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7798,Swords Pavilions,105322361,1,4376_7778022_103109,4376_99 -4289_75972,262,4376_7799,Swords Pavilions,105432361,1,4376_7778022_103109,4376_99 -4289_75960,270,4376_78,Sutton Station,105277068,0,4376_7778022_103502,4376_2 -4289_75960,263,4376_780,Dublin Airport,105542019,1,4376_7778022_103101,4376_3 -4289_75972,263,4376_7800,Swords Pavilions,105542361,1,4376_7778022_103109,4376_99 -4289_75972,264,4376_7801,Swords Pavilions,105652361,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7802,Swords Pavilions,105812361,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7803,Swords Pavilions,105822361,1,4376_7778022_103109,4376_99 -4289_75972,267,4376_7804,Swords Pavilions,106052361,1,4376_7778022_103109,4376_99 -4289_75972,268,4376_7805,Swords Pavilions,106142361,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7806,Swords Pavilions,106232361,1,4376_7778022_103109,4376_99 -4289_75972,259,4376_7807,Swords Pavilions,105765141,1,4376_7778022_103102,4376_98 -4289_75972,270,4376_7808,Swords Pavilions,105277851,1,4376_7778022_103101,4376_98 -4289_75972,146,4376_7809,Swords Pavilions,105247851,1,4376_7778022_103101,4376_98 -4289_75960,264,4376_781,Dublin Airport,105652019,1,4376_7778022_103101,4376_3 -4289_75972,271,4376_7810,Swords Pavilions,105237851,1,4376_7778022_103101,4376_98 -4289_75972,115,4376_7811,Swords Pavilions,105217851,1,4376_7778022_103101,4376_98 -4289_75972,260,4376_7812,Swords Pavilions,105312433,1,4376_7778022_103103,4376_98 -4289_75972,261,4376_7813,Swords Pavilions,105322433,1,4376_7778022_103103,4376_98 -4289_75972,262,4376_7814,Swords Pavilions,105432433,1,4376_7778022_103103,4376_98 -4289_75972,263,4376_7815,Swords Pavilions,105542433,1,4376_7778022_103103,4376_98 -4289_75972,264,4376_7816,Swords Pavilions,105652433,1,4376_7778022_103103,4376_98 -4289_75972,265,4376_7817,Swords Pavilions,105812433,1,4376_7778022_103103,4376_98 -4289_75972,266,4376_7818,Swords Pavilions,105822433,1,4376_7778022_103103,4376_98 -4289_75972,267,4376_7819,Swords Pavilions,106052433,1,4376_7778022_103103,4376_98 -4289_75960,265,4376_782,Dublin Airport,105812019,1,4376_7778022_103101,4376_3 -4289_75972,268,4376_7820,Swords Pavilions,106142433,1,4376_7778022_103103,4376_98 -4289_75972,269,4376_7821,Swords Pavilions,106232433,1,4376_7778022_103103,4376_98 -4289_75972,259,4376_7822,Swords Pavilions,105765207,1,4376_7778022_103107,4376_99 -4289_75972,260,4376_7823,Swords Pavilions,105312495,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7824,Swords Pavilions,105322495,1,4376_7778022_103109,4376_99 -4289_75972,262,4376_7825,Swords Pavilions,105432495,1,4376_7778022_103109,4376_99 -4289_75972,263,4376_7826,Swords Pavilions,105542495,1,4376_7778022_103109,4376_99 -4289_75972,264,4376_7827,Swords Pavilions,105652495,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7828,Swords Pavilions,105812495,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7829,Swords Pavilions,105822495,1,4376_7778022_103109,4376_99 -4289_75960,266,4376_783,Dublin Airport,105822019,1,4376_7778022_103101,4376_3 -4289_75972,267,4376_7830,Swords Pavilions,106052495,1,4376_7778022_103109,4376_99 -4289_75972,268,4376_7831,Swords Pavilions,106142495,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7832,Swords Pavilions,106232495,1,4376_7778022_103109,4376_99 -4289_75972,270,4376_7833,Swords Pavilions,105277941,1,4376_7778022_103107,4376_97 -4289_75972,146,4376_7834,Swords Pavilions,105247941,1,4376_7778022_103107,4376_97 -4289_75972,271,4376_7835,Swords Pavilions,105237941,1,4376_7778022_103107,4376_97 -4289_75972,115,4376_7836,Swords Pavilions,105217941,1,4376_7778022_103107,4376_97 -4289_75972,259,4376_7837,Swords Pavilions,105765263,1,4376_7778022_103102,4376_98 -4289_75972,260,4376_7838,Swords Pavilions,105312557,1,4376_7778022_103103,4376_98 -4289_75972,261,4376_7839,Swords Pavilions,105322557,1,4376_7778022_103103,4376_98 -4289_75960,267,4376_784,Dublin Airport,106052019,1,4376_7778022_103101,4376_3 -4289_75972,262,4376_7840,Swords Pavilions,105432557,1,4376_7778022_103103,4376_98 -4289_75972,263,4376_7841,Swords Pavilions,105542557,1,4376_7778022_103103,4376_98 -4289_75972,264,4376_7842,Swords Pavilions,105652557,1,4376_7778022_103103,4376_98 -4289_75972,265,4376_7843,Swords Pavilions,105812557,1,4376_7778022_103103,4376_98 -4289_75972,266,4376_7844,Swords Pavilions,105822557,1,4376_7778022_103103,4376_98 -4289_75972,267,4376_7845,Swords Pavilions,106052557,1,4376_7778022_103103,4376_98 -4289_75972,268,4376_7846,Swords Pavilions,106142557,1,4376_7778022_103103,4376_98 -4289_75972,269,4376_7847,Swords Pavilions,106232557,1,4376_7778022_103103,4376_98 -4289_75972,259,4376_7848,Swords Pavilions,105765329,1,4376_7778022_103107,4376_97 -4289_75972,260,4376_7849,Swords Pavilions,105312629,1,4376_7778022_103109,4376_97 -4289_75960,268,4376_785,Dublin Airport,106142019,1,4376_7778022_103101,4376_3 -4289_75972,261,4376_7850,Swords Pavilions,105322629,1,4376_7778022_103109,4376_97 -4289_75972,262,4376_7851,Swords Pavilions,105432629,1,4376_7778022_103109,4376_97 -4289_75972,263,4376_7852,Swords Pavilions,105542629,1,4376_7778022_103109,4376_97 -4289_75972,264,4376_7853,Swords Pavilions,105652629,1,4376_7778022_103109,4376_97 -4289_75972,265,4376_7854,Swords Pavilions,105812629,1,4376_7778022_103109,4376_97 -4289_75972,266,4376_7855,Swords Pavilions,105822629,1,4376_7778022_103109,4376_97 -4289_75972,267,4376_7856,Swords Pavilions,106052629,1,4376_7778022_103109,4376_97 -4289_75972,268,4376_7857,Swords Pavilions,106142629,1,4376_7778022_103109,4376_97 -4289_75972,269,4376_7858,Swords Pavilions,106232629,1,4376_7778022_103109,4376_97 -4289_75972,270,4376_7859,Swords Pavilions,105278021,1,4376_7778022_103107,4376_97 -4289_75960,269,4376_786,Dublin Airport,106232019,1,4376_7778022_103101,4376_3 -4289_75972,146,4376_7860,Swords Pavilions,105248021,1,4376_7778022_103107,4376_97 -4289_75972,271,4376_7861,Swords Pavilions,105238021,1,4376_7778022_103107,4376_97 -4289_75972,115,4376_7862,Swords Pavilions,105218021,1,4376_7778022_103107,4376_97 -4289_75972,260,4376_7863,Swords Pavilions,105312723,1,4376_7778022_103109,4376_97 -4289_75972,261,4376_7864,Swords Pavilions,105322723,1,4376_7778022_103109,4376_97 -4289_75972,262,4376_7865,Swords Pavilions,105432723,1,4376_7778022_103109,4376_97 -4289_75972,263,4376_7866,Swords Pavilions,105542723,1,4376_7778022_103109,4376_97 -4289_75972,264,4376_7867,Swords Pavilions,105652723,1,4376_7778022_103109,4376_97 -4289_75972,265,4376_7868,Swords Pavilions,105812723,1,4376_7778022_103109,4376_97 -4289_75972,266,4376_7869,Swords Pavilions,105822723,1,4376_7778022_103109,4376_97 -4289_75960,259,4376_787,Dublin Airport,105764847,1,4376_7778022_103105,4376_4 -4289_75972,267,4376_7870,Swords Pavilions,106052723,1,4376_7778022_103109,4376_97 -4289_75972,268,4376_7871,Swords Pavilions,106142723,1,4376_7778022_103109,4376_97 -4289_75972,269,4376_7872,Swords Pavilions,106232723,1,4376_7778022_103109,4376_97 -4289_75972,259,4376_7873,Swords Pavilions,105765425,1,4376_7778022_103107,4376_97 -4289_75972,270,4376_7874,Swords Pavilions,105278101,1,4376_7778022_103107,4376_97 -4289_75972,146,4376_7875,Swords Pavilions,105248101,1,4376_7778022_103107,4376_97 -4289_75972,271,4376_7876,Swords Pavilions,105238101,1,4376_7778022_103107,4376_97 -4289_75972,115,4376_7877,Swords Pavilions,105218101,1,4376_7778022_103107,4376_97 -4289_75972,260,4376_7878,Swords Pavilions,105312821,1,4376_7778022_103109,4376_97 -4289_75972,261,4376_7879,Swords Pavilions,105322821,1,4376_7778022_103109,4376_97 -4289_75960,270,4376_788,Dublin Airport,105277591,1,4376_7778022_103104,4376_3 -4289_75972,262,4376_7880,Swords Pavilions,105432821,1,4376_7778022_103109,4376_97 -4289_75972,263,4376_7881,Swords Pavilions,105542821,1,4376_7778022_103109,4376_97 -4289_75972,264,4376_7882,Swords Pavilions,105652821,1,4376_7778022_103109,4376_97 -4289_75972,265,4376_7883,Swords Pavilions,105812821,1,4376_7778022_103109,4376_97 -4289_75972,266,4376_7884,Swords Pavilions,105822821,1,4376_7778022_103109,4376_97 -4289_75972,267,4376_7885,Swords Pavilions,106052821,1,4376_7778022_103109,4376_97 -4289_75972,268,4376_7886,Swords Pavilions,106142821,1,4376_7778022_103109,4376_97 -4289_75972,269,4376_7887,Swords Pavilions,106232821,1,4376_7778022_103109,4376_97 -4289_75972,259,4376_7888,Swords Pavilions,105765513,1,4376_7778022_103107,4376_97 -4289_75972,270,4376_7889,Swords Pavilions,105278181,1,4376_7778022_103107,4376_97 -4289_75960,146,4376_789,Dublin Airport,105247591,1,4376_7778022_103104,4376_3 -4289_75972,146,4376_7890,Swords Pavilions,105248181,1,4376_7778022_103107,4376_97 -4289_75972,271,4376_7891,Swords Pavilions,105238181,1,4376_7778022_103107,4376_97 -4289_75972,115,4376_7892,Swords Pavilions,105218181,1,4376_7778022_103107,4376_97 -4289_75972,260,4376_7893,Swords Pavilions,105312915,1,4376_7778022_103109,4376_97 -4289_75972,261,4376_7894,Swords Pavilions,105322915,1,4376_7778022_103109,4376_97 -4289_75972,262,4376_7895,Swords Pavilions,105432915,1,4376_7778022_103109,4376_97 -4289_75972,263,4376_7896,Swords Pavilions,105542915,1,4376_7778022_103109,4376_97 -4289_75972,264,4376_7897,Swords Pavilions,105652915,1,4376_7778022_103109,4376_97 -4289_75972,265,4376_7898,Swords Pavilions,105812915,1,4376_7778022_103109,4376_97 -4289_75972,266,4376_7899,Swords Pavilions,105822915,1,4376_7778022_103109,4376_97 -4289_75960,146,4376_79,Sutton Station,105247068,0,4376_7778022_103502,4376_2 -4289_75960,271,4376_790,Dublin Airport,105237591,1,4376_7778022_103104,4376_3 -4289_75972,267,4376_7900,Swords Pavilions,106052915,1,4376_7778022_103109,4376_97 -4289_75972,268,4376_7901,Swords Pavilions,106142915,1,4376_7778022_103109,4376_97 -4289_75972,269,4376_7902,Swords Pavilions,106232915,1,4376_7778022_103109,4376_97 -4289_75972,259,4376_7903,Swords Pavilions,105765597,1,4376_7778022_103107,4376_97 -4289_75972,270,4376_7904,Swords Pavilions,105278257,1,4376_7778022_103107,4376_97 -4289_75972,146,4376_7905,Swords Pavilions,105248257,1,4376_7778022_103107,4376_97 -4289_75972,271,4376_7906,Swords Pavilions,105238257,1,4376_7778022_103107,4376_97 -4289_75972,115,4376_7907,Swords Pavilions,105218257,1,4376_7778022_103107,4376_97 -4289_75972,260,4376_7908,Swords Pavilions,105312991,1,4376_7778022_103109,4376_99 -4289_75972,261,4376_7909,Swords Pavilions,105322991,1,4376_7778022_103109,4376_99 -4289_75960,115,4376_791,Dublin Airport,105217591,1,4376_7778022_103104,4376_3 -4289_75972,262,4376_7910,Swords Pavilions,105432991,1,4376_7778022_103109,4376_99 -4289_75972,263,4376_7911,Swords Pavilions,105542991,1,4376_7778022_103109,4376_99 -4289_75972,264,4376_7912,Swords Pavilions,105652991,1,4376_7778022_103109,4376_99 -4289_75972,265,4376_7913,Swords Pavilions,105812991,1,4376_7778022_103109,4376_99 -4289_75972,266,4376_7914,Swords Pavilions,105822991,1,4376_7778022_103109,4376_99 -4289_75972,267,4376_7915,Swords Pavilions,106052991,1,4376_7778022_103109,4376_99 -4289_75972,268,4376_7916,Swords Pavilions,106142991,1,4376_7778022_103109,4376_99 -4289_75972,269,4376_7917,Swords Pavilions,106232991,1,4376_7778022_103109,4376_99 -4289_75972,259,4376_7918,Swords Pavilions,105765667,1,4376_7778022_103107,4376_101 -4289_75972,270,4376_7919,Swords Pavilions,105278319,1,4376_7778022_103107,4376_101 -4289_75960,260,4376_792,Dublin Airport,105312085,1,4376_7778022_103104,4376_3 -4289_75972,146,4376_7920,Swords Pavilions,105248319,1,4376_7778022_103107,4376_101 -4289_75972,271,4376_7921,Swords Pavilions,105238319,1,4376_7778022_103107,4376_101 -4289_75972,115,4376_7922,Swords Pavilions,105218319,1,4376_7778022_103107,4376_101 -4289_75973,260,4376_7923,Station Road,105312074,0,4376_7778022_109107,4376_102 -4289_75973,261,4376_7924,Station Road,105322074,0,4376_7778022_109107,4376_102 -4289_75973,262,4376_7925,Station Road,105432076,0,4376_7778022_109305,4376_102 -4289_75973,263,4376_7926,Station Road,105542078,0,4376_7778022_109402,4376_102 -4289_75973,264,4376_7927,Station Road,105652080,0,4376_7778022_109504,4376_102 -4289_75973,260,4376_7928,Donabate NS,105311315,1,4376_7778022_109108,4376_103 -4289_75973,261,4376_7929,Donabate NS,105321315,1,4376_7778022_109108,4376_103 -4289_75960,261,4376_793,Dublin Airport,105322085,1,4376_7778022_103104,4376_3 -4289_75973,262,4376_7930,Donabate NS,105431317,1,4376_7778022_109308,4376_103 -4289_75973,263,4376_7931,Donabate NS,105541319,1,4376_7778022_109408,4376_103 -4289_75973,264,4376_7932,Donabate NS,105651321,1,4376_7778022_109508,4376_103 -4289_75974,260,4376_7933,Dun Laoghaire,105311080,0,4376_7778022_100010,4376_104 -4289_75974,261,4376_7934,Dun Laoghaire,105321080,0,4376_7778022_100010,4376_104 -4289_75974,262,4376_7935,Dun Laoghaire,105431080,0,4376_7778022_100010,4376_104 -4289_75974,263,4376_7936,Dun Laoghaire,105541080,0,4376_7778022_100010,4376_104 -4289_75974,264,4376_7937,Dun Laoghaire,105651080,0,4376_7778022_100010,4376_104 -4289_75974,265,4376_7938,Dun Laoghaire,105811080,0,4376_7778022_100010,4376_104 -4289_75974,266,4376_7939,Dun Laoghaire,105821080,0,4376_7778022_100010,4376_104 -4289_75960,262,4376_794,Dublin Airport,105432085,1,4376_7778022_103104,4376_3 -4289_75974,267,4376_7940,Dun Laoghaire,106051080,0,4376_7778022_100010,4376_104 -4289_75974,268,4376_7941,Dun Laoghaire,106141080,0,4376_7778022_100010,4376_104 -4289_75974,269,4376_7942,Dun Laoghaire,106231080,0,4376_7778022_100010,4376_104 -4289_75974,259,4376_7943,Dun Laoghaire,105764050,0,4376_7778022_100010,4376_105 -4289_75974,260,4376_7944,Dun Laoghaire,105311112,0,4376_7778022_100030,4376_104 -4289_75974,261,4376_7945,Dun Laoghaire,105321112,0,4376_7778022_100030,4376_104 -4289_75974,262,4376_7946,Dun Laoghaire,105431112,0,4376_7778022_100030,4376_104 -4289_75974,263,4376_7947,Dun Laoghaire,105541112,0,4376_7778022_100030,4376_104 -4289_75974,264,4376_7948,Dun Laoghaire,105651112,0,4376_7778022_100030,4376_104 -4289_75974,265,4376_7949,Dun Laoghaire,105811112,0,4376_7778022_100030,4376_104 -4289_75960,263,4376_795,Dublin Airport,105542085,1,4376_7778022_103104,4376_3 -4289_75974,266,4376_7950,Dun Laoghaire,105821112,0,4376_7778022_100030,4376_104 -4289_75974,267,4376_7951,Dun Laoghaire,106051112,0,4376_7778022_100030,4376_104 -4289_75974,268,4376_7952,Dun Laoghaire,106141112,0,4376_7778022_100030,4376_104 -4289_75974,269,4376_7953,Dun Laoghaire,106231112,0,4376_7778022_100030,4376_104 -4289_75974,259,4376_7954,Dun Laoghaire,105764094,0,4376_7778022_100040,4376_105 -4289_75974,260,4376_7955,Dun Laoghaire,105311182,0,4376_7778022_100070,4376_104 -4289_75974,261,4376_7956,Dun Laoghaire,105321182,0,4376_7778022_100070,4376_104 -4289_75974,262,4376_7957,Dun Laoghaire,105431182,0,4376_7778022_100070,4376_104 -4289_75974,263,4376_7958,Dun Laoghaire,105541182,0,4376_7778022_100070,4376_104 -4289_75974,264,4376_7959,Dun Laoghaire,105651182,0,4376_7778022_100070,4376_104 -4289_75960,264,4376_796,Dublin Airport,105652085,1,4376_7778022_103104,4376_3 -4289_75974,265,4376_7960,Dun Laoghaire,105811182,0,4376_7778022_100070,4376_104 -4289_75974,266,4376_7961,Dun Laoghaire,105821182,0,4376_7778022_100070,4376_104 -4289_75974,267,4376_7962,Dun Laoghaire,106051182,0,4376_7778022_100070,4376_104 -4289_75974,268,4376_7963,Dun Laoghaire,106141182,0,4376_7778022_100070,4376_104 -4289_75974,269,4376_7964,Dun Laoghaire,106231182,0,4376_7778022_100070,4376_104 -4289_75974,260,4376_7965,Dun Laoghaire,105311222,0,4376_7778022_100020,4376_104 -4289_75974,261,4376_7966,Dun Laoghaire,105321222,0,4376_7778022_100020,4376_104 -4289_75974,262,4376_7967,Dun Laoghaire,105431222,0,4376_7778022_100020,4376_104 -4289_75974,263,4376_7968,Dun Laoghaire,105541222,0,4376_7778022_100020,4376_104 -4289_75974,264,4376_7969,Dun Laoghaire,105651222,0,4376_7778022_100020,4376_104 -4289_75960,265,4376_797,Dublin Airport,105812085,1,4376_7778022_103104,4376_3 -4289_75974,265,4376_7970,Dun Laoghaire,105811222,0,4376_7778022_100020,4376_104 -4289_75974,266,4376_7971,Dun Laoghaire,105821222,0,4376_7778022_100020,4376_104 -4289_75974,267,4376_7972,Dun Laoghaire,106051222,0,4376_7778022_100020,4376_104 -4289_75974,268,4376_7973,Dun Laoghaire,106141222,0,4376_7778022_100020,4376_104 -4289_75974,269,4376_7974,Dun Laoghaire,106231222,0,4376_7778022_100020,4376_104 -4289_75974,259,4376_7975,Dun Laoghaire,105764134,0,4376_7778022_100020,4376_105 -4289_75974,260,4376_7976,Dun Laoghaire,105311278,0,4376_7778022_100040,4376_104 -4289_75974,261,4376_7977,Dun Laoghaire,105321278,0,4376_7778022_100040,4376_104 -4289_75974,262,4376_7978,Dun Laoghaire,105431278,0,4376_7778022_100040,4376_104 -4289_75974,263,4376_7979,Dun Laoghaire,105541278,0,4376_7778022_100040,4376_104 -4289_75960,266,4376_798,Dublin Airport,105822085,1,4376_7778022_103104,4376_3 -4289_75974,264,4376_7980,Dun Laoghaire,105651278,0,4376_7778022_100040,4376_104 -4289_75974,265,4376_7981,Dun Laoghaire,105811278,0,4376_7778022_100040,4376_104 -4289_75974,266,4376_7982,Dun Laoghaire,105821278,0,4376_7778022_100040,4376_104 -4289_75974,267,4376_7983,Dun Laoghaire,106051278,0,4376_7778022_100040,4376_104 -4289_75974,268,4376_7984,Dun Laoghaire,106141278,0,4376_7778022_100040,4376_104 -4289_75974,269,4376_7985,Dun Laoghaire,106231278,0,4376_7778022_100040,4376_104 -4289_75974,259,4376_7986,Dun Laoghaire,105764180,0,4376_7778022_100050,4376_105 -4289_75974,260,4376_7987,Dun Laoghaire,105311328,0,4376_7778022_100050,4376_104 -4289_75974,261,4376_7988,Dun Laoghaire,105321328,0,4376_7778022_100050,4376_104 -4289_75974,262,4376_7989,Dun Laoghaire,105431328,0,4376_7778022_100050,4376_104 -4289_75960,267,4376_799,Dublin Airport,106052085,1,4376_7778022_103104,4376_3 -4289_75974,263,4376_7990,Dun Laoghaire,105541328,0,4376_7778022_100050,4376_104 -4289_75974,264,4376_7991,Dun Laoghaire,105651328,0,4376_7778022_100050,4376_104 -4289_75974,265,4376_7992,Dun Laoghaire,105811328,0,4376_7778022_100050,4376_104 -4289_75974,266,4376_7993,Dun Laoghaire,105821328,0,4376_7778022_100050,4376_104 -4289_75974,267,4376_7994,Dun Laoghaire,106051328,0,4376_7778022_100050,4376_104 -4289_75974,268,4376_7995,Dun Laoghaire,106141328,0,4376_7778022_100050,4376_104 -4289_75974,269,4376_7996,Dun Laoghaire,106231328,0,4376_7778022_100050,4376_104 -4289_75974,260,4376_7997,Dun Laoghaire,105311374,0,4376_7778022_100080,4376_104 -4289_75974,261,4376_7998,Dun Laoghaire,105321374,0,4376_7778022_100080,4376_104 -4289_75974,262,4376_7999,Dun Laoghaire,105431374,0,4376_7778022_100080,4376_104 -4289_75960,266,4376_8,Sutton Station,105821026,0,4376_7778022_103503,4376_1 -4289_75960,271,4376_80,Sutton Station,105237068,0,4376_7778022_103502,4376_2 -4289_75960,268,4376_800,Dublin Airport,106142085,1,4376_7778022_103104,4376_3 -4289_75974,263,4376_8000,Dun Laoghaire,105541374,0,4376_7778022_100080,4376_104 -4289_75974,264,4376_8001,Dun Laoghaire,105651374,0,4376_7778022_100080,4376_104 -4289_75974,265,4376_8002,Dun Laoghaire,105811374,0,4376_7778022_100080,4376_104 -4289_75974,266,4376_8003,Dun Laoghaire,105821374,0,4376_7778022_100080,4376_104 -4289_75974,267,4376_8004,Dun Laoghaire,106051374,0,4376_7778022_100080,4376_104 -4289_75974,268,4376_8005,Dun Laoghaire,106141374,0,4376_7778022_100080,4376_104 -4289_75974,269,4376_8006,Dun Laoghaire,106231374,0,4376_7778022_100080,4376_104 -4289_75974,259,4376_8007,Dun Laoghaire,105764220,0,4376_7778022_100010,4376_105 -4289_75974,270,4376_8008,Dun Laoghaire,105277056,0,4376_7778022_100020,4376_105 -4289_75974,146,4376_8009,Dun Laoghaire,105247056,0,4376_7778022_100020,4376_105 -4289_75960,269,4376_801,Dublin Airport,106232085,1,4376_7778022_103104,4376_3 -4289_75974,271,4376_8010,Dun Laoghaire,105237056,0,4376_7778022_100020,4376_105 -4289_75974,115,4376_8011,Dun Laoghaire,105217056,0,4376_7778022_100020,4376_105 -4289_75974,260,4376_8012,Dun Laoghaire,105311424,0,4376_7778022_100010,4376_104 -4289_75974,261,4376_8013,Dun Laoghaire,105321424,0,4376_7778022_100010,4376_104 -4289_75974,262,4376_8014,Dun Laoghaire,105431424,0,4376_7778022_100010,4376_104 -4289_75974,263,4376_8015,Dun Laoghaire,105541424,0,4376_7778022_100010,4376_104 -4289_75974,264,4376_8016,Dun Laoghaire,105651424,0,4376_7778022_100010,4376_104 -4289_75974,265,4376_8017,Dun Laoghaire,105811424,0,4376_7778022_100010,4376_104 -4289_75974,266,4376_8018,Dun Laoghaire,105821424,0,4376_7778022_100010,4376_104 -4289_75974,267,4376_8019,Dun Laoghaire,106051424,0,4376_7778022_100010,4376_104 -4289_75960,259,4376_802,Dublin Airport,105764897,1,4376_7778022_103104,4376_4 -4289_75974,268,4376_8020,Dun Laoghaire,106141424,0,4376_7778022_100010,4376_104 -4289_75974,269,4376_8021,Dun Laoghaire,106231424,0,4376_7778022_100010,4376_104 -4289_75974,259,4376_8022,Dun Laoghaire,105764264,0,4376_7778022_100040,4376_105 -4289_75974,270,4376_8023,Dun Laoghaire,105277086,0,4376_7778022_100050,4376_105 -4289_75974,146,4376_8024,Dun Laoghaire,105247086,0,4376_7778022_100050,4376_105 -4289_75974,271,4376_8025,Dun Laoghaire,105237086,0,4376_7778022_100050,4376_105 -4289_75974,115,4376_8026,Dun Laoghaire,105217086,0,4376_7778022_100050,4376_105 -4289_75974,260,4376_8027,Dun Laoghaire,105311466,0,4376_7778022_100060,4376_105 -4289_75974,261,4376_8028,Dun Laoghaire,105321466,0,4376_7778022_100060,4376_105 -4289_75974,262,4376_8029,Dun Laoghaire,105431466,0,4376_7778022_100060,4376_105 -4289_75960,270,4376_803,Dublin Airport,105277633,1,4376_7778022_103105,4376_3 -4289_75974,263,4376_8030,Dun Laoghaire,105541466,0,4376_7778022_100060,4376_105 -4289_75974,264,4376_8031,Dun Laoghaire,105651466,0,4376_7778022_100060,4376_105 -4289_75974,265,4376_8032,Dun Laoghaire,105811466,0,4376_7778022_100060,4376_105 -4289_75974,266,4376_8033,Dun Laoghaire,105821466,0,4376_7778022_100060,4376_105 -4289_75974,267,4376_8034,Dun Laoghaire,106051466,0,4376_7778022_100060,4376_105 -4289_75974,268,4376_8035,Dun Laoghaire,106141466,0,4376_7778022_100060,4376_105 -4289_75974,269,4376_8036,Dun Laoghaire,106231466,0,4376_7778022_100060,4376_105 -4289_75974,259,4376_8037,Dun Laoghaire,105764300,0,4376_7778022_100100,4376_105 -4289_75974,270,4376_8038,Dun Laoghaire,105277116,0,4376_7778022_100010,4376_105 -4289_75974,146,4376_8039,Dun Laoghaire,105247116,0,4376_7778022_100010,4376_105 -4289_75960,146,4376_804,Dublin Airport,105247633,1,4376_7778022_103105,4376_3 -4289_75974,271,4376_8040,Dun Laoghaire,105237116,0,4376_7778022_100010,4376_105 -4289_75974,115,4376_8041,Dun Laoghaire,105217116,0,4376_7778022_100010,4376_105 -4289_75974,259,4376_8042,Dun Laoghaire,105764340,0,4376_7778022_100020,4376_105 -4289_75974,260,4376_8043,Dun Laoghaire,105311534,0,4376_7778022_100070,4376_105 -4289_75974,261,4376_8044,Dun Laoghaire,105321534,0,4376_7778022_100070,4376_105 -4289_75974,262,4376_8045,Dun Laoghaire,105431534,0,4376_7778022_100070,4376_105 -4289_75974,263,4376_8046,Dun Laoghaire,105541534,0,4376_7778022_100070,4376_105 -4289_75974,264,4376_8047,Dun Laoghaire,105651534,0,4376_7778022_100070,4376_105 -4289_75974,265,4376_8048,Dun Laoghaire,105811534,0,4376_7778022_100070,4376_105 -4289_75974,266,4376_8049,Dun Laoghaire,105821534,0,4376_7778022_100070,4376_105 -4289_75960,271,4376_805,Dublin Airport,105237633,1,4376_7778022_103105,4376_3 -4289_75974,267,4376_8050,Dun Laoghaire,106051534,0,4376_7778022_100070,4376_105 -4289_75974,268,4376_8051,Dun Laoghaire,106141534,0,4376_7778022_100070,4376_105 -4289_75974,269,4376_8052,Dun Laoghaire,106231534,0,4376_7778022_100070,4376_105 -4289_75974,259,4376_8053,Dun Laoghaire,105764370,0,4376_7778022_100050,4376_105 -4289_75974,270,4376_8054,Dun Laoghaire,105277156,0,4376_7778022_100040,4376_106 -4289_75974,146,4376_8055,Dun Laoghaire,105247156,0,4376_7778022_100040,4376_106 -4289_75974,271,4376_8056,Dun Laoghaire,105237156,0,4376_7778022_100040,4376_106 -4289_75974,115,4376_8057,Dun Laoghaire,105217156,0,4376_7778022_100040,4376_106 -4289_75974,260,4376_8058,Dun Laoghaire,105311572,0,4376_7778022_100020,4376_105 -4289_75974,261,4376_8059,Dun Laoghaire,105321572,0,4376_7778022_100020,4376_105 -4289_75960,115,4376_806,Dublin Airport,105217633,1,4376_7778022_103105,4376_3 -4289_75974,262,4376_8060,Dun Laoghaire,105431572,0,4376_7778022_100020,4376_105 -4289_75974,263,4376_8061,Dun Laoghaire,105541572,0,4376_7778022_100020,4376_105 -4289_75974,264,4376_8062,Dun Laoghaire,105651572,0,4376_7778022_100020,4376_105 -4289_75974,265,4376_8063,Dun Laoghaire,105811572,0,4376_7778022_100020,4376_105 -4289_75974,266,4376_8064,Dun Laoghaire,105821572,0,4376_7778022_100020,4376_105 -4289_75974,267,4376_8065,Dun Laoghaire,106051572,0,4376_7778022_100020,4376_105 -4289_75974,268,4376_8066,Dun Laoghaire,106141572,0,4376_7778022_100020,4376_105 -4289_75974,269,4376_8067,Dun Laoghaire,106231572,0,4376_7778022_100020,4376_105 -4289_75974,270,4376_8068,Dun Laoghaire,105277198,0,4376_7778022_100020,4376_105 -4289_75974,146,4376_8069,Dun Laoghaire,105247198,0,4376_7778022_100020,4376_105 -4289_75960,259,4376_807,Dublin Airport,105764951,1,4376_7778022_103106,4376_3 -4289_75974,271,4376_8070,Dun Laoghaire,105237198,0,4376_7778022_100020,4376_105 -4289_75974,115,4376_8071,Dun Laoghaire,105217198,0,4376_7778022_100020,4376_105 -4289_75974,260,4376_8072,Dun Laoghaire,105311612,0,4376_7778022_100040,4376_105 -4289_75974,261,4376_8073,Dun Laoghaire,105321612,0,4376_7778022_100040,4376_105 -4289_75974,262,4376_8074,Dun Laoghaire,105431612,0,4376_7778022_100040,4376_105 -4289_75974,263,4376_8075,Dun Laoghaire,105541612,0,4376_7778022_100040,4376_105 -4289_75974,264,4376_8076,Dun Laoghaire,105651612,0,4376_7778022_100040,4376_105 -4289_75974,265,4376_8077,Dun Laoghaire,105811612,0,4376_7778022_100040,4376_105 -4289_75974,266,4376_8078,Dun Laoghaire,105821612,0,4376_7778022_100040,4376_105 -4289_75974,267,4376_8079,Dun Laoghaire,106051612,0,4376_7778022_100040,4376_105 -4289_75960,270,4376_808,Dublin Airport,105277681,1,4376_7778022_103108,4376_3 -4289_75974,268,4376_8080,Dun Laoghaire,106141612,0,4376_7778022_100040,4376_105 -4289_75974,269,4376_8081,Dun Laoghaire,106231612,0,4376_7778022_100040,4376_105 -4289_75974,259,4376_8082,Dun Laoghaire,105764438,0,4376_7778022_100120,4376_105 -4289_75974,260,4376_8083,Dun Laoghaire,105311642,0,4376_7778022_100050,4376_105 -4289_75974,261,4376_8084,Dun Laoghaire,105321642,0,4376_7778022_100050,4376_105 -4289_75974,262,4376_8085,Dun Laoghaire,105431642,0,4376_7778022_100050,4376_105 -4289_75974,263,4376_8086,Dun Laoghaire,105541642,0,4376_7778022_100050,4376_105 -4289_75974,264,4376_8087,Dun Laoghaire,105651642,0,4376_7778022_100050,4376_105 -4289_75974,265,4376_8088,Dun Laoghaire,105811642,0,4376_7778022_100050,4376_105 -4289_75974,266,4376_8089,Dun Laoghaire,105821642,0,4376_7778022_100050,4376_105 -4289_75960,146,4376_809,Dublin Airport,105247681,1,4376_7778022_103108,4376_3 -4289_75974,267,4376_8090,Dun Laoghaire,106051642,0,4376_7778022_100050,4376_105 -4289_75974,268,4376_8091,Dun Laoghaire,106141642,0,4376_7778022_100050,4376_105 -4289_75974,269,4376_8092,Dun Laoghaire,106231642,0,4376_7778022_100050,4376_105 -4289_75974,259,4376_8093,Dun Laoghaire,105764464,0,4376_7778022_100010,4376_105 -4289_75974,270,4376_8094,Dun Laoghaire,105277242,0,4376_7778022_100050,4376_106 -4289_75974,146,4376_8095,Dun Laoghaire,105247242,0,4376_7778022_100050,4376_106 -4289_75974,271,4376_8096,Dun Laoghaire,105237242,0,4376_7778022_100050,4376_106 -4289_75974,115,4376_8097,Dun Laoghaire,105217242,0,4376_7778022_100050,4376_106 -4289_75974,260,4376_8098,Dun Laoghaire,105311680,0,4376_7778022_100080,4376_105 -4289_75974,261,4376_8099,Dun Laoghaire,105321680,0,4376_7778022_100080,4376_105 -4289_75960,115,4376_81,Sutton Station,105217068,0,4376_7778022_103502,4376_2 -4289_75960,271,4376_810,Dublin Airport,105237681,1,4376_7778022_103108,4376_3 -4289_75974,262,4376_8100,Dun Laoghaire,105431680,0,4376_7778022_100080,4376_105 -4289_75974,263,4376_8101,Dun Laoghaire,105541680,0,4376_7778022_100080,4376_105 -4289_75974,264,4376_8102,Dun Laoghaire,105651680,0,4376_7778022_100080,4376_105 -4289_75974,265,4376_8103,Dun Laoghaire,105811680,0,4376_7778022_100080,4376_105 -4289_75974,266,4376_8104,Dun Laoghaire,105821680,0,4376_7778022_100080,4376_105 -4289_75974,267,4376_8105,Dun Laoghaire,106051680,0,4376_7778022_100080,4376_105 -4289_75974,268,4376_8106,Dun Laoghaire,106141680,0,4376_7778022_100080,4376_105 -4289_75974,269,4376_8107,Dun Laoghaire,106231680,0,4376_7778022_100080,4376_105 -4289_75974,259,4376_8108,Dun Laoghaire,105764502,0,4376_7778022_100040,4376_105 -4289_75974,270,4376_8109,Dun Laoghaire,105277290,0,4376_7778022_100010,4376_105 -4289_75960,115,4376_811,Dublin Airport,105217681,1,4376_7778022_103108,4376_3 -4289_75974,146,4376_8110,Dun Laoghaire,105247290,0,4376_7778022_100010,4376_105 -4289_75974,271,4376_8111,Dun Laoghaire,105237290,0,4376_7778022_100010,4376_105 -4289_75974,115,4376_8112,Dun Laoghaire,105217290,0,4376_7778022_100010,4376_105 -4289_75974,260,4376_8113,Dun Laoghaire,105311722,0,4376_7778022_100010,4376_105 -4289_75974,261,4376_8114,Dun Laoghaire,105321722,0,4376_7778022_100010,4376_105 -4289_75974,262,4376_8115,Dun Laoghaire,105431722,0,4376_7778022_100010,4376_105 -4289_75974,263,4376_8116,Dun Laoghaire,105541722,0,4376_7778022_100010,4376_105 -4289_75974,264,4376_8117,Dun Laoghaire,105651722,0,4376_7778022_100010,4376_105 -4289_75974,265,4376_8118,Dun Laoghaire,105811722,0,4376_7778022_100010,4376_105 -4289_75974,266,4376_8119,Dun Laoghaire,105821722,0,4376_7778022_100010,4376_105 -4289_75960,260,4376_812,Dublin Airport,105312165,1,4376_7778022_103503,4376_3 -4289_75974,267,4376_8120,Dun Laoghaire,106051722,0,4376_7778022_100010,4376_105 -4289_75974,268,4376_8121,Dun Laoghaire,106141722,0,4376_7778022_100010,4376_105 -4289_75974,269,4376_8122,Dun Laoghaire,106231722,0,4376_7778022_100010,4376_105 -4289_75974,259,4376_8123,Dun Laoghaire,105764540,0,4376_7778022_100100,4376_105 -4289_75974,260,4376_8124,Dun Laoghaire,105311748,0,4376_7778022_100060,4376_105 -4289_75974,261,4376_8125,Dun Laoghaire,105321748,0,4376_7778022_100060,4376_105 -4289_75974,262,4376_8126,Dun Laoghaire,105431748,0,4376_7778022_100060,4376_105 -4289_75974,263,4376_8127,Dun Laoghaire,105541748,0,4376_7778022_100060,4376_105 -4289_75974,264,4376_8128,Dun Laoghaire,105651748,0,4376_7778022_100060,4376_105 -4289_75974,265,4376_8129,Dun Laoghaire,105811748,0,4376_7778022_100060,4376_105 -4289_75960,261,4376_813,Dublin Airport,105322165,1,4376_7778022_103503,4376_3 -4289_75974,266,4376_8130,Dun Laoghaire,105821748,0,4376_7778022_100060,4376_105 -4289_75974,267,4376_8131,Dun Laoghaire,106051748,0,4376_7778022_100060,4376_105 -4289_75974,268,4376_8132,Dun Laoghaire,106141748,0,4376_7778022_100060,4376_105 -4289_75974,269,4376_8133,Dun Laoghaire,106231748,0,4376_7778022_100060,4376_105 -4289_75974,259,4376_8134,Dun Laoghaire,105764566,0,4376_7778022_100020,4376_105 -4289_75974,270,4376_8135,Dun Laoghaire,105277332,0,4376_7778022_100030,4376_106 -4289_75974,146,4376_8136,Dun Laoghaire,105247332,0,4376_7778022_100030,4376_106 -4289_75974,271,4376_8137,Dun Laoghaire,105237332,0,4376_7778022_100030,4376_106 -4289_75974,115,4376_8138,Dun Laoghaire,105217332,0,4376_7778022_100030,4376_106 -4289_75974,260,4376_8139,Dun Laoghaire,105311790,0,4376_7778022_100030,4376_105 -4289_75960,262,4376_814,Dublin Airport,105432165,1,4376_7778022_103503,4376_3 -4289_75974,261,4376_8140,Dun Laoghaire,105321790,0,4376_7778022_100030,4376_105 -4289_75974,262,4376_8141,Dun Laoghaire,105431790,0,4376_7778022_100030,4376_105 -4289_75974,263,4376_8142,Dun Laoghaire,105541790,0,4376_7778022_100030,4376_105 -4289_75974,264,4376_8143,Dun Laoghaire,105651790,0,4376_7778022_100030,4376_105 -4289_75974,265,4376_8144,Dun Laoghaire,105811790,0,4376_7778022_100030,4376_105 -4289_75974,266,4376_8145,Dun Laoghaire,105821790,0,4376_7778022_100030,4376_105 -4289_75974,267,4376_8146,Dun Laoghaire,106051790,0,4376_7778022_100030,4376_105 -4289_75974,268,4376_8147,Dun Laoghaire,106141790,0,4376_7778022_100030,4376_105 -4289_75974,269,4376_8148,Dun Laoghaire,106231790,0,4376_7778022_100030,4376_105 -4289_75974,259,4376_8149,Dun Laoghaire,105764606,0,4376_7778022_100130,4376_105 -4289_75960,263,4376_815,Dublin Airport,105542165,1,4376_7778022_103503,4376_3 -4289_75974,270,4376_8150,Dun Laoghaire,105277378,0,4376_7778022_100060,4376_105 -4289_75974,146,4376_8151,Dun Laoghaire,105247378,0,4376_7778022_100060,4376_105 -4289_75974,271,4376_8152,Dun Laoghaire,105237378,0,4376_7778022_100060,4376_105 -4289_75974,115,4376_8153,Dun Laoghaire,105217378,0,4376_7778022_100060,4376_105 -4289_75974,260,4376_8154,Dun Laoghaire,105311826,0,4376_7778022_100070,4376_105 -4289_75974,261,4376_8155,Dun Laoghaire,105321826,0,4376_7778022_100070,4376_105 -4289_75974,262,4376_8156,Dun Laoghaire,105431826,0,4376_7778022_100070,4376_105 -4289_75974,263,4376_8157,Dun Laoghaire,105541826,0,4376_7778022_100070,4376_105 -4289_75974,264,4376_8158,Dun Laoghaire,105651826,0,4376_7778022_100070,4376_105 -4289_75974,265,4376_8159,Dun Laoghaire,105811826,0,4376_7778022_100070,4376_105 -4289_75960,264,4376_816,Dublin Airport,105652165,1,4376_7778022_103503,4376_3 -4289_75974,266,4376_8160,Dun Laoghaire,105821826,0,4376_7778022_100070,4376_105 -4289_75974,267,4376_8161,Dun Laoghaire,106051826,0,4376_7778022_100070,4376_105 -4289_75974,268,4376_8162,Dun Laoghaire,106141826,0,4376_7778022_100070,4376_105 -4289_75974,269,4376_8163,Dun Laoghaire,106231826,0,4376_7778022_100070,4376_105 -4289_75974,259,4376_8164,Dun Laoghaire,105764642,0,4376_7778022_100050,4376_105 -4289_75974,260,4376_8165,Dun Laoghaire,105311858,0,4376_7778022_100020,4376_105 -4289_75974,261,4376_8166,Dun Laoghaire,105321858,0,4376_7778022_100020,4376_105 -4289_75974,262,4376_8167,Dun Laoghaire,105431858,0,4376_7778022_100020,4376_105 -4289_75974,263,4376_8168,Dun Laoghaire,105541858,0,4376_7778022_100020,4376_105 -4289_75974,264,4376_8169,Dun Laoghaire,105651858,0,4376_7778022_100020,4376_105 -4289_75960,265,4376_817,Dublin Airport,105812165,1,4376_7778022_103503,4376_3 -4289_75974,265,4376_8170,Dun Laoghaire,105811858,0,4376_7778022_100020,4376_105 -4289_75974,266,4376_8171,Dun Laoghaire,105821858,0,4376_7778022_100020,4376_105 -4289_75974,267,4376_8172,Dun Laoghaire,106051858,0,4376_7778022_100020,4376_105 -4289_75974,268,4376_8173,Dun Laoghaire,106141858,0,4376_7778022_100020,4376_105 -4289_75974,269,4376_8174,Dun Laoghaire,106231858,0,4376_7778022_100020,4376_105 -4289_75974,259,4376_8175,Dun Laoghaire,105764670,0,4376_7778022_100090,4376_105 -4289_75974,270,4376_8176,Dun Laoghaire,105277424,0,4376_7778022_100090,4376_106 -4289_75974,146,4376_8177,Dun Laoghaire,105247424,0,4376_7778022_100090,4376_106 -4289_75974,271,4376_8178,Dun Laoghaire,105237424,0,4376_7778022_100090,4376_106 -4289_75974,115,4376_8179,Dun Laoghaire,105217424,0,4376_7778022_100090,4376_106 -4289_75960,266,4376_818,Dublin Airport,105822165,1,4376_7778022_103503,4376_3 -4289_75974,260,4376_8180,Dun Laoghaire,105311898,0,4376_7778022_100040,4376_105 -4289_75974,261,4376_8181,Dun Laoghaire,105321898,0,4376_7778022_100040,4376_105 -4289_75974,262,4376_8182,Dun Laoghaire,105431898,0,4376_7778022_100040,4376_105 -4289_75974,263,4376_8183,Dun Laoghaire,105541898,0,4376_7778022_100040,4376_105 -4289_75974,264,4376_8184,Dun Laoghaire,105651898,0,4376_7778022_100040,4376_105 -4289_75974,265,4376_8185,Dun Laoghaire,105811898,0,4376_7778022_100040,4376_105 -4289_75974,266,4376_8186,Dun Laoghaire,105821898,0,4376_7778022_100040,4376_105 -4289_75974,267,4376_8187,Dun Laoghaire,106051898,0,4376_7778022_100040,4376_105 -4289_75974,268,4376_8188,Dun Laoghaire,106141898,0,4376_7778022_100040,4376_105 -4289_75974,269,4376_8189,Dun Laoghaire,106231898,0,4376_7778022_100040,4376_105 -4289_75960,267,4376_819,Dublin Airport,106052165,1,4376_7778022_103503,4376_3 -4289_75974,259,4376_8190,Dun Laoghaire,105764708,0,4376_7778022_100120,4376_105 -4289_75974,270,4376_8191,Dun Laoghaire,105277468,0,4376_7778022_100050,4376_105 -4289_75974,146,4376_8192,Dun Laoghaire,105247468,0,4376_7778022_100050,4376_105 -4289_75974,271,4376_8193,Dun Laoghaire,105237468,0,4376_7778022_100050,4376_105 -4289_75974,115,4376_8194,Dun Laoghaire,105217468,0,4376_7778022_100050,4376_105 -4289_75974,260,4376_8195,Dun Laoghaire,105311936,0,4376_7778022_100050,4376_105 -4289_75974,261,4376_8196,Dun Laoghaire,105321936,0,4376_7778022_100050,4376_105 -4289_75974,262,4376_8197,Dun Laoghaire,105431936,0,4376_7778022_100050,4376_105 -4289_75974,263,4376_8198,Dun Laoghaire,105541936,0,4376_7778022_100050,4376_105 -4289_75974,264,4376_8199,Dun Laoghaire,105651936,0,4376_7778022_100050,4376_105 -4289_75960,260,4376_82,Sutton Station,105311438,0,4376_7778022_103102,4376_1 -4289_75960,268,4376_820,Dublin Airport,106142165,1,4376_7778022_103503,4376_3 -4289_75974,265,4376_8200,Dun Laoghaire,105811936,0,4376_7778022_100050,4376_105 -4289_75974,266,4376_8201,Dun Laoghaire,105821936,0,4376_7778022_100050,4376_105 -4289_75974,267,4376_8202,Dun Laoghaire,106051936,0,4376_7778022_100050,4376_105 -4289_75974,268,4376_8203,Dun Laoghaire,106141936,0,4376_7778022_100050,4376_105 -4289_75974,269,4376_8204,Dun Laoghaire,106231936,0,4376_7778022_100050,4376_105 -4289_75974,259,4376_8205,Dun Laoghaire,105764746,0,4376_7778022_100010,4376_105 -4289_75974,260,4376_8206,Dun Laoghaire,105311968,0,4376_7778022_100080,4376_105 -4289_75974,261,4376_8207,Dun Laoghaire,105321968,0,4376_7778022_100080,4376_105 -4289_75974,262,4376_8208,Dun Laoghaire,105431968,0,4376_7778022_100080,4376_105 -4289_75974,263,4376_8209,Dun Laoghaire,105541968,0,4376_7778022_100080,4376_105 -4289_75960,269,4376_821,Dublin Airport,106232165,1,4376_7778022_103503,4376_3 -4289_75974,264,4376_8210,Dun Laoghaire,105651968,0,4376_7778022_100080,4376_105 -4289_75974,265,4376_8211,Dun Laoghaire,105811968,0,4376_7778022_100080,4376_105 -4289_75974,266,4376_8212,Dun Laoghaire,105821968,0,4376_7778022_100080,4376_105 -4289_75974,267,4376_8213,Dun Laoghaire,106051968,0,4376_7778022_100080,4376_105 -4289_75974,268,4376_8214,Dun Laoghaire,106141968,0,4376_7778022_100080,4376_105 -4289_75974,269,4376_8215,Dun Laoghaire,106231968,0,4376_7778022_100080,4376_105 -4289_75974,259,4376_8216,Dun Laoghaire,105764772,0,4376_7778022_100040,4376_105 -4289_75974,270,4376_8217,Dun Laoghaire,105277514,0,4376_7778022_100080,4376_106 -4289_75974,146,4376_8218,Dun Laoghaire,105247514,0,4376_7778022_100080,4376_106 -4289_75974,271,4376_8219,Dun Laoghaire,105237514,0,4376_7778022_100080,4376_106 -4289_75960,259,4376_822,Dublin Airport,105764999,1,4376_7778022_103108,4376_3 -4289_75974,115,4376_8220,Dun Laoghaire,105217514,0,4376_7778022_100080,4376_106 -4289_75974,260,4376_8221,Dun Laoghaire,105312008,0,4376_7778022_100010,4376_105 -4289_75974,261,4376_8222,Dun Laoghaire,105322008,0,4376_7778022_100010,4376_105 -4289_75974,262,4376_8223,Dun Laoghaire,105432008,0,4376_7778022_100010,4376_105 -4289_75974,263,4376_8224,Dun Laoghaire,105542008,0,4376_7778022_100010,4376_105 -4289_75974,264,4376_8225,Dun Laoghaire,105652008,0,4376_7778022_100010,4376_105 -4289_75974,265,4376_8226,Dun Laoghaire,105812008,0,4376_7778022_100010,4376_105 -4289_75974,266,4376_8227,Dun Laoghaire,105822008,0,4376_7778022_100010,4376_105 -4289_75974,267,4376_8228,Dun Laoghaire,106052008,0,4376_7778022_100010,4376_105 -4289_75974,268,4376_8229,Dun Laoghaire,106142008,0,4376_7778022_100010,4376_105 -4289_75960,270,4376_823,Dublin Airport,105277725,1,4376_7778022_103102,4376_3 -4289_75974,269,4376_8230,Dun Laoghaire,106232008,0,4376_7778022_100010,4376_105 -4289_75974,259,4376_8231,Dun Laoghaire,105764818,0,4376_7778022_100100,4376_105 -4289_75974,270,4376_8232,Dun Laoghaire,105277560,0,4376_7778022_100030,4376_105 -4289_75974,146,4376_8233,Dun Laoghaire,105247560,0,4376_7778022_100030,4376_105 -4289_75974,271,4376_8234,Dun Laoghaire,105237560,0,4376_7778022_100030,4376_105 -4289_75974,115,4376_8235,Dun Laoghaire,105217560,0,4376_7778022_100030,4376_105 -4289_75974,260,4376_8236,Dun Laoghaire,105312046,0,4376_7778022_100060,4376_105 -4289_75974,261,4376_8237,Dun Laoghaire,105322046,0,4376_7778022_100060,4376_105 -4289_75974,262,4376_8238,Dun Laoghaire,105432046,0,4376_7778022_100060,4376_105 -4289_75974,263,4376_8239,Dun Laoghaire,105542046,0,4376_7778022_100060,4376_105 -4289_75960,146,4376_824,Dublin Airport,105247725,1,4376_7778022_103102,4376_3 -4289_75974,264,4376_8240,Dun Laoghaire,105652046,0,4376_7778022_100060,4376_105 -4289_75974,265,4376_8241,Dun Laoghaire,105812046,0,4376_7778022_100060,4376_105 -4289_75974,266,4376_8242,Dun Laoghaire,105822046,0,4376_7778022_100060,4376_105 -4289_75974,267,4376_8243,Dun Laoghaire,106052046,0,4376_7778022_100060,4376_105 -4289_75974,268,4376_8244,Dun Laoghaire,106142046,0,4376_7778022_100060,4376_105 -4289_75974,269,4376_8245,Dun Laoghaire,106232046,0,4376_7778022_100060,4376_105 -4289_75974,259,4376_8246,Dun Laoghaire,105764854,0,4376_7778022_100020,4376_105 -4289_75974,260,4376_8247,Dun Laoghaire,105312090,0,4376_7778022_100030,4376_104 -4289_75974,261,4376_8248,Dun Laoghaire,105322090,0,4376_7778022_100030,4376_104 -4289_75974,262,4376_8249,Dun Laoghaire,105432090,0,4376_7778022_100030,4376_104 -4289_75960,271,4376_825,Dublin Airport,105237725,1,4376_7778022_103102,4376_3 -4289_75974,263,4376_8250,Dun Laoghaire,105542090,0,4376_7778022_100030,4376_104 -4289_75974,264,4376_8251,Dun Laoghaire,105652090,0,4376_7778022_100030,4376_104 -4289_75974,265,4376_8252,Dun Laoghaire,105812090,0,4376_7778022_100030,4376_104 -4289_75974,266,4376_8253,Dun Laoghaire,105822090,0,4376_7778022_100030,4376_104 -4289_75974,267,4376_8254,Dun Laoghaire,106052090,0,4376_7778022_100030,4376_104 -4289_75974,268,4376_8255,Dun Laoghaire,106142090,0,4376_7778022_100030,4376_104 -4289_75974,269,4376_8256,Dun Laoghaire,106232090,0,4376_7778022_100030,4376_104 -4289_75974,270,4376_8257,Dun Laoghaire,105277604,0,4376_7778022_100020,4376_105 -4289_75974,146,4376_8258,Dun Laoghaire,105247604,0,4376_7778022_100020,4376_105 -4289_75974,271,4376_8259,Dun Laoghaire,105237604,0,4376_7778022_100020,4376_105 -4289_75960,115,4376_826,Dublin Airport,105217725,1,4376_7778022_103102,4376_3 -4289_75974,115,4376_8260,Dun Laoghaire,105217604,0,4376_7778022_100020,4376_105 -4289_75974,259,4376_8261,Dun Laoghaire,105764876,0,4376_7778022_100130,4376_105 -4289_75974,260,4376_8262,Dun Laoghaire,105312142,0,4376_7778022_100090,4376_104 -4289_75974,261,4376_8263,Dun Laoghaire,105322142,0,4376_7778022_100090,4376_104 -4289_75974,262,4376_8264,Dun Laoghaire,105432142,0,4376_7778022_100090,4376_104 -4289_75974,263,4376_8265,Dun Laoghaire,105542142,0,4376_7778022_100090,4376_104 -4289_75974,264,4376_8266,Dun Laoghaire,105652142,0,4376_7778022_100090,4376_104 -4289_75974,265,4376_8267,Dun Laoghaire,105812142,0,4376_7778022_100090,4376_104 -4289_75974,266,4376_8268,Dun Laoghaire,105822142,0,4376_7778022_100090,4376_104 -4289_75974,267,4376_8269,Dun Laoghaire,106052142,0,4376_7778022_100090,4376_104 -4289_75960,260,4376_827,Dublin Airport,105312251,1,4376_7778022_103108,4376_3 -4289_75974,268,4376_8270,Dun Laoghaire,106142142,0,4376_7778022_100090,4376_104 -4289_75974,269,4376_8271,Dun Laoghaire,106232142,0,4376_7778022_100090,4376_104 -4289_75974,259,4376_8272,Dun Laoghaire,105764914,0,4376_7778022_100050,4376_105 -4289_75974,270,4376_8273,Dun Laoghaire,105277650,0,4376_7778022_100090,4376_105 -4289_75974,146,4376_8274,Dun Laoghaire,105247650,0,4376_7778022_100090,4376_105 -4289_75974,271,4376_8275,Dun Laoghaire,105237650,0,4376_7778022_100090,4376_105 -4289_75974,115,4376_8276,Dun Laoghaire,105217650,0,4376_7778022_100090,4376_105 -4289_75974,260,4376_8277,Dun Laoghaire,105312182,0,4376_7778022_100070,4376_104 -4289_75974,261,4376_8278,Dun Laoghaire,105322182,0,4376_7778022_100070,4376_104 -4289_75974,262,4376_8279,Dun Laoghaire,105432182,0,4376_7778022_100070,4376_104 -4289_75960,261,4376_828,Dublin Airport,105322251,1,4376_7778022_103108,4376_3 -4289_75974,263,4376_8280,Dun Laoghaire,105542182,0,4376_7778022_100070,4376_104 -4289_75974,264,4376_8281,Dun Laoghaire,105652182,0,4376_7778022_100070,4376_104 -4289_75974,265,4376_8282,Dun Laoghaire,105812182,0,4376_7778022_100070,4376_104 -4289_75974,266,4376_8283,Dun Laoghaire,105822182,0,4376_7778022_100070,4376_104 -4289_75974,267,4376_8284,Dun Laoghaire,106052182,0,4376_7778022_100070,4376_104 -4289_75974,268,4376_8285,Dun Laoghaire,106142182,0,4376_7778022_100070,4376_104 -4289_75974,269,4376_8286,Dun Laoghaire,106232182,0,4376_7778022_100070,4376_104 -4289_75974,259,4376_8287,Dun Laoghaire,105764956,0,4376_7778022_100090,4376_105 -4289_75974,260,4376_8288,Dun Laoghaire,105312220,0,4376_7778022_100020,4376_104 -4289_75974,261,4376_8289,Dun Laoghaire,105322220,0,4376_7778022_100020,4376_104 -4289_75960,262,4376_829,Dublin Airport,105432251,1,4376_7778022_103108,4376_3 -4289_75974,262,4376_8290,Dun Laoghaire,105432220,0,4376_7778022_100020,4376_104 -4289_75974,263,4376_8291,Dun Laoghaire,105542220,0,4376_7778022_100020,4376_104 -4289_75974,264,4376_8292,Dun Laoghaire,105652220,0,4376_7778022_100020,4376_104 -4289_75974,265,4376_8293,Dun Laoghaire,105812220,0,4376_7778022_100020,4376_104 -4289_75974,266,4376_8294,Dun Laoghaire,105822220,0,4376_7778022_100020,4376_104 -4289_75974,267,4376_8295,Dun Laoghaire,106052220,0,4376_7778022_100020,4376_104 -4289_75974,268,4376_8296,Dun Laoghaire,106142220,0,4376_7778022_100020,4376_104 -4289_75974,269,4376_8297,Dun Laoghaire,106232220,0,4376_7778022_100020,4376_104 -4289_75974,270,4376_8298,Dun Laoghaire,105277694,0,4376_7778022_100050,4376_105 -4289_75974,146,4376_8299,Dun Laoghaire,105247694,0,4376_7778022_100050,4376_105 -4289_75960,261,4376_83,Sutton Station,105321438,0,4376_7778022_103102,4376_1 -4289_75960,263,4376_830,Dublin Airport,105542251,1,4376_7778022_103108,4376_3 -4289_75974,271,4376_8300,Dun Laoghaire,105237694,0,4376_7778022_100050,4376_105 -4289_75974,115,4376_8301,Dun Laoghaire,105217694,0,4376_7778022_100050,4376_105 -4289_75974,259,4376_8302,Dun Laoghaire,105764978,0,4376_7778022_100030,4376_105 -4289_75974,260,4376_8303,Dun Laoghaire,105312266,0,4376_7778022_100040,4376_104 -4289_75974,261,4376_8304,Dun Laoghaire,105322266,0,4376_7778022_100040,4376_104 -4289_75974,262,4376_8305,Dun Laoghaire,105432266,0,4376_7778022_100040,4376_104 -4289_75974,263,4376_8306,Dun Laoghaire,105542266,0,4376_7778022_100040,4376_104 -4289_75974,264,4376_8307,Dun Laoghaire,105652266,0,4376_7778022_100040,4376_104 -4289_75974,265,4376_8308,Dun Laoghaire,105812266,0,4376_7778022_100040,4376_104 -4289_75974,266,4376_8309,Dun Laoghaire,105822266,0,4376_7778022_100040,4376_104 -4289_75960,264,4376_831,Dublin Airport,105652251,1,4376_7778022_103108,4376_3 -4289_75974,267,4376_8310,Dun Laoghaire,106052266,0,4376_7778022_100040,4376_104 -4289_75974,268,4376_8311,Dun Laoghaire,106142266,0,4376_7778022_100040,4376_104 -4289_75974,269,4376_8312,Dun Laoghaire,106232266,0,4376_7778022_100040,4376_104 -4289_75974,259,4376_8313,Dun Laoghaire,105765016,0,4376_7778022_100010,4376_105 -4289_75974,270,4376_8314,Dun Laoghaire,105277740,0,4376_7778022_100040,4376_105 -4289_75974,146,4376_8315,Dun Laoghaire,105247740,0,4376_7778022_100040,4376_105 -4289_75974,271,4376_8316,Dun Laoghaire,105237740,0,4376_7778022_100040,4376_105 -4289_75974,115,4376_8317,Dun Laoghaire,105217740,0,4376_7778022_100040,4376_105 -4289_75974,260,4376_8318,Dun Laoghaire,105312308,0,4376_7778022_100050,4376_104 -4289_75974,261,4376_8319,Dun Laoghaire,105322308,0,4376_7778022_100050,4376_104 -4289_75960,265,4376_832,Dublin Airport,105812251,1,4376_7778022_103108,4376_3 -4289_75974,262,4376_8320,Dun Laoghaire,105432308,0,4376_7778022_100050,4376_104 -4289_75974,263,4376_8321,Dun Laoghaire,105542308,0,4376_7778022_100050,4376_104 -4289_75974,264,4376_8322,Dun Laoghaire,105652308,0,4376_7778022_100050,4376_104 -4289_75974,265,4376_8323,Dun Laoghaire,105812308,0,4376_7778022_100050,4376_104 -4289_75974,266,4376_8324,Dun Laoghaire,105822308,0,4376_7778022_100050,4376_104 -4289_75974,267,4376_8325,Dun Laoghaire,106052308,0,4376_7778022_100050,4376_104 -4289_75974,268,4376_8326,Dun Laoghaire,106142308,0,4376_7778022_100050,4376_104 -4289_75974,269,4376_8327,Dun Laoghaire,106232308,0,4376_7778022_100050,4376_104 -4289_75974,259,4376_8328,Dun Laoghaire,105765060,0,4376_7778022_100040,4376_105 -4289_75974,260,4376_8329,Dun Laoghaire,105312346,0,4376_7778022_100080,4376_104 -4289_75960,266,4376_833,Dublin Airport,105822251,1,4376_7778022_103108,4376_3 -4289_75974,261,4376_8330,Dun Laoghaire,105322346,0,4376_7778022_100080,4376_104 -4289_75974,262,4376_8331,Dun Laoghaire,105432346,0,4376_7778022_100080,4376_104 -4289_75974,263,4376_8332,Dun Laoghaire,105542346,0,4376_7778022_100080,4376_104 -4289_75974,264,4376_8333,Dun Laoghaire,105652346,0,4376_7778022_100080,4376_104 -4289_75974,265,4376_8334,Dun Laoghaire,105812346,0,4376_7778022_100080,4376_104 -4289_75974,266,4376_8335,Dun Laoghaire,105822346,0,4376_7778022_100080,4376_104 -4289_75974,267,4376_8336,Dun Laoghaire,106052346,0,4376_7778022_100080,4376_104 -4289_75974,268,4376_8337,Dun Laoghaire,106142346,0,4376_7778022_100080,4376_104 -4289_75974,269,4376_8338,Dun Laoghaire,106232346,0,4376_7778022_100080,4376_104 -4289_75974,270,4376_8339,Dun Laoghaire,105277784,0,4376_7778022_100060,4376_105 -4289_75960,267,4376_834,Dublin Airport,106052251,1,4376_7778022_103108,4376_3 -4289_75974,146,4376_8340,Dun Laoghaire,105247784,0,4376_7778022_100060,4376_105 -4289_75974,271,4376_8341,Dun Laoghaire,105237784,0,4376_7778022_100060,4376_105 -4289_75974,115,4376_8342,Dun Laoghaire,105217784,0,4376_7778022_100060,4376_105 -4289_75974,259,4376_8343,Dun Laoghaire,105765080,0,4376_7778022_100100,4376_105 -4289_75974,259,4376_8344,Dun Laoghaire,105765118,0,4376_7778022_100020,4376_105 -4289_75974,260,4376_8345,Dun Laoghaire,105312394,0,4376_7778022_100010,4376_104 -4289_75974,261,4376_8346,Dun Laoghaire,105322394,0,4376_7778022_100010,4376_104 -4289_75974,262,4376_8347,Dun Laoghaire,105432394,0,4376_7778022_100010,4376_104 -4289_75974,263,4376_8348,Dun Laoghaire,105542394,0,4376_7778022_100010,4376_104 -4289_75974,264,4376_8349,Dun Laoghaire,105652394,0,4376_7778022_100010,4376_104 -4289_75960,268,4376_835,Dublin Airport,106142251,1,4376_7778022_103108,4376_3 -4289_75974,265,4376_8350,Dun Laoghaire,105812394,0,4376_7778022_100010,4376_104 -4289_75974,266,4376_8351,Dun Laoghaire,105822394,0,4376_7778022_100010,4376_104 -4289_75974,267,4376_8352,Dun Laoghaire,106052394,0,4376_7778022_100010,4376_104 -4289_75974,268,4376_8353,Dun Laoghaire,106142394,0,4376_7778022_100010,4376_104 -4289_75974,269,4376_8354,Dun Laoghaire,106232394,0,4376_7778022_100010,4376_104 -4289_75974,270,4376_8355,Dun Laoghaire,105277832,0,4376_7778022_100020,4376_105 -4289_75974,146,4376_8356,Dun Laoghaire,105247832,0,4376_7778022_100020,4376_105 -4289_75974,271,4376_8357,Dun Laoghaire,105237832,0,4376_7778022_100020,4376_105 -4289_75974,115,4376_8358,Dun Laoghaire,105217832,0,4376_7778022_100020,4376_105 -4289_75974,260,4376_8359,Dun Laoghaire,105312434,0,4376_7778022_100060,4376_104 -4289_75960,269,4376_836,Dublin Airport,106232251,1,4376_7778022_103108,4376_3 -4289_75974,261,4376_8360,Dun Laoghaire,105322434,0,4376_7778022_100060,4376_104 -4289_75974,262,4376_8361,Dun Laoghaire,105432434,0,4376_7778022_100060,4376_104 -4289_75974,263,4376_8362,Dun Laoghaire,105542434,0,4376_7778022_100060,4376_104 -4289_75974,264,4376_8363,Dun Laoghaire,105652434,0,4376_7778022_100060,4376_104 -4289_75974,265,4376_8364,Dun Laoghaire,105812434,0,4376_7778022_100060,4376_104 -4289_75974,266,4376_8365,Dun Laoghaire,105822434,0,4376_7778022_100060,4376_104 -4289_75974,267,4376_8366,Dun Laoghaire,106052434,0,4376_7778022_100060,4376_104 -4289_75974,268,4376_8367,Dun Laoghaire,106142434,0,4376_7778022_100060,4376_104 -4289_75974,269,4376_8368,Dun Laoghaire,106232434,0,4376_7778022_100060,4376_104 -4289_75974,259,4376_8369,Dun Laoghaire,105765160,0,4376_7778022_100130,4376_105 -4289_75960,259,4376_837,Dublin Airport,105765053,1,4376_7778022_103101,4376_3 -4289_75974,260,4376_8370,Dun Laoghaire,105312466,0,4376_7778022_100030,4376_104 -4289_75974,261,4376_8371,Dun Laoghaire,105322466,0,4376_7778022_100030,4376_104 -4289_75974,262,4376_8372,Dun Laoghaire,105432466,0,4376_7778022_100030,4376_104 -4289_75974,263,4376_8373,Dun Laoghaire,105542466,0,4376_7778022_100030,4376_104 -4289_75974,264,4376_8374,Dun Laoghaire,105652466,0,4376_7778022_100030,4376_104 -4289_75974,265,4376_8375,Dun Laoghaire,105812466,0,4376_7778022_100030,4376_104 -4289_75974,266,4376_8376,Dun Laoghaire,105822466,0,4376_7778022_100030,4376_104 -4289_75974,267,4376_8377,Dun Laoghaire,106052466,0,4376_7778022_100030,4376_104 -4289_75974,268,4376_8378,Dun Laoghaire,106142466,0,4376_7778022_100030,4376_104 -4289_75974,269,4376_8379,Dun Laoghaire,106232466,0,4376_7778022_100030,4376_104 -4289_75960,270,4376_838,Dublin Airport,105277771,1,4376_7778022_103501,4376_3 -4289_75974,259,4376_8380,Dun Laoghaire,105765184,0,4376_7778022_100050,4376_105 -4289_75974,270,4376_8381,Dun Laoghaire,105277876,0,4376_7778022_100090,4376_105 -4289_75974,146,4376_8382,Dun Laoghaire,105247876,0,4376_7778022_100090,4376_105 -4289_75974,271,4376_8383,Dun Laoghaire,105237876,0,4376_7778022_100090,4376_105 -4289_75974,115,4376_8384,Dun Laoghaire,105217876,0,4376_7778022_100090,4376_105 -4289_75974,260,4376_8385,Dun Laoghaire,105312506,0,4376_7778022_100090,4376_104 -4289_75974,261,4376_8386,Dun Laoghaire,105322506,0,4376_7778022_100090,4376_104 -4289_75974,262,4376_8387,Dun Laoghaire,105432506,0,4376_7778022_100090,4376_104 -4289_75974,263,4376_8388,Dun Laoghaire,105542506,0,4376_7778022_100090,4376_104 -4289_75974,264,4376_8389,Dun Laoghaire,105652506,0,4376_7778022_100090,4376_104 -4289_75960,146,4376_839,Dublin Airport,105247771,1,4376_7778022_103501,4376_3 -4289_75974,265,4376_8390,Dun Laoghaire,105812506,0,4376_7778022_100090,4376_104 -4289_75974,266,4376_8391,Dun Laoghaire,105822506,0,4376_7778022_100090,4376_104 -4289_75974,267,4376_8392,Dun Laoghaire,106052506,0,4376_7778022_100090,4376_104 -4289_75974,268,4376_8393,Dun Laoghaire,106142506,0,4376_7778022_100090,4376_104 -4289_75974,269,4376_8394,Dun Laoghaire,106232506,0,4376_7778022_100090,4376_104 -4289_75974,259,4376_8395,Dun Laoghaire,105765226,0,4376_7778022_100070,4376_105 -4289_75974,270,4376_8396,Dun Laoghaire,105277924,0,4376_7778022_100080,4376_105 -4289_75974,146,4376_8397,Dun Laoghaire,105247924,0,4376_7778022_100080,4376_105 -4289_75974,271,4376_8398,Dun Laoghaire,105237924,0,4376_7778022_100080,4376_105 -4289_75974,115,4376_8399,Dun Laoghaire,105217924,0,4376_7778022_100080,4376_105 -4289_75960,262,4376_84,Sutton Station,105431438,0,4376_7778022_103102,4376_1 -4289_75960,271,4376_840,Dublin Airport,105237771,1,4376_7778022_103501,4376_3 -4289_75974,260,4376_8400,Dun Laoghaire,105312544,0,4376_7778022_100020,4376_104 -4289_75974,261,4376_8401,Dun Laoghaire,105322544,0,4376_7778022_100020,4376_104 -4289_75974,262,4376_8402,Dun Laoghaire,105432544,0,4376_7778022_100020,4376_104 -4289_75974,263,4376_8403,Dun Laoghaire,105542544,0,4376_7778022_100020,4376_104 -4289_75974,264,4376_8404,Dun Laoghaire,105652544,0,4376_7778022_100020,4376_104 -4289_75974,265,4376_8405,Dun Laoghaire,105812544,0,4376_7778022_100020,4376_104 -4289_75974,266,4376_8406,Dun Laoghaire,105822544,0,4376_7778022_100020,4376_104 -4289_75974,267,4376_8407,Dun Laoghaire,106052544,0,4376_7778022_100020,4376_104 -4289_75974,268,4376_8408,Dun Laoghaire,106142544,0,4376_7778022_100020,4376_104 -4289_75974,269,4376_8409,Dun Laoghaire,106232544,0,4376_7778022_100020,4376_104 -4289_75960,115,4376_841,Dublin Airport,105217771,1,4376_7778022_103501,4376_3 -4289_75974,259,4376_8410,Dun Laoghaire,105765262,0,4376_7778022_100030,4376_105 -4289_75974,260,4376_8411,Dun Laoghaire,105312574,0,4376_7778022_100040,4376_105 -4289_75974,261,4376_8412,Dun Laoghaire,105322574,0,4376_7778022_100040,4376_105 -4289_75974,262,4376_8413,Dun Laoghaire,105432574,0,4376_7778022_100040,4376_105 -4289_75974,263,4376_8414,Dun Laoghaire,105542574,0,4376_7778022_100040,4376_105 -4289_75974,264,4376_8415,Dun Laoghaire,105652574,0,4376_7778022_100040,4376_105 -4289_75974,265,4376_8416,Dun Laoghaire,105812574,0,4376_7778022_100040,4376_105 -4289_75974,266,4376_8417,Dun Laoghaire,105822574,0,4376_7778022_100040,4376_105 -4289_75974,267,4376_8418,Dun Laoghaire,106052574,0,4376_7778022_100040,4376_105 -4289_75974,268,4376_8419,Dun Laoghaire,106142574,0,4376_7778022_100040,4376_105 -4289_75960,260,4376_842,Dublin Airport,105312311,1,4376_7778022_103106,4376_3 -4289_75974,269,4376_8420,Dun Laoghaire,106232574,0,4376_7778022_100040,4376_105 -4289_75974,259,4376_8421,Dun Laoghaire,105765286,0,4376_7778022_100110,4376_106 -4289_75974,270,4376_8422,Dun Laoghaire,105277962,0,4376_7778022_100040,4376_106 -4289_75974,146,4376_8423,Dun Laoghaire,105247962,0,4376_7778022_100040,4376_106 -4289_75974,271,4376_8424,Dun Laoghaire,105237962,0,4376_7778022_100040,4376_106 -4289_75974,115,4376_8425,Dun Laoghaire,105217962,0,4376_7778022_100040,4376_106 -4289_75974,260,4376_8426,Dun Laoghaire,105312626,0,4376_7778022_100050,4376_105 -4289_75974,261,4376_8427,Dun Laoghaire,105322626,0,4376_7778022_100050,4376_105 -4289_75974,262,4376_8428,Dun Laoghaire,105432626,0,4376_7778022_100050,4376_105 -4289_75974,263,4376_8429,Dun Laoghaire,105542626,0,4376_7778022_100050,4376_105 -4289_75960,261,4376_843,Dublin Airport,105322311,1,4376_7778022_103106,4376_3 -4289_75974,264,4376_8430,Dun Laoghaire,105652626,0,4376_7778022_100050,4376_105 -4289_75974,265,4376_8431,Dun Laoghaire,105812626,0,4376_7778022_100050,4376_105 -4289_75974,266,4376_8432,Dun Laoghaire,105822626,0,4376_7778022_100050,4376_105 -4289_75974,267,4376_8433,Dun Laoghaire,106052626,0,4376_7778022_100050,4376_105 -4289_75974,268,4376_8434,Dun Laoghaire,106142626,0,4376_7778022_100050,4376_105 -4289_75974,269,4376_8435,Dun Laoghaire,106232626,0,4376_7778022_100050,4376_105 -4289_75974,259,4376_8436,Dun Laoghaire,105765336,0,4376_7778022_100100,4376_106 -4289_75974,270,4376_8437,Dun Laoghaire,105278012,0,4376_7778022_100060,4376_106 -4289_75974,146,4376_8438,Dun Laoghaire,105248012,0,4376_7778022_100060,4376_106 -4289_75974,271,4376_8439,Dun Laoghaire,105238012,0,4376_7778022_100060,4376_106 -4289_75960,262,4376_844,Dublin Airport,105432311,1,4376_7778022_103106,4376_3 -4289_75974,115,4376_8440,Dun Laoghaire,105218012,0,4376_7778022_100060,4376_106 -4289_75974,260,4376_8441,Dun Laoghaire,105312670,0,4376_7778022_100010,4376_105 -4289_75974,261,4376_8442,Dun Laoghaire,105322670,0,4376_7778022_100010,4376_105 -4289_75974,262,4376_8443,Dun Laoghaire,105432670,0,4376_7778022_100010,4376_105 -4289_75974,263,4376_8444,Dun Laoghaire,105542670,0,4376_7778022_100010,4376_105 -4289_75974,264,4376_8445,Dun Laoghaire,105652670,0,4376_7778022_100010,4376_105 -4289_75974,265,4376_8446,Dun Laoghaire,105812670,0,4376_7778022_100010,4376_105 -4289_75974,266,4376_8447,Dun Laoghaire,105822670,0,4376_7778022_100010,4376_105 -4289_75974,267,4376_8448,Dun Laoghaire,106052670,0,4376_7778022_100010,4376_105 -4289_75974,268,4376_8449,Dun Laoghaire,106142670,0,4376_7778022_100010,4376_105 -4289_75960,263,4376_845,Dublin Airport,105542311,1,4376_7778022_103106,4376_3 -4289_75974,269,4376_8450,Dun Laoghaire,106232670,0,4376_7778022_100010,4376_105 -4289_75974,259,4376_8451,Dun Laoghaire,105765376,0,4376_7778022_100130,4376_106 -4289_75974,270,4376_8452,Dun Laoghaire,105278046,0,4376_7778022_100020,4376_107 -4289_75974,146,4376_8453,Dun Laoghaire,105248046,0,4376_7778022_100020,4376_107 -4289_75974,271,4376_8454,Dun Laoghaire,105238046,0,4376_7778022_100020,4376_107 -4289_75974,115,4376_8455,Dun Laoghaire,105218046,0,4376_7778022_100020,4376_107 -4289_75974,260,4376_8456,Dun Laoghaire,105312724,0,4376_7778022_100100,4376_105 -4289_75974,261,4376_8457,Dun Laoghaire,105322724,0,4376_7778022_100100,4376_105 -4289_75974,262,4376_8458,Dun Laoghaire,105432724,0,4376_7778022_100100,4376_105 -4289_75974,263,4376_8459,Dun Laoghaire,105542724,0,4376_7778022_100100,4376_105 -4289_75960,264,4376_846,Dublin Airport,105652311,1,4376_7778022_103106,4376_3 -4289_75974,264,4376_8460,Dun Laoghaire,105652724,0,4376_7778022_100100,4376_105 -4289_75974,265,4376_8461,Dun Laoghaire,105812724,0,4376_7778022_100100,4376_105 -4289_75974,266,4376_8462,Dun Laoghaire,105822724,0,4376_7778022_100100,4376_105 -4289_75974,267,4376_8463,Dun Laoghaire,106052724,0,4376_7778022_100100,4376_105 -4289_75974,268,4376_8464,Dun Laoghaire,106142724,0,4376_7778022_100100,4376_105 -4289_75974,269,4376_8465,Dun Laoghaire,106232724,0,4376_7778022_100100,4376_105 -4289_75974,259,4376_8466,Dun Laoghaire,105765426,0,4376_7778022_100070,4376_106 -4289_75974,270,4376_8467,Dun Laoghaire,105278090,0,4376_7778022_100050,4376_107 -4289_75974,146,4376_8468,Dun Laoghaire,105248090,0,4376_7778022_100050,4376_107 -4289_75974,271,4376_8469,Dun Laoghaire,105238090,0,4376_7778022_100050,4376_107 -4289_75960,265,4376_847,Dublin Airport,105812311,1,4376_7778022_103106,4376_3 -4289_75974,115,4376_8470,Dun Laoghaire,105218090,0,4376_7778022_100050,4376_107 -4289_75974,260,4376_8471,Dun Laoghaire,105312782,0,4376_7778022_100020,4376_105 -4289_75974,261,4376_8472,Dun Laoghaire,105322782,0,4376_7778022_100020,4376_105 -4289_75974,262,4376_8473,Dun Laoghaire,105432782,0,4376_7778022_100020,4376_105 -4289_75974,263,4376_8474,Dun Laoghaire,105542782,0,4376_7778022_100020,4376_105 -4289_75974,264,4376_8475,Dun Laoghaire,105652782,0,4376_7778022_100020,4376_105 -4289_75974,265,4376_8476,Dun Laoghaire,105812782,0,4376_7778022_100020,4376_105 -4289_75974,266,4376_8477,Dun Laoghaire,105822782,0,4376_7778022_100020,4376_105 -4289_75974,267,4376_8478,Dun Laoghaire,106052782,0,4376_7778022_100020,4376_105 -4289_75974,268,4376_8479,Dun Laoghaire,106142782,0,4376_7778022_100020,4376_105 -4289_75960,266,4376_848,Dublin Airport,105822311,1,4376_7778022_103106,4376_3 -4289_75974,269,4376_8480,Dun Laoghaire,106232782,0,4376_7778022_100020,4376_105 -4289_75974,259,4376_8481,Dun Laoghaire,105765476,0,4376_7778022_100080,4376_105 -4289_75974,270,4376_8482,Dun Laoghaire,105278130,0,4376_7778022_100070,4376_105 -4289_75974,146,4376_8483,Dun Laoghaire,105248130,0,4376_7778022_100070,4376_105 -4289_75974,271,4376_8484,Dun Laoghaire,105238130,0,4376_7778022_100070,4376_105 -4289_75974,115,4376_8485,Dun Laoghaire,105218130,0,4376_7778022_100070,4376_105 -4289_75974,260,4376_8486,Dun Laoghaire,105312836,0,4376_7778022_100130,4376_105 -4289_75974,261,4376_8487,Dun Laoghaire,105322836,0,4376_7778022_100130,4376_105 -4289_75974,262,4376_8488,Dun Laoghaire,105432836,0,4376_7778022_100130,4376_105 -4289_75974,263,4376_8489,Dun Laoghaire,105542836,0,4376_7778022_100130,4376_105 -4289_75960,267,4376_849,Dublin Airport,106052311,1,4376_7778022_103106,4376_3 -4289_75974,264,4376_8490,Dun Laoghaire,105652836,0,4376_7778022_100130,4376_105 -4289_75974,265,4376_8491,Dun Laoghaire,105812836,0,4376_7778022_100130,4376_105 -4289_75974,266,4376_8492,Dun Laoghaire,105822836,0,4376_7778022_100130,4376_105 -4289_75974,267,4376_8493,Dun Laoghaire,106052836,0,4376_7778022_100130,4376_105 -4289_75974,268,4376_8494,Dun Laoghaire,106142836,0,4376_7778022_100130,4376_105 -4289_75974,269,4376_8495,Dun Laoghaire,106232836,0,4376_7778022_100130,4376_105 -4289_75974,259,4376_8496,Dun Laoghaire,105765524,0,4376_7778022_100060,4376_105 -4289_75974,270,4376_8497,Dun Laoghaire,105278180,0,4376_7778022_100030,4376_105 -4289_75974,146,4376_8498,Dun Laoghaire,105248180,0,4376_7778022_100030,4376_105 -4289_75974,271,4376_8499,Dun Laoghaire,105238180,0,4376_7778022_100030,4376_105 -4289_75960,263,4376_85,Sutton Station,105541438,0,4376_7778022_103102,4376_1 -4289_75960,268,4376_850,Dublin Airport,106142311,1,4376_7778022_103106,4376_3 -4289_75974,115,4376_8500,Dun Laoghaire,105218180,0,4376_7778022_100030,4376_105 -4289_75974,260,4376_8501,Dun Laoghaire,105312888,0,4376_7778022_100010,4376_105 -4289_75974,261,4376_8502,Dun Laoghaire,105322888,0,4376_7778022_100010,4376_105 -4289_75974,262,4376_8503,Dun Laoghaire,105432888,0,4376_7778022_100010,4376_105 -4289_75974,263,4376_8504,Dun Laoghaire,105542888,0,4376_7778022_100010,4376_105 -4289_75974,264,4376_8505,Dun Laoghaire,105652888,0,4376_7778022_100010,4376_105 -4289_75974,265,4376_8506,Dun Laoghaire,105812888,0,4376_7778022_100010,4376_105 -4289_75974,266,4376_8507,Dun Laoghaire,105822888,0,4376_7778022_100010,4376_105 -4289_75974,267,4376_8508,Dun Laoghaire,106052888,0,4376_7778022_100010,4376_105 -4289_75974,268,4376_8509,Dun Laoghaire,106142888,0,4376_7778022_100010,4376_105 -4289_75960,269,4376_851,Dublin Airport,106232311,1,4376_7778022_103106,4376_3 -4289_75974,269,4376_8510,Dun Laoghaire,106232888,0,4376_7778022_100010,4376_105 -4289_75974,259,4376_8511,Dun Laoghaire,105765570,0,4376_7778022_100130,4376_105 -4289_75974,270,4376_8512,Dun Laoghaire,105278218,0,4376_7778022_100020,4376_105 -4289_75974,146,4376_8513,Dun Laoghaire,105248218,0,4376_7778022_100020,4376_105 -4289_75974,271,4376_8514,Dun Laoghaire,105238218,0,4376_7778022_100020,4376_105 -4289_75974,115,4376_8515,Dun Laoghaire,105218218,0,4376_7778022_100020,4376_105 -4289_75974,260,4376_8516,Dun Laoghaire,105312930,0,4376_7778022_100100,4376_105 -4289_75974,261,4376_8517,Dun Laoghaire,105322930,0,4376_7778022_100100,4376_105 -4289_75974,262,4376_8518,Dun Laoghaire,105432930,0,4376_7778022_100100,4376_105 -4289_75974,263,4376_8519,Dun Laoghaire,105542930,0,4376_7778022_100100,4376_105 -4289_75960,259,4376_852,Dublin Airport,105765103,1,4376_7778022_103502,4376_3 -4289_75974,264,4376_8520,Dun Laoghaire,105652930,0,4376_7778022_100100,4376_105 -4289_75974,265,4376_8521,Dun Laoghaire,105812930,0,4376_7778022_100100,4376_105 -4289_75974,266,4376_8522,Dun Laoghaire,105822930,0,4376_7778022_100100,4376_105 -4289_75974,267,4376_8523,Dun Laoghaire,106052930,0,4376_7778022_100100,4376_105 -4289_75974,268,4376_8524,Dun Laoghaire,106142930,0,4376_7778022_100100,4376_105 -4289_75974,269,4376_8525,Dun Laoghaire,106232930,0,4376_7778022_100100,4376_105 -4289_75974,259,4376_8526,Dun Laoghaire,105765608,0,4376_7778022_100070,4376_105 -4289_75974,270,4376_8527,Dun Laoghaire,105278254,0,4376_7778022_100050,4376_105 -4289_75974,146,4376_8528,Dun Laoghaire,105248254,0,4376_7778022_100050,4376_105 -4289_75974,271,4376_8529,Dun Laoghaire,105238254,0,4376_7778022_100050,4376_105 -4289_75960,270,4376_853,Dublin Airport,105277815,1,4376_7778022_103502,4376_3 -4289_75974,115,4376_8530,Dun Laoghaire,105218254,0,4376_7778022_100050,4376_105 -4289_75974,260,4376_8531,Dun Laoghaire,105312976,0,4376_7778022_100020,4376_105 -4289_75974,261,4376_8532,Dun Laoghaire,105322976,0,4376_7778022_100020,4376_105 -4289_75974,262,4376_8533,Dun Laoghaire,105432976,0,4376_7778022_100020,4376_105 -4289_75974,263,4376_8534,Dun Laoghaire,105542976,0,4376_7778022_100020,4376_105 -4289_75974,264,4376_8535,Dun Laoghaire,105652976,0,4376_7778022_100020,4376_105 -4289_75974,265,4376_8536,Dun Laoghaire,105812976,0,4376_7778022_100020,4376_105 -4289_75974,266,4376_8537,Dun Laoghaire,105822976,0,4376_7778022_100020,4376_105 -4289_75974,267,4376_8538,Dun Laoghaire,106052976,0,4376_7778022_100020,4376_105 -4289_75974,268,4376_8539,Dun Laoghaire,106142976,0,4376_7778022_100020,4376_105 -4289_75960,146,4376_854,Dublin Airport,105247815,1,4376_7778022_103502,4376_3 -4289_75974,269,4376_8540,Dun Laoghaire,106232976,0,4376_7778022_100020,4376_105 -4289_75974,259,4376_8541,Dun Laoghaire,105765648,0,4376_7778022_100080,4376_105 -4289_75974,270,4376_8542,Dun Laoghaire,105278290,0,4376_7778022_100070,4376_105 -4289_75974,146,4376_8543,Dun Laoghaire,105248290,0,4376_7778022_100070,4376_105 -4289_75974,271,4376_8544,Dun Laoghaire,105238290,0,4376_7778022_100070,4376_105 -4289_75974,115,4376_8545,Dun Laoghaire,105218290,0,4376_7778022_100070,4376_105 -4289_75974,260,4376_8546,Dun Laoghaire,105313004,0,4376_7778022_100130,4376_105 -4289_75974,261,4376_8547,Dun Laoghaire,105323004,0,4376_7778022_100130,4376_105 -4289_75974,262,4376_8548,Dun Laoghaire,105433004,0,4376_7778022_100130,4376_105 -4289_75974,263,4376_8549,Dun Laoghaire,105543004,0,4376_7778022_100130,4376_105 -4289_75960,271,4376_855,Dublin Airport,105237815,1,4376_7778022_103502,4376_3 -4289_75974,264,4376_8550,Dun Laoghaire,105653004,0,4376_7778022_100130,4376_105 -4289_75974,265,4376_8551,Dun Laoghaire,105813004,0,4376_7778022_100130,4376_105 -4289_75974,266,4376_8552,Dun Laoghaire,105823004,0,4376_7778022_100130,4376_105 -4289_75974,267,4376_8553,Dun Laoghaire,106053004,0,4376_7778022_100130,4376_105 -4289_75974,268,4376_8554,Dun Laoghaire,106143004,0,4376_7778022_100130,4376_105 -4289_75974,269,4376_8555,Dun Laoghaire,106233004,0,4376_7778022_100130,4376_105 -4289_75974,259,4376_8556,Dun Laoghaire,105765676,0,4376_7778022_100050,4376_105 -4289_75974,270,4376_8557,Dun Laoghaire,105278318,0,4376_7778022_100030,4376_105 -4289_75974,146,4376_8558,Dun Laoghaire,105248318,0,4376_7778022_100030,4376_105 -4289_75974,271,4376_8559,Dun Laoghaire,105238318,0,4376_7778022_100030,4376_105 -4289_75960,115,4376_856,Dublin Airport,105217815,1,4376_7778022_103502,4376_3 -4289_75974,115,4376_8560,Dun Laoghaire,105218318,0,4376_7778022_100030,4376_105 -4289_75974,259,4376_8561,Kilmacanogue,105764053,1,4376_7778022_100020,4376_109 -4289_75974,260,4376_8562,Kilmacanogue,105311081,1,4376_7778022_100020,4376_108 -4289_75974,261,4376_8563,Kilmacanogue,105321081,1,4376_7778022_100020,4376_108 -4289_75974,262,4376_8564,Kilmacanogue,105431081,1,4376_7778022_100020,4376_108 -4289_75974,263,4376_8565,Kilmacanogue,105541081,1,4376_7778022_100020,4376_108 -4289_75974,264,4376_8566,Kilmacanogue,105651081,1,4376_7778022_100020,4376_108 -4289_75974,265,4376_8567,Kilmacanogue,105811081,1,4376_7778022_100020,4376_108 -4289_75974,266,4376_8568,Kilmacanogue,105821081,1,4376_7778022_100020,4376_108 -4289_75974,267,4376_8569,Kilmacanogue,106051081,1,4376_7778022_100020,4376_108 -4289_75960,260,4376_857,Dublin Airport,105312367,1,4376_7778022_103502,4376_3 -4289_75974,268,4376_8570,Kilmacanogue,106141081,1,4376_7778022_100020,4376_108 -4289_75974,269,4376_8571,Kilmacanogue,106231081,1,4376_7778022_100020,4376_108 -4289_75974,260,4376_8572,Kilmacanogue,105311137,1,4376_7778022_100050,4376_108 -4289_75974,261,4376_8573,Kilmacanogue,105321137,1,4376_7778022_100050,4376_108 -4289_75974,262,4376_8574,Kilmacanogue,105431137,1,4376_7778022_100050,4376_108 -4289_75974,263,4376_8575,Kilmacanogue,105541137,1,4376_7778022_100050,4376_108 -4289_75974,264,4376_8576,Kilmacanogue,105651137,1,4376_7778022_100050,4376_108 -4289_75974,265,4376_8577,Kilmacanogue,105811137,1,4376_7778022_100050,4376_108 -4289_75974,266,4376_8578,Kilmacanogue,105821137,1,4376_7778022_100050,4376_108 -4289_75974,267,4376_8579,Kilmacanogue,106051137,1,4376_7778022_100050,4376_108 -4289_75960,261,4376_858,Dublin Airport,105322367,1,4376_7778022_103502,4376_3 -4289_75974,268,4376_8580,Kilmacanogue,106141137,1,4376_7778022_100050,4376_108 -4289_75974,269,4376_8581,Kilmacanogue,106231137,1,4376_7778022_100050,4376_108 -4289_75974,259,4376_8582,Kilmacanogue,105764087,1,4376_7778022_100050,4376_109 -4289_75974,260,4376_8583,Kilmacanogue,105311173,1,4376_7778022_100080,4376_108 -4289_75974,261,4376_8584,Kilmacanogue,105321173,1,4376_7778022_100080,4376_108 -4289_75974,262,4376_8585,Kilmacanogue,105431173,1,4376_7778022_100080,4376_108 -4289_75974,263,4376_8586,Kilmacanogue,105541173,1,4376_7778022_100080,4376_108 -4289_75974,264,4376_8587,Kilmacanogue,105651173,1,4376_7778022_100080,4376_108 -4289_75974,265,4376_8588,Kilmacanogue,105811173,1,4376_7778022_100080,4376_108 -4289_75974,266,4376_8589,Kilmacanogue,105821173,1,4376_7778022_100080,4376_108 -4289_75960,262,4376_859,Dublin Airport,105432367,1,4376_7778022_103502,4376_3 -4289_75974,267,4376_8590,Kilmacanogue,106051173,1,4376_7778022_100080,4376_108 -4289_75974,268,4376_8591,Kilmacanogue,106141173,1,4376_7778022_100080,4376_108 -4289_75974,269,4376_8592,Kilmacanogue,106231173,1,4376_7778022_100080,4376_108 -4289_75974,259,4376_8593,Kilmacanogue,105764129,1,4376_7778022_100010,4376_109 -4289_75974,260,4376_8594,Kilmacanogue,105311213,1,4376_7778022_100010,4376_108 -4289_75974,261,4376_8595,Kilmacanogue,105321213,1,4376_7778022_100010,4376_108 -4289_75974,262,4376_8596,Kilmacanogue,105431213,1,4376_7778022_100010,4376_108 -4289_75974,263,4376_8597,Kilmacanogue,105541213,1,4376_7778022_100010,4376_108 -4289_75974,264,4376_8598,Kilmacanogue,105651213,1,4376_7778022_100010,4376_108 -4289_75974,265,4376_8599,Kilmacanogue,105811213,1,4376_7778022_100010,4376_108 -4289_75960,264,4376_86,Sutton Station,105651438,0,4376_7778022_103102,4376_1 -4289_75960,263,4376_860,Dublin Airport,105542367,1,4376_7778022_103502,4376_3 -4289_75974,266,4376_8600,Kilmacanogue,105821213,1,4376_7778022_100010,4376_108 -4289_75974,267,4376_8601,Kilmacanogue,106051213,1,4376_7778022_100010,4376_108 -4289_75974,268,4376_8602,Kilmacanogue,106141213,1,4376_7778022_100010,4376_108 -4289_75974,269,4376_8603,Kilmacanogue,106231213,1,4376_7778022_100010,4376_108 -4289_75974,260,4376_8604,Kilmacanogue,105311257,1,4376_7778022_100060,4376_108 -4289_75974,261,4376_8605,Kilmacanogue,105321257,1,4376_7778022_100060,4376_108 -4289_75974,262,4376_8606,Kilmacanogue,105431257,1,4376_7778022_100060,4376_108 -4289_75974,263,4376_8607,Kilmacanogue,105541257,1,4376_7778022_100060,4376_108 -4289_75974,264,4376_8608,Kilmacanogue,105651257,1,4376_7778022_100060,4376_108 -4289_75974,265,4376_8609,Kilmacanogue,105811257,1,4376_7778022_100060,4376_108 -4289_75960,264,4376_861,Dublin Airport,105652367,1,4376_7778022_103502,4376_3 -4289_75974,266,4376_8610,Kilmacanogue,105821257,1,4376_7778022_100060,4376_108 -4289_75974,267,4376_8611,Kilmacanogue,106051257,1,4376_7778022_100060,4376_108 -4289_75974,268,4376_8612,Kilmacanogue,106141257,1,4376_7778022_100060,4376_108 -4289_75974,269,4376_8613,Kilmacanogue,106231257,1,4376_7778022_100060,4376_108 -4289_75974,259,4376_8614,Kilmacanogue,105764167,1,4376_7778022_100040,4376_109 -4289_75974,260,4376_8615,Kilmacanogue,105311325,1,4376_7778022_100030,4376_108 -4289_75974,261,4376_8616,Kilmacanogue,105321325,1,4376_7778022_100030,4376_108 -4289_75974,262,4376_8617,Kilmacanogue,105431325,1,4376_7778022_100030,4376_108 -4289_75974,263,4376_8618,Kilmacanogue,105541325,1,4376_7778022_100030,4376_108 -4289_75974,264,4376_8619,Kilmacanogue,105651325,1,4376_7778022_100030,4376_108 -4289_75960,265,4376_862,Dublin Airport,105812367,1,4376_7778022_103502,4376_3 -4289_75974,265,4376_8620,Kilmacanogue,105811325,1,4376_7778022_100030,4376_108 -4289_75974,266,4376_8621,Kilmacanogue,105821325,1,4376_7778022_100030,4376_108 -4289_75974,267,4376_8622,Kilmacanogue,106051325,1,4376_7778022_100030,4376_108 -4289_75974,268,4376_8623,Kilmacanogue,106141325,1,4376_7778022_100030,4376_108 -4289_75974,269,4376_8624,Kilmacanogue,106231325,1,4376_7778022_100030,4376_108 -4289_75974,259,4376_8625,Kilmacanogue,105764213,1,4376_7778022_100020,4376_109 -4289_75974,270,4376_8626,Kilmacanogue,105277049,1,4376_7778022_100010,4376_109 -4289_75974,146,4376_8627,Kilmacanogue,105247049,1,4376_7778022_100010,4376_109 -4289_75974,271,4376_8628,Kilmacanogue,105237049,1,4376_7778022_100010,4376_109 -4289_75974,115,4376_8629,Kilmacanogue,105217049,1,4376_7778022_100010,4376_109 -4289_75960,266,4376_863,Dublin Airport,105822367,1,4376_7778022_103502,4376_3 -4289_75974,260,4376_8630,Kilmacanogue,105311361,1,4376_7778022_100070,4376_108 -4289_75974,261,4376_8631,Kilmacanogue,105321361,1,4376_7778022_100070,4376_108 -4289_75974,262,4376_8632,Kilmacanogue,105431361,1,4376_7778022_100070,4376_108 -4289_75974,263,4376_8633,Kilmacanogue,105541361,1,4376_7778022_100070,4376_108 -4289_75974,264,4376_8634,Kilmacanogue,105651361,1,4376_7778022_100070,4376_108 -4289_75974,265,4376_8635,Kilmacanogue,105811361,1,4376_7778022_100070,4376_108 -4289_75974,266,4376_8636,Kilmacanogue,105821361,1,4376_7778022_100070,4376_108 -4289_75974,267,4376_8637,Kilmacanogue,106051361,1,4376_7778022_100070,4376_108 -4289_75974,268,4376_8638,Kilmacanogue,106141361,1,4376_7778022_100070,4376_108 -4289_75974,269,4376_8639,Kilmacanogue,106231361,1,4376_7778022_100070,4376_108 -4289_75960,267,4376_864,Dublin Airport,106052367,1,4376_7778022_103502,4376_3 -4289_75974,259,4376_8640,Kilmacanogue,105764255,1,4376_7778022_100050,4376_109 -4289_75974,270,4376_8641,Kilmacanogue,105277081,1,4376_7778022_100040,4376_109 -4289_75974,146,4376_8642,Kilmacanogue,105247081,1,4376_7778022_100040,4376_109 -4289_75974,271,4376_8643,Kilmacanogue,105237081,1,4376_7778022_100040,4376_109 -4289_75974,115,4376_8644,Kilmacanogue,105217081,1,4376_7778022_100040,4376_109 -4289_75974,260,4376_8645,Kilmacanogue,105311399,1,4376_7778022_100020,4376_108 -4289_75974,261,4376_8646,Kilmacanogue,105321399,1,4376_7778022_100020,4376_108 -4289_75974,262,4376_8647,Kilmacanogue,105431399,1,4376_7778022_100020,4376_108 -4289_75974,263,4376_8648,Kilmacanogue,105541399,1,4376_7778022_100020,4376_108 -4289_75974,264,4376_8649,Kilmacanogue,105651399,1,4376_7778022_100020,4376_108 -4289_75960,268,4376_865,Dublin Airport,106142367,1,4376_7778022_103502,4376_3 -4289_75974,265,4376_8650,Kilmacanogue,105811399,1,4376_7778022_100020,4376_108 -4289_75974,266,4376_8651,Kilmacanogue,105821399,1,4376_7778022_100020,4376_108 -4289_75974,267,4376_8652,Kilmacanogue,106051399,1,4376_7778022_100020,4376_108 -4289_75974,268,4376_8653,Kilmacanogue,106141399,1,4376_7778022_100020,4376_108 -4289_75974,269,4376_8654,Kilmacanogue,106231399,1,4376_7778022_100020,4376_108 -4289_75974,259,4376_8655,Kilmacanogue,105764287,1,4376_7778022_100090,4376_109 -4289_75974,260,4376_8656,Kilmacanogue,105311433,1,4376_7778022_100040,4376_109 -4289_75974,261,4376_8657,Kilmacanogue,105321433,1,4376_7778022_100040,4376_109 -4289_75974,262,4376_8658,Kilmacanogue,105431433,1,4376_7778022_100040,4376_109 -4289_75974,263,4376_8659,Kilmacanogue,105541433,1,4376_7778022_100040,4376_109 -4289_75960,269,4376_866,Dublin Airport,106232367,1,4376_7778022_103502,4376_3 -4289_75974,264,4376_8660,Kilmacanogue,105651433,1,4376_7778022_100040,4376_109 -4289_75974,265,4376_8661,Kilmacanogue,105811433,1,4376_7778022_100040,4376_109 -4289_75974,266,4376_8662,Kilmacanogue,105821433,1,4376_7778022_100040,4376_109 -4289_75974,267,4376_8663,Kilmacanogue,106051433,1,4376_7778022_100040,4376_109 -4289_75974,268,4376_8664,Kilmacanogue,106141433,1,4376_7778022_100040,4376_109 -4289_75974,269,4376_8665,Kilmacanogue,106231433,1,4376_7778022_100040,4376_109 -4289_75974,270,4376_8666,Kilmacanogue,105277117,1,4376_7778022_100020,4376_109 -4289_75974,146,4376_8667,Kilmacanogue,105247117,1,4376_7778022_100020,4376_109 -4289_75974,271,4376_8668,Kilmacanogue,105237117,1,4376_7778022_100020,4376_109 -4289_75974,115,4376_8669,Kilmacanogue,105217117,1,4376_7778022_100020,4376_109 -4289_75960,259,4376_867,Dublin Airport,105765157,1,4376_7778022_103104,4376_3 -4289_75974,260,4376_8670,Kilmacanogue,105311475,1,4376_7778022_100050,4376_109 -4289_75974,261,4376_8671,Kilmacanogue,105321475,1,4376_7778022_100050,4376_109 -4289_75974,262,4376_8672,Kilmacanogue,105431475,1,4376_7778022_100050,4376_109 -4289_75974,263,4376_8673,Kilmacanogue,105541475,1,4376_7778022_100050,4376_109 -4289_75974,264,4376_8674,Kilmacanogue,105651475,1,4376_7778022_100050,4376_109 -4289_75974,265,4376_8675,Kilmacanogue,105811475,1,4376_7778022_100050,4376_109 -4289_75974,266,4376_8676,Kilmacanogue,105821475,1,4376_7778022_100050,4376_109 -4289_75974,267,4376_8677,Kilmacanogue,106051475,1,4376_7778022_100050,4376_109 -4289_75974,268,4376_8678,Kilmacanogue,106141475,1,4376_7778022_100050,4376_109 -4289_75974,269,4376_8679,Kilmacanogue,106231475,1,4376_7778022_100050,4376_109 -4289_75960,270,4376_868,Dublin Airport,105277859,1,4376_7778022_103105,4376_4 -4289_75974,259,4376_8680,Kilmacanogue,105764331,1,4376_7778022_100010,4376_110 -4289_75974,270,4376_8681,Kilmacanogue,105277157,1,4376_7778022_100050,4376_109 -4289_75974,146,4376_8682,Kilmacanogue,105247157,1,4376_7778022_100050,4376_109 -4289_75974,271,4376_8683,Kilmacanogue,105237157,1,4376_7778022_100050,4376_109 -4289_75974,115,4376_8684,Kilmacanogue,105217157,1,4376_7778022_100050,4376_109 -4289_75974,260,4376_8685,Kilmacanogue,105311511,1,4376_7778022_100080,4376_109 -4289_75974,261,4376_8686,Kilmacanogue,105321511,1,4376_7778022_100080,4376_109 -4289_75974,262,4376_8687,Kilmacanogue,105431511,1,4376_7778022_100080,4376_109 -4289_75974,263,4376_8688,Kilmacanogue,105541511,1,4376_7778022_100080,4376_109 -4289_75974,264,4376_8689,Kilmacanogue,105651511,1,4376_7778022_100080,4376_109 -4289_75960,146,4376_869,Dublin Airport,105247859,1,4376_7778022_103105,4376_4 -4289_75974,265,4376_8690,Kilmacanogue,105811511,1,4376_7778022_100080,4376_109 -4289_75974,266,4376_8691,Kilmacanogue,105821511,1,4376_7778022_100080,4376_109 -4289_75974,267,4376_8692,Kilmacanogue,106051511,1,4376_7778022_100080,4376_109 -4289_75974,268,4376_8693,Kilmacanogue,106141511,1,4376_7778022_100080,4376_109 -4289_75974,269,4376_8694,Kilmacanogue,106231511,1,4376_7778022_100080,4376_109 -4289_75974,259,4376_8695,Kilmacanogue,105764363,1,4376_7778022_100040,4376_110 -4289_75974,260,4376_8696,Kilmacanogue,105311545,1,4376_7778022_100010,4376_109 -4289_75974,261,4376_8697,Kilmacanogue,105321545,1,4376_7778022_100010,4376_109 -4289_75974,262,4376_8698,Kilmacanogue,105431545,1,4376_7778022_100010,4376_109 -4289_75974,263,4376_8699,Kilmacanogue,105541545,1,4376_7778022_100010,4376_109 -4289_75960,265,4376_87,Sutton Station,105811438,0,4376_7778022_103102,4376_1 -4289_75960,271,4376_870,Dublin Airport,105237859,1,4376_7778022_103105,4376_4 -4289_75974,264,4376_8700,Kilmacanogue,105651545,1,4376_7778022_100010,4376_109 -4289_75974,265,4376_8701,Kilmacanogue,105811545,1,4376_7778022_100010,4376_109 -4289_75974,266,4376_8702,Kilmacanogue,105821545,1,4376_7778022_100010,4376_109 -4289_75974,267,4376_8703,Kilmacanogue,106051545,1,4376_7778022_100010,4376_109 -4289_75974,268,4376_8704,Kilmacanogue,106141545,1,4376_7778022_100010,4376_109 -4289_75974,269,4376_8705,Kilmacanogue,106231545,1,4376_7778022_100010,4376_109 -4289_75974,259,4376_8706,Kilmacanogue,105764397,1,4376_7778022_100100,4376_110 -4289_75974,270,4376_8707,Kilmacanogue,105277201,1,4376_7778022_100010,4376_109 -4289_75974,146,4376_8708,Kilmacanogue,105247201,1,4376_7778022_100010,4376_109 -4289_75974,271,4376_8709,Kilmacanogue,105237201,1,4376_7778022_100010,4376_109 -4289_75960,115,4376_871,Dublin Airport,105217859,1,4376_7778022_103105,4376_4 -4289_75974,115,4376_8710,Kilmacanogue,105217201,1,4376_7778022_100010,4376_109 -4289_75974,260,4376_8711,Kilmacanogue,105311579,1,4376_7778022_100060,4376_109 -4289_75974,261,4376_8712,Kilmacanogue,105321579,1,4376_7778022_100060,4376_109 -4289_75974,262,4376_8713,Kilmacanogue,105431579,1,4376_7778022_100060,4376_109 -4289_75974,263,4376_8714,Kilmacanogue,105541579,1,4376_7778022_100060,4376_109 -4289_75974,264,4376_8715,Kilmacanogue,105651579,1,4376_7778022_100060,4376_109 -4289_75974,265,4376_8716,Kilmacanogue,105811579,1,4376_7778022_100060,4376_109 -4289_75974,266,4376_8717,Kilmacanogue,105821579,1,4376_7778022_100060,4376_109 -4289_75974,267,4376_8718,Kilmacanogue,106051579,1,4376_7778022_100060,4376_109 -4289_75974,268,4376_8719,Kilmacanogue,106141579,1,4376_7778022_100060,4376_109 -4289_75960,260,4376_872,Dublin Airport,105312427,1,4376_7778022_103101,4376_3 -4289_75974,269,4376_8720,Kilmacanogue,106231579,1,4376_7778022_100060,4376_109 -4289_75974,259,4376_8721,Kilmacanogue,105764433,1,4376_7778022_100020,4376_110 -4289_75974,270,4376_8722,Kilmacanogue,105277247,1,4376_7778022_100030,4376_109 -4289_75974,146,4376_8723,Kilmacanogue,105247247,1,4376_7778022_100030,4376_109 -4289_75974,271,4376_8724,Kilmacanogue,105237247,1,4376_7778022_100030,4376_109 -4289_75974,115,4376_8725,Kilmacanogue,105217247,1,4376_7778022_100030,4376_109 -4289_75974,260,4376_8726,Kilmacanogue,105311615,1,4376_7778022_100030,4376_109 -4289_75974,261,4376_8727,Kilmacanogue,105321615,1,4376_7778022_100030,4376_109 -4289_75974,262,4376_8728,Kilmacanogue,105431615,1,4376_7778022_100030,4376_109 -4289_75974,263,4376_8729,Kilmacanogue,105541615,1,4376_7778022_100030,4376_109 -4289_75960,261,4376_873,Dublin Airport,105322427,1,4376_7778022_103101,4376_3 -4289_75974,264,4376_8730,Kilmacanogue,105651615,1,4376_7778022_100030,4376_109 -4289_75974,265,4376_8731,Kilmacanogue,105811615,1,4376_7778022_100030,4376_109 -4289_75974,266,4376_8732,Kilmacanogue,105821615,1,4376_7778022_100030,4376_109 -4289_75974,267,4376_8733,Kilmacanogue,106051615,1,4376_7778022_100030,4376_109 -4289_75974,268,4376_8734,Kilmacanogue,106141615,1,4376_7778022_100030,4376_109 -4289_75974,269,4376_8735,Kilmacanogue,106231615,1,4376_7778022_100030,4376_109 -4289_75974,259,4376_8736,Kilmacanogue,105764465,1,4376_7778022_100130,4376_110 -4289_75974,260,4376_8737,Kilmacanogue,105311651,1,4376_7778022_100070,4376_109 -4289_75974,261,4376_8738,Kilmacanogue,105321651,1,4376_7778022_100070,4376_109 -4289_75974,262,4376_8739,Kilmacanogue,105431651,1,4376_7778022_100070,4376_109 -4289_75960,262,4376_874,Dublin Airport,105432427,1,4376_7778022_103101,4376_3 -4289_75974,263,4376_8740,Kilmacanogue,105541651,1,4376_7778022_100070,4376_109 -4289_75974,264,4376_8741,Kilmacanogue,105651651,1,4376_7778022_100070,4376_109 -4289_75974,265,4376_8742,Kilmacanogue,105811651,1,4376_7778022_100070,4376_109 -4289_75974,266,4376_8743,Kilmacanogue,105821651,1,4376_7778022_100070,4376_109 -4289_75974,267,4376_8744,Kilmacanogue,106051651,1,4376_7778022_100070,4376_109 -4289_75974,268,4376_8745,Kilmacanogue,106141651,1,4376_7778022_100070,4376_109 -4289_75974,269,4376_8746,Kilmacanogue,106231651,1,4376_7778022_100070,4376_109 -4289_75974,259,4376_8747,Kilmacanogue,105764499,1,4376_7778022_100050,4376_110 -4289_75974,270,4376_8748,Kilmacanogue,105277289,1,4376_7778022_100060,4376_109 -4289_75974,146,4376_8749,Kilmacanogue,105247289,1,4376_7778022_100060,4376_109 -4289_75960,263,4376_875,Dublin Airport,105542427,1,4376_7778022_103101,4376_3 -4289_75974,271,4376_8750,Kilmacanogue,105237289,1,4376_7778022_100060,4376_109 -4289_75974,115,4376_8751,Kilmacanogue,105217289,1,4376_7778022_100060,4376_109 -4289_75974,260,4376_8752,Kilmacanogue,105311689,1,4376_7778022_100020,4376_109 -4289_75974,261,4376_8753,Kilmacanogue,105321689,1,4376_7778022_100020,4376_109 -4289_75974,262,4376_8754,Kilmacanogue,105431689,1,4376_7778022_100020,4376_109 -4289_75974,263,4376_8755,Kilmacanogue,105541689,1,4376_7778022_100020,4376_109 -4289_75974,264,4376_8756,Kilmacanogue,105651689,1,4376_7778022_100020,4376_109 -4289_75974,265,4376_8757,Kilmacanogue,105811689,1,4376_7778022_100020,4376_109 -4289_75974,266,4376_8758,Kilmacanogue,105821689,1,4376_7778022_100020,4376_109 -4289_75974,267,4376_8759,Kilmacanogue,106051689,1,4376_7778022_100020,4376_109 -4289_75960,264,4376_876,Dublin Airport,105652427,1,4376_7778022_103101,4376_3 -4289_75974,268,4376_8760,Kilmacanogue,106141689,1,4376_7778022_100020,4376_109 -4289_75974,269,4376_8761,Kilmacanogue,106231689,1,4376_7778022_100020,4376_109 -4289_75974,259,4376_8762,Kilmacanogue,105764537,1,4376_7778022_100090,4376_110 -4289_75974,270,4376_8763,Kilmacanogue,105277315,1,4376_7778022_100090,4376_111 -4289_75974,146,4376_8764,Kilmacanogue,105247315,1,4376_7778022_100090,4376_111 -4289_75974,271,4376_8765,Kilmacanogue,105237315,1,4376_7778022_100090,4376_111 -4289_75974,115,4376_8766,Kilmacanogue,105217315,1,4376_7778022_100090,4376_111 -4289_75974,260,4376_8767,Kilmacanogue,105311725,1,4376_7778022_100040,4376_109 -4289_75974,261,4376_8768,Kilmacanogue,105321725,1,4376_7778022_100040,4376_109 -4289_75974,262,4376_8769,Kilmacanogue,105431725,1,4376_7778022_100040,4376_109 -4289_75960,265,4376_877,Dublin Airport,105812427,1,4376_7778022_103101,4376_3 -4289_75974,263,4376_8770,Kilmacanogue,105541725,1,4376_7778022_100040,4376_109 -4289_75974,264,4376_8771,Kilmacanogue,105651725,1,4376_7778022_100040,4376_109 -4289_75974,265,4376_8772,Kilmacanogue,105811725,1,4376_7778022_100040,4376_109 -4289_75974,266,4376_8773,Kilmacanogue,105821725,1,4376_7778022_100040,4376_109 -4289_75974,267,4376_8774,Kilmacanogue,106051725,1,4376_7778022_100040,4376_109 -4289_75974,268,4376_8775,Kilmacanogue,106141725,1,4376_7778022_100040,4376_109 -4289_75974,269,4376_8776,Kilmacanogue,106231725,1,4376_7778022_100040,4376_109 -4289_75974,259,4376_8777,Kilmacanogue,105764569,1,4376_7778022_100120,4376_110 -4289_75974,270,4376_8778,Kilmacanogue,105277357,1,4376_7778022_100050,4376_109 -4289_75974,146,4376_8779,Kilmacanogue,105247357,1,4376_7778022_100050,4376_109 -4289_75960,266,4376_878,Dublin Airport,105822427,1,4376_7778022_103101,4376_3 -4289_75974,271,4376_8780,Kilmacanogue,105237357,1,4376_7778022_100050,4376_109 -4289_75974,115,4376_8781,Kilmacanogue,105217357,1,4376_7778022_100050,4376_109 -4289_75974,260,4376_8782,Kilmacanogue,105311759,1,4376_7778022_100050,4376_109 -4289_75974,261,4376_8783,Kilmacanogue,105321759,1,4376_7778022_100050,4376_109 -4289_75974,262,4376_8784,Kilmacanogue,105431759,1,4376_7778022_100050,4376_109 -4289_75974,263,4376_8785,Kilmacanogue,105541759,1,4376_7778022_100050,4376_109 -4289_75974,264,4376_8786,Kilmacanogue,105651759,1,4376_7778022_100050,4376_109 -4289_75974,265,4376_8787,Kilmacanogue,105811759,1,4376_7778022_100050,4376_109 -4289_75974,266,4376_8788,Kilmacanogue,105821759,1,4376_7778022_100050,4376_109 -4289_75974,267,4376_8789,Kilmacanogue,106051759,1,4376_7778022_100050,4376_109 -4289_75960,267,4376_879,Dublin Airport,106052427,1,4376_7778022_103101,4376_3 -4289_75974,268,4376_8790,Kilmacanogue,106141759,1,4376_7778022_100050,4376_109 -4289_75974,269,4376_8791,Kilmacanogue,106231759,1,4376_7778022_100050,4376_109 -4289_75974,259,4376_8792,Kilmacanogue,105764601,1,4376_7778022_100010,4376_110 -4289_75974,260,4376_8793,Kilmacanogue,105311797,1,4376_7778022_100080,4376_109 -4289_75974,261,4376_8794,Kilmacanogue,105321797,1,4376_7778022_100080,4376_109 -4289_75974,262,4376_8795,Kilmacanogue,105431797,1,4376_7778022_100080,4376_109 -4289_75974,263,4376_8796,Kilmacanogue,105541797,1,4376_7778022_100080,4376_109 -4289_75974,264,4376_8797,Kilmacanogue,105651797,1,4376_7778022_100080,4376_109 -4289_75974,265,4376_8798,Kilmacanogue,105811797,1,4376_7778022_100080,4376_109 -4289_75974,266,4376_8799,Kilmacanogue,105821797,1,4376_7778022_100080,4376_109 -4289_75960,266,4376_88,Sutton Station,105821438,0,4376_7778022_103102,4376_1 -4289_75960,268,4376_880,Dublin Airport,106142427,1,4376_7778022_103101,4376_3 -4289_75974,267,4376_8800,Kilmacanogue,106051797,1,4376_7778022_100080,4376_109 -4289_75974,268,4376_8801,Kilmacanogue,106141797,1,4376_7778022_100080,4376_109 -4289_75974,269,4376_8802,Kilmacanogue,106231797,1,4376_7778022_100080,4376_109 -4289_75974,259,4376_8803,Kilmacanogue,105764639,1,4376_7778022_100040,4376_110 -4289_75974,270,4376_8804,Kilmacanogue,105277403,1,4376_7778022_100080,4376_111 -4289_75974,146,4376_8805,Kilmacanogue,105247403,1,4376_7778022_100080,4376_111 -4289_75974,271,4376_8806,Kilmacanogue,105237403,1,4376_7778022_100080,4376_111 -4289_75974,115,4376_8807,Kilmacanogue,105217403,1,4376_7778022_100080,4376_111 -4289_75974,270,4376_8808,Kilmacanogue,105277447,1,4376_7778022_100030,4376_109 -4289_75974,146,4376_8809,Kilmacanogue,105247447,1,4376_7778022_100030,4376_109 -4289_75960,269,4376_881,Dublin Airport,106232427,1,4376_7778022_103101,4376_3 -4289_75974,271,4376_8810,Kilmacanogue,105237447,1,4376_7778022_100030,4376_109 -4289_75974,115,4376_8811,Kilmacanogue,105217447,1,4376_7778022_100030,4376_109 -4289_75974,260,4376_8812,Kilmacanogue,105311879,1,4376_7778022_100060,4376_109 -4289_75974,261,4376_8813,Kilmacanogue,105321879,1,4376_7778022_100060,4376_109 -4289_75974,262,4376_8814,Kilmacanogue,105431879,1,4376_7778022_100060,4376_109 -4289_75974,263,4376_8815,Kilmacanogue,105541879,1,4376_7778022_100060,4376_109 -4289_75974,264,4376_8816,Kilmacanogue,105651879,1,4376_7778022_100060,4376_109 -4289_75974,265,4376_8817,Kilmacanogue,105811879,1,4376_7778022_100060,4376_109 -4289_75974,266,4376_8818,Kilmacanogue,105821879,1,4376_7778022_100060,4376_109 -4289_75974,267,4376_8819,Kilmacanogue,106051879,1,4376_7778022_100060,4376_109 -4289_75960,260,4376_882,Dublin Airport,105312471,1,4376_7778022_103102,4376_3 -4289_75974,268,4376_8820,Kilmacanogue,106141879,1,4376_7778022_100060,4376_109 -4289_75974,269,4376_8821,Kilmacanogue,106231879,1,4376_7778022_100060,4376_109 -4289_75974,259,4376_8822,Kilmacanogue,105764705,1,4376_7778022_100020,4376_110 -4289_75974,260,4376_8823,Kilmacanogue,105311909,1,4376_7778022_100030,4376_109 -4289_75974,261,4376_8824,Kilmacanogue,105321909,1,4376_7778022_100030,4376_109 -4289_75974,262,4376_8825,Kilmacanogue,105431909,1,4376_7778022_100030,4376_109 -4289_75974,263,4376_8826,Kilmacanogue,105541909,1,4376_7778022_100030,4376_109 -4289_75974,264,4376_8827,Kilmacanogue,105651909,1,4376_7778022_100030,4376_109 -4289_75974,265,4376_8828,Kilmacanogue,105811909,1,4376_7778022_100030,4376_109 -4289_75974,266,4376_8829,Kilmacanogue,105821909,1,4376_7778022_100030,4376_109 -4289_75960,261,4376_883,Dublin Airport,105322471,1,4376_7778022_103102,4376_3 -4289_75974,267,4376_8830,Kilmacanogue,106051909,1,4376_7778022_100030,4376_109 -4289_75974,268,4376_8831,Kilmacanogue,106141909,1,4376_7778022_100030,4376_109 -4289_75974,269,4376_8832,Kilmacanogue,106231909,1,4376_7778022_100030,4376_109 -4289_75974,259,4376_8833,Kilmacanogue,105764741,1,4376_7778022_100130,4376_110 -4289_75974,270,4376_8834,Kilmacanogue,105277493,1,4376_7778022_100020,4376_111 -4289_75974,146,4376_8835,Kilmacanogue,105247493,1,4376_7778022_100020,4376_111 -4289_75974,271,4376_8836,Kilmacanogue,105237493,1,4376_7778022_100020,4376_111 -4289_75974,115,4376_8837,Kilmacanogue,105217493,1,4376_7778022_100020,4376_111 -4289_75974,260,4376_8838,Kilmacanogue,105311949,1,4376_7778022_100070,4376_109 -4289_75974,261,4376_8839,Kilmacanogue,105321949,1,4376_7778022_100070,4376_109 -4289_75960,262,4376_884,Dublin Airport,105432471,1,4376_7778022_103102,4376_3 -4289_75974,262,4376_8840,Kilmacanogue,105431949,1,4376_7778022_100070,4376_109 -4289_75974,263,4376_8841,Kilmacanogue,105541949,1,4376_7778022_100070,4376_109 -4289_75974,264,4376_8842,Kilmacanogue,105651949,1,4376_7778022_100070,4376_109 -4289_75974,265,4376_8843,Kilmacanogue,105811949,1,4376_7778022_100070,4376_109 -4289_75974,266,4376_8844,Kilmacanogue,105821949,1,4376_7778022_100070,4376_109 -4289_75974,267,4376_8845,Kilmacanogue,106051949,1,4376_7778022_100070,4376_109 -4289_75974,268,4376_8846,Kilmacanogue,106141949,1,4376_7778022_100070,4376_109 -4289_75974,269,4376_8847,Kilmacanogue,106231949,1,4376_7778022_100070,4376_109 -4289_75974,259,4376_8848,Kilmacanogue,105764777,1,4376_7778022_100050,4376_110 -4289_75974,270,4376_8849,Kilmacanogue,105277539,1,4376_7778022_100090,4376_109 -4289_75960,263,4376_885,Dublin Airport,105542471,1,4376_7778022_103102,4376_3 -4289_75974,146,4376_8850,Kilmacanogue,105247539,1,4376_7778022_100090,4376_109 -4289_75974,271,4376_8851,Kilmacanogue,105237539,1,4376_7778022_100090,4376_109 -4289_75974,115,4376_8852,Kilmacanogue,105217539,1,4376_7778022_100090,4376_109 -4289_75974,260,4376_8853,Kilmacanogue,105311985,1,4376_7778022_100020,4376_108 -4289_75974,261,4376_8854,Kilmacanogue,105321985,1,4376_7778022_100020,4376_108 -4289_75974,262,4376_8855,Kilmacanogue,105431985,1,4376_7778022_100020,4376_108 -4289_75974,263,4376_8856,Kilmacanogue,105541985,1,4376_7778022_100020,4376_108 -4289_75974,264,4376_8857,Kilmacanogue,105651985,1,4376_7778022_100020,4376_108 -4289_75974,265,4376_8858,Kilmacanogue,105811985,1,4376_7778022_100020,4376_108 -4289_75974,266,4376_8859,Kilmacanogue,105821985,1,4376_7778022_100020,4376_108 -4289_75960,264,4376_886,Dublin Airport,105652471,1,4376_7778022_103102,4376_3 -4289_75974,267,4376_8860,Kilmacanogue,106051985,1,4376_7778022_100020,4376_108 -4289_75974,268,4376_8861,Kilmacanogue,106141985,1,4376_7778022_100020,4376_108 -4289_75974,269,4376_8862,Kilmacanogue,106231985,1,4376_7778022_100020,4376_108 -4289_75974,259,4376_8863,Kilmacanogue,105764807,1,4376_7778022_100090,4376_109 -4289_75974,260,4376_8864,Kilmacanogue,105312023,1,4376_7778022_100040,4376_108 -4289_75974,261,4376_8865,Kilmacanogue,105322023,1,4376_7778022_100040,4376_108 -4289_75974,262,4376_8866,Kilmacanogue,105432023,1,4376_7778022_100040,4376_108 -4289_75974,263,4376_8867,Kilmacanogue,105542023,1,4376_7778022_100040,4376_108 -4289_75974,264,4376_8868,Kilmacanogue,105652023,1,4376_7778022_100040,4376_108 -4289_75974,265,4376_8869,Kilmacanogue,105812023,1,4376_7778022_100040,4376_108 -4289_75960,265,4376_887,Dublin Airport,105812471,1,4376_7778022_103102,4376_3 -4289_75974,266,4376_8870,Kilmacanogue,105822023,1,4376_7778022_100040,4376_108 -4289_75974,267,4376_8871,Kilmacanogue,106052023,1,4376_7778022_100040,4376_108 -4289_75974,268,4376_8872,Kilmacanogue,106142023,1,4376_7778022_100040,4376_108 -4289_75974,269,4376_8873,Kilmacanogue,106232023,1,4376_7778022_100040,4376_108 -4289_75974,259,4376_8874,Kilmacanogue,105764843,1,4376_7778022_100030,4376_109 -4289_75974,270,4376_8875,Kilmacanogue,105277585,1,4376_7778022_100050,4376_110 -4289_75974,146,4376_8876,Kilmacanogue,105247585,1,4376_7778022_100050,4376_110 -4289_75974,271,4376_8877,Kilmacanogue,105237585,1,4376_7778022_100050,4376_110 -4289_75974,115,4376_8878,Kilmacanogue,105217585,1,4376_7778022_100050,4376_110 -4289_75974,260,4376_8879,Kilmacanogue,105312065,1,4376_7778022_100050,4376_108 -4289_75960,266,4376_888,Dublin Airport,105822471,1,4376_7778022_103102,4376_3 -4289_75974,261,4376_8880,Kilmacanogue,105322065,1,4376_7778022_100050,4376_108 -4289_75974,262,4376_8881,Kilmacanogue,105432065,1,4376_7778022_100050,4376_108 -4289_75974,263,4376_8882,Kilmacanogue,105542065,1,4376_7778022_100050,4376_108 -4289_75974,264,4376_8883,Kilmacanogue,105652065,1,4376_7778022_100050,4376_108 -4289_75974,265,4376_8884,Kilmacanogue,105812065,1,4376_7778022_100050,4376_108 -4289_75974,266,4376_8885,Kilmacanogue,105822065,1,4376_7778022_100050,4376_108 -4289_75974,267,4376_8886,Kilmacanogue,106052065,1,4376_7778022_100050,4376_108 -4289_75974,268,4376_8887,Kilmacanogue,106142065,1,4376_7778022_100050,4376_108 -4289_75974,269,4376_8888,Kilmacanogue,106232065,1,4376_7778022_100050,4376_108 -4289_75974,259,4376_8889,Kilmacanogue,105764877,1,4376_7778022_100010,4376_109 -4289_75960,267,4376_889,Dublin Airport,106052471,1,4376_7778022_103102,4376_3 -4289_75974,270,4376_8890,Kilmacanogue,105277629,1,4376_7778022_100040,4376_109 -4289_75974,146,4376_8891,Kilmacanogue,105247629,1,4376_7778022_100040,4376_109 -4289_75974,271,4376_8892,Kilmacanogue,105237629,1,4376_7778022_100040,4376_109 -4289_75974,115,4376_8893,Kilmacanogue,105217629,1,4376_7778022_100040,4376_109 -4289_75974,260,4376_8894,Kilmacanogue,105312105,1,4376_7778022_100080,4376_108 -4289_75974,261,4376_8895,Kilmacanogue,105322105,1,4376_7778022_100080,4376_108 -4289_75974,262,4376_8896,Kilmacanogue,105432105,1,4376_7778022_100080,4376_108 -4289_75974,263,4376_8897,Kilmacanogue,105542105,1,4376_7778022_100080,4376_108 -4289_75974,264,4376_8898,Kilmacanogue,105652105,1,4376_7778022_100080,4376_108 -4289_75974,265,4376_8899,Kilmacanogue,105812105,1,4376_7778022_100080,4376_108 -4289_75960,267,4376_89,Sutton Station,106051438,0,4376_7778022_103102,4376_1 -4289_75960,268,4376_890,Dublin Airport,106142471,1,4376_7778022_103102,4376_3 -4289_75974,266,4376_8900,Kilmacanogue,105822105,1,4376_7778022_100080,4376_108 -4289_75974,267,4376_8901,Kilmacanogue,106052105,1,4376_7778022_100080,4376_108 -4289_75974,268,4376_8902,Kilmacanogue,106142105,1,4376_7778022_100080,4376_108 -4289_75974,269,4376_8903,Kilmacanogue,106232105,1,4376_7778022_100080,4376_108 -4289_75974,259,4376_8904,Kilmacanogue,105764909,1,4376_7778022_100040,4376_109 -4289_75974,260,4376_8905,Kilmacanogue,105312153,1,4376_7778022_100010,4376_108 -4289_75974,261,4376_8906,Kilmacanogue,105322153,1,4376_7778022_100010,4376_108 -4289_75974,262,4376_8907,Kilmacanogue,105432153,1,4376_7778022_100010,4376_108 -4289_75974,263,4376_8908,Kilmacanogue,105542153,1,4376_7778022_100010,4376_108 -4289_75974,264,4376_8909,Kilmacanogue,105652153,1,4376_7778022_100010,4376_108 -4289_75960,269,4376_891,Dublin Airport,106232471,1,4376_7778022_103102,4376_3 -4289_75974,265,4376_8910,Kilmacanogue,105812153,1,4376_7778022_100010,4376_108 -4289_75974,266,4376_8911,Kilmacanogue,105822153,1,4376_7778022_100010,4376_108 -4289_75974,267,4376_8912,Kilmacanogue,106052153,1,4376_7778022_100010,4376_108 -4289_75974,268,4376_8913,Kilmacanogue,106142153,1,4376_7778022_100010,4376_108 -4289_75974,269,4376_8914,Kilmacanogue,106232153,1,4376_7778022_100010,4376_108 -4289_75974,259,4376_8915,Kilmacanogue,105764947,1,4376_7778022_100100,4376_109 -4289_75974,270,4376_8916,Kilmacanogue,105277675,1,4376_7778022_100060,4376_109 -4289_75974,146,4376_8917,Kilmacanogue,105247675,1,4376_7778022_100060,4376_109 -4289_75974,271,4376_8918,Kilmacanogue,105237675,1,4376_7778022_100060,4376_109 -4289_75974,115,4376_8919,Kilmacanogue,105217675,1,4376_7778022_100060,4376_109 -4289_75960,270,4376_892,Dublin Airport,105277899,1,4376_7778022_103503,4376_4 -4289_75974,260,4376_8920,Kilmacanogue,105312201,1,4376_7778022_100060,4376_108 -4289_75974,261,4376_8921,Kilmacanogue,105322201,1,4376_7778022_100060,4376_108 -4289_75974,262,4376_8922,Kilmacanogue,105432201,1,4376_7778022_100060,4376_108 -4289_75974,263,4376_8923,Kilmacanogue,105542201,1,4376_7778022_100060,4376_108 -4289_75974,264,4376_8924,Kilmacanogue,105652201,1,4376_7778022_100060,4376_108 -4289_75974,265,4376_8925,Kilmacanogue,105812201,1,4376_7778022_100060,4376_108 -4289_75974,266,4376_8926,Kilmacanogue,105822201,1,4376_7778022_100060,4376_108 -4289_75974,267,4376_8927,Kilmacanogue,106052201,1,4376_7778022_100060,4376_108 -4289_75974,268,4376_8928,Kilmacanogue,106142201,1,4376_7778022_100060,4376_108 -4289_75974,269,4376_8929,Kilmacanogue,106232201,1,4376_7778022_100060,4376_108 -4289_75960,146,4376_893,Dublin Airport,105247899,1,4376_7778022_103503,4376_4 -4289_75974,259,4376_8930,Kilmacanogue,105764979,1,4376_7778022_100020,4376_109 -4289_75974,270,4376_8931,Kilmacanogue,105277719,1,4376_7778022_100020,4376_109 -4289_75974,146,4376_8932,Kilmacanogue,105247719,1,4376_7778022_100020,4376_109 -4289_75974,271,4376_8933,Kilmacanogue,105237719,1,4376_7778022_100020,4376_109 -4289_75974,115,4376_8934,Kilmacanogue,105217719,1,4376_7778022_100020,4376_109 -4289_75974,260,4376_8935,Kilmacanogue,105312263,1,4376_7778022_100030,4376_108 -4289_75974,261,4376_8936,Kilmacanogue,105322263,1,4376_7778022_100030,4376_108 -4289_75974,262,4376_8937,Kilmacanogue,105432263,1,4376_7778022_100030,4376_108 -4289_75974,263,4376_8938,Kilmacanogue,105542263,1,4376_7778022_100030,4376_108 -4289_75974,264,4376_8939,Kilmacanogue,105652263,1,4376_7778022_100030,4376_108 -4289_75960,271,4376_894,Dublin Airport,105237899,1,4376_7778022_103503,4376_4 -4289_75974,265,4376_8940,Kilmacanogue,105812263,1,4376_7778022_100030,4376_108 -4289_75974,266,4376_8941,Kilmacanogue,105822263,1,4376_7778022_100030,4376_108 -4289_75974,267,4376_8942,Kilmacanogue,106052263,1,4376_7778022_100030,4376_108 -4289_75974,268,4376_8943,Kilmacanogue,106142263,1,4376_7778022_100030,4376_108 -4289_75974,269,4376_8944,Kilmacanogue,106232263,1,4376_7778022_100030,4376_108 -4289_75974,259,4376_8945,Kilmacanogue,105765011,1,4376_7778022_100130,4376_109 -4289_75974,260,4376_8946,Kilmacanogue,105312303,1,4376_7778022_100090,4376_108 -4289_75974,261,4376_8947,Kilmacanogue,105322303,1,4376_7778022_100090,4376_108 -4289_75974,262,4376_8948,Kilmacanogue,105432303,1,4376_7778022_100090,4376_108 -4289_75974,263,4376_8949,Kilmacanogue,105542303,1,4376_7778022_100090,4376_108 -4289_75960,115,4376_895,Dublin Airport,105217899,1,4376_7778022_103503,4376_4 -4289_75974,264,4376_8950,Kilmacanogue,105652303,1,4376_7778022_100090,4376_108 -4289_75974,265,4376_8951,Kilmacanogue,105812303,1,4376_7778022_100090,4376_108 -4289_75974,266,4376_8952,Kilmacanogue,105822303,1,4376_7778022_100090,4376_108 -4289_75974,267,4376_8953,Kilmacanogue,106052303,1,4376_7778022_100090,4376_108 -4289_75974,268,4376_8954,Kilmacanogue,106142303,1,4376_7778022_100090,4376_108 -4289_75974,269,4376_8955,Kilmacanogue,106232303,1,4376_7778022_100090,4376_108 -4289_75974,259,4376_8956,Kilmacanogue,105765051,1,4376_7778022_100050,4376_109 -4289_75974,270,4376_8957,Kilmacanogue,105277765,1,4376_7778022_100090,4376_109 -4289_75974,146,4376_8958,Kilmacanogue,105247765,1,4376_7778022_100090,4376_109 -4289_75974,271,4376_8959,Kilmacanogue,105237765,1,4376_7778022_100090,4376_109 -4289_75960,259,4376_896,Dublin Airport,105765205,1,4376_7778022_103503,4376_3 -4289_75974,115,4376_8960,Kilmacanogue,105217765,1,4376_7778022_100090,4376_109 -4289_75974,260,4376_8961,Kilmacanogue,105312337,1,4376_7778022_100070,4376_108 -4289_75974,261,4376_8962,Kilmacanogue,105322337,1,4376_7778022_100070,4376_108 -4289_75974,262,4376_8963,Kilmacanogue,105432337,1,4376_7778022_100070,4376_108 -4289_75974,263,4376_8964,Kilmacanogue,105542337,1,4376_7778022_100070,4376_108 -4289_75974,264,4376_8965,Kilmacanogue,105652337,1,4376_7778022_100070,4376_108 -4289_75974,265,4376_8966,Kilmacanogue,105812337,1,4376_7778022_100070,4376_108 -4289_75974,266,4376_8967,Kilmacanogue,105822337,1,4376_7778022_100070,4376_108 -4289_75974,267,4376_8968,Kilmacanogue,106052337,1,4376_7778022_100070,4376_108 -4289_75974,268,4376_8969,Kilmacanogue,106142337,1,4376_7778022_100070,4376_108 -4289_75960,260,4376_897,Dublin Airport,105312527,1,4376_7778022_103104,4376_3 -4289_75974,269,4376_8970,Kilmacanogue,106232337,1,4376_7778022_100070,4376_108 -4289_75974,259,4376_8971,Kilmacanogue,105765083,1,4376_7778022_100070,4376_109 -4289_75974,270,4376_8972,Kilmacanogue,105277811,1,4376_7778022_100080,4376_109 -4289_75974,146,4376_8973,Kilmacanogue,105247811,1,4376_7778022_100080,4376_109 -4289_75974,271,4376_8974,Kilmacanogue,105237811,1,4376_7778022_100080,4376_109 -4289_75974,115,4376_8975,Kilmacanogue,105217811,1,4376_7778022_100080,4376_109 -4289_75974,260,4376_8976,Kilmacanogue,105312377,1,4376_7778022_100020,4376_108 -4289_75974,261,4376_8977,Kilmacanogue,105322377,1,4376_7778022_100020,4376_108 -4289_75974,262,4376_8978,Kilmacanogue,105432377,1,4376_7778022_100020,4376_108 -4289_75974,263,4376_8979,Kilmacanogue,105542377,1,4376_7778022_100020,4376_108 -4289_75960,261,4376_898,Dublin Airport,105322527,1,4376_7778022_103104,4376_3 -4289_75974,264,4376_8980,Kilmacanogue,105652377,1,4376_7778022_100020,4376_108 -4289_75974,265,4376_8981,Kilmacanogue,105812377,1,4376_7778022_100020,4376_108 -4289_75974,266,4376_8982,Kilmacanogue,105822377,1,4376_7778022_100020,4376_108 -4289_75974,267,4376_8983,Kilmacanogue,106052377,1,4376_7778022_100020,4376_108 -4289_75974,268,4376_8984,Kilmacanogue,106142377,1,4376_7778022_100020,4376_108 -4289_75974,269,4376_8985,Kilmacanogue,106232377,1,4376_7778022_100020,4376_108 -4289_75974,259,4376_8986,Kilmacanogue,105765115,1,4376_7778022_100030,4376_109 -4289_75974,260,4376_8987,Kilmacanogue,105312417,1,4376_7778022_100040,4376_108 -4289_75974,261,4376_8988,Kilmacanogue,105322417,1,4376_7778022_100040,4376_108 -4289_75974,262,4376_8989,Kilmacanogue,105432417,1,4376_7778022_100040,4376_108 -4289_75960,262,4376_899,Dublin Airport,105432527,1,4376_7778022_103104,4376_3 -4289_75974,263,4376_8990,Kilmacanogue,105542417,1,4376_7778022_100040,4376_108 -4289_75974,264,4376_8991,Kilmacanogue,105652417,1,4376_7778022_100040,4376_108 -4289_75974,265,4376_8992,Kilmacanogue,105812417,1,4376_7778022_100040,4376_108 -4289_75974,266,4376_8993,Kilmacanogue,105822417,1,4376_7778022_100040,4376_108 -4289_75974,267,4376_8994,Kilmacanogue,106052417,1,4376_7778022_100040,4376_108 -4289_75974,268,4376_8995,Kilmacanogue,106142417,1,4376_7778022_100040,4376_108 -4289_75974,269,4376_8996,Kilmacanogue,106232417,1,4376_7778022_100040,4376_108 -4289_75974,259,4376_8997,Kilmacanogue,105765151,1,4376_7778022_100110,4376_109 -4289_75974,270,4376_8998,Kilmacanogue,105277853,1,4376_7778022_100040,4376_109 -4289_75974,146,4376_8999,Kilmacanogue,105247853,1,4376_7778022_100040,4376_109 -4289_75960,267,4376_9,Sutton Station,106051026,0,4376_7778022_103503,4376_1 -4289_75960,268,4376_90,Sutton Station,106141438,0,4376_7778022_103102,4376_1 -4289_75960,263,4376_900,Dublin Airport,105542527,1,4376_7778022_103104,4376_3 -4289_75974,271,4376_9000,Kilmacanogue,105237853,1,4376_7778022_100040,4376_109 -4289_75974,115,4376_9001,Kilmacanogue,105217853,1,4376_7778022_100040,4376_109 -4289_75974,260,4376_9002,Kilmacanogue,105312453,1,4376_7778022_100050,4376_109 -4289_75974,261,4376_9003,Kilmacanogue,105322453,1,4376_7778022_100050,4376_109 -4289_75974,262,4376_9004,Kilmacanogue,105432453,1,4376_7778022_100050,4376_109 -4289_75974,263,4376_9005,Kilmacanogue,105542453,1,4376_7778022_100050,4376_109 -4289_75974,264,4376_9006,Kilmacanogue,105652453,1,4376_7778022_100050,4376_109 -4289_75974,265,4376_9007,Kilmacanogue,105812453,1,4376_7778022_100050,4376_109 -4289_75974,266,4376_9008,Kilmacanogue,105822453,1,4376_7778022_100050,4376_109 -4289_75974,267,4376_9009,Kilmacanogue,106052453,1,4376_7778022_100050,4376_109 -4289_75960,264,4376_901,Dublin Airport,105652527,1,4376_7778022_103104,4376_3 -4289_75974,268,4376_9010,Kilmacanogue,106142453,1,4376_7778022_100050,4376_109 -4289_75974,269,4376_9011,Kilmacanogue,106232453,1,4376_7778022_100050,4376_109 -4289_75974,259,4376_9012,Kilmacanogue,105765185,1,4376_7778022_100040,4376_110 -4289_75974,270,4376_9013,Kilmacanogue,105277905,1,4376_7778022_100060,4376_109 -4289_75974,146,4376_9014,Kilmacanogue,105247905,1,4376_7778022_100060,4376_109 -4289_75974,271,4376_9015,Kilmacanogue,105237905,1,4376_7778022_100060,4376_109 -4289_75974,115,4376_9016,Kilmacanogue,105217905,1,4376_7778022_100060,4376_109 -4289_75974,260,4376_9017,Kilmacanogue,105312489,1,4376_7778022_100080,4376_109 -4289_75974,261,4376_9018,Kilmacanogue,105322489,1,4376_7778022_100080,4376_109 -4289_75974,262,4376_9019,Kilmacanogue,105432489,1,4376_7778022_100080,4376_109 -4289_75960,265,4376_902,Dublin Airport,105812527,1,4376_7778022_103104,4376_3 -4289_75974,263,4376_9020,Kilmacanogue,105542489,1,4376_7778022_100080,4376_109 -4289_75974,264,4376_9021,Kilmacanogue,105652489,1,4376_7778022_100080,4376_109 -4289_75974,265,4376_9022,Kilmacanogue,105812489,1,4376_7778022_100080,4376_109 -4289_75974,266,4376_9023,Kilmacanogue,105822489,1,4376_7778022_100080,4376_109 -4289_75974,267,4376_9024,Kilmacanogue,106052489,1,4376_7778022_100080,4376_109 -4289_75974,268,4376_9025,Kilmacanogue,106142489,1,4376_7778022_100080,4376_109 -4289_75974,269,4376_9026,Kilmacanogue,106232489,1,4376_7778022_100080,4376_109 -4289_75974,259,4376_9027,Kilmacanogue,105765215,1,4376_7778022_100100,4376_110 -4289_75974,260,4376_9028,Kilmacanogue,105312529,1,4376_7778022_100010,4376_109 -4289_75974,261,4376_9029,Kilmacanogue,105322529,1,4376_7778022_100010,4376_109 -4289_75960,266,4376_903,Dublin Airport,105822527,1,4376_7778022_103104,4376_3 -4289_75974,262,4376_9030,Kilmacanogue,105432529,1,4376_7778022_100010,4376_109 -4289_75974,263,4376_9031,Kilmacanogue,105542529,1,4376_7778022_100010,4376_109 -4289_75974,264,4376_9032,Kilmacanogue,105652529,1,4376_7778022_100010,4376_109 -4289_75974,265,4376_9033,Kilmacanogue,105812529,1,4376_7778022_100010,4376_109 -4289_75974,266,4376_9034,Kilmacanogue,105822529,1,4376_7778022_100010,4376_109 -4289_75974,267,4376_9035,Kilmacanogue,106052529,1,4376_7778022_100010,4376_109 -4289_75974,268,4376_9036,Kilmacanogue,106142529,1,4376_7778022_100010,4376_109 -4289_75974,269,4376_9037,Kilmacanogue,106232529,1,4376_7778022_100010,4376_109 -4289_75974,270,4376_9038,Kilmacanogue,105277951,1,4376_7778022_100020,4376_109 -4289_75974,146,4376_9039,Kilmacanogue,105247951,1,4376_7778022_100020,4376_109 -4289_75960,267,4376_904,Dublin Airport,106052527,1,4376_7778022_103104,4376_3 -4289_75974,271,4376_9040,Kilmacanogue,105237951,1,4376_7778022_100020,4376_109 -4289_75974,115,4376_9041,Kilmacanogue,105217951,1,4376_7778022_100020,4376_109 -4289_75974,259,4376_9042,Kilmacanogue,105765267,1,4376_7778022_100130,4376_109 -4289_75974,260,4376_9043,Kilmacanogue,105312571,1,4376_7778022_100030,4376_109 -4289_75974,261,4376_9044,Kilmacanogue,105322571,1,4376_7778022_100030,4376_109 -4289_75974,262,4376_9045,Kilmacanogue,105432571,1,4376_7778022_100030,4376_109 -4289_75974,263,4376_9046,Kilmacanogue,105542571,1,4376_7778022_100030,4376_109 -4289_75974,264,4376_9047,Kilmacanogue,105652571,1,4376_7778022_100030,4376_109 -4289_75974,265,4376_9048,Kilmacanogue,105812571,1,4376_7778022_100030,4376_109 -4289_75974,266,4376_9049,Kilmacanogue,105822571,1,4376_7778022_100030,4376_109 -4289_75960,268,4376_905,Dublin Airport,106142527,1,4376_7778022_103104,4376_3 -4289_75974,267,4376_9050,Kilmacanogue,106052571,1,4376_7778022_100030,4376_109 -4289_75974,268,4376_9051,Kilmacanogue,106142571,1,4376_7778022_100030,4376_109 -4289_75974,269,4376_9052,Kilmacanogue,106232571,1,4376_7778022_100030,4376_109 -4289_75974,270,4376_9053,Kilmacanogue,105277991,1,4376_7778022_100050,4376_109 -4289_75974,146,4376_9054,Kilmacanogue,105247991,1,4376_7778022_100050,4376_109 -4289_75974,271,4376_9055,Kilmacanogue,105237991,1,4376_7778022_100050,4376_109 -4289_75974,115,4376_9056,Kilmacanogue,105217991,1,4376_7778022_100050,4376_109 -4289_75974,260,4376_9057,Kilmacanogue,105312597,1,4376_7778022_100100,4376_109 -4289_75974,261,4376_9058,Kilmacanogue,105322597,1,4376_7778022_100100,4376_109 -4289_75974,262,4376_9059,Kilmacanogue,105432597,1,4376_7778022_100100,4376_109 -4289_75960,269,4376_906,Dublin Airport,106232527,1,4376_7778022_103104,4376_3 -4289_75974,263,4376_9060,Kilmacanogue,105542597,1,4376_7778022_100100,4376_109 -4289_75974,264,4376_9061,Kilmacanogue,105652597,1,4376_7778022_100100,4376_109 -4289_75974,265,4376_9062,Kilmacanogue,105812597,1,4376_7778022_100100,4376_109 -4289_75974,266,4376_9063,Kilmacanogue,105822597,1,4376_7778022_100100,4376_109 -4289_75974,267,4376_9064,Kilmacanogue,106052597,1,4376_7778022_100100,4376_109 -4289_75974,268,4376_9065,Kilmacanogue,106142597,1,4376_7778022_100100,4376_109 -4289_75974,269,4376_9066,Kilmacanogue,106232597,1,4376_7778022_100100,4376_109 -4289_75974,259,4376_9067,Kilmacanogue,105765313,1,4376_7778022_100070,4376_109 -4289_75974,260,4376_9068,Kilmacanogue,105312649,1,4376_7778022_100020,4376_109 -4289_75974,261,4376_9069,Kilmacanogue,105322649,1,4376_7778022_100020,4376_109 -4289_75960,270,4376_907,Dublin Airport,105277947,1,4376_7778022_103106,4376_4 -4289_75974,262,4376_9070,Kilmacanogue,105432649,1,4376_7778022_100020,4376_109 -4289_75974,263,4376_9071,Kilmacanogue,105542649,1,4376_7778022_100020,4376_109 -4289_75974,264,4376_9072,Kilmacanogue,105652649,1,4376_7778022_100020,4376_109 -4289_75974,265,4376_9073,Kilmacanogue,105812649,1,4376_7778022_100020,4376_109 -4289_75974,266,4376_9074,Kilmacanogue,105822649,1,4376_7778022_100020,4376_109 -4289_75974,267,4376_9075,Kilmacanogue,106052649,1,4376_7778022_100020,4376_109 -4289_75974,268,4376_9076,Kilmacanogue,106142649,1,4376_7778022_100020,4376_109 -4289_75974,269,4376_9077,Kilmacanogue,106232649,1,4376_7778022_100020,4376_109 -4289_75974,259,4376_9078,Kilmacanogue,105765357,1,4376_7778022_100080,4376_109 -4289_75974,270,4376_9079,Kilmacanogue,105278037,1,4376_7778022_100070,4376_110 -4289_75960,146,4376_908,Dublin Airport,105247947,1,4376_7778022_103106,4376_4 -4289_75974,146,4376_9080,Kilmacanogue,105248037,1,4376_7778022_100070,4376_110 -4289_75974,271,4376_9081,Kilmacanogue,105238037,1,4376_7778022_100070,4376_110 -4289_75974,115,4376_9082,Kilmacanogue,105218037,1,4376_7778022_100070,4376_110 -4289_75974,260,4376_9083,Kilmacanogue,105312705,1,4376_7778022_100130,4376_109 -4289_75974,261,4376_9084,Kilmacanogue,105322705,1,4376_7778022_100130,4376_109 -4289_75974,262,4376_9085,Kilmacanogue,105432705,1,4376_7778022_100130,4376_109 -4289_75974,263,4376_9086,Kilmacanogue,105542705,1,4376_7778022_100130,4376_109 -4289_75974,264,4376_9087,Kilmacanogue,105652705,1,4376_7778022_100130,4376_109 -4289_75974,265,4376_9088,Kilmacanogue,105812705,1,4376_7778022_100130,4376_109 -4289_75974,266,4376_9089,Kilmacanogue,105822705,1,4376_7778022_100130,4376_109 -4289_75960,271,4376_909,Dublin Airport,105237947,1,4376_7778022_103106,4376_4 -4289_75974,267,4376_9090,Kilmacanogue,106052705,1,4376_7778022_100130,4376_109 -4289_75974,268,4376_9091,Kilmacanogue,106142705,1,4376_7778022_100130,4376_109 -4289_75974,269,4376_9092,Kilmacanogue,106232705,1,4376_7778022_100130,4376_109 -4289_75974,259,4376_9093,Kilmacanogue,105765407,1,4376_7778022_100060,4376_110 -4289_75974,270,4376_9094,Kilmacanogue,105278081,1,4376_7778022_100030,4376_111 -4289_75974,146,4376_9095,Kilmacanogue,105248081,1,4376_7778022_100030,4376_111 -4289_75974,271,4376_9096,Kilmacanogue,105238081,1,4376_7778022_100030,4376_111 -4289_75974,115,4376_9097,Kilmacanogue,105218081,1,4376_7778022_100030,4376_111 -4289_75974,260,4376_9098,Kilmacanogue,105312765,1,4376_7778022_100010,4376_109 -4289_75974,261,4376_9099,Kilmacanogue,105322765,1,4376_7778022_100010,4376_109 -4289_75960,269,4376_91,Sutton Station,106231438,0,4376_7778022_103102,4376_1 -4289_75960,115,4376_910,Dublin Airport,105217947,1,4376_7778022_103106,4376_4 -4289_75974,262,4376_9100,Kilmacanogue,105432765,1,4376_7778022_100010,4376_109 -4289_75974,263,4376_9101,Kilmacanogue,105542765,1,4376_7778022_100010,4376_109 -4289_75974,264,4376_9102,Kilmacanogue,105652765,1,4376_7778022_100010,4376_109 -4289_75974,265,4376_9103,Kilmacanogue,105812765,1,4376_7778022_100010,4376_109 -4289_75974,266,4376_9104,Kilmacanogue,105822765,1,4376_7778022_100010,4376_109 -4289_75974,267,4376_9105,Kilmacanogue,106052765,1,4376_7778022_100010,4376_109 -4289_75974,268,4376_9106,Kilmacanogue,106142765,1,4376_7778022_100010,4376_109 -4289_75974,269,4376_9107,Kilmacanogue,106232765,1,4376_7778022_100010,4376_109 -4289_75974,259,4376_9108,Kilmacanogue,105765461,1,4376_7778022_100130,4376_110 -4289_75974,270,4376_9109,Kilmacanogue,105278135,1,4376_7778022_100020,4376_111 -4289_75960,259,4376_911,Dublin Airport,105765257,1,4376_7778022_103501,4376_3 -4289_75974,146,4376_9110,Kilmacanogue,105248135,1,4376_7778022_100020,4376_111 -4289_75974,271,4376_9111,Kilmacanogue,105238135,1,4376_7778022_100020,4376_111 -4289_75974,115,4376_9112,Kilmacanogue,105218135,1,4376_7778022_100020,4376_111 -4289_75974,260,4376_9113,Kilmacanogue,105312813,1,4376_7778022_100100,4376_109 -4289_75974,261,4376_9114,Kilmacanogue,105322813,1,4376_7778022_100100,4376_109 -4289_75974,262,4376_9115,Kilmacanogue,105432813,1,4376_7778022_100100,4376_109 -4289_75974,263,4376_9116,Kilmacanogue,105542813,1,4376_7778022_100100,4376_109 -4289_75974,264,4376_9117,Kilmacanogue,105652813,1,4376_7778022_100100,4376_109 -4289_75974,265,4376_9118,Kilmacanogue,105812813,1,4376_7778022_100100,4376_109 -4289_75974,266,4376_9119,Kilmacanogue,105822813,1,4376_7778022_100100,4376_109 -4289_75960,260,4376_912,Dublin Airport,105312585,1,4376_7778022_103108,4376_3 -4289_75974,267,4376_9120,Kilmacanogue,106052813,1,4376_7778022_100100,4376_109 -4289_75974,268,4376_9121,Kilmacanogue,106142813,1,4376_7778022_100100,4376_109 -4289_75974,269,4376_9122,Kilmacanogue,106232813,1,4376_7778022_100100,4376_109 -4289_75974,259,4376_9123,Kilmacanogue,105765511,1,4376_7778022_100070,4376_109 -4289_75974,270,4376_9124,Kilmacanogue,105278179,1,4376_7778022_100050,4376_109 -4289_75974,146,4376_9125,Kilmacanogue,105248179,1,4376_7778022_100050,4376_109 -4289_75974,271,4376_9126,Kilmacanogue,105238179,1,4376_7778022_100050,4376_109 -4289_75974,115,4376_9127,Kilmacanogue,105218179,1,4376_7778022_100050,4376_109 -4289_75974,260,4376_9128,Kilmacanogue,105312867,1,4376_7778022_100020,4376_109 -4289_75974,261,4376_9129,Kilmacanogue,105322867,1,4376_7778022_100020,4376_109 -4289_75960,261,4376_913,Dublin Airport,105322585,1,4376_7778022_103108,4376_3 -4289_75974,262,4376_9130,Kilmacanogue,105432867,1,4376_7778022_100020,4376_109 -4289_75974,263,4376_9131,Kilmacanogue,105542867,1,4376_7778022_100020,4376_109 -4289_75974,264,4376_9132,Kilmacanogue,105652867,1,4376_7778022_100020,4376_109 -4289_75974,265,4376_9133,Kilmacanogue,105812867,1,4376_7778022_100020,4376_109 -4289_75974,266,4376_9134,Kilmacanogue,105822867,1,4376_7778022_100020,4376_109 -4289_75974,267,4376_9135,Kilmacanogue,106052867,1,4376_7778022_100020,4376_109 -4289_75974,268,4376_9136,Kilmacanogue,106142867,1,4376_7778022_100020,4376_109 -4289_75974,269,4376_9137,Kilmacanogue,106232867,1,4376_7778022_100020,4376_109 -4289_75974,259,4376_9138,Kilmacanogue,105765553,1,4376_7778022_100080,4376_109 -4289_75974,270,4376_9139,Kilmacanogue,105278217,1,4376_7778022_100070,4376_109 -4289_75960,262,4376_914,Dublin Airport,105432585,1,4376_7778022_103108,4376_3 -4289_75974,146,4376_9140,Kilmacanogue,105248217,1,4376_7778022_100070,4376_109 -4289_75974,271,4376_9141,Kilmacanogue,105238217,1,4376_7778022_100070,4376_109 -4289_75974,115,4376_9142,Kilmacanogue,105218217,1,4376_7778022_100070,4376_109 -4289_75974,260,4376_9143,Kilmacanogue,105312913,1,4376_7778022_100130,4376_109 -4289_75974,261,4376_9144,Kilmacanogue,105322913,1,4376_7778022_100130,4376_109 -4289_75974,262,4376_9145,Kilmacanogue,105432913,1,4376_7778022_100130,4376_109 -4289_75974,263,4376_9146,Kilmacanogue,105542913,1,4376_7778022_100130,4376_109 -4289_75974,264,4376_9147,Kilmacanogue,105652913,1,4376_7778022_100130,4376_109 -4289_75974,265,4376_9148,Kilmacanogue,105812913,1,4376_7778022_100130,4376_109 -4289_75974,266,4376_9149,Kilmacanogue,105822913,1,4376_7778022_100130,4376_109 -4289_75960,263,4376_915,Dublin Airport,105542585,1,4376_7778022_103108,4376_3 -4289_75974,267,4376_9150,Kilmacanogue,106052913,1,4376_7778022_100130,4376_109 -4289_75974,268,4376_9151,Kilmacanogue,106142913,1,4376_7778022_100130,4376_109 -4289_75974,269,4376_9152,Kilmacanogue,106232913,1,4376_7778022_100130,4376_109 -4289_75974,259,4376_9153,Kilmacanogue,105765595,1,4376_7778022_100050,4376_109 -4289_75974,270,4376_9154,Kilmacanogue,105278255,1,4376_7778022_100030,4376_109 -4289_75974,146,4376_9155,Kilmacanogue,105248255,1,4376_7778022_100030,4376_109 -4289_75974,271,4376_9156,Kilmacanogue,105238255,1,4376_7778022_100030,4376_109 -4289_75974,115,4376_9157,Kilmacanogue,105218255,1,4376_7778022_100030,4376_109 -4289_75974,260,4376_9158,Kilmacanogue,105312961,1,4376_7778022_100010,4376_109 -4289_75974,261,4376_9159,Kilmacanogue,105322961,1,4376_7778022_100010,4376_109 -4289_75960,264,4376_916,Dublin Airport,105652585,1,4376_7778022_103108,4376_3 -4289_75974,262,4376_9160,Kilmacanogue,105432961,1,4376_7778022_100010,4376_109 -4289_75974,263,4376_9161,Kilmacanogue,105542961,1,4376_7778022_100010,4376_109 -4289_75974,264,4376_9162,Kilmacanogue,105652961,1,4376_7778022_100010,4376_109 -4289_75974,265,4376_9163,Kilmacanogue,105812961,1,4376_7778022_100010,4376_109 -4289_75974,266,4376_9164,Kilmacanogue,105822961,1,4376_7778022_100010,4376_109 -4289_75974,267,4376_9165,Kilmacanogue,106052961,1,4376_7778022_100010,4376_109 -4289_75974,268,4376_9166,Kilmacanogue,106142961,1,4376_7778022_100010,4376_109 -4289_75974,269,4376_9167,Kilmacanogue,106232961,1,4376_7778022_100010,4376_109 -4289_75974,259,4376_9168,Kilmacanogue,105765637,1,4376_7778022_100130,4376_109 -4289_75974,270,4376_9169,Kilmacanogue,105278291,1,4376_7778022_100020,4376_109 -4289_75960,265,4376_917,Dublin Airport,105812585,1,4376_7778022_103108,4376_3 -4289_75974,146,4376_9170,Kilmacanogue,105248291,1,4376_7778022_100020,4376_109 -4289_75974,271,4376_9171,Kilmacanogue,105238291,1,4376_7778022_100020,4376_109 -4289_75974,115,4376_9172,Kilmacanogue,105218291,1,4376_7778022_100020,4376_109 -4289_75974,270,4376_9173,Kilmacanogue,105278321,1,4376_7778022_100090,4376_109 -4289_75974,146,4376_9174,Kilmacanogue,105248321,1,4376_7778022_100090,4376_109 -4289_75974,271,4376_9175,Kilmacanogue,105238321,1,4376_7778022_100090,4376_109 -4289_75974,115,4376_9176,Kilmacanogue,105218321,1,4376_7778022_100090,4376_109 -4289_75974,260,4376_9177,Kilmacanogue,105312997,1,4376_7778022_100100,4376_109 -4289_75974,261,4376_9178,Kilmacanogue,105322997,1,4376_7778022_100100,4376_109 -4289_75974,262,4376_9179,Kilmacanogue,105432997,1,4376_7778022_100100,4376_109 -4289_75960,266,4376_918,Dublin Airport,105822585,1,4376_7778022_103108,4376_3 -4289_75974,263,4376_9180,Kilmacanogue,105542997,1,4376_7778022_100100,4376_109 -4289_75974,264,4376_9181,Kilmacanogue,105652997,1,4376_7778022_100100,4376_109 -4289_75974,265,4376_9182,Kilmacanogue,105812997,1,4376_7778022_100100,4376_109 -4289_75974,266,4376_9183,Kilmacanogue,105822997,1,4376_7778022_100100,4376_109 -4289_75974,267,4376_9184,Kilmacanogue,106052997,1,4376_7778022_100100,4376_109 -4289_75974,268,4376_9185,Kilmacanogue,106142997,1,4376_7778022_100100,4376_109 -4289_75974,269,4376_9186,Kilmacanogue,106232997,1,4376_7778022_100100,4376_109 -4289_75974,259,4376_9187,Kilmacanogue,105765681,1,4376_7778022_100070,4376_109 -4289_75975,260,4376_9188,Dun Laoghaire,105311506,0,4376_7778022_100030,4376_112 -4289_75975,261,4376_9189,Dun Laoghaire,105321506,0,4376_7778022_100030,4376_112 -4289_75960,267,4376_919,Dublin Airport,106052585,1,4376_7778022_103108,4376_3 -4289_75975,262,4376_9190,Dun Laoghaire,105431506,0,4376_7778022_100030,4376_112 -4289_75975,263,4376_9191,Dun Laoghaire,105541506,0,4376_7778022_100030,4376_112 -4289_75975,264,4376_9192,Dun Laoghaire,105651506,0,4376_7778022_100030,4376_112 -4289_75975,265,4376_9193,Dun Laoghaire,105811506,0,4376_7778022_100030,4376_112 -4289_75975,266,4376_9194,Dun Laoghaire,105821506,0,4376_7778022_100030,4376_112 -4289_75975,267,4376_9195,Dun Laoghaire,106051506,0,4376_7778022_100030,4376_112 -4289_75975,268,4376_9196,Dun Laoghaire,106141506,0,4376_7778022_100030,4376_112 -4289_75975,269,4376_9197,Dun Laoghaire,106231506,0,4376_7778022_100030,4376_112 -4289_75975,259,4376_9198,Dun Laoghaire,105764400,0,4376_7778022_100090,4376_112 -4289_75975,260,4376_9199,Kilmacanogue,105311815,1,4376_7778022_100010,4376_113 -4289_75960,259,4376_92,Sutton Station,105764294,0,4376_7778022_103503,4376_1 -4289_75960,268,4376_920,Dublin Airport,106142585,1,4376_7778022_103108,4376_3 -4289_75975,261,4376_9200,Kilmacanogue,105321815,1,4376_7778022_100010,4376_113 -4289_75975,262,4376_9201,Kilmacanogue,105431815,1,4376_7778022_100010,4376_113 -4289_75975,263,4376_9202,Kilmacanogue,105541815,1,4376_7778022_100010,4376_113 -4289_75975,264,4376_9203,Kilmacanogue,105651815,1,4376_7778022_100010,4376_113 -4289_75975,265,4376_9204,Kilmacanogue,105811815,1,4376_7778022_100010,4376_113 -4289_75975,266,4376_9205,Kilmacanogue,105821815,1,4376_7778022_100010,4376_113 -4289_75975,267,4376_9206,Kilmacanogue,106051815,1,4376_7778022_100010,4376_113 -4289_75975,268,4376_9207,Kilmacanogue,106141815,1,4376_7778022_100010,4376_113 -4289_75975,269,4376_9208,Kilmacanogue,106231815,1,4376_7778022_100010,4376_113 -4289_75975,259,4376_9209,Kilmacanogue,105764663,1,4376_7778022_100100,4376_113 -4289_75960,269,4376_921,Dublin Airport,106232585,1,4376_7778022_103108,4376_3 -4289_75958,260,4376_9210,Killiney,105311262,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9211,Killiney,105321262,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9212,Killiney,105431262,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9213,Killiney,105541262,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9214,Killiney,105651262,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9215,Killiney,105811262,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9216,Killiney,105821262,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9217,Killiney,106051262,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9218,Killiney,106141262,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9219,Killiney,106231262,0,4376_7778022_100140,4376_114 -4289_75960,270,4376_922,Dublin Airport,105277985,1,4376_7778022_103103,4376_4 -4289_75958,259,4376_9220,Killiney,105764152,0,4376_7778022_100060,4376_114 -4289_75958,260,4376_9221,Killiney,105311388,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9222,Killiney,105321388,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9223,Killiney,105431388,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9224,Killiney,105541388,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9225,Killiney,105651388,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9226,Killiney,105811388,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9227,Killiney,105821388,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9228,Killiney,106051388,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9229,Killiney,106141388,0,4376_7778022_100140,4376_114 -4289_75960,146,4376_923,Dublin Airport,105247985,1,4376_7778022_103103,4376_4 -4289_75958,269,4376_9230,Killiney,106231388,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9231,Killiney,105764238,0,4376_7778022_100060,4376_114 -4289_75958,270,4376_9232,Killiney,105277092,0,4376_7778022_100150,4376_114 -4289_75958,146,4376_9233,Killiney,105247092,0,4376_7778022_100150,4376_114 -4289_75958,271,4376_9234,Killiney,105237092,0,4376_7778022_100150,4376_114 -4289_75958,115,4376_9235,Killiney,105217092,0,4376_7778022_100150,4376_114 -4289_75958,260,4376_9236,Killiney,105311496,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9237,Killiney,105321496,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9238,Killiney,105431496,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9239,Killiney,105541496,0,4376_7778022_100140,4376_114 -4289_75960,271,4376_924,Dublin Airport,105237985,1,4376_7778022_103103,4376_4 -4289_75958,264,4376_9240,Killiney,105651496,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9241,Killiney,105811496,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9242,Killiney,105821496,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9243,Killiney,106051496,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9244,Killiney,106141496,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9245,Killiney,106231496,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9246,Killiney,105764338,0,4376_7778022_100060,4376_114 -4289_75958,270,4376_9247,Killiney,105277168,0,4376_7778022_100140,4376_114 -4289_75958,146,4376_9248,Killiney,105247168,0,4376_7778022_100140,4376_114 -4289_75958,271,4376_9249,Killiney,105237168,0,4376_7778022_100140,4376_114 -4289_75960,115,4376_925,Dublin Airport,105217985,1,4376_7778022_103103,4376_4 -4289_75958,115,4376_9250,Killiney,105217168,0,4376_7778022_100140,4376_114 -4289_75958,260,4376_9251,Killiney,105311600,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9252,Killiney,105321600,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9253,Killiney,105431600,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9254,Killiney,105541600,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9255,Killiney,105651600,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9256,Killiney,105811600,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9257,Killiney,105821600,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9258,Killiney,106051600,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9259,Killiney,106141600,0,4376_7778022_100140,4376_114 -4289_75960,259,4376_926,Dublin Airport,105765299,1,4376_7778022_103101,4376_3 -4289_75958,269,4376_9260,Killiney,106231600,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9261,Killiney,105764422,0,4376_7778022_100060,4376_114 -4289_75958,270,4376_9262,Killiney,105277216,0,4376_7778022_100100,4376_114 -4289_75958,146,4376_9263,Killiney,105247216,0,4376_7778022_100100,4376_114 -4289_75958,271,4376_9264,Killiney,105237216,0,4376_7778022_100100,4376_114 -4289_75958,115,4376_9265,Killiney,105217216,0,4376_7778022_100100,4376_114 -4289_75958,260,4376_9266,Killiney,105311710,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9267,Killiney,105321710,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9268,Killiney,105431710,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9269,Killiney,105541710,0,4376_7778022_100140,4376_114 -4289_75960,260,4376_927,Dublin Airport,105312637,1,4376_7778022_103501,4376_3 -4289_75958,264,4376_9270,Killiney,105651710,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9271,Killiney,105811710,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9272,Killiney,105821710,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9273,Killiney,106051710,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9274,Killiney,106141710,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9275,Killiney,106231710,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9276,Killiney,105764526,0,4376_7778022_100060,4376_114 -4289_75958,270,4376_9277,Killiney,105277292,0,4376_7778022_100100,4376_114 -4289_75958,146,4376_9278,Killiney,105247292,0,4376_7778022_100100,4376_114 -4289_75958,271,4376_9279,Killiney,105237292,0,4376_7778022_100100,4376_114 -4289_75960,261,4376_928,Dublin Airport,105322637,1,4376_7778022_103501,4376_3 -4289_75958,115,4376_9280,Killiney,105217292,0,4376_7778022_100100,4376_114 -4289_75958,260,4376_9281,Killiney,105311818,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9282,Killiney,105321818,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9283,Killiney,105431818,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9284,Killiney,105541818,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9285,Killiney,105651818,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9286,Killiney,105811818,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9287,Killiney,105821818,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9288,Killiney,106051818,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9289,Killiney,106141818,0,4376_7778022_100140,4376_114 -4289_75960,262,4376_929,Dublin Airport,105432637,1,4376_7778022_103501,4376_3 -4289_75958,269,4376_9290,Killiney,106231818,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9291,Killiney,105764628,0,4376_7778022_100060,4376_114 -4289_75958,270,4376_9292,Killiney,105277382,0,4376_7778022_100100,4376_114 -4289_75958,146,4376_9293,Killiney,105247382,0,4376_7778022_100100,4376_114 -4289_75958,271,4376_9294,Killiney,105237382,0,4376_7778022_100100,4376_114 -4289_75958,115,4376_9295,Killiney,105217382,0,4376_7778022_100100,4376_114 -4289_75958,260,4376_9296,Killiney,105311926,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9297,Killiney,105321926,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9298,Killiney,105431926,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9299,Killiney,105541926,0,4376_7778022_100140,4376_114 -4289_75960,270,4376_93,Sutton Station,105277104,0,4376_7778022_103105,4376_2 -4289_75960,263,4376_930,Dublin Airport,105542637,1,4376_7778022_103501,4376_3 -4289_75958,264,4376_9300,Killiney,105651926,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9301,Killiney,105811926,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9302,Killiney,105821926,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9303,Killiney,106051926,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9304,Killiney,106141926,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9305,Killiney,106231926,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9306,Killiney,105764732,0,4376_7778022_100060,4376_114 -4289_75958,270,4376_9307,Killiney,105277472,0,4376_7778022_100100,4376_114 -4289_75958,146,4376_9308,Killiney,105247472,0,4376_7778022_100100,4376_114 -4289_75958,271,4376_9309,Killiney,105237472,0,4376_7778022_100100,4376_114 -4289_75960,264,4376_931,Dublin Airport,105652637,1,4376_7778022_103501,4376_3 -4289_75958,115,4376_9310,Killiney,105217472,0,4376_7778022_100100,4376_114 -4289_75958,260,4376_9311,Killiney,105312038,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9312,Killiney,105322038,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9313,Killiney,105432038,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9314,Killiney,105542038,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9315,Killiney,105652038,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9316,Killiney,105812038,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9317,Killiney,105822038,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9318,Killiney,106052038,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9319,Killiney,106142038,0,4376_7778022_100140,4376_114 -4289_75960,265,4376_932,Dublin Airport,105812637,1,4376_7778022_103501,4376_3 -4289_75958,269,4376_9320,Killiney,106232038,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9321,Killiney,105764834,0,4376_7778022_100060,4376_115 -4289_75958,270,4376_9322,Killiney,105277564,0,4376_7778022_100100,4376_115 -4289_75958,146,4376_9323,Killiney,105247564,0,4376_7778022_100100,4376_115 -4289_75958,271,4376_9324,Killiney,105237564,0,4376_7778022_100100,4376_115 -4289_75958,115,4376_9325,Killiney,105217564,0,4376_7778022_100100,4376_115 -4289_75958,260,4376_9326,Killiney,105312172,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9327,Killiney,105322172,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9328,Killiney,105432172,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9329,Killiney,105542172,0,4376_7778022_100140,4376_114 -4289_75960,266,4376_933,Dublin Airport,105822637,1,4376_7778022_103501,4376_3 -4289_75958,264,4376_9330,Killiney,105652172,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9331,Killiney,105812172,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9332,Killiney,105822172,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9333,Killiney,106052172,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9334,Killiney,106142172,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9335,Killiney,106232172,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9336,Killiney,105764936,0,4376_7778022_100060,4376_115 -4289_75958,270,4376_9337,Killiney,105277654,0,4376_7778022_100100,4376_115 -4289_75958,146,4376_9338,Killiney,105247654,0,4376_7778022_100100,4376_115 -4289_75958,271,4376_9339,Killiney,105237654,0,4376_7778022_100100,4376_115 -4289_75960,267,4376_934,Dublin Airport,106052637,1,4376_7778022_103501,4376_3 -4289_75958,115,4376_9340,Killiney,105217654,0,4376_7778022_100100,4376_115 -4289_75958,260,4376_9341,Killiney,105312222,0,4376_7778022_100972,4376_114 -4289_75958,261,4376_9342,Killiney,105322222,0,4376_7778022_100972,4376_114 -4289_75958,262,4376_9343,Killiney,105432222,0,4376_7778022_100972,4376_114 -4289_75958,263,4376_9344,Killiney,105542222,0,4376_7778022_100972,4376_114 -4289_75958,264,4376_9345,Killiney,105652222,0,4376_7778022_100972,4376_114 -4289_75958,265,4376_9346,Killiney,105812222,0,4376_7778022_100972,4376_114 -4289_75958,266,4376_9347,Killiney,105822222,0,4376_7778022_100972,4376_114 -4289_75958,267,4376_9348,Killiney,106052222,0,4376_7778022_100972,4376_114 -4289_75958,268,4376_9349,Killiney,106142222,0,4376_7778022_100972,4376_114 -4289_75960,268,4376_935,Dublin Airport,106142637,1,4376_7778022_103501,4376_3 -4289_75958,269,4376_9350,Killiney,106232222,0,4376_7778022_100972,4376_114 -4289_75958,260,4376_9351,Killiney,105312300,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9352,Killiney,105322300,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9353,Killiney,105432300,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9354,Killiney,105542300,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9355,Killiney,105652300,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9356,Killiney,105812300,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9357,Killiney,105822300,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9358,Killiney,106052300,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9359,Killiney,106142300,0,4376_7778022_100140,4376_114 -4289_75960,269,4376_936,Dublin Airport,106232637,1,4376_7778022_103501,4376_3 -4289_75958,269,4376_9360,Killiney,106232300,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9361,Killiney,105765036,0,4376_7778022_100060,4376_115 -4289_75958,270,4376_9362,Killiney,105277742,0,4376_7778022_100100,4376_115 -4289_75958,146,4376_9363,Killiney,105247742,0,4376_7778022_100100,4376_115 -4289_75958,271,4376_9364,Killiney,105237742,0,4376_7778022_100100,4376_115 -4289_75958,115,4376_9365,Killiney,105217742,0,4376_7778022_100100,4376_115 -4289_75958,260,4376_9366,Killiney,105312418,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9367,Killiney,105322418,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9368,Killiney,105432418,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9369,Killiney,105542418,0,4376_7778022_100140,4376_114 -4289_75960,259,4376_937,Dublin Airport,105765343,1,4376_7778022_103502,4376_4 -4289_75958,264,4376_9370,Killiney,105652418,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9371,Killiney,105812418,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9372,Killiney,105822418,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9373,Killiney,106052418,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9374,Killiney,106142418,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9375,Killiney,106232418,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9376,Killiney,105765138,0,4376_7778022_100060,4376_115 -4289_75958,270,4376_9377,Killiney,105277836,0,4376_7778022_100100,4376_115 -4289_75958,146,4376_9378,Killiney,105247836,0,4376_7778022_100100,4376_115 -4289_75958,271,4376_9379,Killiney,105237836,0,4376_7778022_100100,4376_115 -4289_75960,270,4376_938,Dublin Airport,105278027,1,4376_7778022_103502,4376_5 -4289_75958,115,4376_9380,Killiney,105217836,0,4376_7778022_100100,4376_115 -4289_75958,260,4376_9381,Killiney,105312532,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9382,Killiney,105322532,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9383,Killiney,105432532,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9384,Killiney,105542532,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9385,Killiney,105652532,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9386,Killiney,105812532,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9387,Killiney,105822532,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9388,Killiney,106052532,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9389,Killiney,106142532,0,4376_7778022_100140,4376_114 -4289_75960,146,4376_939,Dublin Airport,105248027,1,4376_7778022_103502,4376_5 -4289_75958,269,4376_9390,Killiney,106232532,0,4376_7778022_100140,4376_114 -4289_75958,270,4376_9391,Killiney,105277926,0,4376_7778022_100100,4376_115 -4289_75958,146,4376_9392,Killiney,105247926,0,4376_7778022_100100,4376_115 -4289_75958,271,4376_9393,Killiney,105237926,0,4376_7778022_100100,4376_115 -4289_75958,115,4376_9394,Killiney,105217926,0,4376_7778022_100100,4376_115 -4289_75958,259,4376_9395,Killiney,105765260,0,4376_7778022_100060,4376_114 -4289_75958,270,4376_9396,Killiney,105277982,0,4376_7778022_100150,4376_114 -4289_75958,146,4376_9397,Killiney,105247982,0,4376_7778022_100150,4376_114 -4289_75958,271,4376_9398,Killiney,105237982,0,4376_7778022_100150,4376_114 -4289_75958,115,4376_9399,Killiney,105217982,0,4376_7778022_100150,4376_114 -4289_75960,146,4376_94,Sutton Station,105247104,0,4376_7778022_103105,4376_2 -4289_75960,271,4376_940,Dublin Airport,105238027,1,4376_7778022_103502,4376_5 -4289_75958,260,4376_9400,Killiney,105312634,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9401,Killiney,105322634,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9402,Killiney,105432634,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9403,Killiney,105542634,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9404,Killiney,105652634,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9405,Killiney,105812634,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9406,Killiney,105822634,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9407,Killiney,106052634,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9408,Killiney,106142634,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9409,Killiney,106232634,0,4376_7778022_100140,4376_114 -4289_75960,115,4376_941,Dublin Airport,105218027,1,4376_7778022_103502,4376_5 -4289_75958,259,4376_9410,Killiney,105765356,0,4376_7778022_100060,4376_114 -4289_75958,270,4376_9411,Killiney,105278062,0,4376_7778022_100140,4376_114 -4289_75958,146,4376_9412,Killiney,105248062,0,4376_7778022_100140,4376_114 -4289_75958,271,4376_9413,Killiney,105238062,0,4376_7778022_100140,4376_114 -4289_75958,115,4376_9414,Killiney,105218062,0,4376_7778022_100140,4376_114 -4289_75958,260,4376_9415,Killiney,105312746,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9416,Killiney,105322746,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9417,Killiney,105432746,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9418,Killiney,105542746,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9419,Killiney,105652746,0,4376_7778022_100140,4376_114 -4289_75960,259,4376_942,Dublin Airport,105765385,1,4376_7778022_103105,4376_3 -4289_75958,265,4376_9420,Killiney,105812746,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9421,Killiney,105822746,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9422,Killiney,106052746,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9423,Killiney,106142746,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9424,Killiney,106232746,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9425,Killiney,105765442,0,4376_7778022_100120,4376_114 -4289_75958,270,4376_9426,Killiney,105278138,0,4376_7778022_100150,4376_114 -4289_75958,146,4376_9427,Killiney,105248138,0,4376_7778022_100150,4376_114 -4289_75958,271,4376_9428,Killiney,105238138,0,4376_7778022_100150,4376_114 -4289_75958,115,4376_9429,Killiney,105218138,0,4376_7778022_100150,4376_114 -4289_75960,270,4376_943,Dublin Airport,105278067,1,4376_7778022_103105,4376_4 -4289_75958,260,4376_9430,Killiney,105312838,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9431,Killiney,105322838,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9432,Killiney,105432838,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9433,Killiney,105542838,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9434,Killiney,105652838,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9435,Killiney,105812838,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9436,Killiney,105822838,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9437,Killiney,106052838,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9438,Killiney,106142838,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9439,Killiney,106232838,0,4376_7778022_100140,4376_114 -4289_75960,146,4376_944,Dublin Airport,105248067,1,4376_7778022_103105,4376_4 -4289_75958,259,4376_9440,Killiney,105765526,0,4376_7778022_100120,4376_114 -4289_75958,270,4376_9441,Killiney,105278214,0,4376_7778022_100140,4376_114 -4289_75958,146,4376_9442,Killiney,105248214,0,4376_7778022_100140,4376_114 -4289_75958,271,4376_9443,Killiney,105238214,0,4376_7778022_100140,4376_114 -4289_75958,115,4376_9444,Killiney,105218214,0,4376_7778022_100140,4376_114 -4289_75958,260,4376_9445,Killiney,105312934,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9446,Killiney,105322934,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9447,Killiney,105432934,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9448,Killiney,105542934,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9449,Killiney,105652934,0,4376_7778022_100140,4376_114 -4289_75960,271,4376_945,Dublin Airport,105238067,1,4376_7778022_103105,4376_4 -4289_75958,265,4376_9450,Killiney,105812934,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9451,Killiney,105822934,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9452,Killiney,106052934,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9453,Killiney,106142934,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9454,Killiney,106232934,0,4376_7778022_100140,4376_114 -4289_75958,259,4376_9455,Killiney,105765612,0,4376_7778022_100120,4376_114 -4289_75958,270,4376_9456,Killiney,105278286,0,4376_7778022_100150,4376_114 -4289_75958,146,4376_9457,Killiney,105248286,0,4376_7778022_100150,4376_114 -4289_75958,271,4376_9458,Killiney,105238286,0,4376_7778022_100150,4376_114 -4289_75958,115,4376_9459,Killiney,105218286,0,4376_7778022_100150,4376_114 -4289_75960,115,4376_946,Dublin Airport,105218067,1,4376_7778022_103105,4376_4 -4289_75958,260,4376_9460,Killiney,105313002,0,4376_7778022_100140,4376_114 -4289_75958,261,4376_9461,Killiney,105323002,0,4376_7778022_100140,4376_114 -4289_75958,262,4376_9462,Killiney,105433002,0,4376_7778022_100140,4376_114 -4289_75958,263,4376_9463,Killiney,105543002,0,4376_7778022_100140,4376_114 -4289_75958,264,4376_9464,Killiney,105653002,0,4376_7778022_100140,4376_114 -4289_75958,265,4376_9465,Killiney,105813002,0,4376_7778022_100140,4376_114 -4289_75958,266,4376_9466,Killiney,105823002,0,4376_7778022_100140,4376_114 -4289_75958,267,4376_9467,Killiney,106053002,0,4376_7778022_100140,4376_114 -4289_75958,268,4376_9468,Killiney,106143002,0,4376_7778022_100140,4376_114 -4289_75958,269,4376_9469,Killiney,106233002,0,4376_7778022_100140,4376_114 -4289_75960,260,4376_947,Dublin Airport,105312689,1,4376_7778022_103105,4376_3 -4289_75958,259,4376_9470,Killiney,105765674,0,4376_7778022_100120,4376_114 -4289_75958,260,4376_9471,Dun Laoghaire,105311125,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9472,Dun Laoghaire,105321125,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9473,Dun Laoghaire,105431125,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9474,Dun Laoghaire,105541125,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9475,Dun Laoghaire,105651125,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9476,Dun Laoghaire,105811125,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9477,Dun Laoghaire,105821125,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9478,Dun Laoghaire,106051125,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9479,Dun Laoghaire,106141125,1,4376_7778022_100140,4376_116 -4289_75960,261,4376_948,Dublin Airport,105322689,1,4376_7778022_103105,4376_3 -4289_75958,269,4376_9480,Dun Laoghaire,106231125,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9481,Dun Laoghaire,105764091,1,4376_7778022_100060,4376_116 -4289_75958,260,4376_9482,Dun Laoghaire,105311261,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9483,Dun Laoghaire,105321261,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9484,Dun Laoghaire,105431261,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9485,Dun Laoghaire,105541261,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9486,Dun Laoghaire,105651261,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9487,Dun Laoghaire,105811261,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9488,Dun Laoghaire,105821261,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9489,Dun Laoghaire,106051261,1,4376_7778022_100140,4376_116 -4289_75960,262,4376_949,Dublin Airport,105432689,1,4376_7778022_103105,4376_3 -4289_75958,268,4376_9490,Dun Laoghaire,106141261,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9491,Dun Laoghaire,106231261,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9492,Dun Laoghaire,105764173,1,4376_7778022_100060,4376_117 -4289_75958,260,4376_9493,Dun Laoghaire,105311393,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9494,Dun Laoghaire,105321393,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9495,Dun Laoghaire,105431393,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9496,Dun Laoghaire,105541393,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9497,Dun Laoghaire,105651393,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9498,Dun Laoghaire,105811393,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9499,Dun Laoghaire,105821393,1,4376_7778022_100140,4376_116 -4289_75960,271,4376_95,Sutton Station,105237104,0,4376_7778022_103105,4376_2 -4289_75960,263,4376_950,Dublin Airport,105542689,1,4376_7778022_103105,4376_3 -4289_75958,267,4376_9500,Dun Laoghaire,106051393,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9501,Dun Laoghaire,106141393,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9502,Dun Laoghaire,106231393,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9503,Dun Laoghaire,105764257,1,4376_7778022_100060,4376_116 -4289_75958,270,4376_9504,Dun Laoghaire,105277121,1,4376_7778022_100150,4376_116 -4289_75958,146,4376_9505,Dun Laoghaire,105247121,1,4376_7778022_100150,4376_116 -4289_75958,271,4376_9506,Dun Laoghaire,105237121,1,4376_7778022_100150,4376_116 -4289_75958,115,4376_9507,Dun Laoghaire,105217121,1,4376_7778022_100150,4376_116 -4289_75958,260,4376_9508,Dun Laoghaire,105311503,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9509,Dun Laoghaire,105321503,1,4376_7778022_100140,4376_116 -4289_75960,264,4376_951,Dublin Airport,105652689,1,4376_7778022_103105,4376_3 -4289_75958,262,4376_9510,Dun Laoghaire,105431503,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9511,Dun Laoghaire,105541503,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9512,Dun Laoghaire,105651503,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9513,Dun Laoghaire,105811503,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9514,Dun Laoghaire,105821503,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9515,Dun Laoghaire,106051503,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9516,Dun Laoghaire,106141503,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9517,Dun Laoghaire,106231503,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9518,Dun Laoghaire,105764357,1,4376_7778022_100060,4376_116 -4289_75958,270,4376_9519,Dun Laoghaire,105277205,1,4376_7778022_100140,4376_116 -4289_75960,265,4376_952,Dublin Airport,105812689,1,4376_7778022_103105,4376_3 -4289_75958,146,4376_9520,Dun Laoghaire,105247205,1,4376_7778022_100140,4376_116 -4289_75958,271,4376_9521,Dun Laoghaire,105237205,1,4376_7778022_100140,4376_116 -4289_75958,115,4376_9522,Dun Laoghaire,105217205,1,4376_7778022_100140,4376_116 -4289_75958,260,4376_9523,Dun Laoghaire,105311611,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9524,Dun Laoghaire,105321611,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9525,Dun Laoghaire,105431611,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9526,Dun Laoghaire,105541611,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9527,Dun Laoghaire,105651611,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9528,Dun Laoghaire,105811611,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9529,Dun Laoghaire,105821611,1,4376_7778022_100140,4376_116 -4289_75960,266,4376_953,Dublin Airport,105822689,1,4376_7778022_103105,4376_3 -4289_75958,267,4376_9530,Dun Laoghaire,106051611,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9531,Dun Laoghaire,106141611,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9532,Dun Laoghaire,106231611,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9533,Dun Laoghaire,105764461,1,4376_7778022_100060,4376_116 -4289_75958,270,4376_9534,Dun Laoghaire,105277251,1,4376_7778022_100100,4376_116 -4289_75958,146,4376_9535,Dun Laoghaire,105247251,1,4376_7778022_100100,4376_116 -4289_75958,271,4376_9536,Dun Laoghaire,105237251,1,4376_7778022_100100,4376_116 -4289_75958,115,4376_9537,Dun Laoghaire,105217251,1,4376_7778022_100100,4376_116 -4289_75958,260,4376_9538,Dun Laoghaire,105311719,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9539,Dun Laoghaire,105321719,1,4376_7778022_100140,4376_116 -4289_75960,267,4376_954,Dublin Airport,106052689,1,4376_7778022_103105,4376_3 -4289_75958,262,4376_9540,Dun Laoghaire,105431719,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9541,Dun Laoghaire,105541719,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9542,Dun Laoghaire,105651719,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9543,Dun Laoghaire,105811719,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9544,Dun Laoghaire,105821719,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9545,Dun Laoghaire,106051719,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9546,Dun Laoghaire,106141719,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9547,Dun Laoghaire,106231719,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9548,Dun Laoghaire,105764565,1,4376_7778022_100060,4376_116 -4289_75958,270,4376_9549,Dun Laoghaire,105277341,1,4376_7778022_100100,4376_116 -4289_75960,268,4376_955,Dublin Airport,106142689,1,4376_7778022_103105,4376_3 -4289_75958,146,4376_9550,Dun Laoghaire,105247341,1,4376_7778022_100100,4376_116 -4289_75958,271,4376_9551,Dun Laoghaire,105237341,1,4376_7778022_100100,4376_116 -4289_75958,115,4376_9552,Dun Laoghaire,105217341,1,4376_7778022_100100,4376_116 -4289_75958,260,4376_9553,Dun Laoghaire,105311831,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9554,Dun Laoghaire,105321831,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9555,Dun Laoghaire,105431831,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9556,Dun Laoghaire,105541831,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9557,Dun Laoghaire,105651831,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9558,Dun Laoghaire,105811831,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9559,Dun Laoghaire,105821831,1,4376_7778022_100140,4376_116 -4289_75960,269,4376_956,Dublin Airport,106232689,1,4376_7778022_103105,4376_3 -4289_75958,267,4376_9560,Dun Laoghaire,106051831,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9561,Dun Laoghaire,106141831,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9562,Dun Laoghaire,106231831,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9563,Dun Laoghaire,105764669,1,4376_7778022_100060,4376_116 -4289_75958,270,4376_9564,Dun Laoghaire,105277431,1,4376_7778022_100100,4376_116 -4289_75958,146,4376_9565,Dun Laoghaire,105247431,1,4376_7778022_100100,4376_116 -4289_75958,271,4376_9566,Dun Laoghaire,105237431,1,4376_7778022_100100,4376_116 -4289_75958,115,4376_9567,Dun Laoghaire,105217431,1,4376_7778022_100100,4376_116 -4289_75958,260,4376_9568,Dun Laoghaire,105311943,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9569,Dun Laoghaire,105321943,1,4376_7778022_100140,4376_116 -4289_75960,259,4376_957,Dublin Airport,105765433,1,4376_7778022_103503,4376_3 -4289_75958,262,4376_9570,Dun Laoghaire,105431943,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9571,Dun Laoghaire,105541943,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9572,Dun Laoghaire,105651943,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9573,Dun Laoghaire,105811943,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9574,Dun Laoghaire,105821943,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9575,Dun Laoghaire,106051943,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9576,Dun Laoghaire,106141943,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9577,Dun Laoghaire,106231943,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9578,Dun Laoghaire,105764771,1,4376_7778022_100060,4376_117 -4289_75958,270,4376_9579,Dun Laoghaire,105277523,1,4376_7778022_100100,4376_117 -4289_75960,270,4376_958,Dublin Airport,105278107,1,4376_7778022_103501,4376_4 -4289_75958,146,4376_9580,Dun Laoghaire,105247523,1,4376_7778022_100100,4376_117 -4289_75958,271,4376_9581,Dun Laoghaire,105237523,1,4376_7778022_100100,4376_117 -4289_75958,115,4376_9582,Dun Laoghaire,105217523,1,4376_7778022_100100,4376_117 -4289_75958,260,4376_9583,Dun Laoghaire,105312059,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9584,Dun Laoghaire,105322059,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9585,Dun Laoghaire,105432059,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9586,Dun Laoghaire,105542059,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9587,Dun Laoghaire,105652059,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9588,Dun Laoghaire,105812059,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9589,Dun Laoghaire,105822059,1,4376_7778022_100140,4376_116 -4289_75960,146,4376_959,Dublin Airport,105248107,1,4376_7778022_103501,4376_4 -4289_75958,267,4376_9590,Dun Laoghaire,106052059,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9591,Dun Laoghaire,106142059,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9592,Dun Laoghaire,106232059,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9593,Dun Laoghaire,105764873,1,4376_7778022_100060,4376_117 -4289_75958,270,4376_9594,Dun Laoghaire,105277613,1,4376_7778022_100100,4376_117 -4289_75958,146,4376_9595,Dun Laoghaire,105247613,1,4376_7778022_100100,4376_117 -4289_75958,271,4376_9596,Dun Laoghaire,105237613,1,4376_7778022_100100,4376_117 -4289_75958,115,4376_9597,Dun Laoghaire,105217613,1,4376_7778022_100100,4376_117 -4289_75958,260,4376_9598,Dun Laoghaire,105312193,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9599,Dun Laoghaire,105322193,1,4376_7778022_100140,4376_116 -4289_75960,115,4376_96,Sutton Station,105217104,0,4376_7778022_103105,4376_2 -4289_75960,271,4376_960,Dublin Airport,105238107,1,4376_7778022_103501,4376_4 -4289_75958,262,4376_9600,Dun Laoghaire,105432193,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9601,Dun Laoghaire,105542193,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9602,Dun Laoghaire,105652193,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9603,Dun Laoghaire,105812193,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9604,Dun Laoghaire,105822193,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9605,Dun Laoghaire,106052193,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9606,Dun Laoghaire,106142193,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9607,Dun Laoghaire,106232193,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9608,Dun Laoghaire,105764975,1,4376_7778022_100060,4376_117 -4289_75958,270,4376_9609,Dun Laoghaire,105277703,1,4376_7778022_100100,4376_117 -4289_75960,115,4376_961,Dublin Airport,105218107,1,4376_7778022_103501,4376_4 -4289_75958,146,4376_9610,Dun Laoghaire,105247703,1,4376_7778022_100100,4376_117 -4289_75958,271,4376_9611,Dun Laoghaire,105237703,1,4376_7778022_100100,4376_117 -4289_75958,115,4376_9612,Dun Laoghaire,105217703,1,4376_7778022_100100,4376_117 -4289_75958,260,4376_9613,Dun Laoghaire,105312331,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9614,Dun Laoghaire,105322331,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9615,Dun Laoghaire,105432331,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9616,Dun Laoghaire,105542331,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9617,Dun Laoghaire,105652331,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9618,Dun Laoghaire,105812331,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9619,Dun Laoghaire,105822331,1,4376_7778022_100140,4376_116 -4289_75960,260,4376_962,Dublin Airport,105312745,1,4376_7778022_103502,4376_3 -4289_75958,267,4376_9620,Dun Laoghaire,106052331,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9621,Dun Laoghaire,106142331,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9622,Dun Laoghaire,106232331,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9623,Dun Laoghaire,105765077,1,4376_7778022_100060,4376_117 -4289_75958,270,4376_9624,Dun Laoghaire,105277793,1,4376_7778022_100100,4376_117 -4289_75958,146,4376_9625,Dun Laoghaire,105247793,1,4376_7778022_100100,4376_117 -4289_75958,271,4376_9626,Dun Laoghaire,105237793,1,4376_7778022_100100,4376_117 -4289_75958,115,4376_9627,Dun Laoghaire,105217793,1,4376_7778022_100100,4376_117 -4289_75958,260,4376_9628,Dun Laoghaire,105312449,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9629,Dun Laoghaire,105322449,1,4376_7778022_100140,4376_116 -4289_75960,261,4376_963,Dublin Airport,105322745,1,4376_7778022_103502,4376_3 -4289_75958,262,4376_9630,Dun Laoghaire,105432449,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9631,Dun Laoghaire,105542449,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9632,Dun Laoghaire,105652449,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9633,Dun Laoghaire,105812449,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9634,Dun Laoghaire,105822449,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9635,Dun Laoghaire,106052449,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9636,Dun Laoghaire,106142449,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9637,Dun Laoghaire,106232449,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9638,Dun Laoghaire,105765191,1,4376_7778022_100060,4376_116 -4289_75958,270,4376_9639,Dun Laoghaire,105277889,1,4376_7778022_100100,4376_116 -4289_75960,262,4376_964,Dublin Airport,105432745,1,4376_7778022_103502,4376_3 -4289_75958,146,4376_9640,Dun Laoghaire,105247889,1,4376_7778022_100100,4376_116 -4289_75958,271,4376_9641,Dun Laoghaire,105237889,1,4376_7778022_100100,4376_116 -4289_75958,115,4376_9642,Dun Laoghaire,105217889,1,4376_7778022_100100,4376_116 -4289_75958,270,4376_9643,Dun Laoghaire,105277963,1,4376_7778022_100100,4376_116 -4289_75958,146,4376_9644,Dun Laoghaire,105247963,1,4376_7778022_100100,4376_116 -4289_75958,271,4376_9645,Dun Laoghaire,105237963,1,4376_7778022_100100,4376_116 -4289_75958,115,4376_9646,Dun Laoghaire,105217963,1,4376_7778022_100100,4376_116 -4289_75958,260,4376_9647,Dun Laoghaire,105312561,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9648,Dun Laoghaire,105322561,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9649,Dun Laoghaire,105432561,1,4376_7778022_100140,4376_116 -4289_75960,263,4376_965,Dublin Airport,105542745,1,4376_7778022_103502,4376_3 -4289_75958,263,4376_9650,Dun Laoghaire,105542561,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9651,Dun Laoghaire,105652561,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9652,Dun Laoghaire,105812561,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9653,Dun Laoghaire,105822561,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9654,Dun Laoghaire,106052561,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9655,Dun Laoghaire,106142561,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9656,Dun Laoghaire,106232561,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9657,Dun Laoghaire,105765289,1,4376_7778022_100060,4376_116 -4289_75958,270,4376_9658,Dun Laoghaire,105278003,1,4376_7778022_100150,4376_116 -4289_75958,146,4376_9659,Dun Laoghaire,105248003,1,4376_7778022_100150,4376_116 -4289_75960,264,4376_966,Dublin Airport,105652745,1,4376_7778022_103502,4376_3 -4289_75958,271,4376_9660,Dun Laoghaire,105238003,1,4376_7778022_100150,4376_116 -4289_75958,115,4376_9661,Dun Laoghaire,105218003,1,4376_7778022_100150,4376_116 -4289_75958,260,4376_9662,Dun Laoghaire,105312677,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9663,Dun Laoghaire,105322677,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9664,Dun Laoghaire,105432677,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9665,Dun Laoghaire,105542677,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9666,Dun Laoghaire,105652677,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9667,Dun Laoghaire,105812677,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9668,Dun Laoghaire,105822677,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9669,Dun Laoghaire,106052677,1,4376_7778022_100140,4376_116 -4289_75960,265,4376_967,Dublin Airport,105812745,1,4376_7778022_103502,4376_3 -4289_75958,268,4376_9670,Dun Laoghaire,106142677,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9671,Dun Laoghaire,106232677,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9672,Dun Laoghaire,105765379,1,4376_7778022_100060,4376_116 -4289_75958,270,4376_9673,Dun Laoghaire,105278083,1,4376_7778022_100140,4376_116 -4289_75958,146,4376_9674,Dun Laoghaire,105248083,1,4376_7778022_100140,4376_116 -4289_75958,271,4376_9675,Dun Laoghaire,105238083,1,4376_7778022_100140,4376_116 -4289_75958,115,4376_9676,Dun Laoghaire,105218083,1,4376_7778022_100140,4376_116 -4289_75958,260,4376_9677,Dun Laoghaire,105312771,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9678,Dun Laoghaire,105322771,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9679,Dun Laoghaire,105432771,1,4376_7778022_100140,4376_116 -4289_75960,266,4376_968,Dublin Airport,105822745,1,4376_7778022_103502,4376_3 -4289_75958,263,4376_9680,Dun Laoghaire,105542771,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9681,Dun Laoghaire,105652771,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9682,Dun Laoghaire,105812771,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9683,Dun Laoghaire,105822771,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9684,Dun Laoghaire,106052771,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9685,Dun Laoghaire,106142771,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9686,Dun Laoghaire,106232771,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9687,Dun Laoghaire,105765465,1,4376_7778022_100120,4376_116 -4289_75958,270,4376_9688,Dun Laoghaire,105278165,1,4376_7778022_100150,4376_116 -4289_75958,146,4376_9689,Dun Laoghaire,105248165,1,4376_7778022_100150,4376_116 -4289_75960,267,4376_969,Dublin Airport,106052745,1,4376_7778022_103502,4376_3 -4289_75958,271,4376_9690,Dun Laoghaire,105238165,1,4376_7778022_100150,4376_116 -4289_75958,115,4376_9691,Dun Laoghaire,105218165,1,4376_7778022_100150,4376_116 -4289_75958,260,4376_9692,Dun Laoghaire,105312865,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9693,Dun Laoghaire,105322865,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9694,Dun Laoghaire,105432865,1,4376_7778022_100140,4376_116 -4289_75958,263,4376_9695,Dun Laoghaire,105542865,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9696,Dun Laoghaire,105652865,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9697,Dun Laoghaire,105812865,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9698,Dun Laoghaire,105822865,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9699,Dun Laoghaire,106052865,1,4376_7778022_100140,4376_116 -4289_75960,260,4376_97,Sutton Station,105311490,0,4376_7778022_103108,4376_1 -4289_75960,268,4376_970,Dublin Airport,106142745,1,4376_7778022_103502,4376_3 -4289_75958,268,4376_9700,Dun Laoghaire,106142865,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9701,Dun Laoghaire,106232865,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9702,Dun Laoghaire,105765549,1,4376_7778022_100120,4376_116 -4289_75958,270,4376_9703,Dun Laoghaire,105278241,1,4376_7778022_100140,4376_116 -4289_75958,146,4376_9704,Dun Laoghaire,105248241,1,4376_7778022_100140,4376_116 -4289_75958,271,4376_9705,Dun Laoghaire,105238241,1,4376_7778022_100140,4376_116 -4289_75958,115,4376_9706,Dun Laoghaire,105218241,1,4376_7778022_100140,4376_116 -4289_75958,260,4376_9707,Dun Laoghaire,105312959,1,4376_7778022_100140,4376_116 -4289_75958,261,4376_9708,Dun Laoghaire,105322959,1,4376_7778022_100140,4376_116 -4289_75958,262,4376_9709,Dun Laoghaire,105432959,1,4376_7778022_100140,4376_116 -4289_75960,269,4376_971,Dublin Airport,106232745,1,4376_7778022_103502,4376_3 -4289_75958,263,4376_9710,Dun Laoghaire,105542959,1,4376_7778022_100140,4376_116 -4289_75958,264,4376_9711,Dun Laoghaire,105652959,1,4376_7778022_100140,4376_116 -4289_75958,265,4376_9712,Dun Laoghaire,105812959,1,4376_7778022_100140,4376_116 -4289_75958,266,4376_9713,Dun Laoghaire,105822959,1,4376_7778022_100140,4376_116 -4289_75958,267,4376_9714,Dun Laoghaire,106052959,1,4376_7778022_100140,4376_116 -4289_75958,268,4376_9715,Dun Laoghaire,106142959,1,4376_7778022_100140,4376_116 -4289_75958,269,4376_9716,Dun Laoghaire,106232959,1,4376_7778022_100140,4376_116 -4289_75958,259,4376_9717,Dun Laoghaire,105765633,1,4376_7778022_100120,4376_116 -4289_75958,270,4376_9718,Dun Laoghaire,105278301,1,4376_7778022_100150,4376_116 -4289_75958,146,4376_9719,Dun Laoghaire,105248301,1,4376_7778022_100150,4376_116 -4289_75960,259,4376_972,Dublin Airport,105765471,1,4376_7778022_103102,4376_3 -4289_75958,271,4376_9720,Dun Laoghaire,105238301,1,4376_7778022_100150,4376_116 -4289_75958,115,4376_9721,Dun Laoghaire,105218301,1,4376_7778022_100150,4376_116 -4289_75959,260,4376_9722,Dun Laoghaire,105311046,0,4376_7778022_100100,4376_118 -4289_75959,261,4376_9723,Dun Laoghaire,105321046,0,4376_7778022_100100,4376_118 -4289_75959,262,4376_9724,Dun Laoghaire,105431046,0,4376_7778022_100100,4376_118 -4289_75959,263,4376_9725,Dun Laoghaire,105541046,0,4376_7778022_100100,4376_118 -4289_75959,264,4376_9726,Dun Laoghaire,105651046,0,4376_7778022_100100,4376_118 -4289_75959,265,4376_9727,Dun Laoghaire,105811046,0,4376_7778022_100100,4376_118 -4289_75959,266,4376_9728,Dun Laoghaire,105821046,0,4376_7778022_100100,4376_118 -4289_75959,267,4376_9729,Dun Laoghaire,106051046,0,4376_7778022_100100,4376_118 -4289_75960,270,4376_973,Dublin Airport,105278145,1,4376_7778022_103503,4376_4 -4289_75959,268,4376_9730,Dun Laoghaire,106141046,0,4376_7778022_100100,4376_118 -4289_75959,269,4376_9731,Dun Laoghaire,106231046,0,4376_7778022_100100,4376_118 -4289_75959,259,4376_9732,Dun Laoghaire,105764046,0,4376_7778022_100030,4376_118 -4289_75959,260,4376_9733,Dun Laoghaire,105311094,0,4376_7778022_100040,4376_118 -4289_75959,261,4376_9734,Dun Laoghaire,105321094,0,4376_7778022_100040,4376_118 -4289_75959,262,4376_9735,Dun Laoghaire,105431094,0,4376_7778022_100040,4376_118 -4289_75959,263,4376_9736,Dun Laoghaire,105541094,0,4376_7778022_100040,4376_118 -4289_75959,264,4376_9737,Dun Laoghaire,105651094,0,4376_7778022_100040,4376_118 -4289_75959,265,4376_9738,Dun Laoghaire,105811094,0,4376_7778022_100040,4376_118 -4289_75959,266,4376_9739,Dun Laoghaire,105821094,0,4376_7778022_100040,4376_118 -4289_75960,146,4376_974,Dublin Airport,105248145,1,4376_7778022_103503,4376_4 -4289_75959,267,4376_9740,Dun Laoghaire,106051094,0,4376_7778022_100040,4376_118 -4289_75959,268,4376_9741,Dun Laoghaire,106141094,0,4376_7778022_100040,4376_118 -4289_75959,269,4376_9742,Dun Laoghaire,106231094,0,4376_7778022_100040,4376_118 -4289_75959,259,4376_9743,Dun Laoghaire,105764088,0,4376_7778022_100070,4376_118 -4289_75959,260,4376_9744,Dun Laoghaire,105311162,0,4376_7778022_100130,4376_118 -4289_75959,261,4376_9745,Dun Laoghaire,105321162,0,4376_7778022_100130,4376_118 -4289_75959,262,4376_9746,Dun Laoghaire,105431162,0,4376_7778022_100130,4376_118 -4289_75959,263,4376_9747,Dun Laoghaire,105541162,0,4376_7778022_100130,4376_118 -4289_75959,264,4376_9748,Dun Laoghaire,105651162,0,4376_7778022_100130,4376_118 -4289_75959,265,4376_9749,Dun Laoghaire,105811162,0,4376_7778022_100130,4376_118 -4289_75960,271,4376_975,Dublin Airport,105238145,1,4376_7778022_103503,4376_4 -4289_75959,266,4376_9750,Dun Laoghaire,105821162,0,4376_7778022_100130,4376_118 -4289_75959,267,4376_9751,Dun Laoghaire,106051162,0,4376_7778022_100130,4376_118 -4289_75959,268,4376_9752,Dun Laoghaire,106141162,0,4376_7778022_100130,4376_118 -4289_75959,269,4376_9753,Dun Laoghaire,106231162,0,4376_7778022_100130,4376_118 -4289_75959,259,4376_9754,Dun Laoghaire,105764130,0,4376_7778022_100080,4376_118 -4289_75959,260,4376_9755,Dun Laoghaire,105311214,0,4376_7778022_100110,4376_118 -4289_75959,261,4376_9756,Dun Laoghaire,105321214,0,4376_7778022_100110,4376_118 -4289_75959,262,4376_9757,Dun Laoghaire,105431214,0,4376_7778022_100110,4376_118 -4289_75959,263,4376_9758,Dun Laoghaire,105541214,0,4376_7778022_100110,4376_118 -4289_75959,264,4376_9759,Dun Laoghaire,105651214,0,4376_7778022_100110,4376_118 -4289_75960,115,4376_976,Dublin Airport,105218145,1,4376_7778022_103503,4376_4 -4289_75959,265,4376_9760,Dun Laoghaire,105811214,0,4376_7778022_100110,4376_118 -4289_75959,266,4376_9761,Dun Laoghaire,105821214,0,4376_7778022_100110,4376_118 -4289_75959,267,4376_9762,Dun Laoghaire,106051214,0,4376_7778022_100110,4376_118 -4289_75959,268,4376_9763,Dun Laoghaire,106141214,0,4376_7778022_100110,4376_118 -4289_75959,269,4376_9764,Dun Laoghaire,106231214,0,4376_7778022_100110,4376_118 -4289_75959,260,4376_9765,Dun Laoghaire,105311304,0,4376_7778022_100100,4376_118 -4289_75959,261,4376_9766,Dun Laoghaire,105321304,0,4376_7778022_100100,4376_118 -4289_75959,262,4376_9767,Dun Laoghaire,105431304,0,4376_7778022_100100,4376_118 -4289_75959,263,4376_9768,Dun Laoghaire,105541304,0,4376_7778022_100100,4376_118 -4289_75959,264,4376_9769,Dun Laoghaire,105651304,0,4376_7778022_100100,4376_118 -4289_75960,260,4376_977,Dublin Airport,105312787,1,4376_7778022_103104,4376_3 -4289_75959,265,4376_9770,Dun Laoghaire,105811304,0,4376_7778022_100100,4376_118 -4289_75959,266,4376_9771,Dun Laoghaire,105821304,0,4376_7778022_100100,4376_118 -4289_75959,267,4376_9772,Dun Laoghaire,106051304,0,4376_7778022_100100,4376_118 -4289_75959,268,4376_9773,Dun Laoghaire,106141304,0,4376_7778022_100100,4376_118 -4289_75959,269,4376_9774,Dun Laoghaire,106231304,0,4376_7778022_100100,4376_118 -4289_75959,259,4376_9775,Dun Laoghaire,105764174,0,4376_7778022_100030,4376_118 -4289_75959,260,4376_9776,Dun Laoghaire,105311372,0,4376_7778022_100120,4376_119 -4289_75959,261,4376_9777,Dun Laoghaire,105321372,0,4376_7778022_100120,4376_119 -4289_75959,262,4376_9778,Dun Laoghaire,105431372,0,4376_7778022_100120,4376_119 -4289_75959,263,4376_9779,Dun Laoghaire,105541372,0,4376_7778022_100120,4376_119 -4289_75960,261,4376_978,Dublin Airport,105322787,1,4376_7778022_103104,4376_3 -4289_75959,264,4376_9780,Dun Laoghaire,105651372,0,4376_7778022_100120,4376_119 -4289_75959,265,4376_9781,Dun Laoghaire,105811372,0,4376_7778022_100120,4376_119 -4289_75959,266,4376_9782,Dun Laoghaire,105821372,0,4376_7778022_100120,4376_119 -4289_75959,267,4376_9783,Dun Laoghaire,106051372,0,4376_7778022_100120,4376_119 -4289_75959,268,4376_9784,Dun Laoghaire,106141372,0,4376_7778022_100120,4376_119 -4289_75959,269,4376_9785,Dun Laoghaire,106231372,0,4376_7778022_100120,4376_119 -4289_75959,259,4376_9786,Dun Laoghaire,105764216,0,4376_7778022_100070,4376_118 -4289_75959,270,4376_9787,Dun Laoghaire,105277042,0,4376_7778022_100030,4376_118 -4289_75959,146,4376_9788,Dun Laoghaire,105247042,0,4376_7778022_100030,4376_118 -4289_75959,271,4376_9789,Dun Laoghaire,105237042,0,4376_7778022_100030,4376_118 -4289_75960,262,4376_979,Dublin Airport,105432787,1,4376_7778022_103104,4376_3 -4289_75959,115,4376_9790,Dun Laoghaire,105217042,0,4376_7778022_100030,4376_118 -4289_75959,270,4376_9791,Dun Laoghaire,105277080,0,4376_7778022_100060,4376_118 -4289_75959,146,4376_9792,Dun Laoghaire,105247080,0,4376_7778022_100060,4376_118 -4289_75959,271,4376_9793,Dun Laoghaire,105237080,0,4376_7778022_100060,4376_118 -4289_75959,115,4376_9794,Dun Laoghaire,105217080,0,4376_7778022_100060,4376_118 -4289_75959,259,4376_9795,Dun Laoghaire,105764266,0,4376_7778022_100080,4376_118 -4289_75959,260,4376_9796,Dun Laoghaire,105311446,0,4376_7778022_100130,4376_119 -4289_75959,261,4376_9797,Dun Laoghaire,105321446,0,4376_7778022_100130,4376_119 -4289_75959,262,4376_9798,Dun Laoghaire,105431446,0,4376_7778022_100130,4376_119 -4289_75959,263,4376_9799,Dun Laoghaire,105541446,0,4376_7778022_100130,4376_119 -4289_75960,261,4376_98,Sutton Station,105321490,0,4376_7778022_103108,4376_1 -4289_75960,263,4376_980,Dublin Airport,105542787,1,4376_7778022_103104,4376_3 -4289_75959,264,4376_9800,Dun Laoghaire,105651446,0,4376_7778022_100130,4376_119 -4289_75959,265,4376_9801,Dun Laoghaire,105811446,0,4376_7778022_100130,4376_119 -4289_75959,266,4376_9802,Dun Laoghaire,105821446,0,4376_7778022_100130,4376_119 -4289_75959,267,4376_9803,Dun Laoghaire,106051446,0,4376_7778022_100130,4376_119 -4289_75959,268,4376_9804,Dun Laoghaire,106141446,0,4376_7778022_100130,4376_119 -4289_75959,269,4376_9805,Dun Laoghaire,106231446,0,4376_7778022_100130,4376_119 -4289_75959,270,4376_9806,Dun Laoghaire,105277110,0,4376_7778022_100070,4376_118 -4289_75959,146,4376_9807,Dun Laoghaire,105247110,0,4376_7778022_100070,4376_118 -4289_75959,271,4376_9808,Dun Laoghaire,105237110,0,4376_7778022_100070,4376_118 -4289_75959,115,4376_9809,Dun Laoghaire,105217110,0,4376_7778022_100070,4376_118 -4289_75960,264,4376_981,Dublin Airport,105652787,1,4376_7778022_103104,4376_3 -4289_75959,260,4376_9810,Dun Laoghaire,105311500,0,4376_7778022_100110,4376_119 -4289_75959,261,4376_9811,Dun Laoghaire,105321500,0,4376_7778022_100110,4376_119 -4289_75959,262,4376_9812,Dun Laoghaire,105431500,0,4376_7778022_100110,4376_119 -4289_75959,263,4376_9813,Dun Laoghaire,105541500,0,4376_7778022_100110,4376_119 -4289_75959,264,4376_9814,Dun Laoghaire,105651500,0,4376_7778022_100110,4376_119 -4289_75959,265,4376_9815,Dun Laoghaire,105811500,0,4376_7778022_100110,4376_119 -4289_75959,266,4376_9816,Dun Laoghaire,105821500,0,4376_7778022_100110,4376_119 -4289_75959,267,4376_9817,Dun Laoghaire,106051500,0,4376_7778022_100110,4376_119 -4289_75959,268,4376_9818,Dun Laoghaire,106141500,0,4376_7778022_100110,4376_119 -4289_75959,269,4376_9819,Dun Laoghaire,106231500,0,4376_7778022_100110,4376_119 -4289_75960,265,4376_982,Dublin Airport,105812787,1,4376_7778022_103104,4376_3 -4289_75959,259,4376_9820,Dun Laoghaire,105764336,0,4376_7778022_100030,4376_118 -4289_75959,270,4376_9821,Dun Laoghaire,105277152,0,4376_7778022_100030,4376_119 -4289_75959,146,4376_9822,Dun Laoghaire,105247152,0,4376_7778022_100030,4376_119 -4289_75959,271,4376_9823,Dun Laoghaire,105237152,0,4376_7778022_100030,4376_119 -4289_75959,115,4376_9824,Dun Laoghaire,105217152,0,4376_7778022_100030,4376_119 -4289_75959,260,4376_9825,Dun Laoghaire,105311550,0,4376_7778022_100100,4376_119 -4289_75959,261,4376_9826,Dun Laoghaire,105321550,0,4376_7778022_100100,4376_119 -4289_75959,262,4376_9827,Dun Laoghaire,105431550,0,4376_7778022_100100,4376_119 -4289_75959,263,4376_9828,Dun Laoghaire,105541550,0,4376_7778022_100100,4376_119 -4289_75959,264,4376_9829,Dun Laoghaire,105651550,0,4376_7778022_100100,4376_119 -4289_75960,266,4376_983,Dublin Airport,105822787,1,4376_7778022_103104,4376_3 -4289_75959,265,4376_9830,Dun Laoghaire,105811550,0,4376_7778022_100100,4376_119 -4289_75959,266,4376_9831,Dun Laoghaire,105821550,0,4376_7778022_100100,4376_119 -4289_75959,267,4376_9832,Dun Laoghaire,106051550,0,4376_7778022_100100,4376_119 -4289_75959,268,4376_9833,Dun Laoghaire,106141550,0,4376_7778022_100100,4376_119 -4289_75959,269,4376_9834,Dun Laoghaire,106231550,0,4376_7778022_100100,4376_119 -4289_75959,259,4376_9835,Dun Laoghaire,105764376,0,4376_7778022_100070,4376_119 -4289_75959,270,4376_9836,Dun Laoghaire,105277200,0,4376_7778022_100060,4376_119 -4289_75959,146,4376_9837,Dun Laoghaire,105247200,0,4376_7778022_100060,4376_119 -4289_75959,271,4376_9838,Dun Laoghaire,105237200,0,4376_7778022_100060,4376_119 -4289_75959,115,4376_9839,Dun Laoghaire,105217200,0,4376_7778022_100060,4376_119 -4289_75960,267,4376_984,Dublin Airport,106052787,1,4376_7778022_103104,4376_3 -4289_75959,259,4376_9840,Dun Laoghaire,105764430,0,4376_7778022_100110,4376_119 -4289_75959,260,4376_9841,Dun Laoghaire,105311658,0,4376_7778022_100130,4376_119 -4289_75959,261,4376_9842,Dun Laoghaire,105321658,0,4376_7778022_100130,4376_119 -4289_75959,262,4376_9843,Dun Laoghaire,105431658,0,4376_7778022_100130,4376_119 -4289_75959,263,4376_9844,Dun Laoghaire,105541658,0,4376_7778022_100130,4376_119 -4289_75959,264,4376_9845,Dun Laoghaire,105651658,0,4376_7778022_100130,4376_119 -4289_75959,265,4376_9846,Dun Laoghaire,105811658,0,4376_7778022_100130,4376_119 -4289_75959,266,4376_9847,Dun Laoghaire,105821658,0,4376_7778022_100130,4376_119 -4289_75959,267,4376_9848,Dun Laoghaire,106051658,0,4376_7778022_100130,4376_119 -4289_75959,268,4376_9849,Dun Laoghaire,106141658,0,4376_7778022_100130,4376_119 -4289_75960,268,4376_985,Dublin Airport,106142787,1,4376_7778022_103104,4376_3 -4289_75959,269,4376_9850,Dun Laoghaire,106231658,0,4376_7778022_100130,4376_119 -4289_75959,259,4376_9851,Dun Laoghaire,105764478,0,4376_7778022_100080,4376_119 -4289_75959,270,4376_9852,Dun Laoghaire,105277252,0,4376_7778022_100070,4376_119 -4289_75959,146,4376_9853,Dun Laoghaire,105247252,0,4376_7778022_100070,4376_119 -4289_75959,271,4376_9854,Dun Laoghaire,105237252,0,4376_7778022_100070,4376_119 -4289_75959,115,4376_9855,Dun Laoghaire,105217252,0,4376_7778022_100070,4376_119 -4289_75959,260,4376_9856,Dun Laoghaire,105311714,0,4376_7778022_100110,4376_119 -4289_75959,261,4376_9857,Dun Laoghaire,105321714,0,4376_7778022_100110,4376_119 -4289_75959,262,4376_9858,Dun Laoghaire,105431714,0,4376_7778022_100110,4376_119 -4289_75959,263,4376_9859,Dun Laoghaire,105541714,0,4376_7778022_100110,4376_119 -4289_75960,269,4376_986,Dublin Airport,106232787,1,4376_7778022_103104,4376_3 -4289_75959,264,4376_9860,Dun Laoghaire,105651714,0,4376_7778022_100110,4376_119 -4289_75959,265,4376_9861,Dun Laoghaire,105811714,0,4376_7778022_100110,4376_119 -4289_75959,266,4376_9862,Dun Laoghaire,105821714,0,4376_7778022_100110,4376_119 -4289_75959,267,4376_9863,Dun Laoghaire,106051714,0,4376_7778022_100110,4376_119 -4289_75959,268,4376_9864,Dun Laoghaire,106141714,0,4376_7778022_100110,4376_119 -4289_75959,269,4376_9865,Dun Laoghaire,106231714,0,4376_7778022_100110,4376_119 -4289_75959,259,4376_9866,Dun Laoghaire,105764530,0,4376_7778022_100030,4376_119 -4289_75959,270,4376_9867,Dun Laoghaire,105277302,0,4376_7778022_100080,4376_119 -4289_75959,146,4376_9868,Dun Laoghaire,105247302,0,4376_7778022_100080,4376_119 -4289_75959,271,4376_9869,Dun Laoghaire,105237302,0,4376_7778022_100080,4376_119 -4289_75960,259,4376_987,Dublin Airport,105765521,1,4376_7778022_103501,4376_3 -4289_75959,115,4376_9870,Dun Laoghaire,105217302,0,4376_7778022_100080,4376_119 -4289_75959,260,4376_9871,Dun Laoghaire,105311766,0,4376_7778022_100100,4376_119 -4289_75959,261,4376_9872,Dun Laoghaire,105321766,0,4376_7778022_100100,4376_119 -4289_75959,262,4376_9873,Dun Laoghaire,105431766,0,4376_7778022_100100,4376_119 -4289_75959,263,4376_9874,Dun Laoghaire,105541766,0,4376_7778022_100100,4376_119 -4289_75959,264,4376_9875,Dun Laoghaire,105651766,0,4376_7778022_100100,4376_119 -4289_75959,265,4376_9876,Dun Laoghaire,105811766,0,4376_7778022_100100,4376_119 -4289_75959,266,4376_9877,Dun Laoghaire,105821766,0,4376_7778022_100100,4376_119 -4289_75959,267,4376_9878,Dun Laoghaire,106051766,0,4376_7778022_100100,4376_119 -4289_75959,268,4376_9879,Dun Laoghaire,106141766,0,4376_7778022_100100,4376_119 -4289_75960,270,4376_988,Dublin Airport,105278187,1,4376_7778022_103106,4376_4 -4289_75959,269,4376_9880,Dun Laoghaire,106231766,0,4376_7778022_100100,4376_119 -4289_75959,259,4376_9881,Dun Laoghaire,105764580,0,4376_7778022_100070,4376_120 -4289_75959,270,4376_9882,Dun Laoghaire,105277342,0,4376_7778022_100040,4376_120 -4289_75959,146,4376_9883,Dun Laoghaire,105247342,0,4376_7778022_100040,4376_120 -4289_75959,271,4376_9884,Dun Laoghaire,105237342,0,4376_7778022_100040,4376_120 -4289_75959,115,4376_9885,Dun Laoghaire,105217342,0,4376_7778022_100040,4376_120 -4289_75959,260,4376_9886,Dun Laoghaire,105311820,0,4376_7778022_100120,4376_119 -4289_75959,261,4376_9887,Dun Laoghaire,105321820,0,4376_7778022_100120,4376_119 -4289_75959,262,4376_9888,Dun Laoghaire,105431820,0,4376_7778022_100120,4376_119 -4289_75959,263,4376_9889,Dun Laoghaire,105541820,0,4376_7778022_100120,4376_119 -4289_75960,146,4376_989,Dublin Airport,105248187,1,4376_7778022_103106,4376_4 -4289_75959,264,4376_9890,Dun Laoghaire,105651820,0,4376_7778022_100120,4376_119 -4289_75959,265,4376_9891,Dun Laoghaire,105811820,0,4376_7778022_100120,4376_119 -4289_75959,266,4376_9892,Dun Laoghaire,105821820,0,4376_7778022_100120,4376_119 -4289_75959,267,4376_9893,Dun Laoghaire,106051820,0,4376_7778022_100120,4376_119 -4289_75959,268,4376_9894,Dun Laoghaire,106141820,0,4376_7778022_100120,4376_119 -4289_75959,269,4376_9895,Dun Laoghaire,106231820,0,4376_7778022_100120,4376_119 -4289_75959,259,4376_9896,Dun Laoghaire,105764632,0,4376_7778022_100110,4376_120 -4289_75959,270,4376_9897,Dun Laoghaire,105277390,0,4376_7778022_100020,4376_120 -4289_75959,146,4376_9898,Dun Laoghaire,105247390,0,4376_7778022_100020,4376_120 -4289_75959,271,4376_9899,Dun Laoghaire,105237390,0,4376_7778022_100020,4376_120 -4289_75960,262,4376_99,Sutton Station,105431490,0,4376_7778022_103108,4376_1 -4289_75960,271,4376_990,Dublin Airport,105238187,1,4376_7778022_103106,4376_4 -4289_75959,115,4376_9900,Dun Laoghaire,105217390,0,4376_7778022_100020,4376_120 -4289_75959,260,4376_9901,Dun Laoghaire,105311876,0,4376_7778022_100130,4376_119 -4289_75959,261,4376_9902,Dun Laoghaire,105321876,0,4376_7778022_100130,4376_119 -4289_75959,262,4376_9903,Dun Laoghaire,105431876,0,4376_7778022_100130,4376_119 -4289_75959,263,4376_9904,Dun Laoghaire,105541876,0,4376_7778022_100130,4376_119 -4289_75959,264,4376_9905,Dun Laoghaire,105651876,0,4376_7778022_100130,4376_119 -4289_75959,265,4376_9906,Dun Laoghaire,105811876,0,4376_7778022_100130,4376_119 -4289_75959,266,4376_9907,Dun Laoghaire,105821876,0,4376_7778022_100130,4376_119 -4289_75959,267,4376_9908,Dun Laoghaire,106051876,0,4376_7778022_100130,4376_119 -4289_75959,268,4376_9909,Dun Laoghaire,106141876,0,4376_7778022_100130,4376_119 -4289_75960,115,4376_991,Dublin Airport,105218187,1,4376_7778022_103106,4376_4 -4289_75959,269,4376_9910,Dun Laoghaire,106231876,0,4376_7778022_100130,4376_119 -4289_75959,259,4376_9911,Dun Laoghaire,105764682,0,4376_7778022_100080,4376_120 -4289_75959,270,4376_9912,Dun Laoghaire,105277434,0,4376_7778022_100070,4376_120 -4289_75959,146,4376_9913,Dun Laoghaire,105247434,0,4376_7778022_100070,4376_120 -4289_75959,271,4376_9914,Dun Laoghaire,105237434,0,4376_7778022_100070,4376_120 -4289_75959,115,4376_9915,Dun Laoghaire,105217434,0,4376_7778022_100070,4376_120 -4289_75959,260,4376_9916,Dun Laoghaire,105311928,0,4376_7778022_100110,4376_119 -4289_75959,261,4376_9917,Dun Laoghaire,105321928,0,4376_7778022_100110,4376_119 -4289_75959,262,4376_9918,Dun Laoghaire,105431928,0,4376_7778022_100110,4376_119 -4289_75959,263,4376_9919,Dun Laoghaire,105541928,0,4376_7778022_100110,4376_119 -4289_75960,260,4376_992,Dublin Airport,105312841,1,4376_7778022_103503,4376_3 -4289_75959,264,4376_9920,Dun Laoghaire,105651928,0,4376_7778022_100110,4376_119 -4289_75959,265,4376_9921,Dun Laoghaire,105811928,0,4376_7778022_100110,4376_119 -4289_75959,266,4376_9922,Dun Laoghaire,105821928,0,4376_7778022_100110,4376_119 -4289_75959,267,4376_9923,Dun Laoghaire,106051928,0,4376_7778022_100110,4376_119 -4289_75959,268,4376_9924,Dun Laoghaire,106141928,0,4376_7778022_100110,4376_119 -4289_75959,269,4376_9925,Dun Laoghaire,106231928,0,4376_7778022_100110,4376_119 -4289_75959,259,4376_9926,Dun Laoghaire,105764738,0,4376_7778022_100030,4376_120 -4289_75959,270,4376_9927,Dun Laoghaire,105277476,0,4376_7778022_100010,4376_120 -4289_75959,146,4376_9928,Dun Laoghaire,105247476,0,4376_7778022_100010,4376_120 -4289_75959,271,4376_9929,Dun Laoghaire,105237476,0,4376_7778022_100010,4376_120 -4289_75960,261,4376_993,Dublin Airport,105322841,1,4376_7778022_103503,4376_3 -4289_75959,115,4376_9930,Dun Laoghaire,105217476,0,4376_7778022_100010,4376_120 -4289_75959,260,4376_9931,Dun Laoghaire,105311982,0,4376_7778022_100100,4376_119 -4289_75959,261,4376_9932,Dun Laoghaire,105321982,0,4376_7778022_100100,4376_119 -4289_75959,262,4376_9933,Dun Laoghaire,105431982,0,4376_7778022_100100,4376_119 -4289_75959,263,4376_9934,Dun Laoghaire,105541982,0,4376_7778022_100100,4376_119 -4289_75959,264,4376_9935,Dun Laoghaire,105651982,0,4376_7778022_100100,4376_119 -4289_75959,265,4376_9936,Dun Laoghaire,105811982,0,4376_7778022_100100,4376_119 -4289_75959,266,4376_9937,Dun Laoghaire,105821982,0,4376_7778022_100100,4376_119 -4289_75959,267,4376_9938,Dun Laoghaire,106051982,0,4376_7778022_100100,4376_119 -4289_75959,268,4376_9939,Dun Laoghaire,106141982,0,4376_7778022_100100,4376_119 -4289_75960,262,4376_994,Dublin Airport,105432841,1,4376_7778022_103503,4376_3 -4289_75959,269,4376_9940,Dun Laoghaire,106231982,0,4376_7778022_100100,4376_119 -4289_75959,259,4376_9941,Dun Laoghaire,105764786,0,4376_7778022_100070,4376_120 -4289_75959,270,4376_9942,Dun Laoghaire,105277522,0,4376_7778022_100040,4376_120 -4289_75959,146,4376_9943,Dun Laoghaire,105247522,0,4376_7778022_100040,4376_120 -4289_75959,271,4376_9944,Dun Laoghaire,105237522,0,4376_7778022_100040,4376_120 -4289_75959,115,4376_9945,Dun Laoghaire,105217522,0,4376_7778022_100040,4376_120 -4289_75959,260,4376_9946,Dun Laoghaire,105312042,0,4376_7778022_100120,4376_119 -4289_75959,261,4376_9947,Dun Laoghaire,105322042,0,4376_7778022_100120,4376_119 -4289_75959,262,4376_9948,Dun Laoghaire,105432042,0,4376_7778022_100120,4376_119 -4289_75959,263,4376_9949,Dun Laoghaire,105542042,0,4376_7778022_100120,4376_119 -4289_75960,263,4376_995,Dublin Airport,105542841,1,4376_7778022_103503,4376_3 -4289_75959,264,4376_9950,Dun Laoghaire,105652042,0,4376_7778022_100120,4376_119 -4289_75959,265,4376_9951,Dun Laoghaire,105812042,0,4376_7778022_100120,4376_119 -4289_75959,266,4376_9952,Dun Laoghaire,105822042,0,4376_7778022_100120,4376_119 -4289_75959,267,4376_9953,Dun Laoghaire,106052042,0,4376_7778022_100120,4376_119 -4289_75959,268,4376_9954,Dun Laoghaire,106142042,0,4376_7778022_100120,4376_119 -4289_75959,269,4376_9955,Dun Laoghaire,106232042,0,4376_7778022_100120,4376_119 -4289_75959,259,4376_9956,Dun Laoghaire,105764840,0,4376_7778022_100110,4376_120 -4289_75959,270,4376_9957,Dun Laoghaire,105277574,0,4376_7778022_100060,4376_120 -4289_75959,146,4376_9958,Dun Laoghaire,105247574,0,4376_7778022_100060,4376_120 -4289_75959,271,4376_9959,Dun Laoghaire,105237574,0,4376_7778022_100060,4376_120 -4289_75960,264,4376_996,Dublin Airport,105652841,1,4376_7778022_103503,4376_3 -4289_75959,115,4376_9960,Dun Laoghaire,105217574,0,4376_7778022_100060,4376_120 -4289_75959,259,4376_9961,Dun Laoghaire,105764892,0,4376_7778022_100080,4376_119 -4289_75959,270,4376_9962,Dun Laoghaire,105277616,0,4376_7778022_100070,4376_119 -4289_75959,146,4376_9963,Dun Laoghaire,105247616,0,4376_7778022_100070,4376_119 -4289_75959,271,4376_9964,Dun Laoghaire,105237616,0,4376_7778022_100070,4376_119 -4289_75959,115,4376_9965,Dun Laoghaire,105217616,0,4376_7778022_100070,4376_119 -4289_75959,260,4376_9966,Dun Laoghaire,105312134,0,4376_7778022_100130,4376_119 -4289_75959,261,4376_9967,Dun Laoghaire,105322134,0,4376_7778022_100130,4376_119 -4289_75959,262,4376_9968,Dun Laoghaire,105432134,0,4376_7778022_100130,4376_119 -4289_75959,263,4376_9969,Dun Laoghaire,105542134,0,4376_7778022_100130,4376_119 -4289_75960,265,4376_997,Dublin Airport,105812841,1,4376_7778022_103503,4376_3 -4289_75959,264,4376_9970,Dun Laoghaire,105652134,0,4376_7778022_100130,4376_119 -4289_75959,265,4376_9971,Dun Laoghaire,105812134,0,4376_7778022_100130,4376_119 -4289_75959,266,4376_9972,Dun Laoghaire,105822134,0,4376_7778022_100130,4376_119 -4289_75959,267,4376_9973,Dun Laoghaire,106052134,0,4376_7778022_100130,4376_119 -4289_75959,268,4376_9974,Dun Laoghaire,106142134,0,4376_7778022_100130,4376_119 -4289_75959,269,4376_9975,Dun Laoghaire,106232134,0,4376_7778022_100130,4376_119 -4289_75959,259,4376_9976,Dun Laoghaire,105764942,0,4376_7778022_100120,4376_119 -4289_75959,270,4376_9977,Dun Laoghaire,105277662,0,4376_7778022_100010,4376_119 -4289_75959,146,4376_9978,Dun Laoghaire,105247662,0,4376_7778022_100010,4376_119 -4289_75959,271,4376_9979,Dun Laoghaire,105237662,0,4376_7778022_100010,4376_119 -4289_75960,266,4376_998,Dublin Airport,105822841,1,4376_7778022_103503,4376_3 -4289_75959,115,4376_9980,Dun Laoghaire,105217662,0,4376_7778022_100010,4376_119 -4289_75959,260,4376_9981,Dun Laoghaire,105312192,0,4376_7778022_100110,4376_119 -4289_75959,261,4376_9982,Dun Laoghaire,105322192,0,4376_7778022_100110,4376_119 -4289_75959,262,4376_9983,Dun Laoghaire,105432192,0,4376_7778022_100110,4376_119 -4289_75959,263,4376_9984,Dun Laoghaire,105542192,0,4376_7778022_100110,4376_119 -4289_75959,264,4376_9985,Dun Laoghaire,105652192,0,4376_7778022_100110,4376_119 -4289_75959,265,4376_9986,Dun Laoghaire,105812192,0,4376_7778022_100110,4376_119 -4289_75959,266,4376_9987,Dun Laoghaire,105822192,0,4376_7778022_100110,4376_119 -4289_75959,267,4376_9988,Dun Laoghaire,106052192,0,4376_7778022_100110,4376_119 -4289_75959,268,4376_9989,Dun Laoghaire,106142192,0,4376_7778022_100110,4376_119 -4289_75960,267,4376_999,Dublin Airport,106052841,1,4376_7778022_103503,4376_3 -4289_75959,269,4376_9990,Dun Laoghaire,106232192,0,4376_7778022_100110,4376_119 -4289_75959,259,4376_9991,Dun Laoghaire,105764990,0,4376_7778022_100070,4376_119 -4289_75959,270,4376_9992,Dun Laoghaire,105277702,0,4376_7778022_100080,4376_119 -4289_75959,146,4376_9993,Dun Laoghaire,105247702,0,4376_7778022_100080,4376_119 -4289_75959,271,4376_9994,Dun Laoghaire,105237702,0,4376_7778022_100080,4376_119 -4289_75959,115,4376_9995,Dun Laoghaire,105217702,0,4376_7778022_100080,4376_119 -4289_75959,260,4376_9996,Dun Laoghaire,105312264,0,4376_7778022_100100,4376_119 -4289_75959,261,4376_9997,Dun Laoghaire,105322264,0,4376_7778022_100100,4376_119 -4289_75959,262,4376_9998,Dun Laoghaire,105432264,0,4376_7778022_100100,4376_119 -4289_75959,263,4376_9999,Dun Laoghaire,105542264,0,4376_7778022_100100,4376_119 -4195_72146,272,4377_1,Prosperous,301411003-00002-1,0,4377_7778007_65020101,4377_2 -4195_72146,276,4377_10,Edenderry,301551013-00006-1,0,4377_7778007_75020101,4377_1 -4195_72146,110,4377_100,Edenderry,301377039-00001-1,0,4377_7778007_65010101,4377_1 -4195_72148,274,4377_1000,Dublin,301431032-00004-1,1,4377_7778007_72070101,4377_47 -4195_72148,275,4377_1001,Dublin,301441032-00005-1,1,4377_7778007_72070101,4377_47 -4195_72148,276,4377_1002,Dublin,301551032-00006-1,1,4377_7778007_72070101,4377_47 -4195_72148,277,4377_1003,Dublin,301664002-00007-1,1,4377_7778007_72020101,4377_45 -4195_72148,272,4377_1004,Dublin,301411034-00002-1,1,4377_7778007_72080101,4377_45 -4195_72148,273,4377_1005,Dublin,301421034-00003-1,1,4377_7778007_72080101,4377_45 -4195_72148,274,4377_1006,Dublin,301431034-00004-1,1,4377_7778007_72080101,4377_45 -4195_72148,275,4377_1007,Dublin,301441034-00005-1,1,4377_7778007_72080101,4377_45 -4195_72148,276,4377_1008,Dublin,301551034-00006-1,1,4377_7778007_72080101,4377_45 -4195_72148,277,4377_1009,Dublin,301664006-00007-1,1,4377_7778007_72010101,4377_46 -4195_72146,272,4377_101,Edenderry,301411085-00002-1,0,4377_7778007_65050101,4377_3 -4195_72148,277,4377_1010,Dublin,301664008-00007-1,1,4377_7778007_72030101,4377_45 -4195_72148,272,4377_1011,Dublin,301411052-00002-1,1,4377_7778007_72130101,4377_45 -4195_72148,273,4377_1012,Dublin,301421052-00003-1,1,4377_7778007_72130101,4377_45 -4195_72148,274,4377_1013,Dublin,301431052-00004-1,1,4377_7778007_72130101,4377_45 -4195_72148,275,4377_1014,Dublin,301441052-00005-1,1,4377_7778007_72130101,4377_45 -4195_72148,276,4377_1015,Dublin,301551052-00006-1,1,4377_7778007_72130101,4377_45 -4195_72148,272,4377_1016,Dublin,301411056-00002-1,1,4377_7778007_72150101,4377_45 -4195_72148,273,4377_1017,Dublin,301421056-00003-1,1,4377_7778007_72150101,4377_45 -4195_72148,274,4377_1018,Dublin,301431056-00004-1,1,4377_7778007_72150101,4377_45 -4195_72148,275,4377_1019,Dublin,301441056-00005-1,1,4377_7778007_72150101,4377_45 -4195_72146,273,4377_102,Edenderry,301421085-00003-1,0,4377_7778007_65050101,4377_3 -4195_72148,276,4377_1020,Dublin,301551056-00006-1,1,4377_7778007_72150101,4377_45 -4195_72148,272,4377_1021,Dublin,301411058-00002-1,1,4377_7778007_72140101,4377_47 -4195_72148,273,4377_1022,Dublin,301421058-00003-1,1,4377_7778007_72140101,4377_47 -4195_72148,274,4377_1023,Dublin,301431058-00004-1,1,4377_7778007_72140101,4377_47 -4195_72148,275,4377_1024,Dublin,301441058-00005-1,1,4377_7778007_72140101,4377_47 -4195_72148,276,4377_1025,Dublin,301551058-00006-1,1,4377_7778007_72140101,4377_47 -4195_72148,277,4377_1026,Dublin,301664016-00007-1,1,4377_7778007_72080101,4377_45 -4195_72148,115,4377_1027,Dublin,301317004-00010-1,1,4377_7778007_72020101,4377_45 -4195_72148,271,4377_1028,Dublin,301337004-00009-1,1,4377_7778007_72020101,4377_45 -4195_72148,146,4377_1029,Dublin,301347004-00008-1,1,4377_7778007_72020101,4377_45 -4195_72146,274,4377_103,Edenderry,301431085-00004-1,0,4377_7778007_65050101,4377_3 -4195_72148,110,4377_1030,Dublin,301377004-00001-1,1,4377_7778007_72020101,4377_45 -4195_72148,277,4377_1031,Dublin,301664018-00007-1,1,4377_7778007_72070101,4377_47 -4195_72148,115,4377_1032,Dublin,301317006-00010-1,1,4377_7778007_72010101,4377_46 -4195_72148,271,4377_1033,Dublin,301337006-00009-1,1,4377_7778007_72010101,4377_46 -4195_72148,146,4377_1034,Dublin,301347006-00008-1,1,4377_7778007_72010101,4377_46 -4195_72148,110,4377_1035,Dublin,301377006-00001-1,1,4377_7778007_72010101,4377_46 -4195_72148,277,4377_1036,Dublin,301664022-00007-1,1,4377_7778007_72090101,4377_46 -4195_72148,277,4377_1037,Dublin,301664026-00007-1,1,4377_7778007_72100101,4377_45 -4195_72148,272,4377_1038,Dublin,301411072-00002-1,1,4377_7778007_72170101,4377_45 -4195_72148,273,4377_1039,Dublin,301421072-00003-1,1,4377_7778007_72170101,4377_45 -4195_72146,275,4377_104,Edenderry,301441085-00005-1,0,4377_7778007_65050101,4377_3 -4195_72148,274,4377_1040,Dublin,301431072-00004-1,1,4377_7778007_72170101,4377_45 -4195_72148,275,4377_1041,Dublin,301441072-00005-1,1,4377_7778007_72170101,4377_45 -4195_72148,276,4377_1042,Dublin,301551072-00006-1,1,4377_7778007_72170101,4377_45 -4195_72148,115,4377_1043,Dublin,301317014-00010-1,1,4377_7778007_72040101,4377_46 -4195_72148,271,4377_1044,Dublin,301337014-00009-1,1,4377_7778007_72040101,4377_46 -4195_72148,146,4377_1045,Dublin,301347014-00008-1,1,4377_7778007_72040101,4377_46 -4195_72148,110,4377_1046,Dublin,301377014-00001-1,1,4377_7778007_72040101,4377_46 -4195_72148,272,4377_1047,Dublin,301411078-00002-1,1,4377_7778007_72180101,4377_45 -4195_72148,273,4377_1048,Dublin,301421078-00003-1,1,4377_7778007_72180101,4377_45 -4195_72148,274,4377_1049,Dublin,301431078-00004-1,1,4377_7778007_72180101,4377_45 -4195_72146,276,4377_105,Edenderry,301551085-00006-1,0,4377_7778007_65050101,4377_3 -4195_72148,275,4377_1050,Dublin,301441078-00005-1,1,4377_7778007_72180101,4377_45 -4195_72148,276,4377_1051,Dublin,301551078-00006-1,1,4377_7778007_72180101,4377_45 -4195_72148,277,4377_1052,Dublin,301664036-00007-1,1,4377_7778007_72120101,4377_50 -4195_72148,115,4377_1053,Dublin,301317018-00010-1,1,4377_7778007_72060101,4377_45 -4195_72148,271,4377_1054,Dublin,301337018-00009-1,1,4377_7778007_72060101,4377_45 -4195_72148,146,4377_1055,Dublin,301347018-00008-1,1,4377_7778007_72060101,4377_45 -4195_72148,110,4377_1056,Dublin,301377018-00001-1,1,4377_7778007_72060101,4377_45 -4195_72148,272,4377_1057,Dublin,301411084-00002-1,1,4377_7778007_75030101,4377_45 -4195_72148,273,4377_1058,Dublin,301421084-00003-1,1,4377_7778007_75030101,4377_45 -4195_72148,274,4377_1059,Dublin,301431084-00004-1,1,4377_7778007_75030101,4377_45 -4195_72146,277,4377_106,Edenderry,301664063-00007-1,0,4377_7778007_65020101,4377_5 -4195_72148,275,4377_1060,Dublin,301441084-00005-1,1,4377_7778007_75030101,4377_45 -4195_72148,276,4377_1061,Dublin,301551084-00006-1,1,4377_7778007_75030101,4377_45 -4195_72148,277,4377_1062,Dublin,301664046-00007-1,1,4377_7778007_72130101,4377_45 -4195_72148,115,4377_1063,Dublin,301317022-00010-1,1,4377_7778007_72070101,4377_45 -4195_72148,271,4377_1064,Dublin,301337022-00009-1,1,4377_7778007_72070101,4377_45 -4195_72148,146,4377_1065,Dublin,301347022-00008-1,1,4377_7778007_72070101,4377_45 -4195_72148,110,4377_1066,Dublin,301377022-00001-1,1,4377_7778007_72070101,4377_45 -4195_72148,115,4377_1067,Dublin,301317024-00010-1,1,4377_7778007_72030101,4377_47 -4195_72148,271,4377_1068,Dublin,301337024-00009-1,1,4377_7778007_72030101,4377_47 -4195_72148,146,4377_1069,Dublin,301347024-00008-1,1,4377_7778007_72030101,4377_47 -4195_72146,115,4377_107,Edenderry,301317047-00010-1,0,4377_7778007_65020101,4377_1 -4195_72148,110,4377_1070,Dublin,301377024-00001-1,1,4377_7778007_72030101,4377_47 -4195_72148,277,4377_1071,Dublin,301664050-00007-1,1,4377_7778007_72150101,4377_45 -4195_72148,272,4377_1072,Dublin,301411092-00002-1,1,4377_7778007_75050101,4377_45 -4195_72148,273,4377_1073,Dublin,301421092-00003-1,1,4377_7778007_75050101,4377_45 -4195_72148,274,4377_1074,Dublin,301431092-00004-1,1,4377_7778007_75050101,4377_45 -4195_72148,275,4377_1075,Dublin,301441092-00005-1,1,4377_7778007_75050101,4377_45 -4195_72148,276,4377_1076,Dublin,301551092-00006-1,1,4377_7778007_75050101,4377_45 -4195_72148,277,4377_1077,Dublin,301664056-00007-1,1,4377_7778007_72140101,4377_46 -4195_72148,277,4377_1078,Dublin,301664052-00007-1,1,4377_7778007_72160101,4377_51 -4195_72148,272,4377_1079,Dublin,301411096-00002-1,1,4377_7778007_72110101,4377_46 -4195_72146,271,4377_108,Edenderry,301337047-00009-1,0,4377_7778007_65020101,4377_1 -4195_72148,273,4377_1080,Dublin,301421096-00003-1,1,4377_7778007_72110101,4377_46 -4195_72148,274,4377_1081,Dublin,301431096-00004-1,1,4377_7778007_72110101,4377_46 -4195_72148,275,4377_1082,Dublin,301441096-00005-1,1,4377_7778007_72110101,4377_46 -4195_72148,276,4377_1083,Dublin,301551096-00006-1,1,4377_7778007_72110101,4377_46 -4195_72148,277,4377_1084,Dublin,301664058-00007-1,1,4377_7778007_65010101,4377_45 -4195_72148,272,4377_1085,Dublin,301411100-00002-1,1,4377_7778007_55030101,4377_45 -4195_72148,273,4377_1086,Dublin,301421100-00003-1,1,4377_7778007_55030101,4377_45 -4195_72148,274,4377_1087,Dublin,301431100-00004-1,1,4377_7778007_55030101,4377_45 -4195_72148,275,4377_1088,Dublin,301441100-00005-1,1,4377_7778007_55030101,4377_45 -4195_72148,276,4377_1089,Dublin,301551100-00006-1,1,4377_7778007_55030101,4377_45 -4195_72146,146,4377_109,Edenderry,301347047-00008-1,0,4377_7778007_65020101,4377_1 -4195_72148,115,4377_1090,Dublin,301317028-00010-1,1,4377_7778007_72080101,4377_45 -4195_72148,271,4377_1091,Dublin,301337028-00009-1,1,4377_7778007_72080101,4377_45 -4195_72148,146,4377_1092,Dublin,301347028-00008-1,1,4377_7778007_72080101,4377_45 -4195_72148,110,4377_1093,Dublin,301377028-00001-1,1,4377_7778007_72080101,4377_45 -4195_72148,115,4377_1094,Dublin,301317030-00010-1,1,4377_7778007_72100101,4377_45 -4195_72148,271,4377_1095,Dublin,301337030-00009-1,1,4377_7778007_72100101,4377_45 -4195_72148,146,4377_1096,Dublin,301347030-00008-1,1,4377_7778007_72100101,4377_45 -4195_72148,110,4377_1097,Dublin,301377030-00001-1,1,4377_7778007_72100101,4377_45 -4195_72148,115,4377_1098,Dublin,301317036-00010-1,1,4377_7778007_72050101,4377_46 -4195_72148,271,4377_1099,Dublin,301337036-00009-1,1,4377_7778007_72050101,4377_46 -4195_72146,272,4377_11,Edenderry,301411021-00002-1,0,4377_7778007_72040101,4377_1 -4195_72146,110,4377_110,Edenderry,301377047-00001-1,0,4377_7778007_65020101,4377_1 -4195_72148,146,4377_1100,Dublin,301347036-00008-1,1,4377_7778007_72050101,4377_46 -4195_72148,110,4377_1101,Dublin,301377036-00001-1,1,4377_7778007_72050101,4377_46 -4195_72148,277,4377_1102,Dublin,301664066-00007-1,1,4377_7778007_65020101,4377_45 -4195_72148,272,4377_1103,Dublin,301411106-00002-1,1,4377_7778007_65050101,4377_45 -4195_72148,273,4377_1104,Dublin,301421106-00003-1,1,4377_7778007_65050101,4377_45 -4195_72148,274,4377_1105,Dublin,301431106-00004-1,1,4377_7778007_65050101,4377_45 -4195_72148,275,4377_1106,Dublin,301441106-00005-1,1,4377_7778007_65050101,4377_45 -4195_72148,276,4377_1107,Dublin,301551106-00006-1,1,4377_7778007_65050101,4377_45 -4195_72148,115,4377_1108,Dublin,301317038-00010-1,1,4377_7778007_65010101,4377_45 -4195_72148,271,4377_1109,Dublin,301337038-00009-1,1,4377_7778007_65010101,4377_45 -4195_72146,272,4377_111,Edenderry,301411093-00002-1,0,4377_7778007_65020101,4377_3 -4195_72148,146,4377_1110,Dublin,301347038-00008-1,1,4377_7778007_65010101,4377_45 -4195_72148,110,4377_1111,Dublin,301377038-00001-1,1,4377_7778007_65010101,4377_45 -4195_72148,277,4377_1112,Dublin,301664068-00007-1,1,4377_7778007_72090101,4377_45 -4195_72148,272,4377_1113,Dublin,301411108-00002-1,1,4377_7778007_72090101,4377_45 -4195_72148,273,4377_1114,Dublin,301421108-00003-1,1,4377_7778007_72090101,4377_45 -4195_72148,274,4377_1115,Dublin,301431108-00004-1,1,4377_7778007_72090101,4377_45 -4195_72148,275,4377_1116,Dublin,301441108-00005-1,1,4377_7778007_72090101,4377_45 -4195_72148,276,4377_1117,Dublin,301551108-00006-1,1,4377_7778007_72090101,4377_45 -4195_72148,272,4377_1118,Dublin,301411110-00002-1,1,4377_7778007_55020101,4377_46 -4195_72148,273,4377_1119,Dublin,301421110-00003-1,1,4377_7778007_55020101,4377_46 -4195_72146,273,4377_112,Edenderry,301421093-00003-1,0,4377_7778007_65020101,4377_3 -4195_72148,274,4377_1120,Dublin,301431110-00004-1,1,4377_7778007_55020101,4377_46 -4195_72148,275,4377_1121,Dublin,301441110-00005-1,1,4377_7778007_55020101,4377_46 -4195_72148,276,4377_1122,Dublin,301551110-00006-1,1,4377_7778007_55020101,4377_46 -4195_72148,277,4377_1123,Dublin,301664076-00007-1,1,4377_7778007_72070101,4377_47 -4195_72148,277,4377_1124,Dublin,301664078-00007-1,1,4377_7778007_55010101,4377_45 -4195_72148,272,4377_1125,Dublin,301411118-00002-1,1,4377_7778007_55010101,4377_45 -4195_72148,273,4377_1126,Dublin,301421118-00003-1,1,4377_7778007_55010101,4377_45 -4195_72148,274,4377_1127,Dublin,301431118-00004-1,1,4377_7778007_55010101,4377_45 -4195_72148,275,4377_1128,Dublin,301441118-00005-1,1,4377_7778007_55010101,4377_45 -4195_72148,276,4377_1129,Dublin,301551118-00006-1,1,4377_7778007_55010101,4377_45 -4195_72146,274,4377_113,Edenderry,301431093-00004-1,0,4377_7778007_65020101,4377_3 -4195_72148,115,4377_1130,Dublin,301317044-00010-1,1,4377_7778007_65020101,4377_45 -4195_72148,271,4377_1131,Dublin,301337044-00009-1,1,4377_7778007_65020101,4377_45 -4195_72148,146,4377_1132,Dublin,301347044-00008-1,1,4377_7778007_65020101,4377_45 -4195_72148,110,4377_1133,Dublin,301377044-00001-1,1,4377_7778007_65020101,4377_45 -4195_72148,272,4377_1134,Dublin,301411122-00002-1,1,4377_7778007_65010101,4377_45 -4195_72148,273,4377_1135,Dublin,301421122-00003-1,1,4377_7778007_65010101,4377_45 -4195_72148,274,4377_1136,Dublin,301431122-00004-1,1,4377_7778007_65010101,4377_45 -4195_72148,275,4377_1137,Dublin,301441122-00005-1,1,4377_7778007_65010101,4377_45 -4195_72148,276,4377_1138,Dublin,301551122-00006-1,1,4377_7778007_65010101,4377_45 -4195_72148,115,4377_1139,Dublin,301317046-00010-1,1,4377_7778007_72120101,4377_45 -4195_72146,275,4377_114,Edenderry,301441093-00005-1,0,4377_7778007_65020101,4377_3 -4195_72148,271,4377_1140,Dublin,301337046-00009-1,1,4377_7778007_72120101,4377_45 -4195_72148,146,4377_1141,Dublin,301347046-00008-1,1,4377_7778007_72120101,4377_45 -4195_72148,110,4377_1142,Dublin,301377046-00001-1,1,4377_7778007_72120101,4377_45 -4195_72148,272,4377_1143,Dublin,301411128-00002-1,1,4377_7778007_72020101,4377_45 -4195_72148,273,4377_1144,Dublin,301421128-00003-1,1,4377_7778007_72020101,4377_45 -4195_72148,274,4377_1145,Dublin,301431128-00004-1,1,4377_7778007_72020101,4377_45 -4195_72148,275,4377_1146,Dublin,301441128-00005-1,1,4377_7778007_72020101,4377_45 -4195_72148,276,4377_1147,Dublin,301551128-00006-1,1,4377_7778007_72020101,4377_45 -4195_72148,115,4377_1148,Dublin,301317050-00010-1,1,4377_7778007_72040101,4377_46 -4195_72148,271,4377_1149,Dublin,301337050-00009-1,1,4377_7778007_72040101,4377_46 -4195_72146,276,4377_115,Edenderry,301551093-00006-1,0,4377_7778007_65020101,4377_3 -4195_72148,146,4377_1150,Dublin,301347050-00008-1,1,4377_7778007_72040101,4377_46 -4195_72148,110,4377_1151,Dublin,301377050-00001-1,1,4377_7778007_72040101,4377_46 -4195_72148,277,4377_1152,Dublin,301664086-00007-1,1,4377_7778007_55020101,4377_45 -4195_72148,272,4377_1153,Dublin,301411132-00002-1,1,4377_7778007_55040101,4377_45 -4195_72148,273,4377_1154,Dublin,301421132-00003-1,1,4377_7778007_55040101,4377_45 -4195_72148,274,4377_1155,Dublin,301431132-00004-1,1,4377_7778007_55040101,4377_45 -4195_72148,275,4377_1156,Dublin,301441132-00005-1,1,4377_7778007_55040101,4377_45 -4195_72148,276,4377_1157,Dublin,301551132-00006-1,1,4377_7778007_55040101,4377_45 -4195_72148,115,4377_1158,Dublin,301317052-00010-1,1,4377_7778007_65040101,4377_45 -4195_72148,271,4377_1159,Dublin,301337052-00009-1,1,4377_7778007_65040101,4377_45 -4195_72146,277,4377_116,Edenderry,301664071-00007-1,0,4377_7778007_55010101,4377_5 -4195_72148,146,4377_1160,Dublin,301347052-00008-1,1,4377_7778007_65040101,4377_45 -4195_72148,110,4377_1161,Dublin,301377052-00001-1,1,4377_7778007_65040101,4377_45 -4195_72148,272,4377_1162,Dublin,301411134-00002-1,1,4377_7778007_55050101,4377_45 -4195_72148,273,4377_1163,Dublin,301421134-00003-1,1,4377_7778007_55050101,4377_45 -4195_72148,274,4377_1164,Dublin,301431134-00004-1,1,4377_7778007_55050101,4377_45 -4195_72148,275,4377_1165,Dublin,301441134-00005-1,1,4377_7778007_55050101,4377_45 -4195_72148,276,4377_1166,Dublin,301551134-00006-1,1,4377_7778007_55050101,4377_45 -4195_72148,272,4377_1167,Dublin,301411138-00002-1,1,4377_7778007_72080101,4377_45 -4195_72148,273,4377_1168,Dublin,301421138-00003-1,1,4377_7778007_72080101,4377_45 -4195_72148,274,4377_1169,Dublin,301431138-00004-1,1,4377_7778007_72080101,4377_45 -4195_72146,272,4377_117,Edenderry,301411101-00002-1,0,4377_7778007_62020101,4377_1 -4195_72148,275,4377_1170,Dublin,301441138-00005-1,1,4377_7778007_72080101,4377_45 -4195_72148,276,4377_1171,Dublin,301551138-00006-1,1,4377_7778007_72080101,4377_45 -4195_72148,272,4377_1172,Dublin,301411144-00002-1,1,4377_7778007_72100101,4377_45 -4195_72148,273,4377_1173,Dublin,301421144-00003-1,1,4377_7778007_72100101,4377_45 -4195_72148,274,4377_1174,Dublin,301431144-00004-1,1,4377_7778007_72100101,4377_45 -4195_72148,275,4377_1175,Dublin,301441144-00005-1,1,4377_7778007_72100101,4377_45 -4195_72148,276,4377_1176,Dublin,301551144-00006-1,1,4377_7778007_72100101,4377_45 -4195_72148,277,4377_1177,Dublin,301664098-00007-1,1,4377_7778007_55030101,4377_45 -4195_72148,115,4377_1178,Dublin,301317060-00010-1,1,4377_7778007_65050101,4377_45 -4195_72148,271,4377_1179,Dublin,301337060-00009-1,1,4377_7778007_65050101,4377_45 -4195_72146,273,4377_118,Edenderry,301421101-00003-1,0,4377_7778007_62020101,4377_1 -4195_72148,146,4377_1180,Dublin,301347060-00008-1,1,4377_7778007_65050101,4377_45 -4195_72148,110,4377_1181,Dublin,301377060-00001-1,1,4377_7778007_65050101,4377_45 -4195_72148,277,4377_1182,Dublin,301664100-00007-1,1,4377_7778007_72160101,4377_45 -4195_72148,272,4377_1183,Dublin,301411148-00002-1,1,4377_7778007_72050101,4377_45 -4195_72148,273,4377_1184,Dublin,301421148-00003-1,1,4377_7778007_72050101,4377_45 -4195_72148,274,4377_1185,Dublin,301431148-00004-1,1,4377_7778007_72050101,4377_45 -4195_72148,275,4377_1186,Dublin,301441148-00005-1,1,4377_7778007_72050101,4377_45 -4195_72148,276,4377_1187,Dublin,301551148-00006-1,1,4377_7778007_72050101,4377_45 -4195_72148,277,4377_1188,Dublin,301664102-00007-1,1,4377_7778007_72020101,4377_50 -4195_72148,115,4377_1189,Dublin,301317062-00010-1,1,4377_7778007_72030101,4377_45 -4195_72146,274,4377_119,Edenderry,301431101-00004-1,0,4377_7778007_62020101,4377_1 -4195_72148,271,4377_1190,Dublin,301337062-00009-1,1,4377_7778007_72030101,4377_45 -4195_72148,146,4377_1191,Dublin,301347062-00008-1,1,4377_7778007_72030101,4377_45 -4195_72148,110,4377_1192,Dublin,301377062-00001-1,1,4377_7778007_72030101,4377_45 -4195_72148,272,4377_1193,Dublin,301411152-00002-1,1,4377_7778007_72170101,4377_46 -4195_72148,273,4377_1194,Dublin,301421152-00003-1,1,4377_7778007_72170101,4377_46 -4195_72148,274,4377_1195,Dublin,301431152-00004-1,1,4377_7778007_72170101,4377_46 -4195_72148,275,4377_1196,Dublin,301441152-00005-1,1,4377_7778007_72170101,4377_46 -4195_72148,276,4377_1197,Dublin,301551152-00006-1,1,4377_7778007_72170101,4377_46 -4195_72148,277,4377_1198,Dublin,301664106-00007-1,1,4377_7778007_72030101,4377_46 -4195_72148,272,4377_1199,Dublin,301411154-00002-1,1,4377_7778007_72040101,4377_45 -4195_72146,273,4377_12,Edenderry,301421021-00003-1,0,4377_7778007_72040101,4377_1 -4195_72146,275,4377_120,Edenderry,301441101-00005-1,0,4377_7778007_62020101,4377_1 -4195_72148,273,4377_1200,Dublin,301421154-00003-1,1,4377_7778007_72040101,4377_45 -4195_72148,274,4377_1201,Dublin,301431154-00004-1,1,4377_7778007_72040101,4377_45 -4195_72148,275,4377_1202,Dublin,301441154-00005-1,1,4377_7778007_72040101,4377_45 -4195_72148,276,4377_1203,Dublin,301551154-00006-1,1,4377_7778007_72040101,4377_45 -4195_72148,277,4377_1204,Dublin,301664108-00007-1,1,4377_7778007_65040101,4377_50 -4195_72148,115,4377_1205,Dublin,301317066-00010-1,1,4377_7778007_65030101,4377_45 -4195_72148,271,4377_1206,Dublin,301337066-00009-1,1,4377_7778007_65030101,4377_45 -4195_72148,146,4377_1207,Dublin,301347066-00008-1,1,4377_7778007_65030101,4377_45 -4195_72148,110,4377_1208,Dublin,301377066-00001-1,1,4377_7778007_65030101,4377_45 -4195_72148,115,4377_1209,Dublin,301317068-00010-1,1,4377_7778007_72020101,4377_47 -4195_72146,276,4377_121,Edenderry,301551101-00006-1,0,4377_7778007_62020101,4377_1 -4195_72148,271,4377_1210,Dublin,301337068-00009-1,1,4377_7778007_72020101,4377_47 -4195_72148,146,4377_1211,Dublin,301347068-00008-1,1,4377_7778007_72020101,4377_47 -4195_72148,110,4377_1212,Dublin,301377068-00001-1,1,4377_7778007_72020101,4377_47 -4195_72148,115,4377_1213,Dublin,301317072-00010-1,1,4377_7778007_72050101,4377_46 -4195_72148,271,4377_1214,Dublin,301337072-00009-1,1,4377_7778007_72050101,4377_46 -4195_72148,146,4377_1215,Dublin,301347072-00008-1,1,4377_7778007_72050101,4377_46 -4195_72148,110,4377_1216,Dublin,301377072-00001-1,1,4377_7778007_72050101,4377_46 -4195_72148,272,4377_1217,Dublin,301411162-00002-1,1,4377_7778007_72090101,4377_45 -4195_72148,273,4377_1218,Dublin,301421162-00003-1,1,4377_7778007_72090101,4377_45 -4195_72148,274,4377_1219,Dublin,301431162-00004-1,1,4377_7778007_72090101,4377_45 -4195_72146,277,4377_122,Edenderry,301664075-00007-1,0,4377_7778007_65030101,4377_3 -4195_72148,275,4377_1220,Dublin,301441162-00005-1,1,4377_7778007_72090101,4377_45 -4195_72148,276,4377_1221,Dublin,301551162-00006-1,1,4377_7778007_72090101,4377_45 -4195_72148,277,4377_1222,Dublin,301664112-00007-1,1,4377_7778007_72040101,4377_47 -4195_72148,272,4377_1223,Dublin,301411164-00002-1,1,4377_7778007_72030101,4377_47 -4195_72148,273,4377_1224,Dublin,301421164-00003-1,1,4377_7778007_72030101,4377_47 -4195_72148,274,4377_1225,Dublin,301431164-00004-1,1,4377_7778007_72030101,4377_47 -4195_72148,275,4377_1226,Dublin,301441164-00005-1,1,4377_7778007_72030101,4377_47 -4195_72148,276,4377_1227,Dublin,301551164-00006-1,1,4377_7778007_72030101,4377_47 -4195_72148,277,4377_1228,Dublin,301664120-00007-1,1,4377_7778007_72070101,4377_45 -4195_72148,272,4377_1229,Dublin,301411168-00002-1,1,4377_7778007_72160101,4377_45 -4195_72146,272,4377_123,Clane,301411107-00002-1,0,4377_7778007_65030101,4377_4 -4195_72148,273,4377_1230,Dublin,301421168-00003-1,1,4377_7778007_72160101,4377_45 -4195_72148,274,4377_1231,Dublin,301431168-00004-1,1,4377_7778007_72160101,4377_45 -4195_72148,275,4377_1232,Dublin,301441168-00005-1,1,4377_7778007_72160101,4377_45 -4195_72148,276,4377_1233,Dublin,301551168-00006-1,1,4377_7778007_72160101,4377_45 -4195_72148,277,4377_1234,Dublin,301664122-00007-1,1,4377_7778007_72010101,4377_46 -4195_72148,272,4377_1235,Dublin,301411174-00002-1,1,4377_7778007_72180101,4377_46 -4195_72148,273,4377_1236,Dublin,301421174-00003-1,1,4377_7778007_72180101,4377_46 -4195_72148,274,4377_1237,Dublin,301431174-00004-1,1,4377_7778007_72180101,4377_46 -4195_72148,275,4377_1238,Dublin,301441174-00005-1,1,4377_7778007_72180101,4377_46 -4195_72148,276,4377_1239,Dublin,301551174-00006-1,1,4377_7778007_72180101,4377_46 -4195_72146,273,4377_124,Clane,301421107-00003-1,0,4377_7778007_65030101,4377_4 -4195_72148,115,4377_1240,Dublin,301317080-00010-1,1,4377_7778007_72070101,4377_47 -4195_72148,271,4377_1241,Dublin,301337080-00009-1,1,4377_7778007_72070101,4377_47 -4195_72148,146,4377_1242,Dublin,301347080-00008-1,1,4377_7778007_72070101,4377_47 -4195_72148,110,4377_1243,Dublin,301377080-00001-1,1,4377_7778007_72070101,4377_47 -4195_72148,115,4377_1244,Dublin,301317084-00010-1,1,4377_7778007_72030101,4377_45 -4195_72148,271,4377_1245,Dublin,301337084-00009-1,1,4377_7778007_72030101,4377_45 -4195_72148,146,4377_1246,Dublin,301347084-00008-1,1,4377_7778007_72030101,4377_45 -4195_72148,110,4377_1247,Dublin,301377084-00001-1,1,4377_7778007_72030101,4377_45 -4195_72148,277,4377_1248,Dublin,301664126-00007-1,1,4377_7778007_72020101,4377_50 -4195_72148,272,4377_1249,Dublin,301411180-00002-1,1,4377_7778007_72050101,4377_45 -4195_72146,274,4377_125,Clane,301431107-00004-1,0,4377_7778007_65030101,4377_4 -4195_72148,273,4377_1250,Dublin,301421180-00003-1,1,4377_7778007_72050101,4377_45 -4195_72148,274,4377_1251,Dublin,301431180-00004-1,1,4377_7778007_72050101,4377_45 -4195_72148,275,4377_1252,Dublin,301441180-00005-1,1,4377_7778007_72050101,4377_45 -4195_72148,276,4377_1253,Dublin,301551180-00006-1,1,4377_7778007_72050101,4377_45 -4195_72148,115,4377_1254,Kill,301317088-00010-1,1,4377_7778007_72020101,4377_48 -4195_72148,271,4377_1255,Kill,301337088-00009-1,1,4377_7778007_72020101,4377_48 -4195_72148,146,4377_1256,Kill,301347088-00008-1,1,4377_7778007_72020101,4377_48 -4195_72148,110,4377_1257,Kill,301377088-00001-1,1,4377_7778007_72020101,4377_48 -4195_72148,277,4377_1258,Dublin,301664132-00007-1,1,4377_7778007_72060101,4377_47 -4195_72148,272,4377_1259,Dublin,301411184-00002-1,1,4377_7778007_72040101,4377_47 -4195_72146,275,4377_126,Clane,301441107-00005-1,0,4377_7778007_65030101,4377_4 -4195_72148,273,4377_1260,Dublin,301421184-00003-1,1,4377_7778007_72040101,4377_47 -4195_72148,274,4377_1261,Dublin,301431184-00004-1,1,4377_7778007_72040101,4377_47 -4195_72148,275,4377_1262,Dublin,301441184-00005-1,1,4377_7778007_72040101,4377_47 -4195_72148,276,4377_1263,Dublin,301551184-00006-1,1,4377_7778007_72040101,4377_47 -4195_72148,272,4377_1264,Dublin,301411186-00002-1,1,4377_7778007_72160101,4377_45 -4195_72148,273,4377_1265,Dublin,301421186-00003-1,1,4377_7778007_72160101,4377_45 -4195_72148,274,4377_1266,Dublin,301431186-00004-1,1,4377_7778007_72160101,4377_45 -4195_72148,275,4377_1267,Dublin,301441186-00005-1,1,4377_7778007_72160101,4377_45 -4195_72148,276,4377_1268,Dublin,301551186-00006-1,1,4377_7778007_72160101,4377_45 -4195_72148,277,4377_1269,Dublin,301664134-00007-1,1,4377_7778007_72070101,4377_50 -4195_72146,276,4377_127,Clane,301551107-00006-1,0,4377_7778007_65030101,4377_4 -4195_72157,272,4377_1270,Rathangan,301411027-00002-1,0,4377_7778007_72110101,4377_52 -4195_72157,273,4377_1271,Rathangan,301421027-00003-1,0,4377_7778007_72110101,4377_52 -4195_72157,274,4377_1272,Rathangan,301431027-00004-1,0,4377_7778007_72110101,4377_52 -4195_72157,275,4377_1273,Rathangan,301441027-00005-1,0,4377_7778007_72110101,4377_52 -4195_72157,276,4377_1274,Rathangan,301551027-00006-1,0,4377_7778007_72110101,4377_52 -4195_72157,277,4377_1275,Kildare,301664011-00007-1,0,4377_7778007_72010101,4377_53 -4195_72157,277,4377_1276,Dublin,301664080-00007-1,1,4377_7778007_72110101,4377_54 -4195_72157,272,4377_1277,Dublin,301411130-00002-1,1,4377_7778007_75030101,4377_54 -4195_72157,273,4377_1278,Dublin,301421130-00003-1,1,4377_7778007_75030101,4377_54 -4195_72157,274,4377_1279,Dublin,301431130-00004-1,1,4377_7778007_75030101,4377_54 -4195_72146,115,4377_128,Edenderry,301317053-00010-1,0,4377_7778007_65040101,4377_1 -4195_72157,275,4377_1280,Dublin,301441130-00005-1,1,4377_7778007_75030101,4377_54 -4195_72157,276,4377_1281,Dublin,301551130-00006-1,1,4377_7778007_75030101,4377_54 -4195_72158,277,4377_1282,Dublin,301664034-00007-1,1,4377_7778007_72050101,4377_56 -4195_72158,272,4377_1283,Dublin,301411076-00002-1,1,4377_7778007_75010101,4377_55 -4195_72158,273,4377_1284,Dublin,301421076-00003-1,1,4377_7778007_75010101,4377_55 -4195_72158,274,4377_1285,Dublin,301431076-00004-1,1,4377_7778007_75010101,4377_55 -4195_72158,275,4377_1286,Dublin,301441076-00005-1,1,4377_7778007_75010101,4377_55 -4195_72158,276,4377_1287,Dublin,301551076-00006-1,1,4377_7778007_75010101,4377_55 -4195_72159,272,4377_1288,Kildare,301411053-00002-1,0,4377_7778007_65060101,4377_57 -4195_72159,273,4377_1289,Kildare,301421053-00003-1,0,4377_7778007_65060101,4377_57 -4195_72146,271,4377_129,Edenderry,301337053-00009-1,0,4377_7778007_65040101,4377_1 -4195_72159,274,4377_1290,Kildare,301431053-00004-1,0,4377_7778007_65060101,4377_57 -4195_72159,275,4377_1291,Kildare,301441053-00005-1,0,4377_7778007_65060101,4377_57 -4195_72159,276,4377_1292,Kildare,301551053-00006-1,0,4377_7778007_65060101,4377_57 -4195_72159,277,4377_1293,Out of Service,301664027-00007-1,0,4377_7778007_72110101,4377_58 -4195_72159,277,4377_1294,Out of Service,301664053-00007-1,0,4377_7778007_72030101,4377_58 -4195_72159,272,4377_1295,DCU,301411026-00002-1,1,4377_7778007_75030101,4377_59 -4195_72159,273,4377_1296,DCU,301421026-00003-1,1,4377_7778007_75030101,4377_59 -4195_72159,274,4377_1297,DCU,301431026-00004-1,1,4377_7778007_75030101,4377_59 -4195_72159,275,4377_1298,DCU,301441026-00005-1,1,4377_7778007_75030101,4377_59 -4195_72159,276,4377_1299,DCU,301551026-00006-1,1,4377_7778007_75030101,4377_59 -4195_72146,274,4377_13,Edenderry,301431021-00004-1,0,4377_7778007_72040101,4377_1 -4195_72146,146,4377_130,Edenderry,301347053-00008-1,0,4377_7778007_65040101,4377_1 -4195_72160,272,4377_1300,Dublin,301411044-00002-1,1,4377_7778007_72100101,4377_60 -4195_72160,273,4377_1301,Dublin,301421044-00003-1,1,4377_7778007_72100101,4377_60 -4195_72160,274,4377_1302,Dublin,301431044-00004-1,1,4377_7778007_72100101,4377_60 -4195_72160,275,4377_1303,Dublin,301441044-00005-1,1,4377_7778007_72100101,4377_60 -4195_72160,276,4377_1304,Dublin,301551044-00006-1,1,4377_7778007_72100101,4377_60 -4195_72160,272,4377_1305,Dublin,301411046-00002-1,1,4377_7778007_75040101,4377_61 -4195_72160,273,4377_1306,Dublin,301421046-00003-1,1,4377_7778007_75040101,4377_61 -4195_72160,274,4377_1307,Dublin,301431046-00004-1,1,4377_7778007_75040101,4377_61 -4195_72160,275,4377_1308,Dublin,301441046-00005-1,1,4377_7778007_75040101,4377_61 -4195_72160,276,4377_1309,Dublin,301551046-00006-1,1,4377_7778007_75040101,4377_61 -4195_72146,110,4377_131,Edenderry,301377053-00001-1,0,4377_7778007_65040101,4377_1 -4195_72163,276,4377_1310,Newbridge,301551193-00006-1,0,4377_7778007_65040101,4377_62 -4195_72163,277,4377_1311,Newbridge,301664133-00007-1,0,4377_7778007_72060101,4377_63 -4195_72161,272,4377_1312,Rathangan,301411081-00002-1,0,4377_7778007_72110101,4377_64 -4195_72161,273,4377_1313,Rathangan,301421081-00003-1,0,4377_7778007_72110101,4377_64 -4195_72161,274,4377_1314,Rathangan,301431081-00004-1,0,4377_7778007_72110101,4377_64 -4195_72161,275,4377_1315,Rathangan,301441081-00005-1,0,4377_7778007_72110101,4377_64 -4195_72161,276,4377_1316,Rathangan,301551081-00006-1,0,4377_7778007_72110101,4377_64 -4195_72161,272,4377_1317,Dublin,301411064-00002-1,1,4377_7778007_72160101,4377_65 -4195_72161,273,4377_1318,Dublin,301421064-00003-1,1,4377_7778007_72160101,4377_65 -4195_72161,274,4377_1319,Dublin,301431064-00004-1,1,4377_7778007_72160101,4377_65 -4195_72146,277,4377_132,Edenderry,301664079-00007-1,0,4377_7778007_55020101,4377_3 -4195_72161,275,4377_1320,Dublin,301441064-00005-1,1,4377_7778007_72160101,4377_65 -4195_72161,276,4377_1321,Dublin,301551064-00006-1,1,4377_7778007_72160101,4377_65 -4195_72162,115,4377_1322,UCD Belfield,301317076-00010-1,1,4377_7778007_62010101,4377_66 -4195_72162,271,4377_1323,UCD Belfield,301337076-00009-1,1,4377_7778007_62010101,4377_66 -4195_72162,146,4377_1324,UCD Belfield,301347076-00008-1,1,4377_7778007_62010101,4377_66 -4195_72162,110,4377_1325,UCD Belfield,301377076-00001-1,1,4377_7778007_62010101,4377_66 -4195_72164,272,4377_1326,Newbridge,301411097-00002-1,0,4377_7778007_72030101,4377_67 -4195_72164,273,4377_1327,Newbridge,301421097-00003-1,0,4377_7778007_72030101,4377_67 -4195_72164,274,4377_1328,Newbridge,301431097-00004-1,0,4377_7778007_72030101,4377_67 -4195_72164,275,4377_1329,Newbridge,301441097-00005-1,0,4377_7778007_72030101,4377_67 -4195_72146,272,4377_133,Prosperous,301411113-00002-1,0,4377_7778007_55010101,4377_2 -4195_72164,276,4377_1330,Newbridge,301551097-00006-1,0,4377_7778007_72030101,4377_67 -4195_72164,272,4377_1331,Newbridge,301411117-00002-1,0,4377_7778007_72020101,4377_67 -4195_72164,273,4377_1332,Newbridge,301421117-00003-1,0,4377_7778007_72020101,4377_67 -4195_72164,274,4377_1333,Newbridge,301431117-00004-1,0,4377_7778007_72020101,4377_67 -4195_72164,275,4377_1334,Newbridge,301441117-00005-1,0,4377_7778007_72020101,4377_67 -4195_72164,276,4377_1335,Newbridge,301551117-00006-1,0,4377_7778007_72020101,4377_67 -4195_72164,272,4377_1336,Rathangan,301411137-00002-1,0,4377_7778007_72180101,4377_68 -4195_72164,273,4377_1337,Rathangan,301421137-00003-1,0,4377_7778007_72180101,4377_68 -4195_72164,274,4377_1338,Rathangan,301431137-00004-1,0,4377_7778007_72180101,4377_68 -4195_72164,275,4377_1339,Rathangan,301441137-00005-1,0,4377_7778007_72180101,4377_68 -4195_72146,273,4377_134,Prosperous,301421113-00003-1,0,4377_7778007_55010101,4377_2 -4195_72164,276,4377_1340,Rathangan,301551137-00006-1,0,4377_7778007_72180101,4377_68 -4195_72164,272,4377_1341,Newbridge,301411151-00002-1,0,4377_7778007_72120101,4377_67 -4195_72164,273,4377_1342,Newbridge,301421151-00003-1,0,4377_7778007_72120101,4377_67 -4195_72164,274,4377_1343,Newbridge,301431151-00004-1,0,4377_7778007_72120101,4377_67 -4195_72164,275,4377_1344,Newbridge,301441151-00005-1,0,4377_7778007_72120101,4377_67 -4195_72164,276,4377_1345,Newbridge,301551151-00006-1,0,4377_7778007_72120101,4377_67 -4195_72164,272,4377_1346,Dublin,301411030-00002-1,1,4377_7778007_72050101,4377_69 -4195_72164,273,4377_1347,Dublin,301421030-00003-1,1,4377_7778007_72050101,4377_69 -4195_72164,274,4377_1348,Dublin,301431030-00004-1,1,4377_7778007_72050101,4377_69 -4195_72164,275,4377_1349,Dublin,301441030-00005-1,1,4377_7778007_72050101,4377_69 -4195_72146,274,4377_135,Prosperous,301431113-00004-1,0,4377_7778007_55010101,4377_2 -4195_72164,276,4377_1350,Dublin,301551030-00006-1,1,4377_7778007_72050101,4377_69 -4195_72149,272,4377_1351,Athy,301411063-00002-1,0,4377_7778007_72010101,4377_70 -4195_72149,273,4377_1352,Athy,301421063-00003-1,0,4377_7778007_72010101,4377_70 -4195_72149,274,4377_1353,Athy,301431063-00004-1,0,4377_7778007_72010101,4377_70 -4195_72149,275,4377_1354,Athy,301441063-00005-1,0,4377_7778007_72010101,4377_70 -4195_72149,276,4377_1355,Athy,301551063-00006-1,0,4377_7778007_72010101,4377_70 -4195_72149,277,4377_1356,Athy,301664039-00007-1,0,4377_7778007_72060101,4377_70 -4195_72149,115,4377_1357,Athy,301317027-00010-1,0,4377_7778007_72110101,4377_70 -4195_72149,271,4377_1358,Athy,301337027-00009-1,0,4377_7778007_72110101,4377_70 -4195_72149,146,4377_1359,Athy,301347027-00008-1,0,4377_7778007_72110101,4377_70 -4195_72146,275,4377_136,Prosperous,301441113-00005-1,0,4377_7778007_55010101,4377_2 -4195_72149,110,4377_1360,Athy,301377027-00001-1,0,4377_7778007_72110101,4377_70 -4195_72149,277,4377_1361,Athy,301664061-00007-1,0,4377_7778007_72060101,4377_70 -4195_72149,272,4377_1362,Athy,301411083-00002-1,0,4377_7778007_72010101,4377_70 -4195_72149,273,4377_1363,Athy,301421083-00003-1,0,4377_7778007_72010101,4377_70 -4195_72149,274,4377_1364,Athy,301431083-00004-1,0,4377_7778007_72010101,4377_70 -4195_72149,275,4377_1365,Athy,301441083-00005-1,0,4377_7778007_72010101,4377_70 -4195_72149,276,4377_1366,Athy,301551083-00006-1,0,4377_7778007_72010101,4377_70 -4195_72149,115,4377_1367,Athy,301317043-00010-1,0,4377_7778007_72110101,4377_70 -4195_72149,271,4377_1368,Athy,301337043-00009-1,0,4377_7778007_72110101,4377_70 -4195_72149,146,4377_1369,Athy,301347043-00008-1,0,4377_7778007_72110101,4377_70 -4195_72146,276,4377_137,Prosperous,301551113-00006-1,0,4377_7778007_55010101,4377_2 -4195_72149,110,4377_1370,Athy,301377043-00001-1,0,4377_7778007_72110101,4377_70 -4195_72149,272,4377_1371,Kilcullen,301411119-00002-1,0,4377_7778007_72070101,4377_72 -4195_72149,273,4377_1372,Kilcullen,301421119-00003-1,0,4377_7778007_72070101,4377_72 -4195_72149,274,4377_1373,Kilcullen,301431119-00004-1,0,4377_7778007_72070101,4377_72 -4195_72149,275,4377_1374,Kilcullen,301441119-00005-1,0,4377_7778007_72070101,4377_72 -4195_72149,276,4377_1375,Kilcullen,301551119-00006-1,0,4377_7778007_72070101,4377_72 -4195_72149,272,4377_1376,Athy,301411147-00002-1,0,4377_7778007_72060101,4377_71 -4195_72149,273,4377_1377,Athy,301421147-00003-1,0,4377_7778007_72060101,4377_71 -4195_72149,274,4377_1378,Athy,301431147-00004-1,0,4377_7778007_72060101,4377_71 -4195_72149,275,4377_1379,Athy,301441147-00005-1,0,4377_7778007_72060101,4377_71 -4195_72146,272,4377_138,Edenderry,301411123-00002-1,0,4377_7778007_65060101,4377_1 -4195_72149,276,4377_1380,Athy,301551147-00006-1,0,4377_7778007_72060101,4377_71 -4195_72149,115,4377_1381,Athy,301317071-00010-1,0,4377_7778007_72110101,4377_70 -4195_72149,271,4377_1382,Athy,301337071-00009-1,0,4377_7778007_72110101,4377_70 -4195_72149,146,4377_1383,Athy,301347071-00008-1,0,4377_7778007_72110101,4377_70 -4195_72149,110,4377_1384,Athy,301377071-00001-1,0,4377_7778007_72110101,4377_70 -4195_72149,277,4377_1385,Athy,301664105-00007-1,0,4377_7778007_72060101,4377_70 -4195_72149,272,4377_1386,Athy,301411183-00002-1,0,4377_7778007_72090101,4377_70 -4195_72149,273,4377_1387,Athy,301421183-00003-1,0,4377_7778007_72090101,4377_70 -4195_72149,274,4377_1388,Athy,301431183-00004-1,0,4377_7778007_72090101,4377_70 -4195_72149,275,4377_1389,Athy,301441183-00005-1,0,4377_7778007_72090101,4377_70 -4195_72146,273,4377_139,Edenderry,301421123-00003-1,0,4377_7778007_65060101,4377_1 -4195_72149,276,4377_1390,Athy,301551183-00006-1,0,4377_7778007_72090101,4377_70 -4195_72149,272,4377_1391,Dublin,301411018-00002-1,1,4377_7778007_72010101,4377_74 -4195_72149,273,4377_1392,Dublin,301421018-00003-1,1,4377_7778007_72010101,4377_74 -4195_72149,274,4377_1393,Dublin,301431018-00004-1,1,4377_7778007_72010101,4377_74 -4195_72149,275,4377_1394,Dublin,301441018-00005-1,1,4377_7778007_72010101,4377_74 -4195_72149,276,4377_1395,Dublin,301551018-00006-1,1,4377_7778007_72010101,4377_74 -4195_72149,272,4377_1396,Dublin,301411048-00002-1,1,4377_7778007_72120101,4377_75 -4195_72149,273,4377_1397,Dublin,301421048-00003-1,1,4377_7778007_72120101,4377_75 -4195_72149,274,4377_1398,Dublin,301431048-00004-1,1,4377_7778007_72120101,4377_75 -4195_72149,275,4377_1399,Dublin,301441048-00005-1,1,4377_7778007_72120101,4377_75 -4195_72146,275,4377_14,Edenderry,301441021-00005-1,0,4377_7778007_72040101,4377_1 -4195_72146,274,4377_140,Edenderry,301431123-00004-1,0,4377_7778007_65060101,4377_1 -4195_72149,276,4377_1400,Dublin,301551048-00006-1,1,4377_7778007_72120101,4377_75 -4195_72149,277,4377_1401,Naas,301664014-00007-1,1,4377_7778007_72060101,4377_76 -4195_72149,272,4377_1402,Naas,301411080-00002-1,1,4377_7778007_75050101,4377_73 -4195_72149,273,4377_1403,Naas,301421080-00003-1,1,4377_7778007_75050101,4377_73 -4195_72149,274,4377_1404,Naas,301431080-00004-1,1,4377_7778007_75050101,4377_73 -4195_72149,275,4377_1405,Naas,301441080-00005-1,1,4377_7778007_75050101,4377_73 -4195_72149,276,4377_1406,Naas,301551080-00006-1,1,4377_7778007_75050101,4377_73 -4195_72149,277,4377_1407,Naas,301664038-00007-1,1,4377_7778007_72060101,4377_73 -4195_72149,115,4377_1408,Naas,301317016-00010-1,1,4377_7778007_72050101,4377_73 -4195_72149,271,4377_1409,Naas,301337016-00009-1,1,4377_7778007_72050101,4377_73 -4195_72146,275,4377_141,Edenderry,301441123-00005-1,0,4377_7778007_65060101,4377_1 -4195_72149,146,4377_1410,Naas,301347016-00008-1,1,4377_7778007_72050101,4377_73 -4195_72149,110,4377_1411,Naas,301377016-00001-1,1,4377_7778007_72050101,4377_73 -4195_72149,272,4377_1412,Naas,301411112-00002-1,1,4377_7778007_72010101,4377_73 -4195_72149,273,4377_1413,Naas,301421112-00003-1,1,4377_7778007_72010101,4377_73 -4195_72149,274,4377_1414,Naas,301431112-00004-1,1,4377_7778007_72010101,4377_73 -4195_72149,275,4377_1415,Naas,301441112-00005-1,1,4377_7778007_72010101,4377_73 -4195_72149,276,4377_1416,Naas,301551112-00006-1,1,4377_7778007_72010101,4377_73 -4195_72149,277,4377_1417,Naas,301664070-00007-1,1,4377_7778007_72060101,4377_73 -4195_72149,115,4377_1418,Naas,301317042-00010-1,1,4377_7778007_72110101,4377_73 -4195_72149,271,4377_1419,Naas,301337042-00009-1,1,4377_7778007_72110101,4377_73 -4195_72146,276,4377_142,Edenderry,301551123-00006-1,0,4377_7778007_65060101,4377_1 -4195_72149,146,4377_1420,Naas,301347042-00008-1,1,4377_7778007_72110101,4377_73 -4195_72149,110,4377_1421,Naas,301377042-00001-1,1,4377_7778007_72110101,4377_73 -4195_72149,277,4377_1422,Naas,301664090-00007-1,1,4377_7778007_72060101,4377_73 -4195_72149,115,4377_1423,Naas,301317058-00010-1,1,4377_7778007_72110101,4377_73 -4195_72149,271,4377_1424,Naas,301337058-00009-1,1,4377_7778007_72110101,4377_73 -4195_72149,146,4377_1425,Naas,301347058-00008-1,1,4377_7778007_72110101,4377_73 -4195_72149,110,4377_1426,Naas,301377058-00001-1,1,4377_7778007_72110101,4377_73 -4195_72165,272,4377_1427,Dublin,301411136-00002-1,1,4377_7778007_72010101,4377_77 -4195_72165,273,4377_1428,Dublin,301421136-00003-1,1,4377_7778007_72010101,4377_77 -4195_72165,274,4377_1429,Dublin,301431136-00004-1,1,4377_7778007_72010101,4377_77 -4195_72146,272,4377_143,Edenderry,301411127-00002-1,0,4377_7778007_55050101,4377_1 -4195_72165,275,4377_1430,Dublin,301441136-00005-1,1,4377_7778007_72010101,4377_77 -4195_72165,276,4377_1431,Dublin,301551136-00006-1,1,4377_7778007_72010101,4377_77 -4195_72146,273,4377_144,Edenderry,301421127-00003-1,0,4377_7778007_55050101,4377_1 -4195_72146,274,4377_145,Edenderry,301431127-00004-1,0,4377_7778007_55050101,4377_1 -4195_72146,275,4377_146,Edenderry,301441127-00005-1,0,4377_7778007_55050101,4377_1 -4195_72146,276,4377_147,Edenderry,301551127-00006-1,0,4377_7778007_55050101,4377_1 -4195_72146,277,4377_148,Edenderry,301664089-00007-1,0,4377_7778007_72120101,4377_1 -4195_72146,272,4377_149,Prosperous,301411131-00002-1,0,4377_7778007_72010101,4377_2 -4195_72146,276,4377_15,Edenderry,301551021-00006-1,0,4377_7778007_72040101,4377_1 -4195_72146,273,4377_150,Prosperous,301421131-00003-1,0,4377_7778007_72010101,4377_2 -4195_72146,274,4377_151,Prosperous,301431131-00004-1,0,4377_7778007_72010101,4377_2 -4195_72146,275,4377_152,Prosperous,301441131-00005-1,0,4377_7778007_72010101,4377_2 -4195_72146,276,4377_153,Prosperous,301551131-00006-1,0,4377_7778007_72010101,4377_2 -4195_72146,115,4377_154,Edenderry,301317061-00010-1,0,4377_7778007_65050101,4377_1 -4195_72146,271,4377_155,Edenderry,301337061-00009-1,0,4377_7778007_65050101,4377_1 -4195_72146,146,4377_156,Edenderry,301347061-00008-1,0,4377_7778007_65050101,4377_1 -4195_72146,110,4377_157,Edenderry,301377061-00001-1,0,4377_7778007_65050101,4377_1 -4195_72146,277,4377_158,Edenderry,301664091-00007-1,0,4377_7778007_55030101,4377_3 -4195_72146,272,4377_159,Prosperous,301411139-00002-1,0,4377_7778007_75030101,4377_2 -4195_72146,277,4377_16,Edenderry,301664005-00007-1,0,4377_7778007_72030101,4377_1 -4195_72146,273,4377_160,Prosperous,301421139-00003-1,0,4377_7778007_75030101,4377_2 -4195_72146,274,4377_161,Prosperous,301431139-00004-1,0,4377_7778007_75030101,4377_2 -4195_72146,275,4377_162,Prosperous,301441139-00005-1,0,4377_7778007_75030101,4377_2 -4195_72146,276,4377_163,Prosperous,301551139-00006-1,0,4377_7778007_75030101,4377_2 -4195_72146,277,4377_164,Edenderry,301664097-00007-1,0,4377_7778007_65050101,4377_1 -4195_72146,272,4377_165,Edenderry,301411145-00002-1,0,4377_7778007_62010101,4377_1 -4195_72146,273,4377_166,Edenderry,301421145-00003-1,0,4377_7778007_62010101,4377_1 -4195_72146,274,4377_167,Edenderry,301431145-00004-1,0,4377_7778007_62010101,4377_1 -4195_72146,275,4377_168,Edenderry,301441145-00005-1,0,4377_7778007_62010101,4377_1 -4195_72146,276,4377_169,Edenderry,301551145-00006-1,0,4377_7778007_62010101,4377_1 -4195_72146,272,4377_17,Prosperous,301411029-00002-1,0,4377_7778007_72010101,4377_2 -4195_72146,115,4377_170,Edenderry,301317067-00010-1,0,4377_7778007_65030101,4377_1 -4195_72146,271,4377_171,Edenderry,301337067-00009-1,0,4377_7778007_65030101,4377_1 -4195_72146,146,4377_172,Edenderry,301347067-00008-1,0,4377_7778007_65030101,4377_1 -4195_72146,110,4377_173,Edenderry,301377067-00001-1,0,4377_7778007_65030101,4377_1 -4195_72146,277,4377_174,Edenderry,301664101-00007-1,0,4377_7778007_65040101,4377_3 -4195_72146,272,4377_175,Edenderry,301411153-00002-1,0,4377_7778007_55030101,4377_1 -4195_72146,273,4377_176,Edenderry,301421153-00003-1,0,4377_7778007_55030101,4377_1 -4195_72146,274,4377_177,Edenderry,301431153-00004-1,0,4377_7778007_55030101,4377_1 -4195_72146,275,4377_178,Edenderry,301441153-00005-1,0,4377_7778007_55030101,4377_1 -4195_72146,276,4377_179,Edenderry,301551153-00006-1,0,4377_7778007_55030101,4377_1 -4195_72146,273,4377_18,Prosperous,301421029-00003-1,0,4377_7778007_72010101,4377_2 -4195_72146,272,4377_180,Prosperous,301411157-00002-1,0,4377_7778007_65030101,4377_2 -4195_72146,273,4377_181,Prosperous,301421157-00003-1,0,4377_7778007_65030101,4377_2 -4195_72146,274,4377_182,Prosperous,301431157-00004-1,0,4377_7778007_65030101,4377_2 -4195_72146,275,4377_183,Prosperous,301441157-00005-1,0,4377_7778007_65030101,4377_2 -4195_72146,276,4377_184,Prosperous,301551157-00006-1,0,4377_7778007_65030101,4377_2 -4195_72146,115,4377_185,Edenderry,301317075-00010-1,0,4377_7778007_65060101,4377_1 -4195_72146,271,4377_186,Edenderry,301337075-00009-1,0,4377_7778007_65060101,4377_1 -4195_72146,146,4377_187,Edenderry,301347075-00008-1,0,4377_7778007_65060101,4377_1 -4195_72146,110,4377_188,Edenderry,301377075-00001-1,0,4377_7778007_65060101,4377_1 -4195_72146,272,4377_189,Edenderry,301411163-00002-1,0,4377_7778007_65050101,4377_3 -4195_72146,274,4377_19,Prosperous,301431029-00004-1,0,4377_7778007_72010101,4377_2 -4195_72146,273,4377_190,Edenderry,301421163-00003-1,0,4377_7778007_65050101,4377_3 -4195_72146,274,4377_191,Edenderry,301431163-00004-1,0,4377_7778007_65050101,4377_3 -4195_72146,275,4377_192,Edenderry,301441163-00005-1,0,4377_7778007_65050101,4377_3 -4195_72146,276,4377_193,Edenderry,301551163-00006-1,0,4377_7778007_65050101,4377_3 -4195_72146,277,4377_194,Edenderry,301664109-00007-1,0,4377_7778007_65020101,4377_5 -4195_72146,272,4377_195,Edenderry,301411169-00002-1,0,4377_7778007_65010101,4377_1 -4195_72146,273,4377_196,Edenderry,301421169-00003-1,0,4377_7778007_65010101,4377_1 -4195_72146,274,4377_197,Edenderry,301431169-00004-1,0,4377_7778007_65010101,4377_1 -4195_72146,275,4377_198,Edenderry,301441169-00005-1,0,4377_7778007_65010101,4377_1 -4195_72146,276,4377_199,Edenderry,301551169-00006-1,0,4377_7778007_65010101,4377_1 -4195_72146,273,4377_2,Prosperous,301421003-00003-1,0,4377_7778007_65020101,4377_2 -4195_72146,275,4377_20,Prosperous,301441029-00005-1,0,4377_7778007_72010101,4377_2 -4195_72146,277,4377_200,Edenderry,301664115-00007-1,0,4377_7778007_65060101,4377_3 -4195_72146,115,4377_201,Edenderry,301317083-00010-1,0,4377_7778007_65040101,4377_1 -4195_72146,271,4377_202,Edenderry,301337083-00009-1,0,4377_7778007_65040101,4377_1 -4195_72146,146,4377_203,Edenderry,301347083-00008-1,0,4377_7778007_65040101,4377_1 -4195_72146,110,4377_204,Edenderry,301377083-00001-1,0,4377_7778007_65040101,4377_1 -4195_72146,272,4377_205,Edenderry,301411175-00002-1,0,4377_7778007_62020101,4377_3 -4195_72146,273,4377_206,Edenderry,301421175-00003-1,0,4377_7778007_62020101,4377_3 -4195_72146,274,4377_207,Edenderry,301431175-00004-1,0,4377_7778007_62020101,4377_3 -4195_72146,275,4377_208,Edenderry,301441175-00005-1,0,4377_7778007_62020101,4377_3 -4195_72146,276,4377_209,Edenderry,301551175-00006-1,0,4377_7778007_62020101,4377_3 -4195_72146,276,4377_21,Prosperous,301551029-00006-1,0,4377_7778007_72010101,4377_2 -4195_72146,277,4377_210,Edenderry,301664119-00007-1,0,4377_7778007_65030101,4377_5 -4195_72146,272,4377_211,Edenderry,301411181-00002-1,0,4377_7778007_75010101,4377_1 -4195_72146,273,4377_212,Edenderry,301421181-00003-1,0,4377_7778007_75010101,4377_1 -4195_72146,274,4377_213,Edenderry,301431181-00004-1,0,4377_7778007_75010101,4377_1 -4195_72146,275,4377_214,Edenderry,301441181-00005-1,0,4377_7778007_75010101,4377_1 -4195_72146,276,4377_215,Edenderry,301551181-00006-1,0,4377_7778007_75010101,4377_1 -4195_72146,277,4377_216,Edenderry,301664123-00007-1,0,4377_7778007_65050101,4377_3 -4195_72146,115,4377_217,Edenderry,301317087-00010-1,0,4377_7778007_65030101,4377_1 -4195_72146,271,4377_218,Edenderry,301337087-00009-1,0,4377_7778007_65030101,4377_1 -4195_72146,146,4377_219,Edenderry,301347087-00008-1,0,4377_7778007_65030101,4377_1 -4195_72146,272,4377_22,Edenderry,301411033-00002-1,0,4377_7778007_72120101,4377_1 -4195_72146,110,4377_220,Edenderry,301377087-00001-1,0,4377_7778007_65030101,4377_1 -4195_72146,272,4377_221,Edenderry,301411187-00002-1,0,4377_7778007_55030101,4377_1 -4195_72146,273,4377_222,Edenderry,301421187-00003-1,0,4377_7778007_55030101,4377_1 -4195_72146,274,4377_223,Edenderry,301431187-00004-1,0,4377_7778007_55030101,4377_1 -4195_72146,275,4377_224,Edenderry,301441187-00005-1,0,4377_7778007_55030101,4377_1 -4195_72146,276,4377_225,Edenderry,301551187-00006-1,0,4377_7778007_55030101,4377_1 -4195_72146,277,4377_226,Edenderry,301664127-00007-1,0,4377_7778007_65040101,4377_3 -4195_72146,272,4377_227,Dublin,301411006-00002-1,1,4377_7778007_65030101,4377_7 -4195_72146,273,4377_228,Dublin,301421006-00003-1,1,4377_7778007_65030101,4377_7 -4195_72146,274,4377_229,Dublin,301431006-00004-1,1,4377_7778007_65030101,4377_7 -4195_72146,273,4377_23,Edenderry,301421033-00003-1,0,4377_7778007_72120101,4377_1 -4195_72146,275,4377_230,Dublin,301441006-00005-1,1,4377_7778007_65030101,4377_7 -4195_72146,276,4377_231,Dublin,301551006-00006-1,1,4377_7778007_65030101,4377_7 -4195_72146,272,4377_232,Dublin,301411008-00002-1,1,4377_7778007_65020101,4377_9 -4195_72146,273,4377_233,Dublin,301421008-00003-1,1,4377_7778007_65020101,4377_9 -4195_72146,274,4377_234,Dublin,301431008-00004-1,1,4377_7778007_65020101,4377_9 -4195_72146,275,4377_235,Dublin,301441008-00005-1,1,4377_7778007_65020101,4377_9 -4195_72146,276,4377_236,Dublin,301551008-00006-1,1,4377_7778007_65020101,4377_9 -4195_72146,277,4377_237,Dublin,301664004-00007-1,1,4377_7778007_65010101,4377_7 -4195_72146,272,4377_238,Dublin,301411040-00002-1,1,4377_7778007_55040101,4377_7 -4195_72146,273,4377_239,Dublin,301421040-00003-1,1,4377_7778007_55040101,4377_7 -4195_72146,274,4377_24,Edenderry,301431033-00004-1,0,4377_7778007_72120101,4377_1 -4195_72146,274,4377_240,Dublin,301431040-00004-1,1,4377_7778007_55040101,4377_7 -4195_72146,275,4377_241,Dublin,301441040-00005-1,1,4377_7778007_55040101,4377_7 -4195_72146,276,4377_242,Dublin,301551040-00006-1,1,4377_7778007_55040101,4377_7 -4195_72146,115,4377_243,Dublin,301317002-00010-1,1,4377_7778007_65010101,4377_7 -4195_72146,271,4377_244,Dublin,301337002-00009-1,1,4377_7778007_65010101,4377_7 -4195_72146,146,4377_245,Dublin,301347002-00008-1,1,4377_7778007_65010101,4377_7 -4195_72146,110,4377_246,Dublin,301377002-00001-1,1,4377_7778007_65010101,4377_7 -4195_72146,277,4377_247,Dublin,301664012-00007-1,1,4377_7778007_65020101,4377_10 -4195_72146,272,4377_248,Dublin,301411060-00002-1,1,4377_7778007_65060101,4377_7 -4195_72146,273,4377_249,Dublin,301421060-00003-1,1,4377_7778007_65060101,4377_7 -4195_72146,275,4377_25,Edenderry,301441033-00005-1,0,4377_7778007_72120101,4377_1 -4195_72146,274,4377_250,Dublin,301431060-00004-1,1,4377_7778007_65060101,4377_7 -4195_72146,275,4377_251,Dublin,301441060-00005-1,1,4377_7778007_65060101,4377_7 -4195_72146,276,4377_252,Dublin,301551060-00006-1,1,4377_7778007_65060101,4377_7 -4195_72146,272,4377_253,Dublin,301411062-00002-1,1,4377_7778007_65020101,4377_9 -4195_72146,273,4377_254,Dublin,301421062-00003-1,1,4377_7778007_65020101,4377_9 -4195_72146,274,4377_255,Dublin,301431062-00004-1,1,4377_7778007_65020101,4377_9 -4195_72146,275,4377_256,Dublin,301441062-00005-1,1,4377_7778007_65020101,4377_9 -4195_72146,276,4377_257,Dublin,301551062-00006-1,1,4377_7778007_65020101,4377_9 -4195_72146,272,4377_258,Dublin,301411066-00002-1,1,4377_7778007_65010101,4377_7 -4195_72146,273,4377_259,Dublin,301421066-00003-1,1,4377_7778007_65010101,4377_7 -4195_72146,276,4377_26,Edenderry,301551033-00006-1,0,4377_7778007_72120101,4377_1 -4195_72146,274,4377_260,Dublin,301431066-00004-1,1,4377_7778007_65010101,4377_7 -4195_72146,275,4377_261,Dublin,301441066-00005-1,1,4377_7778007_65010101,4377_7 -4195_72146,276,4377_262,Dublin,301551066-00006-1,1,4377_7778007_65010101,4377_7 -4195_72146,277,4377_263,Dublin,301664020-00007-1,1,4377_7778007_55010101,4377_7 -4195_72146,115,4377_264,Dublin,301317008-00010-1,1,4377_7778007_65020101,4377_7 -4195_72146,271,4377_265,Dublin,301337008-00009-1,1,4377_7778007_65020101,4377_7 -4195_72146,146,4377_266,Dublin,301347008-00008-1,1,4377_7778007_65020101,4377_7 -4195_72146,110,4377_267,Dublin,301377008-00001-1,1,4377_7778007_65020101,4377_7 -4195_72146,277,4377_268,Dublin,301664024-00007-1,1,4377_7778007_65030101,4377_9 -4195_72146,272,4377_269,Dublin,301411070-00002-1,1,4377_7778007_72060101,4377_8 -4195_72146,115,4377_27,Edenderry,301317005-00010-1,0,4377_7778007_72020101,4377_1 -4195_72146,273,4377_270,Dublin,301421070-00003-1,1,4377_7778007_72060101,4377_8 -4195_72146,274,4377_271,Dublin,301431070-00004-1,1,4377_7778007_72060101,4377_8 -4195_72146,275,4377_272,Dublin,301441070-00005-1,1,4377_7778007_72060101,4377_8 -4195_72146,276,4377_273,Dublin,301551070-00006-1,1,4377_7778007_72060101,4377_8 -4195_72146,272,4377_274,Dublin,301411074-00002-1,1,4377_7778007_55050101,4377_7 -4195_72146,273,4377_275,Dublin,301421074-00003-1,1,4377_7778007_55050101,4377_7 -4195_72146,274,4377_276,Dublin,301431074-00004-1,1,4377_7778007_55050101,4377_7 -4195_72146,275,4377_277,Dublin,301441074-00005-1,1,4377_7778007_55050101,4377_7 -4195_72146,276,4377_278,Dublin,301551074-00006-1,1,4377_7778007_55050101,4377_7 -4195_72146,277,4377_279,Dublin,301664028-00007-1,1,4377_7778007_55020101,4377_7 -4195_72146,271,4377_28,Edenderry,301337005-00009-1,0,4377_7778007_72020101,4377_1 -4195_72146,277,4377_280,Dublin,301664032-00007-1,1,4377_7778007_72110101,4377_9 -4195_72146,115,4377_281,Dublin,301317012-00010-1,1,4377_7778007_65040101,4377_7 -4195_72146,271,4377_282,Dublin,301337012-00009-1,1,4377_7778007_65040101,4377_7 -4195_72146,146,4377_283,Dublin,301347012-00008-1,1,4377_7778007_65040101,4377_7 -4195_72146,110,4377_284,Dublin,301377012-00001-1,1,4377_7778007_65040101,4377_7 -4195_72146,272,4377_285,Dublin,301411082-00002-1,1,4377_7778007_55010101,4377_8 -4195_72146,273,4377_286,Dublin,301421082-00003-1,1,4377_7778007_55010101,4377_8 -4195_72146,274,4377_287,Dublin,301431082-00004-1,1,4377_7778007_55010101,4377_8 -4195_72146,275,4377_288,Dublin,301441082-00005-1,1,4377_7778007_55010101,4377_8 -4195_72146,276,4377_289,Dublin,301551082-00006-1,1,4377_7778007_55010101,4377_8 -4195_72146,146,4377_29,Edenderry,301347005-00008-1,0,4377_7778007_72020101,4377_1 -4195_72146,277,4377_290,Dublin,301664040-00007-1,1,4377_7778007_65050101,4377_7 -4195_72146,277,4377_291,Dublin,301664042-00007-1,1,4377_7778007_62010101,4377_8 -4195_72146,272,4377_292,Dublin,301411086-00002-1,1,4377_7778007_75020101,4377_7 -4195_72146,273,4377_293,Dublin,301421086-00003-1,1,4377_7778007_75020101,4377_7 -4195_72146,274,4377_294,Dublin,301431086-00004-1,1,4377_7778007_75020101,4377_7 -4195_72146,275,4377_295,Dublin,301441086-00005-1,1,4377_7778007_75020101,4377_7 -4195_72146,276,4377_296,Dublin,301551086-00006-1,1,4377_7778007_75020101,4377_7 -4195_72146,277,4377_297,Dublin,301664044-00007-1,1,4377_7778007_55030101,4377_10 -4195_72146,115,4377_298,Dublin,301317020-00010-1,1,4377_7778007_65050101,4377_7 -4195_72146,271,4377_299,Dublin,301337020-00009-1,1,4377_7778007_65050101,4377_7 -4195_72146,274,4377_3,Prosperous,301431003-00004-1,0,4377_7778007_65020101,4377_2 -4195_72146,110,4377_30,Edenderry,301377005-00001-1,0,4377_7778007_72020101,4377_1 -4195_72146,146,4377_300,Dublin,301347020-00008-1,1,4377_7778007_65050101,4377_7 -4195_72146,110,4377_301,Dublin,301377020-00001-1,1,4377_7778007_65050101,4377_7 -4195_72146,272,4377_302,Dublin,301411088-00002-1,1,4377_7778007_65030101,4377_9 -4195_72146,273,4377_303,Dublin,301421088-00003-1,1,4377_7778007_65030101,4377_9 -4195_72146,274,4377_304,Dublin,301431088-00004-1,1,4377_7778007_65030101,4377_9 -4195_72146,275,4377_305,Dublin,301441088-00005-1,1,4377_7778007_65030101,4377_9 -4195_72146,276,4377_306,Dublin,301551088-00006-1,1,4377_7778007_65030101,4377_9 -4195_72146,272,4377_307,Dublin,301411094-00002-1,1,4377_7778007_72040101,4377_7 -4195_72146,273,4377_308,Dublin,301421094-00003-1,1,4377_7778007_72040101,4377_7 -4195_72146,274,4377_309,Dublin,301431094-00004-1,1,4377_7778007_72040101,4377_7 -4195_72146,277,4377_31,Edenderry,301664013-00007-1,0,4377_7778007_72080101,4377_3 -4195_72146,275,4377_310,Dublin,301441094-00005-1,1,4377_7778007_72040101,4377_7 -4195_72146,276,4377_311,Dublin,301551094-00006-1,1,4377_7778007_72040101,4377_7 -4195_72146,277,4377_312,Dublin,301664054-00007-1,1,4377_7778007_72030101,4377_10 -4195_72146,115,4377_313,Dublin,301317026-00010-1,1,4377_7778007_65060101,4377_7 -4195_72146,271,4377_314,Dublin,301337026-00009-1,1,4377_7778007_65060101,4377_7 -4195_72146,146,4377_315,Dublin,301347026-00008-1,1,4377_7778007_65060101,4377_7 -4195_72146,110,4377_316,Dublin,301377026-00001-1,1,4377_7778007_65060101,4377_7 -4195_72146,272,4377_317,Dublin,301411102-00002-1,1,4377_7778007_72120101,4377_7 -4195_72146,273,4377_318,Dublin,301421102-00003-1,1,4377_7778007_72120101,4377_7 -4195_72146,274,4377_319,Dublin,301431102-00004-1,1,4377_7778007_72120101,4377_7 -4195_72146,272,4377_32,Edenderry,301411045-00002-1,0,4377_7778007_75040101,4377_1 -4195_72146,275,4377_320,Dublin,301441102-00005-1,1,4377_7778007_72120101,4377_7 -4195_72146,276,4377_321,Dublin,301551102-00006-1,1,4377_7778007_72120101,4377_7 -4195_72146,277,4377_322,Dublin,301664060-00007-1,1,4377_7778007_72080101,4377_10 -4195_72146,115,4377_323,Dublin,301317032-00010-1,1,4377_7778007_72020101,4377_7 -4195_72146,271,4377_324,Dublin,301337032-00009-1,1,4377_7778007_72020101,4377_7 -4195_72146,146,4377_325,Dublin,301347032-00008-1,1,4377_7778007_72020101,4377_7 -4195_72146,110,4377_326,Dublin,301377032-00001-1,1,4377_7778007_72020101,4377_7 -4195_72146,272,4377_327,Dublin,301411104-00002-1,1,4377_7778007_72060101,4377_9 -4195_72146,273,4377_328,Dublin,301421104-00003-1,1,4377_7778007_72060101,4377_9 -4195_72146,274,4377_329,Dublin,301431104-00004-1,1,4377_7778007_72060101,4377_9 -4195_72146,273,4377_33,Edenderry,301421045-00003-1,0,4377_7778007_75040101,4377_1 -4195_72146,275,4377_330,Dublin,301441104-00005-1,1,4377_7778007_72060101,4377_9 -4195_72146,276,4377_331,Dublin,301551104-00006-1,1,4377_7778007_72060101,4377_9 -4195_72146,277,4377_332,Dublin,301664064-00007-1,1,4377_7778007_72040101,4377_9 -4195_72146,272,4377_333,Dublin,301411114-00002-1,1,4377_7778007_65020101,4377_7 -4195_72146,273,4377_334,Dublin,301421114-00003-1,1,4377_7778007_65020101,4377_7 -4195_72146,274,4377_335,Dublin,301431114-00004-1,1,4377_7778007_65020101,4377_7 -4195_72146,275,4377_336,Dublin,301441114-00005-1,1,4377_7778007_65020101,4377_7 -4195_72146,276,4377_337,Dublin,301551114-00006-1,1,4377_7778007_65020101,4377_7 -4195_72146,277,4377_338,Dublin,301664072-00007-1,1,4377_7778007_72100101,4377_10 -4195_72146,115,4377_339,Dublin,301317040-00010-1,1,4377_7778007_72010101,4377_7 -4195_72146,274,4377_34,Edenderry,301431045-00004-1,0,4377_7778007_75040101,4377_1 -4195_72146,271,4377_340,Dublin,301337040-00009-1,1,4377_7778007_72010101,4377_7 -4195_72146,146,4377_341,Dublin,301347040-00008-1,1,4377_7778007_72010101,4377_7 -4195_72146,110,4377_342,Dublin,301377040-00001-1,1,4377_7778007_72010101,4377_7 -4195_72146,272,4377_343,Dublin,301411116-00002-1,1,4377_7778007_65030101,4377_9 -4195_72146,273,4377_344,Dublin,301421116-00003-1,1,4377_7778007_65030101,4377_9 -4195_72146,274,4377_345,Dublin,301431116-00004-1,1,4377_7778007_65030101,4377_9 -4195_72146,275,4377_346,Dublin,301441116-00005-1,1,4377_7778007_65030101,4377_9 -4195_72146,276,4377_347,Dublin,301551116-00006-1,1,4377_7778007_65030101,4377_9 -4195_72146,277,4377_348,Dublin,301664074-00007-1,1,4377_7778007_65030101,4377_9 -4195_72146,272,4377_349,Dublin,301411124-00002-1,1,4377_7778007_72180101,4377_7 -4195_72146,275,4377_35,Edenderry,301441045-00005-1,0,4377_7778007_75040101,4377_1 -4195_72146,273,4377_350,Dublin,301421124-00003-1,1,4377_7778007_72180101,4377_7 -4195_72146,274,4377_351,Dublin,301431124-00004-1,1,4377_7778007_72180101,4377_7 -4195_72146,275,4377_352,Dublin,301441124-00005-1,1,4377_7778007_72180101,4377_7 -4195_72146,276,4377_353,Dublin,301551124-00006-1,1,4377_7778007_72180101,4377_7 -4195_72146,277,4377_354,Dublin,301664082-00007-1,1,4377_7778007_62010101,4377_10 -4195_72146,115,4377_355,Dublin,301317048-00010-1,1,4377_7778007_72060101,4377_7 -4195_72146,271,4377_356,Dublin,301337048-00009-1,1,4377_7778007_72060101,4377_7 -4195_72146,146,4377_357,Dublin,301347048-00008-1,1,4377_7778007_72060101,4377_7 -4195_72146,110,4377_358,Dublin,301377048-00001-1,1,4377_7778007_72060101,4377_7 -4195_72146,277,4377_359,Dublin,301664084-00007-1,1,4377_7778007_72010101,4377_9 -4195_72146,276,4377_36,Edenderry,301551045-00006-1,0,4377_7778007_75040101,4377_1 -4195_72146,277,4377_360,Dublin,301664088-00007-1,1,4377_7778007_72120101,4377_7 -4195_72146,272,4377_361,Dublin,301411140-00002-1,1,4377_7778007_75010101,4377_7 -4195_72146,273,4377_362,Dublin,301421140-00003-1,1,4377_7778007_75010101,4377_7 -4195_72146,274,4377_363,Dublin,301431140-00004-1,1,4377_7778007_75010101,4377_7 -4195_72146,275,4377_364,Dublin,301441140-00005-1,1,4377_7778007_75010101,4377_7 -4195_72146,276,4377_365,Dublin,301551140-00006-1,1,4377_7778007_75010101,4377_7 -4195_72146,277,4377_366,Dublin,301664092-00007-1,1,4377_7778007_72130101,4377_7 -4195_72146,115,4377_367,Dublin,301317054-00010-1,1,4377_7778007_72070101,4377_7 -4195_72146,271,4377_368,Dublin,301337054-00009-1,1,4377_7778007_72070101,4377_7 -4195_72146,146,4377_369,Dublin,301347054-00008-1,1,4377_7778007_72070101,4377_7 -4195_72146,115,4377_37,Edenderry,301317009-00010-1,0,4377_7778007_72010101,4377_1 -4195_72146,110,4377_370,Dublin,301377054-00001-1,1,4377_7778007_72070101,4377_7 -4195_72146,272,4377_371,Dublin,301411142-00002-1,1,4377_7778007_65060101,4377_9 -4195_72146,273,4377_372,Dublin,301421142-00003-1,1,4377_7778007_65060101,4377_9 -4195_72146,274,4377_373,Dublin,301431142-00004-1,1,4377_7778007_65060101,4377_9 -4195_72146,275,4377_374,Dublin,301441142-00005-1,1,4377_7778007_65060101,4377_9 -4195_72146,276,4377_375,Dublin,301551142-00006-1,1,4377_7778007_65060101,4377_9 -4195_72146,277,4377_376,Dublin,301664096-00007-1,1,4377_7778007_65050101,4377_9 -4195_72146,272,4377_377,Dublin,301411150-00002-1,1,4377_7778007_55030101,4377_7 -4195_72146,273,4377_378,Dublin,301421150-00003-1,1,4377_7778007_55030101,4377_7 -4195_72146,274,4377_379,Dublin,301431150-00004-1,1,4377_7778007_55030101,4377_7 -4195_72146,271,4377_38,Edenderry,301337009-00009-1,0,4377_7778007_72010101,4377_1 -4195_72146,275,4377_380,Dublin,301441150-00005-1,1,4377_7778007_55030101,4377_7 -4195_72146,276,4377_381,Dublin,301551150-00006-1,1,4377_7778007_55030101,4377_7 -4195_72146,277,4377_382,Dublin,301664104-00007-1,1,4377_7778007_72150101,4377_7 -4195_72146,115,4377_383,Dublin,301317064-00010-1,1,4377_7778007_72080101,4377_7 -4195_72146,271,4377_384,Dublin,301337064-00009-1,1,4377_7778007_72080101,4377_7 -4195_72146,146,4377_385,Dublin,301347064-00008-1,1,4377_7778007_72080101,4377_7 -4195_72146,110,4377_386,Dublin,301377064-00001-1,1,4377_7778007_72080101,4377_7 -4195_72146,272,4377_387,Dublin,301411156-00002-1,1,4377_7778007_65050101,4377_7 -4195_72146,273,4377_388,Dublin,301421156-00003-1,1,4377_7778007_65050101,4377_7 -4195_72146,274,4377_389,Dublin,301431156-00004-1,1,4377_7778007_65050101,4377_7 -4195_72146,146,4377_39,Edenderry,301347009-00008-1,0,4377_7778007_72010101,4377_1 -4195_72146,275,4377_390,Dublin,301441156-00005-1,1,4377_7778007_65050101,4377_7 -4195_72146,276,4377_391,Dublin,301551156-00006-1,1,4377_7778007_65050101,4377_7 -4195_72146,277,4377_392,Dublin,301664110-00007-1,1,4377_7778007_65020101,4377_7 -4195_72146,115,4377_393,Dublin,301317070-00010-1,1,4377_7778007_65060101,4377_7 -4195_72146,271,4377_394,Dublin,301337070-00009-1,1,4377_7778007_65060101,4377_7 -4195_72146,146,4377_395,Dublin,301347070-00008-1,1,4377_7778007_65060101,4377_7 -4195_72146,110,4377_396,Dublin,301377070-00001-1,1,4377_7778007_65060101,4377_7 -4195_72146,272,4377_397,Dublin,301411160-00002-1,1,4377_7778007_65030101,4377_8 -4195_72146,273,4377_398,Dublin,301421160-00003-1,1,4377_7778007_65030101,4377_8 -4195_72146,274,4377_399,Dublin,301431160-00004-1,1,4377_7778007_65030101,4377_8 -4195_72146,275,4377_4,Prosperous,301441003-00005-1,0,4377_7778007_65020101,4377_2 -4195_72146,110,4377_40,Edenderry,301377009-00001-1,0,4377_7778007_72010101,4377_1 -4195_72146,275,4377_400,Dublin,301441160-00005-1,1,4377_7778007_65030101,4377_8 -4195_72146,276,4377_401,Dublin,301551160-00006-1,1,4377_7778007_65030101,4377_8 -4195_72146,272,4377_402,Dublin,301411166-00002-1,1,4377_7778007_65010101,4377_7 -4195_72146,273,4377_403,Dublin,301421166-00003-1,1,4377_7778007_65010101,4377_7 -4195_72146,274,4377_404,Dublin,301431166-00004-1,1,4377_7778007_65010101,4377_7 -4195_72146,275,4377_405,Dublin,301441166-00005-1,1,4377_7778007_65010101,4377_7 -4195_72146,276,4377_406,Dublin,301551166-00006-1,1,4377_7778007_65010101,4377_7 -4195_72146,277,4377_407,Dublin,301664114-00007-1,1,4377_7778007_65060101,4377_10 -4195_72146,272,4377_408,Dublin,301411172-00002-1,1,4377_7778007_62020101,4377_7 -4195_72146,273,4377_409,Dublin,301421172-00003-1,1,4377_7778007_62020101,4377_7 -4195_72146,277,4377_41,Edenderry,301664019-00007-1,0,4377_7778007_72100101,4377_3 -4195_72146,274,4377_410,Dublin,301431172-00004-1,1,4377_7778007_62020101,4377_7 -4195_72146,275,4377_411,Dublin,301441172-00005-1,1,4377_7778007_62020101,4377_7 -4195_72146,276,4377_412,Dublin,301551172-00006-1,1,4377_7778007_62020101,4377_7 -4195_72146,277,4377_413,Dublin,301664118-00007-1,1,4377_7778007_65030101,4377_10 -4195_72146,115,4377_414,Dublin,301317078-00010-1,1,4377_7778007_65040101,4377_7 -4195_72146,271,4377_415,Dublin,301337078-00009-1,1,4377_7778007_65040101,4377_7 -4195_72146,146,4377_416,Dublin,301347078-00008-1,1,4377_7778007_65040101,4377_7 -4195_72146,110,4377_417,Dublin,301377078-00001-1,1,4377_7778007_65040101,4377_7 -4195_72146,272,4377_418,Dublin,301411176-00002-1,1,4377_7778007_75010101,4377_7 -4195_72146,273,4377_419,Dublin,301421176-00003-1,1,4377_7778007_75010101,4377_7 -4195_72146,272,4377_42,Edenderry,301411047-00002-1,0,4377_7778007_65020101,4377_1 -4195_72146,274,4377_420,Dublin,301431176-00004-1,1,4377_7778007_75010101,4377_7 -4195_72146,275,4377_421,Dublin,301441176-00005-1,1,4377_7778007_75010101,4377_7 -4195_72146,276,4377_422,Dublin,301551176-00006-1,1,4377_7778007_75010101,4377_7 -4195_72146,277,4377_423,Dublin,301664124-00007-1,1,4377_7778007_65050101,4377_7 -4195_72146,115,4377_424,Dublin,301317082-00010-1,1,4377_7778007_65030101,4377_7 -4195_72146,271,4377_425,Dublin,301337082-00009-1,1,4377_7778007_65030101,4377_7 -4195_72146,146,4377_426,Dublin,301347082-00008-1,1,4377_7778007_65030101,4377_7 -4195_72146,110,4377_427,Dublin,301377082-00001-1,1,4377_7778007_65030101,4377_7 -4195_72146,272,4377_428,Dublin,301411182-00002-1,1,4377_7778007_55030101,4377_7 -4195_72146,273,4377_429,Dublin,301421182-00003-1,1,4377_7778007_55030101,4377_7 -4195_72146,273,4377_43,Edenderry,301421047-00003-1,0,4377_7778007_65020101,4377_1 -4195_72146,274,4377_430,Dublin,301431182-00004-1,1,4377_7778007_55030101,4377_7 -4195_72146,275,4377_431,Dublin,301441182-00005-1,1,4377_7778007_55030101,4377_7 -4195_72146,276,4377_432,Dublin,301551182-00006-1,1,4377_7778007_55030101,4377_7 -4195_72146,277,4377_433,Dublin,301664130-00007-1,1,4377_7778007_65040101,4377_10 -4195_72150,272,4377_434,UCD Belfield,301411024-00002-1,1,4377_7778007_55010101,4377_11 -4195_72150,273,4377_435,UCD Belfield,301421024-00003-1,1,4377_7778007_55010101,4377_11 -4195_72150,274,4377_436,UCD Belfield,301431024-00004-1,1,4377_7778007_55010101,4377_11 -4195_72150,275,4377_437,UCD Belfield,301441024-00005-1,1,4377_7778007_55010101,4377_11 -4195_72150,276,4377_438,UCD Belfield,301551024-00006-1,1,4377_7778007_55010101,4377_11 -4195_72150,272,4377_439,Dublin,301411038-00002-1,1,4377_7778007_55020101,4377_12 -4195_72146,274,4377_44,Edenderry,301431047-00004-1,0,4377_7778007_65020101,4377_1 -4195_72150,273,4377_440,Dublin,301421038-00003-1,1,4377_7778007_55020101,4377_12 -4195_72150,274,4377_441,Dublin,301431038-00004-1,1,4377_7778007_55020101,4377_12 -4195_72150,275,4377_442,Dublin,301441038-00005-1,1,4377_7778007_55020101,4377_12 -4195_72150,276,4377_443,Dublin,301551038-00006-1,1,4377_7778007_55020101,4377_12 -4195_72150,272,4377_444,Dublin,301411050-00002-1,1,4377_7778007_62020101,4377_12 -4195_72150,273,4377_445,Dublin,301421050-00003-1,1,4377_7778007_62020101,4377_12 -4195_72150,274,4377_446,Dublin,301431050-00004-1,1,4377_7778007_62020101,4377_12 -4195_72150,275,4377_447,Dublin,301441050-00005-1,1,4377_7778007_62020101,4377_12 -4195_72150,276,4377_448,Dublin,301551050-00006-1,1,4377_7778007_62020101,4377_12 -4195_72151,272,4377_449,Newbridge,301411041-00002-1,0,4377_7778007_72050101,4377_13 -4195_72146,275,4377_45,Edenderry,301441047-00005-1,0,4377_7778007_65020101,4377_1 -4195_72151,273,4377_450,Newbridge,301421041-00003-1,0,4377_7778007_72050101,4377_13 -4195_72151,274,4377_451,Newbridge,301431041-00004-1,0,4377_7778007_72050101,4377_13 -4195_72151,275,4377_452,Newbridge,301441041-00005-1,0,4377_7778007_72050101,4377_13 -4195_72151,276,4377_453,Newbridge,301551041-00006-1,0,4377_7778007_72050101,4377_13 -4195_72151,272,4377_454,Newbridge,301411071-00002-1,0,4377_7778007_72070101,4377_13 -4195_72151,273,4377_455,Newbridge,301421071-00003-1,0,4377_7778007_72070101,4377_13 -4195_72151,274,4377_456,Newbridge,301431071-00004-1,0,4377_7778007_72070101,4377_13 -4195_72151,275,4377_457,Newbridge,301441071-00005-1,0,4377_7778007_72070101,4377_13 -4195_72151,276,4377_458,Newbridge,301551071-00006-1,0,4377_7778007_72070101,4377_13 -4195_72151,272,4377_459,Newbridge,301411091-00002-1,0,4377_7778007_72090101,4377_13 -4195_72146,276,4377_46,Edenderry,301551047-00006-1,0,4377_7778007_65020101,4377_1 -4195_72151,273,4377_460,Newbridge,301421091-00003-1,0,4377_7778007_72090101,4377_13 -4195_72151,274,4377_461,Newbridge,301431091-00004-1,0,4377_7778007_72090101,4377_13 -4195_72151,275,4377_462,Newbridge,301441091-00005-1,0,4377_7778007_72090101,4377_13 -4195_72151,276,4377_463,Newbridge,301551091-00006-1,0,4377_7778007_72090101,4377_13 -4195_72151,277,4377_464,Newbridge,301664067-00007-1,0,4377_7778007_72040101,4377_14 -4195_72151,277,4377_465,Newbridge,301664083-00007-1,0,4377_7778007_72110101,4377_13 -4195_72151,277,4377_466,Dublin,301664010-00007-1,1,4377_7778007_72040101,4377_15 -4195_72151,277,4377_467,Dublin,301664048-00007-1,1,4377_7778007_72020101,4377_15 -4195_72151,272,4377_468,Dublin,301411090-00002-1,1,4377_7778007_72070101,4377_15 -4195_72151,273,4377_469,Dublin,301421090-00003-1,1,4377_7778007_72070101,4377_15 -4195_72146,272,4377_47,Prosperous,301411051-00002-1,0,4377_7778007_72060101,4377_2 -4195_72151,274,4377_470,Dublin,301431090-00004-1,1,4377_7778007_72070101,4377_15 -4195_72151,275,4377_471,Dublin,301441090-00005-1,1,4377_7778007_72070101,4377_15 -4195_72151,276,4377_472,Dublin,301551090-00006-1,1,4377_7778007_72070101,4377_15 -4195_72151,272,4377_473,Dublin,301411120-00002-1,1,4377_7778007_62020101,4377_15 -4195_72151,273,4377_474,Dublin,301421120-00003-1,1,4377_7778007_62020101,4377_15 -4195_72151,274,4377_475,Dublin,301431120-00004-1,1,4377_7778007_62020101,4377_15 -4195_72151,275,4377_476,Dublin,301441120-00005-1,1,4377_7778007_62020101,4377_15 -4195_72151,276,4377_477,Dublin,301551120-00006-1,1,4377_7778007_62020101,4377_15 -4195_72151,272,4377_478,Dublin,301411146-00002-1,1,4377_7778007_62010101,4377_15 -4195_72151,273,4377_479,Dublin,301421146-00003-1,1,4377_7778007_62010101,4377_15 -4195_72146,273,4377_48,Prosperous,301421051-00003-1,0,4377_7778007_72060101,4377_2 -4195_72151,274,4377_480,Dublin,301431146-00004-1,1,4377_7778007_62010101,4377_15 -4195_72151,275,4377_481,Dublin,301441146-00005-1,1,4377_7778007_62010101,4377_15 -4195_72151,276,4377_482,Dublin,301551146-00006-1,1,4377_7778007_62010101,4377_15 -4195_72152,272,4377_483,Tullamore,301411007-00002-1,0,4377_7778007_65040101,4377_16 -4195_72152,273,4377_484,Tullamore,301421007-00003-1,0,4377_7778007_65040101,4377_16 -4195_72152,274,4377_485,Tullamore,301431007-00004-1,0,4377_7778007_65040101,4377_16 -4195_72152,275,4377_486,Tullamore,301441007-00005-1,0,4377_7778007_65040101,4377_16 -4195_72152,276,4377_487,Tullamore,301551007-00006-1,0,4377_7778007_65040101,4377_16 -4195_72152,272,4377_488,Tullamore,301411039-00002-1,0,4377_7778007_65040101,4377_16 -4195_72152,273,4377_489,Tullamore,301421039-00003-1,0,4377_7778007_65040101,4377_16 -4195_72146,274,4377_49,Prosperous,301431051-00004-1,0,4377_7778007_72060101,4377_2 -4195_72152,274,4377_490,Tullamore,301431039-00004-1,0,4377_7778007_65040101,4377_16 -4195_72152,275,4377_491,Tullamore,301441039-00005-1,0,4377_7778007_65040101,4377_16 -4195_72152,276,4377_492,Tullamore,301551039-00006-1,0,4377_7778007_65040101,4377_16 -4195_72152,115,4377_493,Tullamore,301317013-00010-1,0,4377_7778007_65030101,4377_16 -4195_72152,271,4377_494,Tullamore,301337013-00009-1,0,4377_7778007_65030101,4377_16 -4195_72152,146,4377_495,Tullamore,301347013-00008-1,0,4377_7778007_65030101,4377_16 -4195_72152,110,4377_496,Tullamore,301377013-00001-1,0,4377_7778007_65030101,4377_16 -4195_72152,277,4377_497,Tullamore,301664023-00007-1,0,4377_7778007_65040101,4377_17 -4195_72152,272,4377_498,Tullamore,301411069-00002-1,0,4377_7778007_65040101,4377_16 -4195_72152,273,4377_499,Tullamore,301421069-00003-1,0,4377_7778007_65040101,4377_16 -4195_72146,276,4377_5,Prosperous,301551003-00006-1,0,4377_7778007_65020101,4377_2 -4195_72146,275,4377_50,Prosperous,301441051-00005-1,0,4377_7778007_72060101,4377_2 -4195_72152,274,4377_500,Tullamore,301431069-00004-1,0,4377_7778007_65040101,4377_16 -4195_72152,275,4377_501,Tullamore,301441069-00005-1,0,4377_7778007_65040101,4377_16 -4195_72152,276,4377_502,Tullamore,301551069-00006-1,0,4377_7778007_65040101,4377_16 -4195_72152,115,4377_503,Tullamore,301317035-00010-1,0,4377_7778007_62010101,4377_16 -4195_72152,271,4377_504,Tullamore,301337035-00009-1,0,4377_7778007_62010101,4377_16 -4195_72152,146,4377_505,Tullamore,301347035-00008-1,0,4377_7778007_62010101,4377_16 -4195_72152,110,4377_506,Tullamore,301377035-00001-1,0,4377_7778007_62010101,4377_16 -4195_72152,277,4377_507,Tullamore,301664055-00007-1,0,4377_7778007_65060101,4377_17 -4195_72152,272,4377_508,Tullamore,301411103-00002-1,0,4377_7778007_65040101,4377_16 -4195_72152,273,4377_509,Tullamore,301421103-00003-1,0,4377_7778007_65040101,4377_16 -4195_72146,276,4377_51,Prosperous,301551051-00006-1,0,4377_7778007_72060101,4377_2 -4195_72152,274,4377_510,Tullamore,301431103-00004-1,0,4377_7778007_65040101,4377_16 -4195_72152,275,4377_511,Tullamore,301441103-00005-1,0,4377_7778007_65040101,4377_16 -4195_72152,276,4377_512,Tullamore,301551103-00006-1,0,4377_7778007_65040101,4377_16 -4195_72152,115,4377_513,Tullamore,301317057-00010-1,0,4377_7778007_65010101,4377_16 -4195_72152,271,4377_514,Tullamore,301337057-00009-1,0,4377_7778007_65010101,4377_16 -4195_72152,146,4377_515,Tullamore,301347057-00008-1,0,4377_7778007_65010101,4377_16 -4195_72152,110,4377_516,Tullamore,301377057-00001-1,0,4377_7778007_65010101,4377_16 -4195_72152,277,4377_517,Tullamore,301664085-00007-1,0,4377_7778007_65010101,4377_16 -4195_72152,272,4377_518,Tullamore,301411159-00002-1,0,4377_7778007_65040101,4377_16 -4195_72152,273,4377_519,Tullamore,301421159-00003-1,0,4377_7778007_65040101,4377_16 -4195_72146,277,4377_52,Prosperous,301664025-00007-1,0,4377_7778007_72040101,4377_6 -4195_72152,274,4377_520,Tullamore,301431159-00004-1,0,4377_7778007_65040101,4377_16 -4195_72152,275,4377_521,Tullamore,301441159-00005-1,0,4377_7778007_65040101,4377_16 -4195_72152,276,4377_522,Tullamore,301551159-00006-1,0,4377_7778007_65040101,4377_16 -4195_72152,115,4377_523,Tullamore,301317077-00010-1,0,4377_7778007_65010101,4377_16 -4195_72152,271,4377_524,Tullamore,301337077-00009-1,0,4377_7778007_65010101,4377_16 -4195_72152,146,4377_525,Tullamore,301347077-00008-1,0,4377_7778007_65010101,4377_16 -4195_72152,110,4377_526,Tullamore,301377077-00001-1,0,4377_7778007_65010101,4377_16 -4195_72152,277,4377_527,Tullamore,301664111-00007-1,0,4377_7778007_65010101,4377_16 -4195_72152,272,4377_528,Tullamore,301411179-00002-1,0,4377_7778007_65050101,4377_16 -4195_72152,273,4377_529,Tullamore,301421179-00003-1,0,4377_7778007_65050101,4377_16 -4195_72146,277,4377_53,Edenderry,301664029-00007-1,0,4377_7778007_62010101,4377_1 -4195_72152,274,4377_530,Tullamore,301431179-00004-1,0,4377_7778007_65050101,4377_16 -4195_72152,275,4377_531,Tullamore,301441179-00005-1,0,4377_7778007_65050101,4377_16 -4195_72152,276,4377_532,Tullamore,301551179-00006-1,0,4377_7778007_65050101,4377_16 -4195_72152,272,4377_533,Enfield,301411004-00002-1,1,4377_7778007_65010101,4377_18 -4195_72152,273,4377_534,Enfield,301421004-00003-1,1,4377_7778007_65010101,4377_18 -4195_72152,274,4377_535,Enfield,301431004-00004-1,1,4377_7778007_65010101,4377_18 -4195_72152,275,4377_536,Enfield,301441004-00005-1,1,4377_7778007_65010101,4377_18 -4195_72152,276,4377_537,Enfield,301551004-00006-1,1,4377_7778007_65010101,4377_18 -4195_72152,272,4377_538,Enfield,301411068-00002-1,1,4377_7778007_65040101,4377_18 -4195_72152,273,4377_539,Enfield,301421068-00003-1,1,4377_7778007_65040101,4377_18 -4195_72146,115,4377_54,Edenderry,301317015-00010-1,0,4377_7778007_72060101,4377_1 -4195_72152,274,4377_540,Enfield,301431068-00004-1,1,4377_7778007_65040101,4377_18 -4195_72152,275,4377_541,Enfield,301441068-00005-1,1,4377_7778007_65040101,4377_18 -4195_72152,276,4377_542,Enfield,301551068-00006-1,1,4377_7778007_65040101,4377_18 -4195_72152,115,4377_543,Enfield,301317010-00010-1,1,4377_7778007_65030101,4377_18 -4195_72152,271,4377_544,Enfield,301337010-00009-1,1,4377_7778007_65030101,4377_18 -4195_72152,146,4377_545,Enfield,301347010-00008-1,1,4377_7778007_65030101,4377_18 -4195_72152,110,4377_546,Enfield,301377010-00001-1,1,4377_7778007_65030101,4377_18 -4195_72152,277,4377_547,Enfield,301664030-00007-1,1,4377_7778007_65040101,4377_19 -4195_72152,272,4377_548,Enfield,301411098-00002-1,1,4377_7778007_65040101,4377_18 -4195_72152,273,4377_549,Enfield,301421098-00003-1,1,4377_7778007_65040101,4377_18 -4195_72146,271,4377_55,Edenderry,301337015-00009-1,0,4377_7778007_72060101,4377_1 -4195_72152,274,4377_550,Enfield,301431098-00004-1,1,4377_7778007_65040101,4377_18 -4195_72152,275,4377_551,Enfield,301441098-00005-1,1,4377_7778007_65040101,4377_18 -4195_72152,276,4377_552,Enfield,301551098-00006-1,1,4377_7778007_65040101,4377_18 -4195_72152,115,4377_553,Enfield,301317034-00010-1,1,4377_7778007_65030101,4377_18 -4195_72152,271,4377_554,Enfield,301337034-00009-1,1,4377_7778007_65030101,4377_18 -4195_72152,146,4377_555,Enfield,301347034-00008-1,1,4377_7778007_65030101,4377_18 -4195_72152,110,4377_556,Enfield,301377034-00001-1,1,4377_7778007_65030101,4377_18 -4195_72152,277,4377_557,Enfield,301664062-00007-1,1,4377_7778007_65040101,4377_19 -4195_72152,272,4377_558,Enfield,301411126-00002-1,1,4377_7778007_65040101,4377_18 -4195_72152,273,4377_559,Enfield,301421126-00003-1,1,4377_7778007_65040101,4377_18 -4195_72146,146,4377_56,Edenderry,301347015-00008-1,0,4377_7778007_72060101,4377_1 -4195_72152,274,4377_560,Enfield,301431126-00004-1,1,4377_7778007_65040101,4377_18 -4195_72152,275,4377_561,Enfield,301441126-00005-1,1,4377_7778007_65040101,4377_18 -4195_72152,276,4377_562,Enfield,301551126-00006-1,1,4377_7778007_65040101,4377_18 -4195_72152,115,4377_563,Enfield,301317056-00010-1,1,4377_7778007_62010101,4377_18 -4195_72152,271,4377_564,Enfield,301337056-00009-1,1,4377_7778007_62010101,4377_18 -4195_72152,146,4377_565,Enfield,301347056-00008-1,1,4377_7778007_62010101,4377_18 -4195_72152,110,4377_566,Enfield,301377056-00001-1,1,4377_7778007_62010101,4377_18 -4195_72152,277,4377_567,Enfield,301664094-00007-1,1,4377_7778007_65060101,4377_19 -4195_72152,272,4377_568,Enfield,301411158-00002-1,1,4377_7778007_65040101,4377_18 -4195_72152,273,4377_569,Enfield,301421158-00003-1,1,4377_7778007_65040101,4377_18 -4195_72146,110,4377_57,Edenderry,301377015-00001-1,0,4377_7778007_72060101,4377_1 -4195_72152,274,4377_570,Enfield,301431158-00004-1,1,4377_7778007_65040101,4377_18 -4195_72152,275,4377_571,Enfield,301441158-00005-1,1,4377_7778007_65040101,4377_18 -4195_72152,276,4377_572,Enfield,301551158-00006-1,1,4377_7778007_65040101,4377_18 -4195_72152,115,4377_573,Enfield,301317074-00010-1,1,4377_7778007_65010101,4377_18 -4195_72152,271,4377_574,Enfield,301337074-00009-1,1,4377_7778007_65010101,4377_18 -4195_72152,146,4377_575,Enfield,301347074-00008-1,1,4377_7778007_65010101,4377_18 -4195_72152,110,4377_576,Enfield,301377074-00001-1,1,4377_7778007_65010101,4377_18 -4195_72152,277,4377_577,Enfield,301664116-00007-1,1,4377_7778007_65010101,4377_19 -4195_72152,272,4377_578,Enfield,301411178-00002-1,1,4377_7778007_65040101,4377_18 -4195_72152,273,4377_579,Enfield,301421178-00003-1,1,4377_7778007_65040101,4377_18 -4195_72146,272,4377_58,Edenderry,301411055-00002-1,0,4377_7778007_72180101,4377_3 -4195_72152,274,4377_580,Enfield,301431178-00004-1,1,4377_7778007_65040101,4377_18 -4195_72152,275,4377_581,Enfield,301441178-00005-1,1,4377_7778007_65040101,4377_18 -4195_72152,276,4377_582,Enfield,301551178-00006-1,1,4377_7778007_65040101,4377_18 -4195_72153,272,4377_583,Tullamore,301411001-00002-1,0,4377_7778007_65010101,4377_20 -4195_72153,273,4377_584,Tullamore,301421001-00003-1,0,4377_7778007_65010101,4377_20 -4195_72153,274,4377_585,Tullamore,301431001-00004-1,0,4377_7778007_65010101,4377_20 -4195_72153,275,4377_586,Tullamore,301441001-00005-1,0,4377_7778007_65010101,4377_20 -4195_72153,276,4377_587,Tullamore,301551001-00006-1,0,4377_7778007_65010101,4377_20 -4195_72153,115,4377_588,Tullamore,301317001-00010-1,0,4377_7778007_65030101,4377_20 -4195_72153,271,4377_589,Tullamore,301337001-00009-1,0,4377_7778007_65030101,4377_20 -4195_72146,273,4377_59,Edenderry,301421055-00003-1,0,4377_7778007_72180101,4377_3 -4195_72153,146,4377_590,Tullamore,301347001-00008-1,0,4377_7778007_65030101,4377_20 -4195_72153,110,4377_591,Tullamore,301377001-00001-1,0,4377_7778007_65030101,4377_20 -4195_72153,277,4377_592,Tullamore,301664009-00007-1,0,4377_7778007_65040101,4377_20 -4195_72153,115,4377_593,Edenderry,301317086-00010-1,1,4377_7778007_65010101,4377_21 -4195_72153,271,4377_594,Edenderry,301337086-00009-1,1,4377_7778007_65010101,4377_21 -4195_72153,146,4377_595,Edenderry,301347086-00008-1,1,4377_7778007_65010101,4377_21 -4195_72153,110,4377_596,Edenderry,301377086-00001-1,1,4377_7778007_65010101,4377_21 -4195_72153,277,4377_597,Edenderry,301664128-00007-1,1,4377_7778007_65010101,4377_22 -4195_72153,272,4377_598,Edenderry,301411188-00002-1,1,4377_7778007_65050101,4377_21 -4195_72153,273,4377_599,Edenderry,301421188-00003-1,1,4377_7778007_65050101,4377_21 -4195_72146,272,4377_6,Edenderry,301411013-00002-1,0,4377_7778007_75020101,4377_1 -4195_72146,274,4377_60,Edenderry,301431055-00004-1,0,4377_7778007_72180101,4377_3 -4195_72153,274,4377_600,Edenderry,301431188-00004-1,1,4377_7778007_65050101,4377_21 -4195_72153,275,4377_601,Edenderry,301441188-00005-1,1,4377_7778007_65050101,4377_21 -4195_72153,276,4377_602,Edenderry,301551188-00006-1,1,4377_7778007_65050101,4377_21 -4195_72154,272,4377_603,Dublin,301411028-00002-1,1,4377_7778007_55030101,4377_23 -4195_72154,273,4377_604,Dublin,301421028-00003-1,1,4377_7778007_55030101,4377_23 -4195_72154,274,4377_605,Dublin,301431028-00004-1,1,4377_7778007_55030101,4377_23 -4195_72154,275,4377_606,Dublin,301441028-00005-1,1,4377_7778007_55030101,4377_23 -4195_72154,276,4377_607,Dublin,301551028-00006-1,1,4377_7778007_55030101,4377_23 -4195_72155,272,4377_608,Newbridge,301411143-00002-1,0,4377_7778007_72100101,4377_24 -4195_72155,273,4377_609,Newbridge,301421143-00003-1,0,4377_7778007_72100101,4377_24 -4195_72146,275,4377_61,Edenderry,301441055-00005-1,0,4377_7778007_72180101,4377_3 -4195_72155,274,4377_610,Newbridge,301431143-00004-1,0,4377_7778007_72100101,4377_24 -4195_72155,275,4377_611,Newbridge,301441143-00005-1,0,4377_7778007_72100101,4377_24 -4195_72155,276,4377_612,Newbridge,301551143-00006-1,0,4377_7778007_72100101,4377_24 -4195_72155,272,4377_613,Dublin,301411020-00002-1,1,4377_7778007_72040101,4377_25 -4195_72155,273,4377_614,Dublin,301421020-00003-1,1,4377_7778007_72040101,4377_25 -4195_72155,274,4377_615,Dublin,301431020-00004-1,1,4377_7778007_72040101,4377_25 -4195_72155,275,4377_616,Dublin,301441020-00005-1,1,4377_7778007_72040101,4377_25 -4195_72155,276,4377_617,Dublin,301551020-00006-1,1,4377_7778007_72040101,4377_25 -4195_72156,272,4377_618,Edenderry,301411099-00002-1,0,4377_7778007_65010101,4377_26 -4195_72156,273,4377_619,Edenderry,301421099-00003-1,0,4377_7778007_65010101,4377_26 -4195_72146,276,4377_62,Edenderry,301551055-00006-1,0,4377_7778007_72180101,4377_3 -4195_72156,274,4377_620,Edenderry,301431099-00004-1,0,4377_7778007_65010101,4377_26 -4195_72156,275,4377_621,Edenderry,301441099-00005-1,0,4377_7778007_65010101,4377_26 -4195_72156,276,4377_622,Edenderry,301551099-00006-1,0,4377_7778007_65010101,4377_26 -4195_72156,272,4377_623,Edenderry,301411111-00002-1,0,4377_7778007_55040101,4377_26 -4195_72156,273,4377_624,Edenderry,301421111-00003-1,0,4377_7778007_55040101,4377_26 -4195_72156,274,4377_625,Edenderry,301431111-00004-1,0,4377_7778007_55040101,4377_26 -4195_72156,275,4377_626,Edenderry,301441111-00005-1,0,4377_7778007_55040101,4377_26 -4195_72156,276,4377_627,Edenderry,301551111-00006-1,0,4377_7778007_55040101,4377_26 -4195_72156,272,4377_628,Edenderry,301411135-00002-1,0,4377_7778007_75010101,4377_26 -4195_72156,273,4377_629,Edenderry,301421135-00003-1,0,4377_7778007_75010101,4377_26 -4195_72146,277,4377_63,Edenderry,301664031-00007-1,0,4377_7778007_72120101,4377_5 -4195_72156,274,4377_630,Edenderry,301431135-00004-1,0,4377_7778007_75010101,4377_26 -4195_72156,275,4377_631,Edenderry,301441135-00005-1,0,4377_7778007_75010101,4377_26 -4195_72156,276,4377_632,Edenderry,301551135-00006-1,0,4377_7778007_75010101,4377_26 -4195_72156,272,4377_633,Dublin,301411014-00002-1,1,4377_7778007_62010101,4377_27 -4195_72156,273,4377_634,Dublin,301421014-00003-1,1,4377_7778007_62010101,4377_27 -4195_72156,274,4377_635,Dublin,301431014-00004-1,1,4377_7778007_62010101,4377_27 -4195_72156,275,4377_636,Dublin,301441014-00005-1,1,4377_7778007_62010101,4377_27 -4195_72156,276,4377_637,Dublin,301551014-00006-1,1,4377_7778007_62010101,4377_27 -4195_72156,272,4377_638,Dublin,301411054-00002-1,1,4377_7778007_65050101,4377_27 -4195_72156,273,4377_639,Dublin,301421054-00003-1,1,4377_7778007_65050101,4377_27 -4195_72146,272,4377_64,Prosperous,301411059-00002-1,0,4377_7778007_65030101,4377_2 -4195_72156,274,4377_640,Dublin,301431054-00004-1,1,4377_7778007_65050101,4377_27 -4195_72156,275,4377_641,Dublin,301441054-00005-1,1,4377_7778007_65050101,4377_27 -4195_72156,276,4377_642,Dublin,301551054-00006-1,1,4377_7778007_65050101,4377_27 -4195_72147,272,4377_643,Toughers Ind Est,301411129-00002-1,0,4377_7778007_72130101,4377_28 -4195_72147,273,4377_644,Toughers Ind Est,301421129-00003-1,0,4377_7778007_72130101,4377_28 -4195_72147,274,4377_645,Toughers Ind Est,301431129-00004-1,0,4377_7778007_72130101,4377_28 -4195_72147,275,4377_646,Toughers Ind Est,301441129-00005-1,0,4377_7778007_72130101,4377_28 -4195_72147,276,4377_647,Toughers Ind Est,301551129-00006-1,0,4377_7778007_72130101,4377_28 -4195_72147,272,4377_648,Newbridge,301411133-00002-1,0,4377_7778007_72150101,4377_29 -4195_72147,273,4377_649,Newbridge,301421133-00003-1,0,4377_7778007_72150101,4377_29 -4195_72146,273,4377_65,Prosperous,301421059-00003-1,0,4377_7778007_65030101,4377_2 -4195_72147,274,4377_650,Newbridge,301431133-00004-1,0,4377_7778007_72150101,4377_29 -4195_72147,275,4377_651,Newbridge,301441133-00005-1,0,4377_7778007_72150101,4377_29 -4195_72147,276,4377_652,Newbridge,301551133-00006-1,0,4377_7778007_72150101,4377_29 -4195_72147,272,4377_653,UCD Belfield,301411036-00002-1,1,4377_7778007_72090101,4377_30 -4195_72147,273,4377_654,UCD Belfield,301421036-00003-1,1,4377_7778007_72090101,4377_30 -4195_72147,274,4377_655,UCD Belfield,301431036-00004-1,1,4377_7778007_72090101,4377_30 -4195_72147,275,4377_656,UCD Belfield,301441036-00005-1,1,4377_7778007_72090101,4377_30 -4195_72147,276,4377_657,UCD Belfield,301551036-00006-1,1,4377_7778007_72090101,4377_30 -4195_72147,272,4377_658,Dublin,301411042-00002-1,1,4377_7778007_72110101,4377_31 -4195_72147,273,4377_659,Dublin,301421042-00003-1,1,4377_7778007_72110101,4377_31 -4195_72146,274,4377_66,Prosperous,301431059-00004-1,0,4377_7778007_65030101,4377_2 -4195_72147,274,4377_660,Dublin,301431042-00004-1,1,4377_7778007_72110101,4377_31 -4195_72147,275,4377_661,Dublin,301441042-00005-1,1,4377_7778007_72110101,4377_31 -4195_72147,276,4377_662,Dublin,301551042-00006-1,1,4377_7778007_72110101,4377_31 -4195_72148,272,4377_663,Rathangan,301411005-00002-1,0,4377_7778007_75010101,4377_34 -4195_72148,273,4377_664,Rathangan,301421005-00003-1,0,4377_7778007_75010101,4377_34 -4195_72148,274,4377_665,Rathangan,301431005-00004-1,0,4377_7778007_75010101,4377_34 -4195_72148,275,4377_666,Rathangan,301441005-00005-1,0,4377_7778007_75010101,4377_34 -4195_72148,276,4377_667,Rathangan,301551005-00006-1,0,4377_7778007_75010101,4377_34 -4195_72148,272,4377_668,Kildare,301411009-00002-1,0,4377_7778007_75050101,4377_41 -4195_72148,273,4377_669,Kildare,301421009-00003-1,0,4377_7778007_75050101,4377_41 -4195_72146,275,4377_67,Prosperous,301441059-00005-1,0,4377_7778007_65030101,4377_2 -4195_72148,274,4377_670,Kildare,301431009-00004-1,0,4377_7778007_75050101,4377_41 -4195_72148,275,4377_671,Kildare,301441009-00005-1,0,4377_7778007_75050101,4377_41 -4195_72148,276,4377_672,Kildare,301551009-00006-1,0,4377_7778007_75050101,4377_41 -4195_72148,272,4377_673,Newbridge,301411011-00002-1,0,4377_7778007_72020101,4377_32 -4195_72148,273,4377_674,Newbridge,301421011-00003-1,0,4377_7778007_72020101,4377_32 -4195_72148,274,4377_675,Newbridge,301431011-00004-1,0,4377_7778007_72020101,4377_32 -4195_72148,275,4377_676,Newbridge,301441011-00005-1,0,4377_7778007_72020101,4377_32 -4195_72148,276,4377_677,Newbridge,301551011-00006-1,0,4377_7778007_72020101,4377_32 -4195_72148,272,4377_678,Newbridge,301411015-00002-1,0,4377_7778007_65030101,4377_32 -4195_72148,273,4377_679,Newbridge,301421015-00003-1,0,4377_7778007_65030101,4377_32 -4195_72146,276,4377_68,Prosperous,301551059-00006-1,0,4377_7778007_65030101,4377_2 -4195_72148,274,4377_680,Newbridge,301431015-00004-1,0,4377_7778007_65030101,4377_32 -4195_72148,275,4377_681,Newbridge,301441015-00005-1,0,4377_7778007_65030101,4377_32 -4195_72148,276,4377_682,Newbridge,301551015-00006-1,0,4377_7778007_65030101,4377_32 -4195_72148,277,4377_683,Kildare,301664001-00007-1,0,4377_7778007_72050101,4377_41 -4195_72148,272,4377_684,Newbridge,301411017-00002-1,0,4377_7778007_62010101,4377_32 -4195_72148,273,4377_685,Newbridge,301421017-00003-1,0,4377_7778007_62010101,4377_32 -4195_72148,274,4377_686,Newbridge,301431017-00004-1,0,4377_7778007_62010101,4377_32 -4195_72148,275,4377_687,Newbridge,301441017-00005-1,0,4377_7778007_62010101,4377_32 -4195_72148,276,4377_688,Newbridge,301551017-00006-1,0,4377_7778007_62010101,4377_32 -4195_72148,277,4377_689,Newbridge,301664003-00007-1,0,4377_7778007_72020101,4377_32 -4195_72146,277,4377_69,Prosperous,301664035-00007-1,0,4377_7778007_65030101,4377_6 -4195_72148,272,4377_690,Newbridge,301411019-00002-1,0,4377_7778007_72030101,4377_32 -4195_72148,273,4377_691,Newbridge,301421019-00003-1,0,4377_7778007_72030101,4377_32 -4195_72148,274,4377_692,Newbridge,301431019-00004-1,0,4377_7778007_72030101,4377_32 -4195_72148,275,4377_693,Newbridge,301441019-00005-1,0,4377_7778007_72030101,4377_32 -4195_72148,276,4377_694,Newbridge,301551019-00006-1,0,4377_7778007_72030101,4377_32 -4195_72148,272,4377_695,Newbridge,301411023-00002-1,0,4377_7778007_55020101,4377_32 -4195_72148,273,4377_696,Newbridge,301421023-00003-1,0,4377_7778007_55020101,4377_32 -4195_72148,274,4377_697,Newbridge,301431023-00004-1,0,4377_7778007_55020101,4377_32 -4195_72148,275,4377_698,Newbridge,301441023-00005-1,0,4377_7778007_55020101,4377_32 -4195_72148,276,4377_699,Newbridge,301551023-00006-1,0,4377_7778007_55020101,4377_32 -4195_72146,273,4377_7,Edenderry,301421013-00003-1,0,4377_7778007_75020101,4377_1 -4195_72146,115,4377_70,Edenderry,301317023-00010-1,0,4377_7778007_72070101,4377_1 -4195_72148,277,4377_700,Newbridge,301664007-00007-1,0,4377_7778007_65010101,4377_32 -4195_72148,272,4377_701,Newbridge,301411025-00002-1,0,4377_7778007_72080101,4377_32 -4195_72148,273,4377_702,Newbridge,301421025-00003-1,0,4377_7778007_72080101,4377_32 -4195_72148,274,4377_703,Newbridge,301431025-00004-1,0,4377_7778007_72080101,4377_32 -4195_72148,275,4377_704,Newbridge,301441025-00005-1,0,4377_7778007_72080101,4377_32 -4195_72148,276,4377_705,Newbridge,301551025-00006-1,0,4377_7778007_72080101,4377_32 -4195_72148,115,4377_706,Newbridge,301317003-00010-1,0,4377_7778007_72030101,4377_33 -4195_72148,271,4377_707,Newbridge,301337003-00009-1,0,4377_7778007_72030101,4377_33 -4195_72148,146,4377_708,Newbridge,301347003-00008-1,0,4377_7778007_72030101,4377_33 -4195_72148,110,4377_709,Newbridge,301377003-00001-1,0,4377_7778007_72030101,4377_33 -4195_72146,271,4377_71,Edenderry,301337023-00009-1,0,4377_7778007_72070101,4377_1 -4195_72148,272,4377_710,Newbridge,301411031-00002-1,0,4377_7778007_62020101,4377_32 -4195_72148,273,4377_711,Newbridge,301421031-00003-1,0,4377_7778007_62020101,4377_32 -4195_72148,274,4377_712,Newbridge,301431031-00004-1,0,4377_7778007_62020101,4377_32 -4195_72148,275,4377_713,Newbridge,301441031-00005-1,0,4377_7778007_62020101,4377_32 -4195_72148,276,4377_714,Newbridge,301551031-00006-1,0,4377_7778007_62020101,4377_32 -4195_72148,272,4377_715,Newbridge,301411035-00002-1,0,4377_7778007_55040101,4377_32 -4195_72148,273,4377_716,Newbridge,301421035-00003-1,0,4377_7778007_55040101,4377_32 -4195_72148,274,4377_717,Newbridge,301431035-00004-1,0,4377_7778007_55040101,4377_32 -4195_72148,275,4377_718,Newbridge,301441035-00005-1,0,4377_7778007_55040101,4377_32 -4195_72148,276,4377_719,Newbridge,301551035-00006-1,0,4377_7778007_55040101,4377_32 -4195_72146,146,4377_72,Edenderry,301347023-00008-1,0,4377_7778007_72070101,4377_1 -4195_72148,115,4377_720,Newbridge,301317007-00010-1,0,4377_7778007_65010101,4377_32 -4195_72148,271,4377_721,Newbridge,301337007-00009-1,0,4377_7778007_65010101,4377_32 -4195_72148,146,4377_722,Newbridge,301347007-00008-1,0,4377_7778007_65010101,4377_32 -4195_72148,110,4377_723,Newbridge,301377007-00001-1,0,4377_7778007_65010101,4377_32 -4195_72148,277,4377_724,Newbridge,301664015-00007-1,0,4377_7778007_65020101,4377_37 -4195_72148,272,4377_725,Newbridge,301411037-00002-1,0,4377_7778007_72130101,4377_32 -4195_72148,273,4377_726,Newbridge,301421037-00003-1,0,4377_7778007_72130101,4377_32 -4195_72148,274,4377_727,Newbridge,301431037-00004-1,0,4377_7778007_72130101,4377_32 -4195_72148,275,4377_728,Newbridge,301441037-00005-1,0,4377_7778007_72130101,4377_32 -4195_72148,276,4377_729,Newbridge,301551037-00006-1,0,4377_7778007_72130101,4377_32 -4195_72146,110,4377_73,Edenderry,301377023-00001-1,0,4377_7778007_72070101,4377_1 -4195_72148,272,4377_730,Newbridge,301411043-00002-1,0,4377_7778007_65050101,4377_32 -4195_72148,273,4377_731,Newbridge,301421043-00003-1,0,4377_7778007_65050101,4377_32 -4195_72148,274,4377_732,Newbridge,301431043-00004-1,0,4377_7778007_65050101,4377_32 -4195_72148,275,4377_733,Newbridge,301441043-00005-1,0,4377_7778007_65050101,4377_32 -4195_72148,276,4377_734,Newbridge,301551043-00006-1,0,4377_7778007_65050101,4377_32 -4195_72148,277,4377_735,Newbridge,301664017-00007-1,0,4377_7778007_72070101,4377_37 -4195_72148,115,4377_736,Newbridge,301317011-00010-1,0,4377_7778007_65020101,4377_32 -4195_72148,271,4377_737,Newbridge,301337011-00009-1,0,4377_7778007_65020101,4377_32 -4195_72148,146,4377_738,Newbridge,301347011-00008-1,0,4377_7778007_65020101,4377_32 -4195_72148,110,4377_739,Newbridge,301377011-00001-1,0,4377_7778007_65020101,4377_32 -4195_72146,272,4377_74,Edenderry,301411065-00002-1,0,4377_7778007_75010101,4377_3 -4195_72148,272,4377_740,Newbridge,301411049-00002-1,0,4377_7778007_65010101,4377_37 -4195_72148,273,4377_741,Newbridge,301421049-00003-1,0,4377_7778007_65010101,4377_37 -4195_72148,274,4377_742,Newbridge,301431049-00004-1,0,4377_7778007_65010101,4377_37 -4195_72148,275,4377_743,Newbridge,301441049-00005-1,0,4377_7778007_65010101,4377_37 -4195_72148,276,4377_744,Newbridge,301551049-00006-1,0,4377_7778007_65010101,4377_37 -4195_72148,277,4377_745,Newbridge,301664021-00007-1,0,4377_7778007_55010101,4377_42 -4195_72148,115,4377_746,Newbridge,301317017-00010-1,0,4377_7778007_65040101,4377_32 -4195_72148,271,4377_747,Newbridge,301337017-00009-1,0,4377_7778007_65040101,4377_32 -4195_72148,146,4377_748,Newbridge,301347017-00008-1,0,4377_7778007_65040101,4377_32 -4195_72148,110,4377_749,Newbridge,301377017-00001-1,0,4377_7778007_65040101,4377_32 -4195_72146,273,4377_75,Edenderry,301421065-00003-1,0,4377_7778007_75010101,4377_3 -4195_72148,272,4377_750,Newbridge,301411057-00002-1,0,4377_7778007_55050101,4377_37 -4195_72148,273,4377_751,Newbridge,301421057-00003-1,0,4377_7778007_55050101,4377_37 -4195_72148,274,4377_752,Newbridge,301431057-00004-1,0,4377_7778007_55050101,4377_37 -4195_72148,275,4377_753,Newbridge,301441057-00005-1,0,4377_7778007_55050101,4377_37 -4195_72148,276,4377_754,Newbridge,301551057-00006-1,0,4377_7778007_55050101,4377_37 -4195_72148,277,4377_755,Newbridge,301664033-00007-1,0,4377_7778007_55020101,4377_42 -4195_72148,115,4377_756,Kildare,301317019-00010-1,0,4377_7778007_72050101,4377_36 -4195_72148,271,4377_757,Kildare,301337019-00009-1,0,4377_7778007_72050101,4377_36 -4195_72148,146,4377_758,Kildare,301347019-00008-1,0,4377_7778007_72050101,4377_36 -4195_72148,110,4377_759,Kildare,301377019-00001-1,0,4377_7778007_72050101,4377_36 -4195_72146,274,4377_76,Edenderry,301431065-00004-1,0,4377_7778007_75010101,4377_3 -4195_72148,115,4377_760,Rathangan,301317021-00010-1,0,4377_7778007_72040101,4377_34 -4195_72148,271,4377_761,Rathangan,301337021-00009-1,0,4377_7778007_72040101,4377_34 -4195_72148,146,4377_762,Rathangan,301347021-00008-1,0,4377_7778007_72040101,4377_34 -4195_72148,110,4377_763,Rathangan,301377021-00001-1,0,4377_7778007_72040101,4377_34 -4195_72148,272,4377_764,Rathangan,301411061-00002-1,0,4377_7778007_75030101,4377_40 -4195_72148,273,4377_765,Rathangan,301421061-00003-1,0,4377_7778007_75030101,4377_40 -4195_72148,274,4377_766,Rathangan,301431061-00004-1,0,4377_7778007_75030101,4377_40 -4195_72148,275,4377_767,Rathangan,301441061-00005-1,0,4377_7778007_75030101,4377_40 -4195_72148,276,4377_768,Rathangan,301551061-00006-1,0,4377_7778007_75030101,4377_40 -4195_72148,277,4377_769,Rathangan,301664037-00007-1,0,4377_7778007_72050101,4377_44 -4195_72146,275,4377_77,Edenderry,301441065-00005-1,0,4377_7778007_75010101,4377_3 -4195_72148,115,4377_770,Newbridge,301317025-00010-1,0,4377_7778007_65050101,4377_32 -4195_72148,271,4377_771,Newbridge,301337025-00009-1,0,4377_7778007_65050101,4377_32 -4195_72148,146,4377_772,Newbridge,301347025-00008-1,0,4377_7778007_65050101,4377_32 -4195_72148,110,4377_773,Newbridge,301377025-00001-1,0,4377_7778007_65050101,4377_32 -4195_72148,272,4377_774,Newbridge,301411067-00002-1,0,4377_7778007_75020101,4377_37 -4195_72148,273,4377_775,Newbridge,301421067-00003-1,0,4377_7778007_75020101,4377_37 -4195_72148,274,4377_776,Newbridge,301431067-00004-1,0,4377_7778007_75020101,4377_37 -4195_72148,275,4377_777,Newbridge,301441067-00005-1,0,4377_7778007_75020101,4377_37 -4195_72148,276,4377_778,Newbridge,301551067-00006-1,0,4377_7778007_75020101,4377_37 -4195_72148,277,4377_779,Newbridge,301664043-00007-1,0,4377_7778007_55030101,4377_42 -4195_72146,276,4377_78,Edenderry,301551065-00006-1,0,4377_7778007_75010101,4377_3 -4195_72148,277,4377_780,Newbridge,301664045-00007-1,0,4377_7778007_72160101,4377_32 -4195_72148,115,4377_781,Newbridge,301317029-00010-1,0,4377_7778007_72030101,4377_32 -4195_72148,271,4377_782,Newbridge,301337029-00009-1,0,4377_7778007_72030101,4377_32 -4195_72148,146,4377_783,Newbridge,301347029-00008-1,0,4377_7778007_72030101,4377_32 -4195_72148,110,4377_784,Newbridge,301377029-00001-1,0,4377_7778007_72030101,4377_32 -4195_72148,272,4377_785,Newbridge,301411073-00002-1,0,4377_7778007_62010101,4377_37 -4195_72148,273,4377_786,Newbridge,301421073-00003-1,0,4377_7778007_62010101,4377_37 -4195_72148,274,4377_787,Newbridge,301431073-00004-1,0,4377_7778007_62010101,4377_37 -4195_72148,275,4377_788,Newbridge,301441073-00005-1,0,4377_7778007_62010101,4377_37 -4195_72148,276,4377_789,Newbridge,301551073-00006-1,0,4377_7778007_62010101,4377_37 -4195_72146,277,4377_79,Edenderry,301664041-00007-1,0,4377_7778007_72130101,4377_5 -4195_72148,277,4377_790,Newbridge,301664049-00007-1,0,4377_7778007_72020101,4377_42 -4195_72148,115,4377_791,Newbridge,301317033-00010-1,0,4377_7778007_65060101,4377_32 -4195_72148,271,4377_792,Newbridge,301337033-00009-1,0,4377_7778007_65060101,4377_32 -4195_72148,146,4377_793,Newbridge,301347033-00008-1,0,4377_7778007_65060101,4377_32 -4195_72148,110,4377_794,Newbridge,301377033-00001-1,0,4377_7778007_65060101,4377_32 -4195_72148,272,4377_795,Newbridge,301411077-00002-1,0,4377_7778007_72040101,4377_37 -4195_72148,273,4377_796,Newbridge,301421077-00003-1,0,4377_7778007_72040101,4377_37 -4195_72148,274,4377_797,Newbridge,301431077-00004-1,0,4377_7778007_72040101,4377_37 -4195_72148,275,4377_798,Newbridge,301441077-00005-1,0,4377_7778007_72040101,4377_37 -4195_72148,276,4377_799,Newbridge,301551077-00006-1,0,4377_7778007_72040101,4377_37 -4195_72146,274,4377_8,Edenderry,301431013-00004-1,0,4377_7778007_75020101,4377_1 -4195_72146,277,4377_80,Prosperous,301664047-00007-1,0,4377_7778007_72150101,4377_2 -4195_72148,115,4377_800,Kildare,301317037-00010-1,0,4377_7778007_72100101,4377_35 -4195_72148,271,4377_801,Kildare,301337037-00009-1,0,4377_7778007_72100101,4377_35 -4195_72148,146,4377_802,Kildare,301347037-00008-1,0,4377_7778007_72100101,4377_35 -4195_72148,110,4377_803,Kildare,301377037-00001-1,0,4377_7778007_72100101,4377_35 -4195_72148,277,4377_804,Newbridge,301664059-00007-1,0,4377_7778007_72140101,4377_32 -4195_72148,115,4377_805,Newbridge,301317041-00010-1,0,4377_7778007_72020101,4377_32 -4195_72148,271,4377_806,Newbridge,301337041-00009-1,0,4377_7778007_72020101,4377_32 -4195_72148,146,4377_807,Newbridge,301347041-00008-1,0,4377_7778007_72020101,4377_32 -4195_72148,110,4377_808,Newbridge,301377041-00001-1,0,4377_7778007_72020101,4377_32 -4195_72148,272,4377_809,Newbridge,301411087-00002-1,0,4377_7778007_72120101,4377_37 -4195_72146,115,4377_81,Edenderry,301317031-00010-1,0,4377_7778007_72080101,4377_1 -4195_72148,273,4377_810,Newbridge,301421087-00003-1,0,4377_7778007_72120101,4377_37 -4195_72148,274,4377_811,Newbridge,301431087-00004-1,0,4377_7778007_72120101,4377_37 -4195_72148,275,4377_812,Newbridge,301441087-00005-1,0,4377_7778007_72120101,4377_37 -4195_72148,276,4377_813,Newbridge,301551087-00006-1,0,4377_7778007_72120101,4377_37 -4195_72148,277,4377_814,Newbridge,301664065-00007-1,0,4377_7778007_72080101,4377_42 -4195_72148,272,4377_815,Newbridge,301411089-00002-1,0,4377_7778007_72060101,4377_32 -4195_72148,273,4377_816,Newbridge,301421089-00003-1,0,4377_7778007_72060101,4377_32 -4195_72148,274,4377_817,Newbridge,301431089-00004-1,0,4377_7778007_72060101,4377_32 -4195_72148,275,4377_818,Newbridge,301441089-00005-1,0,4377_7778007_72060101,4377_32 -4195_72148,276,4377_819,Newbridge,301551089-00006-1,0,4377_7778007_72060101,4377_32 -4195_72146,271,4377_82,Edenderry,301337031-00009-1,0,4377_7778007_72080101,4377_1 -4195_72148,115,4377_820,Rathangan,301317045-00010-1,0,4377_7778007_72050101,4377_34 -4195_72148,271,4377_821,Rathangan,301337045-00009-1,0,4377_7778007_72050101,4377_34 -4195_72148,146,4377_822,Rathangan,301347045-00008-1,0,4377_7778007_72050101,4377_34 -4195_72148,110,4377_823,Rathangan,301377045-00001-1,0,4377_7778007_72050101,4377_34 -4195_72148,277,4377_824,Newbridge,301664069-00007-1,0,4377_7778007_72090101,4377_32 -4195_72148,272,4377_825,Rathangan,301411095-00002-1,0,4377_7778007_75040101,4377_34 -4195_72148,273,4377_826,Rathangan,301421095-00003-1,0,4377_7778007_75040101,4377_34 -4195_72148,274,4377_827,Rathangan,301431095-00004-1,0,4377_7778007_75040101,4377_34 -4195_72148,275,4377_828,Rathangan,301441095-00005-1,0,4377_7778007_75040101,4377_34 -4195_72148,276,4377_829,Rathangan,301551095-00006-1,0,4377_7778007_75040101,4377_34 -4195_72146,146,4377_83,Edenderry,301347031-00008-1,0,4377_7778007_72080101,4377_1 -4195_72148,115,4377_830,Newbridge,301317049-00010-1,0,4377_7778007_72010101,4377_32 -4195_72148,271,4377_831,Newbridge,301337049-00009-1,0,4377_7778007_72010101,4377_32 -4195_72148,146,4377_832,Newbridge,301347049-00008-1,0,4377_7778007_72010101,4377_32 -4195_72148,110,4377_833,Newbridge,301377049-00001-1,0,4377_7778007_72010101,4377_32 -4195_72148,277,4377_834,Newbridge,301664073-00007-1,0,4377_7778007_72100101,4377_37 -4195_72148,115,4377_835,Kildare,301317051-00010-1,0,4377_7778007_72120101,4377_35 -4195_72148,271,4377_836,Kildare,301337051-00009-1,0,4377_7778007_72120101,4377_35 -4195_72148,146,4377_837,Kildare,301347051-00008-1,0,4377_7778007_72120101,4377_35 -4195_72148,110,4377_838,Kildare,301377051-00001-1,0,4377_7778007_72120101,4377_35 -4195_72148,272,4377_839,Newbridge,301411105-00002-1,0,4377_7778007_55020101,4377_32 -4195_72146,110,4377_84,Edenderry,301377031-00001-1,0,4377_7778007_72080101,4377_1 -4195_72148,273,4377_840,Newbridge,301421105-00003-1,0,4377_7778007_55020101,4377_32 -4195_72148,274,4377_841,Newbridge,301431105-00004-1,0,4377_7778007_55020101,4377_32 -4195_72148,275,4377_842,Newbridge,301441105-00005-1,0,4377_7778007_55020101,4377_32 -4195_72148,276,4377_843,Newbridge,301551105-00006-1,0,4377_7778007_55020101,4377_32 -4195_72148,277,4377_844,Rathangan,301664077-00007-1,0,4377_7778007_72070101,4377_34 -4195_72148,272,4377_845,Newbridge,301411109-00002-1,0,4377_7778007_72160101,4377_32 -4195_72148,273,4377_846,Newbridge,301421109-00003-1,0,4377_7778007_72160101,4377_32 -4195_72148,274,4377_847,Newbridge,301431109-00004-1,0,4377_7778007_72160101,4377_32 -4195_72148,275,4377_848,Newbridge,301441109-00005-1,0,4377_7778007_72160101,4377_32 -4195_72148,276,4377_849,Newbridge,301551109-00006-1,0,4377_7778007_72160101,4377_32 -4195_72146,272,4377_85,Edenderry,301411075-00002-1,0,4377_7778007_55030101,4377_3 -4195_72148,115,4377_850,Newbridge,301317055-00010-1,0,4377_7778007_72060101,4377_32 -4195_72148,271,4377_851,Newbridge,301337055-00009-1,0,4377_7778007_72060101,4377_32 -4195_72148,146,4377_852,Newbridge,301347055-00008-1,0,4377_7778007_72060101,4377_32 -4195_72148,110,4377_853,Newbridge,301377055-00001-1,0,4377_7778007_72060101,4377_32 -4195_72148,277,4377_854,Newbridge,301664081-00007-1,0,4377_7778007_62010101,4377_37 -4195_72148,272,4377_855,Kildare,301411115-00002-1,0,4377_7778007_72140101,4377_35 -4195_72148,273,4377_856,Kildare,301421115-00003-1,0,4377_7778007_72140101,4377_35 -4195_72148,274,4377_857,Kildare,301431115-00004-1,0,4377_7778007_72140101,4377_35 -4195_72148,275,4377_858,Kildare,301441115-00005-1,0,4377_7778007_72140101,4377_35 -4195_72148,276,4377_859,Kildare,301551115-00006-1,0,4377_7778007_72140101,4377_35 -4195_72146,273,4377_86,Edenderry,301421075-00003-1,0,4377_7778007_55030101,4377_3 -4195_72148,272,4377_860,Newbridge,301411121-00002-1,0,4377_7778007_75020101,4377_39 -4195_72148,273,4377_861,Newbridge,301421121-00003-1,0,4377_7778007_75020101,4377_39 -4195_72148,274,4377_862,Newbridge,301431121-00004-1,0,4377_7778007_75020101,4377_39 -4195_72148,275,4377_863,Newbridge,301441121-00005-1,0,4377_7778007_75020101,4377_39 -4195_72148,276,4377_864,Newbridge,301551121-00006-1,0,4377_7778007_75020101,4377_39 -4195_72148,115,4377_865,Rathangan,301317059-00010-1,0,4377_7778007_72040101,4377_34 -4195_72148,271,4377_866,Rathangan,301337059-00009-1,0,4377_7778007_72040101,4377_34 -4195_72148,146,4377_867,Rathangan,301347059-00008-1,0,4377_7778007_72040101,4377_34 -4195_72148,110,4377_868,Rathangan,301377059-00001-1,0,4377_7778007_72040101,4377_34 -4195_72148,272,4377_869,Newbridge,301411125-00002-1,0,4377_7778007_72080101,4377_32 -4195_72146,274,4377_87,Edenderry,301431075-00004-1,0,4377_7778007_55030101,4377_3 -4195_72148,273,4377_870,Newbridge,301421125-00003-1,0,4377_7778007_72080101,4377_32 -4195_72148,274,4377_871,Newbridge,301431125-00004-1,0,4377_7778007_72080101,4377_32 -4195_72148,275,4377_872,Newbridge,301441125-00005-1,0,4377_7778007_72080101,4377_32 -4195_72148,276,4377_873,Newbridge,301551125-00006-1,0,4377_7778007_72080101,4377_32 -4195_72148,277,4377_874,Rathangan,301664087-00007-1,0,4377_7778007_72010101,4377_40 -4195_72148,115,4377_875,Newbridge,301317063-00010-1,0,4377_7778007_72070101,4377_32 -4195_72148,271,4377_876,Newbridge,301337063-00009-1,0,4377_7778007_72070101,4377_32 -4195_72148,146,4377_877,Newbridge,301347063-00008-1,0,4377_7778007_72070101,4377_32 -4195_72148,110,4377_878,Newbridge,301377063-00001-1,0,4377_7778007_72070101,4377_32 -4195_72148,277,4377_879,Newbridge,301664093-00007-1,0,4377_7778007_72130101,4377_37 -4195_72146,275,4377_88,Edenderry,301441075-00005-1,0,4377_7778007_55030101,4377_3 -4195_72148,272,4377_880,Rathangan,301411141-00002-1,0,4377_7778007_75050101,4377_34 -4195_72148,273,4377_881,Rathangan,301421141-00003-1,0,4377_7778007_75050101,4377_34 -4195_72148,274,4377_882,Rathangan,301431141-00004-1,0,4377_7778007_75050101,4377_34 -4195_72148,275,4377_883,Rathangan,301441141-00005-1,0,4377_7778007_75050101,4377_34 -4195_72148,276,4377_884,Rathangan,301551141-00006-1,0,4377_7778007_75050101,4377_34 -4195_72148,277,4377_885,Newbridge,301664095-00007-1,0,4377_7778007_72160101,4377_32 -4195_72148,115,4377_886,Rathangan,301317065-00010-1,0,4377_7778007_72030101,4377_34 -4195_72148,271,4377_887,Rathangan,301337065-00009-1,0,4377_7778007_72030101,4377_34 -4195_72148,146,4377_888,Rathangan,301347065-00008-1,0,4377_7778007_72030101,4377_34 -4195_72148,110,4377_889,Rathangan,301377065-00001-1,0,4377_7778007_72030101,4377_34 -4195_72146,276,4377_89,Edenderry,301551075-00006-1,0,4377_7778007_55030101,4377_3 -4195_72148,277,4377_890,Kildare,301664099-00007-1,0,4377_7778007_72020101,4377_35 -4195_72148,272,4377_891,Newbridge,301411149-00002-1,0,4377_7778007_72050101,4377_32 -4195_72148,273,4377_892,Newbridge,301421149-00003-1,0,4377_7778007_72050101,4377_32 -4195_72148,274,4377_893,Newbridge,301431149-00004-1,0,4377_7778007_72050101,4377_32 -4195_72148,275,4377_894,Newbridge,301441149-00005-1,0,4377_7778007_72050101,4377_32 -4195_72148,276,4377_895,Newbridge,301551149-00006-1,0,4377_7778007_72050101,4377_32 -4195_72148,115,4377_896,Newbridge,301317069-00010-1,0,4377_7778007_72080101,4377_32 -4195_72148,271,4377_897,Newbridge,301337069-00009-1,0,4377_7778007_72080101,4377_32 -4195_72148,146,4377_898,Newbridge,301347069-00008-1,0,4377_7778007_72080101,4377_32 -4195_72148,110,4377_899,Newbridge,301377069-00001-1,0,4377_7778007_72080101,4377_32 -4195_72146,275,4377_9,Edenderry,301441013-00005-1,0,4377_7778007_75020101,4377_1 -4195_72146,277,4377_90,Edenderry,301664051-00007-1,0,4377_7778007_65010101,4377_5 -4195_72148,277,4377_900,Newbridge,301664103-00007-1,0,4377_7778007_72150101,4377_37 -4195_72148,272,4377_901,Newbridge,301411155-00002-1,0,4377_7778007_72040101,4377_32 -4195_72148,273,4377_902,Newbridge,301421155-00003-1,0,4377_7778007_72040101,4377_32 -4195_72148,274,4377_903,Newbridge,301431155-00004-1,0,4377_7778007_72040101,4377_32 -4195_72148,275,4377_904,Newbridge,301441155-00005-1,0,4377_7778007_72040101,4377_32 -4195_72148,276,4377_905,Newbridge,301551155-00006-1,0,4377_7778007_72040101,4377_32 -4195_72148,115,4377_906,Newbridge,301317073-00010-1,0,4377_7778007_72020101,4377_32 -4195_72148,271,4377_907,Newbridge,301337073-00009-1,0,4377_7778007_72020101,4377_32 -4195_72148,146,4377_908,Newbridge,301347073-00008-1,0,4377_7778007_72020101,4377_32 -4195_72148,110,4377_909,Newbridge,301377073-00001-1,0,4377_7778007_72020101,4377_32 -4195_72146,272,4377_91,Prosperous,301411079-00002-1,0,4377_7778007_75050101,4377_2 -4195_72148,277,4377_910,Newbridge,301664107-00007-1,0,4377_7778007_72030101,4377_37 -4195_72148,272,4377_911,Newbridge,301411161-00002-1,0,4377_7778007_72170101,4377_32 -4195_72148,273,4377_912,Newbridge,301421161-00003-1,0,4377_7778007_72170101,4377_32 -4195_72148,274,4377_913,Newbridge,301431161-00004-1,0,4377_7778007_72170101,4377_32 -4195_72148,275,4377_914,Newbridge,301441161-00005-1,0,4377_7778007_72170101,4377_32 -4195_72148,276,4377_915,Newbridge,301551161-00006-1,0,4377_7778007_72170101,4377_32 -4195_72148,272,4377_916,Newbridge,301411165-00002-1,0,4377_7778007_72090101,4377_32 -4195_72148,273,4377_917,Newbridge,301421165-00003-1,0,4377_7778007_72090101,4377_32 -4195_72148,274,4377_918,Newbridge,301431165-00004-1,0,4377_7778007_72090101,4377_32 -4195_72148,275,4377_919,Newbridge,301441165-00005-1,0,4377_7778007_72090101,4377_32 -4195_72146,273,4377_92,Prosperous,301421079-00003-1,0,4377_7778007_75050101,4377_2 -4195_72148,276,4377_920,Newbridge,301551165-00006-1,0,4377_7778007_72090101,4377_32 -4195_72148,115,4377_921,Rathangan,301317079-00010-1,0,4377_7778007_72050101,4377_34 -4195_72148,271,4377_922,Rathangan,301337079-00009-1,0,4377_7778007_72050101,4377_34 -4195_72148,146,4377_923,Rathangan,301347079-00008-1,0,4377_7778007_72050101,4377_34 -4195_72148,110,4377_924,Rathangan,301377079-00001-1,0,4377_7778007_72050101,4377_34 -4195_72148,277,4377_925,Rathangan,301664113-00007-1,0,4377_7778007_72040101,4377_40 -4195_72148,272,4377_926,Rathangan,301411167-00002-1,0,4377_7778007_72030101,4377_34 -4195_72148,273,4377_927,Rathangan,301421167-00003-1,0,4377_7778007_72030101,4377_34 -4195_72148,274,4377_928,Rathangan,301431167-00004-1,0,4377_7778007_72030101,4377_34 -4195_72148,275,4377_929,Rathangan,301441167-00005-1,0,4377_7778007_72030101,4377_34 -4195_72146,274,4377_93,Prosperous,301431079-00004-1,0,4377_7778007_75050101,4377_2 -4195_72148,276,4377_930,Rathangan,301551167-00006-1,0,4377_7778007_72030101,4377_34 -4195_72148,115,4377_931,Newbridge,301317081-00010-1,0,4377_7778007_72110101,4377_32 -4195_72148,271,4377_932,Newbridge,301337081-00009-1,0,4377_7778007_72110101,4377_32 -4195_72148,146,4377_933,Newbridge,301347081-00008-1,0,4377_7778007_72110101,4377_32 -4195_72148,110,4377_934,Newbridge,301377081-00001-1,0,4377_7778007_72110101,4377_32 -4195_72148,277,4377_935,Newbridge,301664117-00007-1,0,4377_7778007_72070101,4377_37 -4195_72148,272,4377_936,Newbridge,301411171-00002-1,0,4377_7778007_72160101,4377_32 -4195_72148,273,4377_937,Newbridge,301421171-00003-1,0,4377_7778007_72160101,4377_32 -4195_72148,274,4377_938,Newbridge,301431171-00004-1,0,4377_7778007_72160101,4377_32 -4195_72148,275,4377_939,Newbridge,301441171-00005-1,0,4377_7778007_72160101,4377_32 -4195_72146,275,4377_94,Prosperous,301441079-00005-1,0,4377_7778007_75050101,4377_2 -4195_72148,276,4377_940,Newbridge,301551171-00006-1,0,4377_7778007_72160101,4377_32 -4195_72148,115,4377_941,Newbridge,301317085-00010-1,0,4377_7778007_72070101,4377_32 -4195_72148,271,4377_942,Newbridge,301337085-00009-1,0,4377_7778007_72070101,4377_32 -4195_72148,146,4377_943,Newbridge,301347085-00008-1,0,4377_7778007_72070101,4377_32 -4195_72148,110,4377_944,Newbridge,301377085-00001-1,0,4377_7778007_72070101,4377_32 -4195_72148,277,4377_945,Newbridge,301664121-00007-1,0,4377_7778007_72010101,4377_37 -4195_72148,272,4377_946,Newbridge,301411177-00002-1,0,4377_7778007_72180101,4377_32 -4195_72148,273,4377_947,Newbridge,301421177-00003-1,0,4377_7778007_72180101,4377_32 -4195_72148,274,4377_948,Newbridge,301431177-00004-1,0,4377_7778007_72180101,4377_32 -4195_72148,275,4377_949,Newbridge,301441177-00005-1,0,4377_7778007_72180101,4377_32 -4195_72146,276,4377_95,Prosperous,301551079-00006-1,0,4377_7778007_75050101,4377_2 -4195_72148,276,4377_950,Newbridge,301551177-00006-1,0,4377_7778007_72180101,4377_32 -4195_72148,115,4377_951,Kildare,301317089-00010-1,0,4377_7778007_72030101,4377_35 -4195_72148,271,4377_952,Kildare,301337089-00009-1,0,4377_7778007_72030101,4377_35 -4195_72148,146,4377_953,Kildare,301347089-00008-1,0,4377_7778007_72030101,4377_35 -4195_72148,110,4377_954,Kildare,301377089-00001-1,0,4377_7778007_72030101,4377_35 -4195_72148,272,4377_955,Kildare,301411185-00002-1,0,4377_7778007_72050101,4377_38 -4195_72148,273,4377_956,Kildare,301421185-00003-1,0,4377_7778007_72050101,4377_38 -4195_72148,274,4377_957,Kildare,301431185-00004-1,0,4377_7778007_72050101,4377_38 -4195_72148,275,4377_958,Kildare,301441185-00005-1,0,4377_7778007_72050101,4377_38 -4195_72148,276,4377_959,Kildare,301551185-00006-1,0,4377_7778007_72050101,4377_38 -4195_72146,277,4377_96,Prosperous,301664057-00007-1,0,4377_7778007_65050101,4377_6 -4195_72148,277,4377_960,Kildare,301664125-00007-1,0,4377_7778007_72020101,4377_43 -4195_72148,272,4377_961,Newbridge,301411189-00002-1,0,4377_7778007_72040101,4377_32 -4195_72148,273,4377_962,Newbridge,301421189-00003-1,0,4377_7778007_72040101,4377_32 -4195_72148,274,4377_963,Newbridge,301431189-00004-1,0,4377_7778007_72040101,4377_32 -4195_72148,275,4377_964,Newbridge,301441189-00005-1,0,4377_7778007_72040101,4377_32 -4195_72148,276,4377_965,Newbridge,301551189-00006-1,0,4377_7778007_72040101,4377_32 -4195_72148,277,4377_966,Newbridge,301664129-00007-1,0,4377_7778007_72060101,4377_37 -4195_72148,272,4377_967,Newbridge,301411191-00002-1,0,4377_7778007_72160101,4377_32 -4195_72148,273,4377_968,Newbridge,301421191-00003-1,0,4377_7778007_72160101,4377_32 -4195_72148,274,4377_969,Newbridge,301431191-00004-1,0,4377_7778007_72160101,4377_32 -4195_72146,115,4377_97,Edenderry,301317039-00010-1,0,4377_7778007_65010101,4377_1 -4195_72148,275,4377_970,Newbridge,301441191-00005-1,0,4377_7778007_72160101,4377_32 -4195_72148,276,4377_971,Newbridge,301551191-00006-1,0,4377_7778007_72160101,4377_32 -4195_72148,277,4377_972,Newbridge,301664131-00007-1,0,4377_7778007_72070101,4377_37 -4195_72148,272,4377_973,Dublin,301411002-00002-1,1,4377_7778007_75010101,4377_45 -4195_72148,273,4377_974,Dublin,301421002-00003-1,1,4377_7778007_75010101,4377_45 -4195_72148,274,4377_975,Dublin,301431002-00004-1,1,4377_7778007_75010101,4377_45 -4195_72148,275,4377_976,Dublin,301441002-00005-1,1,4377_7778007_75010101,4377_45 -4195_72148,276,4377_977,Dublin,301551002-00006-1,1,4377_7778007_75010101,4377_45 -4195_72148,272,4377_978,Dublin,301411010-00002-1,1,4377_7778007_72020101,4377_49 -4195_72148,273,4377_979,Dublin,301421010-00003-1,1,4377_7778007_72020101,4377_49 -4195_72146,271,4377_98,Edenderry,301337039-00009-1,0,4377_7778007_65010101,4377_1 -4195_72148,274,4377_980,Dublin,301431010-00004-1,1,4377_7778007_72020101,4377_49 -4195_72148,275,4377_981,Dublin,301441010-00005-1,1,4377_7778007_72020101,4377_49 -4195_72148,276,4377_982,Dublin,301551010-00006-1,1,4377_7778007_72020101,4377_49 -4195_72148,272,4377_983,Dublin,301411012-00002-1,1,4377_7778007_75020101,4377_45 -4195_72148,273,4377_984,Dublin,301421012-00003-1,1,4377_7778007_75020101,4377_45 -4195_72148,274,4377_985,Dublin,301431012-00004-1,1,4377_7778007_75020101,4377_45 -4195_72148,275,4377_986,Dublin,301441012-00005-1,1,4377_7778007_75020101,4377_45 -4195_72148,276,4377_987,Dublin,301551012-00006-1,1,4377_7778007_75020101,4377_45 -4195_72148,272,4377_988,Dublin,301411016-00002-1,1,4377_7778007_72030101,4377_45 -4195_72148,273,4377_989,Dublin,301421016-00003-1,1,4377_7778007_72030101,4377_45 -4195_72146,146,4377_99,Edenderry,301347039-00008-1,0,4377_7778007_65010101,4377_1 -4195_72148,274,4377_990,Dublin,301431016-00004-1,1,4377_7778007_72030101,4377_45 -4195_72148,275,4377_991,Dublin,301441016-00005-1,1,4377_7778007_72030101,4377_45 -4195_72148,276,4377_992,Dublin,301551016-00006-1,1,4377_7778007_72030101,4377_45 -4195_72148,272,4377_993,Dublin,301411022-00002-1,1,4377_7778007_72060101,4377_45 -4195_72148,273,4377_994,Dublin,301421022-00003-1,1,4377_7778007_72060101,4377_45 -4195_72148,274,4377_995,Dublin,301431022-00004-1,1,4377_7778007_72060101,4377_45 -4195_72148,275,4377_996,Dublin,301441022-00005-1,1,4377_7778007_72060101,4377_45 -4195_72148,276,4377_997,Dublin,301551022-00006-1,1,4377_7778007_72060101,4377_45 -4195_72148,272,4377_998,Dublin,301411032-00002-1,1,4377_7778007_72070101,4377_47 -4195_72148,273,4377_999,Dublin,301421032-00003-1,1,4377_7778007_72070101,4377_47 -4380_77946,288,4380_10,Dundalk,50455-00011-1,0,4380_7778208_1000915,4380_1 -4380_77946,292,4380_100,Dundalk,50476-00016-1,0,4380_7778208_1000915,4380_1 -4380_77954,291,4380_10000,Athboy,7354-00013-1,0,4380_7778208_1110101,4380_196 -4380_78127,296,4380_100000,Tyndall College,45021-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100002,Tyndall College,45022-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100009,Tyndall College,46308-00009-1,0,4380_7778208_180806,4380_1694 -4380_77954,292,4380_10001,Athboy,55523-00016-1,0,4380_7778208_1110101,4380_193 -4380_78127,286,4380_100010,Tyndall College,46310-00010-1,0,4380_7778208_180806,4380_1694 -4380_78127,287,4380_100011,Tyndall College,46300-00012-1,0,4380_7778208_180806,4380_1694 -4380_78127,288,4380_100012,Tyndall College,46304-00011-1,0,4380_7778208_180806,4380_1694 -4380_78127,289,4380_100013,Tyndall College,46306-00014-1,0,4380_7778208_180806,4380_1694 -4380_78127,290,4380_100014,Tyndall College,46309-00015-1,0,4380_7778208_180806,4380_1694 -4380_78127,291,4380_100015,Tyndall College,46302-00013-1,0,4380_7778208_180806,4380_1694 -4380_78127,292,4380_100016,Tyndall College,46311-00016-1,0,4380_7778208_180806,4380_1694 -4380_78127,293,4380_100017,Tyndall College,46305-00017-1,0,4380_7778208_180806,4380_1694 -4380_78127,295,4380_100018,Tyndall College,46307-00019-1,0,4380_7778208_180806,4380_1694 -4380_78127,294,4380_100019,Tyndall College,46301-00018-1,0,4380_7778208_180806,4380_1694 -4380_77954,293,4380_10002,Athboy,55522-00017-1,0,4380_7778208_1110101,4380_193 -4380_78127,296,4380_100020,Tyndall College,46303-00021-1,0,4380_7778208_180806,4380_1694 -4380_78127,297,4380_100022,Tyndall College,44654-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_100029,Tyndall College,44665-00009-1,0,4380_7778208_180801,4380_1694 -4380_77954,294,4380_10003,Athboy,55524-00018-1,0,4380_7778208_1110101,4380_193 -4380_78127,286,4380_100030,Tyndall College,44663-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100031,Tyndall College,44655-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100032,Tyndall College,44659-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100033,Tyndall College,44661-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100034,Tyndall College,44666-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100035,Tyndall College,44657-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100036,Tyndall College,44664-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100037,Tyndall College,44660-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100038,Tyndall College,44662-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100039,Tyndall College,44656-00018-1,0,4380_7778208_180801,4380_1694 -4380_77954,295,4380_10004,Athboy,55525-00019-1,0,4380_7778208_1110101,4380_193 -4380_78127,296,4380_100040,Tyndall College,44658-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100042,Tyndall College,45036-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100049,Tyndall College,45045-00009-1,0,4380_7778208_180802,4380_1694 -4380_77954,296,4380_10005,Athboy,55526-00021-1,0,4380_7778208_1110101,4380_196 -4380_78127,286,4380_100050,Tyndall College,45047-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100051,Tyndall College,45043-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100052,Tyndall College,45041-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100053,Tyndall College,45039-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100054,Tyndall College,45046-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100055,Tyndall College,45037-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100056,Tyndall College,45048-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100057,Tyndall College,45042-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100058,Tyndall College,45040-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100059,Tyndall College,45044-00018-1,0,4380_7778208_180802,4380_1694 -4380_78127,296,4380_100060,Tyndall College,45038-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100062,Tyndall College,44680-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_100069,Tyndall College,46330-00009-1,0,4380_7778208_180806,4380_1694 -4380_78127,286,4380_100070,Tyndall College,46332-00010-1,0,4380_7778208_180806,4380_1694 -4380_78127,287,4380_100071,Tyndall College,46324-00012-1,0,4380_7778208_180806,4380_1694 -4380_78127,288,4380_100072,Tyndall College,46334-00011-1,0,4380_7778208_180806,4380_1694 -4380_78127,289,4380_100073,Tyndall College,46328-00014-1,0,4380_7778208_180806,4380_1694 -4380_78127,290,4380_100074,Tyndall College,46331-00015-1,0,4380_7778208_180806,4380_1694 -4380_78127,291,4380_100075,Tyndall College,46326-00013-1,0,4380_7778208_180806,4380_1694 -4380_78127,292,4380_100076,Tyndall College,46333-00016-1,0,4380_7778208_180806,4380_1694 -4380_78127,293,4380_100077,Tyndall College,46335-00017-1,0,4380_7778208_180806,4380_1694 -4380_78127,295,4380_100078,Tyndall College,46329-00019-1,0,4380_7778208_180806,4380_1694 -4380_78127,294,4380_100079,Tyndall College,46325-00018-1,0,4380_7778208_180806,4380_1694 -4380_78127,296,4380_100080,Tyndall College,46327-00021-1,0,4380_7778208_180806,4380_1694 -4380_78127,297,4380_100082,Tyndall College,45062-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100089,Tyndall College,44682-00009-1,0,4380_7778208_180801,4380_1694 -4380_78127,286,4380_100090,Tyndall College,44688-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100091,Tyndall College,44684-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100092,Tyndall College,44690-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100093,Tyndall College,44692-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100094,Tyndall College,44683-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100095,Tyndall College,44686-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100096,Tyndall College,44689-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100097,Tyndall College,44691-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100098,Tyndall College,44693-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100099,Tyndall College,44685-00018-1,0,4380_7778208_180801,4380_1694 -4380_78127,296,4380_100100,Tyndall College,44687-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100102,Tyndall College,44694-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_100109,Tyndall College,45074-00009-1,0,4380_7778208_180802,4380_1694 -4380_78127,286,4380_100110,Tyndall College,45070-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100111,Tyndall College,45072-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100112,Tyndall College,45066-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100113,Tyndall College,45068-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100114,Tyndall College,45075-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100115,Tyndall College,45064-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100116,Tyndall College,45071-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100117,Tyndall College,45067-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100118,Tyndall College,45069-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100119,Tyndall College,45073-00018-1,0,4380_7778208_180802,4380_1694 -4380_78127,296,4380_100120,Tyndall College,45065-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100122,Tyndall College,45076-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100129,Tyndall College,46358-00009-1,0,4380_7778208_180806,4380_1694 -4380_77954,285,4380_10013,Delvin,7534-00009-1,0,4380_7778208_1110104,4380_194 -4380_78127,286,4380_100130,Tyndall College,46350-00010-1,0,4380_7778208_180806,4380_1694 -4380_78127,287,4380_100131,Tyndall College,46356-00012-1,0,4380_7778208_180806,4380_1694 -4380_78127,288,4380_100132,Tyndall College,46352-00011-1,0,4380_7778208_180806,4380_1694 -4380_78127,289,4380_100133,Tyndall College,46354-00014-1,0,4380_7778208_180806,4380_1694 -4380_78127,290,4380_100134,Tyndall College,46359-00015-1,0,4380_7778208_180806,4380_1694 -4380_78127,291,4380_100135,Tyndall College,46348-00013-1,0,4380_7778208_180806,4380_1694 -4380_78127,292,4380_100136,Tyndall College,46351-00016-1,0,4380_7778208_180806,4380_1694 -4380_78127,293,4380_100137,Tyndall College,46353-00017-1,0,4380_7778208_180806,4380_1694 -4380_78127,295,4380_100138,Tyndall College,46355-00019-1,0,4380_7778208_180806,4380_1694 -4380_78127,294,4380_100139,Tyndall College,46357-00018-1,0,4380_7778208_180806,4380_1694 -4380_77954,286,4380_10014,Delvin,7546-00010-1,0,4380_7778208_1110104,4380_194 -4380_78127,296,4380_100140,Tyndall College,46349-00021-1,0,4380_7778208_180806,4380_1694 -4380_78127,297,4380_100142,Tyndall College,44708-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_100149,Tyndall College,44709-00009-1,0,4380_7778208_180801,4380_1694 -4380_77954,297,4380_10015,Athboy,7659-00008-1,0,4380_7778208_1110105,4380_189 -4380_78127,286,4380_100150,Tyndall College,44713-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100151,Tyndall College,44715-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100152,Tyndall College,44719-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100153,Tyndall College,44717-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100154,Tyndall College,44710-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100155,Tyndall College,44711-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100156,Tyndall College,44714-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100157,Tyndall College,44720-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100158,Tyndall College,44718-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100159,Tyndall College,44716-00018-1,0,4380_7778208_180801,4380_1694 -4380_77954,288,4380_10016,Delvin,7558-00011-1,0,4380_7778208_1110104,4380_194 -4380_78127,296,4380_100160,Tyndall College,44712-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100162,Tyndall College,45090-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100169,Tyndall College,45093-00009-1,0,4380_7778208_180802,4380_1694 -4380_77954,287,4380_10017,Delvin,7570-00012-1,0,4380_7778208_1110104,4380_194 -4380_78127,286,4380_100170,Tyndall College,45099-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100171,Tyndall College,45095-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100172,Tyndall College,45091-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100173,Tyndall College,45101-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100174,Tyndall College,45094-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100175,Tyndall College,45097-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100176,Tyndall College,45100-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100177,Tyndall College,45092-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100178,Tyndall College,45102-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100179,Tyndall College,45096-00018-1,0,4380_7778208_180802,4380_1694 -4380_77954,289,4380_10018,Delvin,7522-00014-1,0,4380_7778208_1110104,4380_194 -4380_78127,296,4380_100180,Tyndall College,45098-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100182,Tyndall College,44734-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_100189,Tyndall College,46378-00009-1,0,4380_7778208_180806,4380_1694 -4380_77954,290,4380_10019,Delvin,55623-00015-1,0,4380_7778208_1110104,4380_194 -4380_78127,286,4380_100190,Tyndall College,46376-00010-1,0,4380_7778208_180806,4380_1694 -4380_78127,287,4380_100191,Tyndall College,46372-00012-1,0,4380_7778208_180806,4380_1694 -4380_78127,288,4380_100192,Tyndall College,46382-00011-1,0,4380_7778208_180806,4380_1694 -4380_78127,289,4380_100193,Tyndall College,46380-00014-1,0,4380_7778208_180806,4380_1694 -4380_78127,290,4380_100194,Tyndall College,46379-00015-1,0,4380_7778208_180806,4380_1694 -4380_78127,291,4380_100195,Tyndall College,46374-00013-1,0,4380_7778208_180806,4380_1694 -4380_78127,292,4380_100196,Tyndall College,46377-00016-1,0,4380_7778208_180806,4380_1694 -4380_78127,293,4380_100197,Tyndall College,46383-00017-1,0,4380_7778208_180806,4380_1694 -4380_78127,295,4380_100198,Tyndall College,46381-00019-1,0,4380_7778208_180806,4380_1694 -4380_78127,294,4380_100199,Tyndall College,46373-00018-1,0,4380_7778208_180806,4380_1694 -4380_77954,291,4380_10020,Delvin,7437-00013-1,0,4380_7778208_1110102,4380_197 -4380_78127,296,4380_100200,Tyndall College,46375-00021-1,0,4380_7778208_180806,4380_1694 -4380_78127,297,4380_100202,Tyndall College,45116-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100209,Tyndall College,44740-00009-1,0,4380_7778208_180801,4380_1694 -4380_77954,292,4380_10021,Delvin,55627-00016-1,0,4380_7778208_1110104,4380_194 -4380_78127,286,4380_100210,Tyndall College,44746-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100211,Tyndall College,44744-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100212,Tyndall College,44742-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100213,Tyndall College,44736-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100214,Tyndall College,44741-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100215,Tyndall College,44738-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100216,Tyndall College,44747-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100217,Tyndall College,44743-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100218,Tyndall College,44737-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100219,Tyndall College,44745-00018-1,0,4380_7778208_180801,4380_1694 -4380_77954,293,4380_10022,Delvin,55625-00017-1,0,4380_7778208_1110104,4380_194 -4380_78127,296,4380_100220,Tyndall College,44739-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100222,Tyndall College,44748-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_100229,Tyndall College,45122-00009-1,0,4380_7778208_180802,4380_1694 -4380_77954,294,4380_10023,Delvin,55626-00018-1,0,4380_7778208_1110104,4380_194 -4380_78127,286,4380_100230,Tyndall College,45126-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100231,Tyndall College,45128-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100232,Tyndall College,45118-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100233,Tyndall College,45120-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100234,Tyndall College,45123-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100235,Tyndall College,45124-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100236,Tyndall College,45127-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100237,Tyndall College,45119-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100238,Tyndall College,45121-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100239,Tyndall College,45129-00018-1,0,4380_7778208_180802,4380_1694 -4380_77954,295,4380_10024,Delvin,55624-00019-1,0,4380_7778208_1110104,4380_194 -4380_78127,296,4380_100240,Tyndall College,45125-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100242,Tyndall College,45130-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100249,Tyndall College,46398-00009-1,0,4380_7778208_180806,4380_1694 -4380_77954,296,4380_10025,Delvin,55564-00021-1,0,4380_7778208_1110102,4380_197 -4380_78127,286,4380_100250,Tyndall College,46402-00010-1,0,4380_7778208_180806,4380_1694 -4380_78127,287,4380_100251,Tyndall College,46396-00012-1,0,4380_7778208_180806,4380_1694 -4380_78127,288,4380_100252,Tyndall College,46406-00011-1,0,4380_7778208_180806,4380_1694 -4380_78127,289,4380_100253,Tyndall College,46404-00014-1,0,4380_7778208_180806,4380_1694 -4380_78127,290,4380_100254,Tyndall College,46399-00015-1,0,4380_7778208_180806,4380_1694 -4380_78127,291,4380_100255,Tyndall College,46400-00013-1,0,4380_7778208_180806,4380_1694 -4380_78127,292,4380_100256,Tyndall College,46403-00016-1,0,4380_7778208_180806,4380_1694 -4380_78127,293,4380_100257,Tyndall College,46407-00017-1,0,4380_7778208_180806,4380_1694 -4380_78127,295,4380_100258,Tyndall College,46405-00019-1,0,4380_7778208_180806,4380_1694 -4380_78127,294,4380_100259,Tyndall College,46397-00018-1,0,4380_7778208_180806,4380_1694 -4380_78127,296,4380_100260,Tyndall College,46401-00021-1,0,4380_7778208_180806,4380_1694 -4380_78127,297,4380_100262,Tyndall College,44762-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_100269,Tyndall College,44771-00009-1,0,4380_7778208_180801,4380_1694 -4380_78127,286,4380_100270,Tyndall College,44773-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100271,Tyndall College,44767-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100272,Tyndall College,44763-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100273,Tyndall College,44765-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100274,Tyndall College,44772-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100275,Tyndall College,44769-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100276,Tyndall College,44774-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100277,Tyndall College,44764-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100278,Tyndall College,44766-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100279,Tyndall College,44768-00018-1,0,4380_7778208_180801,4380_1694 -4380_78127,296,4380_100280,Tyndall College,44770-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100282,Tyndall College,45144-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100289,Tyndall College,45155-00009-1,0,4380_7778208_180802,4380_1694 -4380_78127,286,4380_100290,Tyndall College,45151-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100291,Tyndall College,45149-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100292,Tyndall College,45145-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100293,Tyndall College,45147-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100294,Tyndall College,45156-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100295,Tyndall College,45153-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100296,Tyndall College,45152-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100297,Tyndall College,45146-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100298,Tyndall College,45148-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100299,Tyndall College,45150-00018-1,0,4380_7778208_180802,4380_1694 -4380_78113,285,4380_1003,Dublin via Airport,50051-00009-1,1,4380_7778208_1000907,4380_18 -4380_78127,296,4380_100300,Tyndall College,45154-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100302,Tyndall College,44788-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_100309,Tyndall College,46426-00009-1,0,4380_7778208_180806,4380_1694 -4380_78127,286,4380_100310,Tyndall College,46420-00010-1,0,4380_7778208_180806,4380_1694 -4380_78127,287,4380_100311,Tyndall College,46422-00012-1,0,4380_7778208_180806,4380_1694 -4380_78127,288,4380_100312,Tyndall College,46430-00011-1,0,4380_7778208_180806,4380_1694 -4380_78127,289,4380_100313,Tyndall College,46428-00014-1,0,4380_7778208_180806,4380_1694 -4380_78127,290,4380_100314,Tyndall College,46427-00015-1,0,4380_7778208_180806,4380_1694 -4380_78127,291,4380_100315,Tyndall College,46424-00013-1,0,4380_7778208_180806,4380_1694 -4380_78127,292,4380_100316,Tyndall College,46421-00016-1,0,4380_7778208_180806,4380_1694 -4380_78127,293,4380_100317,Tyndall College,46431-00017-1,0,4380_7778208_180806,4380_1694 -4380_78127,295,4380_100318,Tyndall College,46429-00019-1,0,4380_7778208_180806,4380_1694 -4380_78127,294,4380_100319,Tyndall College,46423-00018-1,0,4380_7778208_180806,4380_1694 -4380_78127,296,4380_100320,Tyndall College,46425-00021-1,0,4380_7778208_180806,4380_1694 -4380_78127,297,4380_100322,Tyndall College,45170-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100329,Tyndall College,44800-00009-1,0,4380_7778208_180801,4380_1694 -4380_77954,285,4380_10033,Athboy,7680-00009-1,0,4380_7778208_1110106,4380_193 -4380_78127,286,4380_100330,Tyndall College,44798-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100331,Tyndall College,44794-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100332,Tyndall College,44790-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100333,Tyndall College,44796-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100334,Tyndall College,44801-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100335,Tyndall College,44792-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100336,Tyndall College,44799-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100337,Tyndall College,44791-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100338,Tyndall College,44797-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100339,Tyndall College,44795-00018-1,0,4380_7778208_180801,4380_1694 -4380_77954,286,4380_10034,Athboy,7694-00010-1,0,4380_7778208_1110106,4380_193 -4380_78127,296,4380_100340,Tyndall College,44793-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100342,Tyndall College,44802-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_100349,Tyndall College,45182-00009-1,0,4380_7778208_180802,4380_1694 -4380_77954,297,4380_10035,Athboy,7731-00008-1,0,4380_7778208_1110106,4380_195 -4380_78127,286,4380_100350,Tyndall College,45180-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100351,Tyndall College,45174-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100352,Tyndall College,45176-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100353,Tyndall College,45172-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100354,Tyndall College,45183-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100355,Tyndall College,45178-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100356,Tyndall College,45181-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100357,Tyndall College,45177-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100358,Tyndall College,45173-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100359,Tyndall College,45175-00018-1,0,4380_7778208_180802,4380_1694 -4380_77954,288,4380_10036,Athboy,7704-00011-1,0,4380_7778208_1110106,4380_193 -4380_78127,296,4380_100360,Tyndall College,45179-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100362,Tyndall College,45184-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100369,Tyndall College,46452-00009-1,0,4380_7778208_180806,4380_1694 -4380_77954,287,4380_10037,Athboy,7714-00012-1,0,4380_7778208_1110106,4380_193 -4380_78127,286,4380_100370,Tyndall College,46450-00010-1,0,4380_7778208_180806,4380_1694 -4380_78127,287,4380_100371,Tyndall College,46444-00012-1,0,4380_7778208_180806,4380_1694 -4380_78127,288,4380_100372,Tyndall College,46446-00011-1,0,4380_7778208_180806,4380_1694 -4380_78127,289,4380_100373,Tyndall College,46448-00014-1,0,4380_7778208_180806,4380_1694 -4380_78127,290,4380_100374,Tyndall College,46453-00015-1,0,4380_7778208_180806,4380_1694 -4380_78127,291,4380_100375,Tyndall College,46454-00013-1,0,4380_7778208_180806,4380_1694 -4380_78127,292,4380_100376,Tyndall College,46451-00016-1,0,4380_7778208_180806,4380_1694 -4380_78127,293,4380_100377,Tyndall College,46447-00017-1,0,4380_7778208_180806,4380_1694 -4380_78127,295,4380_100378,Tyndall College,46449-00019-1,0,4380_7778208_180806,4380_1694 -4380_78127,294,4380_100379,Tyndall College,46445-00018-1,0,4380_7778208_180806,4380_1694 -4380_77954,289,4380_10038,Athboy,7670-00014-1,0,4380_7778208_1110106,4380_193 -4380_78127,296,4380_100380,Tyndall College,46455-00021-1,0,4380_7778208_180806,4380_1694 -4380_78127,297,4380_100382,Tyndall College,46268-00008-1,0,4380_7778208_180805,4380_1694 -4380_78127,285,4380_100389,Tyndall College,44821-00009-1,0,4380_7778208_180801,4380_1694 -4380_77954,290,4380_10039,Athboy,55695-00015-1,0,4380_7778208_1110106,4380_193 -4380_78127,286,4380_100390,Tyndall College,44819-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100391,Tyndall College,44823-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100392,Tyndall College,44815-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100393,Tyndall College,44817-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100394,Tyndall College,44822-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100395,Tyndall College,44825-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100396,Tyndall College,44820-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100397,Tyndall College,44816-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100398,Tyndall College,44818-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100399,Tyndall College,44824-00018-1,0,4380_7778208_180801,4380_1694 -4380_78113,286,4380_1004,Dublin via Airport,50053-00010-1,1,4380_7778208_1000907,4380_18 -4380_77954,291,4380_10040,Athboy,7498-00013-1,0,4380_7778208_1110103,4380_196 -4380_78127,296,4380_100400,Tyndall College,44826-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100402,Tyndall College,45198-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100409,Tyndall College,45207-00009-1,0,4380_7778208_180802,4380_1694 -4380_77954,292,4380_10041,Athboy,55698-00016-1,0,4380_7778208_1110106,4380_193 -4380_78127,286,4380_100410,Tyndall College,45209-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100411,Tyndall College,45205-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100412,Tyndall College,45199-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100413,Tyndall College,45201-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100414,Tyndall College,45208-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100415,Tyndall College,45203-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100416,Tyndall College,45210-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100417,Tyndall College,45200-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100418,Tyndall College,45202-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100419,Tyndall College,45206-00018-1,0,4380_7778208_180802,4380_1694 -4380_77954,293,4380_10042,Athboy,55696-00017-1,0,4380_7778208_1110106,4380_193 -4380_78127,296,4380_100420,Tyndall College,45204-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100422,Tyndall College,46270-00008-1,0,4380_7778208_180805,4380_1694 -4380_78127,285,4380_100429,Tyndall College,44849-00009-1,0,4380_7778208_180801,4380_1694 -4380_77954,294,4380_10043,Athboy,55699-00018-1,0,4380_7778208_1110106,4380_193 -4380_78127,286,4380_100430,Tyndall College,44847-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100431,Tyndall College,44839-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100432,Tyndall College,44841-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100433,Tyndall College,44845-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100434,Tyndall College,44850-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100435,Tyndall College,44843-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100436,Tyndall College,44848-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100437,Tyndall College,44842-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100438,Tyndall College,44846-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100439,Tyndall College,44840-00018-1,0,4380_7778208_180801,4380_1694 -4380_77954,295,4380_10044,Athboy,55694-00019-1,0,4380_7778208_1110106,4380_193 -4380_78127,296,4380_100440,Tyndall College,44844-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100442,Tyndall College,45224-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100449,Tyndall College,45233-00009-1,0,4380_7778208_180802,4380_1694 -4380_77954,296,4380_10045,Athboy,55597-00021-1,0,4380_7778208_1110103,4380_196 -4380_78127,286,4380_100450,Tyndall College,45229-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100451,Tyndall College,45227-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100452,Tyndall College,45225-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100453,Tyndall College,45235-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100454,Tyndall College,45234-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100455,Tyndall College,45231-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100456,Tyndall College,45230-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100457,Tyndall College,45226-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100458,Tyndall College,45236-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100459,Tyndall College,45228-00018-1,0,4380_7778208_180802,4380_1694 -4380_78127,296,4380_100460,Tyndall College,45232-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100462,Tyndall College,46272-00008-1,0,4380_7778208_180805,4380_1694 -4380_78127,285,4380_100469,Tyndall College,44867-00009-1,0,4380_7778208_180801,4380_1694 -4380_78127,286,4380_100470,Tyndall College,44871-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100471,Tyndall College,44863-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100472,Tyndall College,44873-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100473,Tyndall College,44869-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100474,Tyndall College,44868-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100475,Tyndall College,44865-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100476,Tyndall College,44872-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100477,Tyndall College,44874-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100478,Tyndall College,44870-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100479,Tyndall College,44864-00018-1,0,4380_7778208_180801,4380_1694 -4380_78127,296,4380_100480,Tyndall College,44866-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100482,Tyndall College,45250-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100489,Tyndall College,45259-00009-1,0,4380_7778208_180802,4380_1694 -4380_78127,286,4380_100490,Tyndall College,45255-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100491,Tyndall College,45261-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100492,Tyndall College,45253-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100493,Tyndall College,45257-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100494,Tyndall College,45260-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100495,Tyndall College,45251-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100496,Tyndall College,45256-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100497,Tyndall College,45254-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100498,Tyndall College,45258-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100499,Tyndall College,45262-00018-1,0,4380_7778208_180802,4380_1694 -4380_78113,297,4380_1005,Dublin via Airport,49951-00008-1,1,4380_7778208_1000906,4380_18 -4380_78127,296,4380_100500,Tyndall College,45252-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100502,Tyndall College,46274-00008-1,0,4380_7778208_180805,4380_1694 -4380_78127,285,4380_100509,Tyndall College,44893-00009-1,0,4380_7778208_180801,4380_1694 -4380_78127,286,4380_100510,Tyndall College,44895-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100511,Tyndall College,44891-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100512,Tyndall College,44889-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100513,Tyndall College,44887-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100514,Tyndall College,44894-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100515,Tyndall College,44897-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100516,Tyndall College,44896-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100517,Tyndall College,44890-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100518,Tyndall College,44888-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100519,Tyndall College,44892-00018-1,0,4380_7778208_180801,4380_1694 -4380_78127,296,4380_100520,Tyndall College,44898-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100522,Tyndall College,45276-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100529,Tyndall College,45287-00009-1,0,4380_7778208_180802,4380_1694 -4380_77954,285,4380_10053,Athboy,7744-00009-1,0,4380_7778208_1110107,4380_193 -4380_78127,286,4380_100530,Tyndall College,45281-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100531,Tyndall College,45285-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100532,Tyndall College,45279-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100533,Tyndall College,45283-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100534,Tyndall College,45288-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100535,Tyndall College,45277-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100536,Tyndall College,45282-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100537,Tyndall College,45280-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100538,Tyndall College,45284-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100539,Tyndall College,45286-00018-1,0,4380_7778208_180802,4380_1694 -4380_77954,286,4380_10054,Athboy,7754-00010-1,0,4380_7778208_1110107,4380_193 -4380_78127,296,4380_100540,Tyndall College,45278-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,297,4380_100542,Tyndall College,46276-00008-1,0,4380_7778208_180805,4380_1694 -4380_78127,285,4380_100549,Tyndall College,44915-00009-1,0,4380_7778208_180801,4380_1694 -4380_77954,297,4380_10055,Athboy,7504-00008-1,0,4380_7778208_1110103,4380_195 -4380_78127,286,4380_100550,Tyndall College,44921-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_100551,Tyndall College,44913-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_100552,Tyndall College,44911-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_100553,Tyndall College,44919-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_100554,Tyndall College,44916-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_100555,Tyndall College,44917-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_100556,Tyndall College,44922-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_100557,Tyndall College,44912-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_100558,Tyndall College,44920-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_100559,Tyndall College,44914-00018-1,0,4380_7778208_180801,4380_1694 -4380_77954,288,4380_10056,Athboy,7761-00011-1,0,4380_7778208_1110107,4380_193 -4380_78127,296,4380_100560,Tyndall College,44918-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_100562,Tyndall College,45302-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100569,Tyndall College,45307-00009-1,0,4380_7778208_180802,4380_1694 -4380_77954,287,4380_10057,Athboy,7768-00012-1,0,4380_7778208_1110107,4380_193 -4380_78127,286,4380_100570,Tyndall College,45305-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_100571,Tyndall College,45313-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_100572,Tyndall College,45311-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_100573,Tyndall College,45309-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_100574,Tyndall College,45308-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_100575,Tyndall College,45303-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_100576,Tyndall College,45306-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_100577,Tyndall College,45312-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_100578,Tyndall College,45310-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_100579,Tyndall College,45314-00018-1,0,4380_7778208_180802,4380_1694 -4380_77954,289,4380_10058,Athboy,7740-00014-1,0,4380_7778208_1110107,4380_193 -4380_78127,296,4380_100580,Tyndall College,45304-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_100587,MSD,44945-00009-1,1,4380_7778208_180802,4380_1696 -4380_78127,286,4380_100588,MSD,44941-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_100589,MSD,44935-00012-1,1,4380_7778208_180802,4380_1696 -4380_77954,290,4380_10059,Athboy,55725-00015-1,0,4380_7778208_1110107,4380_193 -4380_78127,288,4380_100590,MSD,44939-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_100591,MSD,44937-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_100592,MSD,44946-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_100593,MSD,44943-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_100594,MSD,44942-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_100595,MSD,44940-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_100596,MSD,44938-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_100597,MSD,44936-00018-1,1,4380_7778208_180802,4380_1696 -4380_78127,296,4380_100598,MSD,44944-00021-1,1,4380_7778208_180802,4380_1696 -4380_78113,287,4380_1006,Dublin via Airport,50043-00012-1,1,4380_7778208_1000907,4380_18 -4380_77954,291,4380_10060,Athboy,7582-00013-1,0,4380_7778208_1110104,4380_196 -4380_78127,285,4380_100605,MSD,44570-00009-1,1,4380_7778208_180801,4380_1696 -4380_78127,286,4380_100606,MSD,44566-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_100607,MSD,44576-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_100608,MSD,44572-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_100609,MSD,44568-00014-1,1,4380_7778208_180801,4380_1696 -4380_77954,292,4380_10061,Athboy,55724-00016-1,0,4380_7778208_1110107,4380_193 -4380_78127,290,4380_100610,MSD,44571-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_100611,MSD,44574-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_100612,MSD,44567-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_100613,MSD,44573-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_100614,MSD,44569-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_100615,MSD,44577-00018-1,1,4380_7778208_180801,4380_1696 -4380_78127,296,4380_100616,MSD,44575-00021-1,1,4380_7778208_180801,4380_1696 -4380_77954,293,4380_10062,Athboy,55721-00017-1,0,4380_7778208_1110107,4380_193 -4380_78127,285,4380_100623,MSD,44965-00009-1,1,4380_7778208_180802,4380_1696 -4380_78127,286,4380_100624,MSD,44967-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_100625,MSD,44963-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_100626,MSD,44961-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_100627,MSD,44959-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_100628,MSD,44966-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_100629,MSD,44969-00013-1,1,4380_7778208_180802,4380_1696 -4380_77954,294,4380_10063,Athboy,55723-00018-1,0,4380_7778208_1110107,4380_193 -4380_78127,292,4380_100630,MSD,44968-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_100631,MSD,44962-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_100632,MSD,44960-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_100633,MSD,44964-00018-1,1,4380_7778208_180802,4380_1696 -4380_78127,296,4380_100634,MSD,44970-00021-1,1,4380_7778208_180802,4380_1696 -4380_77954,295,4380_10064,Athboy,55722-00019-1,0,4380_7778208_1110107,4380_193 -4380_78127,285,4380_100641,MSD,44594-00009-1,1,4380_7778208_180801,4380_1696 -4380_78127,286,4380_100642,MSD,44590-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_100643,MSD,44592-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_100644,MSD,44598-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_100645,MSD,44596-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_100646,MSD,44595-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_100647,MSD,44600-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_100648,MSD,44591-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_100649,MSD,44599-00017-1,1,4380_7778208_180801,4380_1696 -4380_77954,296,4380_10065,Athboy,55628-00021-1,0,4380_7778208_1110104,4380_196 -4380_78127,295,4380_100650,MSD,44597-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_100651,MSD,44593-00018-1,1,4380_7778208_180801,4380_1696 -4380_78127,296,4380_100652,MSD,44601-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_100659,MSD,44983-00009-1,1,4380_7778208_180802,4380_1696 -4380_78127,286,4380_100660,MSD,44987-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_100661,MSD,44989-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_100662,MSD,44993-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_100663,MSD,44985-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_100664,MSD,44984-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_100665,MSD,44991-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_100666,MSD,44988-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_100667,MSD,44994-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_100668,MSD,44986-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_100669,MSD,44990-00018-1,1,4380_7778208_180802,4380_1696 -4380_78127,296,4380_100670,MSD,44992-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_100672,MSD,44995-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_100679,MSD,44615-00009-1,1,4380_7778208_180801,4380_1696 -4380_78127,286,4380_100680,MSD,44621-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_100681,MSD,44625-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_100682,MSD,44617-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_100683,MSD,44619-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_100684,MSD,44616-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_100685,MSD,44623-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_100686,MSD,44622-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_100687,MSD,44618-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_100688,MSD,44620-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_100689,MSD,44626-00018-1,1,4380_7778208_180801,4380_1696 -4380_78127,296,4380_100690,MSD,44624-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_100692,MSD,44627-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_100699,MSD,46298-00009-1,1,4380_7778208_180806,4380_1696 -4380_78113,288,4380_1007,Dublin via Airport,50045-00011-1,1,4380_7778208_1000907,4380_18 -4380_78127,286,4380_100700,MSD,46296-00010-1,1,4380_7778208_180806,4380_1696 -4380_78127,287,4380_100701,MSD,46294-00012-1,1,4380_7778208_180806,4380_1696 -4380_78127,288,4380_100702,MSD,46292-00011-1,1,4380_7778208_180806,4380_1696 -4380_78127,289,4380_100703,MSD,46290-00014-1,1,4380_7778208_180806,4380_1696 -4380_78127,290,4380_100704,MSD,46299-00015-1,1,4380_7778208_180806,4380_1696 -4380_78127,291,4380_100705,MSD,46288-00013-1,1,4380_7778208_180806,4380_1696 -4380_78127,292,4380_100706,MSD,46297-00016-1,1,4380_7778208_180806,4380_1696 -4380_78127,293,4380_100707,MSD,46293-00017-1,1,4380_7778208_180806,4380_1696 -4380_78127,295,4380_100708,MSD,46291-00019-1,1,4380_7778208_180806,4380_1696 -4380_78127,294,4380_100709,MSD,46295-00018-1,1,4380_7778208_180806,4380_1696 -4380_77954,285,4380_10071,Athboy,7463-00009-1,0,4380_7778208_1110103,4380_189 -4380_78127,296,4380_100710,MSD,46289-00021-1,1,4380_7778208_180806,4380_1696 -4380_78127,297,4380_100712,MSD,45009-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_100719,MSD,44651-00009-1,1,4380_7778208_180801,4380_1696 -4380_77954,286,4380_10072,Athboy,7474-00010-1,0,4380_7778208_1110103,4380_189 -4380_78127,286,4380_100720,MSD,44649-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_100721,MSD,44647-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_100722,MSD,44643-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_100723,MSD,44641-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_100724,MSD,44652-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_100725,MSD,44645-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_100726,MSD,44650-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_100727,MSD,44644-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_100728,MSD,44642-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_100729,MSD,44648-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,288,4380_10073,Athboy,7477-00011-1,0,4380_7778208_1110103,4380_189 -4380_78127,296,4380_100730,MSD,44646-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_100732,MSD,44653-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_100739,MSD,45027-00009-1,1,4380_7778208_180802,4380_1696 -4380_77954,287,4380_10074,Athboy,7484-00012-1,0,4380_7778208_1110103,4380_189 -4380_78127,286,4380_100740,MSD,45023-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_100741,MSD,45029-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_100742,MSD,45025-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_100743,MSD,45033-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_100744,MSD,45028-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_100745,MSD,45031-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_100746,MSD,45024-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_100747,MSD,45026-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_100748,MSD,45034-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_100749,MSD,45030-00018-1,1,4380_7778208_180802,4380_1696 -4380_77954,289,4380_10075,Athboy,7460-00014-1,0,4380_7778208_1110103,4380_189 -4380_78127,296,4380_100750,MSD,45032-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_100752,MSD,45035-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_100759,MSD,46322-00009-1,1,4380_7778208_180806,4380_1696 -4380_77954,290,4380_10076,Athboy,55601-00015-1,0,4380_7778208_1110103,4380_189 -4380_78127,286,4380_100760,MSD,46314-00010-1,1,4380_7778208_180806,4380_1696 -4380_78127,287,4380_100761,MSD,46316-00012-1,1,4380_7778208_180806,4380_1696 -4380_78127,288,4380_100762,MSD,46312-00011-1,1,4380_7778208_180806,4380_1696 -4380_78127,289,4380_100763,MSD,46318-00014-1,1,4380_7778208_180806,4380_1696 -4380_78127,290,4380_100764,MSD,46323-00015-1,1,4380_7778208_180806,4380_1696 -4380_78127,291,4380_100765,MSD,46320-00013-1,1,4380_7778208_180806,4380_1696 -4380_78127,292,4380_100766,MSD,46315-00016-1,1,4380_7778208_180806,4380_1696 -4380_78127,293,4380_100767,MSD,46313-00017-1,1,4380_7778208_180806,4380_1696 -4380_78127,295,4380_100768,MSD,46319-00019-1,1,4380_7778208_180806,4380_1696 -4380_78127,294,4380_100769,MSD,46317-00018-1,1,4380_7778208_180806,4380_1696 -4380_77954,292,4380_10077,Athboy,55602-00016-1,0,4380_7778208_1110103,4380_189 -4380_78127,296,4380_100770,MSD,46321-00021-1,1,4380_7778208_180806,4380_1696 -4380_78127,297,4380_100772,MSD,44667-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_100779,MSD,44678-00009-1,1,4380_7778208_180801,4380_1696 -4380_77954,293,4380_10078,Athboy,55600-00017-1,0,4380_7778208_1110103,4380_189 -4380_78127,286,4380_100780,MSD,44672-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_100781,MSD,44676-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_100782,MSD,44670-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_100783,MSD,44668-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_100784,MSD,44679-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_100785,MSD,44674-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_100786,MSD,44673-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_100787,MSD,44671-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_100788,MSD,44669-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_100789,MSD,44677-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,294,4380_10079,Athboy,55598-00018-1,0,4380_7778208_1110103,4380_189 -4380_78127,296,4380_100790,MSD,44675-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_100792,MSD,45049-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_100799,MSD,45060-00009-1,1,4380_7778208_180802,4380_1696 -4380_78113,289,4380_1008,Dublin via Airport,50049-00014-1,1,4380_7778208_1000907,4380_18 -4380_77954,295,4380_10080,Athboy,55599-00019-1,0,4380_7778208_1110103,4380_189 -4380_78127,286,4380_100800,MSD,45056-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_100801,MSD,45052-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_100802,MSD,45054-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_100803,MSD,45058-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_100804,MSD,45061-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_100805,MSD,45050-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_100806,MSD,45057-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_100807,MSD,45055-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_100808,MSD,45059-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_100809,MSD,45053-00018-1,1,4380_7778208_180802,4380_1696 -4380_78127,296,4380_100810,MSD,45051-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_100812,MSD,44681-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_100819,MSD,46344-00009-1,1,4380_7778208_180806,4380_1696 -4380_78127,286,4380_100820,MSD,46346-00010-1,1,4380_7778208_180806,4380_1696 -4380_78127,287,4380_100821,MSD,46338-00012-1,1,4380_7778208_180806,4380_1696 -4380_78127,288,4380_100822,MSD,46336-00011-1,1,4380_7778208_180806,4380_1696 -4380_78127,289,4380_100823,MSD,46342-00014-1,1,4380_7778208_180806,4380_1696 -4380_78127,290,4380_100824,MSD,46345-00015-1,1,4380_7778208_180806,4380_1696 -4380_78127,291,4380_100825,MSD,46340-00013-1,1,4380_7778208_180806,4380_1696 -4380_78127,292,4380_100826,MSD,46347-00016-1,1,4380_7778208_180806,4380_1696 -4380_78127,293,4380_100827,MSD,46337-00017-1,1,4380_7778208_180806,4380_1696 -4380_78127,295,4380_100828,MSD,46343-00019-1,1,4380_7778208_180806,4380_1696 -4380_78127,294,4380_100829,MSD,46339-00018-1,1,4380_7778208_180806,4380_1696 -4380_77954,297,4380_10083,Athboy,7594-00008-1,0,4380_7778208_1110104,4380_186 -4380_78127,296,4380_100830,MSD,46341-00021-1,1,4380_7778208_180806,4380_1696 -4380_78127,297,4380_100832,MSD,45063-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_100839,MSD,44697-00009-1,1,4380_7778208_180801,4380_1696 -4380_77954,291,4380_10084,Athboy,7650-00013-1,0,4380_7778208_1110105,4380_189 -4380_78127,286,4380_100840,MSD,44705-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_100841,MSD,44699-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_100842,MSD,44695-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_100843,MSD,44701-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_100844,MSD,44698-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_100845,MSD,44703-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_100846,MSD,44706-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_100847,MSD,44696-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_100848,MSD,44702-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_100849,MSD,44700-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,296,4380_10085,Athboy,55659-00021-1,0,4380_7778208_1110105,4380_189 -4380_78127,296,4380_100850,MSD,44704-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_100852,MSD,44707-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_100859,MSD,45087-00009-1,1,4380_7778208_180802,4380_1696 -4380_78127,286,4380_100860,MSD,45079-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_100861,MSD,45081-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_100862,MSD,45077-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_100863,MSD,45083-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_100864,MSD,45088-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_100865,MSD,45085-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_100866,MSD,45080-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_100867,MSD,45078-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_100868,MSD,45084-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_100869,MSD,45082-00018-1,1,4380_7778208_180802,4380_1696 -4380_78127,296,4380_100870,MSD,45086-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_100872,MSD,45089-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_100879,MSD,46370-00009-1,1,4380_7778208_180806,4380_1696 -4380_78127,286,4380_100880,MSD,46366-00010-1,1,4380_7778208_180806,4380_1696 -4380_78127,287,4380_100881,MSD,46368-00012-1,1,4380_7778208_180806,4380_1696 -4380_78127,288,4380_100882,MSD,46362-00011-1,1,4380_7778208_180806,4380_1696 -4380_78127,289,4380_100883,MSD,46360-00014-1,1,4380_7778208_180806,4380_1696 -4380_78127,290,4380_100884,MSD,46371-00015-1,1,4380_7778208_180806,4380_1696 -4380_78127,291,4380_100885,MSD,46364-00013-1,1,4380_7778208_180806,4380_1696 -4380_78127,292,4380_100886,MSD,46367-00016-1,1,4380_7778208_180806,4380_1696 -4380_78127,293,4380_100887,MSD,46363-00017-1,1,4380_7778208_180806,4380_1696 -4380_78127,295,4380_100888,MSD,46361-00019-1,1,4380_7778208_180806,4380_1696 -4380_78127,294,4380_100889,MSD,46369-00018-1,1,4380_7778208_180806,4380_1696 -4380_78127,296,4380_100890,MSD,46365-00021-1,1,4380_7778208_180806,4380_1696 -4380_78127,297,4380_100892,MSD,44721-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_100899,MSD,44722-00009-1,1,4380_7778208_180801,4380_1696 -4380_78113,290,4380_1009,Dublin via Airport,50052-00015-1,1,4380_7778208_1000907,4380_18 -4380_78127,286,4380_100900,MSD,44728-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_100901,MSD,44726-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_100902,MSD,44730-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_100903,MSD,44724-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_100904,MSD,44723-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_100905,MSD,44732-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_100906,MSD,44729-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_100907,MSD,44731-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_100908,MSD,44725-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_100909,MSD,44727-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,285,4380_10091,Athboy,7391-00009-1,0,4380_7778208_1110102,4380_186 -4380_78127,296,4380_100910,MSD,44733-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_100912,MSD,45103-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_100919,MSD,45106-00009-1,1,4380_7778208_180802,4380_1696 -4380_77954,286,4380_10092,Athboy,7404-00010-1,0,4380_7778208_1110102,4380_186 -4380_78127,286,4380_100920,MSD,45112-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_100921,MSD,45114-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_100922,MSD,45110-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_100923,MSD,45108-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_100924,MSD,45107-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_100925,MSD,45104-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_100926,MSD,45113-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_100927,MSD,45111-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_100928,MSD,45109-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_100929,MSD,45115-00018-1,1,4380_7778208_180802,4380_1696 -4380_77954,288,4380_10093,Athboy,7409-00011-1,0,4380_7778208_1110102,4380_186 -4380_78127,296,4380_100930,MSD,45105-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_100932,MSD,44735-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_100939,MSD,46384-00009-1,1,4380_7778208_180806,4380_1696 -4380_77954,287,4380_10094,Athboy,7422-00012-1,0,4380_7778208_1110102,4380_186 -4380_78127,286,4380_100940,MSD,46392-00010-1,1,4380_7778208_180806,4380_1696 -4380_78127,287,4380_100941,MSD,46388-00012-1,1,4380_7778208_180806,4380_1696 -4380_78127,288,4380_100942,MSD,46390-00011-1,1,4380_7778208_180806,4380_1696 -4380_78127,289,4380_100943,MSD,46394-00014-1,1,4380_7778208_180806,4380_1696 -4380_78127,290,4380_100944,MSD,46385-00015-1,1,4380_7778208_180806,4380_1696 -4380_78127,291,4380_100945,MSD,46386-00013-1,1,4380_7778208_180806,4380_1696 -4380_78127,292,4380_100946,MSD,46393-00016-1,1,4380_7778208_180806,4380_1696 -4380_78127,293,4380_100947,MSD,46391-00017-1,1,4380_7778208_180806,4380_1696 -4380_78127,295,4380_100948,MSD,46395-00019-1,1,4380_7778208_180806,4380_1696 -4380_78127,294,4380_100949,MSD,46389-00018-1,1,4380_7778208_180806,4380_1696 -4380_77954,289,4380_10095,Athboy,7370-00014-1,0,4380_7778208_1110102,4380_186 -4380_78127,296,4380_100950,MSD,46387-00021-1,1,4380_7778208_180806,4380_1696 -4380_78127,297,4380_100952,MSD,45117-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_100959,MSD,44757-00009-1,1,4380_7778208_180801,4380_1696 -4380_77954,290,4380_10096,Athboy,55575-00015-1,0,4380_7778208_1110102,4380_186 -4380_78127,286,4380_100960,MSD,44751-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_100961,MSD,44753-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_100962,MSD,44759-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_100963,MSD,44749-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_100964,MSD,44758-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_100965,MSD,44755-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_100966,MSD,44752-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_100967,MSD,44760-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_100968,MSD,44750-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_100969,MSD,44754-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,292,4380_10097,Athboy,55572-00016-1,0,4380_7778208_1110102,4380_186 -4380_78127,296,4380_100970,MSD,44756-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_100972,MSD,44761-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_100979,MSD,45131-00009-1,1,4380_7778208_180802,4380_1696 -4380_77954,293,4380_10098,Athboy,55573-00017-1,0,4380_7778208_1110102,4380_186 -4380_78127,286,4380_100980,MSD,45133-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_100981,MSD,45135-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_100982,MSD,45139-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_100983,MSD,45141-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_100984,MSD,45132-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_100985,MSD,45137-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_100986,MSD,45134-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_100987,MSD,45140-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_100988,MSD,45142-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_100989,MSD,45136-00018-1,1,4380_7778208_180802,4380_1696 -4380_77954,294,4380_10099,Athboy,55571-00018-1,0,4380_7778208_1110102,4380_186 -4380_78127,296,4380_100990,MSD,45138-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_100992,MSD,45143-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_100999,MSD,46414-00009-1,1,4380_7778208_180806,4380_1696 -4380_77946,293,4380_101,Dundalk,50470-00017-1,0,4380_7778208_1000915,4380_1 -4380_78113,291,4380_1010,Dublin via Airport,50047-00013-1,1,4380_7778208_1000907,4380_20 -4380_77954,295,4380_10100,Athboy,55574-00019-1,0,4380_7778208_1110102,4380_186 -4380_78127,286,4380_101000,MSD,46412-00010-1,1,4380_7778208_180806,4380_1696 -4380_78127,287,4380_101001,MSD,46410-00012-1,1,4380_7778208_180806,4380_1696 -4380_78127,288,4380_101002,MSD,46418-00011-1,1,4380_7778208_180806,4380_1696 -4380_78127,289,4380_101003,MSD,46416-00014-1,1,4380_7778208_180806,4380_1696 -4380_78127,290,4380_101004,MSD,46415-00015-1,1,4380_7778208_180806,4380_1696 -4380_78127,291,4380_101005,MSD,46408-00013-1,1,4380_7778208_180806,4380_1696 -4380_78127,292,4380_101006,MSD,46413-00016-1,1,4380_7778208_180806,4380_1696 -4380_78127,293,4380_101007,MSD,46419-00017-1,1,4380_7778208_180806,4380_1696 -4380_78127,295,4380_101008,MSD,46417-00019-1,1,4380_7778208_180806,4380_1696 -4380_78127,294,4380_101009,MSD,46411-00018-1,1,4380_7778208_180806,4380_1696 -4380_78127,296,4380_101010,MSD,46409-00021-1,1,4380_7778208_180806,4380_1696 -4380_78127,297,4380_101012,MSD,44775-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_101019,MSD,44782-00009-1,1,4380_7778208_180801,4380_1696 -4380_78127,286,4380_101020,MSD,44778-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_101021,MSD,44780-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_101022,MSD,44776-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_101023,MSD,44784-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_101024,MSD,44783-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_101025,MSD,44786-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_101026,MSD,44779-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_101027,MSD,44777-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_101028,MSD,44785-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_101029,MSD,44781-00018-1,1,4380_7778208_180801,4380_1696 -4380_78127,296,4380_101030,MSD,44787-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_101032,MSD,45157-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_101039,MSD,45166-00009-1,1,4380_7778208_180802,4380_1696 -4380_78127,286,4380_101040,MSD,45162-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_101041,MSD,45160-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_101042,MSD,45164-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_101043,MSD,45158-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_101044,MSD,45167-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_101045,MSD,45168-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_101046,MSD,45163-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_101047,MSD,45165-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_101048,MSD,45159-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_101049,MSD,45161-00018-1,1,4380_7778208_180802,4380_1696 -4380_78127,296,4380_101050,MSD,45169-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_101052,MSD,44789-00008-1,1,4380_7778208_180801,4380_1696 -4380_78127,285,4380_101059,MSD,46432-00009-1,1,4380_7778208_180806,4380_1696 -4380_77954,285,4380_10106,Athboy,7609-00009-1,0,4380_7778208_1110105,4380_189 -4380_78127,286,4380_101060,MSD,46436-00010-1,1,4380_7778208_180806,4380_1696 -4380_78127,287,4380_101061,MSD,46440-00012-1,1,4380_7778208_180806,4380_1696 -4380_78127,288,4380_101062,MSD,46434-00011-1,1,4380_7778208_180806,4380_1696 -4380_78127,289,4380_101063,MSD,46438-00014-1,1,4380_7778208_180806,4380_1696 -4380_78127,290,4380_101064,MSD,46433-00015-1,1,4380_7778208_180806,4380_1696 -4380_78127,291,4380_101065,MSD,46442-00013-1,1,4380_7778208_180806,4380_1696 -4380_78127,292,4380_101066,MSD,46437-00016-1,1,4380_7778208_180806,4380_1696 -4380_78127,293,4380_101067,MSD,46435-00017-1,1,4380_7778208_180806,4380_1696 -4380_78127,295,4380_101068,MSD,46439-00019-1,1,4380_7778208_180806,4380_1696 -4380_78127,294,4380_101069,MSD,46441-00018-1,1,4380_7778208_180806,4380_1696 -4380_77954,286,4380_10107,Athboy,7623-00010-1,0,4380_7778208_1110105,4380_189 -4380_78127,296,4380_101070,MSD,46443-00021-1,1,4380_7778208_180806,4380_1696 -4380_78127,297,4380_101072,MSD,45171-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_101079,MSD,44803-00009-1,1,4380_7778208_180801,4380_1696 -4380_77954,288,4380_10108,Athboy,7633-00011-1,0,4380_7778208_1110105,4380_189 -4380_78127,286,4380_101080,MSD,44805-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_101081,MSD,44807-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_101082,MSD,44809-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_101083,MSD,44811-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_101084,MSD,44804-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_101085,MSD,44813-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_101086,MSD,44806-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_101087,MSD,44810-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_101088,MSD,44812-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_101089,MSD,44808-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,287,4380_10109,Athboy,7643-00012-1,0,4380_7778208_1110105,4380_189 -4380_78127,296,4380_101090,MSD,44814-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_101092,MSD,46267-00008-1,1,4380_7778208_180805,4380_1696 -4380_78127,285,4380_101099,MSD,45193-00009-1,1,4380_7778208_180802,4380_1696 -4380_78113,292,4380_1011,Dublin via Airport,50054-00016-1,1,4380_7778208_1000907,4380_18 -4380_77954,289,4380_10110,Athboy,7603-00014-1,0,4380_7778208_1110105,4380_189 -4380_78127,286,4380_101100,MSD,45185-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_101101,MSD,45195-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_101102,MSD,45191-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_101103,MSD,45189-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_101104,MSD,45194-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_101105,MSD,45187-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_101106,MSD,45186-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_101107,MSD,45192-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_101108,MSD,45190-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_101109,MSD,45196-00018-1,1,4380_7778208_180802,4380_1696 -4380_77954,290,4380_10111,Athboy,55662-00015-1,0,4380_7778208_1110105,4380_189 -4380_78127,296,4380_101110,MSD,45188-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_101112,MSD,45197-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_101119,MSD,46464-00009-1,1,4380_7778208_180806,4380_1696 -4380_77954,292,4380_10112,Athboy,55664-00016-1,0,4380_7778208_1110105,4380_189 -4380_78127,286,4380_101120,MSD,46462-00010-1,1,4380_7778208_180806,4380_1696 -4380_78127,287,4380_101121,MSD,46458-00012-1,1,4380_7778208_180806,4380_1696 -4380_78127,288,4380_101122,MSD,46460-00011-1,1,4380_7778208_180806,4380_1696 -4380_78127,289,4380_101123,MSD,46456-00014-1,1,4380_7778208_180806,4380_1696 -4380_78127,290,4380_101124,MSD,46465-00015-1,1,4380_7778208_180806,4380_1696 -4380_78127,291,4380_101125,MSD,46466-00013-1,1,4380_7778208_180806,4380_1696 -4380_78127,292,4380_101126,MSD,46463-00016-1,1,4380_7778208_180806,4380_1696 -4380_78127,293,4380_101127,MSD,46461-00017-1,1,4380_7778208_180806,4380_1696 -4380_78127,295,4380_101128,MSD,46457-00019-1,1,4380_7778208_180806,4380_1696 -4380_78127,294,4380_101129,MSD,46459-00018-1,1,4380_7778208_180806,4380_1696 -4380_77954,293,4380_10113,Athboy,55663-00017-1,0,4380_7778208_1110105,4380_189 -4380_78127,296,4380_101130,MSD,46467-00021-1,1,4380_7778208_180806,4380_1696 -4380_78127,297,4380_101132,MSD,46269-00008-1,1,4380_7778208_180805,4380_1696 -4380_78127,285,4380_101139,MSD,44831-00009-1,1,4380_7778208_180801,4380_1696 -4380_77954,294,4380_10114,Athboy,55661-00018-1,0,4380_7778208_1110105,4380_189 -4380_78127,286,4380_101140,MSD,44827-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_101141,MSD,44833-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_101142,MSD,44835-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_101143,MSD,44837-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_101144,MSD,44832-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_101145,MSD,44829-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_101146,MSD,44828-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_101147,MSD,44836-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_101148,MSD,44838-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_101149,MSD,44834-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,295,4380_10115,Athboy,55660-00019-1,0,4380_7778208_1110105,4380_189 -4380_78127,296,4380_101150,MSD,44830-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_101152,MSD,45211-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_101159,MSD,45222-00009-1,1,4380_7778208_180802,4380_1696 -4380_78127,286,4380_101160,MSD,45220-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_101161,MSD,45212-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_101162,MSD,45214-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_101163,MSD,45216-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_101164,MSD,45223-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_101165,MSD,45218-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_101166,MSD,45221-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_101167,MSD,45215-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_101168,MSD,45217-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_101169,MSD,45213-00018-1,1,4380_7778208_180802,4380_1696 -4380_78127,296,4380_101170,MSD,45219-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_101172,MSD,46271-00008-1,1,4380_7778208_180805,4380_1696 -4380_78127,285,4380_101179,MSD,44857-00009-1,1,4380_7778208_180801,4380_1696 -4380_78127,286,4380_101180,MSD,44853-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_101181,MSD,44855-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_101182,MSD,44859-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_101183,MSD,44851-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_101184,MSD,44858-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_101185,MSD,44861-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_101186,MSD,44854-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_101187,MSD,44860-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_101188,MSD,44852-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_101189,MSD,44856-00018-1,1,4380_7778208_180801,4380_1696 -4380_78127,296,4380_101190,MSD,44862-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_101192,MSD,45237-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_101199,MSD,45248-00009-1,1,4380_7778208_180802,4380_1696 -4380_78113,293,4380_1012,Dublin via Airport,50046-00017-1,1,4380_7778208_1000907,4380_18 -4380_78127,286,4380_101200,MSD,45238-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_101201,MSD,45242-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_101202,MSD,45244-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_101203,MSD,45246-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_101204,MSD,45249-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_101205,MSD,45240-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_101206,MSD,45239-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_101207,MSD,45245-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_101208,MSD,45247-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_101209,MSD,45243-00018-1,1,4380_7778208_180802,4380_1696 -4380_78127,296,4380_101210,MSD,45241-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_101212,MSD,46273-00008-1,1,4380_7778208_180805,4380_1696 -4380_78127,285,4380_101219,MSD,44877-00009-1,1,4380_7778208_180801,4380_1696 -4380_78127,286,4380_101220,MSD,44885-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_101221,MSD,44879-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_101222,MSD,44875-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_101223,MSD,44883-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_101224,MSD,44878-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_101225,MSD,44881-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_101226,MSD,44886-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_101227,MSD,44876-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_101228,MSD,44884-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_101229,MSD,44880-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,285,4380_10123,Athboy,7284-00009-1,0,4380_7778208_1110101,4380_193 -4380_78127,296,4380_101230,MSD,44882-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_101232,MSD,45263-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_101239,MSD,45274-00009-1,1,4380_7778208_180802,4380_1696 -4380_77954,286,4380_10124,Athboy,7308-00010-1,0,4380_7778208_1110101,4380_193 -4380_78127,286,4380_101240,MSD,45266-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_101241,MSD,45268-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_101242,MSD,45264-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_101243,MSD,45272-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_101244,MSD,45275-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_101245,MSD,45270-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_101246,MSD,45267-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_101247,MSD,45265-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_101248,MSD,45273-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_101249,MSD,45269-00018-1,1,4380_7778208_180802,4380_1696 -4380_77954,297,4380_10125,Athboy,7452-00008-1,0,4380_7778208_1110102,4380_195 -4380_78127,296,4380_101250,MSD,45271-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_101252,MSD,46275-00008-1,1,4380_7778208_180805,4380_1696 -4380_78127,285,4380_101259,MSD,44901-00009-1,1,4380_7778208_180801,4380_1696 -4380_77954,288,4380_10126,Athboy,7324-00011-1,0,4380_7778208_1110101,4380_193 -4380_78127,286,4380_101260,MSD,44907-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_101261,MSD,44909-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_101262,MSD,44903-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_101263,MSD,44905-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_101264,MSD,44902-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_101265,MSD,44899-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_101266,MSD,44908-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_101267,MSD,44904-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_101268,MSD,44906-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_101269,MSD,44910-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,287,4380_10127,Athboy,7340-00012-1,0,4380_7778208_1110101,4380_193 -4380_78127,296,4380_101270,MSD,44900-00021-1,1,4380_7778208_180801,4380_1696 -4380_78127,297,4380_101272,MSD,45289-00008-1,1,4380_7778208_180802,4380_1696 -4380_78127,285,4380_101279,MSD,45296-00009-1,1,4380_7778208_180802,4380_1696 -4380_77954,289,4380_10128,Athboy,7268-00014-1,0,4380_7778208_1110101,4380_193 -4380_78127,286,4380_101280,MSD,45300-00010-1,1,4380_7778208_180802,4380_1696 -4380_78127,287,4380_101281,MSD,45298-00012-1,1,4380_7778208_180802,4380_1696 -4380_78127,288,4380_101282,MSD,45290-00011-1,1,4380_7778208_180802,4380_1696 -4380_78127,289,4380_101283,MSD,45292-00014-1,1,4380_7778208_180802,4380_1696 -4380_78127,290,4380_101284,MSD,45297-00015-1,1,4380_7778208_180802,4380_1696 -4380_78127,291,4380_101285,MSD,45294-00013-1,1,4380_7778208_180802,4380_1696 -4380_78127,292,4380_101286,MSD,45301-00016-1,1,4380_7778208_180802,4380_1696 -4380_78127,293,4380_101287,MSD,45291-00017-1,1,4380_7778208_180802,4380_1696 -4380_78127,295,4380_101288,MSD,45293-00019-1,1,4380_7778208_180802,4380_1696 -4380_78127,294,4380_101289,MSD,45299-00018-1,1,4380_7778208_180802,4380_1696 -4380_77954,290,4380_10129,Athboy,55536-00015-1,0,4380_7778208_1110101,4380_193 -4380_78127,296,4380_101290,MSD,45295-00021-1,1,4380_7778208_180802,4380_1696 -4380_78127,297,4380_101292,MSD,46277-00008-1,1,4380_7778208_180805,4380_1696 -4380_78127,285,4380_101299,MSD,44933-00009-1,1,4380_7778208_180801,4380_1696 -4380_78113,294,4380_1013,Dublin via Airport,50044-00018-1,1,4380_7778208_1000907,4380_18 -4380_77954,291,4380_10130,Athboy,7356-00013-1,0,4380_7778208_1110101,4380_196 -4380_78127,286,4380_101300,MSD,44931-00010-1,1,4380_7778208_180801,4380_1696 -4380_78127,287,4380_101301,MSD,44923-00012-1,1,4380_7778208_180801,4380_1696 -4380_78127,288,4380_101302,MSD,44925-00011-1,1,4380_7778208_180801,4380_1696 -4380_78127,289,4380_101303,MSD,44927-00014-1,1,4380_7778208_180801,4380_1696 -4380_78127,290,4380_101304,MSD,44934-00015-1,1,4380_7778208_180801,4380_1696 -4380_78127,291,4380_101305,MSD,44929-00013-1,1,4380_7778208_180801,4380_1696 -4380_78127,292,4380_101306,MSD,44932-00016-1,1,4380_7778208_180801,4380_1696 -4380_78127,293,4380_101307,MSD,44926-00017-1,1,4380_7778208_180801,4380_1696 -4380_78127,295,4380_101308,MSD,44928-00019-1,1,4380_7778208_180801,4380_1696 -4380_78127,294,4380_101309,MSD,44924-00018-1,1,4380_7778208_180801,4380_1696 -4380_77954,292,4380_10131,Athboy,55537-00016-1,0,4380_7778208_1110101,4380_193 -4380_78127,296,4380_101310,MSD,44930-00021-1,1,4380_7778208_180801,4380_1696 -4380_78128,285,4380_101317,Wexford Business Park,45707-00009-1,0,4380_7778208_180804,4380_1697 -4380_78128,286,4380_101318,Wexford Business Park,45709-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101319,Wexford Business Park,45713-00012-1,0,4380_7778208_180804,4380_1697 -4380_77954,293,4380_10132,Athboy,55534-00017-1,0,4380_7778208_1110101,4380_193 -4380_78128,288,4380_101320,Wexford Business Park,45711-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101321,Wexford Business Park,45715-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101322,Wexford Business Park,45708-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101323,Wexford Business Park,45717-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101324,Wexford Business Park,45710-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101325,Wexford Business Park,45712-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101326,Wexford Business Park,45716-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101327,Wexford Business Park,45714-00018-1,0,4380_7778208_180804,4380_1697 -4380_78128,296,4380_101328,Wexford Business Park,45718-00021-1,0,4380_7778208_180804,4380_1697 -4380_77954,294,4380_10133,Athboy,55535-00018-1,0,4380_7778208_1110101,4380_193 -4380_78128,285,4380_101335,Wexford Business Park,45333-00009-1,0,4380_7778208_180803,4380_1697 -4380_78128,286,4380_101336,Wexford Business Park,45331-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101337,Wexford Business Park,45327-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101338,Wexford Business Park,45337-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101339,Wexford Business Park,45335-00014-1,0,4380_7778208_180803,4380_1697 -4380_77954,295,4380_10134,Athboy,55533-00019-1,0,4380_7778208_1110101,4380_193 -4380_78128,290,4380_101340,Wexford Business Park,45334-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101341,Wexford Business Park,45329-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101342,Wexford Business Park,45332-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101343,Wexford Business Park,45338-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101344,Wexford Business Park,45336-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101345,Wexford Business Park,45328-00018-1,0,4380_7778208_180803,4380_1697 -4380_78128,296,4380_101346,Wexford Business Park,45330-00021-1,0,4380_7778208_180803,4380_1697 -4380_77954,296,4380_10135,Athboy,55538-00021-1,0,4380_7778208_1110101,4380_196 -4380_78128,285,4380_101353,Wexford Business Park,45739-00009-1,0,4380_7778208_180804,4380_1697 -4380_78128,286,4380_101354,Wexford Business Park,45731-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101355,Wexford Business Park,45733-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101356,Wexford Business Park,45735-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101357,Wexford Business Park,45741-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101358,Wexford Business Park,45740-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101359,Wexford Business Park,45737-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101360,Wexford Business Park,45732-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101361,Wexford Business Park,45736-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101362,Wexford Business Park,45742-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101363,Wexford Business Park,45734-00018-1,0,4380_7778208_180804,4380_1697 -4380_78128,296,4380_101364,Wexford Business Park,45738-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101371,Wexford Business Park,45357-00009-1,0,4380_7778208_180803,4380_1697 -4380_78128,286,4380_101372,Wexford Business Park,45351-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101373,Wexford Business Park,45359-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101374,Wexford Business Park,45353-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101375,Wexford Business Park,45361-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101376,Wexford Business Park,45358-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101377,Wexford Business Park,45355-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101378,Wexford Business Park,45352-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101379,Wexford Business Park,45354-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101380,Wexford Business Park,45362-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101381,Wexford Business Park,45360-00018-1,0,4380_7778208_180803,4380_1697 -4380_78128,296,4380_101382,Wexford Business Park,45356-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101389,Wexford Business Park,45757-00009-1,0,4380_7778208_180804,4380_1697 -4380_78128,286,4380_101390,Wexford Business Park,45761-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101391,Wexford Business Park,45755-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101392,Wexford Business Park,45765-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101393,Wexford Business Park,45759-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101394,Wexford Business Park,45758-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101395,Wexford Business Park,45763-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101396,Wexford Business Park,45762-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101397,Wexford Business Park,45766-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101398,Wexford Business Park,45760-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101399,Wexford Business Park,45756-00018-1,0,4380_7778208_180804,4380_1697 -4380_78113,295,4380_1014,Dublin via Airport,50050-00019-1,1,4380_7778208_1000907,4380_18 -4380_78128,296,4380_101400,Wexford Business Park,45764-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101402,Wexford Business Park,45375-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101409,Wexford Business Park,45376-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,285,4380_10141,Athboy,7536-00009-1,0,4380_7778208_1110104,4380_189 -4380_78128,286,4380_101410,Wexford Business Park,45386-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101411,Wexford Business Park,45384-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101412,Wexford Business Park,45378-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101413,Wexford Business Park,45382-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101414,Wexford Business Park,45377-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101415,Wexford Business Park,45380-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101416,Wexford Business Park,45387-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101417,Wexford Business Park,45379-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101418,Wexford Business Park,45383-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101419,Wexford Business Park,45385-00018-1,0,4380_7778208_180803,4380_1697 -4380_77954,286,4380_10142,Athboy,7548-00010-1,0,4380_7778208_1110104,4380_189 -4380_78128,296,4380_101420,Wexford Business Park,45381-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101422,Wexford Business Park,45768-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101429,Wexford Business Park,46121-00009-1,0,4380_7778208_180805,4380_1697 -4380_77954,288,4380_10143,Athboy,7560-00011-1,0,4380_7778208_1110104,4380_189 -4380_78128,286,4380_101430,Wexford Business Park,46113-00010-1,0,4380_7778208_180805,4380_1697 -4380_78128,287,4380_101431,Wexford Business Park,46119-00012-1,0,4380_7778208_180805,4380_1697 -4380_78128,288,4380_101432,Wexford Business Park,46117-00011-1,0,4380_7778208_180805,4380_1697 -4380_78128,289,4380_101433,Wexford Business Park,46111-00014-1,0,4380_7778208_180805,4380_1697 -4380_78128,290,4380_101434,Wexford Business Park,46122-00015-1,0,4380_7778208_180805,4380_1697 -4380_78128,291,4380_101435,Wexford Business Park,46115-00013-1,0,4380_7778208_180805,4380_1697 -4380_78128,292,4380_101436,Wexford Business Park,46114-00016-1,0,4380_7778208_180805,4380_1697 -4380_78128,293,4380_101437,Wexford Business Park,46118-00017-1,0,4380_7778208_180805,4380_1697 -4380_78128,295,4380_101438,Wexford Business Park,46112-00019-1,0,4380_7778208_180805,4380_1697 -4380_78128,294,4380_101439,Wexford Business Park,46120-00018-1,0,4380_7778208_180805,4380_1697 -4380_77954,287,4380_10144,Athboy,7572-00012-1,0,4380_7778208_1110104,4380_189 -4380_78128,296,4380_101440,Wexford Business Park,46116-00021-1,0,4380_7778208_180805,4380_1697 -4380_78128,297,4380_101442,Wexford Business Park,45389-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101449,Wexford Business Park,45782-00009-1,0,4380_7778208_180804,4380_1697 -4380_77954,289,4380_10145,Athboy,7524-00014-1,0,4380_7778208_1110104,4380_189 -4380_78128,286,4380_101450,Wexford Business Park,45790-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101451,Wexford Business Park,45788-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101452,Wexford Business Park,45784-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101453,Wexford Business Park,45786-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101454,Wexford Business Park,45783-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101455,Wexford Business Park,45792-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101456,Wexford Business Park,45791-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101457,Wexford Business Park,45785-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101458,Wexford Business Park,45787-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101459,Wexford Business Park,45789-00018-1,0,4380_7778208_180804,4380_1697 -4380_77954,290,4380_10146,Athboy,55639-00015-1,0,4380_7778208_1110104,4380_189 -4380_78128,296,4380_101460,Wexford Business Park,45793-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101462,Wexford Business Park,45794-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101469,Wexford Business Park,45407-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,292,4380_10147,Athboy,55636-00016-1,0,4380_7778208_1110104,4380_189 -4380_78128,286,4380_101470,Wexford Business Park,45409-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101471,Wexford Business Park,45411-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101472,Wexford Business Park,45405-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101473,Wexford Business Park,45413-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101474,Wexford Business Park,45408-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101475,Wexford Business Park,45403-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101476,Wexford Business Park,45410-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101477,Wexford Business Park,45406-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101478,Wexford Business Park,45414-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101479,Wexford Business Park,45412-00018-1,0,4380_7778208_180803,4380_1697 -4380_77954,293,4380_10148,Athboy,55638-00017-1,0,4380_7778208_1110104,4380_189 -4380_78128,296,4380_101480,Wexford Business Park,45404-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101482,Wexford Business Park,45415-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101489,Wexford Business Park,46139-00009-1,0,4380_7778208_180805,4380_1697 -4380_77954,294,4380_10149,Athboy,55634-00018-1,0,4380_7778208_1110104,4380_189 -4380_78128,286,4380_101490,Wexford Business Park,46141-00010-1,0,4380_7778208_180805,4380_1697 -4380_78128,287,4380_101491,Wexford Business Park,46145-00012-1,0,4380_7778208_180805,4380_1697 -4380_78128,288,4380_101492,Wexford Business Park,46137-00011-1,0,4380_7778208_180805,4380_1697 -4380_78128,289,4380_101493,Wexford Business Park,46135-00014-1,0,4380_7778208_180805,4380_1697 -4380_78128,290,4380_101494,Wexford Business Park,46140-00015-1,0,4380_7778208_180805,4380_1697 -4380_78128,291,4380_101495,Wexford Business Park,46143-00013-1,0,4380_7778208_180805,4380_1697 -4380_78128,292,4380_101496,Wexford Business Park,46142-00016-1,0,4380_7778208_180805,4380_1697 -4380_78128,293,4380_101497,Wexford Business Park,46138-00017-1,0,4380_7778208_180805,4380_1697 -4380_78128,295,4380_101498,Wexford Business Park,46136-00019-1,0,4380_7778208_180805,4380_1697 -4380_78128,294,4380_101499,Wexford Business Park,46146-00018-1,0,4380_7778208_180805,4380_1697 -4380_78113,296,4380_1015,Dublin via Airport,50048-00021-1,1,4380_7778208_1000907,4380_20 -4380_77954,295,4380_10150,Athboy,55637-00019-1,0,4380_7778208_1110104,4380_189 -4380_78128,296,4380_101500,Wexford Business Park,46144-00021-1,0,4380_7778208_180805,4380_1697 -4380_78128,297,4380_101502,Wexford Business Park,45808-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101509,Wexford Business Park,45819-00009-1,0,4380_7778208_180804,4380_1697 -4380_78128,286,4380_101510,Wexford Business Park,45817-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101511,Wexford Business Park,45811-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101512,Wexford Business Park,45813-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101513,Wexford Business Park,45815-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101514,Wexford Business Park,45820-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101515,Wexford Business Park,45809-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101516,Wexford Business Park,45818-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101517,Wexford Business Park,45814-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101518,Wexford Business Park,45816-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101519,Wexford Business Park,45812-00018-1,0,4380_7778208_180804,4380_1697 -4380_78128,296,4380_101520,Wexford Business Park,45810-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101522,Wexford Business Park,45429-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101529,Wexford Business Park,45434-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,297,4380_10153,Athboy,7661-00008-1,0,4380_7778208_1110105,4380_190 -4380_78128,286,4380_101530,Wexford Business Park,45436-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101531,Wexford Business Park,45440-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101532,Wexford Business Park,45430-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101533,Wexford Business Park,45432-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101534,Wexford Business Park,45435-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101535,Wexford Business Park,45438-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101536,Wexford Business Park,45437-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101537,Wexford Business Park,45431-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101538,Wexford Business Park,45433-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101539,Wexford Business Park,45441-00018-1,0,4380_7778208_180803,4380_1697 -4380_77954,291,4380_10154,Athboy,7439-00013-1,0,4380_7778208_1110102,4380_193 -4380_78128,296,4380_101540,Wexford Business Park,45439-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101542,Wexford Business Park,45822-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101549,Wexford Business Park,46163-00009-1,0,4380_7778208_180805,4380_1697 -4380_77954,296,4380_10155,Athboy,55576-00021-1,0,4380_7778208_1110102,4380_193 -4380_78128,286,4380_101550,Wexford Business Park,46159-00010-1,0,4380_7778208_180805,4380_1697 -4380_78128,287,4380_101551,Wexford Business Park,46167-00012-1,0,4380_7778208_180805,4380_1697 -4380_78128,288,4380_101552,Wexford Business Park,46165-00011-1,0,4380_7778208_180805,4380_1697 -4380_78128,289,4380_101553,Wexford Business Park,46161-00014-1,0,4380_7778208_180805,4380_1697 -4380_78128,290,4380_101554,Wexford Business Park,46164-00015-1,0,4380_7778208_180805,4380_1697 -4380_78128,291,4380_101555,Wexford Business Park,46169-00013-1,0,4380_7778208_180805,4380_1697 -4380_78128,292,4380_101556,Wexford Business Park,46160-00016-1,0,4380_7778208_180805,4380_1697 -4380_78128,293,4380_101557,Wexford Business Park,46166-00017-1,0,4380_7778208_180805,4380_1697 -4380_78128,295,4380_101558,Wexford Business Park,46162-00019-1,0,4380_7778208_180805,4380_1697 -4380_78128,294,4380_101559,Wexford Business Park,46168-00018-1,0,4380_7778208_180805,4380_1697 -4380_78128,296,4380_101560,Wexford Business Park,46170-00021-1,0,4380_7778208_180805,4380_1697 -4380_78128,297,4380_101562,Wexford Business Park,45443-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101569,Wexford Business Park,45840-00009-1,0,4380_7778208_180804,4380_1697 -4380_78128,286,4380_101570,Wexford Business Park,45846-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101571,Wexford Business Park,45844-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101572,Wexford Business Park,45836-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101573,Wexford Business Park,45842-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101574,Wexford Business Park,45841-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101575,Wexford Business Park,45838-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101576,Wexford Business Park,45847-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101577,Wexford Business Park,45837-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101578,Wexford Business Park,45843-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101579,Wexford Business Park,45845-00018-1,0,4380_7778208_180804,4380_1697 -4380_78128,296,4380_101580,Wexford Business Park,45839-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101582,Wexford Business Park,45848-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101589,Wexford Business Park,45461-00009-1,0,4380_7778208_180803,4380_1697 -4380_78128,286,4380_101590,Wexford Business Park,45463-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101591,Wexford Business Park,45459-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101592,Wexford Business Park,45467-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101593,Wexford Business Park,45457-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101594,Wexford Business Park,45462-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101595,Wexford Business Park,45465-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101596,Wexford Business Park,45464-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101597,Wexford Business Park,45468-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101598,Wexford Business Park,45458-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101599,Wexford Business Park,45460-00018-1,0,4380_7778208_180803,4380_1697 -4380_78128,296,4380_101600,Wexford Business Park,45466-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101602,Wexford Business Park,45469-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101609,Wexford Business Park,46193-00009-1,0,4380_7778208_180805,4380_1697 -4380_78128,286,4380_101610,Wexford Business Park,46183-00010-1,0,4380_7778208_180805,4380_1697 -4380_78128,287,4380_101611,Wexford Business Park,46191-00012-1,0,4380_7778208_180805,4380_1697 -4380_78128,288,4380_101612,Wexford Business Park,46189-00011-1,0,4380_7778208_180805,4380_1697 -4380_78128,289,4380_101613,Wexford Business Park,46185-00014-1,0,4380_7778208_180805,4380_1697 -4380_78128,290,4380_101614,Wexford Business Park,46194-00015-1,0,4380_7778208_180805,4380_1697 -4380_78128,291,4380_101615,Wexford Business Park,46187-00013-1,0,4380_7778208_180805,4380_1697 -4380_78128,292,4380_101616,Wexford Business Park,46184-00016-1,0,4380_7778208_180805,4380_1697 -4380_78128,293,4380_101617,Wexford Business Park,46190-00017-1,0,4380_7778208_180805,4380_1697 -4380_78128,295,4380_101618,Wexford Business Park,46186-00019-1,0,4380_7778208_180805,4380_1697 -4380_78128,294,4380_101619,Wexford Business Park,46192-00018-1,0,4380_7778208_180805,4380_1697 -4380_78128,296,4380_101620,Wexford Business Park,46188-00021-1,0,4380_7778208_180805,4380_1697 -4380_78128,297,4380_101622,Wexford Business Park,45862-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101629,Wexford Business Park,45871-00009-1,0,4380_7778208_180804,4380_1697 -4380_77954,285,4380_10163,Athboy,7682-00009-1,0,4380_7778208_1110106,4380_193 -4380_78128,286,4380_101630,Wexford Business Park,45869-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101631,Wexford Business Park,45867-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101632,Wexford Business Park,45873-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101633,Wexford Business Park,45863-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101634,Wexford Business Park,45872-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101635,Wexford Business Park,45865-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101636,Wexford Business Park,45870-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101637,Wexford Business Park,45874-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101638,Wexford Business Park,45864-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101639,Wexford Business Park,45868-00018-1,0,4380_7778208_180804,4380_1697 -4380_77954,286,4380_10164,Athboy,7696-00010-1,0,4380_7778208_1110106,4380_193 -4380_78128,296,4380_101640,Wexford Business Park,45866-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101642,Wexford Business Park,45483-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101649,Wexford Business Park,45486-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,297,4380_10165,Athboy,7788-00008-1,0,4380_7778208_1110107,4380_195 -4380_78128,286,4380_101650,Wexford Business Park,45484-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101651,Wexford Business Park,45494-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101652,Wexford Business Park,45492-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101653,Wexford Business Park,45490-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101654,Wexford Business Park,45487-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101655,Wexford Business Park,45488-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101656,Wexford Business Park,45485-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101657,Wexford Business Park,45493-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101658,Wexford Business Park,45491-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101659,Wexford Business Park,45495-00018-1,0,4380_7778208_180803,4380_1697 -4380_77954,288,4380_10166,Athboy,7706-00011-1,0,4380_7778208_1110106,4380_193 -4380_78128,296,4380_101660,Wexford Business Park,45489-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101662,Wexford Business Park,45876-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101669,Wexford Business Park,46209-00009-1,0,4380_7778208_180805,4380_1697 -4380_77954,287,4380_10167,Athboy,7716-00012-1,0,4380_7778208_1110106,4380_193 -4380_78128,286,4380_101670,Wexford Business Park,46211-00010-1,0,4380_7778208_180805,4380_1697 -4380_78128,287,4380_101671,Wexford Business Park,46207-00012-1,0,4380_7778208_180805,4380_1697 -4380_78128,288,4380_101672,Wexford Business Park,46217-00011-1,0,4380_7778208_180805,4380_1697 -4380_78128,289,4380_101673,Wexford Business Park,46215-00014-1,0,4380_7778208_180805,4380_1697 -4380_78128,290,4380_101674,Wexford Business Park,46210-00015-1,0,4380_7778208_180805,4380_1697 -4380_78128,291,4380_101675,Wexford Business Park,46213-00013-1,0,4380_7778208_180805,4380_1697 -4380_78128,292,4380_101676,Wexford Business Park,46212-00016-1,0,4380_7778208_180805,4380_1697 -4380_78128,293,4380_101677,Wexford Business Park,46218-00017-1,0,4380_7778208_180805,4380_1697 -4380_78128,295,4380_101678,Wexford Business Park,46216-00019-1,0,4380_7778208_180805,4380_1697 -4380_78128,294,4380_101679,Wexford Business Park,46208-00018-1,0,4380_7778208_180805,4380_1697 -4380_77954,289,4380_10168,Athboy,7672-00014-1,0,4380_7778208_1110106,4380_193 -4380_78128,296,4380_101680,Wexford Business Park,46214-00021-1,0,4380_7778208_180805,4380_1697 -4380_78128,297,4380_101682,Wexford Business Park,45497-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101689,Wexford Business Park,45894-00009-1,0,4380_7778208_180804,4380_1697 -4380_77954,290,4380_10169,Athboy,55707-00015-1,0,4380_7778208_1110106,4380_193 -4380_78128,286,4380_101690,Wexford Business Park,45890-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101691,Wexford Business Park,45896-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101692,Wexford Business Park,45900-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101693,Wexford Business Park,45892-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101694,Wexford Business Park,45895-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101695,Wexford Business Park,45898-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101696,Wexford Business Park,45891-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101697,Wexford Business Park,45901-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101698,Wexford Business Park,45893-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101699,Wexford Business Park,45897-00018-1,0,4380_7778208_180804,4380_1697 -4380_77954,291,4380_10170,Athboy,7500-00013-1,0,4380_7778208_1110103,4380_196 -4380_78128,296,4380_101700,Wexford Business Park,45899-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101702,Wexford Business Park,45902-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101709,Wexford Business Park,45521-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,292,4380_10171,Athboy,55706-00016-1,0,4380_7778208_1110106,4380_193 -4380_78128,286,4380_101710,Wexford Business Park,45515-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101711,Wexford Business Park,45513-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101712,Wexford Business Park,45519-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101713,Wexford Business Park,45517-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101714,Wexford Business Park,45522-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101715,Wexford Business Park,45511-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101716,Wexford Business Park,45516-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101717,Wexford Business Park,45520-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101718,Wexford Business Park,45518-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101719,Wexford Business Park,45514-00018-1,0,4380_7778208_180803,4380_1697 -4380_77954,293,4380_10172,Athboy,55708-00017-1,0,4380_7778208_1110106,4380_193 -4380_78128,296,4380_101720,Wexford Business Park,45512-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101722,Wexford Business Park,45523-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101729,Wexford Business Park,46237-00009-1,0,4380_7778208_180805,4380_1697 -4380_77954,294,4380_10173,Athboy,55709-00018-1,0,4380_7778208_1110106,4380_193 -4380_78128,286,4380_101730,Wexford Business Park,46235-00010-1,0,4380_7778208_180805,4380_1697 -4380_78128,287,4380_101731,Wexford Business Park,46241-00012-1,0,4380_7778208_180805,4380_1697 -4380_78128,288,4380_101732,Wexford Business Park,46233-00011-1,0,4380_7778208_180805,4380_1697 -4380_78128,289,4380_101733,Wexford Business Park,46231-00014-1,0,4380_7778208_180805,4380_1697 -4380_78128,290,4380_101734,Wexford Business Park,46238-00015-1,0,4380_7778208_180805,4380_1697 -4380_78128,291,4380_101735,Wexford Business Park,46239-00013-1,0,4380_7778208_180805,4380_1697 -4380_78128,292,4380_101736,Wexford Business Park,46236-00016-1,0,4380_7778208_180805,4380_1697 -4380_78128,293,4380_101737,Wexford Business Park,46234-00017-1,0,4380_7778208_180805,4380_1697 -4380_78128,295,4380_101738,Wexford Business Park,46232-00019-1,0,4380_7778208_180805,4380_1697 -4380_78128,294,4380_101739,Wexford Business Park,46242-00018-1,0,4380_7778208_180805,4380_1697 -4380_77954,295,4380_10174,Athboy,55710-00019-1,0,4380_7778208_1110106,4380_193 -4380_78128,296,4380_101740,Wexford Business Park,46240-00021-1,0,4380_7778208_180805,4380_1697 -4380_78128,297,4380_101742,Wexford Business Park,45916-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101749,Wexford Business Park,45925-00009-1,0,4380_7778208_180804,4380_1697 -4380_77954,296,4380_10175,Athboy,55604-00021-1,0,4380_7778208_1110103,4380_196 -4380_78128,286,4380_101750,Wexford Business Park,45923-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101751,Wexford Business Park,45919-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101752,Wexford Business Park,45917-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101753,Wexford Business Park,45927-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101754,Wexford Business Park,45926-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101755,Wexford Business Park,45921-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101756,Wexford Business Park,45924-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101757,Wexford Business Park,45918-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101758,Wexford Business Park,45928-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101759,Wexford Business Park,45920-00018-1,0,4380_7778208_180804,4380_1697 -4380_78128,296,4380_101760,Wexford Business Park,45922-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101762,Wexford Business Park,45537-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101769,Wexford Business Park,45546-00009-1,0,4380_7778208_180803,4380_1697 -4380_78128,286,4380_101770,Wexford Business Park,45544-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101771,Wexford Business Park,45538-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101772,Wexford Business Park,45542-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101773,Wexford Business Park,45540-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101774,Wexford Business Park,45547-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101775,Wexford Business Park,45548-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101776,Wexford Business Park,45545-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101777,Wexford Business Park,45543-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101778,Wexford Business Park,45541-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101779,Wexford Business Park,45539-00018-1,0,4380_7778208_180803,4380_1697 -4380_78128,296,4380_101780,Wexford Business Park,45549-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101782,Wexford Business Park,45930-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101789,Wexford Business Park,46261-00009-1,0,4380_7778208_180805,4380_1697 -4380_78128,286,4380_101790,Wexford Business Park,46257-00010-1,0,4380_7778208_180805,4380_1697 -4380_78128,287,4380_101791,Wexford Business Park,46259-00012-1,0,4380_7778208_180805,4380_1697 -4380_78128,288,4380_101792,Wexford Business Park,46255-00011-1,0,4380_7778208_180805,4380_1697 -4380_78128,289,4380_101793,Wexford Business Park,46263-00014-1,0,4380_7778208_180805,4380_1697 -4380_78128,290,4380_101794,Wexford Business Park,46262-00015-1,0,4380_7778208_180805,4380_1697 -4380_78128,291,4380_101795,Wexford Business Park,46265-00013-1,0,4380_7778208_180805,4380_1697 -4380_78128,292,4380_101796,Wexford Business Park,46258-00016-1,0,4380_7778208_180805,4380_1697 -4380_78128,293,4380_101797,Wexford Business Park,46256-00017-1,0,4380_7778208_180805,4380_1697 -4380_78128,295,4380_101798,Wexford Business Park,46264-00019-1,0,4380_7778208_180805,4380_1697 -4380_78128,294,4380_101799,Wexford Business Park,46260-00018-1,0,4380_7778208_180805,4380_1697 -4380_78128,296,4380_101800,Wexford Business Park,46266-00021-1,0,4380_7778208_180805,4380_1697 -4380_78128,297,4380_101802,Wexford Business Park,45551-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101809,Wexford Business Park,45946-00009-1,0,4380_7778208_180804,4380_1697 -4380_78128,286,4380_101810,Wexford Business Park,45952-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101811,Wexford Business Park,45948-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101812,Wexford Business Park,45950-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101813,Wexford Business Park,45944-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101814,Wexford Business Park,45947-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101815,Wexford Business Park,45954-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101816,Wexford Business Park,45953-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101817,Wexford Business Park,45951-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101818,Wexford Business Park,45945-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101819,Wexford Business Park,45949-00018-1,0,4380_7778208_180804,4380_1697 -4380_78128,296,4380_101820,Wexford Business Park,45955-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101822,Wexford Business Park,45956-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101829,Wexford Business Park,45575-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,285,4380_10183,Athboy,7746-00009-1,0,4380_7778208_1110107,4380_193 -4380_78128,286,4380_101830,Wexford Business Park,45565-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101831,Wexford Business Park,45567-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101832,Wexford Business Park,45571-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101833,Wexford Business Park,45569-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101834,Wexford Business Park,45576-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101835,Wexford Business Park,45573-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101836,Wexford Business Park,45566-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101837,Wexford Business Park,45572-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101838,Wexford Business Park,45570-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101839,Wexford Business Park,45568-00018-1,0,4380_7778208_180803,4380_1697 -4380_77954,286,4380_10184,Athboy,7756-00010-1,0,4380_7778208_1110107,4380_193 -4380_78128,296,4380_101840,Wexford Business Park,45574-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101842,Wexford Business Park,45577-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101849,Wexford Business Park,45976-00009-1,0,4380_7778208_180804,4380_1697 -4380_77954,297,4380_10185,Athboy,7506-00008-1,0,4380_7778208_1110103,4380_195 -4380_78128,286,4380_101850,Wexford Business Park,45972-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101851,Wexford Business Park,45980-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101852,Wexford Business Park,45978-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101853,Wexford Business Park,45970-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101854,Wexford Business Park,45977-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101855,Wexford Business Park,45974-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101856,Wexford Business Park,45973-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101857,Wexford Business Park,45979-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101858,Wexford Business Park,45971-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101859,Wexford Business Park,45981-00018-1,0,4380_7778208_180804,4380_1697 -4380_77954,288,4380_10186,Athboy,7763-00011-1,0,4380_7778208_1110107,4380_193 -4380_78128,296,4380_101860,Wexford Business Park,45975-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101862,Wexford Business Park,45982-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101869,Wexford Business Park,45601-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,287,4380_10187,Athboy,7770-00012-1,0,4380_7778208_1110107,4380_193 -4380_78128,286,4380_101870,Wexford Business Park,45593-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101871,Wexford Business Park,45591-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101872,Wexford Business Park,45595-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101873,Wexford Business Park,45597-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101874,Wexford Business Park,45602-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101875,Wexford Business Park,45599-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101876,Wexford Business Park,45594-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101877,Wexford Business Park,45596-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101878,Wexford Business Park,45598-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101879,Wexford Business Park,45592-00018-1,0,4380_7778208_180803,4380_1697 -4380_77954,289,4380_10188,Athboy,7742-00014-1,0,4380_7778208_1110107,4380_193 -4380_78128,296,4380_101880,Wexford Business Park,45600-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101882,Wexford Business Park,45603-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101889,Wexford Business Park,46000-00009-1,0,4380_7778208_180804,4380_1697 -4380_77954,290,4380_10189,Athboy,55734-00015-1,0,4380_7778208_1110107,4380_193 -4380_78128,286,4380_101890,Wexford Business Park,46006-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101891,Wexford Business Park,46002-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101892,Wexford Business Park,45998-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101893,Wexford Business Park,45996-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101894,Wexford Business Park,46001-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101895,Wexford Business Park,46004-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101896,Wexford Business Park,46007-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101897,Wexford Business Park,45999-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101898,Wexford Business Park,45997-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101899,Wexford Business Park,46003-00018-1,0,4380_7778208_180804,4380_1697 -4380_77954,291,4380_10190,Athboy,7722-00013-1,0,4380_7778208_1110106,4380_196 -4380_78128,296,4380_101900,Wexford Business Park,46005-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101902,Wexford Business Park,46008-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101909,Wexford Business Park,45619-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,292,4380_10191,Athboy,55733-00016-1,0,4380_7778208_1110107,4380_193 -4380_78128,286,4380_101910,Wexford Business Park,45623-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101911,Wexford Business Park,45625-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101912,Wexford Business Park,45621-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101913,Wexford Business Park,45627-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101914,Wexford Business Park,45620-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101915,Wexford Business Park,45617-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101916,Wexford Business Park,45624-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101917,Wexford Business Park,45622-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101918,Wexford Business Park,45628-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101919,Wexford Business Park,45626-00018-1,0,4380_7778208_180803,4380_1697 -4380_77954,293,4380_10192,Athboy,55735-00017-1,0,4380_7778208_1110107,4380_193 -4380_78128,296,4380_101920,Wexford Business Park,45618-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101922,Wexford Business Park,45629-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101929,Wexford Business Park,46022-00009-1,0,4380_7778208_180804,4380_1697 -4380_77954,294,4380_10193,Athboy,55732-00018-1,0,4380_7778208_1110107,4380_193 -4380_78128,286,4380_101930,Wexford Business Park,46030-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101931,Wexford Business Park,46032-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101932,Wexford Business Park,46026-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101933,Wexford Business Park,46024-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101934,Wexford Business Park,46023-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101935,Wexford Business Park,46028-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101936,Wexford Business Park,46031-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101937,Wexford Business Park,46027-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101938,Wexford Business Park,46025-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101939,Wexford Business Park,46033-00018-1,0,4380_7778208_180804,4380_1697 -4380_77954,295,4380_10194,Athboy,55736-00019-1,0,4380_7778208_1110107,4380_193 -4380_78128,296,4380_101940,Wexford Business Park,46029-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101942,Wexford Business Park,46034-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101949,Wexford Business Park,45643-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,296,4380_10195,Athboy,55711-00021-1,0,4380_7778208_1110106,4380_196 -4380_78128,286,4380_101950,Wexford Business Park,45647-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101951,Wexford Business Park,45651-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101952,Wexford Business Park,45649-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101953,Wexford Business Park,45645-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101954,Wexford Business Park,45644-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101955,Wexford Business Park,45653-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101956,Wexford Business Park,45648-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101957,Wexford Business Park,45650-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101958,Wexford Business Park,45646-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101959,Wexford Business Park,45652-00018-1,0,4380_7778208_180803,4380_1697 -4380_78128,296,4380_101960,Wexford Business Park,45654-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_101962,Wexford Business Park,45655-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_101969,Wexford Business Park,46054-00009-1,0,4380_7778208_180804,4380_1697 -4380_78128,286,4380_101970,Wexford Business Park,46048-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_101971,Wexford Business Park,46050-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_101972,Wexford Business Park,46058-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_101973,Wexford Business Park,46056-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_101974,Wexford Business Park,46055-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_101975,Wexford Business Park,46052-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_101976,Wexford Business Park,46049-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_101977,Wexford Business Park,46059-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_101978,Wexford Business Park,46057-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_101979,Wexford Business Park,46051-00018-1,0,4380_7778208_180804,4380_1697 -4380_78128,296,4380_101980,Wexford Business Park,46053-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_101982,Wexford Business Park,46060-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_101989,Wexford Business Park,45669-00009-1,0,4380_7778208_180803,4380_1697 -4380_78128,286,4380_101990,Wexford Business Park,45679-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_101991,Wexford Business Park,45671-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_101992,Wexford Business Park,45677-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_101993,Wexford Business Park,45675-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_101994,Wexford Business Park,45670-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_101995,Wexford Business Park,45673-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_101996,Wexford Business Park,45680-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_101997,Wexford Business Park,45678-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_101998,Wexford Business Park,45676-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_101999,Wexford Business Park,45672-00018-1,0,4380_7778208_180803,4380_1697 -4380_77946,294,4380_102,Dundalk,50474-00018-1,0,4380_7778208_1000915,4380_1 -4380_78128,296,4380_102000,Wexford Business Park,45674-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,297,4380_102002,Wexford Business Park,45681-00008-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_102009,Wexford Business Park,46076-00009-1,0,4380_7778208_180804,4380_1697 -4380_78128,286,4380_102010,Wexford Business Park,46080-00010-1,0,4380_7778208_180804,4380_1697 -4380_78128,287,4380_102011,Wexford Business Park,46082-00012-1,0,4380_7778208_180804,4380_1697 -4380_78128,288,4380_102012,Wexford Business Park,46078-00011-1,0,4380_7778208_180804,4380_1697 -4380_78128,289,4380_102013,Wexford Business Park,46074-00014-1,0,4380_7778208_180804,4380_1697 -4380_78128,290,4380_102014,Wexford Business Park,46077-00015-1,0,4380_7778208_180804,4380_1697 -4380_78128,291,4380_102015,Wexford Business Park,46084-00013-1,0,4380_7778208_180804,4380_1697 -4380_78128,292,4380_102016,Wexford Business Park,46081-00016-1,0,4380_7778208_180804,4380_1697 -4380_78128,293,4380_102017,Wexford Business Park,46079-00017-1,0,4380_7778208_180804,4380_1697 -4380_78128,295,4380_102018,Wexford Business Park,46075-00019-1,0,4380_7778208_180804,4380_1697 -4380_78128,294,4380_102019,Wexford Business Park,46083-00018-1,0,4380_7778208_180804,4380_1697 -4380_78128,296,4380_102020,Wexford Business Park,46085-00021-1,0,4380_7778208_180804,4380_1697 -4380_78128,297,4380_102022,Wexford Business Park,46086-00008-1,0,4380_7778208_180804,4380_1697 -4380_78128,285,4380_102029,Wexford Business Park,45705-00009-1,0,4380_7778208_180803,4380_1697 -4380_77954,285,4380_10203,Athboy,7286-00009-1,0,4380_7778208_1110101,4380_193 -4380_78128,286,4380_102030,Wexford Business Park,45697-00010-1,0,4380_7778208_180803,4380_1697 -4380_78128,287,4380_102031,Wexford Business Park,45699-00012-1,0,4380_7778208_180803,4380_1697 -4380_78128,288,4380_102032,Wexford Business Park,45695-00011-1,0,4380_7778208_180803,4380_1697 -4380_78128,289,4380_102033,Wexford Business Park,45701-00014-1,0,4380_7778208_180803,4380_1697 -4380_78128,290,4380_102034,Wexford Business Park,45706-00015-1,0,4380_7778208_180803,4380_1697 -4380_78128,291,4380_102035,Wexford Business Park,45703-00013-1,0,4380_7778208_180803,4380_1697 -4380_78128,292,4380_102036,Wexford Business Park,45698-00016-1,0,4380_7778208_180803,4380_1697 -4380_78128,293,4380_102037,Wexford Business Park,45696-00017-1,0,4380_7778208_180803,4380_1697 -4380_78128,295,4380_102038,Wexford Business Park,45702-00019-1,0,4380_7778208_180803,4380_1697 -4380_78128,294,4380_102039,Wexford Business Park,45700-00018-1,0,4380_7778208_180803,4380_1697 -4380_77954,286,4380_10204,Athboy,7310-00010-1,0,4380_7778208_1110101,4380_193 -4380_78128,296,4380_102040,Wexford Business Park,45704-00021-1,0,4380_7778208_180803,4380_1697 -4380_78128,285,4380_102047,Barrow Valley Retail,45321-00009-1,1,4380_7778208_180803,4380_1698 -4380_78128,286,4380_102048,Barrow Valley Retail,45317-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102049,Barrow Valley Retail,45315-00012-1,1,4380_7778208_180803,4380_1698 -4380_77954,297,4380_10205,Athboy,7834-00008-1,0,4380_7778208_1110108,4380_195 -4380_78128,288,4380_102050,Barrow Valley Retail,45323-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102051,Barrow Valley Retail,45325-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102052,Barrow Valley Retail,45322-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102053,Barrow Valley Retail,45319-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102054,Barrow Valley Retail,45318-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102055,Barrow Valley Retail,45324-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102056,Barrow Valley Retail,45326-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102057,Barrow Valley Retail,45316-00018-1,1,4380_7778208_180803,4380_1698 -4380_78128,296,4380_102058,Barrow Valley Retail,45320-00021-1,1,4380_7778208_180803,4380_1698 -4380_77954,288,4380_10206,Athboy,7326-00011-1,0,4380_7778208_1110101,4380_193 -4380_78128,285,4380_102065,Barrow Valley Retail,45723-00009-1,1,4380_7778208_180804,4380_1698 -4380_78128,286,4380_102066,Barrow Valley Retail,45729-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102067,Barrow Valley Retail,45721-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102068,Barrow Valley Retail,45725-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102069,Barrow Valley Retail,45727-00014-1,1,4380_7778208_180804,4380_1698 -4380_77954,287,4380_10207,Athboy,7342-00012-1,0,4380_7778208_1110101,4380_193 -4380_78128,290,4380_102070,Barrow Valley Retail,45724-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102071,Barrow Valley Retail,45719-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102072,Barrow Valley Retail,45730-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102073,Barrow Valley Retail,45726-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102074,Barrow Valley Retail,45728-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102075,Barrow Valley Retail,45722-00018-1,1,4380_7778208_180804,4380_1698 -4380_78128,296,4380_102076,Barrow Valley Retail,45720-00021-1,1,4380_7778208_180804,4380_1698 -4380_77954,289,4380_10208,Athboy,7270-00014-1,0,4380_7778208_1110101,4380_193 -4380_78128,285,4380_102083,Barrow Valley Retail,45349-00009-1,1,4380_7778208_180803,4380_1698 -4380_78128,286,4380_102084,Barrow Valley Retail,45339-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102085,Barrow Valley Retail,45343-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102086,Barrow Valley Retail,45347-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102087,Barrow Valley Retail,45341-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102088,Barrow Valley Retail,45350-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102089,Barrow Valley Retail,45345-00013-1,1,4380_7778208_180803,4380_1698 -4380_77954,290,4380_10209,Athboy,55550-00015-1,0,4380_7778208_1110101,4380_193 -4380_78128,292,4380_102090,Barrow Valley Retail,45340-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102091,Barrow Valley Retail,45348-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102092,Barrow Valley Retail,45342-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102093,Barrow Valley Retail,45344-00018-1,1,4380_7778208_180803,4380_1698 -4380_78128,296,4380_102094,Barrow Valley Retail,45346-00021-1,1,4380_7778208_180803,4380_1698 -4380_77954,291,4380_10210,Athboy,7358-00013-1,0,4380_7778208_1110101,4380_196 -4380_78128,285,4380_102101,Barrow Valley Retail,45751-00009-1,1,4380_7778208_180804,4380_1698 -4380_78128,286,4380_102102,Barrow Valley Retail,45747-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102103,Barrow Valley Retail,45743-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102104,Barrow Valley Retail,45745-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102105,Barrow Valley Retail,45753-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102106,Barrow Valley Retail,45752-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102107,Barrow Valley Retail,45749-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102108,Barrow Valley Retail,45748-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102109,Barrow Valley Retail,45746-00017-1,1,4380_7778208_180804,4380_1698 -4380_77954,292,4380_10211,Athboy,55547-00016-1,0,4380_7778208_1110101,4380_193 -4380_78128,295,4380_102110,Barrow Valley Retail,45754-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102111,Barrow Valley Retail,45744-00018-1,1,4380_7778208_180804,4380_1698 -4380_78128,296,4380_102112,Barrow Valley Retail,45750-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102119,Barrow Valley Retail,45365-00009-1,1,4380_7778208_180803,4380_1698 -4380_77954,293,4380_10212,Athboy,55548-00017-1,0,4380_7778208_1110101,4380_193 -4380_78128,286,4380_102120,Barrow Valley Retail,45369-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102121,Barrow Valley Retail,45367-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102122,Barrow Valley Retail,45373-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102123,Barrow Valley Retail,45363-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102124,Barrow Valley Retail,45366-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102125,Barrow Valley Retail,45371-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102126,Barrow Valley Retail,45370-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102127,Barrow Valley Retail,45374-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102128,Barrow Valley Retail,45364-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102129,Barrow Valley Retail,45368-00018-1,1,4380_7778208_180803,4380_1698 -4380_77954,294,4380_10213,Athboy,55549-00018-1,0,4380_7778208_1110101,4380_193 -4380_78128,296,4380_102130,Barrow Valley Retail,45372-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102132,Barrow Valley Retail,45767-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102139,Barrow Valley Retail,46103-00009-1,1,4380_7778208_180805,4380_1698 -4380_77954,295,4380_10214,Athboy,55546-00019-1,0,4380_7778208_1110101,4380_193 -4380_78128,286,4380_102140,Barrow Valley Retail,46101-00010-1,1,4380_7778208_180805,4380_1698 -4380_78128,287,4380_102141,Barrow Valley Retail,46107-00012-1,1,4380_7778208_180805,4380_1698 -4380_78128,288,4380_102142,Barrow Valley Retail,46105-00011-1,1,4380_7778208_180805,4380_1698 -4380_78128,289,4380_102143,Barrow Valley Retail,46109-00014-1,1,4380_7778208_180805,4380_1698 -4380_78128,290,4380_102144,Barrow Valley Retail,46104-00015-1,1,4380_7778208_180805,4380_1698 -4380_78128,291,4380_102145,Barrow Valley Retail,46099-00013-1,1,4380_7778208_180805,4380_1698 -4380_78128,292,4380_102146,Barrow Valley Retail,46102-00016-1,1,4380_7778208_180805,4380_1698 -4380_78128,293,4380_102147,Barrow Valley Retail,46106-00017-1,1,4380_7778208_180805,4380_1698 -4380_78128,295,4380_102148,Barrow Valley Retail,46110-00019-1,1,4380_7778208_180805,4380_1698 -4380_78128,294,4380_102149,Barrow Valley Retail,46108-00018-1,1,4380_7778208_180805,4380_1698 -4380_77954,296,4380_10215,Athboy,55545-00021-1,0,4380_7778208_1110101,4380_196 -4380_78128,296,4380_102150,Barrow Valley Retail,46100-00021-1,1,4380_7778208_180805,4380_1698 -4380_78128,297,4380_102152,Barrow Valley Retail,45388-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102159,Barrow Valley Retail,45769-00009-1,1,4380_7778208_180804,4380_1698 -4380_78128,286,4380_102160,Barrow Valley Retail,45771-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102161,Barrow Valley Retail,45779-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102162,Barrow Valley Retail,45773-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102163,Barrow Valley Retail,45775-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102164,Barrow Valley Retail,45770-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102165,Barrow Valley Retail,45777-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102166,Barrow Valley Retail,45772-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102167,Barrow Valley Retail,45774-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102168,Barrow Valley Retail,45776-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102169,Barrow Valley Retail,45780-00018-1,1,4380_7778208_180804,4380_1698 -4380_78128,296,4380_102170,Barrow Valley Retail,45778-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102172,Barrow Valley Retail,45781-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102179,Barrow Valley Retail,45392-00009-1,1,4380_7778208_180803,4380_1698 -4380_78128,286,4380_102180,Barrow Valley Retail,45398-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102181,Barrow Valley Retail,45396-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102182,Barrow Valley Retail,45390-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102183,Barrow Valley Retail,45400-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102184,Barrow Valley Retail,45393-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102185,Barrow Valley Retail,45394-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102186,Barrow Valley Retail,45399-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102187,Barrow Valley Retail,45391-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102188,Barrow Valley Retail,45401-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102189,Barrow Valley Retail,45397-00018-1,1,4380_7778208_180803,4380_1698 -4380_78128,296,4380_102190,Barrow Valley Retail,45395-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102192,Barrow Valley Retail,45402-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102199,Barrow Valley Retail,46133-00009-1,1,4380_7778208_180805,4380_1698 -4380_78128,286,4380_102200,Barrow Valley Retail,46131-00010-1,1,4380_7778208_180805,4380_1698 -4380_78128,287,4380_102201,Barrow Valley Retail,46125-00012-1,1,4380_7778208_180805,4380_1698 -4380_78128,288,4380_102202,Barrow Valley Retail,46123-00011-1,1,4380_7778208_180805,4380_1698 -4380_78128,289,4380_102203,Barrow Valley Retail,46129-00014-1,1,4380_7778208_180805,4380_1698 -4380_78128,290,4380_102204,Barrow Valley Retail,46134-00015-1,1,4380_7778208_180805,4380_1698 -4380_78128,291,4380_102205,Barrow Valley Retail,46127-00013-1,1,4380_7778208_180805,4380_1698 -4380_78128,292,4380_102206,Barrow Valley Retail,46132-00016-1,1,4380_7778208_180805,4380_1698 -4380_78128,293,4380_102207,Barrow Valley Retail,46124-00017-1,1,4380_7778208_180805,4380_1698 -4380_78128,295,4380_102208,Barrow Valley Retail,46130-00019-1,1,4380_7778208_180805,4380_1698 -4380_78128,294,4380_102209,Barrow Valley Retail,46126-00018-1,1,4380_7778208_180805,4380_1698 -4380_78128,296,4380_102210,Barrow Valley Retail,46128-00021-1,1,4380_7778208_180805,4380_1698 -4380_78128,297,4380_102212,Barrow Valley Retail,45795-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102219,Barrow Valley Retail,45802-00009-1,1,4380_7778208_180804,4380_1698 -4380_78128,286,4380_102220,Barrow Valley Retail,45798-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102221,Barrow Valley Retail,45800-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102222,Barrow Valley Retail,45796-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102223,Barrow Valley Retail,45804-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102224,Barrow Valley Retail,45803-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102225,Barrow Valley Retail,45806-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102226,Barrow Valley Retail,45799-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102227,Barrow Valley Retail,45797-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102228,Barrow Valley Retail,45805-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102229,Barrow Valley Retail,45801-00018-1,1,4380_7778208_180804,4380_1698 -4380_77954,285,4380_10223,Athboy,7611-00009-1,0,4380_7778208_1110105,4380_193 -4380_78128,296,4380_102230,Barrow Valley Retail,45807-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102232,Barrow Valley Retail,45416-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102239,Barrow Valley Retail,45421-00009-1,1,4380_7778208_180803,4380_1698 -4380_77954,286,4380_10224,Athboy,7625-00010-1,0,4380_7778208_1110105,4380_193 -4380_78128,286,4380_102240,Barrow Valley Retail,45419-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102241,Barrow Valley Retail,45427-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102242,Barrow Valley Retail,45417-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102243,Barrow Valley Retail,45423-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102244,Barrow Valley Retail,45422-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102245,Barrow Valley Retail,45425-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102246,Barrow Valley Retail,45420-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102247,Barrow Valley Retail,45418-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102248,Barrow Valley Retail,45424-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102249,Barrow Valley Retail,45428-00018-1,1,4380_7778208_180803,4380_1698 -4380_77954,297,4380_10225,Athboy,7663-00008-1,0,4380_7778208_1110105,4380_195 -4380_78128,296,4380_102250,Barrow Valley Retail,45426-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102252,Barrow Valley Retail,45821-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102259,Barrow Valley Retail,46151-00009-1,1,4380_7778208_180805,4380_1698 -4380_77954,288,4380_10226,Athboy,7635-00011-1,0,4380_7778208_1110105,4380_193 -4380_78128,286,4380_102260,Barrow Valley Retail,46157-00010-1,1,4380_7778208_180805,4380_1698 -4380_78128,287,4380_102261,Barrow Valley Retail,46155-00012-1,1,4380_7778208_180805,4380_1698 -4380_78128,288,4380_102262,Barrow Valley Retail,46147-00011-1,1,4380_7778208_180805,4380_1698 -4380_78128,289,4380_102263,Barrow Valley Retail,46149-00014-1,1,4380_7778208_180805,4380_1698 -4380_78128,290,4380_102264,Barrow Valley Retail,46152-00015-1,1,4380_7778208_180805,4380_1698 -4380_78128,291,4380_102265,Barrow Valley Retail,46153-00013-1,1,4380_7778208_180805,4380_1698 -4380_78128,292,4380_102266,Barrow Valley Retail,46158-00016-1,1,4380_7778208_180805,4380_1698 -4380_78128,293,4380_102267,Barrow Valley Retail,46148-00017-1,1,4380_7778208_180805,4380_1698 -4380_78128,295,4380_102268,Barrow Valley Retail,46150-00019-1,1,4380_7778208_180805,4380_1698 -4380_78128,294,4380_102269,Barrow Valley Retail,46156-00018-1,1,4380_7778208_180805,4380_1698 -4380_77954,287,4380_10227,Athboy,7645-00012-1,0,4380_7778208_1110105,4380_193 -4380_78128,296,4380_102270,Barrow Valley Retail,46154-00021-1,1,4380_7778208_180805,4380_1698 -4380_78128,297,4380_102272,Barrow Valley Retail,45442-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102279,Barrow Valley Retail,45825-00009-1,1,4380_7778208_180804,4380_1698 -4380_77954,289,4380_10228,Athboy,7605-00014-1,0,4380_7778208_1110105,4380_193 -4380_78128,286,4380_102280,Barrow Valley Retail,45829-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102281,Barrow Valley Retail,45831-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102282,Barrow Valley Retail,45833-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102283,Barrow Valley Retail,45827-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102284,Barrow Valley Retail,45826-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102285,Barrow Valley Retail,45823-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102286,Barrow Valley Retail,45830-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102287,Barrow Valley Retail,45834-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102288,Barrow Valley Retail,45828-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102289,Barrow Valley Retail,45832-00018-1,1,4380_7778208_180804,4380_1698 -4380_77954,290,4380_10229,Athboy,55673-00015-1,0,4380_7778208_1110105,4380_193 -4380_78128,296,4380_102290,Barrow Valley Retail,45824-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102292,Barrow Valley Retail,45835-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102299,Barrow Valley Retail,45446-00009-1,1,4380_7778208_180803,4380_1698 -4380_78113,285,4380_1023,Dublin via Airport,50155-00009-1,1,4380_7778208_1000908,4380_18 -4380_77954,291,4380_10230,Athboy,7441-00013-1,0,4380_7778208_1110102,4380_196 -4380_78128,286,4380_102300,Barrow Valley Retail,45454-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102301,Barrow Valley Retail,45448-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102302,Barrow Valley Retail,45450-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102303,Barrow Valley Retail,45444-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102304,Barrow Valley Retail,45447-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102305,Barrow Valley Retail,45452-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102306,Barrow Valley Retail,45455-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102307,Barrow Valley Retail,45451-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102308,Barrow Valley Retail,45445-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102309,Barrow Valley Retail,45449-00018-1,1,4380_7778208_180803,4380_1698 -4380_77954,292,4380_10231,Athboy,55674-00016-1,0,4380_7778208_1110105,4380_193 -4380_78128,296,4380_102310,Barrow Valley Retail,45453-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102312,Barrow Valley Retail,45456-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102319,Barrow Valley Retail,46177-00009-1,1,4380_7778208_180805,4380_1698 -4380_77954,293,4380_10232,Athboy,55671-00017-1,0,4380_7778208_1110105,4380_193 -4380_78128,286,4380_102320,Barrow Valley Retail,46181-00010-1,1,4380_7778208_180805,4380_1698 -4380_78128,287,4380_102321,Barrow Valley Retail,46179-00012-1,1,4380_7778208_180805,4380_1698 -4380_78128,288,4380_102322,Barrow Valley Retail,46173-00011-1,1,4380_7778208_180805,4380_1698 -4380_78128,289,4380_102323,Barrow Valley Retail,46175-00014-1,1,4380_7778208_180805,4380_1698 -4380_78128,290,4380_102324,Barrow Valley Retail,46178-00015-1,1,4380_7778208_180805,4380_1698 -4380_78128,291,4380_102325,Barrow Valley Retail,46171-00013-1,1,4380_7778208_180805,4380_1698 -4380_78128,292,4380_102326,Barrow Valley Retail,46182-00016-1,1,4380_7778208_180805,4380_1698 -4380_78128,293,4380_102327,Barrow Valley Retail,46174-00017-1,1,4380_7778208_180805,4380_1698 -4380_78128,295,4380_102328,Barrow Valley Retail,46176-00019-1,1,4380_7778208_180805,4380_1698 -4380_78128,294,4380_102329,Barrow Valley Retail,46180-00018-1,1,4380_7778208_180805,4380_1698 -4380_77954,294,4380_10233,Athboy,55672-00018-1,0,4380_7778208_1110105,4380_193 -4380_78128,296,4380_102330,Barrow Valley Retail,46172-00021-1,1,4380_7778208_180805,4380_1698 -4380_78128,297,4380_102332,Barrow Valley Retail,45849-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102339,Barrow Valley Retail,45856-00009-1,1,4380_7778208_180804,4380_1698 -4380_77954,295,4380_10234,Athboy,55675-00019-1,0,4380_7778208_1110105,4380_193 -4380_78128,286,4380_102340,Barrow Valley Retail,45858-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102341,Barrow Valley Retail,45852-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102342,Barrow Valley Retail,45850-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102343,Barrow Valley Retail,45854-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102344,Barrow Valley Retail,45857-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102345,Barrow Valley Retail,45860-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102346,Barrow Valley Retail,45859-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102347,Barrow Valley Retail,45851-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102348,Barrow Valley Retail,45855-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102349,Barrow Valley Retail,45853-00018-1,1,4380_7778208_180804,4380_1698 -4380_77954,296,4380_10235,Athboy,55583-00021-1,0,4380_7778208_1110102,4380_196 -4380_78128,296,4380_102350,Barrow Valley Retail,45861-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102352,Barrow Valley Retail,45470-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102359,Barrow Valley Retail,45473-00009-1,1,4380_7778208_180803,4380_1698 -4380_78128,286,4380_102360,Barrow Valley Retail,45475-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102361,Barrow Valley Retail,45471-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102362,Barrow Valley Retail,45479-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102363,Barrow Valley Retail,45477-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102364,Barrow Valley Retail,45474-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102365,Barrow Valley Retail,45481-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102366,Barrow Valley Retail,45476-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102367,Barrow Valley Retail,45480-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102368,Barrow Valley Retail,45478-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102369,Barrow Valley Retail,45472-00018-1,1,4380_7778208_180803,4380_1698 -4380_78128,296,4380_102370,Barrow Valley Retail,45482-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102372,Barrow Valley Retail,45875-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102379,Barrow Valley Retail,46197-00009-1,1,4380_7778208_180805,4380_1698 -4380_78128,286,4380_102380,Barrow Valley Retail,46199-00010-1,1,4380_7778208_180805,4380_1698 -4380_78128,287,4380_102381,Barrow Valley Retail,46205-00012-1,1,4380_7778208_180805,4380_1698 -4380_78128,288,4380_102382,Barrow Valley Retail,46201-00011-1,1,4380_7778208_180805,4380_1698 -4380_78128,289,4380_102383,Barrow Valley Retail,46195-00014-1,1,4380_7778208_180805,4380_1698 -4380_78128,290,4380_102384,Barrow Valley Retail,46198-00015-1,1,4380_7778208_180805,4380_1698 -4380_78128,291,4380_102385,Barrow Valley Retail,46203-00013-1,1,4380_7778208_180805,4380_1698 -4380_78128,292,4380_102386,Barrow Valley Retail,46200-00016-1,1,4380_7778208_180805,4380_1698 -4380_78128,293,4380_102387,Barrow Valley Retail,46202-00017-1,1,4380_7778208_180805,4380_1698 -4380_78128,295,4380_102388,Barrow Valley Retail,46196-00019-1,1,4380_7778208_180805,4380_1698 -4380_78128,294,4380_102389,Barrow Valley Retail,46206-00018-1,1,4380_7778208_180805,4380_1698 -4380_78128,296,4380_102390,Barrow Valley Retail,46204-00021-1,1,4380_7778208_180805,4380_1698 -4380_78128,297,4380_102392,Barrow Valley Retail,45496-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102399,Barrow Valley Retail,45885-00009-1,1,4380_7778208_180804,4380_1698 -4380_78113,286,4380_1024,Dublin via Airport,50151-00010-1,1,4380_7778208_1000908,4380_18 -4380_78128,286,4380_102400,Barrow Valley Retail,45883-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102401,Barrow Valley Retail,45877-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102402,Barrow Valley Retail,45887-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102403,Barrow Valley Retail,45881-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102404,Barrow Valley Retail,45886-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102405,Barrow Valley Retail,45879-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102406,Barrow Valley Retail,45884-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102407,Barrow Valley Retail,45888-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102408,Barrow Valley Retail,45882-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102409,Barrow Valley Retail,45878-00018-1,1,4380_7778208_180804,4380_1698 -4380_78128,296,4380_102410,Barrow Valley Retail,45880-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102412,Barrow Valley Retail,45889-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102419,Barrow Valley Retail,45504-00009-1,1,4380_7778208_180803,4380_1698 -4380_77954,285,4380_10242,Dublin,7279-00009-1,1,4380_7778208_1110101,4380_206 -4380_78128,286,4380_102420,Barrow Valley Retail,45506-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102421,Barrow Valley Retail,45508-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102422,Barrow Valley Retail,45498-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102423,Barrow Valley Retail,45500-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102424,Barrow Valley Retail,45505-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102425,Barrow Valley Retail,45502-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102426,Barrow Valley Retail,45507-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102427,Barrow Valley Retail,45499-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102428,Barrow Valley Retail,45501-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102429,Barrow Valley Retail,45509-00018-1,1,4380_7778208_180803,4380_1698 -4380_77954,286,4380_10243,Dublin,7303-00010-1,1,4380_7778208_1110101,4380_206 -4380_78128,296,4380_102430,Barrow Valley Retail,45503-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102432,Barrow Valley Retail,45510-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102439,Barrow Valley Retail,46227-00009-1,1,4380_7778208_180805,4380_1698 -4380_77954,288,4380_10244,Dublin,7319-00011-1,1,4380_7778208_1110101,4380_206 -4380_78128,286,4380_102440,Barrow Valley Retail,46219-00010-1,1,4380_7778208_180805,4380_1698 -4380_78128,287,4380_102441,Barrow Valley Retail,46223-00012-1,1,4380_7778208_180805,4380_1698 -4380_78128,288,4380_102442,Barrow Valley Retail,46221-00011-1,1,4380_7778208_180805,4380_1698 -4380_78128,289,4380_102443,Barrow Valley Retail,46225-00014-1,1,4380_7778208_180805,4380_1698 -4380_78128,290,4380_102444,Barrow Valley Retail,46228-00015-1,1,4380_7778208_180805,4380_1698 -4380_78128,291,4380_102445,Barrow Valley Retail,46229-00013-1,1,4380_7778208_180805,4380_1698 -4380_78128,292,4380_102446,Barrow Valley Retail,46220-00016-1,1,4380_7778208_180805,4380_1698 -4380_78128,293,4380_102447,Barrow Valley Retail,46222-00017-1,1,4380_7778208_180805,4380_1698 -4380_78128,295,4380_102448,Barrow Valley Retail,46226-00019-1,1,4380_7778208_180805,4380_1698 -4380_78128,294,4380_102449,Barrow Valley Retail,46224-00018-1,1,4380_7778208_180805,4380_1698 -4380_77954,287,4380_10245,Dublin,7335-00012-1,1,4380_7778208_1110101,4380_206 -4380_78128,296,4380_102450,Barrow Valley Retail,46230-00021-1,1,4380_7778208_180805,4380_1698 -4380_78128,297,4380_102452,Barrow Valley Retail,45903-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102459,Barrow Valley Retail,45910-00009-1,1,4380_7778208_180804,4380_1698 -4380_77954,289,4380_10246,Dublin,7263-00014-1,1,4380_7778208_1110101,4380_206 -4380_78128,286,4380_102460,Barrow Valley Retail,45912-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102461,Barrow Valley Retail,45908-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102462,Barrow Valley Retail,45914-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102463,Barrow Valley Retail,45906-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102464,Barrow Valley Retail,45911-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102465,Barrow Valley Retail,45904-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102466,Barrow Valley Retail,45913-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102467,Barrow Valley Retail,45915-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102468,Barrow Valley Retail,45907-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102469,Barrow Valley Retail,45909-00018-1,1,4380_7778208_180804,4380_1698 -4380_77954,290,4380_10247,Dublin,55506-00015-1,1,4380_7778208_1110101,4380_206 -4380_78128,296,4380_102470,Barrow Valley Retail,45905-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102472,Barrow Valley Retail,45524-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102479,Barrow Valley Retail,45535-00009-1,1,4380_7778208_180803,4380_1698 -4380_77954,291,4380_10248,Dublin,7351-00013-1,1,4380_7778208_1110101,4380_209 -4380_78128,286,4380_102480,Barrow Valley Retail,45527-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102481,Barrow Valley Retail,45529-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102482,Barrow Valley Retail,45531-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102483,Barrow Valley Retail,45533-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102484,Barrow Valley Retail,45536-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102485,Barrow Valley Retail,45525-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102486,Barrow Valley Retail,45528-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102487,Barrow Valley Retail,45532-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102488,Barrow Valley Retail,45534-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102489,Barrow Valley Retail,45530-00018-1,1,4380_7778208_180803,4380_1698 -4380_77954,292,4380_10249,Dublin,55508-00016-1,1,4380_7778208_1110101,4380_206 -4380_78128,296,4380_102490,Barrow Valley Retail,45526-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102492,Barrow Valley Retail,45929-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102499,Barrow Valley Retail,46253-00009-1,1,4380_7778208_180805,4380_1698 -4380_78113,297,4380_1025,Dublin via Airport,50055-00008-1,1,4380_7778208_1000907,4380_18 -4380_77954,293,4380_10250,Dublin,55507-00017-1,1,4380_7778208_1110101,4380_206 -4380_78128,286,4380_102500,Barrow Valley Retail,46243-00010-1,1,4380_7778208_180805,4380_1698 -4380_78128,287,4380_102501,Barrow Valley Retail,46245-00012-1,1,4380_7778208_180805,4380_1698 -4380_78128,288,4380_102502,Barrow Valley Retail,46249-00011-1,1,4380_7778208_180805,4380_1698 -4380_78128,289,4380_102503,Barrow Valley Retail,46247-00014-1,1,4380_7778208_180805,4380_1698 -4380_78128,290,4380_102504,Barrow Valley Retail,46254-00015-1,1,4380_7778208_180805,4380_1698 -4380_78128,291,4380_102505,Barrow Valley Retail,46251-00013-1,1,4380_7778208_180805,4380_1698 -4380_78128,292,4380_102506,Barrow Valley Retail,46244-00016-1,1,4380_7778208_180805,4380_1698 -4380_78128,293,4380_102507,Barrow Valley Retail,46250-00017-1,1,4380_7778208_180805,4380_1698 -4380_78128,295,4380_102508,Barrow Valley Retail,46248-00019-1,1,4380_7778208_180805,4380_1698 -4380_78128,294,4380_102509,Barrow Valley Retail,46246-00018-1,1,4380_7778208_180805,4380_1698 -4380_77954,294,4380_10251,Dublin,55505-00018-1,1,4380_7778208_1110101,4380_206 -4380_78128,296,4380_102510,Barrow Valley Retail,46252-00021-1,1,4380_7778208_180805,4380_1698 -4380_78128,297,4380_102512,Barrow Valley Retail,45550-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102519,Barrow Valley Retail,45941-00009-1,1,4380_7778208_180804,4380_1698 -4380_77954,295,4380_10252,Dublin,55504-00019-1,1,4380_7778208_1110101,4380_206 -4380_78128,286,4380_102520,Barrow Valley Retail,45931-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102521,Barrow Valley Retail,45933-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102522,Barrow Valley Retail,45935-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102523,Barrow Valley Retail,45937-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102524,Barrow Valley Retail,45942-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102525,Barrow Valley Retail,45939-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102526,Barrow Valley Retail,45932-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102527,Barrow Valley Retail,45936-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102528,Barrow Valley Retail,45938-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102529,Barrow Valley Retail,45934-00018-1,1,4380_7778208_180804,4380_1698 -4380_77954,296,4380_10253,Dublin,55503-00021-1,1,4380_7778208_1110101,4380_209 -4380_78128,296,4380_102530,Barrow Valley Retail,45940-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102532,Barrow Valley Retail,45943-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102539,Barrow Valley Retail,45560-00009-1,1,4380_7778208_180803,4380_1698 -4380_78128,286,4380_102540,Barrow Valley Retail,45558-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102541,Barrow Valley Retail,45554-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102542,Barrow Valley Retail,45556-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102543,Barrow Valley Retail,45552-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102544,Barrow Valley Retail,45561-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102545,Barrow Valley Retail,45562-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102546,Barrow Valley Retail,45559-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102547,Barrow Valley Retail,45557-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102548,Barrow Valley Retail,45553-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102549,Barrow Valley Retail,45555-00018-1,1,4380_7778208_180803,4380_1698 -4380_78128,296,4380_102550,Barrow Valley Retail,45563-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102552,Barrow Valley Retail,45564-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102559,Barrow Valley Retail,45957-00009-1,1,4380_7778208_180804,4380_1698 -4380_77954,297,4380_10256,Dublin,7363-00008-1,1,4380_7778208_1110101,4380_206 -4380_78128,286,4380_102560,Barrow Valley Retail,45963-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102561,Barrow Valley Retail,45961-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102562,Barrow Valley Retail,45965-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102563,Barrow Valley Retail,45959-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102564,Barrow Valley Retail,45958-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102565,Barrow Valley Retail,45967-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102566,Barrow Valley Retail,45964-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102567,Barrow Valley Retail,45966-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102568,Barrow Valley Retail,45960-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102569,Barrow Valley Retail,45962-00018-1,1,4380_7778208_180804,4380_1698 -4380_77954,291,4380_10257,Dublin,7434-00013-1,1,4380_7778208_1110102,4380_209 -4380_78128,296,4380_102570,Barrow Valley Retail,45968-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102572,Barrow Valley Retail,45969-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102579,Barrow Valley Retail,45584-00009-1,1,4380_7778208_180803,4380_1698 -4380_77954,296,4380_10258,Dublin,55551-00021-1,1,4380_7778208_1110102,4380_209 -4380_78128,286,4380_102580,Barrow Valley Retail,45588-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102581,Barrow Valley Retail,45580-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102582,Barrow Valley Retail,45582-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102583,Barrow Valley Retail,45578-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102584,Barrow Valley Retail,45585-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102585,Barrow Valley Retail,45586-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102586,Barrow Valley Retail,45589-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102587,Barrow Valley Retail,45583-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102588,Barrow Valley Retail,45579-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102589,Barrow Valley Retail,45581-00018-1,1,4380_7778208_180803,4380_1698 -4380_78128,296,4380_102590,Barrow Valley Retail,45587-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102592,Barrow Valley Retail,45590-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102599,Barrow Valley Retail,45985-00009-1,1,4380_7778208_180804,4380_1698 -4380_78113,287,4380_1026,Dublin via Airport,50145-00012-1,1,4380_7778208_1000908,4380_18 -4380_78128,286,4380_102600,Barrow Valley Retail,45993-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102601,Barrow Valley Retail,45983-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102602,Barrow Valley Retail,45989-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102603,Barrow Valley Retail,45987-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102604,Barrow Valley Retail,45986-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102605,Barrow Valley Retail,45991-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102606,Barrow Valley Retail,45994-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102607,Barrow Valley Retail,45990-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102608,Barrow Valley Retail,45988-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102609,Barrow Valley Retail,45984-00018-1,1,4380_7778208_180804,4380_1698 -4380_78128,296,4380_102610,Barrow Valley Retail,45992-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102612,Barrow Valley Retail,45995-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102619,Barrow Valley Retail,45606-00009-1,1,4380_7778208_180803,4380_1698 -4380_78128,286,4380_102620,Barrow Valley Retail,45608-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102621,Barrow Valley Retail,45610-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102622,Barrow Valley Retail,45604-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102623,Barrow Valley Retail,45614-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102624,Barrow Valley Retail,45607-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102625,Barrow Valley Retail,45612-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102626,Barrow Valley Retail,45609-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102627,Barrow Valley Retail,45605-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102628,Barrow Valley Retail,45615-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102629,Barrow Valley Retail,45611-00018-1,1,4380_7778208_180803,4380_1698 -4380_78128,296,4380_102630,Barrow Valley Retail,45613-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102632,Barrow Valley Retail,45616-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102639,Barrow Valley Retail,46009-00009-1,1,4380_7778208_180804,4380_1698 -4380_77954,285,4380_10264,U C D Belfield,7388-00009-1,1,4380_7778208_1110102,4380_207 -4380_78128,286,4380_102640,Barrow Valley Retail,46019-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102641,Barrow Valley Retail,46015-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102642,Barrow Valley Retail,46011-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102643,Barrow Valley Retail,46017-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102644,Barrow Valley Retail,46010-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102645,Barrow Valley Retail,46013-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102646,Barrow Valley Retail,46020-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102647,Barrow Valley Retail,46012-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102648,Barrow Valley Retail,46018-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102649,Barrow Valley Retail,46016-00018-1,1,4380_7778208_180804,4380_1698 -4380_77954,286,4380_10265,U C D Belfield,7401-00010-1,1,4380_7778208_1110102,4380_207 -4380_78128,296,4380_102650,Barrow Valley Retail,46014-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102652,Barrow Valley Retail,46021-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102659,Barrow Valley Retail,45632-00009-1,1,4380_7778208_180803,4380_1698 -4380_77954,288,4380_10266,U C D Belfield,7406-00011-1,1,4380_7778208_1110102,4380_207 -4380_78128,286,4380_102660,Barrow Valley Retail,45636-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102661,Barrow Valley Retail,45630-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102662,Barrow Valley Retail,45634-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102663,Barrow Valley Retail,45638-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102664,Barrow Valley Retail,45633-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102665,Barrow Valley Retail,45640-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102666,Barrow Valley Retail,45637-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102667,Barrow Valley Retail,45635-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102668,Barrow Valley Retail,45639-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102669,Barrow Valley Retail,45631-00018-1,1,4380_7778208_180803,4380_1698 -4380_77954,287,4380_10267,U C D Belfield,7419-00012-1,1,4380_7778208_1110102,4380_207 -4380_78128,296,4380_102670,Barrow Valley Retail,45641-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102672,Barrow Valley Retail,45642-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102679,Barrow Valley Retail,46045-00009-1,1,4380_7778208_180804,4380_1698 -4380_77954,289,4380_10268,U C D Belfield,7367-00014-1,1,4380_7778208_1110102,4380_207 -4380_78128,286,4380_102680,Barrow Valley Retail,46039-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102681,Barrow Valley Retail,46043-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102682,Barrow Valley Retail,46041-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102683,Barrow Valley Retail,46035-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102684,Barrow Valley Retail,46046-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102685,Barrow Valley Retail,46037-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102686,Barrow Valley Retail,46040-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102687,Barrow Valley Retail,46042-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102688,Barrow Valley Retail,46036-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102689,Barrow Valley Retail,46044-00018-1,1,4380_7778208_180804,4380_1698 -4380_77954,290,4380_10269,U C D Belfield,55552-00015-1,1,4380_7778208_1110102,4380_207 -4380_78128,296,4380_102690,Barrow Valley Retail,46038-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102692,Barrow Valley Retail,46047-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102699,Barrow Valley Retail,45662-00009-1,1,4380_7778208_180803,4380_1698 -4380_78113,288,4380_1027,Dublin via Airport,50153-00011-1,1,4380_7778208_1000908,4380_18 -4380_77954,292,4380_10270,U C D Belfield,55553-00016-1,1,4380_7778208_1110102,4380_207 -4380_78128,286,4380_102700,Barrow Valley Retail,45658-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102701,Barrow Valley Retail,45666-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102702,Barrow Valley Retail,45656-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102703,Barrow Valley Retail,45660-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102704,Barrow Valley Retail,45663-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102705,Barrow Valley Retail,45664-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102706,Barrow Valley Retail,45659-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102707,Barrow Valley Retail,45657-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102708,Barrow Valley Retail,45661-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102709,Barrow Valley Retail,45667-00018-1,1,4380_7778208_180803,4380_1698 -4380_77954,293,4380_10271,U C D Belfield,55554-00017-1,1,4380_7778208_1110102,4380_207 -4380_78128,296,4380_102710,Barrow Valley Retail,45665-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102712,Barrow Valley Retail,45668-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102719,Barrow Valley Retail,46063-00009-1,1,4380_7778208_180804,4380_1698 -4380_77954,294,4380_10272,U C D Belfield,55556-00018-1,1,4380_7778208_1110102,4380_207 -4380_78128,286,4380_102720,Barrow Valley Retail,46069-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102721,Barrow Valley Retail,46067-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102722,Barrow Valley Retail,46065-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102723,Barrow Valley Retail,46071-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102724,Barrow Valley Retail,46064-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102725,Barrow Valley Retail,46061-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102726,Barrow Valley Retail,46070-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102727,Barrow Valley Retail,46066-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102728,Barrow Valley Retail,46072-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102729,Barrow Valley Retail,46068-00018-1,1,4380_7778208_180804,4380_1698 -4380_77954,295,4380_10273,U C D Belfield,55555-00019-1,1,4380_7778208_1110102,4380_207 -4380_78128,296,4380_102730,Barrow Valley Retail,46062-00021-1,1,4380_7778208_180804,4380_1698 -4380_78128,297,4380_102732,Barrow Valley Retail,46073-00008-1,1,4380_7778208_180804,4380_1698 -4380_78128,285,4380_102739,Barrow Valley Retail,45684-00009-1,1,4380_7778208_180803,4380_1698 -4380_78128,286,4380_102740,Barrow Valley Retail,45686-00010-1,1,4380_7778208_180803,4380_1698 -4380_78128,287,4380_102741,Barrow Valley Retail,45690-00012-1,1,4380_7778208_180803,4380_1698 -4380_78128,288,4380_102742,Barrow Valley Retail,45692-00011-1,1,4380_7778208_180803,4380_1698 -4380_78128,289,4380_102743,Barrow Valley Retail,45688-00014-1,1,4380_7778208_180803,4380_1698 -4380_78128,290,4380_102744,Barrow Valley Retail,45685-00015-1,1,4380_7778208_180803,4380_1698 -4380_78128,291,4380_102745,Barrow Valley Retail,45682-00013-1,1,4380_7778208_180803,4380_1698 -4380_78128,292,4380_102746,Barrow Valley Retail,45687-00016-1,1,4380_7778208_180803,4380_1698 -4380_78128,293,4380_102747,Barrow Valley Retail,45693-00017-1,1,4380_7778208_180803,4380_1698 -4380_78128,295,4380_102748,Barrow Valley Retail,45689-00019-1,1,4380_7778208_180803,4380_1698 -4380_78128,294,4380_102749,Barrow Valley Retail,45691-00018-1,1,4380_7778208_180803,4380_1698 -4380_78128,296,4380_102750,Barrow Valley Retail,45683-00021-1,1,4380_7778208_180803,4380_1698 -4380_78128,297,4380_102752,Barrow Valley Retail,45694-00008-1,1,4380_7778208_180803,4380_1698 -4380_78128,285,4380_102759,Barrow Valley Retail,46095-00009-1,1,4380_7778208_180804,4380_1698 -4380_78128,286,4380_102760,Barrow Valley Retail,46093-00010-1,1,4380_7778208_180804,4380_1698 -4380_78128,287,4380_102761,Barrow Valley Retail,46087-00012-1,1,4380_7778208_180804,4380_1698 -4380_78128,288,4380_102762,Barrow Valley Retail,46089-00011-1,1,4380_7778208_180804,4380_1698 -4380_78128,289,4380_102763,Barrow Valley Retail,46097-00014-1,1,4380_7778208_180804,4380_1698 -4380_78128,290,4380_102764,Barrow Valley Retail,46096-00015-1,1,4380_7778208_180804,4380_1698 -4380_78128,291,4380_102765,Barrow Valley Retail,46091-00013-1,1,4380_7778208_180804,4380_1698 -4380_78128,292,4380_102766,Barrow Valley Retail,46094-00016-1,1,4380_7778208_180804,4380_1698 -4380_78128,293,4380_102767,Barrow Valley Retail,46090-00017-1,1,4380_7778208_180804,4380_1698 -4380_78128,295,4380_102768,Barrow Valley Retail,46098-00019-1,1,4380_7778208_180804,4380_1698 -4380_78128,294,4380_102769,Barrow Valley Retail,46088-00018-1,1,4380_7778208_180804,4380_1698 -4380_78128,296,4380_102770,Barrow Valley Retail,46092-00021-1,1,4380_7778208_180804,4380_1698 -4380_78129,291,4380_102772,Laytown,63024-00013-1,0,4380_7778208_1901105,4380_1699 -4380_78129,296,4380_102773,Laytown,63025-00021-1,0,4380_7778208_1901105,4380_1699 -4380_78129,285,4380_102779,Laytown,63408-00009-1,0,4380_7778208_1901106,4380_1699 -4380_78129,286,4380_102780,Laytown,63404-00010-1,0,4380_7778208_1901106,4380_1699 -4380_78129,288,4380_102781,Laytown,63412-00011-1,0,4380_7778208_1901106,4380_1699 -4380_78129,287,4380_102782,Laytown,63410-00012-1,0,4380_7778208_1901106,4380_1699 -4380_78129,289,4380_102783,Laytown,63406-00014-1,0,4380_7778208_1901106,4380_1699 -4380_78129,292,4380_102784,Laytown,63405-00016-1,0,4380_7778208_1901106,4380_1699 -4380_78129,293,4380_102785,Laytown,63413-00017-1,0,4380_7778208_1901106,4380_1699 -4380_78129,290,4380_102786,Laytown,63409-00015-1,0,4380_7778208_1901106,4380_1699 -4380_78129,294,4380_102787,Laytown,63411-00018-1,0,4380_7778208_1901106,4380_1699 -4380_78129,295,4380_102788,Laytown,63407-00019-1,0,4380_7778208_1901106,4380_1699 -4380_77954,285,4380_10279,Dublin,7531-00009-1,1,4380_7778208_1110104,4380_206 -4380_78129,285,4380_102794,Laytown,64174-00009-1,0,4380_7778208_1901108,4380_1699 -4380_78129,286,4380_102795,Laytown,64166-00010-1,0,4380_7778208_1901108,4380_1699 -4380_78129,288,4380_102796,Laytown,64170-00011-1,0,4380_7778208_1901108,4380_1699 -4380_78129,287,4380_102797,Laytown,64172-00012-1,0,4380_7778208_1901108,4380_1699 -4380_78129,289,4380_102798,Laytown,64168-00014-1,0,4380_7778208_1901108,4380_1699 -4380_78129,292,4380_102799,Laytown,64167-00016-1,0,4380_7778208_1901108,4380_1699 -4380_78113,289,4380_1028,Dublin via Airport,50149-00014-1,1,4380_7778208_1000908,4380_18 -4380_77954,286,4380_10280,Dublin,7543-00010-1,1,4380_7778208_1110104,4380_206 -4380_78129,293,4380_102800,Laytown,64171-00017-1,0,4380_7778208_1901108,4380_1699 -4380_78129,290,4380_102801,Laytown,64175-00015-1,0,4380_7778208_1901108,4380_1699 -4380_78129,294,4380_102802,Laytown,64173-00018-1,0,4380_7778208_1901108,4380_1699 -4380_78129,295,4380_102803,Laytown,64169-00019-1,0,4380_7778208_1901108,4380_1699 -4380_78129,291,4380_102805,Laytown,63038-00013-1,0,4380_7778208_1901105,4380_1699 -4380_78129,296,4380_102806,Laytown,63039-00021-1,0,4380_7778208_1901105,4380_1699 -4380_77954,288,4380_10281,Dublin,7555-00011-1,1,4380_7778208_1110104,4380_206 -4380_78129,285,4380_102812,Laytown,63040-00009-1,0,4380_7778208_1901105,4380_1699 -4380_78129,286,4380_102813,Laytown,63042-00010-1,0,4380_7778208_1901105,4380_1699 -4380_78129,288,4380_102814,Laytown,63046-00011-1,0,4380_7778208_1901105,4380_1699 -4380_78129,287,4380_102815,Laytown,63048-00012-1,0,4380_7778208_1901105,4380_1699 -4380_78129,289,4380_102816,Laytown,63044-00014-1,0,4380_7778208_1901105,4380_1699 -4380_78129,292,4380_102817,Laytown,63043-00016-1,0,4380_7778208_1901105,4380_1699 -4380_78129,293,4380_102818,Laytown,63047-00017-1,0,4380_7778208_1901105,4380_1699 -4380_78129,290,4380_102819,Laytown,63041-00015-1,0,4380_7778208_1901105,4380_1699 -4380_77954,287,4380_10282,Dublin,7567-00012-1,1,4380_7778208_1110104,4380_206 -4380_78129,294,4380_102820,Laytown,63049-00018-1,0,4380_7778208_1901105,4380_1699 -4380_78129,295,4380_102821,Laytown,63045-00019-1,0,4380_7778208_1901105,4380_1699 -4380_78129,285,4380_102827,Laytown,63810-00009-1,0,4380_7778208_1901107,4380_1699 -4380_78129,286,4380_102828,Laytown,63816-00010-1,0,4380_7778208_1901107,4380_1699 -4380_78129,288,4380_102829,Laytown,63808-00011-1,0,4380_7778208_1901107,4380_1699 -4380_77954,289,4380_10283,Dublin,7519-00014-1,1,4380_7778208_1110104,4380_206 -4380_78129,287,4380_102830,Laytown,63814-00012-1,0,4380_7778208_1901107,4380_1699 -4380_78129,289,4380_102831,Laytown,63812-00014-1,0,4380_7778208_1901107,4380_1699 -4380_78129,292,4380_102832,Laytown,63817-00016-1,0,4380_7778208_1901107,4380_1699 -4380_78129,293,4380_102833,Laytown,63809-00017-1,0,4380_7778208_1901107,4380_1699 -4380_78129,290,4380_102834,Laytown,63811-00015-1,0,4380_7778208_1901107,4380_1699 -4380_78129,294,4380_102835,Laytown,63815-00018-1,0,4380_7778208_1901107,4380_1699 -4380_78129,295,4380_102836,Laytown,63813-00019-1,0,4380_7778208_1901107,4380_1699 -4380_78129,297,4380_102839,Laytown,63448-00008-1,0,4380_7778208_1901106,4380_1699 -4380_77954,290,4380_10284,Dublin,55609-00015-1,1,4380_7778208_1110104,4380_206 -4380_78129,291,4380_102840,Laytown,63063-00013-1,0,4380_7778208_1901105,4380_1700 -4380_78129,296,4380_102841,Laytown,63064-00021-1,0,4380_7778208_1901105,4380_1700 -4380_78129,285,4380_102847,Laytown,64552-00009-1,0,4380_7778208_1901109,4380_1699 -4380_78129,286,4380_102848,Laytown,64556-00010-1,0,4380_7778208_1901109,4380_1699 -4380_78129,288,4380_102849,Laytown,64550-00011-1,0,4380_7778208_1901109,4380_1699 -4380_77954,292,4380_10285,Dublin,55607-00016-1,1,4380_7778208_1110104,4380_206 -4380_78129,287,4380_102850,Laytown,64558-00012-1,0,4380_7778208_1901109,4380_1699 -4380_78129,289,4380_102851,Laytown,64554-00014-1,0,4380_7778208_1901109,4380_1699 -4380_78129,292,4380_102852,Laytown,64557-00016-1,0,4380_7778208_1901109,4380_1699 -4380_78129,293,4380_102853,Laytown,64551-00017-1,0,4380_7778208_1901109,4380_1699 -4380_78129,290,4380_102854,Laytown,64553-00015-1,0,4380_7778208_1901109,4380_1699 -4380_78129,294,4380_102855,Laytown,64559-00018-1,0,4380_7778208_1901109,4380_1699 -4380_78129,295,4380_102856,Laytown,64555-00019-1,0,4380_7778208_1901109,4380_1699 -4380_77954,293,4380_10286,Dublin,55605-00017-1,1,4380_7778208_1110104,4380_206 -4380_78129,285,4380_102862,Laytown,63458-00009-1,0,4380_7778208_1901106,4380_1699 -4380_78129,286,4380_102863,Laytown,63460-00010-1,0,4380_7778208_1901106,4380_1699 -4380_78129,288,4380_102864,Laytown,63456-00011-1,0,4380_7778208_1901106,4380_1699 -4380_78129,287,4380_102865,Laytown,63462-00012-1,0,4380_7778208_1901106,4380_1699 -4380_78129,289,4380_102866,Laytown,63464-00014-1,0,4380_7778208_1901106,4380_1699 -4380_78129,292,4380_102867,Laytown,63461-00016-1,0,4380_7778208_1901106,4380_1699 -4380_78129,293,4380_102868,Laytown,63457-00017-1,0,4380_7778208_1901106,4380_1699 -4380_78129,290,4380_102869,Laytown,63459-00015-1,0,4380_7778208_1901106,4380_1699 -4380_77954,294,4380_10287,Dublin,55606-00018-1,1,4380_7778208_1110104,4380_206 -4380_78129,294,4380_102870,Laytown,63463-00018-1,0,4380_7778208_1901106,4380_1699 -4380_78129,295,4380_102871,Laytown,63465-00019-1,0,4380_7778208_1901106,4380_1699 -4380_78129,297,4380_102873,Laytown,63086-00008-1,0,4380_7778208_1901105,4380_1699 -4380_77954,295,4380_10288,Dublin,55608-00019-1,1,4380_7778208_1110104,4380_206 -4380_78129,285,4380_102880,Laytown,64206-00009-1,0,4380_7778208_1901108,4380_1699 -4380_78129,286,4380_102881,Laytown,64208-00010-1,0,4380_7778208_1901108,4380_1699 -4380_78129,288,4380_102882,Laytown,64210-00011-1,0,4380_7778208_1901108,4380_1699 -4380_78129,287,4380_102883,Laytown,64214-00012-1,0,4380_7778208_1901108,4380_1699 -4380_78129,291,4380_102884,Laytown,64212-00013-1,0,4380_7778208_1901108,4380_1699 -4380_78129,289,4380_102885,Laytown,64216-00014-1,0,4380_7778208_1901108,4380_1699 -4380_78129,292,4380_102886,Laytown,64209-00016-1,0,4380_7778208_1901108,4380_1699 -4380_78129,293,4380_102887,Laytown,64211-00017-1,0,4380_7778208_1901108,4380_1699 -4380_78129,290,4380_102888,Laytown,64207-00015-1,0,4380_7778208_1901108,4380_1699 -4380_78129,294,4380_102889,Laytown,64215-00018-1,0,4380_7778208_1901108,4380_1699 -4380_78129,295,4380_102890,Laytown,64217-00019-1,0,4380_7778208_1901108,4380_1699 -4380_78129,296,4380_102891,Laytown,64213-00021-1,0,4380_7778208_1901108,4380_1699 -4380_78129,285,4380_102898,Laytown,63094-00009-1,0,4380_7778208_1901105,4380_1699 -4380_78129,286,4380_102899,Laytown,63096-00010-1,0,4380_7778208_1901105,4380_1699 -4380_78113,290,4380_1029,Dublin via Airport,50156-00015-1,1,4380_7778208_1000908,4380_18 -4380_78129,288,4380_102900,Laytown,63100-00011-1,0,4380_7778208_1901105,4380_1699 -4380_78129,287,4380_102901,Laytown,63098-00012-1,0,4380_7778208_1901105,4380_1699 -4380_78129,291,4380_102902,Laytown,63479-00013-1,0,4380_7778208_1901106,4380_1699 -4380_78129,289,4380_102903,Laytown,63092-00014-1,0,4380_7778208_1901105,4380_1699 -4380_78129,292,4380_102904,Laytown,63097-00016-1,0,4380_7778208_1901105,4380_1699 -4380_78129,293,4380_102905,Laytown,63101-00017-1,0,4380_7778208_1901105,4380_1699 -4380_78129,290,4380_102906,Laytown,63095-00015-1,0,4380_7778208_1901105,4380_1699 -4380_78129,294,4380_102907,Laytown,63099-00018-1,0,4380_7778208_1901105,4380_1699 -4380_78129,295,4380_102908,Laytown,63093-00019-1,0,4380_7778208_1901105,4380_1699 -4380_78129,296,4380_102909,Laytown,63480-00021-1,0,4380_7778208_1901106,4380_1699 -4380_78129,297,4380_102911,Laytown,63854-00008-1,0,4380_7778208_1901107,4380_1699 -4380_78129,285,4380_102918,Laytown,63859-00009-1,0,4380_7778208_1901107,4380_1699 -4380_78129,286,4380_102919,Laytown,63855-00010-1,0,4380_7778208_1901107,4380_1699 -4380_78129,288,4380_102920,Laytown,63863-00011-1,0,4380_7778208_1901107,4380_1699 -4380_78129,287,4380_102921,Laytown,63865-00012-1,0,4380_7778208_1901107,4380_1699 -4380_78129,291,4380_102922,Laytown,63857-00013-1,0,4380_7778208_1901107,4380_1699 -4380_78129,289,4380_102923,Laytown,63861-00014-1,0,4380_7778208_1901107,4380_1699 -4380_78129,292,4380_102924,Laytown,63856-00016-1,0,4380_7778208_1901107,4380_1699 -4380_78129,293,4380_102925,Laytown,63864-00017-1,0,4380_7778208_1901107,4380_1699 -4380_78129,290,4380_102926,Laytown,63860-00015-1,0,4380_7778208_1901107,4380_1699 -4380_78129,294,4380_102927,Laytown,63866-00018-1,0,4380_7778208_1901107,4380_1699 -4380_78129,295,4380_102928,Laytown,63862-00019-1,0,4380_7778208_1901107,4380_1699 -4380_78129,296,4380_102929,Laytown,63858-00021-1,0,4380_7778208_1901107,4380_1699 -4380_78129,285,4380_102936,Laytown,64602-00009-1,0,4380_7778208_1901109,4380_1699 -4380_78129,286,4380_102937,Laytown,64596-00010-1,0,4380_7778208_1901109,4380_1699 -4380_78129,288,4380_102938,Laytown,64598-00011-1,0,4380_7778208_1901109,4380_1699 -4380_78129,287,4380_102939,Laytown,64600-00012-1,0,4380_7778208_1901109,4380_1699 -4380_77954,285,4380_10294,Dublin,7743-00009-1,1,4380_7778208_1110107,4380_206 -4380_78129,291,4380_102940,Laytown,63115-00013-1,0,4380_7778208_1901105,4380_1699 -4380_78129,289,4380_102941,Laytown,64594-00014-1,0,4380_7778208_1901109,4380_1699 -4380_78129,292,4380_102942,Laytown,64597-00016-1,0,4380_7778208_1901109,4380_1699 -4380_78129,293,4380_102943,Laytown,64599-00017-1,0,4380_7778208_1901109,4380_1699 -4380_78129,290,4380_102944,Laytown,64603-00015-1,0,4380_7778208_1901109,4380_1699 -4380_78129,294,4380_102945,Laytown,64601-00018-1,0,4380_7778208_1901109,4380_1699 -4380_78129,295,4380_102946,Laytown,64595-00019-1,0,4380_7778208_1901109,4380_1699 -4380_78129,296,4380_102947,Laytown,63116-00021-1,0,4380_7778208_1901105,4380_1699 -4380_78129,297,4380_102949,Laytown,63506-00008-1,0,4380_7778208_1901106,4380_1699 -4380_77954,286,4380_10295,Dublin,7753-00010-1,1,4380_7778208_1110107,4380_206 -4380_78129,285,4380_102956,Laytown,63511-00009-1,0,4380_7778208_1901106,4380_1699 -4380_78129,286,4380_102957,Laytown,63513-00010-1,0,4380_7778208_1901106,4380_1699 -4380_78129,288,4380_102958,Laytown,63509-00011-1,0,4380_7778208_1901106,4380_1699 -4380_78129,287,4380_102959,Laytown,63515-00012-1,0,4380_7778208_1901106,4380_1699 -4380_77954,288,4380_10296,Dublin,7760-00011-1,1,4380_7778208_1110107,4380_206 -4380_78129,291,4380_102960,Laytown,64604-00013-1,0,4380_7778208_1901109,4380_1699 -4380_78129,289,4380_102961,Laytown,63507-00014-1,0,4380_7778208_1901106,4380_1699 -4380_78129,292,4380_102962,Laytown,63514-00016-1,0,4380_7778208_1901106,4380_1699 -4380_78129,293,4380_102963,Laytown,63510-00017-1,0,4380_7778208_1901106,4380_1699 -4380_78129,290,4380_102964,Laytown,63512-00015-1,0,4380_7778208_1901106,4380_1699 -4380_78129,294,4380_102965,Laytown,63516-00018-1,0,4380_7778208_1901106,4380_1699 -4380_78129,295,4380_102966,Laytown,63508-00019-1,0,4380_7778208_1901106,4380_1699 -4380_78129,296,4380_102967,Laytown,64605-00021-1,0,4380_7778208_1901109,4380_1699 -4380_77954,287,4380_10297,Dublin,7767-00012-1,1,4380_7778208_1110107,4380_206 -4380_78129,285,4380_102974,Laytown,64262-00009-1,0,4380_7778208_1901108,4380_1699 -4380_78129,286,4380_102975,Laytown,64256-00010-1,0,4380_7778208_1901108,4380_1699 -4380_78129,288,4380_102976,Laytown,64258-00011-1,0,4380_7778208_1901108,4380_1699 -4380_78129,287,4380_102977,Laytown,64260-00012-1,0,4380_7778208_1901108,4380_1699 -4380_78129,291,4380_102978,Laytown,64254-00013-1,0,4380_7778208_1901108,4380_1699 -4380_78129,289,4380_102979,Laytown,64264-00014-1,0,4380_7778208_1901108,4380_1699 -4380_77954,289,4380_10298,Dublin,7739-00014-1,1,4380_7778208_1110107,4380_206 -4380_78129,292,4380_102980,Laytown,64257-00016-1,0,4380_7778208_1901108,4380_1699 -4380_78129,293,4380_102981,Laytown,64259-00017-1,0,4380_7778208_1901108,4380_1699 -4380_78129,290,4380_102982,Laytown,64263-00015-1,0,4380_7778208_1901108,4380_1699 -4380_78129,294,4380_102983,Laytown,64261-00018-1,0,4380_7778208_1901108,4380_1699 -4380_78129,295,4380_102984,Laytown,64265-00019-1,0,4380_7778208_1901108,4380_1699 -4380_78129,296,4380_102985,Laytown,64255-00021-1,0,4380_7778208_1901108,4380_1699 -4380_78129,297,4380_102987,Laytown,63140-00008-1,0,4380_7778208_1901105,4380_1699 -4380_77954,290,4380_10299,Dublin,55716-00015-1,1,4380_7778208_1110107,4380_206 -4380_78129,285,4380_102994,Laytown,63145-00009-1,0,4380_7778208_1901105,4380_1699 -4380_78129,286,4380_102995,Laytown,63149-00010-1,0,4380_7778208_1901105,4380_1699 -4380_78129,288,4380_102996,Laytown,63147-00011-1,0,4380_7778208_1901105,4380_1699 -4380_78129,287,4380_102997,Laytown,63151-00012-1,0,4380_7778208_1901105,4380_1699 -4380_78129,291,4380_102998,Laytown,63531-00013-1,0,4380_7778208_1901106,4380_1699 -4380_78129,289,4380_102999,Laytown,63143-00014-1,0,4380_7778208_1901105,4380_1699 -4380_77946,295,4380_103,Dundalk,50468-00019-1,0,4380_7778208_1000915,4380_1 -4380_78113,291,4380_1030,Dublin via Airport,50147-00013-1,1,4380_7778208_1000908,4380_20 -4380_77954,292,4380_10300,Dublin,55713-00016-1,1,4380_7778208_1110107,4380_206 -4380_78129,292,4380_103000,Laytown,63150-00016-1,0,4380_7778208_1901105,4380_1699 -4380_78129,293,4380_103001,Laytown,63148-00017-1,0,4380_7778208_1901105,4380_1699 -4380_78129,290,4380_103002,Laytown,63146-00015-1,0,4380_7778208_1901105,4380_1699 -4380_78129,294,4380_103003,Laytown,63152-00018-1,0,4380_7778208_1901105,4380_1699 -4380_78129,295,4380_103004,Laytown,63144-00019-1,0,4380_7778208_1901105,4380_1699 -4380_78129,296,4380_103005,Laytown,63532-00021-1,0,4380_7778208_1901106,4380_1699 -4380_78129,297,4380_103007,Laytown,64278-00008-1,0,4380_7778208_1901108,4380_1699 -4380_77954,293,4380_10301,Dublin,55714-00017-1,1,4380_7778208_1110107,4380_206 -4380_78129,285,4380_103014,Laytown,63906-00009-1,0,4380_7778208_1901107,4380_1699 -4380_78129,286,4380_103015,Laytown,63910-00010-1,0,4380_7778208_1901107,4380_1699 -4380_78129,288,4380_103016,Laytown,63916-00011-1,0,4380_7778208_1901107,4380_1699 -4380_78129,287,4380_103017,Laytown,63908-00012-1,0,4380_7778208_1901107,4380_1699 -4380_78129,291,4380_103018,Laytown,63912-00013-1,0,4380_7778208_1901107,4380_1699 -4380_78129,289,4380_103019,Laytown,63914-00014-1,0,4380_7778208_1901107,4380_1699 -4380_77954,294,4380_10302,Dublin,55717-00018-1,1,4380_7778208_1110107,4380_206 -4380_78129,292,4380_103020,Laytown,63911-00016-1,0,4380_7778208_1901107,4380_1699 -4380_78129,293,4380_103021,Laytown,63917-00017-1,0,4380_7778208_1901107,4380_1699 -4380_78129,290,4380_103022,Laytown,63907-00015-1,0,4380_7778208_1901107,4380_1699 -4380_78129,294,4380_103023,Laytown,63909-00018-1,0,4380_7778208_1901107,4380_1699 -4380_78129,295,4380_103024,Laytown,63915-00019-1,0,4380_7778208_1901107,4380_1699 -4380_78129,296,4380_103025,Laytown,63913-00021-1,0,4380_7778208_1901107,4380_1699 -4380_78129,297,4380_103027,Laytown,63918-00008-1,0,4380_7778208_1901107,4380_1699 -4380_77954,295,4380_10303,Dublin,55715-00019-1,1,4380_7778208_1110107,4380_206 -4380_78129,285,4380_103034,Laytown,64646-00009-1,0,4380_7778208_1901109,4380_1699 -4380_78129,286,4380_103035,Laytown,64644-00010-1,0,4380_7778208_1901109,4380_1699 -4380_78129,288,4380_103036,Laytown,64650-00011-1,0,4380_7778208_1901109,4380_1699 -4380_78129,287,4380_103037,Laytown,64648-00012-1,0,4380_7778208_1901109,4380_1699 -4380_78129,291,4380_103038,Laytown,63167-00013-1,0,4380_7778208_1901105,4380_1699 -4380_78129,289,4380_103039,Laytown,64652-00014-1,0,4380_7778208_1901109,4380_1699 -4380_78129,292,4380_103040,Laytown,64645-00016-1,0,4380_7778208_1901109,4380_1699 -4380_78129,293,4380_103041,Laytown,64651-00017-1,0,4380_7778208_1901109,4380_1699 -4380_78129,290,4380_103042,Laytown,64647-00015-1,0,4380_7778208_1901109,4380_1699 -4380_78129,294,4380_103043,Laytown,64649-00018-1,0,4380_7778208_1901109,4380_1699 -4380_78129,295,4380_103044,Laytown,64653-00019-1,0,4380_7778208_1901109,4380_1699 -4380_78129,296,4380_103045,Laytown,63168-00021-1,0,4380_7778208_1901105,4380_1699 -4380_78129,297,4380_103047,Laytown,63556-00008-1,0,4380_7778208_1901106,4380_1699 -4380_78129,285,4380_103054,Laytown,63561-00009-1,0,4380_7778208_1901106,4380_1699 -4380_78129,286,4380_103055,Laytown,63565-00010-1,0,4380_7778208_1901106,4380_1699 -4380_78129,288,4380_103056,Laytown,63567-00011-1,0,4380_7778208_1901106,4380_1699 -4380_78129,287,4380_103057,Laytown,63559-00012-1,0,4380_7778208_1901106,4380_1699 -4380_78129,291,4380_103058,Laytown,64654-00013-1,0,4380_7778208_1901109,4380_1699 -4380_78129,289,4380_103059,Laytown,63563-00014-1,0,4380_7778208_1901106,4380_1699 -4380_78129,292,4380_103060,Laytown,63566-00016-1,0,4380_7778208_1901106,4380_1699 -4380_78129,293,4380_103061,Laytown,63568-00017-1,0,4380_7778208_1901106,4380_1699 -4380_78129,290,4380_103062,Laytown,63562-00015-1,0,4380_7778208_1901106,4380_1699 -4380_78129,294,4380_103063,Laytown,63560-00018-1,0,4380_7778208_1901106,4380_1699 -4380_78129,295,4380_103064,Laytown,63564-00019-1,0,4380_7778208_1901106,4380_1699 -4380_78129,296,4380_103065,Laytown,64655-00021-1,0,4380_7778208_1901109,4380_1699 -4380_78129,297,4380_103067,Laytown,64656-00008-1,0,4380_7778208_1901109,4380_1699 -4380_78129,285,4380_103074,Laytown,64316-00009-1,0,4380_7778208_1901108,4380_1699 -4380_78129,286,4380_103075,Laytown,64308-00010-1,0,4380_7778208_1901108,4380_1699 -4380_78129,288,4380_103076,Laytown,64306-00011-1,0,4380_7778208_1901108,4380_1699 -4380_78129,287,4380_103077,Laytown,64310-00012-1,0,4380_7778208_1901108,4380_1699 -4380_78129,291,4380_103078,Laytown,64314-00013-1,0,4380_7778208_1901108,4380_1699 -4380_78129,289,4380_103079,Laytown,64312-00014-1,0,4380_7778208_1901108,4380_1699 -4380_78129,292,4380_103080,Laytown,64309-00016-1,0,4380_7778208_1901108,4380_1699 -4380_78129,293,4380_103081,Laytown,64307-00017-1,0,4380_7778208_1901108,4380_1699 -4380_78129,290,4380_103082,Laytown,64317-00015-1,0,4380_7778208_1901108,4380_1699 -4380_78129,294,4380_103083,Laytown,64311-00018-1,0,4380_7778208_1901108,4380_1699 -4380_78129,295,4380_103084,Laytown,64313-00019-1,0,4380_7778208_1901108,4380_1699 -4380_78129,296,4380_103085,Laytown,64315-00021-1,0,4380_7778208_1901108,4380_1699 -4380_78129,297,4380_103087,Laytown,63192-00008-1,0,4380_7778208_1901105,4380_1699 -4380_78129,285,4380_103094,Laytown,63201-00009-1,0,4380_7778208_1901105,4380_1699 -4380_78129,286,4380_103095,Laytown,63203-00010-1,0,4380_7778208_1901105,4380_1699 -4380_78129,288,4380_103096,Laytown,63197-00011-1,0,4380_7778208_1901105,4380_1699 -4380_78129,287,4380_103097,Laytown,63195-00012-1,0,4380_7778208_1901105,4380_1699 -4380_78129,291,4380_103098,Laytown,63583-00013-1,0,4380_7778208_1901106,4380_1699 -4380_78129,289,4380_103099,Laytown,63199-00014-1,0,4380_7778208_1901105,4380_1699 -4380_78113,292,4380_1031,Dublin via Airport,50152-00016-1,1,4380_7778208_1000908,4380_18 -4380_77954,285,4380_10310,Dublin,7677-00009-1,1,4380_7778208_1110106,4380_206 -4380_78129,292,4380_103100,Laytown,63204-00016-1,0,4380_7778208_1901105,4380_1699 -4380_78129,293,4380_103101,Laytown,63198-00017-1,0,4380_7778208_1901105,4380_1699 -4380_78129,290,4380_103102,Laytown,63202-00015-1,0,4380_7778208_1901105,4380_1699 -4380_78129,294,4380_103103,Laytown,63196-00018-1,0,4380_7778208_1901105,4380_1699 -4380_78129,295,4380_103104,Laytown,63200-00019-1,0,4380_7778208_1901105,4380_1699 -4380_78129,296,4380_103105,Laytown,63584-00021-1,0,4380_7778208_1901106,4380_1699 -4380_78129,297,4380_103107,Laytown,64324-00008-1,0,4380_7778208_1901108,4380_1699 -4380_77954,286,4380_10311,Dublin,7691-00010-1,1,4380_7778208_1110106,4380_206 -4380_78129,285,4380_103114,Laytown,63964-00009-1,0,4380_7778208_1901107,4380_1699 -4380_78129,286,4380_103115,Laytown,63958-00010-1,0,4380_7778208_1901107,4380_1699 -4380_78129,288,4380_103116,Laytown,63966-00011-1,0,4380_7778208_1901107,4380_1699 -4380_78129,287,4380_103117,Laytown,63962-00012-1,0,4380_7778208_1901107,4380_1699 -4380_78129,291,4380_103118,Laytown,63968-00013-1,0,4380_7778208_1901107,4380_1699 -4380_78129,289,4380_103119,Laytown,63960-00014-1,0,4380_7778208_1901107,4380_1699 -4380_77954,288,4380_10312,Dublin,7701-00011-1,1,4380_7778208_1110106,4380_206 -4380_78129,292,4380_103120,Laytown,63959-00016-1,0,4380_7778208_1901107,4380_1699 -4380_78129,293,4380_103121,Laytown,63967-00017-1,0,4380_7778208_1901107,4380_1699 -4380_78129,290,4380_103122,Laytown,63965-00015-1,0,4380_7778208_1901107,4380_1699 -4380_78129,294,4380_103123,Laytown,63963-00018-1,0,4380_7778208_1901107,4380_1699 -4380_78129,295,4380_103124,Laytown,63961-00019-1,0,4380_7778208_1901107,4380_1699 -4380_78129,296,4380_103125,Laytown,63969-00021-1,0,4380_7778208_1901107,4380_1699 -4380_78129,297,4380_103127,Laytown,63970-00008-1,0,4380_7778208_1901107,4380_1699 -4380_77954,287,4380_10313,Dublin,7711-00012-1,1,4380_7778208_1110106,4380_206 -4380_78129,285,4380_103134,Laytown,64698-00009-1,0,4380_7778208_1901109,4380_1699 -4380_78129,286,4380_103135,Laytown,64700-00010-1,0,4380_7778208_1901109,4380_1699 -4380_78129,288,4380_103136,Laytown,64696-00011-1,0,4380_7778208_1901109,4380_1699 -4380_78129,287,4380_103137,Laytown,64702-00012-1,0,4380_7778208_1901109,4380_1699 -4380_78129,291,4380_103138,Laytown,63219-00013-1,0,4380_7778208_1901105,4380_1699 -4380_78129,289,4380_103139,Laytown,64704-00014-1,0,4380_7778208_1901109,4380_1699 -4380_77954,289,4380_10314,Dublin,7667-00014-1,1,4380_7778208_1110106,4380_206 -4380_78129,292,4380_103140,Laytown,64701-00016-1,0,4380_7778208_1901109,4380_1699 -4380_78129,293,4380_103141,Laytown,64697-00017-1,0,4380_7778208_1901109,4380_1699 -4380_78129,290,4380_103142,Laytown,64699-00015-1,0,4380_7778208_1901109,4380_1699 -4380_78129,294,4380_103143,Laytown,64703-00018-1,0,4380_7778208_1901109,4380_1699 -4380_78129,295,4380_103144,Laytown,64705-00019-1,0,4380_7778208_1901109,4380_1699 -4380_78129,296,4380_103145,Laytown,63220-00021-1,0,4380_7778208_1901105,4380_1699 -4380_78129,297,4380_103147,Laytown,63608-00008-1,0,4380_7778208_1901106,4380_1699 -4380_77954,290,4380_10315,Dublin,55680-00015-1,1,4380_7778208_1110106,4380_206 -4380_78129,285,4380_103154,Laytown,63613-00009-1,0,4380_7778208_1901106,4380_1699 -4380_78129,286,4380_103155,Laytown,63615-00010-1,0,4380_7778208_1901106,4380_1699 -4380_78129,288,4380_103156,Laytown,63619-00011-1,0,4380_7778208_1901106,4380_1699 -4380_78129,287,4380_103157,Laytown,63611-00012-1,0,4380_7778208_1901106,4380_1699 -4380_78129,291,4380_103158,Laytown,64706-00013-1,0,4380_7778208_1901109,4380_1699 -4380_78129,289,4380_103159,Laytown,63617-00014-1,0,4380_7778208_1901106,4380_1699 -4380_77954,291,4380_10316,Dublin,7495-00013-1,1,4380_7778208_1110103,4380_209 -4380_78129,292,4380_103160,Laytown,63616-00016-1,0,4380_7778208_1901106,4380_1699 -4380_78129,293,4380_103161,Laytown,63620-00017-1,0,4380_7778208_1901106,4380_1699 -4380_78129,290,4380_103162,Laytown,63614-00015-1,0,4380_7778208_1901106,4380_1699 -4380_78129,294,4380_103163,Laytown,63612-00018-1,0,4380_7778208_1901106,4380_1699 -4380_78129,295,4380_103164,Laytown,63618-00019-1,0,4380_7778208_1901106,4380_1699 -4380_78129,296,4380_103165,Laytown,64707-00021-1,0,4380_7778208_1901109,4380_1699 -4380_78129,297,4380_103167,Laytown,64718-00008-1,0,4380_7778208_1901109,4380_1699 -4380_77954,292,4380_10317,Dublin,55681-00016-1,1,4380_7778208_1110106,4380_206 -4380_78129,285,4380_103174,Laytown,64364-00009-1,0,4380_7778208_1901108,4380_1699 -4380_78129,286,4380_103175,Laytown,64366-00010-1,0,4380_7778208_1901108,4380_1699 -4380_78129,288,4380_103176,Laytown,64368-00011-1,0,4380_7778208_1901108,4380_1699 -4380_78129,287,4380_103177,Laytown,64358-00012-1,0,4380_7778208_1901108,4380_1699 -4380_78129,291,4380_103178,Laytown,64362-00013-1,0,4380_7778208_1901108,4380_1699 -4380_78129,289,4380_103179,Laytown,64360-00014-1,0,4380_7778208_1901108,4380_1699 -4380_77954,293,4380_10318,Dublin,55677-00017-1,1,4380_7778208_1110106,4380_206 -4380_78129,292,4380_103180,Laytown,64367-00016-1,0,4380_7778208_1901108,4380_1699 -4380_78129,293,4380_103181,Laytown,64369-00017-1,0,4380_7778208_1901108,4380_1699 -4380_78129,290,4380_103182,Laytown,64365-00015-1,0,4380_7778208_1901108,4380_1699 -4380_78129,294,4380_103183,Laytown,64359-00018-1,0,4380_7778208_1901108,4380_1699 -4380_78129,295,4380_103184,Laytown,64361-00019-1,0,4380_7778208_1901108,4380_1699 -4380_78129,296,4380_103185,Laytown,64363-00021-1,0,4380_7778208_1901108,4380_1699 -4380_78129,297,4380_103187,Laytown,63244-00008-1,0,4380_7778208_1901105,4380_1699 -4380_77954,294,4380_10319,Dublin,55678-00018-1,1,4380_7778208_1110106,4380_206 -4380_78129,285,4380_103194,Laytown,63255-00009-1,0,4380_7778208_1901105,4380_1699 -4380_78129,286,4380_103195,Laytown,63249-00010-1,0,4380_7778208_1901105,4380_1699 -4380_78129,288,4380_103196,Laytown,63253-00011-1,0,4380_7778208_1901105,4380_1699 -4380_78129,287,4380_103197,Laytown,63251-00012-1,0,4380_7778208_1901105,4380_1699 -4380_78129,291,4380_103198,Laytown,63635-00013-1,0,4380_7778208_1901106,4380_1699 -4380_78129,289,4380_103199,Laytown,63247-00014-1,0,4380_7778208_1901105,4380_1699 -4380_78113,293,4380_1032,Dublin via Airport,50154-00017-1,1,4380_7778208_1000908,4380_18 -4380_77954,295,4380_10320,Dublin,55679-00019-1,1,4380_7778208_1110106,4380_206 -4380_78129,292,4380_103200,Laytown,63250-00016-1,0,4380_7778208_1901105,4380_1699 -4380_78129,293,4380_103201,Laytown,63254-00017-1,0,4380_7778208_1901105,4380_1699 -4380_78129,290,4380_103202,Laytown,63256-00015-1,0,4380_7778208_1901105,4380_1699 -4380_78129,294,4380_103203,Laytown,63252-00018-1,0,4380_7778208_1901105,4380_1699 -4380_78129,295,4380_103204,Laytown,63248-00019-1,0,4380_7778208_1901105,4380_1699 -4380_78129,296,4380_103205,Laytown,63636-00021-1,0,4380_7778208_1901106,4380_1699 -4380_78129,297,4380_103207,Laytown,64370-00008-1,0,4380_7778208_1901108,4380_1699 -4380_77954,296,4380_10321,Dublin,55589-00021-1,1,4380_7778208_1110103,4380_209 -4380_78129,285,4380_103214,Laytown,64010-00009-1,0,4380_7778208_1901107,4380_1699 -4380_78129,286,4380_103215,Laytown,64012-00010-1,0,4380_7778208_1901107,4380_1699 -4380_78129,288,4380_103216,Laytown,64014-00011-1,0,4380_7778208_1901107,4380_1699 -4380_78129,287,4380_103217,Laytown,64016-00012-1,0,4380_7778208_1901107,4380_1699 -4380_78129,291,4380_103218,Laytown,64020-00013-1,0,4380_7778208_1901107,4380_1699 -4380_78129,289,4380_103219,Laytown,64018-00014-1,0,4380_7778208_1901107,4380_1699 -4380_78129,292,4380_103220,Laytown,64013-00016-1,0,4380_7778208_1901107,4380_1699 -4380_78129,293,4380_103221,Laytown,64015-00017-1,0,4380_7778208_1901107,4380_1699 -4380_78129,290,4380_103222,Laytown,64011-00015-1,0,4380_7778208_1901107,4380_1699 -4380_78129,294,4380_103223,Laytown,64017-00018-1,0,4380_7778208_1901107,4380_1699 -4380_78129,295,4380_103224,Laytown,64019-00019-1,0,4380_7778208_1901107,4380_1699 -4380_78129,296,4380_103225,Laytown,64021-00021-1,0,4380_7778208_1901107,4380_1699 -4380_78129,297,4380_103227,Laytown,64022-00008-1,0,4380_7778208_1901107,4380_1699 -4380_78129,285,4380_103234,Laytown,64748-00009-1,0,4380_7778208_1901109,4380_1699 -4380_78129,286,4380_103235,Laytown,64754-00010-1,0,4380_7778208_1901109,4380_1699 -4380_78129,288,4380_103236,Laytown,64752-00011-1,0,4380_7778208_1901109,4380_1699 -4380_78129,287,4380_103237,Laytown,64750-00012-1,0,4380_7778208_1901109,4380_1699 -4380_78129,291,4380_103238,Laytown,63271-00013-1,0,4380_7778208_1901105,4380_1699 -4380_78129,289,4380_103239,Laytown,64756-00014-1,0,4380_7778208_1901109,4380_1699 -4380_78129,292,4380_103240,Laytown,64755-00016-1,0,4380_7778208_1901109,4380_1699 -4380_78129,293,4380_103241,Laytown,64753-00017-1,0,4380_7778208_1901109,4380_1699 -4380_78129,290,4380_103242,Laytown,64749-00015-1,0,4380_7778208_1901109,4380_1699 -4380_78129,294,4380_103243,Laytown,64751-00018-1,0,4380_7778208_1901109,4380_1699 -4380_78129,295,4380_103244,Laytown,64757-00019-1,0,4380_7778208_1901109,4380_1699 -4380_78129,296,4380_103245,Laytown,63272-00021-1,0,4380_7778208_1901105,4380_1699 -4380_78129,297,4380_103247,Laytown,63660-00008-1,0,4380_7778208_1901106,4380_1699 -4380_78129,285,4380_103254,Laytown,63663-00009-1,0,4380_7778208_1901106,4380_1699 -4380_78129,286,4380_103255,Laytown,63671-00010-1,0,4380_7778208_1901106,4380_1699 -4380_78129,288,4380_103256,Laytown,63665-00011-1,0,4380_7778208_1901106,4380_1699 -4380_78129,287,4380_103257,Laytown,63667-00012-1,0,4380_7778208_1901106,4380_1699 -4380_78129,291,4380_103258,Laytown,64758-00013-1,0,4380_7778208_1901109,4380_1699 -4380_78129,289,4380_103259,Laytown,63669-00014-1,0,4380_7778208_1901106,4380_1699 -4380_78129,292,4380_103260,Laytown,63672-00016-1,0,4380_7778208_1901106,4380_1699 -4380_78129,293,4380_103261,Laytown,63666-00017-1,0,4380_7778208_1901106,4380_1699 -4380_78129,290,4380_103262,Laytown,63664-00015-1,0,4380_7778208_1901106,4380_1699 -4380_78129,294,4380_103263,Laytown,63668-00018-1,0,4380_7778208_1901106,4380_1699 -4380_78129,295,4380_103264,Laytown,63670-00019-1,0,4380_7778208_1901106,4380_1699 -4380_78129,296,4380_103265,Laytown,64759-00021-1,0,4380_7778208_1901109,4380_1699 -4380_78129,297,4380_103267,Laytown,64762-00008-1,0,4380_7778208_1901109,4380_1699 -4380_78129,285,4380_103274,Laytown,64420-00009-1,0,4380_7778208_1901108,4380_1699 -4380_78129,286,4380_103275,Laytown,64410-00010-1,0,4380_7778208_1901108,4380_1699 -4380_78129,288,4380_103276,Laytown,64416-00011-1,0,4380_7778208_1901108,4380_1699 -4380_78129,287,4380_103277,Laytown,64414-00012-1,0,4380_7778208_1901108,4380_1699 -4380_78129,291,4380_103278,Laytown,64418-00013-1,0,4380_7778208_1901108,4380_1699 -4380_78129,289,4380_103279,Laytown,64412-00014-1,0,4380_7778208_1901108,4380_1699 -4380_78129,292,4380_103280,Laytown,64411-00016-1,0,4380_7778208_1901108,4380_1699 -4380_78129,293,4380_103281,Laytown,64417-00017-1,0,4380_7778208_1901108,4380_1699 -4380_78129,290,4380_103282,Laytown,64421-00015-1,0,4380_7778208_1901108,4380_1699 -4380_78129,294,4380_103283,Laytown,64415-00018-1,0,4380_7778208_1901108,4380_1699 -4380_78129,295,4380_103284,Laytown,64413-00019-1,0,4380_7778208_1901108,4380_1699 -4380_78129,296,4380_103285,Laytown,64419-00021-1,0,4380_7778208_1901108,4380_1699 -4380_78129,297,4380_103287,Laytown,63296-00008-1,0,4380_7778208_1901105,4380_1699 -4380_77954,285,4380_10329,Dublin,7606-00009-1,1,4380_7778208_1110105,4380_206 -4380_78129,285,4380_103294,Laytown,63303-00009-1,0,4380_7778208_1901105,4380_1699 -4380_78129,286,4380_103295,Laytown,63301-00010-1,0,4380_7778208_1901105,4380_1699 -4380_78129,288,4380_103296,Laytown,63305-00011-1,0,4380_7778208_1901105,4380_1699 -4380_78129,287,4380_103297,Laytown,63299-00012-1,0,4380_7778208_1901105,4380_1699 -4380_78129,291,4380_103298,Laytown,63687-00013-1,0,4380_7778208_1901106,4380_1699 -4380_78129,289,4380_103299,Laytown,63307-00014-1,0,4380_7778208_1901105,4380_1699 -4380_78113,294,4380_1033,Dublin via Airport,50146-00018-1,1,4380_7778208_1000908,4380_18 -4380_77954,286,4380_10330,Dublin,7620-00010-1,1,4380_7778208_1110105,4380_206 -4380_78129,292,4380_103300,Laytown,63302-00016-1,0,4380_7778208_1901105,4380_1699 -4380_78129,293,4380_103301,Laytown,63306-00017-1,0,4380_7778208_1901105,4380_1699 -4380_78129,290,4380_103302,Laytown,63304-00015-1,0,4380_7778208_1901105,4380_1699 -4380_78129,294,4380_103303,Laytown,63300-00018-1,0,4380_7778208_1901105,4380_1699 -4380_78129,295,4380_103304,Laytown,63308-00019-1,0,4380_7778208_1901105,4380_1699 -4380_78129,296,4380_103305,Laytown,63688-00021-1,0,4380_7778208_1901106,4380_1699 -4380_78129,297,4380_103307,Laytown,64062-00008-1,0,4380_7778208_1901107,4380_1699 -4380_77954,297,4380_10331,Dublin,7501-00008-1,1,4380_7778208_1110103,4380_209 -4380_78129,285,4380_103314,Laytown,64069-00009-1,0,4380_7778208_1901107,4380_1699 -4380_78129,286,4380_103315,Laytown,64063-00010-1,0,4380_7778208_1901107,4380_1699 -4380_78129,288,4380_103316,Laytown,64067-00011-1,0,4380_7778208_1901107,4380_1699 -4380_78129,287,4380_103317,Laytown,64071-00012-1,0,4380_7778208_1901107,4380_1699 -4380_78129,291,4380_103318,Laytown,64065-00013-1,0,4380_7778208_1901107,4380_1699 -4380_78129,289,4380_103319,Laytown,64073-00014-1,0,4380_7778208_1901107,4380_1699 -4380_77954,288,4380_10332,Dublin,7630-00011-1,1,4380_7778208_1110105,4380_206 -4380_78129,292,4380_103320,Laytown,64064-00016-1,0,4380_7778208_1901107,4380_1699 -4380_78129,293,4380_103321,Laytown,64068-00017-1,0,4380_7778208_1901107,4380_1699 -4380_78129,290,4380_103322,Laytown,64070-00015-1,0,4380_7778208_1901107,4380_1699 -4380_78129,294,4380_103323,Laytown,64072-00018-1,0,4380_7778208_1901107,4380_1699 -4380_78129,295,4380_103324,Laytown,64074-00019-1,0,4380_7778208_1901107,4380_1699 -4380_78129,296,4380_103325,Laytown,64066-00021-1,0,4380_7778208_1901107,4380_1699 -4380_77954,287,4380_10333,Dublin,7640-00012-1,1,4380_7778208_1110105,4380_206 -4380_78129,285,4380_103332,Laytown,64802-00009-1,0,4380_7778208_1901109,4380_1699 -4380_78129,286,4380_103333,Laytown,64806-00010-1,0,4380_7778208_1901109,4380_1699 -4380_78129,288,4380_103334,Laytown,64800-00011-1,0,4380_7778208_1901109,4380_1699 -4380_78129,287,4380_103335,Laytown,64804-00012-1,0,4380_7778208_1901109,4380_1699 -4380_78129,291,4380_103336,Laytown,63323-00013-1,0,4380_7778208_1901105,4380_1699 -4380_78129,289,4380_103337,Laytown,64798-00014-1,0,4380_7778208_1901109,4380_1699 -4380_78129,292,4380_103338,Laytown,64807-00016-1,0,4380_7778208_1901109,4380_1699 -4380_78129,293,4380_103339,Laytown,64801-00017-1,0,4380_7778208_1901109,4380_1699 -4380_77954,289,4380_10334,Dublin,7600-00014-1,1,4380_7778208_1110105,4380_206 -4380_78129,290,4380_103340,Laytown,64803-00015-1,0,4380_7778208_1901109,4380_1699 -4380_78129,294,4380_103341,Laytown,64805-00018-1,0,4380_7778208_1901109,4380_1699 -4380_78129,295,4380_103342,Laytown,64799-00019-1,0,4380_7778208_1901109,4380_1699 -4380_78129,296,4380_103343,Laytown,63324-00021-1,0,4380_7778208_1901105,4380_1699 -4380_78129,297,4380_103345,Laytown,63714-00008-1,0,4380_7778208_1901106,4380_1699 -4380_77954,290,4380_10335,Dublin,55644-00015-1,1,4380_7778208_1110105,4380_206 -4380_78129,285,4380_103352,Laytown,63723-00009-1,0,4380_7778208_1901106,4380_1699 -4380_78129,286,4380_103353,Laytown,63719-00010-1,0,4380_7778208_1901106,4380_1699 -4380_78129,288,4380_103354,Laytown,63715-00011-1,0,4380_7778208_1901106,4380_1699 -4380_78129,287,4380_103355,Laytown,63717-00012-1,0,4380_7778208_1901106,4380_1699 -4380_78129,291,4380_103356,Laytown,64808-00013-1,0,4380_7778208_1901109,4380_1699 -4380_78129,289,4380_103357,Laytown,63721-00014-1,0,4380_7778208_1901106,4380_1699 -4380_78129,292,4380_103358,Laytown,63720-00016-1,0,4380_7778208_1901106,4380_1699 -4380_78129,293,4380_103359,Laytown,63716-00017-1,0,4380_7778208_1901106,4380_1699 -4380_77954,291,4380_10336,Dublin,7579-00013-1,1,4380_7778208_1110104,4380_210 -4380_78129,290,4380_103360,Laytown,63724-00015-1,0,4380_7778208_1901106,4380_1699 -4380_78129,294,4380_103361,Laytown,63718-00018-1,0,4380_7778208_1901106,4380_1699 -4380_78129,295,4380_103362,Laytown,63722-00019-1,0,4380_7778208_1901106,4380_1699 -4380_78129,296,4380_103363,Laytown,64809-00021-1,0,4380_7778208_1901109,4380_1699 -4380_77954,292,4380_10337,Dublin,55643-00016-1,1,4380_7778208_1110105,4380_206 -4380_78129,285,4380_103370,Laytown,64460-00009-1,0,4380_7778208_1901108,4380_1699 -4380_78129,286,4380_103371,Laytown,64464-00010-1,0,4380_7778208_1901108,4380_1699 -4380_78129,288,4380_103372,Laytown,64466-00011-1,0,4380_7778208_1901108,4380_1699 -4380_78129,287,4380_103373,Laytown,64468-00012-1,0,4380_7778208_1901108,4380_1699 -4380_78129,291,4380_103374,Laytown,64462-00013-1,0,4380_7778208_1901108,4380_1699 -4380_78129,289,4380_103375,Laytown,64458-00014-1,0,4380_7778208_1901108,4380_1699 -4380_78129,292,4380_103376,Laytown,64465-00016-1,0,4380_7778208_1901108,4380_1699 -4380_78129,293,4380_103377,Laytown,64467-00017-1,0,4380_7778208_1901108,4380_1699 -4380_78129,290,4380_103378,Laytown,64461-00015-1,0,4380_7778208_1901108,4380_1699 -4380_78129,294,4380_103379,Laytown,64469-00018-1,0,4380_7778208_1901108,4380_1699 -4380_77954,293,4380_10338,Dublin,55642-00017-1,1,4380_7778208_1110105,4380_206 -4380_78129,295,4380_103380,Laytown,64459-00019-1,0,4380_7778208_1901108,4380_1699 -4380_78129,296,4380_103381,Laytown,64463-00021-1,0,4380_7778208_1901108,4380_1699 -4380_78129,297,4380_103383,Laytown,63350-00008-1,0,4380_7778208_1901105,4380_1699 -4380_77954,294,4380_10339,Dublin,55645-00018-1,1,4380_7778208_1110105,4380_206 -4380_78129,285,4380_103390,Laytown,63351-00009-1,0,4380_7778208_1901105,4380_1699 -4380_78129,286,4380_103391,Laytown,63357-00010-1,0,4380_7778208_1901105,4380_1699 -4380_78129,288,4380_103392,Laytown,63355-00011-1,0,4380_7778208_1901105,4380_1699 -4380_78129,287,4380_103393,Laytown,63359-00012-1,0,4380_7778208_1901105,4380_1699 -4380_78129,291,4380_103394,Laytown,63738-00013-1,0,4380_7778208_1901106,4380_1699 -4380_78129,289,4380_103395,Laytown,63353-00014-1,0,4380_7778208_1901105,4380_1699 -4380_78129,292,4380_103396,Laytown,63358-00016-1,0,4380_7778208_1901105,4380_1699 -4380_78129,293,4380_103397,Laytown,63356-00017-1,0,4380_7778208_1901105,4380_1699 -4380_78129,290,4380_103398,Laytown,63352-00015-1,0,4380_7778208_1901105,4380_1699 -4380_78129,294,4380_103399,Laytown,63360-00018-1,0,4380_7778208_1901105,4380_1699 -4380_78113,295,4380_1034,Dublin via Airport,50150-00019-1,1,4380_7778208_1000908,4380_18 -4380_77954,295,4380_10340,Dublin,55641-00019-1,1,4380_7778208_1110105,4380_206 -4380_78129,295,4380_103400,Laytown,63354-00019-1,0,4380_7778208_1901105,4380_1699 -4380_78129,296,4380_103401,Laytown,63739-00021-1,0,4380_7778208_1901106,4380_1699 -4380_78129,285,4380_103408,Laytown,64122-00009-1,0,4380_7778208_1901107,4380_1699 -4380_78129,286,4380_103409,Laytown,64114-00010-1,0,4380_7778208_1901107,4380_1699 -4380_77954,296,4380_10341,Dublin,55610-00021-1,1,4380_7778208_1110104,4380_210 -4380_78129,288,4380_103410,Laytown,64118-00011-1,0,4380_7778208_1901107,4380_1699 -4380_78129,287,4380_103411,Laytown,64124-00012-1,0,4380_7778208_1901107,4380_1699 -4380_78129,291,4380_103412,Laytown,64116-00013-1,0,4380_7778208_1901107,4380_1699 -4380_78129,289,4380_103413,Laytown,64120-00014-1,0,4380_7778208_1901107,4380_1699 -4380_78129,292,4380_103414,Laytown,64115-00016-1,0,4380_7778208_1901107,4380_1699 -4380_78129,293,4380_103415,Laytown,64119-00017-1,0,4380_7778208_1901107,4380_1699 -4380_78129,290,4380_103416,Laytown,64123-00015-1,0,4380_7778208_1901107,4380_1699 -4380_78129,294,4380_103417,Laytown,64125-00018-1,0,4380_7778208_1901107,4380_1699 -4380_78129,295,4380_103418,Laytown,64121-00019-1,0,4380_7778208_1901107,4380_1699 -4380_78129,296,4380_103419,Laytown,64117-00021-1,0,4380_7778208_1901107,4380_1699 -4380_78129,297,4380_103421,Laytown,64126-00008-1,0,4380_7778208_1901107,4380_1699 -4380_78129,285,4380_103428,Laytown,64854-00009-1,0,4380_7778208_1901109,4380_1699 -4380_78129,286,4380_103429,Laytown,64846-00010-1,0,4380_7778208_1901109,4380_1699 -4380_78129,288,4380_103430,Laytown,64852-00011-1,0,4380_7778208_1901109,4380_1699 -4380_78129,287,4380_103431,Laytown,64848-00012-1,0,4380_7778208_1901109,4380_1699 -4380_78129,291,4380_103432,Laytown,63374-00013-1,0,4380_7778208_1901105,4380_1699 -4380_78129,289,4380_103433,Laytown,64850-00014-1,0,4380_7778208_1901109,4380_1699 -4380_78129,292,4380_103434,Laytown,64847-00016-1,0,4380_7778208_1901109,4380_1699 -4380_78129,293,4380_103435,Laytown,64853-00017-1,0,4380_7778208_1901109,4380_1699 -4380_78129,290,4380_103436,Laytown,64855-00015-1,0,4380_7778208_1901109,4380_1699 -4380_78129,294,4380_103437,Laytown,64849-00018-1,0,4380_7778208_1901109,4380_1699 -4380_78129,295,4380_103438,Laytown,64851-00019-1,0,4380_7778208_1901109,4380_1699 -4380_78129,296,4380_103439,Laytown,63375-00021-1,0,4380_7778208_1901105,4380_1699 -4380_78129,285,4380_103446,Laytown,63766-00009-1,0,4380_7778208_1901106,4380_1699 -4380_78129,286,4380_103447,Laytown,63770-00010-1,0,4380_7778208_1901106,4380_1699 -4380_78129,288,4380_103448,Laytown,63772-00011-1,0,4380_7778208_1901106,4380_1699 -4380_78129,287,4380_103449,Laytown,63768-00012-1,0,4380_7778208_1901106,4380_1699 -4380_78129,291,4380_103450,Laytown,64856-00013-1,0,4380_7778208_1901109,4380_1699 -4380_78129,289,4380_103451,Laytown,63774-00014-1,0,4380_7778208_1901106,4380_1699 -4380_78129,292,4380_103452,Laytown,63771-00016-1,0,4380_7778208_1901106,4380_1699 -4380_78129,293,4380_103453,Laytown,63773-00017-1,0,4380_7778208_1901106,4380_1699 -4380_78129,290,4380_103454,Laytown,63767-00015-1,0,4380_7778208_1901106,4380_1699 -4380_78129,294,4380_103455,Laytown,63769-00018-1,0,4380_7778208_1901106,4380_1699 -4380_78129,295,4380_103456,Laytown,63775-00019-1,0,4380_7778208_1901106,4380_1699 -4380_78129,296,4380_103457,Laytown,64857-00021-1,0,4380_7778208_1901109,4380_1699 -4380_78129,297,4380_103459,Laytown,64152-00008-1,0,4380_7778208_1901107,4380_1699 -4380_78129,285,4380_103466,Laytown,64506-00009-1,0,4380_7778208_1901108,4380_1699 -4380_78129,286,4380_103467,Laytown,64508-00010-1,0,4380_7778208_1901108,4380_1699 -4380_78129,288,4380_103468,Laytown,64514-00011-1,0,4380_7778208_1901108,4380_1699 -4380_78129,287,4380_103469,Laytown,64516-00012-1,0,4380_7778208_1901108,4380_1699 -4380_78129,291,4380_103470,Laytown,64510-00013-1,0,4380_7778208_1901108,4380_1699 -4380_78129,289,4380_103471,Laytown,64512-00014-1,0,4380_7778208_1901108,4380_1699 -4380_78129,292,4380_103472,Laytown,64509-00016-1,0,4380_7778208_1901108,4380_1699 -4380_78129,293,4380_103473,Laytown,64515-00017-1,0,4380_7778208_1901108,4380_1699 -4380_78129,290,4380_103474,Laytown,64507-00015-1,0,4380_7778208_1901108,4380_1699 -4380_78129,294,4380_103475,Laytown,64517-00018-1,0,4380_7778208_1901108,4380_1699 -4380_78129,295,4380_103476,Laytown,64513-00019-1,0,4380_7778208_1901108,4380_1699 -4380_78129,296,4380_103477,Laytown,64511-00021-1,0,4380_7778208_1901108,4380_1699 -4380_77954,285,4380_10348,Drop Off,7462-00009-1,1,4380_7778208_1110103,4380_208 -4380_78129,285,4380_103484,Laytown,64874-00009-1,0,4380_7778208_1901109,4380_1699 -4380_78129,286,4380_103485,Laytown,64868-00010-1,0,4380_7778208_1901109,4380_1699 -4380_78129,288,4380_103486,Laytown,64870-00011-1,0,4380_7778208_1901109,4380_1699 -4380_78129,287,4380_103487,Laytown,64876-00012-1,0,4380_7778208_1901109,4380_1699 -4380_78129,291,4380_103488,Laytown,63400-00013-1,0,4380_7778208_1901105,4380_1699 -4380_78129,289,4380_103489,Laytown,64872-00014-1,0,4380_7778208_1901109,4380_1699 -4380_77954,286,4380_10349,Drop Off,7473-00010-1,1,4380_7778208_1110103,4380_208 -4380_78129,292,4380_103490,Laytown,64869-00016-1,0,4380_7778208_1901109,4380_1699 -4380_78129,293,4380_103491,Laytown,64871-00017-1,0,4380_7778208_1901109,4380_1699 -4380_78129,290,4380_103492,Laytown,64875-00015-1,0,4380_7778208_1901109,4380_1699 -4380_78129,294,4380_103493,Laytown,64877-00018-1,0,4380_7778208_1901109,4380_1699 -4380_78129,295,4380_103494,Laytown,64873-00019-1,0,4380_7778208_1901109,4380_1699 -4380_78129,296,4380_103495,Laytown,63401-00021-1,0,4380_7778208_1901105,4380_1699 -4380_78129,291,4380_103497,Drogheda,63030-00013-1,1,4380_7778208_1901105,4380_1701 -4380_78129,296,4380_103498,Drogheda,63031-00021-1,1,4380_7778208_1901105,4380_1701 -4380_78113,296,4380_1035,Dublin via Airport,50148-00021-1,1,4380_7778208_1000908,4380_20 -4380_77954,288,4380_10350,Drop Off,7476-00011-1,1,4380_7778208_1110103,4380_208 -4380_78129,285,4380_103504,Drogheda,63416-00009-1,1,4380_7778208_1901106,4380_1701 -4380_78129,286,4380_103505,Drogheda,63418-00010-1,1,4380_7778208_1901106,4380_1701 -4380_78129,288,4380_103506,Drogheda,63424-00011-1,1,4380_7778208_1901106,4380_1701 -4380_78129,287,4380_103507,Drogheda,63422-00012-1,1,4380_7778208_1901106,4380_1701 -4380_78129,289,4380_103508,Drogheda,63420-00014-1,1,4380_7778208_1901106,4380_1701 -4380_78129,292,4380_103509,Drogheda,63419-00016-1,1,4380_7778208_1901106,4380_1701 -4380_77954,287,4380_10351,Drop Off,7483-00012-1,1,4380_7778208_1110103,4380_208 -4380_78129,293,4380_103510,Drogheda,63425-00017-1,1,4380_7778208_1901106,4380_1701 -4380_78129,290,4380_103511,Drogheda,63417-00015-1,1,4380_7778208_1901106,4380_1701 -4380_78129,294,4380_103512,Drogheda,63423-00018-1,1,4380_7778208_1901106,4380_1701 -4380_78129,295,4380_103513,Drogheda,63421-00019-1,1,4380_7778208_1901106,4380_1701 -4380_78129,285,4380_103519,Drogheda,64176-00009-1,1,4380_7778208_1901108,4380_1701 -4380_77954,289,4380_10352,Drop Off,7459-00014-1,1,4380_7778208_1110103,4380_208 -4380_78129,286,4380_103520,Drogheda,64184-00010-1,1,4380_7778208_1901108,4380_1701 -4380_78129,288,4380_103521,Drogheda,64180-00011-1,1,4380_7778208_1901108,4380_1701 -4380_78129,287,4380_103522,Drogheda,64182-00012-1,1,4380_7778208_1901108,4380_1701 -4380_78129,289,4380_103523,Drogheda,64178-00014-1,1,4380_7778208_1901108,4380_1701 -4380_78129,292,4380_103524,Drogheda,64185-00016-1,1,4380_7778208_1901108,4380_1701 -4380_78129,293,4380_103525,Drogheda,64181-00017-1,1,4380_7778208_1901108,4380_1701 -4380_78129,290,4380_103526,Drogheda,64177-00015-1,1,4380_7778208_1901108,4380_1701 -4380_78129,294,4380_103527,Drogheda,64183-00018-1,1,4380_7778208_1901108,4380_1701 -4380_78129,295,4380_103528,Drogheda,64179-00019-1,1,4380_7778208_1901108,4380_1701 -4380_77954,290,4380_10353,Drop Off,55594-00015-1,1,4380_7778208_1110103,4380_208 -4380_78129,291,4380_103530,Drogheda,63050-00013-1,1,4380_7778208_1901105,4380_1701 -4380_78129,296,4380_103531,Drogheda,63051-00021-1,1,4380_7778208_1901105,4380_1701 -4380_78129,285,4380_103537,Drogheda,63059-00009-1,1,4380_7778208_1901105,4380_1701 -4380_78129,286,4380_103538,Drogheda,63061-00010-1,1,4380_7778208_1901105,4380_1701 -4380_78129,288,4380_103539,Drogheda,63055-00011-1,1,4380_7778208_1901105,4380_1701 -4380_77954,291,4380_10354,Drop Off,7647-00013-1,1,4380_7778208_1110105,4380_211 -4380_78129,287,4380_103540,Drogheda,63057-00012-1,1,4380_7778208_1901105,4380_1701 -4380_78129,289,4380_103541,Drogheda,63053-00014-1,1,4380_7778208_1901105,4380_1701 -4380_78129,292,4380_103542,Drogheda,63062-00016-1,1,4380_7778208_1901105,4380_1701 -4380_78129,293,4380_103543,Drogheda,63056-00017-1,1,4380_7778208_1901105,4380_1701 -4380_78129,290,4380_103544,Drogheda,63060-00015-1,1,4380_7778208_1901105,4380_1701 -4380_78129,294,4380_103545,Drogheda,63058-00018-1,1,4380_7778208_1901105,4380_1701 -4380_78129,295,4380_103546,Drogheda,63054-00019-1,1,4380_7778208_1901105,4380_1701 -4380_77954,292,4380_10355,Drop Off,55591-00016-1,1,4380_7778208_1110103,4380_208 -4380_78129,285,4380_103552,Drogheda,63820-00009-1,1,4380_7778208_1901107,4380_1701 -4380_78129,286,4380_103553,Drogheda,63826-00010-1,1,4380_7778208_1901107,4380_1701 -4380_78129,288,4380_103554,Drogheda,63824-00011-1,1,4380_7778208_1901107,4380_1701 -4380_78129,287,4380_103555,Drogheda,63822-00012-1,1,4380_7778208_1901107,4380_1701 -4380_78129,289,4380_103556,Drogheda,63818-00014-1,1,4380_7778208_1901107,4380_1701 -4380_78129,292,4380_103557,Drogheda,63827-00016-1,1,4380_7778208_1901107,4380_1701 -4380_78129,293,4380_103558,Drogheda,63825-00017-1,1,4380_7778208_1901107,4380_1701 -4380_78129,290,4380_103559,Drogheda,63821-00015-1,1,4380_7778208_1901107,4380_1701 -4380_77954,293,4380_10356,Drop Off,55590-00017-1,1,4380_7778208_1110103,4380_208 -4380_78129,294,4380_103560,Drogheda,63823-00018-1,1,4380_7778208_1901107,4380_1701 -4380_78129,295,4380_103561,Drogheda,63819-00019-1,1,4380_7778208_1901107,4380_1701 -4380_78129,297,4380_103564,Drogheda,63453-00008-1,1,4380_7778208_1901106,4380_1701 -4380_78129,291,4380_103565,Drogheda,63076-00013-1,1,4380_7778208_1901105,4380_1702 -4380_78129,296,4380_103566,Drogheda,63077-00021-1,1,4380_7778208_1901105,4380_1702 -4380_77954,294,4380_10357,Drop Off,55593-00018-1,1,4380_7778208_1110103,4380_208 -4380_78129,285,4380_103572,Drogheda,64560-00009-1,1,4380_7778208_1901109,4380_1701 -4380_78129,286,4380_103573,Drogheda,64564-00010-1,1,4380_7778208_1901109,4380_1701 -4380_78129,288,4380_103574,Drogheda,64562-00011-1,1,4380_7778208_1901109,4380_1701 -4380_78129,287,4380_103575,Drogheda,64568-00012-1,1,4380_7778208_1901109,4380_1701 -4380_78129,289,4380_103576,Drogheda,64566-00014-1,1,4380_7778208_1901109,4380_1701 -4380_78129,292,4380_103577,Drogheda,64565-00016-1,1,4380_7778208_1901109,4380_1701 -4380_78129,293,4380_103578,Drogheda,64563-00017-1,1,4380_7778208_1901109,4380_1701 -4380_78129,290,4380_103579,Drogheda,64561-00015-1,1,4380_7778208_1901109,4380_1701 -4380_77954,295,4380_10358,Drop Off,55592-00019-1,1,4380_7778208_1110103,4380_208 -4380_78129,294,4380_103580,Drogheda,64569-00018-1,1,4380_7778208_1901109,4380_1701 -4380_78129,295,4380_103581,Drogheda,64567-00019-1,1,4380_7778208_1901109,4380_1701 -4380_78129,285,4380_103587,Drogheda,63474-00009-1,1,4380_7778208_1901106,4380_1701 -4380_78129,286,4380_103588,Drogheda,63470-00010-1,1,4380_7778208_1901106,4380_1701 -4380_78129,288,4380_103589,Drogheda,63472-00011-1,1,4380_7778208_1901106,4380_1701 -4380_77954,296,4380_10359,Drop Off,55646-00021-1,1,4380_7778208_1110105,4380_211 -4380_78129,287,4380_103590,Drogheda,63468-00012-1,1,4380_7778208_1901106,4380_1701 -4380_78129,289,4380_103591,Drogheda,63476-00014-1,1,4380_7778208_1901106,4380_1701 -4380_78129,292,4380_103592,Drogheda,63471-00016-1,1,4380_7778208_1901106,4380_1701 -4380_78129,293,4380_103593,Drogheda,63473-00017-1,1,4380_7778208_1901106,4380_1701 -4380_78129,290,4380_103594,Drogheda,63475-00015-1,1,4380_7778208_1901106,4380_1701 -4380_78129,294,4380_103595,Drogheda,63469-00018-1,1,4380_7778208_1901106,4380_1701 -4380_78129,295,4380_103596,Drogheda,63477-00019-1,1,4380_7778208_1901106,4380_1701 -4380_78129,297,4380_103598,Drogheda,63091-00008-1,1,4380_7778208_1901105,4380_1701 -4380_78129,285,4380_103605,Drogheda,64226-00009-1,1,4380_7778208_1901108,4380_1701 -4380_78129,286,4380_103606,Drogheda,64224-00010-1,1,4380_7778208_1901108,4380_1701 -4380_78129,288,4380_103607,Drogheda,64218-00011-1,1,4380_7778208_1901108,4380_1701 -4380_78129,287,4380_103608,Drogheda,64220-00012-1,1,4380_7778208_1901108,4380_1701 -4380_78129,291,4380_103609,Drogheda,64228-00013-1,1,4380_7778208_1901108,4380_1701 -4380_77954,297,4380_10361,Dublin,7591-00008-1,1,4380_7778208_1110104,4380_206 -4380_78129,289,4380_103610,Drogheda,64222-00014-1,1,4380_7778208_1901108,4380_1701 -4380_78129,292,4380_103611,Drogheda,64225-00016-1,1,4380_7778208_1901108,4380_1701 -4380_78129,293,4380_103612,Drogheda,64219-00017-1,1,4380_7778208_1901108,4380_1701 -4380_78129,290,4380_103613,Drogheda,64227-00015-1,1,4380_7778208_1901108,4380_1701 -4380_78129,294,4380_103614,Drogheda,64221-00018-1,1,4380_7778208_1901108,4380_1701 -4380_78129,295,4380_103615,Drogheda,64223-00019-1,1,4380_7778208_1901108,4380_1701 -4380_78129,296,4380_103616,Drogheda,64229-00021-1,1,4380_7778208_1901108,4380_1701 -4380_78129,285,4380_103623,Drogheda,63106-00009-1,1,4380_7778208_1901105,4380_1701 -4380_78129,286,4380_103624,Drogheda,63108-00010-1,1,4380_7778208_1901105,4380_1701 -4380_78129,288,4380_103625,Drogheda,63112-00011-1,1,4380_7778208_1901105,4380_1701 -4380_78129,287,4380_103626,Drogheda,63110-00012-1,1,4380_7778208_1901105,4380_1701 -4380_78129,291,4380_103627,Drogheda,63492-00013-1,1,4380_7778208_1901106,4380_1701 -4380_78129,289,4380_103628,Drogheda,63104-00014-1,1,4380_7778208_1901105,4380_1701 -4380_78129,292,4380_103629,Drogheda,63109-00016-1,1,4380_7778208_1901105,4380_1701 -4380_78129,293,4380_103630,Drogheda,63113-00017-1,1,4380_7778208_1901105,4380_1701 -4380_78129,290,4380_103631,Drogheda,63107-00015-1,1,4380_7778208_1901105,4380_1701 -4380_78129,294,4380_103632,Drogheda,63111-00018-1,1,4380_7778208_1901105,4380_1701 -4380_78129,295,4380_103633,Drogheda,63105-00019-1,1,4380_7778208_1901105,4380_1701 -4380_78129,296,4380_103634,Drogheda,63493-00021-1,1,4380_7778208_1901106,4380_1701 -4380_78129,297,4380_103636,Drogheda,63867-00008-1,1,4380_7778208_1901107,4380_1701 -4380_78129,285,4380_103643,Drogheda,63868-00009-1,1,4380_7778208_1901107,4380_1701 -4380_78129,286,4380_103644,Drogheda,63870-00010-1,1,4380_7778208_1901107,4380_1701 -4380_78129,288,4380_103645,Drogheda,63872-00011-1,1,4380_7778208_1901107,4380_1701 -4380_78129,287,4380_103646,Drogheda,63878-00012-1,1,4380_7778208_1901107,4380_1701 -4380_78129,291,4380_103647,Drogheda,63874-00013-1,1,4380_7778208_1901107,4380_1701 -4380_78129,289,4380_103648,Drogheda,63876-00014-1,1,4380_7778208_1901107,4380_1701 -4380_78129,292,4380_103649,Drogheda,63871-00016-1,1,4380_7778208_1901107,4380_1701 -4380_78129,293,4380_103650,Drogheda,63873-00017-1,1,4380_7778208_1901107,4380_1701 -4380_78129,290,4380_103651,Drogheda,63869-00015-1,1,4380_7778208_1901107,4380_1701 -4380_78129,294,4380_103652,Drogheda,63879-00018-1,1,4380_7778208_1901107,4380_1701 -4380_78129,295,4380_103653,Drogheda,63877-00019-1,1,4380_7778208_1901107,4380_1701 -4380_78129,296,4380_103654,Drogheda,63875-00021-1,1,4380_7778208_1901107,4380_1701 -4380_78129,285,4380_103661,Drogheda,64612-00009-1,1,4380_7778208_1901109,4380_1701 -4380_78129,286,4380_103662,Drogheda,64608-00010-1,1,4380_7778208_1901109,4380_1701 -4380_78129,288,4380_103663,Drogheda,64610-00011-1,1,4380_7778208_1901109,4380_1701 -4380_78129,287,4380_103664,Drogheda,64614-00012-1,1,4380_7778208_1901109,4380_1701 -4380_78129,291,4380_103665,Drogheda,63128-00013-1,1,4380_7778208_1901105,4380_1701 -4380_78129,289,4380_103666,Drogheda,64606-00014-1,1,4380_7778208_1901109,4380_1701 -4380_78129,292,4380_103667,Drogheda,64609-00016-1,1,4380_7778208_1901109,4380_1701 -4380_78129,293,4380_103668,Drogheda,64611-00017-1,1,4380_7778208_1901109,4380_1701 -4380_78129,290,4380_103669,Drogheda,64613-00015-1,1,4380_7778208_1901109,4380_1701 -4380_78129,294,4380_103670,Drogheda,64615-00018-1,1,4380_7778208_1901109,4380_1701 -4380_78129,295,4380_103671,Drogheda,64607-00019-1,1,4380_7778208_1901109,4380_1701 -4380_78129,296,4380_103672,Drogheda,63129-00021-1,1,4380_7778208_1901105,4380_1701 -4380_78129,297,4380_103674,Drogheda,63519-00008-1,1,4380_7778208_1901106,4380_1701 -4380_78129,285,4380_103681,Drogheda,63526-00009-1,1,4380_7778208_1901106,4380_1701 -4380_78129,286,4380_103682,Drogheda,63528-00010-1,1,4380_7778208_1901106,4380_1701 -4380_78129,288,4380_103683,Drogheda,63522-00011-1,1,4380_7778208_1901106,4380_1701 -4380_78129,287,4380_103684,Drogheda,63520-00012-1,1,4380_7778208_1901106,4380_1701 -4380_78129,291,4380_103685,Drogheda,64616-00013-1,1,4380_7778208_1901109,4380_1701 -4380_78129,289,4380_103686,Drogheda,63524-00014-1,1,4380_7778208_1901106,4380_1701 -4380_78129,292,4380_103687,Drogheda,63529-00016-1,1,4380_7778208_1901106,4380_1701 -4380_78129,293,4380_103688,Drogheda,63523-00017-1,1,4380_7778208_1901106,4380_1701 -4380_78129,290,4380_103689,Drogheda,63527-00015-1,1,4380_7778208_1901106,4380_1701 -4380_77954,285,4380_10369,Dublin,7281-00009-1,1,4380_7778208_1110101,4380_206 -4380_78129,294,4380_103690,Drogheda,63521-00018-1,1,4380_7778208_1901106,4380_1701 -4380_78129,295,4380_103691,Drogheda,63525-00019-1,1,4380_7778208_1901106,4380_1701 -4380_78129,296,4380_103692,Drogheda,64617-00021-1,1,4380_7778208_1901109,4380_1701 -4380_77954,286,4380_10370,Dublin,7305-00010-1,1,4380_7778208_1110101,4380_206 -4380_78129,285,4380_103700,Drogheda,64270-00009-1,1,4380_7778208_1901108,4380_1701 -4380_78129,286,4380_103701,Drogheda,64268-00010-1,1,4380_7778208_1901108,4380_1701 -4380_78129,297,4380_103702,Drogheda,63153-00008-1,1,4380_7778208_1901105,4380_1702 -4380_78129,288,4380_103703,Drogheda,64276-00011-1,1,4380_7778208_1901108,4380_1701 -4380_78129,287,4380_103704,Drogheda,64266-00012-1,1,4380_7778208_1901108,4380_1701 -4380_78129,291,4380_103705,Drogheda,64274-00013-1,1,4380_7778208_1901108,4380_1701 -4380_78129,289,4380_103706,Drogheda,64272-00014-1,1,4380_7778208_1901108,4380_1701 -4380_78129,292,4380_103707,Drogheda,64269-00016-1,1,4380_7778208_1901108,4380_1701 -4380_78129,293,4380_103708,Drogheda,64277-00017-1,1,4380_7778208_1901108,4380_1701 -4380_78129,290,4380_103709,Drogheda,64271-00015-1,1,4380_7778208_1901108,4380_1701 -4380_77954,297,4380_10371,Dublin,7449-00008-1,1,4380_7778208_1110102,4380_209 -4380_78129,294,4380_103710,Drogheda,64267-00018-1,1,4380_7778208_1901108,4380_1701 -4380_78129,295,4380_103711,Drogheda,64273-00019-1,1,4380_7778208_1901108,4380_1701 -4380_78129,296,4380_103712,Drogheda,64275-00021-1,1,4380_7778208_1901108,4380_1701 -4380_77954,288,4380_10372,Dublin,7321-00011-1,1,4380_7778208_1110101,4380_206 -4380_78129,285,4380_103720,Drogheda,63158-00009-1,1,4380_7778208_1901105,4380_1701 -4380_78129,286,4380_103721,Drogheda,63164-00010-1,1,4380_7778208_1901105,4380_1701 -4380_78129,297,4380_103722,Drogheda,64279-00008-1,1,4380_7778208_1901108,4380_1702 -4380_78129,288,4380_103723,Drogheda,63160-00011-1,1,4380_7778208_1901105,4380_1701 -4380_78129,287,4380_103724,Drogheda,63156-00012-1,1,4380_7778208_1901105,4380_1701 -4380_78129,291,4380_103725,Drogheda,63544-00013-1,1,4380_7778208_1901106,4380_1701 -4380_78129,289,4380_103726,Drogheda,63162-00014-1,1,4380_7778208_1901105,4380_1701 -4380_78129,292,4380_103727,Drogheda,63165-00016-1,1,4380_7778208_1901105,4380_1701 -4380_78129,293,4380_103728,Drogheda,63161-00017-1,1,4380_7778208_1901105,4380_1701 -4380_78129,290,4380_103729,Drogheda,63159-00015-1,1,4380_7778208_1901105,4380_1701 -4380_77954,287,4380_10373,Dublin,7337-00012-1,1,4380_7778208_1110101,4380_206 -4380_78129,294,4380_103730,Drogheda,63157-00018-1,1,4380_7778208_1901105,4380_1701 -4380_78129,295,4380_103731,Drogheda,63163-00019-1,1,4380_7778208_1901105,4380_1701 -4380_78129,296,4380_103732,Drogheda,63545-00021-1,1,4380_7778208_1901106,4380_1701 -4380_77954,289,4380_10374,Dublin,7265-00014-1,1,4380_7778208_1110101,4380_206 -4380_78129,285,4380_103740,Drogheda,63921-00009-1,1,4380_7778208_1901107,4380_1701 -4380_78129,286,4380_103741,Drogheda,63923-00010-1,1,4380_7778208_1901107,4380_1701 -4380_78129,297,4380_103742,Drogheda,63925-00008-1,1,4380_7778208_1901107,4380_1702 -4380_78129,288,4380_103743,Drogheda,63930-00011-1,1,4380_7778208_1901107,4380_1701 -4380_78129,287,4380_103744,Drogheda,63919-00012-1,1,4380_7778208_1901107,4380_1701 -4380_78129,291,4380_103745,Drogheda,63928-00013-1,1,4380_7778208_1901107,4380_1701 -4380_78129,289,4380_103746,Drogheda,63926-00014-1,1,4380_7778208_1901107,4380_1701 -4380_78129,292,4380_103747,Drogheda,63924-00016-1,1,4380_7778208_1901107,4380_1701 -4380_78129,293,4380_103748,Drogheda,63931-00017-1,1,4380_7778208_1901107,4380_1701 -4380_78129,290,4380_103749,Drogheda,63922-00015-1,1,4380_7778208_1901107,4380_1701 -4380_77954,290,4380_10375,Dublin,55517-00015-1,1,4380_7778208_1110101,4380_206 -4380_78129,294,4380_103750,Drogheda,63920-00018-1,1,4380_7778208_1901107,4380_1701 -4380_78129,295,4380_103751,Drogheda,63927-00019-1,1,4380_7778208_1901107,4380_1701 -4380_78129,296,4380_103752,Drogheda,63929-00021-1,1,4380_7778208_1901107,4380_1701 -4380_77954,291,4380_10376,Dublin,7353-00013-1,1,4380_7778208_1110101,4380_210 -4380_78129,285,4380_103760,Drogheda,64657-00009-1,1,4380_7778208_1901109,4380_1701 -4380_78129,286,4380_103761,Drogheda,64665-00010-1,1,4380_7778208_1901109,4380_1701 -4380_78129,297,4380_103762,Drogheda,63569-00008-1,1,4380_7778208_1901106,4380_1702 -4380_78129,288,4380_103763,Drogheda,64663-00011-1,1,4380_7778208_1901109,4380_1701 -4380_78129,287,4380_103764,Drogheda,64661-00012-1,1,4380_7778208_1901109,4380_1701 -4380_78129,291,4380_103765,Drogheda,63180-00013-1,1,4380_7778208_1901105,4380_1701 -4380_78129,289,4380_103766,Drogheda,64659-00014-1,1,4380_7778208_1901109,4380_1701 -4380_78129,292,4380_103767,Drogheda,64666-00016-1,1,4380_7778208_1901109,4380_1701 -4380_78129,293,4380_103768,Drogheda,64664-00017-1,1,4380_7778208_1901109,4380_1701 -4380_78129,290,4380_103769,Drogheda,64658-00015-1,1,4380_7778208_1901109,4380_1701 -4380_77954,292,4380_10377,Dublin,55520-00016-1,1,4380_7778208_1110101,4380_206 -4380_78129,294,4380_103770,Drogheda,64662-00018-1,1,4380_7778208_1901109,4380_1701 -4380_78129,295,4380_103771,Drogheda,64660-00019-1,1,4380_7778208_1901109,4380_1701 -4380_78129,296,4380_103772,Drogheda,63181-00021-1,1,4380_7778208_1901105,4380_1701 -4380_77954,293,4380_10378,Dublin,55515-00017-1,1,4380_7778208_1110101,4380_206 -4380_78129,285,4380_103780,Drogheda,63572-00009-1,1,4380_7778208_1901106,4380_1701 -4380_78129,286,4380_103781,Drogheda,63578-00010-1,1,4380_7778208_1901106,4380_1701 -4380_78129,297,4380_103782,Drogheda,64667-00008-1,1,4380_7778208_1901109,4380_1702 -4380_78129,288,4380_103783,Drogheda,63580-00011-1,1,4380_7778208_1901106,4380_1701 -4380_78129,287,4380_103784,Drogheda,63576-00012-1,1,4380_7778208_1901106,4380_1701 -4380_78129,291,4380_103785,Drogheda,64668-00013-1,1,4380_7778208_1901109,4380_1701 -4380_78129,289,4380_103786,Drogheda,63574-00014-1,1,4380_7778208_1901106,4380_1701 -4380_78129,292,4380_103787,Drogheda,63579-00016-1,1,4380_7778208_1901106,4380_1701 -4380_78129,293,4380_103788,Drogheda,63581-00017-1,1,4380_7778208_1901106,4380_1701 -4380_78129,290,4380_103789,Drogheda,63573-00015-1,1,4380_7778208_1901106,4380_1701 -4380_77954,294,4380_10379,Dublin,55519-00018-1,1,4380_7778208_1110101,4380_206 -4380_78129,294,4380_103790,Drogheda,63577-00018-1,1,4380_7778208_1901106,4380_1701 -4380_78129,295,4380_103791,Drogheda,63575-00019-1,1,4380_7778208_1901106,4380_1701 -4380_78129,296,4380_103792,Drogheda,64669-00021-1,1,4380_7778208_1901109,4380_1701 -4380_77954,295,4380_10380,Dublin,55518-00019-1,1,4380_7778208_1110101,4380_206 -4380_78129,285,4380_103800,Drogheda,64320-00009-1,1,4380_7778208_1901108,4380_1701 -4380_78129,286,4380_103801,Drogheda,64322-00010-1,1,4380_7778208_1901108,4380_1701 -4380_78129,297,4380_103802,Drogheda,63205-00008-1,1,4380_7778208_1901105,4380_1702 -4380_78129,288,4380_103803,Drogheda,64327-00011-1,1,4380_7778208_1901108,4380_1701 -4380_78129,287,4380_103804,Drogheda,64325-00012-1,1,4380_7778208_1901108,4380_1701 -4380_78129,291,4380_103805,Drogheda,64318-00013-1,1,4380_7778208_1901108,4380_1701 -4380_78129,289,4380_103806,Drogheda,64329-00014-1,1,4380_7778208_1901108,4380_1701 -4380_78129,292,4380_103807,Drogheda,64323-00016-1,1,4380_7778208_1901108,4380_1701 -4380_78129,293,4380_103808,Drogheda,64328-00017-1,1,4380_7778208_1901108,4380_1701 -4380_78129,290,4380_103809,Drogheda,64321-00015-1,1,4380_7778208_1901108,4380_1701 -4380_77954,296,4380_10381,Dublin,55516-00021-1,1,4380_7778208_1110101,4380_210 -4380_78129,294,4380_103810,Drogheda,64326-00018-1,1,4380_7778208_1901108,4380_1701 -4380_78129,295,4380_103811,Drogheda,64330-00019-1,1,4380_7778208_1901108,4380_1701 -4380_78129,296,4380_103812,Drogheda,64319-00021-1,1,4380_7778208_1901108,4380_1701 -4380_78129,285,4380_103820,Drogheda,63210-00009-1,1,4380_7778208_1901105,4380_1701 -4380_78129,286,4380_103821,Drogheda,63208-00010-1,1,4380_7778208_1901105,4380_1701 -4380_78129,297,4380_103822,Drogheda,64331-00008-1,1,4380_7778208_1901108,4380_1702 -4380_78129,288,4380_103823,Drogheda,63214-00011-1,1,4380_7778208_1901105,4380_1701 -4380_78129,287,4380_103824,Drogheda,63216-00012-1,1,4380_7778208_1901105,4380_1701 -4380_78129,291,4380_103825,Drogheda,63596-00013-1,1,4380_7778208_1901106,4380_1701 -4380_78129,289,4380_103826,Drogheda,63212-00014-1,1,4380_7778208_1901105,4380_1701 -4380_78129,292,4380_103827,Drogheda,63209-00016-1,1,4380_7778208_1901105,4380_1701 -4380_78129,293,4380_103828,Drogheda,63215-00017-1,1,4380_7778208_1901105,4380_1701 -4380_78129,290,4380_103829,Drogheda,63211-00015-1,1,4380_7778208_1901105,4380_1701 -4380_78129,294,4380_103830,Drogheda,63217-00018-1,1,4380_7778208_1901105,4380_1701 -4380_78129,295,4380_103831,Drogheda,63213-00019-1,1,4380_7778208_1901105,4380_1701 -4380_78129,296,4380_103832,Drogheda,63597-00021-1,1,4380_7778208_1901106,4380_1701 -4380_78129,285,4380_103840,Drogheda,63977-00009-1,1,4380_7778208_1901107,4380_1701 -4380_78129,286,4380_103841,Drogheda,63981-00010-1,1,4380_7778208_1901107,4380_1701 -4380_78129,297,4380_103842,Drogheda,63983-00008-1,1,4380_7778208_1901107,4380_1702 -4380_78129,288,4380_103843,Drogheda,63975-00011-1,1,4380_7778208_1901107,4380_1701 -4380_78129,287,4380_103844,Drogheda,63971-00012-1,1,4380_7778208_1901107,4380_1701 -4380_78129,291,4380_103845,Drogheda,63979-00013-1,1,4380_7778208_1901107,4380_1701 -4380_78129,289,4380_103846,Drogheda,63973-00014-1,1,4380_7778208_1901107,4380_1701 -4380_78129,292,4380_103847,Drogheda,63982-00016-1,1,4380_7778208_1901107,4380_1701 -4380_78129,293,4380_103848,Drogheda,63976-00017-1,1,4380_7778208_1901107,4380_1701 -4380_78129,290,4380_103849,Drogheda,63978-00015-1,1,4380_7778208_1901107,4380_1701 -4380_78129,294,4380_103850,Drogheda,63972-00018-1,1,4380_7778208_1901107,4380_1701 -4380_78129,295,4380_103851,Drogheda,63974-00019-1,1,4380_7778208_1901107,4380_1701 -4380_78129,296,4380_103852,Drogheda,63980-00021-1,1,4380_7778208_1901107,4380_1701 -4380_78129,285,4380_103860,Drogheda,64710-00009-1,1,4380_7778208_1901109,4380_1701 -4380_78129,286,4380_103861,Drogheda,64708-00010-1,1,4380_7778208_1901109,4380_1701 -4380_78129,297,4380_103862,Drogheda,63621-00008-1,1,4380_7778208_1901106,4380_1702 -4380_78129,288,4380_103863,Drogheda,64716-00011-1,1,4380_7778208_1901109,4380_1701 -4380_78129,287,4380_103864,Drogheda,64714-00012-1,1,4380_7778208_1901109,4380_1701 -4380_78129,291,4380_103865,Drogheda,63232-00013-1,1,4380_7778208_1901105,4380_1701 -4380_78129,289,4380_103866,Drogheda,64712-00014-1,1,4380_7778208_1901109,4380_1701 -4380_78129,292,4380_103867,Drogheda,64709-00016-1,1,4380_7778208_1901109,4380_1701 -4380_78129,293,4380_103868,Drogheda,64717-00017-1,1,4380_7778208_1901109,4380_1701 -4380_78129,290,4380_103869,Drogheda,64711-00015-1,1,4380_7778208_1901109,4380_1701 -4380_78129,294,4380_103870,Drogheda,64715-00018-1,1,4380_7778208_1901109,4380_1701 -4380_78129,295,4380_103871,Drogheda,64713-00019-1,1,4380_7778208_1901109,4380_1701 -4380_78129,296,4380_103872,Drogheda,63233-00021-1,1,4380_7778208_1901105,4380_1701 -4380_78129,285,4380_103880,Drogheda,63626-00009-1,1,4380_7778208_1901106,4380_1701 -4380_78129,286,4380_103881,Drogheda,63632-00010-1,1,4380_7778208_1901106,4380_1701 -4380_78129,297,4380_103882,Drogheda,64721-00008-1,1,4380_7778208_1901109,4380_1702 -4380_78129,288,4380_103883,Drogheda,63624-00011-1,1,4380_7778208_1901106,4380_1701 -4380_78129,287,4380_103884,Drogheda,63630-00012-1,1,4380_7778208_1901106,4380_1701 -4380_78129,291,4380_103885,Drogheda,64719-00013-1,1,4380_7778208_1901109,4380_1701 -4380_78129,289,4380_103886,Drogheda,63628-00014-1,1,4380_7778208_1901106,4380_1701 -4380_78129,292,4380_103887,Drogheda,63633-00016-1,1,4380_7778208_1901106,4380_1701 -4380_78129,293,4380_103888,Drogheda,63625-00017-1,1,4380_7778208_1901106,4380_1701 -4380_78129,290,4380_103889,Drogheda,63627-00015-1,1,4380_7778208_1901106,4380_1701 -4380_77954,285,4380_10389,Dublin,7533-00009-1,1,4380_7778208_1110104,4380_206 -4380_78129,294,4380_103890,Drogheda,63631-00018-1,1,4380_7778208_1901106,4380_1701 -4380_78129,295,4380_103891,Drogheda,63629-00019-1,1,4380_7778208_1901106,4380_1701 -4380_78129,296,4380_103892,Drogheda,64720-00021-1,1,4380_7778208_1901109,4380_1701 -4380_77954,286,4380_10390,Dublin,7545-00010-1,1,4380_7778208_1110104,4380_206 -4380_78129,285,4380_103900,Drogheda,64375-00009-1,1,4380_7778208_1901108,4380_1701 -4380_78129,286,4380_103901,Drogheda,64381-00010-1,1,4380_7778208_1901108,4380_1701 -4380_78129,297,4380_103902,Drogheda,63257-00008-1,1,4380_7778208_1901105,4380_1702 -4380_78129,288,4380_103903,Drogheda,64371-00011-1,1,4380_7778208_1901108,4380_1701 -4380_78129,287,4380_103904,Drogheda,64373-00012-1,1,4380_7778208_1901108,4380_1701 -4380_78129,291,4380_103905,Drogheda,64379-00013-1,1,4380_7778208_1901108,4380_1701 -4380_78129,289,4380_103906,Drogheda,64377-00014-1,1,4380_7778208_1901108,4380_1701 -4380_78129,292,4380_103907,Drogheda,64382-00016-1,1,4380_7778208_1901108,4380_1701 -4380_78129,293,4380_103908,Drogheda,64372-00017-1,1,4380_7778208_1901108,4380_1701 -4380_78129,290,4380_103909,Drogheda,64376-00015-1,1,4380_7778208_1901108,4380_1701 -4380_77954,297,4380_10391,Dublin,7658-00008-1,1,4380_7778208_1110105,4380_209 -4380_78129,294,4380_103910,Drogheda,64374-00018-1,1,4380_7778208_1901108,4380_1701 -4380_78129,295,4380_103911,Drogheda,64378-00019-1,1,4380_7778208_1901108,4380_1701 -4380_78129,296,4380_103912,Drogheda,64380-00021-1,1,4380_7778208_1901108,4380_1701 -4380_77954,288,4380_10392,Dublin,7557-00011-1,1,4380_7778208_1110104,4380_206 -4380_78129,285,4380_103920,Drogheda,63266-00009-1,1,4380_7778208_1901105,4380_1701 -4380_78129,286,4380_103921,Drogheda,63260-00010-1,1,4380_7778208_1901105,4380_1701 -4380_78129,297,4380_103922,Drogheda,64383-00008-1,1,4380_7778208_1901108,4380_1702 -4380_78129,288,4380_103923,Drogheda,63264-00011-1,1,4380_7778208_1901105,4380_1701 -4380_78129,287,4380_103924,Drogheda,63268-00012-1,1,4380_7778208_1901105,4380_1701 -4380_78129,291,4380_103925,Drogheda,63648-00013-1,1,4380_7778208_1901106,4380_1701 -4380_78129,289,4380_103926,Drogheda,63262-00014-1,1,4380_7778208_1901105,4380_1701 -4380_78129,292,4380_103927,Drogheda,63261-00016-1,1,4380_7778208_1901105,4380_1701 -4380_78129,293,4380_103928,Drogheda,63265-00017-1,1,4380_7778208_1901105,4380_1701 -4380_78129,290,4380_103929,Drogheda,63267-00015-1,1,4380_7778208_1901105,4380_1701 -4380_77954,287,4380_10393,Dublin,7569-00012-1,1,4380_7778208_1110104,4380_206 -4380_78129,294,4380_103930,Drogheda,63269-00018-1,1,4380_7778208_1901105,4380_1701 -4380_78129,295,4380_103931,Drogheda,63263-00019-1,1,4380_7778208_1901105,4380_1701 -4380_78129,296,4380_103932,Drogheda,63649-00021-1,1,4380_7778208_1901106,4380_1701 -4380_77954,289,4380_10394,Dublin,7521-00014-1,1,4380_7778208_1110104,4380_206 -4380_78129,285,4380_103940,Drogheda,64032-00009-1,1,4380_7778208_1901107,4380_1701 -4380_78129,286,4380_103941,Drogheda,64025-00010-1,1,4380_7778208_1901107,4380_1701 -4380_78129,297,4380_103942,Drogheda,64027-00008-1,1,4380_7778208_1901107,4380_1702 -4380_78129,288,4380_103943,Drogheda,64034-00011-1,1,4380_7778208_1901107,4380_1701 -4380_78129,287,4380_103944,Drogheda,64028-00012-1,1,4380_7778208_1901107,4380_1701 -4380_78129,291,4380_103945,Drogheda,64030-00013-1,1,4380_7778208_1901107,4380_1701 -4380_78129,289,4380_103946,Drogheda,64023-00014-1,1,4380_7778208_1901107,4380_1701 -4380_78129,292,4380_103947,Drogheda,64026-00016-1,1,4380_7778208_1901107,4380_1701 -4380_78129,293,4380_103948,Drogheda,64035-00017-1,1,4380_7778208_1901107,4380_1701 -4380_78129,290,4380_103949,Drogheda,64033-00015-1,1,4380_7778208_1901107,4380_1701 -4380_77954,290,4380_10395,Dublin,55618-00015-1,1,4380_7778208_1110104,4380_206 -4380_78129,294,4380_103950,Drogheda,64029-00018-1,1,4380_7778208_1901107,4380_1701 -4380_78129,295,4380_103951,Drogheda,64024-00019-1,1,4380_7778208_1901107,4380_1701 -4380_78129,296,4380_103952,Drogheda,64031-00021-1,1,4380_7778208_1901107,4380_1701 -4380_77954,291,4380_10396,Dublin,7436-00013-1,1,4380_7778208_1110102,4380_210 -4380_78129,285,4380_103960,Drogheda,64765-00009-1,1,4380_7778208_1901109,4380_1701 -4380_78129,286,4380_103961,Drogheda,64767-00010-1,1,4380_7778208_1901109,4380_1701 -4380_78129,297,4380_103962,Drogheda,63673-00008-1,1,4380_7778208_1901106,4380_1702 -4380_78129,288,4380_103963,Drogheda,64769-00011-1,1,4380_7778208_1901109,4380_1701 -4380_78129,287,4380_103964,Drogheda,64763-00012-1,1,4380_7778208_1901109,4380_1701 -4380_78129,291,4380_103965,Drogheda,63284-00013-1,1,4380_7778208_1901105,4380_1701 -4380_78129,289,4380_103966,Drogheda,64760-00014-1,1,4380_7778208_1901109,4380_1701 -4380_78129,292,4380_103967,Drogheda,64768-00016-1,1,4380_7778208_1901109,4380_1701 -4380_78129,293,4380_103968,Drogheda,64770-00017-1,1,4380_7778208_1901109,4380_1701 -4380_78129,290,4380_103969,Drogheda,64766-00015-1,1,4380_7778208_1901109,4380_1701 -4380_77954,292,4380_10397,Dublin,55621-00016-1,1,4380_7778208_1110104,4380_206 -4380_78129,294,4380_103970,Drogheda,64764-00018-1,1,4380_7778208_1901109,4380_1701 -4380_78129,295,4380_103971,Drogheda,64761-00019-1,1,4380_7778208_1901109,4380_1701 -4380_78129,296,4380_103972,Drogheda,63285-00021-1,1,4380_7778208_1901105,4380_1701 -4380_77954,293,4380_10398,Dublin,55617-00017-1,1,4380_7778208_1110104,4380_206 -4380_78129,285,4380_103980,Drogheda,63680-00009-1,1,4380_7778208_1901106,4380_1701 -4380_78129,286,4380_103981,Drogheda,63684-00010-1,1,4380_7778208_1901106,4380_1701 -4380_78129,297,4380_103982,Drogheda,64771-00008-1,1,4380_7778208_1901109,4380_1702 -4380_78129,288,4380_103983,Drogheda,63682-00011-1,1,4380_7778208_1901106,4380_1701 -4380_78129,287,4380_103984,Drogheda,63678-00012-1,1,4380_7778208_1901106,4380_1701 -4380_78129,291,4380_103985,Drogheda,64772-00013-1,1,4380_7778208_1901109,4380_1701 -4380_78129,289,4380_103986,Drogheda,63676-00014-1,1,4380_7778208_1901106,4380_1701 -4380_78129,292,4380_103987,Drogheda,63685-00016-1,1,4380_7778208_1901106,4380_1701 -4380_78129,293,4380_103988,Drogheda,63683-00017-1,1,4380_7778208_1901106,4380_1701 -4380_78129,290,4380_103989,Drogheda,63681-00015-1,1,4380_7778208_1901106,4380_1701 -4380_77954,294,4380_10399,Dublin,55619-00018-1,1,4380_7778208_1110104,4380_206 -4380_78129,294,4380_103990,Drogheda,63679-00018-1,1,4380_7778208_1901106,4380_1701 -4380_78129,295,4380_103991,Drogheda,63677-00019-1,1,4380_7778208_1901106,4380_1701 -4380_78129,296,4380_103992,Drogheda,64773-00021-1,1,4380_7778208_1901109,4380_1701 -4380_77946,296,4380_104,Dundalk,50274-00021-1,0,4380_7778208_1000912,4380_5 -4380_77954,295,4380_10400,Dublin,55620-00019-1,1,4380_7778208_1110104,4380_206 -4380_78129,285,4380_104000,Drogheda,64426-00009-1,1,4380_7778208_1901108,4380_1701 -4380_78129,286,4380_104001,Drogheda,64432-00010-1,1,4380_7778208_1901108,4380_1701 -4380_78129,297,4380_104002,Drogheda,63309-00008-1,1,4380_7778208_1901105,4380_1702 -4380_78129,288,4380_104003,Drogheda,64428-00011-1,1,4380_7778208_1901108,4380_1701 -4380_78129,287,4380_104004,Drogheda,64422-00012-1,1,4380_7778208_1901108,4380_1701 -4380_78129,291,4380_104005,Drogheda,64430-00013-1,1,4380_7778208_1901108,4380_1701 -4380_78129,289,4380_104006,Drogheda,64424-00014-1,1,4380_7778208_1901108,4380_1701 -4380_78129,292,4380_104007,Drogheda,64433-00016-1,1,4380_7778208_1901108,4380_1701 -4380_78129,293,4380_104008,Drogheda,64429-00017-1,1,4380_7778208_1901108,4380_1701 -4380_78129,290,4380_104009,Drogheda,64427-00015-1,1,4380_7778208_1901108,4380_1701 -4380_77954,296,4380_10401,Dublin,55558-00021-1,1,4380_7778208_1110102,4380_210 -4380_78129,294,4380_104010,Drogheda,64423-00018-1,1,4380_7778208_1901108,4380_1701 -4380_78129,295,4380_104011,Drogheda,64425-00019-1,1,4380_7778208_1901108,4380_1701 -4380_78129,296,4380_104012,Drogheda,64431-00021-1,1,4380_7778208_1901108,4380_1701 -4380_78129,285,4380_104019,Drogheda,63320-00009-1,1,4380_7778208_1901105,4380_1701 -4380_78129,286,4380_104020,Drogheda,63318-00010-1,1,4380_7778208_1901105,4380_1701 -4380_78129,288,4380_104021,Drogheda,63312-00011-1,1,4380_7778208_1901105,4380_1701 -4380_78129,287,4380_104022,Drogheda,63316-00012-1,1,4380_7778208_1901105,4380_1701 -4380_78129,291,4380_104023,Drogheda,63700-00013-1,1,4380_7778208_1901106,4380_1701 -4380_78129,289,4380_104024,Drogheda,63314-00014-1,1,4380_7778208_1901105,4380_1701 -4380_78129,292,4380_104025,Drogheda,63319-00016-1,1,4380_7778208_1901105,4380_1701 -4380_78129,293,4380_104026,Drogheda,63313-00017-1,1,4380_7778208_1901105,4380_1701 -4380_78129,290,4380_104027,Drogheda,63321-00015-1,1,4380_7778208_1901105,4380_1701 -4380_78129,294,4380_104028,Drogheda,63317-00018-1,1,4380_7778208_1901105,4380_1701 -4380_78129,295,4380_104029,Drogheda,63315-00019-1,1,4380_7778208_1901105,4380_1701 -4380_78129,296,4380_104030,Drogheda,63701-00021-1,1,4380_7778208_1901106,4380_1701 -4380_78129,297,4380_104032,Drogheda,64075-00008-1,1,4380_7778208_1901107,4380_1701 -4380_78129,285,4380_104039,Drogheda,64080-00009-1,1,4380_7778208_1901107,4380_1701 -4380_78129,286,4380_104040,Drogheda,64076-00010-1,1,4380_7778208_1901107,4380_1701 -4380_78129,288,4380_104041,Drogheda,64086-00011-1,1,4380_7778208_1901107,4380_1701 -4380_78129,287,4380_104042,Drogheda,64084-00012-1,1,4380_7778208_1901107,4380_1701 -4380_78129,291,4380_104043,Drogheda,64082-00013-1,1,4380_7778208_1901107,4380_1701 -4380_78129,289,4380_104044,Drogheda,64078-00014-1,1,4380_7778208_1901107,4380_1701 -4380_78129,292,4380_104045,Drogheda,64077-00016-1,1,4380_7778208_1901107,4380_1701 -4380_78129,293,4380_104046,Drogheda,64087-00017-1,1,4380_7778208_1901107,4380_1701 -4380_78129,290,4380_104047,Drogheda,64081-00015-1,1,4380_7778208_1901107,4380_1701 -4380_78129,294,4380_104048,Drogheda,64085-00018-1,1,4380_7778208_1901107,4380_1701 -4380_78129,295,4380_104049,Drogheda,64079-00019-1,1,4380_7778208_1901107,4380_1701 -4380_78129,296,4380_104050,Drogheda,64083-00021-1,1,4380_7778208_1901107,4380_1701 -4380_78129,285,4380_104057,Drogheda,64816-00009-1,1,4380_7778208_1901109,4380_1701 -4380_78129,286,4380_104058,Drogheda,64814-00010-1,1,4380_7778208_1901109,4380_1701 -4380_78129,288,4380_104059,Drogheda,64812-00011-1,1,4380_7778208_1901109,4380_1701 -4380_78129,287,4380_104060,Drogheda,64818-00012-1,1,4380_7778208_1901109,4380_1701 -4380_78129,291,4380_104061,Drogheda,63336-00013-1,1,4380_7778208_1901105,4380_1701 -4380_78129,289,4380_104062,Drogheda,64810-00014-1,1,4380_7778208_1901109,4380_1701 -4380_78129,292,4380_104063,Drogheda,64815-00016-1,1,4380_7778208_1901109,4380_1701 -4380_78129,293,4380_104064,Drogheda,64813-00017-1,1,4380_7778208_1901109,4380_1701 -4380_78129,290,4380_104065,Drogheda,64817-00015-1,1,4380_7778208_1901109,4380_1701 -4380_78129,294,4380_104066,Drogheda,64819-00018-1,1,4380_7778208_1901109,4380_1701 -4380_78129,295,4380_104067,Drogheda,64811-00019-1,1,4380_7778208_1901109,4380_1701 -4380_78129,296,4380_104068,Drogheda,63337-00021-1,1,4380_7778208_1901105,4380_1701 -4380_78129,297,4380_104070,Drogheda,63727-00008-1,1,4380_7778208_1901106,4380_1701 -4380_78129,285,4380_104077,Drogheda,63728-00009-1,1,4380_7778208_1901106,4380_1701 -4380_78129,286,4380_104078,Drogheda,63734-00010-1,1,4380_7778208_1901106,4380_1701 -4380_78129,288,4380_104079,Drogheda,63736-00011-1,1,4380_7778208_1901106,4380_1701 -4380_78129,287,4380_104080,Drogheda,63732-00012-1,1,4380_7778208_1901106,4380_1701 -4380_78129,291,4380_104081,Drogheda,64820-00013-1,1,4380_7778208_1901109,4380_1701 -4380_78129,289,4380_104082,Drogheda,63730-00014-1,1,4380_7778208_1901106,4380_1701 -4380_78129,292,4380_104083,Drogheda,63735-00016-1,1,4380_7778208_1901106,4380_1701 -4380_78129,293,4380_104084,Drogheda,63737-00017-1,1,4380_7778208_1901106,4380_1701 -4380_78129,290,4380_104085,Drogheda,63729-00015-1,1,4380_7778208_1901106,4380_1701 -4380_78129,294,4380_104086,Drogheda,63733-00018-1,1,4380_7778208_1901106,4380_1701 -4380_78129,295,4380_104087,Drogheda,63731-00019-1,1,4380_7778208_1901106,4380_1701 -4380_78129,296,4380_104088,Drogheda,64821-00021-1,1,4380_7778208_1901109,4380_1701 -4380_77954,285,4380_10409,Dublin,7679-00009-1,1,4380_7778208_1110106,4380_206 -4380_78129,285,4380_104095,Drogheda,64472-00009-1,1,4380_7778208_1901108,4380_1701 -4380_78129,286,4380_104096,Drogheda,64476-00010-1,1,4380_7778208_1901108,4380_1701 -4380_78129,288,4380_104097,Drogheda,64478-00011-1,1,4380_7778208_1901108,4380_1701 -4380_78129,287,4380_104098,Drogheda,64480-00012-1,1,4380_7778208_1901108,4380_1701 -4380_78129,291,4380_104099,Drogheda,64470-00013-1,1,4380_7778208_1901108,4380_1701 -4380_77954,286,4380_10410,Dublin,7693-00010-1,1,4380_7778208_1110106,4380_206 -4380_78129,289,4380_104100,Drogheda,64474-00014-1,1,4380_7778208_1901108,4380_1701 -4380_78129,292,4380_104101,Drogheda,64477-00016-1,1,4380_7778208_1901108,4380_1701 -4380_78129,293,4380_104102,Drogheda,64479-00017-1,1,4380_7778208_1901108,4380_1701 -4380_78129,290,4380_104103,Drogheda,64473-00015-1,1,4380_7778208_1901108,4380_1701 -4380_78129,294,4380_104104,Drogheda,64481-00018-1,1,4380_7778208_1901108,4380_1701 -4380_78129,295,4380_104105,Drogheda,64475-00019-1,1,4380_7778208_1901108,4380_1701 -4380_78129,296,4380_104106,Drogheda,64471-00021-1,1,4380_7778208_1901108,4380_1701 -4380_78129,297,4380_104108,Drogheda,63363-00008-1,1,4380_7778208_1901105,4380_1701 -4380_77954,297,4380_10411,Dublin,7730-00008-1,1,4380_7778208_1110106,4380_209 -4380_78129,285,4380_104115,Drogheda,63372-00009-1,1,4380_7778208_1901105,4380_1701 -4380_78129,286,4380_104116,Drogheda,63364-00010-1,1,4380_7778208_1901105,4380_1701 -4380_78129,288,4380_104117,Drogheda,63370-00011-1,1,4380_7778208_1901105,4380_1701 -4380_78129,287,4380_104118,Drogheda,63366-00012-1,1,4380_7778208_1901105,4380_1701 -4380_78129,291,4380_104119,Drogheda,63751-00013-1,1,4380_7778208_1901106,4380_1701 -4380_77954,288,4380_10412,Dublin,7703-00011-1,1,4380_7778208_1110106,4380_206 -4380_78129,289,4380_104120,Drogheda,63368-00014-1,1,4380_7778208_1901105,4380_1701 -4380_78129,292,4380_104121,Drogheda,63365-00016-1,1,4380_7778208_1901105,4380_1701 -4380_78129,293,4380_104122,Drogheda,63371-00017-1,1,4380_7778208_1901105,4380_1701 -4380_78129,290,4380_104123,Drogheda,63373-00015-1,1,4380_7778208_1901105,4380_1701 -4380_78129,294,4380_104124,Drogheda,63367-00018-1,1,4380_7778208_1901105,4380_1701 -4380_78129,295,4380_104125,Drogheda,63369-00019-1,1,4380_7778208_1901105,4380_1701 -4380_78129,296,4380_104126,Drogheda,63752-00021-1,1,4380_7778208_1901106,4380_1701 -4380_77954,287,4380_10413,Dublin,7713-00012-1,1,4380_7778208_1110106,4380_206 -4380_78129,285,4380_104133,Drogheda,64133-00009-1,1,4380_7778208_1901107,4380_1701 -4380_78129,286,4380_104134,Drogheda,64129-00010-1,1,4380_7778208_1901107,4380_1701 -4380_78129,288,4380_104135,Drogheda,64135-00011-1,1,4380_7778208_1901107,4380_1701 -4380_78129,287,4380_104136,Drogheda,64127-00012-1,1,4380_7778208_1901107,4380_1701 -4380_78129,291,4380_104137,Drogheda,64137-00013-1,1,4380_7778208_1901107,4380_1701 -4380_78129,289,4380_104138,Drogheda,64131-00014-1,1,4380_7778208_1901107,4380_1701 -4380_78129,292,4380_104139,Drogheda,64130-00016-1,1,4380_7778208_1901107,4380_1701 -4380_77954,289,4380_10414,Dublin,7669-00014-1,1,4380_7778208_1110106,4380_206 -4380_78129,293,4380_104140,Drogheda,64136-00017-1,1,4380_7778208_1901107,4380_1701 -4380_78129,290,4380_104141,Drogheda,64134-00015-1,1,4380_7778208_1901107,4380_1701 -4380_78129,294,4380_104142,Drogheda,64128-00018-1,1,4380_7778208_1901107,4380_1701 -4380_78129,295,4380_104143,Drogheda,64132-00019-1,1,4380_7778208_1901107,4380_1701 -4380_78129,296,4380_104144,Drogheda,64138-00021-1,1,4380_7778208_1901107,4380_1701 -4380_78129,297,4380_104146,Drogheda,64139-00008-1,1,4380_7778208_1901107,4380_1701 -4380_77954,290,4380_10415,Dublin,55692-00015-1,1,4380_7778208_1110106,4380_206 -4380_78129,285,4380_104153,Drogheda,64866-00009-1,1,4380_7778208_1901109,4380_1701 -4380_78129,286,4380_104154,Drogheda,64858-00010-1,1,4380_7778208_1901109,4380_1701 -4380_78129,288,4380_104155,Drogheda,64864-00011-1,1,4380_7778208_1901109,4380_1701 -4380_78129,287,4380_104156,Drogheda,64860-00012-1,1,4380_7778208_1901109,4380_1701 -4380_78129,291,4380_104157,Drogheda,63387-00013-1,1,4380_7778208_1901105,4380_1701 -4380_78129,289,4380_104158,Drogheda,64862-00014-1,1,4380_7778208_1901109,4380_1701 -4380_78129,292,4380_104159,Drogheda,64859-00016-1,1,4380_7778208_1901109,4380_1701 -4380_77954,291,4380_10416,Dublin,7497-00013-1,1,4380_7778208_1110103,4380_210 -4380_78129,293,4380_104160,Drogheda,64865-00017-1,1,4380_7778208_1901109,4380_1701 -4380_78129,290,4380_104161,Drogheda,64867-00015-1,1,4380_7778208_1901109,4380_1701 -4380_78129,294,4380_104162,Drogheda,64861-00018-1,1,4380_7778208_1901109,4380_1701 -4380_78129,295,4380_104163,Drogheda,64863-00019-1,1,4380_7778208_1901109,4380_1701 -4380_78129,296,4380_104164,Drogheda,63388-00021-1,1,4380_7778208_1901105,4380_1701 -4380_77954,292,4380_10417,Dublin,55691-00016-1,1,4380_7778208_1110106,4380_206 -4380_78129,285,4380_104171,Drogheda,63778-00009-1,1,4380_7778208_1901106,4380_1701 -4380_78129,286,4380_104172,Drogheda,63784-00010-1,1,4380_7778208_1901106,4380_1701 -4380_78129,288,4380_104173,Drogheda,63786-00011-1,1,4380_7778208_1901106,4380_1701 -4380_78129,287,4380_104174,Drogheda,63780-00012-1,1,4380_7778208_1901106,4380_1701 -4380_78129,291,4380_104175,Drogheda,64153-00013-1,1,4380_7778208_1901107,4380_1701 -4380_78129,289,4380_104176,Drogheda,63782-00014-1,1,4380_7778208_1901106,4380_1701 -4380_78129,292,4380_104177,Drogheda,63785-00016-1,1,4380_7778208_1901106,4380_1701 -4380_78129,293,4380_104178,Drogheda,63787-00017-1,1,4380_7778208_1901106,4380_1701 -4380_78129,290,4380_104179,Drogheda,63779-00015-1,1,4380_7778208_1901106,4380_1701 -4380_77954,293,4380_10418,Dublin,55689-00017-1,1,4380_7778208_1110106,4380_206 -4380_78129,294,4380_104180,Drogheda,63781-00018-1,1,4380_7778208_1901106,4380_1701 -4380_78129,295,4380_104181,Drogheda,63783-00019-1,1,4380_7778208_1901106,4380_1701 -4380_78129,296,4380_104182,Drogheda,64154-00021-1,1,4380_7778208_1901107,4380_1701 -4380_78129,285,4380_104189,Drogheda,64520-00009-1,1,4380_7778208_1901108,4380_1701 -4380_77954,294,4380_10419,Dublin,55693-00018-1,1,4380_7778208_1110106,4380_206 -4380_78129,286,4380_104190,Drogheda,64522-00010-1,1,4380_7778208_1901108,4380_1701 -4380_78129,288,4380_104191,Drogheda,64526-00011-1,1,4380_7778208_1901108,4380_1701 -4380_78129,287,4380_104192,Drogheda,64528-00012-1,1,4380_7778208_1901108,4380_1701 -4380_78129,291,4380_104193,Drogheda,64518-00013-1,1,4380_7778208_1901108,4380_1701 -4380_78129,289,4380_104194,Drogheda,64524-00014-1,1,4380_7778208_1901108,4380_1701 -4380_78129,292,4380_104195,Drogheda,64523-00016-1,1,4380_7778208_1901108,4380_1701 -4380_78129,293,4380_104196,Drogheda,64527-00017-1,1,4380_7778208_1901108,4380_1701 -4380_78129,290,4380_104197,Drogheda,64521-00015-1,1,4380_7778208_1901108,4380_1701 -4380_78129,294,4380_104198,Drogheda,64529-00018-1,1,4380_7778208_1901108,4380_1701 -4380_78129,295,4380_104199,Drogheda,64525-00019-1,1,4380_7778208_1901108,4380_1701 -4380_77954,295,4380_10420,Dublin,55690-00019-1,1,4380_7778208_1110106,4380_206 -4380_78129,296,4380_104200,Drogheda,64519-00021-1,1,4380_7778208_1901108,4380_1701 -4380_78129,285,4380_104207,Drogheda,64882-00009-1,1,4380_7778208_1901109,4380_1701 -4380_78129,286,4380_104208,Drogheda,64880-00010-1,1,4380_7778208_1901109,4380_1701 -4380_78129,288,4380_104209,Drogheda,64888-00011-1,1,4380_7778208_1901109,4380_1701 -4380_77954,296,4380_10421,Dublin,55596-00021-1,1,4380_7778208_1110103,4380_210 -4380_78129,287,4380_104210,Drogheda,64886-00012-1,1,4380_7778208_1901109,4380_1701 -4380_78129,291,4380_104211,Drogheda,63402-00013-1,1,4380_7778208_1901105,4380_1701 -4380_78129,289,4380_104212,Drogheda,64884-00014-1,1,4380_7778208_1901109,4380_1701 -4380_78129,292,4380_104213,Drogheda,64881-00016-1,1,4380_7778208_1901109,4380_1701 -4380_78129,293,4380_104214,Drogheda,64889-00017-1,1,4380_7778208_1901109,4380_1701 -4380_78129,290,4380_104215,Drogheda,64883-00015-1,1,4380_7778208_1901109,4380_1701 -4380_78129,294,4380_104216,Drogheda,64887-00018-1,1,4380_7778208_1901109,4380_1701 -4380_78129,295,4380_104217,Drogheda,64885-00019-1,1,4380_7778208_1901109,4380_1701 -4380_78129,296,4380_104218,Drogheda,63403-00021-1,1,4380_7778208_1901105,4380_1701 -4380_78130,285,4380_104224,Laytown,63022-00009-1,0,4380_7778208_1901105,4380_1703 -4380_78130,286,4380_104225,Laytown,63018-00010-1,0,4380_7778208_1901105,4380_1703 -4380_78130,288,4380_104226,Laytown,63016-00011-1,0,4380_7778208_1901105,4380_1703 -4380_78130,287,4380_104227,Laytown,63020-00012-1,0,4380_7778208_1901105,4380_1703 -4380_78130,289,4380_104228,Laytown,63014-00014-1,0,4380_7778208_1901105,4380_1703 -4380_78130,292,4380_104229,Laytown,63019-00016-1,0,4380_7778208_1901105,4380_1703 -4380_78130,293,4380_104230,Laytown,63017-00017-1,0,4380_7778208_1901105,4380_1703 -4380_78130,290,4380_104231,Laytown,63023-00015-1,0,4380_7778208_1901105,4380_1703 -4380_78130,294,4380_104232,Laytown,63021-00018-1,0,4380_7778208_1901105,4380_1703 -4380_78130,295,4380_104233,Laytown,63015-00019-1,0,4380_7778208_1901105,4380_1703 -4380_78130,285,4380_104239,Laytown,63796-00009-1,0,4380_7778208_1901107,4380_1703 -4380_78130,286,4380_104240,Laytown,63788-00010-1,0,4380_7778208_1901107,4380_1703 -4380_78130,288,4380_104241,Laytown,63794-00011-1,0,4380_7778208_1901107,4380_1703 -4380_78130,287,4380_104242,Laytown,63792-00012-1,0,4380_7778208_1901107,4380_1703 -4380_78130,289,4380_104243,Laytown,63790-00014-1,0,4380_7778208_1901107,4380_1703 -4380_78130,292,4380_104244,Laytown,63789-00016-1,0,4380_7778208_1901107,4380_1703 -4380_78130,293,4380_104245,Laytown,63795-00017-1,0,4380_7778208_1901107,4380_1703 -4380_78130,290,4380_104246,Laytown,63797-00015-1,0,4380_7778208_1901107,4380_1703 -4380_78130,294,4380_104247,Laytown,63793-00018-1,0,4380_7778208_1901107,4380_1703 -4380_78130,295,4380_104248,Laytown,63791-00019-1,0,4380_7778208_1901107,4380_1703 -4380_78130,291,4380_104250,Laytown,63414-00013-1,0,4380_7778208_1901106,4380_1703 -4380_78130,296,4380_104251,Laytown,63415-00021-1,0,4380_7778208_1901106,4380_1703 -4380_78130,285,4380_104257,Laytown,64534-00009-1,0,4380_7778208_1901109,4380_1703 -4380_78130,286,4380_104258,Laytown,64538-00010-1,0,4380_7778208_1901109,4380_1703 -4380_78130,288,4380_104259,Laytown,64530-00011-1,0,4380_7778208_1901109,4380_1703 -4380_78130,287,4380_104260,Laytown,64536-00012-1,0,4380_7778208_1901109,4380_1703 -4380_78130,289,4380_104261,Laytown,64532-00014-1,0,4380_7778208_1901109,4380_1703 -4380_78130,292,4380_104262,Laytown,64539-00016-1,0,4380_7778208_1901109,4380_1703 -4380_78130,293,4380_104263,Laytown,64531-00017-1,0,4380_7778208_1901109,4380_1703 -4380_78130,290,4380_104264,Laytown,64535-00015-1,0,4380_7778208_1901109,4380_1703 -4380_78130,294,4380_104265,Laytown,64537-00018-1,0,4380_7778208_1901109,4380_1703 -4380_78130,295,4380_104266,Laytown,64533-00019-1,0,4380_7778208_1901109,4380_1703 -4380_78130,285,4380_104272,Laytown,63434-00009-1,0,4380_7778208_1901106,4380_1703 -4380_78130,286,4380_104273,Laytown,63428-00010-1,0,4380_7778208_1901106,4380_1703 -4380_78130,288,4380_104274,Laytown,63432-00011-1,0,4380_7778208_1901106,4380_1703 -4380_78130,287,4380_104275,Laytown,63436-00012-1,0,4380_7778208_1901106,4380_1703 -4380_78130,289,4380_104276,Laytown,63430-00014-1,0,4380_7778208_1901106,4380_1703 -4380_78130,292,4380_104277,Laytown,63429-00016-1,0,4380_7778208_1901106,4380_1703 -4380_78130,293,4380_104278,Laytown,63433-00017-1,0,4380_7778208_1901106,4380_1703 -4380_78130,290,4380_104279,Laytown,63435-00015-1,0,4380_7778208_1901106,4380_1703 -4380_77954,285,4380_10428,Drop Off,7608-00009-1,1,4380_7778208_1110105,4380_204 -4380_78130,294,4380_104280,Laytown,63437-00018-1,0,4380_7778208_1901106,4380_1703 -4380_78130,295,4380_104281,Laytown,63431-00019-1,0,4380_7778208_1901106,4380_1703 -4380_78130,297,4380_104284,Laytown,63052-00008-1,0,4380_7778208_1901105,4380_1703 -4380_78130,291,4380_104285,Laytown,63438-00013-1,0,4380_7778208_1901106,4380_1703 -4380_78130,296,4380_104286,Laytown,63439-00021-1,0,4380_7778208_1901106,4380_1703 -4380_77954,286,4380_10429,Drop Off,7622-00010-1,1,4380_7778208_1110105,4380_204 -4380_78130,285,4380_104292,Laytown,64186-00009-1,0,4380_7778208_1901108,4380_1703 -4380_78130,286,4380_104293,Laytown,64188-00010-1,0,4380_7778208_1901108,4380_1703 -4380_78130,288,4380_104294,Laytown,64194-00011-1,0,4380_7778208_1901108,4380_1703 -4380_78130,287,4380_104295,Laytown,64192-00012-1,0,4380_7778208_1901108,4380_1703 -4380_78130,289,4380_104296,Laytown,64190-00014-1,0,4380_7778208_1901108,4380_1703 -4380_78130,292,4380_104297,Laytown,64189-00016-1,0,4380_7778208_1901108,4380_1703 -4380_78130,293,4380_104298,Laytown,64195-00017-1,0,4380_7778208_1901108,4380_1703 -4380_78130,290,4380_104299,Laytown,64187-00015-1,0,4380_7778208_1901108,4380_1703 -4380_78113,285,4380_1043,Dublin via Airport,49757-00009-1,1,4380_7778208_1000904,4380_18 -4380_77954,288,4380_10430,Drop Off,7632-00011-1,1,4380_7778208_1110105,4380_204 -4380_78130,294,4380_104300,Laytown,64193-00018-1,0,4380_7778208_1901108,4380_1703 -4380_78130,295,4380_104301,Laytown,64191-00019-1,0,4380_7778208_1901108,4380_1703 -4380_78130,285,4380_104307,Laytown,63074-00009-1,0,4380_7778208_1901105,4380_1703 -4380_78130,286,4380_104308,Laytown,63066-00010-1,0,4380_7778208_1901105,4380_1703 -4380_78130,288,4380_104309,Laytown,63068-00011-1,0,4380_7778208_1901105,4380_1703 -4380_77954,287,4380_10431,Drop Off,7642-00012-1,1,4380_7778208_1110105,4380_204 -4380_78130,287,4380_104310,Laytown,63072-00012-1,0,4380_7778208_1901105,4380_1703 -4380_78130,289,4380_104311,Laytown,63070-00014-1,0,4380_7778208_1901105,4380_1703 -4380_78130,292,4380_104312,Laytown,63067-00016-1,0,4380_7778208_1901105,4380_1703 -4380_78130,293,4380_104313,Laytown,63069-00017-1,0,4380_7778208_1901105,4380_1703 -4380_78130,290,4380_104314,Laytown,63075-00015-1,0,4380_7778208_1901105,4380_1703 -4380_78130,294,4380_104315,Laytown,63073-00018-1,0,4380_7778208_1901105,4380_1703 -4380_78130,295,4380_104316,Laytown,63071-00019-1,0,4380_7778208_1901105,4380_1703 -4380_78130,297,4380_104319,Laytown,63828-00008-1,0,4380_7778208_1901107,4380_1703 -4380_77954,289,4380_10432,Drop Off,7602-00014-1,1,4380_7778208_1110105,4380_204 -4380_78130,291,4380_104320,Laytown,63454-00013-1,0,4380_7778208_1901106,4380_1703 -4380_78130,296,4380_104321,Laytown,63455-00021-1,0,4380_7778208_1901106,4380_1703 -4380_78130,285,4380_104328,Laytown,63829-00009-1,0,4380_7778208_1901107,4380_1703 -4380_78130,286,4380_104329,Laytown,63837-00010-1,0,4380_7778208_1901107,4380_1703 -4380_77954,290,4380_10433,Drop Off,55653-00015-1,1,4380_7778208_1110105,4380_204 -4380_78130,288,4380_104330,Laytown,63831-00011-1,0,4380_7778208_1901107,4380_1703 -4380_78130,287,4380_104331,Laytown,63835-00012-1,0,4380_7778208_1901107,4380_1703 -4380_78130,291,4380_104332,Laytown,63839-00013-1,0,4380_7778208_1901107,4380_1703 -4380_78130,289,4380_104333,Laytown,63833-00014-1,0,4380_7778208_1901107,4380_1703 -4380_78130,292,4380_104334,Laytown,63838-00016-1,0,4380_7778208_1901107,4380_1703 -4380_78130,293,4380_104335,Laytown,63832-00017-1,0,4380_7778208_1901107,4380_1703 -4380_78130,290,4380_104336,Laytown,63830-00015-1,0,4380_7778208_1901107,4380_1703 -4380_78130,294,4380_104337,Laytown,63836-00018-1,0,4380_7778208_1901107,4380_1703 -4380_78130,295,4380_104338,Laytown,63834-00019-1,0,4380_7778208_1901107,4380_1703 -4380_78130,296,4380_104339,Laytown,63840-00021-1,0,4380_7778208_1901107,4380_1703 -4380_77954,291,4380_10434,Drop Off,7581-00013-1,1,4380_7778208_1110104,4380_208 -4380_78130,285,4380_104346,Laytown,64574-00009-1,0,4380_7778208_1901109,4380_1703 -4380_78130,286,4380_104347,Laytown,64576-00010-1,0,4380_7778208_1901109,4380_1703 -4380_78130,288,4380_104348,Laytown,64572-00011-1,0,4380_7778208_1901109,4380_1703 -4380_78130,287,4380_104349,Laytown,64570-00012-1,0,4380_7778208_1901109,4380_1703 -4380_77954,292,4380_10435,Drop Off,55654-00016-1,1,4380_7778208_1110105,4380_204 -4380_78130,291,4380_104350,Laytown,63089-00013-1,0,4380_7778208_1901105,4380_1703 -4380_78130,289,4380_104351,Laytown,64578-00014-1,0,4380_7778208_1901109,4380_1703 -4380_78130,292,4380_104352,Laytown,64577-00016-1,0,4380_7778208_1901109,4380_1703 -4380_78130,293,4380_104353,Laytown,64573-00017-1,0,4380_7778208_1901109,4380_1703 -4380_78130,290,4380_104354,Laytown,64575-00015-1,0,4380_7778208_1901109,4380_1703 -4380_78130,294,4380_104355,Laytown,64571-00018-1,0,4380_7778208_1901109,4380_1703 -4380_78130,295,4380_104356,Laytown,64579-00019-1,0,4380_7778208_1901109,4380_1703 -4380_78130,296,4380_104357,Laytown,63090-00021-1,0,4380_7778208_1901105,4380_1703 -4380_78130,297,4380_104359,Laytown,63478-00008-1,0,4380_7778208_1901106,4380_1703 -4380_77954,293,4380_10436,Drop Off,55657-00017-1,1,4380_7778208_1110105,4380_204 -4380_78130,285,4380_104366,Laytown,63481-00009-1,0,4380_7778208_1901106,4380_1703 -4380_78130,286,4380_104367,Laytown,63487-00010-1,0,4380_7778208_1901106,4380_1703 -4380_78130,288,4380_104368,Laytown,63485-00011-1,0,4380_7778208_1901106,4380_1703 -4380_78130,287,4380_104369,Laytown,63489-00012-1,0,4380_7778208_1901106,4380_1703 -4380_77954,294,4380_10437,Drop Off,55655-00018-1,1,4380_7778208_1110105,4380_204 -4380_78130,291,4380_104370,Laytown,64580-00013-1,0,4380_7778208_1901109,4380_1703 -4380_78130,289,4380_104371,Laytown,63483-00014-1,0,4380_7778208_1901106,4380_1703 -4380_78130,292,4380_104372,Laytown,63488-00016-1,0,4380_7778208_1901106,4380_1703 -4380_78130,293,4380_104373,Laytown,63486-00017-1,0,4380_7778208_1901106,4380_1703 -4380_78130,290,4380_104374,Laytown,63482-00015-1,0,4380_7778208_1901106,4380_1703 -4380_78130,294,4380_104375,Laytown,63490-00018-1,0,4380_7778208_1901106,4380_1703 -4380_78130,295,4380_104376,Laytown,63484-00019-1,0,4380_7778208_1901106,4380_1703 -4380_78130,296,4380_104377,Laytown,64581-00021-1,0,4380_7778208_1901109,4380_1703 -4380_77954,295,4380_10438,Drop Off,55656-00019-1,1,4380_7778208_1110105,4380_204 -4380_78130,285,4380_104384,Laytown,64236-00009-1,0,4380_7778208_1901108,4380_1703 -4380_78130,286,4380_104385,Laytown,64234-00010-1,0,4380_7778208_1901108,4380_1703 -4380_78130,288,4380_104386,Laytown,64238-00011-1,0,4380_7778208_1901108,4380_1703 -4380_78130,287,4380_104387,Laytown,64232-00012-1,0,4380_7778208_1901108,4380_1703 -4380_78130,291,4380_104388,Laytown,64230-00013-1,0,4380_7778208_1901108,4380_1703 -4380_78130,289,4380_104389,Laytown,64240-00014-1,0,4380_7778208_1901108,4380_1703 -4380_77954,296,4380_10439,Drop Off,55622-00021-1,1,4380_7778208_1110104,4380_208 -4380_78130,292,4380_104390,Laytown,64235-00016-1,0,4380_7778208_1901108,4380_1703 -4380_78130,293,4380_104391,Laytown,64239-00017-1,0,4380_7778208_1901108,4380_1703 -4380_78130,290,4380_104392,Laytown,64237-00015-1,0,4380_7778208_1901108,4380_1703 -4380_78130,294,4380_104393,Laytown,64233-00018-1,0,4380_7778208_1901108,4380_1703 -4380_78130,295,4380_104394,Laytown,64241-00019-1,0,4380_7778208_1901108,4380_1703 -4380_78130,296,4380_104395,Laytown,64231-00021-1,0,4380_7778208_1901108,4380_1703 -4380_78130,297,4380_104397,Laytown,63114-00008-1,0,4380_7778208_1901105,4380_1703 -4380_78113,286,4380_1044,Dublin via Airport,49763-00010-1,1,4380_7778208_1000904,4380_18 -4380_78130,285,4380_104404,Laytown,63121-00009-1,0,4380_7778208_1901105,4380_1703 -4380_78130,286,4380_104405,Laytown,63125-00010-1,0,4380_7778208_1901105,4380_1703 -4380_78130,288,4380_104406,Laytown,63117-00011-1,0,4380_7778208_1901105,4380_1703 -4380_78130,287,4380_104407,Laytown,63123-00012-1,0,4380_7778208_1901105,4380_1703 -4380_78130,291,4380_104408,Laytown,63504-00013-1,0,4380_7778208_1901106,4380_1703 -4380_78130,289,4380_104409,Laytown,63119-00014-1,0,4380_7778208_1901105,4380_1703 -4380_77954,297,4380_10441,Dublin,7503-00008-1,1,4380_7778208_1110103,4380_206 -4380_78130,292,4380_104410,Laytown,63126-00016-1,0,4380_7778208_1901105,4380_1703 -4380_78130,293,4380_104411,Laytown,63118-00017-1,0,4380_7778208_1901105,4380_1703 -4380_78130,290,4380_104412,Laytown,63122-00015-1,0,4380_7778208_1901105,4380_1703 -4380_78130,294,4380_104413,Laytown,63124-00018-1,0,4380_7778208_1901105,4380_1703 -4380_78130,295,4380_104414,Laytown,63120-00019-1,0,4380_7778208_1901105,4380_1703 -4380_78130,296,4380_104415,Laytown,63505-00021-1,0,4380_7778208_1901106,4380_1703 -4380_78130,285,4380_104422,Laytown,63890-00009-1,0,4380_7778208_1901107,4380_1703 -4380_78130,286,4380_104423,Laytown,63880-00010-1,0,4380_7778208_1901107,4380_1703 -4380_78130,288,4380_104424,Laytown,63882-00011-1,0,4380_7778208_1901107,4380_1703 -4380_78130,287,4380_104425,Laytown,63886-00012-1,0,4380_7778208_1901107,4380_1703 -4380_78130,291,4380_104426,Laytown,63888-00013-1,0,4380_7778208_1901107,4380_1703 -4380_78130,289,4380_104427,Laytown,63884-00014-1,0,4380_7778208_1901107,4380_1703 -4380_78130,292,4380_104428,Laytown,63881-00016-1,0,4380_7778208_1901107,4380_1703 -4380_78130,293,4380_104429,Laytown,63883-00017-1,0,4380_7778208_1901107,4380_1703 -4380_78130,290,4380_104430,Laytown,63891-00015-1,0,4380_7778208_1901107,4380_1703 -4380_78130,294,4380_104431,Laytown,63887-00018-1,0,4380_7778208_1901107,4380_1703 -4380_78130,295,4380_104432,Laytown,63885-00019-1,0,4380_7778208_1901107,4380_1703 -4380_78130,296,4380_104433,Laytown,63889-00021-1,0,4380_7778208_1901107,4380_1703 -4380_78130,297,4380_104435,Laytown,63892-00008-1,0,4380_7778208_1901107,4380_1703 -4380_78130,285,4380_104442,Laytown,64626-00009-1,0,4380_7778208_1901109,4380_1703 -4380_78130,286,4380_104443,Laytown,64624-00010-1,0,4380_7778208_1901109,4380_1703 -4380_78130,288,4380_104444,Laytown,64620-00011-1,0,4380_7778208_1901109,4380_1703 -4380_78130,287,4380_104445,Laytown,64622-00012-1,0,4380_7778208_1901109,4380_1703 -4380_78130,291,4380_104446,Laytown,63141-00013-1,0,4380_7778208_1901105,4380_1703 -4380_78130,289,4380_104447,Laytown,64618-00014-1,0,4380_7778208_1901109,4380_1703 -4380_78130,292,4380_104448,Laytown,64625-00016-1,0,4380_7778208_1901109,4380_1703 -4380_78130,293,4380_104449,Laytown,64621-00017-1,0,4380_7778208_1901109,4380_1703 -4380_78130,290,4380_104450,Laytown,64627-00015-1,0,4380_7778208_1901109,4380_1703 -4380_78130,294,4380_104451,Laytown,64623-00018-1,0,4380_7778208_1901109,4380_1703 -4380_78130,295,4380_104452,Laytown,64619-00019-1,0,4380_7778208_1901109,4380_1703 -4380_78130,296,4380_104453,Laytown,63142-00021-1,0,4380_7778208_1901105,4380_1703 -4380_78130,297,4380_104455,Laytown,63530-00008-1,0,4380_7778208_1901106,4380_1703 -4380_78130,285,4380_104462,Laytown,63539-00009-1,0,4380_7778208_1901106,4380_1703 -4380_78130,286,4380_104463,Laytown,63537-00010-1,0,4380_7778208_1901106,4380_1703 -4380_78130,288,4380_104464,Laytown,63541-00011-1,0,4380_7778208_1901106,4380_1703 -4380_78130,287,4380_104465,Laytown,63535-00012-1,0,4380_7778208_1901106,4380_1703 -4380_78130,291,4380_104466,Laytown,64628-00013-1,0,4380_7778208_1901109,4380_1703 -4380_78130,289,4380_104467,Laytown,63533-00014-1,0,4380_7778208_1901106,4380_1703 -4380_78130,292,4380_104468,Laytown,63538-00016-1,0,4380_7778208_1901106,4380_1703 -4380_78130,293,4380_104469,Laytown,63542-00017-1,0,4380_7778208_1901106,4380_1703 -4380_78130,290,4380_104470,Laytown,63540-00015-1,0,4380_7778208_1901106,4380_1703 -4380_78130,294,4380_104471,Laytown,63536-00018-1,0,4380_7778208_1901106,4380_1703 -4380_78130,295,4380_104472,Laytown,63534-00019-1,0,4380_7778208_1901106,4380_1703 -4380_78130,296,4380_104473,Laytown,64629-00021-1,0,4380_7778208_1901109,4380_1703 -4380_78130,297,4380_104475,Laytown,64630-00008-1,0,4380_7778208_1901109,4380_1703 -4380_78130,285,4380_104482,Laytown,64282-00009-1,0,4380_7778208_1901108,4380_1703 -4380_78130,286,4380_104483,Laytown,64288-00010-1,0,4380_7778208_1901108,4380_1703 -4380_78130,288,4380_104484,Laytown,64286-00011-1,0,4380_7778208_1901108,4380_1703 -4380_78130,287,4380_104485,Laytown,64280-00012-1,0,4380_7778208_1901108,4380_1703 -4380_78130,291,4380_104486,Laytown,64284-00013-1,0,4380_7778208_1901108,4380_1703 -4380_78130,289,4380_104487,Laytown,64290-00014-1,0,4380_7778208_1901108,4380_1703 -4380_78130,292,4380_104488,Laytown,64289-00016-1,0,4380_7778208_1901108,4380_1703 -4380_78130,293,4380_104489,Laytown,64287-00017-1,0,4380_7778208_1901108,4380_1703 -4380_77954,285,4380_10449,Dublin,7390-00009-1,1,4380_7778208_1110102,4380_206 -4380_78130,290,4380_104490,Laytown,64283-00015-1,0,4380_7778208_1901108,4380_1703 -4380_78130,294,4380_104491,Laytown,64281-00018-1,0,4380_7778208_1901108,4380_1703 -4380_78130,295,4380_104492,Laytown,64291-00019-1,0,4380_7778208_1901108,4380_1703 -4380_78130,296,4380_104493,Laytown,64285-00021-1,0,4380_7778208_1901108,4380_1703 -4380_78130,297,4380_104495,Laytown,63166-00008-1,0,4380_7778208_1901105,4380_1703 -4380_78113,297,4380_1045,Dublin via Airport,49709-00008-1,1,4380_7778208_1000903,4380_18 -4380_77954,286,4380_10450,Dublin,7403-00010-1,1,4380_7778208_1110102,4380_206 -4380_78130,285,4380_104502,Laytown,63175-00009-1,0,4380_7778208_1901105,4380_1703 -4380_78130,286,4380_104503,Laytown,63169-00010-1,0,4380_7778208_1901105,4380_1703 -4380_78130,288,4380_104504,Laytown,63173-00011-1,0,4380_7778208_1901105,4380_1703 -4380_78130,287,4380_104505,Laytown,63177-00012-1,0,4380_7778208_1901105,4380_1703 -4380_78130,291,4380_104506,Laytown,63557-00013-1,0,4380_7778208_1901106,4380_1703 -4380_78130,289,4380_104507,Laytown,63171-00014-1,0,4380_7778208_1901105,4380_1703 -4380_78130,292,4380_104508,Laytown,63170-00016-1,0,4380_7778208_1901105,4380_1703 -4380_78130,293,4380_104509,Laytown,63174-00017-1,0,4380_7778208_1901105,4380_1703 -4380_77954,297,4380_10451,Dublin,7593-00008-1,1,4380_7778208_1110104,4380_209 -4380_78130,290,4380_104510,Laytown,63176-00015-1,0,4380_7778208_1901105,4380_1703 -4380_78130,294,4380_104511,Laytown,63178-00018-1,0,4380_7778208_1901105,4380_1703 -4380_78130,295,4380_104512,Laytown,63172-00019-1,0,4380_7778208_1901105,4380_1703 -4380_78130,296,4380_104513,Laytown,63558-00021-1,0,4380_7778208_1901106,4380_1703 -4380_78130,297,4380_104515,Laytown,64296-00008-1,0,4380_7778208_1901108,4380_1703 -4380_77954,288,4380_10452,Dublin,7408-00011-1,1,4380_7778208_1110102,4380_206 -4380_78130,285,4380_104522,Laytown,63934-00009-1,0,4380_7778208_1901107,4380_1703 -4380_78130,286,4380_104523,Laytown,63938-00010-1,0,4380_7778208_1901107,4380_1703 -4380_78130,288,4380_104524,Laytown,63932-00011-1,0,4380_7778208_1901107,4380_1703 -4380_78130,287,4380_104525,Laytown,63940-00012-1,0,4380_7778208_1901107,4380_1703 -4380_78130,291,4380_104526,Laytown,63942-00013-1,0,4380_7778208_1901107,4380_1703 -4380_78130,289,4380_104527,Laytown,63936-00014-1,0,4380_7778208_1901107,4380_1703 -4380_78130,292,4380_104528,Laytown,63939-00016-1,0,4380_7778208_1901107,4380_1703 -4380_78130,293,4380_104529,Laytown,63933-00017-1,0,4380_7778208_1901107,4380_1703 -4380_77954,287,4380_10453,Dublin,7421-00012-1,1,4380_7778208_1110102,4380_206 -4380_78130,290,4380_104530,Laytown,63935-00015-1,0,4380_7778208_1901107,4380_1703 -4380_78130,294,4380_104531,Laytown,63941-00018-1,0,4380_7778208_1901107,4380_1703 -4380_78130,295,4380_104532,Laytown,63937-00019-1,0,4380_7778208_1901107,4380_1703 -4380_78130,296,4380_104533,Laytown,63943-00021-1,0,4380_7778208_1901107,4380_1703 -4380_78130,297,4380_104535,Laytown,63944-00008-1,0,4380_7778208_1901107,4380_1703 -4380_77954,289,4380_10454,Dublin,7369-00014-1,1,4380_7778208_1110102,4380_206 -4380_78130,285,4380_104542,Laytown,64678-00009-1,0,4380_7778208_1901109,4380_1703 -4380_78130,286,4380_104543,Laytown,64672-00010-1,0,4380_7778208_1901109,4380_1703 -4380_78130,288,4380_104544,Laytown,64674-00011-1,0,4380_7778208_1901109,4380_1703 -4380_78130,287,4380_104545,Laytown,64670-00012-1,0,4380_7778208_1901109,4380_1703 -4380_78130,291,4380_104546,Laytown,63193-00013-1,0,4380_7778208_1901105,4380_1703 -4380_78130,289,4380_104547,Laytown,64676-00014-1,0,4380_7778208_1901109,4380_1703 -4380_78130,292,4380_104548,Laytown,64673-00016-1,0,4380_7778208_1901109,4380_1703 -4380_78130,293,4380_104549,Laytown,64675-00017-1,0,4380_7778208_1901109,4380_1703 -4380_77954,290,4380_10455,Dublin,55569-00015-1,1,4380_7778208_1110102,4380_206 -4380_78130,290,4380_104550,Laytown,64679-00015-1,0,4380_7778208_1901109,4380_1703 -4380_78130,294,4380_104551,Laytown,64671-00018-1,0,4380_7778208_1901109,4380_1703 -4380_78130,295,4380_104552,Laytown,64677-00019-1,0,4380_7778208_1901109,4380_1703 -4380_78130,296,4380_104553,Laytown,63194-00021-1,0,4380_7778208_1901105,4380_1703 -4380_78130,297,4380_104555,Laytown,63582-00008-1,0,4380_7778208_1901106,4380_1703 -4380_77954,291,4380_10456,Dublin,7649-00013-1,1,4380_7778208_1110105,4380_210 -4380_78130,285,4380_104562,Laytown,63589-00009-1,0,4380_7778208_1901106,4380_1703 -4380_78130,286,4380_104563,Laytown,63593-00010-1,0,4380_7778208_1901106,4380_1703 -4380_78130,288,4380_104564,Laytown,63587-00011-1,0,4380_7778208_1901106,4380_1703 -4380_78130,287,4380_104565,Laytown,63591-00012-1,0,4380_7778208_1901106,4380_1703 -4380_78130,291,4380_104566,Laytown,64680-00013-1,0,4380_7778208_1901109,4380_1703 -4380_78130,289,4380_104567,Laytown,63585-00014-1,0,4380_7778208_1901106,4380_1703 -4380_78130,292,4380_104568,Laytown,63594-00016-1,0,4380_7778208_1901106,4380_1703 -4380_78130,293,4380_104569,Laytown,63588-00017-1,0,4380_7778208_1901106,4380_1703 -4380_77954,292,4380_10457,Dublin,55567-00016-1,1,4380_7778208_1110102,4380_206 -4380_78130,290,4380_104570,Laytown,63590-00015-1,0,4380_7778208_1901106,4380_1703 -4380_78130,294,4380_104571,Laytown,63592-00018-1,0,4380_7778208_1901106,4380_1703 -4380_78130,295,4380_104572,Laytown,63586-00019-1,0,4380_7778208_1901106,4380_1703 -4380_78130,296,4380_104573,Laytown,64681-00021-1,0,4380_7778208_1901109,4380_1703 -4380_78130,297,4380_104575,Laytown,64690-00008-1,0,4380_7778208_1901109,4380_1703 -4380_77954,293,4380_10458,Dublin,55566-00017-1,1,4380_7778208_1110102,4380_206 -4380_78130,285,4380_104582,Laytown,64342-00009-1,0,4380_7778208_1901108,4380_1703 -4380_78130,286,4380_104583,Laytown,64340-00010-1,0,4380_7778208_1901108,4380_1703 -4380_78130,288,4380_104584,Laytown,64332-00011-1,0,4380_7778208_1901108,4380_1703 -4380_78130,287,4380_104585,Laytown,64334-00012-1,0,4380_7778208_1901108,4380_1703 -4380_78130,291,4380_104586,Laytown,64338-00013-1,0,4380_7778208_1901108,4380_1703 -4380_78130,289,4380_104587,Laytown,64336-00014-1,0,4380_7778208_1901108,4380_1703 -4380_78130,292,4380_104588,Laytown,64341-00016-1,0,4380_7778208_1901108,4380_1703 -4380_78130,293,4380_104589,Laytown,64333-00017-1,0,4380_7778208_1901108,4380_1703 -4380_77954,294,4380_10459,Dublin,55568-00018-1,1,4380_7778208_1110102,4380_206 -4380_78130,290,4380_104590,Laytown,64343-00015-1,0,4380_7778208_1901108,4380_1703 -4380_78130,294,4380_104591,Laytown,64335-00018-1,0,4380_7778208_1901108,4380_1703 -4380_78130,295,4380_104592,Laytown,64337-00019-1,0,4380_7778208_1901108,4380_1703 -4380_78130,296,4380_104593,Laytown,64339-00021-1,0,4380_7778208_1901108,4380_1703 -4380_78130,297,4380_104595,Laytown,63218-00008-1,0,4380_7778208_1901105,4380_1703 -4380_78113,287,4380_1046,Dublin via Airport,49767-00012-1,1,4380_7778208_1000904,4380_18 -4380_77954,295,4380_10460,Dublin,55565-00019-1,1,4380_7778208_1110102,4380_206 -4380_78130,285,4380_104602,Laytown,63227-00009-1,0,4380_7778208_1901105,4380_1703 -4380_78130,286,4380_104603,Laytown,63225-00010-1,0,4380_7778208_1901105,4380_1703 -4380_78130,288,4380_104604,Laytown,63229-00011-1,0,4380_7778208_1901105,4380_1703 -4380_78130,287,4380_104605,Laytown,63223-00012-1,0,4380_7778208_1901105,4380_1703 -4380_78130,291,4380_104606,Laytown,63609-00013-1,0,4380_7778208_1901106,4380_1703 -4380_78130,289,4380_104607,Laytown,63221-00014-1,0,4380_7778208_1901105,4380_1703 -4380_78130,292,4380_104608,Laytown,63226-00016-1,0,4380_7778208_1901105,4380_1703 -4380_78130,293,4380_104609,Laytown,63230-00017-1,0,4380_7778208_1901105,4380_1703 -4380_77954,296,4380_10461,Dublin,55658-00021-1,1,4380_7778208_1110105,4380_210 -4380_78130,290,4380_104610,Laytown,63228-00015-1,0,4380_7778208_1901105,4380_1703 -4380_78130,294,4380_104611,Laytown,63224-00018-1,0,4380_7778208_1901105,4380_1703 -4380_78130,295,4380_104612,Laytown,63222-00019-1,0,4380_7778208_1901105,4380_1703 -4380_78130,296,4380_104613,Laytown,63610-00021-1,0,4380_7778208_1901106,4380_1703 -4380_78130,297,4380_104615,Laytown,64354-00008-1,0,4380_7778208_1901108,4380_1703 -4380_78130,285,4380_104622,Laytown,63988-00009-1,0,4380_7778208_1901107,4380_1703 -4380_78130,286,4380_104623,Laytown,63984-00010-1,0,4380_7778208_1901107,4380_1703 -4380_78130,288,4380_104624,Laytown,63990-00011-1,0,4380_7778208_1901107,4380_1703 -4380_78130,287,4380_104625,Laytown,63994-00012-1,0,4380_7778208_1901107,4380_1703 -4380_78130,291,4380_104626,Laytown,63992-00013-1,0,4380_7778208_1901107,4380_1703 -4380_78130,289,4380_104627,Laytown,63986-00014-1,0,4380_7778208_1901107,4380_1703 -4380_78130,292,4380_104628,Laytown,63985-00016-1,0,4380_7778208_1901107,4380_1703 -4380_78130,293,4380_104629,Laytown,63991-00017-1,0,4380_7778208_1901107,4380_1703 -4380_78130,290,4380_104630,Laytown,63989-00015-1,0,4380_7778208_1901107,4380_1703 -4380_78130,294,4380_104631,Laytown,63995-00018-1,0,4380_7778208_1901107,4380_1703 -4380_78130,295,4380_104632,Laytown,63987-00019-1,0,4380_7778208_1901107,4380_1703 -4380_78130,296,4380_104633,Laytown,63993-00021-1,0,4380_7778208_1901107,4380_1703 -4380_78130,297,4380_104635,Laytown,63996-00008-1,0,4380_7778208_1901107,4380_1703 -4380_78130,285,4380_104642,Laytown,64730-00009-1,0,4380_7778208_1901109,4380_1703 -4380_78130,286,4380_104643,Laytown,64724-00010-1,0,4380_7778208_1901109,4380_1703 -4380_78130,288,4380_104644,Laytown,64728-00011-1,0,4380_7778208_1901109,4380_1703 -4380_78130,287,4380_104645,Laytown,64722-00012-1,0,4380_7778208_1901109,4380_1703 -4380_78130,291,4380_104646,Laytown,63245-00013-1,0,4380_7778208_1901105,4380_1703 -4380_78130,289,4380_104647,Laytown,64726-00014-1,0,4380_7778208_1901109,4380_1703 -4380_78130,292,4380_104648,Laytown,64725-00016-1,0,4380_7778208_1901109,4380_1703 -4380_78130,293,4380_104649,Laytown,64729-00017-1,0,4380_7778208_1901109,4380_1703 -4380_78130,290,4380_104650,Laytown,64731-00015-1,0,4380_7778208_1901109,4380_1703 -4380_78130,294,4380_104651,Laytown,64723-00018-1,0,4380_7778208_1901109,4380_1703 -4380_78130,295,4380_104652,Laytown,64727-00019-1,0,4380_7778208_1901109,4380_1703 -4380_78130,296,4380_104653,Laytown,63246-00021-1,0,4380_7778208_1901105,4380_1703 -4380_78130,297,4380_104655,Laytown,63634-00008-1,0,4380_7778208_1901106,4380_1703 -4380_78130,285,4380_104662,Laytown,63645-00009-1,0,4380_7778208_1901106,4380_1703 -4380_78130,286,4380_104663,Laytown,63637-00010-1,0,4380_7778208_1901106,4380_1703 -4380_78130,288,4380_104664,Laytown,63639-00011-1,0,4380_7778208_1901106,4380_1703 -4380_78130,287,4380_104665,Laytown,63641-00012-1,0,4380_7778208_1901106,4380_1703 -4380_78130,291,4380_104666,Laytown,64732-00013-1,0,4380_7778208_1901109,4380_1703 -4380_78130,289,4380_104667,Laytown,63643-00014-1,0,4380_7778208_1901106,4380_1703 -4380_78130,292,4380_104668,Laytown,63638-00016-1,0,4380_7778208_1901106,4380_1703 -4380_78130,293,4380_104669,Laytown,63640-00017-1,0,4380_7778208_1901106,4380_1703 -4380_78130,290,4380_104670,Laytown,63646-00015-1,0,4380_7778208_1901106,4380_1703 -4380_78130,294,4380_104671,Laytown,63642-00018-1,0,4380_7778208_1901106,4380_1703 -4380_78130,295,4380_104672,Laytown,63644-00019-1,0,4380_7778208_1901106,4380_1703 -4380_78130,296,4380_104673,Laytown,64733-00021-1,0,4380_7778208_1901109,4380_1703 -4380_78130,297,4380_104675,Laytown,64734-00008-1,0,4380_7778208_1901109,4380_1703 -4380_78130,285,4380_104682,Laytown,64386-00009-1,0,4380_7778208_1901108,4380_1703 -4380_78130,286,4380_104683,Laytown,64394-00010-1,0,4380_7778208_1901108,4380_1703 -4380_78130,288,4380_104684,Laytown,64392-00011-1,0,4380_7778208_1901108,4380_1703 -4380_78130,287,4380_104685,Laytown,64390-00012-1,0,4380_7778208_1901108,4380_1703 -4380_78130,291,4380_104686,Laytown,64384-00013-1,0,4380_7778208_1901108,4380_1703 -4380_78130,289,4380_104687,Laytown,64388-00014-1,0,4380_7778208_1901108,4380_1703 -4380_78130,292,4380_104688,Laytown,64395-00016-1,0,4380_7778208_1901108,4380_1703 -4380_78130,293,4380_104689,Laytown,64393-00017-1,0,4380_7778208_1901108,4380_1703 -4380_77954,285,4380_10469,Dublin,7283-00009-1,1,4380_7778208_1110101,4380_206 -4380_78130,290,4380_104690,Laytown,64387-00015-1,0,4380_7778208_1901108,4380_1703 -4380_78130,294,4380_104691,Laytown,64391-00018-1,0,4380_7778208_1901108,4380_1703 -4380_78130,295,4380_104692,Laytown,64389-00019-1,0,4380_7778208_1901108,4380_1703 -4380_78130,296,4380_104693,Laytown,64385-00021-1,0,4380_7778208_1901108,4380_1703 -4380_78130,297,4380_104695,Laytown,63270-00008-1,0,4380_7778208_1901105,4380_1703 -4380_78113,288,4380_1047,Dublin via Airport,49765-00011-1,1,4380_7778208_1000904,4380_18 -4380_77954,286,4380_10470,Dublin,7307-00010-1,1,4380_7778208_1110101,4380_206 -4380_78130,285,4380_104702,Laytown,63273-00009-1,0,4380_7778208_1901105,4380_1703 -4380_78130,286,4380_104703,Laytown,63277-00010-1,0,4380_7778208_1901105,4380_1703 -4380_78130,288,4380_104704,Laytown,63275-00011-1,0,4380_7778208_1901105,4380_1703 -4380_78130,287,4380_104705,Laytown,63279-00012-1,0,4380_7778208_1901105,4380_1703 -4380_78130,291,4380_104706,Laytown,63661-00013-1,0,4380_7778208_1901106,4380_1703 -4380_78130,289,4380_104707,Laytown,63281-00014-1,0,4380_7778208_1901105,4380_1703 -4380_78130,292,4380_104708,Laytown,63278-00016-1,0,4380_7778208_1901105,4380_1703 -4380_78130,293,4380_104709,Laytown,63276-00017-1,0,4380_7778208_1901105,4380_1703 -4380_77954,297,4380_10471,Dublin,7451-00008-1,1,4380_7778208_1110102,4380_209 -4380_78130,290,4380_104710,Laytown,63274-00015-1,0,4380_7778208_1901105,4380_1703 -4380_78130,294,4380_104711,Laytown,63280-00018-1,0,4380_7778208_1901105,4380_1703 -4380_78130,295,4380_104712,Laytown,63282-00019-1,0,4380_7778208_1901105,4380_1703 -4380_78130,296,4380_104713,Laytown,63662-00021-1,0,4380_7778208_1901106,4380_1703 -4380_78130,297,4380_104715,Laytown,64408-00008-1,0,4380_7778208_1901108,4380_1703 -4380_77954,288,4380_10472,Dublin,7323-00011-1,1,4380_7778208_1110101,4380_206 -4380_78130,285,4380_104722,Laytown,64046-00009-1,0,4380_7778208_1901107,4380_1703 -4380_78130,286,4380_104723,Laytown,64042-00010-1,0,4380_7778208_1901107,4380_1703 -4380_78130,288,4380_104724,Laytown,64040-00011-1,0,4380_7778208_1901107,4380_1703 -4380_78130,287,4380_104725,Laytown,64036-00012-1,0,4380_7778208_1901107,4380_1703 -4380_78130,291,4380_104726,Laytown,64038-00013-1,0,4380_7778208_1901107,4380_1703 -4380_78130,289,4380_104727,Laytown,64044-00014-1,0,4380_7778208_1901107,4380_1703 -4380_78130,292,4380_104728,Laytown,64043-00016-1,0,4380_7778208_1901107,4380_1703 -4380_78130,293,4380_104729,Laytown,64041-00017-1,0,4380_7778208_1901107,4380_1703 -4380_77954,287,4380_10473,Dublin,7339-00012-1,1,4380_7778208_1110101,4380_206 -4380_78130,290,4380_104730,Laytown,64047-00015-1,0,4380_7778208_1901107,4380_1703 -4380_78130,294,4380_104731,Laytown,64037-00018-1,0,4380_7778208_1901107,4380_1703 -4380_78130,295,4380_104732,Laytown,64045-00019-1,0,4380_7778208_1901107,4380_1703 -4380_78130,296,4380_104733,Laytown,64039-00021-1,0,4380_7778208_1901107,4380_1703 -4380_78130,297,4380_104735,Laytown,64048-00008-1,0,4380_7778208_1901107,4380_1703 -4380_77954,289,4380_10474,Dublin,7267-00014-1,1,4380_7778208_1110101,4380_206 -4380_78130,285,4380_104742,Laytown,64776-00009-1,0,4380_7778208_1901109,4380_1703 -4380_78130,286,4380_104743,Laytown,64780-00010-1,0,4380_7778208_1901109,4380_1703 -4380_78130,288,4380_104744,Laytown,64782-00011-1,0,4380_7778208_1901109,4380_1703 -4380_78130,287,4380_104745,Laytown,64774-00012-1,0,4380_7778208_1901109,4380_1703 -4380_78130,291,4380_104746,Laytown,63297-00013-1,0,4380_7778208_1901105,4380_1703 -4380_78130,289,4380_104747,Laytown,64778-00014-1,0,4380_7778208_1901109,4380_1703 -4380_78130,292,4380_104748,Laytown,64781-00016-1,0,4380_7778208_1901109,4380_1703 -4380_78130,293,4380_104749,Laytown,64783-00017-1,0,4380_7778208_1901109,4380_1703 -4380_77954,290,4380_10475,Dublin,55532-00015-1,1,4380_7778208_1110101,4380_206 -4380_78130,290,4380_104750,Laytown,64777-00015-1,0,4380_7778208_1901109,4380_1703 -4380_78130,294,4380_104751,Laytown,64775-00018-1,0,4380_7778208_1901109,4380_1703 -4380_78130,295,4380_104752,Laytown,64779-00019-1,0,4380_7778208_1901109,4380_1703 -4380_78130,296,4380_104753,Laytown,63298-00021-1,0,4380_7778208_1901105,4380_1703 -4380_78130,297,4380_104755,Laytown,63686-00008-1,0,4380_7778208_1901106,4380_1703 -4380_77954,291,4380_10476,Dublin,7355-00013-1,1,4380_7778208_1110101,4380_210 -4380_78130,285,4380_104762,Laytown,63693-00009-1,0,4380_7778208_1901106,4380_1703 -4380_78130,286,4380_104763,Laytown,63697-00010-1,0,4380_7778208_1901106,4380_1703 -4380_78130,288,4380_104764,Laytown,63691-00011-1,0,4380_7778208_1901106,4380_1703 -4380_78130,287,4380_104765,Laytown,63689-00012-1,0,4380_7778208_1901106,4380_1703 -4380_78130,291,4380_104766,Laytown,64784-00013-1,0,4380_7778208_1901109,4380_1703 -4380_78130,289,4380_104767,Laytown,63695-00014-1,0,4380_7778208_1901106,4380_1703 -4380_78130,292,4380_104768,Laytown,63698-00016-1,0,4380_7778208_1901106,4380_1703 -4380_78130,293,4380_104769,Laytown,63692-00017-1,0,4380_7778208_1901106,4380_1703 -4380_77954,292,4380_10477,Dublin,55529-00016-1,1,4380_7778208_1110101,4380_206 -4380_78130,290,4380_104770,Laytown,63694-00015-1,0,4380_7778208_1901106,4380_1703 -4380_78130,294,4380_104771,Laytown,63690-00018-1,0,4380_7778208_1901106,4380_1703 -4380_78130,295,4380_104772,Laytown,63696-00019-1,0,4380_7778208_1901106,4380_1703 -4380_78130,296,4380_104773,Laytown,64785-00021-1,0,4380_7778208_1901109,4380_1703 -4380_77954,293,4380_10478,Dublin,55531-00017-1,1,4380_7778208_1110101,4380_206 -4380_78130,285,4380_104780,Laytown,64434-00009-1,0,4380_7778208_1901108,4380_1703 -4380_78130,286,4380_104781,Laytown,64436-00010-1,0,4380_7778208_1901108,4380_1703 -4380_78130,288,4380_104782,Laytown,64444-00011-1,0,4380_7778208_1901108,4380_1703 -4380_78130,287,4380_104783,Laytown,64438-00012-1,0,4380_7778208_1901108,4380_1703 -4380_78130,291,4380_104784,Laytown,64440-00013-1,0,4380_7778208_1901108,4380_1703 -4380_78130,289,4380_104785,Laytown,64442-00014-1,0,4380_7778208_1901108,4380_1703 -4380_78130,292,4380_104786,Laytown,64437-00016-1,0,4380_7778208_1901108,4380_1703 -4380_78130,293,4380_104787,Laytown,64445-00017-1,0,4380_7778208_1901108,4380_1703 -4380_78130,290,4380_104788,Laytown,64435-00015-1,0,4380_7778208_1901108,4380_1703 -4380_78130,294,4380_104789,Laytown,64439-00018-1,0,4380_7778208_1901108,4380_1703 -4380_77954,294,4380_10479,Dublin,55528-00018-1,1,4380_7778208_1110101,4380_206 -4380_78130,295,4380_104790,Laytown,64443-00019-1,0,4380_7778208_1901108,4380_1703 -4380_78130,296,4380_104791,Laytown,64441-00021-1,0,4380_7778208_1901108,4380_1703 -4380_78130,297,4380_104793,Laytown,63322-00008-1,0,4380_7778208_1901105,4380_1703 -4380_78113,289,4380_1048,Dublin via Airport,49759-00014-1,1,4380_7778208_1000904,4380_18 -4380_77954,295,4380_10480,Dublin,55530-00019-1,1,4380_7778208_1110101,4380_206 -4380_78130,285,4380_104800,Laytown,63333-00009-1,0,4380_7778208_1901105,4380_1703 -4380_78130,286,4380_104801,Laytown,63329-00010-1,0,4380_7778208_1901105,4380_1703 -4380_78130,288,4380_104802,Laytown,63325-00011-1,0,4380_7778208_1901105,4380_1703 -4380_78130,287,4380_104803,Laytown,63327-00012-1,0,4380_7778208_1901105,4380_1703 -4380_78130,291,4380_104804,Laytown,63712-00013-1,0,4380_7778208_1901106,4380_1703 -4380_78130,289,4380_104805,Laytown,63331-00014-1,0,4380_7778208_1901105,4380_1703 -4380_78130,292,4380_104806,Laytown,63330-00016-1,0,4380_7778208_1901105,4380_1703 -4380_78130,293,4380_104807,Laytown,63326-00017-1,0,4380_7778208_1901105,4380_1703 -4380_78130,290,4380_104808,Laytown,63334-00015-1,0,4380_7778208_1901105,4380_1703 -4380_78130,294,4380_104809,Laytown,63328-00018-1,0,4380_7778208_1901105,4380_1703 -4380_77954,296,4380_10481,Dublin,55527-00021-1,1,4380_7778208_1110101,4380_210 -4380_78130,295,4380_104810,Laytown,63332-00019-1,0,4380_7778208_1901105,4380_1703 -4380_78130,296,4380_104811,Laytown,63713-00021-1,0,4380_7778208_1901106,4380_1703 -4380_78130,285,4380_104818,Laytown,64090-00009-1,0,4380_7778208_1901107,4380_1703 -4380_78130,286,4380_104819,Laytown,64092-00010-1,0,4380_7778208_1901107,4380_1703 -4380_78130,288,4380_104820,Laytown,64088-00011-1,0,4380_7778208_1901107,4380_1703 -4380_78130,287,4380_104821,Laytown,64094-00012-1,0,4380_7778208_1901107,4380_1703 -4380_78130,291,4380_104822,Laytown,64098-00013-1,0,4380_7778208_1901107,4380_1703 -4380_78130,289,4380_104823,Laytown,64096-00014-1,0,4380_7778208_1901107,4380_1703 -4380_78130,292,4380_104824,Laytown,64093-00016-1,0,4380_7778208_1901107,4380_1703 -4380_78130,293,4380_104825,Laytown,64089-00017-1,0,4380_7778208_1901107,4380_1703 -4380_78130,290,4380_104826,Laytown,64091-00015-1,0,4380_7778208_1901107,4380_1703 -4380_78130,294,4380_104827,Laytown,64095-00018-1,0,4380_7778208_1901107,4380_1703 -4380_78130,295,4380_104828,Laytown,64097-00019-1,0,4380_7778208_1901107,4380_1703 -4380_78130,296,4380_104829,Laytown,64099-00021-1,0,4380_7778208_1901107,4380_1703 -4380_78130,297,4380_104831,Laytown,64100-00008-1,0,4380_7778208_1901107,4380_1703 -4380_78130,285,4380_104838,Laytown,64828-00009-1,0,4380_7778208_1901109,4380_1703 -4380_78130,286,4380_104839,Laytown,64826-00010-1,0,4380_7778208_1901109,4380_1703 -4380_78130,288,4380_104840,Laytown,64830-00011-1,0,4380_7778208_1901109,4380_1703 -4380_78130,287,4380_104841,Laytown,64824-00012-1,0,4380_7778208_1901109,4380_1703 -4380_78130,291,4380_104842,Laytown,63348-00013-1,0,4380_7778208_1901105,4380_1703 -4380_78130,289,4380_104843,Laytown,64822-00014-1,0,4380_7778208_1901109,4380_1703 -4380_78130,292,4380_104844,Laytown,64827-00016-1,0,4380_7778208_1901109,4380_1703 -4380_78130,293,4380_104845,Laytown,64831-00017-1,0,4380_7778208_1901109,4380_1703 -4380_78130,290,4380_104846,Laytown,64829-00015-1,0,4380_7778208_1901109,4380_1703 -4380_78130,294,4380_104847,Laytown,64825-00018-1,0,4380_7778208_1901109,4380_1703 -4380_78130,295,4380_104848,Laytown,64823-00019-1,0,4380_7778208_1901109,4380_1703 -4380_78130,296,4380_104849,Laytown,63349-00021-1,0,4380_7778208_1901105,4380_1703 -4380_78130,285,4380_104856,Laytown,63746-00009-1,0,4380_7778208_1901106,4380_1703 -4380_78130,286,4380_104857,Laytown,63740-00010-1,0,4380_7778208_1901106,4380_1703 -4380_78130,288,4380_104858,Laytown,63742-00011-1,0,4380_7778208_1901106,4380_1703 -4380_78130,287,4380_104859,Laytown,63744-00012-1,0,4380_7778208_1901106,4380_1703 -4380_78130,291,4380_104860,Laytown,64832-00013-1,0,4380_7778208_1901109,4380_1703 -4380_78130,289,4380_104861,Laytown,63748-00014-1,0,4380_7778208_1901106,4380_1703 -4380_78130,292,4380_104862,Laytown,63741-00016-1,0,4380_7778208_1901106,4380_1703 -4380_78130,293,4380_104863,Laytown,63743-00017-1,0,4380_7778208_1901106,4380_1703 -4380_78130,290,4380_104864,Laytown,63747-00015-1,0,4380_7778208_1901106,4380_1703 -4380_78130,294,4380_104865,Laytown,63745-00018-1,0,4380_7778208_1901106,4380_1703 -4380_78130,295,4380_104866,Laytown,63749-00019-1,0,4380_7778208_1901106,4380_1703 -4380_78130,296,4380_104867,Laytown,64833-00021-1,0,4380_7778208_1901109,4380_1703 -4380_78130,297,4380_104869,Laytown,63750-00008-1,0,4380_7778208_1901106,4380_1703 -4380_78130,285,4380_104876,Laytown,64486-00009-1,0,4380_7778208_1901108,4380_1703 -4380_78130,286,4380_104877,Laytown,64488-00010-1,0,4380_7778208_1901108,4380_1703 -4380_78130,288,4380_104878,Laytown,64490-00011-1,0,4380_7778208_1901108,4380_1703 -4380_78130,287,4380_104879,Laytown,64492-00012-1,0,4380_7778208_1901108,4380_1703 -4380_77954,285,4380_10488,Drop Off,7535-00009-1,1,4380_7778208_1110104,4380_208 -4380_78130,291,4380_104880,Laytown,64484-00013-1,0,4380_7778208_1901108,4380_1703 -4380_78130,289,4380_104881,Laytown,64482-00014-1,0,4380_7778208_1901108,4380_1703 -4380_78130,292,4380_104882,Laytown,64489-00016-1,0,4380_7778208_1901108,4380_1703 -4380_78130,293,4380_104883,Laytown,64491-00017-1,0,4380_7778208_1901108,4380_1703 -4380_78130,290,4380_104884,Laytown,64487-00015-1,0,4380_7778208_1901108,4380_1703 -4380_78130,294,4380_104885,Laytown,64493-00018-1,0,4380_7778208_1901108,4380_1703 -4380_78130,295,4380_104886,Laytown,64483-00019-1,0,4380_7778208_1901108,4380_1703 -4380_78130,296,4380_104887,Laytown,64485-00021-1,0,4380_7778208_1901108,4380_1703 -4380_77954,286,4380_10489,Drop Off,7547-00010-1,1,4380_7778208_1110104,4380_208 -4380_78130,285,4380_104894,Laytown,63378-00009-1,0,4380_7778208_1901105,4380_1703 -4380_78130,286,4380_104895,Laytown,63384-00010-1,0,4380_7778208_1901105,4380_1703 -4380_78130,288,4380_104896,Laytown,63376-00011-1,0,4380_7778208_1901105,4380_1703 -4380_78130,287,4380_104897,Laytown,63380-00012-1,0,4380_7778208_1901105,4380_1703 -4380_78130,291,4380_104898,Laytown,63764-00013-1,0,4380_7778208_1901106,4380_1703 -4380_78130,289,4380_104899,Laytown,63382-00014-1,0,4380_7778208_1901105,4380_1703 -4380_78113,290,4380_1049,Dublin via Airport,49758-00015-1,1,4380_7778208_1000904,4380_18 -4380_77954,288,4380_10490,Drop Off,7559-00011-1,1,4380_7778208_1110104,4380_208 -4380_78130,292,4380_104900,Laytown,63385-00016-1,0,4380_7778208_1901105,4380_1703 -4380_78130,293,4380_104901,Laytown,63377-00017-1,0,4380_7778208_1901105,4380_1703 -4380_78130,290,4380_104902,Laytown,63379-00015-1,0,4380_7778208_1901105,4380_1703 -4380_78130,294,4380_104903,Laytown,63381-00018-1,0,4380_7778208_1901105,4380_1703 -4380_78130,295,4380_104904,Laytown,63383-00019-1,0,4380_7778208_1901105,4380_1703 -4380_78130,296,4380_104905,Laytown,63765-00021-1,0,4380_7778208_1901106,4380_1703 -4380_78130,297,4380_104907,Laytown,63386-00008-1,0,4380_7778208_1901105,4380_1703 -4380_77954,287,4380_10491,Drop Off,7571-00012-1,1,4380_7778208_1110104,4380_208 -4380_78130,285,4380_104914,Laytown,64140-00009-1,0,4380_7778208_1901107,4380_1703 -4380_78130,286,4380_104915,Laytown,64150-00010-1,0,4380_7778208_1901107,4380_1703 -4380_78130,288,4380_104916,Laytown,64146-00011-1,0,4380_7778208_1901107,4380_1703 -4380_78130,287,4380_104917,Laytown,64142-00012-1,0,4380_7778208_1901107,4380_1703 -4380_78130,291,4380_104918,Laytown,64144-00013-1,0,4380_7778208_1901107,4380_1703 -4380_78130,289,4380_104919,Laytown,64148-00014-1,0,4380_7778208_1901107,4380_1703 -4380_77954,289,4380_10492,Drop Off,7523-00014-1,1,4380_7778208_1110104,4380_208 -4380_78130,292,4380_104920,Laytown,64151-00016-1,0,4380_7778208_1901107,4380_1703 -4380_78130,293,4380_104921,Laytown,64147-00017-1,0,4380_7778208_1901107,4380_1703 -4380_78130,290,4380_104922,Laytown,64141-00015-1,0,4380_7778208_1901107,4380_1703 -4380_78130,294,4380_104923,Laytown,64143-00018-1,0,4380_7778208_1901107,4380_1703 -4380_78130,295,4380_104924,Laytown,64149-00019-1,0,4380_7778208_1901107,4380_1703 -4380_78130,296,4380_104925,Laytown,64145-00021-1,0,4380_7778208_1901107,4380_1703 -4380_77954,290,4380_10493,Drop Off,55631-00015-1,1,4380_7778208_1110104,4380_208 -4380_78130,285,4380_104931,Drogheda,63026-00009-1,1,4380_7778208_1901105,4380_1704 -4380_78130,286,4380_104932,Drogheda,63036-00010-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_104933,Drogheda,63034-00011-1,1,4380_7778208_1901105,4380_1704 -4380_78130,287,4380_104934,Drogheda,63028-00012-1,1,4380_7778208_1901105,4380_1704 -4380_78130,289,4380_104935,Drogheda,63032-00014-1,1,4380_7778208_1901105,4380_1704 -4380_78130,292,4380_104936,Drogheda,63037-00016-1,1,4380_7778208_1901105,4380_1704 -4380_78130,293,4380_104937,Drogheda,63035-00017-1,1,4380_7778208_1901105,4380_1704 -4380_78130,290,4380_104938,Drogheda,63027-00015-1,1,4380_7778208_1901105,4380_1704 -4380_78130,294,4380_104939,Drogheda,63029-00018-1,1,4380_7778208_1901105,4380_1704 -4380_77954,291,4380_10494,Drop Off,7438-00013-1,1,4380_7778208_1110102,4380_211 -4380_78130,295,4380_104940,Drogheda,63033-00019-1,1,4380_7778208_1901105,4380_1704 -4380_78130,285,4380_104947,Drogheda,63806-00009-1,1,4380_7778208_1901107,4380_1704 -4380_78130,286,4380_104948,Drogheda,63798-00010-1,1,4380_7778208_1901107,4380_1704 -4380_78130,288,4380_104949,Drogheda,63800-00011-1,1,4380_7778208_1901107,4380_1704 -4380_77954,292,4380_10495,Drop Off,55629-00016-1,1,4380_7778208_1110104,4380_208 -4380_78130,287,4380_104950,Drogheda,63802-00012-1,1,4380_7778208_1901107,4380_1704 -4380_78130,291,4380_104951,Drogheda,63426-00013-1,1,4380_7778208_1901106,4380_1704 -4380_78130,289,4380_104952,Drogheda,63804-00014-1,1,4380_7778208_1901107,4380_1704 -4380_78130,292,4380_104953,Drogheda,63799-00016-1,1,4380_7778208_1901107,4380_1704 -4380_78130,293,4380_104954,Drogheda,63801-00017-1,1,4380_7778208_1901107,4380_1704 -4380_78130,290,4380_104955,Drogheda,63807-00015-1,1,4380_7778208_1901107,4380_1704 -4380_78130,294,4380_104956,Drogheda,63803-00018-1,1,4380_7778208_1901107,4380_1704 -4380_78130,295,4380_104957,Drogheda,63805-00019-1,1,4380_7778208_1901107,4380_1704 -4380_78130,296,4380_104958,Drogheda,63427-00021-1,1,4380_7778208_1901106,4380_1704 -4380_77954,293,4380_10496,Drop Off,55633-00017-1,1,4380_7778208_1110104,4380_208 -4380_78130,285,4380_104964,Drogheda,64542-00009-1,1,4380_7778208_1901109,4380_1704 -4380_78130,286,4380_104965,Drogheda,64544-00010-1,1,4380_7778208_1901109,4380_1704 -4380_78130,288,4380_104966,Drogheda,64548-00011-1,1,4380_7778208_1901109,4380_1704 -4380_78130,287,4380_104967,Drogheda,64546-00012-1,1,4380_7778208_1901109,4380_1704 -4380_78130,289,4380_104968,Drogheda,64540-00014-1,1,4380_7778208_1901109,4380_1704 -4380_78130,292,4380_104969,Drogheda,64545-00016-1,1,4380_7778208_1901109,4380_1704 -4380_77954,294,4380_10497,Drop Off,55632-00018-1,1,4380_7778208_1110104,4380_208 -4380_78130,293,4380_104970,Drogheda,64549-00017-1,1,4380_7778208_1901109,4380_1704 -4380_78130,290,4380_104971,Drogheda,64543-00015-1,1,4380_7778208_1901109,4380_1704 -4380_78130,294,4380_104972,Drogheda,64547-00018-1,1,4380_7778208_1901109,4380_1704 -4380_78130,295,4380_104973,Drogheda,64541-00019-1,1,4380_7778208_1901109,4380_1704 -4380_77954,295,4380_10498,Drop Off,55630-00019-1,1,4380_7778208_1110104,4380_208 -4380_78130,285,4380_104981,Drogheda,63442-00009-1,1,4380_7778208_1901106,4380_1704 -4380_78130,286,4380_104982,Drogheda,63449-00010-1,1,4380_7778208_1901106,4380_1704 -4380_78130,297,4380_104983,Drogheda,63065-00008-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_104984,Drogheda,63444-00011-1,1,4380_7778208_1901106,4380_1704 -4380_78130,287,4380_104985,Drogheda,63451-00012-1,1,4380_7778208_1901106,4380_1704 -4380_78130,291,4380_104986,Drogheda,63440-00013-1,1,4380_7778208_1901106,4380_1704 -4380_78130,289,4380_104987,Drogheda,63446-00014-1,1,4380_7778208_1901106,4380_1704 -4380_78130,292,4380_104988,Drogheda,63450-00016-1,1,4380_7778208_1901106,4380_1704 -4380_78130,293,4380_104989,Drogheda,63445-00017-1,1,4380_7778208_1901106,4380_1704 -4380_77954,296,4380_10499,Drop Off,55570-00021-1,1,4380_7778208_1110102,4380_211 -4380_78130,290,4380_104990,Drogheda,63443-00015-1,1,4380_7778208_1901106,4380_1704 -4380_78130,294,4380_104991,Drogheda,63452-00018-1,1,4380_7778208_1901106,4380_1704 -4380_78130,295,4380_104992,Drogheda,63447-00019-1,1,4380_7778208_1901106,4380_1704 -4380_78130,296,4380_104993,Drogheda,63441-00021-1,1,4380_7778208_1901106,4380_1704 -4380_78130,285,4380_104999,Drogheda,64196-00009-1,1,4380_7778208_1901108,4380_1704 -4380_78113,291,4380_1050,Dublin via Airport,49761-00013-1,1,4380_7778208_1000904,4380_20 -4380_78130,286,4380_105000,Drogheda,64198-00010-1,1,4380_7778208_1901108,4380_1704 -4380_78130,288,4380_105001,Drogheda,64200-00011-1,1,4380_7778208_1901108,4380_1704 -4380_78130,287,4380_105002,Drogheda,64204-00012-1,1,4380_7778208_1901108,4380_1704 -4380_78130,289,4380_105003,Drogheda,64202-00014-1,1,4380_7778208_1901108,4380_1704 -4380_78130,292,4380_105004,Drogheda,64199-00016-1,1,4380_7778208_1901108,4380_1704 -4380_78130,293,4380_105005,Drogheda,64201-00017-1,1,4380_7778208_1901108,4380_1704 -4380_78130,290,4380_105006,Drogheda,64197-00015-1,1,4380_7778208_1901108,4380_1704 -4380_78130,294,4380_105007,Drogheda,64205-00018-1,1,4380_7778208_1901108,4380_1704 -4380_78130,295,4380_105008,Drogheda,64203-00019-1,1,4380_7778208_1901108,4380_1704 -4380_77954,297,4380_10501,Dublin,7660-00008-1,1,4380_7778208_1110105,4380_206 -4380_78130,285,4380_105016,Drogheda,63082-00009-1,1,4380_7778208_1901105,4380_1704 -4380_78130,286,4380_105017,Drogheda,63087-00010-1,1,4380_7778208_1901105,4380_1704 -4380_78130,297,4380_105018,Drogheda,63841-00008-1,1,4380_7778208_1901107,4380_1704 -4380_78130,288,4380_105019,Drogheda,63084-00011-1,1,4380_7778208_1901105,4380_1704 -4380_78130,287,4380_105020,Drogheda,63078-00012-1,1,4380_7778208_1901105,4380_1704 -4380_78130,291,4380_105021,Drogheda,63466-00013-1,1,4380_7778208_1901106,4380_1704 -4380_78130,289,4380_105022,Drogheda,63080-00014-1,1,4380_7778208_1901105,4380_1704 -4380_78130,292,4380_105023,Drogheda,63088-00016-1,1,4380_7778208_1901105,4380_1704 -4380_78130,293,4380_105024,Drogheda,63085-00017-1,1,4380_7778208_1901105,4380_1704 -4380_78130,290,4380_105025,Drogheda,63083-00015-1,1,4380_7778208_1901105,4380_1704 -4380_78130,294,4380_105026,Drogheda,63079-00018-1,1,4380_7778208_1901105,4380_1704 -4380_78130,295,4380_105027,Drogheda,63081-00019-1,1,4380_7778208_1901105,4380_1704 -4380_78130,296,4380_105028,Drogheda,63467-00021-1,1,4380_7778208_1901106,4380_1704 -4380_78130,285,4380_105035,Drogheda,63844-00009-1,1,4380_7778208_1901107,4380_1704 -4380_78130,286,4380_105036,Drogheda,63852-00010-1,1,4380_7778208_1901107,4380_1704 -4380_78130,288,4380_105037,Drogheda,63842-00011-1,1,4380_7778208_1901107,4380_1704 -4380_78130,287,4380_105038,Drogheda,63850-00012-1,1,4380_7778208_1901107,4380_1704 -4380_78130,291,4380_105039,Drogheda,63848-00013-1,1,4380_7778208_1901107,4380_1704 -4380_78130,289,4380_105040,Drogheda,63846-00014-1,1,4380_7778208_1901107,4380_1704 -4380_78130,292,4380_105041,Drogheda,63853-00016-1,1,4380_7778208_1901107,4380_1704 -4380_78130,293,4380_105042,Drogheda,63843-00017-1,1,4380_7778208_1901107,4380_1704 -4380_78130,290,4380_105043,Drogheda,63845-00015-1,1,4380_7778208_1901107,4380_1704 -4380_78130,294,4380_105044,Drogheda,63851-00018-1,1,4380_7778208_1901107,4380_1704 -4380_78130,295,4380_105045,Drogheda,63847-00019-1,1,4380_7778208_1901107,4380_1704 -4380_78130,296,4380_105046,Drogheda,63849-00021-1,1,4380_7778208_1901107,4380_1704 -4380_78130,285,4380_105054,Drogheda,64586-00009-1,1,4380_7778208_1901109,4380_1704 -4380_78130,286,4380_105055,Drogheda,64582-00010-1,1,4380_7778208_1901109,4380_1704 -4380_78130,297,4380_105056,Drogheda,63491-00008-1,1,4380_7778208_1901106,4380_1704 -4380_78130,288,4380_105057,Drogheda,64590-00011-1,1,4380_7778208_1901109,4380_1704 -4380_78130,287,4380_105058,Drogheda,64588-00012-1,1,4380_7778208_1901109,4380_1704 -4380_78130,291,4380_105059,Drogheda,63102-00013-1,1,4380_7778208_1901105,4380_1704 -4380_78130,289,4380_105060,Drogheda,64584-00014-1,1,4380_7778208_1901109,4380_1704 -4380_78130,292,4380_105061,Drogheda,64583-00016-1,1,4380_7778208_1901109,4380_1704 -4380_78130,293,4380_105062,Drogheda,64591-00017-1,1,4380_7778208_1901109,4380_1704 -4380_78130,290,4380_105063,Drogheda,64587-00015-1,1,4380_7778208_1901109,4380_1704 -4380_78130,294,4380_105064,Drogheda,64589-00018-1,1,4380_7778208_1901109,4380_1704 -4380_78130,295,4380_105065,Drogheda,64585-00019-1,1,4380_7778208_1901109,4380_1704 -4380_78130,296,4380_105066,Drogheda,63103-00021-1,1,4380_7778208_1901105,4380_1704 -4380_78130,285,4380_105073,Drogheda,63494-00009-1,1,4380_7778208_1901106,4380_1704 -4380_78130,286,4380_105074,Drogheda,63498-00010-1,1,4380_7778208_1901106,4380_1704 -4380_78130,288,4380_105075,Drogheda,63496-00011-1,1,4380_7778208_1901106,4380_1704 -4380_78130,287,4380_105076,Drogheda,63502-00012-1,1,4380_7778208_1901106,4380_1704 -4380_78130,291,4380_105077,Drogheda,64592-00013-1,1,4380_7778208_1901109,4380_1704 -4380_78130,289,4380_105078,Drogheda,63500-00014-1,1,4380_7778208_1901106,4380_1704 -4380_78130,292,4380_105079,Drogheda,63499-00016-1,1,4380_7778208_1901106,4380_1704 -4380_78130,293,4380_105080,Drogheda,63497-00017-1,1,4380_7778208_1901106,4380_1704 -4380_78130,290,4380_105081,Drogheda,63495-00015-1,1,4380_7778208_1901106,4380_1704 -4380_78130,294,4380_105082,Drogheda,63503-00018-1,1,4380_7778208_1901106,4380_1704 -4380_78130,295,4380_105083,Drogheda,63501-00019-1,1,4380_7778208_1901106,4380_1704 -4380_78130,296,4380_105084,Drogheda,64593-00021-1,1,4380_7778208_1901109,4380_1704 -4380_77954,285,4380_10509,Dublin,7681-00009-1,1,4380_7778208_1110106,4380_206 -4380_78130,285,4380_105092,Drogheda,64244-00009-1,1,4380_7778208_1901108,4380_1704 -4380_78130,286,4380_105093,Drogheda,64252-00010-1,1,4380_7778208_1901108,4380_1704 -4380_78130,297,4380_105094,Drogheda,63127-00008-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_105095,Drogheda,64248-00011-1,1,4380_7778208_1901108,4380_1704 -4380_78130,287,4380_105096,Drogheda,64246-00012-1,1,4380_7778208_1901108,4380_1704 -4380_78130,291,4380_105097,Drogheda,64242-00013-1,1,4380_7778208_1901108,4380_1704 -4380_78130,289,4380_105098,Drogheda,64250-00014-1,1,4380_7778208_1901108,4380_1704 -4380_78130,292,4380_105099,Drogheda,64253-00016-1,1,4380_7778208_1901108,4380_1704 -4380_78113,292,4380_1051,Dublin via Airport,49764-00016-1,1,4380_7778208_1000904,4380_18 -4380_77954,286,4380_10510,Dublin,7695-00010-1,1,4380_7778208_1110106,4380_206 -4380_78130,293,4380_105100,Drogheda,64249-00017-1,1,4380_7778208_1901108,4380_1704 -4380_78130,290,4380_105101,Drogheda,64245-00015-1,1,4380_7778208_1901108,4380_1704 -4380_78130,294,4380_105102,Drogheda,64247-00018-1,1,4380_7778208_1901108,4380_1704 -4380_78130,295,4380_105103,Drogheda,64251-00019-1,1,4380_7778208_1901108,4380_1704 -4380_78130,296,4380_105104,Drogheda,64243-00021-1,1,4380_7778208_1901108,4380_1704 -4380_77954,297,4380_10511,Dublin,7732-00008-1,1,4380_7778208_1110106,4380_209 -4380_78130,285,4380_105111,Drogheda,63138-00009-1,1,4380_7778208_1901105,4380_1704 -4380_78130,286,4380_105112,Drogheda,63132-00010-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_105113,Drogheda,63130-00011-1,1,4380_7778208_1901105,4380_1704 -4380_78130,287,4380_105114,Drogheda,63134-00012-1,1,4380_7778208_1901105,4380_1704 -4380_78130,291,4380_105115,Drogheda,63517-00013-1,1,4380_7778208_1901106,4380_1704 -4380_78130,289,4380_105116,Drogheda,63136-00014-1,1,4380_7778208_1901105,4380_1704 -4380_78130,292,4380_105117,Drogheda,63133-00016-1,1,4380_7778208_1901105,4380_1704 -4380_78130,293,4380_105118,Drogheda,63131-00017-1,1,4380_7778208_1901105,4380_1704 -4380_78130,290,4380_105119,Drogheda,63139-00015-1,1,4380_7778208_1901105,4380_1704 -4380_77954,288,4380_10512,Dublin,7705-00011-1,1,4380_7778208_1110106,4380_206 -4380_78130,294,4380_105120,Drogheda,63135-00018-1,1,4380_7778208_1901105,4380_1704 -4380_78130,295,4380_105121,Drogheda,63137-00019-1,1,4380_7778208_1901105,4380_1704 -4380_78130,296,4380_105122,Drogheda,63518-00021-1,1,4380_7778208_1901106,4380_1704 -4380_77954,287,4380_10513,Dublin,7715-00012-1,1,4380_7778208_1110106,4380_206 -4380_78130,285,4380_105130,Drogheda,63904-00009-1,1,4380_7778208_1901107,4380_1704 -4380_78130,286,4380_105131,Drogheda,63893-00010-1,1,4380_7778208_1901107,4380_1704 -4380_78130,297,4380_105132,Drogheda,63901-00008-1,1,4380_7778208_1901107,4380_1704 -4380_78130,288,4380_105133,Drogheda,63897-00011-1,1,4380_7778208_1901107,4380_1704 -4380_78130,287,4380_105134,Drogheda,63899-00012-1,1,4380_7778208_1901107,4380_1704 -4380_78130,291,4380_105135,Drogheda,63902-00013-1,1,4380_7778208_1901107,4380_1704 -4380_78130,289,4380_105136,Drogheda,63895-00014-1,1,4380_7778208_1901107,4380_1704 -4380_78130,292,4380_105137,Drogheda,63894-00016-1,1,4380_7778208_1901107,4380_1704 -4380_78130,293,4380_105138,Drogheda,63898-00017-1,1,4380_7778208_1901107,4380_1704 -4380_78130,290,4380_105139,Drogheda,63905-00015-1,1,4380_7778208_1901107,4380_1704 -4380_77954,289,4380_10514,Dublin,7671-00014-1,1,4380_7778208_1110106,4380_206 -4380_78130,294,4380_105140,Drogheda,63900-00018-1,1,4380_7778208_1901107,4380_1704 -4380_78130,295,4380_105141,Drogheda,63896-00019-1,1,4380_7778208_1901107,4380_1704 -4380_78130,296,4380_105142,Drogheda,63903-00021-1,1,4380_7778208_1901107,4380_1704 -4380_77954,290,4380_10515,Dublin,55703-00015-1,1,4380_7778208_1110106,4380_206 -4380_78130,285,4380_105150,Drogheda,64633-00009-1,1,4380_7778208_1901109,4380_1704 -4380_78130,286,4380_105151,Drogheda,64637-00010-1,1,4380_7778208_1901109,4380_1704 -4380_78130,297,4380_105152,Drogheda,63543-00008-1,1,4380_7778208_1901106,4380_1704 -4380_78130,288,4380_105153,Drogheda,64635-00011-1,1,4380_7778208_1901109,4380_1704 -4380_78130,287,4380_105154,Drogheda,64631-00012-1,1,4380_7778208_1901109,4380_1704 -4380_78130,291,4380_105155,Drogheda,63154-00013-1,1,4380_7778208_1901105,4380_1704 -4380_78130,289,4380_105156,Drogheda,64639-00014-1,1,4380_7778208_1901109,4380_1704 -4380_78130,292,4380_105157,Drogheda,64638-00016-1,1,4380_7778208_1901109,4380_1704 -4380_78130,293,4380_105158,Drogheda,64636-00017-1,1,4380_7778208_1901109,4380_1704 -4380_78130,290,4380_105159,Drogheda,64634-00015-1,1,4380_7778208_1901109,4380_1704 -4380_77954,291,4380_10516,Dublin,7499-00013-1,1,4380_7778208_1110103,4380_210 -4380_78130,294,4380_105160,Drogheda,64632-00018-1,1,4380_7778208_1901109,4380_1704 -4380_78130,295,4380_105161,Drogheda,64640-00019-1,1,4380_7778208_1901109,4380_1704 -4380_78130,296,4380_105162,Drogheda,63155-00021-1,1,4380_7778208_1901105,4380_1704 -4380_77954,292,4380_10517,Dublin,55704-00016-1,1,4380_7778208_1110106,4380_206 -4380_78130,285,4380_105170,Drogheda,63548-00009-1,1,4380_7778208_1901106,4380_1704 -4380_78130,286,4380_105171,Drogheda,63546-00010-1,1,4380_7778208_1901106,4380_1704 -4380_78130,297,4380_105172,Drogheda,64641-00008-1,1,4380_7778208_1901109,4380_1704 -4380_78130,288,4380_105173,Drogheda,63554-00011-1,1,4380_7778208_1901106,4380_1704 -4380_78130,287,4380_105174,Drogheda,63552-00012-1,1,4380_7778208_1901106,4380_1704 -4380_78130,291,4380_105175,Drogheda,64642-00013-1,1,4380_7778208_1901109,4380_1704 -4380_78130,289,4380_105176,Drogheda,63550-00014-1,1,4380_7778208_1901106,4380_1704 -4380_78130,292,4380_105177,Drogheda,63547-00016-1,1,4380_7778208_1901106,4380_1704 -4380_78130,293,4380_105178,Drogheda,63555-00017-1,1,4380_7778208_1901106,4380_1704 -4380_78130,290,4380_105179,Drogheda,63549-00015-1,1,4380_7778208_1901106,4380_1704 -4380_77954,293,4380_10518,Dublin,55702-00017-1,1,4380_7778208_1110106,4380_206 -4380_78130,294,4380_105180,Drogheda,63553-00018-1,1,4380_7778208_1901106,4380_1704 -4380_78130,295,4380_105181,Drogheda,63551-00019-1,1,4380_7778208_1901106,4380_1704 -4380_78130,296,4380_105182,Drogheda,64643-00021-1,1,4380_7778208_1901109,4380_1704 -4380_77954,294,4380_10519,Dublin,55701-00018-1,1,4380_7778208_1110106,4380_206 -4380_78130,285,4380_105190,Drogheda,64303-00009-1,1,4380_7778208_1901108,4380_1704 -4380_78130,286,4380_105191,Drogheda,64294-00010-1,1,4380_7778208_1901108,4380_1704 -4380_78130,297,4380_105192,Drogheda,63179-00008-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_105193,Drogheda,64292-00011-1,1,4380_7778208_1901108,4380_1704 -4380_78130,287,4380_105194,Drogheda,64297-00012-1,1,4380_7778208_1901108,4380_1704 -4380_78130,291,4380_105195,Drogheda,64301-00013-1,1,4380_7778208_1901108,4380_1704 -4380_78130,289,4380_105196,Drogheda,64299-00014-1,1,4380_7778208_1901108,4380_1704 -4380_78130,292,4380_105197,Drogheda,64295-00016-1,1,4380_7778208_1901108,4380_1704 -4380_78130,293,4380_105198,Drogheda,64293-00017-1,1,4380_7778208_1901108,4380_1704 -4380_78130,290,4380_105199,Drogheda,64304-00015-1,1,4380_7778208_1901108,4380_1704 -4380_78113,293,4380_1052,Dublin via Airport,49766-00017-1,1,4380_7778208_1000904,4380_18 -4380_77954,295,4380_10520,Dublin,55700-00019-1,1,4380_7778208_1110106,4380_206 -4380_78130,294,4380_105200,Drogheda,64298-00018-1,1,4380_7778208_1901108,4380_1704 -4380_78130,295,4380_105201,Drogheda,64300-00019-1,1,4380_7778208_1901108,4380_1704 -4380_78130,296,4380_105202,Drogheda,64302-00021-1,1,4380_7778208_1901108,4380_1704 -4380_77954,296,4380_10521,Dublin,55603-00021-1,1,4380_7778208_1110103,4380_210 -4380_78130,285,4380_105210,Drogheda,63188-00009-1,1,4380_7778208_1901105,4380_1704 -4380_78130,286,4380_105211,Drogheda,63182-00010-1,1,4380_7778208_1901105,4380_1704 -4380_78130,297,4380_105212,Drogheda,64305-00008-1,1,4380_7778208_1901108,4380_1704 -4380_78130,288,4380_105213,Drogheda,63184-00011-1,1,4380_7778208_1901105,4380_1704 -4380_78130,287,4380_105214,Drogheda,63190-00012-1,1,4380_7778208_1901105,4380_1704 -4380_78130,291,4380_105215,Drogheda,63570-00013-1,1,4380_7778208_1901106,4380_1704 -4380_78130,289,4380_105216,Drogheda,63186-00014-1,1,4380_7778208_1901105,4380_1704 -4380_78130,292,4380_105217,Drogheda,63183-00016-1,1,4380_7778208_1901105,4380_1704 -4380_78130,293,4380_105218,Drogheda,63185-00017-1,1,4380_7778208_1901105,4380_1704 -4380_78130,290,4380_105219,Drogheda,63189-00015-1,1,4380_7778208_1901105,4380_1704 -4380_78130,294,4380_105220,Drogheda,63191-00018-1,1,4380_7778208_1901105,4380_1704 -4380_78130,295,4380_105221,Drogheda,63187-00019-1,1,4380_7778208_1901105,4380_1704 -4380_78130,296,4380_105222,Drogheda,63571-00021-1,1,4380_7778208_1901106,4380_1704 -4380_78130,285,4380_105230,Drogheda,63949-00009-1,1,4380_7778208_1901107,4380_1704 -4380_78130,286,4380_105231,Drogheda,63945-00010-1,1,4380_7778208_1901107,4380_1704 -4380_78130,297,4380_105232,Drogheda,63951-00008-1,1,4380_7778208_1901107,4380_1704 -4380_78130,288,4380_105233,Drogheda,63947-00011-1,1,4380_7778208_1901107,4380_1704 -4380_78130,287,4380_105234,Drogheda,63956-00012-1,1,4380_7778208_1901107,4380_1704 -4380_78130,291,4380_105235,Drogheda,63954-00013-1,1,4380_7778208_1901107,4380_1704 -4380_78130,289,4380_105236,Drogheda,63952-00014-1,1,4380_7778208_1901107,4380_1704 -4380_78130,292,4380_105237,Drogheda,63946-00016-1,1,4380_7778208_1901107,4380_1704 -4380_78130,293,4380_105238,Drogheda,63948-00017-1,1,4380_7778208_1901107,4380_1704 -4380_78130,290,4380_105239,Drogheda,63950-00015-1,1,4380_7778208_1901107,4380_1704 -4380_78130,294,4380_105240,Drogheda,63957-00018-1,1,4380_7778208_1901107,4380_1704 -4380_78130,295,4380_105241,Drogheda,63953-00019-1,1,4380_7778208_1901107,4380_1704 -4380_78130,296,4380_105242,Drogheda,63955-00021-1,1,4380_7778208_1901107,4380_1704 -4380_78130,285,4380_105250,Drogheda,64682-00009-1,1,4380_7778208_1901109,4380_1704 -4380_78130,286,4380_105251,Drogheda,64684-00010-1,1,4380_7778208_1901109,4380_1704 -4380_78130,297,4380_105252,Drogheda,63595-00008-1,1,4380_7778208_1901106,4380_1704 -4380_78130,288,4380_105253,Drogheda,64691-00011-1,1,4380_7778208_1901109,4380_1704 -4380_78130,287,4380_105254,Drogheda,64686-00012-1,1,4380_7778208_1901109,4380_1704 -4380_78130,291,4380_105255,Drogheda,63206-00013-1,1,4380_7778208_1901105,4380_1704 -4380_78130,289,4380_105256,Drogheda,64688-00014-1,1,4380_7778208_1901109,4380_1704 -4380_78130,292,4380_105257,Drogheda,64685-00016-1,1,4380_7778208_1901109,4380_1704 -4380_78130,293,4380_105258,Drogheda,64692-00017-1,1,4380_7778208_1901109,4380_1704 -4380_78130,290,4380_105259,Drogheda,64683-00015-1,1,4380_7778208_1901109,4380_1704 -4380_78130,294,4380_105260,Drogheda,64687-00018-1,1,4380_7778208_1901109,4380_1704 -4380_78130,295,4380_105261,Drogheda,64689-00019-1,1,4380_7778208_1901109,4380_1704 -4380_78130,296,4380_105262,Drogheda,63207-00021-1,1,4380_7778208_1901105,4380_1704 -4380_78130,285,4380_105270,Drogheda,63606-00009-1,1,4380_7778208_1901106,4380_1704 -4380_78130,286,4380_105271,Drogheda,63598-00010-1,1,4380_7778208_1901106,4380_1704 -4380_78130,297,4380_105272,Drogheda,64695-00008-1,1,4380_7778208_1901109,4380_1704 -4380_78130,288,4380_105273,Drogheda,63602-00011-1,1,4380_7778208_1901106,4380_1704 -4380_78130,287,4380_105274,Drogheda,63604-00012-1,1,4380_7778208_1901106,4380_1704 -4380_78130,291,4380_105275,Drogheda,64693-00013-1,1,4380_7778208_1901109,4380_1704 -4380_78130,289,4380_105276,Drogheda,63600-00014-1,1,4380_7778208_1901106,4380_1704 -4380_78130,292,4380_105277,Drogheda,63599-00016-1,1,4380_7778208_1901106,4380_1704 -4380_78130,293,4380_105278,Drogheda,63603-00017-1,1,4380_7778208_1901106,4380_1704 -4380_78130,290,4380_105279,Drogheda,63607-00015-1,1,4380_7778208_1901106,4380_1704 -4380_78130,294,4380_105280,Drogheda,63605-00018-1,1,4380_7778208_1901106,4380_1704 -4380_78130,295,4380_105281,Drogheda,63601-00019-1,1,4380_7778208_1901106,4380_1704 -4380_78130,296,4380_105282,Drogheda,64694-00021-1,1,4380_7778208_1901109,4380_1704 -4380_77954,285,4380_10529,Dublin,7745-00009-1,1,4380_7778208_1110107,4380_206 -4380_78130,285,4380_105290,Drogheda,64346-00009-1,1,4380_7778208_1901108,4380_1704 -4380_78130,286,4380_105291,Drogheda,64348-00010-1,1,4380_7778208_1901108,4380_1704 -4380_78130,297,4380_105292,Drogheda,63231-00008-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_105293,Drogheda,64350-00011-1,1,4380_7778208_1901108,4380_1704 -4380_78130,287,4380_105294,Drogheda,64355-00012-1,1,4380_7778208_1901108,4380_1704 -4380_78130,291,4380_105295,Drogheda,64344-00013-1,1,4380_7778208_1901108,4380_1704 -4380_78130,289,4380_105296,Drogheda,64352-00014-1,1,4380_7778208_1901108,4380_1704 -4380_78130,292,4380_105297,Drogheda,64349-00016-1,1,4380_7778208_1901108,4380_1704 -4380_78130,293,4380_105298,Drogheda,64351-00017-1,1,4380_7778208_1901108,4380_1704 -4380_78130,290,4380_105299,Drogheda,64347-00015-1,1,4380_7778208_1901108,4380_1704 -4380_78113,294,4380_1053,Dublin via Airport,49768-00018-1,1,4380_7778208_1000904,4380_18 -4380_77954,286,4380_10530,Dublin,7755-00010-1,1,4380_7778208_1110107,4380_206 -4380_78130,294,4380_105300,Drogheda,64356-00018-1,1,4380_7778208_1901108,4380_1704 -4380_78130,295,4380_105301,Drogheda,64353-00019-1,1,4380_7778208_1901108,4380_1704 -4380_78130,296,4380_105302,Drogheda,64345-00021-1,1,4380_7778208_1901108,4380_1704 -4380_77954,297,4380_10531,Dublin,7505-00008-1,1,4380_7778208_1110103,4380_209 -4380_78130,285,4380_105310,Drogheda,63242-00009-1,1,4380_7778208_1901105,4380_1704 -4380_78130,286,4380_105311,Drogheda,63236-00010-1,1,4380_7778208_1901105,4380_1704 -4380_78130,297,4380_105312,Drogheda,64357-00008-1,1,4380_7778208_1901108,4380_1704 -4380_78130,288,4380_105313,Drogheda,63238-00011-1,1,4380_7778208_1901105,4380_1704 -4380_78130,287,4380_105314,Drogheda,63240-00012-1,1,4380_7778208_1901105,4380_1704 -4380_78130,291,4380_105315,Drogheda,63622-00013-1,1,4380_7778208_1901106,4380_1704 -4380_78130,289,4380_105316,Drogheda,63234-00014-1,1,4380_7778208_1901105,4380_1704 -4380_78130,292,4380_105317,Drogheda,63237-00016-1,1,4380_7778208_1901105,4380_1704 -4380_78130,293,4380_105318,Drogheda,63239-00017-1,1,4380_7778208_1901105,4380_1704 -4380_78130,290,4380_105319,Drogheda,63243-00015-1,1,4380_7778208_1901105,4380_1704 -4380_77954,288,4380_10532,Dublin,7762-00011-1,1,4380_7778208_1110107,4380_206 -4380_78130,294,4380_105320,Drogheda,63241-00018-1,1,4380_7778208_1901105,4380_1704 -4380_78130,295,4380_105321,Drogheda,63235-00019-1,1,4380_7778208_1901105,4380_1704 -4380_78130,296,4380_105322,Drogheda,63623-00021-1,1,4380_7778208_1901106,4380_1704 -4380_77954,287,4380_10533,Dublin,7769-00012-1,1,4380_7778208_1110107,4380_206 -4380_78130,285,4380_105330,Drogheda,64007-00009-1,1,4380_7778208_1901107,4380_1704 -4380_78130,286,4380_105331,Drogheda,64003-00010-1,1,4380_7778208_1901107,4380_1704 -4380_78130,297,4380_105332,Drogheda,64009-00008-1,1,4380_7778208_1901107,4380_1704 -4380_78130,288,4380_105333,Drogheda,63999-00011-1,1,4380_7778208_1901107,4380_1704 -4380_78130,287,4380_105334,Drogheda,64005-00012-1,1,4380_7778208_1901107,4380_1704 -4380_78130,291,4380_105335,Drogheda,64001-00013-1,1,4380_7778208_1901107,4380_1704 -4380_78130,289,4380_105336,Drogheda,63997-00014-1,1,4380_7778208_1901107,4380_1704 -4380_78130,292,4380_105337,Drogheda,64004-00016-1,1,4380_7778208_1901107,4380_1704 -4380_78130,293,4380_105338,Drogheda,64000-00017-1,1,4380_7778208_1901107,4380_1704 -4380_78130,290,4380_105339,Drogheda,64008-00015-1,1,4380_7778208_1901107,4380_1704 -4380_77954,289,4380_10534,Dublin,7741-00014-1,1,4380_7778208_1110107,4380_206 -4380_78130,294,4380_105340,Drogheda,64006-00018-1,1,4380_7778208_1901107,4380_1704 -4380_78130,295,4380_105341,Drogheda,63998-00019-1,1,4380_7778208_1901107,4380_1704 -4380_78130,296,4380_105342,Drogheda,64002-00021-1,1,4380_7778208_1901107,4380_1704 -4380_77954,290,4380_10535,Dublin,55726-00015-1,1,4380_7778208_1110107,4380_206 -4380_78130,285,4380_105350,Drogheda,64743-00009-1,1,4380_7778208_1901109,4380_1704 -4380_78130,286,4380_105351,Drogheda,64741-00010-1,1,4380_7778208_1901109,4380_1704 -4380_78130,297,4380_105352,Drogheda,63647-00008-1,1,4380_7778208_1901106,4380_1704 -4380_78130,288,4380_105353,Drogheda,64735-00011-1,1,4380_7778208_1901109,4380_1704 -4380_78130,287,4380_105354,Drogheda,64739-00012-1,1,4380_7778208_1901109,4380_1704 -4380_78130,291,4380_105355,Drogheda,63258-00013-1,1,4380_7778208_1901105,4380_1704 -4380_78130,289,4380_105356,Drogheda,64737-00014-1,1,4380_7778208_1901109,4380_1704 -4380_78130,292,4380_105357,Drogheda,64742-00016-1,1,4380_7778208_1901109,4380_1704 -4380_78130,293,4380_105358,Drogheda,64736-00017-1,1,4380_7778208_1901109,4380_1704 -4380_78130,290,4380_105359,Drogheda,64744-00015-1,1,4380_7778208_1901109,4380_1704 -4380_77954,291,4380_10536,Dublin,7583-00013-1,1,4380_7778208_1110104,4380_210 -4380_78130,294,4380_105360,Drogheda,64740-00018-1,1,4380_7778208_1901109,4380_1704 -4380_78130,295,4380_105361,Drogheda,64738-00019-1,1,4380_7778208_1901109,4380_1704 -4380_78130,296,4380_105362,Drogheda,63259-00021-1,1,4380_7778208_1901105,4380_1704 -4380_77954,292,4380_10537,Dublin,55728-00016-1,1,4380_7778208_1110107,4380_206 -4380_78130,285,4380_105370,Drogheda,63658-00009-1,1,4380_7778208_1901106,4380_1704 -4380_78130,286,4380_105371,Drogheda,63650-00010-1,1,4380_7778208_1901106,4380_1704 -4380_78130,297,4380_105372,Drogheda,64747-00008-1,1,4380_7778208_1901109,4380_1704 -4380_78130,288,4380_105373,Drogheda,63654-00011-1,1,4380_7778208_1901106,4380_1704 -4380_78130,287,4380_105374,Drogheda,63652-00012-1,1,4380_7778208_1901106,4380_1704 -4380_78130,291,4380_105375,Drogheda,64745-00013-1,1,4380_7778208_1901109,4380_1704 -4380_78130,289,4380_105376,Drogheda,63656-00014-1,1,4380_7778208_1901106,4380_1704 -4380_78130,292,4380_105377,Drogheda,63651-00016-1,1,4380_7778208_1901106,4380_1704 -4380_78130,293,4380_105378,Drogheda,63655-00017-1,1,4380_7778208_1901106,4380_1704 -4380_78130,290,4380_105379,Drogheda,63659-00015-1,1,4380_7778208_1901106,4380_1704 -4380_77954,293,4380_10538,Dublin,55730-00017-1,1,4380_7778208_1110107,4380_206 -4380_78130,294,4380_105380,Drogheda,63653-00018-1,1,4380_7778208_1901106,4380_1704 -4380_78130,295,4380_105381,Drogheda,63657-00019-1,1,4380_7778208_1901106,4380_1704 -4380_78130,296,4380_105382,Drogheda,64746-00021-1,1,4380_7778208_1901109,4380_1704 -4380_77954,294,4380_10539,Dublin,55727-00018-1,1,4380_7778208_1110107,4380_206 -4380_78130,285,4380_105390,Drogheda,64396-00009-1,1,4380_7778208_1901108,4380_1704 -4380_78130,286,4380_105391,Drogheda,64406-00010-1,1,4380_7778208_1901108,4380_1704 -4380_78130,297,4380_105392,Drogheda,63283-00008-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_105393,Drogheda,64404-00011-1,1,4380_7778208_1901108,4380_1704 -4380_78130,287,4380_105394,Drogheda,64400-00012-1,1,4380_7778208_1901108,4380_1704 -4380_78130,291,4380_105395,Drogheda,64402-00013-1,1,4380_7778208_1901108,4380_1704 -4380_78130,289,4380_105396,Drogheda,64398-00014-1,1,4380_7778208_1901108,4380_1704 -4380_78130,292,4380_105397,Drogheda,64407-00016-1,1,4380_7778208_1901108,4380_1704 -4380_78130,293,4380_105398,Drogheda,64405-00017-1,1,4380_7778208_1901108,4380_1704 -4380_78130,290,4380_105399,Drogheda,64397-00015-1,1,4380_7778208_1901108,4380_1704 -4380_78113,295,4380_1054,Dublin via Airport,49760-00019-1,1,4380_7778208_1000904,4380_18 -4380_77954,295,4380_10540,Dublin,55729-00019-1,1,4380_7778208_1110107,4380_206 -4380_78130,294,4380_105400,Drogheda,64401-00018-1,1,4380_7778208_1901108,4380_1704 -4380_78130,295,4380_105401,Drogheda,64399-00019-1,1,4380_7778208_1901108,4380_1704 -4380_78130,296,4380_105402,Drogheda,64403-00021-1,1,4380_7778208_1901108,4380_1704 -4380_77954,296,4380_10541,Dublin,55635-00021-1,1,4380_7778208_1110104,4380_210 -4380_78130,285,4380_105410,Drogheda,63292-00009-1,1,4380_7778208_1901105,4380_1704 -4380_78130,286,4380_105411,Drogheda,63290-00010-1,1,4380_7778208_1901105,4380_1704 -4380_78130,297,4380_105412,Drogheda,64409-00008-1,1,4380_7778208_1901108,4380_1704 -4380_78130,288,4380_105413,Drogheda,63288-00011-1,1,4380_7778208_1901105,4380_1704 -4380_78130,287,4380_105414,Drogheda,63286-00012-1,1,4380_7778208_1901105,4380_1704 -4380_78130,291,4380_105415,Drogheda,63674-00013-1,1,4380_7778208_1901106,4380_1704 -4380_78130,289,4380_105416,Drogheda,63294-00014-1,1,4380_7778208_1901105,4380_1704 -4380_78130,292,4380_105417,Drogheda,63291-00016-1,1,4380_7778208_1901105,4380_1704 -4380_78130,293,4380_105418,Drogheda,63289-00017-1,1,4380_7778208_1901105,4380_1704 -4380_78130,290,4380_105419,Drogheda,63293-00015-1,1,4380_7778208_1901105,4380_1704 -4380_78130,294,4380_105420,Drogheda,63287-00018-1,1,4380_7778208_1901105,4380_1704 -4380_78130,295,4380_105421,Drogheda,63295-00019-1,1,4380_7778208_1901105,4380_1704 -4380_78130,296,4380_105422,Drogheda,63675-00021-1,1,4380_7778208_1901106,4380_1704 -4380_78130,285,4380_105430,Drogheda,64051-00009-1,1,4380_7778208_1901107,4380_1704 -4380_78130,286,4380_105431,Drogheda,64049-00010-1,1,4380_7778208_1901107,4380_1704 -4380_78130,297,4380_105432,Drogheda,64061-00008-1,1,4380_7778208_1901107,4380_1704 -4380_78130,288,4380_105433,Drogheda,64055-00011-1,1,4380_7778208_1901107,4380_1704 -4380_78130,287,4380_105434,Drogheda,64053-00012-1,1,4380_7778208_1901107,4380_1704 -4380_78130,291,4380_105435,Drogheda,64059-00013-1,1,4380_7778208_1901107,4380_1704 -4380_78130,289,4380_105436,Drogheda,64057-00014-1,1,4380_7778208_1901107,4380_1704 -4380_78130,292,4380_105437,Drogheda,64050-00016-1,1,4380_7778208_1901107,4380_1704 -4380_78130,293,4380_105438,Drogheda,64056-00017-1,1,4380_7778208_1901107,4380_1704 -4380_78130,290,4380_105439,Drogheda,64052-00015-1,1,4380_7778208_1901107,4380_1704 -4380_78130,294,4380_105440,Drogheda,64054-00018-1,1,4380_7778208_1901107,4380_1704 -4380_78130,295,4380_105441,Drogheda,64058-00019-1,1,4380_7778208_1901107,4380_1704 -4380_78130,296,4380_105442,Drogheda,64060-00021-1,1,4380_7778208_1901107,4380_1704 -4380_78130,285,4380_105450,Drogheda,64786-00009-1,1,4380_7778208_1901109,4380_1704 -4380_78130,286,4380_105451,Drogheda,64790-00010-1,1,4380_7778208_1901109,4380_1704 -4380_78130,297,4380_105452,Drogheda,63699-00008-1,1,4380_7778208_1901106,4380_1704 -4380_78130,288,4380_105453,Drogheda,64794-00011-1,1,4380_7778208_1901109,4380_1704 -4380_78130,287,4380_105454,Drogheda,64792-00012-1,1,4380_7778208_1901109,4380_1704 -4380_78130,291,4380_105455,Drogheda,63310-00013-1,1,4380_7778208_1901105,4380_1704 -4380_78130,289,4380_105456,Drogheda,64788-00014-1,1,4380_7778208_1901109,4380_1704 -4380_78130,292,4380_105457,Drogheda,64791-00016-1,1,4380_7778208_1901109,4380_1704 -4380_78130,293,4380_105458,Drogheda,64795-00017-1,1,4380_7778208_1901109,4380_1704 -4380_78130,290,4380_105459,Drogheda,64787-00015-1,1,4380_7778208_1901109,4380_1704 -4380_78130,294,4380_105460,Drogheda,64793-00018-1,1,4380_7778208_1901109,4380_1704 -4380_78130,295,4380_105461,Drogheda,64789-00019-1,1,4380_7778208_1901109,4380_1704 -4380_78130,296,4380_105462,Drogheda,63311-00021-1,1,4380_7778208_1901105,4380_1704 -4380_78130,285,4380_105469,Drogheda,63710-00009-1,1,4380_7778208_1901106,4380_1704 -4380_78130,286,4380_105470,Drogheda,63706-00010-1,1,4380_7778208_1901106,4380_1704 -4380_78130,288,4380_105471,Drogheda,63704-00011-1,1,4380_7778208_1901106,4380_1704 -4380_78130,287,4380_105472,Drogheda,63702-00012-1,1,4380_7778208_1901106,4380_1704 -4380_78130,291,4380_105473,Drogheda,64796-00013-1,1,4380_7778208_1901109,4380_1704 -4380_78130,289,4380_105474,Drogheda,63708-00014-1,1,4380_7778208_1901106,4380_1704 -4380_78130,292,4380_105475,Drogheda,63707-00016-1,1,4380_7778208_1901106,4380_1704 -4380_78130,293,4380_105476,Drogheda,63705-00017-1,1,4380_7778208_1901106,4380_1704 -4380_78130,290,4380_105477,Drogheda,63711-00015-1,1,4380_7778208_1901106,4380_1704 -4380_78130,294,4380_105478,Drogheda,63703-00018-1,1,4380_7778208_1901106,4380_1704 -4380_78130,295,4380_105479,Drogheda,63709-00019-1,1,4380_7778208_1901106,4380_1704 -4380_78130,296,4380_105480,Drogheda,64797-00021-1,1,4380_7778208_1901109,4380_1704 -4380_78130,285,4380_105488,Drogheda,64452-00009-1,1,4380_7778208_1901108,4380_1704 -4380_78130,286,4380_105489,Drogheda,64446-00010-1,1,4380_7778208_1901108,4380_1704 -4380_77954,285,4380_10549,Dublin,7392-00009-1,1,4380_7778208_1110102,4380_206 -4380_78130,297,4380_105490,Drogheda,63335-00008-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_105491,Drogheda,64456-00011-1,1,4380_7778208_1901108,4380_1704 -4380_78130,287,4380_105492,Drogheda,64454-00012-1,1,4380_7778208_1901108,4380_1704 -4380_78130,291,4380_105493,Drogheda,64448-00013-1,1,4380_7778208_1901108,4380_1704 -4380_78130,289,4380_105494,Drogheda,64450-00014-1,1,4380_7778208_1901108,4380_1704 -4380_78130,292,4380_105495,Drogheda,64447-00016-1,1,4380_7778208_1901108,4380_1704 -4380_78130,293,4380_105496,Drogheda,64457-00017-1,1,4380_7778208_1901108,4380_1704 -4380_78130,290,4380_105497,Drogheda,64453-00015-1,1,4380_7778208_1901108,4380_1704 -4380_78130,294,4380_105498,Drogheda,64455-00018-1,1,4380_7778208_1901108,4380_1704 -4380_78130,295,4380_105499,Drogheda,64451-00019-1,1,4380_7778208_1901108,4380_1704 -4380_78113,296,4380_1055,Dublin via Airport,49762-00021-1,1,4380_7778208_1000904,4380_20 -4380_77954,286,4380_10550,Dublin,7405-00010-1,1,4380_7778208_1110102,4380_206 -4380_78130,296,4380_105500,Drogheda,64449-00021-1,1,4380_7778208_1901108,4380_1704 -4380_78130,285,4380_105507,Drogheda,63338-00009-1,1,4380_7778208_1901105,4380_1704 -4380_78130,286,4380_105508,Drogheda,63340-00010-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_105509,Drogheda,63344-00011-1,1,4380_7778208_1901105,4380_1704 -4380_77954,297,4380_10551,Dublin,7595-00008-1,1,4380_7778208_1110104,4380_209 -4380_78130,287,4380_105510,Drogheda,63346-00012-1,1,4380_7778208_1901105,4380_1704 -4380_78130,291,4380_105511,Drogheda,63725-00013-1,1,4380_7778208_1901106,4380_1704 -4380_78130,289,4380_105512,Drogheda,63342-00014-1,1,4380_7778208_1901105,4380_1704 -4380_78130,292,4380_105513,Drogheda,63341-00016-1,1,4380_7778208_1901105,4380_1704 -4380_78130,293,4380_105514,Drogheda,63345-00017-1,1,4380_7778208_1901105,4380_1704 -4380_78130,290,4380_105515,Drogheda,63339-00015-1,1,4380_7778208_1901105,4380_1704 -4380_78130,294,4380_105516,Drogheda,63347-00018-1,1,4380_7778208_1901105,4380_1704 -4380_78130,295,4380_105517,Drogheda,63343-00019-1,1,4380_7778208_1901105,4380_1704 -4380_78130,296,4380_105518,Drogheda,63726-00021-1,1,4380_7778208_1901106,4380_1704 -4380_77954,288,4380_10552,Dublin,7410-00011-1,1,4380_7778208_1110102,4380_206 -4380_78130,285,4380_105526,Drogheda,64106-00009-1,1,4380_7778208_1901107,4380_1704 -4380_78130,286,4380_105527,Drogheda,64104-00010-1,1,4380_7778208_1901107,4380_1704 -4380_78130,297,4380_105528,Drogheda,64103-00008-1,1,4380_7778208_1901107,4380_1704 -4380_78130,288,4380_105529,Drogheda,64112-00011-1,1,4380_7778208_1901107,4380_1704 -4380_77954,287,4380_10553,Dublin,7423-00012-1,1,4380_7778208_1110102,4380_206 -4380_78130,287,4380_105530,Drogheda,64108-00012-1,1,4380_7778208_1901107,4380_1704 -4380_78130,291,4380_105531,Drogheda,64110-00013-1,1,4380_7778208_1901107,4380_1704 -4380_78130,289,4380_105532,Drogheda,64101-00014-1,1,4380_7778208_1901107,4380_1704 -4380_78130,292,4380_105533,Drogheda,64105-00016-1,1,4380_7778208_1901107,4380_1704 -4380_78130,293,4380_105534,Drogheda,64113-00017-1,1,4380_7778208_1901107,4380_1704 -4380_78130,290,4380_105535,Drogheda,64107-00015-1,1,4380_7778208_1901107,4380_1704 -4380_78130,294,4380_105536,Drogheda,64109-00018-1,1,4380_7778208_1901107,4380_1704 -4380_78130,295,4380_105537,Drogheda,64102-00019-1,1,4380_7778208_1901107,4380_1704 -4380_78130,296,4380_105538,Drogheda,64111-00021-1,1,4380_7778208_1901107,4380_1704 -4380_77954,289,4380_10554,Dublin,7371-00014-1,1,4380_7778208_1110102,4380_206 -4380_78130,285,4380_105545,Drogheda,64834-00009-1,1,4380_7778208_1901109,4380_1704 -4380_78130,286,4380_105546,Drogheda,64840-00010-1,1,4380_7778208_1901109,4380_1704 -4380_78130,288,4380_105547,Drogheda,64838-00011-1,1,4380_7778208_1901109,4380_1704 -4380_78130,287,4380_105548,Drogheda,64836-00012-1,1,4380_7778208_1901109,4380_1704 -4380_78130,291,4380_105549,Drogheda,63361-00013-1,1,4380_7778208_1901105,4380_1704 -4380_77954,290,4380_10555,Dublin,55580-00015-1,1,4380_7778208_1110102,4380_206 -4380_78130,289,4380_105550,Drogheda,64842-00014-1,1,4380_7778208_1901109,4380_1704 -4380_78130,292,4380_105551,Drogheda,64841-00016-1,1,4380_7778208_1901109,4380_1704 -4380_78130,293,4380_105552,Drogheda,64839-00017-1,1,4380_7778208_1901109,4380_1704 -4380_78130,290,4380_105553,Drogheda,64835-00015-1,1,4380_7778208_1901109,4380_1704 -4380_78130,294,4380_105554,Drogheda,64837-00018-1,1,4380_7778208_1901109,4380_1704 -4380_78130,295,4380_105555,Drogheda,64843-00019-1,1,4380_7778208_1901109,4380_1704 -4380_78130,296,4380_105556,Drogheda,63362-00021-1,1,4380_7778208_1901105,4380_1704 -4380_77954,291,4380_10556,Dublin,7651-00013-1,1,4380_7778208_1110105,4380_210 -4380_78130,285,4380_105564,Drogheda,63753-00009-1,1,4380_7778208_1901106,4380_1704 -4380_78130,286,4380_105565,Drogheda,63757-00010-1,1,4380_7778208_1901106,4380_1704 -4380_78130,297,4380_105566,Drogheda,63759-00008-1,1,4380_7778208_1901106,4380_1704 -4380_78130,288,4380_105567,Drogheda,63755-00011-1,1,4380_7778208_1901106,4380_1704 -4380_78130,287,4380_105568,Drogheda,63760-00012-1,1,4380_7778208_1901106,4380_1704 -4380_78130,291,4380_105569,Drogheda,64844-00013-1,1,4380_7778208_1901109,4380_1704 -4380_77954,292,4380_10557,Dublin,55579-00016-1,1,4380_7778208_1110102,4380_206 -4380_78130,289,4380_105570,Drogheda,63762-00014-1,1,4380_7778208_1901106,4380_1704 -4380_78130,292,4380_105571,Drogheda,63758-00016-1,1,4380_7778208_1901106,4380_1704 -4380_78130,293,4380_105572,Drogheda,63756-00017-1,1,4380_7778208_1901106,4380_1704 -4380_78130,290,4380_105573,Drogheda,63754-00015-1,1,4380_7778208_1901106,4380_1704 -4380_78130,294,4380_105574,Drogheda,63761-00018-1,1,4380_7778208_1901106,4380_1704 -4380_78130,295,4380_105575,Drogheda,63763-00019-1,1,4380_7778208_1901106,4380_1704 -4380_78130,296,4380_105576,Drogheda,64845-00021-1,1,4380_7778208_1901109,4380_1704 -4380_77954,293,4380_10558,Dublin,55578-00017-1,1,4380_7778208_1110102,4380_206 -4380_78130,285,4380_105583,Drogheda,64500-00009-1,1,4380_7778208_1901108,4380_1704 -4380_78130,286,4380_105584,Drogheda,64498-00010-1,1,4380_7778208_1901108,4380_1704 -4380_78130,288,4380_105585,Drogheda,64504-00011-1,1,4380_7778208_1901108,4380_1704 -4380_78130,287,4380_105586,Drogheda,64496-00012-1,1,4380_7778208_1901108,4380_1704 -4380_78130,291,4380_105587,Drogheda,64502-00013-1,1,4380_7778208_1901108,4380_1704 -4380_78130,289,4380_105588,Drogheda,64494-00014-1,1,4380_7778208_1901108,4380_1704 -4380_78130,292,4380_105589,Drogheda,64499-00016-1,1,4380_7778208_1901108,4380_1704 -4380_77954,294,4380_10559,Dublin,55577-00018-1,1,4380_7778208_1110102,4380_206 -4380_78130,293,4380_105590,Drogheda,64505-00017-1,1,4380_7778208_1901108,4380_1704 -4380_78130,290,4380_105591,Drogheda,64501-00015-1,1,4380_7778208_1901108,4380_1704 -4380_78130,294,4380_105592,Drogheda,64497-00018-1,1,4380_7778208_1901108,4380_1704 -4380_78130,295,4380_105593,Drogheda,64495-00019-1,1,4380_7778208_1901108,4380_1704 -4380_78130,296,4380_105594,Drogheda,64503-00021-1,1,4380_7778208_1901108,4380_1704 -4380_77954,295,4380_10560,Dublin,55581-00019-1,1,4380_7778208_1110102,4380_206 -4380_78130,285,4380_105602,Drogheda,63395-00009-1,1,4380_7778208_1901105,4380_1704 -4380_78130,286,4380_105603,Drogheda,63391-00010-1,1,4380_7778208_1901105,4380_1704 -4380_78130,297,4380_105604,Drogheda,63397-00008-1,1,4380_7778208_1901105,4380_1704 -4380_78130,288,4380_105605,Drogheda,63398-00011-1,1,4380_7778208_1901105,4380_1704 -4380_78130,287,4380_105606,Drogheda,63389-00012-1,1,4380_7778208_1901105,4380_1704 -4380_78130,291,4380_105607,Drogheda,63776-00013-1,1,4380_7778208_1901106,4380_1704 -4380_78130,289,4380_105608,Drogheda,63393-00014-1,1,4380_7778208_1901105,4380_1704 -4380_78130,292,4380_105609,Drogheda,63392-00016-1,1,4380_7778208_1901105,4380_1704 -4380_77954,296,4380_10561,Dublin,55665-00021-1,1,4380_7778208_1110105,4380_210 -4380_78130,293,4380_105610,Drogheda,63399-00017-1,1,4380_7778208_1901105,4380_1704 -4380_78130,290,4380_105611,Drogheda,63396-00015-1,1,4380_7778208_1901105,4380_1704 -4380_78130,294,4380_105612,Drogheda,63390-00018-1,1,4380_7778208_1901105,4380_1704 -4380_78130,295,4380_105613,Drogheda,63394-00019-1,1,4380_7778208_1901105,4380_1704 -4380_78130,296,4380_105614,Drogheda,63777-00021-1,1,4380_7778208_1901106,4380_1704 -4380_78130,285,4380_105621,Drogheda,64163-00009-1,1,4380_7778208_1901107,4380_1704 -4380_78130,286,4380_105622,Drogheda,64155-00010-1,1,4380_7778208_1901107,4380_1704 -4380_78130,288,4380_105623,Drogheda,64161-00011-1,1,4380_7778208_1901107,4380_1704 -4380_78130,287,4380_105624,Drogheda,64159-00012-1,1,4380_7778208_1901107,4380_1704 -4380_78130,291,4380_105625,Drogheda,64878-00013-1,1,4380_7778208_1901109,4380_1704 -4380_78130,289,4380_105626,Drogheda,64157-00014-1,1,4380_7778208_1901107,4380_1704 -4380_78130,292,4380_105627,Drogheda,64156-00016-1,1,4380_7778208_1901107,4380_1704 -4380_78130,293,4380_105628,Drogheda,64162-00017-1,1,4380_7778208_1901107,4380_1704 -4380_78130,290,4380_105629,Drogheda,64164-00015-1,1,4380_7778208_1901107,4380_1704 -4380_78130,294,4380_105630,Drogheda,64160-00018-1,1,4380_7778208_1901107,4380_1704 -4380_78130,295,4380_105631,Drogheda,64158-00019-1,1,4380_7778208_1901107,4380_1704 -4380_78130,296,4380_105632,Drogheda,64879-00021-1,1,4380_7778208_1901109,4380_1704 -4380_78130,297,4380_105634,Drogheda,64165-00008-1,1,4380_7778208_1901107,4380_1704 -4380_78122,285,4380_105641,Ballymakenny Road,64900-00009-1,0,4380_7778208_1901110,4380_1705 -4380_78122,286,4380_105642,Ballymakenny Road,64896-00010-1,0,4380_7778208_1901110,4380_1705 -4380_78122,288,4380_105643,Ballymakenny Road,64890-00011-1,0,4380_7778208_1901110,4380_1705 -4380_78122,287,4380_105644,Ballymakenny Road,64898-00012-1,0,4380_7778208_1901110,4380_1705 -4380_78122,291,4380_105645,Ballymakenny Road,64894-00013-1,0,4380_7778208_1901110,4380_1706 -4380_78122,289,4380_105646,Ballymakenny Road,64892-00014-1,0,4380_7778208_1901110,4380_1705 -4380_78122,292,4380_105647,Ballymakenny Road,64897-00016-1,0,4380_7778208_1901110,4380_1705 -4380_78122,293,4380_105648,Ballymakenny Road,64891-00017-1,0,4380_7778208_1901110,4380_1705 -4380_78122,290,4380_105649,Ballymakenny Road,64901-00015-1,0,4380_7778208_1901110,4380_1705 -4380_78122,294,4380_105650,Ballymakenny Road,64899-00018-1,0,4380_7778208_1901110,4380_1705 -4380_78122,295,4380_105651,Ballymakenny Road,64893-00019-1,0,4380_7778208_1901110,4380_1705 -4380_78122,296,4380_105652,Ballymakenny Road,64895-00021-1,0,4380_7778208_1901110,4380_1706 -4380_78122,285,4380_105659,Ballymakenny Road,65559-00009-1,0,4380_7778208_1901112,4380_1705 -4380_78122,286,4380_105660,Ballymakenny Road,65565-00010-1,0,4380_7778208_1901112,4380_1705 -4380_78122,288,4380_105661,Ballymakenny Road,65557-00011-1,0,4380_7778208_1901112,4380_1705 -4380_78122,287,4380_105662,Ballymakenny Road,65561-00012-1,0,4380_7778208_1901112,4380_1705 -4380_78122,291,4380_105663,Ballymakenny Road,65563-00013-1,0,4380_7778208_1901112,4380_1706 -4380_78122,289,4380_105664,Ballymakenny Road,65555-00014-1,0,4380_7778208_1901112,4380_1705 -4380_78122,292,4380_105665,Ballymakenny Road,65566-00016-1,0,4380_7778208_1901112,4380_1705 -4380_78122,293,4380_105666,Ballymakenny Road,65558-00017-1,0,4380_7778208_1901112,4380_1705 -4380_78122,290,4380_105667,Ballymakenny Road,65560-00015-1,0,4380_7778208_1901112,4380_1705 -4380_78122,294,4380_105668,Ballymakenny Road,65562-00018-1,0,4380_7778208_1901112,4380_1705 -4380_78122,295,4380_105669,Ballymakenny Road,65556-00019-1,0,4380_7778208_1901112,4380_1705 -4380_78122,296,4380_105670,Ballymakenny Road,65564-00021-1,0,4380_7778208_1901112,4380_1706 -4380_78122,285,4380_105677,Ballymakenny Road,66143-00009-1,0,4380_7778208_1901114,4380_1705 -4380_78122,286,4380_105678,Ballymakenny Road,66151-00010-1,0,4380_7778208_1901114,4380_1705 -4380_78122,288,4380_105679,Ballymakenny Road,66145-00011-1,0,4380_7778208_1901114,4380_1705 -4380_78122,287,4380_105680,Ballymakenny Road,66147-00012-1,0,4380_7778208_1901114,4380_1705 -4380_78122,291,4380_105681,Ballymakenny Road,66149-00013-1,0,4380_7778208_1901114,4380_1706 -4380_78122,289,4380_105682,Ballymakenny Road,66153-00014-1,0,4380_7778208_1901114,4380_1705 -4380_78122,292,4380_105683,Ballymakenny Road,66152-00016-1,0,4380_7778208_1901114,4380_1705 -4380_78122,293,4380_105684,Ballymakenny Road,66146-00017-1,0,4380_7778208_1901114,4380_1705 -4380_78122,290,4380_105685,Ballymakenny Road,66144-00015-1,0,4380_7778208_1901114,4380_1705 -4380_78122,294,4380_105686,Ballymakenny Road,66148-00018-1,0,4380_7778208_1901114,4380_1705 -4380_78122,295,4380_105687,Ballymakenny Road,66154-00019-1,0,4380_7778208_1901114,4380_1705 -4380_78122,296,4380_105688,Ballymakenny Road,66150-00021-1,0,4380_7778208_1901114,4380_1706 -4380_77954,285,4380_10569,Dublin,7285-00009-1,1,4380_7778208_1110101,4380_206 -4380_78122,285,4380_105695,Ballymakenny Road,65837-00009-1,0,4380_7778208_1901113,4380_1705 -4380_78122,286,4380_105696,Ballymakenny Road,65835-00010-1,0,4380_7778208_1901113,4380_1705 -4380_78122,288,4380_105697,Ballymakenny Road,65839-00011-1,0,4380_7778208_1901113,4380_1705 -4380_78122,287,4380_105698,Ballymakenny Road,65831-00012-1,0,4380_7778208_1901113,4380_1705 -4380_78122,291,4380_105699,Ballymakenny Road,65841-00013-1,0,4380_7778208_1901113,4380_1706 -4380_77954,286,4380_10570,Dublin,7309-00010-1,1,4380_7778208_1110101,4380_206 -4380_78122,289,4380_105700,Ballymakenny Road,65833-00014-1,0,4380_7778208_1901113,4380_1705 -4380_78122,292,4380_105701,Ballymakenny Road,65836-00016-1,0,4380_7778208_1901113,4380_1705 -4380_78122,293,4380_105702,Ballymakenny Road,65840-00017-1,0,4380_7778208_1901113,4380_1705 -4380_78122,290,4380_105703,Ballymakenny Road,65838-00015-1,0,4380_7778208_1901113,4380_1705 -4380_78122,294,4380_105704,Ballymakenny Road,65832-00018-1,0,4380_7778208_1901113,4380_1705 -4380_78122,295,4380_105705,Ballymakenny Road,65834-00019-1,0,4380_7778208_1901113,4380_1705 -4380_78122,296,4380_105706,Ballymakenny Road,65842-00021-1,0,4380_7778208_1901113,4380_1706 -4380_78122,297,4380_105708,Ballymakenny Road,64926-00008-1,0,4380_7778208_1901110,4380_1705 -4380_77954,297,4380_10571,Dublin,7453-00008-1,1,4380_7778208_1110102,4380_209 -4380_78122,285,4380_105715,Ballymakenny Road,65229-00009-1,0,4380_7778208_1901111,4380_1705 -4380_78122,286,4380_105716,Ballymakenny Road,65227-00010-1,0,4380_7778208_1901111,4380_1705 -4380_78122,288,4380_105717,Ballymakenny Road,65225-00011-1,0,4380_7778208_1901111,4380_1705 -4380_78122,287,4380_105718,Ballymakenny Road,65233-00012-1,0,4380_7778208_1901111,4380_1705 -4380_78122,291,4380_105719,Ballymakenny Road,65231-00013-1,0,4380_7778208_1901111,4380_1706 -4380_77954,288,4380_10572,Dublin,7325-00011-1,1,4380_7778208_1110101,4380_206 -4380_78122,289,4380_105720,Ballymakenny Road,65223-00014-1,0,4380_7778208_1901111,4380_1705 -4380_78122,292,4380_105721,Ballymakenny Road,65228-00016-1,0,4380_7778208_1901111,4380_1705 -4380_78122,293,4380_105722,Ballymakenny Road,65226-00017-1,0,4380_7778208_1901111,4380_1705 -4380_78122,290,4380_105723,Ballymakenny Road,65230-00015-1,0,4380_7778208_1901111,4380_1705 -4380_78122,294,4380_105724,Ballymakenny Road,65234-00018-1,0,4380_7778208_1901111,4380_1705 -4380_78122,295,4380_105725,Ballymakenny Road,65224-00019-1,0,4380_7778208_1901111,4380_1705 -4380_78122,296,4380_105726,Ballymakenny Road,65232-00021-1,0,4380_7778208_1901111,4380_1706 -4380_77954,287,4380_10573,Dublin,7341-00012-1,1,4380_7778208_1110101,4380_206 -4380_78122,285,4380_105733,Ballymakenny Road,64940-00009-1,0,4380_7778208_1901110,4380_1705 -4380_78122,286,4380_105734,Ballymakenny Road,64944-00010-1,0,4380_7778208_1901110,4380_1705 -4380_78122,288,4380_105735,Ballymakenny Road,64948-00011-1,0,4380_7778208_1901110,4380_1705 -4380_78122,287,4380_105736,Ballymakenny Road,64942-00012-1,0,4380_7778208_1901110,4380_1705 -4380_78122,291,4380_105737,Ballymakenny Road,64946-00013-1,0,4380_7778208_1901110,4380_1706 -4380_78122,289,4380_105738,Ballymakenny Road,64950-00014-1,0,4380_7778208_1901110,4380_1705 -4380_78122,292,4380_105739,Ballymakenny Road,64945-00016-1,0,4380_7778208_1901110,4380_1705 -4380_77954,289,4380_10574,Dublin,7269-00014-1,1,4380_7778208_1110101,4380_206 -4380_78122,293,4380_105740,Ballymakenny Road,64949-00017-1,0,4380_7778208_1901110,4380_1705 -4380_78122,290,4380_105741,Ballymakenny Road,64941-00015-1,0,4380_7778208_1901110,4380_1705 -4380_78122,294,4380_105742,Ballymakenny Road,64943-00018-1,0,4380_7778208_1901110,4380_1705 -4380_78122,295,4380_105743,Ballymakenny Road,64951-00019-1,0,4380_7778208_1901110,4380_1705 -4380_78122,296,4380_105744,Ballymakenny Road,64947-00021-1,0,4380_7778208_1901110,4380_1706 -4380_78122,297,4380_105746,Ballymakenny Road,64952-00008-1,0,4380_7778208_1901110,4380_1705 -4380_77954,290,4380_10575,Dublin,55539-00015-1,1,4380_7778208_1110101,4380_206 -4380_78122,285,4380_105753,Ballymakenny Road,65605-00009-1,0,4380_7778208_1901112,4380_1705 -4380_78122,286,4380_105754,Ballymakenny Road,65613-00010-1,0,4380_7778208_1901112,4380_1705 -4380_78122,288,4380_105755,Ballymakenny Road,65609-00011-1,0,4380_7778208_1901112,4380_1705 -4380_78122,287,4380_105756,Ballymakenny Road,65607-00012-1,0,4380_7778208_1901112,4380_1705 -4380_78122,291,4380_105757,Ballymakenny Road,65603-00013-1,0,4380_7778208_1901112,4380_1706 -4380_78122,289,4380_105758,Ballymakenny Road,65611-00014-1,0,4380_7778208_1901112,4380_1705 -4380_78122,292,4380_105759,Ballymakenny Road,65614-00016-1,0,4380_7778208_1901112,4380_1705 -4380_77954,291,4380_10576,Dublin,7357-00013-1,1,4380_7778208_1110101,4380_210 -4380_78122,293,4380_105760,Ballymakenny Road,65610-00017-1,0,4380_7778208_1901112,4380_1705 -4380_78122,290,4380_105761,Ballymakenny Road,65606-00015-1,0,4380_7778208_1901112,4380_1705 -4380_78122,294,4380_105762,Ballymakenny Road,65608-00018-1,0,4380_7778208_1901112,4380_1705 -4380_78122,295,4380_105763,Ballymakenny Road,65612-00019-1,0,4380_7778208_1901112,4380_1705 -4380_78122,296,4380_105764,Ballymakenny Road,65604-00021-1,0,4380_7778208_1901112,4380_1706 -4380_77954,292,4380_10577,Dublin,55540-00016-1,1,4380_7778208_1110101,4380_206 -4380_78122,285,4380_105771,Ballymakenny Road,66199-00009-1,0,4380_7778208_1901114,4380_1705 -4380_78122,286,4380_105772,Ballymakenny Road,66197-00010-1,0,4380_7778208_1901114,4380_1705 -4380_78122,288,4380_105773,Ballymakenny Road,66191-00011-1,0,4380_7778208_1901114,4380_1705 -4380_78122,287,4380_105774,Ballymakenny Road,66195-00012-1,0,4380_7778208_1901114,4380_1705 -4380_78122,291,4380_105775,Ballymakenny Road,66193-00013-1,0,4380_7778208_1901114,4380_1706 -4380_78122,289,4380_105776,Ballymakenny Road,66201-00014-1,0,4380_7778208_1901114,4380_1705 -4380_78122,292,4380_105777,Ballymakenny Road,66198-00016-1,0,4380_7778208_1901114,4380_1705 -4380_78122,293,4380_105778,Ballymakenny Road,66192-00017-1,0,4380_7778208_1901114,4380_1705 -4380_78122,290,4380_105779,Ballymakenny Road,66200-00015-1,0,4380_7778208_1901114,4380_1705 -4380_77954,293,4380_10578,Dublin,55541-00017-1,1,4380_7778208_1110101,4380_206 -4380_78122,294,4380_105780,Ballymakenny Road,66196-00018-1,0,4380_7778208_1901114,4380_1705 -4380_78122,295,4380_105781,Ballymakenny Road,66202-00019-1,0,4380_7778208_1901114,4380_1705 -4380_78122,296,4380_105782,Ballymakenny Road,66194-00021-1,0,4380_7778208_1901114,4380_1706 -4380_78122,297,4380_105784,Ballymakenny Road,64966-00008-1,0,4380_7778208_1901110,4380_1705 -4380_77954,294,4380_10579,Dublin,55542-00018-1,1,4380_7778208_1110101,4380_206 -4380_78122,285,4380_105791,Ballymakenny Road,65879-00009-1,0,4380_7778208_1901113,4380_1705 -4380_78122,286,4380_105792,Ballymakenny Road,65885-00010-1,0,4380_7778208_1901113,4380_1705 -4380_78122,288,4380_105793,Ballymakenny Road,65889-00011-1,0,4380_7778208_1901113,4380_1705 -4380_78122,287,4380_105794,Ballymakenny Road,65883-00012-1,0,4380_7778208_1901113,4380_1705 -4380_78122,291,4380_105795,Ballymakenny Road,65881-00013-1,0,4380_7778208_1901113,4380_1706 -4380_78122,289,4380_105796,Ballymakenny Road,65887-00014-1,0,4380_7778208_1901113,4380_1705 -4380_78122,292,4380_105797,Ballymakenny Road,65886-00016-1,0,4380_7778208_1901113,4380_1705 -4380_78122,293,4380_105798,Ballymakenny Road,65890-00017-1,0,4380_7778208_1901113,4380_1705 -4380_78122,290,4380_105799,Ballymakenny Road,65880-00015-1,0,4380_7778208_1901113,4380_1705 -4380_77954,295,4380_10580,Dublin,55544-00019-1,1,4380_7778208_1110101,4380_206 -4380_78122,294,4380_105800,Ballymakenny Road,65884-00018-1,0,4380_7778208_1901113,4380_1705 -4380_78122,295,4380_105801,Ballymakenny Road,65888-00019-1,0,4380_7778208_1901113,4380_1705 -4380_78122,296,4380_105802,Ballymakenny Road,65882-00021-1,0,4380_7778208_1901113,4380_1706 -4380_78122,285,4380_105809,Ballymakenny Road,65280-00009-1,0,4380_7778208_1901111,4380_1705 -4380_77954,296,4380_10581,Dublin,55543-00021-1,1,4380_7778208_1110101,4380_210 -4380_78122,286,4380_105810,Ballymakenny Road,65286-00010-1,0,4380_7778208_1901111,4380_1705 -4380_78122,288,4380_105811,Ballymakenny Road,65282-00011-1,0,4380_7778208_1901111,4380_1705 -4380_78122,287,4380_105812,Ballymakenny Road,65284-00012-1,0,4380_7778208_1901111,4380_1705 -4380_78122,291,4380_105813,Ballymakenny Road,65276-00013-1,0,4380_7778208_1901111,4380_1706 -4380_78122,289,4380_105814,Ballymakenny Road,65278-00014-1,0,4380_7778208_1901111,4380_1705 -4380_78122,292,4380_105815,Ballymakenny Road,65287-00016-1,0,4380_7778208_1901111,4380_1705 -4380_78122,293,4380_105816,Ballymakenny Road,65283-00017-1,0,4380_7778208_1901111,4380_1705 -4380_78122,290,4380_105817,Ballymakenny Road,65281-00015-1,0,4380_7778208_1901111,4380_1705 -4380_78122,294,4380_105818,Ballymakenny Road,65285-00018-1,0,4380_7778208_1901111,4380_1705 -4380_78122,295,4380_105819,Ballymakenny Road,65279-00019-1,0,4380_7778208_1901111,4380_1705 -4380_78122,296,4380_105820,Ballymakenny Road,65277-00021-1,0,4380_7778208_1901111,4380_1706 -4380_78122,297,4380_105822,Ballymakenny Road,64992-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78122,285,4380_105829,Ballymakenny Road,65001-00009-1,0,4380_7778208_1901110,4380_1705 -4380_78122,286,4380_105830,Ballymakenny Road,65003-00010-1,0,4380_7778208_1901110,4380_1705 -4380_78122,288,4380_105831,Ballymakenny Road,64997-00011-1,0,4380_7778208_1901110,4380_1705 -4380_78122,287,4380_105832,Ballymakenny Road,64993-00012-1,0,4380_7778208_1901110,4380_1705 -4380_78122,291,4380_105833,Ballymakenny Road,64999-00013-1,0,4380_7778208_1901110,4380_1706 -4380_78122,289,4380_105834,Ballymakenny Road,64995-00014-1,0,4380_7778208_1901110,4380_1705 -4380_78122,292,4380_105835,Ballymakenny Road,65004-00016-1,0,4380_7778208_1901110,4380_1705 -4380_78122,293,4380_105836,Ballymakenny Road,64998-00017-1,0,4380_7778208_1901110,4380_1705 -4380_78122,290,4380_105837,Ballymakenny Road,65002-00015-1,0,4380_7778208_1901110,4380_1705 -4380_78122,294,4380_105838,Ballymakenny Road,64994-00018-1,0,4380_7778208_1901110,4380_1705 -4380_78122,295,4380_105839,Ballymakenny Road,64996-00019-1,0,4380_7778208_1901110,4380_1705 -4380_78122,296,4380_105840,Ballymakenny Road,65000-00021-1,0,4380_7778208_1901110,4380_1706 -4380_78122,285,4380_105847,Ballymakenny Road,65657-00009-1,0,4380_7778208_1901112,4380_1705 -4380_78122,286,4380_105848,Ballymakenny Road,65655-00010-1,0,4380_7778208_1901112,4380_1705 -4380_78122,288,4380_105849,Ballymakenny Road,65659-00011-1,0,4380_7778208_1901112,4380_1705 -4380_78122,287,4380_105850,Ballymakenny Road,65661-00012-1,0,4380_7778208_1901112,4380_1705 -4380_78122,291,4380_105851,Ballymakenny Road,65651-00013-1,0,4380_7778208_1901112,4380_1706 -4380_78122,289,4380_105852,Ballymakenny Road,65653-00014-1,0,4380_7778208_1901112,4380_1705 -4380_78122,292,4380_105853,Ballymakenny Road,65656-00016-1,0,4380_7778208_1901112,4380_1705 -4380_78122,293,4380_105854,Ballymakenny Road,65660-00017-1,0,4380_7778208_1901112,4380_1705 -4380_78122,290,4380_105855,Ballymakenny Road,65658-00015-1,0,4380_7778208_1901112,4380_1705 -4380_78122,294,4380_105856,Ballymakenny Road,65662-00018-1,0,4380_7778208_1901112,4380_1705 -4380_78122,295,4380_105857,Ballymakenny Road,65654-00019-1,0,4380_7778208_1901112,4380_1705 -4380_78122,296,4380_105858,Ballymakenny Road,65652-00021-1,0,4380_7778208_1901112,4380_1706 -4380_78122,297,4380_105860,Ballymakenny Road,65006-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78122,285,4380_105867,Ballymakenny Road,66247-00009-1,0,4380_7778208_1901114,4380_1705 -4380_78122,286,4380_105868,Ballymakenny Road,66245-00010-1,0,4380_7778208_1901114,4380_1705 -4380_78122,288,4380_105869,Ballymakenny Road,66249-00011-1,0,4380_7778208_1901114,4380_1705 -4380_78122,287,4380_105870,Ballymakenny Road,66243-00012-1,0,4380_7778208_1901114,4380_1705 -4380_78122,291,4380_105871,Ballymakenny Road,66241-00013-1,0,4380_7778208_1901114,4380_1706 -4380_78122,289,4380_105872,Ballymakenny Road,66239-00014-1,0,4380_7778208_1901114,4380_1705 -4380_78122,292,4380_105873,Ballymakenny Road,66246-00016-1,0,4380_7778208_1901114,4380_1705 -4380_78122,293,4380_105874,Ballymakenny Road,66250-00017-1,0,4380_7778208_1901114,4380_1705 -4380_78122,290,4380_105875,Ballymakenny Road,66248-00015-1,0,4380_7778208_1901114,4380_1705 -4380_78122,294,4380_105876,Ballymakenny Road,66244-00018-1,0,4380_7778208_1901114,4380_1705 -4380_78122,295,4380_105877,Ballymakenny Road,66240-00019-1,0,4380_7778208_1901114,4380_1705 -4380_78122,296,4380_105878,Ballymakenny Road,66242-00021-1,0,4380_7778208_1901114,4380_1706 -4380_78122,285,4380_105885,Ballymakenny Road,65929-00009-1,0,4380_7778208_1901113,4380_1705 -4380_78122,286,4380_105886,Ballymakenny Road,65931-00010-1,0,4380_7778208_1901113,4380_1705 -4380_78122,288,4380_105887,Ballymakenny Road,65937-00011-1,0,4380_7778208_1901113,4380_1705 -4380_78122,287,4380_105888,Ballymakenny Road,65927-00012-1,0,4380_7778208_1901113,4380_1705 -4380_78122,291,4380_105889,Ballymakenny Road,65933-00013-1,0,4380_7778208_1901113,4380_1706 -4380_77954,285,4380_10589,Dublin,7610-00009-1,1,4380_7778208_1110105,4380_206 -4380_78122,289,4380_105890,Ballymakenny Road,65935-00014-1,0,4380_7778208_1901113,4380_1705 -4380_78122,292,4380_105891,Ballymakenny Road,65932-00016-1,0,4380_7778208_1901113,4380_1705 -4380_78122,293,4380_105892,Ballymakenny Road,65938-00017-1,0,4380_7778208_1901113,4380_1705 -4380_78122,290,4380_105893,Ballymakenny Road,65930-00015-1,0,4380_7778208_1901113,4380_1705 -4380_78122,294,4380_105894,Ballymakenny Road,65928-00018-1,0,4380_7778208_1901113,4380_1705 -4380_78122,295,4380_105895,Ballymakenny Road,65936-00019-1,0,4380_7778208_1901113,4380_1705 -4380_78122,296,4380_105896,Ballymakenny Road,65934-00021-1,0,4380_7778208_1901113,4380_1706 -4380_78122,297,4380_105898,Ballymakenny Road,65032-00008-1,0,4380_7778208_1901110,4380_1705 -4380_77954,286,4380_10590,Dublin,7624-00010-1,1,4380_7778208_1110105,4380_206 -4380_78122,285,4380_105905,Ballymakenny Road,65339-00009-1,0,4380_7778208_1901111,4380_1705 -4380_78122,286,4380_105906,Ballymakenny Road,65335-00010-1,0,4380_7778208_1901111,4380_1705 -4380_78122,288,4380_105907,Ballymakenny Road,65333-00011-1,0,4380_7778208_1901111,4380_1705 -4380_78122,287,4380_105908,Ballymakenny Road,65337-00012-1,0,4380_7778208_1901111,4380_1705 -4380_78122,291,4380_105909,Ballymakenny Road,65331-00013-1,0,4380_7778208_1901111,4380_1706 -4380_77954,297,4380_10591,Dublin,7662-00008-1,1,4380_7778208_1110105,4380_209 -4380_78122,289,4380_105910,Ballymakenny Road,65329-00014-1,0,4380_7778208_1901111,4380_1705 -4380_78122,292,4380_105911,Ballymakenny Road,65336-00016-1,0,4380_7778208_1901111,4380_1705 -4380_78122,293,4380_105912,Ballymakenny Road,65334-00017-1,0,4380_7778208_1901111,4380_1705 -4380_78122,290,4380_105913,Ballymakenny Road,65340-00015-1,0,4380_7778208_1901111,4380_1705 -4380_78122,294,4380_105914,Ballymakenny Road,65338-00018-1,0,4380_7778208_1901111,4380_1705 -4380_78122,295,4380_105915,Ballymakenny Road,65330-00019-1,0,4380_7778208_1901111,4380_1705 -4380_78122,296,4380_105916,Ballymakenny Road,65332-00021-1,0,4380_7778208_1901111,4380_1706 -4380_77954,288,4380_10592,Dublin,7634-00011-1,1,4380_7778208_1110105,4380_206 -4380_78122,285,4380_105923,Ballymakenny Road,65048-00009-1,0,4380_7778208_1901110,4380_1705 -4380_78122,286,4380_105924,Ballymakenny Road,65054-00010-1,0,4380_7778208_1901110,4380_1705 -4380_78122,288,4380_105925,Ballymakenny Road,65046-00011-1,0,4380_7778208_1901110,4380_1705 -4380_78122,287,4380_105926,Ballymakenny Road,65056-00012-1,0,4380_7778208_1901110,4380_1705 -4380_78122,291,4380_105927,Ballymakenny Road,65050-00013-1,0,4380_7778208_1901110,4380_1706 -4380_78122,289,4380_105928,Ballymakenny Road,65052-00014-1,0,4380_7778208_1901110,4380_1705 -4380_78122,292,4380_105929,Ballymakenny Road,65055-00016-1,0,4380_7778208_1901110,4380_1705 -4380_77954,287,4380_10593,Dublin,7644-00012-1,1,4380_7778208_1110105,4380_206 -4380_78122,293,4380_105930,Ballymakenny Road,65047-00017-1,0,4380_7778208_1901110,4380_1705 -4380_78122,290,4380_105931,Ballymakenny Road,65049-00015-1,0,4380_7778208_1901110,4380_1705 -4380_78122,294,4380_105932,Ballymakenny Road,65057-00018-1,0,4380_7778208_1901110,4380_1705 -4380_78122,295,4380_105933,Ballymakenny Road,65053-00019-1,0,4380_7778208_1901110,4380_1705 -4380_78122,296,4380_105934,Ballymakenny Road,65051-00021-1,0,4380_7778208_1901110,4380_1706 -4380_78122,297,4380_105936,Ballymakenny Road,65058-00008-1,0,4380_7778208_1901110,4380_1705 -4380_77954,289,4380_10594,Dublin,7604-00014-1,1,4380_7778208_1110105,4380_206 -4380_78122,285,4380_105943,Ballymakenny Road,65705-00009-1,0,4380_7778208_1901112,4380_1705 -4380_78122,286,4380_105944,Ballymakenny Road,65709-00010-1,0,4380_7778208_1901112,4380_1705 -4380_78122,288,4380_105945,Ballymakenny Road,65707-00011-1,0,4380_7778208_1901112,4380_1705 -4380_78122,287,4380_105946,Ballymakenny Road,65699-00012-1,0,4380_7778208_1901112,4380_1705 -4380_78122,291,4380_105947,Ballymakenny Road,65703-00013-1,0,4380_7778208_1901112,4380_1706 -4380_78122,289,4380_105948,Ballymakenny Road,65701-00014-1,0,4380_7778208_1901112,4380_1705 -4380_78122,292,4380_105949,Ballymakenny Road,65710-00016-1,0,4380_7778208_1901112,4380_1705 -4380_77954,290,4380_10595,Dublin,55670-00015-1,1,4380_7778208_1110105,4380_206 -4380_78122,293,4380_105950,Ballymakenny Road,65708-00017-1,0,4380_7778208_1901112,4380_1705 -4380_78122,290,4380_105951,Ballymakenny Road,65706-00015-1,0,4380_7778208_1901112,4380_1705 -4380_78122,294,4380_105952,Ballymakenny Road,65700-00018-1,0,4380_7778208_1901112,4380_1705 -4380_78122,295,4380_105953,Ballymakenny Road,65702-00019-1,0,4380_7778208_1901112,4380_1705 -4380_78122,296,4380_105954,Ballymakenny Road,65704-00021-1,0,4380_7778208_1901112,4380_1706 -4380_77954,291,4380_10596,Dublin,7440-00013-1,1,4380_7778208_1110102,4380_210 -4380_78122,285,4380_105961,Ballymakenny Road,66287-00009-1,0,4380_7778208_1901114,4380_1705 -4380_78122,286,4380_105962,Ballymakenny Road,66295-00010-1,0,4380_7778208_1901114,4380_1705 -4380_78122,288,4380_105963,Ballymakenny Road,66291-00011-1,0,4380_7778208_1901114,4380_1705 -4380_78122,287,4380_105964,Ballymakenny Road,66297-00012-1,0,4380_7778208_1901114,4380_1705 -4380_78122,291,4380_105965,Ballymakenny Road,66289-00013-1,0,4380_7778208_1901114,4380_1706 -4380_78122,289,4380_105966,Ballymakenny Road,66293-00014-1,0,4380_7778208_1901114,4380_1705 -4380_78122,292,4380_105967,Ballymakenny Road,66296-00016-1,0,4380_7778208_1901114,4380_1705 -4380_78122,293,4380_105968,Ballymakenny Road,66292-00017-1,0,4380_7778208_1901114,4380_1705 -4380_78122,290,4380_105969,Ballymakenny Road,66288-00015-1,0,4380_7778208_1901114,4380_1705 -4380_77954,292,4380_10597,Dublin,55667-00016-1,1,4380_7778208_1110105,4380_206 -4380_78122,294,4380_105970,Ballymakenny Road,66298-00018-1,0,4380_7778208_1901114,4380_1705 -4380_78122,295,4380_105971,Ballymakenny Road,66294-00019-1,0,4380_7778208_1901114,4380_1705 -4380_78122,296,4380_105972,Ballymakenny Road,66290-00021-1,0,4380_7778208_1901114,4380_1706 -4380_78122,297,4380_105974,Ballymakenny Road,65072-00008-1,0,4380_7778208_1901110,4380_1705 -4380_77954,293,4380_10598,Dublin,55669-00017-1,1,4380_7778208_1110105,4380_206 -4380_78122,285,4380_105981,Ballymakenny Road,65979-00009-1,0,4380_7778208_1901113,4380_1705 -4380_78122,286,4380_105982,Ballymakenny Road,65983-00010-1,0,4380_7778208_1901113,4380_1705 -4380_78122,288,4380_105983,Ballymakenny Road,65977-00011-1,0,4380_7778208_1901113,4380_1705 -4380_78122,287,4380_105984,Ballymakenny Road,65985-00012-1,0,4380_7778208_1901113,4380_1705 -4380_78122,291,4380_105985,Ballymakenny Road,65981-00013-1,0,4380_7778208_1901113,4380_1706 -4380_78122,289,4380_105986,Ballymakenny Road,65975-00014-1,0,4380_7778208_1901113,4380_1705 -4380_78122,292,4380_105987,Ballymakenny Road,65984-00016-1,0,4380_7778208_1901113,4380_1705 -4380_78122,293,4380_105988,Ballymakenny Road,65978-00017-1,0,4380_7778208_1901113,4380_1705 -4380_78122,290,4380_105989,Ballymakenny Road,65980-00015-1,0,4380_7778208_1901113,4380_1705 -4380_77954,294,4380_10599,Dublin,55668-00018-1,1,4380_7778208_1110105,4380_206 -4380_78122,294,4380_105990,Ballymakenny Road,65986-00018-1,0,4380_7778208_1901113,4380_1705 -4380_78122,295,4380_105991,Ballymakenny Road,65976-00019-1,0,4380_7778208_1901113,4380_1705 -4380_78122,296,4380_105992,Ballymakenny Road,65982-00021-1,0,4380_7778208_1901113,4380_1706 -4380_78122,285,4380_105999,Ballymakenny Road,65392-00009-1,0,4380_7778208_1901111,4380_1705 -4380_77954,295,4380_10600,Dublin,55666-00019-1,1,4380_7778208_1110105,4380_206 -4380_78122,286,4380_106000,Ballymakenny Road,65384-00010-1,0,4380_7778208_1901111,4380_1705 -4380_78122,288,4380_106001,Ballymakenny Road,65382-00011-1,0,4380_7778208_1901111,4380_1705 -4380_78122,287,4380_106002,Ballymakenny Road,65388-00012-1,0,4380_7778208_1901111,4380_1705 -4380_78122,291,4380_106003,Ballymakenny Road,65390-00013-1,0,4380_7778208_1901111,4380_1706 -4380_78122,289,4380_106004,Ballymakenny Road,65386-00014-1,0,4380_7778208_1901111,4380_1705 -4380_78122,292,4380_106005,Ballymakenny Road,65385-00016-1,0,4380_7778208_1901111,4380_1705 -4380_78122,293,4380_106006,Ballymakenny Road,65383-00017-1,0,4380_7778208_1901111,4380_1705 -4380_78122,290,4380_106007,Ballymakenny Road,65393-00015-1,0,4380_7778208_1901111,4380_1705 -4380_78122,294,4380_106008,Ballymakenny Road,65389-00018-1,0,4380_7778208_1901111,4380_1705 -4380_78122,295,4380_106009,Ballymakenny Road,65387-00019-1,0,4380_7778208_1901111,4380_1705 -4380_77954,296,4380_10601,Dublin,55582-00021-1,1,4380_7778208_1110102,4380_210 -4380_78122,296,4380_106010,Ballymakenny Road,65391-00021-1,0,4380_7778208_1901111,4380_1706 -4380_78122,297,4380_106012,Ballymakenny Road,65098-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78122,285,4380_106019,Ballymakenny Road,65103-00009-1,0,4380_7778208_1901110,4380_1705 -4380_78122,286,4380_106020,Ballymakenny Road,65099-00010-1,0,4380_7778208_1901110,4380_1705 -4380_78122,288,4380_106021,Ballymakenny Road,65105-00011-1,0,4380_7778208_1901110,4380_1705 -4380_78122,287,4380_106022,Ballymakenny Road,65109-00012-1,0,4380_7778208_1901110,4380_1705 -4380_78122,291,4380_106023,Ballymakenny Road,65107-00013-1,0,4380_7778208_1901110,4380_1706 -4380_78122,289,4380_106024,Ballymakenny Road,65101-00014-1,0,4380_7778208_1901110,4380_1705 -4380_78122,292,4380_106025,Ballymakenny Road,65100-00016-1,0,4380_7778208_1901110,4380_1705 -4380_78122,293,4380_106026,Ballymakenny Road,65106-00017-1,0,4380_7778208_1901110,4380_1705 -4380_78122,290,4380_106027,Ballymakenny Road,65104-00015-1,0,4380_7778208_1901110,4380_1705 -4380_78122,294,4380_106028,Ballymakenny Road,65110-00018-1,0,4380_7778208_1901110,4380_1705 -4380_78122,295,4380_106029,Ballymakenny Road,65102-00019-1,0,4380_7778208_1901110,4380_1705 -4380_78122,296,4380_106030,Ballymakenny Road,65108-00021-1,0,4380_7778208_1901110,4380_1706 -4380_78122,285,4380_106037,Ballymakenny Road,65751-00009-1,0,4380_7778208_1901112,4380_1705 -4380_78122,286,4380_106038,Ballymakenny Road,65747-00010-1,0,4380_7778208_1901112,4380_1705 -4380_78122,288,4380_106039,Ballymakenny Road,65753-00011-1,0,4380_7778208_1901112,4380_1705 -4380_78122,287,4380_106040,Ballymakenny Road,65757-00012-1,0,4380_7778208_1901112,4380_1705 -4380_78122,291,4380_106041,Ballymakenny Road,65755-00013-1,0,4380_7778208_1901112,4380_1706 -4380_78122,289,4380_106042,Ballymakenny Road,65749-00014-1,0,4380_7778208_1901112,4380_1705 -4380_78122,292,4380_106043,Ballymakenny Road,65748-00016-1,0,4380_7778208_1901112,4380_1705 -4380_78122,293,4380_106044,Ballymakenny Road,65754-00017-1,0,4380_7778208_1901112,4380_1705 -4380_78122,290,4380_106045,Ballymakenny Road,65752-00015-1,0,4380_7778208_1901112,4380_1705 -4380_78122,294,4380_106046,Ballymakenny Road,65758-00018-1,0,4380_7778208_1901112,4380_1705 -4380_78122,295,4380_106047,Ballymakenny Road,65750-00019-1,0,4380_7778208_1901112,4380_1705 -4380_78122,296,4380_106048,Ballymakenny Road,65756-00021-1,0,4380_7778208_1901112,4380_1706 -4380_78122,297,4380_106050,Ballymakenny Road,65112-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78122,285,4380_106057,Ballymakenny Road,66335-00009-1,0,4380_7778208_1901114,4380_1705 -4380_78122,286,4380_106058,Ballymakenny Road,66341-00010-1,0,4380_7778208_1901114,4380_1705 -4380_78122,288,4380_106059,Ballymakenny Road,66345-00011-1,0,4380_7778208_1901114,4380_1705 -4380_78122,287,4380_106060,Ballymakenny Road,66337-00012-1,0,4380_7778208_1901114,4380_1705 -4380_78122,291,4380_106061,Ballymakenny Road,66343-00013-1,0,4380_7778208_1901114,4380_1706 -4380_78122,289,4380_106062,Ballymakenny Road,66339-00014-1,0,4380_7778208_1901114,4380_1705 -4380_78122,292,4380_106063,Ballymakenny Road,66342-00016-1,0,4380_7778208_1901114,4380_1705 -4380_78122,293,4380_106064,Ballymakenny Road,66346-00017-1,0,4380_7778208_1901114,4380_1705 -4380_78122,290,4380_106065,Ballymakenny Road,66336-00015-1,0,4380_7778208_1901114,4380_1705 -4380_78122,294,4380_106066,Ballymakenny Road,66338-00018-1,0,4380_7778208_1901114,4380_1705 -4380_78122,295,4380_106067,Ballymakenny Road,66340-00019-1,0,4380_7778208_1901114,4380_1705 -4380_78122,296,4380_106068,Ballymakenny Road,66344-00021-1,0,4380_7778208_1901114,4380_1706 -4380_78122,285,4380_106075,Ballymakenny Road,66029-00009-1,0,4380_7778208_1901113,4380_1705 -4380_78122,286,4380_106076,Ballymakenny Road,66033-00010-1,0,4380_7778208_1901113,4380_1705 -4380_78122,288,4380_106077,Ballymakenny Road,66031-00011-1,0,4380_7778208_1901113,4380_1705 -4380_78122,287,4380_106078,Ballymakenny Road,66027-00012-1,0,4380_7778208_1901113,4380_1705 -4380_78122,291,4380_106079,Ballymakenny Road,66023-00013-1,0,4380_7778208_1901113,4380_1706 -4380_78148,285,4380_10608,Delvin,8888-00009-1,0,4380_7778208_1110901,4380_217 -4380_78122,289,4380_106080,Ballymakenny Road,66025-00014-1,0,4380_7778208_1901113,4380_1705 -4380_78122,292,4380_106081,Ballymakenny Road,66034-00016-1,0,4380_7778208_1901113,4380_1705 -4380_78122,293,4380_106082,Ballymakenny Road,66032-00017-1,0,4380_7778208_1901113,4380_1705 -4380_78122,290,4380_106083,Ballymakenny Road,66030-00015-1,0,4380_7778208_1901113,4380_1705 -4380_78122,294,4380_106084,Ballymakenny Road,66028-00018-1,0,4380_7778208_1901113,4380_1705 -4380_78122,295,4380_106085,Ballymakenny Road,66026-00019-1,0,4380_7778208_1901113,4380_1705 -4380_78122,296,4380_106086,Ballymakenny Road,66024-00021-1,0,4380_7778208_1901113,4380_1706 -4380_78122,297,4380_106088,Ballymakenny Road,65138-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78148,286,4380_10609,Delvin,8912-00010-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106095,Ballymakenny Road,65441-00009-1,0,4380_7778208_1901111,4380_1705 -4380_78122,286,4380_106096,Ballymakenny Road,65437-00010-1,0,4380_7778208_1901111,4380_1705 -4380_78122,288,4380_106097,Ballymakenny Road,65439-00011-1,0,4380_7778208_1901111,4380_1705 -4380_78122,287,4380_106098,Ballymakenny Road,65443-00012-1,0,4380_7778208_1901111,4380_1705 -4380_78122,291,4380_106099,Ballymakenny Road,65435-00013-1,0,4380_7778208_1901111,4380_1706 -4380_78148,288,4380_10610,Delvin,8928-00011-1,0,4380_7778208_1110901,4380_217 -4380_78122,289,4380_106100,Ballymakenny Road,65445-00014-1,0,4380_7778208_1901111,4380_1705 -4380_78122,292,4380_106101,Ballymakenny Road,65438-00016-1,0,4380_7778208_1901111,4380_1705 -4380_78122,293,4380_106102,Ballymakenny Road,65440-00017-1,0,4380_7778208_1901111,4380_1705 -4380_78122,290,4380_106103,Ballymakenny Road,65442-00015-1,0,4380_7778208_1901111,4380_1705 -4380_78122,294,4380_106104,Ballymakenny Road,65444-00018-1,0,4380_7778208_1901111,4380_1705 -4380_78122,295,4380_106105,Ballymakenny Road,65446-00019-1,0,4380_7778208_1901111,4380_1705 -4380_78122,296,4380_106106,Ballymakenny Road,65436-00021-1,0,4380_7778208_1901111,4380_1706 -4380_78148,287,4380_10611,Delvin,8936-00012-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106113,Ballymakenny Road,65158-00009-1,0,4380_7778208_1901110,4380_1705 -4380_78122,286,4380_106114,Ballymakenny Road,65152-00010-1,0,4380_7778208_1901110,4380_1705 -4380_78122,288,4380_106115,Ballymakenny Road,65162-00011-1,0,4380_7778208_1901110,4380_1705 -4380_78122,287,4380_106116,Ballymakenny Road,65160-00012-1,0,4380_7778208_1901110,4380_1705 -4380_78122,291,4380_106117,Ballymakenny Road,65154-00013-1,0,4380_7778208_1901110,4380_1706 -4380_78122,289,4380_106118,Ballymakenny Road,65156-00014-1,0,4380_7778208_1901110,4380_1705 -4380_78122,292,4380_106119,Ballymakenny Road,65153-00016-1,0,4380_7778208_1901110,4380_1705 -4380_78148,289,4380_10612,Delvin,8872-00014-1,0,4380_7778208_1110901,4380_217 -4380_78122,293,4380_106120,Ballymakenny Road,65163-00017-1,0,4380_7778208_1901110,4380_1705 -4380_78122,290,4380_106121,Ballymakenny Road,65159-00015-1,0,4380_7778208_1901110,4380_1705 -4380_78122,294,4380_106122,Ballymakenny Road,65161-00018-1,0,4380_7778208_1901110,4380_1705 -4380_78122,295,4380_106123,Ballymakenny Road,65157-00019-1,0,4380_7778208_1901110,4380_1705 -4380_78122,296,4380_106124,Ballymakenny Road,65155-00021-1,0,4380_7778208_1901110,4380_1706 -4380_78122,297,4380_106126,Ballymakenny Road,65164-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78148,290,4380_10613,Delvin,57518-00015-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106133,Ballymakenny Road,65803-00009-1,0,4380_7778208_1901112,4380_1705 -4380_78122,286,4380_106134,Ballymakenny Road,65805-00010-1,0,4380_7778208_1901112,4380_1705 -4380_78122,288,4380_106135,Ballymakenny Road,65801-00011-1,0,4380_7778208_1901112,4380_1705 -4380_78122,287,4380_106136,Ballymakenny Road,65799-00012-1,0,4380_7778208_1901112,4380_1705 -4380_78122,291,4380_106137,Ballymakenny Road,65797-00013-1,0,4380_7778208_1901112,4380_1706 -4380_78122,289,4380_106138,Ballymakenny Road,65795-00014-1,0,4380_7778208_1901112,4380_1705 -4380_78122,292,4380_106139,Ballymakenny Road,65806-00016-1,0,4380_7778208_1901112,4380_1705 -4380_78148,291,4380_10614,Delvin,8960-00013-1,0,4380_7778208_1110901,4380_220 -4380_78122,293,4380_106140,Ballymakenny Road,65802-00017-1,0,4380_7778208_1901112,4380_1705 -4380_78122,290,4380_106141,Ballymakenny Road,65804-00015-1,0,4380_7778208_1901112,4380_1705 -4380_78122,294,4380_106142,Ballymakenny Road,65800-00018-1,0,4380_7778208_1901112,4380_1705 -4380_78122,295,4380_106143,Ballymakenny Road,65796-00019-1,0,4380_7778208_1901112,4380_1705 -4380_78122,296,4380_106144,Ballymakenny Road,65798-00021-1,0,4380_7778208_1901112,4380_1706 -4380_78148,292,4380_10615,Delvin,57520-00016-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106151,Ballymakenny Road,66387-00009-1,0,4380_7778208_1901114,4380_1705 -4380_78122,286,4380_106152,Ballymakenny Road,66389-00010-1,0,4380_7778208_1901114,4380_1705 -4380_78122,288,4380_106153,Ballymakenny Road,66383-00011-1,0,4380_7778208_1901114,4380_1705 -4380_78122,287,4380_106154,Ballymakenny Road,66393-00012-1,0,4380_7778208_1901114,4380_1705 -4380_78122,291,4380_106155,Ballymakenny Road,66391-00013-1,0,4380_7778208_1901114,4380_1706 -4380_78122,289,4380_106156,Ballymakenny Road,66385-00014-1,0,4380_7778208_1901114,4380_1705 -4380_78122,292,4380_106157,Ballymakenny Road,66390-00016-1,0,4380_7778208_1901114,4380_1705 -4380_78122,293,4380_106158,Ballymakenny Road,66384-00017-1,0,4380_7778208_1901114,4380_1705 -4380_78122,290,4380_106159,Ballymakenny Road,66388-00015-1,0,4380_7778208_1901114,4380_1705 -4380_78148,293,4380_10616,Delvin,57521-00017-1,0,4380_7778208_1110901,4380_217 -4380_78122,294,4380_106160,Ballymakenny Road,66394-00018-1,0,4380_7778208_1901114,4380_1705 -4380_78122,295,4380_106161,Ballymakenny Road,66386-00019-1,0,4380_7778208_1901114,4380_1705 -4380_78122,296,4380_106162,Ballymakenny Road,66392-00021-1,0,4380_7778208_1901114,4380_1706 -4380_78122,297,4380_106164,Ballymakenny Road,65178-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78148,294,4380_10617,Delvin,57517-00018-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106171,Ballymakenny Road,65494-00009-1,0,4380_7778208_1901111,4380_1705 -4380_78122,286,4380_106172,Ballymakenny Road,65496-00010-1,0,4380_7778208_1901111,4380_1705 -4380_78122,288,4380_106173,Ballymakenny Road,65490-00011-1,0,4380_7778208_1901111,4380_1705 -4380_78122,287,4380_106174,Ballymakenny Road,65492-00012-1,0,4380_7778208_1901111,4380_1705 -4380_78122,291,4380_106175,Ballymakenny Road,65488-00013-1,0,4380_7778208_1901111,4380_1706 -4380_78122,289,4380_106176,Ballymakenny Road,65498-00014-1,0,4380_7778208_1901111,4380_1705 -4380_78122,292,4380_106177,Ballymakenny Road,65497-00016-1,0,4380_7778208_1901111,4380_1705 -4380_78122,293,4380_106178,Ballymakenny Road,65491-00017-1,0,4380_7778208_1901111,4380_1705 -4380_78122,290,4380_106179,Ballymakenny Road,65495-00015-1,0,4380_7778208_1901111,4380_1705 -4380_78148,295,4380_10618,Delvin,57516-00019-1,0,4380_7778208_1110901,4380_217 -4380_78122,294,4380_106180,Ballymakenny Road,65493-00018-1,0,4380_7778208_1901111,4380_1705 -4380_78122,295,4380_106181,Ballymakenny Road,65499-00019-1,0,4380_7778208_1901111,4380_1705 -4380_78122,296,4380_106182,Ballymakenny Road,65489-00021-1,0,4380_7778208_1901111,4380_1706 -4380_78122,297,4380_106184,Ballymakenny Road,65180-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78148,296,4380_10619,Delvin,57519-00021-1,0,4380_7778208_1110901,4380_220 -4380_78122,285,4380_106191,Ballymakenny Road,66105-00009-1,0,4380_7778208_1901113,4380_1705 -4380_78122,286,4380_106192,Ballymakenny Road,66103-00010-1,0,4380_7778208_1901113,4380_1705 -4380_78122,288,4380_106193,Ballymakenny Road,66097-00011-1,0,4380_7778208_1901113,4380_1705 -4380_78122,287,4380_106194,Ballymakenny Road,66099-00012-1,0,4380_7778208_1901113,4380_1705 -4380_78122,291,4380_106195,Ballymakenny Road,66095-00013-1,0,4380_7778208_1901113,4380_1706 -4380_78122,289,4380_106196,Ballymakenny Road,66101-00014-1,0,4380_7778208_1901113,4380_1705 -4380_78122,292,4380_106197,Ballymakenny Road,66104-00016-1,0,4380_7778208_1901113,4380_1705 -4380_78122,293,4380_106198,Ballymakenny Road,66098-00017-1,0,4380_7778208_1901113,4380_1705 -4380_78122,290,4380_106199,Ballymakenny Road,66106-00015-1,0,4380_7778208_1901113,4380_1705 -4380_78122,294,4380_106200,Ballymakenny Road,66100-00018-1,0,4380_7778208_1901113,4380_1705 -4380_78122,295,4380_106201,Ballymakenny Road,66102-00019-1,0,4380_7778208_1901113,4380_1705 -4380_78122,296,4380_106202,Ballymakenny Road,66096-00021-1,0,4380_7778208_1901113,4380_1706 -4380_78122,297,4380_106204,Ballymakenny Road,65182-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78122,285,4380_106211,Ballymakenny Road,66431-00009-1,0,4380_7778208_1901114,4380_1705 -4380_78122,286,4380_106212,Ballymakenny Road,66437-00010-1,0,4380_7778208_1901114,4380_1705 -4380_78122,288,4380_106213,Ballymakenny Road,66435-00011-1,0,4380_7778208_1901114,4380_1705 -4380_78122,287,4380_106214,Ballymakenny Road,66433-00012-1,0,4380_7778208_1901114,4380_1705 -4380_78122,291,4380_106215,Ballymakenny Road,66439-00013-1,0,4380_7778208_1901114,4380_1706 -4380_78122,289,4380_106216,Ballymakenny Road,66441-00014-1,0,4380_7778208_1901114,4380_1705 -4380_78122,292,4380_106217,Ballymakenny Road,66438-00016-1,0,4380_7778208_1901114,4380_1705 -4380_78122,293,4380_106218,Ballymakenny Road,66436-00017-1,0,4380_7778208_1901114,4380_1705 -4380_78122,290,4380_106219,Ballymakenny Road,66432-00015-1,0,4380_7778208_1901114,4380_1705 -4380_78122,294,4380_106220,Ballymakenny Road,66434-00018-1,0,4380_7778208_1901114,4380_1705 -4380_78122,295,4380_106221,Ballymakenny Road,66442-00019-1,0,4380_7778208_1901114,4380_1705 -4380_78122,296,4380_106222,Ballymakenny Road,66440-00021-1,0,4380_7778208_1901114,4380_1706 -4380_78122,297,4380_106224,Ballymakenny Road,65184-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78122,285,4380_106231,Ballymakenny Road,65552-00009-1,0,4380_7778208_1901111,4380_1705 -4380_78122,286,4380_106232,Ballymakenny Road,65542-00010-1,0,4380_7778208_1901111,4380_1705 -4380_78122,288,4380_106233,Ballymakenny Road,65544-00011-1,0,4380_7778208_1901111,4380_1705 -4380_78122,287,4380_106234,Ballymakenny Road,65548-00012-1,0,4380_7778208_1901111,4380_1705 -4380_78122,291,4380_106235,Ballymakenny Road,65550-00013-1,0,4380_7778208_1901111,4380_1706 -4380_78122,289,4380_106236,Ballymakenny Road,65546-00014-1,0,4380_7778208_1901111,4380_1705 -4380_78122,292,4380_106237,Ballymakenny Road,65543-00016-1,0,4380_7778208_1901111,4380_1705 -4380_78122,293,4380_106238,Ballymakenny Road,65545-00017-1,0,4380_7778208_1901111,4380_1705 -4380_78122,290,4380_106239,Ballymakenny Road,65553-00015-1,0,4380_7778208_1901111,4380_1705 -4380_78122,294,4380_106240,Ballymakenny Road,65549-00018-1,0,4380_7778208_1901111,4380_1705 -4380_78122,295,4380_106241,Ballymakenny Road,65547-00019-1,0,4380_7778208_1901111,4380_1705 -4380_78122,296,4380_106242,Ballymakenny Road,65551-00021-1,0,4380_7778208_1901111,4380_1706 -4380_78122,297,4380_106244,Ballymakenny Road,65186-00008-1,0,4380_7778208_1901110,4380_1705 -4380_78122,285,4380_106251,Southgate SC,65195-00009-1,1,4380_7778208_1901111,4380_1707 -4380_78122,286,4380_106252,Southgate SC,65187-00010-1,1,4380_7778208_1901111,4380_1707 -4380_78122,288,4380_106253,Southgate SC,65191-00011-1,1,4380_7778208_1901111,4380_1707 -4380_78122,287,4380_106254,Southgate SC,65193-00012-1,1,4380_7778208_1901111,4380_1707 -4380_78122,291,4380_106255,Southgate SC,65197-00013-1,1,4380_7778208_1901111,4380_1708 -4380_78122,289,4380_106256,Southgate SC,65189-00014-1,1,4380_7778208_1901111,4380_1707 -4380_78122,292,4380_106257,Southgate SC,65188-00016-1,1,4380_7778208_1901111,4380_1707 -4380_78122,293,4380_106258,Southgate SC,65192-00017-1,1,4380_7778208_1901111,4380_1707 -4380_78122,290,4380_106259,Southgate SC,65196-00015-1,1,4380_7778208_1901111,4380_1707 -4380_78148,285,4380_10626,Delvin,8890-00009-1,0,4380_7778208_1110901,4380_217 -4380_78122,294,4380_106260,Southgate SC,65194-00018-1,1,4380_7778208_1901111,4380_1707 -4380_78122,295,4380_106261,Southgate SC,65190-00019-1,1,4380_7778208_1901111,4380_1707 -4380_78122,296,4380_106262,Southgate SC,65198-00021-1,1,4380_7778208_1901111,4380_1708 -4380_78122,285,4380_106269,Southgate SC,64902-00009-1,1,4380_7778208_1901110,4380_1707 -4380_78148,286,4380_10627,Delvin,8914-00010-1,0,4380_7778208_1110901,4380_217 -4380_78122,286,4380_106270,Southgate SC,64910-00010-1,1,4380_7778208_1901110,4380_1707 -4380_78122,288,4380_106271,Southgate SC,64912-00011-1,1,4380_7778208_1901110,4380_1707 -4380_78122,287,4380_106272,Southgate SC,64904-00012-1,1,4380_7778208_1901110,4380_1707 -4380_78122,291,4380_106273,Southgate SC,64908-00013-1,1,4380_7778208_1901110,4380_1708 -4380_78122,289,4380_106274,Southgate SC,64906-00014-1,1,4380_7778208_1901110,4380_1707 -4380_78122,292,4380_106275,Southgate SC,64911-00016-1,1,4380_7778208_1901110,4380_1707 -4380_78122,293,4380_106276,Southgate SC,64913-00017-1,1,4380_7778208_1901110,4380_1707 -4380_78122,290,4380_106277,Southgate SC,64903-00015-1,1,4380_7778208_1901110,4380_1707 -4380_78122,294,4380_106278,Southgate SC,64905-00018-1,1,4380_7778208_1901110,4380_1707 -4380_78122,295,4380_106279,Southgate SC,64907-00019-1,1,4380_7778208_1901110,4380_1707 -4380_78148,288,4380_10628,Delvin,8930-00011-1,0,4380_7778208_1110901,4380_217 -4380_78122,296,4380_106280,Southgate SC,64909-00021-1,1,4380_7778208_1901110,4380_1708 -4380_78122,285,4380_106287,Southgate SC,65573-00009-1,1,4380_7778208_1901112,4380_1707 -4380_78122,286,4380_106288,Southgate SC,65569-00010-1,1,4380_7778208_1901112,4380_1707 -4380_78122,288,4380_106289,Southgate SC,65577-00011-1,1,4380_7778208_1901112,4380_1707 -4380_78148,287,4380_10629,Delvin,8938-00012-1,0,4380_7778208_1110901,4380_217 -4380_78122,287,4380_106290,Southgate SC,65575-00012-1,1,4380_7778208_1901112,4380_1707 -4380_78122,291,4380_106291,Southgate SC,65567-00013-1,1,4380_7778208_1901112,4380_1708 -4380_78122,289,4380_106292,Southgate SC,65571-00014-1,1,4380_7778208_1901112,4380_1707 -4380_78122,292,4380_106293,Southgate SC,65570-00016-1,1,4380_7778208_1901112,4380_1707 -4380_78122,293,4380_106294,Southgate SC,65578-00017-1,1,4380_7778208_1901112,4380_1707 -4380_78122,290,4380_106295,Southgate SC,65574-00015-1,1,4380_7778208_1901112,4380_1707 -4380_78122,294,4380_106296,Southgate SC,65576-00018-1,1,4380_7778208_1901112,4380_1707 -4380_78122,295,4380_106297,Southgate SC,65572-00019-1,1,4380_7778208_1901112,4380_1707 -4380_78122,296,4380_106298,Southgate SC,65568-00021-1,1,4380_7778208_1901112,4380_1708 -4380_78113,285,4380_1063,Dublin via Airport,49863-00009-1,1,4380_7778208_1000905,4380_18 -4380_78148,289,4380_10630,Delvin,8874-00014-1,0,4380_7778208_1110901,4380_217 -4380_78122,291,4380_106300,Southgate SC,66155-00013-1,1,4380_7778208_1901114,4380_1707 -4380_78122,296,4380_106301,Southgate SC,66156-00021-1,1,4380_7778208_1901114,4380_1707 -4380_78122,285,4380_106307,Southgate SC,66159-00009-1,1,4380_7778208_1901114,4380_1707 -4380_78122,286,4380_106308,Southgate SC,66161-00010-1,1,4380_7778208_1901114,4380_1707 -4380_78122,288,4380_106309,Southgate SC,66157-00011-1,1,4380_7778208_1901114,4380_1707 -4380_78148,290,4380_10631,Delvin,57529-00015-1,0,4380_7778208_1110901,4380_217 -4380_78122,287,4380_106310,Southgate SC,66163-00012-1,1,4380_7778208_1901114,4380_1707 -4380_78122,289,4380_106311,Southgate SC,66165-00014-1,1,4380_7778208_1901114,4380_1707 -4380_78122,292,4380_106312,Southgate SC,66162-00016-1,1,4380_7778208_1901114,4380_1707 -4380_78122,293,4380_106313,Southgate SC,66158-00017-1,1,4380_7778208_1901114,4380_1707 -4380_78122,290,4380_106314,Southgate SC,66160-00015-1,1,4380_7778208_1901114,4380_1707 -4380_78122,294,4380_106315,Southgate SC,66164-00018-1,1,4380_7778208_1901114,4380_1707 -4380_78122,295,4380_106316,Southgate SC,66166-00019-1,1,4380_7778208_1901114,4380_1707 -4380_78122,297,4380_106318,Southgate SC,64939-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78148,291,4380_10632,Delvin,8962-00013-1,0,4380_7778208_1110901,4380_220 -4380_78122,291,4380_106320,Southgate SC,65843-00013-1,1,4380_7778208_1901113,4380_1707 -4380_78122,296,4380_106321,Southgate SC,65844-00021-1,1,4380_7778208_1901113,4380_1707 -4380_78122,285,4380_106327,Southgate SC,65845-00009-1,1,4380_7778208_1901113,4380_1707 -4380_78122,286,4380_106328,Southgate SC,65853-00010-1,1,4380_7778208_1901113,4380_1707 -4380_78122,288,4380_106329,Southgate SC,65851-00011-1,1,4380_7778208_1901113,4380_1707 -4380_78148,292,4380_10633,Delvin,57530-00016-1,0,4380_7778208_1110901,4380_217 -4380_78122,287,4380_106330,Southgate SC,65847-00012-1,1,4380_7778208_1901113,4380_1707 -4380_78122,289,4380_106331,Southgate SC,65849-00014-1,1,4380_7778208_1901113,4380_1707 -4380_78122,292,4380_106332,Southgate SC,65854-00016-1,1,4380_7778208_1901113,4380_1707 -4380_78122,293,4380_106333,Southgate SC,65852-00017-1,1,4380_7778208_1901113,4380_1707 -4380_78122,290,4380_106334,Southgate SC,65846-00015-1,1,4380_7778208_1901113,4380_1707 -4380_78122,294,4380_106335,Southgate SC,65848-00018-1,1,4380_7778208_1901113,4380_1707 -4380_78122,295,4380_106336,Southgate SC,65850-00019-1,1,4380_7778208_1901113,4380_1707 -4380_78122,291,4380_106338,Southgate SC,65237-00013-1,1,4380_7778208_1901111,4380_1707 -4380_78122,296,4380_106339,Southgate SC,65238-00021-1,1,4380_7778208_1901111,4380_1707 -4380_78148,293,4380_10634,Delvin,57531-00017-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106345,Southgate SC,65243-00009-1,1,4380_7778208_1901111,4380_1707 -4380_78122,286,4380_106346,Southgate SC,65247-00010-1,1,4380_7778208_1901111,4380_1707 -4380_78122,288,4380_106347,Southgate SC,65241-00011-1,1,4380_7778208_1901111,4380_1707 -4380_78122,287,4380_106348,Southgate SC,65239-00012-1,1,4380_7778208_1901111,4380_1707 -4380_78122,289,4380_106349,Southgate SC,65245-00014-1,1,4380_7778208_1901111,4380_1707 -4380_78148,294,4380_10635,Delvin,57532-00018-1,0,4380_7778208_1110901,4380_217 -4380_78122,292,4380_106350,Southgate SC,65248-00016-1,1,4380_7778208_1901111,4380_1707 -4380_78122,293,4380_106351,Southgate SC,65242-00017-1,1,4380_7778208_1901111,4380_1707 -4380_78122,290,4380_106352,Southgate SC,65244-00015-1,1,4380_7778208_1901111,4380_1707 -4380_78122,294,4380_106353,Southgate SC,65240-00018-1,1,4380_7778208_1901111,4380_1707 -4380_78122,295,4380_106354,Southgate SC,65246-00019-1,1,4380_7778208_1901111,4380_1707 -4380_78122,297,4380_106356,Southgate SC,64953-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78148,295,4380_10636,Delvin,57533-00019-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106363,Southgate SC,64956-00009-1,1,4380_7778208_1901110,4380_1707 -4380_78122,286,4380_106364,Southgate SC,64964-00010-1,1,4380_7778208_1901110,4380_1707 -4380_78122,288,4380_106365,Southgate SC,64954-00011-1,1,4380_7778208_1901110,4380_1707 -4380_78122,287,4380_106366,Southgate SC,64958-00012-1,1,4380_7778208_1901110,4380_1707 -4380_78122,291,4380_106367,Southgate SC,64962-00013-1,1,4380_7778208_1901110,4380_1708 -4380_78122,289,4380_106368,Southgate SC,64960-00014-1,1,4380_7778208_1901110,4380_1707 -4380_78122,292,4380_106369,Southgate SC,64965-00016-1,1,4380_7778208_1901110,4380_1707 -4380_78148,296,4380_10637,Delvin,57528-00021-1,0,4380_7778208_1110901,4380_220 -4380_78122,293,4380_106370,Southgate SC,64955-00017-1,1,4380_7778208_1901110,4380_1707 -4380_78122,290,4380_106371,Southgate SC,64957-00015-1,1,4380_7778208_1901110,4380_1707 -4380_78122,294,4380_106372,Southgate SC,64959-00018-1,1,4380_7778208_1901110,4380_1707 -4380_78122,295,4380_106373,Southgate SC,64961-00019-1,1,4380_7778208_1901110,4380_1707 -4380_78122,296,4380_106374,Southgate SC,64963-00021-1,1,4380_7778208_1901110,4380_1708 -4380_78122,285,4380_106381,Southgate SC,65621-00009-1,1,4380_7778208_1901112,4380_1707 -4380_78122,286,4380_106382,Southgate SC,65623-00010-1,1,4380_7778208_1901112,4380_1707 -4380_78122,288,4380_106383,Southgate SC,65619-00011-1,1,4380_7778208_1901112,4380_1707 -4380_78122,287,4380_106384,Southgate SC,65625-00012-1,1,4380_7778208_1901112,4380_1707 -4380_78122,291,4380_106385,Southgate SC,65617-00013-1,1,4380_7778208_1901112,4380_1708 -4380_78122,289,4380_106386,Southgate SC,65615-00014-1,1,4380_7778208_1901112,4380_1707 -4380_78122,292,4380_106387,Southgate SC,65624-00016-1,1,4380_7778208_1901112,4380_1707 -4380_78122,293,4380_106388,Southgate SC,65620-00017-1,1,4380_7778208_1901112,4380_1707 -4380_78122,290,4380_106389,Southgate SC,65622-00015-1,1,4380_7778208_1901112,4380_1707 -4380_78122,294,4380_106390,Southgate SC,65626-00018-1,1,4380_7778208_1901112,4380_1707 -4380_78122,295,4380_106391,Southgate SC,65616-00019-1,1,4380_7778208_1901112,4380_1707 -4380_78122,296,4380_106392,Southgate SC,65618-00021-1,1,4380_7778208_1901112,4380_1708 -4380_78122,297,4380_106394,Southgate SC,64979-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78113,286,4380_1064,Dublin via Airport,49869-00010-1,1,4380_7778208_1000905,4380_18 -4380_78122,285,4380_106401,Southgate SC,66209-00009-1,1,4380_7778208_1901114,4380_1707 -4380_78122,286,4380_106402,Southgate SC,66203-00010-1,1,4380_7778208_1901114,4380_1707 -4380_78122,288,4380_106403,Southgate SC,66205-00011-1,1,4380_7778208_1901114,4380_1707 -4380_78122,287,4380_106404,Southgate SC,66213-00012-1,1,4380_7778208_1901114,4380_1707 -4380_78122,291,4380_106405,Southgate SC,66207-00013-1,1,4380_7778208_1901114,4380_1708 -4380_78122,289,4380_106406,Southgate SC,66211-00014-1,1,4380_7778208_1901114,4380_1707 -4380_78122,292,4380_106407,Southgate SC,66204-00016-1,1,4380_7778208_1901114,4380_1707 -4380_78122,293,4380_106408,Southgate SC,66206-00017-1,1,4380_7778208_1901114,4380_1707 -4380_78122,290,4380_106409,Southgate SC,66210-00015-1,1,4380_7778208_1901114,4380_1707 -4380_78122,294,4380_106410,Southgate SC,66214-00018-1,1,4380_7778208_1901114,4380_1707 -4380_78122,295,4380_106411,Southgate SC,66212-00019-1,1,4380_7778208_1901114,4380_1707 -4380_78122,296,4380_106412,Southgate SC,66208-00021-1,1,4380_7778208_1901114,4380_1708 -4380_78122,285,4380_106419,Southgate SC,65893-00009-1,1,4380_7778208_1901113,4380_1707 -4380_78122,286,4380_106420,Southgate SC,65901-00010-1,1,4380_7778208_1901113,4380_1707 -4380_78122,288,4380_106421,Southgate SC,65899-00011-1,1,4380_7778208_1901113,4380_1707 -4380_78122,287,4380_106422,Southgate SC,65897-00012-1,1,4380_7778208_1901113,4380_1707 -4380_78122,291,4380_106423,Southgate SC,65895-00013-1,1,4380_7778208_1901113,4380_1708 -4380_78122,289,4380_106424,Southgate SC,65891-00014-1,1,4380_7778208_1901113,4380_1707 -4380_78122,292,4380_106425,Southgate SC,65902-00016-1,1,4380_7778208_1901113,4380_1707 -4380_78122,293,4380_106426,Southgate SC,65900-00017-1,1,4380_7778208_1901113,4380_1707 -4380_78122,290,4380_106427,Southgate SC,65894-00015-1,1,4380_7778208_1901113,4380_1707 -4380_78122,294,4380_106428,Southgate SC,65898-00018-1,1,4380_7778208_1901113,4380_1707 -4380_78122,295,4380_106429,Southgate SC,65892-00019-1,1,4380_7778208_1901113,4380_1707 -4380_78122,296,4380_106430,Southgate SC,65896-00021-1,1,4380_7778208_1901113,4380_1708 -4380_78122,297,4380_106432,Southgate SC,65005-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78122,285,4380_106439,Southgate SC,65290-00009-1,1,4380_7778208_1901111,4380_1707 -4380_78148,285,4380_10644,Delvin,8892-00009-1,0,4380_7778208_1110901,4380_217 -4380_78122,286,4380_106440,Southgate SC,65300-00010-1,1,4380_7778208_1901111,4380_1707 -4380_78122,288,4380_106441,Southgate SC,65296-00011-1,1,4380_7778208_1901111,4380_1707 -4380_78122,287,4380_106442,Southgate SC,65292-00012-1,1,4380_7778208_1901111,4380_1707 -4380_78122,291,4380_106443,Southgate SC,65298-00013-1,1,4380_7778208_1901111,4380_1708 -4380_78122,289,4380_106444,Southgate SC,65294-00014-1,1,4380_7778208_1901111,4380_1707 -4380_78122,292,4380_106445,Southgate SC,65301-00016-1,1,4380_7778208_1901111,4380_1707 -4380_78122,293,4380_106446,Southgate SC,65297-00017-1,1,4380_7778208_1901111,4380_1707 -4380_78122,290,4380_106447,Southgate SC,65291-00015-1,1,4380_7778208_1901111,4380_1707 -4380_78122,294,4380_106448,Southgate SC,65293-00018-1,1,4380_7778208_1901111,4380_1707 -4380_78122,295,4380_106449,Southgate SC,65295-00019-1,1,4380_7778208_1901111,4380_1707 -4380_78148,286,4380_10645,Delvin,8916-00010-1,0,4380_7778208_1110901,4380_217 -4380_78122,296,4380_106450,Southgate SC,65299-00021-1,1,4380_7778208_1901111,4380_1708 -4380_78122,285,4380_106457,Southgate SC,65015-00009-1,1,4380_7778208_1901110,4380_1707 -4380_78122,286,4380_106458,Southgate SC,65009-00010-1,1,4380_7778208_1901110,4380_1707 -4380_78122,288,4380_106459,Southgate SC,65011-00011-1,1,4380_7778208_1901110,4380_1707 -4380_78148,288,4380_10646,Delvin,8932-00011-1,0,4380_7778208_1110901,4380_217 -4380_78122,287,4380_106460,Southgate SC,65013-00012-1,1,4380_7778208_1901110,4380_1707 -4380_78122,291,4380_106461,Southgate SC,65017-00013-1,1,4380_7778208_1901110,4380_1708 -4380_78122,289,4380_106462,Southgate SC,65007-00014-1,1,4380_7778208_1901110,4380_1707 -4380_78122,292,4380_106463,Southgate SC,65010-00016-1,1,4380_7778208_1901110,4380_1707 -4380_78122,293,4380_106464,Southgate SC,65012-00017-1,1,4380_7778208_1901110,4380_1707 -4380_78122,290,4380_106465,Southgate SC,65016-00015-1,1,4380_7778208_1901110,4380_1707 -4380_78122,294,4380_106466,Southgate SC,65014-00018-1,1,4380_7778208_1901110,4380_1707 -4380_78122,295,4380_106467,Southgate SC,65008-00019-1,1,4380_7778208_1901110,4380_1707 -4380_78122,296,4380_106468,Southgate SC,65018-00021-1,1,4380_7778208_1901110,4380_1708 -4380_78148,287,4380_10647,Delvin,8940-00012-1,0,4380_7778208_1110901,4380_217 -4380_78122,297,4380_106470,Southgate SC,65019-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78122,285,4380_106477,Southgate SC,65673-00009-1,1,4380_7778208_1901112,4380_1707 -4380_78122,286,4380_106478,Southgate SC,65663-00010-1,1,4380_7778208_1901112,4380_1707 -4380_78122,288,4380_106479,Southgate SC,65667-00011-1,1,4380_7778208_1901112,4380_1707 -4380_78148,289,4380_10648,Delvin,8876-00014-1,0,4380_7778208_1110901,4380_217 -4380_78122,287,4380_106480,Southgate SC,65671-00012-1,1,4380_7778208_1901112,4380_1707 -4380_78122,291,4380_106481,Southgate SC,65669-00013-1,1,4380_7778208_1901112,4380_1708 -4380_78122,289,4380_106482,Southgate SC,65665-00014-1,1,4380_7778208_1901112,4380_1707 -4380_78122,292,4380_106483,Southgate SC,65664-00016-1,1,4380_7778208_1901112,4380_1707 -4380_78122,293,4380_106484,Southgate SC,65668-00017-1,1,4380_7778208_1901112,4380_1707 -4380_78122,290,4380_106485,Southgate SC,65674-00015-1,1,4380_7778208_1901112,4380_1707 -4380_78122,294,4380_106486,Southgate SC,65672-00018-1,1,4380_7778208_1901112,4380_1707 -4380_78122,295,4380_106487,Southgate SC,65666-00019-1,1,4380_7778208_1901112,4380_1707 -4380_78122,296,4380_106488,Southgate SC,65670-00021-1,1,4380_7778208_1901112,4380_1708 -4380_78148,290,4380_10649,Delvin,57542-00015-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106495,Southgate SC,66253-00009-1,1,4380_7778208_1901114,4380_1707 -4380_78122,286,4380_106496,Southgate SC,66261-00010-1,1,4380_7778208_1901114,4380_1707 -4380_78122,288,4380_106497,Southgate SC,66259-00011-1,1,4380_7778208_1901114,4380_1707 -4380_78122,287,4380_106498,Southgate SC,66257-00012-1,1,4380_7778208_1901114,4380_1707 -4380_78122,291,4380_106499,Southgate SC,66255-00013-1,1,4380_7778208_1901114,4380_1708 -4380_78113,297,4380_1065,Dublin via Airport,49769-00008-1,1,4380_7778208_1000904,4380_18 -4380_78148,291,4380_10650,Delvin,8964-00013-1,0,4380_7778208_1110901,4380_220 -4380_78122,289,4380_106500,Southgate SC,66251-00014-1,1,4380_7778208_1901114,4380_1707 -4380_78122,292,4380_106501,Southgate SC,66262-00016-1,1,4380_7778208_1901114,4380_1707 -4380_78122,293,4380_106502,Southgate SC,66260-00017-1,1,4380_7778208_1901114,4380_1707 -4380_78122,290,4380_106503,Southgate SC,66254-00015-1,1,4380_7778208_1901114,4380_1707 -4380_78122,294,4380_106504,Southgate SC,66258-00018-1,1,4380_7778208_1901114,4380_1707 -4380_78122,295,4380_106505,Southgate SC,66252-00019-1,1,4380_7778208_1901114,4380_1707 -4380_78122,296,4380_106506,Southgate SC,66256-00021-1,1,4380_7778208_1901114,4380_1708 -4380_78122,297,4380_106508,Southgate SC,65045-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78148,292,4380_10651,Delvin,57543-00016-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106515,Southgate SC,65947-00009-1,1,4380_7778208_1901113,4380_1707 -4380_78122,286,4380_106516,Southgate SC,65941-00010-1,1,4380_7778208_1901113,4380_1707 -4380_78122,288,4380_106517,Southgate SC,65939-00011-1,1,4380_7778208_1901113,4380_1707 -4380_78122,287,4380_106518,Southgate SC,65945-00012-1,1,4380_7778208_1901113,4380_1707 -4380_78122,291,4380_106519,Southgate SC,65949-00013-1,1,4380_7778208_1901113,4380_1708 -4380_78148,293,4380_10652,Delvin,57540-00017-1,0,4380_7778208_1110901,4380_217 -4380_78122,289,4380_106520,Southgate SC,65943-00014-1,1,4380_7778208_1901113,4380_1707 -4380_78122,292,4380_106521,Southgate SC,65942-00016-1,1,4380_7778208_1901113,4380_1707 -4380_78122,293,4380_106522,Southgate SC,65940-00017-1,1,4380_7778208_1901113,4380_1707 -4380_78122,290,4380_106523,Southgate SC,65948-00015-1,1,4380_7778208_1901113,4380_1707 -4380_78122,294,4380_106524,Southgate SC,65946-00018-1,1,4380_7778208_1901113,4380_1707 -4380_78122,295,4380_106525,Southgate SC,65944-00019-1,1,4380_7778208_1901113,4380_1707 -4380_78122,296,4380_106526,Southgate SC,65950-00021-1,1,4380_7778208_1901113,4380_1708 -4380_78148,294,4380_10653,Delvin,57541-00018-1,0,4380_7778208_1110901,4380_217 -4380_78122,285,4380_106533,Southgate SC,65351-00009-1,1,4380_7778208_1901111,4380_1707 -4380_78122,286,4380_106534,Southgate SC,65343-00010-1,1,4380_7778208_1901111,4380_1707 -4380_78122,288,4380_106535,Southgate SC,65353-00011-1,1,4380_7778208_1901111,4380_1707 -4380_78122,287,4380_106536,Southgate SC,65347-00012-1,1,4380_7778208_1901111,4380_1707 -4380_78122,291,4380_106537,Southgate SC,65349-00013-1,1,4380_7778208_1901111,4380_1708 -4380_78122,289,4380_106538,Southgate SC,65345-00014-1,1,4380_7778208_1901111,4380_1707 -4380_78122,292,4380_106539,Southgate SC,65344-00016-1,1,4380_7778208_1901111,4380_1707 -4380_78148,295,4380_10654,Delvin,57545-00019-1,0,4380_7778208_1110901,4380_217 -4380_78122,293,4380_106540,Southgate SC,65354-00017-1,1,4380_7778208_1901111,4380_1707 -4380_78122,290,4380_106541,Southgate SC,65352-00015-1,1,4380_7778208_1901111,4380_1707 -4380_78122,294,4380_106542,Southgate SC,65348-00018-1,1,4380_7778208_1901111,4380_1707 -4380_78122,295,4380_106543,Southgate SC,65346-00019-1,1,4380_7778208_1901111,4380_1707 -4380_78122,296,4380_106544,Southgate SC,65350-00021-1,1,4380_7778208_1901111,4380_1708 -4380_78122,297,4380_106546,Southgate SC,65059-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78148,296,4380_10655,Delvin,57544-00021-1,0,4380_7778208_1110901,4380_220 -4380_78122,285,4380_106553,Southgate SC,65062-00009-1,1,4380_7778208_1901110,4380_1707 -4380_78122,286,4380_106554,Southgate SC,65068-00010-1,1,4380_7778208_1901110,4380_1707 -4380_78122,288,4380_106555,Southgate SC,65066-00011-1,1,4380_7778208_1901110,4380_1707 -4380_78122,287,4380_106556,Southgate SC,65070-00012-1,1,4380_7778208_1901110,4380_1707 -4380_78122,291,4380_106557,Southgate SC,65060-00013-1,1,4380_7778208_1901110,4380_1708 -4380_78122,289,4380_106558,Southgate SC,65064-00014-1,1,4380_7778208_1901110,4380_1707 -4380_78122,292,4380_106559,Southgate SC,65069-00016-1,1,4380_7778208_1901110,4380_1707 -4380_78122,293,4380_106560,Southgate SC,65067-00017-1,1,4380_7778208_1901110,4380_1707 -4380_78122,290,4380_106561,Southgate SC,65063-00015-1,1,4380_7778208_1901110,4380_1707 -4380_78122,294,4380_106562,Southgate SC,65071-00018-1,1,4380_7778208_1901110,4380_1707 -4380_78122,295,4380_106563,Southgate SC,65065-00019-1,1,4380_7778208_1901110,4380_1707 -4380_78122,296,4380_106564,Southgate SC,65061-00021-1,1,4380_7778208_1901110,4380_1708 -4380_78122,285,4380_106571,Southgate SC,65715-00009-1,1,4380_7778208_1901112,4380_1707 -4380_78122,286,4380_106572,Southgate SC,65717-00010-1,1,4380_7778208_1901112,4380_1707 -4380_78122,288,4380_106573,Southgate SC,65721-00011-1,1,4380_7778208_1901112,4380_1707 -4380_78122,287,4380_106574,Southgate SC,65719-00012-1,1,4380_7778208_1901112,4380_1707 -4380_78122,291,4380_106575,Southgate SC,65713-00013-1,1,4380_7778208_1901112,4380_1708 -4380_78122,289,4380_106576,Southgate SC,65711-00014-1,1,4380_7778208_1901112,4380_1707 -4380_78122,292,4380_106577,Southgate SC,65718-00016-1,1,4380_7778208_1901112,4380_1707 -4380_78122,293,4380_106578,Southgate SC,65722-00017-1,1,4380_7778208_1901112,4380_1707 -4380_78122,290,4380_106579,Southgate SC,65716-00015-1,1,4380_7778208_1901112,4380_1707 -4380_78122,294,4380_106580,Southgate SC,65720-00018-1,1,4380_7778208_1901112,4380_1707 -4380_78122,295,4380_106581,Southgate SC,65712-00019-1,1,4380_7778208_1901112,4380_1707 -4380_78122,296,4380_106582,Southgate SC,65714-00021-1,1,4380_7778208_1901112,4380_1708 -4380_78122,297,4380_106584,Southgate SC,65085-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78122,285,4380_106591,Southgate SC,66309-00009-1,1,4380_7778208_1901114,4380_1707 -4380_78122,286,4380_106592,Southgate SC,66299-00010-1,1,4380_7778208_1901114,4380_1707 -4380_78122,288,4380_106593,Southgate SC,66307-00011-1,1,4380_7778208_1901114,4380_1707 -4380_78122,287,4380_106594,Southgate SC,66301-00012-1,1,4380_7778208_1901114,4380_1707 -4380_78122,291,4380_106595,Southgate SC,66303-00013-1,1,4380_7778208_1901114,4380_1708 -4380_78122,289,4380_106596,Southgate SC,66305-00014-1,1,4380_7778208_1901114,4380_1707 -4380_78122,292,4380_106597,Southgate SC,66300-00016-1,1,4380_7778208_1901114,4380_1707 -4380_78122,293,4380_106598,Southgate SC,66308-00017-1,1,4380_7778208_1901114,4380_1707 -4380_78122,290,4380_106599,Southgate SC,66310-00015-1,1,4380_7778208_1901114,4380_1707 -4380_78113,287,4380_1066,Dublin via Airport,49871-00012-1,1,4380_7778208_1000905,4380_18 -4380_78122,294,4380_106600,Southgate SC,66302-00018-1,1,4380_7778208_1901114,4380_1707 -4380_78122,295,4380_106601,Southgate SC,66306-00019-1,1,4380_7778208_1901114,4380_1707 -4380_78122,296,4380_106602,Southgate SC,66304-00021-1,1,4380_7778208_1901114,4380_1708 -4380_78122,285,4380_106609,Southgate SC,65989-00009-1,1,4380_7778208_1901113,4380_1707 -4380_78122,286,4380_106610,Southgate SC,65997-00010-1,1,4380_7778208_1901113,4380_1707 -4380_78122,288,4380_106611,Southgate SC,65991-00011-1,1,4380_7778208_1901113,4380_1707 -4380_78122,287,4380_106612,Southgate SC,65995-00012-1,1,4380_7778208_1901113,4380_1707 -4380_78122,291,4380_106613,Southgate SC,65987-00013-1,1,4380_7778208_1901113,4380_1708 -4380_78122,289,4380_106614,Southgate SC,65993-00014-1,1,4380_7778208_1901113,4380_1707 -4380_78122,292,4380_106615,Southgate SC,65998-00016-1,1,4380_7778208_1901113,4380_1707 -4380_78122,293,4380_106616,Southgate SC,65992-00017-1,1,4380_7778208_1901113,4380_1707 -4380_78122,290,4380_106617,Southgate SC,65990-00015-1,1,4380_7778208_1901113,4380_1707 -4380_78122,294,4380_106618,Southgate SC,65996-00018-1,1,4380_7778208_1901113,4380_1707 -4380_78122,295,4380_106619,Southgate SC,65994-00019-1,1,4380_7778208_1901113,4380_1707 -4380_78122,296,4380_106620,Southgate SC,65988-00021-1,1,4380_7778208_1901113,4380_1708 -4380_78122,297,4380_106622,Southgate SC,65111-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78122,285,4380_106629,Southgate SC,65396-00009-1,1,4380_7778208_1901111,4380_1707 -4380_78148,285,4380_10663,Athboy,8894-00009-1,0,4380_7778208_1110901,4380_218 -4380_78122,286,4380_106630,Southgate SC,65400-00010-1,1,4380_7778208_1901111,4380_1707 -4380_78122,288,4380_106631,Southgate SC,65398-00011-1,1,4380_7778208_1901111,4380_1707 -4380_78122,287,4380_106632,Southgate SC,65404-00012-1,1,4380_7778208_1901111,4380_1707 -4380_78122,291,4380_106633,Southgate SC,65406-00013-1,1,4380_7778208_1901111,4380_1708 -4380_78122,289,4380_106634,Southgate SC,65402-00014-1,1,4380_7778208_1901111,4380_1707 -4380_78122,292,4380_106635,Southgate SC,65401-00016-1,1,4380_7778208_1901111,4380_1707 -4380_78122,293,4380_106636,Southgate SC,65399-00017-1,1,4380_7778208_1901111,4380_1707 -4380_78122,290,4380_106637,Southgate SC,65397-00015-1,1,4380_7778208_1901111,4380_1707 -4380_78122,294,4380_106638,Southgate SC,65405-00018-1,1,4380_7778208_1901111,4380_1707 -4380_78122,295,4380_106639,Southgate SC,65403-00019-1,1,4380_7778208_1901111,4380_1707 -4380_78148,286,4380_10664,Athboy,8918-00010-1,0,4380_7778208_1110901,4380_218 -4380_78122,296,4380_106640,Southgate SC,65407-00021-1,1,4380_7778208_1901111,4380_1708 -4380_78122,285,4380_106647,Southgate SC,65113-00009-1,1,4380_7778208_1901110,4380_1707 -4380_78122,286,4380_106648,Southgate SC,65119-00010-1,1,4380_7778208_1901110,4380_1707 -4380_78122,288,4380_106649,Southgate SC,65115-00011-1,1,4380_7778208_1901110,4380_1707 -4380_78148,297,4380_10665,Athboy,7366-00008-1,0,4380_7778208_1110101,4380_219 -4380_78122,287,4380_106650,Southgate SC,65121-00012-1,1,4380_7778208_1901110,4380_1707 -4380_78122,291,4380_106651,Southgate SC,65117-00013-1,1,4380_7778208_1901110,4380_1708 -4380_78122,289,4380_106652,Southgate SC,65123-00014-1,1,4380_7778208_1901110,4380_1707 -4380_78122,292,4380_106653,Southgate SC,65120-00016-1,1,4380_7778208_1901110,4380_1707 -4380_78122,293,4380_106654,Southgate SC,65116-00017-1,1,4380_7778208_1901110,4380_1707 -4380_78122,290,4380_106655,Southgate SC,65114-00015-1,1,4380_7778208_1901110,4380_1707 -4380_78122,294,4380_106656,Southgate SC,65122-00018-1,1,4380_7778208_1901110,4380_1707 -4380_78122,295,4380_106657,Southgate SC,65124-00019-1,1,4380_7778208_1901110,4380_1707 -4380_78122,296,4380_106658,Southgate SC,65118-00021-1,1,4380_7778208_1901110,4380_1708 -4380_78148,288,4380_10666,Athboy,8934-00011-1,0,4380_7778208_1110901,4380_218 -4380_78122,297,4380_106660,Southgate SC,65125-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78122,285,4380_106667,Southgate SC,65763-00009-1,1,4380_7778208_1901112,4380_1707 -4380_78122,286,4380_106668,Southgate SC,65769-00010-1,1,4380_7778208_1901112,4380_1707 -4380_78122,288,4380_106669,Southgate SC,65767-00011-1,1,4380_7778208_1901112,4380_1707 -4380_78148,287,4380_10667,Athboy,8942-00012-1,0,4380_7778208_1110901,4380_218 -4380_78122,287,4380_106670,Southgate SC,65759-00012-1,1,4380_7778208_1901112,4380_1707 -4380_78122,291,4380_106671,Southgate SC,65765-00013-1,1,4380_7778208_1901112,4380_1708 -4380_78122,289,4380_106672,Southgate SC,65761-00014-1,1,4380_7778208_1901112,4380_1707 -4380_78122,292,4380_106673,Southgate SC,65770-00016-1,1,4380_7778208_1901112,4380_1707 -4380_78122,293,4380_106674,Southgate SC,65768-00017-1,1,4380_7778208_1901112,4380_1707 -4380_78122,290,4380_106675,Southgate SC,65764-00015-1,1,4380_7778208_1901112,4380_1707 -4380_78122,294,4380_106676,Southgate SC,65760-00018-1,1,4380_7778208_1901112,4380_1707 -4380_78122,295,4380_106677,Southgate SC,65762-00019-1,1,4380_7778208_1901112,4380_1707 -4380_78122,296,4380_106678,Southgate SC,65766-00021-1,1,4380_7778208_1901112,4380_1708 -4380_78148,289,4380_10668,Athboy,8878-00014-1,0,4380_7778208_1110901,4380_218 -4380_78122,285,4380_106685,Southgate SC,66347-00009-1,1,4380_7778208_1901114,4380_1707 -4380_78122,286,4380_106686,Southgate SC,66353-00010-1,1,4380_7778208_1901114,4380_1707 -4380_78122,288,4380_106687,Southgate SC,66349-00011-1,1,4380_7778208_1901114,4380_1707 -4380_78122,287,4380_106688,Southgate SC,66357-00012-1,1,4380_7778208_1901114,4380_1707 -4380_78122,291,4380_106689,Southgate SC,66355-00013-1,1,4380_7778208_1901114,4380_1708 -4380_78148,290,4380_10669,Athboy,57553-00015-1,0,4380_7778208_1110901,4380_218 -4380_78122,289,4380_106690,Southgate SC,66351-00014-1,1,4380_7778208_1901114,4380_1707 -4380_78122,292,4380_106691,Southgate SC,66354-00016-1,1,4380_7778208_1901114,4380_1707 -4380_78122,293,4380_106692,Southgate SC,66350-00017-1,1,4380_7778208_1901114,4380_1707 -4380_78122,290,4380_106693,Southgate SC,66348-00015-1,1,4380_7778208_1901114,4380_1707 -4380_78122,294,4380_106694,Southgate SC,66358-00018-1,1,4380_7778208_1901114,4380_1707 -4380_78122,295,4380_106695,Southgate SC,66352-00019-1,1,4380_7778208_1901114,4380_1707 -4380_78122,296,4380_106696,Southgate SC,66356-00021-1,1,4380_7778208_1901114,4380_1708 -4380_78122,297,4380_106698,Southgate SC,65151-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78113,288,4380_1067,Dublin via Airport,49867-00011-1,1,4380_7778208_1000905,4380_18 -4380_78148,291,4380_10670,Athboy,8966-00013-1,0,4380_7778208_1110901,4380_221 -4380_78122,285,4380_106705,Southgate SC,66035-00009-1,1,4380_7778208_1901113,4380_1707 -4380_78122,286,4380_106706,Southgate SC,66045-00010-1,1,4380_7778208_1901113,4380_1707 -4380_78122,288,4380_106707,Southgate SC,66043-00011-1,1,4380_7778208_1901113,4380_1707 -4380_78122,287,4380_106708,Southgate SC,66041-00012-1,1,4380_7778208_1901113,4380_1707 -4380_78122,291,4380_106709,Southgate SC,66037-00013-1,1,4380_7778208_1901113,4380_1708 -4380_78148,292,4380_10671,Athboy,57554-00016-1,0,4380_7778208_1110901,4380_218 -4380_78122,289,4380_106710,Southgate SC,66039-00014-1,1,4380_7778208_1901113,4380_1707 -4380_78122,292,4380_106711,Southgate SC,66046-00016-1,1,4380_7778208_1901113,4380_1707 -4380_78122,293,4380_106712,Southgate SC,66044-00017-1,1,4380_7778208_1901113,4380_1707 -4380_78122,290,4380_106713,Southgate SC,66036-00015-1,1,4380_7778208_1901113,4380_1707 -4380_78122,294,4380_106714,Southgate SC,66042-00018-1,1,4380_7778208_1901113,4380_1707 -4380_78122,295,4380_106715,Southgate SC,66040-00019-1,1,4380_7778208_1901113,4380_1707 -4380_78122,296,4380_106716,Southgate SC,66038-00021-1,1,4380_7778208_1901113,4380_1708 -4380_78148,293,4380_10672,Athboy,57557-00017-1,0,4380_7778208_1110901,4380_218 -4380_78122,285,4380_106723,Southgate SC,65455-00009-1,1,4380_7778208_1901111,4380_1707 -4380_78122,286,4380_106724,Southgate SC,65459-00010-1,1,4380_7778208_1901111,4380_1707 -4380_78122,288,4380_106725,Southgate SC,65451-00011-1,1,4380_7778208_1901111,4380_1707 -4380_78122,287,4380_106726,Southgate SC,65457-00012-1,1,4380_7778208_1901111,4380_1707 -4380_78122,291,4380_106727,Southgate SC,65449-00013-1,1,4380_7778208_1901111,4380_1708 -4380_78122,289,4380_106728,Southgate SC,65453-00014-1,1,4380_7778208_1901111,4380_1707 -4380_78122,292,4380_106729,Southgate SC,65460-00016-1,1,4380_7778208_1901111,4380_1707 -4380_78148,294,4380_10673,Athboy,57555-00018-1,0,4380_7778208_1110901,4380_218 -4380_78122,293,4380_106730,Southgate SC,65452-00017-1,1,4380_7778208_1901111,4380_1707 -4380_78122,290,4380_106731,Southgate SC,65456-00015-1,1,4380_7778208_1901111,4380_1707 -4380_78122,294,4380_106732,Southgate SC,65458-00018-1,1,4380_7778208_1901111,4380_1707 -4380_78122,295,4380_106733,Southgate SC,65454-00019-1,1,4380_7778208_1901111,4380_1707 -4380_78122,296,4380_106734,Southgate SC,65450-00021-1,1,4380_7778208_1901111,4380_1708 -4380_78122,297,4380_106736,Southgate SC,65165-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78122,291,4380_106738,Southgate SC,65166-00013-1,1,4380_7778208_1901110,4380_1707 -4380_78122,296,4380_106739,Southgate SC,65167-00021-1,1,4380_7778208_1901110,4380_1707 -4380_78148,295,4380_10674,Athboy,57552-00019-1,0,4380_7778208_1110901,4380_218 -4380_78122,285,4380_106745,Southgate SC,65168-00009-1,1,4380_7778208_1901110,4380_1707 -4380_78122,286,4380_106746,Southgate SC,65172-00010-1,1,4380_7778208_1901110,4380_1707 -4380_78122,288,4380_106747,Southgate SC,65174-00011-1,1,4380_7778208_1901110,4380_1707 -4380_78122,287,4380_106748,Southgate SC,65170-00012-1,1,4380_7778208_1901110,4380_1707 -4380_78122,289,4380_106749,Southgate SC,65176-00014-1,1,4380_7778208_1901110,4380_1707 -4380_78148,296,4380_10675,Athboy,57556-00021-1,0,4380_7778208_1110901,4380_221 -4380_78122,292,4380_106750,Southgate SC,65173-00016-1,1,4380_7778208_1901110,4380_1707 -4380_78122,293,4380_106751,Southgate SC,65175-00017-1,1,4380_7778208_1901110,4380_1707 -4380_78122,290,4380_106752,Southgate SC,65169-00015-1,1,4380_7778208_1901110,4380_1707 -4380_78122,294,4380_106753,Southgate SC,65171-00018-1,1,4380_7778208_1901110,4380_1707 -4380_78122,295,4380_106754,Southgate SC,65177-00019-1,1,4380_7778208_1901110,4380_1707 -4380_78122,297,4380_106756,Southgate SC,65179-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78122,285,4380_106763,Southgate SC,66399-00009-1,1,4380_7778208_1901114,4380_1707 -4380_78122,286,4380_106764,Southgate SC,66397-00010-1,1,4380_7778208_1901114,4380_1707 -4380_78122,288,4380_106765,Southgate SC,66403-00011-1,1,4380_7778208_1901114,4380_1707 -4380_78122,287,4380_106766,Southgate SC,66405-00012-1,1,4380_7778208_1901114,4380_1707 -4380_78122,291,4380_106767,Southgate SC,66395-00013-1,1,4380_7778208_1901114,4380_1708 -4380_78122,289,4380_106768,Southgate SC,66401-00014-1,1,4380_7778208_1901114,4380_1707 -4380_78122,292,4380_106769,Southgate SC,66398-00016-1,1,4380_7778208_1901114,4380_1707 -4380_78122,293,4380_106770,Southgate SC,66404-00017-1,1,4380_7778208_1901114,4380_1707 -4380_78122,290,4380_106771,Southgate SC,66400-00015-1,1,4380_7778208_1901114,4380_1707 -4380_78122,294,4380_106772,Southgate SC,66406-00018-1,1,4380_7778208_1901114,4380_1707 -4380_78122,295,4380_106773,Southgate SC,66402-00019-1,1,4380_7778208_1901114,4380_1707 -4380_78122,296,4380_106774,Southgate SC,66396-00021-1,1,4380_7778208_1901114,4380_1708 -4380_78122,297,4380_106776,Southgate SC,65181-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78122,285,4380_106783,Southgate SC,65506-00009-1,1,4380_7778208_1901111,4380_1707 -4380_78122,286,4380_106784,Southgate SC,65508-00010-1,1,4380_7778208_1901111,4380_1707 -4380_78122,288,4380_106785,Southgate SC,65512-00011-1,1,4380_7778208_1901111,4380_1707 -4380_78122,287,4380_106786,Southgate SC,65510-00012-1,1,4380_7778208_1901111,4380_1707 -4380_78122,291,4380_106787,Southgate SC,65504-00013-1,1,4380_7778208_1901111,4380_1708 -4380_78122,289,4380_106788,Southgate SC,65502-00014-1,1,4380_7778208_1901111,4380_1707 -4380_78122,292,4380_106789,Southgate SC,65509-00016-1,1,4380_7778208_1901111,4380_1707 -4380_78122,293,4380_106790,Southgate SC,65513-00017-1,1,4380_7778208_1901111,4380_1707 -4380_78122,290,4380_106791,Southgate SC,65507-00015-1,1,4380_7778208_1901111,4380_1707 -4380_78122,294,4380_106792,Southgate SC,65511-00018-1,1,4380_7778208_1901111,4380_1707 -4380_78122,295,4380_106793,Southgate SC,65503-00019-1,1,4380_7778208_1901111,4380_1707 -4380_78122,296,4380_106794,Southgate SC,65505-00021-1,1,4380_7778208_1901111,4380_1708 -4380_78122,297,4380_106796,Southgate SC,65183-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78113,289,4380_1068,Dublin via Airport,49865-00014-1,1,4380_7778208_1000905,4380_18 -4380_78122,285,4380_106803,Southgate SC,66117-00009-1,1,4380_7778208_1901113,4380_1707 -4380_78122,286,4380_106804,Southgate SC,66113-00010-1,1,4380_7778208_1901113,4380_1707 -4380_78122,288,4380_106805,Southgate SC,66111-00011-1,1,4380_7778208_1901113,4380_1707 -4380_78122,287,4380_106806,Southgate SC,66109-00012-1,1,4380_7778208_1901113,4380_1707 -4380_78122,291,4380_106807,Southgate SC,66107-00013-1,1,4380_7778208_1901113,4380_1708 -4380_78122,289,4380_106808,Southgate SC,66115-00014-1,1,4380_7778208_1901113,4380_1707 -4380_78122,292,4380_106809,Southgate SC,66114-00016-1,1,4380_7778208_1901113,4380_1707 -4380_78122,293,4380_106810,Southgate SC,66112-00017-1,1,4380_7778208_1901113,4380_1707 -4380_78122,290,4380_106811,Southgate SC,66118-00015-1,1,4380_7778208_1901113,4380_1707 -4380_78122,294,4380_106812,Southgate SC,66110-00018-1,1,4380_7778208_1901113,4380_1707 -4380_78122,295,4380_106813,Southgate SC,66116-00019-1,1,4380_7778208_1901113,4380_1707 -4380_78122,296,4380_106814,Southgate SC,66108-00021-1,1,4380_7778208_1901113,4380_1708 -4380_78122,297,4380_106816,Southgate SC,65185-00008-1,1,4380_7778208_1901110,4380_1707 -4380_78148,285,4380_10682,Cavan,8889-00009-1,1,4380_7778208_1110901,4380_226 -4380_78122,285,4380_106823,Southgate SC,66451-00009-1,1,4380_7778208_1901114,4380_1707 -4380_78122,286,4380_106824,Southgate SC,66453-00010-1,1,4380_7778208_1901114,4380_1707 -4380_78122,288,4380_106825,Southgate SC,66447-00011-1,1,4380_7778208_1901114,4380_1707 -4380_78122,287,4380_106826,Southgate SC,66449-00012-1,1,4380_7778208_1901114,4380_1707 -4380_78122,291,4380_106827,Southgate SC,66443-00013-1,1,4380_7778208_1901114,4380_1708 -4380_78122,289,4380_106828,Southgate SC,66445-00014-1,1,4380_7778208_1901114,4380_1707 -4380_78122,292,4380_106829,Southgate SC,66454-00016-1,1,4380_7778208_1901114,4380_1707 -4380_78148,286,4380_10683,Cavan,8913-00010-1,1,4380_7778208_1110901,4380_226 -4380_78122,293,4380_106830,Southgate SC,66448-00017-1,1,4380_7778208_1901114,4380_1707 -4380_78122,290,4380_106831,Southgate SC,66452-00015-1,1,4380_7778208_1901114,4380_1707 -4380_78122,294,4380_106832,Southgate SC,66450-00018-1,1,4380_7778208_1901114,4380_1707 -4380_78122,295,4380_106833,Southgate SC,66446-00019-1,1,4380_7778208_1901114,4380_1707 -4380_78122,296,4380_106834,Southgate SC,66444-00021-1,1,4380_7778208_1901114,4380_1708 -4380_78148,288,4380_10684,Cavan,8929-00011-1,1,4380_7778208_1110901,4380_226 -4380_78123,285,4380_106841,Aston Village,65807-00009-1,0,4380_7778208_1901113,4380_1709 -4380_78123,286,4380_106842,Aston Village,65815-00010-1,0,4380_7778208_1901113,4380_1709 -4380_78123,288,4380_106843,Aston Village,65809-00011-1,0,4380_7778208_1901113,4380_1709 -4380_78123,287,4380_106844,Aston Village,65813-00012-1,0,4380_7778208_1901113,4380_1709 -4380_78123,291,4380_106845,Aston Village,65817-00013-1,0,4380_7778208_1901113,4380_1710 -4380_78123,289,4380_106846,Aston Village,65811-00014-1,0,4380_7778208_1901113,4380_1709 -4380_78123,292,4380_106847,Aston Village,65816-00016-1,0,4380_7778208_1901113,4380_1709 -4380_78123,293,4380_106848,Aston Village,65810-00017-1,0,4380_7778208_1901113,4380_1709 -4380_78123,290,4380_106849,Aston Village,65808-00015-1,0,4380_7778208_1901113,4380_1709 -4380_78148,287,4380_10685,Cavan,8937-00012-1,1,4380_7778208_1110901,4380_226 -4380_78123,294,4380_106850,Aston Village,65814-00018-1,0,4380_7778208_1901113,4380_1709 -4380_78123,295,4380_106851,Aston Village,65812-00019-1,0,4380_7778208_1901113,4380_1709 -4380_78123,296,4380_106852,Aston Village,65818-00021-1,0,4380_7778208_1901113,4380_1710 -4380_78123,285,4380_106859,Aston Village,65209-00009-1,0,4380_7778208_1901111,4380_1709 -4380_78148,289,4380_10686,Cavan,8873-00014-1,1,4380_7778208_1110901,4380_226 -4380_78123,286,4380_106860,Aston Village,65199-00010-1,0,4380_7778208_1901111,4380_1709 -4380_78123,288,4380_106861,Aston Village,65207-00011-1,0,4380_7778208_1901111,4380_1709 -4380_78123,287,4380_106862,Aston Village,65203-00012-1,0,4380_7778208_1901111,4380_1709 -4380_78123,291,4380_106863,Aston Village,65201-00013-1,0,4380_7778208_1901111,4380_1710 -4380_78123,289,4380_106864,Aston Village,65205-00014-1,0,4380_7778208_1901111,4380_1709 -4380_78123,292,4380_106865,Aston Village,65200-00016-1,0,4380_7778208_1901111,4380_1709 -4380_78123,293,4380_106866,Aston Village,65208-00017-1,0,4380_7778208_1901111,4380_1709 -4380_78123,290,4380_106867,Aston Village,65210-00015-1,0,4380_7778208_1901111,4380_1709 -4380_78123,294,4380_106868,Aston Village,65204-00018-1,0,4380_7778208_1901111,4380_1709 -4380_78123,295,4380_106869,Aston Village,65206-00019-1,0,4380_7778208_1901111,4380_1709 -4380_78148,290,4380_10687,Cavan,57524-00015-1,1,4380_7778208_1110901,4380_226 -4380_78123,296,4380_106870,Aston Village,65202-00021-1,0,4380_7778208_1901111,4380_1710 -4380_78123,285,4380_106877,Aston Village,64914-00009-1,0,4380_7778208_1901110,4380_1709 -4380_78123,286,4380_106878,Aston Village,64922-00010-1,0,4380_7778208_1901110,4380_1709 -4380_78123,288,4380_106879,Aston Village,64918-00011-1,0,4380_7778208_1901110,4380_1709 -4380_78148,291,4380_10688,Cavan,8961-00013-1,1,4380_7778208_1110901,4380_228 -4380_78123,287,4380_106880,Aston Village,64916-00012-1,0,4380_7778208_1901110,4380_1709 -4380_78123,291,4380_106881,Aston Village,64920-00013-1,0,4380_7778208_1901110,4380_1710 -4380_78123,289,4380_106882,Aston Village,64924-00014-1,0,4380_7778208_1901110,4380_1709 -4380_78123,292,4380_106883,Aston Village,64923-00016-1,0,4380_7778208_1901110,4380_1709 -4380_78123,293,4380_106884,Aston Village,64919-00017-1,0,4380_7778208_1901110,4380_1709 -4380_78123,290,4380_106885,Aston Village,64915-00015-1,0,4380_7778208_1901110,4380_1709 -4380_78123,294,4380_106886,Aston Village,64917-00018-1,0,4380_7778208_1901110,4380_1709 -4380_78123,295,4380_106887,Aston Village,64925-00019-1,0,4380_7778208_1901110,4380_1709 -4380_78123,296,4380_106888,Aston Village,64921-00021-1,0,4380_7778208_1901110,4380_1710 -4380_78148,292,4380_10689,Cavan,57522-00016-1,1,4380_7778208_1110901,4380_226 -4380_78123,285,4380_106895,Aston Village,65583-00009-1,0,4380_7778208_1901112,4380_1709 -4380_78123,286,4380_106896,Aston Village,65589-00010-1,0,4380_7778208_1901112,4380_1709 -4380_78123,288,4380_106897,Aston Village,65581-00011-1,0,4380_7778208_1901112,4380_1709 -4380_78123,287,4380_106898,Aston Village,65587-00012-1,0,4380_7778208_1901112,4380_1709 -4380_78123,291,4380_106899,Aston Village,65579-00013-1,0,4380_7778208_1901112,4380_1710 -4380_78113,290,4380_1069,Dublin via Airport,49864-00015-1,1,4380_7778208_1000905,4380_18 -4380_78148,293,4380_10690,Cavan,57527-00017-1,1,4380_7778208_1110901,4380_226 -4380_78123,289,4380_106900,Aston Village,65585-00014-1,0,4380_7778208_1901112,4380_1709 -4380_78123,292,4380_106901,Aston Village,65590-00016-1,0,4380_7778208_1901112,4380_1709 -4380_78123,293,4380_106902,Aston Village,65582-00017-1,0,4380_7778208_1901112,4380_1709 -4380_78123,290,4380_106903,Aston Village,65584-00015-1,0,4380_7778208_1901112,4380_1709 -4380_78123,294,4380_106904,Aston Village,65588-00018-1,0,4380_7778208_1901112,4380_1709 -4380_78123,295,4380_106905,Aston Village,65586-00019-1,0,4380_7778208_1901112,4380_1709 -4380_78123,296,4380_106906,Aston Village,65580-00021-1,0,4380_7778208_1901112,4380_1710 -4380_78123,297,4380_106908,Aston Village,65235-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78148,294,4380_10691,Cavan,57525-00018-1,1,4380_7778208_1110901,4380_226 -4380_78123,285,4380_106915,Aston Village,66177-00009-1,0,4380_7778208_1901114,4380_1709 -4380_78123,286,4380_106916,Aston Village,66175-00010-1,0,4380_7778208_1901114,4380_1709 -4380_78123,288,4380_106917,Aston Village,66169-00011-1,0,4380_7778208_1901114,4380_1709 -4380_78123,287,4380_106918,Aston Village,66171-00012-1,0,4380_7778208_1901114,4380_1709 -4380_78123,291,4380_106919,Aston Village,66173-00013-1,0,4380_7778208_1901114,4380_1710 -4380_78148,295,4380_10692,Cavan,57526-00019-1,1,4380_7778208_1110901,4380_226 -4380_78123,289,4380_106920,Aston Village,66167-00014-1,0,4380_7778208_1901114,4380_1709 -4380_78123,292,4380_106921,Aston Village,66176-00016-1,0,4380_7778208_1901114,4380_1709 -4380_78123,293,4380_106922,Aston Village,66170-00017-1,0,4380_7778208_1901114,4380_1709 -4380_78123,290,4380_106923,Aston Village,66178-00015-1,0,4380_7778208_1901114,4380_1709 -4380_78123,294,4380_106924,Aston Village,66172-00018-1,0,4380_7778208_1901114,4380_1709 -4380_78123,295,4380_106925,Aston Village,66168-00019-1,0,4380_7778208_1901114,4380_1709 -4380_78123,296,4380_106926,Aston Village,66174-00021-1,0,4380_7778208_1901114,4380_1710 -4380_78148,296,4380_10693,Cavan,57523-00021-1,1,4380_7778208_1110901,4380_228 -4380_78123,285,4380_106933,Aston Village,65861-00009-1,0,4380_7778208_1901113,4380_1709 -4380_78123,286,4380_106934,Aston Village,65865-00010-1,0,4380_7778208_1901113,4380_1709 -4380_78123,288,4380_106935,Aston Village,65859-00011-1,0,4380_7778208_1901113,4380_1709 -4380_78123,287,4380_106936,Aston Village,65855-00012-1,0,4380_7778208_1901113,4380_1709 -4380_78123,291,4380_106937,Aston Village,65857-00013-1,0,4380_7778208_1901113,4380_1710 -4380_78123,289,4380_106938,Aston Village,65863-00014-1,0,4380_7778208_1901113,4380_1709 -4380_78123,292,4380_106939,Aston Village,65866-00016-1,0,4380_7778208_1901113,4380_1709 -4380_78123,293,4380_106940,Aston Village,65860-00017-1,0,4380_7778208_1901113,4380_1709 -4380_78123,290,4380_106941,Aston Village,65862-00015-1,0,4380_7778208_1901113,4380_1709 -4380_78123,294,4380_106942,Aston Village,65856-00018-1,0,4380_7778208_1901113,4380_1709 -4380_78123,295,4380_106943,Aston Village,65864-00019-1,0,4380_7778208_1901113,4380_1709 -4380_78123,296,4380_106944,Aston Village,65858-00021-1,0,4380_7778208_1901113,4380_1710 -4380_78123,297,4380_106946,Aston Village,65249-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78148,297,4380_10695,Cavan,7365-00008-1,1,4380_7778208_1110101,4380_225 -4380_78123,285,4380_106953,Aston Village,65250-00009-1,0,4380_7778208_1901111,4380_1709 -4380_78123,286,4380_106954,Aston Village,65252-00010-1,0,4380_7778208_1901111,4380_1709 -4380_78123,288,4380_106955,Aston Village,65254-00011-1,0,4380_7778208_1901111,4380_1709 -4380_78123,287,4380_106956,Aston Village,65256-00012-1,0,4380_7778208_1901111,4380_1709 -4380_78123,291,4380_106957,Aston Village,65258-00013-1,0,4380_7778208_1901111,4380_1710 -4380_78123,289,4380_106958,Aston Village,65260-00014-1,0,4380_7778208_1901111,4380_1709 -4380_78123,292,4380_106959,Aston Village,65253-00016-1,0,4380_7778208_1901111,4380_1709 -4380_78123,293,4380_106960,Aston Village,65255-00017-1,0,4380_7778208_1901111,4380_1709 -4380_78123,290,4380_106961,Aston Village,65251-00015-1,0,4380_7778208_1901111,4380_1709 -4380_78123,294,4380_106962,Aston Village,65257-00018-1,0,4380_7778208_1901111,4380_1709 -4380_78123,295,4380_106963,Aston Village,65261-00019-1,0,4380_7778208_1901111,4380_1709 -4380_78123,296,4380_106964,Aston Village,65259-00021-1,0,4380_7778208_1901111,4380_1710 -4380_78123,285,4380_106971,Aston Village,64969-00009-1,0,4380_7778208_1901110,4380_1709 -4380_78123,286,4380_106972,Aston Village,64977-00010-1,0,4380_7778208_1901110,4380_1709 -4380_78123,288,4380_106973,Aston Village,64967-00011-1,0,4380_7778208_1901110,4380_1709 -4380_78123,287,4380_106974,Aston Village,64971-00012-1,0,4380_7778208_1901110,4380_1709 -4380_78123,291,4380_106975,Aston Village,64973-00013-1,0,4380_7778208_1901110,4380_1710 -4380_78123,289,4380_106976,Aston Village,64975-00014-1,0,4380_7778208_1901110,4380_1709 -4380_78123,292,4380_106977,Aston Village,64978-00016-1,0,4380_7778208_1901110,4380_1709 -4380_78123,293,4380_106978,Aston Village,64968-00017-1,0,4380_7778208_1901110,4380_1709 -4380_78123,290,4380_106979,Aston Village,64970-00015-1,0,4380_7778208_1901110,4380_1709 -4380_78123,294,4380_106980,Aston Village,64972-00018-1,0,4380_7778208_1901110,4380_1709 -4380_78123,295,4380_106981,Aston Village,64976-00019-1,0,4380_7778208_1901110,4380_1709 -4380_78123,296,4380_106982,Aston Village,64974-00021-1,0,4380_7778208_1901110,4380_1710 -4380_78123,297,4380_106984,Aston Village,65275-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78123,285,4380_106991,Aston Village,65629-00009-1,0,4380_7778208_1901112,4380_1709 -4380_78123,286,4380_106992,Aston Village,65631-00010-1,0,4380_7778208_1901112,4380_1709 -4380_78123,288,4380_106993,Aston Village,65637-00011-1,0,4380_7778208_1901112,4380_1709 -4380_78123,287,4380_106994,Aston Village,65633-00012-1,0,4380_7778208_1901112,4380_1709 -4380_78123,291,4380_106995,Aston Village,65627-00013-1,0,4380_7778208_1901112,4380_1710 -4380_78123,289,4380_106996,Aston Village,65635-00014-1,0,4380_7778208_1901112,4380_1709 -4380_78123,292,4380_106997,Aston Village,65632-00016-1,0,4380_7778208_1901112,4380_1709 -4380_78123,293,4380_106998,Aston Village,65638-00017-1,0,4380_7778208_1901112,4380_1709 -4380_78123,290,4380_106999,Aston Village,65630-00015-1,0,4380_7778208_1901112,4380_1709 -4380_78113,291,4380_1070,Dublin via Airport,49861-00013-1,1,4380_7778208_1000905,4380_20 -4380_78123,294,4380_107000,Aston Village,65634-00018-1,0,4380_7778208_1901112,4380_1709 -4380_78123,295,4380_107001,Aston Village,65636-00019-1,0,4380_7778208_1901112,4380_1709 -4380_78123,296,4380_107002,Aston Village,65628-00021-1,0,4380_7778208_1901112,4380_1710 -4380_78123,285,4380_107009,Aston Village,66219-00009-1,0,4380_7778208_1901114,4380_1709 -4380_78123,286,4380_107010,Aston Village,66217-00010-1,0,4380_7778208_1901114,4380_1709 -4380_78123,288,4380_107011,Aston Village,66223-00011-1,0,4380_7778208_1901114,4380_1709 -4380_78123,287,4380_107012,Aston Village,66215-00012-1,0,4380_7778208_1901114,4380_1709 -4380_78123,291,4380_107013,Aston Village,66221-00013-1,0,4380_7778208_1901114,4380_1710 -4380_78123,289,4380_107014,Aston Village,66225-00014-1,0,4380_7778208_1901114,4380_1709 -4380_78123,292,4380_107015,Aston Village,66218-00016-1,0,4380_7778208_1901114,4380_1709 -4380_78123,293,4380_107016,Aston Village,66224-00017-1,0,4380_7778208_1901114,4380_1709 -4380_78123,290,4380_107017,Aston Village,66220-00015-1,0,4380_7778208_1901114,4380_1709 -4380_78123,294,4380_107018,Aston Village,66216-00018-1,0,4380_7778208_1901114,4380_1709 -4380_78123,295,4380_107019,Aston Village,66226-00019-1,0,4380_7778208_1901114,4380_1709 -4380_78148,285,4380_10702,Cavan,8891-00009-1,1,4380_7778208_1110901,4380_226 -4380_78123,296,4380_107020,Aston Village,66222-00021-1,0,4380_7778208_1901114,4380_1710 -4380_78123,297,4380_107022,Aston Village,65289-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78123,285,4380_107029,Aston Village,65909-00009-1,0,4380_7778208_1901113,4380_1709 -4380_78148,286,4380_10703,Cavan,8915-00010-1,1,4380_7778208_1110901,4380_226 -4380_78123,286,4380_107030,Aston Village,65907-00010-1,0,4380_7778208_1901113,4380_1709 -4380_78123,288,4380_107031,Aston Village,65913-00011-1,0,4380_7778208_1901113,4380_1709 -4380_78123,287,4380_107032,Aston Village,65905-00012-1,0,4380_7778208_1901113,4380_1709 -4380_78123,291,4380_107033,Aston Village,65911-00013-1,0,4380_7778208_1901113,4380_1710 -4380_78123,289,4380_107034,Aston Village,65903-00014-1,0,4380_7778208_1901113,4380_1709 -4380_78123,292,4380_107035,Aston Village,65908-00016-1,0,4380_7778208_1901113,4380_1709 -4380_78123,293,4380_107036,Aston Village,65914-00017-1,0,4380_7778208_1901113,4380_1709 -4380_78123,290,4380_107037,Aston Village,65910-00015-1,0,4380_7778208_1901113,4380_1709 -4380_78123,294,4380_107038,Aston Village,65906-00018-1,0,4380_7778208_1901113,4380_1709 -4380_78123,295,4380_107039,Aston Village,65904-00019-1,0,4380_7778208_1901113,4380_1709 -4380_78148,288,4380_10704,Cavan,8931-00011-1,1,4380_7778208_1110901,4380_226 -4380_78123,296,4380_107040,Aston Village,65912-00021-1,0,4380_7778208_1901113,4380_1710 -4380_78123,285,4380_107047,Aston Village,65313-00009-1,0,4380_7778208_1901111,4380_1709 -4380_78123,286,4380_107048,Aston Village,65309-00010-1,0,4380_7778208_1901111,4380_1709 -4380_78123,288,4380_107049,Aston Village,65311-00011-1,0,4380_7778208_1901111,4380_1709 -4380_78148,287,4380_10705,Cavan,8939-00012-1,1,4380_7778208_1110901,4380_226 -4380_78123,287,4380_107050,Aston Village,65307-00012-1,0,4380_7778208_1901111,4380_1709 -4380_78123,291,4380_107051,Aston Village,65303-00013-1,0,4380_7778208_1901111,4380_1710 -4380_78123,289,4380_107052,Aston Village,65305-00014-1,0,4380_7778208_1901111,4380_1709 -4380_78123,292,4380_107053,Aston Village,65310-00016-1,0,4380_7778208_1901111,4380_1709 -4380_78123,293,4380_107054,Aston Village,65312-00017-1,0,4380_7778208_1901111,4380_1709 -4380_78123,290,4380_107055,Aston Village,65314-00015-1,0,4380_7778208_1901111,4380_1709 -4380_78123,294,4380_107056,Aston Village,65308-00018-1,0,4380_7778208_1901111,4380_1709 -4380_78123,295,4380_107057,Aston Village,65306-00019-1,0,4380_7778208_1901111,4380_1709 -4380_78123,296,4380_107058,Aston Village,65304-00021-1,0,4380_7778208_1901111,4380_1710 -4380_78148,289,4380_10706,Cavan,8875-00014-1,1,4380_7778208_1110901,4380_226 -4380_78123,297,4380_107060,Aston Village,65315-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78123,285,4380_107067,Aston Village,65022-00009-1,0,4380_7778208_1901110,4380_1709 -4380_78123,286,4380_107068,Aston Village,65024-00010-1,0,4380_7778208_1901110,4380_1709 -4380_78123,288,4380_107069,Aston Village,65020-00011-1,0,4380_7778208_1901110,4380_1709 -4380_78148,290,4380_10707,Cavan,57539-00015-1,1,4380_7778208_1110901,4380_226 -4380_78123,287,4380_107070,Aston Village,65028-00012-1,0,4380_7778208_1901110,4380_1709 -4380_78123,291,4380_107071,Aston Village,65030-00013-1,0,4380_7778208_1901110,4380_1710 -4380_78123,289,4380_107072,Aston Village,65026-00014-1,0,4380_7778208_1901110,4380_1709 -4380_78123,292,4380_107073,Aston Village,65025-00016-1,0,4380_7778208_1901110,4380_1709 -4380_78123,293,4380_107074,Aston Village,65021-00017-1,0,4380_7778208_1901110,4380_1709 -4380_78123,290,4380_107075,Aston Village,65023-00015-1,0,4380_7778208_1901110,4380_1709 -4380_78123,294,4380_107076,Aston Village,65029-00018-1,0,4380_7778208_1901110,4380_1709 -4380_78123,295,4380_107077,Aston Village,65027-00019-1,0,4380_7778208_1901110,4380_1709 -4380_78123,296,4380_107078,Aston Village,65031-00021-1,0,4380_7778208_1901110,4380_1710 -4380_78148,291,4380_10708,Cavan,8963-00013-1,1,4380_7778208_1110901,4380_228 -4380_78123,285,4380_107085,Aston Village,65679-00009-1,0,4380_7778208_1901112,4380_1709 -4380_78123,286,4380_107086,Aston Village,65675-00010-1,0,4380_7778208_1901112,4380_1709 -4380_78123,288,4380_107087,Aston Village,65681-00011-1,0,4380_7778208_1901112,4380_1709 -4380_78123,287,4380_107088,Aston Village,65685-00012-1,0,4380_7778208_1901112,4380_1709 -4380_78123,291,4380_107089,Aston Village,65683-00013-1,0,4380_7778208_1901112,4380_1710 -4380_78148,292,4380_10709,Cavan,57537-00016-1,1,4380_7778208_1110901,4380_226 -4380_78123,289,4380_107090,Aston Village,65677-00014-1,0,4380_7778208_1901112,4380_1709 -4380_78123,292,4380_107091,Aston Village,65676-00016-1,0,4380_7778208_1901112,4380_1709 -4380_78123,293,4380_107092,Aston Village,65682-00017-1,0,4380_7778208_1901112,4380_1709 -4380_78123,290,4380_107093,Aston Village,65680-00015-1,0,4380_7778208_1901112,4380_1709 -4380_78123,294,4380_107094,Aston Village,65686-00018-1,0,4380_7778208_1901112,4380_1709 -4380_78123,295,4380_107095,Aston Village,65678-00019-1,0,4380_7778208_1901112,4380_1709 -4380_78123,296,4380_107096,Aston Village,65684-00021-1,0,4380_7778208_1901112,4380_1710 -4380_78123,297,4380_107098,Aston Village,65341-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78113,292,4380_1071,Dublin via Airport,49870-00016-1,1,4380_7778208_1000905,4380_18 -4380_78148,293,4380_10710,Cavan,57535-00017-1,1,4380_7778208_1110901,4380_226 -4380_78123,285,4380_107105,Aston Village,66273-00009-1,0,4380_7778208_1901114,4380_1709 -4380_78123,286,4380_107106,Aston Village,66271-00010-1,0,4380_7778208_1901114,4380_1709 -4380_78123,288,4380_107107,Aston Village,66267-00011-1,0,4380_7778208_1901114,4380_1709 -4380_78123,287,4380_107108,Aston Village,66263-00012-1,0,4380_7778208_1901114,4380_1709 -4380_78123,291,4380_107109,Aston Village,66265-00013-1,0,4380_7778208_1901114,4380_1710 -4380_78148,294,4380_10711,Cavan,57536-00018-1,1,4380_7778208_1110901,4380_226 -4380_78123,289,4380_107110,Aston Village,66269-00014-1,0,4380_7778208_1901114,4380_1709 -4380_78123,292,4380_107111,Aston Village,66272-00016-1,0,4380_7778208_1901114,4380_1709 -4380_78123,293,4380_107112,Aston Village,66268-00017-1,0,4380_7778208_1901114,4380_1709 -4380_78123,290,4380_107113,Aston Village,66274-00015-1,0,4380_7778208_1901114,4380_1709 -4380_78123,294,4380_107114,Aston Village,66264-00018-1,0,4380_7778208_1901114,4380_1709 -4380_78123,295,4380_107115,Aston Village,66270-00019-1,0,4380_7778208_1901114,4380_1709 -4380_78123,296,4380_107116,Aston Village,66266-00021-1,0,4380_7778208_1901114,4380_1710 -4380_78148,295,4380_10712,Cavan,57534-00019-1,1,4380_7778208_1110901,4380_226 -4380_78123,285,4380_107123,Aston Village,65953-00009-1,0,4380_7778208_1901113,4380_1709 -4380_78123,286,4380_107124,Aston Village,65957-00010-1,0,4380_7778208_1901113,4380_1709 -4380_78123,288,4380_107125,Aston Village,65961-00011-1,0,4380_7778208_1901113,4380_1709 -4380_78123,287,4380_107126,Aston Village,65959-00012-1,0,4380_7778208_1901113,4380_1709 -4380_78123,291,4380_107127,Aston Village,65955-00013-1,0,4380_7778208_1901113,4380_1710 -4380_78123,289,4380_107128,Aston Village,65951-00014-1,0,4380_7778208_1901113,4380_1709 -4380_78123,292,4380_107129,Aston Village,65958-00016-1,0,4380_7778208_1901113,4380_1709 -4380_78148,296,4380_10713,Cavan,57538-00021-1,1,4380_7778208_1110901,4380_228 -4380_78123,293,4380_107130,Aston Village,65962-00017-1,0,4380_7778208_1901113,4380_1709 -4380_78123,290,4380_107131,Aston Village,65954-00015-1,0,4380_7778208_1901113,4380_1709 -4380_78123,294,4380_107132,Aston Village,65960-00018-1,0,4380_7778208_1901113,4380_1709 -4380_78123,295,4380_107133,Aston Village,65952-00019-1,0,4380_7778208_1901113,4380_1709 -4380_78123,296,4380_107134,Aston Village,65956-00021-1,0,4380_7778208_1901113,4380_1710 -4380_78123,297,4380_107136,Aston Village,65355-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78123,285,4380_107143,Aston Village,65366-00009-1,0,4380_7778208_1901111,4380_1709 -4380_78123,286,4380_107144,Aston Village,65358-00010-1,0,4380_7778208_1901111,4380_1709 -4380_78123,288,4380_107145,Aston Village,65364-00011-1,0,4380_7778208_1901111,4380_1709 -4380_78123,287,4380_107146,Aston Village,65356-00012-1,0,4380_7778208_1901111,4380_1709 -4380_78123,291,4380_107147,Aston Village,65362-00013-1,0,4380_7778208_1901111,4380_1710 -4380_78123,289,4380_107148,Aston Village,65360-00014-1,0,4380_7778208_1901111,4380_1709 -4380_78123,292,4380_107149,Aston Village,65359-00016-1,0,4380_7778208_1901111,4380_1709 -4380_78123,293,4380_107150,Aston Village,65365-00017-1,0,4380_7778208_1901111,4380_1709 -4380_78123,290,4380_107151,Aston Village,65367-00015-1,0,4380_7778208_1901111,4380_1709 -4380_78123,294,4380_107152,Aston Village,65357-00018-1,0,4380_7778208_1901111,4380_1709 -4380_78123,295,4380_107153,Aston Village,65361-00019-1,0,4380_7778208_1901111,4380_1709 -4380_78123,296,4380_107154,Aston Village,65363-00021-1,0,4380_7778208_1901111,4380_1710 -4380_78123,285,4380_107161,Aston Village,65075-00009-1,0,4380_7778208_1901110,4380_1709 -4380_78123,286,4380_107162,Aston Village,65073-00010-1,0,4380_7778208_1901110,4380_1709 -4380_78123,288,4380_107163,Aston Village,65079-00011-1,0,4380_7778208_1901110,4380_1709 -4380_78123,287,4380_107164,Aston Village,65081-00012-1,0,4380_7778208_1901110,4380_1709 -4380_78123,291,4380_107165,Aston Village,65083-00013-1,0,4380_7778208_1901110,4380_1710 -4380_78123,289,4380_107166,Aston Village,65077-00014-1,0,4380_7778208_1901110,4380_1709 -4380_78123,292,4380_107167,Aston Village,65074-00016-1,0,4380_7778208_1901110,4380_1709 -4380_78123,293,4380_107168,Aston Village,65080-00017-1,0,4380_7778208_1901110,4380_1709 -4380_78123,290,4380_107169,Aston Village,65076-00015-1,0,4380_7778208_1901110,4380_1709 -4380_78123,294,4380_107170,Aston Village,65082-00018-1,0,4380_7778208_1901110,4380_1709 -4380_78123,295,4380_107171,Aston Village,65078-00019-1,0,4380_7778208_1901110,4380_1709 -4380_78123,296,4380_107172,Aston Village,65084-00021-1,0,4380_7778208_1901110,4380_1710 -4380_78123,297,4380_107174,Aston Village,65381-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78123,285,4380_107181,Aston Village,65731-00009-1,0,4380_7778208_1901112,4380_1709 -4380_78123,286,4380_107182,Aston Village,65723-00010-1,0,4380_7778208_1901112,4380_1709 -4380_78123,288,4380_107183,Aston Village,65725-00011-1,0,4380_7778208_1901112,4380_1709 -4380_78123,287,4380_107184,Aston Village,65727-00012-1,0,4380_7778208_1901112,4380_1709 -4380_78123,291,4380_107185,Aston Village,65733-00013-1,0,4380_7778208_1901112,4380_1710 -4380_78123,289,4380_107186,Aston Village,65729-00014-1,0,4380_7778208_1901112,4380_1709 -4380_78123,292,4380_107187,Aston Village,65724-00016-1,0,4380_7778208_1901112,4380_1709 -4380_78123,293,4380_107188,Aston Village,65726-00017-1,0,4380_7778208_1901112,4380_1709 -4380_78123,290,4380_107189,Aston Village,65732-00015-1,0,4380_7778208_1901112,4380_1709 -4380_78123,294,4380_107190,Aston Village,65728-00018-1,0,4380_7778208_1901112,4380_1709 -4380_78123,295,4380_107191,Aston Village,65730-00019-1,0,4380_7778208_1901112,4380_1709 -4380_78123,296,4380_107192,Aston Village,65734-00021-1,0,4380_7778208_1901112,4380_1710 -4380_78123,285,4380_107199,Aston Village,66315-00009-1,0,4380_7778208_1901114,4380_1709 -4380_78113,293,4380_1072,Dublin via Airport,49868-00017-1,1,4380_7778208_1000905,4380_18 -4380_78148,285,4380_10720,Cavan,8893-00009-1,1,4380_7778208_1110901,4380_226 -4380_78123,286,4380_107200,Aston Village,66321-00010-1,0,4380_7778208_1901114,4380_1709 -4380_78123,288,4380_107201,Aston Village,66319-00011-1,0,4380_7778208_1901114,4380_1709 -4380_78123,287,4380_107202,Aston Village,66311-00012-1,0,4380_7778208_1901114,4380_1709 -4380_78123,291,4380_107203,Aston Village,66317-00013-1,0,4380_7778208_1901114,4380_1710 -4380_78123,289,4380_107204,Aston Village,66313-00014-1,0,4380_7778208_1901114,4380_1709 -4380_78123,292,4380_107205,Aston Village,66322-00016-1,0,4380_7778208_1901114,4380_1709 -4380_78123,293,4380_107206,Aston Village,66320-00017-1,0,4380_7778208_1901114,4380_1709 -4380_78123,290,4380_107207,Aston Village,66316-00015-1,0,4380_7778208_1901114,4380_1709 -4380_78123,294,4380_107208,Aston Village,66312-00018-1,0,4380_7778208_1901114,4380_1709 -4380_78123,295,4380_107209,Aston Village,66314-00019-1,0,4380_7778208_1901114,4380_1709 -4380_78148,286,4380_10721,Cavan,8917-00010-1,1,4380_7778208_1110901,4380_226 -4380_78123,296,4380_107210,Aston Village,66318-00021-1,0,4380_7778208_1901114,4380_1710 -4380_78123,297,4380_107212,Aston Village,65395-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78123,285,4380_107219,Aston Village,66003-00009-1,0,4380_7778208_1901113,4380_1709 -4380_78148,288,4380_10722,Cavan,8933-00011-1,1,4380_7778208_1110901,4380_226 -4380_78123,286,4380_107220,Aston Village,66005-00010-1,0,4380_7778208_1901113,4380_1709 -4380_78123,288,4380_107221,Aston Village,66009-00011-1,0,4380_7778208_1901113,4380_1709 -4380_78123,287,4380_107222,Aston Village,66001-00012-1,0,4380_7778208_1901113,4380_1709 -4380_78123,291,4380_107223,Aston Village,66007-00013-1,0,4380_7778208_1901113,4380_1710 -4380_78123,289,4380_107224,Aston Village,65999-00014-1,0,4380_7778208_1901113,4380_1709 -4380_78123,292,4380_107225,Aston Village,66006-00016-1,0,4380_7778208_1901113,4380_1709 -4380_78123,293,4380_107226,Aston Village,66010-00017-1,0,4380_7778208_1901113,4380_1709 -4380_78123,290,4380_107227,Aston Village,66004-00015-1,0,4380_7778208_1901113,4380_1709 -4380_78123,294,4380_107228,Aston Village,66002-00018-1,0,4380_7778208_1901113,4380_1709 -4380_78123,295,4380_107229,Aston Village,66000-00019-1,0,4380_7778208_1901113,4380_1709 -4380_78148,287,4380_10723,Cavan,8941-00012-1,1,4380_7778208_1110901,4380_226 -4380_78123,296,4380_107230,Aston Village,66008-00021-1,0,4380_7778208_1901113,4380_1710 -4380_78123,285,4380_107237,Aston Village,65419-00009-1,0,4380_7778208_1901111,4380_1709 -4380_78123,286,4380_107238,Aston Village,65417-00010-1,0,4380_7778208_1901111,4380_1709 -4380_78123,288,4380_107239,Aston Village,65411-00011-1,0,4380_7778208_1901111,4380_1709 -4380_78148,289,4380_10724,Cavan,8877-00014-1,1,4380_7778208_1110901,4380_226 -4380_78123,287,4380_107240,Aston Village,65413-00012-1,0,4380_7778208_1901111,4380_1709 -4380_78123,291,4380_107241,Aston Village,65409-00013-1,0,4380_7778208_1901111,4380_1710 -4380_78123,289,4380_107242,Aston Village,65415-00014-1,0,4380_7778208_1901111,4380_1709 -4380_78123,292,4380_107243,Aston Village,65418-00016-1,0,4380_7778208_1901111,4380_1709 -4380_78123,293,4380_107244,Aston Village,65412-00017-1,0,4380_7778208_1901111,4380_1709 -4380_78123,290,4380_107245,Aston Village,65420-00015-1,0,4380_7778208_1901111,4380_1709 -4380_78123,294,4380_107246,Aston Village,65414-00018-1,0,4380_7778208_1901111,4380_1709 -4380_78123,295,4380_107247,Aston Village,65416-00019-1,0,4380_7778208_1901111,4380_1709 -4380_78123,296,4380_107248,Aston Village,65410-00021-1,0,4380_7778208_1901111,4380_1710 -4380_78148,290,4380_10725,Cavan,57551-00015-1,1,4380_7778208_1110901,4380_226 -4380_78123,297,4380_107250,Aston Village,65421-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78123,285,4380_107257,Aston Village,65134-00009-1,0,4380_7778208_1901110,4380_1709 -4380_78123,286,4380_107258,Aston Village,65128-00010-1,0,4380_7778208_1901110,4380_1709 -4380_78123,288,4380_107259,Aston Village,65130-00011-1,0,4380_7778208_1901110,4380_1709 -4380_78148,291,4380_10726,Cavan,8965-00013-1,1,4380_7778208_1110901,4380_228 -4380_78123,287,4380_107260,Aston Village,65136-00012-1,0,4380_7778208_1901110,4380_1709 -4380_78123,291,4380_107261,Aston Village,65126-00013-1,0,4380_7778208_1901110,4380_1710 -4380_78123,289,4380_107262,Aston Village,65132-00014-1,0,4380_7778208_1901110,4380_1709 -4380_78123,292,4380_107263,Aston Village,65129-00016-1,0,4380_7778208_1901110,4380_1709 -4380_78123,293,4380_107264,Aston Village,65131-00017-1,0,4380_7778208_1901110,4380_1709 -4380_78123,290,4380_107265,Aston Village,65135-00015-1,0,4380_7778208_1901110,4380_1709 -4380_78123,294,4380_107266,Aston Village,65137-00018-1,0,4380_7778208_1901110,4380_1709 -4380_78123,295,4380_107267,Aston Village,65133-00019-1,0,4380_7778208_1901110,4380_1709 -4380_78123,296,4380_107268,Aston Village,65127-00021-1,0,4380_7778208_1901110,4380_1710 -4380_78148,292,4380_10727,Cavan,57550-00016-1,1,4380_7778208_1110901,4380_226 -4380_78123,285,4380_107275,Aston Village,65779-00009-1,0,4380_7778208_1901112,4380_1709 -4380_78123,286,4380_107276,Aston Village,65777-00010-1,0,4380_7778208_1901112,4380_1709 -4380_78123,288,4380_107277,Aston Village,65781-00011-1,0,4380_7778208_1901112,4380_1709 -4380_78123,287,4380_107278,Aston Village,65775-00012-1,0,4380_7778208_1901112,4380_1709 -4380_78123,291,4380_107279,Aston Village,65771-00013-1,0,4380_7778208_1901112,4380_1710 -4380_78148,293,4380_10728,Cavan,57549-00017-1,1,4380_7778208_1110901,4380_226 -4380_78123,289,4380_107280,Aston Village,65773-00014-1,0,4380_7778208_1901112,4380_1709 -4380_78123,292,4380_107281,Aston Village,65778-00016-1,0,4380_7778208_1901112,4380_1709 -4380_78123,293,4380_107282,Aston Village,65782-00017-1,0,4380_7778208_1901112,4380_1709 -4380_78123,290,4380_107283,Aston Village,65780-00015-1,0,4380_7778208_1901112,4380_1709 -4380_78123,294,4380_107284,Aston Village,65776-00018-1,0,4380_7778208_1901112,4380_1709 -4380_78123,295,4380_107285,Aston Village,65774-00019-1,0,4380_7778208_1901112,4380_1709 -4380_78123,296,4380_107286,Aston Village,65772-00021-1,0,4380_7778208_1901112,4380_1710 -4380_78123,297,4380_107288,Aston Village,65447-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78148,294,4380_10729,Cavan,57546-00018-1,1,4380_7778208_1110901,4380_226 -4380_78123,285,4380_107295,Aston Village,66365-00009-1,0,4380_7778208_1901114,4380_1709 -4380_78123,286,4380_107296,Aston Village,66363-00010-1,0,4380_7778208_1901114,4380_1709 -4380_78123,288,4380_107297,Aston Village,66361-00011-1,0,4380_7778208_1901114,4380_1709 -4380_78123,287,4380_107298,Aston Village,66369-00012-1,0,4380_7778208_1901114,4380_1709 -4380_78123,291,4380_107299,Aston Village,66359-00013-1,0,4380_7778208_1901114,4380_1710 -4380_78113,294,4380_1073,Dublin via Airport,49872-00018-1,1,4380_7778208_1000905,4380_18 -4380_78148,295,4380_10730,Cavan,57547-00019-1,1,4380_7778208_1110901,4380_226 -4380_78123,289,4380_107300,Aston Village,66367-00014-1,0,4380_7778208_1901114,4380_1709 -4380_78123,292,4380_107301,Aston Village,66364-00016-1,0,4380_7778208_1901114,4380_1709 -4380_78123,293,4380_107302,Aston Village,66362-00017-1,0,4380_7778208_1901114,4380_1709 -4380_78123,290,4380_107303,Aston Village,66366-00015-1,0,4380_7778208_1901114,4380_1709 -4380_78123,294,4380_107304,Aston Village,66370-00018-1,0,4380_7778208_1901114,4380_1709 -4380_78123,295,4380_107305,Aston Village,66368-00019-1,0,4380_7778208_1901114,4380_1709 -4380_78123,296,4380_107306,Aston Village,66360-00021-1,0,4380_7778208_1901114,4380_1710 -4380_78148,296,4380_10731,Cavan,57548-00021-1,1,4380_7778208_1110901,4380_228 -4380_78123,285,4380_107313,Aston Village,66053-00009-1,0,4380_7778208_1901113,4380_1709 -4380_78123,286,4380_107314,Aston Village,66057-00010-1,0,4380_7778208_1901113,4380_1709 -4380_78123,288,4380_107315,Aston Village,66051-00011-1,0,4380_7778208_1901113,4380_1709 -4380_78123,287,4380_107316,Aston Village,66055-00012-1,0,4380_7778208_1901113,4380_1709 -4380_78123,291,4380_107317,Aston Village,66049-00013-1,0,4380_7778208_1901113,4380_1710 -4380_78123,289,4380_107318,Aston Village,66047-00014-1,0,4380_7778208_1901113,4380_1709 -4380_78123,292,4380_107319,Aston Village,66058-00016-1,0,4380_7778208_1901113,4380_1709 -4380_78123,293,4380_107320,Aston Village,66052-00017-1,0,4380_7778208_1901113,4380_1709 -4380_78123,290,4380_107321,Aston Village,66054-00015-1,0,4380_7778208_1901113,4380_1709 -4380_78123,294,4380_107322,Aston Village,66056-00018-1,0,4380_7778208_1901113,4380_1709 -4380_78123,295,4380_107323,Aston Village,66048-00019-1,0,4380_7778208_1901113,4380_1709 -4380_78123,296,4380_107324,Aston Village,66050-00021-1,0,4380_7778208_1901113,4380_1710 -4380_78123,297,4380_107326,Aston Village,65461-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78123,285,4380_107333,Aston Village,65468-00009-1,0,4380_7778208_1901111,4380_1709 -4380_78123,286,4380_107334,Aston Village,65466-00010-1,0,4380_7778208_1901111,4380_1709 -4380_78123,288,4380_107335,Aston Village,65472-00011-1,0,4380_7778208_1901111,4380_1709 -4380_78123,287,4380_107336,Aston Village,65470-00012-1,0,4380_7778208_1901111,4380_1709 -4380_78123,291,4380_107337,Aston Village,65464-00013-1,0,4380_7778208_1901111,4380_1710 -4380_78123,289,4380_107338,Aston Village,65462-00014-1,0,4380_7778208_1901111,4380_1709 -4380_78123,292,4380_107339,Aston Village,65467-00016-1,0,4380_7778208_1901111,4380_1709 -4380_78123,293,4380_107340,Aston Village,65473-00017-1,0,4380_7778208_1901111,4380_1709 -4380_78123,290,4380_107341,Aston Village,65469-00015-1,0,4380_7778208_1901111,4380_1709 -4380_78123,294,4380_107342,Aston Village,65471-00018-1,0,4380_7778208_1901111,4380_1709 -4380_78123,295,4380_107343,Aston Village,65463-00019-1,0,4380_7778208_1901111,4380_1709 -4380_78123,296,4380_107344,Aston Village,65465-00021-1,0,4380_7778208_1901111,4380_1710 -4380_78123,285,4380_107351,Aston Village,66081-00009-1,0,4380_7778208_1901113,4380_1709 -4380_78123,286,4380_107352,Aston Village,66073-00010-1,0,4380_7778208_1901113,4380_1709 -4380_78123,288,4380_107353,Aston Village,66071-00011-1,0,4380_7778208_1901113,4380_1709 -4380_78123,287,4380_107354,Aston Village,66075-00012-1,0,4380_7778208_1901113,4380_1709 -4380_78123,291,4380_107355,Aston Village,66077-00013-1,0,4380_7778208_1901113,4380_1710 -4380_78123,289,4380_107356,Aston Village,66079-00014-1,0,4380_7778208_1901113,4380_1709 -4380_78123,292,4380_107357,Aston Village,66074-00016-1,0,4380_7778208_1901113,4380_1709 -4380_78123,293,4380_107358,Aston Village,66072-00017-1,0,4380_7778208_1901113,4380_1709 -4380_78123,290,4380_107359,Aston Village,66082-00015-1,0,4380_7778208_1901113,4380_1709 -4380_78123,294,4380_107360,Aston Village,66076-00018-1,0,4380_7778208_1901113,4380_1709 -4380_78123,295,4380_107361,Aston Village,66080-00019-1,0,4380_7778208_1901113,4380_1709 -4380_78123,296,4380_107362,Aston Village,66078-00021-1,0,4380_7778208_1901113,4380_1710 -4380_78123,297,4380_107364,Aston Village,65487-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78123,285,4380_107371,Aston Village,66407-00009-1,0,4380_7778208_1901114,4380_1709 -4380_78123,286,4380_107372,Aston Village,66411-00010-1,0,4380_7778208_1901114,4380_1709 -4380_78123,288,4380_107373,Aston Village,66413-00011-1,0,4380_7778208_1901114,4380_1709 -4380_78123,287,4380_107374,Aston Village,66415-00012-1,0,4380_7778208_1901114,4380_1709 -4380_78123,291,4380_107375,Aston Village,66417-00013-1,0,4380_7778208_1901114,4380_1710 -4380_78123,289,4380_107376,Aston Village,66409-00014-1,0,4380_7778208_1901114,4380_1709 -4380_78123,292,4380_107377,Aston Village,66412-00016-1,0,4380_7778208_1901114,4380_1709 -4380_78123,293,4380_107378,Aston Village,66414-00017-1,0,4380_7778208_1901114,4380_1709 -4380_78123,290,4380_107379,Aston Village,66408-00015-1,0,4380_7778208_1901114,4380_1709 -4380_78148,285,4380_10738,Cavan,8895-00009-1,1,4380_7778208_1110901,4380_227 -4380_78123,294,4380_107380,Aston Village,66416-00018-1,0,4380_7778208_1901114,4380_1709 -4380_78123,295,4380_107381,Aston Village,66410-00019-1,0,4380_7778208_1901114,4380_1709 -4380_78123,296,4380_107382,Aston Village,66418-00021-1,0,4380_7778208_1901114,4380_1710 -4380_78123,297,4380_107384,Aston Village,65501-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78148,286,4380_10739,Cavan,8919-00010-1,1,4380_7778208_1110901,4380_227 -4380_78123,285,4380_107391,Aston Village,65517-00009-1,0,4380_7778208_1901111,4380_1709 -4380_78123,286,4380_107392,Aston Village,65519-00010-1,0,4380_7778208_1901111,4380_1709 -4380_78123,288,4380_107393,Aston Village,65525-00011-1,0,4380_7778208_1901111,4380_1709 -4380_78123,287,4380_107394,Aston Village,65521-00012-1,0,4380_7778208_1901111,4380_1709 -4380_78123,291,4380_107395,Aston Village,65515-00013-1,0,4380_7778208_1901111,4380_1710 -4380_78123,289,4380_107396,Aston Village,65523-00014-1,0,4380_7778208_1901111,4380_1709 -4380_78123,292,4380_107397,Aston Village,65520-00016-1,0,4380_7778208_1901111,4380_1709 -4380_78123,293,4380_107398,Aston Village,65526-00017-1,0,4380_7778208_1901111,4380_1709 -4380_78123,290,4380_107399,Aston Village,65518-00015-1,0,4380_7778208_1901111,4380_1709 -4380_78113,295,4380_1074,Dublin via Airport,49866-00019-1,1,4380_7778208_1000905,4380_18 -4380_78148,288,4380_10740,Cavan,8935-00011-1,1,4380_7778208_1110901,4380_227 -4380_78123,294,4380_107400,Aston Village,65522-00018-1,0,4380_7778208_1901111,4380_1709 -4380_78123,295,4380_107401,Aston Village,65524-00019-1,0,4380_7778208_1901111,4380_1709 -4380_78123,296,4380_107402,Aston Village,65516-00021-1,0,4380_7778208_1901111,4380_1710 -4380_78123,297,4380_107404,Aston Village,65527-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78148,287,4380_10741,Cavan,8943-00012-1,1,4380_7778208_1110901,4380_227 -4380_78123,285,4380_107411,Aston Village,66121-00009-1,0,4380_7778208_1901113,4380_1709 -4380_78123,286,4380_107412,Aston Village,66125-00010-1,0,4380_7778208_1901113,4380_1709 -4380_78123,288,4380_107413,Aston Village,66119-00011-1,0,4380_7778208_1901113,4380_1709 -4380_78123,287,4380_107414,Aston Village,66127-00012-1,0,4380_7778208_1901113,4380_1709 -4380_78123,291,4380_107415,Aston Village,66129-00013-1,0,4380_7778208_1901113,4380_1710 -4380_78123,289,4380_107416,Aston Village,66123-00014-1,0,4380_7778208_1901113,4380_1709 -4380_78123,292,4380_107417,Aston Village,66126-00016-1,0,4380_7778208_1901113,4380_1709 -4380_78123,293,4380_107418,Aston Village,66120-00017-1,0,4380_7778208_1901113,4380_1709 -4380_78123,290,4380_107419,Aston Village,66122-00015-1,0,4380_7778208_1901113,4380_1709 -4380_78148,289,4380_10742,Cavan,8879-00014-1,1,4380_7778208_1110901,4380_227 -4380_78123,294,4380_107420,Aston Village,66128-00018-1,0,4380_7778208_1901113,4380_1709 -4380_78123,295,4380_107421,Aston Village,66124-00019-1,0,4380_7778208_1901113,4380_1709 -4380_78123,296,4380_107422,Aston Village,66130-00021-1,0,4380_7778208_1901113,4380_1710 -4380_78123,297,4380_107424,Aston Village,65541-00008-1,0,4380_7778208_1901111,4380_1709 -4380_78148,290,4380_10743,Cavan,57558-00015-1,1,4380_7778208_1110901,4380_227 -4380_78123,285,4380_107431,Southgate SC,66133-00009-1,1,4380_7778208_1901114,4380_1711 -4380_78123,286,4380_107432,Southgate SC,66131-00010-1,1,4380_7778208_1901114,4380_1711 -4380_78123,288,4380_107433,Southgate SC,66141-00011-1,1,4380_7778208_1901114,4380_1711 -4380_78123,287,4380_107434,Southgate SC,66135-00012-1,1,4380_7778208_1901114,4380_1711 -4380_78123,291,4380_107435,Southgate SC,66139-00013-1,1,4380_7778208_1901114,4380_1712 -4380_78123,289,4380_107436,Southgate SC,66137-00014-1,1,4380_7778208_1901114,4380_1711 -4380_78123,292,4380_107437,Southgate SC,66132-00016-1,1,4380_7778208_1901114,4380_1711 -4380_78123,293,4380_107438,Southgate SC,66142-00017-1,1,4380_7778208_1901114,4380_1711 -4380_78123,290,4380_107439,Southgate SC,66134-00015-1,1,4380_7778208_1901114,4380_1711 -4380_78148,291,4380_10744,Cavan,8967-00013-1,1,4380_7778208_1110901,4380_229 -4380_78123,294,4380_107440,Southgate SC,66136-00018-1,1,4380_7778208_1901114,4380_1711 -4380_78123,295,4380_107441,Southgate SC,66138-00019-1,1,4380_7778208_1901114,4380_1711 -4380_78123,296,4380_107442,Southgate SC,66140-00021-1,1,4380_7778208_1901114,4380_1712 -4380_78123,285,4380_107449,Southgate SC,65823-00009-1,1,4380_7778208_1901113,4380_1711 -4380_78148,292,4380_10745,Cavan,57561-00016-1,1,4380_7778208_1110901,4380_227 -4380_78123,286,4380_107450,Southgate SC,65829-00010-1,1,4380_7778208_1901113,4380_1711 -4380_78123,288,4380_107451,Southgate SC,65825-00011-1,1,4380_7778208_1901113,4380_1711 -4380_78123,287,4380_107452,Southgate SC,65827-00012-1,1,4380_7778208_1901113,4380_1711 -4380_78123,291,4380_107453,Southgate SC,65821-00013-1,1,4380_7778208_1901113,4380_1712 -4380_78123,289,4380_107454,Southgate SC,65819-00014-1,1,4380_7778208_1901113,4380_1711 -4380_78123,292,4380_107455,Southgate SC,65830-00016-1,1,4380_7778208_1901113,4380_1711 -4380_78123,293,4380_107456,Southgate SC,65826-00017-1,1,4380_7778208_1901113,4380_1711 -4380_78123,290,4380_107457,Southgate SC,65824-00015-1,1,4380_7778208_1901113,4380_1711 -4380_78123,294,4380_107458,Southgate SC,65828-00018-1,1,4380_7778208_1901113,4380_1711 -4380_78123,295,4380_107459,Southgate SC,65820-00019-1,1,4380_7778208_1901113,4380_1711 -4380_78148,293,4380_10746,Cavan,57559-00017-1,1,4380_7778208_1110901,4380_227 -4380_78123,296,4380_107460,Southgate SC,65822-00021-1,1,4380_7778208_1901113,4380_1712 -4380_78123,285,4380_107467,Southgate SC,65215-00009-1,1,4380_7778208_1901111,4380_1711 -4380_78123,286,4380_107468,Southgate SC,65219-00010-1,1,4380_7778208_1901111,4380_1711 -4380_78123,288,4380_107469,Southgate SC,65217-00011-1,1,4380_7778208_1901111,4380_1711 -4380_78148,294,4380_10747,Cavan,57563-00018-1,1,4380_7778208_1110901,4380_227 -4380_78123,287,4380_107470,Southgate SC,65213-00012-1,1,4380_7778208_1901111,4380_1711 -4380_78123,291,4380_107471,Southgate SC,65221-00013-1,1,4380_7778208_1901111,4380_1712 -4380_78123,289,4380_107472,Southgate SC,65211-00014-1,1,4380_7778208_1901111,4380_1711 -4380_78123,292,4380_107473,Southgate SC,65220-00016-1,1,4380_7778208_1901111,4380_1711 -4380_78123,293,4380_107474,Southgate SC,65218-00017-1,1,4380_7778208_1901111,4380_1711 -4380_78123,290,4380_107475,Southgate SC,65216-00015-1,1,4380_7778208_1901111,4380_1711 -4380_78123,294,4380_107476,Southgate SC,65214-00018-1,1,4380_7778208_1901111,4380_1711 -4380_78123,295,4380_107477,Southgate SC,65212-00019-1,1,4380_7778208_1901111,4380_1711 -4380_78123,296,4380_107478,Southgate SC,65222-00021-1,1,4380_7778208_1901111,4380_1712 -4380_78148,295,4380_10748,Cavan,57560-00019-1,1,4380_7778208_1110901,4380_227 -4380_78123,285,4380_107485,Southgate SC,64929-00009-1,1,4380_7778208_1901110,4380_1711 -4380_78123,286,4380_107486,Southgate SC,64933-00010-1,1,4380_7778208_1901110,4380_1711 -4380_78123,288,4380_107487,Southgate SC,64937-00011-1,1,4380_7778208_1901110,4380_1711 -4380_78123,287,4380_107488,Southgate SC,64931-00012-1,1,4380_7778208_1901110,4380_1711 -4380_78123,291,4380_107489,Southgate SC,64927-00013-1,1,4380_7778208_1901110,4380_1712 -4380_78148,296,4380_10749,Cavan,57562-00021-1,1,4380_7778208_1110901,4380_229 -4380_78123,289,4380_107490,Southgate SC,64935-00014-1,1,4380_7778208_1901110,4380_1711 -4380_78123,292,4380_107491,Southgate SC,64934-00016-1,1,4380_7778208_1901110,4380_1711 -4380_78123,293,4380_107492,Southgate SC,64938-00017-1,1,4380_7778208_1901110,4380_1711 -4380_78123,290,4380_107493,Southgate SC,64930-00015-1,1,4380_7778208_1901110,4380_1711 -4380_78123,294,4380_107494,Southgate SC,64932-00018-1,1,4380_7778208_1901110,4380_1711 -4380_78123,295,4380_107495,Southgate SC,64936-00019-1,1,4380_7778208_1901110,4380_1711 -4380_78123,296,4380_107496,Southgate SC,64928-00021-1,1,4380_7778208_1901110,4380_1712 -4380_78113,296,4380_1075,Dublin via Airport,49862-00021-1,1,4380_7778208_1000905,4380_20 -4380_78123,285,4380_107503,Southgate SC,65595-00009-1,1,4380_7778208_1901112,4380_1711 -4380_78123,286,4380_107504,Southgate SC,65593-00010-1,1,4380_7778208_1901112,4380_1711 -4380_78123,288,4380_107505,Southgate SC,65601-00011-1,1,4380_7778208_1901112,4380_1711 -4380_78123,287,4380_107506,Southgate SC,65591-00012-1,1,4380_7778208_1901112,4380_1711 -4380_78123,291,4380_107507,Southgate SC,65599-00013-1,1,4380_7778208_1901112,4380_1712 -4380_78123,289,4380_107508,Southgate SC,65597-00014-1,1,4380_7778208_1901112,4380_1711 -4380_78123,292,4380_107509,Southgate SC,65594-00016-1,1,4380_7778208_1901112,4380_1711 -4380_78123,293,4380_107510,Southgate SC,65602-00017-1,1,4380_7778208_1901112,4380_1711 -4380_78123,290,4380_107511,Southgate SC,65596-00015-1,1,4380_7778208_1901112,4380_1711 -4380_78123,294,4380_107512,Southgate SC,65592-00018-1,1,4380_7778208_1901112,4380_1711 -4380_78123,295,4380_107513,Southgate SC,65598-00019-1,1,4380_7778208_1901112,4380_1711 -4380_78123,296,4380_107514,Southgate SC,65600-00021-1,1,4380_7778208_1901112,4380_1712 -4380_78123,297,4380_107516,Southgate SC,65236-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78123,285,4380_107523,Southgate SC,66187-00009-1,1,4380_7778208_1901114,4380_1711 -4380_78123,286,4380_107524,Southgate SC,66185-00010-1,1,4380_7778208_1901114,4380_1711 -4380_78123,288,4380_107525,Southgate SC,66179-00011-1,1,4380_7778208_1901114,4380_1711 -4380_78123,287,4380_107526,Southgate SC,66189-00012-1,1,4380_7778208_1901114,4380_1711 -4380_78123,291,4380_107527,Southgate SC,66183-00013-1,1,4380_7778208_1901114,4380_1712 -4380_78123,289,4380_107528,Southgate SC,66181-00014-1,1,4380_7778208_1901114,4380_1711 -4380_78123,292,4380_107529,Southgate SC,66186-00016-1,1,4380_7778208_1901114,4380_1711 -4380_78123,293,4380_107530,Southgate SC,66180-00017-1,1,4380_7778208_1901114,4380_1711 -4380_78123,290,4380_107531,Southgate SC,66188-00015-1,1,4380_7778208_1901114,4380_1711 -4380_78123,294,4380_107532,Southgate SC,66190-00018-1,1,4380_7778208_1901114,4380_1711 -4380_78123,295,4380_107533,Southgate SC,66182-00019-1,1,4380_7778208_1901114,4380_1711 -4380_78123,296,4380_107534,Southgate SC,66184-00021-1,1,4380_7778208_1901114,4380_1712 -4380_78123,285,4380_107541,Southgate SC,65875-00009-1,1,4380_7778208_1901113,4380_1711 -4380_78123,286,4380_107542,Southgate SC,65871-00010-1,1,4380_7778208_1901113,4380_1711 -4380_78123,288,4380_107543,Southgate SC,65877-00011-1,1,4380_7778208_1901113,4380_1711 -4380_78123,287,4380_107544,Southgate SC,65869-00012-1,1,4380_7778208_1901113,4380_1711 -4380_78123,291,4380_107545,Southgate SC,65873-00013-1,1,4380_7778208_1901113,4380_1712 -4380_78123,289,4380_107546,Southgate SC,65867-00014-1,1,4380_7778208_1901113,4380_1711 -4380_78123,292,4380_107547,Southgate SC,65872-00016-1,1,4380_7778208_1901113,4380_1711 -4380_78123,293,4380_107548,Southgate SC,65878-00017-1,1,4380_7778208_1901113,4380_1711 -4380_78123,290,4380_107549,Southgate SC,65876-00015-1,1,4380_7778208_1901113,4380_1711 -4380_78149,285,4380_10755,Clonmellon,8971-00009-1,0,4380_7778208_11188801,4380_233 -4380_78123,294,4380_107550,Southgate SC,65870-00018-1,1,4380_7778208_1901113,4380_1711 -4380_78123,295,4380_107551,Southgate SC,65868-00019-1,1,4380_7778208_1901113,4380_1711 -4380_78123,296,4380_107552,Southgate SC,65874-00021-1,1,4380_7778208_1901113,4380_1712 -4380_78123,297,4380_107554,Southgate SC,65262-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78149,288,4380_10756,Clonmellon,8975-00011-1,0,4380_7778208_11188801,4380_233 -4380_78123,285,4380_107561,Southgate SC,65263-00009-1,1,4380_7778208_1901111,4380_1711 -4380_78123,286,4380_107562,Southgate SC,65271-00010-1,1,4380_7778208_1901111,4380_1711 -4380_78123,288,4380_107563,Southgate SC,65273-00011-1,1,4380_7778208_1901111,4380_1711 -4380_78123,287,4380_107564,Southgate SC,65265-00012-1,1,4380_7778208_1901111,4380_1711 -4380_78123,291,4380_107565,Southgate SC,65267-00013-1,1,4380_7778208_1901111,4380_1712 -4380_78123,289,4380_107566,Southgate SC,65269-00014-1,1,4380_7778208_1901111,4380_1711 -4380_78123,292,4380_107567,Southgate SC,65272-00016-1,1,4380_7778208_1901111,4380_1711 -4380_78123,293,4380_107568,Southgate SC,65274-00017-1,1,4380_7778208_1901111,4380_1711 -4380_78123,290,4380_107569,Southgate SC,65264-00015-1,1,4380_7778208_1901111,4380_1711 -4380_78149,286,4380_10757,Clonmellon,8973-00010-1,0,4380_7778208_11188801,4380_233 -4380_78123,294,4380_107570,Southgate SC,65266-00018-1,1,4380_7778208_1901111,4380_1711 -4380_78123,295,4380_107571,Southgate SC,65270-00019-1,1,4380_7778208_1901111,4380_1711 -4380_78123,296,4380_107572,Southgate SC,65268-00021-1,1,4380_7778208_1901111,4380_1712 -4380_78123,285,4380_107579,Southgate SC,64982-00009-1,1,4380_7778208_1901110,4380_1711 -4380_78149,289,4380_10758,Clonmellon,8969-00014-1,0,4380_7778208_11188801,4380_233 -4380_78123,286,4380_107580,Southgate SC,64988-00010-1,1,4380_7778208_1901110,4380_1711 -4380_78123,288,4380_107581,Southgate SC,64980-00011-1,1,4380_7778208_1901110,4380_1711 -4380_78123,287,4380_107582,Southgate SC,64990-00012-1,1,4380_7778208_1901110,4380_1711 -4380_78123,291,4380_107583,Southgate SC,64986-00013-1,1,4380_7778208_1901110,4380_1712 -4380_78123,289,4380_107584,Southgate SC,64984-00014-1,1,4380_7778208_1901110,4380_1711 -4380_78123,292,4380_107585,Southgate SC,64989-00016-1,1,4380_7778208_1901110,4380_1711 -4380_78123,293,4380_107586,Southgate SC,64981-00017-1,1,4380_7778208_1901110,4380_1711 -4380_78123,290,4380_107587,Southgate SC,64983-00015-1,1,4380_7778208_1901110,4380_1711 -4380_78123,294,4380_107588,Southgate SC,64991-00018-1,1,4380_7778208_1901110,4380_1711 -4380_78123,295,4380_107589,Southgate SC,64985-00019-1,1,4380_7778208_1901110,4380_1711 -4380_78149,287,4380_10759,Clonmellon,8977-00012-1,0,4380_7778208_11188801,4380_233 -4380_78123,296,4380_107590,Southgate SC,64987-00021-1,1,4380_7778208_1901110,4380_1712 -4380_78123,297,4380_107592,Southgate SC,65288-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78123,285,4380_107599,Southgate SC,65645-00009-1,1,4380_7778208_1901112,4380_1711 -4380_78149,290,4380_10760,Clonmellon,114830-00015-1,0,4380_7778208_11188801,4380_233 -4380_78123,286,4380_107600,Southgate SC,65641-00010-1,1,4380_7778208_1901112,4380_1711 -4380_78123,288,4380_107601,Southgate SC,65643-00011-1,1,4380_7778208_1901112,4380_1711 -4380_78123,287,4380_107602,Southgate SC,65647-00012-1,1,4380_7778208_1901112,4380_1711 -4380_78123,291,4380_107603,Southgate SC,65639-00013-1,1,4380_7778208_1901112,4380_1712 -4380_78123,289,4380_107604,Southgate SC,65649-00014-1,1,4380_7778208_1901112,4380_1711 -4380_78123,292,4380_107605,Southgate SC,65642-00016-1,1,4380_7778208_1901112,4380_1711 -4380_78123,293,4380_107606,Southgate SC,65644-00017-1,1,4380_7778208_1901112,4380_1711 -4380_78123,290,4380_107607,Southgate SC,65646-00015-1,1,4380_7778208_1901112,4380_1711 -4380_78123,294,4380_107608,Southgate SC,65648-00018-1,1,4380_7778208_1901112,4380_1711 -4380_78123,295,4380_107609,Southgate SC,65650-00019-1,1,4380_7778208_1901112,4380_1711 -4380_78149,292,4380_10761,Clonmellon,114829-00016-1,0,4380_7778208_11188801,4380_233 -4380_78123,296,4380_107610,Southgate SC,65640-00021-1,1,4380_7778208_1901112,4380_1712 -4380_78123,285,4380_107617,Southgate SC,66237-00009-1,1,4380_7778208_1901114,4380_1711 -4380_78123,286,4380_107618,Southgate SC,66227-00010-1,1,4380_7778208_1901114,4380_1711 -4380_78123,288,4380_107619,Southgate SC,66231-00011-1,1,4380_7778208_1901114,4380_1711 -4380_78149,294,4380_10762,Clonmellon,114831-00018-1,0,4380_7778208_11188801,4380_233 -4380_78123,287,4380_107620,Southgate SC,66235-00012-1,1,4380_7778208_1901114,4380_1711 -4380_78123,291,4380_107621,Southgate SC,66229-00013-1,1,4380_7778208_1901114,4380_1712 -4380_78123,289,4380_107622,Southgate SC,66233-00014-1,1,4380_7778208_1901114,4380_1711 -4380_78123,292,4380_107623,Southgate SC,66228-00016-1,1,4380_7778208_1901114,4380_1711 -4380_78123,293,4380_107624,Southgate SC,66232-00017-1,1,4380_7778208_1901114,4380_1711 -4380_78123,290,4380_107625,Southgate SC,66238-00015-1,1,4380_7778208_1901114,4380_1711 -4380_78123,294,4380_107626,Southgate SC,66236-00018-1,1,4380_7778208_1901114,4380_1711 -4380_78123,295,4380_107627,Southgate SC,66234-00019-1,1,4380_7778208_1901114,4380_1711 -4380_78123,296,4380_107628,Southgate SC,66230-00021-1,1,4380_7778208_1901114,4380_1712 -4380_78149,293,4380_10763,Clonmellon,114828-00017-1,0,4380_7778208_11188801,4380_233 -4380_78123,297,4380_107630,Southgate SC,65302-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78123,285,4380_107637,Southgate SC,65919-00009-1,1,4380_7778208_1901113,4380_1711 -4380_78123,286,4380_107638,Southgate SC,65923-00010-1,1,4380_7778208_1901113,4380_1711 -4380_78123,288,4380_107639,Southgate SC,65917-00011-1,1,4380_7778208_1901113,4380_1711 -4380_78149,295,4380_10764,Clonmellon,114827-00019-1,0,4380_7778208_11188801,4380_233 -4380_78123,287,4380_107640,Southgate SC,65915-00012-1,1,4380_7778208_1901113,4380_1711 -4380_78123,291,4380_107641,Southgate SC,65925-00013-1,1,4380_7778208_1901113,4380_1712 -4380_78123,289,4380_107642,Southgate SC,65921-00014-1,1,4380_7778208_1901113,4380_1711 -4380_78123,292,4380_107643,Southgate SC,65924-00016-1,1,4380_7778208_1901113,4380_1711 -4380_78123,293,4380_107644,Southgate SC,65918-00017-1,1,4380_7778208_1901113,4380_1711 -4380_78123,290,4380_107645,Southgate SC,65920-00015-1,1,4380_7778208_1901113,4380_1711 -4380_78123,294,4380_107646,Southgate SC,65916-00018-1,1,4380_7778208_1901113,4380_1711 -4380_78123,295,4380_107647,Southgate SC,65922-00019-1,1,4380_7778208_1901113,4380_1711 -4380_78123,296,4380_107648,Southgate SC,65926-00021-1,1,4380_7778208_1901113,4380_1712 -4380_78123,285,4380_107655,Southgate SC,65322-00009-1,1,4380_7778208_1901111,4380_1711 -4380_78123,286,4380_107656,Southgate SC,65320-00010-1,1,4380_7778208_1901111,4380_1711 -4380_78123,288,4380_107657,Southgate SC,65316-00011-1,1,4380_7778208_1901111,4380_1711 -4380_78123,287,4380_107658,Southgate SC,65324-00012-1,1,4380_7778208_1901111,4380_1711 -4380_78123,291,4380_107659,Southgate SC,65326-00013-1,1,4380_7778208_1901111,4380_1712 -4380_78123,289,4380_107660,Southgate SC,65318-00014-1,1,4380_7778208_1901111,4380_1711 -4380_78123,292,4380_107661,Southgate SC,65321-00016-1,1,4380_7778208_1901111,4380_1711 -4380_78123,293,4380_107662,Southgate SC,65317-00017-1,1,4380_7778208_1901111,4380_1711 -4380_78123,290,4380_107663,Southgate SC,65323-00015-1,1,4380_7778208_1901111,4380_1711 -4380_78123,294,4380_107664,Southgate SC,65325-00018-1,1,4380_7778208_1901111,4380_1711 -4380_78123,295,4380_107665,Southgate SC,65319-00019-1,1,4380_7778208_1901111,4380_1711 -4380_78123,296,4380_107666,Southgate SC,65327-00021-1,1,4380_7778208_1901111,4380_1712 -4380_78123,297,4380_107668,Southgate SC,65328-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78123,285,4380_107675,Southgate SC,65035-00009-1,1,4380_7778208_1901110,4380_1711 -4380_78123,286,4380_107676,Southgate SC,65041-00010-1,1,4380_7778208_1901110,4380_1711 -4380_78123,288,4380_107677,Southgate SC,65033-00011-1,1,4380_7778208_1901110,4380_1711 -4380_78123,287,4380_107678,Southgate SC,65043-00012-1,1,4380_7778208_1901110,4380_1711 -4380_78123,291,4380_107679,Southgate SC,65037-00013-1,1,4380_7778208_1901110,4380_1712 -4380_78123,289,4380_107680,Southgate SC,65039-00014-1,1,4380_7778208_1901110,4380_1711 -4380_78123,292,4380_107681,Southgate SC,65042-00016-1,1,4380_7778208_1901110,4380_1711 -4380_78123,293,4380_107682,Southgate SC,65034-00017-1,1,4380_7778208_1901110,4380_1711 -4380_78123,290,4380_107683,Southgate SC,65036-00015-1,1,4380_7778208_1901110,4380_1711 -4380_78123,294,4380_107684,Southgate SC,65044-00018-1,1,4380_7778208_1901110,4380_1711 -4380_78123,295,4380_107685,Southgate SC,65040-00019-1,1,4380_7778208_1901110,4380_1711 -4380_78123,296,4380_107686,Southgate SC,65038-00021-1,1,4380_7778208_1901110,4380_1712 -4380_78123,285,4380_107693,Southgate SC,65689-00009-1,1,4380_7778208_1901112,4380_1711 -4380_78123,286,4380_107694,Southgate SC,65695-00010-1,1,4380_7778208_1901112,4380_1711 -4380_78123,288,4380_107695,Southgate SC,65691-00011-1,1,4380_7778208_1901112,4380_1711 -4380_78123,287,4380_107696,Southgate SC,65697-00012-1,1,4380_7778208_1901112,4380_1711 -4380_78123,291,4380_107697,Southgate SC,65687-00013-1,1,4380_7778208_1901112,4380_1712 -4380_78123,289,4380_107698,Southgate SC,65693-00014-1,1,4380_7778208_1901112,4380_1711 -4380_78123,292,4380_107699,Southgate SC,65696-00016-1,1,4380_7778208_1901112,4380_1711 -4380_78149,285,4380_10770,Trim,7882-00009-1,0,4380_7778208_1110110,4380_232 -4380_78123,293,4380_107700,Southgate SC,65692-00017-1,1,4380_7778208_1901112,4380_1711 -4380_78123,290,4380_107701,Southgate SC,65690-00015-1,1,4380_7778208_1901112,4380_1711 -4380_78123,294,4380_107702,Southgate SC,65698-00018-1,1,4380_7778208_1901112,4380_1711 -4380_78123,295,4380_107703,Southgate SC,65694-00019-1,1,4380_7778208_1901112,4380_1711 -4380_78123,296,4380_107704,Southgate SC,65688-00021-1,1,4380_7778208_1901112,4380_1712 -4380_78123,297,4380_107706,Southgate SC,65342-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78149,286,4380_10771,Trim,7890-00010-1,0,4380_7778208_1110110,4380_232 -4380_78123,285,4380_107713,Southgate SC,66277-00009-1,1,4380_7778208_1901114,4380_1711 -4380_78123,286,4380_107714,Southgate SC,66285-00010-1,1,4380_7778208_1901114,4380_1711 -4380_78123,288,4380_107715,Southgate SC,66275-00011-1,1,4380_7778208_1901114,4380_1711 -4380_78123,287,4380_107716,Southgate SC,66281-00012-1,1,4380_7778208_1901114,4380_1711 -4380_78123,291,4380_107717,Southgate SC,66279-00013-1,1,4380_7778208_1901114,4380_1712 -4380_78123,289,4380_107718,Southgate SC,66283-00014-1,1,4380_7778208_1901114,4380_1711 -4380_78123,292,4380_107719,Southgate SC,66286-00016-1,1,4380_7778208_1901114,4380_1711 -4380_78149,288,4380_10772,Trim,7898-00011-1,0,4380_7778208_1110110,4380_232 -4380_78123,293,4380_107720,Southgate SC,66276-00017-1,1,4380_7778208_1901114,4380_1711 -4380_78123,290,4380_107721,Southgate SC,66278-00015-1,1,4380_7778208_1901114,4380_1711 -4380_78123,294,4380_107722,Southgate SC,66282-00018-1,1,4380_7778208_1901114,4380_1711 -4380_78123,295,4380_107723,Southgate SC,66284-00019-1,1,4380_7778208_1901114,4380_1711 -4380_78123,296,4380_107724,Southgate SC,66280-00021-1,1,4380_7778208_1901114,4380_1712 -4380_78149,287,4380_10773,Trim,7906-00012-1,0,4380_7778208_1110110,4380_232 -4380_78123,285,4380_107731,Southgate SC,65971-00009-1,1,4380_7778208_1901113,4380_1711 -4380_78123,286,4380_107732,Southgate SC,65973-00010-1,1,4380_7778208_1901113,4380_1711 -4380_78123,288,4380_107733,Southgate SC,65967-00011-1,1,4380_7778208_1901113,4380_1711 -4380_78123,287,4380_107734,Southgate SC,65965-00012-1,1,4380_7778208_1901113,4380_1711 -4380_78123,291,4380_107735,Southgate SC,65969-00013-1,1,4380_7778208_1901113,4380_1712 -4380_78123,289,4380_107736,Southgate SC,65963-00014-1,1,4380_7778208_1901113,4380_1711 -4380_78123,292,4380_107737,Southgate SC,65974-00016-1,1,4380_7778208_1901113,4380_1711 -4380_78123,293,4380_107738,Southgate SC,65968-00017-1,1,4380_7778208_1901113,4380_1711 -4380_78123,290,4380_107739,Southgate SC,65972-00015-1,1,4380_7778208_1901113,4380_1711 -4380_78149,289,4380_10774,Trim,7874-00014-1,0,4380_7778208_1110110,4380_232 -4380_78123,294,4380_107740,Southgate SC,65966-00018-1,1,4380_7778208_1901113,4380_1711 -4380_78123,295,4380_107741,Southgate SC,65964-00019-1,1,4380_7778208_1901113,4380_1711 -4380_78123,296,4380_107742,Southgate SC,65970-00021-1,1,4380_7778208_1901113,4380_1712 -4380_78123,297,4380_107744,Southgate SC,65368-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78149,290,4380_10775,Trim,55746-00015-1,0,4380_7778208_1110110,4380_232 -4380_78123,285,4380_107751,Southgate SC,65379-00009-1,1,4380_7778208_1901111,4380_1711 -4380_78123,286,4380_107752,Southgate SC,65369-00010-1,1,4380_7778208_1901111,4380_1711 -4380_78123,288,4380_107753,Southgate SC,65375-00011-1,1,4380_7778208_1901111,4380_1711 -4380_78123,287,4380_107754,Southgate SC,65377-00012-1,1,4380_7778208_1901111,4380_1711 -4380_78123,291,4380_107755,Southgate SC,65371-00013-1,1,4380_7778208_1901111,4380_1712 -4380_78123,289,4380_107756,Southgate SC,65373-00014-1,1,4380_7778208_1901111,4380_1711 -4380_78123,292,4380_107757,Southgate SC,65370-00016-1,1,4380_7778208_1901111,4380_1711 -4380_78123,293,4380_107758,Southgate SC,65376-00017-1,1,4380_7778208_1901111,4380_1711 -4380_78123,290,4380_107759,Southgate SC,65380-00015-1,1,4380_7778208_1901111,4380_1711 -4380_78149,292,4380_10776,Trim,55747-00016-1,0,4380_7778208_1110110,4380_232 -4380_78123,294,4380_107760,Southgate SC,65378-00018-1,1,4380_7778208_1901111,4380_1711 -4380_78123,295,4380_107761,Southgate SC,65374-00019-1,1,4380_7778208_1901111,4380_1711 -4380_78123,296,4380_107762,Southgate SC,65372-00021-1,1,4380_7778208_1901111,4380_1712 -4380_78123,285,4380_107769,Southgate SC,65088-00009-1,1,4380_7778208_1901110,4380_1711 -4380_78149,293,4380_10777,Trim,55750-00017-1,0,4380_7778208_1110110,4380_232 -4380_78123,286,4380_107770,Southgate SC,65096-00010-1,1,4380_7778208_1901110,4380_1711 -4380_78123,288,4380_107771,Southgate SC,65090-00011-1,1,4380_7778208_1901110,4380_1711 -4380_78123,287,4380_107772,Southgate SC,65092-00012-1,1,4380_7778208_1901110,4380_1711 -4380_78123,291,4380_107773,Southgate SC,65094-00013-1,1,4380_7778208_1901110,4380_1712 -4380_78123,289,4380_107774,Southgate SC,65086-00014-1,1,4380_7778208_1901110,4380_1711 -4380_78123,292,4380_107775,Southgate SC,65097-00016-1,1,4380_7778208_1901110,4380_1711 -4380_78123,293,4380_107776,Southgate SC,65091-00017-1,1,4380_7778208_1901110,4380_1711 -4380_78123,290,4380_107777,Southgate SC,65089-00015-1,1,4380_7778208_1901110,4380_1711 -4380_78123,294,4380_107778,Southgate SC,65093-00018-1,1,4380_7778208_1901110,4380_1711 -4380_78123,295,4380_107779,Southgate SC,65087-00019-1,1,4380_7778208_1901110,4380_1711 -4380_78149,294,4380_10778,Trim,55749-00018-1,0,4380_7778208_1110110,4380_232 -4380_78123,296,4380_107780,Southgate SC,65095-00021-1,1,4380_7778208_1901110,4380_1712 -4380_78123,297,4380_107782,Southgate SC,65394-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78123,285,4380_107789,Southgate SC,65737-00009-1,1,4380_7778208_1901112,4380_1711 -4380_78149,295,4380_10779,Trim,55748-00019-1,0,4380_7778208_1110110,4380_232 -4380_78123,286,4380_107790,Southgate SC,65741-00010-1,1,4380_7778208_1901112,4380_1711 -4380_78123,288,4380_107791,Southgate SC,65743-00011-1,1,4380_7778208_1901112,4380_1711 -4380_78123,287,4380_107792,Southgate SC,65745-00012-1,1,4380_7778208_1901112,4380_1711 -4380_78123,291,4380_107793,Southgate SC,65739-00013-1,1,4380_7778208_1901112,4380_1712 -4380_78123,289,4380_107794,Southgate SC,65735-00014-1,1,4380_7778208_1901112,4380_1711 -4380_78123,292,4380_107795,Southgate SC,65742-00016-1,1,4380_7778208_1901112,4380_1711 -4380_78123,293,4380_107796,Southgate SC,65744-00017-1,1,4380_7778208_1901112,4380_1711 -4380_78123,290,4380_107797,Southgate SC,65738-00015-1,1,4380_7778208_1901112,4380_1711 -4380_78123,294,4380_107798,Southgate SC,65746-00018-1,1,4380_7778208_1901112,4380_1711 -4380_78123,295,4380_107799,Southgate SC,65736-00019-1,1,4380_7778208_1901112,4380_1711 -4380_78123,296,4380_107800,Southgate SC,65740-00021-1,1,4380_7778208_1901112,4380_1712 -4380_78123,285,4380_107807,Southgate SC,66329-00009-1,1,4380_7778208_1901114,4380_1711 -4380_78123,286,4380_107808,Southgate SC,66325-00010-1,1,4380_7778208_1901114,4380_1711 -4380_78123,288,4380_107809,Southgate SC,66331-00011-1,1,4380_7778208_1901114,4380_1711 -4380_78123,287,4380_107810,Southgate SC,66327-00012-1,1,4380_7778208_1901114,4380_1711 -4380_78123,291,4380_107811,Southgate SC,66323-00013-1,1,4380_7778208_1901114,4380_1712 -4380_78123,289,4380_107812,Southgate SC,66333-00014-1,1,4380_7778208_1901114,4380_1711 -4380_78123,292,4380_107813,Southgate SC,66326-00016-1,1,4380_7778208_1901114,4380_1711 -4380_78123,293,4380_107814,Southgate SC,66332-00017-1,1,4380_7778208_1901114,4380_1711 -4380_78123,290,4380_107815,Southgate SC,66330-00015-1,1,4380_7778208_1901114,4380_1711 -4380_78123,294,4380_107816,Southgate SC,66328-00018-1,1,4380_7778208_1901114,4380_1711 -4380_78123,295,4380_107817,Southgate SC,66334-00019-1,1,4380_7778208_1901114,4380_1711 -4380_78123,296,4380_107818,Southgate SC,66324-00021-1,1,4380_7778208_1901114,4380_1712 -4380_78123,297,4380_107820,Southgate SC,65408-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78123,285,4380_107827,Southgate SC,66011-00009-1,1,4380_7778208_1901113,4380_1711 -4380_78123,286,4380_107828,Southgate SC,66013-00010-1,1,4380_7778208_1901113,4380_1711 -4380_78123,288,4380_107829,Southgate SC,66017-00011-1,1,4380_7778208_1901113,4380_1711 -4380_78123,287,4380_107830,Southgate SC,66019-00012-1,1,4380_7778208_1901113,4380_1711 -4380_78123,291,4380_107831,Southgate SC,66021-00013-1,1,4380_7778208_1901113,4380_1712 -4380_78123,289,4380_107832,Southgate SC,66015-00014-1,1,4380_7778208_1901113,4380_1711 -4380_78123,292,4380_107833,Southgate SC,66014-00016-1,1,4380_7778208_1901113,4380_1711 -4380_78123,293,4380_107834,Southgate SC,66018-00017-1,1,4380_7778208_1901113,4380_1711 -4380_78123,290,4380_107835,Southgate SC,66012-00015-1,1,4380_7778208_1901113,4380_1711 -4380_78123,294,4380_107836,Southgate SC,66020-00018-1,1,4380_7778208_1901113,4380_1711 -4380_78123,295,4380_107837,Southgate SC,66016-00019-1,1,4380_7778208_1901113,4380_1711 -4380_78123,296,4380_107838,Southgate SC,66022-00021-1,1,4380_7778208_1901113,4380_1712 -4380_78123,285,4380_107845,Southgate SC,65428-00009-1,1,4380_7778208_1901111,4380_1711 -4380_78123,286,4380_107846,Southgate SC,65424-00010-1,1,4380_7778208_1901111,4380_1711 -4380_78123,288,4380_107847,Southgate SC,65432-00011-1,1,4380_7778208_1901111,4380_1711 -4380_78123,287,4380_107848,Southgate SC,65426-00012-1,1,4380_7778208_1901111,4380_1711 -4380_78123,291,4380_107849,Southgate SC,65430-00013-1,1,4380_7778208_1901111,4380_1712 -4380_78149,285,4380_10785,Clonmellon,8981-00009-1,0,4380_7778208_11188802,4380_233 -4380_78123,289,4380_107850,Southgate SC,65422-00014-1,1,4380_7778208_1901111,4380_1711 -4380_78123,292,4380_107851,Southgate SC,65425-00016-1,1,4380_7778208_1901111,4380_1711 -4380_78123,293,4380_107852,Southgate SC,65433-00017-1,1,4380_7778208_1901111,4380_1711 -4380_78123,290,4380_107853,Southgate SC,65429-00015-1,1,4380_7778208_1901111,4380_1711 -4380_78123,294,4380_107854,Southgate SC,65427-00018-1,1,4380_7778208_1901111,4380_1711 -4380_78123,295,4380_107855,Southgate SC,65423-00019-1,1,4380_7778208_1901111,4380_1711 -4380_78123,296,4380_107856,Southgate SC,65431-00021-1,1,4380_7778208_1901111,4380_1712 -4380_78123,297,4380_107858,Southgate SC,65434-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78149,288,4380_10786,Clonmellon,8985-00011-1,0,4380_7778208_11188802,4380_233 -4380_78123,285,4380_107865,Southgate SC,65149-00009-1,1,4380_7778208_1901110,4380_1711 -4380_78123,286,4380_107866,Southgate SC,65145-00010-1,1,4380_7778208_1901110,4380_1711 -4380_78123,288,4380_107867,Southgate SC,65147-00011-1,1,4380_7778208_1901110,4380_1711 -4380_78123,287,4380_107868,Southgate SC,65143-00012-1,1,4380_7778208_1901110,4380_1711 -4380_78123,291,4380_107869,Southgate SC,65139-00013-1,1,4380_7778208_1901110,4380_1712 -4380_78149,286,4380_10787,Clonmellon,8983-00010-1,0,4380_7778208_11188802,4380_233 -4380_78123,289,4380_107870,Southgate SC,65141-00014-1,1,4380_7778208_1901110,4380_1711 -4380_78123,292,4380_107871,Southgate SC,65146-00016-1,1,4380_7778208_1901110,4380_1711 -4380_78123,293,4380_107872,Southgate SC,65148-00017-1,1,4380_7778208_1901110,4380_1711 -4380_78123,290,4380_107873,Southgate SC,65150-00015-1,1,4380_7778208_1901110,4380_1711 -4380_78123,294,4380_107874,Southgate SC,65144-00018-1,1,4380_7778208_1901110,4380_1711 -4380_78123,295,4380_107875,Southgate SC,65142-00019-1,1,4380_7778208_1901110,4380_1711 -4380_78123,296,4380_107876,Southgate SC,65140-00021-1,1,4380_7778208_1901110,4380_1712 -4380_78149,289,4380_10788,Clonmellon,8979-00014-1,0,4380_7778208_11188802,4380_233 -4380_78123,285,4380_107883,Southgate SC,65783-00009-1,1,4380_7778208_1901112,4380_1711 -4380_78123,286,4380_107884,Southgate SC,65793-00010-1,1,4380_7778208_1901112,4380_1711 -4380_78123,288,4380_107885,Southgate SC,65791-00011-1,1,4380_7778208_1901112,4380_1711 -4380_78123,287,4380_107886,Southgate SC,65787-00012-1,1,4380_7778208_1901112,4380_1711 -4380_78123,291,4380_107887,Southgate SC,65789-00013-1,1,4380_7778208_1901112,4380_1712 -4380_78123,289,4380_107888,Southgate SC,65785-00014-1,1,4380_7778208_1901112,4380_1711 -4380_78123,292,4380_107889,Southgate SC,65794-00016-1,1,4380_7778208_1901112,4380_1711 -4380_78149,287,4380_10789,Clonmellon,8987-00012-1,0,4380_7778208_11188802,4380_233 -4380_78123,293,4380_107890,Southgate SC,65792-00017-1,1,4380_7778208_1901112,4380_1711 -4380_78123,290,4380_107891,Southgate SC,65784-00015-1,1,4380_7778208_1901112,4380_1711 -4380_78123,294,4380_107892,Southgate SC,65788-00018-1,1,4380_7778208_1901112,4380_1711 -4380_78123,295,4380_107893,Southgate SC,65786-00019-1,1,4380_7778208_1901112,4380_1711 -4380_78123,296,4380_107894,Southgate SC,65790-00021-1,1,4380_7778208_1901112,4380_1712 -4380_78123,297,4380_107896,Southgate SC,65448-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78149,290,4380_10790,Clonmellon,114837-00015-1,0,4380_7778208_11188802,4380_233 -4380_78123,285,4380_107903,Southgate SC,66377-00009-1,1,4380_7778208_1901114,4380_1711 -4380_78123,286,4380_107904,Southgate SC,66379-00010-1,1,4380_7778208_1901114,4380_1711 -4380_78123,288,4380_107905,Southgate SC,66371-00011-1,1,4380_7778208_1901114,4380_1711 -4380_78123,287,4380_107906,Southgate SC,66373-00012-1,1,4380_7778208_1901114,4380_1711 -4380_78123,291,4380_107907,Southgate SC,66381-00013-1,1,4380_7778208_1901114,4380_1712 -4380_78123,289,4380_107908,Southgate SC,66375-00014-1,1,4380_7778208_1901114,4380_1711 -4380_78123,292,4380_107909,Southgate SC,66380-00016-1,1,4380_7778208_1901114,4380_1711 -4380_78149,292,4380_10791,Clonmellon,114841-00016-1,0,4380_7778208_11188802,4380_233 -4380_78123,293,4380_107910,Southgate SC,66372-00017-1,1,4380_7778208_1901114,4380_1711 -4380_78123,290,4380_107911,Southgate SC,66378-00015-1,1,4380_7778208_1901114,4380_1711 -4380_78123,294,4380_107912,Southgate SC,66374-00018-1,1,4380_7778208_1901114,4380_1711 -4380_78123,295,4380_107913,Southgate SC,66376-00019-1,1,4380_7778208_1901114,4380_1711 -4380_78123,296,4380_107914,Southgate SC,66382-00021-1,1,4380_7778208_1901114,4380_1712 -4380_78149,294,4380_10792,Clonmellon,114840-00018-1,0,4380_7778208_11188802,4380_233 -4380_78123,285,4380_107921,Southgate SC,66069-00009-1,1,4380_7778208_1901113,4380_1711 -4380_78123,286,4380_107922,Southgate SC,66061-00010-1,1,4380_7778208_1901113,4380_1711 -4380_78123,288,4380_107923,Southgate SC,66065-00011-1,1,4380_7778208_1901113,4380_1711 -4380_78123,287,4380_107924,Southgate SC,66063-00012-1,1,4380_7778208_1901113,4380_1711 -4380_78123,291,4380_107925,Southgate SC,66067-00013-1,1,4380_7778208_1901113,4380_1712 -4380_78123,289,4380_107926,Southgate SC,66059-00014-1,1,4380_7778208_1901113,4380_1711 -4380_78123,292,4380_107927,Southgate SC,66062-00016-1,1,4380_7778208_1901113,4380_1711 -4380_78123,293,4380_107928,Southgate SC,66066-00017-1,1,4380_7778208_1901113,4380_1711 -4380_78123,290,4380_107929,Southgate SC,66070-00015-1,1,4380_7778208_1901113,4380_1711 -4380_78149,293,4380_10793,Clonmellon,114838-00017-1,0,4380_7778208_11188802,4380_233 -4380_78123,294,4380_107930,Southgate SC,66064-00018-1,1,4380_7778208_1901113,4380_1711 -4380_78123,295,4380_107931,Southgate SC,66060-00019-1,1,4380_7778208_1901113,4380_1711 -4380_78123,296,4380_107932,Southgate SC,66068-00021-1,1,4380_7778208_1901113,4380_1712 -4380_78123,297,4380_107934,Southgate SC,65474-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78149,295,4380_10794,Clonmellon,114839-00019-1,0,4380_7778208_11188802,4380_233 -4380_78123,285,4380_107941,Southgate SC,65475-00009-1,1,4380_7778208_1901111,4380_1711 -4380_78123,286,4380_107942,Southgate SC,65483-00010-1,1,4380_7778208_1901111,4380_1711 -4380_78123,288,4380_107943,Southgate SC,65477-00011-1,1,4380_7778208_1901111,4380_1711 -4380_78123,287,4380_107944,Southgate SC,65479-00012-1,1,4380_7778208_1901111,4380_1711 -4380_78123,291,4380_107945,Southgate SC,65485-00013-1,1,4380_7778208_1901111,4380_1712 -4380_78123,289,4380_107946,Southgate SC,65481-00014-1,1,4380_7778208_1901111,4380_1711 -4380_78123,292,4380_107947,Southgate SC,65484-00016-1,1,4380_7778208_1901111,4380_1711 -4380_78123,293,4380_107948,Southgate SC,65478-00017-1,1,4380_7778208_1901111,4380_1711 -4380_78123,290,4380_107949,Southgate SC,65476-00015-1,1,4380_7778208_1901111,4380_1711 -4380_78123,294,4380_107950,Southgate SC,65480-00018-1,1,4380_7778208_1901111,4380_1711 -4380_78123,295,4380_107951,Southgate SC,65482-00019-1,1,4380_7778208_1901111,4380_1711 -4380_78123,296,4380_107952,Southgate SC,65486-00021-1,1,4380_7778208_1901111,4380_1712 -4380_78123,285,4380_107960,Southgate SC,66083-00009-1,1,4380_7778208_1901113,4380_1711 -4380_78123,286,4380_107961,Southgate SC,66089-00010-1,1,4380_7778208_1901113,4380_1711 -4380_78123,297,4380_107962,Southgate SC,65500-00008-1,1,4380_7778208_1901111,4380_1712 -4380_78123,288,4380_107963,Southgate SC,66093-00011-1,1,4380_7778208_1901113,4380_1711 -4380_78123,287,4380_107964,Southgate SC,66087-00012-1,1,4380_7778208_1901113,4380_1711 -4380_78123,291,4380_107965,Southgate SC,66091-00013-1,1,4380_7778208_1901113,4380_1713 -4380_78123,289,4380_107966,Southgate SC,66085-00014-1,1,4380_7778208_1901113,4380_1711 -4380_78123,292,4380_107967,Southgate SC,66090-00016-1,1,4380_7778208_1901113,4380_1711 -4380_78123,293,4380_107968,Southgate SC,66094-00017-1,1,4380_7778208_1901113,4380_1711 -4380_78123,290,4380_107969,Southgate SC,66084-00015-1,1,4380_7778208_1901113,4380_1711 -4380_78123,294,4380_107970,Southgate SC,66088-00018-1,1,4380_7778208_1901113,4380_1711 -4380_78123,295,4380_107971,Southgate SC,66086-00019-1,1,4380_7778208_1901113,4380_1711 -4380_78123,296,4380_107972,Southgate SC,66092-00021-1,1,4380_7778208_1901113,4380_1713 -4380_78123,285,4380_107980,Southgate SC,66419-00009-1,1,4380_7778208_1901114,4380_1711 -4380_78123,286,4380_107981,Southgate SC,66425-00010-1,1,4380_7778208_1901114,4380_1711 -4380_78123,297,4380_107982,Southgate SC,65514-00008-1,1,4380_7778208_1901111,4380_1712 -4380_78123,288,4380_107983,Southgate SC,66423-00011-1,1,4380_7778208_1901114,4380_1711 -4380_78123,287,4380_107984,Southgate SC,66429-00012-1,1,4380_7778208_1901114,4380_1711 -4380_78123,291,4380_107985,Southgate SC,66421-00013-1,1,4380_7778208_1901114,4380_1713 -4380_78123,289,4380_107986,Southgate SC,66427-00014-1,1,4380_7778208_1901114,4380_1711 -4380_78123,292,4380_107987,Southgate SC,66426-00016-1,1,4380_7778208_1901114,4380_1711 -4380_78123,293,4380_107988,Southgate SC,66424-00017-1,1,4380_7778208_1901114,4380_1711 -4380_78123,290,4380_107989,Southgate SC,66420-00015-1,1,4380_7778208_1901114,4380_1711 -4380_78123,294,4380_107990,Southgate SC,66430-00018-1,1,4380_7778208_1901114,4380_1711 -4380_78123,295,4380_107991,Southgate SC,66428-00019-1,1,4380_7778208_1901114,4380_1711 -4380_78123,296,4380_107992,Southgate SC,66422-00021-1,1,4380_7778208_1901114,4380_1713 -4380_78149,285,4380_10800,Drop Off,8970-00009-1,1,4380_7778208_11188801,4380_237 -4380_78123,285,4380_108000,Southgate SC,65532-00009-1,1,4380_7778208_1901111,4380_1711 -4380_78123,286,4380_108001,Southgate SC,65535-00010-1,1,4380_7778208_1901111,4380_1711 -4380_78123,297,4380_108002,Southgate SC,65534-00008-1,1,4380_7778208_1901111,4380_1712 -4380_78123,288,4380_108003,Southgate SC,65530-00011-1,1,4380_7778208_1901111,4380_1711 -4380_78123,287,4380_108004,Southgate SC,65528-00012-1,1,4380_7778208_1901111,4380_1711 -4380_78123,291,4380_108005,Southgate SC,65537-00013-1,1,4380_7778208_1901111,4380_1713 -4380_78123,289,4380_108006,Southgate SC,65539-00014-1,1,4380_7778208_1901111,4380_1711 -4380_78123,292,4380_108007,Southgate SC,65536-00016-1,1,4380_7778208_1901111,4380_1711 -4380_78123,293,4380_108008,Southgate SC,65531-00017-1,1,4380_7778208_1901111,4380_1711 -4380_78123,290,4380_108009,Southgate SC,65533-00015-1,1,4380_7778208_1901111,4380_1711 -4380_78149,288,4380_10801,Drop Off,8974-00011-1,1,4380_7778208_11188801,4380_237 -4380_78123,294,4380_108010,Southgate SC,65529-00018-1,1,4380_7778208_1901111,4380_1711 -4380_78123,295,4380_108011,Southgate SC,65540-00019-1,1,4380_7778208_1901111,4380_1711 -4380_78123,296,4380_108012,Southgate SC,65538-00021-1,1,4380_7778208_1901111,4380_1713 -4380_78123,297,4380_108014,Southgate SC,65554-00008-1,1,4380_7778208_1901111,4380_1711 -4380_78149,286,4380_10802,Drop Off,8972-00010-1,1,4380_7778208_11188801,4380_237 -4380_78120,285,4380_108021,Johnstown,55834-00009-1,0,4380_7778208_1110112,4380_1714 -4380_78120,286,4380_108022,Johnstown,55830-00010-1,0,4380_7778208_1110112,4380_1714 -4380_78120,288,4380_108023,Johnstown,55828-00011-1,0,4380_7778208_1110112,4380_1714 -4380_78120,287,4380_108024,Johnstown,55832-00012-1,0,4380_7778208_1110112,4380_1714 -4380_78120,289,4380_108025,Johnstown,55826-00014-1,0,4380_7778208_1110112,4380_1714 -4380_78120,290,4380_108026,Johnstown,55835-00015-1,0,4380_7778208_1110112,4380_1714 -4380_78120,291,4380_108027,Johnstown,55751-00013-1,0,4380_7778208_1110111,4380_1714 -4380_78120,292,4380_108028,Johnstown,55831-00016-1,0,4380_7778208_1110112,4380_1714 -4380_78120,293,4380_108029,Johnstown,55829-00017-1,0,4380_7778208_1110112,4380_1714 -4380_78149,289,4380_10803,Drop Off,8968-00014-1,1,4380_7778208_11188801,4380_237 -4380_78120,294,4380_108030,Johnstown,55833-00018-1,0,4380_7778208_1110112,4380_1714 -4380_78120,295,4380_108031,Johnstown,55827-00019-1,0,4380_7778208_1110112,4380_1714 -4380_78120,296,4380_108032,Johnstown,55752-00021-1,0,4380_7778208_1110111,4380_1714 -4380_78120,285,4380_108039,Johnstown,56530-00009-1,0,4380_7778208_1110114,4380_1714 -4380_78149,287,4380_10804,Drop Off,8976-00012-1,1,4380_7778208_11188801,4380_237 -4380_78120,286,4380_108040,Johnstown,56538-00010-1,0,4380_7778208_1110114,4380_1714 -4380_78120,288,4380_108041,Johnstown,56532-00011-1,0,4380_7778208_1110114,4380_1714 -4380_78120,287,4380_108042,Johnstown,56534-00012-1,0,4380_7778208_1110114,4380_1714 -4380_78120,289,4380_108043,Johnstown,56536-00014-1,0,4380_7778208_1110114,4380_1714 -4380_78120,290,4380_108044,Johnstown,56531-00015-1,0,4380_7778208_1110114,4380_1714 -4380_78120,291,4380_108045,Johnstown,56183-00013-1,0,4380_7778208_1110113,4380_1714 -4380_78120,292,4380_108046,Johnstown,56539-00016-1,0,4380_7778208_1110114,4380_1714 -4380_78120,293,4380_108047,Johnstown,56533-00017-1,0,4380_7778208_1110114,4380_1714 -4380_78120,294,4380_108048,Johnstown,56535-00018-1,0,4380_7778208_1110114,4380_1714 -4380_78120,295,4380_108049,Johnstown,56537-00019-1,0,4380_7778208_1110114,4380_1714 -4380_78149,290,4380_10805,Drop Off,114824-00015-1,1,4380_7778208_11188801,4380_237 -4380_78120,296,4380_108050,Johnstown,56184-00021-1,0,4380_7778208_1110113,4380_1714 -4380_78120,285,4380_108057,Johnstown,57186-00009-1,0,4380_7778208_1110116,4380_1714 -4380_78120,286,4380_108058,Johnstown,57190-00010-1,0,4380_7778208_1110116,4380_1714 -4380_78120,288,4380_108059,Johnstown,57192-00011-1,0,4380_7778208_1110116,4380_1714 -4380_78149,292,4380_10806,Drop Off,114825-00016-1,1,4380_7778208_11188801,4380_237 -4380_78120,287,4380_108060,Johnstown,57194-00012-1,0,4380_7778208_1110116,4380_1714 -4380_78120,289,4380_108061,Johnstown,57188-00014-1,0,4380_7778208_1110116,4380_1714 -4380_78120,290,4380_108062,Johnstown,57187-00015-1,0,4380_7778208_1110116,4380_1714 -4380_78120,291,4380_108063,Johnstown,56874-00013-1,0,4380_7778208_1110115,4380_1715 -4380_78120,292,4380_108064,Johnstown,57191-00016-1,0,4380_7778208_1110116,4380_1714 -4380_78120,293,4380_108065,Johnstown,57193-00017-1,0,4380_7778208_1110116,4380_1714 -4380_78120,294,4380_108066,Johnstown,57195-00018-1,0,4380_7778208_1110116,4380_1714 -4380_78120,295,4380_108067,Johnstown,57189-00019-1,0,4380_7778208_1110116,4380_1714 -4380_78120,296,4380_108068,Johnstown,56875-00021-1,0,4380_7778208_1110115,4380_1715 -4380_78149,294,4380_10807,Drop Off,114826-00018-1,1,4380_7778208_11188801,4380_237 -4380_78120,285,4380_108075,Johnstown,56882-00009-1,0,4380_7778208_1110115,4380_1714 -4380_78120,286,4380_108076,Johnstown,56884-00010-1,0,4380_7778208_1110115,4380_1714 -4380_78120,288,4380_108077,Johnstown,56878-00011-1,0,4380_7778208_1110115,4380_1714 -4380_78120,287,4380_108078,Johnstown,56876-00012-1,0,4380_7778208_1110115,4380_1714 -4380_78120,289,4380_108079,Johnstown,56880-00014-1,0,4380_7778208_1110115,4380_1714 -4380_78149,293,4380_10808,Drop Off,114823-00017-1,1,4380_7778208_11188801,4380_237 -4380_78120,290,4380_108080,Johnstown,56883-00015-1,0,4380_7778208_1110115,4380_1714 -4380_78120,291,4380_108081,Johnstown,56552-00013-1,0,4380_7778208_1110114,4380_1715 -4380_78120,292,4380_108082,Johnstown,56885-00016-1,0,4380_7778208_1110115,4380_1714 -4380_78120,293,4380_108083,Johnstown,56879-00017-1,0,4380_7778208_1110115,4380_1714 -4380_78120,294,4380_108084,Johnstown,56877-00018-1,0,4380_7778208_1110115,4380_1714 -4380_78120,295,4380_108085,Johnstown,56881-00019-1,0,4380_7778208_1110115,4380_1714 -4380_78120,296,4380_108086,Johnstown,56553-00021-1,0,4380_7778208_1110114,4380_1715 -4380_78149,295,4380_10809,Drop Off,114822-00019-1,1,4380_7778208_11188801,4380_237 -4380_78120,285,4380_108094,Johnstown,56218-00009-1,0,4380_7778208_1110113,4380_1714 -4380_78120,286,4380_108095,Johnstown,56216-00010-1,0,4380_7778208_1110113,4380_1714 -4380_78120,297,4380_108096,Johnstown,55873-00008-1,0,4380_7778208_1110112,4380_1715 -4380_78120,288,4380_108097,Johnstown,56210-00011-1,0,4380_7778208_1110113,4380_1714 -4380_78120,287,4380_108098,Johnstown,56214-00012-1,0,4380_7778208_1110113,4380_1714 -4380_78120,289,4380_108099,Johnstown,56212-00014-1,0,4380_7778208_1110113,4380_1714 -4380_78120,290,4380_108100,Johnstown,56219-00015-1,0,4380_7778208_1110113,4380_1714 -4380_78120,291,4380_108101,Johnstown,55867-00013-1,0,4380_7778208_1110112,4380_1715 -4380_78120,292,4380_108102,Johnstown,56217-00016-1,0,4380_7778208_1110113,4380_1714 -4380_78120,293,4380_108103,Johnstown,56211-00017-1,0,4380_7778208_1110113,4380_1714 -4380_78120,294,4380_108104,Johnstown,56215-00018-1,0,4380_7778208_1110113,4380_1714 -4380_78120,295,4380_108105,Johnstown,56213-00019-1,0,4380_7778208_1110113,4380_1714 -4380_78120,296,4380_108106,Johnstown,55868-00021-1,0,4380_7778208_1110112,4380_1715 -4380_78120,285,4380_108113,Johnstown,55876-00009-1,0,4380_7778208_1110112,4380_1714 -4380_78120,286,4380_108114,Johnstown,55882-00010-1,0,4380_7778208_1110112,4380_1714 -4380_78120,288,4380_108115,Johnstown,55884-00011-1,0,4380_7778208_1110112,4380_1714 -4380_78120,287,4380_108116,Johnstown,55880-00012-1,0,4380_7778208_1110112,4380_1714 -4380_78120,289,4380_108117,Johnstown,55878-00014-1,0,4380_7778208_1110112,4380_1714 -4380_78120,290,4380_108118,Johnstown,55877-00015-1,0,4380_7778208_1110112,4380_1714 -4380_78120,291,4380_108119,Johnstown,55761-00013-1,0,4380_7778208_1110111,4380_1714 -4380_78120,292,4380_108120,Johnstown,55883-00016-1,0,4380_7778208_1110112,4380_1714 -4380_78120,293,4380_108121,Johnstown,55885-00017-1,0,4380_7778208_1110112,4380_1714 -4380_78120,294,4380_108122,Johnstown,55881-00018-1,0,4380_7778208_1110112,4380_1714 -4380_78120,295,4380_108123,Johnstown,55879-00019-1,0,4380_7778208_1110112,4380_1714 -4380_78120,296,4380_108124,Johnstown,55762-00021-1,0,4380_7778208_1110111,4380_1714 -4380_78120,285,4380_108132,Johnstown,56582-00009-1,0,4380_7778208_1110114,4380_1714 -4380_78120,286,4380_108133,Johnstown,56584-00010-1,0,4380_7778208_1110114,4380_1714 -4380_78120,297,4380_108134,Johnstown,56233-00008-1,0,4380_7778208_1110113,4380_1715 -4380_78120,288,4380_108135,Johnstown,56586-00011-1,0,4380_7778208_1110114,4380_1714 -4380_78120,287,4380_108136,Johnstown,56580-00012-1,0,4380_7778208_1110114,4380_1714 -4380_78120,289,4380_108137,Johnstown,56578-00014-1,0,4380_7778208_1110114,4380_1714 -4380_78120,290,4380_108138,Johnstown,56583-00015-1,0,4380_7778208_1110114,4380_1714 -4380_78120,291,4380_108139,Johnstown,56234-00013-1,0,4380_7778208_1110113,4380_1714 -4380_78120,292,4380_108140,Johnstown,56585-00016-1,0,4380_7778208_1110114,4380_1714 -4380_78120,293,4380_108141,Johnstown,56587-00017-1,0,4380_7778208_1110114,4380_1714 -4380_78120,294,4380_108142,Johnstown,56581-00018-1,0,4380_7778208_1110114,4380_1714 -4380_78120,295,4380_108143,Johnstown,56579-00019-1,0,4380_7778208_1110114,4380_1714 -4380_78120,296,4380_108144,Johnstown,56235-00021-1,0,4380_7778208_1110113,4380_1714 -4380_78149,285,4380_10815,Drop Off,7881-00009-1,1,4380_7778208_1110110,4380_236 -4380_78120,285,4380_108151,Johnstown,57228-00009-1,0,4380_7778208_1110116,4380_1714 -4380_78120,286,4380_108152,Johnstown,57232-00010-1,0,4380_7778208_1110116,4380_1714 -4380_78120,288,4380_108153,Johnstown,57226-00011-1,0,4380_7778208_1110116,4380_1714 -4380_78120,287,4380_108154,Johnstown,57234-00012-1,0,4380_7778208_1110116,4380_1714 -4380_78120,289,4380_108155,Johnstown,57230-00014-1,0,4380_7778208_1110116,4380_1714 -4380_78120,290,4380_108156,Johnstown,57229-00015-1,0,4380_7778208_1110116,4380_1714 -4380_78120,291,4380_108157,Johnstown,56922-00013-1,0,4380_7778208_1110115,4380_1714 -4380_78120,292,4380_108158,Johnstown,57233-00016-1,0,4380_7778208_1110116,4380_1714 -4380_78120,293,4380_108159,Johnstown,57227-00017-1,0,4380_7778208_1110116,4380_1714 -4380_78149,286,4380_10816,Drop Off,7889-00010-1,1,4380_7778208_1110110,4380_236 -4380_78120,294,4380_108160,Johnstown,57235-00018-1,0,4380_7778208_1110116,4380_1714 -4380_78120,295,4380_108161,Johnstown,57231-00019-1,0,4380_7778208_1110116,4380_1714 -4380_78120,296,4380_108162,Johnstown,56923-00021-1,0,4380_7778208_1110115,4380_1714 -4380_78149,288,4380_10817,Drop Off,7897-00011-1,1,4380_7778208_1110110,4380_236 -4380_78120,285,4380_108170,Johnstown,56928-00009-1,0,4380_7778208_1110115,4380_1714 -4380_78120,286,4380_108171,Johnstown,56930-00010-1,0,4380_7778208_1110115,4380_1714 -4380_78120,297,4380_108172,Johnstown,55768-00008-1,0,4380_7778208_1110111,4380_1714 -4380_78120,288,4380_108173,Johnstown,56926-00011-1,0,4380_7778208_1110115,4380_1714 -4380_78120,287,4380_108174,Johnstown,56932-00012-1,0,4380_7778208_1110115,4380_1714 -4380_78120,289,4380_108175,Johnstown,56924-00014-1,0,4380_7778208_1110115,4380_1714 -4380_78120,290,4380_108176,Johnstown,56929-00015-1,0,4380_7778208_1110115,4380_1714 -4380_78120,291,4380_108177,Johnstown,56600-00013-1,0,4380_7778208_1110114,4380_1714 -4380_78120,292,4380_108178,Johnstown,56931-00016-1,0,4380_7778208_1110115,4380_1714 -4380_78120,293,4380_108179,Johnstown,56927-00017-1,0,4380_7778208_1110115,4380_1714 -4380_78149,287,4380_10818,Drop Off,7905-00012-1,1,4380_7778208_1110110,4380_236 -4380_78120,294,4380_108180,Johnstown,56933-00018-1,0,4380_7778208_1110115,4380_1714 -4380_78120,295,4380_108181,Johnstown,56925-00019-1,0,4380_7778208_1110115,4380_1714 -4380_78120,296,4380_108182,Johnstown,56601-00021-1,0,4380_7778208_1110114,4380_1714 -4380_78120,285,4380_108189,Johnstown,56270-00009-1,0,4380_7778208_1110113,4380_1714 -4380_78149,289,4380_10819,Drop Off,7873-00014-1,1,4380_7778208_1110110,4380_236 -4380_78120,286,4380_108190,Johnstown,56265-00010-1,0,4380_7778208_1110113,4380_1714 -4380_78120,288,4380_108191,Johnstown,56261-00011-1,0,4380_7778208_1110113,4380_1714 -4380_78120,287,4380_108192,Johnstown,56267-00012-1,0,4380_7778208_1110113,4380_1714 -4380_78120,289,4380_108193,Johnstown,56263-00014-1,0,4380_7778208_1110113,4380_1714 -4380_78120,290,4380_108194,Johnstown,56271-00015-1,0,4380_7778208_1110113,4380_1714 -4380_78120,291,4380_108195,Johnstown,55917-00013-1,0,4380_7778208_1110112,4380_1714 -4380_78120,292,4380_108196,Johnstown,56266-00016-1,0,4380_7778208_1110113,4380_1714 -4380_78120,293,4380_108197,Johnstown,56262-00017-1,0,4380_7778208_1110113,4380_1714 -4380_78120,294,4380_108198,Johnstown,56268-00018-1,0,4380_7778208_1110113,4380_1714 -4380_78120,295,4380_108199,Johnstown,56264-00019-1,0,4380_7778208_1110113,4380_1714 -4380_78149,290,4380_10820,Drop Off,55743-00015-1,1,4380_7778208_1110110,4380_236 -4380_78120,296,4380_108200,Johnstown,55918-00021-1,0,4380_7778208_1110112,4380_1714 -4380_78120,285,4380_108208,Johnstown,55934-00009-1,0,4380_7778208_1110112,4380_1714 -4380_78120,286,4380_108209,Johnstown,55936-00010-1,0,4380_7778208_1110112,4380_1714 -4380_78149,292,4380_10821,Drop Off,55741-00016-1,1,4380_7778208_1110110,4380_236 -4380_78120,297,4380_108210,Johnstown,55929-00008-1,0,4380_7778208_1110112,4380_1714 -4380_78120,288,4380_108211,Johnstown,55932-00011-1,0,4380_7778208_1110112,4380_1714 -4380_78120,287,4380_108212,Johnstown,55927-00012-1,0,4380_7778208_1110112,4380_1714 -4380_78120,289,4380_108213,Johnstown,55930-00014-1,0,4380_7778208_1110112,4380_1714 -4380_78120,290,4380_108214,Johnstown,55935-00015-1,0,4380_7778208_1110112,4380_1714 -4380_78120,291,4380_108215,Johnstown,55772-00013-1,0,4380_7778208_1110111,4380_1714 -4380_78120,292,4380_108216,Johnstown,55937-00016-1,0,4380_7778208_1110112,4380_1714 -4380_78120,293,4380_108217,Johnstown,55933-00017-1,0,4380_7778208_1110112,4380_1714 -4380_78120,294,4380_108218,Johnstown,55928-00018-1,0,4380_7778208_1110112,4380_1714 -4380_78120,295,4380_108219,Johnstown,55931-00019-1,0,4380_7778208_1110112,4380_1714 -4380_78149,293,4380_10822,Drop Off,55744-00017-1,1,4380_7778208_1110110,4380_236 -4380_78120,296,4380_108220,Johnstown,55773-00021-1,0,4380_7778208_1110111,4380_1714 -4380_78120,285,4380_108227,Johnstown,56632-00009-1,0,4380_7778208_1110114,4380_1714 -4380_78120,286,4380_108228,Johnstown,56626-00010-1,0,4380_7778208_1110114,4380_1714 -4380_78120,288,4380_108229,Johnstown,56630-00011-1,0,4380_7778208_1110114,4380_1714 -4380_78149,294,4380_10823,Drop Off,55745-00018-1,1,4380_7778208_1110110,4380_236 -4380_78120,287,4380_108230,Johnstown,56634-00012-1,0,4380_7778208_1110114,4380_1714 -4380_78120,289,4380_108231,Johnstown,56628-00014-1,0,4380_7778208_1110114,4380_1714 -4380_78120,290,4380_108232,Johnstown,56633-00015-1,0,4380_7778208_1110114,4380_1714 -4380_78120,291,4380_108233,Johnstown,56285-00013-1,0,4380_7778208_1110113,4380_1714 -4380_78120,292,4380_108234,Johnstown,56627-00016-1,0,4380_7778208_1110114,4380_1714 -4380_78120,293,4380_108235,Johnstown,56631-00017-1,0,4380_7778208_1110114,4380_1714 -4380_78120,294,4380_108236,Johnstown,56635-00018-1,0,4380_7778208_1110114,4380_1714 -4380_78120,295,4380_108237,Johnstown,56629-00019-1,0,4380_7778208_1110114,4380_1714 -4380_78120,296,4380_108238,Johnstown,56286-00021-1,0,4380_7778208_1110113,4380_1714 -4380_78149,295,4380_10824,Drop Off,55742-00019-1,1,4380_7778208_1110110,4380_236 -4380_78120,285,4380_108246,Johnstown,57270-00009-1,0,4380_7778208_1110116,4380_1714 -4380_78120,286,4380_108247,Johnstown,57274-00010-1,0,4380_7778208_1110116,4380_1714 -4380_78120,297,4380_108248,Johnstown,56297-00008-1,0,4380_7778208_1110113,4380_1714 -4380_78120,288,4380_108249,Johnstown,57268-00011-1,0,4380_7778208_1110116,4380_1714 -4380_78120,287,4380_108250,Johnstown,57272-00012-1,0,4380_7778208_1110116,4380_1714 -4380_78120,289,4380_108251,Johnstown,57266-00014-1,0,4380_7778208_1110116,4380_1714 -4380_78120,290,4380_108252,Johnstown,57271-00015-1,0,4380_7778208_1110116,4380_1714 -4380_78120,291,4380_108253,Johnstown,56970-00013-1,0,4380_7778208_1110115,4380_1714 -4380_78120,292,4380_108254,Johnstown,57275-00016-1,0,4380_7778208_1110116,4380_1714 -4380_78120,293,4380_108255,Johnstown,57269-00017-1,0,4380_7778208_1110116,4380_1714 -4380_78120,294,4380_108256,Johnstown,57273-00018-1,0,4380_7778208_1110116,4380_1714 -4380_78120,295,4380_108257,Johnstown,57267-00019-1,0,4380_7778208_1110116,4380_1714 -4380_78120,296,4380_108258,Johnstown,56971-00021-1,0,4380_7778208_1110115,4380_1714 -4380_78120,285,4380_108265,Johnstown,56980-00009-1,0,4380_7778208_1110115,4380_1714 -4380_78120,286,4380_108266,Johnstown,56976-00010-1,0,4380_7778208_1110115,4380_1714 -4380_78120,288,4380_108267,Johnstown,56978-00011-1,0,4380_7778208_1110115,4380_1714 -4380_78120,287,4380_108268,Johnstown,56972-00012-1,0,4380_7778208_1110115,4380_1714 -4380_78120,289,4380_108269,Johnstown,56974-00014-1,0,4380_7778208_1110115,4380_1714 -4380_78120,290,4380_108270,Johnstown,56981-00015-1,0,4380_7778208_1110115,4380_1714 -4380_78120,291,4380_108271,Johnstown,56648-00013-1,0,4380_7778208_1110114,4380_1714 -4380_78120,292,4380_108272,Johnstown,56977-00016-1,0,4380_7778208_1110115,4380_1714 -4380_78120,293,4380_108273,Johnstown,56979-00017-1,0,4380_7778208_1110115,4380_1714 -4380_78120,294,4380_108274,Johnstown,56973-00018-1,0,4380_7778208_1110115,4380_1714 -4380_78120,295,4380_108275,Johnstown,56975-00019-1,0,4380_7778208_1110115,4380_1714 -4380_78120,296,4380_108276,Johnstown,56649-00021-1,0,4380_7778208_1110114,4380_1714 -4380_78120,285,4380_108284,Johnstown,56317-00009-1,0,4380_7778208_1110113,4380_1714 -4380_78120,286,4380_108285,Johnstown,56319-00010-1,0,4380_7778208_1110113,4380_1714 -4380_78120,297,4380_108286,Johnstown,55782-00008-1,0,4380_7778208_1110111,4380_1714 -4380_78120,288,4380_108287,Johnstown,56313-00011-1,0,4380_7778208_1110113,4380_1714 -4380_78120,287,4380_108288,Johnstown,56321-00012-1,0,4380_7778208_1110113,4380_1714 -4380_78120,289,4380_108289,Johnstown,56315-00014-1,0,4380_7778208_1110113,4380_1714 -4380_78120,290,4380_108290,Johnstown,56318-00015-1,0,4380_7778208_1110113,4380_1714 -4380_78120,291,4380_108291,Johnstown,55976-00013-1,0,4380_7778208_1110112,4380_1714 -4380_78120,292,4380_108292,Johnstown,56320-00016-1,0,4380_7778208_1110113,4380_1714 -4380_78120,293,4380_108293,Johnstown,56314-00017-1,0,4380_7778208_1110113,4380_1714 -4380_78120,294,4380_108294,Johnstown,56322-00018-1,0,4380_7778208_1110113,4380_1714 -4380_78120,295,4380_108295,Johnstown,56316-00019-1,0,4380_7778208_1110113,4380_1714 -4380_78120,296,4380_108296,Johnstown,55977-00021-1,0,4380_7778208_1110112,4380_1714 -4380_78113,285,4380_1083,Dublin via Airport,49967-00009-1,1,4380_7778208_1000906,4380_18 -4380_78149,285,4380_10830,Drop Off,8980-00009-1,1,4380_7778208_11188802,4380_237 -4380_78120,285,4380_108303,Johnstown,55985-00009-1,0,4380_7778208_1110112,4380_1714 -4380_78120,286,4380_108304,Johnstown,55981-00010-1,0,4380_7778208_1110112,4380_1714 -4380_78120,288,4380_108305,Johnstown,55979-00011-1,0,4380_7778208_1110112,4380_1714 -4380_78120,287,4380_108306,Johnstown,55983-00012-1,0,4380_7778208_1110112,4380_1714 -4380_78120,289,4380_108307,Johnstown,55987-00014-1,0,4380_7778208_1110112,4380_1714 -4380_78120,290,4380_108308,Johnstown,55986-00015-1,0,4380_7778208_1110112,4380_1714 -4380_78120,291,4380_108309,Johnstown,55783-00013-1,0,4380_7778208_1110111,4380_1714 -4380_78149,288,4380_10831,Drop Off,8984-00011-1,1,4380_7778208_11188802,4380_237 -4380_78120,292,4380_108310,Johnstown,55982-00016-1,0,4380_7778208_1110112,4380_1714 -4380_78120,293,4380_108311,Johnstown,55980-00017-1,0,4380_7778208_1110112,4380_1714 -4380_78120,294,4380_108312,Johnstown,55984-00018-1,0,4380_7778208_1110112,4380_1714 -4380_78120,295,4380_108313,Johnstown,55988-00019-1,0,4380_7778208_1110112,4380_1714 -4380_78120,296,4380_108314,Johnstown,55784-00021-1,0,4380_7778208_1110111,4380_1714 -4380_78149,286,4380_10832,Drop Off,8982-00010-1,1,4380_7778208_11188802,4380_237 -4380_78120,285,4380_108322,Johnstown,56678-00009-1,0,4380_7778208_1110114,4380_1714 -4380_78120,286,4380_108323,Johnstown,56676-00010-1,0,4380_7778208_1110114,4380_1714 -4380_78120,297,4380_108324,Johnstown,55991-00008-1,0,4380_7778208_1110112,4380_1714 -4380_78120,288,4380_108325,Johnstown,56682-00011-1,0,4380_7778208_1110114,4380_1714 -4380_78120,287,4380_108326,Johnstown,56674-00012-1,0,4380_7778208_1110114,4380_1714 -4380_78120,289,4380_108327,Johnstown,56680-00014-1,0,4380_7778208_1110114,4380_1714 -4380_78120,290,4380_108328,Johnstown,56679-00015-1,0,4380_7778208_1110114,4380_1714 -4380_78120,291,4380_108329,Johnstown,56336-00013-1,0,4380_7778208_1110113,4380_1714 -4380_78149,289,4380_10833,Drop Off,8978-00014-1,1,4380_7778208_11188802,4380_237 -4380_78120,292,4380_108330,Johnstown,56677-00016-1,0,4380_7778208_1110114,4380_1714 -4380_78120,293,4380_108331,Johnstown,56683-00017-1,0,4380_7778208_1110114,4380_1714 -4380_78120,294,4380_108332,Johnstown,56675-00018-1,0,4380_7778208_1110114,4380_1714 -4380_78120,295,4380_108333,Johnstown,56681-00019-1,0,4380_7778208_1110114,4380_1714 -4380_78120,296,4380_108334,Johnstown,56337-00021-1,0,4380_7778208_1110113,4380_1714 -4380_78149,287,4380_10834,Drop Off,8986-00012-1,1,4380_7778208_11188802,4380_237 -4380_78120,285,4380_108341,Johnstown,57308-00009-1,0,4380_7778208_1110116,4380_1714 -4380_78120,286,4380_108342,Johnstown,57306-00010-1,0,4380_7778208_1110116,4380_1714 -4380_78120,288,4380_108343,Johnstown,57310-00011-1,0,4380_7778208_1110116,4380_1714 -4380_78120,287,4380_108344,Johnstown,57312-00012-1,0,4380_7778208_1110116,4380_1714 -4380_78120,289,4380_108345,Johnstown,57314-00014-1,0,4380_7778208_1110116,4380_1714 -4380_78120,290,4380_108346,Johnstown,57309-00015-1,0,4380_7778208_1110116,4380_1714 -4380_78120,291,4380_108347,Johnstown,57018-00013-1,0,4380_7778208_1110115,4380_1714 -4380_78120,292,4380_108348,Johnstown,57307-00016-1,0,4380_7778208_1110116,4380_1714 -4380_78120,293,4380_108349,Johnstown,57311-00017-1,0,4380_7778208_1110116,4380_1714 -4380_78149,290,4380_10835,Drop Off,114834-00015-1,1,4380_7778208_11188802,4380_237 -4380_78120,294,4380_108350,Johnstown,57313-00018-1,0,4380_7778208_1110116,4380_1714 -4380_78120,295,4380_108351,Johnstown,57315-00019-1,0,4380_7778208_1110116,4380_1714 -4380_78120,296,4380_108352,Johnstown,57019-00021-1,0,4380_7778208_1110115,4380_1714 -4380_78149,292,4380_10836,Drop Off,114836-00016-1,1,4380_7778208_11188802,4380_237 -4380_78120,285,4380_108360,Johnstown,57028-00009-1,0,4380_7778208_1110115,4380_1714 -4380_78120,286,4380_108361,Johnstown,57022-00010-1,0,4380_7778208_1110115,4380_1714 -4380_78120,297,4380_108362,Johnstown,56353-00008-1,0,4380_7778208_1110113,4380_1714 -4380_78120,288,4380_108363,Johnstown,57026-00011-1,0,4380_7778208_1110115,4380_1714 -4380_78120,287,4380_108364,Johnstown,57024-00012-1,0,4380_7778208_1110115,4380_1714 -4380_78120,289,4380_108365,Johnstown,57020-00014-1,0,4380_7778208_1110115,4380_1714 -4380_78120,290,4380_108366,Johnstown,57029-00015-1,0,4380_7778208_1110115,4380_1714 -4380_78120,291,4380_108367,Johnstown,56696-00013-1,0,4380_7778208_1110114,4380_1714 -4380_78120,292,4380_108368,Johnstown,57023-00016-1,0,4380_7778208_1110115,4380_1714 -4380_78120,293,4380_108369,Johnstown,57027-00017-1,0,4380_7778208_1110115,4380_1714 -4380_78149,294,4380_10837,Drop Off,114833-00018-1,1,4380_7778208_11188802,4380_237 -4380_78120,294,4380_108370,Johnstown,57025-00018-1,0,4380_7778208_1110115,4380_1714 -4380_78120,295,4380_108371,Johnstown,57021-00019-1,0,4380_7778208_1110115,4380_1714 -4380_78120,296,4380_108372,Johnstown,56697-00021-1,0,4380_7778208_1110114,4380_1714 -4380_78120,285,4380_108379,Johnstown,56364-00009-1,0,4380_7778208_1110113,4380_1714 -4380_78149,293,4380_10838,Drop Off,114835-00017-1,1,4380_7778208_11188802,4380_237 -4380_78120,286,4380_108380,Johnstown,56372-00010-1,0,4380_7778208_1110113,4380_1714 -4380_78120,288,4380_108381,Johnstown,56370-00011-1,0,4380_7778208_1110113,4380_1714 -4380_78120,287,4380_108382,Johnstown,56366-00012-1,0,4380_7778208_1110113,4380_1714 -4380_78120,289,4380_108383,Johnstown,56368-00014-1,0,4380_7778208_1110113,4380_1714 -4380_78120,290,4380_108384,Johnstown,56365-00015-1,0,4380_7778208_1110113,4380_1714 -4380_78120,291,4380_108385,Johnstown,56019-00013-1,0,4380_7778208_1110112,4380_1714 -4380_78120,292,4380_108386,Johnstown,56373-00016-1,0,4380_7778208_1110113,4380_1714 -4380_78120,293,4380_108387,Johnstown,56371-00017-1,0,4380_7778208_1110113,4380_1714 -4380_78120,294,4380_108388,Johnstown,56367-00018-1,0,4380_7778208_1110113,4380_1714 -4380_78120,295,4380_108389,Johnstown,56369-00019-1,0,4380_7778208_1110113,4380_1714 -4380_78149,295,4380_10839,Drop Off,114832-00019-1,1,4380_7778208_11188802,4380_237 -4380_78120,296,4380_108390,Johnstown,56020-00021-1,0,4380_7778208_1110112,4380_1714 -4380_78120,285,4380_108398,Johnstown,56030-00009-1,0,4380_7778208_1110112,4380_1714 -4380_78120,286,4380_108399,Johnstown,56032-00010-1,0,4380_7778208_1110112,4380_1714 -4380_78113,286,4380_1084,Dublin via Airport,49965-00010-1,1,4380_7778208_1000906,4380_18 -4380_78120,297,4380_108400,Johnstown,55796-00008-1,0,4380_7778208_1110111,4380_1714 -4380_78120,288,4380_108401,Johnstown,56034-00011-1,0,4380_7778208_1110112,4380_1714 -4380_78120,287,4380_108402,Johnstown,56038-00012-1,0,4380_7778208_1110112,4380_1714 -4380_78120,289,4380_108403,Johnstown,56036-00014-1,0,4380_7778208_1110112,4380_1714 -4380_78120,290,4380_108404,Johnstown,56031-00015-1,0,4380_7778208_1110112,4380_1714 -4380_78120,291,4380_108405,Johnstown,55794-00013-1,0,4380_7778208_1110111,4380_1714 -4380_78120,292,4380_108406,Johnstown,56033-00016-1,0,4380_7778208_1110112,4380_1714 -4380_78120,293,4380_108407,Johnstown,56035-00017-1,0,4380_7778208_1110112,4380_1714 -4380_78120,294,4380_108408,Johnstown,56039-00018-1,0,4380_7778208_1110112,4380_1714 -4380_78120,295,4380_108409,Johnstown,56037-00019-1,0,4380_7778208_1110112,4380_1714 -4380_78120,296,4380_108410,Johnstown,55795-00021-1,0,4380_7778208_1110111,4380_1714 -4380_78120,285,4380_108417,Johnstown,56724-00009-1,0,4380_7778208_1110114,4380_1714 -4380_78120,286,4380_108418,Johnstown,56728-00010-1,0,4380_7778208_1110114,4380_1714 -4380_78120,288,4380_108419,Johnstown,56726-00011-1,0,4380_7778208_1110114,4380_1714 -4380_78120,287,4380_108420,Johnstown,56730-00012-1,0,4380_7778208_1110114,4380_1714 -4380_78120,289,4380_108421,Johnstown,56722-00014-1,0,4380_7778208_1110114,4380_1714 -4380_78120,290,4380_108422,Johnstown,56725-00015-1,0,4380_7778208_1110114,4380_1714 -4380_78120,291,4380_108423,Johnstown,56388-00013-1,0,4380_7778208_1110113,4380_1714 -4380_78120,292,4380_108424,Johnstown,56729-00016-1,0,4380_7778208_1110114,4380_1714 -4380_78120,293,4380_108425,Johnstown,56727-00017-1,0,4380_7778208_1110114,4380_1714 -4380_78120,294,4380_108426,Johnstown,56731-00018-1,0,4380_7778208_1110114,4380_1714 -4380_78120,295,4380_108427,Johnstown,56723-00019-1,0,4380_7778208_1110114,4380_1714 -4380_78120,296,4380_108428,Johnstown,56389-00021-1,0,4380_7778208_1110113,4380_1714 -4380_78120,285,4380_108436,Johnstown,57350-00009-1,0,4380_7778208_1110116,4380_1714 -4380_78120,286,4380_108437,Johnstown,57348-00010-1,0,4380_7778208_1110116,4380_1714 -4380_78120,297,4380_108438,Johnstown,56055-00008-1,0,4380_7778208_1110112,4380_1714 -4380_78120,288,4380_108439,Johnstown,57352-00011-1,0,4380_7778208_1110116,4380_1714 -4380_78120,287,4380_108440,Johnstown,57354-00012-1,0,4380_7778208_1110116,4380_1714 -4380_78120,289,4380_108441,Johnstown,57346-00014-1,0,4380_7778208_1110116,4380_1714 -4380_78120,290,4380_108442,Johnstown,57351-00015-1,0,4380_7778208_1110116,4380_1714 -4380_78120,291,4380_108443,Johnstown,57058-00013-1,0,4380_7778208_1110115,4380_1714 -4380_78120,292,4380_108444,Johnstown,57349-00016-1,0,4380_7778208_1110116,4380_1714 -4380_78120,293,4380_108445,Johnstown,57353-00017-1,0,4380_7778208_1110116,4380_1714 -4380_78120,294,4380_108446,Johnstown,57355-00018-1,0,4380_7778208_1110116,4380_1714 -4380_78120,295,4380_108447,Johnstown,57347-00019-1,0,4380_7778208_1110116,4380_1714 -4380_78120,296,4380_108448,Johnstown,57059-00021-1,0,4380_7778208_1110115,4380_1714 -4380_78120,285,4380_108455,Johnstown,57070-00009-1,0,4380_7778208_1110115,4380_1714 -4380_78120,286,4380_108456,Johnstown,57076-00010-1,0,4380_7778208_1110115,4380_1714 -4380_78120,288,4380_108457,Johnstown,57068-00011-1,0,4380_7778208_1110115,4380_1714 -4380_78120,287,4380_108458,Johnstown,57074-00012-1,0,4380_7778208_1110115,4380_1714 -4380_78120,289,4380_108459,Johnstown,57072-00014-1,0,4380_7778208_1110115,4380_1714 -4380_77955,285,4380_10846,Enfield,9014-00009-1,0,4380_7778208_1150101,4380_238 -4380_78120,290,4380_108460,Johnstown,57071-00015-1,0,4380_7778208_1110115,4380_1714 -4380_78120,291,4380_108461,Johnstown,56744-00013-1,0,4380_7778208_1110114,4380_1714 -4380_78120,292,4380_108462,Johnstown,57077-00016-1,0,4380_7778208_1110115,4380_1714 -4380_78120,293,4380_108463,Johnstown,57069-00017-1,0,4380_7778208_1110115,4380_1714 -4380_78120,294,4380_108464,Johnstown,57075-00018-1,0,4380_7778208_1110115,4380_1714 -4380_78120,295,4380_108465,Johnstown,57073-00019-1,0,4380_7778208_1110115,4380_1714 -4380_78120,296,4380_108466,Johnstown,56745-00021-1,0,4380_7778208_1110114,4380_1714 -4380_77955,286,4380_10847,Enfield,9030-00010-1,0,4380_7778208_1150101,4380_238 -4380_78120,285,4380_108474,Johnstown,56424-00009-1,0,4380_7778208_1110113,4380_1714 -4380_78120,286,4380_108475,Johnstown,56420-00010-1,0,4380_7778208_1110113,4380_1714 -4380_78120,297,4380_108476,Johnstown,56417-00008-1,0,4380_7778208_1110113,4380_1715 -4380_78120,288,4380_108477,Johnstown,56418-00011-1,0,4380_7778208_1110113,4380_1714 -4380_78120,287,4380_108478,Johnstown,56422-00012-1,0,4380_7778208_1110113,4380_1714 -4380_78120,289,4380_108479,Johnstown,56415-00014-1,0,4380_7778208_1110113,4380_1714 -4380_77955,288,4380_10848,Enfield,9046-00011-1,0,4380_7778208_1150101,4380_238 -4380_78120,290,4380_108480,Johnstown,56425-00015-1,0,4380_7778208_1110113,4380_1714 -4380_78120,291,4380_108481,Johnstown,56077-00013-1,0,4380_7778208_1110112,4380_1714 -4380_78120,292,4380_108482,Johnstown,56421-00016-1,0,4380_7778208_1110113,4380_1714 -4380_78120,293,4380_108483,Johnstown,56419-00017-1,0,4380_7778208_1110113,4380_1714 -4380_78120,294,4380_108484,Johnstown,56423-00018-1,0,4380_7778208_1110113,4380_1714 -4380_78120,295,4380_108485,Johnstown,56416-00019-1,0,4380_7778208_1110113,4380_1714 -4380_78120,296,4380_108486,Johnstown,56078-00021-1,0,4380_7778208_1110112,4380_1714 -4380_77955,287,4380_10849,Enfield,9062-00012-1,0,4380_7778208_1150101,4380_238 -4380_78120,285,4380_108493,Johnstown,56087-00009-1,0,4380_7778208_1110112,4380_1714 -4380_78120,286,4380_108494,Johnstown,56090-00010-1,0,4380_7778208_1110112,4380_1714 -4380_78120,288,4380_108495,Johnstown,56085-00011-1,0,4380_7778208_1110112,4380_1714 -4380_78120,287,4380_108496,Johnstown,56083-00012-1,0,4380_7778208_1110112,4380_1714 -4380_78120,289,4380_108497,Johnstown,56081-00014-1,0,4380_7778208_1110112,4380_1714 -4380_78120,290,4380_108498,Johnstown,56088-00015-1,0,4380_7778208_1110112,4380_1714 -4380_78120,291,4380_108499,Johnstown,55806-00013-1,0,4380_7778208_1110111,4380_1715 -4380_78113,297,4380_1085,Dublin via Airport,49873-00008-1,1,4380_7778208_1000905,4380_18 -4380_77955,289,4380_10850,Enfield,8998-00014-1,0,4380_7778208_1150101,4380_238 -4380_78120,292,4380_108500,Johnstown,56091-00016-1,0,4380_7778208_1110112,4380_1714 -4380_78120,293,4380_108501,Johnstown,56086-00017-1,0,4380_7778208_1110112,4380_1714 -4380_78120,294,4380_108502,Johnstown,56084-00018-1,0,4380_7778208_1110112,4380_1714 -4380_78120,295,4380_108503,Johnstown,56082-00019-1,0,4380_7778208_1110112,4380_1714 -4380_78120,296,4380_108504,Johnstown,55807-00021-1,0,4380_7778208_1110111,4380_1715 -4380_77955,290,4380_10851,Enfield,57570-00015-1,0,4380_7778208_1150101,4380_238 -4380_78120,285,4380_108512,Johnstown,56774-00009-1,0,4380_7778208_1110114,4380_1714 -4380_78120,286,4380_108513,Johnstown,56776-00010-1,0,4380_7778208_1110114,4380_1714 -4380_78120,297,4380_108514,Johnstown,55808-00008-1,0,4380_7778208_1110111,4380_1715 -4380_78120,288,4380_108515,Johnstown,56770-00011-1,0,4380_7778208_1110114,4380_1714 -4380_78120,287,4380_108516,Johnstown,56772-00012-1,0,4380_7778208_1110114,4380_1714 -4380_78120,289,4380_108517,Johnstown,56778-00014-1,0,4380_7778208_1110114,4380_1714 -4380_78120,290,4380_108518,Johnstown,56775-00015-1,0,4380_7778208_1110114,4380_1714 -4380_78120,291,4380_108519,Johnstown,56439-00013-1,0,4380_7778208_1110113,4380_1715 -4380_77955,291,4380_10852,Enfield,57567-00013-1,0,4380_7778208_1150101,4380_238 -4380_78120,292,4380_108520,Johnstown,56777-00016-1,0,4380_7778208_1110114,4380_1714 -4380_78120,293,4380_108521,Johnstown,56771-00017-1,0,4380_7778208_1110114,4380_1714 -4380_78120,294,4380_108522,Johnstown,56773-00018-1,0,4380_7778208_1110114,4380_1714 -4380_78120,295,4380_108523,Johnstown,56779-00019-1,0,4380_7778208_1110114,4380_1714 -4380_78120,296,4380_108524,Johnstown,56440-00021-1,0,4380_7778208_1110113,4380_1715 -4380_77955,292,4380_10853,Enfield,57565-00016-1,0,4380_7778208_1150101,4380_238 -4380_78120,285,4380_108531,Johnstown,57392-00009-1,0,4380_7778208_1110116,4380_1714 -4380_78120,286,4380_108532,Johnstown,57386-00010-1,0,4380_7778208_1110116,4380_1714 -4380_78120,288,4380_108533,Johnstown,57394-00011-1,0,4380_7778208_1110116,4380_1714 -4380_78120,287,4380_108534,Johnstown,57390-00012-1,0,4380_7778208_1110116,4380_1714 -4380_78120,289,4380_108535,Johnstown,57388-00014-1,0,4380_7778208_1110116,4380_1714 -4380_78120,290,4380_108536,Johnstown,57393-00015-1,0,4380_7778208_1110116,4380_1714 -4380_78120,291,4380_108537,Johnstown,57114-00013-1,0,4380_7778208_1110115,4380_1714 -4380_78120,292,4380_108538,Johnstown,57387-00016-1,0,4380_7778208_1110116,4380_1714 -4380_78120,293,4380_108539,Johnstown,57395-00017-1,0,4380_7778208_1110116,4380_1714 -4380_77955,293,4380_10854,Enfield,57569-00017-1,0,4380_7778208_1150101,4380_238 -4380_78120,294,4380_108540,Johnstown,57391-00018-1,0,4380_7778208_1110116,4380_1714 -4380_78120,295,4380_108541,Johnstown,57389-00019-1,0,4380_7778208_1110116,4380_1714 -4380_78120,296,4380_108542,Johnstown,57115-00021-1,0,4380_7778208_1110115,4380_1714 -4380_77955,294,4380_10855,Enfield,57564-00018-1,0,4380_7778208_1150101,4380_238 -4380_78120,285,4380_108550,Johnstown,57120-00009-1,0,4380_7778208_1110115,4380_1714 -4380_78120,286,4380_108551,Johnstown,57122-00010-1,0,4380_7778208_1110115,4380_1714 -4380_78120,297,4380_108552,Johnstown,56117-00008-1,0,4380_7778208_1110112,4380_1714 -4380_78120,288,4380_108553,Johnstown,57116-00011-1,0,4380_7778208_1110115,4380_1714 -4380_78120,287,4380_108554,Johnstown,57124-00012-1,0,4380_7778208_1110115,4380_1714 -4380_78120,289,4380_108555,Johnstown,57118-00014-1,0,4380_7778208_1110115,4380_1714 -4380_78120,290,4380_108556,Johnstown,57121-00015-1,0,4380_7778208_1110115,4380_1714 -4380_78120,291,4380_108557,Johnstown,56792-00013-1,0,4380_7778208_1110114,4380_1714 -4380_78120,292,4380_108558,Johnstown,57123-00016-1,0,4380_7778208_1110115,4380_1714 -4380_78120,293,4380_108559,Johnstown,57117-00017-1,0,4380_7778208_1110115,4380_1714 -4380_77955,295,4380_10856,Enfield,57566-00019-1,0,4380_7778208_1150101,4380_238 -4380_78120,294,4380_108560,Johnstown,57125-00018-1,0,4380_7778208_1110115,4380_1714 -4380_78120,295,4380_108561,Johnstown,57119-00019-1,0,4380_7778208_1110115,4380_1714 -4380_78120,296,4380_108562,Johnstown,56793-00021-1,0,4380_7778208_1110114,4380_1714 -4380_78120,285,4380_108569,Johnstown,56469-00009-1,0,4380_7778208_1110113,4380_1714 -4380_77955,296,4380_10857,Enfield,57568-00021-1,0,4380_7778208_1150101,4380_238 -4380_78120,286,4380_108570,Johnstown,56471-00010-1,0,4380_7778208_1110113,4380_1714 -4380_78120,288,4380_108571,Johnstown,56473-00011-1,0,4380_7778208_1110113,4380_1714 -4380_78120,287,4380_108572,Johnstown,56467-00012-1,0,4380_7778208_1110113,4380_1714 -4380_78120,289,4380_108573,Johnstown,56475-00014-1,0,4380_7778208_1110113,4380_1714 -4380_78120,290,4380_108574,Johnstown,56470-00015-1,0,4380_7778208_1110113,4380_1714 -4380_78120,291,4380_108575,Johnstown,56124-00013-1,0,4380_7778208_1110112,4380_1714 -4380_78120,292,4380_108576,Johnstown,56472-00016-1,0,4380_7778208_1110113,4380_1714 -4380_78120,293,4380_108577,Johnstown,56474-00017-1,0,4380_7778208_1110113,4380_1714 -4380_78120,294,4380_108578,Johnstown,56468-00018-1,0,4380_7778208_1110113,4380_1714 -4380_78120,295,4380_108579,Johnstown,56476-00019-1,0,4380_7778208_1110113,4380_1714 -4380_78120,296,4380_108580,Johnstown,56125-00021-1,0,4380_7778208_1110112,4380_1714 -4380_78120,285,4380_108588,Johnstown,56137-00009-1,0,4380_7778208_1110112,4380_1714 -4380_78120,286,4380_108589,Johnstown,56133-00010-1,0,4380_7778208_1110112,4380_1714 -4380_78120,297,4380_108590,Johnstown,56479-00008-1,0,4380_7778208_1110113,4380_1714 -4380_78120,288,4380_108591,Johnstown,56141-00011-1,0,4380_7778208_1110112,4380_1714 -4380_78120,287,4380_108592,Johnstown,56139-00012-1,0,4380_7778208_1110112,4380_1714 -4380_78120,289,4380_108593,Johnstown,56135-00014-1,0,4380_7778208_1110112,4380_1714 -4380_78120,290,4380_108594,Johnstown,56138-00015-1,0,4380_7778208_1110112,4380_1714 -4380_78120,291,4380_108595,Johnstown,55817-00013-1,0,4380_7778208_1110111,4380_1714 -4380_78120,292,4380_108596,Johnstown,56134-00016-1,0,4380_7778208_1110112,4380_1714 -4380_78120,293,4380_108597,Johnstown,56142-00017-1,0,4380_7778208_1110112,4380_1714 -4380_78120,294,4380_108598,Johnstown,56140-00018-1,0,4380_7778208_1110112,4380_1714 -4380_78120,295,4380_108599,Johnstown,56136-00019-1,0,4380_7778208_1110112,4380_1714 -4380_78113,287,4380_1086,Dublin via Airport,49973-00012-1,1,4380_7778208_1000906,4380_18 -4380_78120,296,4380_108600,Johnstown,55818-00021-1,0,4380_7778208_1110111,4380_1714 -4380_78120,285,4380_108607,Johnstown,56820-00009-1,0,4380_7778208_1110114,4380_1714 -4380_78120,286,4380_108608,Johnstown,56822-00010-1,0,4380_7778208_1110114,4380_1714 -4380_78120,288,4380_108609,Johnstown,56826-00011-1,0,4380_7778208_1110114,4380_1714 -4380_78120,287,4380_108610,Johnstown,56824-00012-1,0,4380_7778208_1110114,4380_1714 -4380_78120,289,4380_108611,Johnstown,56818-00014-1,0,4380_7778208_1110114,4380_1714 -4380_78120,290,4380_108612,Johnstown,56821-00015-1,0,4380_7778208_1110114,4380_1714 -4380_78120,291,4380_108613,Johnstown,56490-00013-1,0,4380_7778208_1110113,4380_1714 -4380_78120,292,4380_108614,Johnstown,56823-00016-1,0,4380_7778208_1110114,4380_1714 -4380_78120,293,4380_108615,Johnstown,56827-00017-1,0,4380_7778208_1110114,4380_1714 -4380_78120,294,4380_108616,Johnstown,56825-00018-1,0,4380_7778208_1110114,4380_1714 -4380_78120,295,4380_108617,Johnstown,56819-00019-1,0,4380_7778208_1110114,4380_1714 -4380_78120,296,4380_108618,Johnstown,56491-00021-1,0,4380_7778208_1110113,4380_1714 -4380_78120,285,4380_108626,Johnstown,57432-00009-1,0,4380_7778208_1110116,4380_1714 -4380_78120,286,4380_108627,Johnstown,57434-00010-1,0,4380_7778208_1110116,4380_1714 -4380_78120,297,4380_108628,Johnstown,55822-00008-1,0,4380_7778208_1110111,4380_1714 -4380_78120,288,4380_108629,Johnstown,57428-00011-1,0,4380_7778208_1110116,4380_1714 -4380_77955,285,4380_10863,Enfield,9167-00009-1,0,4380_7778208_1150103,4380_238 -4380_78120,287,4380_108630,Johnstown,57430-00012-1,0,4380_7778208_1110116,4380_1714 -4380_78120,289,4380_108631,Johnstown,57426-00014-1,0,4380_7778208_1110116,4380_1714 -4380_78120,290,4380_108632,Johnstown,57433-00015-1,0,4380_7778208_1110116,4380_1714 -4380_78120,291,4380_108633,Johnstown,57152-00013-1,0,4380_7778208_1110115,4380_1714 -4380_78120,292,4380_108634,Johnstown,57435-00016-1,0,4380_7778208_1110116,4380_1714 -4380_78120,293,4380_108635,Johnstown,57429-00017-1,0,4380_7778208_1110116,4380_1714 -4380_78120,294,4380_108636,Johnstown,57431-00018-1,0,4380_7778208_1110116,4380_1714 -4380_78120,295,4380_108637,Johnstown,57427-00019-1,0,4380_7778208_1110116,4380_1714 -4380_78120,296,4380_108638,Johnstown,57153-00021-1,0,4380_7778208_1110115,4380_1714 -4380_77955,286,4380_10864,Enfield,9182-00010-1,0,4380_7778208_1150103,4380_238 -4380_78120,285,4380_108645,Johnstown,57164-00009-1,0,4380_7778208_1110115,4380_1714 -4380_78120,286,4380_108646,Johnstown,57168-00010-1,0,4380_7778208_1110115,4380_1714 -4380_78120,288,4380_108647,Johnstown,57170-00011-1,0,4380_7778208_1110115,4380_1714 -4380_78120,287,4380_108648,Johnstown,57166-00012-1,0,4380_7778208_1110115,4380_1714 -4380_78120,289,4380_108649,Johnstown,57172-00014-1,0,4380_7778208_1110115,4380_1714 -4380_77955,288,4380_10865,Enfield,9192-00011-1,0,4380_7778208_1150103,4380_238 -4380_78120,290,4380_108650,Johnstown,57165-00015-1,0,4380_7778208_1110115,4380_1714 -4380_78120,291,4380_108651,Johnstown,56840-00013-1,0,4380_7778208_1110114,4380_1714 -4380_78120,292,4380_108652,Johnstown,57169-00016-1,0,4380_7778208_1110115,4380_1714 -4380_78120,293,4380_108653,Johnstown,57171-00017-1,0,4380_7778208_1110115,4380_1714 -4380_78120,294,4380_108654,Johnstown,57167-00018-1,0,4380_7778208_1110115,4380_1714 -4380_78120,295,4380_108655,Johnstown,57173-00019-1,0,4380_7778208_1110115,4380_1714 -4380_78120,296,4380_108656,Johnstown,56841-00021-1,0,4380_7778208_1110114,4380_1714 -4380_77955,287,4380_10866,Enfield,9202-00012-1,0,4380_7778208_1150103,4380_238 -4380_78120,285,4380_108663,Commons Road,56177-00009-1,1,4380_7778208_1110113,4380_1716 -4380_78120,286,4380_108664,Commons Road,56175-00010-1,1,4380_7778208_1110113,4380_1716 -4380_78120,288,4380_108665,Commons Road,56173-00011-1,1,4380_7778208_1110113,4380_1716 -4380_78120,287,4380_108666,Commons Road,56181-00012-1,1,4380_7778208_1110113,4380_1716 -4380_78120,289,4380_108667,Commons Road,56179-00014-1,1,4380_7778208_1110113,4380_1716 -4380_78120,290,4380_108668,Commons Road,56178-00015-1,1,4380_7778208_1110113,4380_1716 -4380_78120,291,4380_108669,Commons Road,55836-00013-1,1,4380_7778208_1110112,4380_1716 -4380_77955,289,4380_10867,Enfield,9157-00014-1,0,4380_7778208_1150103,4380_238 -4380_78120,292,4380_108670,Commons Road,56176-00016-1,1,4380_7778208_1110113,4380_1716 -4380_78120,293,4380_108671,Commons Road,56174-00017-1,1,4380_7778208_1110113,4380_1716 -4380_78120,294,4380_108672,Commons Road,56182-00018-1,1,4380_7778208_1110113,4380_1716 -4380_78120,295,4380_108673,Commons Road,56180-00019-1,1,4380_7778208_1110113,4380_1716 -4380_78120,296,4380_108674,Commons Road,55837-00021-1,1,4380_7778208_1110112,4380_1716 -4380_77955,290,4380_10868,Enfield,57725-00015-1,0,4380_7778208_1150103,4380_238 -4380_78120,285,4380_108681,Commons Road,55848-00009-1,1,4380_7778208_1110112,4380_1716 -4380_78120,286,4380_108682,Commons Road,55838-00010-1,1,4380_7778208_1110112,4380_1716 -4380_78120,288,4380_108683,Commons Road,55842-00011-1,1,4380_7778208_1110112,4380_1716 -4380_78120,287,4380_108684,Commons Road,55840-00012-1,1,4380_7778208_1110112,4380_1716 -4380_78120,289,4380_108685,Commons Road,55846-00014-1,1,4380_7778208_1110112,4380_1716 -4380_78120,290,4380_108686,Commons Road,55849-00015-1,1,4380_7778208_1110112,4380_1716 -4380_78120,291,4380_108687,Commons Road,55753-00013-1,1,4380_7778208_1110111,4380_1716 -4380_78120,292,4380_108688,Commons Road,55839-00016-1,1,4380_7778208_1110112,4380_1716 -4380_78120,293,4380_108689,Commons Road,55843-00017-1,1,4380_7778208_1110112,4380_1716 -4380_77955,292,4380_10869,Enfield,57723-00016-1,0,4380_7778208_1150103,4380_238 -4380_78120,294,4380_108690,Commons Road,55841-00018-1,1,4380_7778208_1110112,4380_1716 -4380_78120,295,4380_108691,Commons Road,55847-00019-1,1,4380_7778208_1110112,4380_1716 -4380_78120,296,4380_108692,Commons Road,55754-00021-1,1,4380_7778208_1110111,4380_1716 -4380_78120,285,4380_108699,Commons Road,56550-00009-1,1,4380_7778208_1110114,4380_1716 -4380_78113,288,4380_1087,Dublin via Airport,49975-00011-1,1,4380_7778208_1000906,4380_18 -4380_77955,293,4380_10870,Enfield,57726-00017-1,0,4380_7778208_1150103,4380_238 -4380_78120,286,4380_108700,Commons Road,56542-00010-1,1,4380_7778208_1110114,4380_1716 -4380_78120,288,4380_108701,Commons Road,56548-00011-1,1,4380_7778208_1110114,4380_1716 -4380_78120,287,4380_108702,Commons Road,56544-00012-1,1,4380_7778208_1110114,4380_1716 -4380_78120,289,4380_108703,Commons Road,56546-00014-1,1,4380_7778208_1110114,4380_1716 -4380_78120,290,4380_108704,Commons Road,56551-00015-1,1,4380_7778208_1110114,4380_1716 -4380_78120,291,4380_108705,Commons Road,56195-00013-1,1,4380_7778208_1110113,4380_1717 -4380_78120,292,4380_108706,Commons Road,56543-00016-1,1,4380_7778208_1110114,4380_1716 -4380_78120,293,4380_108707,Commons Road,56549-00017-1,1,4380_7778208_1110114,4380_1716 -4380_78120,294,4380_108708,Commons Road,56545-00018-1,1,4380_7778208_1110114,4380_1716 -4380_78120,295,4380_108709,Commons Road,56547-00019-1,1,4380_7778208_1110114,4380_1716 -4380_77955,294,4380_10871,Enfield,57724-00018-1,0,4380_7778208_1150103,4380_238 -4380_78120,296,4380_108710,Commons Road,56196-00021-1,1,4380_7778208_1110113,4380_1717 -4380_78120,285,4380_108718,Commons Road,57200-00009-1,1,4380_7778208_1110116,4380_1716 -4380_78120,286,4380_108719,Commons Road,57198-00010-1,1,4380_7778208_1110116,4380_1716 -4380_77955,295,4380_10872,Enfield,57722-00019-1,0,4380_7778208_1150103,4380_238 -4380_78120,297,4380_108720,Commons Road,55757-00008-1,1,4380_7778208_1110111,4380_1717 -4380_78120,288,4380_108721,Commons Road,57196-00011-1,1,4380_7778208_1110116,4380_1716 -4380_78120,287,4380_108722,Commons Road,57204-00012-1,1,4380_7778208_1110116,4380_1716 -4380_78120,289,4380_108723,Commons Road,57202-00014-1,1,4380_7778208_1110116,4380_1716 -4380_78120,290,4380_108724,Commons Road,57201-00015-1,1,4380_7778208_1110116,4380_1716 -4380_78120,291,4380_108725,Commons Road,56886-00013-1,1,4380_7778208_1110115,4380_1717 -4380_78120,292,4380_108726,Commons Road,57199-00016-1,1,4380_7778208_1110116,4380_1716 -4380_78120,293,4380_108727,Commons Road,57197-00017-1,1,4380_7778208_1110116,4380_1716 -4380_78120,294,4380_108728,Commons Road,57205-00018-1,1,4380_7778208_1110116,4380_1716 -4380_78120,295,4380_108729,Commons Road,57203-00019-1,1,4380_7778208_1110116,4380_1716 -4380_78120,296,4380_108730,Commons Road,56887-00021-1,1,4380_7778208_1110115,4380_1717 -4380_78120,285,4380_108737,Commons Road,56894-00009-1,1,4380_7778208_1110115,4380_1716 -4380_78120,286,4380_108738,Commons Road,56890-00010-1,1,4380_7778208_1110115,4380_1716 -4380_78120,288,4380_108739,Commons Road,56892-00011-1,1,4380_7778208_1110115,4380_1716 -4380_78120,287,4380_108740,Commons Road,56898-00012-1,1,4380_7778208_1110115,4380_1716 -4380_78120,289,4380_108741,Commons Road,56888-00014-1,1,4380_7778208_1110115,4380_1716 -4380_78120,290,4380_108742,Commons Road,56895-00015-1,1,4380_7778208_1110115,4380_1716 -4380_78120,291,4380_108743,Commons Road,56564-00013-1,1,4380_7778208_1110114,4380_1717 -4380_78120,292,4380_108744,Commons Road,56891-00016-1,1,4380_7778208_1110115,4380_1716 -4380_78120,293,4380_108745,Commons Road,56893-00017-1,1,4380_7778208_1110115,4380_1716 -4380_78120,294,4380_108746,Commons Road,56899-00018-1,1,4380_7778208_1110115,4380_1716 -4380_78120,295,4380_108747,Commons Road,56889-00019-1,1,4380_7778208_1110115,4380_1716 -4380_78120,296,4380_108748,Commons Road,56565-00021-1,1,4380_7778208_1110114,4380_1717 -4380_78120,285,4380_108756,Commons Road,56223-00009-1,1,4380_7778208_1110113,4380_1716 -4380_78120,286,4380_108757,Commons Road,56225-00010-1,1,4380_7778208_1110113,4380_1716 -4380_78120,297,4380_108758,Commons Road,55886-00008-1,1,4380_7778208_1110112,4380_1717 -4380_78120,288,4380_108759,Commons Road,56227-00011-1,1,4380_7778208_1110113,4380_1716 -4380_78120,287,4380_108760,Commons Road,56229-00012-1,1,4380_7778208_1110113,4380_1716 -4380_78120,289,4380_108761,Commons Road,56231-00014-1,1,4380_7778208_1110113,4380_1716 -4380_78120,290,4380_108762,Commons Road,56224-00015-1,1,4380_7778208_1110113,4380_1716 -4380_78120,291,4380_108763,Commons Road,55887-00013-1,1,4380_7778208_1110112,4380_1716 -4380_78120,292,4380_108764,Commons Road,56226-00016-1,1,4380_7778208_1110113,4380_1716 -4380_78120,293,4380_108765,Commons Road,56228-00017-1,1,4380_7778208_1110113,4380_1716 -4380_78120,294,4380_108766,Commons Road,56230-00018-1,1,4380_7778208_1110113,4380_1716 -4380_78120,295,4380_108767,Commons Road,56232-00019-1,1,4380_7778208_1110113,4380_1716 -4380_78120,296,4380_108768,Commons Road,55888-00021-1,1,4380_7778208_1110112,4380_1716 -4380_78120,285,4380_108775,Commons Road,55895-00009-1,1,4380_7778208_1110112,4380_1716 -4380_78120,286,4380_108776,Commons Road,55891-00010-1,1,4380_7778208_1110112,4380_1716 -4380_78120,288,4380_108777,Commons Road,55897-00011-1,1,4380_7778208_1110112,4380_1716 -4380_78120,287,4380_108778,Commons Road,55899-00012-1,1,4380_7778208_1110112,4380_1716 -4380_78120,289,4380_108779,Commons Road,55893-00014-1,1,4380_7778208_1110112,4380_1716 -4380_78120,290,4380_108780,Commons Road,55896-00015-1,1,4380_7778208_1110112,4380_1716 -4380_78120,291,4380_108781,Commons Road,55763-00013-1,1,4380_7778208_1110111,4380_1716 -4380_78120,292,4380_108782,Commons Road,55892-00016-1,1,4380_7778208_1110112,4380_1716 -4380_78120,293,4380_108783,Commons Road,55898-00017-1,1,4380_7778208_1110112,4380_1716 -4380_78120,294,4380_108784,Commons Road,55900-00018-1,1,4380_7778208_1110112,4380_1716 -4380_78120,295,4380_108785,Commons Road,55894-00019-1,1,4380_7778208_1110112,4380_1716 -4380_78120,296,4380_108786,Commons Road,55764-00021-1,1,4380_7778208_1110111,4380_1716 -4380_77955,285,4380_10879,Mullingar,9450-00009-1,0,4380_7778208_1150107,4380_239 -4380_78120,285,4380_108794,Commons Road,56594-00009-1,1,4380_7778208_1110114,4380_1716 -4380_78120,286,4380_108795,Commons Road,56598-00010-1,1,4380_7778208_1110114,4380_1716 -4380_78120,297,4380_108796,Commons Road,56248-00008-1,1,4380_7778208_1110113,4380_1716 -4380_78120,288,4380_108797,Commons Road,56590-00011-1,1,4380_7778208_1110114,4380_1716 -4380_78120,287,4380_108798,Commons Road,56596-00012-1,1,4380_7778208_1110114,4380_1716 -4380_78120,289,4380_108799,Commons Road,56592-00014-1,1,4380_7778208_1110114,4380_1716 -4380_78113,289,4380_1088,Dublin via Airport,49971-00014-1,1,4380_7778208_1000906,4380_18 -4380_77955,286,4380_10880,Mullingar,9464-00010-1,0,4380_7778208_1150107,4380_239 -4380_78120,290,4380_108800,Commons Road,56595-00015-1,1,4380_7778208_1110114,4380_1716 -4380_78120,291,4380_108801,Commons Road,56246-00013-1,1,4380_7778208_1110113,4380_1716 -4380_78120,292,4380_108802,Commons Road,56599-00016-1,1,4380_7778208_1110114,4380_1716 -4380_78120,293,4380_108803,Commons Road,56591-00017-1,1,4380_7778208_1110114,4380_1716 -4380_78120,294,4380_108804,Commons Road,56597-00018-1,1,4380_7778208_1110114,4380_1716 -4380_78120,295,4380_108805,Commons Road,56593-00019-1,1,4380_7778208_1110114,4380_1716 -4380_78120,296,4380_108806,Commons Road,56247-00021-1,1,4380_7778208_1110113,4380_1716 -4380_77955,288,4380_10881,Mullingar,9478-00011-1,0,4380_7778208_1150107,4380_239 -4380_78120,285,4380_108813,Commons Road,57238-00009-1,1,4380_7778208_1110116,4380_1716 -4380_78120,286,4380_108814,Commons Road,57242-00010-1,1,4380_7778208_1110116,4380_1716 -4380_78120,288,4380_108815,Commons Road,57240-00011-1,1,4380_7778208_1110116,4380_1716 -4380_78120,287,4380_108816,Commons Road,57244-00012-1,1,4380_7778208_1110116,4380_1716 -4380_78120,289,4380_108817,Commons Road,57236-00014-1,1,4380_7778208_1110116,4380_1716 -4380_78120,290,4380_108818,Commons Road,57239-00015-1,1,4380_7778208_1110116,4380_1716 -4380_78120,291,4380_108819,Commons Road,56934-00013-1,1,4380_7778208_1110115,4380_1716 -4380_77955,287,4380_10882,Mullingar,9492-00012-1,0,4380_7778208_1150107,4380_239 -4380_78120,292,4380_108820,Commons Road,57243-00016-1,1,4380_7778208_1110116,4380_1716 -4380_78120,293,4380_108821,Commons Road,57241-00017-1,1,4380_7778208_1110116,4380_1716 -4380_78120,294,4380_108822,Commons Road,57245-00018-1,1,4380_7778208_1110116,4380_1716 -4380_78120,295,4380_108823,Commons Road,57237-00019-1,1,4380_7778208_1110116,4380_1716 -4380_78120,296,4380_108824,Commons Road,56935-00021-1,1,4380_7778208_1110115,4380_1716 -4380_77955,289,4380_10883,Mullingar,9436-00014-1,0,4380_7778208_1150107,4380_239 -4380_78120,285,4380_108832,Commons Road,56940-00009-1,1,4380_7778208_1110115,4380_1716 -4380_78120,286,4380_108833,Commons Road,56946-00010-1,1,4380_7778208_1110115,4380_1716 -4380_78120,297,4380_108834,Commons Road,55771-00008-1,1,4380_7778208_1110111,4380_1716 -4380_78120,288,4380_108835,Commons Road,56942-00011-1,1,4380_7778208_1110115,4380_1716 -4380_78120,287,4380_108836,Commons Road,56944-00012-1,1,4380_7778208_1110115,4380_1716 -4380_78120,289,4380_108837,Commons Road,56936-00014-1,1,4380_7778208_1110115,4380_1716 -4380_78120,290,4380_108838,Commons Road,56941-00015-1,1,4380_7778208_1110115,4380_1716 -4380_78120,291,4380_108839,Commons Road,56612-00013-1,1,4380_7778208_1110114,4380_1716 -4380_77955,290,4380_10884,Mullingar,57912-00015-1,0,4380_7778208_1150107,4380_239 -4380_78120,292,4380_108840,Commons Road,56947-00016-1,1,4380_7778208_1110115,4380_1716 -4380_78120,293,4380_108841,Commons Road,56943-00017-1,1,4380_7778208_1110115,4380_1716 -4380_78120,294,4380_108842,Commons Road,56945-00018-1,1,4380_7778208_1110115,4380_1716 -4380_78120,295,4380_108843,Commons Road,56937-00019-1,1,4380_7778208_1110115,4380_1716 -4380_78120,296,4380_108844,Commons Road,56613-00021-1,1,4380_7778208_1110114,4380_1716 -4380_77955,291,4380_10885,Enfield,57758-00013-1,0,4380_7778208_1150104,4380_238 -4380_78120,285,4380_108851,Commons Road,56278-00009-1,1,4380_7778208_1110113,4380_1716 -4380_78120,286,4380_108852,Commons Road,56282-00010-1,1,4380_7778208_1110113,4380_1716 -4380_78120,288,4380_108853,Commons Road,56274-00011-1,1,4380_7778208_1110113,4380_1716 -4380_78120,287,4380_108854,Commons Road,56280-00012-1,1,4380_7778208_1110113,4380_1716 -4380_78120,289,4380_108855,Commons Road,56276-00014-1,1,4380_7778208_1110113,4380_1716 -4380_78120,290,4380_108856,Commons Road,56279-00015-1,1,4380_7778208_1110113,4380_1716 -4380_78120,291,4380_108857,Commons Road,55938-00013-1,1,4380_7778208_1110112,4380_1716 -4380_78120,292,4380_108858,Commons Road,56283-00016-1,1,4380_7778208_1110113,4380_1716 -4380_78120,293,4380_108859,Commons Road,56275-00017-1,1,4380_7778208_1110113,4380_1716 -4380_77955,292,4380_10886,Mullingar,57914-00016-1,0,4380_7778208_1150107,4380_239 -4380_78120,294,4380_108860,Commons Road,56281-00018-1,1,4380_7778208_1110113,4380_1716 -4380_78120,295,4380_108861,Commons Road,56277-00019-1,1,4380_7778208_1110113,4380_1716 -4380_78120,296,4380_108862,Commons Road,55939-00021-1,1,4380_7778208_1110112,4380_1716 -4380_77955,293,4380_10887,Mullingar,57910-00017-1,0,4380_7778208_1150107,4380_239 -4380_78120,285,4380_108870,Commons Road,55945-00009-1,1,4380_7778208_1110112,4380_1716 -4380_78120,286,4380_108871,Commons Road,55940-00010-1,1,4380_7778208_1110112,4380_1716 -4380_78120,297,4380_108872,Commons Road,55944-00008-1,1,4380_7778208_1110112,4380_1716 -4380_78120,288,4380_108873,Commons Road,55947-00011-1,1,4380_7778208_1110112,4380_1716 -4380_78120,287,4380_108874,Commons Road,55951-00012-1,1,4380_7778208_1110112,4380_1716 -4380_78120,289,4380_108875,Commons Road,55949-00014-1,1,4380_7778208_1110112,4380_1716 -4380_78120,290,4380_108876,Commons Road,55946-00015-1,1,4380_7778208_1110112,4380_1716 -4380_78120,291,4380_108877,Commons Road,55775-00013-1,1,4380_7778208_1110111,4380_1716 -4380_78120,292,4380_108878,Commons Road,55941-00016-1,1,4380_7778208_1110112,4380_1716 -4380_78120,293,4380_108879,Commons Road,55948-00017-1,1,4380_7778208_1110112,4380_1716 -4380_77955,294,4380_10888,Mullingar,57911-00018-1,0,4380_7778208_1150107,4380_239 -4380_78120,294,4380_108880,Commons Road,55952-00018-1,1,4380_7778208_1110112,4380_1716 -4380_78120,295,4380_108881,Commons Road,55950-00019-1,1,4380_7778208_1110112,4380_1716 -4380_78120,296,4380_108882,Commons Road,55776-00021-1,1,4380_7778208_1110111,4380_1716 -4380_78120,285,4380_108889,Commons Road,56646-00009-1,1,4380_7778208_1110114,4380_1716 -4380_77955,295,4380_10889,Mullingar,57913-00019-1,0,4380_7778208_1150107,4380_239 -4380_78120,286,4380_108890,Commons Road,56638-00010-1,1,4380_7778208_1110114,4380_1716 -4380_78120,288,4380_108891,Commons Road,56640-00011-1,1,4380_7778208_1110114,4380_1716 -4380_78120,287,4380_108892,Commons Road,56644-00012-1,1,4380_7778208_1110114,4380_1716 -4380_78120,289,4380_108893,Commons Road,56642-00014-1,1,4380_7778208_1110114,4380_1716 -4380_78120,290,4380_108894,Commons Road,56647-00015-1,1,4380_7778208_1110114,4380_1716 -4380_78120,291,4380_108895,Commons Road,56298-00013-1,1,4380_7778208_1110113,4380_1716 -4380_78120,292,4380_108896,Commons Road,56639-00016-1,1,4380_7778208_1110114,4380_1716 -4380_78120,293,4380_108897,Commons Road,56641-00017-1,1,4380_7778208_1110114,4380_1716 -4380_78120,294,4380_108898,Commons Road,56645-00018-1,1,4380_7778208_1110114,4380_1716 -4380_78120,295,4380_108899,Commons Road,56643-00019-1,1,4380_7778208_1110114,4380_1716 -4380_78113,290,4380_1089,Dublin via Airport,49968-00015-1,1,4380_7778208_1000906,4380_18 -4380_77955,296,4380_10890,Enfield,57759-00021-1,0,4380_7778208_1150104,4380_238 -4380_78120,296,4380_108900,Commons Road,56299-00021-1,1,4380_7778208_1110113,4380_1716 -4380_78120,285,4380_108908,Commons Road,57280-00009-1,1,4380_7778208_1110116,4380_1716 -4380_78120,286,4380_108909,Commons Road,57276-00010-1,1,4380_7778208_1110116,4380_1716 -4380_78120,297,4380_108910,Commons Road,56310-00008-1,1,4380_7778208_1110113,4380_1716 -4380_78120,288,4380_108911,Commons Road,57282-00011-1,1,4380_7778208_1110116,4380_1716 -4380_78120,287,4380_108912,Commons Road,57284-00012-1,1,4380_7778208_1110116,4380_1716 -4380_78120,289,4380_108913,Commons Road,57278-00014-1,1,4380_7778208_1110116,4380_1716 -4380_78120,290,4380_108914,Commons Road,57281-00015-1,1,4380_7778208_1110116,4380_1716 -4380_78120,291,4380_108915,Commons Road,56982-00013-1,1,4380_7778208_1110115,4380_1716 -4380_78120,292,4380_108916,Commons Road,57277-00016-1,1,4380_7778208_1110116,4380_1716 -4380_78120,293,4380_108917,Commons Road,57283-00017-1,1,4380_7778208_1110116,4380_1716 -4380_78120,294,4380_108918,Commons Road,57285-00018-1,1,4380_7778208_1110116,4380_1716 -4380_78120,295,4380_108919,Commons Road,57279-00019-1,1,4380_7778208_1110116,4380_1716 -4380_78120,296,4380_108920,Commons Road,56983-00021-1,1,4380_7778208_1110115,4380_1716 -4380_78120,285,4380_108927,Commons Road,56986-00009-1,1,4380_7778208_1110115,4380_1716 -4380_78120,286,4380_108928,Commons Road,56994-00010-1,1,4380_7778208_1110115,4380_1716 -4380_78120,288,4380_108929,Commons Road,56992-00011-1,1,4380_7778208_1110115,4380_1716 -4380_78120,287,4380_108930,Commons Road,56988-00012-1,1,4380_7778208_1110115,4380_1716 -4380_78120,289,4380_108931,Commons Road,56990-00014-1,1,4380_7778208_1110115,4380_1716 -4380_78120,290,4380_108932,Commons Road,56987-00015-1,1,4380_7778208_1110115,4380_1716 -4380_78120,291,4380_108933,Commons Road,56660-00013-1,1,4380_7778208_1110114,4380_1716 -4380_78120,292,4380_108934,Commons Road,56995-00016-1,1,4380_7778208_1110115,4380_1716 -4380_78120,293,4380_108935,Commons Road,56993-00017-1,1,4380_7778208_1110115,4380_1716 -4380_78120,294,4380_108936,Commons Road,56989-00018-1,1,4380_7778208_1110115,4380_1716 -4380_78120,295,4380_108937,Commons Road,56991-00019-1,1,4380_7778208_1110115,4380_1716 -4380_78120,296,4380_108938,Commons Road,56661-00021-1,1,4380_7778208_1110114,4380_1716 -4380_78120,285,4380_108946,Commons Road,56328-00009-1,1,4380_7778208_1110113,4380_1716 -4380_78120,286,4380_108947,Commons Road,56334-00010-1,1,4380_7778208_1110113,4380_1716 -4380_78120,297,4380_108948,Commons Road,55785-00008-1,1,4380_7778208_1110111,4380_1716 -4380_78120,288,4380_108949,Commons Road,56332-00011-1,1,4380_7778208_1110113,4380_1716 -4380_78120,287,4380_108950,Commons Road,56330-00012-1,1,4380_7778208_1110113,4380_1716 -4380_78120,289,4380_108951,Commons Road,56326-00014-1,1,4380_7778208_1110113,4380_1716 -4380_78120,290,4380_108952,Commons Road,56329-00015-1,1,4380_7778208_1110113,4380_1716 -4380_78120,291,4380_108953,Commons Road,55989-00013-1,1,4380_7778208_1110112,4380_1716 -4380_78120,292,4380_108954,Commons Road,56335-00016-1,1,4380_7778208_1110113,4380_1716 -4380_78120,293,4380_108955,Commons Road,56333-00017-1,1,4380_7778208_1110113,4380_1716 -4380_78120,294,4380_108956,Commons Road,56331-00018-1,1,4380_7778208_1110113,4380_1716 -4380_78120,295,4380_108957,Commons Road,56327-00019-1,1,4380_7778208_1110113,4380_1716 -4380_78120,296,4380_108958,Commons Road,55990-00021-1,1,4380_7778208_1110112,4380_1716 -4380_77955,285,4380_10896,Enfield,57765-00009-1,0,4380_7778208_1150104,4380_238 -4380_78120,285,4380_108965,Commons Road,55996-00009-1,1,4380_7778208_1110112,4380_1716 -4380_78120,286,4380_108966,Commons Road,56002-00010-1,1,4380_7778208_1110112,4380_1716 -4380_78120,288,4380_108967,Commons Road,55994-00011-1,1,4380_7778208_1110112,4380_1716 -4380_78120,287,4380_108968,Commons Road,55998-00012-1,1,4380_7778208_1110112,4380_1716 -4380_78120,289,4380_108969,Commons Road,56000-00014-1,1,4380_7778208_1110112,4380_1716 -4380_77955,286,4380_10897,Enfield,57767-00010-1,0,4380_7778208_1150104,4380_238 -4380_78120,290,4380_108970,Commons Road,55997-00015-1,1,4380_7778208_1110112,4380_1716 -4380_78120,291,4380_108971,Commons Road,55786-00013-1,1,4380_7778208_1110111,4380_1716 -4380_78120,292,4380_108972,Commons Road,56003-00016-1,1,4380_7778208_1110112,4380_1716 -4380_78120,293,4380_108973,Commons Road,55995-00017-1,1,4380_7778208_1110112,4380_1716 -4380_78120,294,4380_108974,Commons Road,55999-00018-1,1,4380_7778208_1110112,4380_1716 -4380_78120,295,4380_108975,Commons Road,56001-00019-1,1,4380_7778208_1110112,4380_1716 -4380_78120,296,4380_108976,Commons Road,55787-00021-1,1,4380_7778208_1110111,4380_1716 -4380_77955,288,4380_10898,Enfield,57769-00011-1,0,4380_7778208_1150104,4380_238 -4380_78120,285,4380_108984,Commons Road,56694-00009-1,1,4380_7778208_1110114,4380_1716 -4380_78120,286,4380_108985,Commons Road,56688-00010-1,1,4380_7778208_1110114,4380_1716 -4380_78120,297,4380_108986,Commons Road,56012-00008-1,1,4380_7778208_1110112,4380_1716 -4380_78120,288,4380_108987,Commons Road,56686-00011-1,1,4380_7778208_1110114,4380_1716 -4380_78120,287,4380_108988,Commons Road,56690-00012-1,1,4380_7778208_1110114,4380_1716 -4380_78120,289,4380_108989,Commons Road,56692-00014-1,1,4380_7778208_1110114,4380_1716 -4380_77955,287,4380_10899,Enfield,57763-00012-1,0,4380_7778208_1150104,4380_238 -4380_78120,290,4380_108990,Commons Road,56695-00015-1,1,4380_7778208_1110114,4380_1716 -4380_78120,291,4380_108991,Commons Road,56349-00013-1,1,4380_7778208_1110113,4380_1716 -4380_78120,292,4380_108992,Commons Road,56689-00016-1,1,4380_7778208_1110114,4380_1716 -4380_78120,293,4380_108993,Commons Road,56687-00017-1,1,4380_7778208_1110114,4380_1716 -4380_78120,294,4380_108994,Commons Road,56691-00018-1,1,4380_7778208_1110114,4380_1716 -4380_78120,295,4380_108995,Commons Road,56693-00019-1,1,4380_7778208_1110114,4380_1716 -4380_78120,296,4380_108996,Commons Road,56350-00021-1,1,4380_7778208_1110113,4380_1716 -4380_78113,291,4380_1090,Dublin via Airport,49969-00013-1,1,4380_7778208_1000906,4380_18 -4380_77955,289,4380_10900,Enfield,57761-00014-1,0,4380_7778208_1150104,4380_238 -4380_78120,285,4380_109003,Commons Road,57320-00009-1,1,4380_7778208_1110116,4380_1716 -4380_78120,286,4380_109004,Commons Road,57316-00010-1,1,4380_7778208_1110116,4380_1716 -4380_78120,288,4380_109005,Commons Road,57322-00011-1,1,4380_7778208_1110116,4380_1716 -4380_78120,287,4380_109006,Commons Road,57324-00012-1,1,4380_7778208_1110116,4380_1716 -4380_78120,289,4380_109007,Commons Road,57318-00014-1,1,4380_7778208_1110116,4380_1716 -4380_78120,290,4380_109008,Commons Road,57321-00015-1,1,4380_7778208_1110116,4380_1716 -4380_78120,291,4380_109009,Commons Road,57030-00013-1,1,4380_7778208_1110115,4380_1716 -4380_77955,290,4380_10901,Enfield,57766-00015-1,0,4380_7778208_1150104,4380_238 -4380_78120,292,4380_109010,Commons Road,57317-00016-1,1,4380_7778208_1110116,4380_1716 -4380_78120,293,4380_109011,Commons Road,57323-00017-1,1,4380_7778208_1110116,4380_1716 -4380_78120,294,4380_109012,Commons Road,57325-00018-1,1,4380_7778208_1110116,4380_1716 -4380_78120,295,4380_109013,Commons Road,57319-00019-1,1,4380_7778208_1110116,4380_1716 -4380_78120,296,4380_109014,Commons Road,57031-00021-1,1,4380_7778208_1110115,4380_1716 -4380_77955,292,4380_10902,Enfield,57768-00016-1,0,4380_7778208_1150104,4380_238 -4380_78120,285,4380_109022,Commons Road,57036-00009-1,1,4380_7778208_1110115,4380_1716 -4380_78120,286,4380_109023,Commons Road,57034-00010-1,1,4380_7778208_1110115,4380_1716 -4380_78120,297,4380_109024,Commons Road,56374-00008-1,1,4380_7778208_1110113,4380_1716 -4380_78120,288,4380_109025,Commons Road,57038-00011-1,1,4380_7778208_1110115,4380_1716 -4380_78120,287,4380_109026,Commons Road,57042-00012-1,1,4380_7778208_1110115,4380_1716 -4380_78120,289,4380_109027,Commons Road,57040-00014-1,1,4380_7778208_1110115,4380_1716 -4380_78120,290,4380_109028,Commons Road,57037-00015-1,1,4380_7778208_1110115,4380_1716 -4380_78120,291,4380_109029,Commons Road,56708-00013-1,1,4380_7778208_1110114,4380_1716 -4380_77955,293,4380_10903,Enfield,57770-00017-1,0,4380_7778208_1150104,4380_238 -4380_78120,292,4380_109030,Commons Road,57035-00016-1,1,4380_7778208_1110115,4380_1716 -4380_78120,293,4380_109031,Commons Road,57039-00017-1,1,4380_7778208_1110115,4380_1716 -4380_78120,294,4380_109032,Commons Road,57043-00018-1,1,4380_7778208_1110115,4380_1716 -4380_78120,295,4380_109033,Commons Road,57041-00019-1,1,4380_7778208_1110115,4380_1716 -4380_78120,296,4380_109034,Commons Road,56709-00021-1,1,4380_7778208_1110114,4380_1716 -4380_77955,294,4380_10904,Enfield,57764-00018-1,0,4380_7778208_1150104,4380_238 -4380_78120,285,4380_109041,Commons Road,56379-00009-1,1,4380_7778208_1110113,4380_1716 -4380_78120,286,4380_109042,Commons Road,56383-00010-1,1,4380_7778208_1110113,4380_1716 -4380_78120,288,4380_109043,Commons Road,56385-00011-1,1,4380_7778208_1110113,4380_1716 -4380_78120,287,4380_109044,Commons Road,56381-00012-1,1,4380_7778208_1110113,4380_1716 -4380_78120,289,4380_109045,Commons Road,56377-00014-1,1,4380_7778208_1110113,4380_1716 -4380_78120,290,4380_109046,Commons Road,56380-00015-1,1,4380_7778208_1110113,4380_1716 -4380_78120,291,4380_109047,Commons Road,56040-00013-1,1,4380_7778208_1110112,4380_1716 -4380_78120,292,4380_109048,Commons Road,56384-00016-1,1,4380_7778208_1110113,4380_1716 -4380_78120,293,4380_109049,Commons Road,56386-00017-1,1,4380_7778208_1110113,4380_1716 -4380_77955,295,4380_10905,Enfield,57762-00019-1,0,4380_7778208_1150104,4380_238 -4380_78120,294,4380_109050,Commons Road,56382-00018-1,1,4380_7778208_1110113,4380_1716 -4380_78120,295,4380_109051,Commons Road,56378-00019-1,1,4380_7778208_1110113,4380_1716 -4380_78120,296,4380_109052,Commons Road,56041-00021-1,1,4380_7778208_1110112,4380_1716 -4380_78120,285,4380_109060,Commons Road,56047-00009-1,1,4380_7778208_1110112,4380_1716 -4380_78120,286,4380_109061,Commons Road,56045-00010-1,1,4380_7778208_1110112,4380_1716 -4380_78120,297,4380_109062,Commons Road,55799-00008-1,1,4380_7778208_1110111,4380_1716 -4380_78120,288,4380_109063,Commons Road,56049-00011-1,1,4380_7778208_1110112,4380_1716 -4380_78120,287,4380_109064,Commons Road,56053-00012-1,1,4380_7778208_1110112,4380_1716 -4380_78120,289,4380_109065,Commons Road,56043-00014-1,1,4380_7778208_1110112,4380_1716 -4380_78120,290,4380_109066,Commons Road,56048-00015-1,1,4380_7778208_1110112,4380_1716 -4380_78120,291,4380_109067,Commons Road,55797-00013-1,1,4380_7778208_1110111,4380_1716 -4380_78120,292,4380_109068,Commons Road,56046-00016-1,1,4380_7778208_1110112,4380_1716 -4380_78120,293,4380_109069,Commons Road,56050-00017-1,1,4380_7778208_1110112,4380_1716 -4380_78120,294,4380_109070,Commons Road,56054-00018-1,1,4380_7778208_1110112,4380_1716 -4380_78120,295,4380_109071,Commons Road,56044-00019-1,1,4380_7778208_1110112,4380_1716 -4380_78120,296,4380_109072,Commons Road,55798-00021-1,1,4380_7778208_1110111,4380_1716 -4380_78120,285,4380_109079,Commons Road,56734-00009-1,1,4380_7778208_1110114,4380_1716 -4380_78120,286,4380_109080,Commons Road,56738-00010-1,1,4380_7778208_1110114,4380_1716 -4380_78120,288,4380_109081,Commons Road,56742-00011-1,1,4380_7778208_1110114,4380_1716 -4380_78120,287,4380_109082,Commons Road,56740-00012-1,1,4380_7778208_1110114,4380_1716 -4380_78120,289,4380_109083,Commons Road,56736-00014-1,1,4380_7778208_1110114,4380_1716 -4380_78120,290,4380_109084,Commons Road,56735-00015-1,1,4380_7778208_1110114,4380_1716 -4380_78120,291,4380_109085,Commons Road,56401-00013-1,1,4380_7778208_1110113,4380_1716 -4380_78120,292,4380_109086,Commons Road,56739-00016-1,1,4380_7778208_1110114,4380_1716 -4380_78120,293,4380_109087,Commons Road,56743-00017-1,1,4380_7778208_1110114,4380_1716 -4380_78120,294,4380_109088,Commons Road,56741-00018-1,1,4380_7778208_1110114,4380_1716 -4380_78120,295,4380_109089,Commons Road,56737-00019-1,1,4380_7778208_1110114,4380_1716 -4380_78120,296,4380_109090,Commons Road,56402-00021-1,1,4380_7778208_1110113,4380_1716 -4380_78120,285,4380_109098,Commons Road,57362-00009-1,1,4380_7778208_1110116,4380_1716 -4380_78120,286,4380_109099,Commons Road,57364-00010-1,1,4380_7778208_1110116,4380_1716 -4380_78113,292,4380_1091,Dublin via Airport,49966-00016-1,1,4380_7778208_1000906,4380_18 -4380_78120,297,4380_109100,Commons Road,56068-00008-1,1,4380_7778208_1110112,4380_1717 -4380_78120,288,4380_109101,Commons Road,57356-00011-1,1,4380_7778208_1110116,4380_1716 -4380_78120,287,4380_109102,Commons Road,57358-00012-1,1,4380_7778208_1110116,4380_1716 -4380_78120,289,4380_109103,Commons Road,57360-00014-1,1,4380_7778208_1110116,4380_1716 -4380_78120,290,4380_109104,Commons Road,57363-00015-1,1,4380_7778208_1110116,4380_1716 -4380_78120,291,4380_109105,Commons Road,57078-00013-1,1,4380_7778208_1110115,4380_1716 -4380_78120,292,4380_109106,Commons Road,57365-00016-1,1,4380_7778208_1110116,4380_1716 -4380_78120,293,4380_109107,Commons Road,57357-00017-1,1,4380_7778208_1110116,4380_1716 -4380_78120,294,4380_109108,Commons Road,57359-00018-1,1,4380_7778208_1110116,4380_1716 -4380_78120,295,4380_109109,Commons Road,57361-00019-1,1,4380_7778208_1110116,4380_1716 -4380_78120,296,4380_109110,Commons Road,57079-00021-1,1,4380_7778208_1110115,4380_1716 -4380_78120,285,4380_109117,Commons Road,57082-00009-1,1,4380_7778208_1110115,4380_1716 -4380_78120,286,4380_109118,Commons Road,57084-00010-1,1,4380_7778208_1110115,4380_1716 -4380_78120,288,4380_109119,Commons Road,57090-00011-1,1,4380_7778208_1110115,4380_1716 -4380_78120,287,4380_109120,Commons Road,57080-00012-1,1,4380_7778208_1110115,4380_1716 -4380_78120,289,4380_109121,Commons Road,57086-00014-1,1,4380_7778208_1110115,4380_1716 -4380_78120,290,4380_109122,Commons Road,57083-00015-1,1,4380_7778208_1110115,4380_1716 -4380_78120,291,4380_109123,Commons Road,56756-00013-1,1,4380_7778208_1110114,4380_1716 -4380_78120,292,4380_109124,Commons Road,57085-00016-1,1,4380_7778208_1110115,4380_1716 -4380_78120,293,4380_109125,Commons Road,57091-00017-1,1,4380_7778208_1110115,4380_1716 -4380_78120,294,4380_109126,Commons Road,57081-00018-1,1,4380_7778208_1110115,4380_1716 -4380_78120,295,4380_109127,Commons Road,57087-00019-1,1,4380_7778208_1110115,4380_1716 -4380_78120,296,4380_109128,Commons Road,56757-00021-1,1,4380_7778208_1110114,4380_1716 -4380_77955,285,4380_10913,Mullingar,57967-00009-1,0,4380_7778208_1150108,4380_239 -4380_78120,285,4380_109136,Commons Road,56437-00009-1,1,4380_7778208_1110113,4380_1716 -4380_78120,286,4380_109137,Commons Road,56435-00010-1,1,4380_7778208_1110113,4380_1716 -4380_78120,297,4380_109138,Commons Road,56434-00008-1,1,4380_7778208_1110113,4380_1717 -4380_78120,288,4380_109139,Commons Road,56430-00011-1,1,4380_7778208_1110113,4380_1716 -4380_77955,286,4380_10914,Mullingar,57965-00010-1,0,4380_7778208_1150108,4380_239 -4380_78120,287,4380_109140,Commons Road,56428-00012-1,1,4380_7778208_1110113,4380_1716 -4380_78120,289,4380_109141,Commons Road,56432-00014-1,1,4380_7778208_1110113,4380_1716 -4380_78120,290,4380_109142,Commons Road,56438-00015-1,1,4380_7778208_1110113,4380_1716 -4380_78120,291,4380_109143,Commons Road,56092-00013-1,1,4380_7778208_1110112,4380_1717 -4380_78120,292,4380_109144,Commons Road,56436-00016-1,1,4380_7778208_1110113,4380_1716 -4380_78120,293,4380_109145,Commons Road,56431-00017-1,1,4380_7778208_1110113,4380_1716 -4380_78120,294,4380_109146,Commons Road,56429-00018-1,1,4380_7778208_1110113,4380_1716 -4380_78120,295,4380_109147,Commons Road,56433-00019-1,1,4380_7778208_1110113,4380_1716 -4380_78120,296,4380_109148,Commons Road,56093-00021-1,1,4380_7778208_1110112,4380_1717 -4380_77955,297,4380_10915,Enfield,57578-00008-1,0,4380_7778208_1150101,4380_238 -4380_78120,285,4380_109155,Commons Road,56094-00009-1,1,4380_7778208_1110112,4380_1716 -4380_78120,286,4380_109156,Commons Road,56103-00010-1,1,4380_7778208_1110112,4380_1716 -4380_78120,288,4380_109157,Commons Road,56098-00011-1,1,4380_7778208_1110112,4380_1716 -4380_78120,287,4380_109158,Commons Road,56101-00012-1,1,4380_7778208_1110112,4380_1716 -4380_78120,289,4380_109159,Commons Road,56105-00014-1,1,4380_7778208_1110112,4380_1716 -4380_77955,288,4380_10916,Mullingar,57969-00011-1,0,4380_7778208_1150108,4380_239 -4380_78120,290,4380_109160,Commons Road,56095-00015-1,1,4380_7778208_1110112,4380_1716 -4380_78120,291,4380_109161,Commons Road,55809-00013-1,1,4380_7778208_1110111,4380_1716 -4380_78120,292,4380_109162,Commons Road,56104-00016-1,1,4380_7778208_1110112,4380_1716 -4380_78120,293,4380_109163,Commons Road,56099-00017-1,1,4380_7778208_1110112,4380_1716 -4380_78120,294,4380_109164,Commons Road,56102-00018-1,1,4380_7778208_1110112,4380_1716 -4380_78120,295,4380_109165,Commons Road,56106-00019-1,1,4380_7778208_1110112,4380_1716 -4380_78120,296,4380_109166,Commons Road,55810-00021-1,1,4380_7778208_1110111,4380_1716 -4380_77955,287,4380_10917,Mullingar,57961-00012-1,0,4380_7778208_1150108,4380_239 -4380_78120,285,4380_109174,Commons Road,56784-00009-1,1,4380_7778208_1110114,4380_1716 -4380_78120,286,4380_109175,Commons Road,56786-00010-1,1,4380_7778208_1110114,4380_1716 -4380_78120,297,4380_109176,Commons Road,55811-00008-1,1,4380_7778208_1110111,4380_1716 -4380_78120,288,4380_109177,Commons Road,56790-00011-1,1,4380_7778208_1110114,4380_1716 -4380_78120,287,4380_109178,Commons Road,56788-00012-1,1,4380_7778208_1110114,4380_1716 -4380_78120,289,4380_109179,Commons Road,56782-00014-1,1,4380_7778208_1110114,4380_1716 -4380_77955,289,4380_10918,Mullingar,57963-00014-1,0,4380_7778208_1150108,4380_239 -4380_78120,290,4380_109180,Commons Road,56785-00015-1,1,4380_7778208_1110114,4380_1716 -4380_78120,291,4380_109181,Commons Road,56452-00013-1,1,4380_7778208_1110113,4380_1716 -4380_78120,292,4380_109182,Commons Road,56787-00016-1,1,4380_7778208_1110114,4380_1716 -4380_78120,293,4380_109183,Commons Road,56791-00017-1,1,4380_7778208_1110114,4380_1716 -4380_78120,294,4380_109184,Commons Road,56789-00018-1,1,4380_7778208_1110114,4380_1716 -4380_78120,295,4380_109185,Commons Road,56783-00019-1,1,4380_7778208_1110114,4380_1716 -4380_78120,296,4380_109186,Commons Road,56453-00021-1,1,4380_7778208_1110113,4380_1716 -4380_77955,290,4380_10919,Mullingar,57968-00015-1,0,4380_7778208_1150108,4380_239 -4380_78120,285,4380_109193,Commons Road,57404-00009-1,1,4380_7778208_1110116,4380_1716 -4380_78120,286,4380_109194,Commons Road,57402-00010-1,1,4380_7778208_1110116,4380_1716 -4380_78120,288,4380_109195,Commons Road,57398-00011-1,1,4380_7778208_1110116,4380_1716 -4380_78120,287,4380_109196,Commons Road,57400-00012-1,1,4380_7778208_1110116,4380_1716 -4380_78120,289,4380_109197,Commons Road,57396-00014-1,1,4380_7778208_1110116,4380_1716 -4380_78120,290,4380_109198,Commons Road,57405-00015-1,1,4380_7778208_1110116,4380_1716 -4380_78120,291,4380_109199,Commons Road,57126-00013-1,1,4380_7778208_1110115,4380_1716 -4380_78113,293,4380_1092,Dublin via Airport,49976-00017-1,1,4380_7778208_1000906,4380_18 -4380_77955,291,4380_10920,Mullingar,57915-00013-1,0,4380_7778208_1150107,4380_245 -4380_78120,292,4380_109200,Commons Road,57403-00016-1,1,4380_7778208_1110116,4380_1716 -4380_78120,293,4380_109201,Commons Road,57399-00017-1,1,4380_7778208_1110116,4380_1716 -4380_78120,294,4380_109202,Commons Road,57401-00018-1,1,4380_7778208_1110116,4380_1716 -4380_78120,295,4380_109203,Commons Road,57397-00019-1,1,4380_7778208_1110116,4380_1716 -4380_78120,296,4380_109204,Commons Road,57127-00021-1,1,4380_7778208_1110115,4380_1716 -4380_77955,292,4380_10921,Mullingar,57966-00016-1,0,4380_7778208_1150108,4380_239 -4380_78120,285,4380_109212,Commons Road,57134-00009-1,1,4380_7778208_1110115,4380_1716 -4380_78120,286,4380_109213,Commons Road,57138-00010-1,1,4380_7778208_1110115,4380_1716 -4380_78120,297,4380_109214,Commons Road,56132-00008-1,1,4380_7778208_1110112,4380_1716 -4380_78120,288,4380_109215,Commons Road,57130-00011-1,1,4380_7778208_1110115,4380_1716 -4380_78120,287,4380_109216,Commons Road,57136-00012-1,1,4380_7778208_1110115,4380_1716 -4380_78120,289,4380_109217,Commons Road,57128-00014-1,1,4380_7778208_1110115,4380_1716 -4380_78120,290,4380_109218,Commons Road,57135-00015-1,1,4380_7778208_1110115,4380_1716 -4380_78120,291,4380_109219,Commons Road,56804-00013-1,1,4380_7778208_1110114,4380_1716 -4380_77955,293,4380_10922,Mullingar,57970-00017-1,0,4380_7778208_1150108,4380_239 -4380_78120,292,4380_109220,Commons Road,57139-00016-1,1,4380_7778208_1110115,4380_1716 -4380_78120,293,4380_109221,Commons Road,57131-00017-1,1,4380_7778208_1110115,4380_1716 -4380_78120,294,4380_109222,Commons Road,57137-00018-1,1,4380_7778208_1110115,4380_1716 -4380_78120,295,4380_109223,Commons Road,57129-00019-1,1,4380_7778208_1110115,4380_1716 -4380_78120,296,4380_109224,Commons Road,56805-00021-1,1,4380_7778208_1110114,4380_1716 -4380_77955,294,4380_10923,Mullingar,57962-00018-1,0,4380_7778208_1150108,4380_239 -4380_78120,285,4380_109231,Commons Road,56488-00009-1,1,4380_7778208_1110113,4380_1716 -4380_78120,286,4380_109232,Commons Road,56482-00010-1,1,4380_7778208_1110113,4380_1716 -4380_78120,288,4380_109233,Commons Road,56486-00011-1,1,4380_7778208_1110113,4380_1716 -4380_78120,287,4380_109234,Commons Road,56480-00012-1,1,4380_7778208_1110113,4380_1716 -4380_78120,289,4380_109235,Commons Road,56484-00014-1,1,4380_7778208_1110113,4380_1716 -4380_78120,290,4380_109236,Commons Road,56489-00015-1,1,4380_7778208_1110113,4380_1716 -4380_78120,291,4380_109237,Commons Road,56143-00013-1,1,4380_7778208_1110112,4380_1716 -4380_78120,292,4380_109238,Commons Road,56483-00016-1,1,4380_7778208_1110113,4380_1716 -4380_78120,293,4380_109239,Commons Road,56487-00017-1,1,4380_7778208_1110113,4380_1716 -4380_77955,295,4380_10924,Mullingar,57964-00019-1,0,4380_7778208_1150108,4380_239 -4380_78120,294,4380_109240,Commons Road,56481-00018-1,1,4380_7778208_1110113,4380_1716 -4380_78120,295,4380_109241,Commons Road,56485-00019-1,1,4380_7778208_1110113,4380_1716 -4380_78120,296,4380_109242,Commons Road,56144-00021-1,1,4380_7778208_1110112,4380_1716 -4380_77955,296,4380_10925,Mullingar,57916-00021-1,0,4380_7778208_1150107,4380_245 -4380_78120,285,4380_109250,Commons Road,56146-00009-1,1,4380_7778208_1110112,4380_1716 -4380_78120,286,4380_109251,Commons Road,56150-00010-1,1,4380_7778208_1110112,4380_1716 -4380_78120,297,4380_109252,Commons Road,56494-00008-1,1,4380_7778208_1110113,4380_1716 -4380_78120,288,4380_109253,Commons Road,56156-00011-1,1,4380_7778208_1110112,4380_1716 -4380_78120,287,4380_109254,Commons Road,56148-00012-1,1,4380_7778208_1110112,4380_1716 -4380_78120,289,4380_109255,Commons Road,56154-00014-1,1,4380_7778208_1110112,4380_1716 -4380_78120,290,4380_109256,Commons Road,56147-00015-1,1,4380_7778208_1110112,4380_1716 -4380_78120,291,4380_109257,Commons Road,55820-00013-1,1,4380_7778208_1110111,4380_1716 -4380_78120,292,4380_109258,Commons Road,56151-00016-1,1,4380_7778208_1110112,4380_1716 -4380_78120,293,4380_109259,Commons Road,56157-00017-1,1,4380_7778208_1110112,4380_1716 -4380_78120,294,4380_109260,Commons Road,56149-00018-1,1,4380_7778208_1110112,4380_1716 -4380_78120,295,4380_109261,Commons Road,56155-00019-1,1,4380_7778208_1110112,4380_1716 -4380_78120,296,4380_109262,Commons Road,55821-00021-1,1,4380_7778208_1110111,4380_1716 -4380_78120,285,4380_109269,Commons Road,56834-00009-1,1,4380_7778208_1110114,4380_1716 -4380_78120,286,4380_109270,Commons Road,56832-00010-1,1,4380_7778208_1110114,4380_1716 -4380_78120,288,4380_109271,Commons Road,56838-00011-1,1,4380_7778208_1110114,4380_1716 -4380_78120,287,4380_109272,Commons Road,56830-00012-1,1,4380_7778208_1110114,4380_1716 -4380_78120,289,4380_109273,Commons Road,56836-00014-1,1,4380_7778208_1110114,4380_1716 -4380_78120,290,4380_109274,Commons Road,56835-00015-1,1,4380_7778208_1110114,4380_1716 -4380_78120,291,4380_109275,Commons Road,56503-00013-1,1,4380_7778208_1110113,4380_1716 -4380_78120,292,4380_109276,Commons Road,56833-00016-1,1,4380_7778208_1110114,4380_1716 -4380_78120,293,4380_109277,Commons Road,56839-00017-1,1,4380_7778208_1110114,4380_1716 -4380_78120,294,4380_109278,Commons Road,56831-00018-1,1,4380_7778208_1110114,4380_1716 -4380_78120,295,4380_109279,Commons Road,56837-00019-1,1,4380_7778208_1110114,4380_1716 -4380_78120,296,4380_109280,Commons Road,56504-00021-1,1,4380_7778208_1110113,4380_1716 -4380_78120,285,4380_109288,Commons Road,57436-00009-1,1,4380_7778208_1110116,4380_1716 -4380_78120,286,4380_109289,Commons Road,57442-00010-1,1,4380_7778208_1110116,4380_1716 -4380_78120,297,4380_109290,Commons Road,55825-00008-1,1,4380_7778208_1110111,4380_1716 -4380_78120,288,4380_109291,Commons Road,57440-00011-1,1,4380_7778208_1110116,4380_1716 -4380_78120,287,4380_109292,Commons Road,57444-00012-1,1,4380_7778208_1110116,4380_1716 -4380_78120,289,4380_109293,Commons Road,57438-00014-1,1,4380_7778208_1110116,4380_1716 -4380_78120,290,4380_109294,Commons Road,57437-00015-1,1,4380_7778208_1110116,4380_1716 -4380_78120,291,4380_109295,Commons Road,57174-00013-1,1,4380_7778208_1110115,4380_1716 -4380_78120,292,4380_109296,Commons Road,57443-00016-1,1,4380_7778208_1110116,4380_1716 -4380_78120,293,4380_109297,Commons Road,57441-00017-1,1,4380_7778208_1110116,4380_1716 -4380_78120,294,4380_109298,Commons Road,57445-00018-1,1,4380_7778208_1110116,4380_1716 -4380_78120,295,4380_109299,Commons Road,57439-00019-1,1,4380_7778208_1110116,4380_1716 -4380_78113,294,4380_1093,Dublin via Airport,49974-00018-1,1,4380_7778208_1000906,4380_18 -4380_78120,296,4380_109300,Commons Road,57175-00021-1,1,4380_7778208_1110115,4380_1716 -4380_78121,285,4380_109307,Blackcastle,56856-00009-1,0,4380_7778208_1110115,4380_1718 -4380_78121,286,4380_109308,Blackcastle,56858-00010-1,0,4380_7778208_1110115,4380_1718 -4380_78121,288,4380_109309,Blackcastle,56852-00011-1,0,4380_7778208_1110115,4380_1718 -4380_78121,287,4380_109310,Blackcastle,56860-00012-1,0,4380_7778208_1110115,4380_1718 -4380_78121,289,4380_109311,Blackcastle,56854-00014-1,0,4380_7778208_1110115,4380_1718 -4380_78121,290,4380_109312,Blackcastle,56857-00015-1,0,4380_7778208_1110115,4380_1718 -4380_78121,291,4380_109313,Blackcastle,56528-00013-1,0,4380_7778208_1110114,4380_1718 -4380_78121,292,4380_109314,Blackcastle,56859-00016-1,0,4380_7778208_1110115,4380_1718 -4380_78121,293,4380_109315,Blackcastle,56853-00017-1,0,4380_7778208_1110115,4380_1718 -4380_78121,294,4380_109316,Blackcastle,56861-00018-1,0,4380_7778208_1110115,4380_1718 -4380_78121,295,4380_109317,Blackcastle,56855-00019-1,0,4380_7778208_1110115,4380_1718 -4380_78121,296,4380_109318,Blackcastle,56529-00021-1,0,4380_7778208_1110114,4380_1718 -4380_77955,285,4380_10932,Enfield,57626-00009-1,0,4380_7778208_1150102,4380_238 -4380_78121,285,4380_109325,Blackcastle,56191-00009-1,0,4380_7778208_1110113,4380_1718 -4380_78121,286,4380_109326,Blackcastle,56187-00010-1,0,4380_7778208_1110113,4380_1718 -4380_78121,288,4380_109327,Blackcastle,56193-00011-1,0,4380_7778208_1110113,4380_1718 -4380_78121,287,4380_109328,Blackcastle,56189-00012-1,0,4380_7778208_1110113,4380_1718 -4380_78121,289,4380_109329,Blackcastle,56185-00014-1,0,4380_7778208_1110113,4380_1718 -4380_77955,286,4380_10933,Enfield,57628-00010-1,0,4380_7778208_1150102,4380_238 -4380_78121,290,4380_109330,Blackcastle,56192-00015-1,0,4380_7778208_1110113,4380_1718 -4380_78121,291,4380_109331,Blackcastle,55844-00013-1,0,4380_7778208_1110112,4380_1718 -4380_78121,292,4380_109332,Blackcastle,56188-00016-1,0,4380_7778208_1110113,4380_1718 -4380_78121,293,4380_109333,Blackcastle,56194-00017-1,0,4380_7778208_1110113,4380_1718 -4380_78121,294,4380_109334,Blackcastle,56190-00018-1,0,4380_7778208_1110113,4380_1718 -4380_78121,295,4380_109335,Blackcastle,56186-00019-1,0,4380_7778208_1110113,4380_1718 -4380_78121,296,4380_109336,Blackcastle,55845-00021-1,0,4380_7778208_1110112,4380_1718 -4380_77955,288,4380_10934,Enfield,57630-00011-1,0,4380_7778208_1150102,4380_238 -4380_78121,285,4380_109343,Blackcastle,55859-00009-1,0,4380_7778208_1110112,4380_1718 -4380_78121,286,4380_109344,Blackcastle,55850-00010-1,0,4380_7778208_1110112,4380_1718 -4380_78121,288,4380_109345,Blackcastle,55857-00011-1,0,4380_7778208_1110112,4380_1718 -4380_78121,287,4380_109346,Blackcastle,55852-00012-1,0,4380_7778208_1110112,4380_1718 -4380_78121,289,4380_109347,Blackcastle,55855-00014-1,0,4380_7778208_1110112,4380_1718 -4380_78121,290,4380_109348,Blackcastle,55860-00015-1,0,4380_7778208_1110112,4380_1718 -4380_78121,291,4380_109349,Blackcastle,55755-00013-1,0,4380_7778208_1110111,4380_1719 -4380_77955,287,4380_10935,Enfield,57632-00012-1,0,4380_7778208_1150102,4380_238 -4380_78121,292,4380_109350,Blackcastle,55851-00016-1,0,4380_7778208_1110112,4380_1718 -4380_78121,293,4380_109351,Blackcastle,55858-00017-1,0,4380_7778208_1110112,4380_1718 -4380_78121,294,4380_109352,Blackcastle,55853-00018-1,0,4380_7778208_1110112,4380_1718 -4380_78121,295,4380_109353,Blackcastle,55856-00019-1,0,4380_7778208_1110112,4380_1718 -4380_78121,296,4380_109354,Blackcastle,55756-00021-1,0,4380_7778208_1110111,4380_1719 -4380_78121,297,4380_109356,Blackcastle,56203-00008-1,0,4380_7778208_1110113,4380_1718 -4380_77955,289,4380_10936,Enfield,57634-00014-1,0,4380_7778208_1150102,4380_238 -4380_78121,285,4380_109363,Blackcastle,56558-00009-1,0,4380_7778208_1110114,4380_1718 -4380_78121,286,4380_109364,Blackcastle,56560-00010-1,0,4380_7778208_1110114,4380_1718 -4380_78121,288,4380_109365,Blackcastle,56556-00011-1,0,4380_7778208_1110114,4380_1718 -4380_78121,287,4380_109366,Blackcastle,56554-00012-1,0,4380_7778208_1110114,4380_1718 -4380_78121,289,4380_109367,Blackcastle,56562-00014-1,0,4380_7778208_1110114,4380_1718 -4380_78121,290,4380_109368,Blackcastle,56559-00015-1,0,4380_7778208_1110114,4380_1718 -4380_78121,291,4380_109369,Blackcastle,56208-00013-1,0,4380_7778208_1110113,4380_1719 -4380_77955,290,4380_10937,Enfield,57627-00015-1,0,4380_7778208_1150102,4380_238 -4380_78121,292,4380_109370,Blackcastle,56561-00016-1,0,4380_7778208_1110114,4380_1718 -4380_78121,293,4380_109371,Blackcastle,56557-00017-1,0,4380_7778208_1110114,4380_1718 -4380_78121,294,4380_109372,Blackcastle,56555-00018-1,0,4380_7778208_1110114,4380_1718 -4380_78121,295,4380_109373,Blackcastle,56563-00019-1,0,4380_7778208_1110114,4380_1718 -4380_78121,296,4380_109374,Blackcastle,56209-00021-1,0,4380_7778208_1110113,4380_1719 -4380_77955,291,4380_10938,Enfield,9133-00013-1,0,4380_7778208_1150102,4380_244 -4380_78121,285,4380_109381,Blackcastle,57206-00009-1,0,4380_7778208_1110116,4380_1718 -4380_78121,286,4380_109382,Blackcastle,57212-00010-1,0,4380_7778208_1110116,4380_1718 -4380_78121,288,4380_109383,Blackcastle,57214-00011-1,0,4380_7778208_1110116,4380_1718 -4380_78121,287,4380_109384,Blackcastle,57208-00012-1,0,4380_7778208_1110116,4380_1718 -4380_78121,289,4380_109385,Blackcastle,57210-00014-1,0,4380_7778208_1110116,4380_1718 -4380_78121,290,4380_109386,Blackcastle,57207-00015-1,0,4380_7778208_1110116,4380_1718 -4380_78121,291,4380_109387,Blackcastle,56896-00013-1,0,4380_7778208_1110115,4380_1719 -4380_78121,292,4380_109388,Blackcastle,57213-00016-1,0,4380_7778208_1110116,4380_1718 -4380_78121,293,4380_109389,Blackcastle,57215-00017-1,0,4380_7778208_1110116,4380_1718 -4380_77955,292,4380_10939,Enfield,57629-00016-1,0,4380_7778208_1150102,4380_238 -4380_78121,294,4380_109390,Blackcastle,57209-00018-1,0,4380_7778208_1110116,4380_1718 -4380_78121,295,4380_109391,Blackcastle,57211-00019-1,0,4380_7778208_1110116,4380_1718 -4380_78121,296,4380_109392,Blackcastle,56897-00021-1,0,4380_7778208_1110115,4380_1719 -4380_78121,297,4380_109394,Blackcastle,55760-00008-1,0,4380_7778208_1110111,4380_1718 -4380_78113,295,4380_1094,Dublin via Airport,49972-00019-1,1,4380_7778208_1000906,4380_18 -4380_77955,293,4380_10940,Enfield,57631-00017-1,0,4380_7778208_1150102,4380_238 -4380_78121,285,4380_109401,Blackcastle,56904-00009-1,0,4380_7778208_1110115,4380_1718 -4380_78121,286,4380_109402,Blackcastle,56902-00010-1,0,4380_7778208_1110115,4380_1718 -4380_78121,288,4380_109403,Blackcastle,56908-00011-1,0,4380_7778208_1110115,4380_1718 -4380_78121,287,4380_109404,Blackcastle,56900-00012-1,0,4380_7778208_1110115,4380_1718 -4380_78121,289,4380_109405,Blackcastle,56906-00014-1,0,4380_7778208_1110115,4380_1718 -4380_78121,290,4380_109406,Blackcastle,56905-00015-1,0,4380_7778208_1110115,4380_1718 -4380_78121,291,4380_109407,Blackcastle,56576-00013-1,0,4380_7778208_1110114,4380_1718 -4380_78121,292,4380_109408,Blackcastle,56903-00016-1,0,4380_7778208_1110115,4380_1718 -4380_78121,293,4380_109409,Blackcastle,56909-00017-1,0,4380_7778208_1110115,4380_1718 -4380_77955,294,4380_10941,Enfield,57633-00018-1,0,4380_7778208_1150102,4380_238 -4380_78121,294,4380_109410,Blackcastle,56901-00018-1,0,4380_7778208_1110115,4380_1718 -4380_78121,295,4380_109411,Blackcastle,56907-00019-1,0,4380_7778208_1110115,4380_1718 -4380_78121,296,4380_109412,Blackcastle,56577-00021-1,0,4380_7778208_1110114,4380_1718 -4380_78121,285,4380_109419,Blackcastle,56238-00009-1,0,4380_7778208_1110113,4380_1718 -4380_77955,295,4380_10942,Enfield,57635-00019-1,0,4380_7778208_1150102,4380_238 -4380_78121,286,4380_109420,Blackcastle,56244-00010-1,0,4380_7778208_1110113,4380_1718 -4380_78121,288,4380_109421,Blackcastle,56240-00011-1,0,4380_7778208_1110113,4380_1718 -4380_78121,287,4380_109422,Blackcastle,56242-00012-1,0,4380_7778208_1110113,4380_1718 -4380_78121,289,4380_109423,Blackcastle,56236-00014-1,0,4380_7778208_1110113,4380_1718 -4380_78121,290,4380_109424,Blackcastle,56239-00015-1,0,4380_7778208_1110113,4380_1718 -4380_78121,291,4380_109425,Blackcastle,55889-00013-1,0,4380_7778208_1110112,4380_1718 -4380_78121,292,4380_109426,Blackcastle,56245-00016-1,0,4380_7778208_1110113,4380_1718 -4380_78121,293,4380_109427,Blackcastle,56241-00017-1,0,4380_7778208_1110113,4380_1718 -4380_78121,294,4380_109428,Blackcastle,56243-00018-1,0,4380_7778208_1110113,4380_1718 -4380_78121,295,4380_109429,Blackcastle,56237-00019-1,0,4380_7778208_1110113,4380_1718 -4380_77955,296,4380_10943,Enfield,57636-00021-1,0,4380_7778208_1150102,4380_244 -4380_78121,296,4380_109430,Blackcastle,55890-00021-1,0,4380_7778208_1110112,4380_1718 -4380_78121,297,4380_109432,Blackcastle,55901-00008-1,0,4380_7778208_1110112,4380_1718 -4380_78121,285,4380_109439,Blackcastle,55908-00009-1,0,4380_7778208_1110112,4380_1718 -4380_78121,286,4380_109440,Blackcastle,55906-00010-1,0,4380_7778208_1110112,4380_1718 -4380_78121,288,4380_109441,Blackcastle,55910-00011-1,0,4380_7778208_1110112,4380_1718 -4380_78121,287,4380_109442,Blackcastle,55904-00012-1,0,4380_7778208_1110112,4380_1718 -4380_78121,289,4380_109443,Blackcastle,55902-00014-1,0,4380_7778208_1110112,4380_1718 -4380_78121,290,4380_109444,Blackcastle,55909-00015-1,0,4380_7778208_1110112,4380_1718 -4380_78121,291,4380_109445,Blackcastle,55766-00013-1,0,4380_7778208_1110111,4380_1718 -4380_78121,292,4380_109446,Blackcastle,55907-00016-1,0,4380_7778208_1110112,4380_1718 -4380_78121,293,4380_109447,Blackcastle,55911-00017-1,0,4380_7778208_1110112,4380_1718 -4380_78121,294,4380_109448,Blackcastle,55905-00018-1,0,4380_7778208_1110112,4380_1718 -4380_78121,295,4380_109449,Blackcastle,55903-00019-1,0,4380_7778208_1110112,4380_1718 -4380_78121,296,4380_109450,Blackcastle,55767-00021-1,0,4380_7778208_1110111,4380_1718 -4380_78121,285,4380_109457,Blackcastle,56608-00009-1,0,4380_7778208_1110114,4380_1718 -4380_78121,286,4380_109458,Blackcastle,56604-00010-1,0,4380_7778208_1110114,4380_1718 -4380_78121,288,4380_109459,Blackcastle,56606-00011-1,0,4380_7778208_1110114,4380_1718 -4380_78121,287,4380_109460,Blackcastle,56610-00012-1,0,4380_7778208_1110114,4380_1718 -4380_78121,289,4380_109461,Blackcastle,56602-00014-1,0,4380_7778208_1110114,4380_1718 -4380_78121,290,4380_109462,Blackcastle,56609-00015-1,0,4380_7778208_1110114,4380_1718 -4380_78121,291,4380_109463,Blackcastle,56259-00013-1,0,4380_7778208_1110113,4380_1718 -4380_78121,292,4380_109464,Blackcastle,56605-00016-1,0,4380_7778208_1110114,4380_1718 -4380_78121,293,4380_109465,Blackcastle,56607-00017-1,0,4380_7778208_1110114,4380_1718 -4380_78121,294,4380_109466,Blackcastle,56611-00018-1,0,4380_7778208_1110114,4380_1718 -4380_78121,295,4380_109467,Blackcastle,56603-00019-1,0,4380_7778208_1110114,4380_1718 -4380_78121,296,4380_109468,Blackcastle,56260-00021-1,0,4380_7778208_1110113,4380_1718 -4380_78121,297,4380_109470,Blackcastle,56269-00008-1,0,4380_7778208_1110113,4380_1718 -4380_78121,285,4380_109477,Blackcastle,57248-00009-1,0,4380_7778208_1110116,4380_1718 -4380_78121,286,4380_109478,Blackcastle,57246-00010-1,0,4380_7778208_1110116,4380_1718 -4380_78121,288,4380_109479,Blackcastle,57252-00011-1,0,4380_7778208_1110116,4380_1718 -4380_78121,287,4380_109480,Blackcastle,57254-00012-1,0,4380_7778208_1110116,4380_1718 -4380_78121,289,4380_109481,Blackcastle,57250-00014-1,0,4380_7778208_1110116,4380_1718 -4380_78121,290,4380_109482,Blackcastle,57249-00015-1,0,4380_7778208_1110116,4380_1718 -4380_78121,291,4380_109483,Blackcastle,56938-00013-1,0,4380_7778208_1110115,4380_1718 -4380_78121,292,4380_109484,Blackcastle,57247-00016-1,0,4380_7778208_1110116,4380_1718 -4380_78121,293,4380_109485,Blackcastle,57253-00017-1,0,4380_7778208_1110116,4380_1718 -4380_78121,294,4380_109486,Blackcastle,57255-00018-1,0,4380_7778208_1110116,4380_1718 -4380_78121,295,4380_109487,Blackcastle,57251-00019-1,0,4380_7778208_1110116,4380_1718 -4380_78121,296,4380_109488,Blackcastle,56939-00021-1,0,4380_7778208_1110115,4380_1718 -4380_78121,285,4380_109495,Blackcastle,56950-00009-1,0,4380_7778208_1110115,4380_1718 -4380_78121,286,4380_109496,Blackcastle,56952-00010-1,0,4380_7778208_1110115,4380_1718 -4380_78121,288,4380_109497,Blackcastle,56954-00011-1,0,4380_7778208_1110115,4380_1718 -4380_78121,287,4380_109498,Blackcastle,56948-00012-1,0,4380_7778208_1110115,4380_1718 -4380_78121,289,4380_109499,Blackcastle,56956-00014-1,0,4380_7778208_1110115,4380_1718 -4380_78113,296,4380_1095,Dublin via Airport,49970-00021-1,1,4380_7778208_1000906,4380_18 -4380_78121,290,4380_109500,Blackcastle,56951-00015-1,0,4380_7778208_1110115,4380_1718 -4380_78121,291,4380_109501,Blackcastle,56624-00013-1,0,4380_7778208_1110114,4380_1718 -4380_78121,292,4380_109502,Blackcastle,56953-00016-1,0,4380_7778208_1110115,4380_1718 -4380_78121,293,4380_109503,Blackcastle,56955-00017-1,0,4380_7778208_1110115,4380_1718 -4380_78121,294,4380_109504,Blackcastle,56949-00018-1,0,4380_7778208_1110115,4380_1718 -4380_78121,295,4380_109505,Blackcastle,56957-00019-1,0,4380_7778208_1110115,4380_1718 -4380_78121,296,4380_109506,Blackcastle,56625-00021-1,0,4380_7778208_1110114,4380_1718 -4380_78121,297,4380_109508,Blackcastle,55774-00008-1,0,4380_7778208_1110111,4380_1718 -4380_77955,285,4380_10951,Mullingar,9375-00009-1,0,4380_7778208_1150106,4380_239 -4380_78121,285,4380_109515,Blackcastle,56289-00009-1,0,4380_7778208_1110113,4380_1718 -4380_78121,286,4380_109516,Blackcastle,56295-00010-1,0,4380_7778208_1110113,4380_1718 -4380_78121,288,4380_109517,Blackcastle,56291-00011-1,0,4380_7778208_1110113,4380_1718 -4380_78121,287,4380_109518,Blackcastle,56293-00012-1,0,4380_7778208_1110113,4380_1718 -4380_78121,289,4380_109519,Blackcastle,56287-00014-1,0,4380_7778208_1110113,4380_1718 -4380_77955,286,4380_10952,Mullingar,9393-00010-1,0,4380_7778208_1150106,4380_239 -4380_78121,290,4380_109520,Blackcastle,56290-00015-1,0,4380_7778208_1110113,4380_1718 -4380_78121,291,4380_109521,Blackcastle,55942-00013-1,0,4380_7778208_1110112,4380_1718 -4380_78121,292,4380_109522,Blackcastle,56296-00016-1,0,4380_7778208_1110113,4380_1718 -4380_78121,293,4380_109523,Blackcastle,56292-00017-1,0,4380_7778208_1110113,4380_1718 -4380_78121,294,4380_109524,Blackcastle,56294-00018-1,0,4380_7778208_1110113,4380_1718 -4380_78121,295,4380_109525,Blackcastle,56288-00019-1,0,4380_7778208_1110113,4380_1718 -4380_78121,296,4380_109526,Blackcastle,55943-00021-1,0,4380_7778208_1110112,4380_1718 -4380_77955,297,4380_10953,Mullingar,57773-00008-1,0,4380_7778208_1150104,4380_245 -4380_78121,285,4380_109533,Blackcastle,55959-00009-1,0,4380_7778208_1110112,4380_1718 -4380_78121,286,4380_109534,Blackcastle,55955-00010-1,0,4380_7778208_1110112,4380_1718 -4380_78121,288,4380_109535,Blackcastle,55953-00011-1,0,4380_7778208_1110112,4380_1718 -4380_78121,287,4380_109536,Blackcastle,55961-00012-1,0,4380_7778208_1110112,4380_1718 -4380_78121,289,4380_109537,Blackcastle,55957-00014-1,0,4380_7778208_1110112,4380_1718 -4380_78121,290,4380_109538,Blackcastle,55960-00015-1,0,4380_7778208_1110112,4380_1718 -4380_78121,291,4380_109539,Blackcastle,55778-00013-1,0,4380_7778208_1110111,4380_1718 -4380_77955,288,4380_10954,Mullingar,9399-00011-1,0,4380_7778208_1150106,4380_239 -4380_78121,292,4380_109540,Blackcastle,55956-00016-1,0,4380_7778208_1110112,4380_1718 -4380_78121,293,4380_109541,Blackcastle,55954-00017-1,0,4380_7778208_1110112,4380_1718 -4380_78121,294,4380_109542,Blackcastle,55962-00018-1,0,4380_7778208_1110112,4380_1718 -4380_78121,295,4380_109543,Blackcastle,55958-00019-1,0,4380_7778208_1110112,4380_1718 -4380_78121,296,4380_109544,Blackcastle,55779-00021-1,0,4380_7778208_1110111,4380_1718 -4380_78121,297,4380_109546,Blackcastle,55965-00008-1,0,4380_7778208_1110112,4380_1718 -4380_77955,287,4380_10955,Mullingar,9417-00012-1,0,4380_7778208_1150106,4380_239 -4380_78121,285,4380_109553,Blackcastle,56658-00009-1,0,4380_7778208_1110114,4380_1718 -4380_78121,286,4380_109554,Blackcastle,56652-00010-1,0,4380_7778208_1110114,4380_1718 -4380_78121,288,4380_109555,Blackcastle,56656-00011-1,0,4380_7778208_1110114,4380_1718 -4380_78121,287,4380_109556,Blackcastle,56654-00012-1,0,4380_7778208_1110114,4380_1718 -4380_78121,289,4380_109557,Blackcastle,56650-00014-1,0,4380_7778208_1110114,4380_1718 -4380_78121,290,4380_109558,Blackcastle,56659-00015-1,0,4380_7778208_1110114,4380_1718 -4380_78121,291,4380_109559,Blackcastle,56311-00013-1,0,4380_7778208_1110113,4380_1718 -4380_77955,289,4380_10956,Mullingar,9369-00014-1,0,4380_7778208_1150106,4380_239 -4380_78121,292,4380_109560,Blackcastle,56653-00016-1,0,4380_7778208_1110114,4380_1718 -4380_78121,293,4380_109561,Blackcastle,56657-00017-1,0,4380_7778208_1110114,4380_1718 -4380_78121,294,4380_109562,Blackcastle,56655-00018-1,0,4380_7778208_1110114,4380_1718 -4380_78121,295,4380_109563,Blackcastle,56651-00019-1,0,4380_7778208_1110114,4380_1718 -4380_78121,296,4380_109564,Blackcastle,56312-00021-1,0,4380_7778208_1110113,4380_1718 -4380_77955,290,4380_10957,Mullingar,57877-00015-1,0,4380_7778208_1150106,4380_239 -4380_78121,285,4380_109571,Blackcastle,57290-00009-1,0,4380_7778208_1110116,4380_1718 -4380_78121,286,4380_109572,Blackcastle,57288-00010-1,0,4380_7778208_1110116,4380_1718 -4380_78121,288,4380_109573,Blackcastle,57292-00011-1,0,4380_7778208_1110116,4380_1718 -4380_78121,287,4380_109574,Blackcastle,57286-00012-1,0,4380_7778208_1110116,4380_1718 -4380_78121,289,4380_109575,Blackcastle,57294-00014-1,0,4380_7778208_1110116,4380_1718 -4380_78121,290,4380_109576,Blackcastle,57291-00015-1,0,4380_7778208_1110116,4380_1718 -4380_78121,291,4380_109577,Blackcastle,56984-00013-1,0,4380_7778208_1110115,4380_1718 -4380_78121,292,4380_109578,Blackcastle,57289-00016-1,0,4380_7778208_1110116,4380_1718 -4380_78121,293,4380_109579,Blackcastle,57293-00017-1,0,4380_7778208_1110116,4380_1718 -4380_77955,291,4380_10958,Mullingar,57971-00013-1,0,4380_7778208_1150108,4380_246 -4380_78121,294,4380_109580,Blackcastle,57287-00018-1,0,4380_7778208_1110116,4380_1718 -4380_78121,295,4380_109581,Blackcastle,57295-00019-1,0,4380_7778208_1110116,4380_1718 -4380_78121,296,4380_109582,Blackcastle,56985-00021-1,0,4380_7778208_1110115,4380_1718 -4380_78121,297,4380_109584,Blackcastle,56325-00008-1,0,4380_7778208_1110113,4380_1718 -4380_77955,292,4380_10959,Mullingar,57878-00016-1,0,4380_7778208_1150106,4380_239 -4380_78121,285,4380_109591,Blackcastle,57002-00009-1,0,4380_7778208_1110115,4380_1718 -4380_78121,286,4380_109592,Blackcastle,57004-00010-1,0,4380_7778208_1110115,4380_1718 -4380_78121,288,4380_109593,Blackcastle,57000-00011-1,0,4380_7778208_1110115,4380_1718 -4380_78121,287,4380_109594,Blackcastle,56996-00012-1,0,4380_7778208_1110115,4380_1718 -4380_78121,289,4380_109595,Blackcastle,56998-00014-1,0,4380_7778208_1110115,4380_1718 -4380_78121,290,4380_109596,Blackcastle,57003-00015-1,0,4380_7778208_1110115,4380_1718 -4380_78121,291,4380_109597,Blackcastle,56672-00013-1,0,4380_7778208_1110114,4380_1718 -4380_78121,292,4380_109598,Blackcastle,57005-00016-1,0,4380_7778208_1110115,4380_1718 -4380_78121,293,4380_109599,Blackcastle,57001-00017-1,0,4380_7778208_1110115,4380_1718 -4380_77955,293,4380_10960,Mullingar,57875-00017-1,0,4380_7778208_1150106,4380_239 -4380_78121,294,4380_109600,Blackcastle,56997-00018-1,0,4380_7778208_1110115,4380_1718 -4380_78121,295,4380_109601,Blackcastle,56999-00019-1,0,4380_7778208_1110115,4380_1718 -4380_78121,296,4380_109602,Blackcastle,56673-00021-1,0,4380_7778208_1110114,4380_1718 -4380_78121,285,4380_109609,Blackcastle,56340-00009-1,0,4380_7778208_1110113,4380_1718 -4380_77955,294,4380_10961,Mullingar,57879-00018-1,0,4380_7778208_1150106,4380_239 -4380_78121,286,4380_109610,Blackcastle,56346-00010-1,0,4380_7778208_1110113,4380_1718 -4380_78121,288,4380_109611,Blackcastle,56344-00011-1,0,4380_7778208_1110113,4380_1718 -4380_78121,287,4380_109612,Blackcastle,56338-00012-1,0,4380_7778208_1110113,4380_1718 -4380_78121,289,4380_109613,Blackcastle,56342-00014-1,0,4380_7778208_1110113,4380_1718 -4380_78121,290,4380_109614,Blackcastle,56341-00015-1,0,4380_7778208_1110113,4380_1718 -4380_78121,291,4380_109615,Blackcastle,55992-00013-1,0,4380_7778208_1110112,4380_1718 -4380_78121,292,4380_109616,Blackcastle,56347-00016-1,0,4380_7778208_1110113,4380_1718 -4380_78121,293,4380_109617,Blackcastle,56345-00017-1,0,4380_7778208_1110113,4380_1718 -4380_78121,294,4380_109618,Blackcastle,56339-00018-1,0,4380_7778208_1110113,4380_1718 -4380_78121,295,4380_109619,Blackcastle,56343-00019-1,0,4380_7778208_1110113,4380_1718 -4380_77955,295,4380_10962,Mullingar,57876-00019-1,0,4380_7778208_1150106,4380_239 -4380_78121,296,4380_109620,Blackcastle,55993-00021-1,0,4380_7778208_1110112,4380_1718 -4380_78121,297,4380_109622,Blackcastle,55788-00008-1,0,4380_7778208_1110111,4380_1718 -4380_78121,285,4380_109629,Blackcastle,56008-00009-1,0,4380_7778208_1110112,4380_1718 -4380_77955,296,4380_10963,Mullingar,57972-00021-1,0,4380_7778208_1150108,4380_246 -4380_78121,286,4380_109630,Blackcastle,56004-00010-1,0,4380_7778208_1110112,4380_1718 -4380_78121,288,4380_109631,Blackcastle,56013-00011-1,0,4380_7778208_1110112,4380_1718 -4380_78121,287,4380_109632,Blackcastle,56010-00012-1,0,4380_7778208_1110112,4380_1718 -4380_78121,289,4380_109633,Blackcastle,56006-00014-1,0,4380_7778208_1110112,4380_1718 -4380_78121,290,4380_109634,Blackcastle,56009-00015-1,0,4380_7778208_1110112,4380_1718 -4380_78121,291,4380_109635,Blackcastle,55789-00013-1,0,4380_7778208_1110111,4380_1718 -4380_78121,292,4380_109636,Blackcastle,56005-00016-1,0,4380_7778208_1110112,4380_1718 -4380_78121,293,4380_109637,Blackcastle,56014-00017-1,0,4380_7778208_1110112,4380_1718 -4380_78121,294,4380_109638,Blackcastle,56011-00018-1,0,4380_7778208_1110112,4380_1718 -4380_78121,295,4380_109639,Blackcastle,56007-00019-1,0,4380_7778208_1110112,4380_1718 -4380_78121,296,4380_109640,Blackcastle,55790-00021-1,0,4380_7778208_1110111,4380_1718 -4380_78121,285,4380_109647,Blackcastle,56704-00009-1,0,4380_7778208_1110114,4380_1718 -4380_78121,286,4380_109648,Blackcastle,56700-00010-1,0,4380_7778208_1110114,4380_1718 -4380_78121,288,4380_109649,Blackcastle,56698-00011-1,0,4380_7778208_1110114,4380_1718 -4380_78121,287,4380_109650,Blackcastle,56706-00012-1,0,4380_7778208_1110114,4380_1718 -4380_78121,289,4380_109651,Blackcastle,56702-00014-1,0,4380_7778208_1110114,4380_1718 -4380_78121,290,4380_109652,Blackcastle,56705-00015-1,0,4380_7778208_1110114,4380_1718 -4380_78121,291,4380_109653,Blackcastle,56362-00013-1,0,4380_7778208_1110113,4380_1718 -4380_78121,292,4380_109654,Blackcastle,56701-00016-1,0,4380_7778208_1110114,4380_1718 -4380_78121,293,4380_109655,Blackcastle,56699-00017-1,0,4380_7778208_1110114,4380_1718 -4380_78121,294,4380_109656,Blackcastle,56707-00018-1,0,4380_7778208_1110114,4380_1718 -4380_78121,295,4380_109657,Blackcastle,56703-00019-1,0,4380_7778208_1110114,4380_1718 -4380_78121,296,4380_109658,Blackcastle,56363-00021-1,0,4380_7778208_1110113,4380_1718 -4380_78121,297,4380_109660,Blackcastle,56025-00008-1,0,4380_7778208_1110112,4380_1718 -4380_78121,285,4380_109667,Blackcastle,57332-00009-1,0,4380_7778208_1110116,4380_1718 -4380_78121,286,4380_109668,Blackcastle,57330-00010-1,0,4380_7778208_1110116,4380_1718 -4380_78121,288,4380_109669,Blackcastle,57334-00011-1,0,4380_7778208_1110116,4380_1718 -4380_78121,287,4380_109670,Blackcastle,57328-00012-1,0,4380_7778208_1110116,4380_1718 -4380_78121,289,4380_109671,Blackcastle,57326-00014-1,0,4380_7778208_1110116,4380_1718 -4380_78121,290,4380_109672,Blackcastle,57333-00015-1,0,4380_7778208_1110116,4380_1718 -4380_78121,291,4380_109673,Blackcastle,57032-00013-1,0,4380_7778208_1110115,4380_1718 -4380_78121,292,4380_109674,Blackcastle,57331-00016-1,0,4380_7778208_1110116,4380_1718 -4380_78121,293,4380_109675,Blackcastle,57335-00017-1,0,4380_7778208_1110116,4380_1718 -4380_78121,294,4380_109676,Blackcastle,57329-00018-1,0,4380_7778208_1110116,4380_1718 -4380_78121,295,4380_109677,Blackcastle,57327-00019-1,0,4380_7778208_1110116,4380_1718 -4380_78121,296,4380_109678,Blackcastle,57033-00021-1,0,4380_7778208_1110115,4380_1718 -4380_78121,285,4380_109685,Blackcastle,57052-00009-1,0,4380_7778208_1110115,4380_1718 -4380_78121,286,4380_109686,Blackcastle,57044-00010-1,0,4380_7778208_1110115,4380_1718 -4380_78121,288,4380_109687,Blackcastle,57046-00011-1,0,4380_7778208_1110115,4380_1718 -4380_78121,287,4380_109688,Blackcastle,57050-00012-1,0,4380_7778208_1110115,4380_1718 -4380_78121,289,4380_109689,Blackcastle,57048-00014-1,0,4380_7778208_1110115,4380_1718 -4380_78121,290,4380_109690,Blackcastle,57053-00015-1,0,4380_7778208_1110115,4380_1718 -4380_78121,291,4380_109691,Blackcastle,56720-00013-1,0,4380_7778208_1110114,4380_1718 -4380_78121,292,4380_109692,Blackcastle,57045-00016-1,0,4380_7778208_1110115,4380_1718 -4380_78121,293,4380_109693,Blackcastle,57047-00017-1,0,4380_7778208_1110115,4380_1718 -4380_78121,294,4380_109694,Blackcastle,57051-00018-1,0,4380_7778208_1110115,4380_1718 -4380_78121,295,4380_109695,Blackcastle,57049-00019-1,0,4380_7778208_1110115,4380_1718 -4380_78121,296,4380_109696,Blackcastle,56721-00021-1,0,4380_7778208_1110114,4380_1718 -4380_78121,297,4380_109698,Blackcastle,56387-00008-1,0,4380_7778208_1110113,4380_1718 -4380_77955,285,4380_10970,Enfield,9016-00009-1,0,4380_7778208_1150101,4380_238 -4380_78121,285,4380_109705,Blackcastle,56392-00009-1,0,4380_7778208_1110113,4380_1718 -4380_78121,286,4380_109706,Blackcastle,56398-00010-1,0,4380_7778208_1110113,4380_1718 -4380_78121,288,4380_109707,Blackcastle,56394-00011-1,0,4380_7778208_1110113,4380_1718 -4380_78121,287,4380_109708,Blackcastle,56390-00012-1,0,4380_7778208_1110113,4380_1718 -4380_78121,289,4380_109709,Blackcastle,56396-00014-1,0,4380_7778208_1110113,4380_1718 -4380_77955,286,4380_10971,Enfield,9032-00010-1,0,4380_7778208_1150101,4380_238 -4380_78121,290,4380_109710,Blackcastle,56393-00015-1,0,4380_7778208_1110113,4380_1718 -4380_78121,291,4380_109711,Blackcastle,56051-00013-1,0,4380_7778208_1110112,4380_1718 -4380_78121,292,4380_109712,Blackcastle,56399-00016-1,0,4380_7778208_1110113,4380_1718 -4380_78121,293,4380_109713,Blackcastle,56395-00017-1,0,4380_7778208_1110113,4380_1718 -4380_78121,294,4380_109714,Blackcastle,56391-00018-1,0,4380_7778208_1110113,4380_1718 -4380_78121,295,4380_109715,Blackcastle,56397-00019-1,0,4380_7778208_1110113,4380_1718 -4380_78121,296,4380_109716,Blackcastle,56052-00021-1,0,4380_7778208_1110112,4380_1718 -4380_77955,288,4380_10972,Enfield,9048-00011-1,0,4380_7778208_1150101,4380_238 -4380_78121,285,4380_109723,Blackcastle,56064-00009-1,0,4380_7778208_1110112,4380_1718 -4380_78121,286,4380_109724,Blackcastle,56062-00010-1,0,4380_7778208_1110112,4380_1718 -4380_78121,288,4380_109725,Blackcastle,56060-00011-1,0,4380_7778208_1110112,4380_1718 -4380_78121,287,4380_109726,Blackcastle,56056-00012-1,0,4380_7778208_1110112,4380_1718 -4380_78121,289,4380_109727,Blackcastle,56058-00014-1,0,4380_7778208_1110112,4380_1718 -4380_78121,290,4380_109728,Blackcastle,56065-00015-1,0,4380_7778208_1110112,4380_1718 -4380_78121,291,4380_109729,Blackcastle,55800-00013-1,0,4380_7778208_1110111,4380_1718 -4380_77955,287,4380_10973,Enfield,9064-00012-1,0,4380_7778208_1150101,4380_238 -4380_78121,292,4380_109730,Blackcastle,56063-00016-1,0,4380_7778208_1110112,4380_1718 -4380_78121,293,4380_109731,Blackcastle,56061-00017-1,0,4380_7778208_1110112,4380_1718 -4380_78121,294,4380_109732,Blackcastle,56057-00018-1,0,4380_7778208_1110112,4380_1718 -4380_78121,295,4380_109733,Blackcastle,56059-00019-1,0,4380_7778208_1110112,4380_1718 -4380_78121,296,4380_109734,Blackcastle,55801-00021-1,0,4380_7778208_1110111,4380_1718 -4380_78121,297,4380_109736,Blackcastle,55802-00008-1,0,4380_7778208_1110111,4380_1718 -4380_77955,289,4380_10974,Enfield,9000-00014-1,0,4380_7778208_1150101,4380_238 -4380_78121,285,4380_109743,Blackcastle,56746-00009-1,0,4380_7778208_1110114,4380_1718 -4380_78121,286,4380_109744,Blackcastle,56748-00010-1,0,4380_7778208_1110114,4380_1718 -4380_78121,288,4380_109745,Blackcastle,56754-00011-1,0,4380_7778208_1110114,4380_1718 -4380_78121,287,4380_109746,Blackcastle,56750-00012-1,0,4380_7778208_1110114,4380_1718 -4380_78121,289,4380_109747,Blackcastle,56752-00014-1,0,4380_7778208_1110114,4380_1718 -4380_78121,290,4380_109748,Blackcastle,56747-00015-1,0,4380_7778208_1110114,4380_1718 -4380_78121,291,4380_109749,Blackcastle,56413-00013-1,0,4380_7778208_1110113,4380_1718 -4380_77955,290,4380_10975,Enfield,57582-00015-1,0,4380_7778208_1150101,4380_238 -4380_78121,292,4380_109750,Blackcastle,56749-00016-1,0,4380_7778208_1110114,4380_1718 -4380_78121,293,4380_109751,Blackcastle,56755-00017-1,0,4380_7778208_1110114,4380_1718 -4380_78121,294,4380_109752,Blackcastle,56751-00018-1,0,4380_7778208_1110114,4380_1718 -4380_78121,295,4380_109753,Blackcastle,56753-00019-1,0,4380_7778208_1110114,4380_1718 -4380_78121,296,4380_109754,Blackcastle,56414-00021-1,0,4380_7778208_1110113,4380_1718 -4380_77955,291,4380_10976,Enfield,58051-00013-1,0,4380_7778208_1150110,4380_244 -4380_78121,285,4380_109761,Blackcastle,57366-00009-1,0,4380_7778208_1110116,4380_1718 -4380_78121,286,4380_109762,Blackcastle,57368-00010-1,0,4380_7778208_1110116,4380_1718 -4380_78121,288,4380_109763,Blackcastle,57370-00011-1,0,4380_7778208_1110116,4380_1718 -4380_78121,287,4380_109764,Blackcastle,57374-00012-1,0,4380_7778208_1110116,4380_1718 -4380_78121,289,4380_109765,Blackcastle,57372-00014-1,0,4380_7778208_1110116,4380_1718 -4380_78121,290,4380_109766,Blackcastle,57367-00015-1,0,4380_7778208_1110116,4380_1718 -4380_78121,291,4380_109767,Blackcastle,57088-00013-1,0,4380_7778208_1110115,4380_1718 -4380_78121,292,4380_109768,Blackcastle,57369-00016-1,0,4380_7778208_1110116,4380_1718 -4380_78121,293,4380_109769,Blackcastle,57371-00017-1,0,4380_7778208_1110116,4380_1718 -4380_77955,292,4380_10977,Enfield,57584-00016-1,0,4380_7778208_1150101,4380_238 -4380_78121,294,4380_109770,Blackcastle,57375-00018-1,0,4380_7778208_1110116,4380_1718 -4380_78121,295,4380_109771,Blackcastle,57373-00019-1,0,4380_7778208_1110116,4380_1718 -4380_78121,296,4380_109772,Blackcastle,57089-00021-1,0,4380_7778208_1110115,4380_1718 -4380_78121,297,4380_109774,Blackcastle,56089-00008-1,0,4380_7778208_1110112,4380_1718 -4380_77955,293,4380_10978,Enfield,57581-00017-1,0,4380_7778208_1150101,4380_238 -4380_78121,285,4380_109781,Blackcastle,57094-00009-1,0,4380_7778208_1110115,4380_1718 -4380_78121,286,4380_109782,Blackcastle,57100-00010-1,0,4380_7778208_1110115,4380_1718 -4380_78121,288,4380_109783,Blackcastle,57098-00011-1,0,4380_7778208_1110115,4380_1718 -4380_78121,287,4380_109784,Blackcastle,57096-00012-1,0,4380_7778208_1110115,4380_1718 -4380_78121,289,4380_109785,Blackcastle,57092-00014-1,0,4380_7778208_1110115,4380_1718 -4380_78121,290,4380_109786,Blackcastle,57095-00015-1,0,4380_7778208_1110115,4380_1718 -4380_78121,291,4380_109787,Blackcastle,56768-00013-1,0,4380_7778208_1110114,4380_1719 -4380_78121,292,4380_109788,Blackcastle,57101-00016-1,0,4380_7778208_1110115,4380_1718 -4380_78121,293,4380_109789,Blackcastle,57099-00017-1,0,4380_7778208_1110115,4380_1718 -4380_77955,294,4380_10979,Enfield,57583-00018-1,0,4380_7778208_1150101,4380_238 -4380_78121,294,4380_109790,Blackcastle,57097-00018-1,0,4380_7778208_1110115,4380_1718 -4380_78121,295,4380_109791,Blackcastle,57093-00019-1,0,4380_7778208_1110115,4380_1718 -4380_78121,296,4380_109792,Blackcastle,56769-00021-1,0,4380_7778208_1110114,4380_1719 -4380_78121,285,4380_109799,Blackcastle,56441-00009-1,0,4380_7778208_1110113,4380_1718 -4380_77955,295,4380_10980,Enfield,57580-00019-1,0,4380_7778208_1150101,4380_238 -4380_78121,286,4380_109800,Blackcastle,56445-00010-1,0,4380_7778208_1110113,4380_1718 -4380_78121,288,4380_109801,Blackcastle,56449-00011-1,0,4380_7778208_1110113,4380_1718 -4380_78121,287,4380_109802,Blackcastle,56443-00012-1,0,4380_7778208_1110113,4380_1718 -4380_78121,289,4380_109803,Blackcastle,56447-00014-1,0,4380_7778208_1110113,4380_1718 -4380_78121,290,4380_109804,Blackcastle,56442-00015-1,0,4380_7778208_1110113,4380_1718 -4380_78121,291,4380_109805,Blackcastle,56096-00013-1,0,4380_7778208_1110112,4380_1718 -4380_78121,292,4380_109806,Blackcastle,56446-00016-1,0,4380_7778208_1110113,4380_1718 -4380_78121,293,4380_109807,Blackcastle,56450-00017-1,0,4380_7778208_1110113,4380_1718 -4380_78121,294,4380_109808,Blackcastle,56444-00018-1,0,4380_7778208_1110113,4380_1718 -4380_78121,295,4380_109809,Blackcastle,56448-00019-1,0,4380_7778208_1110113,4380_1718 -4380_77955,296,4380_10981,Enfield,58052-00021-1,0,4380_7778208_1150110,4380_244 -4380_78121,296,4380_109810,Blackcastle,56097-00021-1,0,4380_7778208_1110112,4380_1718 -4380_78121,297,4380_109812,Blackcastle,56451-00008-1,0,4380_7778208_1110113,4380_1718 -4380_78121,285,4380_109819,Blackcastle,56107-00009-1,0,4380_7778208_1110112,4380_1718 -4380_78121,286,4380_109820,Blackcastle,56111-00010-1,0,4380_7778208_1110112,4380_1718 -4380_78121,288,4380_109821,Blackcastle,56109-00011-1,0,4380_7778208_1110112,4380_1718 -4380_78121,287,4380_109822,Blackcastle,56113-00012-1,0,4380_7778208_1110112,4380_1718 -4380_78121,289,4380_109823,Blackcastle,56115-00014-1,0,4380_7778208_1110112,4380_1718 -4380_78121,290,4380_109824,Blackcastle,56108-00015-1,0,4380_7778208_1110112,4380_1718 -4380_78121,291,4380_109825,Blackcastle,55812-00013-1,0,4380_7778208_1110111,4380_1718 -4380_78121,292,4380_109826,Blackcastle,56112-00016-1,0,4380_7778208_1110112,4380_1718 -4380_78121,293,4380_109827,Blackcastle,56110-00017-1,0,4380_7778208_1110112,4380_1718 -4380_78121,294,4380_109828,Blackcastle,56114-00018-1,0,4380_7778208_1110112,4380_1718 -4380_78121,295,4380_109829,Blackcastle,56116-00019-1,0,4380_7778208_1110112,4380_1718 -4380_78121,296,4380_109830,Blackcastle,55813-00021-1,0,4380_7778208_1110111,4380_1718 -4380_78121,285,4380_109837,Blackcastle,56796-00009-1,0,4380_7778208_1110114,4380_1718 -4380_78121,286,4380_109838,Blackcastle,56800-00010-1,0,4380_7778208_1110114,4380_1718 -4380_78121,288,4380_109839,Blackcastle,56798-00011-1,0,4380_7778208_1110114,4380_1718 -4380_78121,287,4380_109840,Blackcastle,56802-00012-1,0,4380_7778208_1110114,4380_1718 -4380_78121,289,4380_109841,Blackcastle,56794-00014-1,0,4380_7778208_1110114,4380_1718 -4380_78121,290,4380_109842,Blackcastle,56797-00015-1,0,4380_7778208_1110114,4380_1718 -4380_78121,291,4380_109843,Blackcastle,56465-00013-1,0,4380_7778208_1110113,4380_1718 -4380_78121,292,4380_109844,Blackcastle,56801-00016-1,0,4380_7778208_1110114,4380_1718 -4380_78121,293,4380_109845,Blackcastle,56799-00017-1,0,4380_7778208_1110114,4380_1718 -4380_78121,294,4380_109846,Blackcastle,56803-00018-1,0,4380_7778208_1110114,4380_1718 -4380_78121,295,4380_109847,Blackcastle,56795-00019-1,0,4380_7778208_1110114,4380_1718 -4380_78121,296,4380_109848,Blackcastle,56466-00021-1,0,4380_7778208_1110113,4380_1718 -4380_78121,297,4380_109850,Blackcastle,55816-00008-1,0,4380_7778208_1110111,4380_1718 -4380_78121,285,4380_109857,Blackcastle,57412-00009-1,0,4380_7778208_1110116,4380_1718 -4380_78121,286,4380_109858,Blackcastle,57406-00010-1,0,4380_7778208_1110116,4380_1718 -4380_78121,288,4380_109859,Blackcastle,57414-00011-1,0,4380_7778208_1110116,4380_1718 -4380_78121,287,4380_109860,Blackcastle,57410-00012-1,0,4380_7778208_1110116,4380_1718 -4380_78121,289,4380_109861,Blackcastle,57408-00014-1,0,4380_7778208_1110116,4380_1718 -4380_78121,290,4380_109862,Blackcastle,57413-00015-1,0,4380_7778208_1110116,4380_1718 -4380_78121,291,4380_109863,Blackcastle,57132-00013-1,0,4380_7778208_1110115,4380_1718 -4380_78121,292,4380_109864,Blackcastle,57407-00016-1,0,4380_7778208_1110116,4380_1718 -4380_78121,293,4380_109865,Blackcastle,57415-00017-1,0,4380_7778208_1110116,4380_1718 -4380_78121,294,4380_109866,Blackcastle,57411-00018-1,0,4380_7778208_1110116,4380_1718 -4380_78121,295,4380_109867,Blackcastle,57409-00019-1,0,4380_7778208_1110116,4380_1718 -4380_78121,296,4380_109868,Blackcastle,57133-00021-1,0,4380_7778208_1110115,4380_1718 -4380_78121,285,4380_109875,Blackcastle,57146-00009-1,0,4380_7778208_1110115,4380_1718 -4380_78121,286,4380_109876,Blackcastle,57144-00010-1,0,4380_7778208_1110115,4380_1718 -4380_78121,288,4380_109877,Blackcastle,57142-00011-1,0,4380_7778208_1110115,4380_1718 -4380_78121,287,4380_109878,Blackcastle,57140-00012-1,0,4380_7778208_1110115,4380_1718 -4380_78121,289,4380_109879,Blackcastle,57148-00014-1,0,4380_7778208_1110115,4380_1718 -4380_78121,290,4380_109880,Blackcastle,57147-00015-1,0,4380_7778208_1110115,4380_1718 -4380_78121,291,4380_109881,Blackcastle,56816-00013-1,0,4380_7778208_1110114,4380_1718 -4380_78121,292,4380_109882,Blackcastle,57145-00016-1,0,4380_7778208_1110115,4380_1718 -4380_78121,293,4380_109883,Blackcastle,57143-00017-1,0,4380_7778208_1110115,4380_1718 -4380_78121,294,4380_109884,Blackcastle,57141-00018-1,0,4380_7778208_1110115,4380_1718 -4380_78121,295,4380_109885,Blackcastle,57149-00019-1,0,4380_7778208_1110115,4380_1718 -4380_78121,296,4380_109886,Blackcastle,56817-00021-1,0,4380_7778208_1110114,4380_1718 -4380_78121,297,4380_109888,Blackcastle,56145-00008-1,0,4380_7778208_1110112,4380_1718 -4380_77955,285,4380_10989,Mullingar,9581-00009-1,0,4380_7778208_1150110,4380_239 -4380_78121,285,4380_109895,Blackcastle,56499-00009-1,0,4380_7778208_1110113,4380_1718 -4380_78121,286,4380_109896,Blackcastle,56501-00010-1,0,4380_7778208_1110113,4380_1718 -4380_78121,288,4380_109897,Blackcastle,56495-00011-1,0,4380_7778208_1110113,4380_1718 -4380_78121,287,4380_109898,Blackcastle,56492-00012-1,0,4380_7778208_1110113,4380_1718 -4380_78121,289,4380_109899,Blackcastle,56497-00014-1,0,4380_7778208_1110113,4380_1718 -4380_77955,286,4380_10990,Mullingar,9591-00010-1,0,4380_7778208_1150110,4380_239 -4380_78121,290,4380_109900,Blackcastle,56500-00015-1,0,4380_7778208_1110113,4380_1718 -4380_78121,291,4380_109901,Blackcastle,56152-00013-1,0,4380_7778208_1110112,4380_1718 -4380_78121,292,4380_109902,Blackcastle,56502-00016-1,0,4380_7778208_1110113,4380_1718 -4380_78121,293,4380_109903,Blackcastle,56496-00017-1,0,4380_7778208_1110113,4380_1718 -4380_78121,294,4380_109904,Blackcastle,56493-00018-1,0,4380_7778208_1110113,4380_1718 -4380_78121,295,4380_109905,Blackcastle,56498-00019-1,0,4380_7778208_1110113,4380_1718 -4380_78121,296,4380_109906,Blackcastle,56153-00021-1,0,4380_7778208_1110112,4380_1718 -4380_77955,297,4380_10991,Enfield,57637-00008-1,0,4380_7778208_1150102,4380_238 -4380_78121,285,4380_109913,Blackcastle,56163-00009-1,0,4380_7778208_1110112,4380_1718 -4380_78121,286,4380_109914,Blackcastle,56167-00010-1,0,4380_7778208_1110112,4380_1718 -4380_78121,288,4380_109915,Blackcastle,56165-00011-1,0,4380_7778208_1110112,4380_1718 -4380_78121,287,4380_109916,Blackcastle,56161-00012-1,0,4380_7778208_1110112,4380_1718 -4380_78121,289,4380_109917,Blackcastle,56158-00014-1,0,4380_7778208_1110112,4380_1718 -4380_78121,290,4380_109918,Blackcastle,56164-00015-1,0,4380_7778208_1110112,4380_1718 -4380_78121,291,4380_109919,Blackcastle,55823-00013-1,0,4380_7778208_1110111,4380_1718 -4380_77955,288,4380_10992,Mullingar,9601-00011-1,0,4380_7778208_1150110,4380_239 -4380_78121,292,4380_109920,Blackcastle,56168-00016-1,0,4380_7778208_1110112,4380_1718 -4380_78121,293,4380_109921,Blackcastle,56166-00017-1,0,4380_7778208_1110112,4380_1718 -4380_78121,294,4380_109922,Blackcastle,56162-00018-1,0,4380_7778208_1110112,4380_1718 -4380_78121,295,4380_109923,Blackcastle,56159-00019-1,0,4380_7778208_1110112,4380_1718 -4380_78121,296,4380_109924,Blackcastle,55824-00021-1,0,4380_7778208_1110111,4380_1718 -4380_78121,297,4380_109926,Blackcastle,56509-00008-1,0,4380_7778208_1110113,4380_1718 -4380_77955,287,4380_10993,Mullingar,9611-00012-1,0,4380_7778208_1150110,4380_239 -4380_78121,285,4380_109933,Blackcastle,56848-00009-1,0,4380_7778208_1110114,4380_1718 -4380_78121,286,4380_109934,Blackcastle,56844-00010-1,0,4380_7778208_1110114,4380_1718 -4380_78121,288,4380_109935,Blackcastle,56842-00011-1,0,4380_7778208_1110114,4380_1718 -4380_78121,287,4380_109936,Blackcastle,56850-00012-1,0,4380_7778208_1110114,4380_1718 -4380_78121,289,4380_109937,Blackcastle,56846-00014-1,0,4380_7778208_1110114,4380_1718 -4380_78121,290,4380_109938,Blackcastle,56849-00015-1,0,4380_7778208_1110114,4380_1718 -4380_78121,291,4380_109939,Blackcastle,56516-00013-1,0,4380_7778208_1110113,4380_1718 -4380_77955,289,4380_10994,Mullingar,9576-00014-1,0,4380_7778208_1150110,4380_239 -4380_78121,292,4380_109940,Blackcastle,56845-00016-1,0,4380_7778208_1110114,4380_1718 -4380_78121,293,4380_109941,Blackcastle,56843-00017-1,0,4380_7778208_1110114,4380_1718 -4380_78121,294,4380_109942,Blackcastle,56851-00018-1,0,4380_7778208_1110114,4380_1718 -4380_78121,295,4380_109943,Blackcastle,56847-00019-1,0,4380_7778208_1110114,4380_1718 -4380_78121,296,4380_109944,Blackcastle,56517-00021-1,0,4380_7778208_1110113,4380_1718 -4380_77955,290,4380_10995,Mullingar,58054-00015-1,0,4380_7778208_1150110,4380_239 -4380_78121,285,4380_109951,Commons Road,56520-00009-1,1,4380_7778208_1110114,4380_1720 -4380_78121,286,4380_109952,Commons Road,56522-00010-1,1,4380_7778208_1110114,4380_1720 -4380_78121,288,4380_109953,Commons Road,56526-00011-1,1,4380_7778208_1110114,4380_1720 -4380_78121,287,4380_109954,Commons Road,56524-00012-1,1,4380_7778208_1110114,4380_1720 -4380_78121,289,4380_109955,Commons Road,56518-00014-1,1,4380_7778208_1110114,4380_1720 -4380_78121,290,4380_109956,Commons Road,56521-00015-1,1,4380_7778208_1110114,4380_1720 -4380_78121,291,4380_109957,Commons Road,56171-00013-1,1,4380_7778208_1110113,4380_1720 -4380_78121,292,4380_109958,Commons Road,56523-00016-1,1,4380_7778208_1110114,4380_1720 -4380_78121,293,4380_109959,Commons Road,56527-00017-1,1,4380_7778208_1110114,4380_1720 -4380_77955,291,4380_10996,Mullingar,9349-00013-1,0,4380_7778208_1150105,4380_245 -4380_78121,294,4380_109960,Commons Road,56525-00018-1,1,4380_7778208_1110114,4380_1720 -4380_78121,295,4380_109961,Commons Road,56519-00019-1,1,4380_7778208_1110114,4380_1720 -4380_78121,296,4380_109962,Commons Road,56172-00021-1,1,4380_7778208_1110113,4380_1720 -4380_78121,285,4380_109969,Commons Road,57176-00009-1,1,4380_7778208_1110116,4380_1720 -4380_77955,292,4380_10997,Mullingar,58055-00016-1,0,4380_7778208_1150110,4380_239 -4380_78121,286,4380_109970,Commons Road,57178-00010-1,1,4380_7778208_1110116,4380_1720 -4380_78121,288,4380_109971,Commons Road,57182-00011-1,1,4380_7778208_1110116,4380_1720 -4380_78121,287,4380_109972,Commons Road,57184-00012-1,1,4380_7778208_1110116,4380_1720 -4380_78121,289,4380_109973,Commons Road,57180-00014-1,1,4380_7778208_1110116,4380_1720 -4380_78121,290,4380_109974,Commons Road,57177-00015-1,1,4380_7778208_1110116,4380_1720 -4380_78121,291,4380_109975,Commons Road,56862-00013-1,1,4380_7778208_1110115,4380_1720 -4380_78121,292,4380_109976,Commons Road,57179-00016-1,1,4380_7778208_1110116,4380_1720 -4380_78121,293,4380_109977,Commons Road,57183-00017-1,1,4380_7778208_1110116,4380_1720 -4380_78121,294,4380_109978,Commons Road,57185-00018-1,1,4380_7778208_1110116,4380_1720 -4380_78121,295,4380_109979,Commons Road,57181-00019-1,1,4380_7778208_1110116,4380_1720 -4380_77955,293,4380_10998,Mullingar,58057-00017-1,0,4380_7778208_1150110,4380_239 -4380_78121,296,4380_109980,Commons Road,56863-00021-1,1,4380_7778208_1110115,4380_1720 -4380_78121,285,4380_109987,Commons Road,56872-00009-1,1,4380_7778208_1110115,4380_1720 -4380_78121,286,4380_109988,Commons Road,56868-00010-1,1,4380_7778208_1110115,4380_1720 -4380_78121,288,4380_109989,Commons Road,56864-00011-1,1,4380_7778208_1110115,4380_1720 -4380_77955,294,4380_10999,Mullingar,58053-00018-1,0,4380_7778208_1150110,4380_239 -4380_78121,287,4380_109990,Commons Road,56866-00012-1,1,4380_7778208_1110115,4380_1720 -4380_78121,289,4380_109991,Commons Road,56870-00014-1,1,4380_7778208_1110115,4380_1720 -4380_78121,290,4380_109992,Commons Road,56873-00015-1,1,4380_7778208_1110115,4380_1720 -4380_78121,291,4380_109993,Commons Road,56540-00013-1,1,4380_7778208_1110114,4380_1721 -4380_78121,292,4380_109994,Commons Road,56869-00016-1,1,4380_7778208_1110115,4380_1720 -4380_78121,293,4380_109995,Commons Road,56865-00017-1,1,4380_7778208_1110115,4380_1720 -4380_78121,294,4380_109996,Commons Road,56867-00018-1,1,4380_7778208_1110115,4380_1720 -4380_78121,295,4380_109997,Commons Road,56871-00019-1,1,4380_7778208_1110115,4380_1720 -4380_78121,296,4380_109998,Commons Road,56541-00021-1,1,4380_7778208_1110114,4380_1721 -4380_77946,289,4380_11,Dundalk,50449-00014-1,0,4380_7778208_1000915,4380_1 -4380_77955,295,4380_11000,Mullingar,58056-00019-1,0,4380_7778208_1150110,4380_239 -4380_78121,297,4380_110000,Commons Road,55854-00008-1,1,4380_7778208_1110112,4380_1720 -4380_78121,285,4380_110007,Commons Road,56197-00009-1,1,4380_7778208_1110113,4380_1720 -4380_78121,286,4380_110008,Commons Road,56204-00010-1,1,4380_7778208_1110113,4380_1720 -4380_78121,288,4380_110009,Commons Road,56201-00011-1,1,4380_7778208_1110113,4380_1720 -4380_77955,296,4380_11001,Mullingar,57818-00021-1,0,4380_7778208_1150105,4380_245 -4380_78121,287,4380_110010,Commons Road,56199-00012-1,1,4380_7778208_1110113,4380_1720 -4380_78121,289,4380_110011,Commons Road,56206-00014-1,1,4380_7778208_1110113,4380_1720 -4380_78121,290,4380_110012,Commons Road,56198-00015-1,1,4380_7778208_1110113,4380_1720 -4380_78121,291,4380_110013,Commons Road,55861-00013-1,1,4380_7778208_1110112,4380_1721 -4380_78121,292,4380_110014,Commons Road,56205-00016-1,1,4380_7778208_1110113,4380_1720 -4380_78121,293,4380_110015,Commons Road,56202-00017-1,1,4380_7778208_1110113,4380_1720 -4380_78121,294,4380_110016,Commons Road,56200-00018-1,1,4380_7778208_1110113,4380_1720 -4380_78121,295,4380_110017,Commons Road,56207-00019-1,1,4380_7778208_1110113,4380_1720 -4380_78121,296,4380_110018,Commons Road,55862-00021-1,1,4380_7778208_1110112,4380_1721 -4380_78121,285,4380_110025,Commons Road,55869-00009-1,1,4380_7778208_1110112,4380_1720 -4380_78121,286,4380_110026,Commons Road,55863-00010-1,1,4380_7778208_1110112,4380_1720 -4380_78121,288,4380_110027,Commons Road,55865-00011-1,1,4380_7778208_1110112,4380_1720 -4380_78121,287,4380_110028,Commons Road,55871-00012-1,1,4380_7778208_1110112,4380_1720 -4380_78121,289,4380_110029,Commons Road,55874-00014-1,1,4380_7778208_1110112,4380_1720 -4380_78121,290,4380_110030,Commons Road,55870-00015-1,1,4380_7778208_1110112,4380_1720 -4380_78121,291,4380_110031,Commons Road,55758-00013-1,1,4380_7778208_1110111,4380_1721 -4380_78121,292,4380_110032,Commons Road,55864-00016-1,1,4380_7778208_1110112,4380_1720 -4380_78121,293,4380_110033,Commons Road,55866-00017-1,1,4380_7778208_1110112,4380_1720 -4380_78121,294,4380_110034,Commons Road,55872-00018-1,1,4380_7778208_1110112,4380_1720 -4380_78121,295,4380_110035,Commons Road,55875-00019-1,1,4380_7778208_1110112,4380_1720 -4380_78121,296,4380_110036,Commons Road,55759-00021-1,1,4380_7778208_1110111,4380_1721 -4380_78121,297,4380_110038,Commons Road,56220-00008-1,1,4380_7778208_1110113,4380_1720 -4380_78121,285,4380_110045,Commons Road,56568-00009-1,1,4380_7778208_1110114,4380_1720 -4380_78121,286,4380_110046,Commons Road,56572-00010-1,1,4380_7778208_1110114,4380_1720 -4380_78121,288,4380_110047,Commons Road,56570-00011-1,1,4380_7778208_1110114,4380_1720 -4380_78121,287,4380_110048,Commons Road,56566-00012-1,1,4380_7778208_1110114,4380_1720 -4380_78121,289,4380_110049,Commons Road,56574-00014-1,1,4380_7778208_1110114,4380_1720 -4380_78121,290,4380_110050,Commons Road,56569-00015-1,1,4380_7778208_1110114,4380_1720 -4380_78121,291,4380_110051,Commons Road,56221-00013-1,1,4380_7778208_1110113,4380_1720 -4380_78121,292,4380_110052,Commons Road,56573-00016-1,1,4380_7778208_1110114,4380_1720 -4380_78121,293,4380_110053,Commons Road,56571-00017-1,1,4380_7778208_1110114,4380_1720 -4380_78121,294,4380_110054,Commons Road,56567-00018-1,1,4380_7778208_1110114,4380_1720 -4380_78121,295,4380_110055,Commons Road,56575-00019-1,1,4380_7778208_1110114,4380_1720 -4380_78121,296,4380_110056,Commons Road,56222-00021-1,1,4380_7778208_1110113,4380_1720 -4380_78121,285,4380_110063,Commons Road,57218-00009-1,1,4380_7778208_1110116,4380_1720 -4380_78121,286,4380_110064,Commons Road,57216-00010-1,1,4380_7778208_1110116,4380_1720 -4380_78121,288,4380_110065,Commons Road,57220-00011-1,1,4380_7778208_1110116,4380_1720 -4380_78121,287,4380_110066,Commons Road,57224-00012-1,1,4380_7778208_1110116,4380_1720 -4380_78121,289,4380_110067,Commons Road,57222-00014-1,1,4380_7778208_1110116,4380_1720 -4380_78121,290,4380_110068,Commons Road,57219-00015-1,1,4380_7778208_1110116,4380_1720 -4380_78121,291,4380_110069,Commons Road,56910-00013-1,1,4380_7778208_1110115,4380_1720 -4380_78121,292,4380_110070,Commons Road,57217-00016-1,1,4380_7778208_1110116,4380_1720 -4380_78121,293,4380_110071,Commons Road,57221-00017-1,1,4380_7778208_1110116,4380_1720 -4380_78121,294,4380_110072,Commons Road,57225-00018-1,1,4380_7778208_1110116,4380_1720 -4380_78121,295,4380_110073,Commons Road,57223-00019-1,1,4380_7778208_1110116,4380_1720 -4380_78121,296,4380_110074,Commons Road,56911-00021-1,1,4380_7778208_1110115,4380_1720 -4380_78121,297,4380_110076,Commons Road,55765-00008-1,1,4380_7778208_1110111,4380_1720 -4380_77955,285,4380_11008,Enfield,9281-00009-1,0,4380_7778208_1150105,4380_238 -4380_78121,285,4380_110083,Commons Road,56916-00009-1,1,4380_7778208_1110115,4380_1720 -4380_78121,286,4380_110084,Commons Road,56914-00010-1,1,4380_7778208_1110115,4380_1720 -4380_78121,288,4380_110085,Commons Road,56918-00011-1,1,4380_7778208_1110115,4380_1720 -4380_78121,287,4380_110086,Commons Road,56912-00012-1,1,4380_7778208_1110115,4380_1720 -4380_78121,289,4380_110087,Commons Road,56920-00014-1,1,4380_7778208_1110115,4380_1720 -4380_78121,290,4380_110088,Commons Road,56917-00015-1,1,4380_7778208_1110115,4380_1720 -4380_78121,291,4380_110089,Commons Road,56588-00013-1,1,4380_7778208_1110114,4380_1720 -4380_77955,286,4380_11009,Enfield,9290-00010-1,0,4380_7778208_1150105,4380_238 -4380_78121,292,4380_110090,Commons Road,56915-00016-1,1,4380_7778208_1110115,4380_1720 -4380_78121,293,4380_110091,Commons Road,56919-00017-1,1,4380_7778208_1110115,4380_1720 -4380_78121,294,4380_110092,Commons Road,56913-00018-1,1,4380_7778208_1110115,4380_1720 -4380_78121,295,4380_110093,Commons Road,56921-00019-1,1,4380_7778208_1110115,4380_1720 -4380_78121,296,4380_110094,Commons Road,56589-00021-1,1,4380_7778208_1110114,4380_1720 -4380_77955,288,4380_11010,Enfield,9317-00011-1,0,4380_7778208_1150105,4380_238 -4380_78121,285,4380_110101,Commons Road,56255-00009-1,1,4380_7778208_1110113,4380_1720 -4380_78121,286,4380_110102,Commons Road,56253-00010-1,1,4380_7778208_1110113,4380_1720 -4380_78121,288,4380_110103,Commons Road,56251-00011-1,1,4380_7778208_1110113,4380_1720 -4380_78121,287,4380_110104,Commons Road,56257-00012-1,1,4380_7778208_1110113,4380_1720 -4380_78121,289,4380_110105,Commons Road,56249-00014-1,1,4380_7778208_1110113,4380_1720 -4380_78121,290,4380_110106,Commons Road,56256-00015-1,1,4380_7778208_1110113,4380_1720 -4380_78121,291,4380_110107,Commons Road,55912-00013-1,1,4380_7778208_1110112,4380_1720 -4380_78121,292,4380_110108,Commons Road,56254-00016-1,1,4380_7778208_1110113,4380_1720 -4380_78121,293,4380_110109,Commons Road,56252-00017-1,1,4380_7778208_1110113,4380_1720 -4380_77955,287,4380_11011,Enfield,9335-00012-1,0,4380_7778208_1150105,4380_238 -4380_78121,294,4380_110110,Commons Road,56258-00018-1,1,4380_7778208_1110113,4380_1720 -4380_78121,295,4380_110111,Commons Road,56250-00019-1,1,4380_7778208_1110113,4380_1720 -4380_78121,296,4380_110112,Commons Road,55913-00021-1,1,4380_7778208_1110112,4380_1720 -4380_78121,297,4380_110114,Commons Road,55914-00008-1,1,4380_7778208_1110112,4380_1720 -4380_77955,289,4380_11012,Enfield,9254-00014-1,0,4380_7778208_1150105,4380_238 -4380_78121,285,4380_110121,Commons Road,55919-00009-1,1,4380_7778208_1110112,4380_1720 -4380_78121,286,4380_110122,Commons Road,55925-00010-1,1,4380_7778208_1110112,4380_1720 -4380_78121,288,4380_110123,Commons Road,55915-00011-1,1,4380_7778208_1110112,4380_1720 -4380_78121,287,4380_110124,Commons Road,55923-00012-1,1,4380_7778208_1110112,4380_1720 -4380_78121,289,4380_110125,Commons Road,55921-00014-1,1,4380_7778208_1110112,4380_1720 -4380_78121,290,4380_110126,Commons Road,55920-00015-1,1,4380_7778208_1110112,4380_1720 -4380_78121,291,4380_110127,Commons Road,55769-00013-1,1,4380_7778208_1110111,4380_1720 -4380_78121,292,4380_110128,Commons Road,55926-00016-1,1,4380_7778208_1110112,4380_1720 -4380_78121,293,4380_110129,Commons Road,55916-00017-1,1,4380_7778208_1110112,4380_1720 -4380_77955,290,4380_11013,Enfield,57822-00015-1,0,4380_7778208_1150105,4380_238 -4380_78121,294,4380_110130,Commons Road,55924-00018-1,1,4380_7778208_1110112,4380_1720 -4380_78121,295,4380_110131,Commons Road,55922-00019-1,1,4380_7778208_1110112,4380_1720 -4380_78121,296,4380_110132,Commons Road,55770-00021-1,1,4380_7778208_1110111,4380_1720 -4380_78121,285,4380_110139,Commons Road,56622-00009-1,1,4380_7778208_1110114,4380_1720 -4380_77955,291,4380_11014,Enfield,9563-00013-1,0,4380_7778208_1150109,4380_244 -4380_78121,286,4380_110140,Commons Road,56614-00010-1,1,4380_7778208_1110114,4380_1720 -4380_78121,288,4380_110141,Commons Road,56620-00011-1,1,4380_7778208_1110114,4380_1720 -4380_78121,287,4380_110142,Commons Road,56618-00012-1,1,4380_7778208_1110114,4380_1720 -4380_78121,289,4380_110143,Commons Road,56616-00014-1,1,4380_7778208_1110114,4380_1720 -4380_78121,290,4380_110144,Commons Road,56623-00015-1,1,4380_7778208_1110114,4380_1720 -4380_78121,291,4380_110145,Commons Road,56272-00013-1,1,4380_7778208_1110113,4380_1720 -4380_78121,292,4380_110146,Commons Road,56615-00016-1,1,4380_7778208_1110114,4380_1720 -4380_78121,293,4380_110147,Commons Road,56621-00017-1,1,4380_7778208_1110114,4380_1720 -4380_78121,294,4380_110148,Commons Road,56619-00018-1,1,4380_7778208_1110114,4380_1720 -4380_78121,295,4380_110149,Commons Road,56617-00019-1,1,4380_7778208_1110114,4380_1720 -4380_77955,292,4380_11015,Enfield,57823-00016-1,0,4380_7778208_1150105,4380_238 -4380_78121,296,4380_110150,Commons Road,56273-00021-1,1,4380_7778208_1110113,4380_1720 -4380_78121,297,4380_110152,Commons Road,56284-00008-1,1,4380_7778208_1110113,4380_1720 -4380_78121,285,4380_110159,Commons Road,57256-00009-1,1,4380_7778208_1110116,4380_1720 -4380_77955,293,4380_11016,Enfield,57820-00017-1,0,4380_7778208_1150105,4380_238 -4380_78121,286,4380_110160,Commons Road,57258-00010-1,1,4380_7778208_1110116,4380_1720 -4380_78121,288,4380_110161,Commons Road,57264-00011-1,1,4380_7778208_1110116,4380_1720 -4380_78121,287,4380_110162,Commons Road,57260-00012-1,1,4380_7778208_1110116,4380_1720 -4380_78121,289,4380_110163,Commons Road,57262-00014-1,1,4380_7778208_1110116,4380_1720 -4380_78121,290,4380_110164,Commons Road,57257-00015-1,1,4380_7778208_1110116,4380_1720 -4380_78121,291,4380_110165,Commons Road,56958-00013-1,1,4380_7778208_1110115,4380_1720 -4380_78121,292,4380_110166,Commons Road,57259-00016-1,1,4380_7778208_1110116,4380_1720 -4380_78121,293,4380_110167,Commons Road,57265-00017-1,1,4380_7778208_1110116,4380_1720 -4380_78121,294,4380_110168,Commons Road,57261-00018-1,1,4380_7778208_1110116,4380_1720 -4380_78121,295,4380_110169,Commons Road,57263-00019-1,1,4380_7778208_1110116,4380_1720 -4380_77955,294,4380_11017,Enfield,57819-00018-1,0,4380_7778208_1150105,4380_238 -4380_78121,296,4380_110170,Commons Road,56959-00021-1,1,4380_7778208_1110115,4380_1720 -4380_78121,285,4380_110177,Commons Road,56968-00009-1,1,4380_7778208_1110115,4380_1720 -4380_78121,286,4380_110178,Commons Road,56966-00010-1,1,4380_7778208_1110115,4380_1720 -4380_78121,288,4380_110179,Commons Road,56962-00011-1,1,4380_7778208_1110115,4380_1720 -4380_77955,295,4380_11018,Enfield,57821-00019-1,0,4380_7778208_1150105,4380_238 -4380_78121,287,4380_110180,Commons Road,56964-00012-1,1,4380_7778208_1110115,4380_1720 -4380_78121,289,4380_110181,Commons Road,56960-00014-1,1,4380_7778208_1110115,4380_1720 -4380_78121,290,4380_110182,Commons Road,56969-00015-1,1,4380_7778208_1110115,4380_1720 -4380_78121,291,4380_110183,Commons Road,56636-00013-1,1,4380_7778208_1110114,4380_1720 -4380_78121,292,4380_110184,Commons Road,56967-00016-1,1,4380_7778208_1110115,4380_1720 -4380_78121,293,4380_110185,Commons Road,56963-00017-1,1,4380_7778208_1110115,4380_1720 -4380_78121,294,4380_110186,Commons Road,56965-00018-1,1,4380_7778208_1110115,4380_1720 -4380_78121,295,4380_110187,Commons Road,56961-00019-1,1,4380_7778208_1110115,4380_1720 -4380_78121,296,4380_110188,Commons Road,56637-00021-1,1,4380_7778208_1110114,4380_1720 -4380_77955,296,4380_11019,Enfield,58032-00021-1,0,4380_7778208_1150109,4380_244 -4380_78121,297,4380_110190,Commons Road,55777-00008-1,1,4380_7778208_1110111,4380_1720 -4380_78121,285,4380_110197,Commons Road,56302-00009-1,1,4380_7778208_1110113,4380_1720 -4380_78121,286,4380_110198,Commons Road,56308-00010-1,1,4380_7778208_1110113,4380_1720 -4380_78121,288,4380_110199,Commons Road,56300-00011-1,1,4380_7778208_1110113,4380_1720 -4380_78121,287,4380_110200,Commons Road,56304-00012-1,1,4380_7778208_1110113,4380_1720 -4380_78121,289,4380_110201,Commons Road,56306-00014-1,1,4380_7778208_1110113,4380_1720 -4380_78121,290,4380_110202,Commons Road,56303-00015-1,1,4380_7778208_1110113,4380_1720 -4380_78121,291,4380_110203,Commons Road,55963-00013-1,1,4380_7778208_1110112,4380_1720 -4380_78121,292,4380_110204,Commons Road,56309-00016-1,1,4380_7778208_1110113,4380_1720 -4380_78121,293,4380_110205,Commons Road,56301-00017-1,1,4380_7778208_1110113,4380_1720 -4380_78121,294,4380_110206,Commons Road,56305-00018-1,1,4380_7778208_1110113,4380_1720 -4380_78121,295,4380_110207,Commons Road,56307-00019-1,1,4380_7778208_1110113,4380_1720 -4380_78121,296,4380_110208,Commons Road,55964-00021-1,1,4380_7778208_1110112,4380_1720 -4380_78121,285,4380_110215,Commons Road,55966-00009-1,1,4380_7778208_1110112,4380_1720 -4380_78121,286,4380_110216,Commons Road,55972-00010-1,1,4380_7778208_1110112,4380_1720 -4380_78121,288,4380_110217,Commons Road,55970-00011-1,1,4380_7778208_1110112,4380_1720 -4380_78121,287,4380_110218,Commons Road,55974-00012-1,1,4380_7778208_1110112,4380_1720 -4380_78121,289,4380_110219,Commons Road,55968-00014-1,1,4380_7778208_1110112,4380_1720 -4380_78121,290,4380_110220,Commons Road,55967-00015-1,1,4380_7778208_1110112,4380_1720 -4380_78121,291,4380_110221,Commons Road,55780-00013-1,1,4380_7778208_1110111,4380_1720 -4380_78121,292,4380_110222,Commons Road,55973-00016-1,1,4380_7778208_1110112,4380_1720 -4380_78121,293,4380_110223,Commons Road,55971-00017-1,1,4380_7778208_1110112,4380_1720 -4380_78121,294,4380_110224,Commons Road,55975-00018-1,1,4380_7778208_1110112,4380_1720 -4380_78121,295,4380_110225,Commons Road,55969-00019-1,1,4380_7778208_1110112,4380_1720 -4380_78121,296,4380_110226,Commons Road,55781-00021-1,1,4380_7778208_1110111,4380_1720 -4380_78121,297,4380_110228,Commons Road,55978-00008-1,1,4380_7778208_1110112,4380_1720 -4380_78121,285,4380_110235,Commons Road,56666-00009-1,1,4380_7778208_1110114,4380_1720 -4380_78121,286,4380_110236,Commons Road,56662-00010-1,1,4380_7778208_1110114,4380_1720 -4380_78121,288,4380_110237,Commons Road,56664-00011-1,1,4380_7778208_1110114,4380_1720 -4380_78121,287,4380_110238,Commons Road,56670-00012-1,1,4380_7778208_1110114,4380_1720 -4380_78121,289,4380_110239,Commons Road,56668-00014-1,1,4380_7778208_1110114,4380_1720 -4380_78121,290,4380_110240,Commons Road,56667-00015-1,1,4380_7778208_1110114,4380_1720 -4380_78121,291,4380_110241,Commons Road,56323-00013-1,1,4380_7778208_1110113,4380_1720 -4380_78121,292,4380_110242,Commons Road,56663-00016-1,1,4380_7778208_1110114,4380_1720 -4380_78121,293,4380_110243,Commons Road,56665-00017-1,1,4380_7778208_1110114,4380_1720 -4380_78121,294,4380_110244,Commons Road,56671-00018-1,1,4380_7778208_1110114,4380_1720 -4380_78121,295,4380_110245,Commons Road,56669-00019-1,1,4380_7778208_1110114,4380_1720 -4380_78121,296,4380_110246,Commons Road,56324-00021-1,1,4380_7778208_1110113,4380_1720 -4380_78121,285,4380_110253,Commons Road,57300-00009-1,1,4380_7778208_1110116,4380_1720 -4380_78121,286,4380_110254,Commons Road,57296-00010-1,1,4380_7778208_1110116,4380_1720 -4380_78121,288,4380_110255,Commons Road,57304-00011-1,1,4380_7778208_1110116,4380_1720 -4380_78121,287,4380_110256,Commons Road,57302-00012-1,1,4380_7778208_1110116,4380_1720 -4380_78121,289,4380_110257,Commons Road,57298-00014-1,1,4380_7778208_1110116,4380_1720 -4380_78121,290,4380_110258,Commons Road,57301-00015-1,1,4380_7778208_1110116,4380_1720 -4380_78121,291,4380_110259,Commons Road,57006-00013-1,1,4380_7778208_1110115,4380_1720 -4380_78121,292,4380_110260,Commons Road,57297-00016-1,1,4380_7778208_1110116,4380_1720 -4380_78121,293,4380_110261,Commons Road,57305-00017-1,1,4380_7778208_1110116,4380_1720 -4380_78121,294,4380_110262,Commons Road,57303-00018-1,1,4380_7778208_1110116,4380_1720 -4380_78121,295,4380_110263,Commons Road,57299-00019-1,1,4380_7778208_1110116,4380_1720 -4380_78121,296,4380_110264,Commons Road,57007-00021-1,1,4380_7778208_1110115,4380_1720 -4380_78121,297,4380_110266,Commons Road,56348-00008-1,1,4380_7778208_1110113,4380_1720 -4380_77955,285,4380_11027,Mullingar,9782-00009-1,0,4380_7778208_1150114,4380_239 -4380_78121,285,4380_110273,Commons Road,57010-00009-1,1,4380_7778208_1110115,4380_1720 -4380_78121,286,4380_110274,Commons Road,57014-00010-1,1,4380_7778208_1110115,4380_1720 -4380_78121,288,4380_110275,Commons Road,57008-00011-1,1,4380_7778208_1110115,4380_1720 -4380_78121,287,4380_110276,Commons Road,57016-00012-1,1,4380_7778208_1110115,4380_1720 -4380_78121,289,4380_110277,Commons Road,57012-00014-1,1,4380_7778208_1110115,4380_1720 -4380_78121,290,4380_110278,Commons Road,57011-00015-1,1,4380_7778208_1110115,4380_1720 -4380_78121,291,4380_110279,Commons Road,56684-00013-1,1,4380_7778208_1110114,4380_1720 -4380_77955,286,4380_11028,Mullingar,9794-00010-1,0,4380_7778208_1150114,4380_239 -4380_78121,292,4380_110280,Commons Road,57015-00016-1,1,4380_7778208_1110115,4380_1720 -4380_78121,293,4380_110281,Commons Road,57009-00017-1,1,4380_7778208_1110115,4380_1720 -4380_78121,294,4380_110282,Commons Road,57017-00018-1,1,4380_7778208_1110115,4380_1720 -4380_78121,295,4380_110283,Commons Road,57013-00019-1,1,4380_7778208_1110115,4380_1720 -4380_78121,296,4380_110284,Commons Road,56685-00021-1,1,4380_7778208_1110114,4380_1720 -4380_77955,297,4380_11029,Mullingar,57824-00008-1,0,4380_7778208_1150105,4380_245 -4380_78121,285,4380_110291,Commons Road,56358-00009-1,1,4380_7778208_1110113,4380_1720 -4380_78121,286,4380_110292,Commons Road,56354-00010-1,1,4380_7778208_1110113,4380_1720 -4380_78121,288,4380_110293,Commons Road,56351-00011-1,1,4380_7778208_1110113,4380_1720 -4380_78121,287,4380_110294,Commons Road,56360-00012-1,1,4380_7778208_1110113,4380_1720 -4380_78121,289,4380_110295,Commons Road,56356-00014-1,1,4380_7778208_1110113,4380_1720 -4380_78121,290,4380_110296,Commons Road,56359-00015-1,1,4380_7778208_1110113,4380_1720 -4380_78121,291,4380_110297,Commons Road,56015-00013-1,1,4380_7778208_1110112,4380_1720 -4380_78121,292,4380_110298,Commons Road,56355-00016-1,1,4380_7778208_1110113,4380_1720 -4380_78121,293,4380_110299,Commons Road,56352-00017-1,1,4380_7778208_1110113,4380_1720 -4380_78113,285,4380_1103,Dublin via Airport,50077-00009-1,1,4380_7778208_1000907,4380_18 -4380_77955,288,4380_11030,Mullingar,9802-00011-1,0,4380_7778208_1150114,4380_239 -4380_78121,294,4380_110300,Commons Road,56361-00018-1,1,4380_7778208_1110113,4380_1720 -4380_78121,295,4380_110301,Commons Road,56357-00019-1,1,4380_7778208_1110113,4380_1720 -4380_78121,296,4380_110302,Commons Road,56016-00021-1,1,4380_7778208_1110112,4380_1720 -4380_78121,297,4380_110304,Commons Road,55791-00008-1,1,4380_7778208_1110111,4380_1720 -4380_77955,287,4380_11031,Mullingar,9806-00012-1,0,4380_7778208_1150114,4380_239 -4380_78121,285,4380_110311,Commons Road,56023-00009-1,1,4380_7778208_1110112,4380_1720 -4380_78121,286,4380_110312,Commons Road,56017-00010-1,1,4380_7778208_1110112,4380_1720 -4380_78121,288,4380_110313,Commons Road,56021-00011-1,1,4380_7778208_1110112,4380_1720 -4380_78121,287,4380_110314,Commons Road,56028-00012-1,1,4380_7778208_1110112,4380_1720 -4380_78121,289,4380_110315,Commons Road,56026-00014-1,1,4380_7778208_1110112,4380_1720 -4380_78121,290,4380_110316,Commons Road,56024-00015-1,1,4380_7778208_1110112,4380_1720 -4380_78121,291,4380_110317,Commons Road,55792-00013-1,1,4380_7778208_1110111,4380_1720 -4380_78121,292,4380_110318,Commons Road,56018-00016-1,1,4380_7778208_1110112,4380_1720 -4380_78121,293,4380_110319,Commons Road,56022-00017-1,1,4380_7778208_1110112,4380_1720 -4380_77955,289,4380_11032,Mullingar,9774-00014-1,0,4380_7778208_1150114,4380_239 -4380_78121,294,4380_110320,Commons Road,56029-00018-1,1,4380_7778208_1110112,4380_1720 -4380_78121,295,4380_110321,Commons Road,56027-00019-1,1,4380_7778208_1110112,4380_1720 -4380_78121,296,4380_110322,Commons Road,55793-00021-1,1,4380_7778208_1110111,4380_1720 -4380_78121,285,4380_110329,Commons Road,56716-00009-1,1,4380_7778208_1110114,4380_1720 -4380_77955,290,4380_11033,Mullingar,58167-00015-1,0,4380_7778208_1150114,4380_239 -4380_78121,286,4380_110330,Commons Road,56718-00010-1,1,4380_7778208_1110114,4380_1720 -4380_78121,288,4380_110331,Commons Road,56714-00011-1,1,4380_7778208_1110114,4380_1720 -4380_78121,287,4380_110332,Commons Road,56712-00012-1,1,4380_7778208_1110114,4380_1720 -4380_78121,289,4380_110333,Commons Road,56710-00014-1,1,4380_7778208_1110114,4380_1720 -4380_78121,290,4380_110334,Commons Road,56717-00015-1,1,4380_7778208_1110114,4380_1720 -4380_78121,291,4380_110335,Commons Road,56375-00013-1,1,4380_7778208_1110113,4380_1720 -4380_78121,292,4380_110336,Commons Road,56719-00016-1,1,4380_7778208_1110114,4380_1720 -4380_78121,293,4380_110337,Commons Road,56715-00017-1,1,4380_7778208_1110114,4380_1720 -4380_78121,294,4380_110338,Commons Road,56713-00018-1,1,4380_7778208_1110114,4380_1720 -4380_78121,295,4380_110339,Commons Road,56711-00019-1,1,4380_7778208_1110114,4380_1720 -4380_77955,291,4380_11034,Mullingar,9660-00013-1,0,4380_7778208_1150111,4380_246 -4380_78121,296,4380_110340,Commons Road,56376-00021-1,1,4380_7778208_1110113,4380_1720 -4380_78121,297,4380_110342,Commons Road,56042-00008-1,1,4380_7778208_1110112,4380_1720 -4380_78121,285,4380_110349,Commons Road,57344-00009-1,1,4380_7778208_1110116,4380_1720 -4380_77955,292,4380_11035,Mullingar,58166-00016-1,0,4380_7778208_1150114,4380_239 -4380_78121,286,4380_110350,Commons Road,57338-00010-1,1,4380_7778208_1110116,4380_1720 -4380_78121,288,4380_110351,Commons Road,57340-00011-1,1,4380_7778208_1110116,4380_1720 -4380_78121,287,4380_110352,Commons Road,57336-00012-1,1,4380_7778208_1110116,4380_1720 -4380_78121,289,4380_110353,Commons Road,57342-00014-1,1,4380_7778208_1110116,4380_1720 -4380_78121,290,4380_110354,Commons Road,57345-00015-1,1,4380_7778208_1110116,4380_1720 -4380_78121,291,4380_110355,Commons Road,57054-00013-1,1,4380_7778208_1110115,4380_1720 -4380_78121,292,4380_110356,Commons Road,57339-00016-1,1,4380_7778208_1110116,4380_1720 -4380_78121,293,4380_110357,Commons Road,57341-00017-1,1,4380_7778208_1110116,4380_1720 -4380_78121,294,4380_110358,Commons Road,57337-00018-1,1,4380_7778208_1110116,4380_1720 -4380_78121,295,4380_110359,Commons Road,57343-00019-1,1,4380_7778208_1110116,4380_1720 -4380_77955,293,4380_11036,Mullingar,58165-00017-1,0,4380_7778208_1150114,4380_239 -4380_78121,296,4380_110360,Commons Road,57055-00021-1,1,4380_7778208_1110115,4380_1720 -4380_78121,285,4380_110367,Commons Road,57056-00009-1,1,4380_7778208_1110115,4380_1720 -4380_78121,286,4380_110368,Commons Road,57066-00010-1,1,4380_7778208_1110115,4380_1720 -4380_78121,288,4380_110369,Commons Road,57062-00011-1,1,4380_7778208_1110115,4380_1720 -4380_77955,294,4380_11037,Mullingar,58164-00018-1,0,4380_7778208_1150114,4380_239 -4380_78121,287,4380_110370,Commons Road,57064-00012-1,1,4380_7778208_1110115,4380_1720 -4380_78121,289,4380_110371,Commons Road,57060-00014-1,1,4380_7778208_1110115,4380_1720 -4380_78121,290,4380_110372,Commons Road,57057-00015-1,1,4380_7778208_1110115,4380_1720 -4380_78121,291,4380_110373,Commons Road,56732-00013-1,1,4380_7778208_1110114,4380_1720 -4380_78121,292,4380_110374,Commons Road,57067-00016-1,1,4380_7778208_1110115,4380_1720 -4380_78121,293,4380_110375,Commons Road,57063-00017-1,1,4380_7778208_1110115,4380_1720 -4380_78121,294,4380_110376,Commons Road,57065-00018-1,1,4380_7778208_1110115,4380_1720 -4380_78121,295,4380_110377,Commons Road,57061-00019-1,1,4380_7778208_1110115,4380_1720 -4380_78121,296,4380_110378,Commons Road,56733-00021-1,1,4380_7778208_1110114,4380_1720 -4380_77955,295,4380_11038,Mullingar,58168-00019-1,0,4380_7778208_1150114,4380_239 -4380_78121,297,4380_110380,Commons Road,56400-00008-1,1,4380_7778208_1110113,4380_1720 -4380_78121,285,4380_110387,Commons Road,56411-00009-1,1,4380_7778208_1110113,4380_1720 -4380_78121,286,4380_110388,Commons Road,56409-00010-1,1,4380_7778208_1110113,4380_1720 -4380_78121,288,4380_110389,Commons Road,56403-00011-1,1,4380_7778208_1110113,4380_1720 -4380_77955,296,4380_11039,Mullingar,58093-00021-1,0,4380_7778208_1150111,4380_246 -4380_78121,287,4380_110390,Commons Road,56407-00012-1,1,4380_7778208_1110113,4380_1720 -4380_78121,289,4380_110391,Commons Road,56405-00014-1,1,4380_7778208_1110113,4380_1720 -4380_78121,290,4380_110392,Commons Road,56412-00015-1,1,4380_7778208_1110113,4380_1720 -4380_78121,291,4380_110393,Commons Road,56066-00013-1,1,4380_7778208_1110112,4380_1720 -4380_78121,292,4380_110394,Commons Road,56410-00016-1,1,4380_7778208_1110113,4380_1720 -4380_78121,293,4380_110395,Commons Road,56404-00017-1,1,4380_7778208_1110113,4380_1720 -4380_78121,294,4380_110396,Commons Road,56408-00018-1,1,4380_7778208_1110113,4380_1720 -4380_78121,295,4380_110397,Commons Road,56406-00019-1,1,4380_7778208_1110113,4380_1720 -4380_78121,296,4380_110398,Commons Road,56067-00021-1,1,4380_7778208_1110112,4380_1720 -4380_78113,286,4380_1104,Dublin via Airport,50073-00010-1,1,4380_7778208_1000907,4380_18 -4380_78121,285,4380_110405,Commons Road,56075-00009-1,1,4380_7778208_1110112,4380_1720 -4380_78121,286,4380_110406,Commons Road,56069-00010-1,1,4380_7778208_1110112,4380_1720 -4380_78121,288,4380_110407,Commons Road,56079-00011-1,1,4380_7778208_1110112,4380_1720 -4380_78121,287,4380_110408,Commons Road,56071-00012-1,1,4380_7778208_1110112,4380_1720 -4380_78121,289,4380_110409,Commons Road,56073-00014-1,1,4380_7778208_1110112,4380_1720 -4380_78121,290,4380_110410,Commons Road,56076-00015-1,1,4380_7778208_1110112,4380_1720 -4380_78121,291,4380_110411,Commons Road,55803-00013-1,1,4380_7778208_1110111,4380_1720 -4380_78121,292,4380_110412,Commons Road,56070-00016-1,1,4380_7778208_1110112,4380_1720 -4380_78121,293,4380_110413,Commons Road,56080-00017-1,1,4380_7778208_1110112,4380_1720 -4380_78121,294,4380_110414,Commons Road,56072-00018-1,1,4380_7778208_1110112,4380_1720 -4380_78121,295,4380_110415,Commons Road,56074-00019-1,1,4380_7778208_1110112,4380_1720 -4380_78121,296,4380_110416,Commons Road,55804-00021-1,1,4380_7778208_1110111,4380_1720 -4380_78121,297,4380_110418,Commons Road,55805-00008-1,1,4380_7778208_1110111,4380_1720 -4380_78121,285,4380_110425,Commons Road,56764-00009-1,1,4380_7778208_1110114,4380_1720 -4380_78121,286,4380_110426,Commons Road,56758-00010-1,1,4380_7778208_1110114,4380_1720 -4380_78121,288,4380_110427,Commons Road,56760-00011-1,1,4380_7778208_1110114,4380_1720 -4380_78121,287,4380_110428,Commons Road,56762-00012-1,1,4380_7778208_1110114,4380_1720 -4380_78121,289,4380_110429,Commons Road,56766-00014-1,1,4380_7778208_1110114,4380_1720 -4380_78121,290,4380_110430,Commons Road,56765-00015-1,1,4380_7778208_1110114,4380_1720 -4380_78121,291,4380_110431,Commons Road,56426-00013-1,1,4380_7778208_1110113,4380_1720 -4380_78121,292,4380_110432,Commons Road,56759-00016-1,1,4380_7778208_1110114,4380_1720 -4380_78121,293,4380_110433,Commons Road,56761-00017-1,1,4380_7778208_1110114,4380_1720 -4380_78121,294,4380_110434,Commons Road,56763-00018-1,1,4380_7778208_1110114,4380_1720 -4380_78121,295,4380_110435,Commons Road,56767-00019-1,1,4380_7778208_1110114,4380_1720 -4380_78121,296,4380_110436,Commons Road,56427-00021-1,1,4380_7778208_1110113,4380_1720 -4380_78121,285,4380_110443,Commons Road,57382-00009-1,1,4380_7778208_1110116,4380_1720 -4380_78121,286,4380_110444,Commons Road,57378-00010-1,1,4380_7778208_1110116,4380_1720 -4380_78121,288,4380_110445,Commons Road,57376-00011-1,1,4380_7778208_1110116,4380_1720 -4380_78121,287,4380_110446,Commons Road,57380-00012-1,1,4380_7778208_1110116,4380_1720 -4380_78121,289,4380_110447,Commons Road,57384-00014-1,1,4380_7778208_1110116,4380_1720 -4380_78121,290,4380_110448,Commons Road,57383-00015-1,1,4380_7778208_1110116,4380_1720 -4380_78121,291,4380_110449,Commons Road,57102-00013-1,1,4380_7778208_1110115,4380_1721 -4380_78121,292,4380_110450,Commons Road,57379-00016-1,1,4380_7778208_1110116,4380_1720 -4380_78121,293,4380_110451,Commons Road,57377-00017-1,1,4380_7778208_1110116,4380_1720 -4380_78121,294,4380_110452,Commons Road,57381-00018-1,1,4380_7778208_1110116,4380_1720 -4380_78121,295,4380_110453,Commons Road,57385-00019-1,1,4380_7778208_1110116,4380_1720 -4380_78121,296,4380_110454,Commons Road,57103-00021-1,1,4380_7778208_1110115,4380_1721 -4380_78121,297,4380_110456,Commons Road,56100-00008-1,1,4380_7778208_1110112,4380_1720 -4380_77955,285,4380_11046,Enfield,9169-00009-1,0,4380_7778208_1150103,4380_238 -4380_78121,285,4380_110463,Commons Road,57106-00009-1,1,4380_7778208_1110115,4380_1720 -4380_78121,286,4380_110464,Commons Road,57110-00010-1,1,4380_7778208_1110115,4380_1720 -4380_78121,288,4380_110465,Commons Road,57108-00011-1,1,4380_7778208_1110115,4380_1720 -4380_78121,287,4380_110466,Commons Road,57112-00012-1,1,4380_7778208_1110115,4380_1720 -4380_78121,289,4380_110467,Commons Road,57104-00014-1,1,4380_7778208_1110115,4380_1720 -4380_78121,290,4380_110468,Commons Road,57107-00015-1,1,4380_7778208_1110115,4380_1720 -4380_78121,291,4380_110469,Commons Road,56780-00013-1,1,4380_7778208_1110114,4380_1720 -4380_77955,286,4380_11047,Enfield,9184-00010-1,0,4380_7778208_1150103,4380_238 -4380_78121,292,4380_110470,Commons Road,57111-00016-1,1,4380_7778208_1110115,4380_1720 -4380_78121,293,4380_110471,Commons Road,57109-00017-1,1,4380_7778208_1110115,4380_1720 -4380_78121,294,4380_110472,Commons Road,57113-00018-1,1,4380_7778208_1110115,4380_1720 -4380_78121,295,4380_110473,Commons Road,57105-00019-1,1,4380_7778208_1110115,4380_1720 -4380_78121,296,4380_110474,Commons Road,56781-00021-1,1,4380_7778208_1110114,4380_1720 -4380_77955,288,4380_11048,Enfield,9194-00011-1,0,4380_7778208_1150103,4380_238 -4380_78121,285,4380_110481,Commons Road,56462-00009-1,1,4380_7778208_1110113,4380_1720 -4380_78121,286,4380_110482,Commons Road,56458-00010-1,1,4380_7778208_1110113,4380_1720 -4380_78121,288,4380_110483,Commons Road,56454-00011-1,1,4380_7778208_1110113,4380_1720 -4380_78121,287,4380_110484,Commons Road,56460-00012-1,1,4380_7778208_1110113,4380_1720 -4380_78121,289,4380_110485,Commons Road,56456-00014-1,1,4380_7778208_1110113,4380_1720 -4380_78121,290,4380_110486,Commons Road,56463-00015-1,1,4380_7778208_1110113,4380_1720 -4380_78121,291,4380_110487,Commons Road,56118-00013-1,1,4380_7778208_1110112,4380_1720 -4380_78121,292,4380_110488,Commons Road,56459-00016-1,1,4380_7778208_1110113,4380_1720 -4380_78121,293,4380_110489,Commons Road,56455-00017-1,1,4380_7778208_1110113,4380_1720 -4380_77955,287,4380_11049,Enfield,9204-00012-1,0,4380_7778208_1150103,4380_238 -4380_78121,294,4380_110490,Commons Road,56461-00018-1,1,4380_7778208_1110113,4380_1720 -4380_78121,295,4380_110491,Commons Road,56457-00019-1,1,4380_7778208_1110113,4380_1720 -4380_78121,296,4380_110492,Commons Road,56119-00021-1,1,4380_7778208_1110112,4380_1720 -4380_78121,297,4380_110494,Commons Road,56464-00008-1,1,4380_7778208_1110113,4380_1720 -4380_78113,297,4380_1105,Dublin via Airport,49977-00008-1,1,4380_7778208_1000906,4380_18 -4380_77955,289,4380_11050,Enfield,9159-00014-1,0,4380_7778208_1150103,4380_238 -4380_78121,285,4380_110501,Commons Road,56120-00009-1,1,4380_7778208_1110112,4380_1720 -4380_78121,286,4380_110502,Commons Road,56122-00010-1,1,4380_7778208_1110112,4380_1720 -4380_78121,288,4380_110503,Commons Road,56128-00011-1,1,4380_7778208_1110112,4380_1720 -4380_78121,287,4380_110504,Commons Road,56126-00012-1,1,4380_7778208_1110112,4380_1720 -4380_78121,289,4380_110505,Commons Road,56130-00014-1,1,4380_7778208_1110112,4380_1720 -4380_78121,290,4380_110506,Commons Road,56121-00015-1,1,4380_7778208_1110112,4380_1720 -4380_78121,291,4380_110507,Commons Road,55814-00013-1,1,4380_7778208_1110111,4380_1720 -4380_78121,292,4380_110508,Commons Road,56123-00016-1,1,4380_7778208_1110112,4380_1720 -4380_78121,293,4380_110509,Commons Road,56129-00017-1,1,4380_7778208_1110112,4380_1720 -4380_77955,290,4380_11051,Enfield,57738-00015-1,0,4380_7778208_1150103,4380_238 -4380_78121,294,4380_110510,Commons Road,56127-00018-1,1,4380_7778208_1110112,4380_1720 -4380_78121,295,4380_110511,Commons Road,56131-00019-1,1,4380_7778208_1110112,4380_1720 -4380_78121,296,4380_110512,Commons Road,55815-00021-1,1,4380_7778208_1110111,4380_1720 -4380_78121,285,4380_110519,Commons Road,56814-00009-1,1,4380_7778208_1110114,4380_1720 -4380_77955,291,4380_11052,Enfield,9213-00013-1,0,4380_7778208_1150103,4380_244 -4380_78121,286,4380_110520,Commons Road,56806-00010-1,1,4380_7778208_1110114,4380_1720 -4380_78121,288,4380_110521,Commons Road,56808-00011-1,1,4380_7778208_1110114,4380_1720 -4380_78121,287,4380_110522,Commons Road,56812-00012-1,1,4380_7778208_1110114,4380_1720 -4380_78121,289,4380_110523,Commons Road,56810-00014-1,1,4380_7778208_1110114,4380_1720 -4380_78121,290,4380_110524,Commons Road,56815-00015-1,1,4380_7778208_1110114,4380_1720 -4380_78121,291,4380_110525,Commons Road,56477-00013-1,1,4380_7778208_1110113,4380_1720 -4380_78121,292,4380_110526,Commons Road,56807-00016-1,1,4380_7778208_1110114,4380_1720 -4380_78121,293,4380_110527,Commons Road,56809-00017-1,1,4380_7778208_1110114,4380_1720 -4380_78121,294,4380_110528,Commons Road,56813-00018-1,1,4380_7778208_1110114,4380_1720 -4380_78121,295,4380_110529,Commons Road,56811-00019-1,1,4380_7778208_1110114,4380_1720 -4380_77955,292,4380_11053,Enfield,57737-00016-1,0,4380_7778208_1150103,4380_238 -4380_78121,296,4380_110530,Commons Road,56478-00021-1,1,4380_7778208_1110113,4380_1720 -4380_78121,297,4380_110532,Commons Road,55819-00008-1,1,4380_7778208_1110111,4380_1720 -4380_78121,285,4380_110539,Commons Road,57416-00009-1,1,4380_7778208_1110116,4380_1720 -4380_77955,293,4380_11054,Enfield,57739-00017-1,0,4380_7778208_1150103,4380_238 -4380_78121,286,4380_110540,Commons Road,57424-00010-1,1,4380_7778208_1110116,4380_1720 -4380_78121,288,4380_110541,Commons Road,57418-00011-1,1,4380_7778208_1110116,4380_1720 -4380_78121,287,4380_110542,Commons Road,57422-00012-1,1,4380_7778208_1110116,4380_1720 -4380_78121,289,4380_110543,Commons Road,57420-00014-1,1,4380_7778208_1110116,4380_1720 -4380_78121,290,4380_110544,Commons Road,57417-00015-1,1,4380_7778208_1110116,4380_1720 -4380_78121,291,4380_110545,Commons Road,57150-00013-1,1,4380_7778208_1110115,4380_1720 -4380_78121,292,4380_110546,Commons Road,57425-00016-1,1,4380_7778208_1110116,4380_1720 -4380_78121,293,4380_110547,Commons Road,57419-00017-1,1,4380_7778208_1110116,4380_1720 -4380_78121,294,4380_110548,Commons Road,57423-00018-1,1,4380_7778208_1110116,4380_1720 -4380_78121,295,4380_110549,Commons Road,57421-00019-1,1,4380_7778208_1110116,4380_1720 -4380_77955,294,4380_11055,Enfield,57734-00018-1,0,4380_7778208_1150103,4380_238 -4380_78121,296,4380_110550,Commons Road,57151-00021-1,1,4380_7778208_1110115,4380_1720 -4380_78121,285,4380_110557,Commons Road,57154-00009-1,1,4380_7778208_1110115,4380_1720 -4380_78121,286,4380_110558,Commons Road,57160-00010-1,1,4380_7778208_1110115,4380_1720 -4380_78121,288,4380_110559,Commons Road,57162-00011-1,1,4380_7778208_1110115,4380_1720 -4380_77955,295,4380_11056,Enfield,57736-00019-1,0,4380_7778208_1150103,4380_238 -4380_78121,287,4380_110560,Commons Road,57158-00012-1,1,4380_7778208_1110115,4380_1720 -4380_78121,289,4380_110561,Commons Road,57156-00014-1,1,4380_7778208_1110115,4380_1720 -4380_78121,290,4380_110562,Commons Road,57155-00015-1,1,4380_7778208_1110115,4380_1720 -4380_78121,291,4380_110563,Commons Road,56828-00013-1,1,4380_7778208_1110114,4380_1720 -4380_78121,292,4380_110564,Commons Road,57161-00016-1,1,4380_7778208_1110115,4380_1720 -4380_78121,293,4380_110565,Commons Road,57163-00017-1,1,4380_7778208_1110115,4380_1720 -4380_78121,294,4380_110566,Commons Road,57159-00018-1,1,4380_7778208_1110115,4380_1720 -4380_78121,295,4380_110567,Commons Road,57157-00019-1,1,4380_7778208_1110115,4380_1720 -4380_78121,296,4380_110568,Commons Road,56829-00021-1,1,4380_7778208_1110114,4380_1720 -4380_77955,296,4380_11057,Enfield,57735-00021-1,0,4380_7778208_1150103,4380_244 -4380_78121,297,4380_110570,Commons Road,56160-00008-1,1,4380_7778208_1110112,4380_1720 -4380_78121,285,4380_110577,Commons Road,56514-00009-1,1,4380_7778208_1110113,4380_1720 -4380_78121,286,4380_110578,Commons Road,56507-00010-1,1,4380_7778208_1110113,4380_1720 -4380_78121,288,4380_110579,Commons Road,56510-00011-1,1,4380_7778208_1110113,4380_1720 -4380_78121,287,4380_110580,Commons Road,56505-00012-1,1,4380_7778208_1110113,4380_1720 -4380_78121,289,4380_110581,Commons Road,56512-00014-1,1,4380_7778208_1110113,4380_1720 -4380_78121,290,4380_110582,Commons Road,56515-00015-1,1,4380_7778208_1110113,4380_1720 -4380_78121,291,4380_110583,Commons Road,56169-00013-1,1,4380_7778208_1110112,4380_1720 -4380_78121,292,4380_110584,Commons Road,56508-00016-1,1,4380_7778208_1110113,4380_1720 -4380_78121,293,4380_110585,Commons Road,56511-00017-1,1,4380_7778208_1110113,4380_1720 -4380_78121,294,4380_110586,Commons Road,56506-00018-1,1,4380_7778208_1110113,4380_1720 -4380_78121,295,4380_110587,Commons Road,56513-00019-1,1,4380_7778208_1110113,4380_1720 -4380_78121,296,4380_110588,Commons Road,56170-00021-1,1,4380_7778208_1110112,4380_1720 -4380_78156,285,4380_110594,Bus Eireann,2732-00009-1,0,4380_7778208_1030126,4380_1726 -4380_78156,286,4380_110595,Bus Eireann,2756-00010-1,0,4380_7778208_1030126,4380_1726 -4380_78156,288,4380_110596,Bus Eireann,2780-00011-1,0,4380_7778208_1030126,4380_1726 -4380_78156,287,4380_110597,Bus Eireann,2804-00012-1,0,4380_7778208_1030126,4380_1726 -4380_78156,289,4380_110598,Bus Eireann,2708-00014-1,0,4380_7778208_1030126,4380_1726 -4380_78156,290,4380_110599,Bus Eireann,52382-00015-1,0,4380_7778208_1030126,4380_1726 -4380_78113,287,4380_1106,Dublin via Airport,50079-00012-1,1,4380_7778208_1000907,4380_18 -4380_78156,292,4380_110600,Bus Eireann,52381-00016-1,0,4380_7778208_1030126,4380_1726 -4380_78156,293,4380_110601,Bus Eireann,52385-00017-1,0,4380_7778208_1030126,4380_1726 -4380_78156,294,4380_110602,Bus Eireann,52384-00018-1,0,4380_7778208_1030126,4380_1726 -4380_78156,295,4380_110603,Bus Eireann,52383-00019-1,0,4380_7778208_1030126,4380_1726 -4380_78156,285,4380_110614,Bus Eireann,2856-00009-1,0,4380_7778208_1030127,4380_1726 -4380_78156,285,4380_110615,Bus Eireann,2956-00009-1,0,4380_7778208_1030128,4380_1726 -4380_78156,286,4380_110616,Bus Eireann,2876-00010-1,0,4380_7778208_1030127,4380_1726 -4380_78156,286,4380_110617,Bus Eireann,2976-00010-1,0,4380_7778208_1030128,4380_1726 -4380_78156,288,4380_110618,Bus Eireann,2886-00011-1,0,4380_7778208_1030127,4380_1726 -4380_78156,288,4380_110619,Bus Eireann,3006-00011-1,0,4380_7778208_1030128,4380_1726 -4380_78156,287,4380_110620,Bus Eireann,2916-00012-1,0,4380_7778208_1030127,4380_1726 -4380_78156,287,4380_110621,Bus Eireann,3016-00012-1,0,4380_7778208_1030128,4380_1726 -4380_78156,289,4380_110622,Bus Eireann,2836-00014-1,0,4380_7778208_1030127,4380_1726 -4380_78156,289,4380_110623,Bus Eireann,2946-00014-1,0,4380_7778208_1030128,4380_1726 -4380_78156,290,4380_110624,Bus Eireann,52444-00015-1,0,4380_7778208_1030127,4380_1726 -4380_78156,290,4380_110625,Bus Eireann,52491-00015-1,0,4380_7778208_1030128,4380_1726 -4380_78156,292,4380_110626,Bus Eireann,52443-00016-1,0,4380_7778208_1030127,4380_1726 -4380_78156,292,4380_110627,Bus Eireann,52493-00016-1,0,4380_7778208_1030128,4380_1726 -4380_78156,293,4380_110628,Bus Eireann,52442-00017-1,0,4380_7778208_1030127,4380_1726 -4380_78156,293,4380_110629,Bus Eireann,52494-00017-1,0,4380_7778208_1030128,4380_1726 -4380_78156,294,4380_110630,Bus Eireann,52441-00018-1,0,4380_7778208_1030127,4380_1726 -4380_78156,294,4380_110631,Bus Eireann,52492-00018-1,0,4380_7778208_1030128,4380_1726 -4380_78156,295,4380_110632,Bus Eireann,52445-00019-1,0,4380_7778208_1030127,4380_1726 -4380_78156,295,4380_110633,Bus Eireann,52495-00019-1,0,4380_7778208_1030128,4380_1726 -4380_78156,297,4380_110636,Bus Eireann,2662-00008-1,0,4380_7778208_1030123,4380_1726 -4380_78156,291,4380_110637,Bus Eireann,3144-00013-1,0,4380_7778208_1030129,4380_1726 -4380_78156,296,4380_110638,Bus Eireann,52541-00021-1,0,4380_7778208_1030129,4380_1726 -4380_78156,285,4380_110644,Bus Eireann,3074-00009-1,0,4380_7778208_1030129,4380_1726 -4380_78156,286,4380_110645,Bus Eireann,3084-00010-1,0,4380_7778208_1030129,4380_1726 -4380_78156,288,4380_110646,Bus Eireann,3114-00011-1,0,4380_7778208_1030129,4380_1726 -4380_78156,287,4380_110647,Bus Eireann,3134-00012-1,0,4380_7778208_1030129,4380_1726 -4380_78156,289,4380_110648,Bus Eireann,3044-00014-1,0,4380_7778208_1030129,4380_1726 -4380_78156,290,4380_110649,Bus Eireann,52543-00015-1,0,4380_7778208_1030129,4380_1726 -4380_77955,285,4380_11065,Mullingar,9828-00009-1,0,4380_7778208_1150115,4380_239 -4380_78156,292,4380_110650,Bus Eireann,52544-00016-1,0,4380_7778208_1030129,4380_1726 -4380_78156,293,4380_110651,Bus Eireann,52546-00017-1,0,4380_7778208_1030129,4380_1726 -4380_78156,294,4380_110652,Bus Eireann,52542-00018-1,0,4380_7778208_1030129,4380_1726 -4380_78156,295,4380_110653,Bus Eireann,52545-00019-1,0,4380_7778208_1030129,4380_1726 -4380_78156,291,4380_110655,Bus Eireann,3264-00013-1,0,4380_7778208_1030130,4380_1726 -4380_78156,296,4380_110656,Bus Eireann,52603-00021-1,0,4380_7778208_1030130,4380_1726 -4380_77955,286,4380_11066,Mullingar,9849-00010-1,0,4380_7778208_1150115,4380_239 -4380_78156,285,4380_110662,Bus Eireann,3194-00009-1,0,4380_7778208_1030130,4380_1726 -4380_78156,286,4380_110663,Bus Eireann,3204-00010-1,0,4380_7778208_1030130,4380_1726 -4380_78156,288,4380_110664,Bus Eireann,3224-00011-1,0,4380_7778208_1030130,4380_1726 -4380_78156,287,4380_110665,Bus Eireann,3244-00012-1,0,4380_7778208_1030130,4380_1726 -4380_78156,289,4380_110666,Bus Eireann,3164-00014-1,0,4380_7778208_1030130,4380_1726 -4380_78156,290,4380_110667,Bus Eireann,52608-00015-1,0,4380_7778208_1030130,4380_1726 -4380_78156,292,4380_110668,Bus Eireann,52604-00016-1,0,4380_7778208_1030130,4380_1726 -4380_78156,293,4380_110669,Bus Eireann,52605-00017-1,0,4380_7778208_1030130,4380_1726 -4380_77955,297,4380_11067,Enfield,57592-00008-1,0,4380_7778208_1150101,4380_238 -4380_78156,294,4380_110670,Bus Eireann,52607-00018-1,0,4380_7778208_1030130,4380_1726 -4380_78156,295,4380_110671,Bus Eireann,52606-00019-1,0,4380_7778208_1030130,4380_1726 -4380_78156,285,4380_110679,Bus Eireann,3294-00009-1,0,4380_7778208_1030131,4380_1727 -4380_77955,288,4380_11068,Mullingar,9856-00011-1,0,4380_7778208_1150115,4380_239 -4380_78156,286,4380_110680,Bus Eireann,3314-00010-1,0,4380_7778208_1030131,4380_1727 -4380_78156,297,4380_110681,Bus Eireann,2674-00008-1,0,4380_7778208_1030124,4380_1726 -4380_78156,288,4380_110682,Bus Eireann,3334-00011-1,0,4380_7778208_1030131,4380_1727 -4380_78156,287,4380_110683,Bus Eireann,3364-00012-1,0,4380_7778208_1030131,4380_1727 -4380_78156,289,4380_110684,Bus Eireann,3274-00014-1,0,4380_7778208_1030131,4380_1727 -4380_78156,290,4380_110685,Bus Eireann,52667-00015-1,0,4380_7778208_1030131,4380_1727 -4380_78156,291,4380_110686,Bus Eireann,3374-00013-1,0,4380_7778208_1030131,4380_1726 -4380_78156,292,4380_110687,Bus Eireann,52663-00016-1,0,4380_7778208_1030131,4380_1727 -4380_78156,293,4380_110688,Bus Eireann,52665-00017-1,0,4380_7778208_1030131,4380_1727 -4380_78156,294,4380_110689,Bus Eireann,52666-00018-1,0,4380_7778208_1030131,4380_1727 -4380_77955,287,4380_11069,Mullingar,9870-00012-1,0,4380_7778208_1150115,4380_239 -4380_78156,295,4380_110690,Bus Eireann,52664-00019-1,0,4380_7778208_1030131,4380_1727 -4380_78156,296,4380_110691,Bus Eireann,52668-00021-1,0,4380_7778208_1030131,4380_1726 -4380_78156,297,4380_110693,Bus Eireann,2686-00008-1,0,4380_7778208_1030125,4380_1727 -4380_78156,291,4380_110695,Bus Eireann,3484-00013-1,0,4380_7778208_1030132,4380_1727 -4380_78156,296,4380_110696,Bus Eireann,52723-00021-1,0,4380_7778208_1030132,4380_1727 -4380_78113,288,4380_1107,Dublin via Airport,50075-00011-1,1,4380_7778208_1000907,4380_18 -4380_77955,289,4380_11070,Mullingar,9821-00014-1,0,4380_7778208_1150115,4380_239 -4380_78156,285,4380_110702,Bus Eireann,3414-00009-1,0,4380_7778208_1030132,4380_1727 -4380_78156,286,4380_110703,Bus Eireann,3434-00010-1,0,4380_7778208_1030132,4380_1727 -4380_78156,288,4380_110704,Bus Eireann,3454-00011-1,0,4380_7778208_1030132,4380_1727 -4380_78156,287,4380_110705,Bus Eireann,3464-00012-1,0,4380_7778208_1030132,4380_1727 -4380_78156,289,4380_110706,Bus Eireann,3394-00014-1,0,4380_7778208_1030132,4380_1727 -4380_78156,290,4380_110707,Bus Eireann,52728-00015-1,0,4380_7778208_1030132,4380_1727 -4380_78156,292,4380_110708,Bus Eireann,52727-00016-1,0,4380_7778208_1030132,4380_1727 -4380_78156,293,4380_110709,Bus Eireann,52726-00017-1,0,4380_7778208_1030132,4380_1727 -4380_77955,290,4380_11071,Mullingar,58186-00015-1,0,4380_7778208_1150115,4380_239 -4380_78156,294,4380_110710,Bus Eireann,52724-00018-1,0,4380_7778208_1030132,4380_1727 -4380_78156,295,4380_110711,Bus Eireann,52725-00019-1,0,4380_7778208_1030132,4380_1727 -4380_78156,285,4380_110717,Bus Eireann,3524-00009-1,0,4380_7778208_1030133,4380_1727 -4380_78156,286,4380_110718,Bus Eireann,3544-00010-1,0,4380_7778208_1030133,4380_1727 -4380_78156,288,4380_110719,Bus Eireann,3564-00011-1,0,4380_7778208_1030133,4380_1727 -4380_77955,291,4380_11072,Mullingar,9693-00013-1,0,4380_7778208_1150112,4380_245 -4380_78156,287,4380_110720,Bus Eireann,3574-00012-1,0,4380_7778208_1030133,4380_1727 -4380_78156,289,4380_110721,Bus Eireann,3504-00014-1,0,4380_7778208_1030133,4380_1727 -4380_78156,290,4380_110722,Bus Eireann,52785-00015-1,0,4380_7778208_1030133,4380_1727 -4380_78156,292,4380_110723,Bus Eireann,52783-00016-1,0,4380_7778208_1030133,4380_1727 -4380_78156,293,4380_110724,Bus Eireann,52784-00017-1,0,4380_7778208_1030133,4380_1727 -4380_78156,294,4380_110725,Bus Eireann,52786-00018-1,0,4380_7778208_1030133,4380_1727 -4380_78156,295,4380_110726,Bus Eireann,52787-00019-1,0,4380_7778208_1030133,4380_1727 -4380_78156,291,4380_110728,Bus Eireann,3594-00013-1,0,4380_7778208_1030133,4380_1727 -4380_78156,296,4380_110729,Bus Eireann,52788-00021-1,0,4380_7778208_1030133,4380_1727 -4380_77955,292,4380_11073,Mullingar,58188-00016-1,0,4380_7778208_1150115,4380_239 -4380_78156,285,4380_110735,Bus Eireann,3622-00009-1,0,4380_7778208_1030134,4380_1727 -4380_78156,286,4380_110736,Bus Eireann,3640-00010-1,0,4380_7778208_1030134,4380_1727 -4380_78156,288,4380_110737,Bus Eireann,3666-00011-1,0,4380_7778208_1030134,4380_1727 -4380_78156,287,4380_110738,Bus Eireann,3676-00012-1,0,4380_7778208_1030134,4380_1727 -4380_78156,289,4380_110739,Bus Eireann,3604-00014-1,0,4380_7778208_1030134,4380_1727 -4380_77955,293,4380_11074,Mullingar,58185-00017-1,0,4380_7778208_1150115,4380_239 -4380_78156,290,4380_110740,Bus Eireann,52846-00015-1,0,4380_7778208_1030134,4380_1727 -4380_78156,292,4380_110741,Bus Eireann,52845-00016-1,0,4380_7778208_1030134,4380_1727 -4380_78156,293,4380_110742,Bus Eireann,52844-00017-1,0,4380_7778208_1030134,4380_1727 -4380_78156,294,4380_110743,Bus Eireann,52847-00018-1,0,4380_7778208_1030134,4380_1727 -4380_78156,295,4380_110744,Bus Eireann,52843-00019-1,0,4380_7778208_1030134,4380_1727 -4380_78156,291,4380_110746,Bus Eireann,3804-00013-1,0,4380_7778208_1030135,4380_1726 -4380_78156,296,4380_110747,Bus Eireann,52903-00021-1,0,4380_7778208_1030135,4380_1726 -4380_78156,291,4380_110749,Bus Eireann,3694-00013-1,0,4380_7778208_1030134,4380_1727 -4380_77955,294,4380_11075,Mullingar,58184-00018-1,0,4380_7778208_1150115,4380_239 -4380_78156,296,4380_110750,Bus Eireann,52848-00021-1,0,4380_7778208_1030134,4380_1727 -4380_78156,285,4380_110757,Bus Eireann,3734-00009-1,0,4380_7778208_1030135,4380_1727 -4380_78156,286,4380_110758,Bus Eireann,3754-00010-1,0,4380_7778208_1030135,4380_1727 -4380_78156,297,4380_110759,Bus Eireann,2816-00008-1,0,4380_7778208_1030126,4380_1728 -4380_77955,295,4380_11076,Mullingar,58187-00019-1,0,4380_7778208_1150115,4380_239 -4380_78156,288,4380_110760,Bus Eireann,3774-00011-1,0,4380_7778208_1030135,4380_1727 -4380_78156,287,4380_110761,Bus Eireann,3794-00012-1,0,4380_7778208_1030135,4380_1727 -4380_78156,289,4380_110762,Bus Eireann,3714-00014-1,0,4380_7778208_1030135,4380_1727 -4380_78156,290,4380_110763,Bus Eireann,52906-00015-1,0,4380_7778208_1030135,4380_1727 -4380_78156,292,4380_110764,Bus Eireann,52905-00016-1,0,4380_7778208_1030135,4380_1727 -4380_78156,293,4380_110765,Bus Eireann,52904-00017-1,0,4380_7778208_1030135,4380_1727 -4380_78156,294,4380_110766,Bus Eireann,52908-00018-1,0,4380_7778208_1030135,4380_1727 -4380_78156,295,4380_110767,Bus Eireann,52907-00019-1,0,4380_7778208_1030135,4380_1727 -4380_78156,291,4380_110769,Bus Eireann,3904-00013-1,0,4380_7778208_1030136,4380_1726 -4380_77955,296,4380_11077,Mullingar,58112-00021-1,0,4380_7778208_1150112,4380_245 -4380_78156,296,4380_110770,Bus Eireann,52963-00021-1,0,4380_7778208_1030136,4380_1726 -4380_78156,285,4380_110776,Bus Eireann,2734-00009-1,0,4380_7778208_1030126,4380_1727 -4380_78156,286,4380_110777,Bus Eireann,2758-00010-1,0,4380_7778208_1030126,4380_1727 -4380_78156,288,4380_110778,Bus Eireann,2782-00011-1,0,4380_7778208_1030126,4380_1727 -4380_78156,287,4380_110779,Bus Eireann,2806-00012-1,0,4380_7778208_1030126,4380_1727 -4380_78156,289,4380_110780,Bus Eireann,2710-00014-1,0,4380_7778208_1030126,4380_1727 -4380_78156,290,4380_110781,Bus Eireann,52395-00015-1,0,4380_7778208_1030126,4380_1727 -4380_78156,292,4380_110782,Bus Eireann,52393-00016-1,0,4380_7778208_1030126,4380_1727 -4380_78156,293,4380_110783,Bus Eireann,52394-00017-1,0,4380_7778208_1030126,4380_1727 -4380_78156,294,4380_110784,Bus Eireann,52391-00018-1,0,4380_7778208_1030126,4380_1727 -4380_78156,295,4380_110785,Bus Eireann,52392-00019-1,0,4380_7778208_1030126,4380_1727 -4380_78156,291,4380_110787,Bus Eireann,3146-00013-1,0,4380_7778208_1030129,4380_1727 -4380_78156,296,4380_110788,Bus Eireann,52553-00021-1,0,4380_7778208_1030129,4380_1727 -4380_78156,285,4380_110794,Bus Eireann,3842-00009-1,0,4380_7778208_1030136,4380_1727 -4380_78156,286,4380_110795,Bus Eireann,3850-00010-1,0,4380_7778208_1030136,4380_1727 -4380_78156,288,4380_110796,Bus Eireann,3878-00011-1,0,4380_7778208_1030136,4380_1727 -4380_78156,287,4380_110797,Bus Eireann,3886-00012-1,0,4380_7778208_1030136,4380_1727 -4380_78156,289,4380_110798,Bus Eireann,3824-00014-1,0,4380_7778208_1030136,4380_1727 -4380_78156,290,4380_110799,Bus Eireann,52967-00015-1,0,4380_7778208_1030136,4380_1727 -4380_78113,289,4380_1108,Dublin via Airport,50071-00014-1,1,4380_7778208_1000907,4380_18 -4380_78156,292,4380_110800,Bus Eireann,52964-00016-1,0,4380_7778208_1030136,4380_1727 -4380_78156,293,4380_110801,Bus Eireann,52966-00017-1,0,4380_7778208_1030136,4380_1727 -4380_78156,294,4380_110802,Bus Eireann,52965-00018-1,0,4380_7778208_1030136,4380_1727 -4380_78156,295,4380_110803,Bus Eireann,52968-00019-1,0,4380_7778208_1030136,4380_1727 -4380_78156,285,4380_110810,Bus Eireann,2858-00009-1,0,4380_7778208_1030127,4380_1727 -4380_78156,286,4380_110811,Bus Eireann,2878-00010-1,0,4380_7778208_1030127,4380_1727 -4380_78156,297,4380_110812,Bus Eireann,2926-00008-1,0,4380_7778208_1030127,4380_1728 -4380_78156,288,4380_110813,Bus Eireann,2888-00011-1,0,4380_7778208_1030127,4380_1727 -4380_78156,287,4380_110814,Bus Eireann,2918-00012-1,0,4380_7778208_1030127,4380_1727 -4380_78156,289,4380_110815,Bus Eireann,2838-00014-1,0,4380_7778208_1030127,4380_1727 -4380_78156,290,4380_110816,Bus Eireann,52454-00015-1,0,4380_7778208_1030127,4380_1727 -4380_78156,292,4380_110817,Bus Eireann,52452-00016-1,0,4380_7778208_1030127,4380_1727 -4380_78156,293,4380_110818,Bus Eireann,52455-00017-1,0,4380_7778208_1030127,4380_1727 -4380_78156,294,4380_110819,Bus Eireann,52451-00018-1,0,4380_7778208_1030127,4380_1727 -4380_78156,295,4380_110820,Bus Eireann,52453-00019-1,0,4380_7778208_1030127,4380_1727 -4380_78156,291,4380_110822,Bus Eireann,3934-00013-1,0,4380_7778208_1030137,4380_1727 -4380_78156,296,4380_110823,Bus Eireann,53018-00021-1,0,4380_7778208_1030137,4380_1727 -4380_78156,291,4380_110825,Bus Eireann,3266-00013-1,0,4380_7778208_1030130,4380_1727 -4380_78156,296,4380_110826,Bus Eireann,52615-00021-1,0,4380_7778208_1030130,4380_1727 -4380_78156,285,4380_110832,Bus Eireann,2958-00009-1,0,4380_7778208_1030128,4380_1727 -4380_78156,286,4380_110833,Bus Eireann,2978-00010-1,0,4380_7778208_1030128,4380_1727 -4380_78156,288,4380_110834,Bus Eireann,3008-00011-1,0,4380_7778208_1030128,4380_1727 -4380_78156,287,4380_110835,Bus Eireann,3018-00012-1,0,4380_7778208_1030128,4380_1727 -4380_78156,289,4380_110836,Bus Eireann,2948-00014-1,0,4380_7778208_1030128,4380_1727 -4380_78156,290,4380_110837,Bus Eireann,52503-00015-1,0,4380_7778208_1030128,4380_1727 -4380_78156,292,4380_110838,Bus Eireann,52501-00016-1,0,4380_7778208_1030128,4380_1727 -4380_78156,293,4380_110839,Bus Eireann,52505-00017-1,0,4380_7778208_1030128,4380_1727 -4380_77955,285,4380_11084,Enfield,57654-00009-1,0,4380_7778208_1150102,4380_238 -4380_78156,294,4380_110840,Bus Eireann,52504-00018-1,0,4380_7778208_1030128,4380_1727 -4380_78156,295,4380_110841,Bus Eireann,52502-00019-1,0,4380_7778208_1030128,4380_1727 -4380_78156,291,4380_110843,Bus Eireann,3376-00013-1,0,4380_7778208_1030131,4380_1727 -4380_78156,296,4380_110844,Bus Eireann,52675-00021-1,0,4380_7778208_1030131,4380_1727 -4380_77955,286,4380_11085,Enfield,57652-00010-1,0,4380_7778208_1150102,4380_238 -4380_78156,285,4380_110850,Bus Eireann,3076-00009-1,0,4380_7778208_1030129,4380_1727 -4380_78156,286,4380_110851,Bus Eireann,3086-00010-1,0,4380_7778208_1030129,4380_1727 -4380_78156,288,4380_110852,Bus Eireann,3116-00011-1,0,4380_7778208_1030129,4380_1727 -4380_78156,287,4380_110853,Bus Eireann,3136-00012-1,0,4380_7778208_1030129,4380_1727 -4380_78156,289,4380_110854,Bus Eireann,3046-00014-1,0,4380_7778208_1030129,4380_1727 -4380_78156,290,4380_110855,Bus Eireann,52556-00015-1,0,4380_7778208_1030129,4380_1727 -4380_78156,292,4380_110856,Bus Eireann,52554-00016-1,0,4380_7778208_1030129,4380_1727 -4380_78156,293,4380_110857,Bus Eireann,52555-00017-1,0,4380_7778208_1030129,4380_1727 -4380_78156,294,4380_110858,Bus Eireann,52558-00018-1,0,4380_7778208_1030129,4380_1727 -4380_78156,295,4380_110859,Bus Eireann,52557-00019-1,0,4380_7778208_1030129,4380_1727 -4380_77955,288,4380_11086,Enfield,57650-00011-1,0,4380_7778208_1150102,4380_238 -4380_78156,291,4380_110861,Bus Eireann,3962-00013-1,0,4380_7778208_1030138,4380_1727 -4380_78156,296,4380_110862,Bus Eireann,53036-00021-1,0,4380_7778208_1030138,4380_1727 -4380_78156,285,4380_110869,Bus Eireann,3196-00009-1,0,4380_7778208_1030130,4380_1727 -4380_77955,287,4380_11087,Enfield,57659-00012-1,0,4380_7778208_1150102,4380_238 -4380_78156,286,4380_110870,Bus Eireann,3206-00010-1,0,4380_7778208_1030130,4380_1727 -4380_78156,297,4380_110871,Bus Eireann,2676-00008-1,0,4380_7778208_1030124,4380_1728 -4380_78156,288,4380_110872,Bus Eireann,3226-00011-1,0,4380_7778208_1030130,4380_1727 -4380_78156,287,4380_110873,Bus Eireann,3246-00012-1,0,4380_7778208_1030130,4380_1727 -4380_78156,289,4380_110874,Bus Eireann,3166-00014-1,0,4380_7778208_1030130,4380_1727 -4380_78156,290,4380_110875,Bus Eireann,52619-00015-1,0,4380_7778208_1030130,4380_1727 -4380_78156,292,4380_110876,Bus Eireann,52620-00016-1,0,4380_7778208_1030130,4380_1727 -4380_78156,293,4380_110877,Bus Eireann,52616-00017-1,0,4380_7778208_1030130,4380_1727 -4380_78156,294,4380_110878,Bus Eireann,52618-00018-1,0,4380_7778208_1030130,4380_1727 -4380_78156,295,4380_110879,Bus Eireann,52617-00019-1,0,4380_7778208_1030130,4380_1727 -4380_77955,289,4380_11088,Enfield,57657-00014-1,0,4380_7778208_1150102,4380_238 -4380_78156,297,4380_110881,Bus Eireann,3036-00008-1,0,4380_7778208_1030128,4380_1726 -4380_78156,291,4380_110883,Bus Eireann,3486-00013-1,0,4380_7778208_1030132,4380_1727 -4380_78156,296,4380_110884,Bus Eireann,52735-00021-1,0,4380_7778208_1030132,4380_1727 -4380_77955,290,4380_11089,Enfield,57655-00015-1,0,4380_7778208_1150102,4380_238 -4380_78156,285,4380_110890,Bus Eireann,3296-00009-1,0,4380_7778208_1030131,4380_1727 -4380_78156,286,4380_110891,Bus Eireann,3316-00010-1,0,4380_7778208_1030131,4380_1727 -4380_78156,288,4380_110892,Bus Eireann,3336-00011-1,0,4380_7778208_1030131,4380_1727 -4380_78156,287,4380_110893,Bus Eireann,3366-00012-1,0,4380_7778208_1030131,4380_1727 -4380_78156,289,4380_110894,Bus Eireann,3276-00014-1,0,4380_7778208_1030131,4380_1727 -4380_78156,290,4380_110895,Bus Eireann,52678-00015-1,0,4380_7778208_1030131,4380_1727 -4380_78156,292,4380_110896,Bus Eireann,52676-00016-1,0,4380_7778208_1030131,4380_1727 -4380_78156,293,4380_110897,Bus Eireann,52679-00017-1,0,4380_7778208_1030131,4380_1727 -4380_78156,294,4380_110898,Bus Eireann,52677-00018-1,0,4380_7778208_1030131,4380_1727 -4380_78156,295,4380_110899,Bus Eireann,52680-00019-1,0,4380_7778208_1030131,4380_1727 -4380_78113,290,4380_1109,Dublin via Airport,50078-00015-1,1,4380_7778208_1000907,4380_18 -4380_77955,291,4380_11090,Enfield,9135-00013-1,0,4380_7778208_1150102,4380_244 -4380_78156,291,4380_110901,Bus Eireann,3596-00013-1,0,4380_7778208_1030133,4380_1727 -4380_78156,296,4380_110902,Bus Eireann,52795-00021-1,0,4380_7778208_1030133,4380_1727 -4380_78156,285,4380_110908,Bus Eireann,3416-00009-1,0,4380_7778208_1030132,4380_1727 -4380_78156,286,4380_110909,Bus Eireann,3436-00010-1,0,4380_7778208_1030132,4380_1727 -4380_77955,292,4380_11091,Enfield,57653-00016-1,0,4380_7778208_1150102,4380_238 -4380_78156,288,4380_110910,Bus Eireann,3456-00011-1,0,4380_7778208_1030132,4380_1727 -4380_78156,287,4380_110911,Bus Eireann,3466-00012-1,0,4380_7778208_1030132,4380_1727 -4380_78156,289,4380_110912,Bus Eireann,3396-00014-1,0,4380_7778208_1030132,4380_1727 -4380_78156,290,4380_110913,Bus Eireann,52740-00015-1,0,4380_7778208_1030132,4380_1727 -4380_78156,292,4380_110914,Bus Eireann,52738-00016-1,0,4380_7778208_1030132,4380_1727 -4380_78156,293,4380_110915,Bus Eireann,52736-00017-1,0,4380_7778208_1030132,4380_1727 -4380_78156,294,4380_110916,Bus Eireann,52739-00018-1,0,4380_7778208_1030132,4380_1727 -4380_78156,295,4380_110917,Bus Eireann,52737-00019-1,0,4380_7778208_1030132,4380_1727 -4380_78156,297,4380_110919,Bus Eireann,2664-00008-1,0,4380_7778208_1030123,4380_1727 -4380_77955,293,4380_11092,Enfield,57651-00017-1,0,4380_7778208_1150102,4380_238 -4380_78156,291,4380_110921,Bus Eireann,3806-00013-1,0,4380_7778208_1030135,4380_1727 -4380_78156,296,4380_110922,Bus Eireann,52915-00021-1,0,4380_7778208_1030135,4380_1727 -4380_78156,285,4380_110928,Bus Eireann,3526-00009-1,0,4380_7778208_1030133,4380_1727 -4380_78156,286,4380_110929,Bus Eireann,3546-00010-1,0,4380_7778208_1030133,4380_1727 -4380_77955,294,4380_11093,Enfield,57660-00018-1,0,4380_7778208_1150102,4380_238 -4380_78156,288,4380_110930,Bus Eireann,3566-00011-1,0,4380_7778208_1030133,4380_1727 -4380_78156,287,4380_110931,Bus Eireann,3576-00012-1,0,4380_7778208_1030133,4380_1727 -4380_78156,289,4380_110932,Bus Eireann,3506-00014-1,0,4380_7778208_1030133,4380_1727 -4380_78156,290,4380_110933,Bus Eireann,52800-00015-1,0,4380_7778208_1030133,4380_1727 -4380_78156,292,4380_110934,Bus Eireann,52798-00016-1,0,4380_7778208_1030133,4380_1727 -4380_78156,293,4380_110935,Bus Eireann,52797-00017-1,0,4380_7778208_1030133,4380_1727 -4380_78156,294,4380_110936,Bus Eireann,52796-00018-1,0,4380_7778208_1030133,4380_1727 -4380_78156,295,4380_110937,Bus Eireann,52799-00019-1,0,4380_7778208_1030133,4380_1727 -4380_78156,291,4380_110939,Bus Eireann,3983-00013-1,0,4380_7778208_1030139,4380_1727 -4380_77955,295,4380_11094,Enfield,57658-00019-1,0,4380_7778208_1150102,4380_238 -4380_78156,296,4380_110940,Bus Eireann,53052-00021-1,0,4380_7778208_1030139,4380_1727 -4380_78156,285,4380_110946,Bus Eireann,3624-00009-1,0,4380_7778208_1030134,4380_1727 -4380_78156,286,4380_110947,Bus Eireann,3642-00010-1,0,4380_7778208_1030134,4380_1727 -4380_78156,288,4380_110948,Bus Eireann,3668-00011-1,0,4380_7778208_1030134,4380_1727 -4380_78156,287,4380_110949,Bus Eireann,3678-00012-1,0,4380_7778208_1030134,4380_1727 -4380_77955,296,4380_11095,Enfield,57656-00021-1,0,4380_7778208_1150102,4380_244 -4380_78156,289,4380_110950,Bus Eireann,3606-00014-1,0,4380_7778208_1030134,4380_1727 -4380_78156,290,4380_110951,Bus Eireann,52857-00015-1,0,4380_7778208_1030134,4380_1727 -4380_78156,292,4380_110952,Bus Eireann,52859-00016-1,0,4380_7778208_1030134,4380_1727 -4380_78156,293,4380_110953,Bus Eireann,52855-00017-1,0,4380_7778208_1030134,4380_1727 -4380_78156,294,4380_110954,Bus Eireann,52856-00018-1,0,4380_7778208_1030134,4380_1727 -4380_78156,295,4380_110955,Bus Eireann,52858-00019-1,0,4380_7778208_1030134,4380_1727 -4380_78156,297,4380_110957,Bus Eireann,3156-00008-1,0,4380_7778208_1030129,4380_1727 -4380_78156,291,4380_110959,Bus Eireann,3906-00013-1,0,4380_7778208_1030136,4380_1727 -4380_78156,296,4380_110960,Bus Eireann,52975-00021-1,0,4380_7778208_1030136,4380_1727 -4380_78156,285,4380_110966,Bus Eireann,3736-00009-1,0,4380_7778208_1030135,4380_1727 -4380_78156,286,4380_110967,Bus Eireann,3756-00010-1,0,4380_7778208_1030135,4380_1727 -4380_78156,288,4380_110968,Bus Eireann,3776-00011-1,0,4380_7778208_1030135,4380_1727 -4380_78156,287,4380_110969,Bus Eireann,3796-00012-1,0,4380_7778208_1030135,4380_1727 -4380_78156,289,4380_110970,Bus Eireann,3716-00014-1,0,4380_7778208_1030135,4380_1727 -4380_78156,290,4380_110971,Bus Eireann,52919-00015-1,0,4380_7778208_1030135,4380_1727 -4380_78156,292,4380_110972,Bus Eireann,52918-00016-1,0,4380_7778208_1030135,4380_1727 -4380_78156,293,4380_110973,Bus Eireann,52917-00017-1,0,4380_7778208_1030135,4380_1727 -4380_78156,294,4380_110974,Bus Eireann,52916-00018-1,0,4380_7778208_1030135,4380_1727 -4380_78156,295,4380_110975,Bus Eireann,52920-00019-1,0,4380_7778208_1030135,4380_1727 -4380_78156,297,4380_110977,Bus Eireann,2818-00008-1,0,4380_7778208_1030126,4380_1727 -4380_78156,291,4380_110979,Bus Eireann,3148-00013-1,0,4380_7778208_1030129,4380_1727 -4380_78156,296,4380_110980,Bus Eireann,52565-00021-1,0,4380_7778208_1030129,4380_1727 -4380_78156,285,4380_110986,Bus Eireann,2736-00009-1,0,4380_7778208_1030126,4380_1727 -4380_78156,286,4380_110987,Bus Eireann,2760-00010-1,0,4380_7778208_1030126,4380_1727 -4380_78156,288,4380_110988,Bus Eireann,2784-00011-1,0,4380_7778208_1030126,4380_1727 -4380_78156,287,4380_110989,Bus Eireann,2808-00012-1,0,4380_7778208_1030126,4380_1727 -4380_78156,289,4380_110990,Bus Eireann,2712-00014-1,0,4380_7778208_1030126,4380_1727 -4380_78156,290,4380_110991,Bus Eireann,52405-00015-1,0,4380_7778208_1030126,4380_1727 -4380_78156,292,4380_110992,Bus Eireann,52404-00016-1,0,4380_7778208_1030126,4380_1727 -4380_78156,293,4380_110993,Bus Eireann,52402-00017-1,0,4380_7778208_1030126,4380_1727 -4380_78156,294,4380_110994,Bus Eireann,52401-00018-1,0,4380_7778208_1030126,4380_1727 -4380_78156,295,4380_110995,Bus Eireann,52403-00019-1,0,4380_7778208_1030126,4380_1727 -4380_78156,291,4380_110997,Bus Eireann,3696-00013-1,0,4380_7778208_1030134,4380_1727 -4380_78156,296,4380_110998,Bus Eireann,52860-00021-1,0,4380_7778208_1030134,4380_1727 -4380_78113,291,4380_1110,Dublin via Airport,50069-00013-1,1,4380_7778208_1000907,4380_18 -4380_78156,285,4380_111004,Bus Eireann,3844-00009-1,0,4380_7778208_1030136,4380_1727 -4380_78156,286,4380_111005,Bus Eireann,3852-00010-1,0,4380_7778208_1030136,4380_1727 -4380_78156,288,4380_111006,Bus Eireann,3880-00011-1,0,4380_7778208_1030136,4380_1727 -4380_78156,287,4380_111007,Bus Eireann,3888-00012-1,0,4380_7778208_1030136,4380_1727 -4380_78156,289,4380_111008,Bus Eireann,3826-00014-1,0,4380_7778208_1030136,4380_1727 -4380_78156,290,4380_111009,Bus Eireann,52978-00015-1,0,4380_7778208_1030136,4380_1727 -4380_78156,292,4380_111010,Bus Eireann,52980-00016-1,0,4380_7778208_1030136,4380_1727 -4380_78156,293,4380_111011,Bus Eireann,52976-00017-1,0,4380_7778208_1030136,4380_1727 -4380_78156,294,4380_111012,Bus Eireann,52979-00018-1,0,4380_7778208_1030136,4380_1727 -4380_78156,295,4380_111013,Bus Eireann,52977-00019-1,0,4380_7778208_1030136,4380_1727 -4380_78156,297,4380_111015,Bus Eireann,2688-00008-1,0,4380_7778208_1030125,4380_1727 -4380_78156,291,4380_111017,Bus Eireann,3936-00013-1,0,4380_7778208_1030137,4380_1727 -4380_78156,296,4380_111018,Bus Eireann,53020-00021-1,0,4380_7778208_1030137,4380_1727 -4380_78156,285,4380_111024,Bus Eireann,2860-00009-1,0,4380_7778208_1030127,4380_1727 -4380_78156,286,4380_111025,Bus Eireann,2880-00010-1,0,4380_7778208_1030127,4380_1727 -4380_78156,288,4380_111026,Bus Eireann,2890-00011-1,0,4380_7778208_1030127,4380_1727 -4380_78156,287,4380_111027,Bus Eireann,2920-00012-1,0,4380_7778208_1030127,4380_1727 -4380_78156,289,4380_111028,Bus Eireann,2840-00014-1,0,4380_7778208_1030127,4380_1727 -4380_78156,290,4380_111029,Bus Eireann,52463-00015-1,0,4380_7778208_1030127,4380_1727 -4380_77955,285,4380_11103,Mullingar,9452-00009-1,0,4380_7778208_1150107,4380_239 -4380_78156,292,4380_111030,Bus Eireann,52461-00016-1,0,4380_7778208_1030127,4380_1727 -4380_78156,293,4380_111031,Bus Eireann,52462-00017-1,0,4380_7778208_1030127,4380_1727 -4380_78156,294,4380_111032,Bus Eireann,52464-00018-1,0,4380_7778208_1030127,4380_1727 -4380_78156,295,4380_111033,Bus Eireann,52465-00019-1,0,4380_7778208_1030127,4380_1727 -4380_78156,297,4380_111035,Bus Eireann,2928-00008-1,0,4380_7778208_1030127,4380_1727 -4380_78156,291,4380_111037,Bus Eireann,3268-00013-1,0,4380_7778208_1030130,4380_1727 -4380_78156,296,4380_111038,Bus Eireann,52627-00021-1,0,4380_7778208_1030130,4380_1727 -4380_77955,286,4380_11104,Mullingar,9466-00010-1,0,4380_7778208_1150107,4380_239 -4380_78156,285,4380_111044,Bus Eireann,2960-00009-1,0,4380_7778208_1030128,4380_1727 -4380_78156,286,4380_111045,Bus Eireann,2980-00010-1,0,4380_7778208_1030128,4380_1727 -4380_78156,288,4380_111046,Bus Eireann,3010-00011-1,0,4380_7778208_1030128,4380_1727 -4380_78156,287,4380_111047,Bus Eireann,3020-00012-1,0,4380_7778208_1030128,4380_1727 -4380_78156,289,4380_111048,Bus Eireann,2950-00014-1,0,4380_7778208_1030128,4380_1727 -4380_78156,290,4380_111049,Bus Eireann,52514-00015-1,0,4380_7778208_1030128,4380_1727 -4380_77955,297,4380_11105,Mullingar,57927-00008-1,0,4380_7778208_1150107,4380_245 -4380_78156,292,4380_111050,Bus Eireann,52512-00016-1,0,4380_7778208_1030128,4380_1727 -4380_78156,293,4380_111051,Bus Eireann,52513-00017-1,0,4380_7778208_1030128,4380_1727 -4380_78156,294,4380_111052,Bus Eireann,52511-00018-1,0,4380_7778208_1030128,4380_1727 -4380_78156,295,4380_111053,Bus Eireann,52515-00019-1,0,4380_7778208_1030128,4380_1727 -4380_78156,291,4380_111055,Bus Eireann,3378-00013-1,0,4380_7778208_1030131,4380_1727 -4380_78156,296,4380_111056,Bus Eireann,52687-00021-1,0,4380_7778208_1030131,4380_1727 -4380_77955,288,4380_11106,Mullingar,9480-00011-1,0,4380_7778208_1150107,4380_239 -4380_78156,285,4380_111062,Bus Eireann,3078-00009-1,0,4380_7778208_1030129,4380_1727 -4380_78156,286,4380_111063,Bus Eireann,3088-00010-1,0,4380_7778208_1030129,4380_1727 -4380_78156,288,4380_111064,Bus Eireann,3118-00011-1,0,4380_7778208_1030129,4380_1727 -4380_78156,287,4380_111065,Bus Eireann,3138-00012-1,0,4380_7778208_1030129,4380_1727 -4380_78156,289,4380_111066,Bus Eireann,3048-00014-1,0,4380_7778208_1030129,4380_1727 -4380_78156,290,4380_111067,Bus Eireann,52568-00015-1,0,4380_7778208_1030129,4380_1727 -4380_78156,292,4380_111068,Bus Eireann,52567-00016-1,0,4380_7778208_1030129,4380_1727 -4380_78156,293,4380_111069,Bus Eireann,52566-00017-1,0,4380_7778208_1030129,4380_1727 -4380_77955,287,4380_11107,Mullingar,9494-00012-1,0,4380_7778208_1150107,4380_239 -4380_78156,294,4380_111070,Bus Eireann,52569-00018-1,0,4380_7778208_1030129,4380_1727 -4380_78156,295,4380_111071,Bus Eireann,52570-00019-1,0,4380_7778208_1030129,4380_1727 -4380_78156,297,4380_111073,Bus Eireann,2678-00008-1,0,4380_7778208_1030124,4380_1727 -4380_78156,291,4380_111075,Bus Eireann,3964-00013-1,0,4380_7778208_1030138,4380_1727 -4380_78156,296,4380_111076,Bus Eireann,53038-00021-1,0,4380_7778208_1030138,4380_1727 -4380_77955,289,4380_11108,Mullingar,9438-00014-1,0,4380_7778208_1150107,4380_239 -4380_78156,285,4380_111082,Bus Eireann,3198-00009-1,0,4380_7778208_1030130,4380_1727 -4380_78156,286,4380_111083,Bus Eireann,3208-00010-1,0,4380_7778208_1030130,4380_1727 -4380_78156,288,4380_111084,Bus Eireann,3228-00011-1,0,4380_7778208_1030130,4380_1727 -4380_78156,287,4380_111085,Bus Eireann,3248-00012-1,0,4380_7778208_1030130,4380_1727 -4380_78156,289,4380_111086,Bus Eireann,3168-00014-1,0,4380_7778208_1030130,4380_1727 -4380_78156,290,4380_111087,Bus Eireann,52628-00015-1,0,4380_7778208_1030130,4380_1727 -4380_78156,292,4380_111088,Bus Eireann,52632-00016-1,0,4380_7778208_1030130,4380_1727 -4380_78156,293,4380_111089,Bus Eireann,52631-00017-1,0,4380_7778208_1030130,4380_1727 -4380_77955,290,4380_11109,Mullingar,57925-00015-1,0,4380_7778208_1150107,4380_239 -4380_78156,294,4380_111090,Bus Eireann,52629-00018-1,0,4380_7778208_1030130,4380_1727 -4380_78156,295,4380_111091,Bus Eireann,52630-00019-1,0,4380_7778208_1030130,4380_1727 -4380_78156,297,4380_111093,Bus Eireann,3038-00008-1,0,4380_7778208_1030128,4380_1727 -4380_78156,291,4380_111095,Bus Eireann,3488-00013-1,0,4380_7778208_1030132,4380_1727 -4380_78156,296,4380_111096,Bus Eireann,52747-00021-1,0,4380_7778208_1030132,4380_1727 -4380_78113,292,4380_1111,Dublin via Airport,50074-00016-1,1,4380_7778208_1000907,4380_18 -4380_77955,291,4380_11110,Mullingar,57888-00013-1,0,4380_7778208_1150106,4380_246 -4380_78156,285,4380_111102,Bus Eireann,3298-00009-1,0,4380_7778208_1030131,4380_1727 -4380_78156,286,4380_111103,Bus Eireann,3318-00010-1,0,4380_7778208_1030131,4380_1727 -4380_78156,288,4380_111104,Bus Eireann,3338-00011-1,0,4380_7778208_1030131,4380_1727 -4380_78156,287,4380_111105,Bus Eireann,3368-00012-1,0,4380_7778208_1030131,4380_1727 -4380_78156,289,4380_111106,Bus Eireann,3278-00014-1,0,4380_7778208_1030131,4380_1727 -4380_78156,290,4380_111107,Bus Eireann,52690-00015-1,0,4380_7778208_1030131,4380_1727 -4380_78156,292,4380_111108,Bus Eireann,52691-00016-1,0,4380_7778208_1030131,4380_1727 -4380_78156,293,4380_111109,Bus Eireann,52688-00017-1,0,4380_7778208_1030131,4380_1727 -4380_77955,292,4380_11111,Mullingar,57929-00016-1,0,4380_7778208_1150107,4380_239 -4380_78156,294,4380_111110,Bus Eireann,52689-00018-1,0,4380_7778208_1030131,4380_1727 -4380_78156,295,4380_111111,Bus Eireann,52692-00019-1,0,4380_7778208_1030131,4380_1727 -4380_78156,291,4380_111113,Bus Eireann,3598-00013-1,0,4380_7778208_1030133,4380_1727 -4380_78156,296,4380_111114,Bus Eireann,52807-00021-1,0,4380_7778208_1030133,4380_1727 -4380_77955,293,4380_11112,Mullingar,57928-00017-1,0,4380_7778208_1150107,4380_239 -4380_78156,285,4380_111120,Bus Eireann,3418-00009-1,0,4380_7778208_1030132,4380_1727 -4380_78156,286,4380_111121,Bus Eireann,3438-00010-1,0,4380_7778208_1030132,4380_1727 -4380_78156,288,4380_111122,Bus Eireann,3458-00011-1,0,4380_7778208_1030132,4380_1727 -4380_78156,287,4380_111123,Bus Eireann,3468-00012-1,0,4380_7778208_1030132,4380_1727 -4380_78156,289,4380_111124,Bus Eireann,3398-00014-1,0,4380_7778208_1030132,4380_1727 -4380_78156,290,4380_111125,Bus Eireann,52749-00015-1,0,4380_7778208_1030132,4380_1727 -4380_78156,292,4380_111126,Bus Eireann,52748-00016-1,0,4380_7778208_1030132,4380_1727 -4380_78156,293,4380_111127,Bus Eireann,52752-00017-1,0,4380_7778208_1030132,4380_1727 -4380_78156,294,4380_111128,Bus Eireann,52751-00018-1,0,4380_7778208_1030132,4380_1727 -4380_78156,295,4380_111129,Bus Eireann,52750-00019-1,0,4380_7778208_1030132,4380_1727 -4380_77955,294,4380_11113,Mullingar,57926-00018-1,0,4380_7778208_1150107,4380_239 -4380_78156,297,4380_111131,Bus Eireann,2666-00008-1,0,4380_7778208_1030123,4380_1727 -4380_78156,291,4380_111133,Bus Eireann,3808-00013-1,0,4380_7778208_1030135,4380_1727 -4380_78156,296,4380_111134,Bus Eireann,52927-00021-1,0,4380_7778208_1030135,4380_1727 -4380_77955,295,4380_11114,Mullingar,57924-00019-1,0,4380_7778208_1150107,4380_239 -4380_78156,285,4380_111140,Bus Eireann,3528-00009-1,0,4380_7778208_1030133,4380_1727 -4380_78156,286,4380_111141,Bus Eireann,3548-00010-1,0,4380_7778208_1030133,4380_1727 -4380_78156,288,4380_111142,Bus Eireann,3568-00011-1,0,4380_7778208_1030133,4380_1727 -4380_78156,287,4380_111143,Bus Eireann,3578-00012-1,0,4380_7778208_1030133,4380_1727 -4380_78156,289,4380_111144,Bus Eireann,3508-00014-1,0,4380_7778208_1030133,4380_1727 -4380_78156,290,4380_111145,Bus Eireann,52810-00015-1,0,4380_7778208_1030133,4380_1727 -4380_78156,292,4380_111146,Bus Eireann,52808-00016-1,0,4380_7778208_1030133,4380_1727 -4380_78156,293,4380_111147,Bus Eireann,52811-00017-1,0,4380_7778208_1030133,4380_1727 -4380_78156,294,4380_111148,Bus Eireann,52809-00018-1,0,4380_7778208_1030133,4380_1727 -4380_78156,295,4380_111149,Bus Eireann,52812-00019-1,0,4380_7778208_1030133,4380_1727 -4380_77955,296,4380_11115,Mullingar,57889-00021-1,0,4380_7778208_1150106,4380_246 -4380_78156,297,4380_111151,Bus Eireann,3158-00008-1,0,4380_7778208_1030129,4380_1727 -4380_78156,291,4380_111153,Bus Eireann,3985-00013-1,0,4380_7778208_1030139,4380_1727 -4380_78156,296,4380_111154,Bus Eireann,53054-00021-1,0,4380_7778208_1030139,4380_1727 -4380_78156,285,4380_111160,Bus Eireann,3626-00009-1,0,4380_7778208_1030134,4380_1727 -4380_78156,286,4380_111161,Bus Eireann,3644-00010-1,0,4380_7778208_1030134,4380_1727 -4380_78156,288,4380_111162,Bus Eireann,3670-00011-1,0,4380_7778208_1030134,4380_1727 -4380_78156,287,4380_111163,Bus Eireann,3680-00012-1,0,4380_7778208_1030134,4380_1727 -4380_78156,289,4380_111164,Bus Eireann,3608-00014-1,0,4380_7778208_1030134,4380_1727 -4380_78156,290,4380_111165,Bus Eireann,52871-00015-1,0,4380_7778208_1030134,4380_1727 -4380_78156,292,4380_111166,Bus Eireann,52867-00016-1,0,4380_7778208_1030134,4380_1727 -4380_78156,293,4380_111167,Bus Eireann,52869-00017-1,0,4380_7778208_1030134,4380_1727 -4380_78156,294,4380_111168,Bus Eireann,52868-00018-1,0,4380_7778208_1030134,4380_1727 -4380_78156,295,4380_111169,Bus Eireann,52870-00019-1,0,4380_7778208_1030134,4380_1727 -4380_78156,291,4380_111171,Bus Eireann,3908-00013-1,0,4380_7778208_1030136,4380_1727 -4380_78156,296,4380_111172,Bus Eireann,52987-00021-1,0,4380_7778208_1030136,4380_1727 -4380_78156,285,4380_111178,Bus Eireann,3738-00009-1,0,4380_7778208_1030135,4380_1727 -4380_78156,286,4380_111179,Bus Eireann,3758-00010-1,0,4380_7778208_1030135,4380_1727 -4380_78156,288,4380_111180,Bus Eireann,3778-00011-1,0,4380_7778208_1030135,4380_1727 -4380_78156,287,4380_111181,Bus Eireann,3798-00012-1,0,4380_7778208_1030135,4380_1727 -4380_78156,289,4380_111182,Bus Eireann,3718-00014-1,0,4380_7778208_1030135,4380_1727 -4380_78156,290,4380_111183,Bus Eireann,52931-00015-1,0,4380_7778208_1030135,4380_1727 -4380_78156,292,4380_111184,Bus Eireann,52932-00016-1,0,4380_7778208_1030135,4380_1727 -4380_78156,293,4380_111185,Bus Eireann,52929-00017-1,0,4380_7778208_1030135,4380_1727 -4380_78156,294,4380_111186,Bus Eireann,52928-00018-1,0,4380_7778208_1030135,4380_1727 -4380_78156,295,4380_111187,Bus Eireann,52930-00019-1,0,4380_7778208_1030135,4380_1727 -4380_78156,297,4380_111189,Bus Eireann,2820-00008-1,0,4380_7778208_1030126,4380_1727 -4380_78156,291,4380_111191,Bus Eireann,3150-00013-1,0,4380_7778208_1030129,4380_1727 -4380_78156,296,4380_111192,Bus Eireann,52577-00021-1,0,4380_7778208_1030129,4380_1727 -4380_78156,285,4380_111198,Bus Eireann,2738-00009-1,0,4380_7778208_1030126,4380_1727 -4380_78156,286,4380_111199,Bus Eireann,2762-00010-1,0,4380_7778208_1030126,4380_1727 -4380_78113,293,4380_1112,Dublin via Airport,50076-00017-1,1,4380_7778208_1000907,4380_18 -4380_78156,288,4380_111200,Bus Eireann,2786-00011-1,0,4380_7778208_1030126,4380_1727 -4380_78156,287,4380_111201,Bus Eireann,2810-00012-1,0,4380_7778208_1030126,4380_1727 -4380_78156,289,4380_111202,Bus Eireann,2714-00014-1,0,4380_7778208_1030126,4380_1727 -4380_78156,290,4380_111203,Bus Eireann,52414-00015-1,0,4380_7778208_1030126,4380_1727 -4380_78156,292,4380_111204,Bus Eireann,52412-00016-1,0,4380_7778208_1030126,4380_1727 -4380_78156,293,4380_111205,Bus Eireann,52413-00017-1,0,4380_7778208_1030126,4380_1727 -4380_78156,294,4380_111206,Bus Eireann,52415-00018-1,0,4380_7778208_1030126,4380_1727 -4380_78156,295,4380_111207,Bus Eireann,52411-00019-1,0,4380_7778208_1030126,4380_1727 -4380_78156,297,4380_111209,Bus Eireann,2690-00008-1,0,4380_7778208_1030125,4380_1727 -4380_78156,291,4380_111211,Bus Eireann,3698-00013-1,0,4380_7778208_1030134,4380_1727 -4380_78156,296,4380_111212,Bus Eireann,52872-00021-1,0,4380_7778208_1030134,4380_1727 -4380_78156,285,4380_111218,Bus Eireann,3846-00009-1,0,4380_7778208_1030136,4380_1727 -4380_78156,286,4380_111219,Bus Eireann,3854-00010-1,0,4380_7778208_1030136,4380_1727 -4380_77955,285,4380_11122,Enfield,9018-00009-1,0,4380_7778208_1150101,4380_238 -4380_78156,288,4380_111220,Bus Eireann,3882-00011-1,0,4380_7778208_1030136,4380_1727 -4380_78156,287,4380_111221,Bus Eireann,3890-00012-1,0,4380_7778208_1030136,4380_1727 -4380_78156,289,4380_111222,Bus Eireann,3828-00014-1,0,4380_7778208_1030136,4380_1727 -4380_78156,290,4380_111223,Bus Eireann,52991-00015-1,0,4380_7778208_1030136,4380_1727 -4380_78156,292,4380_111224,Bus Eireann,52989-00016-1,0,4380_7778208_1030136,4380_1727 -4380_78156,293,4380_111225,Bus Eireann,52988-00017-1,0,4380_7778208_1030136,4380_1727 -4380_78156,294,4380_111226,Bus Eireann,52990-00018-1,0,4380_7778208_1030136,4380_1727 -4380_78156,295,4380_111227,Bus Eireann,52992-00019-1,0,4380_7778208_1030136,4380_1727 -4380_78156,291,4380_111229,Bus Eireann,3938-00013-1,0,4380_7778208_1030137,4380_1727 -4380_77955,286,4380_11123,Enfield,9034-00010-1,0,4380_7778208_1150101,4380_238 -4380_78156,296,4380_111230,Bus Eireann,53022-00021-1,0,4380_7778208_1030137,4380_1727 -4380_78156,285,4380_111236,Bus Eireann,2862-00009-1,0,4380_7778208_1030127,4380_1727 -4380_78156,286,4380_111237,Bus Eireann,2882-00010-1,0,4380_7778208_1030127,4380_1727 -4380_78156,288,4380_111238,Bus Eireann,2892-00011-1,0,4380_7778208_1030127,4380_1727 -4380_78156,287,4380_111239,Bus Eireann,2922-00012-1,0,4380_7778208_1030127,4380_1727 -4380_77955,288,4380_11124,Enfield,9050-00011-1,0,4380_7778208_1150101,4380_238 -4380_78156,289,4380_111240,Bus Eireann,2842-00014-1,0,4380_7778208_1030127,4380_1727 -4380_78156,290,4380_111241,Bus Eireann,52472-00015-1,0,4380_7778208_1030127,4380_1727 -4380_78156,292,4380_111242,Bus Eireann,52475-00016-1,0,4380_7778208_1030127,4380_1727 -4380_78156,293,4380_111243,Bus Eireann,52473-00017-1,0,4380_7778208_1030127,4380_1727 -4380_78156,294,4380_111244,Bus Eireann,52471-00018-1,0,4380_7778208_1030127,4380_1727 -4380_78156,295,4380_111245,Bus Eireann,52474-00019-1,0,4380_7778208_1030127,4380_1727 -4380_78156,297,4380_111247,Bus Eireann,2930-00008-1,0,4380_7778208_1030127,4380_1727 -4380_78156,291,4380_111249,Bus Eireann,3270-00013-1,0,4380_7778208_1030130,4380_1727 -4380_77955,287,4380_11125,Enfield,9066-00012-1,0,4380_7778208_1150101,4380_238 -4380_78156,296,4380_111250,Bus Eireann,52639-00021-1,0,4380_7778208_1030130,4380_1727 -4380_78156,285,4380_111256,Bus Eireann,2962-00009-1,0,4380_7778208_1030128,4380_1727 -4380_78156,286,4380_111257,Bus Eireann,2982-00010-1,0,4380_7778208_1030128,4380_1727 -4380_78156,288,4380_111258,Bus Eireann,3012-00011-1,0,4380_7778208_1030128,4380_1727 -4380_78156,287,4380_111259,Bus Eireann,3022-00012-1,0,4380_7778208_1030128,4380_1727 -4380_77955,289,4380_11126,Enfield,9002-00014-1,0,4380_7778208_1150101,4380_238 -4380_78156,289,4380_111260,Bus Eireann,2952-00014-1,0,4380_7778208_1030128,4380_1727 -4380_78156,290,4380_111261,Bus Eireann,52521-00015-1,0,4380_7778208_1030128,4380_1727 -4380_78156,292,4380_111262,Bus Eireann,52523-00016-1,0,4380_7778208_1030128,4380_1727 -4380_78156,293,4380_111263,Bus Eireann,52522-00017-1,0,4380_7778208_1030128,4380_1727 -4380_78156,294,4380_111264,Bus Eireann,52525-00018-1,0,4380_7778208_1030128,4380_1727 -4380_78156,295,4380_111265,Bus Eireann,52524-00019-1,0,4380_7778208_1030128,4380_1727 -4380_78156,297,4380_111267,Bus Eireann,2680-00008-1,0,4380_7778208_1030124,4380_1727 -4380_78156,291,4380_111269,Bus Eireann,3380-00013-1,0,4380_7778208_1030131,4380_1727 -4380_77955,290,4380_11127,Enfield,57598-00015-1,0,4380_7778208_1150101,4380_238 -4380_78156,296,4380_111270,Bus Eireann,52699-00021-1,0,4380_7778208_1030131,4380_1727 -4380_78156,285,4380_111276,Bus Eireann,3080-00009-1,0,4380_7778208_1030129,4380_1727 -4380_78156,286,4380_111277,Bus Eireann,3090-00010-1,0,4380_7778208_1030129,4380_1727 -4380_78156,288,4380_111278,Bus Eireann,3120-00011-1,0,4380_7778208_1030129,4380_1727 -4380_78156,287,4380_111279,Bus Eireann,3140-00012-1,0,4380_7778208_1030129,4380_1727 -4380_77955,291,4380_11128,Enfield,57594-00013-1,0,4380_7778208_1150101,4380_244 -4380_78156,289,4380_111280,Bus Eireann,3050-00014-1,0,4380_7778208_1030129,4380_1727 -4380_78156,290,4380_111281,Bus Eireann,52580-00015-1,0,4380_7778208_1030129,4380_1727 -4380_78156,292,4380_111282,Bus Eireann,52578-00016-1,0,4380_7778208_1030129,4380_1727 -4380_78156,293,4380_111283,Bus Eireann,52582-00017-1,0,4380_7778208_1030129,4380_1727 -4380_78156,294,4380_111284,Bus Eireann,52579-00018-1,0,4380_7778208_1030129,4380_1727 -4380_78156,295,4380_111285,Bus Eireann,52581-00019-1,0,4380_7778208_1030129,4380_1727 -4380_77955,292,4380_11129,Enfield,57599-00016-1,0,4380_7778208_1150101,4380_238 -4380_78156,285,4380_111292,Bus Eireann,3200-00009-1,0,4380_7778208_1030130,4380_1727 -4380_78156,286,4380_111293,Bus Eireann,3210-00010-1,0,4380_7778208_1030130,4380_1727 -4380_78156,288,4380_111294,Bus Eireann,3230-00011-1,0,4380_7778208_1030130,4380_1727 -4380_78156,287,4380_111295,Bus Eireann,3250-00012-1,0,4380_7778208_1030130,4380_1727 -4380_78156,289,4380_111296,Bus Eireann,3170-00014-1,0,4380_7778208_1030130,4380_1727 -4380_78156,290,4380_111297,Bus Eireann,52644-00015-1,0,4380_7778208_1030130,4380_1727 -4380_78156,291,4380_111298,Bus Eireann,3966-00013-1,0,4380_7778208_1030138,4380_1728 -4380_78156,292,4380_111299,Bus Eireann,52641-00016-1,0,4380_7778208_1030130,4380_1727 -4380_78113,294,4380_1113,Dublin via Airport,50080-00018-1,1,4380_7778208_1000907,4380_18 -4380_77955,293,4380_11130,Enfield,57600-00017-1,0,4380_7778208_1150101,4380_238 -4380_78156,293,4380_111300,Bus Eireann,52643-00017-1,0,4380_7778208_1030130,4380_1727 -4380_78156,294,4380_111301,Bus Eireann,52642-00018-1,0,4380_7778208_1030130,4380_1727 -4380_78156,295,4380_111302,Bus Eireann,52640-00019-1,0,4380_7778208_1030130,4380_1727 -4380_78156,296,4380_111303,Bus Eireann,53040-00021-1,0,4380_7778208_1030138,4380_1728 -4380_78156,297,4380_111305,Bus Eireann,3040-00008-1,0,4380_7778208_1030128,4380_1727 -4380_77955,294,4380_11131,Enfield,57597-00018-1,0,4380_7778208_1150101,4380_238 -4380_78156,285,4380_111312,Bus Eireann,3300-00009-1,0,4380_7778208_1030131,4380_1727 -4380_78156,286,4380_111313,Bus Eireann,3320-00010-1,0,4380_7778208_1030131,4380_1727 -4380_78156,288,4380_111314,Bus Eireann,3340-00011-1,0,4380_7778208_1030131,4380_1727 -4380_78156,287,4380_111315,Bus Eireann,3370-00012-1,0,4380_7778208_1030131,4380_1727 -4380_78156,289,4380_111316,Bus Eireann,3280-00014-1,0,4380_7778208_1030131,4380_1727 -4380_78156,290,4380_111317,Bus Eireann,52702-00015-1,0,4380_7778208_1030131,4380_1727 -4380_78156,291,4380_111318,Bus Eireann,3490-00013-1,0,4380_7778208_1030132,4380_1728 -4380_78156,292,4380_111319,Bus Eireann,52703-00016-1,0,4380_7778208_1030131,4380_1727 -4380_77955,295,4380_11132,Enfield,57596-00019-1,0,4380_7778208_1150101,4380_238 -4380_78156,293,4380_111320,Bus Eireann,52700-00017-1,0,4380_7778208_1030131,4380_1727 -4380_78156,294,4380_111321,Bus Eireann,52704-00018-1,0,4380_7778208_1030131,4380_1727 -4380_78156,295,4380_111322,Bus Eireann,52701-00019-1,0,4380_7778208_1030131,4380_1727 -4380_78156,296,4380_111323,Bus Eireann,52759-00021-1,0,4380_7778208_1030132,4380_1728 -4380_78156,297,4380_111325,Bus Eireann,2668-00008-1,0,4380_7778208_1030123,4380_1727 -4380_77955,296,4380_11133,Enfield,57595-00021-1,0,4380_7778208_1150101,4380_244 -4380_78156,285,4380_111332,Bus Eireann,3420-00009-1,0,4380_7778208_1030132,4380_1727 -4380_78156,286,4380_111333,Bus Eireann,3440-00010-1,0,4380_7778208_1030132,4380_1727 -4380_78156,288,4380_111334,Bus Eireann,3460-00011-1,0,4380_7778208_1030132,4380_1727 -4380_78156,287,4380_111335,Bus Eireann,3470-00012-1,0,4380_7778208_1030132,4380_1727 -4380_78156,289,4380_111336,Bus Eireann,3400-00014-1,0,4380_7778208_1030132,4380_1727 -4380_78156,290,4380_111337,Bus Eireann,52763-00015-1,0,4380_7778208_1030132,4380_1727 -4380_78156,291,4380_111338,Bus Eireann,3600-00013-1,0,4380_7778208_1030133,4380_1728 -4380_78156,292,4380_111339,Bus Eireann,52760-00016-1,0,4380_7778208_1030132,4380_1727 -4380_78156,293,4380_111340,Bus Eireann,52761-00017-1,0,4380_7778208_1030132,4380_1727 -4380_78156,294,4380_111341,Bus Eireann,52764-00018-1,0,4380_7778208_1030132,4380_1727 -4380_78156,295,4380_111342,Bus Eireann,52762-00019-1,0,4380_7778208_1030132,4380_1727 -4380_78156,296,4380_111343,Bus Eireann,52819-00021-1,0,4380_7778208_1030133,4380_1728 -4380_78156,285,4380_111350,Bus Eireann,3530-00009-1,0,4380_7778208_1030133,4380_1727 -4380_78156,286,4380_111351,Bus Eireann,3550-00010-1,0,4380_7778208_1030133,4380_1727 -4380_78156,288,4380_111352,Bus Eireann,3570-00011-1,0,4380_7778208_1030133,4380_1727 -4380_78156,287,4380_111353,Bus Eireann,3580-00012-1,0,4380_7778208_1030133,4380_1727 -4380_78156,289,4380_111354,Bus Eireann,3510-00014-1,0,4380_7778208_1030133,4380_1727 -4380_78156,290,4380_111355,Bus Eireann,52822-00015-1,0,4380_7778208_1030133,4380_1727 -4380_78156,291,4380_111356,Bus Eireann,3810-00013-1,0,4380_7778208_1030135,4380_1728 -4380_78156,292,4380_111357,Bus Eireann,52823-00016-1,0,4380_7778208_1030133,4380_1727 -4380_78156,293,4380_111358,Bus Eireann,52824-00017-1,0,4380_7778208_1030133,4380_1727 -4380_78156,294,4380_111359,Bus Eireann,52820-00018-1,0,4380_7778208_1030133,4380_1727 -4380_78156,295,4380_111360,Bus Eireann,52821-00019-1,0,4380_7778208_1030133,4380_1727 -4380_78156,296,4380_111361,Bus Eireann,52939-00021-1,0,4380_7778208_1030135,4380_1728 -4380_78156,297,4380_111363,Bus Eireann,3160-00008-1,0,4380_7778208_1030129,4380_1727 -4380_78156,291,4380_111365,Bus Eireann,3987-00013-1,0,4380_7778208_1030139,4380_1727 -4380_78156,296,4380_111366,Bus Eireann,53056-00021-1,0,4380_7778208_1030139,4380_1727 -4380_78156,285,4380_111372,Bus Eireann,3628-00009-1,0,4380_7778208_1030134,4380_1727 -4380_78156,286,4380_111373,Bus Eireann,3646-00010-1,0,4380_7778208_1030134,4380_1727 -4380_78156,288,4380_111374,Bus Eireann,3672-00011-1,0,4380_7778208_1030134,4380_1727 -4380_78156,287,4380_111375,Bus Eireann,3682-00012-1,0,4380_7778208_1030134,4380_1727 -4380_78156,289,4380_111376,Bus Eireann,3610-00014-1,0,4380_7778208_1030134,4380_1727 -4380_78156,290,4380_111377,Bus Eireann,52883-00015-1,0,4380_7778208_1030134,4380_1727 -4380_78156,292,4380_111378,Bus Eireann,52881-00016-1,0,4380_7778208_1030134,4380_1727 -4380_78156,293,4380_111379,Bus Eireann,52882-00017-1,0,4380_7778208_1030134,4380_1727 -4380_78156,294,4380_111380,Bus Eireann,52880-00018-1,0,4380_7778208_1030134,4380_1727 -4380_78156,295,4380_111381,Bus Eireann,52879-00019-1,0,4380_7778208_1030134,4380_1727 -4380_78156,297,4380_111383,Bus Eireann,2822-00008-1,0,4380_7778208_1030126,4380_1727 -4380_78156,291,4380_111385,Bus Eireann,3910-00013-1,0,4380_7778208_1030136,4380_1727 -4380_78156,296,4380_111386,Bus Eireann,52999-00021-1,0,4380_7778208_1030136,4380_1727 -4380_78156,285,4380_111392,Bus Eireann,3740-00009-1,0,4380_7778208_1030135,4380_1727 -4380_78156,286,4380_111393,Bus Eireann,3760-00010-1,0,4380_7778208_1030135,4380_1727 -4380_78156,288,4380_111394,Bus Eireann,3780-00011-1,0,4380_7778208_1030135,4380_1727 -4380_78156,287,4380_111395,Bus Eireann,3800-00012-1,0,4380_7778208_1030135,4380_1727 -4380_78156,289,4380_111396,Bus Eireann,3720-00014-1,0,4380_7778208_1030135,4380_1727 -4380_78156,290,4380_111397,Bus Eireann,52941-00015-1,0,4380_7778208_1030135,4380_1727 -4380_78156,292,4380_111398,Bus Eireann,52940-00016-1,0,4380_7778208_1030135,4380_1727 -4380_78156,293,4380_111399,Bus Eireann,52944-00017-1,0,4380_7778208_1030135,4380_1727 -4380_78113,295,4380_1114,Dublin via Airport,50072-00019-1,1,4380_7778208_1000907,4380_18 -4380_78156,294,4380_111400,Bus Eireann,52942-00018-1,0,4380_7778208_1030135,4380_1727 -4380_78156,295,4380_111401,Bus Eireann,52943-00019-1,0,4380_7778208_1030135,4380_1727 -4380_78156,291,4380_111403,Bus Eireann,3152-00013-1,0,4380_7778208_1030129,4380_1727 -4380_78156,296,4380_111404,Bus Eireann,52589-00021-1,0,4380_7778208_1030129,4380_1727 -4380_77955,285,4380_11141,Mullingar,57987-00009-1,0,4380_7778208_1150108,4380_239 -4380_78156,285,4380_111410,Bus Eireann,2740-00009-1,0,4380_7778208_1030126,4380_1727 -4380_78156,286,4380_111411,Bus Eireann,2764-00010-1,0,4380_7778208_1030126,4380_1727 -4380_78156,288,4380_111412,Bus Eireann,2788-00011-1,0,4380_7778208_1030126,4380_1727 -4380_78156,287,4380_111413,Bus Eireann,2812-00012-1,0,4380_7778208_1030126,4380_1727 -4380_78156,289,4380_111414,Bus Eireann,2716-00014-1,0,4380_7778208_1030126,4380_1727 -4380_78156,290,4380_111415,Bus Eireann,52424-00015-1,0,4380_7778208_1030126,4380_1727 -4380_78156,292,4380_111416,Bus Eireann,52425-00016-1,0,4380_7778208_1030126,4380_1727 -4380_78156,293,4380_111417,Bus Eireann,52421-00017-1,0,4380_7778208_1030126,4380_1727 -4380_78156,294,4380_111418,Bus Eireann,52423-00018-1,0,4380_7778208_1030126,4380_1727 -4380_78156,295,4380_111419,Bus Eireann,52422-00019-1,0,4380_7778208_1030126,4380_1727 -4380_77955,286,4380_11142,Mullingar,57985-00010-1,0,4380_7778208_1150108,4380_239 -4380_78156,297,4380_111421,Bus Eireann,2692-00008-1,0,4380_7778208_1030125,4380_1727 -4380_78156,291,4380_111423,Bus Eireann,3700-00013-1,0,4380_7778208_1030134,4380_1727 -4380_78156,296,4380_111424,Bus Eireann,52884-00021-1,0,4380_7778208_1030134,4380_1727 -4380_77955,297,4380_11143,Enfield,57661-00008-1,0,4380_7778208_1150102,4380_238 -4380_78156,285,4380_111430,Bus Eireann,3848-00009-1,0,4380_7778208_1030136,4380_1727 -4380_78156,286,4380_111431,Bus Eireann,3856-00010-1,0,4380_7778208_1030136,4380_1727 -4380_78156,288,4380_111432,Bus Eireann,3884-00011-1,0,4380_7778208_1030136,4380_1727 -4380_78156,287,4380_111433,Bus Eireann,3892-00012-1,0,4380_7778208_1030136,4380_1727 -4380_78156,289,4380_111434,Bus Eireann,3830-00014-1,0,4380_7778208_1030136,4380_1727 -4380_78156,290,4380_111435,Bus Eireann,53003-00015-1,0,4380_7778208_1030136,4380_1727 -4380_78156,292,4380_111436,Bus Eireann,53002-00016-1,0,4380_7778208_1030136,4380_1727 -4380_78156,293,4380_111437,Bus Eireann,53004-00017-1,0,4380_7778208_1030136,4380_1727 -4380_78156,294,4380_111438,Bus Eireann,53000-00018-1,0,4380_7778208_1030136,4380_1727 -4380_78156,295,4380_111439,Bus Eireann,53001-00019-1,0,4380_7778208_1030136,4380_1727 -4380_77955,288,4380_11144,Mullingar,57989-00011-1,0,4380_7778208_1150108,4380_239 -4380_78156,297,4380_111441,Bus Eireann,2932-00008-1,0,4380_7778208_1030127,4380_1727 -4380_78156,291,4380_111443,Bus Eireann,3940-00013-1,0,4380_7778208_1030137,4380_1727 -4380_78156,296,4380_111444,Bus Eireann,53029-00021-1,0,4380_7778208_1030137,4380_1727 -4380_77955,287,4380_11145,Mullingar,57993-00012-1,0,4380_7778208_1150108,4380_239 -4380_78156,285,4380_111450,Bus Eireann,2864-00009-1,0,4380_7778208_1030127,4380_1727 -4380_78156,286,4380_111451,Bus Eireann,2884-00010-1,0,4380_7778208_1030127,4380_1727 -4380_78156,288,4380_111452,Bus Eireann,2894-00011-1,0,4380_7778208_1030127,4380_1727 -4380_78156,287,4380_111453,Bus Eireann,2924-00012-1,0,4380_7778208_1030127,4380_1727 -4380_78156,289,4380_111454,Bus Eireann,2844-00014-1,0,4380_7778208_1030127,4380_1727 -4380_78156,290,4380_111455,Bus Eireann,52484-00015-1,0,4380_7778208_1030127,4380_1727 -4380_78156,292,4380_111456,Bus Eireann,52485-00016-1,0,4380_7778208_1030127,4380_1727 -4380_78156,293,4380_111457,Bus Eireann,52481-00017-1,0,4380_7778208_1030127,4380_1727 -4380_78156,294,4380_111458,Bus Eireann,52482-00018-1,0,4380_7778208_1030127,4380_1727 -4380_78156,295,4380_111459,Bus Eireann,52483-00019-1,0,4380_7778208_1030127,4380_1727 -4380_77955,289,4380_11146,Mullingar,57991-00014-1,0,4380_7778208_1150108,4380_239 -4380_78156,291,4380_111461,Bus Eireann,3272-00013-1,0,4380_7778208_1030130,4380_1727 -4380_78156,296,4380_111462,Bus Eireann,52651-00021-1,0,4380_7778208_1030130,4380_1727 -4380_78156,285,4380_111468,Bus Eireann,2964-00009-1,0,4380_7778208_1030128,4380_1727 -4380_78156,286,4380_111469,Bus Eireann,2984-00010-1,0,4380_7778208_1030128,4380_1727 -4380_77955,290,4380_11147,Mullingar,57988-00015-1,0,4380_7778208_1150108,4380_239 -4380_78156,288,4380_111470,Bus Eireann,3014-00011-1,0,4380_7778208_1030128,4380_1727 -4380_78156,287,4380_111471,Bus Eireann,3024-00012-1,0,4380_7778208_1030128,4380_1727 -4380_78156,289,4380_111472,Bus Eireann,2954-00014-1,0,4380_7778208_1030128,4380_1727 -4380_78156,290,4380_111473,Bus Eireann,52531-00015-1,0,4380_7778208_1030128,4380_1727 -4380_78156,292,4380_111474,Bus Eireann,52535-00016-1,0,4380_7778208_1030128,4380_1727 -4380_78156,293,4380_111475,Bus Eireann,52534-00017-1,0,4380_7778208_1030128,4380_1727 -4380_78156,294,4380_111476,Bus Eireann,52532-00018-1,0,4380_7778208_1030128,4380_1727 -4380_78156,295,4380_111477,Bus Eireann,52533-00019-1,0,4380_7778208_1030128,4380_1727 -4380_78156,297,4380_111479,Bus Eireann,2682-00008-1,0,4380_7778208_1030124,4380_1727 -4380_77955,291,4380_11148,Mullingar,57930-00013-1,0,4380_7778208_1150107,4380_245 -4380_78156,291,4380_111481,Bus Eireann,3382-00013-1,0,4380_7778208_1030131,4380_1727 -4380_78156,296,4380_111482,Bus Eireann,52711-00021-1,0,4380_7778208_1030131,4380_1727 -4380_78156,285,4380_111488,Bus Eireann,3082-00009-1,0,4380_7778208_1030129,4380_1727 -4380_78156,286,4380_111489,Bus Eireann,3092-00010-1,0,4380_7778208_1030129,4380_1727 -4380_77955,292,4380_11149,Mullingar,57986-00016-1,0,4380_7778208_1150108,4380_239 -4380_78156,288,4380_111490,Bus Eireann,3122-00011-1,0,4380_7778208_1030129,4380_1727 -4380_78156,287,4380_111491,Bus Eireann,3142-00012-1,0,4380_7778208_1030129,4380_1727 -4380_78156,289,4380_111492,Bus Eireann,3052-00014-1,0,4380_7778208_1030129,4380_1727 -4380_78156,290,4380_111493,Bus Eireann,52592-00015-1,0,4380_7778208_1030129,4380_1727 -4380_78156,292,4380_111494,Bus Eireann,52594-00016-1,0,4380_7778208_1030129,4380_1727 -4380_78156,293,4380_111495,Bus Eireann,52593-00017-1,0,4380_7778208_1030129,4380_1727 -4380_78156,294,4380_111496,Bus Eireann,52590-00018-1,0,4380_7778208_1030129,4380_1727 -4380_78156,295,4380_111497,Bus Eireann,52591-00019-1,0,4380_7778208_1030129,4380_1727 -4380_78156,297,4380_111499,Bus Eireann,3042-00008-1,0,4380_7778208_1030128,4380_1727 -4380_78113,296,4380_1115,Dublin via Airport,50070-00021-1,1,4380_7778208_1000907,4380_18 -4380_77955,293,4380_11150,Mullingar,57990-00017-1,0,4380_7778208_1150108,4380_239 -4380_78156,291,4380_111501,Bus Eireann,3492-00013-1,0,4380_7778208_1030132,4380_1727 -4380_78156,296,4380_111502,Bus Eireann,52771-00021-1,0,4380_7778208_1030132,4380_1727 -4380_78156,285,4380_111508,Bus Eireann,3302-00009-1,0,4380_7778208_1030131,4380_1727 -4380_78156,286,4380_111509,Bus Eireann,3322-00010-1,0,4380_7778208_1030131,4380_1727 -4380_77955,294,4380_11151,Mullingar,57994-00018-1,0,4380_7778208_1150108,4380_239 -4380_78156,288,4380_111510,Bus Eireann,3342-00011-1,0,4380_7778208_1030131,4380_1727 -4380_78156,287,4380_111511,Bus Eireann,3372-00012-1,0,4380_7778208_1030131,4380_1727 -4380_78156,289,4380_111512,Bus Eireann,3282-00014-1,0,4380_7778208_1030131,4380_1727 -4380_78156,290,4380_111513,Bus Eireann,52712-00015-1,0,4380_7778208_1030131,4380_1727 -4380_78156,292,4380_111514,Bus Eireann,52715-00016-1,0,4380_7778208_1030131,4380_1727 -4380_78156,293,4380_111515,Bus Eireann,52714-00017-1,0,4380_7778208_1030131,4380_1727 -4380_78156,294,4380_111516,Bus Eireann,52713-00018-1,0,4380_7778208_1030131,4380_1727 -4380_78156,295,4380_111517,Bus Eireann,52716-00019-1,0,4380_7778208_1030131,4380_1727 -4380_78156,297,4380_111519,Bus Eireann,2670-00008-1,0,4380_7778208_1030123,4380_1727 -4380_77955,295,4380_11152,Mullingar,57992-00019-1,0,4380_7778208_1150108,4380_239 -4380_78156,291,4380_111521,Bus Eireann,3812-00013-1,0,4380_7778208_1030135,4380_1727 -4380_78156,296,4380_111522,Bus Eireann,52951-00021-1,0,4380_7778208_1030135,4380_1727 -4380_78156,285,4380_111528,Bus Eireann,3532-00009-1,0,4380_7778208_1030133,4380_1727 -4380_78156,286,4380_111529,Bus Eireann,3552-00010-1,0,4380_7778208_1030133,4380_1727 -4380_77955,296,4380_11153,Mullingar,57931-00021-1,0,4380_7778208_1150107,4380_245 -4380_78156,288,4380_111530,Bus Eireann,3572-00011-1,0,4380_7778208_1030133,4380_1727 -4380_78156,287,4380_111531,Bus Eireann,3582-00012-1,0,4380_7778208_1030133,4380_1727 -4380_78156,289,4380_111532,Bus Eireann,3512-00014-1,0,4380_7778208_1030133,4380_1727 -4380_78156,290,4380_111533,Bus Eireann,52831-00015-1,0,4380_7778208_1030133,4380_1727 -4380_78156,292,4380_111534,Bus Eireann,52834-00016-1,0,4380_7778208_1030133,4380_1727 -4380_78156,293,4380_111535,Bus Eireann,52835-00017-1,0,4380_7778208_1030133,4380_1727 -4380_78156,294,4380_111536,Bus Eireann,52832-00018-1,0,4380_7778208_1030133,4380_1727 -4380_78156,295,4380_111537,Bus Eireann,52833-00019-1,0,4380_7778208_1030133,4380_1727 -4380_78156,297,4380_111539,Bus Eireann,3162-00008-1,0,4380_7778208_1030129,4380_1727 -4380_78156,291,4380_111541,Bus Eireann,3602-00013-1,0,4380_7778208_1030133,4380_1727 -4380_78156,296,4380_111542,Bus Eireann,52836-00021-1,0,4380_7778208_1030133,4380_1727 -4380_78156,285,4380_111548,Bus Eireann,3630-00009-1,0,4380_7778208_1030134,4380_1727 -4380_78156,286,4380_111549,Bus Eireann,3648-00010-1,0,4380_7778208_1030134,4380_1727 -4380_78156,288,4380_111550,Bus Eireann,3674-00011-1,0,4380_7778208_1030134,4380_1727 -4380_78156,287,4380_111551,Bus Eireann,3684-00012-1,0,4380_7778208_1030134,4380_1727 -4380_78156,289,4380_111552,Bus Eireann,3612-00014-1,0,4380_7778208_1030134,4380_1727 -4380_78156,290,4380_111553,Bus Eireann,52893-00015-1,0,4380_7778208_1030134,4380_1727 -4380_78156,292,4380_111554,Bus Eireann,52891-00016-1,0,4380_7778208_1030134,4380_1727 -4380_78156,293,4380_111555,Bus Eireann,52895-00017-1,0,4380_7778208_1030134,4380_1727 -4380_78156,294,4380_111556,Bus Eireann,52892-00018-1,0,4380_7778208_1030134,4380_1727 -4380_78156,295,4380_111557,Bus Eireann,52894-00019-1,0,4380_7778208_1030134,4380_1727 -4380_78156,297,4380_111559,Bus Eireann,2824-00008-1,0,4380_7778208_1030126,4380_1727 -4380_78156,285,4380_111566,Bus Eireann,3202-00009-1,0,4380_7778208_1030130,4380_1727 -4380_78156,286,4380_111567,Bus Eireann,3212-00010-1,0,4380_7778208_1030130,4380_1727 -4380_78156,288,4380_111568,Bus Eireann,3232-00011-1,0,4380_7778208_1030130,4380_1727 -4380_78156,287,4380_111569,Bus Eireann,3252-00012-1,0,4380_7778208_1030130,4380_1727 -4380_78156,289,4380_111570,Bus Eireann,3172-00014-1,0,4380_7778208_1030130,4380_1727 -4380_78156,290,4380_111571,Bus Eireann,52652-00015-1,0,4380_7778208_1030130,4380_1727 -4380_78156,291,4380_111572,Bus Eireann,3154-00013-1,0,4380_7778208_1030129,4380_1728 -4380_78156,292,4380_111573,Bus Eireann,52654-00016-1,0,4380_7778208_1030130,4380_1727 -4380_78156,293,4380_111574,Bus Eireann,52653-00017-1,0,4380_7778208_1030130,4380_1727 -4380_78156,294,4380_111575,Bus Eireann,52655-00018-1,0,4380_7778208_1030130,4380_1727 -4380_78156,295,4380_111576,Bus Eireann,52656-00019-1,0,4380_7778208_1030130,4380_1727 -4380_78156,296,4380_111577,Bus Eireann,52601-00021-1,0,4380_7778208_1030129,4380_1728 -4380_78156,297,4380_111579,Bus Eireann,2694-00008-1,0,4380_7778208_1030125,4380_1727 -4380_78156,285,4380_111585,Bus Eireann,2742-00009-1,0,4380_7778208_1030126,4380_1727 -4380_78156,286,4380_111586,Bus Eireann,2766-00010-1,0,4380_7778208_1030126,4380_1727 -4380_78156,288,4380_111587,Bus Eireann,2790-00011-1,0,4380_7778208_1030126,4380_1727 -4380_78156,287,4380_111588,Bus Eireann,2814-00012-1,0,4380_7778208_1030126,4380_1727 -4380_78156,289,4380_111589,Bus Eireann,2718-00014-1,0,4380_7778208_1030126,4380_1727 -4380_77955,285,4380_11159,Mullingar,9893-00009-1,0,4380_7778208_1150116,4380_243 -4380_78156,290,4380_111590,Bus Eireann,52434-00015-1,0,4380_7778208_1030126,4380_1727 -4380_78156,292,4380_111591,Bus Eireann,52431-00016-1,0,4380_7778208_1030126,4380_1727 -4380_78156,293,4380_111592,Bus Eireann,52435-00017-1,0,4380_7778208_1030126,4380_1727 -4380_78156,294,4380_111593,Bus Eireann,52432-00018-1,0,4380_7778208_1030126,4380_1727 -4380_78156,295,4380_111594,Bus Eireann,52433-00019-1,0,4380_7778208_1030126,4380_1727 -4380_78156,291,4380_111596,Bus Eireann,3989-00013-1,0,4380_7778208_1030139,4380_1727 -4380_78156,296,4380_111597,Bus Eireann,53063-00021-1,0,4380_7778208_1030139,4380_1727 -4380_78156,297,4380_111599,Bus Eireann,2934-00008-1,0,4380_7778208_1030127,4380_1727 -4380_77955,286,4380_11160,Mullingar,9905-00010-1,0,4380_7778208_1150116,4380_243 -4380_78156,285,4380_111605,Bus Eireann,3422-00009-1,0,4380_7778208_1030132,4380_1727 -4380_78156,286,4380_111606,Bus Eireann,3442-00010-1,0,4380_7778208_1030132,4380_1727 -4380_78156,288,4380_111607,Bus Eireann,3462-00011-1,0,4380_7778208_1030132,4380_1727 -4380_78156,287,4380_111608,Bus Eireann,3472-00012-1,0,4380_7778208_1030132,4380_1727 -4380_78156,289,4380_111609,Bus Eireann,3402-00014-1,0,4380_7778208_1030132,4380_1727 -4380_77955,288,4380_11161,Mullingar,9909-00011-1,0,4380_7778208_1150116,4380_243 -4380_78156,290,4380_111610,Bus Eireann,52775-00015-1,0,4380_7778208_1030132,4380_1727 -4380_78156,292,4380_111611,Bus Eireann,52774-00016-1,0,4380_7778208_1030132,4380_1727 -4380_78156,293,4380_111612,Bus Eireann,52776-00017-1,0,4380_7778208_1030132,4380_1727 -4380_78156,294,4380_111613,Bus Eireann,52777-00018-1,0,4380_7778208_1030132,4380_1727 -4380_78156,295,4380_111614,Bus Eireann,52773-00019-1,0,4380_7778208_1030132,4380_1727 -4380_78156,291,4380_111616,Bus Eireann,3702-00013-1,0,4380_7778208_1030134,4380_1727 -4380_78156,296,4380_111617,Bus Eireann,52896-00021-1,0,4380_7778208_1030134,4380_1727 -4380_78156,297,4380_111619,Bus Eireann,2684-00008-1,0,4380_7778208_1030124,4380_1727 -4380_77955,287,4380_11162,Mullingar,9921-00012-1,0,4380_7778208_1150116,4380_243 -4380_78156,285,4380_111625,Bus Eireann,3742-00009-1,0,4380_7778208_1030135,4380_1727 -4380_78156,286,4380_111626,Bus Eireann,3762-00010-1,0,4380_7778208_1030135,4380_1727 -4380_78156,288,4380_111627,Bus Eireann,3782-00011-1,0,4380_7778208_1030135,4380_1727 -4380_78156,287,4380_111628,Bus Eireann,3802-00012-1,0,4380_7778208_1030135,4380_1727 -4380_78156,289,4380_111629,Bus Eireann,3722-00014-1,0,4380_7778208_1030135,4380_1727 -4380_77955,289,4380_11163,Mullingar,9885-00014-1,0,4380_7778208_1150116,4380_243 -4380_78156,290,4380_111630,Bus Eireann,52955-00015-1,0,4380_7778208_1030135,4380_1727 -4380_78156,292,4380_111631,Bus Eireann,52956-00016-1,0,4380_7778208_1030135,4380_1727 -4380_78156,293,4380_111632,Bus Eireann,52953-00017-1,0,4380_7778208_1030135,4380_1727 -4380_78156,294,4380_111633,Bus Eireann,52957-00018-1,0,4380_7778208_1030135,4380_1727 -4380_78156,295,4380_111634,Bus Eireann,52954-00019-1,0,4380_7778208_1030135,4380_1727 -4380_78156,291,4380_111636,Bus Eireann,3912-00013-1,0,4380_7778208_1030136,4380_1727 -4380_78156,296,4380_111637,Bus Eireann,53011-00021-1,0,4380_7778208_1030136,4380_1727 -4380_78156,297,4380_111639,Bus Eireann,2672-00008-1,0,4380_7778208_1030123,4380_1727 -4380_77955,292,4380_11164,Mullingar,58228-00016-1,0,4380_7778208_1150116,4380_243 -4380_78156,285,4380_111645,Wilton Terrace,2733-00009-1,1,4380_7778208_1030126,4380_1729 -4380_78156,286,4380_111646,Wilton Terrace,2757-00010-1,1,4380_7778208_1030126,4380_1729 -4380_78156,288,4380_111647,Wilton Terrace,2781-00011-1,1,4380_7778208_1030126,4380_1729 -4380_78156,287,4380_111648,Wilton Terrace,2805-00012-1,1,4380_7778208_1030126,4380_1729 -4380_78156,289,4380_111649,Wilton Terrace,2709-00014-1,1,4380_7778208_1030126,4380_1729 -4380_77955,293,4380_11165,Mullingar,58224-00017-1,0,4380_7778208_1150116,4380_243 -4380_78156,290,4380_111650,Wilton Terrace,52386-00015-1,1,4380_7778208_1030126,4380_1729 -4380_78156,292,4380_111651,Wilton Terrace,52390-00016-1,1,4380_7778208_1030126,4380_1729 -4380_78156,293,4380_111652,Wilton Terrace,52388-00017-1,1,4380_7778208_1030126,4380_1729 -4380_78156,294,4380_111653,Wilton Terrace,52389-00018-1,1,4380_7778208_1030126,4380_1729 -4380_78156,295,4380_111654,Wilton Terrace,52387-00019-1,1,4380_7778208_1030126,4380_1729 -4380_78156,291,4380_111656,Wilton Terrace,3145-00013-1,1,4380_7778208_1030129,4380_1729 -4380_78156,296,4380_111657,Wilton Terrace,52547-00021-1,1,4380_7778208_1030129,4380_1729 -4380_77955,290,4380_11166,Mullingar,58226-00015-1,0,4380_7778208_1150116,4380_243 -4380_78156,285,4380_111664,Wilton Terrace,2857-00009-1,1,4380_7778208_1030127,4380_1729 -4380_78156,286,4380_111665,Wilton Terrace,2877-00010-1,1,4380_7778208_1030127,4380_1729 -4380_78156,297,4380_111666,Wilton Terrace,2663-00008-1,1,4380_7778208_1030123,4380_1732 -4380_78156,288,4380_111667,Wilton Terrace,2887-00011-1,1,4380_7778208_1030127,4380_1729 -4380_78156,287,4380_111668,Wilton Terrace,2917-00012-1,1,4380_7778208_1030127,4380_1729 -4380_78156,289,4380_111669,Wilton Terrace,2837-00014-1,1,4380_7778208_1030127,4380_1729 -4380_77955,294,4380_11167,Mullingar,58225-00018-1,0,4380_7778208_1150116,4380_243 -4380_78156,290,4380_111670,Wilton Terrace,52448-00015-1,1,4380_7778208_1030127,4380_1729 -4380_78156,292,4380_111671,Wilton Terrace,52446-00016-1,1,4380_7778208_1030127,4380_1729 -4380_78156,293,4380_111672,Wilton Terrace,52447-00017-1,1,4380_7778208_1030127,4380_1729 -4380_78156,294,4380_111673,Wilton Terrace,52449-00018-1,1,4380_7778208_1030127,4380_1729 -4380_78156,295,4380_111674,Wilton Terrace,52450-00019-1,1,4380_7778208_1030127,4380_1729 -4380_77955,295,4380_11168,Mullingar,58227-00019-1,0,4380_7778208_1150116,4380_243 -4380_78156,285,4380_111680,Wilton Terrace,2957-00009-1,1,4380_7778208_1030128,4380_1730 -4380_78156,286,4380_111681,Wilton Terrace,2977-00010-1,1,4380_7778208_1030128,4380_1730 -4380_78156,288,4380_111682,Wilton Terrace,3007-00011-1,1,4380_7778208_1030128,4380_1730 -4380_78156,287,4380_111683,Wilton Terrace,3017-00012-1,1,4380_7778208_1030128,4380_1730 -4380_78156,289,4380_111684,Wilton Terrace,2947-00014-1,1,4380_7778208_1030128,4380_1730 -4380_78156,290,4380_111685,Wilton Terrace,52496-00015-1,1,4380_7778208_1030128,4380_1730 -4380_78156,292,4380_111686,Wilton Terrace,52498-00016-1,1,4380_7778208_1030128,4380_1730 -4380_78156,293,4380_111687,Wilton Terrace,52499-00017-1,1,4380_7778208_1030128,4380_1730 -4380_78156,294,4380_111688,Wilton Terrace,52497-00018-1,1,4380_7778208_1030128,4380_1730 -4380_78156,295,4380_111689,Wilton Terrace,52500-00019-1,1,4380_7778208_1030128,4380_1730 -4380_78156,285,4380_111695,Wilton Terrace,3075-00009-1,1,4380_7778208_1030129,4380_1730 -4380_78156,286,4380_111696,Wilton Terrace,3085-00010-1,1,4380_7778208_1030129,4380_1730 -4380_78156,288,4380_111697,Wilton Terrace,3115-00011-1,1,4380_7778208_1030129,4380_1730 -4380_78156,287,4380_111698,Wilton Terrace,3135-00012-1,1,4380_7778208_1030129,4380_1730 -4380_78156,289,4380_111699,Wilton Terrace,3045-00014-1,1,4380_7778208_1030129,4380_1730 -4380_78156,290,4380_111700,Wilton Terrace,52549-00015-1,1,4380_7778208_1030129,4380_1730 -4380_78156,292,4380_111701,Wilton Terrace,52548-00016-1,1,4380_7778208_1030129,4380_1730 -4380_78156,293,4380_111702,Wilton Terrace,52552-00017-1,1,4380_7778208_1030129,4380_1730 -4380_78156,294,4380_111703,Wilton Terrace,52550-00018-1,1,4380_7778208_1030129,4380_1730 -4380_78156,295,4380_111704,Wilton Terrace,52551-00019-1,1,4380_7778208_1030129,4380_1730 -4380_78156,291,4380_111706,Wilton Terrace,3265-00013-1,1,4380_7778208_1030130,4380_1729 -4380_78156,296,4380_111707,Wilton Terrace,52609-00021-1,1,4380_7778208_1030130,4380_1729 -4380_78156,285,4380_111713,Wilton Terrace,3195-00009-1,1,4380_7778208_1030130,4380_1736 -4380_78156,286,4380_111714,Wilton Terrace,3205-00010-1,1,4380_7778208_1030130,4380_1736 -4380_78156,288,4380_111715,Wilton Terrace,3225-00011-1,1,4380_7778208_1030130,4380_1736 -4380_78156,287,4380_111716,Wilton Terrace,3245-00012-1,1,4380_7778208_1030130,4380_1736 -4380_78156,289,4380_111717,Wilton Terrace,3165-00014-1,1,4380_7778208_1030130,4380_1736 -4380_78156,290,4380_111718,Wilton Terrace,52610-00015-1,1,4380_7778208_1030130,4380_1736 -4380_78156,292,4380_111719,Wilton Terrace,52613-00016-1,1,4380_7778208_1030130,4380_1736 -4380_78156,293,4380_111720,Wilton Terrace,52614-00017-1,1,4380_7778208_1030130,4380_1736 -4380_78156,294,4380_111721,Wilton Terrace,52612-00018-1,1,4380_7778208_1030130,4380_1736 -4380_78156,295,4380_111722,Wilton Terrace,52611-00019-1,1,4380_7778208_1030130,4380_1736 -4380_78156,297,4380_111725,Wilton Terrace,2675-00008-1,1,4380_7778208_1030124,4380_1729 -4380_78156,291,4380_111726,Wilton Terrace,3375-00013-1,1,4380_7778208_1030131,4380_1732 -4380_78156,296,4380_111727,Wilton Terrace,52669-00021-1,1,4380_7778208_1030131,4380_1732 -4380_78156,285,4380_111733,Wilton Terrace,3295-00009-1,1,4380_7778208_1030131,4380_1732 -4380_78156,286,4380_111734,Wilton Terrace,3315-00010-1,1,4380_7778208_1030131,4380_1732 -4380_78156,288,4380_111735,Wilton Terrace,3335-00011-1,1,4380_7778208_1030131,4380_1732 -4380_78156,287,4380_111736,Wilton Terrace,3365-00012-1,1,4380_7778208_1030131,4380_1732 -4380_78156,289,4380_111737,Wilton Terrace,3275-00014-1,1,4380_7778208_1030131,4380_1732 -4380_78156,290,4380_111738,Wilton Terrace,52671-00015-1,1,4380_7778208_1030131,4380_1732 -4380_78156,292,4380_111739,Wilton Terrace,52672-00016-1,1,4380_7778208_1030131,4380_1732 -4380_78156,293,4380_111740,Wilton Terrace,52670-00017-1,1,4380_7778208_1030131,4380_1732 -4380_78156,294,4380_111741,Wilton Terrace,52674-00018-1,1,4380_7778208_1030131,4380_1732 -4380_78156,295,4380_111742,Wilton Terrace,52673-00019-1,1,4380_7778208_1030131,4380_1732 -4380_78156,291,4380_111744,Wilton Terrace,3485-00013-1,1,4380_7778208_1030132,4380_1729 -4380_78156,296,4380_111745,Wilton Terrace,52729-00021-1,1,4380_7778208_1030132,4380_1729 -4380_77955,285,4380_11175,Enfield,9283-00009-1,0,4380_7778208_1150105,4380_238 -4380_78156,285,4380_111751,Wilton Terrace,3415-00009-1,1,4380_7778208_1030132,4380_1732 -4380_78156,286,4380_111752,Wilton Terrace,3435-00010-1,1,4380_7778208_1030132,4380_1732 -4380_78156,288,4380_111753,Wilton Terrace,3455-00011-1,1,4380_7778208_1030132,4380_1732 -4380_78156,287,4380_111754,Wilton Terrace,3465-00012-1,1,4380_7778208_1030132,4380_1732 -4380_78156,289,4380_111755,Wilton Terrace,3395-00014-1,1,4380_7778208_1030132,4380_1732 -4380_78156,290,4380_111756,Wilton Terrace,52734-00015-1,1,4380_7778208_1030132,4380_1732 -4380_78156,292,4380_111757,Wilton Terrace,52731-00016-1,1,4380_7778208_1030132,4380_1732 -4380_78156,293,4380_111758,Wilton Terrace,52733-00017-1,1,4380_7778208_1030132,4380_1732 -4380_78156,294,4380_111759,Wilton Terrace,52732-00018-1,1,4380_7778208_1030132,4380_1732 -4380_77955,286,4380_11176,Enfield,9292-00010-1,0,4380_7778208_1150105,4380_238 -4380_78156,295,4380_111760,Wilton Terrace,52730-00019-1,1,4380_7778208_1030132,4380_1732 -4380_78156,285,4380_111768,Wilton Terrace,3525-00009-1,1,4380_7778208_1030133,4380_1729 -4380_78156,286,4380_111769,Wilton Terrace,3545-00010-1,1,4380_7778208_1030133,4380_1729 -4380_77955,288,4380_11177,Enfield,9319-00011-1,0,4380_7778208_1150105,4380_238 -4380_78156,297,4380_111770,Wilton Terrace,2687-00008-1,1,4380_7778208_1030125,4380_1732 -4380_78156,288,4380_111771,Wilton Terrace,3565-00011-1,1,4380_7778208_1030133,4380_1729 -4380_78156,287,4380_111772,Wilton Terrace,3575-00012-1,1,4380_7778208_1030133,4380_1729 -4380_78156,289,4380_111773,Wilton Terrace,3505-00014-1,1,4380_7778208_1030133,4380_1729 -4380_78156,290,4380_111774,Wilton Terrace,52790-00015-1,1,4380_7778208_1030133,4380_1729 -4380_78156,291,4380_111775,Wilton Terrace,3595-00013-1,1,4380_7778208_1030133,4380_1733 -4380_78156,292,4380_111776,Wilton Terrace,52791-00016-1,1,4380_7778208_1030133,4380_1729 -4380_78156,293,4380_111777,Wilton Terrace,52792-00017-1,1,4380_7778208_1030133,4380_1729 -4380_78156,294,4380_111778,Wilton Terrace,52793-00018-1,1,4380_7778208_1030133,4380_1729 -4380_78156,295,4380_111779,Wilton Terrace,52789-00019-1,1,4380_7778208_1030133,4380_1729 -4380_77955,287,4380_11178,Enfield,9337-00012-1,0,4380_7778208_1150105,4380_238 -4380_78156,296,4380_111780,Wilton Terrace,52794-00021-1,1,4380_7778208_1030133,4380_1733 -4380_78156,285,4380_111787,Wilton Terrace,3623-00009-1,1,4380_7778208_1030134,4380_1729 -4380_78156,286,4380_111788,Wilton Terrace,3641-00010-1,1,4380_7778208_1030134,4380_1729 -4380_78156,288,4380_111789,Wilton Terrace,3667-00011-1,1,4380_7778208_1030134,4380_1729 -4380_77955,289,4380_11179,Enfield,9256-00014-1,0,4380_7778208_1150105,4380_238 -4380_78156,287,4380_111790,Wilton Terrace,3677-00012-1,1,4380_7778208_1030134,4380_1729 -4380_78156,289,4380_111791,Wilton Terrace,3605-00014-1,1,4380_7778208_1030134,4380_1729 -4380_78156,290,4380_111792,Wilton Terrace,52852-00015-1,1,4380_7778208_1030134,4380_1729 -4380_78156,291,4380_111793,Wilton Terrace,3805-00013-1,1,4380_7778208_1030135,4380_1732 -4380_78156,292,4380_111794,Wilton Terrace,52849-00016-1,1,4380_7778208_1030134,4380_1729 -4380_78156,293,4380_111795,Wilton Terrace,52853-00017-1,1,4380_7778208_1030134,4380_1729 -4380_78156,294,4380_111796,Wilton Terrace,52851-00018-1,1,4380_7778208_1030134,4380_1729 -4380_78156,295,4380_111797,Wilton Terrace,52850-00019-1,1,4380_7778208_1030134,4380_1729 -4380_78156,296,4380_111798,Wilton Terrace,52909-00021-1,1,4380_7778208_1030135,4380_1732 -4380_77955,290,4380_11180,Enfield,57833-00015-1,0,4380_7778208_1150105,4380_238 -4380_78156,285,4380_111805,Wilton Terrace,3735-00009-1,1,4380_7778208_1030135,4380_1733 -4380_78156,286,4380_111806,Wilton Terrace,3755-00010-1,1,4380_7778208_1030135,4380_1733 -4380_78156,288,4380_111807,Wilton Terrace,3775-00011-1,1,4380_7778208_1030135,4380_1733 -4380_78156,287,4380_111808,Wilton Terrace,3795-00012-1,1,4380_7778208_1030135,4380_1733 -4380_78156,289,4380_111809,Wilton Terrace,3715-00014-1,1,4380_7778208_1030135,4380_1733 -4380_77955,291,4380_11181,Enfield,57785-00013-1,0,4380_7778208_1150104,4380_244 -4380_78156,290,4380_111810,Wilton Terrace,52911-00015-1,1,4380_7778208_1030135,4380_1733 -4380_78156,291,4380_111811,Wilton Terrace,3905-00013-1,1,4380_7778208_1030136,4380_1732 -4380_78156,292,4380_111812,Wilton Terrace,52912-00016-1,1,4380_7778208_1030135,4380_1733 -4380_78156,293,4380_111813,Wilton Terrace,52914-00017-1,1,4380_7778208_1030135,4380_1733 -4380_78156,294,4380_111814,Wilton Terrace,52913-00018-1,1,4380_7778208_1030135,4380_1733 -4380_78156,295,4380_111815,Wilton Terrace,52910-00019-1,1,4380_7778208_1030135,4380_1733 -4380_78156,296,4380_111816,Wilton Terrace,52969-00021-1,1,4380_7778208_1030136,4380_1732 -4380_77955,292,4380_11182,Enfield,57832-00016-1,0,4380_7778208_1150105,4380_238 -4380_78156,285,4380_111824,Wilton Terrace,2735-00009-1,1,4380_7778208_1030126,4380_1735 -4380_78156,286,4380_111825,Wilton Terrace,2759-00010-1,1,4380_7778208_1030126,4380_1735 -4380_78156,297,4380_111826,Wilton Terrace,2817-00008-1,1,4380_7778208_1030126,4380_1732 -4380_78156,288,4380_111827,Wilton Terrace,2783-00011-1,1,4380_7778208_1030126,4380_1735 -4380_78156,287,4380_111828,Wilton Terrace,2807-00012-1,1,4380_7778208_1030126,4380_1735 -4380_78156,289,4380_111829,Wilton Terrace,2711-00014-1,1,4380_7778208_1030126,4380_1735 -4380_77955,293,4380_11183,Enfield,57835-00017-1,0,4380_7778208_1150105,4380_238 -4380_78156,290,4380_111830,Wilton Terrace,52396-00015-1,1,4380_7778208_1030126,4380_1735 -4380_78156,291,4380_111831,Wilton Terrace,3147-00013-1,1,4380_7778208_1030129,4380_1733 -4380_78156,292,4380_111832,Wilton Terrace,52398-00016-1,1,4380_7778208_1030126,4380_1735 -4380_78156,293,4380_111833,Wilton Terrace,52399-00017-1,1,4380_7778208_1030126,4380_1735 -4380_78156,294,4380_111834,Wilton Terrace,52400-00018-1,1,4380_7778208_1030126,4380_1735 -4380_78156,295,4380_111835,Wilton Terrace,52397-00019-1,1,4380_7778208_1030126,4380_1735 -4380_78156,296,4380_111836,Wilton Terrace,52559-00021-1,1,4380_7778208_1030129,4380_1733 -4380_77955,294,4380_11184,Enfield,57834-00018-1,0,4380_7778208_1150105,4380_238 -4380_78156,285,4380_111843,Wilton Terrace,3843-00009-1,1,4380_7778208_1030136,4380_1729 -4380_78156,286,4380_111844,Wilton Terrace,3851-00010-1,1,4380_7778208_1030136,4380_1729 -4380_78156,288,4380_111845,Wilton Terrace,3879-00011-1,1,4380_7778208_1030136,4380_1729 -4380_78156,287,4380_111846,Wilton Terrace,3887-00012-1,1,4380_7778208_1030136,4380_1729 -4380_78156,289,4380_111847,Wilton Terrace,3825-00014-1,1,4380_7778208_1030136,4380_1729 -4380_78156,290,4380_111848,Wilton Terrace,52970-00015-1,1,4380_7778208_1030136,4380_1729 -4380_78156,291,4380_111849,Wilton Terrace,3695-00013-1,1,4380_7778208_1030134,4380_1732 -4380_77955,295,4380_11185,Enfield,57831-00019-1,0,4380_7778208_1150105,4380_238 -4380_78156,292,4380_111850,Wilton Terrace,52973-00016-1,1,4380_7778208_1030136,4380_1729 -4380_78156,293,4380_111851,Wilton Terrace,52974-00017-1,1,4380_7778208_1030136,4380_1729 -4380_78156,294,4380_111852,Wilton Terrace,52971-00018-1,1,4380_7778208_1030136,4380_1729 -4380_78156,295,4380_111853,Wilton Terrace,52972-00019-1,1,4380_7778208_1030136,4380_1729 -4380_78156,296,4380_111854,Wilton Terrace,52854-00021-1,1,4380_7778208_1030134,4380_1732 -4380_77955,296,4380_11186,Enfield,57786-00021-1,0,4380_7778208_1150104,4380_244 -4380_78156,285,4380_111861,Wilton Terrace,2859-00009-1,1,4380_7778208_1030127,4380_1729 -4380_78156,286,4380_111862,Wilton Terrace,2879-00010-1,1,4380_7778208_1030127,4380_1729 -4380_78156,288,4380_111863,Wilton Terrace,2889-00011-1,1,4380_7778208_1030127,4380_1729 -4380_78156,287,4380_111864,Wilton Terrace,2919-00012-1,1,4380_7778208_1030127,4380_1729 -4380_78156,289,4380_111865,Wilton Terrace,2839-00014-1,1,4380_7778208_1030127,4380_1729 -4380_78156,290,4380_111866,Wilton Terrace,52456-00015-1,1,4380_7778208_1030127,4380_1729 -4380_78156,291,4380_111867,Wilton Terrace,3935-00013-1,1,4380_7778208_1030137,4380_1732 -4380_78156,292,4380_111868,Wilton Terrace,52460-00016-1,1,4380_7778208_1030127,4380_1729 -4380_78156,293,4380_111869,Wilton Terrace,52458-00017-1,1,4380_7778208_1030127,4380_1729 -4380_78156,294,4380_111870,Wilton Terrace,52459-00018-1,1,4380_7778208_1030127,4380_1729 -4380_78156,295,4380_111871,Wilton Terrace,52457-00019-1,1,4380_7778208_1030127,4380_1729 -4380_78156,296,4380_111872,Wilton Terrace,53019-00021-1,1,4380_7778208_1030137,4380_1732 -4380_78156,285,4380_111880,Wilton Terrace,2959-00009-1,1,4380_7778208_1030128,4380_1735 -4380_78156,286,4380_111881,Wilton Terrace,2979-00010-1,1,4380_7778208_1030128,4380_1735 -4380_78156,297,4380_111882,Wilton Terrace,2927-00008-1,1,4380_7778208_1030127,4380_1732 -4380_78156,288,4380_111883,Wilton Terrace,3009-00011-1,1,4380_7778208_1030128,4380_1735 -4380_78156,287,4380_111884,Wilton Terrace,3019-00012-1,1,4380_7778208_1030128,4380_1735 -4380_78156,289,4380_111885,Wilton Terrace,2949-00014-1,1,4380_7778208_1030128,4380_1735 -4380_78156,290,4380_111886,Wilton Terrace,52508-00015-1,1,4380_7778208_1030128,4380_1735 -4380_78156,291,4380_111887,Wilton Terrace,3267-00013-1,1,4380_7778208_1030130,4380_1737 -4380_78156,292,4380_111888,Wilton Terrace,52510-00016-1,1,4380_7778208_1030128,4380_1735 -4380_78156,293,4380_111889,Wilton Terrace,52507-00017-1,1,4380_7778208_1030128,4380_1735 -4380_78156,294,4380_111890,Wilton Terrace,52509-00018-1,1,4380_7778208_1030128,4380_1735 -4380_78156,295,4380_111891,Wilton Terrace,52506-00019-1,1,4380_7778208_1030128,4380_1735 -4380_78156,296,4380_111892,Wilton Terrace,52621-00021-1,1,4380_7778208_1030130,4380_1737 -4380_78156,285,4380_111899,Wilton Terrace,3077-00009-1,1,4380_7778208_1030129,4380_1733 -4380_78156,286,4380_111900,Wilton Terrace,3087-00010-1,1,4380_7778208_1030129,4380_1733 -4380_78156,288,4380_111901,Wilton Terrace,3117-00011-1,1,4380_7778208_1030129,4380_1733 -4380_78156,287,4380_111902,Wilton Terrace,3137-00012-1,1,4380_7778208_1030129,4380_1733 -4380_78156,289,4380_111903,Wilton Terrace,3047-00014-1,1,4380_7778208_1030129,4380_1733 -4380_78156,290,4380_111904,Wilton Terrace,52560-00015-1,1,4380_7778208_1030129,4380_1733 -4380_78156,291,4380_111905,Wilton Terrace,3377-00013-1,1,4380_7778208_1030131,4380_1735 -4380_78156,292,4380_111906,Wilton Terrace,52562-00016-1,1,4380_7778208_1030129,4380_1733 -4380_78156,293,4380_111907,Wilton Terrace,52563-00017-1,1,4380_7778208_1030129,4380_1733 -4380_78156,294,4380_111908,Wilton Terrace,52564-00018-1,1,4380_7778208_1030129,4380_1733 -4380_78156,295,4380_111909,Wilton Terrace,52561-00019-1,1,4380_7778208_1030129,4380_1733 -4380_78156,296,4380_111910,Wilton Terrace,52681-00021-1,1,4380_7778208_1030131,4380_1735 -4380_78156,297,4380_111912,Wilton Terrace,2677-00008-1,1,4380_7778208_1030124,4380_1729 -4380_78156,285,4380_111919,Wilton Terrace,3197-00009-1,1,4380_7778208_1030130,4380_1733 -4380_78156,286,4380_111920,Wilton Terrace,3207-00010-1,1,4380_7778208_1030130,4380_1733 -4380_78156,288,4380_111921,Wilton Terrace,3227-00011-1,1,4380_7778208_1030130,4380_1733 -4380_78156,287,4380_111922,Wilton Terrace,3247-00012-1,1,4380_7778208_1030130,4380_1733 -4380_78156,289,4380_111923,Wilton Terrace,3167-00014-1,1,4380_7778208_1030130,4380_1733 -4380_78156,290,4380_111924,Wilton Terrace,52622-00015-1,1,4380_7778208_1030130,4380_1733 -4380_78156,291,4380_111925,Wilton Terrace,3963-00013-1,1,4380_7778208_1030138,4380_1735 -4380_78156,292,4380_111926,Wilton Terrace,52625-00016-1,1,4380_7778208_1030130,4380_1733 -4380_78156,293,4380_111927,Wilton Terrace,52626-00017-1,1,4380_7778208_1030130,4380_1733 -4380_78156,294,4380_111928,Wilton Terrace,52623-00018-1,1,4380_7778208_1030130,4380_1733 -4380_78156,295,4380_111929,Wilton Terrace,52624-00019-1,1,4380_7778208_1030130,4380_1733 -4380_78156,296,4380_111930,Wilton Terrace,53037-00021-1,1,4380_7778208_1030138,4380_1735 -4380_78156,285,4380_111938,Wilton Terrace,3297-00009-1,1,4380_7778208_1030131,4380_1735 -4380_78156,286,4380_111939,Wilton Terrace,3317-00010-1,1,4380_7778208_1030131,4380_1735 -4380_77955,285,4380_11194,Mullingar,9377-00009-1,0,4380_7778208_1150106,4380_239 -4380_78156,297,4380_111940,Wilton Terrace,3037-00008-1,1,4380_7778208_1030128,4380_1732 -4380_78156,288,4380_111941,Wilton Terrace,3337-00011-1,1,4380_7778208_1030131,4380_1735 -4380_78156,287,4380_111942,Wilton Terrace,3367-00012-1,1,4380_7778208_1030131,4380_1735 -4380_78156,289,4380_111943,Wilton Terrace,3277-00014-1,1,4380_7778208_1030131,4380_1735 -4380_78156,290,4380_111944,Wilton Terrace,52685-00015-1,1,4380_7778208_1030131,4380_1735 -4380_78156,291,4380_111945,Wilton Terrace,3487-00013-1,1,4380_7778208_1030132,4380_1737 -4380_78156,292,4380_111946,Wilton Terrace,52684-00016-1,1,4380_7778208_1030131,4380_1735 -4380_78156,293,4380_111947,Wilton Terrace,52682-00017-1,1,4380_7778208_1030131,4380_1735 -4380_78156,294,4380_111948,Wilton Terrace,52686-00018-1,1,4380_7778208_1030131,4380_1735 -4380_78156,295,4380_111949,Wilton Terrace,52683-00019-1,1,4380_7778208_1030131,4380_1735 -4380_77955,286,4380_11195,Mullingar,9395-00010-1,0,4380_7778208_1150106,4380_239 -4380_78156,296,4380_111950,Wilton Terrace,52741-00021-1,1,4380_7778208_1030132,4380_1737 -4380_78156,285,4380_111957,Wilton Terrace,3417-00009-1,1,4380_7778208_1030132,4380_1733 -4380_78156,286,4380_111958,Wilton Terrace,3437-00010-1,1,4380_7778208_1030132,4380_1733 -4380_78156,288,4380_111959,Wilton Terrace,3457-00011-1,1,4380_7778208_1030132,4380_1733 -4380_77955,297,4380_11196,Mullingar,57890-00008-1,0,4380_7778208_1150106,4380_245 -4380_78156,287,4380_111960,Wilton Terrace,3467-00012-1,1,4380_7778208_1030132,4380_1733 -4380_78156,289,4380_111961,Wilton Terrace,3397-00014-1,1,4380_7778208_1030132,4380_1733 -4380_78156,290,4380_111962,Wilton Terrace,52744-00015-1,1,4380_7778208_1030132,4380_1733 -4380_78156,291,4380_111963,Wilton Terrace,3597-00013-1,1,4380_7778208_1030133,4380_1735 -4380_78156,292,4380_111964,Wilton Terrace,52743-00016-1,1,4380_7778208_1030132,4380_1733 -4380_78156,293,4380_111965,Wilton Terrace,52746-00017-1,1,4380_7778208_1030132,4380_1733 -4380_78156,294,4380_111966,Wilton Terrace,52742-00018-1,1,4380_7778208_1030132,4380_1733 -4380_78156,295,4380_111967,Wilton Terrace,52745-00019-1,1,4380_7778208_1030132,4380_1733 -4380_78156,296,4380_111968,Wilton Terrace,52801-00021-1,1,4380_7778208_1030133,4380_1735 -4380_77955,288,4380_11197,Mullingar,9401-00011-1,0,4380_7778208_1150106,4380_239 -4380_78156,297,4380_111970,Wilton Terrace,2665-00008-1,1,4380_7778208_1030123,4380_1732 -4380_78156,285,4380_111977,Wilton Terrace,3527-00009-1,1,4380_7778208_1030133,4380_1733 -4380_78156,286,4380_111978,Wilton Terrace,3547-00010-1,1,4380_7778208_1030133,4380_1733 -4380_78156,288,4380_111979,Wilton Terrace,3567-00011-1,1,4380_7778208_1030133,4380_1733 -4380_77955,287,4380_11198,Mullingar,9419-00012-1,0,4380_7778208_1150106,4380_239 -4380_78156,287,4380_111980,Wilton Terrace,3577-00012-1,1,4380_7778208_1030133,4380_1733 -4380_78156,289,4380_111981,Wilton Terrace,3507-00014-1,1,4380_7778208_1030133,4380_1733 -4380_78156,290,4380_111982,Wilton Terrace,52805-00015-1,1,4380_7778208_1030133,4380_1733 -4380_78156,291,4380_111983,Wilton Terrace,3807-00013-1,1,4380_7778208_1030135,4380_1735 -4380_78156,292,4380_111984,Wilton Terrace,52803-00016-1,1,4380_7778208_1030133,4380_1733 -4380_78156,293,4380_111985,Wilton Terrace,52804-00017-1,1,4380_7778208_1030133,4380_1733 -4380_78156,294,4380_111986,Wilton Terrace,52802-00018-1,1,4380_7778208_1030133,4380_1733 -4380_78156,295,4380_111987,Wilton Terrace,52806-00019-1,1,4380_7778208_1030133,4380_1733 -4380_78156,296,4380_111988,Wilton Terrace,52921-00021-1,1,4380_7778208_1030135,4380_1735 -4380_77955,289,4380_11199,Mullingar,9371-00014-1,0,4380_7778208_1150106,4380_239 -4380_78156,285,4380_111996,Wilton Terrace,3625-00009-1,1,4380_7778208_1030134,4380_1735 -4380_78156,286,4380_111997,Wilton Terrace,3643-00010-1,1,4380_7778208_1030134,4380_1735 -4380_78156,297,4380_111998,Wilton Terrace,3157-00008-1,1,4380_7778208_1030129,4380_1737 -4380_78156,288,4380_111999,Wilton Terrace,3669-00011-1,1,4380_7778208_1030134,4380_1735 -4380_77946,285,4380_112,Dundalk,50317-00009-1,0,4380_7778208_1000913,4380_1 -4380_77955,290,4380_11200,Mullingar,57895-00015-1,0,4380_7778208_1150106,4380_239 -4380_78156,287,4380_112000,Wilton Terrace,3679-00012-1,1,4380_7778208_1030134,4380_1735 -4380_78156,289,4380_112001,Wilton Terrace,3607-00014-1,1,4380_7778208_1030134,4380_1735 -4380_78156,290,4380_112002,Wilton Terrace,52862-00015-1,1,4380_7778208_1030134,4380_1735 -4380_78156,291,4380_112003,Wilton Terrace,3984-00013-1,1,4380_7778208_1030139,4380_1738 -4380_78156,292,4380_112004,Wilton Terrace,52865-00016-1,1,4380_7778208_1030134,4380_1735 -4380_78156,293,4380_112005,Wilton Terrace,52861-00017-1,1,4380_7778208_1030134,4380_1735 -4380_78156,294,4380_112006,Wilton Terrace,52864-00018-1,1,4380_7778208_1030134,4380_1735 -4380_78156,295,4380_112007,Wilton Terrace,52863-00019-1,1,4380_7778208_1030134,4380_1735 -4380_78156,296,4380_112008,Wilton Terrace,53053-00021-1,1,4380_7778208_1030139,4380_1738 -4380_77955,291,4380_11201,Mullingar,57995-00013-1,0,4380_7778208_1150108,4380_246 -4380_78156,285,4380_112015,Wilton Terrace,3737-00009-1,1,4380_7778208_1030135,4380_1733 -4380_78156,286,4380_112016,Wilton Terrace,3757-00010-1,1,4380_7778208_1030135,4380_1733 -4380_78156,288,4380_112017,Wilton Terrace,3777-00011-1,1,4380_7778208_1030135,4380_1733 -4380_78156,287,4380_112018,Wilton Terrace,3797-00012-1,1,4380_7778208_1030135,4380_1733 -4380_78156,289,4380_112019,Wilton Terrace,3717-00014-1,1,4380_7778208_1030135,4380_1733 -4380_77955,292,4380_11202,Mullingar,57891-00016-1,0,4380_7778208_1150106,4380_239 -4380_78156,290,4380_112020,Wilton Terrace,52923-00015-1,1,4380_7778208_1030135,4380_1733 -4380_78156,291,4380_112021,Wilton Terrace,3907-00013-1,1,4380_7778208_1030136,4380_1735 -4380_78156,292,4380_112022,Wilton Terrace,52922-00016-1,1,4380_7778208_1030135,4380_1733 -4380_78156,293,4380_112023,Wilton Terrace,52924-00017-1,1,4380_7778208_1030135,4380_1733 -4380_78156,294,4380_112024,Wilton Terrace,52925-00018-1,1,4380_7778208_1030135,4380_1733 -4380_78156,295,4380_112025,Wilton Terrace,52926-00019-1,1,4380_7778208_1030135,4380_1733 -4380_78156,296,4380_112026,Wilton Terrace,52981-00021-1,1,4380_7778208_1030136,4380_1735 -4380_78156,297,4380_112028,Wilton Terrace,2819-00008-1,1,4380_7778208_1030126,4380_1732 -4380_77955,293,4380_11203,Mullingar,57893-00017-1,0,4380_7778208_1150106,4380_239 -4380_78156,285,4380_112035,Wilton Terrace,2737-00009-1,1,4380_7778208_1030126,4380_1733 -4380_78156,286,4380_112036,Wilton Terrace,2761-00010-1,1,4380_7778208_1030126,4380_1733 -4380_78156,288,4380_112037,Wilton Terrace,2785-00011-1,1,4380_7778208_1030126,4380_1733 -4380_78156,287,4380_112038,Wilton Terrace,2809-00012-1,1,4380_7778208_1030126,4380_1733 -4380_78156,289,4380_112039,Wilton Terrace,2713-00014-1,1,4380_7778208_1030126,4380_1733 -4380_77955,294,4380_11204,Mullingar,57892-00018-1,0,4380_7778208_1150106,4380_239 -4380_78156,290,4380_112040,Wilton Terrace,52409-00015-1,1,4380_7778208_1030126,4380_1733 -4380_78156,291,4380_112041,Wilton Terrace,3149-00013-1,1,4380_7778208_1030129,4380_1735 -4380_78156,292,4380_112042,Wilton Terrace,52408-00016-1,1,4380_7778208_1030126,4380_1733 -4380_78156,293,4380_112043,Wilton Terrace,52407-00017-1,1,4380_7778208_1030126,4380_1733 -4380_78156,294,4380_112044,Wilton Terrace,52406-00018-1,1,4380_7778208_1030126,4380_1733 -4380_78156,295,4380_112045,Wilton Terrace,52410-00019-1,1,4380_7778208_1030126,4380_1733 -4380_78156,296,4380_112046,Wilton Terrace,52571-00021-1,1,4380_7778208_1030129,4380_1735 -4380_77955,295,4380_11205,Mullingar,57894-00019-1,0,4380_7778208_1150106,4380_239 -4380_78156,285,4380_112054,Wilton Terrace,3845-00009-1,1,4380_7778208_1030136,4380_1735 -4380_78156,286,4380_112055,Wilton Terrace,3853-00010-1,1,4380_7778208_1030136,4380_1735 -4380_78156,297,4380_112056,Wilton Terrace,2689-00008-1,1,4380_7778208_1030125,4380_1737 -4380_78156,288,4380_112057,Wilton Terrace,3881-00011-1,1,4380_7778208_1030136,4380_1735 -4380_78156,287,4380_112058,Wilton Terrace,3889-00012-1,1,4380_7778208_1030136,4380_1735 -4380_78156,289,4380_112059,Wilton Terrace,3827-00014-1,1,4380_7778208_1030136,4380_1735 -4380_77955,296,4380_11206,Mullingar,57996-00021-1,0,4380_7778208_1150108,4380_246 -4380_78156,290,4380_112060,Wilton Terrace,52985-00015-1,1,4380_7778208_1030136,4380_1735 -4380_78156,291,4380_112061,Wilton Terrace,3697-00013-1,1,4380_7778208_1030134,4380_1738 -4380_78156,292,4380_112062,Wilton Terrace,52982-00016-1,1,4380_7778208_1030136,4380_1735 -4380_78156,293,4380_112063,Wilton Terrace,52986-00017-1,1,4380_7778208_1030136,4380_1735 -4380_78156,294,4380_112064,Wilton Terrace,52984-00018-1,1,4380_7778208_1030136,4380_1735 -4380_78156,295,4380_112065,Wilton Terrace,52983-00019-1,1,4380_7778208_1030136,4380_1735 -4380_78156,296,4380_112066,Wilton Terrace,52866-00021-1,1,4380_7778208_1030134,4380_1738 -4380_78156,285,4380_112073,Wilton Terrace,2861-00009-1,1,4380_7778208_1030127,4380_1733 -4380_78156,286,4380_112074,Wilton Terrace,2881-00010-1,1,4380_7778208_1030127,4380_1733 -4380_78156,288,4380_112075,Wilton Terrace,2891-00011-1,1,4380_7778208_1030127,4380_1733 -4380_78156,287,4380_112076,Wilton Terrace,2921-00012-1,1,4380_7778208_1030127,4380_1733 -4380_78156,289,4380_112077,Wilton Terrace,2841-00014-1,1,4380_7778208_1030127,4380_1733 -4380_78156,290,4380_112078,Wilton Terrace,52470-00015-1,1,4380_7778208_1030127,4380_1733 -4380_78156,291,4380_112079,Wilton Terrace,3937-00013-1,1,4380_7778208_1030137,4380_1735 -4380_78156,292,4380_112080,Wilton Terrace,52467-00016-1,1,4380_7778208_1030127,4380_1733 -4380_78156,293,4380_112081,Wilton Terrace,52469-00017-1,1,4380_7778208_1030127,4380_1733 -4380_78156,294,4380_112082,Wilton Terrace,52466-00018-1,1,4380_7778208_1030127,4380_1733 -4380_78156,295,4380_112083,Wilton Terrace,52468-00019-1,1,4380_7778208_1030127,4380_1733 -4380_78156,296,4380_112084,Wilton Terrace,53021-00021-1,1,4380_7778208_1030137,4380_1735 -4380_78156,297,4380_112086,Wilton Terrace,2929-00008-1,1,4380_7778208_1030127,4380_1729 -4380_78156,285,4380_112093,Wilton Terrace,2961-00009-1,1,4380_7778208_1030128,4380_1733 -4380_78156,286,4380_112094,Wilton Terrace,2981-00010-1,1,4380_7778208_1030128,4380_1733 -4380_78156,288,4380_112095,Wilton Terrace,3011-00011-1,1,4380_7778208_1030128,4380_1733 -4380_78156,287,4380_112096,Wilton Terrace,3021-00012-1,1,4380_7778208_1030128,4380_1733 -4380_78156,289,4380_112097,Wilton Terrace,2951-00014-1,1,4380_7778208_1030128,4380_1733 -4380_78156,290,4380_112098,Wilton Terrace,52519-00015-1,1,4380_7778208_1030128,4380_1733 -4380_78156,291,4380_112099,Wilton Terrace,3269-00013-1,1,4380_7778208_1030130,4380_1735 -4380_78156,292,4380_112100,Wilton Terrace,52518-00016-1,1,4380_7778208_1030128,4380_1733 -4380_78156,293,4380_112101,Wilton Terrace,52516-00017-1,1,4380_7778208_1030128,4380_1733 -4380_78156,294,4380_112102,Wilton Terrace,52517-00018-1,1,4380_7778208_1030128,4380_1733 -4380_78156,295,4380_112103,Wilton Terrace,52520-00019-1,1,4380_7778208_1030128,4380_1733 -4380_78156,296,4380_112104,Wilton Terrace,52633-00021-1,1,4380_7778208_1030130,4380_1735 -4380_78156,285,4380_112112,Wilton Terrace,3079-00009-1,1,4380_7778208_1030129,4380_1735 -4380_78156,286,4380_112113,Wilton Terrace,3089-00010-1,1,4380_7778208_1030129,4380_1735 -4380_78156,297,4380_112114,Wilton Terrace,2679-00008-1,1,4380_7778208_1030124,4380_1732 -4380_78156,288,4380_112115,Wilton Terrace,3119-00011-1,1,4380_7778208_1030129,4380_1735 -4380_78156,287,4380_112116,Wilton Terrace,3139-00012-1,1,4380_7778208_1030129,4380_1735 -4380_78156,289,4380_112117,Wilton Terrace,3049-00014-1,1,4380_7778208_1030129,4380_1735 -4380_78156,290,4380_112118,Wilton Terrace,52575-00015-1,1,4380_7778208_1030129,4380_1735 -4380_78156,291,4380_112119,Wilton Terrace,3379-00013-1,1,4380_7778208_1030131,4380_1737 -4380_78156,292,4380_112120,Wilton Terrace,52573-00016-1,1,4380_7778208_1030129,4380_1735 -4380_78156,293,4380_112121,Wilton Terrace,52574-00017-1,1,4380_7778208_1030129,4380_1735 -4380_78156,294,4380_112122,Wilton Terrace,52572-00018-1,1,4380_7778208_1030129,4380_1735 -4380_78156,295,4380_112123,Wilton Terrace,52576-00019-1,1,4380_7778208_1030129,4380_1735 -4380_78156,296,4380_112124,Wilton Terrace,52693-00021-1,1,4380_7778208_1030131,4380_1737 -4380_77955,285,4380_11213,Enfield,57793-00009-1,0,4380_7778208_1150104,4380_238 -4380_78156,285,4380_112131,Wilton Terrace,3199-00009-1,1,4380_7778208_1030130,4380_1733 -4380_78156,286,4380_112132,Wilton Terrace,3209-00010-1,1,4380_7778208_1030130,4380_1733 -4380_78156,288,4380_112133,Wilton Terrace,3229-00011-1,1,4380_7778208_1030130,4380_1733 -4380_78156,287,4380_112134,Wilton Terrace,3249-00012-1,1,4380_7778208_1030130,4380_1733 -4380_78156,289,4380_112135,Wilton Terrace,3169-00014-1,1,4380_7778208_1030130,4380_1733 -4380_78156,290,4380_112136,Wilton Terrace,52635-00015-1,1,4380_7778208_1030130,4380_1733 -4380_78156,291,4380_112137,Wilton Terrace,3965-00013-1,1,4380_7778208_1030138,4380_1735 -4380_78156,292,4380_112138,Wilton Terrace,52637-00016-1,1,4380_7778208_1030130,4380_1733 -4380_78156,293,4380_112139,Wilton Terrace,52634-00017-1,1,4380_7778208_1030130,4380_1733 -4380_77955,286,4380_11214,Enfield,57789-00010-1,0,4380_7778208_1150104,4380_238 -4380_78156,294,4380_112140,Wilton Terrace,52638-00018-1,1,4380_7778208_1030130,4380_1733 -4380_78156,295,4380_112141,Wilton Terrace,52636-00019-1,1,4380_7778208_1030130,4380_1733 -4380_78156,296,4380_112142,Wilton Terrace,53039-00021-1,1,4380_7778208_1030138,4380_1735 -4380_78156,297,4380_112144,Wilton Terrace,3039-00008-1,1,4380_7778208_1030128,4380_1732 -4380_77955,288,4380_11215,Enfield,57791-00011-1,0,4380_7778208_1150104,4380_238 -4380_78156,285,4380_112151,Wilton Terrace,3299-00009-1,1,4380_7778208_1030131,4380_1733 -4380_78156,286,4380_112152,Wilton Terrace,3319-00010-1,1,4380_7778208_1030131,4380_1733 -4380_78156,288,4380_112153,Wilton Terrace,3339-00011-1,1,4380_7778208_1030131,4380_1733 -4380_78156,287,4380_112154,Wilton Terrace,3369-00012-1,1,4380_7778208_1030131,4380_1733 -4380_78156,289,4380_112155,Wilton Terrace,3279-00014-1,1,4380_7778208_1030131,4380_1733 -4380_78156,290,4380_112156,Wilton Terrace,52695-00015-1,1,4380_7778208_1030131,4380_1733 -4380_78156,291,4380_112157,Wilton Terrace,3489-00013-1,1,4380_7778208_1030132,4380_1735 -4380_78156,292,4380_112158,Wilton Terrace,52694-00016-1,1,4380_7778208_1030131,4380_1733 -4380_78156,293,4380_112159,Wilton Terrace,52697-00017-1,1,4380_7778208_1030131,4380_1733 -4380_77955,287,4380_11216,Enfield,57795-00012-1,0,4380_7778208_1150104,4380_238 -4380_78156,294,4380_112160,Wilton Terrace,52698-00018-1,1,4380_7778208_1030131,4380_1733 -4380_78156,295,4380_112161,Wilton Terrace,52696-00019-1,1,4380_7778208_1030131,4380_1733 -4380_78156,296,4380_112162,Wilton Terrace,52753-00021-1,1,4380_7778208_1030132,4380_1735 -4380_77955,289,4380_11217,Enfield,57787-00014-1,0,4380_7778208_1150104,4380_238 -4380_78156,285,4380_112170,Wilton Terrace,3419-00009-1,1,4380_7778208_1030132,4380_1729 -4380_78156,286,4380_112171,Wilton Terrace,3439-00010-1,1,4380_7778208_1030132,4380_1729 -4380_78156,297,4380_112172,Wilton Terrace,2667-00008-1,1,4380_7778208_1030123,4380_1735 -4380_78156,288,4380_112173,Wilton Terrace,3459-00011-1,1,4380_7778208_1030132,4380_1729 -4380_78156,287,4380_112174,Wilton Terrace,3469-00012-1,1,4380_7778208_1030132,4380_1729 -4380_78156,289,4380_112175,Wilton Terrace,3399-00014-1,1,4380_7778208_1030132,4380_1729 -4380_78156,290,4380_112176,Wilton Terrace,52757-00015-1,1,4380_7778208_1030132,4380_1729 -4380_78156,291,4380_112177,Wilton Terrace,3599-00013-1,1,4380_7778208_1030133,4380_1737 -4380_78156,292,4380_112178,Wilton Terrace,52756-00016-1,1,4380_7778208_1030132,4380_1729 -4380_78156,293,4380_112179,Wilton Terrace,52755-00017-1,1,4380_7778208_1030132,4380_1729 -4380_77955,290,4380_11218,Enfield,57794-00015-1,0,4380_7778208_1150104,4380_238 -4380_78156,294,4380_112180,Wilton Terrace,52758-00018-1,1,4380_7778208_1030132,4380_1729 -4380_78156,295,4380_112181,Wilton Terrace,52754-00019-1,1,4380_7778208_1030132,4380_1729 -4380_78156,296,4380_112182,Wilton Terrace,52813-00021-1,1,4380_7778208_1030133,4380_1737 -4380_78156,285,4380_112189,Wilton Terrace,3529-00009-1,1,4380_7778208_1030133,4380_1729 -4380_77955,291,4380_11219,Enfield,9565-00013-1,0,4380_7778208_1150109,4380_244 -4380_78156,286,4380_112190,Wilton Terrace,3549-00010-1,1,4380_7778208_1030133,4380_1729 -4380_78156,288,4380_112191,Wilton Terrace,3569-00011-1,1,4380_7778208_1030133,4380_1729 -4380_78156,287,4380_112192,Wilton Terrace,3579-00012-1,1,4380_7778208_1030133,4380_1729 -4380_78156,289,4380_112193,Wilton Terrace,3509-00014-1,1,4380_7778208_1030133,4380_1729 -4380_78156,290,4380_112194,Wilton Terrace,52814-00015-1,1,4380_7778208_1030133,4380_1729 -4380_78156,291,4380_112195,Wilton Terrace,3809-00013-1,1,4380_7778208_1030135,4380_1733 -4380_78156,292,4380_112196,Wilton Terrace,52816-00016-1,1,4380_7778208_1030133,4380_1729 -4380_78156,293,4380_112197,Wilton Terrace,52815-00017-1,1,4380_7778208_1030133,4380_1729 -4380_78156,294,4380_112198,Wilton Terrace,52817-00018-1,1,4380_7778208_1030133,4380_1729 -4380_78156,295,4380_112199,Wilton Terrace,52818-00019-1,1,4380_7778208_1030133,4380_1729 -4380_77955,292,4380_11220,Enfield,57790-00016-1,0,4380_7778208_1150104,4380_238 -4380_78156,296,4380_112200,Wilton Terrace,52933-00021-1,1,4380_7778208_1030135,4380_1733 -4380_78156,297,4380_112202,Wilton Terrace,3159-00008-1,1,4380_7778208_1030129,4380_1732 -4380_78156,285,4380_112209,Wilton Terrace,3627-00009-1,1,4380_7778208_1030134,4380_1733 -4380_77955,293,4380_11221,Enfield,57792-00017-1,0,4380_7778208_1150104,4380_238 -4380_78156,286,4380_112210,Wilton Terrace,3645-00010-1,1,4380_7778208_1030134,4380_1733 -4380_78156,288,4380_112211,Wilton Terrace,3671-00011-1,1,4380_7778208_1030134,4380_1733 -4380_78156,287,4380_112212,Wilton Terrace,3681-00012-1,1,4380_7778208_1030134,4380_1733 -4380_78156,289,4380_112213,Wilton Terrace,3609-00014-1,1,4380_7778208_1030134,4380_1733 -4380_78156,290,4380_112214,Wilton Terrace,52874-00015-1,1,4380_7778208_1030134,4380_1733 -4380_78156,291,4380_112215,Wilton Terrace,3986-00013-1,1,4380_7778208_1030139,4380_1735 -4380_78156,292,4380_112216,Wilton Terrace,52876-00016-1,1,4380_7778208_1030134,4380_1733 -4380_78156,293,4380_112217,Wilton Terrace,52877-00017-1,1,4380_7778208_1030134,4380_1733 -4380_78156,294,4380_112218,Wilton Terrace,52875-00018-1,1,4380_7778208_1030134,4380_1733 -4380_78156,295,4380_112219,Wilton Terrace,52873-00019-1,1,4380_7778208_1030134,4380_1733 -4380_77955,294,4380_11222,Enfield,57796-00018-1,0,4380_7778208_1150104,4380_238 -4380_78156,296,4380_112220,Wilton Terrace,53055-00021-1,1,4380_7778208_1030139,4380_1735 -4380_78156,285,4380_112228,Wilton Terrace,3739-00009-1,1,4380_7778208_1030135,4380_1735 -4380_78156,286,4380_112229,Wilton Terrace,3759-00010-1,1,4380_7778208_1030135,4380_1735 -4380_77955,295,4380_11223,Enfield,57788-00019-1,0,4380_7778208_1150104,4380_238 -4380_78156,297,4380_112230,Wilton Terrace,2821-00008-1,1,4380_7778208_1030126,4380_1737 -4380_78156,288,4380_112231,Wilton Terrace,3779-00011-1,1,4380_7778208_1030135,4380_1735 -4380_78156,287,4380_112232,Wilton Terrace,3799-00012-1,1,4380_7778208_1030135,4380_1735 -4380_78156,289,4380_112233,Wilton Terrace,3719-00014-1,1,4380_7778208_1030135,4380_1735 -4380_78156,290,4380_112234,Wilton Terrace,52938-00015-1,1,4380_7778208_1030135,4380_1735 -4380_78156,291,4380_112235,Wilton Terrace,3909-00013-1,1,4380_7778208_1030136,4380_1738 -4380_78156,292,4380_112236,Wilton Terrace,52934-00016-1,1,4380_7778208_1030135,4380_1735 -4380_78156,293,4380_112237,Wilton Terrace,52937-00017-1,1,4380_7778208_1030135,4380_1735 -4380_78156,294,4380_112238,Wilton Terrace,52936-00018-1,1,4380_7778208_1030135,4380_1735 -4380_78156,295,4380_112239,Wilton Terrace,52935-00019-1,1,4380_7778208_1030135,4380_1735 -4380_77955,296,4380_11224,Enfield,58034-00021-1,0,4380_7778208_1150109,4380_244 -4380_78156,296,4380_112240,Wilton Terrace,52993-00021-1,1,4380_7778208_1030136,4380_1738 -4380_78156,285,4380_112247,Wilton Terrace,2739-00009-1,1,4380_7778208_1030126,4380_1733 -4380_78156,286,4380_112248,Wilton Terrace,2763-00010-1,1,4380_7778208_1030126,4380_1733 -4380_78156,288,4380_112249,Wilton Terrace,2787-00011-1,1,4380_7778208_1030126,4380_1733 -4380_78156,287,4380_112250,Wilton Terrace,2811-00012-1,1,4380_7778208_1030126,4380_1733 -4380_78156,289,4380_112251,Wilton Terrace,2715-00014-1,1,4380_7778208_1030126,4380_1733 -4380_78156,290,4380_112252,Wilton Terrace,52418-00015-1,1,4380_7778208_1030126,4380_1733 -4380_78156,291,4380_112253,Wilton Terrace,3151-00013-1,1,4380_7778208_1030129,4380_1735 -4380_78156,292,4380_112254,Wilton Terrace,52417-00016-1,1,4380_7778208_1030126,4380_1733 -4380_78156,293,4380_112255,Wilton Terrace,52420-00017-1,1,4380_7778208_1030126,4380_1733 -4380_78156,294,4380_112256,Wilton Terrace,52416-00018-1,1,4380_7778208_1030126,4380_1733 -4380_78156,295,4380_112257,Wilton Terrace,52419-00019-1,1,4380_7778208_1030126,4380_1733 -4380_78156,296,4380_112258,Wilton Terrace,52583-00021-1,1,4380_7778208_1030129,4380_1735 -4380_78156,297,4380_112260,Wilton Terrace,2691-00008-1,1,4380_7778208_1030125,4380_1732 -4380_78156,285,4380_112267,Wilton Terrace,3847-00009-1,1,4380_7778208_1030136,4380_1733 -4380_78156,286,4380_112268,Wilton Terrace,3855-00010-1,1,4380_7778208_1030136,4380_1733 -4380_78156,288,4380_112269,Wilton Terrace,3883-00011-1,1,4380_7778208_1030136,4380_1733 -4380_78156,287,4380_112270,Wilton Terrace,3891-00012-1,1,4380_7778208_1030136,4380_1733 -4380_78156,289,4380_112271,Wilton Terrace,3829-00014-1,1,4380_7778208_1030136,4380_1733 -4380_78156,290,4380_112272,Wilton Terrace,52995-00015-1,1,4380_7778208_1030136,4380_1733 -4380_78156,291,4380_112273,Wilton Terrace,3699-00013-1,1,4380_7778208_1030134,4380_1735 -4380_78156,292,4380_112274,Wilton Terrace,52994-00016-1,1,4380_7778208_1030136,4380_1733 -4380_78156,293,4380_112275,Wilton Terrace,52998-00017-1,1,4380_7778208_1030136,4380_1733 -4380_78156,294,4380_112276,Wilton Terrace,52996-00018-1,1,4380_7778208_1030136,4380_1733 -4380_78156,295,4380_112277,Wilton Terrace,52997-00019-1,1,4380_7778208_1030136,4380_1733 -4380_78156,296,4380_112278,Wilton Terrace,52878-00021-1,1,4380_7778208_1030134,4380_1735 -4380_78156,285,4380_112286,Wilton Terrace,2863-00009-1,1,4380_7778208_1030127,4380_1735 -4380_78156,286,4380_112287,Wilton Terrace,2883-00010-1,1,4380_7778208_1030127,4380_1735 -4380_78156,297,4380_112288,Wilton Terrace,2931-00008-1,1,4380_7778208_1030127,4380_1737 -4380_78156,288,4380_112289,Wilton Terrace,2893-00011-1,1,4380_7778208_1030127,4380_1735 -4380_78156,287,4380_112290,Wilton Terrace,2923-00012-1,1,4380_7778208_1030127,4380_1735 -4380_78156,289,4380_112291,Wilton Terrace,2843-00014-1,1,4380_7778208_1030127,4380_1735 -4380_78156,290,4380_112292,Wilton Terrace,52476-00015-1,1,4380_7778208_1030127,4380_1735 -4380_78156,291,4380_112293,Wilton Terrace,3939-00013-1,1,4380_7778208_1030137,4380_1738 -4380_78156,292,4380_112294,Wilton Terrace,52480-00016-1,1,4380_7778208_1030127,4380_1735 -4380_78156,293,4380_112295,Wilton Terrace,52477-00017-1,1,4380_7778208_1030127,4380_1735 -4380_78156,294,4380_112296,Wilton Terrace,52479-00018-1,1,4380_7778208_1030127,4380_1735 -4380_78156,295,4380_112297,Wilton Terrace,52478-00019-1,1,4380_7778208_1030127,4380_1735 -4380_78156,296,4380_112298,Wilton Terrace,53028-00021-1,1,4380_7778208_1030137,4380_1738 -4380_78113,285,4380_1123,Dublin via Airport,50176-00009-1,1,4380_7778208_1000908,4380_18 -4380_78156,285,4380_112305,Wilton Terrace,2963-00009-1,1,4380_7778208_1030128,4380_1733 -4380_78156,286,4380_112306,Wilton Terrace,2983-00010-1,1,4380_7778208_1030128,4380_1733 -4380_78156,288,4380_112307,Wilton Terrace,3013-00011-1,1,4380_7778208_1030128,4380_1733 -4380_78156,287,4380_112308,Wilton Terrace,3023-00012-1,1,4380_7778208_1030128,4380_1733 -4380_78156,289,4380_112309,Wilton Terrace,2953-00014-1,1,4380_7778208_1030128,4380_1733 -4380_78156,290,4380_112310,Wilton Terrace,52529-00015-1,1,4380_7778208_1030128,4380_1733 -4380_78156,291,4380_112311,Wilton Terrace,3271-00013-1,1,4380_7778208_1030130,4380_1735 -4380_78156,292,4380_112312,Wilton Terrace,52526-00016-1,1,4380_7778208_1030128,4380_1733 -4380_78156,293,4380_112313,Wilton Terrace,52527-00017-1,1,4380_7778208_1030128,4380_1733 -4380_78156,294,4380_112314,Wilton Terrace,52530-00018-1,1,4380_7778208_1030128,4380_1733 -4380_78156,295,4380_112315,Wilton Terrace,52528-00019-1,1,4380_7778208_1030128,4380_1733 -4380_78156,296,4380_112316,Wilton Terrace,52645-00021-1,1,4380_7778208_1030130,4380_1735 -4380_78156,297,4380_112318,Wilton Terrace,2681-00008-1,1,4380_7778208_1030124,4380_1732 -4380_77955,285,4380_11232,Mullingar,9583-00009-1,0,4380_7778208_1150110,4380_239 -4380_78156,285,4380_112324,Wilton Terrace,3081-00009-1,1,4380_7778208_1030129,4380_1732 -4380_78156,286,4380_112325,Wilton Terrace,3091-00010-1,1,4380_7778208_1030129,4380_1732 -4380_78156,288,4380_112326,Wilton Terrace,3121-00011-1,1,4380_7778208_1030129,4380_1732 -4380_78156,287,4380_112327,Wilton Terrace,3141-00012-1,1,4380_7778208_1030129,4380_1732 -4380_78156,289,4380_112328,Wilton Terrace,3051-00014-1,1,4380_7778208_1030129,4380_1732 -4380_78156,290,4380_112329,Wilton Terrace,52586-00015-1,1,4380_7778208_1030129,4380_1732 -4380_77955,286,4380_11233,Mullingar,9593-00010-1,0,4380_7778208_1150110,4380_239 -4380_78156,292,4380_112330,Wilton Terrace,52587-00016-1,1,4380_7778208_1030129,4380_1732 -4380_78156,293,4380_112331,Wilton Terrace,52588-00017-1,1,4380_7778208_1030129,4380_1732 -4380_78156,294,4380_112332,Wilton Terrace,52584-00018-1,1,4380_7778208_1030129,4380_1732 -4380_78156,295,4380_112333,Wilton Terrace,52585-00019-1,1,4380_7778208_1030129,4380_1732 -4380_78156,291,4380_112335,Wilton Terrace,3381-00013-1,1,4380_7778208_1030131,4380_1732 -4380_78156,296,4380_112336,Wilton Terrace,52705-00021-1,1,4380_7778208_1030131,4380_1732 -4380_77955,297,4380_11234,Enfield,57608-00008-1,0,4380_7778208_1150101,4380_238 -4380_78156,285,4380_112343,Wilton Terrace,3201-00009-1,1,4380_7778208_1030130,4380_1729 -4380_78156,286,4380_112344,Wilton Terrace,3211-00010-1,1,4380_7778208_1030130,4380_1729 -4380_78156,297,4380_112345,Wilton Terrace,3041-00008-1,1,4380_7778208_1030128,4380_1732 -4380_78156,288,4380_112346,Wilton Terrace,3231-00011-1,1,4380_7778208_1030130,4380_1729 -4380_78156,287,4380_112347,Wilton Terrace,3251-00012-1,1,4380_7778208_1030130,4380_1729 -4380_78156,289,4380_112348,Wilton Terrace,3171-00014-1,1,4380_7778208_1030130,4380_1729 -4380_78156,290,4380_112349,Wilton Terrace,52648-00015-1,1,4380_7778208_1030130,4380_1729 -4380_77955,288,4380_11235,Mullingar,9603-00011-1,0,4380_7778208_1150110,4380_239 -4380_78156,292,4380_112350,Wilton Terrace,52650-00016-1,1,4380_7778208_1030130,4380_1729 -4380_78156,293,4380_112351,Wilton Terrace,52649-00017-1,1,4380_7778208_1030130,4380_1729 -4380_78156,294,4380_112352,Wilton Terrace,52647-00018-1,1,4380_7778208_1030130,4380_1729 -4380_78156,295,4380_112353,Wilton Terrace,52646-00019-1,1,4380_7778208_1030130,4380_1729 -4380_78156,291,4380_112355,Wilton Terrace,3967-00013-1,1,4380_7778208_1030138,4380_1732 -4380_78156,296,4380_112356,Wilton Terrace,53046-00021-1,1,4380_7778208_1030138,4380_1732 -4380_77955,287,4380_11236,Mullingar,9613-00012-1,0,4380_7778208_1150110,4380_239 -4380_78156,285,4380_112362,Wilton Terrace,3301-00009-1,1,4380_7778208_1030131,4380_1729 -4380_78156,286,4380_112363,Wilton Terrace,3321-00010-1,1,4380_7778208_1030131,4380_1729 -4380_78156,288,4380_112364,Wilton Terrace,3341-00011-1,1,4380_7778208_1030131,4380_1729 -4380_78156,287,4380_112365,Wilton Terrace,3371-00012-1,1,4380_7778208_1030131,4380_1729 -4380_78156,289,4380_112366,Wilton Terrace,3281-00014-1,1,4380_7778208_1030131,4380_1729 -4380_78156,290,4380_112367,Wilton Terrace,52708-00015-1,1,4380_7778208_1030131,4380_1729 -4380_78156,292,4380_112368,Wilton Terrace,52709-00016-1,1,4380_7778208_1030131,4380_1729 -4380_78156,293,4380_112369,Wilton Terrace,52706-00017-1,1,4380_7778208_1030131,4380_1729 -4380_77955,289,4380_11237,Mullingar,9578-00014-1,0,4380_7778208_1150110,4380_239 -4380_78156,294,4380_112370,Wilton Terrace,52707-00018-1,1,4380_7778208_1030131,4380_1729 -4380_78156,295,4380_112371,Wilton Terrace,52710-00019-1,1,4380_7778208_1030131,4380_1729 -4380_78156,291,4380_112373,Wilton Terrace,3491-00013-1,1,4380_7778208_1030132,4380_1732 -4380_78156,296,4380_112374,Wilton Terrace,52765-00021-1,1,4380_7778208_1030132,4380_1732 -4380_78156,297,4380_112376,Wilton Terrace,2669-00008-1,1,4380_7778208_1030123,4380_1729 -4380_77955,290,4380_11238,Mullingar,58075-00015-1,0,4380_7778208_1150110,4380_239 -4380_78156,285,4380_112382,Wilton Terrace,3421-00009-1,1,4380_7778208_1030132,4380_1729 -4380_78156,286,4380_112383,Wilton Terrace,3441-00010-1,1,4380_7778208_1030132,4380_1729 -4380_78156,288,4380_112384,Wilton Terrace,3461-00011-1,1,4380_7778208_1030132,4380_1729 -4380_78156,287,4380_112385,Wilton Terrace,3471-00012-1,1,4380_7778208_1030132,4380_1729 -4380_78156,289,4380_112386,Wilton Terrace,3401-00014-1,1,4380_7778208_1030132,4380_1729 -4380_78156,290,4380_112387,Wilton Terrace,52766-00015-1,1,4380_7778208_1030132,4380_1729 -4380_78156,292,4380_112388,Wilton Terrace,52770-00016-1,1,4380_7778208_1030132,4380_1729 -4380_78156,293,4380_112389,Wilton Terrace,52767-00017-1,1,4380_7778208_1030132,4380_1729 -4380_77955,291,4380_11239,Mullingar,9215-00013-1,0,4380_7778208_1150103,4380_245 -4380_78156,294,4380_112390,Wilton Terrace,52769-00018-1,1,4380_7778208_1030132,4380_1729 -4380_78156,295,4380_112391,Wilton Terrace,52768-00019-1,1,4380_7778208_1030132,4380_1729 -4380_78156,291,4380_112393,Wilton Terrace,3601-00013-1,1,4380_7778208_1030133,4380_1732 -4380_78156,296,4380_112394,Wilton Terrace,52825-00021-1,1,4380_7778208_1030133,4380_1732 -4380_78113,286,4380_1124,Dublin via Airport,50172-00010-1,1,4380_7778208_1000908,4380_18 -4380_77955,292,4380_11240,Mullingar,58072-00016-1,0,4380_7778208_1150110,4380_239 -4380_78156,285,4380_112401,Wilton Terrace,3531-00009-1,1,4380_7778208_1030133,4380_1729 -4380_78156,286,4380_112402,Wilton Terrace,3551-00010-1,1,4380_7778208_1030133,4380_1729 -4380_78156,297,4380_112403,Wilton Terrace,3161-00008-1,1,4380_7778208_1030129,4380_1732 -4380_78156,288,4380_112404,Wilton Terrace,3571-00011-1,1,4380_7778208_1030133,4380_1729 -4380_78156,287,4380_112405,Wilton Terrace,3581-00012-1,1,4380_7778208_1030133,4380_1729 -4380_78156,289,4380_112406,Wilton Terrace,3511-00014-1,1,4380_7778208_1030133,4380_1729 -4380_78156,290,4380_112407,Wilton Terrace,52830-00015-1,1,4380_7778208_1030133,4380_1729 -4380_78156,292,4380_112408,Wilton Terrace,52827-00016-1,1,4380_7778208_1030133,4380_1729 -4380_78156,293,4380_112409,Wilton Terrace,52826-00017-1,1,4380_7778208_1030133,4380_1729 -4380_77955,293,4380_11241,Mullingar,58074-00017-1,0,4380_7778208_1150110,4380_239 -4380_78156,294,4380_112410,Wilton Terrace,52829-00018-1,1,4380_7778208_1030133,4380_1729 -4380_78156,295,4380_112411,Wilton Terrace,52828-00019-1,1,4380_7778208_1030133,4380_1729 -4380_78156,291,4380_112413,Wilton Terrace,3811-00013-1,1,4380_7778208_1030135,4380_1729 -4380_78156,296,4380_112414,Wilton Terrace,52945-00021-1,1,4380_7778208_1030135,4380_1729 -4380_77955,294,4380_11242,Mullingar,58071-00018-1,0,4380_7778208_1150110,4380_239 -4380_78156,285,4380_112420,Wilton Terrace,3629-00009-1,1,4380_7778208_1030134,4380_1729 -4380_78156,286,4380_112421,Wilton Terrace,3647-00010-1,1,4380_7778208_1030134,4380_1729 -4380_78156,288,4380_112422,Wilton Terrace,3673-00011-1,1,4380_7778208_1030134,4380_1729 -4380_78156,287,4380_112423,Wilton Terrace,3683-00012-1,1,4380_7778208_1030134,4380_1729 -4380_78156,289,4380_112424,Wilton Terrace,3611-00014-1,1,4380_7778208_1030134,4380_1729 -4380_78156,290,4380_112425,Wilton Terrace,52885-00015-1,1,4380_7778208_1030134,4380_1729 -4380_78156,292,4380_112426,Wilton Terrace,52889-00016-1,1,4380_7778208_1030134,4380_1729 -4380_78156,293,4380_112427,Wilton Terrace,52886-00017-1,1,4380_7778208_1030134,4380_1729 -4380_78156,294,4380_112428,Wilton Terrace,52887-00018-1,1,4380_7778208_1030134,4380_1729 -4380_78156,295,4380_112429,Wilton Terrace,52888-00019-1,1,4380_7778208_1030134,4380_1729 -4380_77955,295,4380_11243,Mullingar,58073-00019-1,0,4380_7778208_1150110,4380_239 -4380_78156,291,4380_112431,Wilton Terrace,3988-00013-1,1,4380_7778208_1030139,4380_1729 -4380_78156,296,4380_112432,Wilton Terrace,53062-00021-1,1,4380_7778208_1030139,4380_1729 -4380_78156,297,4380_112434,Wilton Terrace,2823-00008-1,1,4380_7778208_1030126,4380_1729 -4380_77955,296,4380_11244,Mullingar,57748-00021-1,0,4380_7778208_1150103,4380_245 -4380_78156,285,4380_112440,Wilton Terrace,3741-00009-1,1,4380_7778208_1030135,4380_1729 -4380_78156,286,4380_112441,Wilton Terrace,3761-00010-1,1,4380_7778208_1030135,4380_1729 -4380_78156,288,4380_112442,Wilton Terrace,3781-00011-1,1,4380_7778208_1030135,4380_1729 -4380_78156,287,4380_112443,Wilton Terrace,3801-00012-1,1,4380_7778208_1030135,4380_1729 -4380_78156,289,4380_112444,Wilton Terrace,3721-00014-1,1,4380_7778208_1030135,4380_1729 -4380_78156,290,4380_112445,Wilton Terrace,52950-00015-1,1,4380_7778208_1030135,4380_1729 -4380_78156,292,4380_112446,Wilton Terrace,52948-00016-1,1,4380_7778208_1030135,4380_1729 -4380_78156,293,4380_112447,Wilton Terrace,52946-00017-1,1,4380_7778208_1030135,4380_1729 -4380_78156,294,4380_112448,Wilton Terrace,52949-00018-1,1,4380_7778208_1030135,4380_1729 -4380_78156,295,4380_112449,Wilton Terrace,52947-00019-1,1,4380_7778208_1030135,4380_1729 -4380_78156,291,4380_112451,Wilton Terrace,3911-00013-1,1,4380_7778208_1030136,4380_1729 -4380_78156,296,4380_112452,Wilton Terrace,53005-00021-1,1,4380_7778208_1030136,4380_1729 -4380_78156,285,4380_112459,Wilton Terrace,2741-00009-1,1,4380_7778208_1030126,4380_1729 -4380_78156,286,4380_112460,Wilton Terrace,2765-00010-1,1,4380_7778208_1030126,4380_1729 -4380_78156,297,4380_112461,Wilton Terrace,2693-00008-1,1,4380_7778208_1030125,4380_1732 -4380_78156,288,4380_112462,Wilton Terrace,2789-00011-1,1,4380_7778208_1030126,4380_1729 -4380_78156,287,4380_112463,Wilton Terrace,2813-00012-1,1,4380_7778208_1030126,4380_1729 -4380_78156,289,4380_112464,Wilton Terrace,2717-00014-1,1,4380_7778208_1030126,4380_1729 -4380_78156,290,4380_112465,Wilton Terrace,52430-00015-1,1,4380_7778208_1030126,4380_1729 -4380_78156,292,4380_112466,Wilton Terrace,52427-00016-1,1,4380_7778208_1030126,4380_1729 -4380_78156,293,4380_112467,Wilton Terrace,52426-00017-1,1,4380_7778208_1030126,4380_1729 -4380_78156,294,4380_112468,Wilton Terrace,52429-00018-1,1,4380_7778208_1030126,4380_1729 -4380_78156,295,4380_112469,Wilton Terrace,52428-00019-1,1,4380_7778208_1030126,4380_1729 -4380_78156,291,4380_112471,Wilton Terrace,3153-00013-1,1,4380_7778208_1030129,4380_1729 -4380_78156,296,4380_112472,Wilton Terrace,52595-00021-1,1,4380_7778208_1030129,4380_1729 -4380_78156,285,4380_112480,Wilton Terrace,3849-00009-1,1,4380_7778208_1030136,4380_1735 -4380_78156,286,4380_112481,Wilton Terrace,3857-00010-1,1,4380_7778208_1030136,4380_1735 -4380_78156,297,4380_112482,Wilton Terrace,2933-00008-1,1,4380_7778208_1030127,4380_1732 -4380_78156,288,4380_112483,Wilton Terrace,3885-00011-1,1,4380_7778208_1030136,4380_1735 -4380_78156,287,4380_112484,Wilton Terrace,3893-00012-1,1,4380_7778208_1030136,4380_1735 -4380_78156,289,4380_112485,Wilton Terrace,3831-00014-1,1,4380_7778208_1030136,4380_1735 -4380_78156,290,4380_112486,Wilton Terrace,53006-00015-1,1,4380_7778208_1030136,4380_1735 -4380_78156,291,4380_112487,Wilton Terrace,3701-00013-1,1,4380_7778208_1030134,4380_1733 -4380_78156,292,4380_112488,Wilton Terrace,53010-00016-1,1,4380_7778208_1030136,4380_1735 -4380_78156,293,4380_112489,Wilton Terrace,53009-00017-1,1,4380_7778208_1030136,4380_1735 -4380_78156,294,4380_112490,Wilton Terrace,53008-00018-1,1,4380_7778208_1030136,4380_1735 -4380_78156,295,4380_112491,Wilton Terrace,53007-00019-1,1,4380_7778208_1030136,4380_1735 -4380_78156,296,4380_112492,Wilton Terrace,52890-00021-1,1,4380_7778208_1030134,4380_1733 -4380_78113,297,4380_1125,Dublin via Airport,50081-00008-1,1,4380_7778208_1000907,4380_18 -4380_78156,285,4380_112500,Wilton Terrace,2865-00009-1,1,4380_7778208_1030127,4380_1729 -4380_78156,286,4380_112501,Wilton Terrace,2885-00010-1,1,4380_7778208_1030127,4380_1729 -4380_78156,297,4380_112502,Wilton Terrace,2683-00008-1,1,4380_7778208_1030124,4380_1732 -4380_78156,288,4380_112503,Wilton Terrace,2895-00011-1,1,4380_7778208_1030127,4380_1729 -4380_78156,287,4380_112504,Wilton Terrace,2925-00012-1,1,4380_7778208_1030127,4380_1729 -4380_78156,289,4380_112505,Wilton Terrace,2845-00014-1,1,4380_7778208_1030127,4380_1729 -4380_78156,290,4380_112506,Wilton Terrace,52490-00015-1,1,4380_7778208_1030127,4380_1729 -4380_78156,291,4380_112507,Wilton Terrace,3941-00013-1,1,4380_7778208_1030137,4380_1733 -4380_78156,292,4380_112508,Wilton Terrace,52489-00016-1,1,4380_7778208_1030127,4380_1729 -4380_78156,293,4380_112509,Wilton Terrace,52487-00017-1,1,4380_7778208_1030127,4380_1729 -4380_77955,285,4380_11251,Enfield,57674-00009-1,0,4380_7778208_1150102,4380_238 -4380_78156,294,4380_112510,Wilton Terrace,52488-00018-1,1,4380_7778208_1030127,4380_1729 -4380_78156,295,4380_112511,Wilton Terrace,52486-00019-1,1,4380_7778208_1030127,4380_1729 -4380_78156,296,4380_112512,Wilton Terrace,53030-00021-1,1,4380_7778208_1030137,4380_1733 -4380_77955,286,4380_11252,Enfield,57678-00010-1,0,4380_7778208_1150102,4380_238 -4380_78156,285,4380_112520,Wilton Terrace,3083-00009-1,1,4380_7778208_1030129,4380_1729 -4380_78156,286,4380_112521,Wilton Terrace,3093-00010-1,1,4380_7778208_1030129,4380_1729 -4380_78156,297,4380_112522,Wilton Terrace,3043-00008-1,1,4380_7778208_1030128,4380_1732 -4380_78156,288,4380_112523,Wilton Terrace,3123-00011-1,1,4380_7778208_1030129,4380_1729 -4380_78156,287,4380_112524,Wilton Terrace,3143-00012-1,1,4380_7778208_1030129,4380_1729 -4380_78156,289,4380_112525,Wilton Terrace,3053-00014-1,1,4380_7778208_1030129,4380_1729 -4380_78156,290,4380_112526,Wilton Terrace,52600-00015-1,1,4380_7778208_1030129,4380_1729 -4380_78156,291,4380_112527,Wilton Terrace,3383-00013-1,1,4380_7778208_1030131,4380_1733 -4380_78156,292,4380_112528,Wilton Terrace,52596-00016-1,1,4380_7778208_1030129,4380_1729 -4380_78156,293,4380_112529,Wilton Terrace,52598-00017-1,1,4380_7778208_1030129,4380_1729 -4380_77955,288,4380_11253,Enfield,57681-00011-1,0,4380_7778208_1150102,4380_238 -4380_78156,294,4380_112530,Wilton Terrace,52597-00018-1,1,4380_7778208_1030129,4380_1729 -4380_78156,295,4380_112531,Wilton Terrace,52599-00019-1,1,4380_7778208_1030129,4380_1729 -4380_78156,296,4380_112532,Wilton Terrace,52717-00021-1,1,4380_7778208_1030131,4380_1733 -4380_77955,287,4380_11254,Enfield,57683-00012-1,0,4380_7778208_1150102,4380_238 -4380_78156,285,4380_112540,Wilton Terrace,2965-00009-1,1,4380_7778208_1030128,4380_1729 -4380_78156,286,4380_112541,Wilton Terrace,2985-00010-1,1,4380_7778208_1030128,4380_1729 -4380_78156,297,4380_112542,Wilton Terrace,2671-00008-1,1,4380_7778208_1030123,4380_1732 -4380_78156,288,4380_112543,Wilton Terrace,3015-00011-1,1,4380_7778208_1030128,4380_1729 -4380_78156,287,4380_112544,Wilton Terrace,3025-00012-1,1,4380_7778208_1030128,4380_1729 -4380_78156,289,4380_112545,Wilton Terrace,2955-00014-1,1,4380_7778208_1030128,4380_1729 -4380_78156,290,4380_112546,Wilton Terrace,52536-00015-1,1,4380_7778208_1030128,4380_1729 -4380_78156,291,4380_112547,Wilton Terrace,3273-00013-1,1,4380_7778208_1030130,4380_1733 -4380_78156,292,4380_112548,Wilton Terrace,52540-00016-1,1,4380_7778208_1030128,4380_1729 -4380_78156,293,4380_112549,Wilton Terrace,52539-00017-1,1,4380_7778208_1030128,4380_1729 -4380_77955,289,4380_11255,Enfield,57676-00014-1,0,4380_7778208_1150102,4380_238 -4380_78156,294,4380_112550,Wilton Terrace,52538-00018-1,1,4380_7778208_1030128,4380_1729 -4380_78156,295,4380_112551,Wilton Terrace,52537-00019-1,1,4380_7778208_1030128,4380_1729 -4380_78156,296,4380_112552,Wilton Terrace,52657-00021-1,1,4380_7778208_1030130,4380_1733 -4380_77955,290,4380_11256,Enfield,57675-00015-1,0,4380_7778208_1150102,4380_238 -4380_78156,285,4380_112560,Wilton Terrace,3303-00009-1,1,4380_7778208_1030131,4380_1735 -4380_78156,286,4380_112561,Wilton Terrace,3323-00010-1,1,4380_7778208_1030131,4380_1735 -4380_78156,297,4380_112562,Wilton Terrace,3163-00008-1,1,4380_7778208_1030129,4380_1732 -4380_78156,288,4380_112563,Wilton Terrace,3343-00011-1,1,4380_7778208_1030131,4380_1735 -4380_78156,287,4380_112564,Wilton Terrace,3373-00012-1,1,4380_7778208_1030131,4380_1735 -4380_78156,289,4380_112565,Wilton Terrace,3283-00014-1,1,4380_7778208_1030131,4380_1735 -4380_78156,290,4380_112566,Wilton Terrace,52718-00015-1,1,4380_7778208_1030131,4380_1735 -4380_78156,291,4380_112567,Wilton Terrace,3493-00013-1,1,4380_7778208_1030132,4380_1733 -4380_78156,292,4380_112568,Wilton Terrace,52722-00016-1,1,4380_7778208_1030131,4380_1735 -4380_78156,293,4380_112569,Wilton Terrace,52719-00017-1,1,4380_7778208_1030131,4380_1735 -4380_77955,291,4380_11257,Enfield,9137-00013-1,0,4380_7778208_1150102,4380_244 -4380_78156,294,4380_112570,Wilton Terrace,52721-00018-1,1,4380_7778208_1030131,4380_1735 -4380_78156,295,4380_112571,Wilton Terrace,52720-00019-1,1,4380_7778208_1030131,4380_1735 -4380_78156,296,4380_112572,Wilton Terrace,52772-00021-1,1,4380_7778208_1030132,4380_1733 -4380_77955,292,4380_11258,Enfield,57679-00016-1,0,4380_7778208_1150102,4380_238 -4380_78156,285,4380_112580,Wilton Terrace,3533-00009-1,1,4380_7778208_1030133,4380_1735 -4380_78156,286,4380_112581,Wilton Terrace,3553-00010-1,1,4380_7778208_1030133,4380_1735 -4380_78156,297,4380_112582,Wilton Terrace,2825-00008-1,1,4380_7778208_1030126,4380_1732 -4380_78156,288,4380_112583,Wilton Terrace,3573-00011-1,1,4380_7778208_1030133,4380_1735 -4380_78156,287,4380_112584,Wilton Terrace,3583-00012-1,1,4380_7778208_1030133,4380_1735 -4380_78156,289,4380_112585,Wilton Terrace,3513-00014-1,1,4380_7778208_1030133,4380_1735 -4380_78156,290,4380_112586,Wilton Terrace,52839-00015-1,1,4380_7778208_1030133,4380_1735 -4380_78156,291,4380_112587,Wilton Terrace,3813-00013-1,1,4380_7778208_1030135,4380_1733 -4380_78156,292,4380_112588,Wilton Terrace,52837-00016-1,1,4380_7778208_1030133,4380_1735 -4380_78156,293,4380_112589,Wilton Terrace,52838-00017-1,1,4380_7778208_1030133,4380_1735 -4380_77955,293,4380_11259,Enfield,57682-00017-1,0,4380_7778208_1150102,4380_238 -4380_78156,294,4380_112590,Wilton Terrace,52840-00018-1,1,4380_7778208_1030133,4380_1735 -4380_78156,295,4380_112591,Wilton Terrace,52841-00019-1,1,4380_7778208_1030133,4380_1735 -4380_78156,296,4380_112592,Wilton Terrace,52952-00021-1,1,4380_7778208_1030135,4380_1733 -4380_78156,291,4380_112594,Wilton Terrace,3603-00013-1,1,4380_7778208_1030133,4380_1729 -4380_78156,296,4380_112595,Wilton Terrace,52842-00021-1,1,4380_7778208_1030133,4380_1729 -4380_78113,287,4380_1126,Dublin via Airport,50180-00012-1,1,4380_7778208_1000908,4380_18 -4380_77955,294,4380_11260,Enfield,57684-00018-1,0,4380_7778208_1150102,4380_238 -4380_78156,285,4380_112602,Wilton Terrace,3631-00009-1,1,4380_7778208_1030134,4380_1729 -4380_78156,286,4380_112603,Wilton Terrace,3649-00010-1,1,4380_7778208_1030134,4380_1729 -4380_78156,297,4380_112604,Wilton Terrace,2695-00008-1,1,4380_7778208_1030125,4380_1732 -4380_78156,288,4380_112605,Wilton Terrace,3675-00011-1,1,4380_7778208_1030134,4380_1729 -4380_78156,287,4380_112606,Wilton Terrace,3685-00012-1,1,4380_7778208_1030134,4380_1729 -4380_78156,289,4380_112607,Wilton Terrace,3613-00014-1,1,4380_7778208_1030134,4380_1729 -4380_78156,290,4380_112608,Wilton Terrace,52897-00015-1,1,4380_7778208_1030134,4380_1729 -4380_78156,292,4380_112609,Wilton Terrace,52900-00016-1,1,4380_7778208_1030134,4380_1729 -4380_77955,295,4380_11261,Enfield,57677-00019-1,0,4380_7778208_1150102,4380_238 -4380_78156,293,4380_112610,Wilton Terrace,52901-00017-1,1,4380_7778208_1030134,4380_1729 -4380_78156,294,4380_112611,Wilton Terrace,52898-00018-1,1,4380_7778208_1030134,4380_1729 -4380_78156,295,4380_112612,Wilton Terrace,52899-00019-1,1,4380_7778208_1030134,4380_1729 -4380_78156,285,4380_112619,Dublin,3203-00009-1,1,4380_7778208_1030130,4380_1731 -4380_77955,296,4380_11262,Enfield,57680-00021-1,0,4380_7778208_1150102,4380_244 -4380_78156,286,4380_112620,Dublin,3213-00010-1,1,4380_7778208_1030130,4380_1731 -4380_78156,288,4380_112621,Dublin,3233-00011-1,1,4380_7778208_1030130,4380_1731 -4380_78156,287,4380_112622,Dublin,3253-00012-1,1,4380_7778208_1030130,4380_1731 -4380_78156,289,4380_112623,Dublin,3173-00014-1,1,4380_7778208_1030130,4380_1731 -4380_78156,290,4380_112624,Dublin,52658-00015-1,1,4380_7778208_1030130,4380_1731 -4380_78156,291,4380_112625,Dublin,3990-00013-1,1,4380_7778208_1030139,4380_1734 -4380_78156,292,4380_112626,Dublin,52662-00016-1,1,4380_7778208_1030130,4380_1731 -4380_78156,293,4380_112627,Dublin,52660-00017-1,1,4380_7778208_1030130,4380_1731 -4380_78156,294,4380_112628,Dublin,52661-00018-1,1,4380_7778208_1030130,4380_1731 -4380_78156,295,4380_112629,Dublin,52659-00019-1,1,4380_7778208_1030130,4380_1731 -4380_78156,296,4380_112630,Dublin,53064-00021-1,1,4380_7778208_1030139,4380_1734 -4380_78156,285,4380_112638,Wilton Terrace,2743-00009-1,1,4380_7778208_1030126,4380_1729 -4380_78156,286,4380_112639,Wilton Terrace,2767-00010-1,1,4380_7778208_1030126,4380_1729 -4380_78156,297,4380_112640,Wilton Terrace,2935-00008-1,1,4380_7778208_1030127,4380_1732 -4380_78156,288,4380_112641,Wilton Terrace,2791-00011-1,1,4380_7778208_1030126,4380_1729 -4380_78156,287,4380_112642,Wilton Terrace,2815-00012-1,1,4380_7778208_1030126,4380_1729 -4380_78156,289,4380_112643,Wilton Terrace,2719-00014-1,1,4380_7778208_1030126,4380_1729 -4380_78156,290,4380_112644,Wilton Terrace,52439-00015-1,1,4380_7778208_1030126,4380_1729 -4380_78156,291,4380_112645,Wilton Terrace,3155-00013-1,1,4380_7778208_1030129,4380_1733 -4380_78156,292,4380_112646,Wilton Terrace,52436-00016-1,1,4380_7778208_1030126,4380_1729 -4380_78156,293,4380_112647,Wilton Terrace,52438-00017-1,1,4380_7778208_1030126,4380_1729 -4380_78156,294,4380_112648,Wilton Terrace,52437-00018-1,1,4380_7778208_1030126,4380_1729 -4380_78156,295,4380_112649,Wilton Terrace,52440-00019-1,1,4380_7778208_1030126,4380_1729 -4380_78156,296,4380_112650,Wilton Terrace,52602-00021-1,1,4380_7778208_1030129,4380_1733 -4380_78156,285,4380_112658,Wilton Terrace,3423-00009-1,1,4380_7778208_1030132,4380_1729 -4380_78156,286,4380_112659,Wilton Terrace,3443-00010-1,1,4380_7778208_1030132,4380_1729 -4380_78156,297,4380_112660,Wilton Terrace,2685-00008-1,1,4380_7778208_1030124,4380_1732 -4380_78156,288,4380_112661,Wilton Terrace,3463-00011-1,1,4380_7778208_1030132,4380_1729 -4380_78156,287,4380_112662,Wilton Terrace,3473-00012-1,1,4380_7778208_1030132,4380_1729 -4380_78156,289,4380_112663,Wilton Terrace,3403-00014-1,1,4380_7778208_1030132,4380_1729 -4380_78156,290,4380_112664,Wilton Terrace,52782-00015-1,1,4380_7778208_1030132,4380_1729 -4380_78156,291,4380_112665,Wilton Terrace,3703-00013-1,1,4380_7778208_1030134,4380_1733 -4380_78156,292,4380_112666,Wilton Terrace,52780-00016-1,1,4380_7778208_1030132,4380_1729 -4380_78156,293,4380_112667,Wilton Terrace,52778-00017-1,1,4380_7778208_1030132,4380_1729 -4380_78156,294,4380_112668,Wilton Terrace,52781-00018-1,1,4380_7778208_1030132,4380_1729 -4380_78156,295,4380_112669,Wilton Terrace,52779-00019-1,1,4380_7778208_1030132,4380_1729 -4380_78156,296,4380_112670,Wilton Terrace,52902-00021-1,1,4380_7778208_1030134,4380_1733 -4380_78156,285,4380_112677,Dublin,3743-00009-1,1,4380_7778208_1030135,4380_1731 -4380_78156,286,4380_112678,Dublin,3763-00010-1,1,4380_7778208_1030135,4380_1731 -4380_78156,288,4380_112679,Dublin,3783-00011-1,1,4380_7778208_1030135,4380_1731 -4380_77955,285,4380_11268,Mullingar,9639-00009-1,0,4380_7778208_1150111,4380_240 -4380_78156,287,4380_112680,Dublin,3803-00012-1,1,4380_7778208_1030135,4380_1731 -4380_78156,289,4380_112681,Dublin,3723-00014-1,1,4380_7778208_1030135,4380_1731 -4380_78156,290,4380_112682,Dublin,52961-00015-1,1,4380_7778208_1030135,4380_1731 -4380_78156,291,4380_112683,Dublin,3913-00013-1,1,4380_7778208_1030136,4380_1734 -4380_78156,292,4380_112684,Dublin,52960-00016-1,1,4380_7778208_1030135,4380_1731 -4380_78156,293,4380_112685,Dublin,52959-00017-1,1,4380_7778208_1030135,4380_1731 -4380_78156,294,4380_112686,Dublin,52958-00018-1,1,4380_7778208_1030135,4380_1731 -4380_78156,295,4380_112687,Dublin,52962-00019-1,1,4380_7778208_1030135,4380_1731 -4380_78156,296,4380_112688,Dublin,53012-00021-1,1,4380_7778208_1030136,4380_1734 -4380_77955,286,4380_11269,Mullingar,9642-00010-1,0,4380_7778208_1150111,4380_240 -4380_78156,297,4380_112690,Dublin,2673-00008-1,1,4380_7778208_1030123,4380_1731 -4380_78102,285,4380_112696,Cairns Road,113524-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_112697,Cairns Road,113528-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_112698,Cairns Road,113522-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,289,4380_112699,Cairns Road,113526-00014-1,0,4380_7778208_4780501,4380_1739 -4380_78113,288,4380_1127,Dublin via Airport,50174-00011-1,1,4380_7778208_1000908,4380_18 -4380_77955,288,4380_11270,Mullingar,9651-00011-1,0,4380_7778208_1150111,4380_240 -4380_78102,287,4380_112700,Cairns Road,113530-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_112701,Cairns Road,113523-00016-1,0,4380_7778208_4780501,4380_1739 -4380_78102,290,4380_112702,Cairns Road,113525-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_112703,Cairns Road,113531-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_112704,Cairns Road,113529-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,295,4380_112705,Cairns Road,113527-00019-1,0,4380_7778208_4780501,4380_1739 -4380_77955,287,4380_11271,Mullingar,9657-00012-1,0,4380_7778208_1150111,4380_240 -4380_78102,285,4380_112711,Cairns Road,113798-00009-1,0,4380_7778208_4780502,4380_1739 -4380_78102,288,4380_112712,Cairns Road,113800-00011-1,0,4380_7778208_4780502,4380_1739 -4380_78102,286,4380_112713,Cairns Road,113802-00010-1,0,4380_7778208_4780502,4380_1739 -4380_78102,289,4380_112714,Cairns Road,113804-00014-1,0,4380_7778208_4780502,4380_1739 -4380_78102,287,4380_112715,Cairns Road,113806-00012-1,0,4380_7778208_4780502,4380_1739 -4380_78102,290,4380_112716,Cairns Road,113799-00015-1,0,4380_7778208_4780502,4380_1739 -4380_78102,292,4380_112717,Cairns Road,113803-00016-1,0,4380_7778208_4780502,4380_1739 -4380_78102,294,4380_112718,Cairns Road,113807-00018-1,0,4380_7778208_4780502,4380_1739 -4380_78102,293,4380_112719,Cairns Road,113801-00017-1,0,4380_7778208_4780502,4380_1739 -4380_77955,289,4380_11272,Mullingar,9630-00014-1,0,4380_7778208_1150111,4380_240 -4380_78102,295,4380_112720,Cairns Road,113805-00019-1,0,4380_7778208_4780502,4380_1739 -4380_78102,285,4380_112726,Cairns Road,113550-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_112728,Cairns Road,113546-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_112729,Cairns Road,113548-00010-1,0,4380_7778208_4780501,4380_1739 -4380_77955,290,4380_11273,Mullingar,58096-00015-1,0,4380_7778208_1150111,4380_240 -4380_78102,291,4380_112730,Cairns Road,113552-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_112731,Cairns Road,113544-00014-1,0,4380_7778208_4780501,4380_1739 -4380_78102,287,4380_112732,Cairns Road,113542-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_112733,Cairns Road,113549-00016-1,0,4380_7778208_4780501,4380_1739 -4380_78102,290,4380_112734,Cairns Road,113551-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_112735,Cairns Road,113543-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_112736,Cairns Road,113547-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_112737,Cairns Road,113553-00021-1,0,4380_7778208_4780501,4380_1740 -4380_78102,295,4380_112738,Cairns Road,113545-00019-1,0,4380_7778208_4780501,4380_1739 -4380_77955,292,4380_11274,Mullingar,58099-00016-1,0,4380_7778208_1150111,4380_240 -4380_78102,285,4380_112744,Cairns Road,113820-00009-1,0,4380_7778208_4780502,4380_1739 -4380_78102,288,4380_112746,Cairns Road,113826-00011-1,0,4380_7778208_4780502,4380_1739 -4380_78102,286,4380_112747,Cairns Road,113818-00010-1,0,4380_7778208_4780502,4380_1739 -4380_78102,291,4380_112748,Cairns Road,113824-00013-1,0,4380_7778208_4780502,4380_1740 -4380_78102,289,4380_112749,Cairns Road,113828-00014-1,0,4380_7778208_4780502,4380_1739 -4380_77955,293,4380_11275,Mullingar,58095-00017-1,0,4380_7778208_1150111,4380_240 -4380_78102,287,4380_112750,Cairns Road,113822-00012-1,0,4380_7778208_4780502,4380_1739 -4380_78102,290,4380_112751,Cairns Road,113821-00015-1,0,4380_7778208_4780502,4380_1739 -4380_78102,292,4380_112752,Cairns Road,113819-00016-1,0,4380_7778208_4780502,4380_1739 -4380_78102,294,4380_112753,Cairns Road,113823-00018-1,0,4380_7778208_4780502,4380_1739 -4380_78102,293,4380_112754,Cairns Road,113827-00017-1,0,4380_7778208_4780502,4380_1739 -4380_78102,296,4380_112755,Cairns Road,113825-00021-1,0,4380_7778208_4780502,4380_1740 -4380_78102,295,4380_112756,Cairns Road,113829-00019-1,0,4380_7778208_4780502,4380_1739 -4380_77955,294,4380_11276,Mullingar,58098-00018-1,0,4380_7778208_1150111,4380_240 -4380_78102,285,4380_112762,Cairns Road,113566-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_112764,Cairns Road,113572-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_112765,Cairns Road,113570-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,291,4380_112766,Cairns Road,113576-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_112767,Cairns Road,113574-00014-1,0,4380_7778208_4780501,4380_1739 -4380_78102,287,4380_112768,Cairns Road,113568-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_112769,Cairns Road,113571-00016-1,0,4380_7778208_4780501,4380_1739 -4380_77955,295,4380_11277,Mullingar,58097-00019-1,0,4380_7778208_1150111,4380_240 -4380_78102,290,4380_112770,Cairns Road,113567-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_112771,Cairns Road,113569-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_112772,Cairns Road,113573-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_112773,Cairns Road,113577-00021-1,0,4380_7778208_4780501,4380_1740 -4380_78102,295,4380_112774,Cairns Road,113575-00019-1,0,4380_7778208_4780501,4380_1739 -4380_78102,285,4380_112780,Cairns Road,113848-00009-1,0,4380_7778208_4780502,4380_1739 -4380_78102,288,4380_112782,Cairns Road,113842-00011-1,0,4380_7778208_4780502,4380_1739 -4380_78102,286,4380_112783,Cairns Road,113850-00010-1,0,4380_7778208_4780502,4380_1739 -4380_78102,291,4380_112784,Cairns Road,113846-00013-1,0,4380_7778208_4780502,4380_1740 -4380_78102,289,4380_112785,Cairns Road,113844-00014-1,0,4380_7778208_4780502,4380_1739 -4380_78102,287,4380_112786,Cairns Road,113852-00012-1,0,4380_7778208_4780502,4380_1739 -4380_78102,290,4380_112787,Cairns Road,113849-00015-1,0,4380_7778208_4780502,4380_1739 -4380_78102,292,4380_112788,Cairns Road,113851-00016-1,0,4380_7778208_4780502,4380_1739 -4380_78102,294,4380_112789,Cairns Road,113853-00018-1,0,4380_7778208_4780502,4380_1739 -4380_78102,293,4380_112790,Cairns Road,113843-00017-1,0,4380_7778208_4780502,4380_1739 -4380_78102,296,4380_112791,Cairns Road,113847-00021-1,0,4380_7778208_4780502,4380_1740 -4380_78102,295,4380_112792,Cairns Road,113845-00019-1,0,4380_7778208_4780502,4380_1739 -4380_78102,285,4380_112798,Cairns Road,113590-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78113,289,4380_1128,Dublin via Airport,50182-00014-1,1,4380_7778208_1000908,4380_18 -4380_78102,288,4380_112800,Cairns Road,113596-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_112801,Cairns Road,113594-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,291,4380_112802,Cairns Road,113592-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_112803,Cairns Road,113598-00014-1,0,4380_7778208_4780501,4380_1739 -4380_78102,287,4380_112804,Cairns Road,113600-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_112805,Cairns Road,113595-00016-1,0,4380_7778208_4780501,4380_1739 -4380_78102,290,4380_112806,Cairns Road,113591-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_112807,Cairns Road,113601-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_112808,Cairns Road,113597-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_112809,Cairns Road,113593-00021-1,0,4380_7778208_4780501,4380_1740 -4380_78102,295,4380_112810,Cairns Road,113599-00019-1,0,4380_7778208_4780501,4380_1739 -4380_78102,297,4380_112817,Cairns Road,113614-00008-1,0,4380_7778208_4780501,4380_1739 -4380_78102,285,4380_112818,Cairns Road,113870-00009-1,0,4380_7778208_4780502,4380_1740 -4380_78102,288,4380_112820,Cairns Road,113876-00011-1,0,4380_7778208_4780502,4380_1740 -4380_78102,286,4380_112821,Cairns Road,113868-00010-1,0,4380_7778208_4780502,4380_1740 -4380_78102,291,4380_112822,Cairns Road,113872-00013-1,0,4380_7778208_4780502,4380_1741 -4380_78102,289,4380_112823,Cairns Road,113866-00014-1,0,4380_7778208_4780502,4380_1740 -4380_78102,287,4380_112824,Cairns Road,113874-00012-1,0,4380_7778208_4780502,4380_1740 -4380_78102,290,4380_112825,Cairns Road,113871-00015-1,0,4380_7778208_4780502,4380_1740 -4380_78102,292,4380_112826,Cairns Road,113869-00016-1,0,4380_7778208_4780502,4380_1740 -4380_78102,294,4380_112827,Cairns Road,113875-00018-1,0,4380_7778208_4780502,4380_1740 -4380_78102,293,4380_112828,Cairns Road,113877-00017-1,0,4380_7778208_4780502,4380_1740 -4380_78102,296,4380_112829,Cairns Road,113873-00021-1,0,4380_7778208_4780502,4380_1741 -4380_78102,295,4380_112830,Cairns Road,113867-00019-1,0,4380_7778208_4780502,4380_1740 -4380_78102,285,4380_112836,Cairns Road,113618-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_112838,Cairns Road,113626-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_112839,Cairns Road,113616-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,291,4380_112840,Cairns Road,113624-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_112841,Cairns Road,113620-00014-1,0,4380_7778208_4780501,4380_1739 -4380_78102,287,4380_112842,Cairns Road,113622-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_112843,Cairns Road,113617-00016-1,0,4380_7778208_4780501,4380_1739 -4380_78102,290,4380_112844,Cairns Road,113619-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_112845,Cairns Road,113623-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_112846,Cairns Road,113627-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_112847,Cairns Road,113625-00021-1,0,4380_7778208_4780501,4380_1740 -4380_78102,295,4380_112848,Cairns Road,113621-00019-1,0,4380_7778208_4780501,4380_1739 -4380_77955,285,4380_11285,Enfield,9171-00009-1,0,4380_7778208_1150103,4380_238 -4380_78102,297,4380_112855,Cairns Road,113640-00008-1,0,4380_7778208_4780501,4380_1739 -4380_78102,285,4380_112856,Cairns Road,113900-00009-1,0,4380_7778208_4780502,4380_1740 -4380_78102,288,4380_112858,Cairns Road,113896-00011-1,0,4380_7778208_4780502,4380_1740 -4380_78102,286,4380_112859,Cairns Road,113892-00010-1,0,4380_7778208_4780502,4380_1740 -4380_77955,286,4380_11286,Enfield,9186-00010-1,0,4380_7778208_1150103,4380_238 -4380_78102,291,4380_112860,Cairns Road,113898-00013-1,0,4380_7778208_4780502,4380_1741 -4380_78102,289,4380_112861,Cairns Road,113894-00014-1,0,4380_7778208_4780502,4380_1740 -4380_78102,287,4380_112862,Cairns Road,113890-00012-1,0,4380_7778208_4780502,4380_1740 -4380_78102,290,4380_112863,Cairns Road,113901-00015-1,0,4380_7778208_4780502,4380_1740 -4380_78102,292,4380_112864,Cairns Road,113893-00016-1,0,4380_7778208_4780502,4380_1740 -4380_78102,294,4380_112865,Cairns Road,113891-00018-1,0,4380_7778208_4780502,4380_1740 -4380_78102,293,4380_112866,Cairns Road,113897-00017-1,0,4380_7778208_4780502,4380_1740 -4380_78102,296,4380_112867,Cairns Road,113899-00021-1,0,4380_7778208_4780502,4380_1741 -4380_78102,295,4380_112868,Cairns Road,113895-00019-1,0,4380_7778208_4780502,4380_1740 -4380_77955,297,4380_11287,Mullingar,57799-00008-1,0,4380_7778208_1150104,4380_239 -4380_78102,285,4380_112874,Cairns Road,113652-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_112876,Cairns Road,113646-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_112877,Cairns Road,113642-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,291,4380_112878,Cairns Road,113650-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_112879,Cairns Road,113644-00014-1,0,4380_7778208_4780501,4380_1739 -4380_77955,288,4380_11288,Enfield,9196-00011-1,0,4380_7778208_1150103,4380_238 -4380_78102,287,4380_112880,Cairns Road,113648-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_112881,Cairns Road,113643-00016-1,0,4380_7778208_4780501,4380_1739 -4380_78102,290,4380_112882,Cairns Road,113653-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_112883,Cairns Road,113649-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_112884,Cairns Road,113647-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_112885,Cairns Road,113651-00021-1,0,4380_7778208_4780501,4380_1740 -4380_78102,295,4380_112886,Cairns Road,113645-00019-1,0,4380_7778208_4780501,4380_1739 -4380_77955,287,4380_11289,Enfield,9206-00012-1,0,4380_7778208_1150103,4380_238 -4380_78102,297,4380_112893,Cairns Road,113666-00008-1,0,4380_7778208_4780501,4380_1739 -4380_78102,285,4380_112894,Cairns Road,113916-00009-1,0,4380_7778208_4780502,4380_1740 -4380_78102,288,4380_112896,Cairns Road,113914-00011-1,0,4380_7778208_4780502,4380_1740 -4380_78102,286,4380_112897,Cairns Road,113918-00010-1,0,4380_7778208_4780502,4380_1740 -4380_78102,291,4380_112898,Cairns Road,113922-00013-1,0,4380_7778208_4780502,4380_1741 -4380_78102,289,4380_112899,Cairns Road,113924-00014-1,0,4380_7778208_4780502,4380_1740 -4380_78113,290,4380_1129,Dublin via Airport,50177-00015-1,1,4380_7778208_1000908,4380_18 -4380_77955,289,4380_11290,Enfield,9161-00014-1,0,4380_7778208_1150103,4380_238 -4380_78102,287,4380_112900,Cairns Road,113920-00012-1,0,4380_7778208_4780502,4380_1740 -4380_78102,290,4380_112901,Cairns Road,113917-00015-1,0,4380_7778208_4780502,4380_1740 -4380_78102,292,4380_112902,Cairns Road,113919-00016-1,0,4380_7778208_4780502,4380_1740 -4380_78102,294,4380_112903,Cairns Road,113921-00018-1,0,4380_7778208_4780502,4380_1740 -4380_78102,293,4380_112904,Cairns Road,113915-00017-1,0,4380_7778208_4780502,4380_1740 -4380_78102,296,4380_112905,Cairns Road,113923-00021-1,0,4380_7778208_4780502,4380_1741 -4380_78102,295,4380_112906,Cairns Road,113925-00019-1,0,4380_7778208_4780502,4380_1740 -4380_77955,290,4380_11291,Enfield,57753-00015-1,0,4380_7778208_1150103,4380_238 -4380_78102,285,4380_112912,Cairns Road,113676-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_112914,Cairns Road,113668-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_112915,Cairns Road,113670-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,291,4380_112916,Cairns Road,113674-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_112917,Cairns Road,113672-00014-1,0,4380_7778208_4780501,4380_1739 -4380_78102,287,4380_112918,Cairns Road,113678-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_112919,Cairns Road,113671-00016-1,0,4380_7778208_4780501,4380_1739 -4380_77955,291,4380_11292,Mullingar,9351-00013-1,0,4380_7778208_1150105,4380_245 -4380_78102,290,4380_112920,Cairns Road,113677-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_112921,Cairns Road,113679-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_112922,Cairns Road,113669-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_112923,Cairns Road,113675-00021-1,0,4380_7778208_4780501,4380_1740 -4380_78102,295,4380_112924,Cairns Road,113673-00019-1,0,4380_7778208_4780501,4380_1739 -4380_77955,292,4380_11293,Enfield,57752-00016-1,0,4380_7778208_1150103,4380_238 -4380_78102,297,4380_112931,Cairns Road,113692-00008-1,0,4380_7778208_4780501,4380_1739 -4380_78102,285,4380_112932,Cairns Road,113938-00009-1,0,4380_7778208_4780502,4380_1740 -4380_78102,288,4380_112934,Cairns Road,113940-00011-1,0,4380_7778208_4780502,4380_1740 -4380_78102,286,4380_112935,Cairns Road,113948-00010-1,0,4380_7778208_4780502,4380_1740 -4380_78102,291,4380_112936,Cairns Road,113942-00013-1,0,4380_7778208_4780502,4380_1741 -4380_78102,289,4380_112937,Cairns Road,113944-00014-1,0,4380_7778208_4780502,4380_1740 -4380_78102,287,4380_112938,Cairns Road,113946-00012-1,0,4380_7778208_4780502,4380_1740 -4380_78102,290,4380_112939,Cairns Road,113939-00015-1,0,4380_7778208_4780502,4380_1740 -4380_77955,293,4380_11294,Enfield,57751-00017-1,0,4380_7778208_1150103,4380_238 -4380_78102,292,4380_112940,Cairns Road,113949-00016-1,0,4380_7778208_4780502,4380_1740 -4380_78102,294,4380_112941,Cairns Road,113947-00018-1,0,4380_7778208_4780502,4380_1740 -4380_78102,293,4380_112942,Cairns Road,113941-00017-1,0,4380_7778208_4780502,4380_1740 -4380_78102,296,4380_112943,Cairns Road,113943-00021-1,0,4380_7778208_4780502,4380_1741 -4380_78102,295,4380_112944,Cairns Road,113945-00019-1,0,4380_7778208_4780502,4380_1740 -4380_77955,294,4380_11295,Enfield,57749-00018-1,0,4380_7778208_1150103,4380_238 -4380_78102,285,4380_112950,Cairns Road,113694-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_112952,Cairns Road,113702-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_112953,Cairns Road,113700-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,291,4380_112954,Cairns Road,113696-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_112955,Cairns Road,113704-00014-1,0,4380_7778208_4780501,4380_1739 -4380_78102,287,4380_112956,Cairns Road,113698-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_112957,Cairns Road,113701-00016-1,0,4380_7778208_4780501,4380_1739 -4380_78102,290,4380_112958,Cairns Road,113695-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_112959,Cairns Road,113699-00018-1,0,4380_7778208_4780501,4380_1739 -4380_77955,295,4380_11296,Enfield,57754-00019-1,0,4380_7778208_1150103,4380_238 -4380_78102,293,4380_112960,Cairns Road,113703-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_112961,Cairns Road,113697-00021-1,0,4380_7778208_4780501,4380_1740 -4380_78102,295,4380_112962,Cairns Road,113705-00019-1,0,4380_7778208_4780501,4380_1739 -4380_78102,297,4380_112969,Cairns Road,113718-00008-1,0,4380_7778208_4780501,4380_1739 -4380_77955,296,4380_11297,Mullingar,57841-00021-1,0,4380_7778208_1150105,4380_245 -4380_78102,285,4380_112970,Cairns Road,113968-00009-1,0,4380_7778208_4780502,4380_1740 -4380_78102,288,4380_112972,Cairns Road,113970-00011-1,0,4380_7778208_4780502,4380_1740 -4380_78102,286,4380_112973,Cairns Road,113972-00010-1,0,4380_7778208_4780502,4380_1740 -4380_78102,291,4380_112974,Cairns Road,113964-00013-1,0,4380_7778208_4780502,4380_1741 -4380_78102,289,4380_112975,Cairns Road,113966-00014-1,0,4380_7778208_4780502,4380_1740 -4380_78102,287,4380_112976,Cairns Road,113962-00012-1,0,4380_7778208_4780502,4380_1740 -4380_78102,290,4380_112977,Cairns Road,113969-00015-1,0,4380_7778208_4780502,4380_1740 -4380_78102,292,4380_112978,Cairns Road,113973-00016-1,0,4380_7778208_4780502,4380_1740 -4380_78102,294,4380_112979,Cairns Road,113963-00018-1,0,4380_7778208_4780502,4380_1740 -4380_78102,293,4380_112980,Cairns Road,113971-00017-1,0,4380_7778208_4780502,4380_1740 -4380_78102,296,4380_112981,Cairns Road,113965-00021-1,0,4380_7778208_4780502,4380_1741 -4380_78102,295,4380_112982,Cairns Road,113967-00019-1,0,4380_7778208_4780502,4380_1740 -4380_78102,285,4380_112988,Cairns Road,113720-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_112990,Cairns Road,113728-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_112991,Cairns Road,113724-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,291,4380_112992,Cairns Road,113726-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_112993,Cairns Road,113722-00014-1,0,4380_7778208_4780501,4380_1739 -4380_78102,287,4380_112994,Cairns Road,113730-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_112995,Cairns Road,113725-00016-1,0,4380_7778208_4780501,4380_1739 -4380_78102,290,4380_112996,Cairns Road,113721-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_112997,Cairns Road,113731-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_112998,Cairns Road,113729-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_112999,Cairns Road,113727-00021-1,0,4380_7778208_4780501,4380_1740 -4380_77946,286,4380_113,Dundalk,50323-00010-1,0,4380_7778208_1000913,4380_1 -4380_78113,291,4380_1130,Dublin via Airport,50178-00013-1,1,4380_7778208_1000908,4380_18 -4380_78102,295,4380_113000,Cairns Road,113723-00019-1,0,4380_7778208_4780501,4380_1739 -4380_78102,297,4380_113007,Cairns Road,113744-00008-1,0,4380_7778208_4780501,4380_1739 -4380_78102,285,4380_113008,Cairns Road,113990-00009-1,0,4380_7778208_4780502,4380_1740 -4380_78102,288,4380_113010,Cairns Road,113992-00011-1,0,4380_7778208_4780502,4380_1740 -4380_78102,286,4380_113011,Cairns Road,113986-00010-1,0,4380_7778208_4780502,4380_1740 -4380_78102,291,4380_113012,Cairns Road,113988-00013-1,0,4380_7778208_4780502,4380_1741 -4380_78102,289,4380_113013,Cairns Road,113994-00014-1,0,4380_7778208_4780502,4380_1740 -4380_78102,287,4380_113014,Cairns Road,113996-00012-1,0,4380_7778208_4780502,4380_1740 -4380_78102,290,4380_113015,Cairns Road,113991-00015-1,0,4380_7778208_4780502,4380_1740 -4380_78102,292,4380_113016,Cairns Road,113987-00016-1,0,4380_7778208_4780502,4380_1740 -4380_78102,294,4380_113017,Cairns Road,113997-00018-1,0,4380_7778208_4780502,4380_1740 -4380_78102,293,4380_113018,Cairns Road,113993-00017-1,0,4380_7778208_4780502,4380_1740 -4380_78102,296,4380_113019,Cairns Road,113989-00021-1,0,4380_7778208_4780502,4380_1741 -4380_78102,295,4380_113020,Cairns Road,113995-00019-1,0,4380_7778208_4780502,4380_1740 -4380_78102,285,4380_113026,Cairns Road,113746-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_113028,Cairns Road,113752-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_113029,Cairns Road,113754-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,291,4380_113030,Cairns Road,113756-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_113031,Cairns Road,113750-00014-1,0,4380_7778208_4780501,4380_1739 -4380_78102,287,4380_113032,Cairns Road,113748-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_113033,Cairns Road,113755-00016-1,0,4380_7778208_4780501,4380_1739 -4380_78102,290,4380_113034,Cairns Road,113747-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_113035,Cairns Road,113749-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_113036,Cairns Road,113753-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_113037,Cairns Road,113757-00021-1,0,4380_7778208_4780501,4380_1740 -4380_78102,295,4380_113038,Cairns Road,113751-00019-1,0,4380_7778208_4780501,4380_1739 -4380_77955,285,4380_11304,Mullingar,9784-00009-1,0,4380_7778208_1150114,4380_240 -4380_78102,297,4380_113045,Cairns Road,113770-00008-1,0,4380_7778208_4780501,4380_1739 -4380_78102,285,4380_113046,Cairns Road,114012-00009-1,0,4380_7778208_4780502,4380_1740 -4380_78102,288,4380_113048,Cairns Road,114010-00011-1,0,4380_7778208_4780502,4380_1740 -4380_78102,286,4380_113049,Cairns Road,114018-00010-1,0,4380_7778208_4780502,4380_1740 -4380_77955,286,4380_11305,Mullingar,9796-00010-1,0,4380_7778208_1150114,4380_240 -4380_78102,291,4380_113050,Cairns Road,114020-00013-1,0,4380_7778208_4780502,4380_1741 -4380_78102,289,4380_113051,Cairns Road,114016-00014-1,0,4380_7778208_4780502,4380_1740 -4380_78102,287,4380_113052,Cairns Road,114014-00012-1,0,4380_7778208_4780502,4380_1740 -4380_78102,290,4380_113053,Cairns Road,114013-00015-1,0,4380_7778208_4780502,4380_1740 -4380_78102,292,4380_113054,Cairns Road,114019-00016-1,0,4380_7778208_4780502,4380_1740 -4380_78102,294,4380_113055,Cairns Road,114015-00018-1,0,4380_7778208_4780502,4380_1740 -4380_78102,293,4380_113056,Cairns Road,114011-00017-1,0,4380_7778208_4780502,4380_1740 -4380_78102,296,4380_113057,Cairns Road,114021-00021-1,0,4380_7778208_4780502,4380_1741 -4380_78102,295,4380_113058,Cairns Road,114017-00019-1,0,4380_7778208_4780502,4380_1740 -4380_77955,288,4380_11306,Mullingar,9804-00011-1,0,4380_7778208_1150114,4380_240 -4380_78102,285,4380_113064,Cairns Road,113772-00009-1,0,4380_7778208_4780501,4380_1739 -4380_78102,288,4380_113066,Cairns Road,113782-00011-1,0,4380_7778208_4780501,4380_1739 -4380_78102,286,4380_113067,Cairns Road,113776-00010-1,0,4380_7778208_4780501,4380_1739 -4380_78102,291,4380_113068,Cairns Road,113774-00013-1,0,4380_7778208_4780501,4380_1740 -4380_78102,289,4380_113069,Cairns Road,113780-00014-1,0,4380_7778208_4780501,4380_1739 -4380_77955,287,4380_11307,Mullingar,9808-00012-1,0,4380_7778208_1150114,4380_240 -4380_78102,287,4380_113070,Cairns Road,113778-00012-1,0,4380_7778208_4780501,4380_1739 -4380_78102,292,4380_113071,Cairns Road,113777-00016-1,0,4380_7778208_4780501,4380_1739 -4380_78102,290,4380_113072,Cairns Road,113773-00015-1,0,4380_7778208_4780501,4380_1739 -4380_78102,294,4380_113073,Cairns Road,113779-00018-1,0,4380_7778208_4780501,4380_1739 -4380_78102,293,4380_113074,Cairns Road,113783-00017-1,0,4380_7778208_4780501,4380_1739 -4380_78102,296,4380_113075,Cairns Road,113775-00021-1,0,4380_7778208_4780501,4380_1740 -4380_78102,295,4380_113076,Cairns Road,113781-00019-1,0,4380_7778208_4780501,4380_1739 -4380_77955,289,4380_11308,Mullingar,9776-00014-1,0,4380_7778208_1150114,4380_240 -4380_78102,297,4380_113083,Cairns Road,113796-00008-1,0,4380_7778208_4780501,4380_1739 -4380_78102,285,4380_113084,Cairns Road,114040-00009-1,0,4380_7778208_4780502,4380_1740 -4380_78102,288,4380_113086,Cairns Road,114044-00011-1,0,4380_7778208_4780502,4380_1740 -4380_78102,286,4380_113087,Cairns Road,114034-00010-1,0,4380_7778208_4780502,4380_1740 -4380_78102,291,4380_113088,Cairns Road,114036-00013-1,0,4380_7778208_4780502,4380_1741 -4380_78102,289,4380_113089,Cairns Road,114038-00014-1,0,4380_7778208_4780502,4380_1740 -4380_77955,290,4380_11309,Mullingar,58177-00015-1,0,4380_7778208_1150114,4380_240 -4380_78102,287,4380_113090,Cairns Road,114042-00012-1,0,4380_7778208_4780502,4380_1740 -4380_78102,290,4380_113091,Cairns Road,114041-00015-1,0,4380_7778208_4780502,4380_1740 -4380_78102,292,4380_113092,Cairns Road,114035-00016-1,0,4380_7778208_4780502,4380_1740 -4380_78102,294,4380_113093,Cairns Road,114043-00018-1,0,4380_7778208_4780502,4380_1740 -4380_78102,293,4380_113094,Cairns Road,114045-00017-1,0,4380_7778208_4780502,4380_1740 -4380_78102,296,4380_113095,Cairns Road,114037-00021-1,0,4380_7778208_4780502,4380_1741 -4380_78102,295,4380_113096,Cairns Road,114039-00019-1,0,4380_7778208_4780502,4380_1740 -4380_78113,292,4380_1131,Dublin via Airport,50173-00016-1,1,4380_7778208_1000908,4380_18 -4380_77955,291,4380_11310,Mullingar,9662-00013-1,0,4380_7778208_1150111,4380_247 -4380_78102,285,4380_113102,Cartron,113540-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113103,Cartron,113532-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113104,Cartron,113536-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,289,4380_113105,Cartron,113534-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113106,Cartron,113538-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113107,Cartron,113537-00016-1,1,4380_7778208_4780501,4380_1742 -4380_78102,290,4380_113108,Cartron,113541-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113109,Cartron,113539-00018-1,1,4380_7778208_4780501,4380_1742 -4380_77955,292,4380_11311,Mullingar,58178-00016-1,0,4380_7778208_1150114,4380_240 -4380_78102,293,4380_113110,Cartron,113533-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,295,4380_113111,Cartron,113535-00019-1,1,4380_7778208_4780501,4380_1742 -4380_78102,285,4380_113117,Cartron,113810-00009-1,1,4380_7778208_4780502,4380_1742 -4380_78102,288,4380_113118,Cartron,113812-00011-1,1,4380_7778208_4780502,4380_1742 -4380_78102,286,4380_113119,Cartron,113816-00010-1,1,4380_7778208_4780502,4380_1742 -4380_77955,293,4380_11312,Mullingar,58175-00017-1,0,4380_7778208_1150114,4380_240 -4380_78102,289,4380_113120,Cartron,113808-00014-1,1,4380_7778208_4780502,4380_1742 -4380_78102,287,4380_113121,Cartron,113814-00012-1,1,4380_7778208_4780502,4380_1742 -4380_78102,290,4380_113122,Cartron,113811-00015-1,1,4380_7778208_4780502,4380_1742 -4380_78102,292,4380_113123,Cartron,113817-00016-1,1,4380_7778208_4780502,4380_1742 -4380_78102,294,4380_113124,Cartron,113815-00018-1,1,4380_7778208_4780502,4380_1742 -4380_78102,293,4380_113125,Cartron,113813-00017-1,1,4380_7778208_4780502,4380_1742 -4380_78102,295,4380_113126,Cartron,113809-00019-1,1,4380_7778208_4780502,4380_1742 -4380_77955,294,4380_11313,Mullingar,58174-00018-1,0,4380_7778208_1150114,4380_240 -4380_78102,285,4380_113132,Cartron,113564-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113134,Cartron,113556-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113135,Cartron,113562-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,291,4380_113136,Cartron,113560-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113137,Cartron,113558-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113138,Cartron,113554-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113139,Cartron,113563-00016-1,1,4380_7778208_4780501,4380_1742 -4380_77955,295,4380_11314,Mullingar,58176-00019-1,0,4380_7778208_1150114,4380_240 -4380_78102,290,4380_113140,Cartron,113565-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113141,Cartron,113555-00018-1,1,4380_7778208_4780501,4380_1742 -4380_78102,293,4380_113142,Cartron,113557-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113143,Cartron,113561-00021-1,1,4380_7778208_4780501,4380_1744 -4380_78102,295,4380_113144,Cartron,113559-00019-1,1,4380_7778208_4780501,4380_1742 -4380_77955,296,4380_11315,Mullingar,58100-00021-1,0,4380_7778208_1150111,4380_247 -4380_78102,285,4380_113150,Cartron,113832-00009-1,1,4380_7778208_4780502,4380_1742 -4380_78102,288,4380_113152,Cartron,113840-00011-1,1,4380_7778208_4780502,4380_1742 -4380_78102,286,4380_113153,Cartron,113838-00010-1,1,4380_7778208_4780502,4380_1742 -4380_78102,291,4380_113154,Cartron,113830-00013-1,1,4380_7778208_4780502,4380_1744 -4380_78102,289,4380_113155,Cartron,113836-00014-1,1,4380_7778208_4780502,4380_1742 -4380_78102,287,4380_113156,Cartron,113834-00012-1,1,4380_7778208_4780502,4380_1742 -4380_78102,290,4380_113157,Cartron,113833-00015-1,1,4380_7778208_4780502,4380_1742 -4380_78102,292,4380_113158,Cartron,113839-00016-1,1,4380_7778208_4780502,4380_1742 -4380_78102,294,4380_113159,Cartron,113835-00018-1,1,4380_7778208_4780502,4380_1742 -4380_78102,293,4380_113160,Cartron,113841-00017-1,1,4380_7778208_4780502,4380_1742 -4380_78102,296,4380_113161,Cartron,113831-00021-1,1,4380_7778208_4780502,4380_1744 -4380_78102,295,4380_113162,Cartron,113837-00019-1,1,4380_7778208_4780502,4380_1742 -4380_78102,285,4380_113168,Cartron,113578-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113170,Cartron,113588-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113171,Cartron,113582-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,291,4380_113172,Cartron,113586-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113173,Cartron,113584-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113174,Cartron,113580-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113175,Cartron,113583-00016-1,1,4380_7778208_4780501,4380_1742 -4380_78102,290,4380_113176,Cartron,113579-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113177,Cartron,113581-00018-1,1,4380_7778208_4780501,4380_1742 -4380_78102,293,4380_113178,Cartron,113589-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113179,Cartron,113587-00021-1,1,4380_7778208_4780501,4380_1744 -4380_78102,295,4380_113180,Cartron,113585-00019-1,1,4380_7778208_4780501,4380_1742 -4380_78102,285,4380_113186,Cartron,113858-00009-1,1,4380_7778208_4780502,4380_1742 -4380_78102,288,4380_113188,Cartron,113862-00011-1,1,4380_7778208_4780502,4380_1742 -4380_78102,286,4380_113189,Cartron,113860-00010-1,1,4380_7778208_4780502,4380_1742 -4380_78102,291,4380_113190,Cartron,113854-00013-1,1,4380_7778208_4780502,4380_1744 -4380_78102,289,4380_113191,Cartron,113856-00014-1,1,4380_7778208_4780502,4380_1742 -4380_78102,287,4380_113192,Cartron,113864-00012-1,1,4380_7778208_4780502,4380_1742 -4380_78102,290,4380_113193,Cartron,113859-00015-1,1,4380_7778208_4780502,4380_1742 -4380_78102,292,4380_113194,Cartron,113861-00016-1,1,4380_7778208_4780502,4380_1742 -4380_78102,294,4380_113195,Cartron,113865-00018-1,1,4380_7778208_4780502,4380_1742 -4380_78102,293,4380_113196,Cartron,113863-00017-1,1,4380_7778208_4780502,4380_1742 -4380_78102,296,4380_113197,Cartron,113855-00021-1,1,4380_7778208_4780502,4380_1744 -4380_78102,295,4380_113198,Cartron,113857-00019-1,1,4380_7778208_4780502,4380_1742 -4380_78113,293,4380_1132,Dublin via Airport,50175-00017-1,1,4380_7778208_1000908,4380_18 -4380_78102,285,4380_113204,Cartron,113612-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113206,Cartron,113602-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113207,Cartron,113606-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,291,4380_113208,Cartron,113608-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113209,Cartron,113604-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113210,Cartron,113610-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113211,Cartron,113607-00016-1,1,4380_7778208_4780501,4380_1742 -4380_78102,290,4380_113212,Cartron,113613-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113213,Cartron,113611-00018-1,1,4380_7778208_4780501,4380_1742 -4380_78102,293,4380_113214,Cartron,113603-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113215,Cartron,113609-00021-1,1,4380_7778208_4780501,4380_1744 -4380_78102,295,4380_113216,Cartron,113605-00019-1,1,4380_7778208_4780501,4380_1742 -4380_78102,297,4380_113223,Cartron,113615-00008-1,1,4380_7778208_4780501,4380_1742 -4380_78102,285,4380_113224,Cartron,113878-00009-1,1,4380_7778208_4780502,4380_1744 -4380_78102,288,4380_113226,Cartron,113888-00011-1,1,4380_7778208_4780502,4380_1744 -4380_78102,286,4380_113227,Cartron,113880-00010-1,1,4380_7778208_4780502,4380_1744 -4380_78102,291,4380_113228,Cartron,113884-00013-1,1,4380_7778208_4780502,4380_1746 -4380_78102,289,4380_113229,Cartron,113886-00014-1,1,4380_7778208_4780502,4380_1744 -4380_78102,287,4380_113230,Cartron,113882-00012-1,1,4380_7778208_4780502,4380_1744 -4380_78102,290,4380_113231,Cartron,113879-00015-1,1,4380_7778208_4780502,4380_1744 -4380_78102,292,4380_113232,Cartron,113881-00016-1,1,4380_7778208_4780502,4380_1744 -4380_78102,294,4380_113233,Cartron,113883-00018-1,1,4380_7778208_4780502,4380_1744 -4380_78102,293,4380_113234,Cartron,113889-00017-1,1,4380_7778208_4780502,4380_1744 -4380_78102,296,4380_113235,Cartron,113885-00021-1,1,4380_7778208_4780502,4380_1746 -4380_78102,295,4380_113236,Cartron,113887-00019-1,1,4380_7778208_4780502,4380_1744 -4380_78102,285,4380_113242,Cartron,113638-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113244,Cartron,113634-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113245,Cartron,113630-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,291,4380_113246,Cartron,113636-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113247,Cartron,113628-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113248,Cartron,113632-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113249,Cartron,113631-00016-1,1,4380_7778208_4780501,4380_1742 -4380_78102,290,4380_113250,Cartron,113639-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113251,Cartron,113633-00018-1,1,4380_7778208_4780501,4380_1742 -4380_78102,293,4380_113252,Cartron,113635-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113253,Cartron,113637-00021-1,1,4380_7778208_4780501,4380_1744 -4380_78102,295,4380_113254,Cartron,113629-00019-1,1,4380_7778208_4780501,4380_1742 -4380_78102,297,4380_113261,Cartron,113641-00008-1,1,4380_7778208_4780501,4380_1742 -4380_78102,285,4380_113262,Cartron,113904-00009-1,1,4380_7778208_4780502,4380_1744 -4380_78102,288,4380_113264,Cartron,113910-00011-1,1,4380_7778208_4780502,4380_1744 -4380_78102,286,4380_113265,Cartron,113908-00010-1,1,4380_7778208_4780502,4380_1744 -4380_78102,291,4380_113266,Cartron,113906-00013-1,1,4380_7778208_4780502,4380_1746 -4380_78102,289,4380_113267,Cartron,113902-00014-1,1,4380_7778208_4780502,4380_1744 -4380_78102,287,4380_113268,Cartron,113912-00012-1,1,4380_7778208_4780502,4380_1744 -4380_78102,290,4380_113269,Cartron,113905-00015-1,1,4380_7778208_4780502,4380_1744 -4380_78102,292,4380_113270,Cartron,113909-00016-1,1,4380_7778208_4780502,4380_1744 -4380_78102,294,4380_113271,Cartron,113913-00018-1,1,4380_7778208_4780502,4380_1744 -4380_78102,293,4380_113272,Cartron,113911-00017-1,1,4380_7778208_4780502,4380_1744 -4380_78102,296,4380_113273,Cartron,113907-00021-1,1,4380_7778208_4780502,4380_1746 -4380_78102,295,4380_113274,Cartron,113903-00019-1,1,4380_7778208_4780502,4380_1744 -4380_78102,285,4380_113280,Cartron,113664-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113282,Cartron,113654-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113283,Cartron,113660-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,291,4380_113284,Cartron,113658-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113285,Cartron,113662-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113286,Cartron,113656-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113287,Cartron,113661-00016-1,1,4380_7778208_4780501,4380_1742 -4380_78102,290,4380_113288,Cartron,113665-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113289,Cartron,113657-00018-1,1,4380_7778208_4780501,4380_1742 -4380_78102,293,4380_113290,Cartron,113655-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113291,Cartron,113659-00021-1,1,4380_7778208_4780501,4380_1744 -4380_78102,295,4380_113292,Cartron,113663-00019-1,1,4380_7778208_4780501,4380_1742 -4380_78102,297,4380_113299,Cartron,113667-00008-1,1,4380_7778208_4780501,4380_1742 -4380_78113,294,4380_1133,Dublin via Airport,50181-00018-1,1,4380_7778208_1000908,4380_18 -4380_78102,285,4380_113300,Cartron,113932-00009-1,1,4380_7778208_4780502,4380_1744 -4380_78102,288,4380_113302,Cartron,113926-00011-1,1,4380_7778208_4780502,4380_1744 -4380_78102,286,4380_113303,Cartron,113930-00010-1,1,4380_7778208_4780502,4380_1744 -4380_78102,291,4380_113304,Cartron,113934-00013-1,1,4380_7778208_4780502,4380_1746 -4380_78102,289,4380_113305,Cartron,113928-00014-1,1,4380_7778208_4780502,4380_1744 -4380_78102,287,4380_113306,Cartron,113936-00012-1,1,4380_7778208_4780502,4380_1744 -4380_78102,290,4380_113307,Cartron,113933-00015-1,1,4380_7778208_4780502,4380_1744 -4380_78102,292,4380_113308,Cartron,113931-00016-1,1,4380_7778208_4780502,4380_1744 -4380_78102,294,4380_113309,Cartron,113937-00018-1,1,4380_7778208_4780502,4380_1744 -4380_78102,293,4380_113310,Cartron,113927-00017-1,1,4380_7778208_4780502,4380_1744 -4380_78102,296,4380_113311,Cartron,113935-00021-1,1,4380_7778208_4780502,4380_1746 -4380_78102,295,4380_113312,Cartron,113929-00019-1,1,4380_7778208_4780502,4380_1744 -4380_78102,285,4380_113318,Cartron,113684-00009-1,1,4380_7778208_4780501,4380_1742 -4380_77955,285,4380_11332,Enfield,9020-00009-1,0,4380_7778208_1150101,4380_248 -4380_78102,288,4380_113320,Cartron,113690-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113321,Cartron,113688-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,291,4380_113322,Cartron,113682-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113323,Cartron,113680-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113324,Cartron,113686-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113325,Cartron,113689-00016-1,1,4380_7778208_4780501,4380_1742 -4380_78102,290,4380_113326,Cartron,113685-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113327,Cartron,113687-00018-1,1,4380_7778208_4780501,4380_1742 -4380_78102,293,4380_113328,Cartron,113691-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113329,Cartron,113683-00021-1,1,4380_7778208_4780501,4380_1744 -4380_77955,285,4380_11333,Mullingar,9672-00009-1,0,4380_7778208_1150112,4380_241 -4380_78102,295,4380_113330,Cartron,113681-00019-1,1,4380_7778208_4780501,4380_1742 -4380_78102,297,4380_113337,Cartron,113693-00008-1,1,4380_7778208_4780501,4380_1742 -4380_78102,285,4380_113338,Cartron,113954-00009-1,1,4380_7778208_4780502,4380_1744 -4380_77955,285,4380_11334,Mullingar,9894-00009-1,0,4380_7778208_1150116,4380_243 -4380_78102,288,4380_113340,Cartron,113956-00011-1,1,4380_7778208_4780502,4380_1744 -4380_78102,286,4380_113341,Cartron,113960-00010-1,1,4380_7778208_4780502,4380_1744 -4380_78102,291,4380_113342,Cartron,113952-00013-1,1,4380_7778208_4780502,4380_1746 -4380_78102,289,4380_113343,Cartron,113950-00014-1,1,4380_7778208_4780502,4380_1744 -4380_78102,287,4380_113344,Cartron,113958-00012-1,1,4380_7778208_4780502,4380_1744 -4380_78102,290,4380_113345,Cartron,113955-00015-1,1,4380_7778208_4780502,4380_1744 -4380_78102,292,4380_113346,Cartron,113961-00016-1,1,4380_7778208_4780502,4380_1744 -4380_78102,294,4380_113347,Cartron,113959-00018-1,1,4380_7778208_4780502,4380_1744 -4380_78102,293,4380_113348,Cartron,113957-00017-1,1,4380_7778208_4780502,4380_1744 -4380_78102,296,4380_113349,Cartron,113953-00021-1,1,4380_7778208_4780502,4380_1746 -4380_77955,286,4380_11335,Enfield,9036-00010-1,0,4380_7778208_1150101,4380_248 -4380_78102,295,4380_113350,Cartron,113951-00019-1,1,4380_7778208_4780502,4380_1744 -4380_78102,285,4380_113356,Cartron,113712-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113358,Cartron,113714-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113359,Cartron,113708-00010-1,1,4380_7778208_4780501,4380_1742 -4380_77955,286,4380_11336,Mullingar,9676-00010-1,0,4380_7778208_1150112,4380_241 -4380_78102,291,4380_113360,Cartron,113716-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113361,Cartron,113710-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113362,Cartron,113706-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113363,Cartron,113709-00016-1,1,4380_7778208_4780501,4380_1742 -4380_78102,290,4380_113364,Cartron,113713-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113365,Cartron,113707-00018-1,1,4380_7778208_4780501,4380_1742 -4380_78102,293,4380_113366,Cartron,113715-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113367,Cartron,113717-00021-1,1,4380_7778208_4780501,4380_1744 -4380_78102,295,4380_113368,Cartron,113711-00019-1,1,4380_7778208_4780501,4380_1742 -4380_77955,286,4380_11337,Mullingar,9906-00010-1,0,4380_7778208_1150116,4380_243 -4380_78102,297,4380_113375,Cartron,113719-00008-1,1,4380_7778208_4780501,4380_1742 -4380_78102,285,4380_113376,Cartron,113984-00009-1,1,4380_7778208_4780502,4380_1744 -4380_78102,288,4380_113378,Cartron,113976-00011-1,1,4380_7778208_4780502,4380_1744 -4380_78102,286,4380_113379,Cartron,113974-00010-1,1,4380_7778208_4780502,4380_1744 -4380_77955,288,4380_11338,Enfield,9052-00011-1,0,4380_7778208_1150101,4380_248 -4380_78102,291,4380_113380,Cartron,113982-00013-1,1,4380_7778208_4780502,4380_1746 -4380_78102,289,4380_113381,Cartron,113978-00014-1,1,4380_7778208_4780502,4380_1744 -4380_78102,287,4380_113382,Cartron,113980-00012-1,1,4380_7778208_4780502,4380_1744 -4380_78102,290,4380_113383,Cartron,113985-00015-1,1,4380_7778208_4780502,4380_1744 -4380_78102,292,4380_113384,Cartron,113975-00016-1,1,4380_7778208_4780502,4380_1744 -4380_78102,294,4380_113385,Cartron,113981-00018-1,1,4380_7778208_4780502,4380_1744 -4380_78102,293,4380_113386,Cartron,113977-00017-1,1,4380_7778208_4780502,4380_1744 -4380_78102,296,4380_113387,Cartron,113983-00021-1,1,4380_7778208_4780502,4380_1746 -4380_78102,295,4380_113388,Cartron,113979-00019-1,1,4380_7778208_4780502,4380_1744 -4380_77955,288,4380_11339,Mullingar,9682-00011-1,0,4380_7778208_1150112,4380_241 -4380_78102,285,4380_113394,Cartron,113736-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113396,Cartron,113732-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113397,Cartron,113742-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,291,4380_113398,Cartron,113734-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113399,Cartron,113738-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78113,295,4380_1134,Dublin via Airport,50183-00019-1,1,4380_7778208_1000908,4380_18 -4380_77955,288,4380_11340,Mullingar,9910-00011-1,0,4380_7778208_1150116,4380_243 -4380_78102,287,4380_113400,Cartron,113740-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113401,Cartron,113743-00016-1,1,4380_7778208_4780501,4380_1742 -4380_78102,290,4380_113402,Cartron,113737-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113403,Cartron,113741-00018-1,1,4380_7778208_4780501,4380_1742 -4380_78102,293,4380_113404,Cartron,113733-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113405,Cartron,113735-00021-1,1,4380_7778208_4780501,4380_1744 -4380_78102,295,4380_113406,Cartron,113739-00019-1,1,4380_7778208_4780501,4380_1742 -4380_77955,287,4380_11341,Enfield,9068-00012-1,0,4380_7778208_1150101,4380_248 -4380_78102,297,4380_113413,Cartron,113745-00008-1,1,4380_7778208_4780501,4380_1742 -4380_78102,285,4380_113414,Cartron,114004-00009-1,1,4380_7778208_4780502,4380_1744 -4380_78102,288,4380_113416,Cartron,113998-00011-1,1,4380_7778208_4780502,4380_1744 -4380_78102,286,4380_113417,Cartron,114002-00010-1,1,4380_7778208_4780502,4380_1744 -4380_78102,291,4380_113418,Cartron,114000-00013-1,1,4380_7778208_4780502,4380_1746 -4380_78102,289,4380_113419,Cartron,114008-00014-1,1,4380_7778208_4780502,4380_1744 -4380_77955,287,4380_11342,Mullingar,9684-00012-1,0,4380_7778208_1150112,4380_241 -4380_78102,287,4380_113420,Cartron,114006-00012-1,1,4380_7778208_4780502,4380_1744 -4380_78102,290,4380_113421,Cartron,114005-00015-1,1,4380_7778208_4780502,4380_1744 -4380_78102,292,4380_113422,Cartron,114003-00016-1,1,4380_7778208_4780502,4380_1744 -4380_78102,294,4380_113423,Cartron,114007-00018-1,1,4380_7778208_4780502,4380_1744 -4380_78102,293,4380_113424,Cartron,113999-00017-1,1,4380_7778208_4780502,4380_1744 -4380_78102,296,4380_113425,Cartron,114001-00021-1,1,4380_7778208_4780502,4380_1746 -4380_78102,295,4380_113426,Cartron,114009-00019-1,1,4380_7778208_4780502,4380_1744 -4380_77955,287,4380_11343,Mullingar,9922-00012-1,0,4380_7778208_1150116,4380_243 -4380_78102,285,4380_113432,Cartron,113758-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113434,Cartron,113762-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113435,Cartron,113764-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,291,4380_113436,Cartron,113760-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113437,Cartron,113768-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113438,Cartron,113766-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113439,Cartron,113765-00016-1,1,4380_7778208_4780501,4380_1742 -4380_77955,289,4380_11344,Enfield,9004-00014-1,0,4380_7778208_1150101,4380_248 -4380_78102,290,4380_113440,Cartron,113759-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113441,Cartron,113767-00018-1,1,4380_7778208_4780501,4380_1742 -4380_78102,293,4380_113442,Cartron,113763-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113443,Cartron,113761-00021-1,1,4380_7778208_4780501,4380_1744 -4380_78102,295,4380_113444,Cartron,113769-00019-1,1,4380_7778208_4780501,4380_1742 -4380_77955,289,4380_11345,Mullingar,9668-00014-1,0,4380_7778208_1150112,4380_241 -4380_78102,297,4380_113451,Cartron,113771-00008-1,1,4380_7778208_4780501,4380_1742 -4380_78102,285,4380_113452,Cartron,114032-00009-1,1,4380_7778208_4780502,4380_1744 -4380_78102,288,4380_113454,Cartron,114030-00011-1,1,4380_7778208_4780502,4380_1744 -4380_78102,286,4380_113455,Cartron,114022-00010-1,1,4380_7778208_4780502,4380_1744 -4380_78102,291,4380_113456,Cartron,114028-00013-1,1,4380_7778208_4780502,4380_1746 -4380_78102,289,4380_113457,Cartron,114024-00014-1,1,4380_7778208_4780502,4380_1744 -4380_78102,287,4380_113458,Cartron,114026-00012-1,1,4380_7778208_4780502,4380_1744 -4380_78102,290,4380_113459,Cartron,114033-00015-1,1,4380_7778208_4780502,4380_1744 -4380_77955,289,4380_11346,Mullingar,9886-00014-1,0,4380_7778208_1150116,4380_243 -4380_78102,292,4380_113460,Cartron,114023-00016-1,1,4380_7778208_4780502,4380_1744 -4380_78102,294,4380_113461,Cartron,114027-00018-1,1,4380_7778208_4780502,4380_1744 -4380_78102,293,4380_113462,Cartron,114031-00017-1,1,4380_7778208_4780502,4380_1744 -4380_78102,296,4380_113463,Cartron,114029-00021-1,1,4380_7778208_4780502,4380_1746 -4380_78102,295,4380_113464,Cartron,114025-00019-1,1,4380_7778208_4780502,4380_1744 -4380_77955,290,4380_11347,Enfield,57615-00015-1,0,4380_7778208_1150101,4380_248 -4380_78102,285,4380_113470,Cartron,113792-00009-1,1,4380_7778208_4780501,4380_1742 -4380_78102,288,4380_113472,Cartron,113790-00011-1,1,4380_7778208_4780501,4380_1742 -4380_78102,286,4380_113473,Cartron,113788-00010-1,1,4380_7778208_4780501,4380_1742 -4380_78102,291,4380_113474,Cartron,113784-00013-1,1,4380_7778208_4780501,4380_1744 -4380_78102,289,4380_113475,Cartron,113786-00014-1,1,4380_7778208_4780501,4380_1742 -4380_78102,287,4380_113476,Cartron,113794-00012-1,1,4380_7778208_4780501,4380_1742 -4380_78102,292,4380_113477,Cartron,113789-00016-1,1,4380_7778208_4780501,4380_1742 -4380_78102,290,4380_113478,Cartron,113793-00015-1,1,4380_7778208_4780501,4380_1742 -4380_78102,294,4380_113479,Cartron,113795-00018-1,1,4380_7778208_4780501,4380_1742 -4380_77955,290,4380_11348,Mullingar,58114-00015-1,0,4380_7778208_1150112,4380_241 -4380_78102,293,4380_113480,Cartron,113791-00017-1,1,4380_7778208_4780501,4380_1742 -4380_78102,296,4380_113481,Cartron,113785-00021-1,1,4380_7778208_4780501,4380_1744 -4380_78102,295,4380_113482,Cartron,113787-00019-1,1,4380_7778208_4780501,4380_1742 -4380_78102,297,4380_113489,Town Centre,113797-00008-1,1,4380_7778208_4780501,4380_1743 -4380_77955,291,4380_11349,Enfield,57611-00013-1,0,4380_7778208_1150101,4380_244 -4380_78102,285,4380_113490,Town Centre,114046-00009-1,1,4380_7778208_4780502,4380_1745 -4380_78102,288,4380_113492,Town Centre,114050-00011-1,1,4380_7778208_4780502,4380_1745 -4380_78102,286,4380_113493,Town Centre,114048-00010-1,1,4380_7778208_4780502,4380_1745 -4380_78102,291,4380_113494,Town Centre,114056-00013-1,1,4380_7778208_4780502,4380_1747 -4380_78102,289,4380_113495,Town Centre,114054-00014-1,1,4380_7778208_4780502,4380_1745 -4380_78102,287,4380_113496,Town Centre,114052-00012-1,1,4380_7778208_4780502,4380_1745 -4380_78102,290,4380_113497,Town Centre,114047-00015-1,1,4380_7778208_4780502,4380_1745 -4380_78102,292,4380_113498,Town Centre,114049-00016-1,1,4380_7778208_4780502,4380_1745 -4380_78102,294,4380_113499,Town Centre,114053-00018-1,1,4380_7778208_4780502,4380_1745 -4380_78113,296,4380_1135,Dublin via Airport,50179-00021-1,1,4380_7778208_1000908,4380_18 -4380_77955,292,4380_11350,Enfield,57616-00016-1,0,4380_7778208_1150101,4380_248 -4380_78102,293,4380_113500,Town Centre,114051-00017-1,1,4380_7778208_4780502,4380_1745 -4380_78102,296,4380_113501,Town Centre,114057-00021-1,1,4380_7778208_4780502,4380_1747 -4380_78102,295,4380_113502,Town Centre,114055-00019-1,1,4380_7778208_4780502,4380_1745 -4380_78100,285,4380_113508,Rosses Point,112921-00009-1,0,4380_7778208_4720502,4380_1748 -4380_78100,288,4380_113509,Rosses Point,112919-00011-1,0,4380_7778208_4720502,4380_1748 -4380_77955,292,4380_11351,Mullingar,58118-00016-1,0,4380_7778208_1150112,4380_241 -4380_78100,286,4380_113510,Rosses Point,112917-00010-1,0,4380_7778208_4720502,4380_1748 -4380_78100,289,4380_113511,Rosses Point,112915-00014-1,0,4380_7778208_4720502,4380_1748 -4380_78100,287,4380_113512,Rosses Point,112913-00012-1,0,4380_7778208_4720502,4380_1748 -4380_78100,292,4380_113513,Rosses Point,112918-00016-1,0,4380_7778208_4720502,4380_1748 -4380_78100,290,4380_113514,Rosses Point,112922-00015-1,0,4380_7778208_4720502,4380_1748 -4380_78100,294,4380_113515,Rosses Point,112914-00018-1,0,4380_7778208_4720502,4380_1748 -4380_78100,293,4380_113516,Rosses Point,112920-00017-1,0,4380_7778208_4720502,4380_1748 -4380_78100,295,4380_113517,Rosses Point,112916-00019-1,0,4380_7778208_4720502,4380_1748 -4380_78100,291,4380_113519,Rosses Point,112923-00013-1,0,4380_7778208_4720502,4380_1748 -4380_77955,292,4380_11352,Mullingar,58231-00016-1,0,4380_7778208_1150116,4380_243 -4380_78100,296,4380_113520,Rosses Point,112924-00021-1,0,4380_7778208_4720502,4380_1748 -4380_78100,285,4380_113526,Rosses Point,112748-00009-1,0,4380_7778208_4720501,4380_1748 -4380_78100,288,4380_113527,Rosses Point,112742-00011-1,0,4380_7778208_4720501,4380_1748 -4380_78100,286,4380_113528,Rosses Point,112750-00010-1,0,4380_7778208_4720501,4380_1748 -4380_78100,289,4380_113529,Rosses Point,112746-00014-1,0,4380_7778208_4720501,4380_1748 -4380_77955,293,4380_11353,Enfield,57610-00017-1,0,4380_7778208_1150101,4380_248 -4380_78100,287,4380_113530,Rosses Point,112744-00012-1,0,4380_7778208_4720501,4380_1748 -4380_78100,292,4380_113531,Rosses Point,112751-00016-1,0,4380_7778208_4720501,4380_1748 -4380_78100,290,4380_113532,Rosses Point,112749-00015-1,0,4380_7778208_4720501,4380_1748 -4380_78100,294,4380_113533,Rosses Point,112745-00018-1,0,4380_7778208_4720501,4380_1748 -4380_78100,293,4380_113534,Rosses Point,112743-00017-1,0,4380_7778208_4720501,4380_1748 -4380_78100,295,4380_113535,Rosses Point,112747-00019-1,0,4380_7778208_4720501,4380_1748 -4380_77955,293,4380_11354,Mullingar,58115-00017-1,0,4380_7778208_1150112,4380_241 -4380_78100,297,4380_113542,Rosses Point,112935-00008-1,0,4380_7778208_4720502,4380_1748 -4380_78100,285,4380_113543,Rosses Point,113309-00009-1,0,4380_7778208_4720504,4380_1749 -4380_78100,288,4380_113545,Rosses Point,113313-00011-1,0,4380_7778208_4720504,4380_1749 -4380_78100,286,4380_113546,Rosses Point,113311-00010-1,0,4380_7778208_4720504,4380_1749 -4380_78100,291,4380_113547,Rosses Point,112752-00013-1,0,4380_7778208_4720501,4380_1750 -4380_78100,289,4380_113548,Rosses Point,113307-00014-1,0,4380_7778208_4720504,4380_1749 -4380_78100,287,4380_113549,Rosses Point,113315-00012-1,0,4380_7778208_4720504,4380_1749 -4380_77955,293,4380_11355,Mullingar,58229-00017-1,0,4380_7778208_1150116,4380_243 -4380_78100,292,4380_113550,Rosses Point,113312-00016-1,0,4380_7778208_4720504,4380_1749 -4380_78100,290,4380_113551,Rosses Point,113310-00015-1,0,4380_7778208_4720504,4380_1749 -4380_78100,294,4380_113552,Rosses Point,113316-00018-1,0,4380_7778208_4720504,4380_1749 -4380_78100,293,4380_113553,Rosses Point,113314-00017-1,0,4380_7778208_4720504,4380_1749 -4380_78100,296,4380_113554,Rosses Point,112753-00021-1,0,4380_7778208_4720501,4380_1750 -4380_78100,295,4380_113555,Rosses Point,113308-00019-1,0,4380_7778208_4720504,4380_1749 -4380_77955,290,4380_11356,Mullingar,58233-00015-1,0,4380_7778208_1150116,4380_243 -4380_78100,285,4380_113561,Rosses Point,112944-00009-1,0,4380_7778208_4720502,4380_1748 -4380_78100,288,4380_113563,Rosses Point,112938-00011-1,0,4380_7778208_4720502,4380_1748 -4380_78100,286,4380_113564,Rosses Point,112942-00010-1,0,4380_7778208_4720502,4380_1748 -4380_78100,291,4380_113565,Rosses Point,113116-00013-1,0,4380_7778208_4720503,4380_1749 -4380_78100,289,4380_113566,Rosses Point,112940-00014-1,0,4380_7778208_4720502,4380_1748 -4380_78100,287,4380_113567,Rosses Point,112946-00012-1,0,4380_7778208_4720502,4380_1748 -4380_78100,292,4380_113568,Rosses Point,112943-00016-1,0,4380_7778208_4720502,4380_1748 -4380_78100,290,4380_113569,Rosses Point,112945-00015-1,0,4380_7778208_4720502,4380_1748 -4380_77955,294,4380_11357,Enfield,57614-00018-1,0,4380_7778208_1150101,4380_248 -4380_78100,294,4380_113570,Rosses Point,112947-00018-1,0,4380_7778208_4720502,4380_1748 -4380_78100,293,4380_113571,Rosses Point,112939-00017-1,0,4380_7778208_4720502,4380_1748 -4380_78100,296,4380_113572,Rosses Point,113117-00021-1,0,4380_7778208_4720503,4380_1749 -4380_78100,295,4380_113573,Rosses Point,112941-00019-1,0,4380_7778208_4720502,4380_1748 -4380_77955,294,4380_11358,Mullingar,58116-00018-1,0,4380_7778208_1150112,4380_241 -4380_78100,297,4380_113580,Rosses Point,112767-00008-1,0,4380_7778208_4720501,4380_1748 -4380_78100,285,4380_113581,Rosses Point,113122-00009-1,0,4380_7778208_4720503,4380_1749 -4380_78100,288,4380_113583,Rosses Point,113124-00011-1,0,4380_7778208_4720503,4380_1749 -4380_78100,286,4380_113584,Rosses Point,113118-00010-1,0,4380_7778208_4720503,4380_1749 -4380_78100,291,4380_113585,Rosses Point,112949-00013-1,0,4380_7778208_4720502,4380_1750 -4380_78100,289,4380_113586,Rosses Point,113120-00014-1,0,4380_7778208_4720503,4380_1749 -4380_78100,287,4380_113587,Rosses Point,113126-00012-1,0,4380_7778208_4720503,4380_1749 -4380_78100,292,4380_113588,Rosses Point,113119-00016-1,0,4380_7778208_4720503,4380_1749 -4380_78100,290,4380_113589,Rosses Point,113123-00015-1,0,4380_7778208_4720503,4380_1749 -4380_77955,294,4380_11359,Mullingar,58230-00018-1,0,4380_7778208_1150116,4380_243 -4380_78100,294,4380_113590,Rosses Point,113127-00018-1,0,4380_7778208_4720503,4380_1749 -4380_78100,293,4380_113591,Rosses Point,113125-00017-1,0,4380_7778208_4720503,4380_1749 -4380_78100,296,4380_113592,Rosses Point,112950-00021-1,0,4380_7778208_4720502,4380_1750 -4380_78100,295,4380_113593,Rosses Point,113121-00019-1,0,4380_7778208_4720503,4380_1749 -4380_78100,285,4380_113599,Rosses Point,112768-00009-1,0,4380_7778208_4720501,4380_1748 -4380_77955,295,4380_11360,Enfield,57613-00019-1,0,4380_7778208_1150101,4380_248 -4380_78100,288,4380_113601,Rosses Point,112776-00011-1,0,4380_7778208_4720501,4380_1748 -4380_78100,286,4380_113602,Rosses Point,112778-00010-1,0,4380_7778208_4720501,4380_1748 -4380_78100,291,4380_113603,Rosses Point,112772-00013-1,0,4380_7778208_4720501,4380_1749 -4380_78100,289,4380_113604,Rosses Point,112770-00014-1,0,4380_7778208_4720501,4380_1748 -4380_78100,287,4380_113605,Rosses Point,112774-00012-1,0,4380_7778208_4720501,4380_1748 -4380_78100,292,4380_113606,Rosses Point,112779-00016-1,0,4380_7778208_4720501,4380_1748 -4380_78100,290,4380_113607,Rosses Point,112769-00015-1,0,4380_7778208_4720501,4380_1748 -4380_78100,294,4380_113608,Rosses Point,112775-00018-1,0,4380_7778208_4720501,4380_1748 -4380_78100,293,4380_113609,Rosses Point,112777-00017-1,0,4380_7778208_4720501,4380_1748 -4380_77955,295,4380_11361,Mullingar,58117-00019-1,0,4380_7778208_1150112,4380_241 -4380_78100,296,4380_113610,Rosses Point,112773-00021-1,0,4380_7778208_4720501,4380_1749 -4380_78100,295,4380_113611,Rosses Point,112771-00019-1,0,4380_7778208_4720501,4380_1748 -4380_78100,297,4380_113618,Rosses Point,112961-00008-1,0,4380_7778208_4720502,4380_1748 -4380_78100,285,4380_113619,Rosses Point,113337-00009-1,0,4380_7778208_4720504,4380_1749 -4380_77955,295,4380_11362,Mullingar,58232-00019-1,0,4380_7778208_1150116,4380_243 -4380_78100,288,4380_113621,Rosses Point,113335-00011-1,0,4380_7778208_4720504,4380_1749 -4380_78100,286,4380_113622,Rosses Point,113339-00010-1,0,4380_7778208_4720504,4380_1749 -4380_78100,291,4380_113623,Rosses Point,113331-00013-1,0,4380_7778208_4720504,4380_1750 -4380_78100,289,4380_113624,Rosses Point,113333-00014-1,0,4380_7778208_4720504,4380_1749 -4380_78100,287,4380_113625,Rosses Point,113329-00012-1,0,4380_7778208_4720504,4380_1749 -4380_78100,292,4380_113626,Rosses Point,113340-00016-1,0,4380_7778208_4720504,4380_1749 -4380_78100,290,4380_113627,Rosses Point,113338-00015-1,0,4380_7778208_4720504,4380_1749 -4380_78100,294,4380_113628,Rosses Point,113330-00018-1,0,4380_7778208_4720504,4380_1749 -4380_78100,293,4380_113629,Rosses Point,113336-00017-1,0,4380_7778208_4720504,4380_1749 -4380_77955,296,4380_11363,Enfield,57612-00021-1,0,4380_7778208_1150101,4380_244 -4380_78100,296,4380_113630,Rosses Point,113332-00021-1,0,4380_7778208_4720504,4380_1750 -4380_78100,295,4380_113631,Rosses Point,113334-00019-1,0,4380_7778208_4720504,4380_1749 -4380_78100,297,4380_113638,Rosses Point,113142-00008-1,0,4380_7778208_4720503,4380_1748 -4380_78100,285,4380_113639,Rosses Point,112970-00009-1,0,4380_7778208_4720502,4380_1749 -4380_78100,288,4380_113641,Rosses Point,112972-00011-1,0,4380_7778208_4720502,4380_1749 -4380_78100,286,4380_113642,Rosses Point,112966-00010-1,0,4380_7778208_4720502,4380_1749 -4380_78100,291,4380_113643,Rosses Point,113140-00013-1,0,4380_7778208_4720503,4380_1750 -4380_78100,289,4380_113644,Rosses Point,112968-00014-1,0,4380_7778208_4720502,4380_1749 -4380_78100,287,4380_113645,Rosses Point,112964-00012-1,0,4380_7778208_4720502,4380_1749 -4380_78100,292,4380_113646,Rosses Point,112967-00016-1,0,4380_7778208_4720502,4380_1749 -4380_78100,290,4380_113647,Rosses Point,112971-00015-1,0,4380_7778208_4720502,4380_1749 -4380_78100,294,4380_113648,Rosses Point,112965-00018-1,0,4380_7778208_4720502,4380_1749 -4380_78100,293,4380_113649,Rosses Point,112973-00017-1,0,4380_7778208_4720502,4380_1749 -4380_78100,296,4380_113650,Rosses Point,113141-00021-1,0,4380_7778208_4720503,4380_1750 -4380_78100,295,4380_113651,Rosses Point,112969-00019-1,0,4380_7778208_4720502,4380_1749 -4380_78100,297,4380_113658,Rosses Point,112793-00008-1,0,4380_7778208_4720501,4380_1748 -4380_78100,285,4380_113659,Rosses Point,113143-00009-1,0,4380_7778208_4720503,4380_1749 -4380_78100,288,4380_113661,Rosses Point,113147-00011-1,0,4380_7778208_4720503,4380_1749 -4380_78100,286,4380_113662,Rosses Point,113149-00010-1,0,4380_7778208_4720503,4380_1749 -4380_78100,291,4380_113663,Rosses Point,112974-00013-1,0,4380_7778208_4720502,4380_1750 -4380_78100,289,4380_113664,Rosses Point,113151-00014-1,0,4380_7778208_4720503,4380_1749 -4380_78100,287,4380_113665,Rosses Point,113145-00012-1,0,4380_7778208_4720503,4380_1749 -4380_78100,292,4380_113666,Rosses Point,113150-00016-1,0,4380_7778208_4720503,4380_1749 -4380_78100,290,4380_113667,Rosses Point,113144-00015-1,0,4380_7778208_4720503,4380_1749 -4380_78100,294,4380_113668,Rosses Point,113146-00018-1,0,4380_7778208_4720503,4380_1749 -4380_78100,293,4380_113669,Rosses Point,113148-00017-1,0,4380_7778208_4720503,4380_1749 -4380_78100,296,4380_113670,Rosses Point,112975-00021-1,0,4380_7778208_4720502,4380_1750 -4380_78100,295,4380_113671,Rosses Point,113152-00019-1,0,4380_7778208_4720503,4380_1749 -4380_78100,297,4380_113678,Rosses Point,113354-00008-1,0,4380_7778208_4720504,4380_1748 -4380_78100,285,4380_113679,Rosses Point,112798-00009-1,0,4380_7778208_4720501,4380_1749 -4380_78100,288,4380_113681,Rosses Point,112794-00011-1,0,4380_7778208_4720501,4380_1749 -4380_78100,286,4380_113682,Rosses Point,112802-00010-1,0,4380_7778208_4720501,4380_1749 -4380_78100,291,4380_113683,Rosses Point,112796-00013-1,0,4380_7778208_4720501,4380_1750 -4380_78100,289,4380_113684,Rosses Point,112800-00014-1,0,4380_7778208_4720501,4380_1749 -4380_78100,287,4380_113685,Rosses Point,112804-00012-1,0,4380_7778208_4720501,4380_1749 -4380_78100,292,4380_113686,Rosses Point,112803-00016-1,0,4380_7778208_4720501,4380_1749 -4380_78100,290,4380_113687,Rosses Point,112799-00015-1,0,4380_7778208_4720501,4380_1749 -4380_78100,294,4380_113688,Rosses Point,112805-00018-1,0,4380_7778208_4720501,4380_1749 -4380_78100,293,4380_113689,Rosses Point,112795-00017-1,0,4380_7778208_4720501,4380_1749 -4380_77955,285,4380_11369,Mullingar,9546-00009-1,0,4380_7778208_1150109,4380_240 -4380_78100,296,4380_113690,Rosses Point,112797-00021-1,0,4380_7778208_4720501,4380_1750 -4380_78100,295,4380_113691,Rosses Point,112801-00019-1,0,4380_7778208_4720501,4380_1749 -4380_78100,297,4380_113698,Rosses Point,112989-00008-1,0,4380_7778208_4720502,4380_1748 -4380_78100,285,4380_113699,Rosses Point,113361-00009-1,0,4380_7778208_4720504,4380_1749 -4380_77955,286,4380_11370,Mullingar,9548-00010-1,0,4380_7778208_1150109,4380_240 -4380_78100,288,4380_113701,Rosses Point,113359-00011-1,0,4380_7778208_4720504,4380_1749 -4380_78100,286,4380_113702,Rosses Point,113365-00010-1,0,4380_7778208_4720504,4380_1749 -4380_78100,291,4380_113703,Rosses Point,113357-00013-1,0,4380_7778208_4720504,4380_1750 -4380_78100,289,4380_113704,Rosses Point,113355-00014-1,0,4380_7778208_4720504,4380_1749 -4380_78100,287,4380_113705,Rosses Point,113363-00012-1,0,4380_7778208_4720504,4380_1749 -4380_78100,292,4380_113706,Rosses Point,113366-00016-1,0,4380_7778208_4720504,4380_1749 -4380_78100,290,4380_113707,Rosses Point,113362-00015-1,0,4380_7778208_4720504,4380_1749 -4380_78100,294,4380_113708,Rosses Point,113364-00018-1,0,4380_7778208_4720504,4380_1749 -4380_78100,293,4380_113709,Rosses Point,113360-00017-1,0,4380_7778208_4720504,4380_1749 -4380_77955,288,4380_11371,Mullingar,9550-00011-1,0,4380_7778208_1150109,4380_240 -4380_78100,296,4380_113710,Rosses Point,113358-00021-1,0,4380_7778208_4720504,4380_1750 -4380_78100,295,4380_113711,Rosses Point,113356-00019-1,0,4380_7778208_4720504,4380_1749 -4380_78100,297,4380_113718,Rosses Point,113166-00008-1,0,4380_7778208_4720503,4380_1748 -4380_78100,285,4380_113719,Rosses Point,112992-00009-1,0,4380_7778208_4720502,4380_1749 -4380_77955,287,4380_11372,Mullingar,9552-00012-1,0,4380_7778208_1150109,4380_240 -4380_78100,288,4380_113721,Rosses Point,112994-00011-1,0,4380_7778208_4720502,4380_1749 -4380_78100,286,4380_113722,Rosses Point,112996-00010-1,0,4380_7778208_4720502,4380_1749 -4380_78100,291,4380_113723,Rosses Point,113167-00013-1,0,4380_7778208_4720503,4380_1750 -4380_78100,289,4380_113724,Rosses Point,112998-00014-1,0,4380_7778208_4720502,4380_1749 -4380_78100,287,4380_113725,Rosses Point,112990-00012-1,0,4380_7778208_4720502,4380_1749 -4380_78100,292,4380_113726,Rosses Point,112997-00016-1,0,4380_7778208_4720502,4380_1749 -4380_78100,290,4380_113727,Rosses Point,112993-00015-1,0,4380_7778208_4720502,4380_1749 -4380_78100,294,4380_113728,Rosses Point,112991-00018-1,0,4380_7778208_4720502,4380_1749 -4380_78100,293,4380_113729,Rosses Point,112995-00017-1,0,4380_7778208_4720502,4380_1749 -4380_77955,289,4380_11373,Mullingar,9544-00014-1,0,4380_7778208_1150109,4380_240 -4380_78100,296,4380_113730,Rosses Point,113168-00021-1,0,4380_7778208_4720503,4380_1750 -4380_78100,295,4380_113731,Rosses Point,112999-00019-1,0,4380_7778208_4720502,4380_1749 -4380_78100,297,4380_113738,Rosses Point,112819-00008-1,0,4380_7778208_4720501,4380_1748 -4380_78100,285,4380_113739,Rosses Point,113177-00009-1,0,4380_7778208_4720503,4380_1749 -4380_77955,290,4380_11374,Mullingar,58037-00015-1,0,4380_7778208_1150109,4380_240 -4380_78100,288,4380_113741,Rosses Point,113173-00011-1,0,4380_7778208_4720503,4380_1749 -4380_78100,286,4380_113742,Rosses Point,113169-00010-1,0,4380_7778208_4720503,4380_1749 -4380_78100,291,4380_113743,Rosses Point,113001-00013-1,0,4380_7778208_4720502,4380_1750 -4380_78100,289,4380_113744,Rosses Point,113171-00014-1,0,4380_7778208_4720503,4380_1749 -4380_78100,287,4380_113745,Rosses Point,113175-00012-1,0,4380_7778208_4720503,4380_1749 -4380_78100,292,4380_113746,Rosses Point,113170-00016-1,0,4380_7778208_4720503,4380_1749 -4380_78100,290,4380_113747,Rosses Point,113178-00015-1,0,4380_7778208_4720503,4380_1749 -4380_78100,294,4380_113748,Rosses Point,113176-00018-1,0,4380_7778208_4720503,4380_1749 -4380_78100,293,4380_113749,Rosses Point,113174-00017-1,0,4380_7778208_4720503,4380_1749 -4380_77955,292,4380_11375,Mullingar,58038-00016-1,0,4380_7778208_1150109,4380_240 -4380_78100,296,4380_113750,Rosses Point,113002-00021-1,0,4380_7778208_4720502,4380_1750 -4380_78100,295,4380_113751,Rosses Point,113172-00019-1,0,4380_7778208_4720503,4380_1749 -4380_78100,297,4380_113758,Rosses Point,113380-00008-1,0,4380_7778208_4720504,4380_1748 -4380_78100,285,4380_113759,Rosses Point,112826-00009-1,0,4380_7778208_4720501,4380_1749 -4380_77955,293,4380_11376,Mullingar,58036-00017-1,0,4380_7778208_1150109,4380_240 -4380_78100,288,4380_113761,Rosses Point,112822-00011-1,0,4380_7778208_4720501,4380_1749 -4380_78100,286,4380_113762,Rosses Point,112824-00010-1,0,4380_7778208_4720501,4380_1749 -4380_78100,291,4380_113763,Rosses Point,112830-00013-1,0,4380_7778208_4720501,4380_1750 -4380_78100,289,4380_113764,Rosses Point,112820-00014-1,0,4380_7778208_4720501,4380_1749 -4380_78100,287,4380_113765,Rosses Point,112828-00012-1,0,4380_7778208_4720501,4380_1749 -4380_78100,292,4380_113766,Rosses Point,112825-00016-1,0,4380_7778208_4720501,4380_1749 -4380_78100,290,4380_113767,Rosses Point,112827-00015-1,0,4380_7778208_4720501,4380_1749 -4380_78100,294,4380_113768,Rosses Point,112829-00018-1,0,4380_7778208_4720501,4380_1749 -4380_78100,293,4380_113769,Rosses Point,112823-00017-1,0,4380_7778208_4720501,4380_1749 -4380_77955,294,4380_11377,Mullingar,58039-00018-1,0,4380_7778208_1150109,4380_240 -4380_78100,296,4380_113770,Rosses Point,112831-00021-1,0,4380_7778208_4720501,4380_1750 -4380_78100,295,4380_113771,Rosses Point,112821-00019-1,0,4380_7778208_4720501,4380_1749 -4380_78100,297,4380_113778,Rosses Point,113015-00008-1,0,4380_7778208_4720502,4380_1748 -4380_78100,285,4380_113779,Rosses Point,113385-00009-1,0,4380_7778208_4720504,4380_1749 -4380_77955,295,4380_11378,Mullingar,58040-00019-1,0,4380_7778208_1150109,4380_240 -4380_78100,288,4380_113781,Rosses Point,113389-00011-1,0,4380_7778208_4720504,4380_1749 -4380_78100,286,4380_113782,Rosses Point,113383-00010-1,0,4380_7778208_4720504,4380_1749 -4380_78100,291,4380_113783,Rosses Point,113381-00013-1,0,4380_7778208_4720504,4380_1750 -4380_78100,289,4380_113784,Rosses Point,113387-00014-1,0,4380_7778208_4720504,4380_1749 -4380_78100,287,4380_113785,Rosses Point,113391-00012-1,0,4380_7778208_4720504,4380_1749 -4380_78100,292,4380_113786,Rosses Point,113384-00016-1,0,4380_7778208_4720504,4380_1749 -4380_78100,290,4380_113787,Rosses Point,113386-00015-1,0,4380_7778208_4720504,4380_1749 -4380_78100,294,4380_113788,Rosses Point,113392-00018-1,0,4380_7778208_4720504,4380_1749 -4380_78100,293,4380_113789,Rosses Point,113390-00017-1,0,4380_7778208_4720504,4380_1749 -4380_78100,296,4380_113790,Rosses Point,113382-00021-1,0,4380_7778208_4720504,4380_1750 -4380_78100,295,4380_113791,Rosses Point,113388-00019-1,0,4380_7778208_4720504,4380_1749 -4380_78100,297,4380_113798,Rosses Point,113192-00008-1,0,4380_7778208_4720503,4380_1748 -4380_78100,285,4380_113799,Rosses Point,113024-00009-1,0,4380_7778208_4720502,4380_1749 -4380_78100,288,4380_113801,Rosses Point,113016-00011-1,0,4380_7778208_4720502,4380_1749 -4380_78100,286,4380_113802,Rosses Point,113020-00010-1,0,4380_7778208_4720502,4380_1749 -4380_78100,291,4380_113803,Rosses Point,113193-00013-1,0,4380_7778208_4720503,4380_1750 -4380_78100,289,4380_113804,Rosses Point,113018-00014-1,0,4380_7778208_4720502,4380_1749 -4380_78100,287,4380_113805,Rosses Point,113022-00012-1,0,4380_7778208_4720502,4380_1749 -4380_78100,292,4380_113806,Rosses Point,113021-00016-1,0,4380_7778208_4720502,4380_1749 -4380_78100,290,4380_113807,Rosses Point,113025-00015-1,0,4380_7778208_4720502,4380_1749 -4380_78100,294,4380_113808,Rosses Point,113023-00018-1,0,4380_7778208_4720502,4380_1749 -4380_78100,293,4380_113809,Rosses Point,113017-00017-1,0,4380_7778208_4720502,4380_1749 -4380_78100,296,4380_113810,Rosses Point,113194-00021-1,0,4380_7778208_4720503,4380_1750 -4380_78100,295,4380_113811,Rosses Point,113019-00019-1,0,4380_7778208_4720502,4380_1749 -4380_78100,297,4380_113818,Rosses Point,112845-00008-1,0,4380_7778208_4720501,4380_1748 -4380_78100,285,4380_113819,Rosses Point,113195-00009-1,0,4380_7778208_4720503,4380_1749 -4380_78100,288,4380_113821,Rosses Point,113203-00011-1,0,4380_7778208_4720503,4380_1749 -4380_78100,286,4380_113822,Rosses Point,113201-00010-1,0,4380_7778208_4720503,4380_1749 -4380_78100,291,4380_113823,Rosses Point,113026-00013-1,0,4380_7778208_4720502,4380_1750 -4380_78100,289,4380_113824,Rosses Point,113199-00014-1,0,4380_7778208_4720503,4380_1749 -4380_78100,287,4380_113825,Rosses Point,113197-00012-1,0,4380_7778208_4720503,4380_1749 -4380_78100,292,4380_113826,Rosses Point,113202-00016-1,0,4380_7778208_4720503,4380_1749 -4380_78100,290,4380_113827,Rosses Point,113196-00015-1,0,4380_7778208_4720503,4380_1749 -4380_78100,294,4380_113828,Rosses Point,113198-00018-1,0,4380_7778208_4720503,4380_1749 -4380_78100,293,4380_113829,Rosses Point,113204-00017-1,0,4380_7778208_4720503,4380_1749 -4380_78100,296,4380_113830,Rosses Point,113027-00021-1,0,4380_7778208_4720502,4380_1750 -4380_78100,295,4380_113831,Rosses Point,113200-00019-1,0,4380_7778208_4720503,4380_1749 -4380_78100,297,4380_113838,Rosses Point,113406-00008-1,0,4380_7778208_4720504,4380_1748 -4380_78100,285,4380_113839,Rosses Point,112850-00009-1,0,4380_7778208_4720501,4380_1749 -4380_78100,288,4380_113841,Rosses Point,112848-00011-1,0,4380_7778208_4720501,4380_1749 -4380_78100,286,4380_113842,Rosses Point,112856-00010-1,0,4380_7778208_4720501,4380_1749 -4380_78100,291,4380_113843,Rosses Point,112852-00013-1,0,4380_7778208_4720501,4380_1750 -4380_78100,289,4380_113844,Rosses Point,112846-00014-1,0,4380_7778208_4720501,4380_1749 -4380_78100,287,4380_113845,Rosses Point,112854-00012-1,0,4380_7778208_4720501,4380_1749 -4380_78100,292,4380_113846,Rosses Point,112857-00016-1,0,4380_7778208_4720501,4380_1749 -4380_78100,290,4380_113847,Rosses Point,112851-00015-1,0,4380_7778208_4720501,4380_1749 -4380_78100,294,4380_113848,Rosses Point,112855-00018-1,0,4380_7778208_4720501,4380_1749 -4380_78100,293,4380_113849,Rosses Point,112849-00017-1,0,4380_7778208_4720501,4380_1749 -4380_78100,296,4380_113850,Rosses Point,112853-00021-1,0,4380_7778208_4720501,4380_1750 -4380_78100,295,4380_113851,Rosses Point,112847-00019-1,0,4380_7778208_4720501,4380_1749 -4380_78100,297,4380_113858,Rosses Point,113039-00008-1,0,4380_7778208_4720502,4380_1748 -4380_78100,285,4380_113859,Rosses Point,113413-00009-1,0,4380_7778208_4720504,4380_1749 -4380_77955,285,4380_11386,Enfield,9285-00009-1,0,4380_7778208_1150105,4380_238 -4380_78100,288,4380_113861,Rosses Point,113407-00011-1,0,4380_7778208_4720504,4380_1749 -4380_78100,286,4380_113862,Rosses Point,113411-00010-1,0,4380_7778208_4720504,4380_1749 -4380_78100,291,4380_113863,Rosses Point,113415-00013-1,0,4380_7778208_4720504,4380_1750 -4380_78100,289,4380_113864,Rosses Point,113409-00014-1,0,4380_7778208_4720504,4380_1749 -4380_78100,287,4380_113865,Rosses Point,113417-00012-1,0,4380_7778208_4720504,4380_1749 -4380_78100,292,4380_113866,Rosses Point,113412-00016-1,0,4380_7778208_4720504,4380_1749 -4380_78100,290,4380_113867,Rosses Point,113414-00015-1,0,4380_7778208_4720504,4380_1749 -4380_78100,294,4380_113868,Rosses Point,113418-00018-1,0,4380_7778208_4720504,4380_1749 -4380_78100,293,4380_113869,Rosses Point,113408-00017-1,0,4380_7778208_4720504,4380_1749 -4380_77955,286,4380_11387,Enfield,9294-00010-1,0,4380_7778208_1150105,4380_238 -4380_78100,296,4380_113870,Rosses Point,113416-00021-1,0,4380_7778208_4720504,4380_1750 -4380_78100,295,4380_113871,Rosses Point,113410-00019-1,0,4380_7778208_4720504,4380_1749 -4380_78100,297,4380_113878,Rosses Point,113220-00008-1,0,4380_7778208_4720503,4380_1748 -4380_78100,285,4380_113879,Rosses Point,113044-00009-1,0,4380_7778208_4720502,4380_1749 -4380_77955,297,4380_11388,Enfield,57685-00008-1,0,4380_7778208_1150102,4380_244 -4380_78100,288,4380_113881,Rosses Point,113048-00011-1,0,4380_7778208_4720502,4380_1749 -4380_78100,286,4380_113882,Rosses Point,113050-00010-1,0,4380_7778208_4720502,4380_1749 -4380_78100,291,4380_113883,Rosses Point,113218-00013-1,0,4380_7778208_4720503,4380_1750 -4380_78100,289,4380_113884,Rosses Point,113042-00014-1,0,4380_7778208_4720502,4380_1749 -4380_78100,287,4380_113885,Rosses Point,113046-00012-1,0,4380_7778208_4720502,4380_1749 -4380_78100,292,4380_113886,Rosses Point,113051-00016-1,0,4380_7778208_4720502,4380_1749 -4380_78100,290,4380_113887,Rosses Point,113045-00015-1,0,4380_7778208_4720502,4380_1749 -4380_78100,294,4380_113888,Rosses Point,113047-00018-1,0,4380_7778208_4720502,4380_1749 -4380_78100,293,4380_113889,Rosses Point,113049-00017-1,0,4380_7778208_4720502,4380_1749 -4380_77955,288,4380_11389,Enfield,9321-00011-1,0,4380_7778208_1150105,4380_238 -4380_78100,296,4380_113890,Rosses Point,113219-00021-1,0,4380_7778208_4720503,4380_1750 -4380_78100,295,4380_113891,Rosses Point,113043-00019-1,0,4380_7778208_4720502,4380_1749 -4380_78100,297,4380_113898,Rosses Point,112871-00008-1,0,4380_7778208_4720501,4380_1748 -4380_78100,285,4380_113899,Rosses Point,113221-00009-1,0,4380_7778208_4720503,4380_1749 -4380_77955,287,4380_11390,Enfield,9339-00012-1,0,4380_7778208_1150105,4380_238 -4380_78100,288,4380_113901,Rosses Point,113227-00011-1,0,4380_7778208_4720503,4380_1749 -4380_78100,286,4380_113902,Rosses Point,113229-00010-1,0,4380_7778208_4720503,4380_1749 -4380_78100,291,4380_113903,Rosses Point,113053-00013-1,0,4380_7778208_4720502,4380_1750 -4380_78100,289,4380_113904,Rosses Point,113225-00014-1,0,4380_7778208_4720503,4380_1749 -4380_78100,287,4380_113905,Rosses Point,113223-00012-1,0,4380_7778208_4720503,4380_1749 -4380_78100,292,4380_113906,Rosses Point,113230-00016-1,0,4380_7778208_4720503,4380_1749 -4380_78100,290,4380_113907,Rosses Point,113222-00015-1,0,4380_7778208_4720503,4380_1749 -4380_78100,294,4380_113908,Rosses Point,113224-00018-1,0,4380_7778208_4720503,4380_1749 -4380_78100,293,4380_113909,Rosses Point,113228-00017-1,0,4380_7778208_4720503,4380_1749 -4380_77955,289,4380_11391,Enfield,9258-00014-1,0,4380_7778208_1150105,4380_238 -4380_78100,296,4380_113910,Rosses Point,113054-00021-1,0,4380_7778208_4720502,4380_1750 -4380_78100,295,4380_113911,Rosses Point,113226-00019-1,0,4380_7778208_4720503,4380_1749 -4380_78100,297,4380_113918,Rosses Point,113432-00008-1,0,4380_7778208_4720504,4380_1748 -4380_78100,285,4380_113919,Rosses Point,112878-00009-1,0,4380_7778208_4720501,4380_1749 -4380_77955,290,4380_11392,Enfield,57845-00015-1,0,4380_7778208_1150105,4380_238 -4380_78100,288,4380_113921,Rosses Point,112874-00011-1,0,4380_7778208_4720501,4380_1749 -4380_78100,286,4380_113922,Rosses Point,112880-00010-1,0,4380_7778208_4720501,4380_1749 -4380_78100,291,4380_113923,Rosses Point,112882-00013-1,0,4380_7778208_4720501,4380_1750 -4380_78100,289,4380_113924,Rosses Point,112872-00014-1,0,4380_7778208_4720501,4380_1749 -4380_78100,287,4380_113925,Rosses Point,112876-00012-1,0,4380_7778208_4720501,4380_1749 -4380_78100,292,4380_113926,Rosses Point,112881-00016-1,0,4380_7778208_4720501,4380_1749 -4380_78100,290,4380_113927,Rosses Point,112879-00015-1,0,4380_7778208_4720501,4380_1749 -4380_78100,294,4380_113928,Rosses Point,112877-00018-1,0,4380_7778208_4720501,4380_1749 -4380_78100,293,4380_113929,Rosses Point,112875-00017-1,0,4380_7778208_4720501,4380_1749 -4380_77955,291,4380_11393,Mullingar,9770-00013-1,0,4380_7778208_1150113,4380_239 -4380_78100,296,4380_113930,Rosses Point,112883-00021-1,0,4380_7778208_4720501,4380_1750 -4380_78100,295,4380_113931,Rosses Point,112873-00019-1,0,4380_7778208_4720501,4380_1749 -4380_78100,297,4380_113938,Rosses Point,113067-00008-1,0,4380_7778208_4720502,4380_1748 -4380_78100,285,4380_113939,Rosses Point,113443-00009-1,0,4380_7778208_4720504,4380_1749 -4380_77955,292,4380_11394,Enfield,57846-00016-1,0,4380_7778208_1150105,4380_238 -4380_78100,288,4380_113941,Rosses Point,113439-00011-1,0,4380_7778208_4720504,4380_1749 -4380_78100,286,4380_113942,Rosses Point,113437-00010-1,0,4380_7778208_4720504,4380_1749 -4380_78100,291,4380_113943,Rosses Point,113441-00013-1,0,4380_7778208_4720504,4380_1750 -4380_78100,289,4380_113944,Rosses Point,113435-00014-1,0,4380_7778208_4720504,4380_1749 -4380_78100,287,4380_113945,Rosses Point,113433-00012-1,0,4380_7778208_4720504,4380_1749 -4380_78100,292,4380_113946,Rosses Point,113438-00016-1,0,4380_7778208_4720504,4380_1749 -4380_78100,290,4380_113947,Rosses Point,113444-00015-1,0,4380_7778208_4720504,4380_1749 -4380_78100,294,4380_113948,Rosses Point,113434-00018-1,0,4380_7778208_4720504,4380_1749 -4380_78100,293,4380_113949,Rosses Point,113440-00017-1,0,4380_7778208_4720504,4380_1749 -4380_77955,293,4380_11395,Enfield,57844-00017-1,0,4380_7778208_1150105,4380_238 -4380_78100,296,4380_113950,Rosses Point,113442-00021-1,0,4380_7778208_4720504,4380_1750 -4380_78100,295,4380_113951,Rosses Point,113436-00019-1,0,4380_7778208_4720504,4380_1749 -4380_78100,297,4380_113958,Rosses Point,113246-00008-1,0,4380_7778208_4720503,4380_1748 -4380_78100,285,4380_113959,Rosses Point,113076-00009-1,0,4380_7778208_4720502,4380_1749 -4380_77955,294,4380_11396,Enfield,57847-00018-1,0,4380_7778208_1150105,4380_238 -4380_78100,288,4380_113961,Rosses Point,113068-00011-1,0,4380_7778208_4720502,4380_1749 -4380_78100,286,4380_113962,Rosses Point,113074-00010-1,0,4380_7778208_4720502,4380_1749 -4380_78100,291,4380_113963,Rosses Point,113244-00013-1,0,4380_7778208_4720503,4380_1750 -4380_78100,289,4380_113964,Rosses Point,113070-00014-1,0,4380_7778208_4720502,4380_1749 -4380_78100,287,4380_113965,Rosses Point,113072-00012-1,0,4380_7778208_4720502,4380_1749 -4380_78100,292,4380_113966,Rosses Point,113075-00016-1,0,4380_7778208_4720502,4380_1749 -4380_78100,290,4380_113967,Rosses Point,113077-00015-1,0,4380_7778208_4720502,4380_1749 -4380_78100,294,4380_113968,Rosses Point,113073-00018-1,0,4380_7778208_4720502,4380_1749 -4380_78100,293,4380_113969,Rosses Point,113069-00017-1,0,4380_7778208_4720502,4380_1749 -4380_77955,295,4380_11397,Enfield,57843-00019-1,0,4380_7778208_1150105,4380_238 -4380_78100,296,4380_113970,Rosses Point,113245-00021-1,0,4380_7778208_4720503,4380_1750 -4380_78100,295,4380_113971,Rosses Point,113071-00019-1,0,4380_7778208_4720502,4380_1749 -4380_78100,297,4380_113978,Rosses Point,112897-00008-1,0,4380_7778208_4720501,4380_1748 -4380_78100,285,4380_113979,Rosses Point,113249-00009-1,0,4380_7778208_4720503,4380_1749 -4380_77955,296,4380_11398,Mullingar,58151-00021-1,0,4380_7778208_1150113,4380_239 -4380_78100,288,4380_113981,Rosses Point,113247-00011-1,0,4380_7778208_4720503,4380_1749 -4380_78100,286,4380_113982,Rosses Point,113251-00010-1,0,4380_7778208_4720503,4380_1749 -4380_78100,291,4380_113983,Rosses Point,113078-00013-1,0,4380_7778208_4720502,4380_1750 -4380_78100,289,4380_113984,Rosses Point,113255-00014-1,0,4380_7778208_4720503,4380_1749 -4380_78100,287,4380_113985,Rosses Point,113253-00012-1,0,4380_7778208_4720503,4380_1749 -4380_78100,292,4380_113986,Rosses Point,113252-00016-1,0,4380_7778208_4720503,4380_1749 -4380_78100,290,4380_113987,Rosses Point,113250-00015-1,0,4380_7778208_4720503,4380_1749 -4380_78100,294,4380_113988,Rosses Point,113254-00018-1,0,4380_7778208_4720503,4380_1749 -4380_78100,293,4380_113989,Rosses Point,113248-00017-1,0,4380_7778208_4720503,4380_1749 -4380_78100,296,4380_113990,Rosses Point,113079-00021-1,0,4380_7778208_4720502,4380_1750 -4380_78100,295,4380_113991,Rosses Point,113256-00019-1,0,4380_7778208_4720503,4380_1749 -4380_78100,285,4380_113997,Rosses Point,112898-00009-1,0,4380_7778208_4720501,4380_1748 -4380_78100,288,4380_113998,Rosses Point,112900-00011-1,0,4380_7778208_4720501,4380_1748 -4380_78100,286,4380_113999,Rosses Point,112902-00010-1,0,4380_7778208_4720501,4380_1748 -4380_77946,297,4380_114,Dundalk,50170-00008-1,0,4380_7778208_1000908,4380_2 -4380_78100,289,4380_114000,Rosses Point,112906-00014-1,0,4380_7778208_4720501,4380_1748 -4380_78100,287,4380_114001,Rosses Point,112904-00012-1,0,4380_7778208_4720501,4380_1748 -4380_78100,292,4380_114002,Rosses Point,112903-00016-1,0,4380_7778208_4720501,4380_1748 -4380_78100,290,4380_114003,Rosses Point,112899-00015-1,0,4380_7778208_4720501,4380_1748 -4380_78100,294,4380_114004,Rosses Point,112905-00018-1,0,4380_7778208_4720501,4380_1748 -4380_78100,293,4380_114005,Rosses Point,112901-00017-1,0,4380_7778208_4720501,4380_1748 -4380_78100,295,4380_114006,Rosses Point,112907-00019-1,0,4380_7778208_4720501,4380_1748 -4380_78100,297,4380_114013,Rosses Point,113091-00008-1,0,4380_7778208_4720502,4380_1748 -4380_78100,285,4380_114014,Rosses Point,113468-00009-1,0,4380_7778208_4720504,4380_1749 -4380_78100,288,4380_114016,Rosses Point,113458-00011-1,0,4380_7778208_4720504,4380_1749 -4380_78100,286,4380_114017,Rosses Point,113466-00010-1,0,4380_7778208_4720504,4380_1749 -4380_78100,291,4380_114018,Rosses Point,113460-00013-1,0,4380_7778208_4720504,4380_1750 -4380_78100,289,4380_114019,Rosses Point,113462-00014-1,0,4380_7778208_4720504,4380_1749 -4380_78100,287,4380_114020,Rosses Point,113464-00012-1,0,4380_7778208_4720504,4380_1749 -4380_78100,292,4380_114021,Rosses Point,113467-00016-1,0,4380_7778208_4720504,4380_1749 -4380_78100,290,4380_114022,Rosses Point,113469-00015-1,0,4380_7778208_4720504,4380_1749 -4380_78100,294,4380_114023,Rosses Point,113465-00018-1,0,4380_7778208_4720504,4380_1749 -4380_78100,293,4380_114024,Rosses Point,113459-00017-1,0,4380_7778208_4720504,4380_1749 -4380_78100,296,4380_114025,Rosses Point,113461-00021-1,0,4380_7778208_4720504,4380_1750 -4380_78100,295,4380_114026,Rosses Point,113463-00019-1,0,4380_7778208_4720504,4380_1749 -4380_78100,297,4380_114033,Rosses Point,112909-00008-1,0,4380_7778208_4720501,4380_1748 -4380_78100,285,4380_114034,Rosses Point,113267-00009-1,0,4380_7778208_4720503,4380_1749 -4380_78100,288,4380_114036,Rosses Point,113269-00011-1,0,4380_7778208_4720503,4380_1749 -4380_78100,286,4380_114037,Rosses Point,113273-00010-1,0,4380_7778208_4720503,4380_1749 -4380_78100,291,4380_114038,Rosses Point,113094-00013-1,0,4380_7778208_4720502,4380_1750 -4380_78100,289,4380_114039,Rosses Point,113275-00014-1,0,4380_7778208_4720503,4380_1749 -4380_78100,287,4380_114040,Rosses Point,113271-00012-1,0,4380_7778208_4720503,4380_1749 -4380_78100,292,4380_114041,Rosses Point,113274-00016-1,0,4380_7778208_4720503,4380_1749 -4380_78100,290,4380_114042,Rosses Point,113268-00015-1,0,4380_7778208_4720503,4380_1749 -4380_78100,294,4380_114043,Rosses Point,113272-00018-1,0,4380_7778208_4720503,4380_1749 -4380_78100,293,4380_114044,Rosses Point,113270-00017-1,0,4380_7778208_4720503,4380_1749 -4380_78100,296,4380_114045,Rosses Point,113095-00021-1,0,4380_7778208_4720502,4380_1750 -4380_78100,295,4380_114046,Rosses Point,113276-00019-1,0,4380_7778208_4720503,4380_1749 -4380_77955,285,4380_11405,Mullingar via Summerhill,9830-00009-1,0,4380_7778208_1150115,4380_242 -4380_78100,297,4380_114053,Rosses Point,113097-00008-1,0,4380_7778208_4720502,4380_1748 -4380_78100,285,4380_114054,Rosses Point,113484-00009-1,0,4380_7778208_4720504,4380_1749 -4380_78100,288,4380_114056,Rosses Point,113482-00011-1,0,4380_7778208_4720504,4380_1749 -4380_78100,286,4380_114057,Rosses Point,113490-00010-1,0,4380_7778208_4720504,4380_1749 -4380_78100,291,4380_114058,Rosses Point,113486-00013-1,0,4380_7778208_4720504,4380_1750 -4380_78100,289,4380_114059,Rosses Point,113488-00014-1,0,4380_7778208_4720504,4380_1749 -4380_77955,286,4380_11406,Mullingar via Summerhill,9851-00010-1,0,4380_7778208_1150115,4380_242 -4380_78100,287,4380_114060,Rosses Point,113492-00012-1,0,4380_7778208_4720504,4380_1749 -4380_78100,292,4380_114061,Rosses Point,113491-00016-1,0,4380_7778208_4720504,4380_1749 -4380_78100,290,4380_114062,Rosses Point,113485-00015-1,0,4380_7778208_4720504,4380_1749 -4380_78100,294,4380_114063,Rosses Point,113493-00018-1,0,4380_7778208_4720504,4380_1749 -4380_78100,293,4380_114064,Rosses Point,113483-00017-1,0,4380_7778208_4720504,4380_1749 -4380_78100,296,4380_114065,Rosses Point,113487-00021-1,0,4380_7778208_4720504,4380_1750 -4380_78100,295,4380_114066,Rosses Point,113489-00019-1,0,4380_7778208_4720504,4380_1749 -4380_77955,288,4380_11407,Mullingar via Summerhill,9858-00011-1,0,4380_7778208_1150115,4380_242 -4380_78100,297,4380_114073,Rosses Point,112911-00008-1,0,4380_7778208_4720501,4380_1748 -4380_78100,285,4380_114074,Rosses Point,113293-00009-1,0,4380_7778208_4720503,4380_1749 -4380_78100,288,4380_114076,Rosses Point,113289-00011-1,0,4380_7778208_4720503,4380_1749 -4380_78100,286,4380_114077,Rosses Point,113295-00010-1,0,4380_7778208_4720503,4380_1749 -4380_78100,291,4380_114078,Rosses Point,113101-00013-1,0,4380_7778208_4720502,4380_1748 -4380_78100,289,4380_114079,Rosses Point,113287-00014-1,0,4380_7778208_4720503,4380_1749 -4380_77955,287,4380_11408,Mullingar via Summerhill,9872-00012-1,0,4380_7778208_1150115,4380_242 -4380_78100,287,4380_114080,Rosses Point,113291-00012-1,0,4380_7778208_4720503,4380_1749 -4380_78100,292,4380_114081,Rosses Point,113296-00016-1,0,4380_7778208_4720503,4380_1749 -4380_78100,290,4380_114082,Rosses Point,113294-00015-1,0,4380_7778208_4720503,4380_1749 -4380_78100,294,4380_114083,Rosses Point,113292-00018-1,0,4380_7778208_4720503,4380_1749 -4380_78100,293,4380_114084,Rosses Point,113290-00017-1,0,4380_7778208_4720503,4380_1749 -4380_78100,296,4380_114085,Rosses Point,113102-00021-1,0,4380_7778208_4720502,4380_1748 -4380_78100,295,4380_114086,Rosses Point,113288-00019-1,0,4380_7778208_4720503,4380_1749 -4380_78100,297,4380_114088,Rosses Point,113103-00008-1,0,4380_7778208_4720502,4380_1748 -4380_77955,289,4380_11409,Mullingar via Summerhill,9823-00014-1,0,4380_7778208_1150115,4380_242 -4380_78100,285,4380_114094,Rosses Point,113512-00009-1,0,4380_7778208_4720504,4380_1748 -4380_78100,288,4380_114096,Rosses Point,113506-00011-1,0,4380_7778208_4720504,4380_1748 -4380_78100,286,4380_114097,Rosses Point,113508-00010-1,0,4380_7778208_4720504,4380_1748 -4380_78100,291,4380_114098,Rosses Point,113516-00013-1,0,4380_7778208_4720504,4380_1749 -4380_78100,289,4380_114099,Rosses Point,113514-00014-1,0,4380_7778208_4720504,4380_1748 -4380_77955,290,4380_11410,Mullingar via Summerhill,58196-00015-1,0,4380_7778208_1150115,4380_242 -4380_78100,287,4380_114100,Rosses Point,113510-00012-1,0,4380_7778208_4720504,4380_1748 -4380_78100,292,4380_114101,Rosses Point,113509-00016-1,0,4380_7778208_4720504,4380_1748 -4380_78100,290,4380_114102,Rosses Point,113513-00015-1,0,4380_7778208_4720504,4380_1748 -4380_78100,294,4380_114103,Rosses Point,113511-00018-1,0,4380_7778208_4720504,4380_1748 -4380_78100,293,4380_114104,Rosses Point,113507-00017-1,0,4380_7778208_4720504,4380_1748 -4380_78100,296,4380_114105,Rosses Point,113517-00021-1,0,4380_7778208_4720504,4380_1749 -4380_78100,295,4380_114106,Rosses Point,113515-00019-1,0,4380_7778208_4720504,4380_1748 -4380_77955,291,4380_11411,Enfield,9695-00013-1,0,4380_7778208_1150112,4380_238 -4380_78100,285,4380_114112,Strandhill,112730-00009-1,1,4380_7778208_4720501,4380_1751 -4380_78100,288,4380_114113,Strandhill,112734-00011-1,1,4380_7778208_4720501,4380_1751 -4380_78100,286,4380_114114,Strandhill,112736-00010-1,1,4380_7778208_4720501,4380_1751 -4380_78100,289,4380_114115,Strandhill,112732-00014-1,1,4380_7778208_4720501,4380_1751 -4380_78100,287,4380_114116,Strandhill,112738-00012-1,1,4380_7778208_4720501,4380_1751 -4380_78100,292,4380_114117,Strandhill,112737-00016-1,1,4380_7778208_4720501,4380_1751 -4380_78100,290,4380_114118,Strandhill,112731-00015-1,1,4380_7778208_4720501,4380_1751 -4380_78100,294,4380_114119,Strandhill,112739-00018-1,1,4380_7778208_4720501,4380_1751 -4380_77955,292,4380_11412,Mullingar via Summerhill,58194-00016-1,0,4380_7778208_1150115,4380_242 -4380_78100,293,4380_114120,Strandhill,112735-00017-1,1,4380_7778208_4720501,4380_1751 -4380_78100,295,4380_114121,Strandhill,112733-00019-1,1,4380_7778208_4720501,4380_1751 -4380_78100,291,4380_114123,Strandhill,112740-00013-1,1,4380_7778208_4720501,4380_1751 -4380_78100,296,4380_114124,Strandhill,112741-00021-1,1,4380_7778208_4720501,4380_1751 -4380_77955,293,4380_11413,Mullingar via Summerhill,58198-00017-1,0,4380_7778208_1150115,4380_242 -4380_78100,285,4380_114130,Strandhill,112933-00009-1,1,4380_7778208_4720502,4380_1751 -4380_78100,288,4380_114131,Strandhill,112925-00011-1,1,4380_7778208_4720502,4380_1751 -4380_78100,286,4380_114132,Strandhill,112927-00010-1,1,4380_7778208_4720502,4380_1751 -4380_78100,289,4380_114133,Strandhill,112929-00014-1,1,4380_7778208_4720502,4380_1751 -4380_78100,287,4380_114134,Strandhill,112931-00012-1,1,4380_7778208_4720502,4380_1751 -4380_78100,292,4380_114135,Strandhill,112928-00016-1,1,4380_7778208_4720502,4380_1751 -4380_78100,290,4380_114136,Strandhill,112934-00015-1,1,4380_7778208_4720502,4380_1751 -4380_78100,294,4380_114137,Strandhill,112932-00018-1,1,4380_7778208_4720502,4380_1751 -4380_78100,293,4380_114138,Strandhill,112926-00017-1,1,4380_7778208_4720502,4380_1751 -4380_78100,295,4380_114139,Strandhill,112930-00019-1,1,4380_7778208_4720502,4380_1751 -4380_77955,294,4380_11414,Mullingar via Summerhill,58197-00018-1,0,4380_7778208_1150115,4380_242 -4380_78100,297,4380_114146,Strandhill,112754-00008-1,1,4380_7778208_4720501,4380_1751 -4380_78100,285,4380_114147,Strandhill,113114-00009-1,1,4380_7778208_4720503,4380_1752 -4380_78100,288,4380_114149,Strandhill,113110-00011-1,1,4380_7778208_4720503,4380_1752 -4380_77955,295,4380_11415,Mullingar via Summerhill,58195-00019-1,0,4380_7778208_1150115,4380_242 -4380_78100,286,4380_114150,Strandhill,113108-00010-1,1,4380_7778208_4720503,4380_1752 -4380_78100,291,4380_114151,Strandhill,112936-00013-1,1,4380_7778208_4720502,4380_1751 -4380_78100,289,4380_114152,Strandhill,113106-00014-1,1,4380_7778208_4720503,4380_1752 -4380_78100,287,4380_114153,Strandhill,113112-00012-1,1,4380_7778208_4720503,4380_1752 -4380_78100,292,4380_114154,Strandhill,113109-00016-1,1,4380_7778208_4720503,4380_1752 -4380_78100,290,4380_114155,Strandhill,113115-00015-1,1,4380_7778208_4720503,4380_1752 -4380_78100,294,4380_114156,Strandhill,113113-00018-1,1,4380_7778208_4720503,4380_1752 -4380_78100,293,4380_114157,Strandhill,113111-00017-1,1,4380_7778208_4720503,4380_1752 -4380_78100,296,4380_114158,Strandhill,112937-00021-1,1,4380_7778208_4720502,4380_1751 -4380_78100,295,4380_114159,Strandhill,113107-00019-1,1,4380_7778208_4720503,4380_1752 -4380_77955,296,4380_11416,Enfield,58119-00021-1,0,4380_7778208_1150112,4380_238 -4380_78100,285,4380_114165,Strandhill,112763-00009-1,1,4380_7778208_4720501,4380_1751 -4380_78100,288,4380_114167,Strandhill,112755-00011-1,1,4380_7778208_4720501,4380_1751 -4380_78100,286,4380_114168,Strandhill,112757-00010-1,1,4380_7778208_4720501,4380_1751 -4380_78100,291,4380_114169,Strandhill,112761-00013-1,1,4380_7778208_4720501,4380_1752 -4380_78100,289,4380_114170,Strandhill,112759-00014-1,1,4380_7778208_4720501,4380_1751 -4380_78100,287,4380_114171,Strandhill,112765-00012-1,1,4380_7778208_4720501,4380_1751 -4380_78100,292,4380_114172,Strandhill,112758-00016-1,1,4380_7778208_4720501,4380_1751 -4380_78100,290,4380_114173,Strandhill,112764-00015-1,1,4380_7778208_4720501,4380_1751 -4380_78100,294,4380_114174,Strandhill,112766-00018-1,1,4380_7778208_4720501,4380_1751 -4380_78100,293,4380_114175,Strandhill,112756-00017-1,1,4380_7778208_4720501,4380_1751 -4380_78100,296,4380_114176,Strandhill,112762-00021-1,1,4380_7778208_4720501,4380_1752 -4380_78100,295,4380_114177,Strandhill,112760-00019-1,1,4380_7778208_4720501,4380_1751 -4380_78100,297,4380_114184,Strandhill,112948-00008-1,1,4380_7778208_4720502,4380_1751 -4380_78100,285,4380_114185,Strandhill,113321-00009-1,1,4380_7778208_4720504,4380_1752 -4380_78100,288,4380_114187,Strandhill,113323-00011-1,1,4380_7778208_4720504,4380_1752 -4380_78100,286,4380_114188,Strandhill,113327-00010-1,1,4380_7778208_4720504,4380_1752 -4380_78100,291,4380_114189,Strandhill,113325-00013-1,1,4380_7778208_4720504,4380_1753 -4380_78100,289,4380_114190,Strandhill,113319-00014-1,1,4380_7778208_4720504,4380_1752 -4380_78100,287,4380_114191,Strandhill,113317-00012-1,1,4380_7778208_4720504,4380_1752 -4380_78100,292,4380_114192,Strandhill,113328-00016-1,1,4380_7778208_4720504,4380_1752 -4380_78100,290,4380_114193,Strandhill,113322-00015-1,1,4380_7778208_4720504,4380_1752 -4380_78100,294,4380_114194,Strandhill,113318-00018-1,1,4380_7778208_4720504,4380_1752 -4380_78100,293,4380_114195,Strandhill,113324-00017-1,1,4380_7778208_4720504,4380_1752 -4380_78100,296,4380_114196,Strandhill,113326-00021-1,1,4380_7778208_4720504,4380_1753 -4380_78100,295,4380_114197,Strandhill,113320-00019-1,1,4380_7778208_4720504,4380_1752 -4380_78100,285,4380_114203,Strandhill,112957-00009-1,1,4380_7778208_4720502,4380_1751 -4380_78100,288,4380_114205,Strandhill,112959-00011-1,1,4380_7778208_4720502,4380_1751 -4380_78100,286,4380_114206,Strandhill,112955-00010-1,1,4380_7778208_4720502,4380_1751 -4380_78100,291,4380_114207,Strandhill,113128-00013-1,1,4380_7778208_4720503,4380_1752 -4380_78100,289,4380_114208,Strandhill,112951-00014-1,1,4380_7778208_4720502,4380_1751 -4380_78100,287,4380_114209,Strandhill,112953-00012-1,1,4380_7778208_4720502,4380_1751 -4380_78100,292,4380_114210,Strandhill,112956-00016-1,1,4380_7778208_4720502,4380_1751 -4380_78100,290,4380_114211,Strandhill,112958-00015-1,1,4380_7778208_4720502,4380_1751 -4380_78100,294,4380_114212,Strandhill,112954-00018-1,1,4380_7778208_4720502,4380_1751 -4380_78100,293,4380_114213,Strandhill,112960-00017-1,1,4380_7778208_4720502,4380_1751 -4380_78100,296,4380_114214,Strandhill,113129-00021-1,1,4380_7778208_4720503,4380_1752 -4380_78100,295,4380_114215,Strandhill,112952-00019-1,1,4380_7778208_4720502,4380_1751 -4380_78100,297,4380_114222,Strandhill,112780-00008-1,1,4380_7778208_4720501,4380_1751 -4380_78100,285,4380_114223,Strandhill,113134-00009-1,1,4380_7778208_4720503,4380_1752 -4380_78100,288,4380_114225,Strandhill,113132-00011-1,1,4380_7778208_4720503,4380_1752 -4380_78100,286,4380_114226,Strandhill,113130-00010-1,1,4380_7778208_4720503,4380_1752 -4380_78100,291,4380_114227,Strandhill,112962-00013-1,1,4380_7778208_4720502,4380_1753 -4380_78100,289,4380_114228,Strandhill,113138-00014-1,1,4380_7778208_4720503,4380_1752 -4380_78100,287,4380_114229,Strandhill,113136-00012-1,1,4380_7778208_4720503,4380_1752 -4380_78100,292,4380_114230,Strandhill,113131-00016-1,1,4380_7778208_4720503,4380_1752 -4380_78100,290,4380_114231,Strandhill,113135-00015-1,1,4380_7778208_4720503,4380_1752 -4380_78100,294,4380_114232,Strandhill,113137-00018-1,1,4380_7778208_4720503,4380_1752 -4380_78100,293,4380_114233,Strandhill,113133-00017-1,1,4380_7778208_4720503,4380_1752 -4380_78100,296,4380_114234,Strandhill,112963-00021-1,1,4380_7778208_4720502,4380_1753 -4380_78100,295,4380_114235,Strandhill,113139-00019-1,1,4380_7778208_4720503,4380_1752 -4380_77955,285,4380_11424,Mullingar,9454-00009-1,0,4380_7778208_1150107,4380_239 -4380_78100,297,4380_114242,Strandhill,113341-00008-1,1,4380_7778208_4720504,4380_1751 -4380_78100,285,4380_114243,Strandhill,112787-00009-1,1,4380_7778208_4720501,4380_1752 -4380_78100,288,4380_114245,Strandhill,112789-00011-1,1,4380_7778208_4720501,4380_1752 -4380_78100,286,4380_114246,Strandhill,112781-00010-1,1,4380_7778208_4720501,4380_1752 -4380_78100,291,4380_114247,Strandhill,112791-00013-1,1,4380_7778208_4720501,4380_1753 -4380_78100,289,4380_114248,Strandhill,112783-00014-1,1,4380_7778208_4720501,4380_1752 -4380_78100,287,4380_114249,Strandhill,112785-00012-1,1,4380_7778208_4720501,4380_1752 -4380_77955,286,4380_11425,Mullingar,9468-00010-1,0,4380_7778208_1150107,4380_239 -4380_78100,292,4380_114250,Strandhill,112782-00016-1,1,4380_7778208_4720501,4380_1752 -4380_78100,290,4380_114251,Strandhill,112788-00015-1,1,4380_7778208_4720501,4380_1752 -4380_78100,294,4380_114252,Strandhill,112786-00018-1,1,4380_7778208_4720501,4380_1752 -4380_78100,293,4380_114253,Strandhill,112790-00017-1,1,4380_7778208_4720501,4380_1752 -4380_78100,296,4380_114254,Strandhill,112792-00021-1,1,4380_7778208_4720501,4380_1753 -4380_78100,295,4380_114255,Strandhill,112784-00019-1,1,4380_7778208_4720501,4380_1752 -4380_77955,297,4380_11426,Mullingar,57941-00008-1,0,4380_7778208_1150107,4380_245 -4380_78100,297,4380_114262,Strandhill,112976-00008-1,1,4380_7778208_4720502,4380_1751 -4380_78100,285,4380_114263,Strandhill,113348-00009-1,1,4380_7778208_4720504,4380_1752 -4380_78100,288,4380_114265,Strandhill,113352-00011-1,1,4380_7778208_4720504,4380_1752 -4380_78100,286,4380_114266,Strandhill,113346-00010-1,1,4380_7778208_4720504,4380_1752 -4380_78100,291,4380_114267,Strandhill,113350-00013-1,1,4380_7778208_4720504,4380_1753 -4380_78100,289,4380_114268,Strandhill,113344-00014-1,1,4380_7778208_4720504,4380_1752 -4380_78100,287,4380_114269,Strandhill,113342-00012-1,1,4380_7778208_4720504,4380_1752 -4380_77955,288,4380_11427,Mullingar,9482-00011-1,0,4380_7778208_1150107,4380_239 -4380_78100,292,4380_114270,Strandhill,113347-00016-1,1,4380_7778208_4720504,4380_1752 -4380_78100,290,4380_114271,Strandhill,113349-00015-1,1,4380_7778208_4720504,4380_1752 -4380_78100,294,4380_114272,Strandhill,113343-00018-1,1,4380_7778208_4720504,4380_1752 -4380_78100,293,4380_114273,Strandhill,113353-00017-1,1,4380_7778208_4720504,4380_1752 -4380_78100,296,4380_114274,Strandhill,113351-00021-1,1,4380_7778208_4720504,4380_1753 -4380_78100,295,4380_114275,Strandhill,113345-00019-1,1,4380_7778208_4720504,4380_1752 -4380_77955,287,4380_11428,Mullingar,9496-00012-1,0,4380_7778208_1150107,4380_239 -4380_78100,297,4380_114282,Strandhill,113155-00008-1,1,4380_7778208_4720503,4380_1751 -4380_78100,285,4380_114283,Strandhill,112983-00009-1,1,4380_7778208_4720502,4380_1752 -4380_78100,288,4380_114285,Strandhill,112979-00011-1,1,4380_7778208_4720502,4380_1752 -4380_78100,286,4380_114286,Strandhill,112977-00010-1,1,4380_7778208_4720502,4380_1752 -4380_78100,291,4380_114287,Strandhill,113153-00013-1,1,4380_7778208_4720503,4380_1753 -4380_78100,289,4380_114288,Strandhill,112981-00014-1,1,4380_7778208_4720502,4380_1752 -4380_78100,287,4380_114289,Strandhill,112985-00012-1,1,4380_7778208_4720502,4380_1752 -4380_77955,289,4380_11429,Mullingar,9440-00014-1,0,4380_7778208_1150107,4380_239 -4380_78100,292,4380_114290,Strandhill,112978-00016-1,1,4380_7778208_4720502,4380_1752 -4380_78100,290,4380_114291,Strandhill,112984-00015-1,1,4380_7778208_4720502,4380_1752 -4380_78100,294,4380_114292,Strandhill,112986-00018-1,1,4380_7778208_4720502,4380_1752 -4380_78100,293,4380_114293,Strandhill,112980-00017-1,1,4380_7778208_4720502,4380_1752 -4380_78100,296,4380_114294,Strandhill,113154-00021-1,1,4380_7778208_4720503,4380_1753 -4380_78100,295,4380_114295,Strandhill,112982-00019-1,1,4380_7778208_4720502,4380_1752 -4380_78113,285,4380_1143,Dublin via Airport,49791-00009-1,1,4380_7778208_1000904,4380_18 -4380_77955,290,4380_11430,Mullingar,57944-00015-1,0,4380_7778208_1150107,4380_239 -4380_78100,297,4380_114302,Strandhill,112806-00008-1,1,4380_7778208_4720501,4380_1751 -4380_78100,285,4380_114303,Strandhill,113158-00009-1,1,4380_7778208_4720503,4380_1752 -4380_78100,288,4380_114305,Strandhill,113164-00011-1,1,4380_7778208_4720503,4380_1752 -4380_78100,286,4380_114306,Strandhill,113162-00010-1,1,4380_7778208_4720503,4380_1752 -4380_78100,291,4380_114307,Strandhill,112987-00013-1,1,4380_7778208_4720502,4380_1753 -4380_78100,289,4380_114308,Strandhill,113156-00014-1,1,4380_7778208_4720503,4380_1752 -4380_78100,287,4380_114309,Strandhill,113160-00012-1,1,4380_7778208_4720503,4380_1752 -4380_77955,291,4380_11431,Mullingar,9567-00013-1,0,4380_7778208_1150109,4380_246 -4380_78100,292,4380_114310,Strandhill,113163-00016-1,1,4380_7778208_4720503,4380_1752 -4380_78100,290,4380_114311,Strandhill,113159-00015-1,1,4380_7778208_4720503,4380_1752 -4380_78100,294,4380_114312,Strandhill,113161-00018-1,1,4380_7778208_4720503,4380_1752 -4380_78100,293,4380_114313,Strandhill,113165-00017-1,1,4380_7778208_4720503,4380_1752 -4380_78100,296,4380_114314,Strandhill,112988-00021-1,1,4380_7778208_4720502,4380_1753 -4380_78100,295,4380_114315,Strandhill,113157-00019-1,1,4380_7778208_4720503,4380_1752 -4380_77955,292,4380_11432,Mullingar,57945-00016-1,0,4380_7778208_1150107,4380_239 -4380_78100,297,4380_114322,Strandhill,113367-00008-1,1,4380_7778208_4720504,4380_1751 -4380_78100,285,4380_114323,Strandhill,112809-00009-1,1,4380_7778208_4720501,4380_1752 -4380_78100,288,4380_114325,Strandhill,112813-00011-1,1,4380_7778208_4720501,4380_1752 -4380_78100,286,4380_114326,Strandhill,112815-00010-1,1,4380_7778208_4720501,4380_1752 -4380_78100,291,4380_114327,Strandhill,112807-00013-1,1,4380_7778208_4720501,4380_1753 -4380_78100,289,4380_114328,Strandhill,112817-00014-1,1,4380_7778208_4720501,4380_1752 -4380_78100,287,4380_114329,Strandhill,112811-00012-1,1,4380_7778208_4720501,4380_1752 -4380_77955,293,4380_11433,Mullingar,57943-00017-1,0,4380_7778208_1150107,4380_239 -4380_78100,292,4380_114330,Strandhill,112816-00016-1,1,4380_7778208_4720501,4380_1752 -4380_78100,290,4380_114331,Strandhill,112810-00015-1,1,4380_7778208_4720501,4380_1752 -4380_78100,294,4380_114332,Strandhill,112812-00018-1,1,4380_7778208_4720501,4380_1752 -4380_78100,293,4380_114333,Strandhill,112814-00017-1,1,4380_7778208_4720501,4380_1752 -4380_78100,296,4380_114334,Strandhill,112808-00021-1,1,4380_7778208_4720501,4380_1753 -4380_78100,295,4380_114335,Strandhill,112818-00019-1,1,4380_7778208_4720501,4380_1752 -4380_77955,294,4380_11434,Mullingar,57942-00018-1,0,4380_7778208_1150107,4380_239 -4380_78100,297,4380_114342,Strandhill,113000-00008-1,1,4380_7778208_4720502,4380_1751 -4380_78100,285,4380_114343,Strandhill,113370-00009-1,1,4380_7778208_4720504,4380_1752 -4380_78100,288,4380_114345,Strandhill,113372-00011-1,1,4380_7778208_4720504,4380_1752 -4380_78100,286,4380_114346,Strandhill,113376-00010-1,1,4380_7778208_4720504,4380_1752 -4380_78100,291,4380_114347,Strandhill,113378-00013-1,1,4380_7778208_4720504,4380_1753 -4380_78100,289,4380_114348,Strandhill,113374-00014-1,1,4380_7778208_4720504,4380_1752 -4380_78100,287,4380_114349,Strandhill,113368-00012-1,1,4380_7778208_4720504,4380_1752 -4380_77955,295,4380_11435,Mullingar,57940-00019-1,0,4380_7778208_1150107,4380_239 -4380_78100,292,4380_114350,Strandhill,113377-00016-1,1,4380_7778208_4720504,4380_1752 -4380_78100,290,4380_114351,Strandhill,113371-00015-1,1,4380_7778208_4720504,4380_1752 -4380_78100,294,4380_114352,Strandhill,113369-00018-1,1,4380_7778208_4720504,4380_1752 -4380_78100,293,4380_114353,Strandhill,113373-00017-1,1,4380_7778208_4720504,4380_1752 -4380_78100,296,4380_114354,Strandhill,113379-00021-1,1,4380_7778208_4720504,4380_1753 -4380_78100,295,4380_114355,Strandhill,113375-00019-1,1,4380_7778208_4720504,4380_1752 -4380_77955,296,4380_11436,Mullingar,58041-00021-1,0,4380_7778208_1150109,4380_246 -4380_78100,297,4380_114362,Strandhill,113181-00008-1,1,4380_7778208_4720503,4380_1751 -4380_78100,285,4380_114363,Strandhill,113009-00009-1,1,4380_7778208_4720502,4380_1752 -4380_78100,288,4380_114365,Strandhill,113007-00011-1,1,4380_7778208_4720502,4380_1752 -4380_78100,286,4380_114366,Strandhill,113003-00010-1,1,4380_7778208_4720502,4380_1752 -4380_78100,291,4380_114367,Strandhill,113179-00013-1,1,4380_7778208_4720503,4380_1753 -4380_78100,289,4380_114368,Strandhill,113005-00014-1,1,4380_7778208_4720502,4380_1752 -4380_78100,287,4380_114369,Strandhill,113011-00012-1,1,4380_7778208_4720502,4380_1752 -4380_78100,292,4380_114370,Strandhill,113004-00016-1,1,4380_7778208_4720502,4380_1752 -4380_78100,290,4380_114371,Strandhill,113010-00015-1,1,4380_7778208_4720502,4380_1752 -4380_78100,294,4380_114372,Strandhill,113012-00018-1,1,4380_7778208_4720502,4380_1752 -4380_78100,293,4380_114373,Strandhill,113008-00017-1,1,4380_7778208_4720502,4380_1752 -4380_78100,296,4380_114374,Strandhill,113180-00021-1,1,4380_7778208_4720503,4380_1753 -4380_78100,295,4380_114375,Strandhill,113006-00019-1,1,4380_7778208_4720502,4380_1752 -4380_78100,297,4380_114382,Strandhill,112832-00008-1,1,4380_7778208_4720501,4380_1751 -4380_78100,285,4380_114383,Strandhill,113190-00009-1,1,4380_7778208_4720503,4380_1752 -4380_78100,288,4380_114385,Strandhill,113182-00011-1,1,4380_7778208_4720503,4380_1752 -4380_78100,286,4380_114386,Strandhill,113188-00010-1,1,4380_7778208_4720503,4380_1752 -4380_78100,291,4380_114387,Strandhill,113013-00013-1,1,4380_7778208_4720502,4380_1752 -4380_78100,289,4380_114388,Strandhill,113184-00014-1,1,4380_7778208_4720503,4380_1752 -4380_78100,287,4380_114389,Strandhill,113186-00012-1,1,4380_7778208_4720503,4380_1752 -4380_78100,292,4380_114390,Strandhill,113189-00016-1,1,4380_7778208_4720503,4380_1752 -4380_78100,290,4380_114391,Strandhill,113191-00015-1,1,4380_7778208_4720503,4380_1752 -4380_78100,294,4380_114392,Strandhill,113187-00018-1,1,4380_7778208_4720503,4380_1752 -4380_78100,293,4380_114393,Strandhill,113183-00017-1,1,4380_7778208_4720503,4380_1752 -4380_78100,296,4380_114394,Strandhill,113014-00021-1,1,4380_7778208_4720502,4380_1752 -4380_78100,295,4380_114395,Strandhill,113185-00019-1,1,4380_7778208_4720503,4380_1752 -4380_78113,286,4380_1144,Dublin via Airport,49793-00010-1,1,4380_7778208_1000904,4380_18 -4380_78100,297,4380_114402,Strandhill,113393-00008-1,1,4380_7778208_4720504,4380_1751 -4380_78100,285,4380_114403,Strandhill,112841-00009-1,1,4380_7778208_4720501,4380_1752 -4380_78100,288,4380_114405,Strandhill,112833-00011-1,1,4380_7778208_4720501,4380_1752 -4380_78100,286,4380_114406,Strandhill,112839-00010-1,1,4380_7778208_4720501,4380_1752 -4380_78100,291,4380_114407,Strandhill,112835-00013-1,1,4380_7778208_4720501,4380_1752 -4380_78100,289,4380_114408,Strandhill,112837-00014-1,1,4380_7778208_4720501,4380_1752 -4380_78100,287,4380_114409,Strandhill,112843-00012-1,1,4380_7778208_4720501,4380_1752 -4380_78100,292,4380_114410,Strandhill,112840-00016-1,1,4380_7778208_4720501,4380_1752 -4380_78100,290,4380_114411,Strandhill,112842-00015-1,1,4380_7778208_4720501,4380_1752 -4380_78100,294,4380_114412,Strandhill,112844-00018-1,1,4380_7778208_4720501,4380_1752 -4380_78100,293,4380_114413,Strandhill,112834-00017-1,1,4380_7778208_4720501,4380_1752 -4380_78100,296,4380_114414,Strandhill,112836-00021-1,1,4380_7778208_4720501,4380_1752 -4380_78100,295,4380_114415,Strandhill,112838-00019-1,1,4380_7778208_4720501,4380_1752 -4380_78100,297,4380_114422,Strandhill,113028-00008-1,1,4380_7778208_4720502,4380_1751 -4380_78100,285,4380_114423,Strandhill,113402-00009-1,1,4380_7778208_4720504,4380_1752 -4380_78100,288,4380_114425,Strandhill,113404-00011-1,1,4380_7778208_4720504,4380_1752 -4380_78100,286,4380_114426,Strandhill,113394-00010-1,1,4380_7778208_4720504,4380_1752 -4380_78100,291,4380_114427,Strandhill,113398-00013-1,1,4380_7778208_4720504,4380_1752 -4380_78100,289,4380_114428,Strandhill,113400-00014-1,1,4380_7778208_4720504,4380_1752 -4380_78100,287,4380_114429,Strandhill,113396-00012-1,1,4380_7778208_4720504,4380_1752 -4380_78100,292,4380_114430,Strandhill,113395-00016-1,1,4380_7778208_4720504,4380_1752 -4380_78100,290,4380_114431,Strandhill,113403-00015-1,1,4380_7778208_4720504,4380_1752 -4380_78100,294,4380_114432,Strandhill,113397-00018-1,1,4380_7778208_4720504,4380_1752 -4380_78100,293,4380_114433,Strandhill,113405-00017-1,1,4380_7778208_4720504,4380_1752 -4380_78100,296,4380_114434,Strandhill,113399-00021-1,1,4380_7778208_4720504,4380_1752 -4380_78100,295,4380_114435,Strandhill,113401-00019-1,1,4380_7778208_4720504,4380_1752 -4380_77955,285,4380_11444,Mullingar,58015-00009-1,0,4380_7778208_1150108,4380_239 -4380_78100,297,4380_114442,Strandhill,113207-00008-1,1,4380_7778208_4720503,4380_1751 -4380_78100,285,4380_114443,Strandhill,113029-00009-1,1,4380_7778208_4720502,4380_1752 -4380_78100,288,4380_114445,Strandhill,113033-00011-1,1,4380_7778208_4720502,4380_1752 -4380_78100,286,4380_114446,Strandhill,113037-00010-1,1,4380_7778208_4720502,4380_1752 -4380_78100,291,4380_114447,Strandhill,113205-00013-1,1,4380_7778208_4720503,4380_1752 -4380_78100,289,4380_114448,Strandhill,113031-00014-1,1,4380_7778208_4720502,4380_1752 -4380_78100,287,4380_114449,Strandhill,113035-00012-1,1,4380_7778208_4720502,4380_1752 -4380_77955,286,4380_11445,Mullingar,58009-00010-1,0,4380_7778208_1150108,4380_239 -4380_78100,292,4380_114450,Strandhill,113038-00016-1,1,4380_7778208_4720502,4380_1752 -4380_78100,290,4380_114451,Strandhill,113030-00015-1,1,4380_7778208_4720502,4380_1752 -4380_78100,294,4380_114452,Strandhill,113036-00018-1,1,4380_7778208_4720502,4380_1752 -4380_78100,293,4380_114453,Strandhill,113034-00017-1,1,4380_7778208_4720502,4380_1752 -4380_78100,296,4380_114454,Strandhill,113206-00021-1,1,4380_7778208_4720503,4380_1752 -4380_78100,295,4380_114455,Strandhill,113032-00019-1,1,4380_7778208_4720502,4380_1752 -4380_77955,297,4380_11446,Enfield,57624-00008-1,0,4380_7778208_1150101,4380_238 -4380_78100,297,4380_114462,Strandhill,112858-00008-1,1,4380_7778208_4720501,4380_1751 -4380_78100,285,4380_114463,Strandhill,113216-00009-1,1,4380_7778208_4720503,4380_1752 -4380_78100,288,4380_114465,Strandhill,113210-00011-1,1,4380_7778208_4720503,4380_1752 -4380_78100,286,4380_114466,Strandhill,113212-00010-1,1,4380_7778208_4720503,4380_1752 -4380_78100,291,4380_114467,Strandhill,113040-00013-1,1,4380_7778208_4720502,4380_1752 -4380_78100,289,4380_114468,Strandhill,113208-00014-1,1,4380_7778208_4720503,4380_1752 -4380_78100,287,4380_114469,Strandhill,113214-00012-1,1,4380_7778208_4720503,4380_1752 -4380_77955,288,4380_11447,Mullingar,58017-00011-1,0,4380_7778208_1150108,4380_239 -4380_78100,292,4380_114470,Strandhill,113213-00016-1,1,4380_7778208_4720503,4380_1752 -4380_78100,290,4380_114471,Strandhill,113217-00015-1,1,4380_7778208_4720503,4380_1752 -4380_78100,294,4380_114472,Strandhill,113215-00018-1,1,4380_7778208_4720503,4380_1752 -4380_78100,293,4380_114473,Strandhill,113211-00017-1,1,4380_7778208_4720503,4380_1752 -4380_78100,296,4380_114474,Strandhill,113041-00021-1,1,4380_7778208_4720502,4380_1752 -4380_78100,295,4380_114475,Strandhill,113209-00019-1,1,4380_7778208_4720503,4380_1752 -4380_77955,287,4380_11448,Mullingar,58011-00012-1,0,4380_7778208_1150108,4380_239 -4380_78100,297,4380_114482,Strandhill,113419-00008-1,1,4380_7778208_4720504,4380_1751 -4380_78100,285,4380_114483,Strandhill,112869-00009-1,1,4380_7778208_4720501,4380_1752 -4380_78100,288,4380_114485,Strandhill,112865-00011-1,1,4380_7778208_4720501,4380_1752 -4380_78100,286,4380_114486,Strandhill,112861-00010-1,1,4380_7778208_4720501,4380_1752 -4380_78100,291,4380_114487,Strandhill,112863-00013-1,1,4380_7778208_4720501,4380_1752 -4380_78100,289,4380_114488,Strandhill,112867-00014-1,1,4380_7778208_4720501,4380_1752 -4380_78100,287,4380_114489,Strandhill,112859-00012-1,1,4380_7778208_4720501,4380_1752 -4380_77955,289,4380_11449,Mullingar,58013-00014-1,0,4380_7778208_1150108,4380_239 -4380_78100,292,4380_114490,Strandhill,112862-00016-1,1,4380_7778208_4720501,4380_1752 -4380_78100,290,4380_114491,Strandhill,112870-00015-1,1,4380_7778208_4720501,4380_1752 -4380_78100,294,4380_114492,Strandhill,112860-00018-1,1,4380_7778208_4720501,4380_1752 -4380_78100,293,4380_114493,Strandhill,112866-00017-1,1,4380_7778208_4720501,4380_1752 -4380_78100,296,4380_114494,Strandhill,112864-00021-1,1,4380_7778208_4720501,4380_1752 -4380_78100,295,4380_114495,Strandhill,112868-00019-1,1,4380_7778208_4720501,4380_1752 -4380_78113,297,4380_1145,Dublin via Airport,49721-00008-1,1,4380_7778208_1000903,4380_18 -4380_77955,290,4380_11450,Mullingar,58016-00015-1,0,4380_7778208_1150108,4380_239 -4380_78100,297,4380_114502,Strandhill,113052-00008-1,1,4380_7778208_4720502,4380_1751 -4380_78100,285,4380_114503,Strandhill,113428-00009-1,1,4380_7778208_4720504,4380_1752 -4380_78100,288,4380_114505,Strandhill,113426-00011-1,1,4380_7778208_4720504,4380_1752 -4380_78100,286,4380_114506,Strandhill,113422-00010-1,1,4380_7778208_4720504,4380_1752 -4380_78100,291,4380_114507,Strandhill,113430-00013-1,1,4380_7778208_4720504,4380_1752 -4380_78100,289,4380_114508,Strandhill,113424-00014-1,1,4380_7778208_4720504,4380_1752 -4380_78100,287,4380_114509,Strandhill,113420-00012-1,1,4380_7778208_4720504,4380_1752 -4380_77955,291,4380_11451,Mullingar,57946-00013-1,0,4380_7778208_1150107,4380_245 -4380_78100,292,4380_114510,Strandhill,113423-00016-1,1,4380_7778208_4720504,4380_1752 -4380_78100,290,4380_114511,Strandhill,113429-00015-1,1,4380_7778208_4720504,4380_1752 -4380_78100,294,4380_114512,Strandhill,113421-00018-1,1,4380_7778208_4720504,4380_1752 -4380_78100,293,4380_114513,Strandhill,113427-00017-1,1,4380_7778208_4720504,4380_1752 -4380_78100,296,4380_114514,Strandhill,113431-00021-1,1,4380_7778208_4720504,4380_1752 -4380_78100,295,4380_114515,Strandhill,113425-00019-1,1,4380_7778208_4720504,4380_1752 -4380_77955,292,4380_11452,Mullingar,58010-00016-1,0,4380_7778208_1150108,4380_239 -4380_78100,297,4380_114522,Strandhill,113233-00008-1,1,4380_7778208_4720503,4380_1751 -4380_78100,285,4380_114523,Strandhill,113059-00009-1,1,4380_7778208_4720502,4380_1752 -4380_78100,288,4380_114525,Strandhill,113057-00011-1,1,4380_7778208_4720502,4380_1752 -4380_78100,286,4380_114526,Strandhill,113063-00010-1,1,4380_7778208_4720502,4380_1752 -4380_78100,291,4380_114527,Strandhill,113231-00013-1,1,4380_7778208_4720503,4380_1752 -4380_78100,289,4380_114528,Strandhill,113061-00014-1,1,4380_7778208_4720502,4380_1752 -4380_78100,287,4380_114529,Strandhill,113055-00012-1,1,4380_7778208_4720502,4380_1752 -4380_77955,293,4380_11453,Mullingar,58018-00017-1,0,4380_7778208_1150108,4380_239 -4380_78100,292,4380_114530,Strandhill,113064-00016-1,1,4380_7778208_4720502,4380_1752 -4380_78100,290,4380_114531,Strandhill,113060-00015-1,1,4380_7778208_4720502,4380_1752 -4380_78100,294,4380_114532,Strandhill,113056-00018-1,1,4380_7778208_4720502,4380_1752 -4380_78100,293,4380_114533,Strandhill,113058-00017-1,1,4380_7778208_4720502,4380_1752 -4380_78100,296,4380_114534,Strandhill,113232-00021-1,1,4380_7778208_4720503,4380_1752 -4380_78100,295,4380_114535,Strandhill,113062-00019-1,1,4380_7778208_4720502,4380_1752 -4380_78100,297,4380_114537,Strandhill,112884-00008-1,1,4380_7778208_4720501,4380_1751 -4380_78100,291,4380_114539,Strandhill,113065-00013-1,1,4380_7778208_4720502,4380_1752 -4380_77955,294,4380_11454,Mullingar,58012-00018-1,0,4380_7778208_1150108,4380_239 -4380_78100,296,4380_114540,Strandhill,113066-00021-1,1,4380_7778208_4720502,4380_1752 -4380_78100,285,4380_114546,Strandhill,113240-00009-1,1,4380_7778208_4720503,4380_1751 -4380_78100,288,4380_114547,Strandhill,113242-00011-1,1,4380_7778208_4720503,4380_1751 -4380_78100,286,4380_114548,Strandhill,113238-00010-1,1,4380_7778208_4720503,4380_1751 -4380_78100,289,4380_114549,Strandhill,113234-00014-1,1,4380_7778208_4720503,4380_1751 -4380_77955,295,4380_11455,Mullingar,58014-00019-1,0,4380_7778208_1150108,4380_239 -4380_78100,287,4380_114550,Strandhill,113236-00012-1,1,4380_7778208_4720503,4380_1751 -4380_78100,292,4380_114551,Strandhill,113239-00016-1,1,4380_7778208_4720503,4380_1751 -4380_78100,290,4380_114552,Strandhill,113241-00015-1,1,4380_7778208_4720503,4380_1751 -4380_78100,294,4380_114553,Strandhill,113237-00018-1,1,4380_7778208_4720503,4380_1751 -4380_78100,293,4380_114554,Strandhill,113243-00017-1,1,4380_7778208_4720503,4380_1751 -4380_78100,295,4380_114555,Strandhill,113235-00019-1,1,4380_7778208_4720503,4380_1751 -4380_78100,297,4380_114557,Strandhill,113445-00008-1,1,4380_7778208_4720504,4380_1751 -4380_78100,291,4380_114559,Strandhill,112885-00013-1,1,4380_7778208_4720501,4380_1752 -4380_77955,296,4380_11456,Mullingar,57947-00021-1,0,4380_7778208_1150107,4380_245 -4380_78100,296,4380_114560,Strandhill,112886-00021-1,1,4380_7778208_4720501,4380_1752 -4380_78100,285,4380_114566,Strandhill,112889-00009-1,1,4380_7778208_4720501,4380_1751 -4380_78100,288,4380_114567,Strandhill,112887-00011-1,1,4380_7778208_4720501,4380_1751 -4380_78100,286,4380_114568,Strandhill,112893-00010-1,1,4380_7778208_4720501,4380_1751 -4380_78100,289,4380_114569,Strandhill,112895-00014-1,1,4380_7778208_4720501,4380_1751 -4380_78100,287,4380_114570,Strandhill,112891-00012-1,1,4380_7778208_4720501,4380_1751 -4380_78100,292,4380_114571,Strandhill,112894-00016-1,1,4380_7778208_4720501,4380_1751 -4380_78100,290,4380_114572,Strandhill,112890-00015-1,1,4380_7778208_4720501,4380_1751 -4380_78100,294,4380_114573,Strandhill,112892-00018-1,1,4380_7778208_4720501,4380_1751 -4380_78100,293,4380_114574,Strandhill,112888-00017-1,1,4380_7778208_4720501,4380_1751 -4380_78100,295,4380_114575,Strandhill,112896-00019-1,1,4380_7778208_4720501,4380_1751 -4380_78100,297,4380_114582,Strandhill,113080-00008-1,1,4380_7778208_4720502,4380_1751 -4380_78100,285,4380_114583,Strandhill,113452-00009-1,1,4380_7778208_4720504,4380_1752 -4380_78100,288,4380_114585,Strandhill,113456-00011-1,1,4380_7778208_4720504,4380_1752 -4380_78100,286,4380_114586,Strandhill,113446-00010-1,1,4380_7778208_4720504,4380_1752 -4380_78100,291,4380_114587,Strandhill,113450-00013-1,1,4380_7778208_4720504,4380_1753 -4380_78100,289,4380_114588,Strandhill,113448-00014-1,1,4380_7778208_4720504,4380_1752 -4380_78100,287,4380_114589,Strandhill,113454-00012-1,1,4380_7778208_4720504,4380_1752 -4380_78100,292,4380_114590,Strandhill,113447-00016-1,1,4380_7778208_4720504,4380_1752 -4380_78100,290,4380_114591,Strandhill,113453-00015-1,1,4380_7778208_4720504,4380_1752 -4380_78100,294,4380_114592,Strandhill,113455-00018-1,1,4380_7778208_4720504,4380_1752 -4380_78100,293,4380_114593,Strandhill,113457-00017-1,1,4380_7778208_4720504,4380_1752 -4380_78100,296,4380_114594,Strandhill,113451-00021-1,1,4380_7778208_4720504,4380_1753 -4380_78100,295,4380_114595,Strandhill,113449-00019-1,1,4380_7778208_4720504,4380_1752 -4380_78113,287,4380_1146,Dublin via Airport,49789-00012-1,1,4380_7778208_1000904,4380_18 -4380_78100,285,4380_114601,Strandhill,113083-00009-1,1,4380_7778208_4720502,4380_1751 -4380_78100,288,4380_114602,Strandhill,113087-00011-1,1,4380_7778208_4720502,4380_1751 -4380_78100,286,4380_114603,Strandhill,113081-00010-1,1,4380_7778208_4720502,4380_1751 -4380_78100,289,4380_114604,Strandhill,113089-00014-1,1,4380_7778208_4720502,4380_1751 -4380_78100,287,4380_114605,Strandhill,113085-00012-1,1,4380_7778208_4720502,4380_1751 -4380_78100,292,4380_114606,Strandhill,113082-00016-1,1,4380_7778208_4720502,4380_1751 -4380_78100,290,4380_114607,Strandhill,113084-00015-1,1,4380_7778208_4720502,4380_1751 -4380_78100,294,4380_114608,Strandhill,113086-00018-1,1,4380_7778208_4720502,4380_1751 -4380_78100,293,4380_114609,Strandhill,113088-00017-1,1,4380_7778208_4720502,4380_1751 -4380_78100,295,4380_114610,Strandhill,113090-00019-1,1,4380_7778208_4720502,4380_1751 -4380_78100,297,4380_114617,Strandhill,112908-00008-1,1,4380_7778208_4720501,4380_1751 -4380_78100,285,4380_114618,Strandhill,113257-00009-1,1,4380_7778208_4720503,4380_1752 -4380_78100,288,4380_114620,Strandhill,113265-00011-1,1,4380_7778208_4720503,4380_1752 -4380_78100,286,4380_114621,Strandhill,113261-00010-1,1,4380_7778208_4720503,4380_1752 -4380_78100,291,4380_114622,Strandhill,113092-00013-1,1,4380_7778208_4720502,4380_1753 -4380_78100,289,4380_114623,Strandhill,113263-00014-1,1,4380_7778208_4720503,4380_1752 -4380_78100,287,4380_114624,Strandhill,113259-00012-1,1,4380_7778208_4720503,4380_1752 -4380_78100,292,4380_114625,Strandhill,113262-00016-1,1,4380_7778208_4720503,4380_1752 -4380_78100,290,4380_114626,Strandhill,113258-00015-1,1,4380_7778208_4720503,4380_1752 -4380_78100,294,4380_114627,Strandhill,113260-00018-1,1,4380_7778208_4720503,4380_1752 -4380_78100,293,4380_114628,Strandhill,113266-00017-1,1,4380_7778208_4720503,4380_1752 -4380_78100,296,4380_114629,Strandhill,113093-00021-1,1,4380_7778208_4720502,4380_1753 -4380_78100,295,4380_114630,Strandhill,113264-00019-1,1,4380_7778208_4720503,4380_1752 -4380_78100,297,4380_114637,Strandhill,113096-00008-1,1,4380_7778208_4720502,4380_1751 -4380_78100,285,4380_114638,Strandhill,113476-00009-1,1,4380_7778208_4720504,4380_1752 -4380_77955,285,4380_11464,Enfield,57698-00009-1,0,4380_7778208_1150102,4380_238 -4380_78100,288,4380_114640,Strandhill,113478-00011-1,1,4380_7778208_4720504,4380_1752 -4380_78100,286,4380_114641,Strandhill,113472-00010-1,1,4380_7778208_4720504,4380_1752 -4380_78100,291,4380_114642,Strandhill,113480-00013-1,1,4380_7778208_4720504,4380_1753 -4380_78100,289,4380_114643,Strandhill,113470-00014-1,1,4380_7778208_4720504,4380_1752 -4380_78100,287,4380_114644,Strandhill,113474-00012-1,1,4380_7778208_4720504,4380_1752 -4380_78100,292,4380_114645,Strandhill,113473-00016-1,1,4380_7778208_4720504,4380_1752 -4380_78100,290,4380_114646,Strandhill,113477-00015-1,1,4380_7778208_4720504,4380_1752 -4380_78100,294,4380_114647,Strandhill,113475-00018-1,1,4380_7778208_4720504,4380_1752 -4380_78100,293,4380_114648,Strandhill,113479-00017-1,1,4380_7778208_4720504,4380_1752 -4380_78100,296,4380_114649,Strandhill,113481-00021-1,1,4380_7778208_4720504,4380_1753 -4380_77955,286,4380_11465,Enfield,57707-00010-1,0,4380_7778208_1150102,4380_238 -4380_78100,295,4380_114650,Strandhill,113471-00019-1,1,4380_7778208_4720504,4380_1752 -4380_78100,297,4380_114657,Strandhill,112910-00008-1,1,4380_7778208_4720501,4380_1751 -4380_78100,285,4380_114658,Strandhill,113279-00009-1,1,4380_7778208_4720503,4380_1752 -4380_77955,297,4380_11466,Mullingar,57854-00008-1,0,4380_7778208_1150105,4380_239 -4380_78100,288,4380_114660,Strandhill,113277-00011-1,1,4380_7778208_4720503,4380_1752 -4380_78100,286,4380_114661,Strandhill,113283-00010-1,1,4380_7778208_4720503,4380_1752 -4380_78100,291,4380_114662,Strandhill,113098-00013-1,1,4380_7778208_4720502,4380_1753 -4380_78100,289,4380_114663,Strandhill,113285-00014-1,1,4380_7778208_4720503,4380_1752 -4380_78100,287,4380_114664,Strandhill,113281-00012-1,1,4380_7778208_4720503,4380_1752 -4380_78100,292,4380_114665,Strandhill,113284-00016-1,1,4380_7778208_4720503,4380_1752 -4380_78100,290,4380_114666,Strandhill,113280-00015-1,1,4380_7778208_4720503,4380_1752 -4380_78100,294,4380_114667,Strandhill,113282-00018-1,1,4380_7778208_4720503,4380_1752 -4380_78100,293,4380_114668,Strandhill,113278-00017-1,1,4380_7778208_4720503,4380_1752 -4380_78100,296,4380_114669,Strandhill,113099-00021-1,1,4380_7778208_4720502,4380_1753 -4380_77955,288,4380_11467,Enfield,57705-00011-1,0,4380_7778208_1150102,4380_238 -4380_78100,295,4380_114670,Strandhill,113286-00019-1,1,4380_7778208_4720503,4380_1752 -4380_78100,297,4380_114677,Strandhill,113100-00008-1,1,4380_7778208_4720502,4380_1751 -4380_78100,285,4380_114678,Strandhill,113502-00009-1,1,4380_7778208_4720504,4380_1752 -4380_77955,287,4380_11468,Enfield,57701-00012-1,0,4380_7778208_1150102,4380_238 -4380_78100,288,4380_114680,Strandhill,113504-00011-1,1,4380_7778208_4720504,4380_1752 -4380_78100,286,4380_114681,Strandhill,113500-00010-1,1,4380_7778208_4720504,4380_1752 -4380_78100,291,4380_114682,Strandhill,113496-00013-1,1,4380_7778208_4720504,4380_1753 -4380_78100,289,4380_114683,Strandhill,113494-00014-1,1,4380_7778208_4720504,4380_1752 -4380_78100,287,4380_114684,Strandhill,113498-00012-1,1,4380_7778208_4720504,4380_1752 -4380_78100,292,4380_114685,Strandhill,113501-00016-1,1,4380_7778208_4720504,4380_1752 -4380_78100,290,4380_114686,Strandhill,113503-00015-1,1,4380_7778208_4720504,4380_1752 -4380_78100,294,4380_114687,Strandhill,113499-00018-1,1,4380_7778208_4720504,4380_1752 -4380_78100,293,4380_114688,Strandhill,113505-00017-1,1,4380_7778208_4720504,4380_1752 -4380_78100,296,4380_114689,Strandhill,113497-00021-1,1,4380_7778208_4720504,4380_1753 -4380_77955,289,4380_11469,Enfield,57703-00014-1,0,4380_7778208_1150102,4380_238 -4380_78100,295,4380_114690,Strandhill,113495-00019-1,1,4380_7778208_4720504,4380_1752 -4380_78100,297,4380_114697,Strandhill,112912-00008-1,1,4380_7778208_4720501,4380_1751 -4380_78100,285,4380_114698,Strandhill,113305-00009-1,1,4380_7778208_4720503,4380_1752 -4380_78113,288,4380_1147,Dublin via Airport,49787-00011-1,1,4380_7778208_1000904,4380_18 -4380_77955,290,4380_11470,Enfield,57699-00015-1,0,4380_7778208_1150102,4380_238 -4380_78100,288,4380_114700,Strandhill,113303-00011-1,1,4380_7778208_4720503,4380_1752 -4380_78100,286,4380_114701,Strandhill,113299-00010-1,1,4380_7778208_4720503,4380_1752 -4380_78100,291,4380_114702,Strandhill,113104-00013-1,1,4380_7778208_4720502,4380_1753 -4380_78100,289,4380_114703,Strandhill,113297-00014-1,1,4380_7778208_4720503,4380_1752 -4380_78100,287,4380_114704,Strandhill,113301-00012-1,1,4380_7778208_4720503,4380_1752 -4380_78100,292,4380_114705,Strandhill,113300-00016-1,1,4380_7778208_4720503,4380_1752 -4380_78100,290,4380_114706,Strandhill,113306-00015-1,1,4380_7778208_4720503,4380_1752 -4380_78100,294,4380_114707,Strandhill,113302-00018-1,1,4380_7778208_4720503,4380_1752 -4380_78100,293,4380_114708,Strandhill,113304-00017-1,1,4380_7778208_4720503,4380_1752 -4380_78100,296,4380_114709,Strandhill,113105-00021-1,1,4380_7778208_4720502,4380_1753 -4380_77955,291,4380_11471,Enfield,9139-00013-1,0,4380_7778208_1150102,4380_244 -4380_78100,295,4380_114710,Strandhill,113298-00019-1,1,4380_7778208_4720503,4380_1752 -4380_78150,285,4380_114718,Donegal,46853-00009-1,0,4380_7778208_300602,4380_1754 -4380_78150,286,4380_114719,Donegal,46845-00010-1,0,4380_7778208_300602,4380_1754 -4380_77955,292,4380_11472,Enfield,57708-00016-1,0,4380_7778208_1150102,4380_238 -4380_78150,297,4380_114720,Donegal,46844-00008-1,0,4380_7778208_300602,4380_1754 -4380_78150,287,4380_114721,Donegal,46847-00012-1,0,4380_7778208_300602,4380_1754 -4380_78150,288,4380_114722,Donegal,46855-00011-1,0,4380_7778208_300602,4380_1754 -4380_78150,289,4380_114723,Donegal,46849-00014-1,0,4380_7778208_300602,4380_1754 -4380_78150,290,4380_114724,Donegal,46854-00015-1,0,4380_7778208_300602,4380_1754 -4380_78150,291,4380_114725,Donegal,46851-00013-1,0,4380_7778208_300602,4380_1754 -4380_78150,292,4380_114726,Donegal,46846-00016-1,0,4380_7778208_300602,4380_1754 -4380_78150,293,4380_114727,Donegal,46856-00017-1,0,4380_7778208_300602,4380_1754 -4380_78150,295,4380_114728,Donegal,46850-00019-1,0,4380_7778208_300602,4380_1754 -4380_78150,294,4380_114729,Donegal,46848-00018-1,0,4380_7778208_300602,4380_1754 -4380_77955,293,4380_11473,Enfield,57706-00017-1,0,4380_7778208_1150102,4380_238 -4380_78150,296,4380_114730,Donegal,46852-00021-1,0,4380_7778208_300602,4380_1754 -4380_78150,285,4380_114738,Donegal,46950-00009-1,0,4380_7778208_300604,4380_1754 -4380_78150,286,4380_114739,Donegal,46952-00010-1,0,4380_7778208_300604,4380_1754 -4380_77955,294,4380_11474,Enfield,57702-00018-1,0,4380_7778208_1150102,4380_238 -4380_78150,297,4380_114740,Donegal,46954-00008-1,0,4380_7778208_300604,4380_1754 -4380_78150,287,4380_114741,Donegal,46957-00012-1,0,4380_7778208_300604,4380_1754 -4380_78150,288,4380_114742,Donegal,46948-00011-1,0,4380_7778208_300604,4380_1754 -4380_78150,289,4380_114743,Donegal,46955-00014-1,0,4380_7778208_300604,4380_1754 -4380_78150,290,4380_114744,Donegal,46951-00015-1,0,4380_7778208_300604,4380_1754 -4380_78150,291,4380_114745,Donegal,46959-00013-1,0,4380_7778208_300604,4380_1754 -4380_78150,292,4380_114746,Donegal,46953-00016-1,0,4380_7778208_300604,4380_1754 -4380_78150,293,4380_114747,Donegal,46949-00017-1,0,4380_7778208_300604,4380_1754 -4380_78150,295,4380_114748,Donegal,46956-00019-1,0,4380_7778208_300604,4380_1754 -4380_78150,294,4380_114749,Donegal,46958-00018-1,0,4380_7778208_300604,4380_1754 -4380_77955,295,4380_11475,Enfield,57704-00019-1,0,4380_7778208_1150102,4380_238 -4380_78150,296,4380_114750,Donegal,46960-00021-1,0,4380_7778208_300604,4380_1754 -4380_78150,285,4380_114758,Donegal,47063-00009-1,0,4380_7778208_300606,4380_1754 -4380_78150,286,4380_114759,Donegal,47056-00010-1,0,4380_7778208_300606,4380_1754 -4380_77955,296,4380_11476,Enfield,57700-00021-1,0,4380_7778208_1150102,4380_244 -4380_78150,297,4380_114760,Donegal,47062-00008-1,0,4380_7778208_300606,4380_1754 -4380_78150,287,4380_114761,Donegal,47052-00012-1,0,4380_7778208_300606,4380_1754 -4380_78150,288,4380_114762,Donegal,47060-00011-1,0,4380_7778208_300606,4380_1754 -4380_78150,289,4380_114763,Donegal,47054-00014-1,0,4380_7778208_300606,4380_1754 -4380_78150,290,4380_114764,Donegal,47064-00015-1,0,4380_7778208_300606,4380_1754 -4380_78150,291,4380_114765,Donegal,47058-00013-1,0,4380_7778208_300606,4380_1754 -4380_78150,292,4380_114766,Donegal,47057-00016-1,0,4380_7778208_300606,4380_1754 -4380_78150,293,4380_114767,Donegal,47061-00017-1,0,4380_7778208_300606,4380_1754 -4380_78150,295,4380_114768,Donegal,47055-00019-1,0,4380_7778208_300606,4380_1754 -4380_78150,294,4380_114769,Donegal,47053-00018-1,0,4380_7778208_300606,4380_1754 -4380_78150,296,4380_114770,Donegal,47059-00021-1,0,4380_7778208_300606,4380_1754 -4380_78150,285,4380_114778,Donegal,46820-00009-1,0,4380_7778208_300601,4380_1754 -4380_78150,286,4380_114779,Donegal,46818-00010-1,0,4380_7778208_300601,4380_1754 -4380_78150,297,4380_114780,Donegal,46830-00008-1,0,4380_7778208_300601,4380_1754 -4380_78150,287,4380_114781,Donegal,46826-00012-1,0,4380_7778208_300601,4380_1754 -4380_78150,288,4380_114782,Donegal,46828-00011-1,0,4380_7778208_300601,4380_1754 -4380_78150,289,4380_114783,Donegal,46824-00014-1,0,4380_7778208_300601,4380_1754 -4380_78150,290,4380_114784,Donegal,46821-00015-1,0,4380_7778208_300601,4380_1754 -4380_78150,291,4380_114785,Donegal,46822-00013-1,0,4380_7778208_300601,4380_1754 -4380_78150,292,4380_114786,Donegal,46819-00016-1,0,4380_7778208_300601,4380_1754 -4380_78150,293,4380_114787,Donegal,46829-00017-1,0,4380_7778208_300601,4380_1754 -4380_78150,295,4380_114788,Donegal,46825-00019-1,0,4380_7778208_300601,4380_1754 -4380_78150,294,4380_114789,Donegal,46827-00018-1,0,4380_7778208_300601,4380_1754 -4380_78150,296,4380_114790,Donegal,46823-00021-1,0,4380_7778208_300601,4380_1754 -4380_78150,285,4380_114798,Donegal,46926-00009-1,0,4380_7778208_300603,4380_1754 -4380_78150,286,4380_114799,Donegal,46922-00010-1,0,4380_7778208_300603,4380_1754 -4380_78113,289,4380_1148,Dublin via Airport,49785-00014-1,1,4380_7778208_1000904,4380_18 -4380_78150,297,4380_114800,Donegal,46934-00008-1,0,4380_7778208_300603,4380_1754 -4380_78150,287,4380_114801,Donegal,46932-00012-1,0,4380_7778208_300603,4380_1754 -4380_78150,288,4380_114802,Donegal,46930-00011-1,0,4380_7778208_300603,4380_1754 -4380_78150,289,4380_114803,Donegal,46928-00014-1,0,4380_7778208_300603,4380_1754 -4380_78150,290,4380_114804,Donegal,46927-00015-1,0,4380_7778208_300603,4380_1754 -4380_78150,291,4380_114805,Donegal,46924-00013-1,0,4380_7778208_300603,4380_1754 -4380_78150,292,4380_114806,Donegal,46923-00016-1,0,4380_7778208_300603,4380_1754 -4380_78150,293,4380_114807,Donegal,46931-00017-1,0,4380_7778208_300603,4380_1754 -4380_78150,295,4380_114808,Donegal,46929-00019-1,0,4380_7778208_300603,4380_1754 -4380_78150,294,4380_114809,Donegal,46933-00018-1,0,4380_7778208_300603,4380_1754 -4380_78150,296,4380_114810,Donegal,46925-00021-1,0,4380_7778208_300603,4380_1754 -4380_78150,285,4380_114818,Donegal,47032-00009-1,0,4380_7778208_300605,4380_1754 -4380_78150,286,4380_114819,Donegal,47028-00010-1,0,4380_7778208_300605,4380_1754 -4380_78150,297,4380_114820,Donegal,47036-00008-1,0,4380_7778208_300605,4380_1754 -4380_78150,287,4380_114821,Donegal,47037-00012-1,0,4380_7778208_300605,4380_1754 -4380_78150,288,4380_114822,Donegal,47026-00011-1,0,4380_7778208_300605,4380_1754 -4380_78150,289,4380_114823,Donegal,47034-00014-1,0,4380_7778208_300605,4380_1754 -4380_78150,290,4380_114824,Donegal,47033-00015-1,0,4380_7778208_300605,4380_1754 -4380_78150,291,4380_114825,Donegal,47030-00013-1,0,4380_7778208_300605,4380_1754 -4380_78150,292,4380_114826,Donegal,47029-00016-1,0,4380_7778208_300605,4380_1754 -4380_78150,293,4380_114827,Donegal,47027-00017-1,0,4380_7778208_300605,4380_1754 -4380_78150,295,4380_114828,Donegal,47035-00019-1,0,4380_7778208_300605,4380_1754 -4380_78150,294,4380_114829,Donegal,47038-00018-1,0,4380_7778208_300605,4380_1754 -4380_78150,296,4380_114830,Donegal,47031-00021-1,0,4380_7778208_300605,4380_1754 -4380_78150,285,4380_114838,Dublin,46786-00009-1,1,4380_7778208_300601,4380_1755 -4380_78150,286,4380_114839,Dublin,46788-00010-1,1,4380_7778208_300601,4380_1755 -4380_77955,285,4380_11484,Mullingar,9379-00009-1,0,4380_7778208_1150106,4380_239 -4380_78150,297,4380_114840,Dublin,46785-00008-1,1,4380_7778208_300601,4380_1755 -4380_78150,287,4380_114841,Dublin,46781-00012-1,1,4380_7778208_300601,4380_1755 -4380_78150,288,4380_114842,Dublin,46790-00011-1,1,4380_7778208_300601,4380_1755 -4380_78150,289,4380_114843,Dublin,46779-00014-1,1,4380_7778208_300601,4380_1755 -4380_78150,290,4380_114844,Dublin,46787-00015-1,1,4380_7778208_300601,4380_1755 -4380_78150,291,4380_114845,Dublin,46783-00013-1,1,4380_7778208_300601,4380_1755 -4380_78150,292,4380_114846,Dublin,46789-00016-1,1,4380_7778208_300601,4380_1755 -4380_78150,293,4380_114847,Dublin,46791-00017-1,1,4380_7778208_300601,4380_1755 -4380_78150,295,4380_114848,Dublin,46780-00019-1,1,4380_7778208_300601,4380_1755 -4380_78150,294,4380_114849,Dublin,46782-00018-1,1,4380_7778208_300601,4380_1755 -4380_77955,286,4380_11485,Mullingar,9397-00010-1,0,4380_7778208_1150106,4380_239 -4380_78150,296,4380_114850,Dublin,46784-00021-1,1,4380_7778208_300601,4380_1755 -4380_78150,285,4380_114858,Dublin,46891-00009-1,1,4380_7778208_300603,4380_1755 -4380_78150,286,4380_114859,Dublin,46893-00010-1,1,4380_7778208_300603,4380_1755 -4380_77955,297,4380_11486,Enfield,57709-00008-1,0,4380_7778208_1150102,4380_238 -4380_78150,297,4380_114860,Dublin,46895-00008-1,1,4380_7778208_300603,4380_1755 -4380_78150,287,4380_114861,Dublin,46885-00012-1,1,4380_7778208_300603,4380_1755 -4380_78150,288,4380_114862,Dublin,46887-00011-1,1,4380_7778208_300603,4380_1755 -4380_78150,289,4380_114863,Dublin,46883-00014-1,1,4380_7778208_300603,4380_1755 -4380_78150,290,4380_114864,Dublin,46892-00015-1,1,4380_7778208_300603,4380_1755 -4380_78150,291,4380_114865,Dublin,46889-00013-1,1,4380_7778208_300603,4380_1755 -4380_78150,292,4380_114866,Dublin,46894-00016-1,1,4380_7778208_300603,4380_1755 -4380_78150,293,4380_114867,Dublin,46888-00017-1,1,4380_7778208_300603,4380_1755 -4380_78150,295,4380_114868,Dublin,46884-00019-1,1,4380_7778208_300603,4380_1755 -4380_78150,294,4380_114869,Dublin,46886-00018-1,1,4380_7778208_300603,4380_1755 -4380_77955,288,4380_11487,Mullingar,9403-00011-1,0,4380_7778208_1150106,4380_239 -4380_78150,296,4380_114870,Dublin,46890-00021-1,1,4380_7778208_300603,4380_1755 -4380_78150,285,4380_114878,Dublin via Airport,46996-00009-1,1,4380_7778208_300605,4380_1756 -4380_78150,286,4380_114879,Dublin via Airport,46991-00010-1,1,4380_7778208_300605,4380_1756 -4380_77955,287,4380_11488,Mullingar,9421-00012-1,0,4380_7778208_1150106,4380_239 -4380_78150,297,4380_114880,Dublin via Airport,46993-00008-1,1,4380_7778208_300605,4380_1756 -4380_78150,287,4380_114881,Dublin via Airport,46994-00012-1,1,4380_7778208_300605,4380_1756 -4380_78150,288,4380_114882,Dublin via Airport,46998-00011-1,1,4380_7778208_300605,4380_1756 -4380_78150,289,4380_114883,Dublin via Airport,46989-00014-1,1,4380_7778208_300605,4380_1756 -4380_78150,290,4380_114884,Dublin via Airport,46997-00015-1,1,4380_7778208_300605,4380_1756 -4380_78150,291,4380_114885,Dublin via Airport,46987-00013-1,1,4380_7778208_300605,4380_1756 -4380_78150,292,4380_114886,Dublin via Airport,46992-00016-1,1,4380_7778208_300605,4380_1756 -4380_78150,293,4380_114887,Dublin via Airport,46999-00017-1,1,4380_7778208_300605,4380_1756 -4380_78150,295,4380_114888,Dublin via Airport,46990-00019-1,1,4380_7778208_300605,4380_1756 -4380_78150,294,4380_114889,Dublin via Airport,46995-00018-1,1,4380_7778208_300605,4380_1756 -4380_77955,289,4380_11489,Mullingar,9373-00014-1,0,4380_7778208_1150106,4380_239 -4380_78150,296,4380_114890,Dublin via Airport,46988-00021-1,1,4380_7778208_300605,4380_1756 -4380_78150,285,4380_114898,Dublin via Airport,47096-00009-1,1,4380_7778208_300607,4380_1756 -4380_78150,286,4380_114899,Dublin via Airport,47100-00010-1,1,4380_7778208_300607,4380_1756 -4380_78113,290,4380_1149,Dublin via Airport,49792-00015-1,1,4380_7778208_1000904,4380_18 -4380_77955,290,4380_11490,Mullingar,57904-00015-1,0,4380_7778208_1150106,4380_239 -4380_78150,297,4380_114900,Dublin via Airport,47091-00008-1,1,4380_7778208_300607,4380_1756 -4380_78150,287,4380_114901,Dublin via Airport,47098-00012-1,1,4380_7778208_300607,4380_1756 -4380_78150,288,4380_114902,Dublin via Airport,47102-00011-1,1,4380_7778208_300607,4380_1756 -4380_78150,289,4380_114903,Dublin via Airport,47092-00014-1,1,4380_7778208_300607,4380_1756 -4380_78150,290,4380_114904,Dublin via Airport,47097-00015-1,1,4380_7778208_300607,4380_1756 -4380_78150,291,4380_114905,Dublin via Airport,47094-00013-1,1,4380_7778208_300607,4380_1756 -4380_78150,292,4380_114906,Dublin via Airport,47101-00016-1,1,4380_7778208_300607,4380_1756 -4380_78150,293,4380_114907,Dublin via Airport,47103-00017-1,1,4380_7778208_300607,4380_1756 -4380_78150,295,4380_114908,Dublin via Airport,47093-00019-1,1,4380_7778208_300607,4380_1756 -4380_78150,294,4380_114909,Dublin via Airport,47099-00018-1,1,4380_7778208_300607,4380_1756 -4380_77955,291,4380_11491,Mullingar,58019-00013-1,0,4380_7778208_1150108,4380_245 -4380_78150,296,4380_114910,Dublin via Airport,47095-00021-1,1,4380_7778208_300607,4380_1756 -4380_78150,285,4380_114918,Dublin via Airport,46868-00009-1,1,4380_7778208_300602,4380_1756 -4380_78150,286,4380_114919,Dublin via Airport,46862-00010-1,1,4380_7778208_300602,4380_1756 -4380_77955,292,4380_11492,Mullingar,57908-00016-1,0,4380_7778208_1150106,4380_239 -4380_78150,297,4380_114920,Dublin via Airport,46859-00008-1,1,4380_7778208_300602,4380_1756 -4380_78150,287,4380_114921,Dublin via Airport,46864-00012-1,1,4380_7778208_300602,4380_1756 -4380_78150,288,4380_114922,Dublin via Airport,46857-00011-1,1,4380_7778208_300602,4380_1756 -4380_78150,289,4380_114923,Dublin via Airport,46860-00014-1,1,4380_7778208_300602,4380_1756 -4380_78150,290,4380_114924,Dublin via Airport,46869-00015-1,1,4380_7778208_300602,4380_1756 -4380_78150,291,4380_114925,Dublin via Airport,46866-00013-1,1,4380_7778208_300602,4380_1756 -4380_78150,292,4380_114926,Dublin via Airport,46863-00016-1,1,4380_7778208_300602,4380_1756 -4380_78150,293,4380_114927,Dublin via Airport,46858-00017-1,1,4380_7778208_300602,4380_1756 -4380_78150,295,4380_114928,Dublin via Airport,46861-00019-1,1,4380_7778208_300602,4380_1756 -4380_78150,294,4380_114929,Dublin via Airport,46865-00018-1,1,4380_7778208_300602,4380_1756 -4380_77955,293,4380_11493,Mullingar,57906-00017-1,0,4380_7778208_1150106,4380_239 -4380_78150,296,4380_114930,Dublin via Airport,46867-00021-1,1,4380_7778208_300602,4380_1756 -4380_78150,285,4380_114938,Dublin via Airport,46961-00009-1,1,4380_7778208_300604,4380_1756 -4380_78150,286,4380_114939,Dublin via Airport,46971-00010-1,1,4380_7778208_300604,4380_1756 -4380_77955,294,4380_11494,Mullingar,57905-00018-1,0,4380_7778208_1150106,4380_239 -4380_78150,297,4380_114940,Dublin via Airport,46973-00008-1,1,4380_7778208_300604,4380_1756 -4380_78150,287,4380_114941,Dublin via Airport,46969-00012-1,1,4380_7778208_300604,4380_1756 -4380_78150,288,4380_114942,Dublin via Airport,46967-00011-1,1,4380_7778208_300604,4380_1756 -4380_78150,289,4380_114943,Dublin via Airport,46965-00014-1,1,4380_7778208_300604,4380_1756 -4380_78150,290,4380_114944,Dublin via Airport,46962-00015-1,1,4380_7778208_300604,4380_1756 -4380_78150,291,4380_114945,Dublin via Airport,46963-00013-1,1,4380_7778208_300604,4380_1756 -4380_78150,292,4380_114946,Dublin via Airport,46972-00016-1,1,4380_7778208_300604,4380_1756 -4380_78150,293,4380_114947,Dublin via Airport,46968-00017-1,1,4380_7778208_300604,4380_1756 -4380_78150,295,4380_114948,Dublin via Airport,46966-00019-1,1,4380_7778208_300604,4380_1756 -4380_78150,294,4380_114949,Dublin via Airport,46970-00018-1,1,4380_7778208_300604,4380_1756 -4380_77955,295,4380_11495,Mullingar,57907-00019-1,0,4380_7778208_1150106,4380_239 -4380_78150,296,4380_114950,Dublin via Airport,46964-00021-1,1,4380_7778208_300604,4380_1756 -4380_78150,285,4380_114958,Dublin via Airport,47074-00009-1,1,4380_7778208_300606,4380_1756 -4380_78150,286,4380_114959,Dublin via Airport,47067-00010-1,1,4380_7778208_300606,4380_1756 -4380_77955,296,4380_11496,Mullingar,58020-00021-1,0,4380_7778208_1150108,4380_245 -4380_78150,297,4380_114960,Dublin via Airport,47069-00008-1,1,4380_7778208_300606,4380_1756 -4380_78150,287,4380_114961,Dublin via Airport,47072-00012-1,1,4380_7778208_300606,4380_1756 -4380_78150,288,4380_114962,Dublin via Airport,47065-00011-1,1,4380_7778208_300606,4380_1756 -4380_78150,289,4380_114963,Dublin via Airport,47070-00014-1,1,4380_7778208_300606,4380_1756 -4380_78150,290,4380_114964,Dublin via Airport,47075-00015-1,1,4380_7778208_300606,4380_1756 -4380_78150,291,4380_114965,Dublin via Airport,47076-00013-1,1,4380_7778208_300606,4380_1756 -4380_78150,292,4380_114966,Dublin via Airport,47068-00016-1,1,4380_7778208_300606,4380_1756 -4380_78150,293,4380_114967,Dublin via Airport,47066-00017-1,1,4380_7778208_300606,4380_1756 -4380_78150,295,4380_114968,Dublin via Airport,47071-00019-1,1,4380_7778208_300606,4380_1756 -4380_78150,294,4380_114969,Dublin via Airport,47073-00018-1,1,4380_7778208_300606,4380_1756 -4380_78150,296,4380_114970,Dublin via Airport,47077-00021-1,1,4380_7778208_300606,4380_1756 -4380_78152,297,4380_114977,Letterkenny,96807-00008-1,0,4380_7778208_3288801,4380_1757 -4380_78152,285,4380_114978,Letterkenny,96808-00009-1,0,4380_7778208_3288801,4380_1757 -4380_78152,288,4380_114980,Letterkenny,96801-00011-1,0,4380_7778208_3288801,4380_1757 -4380_78152,286,4380_114981,Letterkenny,96805-00010-1,0,4380_7778208_3288801,4380_1757 -4380_78152,291,4380_114982,Letterkenny,96803-00013-1,0,4380_7778208_3288801,4380_1757 -4380_78152,289,4380_114983,Letterkenny,96810-00014-1,0,4380_7778208_3288801,4380_1757 -4380_78152,287,4380_114984,Letterkenny,96799-00012-1,0,4380_7778208_3288801,4380_1757 -4380_78152,292,4380_114985,Letterkenny,96806-00016-1,0,4380_7778208_3288801,4380_1757 -4380_78152,290,4380_114986,Letterkenny,96809-00015-1,0,4380_7778208_3288801,4380_1757 -4380_78152,294,4380_114987,Letterkenny,96800-00018-1,0,4380_7778208_3288801,4380_1757 -4380_78152,295,4380_114988,Letterkenny,96811-00019-1,0,4380_7778208_3288801,4380_1757 -4380_78152,293,4380_114989,Letterkenny,96802-00017-1,0,4380_7778208_3288801,4380_1757 -4380_78152,296,4380_114990,Letterkenny,96804-00021-1,0,4380_7778208_3288801,4380_1757 -4380_78152,297,4380_114997,Dublin,96786-00008-1,1,4380_7778208_3288801,4380_1758 -4380_78152,285,4380_114998,Dublin,96791-00009-1,1,4380_7778208_3288801,4380_1758 -4380_77946,287,4380_115,Dundalk,50325-00012-1,0,4380_7778208_1000913,4380_1 -4380_78113,291,4380_1150,Dublin via Airport,49783-00013-1,1,4380_7778208_1000904,4380_18 -4380_78152,288,4380_115000,Dublin,96793-00011-1,1,4380_7778208_3288801,4380_1758 -4380_78152,286,4380_115001,Dublin,96789-00010-1,1,4380_7778208_3288801,4380_1758 -4380_78152,291,4380_115002,Dublin,96795-00013-1,1,4380_7778208_3288801,4380_1758 -4380_78152,289,4380_115003,Dublin,96787-00014-1,1,4380_7778208_3288801,4380_1758 -4380_78152,287,4380_115004,Dublin,96797-00012-1,1,4380_7778208_3288801,4380_1758 -4380_78152,292,4380_115005,Dublin,96790-00016-1,1,4380_7778208_3288801,4380_1758 -4380_78152,290,4380_115006,Dublin,96792-00015-1,1,4380_7778208_3288801,4380_1758 -4380_78152,294,4380_115007,Dublin,96798-00018-1,1,4380_7778208_3288801,4380_1758 -4380_78152,295,4380_115008,Dublin,96788-00019-1,1,4380_7778208_3288801,4380_1758 -4380_78152,293,4380_115009,Dublin,96794-00017-1,1,4380_7778208_3288801,4380_1758 -4380_78152,296,4380_115010,Dublin,96796-00021-1,1,4380_7778208_3288801,4380_1758 -4380_77955,285,4380_11504,Enfield,9287-00009-1,0,4380_7778208_1150105,4380_238 -4380_77955,286,4380_11505,Enfield,9296-00010-1,0,4380_7778208_1150105,4380_238 -4380_77955,297,4380_11506,Mullingar,57909-00008-1,0,4380_7778208_1150106,4380_239 -4380_77955,288,4380_11507,Enfield,9323-00011-1,0,4380_7778208_1150105,4380_238 -4380_77955,287,4380_11508,Enfield,9341-00012-1,0,4380_7778208_1150105,4380_238 -4380_77955,289,4380_11509,Enfield,9260-00014-1,0,4380_7778208_1150105,4380_238 -4380_78113,292,4380_1151,Dublin via Airport,49794-00016-1,1,4380_7778208_1000904,4380_18 -4380_77955,290,4380_11510,Enfield,57858-00015-1,0,4380_7778208_1150105,4380_238 -4380_77955,291,4380_11511,Enfield,9353-00013-1,0,4380_7778208_1150105,4380_244 -4380_77955,292,4380_11512,Enfield,57859-00016-1,0,4380_7778208_1150105,4380_238 -4380_77955,293,4380_11513,Enfield,57860-00017-1,0,4380_7778208_1150105,4380_238 -4380_77955,294,4380_11514,Enfield,57857-00018-1,0,4380_7778208_1150105,4380_238 -4380_77955,295,4380_11515,Enfield,57855-00019-1,0,4380_7778208_1150105,4380_238 -4380_77955,296,4380_11516,Enfield,57856-00021-1,0,4380_7778208_1150105,4380_244 -4380_77955,297,4380_11518,Mullingar,57811-00008-1,0,4380_7778208_1150104,4380_239 -4380_78113,293,4380_1152,Dublin via Airport,49788-00017-1,1,4380_7778208_1000904,4380_18 -4380_77955,285,4380_11525,Mullingar,9456-00009-1,0,4380_7778208_1150107,4380_239 -4380_77955,286,4380_11526,Mullingar,9470-00010-1,0,4380_7778208_1150107,4380_239 -4380_77955,288,4380_11527,Mullingar,9484-00011-1,0,4380_7778208_1150107,4380_239 -4380_77955,287,4380_11528,Mullingar,9498-00012-1,0,4380_7778208_1150107,4380_239 -4380_77955,289,4380_11529,Mullingar,9442-00014-1,0,4380_7778208_1150107,4380_239 -4380_78113,294,4380_1153,Dublin via Airport,49790-00018-1,1,4380_7778208_1000904,4380_18 -4380_77955,290,4380_11530,Mullingar,57957-00015-1,0,4380_7778208_1150107,4380_239 -4380_77955,291,4380_11531,Mullingar,9772-00013-1,0,4380_7778208_1150113,4380_245 -4380_77955,292,4380_11532,Mullingar,57955-00016-1,0,4380_7778208_1150107,4380_239 -4380_77955,293,4380_11533,Mullingar,57956-00017-1,0,4380_7778208_1150107,4380_239 -4380_77955,294,4380_11534,Mullingar,57958-00018-1,0,4380_7778208_1150107,4380_239 -4380_77955,295,4380_11535,Mullingar,57954-00019-1,0,4380_7778208_1150107,4380_239 -4380_77955,296,4380_11536,Mullingar,58158-00021-1,0,4380_7778208_1150113,4380_245 -4380_78113,295,4380_1154,Dublin via Airport,49786-00019-1,1,4380_7778208_1000904,4380_18 -4380_77955,285,4380_11544,Mullingar,9832-00009-1,0,4380_7778208_1150115,4380_239 -4380_77955,286,4380_11545,Mullingar,9853-00010-1,0,4380_7778208_1150115,4380_239 -4380_77955,297,4380_11546,Mullingar,57868-00008-1,0,4380_7778208_1150105,4380_245 -4380_77955,288,4380_11547,Mullingar,9860-00011-1,0,4380_7778208_1150115,4380_239 -4380_77955,287,4380_11548,Mullingar,9874-00012-1,0,4380_7778208_1150115,4380_239 -4380_77955,289,4380_11549,Mullingar,9825-00014-1,0,4380_7778208_1150115,4380_239 -4380_78113,296,4380_1155,Dublin via Airport,49784-00021-1,1,4380_7778208_1000904,4380_18 -4380_77955,290,4380_11550,Mullingar,58208-00015-1,0,4380_7778208_1150115,4380_239 -4380_77955,291,4380_11551,Mullingar,9569-00013-1,0,4380_7778208_1150109,4380_239 -4380_77955,292,4380_11552,Mullingar,58207-00016-1,0,4380_7778208_1150115,4380_239 -4380_77955,293,4380_11553,Mullingar,58205-00017-1,0,4380_7778208_1150115,4380_239 -4380_77955,294,4380_11554,Mullingar,58206-00018-1,0,4380_7778208_1150115,4380_239 -4380_77955,295,4380_11555,Mullingar,58204-00019-1,0,4380_7778208_1150115,4380_239 -4380_77955,296,4380_11556,Mullingar,58043-00021-1,0,4380_7778208_1150109,4380_239 -4380_77955,285,4380_11563,Dublin,9374-00009-1,1,4380_7778208_1150106,4380_250 -4380_77955,286,4380_11564,Dublin,9392-00010-1,1,4380_7778208_1150106,4380_250 -4380_77955,288,4380_11565,Dublin,9398-00011-1,1,4380_7778208_1150106,4380_250 -4380_77955,287,4380_11566,Dublin,9416-00012-1,1,4380_7778208_1150106,4380_250 -4380_77955,289,4380_11567,Dublin,9368-00014-1,1,4380_7778208_1150106,4380_250 -4380_77955,290,4380_11568,Dublin,57872-00015-1,1,4380_7778208_1150106,4380_250 -4380_77955,291,4380_11569,Dublin,58044-00013-1,1,4380_7778208_1150110,4380_262 -4380_77955,292,4380_11570,Dublin,57870-00016-1,1,4380_7778208_1150106,4380_250 -4380_77955,293,4380_11571,Dublin,57874-00017-1,1,4380_7778208_1150106,4380_250 -4380_77955,294,4380_11572,Dublin,57871-00018-1,1,4380_7778208_1150106,4380_250 -4380_77955,295,4380_11573,Dublin,57873-00019-1,1,4380_7778208_1150106,4380_250 -4380_77955,296,4380_11574,Dublin,58045-00021-1,1,4380_7778208_1150110,4380_262 -4380_77955,285,4380_11580,Dublin,9580-00009-1,1,4380_7778208_1150110,4380_249 -4380_77955,286,4380_11581,Dublin,9590-00010-1,1,4380_7778208_1150110,4380_249 -4380_77955,288,4380_11582,Dublin,9600-00011-1,1,4380_7778208_1150110,4380_249 -4380_77955,287,4380_11583,Dublin,9610-00012-1,1,4380_7778208_1150110,4380_249 -4380_77955,289,4380_11584,Dublin,9575-00014-1,1,4380_7778208_1150110,4380_249 -4380_77955,290,4380_11585,Dublin,58050-00015-1,1,4380_7778208_1150110,4380_249 -4380_77955,292,4380_11586,Dublin,58049-00016-1,1,4380_7778208_1150110,4380_249 -4380_77955,293,4380_11587,Dublin,58046-00017-1,1,4380_7778208_1150110,4380_249 -4380_77955,294,4380_11588,Dublin,58048-00018-1,1,4380_7778208_1150110,4380_249 -4380_77955,295,4380_11589,Dublin,58047-00019-1,1,4380_7778208_1150110,4380_249 -4380_77955,285,4380_11596,Dublin,9671-00009-1,1,4380_7778208_1150112,4380_253 -4380_77955,286,4380_11597,Dublin,9675-00010-1,1,4380_7778208_1150112,4380_253 -4380_77955,288,4380_11598,Dublin,9681-00011-1,1,4380_7778208_1150112,4380_253 -4380_77955,287,4380_11599,Dublin,9683-00012-1,1,4380_7778208_1150112,4380_253 -4380_77946,288,4380_116,Dundalk,50321-00011-1,0,4380_7778208_1000913,4380_1 -4380_77955,289,4380_11600,Dublin,9667-00014-1,1,4380_7778208_1150112,4380_253 -4380_77955,290,4380_11601,Dublin,58106-00015-1,1,4380_7778208_1150112,4380_253 -4380_77955,291,4380_11602,Dublin,9659-00013-1,1,4380_7778208_1150111,4380_251 -4380_77955,292,4380_11603,Dublin,58107-00016-1,1,4380_7778208_1150112,4380_253 -4380_77955,293,4380_11604,Dublin,58110-00017-1,1,4380_7778208_1150112,4380_253 -4380_77955,294,4380_11605,Dublin,58109-00018-1,1,4380_7778208_1150112,4380_253 -4380_77955,295,4380_11606,Dublin,58108-00019-1,1,4380_7778208_1150112,4380_253 -4380_77955,296,4380_11607,Dublin,58087-00021-1,1,4380_7778208_1150111,4380_251 -4380_77955,297,4380_11609,Dublin,57760-00008-1,1,4380_7778208_1150104,4380_251 -4380_77955,285,4380_11616,Dublin,9015-00009-1,1,4380_7778208_1150101,4380_259 -4380_77955,286,4380_11617,Dublin,9031-00010-1,1,4380_7778208_1150101,4380_259 -4380_77955,288,4380_11618,Dublin,9047-00011-1,1,4380_7778208_1150101,4380_259 -4380_77955,287,4380_11619,Dublin,9063-00012-1,1,4380_7778208_1150101,4380_259 -4380_77955,289,4380_11620,Dublin,8999-00014-1,1,4380_7778208_1150101,4380_259 -4380_77955,290,4380_11621,Dublin,57571-00015-1,1,4380_7778208_1150101,4380_259 -4380_77955,291,4380_11622,Dublin,57575-00013-1,1,4380_7778208_1150101,4380_256 -4380_77955,292,4380_11623,Dublin,57574-00016-1,1,4380_7778208_1150101,4380_259 -4380_77955,293,4380_11624,Dublin,57573-00017-1,1,4380_7778208_1150101,4380_259 -4380_77955,294,4380_11625,Dublin,57572-00018-1,1,4380_7778208_1150101,4380_259 -4380_77955,295,4380_11626,Dublin,57577-00019-1,1,4380_7778208_1150101,4380_259 -4380_77955,296,4380_11627,Dublin,57576-00021-1,1,4380_7778208_1150101,4380_256 -4380_78033,92,4380_116277,Shannon Airport,98276-00015-2,0,,4380_1104 -4380_78141,92,4380_116287,St. Stephen's Green,53015-00015-2,1,,4380_50 -4380_78113,285,4380_1163,Dublin via Airport,49895-00009-1,1,4380_7778208_1000905,4380_18 -4380_77955,285,4380_11633,Dublin,9280-00009-1,1,4380_7778208_1150105,4380_250 -4380_77955,286,4380_11634,Dublin,9289-00010-1,1,4380_7778208_1150105,4380_250 -4380_77955,288,4380_11635,Dublin,9316-00011-1,1,4380_7778208_1150105,4380_250 -4380_77955,287,4380_11636,Dublin,9334-00012-1,1,4380_7778208_1150105,4380_250 -4380_77955,289,4380_11637,Dublin,9253-00014-1,1,4380_7778208_1150105,4380_250 -4380_77955,290,4380_11638,Dublin,57814-00015-1,1,4380_7778208_1150105,4380_250 -4380_77955,292,4380_11639,Dublin,57812-00016-1,1,4380_7778208_1150105,4380_250 -4380_78113,286,4380_1164,Dublin via Airport,49891-00010-1,1,4380_7778208_1000905,4380_18 -4380_77955,293,4380_11640,Dublin,57816-00017-1,1,4380_7778208_1150105,4380_250 -4380_77955,294,4380_11641,Dublin,57813-00018-1,1,4380_7778208_1150105,4380_250 -4380_77955,295,4380_11642,Dublin,57815-00019-1,1,4380_7778208_1150105,4380_250 -4380_78154,92,4380_116485,Bealnamulla,111554-00015-2,1,,4380_1856 -4380_78113,297,4380_1165,Dublin via Airport,49795-00008-1,1,4380_7778208_1000904,4380_18 -4380_77955,285,4380_11653,Dublin,9168-00009-1,1,4380_7778208_1150103,4380_249 -4380_77955,285,4380_11654,Maynooth University,9891-00009-1,1,4380_7778208_1150116,4380_255 -4380_77955,286,4380_11655,Dublin,9183-00010-1,1,4380_7778208_1150103,4380_249 -4380_77955,286,4380_11656,Maynooth University,9903-00010-1,1,4380_7778208_1150116,4380_255 -4380_77955,288,4380_11657,Dublin,9193-00011-1,1,4380_7778208_1150103,4380_249 -4380_77955,288,4380_11658,Maynooth University,9907-00011-1,1,4380_7778208_1150116,4380_255 -4380_77955,287,4380_11659,Dublin,9203-00012-1,1,4380_7778208_1150103,4380_249 -4380_77955,92,4380_116594,Dublin,57622-00015-2,1,,4380_249 -4380_78113,287,4380_1166,Dublin via Airport,49887-00012-1,1,4380_7778208_1000905,4380_18 -4380_77955,287,4380_11660,Maynooth University,9919-00012-1,1,4380_7778208_1150116,4380_255 -4380_77955,289,4380_11661,Dublin,9158-00014-1,1,4380_7778208_1150103,4380_249 -4380_77955,289,4380_11662,Maynooth University,9883-00014-1,1,4380_7778208_1150116,4380_255 -4380_77955,290,4380_11663,Dublin,57727-00015-1,1,4380_7778208_1150103,4380_249 -4380_77955,292,4380_11664,Dublin,57728-00016-1,1,4380_7778208_1150103,4380_249 -4380_77955,292,4380_11665,Maynooth University,58218-00016-1,1,4380_7778208_1150116,4380_255 -4380_77955,293,4380_11666,Dublin,57731-00017-1,1,4380_7778208_1150103,4380_249 -4380_78064,92,4380_116666,Eyre Square,107473-00015-2,1,4380_7778208_4090303,4380_1323 -4380_77955,293,4380_11667,Maynooth University,58217-00017-1,1,4380_7778208_1150116,4380_255 -4380_77955,290,4380_11668,Maynooth University,58216-00015-1,1,4380_7778208_1150116,4380_255 -4380_77955,294,4380_11669,Dublin,57730-00018-1,1,4380_7778208_1150103,4380_249 -4380_78113,288,4380_1167,Dublin via Airport,49897-00011-1,1,4380_7778208_1000905,4380_18 -4380_77955,294,4380_11670,Maynooth University,58214-00018-1,1,4380_7778208_1150116,4380_255 -4380_77955,295,4380_11671,Dublin,57729-00019-1,1,4380_7778208_1150103,4380_249 -4380_77955,295,4380_11672,Maynooth University,58215-00019-1,1,4380_7778208_1150116,4380_255 -4380_77955,285,4380_11679,Dublin,9638-00009-1,1,4380_7778208_1150111,4380_251 -4380_78113,289,4380_1168,Dublin via Airport,49889-00014-1,1,4380_7778208_1000905,4380_18 -4380_77955,286,4380_11680,Dublin,9641-00010-1,1,4380_7778208_1150111,4380_251 -4380_77955,288,4380_11681,Dublin,9650-00011-1,1,4380_7778208_1150111,4380_251 -4380_77955,287,4380_11682,Dublin,9656-00012-1,1,4380_7778208_1150111,4380_251 -4380_77955,289,4380_11683,Dublin,9629-00014-1,1,4380_7778208_1150111,4380_251 -4380_77955,290,4380_11684,Dublin,58092-00015-1,1,4380_7778208_1150111,4380_251 -4380_77955,291,4380_11685,Dublin,9562-00013-1,1,4380_7778208_1150109,4380_257 -4380_77955,292,4380_11686,Dublin,58088-00016-1,1,4380_7778208_1150111,4380_251 -4380_77955,293,4380_11687,Dublin,58090-00017-1,1,4380_7778208_1150111,4380_251 -4380_77955,294,4380_11688,Dublin,58089-00018-1,1,4380_7778208_1150111,4380_251 -4380_77955,295,4380_11689,Dublin,58091-00019-1,1,4380_7778208_1150111,4380_251 -4380_78113,290,4380_1169,Dublin via Airport,49896-00015-1,1,4380_7778208_1000905,4380_18 -4380_77955,296,4380_11690,Dublin,58031-00021-1,1,4380_7778208_1150109,4380_257 -4380_77955,285,4380_11697,Dublin,9781-00009-1,1,4380_7778208_1150114,4380_249 -4380_77955,286,4380_11698,Dublin,9793-00010-1,1,4380_7778208_1150114,4380_249 -4380_77955,288,4380_11699,Dublin,9801-00011-1,1,4380_7778208_1150114,4380_249 -4380_77946,289,4380_117,Dundalk,50319-00014-1,0,4380_7778208_1000913,4380_1 -4380_78113,291,4380_1170,Dublin via Airport,49893-00013-1,1,4380_7778208_1000905,4380_18 -4380_77955,287,4380_11700,Dublin,9805-00012-1,1,4380_7778208_1150114,4380_249 -4380_77955,289,4380_11701,Dublin,9773-00014-1,1,4380_7778208_1150114,4380_249 -4380_77955,290,4380_11702,Dublin,58159-00015-1,1,4380_7778208_1150114,4380_249 -4380_77955,291,4380_11703,Dublin,57771-00013-1,1,4380_7778208_1150104,4380_256 -4380_77955,292,4380_11704,Dublin,58161-00016-1,1,4380_7778208_1150114,4380_249 -4380_77955,293,4380_11705,Dublin,58160-00017-1,1,4380_7778208_1150114,4380_249 -4380_77955,294,4380_11706,Dublin,58163-00018-1,1,4380_7778208_1150114,4380_249 -4380_77955,295,4380_11707,Dublin,58162-00019-1,1,4380_7778208_1150114,4380_249 -4380_77955,296,4380_11708,Dublin,57772-00021-1,1,4380_7778208_1150104,4380_256 -4380_78113,292,4380_1171,Dublin via Airport,49892-00016-1,1,4380_7778208_1000905,4380_18 -4380_77955,285,4380_11715,Dublin,9827-00009-1,1,4380_7778208_1150115,4380_251 -4380_77955,286,4380_11716,Dublin,9848-00010-1,1,4380_7778208_1150115,4380_251 -4380_77955,288,4380_11717,Dublin,9855-00011-1,1,4380_7778208_1150115,4380_251 -4380_77955,287,4380_11718,Dublin,9869-00012-1,1,4380_7778208_1150115,4380_251 -4380_77955,289,4380_11719,Dublin,9820-00014-1,1,4380_7778208_1150115,4380_251 -4380_78113,293,4380_1172,Dublin via Airport,49898-00017-1,1,4380_7778208_1000905,4380_18 -4380_77955,290,4380_11720,Dublin,58183-00015-1,1,4380_7778208_1150115,4380_251 -4380_77955,291,4380_11721,Dublin,9692-00013-1,1,4380_7778208_1150112,4380_254 -4380_77955,292,4380_11722,Dublin,58182-00016-1,1,4380_7778208_1150115,4380_251 -4380_77955,293,4380_11723,Dublin,58181-00017-1,1,4380_7778208_1150115,4380_251 -4380_77955,294,4380_11724,Dublin,58180-00018-1,1,4380_7778208_1150115,4380_251 -4380_77955,295,4380_11725,Dublin,58179-00019-1,1,4380_7778208_1150115,4380_251 -4380_77955,296,4380_11726,Dublin,58111-00021-1,1,4380_7778208_1150112,4380_254 -4380_77955,297,4380_11728,Dublin,57817-00008-1,1,4380_7778208_1150105,4380_251 -4380_78113,294,4380_1173,Dublin via Airport,49888-00018-1,1,4380_7778208_1000905,4380_18 -4380_77955,285,4380_11736,Dublin,57776-00009-1,1,4380_7778208_1150104,4380_249 -4380_77955,286,4380_11737,Dublin,57774-00010-1,1,4380_7778208_1150104,4380_249 -4380_77955,297,4380_11738,Dublin,57579-00008-1,1,4380_7778208_1150101,4380_256 -4380_77955,288,4380_11739,Dublin,57778-00011-1,1,4380_7778208_1150104,4380_249 -4380_78113,295,4380_1174,Dublin via Airport,49890-00019-1,1,4380_7778208_1000905,4380_18 -4380_77955,287,4380_11740,Dublin,57782-00012-1,1,4380_7778208_1150104,4380_249 -4380_77955,289,4380_11741,Dublin,57780-00014-1,1,4380_7778208_1150104,4380_249 -4380_77955,290,4380_11742,Dublin,57777-00015-1,1,4380_7778208_1150104,4380_249 -4380_77955,291,4380_11743,Dublin,9212-00013-1,1,4380_7778208_1150103,4380_259 -4380_77955,292,4380_11744,Dublin,57775-00016-1,1,4380_7778208_1150104,4380_249 -4380_77955,293,4380_11745,Dublin,57779-00017-1,1,4380_7778208_1150104,4380_249 -4380_77955,294,4380_11746,Dublin,57783-00018-1,1,4380_7778208_1150104,4380_249 -4380_77955,295,4380_11747,Dublin,57781-00019-1,1,4380_7778208_1150104,4380_249 -4380_77955,296,4380_11748,Dublin,57732-00021-1,1,4380_7778208_1150103,4380_259 -4380_78113,296,4380_1175,Dublin via Airport,49894-00021-1,1,4380_7778208_1000905,4380_18 -4380_77955,285,4380_11755,Dublin,9451-00009-1,1,4380_7778208_1150107,4380_251 -4380_77955,286,4380_11756,Dublin,9465-00010-1,1,4380_7778208_1150107,4380_251 -4380_77955,288,4380_11757,Dublin,9479-00011-1,1,4380_7778208_1150107,4380_251 -4380_77955,287,4380_11758,Dublin,9493-00012-1,1,4380_7778208_1150107,4380_251 -4380_77955,289,4380_11759,Dublin,9437-00014-1,1,4380_7778208_1150107,4380_251 -4380_77955,290,4380_11760,Dublin,57919-00015-1,1,4380_7778208_1150107,4380_251 -4380_77955,291,4380_11761,Dublin,57880-00013-1,1,4380_7778208_1150106,4380_257 -4380_77955,292,4380_11762,Dublin,57918-00016-1,1,4380_7778208_1150107,4380_251 -4380_77955,293,4380_11763,Dublin,57917-00017-1,1,4380_7778208_1150107,4380_251 -4380_77955,294,4380_11764,Dublin,57920-00018-1,1,4380_7778208_1150107,4380_251 -4380_77955,295,4380_11765,Dublin,57921-00019-1,1,4380_7778208_1150107,4380_251 -4380_77955,296,4380_11766,Dublin,57881-00021-1,1,4380_7778208_1150106,4380_257 -4380_77955,285,4380_11773,Dublin,57645-00009-1,1,4380_7778208_1150102,4380_249 -4380_77955,286,4380_11774,Dublin,57647-00010-1,1,4380_7778208_1150102,4380_249 -4380_77955,288,4380_11775,Dublin,57640-00011-1,1,4380_7778208_1150102,4380_249 -4380_77955,287,4380_11776,Dublin,57638-00012-1,1,4380_7778208_1150102,4380_249 -4380_77955,289,4380_11777,Dublin,57642-00014-1,1,4380_7778208_1150102,4380_249 -4380_77955,290,4380_11778,Dublin,57646-00015-1,1,4380_7778208_1150102,4380_249 -4380_77955,291,4380_11779,Dublin,9134-00013-1,1,4380_7778208_1150102,4380_249 -4380_77955,292,4380_11780,Dublin,57648-00016-1,1,4380_7778208_1150102,4380_249 -4380_77955,293,4380_11781,Dublin,57641-00017-1,1,4380_7778208_1150102,4380_249 -4380_77955,294,4380_11782,Dublin,57639-00018-1,1,4380_7778208_1150102,4380_249 -4380_77955,295,4380_11783,Dublin,57643-00019-1,1,4380_7778208_1150102,4380_249 -4380_77955,296,4380_11784,Dublin,57644-00021-1,1,4380_7778208_1150102,4380_249 -4380_77955,285,4380_11792,Dublin,57973-00009-1,1,4380_7778208_1150108,4380_251 -4380_77955,286,4380_11793,Dublin,57977-00010-1,1,4380_7778208_1150108,4380_251 -4380_77955,297,4380_11794,Dublin,57882-00008-1,1,4380_7778208_1150106,4380_257 -4380_77955,288,4380_11795,Dublin,57981-00011-1,1,4380_7778208_1150108,4380_251 -4380_77955,287,4380_11796,Dublin,57975-00012-1,1,4380_7778208_1150108,4380_251 -4380_77955,289,4380_11797,Dublin,57979-00014-1,1,4380_7778208_1150108,4380_251 -4380_77955,290,4380_11798,Dublin,57974-00015-1,1,4380_7778208_1150108,4380_251 -4380_77955,291,4380_11799,Dublin,57922-00013-1,1,4380_7778208_1150107,4380_260 -4380_77946,290,4380_118,Dundalk,50318-00015-1,0,4380_7778208_1000913,4380_1 -4380_77955,292,4380_11800,Dublin,57978-00016-1,1,4380_7778208_1150108,4380_251 -4380_77955,293,4380_11801,Dublin,57982-00017-1,1,4380_7778208_1150108,4380_251 -4380_77955,294,4380_11802,Dublin,57976-00018-1,1,4380_7778208_1150108,4380_251 -4380_77955,295,4380_11803,Dublin,57980-00019-1,1,4380_7778208_1150108,4380_251 -4380_77955,296,4380_11804,Dublin,57923-00021-1,1,4380_7778208_1150107,4380_260 -4380_77955,285,4380_11812,Dublin,9017-00009-1,1,4380_7778208_1150101,4380_249 -4380_77955,286,4380_11813,Dublin,9033-00010-1,1,4380_7778208_1150101,4380_249 -4380_77955,297,4380_11814,Dublin,57649-00008-1,1,4380_7778208_1150102,4380_256 -4380_77955,288,4380_11815,Dublin,9049-00011-1,1,4380_7778208_1150101,4380_249 -4380_77955,287,4380_11816,Dublin,9065-00012-1,1,4380_7778208_1150101,4380_249 -4380_77955,289,4380_11817,Dublin,9001-00014-1,1,4380_7778208_1150101,4380_249 -4380_77955,290,4380_11818,Dublin,57589-00015-1,1,4380_7778208_1150101,4380_249 -4380_77955,291,4380_11819,Dublin,57590-00013-1,1,4380_7778208_1150101,4380_259 -4380_77955,292,4380_11820,Dublin,57587-00016-1,1,4380_7778208_1150101,4380_249 -4380_77955,293,4380_11821,Dublin,57585-00017-1,1,4380_7778208_1150101,4380_249 -4380_77955,294,4380_11822,Dublin,57588-00018-1,1,4380_7778208_1150101,4380_249 -4380_77955,295,4380_11823,Dublin,57586-00019-1,1,4380_7778208_1150101,4380_249 -4380_77955,296,4380_11824,Dublin,57591-00021-1,1,4380_7778208_1150101,4380_259 -4380_78113,285,4380_1183,Dublin via Airport,49997-00009-1,1,4380_7778208_1000906,4380_18 -4380_77955,285,4380_11831,Dublin,9376-00009-1,1,4380_7778208_1150106,4380_251 -4380_77955,286,4380_11832,Dublin,9394-00010-1,1,4380_7778208_1150106,4380_251 -4380_77955,288,4380_11833,Dublin,9400-00011-1,1,4380_7778208_1150106,4380_251 -4380_77955,287,4380_11834,Dublin,9418-00012-1,1,4380_7778208_1150106,4380_251 -4380_77955,289,4380_11835,Dublin,9370-00014-1,1,4380_7778208_1150106,4380_251 -4380_77955,290,4380_11836,Dublin,57887-00015-1,1,4380_7778208_1150106,4380_251 -4380_77955,291,4380_11837,Dublin,57983-00013-1,1,4380_7778208_1150108,4380_257 -4380_77955,292,4380_11838,Dublin,57886-00016-1,1,4380_7778208_1150106,4380_251 -4380_77955,293,4380_11839,Dublin,57885-00017-1,1,4380_7778208_1150106,4380_251 -4380_78113,286,4380_1184,Dublin via Airport,49999-00010-1,1,4380_7778208_1000906,4380_18 -4380_77955,294,4380_11840,Dublin,57883-00018-1,1,4380_7778208_1150106,4380_251 -4380_77955,295,4380_11841,Dublin,57884-00019-1,1,4380_7778208_1150106,4380_251 -4380_77955,296,4380_11842,Dublin,57984-00021-1,1,4380_7778208_1150108,4380_257 -4380_77955,285,4380_11849,Dublin,9282-00009-1,1,4380_7778208_1150105,4380_249 -4380_78113,297,4380_1185,Dublin via Airport,49899-00008-1,1,4380_7778208_1000905,4380_18 -4380_77955,286,4380_11850,Dublin,9291-00010-1,1,4380_7778208_1150105,4380_249 -4380_77955,288,4380_11851,Dublin,9318-00011-1,1,4380_7778208_1150105,4380_249 -4380_77955,287,4380_11852,Dublin,9336-00012-1,1,4380_7778208_1150105,4380_249 -4380_77955,289,4380_11853,Dublin,9255-00014-1,1,4380_7778208_1150105,4380_249 -4380_77955,290,4380_11854,Dublin,57827-00015-1,1,4380_7778208_1150105,4380_249 -4380_77955,291,4380_11855,Dublin,9564-00013-1,1,4380_7778208_1150109,4380_256 -4380_77955,292,4380_11856,Dublin,57825-00016-1,1,4380_7778208_1150105,4380_249 -4380_77955,293,4380_11857,Dublin,57828-00017-1,1,4380_7778208_1150105,4380_249 -4380_77955,294,4380_11858,Dublin,57826-00018-1,1,4380_7778208_1150105,4380_249 -4380_77955,295,4380_11859,Dublin,57829-00019-1,1,4380_7778208_1150105,4380_249 -4380_78113,287,4380_1186,Dublin via Airport,49993-00012-1,1,4380_7778208_1000906,4380_18 -4380_77955,296,4380_11860,Dublin,58033-00021-1,1,4380_7778208_1150109,4380_256 -4380_77955,285,4380_11866,Maynooth University,9892-00009-1,1,4380_7778208_1150116,4380_255 -4380_77955,286,4380_11867,Maynooth University,9904-00010-1,1,4380_7778208_1150116,4380_255 -4380_77955,288,4380_11868,Maynooth University,9908-00011-1,1,4380_7778208_1150116,4380_255 -4380_77955,287,4380_11869,Maynooth University,9920-00012-1,1,4380_7778208_1150116,4380_255 -4380_78113,288,4380_1187,Dublin via Airport,50001-00011-1,1,4380_7778208_1000906,4380_18 -4380_77955,289,4380_11870,Maynooth University,9884-00014-1,1,4380_7778208_1150116,4380_255 -4380_77955,292,4380_11871,Maynooth University,58222-00016-1,1,4380_7778208_1150116,4380_255 -4380_77955,293,4380_11872,Maynooth University,58223-00017-1,1,4380_7778208_1150116,4380_255 -4380_77955,290,4380_11873,Maynooth University,58220-00015-1,1,4380_7778208_1150116,4380_255 -4380_77955,294,4380_11874,Maynooth University,58221-00018-1,1,4380_7778208_1150116,4380_255 -4380_77955,295,4380_11875,Maynooth University,58219-00019-1,1,4380_7778208_1150116,4380_255 -4380_78113,289,4380_1188,Dublin via Airport,49995-00014-1,1,4380_7778208_1000906,4380_18 -4380_77955,285,4380_11883,Dublin,9582-00009-1,1,4380_7778208_1150110,4380_251 -4380_77955,286,4380_11884,Dublin,9592-00010-1,1,4380_7778208_1150110,4380_251 -4380_77955,297,4380_11885,Dublin,57784-00008-1,1,4380_7778208_1150104,4380_257 -4380_77955,288,4380_11886,Dublin,9602-00011-1,1,4380_7778208_1150110,4380_251 -4380_77955,287,4380_11887,Dublin,9612-00012-1,1,4380_7778208_1150110,4380_251 -4380_77955,289,4380_11888,Dublin,9577-00014-1,1,4380_7778208_1150110,4380_251 -4380_77955,290,4380_11889,Dublin,58063-00015-1,1,4380_7778208_1150110,4380_251 -4380_78113,290,4380_1189,Dublin via Airport,49998-00015-1,1,4380_7778208_1000906,4380_18 -4380_77955,291,4380_11890,Dublin,9350-00013-1,1,4380_7778208_1150105,4380_260 -4380_77955,292,4380_11891,Dublin,58062-00016-1,1,4380_7778208_1150110,4380_251 -4380_77955,293,4380_11892,Dublin,58065-00017-1,1,4380_7778208_1150110,4380_251 -4380_77955,294,4380_11893,Dublin,58064-00018-1,1,4380_7778208_1150110,4380_251 -4380_77955,295,4380_11894,Dublin,58066-00019-1,1,4380_7778208_1150110,4380_251 -4380_77955,296,4380_11895,Dublin,57830-00021-1,1,4380_7778208_1150105,4380_260 -4380_77946,291,4380_119,Dundalk,50238-00013-1,0,4380_7778208_1000910,4380_5 -4380_78113,291,4380_1190,Dublin via Airport,49991-00013-1,1,4380_7778208_1000906,4380_18 -4380_77955,285,4380_11903,Dublin,9170-00009-1,1,4380_7778208_1150103,4380_249 -4380_77955,286,4380_11904,Dublin,9185-00010-1,1,4380_7778208_1150103,4380_249 -4380_77955,297,4380_11905,Dublin,57593-00008-1,1,4380_7778208_1150101,4380_256 -4380_77955,288,4380_11906,Dublin,9195-00011-1,1,4380_7778208_1150103,4380_249 -4380_77955,287,4380_11907,Dublin,9205-00012-1,1,4380_7778208_1150103,4380_249 -4380_77955,289,4380_11908,Dublin,9160-00014-1,1,4380_7778208_1150103,4380_249 -4380_77955,290,4380_11909,Dublin,57746-00015-1,1,4380_7778208_1150103,4380_249 -4380_78113,292,4380_1191,Dublin via Airport,50000-00016-1,1,4380_7778208_1000906,4380_18 -4380_77955,291,4380_11910,Dublin,9214-00013-1,1,4380_7778208_1150103,4380_259 -4380_77955,292,4380_11911,Dublin,57745-00016-1,1,4380_7778208_1150103,4380_249 -4380_77955,293,4380_11912,Dublin,57742-00017-1,1,4380_7778208_1150103,4380_249 -4380_77955,294,4380_11913,Dublin,57741-00018-1,1,4380_7778208_1150103,4380_249 -4380_77955,295,4380_11914,Dublin,57744-00019-1,1,4380_7778208_1150103,4380_249 -4380_77955,296,4380_11915,Dublin,57743-00021-1,1,4380_7778208_1150103,4380_259 -4380_78113,293,4380_1192,Dublin via Airport,50002-00017-1,1,4380_7778208_1000906,4380_18 -4380_77955,285,4380_11922,Dublin,9783-00009-1,1,4380_7778208_1150114,4380_251 -4380_77955,286,4380_11923,Dublin,9795-00010-1,1,4380_7778208_1150114,4380_251 -4380_77955,288,4380_11924,Dublin,9803-00011-1,1,4380_7778208_1150114,4380_251 -4380_77955,287,4380_11925,Dublin,9807-00012-1,1,4380_7778208_1150114,4380_251 -4380_77955,289,4380_11926,Dublin,9775-00014-1,1,4380_7778208_1150114,4380_251 -4380_77955,290,4380_11927,Dublin,58173-00015-1,1,4380_7778208_1150114,4380_251 -4380_77955,291,4380_11928,Dublin,9661-00013-1,1,4380_7778208_1150111,4380_257 -4380_77955,292,4380_11929,Dublin,58169-00016-1,1,4380_7778208_1150114,4380_251 -4380_78113,294,4380_1193,Dublin via Airport,49994-00018-1,1,4380_7778208_1000906,4380_18 -4380_77955,293,4380_11930,Dublin,58171-00017-1,1,4380_7778208_1150114,4380_251 -4380_77955,294,4380_11931,Dublin,58172-00018-1,1,4380_7778208_1150114,4380_251 -4380_77955,295,4380_11932,Dublin,58170-00019-1,1,4380_7778208_1150114,4380_251 -4380_77955,296,4380_11933,Dublin,58094-00021-1,1,4380_7778208_1150111,4380_257 -4380_78113,295,4380_1194,Dublin via Airport,49996-00019-1,1,4380_7778208_1000906,4380_18 -4380_77955,285,4380_11940,Dublin,57664-00009-1,1,4380_7778208_1150102,4380_249 -4380_77955,286,4380_11941,Dublin,57662-00010-1,1,4380_7778208_1150102,4380_249 -4380_77955,288,4380_11942,Dublin,57669-00011-1,1,4380_7778208_1150102,4380_249 -4380_77955,287,4380_11943,Dublin,57667-00012-1,1,4380_7778208_1150102,4380_249 -4380_77955,289,4380_11944,Dublin,57671-00014-1,1,4380_7778208_1150102,4380_249 -4380_77955,290,4380_11945,Dublin,57665-00015-1,1,4380_7778208_1150102,4380_249 -4380_77955,291,4380_11946,Dublin,9136-00013-1,1,4380_7778208_1150102,4380_256 -4380_77955,292,4380_11947,Dublin,57663-00016-1,1,4380_7778208_1150102,4380_249 -4380_77955,293,4380_11948,Dublin,57670-00017-1,1,4380_7778208_1150102,4380_249 -4380_77955,294,4380_11949,Dublin,57668-00018-1,1,4380_7778208_1150102,4380_249 -4380_78113,296,4380_1195,Dublin via Airport,49992-00021-1,1,4380_7778208_1000906,4380_18 -4380_77955,295,4380_11950,Dublin,57672-00019-1,1,4380_7778208_1150102,4380_249 -4380_77955,296,4380_11951,Dublin,57666-00021-1,1,4380_7778208_1150102,4380_256 -4380_77955,285,4380_11959,Dublin,9829-00009-1,1,4380_7778208_1150115,4380_251 -4380_77955,286,4380_11960,Dublin,9850-00010-1,1,4380_7778208_1150115,4380_251 -4380_77955,297,4380_11961,Dublin,57932-00008-1,1,4380_7778208_1150107,4380_257 -4380_77955,288,4380_11962,Dublin,9857-00011-1,1,4380_7778208_1150115,4380_251 -4380_77955,287,4380_11963,Dublin,9871-00012-1,1,4380_7778208_1150115,4380_251 -4380_77955,289,4380_11964,Dublin,9822-00014-1,1,4380_7778208_1150115,4380_251 -4380_77955,290,4380_11965,Dublin,58192-00015-1,1,4380_7778208_1150115,4380_251 -4380_77955,291,4380_11966,Dublin,9694-00013-1,1,4380_7778208_1150112,4380_260 -4380_77955,292,4380_11967,Dublin,58189-00016-1,1,4380_7778208_1150115,4380_251 -4380_77955,293,4380_11968,Dublin,58193-00017-1,1,4380_7778208_1150115,4380_251 -4380_77955,294,4380_11969,Dublin,58191-00018-1,1,4380_7778208_1150115,4380_251 -4380_77955,295,4380_11970,Dublin,58190-00019-1,1,4380_7778208_1150115,4380_251 -4380_77955,296,4380_11971,Dublin,58113-00021-1,1,4380_7778208_1150112,4380_260 -4380_77955,285,4380_11979,Dublin,9019-00009-1,1,4380_7778208_1150101,4380_249 -4380_77955,286,4380_11980,Dublin,9035-00010-1,1,4380_7778208_1150101,4380_249 -4380_77955,297,4380_11981,Dublin,57673-00008-1,1,4380_7778208_1150102,4380_256 -4380_77955,288,4380_11982,Dublin,9051-00011-1,1,4380_7778208_1150101,4380_249 -4380_77955,287,4380_11983,Dublin,9067-00012-1,1,4380_7778208_1150101,4380_249 -4380_77955,289,4380_11984,Dublin,9003-00014-1,1,4380_7778208_1150101,4380_249 -4380_77955,290,4380_11985,Dublin,57604-00015-1,1,4380_7778208_1150101,4380_249 -4380_77955,291,4380_11986,Dublin,57602-00013-1,1,4380_7778208_1150101,4380_259 -4380_77955,292,4380_11987,Dublin,57601-00016-1,1,4380_7778208_1150101,4380_249 -4380_77955,293,4380_11988,Dublin,57607-00017-1,1,4380_7778208_1150101,4380_249 -4380_77955,294,4380_11989,Dublin,57606-00018-1,1,4380_7778208_1150101,4380_249 -4380_77955,295,4380_11990,Dublin,57605-00019-1,1,4380_7778208_1150101,4380_249 -4380_77955,296,4380_11991,Dublin,57603-00021-1,1,4380_7778208_1150101,4380_259 -4380_77955,285,4380_11998,Dublin,9453-00009-1,1,4380_7778208_1150107,4380_251 -4380_77955,286,4380_11999,Dublin,9467-00010-1,1,4380_7778208_1150107,4380_251 -4380_77946,290,4380_12,Dundalk,50452-00015-1,0,4380_7778208_1000915,4380_1 -4380_77946,292,4380_120,Dundalk,50324-00016-1,0,4380_7778208_1000913,4380_1 -4380_77955,288,4380_12000,Dublin,9481-00011-1,1,4380_7778208_1150107,4380_251 -4380_77955,287,4380_12001,Dublin,9495-00012-1,1,4380_7778208_1150107,4380_251 -4380_77955,289,4380_12002,Dublin,9439-00014-1,1,4380_7778208_1150107,4380_251 -4380_77955,290,4380_12003,Dublin,57935-00015-1,1,4380_7778208_1150107,4380_251 -4380_77955,291,4380_12004,Dublin,57896-00013-1,1,4380_7778208_1150106,4380_257 -4380_77955,292,4380_12005,Dublin,57933-00016-1,1,4380_7778208_1150107,4380_251 -4380_77955,293,4380_12006,Dublin,57934-00017-1,1,4380_7778208_1150107,4380_251 -4380_77955,294,4380_12007,Dublin,57936-00018-1,1,4380_7778208_1150107,4380_251 -4380_77955,295,4380_12008,Dublin,57937-00019-1,1,4380_7778208_1150107,4380_251 -4380_77955,296,4380_12009,Dublin,57897-00021-1,1,4380_7778208_1150106,4380_257 -4380_77955,285,4380_12016,Dublin,9284-00009-1,1,4380_7778208_1150105,4380_249 -4380_77955,286,4380_12017,Dublin,9293-00010-1,1,4380_7778208_1150105,4380_249 -4380_77955,288,4380_12018,Dublin,9320-00011-1,1,4380_7778208_1150105,4380_249 -4380_77955,287,4380_12019,Dublin,9338-00012-1,1,4380_7778208_1150105,4380_249 -4380_77955,289,4380_12020,Dublin,9257-00014-1,1,4380_7778208_1150105,4380_249 -4380_77955,290,4380_12021,Dublin,57836-00015-1,1,4380_7778208_1150105,4380_249 -4380_77955,291,4380_12022,Dublin,57797-00013-1,1,4380_7778208_1150104,4380_256 -4380_77955,292,4380_12023,Dublin,57839-00016-1,1,4380_7778208_1150105,4380_249 -4380_77955,293,4380_12024,Dublin,57837-00017-1,1,4380_7778208_1150105,4380_249 -4380_77955,294,4380_12025,Dublin,57840-00018-1,1,4380_7778208_1150105,4380_249 -4380_77955,295,4380_12026,Dublin,57838-00019-1,1,4380_7778208_1150105,4380_249 -4380_77955,296,4380_12027,Dublin,57798-00021-1,1,4380_7778208_1150104,4380_256 -4380_77955,297,4380_12029,Dublin,57842-00008-1,1,4380_7778208_1150105,4380_251 -4380_78113,285,4380_1203,Dublin via Airport,50095-00009-1,1,4380_7778208_1000907,4380_19 -4380_77955,285,4380_12036,Dublin,58005-00009-1,1,4380_7778208_1150108,4380_251 -4380_77955,286,4380_12037,Dublin,58001-00010-1,1,4380_7778208_1150108,4380_251 -4380_77955,288,4380_12038,Dublin,57997-00011-1,1,4380_7778208_1150108,4380_251 -4380_77955,287,4380_12039,Dublin,58003-00012-1,1,4380_7778208_1150108,4380_251 -4380_78113,286,4380_1204,Dublin via Airport,50097-00010-1,1,4380_7778208_1000907,4380_19 -4380_77955,289,4380_12040,Dublin,57999-00014-1,1,4380_7778208_1150108,4380_251 -4380_77955,290,4380_12041,Dublin,58006-00015-1,1,4380_7778208_1150108,4380_251 -4380_77955,291,4380_12042,Dublin,57938-00013-1,1,4380_7778208_1150107,4380_257 -4380_77955,292,4380_12043,Dublin,58002-00016-1,1,4380_7778208_1150108,4380_251 -4380_77955,293,4380_12044,Dublin,57998-00017-1,1,4380_7778208_1150108,4380_251 -4380_77955,294,4380_12045,Dublin,58004-00018-1,1,4380_7778208_1150108,4380_251 -4380_77955,295,4380_12046,Dublin,58000-00019-1,1,4380_7778208_1150108,4380_251 -4380_77955,296,4380_12047,Dublin,57939-00021-1,1,4380_7778208_1150107,4380_257 -4380_78113,297,4380_1205,Dublin via Airport,50003-00008-1,1,4380_7778208_1000906,4380_19 -4380_77955,285,4380_12055,Dublin,57808-00009-1,1,4380_7778208_1150104,4380_249 -4380_77955,286,4380_12056,Dublin,57802-00010-1,1,4380_7778208_1150104,4380_249 -4380_77955,297,4380_12057,Dublin,57609-00008-1,1,4380_7778208_1150101,4380_256 -4380_77955,288,4380_12058,Dublin,57800-00011-1,1,4380_7778208_1150104,4380_249 -4380_77955,287,4380_12059,Dublin,57804-00012-1,1,4380_7778208_1150104,4380_249 -4380_78113,287,4380_1206,Dublin via Airport,50101-00012-1,1,4380_7778208_1000907,4380_19 -4380_77955,289,4380_12060,Dublin,57806-00014-1,1,4380_7778208_1150104,4380_249 -4380_77955,290,4380_12061,Dublin,57809-00015-1,1,4380_7778208_1150104,4380_249 -4380_77955,291,4380_12062,Dublin,9566-00013-1,1,4380_7778208_1150109,4380_259 -4380_77955,292,4380_12063,Dublin,57803-00016-1,1,4380_7778208_1150104,4380_249 -4380_77955,293,4380_12064,Dublin,57801-00017-1,1,4380_7778208_1150104,4380_249 -4380_77955,294,4380_12065,Dublin,57805-00018-1,1,4380_7778208_1150104,4380_249 -4380_77955,295,4380_12066,Dublin,57807-00019-1,1,4380_7778208_1150104,4380_249 -4380_77955,296,4380_12067,Dublin,58035-00021-1,1,4380_7778208_1150109,4380_259 -4380_78113,288,4380_1207,Dublin via Airport,50103-00011-1,1,4380_7778208_1000907,4380_19 -4380_77955,285,4380_12074,Dublin,9378-00009-1,1,4380_7778208_1150106,4380_251 -4380_77955,286,4380_12075,Dublin,9396-00010-1,1,4380_7778208_1150106,4380_251 -4380_77955,288,4380_12076,Dublin,9402-00011-1,1,4380_7778208_1150106,4380_251 -4380_77955,287,4380_12077,Dublin,9420-00012-1,1,4380_7778208_1150106,4380_251 -4380_77955,289,4380_12078,Dublin,9372-00014-1,1,4380_7778208_1150106,4380_251 -4380_77955,290,4380_12079,Dublin,57901-00015-1,1,4380_7778208_1150106,4380_251 -4380_78113,289,4380_1208,Dublin via Airport,50099-00014-1,1,4380_7778208_1000907,4380_19 -4380_77955,291,4380_12080,Dublin,58007-00013-1,1,4380_7778208_1150108,4380_257 -4380_77955,292,4380_12081,Dublin,57902-00016-1,1,4380_7778208_1150106,4380_251 -4380_77955,293,4380_12082,Dublin,57900-00017-1,1,4380_7778208_1150106,4380_251 -4380_77955,294,4380_12083,Dublin,57899-00018-1,1,4380_7778208_1150106,4380_251 -4380_77955,295,4380_12084,Dublin,57898-00019-1,1,4380_7778208_1150106,4380_251 -4380_77955,296,4380_12085,Dublin,58008-00021-1,1,4380_7778208_1150108,4380_257 -4380_78113,290,4380_1209,Dublin via Airport,50096-00015-1,1,4380_7778208_1000907,4380_19 -4380_77955,285,4380_12092,Dublin,57686-00009-1,1,4380_7778208_1150102,4380_249 -4380_77955,286,4380_12093,Dublin,57695-00010-1,1,4380_7778208_1150102,4380_249 -4380_77955,288,4380_12094,Dublin,57690-00011-1,1,4380_7778208_1150102,4380_249 -4380_77955,287,4380_12095,Dublin,57688-00012-1,1,4380_7778208_1150102,4380_249 -4380_77955,289,4380_12096,Dublin,57693-00014-1,1,4380_7778208_1150102,4380_249 -4380_77955,290,4380_12097,Dublin,57687-00015-1,1,4380_7778208_1150102,4380_249 -4380_77955,291,4380_12098,Dublin,9138-00013-1,1,4380_7778208_1150102,4380_256 -4380_77955,292,4380_12099,Dublin,57696-00016-1,1,4380_7778208_1150102,4380_249 -4380_77946,293,4380_121,Dundalk,50322-00017-1,0,4380_7778208_1000913,4380_1 -4380_78113,291,4380_1210,Dublin via Airport,50105-00013-1,1,4380_7778208_1000907,4380_19 -4380_77955,293,4380_12100,Dublin,57691-00017-1,1,4380_7778208_1150102,4380_249 -4380_77955,294,4380_12101,Dublin,57689-00018-1,1,4380_7778208_1150102,4380_249 -4380_77955,295,4380_12102,Dublin,57694-00019-1,1,4380_7778208_1150102,4380_249 -4380_77955,296,4380_12103,Dublin,57692-00021-1,1,4380_7778208_1150102,4380_256 -4380_78113,292,4380_1211,Dublin via Airport,50098-00016-1,1,4380_7778208_1000907,4380_19 -4380_77955,285,4380_12111,Dublin,9584-00009-1,1,4380_7778208_1150110,4380_251 -4380_77955,286,4380_12112,Dublin,9594-00010-1,1,4380_7778208_1150110,4380_251 -4380_77955,297,4380_12113,Dublin,57903-00008-1,1,4380_7778208_1150106,4380_257 -4380_77955,288,4380_12114,Dublin,9604-00011-1,1,4380_7778208_1150110,4380_251 -4380_77955,287,4380_12115,Dublin,9614-00012-1,1,4380_7778208_1150110,4380_251 -4380_77955,289,4380_12116,Dublin,9579-00014-1,1,4380_7778208_1150110,4380_251 -4380_77955,290,4380_12117,Dublin,58084-00015-1,1,4380_7778208_1150110,4380_251 -4380_77955,291,4380_12118,Dublin,9216-00013-1,1,4380_7778208_1150103,4380_260 -4380_77955,292,4380_12119,Dublin,58083-00016-1,1,4380_7778208_1150110,4380_251 -4380_78113,293,4380_1212,Dublin via Airport,50104-00017-1,1,4380_7778208_1000907,4380_19 -4380_77955,293,4380_12120,Dublin,58082-00017-1,1,4380_7778208_1150110,4380_251 -4380_77955,294,4380_12121,Dublin,58080-00018-1,1,4380_7778208_1150110,4380_251 -4380_77955,295,4380_12122,Dublin,58081-00019-1,1,4380_7778208_1150110,4380_251 -4380_77955,296,4380_12123,Dublin,57756-00021-1,1,4380_7778208_1150103,4380_260 -4380_77955,297,4380_12125,Dublin,57697-00008-1,1,4380_7778208_1150102,4380_249 -4380_78113,294,4380_1213,Dublin via Airport,50102-00018-1,1,4380_7778208_1000907,4380_19 -4380_77955,285,4380_12132,Dublin,9021-00009-1,1,4380_7778208_1150101,4380_249 -4380_77955,286,4380_12133,Dublin,9037-00010-1,1,4380_7778208_1150101,4380_249 -4380_77955,288,4380_12134,Dublin,9053-00011-1,1,4380_7778208_1150101,4380_249 -4380_77955,287,4380_12135,Dublin,9069-00012-1,1,4380_7778208_1150101,4380_249 -4380_77955,289,4380_12136,Dublin,9005-00014-1,1,4380_7778208_1150101,4380_249 -4380_77955,290,4380_12137,Dublin,57622-00015-1,1,4380_7778208_1150101,4380_249 -4380_77955,291,4380_12138,Dublin,57619-00013-1,1,4380_7778208_1150101,4380_256 -4380_77955,292,4380_12139,Dublin,57623-00016-1,1,4380_7778208_1150101,4380_249 -4380_78113,295,4380_1214,Dublin via Airport,50100-00019-1,1,4380_7778208_1000907,4380_19 -4380_77955,293,4380_12140,Dublin,57621-00017-1,1,4380_7778208_1150101,4380_249 -4380_77955,294,4380_12141,Dublin,57617-00018-1,1,4380_7778208_1150101,4380_249 -4380_77955,295,4380_12142,Dublin,57618-00019-1,1,4380_7778208_1150101,4380_249 -4380_77955,296,4380_12143,Dublin,57620-00021-1,1,4380_7778208_1150101,4380_256 -4380_78113,296,4380_1215,Dublin via Airport,50106-00021-1,1,4380_7778208_1000907,4380_19 -4380_77955,285,4380_12150,Dublin,9640-00009-1,1,4380_7778208_1150111,4380_251 -4380_77955,286,4380_12151,Dublin,9643-00010-1,1,4380_7778208_1150111,4380_251 -4380_77955,288,4380_12152,Dublin,9652-00011-1,1,4380_7778208_1150111,4380_251 -4380_77955,287,4380_12153,Dublin,9658-00012-1,1,4380_7778208_1150111,4380_251 -4380_77955,289,4380_12154,Dublin,9631-00014-1,1,4380_7778208_1150111,4380_251 -4380_77955,290,4380_12155,Dublin,58102-00015-1,1,4380_7778208_1150111,4380_251 -4380_77955,291,4380_12156,Dublin,9352-00013-1,1,4380_7778208_1150105,4380_257 -4380_77955,292,4380_12157,Dublin,58103-00016-1,1,4380_7778208_1150111,4380_251 -4380_77955,293,4380_12158,Dublin,58101-00017-1,1,4380_7778208_1150111,4380_251 -4380_77955,294,4380_12159,Dublin,58105-00018-1,1,4380_7778208_1150111,4380_251 -4380_77955,295,4380_12160,Dublin,58104-00019-1,1,4380_7778208_1150111,4380_251 -4380_77955,296,4380_12161,Dublin,57848-00021-1,1,4380_7778208_1150105,4380_257 -4380_77955,285,4380_12168,Dublin,9286-00009-1,1,4380_7778208_1150105,4380_249 -4380_77955,286,4380_12169,Dublin,9295-00010-1,1,4380_7778208_1150105,4380_249 -4380_77955,288,4380_12170,Dublin,9322-00011-1,1,4380_7778208_1150105,4380_249 -4380_77955,287,4380_12171,Dublin,9340-00012-1,1,4380_7778208_1150105,4380_249 -4380_77955,289,4380_12172,Dublin,9259-00014-1,1,4380_7778208_1150105,4380_249 -4380_77955,290,4380_12173,Dublin,57850-00015-1,1,4380_7778208_1150105,4380_249 -4380_77955,291,4380_12174,Dublin,9696-00013-1,1,4380_7778208_1150112,4380_256 -4380_77955,292,4380_12175,Dublin,57849-00016-1,1,4380_7778208_1150105,4380_249 -4380_77955,293,4380_12176,Dublin,57853-00017-1,1,4380_7778208_1150105,4380_249 -4380_77955,294,4380_12177,Dublin,57851-00018-1,1,4380_7778208_1150105,4380_249 -4380_77955,295,4380_12178,Dublin,57852-00019-1,1,4380_7778208_1150105,4380_249 -4380_77955,296,4380_12179,Dublin,58120-00021-1,1,4380_7778208_1150112,4380_256 -4380_77955,297,4380_12181,Dublin,57810-00008-1,1,4380_7778208_1150104,4380_251 -4380_77955,297,4380_12183,Dublin,57625-00008-1,1,4380_7778208_1150101,4380_249 -4380_77955,285,4380_12191,Dublin,9455-00009-1,1,4380_7778208_1150107,4380_251 -4380_77955,286,4380_12192,Dublin,9469-00010-1,1,4380_7778208_1150107,4380_251 -4380_77955,297,4380_12193,Dublin,57953-00008-1,1,4380_7778208_1150107,4380_258 -4380_77955,288,4380_12194,Dublin,9483-00011-1,1,4380_7778208_1150107,4380_251 -4380_77955,287,4380_12195,Dublin,9497-00012-1,1,4380_7778208_1150107,4380_251 -4380_77955,289,4380_12196,Dublin,9441-00014-1,1,4380_7778208_1150107,4380_251 -4380_77955,290,4380_12197,Dublin,57950-00015-1,1,4380_7778208_1150107,4380_251 -4380_77955,291,4380_12198,Dublin,9771-00013-1,1,4380_7778208_1150113,4380_257 -4380_77955,292,4380_12199,Dublin,57948-00016-1,1,4380_7778208_1150107,4380_251 -4380_77946,294,4380_122,Dundalk,50326-00018-1,0,4380_7778208_1000913,4380_1 -4380_77955,293,4380_12200,Dublin,57951-00017-1,1,4380_7778208_1150107,4380_251 -4380_77955,294,4380_12201,Dublin,57952-00018-1,1,4380_7778208_1150107,4380_251 -4380_77955,295,4380_12202,Dublin,57949-00019-1,1,4380_7778208_1150107,4380_251 -4380_77955,296,4380_12203,Dublin,58157-00021-1,1,4380_7778208_1150113,4380_257 -4380_77955,285,4380_12210,Dublin,57710-00009-1,1,4380_7778208_1150102,4380_249 -4380_77955,286,4380_12211,Dublin,57712-00010-1,1,4380_7778208_1150102,4380_249 -4380_77955,288,4380_12212,Dublin,57714-00011-1,1,4380_7778208_1150102,4380_249 -4380_77955,287,4380_12213,Dublin,57716-00012-1,1,4380_7778208_1150102,4380_249 -4380_77955,289,4380_12214,Dublin,57719-00014-1,1,4380_7778208_1150102,4380_249 -4380_77955,290,4380_12215,Dublin,57711-00015-1,1,4380_7778208_1150102,4380_249 -4380_77955,291,4380_12216,Dublin,9140-00013-1,1,4380_7778208_1150102,4380_256 -4380_77955,292,4380_12217,Dublin,57713-00016-1,1,4380_7778208_1150102,4380_249 -4380_77955,293,4380_12218,Dublin,57715-00017-1,1,4380_7778208_1150102,4380_249 -4380_77955,294,4380_12219,Dublin,57717-00018-1,1,4380_7778208_1150102,4380_249 -4380_77955,295,4380_12220,Dublin,57720-00019-1,1,4380_7778208_1150102,4380_249 -4380_77955,296,4380_12221,Dublin,57718-00021-1,1,4380_7778208_1150102,4380_256 -4380_77955,285,4380_12227,Dublin,58029-00009-1,1,4380_7778208_1150108,4380_252 -4380_77955,286,4380_12228,Dublin,58025-00010-1,1,4380_7778208_1150108,4380_252 -4380_77955,288,4380_12229,Dublin,58021-00011-1,1,4380_7778208_1150108,4380_252 -4380_78113,285,4380_1223,Dublin via Airport,50207-00009-1,1,4380_7778208_1000908,4380_19 -4380_77955,287,4380_12230,Dublin,58027-00012-1,1,4380_7778208_1150108,4380_252 -4380_77955,289,4380_12231,Dublin,58023-00014-1,1,4380_7778208_1150108,4380_252 -4380_77955,290,4380_12232,Dublin,58030-00015-1,1,4380_7778208_1150108,4380_252 -4380_77955,292,4380_12233,Dublin,58026-00016-1,1,4380_7778208_1150108,4380_252 -4380_77955,293,4380_12234,Dublin,58022-00017-1,1,4380_7778208_1150108,4380_252 -4380_77955,294,4380_12235,Dublin,58028-00018-1,1,4380_7778208_1150108,4380_252 -4380_77955,295,4380_12236,Dublin,58024-00019-1,1,4380_7778208_1150108,4380_252 -4380_77955,297,4380_12238,Dublin,57721-00008-1,1,4380_7778208_1150102,4380_249 -4380_78113,286,4380_1224,Dublin via Airport,50203-00010-1,1,4380_7778208_1000908,4380_19 -4380_77955,285,4380_12246,Dublin,9831-00009-1,1,4380_7778208_1150115,4380_252 -4380_77955,286,4380_12247,Dublin,9852-00010-1,1,4380_7778208_1150115,4380_252 -4380_77955,297,4380_12248,Dublin,57861-00008-1,1,4380_7778208_1150105,4380_258 -4380_77955,288,4380_12249,Dublin,9859-00011-1,1,4380_7778208_1150115,4380_252 -4380_78113,297,4380_1225,Dublin via Airport,50107-00008-1,1,4380_7778208_1000907,4380_19 -4380_77955,287,4380_12250,Dublin,9873-00012-1,1,4380_7778208_1150115,4380_252 -4380_77955,289,4380_12251,Dublin,9824-00014-1,1,4380_7778208_1150115,4380_252 -4380_77955,290,4380_12252,Dublin,58200-00015-1,1,4380_7778208_1150115,4380_252 -4380_77955,291,4380_12253,Dublin,9568-00013-1,1,4380_7778208_1150109,4380_261 -4380_77955,292,4380_12254,Dublin,58202-00016-1,1,4380_7778208_1150115,4380_252 -4380_77955,293,4380_12255,Dublin,58199-00017-1,1,4380_7778208_1150115,4380_252 -4380_77955,294,4380_12256,Dublin,58203-00018-1,1,4380_7778208_1150115,4380_252 -4380_77955,295,4380_12257,Dublin,58201-00019-1,1,4380_7778208_1150115,4380_252 -4380_77955,296,4380_12258,Dublin,58042-00021-1,1,4380_7778208_1150109,4380_261 -4380_78113,287,4380_1226,Dublin via Airport,50205-00012-1,1,4380_7778208_1000908,4380_19 -4380_77955,285,4380_12265,Dublin,9288-00009-1,1,4380_7778208_1150105,4380_249 -4380_77955,286,4380_12266,Dublin,9297-00010-1,1,4380_7778208_1150105,4380_249 -4380_77955,288,4380_12267,Dublin,9324-00011-1,1,4380_7778208_1150105,4380_249 -4380_77955,287,4380_12268,Dublin,9342-00012-1,1,4380_7778208_1150105,4380_249 -4380_77955,289,4380_12269,Dublin,9261-00014-1,1,4380_7778208_1150105,4380_249 -4380_78113,288,4380_1227,Dublin via Airport,50199-00011-1,1,4380_7778208_1000908,4380_19 -4380_77955,290,4380_12270,Dublin,57864-00015-1,1,4380_7778208_1150105,4380_249 -4380_77955,291,4380_12271,Dublin,9354-00013-1,1,4380_7778208_1150105,4380_256 -4380_77955,292,4380_12272,Dublin,57862-00016-1,1,4380_7778208_1150105,4380_249 -4380_77955,293,4380_12273,Dublin,57863-00017-1,1,4380_7778208_1150105,4380_249 -4380_77955,294,4380_12274,Dublin,57865-00018-1,1,4380_7778208_1150105,4380_249 -4380_77955,295,4380_12275,Dublin,57866-00019-1,1,4380_7778208_1150105,4380_249 -4380_77955,296,4380_12276,Dublin,57867-00021-1,1,4380_7778208_1150105,4380_256 -4380_78113,289,4380_1228,Dublin via Airport,50201-00014-1,1,4380_7778208_1000908,4380_19 -4380_77955,285,4380_12282,Dublin,9833-00009-1,1,4380_7778208_1150115,4380_249 -4380_77955,286,4380_12283,Dublin,9854-00010-1,1,4380_7778208_1150115,4380_249 -4380_77955,297,4380_12284,Dublin,57869-00008-1,1,4380_7778208_1150105,4380_249 -4380_77955,288,4380_12285,Dublin,9861-00011-1,1,4380_7778208_1150115,4380_249 -4380_77955,289,4380_12286,Dublin,9826-00014-1,1,4380_7778208_1150115,4380_249 -4380_77955,290,4380_12287,Dublin,58212-00015-1,1,4380_7778208_1150115,4380_249 -4380_77955,292,4380_12288,Dublin,58209-00016-1,1,4380_7778208_1150115,4380_249 -4380_77955,293,4380_12289,Dublin,58210-00017-1,1,4380_7778208_1150115,4380_249 -4380_78113,290,4380_1229,Dublin via Airport,50208-00015-1,1,4380_7778208_1000908,4380_19 -4380_77955,295,4380_12290,Dublin,58211-00019-1,1,4380_7778208_1150115,4380_249 -4380_77955,287,4380_12292,Dublin,9875-00012-1,1,4380_7778208_1150115,4380_256 -4380_77955,294,4380_12293,Dublin,58213-00018-1,1,4380_7778208_1150115,4380_256 -4380_77946,295,4380_123,Dundalk,50320-00019-1,0,4380_7778208_1000913,4380_1 -4380_78113,291,4380_1230,Dublin via Airport,50209-00013-1,1,4380_7778208_1000908,4380_19 -4380_78115,285,4380_12300,Mullingar via Summerhill,9712-00009-1,0,4380_7778208_1150113,4380_263 -4380_78115,286,4380_12301,Mullingar via Summerhill,9726-00010-1,0,4380_7778208_1150113,4380_263 -4380_78115,288,4380_12302,Mullingar via Summerhill,9747-00011-1,0,4380_7778208_1150113,4380_263 -4380_78115,287,4380_12303,Mullingar via Summerhill,9761-00012-1,0,4380_7778208_1150113,4380_263 -4380_78115,289,4380_12304,Mullingar via Summerhill,9698-00014-1,0,4380_7778208_1150113,4380_263 -4380_78115,290,4380_12305,Mullingar via Summerhill,58127-00015-1,0,4380_7778208_1150113,4380_263 -4380_78115,291,4380_12306,Mullingar via Summerhill,58058-00013-1,0,4380_7778208_1150110,4380_263 -4380_78115,292,4380_12307,Mullingar via Summerhill,58130-00016-1,0,4380_7778208_1150113,4380_263 -4380_78115,293,4380_12308,Mullingar via Summerhill,58126-00017-1,0,4380_7778208_1150113,4380_263 -4380_78115,294,4380_12309,Mullingar via Summerhill,58129-00018-1,0,4380_7778208_1150113,4380_263 -4380_78113,292,4380_1231,Dublin via Airport,50204-00016-1,1,4380_7778208_1000908,4380_19 -4380_78115,295,4380_12310,Mullingar via Summerhill,58128-00019-1,0,4380_7778208_1150113,4380_263 -4380_78115,296,4380_12311,Mullingar via Summerhill,58059-00021-1,0,4380_7778208_1150110,4380_263 -4380_78115,297,4380_12313,Mullingar via Summerhill,57740-00008-1,0,4380_7778208_1150103,4380_263 -4380_78113,293,4380_1232,Dublin via Airport,50200-00017-1,1,4380_7778208_1000908,4380_19 -4380_78115,285,4380_12320,Mullingar via Summerhill,9714-00009-1,0,4380_7778208_1150113,4380_263 -4380_78115,286,4380_12321,Mullingar via Summerhill,9728-00010-1,0,4380_7778208_1150113,4380_263 -4380_78115,288,4380_12322,Mullingar via Summerhill,9749-00011-1,0,4380_7778208_1150113,4380_263 -4380_78115,287,4380_12323,Mullingar via Summerhill,9763-00012-1,0,4380_7778208_1150113,4380_263 -4380_78115,289,4380_12324,Mullingar via Summerhill,9700-00014-1,0,4380_7778208_1150113,4380_263 -4380_78115,290,4380_12325,Mullingar via Summerhill,58140-00015-1,0,4380_7778208_1150113,4380_263 -4380_78115,291,4380_12326,Mullingar via Summerhill,58067-00013-1,0,4380_7778208_1150110,4380_263 -4380_78115,292,4380_12327,Mullingar via Summerhill,58139-00016-1,0,4380_7778208_1150113,4380_263 -4380_78115,293,4380_12328,Mullingar via Summerhill,58136-00017-1,0,4380_7778208_1150113,4380_263 -4380_78115,294,4380_12329,Mullingar via Summerhill,58138-00018-1,0,4380_7778208_1150113,4380_263 -4380_78113,294,4380_1233,Dublin via Airport,50206-00018-1,1,4380_7778208_1000908,4380_19 -4380_78115,295,4380_12330,Mullingar via Summerhill,58137-00019-1,0,4380_7778208_1150113,4380_263 -4380_78115,296,4380_12331,Mullingar via Summerhill,58068-00021-1,0,4380_7778208_1150110,4380_263 -4380_78115,297,4380_12333,Mullingar via Summerhill,57750-00008-1,0,4380_7778208_1150103,4380_263 -4380_78113,295,4380_1234,Dublin via Airport,50202-00019-1,1,4380_7778208_1000908,4380_19 -4380_78115,285,4380_12340,Killucan,9716-00009-1,0,4380_7778208_1150113,4380_264 -4380_78115,286,4380_12341,Killucan,9730-00010-1,0,4380_7778208_1150113,4380_264 -4380_78115,288,4380_12342,Killucan,9751-00011-1,0,4380_7778208_1150113,4380_264 -4380_78115,287,4380_12343,Killucan,9765-00012-1,0,4380_7778208_1150113,4380_264 -4380_78115,289,4380_12344,Killucan,9702-00014-1,0,4380_7778208_1150113,4380_264 -4380_78115,290,4380_12345,Killucan,58147-00015-1,0,4380_7778208_1150113,4380_264 -4380_78115,291,4380_12346,Killucan,58076-00013-1,0,4380_7778208_1150110,4380_264 -4380_78115,292,4380_12347,Killucan,58150-00016-1,0,4380_7778208_1150113,4380_264 -4380_78115,293,4380_12348,Killucan,58146-00017-1,0,4380_7778208_1150113,4380_264 -4380_78115,294,4380_12349,Killucan,58148-00018-1,0,4380_7778208_1150113,4380_264 -4380_78113,296,4380_1235,Dublin via Airport,50210-00021-1,1,4380_7778208_1000908,4380_19 -4380_78115,295,4380_12350,Killucan,58149-00019-1,0,4380_7778208_1150113,4380_264 -4380_78115,296,4380_12351,Killucan,58077-00021-1,0,4380_7778208_1150110,4380_264 -4380_78115,291,4380_12353,Mullingar via Summerhill,58085-00013-1,0,4380_7778208_1150110,4380_263 -4380_78115,296,4380_12354,Mullingar via Summerhill,58086-00021-1,0,4380_7778208_1150110,4380_263 -4380_78115,297,4380_12356,Mullingar via Summerhill,57757-00008-1,0,4380_7778208_1150103,4380_263 -4380_78115,285,4380_12362,Dublin via Ballivor,9711-00009-1,1,4380_7778208_1150113,4380_265 -4380_78115,286,4380_12363,Dublin via Ballivor,9725-00010-1,1,4380_7778208_1150113,4380_265 -4380_78115,288,4380_12364,Dublin via Ballivor,9746-00011-1,1,4380_7778208_1150113,4380_265 -4380_78115,287,4380_12365,Dublin via Ballivor,9760-00012-1,1,4380_7778208_1150113,4380_265 -4380_78115,289,4380_12366,Dublin via Ballivor,9697-00014-1,1,4380_7778208_1150113,4380_265 -4380_78115,290,4380_12367,Dublin via Ballivor,58125-00015-1,1,4380_7778208_1150113,4380_265 -4380_78115,292,4380_12368,Dublin via Ballivor,58122-00016-1,1,4380_7778208_1150113,4380_265 -4380_78115,293,4380_12369,Dublin via Ballivor,58124-00017-1,1,4380_7778208_1150113,4380_265 -4380_78115,294,4380_12370,Dublin via Ballivor,58123-00018-1,1,4380_7778208_1150113,4380_265 -4380_78115,295,4380_12371,Dublin via Ballivor,58121-00019-1,1,4380_7778208_1150113,4380_265 -4380_78115,291,4380_12373,Dublin via Ballivor,57959-00013-1,1,4380_7778208_1150108,4380_265 -4380_78115,296,4380_12374,Dublin via Ballivor,57960-00021-1,1,4380_7778208_1150108,4380_265 -4380_78115,297,4380_12376,Kilcock via Ballivor,57733-00008-1,1,4380_7778208_1150103,4380_266 -4380_78115,285,4380_12383,Kilcock via Ballivor,9713-00009-1,1,4380_7778208_1150113,4380_266 -4380_78115,286,4380_12384,Kilcock via Ballivor,9727-00010-1,1,4380_7778208_1150113,4380_266 -4380_78115,288,4380_12385,Kilcock via Ballivor,9748-00011-1,1,4380_7778208_1150113,4380_266 -4380_78115,287,4380_12386,Kilcock via Ballivor,9762-00012-1,1,4380_7778208_1150113,4380_266 -4380_78115,289,4380_12387,Kilcock via Ballivor,9699-00014-1,1,4380_7778208_1150113,4380_266 -4380_78115,290,4380_12388,Kilcock via Ballivor,58131-00015-1,1,4380_7778208_1150113,4380_266 -4380_78115,291,4380_12389,Kilcock via Ballivor,58060-00013-1,1,4380_7778208_1150110,4380_266 -4380_78115,292,4380_12390,Kilcock via Ballivor,58133-00016-1,1,4380_7778208_1150113,4380_266 -4380_78115,293,4380_12391,Kilcock via Ballivor,58134-00017-1,1,4380_7778208_1150113,4380_266 -4380_78115,294,4380_12392,Kilcock via Ballivor,58135-00018-1,1,4380_7778208_1150113,4380_266 -4380_78115,295,4380_12393,Kilcock via Ballivor,58132-00019-1,1,4380_7778208_1150113,4380_266 -4380_78115,296,4380_12394,Kilcock via Ballivor,58061-00021-1,1,4380_7778208_1150110,4380_266 -4380_78115,297,4380_12396,Kilcock via Ballivor,57747-00008-1,1,4380_7778208_1150103,4380_266 -4380_77946,296,4380_124,Dundalk,50239-00021-1,0,4380_7778208_1000910,4380_5 -4380_78115,285,4380_12403,Kilcock via Ballivor,9715-00009-1,1,4380_7778208_1150113,4380_266 -4380_78115,286,4380_12404,Kilcock via Ballivor,9729-00010-1,1,4380_7778208_1150113,4380_266 -4380_78115,288,4380_12405,Kilcock via Ballivor,9750-00011-1,1,4380_7778208_1150113,4380_266 -4380_78115,287,4380_12406,Kilcock via Ballivor,9764-00012-1,1,4380_7778208_1150113,4380_266 -4380_78115,289,4380_12407,Kilcock via Ballivor,9701-00014-1,1,4380_7778208_1150113,4380_266 -4380_78115,290,4380_12408,Kilcock via Ballivor,58142-00015-1,1,4380_7778208_1150113,4380_266 -4380_78115,291,4380_12409,Kilcock via Ballivor,58069-00013-1,1,4380_7778208_1150110,4380_266 -4380_78115,292,4380_12410,Kilcock via Ballivor,58143-00016-1,1,4380_7778208_1150113,4380_266 -4380_78115,293,4380_12411,Kilcock via Ballivor,58144-00017-1,1,4380_7778208_1150113,4380_266 -4380_78115,294,4380_12412,Kilcock via Ballivor,58145-00018-1,1,4380_7778208_1150113,4380_266 -4380_78115,295,4380_12413,Kilcock via Ballivor,58141-00019-1,1,4380_7778208_1150113,4380_266 -4380_78115,296,4380_12414,Kilcock via Ballivor,58070-00021-1,1,4380_7778208_1150110,4380_266 -4380_78115,285,4380_12422,Kilcock via Ballivor,9717-00009-1,1,4380_7778208_1150113,4380_267 -4380_78115,286,4380_12423,Kilcock via Ballivor,9731-00010-1,1,4380_7778208_1150113,4380_267 -4380_78115,297,4380_12424,Kilcock via Ballivor,57755-00008-1,1,4380_7778208_1150103,4380_266 -4380_78115,288,4380_12425,Kilcock via Ballivor,9752-00011-1,1,4380_7778208_1150113,4380_267 -4380_78115,287,4380_12426,Kilcock via Ballivor,9766-00012-1,1,4380_7778208_1150113,4380_267 -4380_78115,289,4380_12427,Kilcock via Ballivor,9703-00014-1,1,4380_7778208_1150113,4380_267 -4380_78115,290,4380_12428,Kilcock via Ballivor,58154-00015-1,1,4380_7778208_1150113,4380_267 -4380_78115,291,4380_12429,Kilcock via Ballivor,58078-00013-1,1,4380_7778208_1150110,4380_267 -4380_78113,285,4380_1243,Dublin via Airport,49815-00009-1,1,4380_7778208_1000904,4380_19 -4380_78115,292,4380_12430,Kilcock via Ballivor,58153-00016-1,1,4380_7778208_1150113,4380_267 -4380_78115,293,4380_12431,Kilcock via Ballivor,58156-00017-1,1,4380_7778208_1150113,4380_267 -4380_78115,294,4380_12432,Kilcock via Ballivor,58152-00018-1,1,4380_7778208_1150113,4380_267 -4380_78115,295,4380_12433,Kilcock via Ballivor,58155-00019-1,1,4380_7778208_1150113,4380_267 -4380_78115,296,4380_12434,Kilcock via Ballivor,58079-00021-1,1,4380_7778208_1150110,4380_267 -4380_78113,286,4380_1244,Dublin via Airport,49811-00010-1,1,4380_7778208_1000904,4380_19 -4380_77931,285,4380_12442,Tralee,44236-00009-1,0,4380_7778208_130401,4380_268 -4380_77931,286,4380_12443,Tralee,44234-00010-1,0,4380_7778208_130401,4380_268 -4380_77931,297,4380_12444,Tralee,44227-00008-1,0,4380_7778208_130401,4380_268 -4380_77931,287,4380_12445,Tralee,44230-00012-1,0,4380_7778208_130401,4380_268 -4380_77931,288,4380_12446,Tralee,44232-00011-1,0,4380_7778208_130401,4380_268 -4380_77931,289,4380_12447,Tralee,44238-00014-1,0,4380_7778208_130401,4380_268 -4380_77931,290,4380_12448,Tralee,44237-00015-1,0,4380_7778208_130401,4380_268 -4380_77931,291,4380_12449,Tralee,44228-00013-1,0,4380_7778208_130401,4380_268 -4380_78113,297,4380_1245,Dublin via Airport,49729-00008-1,1,4380_7778208_1000903,4380_19 -4380_77931,292,4380_12450,Tralee,44235-00016-1,0,4380_7778208_130401,4380_268 -4380_77931,293,4380_12451,Tralee,44233-00017-1,0,4380_7778208_130401,4380_268 -4380_77931,295,4380_12452,Tralee,44239-00019-1,0,4380_7778208_130401,4380_268 -4380_77931,294,4380_12453,Tralee,44231-00018-1,0,4380_7778208_130401,4380_268 -4380_77931,296,4380_12454,Tralee,44229-00021-1,0,4380_7778208_130401,4380_268 -4380_78113,287,4380_1246,Dublin via Airport,49813-00012-1,1,4380_7778208_1000904,4380_19 -4380_77931,285,4380_12462,Tralee,44330-00009-1,0,4380_7778208_130702,4380_268 -4380_77931,286,4380_12463,Tralee,44326-00010-1,0,4380_7778208_130702,4380_268 -4380_77931,297,4380_12464,Tralee,44255-00008-1,0,4380_7778208_130402,4380_268 -4380_77931,287,4380_12465,Tralee,44324-00012-1,0,4380_7778208_130702,4380_268 -4380_77931,288,4380_12466,Tralee,44332-00011-1,0,4380_7778208_130702,4380_268 -4380_77931,289,4380_12467,Tralee,44328-00014-1,0,4380_7778208_130702,4380_268 -4380_77931,290,4380_12468,Tralee,44331-00015-1,0,4380_7778208_130702,4380_268 -4380_77931,291,4380_12469,Tralee,44322-00013-1,0,4380_7778208_130702,4380_268 -4380_78113,288,4380_1247,Dublin via Airport,49819-00011-1,1,4380_7778208_1000904,4380_19 -4380_77931,292,4380_12470,Tralee,44327-00016-1,0,4380_7778208_130702,4380_268 -4380_77931,293,4380_12471,Tralee,44333-00017-1,0,4380_7778208_130702,4380_268 -4380_77931,295,4380_12472,Tralee,44329-00019-1,0,4380_7778208_130702,4380_268 -4380_77931,294,4380_12473,Tralee,44325-00018-1,0,4380_7778208_130702,4380_268 -4380_77931,296,4380_12474,Tralee,44323-00021-1,0,4380_7778208_130702,4380_268 -4380_78113,289,4380_1248,Dublin via Airport,49809-00014-1,1,4380_7778208_1000904,4380_19 -4380_77931,285,4380_12481,Tralee,44417-00009-1,0,4380_7778208_130704,4380_269 -4380_77931,286,4380_12482,Tralee,44419-00010-1,0,4380_7778208_130704,4380_269 -4380_77931,287,4380_12483,Tralee,44421-00012-1,0,4380_7778208_130704,4380_269 -4380_77931,288,4380_12484,Tralee,44415-00011-1,0,4380_7778208_130704,4380_269 -4380_77931,289,4380_12485,Tralee,44411-00014-1,0,4380_7778208_130704,4380_269 -4380_77931,290,4380_12486,Tralee,44418-00015-1,0,4380_7778208_130704,4380_269 -4380_77931,291,4380_12487,Tralee,44413-00013-1,0,4380_7778208_130704,4380_269 -4380_77931,292,4380_12488,Tralee,44420-00016-1,0,4380_7778208_130704,4380_269 -4380_77931,293,4380_12489,Tralee,44416-00017-1,0,4380_7778208_130704,4380_269 -4380_78113,290,4380_1249,Dublin via Airport,49816-00015-1,1,4380_7778208_1000904,4380_19 -4380_77931,295,4380_12490,Tralee,44412-00019-1,0,4380_7778208_130704,4380_269 -4380_77931,294,4380_12491,Tralee,44422-00018-1,0,4380_7778208_130704,4380_269 -4380_77931,296,4380_12492,Tralee,44414-00021-1,0,4380_7778208_130704,4380_269 -4380_78113,291,4380_1250,Dublin via Airport,49817-00013-1,1,4380_7778208_1000904,4380_19 -4380_77931,285,4380_12500,Tralee,44520-00009-1,0,4380_7778208_140701,4380_268 -4380_77931,286,4380_12501,Tralee,44518-00010-1,0,4380_7778208_140701,4380_268 -4380_77931,297,4380_12502,Tralee,44509-00008-1,0,4380_7778208_140701,4380_268 -4380_77931,287,4380_12503,Tralee,44512-00012-1,0,4380_7778208_140701,4380_268 -4380_77931,288,4380_12504,Tralee,44516-00011-1,0,4380_7778208_140701,4380_268 -4380_77931,289,4380_12505,Tralee,44510-00014-1,0,4380_7778208_140701,4380_268 -4380_77931,290,4380_12506,Tralee,44521-00015-1,0,4380_7778208_140701,4380_268 -4380_77931,291,4380_12507,Tralee,44514-00013-1,0,4380_7778208_140701,4380_268 -4380_77931,292,4380_12508,Tralee,44519-00016-1,0,4380_7778208_140701,4380_268 -4380_77931,293,4380_12509,Tralee,44517-00017-1,0,4380_7778208_140701,4380_268 -4380_78113,292,4380_1251,Dublin via Airport,49812-00016-1,1,4380_7778208_1000904,4380_19 -4380_77931,295,4380_12510,Tralee,44511-00019-1,0,4380_7778208_140701,4380_268 -4380_77931,294,4380_12511,Tralee,44513-00018-1,0,4380_7778208_140701,4380_268 -4380_77931,296,4380_12512,Tralee,44515-00021-1,0,4380_7778208_140701,4380_268 -4380_78113,293,4380_1252,Dublin via Airport,49820-00017-1,1,4380_7778208_1000904,4380_19 -4380_77931,285,4380_12520,Tralee,44541-00009-1,0,4380_7778208_140702,4380_268 -4380_77931,286,4380_12521,Tralee,44543-00010-1,0,4380_7778208_140702,4380_268 -4380_77931,297,4380_12522,Tralee,44253-00008-1,0,4380_7778208_130401,4380_268 -4380_77931,287,4380_12523,Tralee,44539-00012-1,0,4380_7778208_140702,4380_268 -4380_77931,288,4380_12524,Tralee,44547-00011-1,0,4380_7778208_140702,4380_268 -4380_77931,289,4380_12525,Tralee,44537-00014-1,0,4380_7778208_140702,4380_268 -4380_77931,290,4380_12526,Tralee,44542-00015-1,0,4380_7778208_140702,4380_268 -4380_77931,291,4380_12527,Tralee,44545-00013-1,0,4380_7778208_140702,4380_268 -4380_77931,292,4380_12528,Tralee,44544-00016-1,0,4380_7778208_140702,4380_268 -4380_77931,293,4380_12529,Tralee,44548-00017-1,0,4380_7778208_140702,4380_268 -4380_78113,294,4380_1253,Dublin via Airport,49814-00018-1,1,4380_7778208_1000904,4380_19 -4380_77931,295,4380_12530,Tralee,44538-00019-1,0,4380_7778208_140702,4380_268 -4380_77931,294,4380_12531,Tralee,44540-00018-1,0,4380_7778208_140702,4380_268 -4380_77931,296,4380_12532,Tralee,44546-00021-1,0,4380_7778208_140702,4380_268 -4380_78113,295,4380_1254,Dublin via Airport,49810-00019-1,1,4380_7778208_1000904,4380_19 -4380_77931,285,4380_12540,Tralee,44353-00009-1,0,4380_7778208_130702,4380_268 -4380_77931,286,4380_12541,Tralee,44351-00010-1,0,4380_7778208_130702,4380_268 -4380_77931,297,4380_12542,Tralee,44551-00008-1,0,4380_7778208_140703,4380_268 -4380_77931,287,4380_12543,Tralee,44347-00012-1,0,4380_7778208_130702,4380_268 -4380_77931,288,4380_12544,Tralee,44355-00011-1,0,4380_7778208_130702,4380_268 -4380_77931,289,4380_12545,Tralee,44349-00014-1,0,4380_7778208_130702,4380_268 -4380_77931,290,4380_12546,Tralee,44354-00015-1,0,4380_7778208_130702,4380_268 -4380_77931,291,4380_12547,Tralee,44305-00013-1,0,4380_7778208_130701,4380_268 -4380_77931,292,4380_12548,Tralee,44352-00016-1,0,4380_7778208_130702,4380_268 -4380_77931,293,4380_12549,Tralee,44356-00017-1,0,4380_7778208_130702,4380_268 -4380_78113,296,4380_1255,Dublin via Airport,49818-00021-1,1,4380_7778208_1000904,4380_19 -4380_77931,295,4380_12550,Tralee,44350-00019-1,0,4380_7778208_130702,4380_268 -4380_77931,294,4380_12551,Tralee,44348-00018-1,0,4380_7778208_130702,4380_268 -4380_77931,296,4380_12552,Tralee,44306-00021-1,0,4380_7778208_130701,4380_268 -4380_77931,285,4380_12560,Tralee,47664-00009-1,0,4380_7778208_400703,4380_268 -4380_77931,286,4380_12561,Tralee,47662-00010-1,0,4380_7778208_400703,4380_268 -4380_77931,297,4380_12562,Tralee,44553-00008-1,0,4380_7778208_140704,4380_268 -4380_77931,287,4380_12563,Tralee,47666-00012-1,0,4380_7778208_400703,4380_268 -4380_77931,288,4380_12564,Tralee,47660-00011-1,0,4380_7778208_400703,4380_268 -4380_77931,289,4380_12565,Tralee,47668-00014-1,0,4380_7778208_400703,4380_268 -4380_77931,290,4380_12566,Tralee,47665-00015-1,0,4380_7778208_400703,4380_268 -4380_77931,291,4380_12567,Tralee,44357-00013-1,0,4380_7778208_130702,4380_268 -4380_77931,292,4380_12568,Tralee,47663-00016-1,0,4380_7778208_400703,4380_268 -4380_77931,293,4380_12569,Tralee,47661-00017-1,0,4380_7778208_400703,4380_268 -4380_77931,295,4380_12570,Tralee,47669-00019-1,0,4380_7778208_400703,4380_268 -4380_77931,294,4380_12571,Tralee,47667-00018-1,0,4380_7778208_400703,4380_268 -4380_77931,296,4380_12572,Tralee,44358-00021-1,0,4380_7778208_130702,4380_268 -4380_77931,297,4380_12574,Tralee,44308-00008-1,0,4380_7778208_130701,4380_268 -4380_77931,285,4380_12582,Tralee,44403-00009-1,0,4380_7778208_130703,4380_268 -4380_77931,286,4380_12583,Tralee,44407-00010-1,0,4380_7778208_130703,4380_268 -4380_77931,297,4380_12584,Tralee,44523-00008-1,0,4380_7778208_140701,4380_268 -4380_77931,287,4380_12585,Tralee,44409-00012-1,0,4380_7778208_130703,4380_268 -4380_77931,288,4380_12586,Tralee,44405-00011-1,0,4380_7778208_130703,4380_268 -4380_77931,289,4380_12587,Tralee,44399-00014-1,0,4380_7778208_130703,4380_268 -4380_77931,290,4380_12588,Tralee,44404-00015-1,0,4380_7778208_130703,4380_268 -4380_77931,291,4380_12589,Tralee,44401-00013-1,0,4380_7778208_130703,4380_268 -4380_77931,292,4380_12590,Tralee,44408-00016-1,0,4380_7778208_130703,4380_268 -4380_77931,293,4380_12591,Tralee,44406-00017-1,0,4380_7778208_130703,4380_268 -4380_77931,295,4380_12592,Tralee,44400-00019-1,0,4380_7778208_130703,4380_268 -4380_77931,294,4380_12593,Tralee,44410-00018-1,0,4380_7778208_130703,4380_268 -4380_77931,296,4380_12594,Tralee,44402-00021-1,0,4380_7778208_130703,4380_268 -4380_77931,285,4380_12601,Limerick Bus Station,44261-00009-1,1,4380_7778208_130701,4380_270 -4380_77931,286,4380_12602,Limerick Bus Station,44263-00010-1,1,4380_7778208_130701,4380_270 -4380_77931,287,4380_12603,Limerick Bus Station,44267-00012-1,1,4380_7778208_130701,4380_270 -4380_77931,288,4380_12604,Limerick Bus Station,44265-00011-1,1,4380_7778208_130701,4380_270 -4380_77931,289,4380_12605,Limerick Bus Station,44257-00014-1,1,4380_7778208_130701,4380_270 -4380_77931,290,4380_12606,Limerick Bus Station,44262-00015-1,1,4380_7778208_130701,4380_270 -4380_77931,291,4380_12607,Limerick Bus Station,44259-00013-1,1,4380_7778208_130701,4380_270 -4380_77931,292,4380_12608,Limerick Bus Station,44264-00016-1,1,4380_7778208_130701,4380_270 -4380_77931,293,4380_12609,Limerick Bus Station,44266-00017-1,1,4380_7778208_130701,4380_270 -4380_77931,295,4380_12610,Limerick Bus Station,44258-00019-1,1,4380_7778208_130701,4380_270 -4380_77931,294,4380_12611,Limerick Bus Station,44268-00018-1,1,4380_7778208_130701,4380_270 -4380_77931,296,4380_12612,Limerick Bus Station,44260-00021-1,1,4380_7778208_130701,4380_270 -4380_77931,285,4380_12619,Limerick Bus Station,44311-00009-1,1,4380_7778208_130702,4380_270 -4380_77931,286,4380_12620,Limerick Bus Station,44313-00010-1,1,4380_7778208_130702,4380_270 -4380_77931,287,4380_12621,Limerick Bus Station,44309-00012-1,1,4380_7778208_130702,4380_270 -4380_77931,288,4380_12622,Limerick Bus Station,44315-00011-1,1,4380_7778208_130702,4380_270 -4380_77931,289,4380_12623,Limerick Bus Station,44317-00014-1,1,4380_7778208_130702,4380_270 -4380_77931,290,4380_12624,Limerick Bus Station,44312-00015-1,1,4380_7778208_130702,4380_270 -4380_77931,291,4380_12625,Limerick Bus Station,44319-00013-1,1,4380_7778208_130702,4380_270 -4380_77931,292,4380_12626,Limerick Bus Station,44314-00016-1,1,4380_7778208_130702,4380_270 -4380_77931,293,4380_12627,Limerick Bus Station,44316-00017-1,1,4380_7778208_130702,4380_270 -4380_77931,295,4380_12628,Limerick Bus Station,44318-00019-1,1,4380_7778208_130702,4380_270 -4380_77931,294,4380_12629,Limerick Bus Station,44310-00018-1,1,4380_7778208_130702,4380_270 -4380_78113,285,4380_1263,Dublin via Airport,49923-00009-1,1,4380_7778208_1000905,4380_19 -4380_77931,296,4380_12630,Limerick Bus Station,44320-00021-1,1,4380_7778208_130702,4380_270 -4380_77931,285,4380_12638,Limerick Bus Station,44369-00009-1,1,4380_7778208_130703,4380_270 -4380_77931,286,4380_12639,Limerick Bus Station,44371-00010-1,1,4380_7778208_130703,4380_270 -4380_78113,286,4380_1264,Dublin via Airport,49919-00010-1,1,4380_7778208_1000905,4380_19 -4380_77931,297,4380_12640,Limerick Bus Station,44269-00008-1,1,4380_7778208_130701,4380_270 -4380_77931,287,4380_12641,Limerick Bus Station,44363-00012-1,1,4380_7778208_130703,4380_270 -4380_77931,288,4380_12642,Limerick Bus Station,44365-00011-1,1,4380_7778208_130703,4380_270 -4380_77931,289,4380_12643,Limerick Bus Station,44361-00014-1,1,4380_7778208_130703,4380_270 -4380_77931,290,4380_12644,Limerick Bus Station,44370-00015-1,1,4380_7778208_130703,4380_270 -4380_77931,291,4380_12645,Limerick Bus Station,44367-00013-1,1,4380_7778208_130703,4380_270 -4380_77931,292,4380_12646,Limerick Bus Station,44372-00016-1,1,4380_7778208_130703,4380_270 -4380_77931,293,4380_12647,Limerick Bus Station,44366-00017-1,1,4380_7778208_130703,4380_270 -4380_77931,295,4380_12648,Limerick Bus Station,44362-00019-1,1,4380_7778208_130703,4380_270 -4380_77931,294,4380_12649,Limerick Bus Station,44364-00018-1,1,4380_7778208_130703,4380_270 -4380_78113,297,4380_1265,Dublin via Airport,49821-00008-1,1,4380_7778208_1000904,4380_19 -4380_77931,296,4380_12650,Limerick Bus Station,44368-00021-1,1,4380_7778208_130703,4380_270 -4380_77931,285,4380_12658,Limerick Bus Station,44457-00009-1,1,4380_7778208_130705,4380_270 -4380_77931,286,4380_12659,Limerick Bus Station,44447-00010-1,1,4380_7778208_130705,4380_270 -4380_78113,287,4380_1266,Dublin via Airport,49917-00012-1,1,4380_7778208_1000905,4380_19 -4380_77931,297,4380_12660,Limerick Bus Station,44321-00008-1,1,4380_7778208_130702,4380_270 -4380_77931,287,4380_12661,Limerick Bus Station,44455-00012-1,1,4380_7778208_130705,4380_270 -4380_77931,288,4380_12662,Limerick Bus Station,44453-00011-1,1,4380_7778208_130705,4380_270 -4380_77931,289,4380_12663,Limerick Bus Station,44449-00014-1,1,4380_7778208_130705,4380_270 -4380_77931,290,4380_12664,Limerick Bus Station,44458-00015-1,1,4380_7778208_130705,4380_270 -4380_77931,291,4380_12665,Limerick Bus Station,44451-00013-1,1,4380_7778208_130705,4380_270 -4380_77931,292,4380_12666,Limerick Bus Station,44448-00016-1,1,4380_7778208_130705,4380_270 -4380_77931,293,4380_12667,Limerick Bus Station,44454-00017-1,1,4380_7778208_130705,4380_270 -4380_77931,295,4380_12668,Limerick Bus Station,44450-00019-1,1,4380_7778208_130705,4380_270 -4380_77931,294,4380_12669,Limerick Bus Station,44456-00018-1,1,4380_7778208_130705,4380_270 -4380_78113,288,4380_1267,Dublin via Airport,49913-00011-1,1,4380_7778208_1000905,4380_19 -4380_77931,296,4380_12670,Limerick Bus Station,44452-00021-1,1,4380_7778208_130705,4380_270 -4380_77931,285,4380_12678,Limerick Bus Station,44425-00009-1,1,4380_7778208_130704,4380_270 -4380_77931,286,4380_12679,Limerick Bus Station,44423-00010-1,1,4380_7778208_130704,4380_270 -4380_78113,289,4380_1268,Dublin via Airport,49915-00014-1,1,4380_7778208_1000905,4380_19 -4380_77931,297,4380_12680,Limerick Bus Station,44240-00008-1,1,4380_7778208_130401,4380_270 -4380_77931,287,4380_12681,Limerick Bus Station,44427-00012-1,1,4380_7778208_130704,4380_270 -4380_77931,288,4380_12682,Limerick Bus Station,44431-00011-1,1,4380_7778208_130704,4380_270 -4380_77931,289,4380_12683,Limerick Bus Station,44433-00014-1,1,4380_7778208_130704,4380_270 -4380_77931,290,4380_12684,Limerick Bus Station,44426-00015-1,1,4380_7778208_130704,4380_270 -4380_77931,291,4380_12685,Limerick Bus Station,44429-00013-1,1,4380_7778208_130704,4380_270 -4380_77931,292,4380_12686,Limerick Bus Station,44424-00016-1,1,4380_7778208_130704,4380_270 -4380_77931,293,4380_12687,Limerick Bus Station,44432-00017-1,1,4380_7778208_130704,4380_270 -4380_77931,295,4380_12688,Limerick Bus Station,44434-00019-1,1,4380_7778208_130704,4380_270 -4380_77931,294,4380_12689,Limerick Bus Station,44428-00018-1,1,4380_7778208_130704,4380_270 -4380_78113,290,4380_1269,Dublin via Airport,49924-00015-1,1,4380_7778208_1000905,4380_19 -4380_77931,296,4380_12690,Limerick Bus Station,44430-00021-1,1,4380_7778208_130704,4380_270 -4380_77931,285,4380_12699,Limerick Bus Station,44339-00009-1,1,4380_7778208_130702,4380_270 -4380_78113,291,4380_1270,Dublin via Airport,49921-00013-1,1,4380_7778208_1000905,4380_19 -4380_77931,286,4380_12700,Limerick Bus Station,44337-00010-1,1,4380_7778208_130702,4380_270 -4380_77931,297,4380_12701,Limerick Bus Station,44256-00008-1,1,4380_7778208_130402,4380_270 -4380_77931,297,4380_12702,Limerick Bus Station,44385-00008-1,1,4380_7778208_130703,4380_270 -4380_77931,287,4380_12703,Limerick Bus Station,44341-00012-1,1,4380_7778208_130702,4380_270 -4380_77931,288,4380_12704,Limerick Bus Station,44343-00011-1,1,4380_7778208_130702,4380_270 -4380_77931,289,4380_12705,Limerick Bus Station,44335-00014-1,1,4380_7778208_130702,4380_270 -4380_77931,290,4380_12706,Limerick Bus Station,44340-00015-1,1,4380_7778208_130702,4380_270 -4380_77931,291,4380_12707,Limerick Bus Station,44293-00013-1,1,4380_7778208_130701,4380_270 -4380_77931,292,4380_12708,Limerick Bus Station,44338-00016-1,1,4380_7778208_130702,4380_270 -4380_77931,293,4380_12709,Limerick Bus Station,44344-00017-1,1,4380_7778208_130702,4380_270 -4380_78113,292,4380_1271,Dublin via Airport,49920-00016-1,1,4380_7778208_1000905,4380_19 -4380_77931,295,4380_12710,Limerick Bus Station,44336-00019-1,1,4380_7778208_130702,4380_270 -4380_77931,294,4380_12711,Limerick Bus Station,44342-00018-1,1,4380_7778208_130702,4380_270 -4380_77931,296,4380_12712,Limerick Bus Station,44294-00021-1,1,4380_7778208_130701,4380_270 -4380_78113,293,4380_1272,Dublin via Airport,49914-00017-1,1,4380_7778208_1000905,4380_19 -4380_77931,285,4380_12720,Limerick Bus Station,44396-00009-1,1,4380_7778208_130703,4380_270 -4380_77931,286,4380_12721,Limerick Bus Station,44388-00010-1,1,4380_7778208_130703,4380_270 -4380_77931,297,4380_12722,Limerick Bus Station,44307-00008-1,1,4380_7778208_130701,4380_270 -4380_77931,287,4380_12723,Limerick Bus Station,44394-00012-1,1,4380_7778208_130703,4380_270 -4380_77931,288,4380_12724,Limerick Bus Station,44392-00011-1,1,4380_7778208_130703,4380_270 -4380_77931,289,4380_12725,Limerick Bus Station,44386-00014-1,1,4380_7778208_130703,4380_270 -4380_77931,290,4380_12726,Limerick Bus Station,44397-00015-1,1,4380_7778208_130703,4380_270 -4380_77931,291,4380_12727,Limerick Bus Station,44390-00013-1,1,4380_7778208_130703,4380_270 -4380_77931,292,4380_12728,Limerick Bus Station,44389-00016-1,1,4380_7778208_130703,4380_270 -4380_77931,293,4380_12729,Limerick Bus Station,44393-00017-1,1,4380_7778208_130703,4380_270 -4380_78113,294,4380_1273,Dublin via Airport,49918-00018-1,1,4380_7778208_1000905,4380_19 -4380_77931,295,4380_12730,Limerick Bus Station,44387-00019-1,1,4380_7778208_130703,4380_270 -4380_77931,294,4380_12731,Limerick Bus Station,44395-00018-1,1,4380_7778208_130703,4380_270 -4380_77931,296,4380_12732,Limerick Bus Station,44391-00021-1,1,4380_7778208_130703,4380_270 -4380_77931,297,4380_12734,Limerick Bus Station,44254-00008-1,1,4380_7778208_130401,4380_270 -4380_78113,295,4380_1274,Dublin via Airport,49916-00019-1,1,4380_7778208_1000905,4380_19 -4380_77956,285,4380_12742,Wicklow,58240-00009-1,0,4380_7778208_1310101,4380_271 -4380_77956,286,4380_12743,Wicklow,58243-00010-1,0,4380_7778208_1310101,4380_271 -4380_77956,297,4380_12744,Wicklow,58242-00008-1,0,4380_7778208_1310101,4380_272 -4380_77956,288,4380_12745,Wicklow,58245-00011-1,0,4380_7778208_1310101,4380_271 -4380_77956,287,4380_12746,Wicklow,58234-00012-1,0,4380_7778208_1310101,4380_271 -4380_77956,289,4380_12747,Wicklow,58236-00014-1,0,4380_7778208_1310101,4380_271 -4380_77956,291,4380_12748,Wicklow,58238-00013-1,0,4380_7778208_1310101,4380_273 -4380_77956,292,4380_12749,Wicklow,58244-00016-1,0,4380_7778208_1310101,4380_271 -4380_78113,296,4380_1275,Dublin via Airport,49922-00021-1,1,4380_7778208_1000905,4380_19 -4380_77956,293,4380_12750,Wicklow,58246-00017-1,0,4380_7778208_1310101,4380_271 -4380_77956,290,4380_12751,Wicklow,58241-00015-1,0,4380_7778208_1310101,4380_271 -4380_77956,294,4380_12752,Wicklow,58235-00018-1,0,4380_7778208_1310101,4380_271 -4380_77956,295,4380_12753,Wicklow,58237-00019-1,0,4380_7778208_1310101,4380_271 -4380_77956,296,4380_12754,Wicklow,58239-00021-1,0,4380_7778208_1310101,4380_273 -4380_77956,285,4380_12762,Wicklow,58456-00009-1,0,4380_7778208_1310103,4380_271 -4380_77956,286,4380_12763,Wicklow,58458-00010-1,0,4380_7778208_1310103,4380_271 -4380_77956,297,4380_12764,Wicklow,58455-00008-1,0,4380_7778208_1310103,4380_272 -4380_77956,288,4380_12765,Wicklow,58466-00011-1,0,4380_7778208_1310103,4380_271 -4380_77956,287,4380_12766,Wicklow,58464-00012-1,0,4380_7778208_1310103,4380_271 -4380_77956,289,4380_12767,Wicklow,58460-00014-1,0,4380_7778208_1310103,4380_271 -4380_77956,291,4380_12768,Wicklow,58462-00013-1,0,4380_7778208_1310103,4380_273 -4380_77956,292,4380_12769,Wicklow,58459-00016-1,0,4380_7778208_1310103,4380_271 -4380_77956,293,4380_12770,Wicklow,58467-00017-1,0,4380_7778208_1310103,4380_271 -4380_77956,290,4380_12771,Wicklow,58457-00015-1,0,4380_7778208_1310103,4380_271 -4380_77956,294,4380_12772,Wicklow,58465-00018-1,0,4380_7778208_1310103,4380_271 -4380_77956,295,4380_12773,Wicklow,58461-00019-1,0,4380_7778208_1310103,4380_271 -4380_77956,296,4380_12774,Wicklow,58463-00021-1,0,4380_7778208_1310103,4380_273 -4380_77956,285,4380_12782,Wicklow,58370-00009-1,0,4380_7778208_1310102,4380_271 -4380_77956,286,4380_12783,Wicklow,58363-00010-1,0,4380_7778208_1310102,4380_271 -4380_77956,297,4380_12784,Wicklow,58369-00008-1,0,4380_7778208_1310102,4380_272 -4380_77956,288,4380_12785,Wicklow,58365-00011-1,0,4380_7778208_1310102,4380_271 -4380_77956,287,4380_12786,Wicklow,58367-00012-1,0,4380_7778208_1310102,4380_271 -4380_77956,289,4380_12787,Wicklow,58361-00014-1,0,4380_7778208_1310102,4380_271 -4380_77956,291,4380_12788,Wicklow,58372-00013-1,0,4380_7778208_1310102,4380_273 -4380_77956,292,4380_12789,Wicklow,58364-00016-1,0,4380_7778208_1310102,4380_271 -4380_77956,293,4380_12790,Wicklow,58366-00017-1,0,4380_7778208_1310102,4380_271 -4380_77956,290,4380_12791,Wicklow,58371-00015-1,0,4380_7778208_1310102,4380_271 -4380_77956,294,4380_12792,Wicklow,58368-00018-1,0,4380_7778208_1310102,4380_271 -4380_77956,295,4380_12793,Wicklow,58362-00019-1,0,4380_7778208_1310102,4380_271 -4380_77956,296,4380_12794,Wicklow,58373-00021-1,0,4380_7778208_1310102,4380_273 -4380_77956,285,4380_12802,Wicklow,58582-00009-1,0,4380_7778208_1310104,4380_271 -4380_77956,286,4380_12803,Wicklow,58574-00010-1,0,4380_7778208_1310104,4380_271 -4380_77956,297,4380_12804,Wicklow,58260-00008-1,0,4380_7778208_1310101,4380_272 -4380_77956,288,4380_12805,Wicklow,58578-00011-1,0,4380_7778208_1310104,4380_271 -4380_77956,287,4380_12806,Wicklow,58580-00012-1,0,4380_7778208_1310104,4380_271 -4380_77956,289,4380_12807,Wicklow,58572-00014-1,0,4380_7778208_1310104,4380_271 -4380_77956,291,4380_12808,Wicklow,58261-00013-1,0,4380_7778208_1310101,4380_273 -4380_77956,292,4380_12809,Wicklow,58575-00016-1,0,4380_7778208_1310104,4380_271 -4380_77956,293,4380_12810,Wicklow,58579-00017-1,0,4380_7778208_1310104,4380_271 -4380_77956,290,4380_12811,Wicklow,58583-00015-1,0,4380_7778208_1310104,4380_271 -4380_77956,294,4380_12812,Wicklow,58581-00018-1,0,4380_7778208_1310104,4380_271 -4380_77956,295,4380_12813,Wicklow,58573-00019-1,0,4380_7778208_1310104,4380_271 -4380_77956,296,4380_12814,Wicklow,58262-00021-1,0,4380_7778208_1310101,4380_273 -4380_77956,285,4380_12822,Wicklow,58267-00009-1,0,4380_7778208_1310101,4380_271 -4380_77956,286,4380_12823,Wicklow,58263-00010-1,0,4380_7778208_1310101,4380_271 -4380_77956,297,4380_12824,Wicklow,58481-00008-1,0,4380_7778208_1310103,4380_272 -4380_77956,288,4380_12825,Wicklow,58265-00011-1,0,4380_7778208_1310101,4380_271 -4380_77956,287,4380_12826,Wicklow,58269-00012-1,0,4380_7778208_1310101,4380_271 -4380_77956,289,4380_12827,Wicklow,58271-00014-1,0,4380_7778208_1310101,4380_271 -4380_77956,291,4380_12828,Wicklow,58482-00013-1,0,4380_7778208_1310103,4380_273 -4380_77956,292,4380_12829,Wicklow,58264-00016-1,0,4380_7778208_1310101,4380_271 -4380_78113,285,4380_1283,Dublin via Airport,50017-00009-1,1,4380_7778208_1000906,4380_18 -4380_77956,293,4380_12830,Wicklow,58266-00017-1,0,4380_7778208_1310101,4380_271 -4380_77956,290,4380_12831,Wicklow,58268-00015-1,0,4380_7778208_1310101,4380_271 -4380_77956,294,4380_12832,Wicklow,58270-00018-1,0,4380_7778208_1310101,4380_271 -4380_77956,295,4380_12833,Wicklow,58272-00019-1,0,4380_7778208_1310101,4380_271 -4380_77956,296,4380_12834,Wicklow,58483-00021-1,0,4380_7778208_1310103,4380_273 -4380_78113,286,4380_1284,Dublin via Airport,50027-00010-1,1,4380_7778208_1000906,4380_18 -4380_77956,285,4380_12842,Wicklow,58488-00009-1,0,4380_7778208_1310103,4380_271 -4380_77956,286,4380_12843,Wicklow,58486-00010-1,0,4380_7778208_1310103,4380_271 -4380_77956,297,4380_12844,Wicklow,58589-00008-1,0,4380_7778208_1310104,4380_272 -4380_77956,288,4380_12845,Wicklow,58492-00011-1,0,4380_7778208_1310103,4380_271 -4380_77956,287,4380_12846,Wicklow,58490-00012-1,0,4380_7778208_1310103,4380_271 -4380_77956,291,4380_12847,Wicklow,58594-00013-1,0,4380_7778208_1310104,4380_273 -4380_77956,289,4380_12848,Wicklow,58484-00014-1,0,4380_7778208_1310103,4380_271 -4380_77956,292,4380_12849,Wicklow,58487-00016-1,0,4380_7778208_1310103,4380_271 -4380_78113,297,4380_1285,Dublin via Airport,49925-00008-1,1,4380_7778208_1000905,4380_18 -4380_77956,293,4380_12850,Wicklow,58493-00017-1,0,4380_7778208_1310103,4380_271 -4380_77956,290,4380_12851,Wicklow,58489-00015-1,0,4380_7778208_1310103,4380_271 -4380_77956,294,4380_12852,Wicklow,58491-00018-1,0,4380_7778208_1310103,4380_271 -4380_77956,295,4380_12853,Wicklow,58485-00019-1,0,4380_7778208_1310103,4380_271 -4380_77956,296,4380_12854,Wicklow,58595-00021-1,0,4380_7778208_1310104,4380_273 -4380_78113,287,4380_1286,Dublin via Airport,50021-00012-1,1,4380_7778208_1000906,4380_18 -4380_77956,285,4380_12862,Wicklow,58395-00009-1,0,4380_7778208_1310102,4380_271 -4380_77956,286,4380_12863,Wicklow,58389-00010-1,0,4380_7778208_1310102,4380_271 -4380_77956,297,4380_12864,Wicklow,58397-00008-1,0,4380_7778208_1310102,4380_272 -4380_77956,288,4380_12865,Wicklow,58387-00011-1,0,4380_7778208_1310102,4380_271 -4380_77956,287,4380_12866,Wicklow,58393-00012-1,0,4380_7778208_1310102,4380_271 -4380_77956,289,4380_12867,Wicklow,58391-00014-1,0,4380_7778208_1310102,4380_271 -4380_77956,291,4380_12868,Wicklow,58398-00013-1,0,4380_7778208_1310102,4380_273 -4380_77956,292,4380_12869,Wicklow,58390-00016-1,0,4380_7778208_1310102,4380_271 -4380_78113,288,4380_1287,Dublin via Airport,50019-00011-1,1,4380_7778208_1000906,4380_18 -4380_77956,293,4380_12870,Wicklow,58388-00017-1,0,4380_7778208_1310102,4380_271 -4380_77956,290,4380_12871,Wicklow,58396-00015-1,0,4380_7778208_1310102,4380_271 -4380_77956,294,4380_12872,Wicklow,58394-00018-1,0,4380_7778208_1310102,4380_271 -4380_77956,295,4380_12873,Wicklow,58392-00019-1,0,4380_7778208_1310102,4380_271 -4380_77956,296,4380_12874,Wicklow,58399-00021-1,0,4380_7778208_1310102,4380_273 -4380_78113,289,4380_1288,Dublin via Airport,50025-00014-1,1,4380_7778208_1000906,4380_18 -4380_77956,285,4380_12882,Wicklow,58609-00009-1,0,4380_7778208_1310104,4380_271 -4380_77956,286,4380_12883,Wicklow,58600-00010-1,0,4380_7778208_1310104,4380_271 -4380_77956,297,4380_12884,Wicklow,58286-00008-1,0,4380_7778208_1310101,4380_272 -4380_77956,288,4380_12885,Wicklow,58602-00011-1,0,4380_7778208_1310104,4380_271 -4380_77956,287,4380_12886,Wicklow,58604-00012-1,0,4380_7778208_1310104,4380_271 -4380_77956,289,4380_12887,Wicklow,58598-00014-1,0,4380_7778208_1310104,4380_271 -4380_77956,291,4380_12888,Wicklow,58287-00013-1,0,4380_7778208_1310101,4380_273 -4380_77956,292,4380_12889,Wicklow,58601-00016-1,0,4380_7778208_1310104,4380_271 -4380_78113,290,4380_1289,Dublin via Airport,50018-00015-1,1,4380_7778208_1000906,4380_18 -4380_77956,293,4380_12890,Wicklow,58603-00017-1,0,4380_7778208_1310104,4380_271 -4380_77956,290,4380_12891,Wicklow,58610-00015-1,0,4380_7778208_1310104,4380_271 -4380_77956,294,4380_12892,Wicklow,58605-00018-1,0,4380_7778208_1310104,4380_271 -4380_77956,295,4380_12893,Wicklow,58599-00019-1,0,4380_7778208_1310104,4380_271 -4380_77956,296,4380_12894,Wicklow,58288-00021-1,0,4380_7778208_1310101,4380_273 -4380_78113,291,4380_1290,Dublin via Airport,50023-00013-1,1,4380_7778208_1000906,4380_18 -4380_77956,285,4380_12902,Wicklow,58293-00009-1,0,4380_7778208_1310101,4380_271 -4380_77956,286,4380_12903,Wicklow,58289-00010-1,0,4380_7778208_1310101,4380_271 -4380_77956,297,4380_12904,Wicklow,58509-00008-1,0,4380_7778208_1310103,4380_272 -4380_77956,288,4380_12905,Wicklow,58291-00011-1,0,4380_7778208_1310101,4380_271 -4380_77956,287,4380_12906,Wicklow,58295-00012-1,0,4380_7778208_1310101,4380_271 -4380_77956,289,4380_12907,Wicklow,58297-00014-1,0,4380_7778208_1310101,4380_271 -4380_77956,291,4380_12908,Wicklow,58507-00013-1,0,4380_7778208_1310103,4380_273 -4380_77956,292,4380_12909,Wicklow,58290-00016-1,0,4380_7778208_1310101,4380_271 -4380_78113,292,4380_1291,Dublin via Airport,50028-00016-1,1,4380_7778208_1000906,4380_18 -4380_77956,293,4380_12910,Wicklow,58292-00017-1,0,4380_7778208_1310101,4380_271 -4380_77956,290,4380_12911,Wicklow,58294-00015-1,0,4380_7778208_1310101,4380_271 -4380_77956,294,4380_12912,Wicklow,58296-00018-1,0,4380_7778208_1310101,4380_271 -4380_77956,295,4380_12913,Wicklow,58298-00019-1,0,4380_7778208_1310101,4380_271 -4380_77956,296,4380_12914,Wicklow,58508-00021-1,0,4380_7778208_1310103,4380_273 -4380_78113,293,4380_1292,Dublin via Airport,50020-00017-1,1,4380_7778208_1000906,4380_18 -4380_77956,285,4380_12922,Wicklow,58510-00009-1,0,4380_7778208_1310103,4380_271 -4380_77956,286,4380_12923,Wicklow,58516-00010-1,0,4380_7778208_1310103,4380_271 -4380_77956,297,4380_12924,Wicklow,58617-00008-1,0,4380_7778208_1310104,4380_272 -4380_77956,288,4380_12925,Wicklow,58514-00011-1,0,4380_7778208_1310103,4380_271 -4380_77956,287,4380_12926,Wicklow,58518-00012-1,0,4380_7778208_1310103,4380_271 -4380_77956,291,4380_12927,Wicklow,58620-00013-1,0,4380_7778208_1310104,4380_273 -4380_77956,289,4380_12928,Wicklow,58512-00014-1,0,4380_7778208_1310103,4380_271 -4380_77956,292,4380_12929,Wicklow,58517-00016-1,0,4380_7778208_1310103,4380_271 -4380_78113,294,4380_1293,Dublin via Airport,50022-00018-1,1,4380_7778208_1000906,4380_18 -4380_77956,293,4380_12930,Wicklow,58515-00017-1,0,4380_7778208_1310103,4380_271 -4380_77956,290,4380_12931,Wicklow,58511-00015-1,0,4380_7778208_1310103,4380_271 -4380_77956,294,4380_12932,Wicklow,58519-00018-1,0,4380_7778208_1310103,4380_271 -4380_77956,295,4380_12933,Wicklow,58513-00019-1,0,4380_7778208_1310103,4380_271 -4380_77956,296,4380_12934,Wicklow,58621-00021-1,0,4380_7778208_1310104,4380_273 -4380_78113,295,4380_1294,Dublin via Airport,50026-00019-1,1,4380_7778208_1000906,4380_18 -4380_77956,285,4380_12942,Wicklow,58420-00009-1,0,4380_7778208_1310102,4380_271 -4380_77956,286,4380_12943,Wicklow,58416-00010-1,0,4380_7778208_1310102,4380_271 -4380_77956,297,4380_12944,Wicklow,58413-00008-1,0,4380_7778208_1310102,4380_272 -4380_77956,288,4380_12945,Wicklow,58418-00011-1,0,4380_7778208_1310102,4380_271 -4380_77956,287,4380_12946,Wicklow,58422-00012-1,0,4380_7778208_1310102,4380_271 -4380_77956,289,4380_12947,Wicklow,58424-00014-1,0,4380_7778208_1310102,4380_271 -4380_77956,291,4380_12948,Wicklow,58414-00013-1,0,4380_7778208_1310102,4380_273 -4380_77956,292,4380_12949,Wicklow,58417-00016-1,0,4380_7778208_1310102,4380_271 -4380_78113,296,4380_1295,Dublin via Airport,50024-00021-1,1,4380_7778208_1000906,4380_18 -4380_77956,293,4380_12950,Wicklow,58419-00017-1,0,4380_7778208_1310102,4380_271 -4380_77956,290,4380_12951,Wicklow,58421-00015-1,0,4380_7778208_1310102,4380_271 -4380_77956,294,4380_12952,Wicklow,58423-00018-1,0,4380_7778208_1310102,4380_271 -4380_77956,295,4380_12953,Wicklow,58425-00019-1,0,4380_7778208_1310102,4380_271 -4380_77956,296,4380_12954,Wicklow,58415-00021-1,0,4380_7778208_1310102,4380_273 -4380_77956,285,4380_12962,Wicklow,58635-00009-1,0,4380_7778208_1310104,4380_271 -4380_77956,286,4380_12963,Wicklow,58629-00010-1,0,4380_7778208_1310104,4380_271 -4380_77956,297,4380_12964,Wicklow,58312-00008-1,0,4380_7778208_1310101,4380_272 -4380_77956,288,4380_12965,Wicklow,58626-00011-1,0,4380_7778208_1310104,4380_271 -4380_77956,287,4380_12966,Wicklow,58631-00012-1,0,4380_7778208_1310104,4380_271 -4380_77956,289,4380_12967,Wicklow,58633-00014-1,0,4380_7778208_1310104,4380_271 -4380_77956,291,4380_12968,Wicklow,58313-00013-1,0,4380_7778208_1310101,4380_273 -4380_77956,292,4380_12969,Wicklow,58630-00016-1,0,4380_7778208_1310104,4380_271 -4380_77956,293,4380_12970,Wicklow,58627-00017-1,0,4380_7778208_1310104,4380_271 -4380_77956,290,4380_12971,Wicklow,58636-00015-1,0,4380_7778208_1310104,4380_271 -4380_77956,294,4380_12972,Wicklow,58632-00018-1,0,4380_7778208_1310104,4380_271 -4380_77956,295,4380_12973,Wicklow,58634-00019-1,0,4380_7778208_1310104,4380_271 -4380_77956,296,4380_12974,Wicklow,58314-00021-1,0,4380_7778208_1310101,4380_273 -4380_77956,285,4380_12982,Wicklow,58323-00009-1,0,4380_7778208_1310101,4380_271 -4380_77956,286,4380_12983,Wicklow,58319-00010-1,0,4380_7778208_1310101,4380_271 -4380_77956,297,4380_12984,Wicklow,58535-00008-1,0,4380_7778208_1310103,4380_272 -4380_77956,288,4380_12985,Wicklow,58315-00011-1,0,4380_7778208_1310101,4380_271 -4380_77956,287,4380_12986,Wicklow,58321-00012-1,0,4380_7778208_1310101,4380_271 -4380_77956,289,4380_12987,Wicklow,58317-00014-1,0,4380_7778208_1310101,4380_271 -4380_77956,291,4380_12988,Wicklow,58533-00013-1,0,4380_7778208_1310103,4380_273 -4380_77956,292,4380_12989,Wicklow,58320-00016-1,0,4380_7778208_1310101,4380_271 -4380_77956,293,4380_12990,Wicklow,58316-00017-1,0,4380_7778208_1310101,4380_271 -4380_77956,290,4380_12991,Wicklow,58324-00015-1,0,4380_7778208_1310101,4380_271 -4380_77956,294,4380_12992,Wicklow,58322-00018-1,0,4380_7778208_1310101,4380_271 -4380_77956,295,4380_12993,Wicklow,58318-00019-1,0,4380_7778208_1310101,4380_271 -4380_77956,296,4380_12994,Wicklow,58534-00021-1,0,4380_7778208_1310103,4380_273 -4380_77946,291,4380_13,Dundalk,50269-00013-1,0,4380_7778208_1000912,4380_2 -4380_77956,285,4380_13002,Wicklow,58544-00009-1,0,4380_7778208_1310103,4380_271 -4380_77956,286,4380_13003,Wicklow,58540-00010-1,0,4380_7778208_1310103,4380_271 -4380_77956,297,4380_13004,Wicklow,58641-00008-1,0,4380_7778208_1310104,4380_272 -4380_77956,288,4380_13005,Wicklow,58536-00011-1,0,4380_7778208_1310103,4380_271 -4380_77956,287,4380_13006,Wicklow,58542-00012-1,0,4380_7778208_1310103,4380_271 -4380_77956,291,4380_13007,Wicklow,58648-00013-1,0,4380_7778208_1310104,4380_272 -4380_77956,289,4380_13008,Wicklow,58538-00014-1,0,4380_7778208_1310103,4380_271 -4380_77956,292,4380_13009,Wicklow,58541-00016-1,0,4380_7778208_1310103,4380_271 -4380_77956,293,4380_13010,Wicklow,58537-00017-1,0,4380_7778208_1310103,4380_271 -4380_77956,290,4380_13011,Wicklow,58545-00015-1,0,4380_7778208_1310103,4380_271 -4380_77956,294,4380_13012,Wicklow,58543-00018-1,0,4380_7778208_1310103,4380_271 -4380_77956,295,4380_13013,Wicklow,58539-00019-1,0,4380_7778208_1310103,4380_271 -4380_77956,296,4380_13014,Wicklow,58649-00021-1,0,4380_7778208_1310104,4380_272 -4380_77956,285,4380_13022,Wicklow,58440-00009-1,0,4380_7778208_1310102,4380_271 -4380_77956,286,4380_13023,Wicklow,58450-00010-1,0,4380_7778208_1310102,4380_271 -4380_77956,297,4380_13024,Wicklow,58439-00008-1,0,4380_7778208_1310102,4380_272 -4380_77956,288,4380_13025,Wicklow,58442-00011-1,0,4380_7778208_1310102,4380_271 -4380_77956,287,4380_13026,Wicklow,58446-00012-1,0,4380_7778208_1310102,4380_271 -4380_77956,289,4380_13027,Wicklow,58444-00014-1,0,4380_7778208_1310102,4380_271 -4380_77956,291,4380_13028,Wicklow,58448-00013-1,0,4380_7778208_1310102,4380_273 -4380_77956,292,4380_13029,Wicklow,58451-00016-1,0,4380_7778208_1310102,4380_271 -4380_77947,285,4380_1303,Drop Off,50567-00009-1,0,4380_7778208_1011101,4380_21 -4380_77956,293,4380_13030,Wicklow,58443-00017-1,0,4380_7778208_1310102,4380_271 -4380_77956,290,4380_13031,Wicklow,58441-00015-1,0,4380_7778208_1310102,4380_271 -4380_77956,294,4380_13032,Wicklow,58447-00018-1,0,4380_7778208_1310102,4380_271 -4380_77956,295,4380_13033,Wicklow,58445-00019-1,0,4380_7778208_1310102,4380_271 -4380_77956,296,4380_13034,Wicklow,58449-00021-1,0,4380_7778208_1310102,4380_273 -4380_77947,286,4380_1304,Drop Off,50569-00010-1,0,4380_7778208_1011101,4380_21 -4380_77956,285,4380_13042,Wicklow,58659-00009-1,0,4380_7778208_1310104,4380_271 -4380_77956,286,4380_13043,Wicklow,58657-00010-1,0,4380_7778208_1310104,4380_271 -4380_77956,297,4380_13044,Wicklow,58559-00008-1,0,4380_7778208_1310103,4380_272 -4380_77956,288,4380_13045,Wicklow,58655-00011-1,0,4380_7778208_1310104,4380_271 -4380_77956,287,4380_13046,Wicklow,58653-00012-1,0,4380_7778208_1310104,4380_271 -4380_77956,289,4380_13047,Wicklow,58661-00014-1,0,4380_7778208_1310104,4380_271 -4380_77956,291,4380_13048,Wicklow,58560-00013-1,0,4380_7778208_1310103,4380_273 -4380_77956,292,4380_13049,Wicklow,58658-00016-1,0,4380_7778208_1310104,4380_271 -4380_77947,297,4380_1305,Drop Off,50562-00008-1,0,4380_7778208_1011101,4380_23 -4380_77956,293,4380_13050,Wicklow,58656-00017-1,0,4380_7778208_1310104,4380_271 -4380_77956,290,4380_13051,Wicklow,58660-00015-1,0,4380_7778208_1310104,4380_271 -4380_77956,294,4380_13052,Wicklow,58654-00018-1,0,4380_7778208_1310104,4380_271 -4380_77956,295,4380_13053,Wicklow,58662-00019-1,0,4380_7778208_1310104,4380_271 -4380_77956,296,4380_13054,Wicklow,58561-00021-1,0,4380_7778208_1310103,4380_273 -4380_77947,287,4380_1306,Drop Off,50563-00012-1,0,4380_7778208_1011101,4380_21 -4380_77956,285,4380_13062,Wicklow,58341-00009-1,0,4380_7778208_1310101,4380_271 -4380_77956,286,4380_13063,Wicklow,58345-00010-1,0,4380_7778208_1310101,4380_271 -4380_77956,297,4380_13064,Wicklow,58665-00008-1,0,4380_7778208_1310104,4380_272 -4380_77956,288,4380_13065,Wicklow,58347-00011-1,0,4380_7778208_1310101,4380_271 -4380_77956,287,4380_13066,Wicklow,58343-00012-1,0,4380_7778208_1310101,4380_271 -4380_77956,291,4380_13067,Wicklow,58663-00013-1,0,4380_7778208_1310104,4380_273 -4380_77956,289,4380_13068,Wicklow,58349-00014-1,0,4380_7778208_1310101,4380_271 -4380_77956,292,4380_13069,Wicklow,58346-00016-1,0,4380_7778208_1310101,4380_271 -4380_77947,288,4380_1307,Drop Off,50565-00011-1,0,4380_7778208_1011101,4380_21 -4380_77956,293,4380_13070,Wicklow,58348-00017-1,0,4380_7778208_1310101,4380_271 -4380_77956,290,4380_13071,Wicklow,58342-00015-1,0,4380_7778208_1310101,4380_271 -4380_77956,294,4380_13072,Wicklow,58344-00018-1,0,4380_7778208_1310101,4380_271 -4380_77956,295,4380_13073,Wicklow,58350-00019-1,0,4380_7778208_1310101,4380_271 -4380_77956,296,4380_13074,Wicklow,58664-00021-1,0,4380_7778208_1310104,4380_273 -4380_77947,289,4380_1308,Drop Off,50560-00014-1,0,4380_7778208_1011101,4380_21 -4380_77956,285,4380_13080,Bray (Train Station),58351-00009-1,1,4380_7778208_1310102,4380_274 -4380_77956,286,4380_13081,Bray (Train Station),58359-00010-1,1,4380_7778208_1310102,4380_274 -4380_77956,288,4380_13082,Bray (Train Station),58355-00011-1,1,4380_7778208_1310102,4380_274 -4380_77956,287,4380_13083,Bray (Train Station),58357-00012-1,1,4380_7778208_1310102,4380_274 -4380_77956,289,4380_13084,Bray (Train Station),58353-00014-1,1,4380_7778208_1310102,4380_274 -4380_77956,292,4380_13085,Bray (Train Station),58360-00016-1,1,4380_7778208_1310102,4380_274 -4380_77956,293,4380_13086,Bray (Train Station),58356-00017-1,1,4380_7778208_1310102,4380_274 -4380_77956,290,4380_13087,Bray (Train Station),58352-00015-1,1,4380_7778208_1310102,4380_274 -4380_77956,294,4380_13088,Bray (Train Station),58358-00018-1,1,4380_7778208_1310102,4380_274 -4380_77956,295,4380_13089,Bray (Train Station),58354-00019-1,1,4380_7778208_1310102,4380_274 -4380_77947,290,4380_1309,Drop Off,50568-00015-1,0,4380_7778208_1011101,4380_21 -4380_77956,297,4380_13092,Bray (Train Station),58452-00008-1,1,4380_7778208_1310103,4380_274 -4380_77956,291,4380_13093,Bray (Train Station),58453-00013-1,1,4380_7778208_1310103,4380_275 -4380_77956,296,4380_13094,Bray (Train Station),58454-00021-1,1,4380_7778208_1310103,4380_275 -4380_77947,291,4380_1310,Drop Off,50571-00013-1,0,4380_7778208_1011101,4380_25 -4380_77956,285,4380_13102,Bray (Train Station),58562-00009-1,1,4380_7778208_1310104,4380_274 -4380_77956,286,4380_13103,Bray (Train Station),58570-00010-1,1,4380_7778208_1310104,4380_274 -4380_77956,297,4380_13104,Bray (Train Station),58247-00008-1,1,4380_7778208_1310101,4380_275 -4380_77956,288,4380_13105,Bray (Train Station),58566-00011-1,1,4380_7778208_1310104,4380_274 -4380_77956,287,4380_13106,Bray (Train Station),58568-00012-1,1,4380_7778208_1310104,4380_274 -4380_77956,289,4380_13107,Bray (Train Station),58564-00014-1,1,4380_7778208_1310104,4380_274 -4380_77956,291,4380_13108,Bray (Train Station),58248-00013-1,1,4380_7778208_1310101,4380_276 -4380_77956,292,4380_13109,Bray (Train Station),58571-00016-1,1,4380_7778208_1310104,4380_274 -4380_77947,292,4380_1311,Drop Off,50570-00016-1,0,4380_7778208_1011101,4380_21 -4380_77956,293,4380_13110,Bray (Train Station),58567-00017-1,1,4380_7778208_1310104,4380_274 -4380_77956,290,4380_13111,Bray (Train Station),58563-00015-1,1,4380_7778208_1310104,4380_274 -4380_77956,294,4380_13112,Bray (Train Station),58569-00018-1,1,4380_7778208_1310104,4380_274 -4380_77956,295,4380_13113,Bray (Train Station),58565-00019-1,1,4380_7778208_1310104,4380_274 -4380_77956,296,4380_13114,Bray (Train Station),58249-00021-1,1,4380_7778208_1310101,4380_276 -4380_77947,293,4380_1312,Drop Off,50566-00017-1,0,4380_7778208_1011101,4380_21 -4380_77956,285,4380_13122,Bray (Train Station),58252-00009-1,1,4380_7778208_1310101,4380_274 -4380_77956,286,4380_13123,Bray (Train Station),58250-00010-1,1,4380_7778208_1310101,4380_274 -4380_77956,297,4380_13124,Bray (Train Station),58468-00008-1,1,4380_7778208_1310103,4380_275 -4380_77956,288,4380_13125,Bray (Train Station),58256-00011-1,1,4380_7778208_1310101,4380_274 -4380_77956,287,4380_13126,Bray (Train Station),58258-00012-1,1,4380_7778208_1310101,4380_274 -4380_77956,289,4380_13127,Bray (Train Station),58254-00014-1,1,4380_7778208_1310101,4380_274 -4380_77956,291,4380_13128,Bray (Train Station),58469-00013-1,1,4380_7778208_1310103,4380_276 -4380_77956,292,4380_13129,Bray (Train Station),58251-00016-1,1,4380_7778208_1310101,4380_274 -4380_77947,294,4380_1313,Drop Off,50564-00018-1,0,4380_7778208_1011101,4380_21 -4380_77956,293,4380_13130,Bray (Train Station),58257-00017-1,1,4380_7778208_1310101,4380_274 -4380_77956,290,4380_13131,Bray (Train Station),58253-00015-1,1,4380_7778208_1310101,4380_274 -4380_77956,294,4380_13132,Bray (Train Station),58259-00018-1,1,4380_7778208_1310101,4380_274 -4380_77956,295,4380_13133,Bray (Train Station),58255-00019-1,1,4380_7778208_1310101,4380_274 -4380_77956,296,4380_13134,Bray (Train Station),58470-00021-1,1,4380_7778208_1310103,4380_276 -4380_77947,295,4380_1314,Drop Off,50561-00019-1,0,4380_7778208_1011101,4380_21 -4380_77956,285,4380_13142,Bray (Train Station),58479-00009-1,1,4380_7778208_1310103,4380_274 -4380_77956,286,4380_13143,Bray (Train Station),58471-00010-1,1,4380_7778208_1310103,4380_274 -4380_77956,297,4380_13144,Bray (Train Station),58584-00008-1,1,4380_7778208_1310104,4380_275 -4380_77956,288,4380_13145,Bray (Train Station),58475-00011-1,1,4380_7778208_1310103,4380_274 -4380_77956,287,4380_13146,Bray (Train Station),58473-00012-1,1,4380_7778208_1310103,4380_274 -4380_77956,291,4380_13147,Bray (Train Station),58576-00013-1,1,4380_7778208_1310104,4380_276 -4380_77956,289,4380_13148,Bray (Train Station),58477-00014-1,1,4380_7778208_1310103,4380_274 -4380_77956,292,4380_13149,Bray (Train Station),58472-00016-1,1,4380_7778208_1310103,4380_274 -4380_77947,296,4380_1315,Drop Off,50572-00021-1,0,4380_7778208_1011101,4380_25 -4380_77956,293,4380_13150,Bray (Train Station),58476-00017-1,1,4380_7778208_1310103,4380_274 -4380_77956,290,4380_13151,Bray (Train Station),58480-00015-1,1,4380_7778208_1310103,4380_274 -4380_77956,294,4380_13152,Bray (Train Station),58474-00018-1,1,4380_7778208_1310103,4380_274 -4380_77956,295,4380_13153,Bray (Train Station),58478-00019-1,1,4380_7778208_1310103,4380_274 -4380_77956,296,4380_13154,Bray (Train Station),58577-00021-1,1,4380_7778208_1310104,4380_276 -4380_77956,285,4380_13162,Bray (Train Station),58383-00009-1,1,4380_7778208_1310102,4380_274 -4380_77956,286,4380_13163,Bray (Train Station),58385-00010-1,1,4380_7778208_1310102,4380_274 -4380_77956,297,4380_13164,Bray (Train Station),58382-00008-1,1,4380_7778208_1310102,4380_275 -4380_77956,288,4380_13165,Bray (Train Station),58380-00011-1,1,4380_7778208_1310102,4380_274 -4380_77956,287,4380_13166,Bray (Train Station),58374-00012-1,1,4380_7778208_1310102,4380_274 -4380_77956,289,4380_13167,Bray (Train Station),58376-00014-1,1,4380_7778208_1310102,4380_274 -4380_77956,291,4380_13168,Bray (Train Station),58378-00013-1,1,4380_7778208_1310102,4380_276 -4380_77956,292,4380_13169,Bray (Train Station),58386-00016-1,1,4380_7778208_1310102,4380_274 -4380_77956,293,4380_13170,Bray (Train Station),58381-00017-1,1,4380_7778208_1310102,4380_274 -4380_77956,290,4380_13171,Bray (Train Station),58384-00015-1,1,4380_7778208_1310102,4380_274 -4380_77956,294,4380_13172,Bray (Train Station),58375-00018-1,1,4380_7778208_1310102,4380_274 -4380_77956,295,4380_13173,Bray (Train Station),58377-00019-1,1,4380_7778208_1310102,4380_274 -4380_77956,296,4380_13174,Bray (Train Station),58379-00021-1,1,4380_7778208_1310102,4380_276 -4380_77956,285,4380_13182,Bray (Train Station),58592-00009-1,1,4380_7778208_1310104,4380_274 -4380_77956,286,4380_13183,Bray (Train Station),58596-00010-1,1,4380_7778208_1310104,4380_274 -4380_77956,297,4380_13184,Bray (Train Station),58275-00008-1,1,4380_7778208_1310101,4380_275 -4380_77956,288,4380_13185,Bray (Train Station),58590-00011-1,1,4380_7778208_1310104,4380_274 -4380_77956,287,4380_13186,Bray (Train Station),58585-00012-1,1,4380_7778208_1310104,4380_274 -4380_77956,289,4380_13187,Bray (Train Station),58587-00014-1,1,4380_7778208_1310104,4380_274 -4380_77956,291,4380_13188,Bray (Train Station),58273-00013-1,1,4380_7778208_1310101,4380_276 -4380_77956,292,4380_13189,Bray (Train Station),58597-00016-1,1,4380_7778208_1310104,4380_274 -4380_77956,293,4380_13190,Bray (Train Station),58591-00017-1,1,4380_7778208_1310104,4380_274 -4380_77956,290,4380_13191,Bray (Train Station),58593-00015-1,1,4380_7778208_1310104,4380_274 -4380_77956,294,4380_13192,Bray (Train Station),58586-00018-1,1,4380_7778208_1310104,4380_274 -4380_77956,295,4380_13193,Bray (Train Station),58588-00019-1,1,4380_7778208_1310104,4380_274 -4380_77956,296,4380_13194,Bray (Train Station),58274-00021-1,1,4380_7778208_1310101,4380_276 -4380_77946,285,4380_132,Dundalk,50397-00009-1,0,4380_7778208_1000914,4380_1 -4380_77956,285,4380_13202,Bray (Train Station),58282-00009-1,1,4380_7778208_1310101,4380_274 -4380_77956,286,4380_13203,Bray (Train Station),58278-00010-1,1,4380_7778208_1310101,4380_274 -4380_77956,297,4380_13204,Bray (Train Station),58496-00008-1,1,4380_7778208_1310103,4380_275 -4380_77956,288,4380_13205,Bray (Train Station),58276-00011-1,1,4380_7778208_1310101,4380_274 -4380_77956,287,4380_13206,Bray (Train Station),58284-00012-1,1,4380_7778208_1310101,4380_274 -4380_77956,289,4380_13207,Bray (Train Station),58280-00014-1,1,4380_7778208_1310101,4380_274 -4380_77956,291,4380_13208,Bray (Train Station),58494-00013-1,1,4380_7778208_1310103,4380_276 -4380_77956,292,4380_13209,Bray (Train Station),58279-00016-1,1,4380_7778208_1310101,4380_274 -4380_77956,293,4380_13210,Bray (Train Station),58277-00017-1,1,4380_7778208_1310101,4380_274 -4380_77956,290,4380_13211,Bray (Train Station),58283-00015-1,1,4380_7778208_1310101,4380_274 -4380_77956,294,4380_13212,Bray (Train Station),58285-00018-1,1,4380_7778208_1310101,4380_274 -4380_77956,295,4380_13213,Bray (Train Station),58281-00019-1,1,4380_7778208_1310101,4380_274 -4380_77956,296,4380_13214,Bray (Train Station),58495-00021-1,1,4380_7778208_1310103,4380_276 -4380_77956,285,4380_13222,Bray (Train Station),58497-00009-1,1,4380_7778208_1310103,4380_274 -4380_77956,286,4380_13223,Bray (Train Station),58501-00010-1,1,4380_7778208_1310103,4380_274 -4380_77956,297,4380_13224,Bray (Train Station),58608-00008-1,1,4380_7778208_1310104,4380_275 -4380_77956,288,4380_13225,Bray (Train Station),58503-00011-1,1,4380_7778208_1310103,4380_274 -4380_77956,287,4380_13226,Bray (Train Station),58499-00012-1,1,4380_7778208_1310103,4380_274 -4380_77956,291,4380_13227,Bray (Train Station),58606-00013-1,1,4380_7778208_1310104,4380_276 -4380_77956,289,4380_13228,Bray (Train Station),58505-00014-1,1,4380_7778208_1310103,4380_274 -4380_77956,292,4380_13229,Bray (Train Station),58502-00016-1,1,4380_7778208_1310103,4380_274 -4380_77947,285,4380_1323,Drop Off,50682-00009-1,0,4380_7778208_1011102,4380_21 -4380_77956,293,4380_13230,Bray (Train Station),58504-00017-1,1,4380_7778208_1310103,4380_274 -4380_77956,290,4380_13231,Bray (Train Station),58498-00015-1,1,4380_7778208_1310103,4380_274 -4380_77956,294,4380_13232,Bray (Train Station),58500-00018-1,1,4380_7778208_1310103,4380_274 -4380_77956,295,4380_13233,Bray (Train Station),58506-00019-1,1,4380_7778208_1310103,4380_274 -4380_77956,296,4380_13234,Bray (Train Station),58607-00021-1,1,4380_7778208_1310104,4380_276 -4380_77947,286,4380_1324,Drop Off,50677-00010-1,0,4380_7778208_1011102,4380_21 -4380_77956,285,4380_13242,Bray (Train Station),58404-00009-1,1,4380_7778208_1310102,4380_274 -4380_77956,286,4380_13243,Bray (Train Station),58406-00010-1,1,4380_7778208_1310102,4380_274 -4380_77956,297,4380_13244,Bray (Train Station),58408-00008-1,1,4380_7778208_1310102,4380_275 -4380_77956,288,4380_13245,Bray (Train Station),58402-00011-1,1,4380_7778208_1310102,4380_274 -4380_77956,287,4380_13246,Bray (Train Station),58411-00012-1,1,4380_7778208_1310102,4380_274 -4380_77956,289,4380_13247,Bray (Train Station),58409-00014-1,1,4380_7778208_1310102,4380_274 -4380_77956,291,4380_13248,Bray (Train Station),58400-00013-1,1,4380_7778208_1310102,4380_276 -4380_77956,292,4380_13249,Bray (Train Station),58407-00016-1,1,4380_7778208_1310102,4380_274 -4380_77947,297,4380_1325,Drop Off,50679-00008-1,0,4380_7778208_1011102,4380_23 -4380_77956,293,4380_13250,Bray (Train Station),58403-00017-1,1,4380_7778208_1310102,4380_274 -4380_77956,290,4380_13251,Bray (Train Station),58405-00015-1,1,4380_7778208_1310102,4380_274 -4380_77956,294,4380_13252,Bray (Train Station),58412-00018-1,1,4380_7778208_1310102,4380_274 -4380_77956,295,4380_13253,Bray (Train Station),58410-00019-1,1,4380_7778208_1310102,4380_274 -4380_77956,296,4380_13254,Bray (Train Station),58401-00021-1,1,4380_7778208_1310102,4380_276 -4380_77947,287,4380_1326,Drop Off,50680-00012-1,0,4380_7778208_1011102,4380_21 -4380_77956,285,4380_13262,Bray (Train Station),58622-00009-1,1,4380_7778208_1310104,4380_274 -4380_77956,286,4380_13263,Bray (Train Station),58613-00010-1,1,4380_7778208_1310104,4380_274 -4380_77956,297,4380_13264,Bray (Train Station),58299-00008-1,1,4380_7778208_1310101,4380_275 -4380_77956,288,4380_13265,Bray (Train Station),58615-00011-1,1,4380_7778208_1310104,4380_274 -4380_77956,287,4380_13266,Bray (Train Station),58611-00012-1,1,4380_7778208_1310104,4380_274 -4380_77956,289,4380_13267,Bray (Train Station),58618-00014-1,1,4380_7778208_1310104,4380_274 -4380_77956,291,4380_13268,Bray (Train Station),58300-00013-1,1,4380_7778208_1310101,4380_276 -4380_77956,292,4380_13269,Bray (Train Station),58614-00016-1,1,4380_7778208_1310104,4380_274 -4380_77947,288,4380_1327,Drop Off,50684-00011-1,0,4380_7778208_1011102,4380_21 -4380_77956,293,4380_13270,Bray (Train Station),58616-00017-1,1,4380_7778208_1310104,4380_274 -4380_77956,290,4380_13271,Bray (Train Station),58623-00015-1,1,4380_7778208_1310104,4380_274 -4380_77956,294,4380_13272,Bray (Train Station),58612-00018-1,1,4380_7778208_1310104,4380_274 -4380_77956,295,4380_13273,Bray (Train Station),58619-00019-1,1,4380_7778208_1310104,4380_274 -4380_77956,296,4380_13274,Bray (Train Station),58301-00021-1,1,4380_7778208_1310101,4380_276 -4380_77947,289,4380_1328,Drop Off,50686-00014-1,0,4380_7778208_1011102,4380_21 -4380_77956,285,4380_13282,Bray (Train Station),58302-00009-1,1,4380_7778208_1310101,4380_274 -4380_77956,286,4380_13283,Bray (Train Station),58310-00010-1,1,4380_7778208_1310101,4380_274 -4380_77956,297,4380_13284,Bray (Train Station),58520-00008-1,1,4380_7778208_1310103,4380_275 -4380_77956,288,4380_13285,Bray (Train Station),58306-00011-1,1,4380_7778208_1310101,4380_274 -4380_77956,287,4380_13286,Bray (Train Station),58308-00012-1,1,4380_7778208_1310101,4380_274 -4380_77956,289,4380_13287,Bray (Train Station),58304-00014-1,1,4380_7778208_1310101,4380_274 -4380_77956,291,4380_13288,Bray (Train Station),58521-00013-1,1,4380_7778208_1310103,4380_276 -4380_77956,292,4380_13289,Bray (Train Station),58311-00016-1,1,4380_7778208_1310101,4380_274 -4380_77947,290,4380_1329,Drop Off,50683-00015-1,0,4380_7778208_1011102,4380_21 -4380_77956,293,4380_13290,Bray (Train Station),58307-00017-1,1,4380_7778208_1310101,4380_274 -4380_77956,290,4380_13291,Bray (Train Station),58303-00015-1,1,4380_7778208_1310101,4380_274 -4380_77956,294,4380_13292,Bray (Train Station),58309-00018-1,1,4380_7778208_1310101,4380_274 -4380_77956,295,4380_13293,Bray (Train Station),58305-00019-1,1,4380_7778208_1310101,4380_274 -4380_77956,296,4380_13294,Bray (Train Station),58522-00021-1,1,4380_7778208_1310103,4380_276 -4380_77946,286,4380_133,Dundalk,50403-00010-1,0,4380_7778208_1000914,4380_1 -4380_77947,291,4380_1330,Drop Off,50783-00013-1,0,4380_7778208_1011103,4380_25 -4380_77956,285,4380_13302,Bray (Train Station),58531-00009-1,1,4380_7778208_1310103,4380_274 -4380_77956,286,4380_13303,Bray (Train Station),58529-00010-1,1,4380_7778208_1310103,4380_274 -4380_77956,297,4380_13304,Bray (Train Station),58628-00008-1,1,4380_7778208_1310104,4380_275 -4380_77956,288,4380_13305,Bray (Train Station),58523-00011-1,1,4380_7778208_1310103,4380_274 -4380_77956,287,4380_13306,Bray (Train Station),58527-00012-1,1,4380_7778208_1310103,4380_274 -4380_77956,291,4380_13307,Bray (Train Station),58624-00013-1,1,4380_7778208_1310104,4380_276 -4380_77956,289,4380_13308,Bray (Train Station),58525-00014-1,1,4380_7778208_1310103,4380_274 -4380_77956,292,4380_13309,Bray (Train Station),58530-00016-1,1,4380_7778208_1310103,4380_274 -4380_77947,292,4380_1331,Drop Off,50678-00016-1,0,4380_7778208_1011102,4380_21 -4380_77956,293,4380_13310,Bray (Train Station),58524-00017-1,1,4380_7778208_1310103,4380_274 -4380_77956,290,4380_13311,Bray (Train Station),58532-00015-1,1,4380_7778208_1310103,4380_274 -4380_77956,294,4380_13312,Bray (Train Station),58528-00018-1,1,4380_7778208_1310103,4380_274 -4380_77956,295,4380_13313,Bray (Train Station),58526-00019-1,1,4380_7778208_1310103,4380_274 -4380_77956,296,4380_13314,Bray (Train Station),58625-00021-1,1,4380_7778208_1310104,4380_276 -4380_77947,293,4380_1332,Drop Off,50685-00017-1,0,4380_7778208_1011102,4380_21 -4380_77956,285,4380_13322,Bray (Train Station),58430-00009-1,1,4380_7778208_1310102,4380_274 -4380_77956,286,4380_13323,Bray (Train Station),58435-00010-1,1,4380_7778208_1310102,4380_274 -4380_77956,297,4380_13324,Bray (Train Station),58434-00008-1,1,4380_7778208_1310102,4380_275 -4380_77956,288,4380_13325,Bray (Train Station),58432-00011-1,1,4380_7778208_1310102,4380_274 -4380_77956,287,4380_13326,Bray (Train Station),58428-00012-1,1,4380_7778208_1310102,4380_274 -4380_77956,289,4380_13327,Bray (Train Station),58426-00014-1,1,4380_7778208_1310102,4380_274 -4380_77956,291,4380_13328,Bray (Train Station),58437-00013-1,1,4380_7778208_1310102,4380_276 -4380_77956,292,4380_13329,Bray (Train Station),58436-00016-1,1,4380_7778208_1310102,4380_274 -4380_77947,294,4380_1333,Drop Off,50681-00018-1,0,4380_7778208_1011102,4380_21 -4380_77956,293,4380_13330,Bray (Train Station),58433-00017-1,1,4380_7778208_1310102,4380_274 -4380_77956,290,4380_13331,Bray (Train Station),58431-00015-1,1,4380_7778208_1310102,4380_274 -4380_77956,294,4380_13332,Bray (Train Station),58429-00018-1,1,4380_7778208_1310102,4380_274 -4380_77956,295,4380_13333,Bray (Train Station),58427-00019-1,1,4380_7778208_1310102,4380_274 -4380_77956,296,4380_13334,Bray (Train Station),58438-00021-1,1,4380_7778208_1310102,4380_276 -4380_77947,295,4380_1334,Drop Off,50687-00019-1,0,4380_7778208_1011102,4380_21 -4380_77956,285,4380_13342,Bray (Train Station),58644-00009-1,1,4380_7778208_1310104,4380_274 -4380_77956,286,4380_13343,Bray (Train Station),58639-00010-1,1,4380_7778208_1310104,4380_274 -4380_77956,297,4380_13344,Bray (Train Station),58327-00008-1,1,4380_7778208_1310101,4380_275 -4380_77956,288,4380_13345,Bray (Train Station),58637-00011-1,1,4380_7778208_1310104,4380_274 -4380_77956,287,4380_13346,Bray (Train Station),58646-00012-1,1,4380_7778208_1310104,4380_274 -4380_77956,289,4380_13347,Bray (Train Station),58642-00014-1,1,4380_7778208_1310104,4380_274 -4380_77956,291,4380_13348,Bray (Train Station),58325-00013-1,1,4380_7778208_1310101,4380_276 -4380_77956,292,4380_13349,Bray (Train Station),58640-00016-1,1,4380_7778208_1310104,4380_274 -4380_77947,296,4380_1335,Drop Off,50784-00021-1,0,4380_7778208_1011103,4380_25 -4380_77956,293,4380_13350,Bray (Train Station),58638-00017-1,1,4380_7778208_1310104,4380_274 -4380_77956,290,4380_13351,Bray (Train Station),58645-00015-1,1,4380_7778208_1310104,4380_274 -4380_77956,294,4380_13352,Bray (Train Station),58647-00018-1,1,4380_7778208_1310104,4380_274 -4380_77956,295,4380_13353,Bray (Train Station),58643-00019-1,1,4380_7778208_1310104,4380_274 -4380_77956,296,4380_13354,Bray (Train Station),58326-00021-1,1,4380_7778208_1310101,4380_276 -4380_77956,285,4380_13362,Bray (Train Station),58328-00009-1,1,4380_7778208_1310101,4380_274 -4380_77956,286,4380_13363,Bray (Train Station),58334-00010-1,1,4380_7778208_1310101,4380_274 -4380_77956,297,4380_13364,Bray (Train Station),58548-00008-1,1,4380_7778208_1310103,4380_275 -4380_77956,288,4380_13365,Bray (Train Station),58332-00011-1,1,4380_7778208_1310101,4380_274 -4380_77956,287,4380_13366,Bray (Train Station),58330-00012-1,1,4380_7778208_1310101,4380_274 -4380_77956,289,4380_13367,Bray (Train Station),58336-00014-1,1,4380_7778208_1310101,4380_274 -4380_77956,291,4380_13368,Bray (Train Station),58546-00013-1,1,4380_7778208_1310103,4380_276 -4380_77956,292,4380_13369,Bray (Train Station),58335-00016-1,1,4380_7778208_1310101,4380_274 -4380_77956,293,4380_13370,Bray (Train Station),58333-00017-1,1,4380_7778208_1310101,4380_274 -4380_77956,290,4380_13371,Bray (Train Station),58329-00015-1,1,4380_7778208_1310101,4380_274 -4380_77956,294,4380_13372,Bray (Train Station),58331-00018-1,1,4380_7778208_1310101,4380_274 -4380_77956,295,4380_13373,Bray (Train Station),58337-00019-1,1,4380_7778208_1310101,4380_274 -4380_77956,296,4380_13374,Bray (Train Station),58547-00021-1,1,4380_7778208_1310103,4380_276 -4380_77956,285,4380_13382,Bray (Train Station),58553-00009-1,1,4380_7778208_1310103,4380_274 -4380_77956,286,4380_13383,Bray (Train Station),58555-00010-1,1,4380_7778208_1310103,4380_274 -4380_77956,297,4380_13384,Bray (Train Station),58652-00008-1,1,4380_7778208_1310104,4380_275 -4380_77956,288,4380_13385,Bray (Train Station),58551-00011-1,1,4380_7778208_1310103,4380_274 -4380_77956,287,4380_13386,Bray (Train Station),58557-00012-1,1,4380_7778208_1310103,4380_274 -4380_77956,291,4380_13387,Bray (Train Station),58650-00013-1,1,4380_7778208_1310104,4380_276 -4380_77956,289,4380_13388,Bray (Train Station),58549-00014-1,1,4380_7778208_1310103,4380_274 -4380_77956,292,4380_13389,Bray (Train Station),58556-00016-1,1,4380_7778208_1310103,4380_274 -4380_77956,293,4380_13390,Bray (Train Station),58552-00017-1,1,4380_7778208_1310103,4380_274 -4380_77956,290,4380_13391,Bray (Train Station),58554-00015-1,1,4380_7778208_1310103,4380_274 -4380_77956,294,4380_13392,Bray (Train Station),58558-00018-1,1,4380_7778208_1310103,4380_274 -4380_77956,295,4380_13393,Bray (Train Station),58550-00019-1,1,4380_7778208_1310103,4380_274 -4380_77956,296,4380_13394,Bray (Train Station),58651-00021-1,1,4380_7778208_1310104,4380_276 -4380_77946,297,4380_134,Dundalk,50240-00008-1,0,4380_7778208_1000910,4380_2 -4380_77957,285,4380_13400,Tullow,58678-00009-1,0,4380_7778208_1320101,4380_277 -4380_77957,286,4380_13401,Tullow,58682-00010-1,0,4380_7778208_1320101,4380_277 -4380_77957,288,4380_13402,Tullow,58684-00011-1,0,4380_7778208_1320101,4380_277 -4380_77957,287,4380_13403,Tullow,58676-00012-1,0,4380_7778208_1320101,4380_277 -4380_77957,289,4380_13404,Tullow,58680-00014-1,0,4380_7778208_1320101,4380_277 -4380_77957,292,4380_13405,Tullow,58683-00016-1,0,4380_7778208_1320101,4380_277 -4380_77957,293,4380_13406,Tullow,58685-00017-1,0,4380_7778208_1320101,4380_277 -4380_77957,290,4380_13407,Tullow,58679-00015-1,0,4380_7778208_1320101,4380_277 -4380_77957,294,4380_13408,Tullow,58677-00018-1,0,4380_7778208_1320101,4380_277 -4380_77957,295,4380_13409,Tullow,58681-00019-1,0,4380_7778208_1320101,4380_277 -4380_77957,285,4380_13417,Tullow,58730-00009-1,0,4380_7778208_1320801,4380_277 -4380_77957,286,4380_13418,Tullow,58723-00010-1,0,4380_7778208_1320801,4380_277 -4380_77957,297,4380_13419,Tullow,58729-00008-1,0,4380_7778208_1320801,4380_279 -4380_77957,288,4380_13420,Tullow,58727-00011-1,0,4380_7778208_1320801,4380_277 -4380_77957,287,4380_13421,Tullow,58719-00012-1,0,4380_7778208_1320801,4380_277 -4380_77957,291,4380_13422,Tullow,58721-00013-1,0,4380_7778208_1320801,4380_282 -4380_77957,289,4380_13423,Tullow,58725-00014-1,0,4380_7778208_1320801,4380_277 -4380_77957,292,4380_13424,Tullow,58724-00016-1,0,4380_7778208_1320801,4380_277 -4380_77957,293,4380_13425,Tullow,58728-00017-1,0,4380_7778208_1320801,4380_277 -4380_77957,290,4380_13426,Tullow,58731-00015-1,0,4380_7778208_1320801,4380_277 -4380_77957,294,4380_13427,Tullow,58720-00018-1,0,4380_7778208_1320801,4380_277 -4380_77957,295,4380_13428,Tullow,58726-00019-1,0,4380_7778208_1320801,4380_277 -4380_77957,296,4380_13429,Tullow,58722-00021-1,0,4380_7778208_1320801,4380_282 -4380_77947,285,4380_1343,Drop Off,50907-00009-1,0,4380_7778208_1011104,4380_21 -4380_77957,285,4380_13435,Tullow,58702-00009-1,0,4380_7778208_1320101,4380_278 -4380_77957,286,4380_13436,Tullow,58700-00010-1,0,4380_7778208_1320101,4380_278 -4380_77957,288,4380_13437,Tullow,58696-00011-1,0,4380_7778208_1320101,4380_278 -4380_77957,287,4380_13438,Tullow,58698-00012-1,0,4380_7778208_1320101,4380_278 -4380_77957,289,4380_13439,Tullow,58704-00014-1,0,4380_7778208_1320101,4380_278 -4380_77947,286,4380_1344,Drop Off,50905-00010-1,0,4380_7778208_1011104,4380_21 -4380_77957,292,4380_13440,Tullow,58701-00016-1,0,4380_7778208_1320101,4380_278 -4380_77957,293,4380_13441,Tullow,58697-00017-1,0,4380_7778208_1320101,4380_278 -4380_77957,290,4380_13442,Tullow,58703-00015-1,0,4380_7778208_1320101,4380_278 -4380_77957,294,4380_13443,Tullow,58699-00018-1,0,4380_7778208_1320101,4380_278 -4380_77957,295,4380_13444,Tullow,58705-00019-1,0,4380_7778208_1320101,4380_278 -4380_77947,297,4380_1345,Drop Off,50785-00008-1,0,4380_7778208_1011103,4380_23 -4380_77957,285,4380_13451,Tullow,58754-00009-1,0,4380_7778208_1320801,4380_278 -4380_77957,286,4380_13452,Tullow,58747-00010-1,0,4380_7778208_1320801,4380_278 -4380_77957,297,4380_13453,Tullow,58749-00008-1,0,4380_7778208_1320801,4380_280 -4380_77957,288,4380_13454,Tullow,58750-00011-1,0,4380_7778208_1320801,4380_278 -4380_77957,287,4380_13455,Tullow,58752-00012-1,0,4380_7778208_1320801,4380_278 -4380_77957,289,4380_13456,Tullow,58745-00014-1,0,4380_7778208_1320801,4380_278 -4380_77957,292,4380_13457,Tullow,58748-00016-1,0,4380_7778208_1320801,4380_278 -4380_77957,293,4380_13458,Tullow,58751-00017-1,0,4380_7778208_1320801,4380_278 -4380_77957,290,4380_13459,Tullow,58755-00015-1,0,4380_7778208_1320801,4380_278 -4380_77947,288,4380_1346,Drop Off,50911-00011-1,0,4380_7778208_1011104,4380_21 -4380_77957,294,4380_13460,Tullow,58753-00018-1,0,4380_7778208_1320801,4380_278 -4380_77957,295,4380_13461,Tullow,58746-00019-1,0,4380_7778208_1320801,4380_278 -4380_77957,291,4380_13463,Tullow,58756-00013-1,0,4380_7778208_1320801,4380_278 -4380_77957,296,4380_13464,Tullow,58757-00021-1,0,4380_7778208_1320801,4380_278 -4380_77957,288,4380_13466,Rosslare Harbour,58760-00011-1,0,4380_7778208_1320802,4380_281 -4380_77957,293,4380_13467,Rosslare Harbour,58761-00017-1,0,4380_7778208_1320802,4380_281 -4380_77957,297,4380_13469,Tullow,58763-00008-1,0,4380_7778208_1320802,4380_278 -4380_77947,287,4380_1347,Drop Off,50913-00012-1,0,4380_7778208_1011104,4380_21 -4380_77957,285,4380_13475,Dublin,58674-00009-1,1,4380_7778208_1320101,4380_283 -4380_77957,286,4380_13476,Dublin,58672-00010-1,1,4380_7778208_1320101,4380_283 -4380_77957,288,4380_13477,Dublin,58670-00011-1,1,4380_7778208_1320101,4380_283 -4380_77957,287,4380_13478,Dublin,58666-00012-1,1,4380_7778208_1320101,4380_283 -4380_77957,289,4380_13479,Dublin,58668-00014-1,1,4380_7778208_1320101,4380_283 -4380_77947,289,4380_1348,Drop Off,50909-00014-1,0,4380_7778208_1011104,4380_21 -4380_77957,292,4380_13480,Dublin,58673-00016-1,1,4380_7778208_1320101,4380_283 -4380_77957,293,4380_13481,Dublin,58671-00017-1,1,4380_7778208_1320101,4380_283 -4380_77957,290,4380_13482,Dublin,58675-00015-1,1,4380_7778208_1320101,4380_283 -4380_77957,294,4380_13483,Dublin,58667-00018-1,1,4380_7778208_1320101,4380_283 -4380_77957,295,4380_13484,Dublin,58669-00019-1,1,4380_7778208_1320101,4380_283 -4380_77947,290,4380_1349,Drop Off,50908-00015-1,0,4380_7778208_1011104,4380_21 -4380_77957,285,4380_13491,Dublin,58716-00009-1,1,4380_7778208_1320801,4380_283 -4380_77957,286,4380_13492,Dublin,58712-00010-1,1,4380_7778208_1320801,4380_283 -4380_77957,288,4380_13493,Dublin,58714-00011-1,1,4380_7778208_1320801,4380_283 -4380_77957,287,4380_13494,Dublin,58710-00012-1,1,4380_7778208_1320801,4380_283 -4380_77957,291,4380_13495,Dublin,58706-00013-1,1,4380_7778208_1320801,4380_287 -4380_77957,289,4380_13496,Dublin,58708-00014-1,1,4380_7778208_1320801,4380_283 -4380_77957,292,4380_13497,Dublin,58713-00016-1,1,4380_7778208_1320801,4380_283 -4380_77957,293,4380_13498,Dublin,58715-00017-1,1,4380_7778208_1320801,4380_283 -4380_77957,290,4380_13499,Dublin,58717-00015-1,1,4380_7778208_1320801,4380_283 -4380_77946,287,4380_135,Dundalk,50401-00012-1,0,4380_7778208_1000914,4380_1 -4380_77947,291,4380_1350,Drop Off,50688-00013-1,0,4380_7778208_1011102,4380_25 -4380_77957,294,4380_13500,Dublin,58711-00018-1,1,4380_7778208_1320801,4380_283 -4380_77957,295,4380_13501,Dublin,58709-00019-1,1,4380_7778208_1320801,4380_283 -4380_77957,296,4380_13502,Dublin,58707-00021-1,1,4380_7778208_1320801,4380_287 -4380_77957,288,4380_13504,Dublin,58758-00011-1,1,4380_7778208_1320802,4380_286 -4380_77957,293,4380_13505,Dublin,58759-00017-1,1,4380_7778208_1320802,4380_286 -4380_77957,297,4380_13507,Dublin,58718-00008-1,1,4380_7778208_1320801,4380_283 -4380_77947,292,4380_1351,Drop Off,50906-00016-1,0,4380_7778208_1011104,4380_21 -4380_77957,285,4380_13513,Dublin,58690-00009-1,1,4380_7778208_1320101,4380_284 -4380_77957,286,4380_13514,Dublin,58686-00010-1,1,4380_7778208_1320101,4380_284 -4380_77957,288,4380_13515,Dublin,58692-00011-1,1,4380_7778208_1320101,4380_284 -4380_77957,287,4380_13516,Dublin,58688-00012-1,1,4380_7778208_1320101,4380_284 -4380_77957,289,4380_13517,Dublin,58694-00014-1,1,4380_7778208_1320101,4380_284 -4380_77957,292,4380_13518,Dublin,58687-00016-1,1,4380_7778208_1320101,4380_284 -4380_77957,293,4380_13519,Dublin,58693-00017-1,1,4380_7778208_1320101,4380_284 -4380_77947,293,4380_1352,Drop Off,50912-00017-1,0,4380_7778208_1011104,4380_21 -4380_77957,290,4380_13520,Dublin,58691-00015-1,1,4380_7778208_1320101,4380_284 -4380_77957,294,4380_13521,Dublin,58689-00018-1,1,4380_7778208_1320101,4380_284 -4380_77957,295,4380_13522,Dublin,58695-00019-1,1,4380_7778208_1320101,4380_284 -4380_77947,294,4380_1353,Drop Off,50914-00018-1,0,4380_7778208_1011104,4380_21 -4380_77957,285,4380_13530,Dublin,58740-00009-1,1,4380_7778208_1320801,4380_284 -4380_77957,286,4380_13531,Dublin,58738-00010-1,1,4380_7778208_1320801,4380_284 -4380_77957,297,4380_13532,Dublin,58744-00008-1,1,4380_7778208_1320801,4380_285 -4380_77957,288,4380_13533,Dublin,58734-00011-1,1,4380_7778208_1320801,4380_284 -4380_77957,287,4380_13534,Dublin,58742-00012-1,1,4380_7778208_1320801,4380_284 -4380_77957,291,4380_13535,Dublin,58732-00013-1,1,4380_7778208_1320801,4380_288 -4380_77957,289,4380_13536,Dublin,58736-00014-1,1,4380_7778208_1320801,4380_284 -4380_77957,292,4380_13537,Dublin,58739-00016-1,1,4380_7778208_1320801,4380_284 -4380_77957,293,4380_13538,Dublin,58735-00017-1,1,4380_7778208_1320801,4380_284 -4380_77957,290,4380_13539,Dublin,58741-00015-1,1,4380_7778208_1320801,4380_284 -4380_77947,295,4380_1354,Drop Off,50910-00019-1,0,4380_7778208_1011104,4380_21 -4380_77957,294,4380_13540,Dublin,58743-00018-1,1,4380_7778208_1320801,4380_284 -4380_77957,295,4380_13541,Dublin,58737-00019-1,1,4380_7778208_1320801,4380_284 -4380_77957,296,4380_13542,Dublin,58733-00021-1,1,4380_7778208_1320801,4380_288 -4380_77957,297,4380_13544,Dublin,58762-00008-1,1,4380_7778208_1320802,4380_283 -4380_77947,296,4380_1355,Drop Off,50689-00021-1,0,4380_7778208_1011102,4380_25 -4380_77958,285,4380_13552,Wicklow,59221-00009-1,0,4380_7778208_1330108,4380_289 -4380_77958,286,4380_13553,Wicklow,59219-00010-1,0,4380_7778208_1330108,4380_289 -4380_77958,297,4380_13554,Wicklow,58944-00008-1,0,4380_7778208_1330103,4380_290 -4380_77958,288,4380_13555,Wicklow,59215-00011-1,0,4380_7778208_1330108,4380_289 -4380_77958,287,4380_13556,Wicklow,59223-00012-1,0,4380_7778208_1330108,4380_289 -4380_77958,291,4380_13557,Wicklow,58942-00013-1,0,4380_7778208_1330103,4380_291 -4380_77958,289,4380_13558,Wicklow,59217-00014-1,0,4380_7778208_1330108,4380_289 -4380_77958,292,4380_13559,Wicklow,59220-00016-1,0,4380_7778208_1330108,4380_289 -4380_77958,293,4380_13560,Wicklow,59216-00017-1,0,4380_7778208_1330108,4380_289 -4380_77958,290,4380_13561,Wicklow,59222-00015-1,0,4380_7778208_1330108,4380_289 -4380_77958,294,4380_13562,Wicklow,59224-00018-1,0,4380_7778208_1330108,4380_289 -4380_77958,295,4380_13563,Wicklow,59218-00019-1,0,4380_7778208_1330108,4380_289 -4380_77958,296,4380_13564,Wicklow,58943-00021-1,0,4380_7778208_1330103,4380_291 -4380_77958,285,4380_13572,Wicklow,58779-00009-1,0,4380_7778208_1330101,4380_289 -4380_77958,286,4380_13573,Wicklow,58777-00010-1,0,4380_7778208_1330101,4380_289 -4380_77958,297,4380_13574,Wicklow,58785-00008-1,0,4380_7778208_1330101,4380_290 -4380_77958,288,4380_13575,Wicklow,58788-00011-1,0,4380_7778208_1330101,4380_289 -4380_77958,287,4380_13576,Wicklow,58783-00012-1,0,4380_7778208_1330101,4380_289 -4380_77958,291,4380_13577,Wicklow,58781-00013-1,0,4380_7778208_1330101,4380_291 -4380_77958,289,4380_13578,Wicklow,58786-00014-1,0,4380_7778208_1330101,4380_289 -4380_77958,292,4380_13579,Wicklow,58778-00016-1,0,4380_7778208_1330101,4380_289 -4380_77958,293,4380_13580,Wicklow,58789-00017-1,0,4380_7778208_1330101,4380_289 -4380_77958,290,4380_13581,Wicklow,58780-00015-1,0,4380_7778208_1330101,4380_289 -4380_77958,294,4380_13582,Wicklow,58784-00018-1,0,4380_7778208_1330101,4380_289 -4380_77958,295,4380_13583,Wicklow,58787-00019-1,0,4380_7778208_1330101,4380_289 -4380_77958,296,4380_13584,Wicklow,58782-00021-1,0,4380_7778208_1330101,4380_291 -4380_77958,285,4380_13592,Wicklow,59058-00009-1,0,4380_7778208_1330105,4380_289 -4380_77958,286,4380_13593,Wicklow,59062-00010-1,0,4380_7778208_1330105,4380_289 -4380_77958,297,4380_13594,Wicklow,58863-00008-1,0,4380_7778208_1330102,4380_290 -4380_77958,288,4380_13595,Wicklow,59060-00011-1,0,4380_7778208_1330105,4380_289 -4380_77958,287,4380_13596,Wicklow,59066-00012-1,0,4380_7778208_1330105,4380_289 -4380_77958,291,4380_13597,Wicklow,58861-00013-1,0,4380_7778208_1330102,4380_291 -4380_77958,289,4380_13598,Wicklow,59064-00014-1,0,4380_7778208_1330105,4380_289 -4380_77958,292,4380_13599,Wicklow,59063-00016-1,0,4380_7778208_1330105,4380_289 -4380_77946,288,4380_136,Dundalk,50405-00011-1,0,4380_7778208_1000914,4380_1 -4380_77958,293,4380_13600,Wicklow,59061-00017-1,0,4380_7778208_1330105,4380_289 -4380_77958,290,4380_13601,Wicklow,59059-00015-1,0,4380_7778208_1330105,4380_289 -4380_77958,294,4380_13602,Wicklow,59067-00018-1,0,4380_7778208_1330105,4380_289 -4380_77958,295,4380_13603,Wicklow,59065-00019-1,0,4380_7778208_1330105,4380_289 -4380_77958,296,4380_13604,Wicklow,58862-00021-1,0,4380_7778208_1330102,4380_291 -4380_77958,285,4380_13612,Wicklow,58952-00009-1,0,4380_7778208_1330103,4380_289 -4380_77958,286,4380_13613,Wicklow,58950-00010-1,0,4380_7778208_1330103,4380_289 -4380_77958,297,4380_13614,Wicklow,59008-00008-1,0,4380_7778208_1330104,4380_290 -4380_77958,288,4380_13615,Wicklow,58948-00011-1,0,4380_7778208_1330103,4380_289 -4380_77958,287,4380_13616,Wicklow,58954-00012-1,0,4380_7778208_1330103,4380_289 -4380_77958,291,4380_13617,Wicklow,59006-00013-1,0,4380_7778208_1330104,4380_291 -4380_77958,289,4380_13618,Wicklow,58956-00014-1,0,4380_7778208_1330103,4380_289 -4380_77958,292,4380_13619,Wicklow,58951-00016-1,0,4380_7778208_1330103,4380_289 -4380_77947,285,4380_1362,Drop Off,50794-00009-1,0,4380_7778208_1011103,4380_21 -4380_77958,293,4380_13620,Wicklow,58949-00017-1,0,4380_7778208_1330103,4380_289 -4380_77958,290,4380_13621,Wicklow,58953-00015-1,0,4380_7778208_1330103,4380_289 -4380_77958,294,4380_13622,Wicklow,58955-00018-1,0,4380_7778208_1330103,4380_289 -4380_77958,295,4380_13623,Wicklow,58957-00019-1,0,4380_7778208_1330103,4380_289 -4380_77958,296,4380_13624,Wicklow,59007-00021-1,0,4380_7778208_1330104,4380_291 -4380_77947,286,4380_1363,Drop Off,50788-00010-1,0,4380_7778208_1011103,4380_21 -4380_77958,285,4380_13632,Wicklow,58866-00009-1,0,4380_7778208_1330102,4380_289 -4380_77958,286,4380_13633,Wicklow,58864-00010-1,0,4380_7778208_1330102,4380_289 -4380_77958,297,4380_13634,Wicklow,59110-00008-1,0,4380_7778208_1330106,4380_290 -4380_77958,288,4380_13635,Wicklow,58872-00011-1,0,4380_7778208_1330102,4380_289 -4380_77958,287,4380_13636,Wicklow,58870-00012-1,0,4380_7778208_1330102,4380_289 -4380_77958,291,4380_13637,Wicklow,59111-00013-1,0,4380_7778208_1330106,4380_291 -4380_77958,289,4380_13638,Wicklow,58868-00014-1,0,4380_7778208_1330102,4380_289 -4380_77958,292,4380_13639,Wicklow,58865-00016-1,0,4380_7778208_1330102,4380_289 -4380_77947,288,4380_1364,Drop Off,50792-00011-1,0,4380_7778208_1011103,4380_21 -4380_77958,293,4380_13640,Wicklow,58873-00017-1,0,4380_7778208_1330102,4380_289 -4380_77958,290,4380_13641,Wicklow,58867-00015-1,0,4380_7778208_1330102,4380_289 -4380_77958,294,4380_13642,Wicklow,58871-00018-1,0,4380_7778208_1330102,4380_289 -4380_77958,295,4380_13643,Wicklow,58869-00019-1,0,4380_7778208_1330102,4380_289 -4380_77958,296,4380_13644,Wicklow,59112-00021-1,0,4380_7778208_1330106,4380_291 -4380_77947,287,4380_1365,Drop Off,50790-00012-1,0,4380_7778208_1011103,4380_21 -4380_77958,285,4380_13652,Wicklow,59011-00009-1,0,4380_7778208_1330104,4380_289 -4380_77958,286,4380_13653,Wicklow,59009-00010-1,0,4380_7778208_1330104,4380_289 -4380_77958,297,4380_13654,Wicklow,58960-00008-1,0,4380_7778208_1330103,4380_290 -4380_77958,288,4380_13655,Wicklow,59015-00011-1,0,4380_7778208_1330104,4380_289 -4380_77958,287,4380_13656,Wicklow,59013-00012-1,0,4380_7778208_1330104,4380_289 -4380_77958,291,4380_13657,Wicklow,58958-00013-1,0,4380_7778208_1330103,4380_291 -4380_77958,289,4380_13658,Wicklow,59017-00014-1,0,4380_7778208_1330104,4380_289 -4380_77958,292,4380_13659,Wicklow,59010-00016-1,0,4380_7778208_1330104,4380_289 -4380_77947,289,4380_1366,Drop Off,50786-00014-1,0,4380_7778208_1011103,4380_21 -4380_77958,293,4380_13660,Wicklow,59016-00017-1,0,4380_7778208_1330104,4380_289 -4380_77958,290,4380_13661,Wicklow,59012-00015-1,0,4380_7778208_1330104,4380_289 -4380_77958,294,4380_13662,Wicklow,59014-00018-1,0,4380_7778208_1330104,4380_289 -4380_77958,295,4380_13663,Wicklow,59018-00019-1,0,4380_7778208_1330104,4380_289 -4380_77958,296,4380_13664,Wicklow,58959-00021-1,0,4380_7778208_1330103,4380_291 -4380_77947,290,4380_1367,Drop Off,50795-00015-1,0,4380_7778208_1011103,4380_21 -4380_77958,285,4380_13672,Wicklow,59113-00009-1,0,4380_7778208_1330106,4380_289 -4380_77958,286,4380_13673,Wicklow,59121-00010-1,0,4380_7778208_1330106,4380_289 -4380_77958,297,4380_13674,Wicklow,58803-00008-1,0,4380_7778208_1330101,4380_290 -4380_77958,288,4380_13675,Wicklow,59115-00011-1,0,4380_7778208_1330106,4380_289 -4380_77958,287,4380_13676,Wicklow,59119-00012-1,0,4380_7778208_1330106,4380_289 -4380_77958,291,4380_13677,Wicklow,58804-00013-1,0,4380_7778208_1330101,4380_291 -4380_77958,289,4380_13678,Wicklow,59117-00014-1,0,4380_7778208_1330106,4380_289 -4380_77958,292,4380_13679,Wicklow,59122-00016-1,0,4380_7778208_1330106,4380_289 -4380_77947,291,4380_1368,Drop Off,50915-00013-1,0,4380_7778208_1011104,4380_23 -4380_77958,293,4380_13680,Wicklow,59116-00017-1,0,4380_7778208_1330106,4380_289 -4380_77958,290,4380_13681,Wicklow,59114-00015-1,0,4380_7778208_1330106,4380_289 -4380_77958,294,4380_13682,Wicklow,59120-00018-1,0,4380_7778208_1330106,4380_289 -4380_77958,295,4380_13683,Wicklow,59118-00019-1,0,4380_7778208_1330106,4380_289 -4380_77958,296,4380_13684,Wicklow,58805-00021-1,0,4380_7778208_1330101,4380_291 -4380_77947,292,4380_1369,Drop Off,50789-00016-1,0,4380_7778208_1011103,4380_21 -4380_77958,285,4380_13692,Wicklow,59241-00009-1,0,4380_7778208_1330108,4380_289 -4380_77958,286,4380_13693,Wicklow,59237-00010-1,0,4380_7778208_1330108,4380_289 -4380_77958,297,4380_13694,Wicklow,59081-00008-1,0,4380_7778208_1330105,4380_290 -4380_77958,288,4380_13695,Wicklow,59239-00011-1,0,4380_7778208_1330108,4380_289 -4380_77958,287,4380_13696,Wicklow,59235-00012-1,0,4380_7778208_1330108,4380_289 -4380_77958,291,4380_13697,Wicklow,59082-00013-1,0,4380_7778208_1330105,4380_291 -4380_77958,289,4380_13698,Wicklow,59243-00014-1,0,4380_7778208_1330108,4380_289 -4380_77958,292,4380_13699,Wicklow,59238-00016-1,0,4380_7778208_1330108,4380_289 -4380_77946,289,4380_137,Dundalk,50399-00014-1,0,4380_7778208_1000914,4380_1 -4380_77947,293,4380_1370,Drop Off,50793-00017-1,0,4380_7778208_1011103,4380_21 -4380_77958,293,4380_13700,Wicklow,59240-00017-1,0,4380_7778208_1330108,4380_289 -4380_77958,290,4380_13701,Wicklow,59242-00015-1,0,4380_7778208_1330108,4380_289 -4380_77958,294,4380_13702,Wicklow,59236-00018-1,0,4380_7778208_1330108,4380_289 -4380_77958,295,4380_13703,Wicklow,59244-00019-1,0,4380_7778208_1330108,4380_289 -4380_77958,296,4380_13704,Wicklow,59083-00021-1,0,4380_7778208_1330105,4380_291 -4380_77947,294,4380_1371,Drop Off,50791-00018-1,0,4380_7778208_1011103,4380_21 -4380_77958,285,4380_13712,Wicklow,58810-00009-1,0,4380_7778208_1330101,4380_289 -4380_77958,286,4380_13713,Wicklow,58808-00010-1,0,4380_7778208_1330101,4380_289 -4380_77958,297,4380_13714,Wicklow,58887-00008-1,0,4380_7778208_1330102,4380_290 -4380_77958,288,4380_13715,Wicklow,58812-00011-1,0,4380_7778208_1330101,4380_289 -4380_77958,287,4380_13716,Wicklow,58806-00012-1,0,4380_7778208_1330101,4380_289 -4380_77958,291,4380_13717,Wicklow,58888-00013-1,0,4380_7778208_1330102,4380_291 -4380_77958,289,4380_13718,Wicklow,58814-00014-1,0,4380_7778208_1330101,4380_289 -4380_77958,292,4380_13719,Wicklow,58809-00016-1,0,4380_7778208_1330101,4380_289 -4380_77947,295,4380_1372,Drop Off,50787-00019-1,0,4380_7778208_1011103,4380_21 -4380_77958,293,4380_13720,Wicklow,58813-00017-1,0,4380_7778208_1330101,4380_289 -4380_77958,290,4380_13721,Wicklow,58811-00015-1,0,4380_7778208_1330101,4380_289 -4380_77958,294,4380_13722,Wicklow,58807-00018-1,0,4380_7778208_1330101,4380_289 -4380_77958,295,4380_13723,Wicklow,58815-00019-1,0,4380_7778208_1330101,4380_289 -4380_77958,296,4380_13724,Wicklow,58889-00021-1,0,4380_7778208_1330102,4380_291 -4380_77947,296,4380_1373,Drop Off,50916-00021-1,0,4380_7778208_1011104,4380_23 -4380_77958,285,4380_13732,Wicklow,59297-00009-1,0,4380_7778208_1330109,4380_289 -4380_77958,286,4380_13733,Wicklow,59301-00010-1,0,4380_7778208_1330109,4380_289 -4380_77958,297,4380_13734,Wicklow,59034-00008-1,0,4380_7778208_1330104,4380_290 -4380_77958,288,4380_13735,Wicklow,59295-00011-1,0,4380_7778208_1330109,4380_289 -4380_77958,287,4380_13736,Wicklow,59303-00012-1,0,4380_7778208_1330109,4380_289 -4380_77958,291,4380_13737,Wicklow,59032-00013-1,0,4380_7778208_1330104,4380_291 -4380_77958,289,4380_13738,Wicklow,59299-00014-1,0,4380_7778208_1330109,4380_289 -4380_77958,292,4380_13739,Wicklow,59302-00016-1,0,4380_7778208_1330109,4380_289 -4380_77958,293,4380_13740,Wicklow,59296-00017-1,0,4380_7778208_1330109,4380_289 -4380_77958,290,4380_13741,Wicklow,59298-00015-1,0,4380_7778208_1330109,4380_289 -4380_77958,294,4380_13742,Wicklow,59304-00018-1,0,4380_7778208_1330109,4380_289 -4380_77958,295,4380_13743,Wicklow,59300-00019-1,0,4380_7778208_1330109,4380_289 -4380_77958,296,4380_13744,Wicklow,59033-00021-1,0,4380_7778208_1330104,4380_291 -4380_77958,285,4380_13750,Wicklow,58890-00009-1,0,4380_7778208_1330102,4380_289 -4380_77958,286,4380_13751,Wicklow,58898-00010-1,0,4380_7778208_1330102,4380_289 -4380_77958,288,4380_13752,Wicklow,58892-00011-1,0,4380_7778208_1330102,4380_289 -4380_77958,287,4380_13753,Wicklow,58896-00012-1,0,4380_7778208_1330102,4380_289 -4380_77958,289,4380_13754,Wicklow,58894-00014-1,0,4380_7778208_1330102,4380_289 -4380_77958,292,4380_13755,Wicklow,58899-00016-1,0,4380_7778208_1330102,4380_289 -4380_77958,293,4380_13756,Wicklow,58893-00017-1,0,4380_7778208_1330102,4380_289 -4380_77958,290,4380_13757,Wicklow,58891-00015-1,0,4380_7778208_1330102,4380_289 -4380_77958,294,4380_13758,Wicklow,58897-00018-1,0,4380_7778208_1330102,4380_289 -4380_77958,295,4380_13759,Wicklow,58895-00019-1,0,4380_7778208_1330102,4380_289 -4380_77958,285,4380_13767,Wicklow,58978-00009-1,0,4380_7778208_1330103,4380_289 -4380_77958,286,4380_13768,Wicklow,58980-00010-1,0,4380_7778208_1330103,4380_289 -4380_77958,297,4380_13769,Wicklow,58982-00008-1,0,4380_7778208_1330103,4380_290 -4380_77958,288,4380_13770,Wicklow,58974-00011-1,0,4380_7778208_1330103,4380_289 -4380_77958,287,4380_13771,Wicklow,58983-00012-1,0,4380_7778208_1330103,4380_289 -4380_77958,291,4380_13772,Wicklow,58976-00013-1,0,4380_7778208_1330103,4380_291 -4380_77958,289,4380_13773,Wicklow,58985-00014-1,0,4380_7778208_1330103,4380_289 -4380_77958,292,4380_13774,Wicklow,58981-00016-1,0,4380_7778208_1330103,4380_289 -4380_77958,293,4380_13775,Wicklow,58975-00017-1,0,4380_7778208_1330103,4380_289 -4380_77958,290,4380_13776,Wicklow,58979-00015-1,0,4380_7778208_1330103,4380_289 -4380_77958,294,4380_13777,Wicklow,58984-00018-1,0,4380_7778208_1330103,4380_289 -4380_77958,295,4380_13778,Wicklow,58986-00019-1,0,4380_7778208_1330103,4380_289 -4380_77958,296,4380_13779,Wicklow,58977-00021-1,0,4380_7778208_1330103,4380_291 -4380_77958,285,4380_13785,Wicklow,59093-00009-1,0,4380_7778208_1330105,4380_289 -4380_77958,286,4380_13786,Wicklow,59087-00010-1,0,4380_7778208_1330105,4380_289 -4380_77958,288,4380_13787,Wicklow,59091-00011-1,0,4380_7778208_1330105,4380_289 -4380_77958,287,4380_13788,Wicklow,59095-00012-1,0,4380_7778208_1330105,4380_289 -4380_77958,289,4380_13789,Wicklow,59089-00014-1,0,4380_7778208_1330105,4380_289 -4380_77958,292,4380_13790,Wicklow,59088-00016-1,0,4380_7778208_1330105,4380_289 -4380_77958,293,4380_13791,Wicklow,59092-00017-1,0,4380_7778208_1330105,4380_289 -4380_77958,290,4380_13792,Wicklow,59094-00015-1,0,4380_7778208_1330105,4380_289 -4380_77958,294,4380_13793,Wicklow,59096-00018-1,0,4380_7778208_1330105,4380_289 -4380_77958,295,4380_13794,Wicklow,59090-00019-1,0,4380_7778208_1330105,4380_289 -4380_77946,290,4380_138,Dundalk,50398-00015-1,0,4380_7778208_1000914,4380_1 -4380_77958,285,4380_13800,Wicklow,59185-00009-1,0,4380_7778208_1330107,4380_289 -4380_77958,286,4380_13801,Wicklow,59189-00010-1,0,4380_7778208_1330107,4380_289 -4380_77958,288,4380_13802,Wicklow,59193-00011-1,0,4380_7778208_1330107,4380_289 -4380_77958,287,4380_13803,Wicklow,59191-00012-1,0,4380_7778208_1330107,4380_289 -4380_77958,289,4380_13804,Wicklow,59187-00014-1,0,4380_7778208_1330107,4380_289 -4380_77958,292,4380_13805,Wicklow,59190-00016-1,0,4380_7778208_1330107,4380_289 -4380_77958,293,4380_13806,Wicklow,59194-00017-1,0,4380_7778208_1330107,4380_289 -4380_77958,290,4380_13807,Wicklow,59186-00015-1,0,4380_7778208_1330107,4380_289 -4380_77958,294,4380_13808,Wicklow,59192-00018-1,0,4380_7778208_1330107,4380_289 -4380_77958,295,4380_13809,Wicklow,59188-00019-1,0,4380_7778208_1330107,4380_289 -4380_77947,285,4380_1381,Drop Off,51290-00009-1,0,4380_7778208_1011108,4380_22 -4380_77958,285,4380_13817,Wicklow,59145-00009-1,0,4380_7778208_1330106,4380_289 -4380_77958,286,4380_13818,Wicklow,59141-00010-1,0,4380_7778208_1330106,4380_289 -4380_77958,297,4380_13819,Wicklow,59136-00008-1,0,4380_7778208_1330106,4380_290 -4380_77947,286,4380_1382,Drop Off,51292-00010-1,0,4380_7778208_1011108,4380_22 -4380_77958,288,4380_13820,Wicklow,59143-00011-1,0,4380_7778208_1330106,4380_289 -4380_77958,287,4380_13821,Wicklow,59137-00012-1,0,4380_7778208_1330106,4380_289 -4380_77958,291,4380_13822,Wicklow,59139-00013-1,0,4380_7778208_1330106,4380_291 -4380_77958,289,4380_13823,Wicklow,59147-00014-1,0,4380_7778208_1330106,4380_289 -4380_77958,292,4380_13824,Wicklow,59142-00016-1,0,4380_7778208_1330106,4380_289 -4380_77958,293,4380_13825,Wicklow,59144-00017-1,0,4380_7778208_1330106,4380_289 -4380_77958,290,4380_13826,Wicklow,59146-00015-1,0,4380_7778208_1330106,4380_289 -4380_77958,294,4380_13827,Wicklow,59138-00018-1,0,4380_7778208_1330106,4380_289 -4380_77958,295,4380_13828,Wicklow,59148-00019-1,0,4380_7778208_1330106,4380_289 -4380_77958,296,4380_13829,Wicklow,59140-00021-1,0,4380_7778208_1330106,4380_291 -4380_77947,297,4380_1383,Drop Off,50917-00008-1,0,4380_7778208_1011104,4380_24 -4380_77958,285,4380_13835,Wicklow,59041-00009-1,0,4380_7778208_1330104,4380_289 -4380_77958,286,4380_13836,Wicklow,59043-00010-1,0,4380_7778208_1330104,4380_289 -4380_77958,288,4380_13837,Wicklow,59037-00011-1,0,4380_7778208_1330104,4380_289 -4380_77958,287,4380_13838,Wicklow,59039-00012-1,0,4380_7778208_1330104,4380_289 -4380_77958,289,4380_13839,Wicklow,59035-00014-1,0,4380_7778208_1330104,4380_289 -4380_77947,288,4380_1384,Drop Off,51294-00011-1,0,4380_7778208_1011108,4380_22 -4380_77958,292,4380_13840,Wicklow,59044-00016-1,0,4380_7778208_1330104,4380_289 -4380_77958,293,4380_13841,Wicklow,59038-00017-1,0,4380_7778208_1330104,4380_289 -4380_77958,290,4380_13842,Wicklow,59042-00015-1,0,4380_7778208_1330104,4380_289 -4380_77958,294,4380_13843,Wicklow,59040-00018-1,0,4380_7778208_1330104,4380_289 -4380_77958,295,4380_13844,Wicklow,59036-00019-1,0,4380_7778208_1330104,4380_289 -4380_77947,287,4380_1385,Drop Off,51296-00012-1,0,4380_7778208_1011108,4380_22 -4380_77958,285,4380_13852,Wicklow,59257-00009-1,0,4380_7778208_1330108,4380_289 -4380_77958,286,4380_13853,Wicklow,59255-00010-1,0,4380_7778208_1330108,4380_289 -4380_77958,297,4380_13854,Wicklow,58831-00008-1,0,4380_7778208_1330101,4380_290 -4380_77958,288,4380_13855,Wicklow,59261-00011-1,0,4380_7778208_1330108,4380_289 -4380_77958,287,4380_13856,Wicklow,59259-00012-1,0,4380_7778208_1330108,4380_289 -4380_77958,291,4380_13857,Wicklow,58829-00013-1,0,4380_7778208_1330101,4380_291 -4380_77958,289,4380_13858,Wicklow,59263-00014-1,0,4380_7778208_1330108,4380_289 -4380_77958,292,4380_13859,Wicklow,59256-00016-1,0,4380_7778208_1330108,4380_289 -4380_77947,289,4380_1386,Drop Off,51298-00014-1,0,4380_7778208_1011108,4380_22 -4380_77958,293,4380_13860,Wicklow,59262-00017-1,0,4380_7778208_1330108,4380_289 -4380_77958,290,4380_13861,Wicklow,59258-00015-1,0,4380_7778208_1330108,4380_289 -4380_77958,294,4380_13862,Wicklow,59260-00018-1,0,4380_7778208_1330108,4380_289 -4380_77958,295,4380_13863,Wicklow,59264-00019-1,0,4380_7778208_1330108,4380_289 -4380_77958,296,4380_13864,Wicklow,58830-00021-1,0,4380_7778208_1330101,4380_291 -4380_77947,290,4380_1387,Drop Off,51291-00015-1,0,4380_7778208_1011108,4380_22 -4380_77958,285,4380_13872,Wicklow,58834-00009-1,0,4380_7778208_1330101,4380_289 -4380_77958,286,4380_13873,Wicklow,58838-00010-1,0,4380_7778208_1330101,4380_289 -4380_77958,297,4380_13874,Wicklow,58915-00008-1,0,4380_7778208_1330102,4380_290 -4380_77958,288,4380_13875,Wicklow,58840-00011-1,0,4380_7778208_1330101,4380_289 -4380_77958,287,4380_13876,Wicklow,58832-00012-1,0,4380_7778208_1330101,4380_289 -4380_77958,291,4380_13877,Wicklow,58913-00013-1,0,4380_7778208_1330102,4380_291 -4380_77958,289,4380_13878,Wicklow,58836-00014-1,0,4380_7778208_1330101,4380_289 -4380_77958,292,4380_13879,Wicklow,58839-00016-1,0,4380_7778208_1330101,4380_289 -4380_77947,291,4380_1388,Drop Off,51009-00013-1,0,4380_7778208_1011105,4380_26 -4380_77958,293,4380_13880,Wicklow,58841-00017-1,0,4380_7778208_1330101,4380_289 -4380_77958,290,4380_13881,Wicklow,58835-00015-1,0,4380_7778208_1330101,4380_289 -4380_77958,294,4380_13882,Wicklow,58833-00018-1,0,4380_7778208_1330101,4380_289 -4380_77958,295,4380_13883,Wicklow,58837-00019-1,0,4380_7778208_1330101,4380_289 -4380_77958,296,4380_13884,Wicklow,58914-00021-1,0,4380_7778208_1330102,4380_291 -4380_77947,292,4380_1389,Drop Off,51293-00016-1,0,4380_7778208_1011108,4380_22 -4380_77958,285,4380_13892,Wicklow,59321-00009-1,0,4380_7778208_1330109,4380_289 -4380_77958,286,4380_13893,Wicklow,59317-00010-1,0,4380_7778208_1330109,4380_289 -4380_77958,297,4380_13894,Wicklow,59097-00008-1,0,4380_7778208_1330105,4380_290 -4380_77958,288,4380_13895,Wicklow,59323-00011-1,0,4380_7778208_1330109,4380_289 -4380_77958,287,4380_13896,Wicklow,59319-00012-1,0,4380_7778208_1330109,4380_289 -4380_77958,291,4380_13897,Wicklow,59098-00013-1,0,4380_7778208_1330105,4380_291 -4380_77958,289,4380_13898,Wicklow,59315-00014-1,0,4380_7778208_1330109,4380_289 -4380_77958,292,4380_13899,Wicklow,59318-00016-1,0,4380_7778208_1330109,4380_289 -4380_77946,291,4380_139,Dundalk,50259-00013-1,0,4380_7778208_1000911,4380_5 -4380_77947,293,4380_1390,Drop Off,51295-00017-1,0,4380_7778208_1011108,4380_22 -4380_77958,293,4380_13900,Wicklow,59324-00017-1,0,4380_7778208_1330109,4380_289 -4380_77958,290,4380_13901,Wicklow,59322-00015-1,0,4380_7778208_1330109,4380_289 -4380_77958,294,4380_13902,Wicklow,59320-00018-1,0,4380_7778208_1330109,4380_289 -4380_77958,295,4380_13903,Wicklow,59316-00019-1,0,4380_7778208_1330109,4380_289 -4380_77958,296,4380_13904,Wicklow,59099-00021-1,0,4380_7778208_1330105,4380_291 -4380_77947,294,4380_1391,Drop Off,51297-00018-1,0,4380_7778208_1011108,4380_22 -4380_77958,285,4380_13912,Wicklow,58920-00009-1,0,4380_7778208_1330102,4380_289 -4380_77958,286,4380_13913,Wicklow,58918-00010-1,0,4380_7778208_1330102,4380_289 -4380_77958,297,4380_13914,Wicklow,58990-00008-1,0,4380_7778208_1330103,4380_290 -4380_77958,288,4380_13915,Wicklow,58922-00011-1,0,4380_7778208_1330102,4380_289 -4380_77958,287,4380_13916,Wicklow,58916-00012-1,0,4380_7778208_1330102,4380_289 -4380_77958,291,4380_13917,Wicklow,58991-00013-1,0,4380_7778208_1330103,4380_291 -4380_77958,289,4380_13918,Wicklow,58924-00014-1,0,4380_7778208_1330102,4380_289 -4380_77958,292,4380_13919,Wicklow,58919-00016-1,0,4380_7778208_1330102,4380_289 -4380_77947,295,4380_1392,Drop Off,51299-00019-1,0,4380_7778208_1011108,4380_22 -4380_77958,293,4380_13920,Wicklow,58923-00017-1,0,4380_7778208_1330102,4380_289 -4380_77958,290,4380_13921,Wicklow,58921-00015-1,0,4380_7778208_1330102,4380_289 -4380_77958,294,4380_13922,Wicklow,58917-00018-1,0,4380_7778208_1330102,4380_289 -4380_77958,295,4380_13923,Wicklow,58925-00019-1,0,4380_7778208_1330102,4380_289 -4380_77958,296,4380_13924,Wicklow,58992-00021-1,0,4380_7778208_1330103,4380_291 -4380_77947,296,4380_1393,Drop Off,51010-00021-1,0,4380_7778208_1011105,4380_26 -4380_77958,285,4380_13932,Wicklow,59207-00009-1,0,4380_7778208_1330107,4380_289 -4380_77958,286,4380_13933,Wicklow,59213-00010-1,0,4380_7778208_1330107,4380_289 -4380_77958,297,4380_13934,Wicklow,59164-00008-1,0,4380_7778208_1330106,4380_290 -4380_77958,288,4380_13935,Wicklow,59205-00011-1,0,4380_7778208_1330107,4380_289 -4380_77958,287,4380_13936,Wicklow,59211-00012-1,0,4380_7778208_1330107,4380_289 -4380_77958,291,4380_13937,Wicklow,59162-00013-1,0,4380_7778208_1330106,4380_291 -4380_77958,289,4380_13938,Wicklow,59209-00014-1,0,4380_7778208_1330107,4380_289 -4380_77958,292,4380_13939,Wicklow,59214-00016-1,0,4380_7778208_1330107,4380_289 -4380_77958,293,4380_13940,Wicklow,59206-00017-1,0,4380_7778208_1330107,4380_289 -4380_77958,290,4380_13941,Wicklow,59208-00015-1,0,4380_7778208_1330107,4380_289 -4380_77958,294,4380_13942,Wicklow,59212-00018-1,0,4380_7778208_1330107,4380_289 -4380_77958,295,4380_13943,Wicklow,59210-00019-1,0,4380_7778208_1330107,4380_289 -4380_77958,296,4380_13944,Wicklow,59163-00021-1,0,4380_7778208_1330106,4380_291 -4380_77958,285,4380_13952,Wicklow,59167-00009-1,0,4380_7778208_1330106,4380_289 -4380_77958,286,4380_13953,Wicklow,59165-00010-1,0,4380_7778208_1330106,4380_289 -4380_77958,297,4380_13954,Wicklow,58845-00008-1,0,4380_7778208_1330101,4380_290 -4380_77958,288,4380_13955,Wicklow,59171-00011-1,0,4380_7778208_1330106,4380_289 -4380_77958,287,4380_13956,Wicklow,59173-00012-1,0,4380_7778208_1330106,4380_289 -4380_77958,291,4380_13957,Wicklow,58846-00013-1,0,4380_7778208_1330101,4380_291 -4380_77958,289,4380_13958,Wicklow,59169-00014-1,0,4380_7778208_1330106,4380_289 -4380_77958,292,4380_13959,Wicklow,59166-00016-1,0,4380_7778208_1330106,4380_289 -4380_77958,293,4380_13960,Wicklow,59172-00017-1,0,4380_7778208_1330106,4380_289 -4380_77958,290,4380_13961,Wicklow,59168-00015-1,0,4380_7778208_1330106,4380_289 -4380_77958,294,4380_13962,Wicklow,59174-00018-1,0,4380_7778208_1330106,4380_289 -4380_77958,295,4380_13963,Wicklow,59170-00019-1,0,4380_7778208_1330106,4380_289 -4380_77958,296,4380_13964,Wicklow,58847-00021-1,0,4380_7778208_1330101,4380_291 -4380_77958,285,4380_13972,Wicklow,59277-00009-1,0,4380_7778208_1330108,4380_289 -4380_77958,286,4380_13973,Wicklow,59275-00010-1,0,4380_7778208_1330108,4380_289 -4380_77958,297,4380_13974,Wicklow,58929-00008-1,0,4380_7778208_1330102,4380_290 -4380_77958,288,4380_13975,Wicklow,59283-00011-1,0,4380_7778208_1330108,4380_289 -4380_77958,287,4380_13976,Wicklow,59281-00012-1,0,4380_7778208_1330108,4380_289 -4380_77958,291,4380_13977,Wicklow,58930-00013-1,0,4380_7778208_1330102,4380_291 -4380_77958,289,4380_13978,Wicklow,59279-00014-1,0,4380_7778208_1330108,4380_289 -4380_77958,292,4380_13979,Wicklow,59276-00016-1,0,4380_7778208_1330108,4380_289 -4380_77958,293,4380_13980,Wicklow,59284-00017-1,0,4380_7778208_1330108,4380_289 -4380_77958,290,4380_13981,Wicklow,59278-00015-1,0,4380_7778208_1330108,4380_289 -4380_77958,294,4380_13982,Wicklow,59282-00018-1,0,4380_7778208_1330108,4380_289 -4380_77958,295,4380_13983,Wicklow,59280-00019-1,0,4380_7778208_1330108,4380_289 -4380_77958,296,4380_13984,Wicklow,58931-00021-1,0,4380_7778208_1330102,4380_291 -4380_77958,285,4380_13992,Dublin,58775-00009-1,1,4380_7778208_1330101,4380_292 -4380_77958,286,4380_13993,Dublin,58773-00010-1,1,4380_7778208_1330101,4380_292 -4380_77958,297,4380_13994,Dublin,58768-00008-1,1,4380_7778208_1330101,4380_293 -4380_77958,288,4380_13995,Dublin,58771-00011-1,1,4380_7778208_1330101,4380_292 -4380_77958,287,4380_13996,Dublin,58764-00012-1,1,4380_7778208_1330101,4380_292 -4380_77958,291,4380_13997,Dublin,58769-00013-1,1,4380_7778208_1330101,4380_294 -4380_77958,289,4380_13998,Dublin,58766-00014-1,1,4380_7778208_1330101,4380_292 -4380_77958,292,4380_13999,Dublin,58774-00016-1,1,4380_7778208_1330101,4380_292 -4380_77946,292,4380_14,Dundalk,50448-00016-1,0,4380_7778208_1000915,4380_1 -4380_77946,292,4380_140,Dundalk,50404-00016-1,0,4380_7778208_1000914,4380_1 -4380_77947,285,4380_1400,Drop Off,51013-00009-1,0,4380_7778208_1011105,4380_22 -4380_77958,293,4380_14000,Dublin,58772-00017-1,1,4380_7778208_1330101,4380_292 -4380_77958,290,4380_14001,Dublin,58776-00015-1,1,4380_7778208_1330101,4380_292 -4380_77958,294,4380_14002,Dublin,58765-00018-1,1,4380_7778208_1330101,4380_292 -4380_77958,295,4380_14003,Dublin,58767-00019-1,1,4380_7778208_1330101,4380_292 -4380_77958,296,4380_14004,Dublin,58770-00021-1,1,4380_7778208_1330101,4380_294 -4380_77947,286,4380_1401,Drop Off,51017-00010-1,0,4380_7778208_1011105,4380_22 -4380_77958,285,4380_14010,Dublin,59056-00009-1,1,4380_7778208_1330105,4380_292 -4380_77958,286,4380_14011,Dublin,59054-00010-1,1,4380_7778208_1330105,4380_292 -4380_77958,288,4380_14012,Dublin,59052-00011-1,1,4380_7778208_1330105,4380_292 -4380_77958,287,4380_14013,Dublin,59048-00012-1,1,4380_7778208_1330105,4380_292 -4380_77958,289,4380_14014,Dublin,59050-00014-1,1,4380_7778208_1330105,4380_292 -4380_77958,292,4380_14015,Dublin,59055-00016-1,1,4380_7778208_1330105,4380_292 -4380_77958,293,4380_14016,Dublin,59053-00017-1,1,4380_7778208_1330105,4380_292 -4380_77958,290,4380_14017,Dublin,59057-00015-1,1,4380_7778208_1330105,4380_292 -4380_77958,294,4380_14018,Dublin,59049-00018-1,1,4380_7778208_1330105,4380_292 -4380_77958,295,4380_14019,Dublin,59051-00019-1,1,4380_7778208_1330105,4380_292 -4380_77947,288,4380_1402,Drop Off,51015-00011-1,0,4380_7778208_1011105,4380_22 -4380_77958,285,4380_14027,Dublin,58940-00009-1,1,4380_7778208_1330103,4380_292 -4380_77958,286,4380_14028,Dublin,58938-00010-1,1,4380_7778208_1330103,4380_292 -4380_77958,297,4380_14029,Dublin,58850-00008-1,1,4380_7778208_1330102,4380_293 -4380_77947,287,4380_1403,Drop Off,51019-00012-1,0,4380_7778208_1011105,4380_22 -4380_77958,288,4380_14030,Dublin,58936-00011-1,1,4380_7778208_1330103,4380_292 -4380_77958,287,4380_14031,Dublin,58932-00012-1,1,4380_7778208_1330103,4380_292 -4380_77958,291,4380_14032,Dublin,58848-00013-1,1,4380_7778208_1330102,4380_294 -4380_77958,289,4380_14033,Dublin,58934-00014-1,1,4380_7778208_1330103,4380_292 -4380_77958,292,4380_14034,Dublin,58939-00016-1,1,4380_7778208_1330103,4380_292 -4380_77958,293,4380_14035,Dublin,58937-00017-1,1,4380_7778208_1330103,4380_292 -4380_77958,290,4380_14036,Dublin,58941-00015-1,1,4380_7778208_1330103,4380_292 -4380_77958,294,4380_14037,Dublin,58933-00018-1,1,4380_7778208_1330103,4380_292 -4380_77958,295,4380_14038,Dublin,58935-00019-1,1,4380_7778208_1330103,4380_292 -4380_77958,296,4380_14039,Dublin,58849-00021-1,1,4380_7778208_1330102,4380_294 -4380_77947,289,4380_1404,Drop Off,51011-00014-1,0,4380_7778208_1011105,4380_22 -4380_77958,285,4380_14045,Dublin,58859-00009-1,1,4380_7778208_1330102,4380_292 -4380_77958,286,4380_14046,Dublin,58857-00010-1,1,4380_7778208_1330102,4380_292 -4380_77958,288,4380_14047,Dublin,58855-00011-1,1,4380_7778208_1330102,4380_292 -4380_77958,287,4380_14048,Dublin,58853-00012-1,1,4380_7778208_1330102,4380_292 -4380_77958,289,4380_14049,Dublin,58851-00014-1,1,4380_7778208_1330102,4380_292 -4380_77947,290,4380_1405,Drop Off,51014-00015-1,0,4380_7778208_1011105,4380_22 -4380_77958,292,4380_14050,Dublin,58858-00016-1,1,4380_7778208_1330102,4380_292 -4380_77958,293,4380_14051,Dublin,58856-00017-1,1,4380_7778208_1330102,4380_292 -4380_77958,290,4380_14052,Dublin,58860-00015-1,1,4380_7778208_1330102,4380_292 -4380_77958,294,4380_14053,Dublin,58854-00018-1,1,4380_7778208_1330102,4380_292 -4380_77958,295,4380_14054,Dublin,58852-00019-1,1,4380_7778208_1330102,4380_292 -4380_77947,291,4380_1406,Drop Off,51112-00013-1,0,4380_7778208_1011106,4380_24 -4380_77958,285,4380_14060,Dublin,59104-00009-1,1,4380_7778208_1330106,4380_292 -4380_77958,286,4380_14061,Dublin,59106-00010-1,1,4380_7778208_1330106,4380_292 -4380_77958,288,4380_14062,Dublin,59100-00011-1,1,4380_7778208_1330106,4380_292 -4380_77958,287,4380_14063,Dublin,59108-00012-1,1,4380_7778208_1330106,4380_292 -4380_77958,289,4380_14064,Dublin,59102-00014-1,1,4380_7778208_1330106,4380_292 -4380_77958,292,4380_14065,Dublin,59107-00016-1,1,4380_7778208_1330106,4380_292 -4380_77958,293,4380_14066,Dublin,59101-00017-1,1,4380_7778208_1330106,4380_292 -4380_77958,290,4380_14067,Dublin,59105-00015-1,1,4380_7778208_1330106,4380_292 -4380_77958,294,4380_14068,Dublin,59109-00018-1,1,4380_7778208_1330106,4380_292 -4380_77958,295,4380_14069,Dublin,59103-00019-1,1,4380_7778208_1330106,4380_292 -4380_77947,292,4380_1407,Drop Off,51018-00016-1,0,4380_7778208_1011105,4380_22 -4380_77958,285,4380_14077,Dublin,59181-00009-1,1,4380_7778208_1330107,4380_292 -4380_77958,286,4380_14078,Dublin,59179-00010-1,1,4380_7778208_1330107,4380_292 -4380_77958,297,4380_14079,Dublin,58995-00008-1,1,4380_7778208_1330104,4380_293 -4380_77947,293,4380_1408,Drop Off,51016-00017-1,0,4380_7778208_1011105,4380_22 -4380_77958,288,4380_14080,Dublin,59175-00011-1,1,4380_7778208_1330107,4380_292 -4380_77958,287,4380_14081,Dublin,59183-00012-1,1,4380_7778208_1330107,4380_292 -4380_77958,291,4380_14082,Dublin,58993-00013-1,1,4380_7778208_1330104,4380_294 -4380_77958,289,4380_14083,Dublin,59177-00014-1,1,4380_7778208_1330107,4380_292 -4380_77958,292,4380_14084,Dublin,59180-00016-1,1,4380_7778208_1330107,4380_292 -4380_77958,293,4380_14085,Dublin,59176-00017-1,1,4380_7778208_1330107,4380_292 -4380_77958,290,4380_14086,Dublin,59182-00015-1,1,4380_7778208_1330107,4380_292 -4380_77958,294,4380_14087,Dublin,59184-00018-1,1,4380_7778208_1330107,4380_292 -4380_77958,295,4380_14088,Dublin,59178-00019-1,1,4380_7778208_1330107,4380_292 -4380_77958,296,4380_14089,Dublin,58994-00021-1,1,4380_7778208_1330104,4380_294 -4380_77947,294,4380_1409,Drop Off,51020-00018-1,0,4380_7778208_1011105,4380_22 -4380_77958,285,4380_14095,Dublin,59002-00009-1,1,4380_7778208_1330104,4380_292 -4380_77958,286,4380_14096,Dublin,59004-00010-1,1,4380_7778208_1330104,4380_292 -4380_77958,288,4380_14097,Dublin,59000-00011-1,1,4380_7778208_1330104,4380_292 -4380_77958,287,4380_14098,Dublin,58998-00012-1,1,4380_7778208_1330104,4380_292 -4380_77958,289,4380_14099,Dublin,58996-00014-1,1,4380_7778208_1330104,4380_292 -4380_77946,293,4380_141,Dundalk,50406-00017-1,0,4380_7778208_1000914,4380_1 -4380_77947,295,4380_1410,Drop Off,51012-00019-1,0,4380_7778208_1011105,4380_22 -4380_77958,292,4380_14100,Dublin,59005-00016-1,1,4380_7778208_1330104,4380_292 -4380_77958,293,4380_14101,Dublin,59001-00017-1,1,4380_7778208_1330104,4380_292 -4380_77958,290,4380_14102,Dublin,59003-00015-1,1,4380_7778208_1330104,4380_292 -4380_77958,294,4380_14103,Dublin,58999-00018-1,1,4380_7778208_1330104,4380_292 -4380_77958,295,4380_14104,Dublin,58997-00019-1,1,4380_7778208_1330104,4380_292 -4380_77947,296,4380_1411,Drop Off,51113-00021-1,0,4380_7778208_1011106,4380_24 -4380_77958,285,4380_14112,Dublin,59285-00009-1,1,4380_7778208_1330109,4380_292 -4380_77958,286,4380_14113,Dublin,59289-00010-1,1,4380_7778208_1330109,4380_292 -4380_77958,297,4380_14114,Dublin,58947-00008-1,1,4380_7778208_1330103,4380_293 -4380_77958,288,4380_14115,Dublin,59291-00011-1,1,4380_7778208_1330109,4380_292 -4380_77958,287,4380_14116,Dublin,59293-00012-1,1,4380_7778208_1330109,4380_292 -4380_77958,291,4380_14117,Dublin,58945-00013-1,1,4380_7778208_1330103,4380_294 -4380_77958,289,4380_14118,Dublin,59287-00014-1,1,4380_7778208_1330109,4380_292 -4380_77958,292,4380_14119,Dublin,59290-00016-1,1,4380_7778208_1330109,4380_292 -4380_77958,293,4380_14120,Dublin,59292-00017-1,1,4380_7778208_1330109,4380_292 -4380_77958,290,4380_14121,Dublin,59286-00015-1,1,4380_7778208_1330109,4380_292 -4380_77958,294,4380_14122,Dublin,59294-00018-1,1,4380_7778208_1330109,4380_292 -4380_77958,295,4380_14123,Dublin,59288-00019-1,1,4380_7778208_1330109,4380_292 -4380_77958,296,4380_14124,Dublin,58946-00021-1,1,4380_7778208_1330103,4380_294 -4380_77958,285,4380_14132,Dublin,59231-00009-1,1,4380_7778208_1330108,4380_292 -4380_77958,286,4380_14133,Dublin,59227-00010-1,1,4380_7778208_1330108,4380_292 -4380_77958,297,4380_14134,Dublin,59070-00008-1,1,4380_7778208_1330105,4380_293 -4380_77958,288,4380_14135,Dublin,59229-00011-1,1,4380_7778208_1330108,4380_292 -4380_77958,287,4380_14136,Dublin,59225-00012-1,1,4380_7778208_1330108,4380_292 -4380_77958,291,4380_14137,Dublin,59068-00013-1,1,4380_7778208_1330105,4380_294 -4380_77958,289,4380_14138,Dublin,59233-00014-1,1,4380_7778208_1330108,4380_292 -4380_77958,292,4380_14139,Dublin,59228-00016-1,1,4380_7778208_1330108,4380_292 -4380_77958,293,4380_14140,Dublin,59230-00017-1,1,4380_7778208_1330108,4380_292 -4380_77958,290,4380_14141,Dublin,59232-00015-1,1,4380_7778208_1330108,4380_292 -4380_77958,294,4380_14142,Dublin,59226-00018-1,1,4380_7778208_1330108,4380_292 -4380_77958,295,4380_14143,Dublin,59234-00019-1,1,4380_7778208_1330108,4380_292 -4380_77958,296,4380_14144,Dublin,59069-00021-1,1,4380_7778208_1330105,4380_294 -4380_77958,285,4380_14152,Dublin,58792-00009-1,1,4380_7778208_1330101,4380_292 -4380_77958,286,4380_14153,Dublin,58790-00010-1,1,4380_7778208_1330101,4380_292 -4380_77958,297,4380_14154,Dublin,58800-00008-1,1,4380_7778208_1330101,4380_293 -4380_77958,288,4380_14155,Dublin,58798-00011-1,1,4380_7778208_1330101,4380_292 -4380_77958,287,4380_14156,Dublin,58794-00012-1,1,4380_7778208_1330101,4380_292 -4380_77958,291,4380_14157,Dublin,58796-00013-1,1,4380_7778208_1330101,4380_294 -4380_77958,289,4380_14158,Dublin,58801-00014-1,1,4380_7778208_1330101,4380_292 -4380_77958,292,4380_14159,Dublin,58791-00016-1,1,4380_7778208_1330101,4380_292 -4380_77958,293,4380_14160,Dublin,58799-00017-1,1,4380_7778208_1330101,4380_292 -4380_77958,290,4380_14161,Dublin,58793-00015-1,1,4380_7778208_1330101,4380_292 -4380_77958,294,4380_14162,Dublin,58795-00018-1,1,4380_7778208_1330101,4380_292 -4380_77958,295,4380_14163,Dublin,58802-00019-1,1,4380_7778208_1330101,4380_292 -4380_77958,296,4380_14164,Dublin,58797-00021-1,1,4380_7778208_1330101,4380_294 -4380_77958,285,4380_14172,Dublin,59073-00009-1,1,4380_7778208_1330105,4380_292 -4380_77958,286,4380_14173,Dublin,59077-00010-1,1,4380_7778208_1330105,4380_292 -4380_77958,297,4380_14174,Dublin,58876-00008-1,1,4380_7778208_1330102,4380_293 -4380_77958,288,4380_14175,Dublin,59075-00011-1,1,4380_7778208_1330105,4380_292 -4380_77958,287,4380_14176,Dublin,59079-00012-1,1,4380_7778208_1330105,4380_292 -4380_77958,291,4380_14177,Dublin,58874-00013-1,1,4380_7778208_1330102,4380_294 -4380_77958,289,4380_14178,Dublin,59071-00014-1,1,4380_7778208_1330105,4380_292 -4380_77958,292,4380_14179,Dublin,59078-00016-1,1,4380_7778208_1330105,4380_292 -4380_77958,293,4380_14180,Dublin,59076-00017-1,1,4380_7778208_1330105,4380_292 -4380_77958,290,4380_14181,Dublin,59074-00015-1,1,4380_7778208_1330105,4380_292 -4380_77958,294,4380_14182,Dublin,59080-00018-1,1,4380_7778208_1330105,4380_292 -4380_77958,295,4380_14183,Dublin,59072-00019-1,1,4380_7778208_1330105,4380_292 -4380_77958,296,4380_14184,Dublin,58875-00021-1,1,4380_7778208_1330102,4380_294 -4380_77947,285,4380_1419,Drop Off,51114-00009-1,0,4380_7778208_1011106,4380_22 -4380_77958,285,4380_14192,Dublin,58969-00009-1,1,4380_7778208_1330103,4380_292 -4380_77958,286,4380_14193,Dublin,58961-00010-1,1,4380_7778208_1330103,4380_292 -4380_77958,297,4380_14194,Dublin,59019-00008-1,1,4380_7778208_1330104,4380_293 -4380_77958,288,4380_14195,Dublin,58965-00011-1,1,4380_7778208_1330103,4380_292 -4380_77958,287,4380_14196,Dublin,58967-00012-1,1,4380_7778208_1330103,4380_292 -4380_77958,291,4380_14197,Dublin,59020-00013-1,1,4380_7778208_1330104,4380_294 -4380_77958,289,4380_14198,Dublin,58963-00014-1,1,4380_7778208_1330103,4380_292 -4380_77958,292,4380_14199,Dublin,58962-00016-1,1,4380_7778208_1330103,4380_292 -4380_77946,294,4380_142,Dundalk,50402-00018-1,0,4380_7778208_1000914,4380_1 -4380_77947,286,4380_1420,Drop Off,51118-00010-1,0,4380_7778208_1011106,4380_22 -4380_77958,293,4380_14200,Dublin,58966-00017-1,1,4380_7778208_1330103,4380_292 -4380_77958,290,4380_14201,Dublin,58970-00015-1,1,4380_7778208_1330103,4380_292 -4380_77958,294,4380_14202,Dublin,58968-00018-1,1,4380_7778208_1330103,4380_292 -4380_77958,295,4380_14203,Dublin,58964-00019-1,1,4380_7778208_1330103,4380_292 -4380_77958,296,4380_14204,Dublin,59021-00021-1,1,4380_7778208_1330104,4380_294 -4380_77947,297,4380_1421,Drop Off,50585-00008-1,0,4380_7778208_1011101,4380_24 -4380_77958,285,4380_14212,Dublin,58879-00009-1,1,4380_7778208_1330102,4380_292 -4380_77958,286,4380_14213,Dublin,58883-00010-1,1,4380_7778208_1330102,4380_292 -4380_77958,297,4380_14214,Dublin,59125-00008-1,1,4380_7778208_1330106,4380_293 -4380_77958,288,4380_14215,Dublin,58881-00011-1,1,4380_7778208_1330102,4380_292 -4380_77958,287,4380_14216,Dublin,58877-00012-1,1,4380_7778208_1330102,4380_292 -4380_77958,291,4380_14217,Dublin,59123-00013-1,1,4380_7778208_1330106,4380_294 -4380_77958,289,4380_14218,Dublin,58885-00014-1,1,4380_7778208_1330102,4380_292 -4380_77958,292,4380_14219,Dublin,58884-00016-1,1,4380_7778208_1330102,4380_292 -4380_77947,288,4380_1422,Drop Off,51122-00011-1,0,4380_7778208_1011106,4380_22 -4380_77958,293,4380_14220,Dublin,58882-00017-1,1,4380_7778208_1330102,4380_292 -4380_77958,290,4380_14221,Dublin,58880-00015-1,1,4380_7778208_1330102,4380_292 -4380_77958,294,4380_14222,Dublin,58878-00018-1,1,4380_7778208_1330102,4380_292 -4380_77958,295,4380_14223,Dublin,58886-00019-1,1,4380_7778208_1330102,4380_292 -4380_77958,296,4380_14224,Dublin,59124-00021-1,1,4380_7778208_1330106,4380_294 -4380_77947,287,4380_1423,Drop Off,51120-00012-1,0,4380_7778208_1011106,4380_22 -4380_77958,285,4380_14232,Dublin,59028-00009-1,1,4380_7778208_1330104,4380_292 -4380_77958,286,4380_14233,Dublin,59024-00010-1,1,4380_7778208_1330104,4380_292 -4380_77958,297,4380_14234,Dublin,58973-00008-1,1,4380_7778208_1330103,4380_293 -4380_77958,288,4380_14235,Dublin,59030-00011-1,1,4380_7778208_1330104,4380_292 -4380_77958,287,4380_14236,Dublin,59026-00012-1,1,4380_7778208_1330104,4380_292 -4380_77958,291,4380_14237,Dublin,58971-00013-1,1,4380_7778208_1330103,4380_294 -4380_77958,289,4380_14238,Dublin,59022-00014-1,1,4380_7778208_1330104,4380_292 -4380_77958,292,4380_14239,Dublin,59025-00016-1,1,4380_7778208_1330104,4380_292 -4380_77947,289,4380_1424,Drop Off,51116-00014-1,0,4380_7778208_1011106,4380_22 -4380_77958,293,4380_14240,Dublin,59031-00017-1,1,4380_7778208_1330104,4380_292 -4380_77958,290,4380_14241,Dublin,59029-00015-1,1,4380_7778208_1330104,4380_292 -4380_77958,294,4380_14242,Dublin,59027-00018-1,1,4380_7778208_1330104,4380_292 -4380_77958,295,4380_14243,Dublin,59023-00019-1,1,4380_7778208_1330104,4380_292 -4380_77958,296,4380_14244,Dublin,58972-00021-1,1,4380_7778208_1330103,4380_294 -4380_77947,290,4380_1425,Drop Off,51115-00015-1,0,4380_7778208_1011106,4380_22 -4380_77958,285,4380_14252,Dublin,59126-00009-1,1,4380_7778208_1330106,4380_292 -4380_77958,286,4380_14253,Dublin,59128-00010-1,1,4380_7778208_1330106,4380_292 -4380_77958,297,4380_14254,Dublin,58816-00008-1,1,4380_7778208_1330101,4380_293 -4380_77958,288,4380_14255,Dublin,59132-00011-1,1,4380_7778208_1330106,4380_292 -4380_77958,287,4380_14256,Dublin,59130-00012-1,1,4380_7778208_1330106,4380_292 -4380_77958,291,4380_14257,Dublin,58817-00013-1,1,4380_7778208_1330101,4380_294 -4380_77958,289,4380_14258,Dublin,59134-00014-1,1,4380_7778208_1330106,4380_292 -4380_77958,292,4380_14259,Dublin,59129-00016-1,1,4380_7778208_1330106,4380_292 -4380_77947,291,4380_1426,Drop Off,51300-00013-1,0,4380_7778208_1011108,4380_26 -4380_77958,293,4380_14260,Dublin,59133-00017-1,1,4380_7778208_1330106,4380_292 -4380_77958,290,4380_14261,Dublin,59127-00015-1,1,4380_7778208_1330106,4380_292 -4380_77958,294,4380_14262,Dublin,59131-00018-1,1,4380_7778208_1330106,4380_292 -4380_77958,295,4380_14263,Dublin,59135-00019-1,1,4380_7778208_1330106,4380_292 -4380_77958,296,4380_14264,Dublin,58818-00021-1,1,4380_7778208_1330101,4380_294 -4380_77947,292,4380_1427,Drop Off,51119-00016-1,0,4380_7778208_1011106,4380_22 -4380_77958,285,4380_14272,Dublin,59253-00009-1,1,4380_7778208_1330108,4380_292 -4380_77958,286,4380_14273,Dublin,59251-00010-1,1,4380_7778208_1330108,4380_292 -4380_77958,297,4380_14274,Dublin,59084-00008-1,1,4380_7778208_1330105,4380_293 -4380_77958,288,4380_14275,Dublin,59247-00011-1,1,4380_7778208_1330108,4380_292 -4380_77958,287,4380_14276,Dublin,59245-00012-1,1,4380_7778208_1330108,4380_292 -4380_77958,291,4380_14277,Dublin,59085-00013-1,1,4380_7778208_1330105,4380_294 -4380_77958,289,4380_14278,Dublin,59249-00014-1,1,4380_7778208_1330108,4380_292 -4380_77958,292,4380_14279,Dublin,59252-00016-1,1,4380_7778208_1330108,4380_292 -4380_77947,293,4380_1428,Drop Off,51123-00017-1,0,4380_7778208_1011106,4380_22 -4380_77958,293,4380_14280,Dublin,59248-00017-1,1,4380_7778208_1330108,4380_292 -4380_77958,290,4380_14281,Dublin,59254-00015-1,1,4380_7778208_1330108,4380_292 -4380_77958,294,4380_14282,Dublin,59246-00018-1,1,4380_7778208_1330108,4380_292 -4380_77958,295,4380_14283,Dublin,59250-00019-1,1,4380_7778208_1330108,4380_292 -4380_77958,296,4380_14284,Dublin,59086-00021-1,1,4380_7778208_1330105,4380_294 -4380_77947,294,4380_1429,Drop Off,51121-00018-1,0,4380_7778208_1011106,4380_22 -4380_77958,285,4380_14292,Dublin,58827-00009-1,1,4380_7778208_1330101,4380_292 -4380_77958,286,4380_14293,Dublin,58825-00010-1,1,4380_7778208_1330101,4380_292 -4380_77958,297,4380_14294,Dublin,58900-00008-1,1,4380_7778208_1330102,4380_293 -4380_77958,288,4380_14295,Dublin,58823-00011-1,1,4380_7778208_1330101,4380_292 -4380_77958,287,4380_14296,Dublin,58821-00012-1,1,4380_7778208_1330101,4380_292 -4380_77958,291,4380_14297,Dublin,58901-00013-1,1,4380_7778208_1330102,4380_294 -4380_77958,289,4380_14298,Dublin,58819-00014-1,1,4380_7778208_1330101,4380_292 -4380_77958,292,4380_14299,Dublin,58826-00016-1,1,4380_7778208_1330101,4380_292 -4380_77946,295,4380_143,Dundalk,50400-00019-1,0,4380_7778208_1000914,4380_1 -4380_77947,295,4380_1430,Drop Off,51117-00019-1,0,4380_7778208_1011106,4380_22 -4380_77958,293,4380_14300,Dublin,58824-00017-1,1,4380_7778208_1330101,4380_292 -4380_77958,290,4380_14301,Dublin,58828-00015-1,1,4380_7778208_1330101,4380_292 -4380_77958,294,4380_14302,Dublin,58822-00018-1,1,4380_7778208_1330101,4380_292 -4380_77958,295,4380_14303,Dublin,58820-00019-1,1,4380_7778208_1330101,4380_292 -4380_77958,296,4380_14304,Dublin,58902-00021-1,1,4380_7778208_1330102,4380_294 -4380_77947,296,4380_1431,Drop Off,51301-00021-1,0,4380_7778208_1011108,4380_26 -4380_77958,285,4380_14312,Dublin,59305-00009-1,1,4380_7778208_1330109,4380_292 -4380_77958,286,4380_14313,Dublin,59309-00010-1,1,4380_7778208_1330109,4380_292 -4380_77958,297,4380_14314,Dublin,59047-00008-1,1,4380_7778208_1330104,4380_293 -4380_77958,288,4380_14315,Dublin,59313-00011-1,1,4380_7778208_1330109,4380_292 -4380_77958,287,4380_14316,Dublin,59307-00012-1,1,4380_7778208_1330109,4380_292 -4380_77958,291,4380_14317,Dublin,59045-00013-1,1,4380_7778208_1330104,4380_294 -4380_77958,289,4380_14318,Dublin,59311-00014-1,1,4380_7778208_1330109,4380_292 -4380_77958,292,4380_14319,Dublin,59310-00016-1,1,4380_7778208_1330109,4380_292 -4380_77958,293,4380_14320,Dublin,59314-00017-1,1,4380_7778208_1330109,4380_292 -4380_77958,290,4380_14321,Dublin,59306-00015-1,1,4380_7778208_1330109,4380_292 -4380_77958,294,4380_14322,Dublin,59308-00018-1,1,4380_7778208_1330109,4380_292 -4380_77958,295,4380_14323,Dublin,59312-00019-1,1,4380_7778208_1330109,4380_292 -4380_77958,296,4380_14324,Dublin,59046-00021-1,1,4380_7778208_1330104,4380_294 -4380_77958,285,4380_14332,Dublin,58903-00009-1,1,4380_7778208_1330102,4380_292 -4380_77958,286,4380_14333,Dublin,58907-00010-1,1,4380_7778208_1330102,4380_292 -4380_77958,297,4380_14334,Dublin,58989-00008-1,1,4380_7778208_1330103,4380_293 -4380_77958,288,4380_14335,Dublin,58911-00011-1,1,4380_7778208_1330102,4380_292 -4380_77958,287,4380_14336,Dublin,58909-00012-1,1,4380_7778208_1330102,4380_292 -4380_77958,291,4380_14337,Dublin,58987-00013-1,1,4380_7778208_1330103,4380_294 -4380_77958,289,4380_14338,Dublin,58905-00014-1,1,4380_7778208_1330102,4380_292 -4380_77958,292,4380_14339,Dublin,58908-00016-1,1,4380_7778208_1330102,4380_292 -4380_77958,293,4380_14340,Dublin,58912-00017-1,1,4380_7778208_1330102,4380_292 -4380_77958,290,4380_14341,Dublin,58904-00015-1,1,4380_7778208_1330102,4380_292 -4380_77958,294,4380_14342,Dublin,58910-00018-1,1,4380_7778208_1330102,4380_292 -4380_77958,295,4380_14343,Dublin,58906-00019-1,1,4380_7778208_1330102,4380_292 -4380_77958,296,4380_14344,Dublin,58988-00021-1,1,4380_7778208_1330103,4380_294 -4380_77958,285,4380_14352,Dublin,59203-00009-1,1,4380_7778208_1330107,4380_292 -4380_77958,286,4380_14353,Dublin,59195-00010-1,1,4380_7778208_1330107,4380_292 -4380_77958,297,4380_14354,Dublin,59149-00008-1,1,4380_7778208_1330106,4380_293 -4380_77958,288,4380_14355,Dublin,59197-00011-1,1,4380_7778208_1330107,4380_292 -4380_77958,287,4380_14356,Dublin,59199-00012-1,1,4380_7778208_1330107,4380_292 -4380_77958,291,4380_14357,Dublin,59150-00013-1,1,4380_7778208_1330106,4380_294 -4380_77958,289,4380_14358,Dublin,59201-00014-1,1,4380_7778208_1330107,4380_292 -4380_77958,292,4380_14359,Dublin,59196-00016-1,1,4380_7778208_1330107,4380_292 -4380_77958,293,4380_14360,Dublin,59198-00017-1,1,4380_7778208_1330107,4380_292 -4380_77958,290,4380_14361,Dublin,59204-00015-1,1,4380_7778208_1330107,4380_292 -4380_77958,294,4380_14362,Dublin,59200-00018-1,1,4380_7778208_1330107,4380_292 -4380_77958,295,4380_14363,Dublin,59202-00019-1,1,4380_7778208_1330107,4380_292 -4380_77958,296,4380_14364,Dublin,59151-00021-1,1,4380_7778208_1330106,4380_294 -4380_77958,285,4380_14372,Dublin,59158-00009-1,1,4380_7778208_1330106,4380_292 -4380_77958,286,4380_14373,Dublin,59154-00010-1,1,4380_7778208_1330106,4380_292 -4380_77958,297,4380_14374,Dublin,58844-00008-1,1,4380_7778208_1330101,4380_293 -4380_77958,288,4380_14375,Dublin,59156-00011-1,1,4380_7778208_1330106,4380_292 -4380_77958,287,4380_14376,Dublin,59152-00012-1,1,4380_7778208_1330106,4380_292 -4380_77958,291,4380_14377,Dublin,58842-00013-1,1,4380_7778208_1330101,4380_294 -4380_77958,289,4380_14378,Dublin,59160-00014-1,1,4380_7778208_1330106,4380_292 -4380_77958,292,4380_14379,Dublin,59155-00016-1,1,4380_7778208_1330106,4380_292 -4380_77947,285,4380_1438,Drop Off,51202-00009-1,0,4380_7778208_1011107,4380_22 -4380_77958,293,4380_14380,Dublin,59157-00017-1,1,4380_7778208_1330106,4380_292 -4380_77958,290,4380_14381,Dublin,59159-00015-1,1,4380_7778208_1330106,4380_292 -4380_77958,294,4380_14382,Dublin,59153-00018-1,1,4380_7778208_1330106,4380_292 -4380_77958,295,4380_14383,Dublin,59161-00019-1,1,4380_7778208_1330106,4380_292 -4380_77958,296,4380_14384,Dublin,58843-00021-1,1,4380_7778208_1330101,4380_294 -4380_77947,286,4380_1439,Drop Off,51204-00010-1,0,4380_7778208_1011107,4380_22 -4380_77958,285,4380_14392,Dublin,59265-00009-1,1,4380_7778208_1330108,4380_292 -4380_77958,286,4380_14393,Dublin,59271-00010-1,1,4380_7778208_1330108,4380_292 -4380_77958,297,4380_14394,Dublin,58928-00008-1,1,4380_7778208_1330102,4380_293 -4380_77958,288,4380_14395,Dublin,59269-00011-1,1,4380_7778208_1330108,4380_292 -4380_77958,287,4380_14396,Dublin,59273-00012-1,1,4380_7778208_1330108,4380_292 -4380_77958,291,4380_14397,Dublin,58926-00013-1,1,4380_7778208_1330102,4380_294 -4380_77958,289,4380_14398,Dublin,59267-00014-1,1,4380_7778208_1330108,4380_292 -4380_77958,292,4380_14399,Dublin,59272-00016-1,1,4380_7778208_1330108,4380_292 -4380_77946,296,4380_144,Dundalk,50260-00021-1,0,4380_7778208_1000911,4380_5 -4380_77947,288,4380_1440,Drop Off,51198-00011-1,0,4380_7778208_1011107,4380_22 -4380_77958,293,4380_14400,Dublin,59270-00017-1,1,4380_7778208_1330108,4380_292 -4380_77958,290,4380_14401,Dublin,59266-00015-1,1,4380_7778208_1330108,4380_292 -4380_77958,294,4380_14402,Dublin,59274-00018-1,1,4380_7778208_1330108,4380_292 -4380_77958,295,4380_14403,Dublin,59268-00019-1,1,4380_7778208_1330108,4380_292 -4380_77958,296,4380_14404,Dublin,58927-00021-1,1,4380_7778208_1330102,4380_294 -4380_77947,287,4380_1441,Drop Off,51200-00012-1,0,4380_7778208_1011107,4380_22 -4380_77958,285,4380_14412,Dublin,59327-00009-1,1,4380_7778208_1330109,4380_292 -4380_77958,286,4380_14413,Dublin,59325-00010-1,1,4380_7778208_1330109,4380_292 -4380_77958,297,4380_14414,Dublin,58338-00008-1,1,4380_7778208_1310101,4380_293 -4380_77958,288,4380_14415,Dublin,59333-00011-1,1,4380_7778208_1330109,4380_292 -4380_77958,287,4380_14416,Dublin,59331-00012-1,1,4380_7778208_1330109,4380_292 -4380_77958,289,4380_14417,Dublin,59329-00014-1,1,4380_7778208_1330109,4380_292 -4380_77958,291,4380_14418,Dublin,58339-00013-1,1,4380_7778208_1310101,4380_294 -4380_77958,292,4380_14419,Dublin,59326-00016-1,1,4380_7778208_1330109,4380_292 -4380_77947,289,4380_1442,Drop Off,51206-00014-1,0,4380_7778208_1011107,4380_22 -4380_77958,293,4380_14420,Dublin,59334-00017-1,1,4380_7778208_1330109,4380_292 -4380_77958,290,4380_14421,Dublin,59328-00015-1,1,4380_7778208_1330109,4380_292 -4380_77958,294,4380_14422,Dublin,59332-00018-1,1,4380_7778208_1330109,4380_292 -4380_77958,295,4380_14423,Dublin,59330-00019-1,1,4380_7778208_1330109,4380_292 -4380_77958,296,4380_14424,Dublin,58340-00021-1,1,4380_7778208_1310101,4380_294 -4380_77959,288,4380_14426,Navan,59335-00011-1,0,4380_7778208_1340101,4380_295 -4380_77959,293,4380_14427,Navan,59336-00017-1,0,4380_7778208_1340101,4380_295 -4380_77959,288,4380_14429,Summerhill,59337-00011-1,1,4380_7778208_1340101,4380_296 -4380_77947,290,4380_1443,Drop Off,51203-00015-1,0,4380_7778208_1011107,4380_22 -4380_77959,293,4380_14430,Summerhill,59338-00017-1,1,4380_7778208_1340101,4380_296 -4380_77960,288,4380_14432,Navan,114842-00011-1,0,4380_7778208_13588801,4380_297 -4380_77960,293,4380_14433,Navan,114843-00017-1,0,4380_7778208_13588801,4380_297 -4380_77960,288,4380_14435,Navan,114844-00011-1,1,4380_7778208_13588801,4380_298 -4380_77960,293,4380_14436,Navan,114845-00017-1,1,4380_7778208_13588801,4380_298 -4380_77961,288,4380_14438,Navan,114846-00011-1,0,4380_7778208_13688801,4380_299 -4380_77961,293,4380_14439,Navan,114847-00017-1,0,4380_7778208_13688801,4380_299 -4380_77947,291,4380_1444,Drop Off,50586-00013-1,0,4380_7778208_1011101,4380_24 -4380_77961,288,4380_14441,Navan,114848-00011-1,1,4380_7778208_13688801,4380_300 -4380_77961,293,4380_14442,Navan,114849-00017-1,1,4380_7778208_13688801,4380_300 -4380_77947,292,4380_1445,Drop Off,51205-00016-1,0,4380_7778208_1011107,4380_22 -4380_77932,285,4380_14450,Killarney,44276-00009-1,0,4380_7778208_130701,4380_301 -4380_77932,286,4380_14451,Killarney,44280-00010-1,0,4380_7778208_130701,4380_301 -4380_77932,297,4380_14452,Killarney,44495-00008-1,0,4380_7778208_140401,4380_301 -4380_77932,287,4380_14453,Killarney,44278-00012-1,0,4380_7778208_130701,4380_301 -4380_77932,288,4380_14454,Killarney,44274-00011-1,0,4380_7778208_130701,4380_301 -4380_77932,289,4380_14455,Killarney,44272-00014-1,0,4380_7778208_130701,4380_301 -4380_77932,290,4380_14456,Killarney,44277-00015-1,0,4380_7778208_130701,4380_301 -4380_77932,291,4380_14457,Killarney,44270-00013-1,0,4380_7778208_130701,4380_301 -4380_77932,292,4380_14458,Killarney,44281-00016-1,0,4380_7778208_130701,4380_301 -4380_77932,293,4380_14459,Killarney,44275-00017-1,0,4380_7778208_130701,4380_301 -4380_77947,293,4380_1446,Drop Off,51199-00017-1,0,4380_7778208_1011107,4380_22 -4380_77932,295,4380_14460,Killarney,44273-00019-1,0,4380_7778208_130701,4380_301 -4380_77932,294,4380_14461,Killarney,44279-00018-1,0,4380_7778208_130701,4380_301 -4380_77932,296,4380_14462,Killarney,44271-00021-1,0,4380_7778208_130701,4380_301 -4380_77947,294,4380_1447,Drop Off,51201-00018-1,0,4380_7778208_1011107,4380_22 -4380_77932,285,4380_14470,Killarney,44383-00009-1,0,4380_7778208_130703,4380_301 -4380_77932,286,4380_14471,Killarney,44373-00010-1,0,4380_7778208_130703,4380_301 -4380_77932,297,4380_14472,Killarney,44282-00008-1,0,4380_7778208_130701,4380_301 -4380_77932,287,4380_14473,Killarney,44377-00012-1,0,4380_7778208_130703,4380_301 -4380_77932,288,4380_14474,Killarney,44379-00011-1,0,4380_7778208_130703,4380_301 -4380_77932,289,4380_14475,Killarney,44381-00014-1,0,4380_7778208_130703,4380_301 -4380_77932,290,4380_14476,Killarney,44384-00015-1,0,4380_7778208_130703,4380_301 -4380_77932,291,4380_14477,Killarney,44375-00013-1,0,4380_7778208_130703,4380_301 -4380_77932,292,4380_14478,Killarney,44374-00016-1,0,4380_7778208_130703,4380_301 -4380_77932,293,4380_14479,Killarney,44380-00017-1,0,4380_7778208_130703,4380_301 -4380_77947,295,4380_1448,Drop Off,51207-00019-1,0,4380_7778208_1011107,4380_22 -4380_77932,295,4380_14480,Killarney,44382-00019-1,0,4380_7778208_130703,4380_301 -4380_77932,294,4380_14481,Killarney,44378-00018-1,0,4380_7778208_130703,4380_301 -4380_77932,296,4380_14482,Killarney,44376-00021-1,0,4380_7778208_130703,4380_301 -4380_77947,296,4380_1449,Drop Off,50587-00021-1,0,4380_7778208_1011101,4380_24 -4380_77932,285,4380_14490,Killarney,44467-00009-1,0,4380_7778208_130705,4380_301 -4380_77932,286,4380_14491,Killarney,44461-00010-1,0,4380_7778208_130705,4380_301 -4380_77932,297,4380_14492,Killarney,44334-00008-1,0,4380_7778208_130702,4380_301 -4380_77932,287,4380_14493,Killarney,44469-00012-1,0,4380_7778208_130705,4380_301 -4380_77932,288,4380_14494,Killarney,44459-00011-1,0,4380_7778208_130705,4380_301 -4380_77932,289,4380_14495,Killarney,44465-00014-1,0,4380_7778208_130705,4380_301 -4380_77932,290,4380_14496,Killarney,44468-00015-1,0,4380_7778208_130705,4380_301 -4380_77932,291,4380_14497,Killarney,44463-00013-1,0,4380_7778208_130705,4380_301 -4380_77932,292,4380_14498,Killarney,44462-00016-1,0,4380_7778208_130705,4380_301 -4380_77932,293,4380_14499,Killarney,44460-00017-1,0,4380_7778208_130705,4380_301 -4380_77932,295,4380_14500,Killarney,44466-00019-1,0,4380_7778208_130705,4380_301 -4380_77932,294,4380_14501,Killarney,44470-00018-1,0,4380_7778208_130705,4380_301 -4380_77932,296,4380_14502,Killarney,44464-00021-1,0,4380_7778208_130705,4380_301 -4380_77932,285,4380_14510,Killarney,44437-00009-1,0,4380_7778208_130704,4380_301 -4380_77932,286,4380_14511,Killarney,44439-00010-1,0,4380_7778208_130704,4380_301 -4380_77932,297,4380_14512,Killarney,44549-00008-1,0,4380_7778208_140702,4380_301 -4380_77932,287,4380_14513,Killarney,44443-00012-1,0,4380_7778208_130704,4380_301 -4380_77932,288,4380_14514,Killarney,44441-00011-1,0,4380_7778208_130704,4380_301 -4380_77932,289,4380_14515,Killarney,44435-00014-1,0,4380_7778208_130704,4380_301 -4380_77932,290,4380_14516,Killarney,44438-00015-1,0,4380_7778208_130704,4380_301 -4380_77932,291,4380_14517,Killarney,44445-00013-1,0,4380_7778208_130704,4380_301 -4380_77932,292,4380_14518,Killarney,44440-00016-1,0,4380_7778208_130704,4380_301 -4380_77932,293,4380_14519,Killarney,44442-00017-1,0,4380_7778208_130704,4380_301 -4380_77932,295,4380_14520,Killarney,44436-00019-1,0,4380_7778208_130704,4380_301 -4380_77932,294,4380_14521,Killarney,44444-00018-1,0,4380_7778208_130704,4380_301 -4380_77932,296,4380_14522,Killarney,44446-00021-1,0,4380_7778208_130704,4380_301 -4380_77932,297,4380_14524,Killarney,44398-00008-1,0,4380_7778208_130703,4380_301 -4380_77932,285,4380_14531,Killarney,44493-00009-1,0,4380_7778208_130705,4380_302 -4380_77932,286,4380_14532,Killarney,44483-00010-1,0,4380_7778208_130705,4380_302 -4380_77932,287,4380_14533,Killarney,44487-00012-1,0,4380_7778208_130705,4380_302 -4380_77932,288,4380_14534,Killarney,44491-00011-1,0,4380_7778208_130705,4380_302 -4380_77932,289,4380_14535,Killarney,44489-00014-1,0,4380_7778208_130705,4380_302 -4380_77932,290,4380_14536,Killarney,44494-00015-1,0,4380_7778208_130705,4380_302 -4380_77932,291,4380_14537,Killarney,44485-00013-1,0,4380_7778208_130705,4380_302 -4380_77932,292,4380_14538,Killarney,44484-00016-1,0,4380_7778208_130705,4380_302 -4380_77932,293,4380_14539,Killarney,44492-00017-1,0,4380_7778208_130705,4380_302 -4380_77932,295,4380_14540,Killarney,44490-00019-1,0,4380_7778208_130705,4380_302 -4380_77932,294,4380_14541,Killarney,44488-00018-1,0,4380_7778208_130705,4380_302 -4380_77932,296,4380_14542,Killarney,44486-00021-1,0,4380_7778208_130705,4380_302 -4380_77932,285,4380_14549,Killarney,47672-00009-1,0,4380_7778208_400703,4380_303 -4380_77947,285,4380_1455,Drop Off,50590-00009-1,0,4380_7778208_1011101,4380_22 -4380_77932,286,4380_14550,Killarney,47678-00010-1,0,4380_7778208_400703,4380_303 -4380_77932,287,4380_14551,Killarney,47674-00012-1,0,4380_7778208_400703,4380_303 -4380_77932,288,4380_14552,Killarney,47676-00011-1,0,4380_7778208_400703,4380_303 -4380_77932,289,4380_14553,Killarney,47670-00014-1,0,4380_7778208_400703,4380_303 -4380_77932,290,4380_14554,Killarney,47673-00015-1,0,4380_7778208_400703,4380_303 -4380_77932,291,4380_14555,Killarney,44359-00013-1,0,4380_7778208_130702,4380_303 -4380_77932,292,4380_14556,Killarney,47679-00016-1,0,4380_7778208_400703,4380_303 -4380_77932,293,4380_14557,Killarney,47677-00017-1,0,4380_7778208_400703,4380_303 -4380_77932,295,4380_14558,Killarney,47671-00019-1,0,4380_7778208_400703,4380_303 -4380_77932,294,4380_14559,Killarney,47675-00018-1,0,4380_7778208_400703,4380_303 -4380_77947,286,4380_1456,Drop Off,50592-00010-1,0,4380_7778208_1011101,4380_22 -4380_77932,296,4380_14560,Killarney,44360-00021-1,0,4380_7778208_130702,4380_303 -4380_77932,285,4380_14568,Limerick Bus Station,44501-00009-1,1,4380_7778208_140701,4380_304 -4380_77932,286,4380_14569,Limerick Bus Station,44505-00010-1,1,4380_7778208_140701,4380_304 -4380_77947,287,4380_1457,Drop Off,50594-00012-1,0,4380_7778208_1011101,4380_22 -4380_77932,297,4380_14570,Limerick Bus Station,44496-00008-1,1,4380_7778208_140701,4380_304 -4380_77932,287,4380_14571,Limerick Bus Station,44507-00012-1,1,4380_7778208_140701,4380_304 -4380_77932,288,4380_14572,Limerick Bus Station,44499-00011-1,1,4380_7778208_140701,4380_304 -4380_77932,289,4380_14573,Limerick Bus Station,44497-00014-1,1,4380_7778208_140701,4380_304 -4380_77932,290,4380_14574,Limerick Bus Station,44502-00015-1,1,4380_7778208_140701,4380_304 -4380_77932,291,4380_14575,Limerick Bus Station,44503-00013-1,1,4380_7778208_140701,4380_304 -4380_77932,292,4380_14576,Limerick Bus Station,44506-00016-1,1,4380_7778208_140701,4380_304 -4380_77932,293,4380_14577,Limerick Bus Station,44500-00017-1,1,4380_7778208_140701,4380_304 -4380_77932,295,4380_14578,Limerick Bus Station,44498-00019-1,1,4380_7778208_140701,4380_304 -4380_77932,294,4380_14579,Limerick Bus Station,44508-00018-1,1,4380_7778208_140701,4380_304 -4380_77947,288,4380_1458,Drop Off,50596-00011-1,0,4380_7778208_1011101,4380_22 -4380_77932,296,4380_14580,Limerick Bus Station,44504-00021-1,1,4380_7778208_140701,4380_304 -4380_77932,285,4380_14588,Limerick Bus Station,44526-00009-1,1,4380_7778208_140702,4380_304 -4380_77932,286,4380_14589,Limerick Bus Station,44533-00010-1,1,4380_7778208_140702,4380_304 -4380_77947,289,4380_1459,Drop Off,50588-00014-1,0,4380_7778208_1011101,4380_22 -4380_77932,297,4380_14590,Limerick Bus Station,44530-00008-1,1,4380_7778208_140702,4380_304 -4380_77932,287,4380_14591,Limerick Bus Station,44524-00012-1,1,4380_7778208_140702,4380_304 -4380_77932,288,4380_14592,Limerick Bus Station,44535-00011-1,1,4380_7778208_140702,4380_304 -4380_77932,289,4380_14593,Limerick Bus Station,44531-00014-1,1,4380_7778208_140702,4380_304 -4380_77932,290,4380_14594,Limerick Bus Station,44527-00015-1,1,4380_7778208_140702,4380_304 -4380_77932,291,4380_14595,Limerick Bus Station,44528-00013-1,1,4380_7778208_140702,4380_304 -4380_77932,292,4380_14596,Limerick Bus Station,44534-00016-1,1,4380_7778208_140702,4380_304 -4380_77932,293,4380_14597,Limerick Bus Station,44536-00017-1,1,4380_7778208_140702,4380_304 -4380_77932,295,4380_14598,Limerick Bus Station,44532-00019-1,1,4380_7778208_140702,4380_304 -4380_77932,294,4380_14599,Limerick Bus Station,44525-00018-1,1,4380_7778208_140702,4380_304 -4380_77947,290,4380_1460,Drop Off,50591-00015-1,0,4380_7778208_1011101,4380_22 -4380_77932,296,4380_14600,Limerick Bus Station,44529-00021-1,1,4380_7778208_140702,4380_304 -4380_77932,285,4380_14608,Limerick Bus Station,44247-00009-1,1,4380_7778208_130401,4380_304 -4380_77932,286,4380_14609,Limerick Bus Station,44245-00010-1,1,4380_7778208_130401,4380_304 -4380_77947,292,4380_1461,Drop Off,50593-00016-1,0,4380_7778208_1011101,4380_22 -4380_77932,297,4380_14610,Limerick Bus Station,44550-00008-1,1,4380_7778208_140703,4380_304 -4380_77932,287,4380_14611,Limerick Bus Station,44243-00012-1,1,4380_7778208_130401,4380_304 -4380_77932,288,4380_14612,Limerick Bus Station,44251-00011-1,1,4380_7778208_130401,4380_304 -4380_77932,289,4380_14613,Limerick Bus Station,44249-00014-1,1,4380_7778208_130401,4380_304 -4380_77932,290,4380_14614,Limerick Bus Station,44248-00015-1,1,4380_7778208_130401,4380_304 -4380_77932,291,4380_14615,Limerick Bus Station,44241-00013-1,1,4380_7778208_130401,4380_304 -4380_77932,292,4380_14616,Limerick Bus Station,44246-00016-1,1,4380_7778208_130401,4380_304 -4380_77932,293,4380_14617,Limerick Bus Station,44252-00017-1,1,4380_7778208_130401,4380_304 -4380_77932,295,4380_14618,Limerick Bus Station,44250-00019-1,1,4380_7778208_130401,4380_304 -4380_77932,294,4380_14619,Limerick Bus Station,44244-00018-1,1,4380_7778208_130401,4380_304 -4380_77947,293,4380_1462,Drop Off,50597-00017-1,0,4380_7778208_1011101,4380_22 -4380_77932,296,4380_14620,Limerick Bus Station,44242-00021-1,1,4380_7778208_130401,4380_304 -4380_77932,285,4380_14628,Limerick Bus Station,47649-00009-1,1,4380_7778208_400703,4380_304 -4380_77932,286,4380_14629,Limerick Bus Station,47655-00010-1,1,4380_7778208_400703,4380_304 -4380_77947,294,4380_1463,Drop Off,50595-00018-1,0,4380_7778208_1011101,4380_22 -4380_77932,297,4380_14630,Limerick Bus Station,44552-00008-1,1,4380_7778208_140704,4380_304 -4380_77932,287,4380_14631,Limerick Bus Station,47647-00012-1,1,4380_7778208_400703,4380_304 -4380_77932,288,4380_14632,Limerick Bus Station,47653-00011-1,1,4380_7778208_400703,4380_304 -4380_77932,289,4380_14633,Limerick Bus Station,47651-00014-1,1,4380_7778208_400703,4380_304 -4380_77932,290,4380_14634,Limerick Bus Station,47650-00015-1,1,4380_7778208_400703,4380_304 -4380_77932,291,4380_14635,Limerick Bus Station,44345-00013-1,1,4380_7778208_130702,4380_304 -4380_77932,292,4380_14636,Limerick Bus Station,47656-00016-1,1,4380_7778208_400703,4380_304 -4380_77932,293,4380_14637,Limerick Bus Station,47654-00017-1,1,4380_7778208_400703,4380_304 -4380_77932,295,4380_14638,Limerick Bus Station,47652-00019-1,1,4380_7778208_400703,4380_304 -4380_77932,294,4380_14639,Limerick Bus Station,47648-00018-1,1,4380_7778208_400703,4380_304 -4380_77947,295,4380_1464,Drop Off,50589-00019-1,0,4380_7778208_1011101,4380_22 -4380_77932,296,4380_14640,Limerick Bus Station,44346-00021-1,1,4380_7778208_130702,4380_304 -4380_77932,285,4380_14648,Killarney,44473-00009-1,1,4380_7778208_130705,4380_305 -4380_77932,286,4380_14649,Killarney,44475-00010-1,1,4380_7778208_130705,4380_305 -4380_77932,297,4380_14650,Limerick Bus Station,44522-00008-1,1,4380_7778208_140701,4380_304 -4380_77932,287,4380_14651,Killarney,44471-00012-1,1,4380_7778208_130705,4380_305 -4380_77932,288,4380_14652,Killarney,44479-00011-1,1,4380_7778208_130705,4380_305 -4380_77932,289,4380_14653,Killarney,44477-00014-1,1,4380_7778208_130705,4380_305 -4380_77932,290,4380_14654,Killarney,44474-00015-1,1,4380_7778208_130705,4380_305 -4380_77932,291,4380_14655,Killarney,44481-00013-1,1,4380_7778208_130705,4380_305 -4380_77932,292,4380_14656,Killarney,44476-00016-1,1,4380_7778208_130705,4380_305 -4380_77932,293,4380_14657,Killarney,44480-00017-1,1,4380_7778208_130705,4380_305 -4380_77932,295,4380_14658,Killarney,44478-00019-1,1,4380_7778208_130705,4380_305 -4380_77932,294,4380_14659,Killarney,44472-00018-1,1,4380_7778208_130705,4380_305 -4380_77932,296,4380_14660,Killarney,44482-00021-1,1,4380_7778208_130705,4380_305 -4380_77962,285,4380_14667,Newry,49577-00009-1,0,4380_7778208_1000901,4380_306 -4380_77962,286,4380_14668,Newry,49569-00010-1,0,4380_7778208_1000901,4380_306 -4380_77962,287,4380_14669,Newry,49573-00012-1,0,4380_7778208_1000901,4380_306 -4380_77947,297,4380_1467,Drop Off,51021-00008-1,0,4380_7778208_1011105,4380_22 -4380_77962,288,4380_14670,Newry,49571-00011-1,0,4380_7778208_1000901,4380_306 -4380_77962,289,4380_14671,Newry,49575-00014-1,0,4380_7778208_1000901,4380_306 -4380_77962,290,4380_14672,Newry,49578-00015-1,0,4380_7778208_1000901,4380_306 -4380_77962,291,4380_14673,Newry,49669-00013-1,0,4380_7778208_1000902,4380_308 -4380_77962,292,4380_14674,Newry,49570-00016-1,0,4380_7778208_1000901,4380_306 -4380_77962,293,4380_14675,Newry,49572-00017-1,0,4380_7778208_1000901,4380_306 -4380_77962,294,4380_14676,Newry,49574-00018-1,0,4380_7778208_1000901,4380_306 -4380_77962,295,4380_14677,Newry,49576-00019-1,0,4380_7778208_1000901,4380_306 -4380_77962,296,4380_14678,Newry,49670-00021-1,0,4380_7778208_1000902,4380_308 -4380_77947,291,4380_1468,Drop Off,51208-00013-1,0,4380_7778208_1011107,4380_24 -4380_77962,285,4380_14685,Newry,49675-00009-1,0,4380_7778208_1000902,4380_307 -4380_77962,286,4380_14686,Newry,49681-00010-1,0,4380_7778208_1000902,4380_307 -4380_77962,287,4380_14687,Newry,49679-00012-1,0,4380_7778208_1000902,4380_307 -4380_77962,288,4380_14688,Newry,49673-00011-1,0,4380_7778208_1000902,4380_307 -4380_77962,289,4380_14689,Newry,49677-00014-1,0,4380_7778208_1000902,4380_307 -4380_77947,296,4380_1469,Drop Off,51209-00021-1,0,4380_7778208_1011107,4380_24 -4380_77962,290,4380_14690,Newry,49676-00015-1,0,4380_7778208_1000902,4380_307 -4380_77962,291,4380_14691,Newry,49705-00013-1,0,4380_7778208_1000903,4380_306 -4380_77962,292,4380_14692,Newry,49682-00016-1,0,4380_7778208_1000902,4380_307 -4380_77962,293,4380_14693,Newry,49674-00017-1,0,4380_7778208_1000902,4380_307 -4380_77962,294,4380_14694,Newry,49680-00018-1,0,4380_7778208_1000902,4380_307 -4380_77962,295,4380_14695,Newry,49678-00019-1,0,4380_7778208_1000902,4380_307 -4380_77962,296,4380_14696,Newry,49706-00021-1,0,4380_7778208_1000903,4380_306 -4380_77962,285,4380_14704,Newry,49591-00009-1,0,4380_7778208_1000901,4380_306 -4380_77962,286,4380_14705,Newry,49595-00010-1,0,4380_7778208_1000901,4380_306 -4380_77962,297,4380_14706,Newry,59339-00008-1,0,4380_7778208_1600901,4380_308 -4380_77962,287,4380_14707,Newry,49593-00012-1,0,4380_7778208_1000901,4380_306 -4380_77962,288,4380_14708,Newry,49597-00011-1,0,4380_7778208_1000901,4380_306 -4380_77962,289,4380_14709,Newry,49589-00014-1,0,4380_7778208_1000901,4380_306 -4380_77962,290,4380_14710,Newry,49592-00015-1,0,4380_7778208_1000901,4380_306 -4380_77962,291,4380_14711,Newry,49710-00013-1,0,4380_7778208_1000903,4380_309 -4380_77962,292,4380_14712,Newry,49596-00016-1,0,4380_7778208_1000901,4380_306 -4380_77962,293,4380_14713,Newry,49598-00017-1,0,4380_7778208_1000901,4380_306 -4380_77962,294,4380_14714,Newry,49594-00018-1,0,4380_7778208_1000901,4380_306 -4380_77962,295,4380_14715,Newry,49590-00019-1,0,4380_7778208_1000901,4380_306 -4380_77962,296,4380_14716,Newry,49711-00021-1,0,4380_7778208_1000903,4380_309 -4380_77962,285,4380_14724,Newry,49617-00009-1,0,4380_7778208_1000901,4380_306 -4380_77962,286,4380_14725,Newry,49611-00010-1,0,4380_7778208_1000901,4380_306 -4380_77962,297,4380_14726,Newry,59341-00008-1,0,4380_7778208_1600901,4380_308 -4380_77962,287,4380_14727,Newry,49615-00012-1,0,4380_7778208_1000901,4380_306 -4380_77962,288,4380_14728,Newry,49609-00011-1,0,4380_7778208_1000901,4380_306 -4380_77962,289,4380_14729,Newry,49613-00014-1,0,4380_7778208_1000901,4380_306 -4380_77962,290,4380_14730,Newry,49618-00015-1,0,4380_7778208_1000901,4380_306 -4380_77962,291,4380_14731,Newry,49715-00013-1,0,4380_7778208_1000903,4380_309 -4380_77962,292,4380_14732,Newry,49612-00016-1,0,4380_7778208_1000901,4380_306 -4380_77962,293,4380_14733,Newry,49610-00017-1,0,4380_7778208_1000901,4380_306 -4380_77962,294,4380_14734,Newry,49616-00018-1,0,4380_7778208_1000901,4380_306 -4380_77962,295,4380_14735,Newry,49614-00019-1,0,4380_7778208_1000901,4380_306 -4380_77962,296,4380_14736,Newry,49716-00021-1,0,4380_7778208_1000903,4380_309 -4380_77962,285,4380_14744,Newry,59385-00009-1,0,4380_7778208_1610901,4380_306 -4380_77962,286,4380_14745,Newry,59391-00010-1,0,4380_7778208_1610901,4380_306 -4380_77962,297,4380_14746,Newry,59343-00008-1,0,4380_7778208_1600901,4380_308 -4380_77962,288,4380_14747,Newry,59389-00011-1,0,4380_7778208_1610901,4380_306 -4380_77962,287,4380_14748,Newry,59387-00012-1,0,4380_7778208_1610901,4380_306 -4380_77962,291,4380_14749,Newry,59393-00013-1,0,4380_7778208_1610901,4380_309 -4380_77947,285,4380_1475,Drop Off,51457-00009-1,0,4380_7778208_1011110,4380_22 -4380_77962,289,4380_14750,Newry,59395-00014-1,0,4380_7778208_1610901,4380_306 -4380_77962,292,4380_14751,Newry,59392-00016-1,0,4380_7778208_1610901,4380_306 -4380_77962,293,4380_14752,Newry,59390-00017-1,0,4380_7778208_1610901,4380_306 -4380_77962,290,4380_14753,Newry,59386-00015-1,0,4380_7778208_1610901,4380_306 -4380_77962,294,4380_14754,Newry,59388-00018-1,0,4380_7778208_1610901,4380_306 -4380_77962,295,4380_14755,Newry,59396-00019-1,0,4380_7778208_1610901,4380_306 -4380_77962,296,4380_14756,Newry,59394-00021-1,0,4380_7778208_1610901,4380_309 -4380_77962,297,4380_14758,Newry,59345-00008-1,0,4380_7778208_1600901,4380_306 -4380_77947,286,4380_1476,Drop Off,51459-00010-1,0,4380_7778208_1011110,4380_22 -4380_77962,285,4380_14765,Newry,59497-00009-1,0,4380_7778208_1610905,4380_306 -4380_77962,286,4380_14766,Newry,59489-00010-1,0,4380_7778208_1610905,4380_306 -4380_77962,288,4380_14767,Newry,59491-00011-1,0,4380_7778208_1610905,4380_306 -4380_77962,287,4380_14768,Newry,59495-00012-1,0,4380_7778208_1610905,4380_306 -4380_77962,291,4380_14769,Newry,59441-00013-1,0,4380_7778208_1610902,4380_308 -4380_77947,288,4380_1477,Drop Off,51455-00011-1,0,4380_7778208_1011110,4380_22 -4380_77962,289,4380_14770,Newry,59493-00014-1,0,4380_7778208_1610905,4380_306 -4380_77962,292,4380_14771,Newry,59490-00016-1,0,4380_7778208_1610905,4380_306 -4380_77962,293,4380_14772,Newry,59492-00017-1,0,4380_7778208_1610905,4380_306 -4380_77962,290,4380_14773,Newry,59498-00015-1,0,4380_7778208_1610905,4380_306 -4380_77962,294,4380_14774,Newry,59496-00018-1,0,4380_7778208_1610905,4380_306 -4380_77962,295,4380_14775,Newry,59494-00019-1,0,4380_7778208_1610905,4380_306 -4380_77962,296,4380_14776,Newry,59442-00021-1,0,4380_7778208_1610902,4380_308 -4380_77947,287,4380_1478,Drop Off,51451-00012-1,0,4380_7778208_1011110,4380_22 -4380_77962,285,4380_14784,Newry,59511-00009-1,0,4380_7778208_1610905,4380_306 -4380_77962,286,4380_14785,Newry,59517-00010-1,0,4380_7778208_1610905,4380_306 -4380_77962,297,4380_14786,Newry,59347-00008-1,0,4380_7778208_1600901,4380_308 -4380_77962,288,4380_14787,Newry,59509-00011-1,0,4380_7778208_1610905,4380_306 -4380_77962,287,4380_14788,Newry,59515-00012-1,0,4380_7778208_1610905,4380_306 -4380_77962,291,4380_14789,Newry,59445-00013-1,0,4380_7778208_1610902,4380_309 -4380_77947,289,4380_1479,Drop Off,51453-00014-1,0,4380_7778208_1011110,4380_22 -4380_77962,289,4380_14790,Newry,59513-00014-1,0,4380_7778208_1610905,4380_306 -4380_77962,292,4380_14791,Newry,59518-00016-1,0,4380_7778208_1610905,4380_306 -4380_77962,293,4380_14792,Newry,59510-00017-1,0,4380_7778208_1610905,4380_306 -4380_77962,290,4380_14793,Newry,59512-00015-1,0,4380_7778208_1610905,4380_306 -4380_77962,294,4380_14794,Newry,59516-00018-1,0,4380_7778208_1610905,4380_306 -4380_77962,295,4380_14795,Newry,59514-00019-1,0,4380_7778208_1610905,4380_306 -4380_77962,296,4380_14796,Newry,59446-00021-1,0,4380_7778208_1610902,4380_309 -4380_77947,290,4380_1480,Drop Off,51458-00015-1,0,4380_7778208_1011110,4380_22 -4380_77962,285,4380_14803,Dundalk,49587-00009-1,1,4380_7778208_1000901,4380_310 -4380_77962,286,4380_14804,Dundalk,49581-00010-1,1,4380_7778208_1000901,4380_310 -4380_77962,287,4380_14805,Dundalk,49583-00012-1,1,4380_7778208_1000901,4380_310 -4380_77962,288,4380_14806,Dundalk,49585-00011-1,1,4380_7778208_1000901,4380_310 -4380_77962,289,4380_14807,Dundalk,49579-00014-1,1,4380_7778208_1000901,4380_310 -4380_77962,290,4380_14808,Dundalk,49588-00015-1,1,4380_7778208_1000901,4380_310 -4380_77962,291,4380_14809,Dundalk,49671-00013-1,1,4380_7778208_1000902,4380_312 -4380_77947,292,4380_1481,Drop Off,51460-00016-1,0,4380_7778208_1011110,4380_22 -4380_77962,292,4380_14810,Dundalk,49582-00016-1,1,4380_7778208_1000901,4380_310 -4380_77962,293,4380_14811,Dundalk,49586-00017-1,1,4380_7778208_1000901,4380_310 -4380_77962,294,4380_14812,Dundalk,49584-00018-1,1,4380_7778208_1000901,4380_310 -4380_77962,295,4380_14813,Dundalk,49580-00019-1,1,4380_7778208_1000901,4380_310 -4380_77962,296,4380_14814,Dundalk,49672-00021-1,1,4380_7778208_1000902,4380_312 -4380_77947,293,4380_1482,Drop Off,51456-00017-1,0,4380_7778208_1011110,4380_22 -4380_77962,285,4380_14821,Dundalk,49691-00009-1,1,4380_7778208_1000902,4380_310 -4380_77962,286,4380_14822,Dundalk,49683-00010-1,1,4380_7778208_1000902,4380_310 -4380_77962,287,4380_14823,Dundalk,49685-00012-1,1,4380_7778208_1000902,4380_310 -4380_77962,288,4380_14824,Dundalk,49689-00011-1,1,4380_7778208_1000902,4380_310 -4380_77962,289,4380_14825,Dundalk,49687-00014-1,1,4380_7778208_1000902,4380_310 -4380_77962,290,4380_14826,Dundalk,49692-00015-1,1,4380_7778208_1000902,4380_310 -4380_77962,291,4380_14827,Dundalk,49707-00013-1,1,4380_7778208_1000903,4380_312 -4380_77962,292,4380_14828,Dundalk,49684-00016-1,1,4380_7778208_1000902,4380_310 -4380_77962,293,4380_14829,Dundalk,49690-00017-1,1,4380_7778208_1000902,4380_310 -4380_77947,294,4380_1483,Drop Off,51452-00018-1,0,4380_7778208_1011110,4380_22 -4380_77962,294,4380_14830,Dundalk,49686-00018-1,1,4380_7778208_1000902,4380_310 -4380_77962,295,4380_14831,Dundalk,49688-00019-1,1,4380_7778208_1000902,4380_310 -4380_77962,296,4380_14832,Dundalk,49708-00021-1,1,4380_7778208_1000903,4380_312 -4380_77947,295,4380_1484,Drop Off,51454-00019-1,0,4380_7778208_1011110,4380_22 -4380_77962,285,4380_14840,Dundalk,49599-00009-1,1,4380_7778208_1000901,4380_310 -4380_77962,286,4380_14841,Dundalk,49603-00010-1,1,4380_7778208_1000901,4380_310 -4380_77962,297,4380_14842,Dundalk,59340-00008-1,1,4380_7778208_1600901,4380_312 -4380_77962,287,4380_14843,Dundalk,49601-00012-1,1,4380_7778208_1000901,4380_310 -4380_77962,288,4380_14844,Dundalk,49605-00011-1,1,4380_7778208_1000901,4380_310 -4380_77962,289,4380_14845,Dundalk,49607-00014-1,1,4380_7778208_1000901,4380_310 -4380_77962,290,4380_14846,Dundalk,49600-00015-1,1,4380_7778208_1000901,4380_310 -4380_77962,291,4380_14847,Dundalk,49712-00013-1,1,4380_7778208_1000903,4380_313 -4380_77962,292,4380_14848,Dundalk,49604-00016-1,1,4380_7778208_1000901,4380_310 -4380_77962,293,4380_14849,Dundalk,49606-00017-1,1,4380_7778208_1000901,4380_310 -4380_77962,294,4380_14850,Dundalk,49602-00018-1,1,4380_7778208_1000901,4380_310 -4380_77962,295,4380_14851,Dundalk,49608-00019-1,1,4380_7778208_1000901,4380_310 -4380_77962,296,4380_14852,Dundalk,49713-00021-1,1,4380_7778208_1000903,4380_313 -4380_77962,285,4380_14860,Dundalk,49621-00009-1,1,4380_7778208_1000901,4380_310 -4380_77962,286,4380_14861,Dundalk,49623-00010-1,1,4380_7778208_1000901,4380_310 -4380_77962,297,4380_14862,Dundalk,59342-00008-1,1,4380_7778208_1600901,4380_312 -4380_77962,287,4380_14863,Dundalk,49627-00012-1,1,4380_7778208_1000901,4380_310 -4380_77962,288,4380_14864,Dundalk,49625-00011-1,1,4380_7778208_1000901,4380_310 -4380_77962,289,4380_14865,Dundalk,49619-00014-1,1,4380_7778208_1000901,4380_310 -4380_77962,290,4380_14866,Dundalk,49622-00015-1,1,4380_7778208_1000901,4380_310 -4380_77962,291,4380_14867,Dundalk,49717-00013-1,1,4380_7778208_1000903,4380_313 -4380_77962,292,4380_14868,Dundalk,49624-00016-1,1,4380_7778208_1000901,4380_310 -4380_77962,293,4380_14869,Dundalk,49626-00017-1,1,4380_7778208_1000901,4380_310 -4380_77962,294,4380_14870,Dundalk,49628-00018-1,1,4380_7778208_1000901,4380_310 -4380_77962,295,4380_14871,Dundalk,49620-00019-1,1,4380_7778208_1000901,4380_310 -4380_77962,296,4380_14872,Dundalk,49718-00021-1,1,4380_7778208_1000903,4380_313 -4380_77962,285,4380_14880,Dundalk,59397-00009-1,1,4380_7778208_1610901,4380_310 -4380_77962,286,4380_14881,Dundalk,59401-00010-1,1,4380_7778208_1610901,4380_310 -4380_77962,297,4380_14882,Dundalk,59344-00008-1,1,4380_7778208_1600901,4380_312 -4380_77962,288,4380_14883,Dundalk,59399-00011-1,1,4380_7778208_1610901,4380_310 -4380_77962,287,4380_14884,Dundalk,59403-00012-1,1,4380_7778208_1610901,4380_310 -4380_77962,291,4380_14885,Dundalk,59407-00013-1,1,4380_7778208_1610901,4380_313 -4380_77962,289,4380_14886,Dundalk,59405-00014-1,1,4380_7778208_1610901,4380_310 -4380_77962,292,4380_14887,Dundalk,59402-00016-1,1,4380_7778208_1610901,4380_310 -4380_77962,293,4380_14888,Dundalk,59400-00017-1,1,4380_7778208_1610901,4380_310 -4380_77962,290,4380_14889,Dundalk,59398-00015-1,1,4380_7778208_1610901,4380_310 -4380_77962,294,4380_14890,Dundalk,59404-00018-1,1,4380_7778208_1610901,4380_310 -4380_77962,295,4380_14891,Dundalk,59406-00019-1,1,4380_7778208_1610901,4380_310 -4380_77962,296,4380_14892,Dundalk,59408-00021-1,1,4380_7778208_1610901,4380_313 -4380_77962,285,4380_14900,Dundalk,59507-00009-1,1,4380_7778208_1610905,4380_311 -4380_77962,286,4380_14901,Dundalk,59503-00010-1,1,4380_7778208_1610905,4380_311 -4380_77962,297,4380_14902,Dundalk,59346-00008-1,1,4380_7778208_1600901,4380_310 -4380_77962,288,4380_14903,Dundalk,59499-00011-1,1,4380_7778208_1610905,4380_311 -4380_77962,287,4380_14904,Dundalk,59501-00012-1,1,4380_7778208_1610905,4380_311 -4380_77962,291,4380_14905,Dundalk,59443-00013-1,1,4380_7778208_1610902,4380_312 -4380_77962,289,4380_14906,Dundalk,59505-00014-1,1,4380_7778208_1610905,4380_311 -4380_77962,292,4380_14907,Dundalk,59504-00016-1,1,4380_7778208_1610905,4380_311 -4380_77962,293,4380_14908,Dundalk,59500-00017-1,1,4380_7778208_1610905,4380_311 -4380_77962,290,4380_14909,Dundalk,59508-00015-1,1,4380_7778208_1610905,4380_311 -4380_77947,285,4380_1491,Drop Off,51517-00009-1,0,4380_7778208_1011111,4380_22 -4380_77962,294,4380_14910,Dundalk,59502-00018-1,1,4380_7778208_1610905,4380_311 -4380_77962,295,4380_14911,Dundalk,59506-00019-1,1,4380_7778208_1610905,4380_311 -4380_77962,296,4380_14912,Dundalk,59444-00021-1,1,4380_7778208_1610902,4380_312 -4380_77947,286,4380_1492,Drop Off,51525-00010-1,0,4380_7778208_1011111,4380_22 -4380_77962,285,4380_14920,Dundalk,59521-00009-1,1,4380_7778208_1610905,4380_310 -4380_77962,286,4380_14921,Dundalk,59519-00010-1,1,4380_7778208_1610905,4380_310 -4380_77962,297,4380_14922,Dundalk,59348-00008-1,1,4380_7778208_1600901,4380_312 -4380_77962,288,4380_14923,Dundalk,59527-00011-1,1,4380_7778208_1610905,4380_310 -4380_77962,287,4380_14924,Dundalk,59525-00012-1,1,4380_7778208_1610905,4380_310 -4380_77962,291,4380_14925,Dundalk,59447-00013-1,1,4380_7778208_1610902,4380_313 -4380_77962,289,4380_14926,Dundalk,59523-00014-1,1,4380_7778208_1610905,4380_310 -4380_77962,292,4380_14927,Dundalk,59520-00016-1,1,4380_7778208_1610905,4380_310 -4380_77962,293,4380_14928,Dundalk,59528-00017-1,1,4380_7778208_1610905,4380_310 -4380_77962,290,4380_14929,Dundalk,59522-00015-1,1,4380_7778208_1610905,4380_310 -4380_77947,288,4380_1493,Drop Off,51519-00011-1,0,4380_7778208_1011111,4380_22 -4380_77962,294,4380_14930,Dundalk,59526-00018-1,1,4380_7778208_1610905,4380_310 -4380_77962,295,4380_14931,Dundalk,59524-00019-1,1,4380_7778208_1610905,4380_310 -4380_77962,296,4380_14932,Dundalk,59448-00021-1,1,4380_7778208_1610902,4380_313 -4380_77947,287,4380_1494,Drop Off,51521-00012-1,0,4380_7778208_1011111,4380_22 -4380_77963,285,4380_14944,Newry,59457-00009-1,0,4380_7778208_1610905,4380_317 -4380_77963,285,4380_14945,Riverstown,114854-00009-1,0,4380_7778208_16188801,4380_319 -4380_77963,286,4380_14946,Newry,59449-00010-1,0,4380_7778208_1610905,4380_317 -4380_77963,288,4380_14947,Newry,59455-00011-1,0,4380_7778208_1610905,4380_317 -4380_77963,288,4380_14948,Riverstown,114858-00011-1,0,4380_7778208_16188801,4380_319 -4380_77963,287,4380_14949,Newry,59453-00012-1,0,4380_7778208_1610905,4380_317 -4380_77947,289,4380_1495,Drop Off,51523-00014-1,0,4380_7778208_1011111,4380_22 -4380_77963,286,4380_14950,Riverstown,114856-00010-1,0,4380_7778208_16188801,4380_319 -4380_77963,291,4380_14951,Newry,59433-00013-1,0,4380_7778208_1610902,4380_323 -4380_77963,289,4380_14952,Newry,59451-00014-1,0,4380_7778208_1610905,4380_317 -4380_77963,289,4380_14953,Riverstown,114850-00014-1,0,4380_7778208_16188801,4380_319 -4380_77963,287,4380_14954,Riverstown,114852-00012-1,0,4380_7778208_16188801,4380_319 -4380_77963,290,4380_14955,Riverstown,114855-00015-1,0,4380_7778208_16188801,4380_319 -4380_77963,292,4380_14956,Newry,59450-00016-1,0,4380_7778208_1610905,4380_317 -4380_77963,292,4380_14957,Riverstown,114857-00016-1,0,4380_7778208_16188801,4380_319 -4380_77963,293,4380_14958,Newry,59456-00017-1,0,4380_7778208_1610905,4380_317 -4380_77963,290,4380_14959,Newry,59458-00015-1,0,4380_7778208_1610905,4380_317 -4380_77947,290,4380_1496,Drop Off,51518-00015-1,0,4380_7778208_1011111,4380_22 -4380_77963,294,4380_14960,Newry,59454-00018-1,0,4380_7778208_1610905,4380_317 -4380_77963,294,4380_14961,Riverstown,114853-00018-1,0,4380_7778208_16188801,4380_319 -4380_77963,295,4380_14962,Newry,59452-00019-1,0,4380_7778208_1610905,4380_317 -4380_77963,293,4380_14963,Riverstown,114859-00017-1,0,4380_7778208_16188801,4380_319 -4380_77963,295,4380_14964,Riverstown,114851-00019-1,0,4380_7778208_16188801,4380_319 -4380_77963,296,4380_14965,Newry,59434-00021-1,0,4380_7778208_1610902,4380_323 -4380_77947,291,4380_1497,Drop Off,50809-00013-1,0,4380_7778208_1011103,4380_24 -4380_77963,285,4380_14972,Newry,59365-00009-1,0,4380_7778208_1610901,4380_315 -4380_77963,286,4380_14973,Newry,59369-00010-1,0,4380_7778208_1610901,4380_315 -4380_77963,288,4380_14974,Newry,59361-00011-1,0,4380_7778208_1610901,4380_315 -4380_77963,287,4380_14975,Newry,59367-00012-1,0,4380_7778208_1610901,4380_315 -4380_77963,291,4380_14976,Newry,59371-00013-1,0,4380_7778208_1610901,4380_321 -4380_77963,289,4380_14977,Newry,59363-00014-1,0,4380_7778208_1610901,4380_315 -4380_77963,292,4380_14978,Newry,59370-00016-1,0,4380_7778208_1610901,4380_315 -4380_77963,293,4380_14979,Newry,59362-00017-1,0,4380_7778208_1610901,4380_315 -4380_77947,292,4380_1498,Drop Off,51526-00016-1,0,4380_7778208_1011111,4380_22 -4380_77963,290,4380_14980,Newry,59366-00015-1,0,4380_7778208_1610901,4380_315 -4380_77963,294,4380_14981,Newry,59368-00018-1,0,4380_7778208_1610901,4380_315 -4380_77963,295,4380_14982,Newry,59364-00019-1,0,4380_7778208_1610901,4380_315 -4380_77963,296,4380_14983,Newry,59372-00021-1,0,4380_7778208_1610901,4380_321 -4380_77947,293,4380_1499,Drop Off,51520-00017-1,0,4380_7778208_1011111,4380_22 -4380_77963,285,4380_14990,Newry,59469-00009-1,0,4380_7778208_1610905,4380_318 -4380_77963,286,4380_14991,Newry,59475-00010-1,0,4380_7778208_1610905,4380_318 -4380_77963,288,4380_14992,Newry,59471-00011-1,0,4380_7778208_1610905,4380_318 -4380_77963,287,4380_14993,Newry,59477-00012-1,0,4380_7778208_1610905,4380_318 -4380_77963,291,4380_14994,Newry,59437-00013-1,0,4380_7778208_1610902,4380_324 -4380_77963,289,4380_14995,Newry,59473-00014-1,0,4380_7778208_1610905,4380_318 -4380_77963,292,4380_14996,Newry,59476-00016-1,0,4380_7778208_1610905,4380_318 -4380_77963,293,4380_14997,Newry,59472-00017-1,0,4380_7778208_1610905,4380_318 -4380_77963,290,4380_14998,Newry,59470-00015-1,0,4380_7778208_1610905,4380_318 -4380_77963,294,4380_14999,Newry,59478-00018-1,0,4380_7778208_1610905,4380_318 -4380_77946,293,4380_15,Dundalk,50456-00017-1,0,4380_7778208_1000915,4380_1 -4380_77947,294,4380_1500,Drop Off,51522-00018-1,0,4380_7778208_1011111,4380_22 -4380_77963,295,4380_15000,Newry,59474-00019-1,0,4380_7778208_1610905,4380_318 -4380_77963,296,4380_15001,Newry,59438-00021-1,0,4380_7778208_1610902,4380_324 -4380_77963,285,4380_15008,Carlingford,49633-00009-1,0,4380_7778208_1000901,4380_314 -4380_77963,286,4380_15009,Carlingford,49635-00010-1,0,4380_7778208_1000901,4380_314 -4380_77947,295,4380_1501,Drop Off,51524-00019-1,0,4380_7778208_1011111,4380_22 -4380_77963,287,4380_15010,Carlingford,49637-00012-1,0,4380_7778208_1000901,4380_314 -4380_77963,288,4380_15011,Carlingford,49629-00011-1,0,4380_7778208_1000901,4380_314 -4380_77963,289,4380_15012,Carlingford,49631-00014-1,0,4380_7778208_1000901,4380_314 -4380_77963,290,4380_15013,Carlingford,49634-00015-1,0,4380_7778208_1000901,4380_314 -4380_77963,291,4380_15014,Carlingford,49719-00013-1,0,4380_7778208_1000903,4380_320 -4380_77963,292,4380_15015,Carlingford,49636-00016-1,0,4380_7778208_1000901,4380_314 -4380_77963,293,4380_15016,Carlingford,49630-00017-1,0,4380_7778208_1000901,4380_314 -4380_77963,294,4380_15017,Carlingford,49638-00018-1,0,4380_7778208_1000901,4380_314 -4380_77963,295,4380_15018,Carlingford,49632-00019-1,0,4380_7778208_1000901,4380_314 -4380_77963,296,4380_15019,Carlingford,49720-00021-1,0,4380_7778208_1000903,4380_320 -4380_77947,296,4380_1502,Drop Off,50810-00021-1,0,4380_7778208_1011103,4380_24 -4380_77963,285,4380_15026,Newry,49649-00009-1,0,4380_7778208_1000901,4380_315 -4380_77963,286,4380_15027,Newry,49655-00010-1,0,4380_7778208_1000901,4380_315 -4380_77963,287,4380_15028,Newry,49651-00012-1,0,4380_7778208_1000901,4380_315 -4380_77963,288,4380_15029,Newry,49657-00011-1,0,4380_7778208_1000901,4380_315 -4380_77963,289,4380_15030,Newry,49653-00014-1,0,4380_7778208_1000901,4380_315 -4380_77963,290,4380_15031,Newry,49650-00015-1,0,4380_7778208_1000901,4380_315 -4380_77963,291,4380_15032,Newry,49724-00013-1,0,4380_7778208_1000903,4380_321 -4380_77963,292,4380_15033,Newry,49656-00016-1,0,4380_7778208_1000901,4380_315 -4380_77963,293,4380_15034,Newry,49658-00017-1,0,4380_7778208_1000901,4380_315 -4380_77963,294,4380_15035,Newry,49652-00018-1,0,4380_7778208_1000901,4380_315 -4380_77963,295,4380_15036,Newry,49654-00019-1,0,4380_7778208_1000901,4380_315 -4380_77963,296,4380_15037,Newry,49725-00021-1,0,4380_7778208_1000903,4380_321 -4380_77963,285,4380_15044,Carlingford,59413-00009-1,0,4380_7778208_1610901,4380_316 -4380_77963,286,4380_15045,Carlingford,59415-00010-1,0,4380_7778208_1610901,4380_316 -4380_77963,288,4380_15046,Carlingford,59411-00011-1,0,4380_7778208_1610901,4380_316 -4380_77963,287,4380_15047,Carlingford,59417-00012-1,0,4380_7778208_1610901,4380_316 -4380_77963,291,4380_15048,Carlingford,59409-00013-1,0,4380_7778208_1610901,4380_322 -4380_77963,289,4380_15049,Carlingford,59419-00014-1,0,4380_7778208_1610901,4380_316 -4380_77963,292,4380_15050,Carlingford,59416-00016-1,0,4380_7778208_1610901,4380_316 -4380_77963,293,4380_15051,Carlingford,59412-00017-1,0,4380_7778208_1610901,4380_316 -4380_77963,290,4380_15052,Carlingford,59414-00015-1,0,4380_7778208_1610901,4380_316 -4380_77963,294,4380_15053,Carlingford,59418-00018-1,0,4380_7778208_1610901,4380_316 -4380_77963,295,4380_15054,Carlingford,59420-00019-1,0,4380_7778208_1610901,4380_316 -4380_77963,296,4380_15055,Carlingford,59410-00021-1,0,4380_7778208_1610901,4380_322 -4380_77963,285,4380_15062,Dundalk,59353-00009-1,1,4380_7778208_1610901,4380_328 -4380_77963,286,4380_15063,Dundalk,59357-00010-1,1,4380_7778208_1610901,4380_328 -4380_77963,288,4380_15064,Dundalk,59359-00011-1,1,4380_7778208_1610901,4380_328 -4380_77963,287,4380_15065,Dundalk,59349-00012-1,1,4380_7778208_1610901,4380_328 -4380_77963,291,4380_15066,Dundalk,59355-00013-1,1,4380_7778208_1610901,4380_334 -4380_77963,289,4380_15067,Dundalk,59351-00014-1,1,4380_7778208_1610901,4380_328 -4380_77963,292,4380_15068,Dundalk,59358-00016-1,1,4380_7778208_1610901,4380_328 -4380_77963,293,4380_15069,Dundalk,59360-00017-1,1,4380_7778208_1610901,4380_328 -4380_77963,290,4380_15070,Dundalk,59354-00015-1,1,4380_7778208_1610901,4380_328 -4380_77963,294,4380_15071,Dundalk,59350-00018-1,1,4380_7778208_1610901,4380_328 -4380_77963,295,4380_15072,Dundalk,59352-00019-1,1,4380_7778208_1610901,4380_328 -4380_77963,296,4380_15073,Dundalk,59356-00021-1,1,4380_7778208_1610901,4380_334 -4380_77947,285,4380_1508,Drop Off,50703-00009-1,0,4380_7778208_1011102,4380_22 -4380_77963,285,4380_15080,Dundalk,59463-00009-1,1,4380_7778208_1610905,4380_331 -4380_77963,286,4380_15081,Dundalk,59467-00010-1,1,4380_7778208_1610905,4380_331 -4380_77963,288,4380_15082,Dundalk,59465-00011-1,1,4380_7778208_1610905,4380_331 -4380_77963,287,4380_15083,Dundalk,59459-00012-1,1,4380_7778208_1610905,4380_331 -4380_77963,291,4380_15084,Dundalk,59435-00013-1,1,4380_7778208_1610902,4380_337 -4380_77963,289,4380_15085,Dundalk,59461-00014-1,1,4380_7778208_1610905,4380_331 -4380_77963,292,4380_15086,Dundalk,59468-00016-1,1,4380_7778208_1610905,4380_331 -4380_77963,293,4380_15087,Dundalk,59466-00017-1,1,4380_7778208_1610905,4380_331 -4380_77963,290,4380_15088,Dundalk,59464-00015-1,1,4380_7778208_1610905,4380_331 -4380_77963,294,4380_15089,Dundalk,59460-00018-1,1,4380_7778208_1610905,4380_331 -4380_77947,286,4380_1509,Drop Off,50705-00010-1,0,4380_7778208_1011102,4380_22 -4380_77963,295,4380_15090,Dundalk,59462-00019-1,1,4380_7778208_1610905,4380_331 -4380_77963,296,4380_15091,Dundalk,59436-00021-1,1,4380_7778208_1610902,4380_337 -4380_77963,285,4380_15098,Dundalk,59377-00009-1,1,4380_7778208_1610901,4380_329 -4380_77963,286,4380_15099,Dundalk,59381-00010-1,1,4380_7778208_1610901,4380_329 -4380_77947,287,4380_1510,Drop Off,50707-00012-1,0,4380_7778208_1011102,4380_22 -4380_77963,288,4380_15100,Dundalk,59383-00011-1,1,4380_7778208_1610901,4380_329 -4380_77963,287,4380_15101,Dundalk,59375-00012-1,1,4380_7778208_1610901,4380_329 -4380_77963,291,4380_15102,Dundalk,59379-00013-1,1,4380_7778208_1610901,4380_335 -4380_77963,289,4380_15103,Dundalk,59373-00014-1,1,4380_7778208_1610901,4380_329 -4380_77963,292,4380_15104,Dundalk,59382-00016-1,1,4380_7778208_1610901,4380_329 -4380_77963,293,4380_15105,Dundalk,59384-00017-1,1,4380_7778208_1610901,4380_329 -4380_77963,290,4380_15106,Dundalk,59378-00015-1,1,4380_7778208_1610901,4380_329 -4380_77963,294,4380_15107,Dundalk,59376-00018-1,1,4380_7778208_1610901,4380_329 -4380_77963,295,4380_15108,Dundalk,59374-00019-1,1,4380_7778208_1610901,4380_329 -4380_77963,296,4380_15109,Dundalk,59380-00021-1,1,4380_7778208_1610901,4380_335 -4380_77947,288,4380_1511,Drop Off,50711-00011-1,0,4380_7778208_1011102,4380_22 -4380_77963,285,4380_15116,Dundalk,59485-00009-1,1,4380_7778208_1610905,4380_326 -4380_77963,286,4380_15117,Dundalk,59481-00010-1,1,4380_7778208_1610905,4380_326 -4380_77963,288,4380_15118,Dundalk,59479-00011-1,1,4380_7778208_1610905,4380_326 -4380_77963,287,4380_15119,Dundalk,59487-00012-1,1,4380_7778208_1610905,4380_326 -4380_77947,289,4380_1512,Drop Off,50709-00014-1,0,4380_7778208_1011102,4380_22 -4380_77963,291,4380_15120,Dundalk,59439-00013-1,1,4380_7778208_1610902,4380_333 -4380_77963,289,4380_15121,Dundalk,59483-00014-1,1,4380_7778208_1610905,4380_326 -4380_77963,292,4380_15122,Dundalk,59482-00016-1,1,4380_7778208_1610905,4380_326 -4380_77963,293,4380_15123,Dundalk,59480-00017-1,1,4380_7778208_1610905,4380_326 -4380_77963,290,4380_15124,Dundalk,59486-00015-1,1,4380_7778208_1610905,4380_326 -4380_77963,294,4380_15125,Dundalk,59488-00018-1,1,4380_7778208_1610905,4380_326 -4380_77963,295,4380_15126,Dundalk,59484-00019-1,1,4380_7778208_1610905,4380_326 -4380_77963,296,4380_15127,Dundalk,59440-00021-1,1,4380_7778208_1610902,4380_333 -4380_77947,290,4380_1513,Drop Off,50704-00015-1,0,4380_7778208_1011102,4380_22 -4380_77963,285,4380_15134,Dundalk,49639-00009-1,1,4380_7778208_1000901,4380_325 -4380_77963,286,4380_15135,Dundalk,49645-00010-1,1,4380_7778208_1000901,4380_325 -4380_77963,287,4380_15136,Dundalk,49647-00012-1,1,4380_7778208_1000901,4380_325 -4380_77963,288,4380_15137,Dundalk,49643-00011-1,1,4380_7778208_1000901,4380_325 -4380_77963,289,4380_15138,Dundalk,49641-00014-1,1,4380_7778208_1000901,4380_325 -4380_77963,290,4380_15139,Dundalk,49640-00015-1,1,4380_7778208_1000901,4380_325 -4380_77947,292,4380_1514,Drop Off,50706-00016-1,0,4380_7778208_1011102,4380_22 -4380_77963,291,4380_15140,Dundalk,49722-00013-1,1,4380_7778208_1000903,4380_332 -4380_77963,292,4380_15141,Dundalk,49646-00016-1,1,4380_7778208_1000901,4380_325 -4380_77963,293,4380_15142,Dundalk,49644-00017-1,1,4380_7778208_1000901,4380_325 -4380_77963,294,4380_15143,Dundalk,49648-00018-1,1,4380_7778208_1000901,4380_325 -4380_77963,295,4380_15144,Dundalk,49642-00019-1,1,4380_7778208_1000901,4380_325 -4380_77963,296,4380_15145,Dundalk,49723-00021-1,1,4380_7778208_1000903,4380_332 -4380_77947,293,4380_1515,Drop Off,50712-00017-1,0,4380_7778208_1011102,4380_22 -4380_77963,285,4380_15151,Strandhill,49699-00009-1,1,4380_7778208_1000902,4380_327 -4380_77963,286,4380_15152,Strandhill,49693-00010-1,1,4380_7778208_1000902,4380_327 -4380_77963,287,4380_15153,Strandhill,49695-00012-1,1,4380_7778208_1000902,4380_327 -4380_77963,288,4380_15154,Strandhill,49697-00011-1,1,4380_7778208_1000902,4380_327 -4380_77963,289,4380_15155,Strandhill,49701-00014-1,1,4380_7778208_1000902,4380_327 -4380_77963,290,4380_15156,Strandhill,49700-00015-1,1,4380_7778208_1000902,4380_327 -4380_77963,292,4380_15157,Strandhill,49694-00016-1,1,4380_7778208_1000902,4380_327 -4380_77963,293,4380_15158,Strandhill,49698-00017-1,1,4380_7778208_1000902,4380_327 -4380_77963,294,4380_15159,Strandhill,49696-00018-1,1,4380_7778208_1000902,4380_327 -4380_77947,294,4380_1516,Drop Off,50708-00018-1,0,4380_7778208_1011102,4380_22 -4380_77963,295,4380_15160,Strandhill,49702-00019-1,1,4380_7778208_1000902,4380_327 -4380_77963,285,4380_15167,Dundalk,49661-00009-1,1,4380_7778208_1000901,4380_326 -4380_77963,286,4380_15168,Dundalk,49663-00010-1,1,4380_7778208_1000901,4380_326 -4380_77963,287,4380_15169,Dundalk,49665-00012-1,1,4380_7778208_1000901,4380_326 -4380_77947,295,4380_1517,Drop Off,50710-00019-1,0,4380_7778208_1011102,4380_22 -4380_77963,288,4380_15170,Dundalk,49659-00011-1,1,4380_7778208_1000901,4380_326 -4380_77963,289,4380_15171,Dundalk,49667-00014-1,1,4380_7778208_1000901,4380_326 -4380_77963,290,4380_15172,Dundalk,49662-00015-1,1,4380_7778208_1000901,4380_326 -4380_77963,291,4380_15173,Dundalk,49727-00013-1,1,4380_7778208_1000903,4380_333 -4380_77963,292,4380_15174,Dundalk,49664-00016-1,1,4380_7778208_1000901,4380_326 -4380_77963,293,4380_15175,Dundalk,49660-00017-1,1,4380_7778208_1000901,4380_326 -4380_77963,294,4380_15176,Dundalk,49666-00018-1,1,4380_7778208_1000901,4380_326 -4380_77963,295,4380_15177,Dundalk,49668-00019-1,1,4380_7778208_1000901,4380_326 -4380_77963,296,4380_15178,Dundalk,49728-00021-1,1,4380_7778208_1000903,4380_333 -4380_77963,285,4380_15185,Dundalk,59427-00009-1,1,4380_7778208_1610901,4380_330 -4380_77963,286,4380_15186,Dundalk,59421-00010-1,1,4380_7778208_1610901,4380_330 -4380_77963,288,4380_15187,Dundalk,59429-00011-1,1,4380_7778208_1610901,4380_330 -4380_77963,287,4380_15188,Dundalk,59425-00012-1,1,4380_7778208_1610901,4380_330 -4380_77963,291,4380_15189,Dundalk,59431-00013-1,1,4380_7778208_1610901,4380_336 -4380_77963,289,4380_15190,Dundalk,59423-00014-1,1,4380_7778208_1610901,4380_330 -4380_77963,292,4380_15191,Dundalk,59422-00016-1,1,4380_7778208_1610901,4380_330 -4380_77963,293,4380_15192,Dundalk,59430-00017-1,1,4380_7778208_1610901,4380_330 -4380_77963,290,4380_15193,Dundalk,59428-00015-1,1,4380_7778208_1610901,4380_330 -4380_77963,294,4380_15194,Dundalk,59426-00018-1,1,4380_7778208_1610901,4380_330 -4380_77963,295,4380_15195,Dundalk,59424-00019-1,1,4380_7778208_1610901,4380_330 -4380_77963,296,4380_15196,Dundalk,59432-00021-1,1,4380_7778208_1610901,4380_336 -4380_77946,285,4380_152,Dundalk,50487-00009-1,0,4380_7778208_1000915,4380_1 -4380_77947,297,4380_1520,Drop Off,50713-00008-1,0,4380_7778208_1011102,4380_22 -4380_77964,285,4380_15202,Monaghan,59547-00009-1,0,4380_7778208_1620901,4380_338 -4380_77964,286,4380_15203,Monaghan,59539-00010-1,0,4380_7778208_1620901,4380_338 -4380_77964,288,4380_15204,Monaghan,59541-00011-1,0,4380_7778208_1620901,4380_338 -4380_77964,287,4380_15205,Monaghan,59545-00012-1,0,4380_7778208_1620901,4380_338 -4380_77964,289,4380_15206,Monaghan,59543-00014-1,0,4380_7778208_1620901,4380_338 -4380_77964,292,4380_15207,Monaghan,59540-00016-1,0,4380_7778208_1620901,4380_338 -4380_77964,293,4380_15208,Monaghan,59542-00017-1,0,4380_7778208_1620901,4380_338 -4380_77964,290,4380_15209,Monaghan,59548-00015-1,0,4380_7778208_1620901,4380_338 -4380_77947,291,4380_1521,Drop Off,50930-00013-1,0,4380_7778208_1011104,4380_24 -4380_77964,294,4380_15210,Monaghan,59546-00018-1,0,4380_7778208_1620901,4380_338 -4380_77964,295,4380_15211,Monaghan,59544-00019-1,0,4380_7778208_1620901,4380_338 -4380_77964,285,4380_15217,Dundalk,59535-00009-1,1,4380_7778208_1620901,4380_339 -4380_77964,286,4380_15218,Dundalk,59537-00010-1,1,4380_7778208_1620901,4380_339 -4380_77964,288,4380_15219,Dundalk,59529-00011-1,1,4380_7778208_1620901,4380_339 -4380_77947,296,4380_1522,Drop Off,50931-00021-1,0,4380_7778208_1011104,4380_24 -4380_77964,287,4380_15220,Dundalk,59533-00012-1,1,4380_7778208_1620901,4380_339 -4380_77964,289,4380_15221,Dundalk,59531-00014-1,1,4380_7778208_1620901,4380_339 -4380_77964,292,4380_15222,Dundalk,59538-00016-1,1,4380_7778208_1620901,4380_339 -4380_77964,293,4380_15223,Dundalk,59530-00017-1,1,4380_7778208_1620901,4380_339 -4380_77964,290,4380_15224,Dundalk,59536-00015-1,1,4380_7778208_1620901,4380_339 -4380_77964,294,4380_15225,Dundalk,59534-00018-1,1,4380_7778208_1620901,4380_339 -4380_77964,295,4380_15226,Dundalk,59532-00019-1,1,4380_7778208_1620901,4380_339 -4380_77965,285,4380_15234,Mullingar,59623-00009-1,0,4380_7778208_1670901,4380_340 -4380_77965,286,4380_15235,Mullingar,59621-00010-1,0,4380_7778208_1670901,4380_340 -4380_77965,297,4380_15236,Mullingar,59618-00008-1,0,4380_7778208_1670901,4380_342 -4380_77965,288,4380_15237,Mullingar,59616-00011-1,0,4380_7778208_1670901,4380_340 -4380_77965,287,4380_15238,Mullingar,59625-00012-1,0,4380_7778208_1670901,4380_340 -4380_77965,291,4380_15239,Mullingar,59619-00013-1,0,4380_7778208_1670901,4380_342 -4380_77965,289,4380_15240,Mullingar,59614-00014-1,0,4380_7778208_1670901,4380_340 -4380_77965,292,4380_15241,Mullingar,59622-00016-1,0,4380_7778208_1670901,4380_340 -4380_77965,293,4380_15242,Mullingar,59617-00017-1,0,4380_7778208_1670901,4380_340 -4380_77965,290,4380_15243,Mullingar,59624-00015-1,0,4380_7778208_1670901,4380_340 -4380_77965,294,4380_15244,Mullingar,59626-00018-1,0,4380_7778208_1670901,4380_340 -4380_77965,295,4380_15245,Mullingar,59615-00019-1,0,4380_7778208_1670901,4380_340 -4380_77965,296,4380_15246,Mullingar,59620-00021-1,0,4380_7778208_1670901,4380_342 -4380_77965,285,4380_15254,Ardee,59692-00009-1,0,4380_7778208_1670902,4380_341 -4380_77965,286,4380_15255,Ardee,59699-00010-1,0,4380_7778208_1670902,4380_341 -4380_77965,297,4380_15256,Ardee,59694-00008-1,0,4380_7778208_1670902,4380_343 -4380_77965,288,4380_15257,Ardee,59695-00011-1,0,4380_7778208_1670902,4380_341 -4380_77965,287,4380_15258,Ardee,59703-00012-1,0,4380_7778208_1670902,4380_341 -4380_77965,291,4380_15259,Ardee,59701-00013-1,0,4380_7778208_1670902,4380_343 -4380_77965,289,4380_15260,Ardee,59697-00014-1,0,4380_7778208_1670902,4380_341 -4380_77965,292,4380_15261,Ardee,59700-00016-1,0,4380_7778208_1670902,4380_341 -4380_77965,293,4380_15262,Ardee,59696-00017-1,0,4380_7778208_1670902,4380_341 -4380_77965,290,4380_15263,Ardee,59693-00015-1,0,4380_7778208_1670902,4380_341 -4380_77965,294,4380_15264,Ardee,59704-00018-1,0,4380_7778208_1670902,4380_341 -4380_77965,295,4380_15265,Ardee,59698-00019-1,0,4380_7778208_1670902,4380_341 -4380_77965,296,4380_15266,Ardee,59702-00021-1,0,4380_7778208_1670902,4380_343 -4380_77965,285,4380_15274,Ardee,59781-00009-1,0,4380_7778208_1670903,4380_341 -4380_77965,286,4380_15275,Ardee,59776-00010-1,0,4380_7778208_1670903,4380_341 -4380_77965,297,4380_15276,Ardee,59780-00008-1,0,4380_7778208_1670903,4380_343 -4380_77965,288,4380_15277,Ardee,59772-00011-1,0,4380_7778208_1670903,4380_341 -4380_77965,287,4380_15278,Ardee,59778-00012-1,0,4380_7778208_1670903,4380_341 -4380_77965,291,4380_15279,Ardee,59774-00013-1,0,4380_7778208_1670903,4380_343 -4380_77947,285,4380_1528,Drop Off,50938-00009-1,0,4380_7778208_1011104,4380_22 -4380_77965,289,4380_15280,Ardee,59770-00014-1,0,4380_7778208_1670903,4380_341 -4380_77965,292,4380_15281,Ardee,59777-00016-1,0,4380_7778208_1670903,4380_341 -4380_77965,293,4380_15282,Ardee,59773-00017-1,0,4380_7778208_1670903,4380_341 -4380_77965,290,4380_15283,Ardee,59782-00015-1,0,4380_7778208_1670903,4380_341 -4380_77965,294,4380_15284,Ardee,59779-00018-1,0,4380_7778208_1670903,4380_341 -4380_77965,295,4380_15285,Ardee,59771-00019-1,0,4380_7778208_1670903,4380_341 -4380_77965,296,4380_15286,Ardee,59775-00021-1,0,4380_7778208_1670903,4380_343 -4380_77947,286,4380_1529,Drop Off,50932-00010-1,0,4380_7778208_1011104,4380_22 -4380_77965,285,4380_15294,Mullingar,59565-00009-1,0,4380_7778208_1670101,4380_340 -4380_77965,286,4380_15295,Mullingar,59569-00010-1,0,4380_7778208_1670101,4380_340 -4380_77965,297,4380_15296,Mullingar,59562-00008-1,0,4380_7778208_1670101,4380_342 -4380_77965,288,4380_15297,Mullingar,59567-00011-1,0,4380_7778208_1670101,4380_340 -4380_77965,287,4380_15298,Mullingar,59563-00012-1,0,4380_7778208_1670101,4380_340 -4380_77965,291,4380_15299,Mullingar,59571-00013-1,0,4380_7778208_1670101,4380_342 -4380_77946,286,4380_153,Dundalk,50491-00010-1,0,4380_7778208_1000915,4380_1 -4380_77947,288,4380_1530,Drop Off,50934-00011-1,0,4380_7778208_1011104,4380_22 -4380_77965,289,4380_15300,Mullingar,59573-00014-1,0,4380_7778208_1670101,4380_340 -4380_77965,292,4380_15301,Mullingar,59570-00016-1,0,4380_7778208_1670101,4380_340 -4380_77965,293,4380_15302,Mullingar,59568-00017-1,0,4380_7778208_1670101,4380_340 -4380_77965,290,4380_15303,Mullingar,59566-00015-1,0,4380_7778208_1670101,4380_340 -4380_77965,294,4380_15304,Mullingar,59564-00018-1,0,4380_7778208_1670101,4380_340 -4380_77965,295,4380_15305,Mullingar,59574-00019-1,0,4380_7778208_1670101,4380_340 -4380_77965,296,4380_15306,Mullingar,59572-00021-1,0,4380_7778208_1670101,4380_342 -4380_77947,287,4380_1531,Drop Off,50940-00012-1,0,4380_7778208_1011104,4380_22 -4380_77965,285,4380_15314,Ardee,59801-00009-1,0,4380_7778208_1670903,4380_341 -4380_77965,286,4380_15315,Ardee,59807-00010-1,0,4380_7778208_1670903,4380_341 -4380_77965,297,4380_15316,Ardee,59798-00008-1,0,4380_7778208_1670903,4380_343 -4380_77965,288,4380_15317,Ardee,59803-00011-1,0,4380_7778208_1670903,4380_341 -4380_77965,287,4380_15318,Ardee,59796-00012-1,0,4380_7778208_1670903,4380_341 -4380_77965,291,4380_15319,Ardee,59805-00013-1,0,4380_7778208_1670903,4380_343 -4380_77947,289,4380_1532,Drop Off,50936-00014-1,0,4380_7778208_1011104,4380_22 -4380_77965,289,4380_15320,Ardee,59799-00014-1,0,4380_7778208_1670903,4380_341 -4380_77965,292,4380_15321,Ardee,59808-00016-1,0,4380_7778208_1670903,4380_341 -4380_77965,293,4380_15322,Ardee,59804-00017-1,0,4380_7778208_1670903,4380_341 -4380_77965,290,4380_15323,Ardee,59802-00015-1,0,4380_7778208_1670903,4380_341 -4380_77965,294,4380_15324,Ardee,59797-00018-1,0,4380_7778208_1670903,4380_341 -4380_77965,295,4380_15325,Ardee,59800-00019-1,0,4380_7778208_1670903,4380_341 -4380_77965,296,4380_15326,Ardee,59806-00021-1,0,4380_7778208_1670903,4380_343 -4380_77947,290,4380_1533,Drop Off,50939-00015-1,0,4380_7778208_1011104,4380_22 -4380_77965,285,4380_15334,Ardee,59718-00009-1,0,4380_7778208_1670902,4380_341 -4380_77965,286,4380_15335,Ardee,59728-00010-1,0,4380_7778208_1670902,4380_341 -4380_77965,297,4380_15336,Ardee,59730-00008-1,0,4380_7778208_1670902,4380_341 -4380_77965,288,4380_15337,Ardee,59722-00011-1,0,4380_7778208_1670902,4380_341 -4380_77965,287,4380_15338,Ardee,59724-00012-1,0,4380_7778208_1670902,4380_341 -4380_77965,291,4380_15339,Ardee,59720-00013-1,0,4380_7778208_1670902,4380_341 -4380_77947,292,4380_1534,Drop Off,50933-00016-1,0,4380_7778208_1011104,4380_22 -4380_77965,289,4380_15340,Ardee,59726-00014-1,0,4380_7778208_1670902,4380_341 -4380_77965,292,4380_15341,Ardee,59729-00016-1,0,4380_7778208_1670902,4380_341 -4380_77965,293,4380_15342,Ardee,59723-00017-1,0,4380_7778208_1670902,4380_341 -4380_77965,290,4380_15343,Ardee,59719-00015-1,0,4380_7778208_1670902,4380_341 -4380_77965,294,4380_15344,Ardee,59725-00018-1,0,4380_7778208_1670902,4380_341 -4380_77965,295,4380_15345,Ardee,59727-00019-1,0,4380_7778208_1670902,4380_341 -4380_77965,296,4380_15346,Ardee,59721-00021-1,0,4380_7778208_1670902,4380_341 -4380_77947,293,4380_1535,Drop Off,50935-00017-1,0,4380_7778208_1011104,4380_22 -4380_77965,285,4380_15354,Mullingar,59651-00009-1,0,4380_7778208_1670901,4380_340 -4380_77965,286,4380_15355,Mullingar,59647-00010-1,0,4380_7778208_1670901,4380_340 -4380_77965,297,4380_15356,Mullingar,59646-00008-1,0,4380_7778208_1670901,4380_342 -4380_77965,288,4380_15357,Mullingar,59644-00011-1,0,4380_7778208_1670901,4380_340 -4380_77965,287,4380_15358,Mullingar,59649-00012-1,0,4380_7778208_1670901,4380_340 -4380_77965,291,4380_15359,Mullingar,59642-00013-1,0,4380_7778208_1670901,4380_342 -4380_77947,294,4380_1536,Drop Off,50941-00018-1,0,4380_7778208_1011104,4380_22 -4380_77965,289,4380_15360,Mullingar,59640-00014-1,0,4380_7778208_1670901,4380_340 -4380_77965,292,4380_15361,Mullingar,59648-00016-1,0,4380_7778208_1670901,4380_340 -4380_77965,293,4380_15362,Mullingar,59645-00017-1,0,4380_7778208_1670901,4380_340 -4380_77965,290,4380_15363,Mullingar,59652-00015-1,0,4380_7778208_1670901,4380_340 -4380_77965,294,4380_15364,Mullingar,59650-00018-1,0,4380_7778208_1670901,4380_340 -4380_77965,295,4380_15365,Mullingar,59641-00019-1,0,4380_7778208_1670901,4380_340 -4380_77965,296,4380_15366,Mullingar,59643-00021-1,0,4380_7778208_1670901,4380_342 -4380_77947,295,4380_1537,Drop Off,50937-00019-1,0,4380_7778208_1011104,4380_22 -4380_77965,285,4380_15374,Ardee,59748-00009-1,0,4380_7778208_1670902,4380_341 -4380_77965,286,4380_15375,Ardee,59744-00010-1,0,4380_7778208_1670902,4380_341 -4380_77965,297,4380_15376,Ardee,59756-00008-1,0,4380_7778208_1670902,4380_343 -4380_77965,288,4380_15377,Ardee,59750-00011-1,0,4380_7778208_1670902,4380_341 -4380_77965,287,4380_15378,Ardee,59752-00012-1,0,4380_7778208_1670902,4380_341 -4380_77965,291,4380_15379,Ardee,59754-00013-1,0,4380_7778208_1670902,4380_343 -4380_77965,289,4380_15380,Ardee,59746-00014-1,0,4380_7778208_1670902,4380_341 -4380_77965,292,4380_15381,Ardee,59745-00016-1,0,4380_7778208_1670902,4380_341 -4380_77965,293,4380_15382,Ardee,59751-00017-1,0,4380_7778208_1670902,4380_341 -4380_77965,290,4380_15383,Ardee,59749-00015-1,0,4380_7778208_1670902,4380_341 -4380_77965,294,4380_15384,Ardee,59753-00018-1,0,4380_7778208_1670902,4380_341 -4380_77965,295,4380_15385,Ardee,59747-00019-1,0,4380_7778208_1670902,4380_341 -4380_77965,296,4380_15386,Ardee,59755-00021-1,0,4380_7778208_1670902,4380_343 -4380_77965,285,4380_15394,Ardee,59832-00009-1,0,4380_7778208_1670903,4380_341 -4380_77965,286,4380_15395,Ardee,59822-00010-1,0,4380_7778208_1670903,4380_341 -4380_77965,297,4380_15396,Ardee,59834-00008-1,0,4380_7778208_1670903,4380_343 -4380_77965,288,4380_15397,Ardee,59830-00011-1,0,4380_7778208_1670903,4380_341 -4380_77965,287,4380_15398,Ardee,59826-00012-1,0,4380_7778208_1670903,4380_341 -4380_77965,291,4380_15399,Ardee,59824-00013-1,0,4380_7778208_1670903,4380_343 -4380_77946,297,4380_154,Dundalk,50226-00008-1,0,4380_7778208_1000909,4380_2 -4380_77965,289,4380_15400,Ardee,59828-00014-1,0,4380_7778208_1670903,4380_341 -4380_77965,292,4380_15401,Ardee,59823-00016-1,0,4380_7778208_1670903,4380_341 -4380_77965,293,4380_15402,Ardee,59831-00017-1,0,4380_7778208_1670903,4380_341 -4380_77965,290,4380_15403,Ardee,59833-00015-1,0,4380_7778208_1670903,4380_341 -4380_77965,294,4380_15404,Ardee,59827-00018-1,0,4380_7778208_1670903,4380_341 -4380_77965,295,4380_15405,Ardee,59829-00019-1,0,4380_7778208_1670903,4380_341 -4380_77965,296,4380_15406,Ardee,59825-00021-1,0,4380_7778208_1670903,4380_343 -4380_77965,285,4380_15414,Mullingar,59590-00009-1,0,4380_7778208_1670101,4380_340 -4380_77965,286,4380_15415,Mullingar,59597-00010-1,0,4380_7778208_1670101,4380_340 -4380_77965,297,4380_15416,Mullingar,59594-00008-1,0,4380_7778208_1670101,4380_342 -4380_77965,288,4380_15417,Mullingar,59588-00011-1,0,4380_7778208_1670101,4380_340 -4380_77965,287,4380_15418,Mullingar,59592-00012-1,0,4380_7778208_1670101,4380_340 -4380_77965,291,4380_15419,Mullingar,59595-00013-1,0,4380_7778208_1670101,4380_342 -4380_77965,289,4380_15420,Mullingar,59599-00014-1,0,4380_7778208_1670101,4380_340 -4380_77965,292,4380_15421,Mullingar,59598-00016-1,0,4380_7778208_1670101,4380_340 -4380_77965,293,4380_15422,Mullingar,59589-00017-1,0,4380_7778208_1670101,4380_340 -4380_77965,290,4380_15423,Mullingar,59591-00015-1,0,4380_7778208_1670101,4380_340 -4380_77965,294,4380_15424,Mullingar,59593-00018-1,0,4380_7778208_1670101,4380_340 -4380_77965,295,4380_15425,Mullingar,59600-00019-1,0,4380_7778208_1670101,4380_340 -4380_77965,296,4380_15426,Mullingar,59596-00021-1,0,4380_7778208_1670101,4380_342 -4380_77965,285,4380_15434,Ardee,59857-00009-1,0,4380_7778208_1670903,4380_341 -4380_77965,286,4380_15435,Ardee,59859-00010-1,0,4380_7778208_1670903,4380_341 -4380_77965,297,4380_15436,Ardee,59850-00008-1,0,4380_7778208_1670903,4380_343 -4380_77965,288,4380_15437,Ardee,59855-00011-1,0,4380_7778208_1670903,4380_341 -4380_77965,287,4380_15438,Ardee,59851-00012-1,0,4380_7778208_1670903,4380_341 -4380_77965,291,4380_15439,Ardee,59848-00013-1,0,4380_7778208_1670903,4380_341 -4380_77947,285,4380_1544,Drop Off,51563-00009-1,0,4380_7778208_1011112,4380_22 -4380_77965,289,4380_15440,Ardee,59853-00014-1,0,4380_7778208_1670903,4380_341 -4380_77965,292,4380_15441,Ardee,59860-00016-1,0,4380_7778208_1670903,4380_341 -4380_77965,293,4380_15442,Ardee,59856-00017-1,0,4380_7778208_1670903,4380_341 -4380_77965,290,4380_15443,Ardee,59858-00015-1,0,4380_7778208_1670903,4380_341 -4380_77965,294,4380_15444,Ardee,59852-00018-1,0,4380_7778208_1670903,4380_341 -4380_77965,295,4380_15445,Ardee,59854-00019-1,0,4380_7778208_1670903,4380_341 -4380_77965,296,4380_15446,Ardee,59849-00021-1,0,4380_7778208_1670903,4380_341 -4380_77947,286,4380_1545,Drop Off,51565-00010-1,0,4380_7778208_1011112,4380_22 -4380_77965,285,4380_15454,Mullingar,59668-00009-1,0,4380_7778208_1670901,4380_340 -4380_77965,286,4380_15455,Mullingar,59670-00010-1,0,4380_7778208_1670901,4380_340 -4380_77965,297,4380_15456,Mullingar,59678-00008-1,0,4380_7778208_1670901,4380_342 -4380_77965,288,4380_15457,Mullingar,59672-00011-1,0,4380_7778208_1670901,4380_340 -4380_77965,287,4380_15458,Mullingar,59676-00012-1,0,4380_7778208_1670901,4380_340 -4380_77965,291,4380_15459,Mullingar,59666-00013-1,0,4380_7778208_1670901,4380_342 -4380_77947,288,4380_1546,Drop Off,51557-00011-1,0,4380_7778208_1011112,4380_22 -4380_77965,289,4380_15460,Mullingar,59674-00014-1,0,4380_7778208_1670901,4380_340 -4380_77965,292,4380_15461,Mullingar,59671-00016-1,0,4380_7778208_1670901,4380_340 -4380_77965,293,4380_15462,Mullingar,59673-00017-1,0,4380_7778208_1670901,4380_340 -4380_77965,290,4380_15463,Mullingar,59669-00015-1,0,4380_7778208_1670901,4380_340 -4380_77965,294,4380_15464,Mullingar,59677-00018-1,0,4380_7778208_1670901,4380_340 -4380_77965,295,4380_15465,Mullingar,59675-00019-1,0,4380_7778208_1670901,4380_340 -4380_77965,296,4380_15466,Mullingar,59667-00021-1,0,4380_7778208_1670901,4380_342 -4380_77947,287,4380_1547,Drop Off,51559-00012-1,0,4380_7778208_1011112,4380_22 -4380_77965,285,4380_15474,Ardee,59883-00009-1,0,4380_7778208_1670903,4380_341 -4380_77965,286,4380_15475,Ardee,59874-00010-1,0,4380_7778208_1670903,4380_341 -4380_77965,297,4380_15476,Ardee,59880-00008-1,0,4380_7778208_1670903,4380_343 -4380_77965,288,4380_15477,Ardee,59878-00011-1,0,4380_7778208_1670903,4380_341 -4380_77965,287,4380_15478,Ardee,59881-00012-1,0,4380_7778208_1670903,4380_341 -4380_77965,291,4380_15479,Ardee,59876-00013-1,0,4380_7778208_1670903,4380_343 -4380_77947,289,4380_1548,Drop Off,51561-00014-1,0,4380_7778208_1011112,4380_22 -4380_77965,289,4380_15480,Ardee,59885-00014-1,0,4380_7778208_1670903,4380_341 -4380_77965,292,4380_15481,Ardee,59875-00016-1,0,4380_7778208_1670903,4380_341 -4380_77965,293,4380_15482,Ardee,59879-00017-1,0,4380_7778208_1670903,4380_341 -4380_77965,290,4380_15483,Ardee,59884-00015-1,0,4380_7778208_1670903,4380_341 -4380_77965,294,4380_15484,Ardee,59882-00018-1,0,4380_7778208_1670903,4380_341 -4380_77965,295,4380_15485,Ardee,59886-00019-1,0,4380_7778208_1670903,4380_341 -4380_77965,296,4380_15486,Ardee,59877-00021-1,0,4380_7778208_1670903,4380_343 -4380_77947,290,4380_1549,Drop Off,51564-00015-1,0,4380_7778208_1011112,4380_22 -4380_77965,285,4380_15494,Ardee,59893-00009-1,0,4380_7778208_1670903,4380_341 -4380_77965,286,4380_15495,Ardee,59891-00010-1,0,4380_7778208_1670903,4380_341 -4380_77965,297,4380_15496,Ardee,59899-00008-1,0,4380_7778208_1670903,4380_343 -4380_77965,288,4380_15497,Ardee,59895-00011-1,0,4380_7778208_1670903,4380_341 -4380_77965,287,4380_15498,Ardee,59889-00012-1,0,4380_7778208_1670903,4380_341 -4380_77965,291,4380_15499,Ardee,59887-00013-1,0,4380_7778208_1670903,4380_343 -4380_77946,287,4380_155,Dundalk,50493-00012-1,0,4380_7778208_1000915,4380_1 -4380_77947,291,4380_1550,Drop Off,50714-00013-1,0,4380_7778208_1011102,4380_24 -4380_77965,289,4380_15500,Ardee,59897-00014-1,0,4380_7778208_1670903,4380_341 -4380_77965,292,4380_15501,Ardee,59892-00016-1,0,4380_7778208_1670903,4380_341 -4380_77965,293,4380_15502,Ardee,59896-00017-1,0,4380_7778208_1670903,4380_341 -4380_77965,290,4380_15503,Ardee,59894-00015-1,0,4380_7778208_1670903,4380_341 -4380_77965,294,4380_15504,Ardee,59890-00018-1,0,4380_7778208_1670903,4380_341 -4380_77965,295,4380_15505,Ardee,59898-00019-1,0,4380_7778208_1670903,4380_341 -4380_77965,296,4380_15506,Ardee,59888-00021-1,0,4380_7778208_1670903,4380_343 -4380_77947,292,4380_1551,Drop Off,51566-00016-1,0,4380_7778208_1011112,4380_22 -4380_77965,285,4380_15512,Dundalk,59557-00009-1,1,4380_7778208_1670101,4380_344 -4380_77965,286,4380_15513,Dundalk,59555-00010-1,1,4380_7778208_1670101,4380_344 -4380_77965,288,4380_15514,Dundalk,59553-00011-1,1,4380_7778208_1670101,4380_344 -4380_77965,287,4380_15515,Dundalk,59551-00012-1,1,4380_7778208_1670101,4380_344 -4380_77965,289,4380_15516,Dundalk,59549-00014-1,1,4380_7778208_1670101,4380_344 -4380_77965,292,4380_15517,Dundalk,59556-00016-1,1,4380_7778208_1670101,4380_344 -4380_77965,293,4380_15518,Dundalk,59554-00017-1,1,4380_7778208_1670101,4380_344 -4380_77965,290,4380_15519,Dundalk,59558-00015-1,1,4380_7778208_1670101,4380_344 -4380_77947,293,4380_1552,Drop Off,51558-00017-1,0,4380_7778208_1011112,4380_22 -4380_77965,294,4380_15520,Dundalk,59552-00018-1,1,4380_7778208_1670101,4380_344 -4380_77965,295,4380_15521,Dundalk,59550-00019-1,1,4380_7778208_1670101,4380_344 -4380_77965,297,4380_15524,Dundalk,59559-00008-1,1,4380_7778208_1670101,4380_344 -4380_77965,291,4380_15525,Dundalk,59560-00013-1,1,4380_7778208_1670101,4380_344 -4380_77965,296,4380_15526,Dundalk,59561-00021-1,1,4380_7778208_1670101,4380_344 -4380_77947,294,4380_1553,Drop Off,51560-00018-1,0,4380_7778208_1011112,4380_22 -4380_77965,285,4380_15534,Dundalk,59683-00009-1,1,4380_7778208_1670902,4380_345 -4380_77965,286,4380_15535,Dundalk,59690-00010-1,1,4380_7778208_1670902,4380_345 -4380_77965,297,4380_15536,Dundalk,59687-00008-1,1,4380_7778208_1670902,4380_346 -4380_77965,288,4380_15537,Dundalk,59681-00011-1,1,4380_7778208_1670902,4380_345 -4380_77965,287,4380_15538,Dundalk,59688-00012-1,1,4380_7778208_1670902,4380_345 -4380_77965,291,4380_15539,Dundalk,59685-00013-1,1,4380_7778208_1670902,4380_346 -4380_77947,295,4380_1554,Drop Off,51562-00019-1,0,4380_7778208_1011112,4380_22 -4380_77965,289,4380_15540,Dundalk,59679-00014-1,1,4380_7778208_1670902,4380_345 -4380_77965,292,4380_15541,Dundalk,59691-00016-1,1,4380_7778208_1670902,4380_345 -4380_77965,293,4380_15542,Dundalk,59682-00017-1,1,4380_7778208_1670902,4380_345 -4380_77965,290,4380_15543,Dundalk,59684-00015-1,1,4380_7778208_1670902,4380_345 -4380_77965,294,4380_15544,Dundalk,59689-00018-1,1,4380_7778208_1670902,4380_345 -4380_77965,295,4380_15545,Dundalk,59680-00019-1,1,4380_7778208_1670902,4380_345 -4380_77965,296,4380_15546,Dundalk,59686-00021-1,1,4380_7778208_1670902,4380_346 -4380_77947,296,4380_1555,Drop Off,50715-00021-1,0,4380_7778208_1011102,4380_24 -4380_77965,285,4380_15554,Dundalk,59705-00009-1,1,4380_7778208_1670902,4380_345 -4380_77965,286,4380_15555,Dundalk,59709-00010-1,1,4380_7778208_1670902,4380_345 -4380_77965,297,4380_15556,Dundalk,59711-00008-1,1,4380_7778208_1670902,4380_346 -4380_77965,288,4380_15557,Dundalk,59707-00011-1,1,4380_7778208_1670902,4380_345 -4380_77965,287,4380_15558,Dundalk,59716-00012-1,1,4380_7778208_1670902,4380_345 -4380_77965,291,4380_15559,Dundalk,59712-00013-1,1,4380_7778208_1670902,4380_346 -4380_77965,289,4380_15560,Dundalk,59714-00014-1,1,4380_7778208_1670902,4380_345 -4380_77965,292,4380_15561,Dundalk,59710-00016-1,1,4380_7778208_1670902,4380_345 -4380_77965,293,4380_15562,Dundalk,59708-00017-1,1,4380_7778208_1670902,4380_345 -4380_77965,290,4380_15563,Dundalk,59706-00015-1,1,4380_7778208_1670902,4380_345 -4380_77965,294,4380_15564,Dundalk,59717-00018-1,1,4380_7778208_1670902,4380_345 -4380_77965,295,4380_15565,Dundalk,59715-00019-1,1,4380_7778208_1670902,4380_345 -4380_77965,296,4380_15566,Dundalk,59713-00021-1,1,4380_7778208_1670902,4380_346 -4380_77965,285,4380_15572,Dundalk,59633-00009-1,1,4380_7778208_1670901,4380_344 -4380_77965,286,4380_15573,Dundalk,59635-00010-1,1,4380_7778208_1670901,4380_344 -4380_77965,288,4380_15574,Dundalk,59627-00011-1,1,4380_7778208_1670901,4380_344 -4380_77965,287,4380_15575,Dundalk,59631-00012-1,1,4380_7778208_1670901,4380_344 -4380_77965,289,4380_15576,Dundalk,59629-00014-1,1,4380_7778208_1670901,4380_344 -4380_77965,292,4380_15577,Dundalk,59636-00016-1,1,4380_7778208_1670901,4380_344 -4380_77965,293,4380_15578,Dundalk,59628-00017-1,1,4380_7778208_1670901,4380_344 -4380_77965,290,4380_15579,Dundalk,59634-00015-1,1,4380_7778208_1670901,4380_344 -4380_77965,294,4380_15580,Dundalk,59632-00018-1,1,4380_7778208_1670901,4380_344 -4380_77965,295,4380_15581,Dundalk,59630-00019-1,1,4380_7778208_1670901,4380_344 -4380_77965,297,4380_15584,Dundalk,59637-00008-1,1,4380_7778208_1670901,4380_344 -4380_77965,291,4380_15585,Dundalk,59638-00013-1,1,4380_7778208_1670901,4380_344 -4380_77965,296,4380_15586,Dundalk,59639-00021-1,1,4380_7778208_1670901,4380_344 -4380_77965,285,4380_15594,Dundalk,59792-00009-1,1,4380_7778208_1670903,4380_345 -4380_77965,286,4380_15595,Dundalk,59783-00010-1,1,4380_7778208_1670903,4380_345 -4380_77965,297,4380_15596,Dundalk,59789-00008-1,1,4380_7778208_1670903,4380_345 -4380_77965,288,4380_15597,Dundalk,59790-00011-1,1,4380_7778208_1670903,4380_345 -4380_77965,287,4380_15598,Dundalk,59785-00012-1,1,4380_7778208_1670903,4380_345 -4380_77965,291,4380_15599,Dundalk,59794-00013-1,1,4380_7778208_1670903,4380_345 -4380_77946,288,4380_156,Dundalk,50495-00011-1,0,4380_7778208_1000915,4380_1 -4380_77965,289,4380_15600,Dundalk,59787-00014-1,1,4380_7778208_1670903,4380_345 -4380_77965,292,4380_15601,Dundalk,59784-00016-1,1,4380_7778208_1670903,4380_345 -4380_77965,293,4380_15602,Dundalk,59791-00017-1,1,4380_7778208_1670903,4380_345 -4380_77965,290,4380_15603,Dundalk,59793-00015-1,1,4380_7778208_1670903,4380_345 -4380_77965,294,4380_15604,Dundalk,59786-00018-1,1,4380_7778208_1670903,4380_345 -4380_77965,295,4380_15605,Dundalk,59788-00019-1,1,4380_7778208_1670903,4380_345 -4380_77965,296,4380_15606,Dundalk,59795-00021-1,1,4380_7778208_1670903,4380_345 -4380_77947,285,4380_1561,Drop Off,50815-00009-1,0,4380_7778208_1011103,4380_22 -4380_77965,285,4380_15614,Dundalk,59814-00009-1,1,4380_7778208_1670903,4380_345 -4380_77965,286,4380_15615,Dundalk,59816-00010-1,1,4380_7778208_1670903,4380_345 -4380_77965,297,4380_15616,Dundalk,59809-00008-1,1,4380_7778208_1670903,4380_345 -4380_77965,288,4380_15617,Dundalk,59818-00011-1,1,4380_7778208_1670903,4380_345 -4380_77965,287,4380_15618,Dundalk,59820-00012-1,1,4380_7778208_1670903,4380_345 -4380_77965,291,4380_15619,Dundalk,59812-00013-1,1,4380_7778208_1670903,4380_345 -4380_77947,286,4380_1562,Drop Off,50817-00010-1,0,4380_7778208_1011103,4380_22 -4380_77965,289,4380_15620,Dundalk,59810-00014-1,1,4380_7778208_1670903,4380_345 -4380_77965,292,4380_15621,Dundalk,59817-00016-1,1,4380_7778208_1670903,4380_345 -4380_77965,293,4380_15622,Dundalk,59819-00017-1,1,4380_7778208_1670903,4380_345 -4380_77965,290,4380_15623,Dundalk,59815-00015-1,1,4380_7778208_1670903,4380_345 -4380_77965,294,4380_15624,Dundalk,59821-00018-1,1,4380_7778208_1670903,4380_345 -4380_77965,295,4380_15625,Dundalk,59811-00019-1,1,4380_7778208_1670903,4380_345 -4380_77965,296,4380_15626,Dundalk,59813-00021-1,1,4380_7778208_1670903,4380_345 -4380_77947,288,4380_1563,Drop Off,50811-00011-1,0,4380_7778208_1011103,4380_22 -4380_77965,285,4380_15632,Dundalk,59581-00009-1,1,4380_7778208_1670101,4380_344 -4380_77965,286,4380_15633,Dundalk,59583-00010-1,1,4380_7778208_1670101,4380_344 -4380_77965,288,4380_15634,Dundalk,59579-00011-1,1,4380_7778208_1670101,4380_344 -4380_77965,287,4380_15635,Dundalk,59577-00012-1,1,4380_7778208_1670101,4380_344 -4380_77965,289,4380_15636,Dundalk,59575-00014-1,1,4380_7778208_1670101,4380_344 -4380_77965,292,4380_15637,Dundalk,59584-00016-1,1,4380_7778208_1670101,4380_344 -4380_77965,293,4380_15638,Dundalk,59580-00017-1,1,4380_7778208_1670101,4380_344 -4380_77965,290,4380_15639,Dundalk,59582-00015-1,1,4380_7778208_1670101,4380_344 -4380_77947,287,4380_1564,Drop Off,50819-00012-1,0,4380_7778208_1011103,4380_22 -4380_77965,294,4380_15640,Dundalk,59578-00018-1,1,4380_7778208_1670101,4380_344 -4380_77965,295,4380_15641,Dundalk,59576-00019-1,1,4380_7778208_1670101,4380_344 -4380_77965,297,4380_15644,Dundalk,59585-00008-1,1,4380_7778208_1670101,4380_344 -4380_77965,291,4380_15645,Dundalk,59586-00013-1,1,4380_7778208_1670101,4380_344 -4380_77965,296,4380_15646,Dundalk,59587-00021-1,1,4380_7778208_1670101,4380_344 -4380_77947,289,4380_1565,Drop Off,50813-00014-1,0,4380_7778208_1011103,4380_22 -4380_77965,285,4380_15654,Dundalk,59734-00009-1,1,4380_7778208_1670902,4380_345 -4380_77965,286,4380_15655,Dundalk,59732-00010-1,1,4380_7778208_1670902,4380_345 -4380_77965,297,4380_15656,Dundalk,59731-00008-1,1,4380_7778208_1670902,4380_345 -4380_77965,288,4380_15657,Dundalk,59736-00011-1,1,4380_7778208_1670902,4380_345 -4380_77965,287,4380_15658,Dundalk,59738-00012-1,1,4380_7778208_1670902,4380_345 -4380_77965,291,4380_15659,Dundalk,59742-00013-1,1,4380_7778208_1670902,4380_345 -4380_77947,290,4380_1566,Drop Off,50816-00015-1,0,4380_7778208_1011103,4380_22 -4380_77965,289,4380_15660,Dundalk,59740-00014-1,1,4380_7778208_1670902,4380_345 -4380_77965,292,4380_15661,Dundalk,59733-00016-1,1,4380_7778208_1670902,4380_345 -4380_77965,293,4380_15662,Dundalk,59737-00017-1,1,4380_7778208_1670902,4380_345 -4380_77965,290,4380_15663,Dundalk,59735-00015-1,1,4380_7778208_1670902,4380_345 -4380_77965,294,4380_15664,Dundalk,59739-00018-1,1,4380_7778208_1670902,4380_345 -4380_77965,295,4380_15665,Dundalk,59741-00019-1,1,4380_7778208_1670902,4380_345 -4380_77965,296,4380_15666,Dundalk,59743-00021-1,1,4380_7778208_1670902,4380_345 -4380_77947,292,4380_1567,Drop Off,50818-00016-1,0,4380_7778208_1011103,4380_22 -4380_77965,285,4380_15674,Dundalk,59761-00009-1,1,4380_7778208_1670902,4380_345 -4380_77965,286,4380_15675,Dundalk,59759-00010-1,1,4380_7778208_1670902,4380_345 -4380_77965,297,4380_15676,Dundalk,59769-00008-1,1,4380_7778208_1670902,4380_345 -4380_77965,288,4380_15677,Dundalk,59757-00011-1,1,4380_7778208_1670902,4380_345 -4380_77965,287,4380_15678,Dundalk,59765-00012-1,1,4380_7778208_1670902,4380_345 -4380_77965,291,4380_15679,Dundalk,59767-00013-1,1,4380_7778208_1670902,4380_345 -4380_77947,293,4380_1568,Drop Off,50812-00017-1,0,4380_7778208_1011103,4380_22 -4380_77965,289,4380_15680,Dundalk,59763-00014-1,1,4380_7778208_1670902,4380_345 -4380_77965,292,4380_15681,Dundalk,59760-00016-1,1,4380_7778208_1670902,4380_345 -4380_77965,293,4380_15682,Dundalk,59758-00017-1,1,4380_7778208_1670902,4380_345 -4380_77965,290,4380_15683,Dundalk,59762-00015-1,1,4380_7778208_1670902,4380_345 -4380_77965,294,4380_15684,Dundalk,59766-00018-1,1,4380_7778208_1670902,4380_345 -4380_77965,295,4380_15685,Dundalk,59764-00019-1,1,4380_7778208_1670902,4380_345 -4380_77965,296,4380_15686,Dundalk,59768-00021-1,1,4380_7778208_1670902,4380_345 -4380_77947,294,4380_1569,Drop Off,50820-00018-1,0,4380_7778208_1011103,4380_22 -4380_77965,285,4380_15692,Dundalk,59661-00009-1,1,4380_7778208_1670901,4380_344 -4380_77965,286,4380_15693,Dundalk,59653-00010-1,1,4380_7778208_1670901,4380_344 -4380_77965,288,4380_15694,Dundalk,59657-00011-1,1,4380_7778208_1670901,4380_344 -4380_77965,287,4380_15695,Dundalk,59655-00012-1,1,4380_7778208_1670901,4380_344 -4380_77965,289,4380_15696,Dundalk,59659-00014-1,1,4380_7778208_1670901,4380_344 -4380_77965,292,4380_15697,Dundalk,59654-00016-1,1,4380_7778208_1670901,4380_344 -4380_77965,293,4380_15698,Dundalk,59658-00017-1,1,4380_7778208_1670901,4380_344 -4380_77965,290,4380_15699,Dundalk,59662-00015-1,1,4380_7778208_1670901,4380_344 -4380_77946,289,4380_157,Dundalk,50489-00014-1,0,4380_7778208_1000915,4380_1 -4380_77947,295,4380_1570,Drop Off,50814-00019-1,0,4380_7778208_1011103,4380_22 -4380_77965,294,4380_15700,Dundalk,59656-00018-1,1,4380_7778208_1670901,4380_344 -4380_77965,295,4380_15701,Dundalk,59660-00019-1,1,4380_7778208_1670901,4380_344 -4380_77965,297,4380_15704,Dundalk,59665-00008-1,1,4380_7778208_1670901,4380_344 -4380_77965,291,4380_15705,Dundalk,59663-00013-1,1,4380_7778208_1670901,4380_344 -4380_77965,296,4380_15706,Dundalk,59664-00021-1,1,4380_7778208_1670901,4380_344 -4380_77965,285,4380_15714,Dundalk,59846-00009-1,1,4380_7778208_1670903,4380_345 -4380_77965,286,4380_15715,Dundalk,59842-00010-1,1,4380_7778208_1670903,4380_345 -4380_77965,297,4380_15716,Dundalk,59841-00008-1,1,4380_7778208_1670903,4380_345 -4380_77965,288,4380_15717,Dundalk,59839-00011-1,1,4380_7778208_1670903,4380_345 -4380_77965,287,4380_15718,Dundalk,59844-00012-1,1,4380_7778208_1670903,4380_345 -4380_77965,291,4380_15719,Dundalk,59837-00013-1,1,4380_7778208_1670903,4380_345 -4380_77965,289,4380_15720,Dundalk,59835-00014-1,1,4380_7778208_1670903,4380_345 -4380_77965,292,4380_15721,Dundalk,59843-00016-1,1,4380_7778208_1670903,4380_345 -4380_77965,293,4380_15722,Dundalk,59840-00017-1,1,4380_7778208_1670903,4380_345 -4380_77965,290,4380_15723,Dundalk,59847-00015-1,1,4380_7778208_1670903,4380_345 -4380_77965,294,4380_15724,Dundalk,59845-00018-1,1,4380_7778208_1670903,4380_345 -4380_77965,295,4380_15725,Dundalk,59836-00019-1,1,4380_7778208_1670903,4380_345 -4380_77965,296,4380_15726,Dundalk,59838-00021-1,1,4380_7778208_1670903,4380_345 -4380_77947,297,4380_1573,Drop Off,50821-00008-1,0,4380_7778208_1011103,4380_22 -4380_77965,285,4380_15734,Dundalk,59869-00009-1,1,4380_7778208_1670903,4380_345 -4380_77965,286,4380_15735,Dundalk,59865-00010-1,1,4380_7778208_1670903,4380_345 -4380_77965,297,4380_15736,Dundalk,59873-00008-1,1,4380_7778208_1670903,4380_345 -4380_77965,288,4380_15737,Dundalk,59871-00011-1,1,4380_7778208_1670903,4380_345 -4380_77965,287,4380_15738,Dundalk,59863-00012-1,1,4380_7778208_1670903,4380_345 -4380_77965,291,4380_15739,Dundalk,59861-00013-1,1,4380_7778208_1670903,4380_345 -4380_77947,291,4380_1574,Drop Off,51034-00013-1,0,4380_7778208_1011105,4380_24 -4380_77965,289,4380_15740,Dundalk,59867-00014-1,1,4380_7778208_1670903,4380_345 -4380_77965,292,4380_15741,Dundalk,59866-00016-1,1,4380_7778208_1670903,4380_345 -4380_77965,293,4380_15742,Dundalk,59872-00017-1,1,4380_7778208_1670903,4380_345 -4380_77965,290,4380_15743,Dundalk,59870-00015-1,1,4380_7778208_1670903,4380_345 -4380_77965,294,4380_15744,Dundalk,59864-00018-1,1,4380_7778208_1670903,4380_345 -4380_77965,295,4380_15745,Dundalk,59868-00019-1,1,4380_7778208_1670903,4380_345 -4380_77965,296,4380_15746,Dundalk,59862-00021-1,1,4380_7778208_1670903,4380_345 -4380_77947,296,4380_1575,Drop Off,51035-00021-1,0,4380_7778208_1011105,4380_24 -4380_77965,285,4380_15752,Dundalk,59603-00009-1,1,4380_7778208_1670101,4380_344 -4380_77965,286,4380_15753,Dundalk,59605-00010-1,1,4380_7778208_1670101,4380_344 -4380_77965,288,4380_15754,Dundalk,59607-00011-1,1,4380_7778208_1670101,4380_344 -4380_77965,287,4380_15755,Dundalk,59601-00012-1,1,4380_7778208_1670101,4380_344 -4380_77965,289,4380_15756,Dundalk,59609-00014-1,1,4380_7778208_1670101,4380_344 -4380_77965,292,4380_15757,Dundalk,59606-00016-1,1,4380_7778208_1670101,4380_344 -4380_77965,293,4380_15758,Dundalk,59608-00017-1,1,4380_7778208_1670101,4380_344 -4380_77965,290,4380_15759,Dundalk,59604-00015-1,1,4380_7778208_1670101,4380_344 -4380_77965,294,4380_15760,Dundalk,59602-00018-1,1,4380_7778208_1670101,4380_344 -4380_77965,295,4380_15761,Dundalk,59610-00019-1,1,4380_7778208_1670101,4380_344 -4380_77965,297,4380_15764,Dundalk,59611-00008-1,1,4380_7778208_1670101,4380_344 -4380_77965,291,4380_15765,Dundalk,59612-00013-1,1,4380_7778208_1670101,4380_344 -4380_77965,296,4380_15766,Dundalk,59613-00021-1,1,4380_7778208_1670101,4380_344 -4380_77965,285,4380_15774,Dundalk,59900-00009-1,1,4380_7778208_1670903,4380_345 -4380_77965,286,4380_15775,Dundalk,59904-00010-1,1,4380_7778208_1670903,4380_345 -4380_77965,297,4380_15776,Dundalk,59912-00008-1,1,4380_7778208_1670903,4380_345 -4380_77965,288,4380_15777,Dundalk,59906-00011-1,1,4380_7778208_1670903,4380_345 -4380_77965,287,4380_15778,Dundalk,59902-00012-1,1,4380_7778208_1670903,4380_345 -4380_77965,291,4380_15779,Dundalk,59908-00013-1,1,4380_7778208_1670903,4380_345 -4380_77965,289,4380_15780,Dundalk,59910-00014-1,1,4380_7778208_1670903,4380_345 -4380_77965,292,4380_15781,Dundalk,59905-00016-1,1,4380_7778208_1670903,4380_345 -4380_77965,293,4380_15782,Dundalk,59907-00017-1,1,4380_7778208_1670903,4380_345 -4380_77965,290,4380_15783,Dundalk,59901-00015-1,1,4380_7778208_1670903,4380_345 -4380_77965,294,4380_15784,Dundalk,59903-00018-1,1,4380_7778208_1670903,4380_345 -4380_77965,295,4380_15785,Dundalk,59911-00019-1,1,4380_7778208_1670903,4380_345 -4380_77965,296,4380_15786,Dundalk,59909-00021-1,1,4380_7778208_1670903,4380_345 -4380_77966,285,4380_15792,Drogheda,59921-00009-1,0,4380_7778208_1680901,4380_347 -4380_77966,286,4380_15793,Drogheda,59919-00010-1,0,4380_7778208_1680901,4380_347 -4380_77966,288,4380_15794,Drogheda,59917-00011-1,0,4380_7778208_1680901,4380_347 -4380_77966,287,4380_15795,Drogheda,59915-00012-1,0,4380_7778208_1680901,4380_347 -4380_77966,289,4380_15796,Drogheda,59913-00014-1,0,4380_7778208_1680901,4380_347 -4380_77966,292,4380_15797,Drogheda,59920-00016-1,0,4380_7778208_1680901,4380_347 -4380_77966,293,4380_15798,Drogheda,59918-00017-1,0,4380_7778208_1680901,4380_347 -4380_77966,290,4380_15799,Drogheda,59922-00015-1,0,4380_7778208_1680901,4380_347 -4380_77946,290,4380_158,Dundalk,50488-00015-1,0,4380_7778208_1000915,4380_1 -4380_77966,294,4380_15800,Drogheda,59916-00018-1,0,4380_7778208_1680901,4380_347 -4380_77966,295,4380_15801,Drogheda,59914-00019-1,0,4380_7778208_1680901,4380_347 -4380_77966,291,4380_15803,Drogheda,60033-00013-1,0,4380_7778208_1680902,4380_348 -4380_77966,296,4380_15804,Drogheda,60034-00021-1,0,4380_7778208_1680902,4380_348 -4380_77947,285,4380_1581,Drop Off,51623-00009-1,0,4380_7778208_1011113,4380_22 -4380_77966,285,4380_15810,Drogheda,60039-00009-1,0,4380_7778208_1680902,4380_348 -4380_77966,286,4380_15811,Drogheda,60035-00010-1,0,4380_7778208_1680902,4380_348 -4380_77966,288,4380_15812,Drogheda,60037-00011-1,0,4380_7778208_1680902,4380_348 -4380_77966,287,4380_15813,Drogheda,60041-00012-1,0,4380_7778208_1680902,4380_348 -4380_77966,289,4380_15814,Drogheda,60043-00014-1,0,4380_7778208_1680902,4380_348 -4380_77966,292,4380_15815,Drogheda,60036-00016-1,0,4380_7778208_1680902,4380_348 -4380_77966,293,4380_15816,Drogheda,60038-00017-1,0,4380_7778208_1680902,4380_348 -4380_77966,290,4380_15817,Drogheda,60040-00015-1,0,4380_7778208_1680902,4380_348 -4380_77966,294,4380_15818,Drogheda,60042-00018-1,0,4380_7778208_1680902,4380_348 -4380_77966,295,4380_15819,Drogheda,60044-00019-1,0,4380_7778208_1680902,4380_348 -4380_77947,286,4380_1582,Drop Off,51619-00010-1,0,4380_7778208_1011113,4380_22 -4380_77966,285,4380_15827,Drogheda,59937-00009-1,0,4380_7778208_1680901,4380_347 -4380_77966,286,4380_15828,Drogheda,59935-00010-1,0,4380_7778208_1680901,4380_347 -4380_77966,297,4380_15829,Drogheda,59945-00008-1,0,4380_7778208_1680901,4380_349 -4380_77947,288,4380_1583,Drop Off,51621-00011-1,0,4380_7778208_1011113,4380_22 -4380_77966,288,4380_15830,Drogheda,59946-00011-1,0,4380_7778208_1680901,4380_347 -4380_77966,287,4380_15831,Drogheda,59943-00012-1,0,4380_7778208_1680901,4380_347 -4380_77966,291,4380_15832,Drogheda,59939-00013-1,0,4380_7778208_1680901,4380_350 -4380_77966,289,4380_15833,Drogheda,59941-00014-1,0,4380_7778208_1680901,4380_347 -4380_77966,292,4380_15834,Drogheda,59936-00016-1,0,4380_7778208_1680901,4380_347 -4380_77966,293,4380_15835,Drogheda,59947-00017-1,0,4380_7778208_1680901,4380_347 -4380_77966,290,4380_15836,Drogheda,59938-00015-1,0,4380_7778208_1680901,4380_347 -4380_77966,294,4380_15837,Drogheda,59944-00018-1,0,4380_7778208_1680901,4380_347 -4380_77966,295,4380_15838,Drogheda,59942-00019-1,0,4380_7778208_1680901,4380_347 -4380_77966,296,4380_15839,Drogheda,59940-00021-1,0,4380_7778208_1680901,4380_350 -4380_77947,287,4380_1584,Drop Off,51617-00012-1,0,4380_7778208_1011113,4380_22 -4380_77966,285,4380_15847,Drogheda,60064-00009-1,0,4380_7778208_1680902,4380_347 -4380_77966,286,4380_15848,Drogheda,60062-00010-1,0,4380_7778208_1680902,4380_347 -4380_77966,297,4380_15849,Drogheda,60059-00008-1,0,4380_7778208_1680902,4380_349 -4380_77947,289,4380_1585,Drop Off,51625-00014-1,0,4380_7778208_1011113,4380_22 -4380_77966,288,4380_15850,Drogheda,60066-00011-1,0,4380_7778208_1680902,4380_347 -4380_77966,287,4380_15851,Drogheda,60068-00012-1,0,4380_7778208_1680902,4380_347 -4380_77966,291,4380_15852,Drogheda,60057-00013-1,0,4380_7778208_1680902,4380_350 -4380_77966,289,4380_15853,Drogheda,60060-00014-1,0,4380_7778208_1680902,4380_347 -4380_77966,292,4380_15854,Drogheda,60063-00016-1,0,4380_7778208_1680902,4380_347 -4380_77966,293,4380_15855,Drogheda,60067-00017-1,0,4380_7778208_1680902,4380_347 -4380_77966,290,4380_15856,Drogheda,60065-00015-1,0,4380_7778208_1680902,4380_347 -4380_77966,294,4380_15857,Drogheda,60069-00018-1,0,4380_7778208_1680902,4380_347 -4380_77966,295,4380_15858,Drogheda,60061-00019-1,0,4380_7778208_1680902,4380_347 -4380_77966,296,4380_15859,Drogheda,60058-00021-1,0,4380_7778208_1680902,4380_350 -4380_77947,290,4380_1586,Drop Off,51624-00015-1,0,4380_7778208_1011113,4380_22 -4380_77966,285,4380_15866,Drogheda,59967-00009-1,0,4380_7778208_1680901,4380_347 -4380_77966,286,4380_15867,Drogheda,59963-00010-1,0,4380_7778208_1680901,4380_347 -4380_77966,288,4380_15868,Drogheda,59961-00011-1,0,4380_7778208_1680901,4380_347 -4380_77966,287,4380_15869,Drogheda,59971-00012-1,0,4380_7778208_1680901,4380_347 -4380_77947,292,4380_1587,Drop Off,51620-00016-1,0,4380_7778208_1011113,4380_22 -4380_77966,291,4380_15870,Drogheda,59965-00013-1,0,4380_7778208_1680901,4380_349 -4380_77966,289,4380_15871,Drogheda,59969-00014-1,0,4380_7778208_1680901,4380_347 -4380_77966,292,4380_15872,Drogheda,59964-00016-1,0,4380_7778208_1680901,4380_347 -4380_77966,293,4380_15873,Drogheda,59962-00017-1,0,4380_7778208_1680901,4380_347 -4380_77966,290,4380_15874,Drogheda,59968-00015-1,0,4380_7778208_1680901,4380_347 -4380_77966,294,4380_15875,Drogheda,59972-00018-1,0,4380_7778208_1680901,4380_347 -4380_77966,295,4380_15876,Drogheda,59970-00019-1,0,4380_7778208_1680901,4380_347 -4380_77966,296,4380_15877,Drogheda,59966-00021-1,0,4380_7778208_1680901,4380_349 -4380_77947,293,4380_1588,Drop Off,51622-00017-1,0,4380_7778208_1011113,4380_22 -4380_77966,285,4380_15885,Drogheda,60090-00009-1,0,4380_7778208_1680902,4380_347 -4380_77966,286,4380_15886,Drogheda,60094-00010-1,0,4380_7778208_1680902,4380_347 -4380_77966,297,4380_15887,Drogheda,60083-00008-1,0,4380_7778208_1680902,4380_349 -4380_77966,288,4380_15888,Drogheda,60088-00011-1,0,4380_7778208_1680902,4380_347 -4380_77966,287,4380_15889,Drogheda,60092-00012-1,0,4380_7778208_1680902,4380_347 -4380_77947,294,4380_1589,Drop Off,51618-00018-1,0,4380_7778208_1011113,4380_22 -4380_77966,291,4380_15890,Drogheda,60086-00013-1,0,4380_7778208_1680902,4380_350 -4380_77966,289,4380_15891,Drogheda,60084-00014-1,0,4380_7778208_1680902,4380_347 -4380_77966,292,4380_15892,Drogheda,60095-00016-1,0,4380_7778208_1680902,4380_347 -4380_77966,293,4380_15893,Drogheda,60089-00017-1,0,4380_7778208_1680902,4380_347 -4380_77966,290,4380_15894,Drogheda,60091-00015-1,0,4380_7778208_1680902,4380_347 -4380_77966,294,4380_15895,Drogheda,60093-00018-1,0,4380_7778208_1680902,4380_347 -4380_77966,295,4380_15896,Drogheda,60085-00019-1,0,4380_7778208_1680902,4380_347 -4380_77966,296,4380_15897,Drogheda,60087-00021-1,0,4380_7778208_1680902,4380_350 -4380_77966,291,4380_15899,Drogheda,59985-00013-1,0,4380_7778208_1680901,4380_347 -4380_77946,291,4380_159,Dundalk,50277-00013-1,0,4380_7778208_1000912,4380_5 -4380_77947,295,4380_1590,Drop Off,51626-00019-1,0,4380_7778208_1011113,4380_22 -4380_77966,296,4380_15900,Drogheda,59986-00021-1,0,4380_7778208_1680901,4380_347 -4380_77966,285,4380_15906,Drogheda,59995-00009-1,0,4380_7778208_1680901,4380_347 -4380_77966,286,4380_15907,Drogheda,59987-00010-1,0,4380_7778208_1680901,4380_347 -4380_77966,288,4380_15908,Drogheda,59989-00011-1,0,4380_7778208_1680901,4380_347 -4380_77966,287,4380_15909,Drogheda,59991-00012-1,0,4380_7778208_1680901,4380_347 -4380_77966,289,4380_15910,Drogheda,59993-00014-1,0,4380_7778208_1680901,4380_347 -4380_77966,292,4380_15911,Drogheda,59988-00016-1,0,4380_7778208_1680901,4380_347 -4380_77966,293,4380_15912,Drogheda,59990-00017-1,0,4380_7778208_1680901,4380_347 -4380_77966,290,4380_15913,Drogheda,59996-00015-1,0,4380_7778208_1680901,4380_347 -4380_77966,294,4380_15914,Drogheda,59992-00018-1,0,4380_7778208_1680901,4380_347 -4380_77966,295,4380_15915,Drogheda,59994-00019-1,0,4380_7778208_1680901,4380_347 -4380_77947,291,4380_1592,Drop Off,51137-00013-1,0,4380_7778208_1011106,4380_22 -4380_77966,285,4380_15923,Drogheda,60120-00009-1,0,4380_7778208_1680902,4380_347 -4380_77966,286,4380_15924,Drogheda,60114-00010-1,0,4380_7778208_1680902,4380_347 -4380_77966,297,4380_15925,Drogheda,60113-00008-1,0,4380_7778208_1680902,4380_349 -4380_77966,288,4380_15926,Drogheda,60116-00011-1,0,4380_7778208_1680902,4380_347 -4380_77966,287,4380_15927,Drogheda,60111-00012-1,0,4380_7778208_1680902,4380_347 -4380_77966,291,4380_15928,Drogheda,60118-00013-1,0,4380_7778208_1680902,4380_350 -4380_77966,289,4380_15929,Drogheda,60109-00014-1,0,4380_7778208_1680902,4380_347 -4380_77947,296,4380_1593,Drop Off,51138-00021-1,0,4380_7778208_1011106,4380_22 -4380_77966,292,4380_15930,Drogheda,60115-00016-1,0,4380_7778208_1680902,4380_347 -4380_77966,293,4380_15931,Drogheda,60117-00017-1,0,4380_7778208_1680902,4380_347 -4380_77966,290,4380_15932,Drogheda,60121-00015-1,0,4380_7778208_1680902,4380_347 -4380_77966,294,4380_15933,Drogheda,60112-00018-1,0,4380_7778208_1680902,4380_347 -4380_77966,295,4380_15934,Drogheda,60110-00019-1,0,4380_7778208_1680902,4380_347 -4380_77966,296,4380_15935,Drogheda,60119-00021-1,0,4380_7778208_1680902,4380_350 -4380_77966,285,4380_15942,Drogheda,60009-00009-1,0,4380_7778208_1680901,4380_347 -4380_77966,286,4380_15943,Drogheda,60015-00010-1,0,4380_7778208_1680901,4380_347 -4380_77966,288,4380_15944,Drogheda,60013-00011-1,0,4380_7778208_1680901,4380_347 -4380_77966,287,4380_15945,Drogheda,60019-00012-1,0,4380_7778208_1680901,4380_347 -4380_77966,291,4380_15946,Drogheda,60011-00013-1,0,4380_7778208_1680901,4380_349 -4380_77966,289,4380_15947,Drogheda,60017-00014-1,0,4380_7778208_1680901,4380_347 -4380_77966,292,4380_15948,Drogheda,60016-00016-1,0,4380_7778208_1680901,4380_347 -4380_77966,293,4380_15949,Drogheda,60014-00017-1,0,4380_7778208_1680901,4380_347 -4380_77966,290,4380_15950,Drogheda,60010-00015-1,0,4380_7778208_1680901,4380_347 -4380_77966,294,4380_15951,Drogheda,60020-00018-1,0,4380_7778208_1680901,4380_347 -4380_77966,295,4380_15952,Drogheda,60018-00019-1,0,4380_7778208_1680901,4380_347 -4380_77966,296,4380_15953,Drogheda,60012-00021-1,0,4380_7778208_1680901,4380_349 -4380_77966,285,4380_15960,Drogheda,60145-00009-1,0,4380_7778208_1680902,4380_347 -4380_77966,286,4380_15961,Drogheda,60139-00010-1,0,4380_7778208_1680902,4380_347 -4380_77966,288,4380_15962,Drogheda,60141-00011-1,0,4380_7778208_1680902,4380_347 -4380_77966,287,4380_15963,Drogheda,60137-00012-1,0,4380_7778208_1680902,4380_347 -4380_77966,291,4380_15964,Drogheda,60143-00013-1,0,4380_7778208_1680902,4380_349 -4380_77966,289,4380_15965,Drogheda,60135-00014-1,0,4380_7778208_1680902,4380_347 -4380_77966,292,4380_15966,Drogheda,60140-00016-1,0,4380_7778208_1680902,4380_347 -4380_77966,293,4380_15967,Drogheda,60142-00017-1,0,4380_7778208_1680902,4380_347 -4380_77966,290,4380_15968,Drogheda,60146-00015-1,0,4380_7778208_1680902,4380_347 -4380_77966,294,4380_15969,Drogheda,60138-00018-1,0,4380_7778208_1680902,4380_347 -4380_77966,295,4380_15970,Drogheda,60136-00019-1,0,4380_7778208_1680902,4380_347 -4380_77966,296,4380_15971,Drogheda,60144-00021-1,0,4380_7778208_1680902,4380_349 -4380_77966,285,4380_15977,Dundalk,59925-00009-1,1,4380_7778208_1680901,4380_351 -4380_77966,286,4380_15978,Dundalk,59923-00010-1,1,4380_7778208_1680901,4380_351 -4380_77966,288,4380_15979,Dundalk,59929-00011-1,1,4380_7778208_1680901,4380_351 -4380_77966,287,4380_15980,Dundalk,59931-00012-1,1,4380_7778208_1680901,4380_351 -4380_77966,289,4380_15981,Dundalk,59927-00014-1,1,4380_7778208_1680901,4380_351 -4380_77966,292,4380_15982,Dundalk,59924-00016-1,1,4380_7778208_1680901,4380_351 -4380_77966,293,4380_15983,Dundalk,59930-00017-1,1,4380_7778208_1680901,4380_351 -4380_77966,290,4380_15984,Dundalk,59926-00015-1,1,4380_7778208_1680901,4380_351 -4380_77966,294,4380_15985,Dundalk,59932-00018-1,1,4380_7778208_1680901,4380_351 -4380_77966,295,4380_15986,Dundalk,59928-00019-1,1,4380_7778208_1680901,4380_351 -4380_77947,285,4380_1599,Drop Off,51317-00009-1,0,4380_7778208_1011108,4380_22 -4380_77966,285,4380_15992,Dundalk,60161-00009-1,1,4380_7778208_1680903,4380_352 -4380_77966,286,4380_15993,Dundalk,60163-00010-1,1,4380_7778208_1680903,4380_352 -4380_77966,288,4380_15994,Dundalk,60165-00011-1,1,4380_7778208_1680903,4380_352 -4380_77966,287,4380_15995,Dundalk,60167-00012-1,1,4380_7778208_1680903,4380_352 -4380_77966,289,4380_15996,Dundalk,60159-00014-1,1,4380_7778208_1680903,4380_352 -4380_77966,292,4380_15997,Dundalk,60164-00016-1,1,4380_7778208_1680903,4380_352 -4380_77966,293,4380_15998,Dundalk,60166-00017-1,1,4380_7778208_1680903,4380_352 -4380_77966,290,4380_15999,Dundalk,60162-00015-1,1,4380_7778208_1680903,4380_352 -4380_77946,294,4380_16,Dundalk,50454-00018-1,0,4380_7778208_1000915,4380_1 -4380_77946,292,4380_160,Dundalk,50492-00016-1,0,4380_7778208_1000915,4380_1 -4380_77947,286,4380_1600,Drop Off,51321-00010-1,0,4380_7778208_1011108,4380_22 -4380_77966,294,4380_16000,Dundalk,60168-00018-1,1,4380_7778208_1680903,4380_352 -4380_77966,295,4380_16001,Dundalk,60160-00019-1,1,4380_7778208_1680903,4380_352 -4380_77966,291,4380_16003,Dundalk,59933-00013-1,1,4380_7778208_1680901,4380_352 -4380_77966,296,4380_16004,Dundalk,59934-00021-1,1,4380_7778208_1680901,4380_352 -4380_77947,288,4380_1601,Drop Off,51323-00011-1,0,4380_7778208_1011108,4380_22 -4380_77966,285,4380_16011,Dundalk,60051-00009-1,1,4380_7778208_1680902,4380_351 -4380_77966,286,4380_16012,Dundalk,60049-00010-1,1,4380_7778208_1680902,4380_351 -4380_77966,288,4380_16013,Dundalk,60055-00011-1,1,4380_7778208_1680902,4380_351 -4380_77966,287,4380_16014,Dundalk,60053-00012-1,1,4380_7778208_1680902,4380_351 -4380_77966,291,4380_16015,Dundalk,60045-00013-1,1,4380_7778208_1680902,4380_353 -4380_77966,289,4380_16016,Dundalk,60047-00014-1,1,4380_7778208_1680902,4380_351 -4380_77966,292,4380_16017,Dundalk,60050-00016-1,1,4380_7778208_1680902,4380_351 -4380_77966,293,4380_16018,Dundalk,60056-00017-1,1,4380_7778208_1680902,4380_351 -4380_77966,290,4380_16019,Dundalk,60052-00015-1,1,4380_7778208_1680902,4380_351 -4380_77947,287,4380_1602,Drop Off,51315-00012-1,0,4380_7778208_1011108,4380_22 -4380_77966,294,4380_16020,Dundalk,60054-00018-1,1,4380_7778208_1680902,4380_351 -4380_77966,295,4380_16021,Dundalk,60048-00019-1,1,4380_7778208_1680902,4380_351 -4380_77966,296,4380_16022,Dundalk,60046-00021-1,1,4380_7778208_1680902,4380_353 -4380_77947,289,4380_1603,Drop Off,51319-00014-1,0,4380_7778208_1011108,4380_22 -4380_77966,285,4380_16030,Dundalk,59954-00009-1,1,4380_7778208_1680901,4380_351 -4380_77966,286,4380_16031,Dundalk,59950-00010-1,1,4380_7778208_1680901,4380_351 -4380_77966,297,4380_16032,Dundalk,59960-00008-1,1,4380_7778208_1680901,4380_353 -4380_77966,288,4380_16033,Dundalk,59958-00011-1,1,4380_7778208_1680901,4380_351 -4380_77966,287,4380_16034,Dundalk,59956-00012-1,1,4380_7778208_1680901,4380_351 -4380_77966,291,4380_16035,Dundalk,59948-00013-1,1,4380_7778208_1680901,4380_354 -4380_77966,289,4380_16036,Dundalk,59952-00014-1,1,4380_7778208_1680901,4380_351 -4380_77966,292,4380_16037,Dundalk,59951-00016-1,1,4380_7778208_1680901,4380_351 -4380_77966,293,4380_16038,Dundalk,59959-00017-1,1,4380_7778208_1680901,4380_351 -4380_77966,290,4380_16039,Dundalk,59955-00015-1,1,4380_7778208_1680901,4380_351 -4380_77947,290,4380_1604,Drop Off,51318-00015-1,0,4380_7778208_1011108,4380_22 -4380_77966,294,4380_16040,Dundalk,59957-00018-1,1,4380_7778208_1680901,4380_351 -4380_77966,295,4380_16041,Dundalk,59953-00019-1,1,4380_7778208_1680901,4380_351 -4380_77966,296,4380_16042,Dundalk,59949-00021-1,1,4380_7778208_1680901,4380_354 -4380_77947,292,4380_1605,Drop Off,51322-00016-1,0,4380_7778208_1011108,4380_22 -4380_77966,285,4380_16050,Dundalk,60072-00009-1,1,4380_7778208_1680902,4380_351 -4380_77966,286,4380_16051,Dundalk,60078-00010-1,1,4380_7778208_1680902,4380_351 -4380_77966,297,4380_16052,Dundalk,60082-00008-1,1,4380_7778208_1680902,4380_353 -4380_77966,288,4380_16053,Dundalk,60076-00011-1,1,4380_7778208_1680902,4380_351 -4380_77966,287,4380_16054,Dundalk,60070-00012-1,1,4380_7778208_1680902,4380_351 -4380_77966,291,4380_16055,Dundalk,60080-00013-1,1,4380_7778208_1680902,4380_354 -4380_77966,289,4380_16056,Dundalk,60074-00014-1,1,4380_7778208_1680902,4380_351 -4380_77966,292,4380_16057,Dundalk,60079-00016-1,1,4380_7778208_1680902,4380_351 -4380_77966,293,4380_16058,Dundalk,60077-00017-1,1,4380_7778208_1680902,4380_351 -4380_77966,290,4380_16059,Dundalk,60073-00015-1,1,4380_7778208_1680902,4380_351 -4380_77947,293,4380_1606,Drop Off,51324-00017-1,0,4380_7778208_1011108,4380_22 -4380_77966,294,4380_16060,Dundalk,60071-00018-1,1,4380_7778208_1680902,4380_351 -4380_77966,295,4380_16061,Dundalk,60075-00019-1,1,4380_7778208_1680902,4380_351 -4380_77966,296,4380_16062,Dundalk,60081-00021-1,1,4380_7778208_1680902,4380_354 -4380_77966,291,4380_16064,Dundalk,59973-00013-1,1,4380_7778208_1680901,4380_351 -4380_77966,296,4380_16065,Dundalk,59974-00021-1,1,4380_7778208_1680901,4380_351 -4380_77947,294,4380_1607,Drop Off,51316-00018-1,0,4380_7778208_1011108,4380_22 -4380_77966,285,4380_16071,Dundalk,59979-00009-1,1,4380_7778208_1680901,4380_351 -4380_77966,286,4380_16072,Dundalk,59977-00010-1,1,4380_7778208_1680901,4380_351 -4380_77966,288,4380_16073,Dundalk,59981-00011-1,1,4380_7778208_1680901,4380_351 -4380_77966,287,4380_16074,Dundalk,59975-00012-1,1,4380_7778208_1680901,4380_351 -4380_77966,289,4380_16075,Dundalk,59983-00014-1,1,4380_7778208_1680901,4380_351 -4380_77966,292,4380_16076,Dundalk,59978-00016-1,1,4380_7778208_1680901,4380_351 -4380_77966,293,4380_16077,Dundalk,59982-00017-1,1,4380_7778208_1680901,4380_351 -4380_77966,290,4380_16078,Dundalk,59980-00015-1,1,4380_7778208_1680901,4380_351 -4380_77966,294,4380_16079,Dundalk,59976-00018-1,1,4380_7778208_1680901,4380_351 -4380_77947,295,4380_1608,Drop Off,51320-00019-1,0,4380_7778208_1011108,4380_22 -4380_77966,295,4380_16080,Dundalk,59984-00019-1,1,4380_7778208_1680901,4380_351 -4380_77966,285,4380_16088,Dundalk,60096-00009-1,1,4380_7778208_1680902,4380_351 -4380_77966,286,4380_16089,Dundalk,60100-00010-1,1,4380_7778208_1680902,4380_351 -4380_77966,297,4380_16090,Dundalk,60104-00008-1,1,4380_7778208_1680902,4380_353 -4380_77966,288,4380_16091,Dundalk,60098-00011-1,1,4380_7778208_1680902,4380_351 -4380_77966,287,4380_16092,Dundalk,60107-00012-1,1,4380_7778208_1680902,4380_351 -4380_77966,291,4380_16093,Dundalk,60105-00013-1,1,4380_7778208_1680902,4380_354 -4380_77966,289,4380_16094,Dundalk,60102-00014-1,1,4380_7778208_1680902,4380_351 -4380_77966,292,4380_16095,Dundalk,60101-00016-1,1,4380_7778208_1680902,4380_351 -4380_77966,293,4380_16096,Dundalk,60099-00017-1,1,4380_7778208_1680902,4380_351 -4380_77966,290,4380_16097,Dundalk,60097-00015-1,1,4380_7778208_1680902,4380_351 -4380_77966,294,4380_16098,Dundalk,60108-00018-1,1,4380_7778208_1680902,4380_351 -4380_77966,295,4380_16099,Dundalk,60103-00019-1,1,4380_7778208_1680902,4380_351 -4380_77946,293,4380_161,Dundalk,50496-00017-1,0,4380_7778208_1000915,4380_1 -4380_77966,296,4380_16100,Dundalk,60106-00021-1,1,4380_7778208_1680902,4380_354 -4380_77966,291,4380_16102,Dundalk,59997-00013-1,1,4380_7778208_1680901,4380_351 -4380_77966,296,4380_16103,Dundalk,59998-00021-1,1,4380_7778208_1680901,4380_351 -4380_77966,285,4380_16109,Dundalk,60001-00009-1,1,4380_7778208_1680901,4380_351 -4380_77947,297,4380_1611,Drop Off,51139-00008-1,0,4380_7778208_1011106,4380_22 -4380_77966,286,4380_16110,Dundalk,60005-00010-1,1,4380_7778208_1680901,4380_351 -4380_77966,288,4380_16111,Dundalk,59999-00011-1,1,4380_7778208_1680901,4380_351 -4380_77966,287,4380_16112,Dundalk,60007-00012-1,1,4380_7778208_1680901,4380_351 -4380_77966,289,4380_16113,Dundalk,60003-00014-1,1,4380_7778208_1680901,4380_351 -4380_77966,292,4380_16114,Dundalk,60006-00016-1,1,4380_7778208_1680901,4380_351 -4380_77966,293,4380_16115,Dundalk,60000-00017-1,1,4380_7778208_1680901,4380_351 -4380_77966,290,4380_16116,Dundalk,60002-00015-1,1,4380_7778208_1680901,4380_351 -4380_77966,294,4380_16117,Dundalk,60008-00018-1,1,4380_7778208_1680901,4380_351 -4380_77966,295,4380_16118,Dundalk,60004-00019-1,1,4380_7778208_1680901,4380_351 -4380_77947,291,4380_1612,Drop Off,51325-00013-1,0,4380_7778208_1011108,4380_24 -4380_77966,285,4380_16126,Dundalk,60122-00009-1,1,4380_7778208_1680902,4380_351 -4380_77966,286,4380_16127,Dundalk,60127-00010-1,1,4380_7778208_1680902,4380_351 -4380_77966,297,4380_16128,Dundalk,60126-00008-1,1,4380_7778208_1680902,4380_353 -4380_77966,288,4380_16129,Dundalk,60129-00011-1,1,4380_7778208_1680902,4380_351 -4380_77947,296,4380_1613,Drop Off,51326-00021-1,0,4380_7778208_1011108,4380_24 -4380_77966,287,4380_16130,Dundalk,60131-00012-1,1,4380_7778208_1680902,4380_351 -4380_77966,291,4380_16131,Dundalk,60124-00013-1,1,4380_7778208_1680902,4380_354 -4380_77966,289,4380_16132,Dundalk,60133-00014-1,1,4380_7778208_1680902,4380_351 -4380_77966,292,4380_16133,Dundalk,60128-00016-1,1,4380_7778208_1680902,4380_351 -4380_77966,293,4380_16134,Dundalk,60130-00017-1,1,4380_7778208_1680902,4380_351 -4380_77966,290,4380_16135,Dundalk,60123-00015-1,1,4380_7778208_1680902,4380_351 -4380_77966,294,4380_16136,Dundalk,60132-00018-1,1,4380_7778208_1680902,4380_351 -4380_77966,295,4380_16137,Dundalk,60134-00019-1,1,4380_7778208_1680902,4380_351 -4380_77966,296,4380_16138,Dundalk,60125-00021-1,1,4380_7778208_1680902,4380_354 -4380_77966,285,4380_16145,Dundalk,60031-00009-1,1,4380_7778208_1680901,4380_351 -4380_77966,286,4380_16146,Dundalk,60023-00010-1,1,4380_7778208_1680901,4380_351 -4380_77966,288,4380_16147,Dundalk,60025-00011-1,1,4380_7778208_1680901,4380_351 -4380_77966,287,4380_16148,Dundalk,60029-00012-1,1,4380_7778208_1680901,4380_351 -4380_77966,291,4380_16149,Dundalk,60027-00013-1,1,4380_7778208_1680901,4380_353 -4380_77966,289,4380_16150,Dundalk,60021-00014-1,1,4380_7778208_1680901,4380_351 -4380_77966,292,4380_16151,Dundalk,60024-00016-1,1,4380_7778208_1680901,4380_351 -4380_77966,293,4380_16152,Dundalk,60026-00017-1,1,4380_7778208_1680901,4380_351 -4380_77966,290,4380_16153,Dundalk,60032-00015-1,1,4380_7778208_1680901,4380_351 -4380_77966,294,4380_16154,Dundalk,60030-00018-1,1,4380_7778208_1680901,4380_351 -4380_77966,295,4380_16155,Dundalk,60022-00019-1,1,4380_7778208_1680901,4380_351 -4380_77966,296,4380_16156,Dundalk,60028-00021-1,1,4380_7778208_1680901,4380_353 -4380_77966,285,4380_16163,Dundalk,60149-00009-1,1,4380_7778208_1680902,4380_351 -4380_77966,286,4380_16164,Dundalk,60153-00010-1,1,4380_7778208_1680902,4380_351 -4380_77966,288,4380_16165,Dundalk,60147-00011-1,1,4380_7778208_1680902,4380_351 -4380_77966,287,4380_16166,Dundalk,60155-00012-1,1,4380_7778208_1680902,4380_351 -4380_77966,291,4380_16167,Dundalk,60151-00013-1,1,4380_7778208_1680902,4380_353 -4380_77966,289,4380_16168,Dundalk,60157-00014-1,1,4380_7778208_1680902,4380_351 -4380_77966,292,4380_16169,Dundalk,60154-00016-1,1,4380_7778208_1680902,4380_351 -4380_77966,293,4380_16170,Dundalk,60148-00017-1,1,4380_7778208_1680902,4380_351 -4380_77966,290,4380_16171,Dundalk,60150-00015-1,1,4380_7778208_1680902,4380_351 -4380_77966,294,4380_16172,Dundalk,60156-00018-1,1,4380_7778208_1680902,4380_351 -4380_77966,295,4380_16173,Dundalk,60158-00019-1,1,4380_7778208_1680902,4380_351 -4380_77966,296,4380_16174,Dundalk,60152-00021-1,1,4380_7778208_1680902,4380_353 -4380_77967,285,4380_16182,Dundalk,60274-00009-1,0,4380_7778208_1700902,4380_355 -4380_77967,286,4380_16183,Dundalk,60278-00010-1,0,4380_7778208_1700902,4380_355 -4380_77967,297,4380_16184,Dundalk,60273-00008-1,0,4380_7778208_1700902,4380_357 -4380_77967,288,4380_16185,Dundalk,60269-00011-1,0,4380_7778208_1700902,4380_355 -4380_77967,287,4380_16186,Dundalk,60271-00012-1,0,4380_7778208_1700902,4380_355 -4380_77967,291,4380_16187,Dundalk,60276-00013-1,0,4380_7778208_1700902,4380_358 -4380_77967,289,4380_16188,Dundalk,60267-00014-1,0,4380_7778208_1700902,4380_355 -4380_77967,292,4380_16189,Dundalk,60279-00016-1,0,4380_7778208_1700902,4380_355 -4380_77947,285,4380_1619,Drop Off,51041-00009-1,0,4380_7778208_1011105,4380_22 -4380_77967,293,4380_16190,Dundalk,60270-00017-1,0,4380_7778208_1700902,4380_355 -4380_77967,290,4380_16191,Dundalk,60275-00015-1,0,4380_7778208_1700902,4380_355 -4380_77967,294,4380_16192,Dundalk,60272-00018-1,0,4380_7778208_1700902,4380_355 -4380_77967,295,4380_16193,Dundalk,60268-00019-1,0,4380_7778208_1700902,4380_355 -4380_77967,296,4380_16194,Dundalk,60277-00021-1,0,4380_7778208_1700902,4380_358 -4380_77946,294,4380_162,Dundalk,50494-00018-1,0,4380_7778208_1000915,4380_1 -4380_77947,286,4380_1620,Drop Off,51043-00010-1,0,4380_7778208_1011105,4380_22 -4380_77967,285,4380_16202,Dundalk,60183-00009-1,0,4380_7778208_1700901,4380_355 -4380_77967,286,4380_16203,Dundalk,60189-00010-1,0,4380_7778208_1700901,4380_355 -4380_77967,297,4380_16204,Dundalk,60182-00008-1,0,4380_7778208_1700901,4380_357 -4380_77967,288,4380_16205,Dundalk,60185-00011-1,0,4380_7778208_1700901,4380_355 -4380_77967,287,4380_16206,Dundalk,60193-00012-1,0,4380_7778208_1700901,4380_355 -4380_77967,291,4380_16207,Dundalk,60191-00013-1,0,4380_7778208_1700901,4380_358 -4380_77967,289,4380_16208,Dundalk,60187-00014-1,0,4380_7778208_1700901,4380_355 -4380_77967,292,4380_16209,Dundalk,60190-00016-1,0,4380_7778208_1700901,4380_355 -4380_77947,288,4380_1621,Drop Off,51037-00011-1,0,4380_7778208_1011105,4380_22 -4380_77967,293,4380_16210,Dundalk,60186-00017-1,0,4380_7778208_1700901,4380_355 -4380_77967,290,4380_16211,Dundalk,60184-00015-1,0,4380_7778208_1700901,4380_355 -4380_77967,294,4380_16212,Dundalk,60194-00018-1,0,4380_7778208_1700901,4380_355 -4380_77967,295,4380_16213,Dundalk,60188-00019-1,0,4380_7778208_1700901,4380_355 -4380_77967,296,4380_16214,Dundalk,60192-00021-1,0,4380_7778208_1700901,4380_358 -4380_77947,287,4380_1622,Drop Off,51039-00012-1,0,4380_7778208_1011105,4380_22 -4380_77967,285,4380_16222,Dundalk,60295-00009-1,0,4380_7778208_1700902,4380_355 -4380_77967,286,4380_16223,Dundalk,60293-00010-1,0,4380_7778208_1700902,4380_355 -4380_77967,297,4380_16224,Dundalk,60299-00008-1,0,4380_7778208_1700902,4380_357 -4380_77967,288,4380_16225,Dundalk,60302-00011-1,0,4380_7778208_1700902,4380_355 -4380_77967,287,4380_16226,Dundalk,60304-00012-1,0,4380_7778208_1700902,4380_355 -4380_77967,291,4380_16227,Dundalk,60297-00013-1,0,4380_7778208_1700902,4380_358 -4380_77967,289,4380_16228,Dundalk,60300-00014-1,0,4380_7778208_1700902,4380_355 -4380_77967,292,4380_16229,Dundalk,60294-00016-1,0,4380_7778208_1700902,4380_355 -4380_77947,289,4380_1623,Drop Off,51045-00014-1,0,4380_7778208_1011105,4380_22 -4380_77967,293,4380_16230,Dundalk,60303-00017-1,0,4380_7778208_1700902,4380_355 -4380_77967,290,4380_16231,Dundalk,60296-00015-1,0,4380_7778208_1700902,4380_355 -4380_77967,294,4380_16232,Dundalk,60305-00018-1,0,4380_7778208_1700902,4380_355 -4380_77967,295,4380_16233,Dundalk,60301-00019-1,0,4380_7778208_1700902,4380_355 -4380_77967,296,4380_16234,Dundalk,60298-00021-1,0,4380_7778208_1700902,4380_358 -4380_77947,290,4380_1624,Drop Off,51042-00015-1,0,4380_7778208_1011105,4380_22 -4380_77967,285,4380_16242,Dundalk,60211-00009-1,0,4380_7778208_1700901,4380_355 -4380_77967,286,4380_16243,Dundalk,60217-00010-1,0,4380_7778208_1700901,4380_355 -4380_77967,297,4380_16244,Dundalk,60210-00008-1,0,4380_7778208_1700901,4380_357 -4380_77967,288,4380_16245,Dundalk,60219-00011-1,0,4380_7778208_1700901,4380_355 -4380_77967,287,4380_16246,Dundalk,60208-00012-1,0,4380_7778208_1700901,4380_355 -4380_77967,291,4380_16247,Dundalk,60213-00013-1,0,4380_7778208_1700901,4380_358 -4380_77967,289,4380_16248,Dundalk,60215-00014-1,0,4380_7778208_1700901,4380_355 -4380_77967,292,4380_16249,Dundalk,60218-00016-1,0,4380_7778208_1700901,4380_355 -4380_77947,292,4380_1625,Drop Off,51044-00016-1,0,4380_7778208_1011105,4380_22 -4380_77967,293,4380_16250,Dundalk,60220-00017-1,0,4380_7778208_1700901,4380_355 -4380_77967,290,4380_16251,Dundalk,60212-00015-1,0,4380_7778208_1700901,4380_355 -4380_77967,294,4380_16252,Dundalk,60209-00018-1,0,4380_7778208_1700901,4380_355 -4380_77967,295,4380_16253,Dundalk,60216-00019-1,0,4380_7778208_1700901,4380_355 -4380_77967,296,4380_16254,Dundalk,60214-00021-1,0,4380_7778208_1700901,4380_358 -4380_77947,293,4380_1626,Drop Off,51038-00017-1,0,4380_7778208_1011105,4380_22 -4380_77967,285,4380_16260,Dundalk,60233-00009-1,0,4380_7778208_1700901,4380_356 -4380_77967,286,4380_16261,Dundalk,60237-00010-1,0,4380_7778208_1700901,4380_356 -4380_77967,288,4380_16262,Dundalk,60231-00011-1,0,4380_7778208_1700901,4380_356 -4380_77967,287,4380_16263,Dundalk,60239-00012-1,0,4380_7778208_1700901,4380_356 -4380_77967,289,4380_16264,Dundalk,60235-00014-1,0,4380_7778208_1700901,4380_356 -4380_77967,292,4380_16265,Dundalk,60238-00016-1,0,4380_7778208_1700901,4380_356 -4380_77967,293,4380_16266,Dundalk,60232-00017-1,0,4380_7778208_1700901,4380_356 -4380_77967,290,4380_16267,Dundalk,60234-00015-1,0,4380_7778208_1700901,4380_356 -4380_77967,294,4380_16268,Dundalk,60240-00018-1,0,4380_7778208_1700901,4380_356 -4380_77967,295,4380_16269,Dundalk,60236-00019-1,0,4380_7778208_1700901,4380_356 -4380_77947,294,4380_1627,Drop Off,51040-00018-1,0,4380_7778208_1011105,4380_22 -4380_77967,285,4380_16277,Dundalk,60323-00009-1,0,4380_7778208_1700902,4380_355 -4380_77967,286,4380_16278,Dundalk,60321-00010-1,0,4380_7778208_1700902,4380_355 -4380_77967,297,4380_16279,Dundalk,60331-00008-1,0,4380_7778208_1700902,4380_357 -4380_77947,295,4380_1628,Drop Off,51046-00019-1,0,4380_7778208_1011105,4380_22 -4380_77967,288,4380_16280,Dundalk,60329-00011-1,0,4380_7778208_1700902,4380_355 -4380_77967,287,4380_16281,Dundalk,60319-00012-1,0,4380_7778208_1700902,4380_355 -4380_77967,291,4380_16282,Dundalk,60327-00013-1,0,4380_7778208_1700902,4380_358 -4380_77967,289,4380_16283,Dundalk,60325-00014-1,0,4380_7778208_1700902,4380_355 -4380_77967,292,4380_16284,Dundalk,60322-00016-1,0,4380_7778208_1700902,4380_355 -4380_77967,293,4380_16285,Dundalk,60330-00017-1,0,4380_7778208_1700902,4380_355 -4380_77967,290,4380_16286,Dundalk,60324-00015-1,0,4380_7778208_1700902,4380_355 -4380_77967,294,4380_16287,Dundalk,60320-00018-1,0,4380_7778208_1700902,4380_355 -4380_77967,295,4380_16288,Dundalk,60326-00019-1,0,4380_7778208_1700902,4380_355 -4380_77967,296,4380_16289,Dundalk,60328-00021-1,0,4380_7778208_1700902,4380_358 -4380_77967,285,4380_16297,Dundalk,60260-00009-1,0,4380_7778208_1700901,4380_355 -4380_77967,286,4380_16298,Dundalk,60258-00010-1,0,4380_7778208_1700901,4380_355 -4380_77967,297,4380_16299,Dundalk,60266-00008-1,0,4380_7778208_1700901,4380_357 -4380_77946,295,4380_163,Dundalk,50490-00019-1,0,4380_7778208_1000915,4380_1 -4380_77967,288,4380_16300,Dundalk,60256-00011-1,0,4380_7778208_1700901,4380_355 -4380_77967,287,4380_16301,Dundalk,60254-00012-1,0,4380_7778208_1700901,4380_355 -4380_77967,291,4380_16302,Dundalk,60264-00013-1,0,4380_7778208_1700901,4380_358 -4380_77967,289,4380_16303,Dundalk,60262-00014-1,0,4380_7778208_1700901,4380_355 -4380_77967,292,4380_16304,Dundalk,60259-00016-1,0,4380_7778208_1700901,4380_355 -4380_77967,293,4380_16305,Dundalk,60257-00017-1,0,4380_7778208_1700901,4380_355 -4380_77967,290,4380_16306,Dundalk,60261-00015-1,0,4380_7778208_1700901,4380_355 -4380_77967,294,4380_16307,Dundalk,60255-00018-1,0,4380_7778208_1700901,4380_355 -4380_77967,295,4380_16308,Dundalk,60263-00019-1,0,4380_7778208_1700901,4380_355 -4380_77967,296,4380_16309,Dundalk,60265-00021-1,0,4380_7778208_1700901,4380_358 -4380_77947,297,4380_1631,Drop Off,51213-00008-1,0,4380_7778208_1011107,4380_22 -4380_77967,285,4380_16317,Cavan,60173-00009-1,1,4380_7778208_1700901,4380_359 -4380_77967,286,4380_16318,Cavan,60180-00010-1,1,4380_7778208_1700901,4380_359 -4380_77967,297,4380_16319,Cavan,60175-00008-1,1,4380_7778208_1700901,4380_361 -4380_77947,291,4380_1632,Drop Off,50611-00013-1,0,4380_7778208_1011101,4380_24 -4380_77967,288,4380_16320,Cavan,60171-00011-1,1,4380_7778208_1700901,4380_359 -4380_77967,287,4380_16321,Cavan,60176-00012-1,1,4380_7778208_1700901,4380_359 -4380_77967,291,4380_16322,Cavan,60178-00013-1,1,4380_7778208_1700901,4380_362 -4380_77967,289,4380_16323,Cavan,60169-00014-1,1,4380_7778208_1700901,4380_359 -4380_77967,292,4380_16324,Cavan,60181-00016-1,1,4380_7778208_1700901,4380_359 -4380_77967,293,4380_16325,Cavan,60172-00017-1,1,4380_7778208_1700901,4380_359 -4380_77967,290,4380_16326,Cavan,60174-00015-1,1,4380_7778208_1700901,4380_359 -4380_77967,294,4380_16327,Cavan,60177-00018-1,1,4380_7778208_1700901,4380_359 -4380_77967,295,4380_16328,Cavan,60170-00019-1,1,4380_7778208_1700901,4380_359 -4380_77967,296,4380_16329,Cavan,60179-00021-1,1,4380_7778208_1700901,4380_362 -4380_77947,296,4380_1633,Drop Off,50612-00021-1,0,4380_7778208_1011101,4380_24 -4380_77967,285,4380_16337,Cavan,60287-00009-1,1,4380_7778208_1700902,4380_359 -4380_77967,286,4380_16338,Cavan,60291-00010-1,1,4380_7778208_1700902,4380_359 -4380_77967,297,4380_16339,Cavan,60282-00008-1,1,4380_7778208_1700902,4380_361 -4380_77967,288,4380_16340,Cavan,60283-00011-1,1,4380_7778208_1700902,4380_359 -4380_77967,287,4380_16341,Cavan,60280-00012-1,1,4380_7778208_1700902,4380_359 -4380_77967,291,4380_16342,Cavan,60289-00013-1,1,4380_7778208_1700902,4380_362 -4380_77967,289,4380_16343,Cavan,60285-00014-1,1,4380_7778208_1700902,4380_359 -4380_77967,292,4380_16344,Cavan,60292-00016-1,1,4380_7778208_1700902,4380_359 -4380_77967,293,4380_16345,Cavan,60284-00017-1,1,4380_7778208_1700902,4380_359 -4380_77967,290,4380_16346,Cavan,60288-00015-1,1,4380_7778208_1700902,4380_359 -4380_77967,294,4380_16347,Cavan,60281-00018-1,1,4380_7778208_1700902,4380_359 -4380_77967,295,4380_16348,Cavan,60286-00019-1,1,4380_7778208_1700902,4380_359 -4380_77967,296,4380_16349,Cavan,60290-00021-1,1,4380_7778208_1700902,4380_362 -4380_77967,285,4380_16357,Cavan,60195-00009-1,1,4380_7778208_1700901,4380_359 -4380_77967,286,4380_16358,Cavan,60202-00010-1,1,4380_7778208_1700901,4380_359 -4380_77967,297,4380_16359,Cavan,60197-00008-1,1,4380_7778208_1700901,4380_361 -4380_77967,288,4380_16360,Cavan,60206-00011-1,1,4380_7778208_1700901,4380_359 -4380_77967,287,4380_16361,Cavan,60200-00012-1,1,4380_7778208_1700901,4380_359 -4380_77967,291,4380_16362,Cavan,60198-00013-1,1,4380_7778208_1700901,4380_362 -4380_77967,289,4380_16363,Cavan,60204-00014-1,1,4380_7778208_1700901,4380_359 -4380_77967,292,4380_16364,Cavan,60203-00016-1,1,4380_7778208_1700901,4380_359 -4380_77967,293,4380_16365,Cavan,60207-00017-1,1,4380_7778208_1700901,4380_359 -4380_77967,290,4380_16366,Cavan,60196-00015-1,1,4380_7778208_1700901,4380_359 -4380_77967,294,4380_16367,Cavan,60201-00018-1,1,4380_7778208_1700901,4380_359 -4380_77967,295,4380_16368,Cavan,60205-00019-1,1,4380_7778208_1700901,4380_359 -4380_77967,296,4380_16369,Cavan,60199-00021-1,1,4380_7778208_1700901,4380_362 -4380_77967,285,4380_16377,Cavan,60309-00009-1,1,4380_7778208_1700902,4380_359 -4380_77967,286,4380_16378,Cavan,60311-00010-1,1,4380_7778208_1700902,4380_359 -4380_77967,297,4380_16379,Cavan,60308-00008-1,1,4380_7778208_1700902,4380_361 -4380_77967,288,4380_16380,Cavan,60313-00011-1,1,4380_7778208_1700902,4380_359 -4380_77967,287,4380_16381,Cavan,60317-00012-1,1,4380_7778208_1700902,4380_359 -4380_77967,291,4380_16382,Cavan,60306-00013-1,1,4380_7778208_1700902,4380_362 -4380_77967,289,4380_16383,Cavan,60315-00014-1,1,4380_7778208_1700902,4380_359 -4380_77967,292,4380_16384,Cavan,60312-00016-1,1,4380_7778208_1700902,4380_359 -4380_77967,293,4380_16385,Cavan,60314-00017-1,1,4380_7778208_1700902,4380_359 -4380_77967,290,4380_16386,Cavan,60310-00015-1,1,4380_7778208_1700902,4380_359 -4380_77967,294,4380_16387,Cavan,60318-00018-1,1,4380_7778208_1700902,4380_359 -4380_77967,295,4380_16388,Cavan,60316-00019-1,1,4380_7778208_1700902,4380_359 -4380_77967,296,4380_16389,Cavan,60307-00021-1,1,4380_7778208_1700902,4380_362 -4380_77947,285,4380_1639,Drop Off,51144-00009-1,0,4380_7778208_1011106,4380_22 -4380_77967,285,4380_16395,Carrickmacross,60223-00009-1,1,4380_7778208_1700901,4380_360 -4380_77967,286,4380_16396,Carrickmacross,60227-00010-1,1,4380_7778208_1700901,4380_360 -4380_77967,288,4380_16397,Carrickmacross,60221-00011-1,1,4380_7778208_1700901,4380_360 -4380_77967,287,4380_16398,Carrickmacross,60229-00012-1,1,4380_7778208_1700901,4380_360 -4380_77967,289,4380_16399,Carrickmacross,60225-00014-1,1,4380_7778208_1700901,4380_360 -4380_77946,296,4380_164,Dundalk,50278-00021-1,0,4380_7778208_1000912,4380_5 -4380_77947,286,4380_1640,Drop Off,51142-00010-1,0,4380_7778208_1011106,4380_22 -4380_77967,292,4380_16400,Carrickmacross,60228-00016-1,1,4380_7778208_1700901,4380_360 -4380_77967,293,4380_16401,Carrickmacross,60222-00017-1,1,4380_7778208_1700901,4380_360 -4380_77967,290,4380_16402,Carrickmacross,60224-00015-1,1,4380_7778208_1700901,4380_360 -4380_77967,294,4380_16403,Carrickmacross,60230-00018-1,1,4380_7778208_1700901,4380_360 -4380_77967,295,4380_16404,Carrickmacross,60226-00019-1,1,4380_7778208_1700901,4380_360 -4380_77947,288,4380_1641,Drop Off,51140-00011-1,0,4380_7778208_1011106,4380_22 -4380_77967,285,4380_16412,Cavan,60248-00009-1,1,4380_7778208_1700901,4380_359 -4380_77967,286,4380_16413,Cavan,60246-00010-1,1,4380_7778208_1700901,4380_359 -4380_77967,297,4380_16414,Cavan,60243-00008-1,1,4380_7778208_1700901,4380_361 -4380_77967,288,4380_16415,Cavan,60244-00011-1,1,4380_7778208_1700901,4380_359 -4380_77967,287,4380_16416,Cavan,60250-00012-1,1,4380_7778208_1700901,4380_359 -4380_77967,291,4380_16417,Cavan,60252-00013-1,1,4380_7778208_1700901,4380_362 -4380_77967,289,4380_16418,Cavan,60241-00014-1,1,4380_7778208_1700901,4380_359 -4380_77967,292,4380_16419,Cavan,60247-00016-1,1,4380_7778208_1700901,4380_359 -4380_77947,287,4380_1642,Drop Off,51148-00012-1,0,4380_7778208_1011106,4380_22 -4380_77967,293,4380_16420,Cavan,60245-00017-1,1,4380_7778208_1700901,4380_359 -4380_77967,290,4380_16421,Cavan,60249-00015-1,1,4380_7778208_1700901,4380_359 -4380_77967,294,4380_16422,Cavan,60251-00018-1,1,4380_7778208_1700901,4380_359 -4380_77967,295,4380_16423,Cavan,60242-00019-1,1,4380_7778208_1700901,4380_359 -4380_77967,296,4380_16424,Cavan,60253-00021-1,1,4380_7778208_1700901,4380_362 -4380_77947,289,4380_1643,Drop Off,51146-00014-1,0,4380_7778208_1011106,4380_22 -4380_77967,285,4380_16432,Cavan,60334-00009-1,1,4380_7778208_1700902,4380_359 -4380_77967,286,4380_16433,Cavan,60336-00010-1,1,4380_7778208_1700902,4380_359 -4380_77967,297,4380_16434,Cavan,60344-00008-1,1,4380_7778208_1700902,4380_361 -4380_77967,288,4380_16435,Cavan,60342-00011-1,1,4380_7778208_1700902,4380_359 -4380_77967,287,4380_16436,Cavan,60338-00012-1,1,4380_7778208_1700902,4380_359 -4380_77967,291,4380_16437,Cavan,60340-00013-1,1,4380_7778208_1700902,4380_362 -4380_77967,289,4380_16438,Cavan,60332-00014-1,1,4380_7778208_1700902,4380_359 -4380_77967,292,4380_16439,Cavan,60337-00016-1,1,4380_7778208_1700902,4380_359 -4380_77947,290,4380_1644,Drop Off,51145-00015-1,0,4380_7778208_1011106,4380_22 -4380_77967,293,4380_16440,Cavan,60343-00017-1,1,4380_7778208_1700902,4380_359 -4380_77967,290,4380_16441,Cavan,60335-00015-1,1,4380_7778208_1700902,4380_359 -4380_77967,294,4380_16442,Cavan,60339-00018-1,1,4380_7778208_1700902,4380_359 -4380_77967,295,4380_16443,Cavan,60333-00019-1,1,4380_7778208_1700902,4380_359 -4380_77967,296,4380_16444,Cavan,60341-00021-1,1,4380_7778208_1700902,4380_362 -4380_77947,292,4380_1645,Drop Off,51143-00016-1,0,4380_7778208_1011106,4380_22 -4380_77968,285,4380_16457,Moneymore,60355-00009-1,0,4380_7778208_1731101,4380_363 -4380_77968,285,4380_16458,Ballsgrove,60479-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16459,Moneymore,60349-00010-1,0,4380_7778208_1731101,4380_363 -4380_77947,293,4380_1646,Drop Off,51141-00017-1,0,4380_7778208_1011106,4380_22 -4380_77968,286,4380_16460,Ballsgrove,60477-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16461,Moneymore,60347-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16462,Ballsgrove,60483-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16463,Moneymore,60351-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16464,Ballsgrove,60485-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16465,Moneymore,60353-00013-1,0,4380_7778208_1731101,4380_365 -4380_77968,291,4380_16466,Ballsgrove,60481-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16467,Moneymore,60345-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16468,Ballsgrove,60475-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16469,Moneymore,60350-00016-1,0,4380_7778208_1731101,4380_363 -4380_77947,294,4380_1647,Drop Off,51149-00018-1,0,4380_7778208_1011106,4380_22 -4380_77968,292,4380_16470,Ballsgrove,60478-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16471,Moneymore,60348-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16472,Ballsgrove,60484-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16473,Moneymore,60356-00015-1,0,4380_7778208_1731101,4380_363 -4380_77968,290,4380_16474,Ballsgrove,60480-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16475,Moneymore,60352-00018-1,0,4380_7778208_1731101,4380_363 -4380_77968,294,4380_16476,Ballsgrove,60486-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16477,Moneymore,60346-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16478,Ballsgrove,60476-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16479,Moneymore,60354-00021-1,0,4380_7778208_1731101,4380_365 -4380_77947,295,4380_1648,Drop Off,51147-00019-1,0,4380_7778208_1011106,4380_22 -4380_77968,296,4380_16480,Ballsgrove,60482-00021-1,0,4380_7778208_1731102,4380_366 -4380_77968,285,4380_16493,Moneymore,60367-00009-1,0,4380_7778208_1731101,4380_363 -4380_77968,285,4380_16494,Ballsgrove,60497-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16495,Moneymore,60357-00010-1,0,4380_7778208_1731101,4380_363 -4380_77968,286,4380_16496,Ballsgrove,60493-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16497,Moneymore,60359-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16498,Ballsgrove,60487-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16499,Moneymore,60363-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16500,Ballsgrove,60489-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16501,Moneymore,60365-00013-1,0,4380_7778208_1731101,4380_365 -4380_77968,291,4380_16502,Ballsgrove,60495-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16503,Moneymore,60361-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16504,Ballsgrove,60491-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16505,Moneymore,60358-00016-1,0,4380_7778208_1731101,4380_363 -4380_77968,292,4380_16506,Ballsgrove,60494-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16507,Moneymore,60360-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16508,Ballsgrove,60488-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16509,Moneymore,60368-00015-1,0,4380_7778208_1731101,4380_363 -4380_77947,297,4380_1651,Drop Off,50613-00008-1,0,4380_7778208_1011101,4380_22 -4380_77968,290,4380_16510,Ballsgrove,60498-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16511,Moneymore,60364-00018-1,0,4380_7778208_1731101,4380_363 -4380_77968,294,4380_16512,Ballsgrove,60490-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16513,Moneymore,60362-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16514,Ballsgrove,60492-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16515,Moneymore,60366-00021-1,0,4380_7778208_1731101,4380_365 -4380_77968,296,4380_16516,Ballsgrove,60496-00021-1,0,4380_7778208_1731102,4380_366 -4380_77947,291,4380_1652,Drop Off,51214-00013-1,0,4380_7778208_1011107,4380_24 -4380_77968,285,4380_16529,Moneymore,60371-00009-1,0,4380_7778208_1731101,4380_363 -4380_77947,296,4380_1653,Drop Off,51215-00021-1,0,4380_7778208_1011107,4380_24 -4380_77968,285,4380_16530,Ballsgrove,60499-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16531,Moneymore,60369-00010-1,0,4380_7778208_1731101,4380_363 -4380_77968,286,4380_16532,Ballsgrove,60503-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16533,Moneymore,60379-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16534,Ballsgrove,60507-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16535,Moneymore,60375-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16536,Ballsgrove,60505-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16537,Moneymore,60377-00013-1,0,4380_7778208_1731101,4380_365 -4380_77968,291,4380_16538,Ballsgrove,60501-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16539,Moneymore,60373-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16540,Ballsgrove,60509-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16541,Moneymore,60370-00016-1,0,4380_7778208_1731101,4380_363 -4380_77968,292,4380_16542,Ballsgrove,60504-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16543,Moneymore,60380-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16544,Ballsgrove,60508-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16545,Moneymore,60372-00015-1,0,4380_7778208_1731101,4380_363 -4380_77968,290,4380_16546,Ballsgrove,60500-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16547,Moneymore,60376-00018-1,0,4380_7778208_1731101,4380_363 -4380_77968,294,4380_16548,Ballsgrove,60506-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16549,Moneymore,60374-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16550,Ballsgrove,60510-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16551,Moneymore,60378-00021-1,0,4380_7778208_1731101,4380_365 -4380_77968,296,4380_16552,Ballsgrove,60502-00021-1,0,4380_7778208_1731102,4380_366 -4380_77968,285,4380_16565,Moneymore,60387-00009-1,0,4380_7778208_1731101,4380_363 -4380_77968,285,4380_16566,Ballsgrove,60519-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16567,Moneymore,60389-00010-1,0,4380_7778208_1731101,4380_363 -4380_77968,286,4380_16568,Ballsgrove,60513-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16569,Moneymore,60391-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16570,Ballsgrove,60521-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16571,Moneymore,60383-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16572,Ballsgrove,60515-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16573,Moneymore,60381-00013-1,0,4380_7778208_1731101,4380_365 -4380_77968,291,4380_16574,Ballsgrove,60517-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16575,Moneymore,60385-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16576,Ballsgrove,60511-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16577,Moneymore,60390-00016-1,0,4380_7778208_1731101,4380_363 -4380_77968,292,4380_16578,Ballsgrove,60514-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16579,Moneymore,60392-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16580,Ballsgrove,60522-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16581,Moneymore,60388-00015-1,0,4380_7778208_1731101,4380_363 -4380_77968,290,4380_16582,Ballsgrove,60520-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16583,Moneymore,60384-00018-1,0,4380_7778208_1731101,4380_363 -4380_77968,294,4380_16584,Ballsgrove,60516-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16585,Moneymore,60386-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16586,Ballsgrove,60512-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16587,Moneymore,60382-00021-1,0,4380_7778208_1731101,4380_365 -4380_77968,296,4380_16588,Ballsgrove,60518-00021-1,0,4380_7778208_1731102,4380_366 -4380_77947,285,4380_1659,Drop Off,50614-00009-1,0,4380_7778208_1011101,4380_22 -4380_77947,286,4380_1660,Drop Off,50618-00010-1,0,4380_7778208_1011101,4380_22 -4380_77968,285,4380_16601,Moneymore,60397-00009-1,0,4380_7778208_1731101,4380_363 -4380_77968,285,4380_16602,Ballsgrove,60529-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16603,Moneymore,60395-00010-1,0,4380_7778208_1731101,4380_363 -4380_77968,286,4380_16604,Ballsgrove,60525-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16605,Moneymore,60393-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16606,Ballsgrove,60533-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16607,Moneymore,60403-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16608,Ballsgrove,60523-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16609,Moneymore,60401-00013-1,0,4380_7778208_1731101,4380_365 -4380_77947,287,4380_1661,Drop Off,50620-00012-1,0,4380_7778208_1011101,4380_22 -4380_77968,291,4380_16610,Ballsgrove,60531-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16611,Moneymore,60399-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16612,Ballsgrove,60527-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16613,Moneymore,60396-00016-1,0,4380_7778208_1731101,4380_363 -4380_77968,292,4380_16614,Ballsgrove,60526-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16615,Moneymore,60394-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16616,Ballsgrove,60534-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16617,Moneymore,60398-00015-1,0,4380_7778208_1731101,4380_363 -4380_77968,290,4380_16618,Ballsgrove,60530-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16619,Moneymore,60404-00018-1,0,4380_7778208_1731101,4380_363 -4380_77947,288,4380_1662,Drop Off,50616-00011-1,0,4380_7778208_1011101,4380_22 -4380_77968,294,4380_16620,Ballsgrove,60524-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16621,Moneymore,60400-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16622,Ballsgrove,60528-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16623,Moneymore,60402-00021-1,0,4380_7778208_1731101,4380_365 -4380_77968,296,4380_16624,Ballsgrove,60532-00021-1,0,4380_7778208_1731102,4380_366 -4380_77947,289,4380_1663,Drop Off,50622-00014-1,0,4380_7778208_1011101,4380_22 -4380_77968,285,4380_16637,Moneymore,60413-00009-1,0,4380_7778208_1731101,4380_363 -4380_77968,285,4380_16638,Ballsgrove,60539-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16639,Moneymore,60409-00010-1,0,4380_7778208_1731101,4380_363 -4380_77947,290,4380_1664,Drop Off,50615-00015-1,0,4380_7778208_1011101,4380_22 -4380_77968,286,4380_16640,Ballsgrove,60537-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16641,Moneymore,60407-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16642,Ballsgrove,60543-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16643,Moneymore,60405-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16644,Ballsgrove,60541-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16645,Moneymore,60411-00013-1,0,4380_7778208_1731101,4380_365 -4380_77968,291,4380_16646,Ballsgrove,60545-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16647,Moneymore,60415-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16648,Ballsgrove,60535-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16649,Moneymore,60410-00016-1,0,4380_7778208_1731101,4380_363 -4380_77947,292,4380_1665,Drop Off,50619-00016-1,0,4380_7778208_1011101,4380_22 -4380_77968,292,4380_16650,Ballsgrove,60538-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16651,Moneymore,60408-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16652,Ballsgrove,60544-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16653,Moneymore,60414-00015-1,0,4380_7778208_1731101,4380_363 -4380_77968,290,4380_16654,Ballsgrove,60540-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16655,Moneymore,60406-00018-1,0,4380_7778208_1731101,4380_363 -4380_77968,294,4380_16656,Ballsgrove,60542-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16657,Moneymore,60416-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16658,Ballsgrove,60536-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16659,Moneymore,60412-00021-1,0,4380_7778208_1731101,4380_365 -4380_77947,293,4380_1666,Drop Off,50617-00017-1,0,4380_7778208_1011101,4380_22 -4380_77968,296,4380_16660,Ballsgrove,60546-00021-1,0,4380_7778208_1731102,4380_366 -4380_77947,294,4380_1667,Drop Off,50621-00018-1,0,4380_7778208_1011101,4380_22 -4380_77968,285,4380_16673,Moneymore,60425-00009-1,0,4380_7778208_1731101,4380_363 -4380_77968,285,4380_16674,Ballsgrove,60551-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16675,Moneymore,60419-00010-1,0,4380_7778208_1731101,4380_363 -4380_77968,286,4380_16676,Ballsgrove,60557-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16677,Moneymore,60421-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16678,Ballsgrove,60553-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16679,Moneymore,60427-00012-1,0,4380_7778208_1731101,4380_363 -4380_77947,295,4380_1668,Drop Off,50623-00019-1,0,4380_7778208_1011101,4380_22 -4380_77968,287,4380_16680,Ballsgrove,60547-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16681,Moneymore,60417-00013-1,0,4380_7778208_1731101,4380_365 -4380_77968,291,4380_16682,Ballsgrove,60555-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16683,Moneymore,60423-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16684,Ballsgrove,60549-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16685,Moneymore,60420-00016-1,0,4380_7778208_1731101,4380_363 -4380_77968,292,4380_16686,Ballsgrove,60558-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16687,Moneymore,60422-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16688,Ballsgrove,60554-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16689,Moneymore,60426-00015-1,0,4380_7778208_1731101,4380_363 -4380_77968,290,4380_16690,Ballsgrove,60552-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16691,Moneymore,60428-00018-1,0,4380_7778208_1731101,4380_363 -4380_77968,294,4380_16692,Ballsgrove,60548-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16693,Moneymore,60424-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16694,Ballsgrove,60550-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16695,Moneymore,60418-00021-1,0,4380_7778208_1731101,4380_365 -4380_77968,296,4380_16696,Ballsgrove,60556-00021-1,0,4380_7778208_1731102,4380_366 -4380_77968,285,4380_16709,Moneymore,60431-00009-1,0,4380_7778208_1731101,4380_363 -4380_77947,297,4380_1671,Drop Off,50955-00008-1,0,4380_7778208_1011104,4380_22 -4380_77968,285,4380_16710,Ballsgrove,60559-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16711,Moneymore,60437-00010-1,0,4380_7778208_1731101,4380_363 -4380_77968,286,4380_16712,Ballsgrove,60561-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16713,Moneymore,60435-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16714,Ballsgrove,60565-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16715,Moneymore,60433-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16716,Ballsgrove,60563-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16717,Moneymore,60429-00013-1,0,4380_7778208_1731101,4380_365 -4380_77968,291,4380_16718,Ballsgrove,60567-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16719,Moneymore,60439-00014-1,0,4380_7778208_1731101,4380_363 -4380_77947,291,4380_1672,Drop Off,50834-00013-1,0,4380_7778208_1011103,4380_24 -4380_77968,289,4380_16720,Ballsgrove,60569-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16721,Moneymore,60438-00016-1,0,4380_7778208_1731101,4380_363 -4380_77968,292,4380_16722,Ballsgrove,60562-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16723,Moneymore,60436-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16724,Ballsgrove,60566-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16725,Moneymore,60432-00015-1,0,4380_7778208_1731101,4380_363 -4380_77968,290,4380_16726,Ballsgrove,60560-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16727,Moneymore,60434-00018-1,0,4380_7778208_1731101,4380_363 -4380_77968,294,4380_16728,Ballsgrove,60564-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16729,Moneymore,60440-00019-1,0,4380_7778208_1731101,4380_363 -4380_77947,296,4380_1673,Drop Off,50835-00021-1,0,4380_7778208_1011103,4380_24 -4380_77968,295,4380_16730,Ballsgrove,60570-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16731,Moneymore,60430-00021-1,0,4380_7778208_1731101,4380_365 -4380_77968,296,4380_16732,Ballsgrove,60568-00021-1,0,4380_7778208_1731102,4380_366 -4380_77968,285,4380_16745,Moneymore,60451-00009-1,0,4380_7778208_1731101,4380_363 -4380_77968,285,4380_16746,Ballsgrove,60581-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16747,Moneymore,60449-00010-1,0,4380_7778208_1731101,4380_363 -4380_77968,286,4380_16748,Ballsgrove,60577-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16749,Moneymore,60445-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16750,Ballsgrove,60571-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16751,Moneymore,60447-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16752,Ballsgrove,60579-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16753,Moneymore,60441-00013-1,0,4380_7778208_1731101,4380_365 -4380_77968,291,4380_16754,Ballsgrove,60573-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16755,Moneymore,60443-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16756,Ballsgrove,60575-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16757,Moneymore,60450-00016-1,0,4380_7778208_1731101,4380_363 -4380_77968,292,4380_16758,Ballsgrove,60578-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16759,Moneymore,60446-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16760,Ballsgrove,60572-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16761,Moneymore,60452-00015-1,0,4380_7778208_1731101,4380_363 -4380_77968,290,4380_16762,Ballsgrove,60582-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16763,Moneymore,60448-00018-1,0,4380_7778208_1731101,4380_363 -4380_77968,294,4380_16764,Ballsgrove,60580-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16765,Moneymore,60444-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16766,Ballsgrove,60576-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16767,Moneymore,60442-00021-1,0,4380_7778208_1731101,4380_365 -4380_77968,296,4380_16768,Ballsgrove,60574-00021-1,0,4380_7778208_1731102,4380_366 -4380_77968,285,4380_16781,Moneymore,60453-00009-1,0,4380_7778208_1731101,4380_363 -4380_77968,285,4380_16782,Ballsgrove,60591-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16783,Moneymore,60455-00010-1,0,4380_7778208_1731101,4380_363 -4380_77968,286,4380_16784,Ballsgrove,60585-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16785,Moneymore,60459-00011-1,0,4380_7778208_1731101,4380_363 -4380_77968,288,4380_16786,Ballsgrove,60583-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16787,Moneymore,60461-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16788,Ballsgrove,60593-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,291,4380_16789,Moneymore,60457-00013-1,0,4380_7778208_1731101,4380_365 -4380_77947,285,4380_1679,Drop Off,51478-00009-1,0,4380_7778208_1011110,4380_22 -4380_77968,291,4380_16790,Ballsgrove,60589-00013-1,0,4380_7778208_1731102,4380_366 -4380_77968,289,4380_16791,Moneymore,60463-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16792,Ballsgrove,60587-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16793,Moneymore,60456-00016-1,0,4380_7778208_1731101,4380_363 -4380_77968,292,4380_16794,Ballsgrove,60586-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16795,Moneymore,60460-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16796,Ballsgrove,60584-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16797,Moneymore,60454-00015-1,0,4380_7778208_1731101,4380_363 -4380_77968,290,4380_16798,Ballsgrove,60592-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16799,Moneymore,60462-00018-1,0,4380_7778208_1731101,4380_363 -4380_77947,286,4380_1680,Drop Off,51474-00010-1,0,4380_7778208_1011110,4380_22 -4380_77968,294,4380_16800,Ballsgrove,60594-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16801,Moneymore,60464-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16802,Ballsgrove,60588-00019-1,0,4380_7778208_1731102,4380_364 -4380_77968,296,4380_16803,Moneymore,60458-00021-1,0,4380_7778208_1731101,4380_365 -4380_77968,296,4380_16804,Ballsgrove,60590-00021-1,0,4380_7778208_1731102,4380_366 -4380_77947,288,4380_1681,Drop Off,51476-00011-1,0,4380_7778208_1011110,4380_22 -4380_77968,285,4380_16815,Moneymore,60467-00009-1,0,4380_7778208_1731101,4380_363 -4380_77968,285,4380_16816,Ballsgrove,60597-00009-1,0,4380_7778208_1731102,4380_364 -4380_77968,286,4380_16817,Moneymore,60469-00010-1,0,4380_7778208_1731101,4380_363 -4380_77968,286,4380_16818,Ballsgrove,60601-00010-1,0,4380_7778208_1731102,4380_364 -4380_77968,288,4380_16819,Moneymore,60471-00011-1,0,4380_7778208_1731101,4380_363 -4380_77947,287,4380_1682,Drop Off,51472-00012-1,0,4380_7778208_1011110,4380_22 -4380_77968,288,4380_16820,Ballsgrove,60599-00011-1,0,4380_7778208_1731102,4380_364 -4380_77968,287,4380_16821,Moneymore,60465-00012-1,0,4380_7778208_1731101,4380_363 -4380_77968,287,4380_16822,Ballsgrove,60595-00012-1,0,4380_7778208_1731102,4380_364 -4380_77968,289,4380_16823,Moneymore,60473-00014-1,0,4380_7778208_1731101,4380_363 -4380_77968,289,4380_16824,Ballsgrove,60603-00014-1,0,4380_7778208_1731102,4380_364 -4380_77968,292,4380_16825,Moneymore,60470-00016-1,0,4380_7778208_1731101,4380_363 -4380_77968,292,4380_16826,Ballsgrove,60602-00016-1,0,4380_7778208_1731102,4380_364 -4380_77968,293,4380_16827,Moneymore,60472-00017-1,0,4380_7778208_1731101,4380_363 -4380_77968,293,4380_16828,Ballsgrove,60600-00017-1,0,4380_7778208_1731102,4380_364 -4380_77968,290,4380_16829,Moneymore,60468-00015-1,0,4380_7778208_1731101,4380_363 -4380_77947,289,4380_1683,Drop Off,51480-00014-1,0,4380_7778208_1011110,4380_22 -4380_77968,290,4380_16830,Ballsgrove,60598-00015-1,0,4380_7778208_1731102,4380_364 -4380_77968,294,4380_16831,Moneymore,60466-00018-1,0,4380_7778208_1731101,4380_363 -4380_77968,294,4380_16832,Ballsgrove,60596-00018-1,0,4380_7778208_1731102,4380_364 -4380_77968,295,4380_16833,Moneymore,60474-00019-1,0,4380_7778208_1731101,4380_363 -4380_77968,295,4380_16834,Ballsgrove,60604-00019-1,0,4380_7778208_1731102,4380_364 -4380_77947,290,4380_1684,Drop Off,51479-00015-1,0,4380_7778208_1011110,4380_22 -4380_77969,285,4380_16841,Grange Road,61683-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_16842,Grange Road,61681-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_16843,Grange Road,61679-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_16844,Grange Road,61677-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_16845,Grange Road,61687-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_16846,Grange Road,61685-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_16847,Grange Road,61682-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_16848,Grange Road,61680-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_16849,Grange Road,61684-00015-1,0,4380_7778208_1740903,4380_367 -4380_77947,292,4380_1685,Drop Off,51475-00016-1,0,4380_7778208_1011110,4380_22 -4380_77969,294,4380_16850,Grange Road,61678-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_16851,Grange Road,61686-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_16852,Grange Road,61688-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_16859,Grange Road,61705-00009-1,0,4380_7778208_1740903,4380_367 -4380_77947,293,4380_1686,Drop Off,51477-00017-1,0,4380_7778208_1011110,4380_22 -4380_77969,286,4380_16860,Grange Road,61709-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_16861,Grange Road,61701-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_16862,Grange Road,61711-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_16863,Grange Road,61707-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_16864,Grange Road,61703-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_16865,Grange Road,61710-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_16866,Grange Road,61702-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_16867,Grange Road,61706-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_16868,Grange Road,61712-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_16869,Grange Road,61704-00019-1,0,4380_7778208_1740903,4380_367 -4380_77947,294,4380_1687,Drop Off,51473-00018-1,0,4380_7778208_1011110,4380_22 -4380_77969,296,4380_16870,Grange Road,61708-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_16877,Grange Road,61725-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_16878,Grange Road,61731-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_16879,Grange Road,61729-00011-1,0,4380_7778208_1740903,4380_367 -4380_77947,295,4380_1688,Drop Off,51481-00019-1,0,4380_7778208_1011110,4380_22 -4380_77969,287,4380_16880,Grange Road,61735-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_16881,Grange Road,61727-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_16882,Grange Road,61733-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_16883,Grange Road,61732-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_16884,Grange Road,61730-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_16885,Grange Road,61726-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_16886,Grange Road,61736-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_16887,Grange Road,61734-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_16888,Grange Road,61728-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_16895,Grange Road,61753-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_16896,Grange Road,61757-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_16897,Grange Road,61749-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_16898,Grange Road,61759-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_16899,Grange Road,61751-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_16900,Grange Road,61755-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_16901,Grange Road,61758-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_16902,Grange Road,61750-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_16903,Grange Road,61754-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_16904,Grange Road,61760-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_16905,Grange Road,61756-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_16906,Grange Road,61752-00021-1,0,4380_7778208_1740903,4380_368 -4380_77947,297,4380_1691,Drop Off,51329-00008-1,0,4380_7778208_1011108,4380_22 -4380_77969,285,4380_16913,Grange Road,61781-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_16914,Grange Road,61779-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_16915,Grange Road,61775-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_16916,Grange Road,61777-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_16917,Grange Road,61773-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_16918,Grange Road,61783-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_16919,Grange Road,61780-00016-1,0,4380_7778208_1740903,4380_367 -4380_77947,291,4380_1692,Drop Off,50956-00013-1,0,4380_7778208_1011104,4380_24 -4380_77969,293,4380_16920,Grange Road,61776-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_16921,Grange Road,61782-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_16922,Grange Road,61778-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_16923,Grange Road,61784-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_16924,Grange Road,61774-00021-1,0,4380_7778208_1740903,4380_368 -4380_77947,296,4380_1693,Drop Off,50957-00021-1,0,4380_7778208_1011104,4380_24 -4380_77969,285,4380_16931,Grange Road,61805-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_16932,Grange Road,61803-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_16933,Grange Road,61799-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_16934,Grange Road,61797-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_16935,Grange Road,61807-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_16936,Grange Road,61801-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_16937,Grange Road,61804-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_16938,Grange Road,61800-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_16939,Grange Road,61806-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_16940,Grange Road,61798-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_16941,Grange Road,61802-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_16942,Grange Road,61808-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_16949,Grange Road,61821-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_16950,Grange Road,61827-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_16951,Grange Road,61829-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_16952,Grange Road,61831-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_16953,Grange Road,61825-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_16954,Grange Road,61823-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_16955,Grange Road,61828-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_16956,Grange Road,61830-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_16957,Grange Road,61822-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_16958,Grange Road,61832-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_16959,Grange Road,61824-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_16960,Grange Road,61826-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_16967,Grange Road,61851-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_16968,Grange Road,61849-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_16969,Grange Road,61855-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_16970,Grange Road,61845-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_16971,Grange Road,61847-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_16972,Grange Road,61853-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_16973,Grange Road,61850-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_16974,Grange Road,61856-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_16975,Grange Road,61852-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_16976,Grange Road,61846-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_16977,Grange Road,61854-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_16978,Grange Road,61848-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_16985,Grange Road,61879-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_16986,Grange Road,61875-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_16987,Grange Road,61877-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_16988,Grange Road,61873-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_16989,Grange Road,61871-00013-1,0,4380_7778208_1740903,4380_368 -4380_77947,285,4380_1699,Drop Off,50729-00009-1,0,4380_7778208_1011102,4380_22 -4380_77969,289,4380_16990,Grange Road,61869-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_16991,Grange Road,61876-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_16992,Grange Road,61878-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_16993,Grange Road,61880-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_16994,Grange Road,61874-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_16995,Grange Road,61870-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_16996,Grange Road,61872-00021-1,0,4380_7778208_1740903,4380_368 -4380_77946,295,4380_17,Dundalk,50450-00019-1,0,4380_7778208_1000915,4380_1 -4380_77947,286,4380_1700,Drop Off,50731-00010-1,0,4380_7778208_1011102,4380_22 -4380_77969,285,4380_17003,Grange Road,61897-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_17004,Grange Road,61893-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17005,Grange Road,61895-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17006,Grange Road,61901-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17007,Grange Road,61899-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_17008,Grange Road,61903-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17009,Grange Road,61894-00016-1,0,4380_7778208_1740903,4380_367 -4380_77947,287,4380_1701,Drop Off,50733-00012-1,0,4380_7778208_1011102,4380_22 -4380_77969,293,4380_17010,Grange Road,61896-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17011,Grange Road,61898-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_17012,Grange Road,61902-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17013,Grange Road,61904-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17014,Grange Road,61900-00021-1,0,4380_7778208_1740903,4380_368 -4380_77947,288,4380_1702,Drop Off,50735-00011-1,0,4380_7778208_1011102,4380_22 -4380_77969,285,4380_17021,Grange Road,61919-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_17022,Grange Road,61921-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17023,Grange Road,61923-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17024,Grange Road,61927-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17025,Grange Road,61925-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_17026,Grange Road,61917-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17027,Grange Road,61922-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_17028,Grange Road,61924-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17029,Grange Road,61920-00015-1,0,4380_7778208_1740903,4380_367 -4380_77947,289,4380_1703,Drop Off,50737-00014-1,0,4380_7778208_1011102,4380_22 -4380_77969,294,4380_17030,Grange Road,61928-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17031,Grange Road,61918-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17032,Grange Road,61926-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_17039,Grange Road,61945-00009-1,0,4380_7778208_1740903,4380_367 -4380_77947,290,4380_1704,Drop Off,50730-00015-1,0,4380_7778208_1011102,4380_22 -4380_77969,286,4380_17040,Grange Road,61943-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17041,Grange Road,61951-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17042,Grange Road,61941-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17043,Grange Road,61949-00013-1,0,4380_7778208_1740903,4380_367 -4380_77969,289,4380_17044,Grange Road,61947-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17045,Grange Road,61944-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_17046,Grange Road,61952-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17047,Grange Road,61946-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_17048,Grange Road,61942-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17049,Grange Road,61948-00019-1,0,4380_7778208_1740903,4380_367 -4380_77947,292,4380_1705,Drop Off,50732-00016-1,0,4380_7778208_1011102,4380_22 -4380_77969,296,4380_17050,Grange Road,61950-00021-1,0,4380_7778208_1740903,4380_367 -4380_77969,285,4380_17057,Grange Road,61973-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_17058,Grange Road,61969-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17059,Grange Road,61965-00011-1,0,4380_7778208_1740903,4380_367 -4380_77947,293,4380_1706,Drop Off,50736-00017-1,0,4380_7778208_1011102,4380_22 -4380_77969,287,4380_17060,Grange Road,61971-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17061,Grange Road,61975-00013-1,0,4380_7778208_1740903,4380_367 -4380_77969,289,4380_17062,Grange Road,61967-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17063,Grange Road,61970-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_17064,Grange Road,61966-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17065,Grange Road,61974-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_17066,Grange Road,61972-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17067,Grange Road,61968-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17068,Grange Road,61976-00021-1,0,4380_7778208_1740903,4380_367 -4380_77947,294,4380_1707,Drop Off,50734-00018-1,0,4380_7778208_1011102,4380_22 -4380_77969,285,4380_17075,Grange Road,61999-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_17076,Grange Road,61991-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17077,Grange Road,61995-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17078,Grange Road,61993-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17079,Grange Road,61989-00013-1,0,4380_7778208_1740903,4380_367 -4380_77947,295,4380_1708,Drop Off,50738-00019-1,0,4380_7778208_1011102,4380_22 -4380_77969,289,4380_17080,Grange Road,61997-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17081,Grange Road,61992-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_17082,Grange Road,61996-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17083,Grange Road,62000-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_17084,Grange Road,61994-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17085,Grange Road,61998-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17086,Grange Road,61990-00021-1,0,4380_7778208_1740903,4380_367 -4380_77969,285,4380_17093,Grange Road,62021-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_17094,Grange Road,62019-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17095,Grange Road,62017-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17096,Grange Road,62023-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17097,Grange Road,62013-00013-1,0,4380_7778208_1740903,4380_367 -4380_77969,289,4380_17098,Grange Road,62015-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17099,Grange Road,62020-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_17100,Grange Road,62018-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17101,Grange Road,62022-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_17102,Grange Road,62024-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17103,Grange Road,62016-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17104,Grange Road,62014-00021-1,0,4380_7778208_1740903,4380_367 -4380_77947,297,4380_1711,Drop Off,51049-00008-1,0,4380_7778208_1011105,4380_22 -4380_77969,285,4380_17111,Grange Road,62045-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_17112,Grange Road,62043-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17113,Grange Road,62037-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17114,Grange Road,62047-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17115,Grange Road,62039-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_17116,Grange Road,62041-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17117,Grange Road,62044-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_17118,Grange Road,62038-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17119,Grange Road,62046-00015-1,0,4380_7778208_1740903,4380_367 -4380_77947,291,4380_1712,Drop Off,50739-00013-1,0,4380_7778208_1011102,4380_24 -4380_77969,294,4380_17120,Grange Road,62048-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17121,Grange Road,62042-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17122,Grange Road,62040-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_17129,Grange Road,62071-00009-1,0,4380_7778208_1740903,4380_367 -4380_77947,296,4380_1713,Drop Off,50740-00021-1,0,4380_7778208_1011102,4380_24 -4380_77969,286,4380_17130,Grange Road,62061-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17131,Grange Road,62063-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17132,Grange Road,62065-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17133,Grange Road,62067-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_17134,Grange Road,62069-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17135,Grange Road,62062-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_17136,Grange Road,62064-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17137,Grange Road,62072-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_17138,Grange Road,62066-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17139,Grange Road,62070-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17140,Grange Road,62068-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_17147,Grange Road,62089-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_17148,Grange Road,62093-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17149,Grange Road,62091-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17150,Grange Road,62087-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17151,Grange Road,62085-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_17152,Grange Road,62095-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17153,Grange Road,62094-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_17154,Grange Road,62092-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17155,Grange Road,62090-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_17156,Grange Road,62088-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17157,Grange Road,62096-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17158,Grange Road,62086-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_17165,Grange Road,62119-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_17166,Grange Road,62113-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17167,Grange Road,62117-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17168,Grange Road,62109-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17169,Grange Road,62115-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_17170,Grange Road,62111-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17171,Grange Road,62114-00016-1,0,4380_7778208_1740903,4380_367 -4380_77969,293,4380_17172,Grange Road,62118-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17173,Grange Road,62120-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_17174,Grange Road,62110-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17175,Grange Road,62112-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17176,Grange Road,62116-00021-1,0,4380_7778208_1740903,4380_368 -4380_77969,285,4380_17183,Grange Road,62141-00009-1,0,4380_7778208_1740903,4380_367 -4380_77969,286,4380_17184,Grange Road,62139-00010-1,0,4380_7778208_1740903,4380_367 -4380_77969,288,4380_17185,Grange Road,62135-00011-1,0,4380_7778208_1740903,4380_367 -4380_77969,287,4380_17186,Grange Road,62133-00012-1,0,4380_7778208_1740903,4380_367 -4380_77969,291,4380_17187,Grange Road,62137-00013-1,0,4380_7778208_1740903,4380_368 -4380_77969,289,4380_17188,Grange Road,62143-00014-1,0,4380_7778208_1740903,4380_367 -4380_77969,292,4380_17189,Grange Road,62140-00016-1,0,4380_7778208_1740903,4380_367 -4380_77947,285,4380_1719,Drop Off,50958-00009-1,0,4380_7778208_1011104,4380_22 -4380_77969,293,4380_17190,Grange Road,62136-00017-1,0,4380_7778208_1740903,4380_367 -4380_77969,290,4380_17191,Grange Road,62142-00015-1,0,4380_7778208_1740903,4380_367 -4380_77969,294,4380_17192,Grange Road,62134-00018-1,0,4380_7778208_1740903,4380_367 -4380_77969,295,4380_17193,Grange Road,62144-00019-1,0,4380_7778208_1740903,4380_367 -4380_77969,296,4380_17194,Grange Road,62138-00021-1,0,4380_7778208_1740903,4380_368 -4380_77946,285,4380_172,Dundalk,50337-00009-1,0,4380_7778208_1000913,4380_1 -4380_77947,286,4380_1720,Drop Off,50964-00010-1,0,4380_7778208_1011104,4380_22 -4380_77969,285,4380_17200,Dundalk,61693-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17201,Dundalk,61697-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17202,Dundalk,61695-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17203,Dundalk,61691-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17204,Dundalk,61689-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17205,Dundalk,61698-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17206,Dundalk,61696-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17207,Dundalk,61694-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17208,Dundalk,61692-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17209,Dundalk,61690-00019-1,1,4380_7778208_1740903,4380_369 -4380_77947,288,4380_1721,Drop Off,50960-00011-1,0,4380_7778208_1011104,4380_22 -4380_77969,291,4380_17211,Dundalk,61699-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17212,Dundalk,61700-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17218,Dundalk,61715-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17219,Dundalk,61717-00010-1,1,4380_7778208_1740903,4380_369 -4380_77947,287,4380_1722,Drop Off,50962-00012-1,0,4380_7778208_1011104,4380_22 -4380_77969,288,4380_17220,Dundalk,61713-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17221,Dundalk,61719-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17222,Dundalk,61721-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17223,Dundalk,61718-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17224,Dundalk,61714-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17225,Dundalk,61716-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17226,Dundalk,61720-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17227,Dundalk,61722-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17229,Dundalk,61723-00013-1,1,4380_7778208_1740903,4380_369 -4380_77947,289,4380_1723,Drop Off,50966-00014-1,0,4380_7778208_1011104,4380_22 -4380_77969,296,4380_17230,Dundalk,61724-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17236,Dundalk,61745-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17237,Dundalk,61737-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17238,Dundalk,61741-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17239,Dundalk,61743-00012-1,1,4380_7778208_1740903,4380_369 -4380_77947,290,4380_1724,Drop Off,50959-00015-1,0,4380_7778208_1011104,4380_22 -4380_77969,289,4380_17240,Dundalk,61739-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17241,Dundalk,61738-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17242,Dundalk,61742-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17243,Dundalk,61746-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17244,Dundalk,61744-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17245,Dundalk,61740-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17247,Dundalk,61747-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17248,Dundalk,61748-00021-1,1,4380_7778208_1740903,4380_369 -4380_77947,292,4380_1725,Drop Off,50965-00016-1,0,4380_7778208_1011104,4380_22 -4380_77969,285,4380_17254,Dundalk,61765-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17255,Dundalk,61769-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17256,Dundalk,61761-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17257,Dundalk,61767-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17258,Dundalk,61763-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17259,Dundalk,61770-00016-1,1,4380_7778208_1740903,4380_369 -4380_77947,293,4380_1726,Drop Off,50961-00017-1,0,4380_7778208_1011104,4380_22 -4380_77969,293,4380_17260,Dundalk,61762-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17261,Dundalk,61766-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17262,Dundalk,61768-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17263,Dundalk,61764-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17265,Dundalk,61771-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17266,Dundalk,61772-00021-1,1,4380_7778208_1740903,4380_369 -4380_77947,294,4380_1727,Drop Off,50963-00018-1,0,4380_7778208_1011104,4380_22 -4380_77969,285,4380_17272,Dundalk,61793-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17273,Dundalk,61785-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17274,Dundalk,61789-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17275,Dundalk,61791-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17276,Dundalk,61787-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17277,Dundalk,61786-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17278,Dundalk,61790-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17279,Dundalk,61794-00015-1,1,4380_7778208_1740903,4380_369 -4380_77947,295,4380_1728,Drop Off,50967-00019-1,0,4380_7778208_1011104,4380_22 -4380_77969,294,4380_17280,Dundalk,61792-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17281,Dundalk,61788-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17283,Dundalk,61795-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17284,Dundalk,61796-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17290,Dundalk,61817-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17291,Dundalk,61813-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17292,Dundalk,61811-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17293,Dundalk,61809-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17294,Dundalk,61815-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17295,Dundalk,61814-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17296,Dundalk,61812-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17297,Dundalk,61818-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17298,Dundalk,61810-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17299,Dundalk,61816-00019-1,1,4380_7778208_1740903,4380_369 -4380_77946,286,4380_173,Dundalk,50343-00010-1,0,4380_7778208_1000913,4380_1 -4380_77969,291,4380_17301,Dundalk,61819-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17302,Dundalk,61820-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17308,Dundalk,61841-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17309,Dundalk,61833-00010-1,1,4380_7778208_1740903,4380_369 -4380_77947,297,4380_1731,Drop Off,51386-00008-1,0,4380_7778208_1011109,4380_22 -4380_77969,288,4380_17310,Dundalk,61839-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17311,Dundalk,61837-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17312,Dundalk,61835-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17313,Dundalk,61834-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17314,Dundalk,61840-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17315,Dundalk,61842-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17316,Dundalk,61838-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17317,Dundalk,61836-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17319,Dundalk,61843-00013-1,1,4380_7778208_1740903,4380_369 -4380_77947,291,4380_1732,Drop Off,51050-00013-1,0,4380_7778208_1011105,4380_24 -4380_77969,296,4380_17320,Dundalk,61844-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17326,Dundalk,61857-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17327,Dundalk,61865-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17328,Dundalk,61861-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17329,Dundalk,61859-00012-1,1,4380_7778208_1740903,4380_369 -4380_77947,296,4380_1733,Drop Off,51051-00021-1,0,4380_7778208_1011105,4380_24 -4380_77969,289,4380_17330,Dundalk,61863-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17331,Dundalk,61866-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17332,Dundalk,61862-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17333,Dundalk,61858-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17334,Dundalk,61860-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17335,Dundalk,61864-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17337,Dundalk,61867-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17338,Dundalk,61868-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17344,Dundalk,61885-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17345,Dundalk,61883-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17346,Dundalk,61887-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17347,Dundalk,61889-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17348,Dundalk,61881-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17349,Dundalk,61884-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17350,Dundalk,61888-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17351,Dundalk,61886-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17352,Dundalk,61890-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17353,Dundalk,61882-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17355,Dundalk,61891-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17356,Dundalk,61892-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17362,Dundalk,61905-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17363,Dundalk,61907-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17364,Dundalk,61909-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17365,Dundalk,61913-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17366,Dundalk,61911-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17367,Dundalk,61908-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17368,Dundalk,61910-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17369,Dundalk,61906-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17370,Dundalk,61914-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17371,Dundalk,61912-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17373,Dundalk,61915-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17374,Dundalk,61916-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17380,Dundalk,61935-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17381,Dundalk,61929-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17382,Dundalk,61933-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17383,Dundalk,61937-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17384,Dundalk,61931-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17385,Dundalk,61930-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17386,Dundalk,61934-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17387,Dundalk,61936-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17388,Dundalk,61938-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17389,Dundalk,61932-00019-1,1,4380_7778208_1740903,4380_369 -4380_77947,285,4380_1739,Drop Off,50841-00009-1,0,4380_7778208_1011103,4380_22 -4380_77969,291,4380_17391,Dundalk,61939-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17392,Dundalk,61940-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17398,Dundalk,61955-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17399,Dundalk,61959-00010-1,1,4380_7778208_1740903,4380_369 -4380_77946,297,4380_174,Dundalk,50184-00008-1,0,4380_7778208_1000908,4380_2 -4380_77947,286,4380_1740,Drop Off,50843-00010-1,0,4380_7778208_1011103,4380_22 -4380_77969,288,4380_17400,Dundalk,61961-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17401,Dundalk,61953-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17402,Dundalk,61957-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17403,Dundalk,61960-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17404,Dundalk,61962-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17405,Dundalk,61956-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17406,Dundalk,61954-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17407,Dundalk,61958-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17409,Dundalk,61963-00013-1,1,4380_7778208_1740903,4380_369 -4380_77947,288,4380_1741,Drop Off,50837-00011-1,0,4380_7778208_1011103,4380_22 -4380_77969,296,4380_17410,Dundalk,61964-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17416,Dundalk,61983-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17417,Dundalk,61979-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17418,Dundalk,61981-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17419,Dundalk,61985-00012-1,1,4380_7778208_1740903,4380_369 -4380_77947,287,4380_1742,Drop Off,50839-00012-1,0,4380_7778208_1011103,4380_22 -4380_77969,289,4380_17420,Dundalk,61977-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17421,Dundalk,61980-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17422,Dundalk,61982-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17423,Dundalk,61984-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17424,Dundalk,61986-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17425,Dundalk,61978-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17427,Dundalk,61987-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17428,Dundalk,61988-00021-1,1,4380_7778208_1740903,4380_369 -4380_77947,289,4380_1743,Drop Off,50845-00014-1,0,4380_7778208_1011103,4380_22 -4380_77969,285,4380_17434,Dundalk,62003-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17435,Dundalk,62001-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17436,Dundalk,62005-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17437,Dundalk,62007-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17438,Dundalk,62009-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17439,Dundalk,62002-00016-1,1,4380_7778208_1740903,4380_369 -4380_77947,290,4380_1744,Drop Off,50842-00015-1,0,4380_7778208_1011103,4380_22 -4380_77969,293,4380_17440,Dundalk,62006-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17441,Dundalk,62004-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17442,Dundalk,62008-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17443,Dundalk,62010-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17445,Dundalk,62011-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17446,Dundalk,62012-00021-1,1,4380_7778208_1740903,4380_369 -4380_77947,292,4380_1745,Drop Off,50844-00016-1,0,4380_7778208_1011103,4380_22 -4380_77969,285,4380_17452,Dundalk,62033-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17453,Dundalk,62025-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17454,Dundalk,62031-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17455,Dundalk,62027-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17456,Dundalk,62029-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17457,Dundalk,62026-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17458,Dundalk,62032-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17459,Dundalk,62034-00015-1,1,4380_7778208_1740903,4380_369 -4380_77947,293,4380_1746,Drop Off,50838-00017-1,0,4380_7778208_1011103,4380_22 -4380_77969,294,4380_17460,Dundalk,62028-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17461,Dundalk,62030-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17463,Dundalk,62035-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17464,Dundalk,62036-00021-1,1,4380_7778208_1740903,4380_369 -4380_77947,294,4380_1747,Drop Off,50840-00018-1,0,4380_7778208_1011103,4380_22 -4380_77969,285,4380_17470,Dundalk,62053-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17471,Dundalk,62049-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17472,Dundalk,62057-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17473,Dundalk,62055-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17474,Dundalk,62051-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17475,Dundalk,62050-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17476,Dundalk,62058-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17477,Dundalk,62054-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17478,Dundalk,62056-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17479,Dundalk,62052-00019-1,1,4380_7778208_1740903,4380_369 -4380_77947,295,4380_1748,Drop Off,50846-00019-1,0,4380_7778208_1011103,4380_22 -4380_77969,291,4380_17481,Dundalk,62059-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17482,Dundalk,62060-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17488,Dundalk,62079-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17489,Dundalk,62075-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17490,Dundalk,62077-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17491,Dundalk,62073-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17492,Dundalk,62081-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17493,Dundalk,62076-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17494,Dundalk,62078-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17495,Dundalk,62080-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17496,Dundalk,62074-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17497,Dundalk,62082-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17499,Dundalk,62083-00013-1,1,4380_7778208_1740903,4380_369 -4380_77946,287,4380_175,Dundalk,50339-00012-1,0,4380_7778208_1000913,4380_1 -4380_77969,296,4380_17500,Dundalk,62084-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17506,Dundalk,62103-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17507,Dundalk,62097-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17508,Dundalk,62101-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17509,Dundalk,62105-00012-1,1,4380_7778208_1740903,4380_369 -4380_77947,297,4380_1751,Drop Off,50741-00008-1,0,4380_7778208_1011102,4380_22 -4380_77969,289,4380_17510,Dundalk,62099-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17511,Dundalk,62098-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17512,Dundalk,62102-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17513,Dundalk,62104-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17514,Dundalk,62106-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17515,Dundalk,62100-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17517,Dundalk,62107-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17518,Dundalk,62108-00021-1,1,4380_7778208_1740903,4380_369 -4380_77947,291,4380_1752,Drop Off,51155-00013-1,0,4380_7778208_1011106,4380_24 -4380_77969,285,4380_17524,Dundalk,62123-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17525,Dundalk,62127-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17526,Dundalk,62125-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17527,Dundalk,62121-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17528,Dundalk,62129-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17529,Dundalk,62128-00016-1,1,4380_7778208_1740903,4380_369 -4380_77947,296,4380_1753,Drop Off,51156-00021-1,0,4380_7778208_1011106,4380_24 -4380_77969,293,4380_17530,Dundalk,62126-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17531,Dundalk,62124-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17532,Dundalk,62122-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17533,Dundalk,62130-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17535,Dundalk,62131-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17536,Dundalk,62132-00021-1,1,4380_7778208_1740903,4380_369 -4380_77969,285,4380_17542,Dundalk,62145-00009-1,1,4380_7778208_1740903,4380_369 -4380_77969,286,4380_17543,Dundalk,62147-00010-1,1,4380_7778208_1740903,4380_369 -4380_77969,288,4380_17544,Dundalk,62151-00011-1,1,4380_7778208_1740903,4380_369 -4380_77969,287,4380_17545,Dundalk,62153-00012-1,1,4380_7778208_1740903,4380_369 -4380_77969,289,4380_17546,Dundalk,62149-00014-1,1,4380_7778208_1740903,4380_369 -4380_77969,292,4380_17547,Dundalk,62148-00016-1,1,4380_7778208_1740903,4380_369 -4380_77969,293,4380_17548,Dundalk,62152-00017-1,1,4380_7778208_1740903,4380_369 -4380_77969,290,4380_17549,Dundalk,62146-00015-1,1,4380_7778208_1740903,4380_369 -4380_77969,294,4380_17550,Dundalk,62154-00018-1,1,4380_7778208_1740903,4380_369 -4380_77969,295,4380_17551,Dundalk,62150-00019-1,1,4380_7778208_1740903,4380_369 -4380_77969,291,4380_17553,Dundalk,62155-00013-1,1,4380_7778208_1740903,4380_369 -4380_77969,296,4380_17554,Dundalk,62156-00021-1,1,4380_7778208_1740903,4380_369 -4380_78116,285,4380_17560,Dundalk,60609-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17561,Dundalk,60613-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17562,Dundalk,60607-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17563,Dundalk,60611-00012-1,0,4380_7778208_1740901,4380_370 -4380_78116,289,4380_17564,Dundalk,60605-00014-1,0,4380_7778208_1740901,4380_370 -4380_78116,292,4380_17565,Dundalk,60614-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17566,Dundalk,60608-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17567,Dundalk,60610-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17568,Dundalk,60612-00018-1,0,4380_7778208_1740901,4380_370 -4380_78116,295,4380_17569,Dundalk,60606-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,285,4380_17576,Dundalk,61177-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17577,Dundalk,61179-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,288,4380_17578,Dundalk,61183-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17579,Dundalk,61173-00012-1,0,4380_7778208_1740902,4380_370 -4380_78116,291,4380_17580,Dundalk,60631-00013-1,0,4380_7778208_1740901,4380_371 -4380_78116,289,4380_17581,Dundalk,61175-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17582,Dundalk,61180-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17583,Dundalk,61184-00017-1,0,4380_7778208_1740902,4380_370 -4380_78116,290,4380_17584,Dundalk,61178-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17585,Dundalk,61174-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17586,Dundalk,61176-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17587,Dundalk,60632-00021-1,0,4380_7778208_1740901,4380_371 -4380_77947,285,4380_1759,Drop Off,51231-00009-1,0,4380_7778208_1011107,4380_22 -4380_78116,285,4380_17594,Dundalk,60657-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17595,Dundalk,60661-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17596,Dundalk,60663-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17597,Dundalk,60659-00012-1,0,4380_7778208_1740901,4380_370 -4380_78116,291,4380_17598,Dundalk,61205-00013-1,0,4380_7778208_1740902,4380_371 -4380_78116,289,4380_17599,Dundalk,60653-00014-1,0,4380_7778208_1740901,4380_370 -4380_77946,288,4380_176,Dundalk,50341-00011-1,0,4380_7778208_1000913,4380_1 -4380_77947,286,4380_1760,Drop Off,51235-00010-1,0,4380_7778208_1011107,4380_22 -4380_78116,292,4380_17600,Dundalk,60662-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17601,Dundalk,60664-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17602,Dundalk,60658-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17603,Dundalk,60660-00018-1,0,4380_7778208_1740901,4380_370 -4380_78116,295,4380_17604,Dundalk,60654-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17605,Dundalk,61206-00021-1,0,4380_7778208_1740902,4380_371 -4380_77947,288,4380_1761,Drop Off,51229-00011-1,0,4380_7778208_1011107,4380_22 -4380_78116,285,4380_17612,Dundalk,61223-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17613,Dundalk,61225-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,288,4380_17614,Dundalk,61227-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17615,Dundalk,61231-00012-1,0,4380_7778208_1740902,4380_370 -4380_78116,291,4380_17616,Dundalk,60687-00013-1,0,4380_7778208_1740901,4380_370 -4380_78116,289,4380_17617,Dundalk,61221-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17618,Dundalk,61226-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17619,Dundalk,61228-00017-1,0,4380_7778208_1740902,4380_370 -4380_77947,287,4380_1762,Drop Off,51237-00012-1,0,4380_7778208_1011107,4380_22 -4380_78116,290,4380_17620,Dundalk,61224-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17621,Dundalk,61232-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17622,Dundalk,61222-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17623,Dundalk,60688-00021-1,0,4380_7778208_1740901,4380_370 -4380_77947,289,4380_1763,Drop Off,51233-00014-1,0,4380_7778208_1011107,4380_22 -4380_78116,285,4380_17630,Dundalk,60707-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17631,Dundalk,60705-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17632,Dundalk,60709-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17633,Dundalk,60711-00012-1,0,4380_7778208_1740901,4380_370 -4380_78116,291,4380_17634,Dundalk,61249-00013-1,0,4380_7778208_1740902,4380_370 -4380_78116,289,4380_17635,Dundalk,60703-00014-1,0,4380_7778208_1740901,4380_370 -4380_78116,292,4380_17636,Dundalk,60706-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17637,Dundalk,60710-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17638,Dundalk,60708-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17639,Dundalk,60712-00018-1,0,4380_7778208_1740901,4380_370 -4380_77947,290,4380_1764,Drop Off,51232-00015-1,0,4380_7778208_1011107,4380_22 -4380_78116,295,4380_17640,Dundalk,60704-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17641,Dundalk,61250-00021-1,0,4380_7778208_1740902,4380_370 -4380_78116,285,4380_17648,Dundalk,61271-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17649,Dundalk,61275-00010-1,0,4380_7778208_1740902,4380_370 -4380_77947,292,4380_1765,Drop Off,51236-00016-1,0,4380_7778208_1011107,4380_22 -4380_78116,288,4380_17650,Dundalk,61273-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17651,Dundalk,61279-00012-1,0,4380_7778208_1740902,4380_370 -4380_78116,291,4380_17652,Dundalk,60733-00013-1,0,4380_7778208_1740901,4380_370 -4380_78116,289,4380_17653,Dundalk,61277-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17654,Dundalk,61276-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17655,Dundalk,61274-00017-1,0,4380_7778208_1740902,4380_370 -4380_78116,290,4380_17656,Dundalk,61272-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17657,Dundalk,61280-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17658,Dundalk,61278-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17659,Dundalk,60734-00021-1,0,4380_7778208_1740901,4380_370 -4380_77947,293,4380_1766,Drop Off,51230-00017-1,0,4380_7778208_1011107,4380_22 -4380_78116,285,4380_17666,Dundalk,60757-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17667,Dundalk,60751-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17668,Dundalk,60753-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17669,Dundalk,60759-00012-1,0,4380_7778208_1740901,4380_370 -4380_77947,294,4380_1767,Drop Off,51238-00018-1,0,4380_7778208_1011107,4380_22 -4380_78116,291,4380_17670,Dundalk,61299-00013-1,0,4380_7778208_1740902,4380_370 -4380_78116,289,4380_17671,Dundalk,60749-00014-1,0,4380_7778208_1740901,4380_370 -4380_78116,292,4380_17672,Dundalk,60752-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17673,Dundalk,60754-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17674,Dundalk,60758-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17675,Dundalk,60760-00018-1,0,4380_7778208_1740901,4380_370 -4380_78116,295,4380_17676,Dundalk,60750-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17677,Dundalk,61300-00021-1,0,4380_7778208_1740902,4380_370 -4380_77947,295,4380_1768,Drop Off,51234-00019-1,0,4380_7778208_1011107,4380_22 -4380_78116,285,4380_17684,Dundalk,61323-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17685,Dundalk,61319-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,288,4380_17686,Dundalk,61325-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17687,Dundalk,61321-00012-1,0,4380_7778208_1740902,4380_370 -4380_78116,291,4380_17688,Dundalk,60773-00013-1,0,4380_7778208_1740901,4380_370 -4380_78116,289,4380_17689,Dundalk,61327-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17690,Dundalk,61320-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17691,Dundalk,61326-00017-1,0,4380_7778208_1740902,4380_370 -4380_78116,290,4380_17692,Dundalk,61324-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17693,Dundalk,61322-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17694,Dundalk,61328-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17695,Dundalk,60774-00021-1,0,4380_7778208_1740901,4380_370 -4380_77946,289,4380_177,Dundalk,50345-00014-1,0,4380_7778208_1000913,4380_1 -4380_78116,285,4380_17702,Dundalk,60799-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17703,Dundalk,60807-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17704,Dundalk,60797-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17705,Dundalk,60805-00012-1,0,4380_7778208_1740901,4380_370 -4380_78116,291,4380_17706,Dundalk,61347-00013-1,0,4380_7778208_1740902,4380_370 -4380_78116,289,4380_17707,Dundalk,60801-00014-1,0,4380_7778208_1740901,4380_370 -4380_78116,292,4380_17708,Dundalk,60808-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17709,Dundalk,60798-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17710,Dundalk,60800-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17711,Dundalk,60806-00018-1,0,4380_7778208_1740901,4380_370 -4380_78116,295,4380_17712,Dundalk,60802-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17713,Dundalk,61348-00021-1,0,4380_7778208_1740902,4380_370 -4380_78116,285,4380_17720,Dundalk,61365-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17721,Dundalk,61367-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,288,4380_17722,Dundalk,61375-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17723,Dundalk,61369-00012-1,0,4380_7778208_1740902,4380_370 -4380_78116,291,4380_17724,Dundalk,60831-00013-1,0,4380_7778208_1740901,4380_370 -4380_78116,289,4380_17725,Dundalk,61373-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17726,Dundalk,61368-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17727,Dundalk,61376-00017-1,0,4380_7778208_1740902,4380_370 -4380_78116,290,4380_17728,Dundalk,61366-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17729,Dundalk,61370-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17730,Dundalk,61374-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17731,Dundalk,60832-00021-1,0,4380_7778208_1740901,4380_370 -4380_78116,285,4380_17738,Dundalk,60851-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17739,Dundalk,60853-00010-1,0,4380_7778208_1740901,4380_370 -4380_77947,285,4380_1774,Drop Off,51583-00009-1,0,4380_7778208_1011112,4380_22 -4380_78116,288,4380_17740,Dundalk,60845-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17741,Dundalk,60847-00012-1,0,4380_7778208_1740901,4380_370 -4380_78116,291,4380_17742,Dundalk,61389-00013-1,0,4380_7778208_1740902,4380_370 -4380_78116,289,4380_17743,Dundalk,60849-00014-1,0,4380_7778208_1740901,4380_370 -4380_78116,292,4380_17744,Dundalk,60854-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17745,Dundalk,60846-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17746,Dundalk,60852-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17747,Dundalk,60848-00018-1,0,4380_7778208_1740901,4380_370 -4380_78116,295,4380_17748,Dundalk,60850-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17749,Dundalk,61390-00021-1,0,4380_7778208_1740902,4380_370 -4380_77947,286,4380_1775,Drop Off,51577-00010-1,0,4380_7778208_1011112,4380_22 -4380_78116,285,4380_17757,Dundalk,61421-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17758,Dundalk,61419-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,297,4380_17759,Dundalk,60871-00008-1,0,4380_7778208_1740901,4380_371 -4380_77947,288,4380_1776,Drop Off,51581-00011-1,0,4380_7778208_1011112,4380_22 -4380_78116,288,4380_17760,Dundalk,61423-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17761,Dundalk,61415-00012-1,0,4380_7778208_1740902,4380_370 -4380_78116,291,4380_17762,Dundalk,61413-00013-1,0,4380_7778208_1740902,4380_372 -4380_78116,289,4380_17763,Dundalk,61417-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17764,Dundalk,61420-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17765,Dundalk,61424-00017-1,0,4380_7778208_1740902,4380_370 -4380_78116,290,4380_17766,Dundalk,61422-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17767,Dundalk,61416-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17768,Dundalk,61418-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17769,Dundalk,61414-00021-1,0,4380_7778208_1740902,4380_372 -4380_77947,287,4380_1777,Drop Off,51585-00012-1,0,4380_7778208_1011112,4380_22 -4380_78116,285,4380_17776,Dundalk,60898-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17777,Dundalk,60895-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17778,Dundalk,60902-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17779,Dundalk,60906-00012-1,0,4380_7778208_1740901,4380_370 -4380_77947,289,4380_1778,Drop Off,51579-00014-1,0,4380_7778208_1011112,4380_22 -4380_78116,291,4380_17780,Dundalk,60900-00013-1,0,4380_7778208_1740901,4380_371 -4380_78116,289,4380_17781,Dundalk,60904-00014-1,0,4380_7778208_1740901,4380_370 -4380_78116,292,4380_17782,Dundalk,60896-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17783,Dundalk,60903-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17784,Dundalk,60899-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17785,Dundalk,60907-00018-1,0,4380_7778208_1740901,4380_370 -4380_78116,295,4380_17786,Dundalk,60905-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17787,Dundalk,60901-00021-1,0,4380_7778208_1740901,4380_371 -4380_77947,290,4380_1779,Drop Off,51584-00015-1,0,4380_7778208_1011112,4380_22 -4380_78116,285,4380_17795,Dundalk,61465-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17796,Dundalk,61471-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,297,4380_17797,Dundalk,60925-00008-1,0,4380_7778208_1740901,4380_371 -4380_78116,288,4380_17798,Dundalk,61461-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17799,Dundalk,61463-00012-1,0,4380_7778208_1740902,4380_370 -4380_77946,290,4380_178,Dundalk,50338-00015-1,0,4380_7778208_1000913,4380_1 -4380_77947,292,4380_1780,Drop Off,51578-00016-1,0,4380_7778208_1011112,4380_22 -4380_78116,291,4380_17800,Dundalk,61467-00013-1,0,4380_7778208_1740902,4380_372 -4380_78116,289,4380_17801,Dundalk,61469-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17802,Dundalk,61472-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17803,Dundalk,61462-00017-1,0,4380_7778208_1740902,4380_370 -4380_78116,290,4380_17804,Dundalk,61466-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17805,Dundalk,61464-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17806,Dundalk,61470-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17807,Dundalk,61468-00021-1,0,4380_7778208_1740902,4380_372 -4380_77947,293,4380_1781,Drop Off,51582-00017-1,0,4380_7778208_1011112,4380_22 -4380_78116,285,4380_17814,Dundalk,60957-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17815,Dundalk,60951-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17816,Dundalk,60949-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17817,Dundalk,60953-00012-1,0,4380_7778208_1740901,4380_370 -4380_78116,291,4380_17818,Dundalk,60947-00013-1,0,4380_7778208_1740901,4380_371 -4380_78116,289,4380_17819,Dundalk,60955-00014-1,0,4380_7778208_1740901,4380_370 -4380_77947,294,4380_1782,Drop Off,51586-00018-1,0,4380_7778208_1011112,4380_22 -4380_78116,292,4380_17820,Dundalk,60952-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17821,Dundalk,60950-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17822,Dundalk,60958-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17823,Dundalk,60954-00018-1,0,4380_7778208_1740901,4380_370 -4380_78116,295,4380_17824,Dundalk,60956-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17825,Dundalk,60948-00021-1,0,4380_7778208_1740901,4380_371 -4380_77947,295,4380_1783,Drop Off,51580-00019-1,0,4380_7778208_1011112,4380_22 -4380_78116,285,4380_17833,Dundalk,61515-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17834,Dundalk,61509-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,297,4380_17835,Dundalk,60973-00008-1,0,4380_7778208_1740901,4380_371 -4380_78116,288,4380_17836,Dundalk,61517-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17837,Dundalk,61513-00012-1,0,4380_7778208_1740902,4380_370 -4380_78116,291,4380_17838,Dundalk,61511-00013-1,0,4380_7778208_1740902,4380_372 -4380_78116,289,4380_17839,Dundalk,61519-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17840,Dundalk,61510-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17841,Dundalk,61518-00017-1,0,4380_7778208_1740902,4380_370 -4380_78116,290,4380_17842,Dundalk,61516-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17843,Dundalk,61514-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17844,Dundalk,61520-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17845,Dundalk,61512-00021-1,0,4380_7778208_1740902,4380_372 -4380_78116,285,4380_17852,Dundalk,61004-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17853,Dundalk,61002-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17854,Dundalk,61008-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17855,Dundalk,61010-00012-1,0,4380_7778208_1740901,4380_370 -4380_78116,291,4380_17856,Dundalk,61539-00013-1,0,4380_7778208_1740902,4380_371 -4380_78116,289,4380_17857,Dundalk,60999-00014-1,0,4380_7778208_1740901,4380_370 -4380_78116,292,4380_17858,Dundalk,61003-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17859,Dundalk,61009-00017-1,0,4380_7778208_1740901,4380_370 -4380_77947,297,4380_1786,Drop Off,51482-00008-1,0,4380_7778208_1011110,4380_22 -4380_78116,290,4380_17860,Dundalk,61005-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17861,Dundalk,61011-00018-1,0,4380_7778208_1740901,4380_370 -4380_78116,295,4380_17862,Dundalk,61000-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17863,Dundalk,61540-00021-1,0,4380_7778208_1740902,4380_371 -4380_77947,291,4380_1787,Drop Off,51340-00013-1,0,4380_7778208_1011108,4380_24 -4380_78116,285,4380_17871,Dundalk,61565-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17872,Dundalk,61559-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,297,4380_17873,Dundalk,61033-00008-1,0,4380_7778208_1740901,4380_371 -4380_78116,288,4380_17874,Dundalk,61563-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17875,Dundalk,61567-00012-1,0,4380_7778208_1740902,4380_370 -4380_78116,291,4380_17876,Dundalk,61034-00013-1,0,4380_7778208_1740901,4380_372 -4380_78116,289,4380_17877,Dundalk,61561-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17878,Dundalk,61560-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17879,Dundalk,61564-00017-1,0,4380_7778208_1740902,4380_370 -4380_77947,296,4380_1788,Drop Off,51341-00021-1,0,4380_7778208_1011108,4380_24 -4380_78116,290,4380_17880,Dundalk,61566-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17881,Dundalk,61568-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17882,Dundalk,61562-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17883,Dundalk,61035-00021-1,0,4380_7778208_1740901,4380_372 -4380_78116,285,4380_17890,Dundalk,61060-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17891,Dundalk,61057-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17892,Dundalk,61055-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17893,Dundalk,61053-00012-1,0,4380_7778208_1740901,4380_370 -4380_78116,291,4380_17894,Dundalk,61583-00013-1,0,4380_7778208_1740902,4380_371 -4380_78116,289,4380_17895,Dundalk,61062-00014-1,0,4380_7778208_1740901,4380_370 -4380_78116,292,4380_17896,Dundalk,61058-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17897,Dundalk,61056-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17898,Dundalk,61061-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17899,Dundalk,61054-00018-1,0,4380_7778208_1740901,4380_370 -4380_77946,291,4380_179,Dundalk,50244-00013-1,0,4380_7778208_1000910,4380_5 -4380_78116,295,4380_17900,Dundalk,61063-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17901,Dundalk,61584-00021-1,0,4380_7778208_1740902,4380_371 -4380_78116,285,4380_17909,Dundalk,61615-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17910,Dundalk,61607-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,297,4380_17911,Dundalk,61079-00008-1,0,4380_7778208_1740901,4380_371 -4380_78116,288,4380_17912,Dundalk,61611-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17913,Dundalk,61605-00012-1,0,4380_7778208_1740902,4380_370 -4380_78116,291,4380_17914,Dundalk,61082-00013-1,0,4380_7778208_1740901,4380_372 -4380_78116,289,4380_17915,Dundalk,61609-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17916,Dundalk,61608-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17917,Dundalk,61612-00017-1,0,4380_7778208_1740902,4380_370 -4380_78116,290,4380_17918,Dundalk,61616-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17919,Dundalk,61606-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17920,Dundalk,61610-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17921,Dundalk,61083-00021-1,0,4380_7778208_1740901,4380_372 -4380_78116,285,4380_17928,Dundalk,61103-00009-1,0,4380_7778208_1740901,4380_370 -4380_78116,286,4380_17929,Dundalk,61108-00010-1,0,4380_7778208_1740901,4380_370 -4380_78116,288,4380_17930,Dundalk,61112-00011-1,0,4380_7778208_1740901,4380_370 -4380_78116,287,4380_17931,Dundalk,61110-00012-1,0,4380_7778208_1740901,4380_370 -4380_78116,291,4380_17932,Dundalk,61637-00013-1,0,4380_7778208_1740902,4380_371 -4380_78116,289,4380_17933,Dundalk,61114-00014-1,0,4380_7778208_1740901,4380_370 -4380_78116,292,4380_17934,Dundalk,61109-00016-1,0,4380_7778208_1740901,4380_370 -4380_78116,293,4380_17935,Dundalk,61113-00017-1,0,4380_7778208_1740901,4380_370 -4380_78116,290,4380_17936,Dundalk,61104-00015-1,0,4380_7778208_1740901,4380_370 -4380_78116,294,4380_17937,Dundalk,61111-00018-1,0,4380_7778208_1740901,4380_370 -4380_78116,295,4380_17938,Dundalk,61115-00019-1,0,4380_7778208_1740901,4380_370 -4380_78116,296,4380_17939,Dundalk,61638-00021-1,0,4380_7778208_1740902,4380_371 -4380_77947,285,4380_1794,Drop Off,51645-00009-1,0,4380_7778208_1011113,4380_22 -4380_78116,285,4380_17946,Dundalk,61661-00009-1,0,4380_7778208_1740902,4380_370 -4380_78116,286,4380_17947,Dundalk,61655-00010-1,0,4380_7778208_1740902,4380_370 -4380_78116,288,4380_17948,Dundalk,61657-00011-1,0,4380_7778208_1740902,4380_370 -4380_78116,287,4380_17949,Dundalk,61653-00012-1,0,4380_7778208_1740902,4380_370 -4380_77947,286,4380_1795,Drop Off,51643-00010-1,0,4380_7778208_1011113,4380_22 -4380_78116,291,4380_17950,Dundalk,61139-00013-1,0,4380_7778208_1740901,4380_371 -4380_78116,289,4380_17951,Dundalk,61659-00014-1,0,4380_7778208_1740902,4380_370 -4380_78116,292,4380_17952,Dundalk,61656-00016-1,0,4380_7778208_1740902,4380_370 -4380_78116,293,4380_17953,Dundalk,61658-00017-1,0,4380_7778208_1740902,4380_370 -4380_78116,290,4380_17954,Dundalk,61662-00015-1,0,4380_7778208_1740902,4380_370 -4380_78116,294,4380_17955,Dundalk,61654-00018-1,0,4380_7778208_1740902,4380_370 -4380_78116,295,4380_17956,Dundalk,61660-00019-1,0,4380_7778208_1740902,4380_370 -4380_78116,296,4380_17957,Dundalk,61140-00021-1,0,4380_7778208_1740901,4380_371 -4380_77947,288,4380_1796,Drop Off,51637-00011-1,0,4380_7778208_1011113,4380_22 -4380_78116,285,4380_17963,Dundalk,60621-00009-1,1,4380_7778208_1740901,4380_373 -4380_78116,286,4380_17964,Dundalk,60617-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_17965,Dundalk,60619-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_17966,Dundalk,60623-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,289,4380_17967,Dundalk,60615-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_17968,Dundalk,60618-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_17969,Dundalk,60620-00017-1,1,4380_7778208_1740901,4380_373 -4380_77947,287,4380_1797,Drop Off,51639-00012-1,0,4380_7778208_1011113,4380_22 -4380_78116,290,4380_17970,Dundalk,60622-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_17971,Dundalk,60624-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_17972,Dundalk,60616-00019-1,1,4380_7778208_1740901,4380_373 -4380_78116,291,4380_17974,Dundalk,60641-00013-1,1,4380_7778208_1740901,4380_373 -4380_78116,296,4380_17975,Dundalk,60642-00021-1,1,4380_7778208_1740901,4380_373 -4380_77947,289,4380_1798,Drop Off,51641-00014-1,0,4380_7778208_1011113,4380_22 -4380_78116,285,4380_17981,Dundalk,61195-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_17982,Dundalk,61191-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_17983,Dundalk,61193-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_17984,Dundalk,61187-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,289,4380_17985,Dundalk,61189-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_17986,Dundalk,61192-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_17987,Dundalk,61194-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_17988,Dundalk,61196-00015-1,1,4380_7778208_1740902,4380_373 -4380_78116,294,4380_17989,Dundalk,61188-00018-1,1,4380_7778208_1740902,4380_373 -4380_77947,290,4380_1799,Drop Off,51646-00015-1,0,4380_7778208_1011113,4380_22 -4380_78116,295,4380_17990,Dundalk,61190-00019-1,1,4380_7778208_1740902,4380_373 -4380_78116,291,4380_17992,Dundalk,61209-00013-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_17993,Dundalk,61210-00021-1,1,4380_7778208_1740902,4380_373 -4380_78116,285,4380_17999,Dundalk,60671-00009-1,1,4380_7778208_1740901,4380_373 -4380_77946,296,4380_18,Dundalk,50270-00021-1,0,4380_7778208_1000912,4380_2 -4380_77946,292,4380_180,Dundalk,50344-00016-1,0,4380_7778208_1000913,4380_1 -4380_77947,292,4380_1800,Drop Off,51644-00016-1,0,4380_7778208_1011113,4380_22 -4380_78116,286,4380_18000,Dundalk,60673-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18001,Dundalk,60667-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18002,Dundalk,60669-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,289,4380_18003,Dundalk,60675-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_18004,Dundalk,60674-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18005,Dundalk,60668-00017-1,1,4380_7778208_1740901,4380_373 -4380_78116,290,4380_18006,Dundalk,60672-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18007,Dundalk,60670-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18008,Dundalk,60676-00019-1,1,4380_7778208_1740901,4380_373 -4380_77947,293,4380_1801,Drop Off,51638-00017-1,0,4380_7778208_1011113,4380_22 -4380_78116,285,4380_18015,Dundalk,61243-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18016,Dundalk,61237-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18017,Dundalk,61235-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18018,Dundalk,61241-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,291,4380_18019,Dundalk,60695-00013-1,1,4380_7778208_1740901,4380_374 -4380_77947,294,4380_1802,Drop Off,51640-00018-1,0,4380_7778208_1011113,4380_22 -4380_78116,289,4380_18020,Dundalk,61239-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_18021,Dundalk,61238-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18022,Dundalk,61236-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18023,Dundalk,61244-00015-1,1,4380_7778208_1740902,4380_373 -4380_78116,294,4380_18024,Dundalk,61242-00018-1,1,4380_7778208_1740902,4380_373 -4380_78116,295,4380_18025,Dundalk,61240-00019-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18026,Dundalk,60696-00021-1,1,4380_7778208_1740901,4380_374 -4380_77947,295,4380_1803,Drop Off,51642-00019-1,0,4380_7778208_1011113,4380_22 -4380_78116,285,4380_18033,Dundalk,60717-00009-1,1,4380_7778208_1740901,4380_373 -4380_78116,286,4380_18034,Dundalk,60715-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18035,Dundalk,60719-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18036,Dundalk,60721-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,291,4380_18037,Dundalk,61263-00013-1,1,4380_7778208_1740902,4380_374 -4380_78116,289,4380_18038,Dundalk,60723-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_18039,Dundalk,60716-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18040,Dundalk,60720-00017-1,1,4380_7778208_1740901,4380_373 -4380_78116,290,4380_18041,Dundalk,60718-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18042,Dundalk,60722-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18043,Dundalk,60724-00019-1,1,4380_7778208_1740901,4380_373 -4380_78116,296,4380_18044,Dundalk,61264-00021-1,1,4380_7778208_1740902,4380_374 -4380_78116,285,4380_18051,Dundalk,61289-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18052,Dundalk,61287-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18053,Dundalk,61285-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18054,Dundalk,61283-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,291,4380_18055,Dundalk,60745-00013-1,1,4380_7778208_1740901,4380_374 -4380_78116,289,4380_18056,Dundalk,61291-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_18057,Dundalk,61288-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18058,Dundalk,61286-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18059,Dundalk,61290-00015-1,1,4380_7778208_1740902,4380_373 -4380_77947,297,4380_1806,Drop Off,50849-00008-1,0,4380_7778208_1011103,4380_22 -4380_78116,294,4380_18060,Dundalk,61284-00018-1,1,4380_7778208_1740902,4380_373 -4380_78116,295,4380_18061,Dundalk,61292-00019-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18062,Dundalk,60746-00021-1,1,4380_7778208_1740901,4380_374 -4380_78116,285,4380_18069,Dundalk,60765-00009-1,1,4380_7778208_1740901,4380_373 -4380_77947,291,4380_1807,Drop Off,50637-00013-1,0,4380_7778208_1011101,4380_24 -4380_78116,286,4380_18070,Dundalk,60769-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18071,Dundalk,60763-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18072,Dundalk,60771-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,291,4380_18073,Dundalk,61307-00013-1,1,4380_7778208_1740902,4380_374 -4380_78116,289,4380_18074,Dundalk,60767-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_18075,Dundalk,60770-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18076,Dundalk,60764-00017-1,1,4380_7778208_1740901,4380_373 -4380_78116,290,4380_18077,Dundalk,60766-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18078,Dundalk,60772-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18079,Dundalk,60768-00019-1,1,4380_7778208_1740901,4380_373 -4380_77947,296,4380_1808,Drop Off,50638-00021-1,0,4380_7778208_1011101,4380_24 -4380_78116,296,4380_18080,Dundalk,61308-00021-1,1,4380_7778208_1740902,4380_374 -4380_78116,291,4380_18082,Dundalk,60791-00013-1,1,4380_7778208_1740901,4380_373 -4380_78116,296,4380_18083,Dundalk,60792-00021-1,1,4380_7778208_1740901,4380_373 -4380_78116,285,4380_18089,Dundalk,61335-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18090,Dundalk,61331-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18091,Dundalk,61339-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18092,Dundalk,61333-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,289,4380_18093,Dundalk,61337-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_18094,Dundalk,61332-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18095,Dundalk,61340-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18096,Dundalk,61336-00015-1,1,4380_7778208_1740902,4380_373 -4380_78116,294,4380_18097,Dundalk,61334-00018-1,1,4380_7778208_1740902,4380_373 -4380_78116,295,4380_18098,Dundalk,61338-00019-1,1,4380_7778208_1740902,4380_373 -4380_77946,293,4380_181,Dundalk,50342-00017-1,0,4380_7778208_1000913,4380_1 -4380_78116,291,4380_18100,Dundalk,61361-00013-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18101,Dundalk,61362-00021-1,1,4380_7778208_1740902,4380_373 -4380_78116,285,4380_18107,Dundalk,60815-00009-1,1,4380_7778208_1740901,4380_373 -4380_78116,286,4380_18108,Dundalk,60813-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18109,Dundalk,60817-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18110,Dundalk,60819-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,289,4380_18111,Dundalk,60811-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_18112,Dundalk,60814-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18113,Dundalk,60818-00017-1,1,4380_7778208_1740901,4380_373 -4380_78116,290,4380_18114,Dundalk,60816-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18115,Dundalk,60820-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18116,Dundalk,60812-00019-1,1,4380_7778208_1740901,4380_373 -4380_78116,285,4380_18122,Dundalk,61385-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18123,Dundalk,61377-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18124,Dundalk,61383-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18125,Dundalk,61379-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,289,4380_18126,Dundalk,61381-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_18127,Dundalk,61378-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18128,Dundalk,61384-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18129,Dundalk,61386-00015-1,1,4380_7778208_1740902,4380_373 -4380_78116,294,4380_18130,Dundalk,61380-00018-1,1,4380_7778208_1740902,4380_373 -4380_78116,295,4380_18131,Dundalk,61382-00019-1,1,4380_7778208_1740902,4380_373 -4380_78116,291,4380_18133,Dundalk,60843-00013-1,1,4380_7778208_1740901,4380_373 -4380_78116,296,4380_18134,Dundalk,60844-00021-1,1,4380_7778208_1740901,4380_373 -4380_77947,285,4380_1814,Drop Off,51391-00009-1,0,4380_7778208_1011109,4380_22 -4380_78116,285,4380_18140,Dundalk,60859-00009-1,1,4380_7778208_1740901,4380_373 -4380_78116,286,4380_18141,Dundalk,60863-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18142,Dundalk,60865-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18143,Dundalk,60857-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,289,4380_18144,Dundalk,60861-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_18145,Dundalk,60864-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18146,Dundalk,60866-00017-1,1,4380_7778208_1740901,4380_373 -4380_78116,290,4380_18147,Dundalk,60860-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18148,Dundalk,60858-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18149,Dundalk,60862-00019-1,1,4380_7778208_1740901,4380_373 -4380_77947,286,4380_1815,Drop Off,51395-00010-1,0,4380_7778208_1011109,4380_22 -4380_78116,291,4380_18151,Dundalk,61411-00013-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18152,Dundalk,61412-00021-1,1,4380_7778208_1740902,4380_373 -4380_78116,297,4380_18154,Dundalk,60882-00008-1,1,4380_7778208_1740901,4380_373 -4380_77947,288,4380_1816,Drop Off,51387-00011-1,0,4380_7778208_1011109,4380_22 -4380_78116,285,4380_18161,Dundalk,61425-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18162,Dundalk,61431-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18163,Dundalk,61435-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18164,Dundalk,61433-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,291,4380_18165,Dundalk,61429-00013-1,1,4380_7778208_1740902,4380_374 -4380_78116,289,4380_18166,Dundalk,61427-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_18167,Dundalk,61432-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18168,Dundalk,61436-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18169,Dundalk,61426-00015-1,1,4380_7778208_1740902,4380_373 -4380_77947,287,4380_1817,Drop Off,51389-00012-1,0,4380_7778208_1011109,4380_22 -4380_78116,294,4380_18170,Dundalk,61434-00018-1,1,4380_7778208_1740902,4380_373 -4380_78116,295,4380_18171,Dundalk,61428-00019-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18172,Dundalk,61430-00021-1,1,4380_7778208_1740902,4380_374 -4380_78116,285,4380_18179,Dundalk,60913-00009-1,1,4380_7778208_1740901,4380_373 -4380_77947,289,4380_1818,Drop Off,51393-00014-1,0,4380_7778208_1011109,4380_22 -4380_78116,286,4380_18180,Dundalk,60919-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18181,Dundalk,60915-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18182,Dundalk,60909-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,291,4380_18183,Dundalk,60917-00013-1,1,4380_7778208_1740901,4380_374 -4380_78116,289,4380_18184,Dundalk,60911-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_18185,Dundalk,60920-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18186,Dundalk,60916-00017-1,1,4380_7778208_1740901,4380_373 -4380_78116,290,4380_18187,Dundalk,60914-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18188,Dundalk,60910-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18189,Dundalk,60912-00019-1,1,4380_7778208_1740901,4380_373 -4380_77947,290,4380_1819,Drop Off,51392-00015-1,0,4380_7778208_1011109,4380_22 -4380_78116,296,4380_18190,Dundalk,60918-00021-1,1,4380_7778208_1740901,4380_374 -4380_78116,297,4380_18192,Dundalk,60934-00008-1,1,4380_7778208_1740901,4380_373 -4380_78116,291,4380_18194,Dundalk,61473-00013-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18195,Dundalk,61474-00021-1,1,4380_7778208_1740902,4380_373 -4380_77946,294,4380_182,Dundalk,50340-00018-1,0,4380_7778208_1000913,4380_1 -4380_77947,292,4380_1820,Drop Off,51396-00016-1,0,4380_7778208_1011109,4380_22 -4380_78116,285,4380_18201,Dundalk,61479-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18202,Dundalk,61475-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18203,Dundalk,61477-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18204,Dundalk,61481-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,289,4380_18205,Dundalk,61483-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_18206,Dundalk,61476-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18207,Dundalk,61478-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18208,Dundalk,61480-00015-1,1,4380_7778208_1740902,4380_373 -4380_78116,294,4380_18209,Dundalk,61482-00018-1,1,4380_7778208_1740902,4380_373 -4380_77947,293,4380_1821,Drop Off,51388-00017-1,0,4380_7778208_1011109,4380_22 -4380_78116,295,4380_18210,Dundalk,61484-00019-1,1,4380_7778208_1740902,4380_373 -4380_78116,291,4380_18212,Dundalk,60960-00013-1,1,4380_7778208_1740901,4380_373 -4380_78116,296,4380_18213,Dundalk,60961-00021-1,1,4380_7778208_1740901,4380_373 -4380_78116,285,4380_18219,Dundalk,60965-00009-1,1,4380_7778208_1740901,4380_373 -4380_77947,294,4380_1822,Drop Off,51390-00018-1,0,4380_7778208_1011109,4380_22 -4380_78116,286,4380_18220,Dundalk,60963-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18221,Dundalk,60971-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18222,Dundalk,60969-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,289,4380_18223,Dundalk,60967-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_18224,Dundalk,60964-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18225,Dundalk,60972-00017-1,1,4380_7778208_1740901,4380_373 -4380_78116,290,4380_18226,Dundalk,60966-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18227,Dundalk,60970-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18228,Dundalk,60968-00019-1,1,4380_7778208_1740901,4380_373 -4380_77947,295,4380_1823,Drop Off,51394-00019-1,0,4380_7778208_1011109,4380_22 -4380_78116,297,4380_18230,Dundalk,60986-00008-1,1,4380_7778208_1740901,4380_373 -4380_78116,291,4380_18232,Dundalk,61521-00013-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18233,Dundalk,61522-00021-1,1,4380_7778208_1740902,4380_373 -4380_78116,285,4380_18239,Dundalk,61523-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18240,Dundalk,61529-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18241,Dundalk,61531-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18242,Dundalk,61527-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,289,4380_18243,Dundalk,61525-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_18244,Dundalk,61530-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18245,Dundalk,61532-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18246,Dundalk,61524-00015-1,1,4380_7778208_1740902,4380_373 -4380_78116,294,4380_18247,Dundalk,61528-00018-1,1,4380_7778208_1740902,4380_373 -4380_78116,295,4380_18248,Dundalk,61526-00019-1,1,4380_7778208_1740902,4380_373 -4380_78116,291,4380_18250,Dundalk,61551-00013-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18251,Dundalk,61552-00021-1,1,4380_7778208_1740902,4380_373 -4380_78116,285,4380_18257,Dundalk,61019-00009-1,1,4380_7778208_1740901,4380_373 -4380_78116,286,4380_18258,Dundalk,61023-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18259,Dundalk,61017-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18260,Dundalk,61021-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,289,4380_18261,Dundalk,61015-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_18262,Dundalk,61024-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18263,Dundalk,61018-00017-1,1,4380_7778208_1740901,4380_373 -4380_78116,290,4380_18264,Dundalk,61020-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18265,Dundalk,61022-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18266,Dundalk,61016-00019-1,1,4380_7778208_1740901,4380_373 -4380_78116,297,4380_18268,Dundalk,61038-00008-1,1,4380_7778208_1740901,4380_373 -4380_78116,291,4380_18270,Dundalk,61049-00013-1,1,4380_7778208_1740901,4380_373 -4380_78116,296,4380_18271,Dundalk,61050-00021-1,1,4380_7778208_1740901,4380_373 -4380_78116,285,4380_18277,Dundalk,61573-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18278,Dundalk,61579-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18279,Dundalk,61575-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18280,Dundalk,61577-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,289,4380_18281,Dundalk,61571-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_18282,Dundalk,61580-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18283,Dundalk,61576-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18284,Dundalk,61574-00015-1,1,4380_7778208_1740902,4380_373 -4380_78116,294,4380_18285,Dundalk,61578-00018-1,1,4380_7778208_1740902,4380_373 -4380_78116,295,4380_18286,Dundalk,61572-00019-1,1,4380_7778208_1740902,4380_373 -4380_78116,291,4380_18288,Dundalk,61593-00013-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18289,Dundalk,61594-00021-1,1,4380_7778208_1740902,4380_373 -4380_77947,285,4380_1829,Drop Off,51349-00009-1,0,4380_7778208_1011108,4380_22 -4380_78116,285,4380_18295,Dundalk,61067-00009-1,1,4380_7778208_1740901,4380_373 -4380_78116,286,4380_18296,Dundalk,61071-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18297,Dundalk,61069-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18298,Dundalk,61075-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,289,4380_18299,Dundalk,61073-00014-1,1,4380_7778208_1740901,4380_373 -4380_77946,295,4380_183,Dundalk,50346-00019-1,0,4380_7778208_1000913,4380_1 -4380_77947,286,4380_1830,Drop Off,51347-00010-1,0,4380_7778208_1011108,4380_22 -4380_78116,292,4380_18300,Dundalk,61072-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18301,Dundalk,61070-00017-1,1,4380_7778208_1740901,4380_373 -4380_78116,290,4380_18302,Dundalk,61068-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18303,Dundalk,61076-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18304,Dundalk,61074-00019-1,1,4380_7778208_1740901,4380_373 -4380_78116,297,4380_18306,Dundalk,61090-00008-1,1,4380_7778208_1740901,4380_373 -4380_78116,291,4380_18308,Dundalk,61101-00013-1,1,4380_7778208_1740901,4380_373 -4380_78116,296,4380_18309,Dundalk,61102-00021-1,1,4380_7778208_1740901,4380_373 -4380_77947,288,4380_1831,Drop Off,51343-00011-1,0,4380_7778208_1011108,4380_22 -4380_78116,285,4380_18315,Dundalk,61625-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18316,Dundalk,61623-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18317,Dundalk,61627-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18318,Dundalk,61619-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,289,4380_18319,Dundalk,61621-00014-1,1,4380_7778208_1740902,4380_373 -4380_77947,287,4380_1832,Drop Off,51351-00012-1,0,4380_7778208_1011108,4380_22 -4380_78116,292,4380_18320,Dundalk,61624-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18321,Dundalk,61628-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18322,Dundalk,61626-00015-1,1,4380_7778208_1740902,4380_373 -4380_78116,294,4380_18323,Dundalk,61620-00018-1,1,4380_7778208_1740902,4380_373 -4380_78116,295,4380_18324,Dundalk,61622-00019-1,1,4380_7778208_1740902,4380_373 -4380_78116,291,4380_18326,Dundalk,61649-00013-1,1,4380_7778208_1740902,4380_373 -4380_78116,296,4380_18327,Dundalk,61650-00021-1,1,4380_7778208_1740902,4380_373 -4380_77947,289,4380_1833,Drop Off,51345-00014-1,0,4380_7778208_1011108,4380_22 -4380_78116,285,4380_18333,Dundalk,61125-00009-1,1,4380_7778208_1740901,4380_373 -4380_78116,286,4380_18334,Dundalk,61119-00010-1,1,4380_7778208_1740901,4380_373 -4380_78116,288,4380_18335,Dundalk,61121-00011-1,1,4380_7778208_1740901,4380_373 -4380_78116,287,4380_18336,Dundalk,61123-00012-1,1,4380_7778208_1740901,4380_373 -4380_78116,289,4380_18337,Dundalk,61127-00014-1,1,4380_7778208_1740901,4380_373 -4380_78116,292,4380_18338,Dundalk,61120-00016-1,1,4380_7778208_1740901,4380_373 -4380_78116,293,4380_18339,Dundalk,61122-00017-1,1,4380_7778208_1740901,4380_373 -4380_77947,290,4380_1834,Drop Off,51350-00015-1,0,4380_7778208_1011108,4380_22 -4380_78116,290,4380_18340,Dundalk,61126-00015-1,1,4380_7778208_1740901,4380_373 -4380_78116,294,4380_18341,Dundalk,61124-00018-1,1,4380_7778208_1740901,4380_373 -4380_78116,295,4380_18342,Dundalk,61128-00019-1,1,4380_7778208_1740901,4380_373 -4380_78116,291,4380_18344,Dundalk,61141-00013-1,1,4380_7778208_1740901,4380_373 -4380_78116,296,4380_18345,Dundalk,61142-00021-1,1,4380_7778208_1740901,4380_373 -4380_77947,292,4380_1835,Drop Off,51348-00016-1,0,4380_7778208_1011108,4380_22 -4380_78116,285,4380_18351,Dundalk,61671-00009-1,1,4380_7778208_1740902,4380_373 -4380_78116,286,4380_18352,Dundalk,61675-00010-1,1,4380_7778208_1740902,4380_373 -4380_78116,288,4380_18353,Dundalk,61669-00011-1,1,4380_7778208_1740902,4380_373 -4380_78116,287,4380_18354,Dundalk,61673-00012-1,1,4380_7778208_1740902,4380_373 -4380_78116,289,4380_18355,Dundalk,61667-00014-1,1,4380_7778208_1740902,4380_373 -4380_78116,292,4380_18356,Dundalk,61676-00016-1,1,4380_7778208_1740902,4380_373 -4380_78116,293,4380_18357,Dundalk,61670-00017-1,1,4380_7778208_1740902,4380_373 -4380_78116,290,4380_18358,Dundalk,61672-00015-1,1,4380_7778208_1740902,4380_373 -4380_78116,294,4380_18359,Dundalk,61674-00018-1,1,4380_7778208_1740902,4380_373 -4380_77947,293,4380_1836,Drop Off,51344-00017-1,0,4380_7778208_1011108,4380_22 -4380_78116,295,4380_18360,Dundalk,61668-00019-1,1,4380_7778208_1740902,4380_373 -4380_78117,285,4380_18367,Knockraha Sarsfield Rd,61157-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18368,Knockraha Sarsfield Rd,61155-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,288,4380_18369,Knockraha Sarsfield Rd,61153-00011-1,0,4380_7778208_1740902,4380_375 -4380_77947,294,4380_1837,Drop Off,51352-00018-1,0,4380_7778208_1011108,4380_22 -4380_78117,287,4380_18370,Knockraha Sarsfield Rd,61159-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18371,Knockraha Sarsfield Rd,60625-00013-1,0,4380_7778208_1740901,4380_376 -4380_78117,289,4380_18372,Knockraha Sarsfield Rd,61161-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18373,Knockraha Sarsfield Rd,61156-00016-1,0,4380_7778208_1740902,4380_375 -4380_78117,293,4380_18374,Knockraha Sarsfield Rd,61154-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18375,Knockraha Sarsfield Rd,61158-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18376,Knockraha Sarsfield Rd,61160-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18377,Knockraha Sarsfield Rd,61162-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18378,Knockraha Sarsfield Rd,60626-00021-1,0,4380_7778208_1740901,4380_376 -4380_77947,295,4380_1838,Drop Off,51346-00019-1,0,4380_7778208_1011108,4380_22 -4380_78117,285,4380_18385,Knockraha Sarsfield Rd,60633-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18386,Knockraha Sarsfield Rd,60637-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18387,Knockraha Sarsfield Rd,60629-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18388,Knockraha Sarsfield Rd,60639-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18389,Knockraha Sarsfield Rd,61181-00013-1,0,4380_7778208_1740902,4380_376 -4380_78117,289,4380_18390,Knockraha Sarsfield Rd,60635-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18391,Knockraha Sarsfield Rd,60638-00016-1,0,4380_7778208_1740901,4380_375 -4380_78117,293,4380_18392,Knockraha Sarsfield Rd,60630-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18393,Knockraha Sarsfield Rd,60634-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18394,Knockraha Sarsfield Rd,60640-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18395,Knockraha Sarsfield Rd,60636-00019-1,0,4380_7778208_1740901,4380_375 -4380_78117,296,4380_18396,Knockraha Sarsfield Rd,61182-00021-1,0,4380_7778208_1740902,4380_376 -4380_77946,296,4380_184,Dundalk,50245-00021-1,0,4380_7778208_1000910,4380_5 -4380_78117,285,4380_18403,Knockraha Sarsfield Rd,61197-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18404,Knockraha Sarsfield Rd,61207-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,288,4380_18405,Knockraha Sarsfield Rd,61201-00011-1,0,4380_7778208_1740902,4380_375 -4380_78117,287,4380_18406,Knockraha Sarsfield Rd,61203-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18407,Knockraha Sarsfield Rd,60655-00013-1,0,4380_7778208_1740901,4380_376 -4380_78117,289,4380_18408,Knockraha Sarsfield Rd,61199-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18409,Knockraha Sarsfield Rd,61208-00016-1,0,4380_7778208_1740902,4380_375 -4380_77947,297,4380_1841,Drop Off,51165-00008-1,0,4380_7778208_1011106,4380_22 -4380_78117,293,4380_18410,Knockraha Sarsfield Rd,61202-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18411,Knockraha Sarsfield Rd,61198-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18412,Knockraha Sarsfield Rd,61204-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18413,Knockraha Sarsfield Rd,61200-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18414,Knockraha Sarsfield Rd,60656-00021-1,0,4380_7778208_1740901,4380_376 -4380_77947,291,4380_1842,Drop Off,51239-00013-1,0,4380_7778208_1011107,4380_24 -4380_78117,285,4380_18421,Knockraha Sarsfield Rd,60679-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18422,Knockraha Sarsfield Rd,60685-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18423,Knockraha Sarsfield Rd,60683-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18424,Knockraha Sarsfield Rd,60677-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18425,Knockraha Sarsfield Rd,61229-00013-1,0,4380_7778208_1740902,4380_376 -4380_78117,289,4380_18426,Knockraha Sarsfield Rd,60681-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18427,Knockraha Sarsfield Rd,60686-00016-1,0,4380_7778208_1740901,4380_375 -4380_78117,293,4380_18428,Knockraha Sarsfield Rd,60684-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18429,Knockraha Sarsfield Rd,60680-00015-1,0,4380_7778208_1740901,4380_375 -4380_77947,296,4380_1843,Drop Off,51240-00021-1,0,4380_7778208_1011107,4380_24 -4380_78117,294,4380_18430,Knockraha Sarsfield Rd,60678-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18431,Knockraha Sarsfield Rd,60682-00019-1,0,4380_7778208_1740901,4380_375 -4380_78117,296,4380_18432,Knockraha Sarsfield Rd,61230-00021-1,0,4380_7778208_1740902,4380_376 -4380_78117,285,4380_18439,Knockraha Sarsfield Rd,61245-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18440,Knockraha Sarsfield Rd,61247-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,288,4380_18441,Knockraha Sarsfield Rd,61253-00011-1,0,4380_7778208_1740902,4380_375 -4380_78117,287,4380_18442,Knockraha Sarsfield Rd,61255-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18443,Knockraha Sarsfield Rd,60701-00013-1,0,4380_7778208_1740901,4380_376 -4380_78117,289,4380_18444,Knockraha Sarsfield Rd,61251-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18445,Knockraha Sarsfield Rd,61248-00016-1,0,4380_7778208_1740902,4380_375 -4380_78117,293,4380_18446,Knockraha Sarsfield Rd,61254-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18447,Knockraha Sarsfield Rd,61246-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18448,Knockraha Sarsfield Rd,61256-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18449,Knockraha Sarsfield Rd,61252-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18450,Knockraha Sarsfield Rd,60702-00021-1,0,4380_7778208_1740901,4380_376 -4380_78117,285,4380_18457,Knockraha Sarsfield Rd,60725-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18458,Knockraha Sarsfield Rd,60735-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18459,Knockraha Sarsfield Rd,60727-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18460,Knockraha Sarsfield Rd,60729-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18461,Knockraha Sarsfield Rd,61269-00013-1,0,4380_7778208_1740902,4380_376 -4380_78117,289,4380_18462,Knockraha Sarsfield Rd,60731-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18463,Knockraha Sarsfield Rd,60736-00016-1,0,4380_7778208_1740901,4380_375 -4380_78117,293,4380_18464,Knockraha Sarsfield Rd,60728-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18465,Knockraha Sarsfield Rd,60726-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18466,Knockraha Sarsfield Rd,60730-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18467,Knockraha Sarsfield Rd,60732-00019-1,0,4380_7778208_1740901,4380_375 -4380_78117,296,4380_18468,Knockraha Sarsfield Rd,61270-00021-1,0,4380_7778208_1740902,4380_376 -4380_78117,285,4380_18475,Knockraha Sarsfield Rd,61301-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18476,Knockraha Sarsfield Rd,61297-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,288,4380_18477,Knockraha Sarsfield Rd,61303-00011-1,0,4380_7778208_1740902,4380_375 -4380_78117,287,4380_18478,Knockraha Sarsfield Rd,61295-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18479,Knockraha Sarsfield Rd,60755-00013-1,0,4380_7778208_1740901,4380_376 -4380_78117,289,4380_18480,Knockraha Sarsfield Rd,61293-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18481,Knockraha Sarsfield Rd,61298-00016-1,0,4380_7778208_1740902,4380_375 -4380_78117,293,4380_18482,Knockraha Sarsfield Rd,61304-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18483,Knockraha Sarsfield Rd,61302-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18484,Knockraha Sarsfield Rd,61296-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18485,Knockraha Sarsfield Rd,61294-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18486,Knockraha Sarsfield Rd,60756-00021-1,0,4380_7778208_1740901,4380_376 -4380_77947,285,4380_1849,Drop Off,51073-00009-1,0,4380_7778208_1011105,4380_22 -4380_78117,285,4380_18493,Knockraha Sarsfield Rd,60781-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18494,Knockraha Sarsfield Rd,60777-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18495,Knockraha Sarsfield Rd,60779-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18496,Knockraha Sarsfield Rd,60783-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18497,Knockraha Sarsfield Rd,61317-00013-1,0,4380_7778208_1740902,4380_375 -4380_78117,289,4380_18498,Knockraha Sarsfield Rd,60775-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18499,Knockraha Sarsfield Rd,60778-00016-1,0,4380_7778208_1740901,4380_375 -4380_77947,286,4380_1850,Drop Off,51071-00010-1,0,4380_7778208_1011105,4380_22 -4380_78117,293,4380_18500,Knockraha Sarsfield Rd,60780-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18501,Knockraha Sarsfield Rd,60782-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18502,Knockraha Sarsfield Rd,60784-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18503,Knockraha Sarsfield Rd,60776-00019-1,0,4380_7778208_1740901,4380_375 -4380_78117,296,4380_18504,Knockraha Sarsfield Rd,61318-00021-1,0,4380_7778208_1740902,4380_375 -4380_77947,288,4380_1851,Drop Off,51067-00011-1,0,4380_7778208_1011105,4380_22 -4380_78117,285,4380_18511,Knockraha Sarsfield Rd,61341-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18512,Knockraha Sarsfield Rd,61343-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,288,4380_18513,Knockraha Sarsfield Rd,61349-00011-1,0,4380_7778208_1740902,4380_375 -4380_78117,287,4380_18514,Knockraha Sarsfield Rd,61345-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18515,Knockraha Sarsfield Rd,60803-00013-1,0,4380_7778208_1740901,4380_375 -4380_78117,289,4380_18516,Knockraha Sarsfield Rd,61351-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18517,Knockraha Sarsfield Rd,61344-00016-1,0,4380_7778208_1740902,4380_375 -4380_78117,293,4380_18518,Knockraha Sarsfield Rd,61350-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18519,Knockraha Sarsfield Rd,61342-00015-1,0,4380_7778208_1740902,4380_375 -4380_77947,287,4380_1852,Drop Off,51065-00012-1,0,4380_7778208_1011105,4380_22 -4380_78117,294,4380_18520,Knockraha Sarsfield Rd,61346-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18521,Knockraha Sarsfield Rd,61352-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18522,Knockraha Sarsfield Rd,60804-00021-1,0,4380_7778208_1740901,4380_375 -4380_78117,285,4380_18529,Knockraha Sarsfield Rd,60829-00009-1,0,4380_7778208_1740901,4380_375 -4380_77947,289,4380_1853,Drop Off,51069-00014-1,0,4380_7778208_1011105,4380_22 -4380_78117,286,4380_18530,Knockraha Sarsfield Rd,60827-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18531,Knockraha Sarsfield Rd,60825-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18532,Knockraha Sarsfield Rd,60821-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18533,Knockraha Sarsfield Rd,61371-00013-1,0,4380_7778208_1740902,4380_376 -4380_78117,289,4380_18534,Knockraha Sarsfield Rd,60823-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18535,Knockraha Sarsfield Rd,60828-00016-1,0,4380_7778208_1740901,4380_375 -4380_78117,293,4380_18536,Knockraha Sarsfield Rd,60826-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18537,Knockraha Sarsfield Rd,60830-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18538,Knockraha Sarsfield Rd,60822-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18539,Knockraha Sarsfield Rd,60824-00019-1,0,4380_7778208_1740901,4380_375 -4380_77947,290,4380_1854,Drop Off,51074-00015-1,0,4380_7778208_1011105,4380_22 -4380_78117,296,4380_18540,Knockraha Sarsfield Rd,61372-00021-1,0,4380_7778208_1740902,4380_376 -4380_78117,285,4380_18547,Knockraha Sarsfield Rd,61395-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18548,Knockraha Sarsfield Rd,61393-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,288,4380_18549,Knockraha Sarsfield Rd,61391-00011-1,0,4380_7778208_1740902,4380_375 -4380_77947,292,4380_1855,Drop Off,51072-00016-1,0,4380_7778208_1011105,4380_22 -4380_78117,287,4380_18550,Knockraha Sarsfield Rd,61399-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18551,Knockraha Sarsfield Rd,60855-00013-1,0,4380_7778208_1740901,4380_376 -4380_78117,289,4380_18552,Knockraha Sarsfield Rd,61397-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18553,Knockraha Sarsfield Rd,61394-00016-1,0,4380_7778208_1740902,4380_375 -4380_78117,293,4380_18554,Knockraha Sarsfield Rd,61392-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18555,Knockraha Sarsfield Rd,61396-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18556,Knockraha Sarsfield Rd,61400-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18557,Knockraha Sarsfield Rd,61398-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18558,Knockraha Sarsfield Rd,60856-00021-1,0,4380_7778208_1740901,4380_376 -4380_77947,293,4380_1856,Drop Off,51068-00017-1,0,4380_7778208_1011105,4380_22 -4380_78117,285,4380_18565,Knockraha Sarsfield Rd,60872-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18566,Knockraha Sarsfield Rd,60876-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18567,Knockraha Sarsfield Rd,60878-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18568,Knockraha Sarsfield Rd,60869-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18569,Knockraha Sarsfield Rd,60874-00013-1,0,4380_7778208_1740901,4380_376 -4380_77947,294,4380_1857,Drop Off,51066-00018-1,0,4380_7778208_1011105,4380_22 -4380_78117,289,4380_18570,Knockraha Sarsfield Rd,60880-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18571,Knockraha Sarsfield Rd,60877-00016-1,0,4380_7778208_1740901,4380_375 -4380_78117,293,4380_18572,Knockraha Sarsfield Rd,60879-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18573,Knockraha Sarsfield Rd,60873-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18574,Knockraha Sarsfield Rd,60870-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18575,Knockraha Sarsfield Rd,60881-00019-1,0,4380_7778208_1740901,4380_375 -4380_78117,296,4380_18576,Knockraha Sarsfield Rd,60875-00021-1,0,4380_7778208_1740901,4380_376 -4380_77947,295,4380_1858,Drop Off,51070-00019-1,0,4380_7778208_1011105,4380_22 -4380_78117,285,4380_18584,Knockraha Sarsfield Rd,61441-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18585,Knockraha Sarsfield Rd,61445-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,297,4380_18586,Knockraha Sarsfield Rd,60897-00008-1,0,4380_7778208_1740901,4380_376 -4380_78117,288,4380_18587,Knockraha Sarsfield Rd,61437-00011-1,0,4380_7778208_1740902,4380_375 -4380_78117,287,4380_18588,Knockraha Sarsfield Rd,61443-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18589,Knockraha Sarsfield Rd,61447-00013-1,0,4380_7778208_1740902,4380_377 -4380_78117,289,4380_18590,Knockraha Sarsfield Rd,61439-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18591,Knockraha Sarsfield Rd,61446-00016-1,0,4380_7778208_1740902,4380_375 -4380_78117,293,4380_18592,Knockraha Sarsfield Rd,61438-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18593,Knockraha Sarsfield Rd,61442-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18594,Knockraha Sarsfield Rd,61444-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18595,Knockraha Sarsfield Rd,61440-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18596,Knockraha Sarsfield Rd,61448-00021-1,0,4380_7778208_1740902,4380_377 -4380_78117,285,4380_18603,Knockraha Sarsfield Rd,60921-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18604,Knockraha Sarsfield Rd,60928-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18605,Knockraha Sarsfield Rd,60923-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18606,Knockraha Sarsfield Rd,60926-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18607,Knockraha Sarsfield Rd,60932-00013-1,0,4380_7778208_1740901,4380_376 -4380_78117,289,4380_18608,Knockraha Sarsfield Rd,60930-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18609,Knockraha Sarsfield Rd,60929-00016-1,0,4380_7778208_1740901,4380_375 -4380_77947,297,4380_1861,Drop Off,51241-00008-1,0,4380_7778208_1011107,4380_22 -4380_78117,293,4380_18610,Knockraha Sarsfield Rd,60924-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18611,Knockraha Sarsfield Rd,60922-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18612,Knockraha Sarsfield Rd,60927-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18613,Knockraha Sarsfield Rd,60931-00019-1,0,4380_7778208_1740901,4380_375 -4380_78117,296,4380_18614,Knockraha Sarsfield Rd,60933-00021-1,0,4380_7778208_1740901,4380_376 -4380_77947,291,4380_1862,Drop Off,50850-00013-1,0,4380_7778208_1011103,4380_24 -4380_78117,285,4380_18622,Knockraha Sarsfield Rd,61485-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18623,Knockraha Sarsfield Rd,61489-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,297,4380_18624,Knockraha Sarsfield Rd,60959-00008-1,0,4380_7778208_1740901,4380_376 -4380_78117,288,4380_18625,Knockraha Sarsfield Rd,61487-00011-1,0,4380_7778208_1740902,4380_375 -4380_78117,287,4380_18626,Knockraha Sarsfield Rd,61491-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18627,Knockraha Sarsfield Rd,61493-00013-1,0,4380_7778208_1740902,4380_377 -4380_78117,289,4380_18628,Knockraha Sarsfield Rd,61495-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18629,Knockraha Sarsfield Rd,61490-00016-1,0,4380_7778208_1740902,4380_375 -4380_77947,296,4380_1863,Drop Off,50851-00021-1,0,4380_7778208_1011103,4380_24 -4380_78117,293,4380_18630,Knockraha Sarsfield Rd,61488-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18631,Knockraha Sarsfield Rd,61486-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18632,Knockraha Sarsfield Rd,61492-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18633,Knockraha Sarsfield Rd,61496-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18634,Knockraha Sarsfield Rd,61494-00021-1,0,4380_7778208_1740902,4380_377 -4380_78117,285,4380_18641,Knockraha Sarsfield Rd,60978-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18642,Knockraha Sarsfield Rd,60980-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18643,Knockraha Sarsfield Rd,60976-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18644,Knockraha Sarsfield Rd,60974-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18645,Knockraha Sarsfield Rd,60982-00013-1,0,4380_7778208_1740901,4380_375 -4380_78117,289,4380_18646,Knockraha Sarsfield Rd,60984-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18647,Knockraha Sarsfield Rd,60981-00016-1,0,4380_7778208_1740901,4380_375 -4380_78117,293,4380_18648,Knockraha Sarsfield Rd,60977-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18649,Knockraha Sarsfield Rd,60979-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18650,Knockraha Sarsfield Rd,60975-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18651,Knockraha Sarsfield Rd,60985-00019-1,0,4380_7778208_1740901,4380_375 -4380_78117,296,4380_18652,Knockraha Sarsfield Rd,60983-00021-1,0,4380_7778208_1740901,4380_375 -4380_78117,285,4380_18660,Knockraha Sarsfield Rd,61543-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18661,Knockraha Sarsfield Rd,61533-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,297,4380_18662,Knockraha Sarsfield Rd,61001-00008-1,0,4380_7778208_1740901,4380_376 -4380_78117,288,4380_18663,Knockraha Sarsfield Rd,61535-00011-1,0,4380_7778208_1740902,4380_375 -4380_78117,287,4380_18664,Knockraha Sarsfield Rd,61537-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18665,Knockraha Sarsfield Rd,61006-00013-1,0,4380_7778208_1740901,4380_375 -4380_78117,289,4380_18666,Knockraha Sarsfield Rd,61541-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18667,Knockraha Sarsfield Rd,61534-00016-1,0,4380_7778208_1740902,4380_375 -4380_78117,293,4380_18668,Knockraha Sarsfield Rd,61536-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18669,Knockraha Sarsfield Rd,61544-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18670,Knockraha Sarsfield Rd,61538-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18671,Knockraha Sarsfield Rd,61542-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18672,Knockraha Sarsfield Rd,61007-00021-1,0,4380_7778208_1740901,4380_375 -4380_78117,285,4380_18679,Knockraha Sarsfield Rd,61029-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18680,Knockraha Sarsfield Rd,61036-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18681,Knockraha Sarsfield Rd,61031-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18682,Knockraha Sarsfield Rd,61027-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18683,Knockraha Sarsfield Rd,61557-00013-1,0,4380_7778208_1740902,4380_375 -4380_78117,289,4380_18684,Knockraha Sarsfield Rd,61025-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18685,Knockraha Sarsfield Rd,61037-00016-1,0,4380_7778208_1740901,4380_375 -4380_78117,293,4380_18686,Knockraha Sarsfield Rd,61032-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18687,Knockraha Sarsfield Rd,61030-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18688,Knockraha Sarsfield Rd,61028-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18689,Knockraha Sarsfield Rd,61026-00019-1,0,4380_7778208_1740901,4380_375 -4380_77947,285,4380_1869,Drop Off,51172-00009-1,0,4380_7778208_1011106,4380_22 -4380_78117,296,4380_18690,Knockraha Sarsfield Rd,61558-00021-1,0,4380_7778208_1740902,4380_375 -4380_78117,285,4380_18698,Knockraha Sarsfield Rd,61589-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18699,Knockraha Sarsfield Rd,61591-00010-1,0,4380_7778208_1740902,4380_375 -4380_77947,286,4380_1870,Drop Off,51176-00010-1,0,4380_7778208_1011106,4380_22 -4380_78117,297,4380_18700,Knockraha Sarsfield Rd,61059-00008-1,0,4380_7778208_1740901,4380_376 -4380_78117,288,4380_18701,Knockraha Sarsfield Rd,61581-00011-1,0,4380_7778208_1740902,4380_375 -4380_78117,287,4380_18702,Knockraha Sarsfield Rd,61587-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18703,Knockraha Sarsfield Rd,61051-00013-1,0,4380_7778208_1740901,4380_377 -4380_78117,289,4380_18704,Knockraha Sarsfield Rd,61585-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18705,Knockraha Sarsfield Rd,61592-00016-1,0,4380_7778208_1740902,4380_375 -4380_78117,293,4380_18706,Knockraha Sarsfield Rd,61582-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18707,Knockraha Sarsfield Rd,61590-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18708,Knockraha Sarsfield Rd,61588-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18709,Knockraha Sarsfield Rd,61586-00019-1,0,4380_7778208_1740902,4380_375 -4380_77947,288,4380_1871,Drop Off,51168-00011-1,0,4380_7778208_1011106,4380_22 -4380_78117,296,4380_18710,Knockraha Sarsfield Rd,61052-00021-1,0,4380_7778208_1740901,4380_377 -4380_78117,285,4380_18717,Knockraha Sarsfield Rd,61086-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18718,Knockraha Sarsfield Rd,61084-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18719,Knockraha Sarsfield Rd,61077-00011-1,0,4380_7778208_1740901,4380_375 -4380_77947,287,4380_1872,Drop Off,51170-00012-1,0,4380_7778208_1011106,4380_22 -4380_78117,287,4380_18720,Knockraha Sarsfield Rd,61088-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18721,Knockraha Sarsfield Rd,61613-00013-1,0,4380_7778208_1740902,4380_376 -4380_78117,289,4380_18722,Knockraha Sarsfield Rd,61080-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18723,Knockraha Sarsfield Rd,61085-00016-1,0,4380_7778208_1740901,4380_375 -4380_78117,293,4380_18724,Knockraha Sarsfield Rd,61078-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18725,Knockraha Sarsfield Rd,61087-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18726,Knockraha Sarsfield Rd,61089-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18727,Knockraha Sarsfield Rd,61081-00019-1,0,4380_7778208_1740901,4380_375 -4380_78117,296,4380_18728,Knockraha Sarsfield Rd,61614-00021-1,0,4380_7778208_1740902,4380_376 -4380_77947,289,4380_1873,Drop Off,51174-00014-1,0,4380_7778208_1011106,4380_22 -4380_78117,285,4380_18736,Knockraha Sarsfield Rd,61639-00009-1,0,4380_7778208_1740902,4380_375 -4380_78117,286,4380_18737,Knockraha Sarsfield Rd,61633-00010-1,0,4380_7778208_1740902,4380_375 -4380_78117,297,4380_18738,Knockraha Sarsfield Rd,61107-00008-1,0,4380_7778208_1740901,4380_376 -4380_78117,288,4380_18739,Knockraha Sarsfield Rd,61635-00011-1,0,4380_7778208_1740902,4380_375 -4380_77947,290,4380_1874,Drop Off,51173-00015-1,0,4380_7778208_1011106,4380_22 -4380_78117,287,4380_18740,Knockraha Sarsfield Rd,61631-00012-1,0,4380_7778208_1740902,4380_375 -4380_78117,291,4380_18741,Knockraha Sarsfield Rd,61105-00013-1,0,4380_7778208_1740901,4380_377 -4380_78117,289,4380_18742,Knockraha Sarsfield Rd,61629-00014-1,0,4380_7778208_1740902,4380_375 -4380_78117,292,4380_18743,Knockraha Sarsfield Rd,61634-00016-1,0,4380_7778208_1740902,4380_375 -4380_78117,293,4380_18744,Knockraha Sarsfield Rd,61636-00017-1,0,4380_7778208_1740902,4380_375 -4380_78117,290,4380_18745,Knockraha Sarsfield Rd,61640-00015-1,0,4380_7778208_1740902,4380_375 -4380_78117,294,4380_18746,Knockraha Sarsfield Rd,61632-00018-1,0,4380_7778208_1740902,4380_375 -4380_78117,295,4380_18747,Knockraha Sarsfield Rd,61630-00019-1,0,4380_7778208_1740902,4380_375 -4380_78117,296,4380_18748,Knockraha Sarsfield Rd,61106-00021-1,0,4380_7778208_1740901,4380_377 -4380_77947,292,4380_1875,Drop Off,51177-00016-1,0,4380_7778208_1011106,4380_22 -4380_78117,285,4380_18755,Knockraha Sarsfield Rd,61135-00009-1,0,4380_7778208_1740901,4380_375 -4380_78117,286,4380_18756,Knockraha Sarsfield Rd,61131-00010-1,0,4380_7778208_1740901,4380_375 -4380_78117,288,4380_18757,Knockraha Sarsfield Rd,61129-00011-1,0,4380_7778208_1740901,4380_375 -4380_78117,287,4380_18758,Knockraha Sarsfield Rd,61133-00012-1,0,4380_7778208_1740901,4380_375 -4380_78117,291,4380_18759,Knockraha Sarsfield Rd,61663-00013-1,0,4380_7778208_1740902,4380_376 -4380_77947,293,4380_1876,Drop Off,51169-00017-1,0,4380_7778208_1011106,4380_22 -4380_78117,289,4380_18760,Knockraha Sarsfield Rd,61137-00014-1,0,4380_7778208_1740901,4380_375 -4380_78117,292,4380_18761,Knockraha Sarsfield Rd,61132-00016-1,0,4380_7778208_1740901,4380_375 -4380_78117,293,4380_18762,Knockraha Sarsfield Rd,61130-00017-1,0,4380_7778208_1740901,4380_375 -4380_78117,290,4380_18763,Knockraha Sarsfield Rd,61136-00015-1,0,4380_7778208_1740901,4380_375 -4380_78117,294,4380_18764,Knockraha Sarsfield Rd,61134-00018-1,0,4380_7778208_1740901,4380_375 -4380_78117,295,4380_18765,Knockraha Sarsfield Rd,61138-00019-1,0,4380_7778208_1740901,4380_375 -4380_78117,296,4380_18766,Knockraha Sarsfield Rd,61664-00021-1,0,4380_7778208_1740902,4380_376 -4380_78117,291,4380_18768,Dundalk,60627-00013-1,1,4380_7778208_1740901,4380_378 -4380_78117,296,4380_18769,Dundalk,60628-00021-1,1,4380_7778208_1740901,4380_378 -4380_77947,294,4380_1877,Drop Off,51171-00018-1,0,4380_7778208_1011106,4380_22 -4380_78117,285,4380_18775,Dundalk,61167-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_18776,Dundalk,61169-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_18777,Dundalk,61171-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_18778,Dundalk,61165-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,289,4380_18779,Dundalk,61163-00014-1,1,4380_7778208_1740902,4380_378 -4380_77947,295,4380_1878,Drop Off,51175-00019-1,0,4380_7778208_1011106,4380_22 -4380_78117,292,4380_18780,Dundalk,61170-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_18781,Dundalk,61172-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_18782,Dundalk,61168-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_18783,Dundalk,61166-00018-1,1,4380_7778208_1740902,4380_378 -4380_78117,295,4380_18784,Dundalk,61164-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_18786,Dundalk,61185-00013-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_18787,Dundalk,61186-00021-1,1,4380_7778208_1740902,4380_378 -4380_78117,285,4380_18793,Dundalk,60647-00009-1,1,4380_7778208_1740901,4380_378 -4380_78117,286,4380_18794,Dundalk,60645-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_18795,Dundalk,60649-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_18796,Dundalk,60643-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,289,4380_18797,Dundalk,60651-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_18798,Dundalk,60646-00016-1,1,4380_7778208_1740901,4380_378 -4380_78117,293,4380_18799,Dundalk,60650-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_18800,Dundalk,60648-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_18801,Dundalk,60644-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_18802,Dundalk,60652-00019-1,1,4380_7778208_1740901,4380_378 -4380_78117,291,4380_18804,Dundalk,60665-00013-1,1,4380_7778208_1740901,4380_378 -4380_78117,296,4380_18805,Dundalk,60666-00021-1,1,4380_7778208_1740901,4380_378 -4380_77947,297,4380_1881,Drop Off,50639-00008-1,0,4380_7778208_1011101,4380_22 -4380_78117,285,4380_18811,Dundalk,61219-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_18812,Dundalk,61217-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_18813,Dundalk,61215-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_18814,Dundalk,61213-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,289,4380_18815,Dundalk,61211-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_18816,Dundalk,61218-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_18817,Dundalk,61216-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_18818,Dundalk,61220-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_18819,Dundalk,61214-00018-1,1,4380_7778208_1740902,4380_378 -4380_77947,291,4380_1882,Drop Off,50981-00013-1,0,4380_7778208_1011104,4380_24 -4380_78117,295,4380_18820,Dundalk,61212-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_18822,Dundalk,61233-00013-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_18823,Dundalk,61234-00021-1,1,4380_7778208_1740902,4380_378 -4380_78117,285,4380_18829,Dundalk,60691-00009-1,1,4380_7778208_1740901,4380_378 -4380_77947,296,4380_1883,Drop Off,50982-00021-1,0,4380_7778208_1011104,4380_24 -4380_78117,286,4380_18830,Dundalk,60699-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_18831,Dundalk,60689-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_18832,Dundalk,60693-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,289,4380_18833,Dundalk,60697-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_18834,Dundalk,60700-00016-1,1,4380_7778208_1740901,4380_378 -4380_78117,293,4380_18835,Dundalk,60690-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_18836,Dundalk,60692-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_18837,Dundalk,60694-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_18838,Dundalk,60698-00019-1,1,4380_7778208_1740901,4380_378 -4380_78117,291,4380_18840,Dundalk,60713-00013-1,1,4380_7778208_1740901,4380_378 -4380_78117,296,4380_18841,Dundalk,60714-00021-1,1,4380_7778208_1740901,4380_378 -4380_78117,285,4380_18847,Dundalk,61259-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_18848,Dundalk,61257-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_18849,Dundalk,61265-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_18850,Dundalk,61261-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,289,4380_18851,Dundalk,61267-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_18852,Dundalk,61258-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_18853,Dundalk,61266-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_18854,Dundalk,61260-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_18855,Dundalk,61262-00018-1,1,4380_7778208_1740902,4380_378 -4380_78117,295,4380_18856,Dundalk,61268-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_18858,Dundalk,61281-00013-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_18859,Dundalk,61282-00021-1,1,4380_7778208_1740902,4380_378 -4380_78117,285,4380_18865,Dundalk,60743-00009-1,1,4380_7778208_1740901,4380_378 -4380_78117,286,4380_18866,Dundalk,60737-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_18867,Dundalk,60747-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_18868,Dundalk,60739-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,289,4380_18869,Dundalk,60741-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_18870,Dundalk,60738-00016-1,1,4380_7778208_1740901,4380_378 -4380_78117,293,4380_18871,Dundalk,60748-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_18872,Dundalk,60744-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_18873,Dundalk,60740-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_18874,Dundalk,60742-00019-1,1,4380_7778208_1740901,4380_378 -4380_78117,291,4380_18876,Dundalk,60761-00013-1,1,4380_7778208_1740901,4380_378 -4380_78117,296,4380_18877,Dundalk,60762-00021-1,1,4380_7778208_1740901,4380_378 -4380_78117,285,4380_18883,Dundalk,61311-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_18884,Dundalk,61305-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_18885,Dundalk,61315-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_18886,Dundalk,61313-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,289,4380_18887,Dundalk,61309-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_18888,Dundalk,61306-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_18889,Dundalk,61316-00017-1,1,4380_7778208_1740902,4380_378 -4380_77947,285,4380_1889,Drop Off,50640-00009-1,0,4380_7778208_1011101,4380_22 -4380_78117,290,4380_18890,Dundalk,61312-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_18891,Dundalk,61314-00018-1,1,4380_7778208_1740902,4380_378 -4380_78117,295,4380_18892,Dundalk,61310-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,285,4380_18899,Dundalk,60793-00009-1,1,4380_7778208_1740901,4380_378 -4380_77947,286,4380_1890,Drop Off,50648-00010-1,0,4380_7778208_1011101,4380_22 -4380_78117,286,4380_18900,Dundalk,60789-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_18901,Dundalk,60785-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_18902,Dundalk,60787-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,291,4380_18903,Dundalk,61329-00013-1,1,4380_7778208_1740902,4380_379 -4380_78117,289,4380_18904,Dundalk,60795-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_18905,Dundalk,60790-00016-1,1,4380_7778208_1740901,4380_378 -4380_78117,293,4380_18906,Dundalk,60786-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_18907,Dundalk,60794-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_18908,Dundalk,60788-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_18909,Dundalk,60796-00019-1,1,4380_7778208_1740901,4380_378 -4380_77947,287,4380_1891,Drop Off,50646-00012-1,0,4380_7778208_1011101,4380_22 -4380_78117,296,4380_18910,Dundalk,61330-00021-1,1,4380_7778208_1740902,4380_379 -4380_78117,285,4380_18917,Dundalk,61353-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_18918,Dundalk,61363-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_18919,Dundalk,61355-00011-1,1,4380_7778208_1740902,4380_378 -4380_77947,288,4380_1892,Drop Off,50642-00011-1,0,4380_7778208_1011101,4380_22 -4380_78117,287,4380_18920,Dundalk,61357-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_18921,Dundalk,60809-00013-1,1,4380_7778208_1740901,4380_379 -4380_78117,289,4380_18922,Dundalk,61359-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_18923,Dundalk,61364-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_18924,Dundalk,61356-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_18925,Dundalk,61354-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_18926,Dundalk,61358-00018-1,1,4380_7778208_1740902,4380_378 -4380_78117,295,4380_18927,Dundalk,61360-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_18928,Dundalk,60810-00021-1,1,4380_7778208_1740901,4380_379 -4380_77947,289,4380_1893,Drop Off,50644-00014-1,0,4380_7778208_1011101,4380_22 -4380_78117,285,4380_18934,Dundalk,60839-00009-1,1,4380_7778208_1740901,4380_378 -4380_78117,286,4380_18935,Dundalk,60833-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_18936,Dundalk,60841-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_18937,Dundalk,60837-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,289,4380_18938,Dundalk,60835-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_18939,Dundalk,60834-00016-1,1,4380_7778208_1740901,4380_378 -4380_77947,290,4380_1894,Drop Off,50641-00015-1,0,4380_7778208_1011101,4380_22 -4380_78117,293,4380_18940,Dundalk,60842-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_18941,Dundalk,60840-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_18942,Dundalk,60838-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_18943,Dundalk,60836-00019-1,1,4380_7778208_1740901,4380_378 -4380_78117,291,4380_18945,Dundalk,61387-00013-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_18946,Dundalk,61388-00021-1,1,4380_7778208_1740902,4380_378 -4380_77947,292,4380_1895,Drop Off,50649-00016-1,0,4380_7778208_1011101,4380_22 -4380_78117,285,4380_18952,Dundalk,61407-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_18953,Dundalk,61405-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_18954,Dundalk,61409-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_18955,Dundalk,61401-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,289,4380_18956,Dundalk,61403-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_18957,Dundalk,61406-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_18958,Dundalk,61410-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_18959,Dundalk,61408-00015-1,1,4380_7778208_1740902,4380_378 -4380_77947,293,4380_1896,Drop Off,50643-00017-1,0,4380_7778208_1011101,4380_22 -4380_78117,294,4380_18960,Dundalk,61402-00018-1,1,4380_7778208_1740902,4380_378 -4380_78117,295,4380_18961,Dundalk,61404-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_18963,Dundalk,60867-00013-1,1,4380_7778208_1740901,4380_378 -4380_78117,296,4380_18964,Dundalk,60868-00021-1,1,4380_7778208_1740901,4380_378 -4380_77947,294,4380_1897,Drop Off,50647-00018-1,0,4380_7778208_1011101,4380_22 -4380_78117,285,4380_18970,Dundalk,60891-00009-1,1,4380_7778208_1740901,4380_378 -4380_78117,286,4380_18971,Dundalk,60887-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_18972,Dundalk,60889-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_18973,Dundalk,60883-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,289,4380_18974,Dundalk,60885-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_18975,Dundalk,60888-00016-1,1,4380_7778208_1740901,4380_378 -4380_78117,293,4380_18976,Dundalk,60890-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_18977,Dundalk,60892-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_18978,Dundalk,60884-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_18979,Dundalk,60886-00019-1,1,4380_7778208_1740901,4380_378 -4380_77947,295,4380_1898,Drop Off,50645-00019-1,0,4380_7778208_1011101,4380_22 -4380_78117,291,4380_18981,Dundalk,60893-00013-1,1,4380_7778208_1740901,4380_378 -4380_78117,296,4380_18982,Dundalk,60894-00021-1,1,4380_7778208_1740901,4380_378 -4380_78117,297,4380_18984,Dundalk,60908-00008-1,1,4380_7778208_1740901,4380_378 -4380_78117,285,4380_18990,Dundalk,61449-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_18991,Dundalk,61451-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_18992,Dundalk,61457-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_18993,Dundalk,61455-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,289,4380_18994,Dundalk,61453-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_18995,Dundalk,61452-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_18996,Dundalk,61458-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_18997,Dundalk,61450-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_18998,Dundalk,61456-00018-1,1,4380_7778208_1740902,4380_378 -4380_78117,295,4380_18999,Dundalk,61454-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_19001,Dundalk,61459-00013-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_19002,Dundalk,61460-00021-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_19004,Dundalk,60935-00013-1,1,4380_7778208_1740901,4380_378 -4380_78117,296,4380_19005,Dundalk,60936-00021-1,1,4380_7778208_1740901,4380_378 -4380_78117,285,4380_19011,Dundalk,60937-00009-1,1,4380_7778208_1740901,4380_378 -4380_78117,286,4380_19012,Dundalk,60943-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_19013,Dundalk,60939-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_19014,Dundalk,60945-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,289,4380_19015,Dundalk,60941-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_19016,Dundalk,60944-00016-1,1,4380_7778208_1740901,4380_378 -4380_78117,293,4380_19017,Dundalk,60940-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_19018,Dundalk,60938-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_19019,Dundalk,60946-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_19020,Dundalk,60942-00019-1,1,4380_7778208_1740901,4380_378 -4380_78117,291,4380_19022,Dundalk,61497-00013-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_19023,Dundalk,61498-00021-1,1,4380_7778208_1740902,4380_378 -4380_78117,297,4380_19025,Dundalk,60962-00008-1,1,4380_7778208_1740901,4380_378 -4380_78117,285,4380_19031,Dundalk,61505-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_19032,Dundalk,61507-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_19033,Dundalk,61499-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_19034,Dundalk,61503-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,289,4380_19035,Dundalk,61501-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_19036,Dundalk,61508-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_19037,Dundalk,61500-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_19038,Dundalk,61506-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_19039,Dundalk,61504-00018-1,1,4380_7778208_1740902,4380_378 -4380_77947,285,4380_1904,Drop Off,51539-00009-1,0,4380_7778208_1011111,4380_22 -4380_78117,295,4380_19040,Dundalk,61502-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,285,4380_19046,Dundalk,60987-00009-1,1,4380_7778208_1740901,4380_378 -4380_78117,286,4380_19047,Dundalk,60991-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_19048,Dundalk,60995-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_19049,Dundalk,60993-00012-1,1,4380_7778208_1740901,4380_378 -4380_77947,286,4380_1905,Drop Off,51545-00010-1,0,4380_7778208_1011111,4380_22 -4380_78117,289,4380_19050,Dundalk,60989-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_19051,Dundalk,60992-00016-1,1,4380_7778208_1740901,4380_378 -4380_78117,293,4380_19052,Dundalk,60996-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_19053,Dundalk,60988-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_19054,Dundalk,60994-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_19055,Dundalk,60990-00019-1,1,4380_7778208_1740901,4380_378 -4380_78117,291,4380_19057,Dundalk,60997-00013-1,1,4380_7778208_1740901,4380_378 -4380_78117,296,4380_19058,Dundalk,60998-00021-1,1,4380_7778208_1740901,4380_378 -4380_77947,288,4380_1906,Drop Off,51537-00011-1,0,4380_7778208_1011111,4380_22 -4380_78117,297,4380_19060,Dundalk,61012-00008-1,1,4380_7778208_1740901,4380_378 -4380_78117,285,4380_19066,Dundalk,61555-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_19067,Dundalk,61547-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_19068,Dundalk,61545-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_19069,Dundalk,61549-00012-1,1,4380_7778208_1740902,4380_378 -4380_77947,287,4380_1907,Drop Off,51543-00012-1,0,4380_7778208_1011111,4380_22 -4380_78117,289,4380_19070,Dundalk,61553-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_19071,Dundalk,61548-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_19072,Dundalk,61546-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_19073,Dundalk,61556-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_19074,Dundalk,61550-00018-1,1,4380_7778208_1740902,4380_378 -4380_78117,295,4380_19075,Dundalk,61554-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_19077,Dundalk,61013-00013-1,1,4380_7778208_1740901,4380_378 -4380_78117,296,4380_19078,Dundalk,61014-00021-1,1,4380_7778208_1740901,4380_378 -4380_77947,289,4380_1908,Drop Off,51541-00014-1,0,4380_7778208_1011111,4380_22 -4380_78117,285,4380_19084,Dundalk,61041-00009-1,1,4380_7778208_1740901,4380_378 -4380_78117,286,4380_19085,Dundalk,61043-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_19086,Dundalk,61045-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_19087,Dundalk,61039-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,289,4380_19088,Dundalk,61047-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_19089,Dundalk,61044-00016-1,1,4380_7778208_1740901,4380_378 -4380_77947,290,4380_1909,Drop Off,51540-00015-1,0,4380_7778208_1011111,4380_22 -4380_78117,293,4380_19090,Dundalk,61046-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_19091,Dundalk,61042-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_19092,Dundalk,61040-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_19093,Dundalk,61048-00019-1,1,4380_7778208_1740901,4380_378 -4380_78117,291,4380_19095,Dundalk,61569-00013-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_19096,Dundalk,61570-00021-1,1,4380_7778208_1740902,4380_378 -4380_78117,297,4380_19098,Dundalk,61064-00008-1,1,4380_7778208_1740901,4380_378 -4380_77947,292,4380_1910,Drop Off,51546-00016-1,0,4380_7778208_1011111,4380_22 -4380_78117,285,4380_19105,Dundalk,61595-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_19106,Dundalk,61601-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_19107,Dundalk,61599-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_19108,Dundalk,61597-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_19109,Dundalk,61065-00013-1,1,4380_7778208_1740901,4380_379 -4380_77947,293,4380_1911,Drop Off,51538-00017-1,0,4380_7778208_1011111,4380_22 -4380_78117,289,4380_19110,Dundalk,61603-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_19111,Dundalk,61602-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_19112,Dundalk,61600-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_19113,Dundalk,61596-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_19114,Dundalk,61598-00018-1,1,4380_7778208_1740902,4380_378 -4380_78117,295,4380_19115,Dundalk,61604-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_19116,Dundalk,61066-00021-1,1,4380_7778208_1740901,4380_379 -4380_78117,291,4380_19118,Dundalk,61617-00013-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_19119,Dundalk,61618-00021-1,1,4380_7778208_1740902,4380_378 -4380_77947,294,4380_1912,Drop Off,51544-00018-1,0,4380_7778208_1011111,4380_22 -4380_78117,285,4380_19125,Dundalk,61093-00009-1,1,4380_7778208_1740901,4380_378 -4380_78117,286,4380_19126,Dundalk,61097-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_19127,Dundalk,61099-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_19128,Dundalk,61091-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,289,4380_19129,Dundalk,61095-00014-1,1,4380_7778208_1740901,4380_378 -4380_77947,295,4380_1913,Drop Off,51542-00019-1,0,4380_7778208_1011111,4380_22 -4380_78117,292,4380_19130,Dundalk,61098-00016-1,1,4380_7778208_1740901,4380_378 -4380_78117,293,4380_19131,Dundalk,61100-00017-1,1,4380_7778208_1740901,4380_378 -4380_78117,290,4380_19132,Dundalk,61094-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_19133,Dundalk,61092-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_19134,Dundalk,61096-00019-1,1,4380_7778208_1740901,4380_378 -4380_78117,297,4380_19137,Dundalk,61118-00008-1,1,4380_7778208_1740901,4380_378 -4380_78117,291,4380_19138,Dundalk,61116-00013-1,1,4380_7778208_1740901,4380_379 -4380_78117,296,4380_19139,Dundalk,61117-00021-1,1,4380_7778208_1740901,4380_379 -4380_78117,285,4380_19145,Dundalk,61651-00009-1,1,4380_7778208_1740902,4380_378 -4380_78117,286,4380_19146,Dundalk,61647-00010-1,1,4380_7778208_1740902,4380_378 -4380_78117,288,4380_19147,Dundalk,61641-00011-1,1,4380_7778208_1740902,4380_378 -4380_78117,287,4380_19148,Dundalk,61645-00012-1,1,4380_7778208_1740902,4380_378 -4380_78117,289,4380_19149,Dundalk,61643-00014-1,1,4380_7778208_1740902,4380_378 -4380_78117,292,4380_19150,Dundalk,61648-00016-1,1,4380_7778208_1740902,4380_378 -4380_78117,293,4380_19151,Dundalk,61642-00017-1,1,4380_7778208_1740902,4380_378 -4380_78117,290,4380_19152,Dundalk,61652-00015-1,1,4380_7778208_1740902,4380_378 -4380_78117,294,4380_19153,Dundalk,61646-00018-1,1,4380_7778208_1740902,4380_378 -4380_78117,295,4380_19154,Dundalk,61644-00019-1,1,4380_7778208_1740902,4380_378 -4380_78117,291,4380_19156,Dundalk,61665-00013-1,1,4380_7778208_1740902,4380_378 -4380_78117,296,4380_19157,Dundalk,61666-00021-1,1,4380_7778208_1740902,4380_378 -4380_77947,297,4380_1916,Drop Off,50983-00008-1,0,4380_7778208_1011104,4380_22 -4380_78117,285,4380_19163,Dundalk,61143-00009-1,1,4380_7778208_1740901,4380_378 -4380_78117,286,4380_19164,Dundalk,61149-00010-1,1,4380_7778208_1740901,4380_378 -4380_78117,288,4380_19165,Dundalk,61145-00011-1,1,4380_7778208_1740901,4380_378 -4380_78117,287,4380_19166,Dundalk,61151-00012-1,1,4380_7778208_1740901,4380_378 -4380_78117,289,4380_19167,Dundalk,61147-00014-1,1,4380_7778208_1740901,4380_378 -4380_78117,292,4380_19168,Dundalk,61150-00016-1,1,4380_7778208_1740901,4380_378 -4380_78117,293,4380_19169,Dundalk,61146-00017-1,1,4380_7778208_1740901,4380_378 -4380_77947,291,4380_1917,Drop Off,50755-00013-1,0,4380_7778208_1011102,4380_24 -4380_78117,290,4380_19170,Dundalk,61144-00015-1,1,4380_7778208_1740901,4380_378 -4380_78117,294,4380_19171,Dundalk,61152-00018-1,1,4380_7778208_1740901,4380_378 -4380_78117,295,4380_19172,Dundalk,61148-00019-1,1,4380_7778208_1740901,4380_378 -4380_77970,285,4380_19179,Cavan,62157-00009-1,0,4380_7778208_1750901,4380_380 -4380_77947,296,4380_1918,Drop Off,50756-00021-1,0,4380_7778208_1011102,4380_24 -4380_77970,286,4380_19180,Cavan,62167-00010-1,0,4380_7778208_1750901,4380_380 -4380_77970,288,4380_19181,Cavan,62161-00011-1,0,4380_7778208_1750901,4380_380 -4380_77970,287,4380_19182,Cavan,62163-00012-1,0,4380_7778208_1750901,4380_380 -4380_77970,291,4380_19183,Cavan,62165-00013-1,0,4380_7778208_1750901,4380_382 -4380_77970,289,4380_19184,Cavan,62159-00014-1,0,4380_7778208_1750901,4380_380 -4380_77970,292,4380_19185,Cavan,62168-00016-1,0,4380_7778208_1750901,4380_380 -4380_77970,293,4380_19186,Cavan,62162-00017-1,0,4380_7778208_1750901,4380_380 -4380_77970,290,4380_19187,Cavan,62158-00015-1,0,4380_7778208_1750901,4380_380 -4380_77970,294,4380_19188,Cavan,62164-00018-1,0,4380_7778208_1750901,4380_380 -4380_77970,295,4380_19189,Cavan,62160-00019-1,0,4380_7778208_1750901,4380_380 -4380_77970,296,4380_19190,Cavan,62166-00021-1,0,4380_7778208_1750901,4380_382 -4380_77970,297,4380_19192,Cavan,62169-00008-1,0,4380_7778208_1750901,4380_380 -4380_77970,285,4380_19198,Cavan,62189-00009-1,0,4380_7778208_1750901,4380_380 -4380_77970,286,4380_19199,Cavan,62187-00010-1,0,4380_7778208_1750901,4380_380 -4380_77946,285,4380_192,Dundalk,50417-00009-1,0,4380_7778208_1000914,4380_1 -4380_77970,288,4380_19200,Cavan,62183-00011-1,0,4380_7778208_1750901,4380_380 -4380_77970,287,4380_19201,Cavan,62185-00012-1,0,4380_7778208_1750901,4380_380 -4380_77970,289,4380_19202,Cavan,62191-00014-1,0,4380_7778208_1750901,4380_380 -4380_77970,292,4380_19203,Cavan,62188-00016-1,0,4380_7778208_1750901,4380_380 -4380_77970,293,4380_19204,Cavan,62184-00017-1,0,4380_7778208_1750901,4380_380 -4380_77970,290,4380_19205,Cavan,62190-00015-1,0,4380_7778208_1750901,4380_380 -4380_77970,294,4380_19206,Cavan,62186-00018-1,0,4380_7778208_1750901,4380_380 -4380_77970,295,4380_19207,Cavan,62192-00019-1,0,4380_7778208_1750901,4380_380 -4380_77970,285,4380_19215,Cavan,62212-00009-1,0,4380_7778208_1750901,4380_380 -4380_77970,286,4380_19216,Cavan,62208-00010-1,0,4380_7778208_1750901,4380_380 -4380_77970,297,4380_19217,Cavan,62203-00008-1,0,4380_7778208_1750901,4380_382 -4380_77970,288,4380_19218,Cavan,62210-00011-1,0,4380_7778208_1750901,4380_380 -4380_77970,287,4380_19219,Cavan,62206-00012-1,0,4380_7778208_1750901,4380_380 -4380_77970,291,4380_19220,Cavan,62204-00013-1,0,4380_7778208_1750901,4380_383 -4380_77970,289,4380_19221,Cavan,62214-00014-1,0,4380_7778208_1750901,4380_380 -4380_77970,292,4380_19222,Cavan,62209-00016-1,0,4380_7778208_1750901,4380_380 -4380_77970,293,4380_19223,Cavan,62211-00017-1,0,4380_7778208_1750901,4380_380 -4380_77970,290,4380_19224,Cavan,62213-00015-1,0,4380_7778208_1750901,4380_380 -4380_77970,294,4380_19225,Cavan,62207-00018-1,0,4380_7778208_1750901,4380_380 -4380_77970,295,4380_19226,Cavan,62215-00019-1,0,4380_7778208_1750901,4380_380 -4380_77970,296,4380_19227,Cavan,62205-00021-1,0,4380_7778208_1750901,4380_383 -4380_77970,285,4380_19235,Cavan,62232-00009-1,0,4380_7778208_1750901,4380_380 -4380_77970,286,4380_19236,Cavan,62229-00010-1,0,4380_7778208_1750901,4380_380 -4380_77970,297,4380_19237,Cavan,62231-00008-1,0,4380_7778208_1750901,4380_382 -4380_77970,288,4380_19238,Cavan,62238-00011-1,0,4380_7778208_1750901,4380_380 -4380_77970,287,4380_19239,Cavan,62234-00012-1,0,4380_7778208_1750901,4380_380 -4380_77947,285,4380_1924,Drop Off,50759-00009-1,0,4380_7778208_1011102,4380_22 -4380_77970,291,4380_19240,Cavan,62236-00013-1,0,4380_7778208_1750901,4380_383 -4380_77970,289,4380_19241,Cavan,62240-00014-1,0,4380_7778208_1750901,4380_380 -4380_77970,292,4380_19242,Cavan,62230-00016-1,0,4380_7778208_1750901,4380_380 -4380_77970,293,4380_19243,Cavan,62239-00017-1,0,4380_7778208_1750901,4380_380 -4380_77970,290,4380_19244,Cavan,62233-00015-1,0,4380_7778208_1750901,4380_380 -4380_77970,294,4380_19245,Cavan,62235-00018-1,0,4380_7778208_1750901,4380_380 -4380_77970,295,4380_19246,Cavan,62241-00019-1,0,4380_7778208_1750901,4380_380 -4380_77970,296,4380_19247,Cavan,62237-00021-1,0,4380_7778208_1750901,4380_383 -4380_77947,286,4380_1925,Drop Off,50761-00010-1,0,4380_7778208_1011102,4380_22 -4380_77970,285,4380_19253,Cavan,62259-00009-1,0,4380_7778208_1750901,4380_380 -4380_77970,286,4380_19254,Cavan,62255-00010-1,0,4380_7778208_1750901,4380_380 -4380_77970,288,4380_19255,Cavan,62261-00011-1,0,4380_7778208_1750901,4380_380 -4380_77970,287,4380_19256,Cavan,62263-00012-1,0,4380_7778208_1750901,4380_380 -4380_77970,289,4380_19257,Cavan,62257-00014-1,0,4380_7778208_1750901,4380_380 -4380_77970,292,4380_19258,Cavan,62256-00016-1,0,4380_7778208_1750901,4380_380 -4380_77970,293,4380_19259,Cavan,62262-00017-1,0,4380_7778208_1750901,4380_380 -4380_77947,287,4380_1926,Drop Off,50763-00012-1,0,4380_7778208_1011102,4380_22 -4380_77970,290,4380_19260,Cavan,62260-00015-1,0,4380_7778208_1750901,4380_380 -4380_77970,294,4380_19261,Cavan,62264-00018-1,0,4380_7778208_1750901,4380_380 -4380_77970,295,4380_19262,Cavan,62258-00019-1,0,4380_7778208_1750901,4380_380 -4380_77970,297,4380_19265,Cavan,62267-00008-1,0,4380_7778208_1750901,4380_380 -4380_77970,291,4380_19266,Cavan,62265-00013-1,0,4380_7778208_1750901,4380_382 -4380_77970,296,4380_19267,Cavan,62266-00021-1,0,4380_7778208_1750901,4380_382 -4380_77947,288,4380_1927,Drop Off,50757-00011-1,0,4380_7778208_1011102,4380_22 -4380_77970,285,4380_19273,Cavan,62282-00009-1,0,4380_7778208_1750901,4380_381 -4380_77970,286,4380_19274,Cavan,62280-00010-1,0,4380_7778208_1750901,4380_381 -4380_77970,288,4380_19275,Cavan,62286-00011-1,0,4380_7778208_1750901,4380_381 -4380_77970,287,4380_19276,Cavan,62284-00012-1,0,4380_7778208_1750901,4380_381 -4380_77970,289,4380_19277,Cavan,62278-00014-1,0,4380_7778208_1750901,4380_381 -4380_77970,292,4380_19278,Cavan,62281-00016-1,0,4380_7778208_1750901,4380_381 -4380_77970,293,4380_19279,Cavan,62287-00017-1,0,4380_7778208_1750901,4380_381 -4380_77947,289,4380_1928,Drop Off,50765-00014-1,0,4380_7778208_1011102,4380_22 -4380_77970,290,4380_19280,Cavan,62283-00015-1,0,4380_7778208_1750901,4380_381 -4380_77970,294,4380_19281,Cavan,62285-00018-1,0,4380_7778208_1750901,4380_381 -4380_77970,295,4380_19282,Cavan,62279-00019-1,0,4380_7778208_1750901,4380_381 -4380_77970,285,4380_19288,Monaghan,62197-00009-1,1,4380_7778208_1750901,4380_384 -4380_77970,286,4380_19289,Monaghan,62193-00010-1,1,4380_7778208_1750901,4380_384 -4380_77947,290,4380_1929,Drop Off,50760-00015-1,0,4380_7778208_1011102,4380_22 -4380_77970,288,4380_19290,Monaghan,62201-00011-1,1,4380_7778208_1750901,4380_384 -4380_77970,287,4380_19291,Monaghan,62195-00012-1,1,4380_7778208_1750901,4380_384 -4380_77970,289,4380_19292,Monaghan,62199-00014-1,1,4380_7778208_1750901,4380_384 -4380_77970,292,4380_19293,Monaghan,62194-00016-1,1,4380_7778208_1750901,4380_384 -4380_77970,293,4380_19294,Monaghan,62202-00017-1,1,4380_7778208_1750901,4380_384 -4380_77970,290,4380_19295,Monaghan,62198-00015-1,1,4380_7778208_1750901,4380_384 -4380_77970,294,4380_19296,Monaghan,62196-00018-1,1,4380_7778208_1750901,4380_384 -4380_77970,295,4380_19297,Monaghan,62200-00019-1,1,4380_7778208_1750901,4380_384 -4380_77946,286,4380_193,Dundalk,50421-00010-1,0,4380_7778208_1000914,4380_1 -4380_77947,292,4380_1930,Drop Off,50762-00016-1,0,4380_7778208_1011102,4380_22 -4380_77970,285,4380_19305,Monaghan,62223-00009-1,1,4380_7778208_1750901,4380_384 -4380_77970,286,4380_19306,Monaghan,62225-00010-1,1,4380_7778208_1750901,4380_384 -4380_77970,297,4380_19307,Monaghan,62220-00008-1,1,4380_7778208_1750901,4380_386 -4380_77970,288,4380_19308,Monaghan,62227-00011-1,1,4380_7778208_1750901,4380_384 -4380_77970,287,4380_19309,Monaghan,62216-00012-1,1,4380_7778208_1750901,4380_384 -4380_77947,293,4380_1931,Drop Off,50758-00017-1,0,4380_7778208_1011102,4380_22 -4380_77970,291,4380_19310,Monaghan,62218-00013-1,1,4380_7778208_1750901,4380_387 -4380_77970,289,4380_19311,Monaghan,62221-00014-1,1,4380_7778208_1750901,4380_384 -4380_77970,292,4380_19312,Monaghan,62226-00016-1,1,4380_7778208_1750901,4380_384 -4380_77970,293,4380_19313,Monaghan,62228-00017-1,1,4380_7778208_1750901,4380_384 -4380_77970,290,4380_19314,Monaghan,62224-00015-1,1,4380_7778208_1750901,4380_384 -4380_77970,294,4380_19315,Monaghan,62217-00018-1,1,4380_7778208_1750901,4380_384 -4380_77970,295,4380_19316,Monaghan,62222-00019-1,1,4380_7778208_1750901,4380_384 -4380_77970,296,4380_19317,Monaghan,62219-00021-1,1,4380_7778208_1750901,4380_387 -4380_77947,294,4380_1932,Drop Off,50764-00018-1,0,4380_7778208_1011102,4380_22 -4380_77970,285,4380_19325,Monaghan,62248-00009-1,1,4380_7778208_1750901,4380_384 -4380_77970,286,4380_19326,Monaghan,62253-00010-1,1,4380_7778208_1750901,4380_384 -4380_77970,297,4380_19327,Monaghan,62250-00008-1,1,4380_7778208_1750901,4380_386 -4380_77970,288,4380_19328,Monaghan,62246-00011-1,1,4380_7778208_1750901,4380_384 -4380_77970,287,4380_19329,Monaghan,62242-00012-1,1,4380_7778208_1750901,4380_384 -4380_77947,295,4380_1933,Drop Off,50766-00019-1,0,4380_7778208_1011102,4380_22 -4380_77970,291,4380_19330,Monaghan,62244-00013-1,1,4380_7778208_1750901,4380_387 -4380_77970,289,4380_19331,Monaghan,62251-00014-1,1,4380_7778208_1750901,4380_384 -4380_77970,292,4380_19332,Monaghan,62254-00016-1,1,4380_7778208_1750901,4380_384 -4380_77970,293,4380_19333,Monaghan,62247-00017-1,1,4380_7778208_1750901,4380_384 -4380_77970,290,4380_19334,Monaghan,62249-00015-1,1,4380_7778208_1750901,4380_384 -4380_77970,294,4380_19335,Monaghan,62243-00018-1,1,4380_7778208_1750901,4380_384 -4380_77970,295,4380_19336,Monaghan,62252-00019-1,1,4380_7778208_1750901,4380_384 -4380_77970,296,4380_19337,Monaghan,62245-00021-1,1,4380_7778208_1750901,4380_387 -4380_77970,285,4380_19343,Cootehill (Bridge St),62276-00009-1,1,4380_7778208_1750901,4380_385 -4380_77970,286,4380_19344,Cootehill (Bridge St),62274-00010-1,1,4380_7778208_1750901,4380_385 -4380_77970,288,4380_19345,Cootehill (Bridge St),62272-00011-1,1,4380_7778208_1750901,4380_385 -4380_77970,287,4380_19346,Cootehill (Bridge St),62268-00012-1,1,4380_7778208_1750901,4380_385 -4380_77970,289,4380_19347,Cootehill (Bridge St),62270-00014-1,1,4380_7778208_1750901,4380_385 -4380_77970,292,4380_19348,Cootehill (Bridge St),62275-00016-1,1,4380_7778208_1750901,4380_385 -4380_77970,293,4380_19349,Cootehill (Bridge St),62273-00017-1,1,4380_7778208_1750901,4380_385 -4380_77970,290,4380_19350,Cootehill (Bridge St),62277-00015-1,1,4380_7778208_1750901,4380_385 -4380_77970,294,4380_19351,Cootehill (Bridge St),62269-00018-1,1,4380_7778208_1750901,4380_385 -4380_77970,295,4380_19352,Cootehill (Bridge St),62271-00019-1,1,4380_7778208_1750901,4380_385 -4380_77947,297,4380_1936,Drop Off,51355-00008-1,0,4380_7778208_1011108,4380_22 -4380_77970,285,4380_19360,Monaghan,62297-00009-1,1,4380_7778208_1750901,4380_384 -4380_77970,286,4380_19361,Monaghan,62295-00010-1,1,4380_7778208_1750901,4380_384 -4380_77970,297,4380_19362,Monaghan,62294-00008-1,1,4380_7778208_1750901,4380_386 -4380_77970,288,4380_19363,Monaghan,62292-00011-1,1,4380_7778208_1750901,4380_384 -4380_77970,287,4380_19364,Monaghan,62290-00012-1,1,4380_7778208_1750901,4380_384 -4380_77970,291,4380_19365,Monaghan,62288-00013-1,1,4380_7778208_1750901,4380_387 -4380_77970,289,4380_19366,Monaghan,62299-00014-1,1,4380_7778208_1750901,4380_384 -4380_77970,292,4380_19367,Monaghan,62296-00016-1,1,4380_7778208_1750901,4380_384 -4380_77970,293,4380_19368,Monaghan,62293-00017-1,1,4380_7778208_1750901,4380_384 -4380_77970,290,4380_19369,Monaghan,62298-00015-1,1,4380_7778208_1750901,4380_384 -4380_77947,291,4380_1937,Drop Off,51075-00013-1,0,4380_7778208_1011105,4380_24 -4380_77970,294,4380_19370,Monaghan,62291-00018-1,1,4380_7778208_1750901,4380_384 -4380_77970,295,4380_19371,Monaghan,62300-00019-1,1,4380_7778208_1750901,4380_384 -4380_77970,296,4380_19372,Monaghan,62289-00021-1,1,4380_7778208_1750901,4380_387 -4380_77947,296,4380_1938,Drop Off,51076-00021-1,0,4380_7778208_1011105,4380_24 -4380_78118,285,4380_19380,Monaghan,62170-00009-1,0,4380_7778208_1750901,4380_388 -4380_78118,286,4380_19381,Monaghan,62173-00010-1,0,4380_7778208_1750901,4380_388 -4380_78118,297,4380_19382,Monaghan,62172-00008-1,0,4380_7778208_1750901,4380_389 -4380_78118,288,4380_19383,Monaghan,62181-00011-1,0,4380_7778208_1750901,4380_388 -4380_78118,287,4380_19384,Monaghan,62179-00012-1,0,4380_7778208_1750901,4380_388 -4380_78118,291,4380_19385,Monaghan,62177-00013-1,0,4380_7778208_1750901,4380_390 -4380_78118,289,4380_19386,Monaghan,62175-00014-1,0,4380_7778208_1750901,4380_388 -4380_78118,292,4380_19387,Monaghan,62174-00016-1,0,4380_7778208_1750901,4380_388 -4380_78118,293,4380_19388,Monaghan,62182-00017-1,0,4380_7778208_1750901,4380_388 -4380_78118,290,4380_19389,Monaghan,62171-00015-1,0,4380_7778208_1750901,4380_388 -4380_78118,294,4380_19390,Monaghan,62180-00018-1,0,4380_7778208_1750901,4380_388 -4380_78118,295,4380_19391,Monaghan,62176-00019-1,0,4380_7778208_1750901,4380_388 -4380_78118,296,4380_19392,Monaghan,62178-00021-1,0,4380_7778208_1750901,4380_390 -4380_77971,285,4380_19398,Monaghan,62318-00009-1,0,4380_7778208_1820901,4380_391 -4380_77971,286,4380_19399,Monaghan,62322-00010-1,0,4380_7778208_1820901,4380_391 -4380_77946,297,4380_194,Dundalk,50246-00008-1,0,4380_7778208_1000910,4380_2 -4380_77971,288,4380_19400,Monaghan,62320-00011-1,0,4380_7778208_1820901,4380_391 -4380_77971,287,4380_19401,Monaghan,62316-00012-1,0,4380_7778208_1820901,4380_391 -4380_77971,289,4380_19402,Monaghan,62314-00014-1,0,4380_7778208_1820901,4380_391 -4380_77971,292,4380_19403,Monaghan,62323-00016-1,0,4380_7778208_1820901,4380_391 -4380_77971,293,4380_19404,Monaghan,62321-00017-1,0,4380_7778208_1820901,4380_391 -4380_77971,290,4380_19405,Monaghan,62319-00015-1,0,4380_7778208_1820901,4380_391 -4380_77971,294,4380_19406,Monaghan,62317-00018-1,0,4380_7778208_1820901,4380_391 -4380_77971,295,4380_19407,Monaghan,62315-00019-1,0,4380_7778208_1820901,4380_391 -4380_77971,285,4380_19415,Monaghan,62407-00009-1,0,4380_7778208_1820902,4380_391 -4380_77971,286,4380_19416,Monaghan,62409-00010-1,0,4380_7778208_1820902,4380_391 -4380_77971,297,4380_19417,Monaghan,62326-00008-1,0,4380_7778208_1820901,4380_392 -4380_77971,288,4380_19418,Monaghan,62414-00011-1,0,4380_7778208_1820902,4380_391 -4380_77971,287,4380_19419,Monaghan,62403-00012-1,0,4380_7778208_1820902,4380_391 -4380_77971,291,4380_19420,Monaghan,62324-00013-1,0,4380_7778208_1820901,4380_393 -4380_77971,289,4380_19421,Monaghan,62405-00014-1,0,4380_7778208_1820902,4380_391 -4380_77971,292,4380_19422,Monaghan,62410-00016-1,0,4380_7778208_1820902,4380_391 -4380_77971,293,4380_19423,Monaghan,62415-00017-1,0,4380_7778208_1820902,4380_391 -4380_77971,290,4380_19424,Monaghan,62408-00015-1,0,4380_7778208_1820902,4380_391 -4380_77971,294,4380_19425,Monaghan,62404-00018-1,0,4380_7778208_1820902,4380_391 -4380_77971,295,4380_19426,Monaghan,62406-00019-1,0,4380_7778208_1820902,4380_391 -4380_77971,296,4380_19427,Monaghan,62325-00021-1,0,4380_7778208_1820901,4380_393 -4380_77971,285,4380_19435,Monaghan,62341-00009-1,0,4380_7778208_1820901,4380_391 -4380_77971,286,4380_19436,Monaghan,62337-00010-1,0,4380_7778208_1820901,4380_391 -4380_77971,297,4380_19437,Monaghan,62420-00008-1,0,4380_7778208_1820902,4380_392 -4380_77971,288,4380_19438,Monaghan,62339-00011-1,0,4380_7778208_1820901,4380_391 -4380_77971,287,4380_19439,Monaghan,62345-00012-1,0,4380_7778208_1820901,4380_391 -4380_77947,285,4380_1944,Drop Off,51502-00009-1,0,4380_7778208_1011110,4380_22 -4380_77971,291,4380_19440,Monaghan,62425-00013-1,0,4380_7778208_1820902,4380_393 -4380_77971,289,4380_19441,Monaghan,62343-00014-1,0,4380_7778208_1820901,4380_391 -4380_77971,292,4380_19442,Monaghan,62338-00016-1,0,4380_7778208_1820901,4380_391 -4380_77971,293,4380_19443,Monaghan,62340-00017-1,0,4380_7778208_1820901,4380_391 -4380_77971,290,4380_19444,Monaghan,62342-00015-1,0,4380_7778208_1820901,4380_391 -4380_77971,294,4380_19445,Monaghan,62346-00018-1,0,4380_7778208_1820901,4380_391 -4380_77971,295,4380_19446,Monaghan,62344-00019-1,0,4380_7778208_1820901,4380_391 -4380_77971,296,4380_19447,Monaghan,62426-00021-1,0,4380_7778208_1820902,4380_393 -4380_77947,286,4380_1945,Drop Off,51498-00010-1,0,4380_7778208_1011110,4380_22 -4380_77971,285,4380_19453,Monaghan,62433-00009-1,0,4380_7778208_1820902,4380_391 -4380_77971,286,4380_19454,Monaghan,62431-00010-1,0,4380_7778208_1820902,4380_391 -4380_77971,288,4380_19455,Monaghan,62435-00011-1,0,4380_7778208_1820902,4380_391 -4380_77971,287,4380_19456,Monaghan,62429-00012-1,0,4380_7778208_1820902,4380_391 -4380_77971,289,4380_19457,Monaghan,62437-00014-1,0,4380_7778208_1820902,4380_391 -4380_77971,292,4380_19458,Monaghan,62432-00016-1,0,4380_7778208_1820902,4380_391 -4380_77971,293,4380_19459,Monaghan,62436-00017-1,0,4380_7778208_1820902,4380_391 -4380_77947,288,4380_1946,Drop Off,51500-00011-1,0,4380_7778208_1011110,4380_22 -4380_77971,290,4380_19460,Monaghan,62434-00015-1,0,4380_7778208_1820902,4380_391 -4380_77971,294,4380_19461,Monaghan,62430-00018-1,0,4380_7778208_1820902,4380_391 -4380_77971,295,4380_19462,Monaghan,62438-00019-1,0,4380_7778208_1820902,4380_391 -4380_77947,287,4380_1947,Drop Off,51496-00012-1,0,4380_7778208_1011110,4380_22 -4380_77971,285,4380_19470,Monaghan,62366-00009-1,0,4380_7778208_1820901,4380_391 -4380_77971,286,4380_19471,Monaghan,62368-00010-1,0,4380_7778208_1820901,4380_391 -4380_77971,297,4380_19472,Monaghan,62372-00008-1,0,4380_7778208_1820901,4380_392 -4380_77971,288,4380_19473,Monaghan,62360-00011-1,0,4380_7778208_1820901,4380_391 -4380_77971,287,4380_19474,Monaghan,62370-00012-1,0,4380_7778208_1820901,4380_391 -4380_77971,291,4380_19475,Monaghan,62364-00013-1,0,4380_7778208_1820901,4380_393 -4380_77971,289,4380_19476,Monaghan,62362-00014-1,0,4380_7778208_1820901,4380_391 -4380_77971,292,4380_19477,Monaghan,62369-00016-1,0,4380_7778208_1820901,4380_391 -4380_77971,293,4380_19478,Monaghan,62361-00017-1,0,4380_7778208_1820901,4380_391 -4380_77971,290,4380_19479,Monaghan,62367-00015-1,0,4380_7778208_1820901,4380_391 -4380_77947,289,4380_1948,Drop Off,51494-00014-1,0,4380_7778208_1011110,4380_22 -4380_77971,294,4380_19480,Monaghan,62371-00018-1,0,4380_7778208_1820901,4380_391 -4380_77971,295,4380_19481,Monaghan,62363-00019-1,0,4380_7778208_1820901,4380_391 -4380_77971,296,4380_19482,Monaghan,62365-00021-1,0,4380_7778208_1820901,4380_393 -4380_77947,290,4380_1949,Drop Off,51503-00015-1,0,4380_7778208_1011110,4380_22 -4380_77971,285,4380_19490,Monaghan,62463-00009-1,0,4380_7778208_1820902,4380_391 -4380_77971,286,4380_19491,Monaghan,62460-00010-1,0,4380_7778208_1820902,4380_391 -4380_77971,297,4380_19492,Monaghan,62462-00008-1,0,4380_7778208_1820902,4380_392 -4380_77971,288,4380_19493,Monaghan,62458-00011-1,0,4380_7778208_1820902,4380_391 -4380_77971,287,4380_19494,Monaghan,62452-00012-1,0,4380_7778208_1820902,4380_391 -4380_77971,291,4380_19495,Monaghan,62456-00013-1,0,4380_7778208_1820902,4380_393 -4380_77971,289,4380_19496,Monaghan,62454-00014-1,0,4380_7778208_1820902,4380_391 -4380_77971,292,4380_19497,Monaghan,62461-00016-1,0,4380_7778208_1820902,4380_391 -4380_77971,293,4380_19498,Monaghan,62459-00017-1,0,4380_7778208_1820902,4380_391 -4380_77971,290,4380_19499,Monaghan,62464-00015-1,0,4380_7778208_1820902,4380_391 -4380_77946,287,4380_195,Dundalk,50425-00012-1,0,4380_7778208_1000914,4380_1 -4380_77947,292,4380_1950,Drop Off,51499-00016-1,0,4380_7778208_1011110,4380_22 -4380_77971,294,4380_19500,Monaghan,62453-00018-1,0,4380_7778208_1820902,4380_391 -4380_77971,295,4380_19501,Monaghan,62455-00019-1,0,4380_7778208_1820902,4380_391 -4380_77971,296,4380_19502,Monaghan,62457-00021-1,0,4380_7778208_1820902,4380_393 -4380_77971,285,4380_19508,Monaghan,62391-00009-1,0,4380_7778208_1820901,4380_391 -4380_77971,286,4380_19509,Monaghan,62383-00010-1,0,4380_7778208_1820901,4380_391 -4380_77947,293,4380_1951,Drop Off,51501-00017-1,0,4380_7778208_1011110,4380_22 -4380_77971,288,4380_19510,Monaghan,62389-00011-1,0,4380_7778208_1820901,4380_391 -4380_77971,287,4380_19511,Monaghan,62387-00012-1,0,4380_7778208_1820901,4380_391 -4380_77971,289,4380_19512,Monaghan,62385-00014-1,0,4380_7778208_1820901,4380_391 -4380_77971,292,4380_19513,Monaghan,62384-00016-1,0,4380_7778208_1820901,4380_391 -4380_77971,293,4380_19514,Monaghan,62390-00017-1,0,4380_7778208_1820901,4380_391 -4380_77971,290,4380_19515,Monaghan,62392-00015-1,0,4380_7778208_1820901,4380_391 -4380_77971,294,4380_19516,Monaghan,62388-00018-1,0,4380_7778208_1820901,4380_391 -4380_77971,295,4380_19517,Monaghan,62386-00019-1,0,4380_7778208_1820901,4380_391 -4380_77947,294,4380_1952,Drop Off,51497-00018-1,0,4380_7778208_1011110,4380_22 -4380_77971,285,4380_19523,Drogheda,62309-00009-1,1,4380_7778208_1820901,4380_394 -4380_77971,286,4380_19524,Drogheda,62307-00010-1,1,4380_7778208_1820901,4380_394 -4380_77971,288,4380_19525,Drogheda,62305-00011-1,1,4380_7778208_1820901,4380_394 -4380_77971,287,4380_19526,Drogheda,62303-00012-1,1,4380_7778208_1820901,4380_394 -4380_77971,289,4380_19527,Drogheda,62301-00014-1,1,4380_7778208_1820901,4380_394 -4380_77971,292,4380_19528,Drogheda,62308-00016-1,1,4380_7778208_1820901,4380_394 -4380_77971,293,4380_19529,Drogheda,62306-00017-1,1,4380_7778208_1820901,4380_394 -4380_77947,295,4380_1953,Drop Off,51495-00019-1,0,4380_7778208_1011110,4380_22 -4380_77971,290,4380_19530,Drogheda,62310-00015-1,1,4380_7778208_1820901,4380_394 -4380_77971,294,4380_19531,Drogheda,62304-00018-1,1,4380_7778208_1820901,4380_394 -4380_77971,295,4380_19532,Drogheda,62302-00019-1,1,4380_7778208_1820901,4380_394 -4380_77971,285,4380_19540,Drogheda,62401-00009-1,1,4380_7778208_1820902,4380_394 -4380_77971,286,4380_19541,Drogheda,62399-00010-1,1,4380_7778208_1820902,4380_394 -4380_77971,297,4380_19542,Drogheda,62311-00008-1,1,4380_7778208_1820901,4380_395 -4380_77971,288,4380_19543,Drogheda,62397-00011-1,1,4380_7778208_1820902,4380_394 -4380_77971,287,4380_19544,Drogheda,62395-00012-1,1,4380_7778208_1820902,4380_394 -4380_77971,291,4380_19545,Drogheda,62312-00013-1,1,4380_7778208_1820901,4380_396 -4380_77971,289,4380_19546,Drogheda,62393-00014-1,1,4380_7778208_1820902,4380_394 -4380_77971,292,4380_19547,Drogheda,62400-00016-1,1,4380_7778208_1820902,4380_394 -4380_77971,293,4380_19548,Drogheda,62398-00017-1,1,4380_7778208_1820902,4380_394 -4380_77971,290,4380_19549,Drogheda,62402-00015-1,1,4380_7778208_1820902,4380_394 -4380_77971,294,4380_19550,Drogheda,62396-00018-1,1,4380_7778208_1820902,4380_394 -4380_77971,295,4380_19551,Drogheda,62394-00019-1,1,4380_7778208_1820902,4380_394 -4380_77971,296,4380_19552,Drogheda,62313-00021-1,1,4380_7778208_1820901,4380_396 -4380_77971,285,4380_19560,Drogheda,62333-00009-1,1,4380_7778208_1820901,4380_394 -4380_77971,286,4380_19561,Drogheda,62329-00010-1,1,4380_7778208_1820901,4380_394 -4380_77971,297,4380_19562,Drogheda,62411-00008-1,1,4380_7778208_1820902,4380_395 -4380_77971,288,4380_19563,Drogheda,62335-00011-1,1,4380_7778208_1820901,4380_394 -4380_77971,287,4380_19564,Drogheda,62327-00012-1,1,4380_7778208_1820901,4380_394 -4380_77971,291,4380_19565,Drogheda,62412-00013-1,1,4380_7778208_1820902,4380_396 -4380_77971,289,4380_19566,Drogheda,62331-00014-1,1,4380_7778208_1820901,4380_394 -4380_77971,292,4380_19567,Drogheda,62330-00016-1,1,4380_7778208_1820901,4380_394 -4380_77971,293,4380_19568,Drogheda,62336-00017-1,1,4380_7778208_1820901,4380_394 -4380_77971,290,4380_19569,Drogheda,62334-00015-1,1,4380_7778208_1820901,4380_394 -4380_77971,294,4380_19570,Drogheda,62328-00018-1,1,4380_7778208_1820901,4380_394 -4380_77971,295,4380_19571,Drogheda,62332-00019-1,1,4380_7778208_1820901,4380_394 -4380_77971,296,4380_19572,Drogheda,62413-00021-1,1,4380_7778208_1820902,4380_396 -4380_77971,285,4380_19578,Drogheda,62416-00009-1,1,4380_7778208_1820902,4380_394 -4380_77971,286,4380_19579,Drogheda,62418-00010-1,1,4380_7778208_1820902,4380_394 -4380_77971,288,4380_19580,Drogheda,62421-00011-1,1,4380_7778208_1820902,4380_394 -4380_77971,287,4380_19581,Drogheda,62423-00012-1,1,4380_7778208_1820902,4380_394 -4380_77971,289,4380_19582,Drogheda,62427-00014-1,1,4380_7778208_1820902,4380_394 -4380_77971,292,4380_19583,Drogheda,62419-00016-1,1,4380_7778208_1820902,4380_394 -4380_77971,293,4380_19584,Drogheda,62422-00017-1,1,4380_7778208_1820902,4380_394 -4380_77971,290,4380_19585,Drogheda,62417-00015-1,1,4380_7778208_1820902,4380_394 -4380_77971,294,4380_19586,Drogheda,62424-00018-1,1,4380_7778208_1820902,4380_394 -4380_77971,295,4380_19587,Drogheda,62428-00019-1,1,4380_7778208_1820902,4380_394 -4380_77947,285,4380_1959,Drop Off,50986-00009-1,0,4380_7778208_1011104,4380_22 -4380_77971,285,4380_19595,Drogheda,62356-00009-1,1,4380_7778208_1820901,4380_394 -4380_77971,286,4380_19596,Drogheda,62351-00010-1,1,4380_7778208_1820901,4380_394 -4380_77971,297,4380_19597,Drogheda,62355-00008-1,1,4380_7778208_1820901,4380_395 -4380_77971,288,4380_19598,Drogheda,62353-00011-1,1,4380_7778208_1820901,4380_394 -4380_77971,287,4380_19599,Drogheda,62347-00012-1,1,4380_7778208_1820901,4380_394 -4380_77946,288,4380_196,Dundalk,50419-00011-1,0,4380_7778208_1000914,4380_1 -4380_77947,286,4380_1960,Drop Off,50988-00010-1,0,4380_7778208_1011104,4380_22 -4380_77971,291,4380_19600,Drogheda,62358-00013-1,1,4380_7778208_1820901,4380_396 -4380_77971,289,4380_19601,Drogheda,62349-00014-1,1,4380_7778208_1820901,4380_394 -4380_77971,292,4380_19602,Drogheda,62352-00016-1,1,4380_7778208_1820901,4380_394 -4380_77971,293,4380_19603,Drogheda,62354-00017-1,1,4380_7778208_1820901,4380_394 -4380_77971,290,4380_19604,Drogheda,62357-00015-1,1,4380_7778208_1820901,4380_394 -4380_77971,294,4380_19605,Drogheda,62348-00018-1,1,4380_7778208_1820901,4380_394 -4380_77971,295,4380_19606,Drogheda,62350-00019-1,1,4380_7778208_1820901,4380_394 -4380_77971,296,4380_19607,Drogheda,62359-00021-1,1,4380_7778208_1820901,4380_396 -4380_77947,288,4380_1961,Drop Off,50984-00011-1,0,4380_7778208_1011104,4380_22 -4380_77971,285,4380_19615,Drogheda,62450-00009-1,1,4380_7778208_1820902,4380_394 -4380_77971,286,4380_19616,Drogheda,62445-00010-1,1,4380_7778208_1820902,4380_394 -4380_77971,297,4380_19617,Drogheda,62447-00008-1,1,4380_7778208_1820902,4380_395 -4380_77971,288,4380_19618,Drogheda,62443-00011-1,1,4380_7778208_1820902,4380_394 -4380_77971,287,4380_19619,Drogheda,62448-00012-1,1,4380_7778208_1820902,4380_394 -4380_77947,287,4380_1962,Drop Off,50992-00012-1,0,4380_7778208_1011104,4380_22 -4380_77971,291,4380_19620,Drogheda,62441-00013-1,1,4380_7778208_1820902,4380_396 -4380_77971,289,4380_19621,Drogheda,62439-00014-1,1,4380_7778208_1820902,4380_394 -4380_77971,292,4380_19622,Drogheda,62446-00016-1,1,4380_7778208_1820902,4380_394 -4380_77971,293,4380_19623,Drogheda,62444-00017-1,1,4380_7778208_1820902,4380_394 -4380_77971,290,4380_19624,Drogheda,62451-00015-1,1,4380_7778208_1820902,4380_394 -4380_77971,294,4380_19625,Drogheda,62449-00018-1,1,4380_7778208_1820902,4380_394 -4380_77971,295,4380_19626,Drogheda,62440-00019-1,1,4380_7778208_1820902,4380_394 -4380_77971,296,4380_19627,Drogheda,62442-00021-1,1,4380_7778208_1820902,4380_396 -4380_77947,289,4380_1963,Drop Off,50990-00014-1,0,4380_7778208_1011104,4380_22 -4380_77971,285,4380_19633,Drogheda,62379-00009-1,1,4380_7778208_1820901,4380_394 -4380_77971,286,4380_19634,Drogheda,62381-00010-1,1,4380_7778208_1820901,4380_394 -4380_77971,288,4380_19635,Drogheda,62377-00011-1,1,4380_7778208_1820901,4380_394 -4380_77971,287,4380_19636,Drogheda,62373-00012-1,1,4380_7778208_1820901,4380_394 -4380_77971,289,4380_19637,Drogheda,62375-00014-1,1,4380_7778208_1820901,4380_394 -4380_77971,292,4380_19638,Drogheda,62382-00016-1,1,4380_7778208_1820901,4380_394 -4380_77971,293,4380_19639,Drogheda,62378-00017-1,1,4380_7778208_1820901,4380_394 -4380_77947,290,4380_1964,Drop Off,50987-00015-1,0,4380_7778208_1011104,4380_22 -4380_77971,290,4380_19640,Drogheda,62380-00015-1,1,4380_7778208_1820901,4380_394 -4380_77971,294,4380_19641,Drogheda,62374-00018-1,1,4380_7778208_1820901,4380_394 -4380_77971,295,4380_19642,Drogheda,62376-00019-1,1,4380_7778208_1820901,4380_394 -4380_78119,285,4380_19649,Ardee,62471-00009-1,0,4380_7778208_1821101,4380_397 -4380_77947,292,4380_1965,Drop Off,50989-00016-1,0,4380_7778208_1011104,4380_22 -4380_78119,286,4380_19650,Ardee,62465-00010-1,0,4380_7778208_1821101,4380_397 -4380_78119,288,4380_19651,Ardee,62469-00011-1,0,4380_7778208_1821101,4380_397 -4380_78119,287,4380_19652,Ardee,62473-00012-1,0,4380_7778208_1821101,4380_397 -4380_78119,291,4380_19653,Ardee,62585-00013-1,0,4380_7778208_1821102,4380_399 -4380_78119,289,4380_19654,Ardee,62467-00014-1,0,4380_7778208_1821101,4380_397 -4380_78119,292,4380_19655,Ardee,62466-00016-1,0,4380_7778208_1821101,4380_397 -4380_78119,293,4380_19656,Ardee,62470-00017-1,0,4380_7778208_1821101,4380_397 -4380_78119,290,4380_19657,Ardee,62472-00015-1,0,4380_7778208_1821101,4380_397 -4380_78119,294,4380_19658,Ardee,62474-00018-1,0,4380_7778208_1821101,4380_397 -4380_78119,295,4380_19659,Ardee,62468-00019-1,0,4380_7778208_1821101,4380_397 -4380_77947,293,4380_1966,Drop Off,50985-00017-1,0,4380_7778208_1011104,4380_22 -4380_78119,296,4380_19660,Ardee,62586-00021-1,0,4380_7778208_1821102,4380_399 -4380_78119,285,4380_19667,Ardee,62493-00009-1,0,4380_7778208_1821101,4380_398 -4380_78119,286,4380_19668,Ardee,62491-00010-1,0,4380_7778208_1821101,4380_398 -4380_78119,288,4380_19669,Ardee,62485-00011-1,0,4380_7778208_1821101,4380_398 -4380_77947,294,4380_1967,Drop Off,50993-00018-1,0,4380_7778208_1011104,4380_22 -4380_78119,287,4380_19670,Ardee,62489-00012-1,0,4380_7778208_1821101,4380_398 -4380_78119,291,4380_19671,Ardee,62589-00013-1,0,4380_7778208_1821102,4380_400 -4380_78119,289,4380_19672,Ardee,62487-00014-1,0,4380_7778208_1821101,4380_398 -4380_78119,292,4380_19673,Ardee,62492-00016-1,0,4380_7778208_1821101,4380_398 -4380_78119,293,4380_19674,Ardee,62486-00017-1,0,4380_7778208_1821101,4380_398 -4380_78119,290,4380_19675,Ardee,62494-00015-1,0,4380_7778208_1821101,4380_398 -4380_78119,294,4380_19676,Ardee,62490-00018-1,0,4380_7778208_1821101,4380_398 -4380_78119,295,4380_19677,Ardee,62488-00019-1,0,4380_7778208_1821101,4380_398 -4380_78119,296,4380_19678,Ardee,62590-00021-1,0,4380_7778208_1821102,4380_400 -4380_77947,295,4380_1968,Drop Off,50991-00019-1,0,4380_7778208_1011104,4380_22 -4380_78119,285,4380_19685,Ardee,62511-00009-1,0,4380_7778208_1821101,4380_398 -4380_78119,286,4380_19686,Ardee,62513-00010-1,0,4380_7778208_1821101,4380_398 -4380_78119,288,4380_19687,Ardee,62509-00011-1,0,4380_7778208_1821101,4380_398 -4380_78119,287,4380_19688,Ardee,62505-00012-1,0,4380_7778208_1821101,4380_398 -4380_78119,291,4380_19689,Ardee,62593-00013-1,0,4380_7778208_1821102,4380_400 -4380_78119,289,4380_19690,Ardee,62507-00014-1,0,4380_7778208_1821101,4380_398 -4380_78119,292,4380_19691,Ardee,62514-00016-1,0,4380_7778208_1821101,4380_398 -4380_78119,293,4380_19692,Ardee,62510-00017-1,0,4380_7778208_1821101,4380_398 -4380_78119,290,4380_19693,Ardee,62512-00015-1,0,4380_7778208_1821101,4380_398 -4380_78119,294,4380_19694,Ardee,62506-00018-1,0,4380_7778208_1821101,4380_398 -4380_78119,295,4380_19695,Ardee,62508-00019-1,0,4380_7778208_1821101,4380_398 -4380_78119,296,4380_19696,Ardee,62594-00021-1,0,4380_7778208_1821102,4380_400 -4380_77946,289,4380_197,Dundalk,50423-00014-1,0,4380_7778208_1000914,4380_1 -4380_78119,285,4380_19703,Ardee,62527-00009-1,0,4380_7778208_1821101,4380_398 -4380_78119,286,4380_19704,Ardee,62533-00010-1,0,4380_7778208_1821101,4380_398 -4380_78119,288,4380_19705,Ardee,62529-00011-1,0,4380_7778208_1821101,4380_398 -4380_78119,287,4380_19706,Ardee,62525-00012-1,0,4380_7778208_1821101,4380_398 -4380_78119,291,4380_19707,Ardee,62597-00013-1,0,4380_7778208_1821102,4380_400 -4380_78119,289,4380_19708,Ardee,62531-00014-1,0,4380_7778208_1821101,4380_398 -4380_78119,292,4380_19709,Ardee,62534-00016-1,0,4380_7778208_1821101,4380_398 -4380_77947,297,4380_1971,Drop Off,51077-00008-1,0,4380_7778208_1011105,4380_22 -4380_78119,293,4380_19710,Ardee,62530-00017-1,0,4380_7778208_1821101,4380_398 -4380_78119,290,4380_19711,Ardee,62528-00015-1,0,4380_7778208_1821101,4380_398 -4380_78119,294,4380_19712,Ardee,62526-00018-1,0,4380_7778208_1821101,4380_398 -4380_78119,295,4380_19713,Ardee,62532-00019-1,0,4380_7778208_1821101,4380_398 -4380_78119,296,4380_19714,Ardee,62598-00021-1,0,4380_7778208_1821102,4380_400 -4380_77947,291,4380_1972,Drop Off,51178-00013-1,0,4380_7778208_1011106,4380_24 -4380_78119,285,4380_19721,Ardee,62553-00009-1,0,4380_7778208_1821101,4380_398 -4380_78119,286,4380_19722,Ardee,62549-00010-1,0,4380_7778208_1821101,4380_398 -4380_78119,288,4380_19723,Ardee,62545-00011-1,0,4380_7778208_1821101,4380_398 -4380_78119,287,4380_19724,Ardee,62551-00012-1,0,4380_7778208_1821101,4380_398 -4380_78119,291,4380_19725,Ardee,62601-00013-1,0,4380_7778208_1821102,4380_400 -4380_78119,289,4380_19726,Ardee,62547-00014-1,0,4380_7778208_1821101,4380_398 -4380_78119,292,4380_19727,Ardee,62550-00016-1,0,4380_7778208_1821101,4380_398 -4380_78119,293,4380_19728,Ardee,62546-00017-1,0,4380_7778208_1821101,4380_398 -4380_78119,290,4380_19729,Ardee,62554-00015-1,0,4380_7778208_1821101,4380_398 -4380_77947,296,4380_1973,Drop Off,51179-00021-1,0,4380_7778208_1011106,4380_24 -4380_78119,294,4380_19730,Ardee,62552-00018-1,0,4380_7778208_1821101,4380_398 -4380_78119,295,4380_19731,Ardee,62548-00019-1,0,4380_7778208_1821101,4380_398 -4380_78119,296,4380_19732,Ardee,62602-00021-1,0,4380_7778208_1821102,4380_400 -4380_78119,285,4380_19739,Ardee,62567-00009-1,0,4380_7778208_1821101,4380_398 -4380_78119,286,4380_19740,Ardee,62565-00010-1,0,4380_7778208_1821101,4380_398 -4380_78119,288,4380_19741,Ardee,62569-00011-1,0,4380_7778208_1821101,4380_398 -4380_78119,287,4380_19742,Ardee,62573-00012-1,0,4380_7778208_1821101,4380_398 -4380_78119,291,4380_19743,Ardee,62605-00013-1,0,4380_7778208_1821102,4380_400 -4380_78119,289,4380_19744,Ardee,62571-00014-1,0,4380_7778208_1821101,4380_398 -4380_78119,292,4380_19745,Ardee,62566-00016-1,0,4380_7778208_1821101,4380_398 -4380_78119,293,4380_19746,Ardee,62570-00017-1,0,4380_7778208_1821101,4380_398 -4380_78119,290,4380_19747,Ardee,62568-00015-1,0,4380_7778208_1821101,4380_398 -4380_78119,294,4380_19748,Ardee,62574-00018-1,0,4380_7778208_1821101,4380_398 -4380_78119,295,4380_19749,Ardee,62572-00019-1,0,4380_7778208_1821101,4380_398 -4380_78119,296,4380_19750,Ardee,62606-00021-1,0,4380_7778208_1821102,4380_400 -4380_78119,285,4380_19757,Drogheda,62479-00009-1,1,4380_7778208_1821101,4380_401 -4380_78119,286,4380_19758,Drogheda,62481-00010-1,1,4380_7778208_1821101,4380_401 -4380_78119,288,4380_19759,Drogheda,62477-00011-1,1,4380_7778208_1821101,4380_401 -4380_78119,287,4380_19760,Drogheda,62483-00012-1,1,4380_7778208_1821101,4380_401 -4380_78119,291,4380_19761,Drogheda,62587-00013-1,1,4380_7778208_1821102,4380_403 -4380_78119,289,4380_19762,Drogheda,62475-00014-1,1,4380_7778208_1821101,4380_401 -4380_78119,292,4380_19763,Drogheda,62482-00016-1,1,4380_7778208_1821101,4380_401 -4380_78119,293,4380_19764,Drogheda,62478-00017-1,1,4380_7778208_1821101,4380_401 -4380_78119,290,4380_19765,Drogheda,62480-00015-1,1,4380_7778208_1821101,4380_401 -4380_78119,294,4380_19766,Drogheda,62484-00018-1,1,4380_7778208_1821101,4380_401 -4380_78119,295,4380_19767,Drogheda,62476-00019-1,1,4380_7778208_1821101,4380_401 -4380_78119,296,4380_19768,Drogheda,62588-00021-1,1,4380_7778208_1821102,4380_403 -4380_78119,285,4380_19775,Drogheda,62499-00009-1,1,4380_7778208_1821101,4380_401 -4380_78119,286,4380_19776,Drogheda,62503-00010-1,1,4380_7778208_1821101,4380_401 -4380_78119,288,4380_19777,Drogheda,62495-00011-1,1,4380_7778208_1821101,4380_401 -4380_78119,287,4380_19778,Drogheda,62497-00012-1,1,4380_7778208_1821101,4380_401 -4380_78119,291,4380_19779,Drogheda,62591-00013-1,1,4380_7778208_1821102,4380_403 -4380_78119,289,4380_19780,Drogheda,62501-00014-1,1,4380_7778208_1821101,4380_401 -4380_78119,292,4380_19781,Drogheda,62504-00016-1,1,4380_7778208_1821101,4380_401 -4380_78119,293,4380_19782,Drogheda,62496-00017-1,1,4380_7778208_1821101,4380_401 -4380_78119,290,4380_19783,Drogheda,62500-00015-1,1,4380_7778208_1821101,4380_401 -4380_78119,294,4380_19784,Drogheda,62498-00018-1,1,4380_7778208_1821101,4380_401 -4380_78119,295,4380_19785,Drogheda,62502-00019-1,1,4380_7778208_1821101,4380_401 -4380_78119,296,4380_19786,Drogheda,62592-00021-1,1,4380_7778208_1821102,4380_403 -4380_77947,285,4380_1979,Drop Off,50873-00009-1,0,4380_7778208_1011103,4380_22 -4380_78119,285,4380_19793,Drogheda,62523-00009-1,1,4380_7778208_1821101,4380_401 -4380_78119,286,4380_19794,Drogheda,62521-00010-1,1,4380_7778208_1821101,4380_401 -4380_78119,288,4380_19795,Drogheda,62517-00011-1,1,4380_7778208_1821101,4380_401 -4380_78119,287,4380_19796,Drogheda,62515-00012-1,1,4380_7778208_1821101,4380_401 -4380_78119,291,4380_19797,Drogheda,62595-00013-1,1,4380_7778208_1821102,4380_403 -4380_78119,289,4380_19798,Drogheda,62519-00014-1,1,4380_7778208_1821101,4380_401 -4380_78119,292,4380_19799,Drogheda,62522-00016-1,1,4380_7778208_1821101,4380_401 -4380_77946,290,4380_198,Dundalk,50418-00015-1,0,4380_7778208_1000914,4380_1 -4380_77947,286,4380_1980,Drop Off,50869-00010-1,0,4380_7778208_1011103,4380_22 -4380_78119,293,4380_19800,Drogheda,62518-00017-1,1,4380_7778208_1821101,4380_401 -4380_78119,290,4380_19801,Drogheda,62524-00015-1,1,4380_7778208_1821101,4380_401 -4380_78119,294,4380_19802,Drogheda,62516-00018-1,1,4380_7778208_1821101,4380_401 -4380_78119,295,4380_19803,Drogheda,62520-00019-1,1,4380_7778208_1821101,4380_401 -4380_78119,296,4380_19804,Drogheda,62596-00021-1,1,4380_7778208_1821102,4380_403 -4380_77947,288,4380_1981,Drop Off,50867-00011-1,0,4380_7778208_1011103,4380_22 -4380_78119,285,4380_19811,Drogheda,62535-00009-1,1,4380_7778208_1821101,4380_401 -4380_78119,286,4380_19812,Drogheda,62541-00010-1,1,4380_7778208_1821101,4380_401 -4380_78119,288,4380_19813,Drogheda,62543-00011-1,1,4380_7778208_1821101,4380_401 -4380_78119,287,4380_19814,Drogheda,62537-00012-1,1,4380_7778208_1821101,4380_401 -4380_78119,291,4380_19815,Drogheda,62599-00013-1,1,4380_7778208_1821102,4380_403 -4380_78119,289,4380_19816,Drogheda,62539-00014-1,1,4380_7778208_1821101,4380_401 -4380_78119,292,4380_19817,Drogheda,62542-00016-1,1,4380_7778208_1821101,4380_401 -4380_78119,293,4380_19818,Drogheda,62544-00017-1,1,4380_7778208_1821101,4380_401 -4380_78119,290,4380_19819,Drogheda,62536-00015-1,1,4380_7778208_1821101,4380_401 -4380_77947,287,4380_1982,Drop Off,50871-00012-1,0,4380_7778208_1011103,4380_22 -4380_78119,294,4380_19820,Drogheda,62538-00018-1,1,4380_7778208_1821101,4380_401 -4380_78119,295,4380_19821,Drogheda,62540-00019-1,1,4380_7778208_1821101,4380_401 -4380_78119,296,4380_19822,Drogheda,62600-00021-1,1,4380_7778208_1821102,4380_403 -4380_78119,285,4380_19829,Drogheda,62559-00009-1,1,4380_7778208_1821101,4380_401 -4380_77947,289,4380_1983,Drop Off,50865-00014-1,0,4380_7778208_1011103,4380_22 -4380_78119,286,4380_19830,Drogheda,62557-00010-1,1,4380_7778208_1821101,4380_401 -4380_78119,288,4380_19831,Drogheda,62561-00011-1,1,4380_7778208_1821101,4380_401 -4380_78119,287,4380_19832,Drogheda,62555-00012-1,1,4380_7778208_1821101,4380_401 -4380_78119,291,4380_19833,Drogheda,62603-00013-1,1,4380_7778208_1821102,4380_403 -4380_78119,289,4380_19834,Drogheda,62563-00014-1,1,4380_7778208_1821101,4380_401 -4380_78119,292,4380_19835,Drogheda,62558-00016-1,1,4380_7778208_1821101,4380_401 -4380_78119,293,4380_19836,Drogheda,62562-00017-1,1,4380_7778208_1821101,4380_401 -4380_78119,290,4380_19837,Drogheda,62560-00015-1,1,4380_7778208_1821101,4380_401 -4380_78119,294,4380_19838,Drogheda,62556-00018-1,1,4380_7778208_1821101,4380_401 -4380_78119,295,4380_19839,Drogheda,62564-00019-1,1,4380_7778208_1821101,4380_401 -4380_77947,290,4380_1984,Drop Off,50874-00015-1,0,4380_7778208_1011103,4380_22 -4380_78119,296,4380_19840,Drogheda,62604-00021-1,1,4380_7778208_1821102,4380_403 -4380_78119,285,4380_19847,Drogheda,62575-00009-1,1,4380_7778208_1821101,4380_402 -4380_78119,286,4380_19848,Drogheda,62583-00010-1,1,4380_7778208_1821101,4380_402 -4380_78119,288,4380_19849,Drogheda,62577-00011-1,1,4380_7778208_1821101,4380_402 -4380_77947,292,4380_1985,Drop Off,50870-00016-1,0,4380_7778208_1011103,4380_22 -4380_78119,287,4380_19850,Drogheda,62579-00012-1,1,4380_7778208_1821101,4380_402 -4380_78119,291,4380_19851,Drogheda,62607-00013-1,1,4380_7778208_1821102,4380_404 -4380_78119,289,4380_19852,Drogheda,62581-00014-1,1,4380_7778208_1821101,4380_402 -4380_78119,292,4380_19853,Drogheda,62584-00016-1,1,4380_7778208_1821101,4380_402 -4380_78119,293,4380_19854,Drogheda,62578-00017-1,1,4380_7778208_1821101,4380_402 -4380_78119,290,4380_19855,Drogheda,62576-00015-1,1,4380_7778208_1821101,4380_402 -4380_78119,294,4380_19856,Drogheda,62580-00018-1,1,4380_7778208_1821101,4380_402 -4380_78119,295,4380_19857,Drogheda,62582-00019-1,1,4380_7778208_1821101,4380_402 -4380_78119,296,4380_19858,Drogheda,62608-00021-1,1,4380_7778208_1821102,4380_404 -4380_77972,285,4380_19859,Virginia,13411-00009-1,0,4380_7778208_1870101,4380_409 -4380_77947,293,4380_1986,Drop Off,50868-00017-1,0,4380_7778208_1011103,4380_22 -4380_77972,286,4380_19860,Virginia,13420-00010-1,0,4380_7778208_1870101,4380_409 -4380_77972,297,4380_19861,Virginia,13458-00008-1,0,4380_7778208_1870101,4380_409 -4380_77972,288,4380_19862,Virginia,13429-00011-1,0,4380_7778208_1870101,4380_409 -4380_77972,287,4380_19863,Virginia,13438-00012-1,0,4380_7778208_1870101,4380_409 -4380_77972,289,4380_19864,Virginia,13402-00014-1,0,4380_7778208_1870101,4380_409 -4380_77972,291,4380_19865,Virginia,5421-00013-1,0,4380_7778208_1090103,4380_409 -4380_77972,292,4380_19866,Virginia,62612-00016-1,0,4380_7778208_1870101,4380_409 -4380_77972,293,4380_19867,Virginia,62611-00017-1,0,4380_7778208_1870101,4380_409 -4380_77972,290,4380_19868,Virginia,62610-00015-1,0,4380_7778208_1870101,4380_409 -4380_77972,294,4380_19869,Virginia,62613-00018-1,0,4380_7778208_1870101,4380_409 -4380_77947,294,4380_1987,Drop Off,50872-00018-1,0,4380_7778208_1011103,4380_22 -4380_77972,295,4380_19870,Virginia,62609-00019-1,0,4380_7778208_1870101,4380_409 -4380_77972,296,4380_19871,Virginia,54752-00021-1,0,4380_7778208_1090103,4380_409 -4380_77972,285,4380_19872,Virginia,13413-00009-1,0,4380_7778208_1870101,4380_410 -4380_77972,286,4380_19873,Virginia,13422-00010-1,0,4380_7778208_1870101,4380_410 -4380_77972,297,4380_19874,Virginia,13460-00008-1,0,4380_7778208_1870101,4380_410 -4380_77972,288,4380_19875,Virginia,13431-00011-1,0,4380_7778208_1870101,4380_410 -4380_77972,287,4380_19876,Virginia,13440-00012-1,0,4380_7778208_1870101,4380_410 -4380_77972,291,4380_19877,Virginia,13449-00013-1,0,4380_7778208_1870101,4380_410 -4380_77972,289,4380_19878,Virginia,13404-00014-1,0,4380_7778208_1870101,4380_410 -4380_77972,292,4380_19879,Virginia,62620-00016-1,0,4380_7778208_1870101,4380_410 -4380_77947,295,4380_1988,Drop Off,50866-00019-1,0,4380_7778208_1011103,4380_22 -4380_77972,293,4380_19880,Virginia,62619-00017-1,0,4380_7778208_1870101,4380_410 -4380_77972,290,4380_19881,Virginia,62624-00015-1,0,4380_7778208_1870101,4380_410 -4380_77972,294,4380_19882,Virginia,62621-00018-1,0,4380_7778208_1870101,4380_410 -4380_77972,295,4380_19883,Virginia,62622-00019-1,0,4380_7778208_1870101,4380_410 -4380_77972,296,4380_19884,Virginia,62623-00021-1,0,4380_7778208_1870101,4380_410 -4380_77972,285,4380_19897,Virginia,13415-00009-1,0,4380_7778208_1870101,4380_409 -4380_77972,286,4380_19898,Virginia,13424-00010-1,0,4380_7778208_1870101,4380_409 -4380_77972,297,4380_19899,Virginia,13462-00008-1,0,4380_7778208_1870101,4380_409 -4380_77946,291,4380_199,Dundalk,50263-00013-1,0,4380_7778208_1000911,4380_5 -4380_77972,288,4380_19900,Virginia,13433-00011-1,0,4380_7778208_1870101,4380_409 -4380_77972,287,4380_19901,Virginia,13442-00012-1,0,4380_7778208_1870101,4380_409 -4380_77972,291,4380_19902,Virginia,13451-00013-1,0,4380_7778208_1870101,4380_409 -4380_77972,289,4380_19903,Virginia,13406-00014-1,0,4380_7778208_1870101,4380_409 -4380_77972,292,4380_19904,Virginia,62634-00016-1,0,4380_7778208_1870101,4380_409 -4380_77972,293,4380_19905,Virginia,62635-00017-1,0,4380_7778208_1870101,4380_409 -4380_77972,290,4380_19906,Virginia,62632-00015-1,0,4380_7778208_1870101,4380_409 -4380_77972,294,4380_19907,Virginia,62636-00018-1,0,4380_7778208_1870101,4380_409 -4380_77972,295,4380_19908,Virginia,62633-00019-1,0,4380_7778208_1870101,4380_409 -4380_77972,296,4380_19909,Virginia,62631-00021-1,0,4380_7778208_1870101,4380_409 -4380_77947,297,4380_1991,Drop Off,51408-00008-1,0,4380_7778208_1011109,4380_22 -4380_77972,285,4380_19910,Virginia,5163-00009-1,0,4380_7778208_1080101,4380_409 -4380_77972,286,4380_19911,Virginia,5176-00010-1,0,4380_7778208_1080101,4380_409 -4380_77972,297,4380_19912,Virginia,13464-00008-1,0,4380_7778208_1870101,4380_409 -4380_77972,288,4380_19913,Virginia,5184-00011-1,0,4380_7778208_1080101,4380_409 -4380_77972,287,4380_19914,Virginia,5202-00012-1,0,4380_7778208_1080101,4380_409 -4380_77972,291,4380_19915,Virginia,13453-00013-1,0,4380_7778208_1870101,4380_409 -4380_77972,289,4380_19916,Virginia,5145-00014-1,0,4380_7778208_1080101,4380_409 -4380_77972,290,4380_19917,Virginia,54620-00015-1,0,4380_7778208_1080101,4380_409 -4380_77972,292,4380_19918,Virginia,54619-00016-1,0,4380_7778208_1080101,4380_409 -4380_77972,293,4380_19919,Virginia,54621-00017-1,0,4380_7778208_1080101,4380_409 -4380_77947,291,4380_1992,Drop Off,51356-00013-1,0,4380_7778208_1011108,4380_24 -4380_77972,294,4380_19920,Virginia,54622-00018-1,0,4380_7778208_1080101,4380_409 -4380_77972,295,4380_19921,Virginia,54623-00019-1,0,4380_7778208_1080101,4380_409 -4380_77972,296,4380_19922,Virginia,62643-00021-1,0,4380_7778208_1870101,4380_409 -4380_77972,285,4380_19929,Virginia,13535-00009-1,0,4380_7778208_18788802,4380_411 -4380_77947,296,4380_1993,Drop Off,51357-00021-1,0,4380_7778208_1011108,4380_24 -4380_77972,288,4380_19930,Virginia,13539-00011-1,0,4380_7778208_18788802,4380_411 -4380_77972,286,4380_19931,Virginia,13537-00010-1,0,4380_7778208_18788802,4380_411 -4380_77972,289,4380_19932,Virginia,13533-00014-1,0,4380_7778208_18788802,4380_411 -4380_77972,287,4380_19933,Virginia,13541-00012-1,0,4380_7778208_18788802,4380_411 -4380_77972,290,4380_19934,Virginia,114865-00015-1,0,4380_7778208_18788802,4380_411 -4380_77972,292,4380_19935,Virginia,114866-00016-1,0,4380_7778208_18788802,4380_411 -4380_77972,294,4380_19936,Virginia,114868-00018-1,0,4380_7778208_18788802,4380_411 -4380_77972,293,4380_19937,Virginia,114867-00017-1,0,4380_7778208_18788802,4380_411 -4380_77972,295,4380_19938,Virginia,114869-00019-1,0,4380_7778208_18788802,4380_411 -4380_77972,285,4380_19945,Virginia,13417-00009-1,0,4380_7778208_1870101,4380_410 -4380_77972,286,4380_19946,Virginia,13426-00010-1,0,4380_7778208_1870101,4380_410 -4380_77972,297,4380_19947,Virginia,13466-00008-1,0,4380_7778208_1870101,4380_410 -4380_77972,288,4380_19948,Virginia,13435-00011-1,0,4380_7778208_1870101,4380_410 -4380_77972,287,4380_19949,Virginia,13444-00012-1,0,4380_7778208_1870101,4380_410 -4380_77972,291,4380_19950,Virginia,13455-00013-1,0,4380_7778208_1870101,4380_410 -4380_77972,289,4380_19951,Virginia,13408-00014-1,0,4380_7778208_1870101,4380_410 -4380_77972,292,4380_19952,Virginia,62649-00016-1,0,4380_7778208_1870101,4380_410 -4380_77972,293,4380_19953,Virginia,62646-00017-1,0,4380_7778208_1870101,4380_410 -4380_77972,290,4380_19954,Virginia,62648-00015-1,0,4380_7778208_1870101,4380_410 -4380_77972,294,4380_19955,Virginia,62645-00018-1,0,4380_7778208_1870101,4380_410 -4380_77972,295,4380_19956,Virginia,62650-00019-1,0,4380_7778208_1870101,4380_410 -4380_77972,296,4380_19957,Virginia,62647-00021-1,0,4380_7778208_1870101,4380_410 -4380_77972,285,4380_19958,Virginia,13419-00009-1,0,4380_7778208_1870101,4380_409 -4380_77972,286,4380_19959,Virginia,13428-00010-1,0,4380_7778208_1870101,4380_409 -4380_77972,297,4380_19960,Virginia,13468-00008-1,0,4380_7778208_1870101,4380_409 -4380_77972,288,4380_19961,Virginia,13437-00011-1,0,4380_7778208_1870101,4380_409 -4380_77972,287,4380_19962,Virginia,13446-00012-1,0,4380_7778208_1870101,4380_409 -4380_77972,291,4380_19963,Virginia,13457-00013-1,0,4380_7778208_1870101,4380_409 -4380_77972,289,4380_19964,Virginia,13410-00014-1,0,4380_7778208_1870101,4380_409 -4380_77972,292,4380_19965,Virginia,62659-00016-1,0,4380_7778208_1870101,4380_409 -4380_77972,293,4380_19966,Virginia,62660-00017-1,0,4380_7778208_1870101,4380_409 -4380_77972,290,4380_19967,Virginia,62662-00015-1,0,4380_7778208_1870101,4380_409 -4380_77972,294,4380_19968,Virginia,62661-00018-1,0,4380_7778208_1870101,4380_409 -4380_77972,295,4380_19969,Virginia,62657-00019-1,0,4380_7778208_1870101,4380_409 -4380_77972,296,4380_19970,Virginia,62658-00021-1,0,4380_7778208_1870101,4380_409 -4380_77972,285,4380_19971,Kells,13412-00009-1,1,4380_7778208_1870101,4380_419 -4380_77972,286,4380_19972,Kells,13421-00010-1,1,4380_7778208_1870101,4380_419 -4380_77972,297,4380_19973,Kells,13459-00008-1,1,4380_7778208_1870101,4380_419 -4380_77972,288,4380_19974,Kells,13430-00011-1,1,4380_7778208_1870101,4380_419 -4380_77972,287,4380_19975,Kells,13439-00012-1,1,4380_7778208_1870101,4380_419 -4380_77972,289,4380_19976,Kells,13403-00014-1,1,4380_7778208_1870101,4380_419 -4380_77972,291,4380_19977,Kells,5422-00013-1,1,4380_7778208_1090103,4380_419 -4380_77972,292,4380_19978,Kells,62614-00016-1,1,4380_7778208_1870101,4380_419 -4380_77972,293,4380_19979,Kells,62615-00017-1,1,4380_7778208_1870101,4380_419 -4380_77972,290,4380_19980,Kells,62618-00015-1,1,4380_7778208_1870101,4380_419 -4380_77972,294,4380_19981,Kells,62617-00018-1,1,4380_7778208_1870101,4380_419 -4380_77972,295,4380_19982,Kells,62616-00019-1,1,4380_7778208_1870101,4380_419 -4380_77972,296,4380_19983,Kells,54758-00021-1,1,4380_7778208_1090103,4380_419 -4380_77947,285,4380_1999,Drop Off,51256-00009-1,0,4380_7778208_1011107,4380_22 -4380_77972,285,4380_19990,Kells,13534-00009-1,1,4380_7778208_18788802,4380_420 -4380_77972,288,4380_19991,Kells,13538-00011-1,1,4380_7778208_18788802,4380_420 -4380_77972,286,4380_19992,Kells,13536-00010-1,1,4380_7778208_18788802,4380_420 -4380_77972,289,4380_19993,Kells,13532-00014-1,1,4380_7778208_18788802,4380_420 -4380_77972,287,4380_19994,Kells,13540-00012-1,1,4380_7778208_18788802,4380_420 -4380_77972,290,4380_19995,Kells,114860-00015-1,1,4380_7778208_18788802,4380_420 -4380_77972,292,4380_19996,Kells,114862-00016-1,1,4380_7778208_18788802,4380_420 -4380_77972,294,4380_19997,Kells,114864-00018-1,1,4380_7778208_18788802,4380_420 -4380_77972,293,4380_19998,Kells,114861-00017-1,1,4380_7778208_18788802,4380_420 -4380_77972,295,4380_19999,Kells,114863-00019-1,1,4380_7778208_18788802,4380_420 -4380_77946,292,4380_200,Dundalk,50422-00016-1,0,4380_7778208_1000914,4380_1 -4380_77947,286,4380_2000,Drop Off,51260-00010-1,0,4380_7778208_1011107,4380_22 -4380_77972,285,4380_20000,Kells,13414-00009-1,1,4380_7778208_1870101,4380_418 -4380_77972,286,4380_20001,Kells,13423-00010-1,1,4380_7778208_1870101,4380_418 -4380_77972,297,4380_20002,Kells,13461-00008-1,1,4380_7778208_1870101,4380_418 -4380_77972,288,4380_20003,Kells,13432-00011-1,1,4380_7778208_1870101,4380_418 -4380_77972,287,4380_20004,Kells,13441-00012-1,1,4380_7778208_1870101,4380_418 -4380_77972,291,4380_20005,Kells,13450-00013-1,1,4380_7778208_1870101,4380_418 -4380_77972,289,4380_20006,Kells,13405-00014-1,1,4380_7778208_1870101,4380_418 -4380_77972,292,4380_20007,Kells,62627-00016-1,1,4380_7778208_1870101,4380_418 -4380_77972,293,4380_20008,Kells,62629-00017-1,1,4380_7778208_1870101,4380_418 -4380_77972,290,4380_20009,Kells,62630-00015-1,1,4380_7778208_1870101,4380_418 -4380_77947,288,4380_2001,Drop Off,51262-00011-1,0,4380_7778208_1011107,4380_22 -4380_77972,294,4380_20010,Kells,62625-00018-1,1,4380_7778208_1870101,4380_418 -4380_77972,295,4380_20011,Kells,62626-00019-1,1,4380_7778208_1870101,4380_418 -4380_77972,296,4380_20012,Kells,62628-00021-1,1,4380_7778208_1870101,4380_418 -4380_77972,285,4380_20019,Kells,13416-00009-1,1,4380_7778208_1870101,4380_419 -4380_77947,287,4380_2002,Drop Off,51254-00012-1,0,4380_7778208_1011107,4380_22 -4380_77972,286,4380_20020,Kells,13425-00010-1,1,4380_7778208_1870101,4380_419 -4380_77972,297,4380_20021,Kells,13463-00008-1,1,4380_7778208_1870101,4380_419 -4380_77972,288,4380_20022,Kells,13434-00011-1,1,4380_7778208_1870101,4380_419 -4380_77972,287,4380_20023,Kells,13443-00012-1,1,4380_7778208_1870101,4380_419 -4380_77972,291,4380_20024,Kells,13452-00013-1,1,4380_7778208_1870101,4380_419 -4380_77972,289,4380_20025,Kells,13407-00014-1,1,4380_7778208_1870101,4380_419 -4380_77972,292,4380_20026,Kells,62638-00016-1,1,4380_7778208_1870101,4380_419 -4380_77972,293,4380_20027,Kells,62642-00017-1,1,4380_7778208_1870101,4380_419 -4380_77972,290,4380_20028,Kells,62641-00015-1,1,4380_7778208_1870101,4380_419 -4380_77972,294,4380_20029,Kells,62640-00018-1,1,4380_7778208_1870101,4380_419 -4380_77947,289,4380_2003,Drop Off,51258-00014-1,0,4380_7778208_1011107,4380_22 -4380_77972,295,4380_20030,Kells,62639-00019-1,1,4380_7778208_1870101,4380_419 -4380_77972,296,4380_20031,Kells,62637-00021-1,1,4380_7778208_1870101,4380_419 -4380_77947,290,4380_2004,Drop Off,51257-00015-1,0,4380_7778208_1011107,4380_22 -4380_77972,285,4380_20044,Kells,5164-00009-1,1,4380_7778208_1080101,4380_418 -4380_77972,286,4380_20045,Kells,5177-00010-1,1,4380_7778208_1080101,4380_418 -4380_77972,297,4380_20046,Kells,13465-00008-1,1,4380_7778208_1870101,4380_418 -4380_77972,288,4380_20047,Kells,5185-00011-1,1,4380_7778208_1080101,4380_418 -4380_77972,287,4380_20048,Kells,5203-00012-1,1,4380_7778208_1080101,4380_418 -4380_77972,291,4380_20049,Kells,13454-00013-1,1,4380_7778208_1870101,4380_418 -4380_77947,292,4380_2005,Drop Off,51261-00016-1,0,4380_7778208_1011107,4380_22 -4380_77972,289,4380_20050,Kells,5146-00014-1,1,4380_7778208_1080101,4380_418 -4380_77972,290,4380_20051,Kells,54625-00015-1,1,4380_7778208_1080101,4380_418 -4380_77972,292,4380_20052,Kells,54624-00016-1,1,4380_7778208_1080101,4380_418 -4380_77972,293,4380_20053,Kells,54627-00017-1,1,4380_7778208_1080101,4380_418 -4380_77972,294,4380_20054,Kells,54626-00018-1,1,4380_7778208_1080101,4380_418 -4380_77972,295,4380_20055,Kells,54628-00019-1,1,4380_7778208_1080101,4380_418 -4380_77972,296,4380_20056,Kells,62644-00021-1,1,4380_7778208_1870101,4380_418 -4380_77972,285,4380_20057,Kells,13418-00009-1,1,4380_7778208_1870101,4380_419 -4380_77972,286,4380_20058,Kells,13427-00010-1,1,4380_7778208_1870101,4380_419 -4380_77972,297,4380_20059,Kells,13467-00008-1,1,4380_7778208_1870101,4380_419 -4380_77947,293,4380_2006,Drop Off,51263-00017-1,0,4380_7778208_1011107,4380_22 -4380_77972,288,4380_20060,Kells,13436-00011-1,1,4380_7778208_1870101,4380_419 -4380_77972,287,4380_20061,Kells,13445-00012-1,1,4380_7778208_1870101,4380_419 -4380_77972,291,4380_20062,Kells,13456-00013-1,1,4380_7778208_1870101,4380_419 -4380_77972,289,4380_20063,Kells,13409-00014-1,1,4380_7778208_1870101,4380_419 -4380_77972,292,4380_20064,Kells,62653-00016-1,1,4380_7778208_1870101,4380_419 -4380_77972,293,4380_20065,Kells,62654-00017-1,1,4380_7778208_1870101,4380_419 -4380_77972,290,4380_20066,Kells,62656-00015-1,1,4380_7778208_1870101,4380_419 -4380_77972,294,4380_20067,Kells,62655-00018-1,1,4380_7778208_1870101,4380_419 -4380_77972,295,4380_20068,Kells,62652-00019-1,1,4380_7778208_1870101,4380_419 -4380_77972,296,4380_20069,Kells,62651-00021-1,1,4380_7778208_1870101,4380_419 -4380_77947,294,4380_2007,Drop Off,51255-00018-1,0,4380_7778208_1011107,4380_22 -4380_77973,285,4380_20077,Athlone,62669-00009-1,0,4380_7778208_1901101,4380_421 -4380_77973,286,4380_20078,Athlone,62674-00010-1,0,4380_7778208_1901101,4380_421 -4380_77973,297,4380_20079,Athlone,62673-00008-1,0,4380_7778208_1901101,4380_423 -4380_77947,295,4380_2008,Drop Off,51259-00019-1,0,4380_7778208_1011107,4380_22 -4380_77973,288,4380_20080,Athlone,62667-00011-1,0,4380_7778208_1901101,4380_421 -4380_77973,287,4380_20081,Athlone,62671-00012-1,0,4380_7778208_1901101,4380_421 -4380_77973,291,4380_20082,Athlone,62663-00013-1,0,4380_7778208_1901101,4380_423 -4380_77973,289,4380_20083,Athlone,62665-00014-1,0,4380_7778208_1901101,4380_421 -4380_77973,292,4380_20084,Athlone,62675-00016-1,0,4380_7778208_1901101,4380_421 -4380_77973,293,4380_20085,Athlone,62668-00017-1,0,4380_7778208_1901101,4380_421 -4380_77973,290,4380_20086,Athlone,62670-00015-1,0,4380_7778208_1901101,4380_421 -4380_77973,294,4380_20087,Athlone,62672-00018-1,0,4380_7778208_1901101,4380_421 -4380_77973,295,4380_20088,Athlone,62666-00019-1,0,4380_7778208_1901101,4380_421 -4380_77973,296,4380_20089,Athlone,62664-00021-1,0,4380_7778208_1901101,4380_423 -4380_77973,285,4380_20097,Trim,62739-00009-1,0,4380_7778208_1901102,4380_422 -4380_77973,286,4380_20098,Trim,62737-00010-1,0,4380_7778208_1901102,4380_422 -4380_77973,297,4380_20099,Trim,62732-00008-1,0,4380_7778208_1901102,4380_424 -4380_77946,293,4380_201,Dundalk,50420-00017-1,0,4380_7778208_1000914,4380_1 -4380_77973,288,4380_20100,Trim,62728-00011-1,0,4380_7778208_1901102,4380_422 -4380_77973,287,4380_20101,Trim,62735-00012-1,0,4380_7778208_1901102,4380_422 -4380_77973,291,4380_20102,Trim,62733-00013-1,0,4380_7778208_1901102,4380_424 -4380_77973,289,4380_20103,Trim,62730-00014-1,0,4380_7778208_1901102,4380_422 -4380_77973,292,4380_20104,Trim,62738-00016-1,0,4380_7778208_1901102,4380_422 -4380_77973,293,4380_20105,Trim,62729-00017-1,0,4380_7778208_1901102,4380_422 -4380_77973,290,4380_20106,Trim,62740-00015-1,0,4380_7778208_1901102,4380_422 -4380_77973,294,4380_20107,Trim,62736-00018-1,0,4380_7778208_1901102,4380_422 -4380_77973,295,4380_20108,Trim,62731-00019-1,0,4380_7778208_1901102,4380_422 -4380_77973,296,4380_20109,Trim,62734-00021-1,0,4380_7778208_1901102,4380_424 -4380_77973,285,4380_20117,Athlone,62852-00009-1,0,4380_7778208_1901103,4380_421 -4380_77973,286,4380_20118,Athlone,62856-00010-1,0,4380_7778208_1901103,4380_421 -4380_77973,297,4380_20119,Athlone,62851-00008-1,0,4380_7778208_1901103,4380_423 -4380_77973,288,4380_20120,Athlone,62845-00011-1,0,4380_7778208_1901103,4380_421 -4380_77973,287,4380_20121,Athlone,62849-00012-1,0,4380_7778208_1901103,4380_421 -4380_77973,291,4380_20122,Athlone,62854-00013-1,0,4380_7778208_1901103,4380_423 -4380_77973,289,4380_20123,Athlone,62847-00014-1,0,4380_7778208_1901103,4380_421 -4380_77973,292,4380_20124,Athlone,62857-00016-1,0,4380_7778208_1901103,4380_421 -4380_77973,293,4380_20125,Athlone,62846-00017-1,0,4380_7778208_1901103,4380_421 -4380_77973,290,4380_20126,Athlone,62853-00015-1,0,4380_7778208_1901103,4380_421 -4380_77973,294,4380_20127,Athlone,62850-00018-1,0,4380_7778208_1901103,4380_421 -4380_77973,295,4380_20128,Athlone,62848-00019-1,0,4380_7778208_1901103,4380_421 -4380_77973,296,4380_20129,Athlone,62855-00021-1,0,4380_7778208_1901103,4380_423 -4380_77973,285,4380_20137,Trim,62921-00009-1,0,4380_7778208_1901104,4380_422 -4380_77973,286,4380_20138,Trim,62919-00010-1,0,4380_7778208_1901104,4380_422 -4380_77973,297,4380_20139,Trim,62910-00008-1,0,4380_7778208_1901104,4380_424 -4380_77973,288,4380_20140,Trim,62917-00011-1,0,4380_7778208_1901104,4380_422 -4380_77973,287,4380_20141,Trim,62915-00012-1,0,4380_7778208_1901104,4380_422 -4380_77973,291,4380_20142,Trim,62913-00013-1,0,4380_7778208_1901104,4380_424 -4380_77973,289,4380_20143,Trim,62911-00014-1,0,4380_7778208_1901104,4380_422 -4380_77973,292,4380_20144,Trim,62920-00016-1,0,4380_7778208_1901104,4380_422 -4380_77973,293,4380_20145,Trim,62918-00017-1,0,4380_7778208_1901104,4380_422 -4380_77973,290,4380_20146,Trim,62922-00015-1,0,4380_7778208_1901104,4380_422 -4380_77973,294,4380_20147,Trim,62916-00018-1,0,4380_7778208_1901104,4380_422 -4380_77973,295,4380_20148,Trim,62912-00019-1,0,4380_7778208_1901104,4380_422 -4380_77973,296,4380_20149,Trim,62914-00021-1,0,4380_7778208_1901104,4380_424 -4380_77973,285,4380_20157,Athlone,66470-00009-1,0,4380_7778208_1901201,4380_423 -4380_77973,286,4380_20158,Athlone,66474-00010-1,0,4380_7778208_1901201,4380_423 -4380_77973,297,4380_20159,Athlone,66478-00008-1,0,4380_7778208_1901201,4380_421 -4380_77947,285,4380_2016,Drop Off,51599-00009-1,0,4380_7778208_1011112,4380_22 -4380_77973,288,4380_20160,Athlone,66468-00011-1,0,4380_7778208_1901201,4380_423 -4380_77973,287,4380_20161,Athlone,66479-00012-1,0,4380_7778208_1901201,4380_423 -4380_77973,291,4380_20162,Athlone,66472-00013-1,0,4380_7778208_1901201,4380_421 -4380_77973,289,4380_20163,Athlone,66476-00014-1,0,4380_7778208_1901201,4380_423 -4380_77973,292,4380_20164,Athlone,66475-00016-1,0,4380_7778208_1901201,4380_423 -4380_77973,293,4380_20165,Athlone,66469-00017-1,0,4380_7778208_1901201,4380_423 -4380_77973,290,4380_20166,Athlone,66471-00015-1,0,4380_7778208_1901201,4380_423 -4380_77973,294,4380_20167,Athlone,66480-00018-1,0,4380_7778208_1901201,4380_423 -4380_77973,295,4380_20168,Athlone,66477-00019-1,0,4380_7778208_1901201,4380_423 -4380_77973,296,4380_20169,Athlone,66473-00021-1,0,4380_7778208_1901201,4380_421 -4380_77947,286,4380_2017,Drop Off,51603-00010-1,0,4380_7778208_1011112,4380_22 -4380_77973,285,4380_20177,Trim,62765-00009-1,0,4380_7778208_1901102,4380_422 -4380_77973,286,4380_20178,Trim,62761-00010-1,0,4380_7778208_1901102,4380_422 -4380_77973,297,4380_20179,Trim,62760-00008-1,0,4380_7778208_1901102,4380_424 -4380_77947,297,4380_2018,Drop Off,50769-00008-1,0,4380_7778208_1011102,4380_24 -4380_77973,288,4380_20180,Trim,62763-00011-1,0,4380_7778208_1901102,4380_422 -4380_77973,287,4380_20181,Trim,62754-00012-1,0,4380_7778208_1901102,4380_422 -4380_77973,291,4380_20182,Trim,62756-00013-1,0,4380_7778208_1901102,4380_424 -4380_77973,289,4380_20183,Trim,62758-00014-1,0,4380_7778208_1901102,4380_422 -4380_77973,292,4380_20184,Trim,62762-00016-1,0,4380_7778208_1901102,4380_422 -4380_77973,293,4380_20185,Trim,62764-00017-1,0,4380_7778208_1901102,4380_422 -4380_77973,290,4380_20186,Trim,62766-00015-1,0,4380_7778208_1901102,4380_422 -4380_77973,294,4380_20187,Trim,62755-00018-1,0,4380_7778208_1901102,4380_422 -4380_77973,295,4380_20188,Trim,62759-00019-1,0,4380_7778208_1901102,4380_422 -4380_77973,296,4380_20189,Trim,62757-00021-1,0,4380_7778208_1901102,4380_424 -4380_77947,288,4380_2019,Drop Off,51601-00011-1,0,4380_7778208_1011112,4380_22 -4380_77973,285,4380_20197,Athlone,66544-00009-1,0,4380_7778208_1901202,4380_423 -4380_77973,286,4380_20198,Athlone,66539-00010-1,0,4380_7778208_1901202,4380_423 -4380_77973,297,4380_20199,Athlone,66541-00008-1,0,4380_7778208_1901202,4380_421 -4380_77946,294,4380_202,Dundalk,50426-00018-1,0,4380_7778208_1000914,4380_1 -4380_77947,287,4380_2020,Drop Off,51605-00012-1,0,4380_7778208_1011112,4380_22 -4380_77973,288,4380_20200,Athlone,66542-00011-1,0,4380_7778208_1901202,4380_423 -4380_77973,287,4380_20201,Athlone,66535-00012-1,0,4380_7778208_1901202,4380_423 -4380_77973,291,4380_20202,Athlone,66537-00013-1,0,4380_7778208_1901202,4380_421 -4380_77973,289,4380_20203,Athlone,66533-00014-1,0,4380_7778208_1901202,4380_423 -4380_77973,292,4380_20204,Athlone,66540-00016-1,0,4380_7778208_1901202,4380_423 -4380_77973,293,4380_20205,Athlone,66543-00017-1,0,4380_7778208_1901202,4380_423 -4380_77973,290,4380_20206,Athlone,66545-00015-1,0,4380_7778208_1901202,4380_423 -4380_77973,294,4380_20207,Athlone,66536-00018-1,0,4380_7778208_1901202,4380_423 -4380_77973,295,4380_20208,Athlone,66534-00019-1,0,4380_7778208_1901202,4380_423 -4380_77973,296,4380_20209,Athlone,66538-00021-1,0,4380_7778208_1901202,4380_421 -4380_77947,289,4380_2021,Drop Off,51597-00014-1,0,4380_7778208_1011112,4380_22 -4380_77973,285,4380_20217,Trim,62939-00009-1,0,4380_7778208_1901104,4380_422 -4380_77973,286,4380_20218,Trim,62945-00010-1,0,4380_7778208_1901104,4380_422 -4380_77973,297,4380_20219,Trim,62936-00008-1,0,4380_7778208_1901104,4380_424 -4380_77947,290,4380_2022,Drop Off,51600-00015-1,0,4380_7778208_1011112,4380_22 -4380_77973,288,4380_20220,Trim,62947-00011-1,0,4380_7778208_1901104,4380_422 -4380_77973,287,4380_20221,Trim,62943-00012-1,0,4380_7778208_1901104,4380_422 -4380_77973,291,4380_20222,Trim,62937-00013-1,0,4380_7778208_1901104,4380_424 -4380_77973,289,4380_20223,Trim,62941-00014-1,0,4380_7778208_1901104,4380_422 -4380_77973,292,4380_20224,Trim,62946-00016-1,0,4380_7778208_1901104,4380_422 -4380_77973,293,4380_20225,Trim,62948-00017-1,0,4380_7778208_1901104,4380_422 -4380_77973,290,4380_20226,Trim,62940-00015-1,0,4380_7778208_1901104,4380_422 -4380_77973,294,4380_20227,Trim,62944-00018-1,0,4380_7778208_1901104,4380_422 -4380_77973,295,4380_20228,Trim,62942-00019-1,0,4380_7778208_1901104,4380_422 -4380_77973,296,4380_20229,Trim,62938-00021-1,0,4380_7778208_1901104,4380_424 -4380_77947,291,4380_2023,Drop Off,50652-00013-1,0,4380_7778208_1011101,4380_26 -4380_77973,285,4380_20237,Athlone,62694-00009-1,0,4380_7778208_1901101,4380_421 -4380_77973,286,4380_20238,Athlone,62689-00010-1,0,4380_7778208_1901101,4380_421 -4380_77973,297,4380_20239,Athlone,62691-00008-1,0,4380_7778208_1901101,4380_423 -4380_77947,292,4380_2024,Drop Off,51604-00016-1,0,4380_7778208_1011112,4380_22 -4380_77973,288,4380_20240,Athlone,62696-00011-1,0,4380_7778208_1901101,4380_421 -4380_77973,287,4380_20241,Athlone,62692-00012-1,0,4380_7778208_1901101,4380_421 -4380_77973,291,4380_20242,Athlone,62700-00013-1,0,4380_7778208_1901101,4380_423 -4380_77973,289,4380_20243,Athlone,62698-00014-1,0,4380_7778208_1901101,4380_421 -4380_77973,292,4380_20244,Athlone,62690-00016-1,0,4380_7778208_1901101,4380_421 -4380_77973,293,4380_20245,Athlone,62697-00017-1,0,4380_7778208_1901101,4380_421 -4380_77973,290,4380_20246,Athlone,62695-00015-1,0,4380_7778208_1901101,4380_421 -4380_77973,294,4380_20247,Athlone,62693-00018-1,0,4380_7778208_1901101,4380_421 -4380_77973,295,4380_20248,Athlone,62699-00019-1,0,4380_7778208_1901101,4380_421 -4380_77973,296,4380_20249,Athlone,62701-00021-1,0,4380_7778208_1901101,4380_423 -4380_77947,293,4380_2025,Drop Off,51602-00017-1,0,4380_7778208_1011112,4380_22 -4380_77973,285,4380_20257,Trim,62783-00009-1,0,4380_7778208_1901102,4380_422 -4380_77973,286,4380_20258,Trim,62780-00010-1,0,4380_7778208_1901102,4380_422 -4380_77973,297,4380_20259,Trim,62782-00008-1,0,4380_7778208_1901102,4380_424 -4380_77947,294,4380_2026,Drop Off,51606-00018-1,0,4380_7778208_1011112,4380_22 -4380_77973,288,4380_20260,Trim,62787-00011-1,0,4380_7778208_1901102,4380_422 -4380_77973,287,4380_20261,Trim,62791-00012-1,0,4380_7778208_1901102,4380_422 -4380_77973,291,4380_20262,Trim,62789-00013-1,0,4380_7778208_1901102,4380_424 -4380_77973,289,4380_20263,Trim,62785-00014-1,0,4380_7778208_1901102,4380_422 -4380_77973,292,4380_20264,Trim,62781-00016-1,0,4380_7778208_1901102,4380_422 -4380_77973,293,4380_20265,Trim,62788-00017-1,0,4380_7778208_1901102,4380_422 -4380_77973,290,4380_20266,Trim,62784-00015-1,0,4380_7778208_1901102,4380_422 -4380_77973,294,4380_20267,Trim,62792-00018-1,0,4380_7778208_1901102,4380_422 -4380_77973,295,4380_20268,Trim,62786-00019-1,0,4380_7778208_1901102,4380_422 -4380_77973,296,4380_20269,Trim,62790-00021-1,0,4380_7778208_1901102,4380_424 -4380_77947,295,4380_2027,Drop Off,51598-00019-1,0,4380_7778208_1011112,4380_22 -4380_77973,285,4380_20277,Athlone,62880-00009-1,0,4380_7778208_1901103,4380_421 -4380_77973,286,4380_20278,Athlone,62874-00010-1,0,4380_7778208_1901103,4380_421 -4380_77973,297,4380_20279,Athlone,62871-00008-1,0,4380_7778208_1901103,4380_423 -4380_77947,296,4380_2028,Drop Off,50653-00021-1,0,4380_7778208_1011101,4380_26 -4380_77973,288,4380_20280,Athlone,62878-00011-1,0,4380_7778208_1901103,4380_421 -4380_77973,287,4380_20281,Athlone,62872-00012-1,0,4380_7778208_1901103,4380_421 -4380_77973,291,4380_20282,Athlone,62882-00013-1,0,4380_7778208_1901103,4380_423 -4380_77973,289,4380_20283,Athlone,62876-00014-1,0,4380_7778208_1901103,4380_421 -4380_77973,292,4380_20284,Athlone,62875-00016-1,0,4380_7778208_1901103,4380_421 -4380_77973,293,4380_20285,Athlone,62879-00017-1,0,4380_7778208_1901103,4380_421 -4380_77973,290,4380_20286,Athlone,62881-00015-1,0,4380_7778208_1901103,4380_421 -4380_77973,294,4380_20287,Athlone,62873-00018-1,0,4380_7778208_1901103,4380_421 -4380_77973,295,4380_20288,Athlone,62877-00019-1,0,4380_7778208_1901103,4380_421 -4380_77973,296,4380_20289,Athlone,62883-00021-1,0,4380_7778208_1901103,4380_423 -4380_77973,285,4380_20297,Trim,62971-00009-1,0,4380_7778208_1901104,4380_422 -4380_77973,286,4380_20298,Trim,62973-00010-1,0,4380_7778208_1901104,4380_422 -4380_77973,297,4380_20299,Trim,62968-00008-1,0,4380_7778208_1901104,4380_424 -4380_77946,295,4380_203,Dundalk,50424-00019-1,0,4380_7778208_1000914,4380_1 -4380_77973,288,4380_20300,Trim,62962-00011-1,0,4380_7778208_1901104,4380_422 -4380_77973,287,4380_20301,Trim,62966-00012-1,0,4380_7778208_1901104,4380_422 -4380_77973,291,4380_20302,Trim,62969-00013-1,0,4380_7778208_1901104,4380_424 -4380_77973,289,4380_20303,Trim,62964-00014-1,0,4380_7778208_1901104,4380_422 -4380_77973,292,4380_20304,Trim,62974-00016-1,0,4380_7778208_1901104,4380_422 -4380_77973,293,4380_20305,Trim,62963-00017-1,0,4380_7778208_1901104,4380_422 -4380_77973,290,4380_20306,Trim,62972-00015-1,0,4380_7778208_1901104,4380_422 -4380_77973,294,4380_20307,Trim,62967-00018-1,0,4380_7778208_1901104,4380_422 -4380_77973,295,4380_20308,Trim,62965-00019-1,0,4380_7778208_1901104,4380_422 -4380_77973,296,4380_20309,Trim,62970-00021-1,0,4380_7778208_1901104,4380_424 -4380_77973,285,4380_20317,Athlone,66503-00009-1,0,4380_7778208_1901201,4380_423 -4380_77973,286,4380_20318,Athlone,66505-00010-1,0,4380_7778208_1901201,4380_423 -4380_77973,297,4380_20319,Athlone,66500-00008-1,0,4380_7778208_1901201,4380_421 -4380_77973,288,4380_20320,Athlone,66501-00011-1,0,4380_7778208_1901201,4380_423 -4380_77973,287,4380_20321,Athlone,66496-00012-1,0,4380_7778208_1901201,4380_423 -4380_77973,291,4380_20322,Athlone,66494-00013-1,0,4380_7778208_1901201,4380_421 -4380_77973,289,4380_20323,Athlone,66498-00014-1,0,4380_7778208_1901201,4380_423 -4380_77973,292,4380_20324,Athlone,66506-00016-1,0,4380_7778208_1901201,4380_423 -4380_77973,293,4380_20325,Athlone,66502-00017-1,0,4380_7778208_1901201,4380_423 -4380_77973,290,4380_20326,Athlone,66504-00015-1,0,4380_7778208_1901201,4380_423 -4380_77973,294,4380_20327,Athlone,66497-00018-1,0,4380_7778208_1901201,4380_423 -4380_77973,295,4380_20328,Athlone,66499-00019-1,0,4380_7778208_1901201,4380_423 -4380_77973,296,4380_20329,Athlone,66495-00021-1,0,4380_7778208_1901201,4380_421 -4380_77973,285,4380_20337,Trim,62810-00009-1,0,4380_7778208_1901102,4380_422 -4380_77973,286,4380_20338,Trim,62812-00010-1,0,4380_7778208_1901102,4380_422 -4380_77973,297,4380_20339,Trim,62814-00008-1,0,4380_7778208_1901102,4380_424 -4380_77973,288,4380_20340,Trim,62808-00011-1,0,4380_7778208_1901102,4380_422 -4380_77973,287,4380_20341,Trim,62806-00012-1,0,4380_7778208_1901102,4380_422 -4380_77973,291,4380_20342,Trim,62815-00013-1,0,4380_7778208_1901102,4380_424 -4380_77973,289,4380_20343,Trim,62817-00014-1,0,4380_7778208_1901102,4380_422 -4380_77973,292,4380_20344,Trim,62813-00016-1,0,4380_7778208_1901102,4380_422 -4380_77973,293,4380_20345,Trim,62809-00017-1,0,4380_7778208_1901102,4380_422 -4380_77973,290,4380_20346,Trim,62811-00015-1,0,4380_7778208_1901102,4380_422 -4380_77973,294,4380_20347,Trim,62807-00018-1,0,4380_7778208_1901102,4380_422 -4380_77973,295,4380_20348,Trim,62818-00019-1,0,4380_7778208_1901102,4380_422 -4380_77973,296,4380_20349,Trim,62816-00021-1,0,4380_7778208_1901102,4380_424 -4380_77973,285,4380_20357,Athlone,66563-00009-1,0,4380_7778208_1901202,4380_423 -4380_77973,286,4380_20358,Athlone,66565-00010-1,0,4380_7778208_1901202,4380_423 -4380_77973,297,4380_20359,Athlone,66571-00008-1,0,4380_7778208_1901202,4380_421 -4380_77947,285,4380_2036,Drop Off,51657-00009-1,0,4380_7778208_1011113,4380_22 -4380_77973,288,4380_20360,Athlone,66559-00011-1,0,4380_7778208_1901202,4380_423 -4380_77973,287,4380_20361,Athlone,66561-00012-1,0,4380_7778208_1901202,4380_423 -4380_77973,291,4380_20362,Athlone,66567-00013-1,0,4380_7778208_1901202,4380_421 -4380_77973,289,4380_20363,Athlone,66569-00014-1,0,4380_7778208_1901202,4380_423 -4380_77973,292,4380_20364,Athlone,66566-00016-1,0,4380_7778208_1901202,4380_423 -4380_77973,293,4380_20365,Athlone,66560-00017-1,0,4380_7778208_1901202,4380_423 -4380_77973,290,4380_20366,Athlone,66564-00015-1,0,4380_7778208_1901202,4380_423 -4380_77973,294,4380_20367,Athlone,66562-00018-1,0,4380_7778208_1901202,4380_423 -4380_77973,295,4380_20368,Athlone,66570-00019-1,0,4380_7778208_1901202,4380_423 -4380_77973,296,4380_20369,Athlone,66568-00021-1,0,4380_7778208_1901202,4380_421 -4380_77947,286,4380_2037,Drop Off,51659-00010-1,0,4380_7778208_1011113,4380_22 -4380_77973,285,4380_20377,Trim,62992-00009-1,0,4380_7778208_1901104,4380_422 -4380_77973,286,4380_20378,Trim,62990-00010-1,0,4380_7778208_1901104,4380_422 -4380_77973,297,4380_20379,Trim,63000-00008-1,0,4380_7778208_1901104,4380_424 -4380_77947,297,4380_2038,Drop Off,51504-00008-1,0,4380_7778208_1011110,4380_24 -4380_77973,288,4380_20380,Trim,62988-00011-1,0,4380_7778208_1901104,4380_422 -4380_77973,287,4380_20381,Trim,62996-00012-1,0,4380_7778208_1901104,4380_422 -4380_77973,291,4380_20382,Trim,62998-00013-1,0,4380_7778208_1901104,4380_424 -4380_77973,289,4380_20383,Trim,62994-00014-1,0,4380_7778208_1901104,4380_422 -4380_77973,292,4380_20384,Trim,62991-00016-1,0,4380_7778208_1901104,4380_422 -4380_77973,293,4380_20385,Trim,62989-00017-1,0,4380_7778208_1901104,4380_422 -4380_77973,290,4380_20386,Trim,62993-00015-1,0,4380_7778208_1901104,4380_422 -4380_77973,294,4380_20387,Trim,62997-00018-1,0,4380_7778208_1901104,4380_422 -4380_77973,295,4380_20388,Trim,62995-00019-1,0,4380_7778208_1901104,4380_422 -4380_77973,296,4380_20389,Trim,62999-00021-1,0,4380_7778208_1901104,4380_424 -4380_77947,288,4380_2039,Drop Off,51663-00011-1,0,4380_7778208_1011113,4380_22 -4380_77973,285,4380_20397,Athlone,62722-00009-1,0,4380_7778208_1901101,4380_421 -4380_77973,286,4380_20398,Athlone,62720-00010-1,0,4380_7778208_1901101,4380_421 -4380_77973,297,4380_20399,Athlone,62715-00008-1,0,4380_7778208_1901101,4380_423 -4380_77946,296,4380_204,Dundalk,50264-00021-1,0,4380_7778208_1000911,4380_5 -4380_77947,287,4380_2040,Drop Off,51661-00012-1,0,4380_7778208_1011113,4380_22 -4380_77973,288,4380_20400,Athlone,62718-00011-1,0,4380_7778208_1901101,4380_421 -4380_77973,287,4380_20401,Athlone,62726-00012-1,0,4380_7778208_1901101,4380_421 -4380_77973,291,4380_20402,Athlone,62716-00013-1,0,4380_7778208_1901101,4380_423 -4380_77973,289,4380_20403,Athlone,62724-00014-1,0,4380_7778208_1901101,4380_421 -4380_77973,292,4380_20404,Athlone,62721-00016-1,0,4380_7778208_1901101,4380_421 -4380_77973,293,4380_20405,Athlone,62719-00017-1,0,4380_7778208_1901101,4380_421 -4380_77973,290,4380_20406,Athlone,62723-00015-1,0,4380_7778208_1901101,4380_421 -4380_77973,294,4380_20407,Athlone,62727-00018-1,0,4380_7778208_1901101,4380_421 -4380_77973,295,4380_20408,Athlone,62725-00019-1,0,4380_7778208_1901101,4380_421 -4380_77973,296,4380_20409,Athlone,62717-00021-1,0,4380_7778208_1901101,4380_423 -4380_77947,289,4380_2041,Drop Off,51665-00014-1,0,4380_7778208_1011113,4380_22 -4380_77973,285,4380_20417,Trim,62834-00009-1,0,4380_7778208_1901102,4380_422 -4380_77973,286,4380_20418,Trim,62841-00010-1,0,4380_7778208_1901102,4380_422 -4380_77973,297,4380_20419,Trim,62840-00008-1,0,4380_7778208_1901102,4380_424 -4380_77947,290,4380_2042,Drop Off,51658-00015-1,0,4380_7778208_1011113,4380_22 -4380_77973,288,4380_20420,Trim,62836-00011-1,0,4380_7778208_1901102,4380_422 -4380_77973,287,4380_20421,Trim,62843-00012-1,0,4380_7778208_1901102,4380_422 -4380_77973,291,4380_20422,Trim,62832-00013-1,0,4380_7778208_1901102,4380_424 -4380_77973,289,4380_20423,Trim,62838-00014-1,0,4380_7778208_1901102,4380_422 -4380_77973,292,4380_20424,Trim,62842-00016-1,0,4380_7778208_1901102,4380_422 -4380_77973,293,4380_20425,Trim,62837-00017-1,0,4380_7778208_1901102,4380_422 -4380_77973,290,4380_20426,Trim,62835-00015-1,0,4380_7778208_1901102,4380_422 -4380_77973,294,4380_20427,Trim,62844-00018-1,0,4380_7778208_1901102,4380_422 -4380_77973,295,4380_20428,Trim,62839-00019-1,0,4380_7778208_1901102,4380_422 -4380_77973,296,4380_20429,Trim,62833-00021-1,0,4380_7778208_1901102,4380_424 -4380_77947,291,4380_2043,Drop Off,51264-00013-1,0,4380_7778208_1011107,4380_26 -4380_77973,285,4380_20437,Athlone,62901-00009-1,0,4380_7778208_1901103,4380_421 -4380_77973,286,4380_20438,Athlone,62903-00010-1,0,4380_7778208_1901103,4380_421 -4380_77973,297,4380_20439,Athlone,62909-00008-1,0,4380_7778208_1901103,4380_423 -4380_77947,292,4380_2044,Drop Off,51660-00016-1,0,4380_7778208_1011113,4380_22 -4380_77973,288,4380_20440,Athlone,62897-00011-1,0,4380_7778208_1901103,4380_421 -4380_77973,287,4380_20441,Athlone,62905-00012-1,0,4380_7778208_1901103,4380_421 -4380_77973,291,4380_20442,Athlone,62899-00013-1,0,4380_7778208_1901103,4380_423 -4380_77973,289,4380_20443,Athlone,62907-00014-1,0,4380_7778208_1901103,4380_421 -4380_77973,292,4380_20444,Athlone,62904-00016-1,0,4380_7778208_1901103,4380_421 -4380_77973,293,4380_20445,Athlone,62898-00017-1,0,4380_7778208_1901103,4380_421 -4380_77973,290,4380_20446,Athlone,62902-00015-1,0,4380_7778208_1901103,4380_421 -4380_77973,294,4380_20447,Athlone,62906-00018-1,0,4380_7778208_1901103,4380_421 -4380_77973,295,4380_20448,Athlone,62908-00019-1,0,4380_7778208_1901103,4380_421 -4380_77973,296,4380_20449,Athlone,62900-00021-1,0,4380_7778208_1901103,4380_423 -4380_77947,293,4380_2045,Drop Off,51664-00017-1,0,4380_7778208_1011113,4380_22 -4380_77973,285,4380_20457,Drogheda,66457-00009-1,1,4380_7778208_1901201,4380_427 -4380_77973,286,4380_20458,Drogheda,66459-00010-1,1,4380_7778208_1901201,4380_427 -4380_77973,297,4380_20459,Drogheda,66461-00008-1,1,4380_7778208_1901201,4380_425 -4380_77947,294,4380_2046,Drop Off,51662-00018-1,0,4380_7778208_1011113,4380_22 -4380_77973,288,4380_20460,Drogheda,66462-00011-1,1,4380_7778208_1901201,4380_427 -4380_77973,287,4380_20461,Drogheda,66464-00012-1,1,4380_7778208_1901201,4380_427 -4380_77973,291,4380_20462,Drogheda,66466-00013-1,1,4380_7778208_1901201,4380_425 -4380_77973,289,4380_20463,Drogheda,66455-00014-1,1,4380_7778208_1901201,4380_427 -4380_77973,292,4380_20464,Drogheda,66460-00016-1,1,4380_7778208_1901201,4380_427 -4380_77973,293,4380_20465,Drogheda,66463-00017-1,1,4380_7778208_1901201,4380_427 -4380_77973,290,4380_20466,Drogheda,66458-00015-1,1,4380_7778208_1901201,4380_427 -4380_77973,294,4380_20467,Drogheda,66465-00018-1,1,4380_7778208_1901201,4380_427 -4380_77973,295,4380_20468,Drogheda,66456-00019-1,1,4380_7778208_1901201,4380_427 -4380_77973,296,4380_20469,Drogheda,66467-00021-1,1,4380_7778208_1901201,4380_425 -4380_77947,295,4380_2047,Drop Off,51666-00019-1,0,4380_7778208_1011113,4380_22 -4380_77973,285,4380_20477,Drogheda,66520-00009-1,1,4380_7778208_1901202,4380_427 -4380_77973,286,4380_20478,Drogheda,66531-00010-1,1,4380_7778208_1901202,4380_427 -4380_77973,297,4380_20479,Drogheda,66526-00008-1,1,4380_7778208_1901202,4380_425 -4380_77947,296,4380_2048,Drop Off,51265-00021-1,0,4380_7778208_1011107,4380_26 -4380_77973,288,4380_20480,Drogheda,66524-00011-1,1,4380_7778208_1901202,4380_427 -4380_77973,287,4380_20481,Drogheda,66522-00012-1,1,4380_7778208_1901202,4380_427 -4380_77973,291,4380_20482,Drogheda,66527-00013-1,1,4380_7778208_1901202,4380_425 -4380_77973,289,4380_20483,Drogheda,66529-00014-1,1,4380_7778208_1901202,4380_427 -4380_77973,292,4380_20484,Drogheda,66532-00016-1,1,4380_7778208_1901202,4380_427 -4380_77973,293,4380_20485,Drogheda,66525-00017-1,1,4380_7778208_1901202,4380_427 -4380_77973,290,4380_20486,Drogheda,66521-00015-1,1,4380_7778208_1901202,4380_427 -4380_77973,294,4380_20487,Drogheda,66523-00018-1,1,4380_7778208_1901202,4380_427 -4380_77973,295,4380_20488,Drogheda,66530-00019-1,1,4380_7778208_1901202,4380_427 -4380_77973,296,4380_20489,Drogheda,66528-00021-1,1,4380_7778208_1901202,4380_425 -4380_77973,285,4380_20497,Drogheda,62748-00009-1,1,4380_7778208_1901102,4380_426 -4380_77973,286,4380_20498,Drogheda,62750-00010-1,1,4380_7778208_1901102,4380_426 -4380_77973,297,4380_20499,Drogheda,62745-00008-1,1,4380_7778208_1901102,4380_428 -4380_77973,288,4380_20500,Drogheda,62746-00011-1,1,4380_7778208_1901102,4380_426 -4380_77973,287,4380_20501,Drogheda,62752-00012-1,1,4380_7778208_1901102,4380_426 -4380_77973,291,4380_20502,Drogheda,62743-00013-1,1,4380_7778208_1901102,4380_428 -4380_77973,289,4380_20503,Drogheda,62741-00014-1,1,4380_7778208_1901102,4380_426 -4380_77973,292,4380_20504,Drogheda,62751-00016-1,1,4380_7778208_1901102,4380_426 -4380_77973,293,4380_20505,Drogheda,62747-00017-1,1,4380_7778208_1901102,4380_426 -4380_77973,290,4380_20506,Drogheda,62749-00015-1,1,4380_7778208_1901102,4380_426 -4380_77973,294,4380_20507,Drogheda,62753-00018-1,1,4380_7778208_1901102,4380_426 -4380_77973,295,4380_20508,Drogheda,62742-00019-1,1,4380_7778208_1901102,4380_426 -4380_77973,296,4380_20509,Drogheda,62744-00021-1,1,4380_7778208_1901102,4380_428 -4380_77973,285,4380_20517,Drogheda,62681-00009-1,1,4380_7778208_1901101,4380_425 -4380_77973,286,4380_20518,Drogheda,62685-00010-1,1,4380_7778208_1901101,4380_425 -4380_77973,297,4380_20519,Drogheda,62680-00008-1,1,4380_7778208_1901101,4380_427 -4380_77973,288,4380_20520,Drogheda,62676-00011-1,1,4380_7778208_1901101,4380_425 -4380_77973,287,4380_20521,Drogheda,62683-00012-1,1,4380_7778208_1901101,4380_425 -4380_77973,291,4380_20522,Drogheda,62687-00013-1,1,4380_7778208_1901101,4380_427 -4380_77973,289,4380_20523,Drogheda,62678-00014-1,1,4380_7778208_1901101,4380_425 -4380_77973,292,4380_20524,Drogheda,62686-00016-1,1,4380_7778208_1901101,4380_425 -4380_77973,293,4380_20525,Drogheda,62677-00017-1,1,4380_7778208_1901101,4380_425 -4380_77973,290,4380_20526,Drogheda,62682-00015-1,1,4380_7778208_1901101,4380_425 -4380_77973,294,4380_20527,Drogheda,62684-00018-1,1,4380_7778208_1901101,4380_425 -4380_77973,295,4380_20528,Drogheda,62679-00019-1,1,4380_7778208_1901101,4380_425 -4380_77973,296,4380_20529,Drogheda,62688-00021-1,1,4380_7778208_1901101,4380_427 -4380_77973,285,4380_20537,Drogheda,62928-00009-1,1,4380_7778208_1901104,4380_426 -4380_77973,286,4380_20538,Drogheda,62934-00010-1,1,4380_7778208_1901104,4380_426 -4380_77973,297,4380_20539,Drogheda,62925-00008-1,1,4380_7778208_1901104,4380_428 -4380_77973,288,4380_20540,Drogheda,62930-00011-1,1,4380_7778208_1901104,4380_426 -4380_77973,287,4380_20541,Drogheda,62932-00012-1,1,4380_7778208_1901104,4380_426 -4380_77973,291,4380_20542,Drogheda,62926-00013-1,1,4380_7778208_1901104,4380_428 -4380_77973,289,4380_20543,Drogheda,62923-00014-1,1,4380_7778208_1901104,4380_426 -4380_77973,292,4380_20544,Drogheda,62935-00016-1,1,4380_7778208_1901104,4380_426 -4380_77973,293,4380_20545,Drogheda,62931-00017-1,1,4380_7778208_1901104,4380_426 -4380_77973,290,4380_20546,Drogheda,62929-00015-1,1,4380_7778208_1901104,4380_426 -4380_77973,294,4380_20547,Drogheda,62933-00018-1,1,4380_7778208_1901104,4380_426 -4380_77973,295,4380_20548,Drogheda,62924-00019-1,1,4380_7778208_1901104,4380_426 -4380_77973,296,4380_20549,Drogheda,62927-00021-1,1,4380_7778208_1901104,4380_428 -4380_77973,285,4380_20557,Drogheda,62864-00009-1,1,4380_7778208_1901103,4380_425 -4380_77973,286,4380_20558,Drogheda,62868-00010-1,1,4380_7778208_1901103,4380_425 -4380_77973,297,4380_20559,Drogheda,62870-00008-1,1,4380_7778208_1901103,4380_427 -4380_77947,285,4380_2056,Drop Off,51409-00009-1,0,4380_7778208_1011109,4380_22 -4380_77973,288,4380_20560,Drogheda,62862-00011-1,1,4380_7778208_1901103,4380_425 -4380_77973,287,4380_20561,Drogheda,62858-00012-1,1,4380_7778208_1901103,4380_425 -4380_77973,291,4380_20562,Drogheda,62866-00013-1,1,4380_7778208_1901103,4380_427 -4380_77973,289,4380_20563,Drogheda,62860-00014-1,1,4380_7778208_1901103,4380_425 -4380_77973,292,4380_20564,Drogheda,62869-00016-1,1,4380_7778208_1901103,4380_425 -4380_77973,293,4380_20565,Drogheda,62863-00017-1,1,4380_7778208_1901103,4380_425 -4380_77973,290,4380_20566,Drogheda,62865-00015-1,1,4380_7778208_1901103,4380_425 -4380_77973,294,4380_20567,Drogheda,62859-00018-1,1,4380_7778208_1901103,4380_425 -4380_77973,295,4380_20568,Drogheda,62861-00019-1,1,4380_7778208_1901103,4380_425 -4380_77973,296,4380_20569,Drogheda,62867-00021-1,1,4380_7778208_1901103,4380_427 -4380_77947,286,4380_2057,Drop Off,51417-00010-1,0,4380_7778208_1011109,4380_22 -4380_77973,285,4380_20577,Drogheda,62775-00009-1,1,4380_7778208_1901102,4380_426 -4380_77973,286,4380_20578,Drogheda,62769-00010-1,1,4380_7778208_1901102,4380_426 -4380_77973,297,4380_20579,Drogheda,62777-00008-1,1,4380_7778208_1901102,4380_428 -4380_77947,297,4380_2058,Drop Off,50875-00008-1,0,4380_7778208_1011103,4380_24 -4380_77973,288,4380_20580,Drogheda,62767-00011-1,1,4380_7778208_1901102,4380_426 -4380_77973,287,4380_20581,Drogheda,62773-00012-1,1,4380_7778208_1901102,4380_426 -4380_77973,291,4380_20582,Drogheda,62771-00013-1,1,4380_7778208_1901102,4380_428 -4380_77973,289,4380_20583,Drogheda,62778-00014-1,1,4380_7778208_1901102,4380_426 -4380_77973,292,4380_20584,Drogheda,62770-00016-1,1,4380_7778208_1901102,4380_426 -4380_77973,293,4380_20585,Drogheda,62768-00017-1,1,4380_7778208_1901102,4380_426 -4380_77973,290,4380_20586,Drogheda,62776-00015-1,1,4380_7778208_1901102,4380_426 -4380_77973,294,4380_20587,Drogheda,62774-00018-1,1,4380_7778208_1901102,4380_426 -4380_77973,295,4380_20588,Drogheda,62779-00019-1,1,4380_7778208_1901102,4380_426 -4380_77973,296,4380_20589,Drogheda,62772-00021-1,1,4380_7778208_1901102,4380_428 -4380_77947,288,4380_2059,Drop Off,51411-00011-1,0,4380_7778208_1011109,4380_22 -4380_77973,285,4380_20597,Drogheda,66486-00009-1,1,4380_7778208_1901201,4380_427 -4380_77973,286,4380_20598,Drogheda,66490-00010-1,1,4380_7778208_1901201,4380_427 -4380_77973,297,4380_20599,Drogheda,66481-00008-1,1,4380_7778208_1901201,4380_425 -4380_77947,287,4380_2060,Drop Off,51415-00012-1,0,4380_7778208_1011109,4380_22 -4380_77973,288,4380_20600,Drogheda,66484-00011-1,1,4380_7778208_1901201,4380_427 -4380_77973,287,4380_20601,Drogheda,66488-00012-1,1,4380_7778208_1901201,4380_427 -4380_77973,291,4380_20602,Drogheda,66492-00013-1,1,4380_7778208_1901201,4380_425 -4380_77973,289,4380_20603,Drogheda,66482-00014-1,1,4380_7778208_1901201,4380_427 -4380_77973,292,4380_20604,Drogheda,66491-00016-1,1,4380_7778208_1901201,4380_427 -4380_77973,293,4380_20605,Drogheda,66485-00017-1,1,4380_7778208_1901201,4380_427 -4380_77973,290,4380_20606,Drogheda,66487-00015-1,1,4380_7778208_1901201,4380_427 -4380_77973,294,4380_20607,Drogheda,66489-00018-1,1,4380_7778208_1901201,4380_427 -4380_77973,295,4380_20608,Drogheda,66483-00019-1,1,4380_7778208_1901201,4380_427 -4380_77973,296,4380_20609,Drogheda,66493-00021-1,1,4380_7778208_1901201,4380_425 -4380_77947,289,4380_2061,Drop Off,51413-00014-1,0,4380_7778208_1011109,4380_22 -4380_77973,285,4380_20617,Drogheda,62958-00009-1,1,4380_7778208_1901104,4380_426 -4380_77973,286,4380_20618,Drogheda,62954-00010-1,1,4380_7778208_1901104,4380_426 -4380_77973,297,4380_20619,Drogheda,62949-00008-1,1,4380_7778208_1901104,4380_428 -4380_77947,290,4380_2062,Drop Off,51410-00015-1,0,4380_7778208_1011109,4380_22 -4380_77973,288,4380_20620,Drogheda,62950-00011-1,1,4380_7778208_1901104,4380_426 -4380_77973,287,4380_20621,Drogheda,62960-00012-1,1,4380_7778208_1901104,4380_426 -4380_77973,291,4380_20622,Drogheda,62952-00013-1,1,4380_7778208_1901104,4380_428 -4380_77973,289,4380_20623,Drogheda,62956-00014-1,1,4380_7778208_1901104,4380_426 -4380_77973,292,4380_20624,Drogheda,62955-00016-1,1,4380_7778208_1901104,4380_426 -4380_77973,293,4380_20625,Drogheda,62951-00017-1,1,4380_7778208_1901104,4380_426 -4380_77973,290,4380_20626,Drogheda,62959-00015-1,1,4380_7778208_1901104,4380_426 -4380_77973,294,4380_20627,Drogheda,62961-00018-1,1,4380_7778208_1901104,4380_426 -4380_77973,295,4380_20628,Drogheda,62957-00019-1,1,4380_7778208_1901104,4380_426 -4380_77973,296,4380_20629,Drogheda,62953-00021-1,1,4380_7778208_1901104,4380_428 -4380_77947,291,4380_2063,Drop Off,50876-00013-1,0,4380_7778208_1011103,4380_26 -4380_77973,285,4380_20637,Drogheda,66557-00009-1,1,4380_7778208_1901202,4380_427 -4380_77973,286,4380_20638,Drogheda,66546-00010-1,1,4380_7778208_1901202,4380_427 -4380_77973,297,4380_20639,Drogheda,66550-00008-1,1,4380_7778208_1901202,4380_425 -4380_77947,292,4380_2064,Drop Off,51418-00016-1,0,4380_7778208_1011109,4380_22 -4380_77973,288,4380_20640,Drogheda,66553-00011-1,1,4380_7778208_1901202,4380_427 -4380_77973,287,4380_20641,Drogheda,66551-00012-1,1,4380_7778208_1901202,4380_427 -4380_77973,291,4380_20642,Drogheda,66548-00013-1,1,4380_7778208_1901202,4380_425 -4380_77973,289,4380_20643,Drogheda,66555-00014-1,1,4380_7778208_1901202,4380_427 -4380_77973,292,4380_20644,Drogheda,66547-00016-1,1,4380_7778208_1901202,4380_427 -4380_77973,293,4380_20645,Drogheda,66554-00017-1,1,4380_7778208_1901202,4380_427 -4380_77973,290,4380_20646,Drogheda,66558-00015-1,1,4380_7778208_1901202,4380_427 -4380_77973,294,4380_20647,Drogheda,66552-00018-1,1,4380_7778208_1901202,4380_427 -4380_77973,295,4380_20648,Drogheda,66556-00019-1,1,4380_7778208_1901202,4380_427 -4380_77973,296,4380_20649,Drogheda,66549-00021-1,1,4380_7778208_1901202,4380_425 -4380_77947,293,4380_2065,Drop Off,51412-00017-1,0,4380_7778208_1011109,4380_22 -4380_77973,285,4380_20657,Drogheda,62795-00009-1,1,4380_7778208_1901102,4380_426 -4380_77973,286,4380_20658,Drogheda,62800-00010-1,1,4380_7778208_1901102,4380_426 -4380_77973,297,4380_20659,Drogheda,62797-00008-1,1,4380_7778208_1901102,4380_428 -4380_77947,294,4380_2066,Drop Off,51416-00018-1,0,4380_7778208_1011109,4380_22 -4380_77973,288,4380_20660,Drogheda,62804-00011-1,1,4380_7778208_1901102,4380_426 -4380_77973,287,4380_20661,Drogheda,62802-00012-1,1,4380_7778208_1901102,4380_426 -4380_77973,291,4380_20662,Drogheda,62793-00013-1,1,4380_7778208_1901102,4380_428 -4380_77973,289,4380_20663,Drogheda,62798-00014-1,1,4380_7778208_1901102,4380_426 -4380_77973,292,4380_20664,Drogheda,62801-00016-1,1,4380_7778208_1901102,4380_426 -4380_77973,293,4380_20665,Drogheda,62805-00017-1,1,4380_7778208_1901102,4380_426 -4380_77973,290,4380_20666,Drogheda,62796-00015-1,1,4380_7778208_1901102,4380_426 -4380_77973,294,4380_20667,Drogheda,62803-00018-1,1,4380_7778208_1901102,4380_426 -4380_77973,295,4380_20668,Drogheda,62799-00019-1,1,4380_7778208_1901102,4380_426 -4380_77973,296,4380_20669,Drogheda,62794-00021-1,1,4380_7778208_1901102,4380_428 -4380_77947,295,4380_2067,Drop Off,51414-00019-1,0,4380_7778208_1011109,4380_22 -4380_77973,285,4380_20677,Drogheda,62704-00009-1,1,4380_7778208_1901101,4380_425 -4380_77973,286,4380_20678,Drogheda,62711-00010-1,1,4380_7778208_1901101,4380_425 -4380_77973,297,4380_20679,Drogheda,62708-00008-1,1,4380_7778208_1901101,4380_427 -4380_77947,296,4380_2068,Drop Off,50877-00021-1,0,4380_7778208_1011103,4380_26 -4380_77973,288,4380_20680,Drogheda,62702-00011-1,1,4380_7778208_1901101,4380_425 -4380_77973,287,4380_20681,Drogheda,62713-00012-1,1,4380_7778208_1901101,4380_425 -4380_77973,291,4380_20682,Drogheda,62706-00013-1,1,4380_7778208_1901101,4380_427 -4380_77973,289,4380_20683,Drogheda,62709-00014-1,1,4380_7778208_1901101,4380_425 -4380_77973,292,4380_20684,Drogheda,62712-00016-1,1,4380_7778208_1901101,4380_425 -4380_77973,293,4380_20685,Drogheda,62703-00017-1,1,4380_7778208_1901101,4380_425 -4380_77973,290,4380_20686,Drogheda,62705-00015-1,1,4380_7778208_1901101,4380_425 -4380_77973,294,4380_20687,Drogheda,62714-00018-1,1,4380_7778208_1901101,4380_425 -4380_77973,295,4380_20688,Drogheda,62710-00019-1,1,4380_7778208_1901101,4380_425 -4380_77973,296,4380_20689,Drogheda,62707-00021-1,1,4380_7778208_1901101,4380_427 -4380_77973,285,4380_20697,Drogheda,62986-00009-1,1,4380_7778208_1901104,4380_426 -4380_77973,286,4380_20698,Drogheda,62977-00010-1,1,4380_7778208_1901104,4380_426 -4380_77973,297,4380_20699,Drogheda,62983-00008-1,1,4380_7778208_1901104,4380_428 -4380_77973,288,4380_20700,Drogheda,62984-00011-1,1,4380_7778208_1901104,4380_426 -4380_77973,287,4380_20701,Drogheda,62979-00012-1,1,4380_7778208_1901104,4380_426 -4380_77973,291,4380_20702,Drogheda,62975-00013-1,1,4380_7778208_1901104,4380_428 -4380_77973,289,4380_20703,Drogheda,62981-00014-1,1,4380_7778208_1901104,4380_426 -4380_77973,292,4380_20704,Drogheda,62978-00016-1,1,4380_7778208_1901104,4380_426 -4380_77973,293,4380_20705,Drogheda,62985-00017-1,1,4380_7778208_1901104,4380_426 -4380_77973,290,4380_20706,Drogheda,62987-00015-1,1,4380_7778208_1901104,4380_426 -4380_77973,294,4380_20707,Drogheda,62980-00018-1,1,4380_7778208_1901104,4380_426 -4380_77973,295,4380_20708,Drogheda,62982-00019-1,1,4380_7778208_1901104,4380_426 -4380_77973,296,4380_20709,Drogheda,62976-00021-1,1,4380_7778208_1901104,4380_428 -4380_77973,285,4380_20717,Drogheda,62891-00009-1,1,4380_7778208_1901103,4380_425 -4380_77973,286,4380_20718,Drogheda,62895-00010-1,1,4380_7778208_1901103,4380_425 -4380_77973,297,4380_20719,Drogheda,62886-00008-1,1,4380_7778208_1901103,4380_427 -4380_77973,288,4380_20720,Drogheda,62884-00011-1,1,4380_7778208_1901103,4380_425 -4380_77973,287,4380_20721,Drogheda,62887-00012-1,1,4380_7778208_1901103,4380_425 -4380_77973,291,4380_20722,Drogheda,62889-00013-1,1,4380_7778208_1901103,4380_427 -4380_77973,289,4380_20723,Drogheda,62893-00014-1,1,4380_7778208_1901103,4380_425 -4380_77973,292,4380_20724,Drogheda,62896-00016-1,1,4380_7778208_1901103,4380_425 -4380_77973,293,4380_20725,Drogheda,62885-00017-1,1,4380_7778208_1901103,4380_425 -4380_77973,290,4380_20726,Drogheda,62892-00015-1,1,4380_7778208_1901103,4380_425 -4380_77973,294,4380_20727,Drogheda,62888-00018-1,1,4380_7778208_1901103,4380_425 -4380_77973,295,4380_20728,Drogheda,62894-00019-1,1,4380_7778208_1901103,4380_425 -4380_77973,296,4380_20729,Drogheda,62890-00021-1,1,4380_7778208_1901103,4380_427 -4380_77973,285,4380_20737,Drogheda,62822-00009-1,1,4380_7778208_1901102,4380_426 -4380_77973,286,4380_20738,Drogheda,62828-00010-1,1,4380_7778208_1901102,4380_426 -4380_77973,297,4380_20739,Drogheda,62819-00008-1,1,4380_7778208_1901102,4380_428 -4380_77973,288,4380_20740,Drogheda,62824-00011-1,1,4380_7778208_1901102,4380_426 -4380_77973,287,4380_20741,Drogheda,62820-00012-1,1,4380_7778208_1901102,4380_426 -4380_77973,291,4380_20742,Drogheda,62826-00013-1,1,4380_7778208_1901102,4380_428 -4380_77973,289,4380_20743,Drogheda,62830-00014-1,1,4380_7778208_1901102,4380_426 -4380_77973,292,4380_20744,Drogheda,62829-00016-1,1,4380_7778208_1901102,4380_426 -4380_77973,293,4380_20745,Drogheda,62825-00017-1,1,4380_7778208_1901102,4380_426 -4380_77973,290,4380_20746,Drogheda,62823-00015-1,1,4380_7778208_1901102,4380_426 -4380_77973,294,4380_20747,Drogheda,62821-00018-1,1,4380_7778208_1901102,4380_426 -4380_77973,295,4380_20748,Drogheda,62831-00019-1,1,4380_7778208_1901102,4380_426 -4380_77973,296,4380_20749,Drogheda,62827-00021-1,1,4380_7778208_1901102,4380_428 -4380_77973,285,4380_20757,Drogheda,66509-00009-1,1,4380_7778208_1901201,4380_427 -4380_77973,286,4380_20758,Drogheda,66518-00010-1,1,4380_7778208_1901201,4380_427 -4380_77973,297,4380_20759,Drogheda,66513-00008-1,1,4380_7778208_1901201,4380_425 -4380_77947,285,4380_2076,Drop Off,51095-00009-1,0,4380_7778208_1011105,4380_22 -4380_77973,288,4380_20760,Drogheda,66514-00011-1,1,4380_7778208_1901201,4380_427 -4380_77973,287,4380_20761,Drogheda,66516-00012-1,1,4380_7778208_1901201,4380_427 -4380_77973,291,4380_20762,Drogheda,66507-00013-1,1,4380_7778208_1901201,4380_425 -4380_77973,289,4380_20763,Drogheda,66511-00014-1,1,4380_7778208_1901201,4380_427 -4380_77973,292,4380_20764,Drogheda,66519-00016-1,1,4380_7778208_1901201,4380_427 -4380_77973,293,4380_20765,Drogheda,66515-00017-1,1,4380_7778208_1901201,4380_427 -4380_77973,290,4380_20766,Drogheda,66510-00015-1,1,4380_7778208_1901201,4380_427 -4380_77973,294,4380_20767,Drogheda,66517-00018-1,1,4380_7778208_1901201,4380_427 -4380_77973,295,4380_20768,Drogheda,66512-00019-1,1,4380_7778208_1901201,4380_427 -4380_77973,296,4380_20769,Drogheda,66508-00021-1,1,4380_7778208_1901201,4380_425 -4380_77947,286,4380_2077,Drop Off,51097-00010-1,0,4380_7778208_1011105,4380_22 -4380_77973,285,4380_20777,Drogheda,63007-00009-1,1,4380_7778208_1901104,4380_426 -4380_77973,286,4380_20778,Drogheda,63005-00010-1,1,4380_7778208_1901104,4380_426 -4380_77973,297,4380_20779,Drogheda,63011-00008-1,1,4380_7778208_1901104,4380_428 -4380_77947,297,4380_2078,Drop Off,51183-00008-1,0,4380_7778208_1011106,4380_24 -4380_77973,288,4380_20780,Drogheda,63003-00011-1,1,4380_7778208_1901104,4380_426 -4380_77973,287,4380_20781,Drogheda,63001-00012-1,1,4380_7778208_1901104,4380_426 -4380_77973,291,4380_20782,Drogheda,63012-00013-1,1,4380_7778208_1901104,4380_429 -4380_77973,289,4380_20783,Drogheda,63009-00014-1,1,4380_7778208_1901104,4380_426 -4380_77973,292,4380_20784,Drogheda,63006-00016-1,1,4380_7778208_1901104,4380_426 -4380_77973,293,4380_20785,Drogheda,63004-00017-1,1,4380_7778208_1901104,4380_426 -4380_77973,290,4380_20786,Drogheda,63008-00015-1,1,4380_7778208_1901104,4380_426 -4380_77973,294,4380_20787,Drogheda,63002-00018-1,1,4380_7778208_1901104,4380_426 -4380_77973,295,4380_20788,Drogheda,63010-00019-1,1,4380_7778208_1901104,4380_426 -4380_77973,296,4380_20789,Drogheda,63013-00021-1,1,4380_7778208_1901104,4380_429 -4380_77947,288,4380_2079,Drop Off,51089-00011-1,0,4380_7778208_1011105,4380_22 -4380_77973,285,4380_20797,Drogheda,66583-00009-1,1,4380_7778208_1901202,4380_427 -4380_77973,286,4380_20798,Drogheda,66579-00010-1,1,4380_7778208_1901202,4380_427 -4380_77973,297,4380_20799,Drogheda,66578-00008-1,1,4380_7778208_1901202,4380_425 -4380_77947,287,4380_2080,Drop Off,51091-00012-1,0,4380_7778208_1011105,4380_22 -4380_77973,288,4380_20800,Drogheda,66576-00011-1,1,4380_7778208_1901202,4380_427 -4380_77973,287,4380_20801,Drogheda,66574-00012-1,1,4380_7778208_1901202,4380_427 -4380_77973,291,4380_20802,Drogheda,66572-00013-1,1,4380_7778208_1901202,4380_425 -4380_77973,289,4380_20803,Drogheda,66581-00014-1,1,4380_7778208_1901202,4380_427 -4380_77973,292,4380_20804,Drogheda,66580-00016-1,1,4380_7778208_1901202,4380_427 -4380_77973,293,4380_20805,Drogheda,66577-00017-1,1,4380_7778208_1901202,4380_427 -4380_77973,290,4380_20806,Drogheda,66584-00015-1,1,4380_7778208_1901202,4380_427 -4380_77973,294,4380_20807,Drogheda,66575-00018-1,1,4380_7778208_1901202,4380_427 -4380_77973,295,4380_20808,Drogheda,66582-00019-1,1,4380_7778208_1901202,4380_427 -4380_77973,296,4380_20809,Drogheda,66573-00021-1,1,4380_7778208_1901202,4380_425 -4380_77947,289,4380_2081,Drop Off,51093-00014-1,0,4380_7778208_1011105,4380_22 -4380_77929,285,4380_20817,Wexford,43648-00009-1,0,4380_7778208_20801,4380_430 -4380_77929,286,4380_20818,Wexford,43650-00010-1,0,4380_7778208_20801,4380_430 -4380_77929,297,4380_20819,Wexford,43660-00008-1,0,4380_7778208_20801,4380_430 -4380_77947,290,4380_2082,Drop Off,51096-00015-1,0,4380_7778208_1011105,4380_22 -4380_77929,287,4380_20820,Wexford,43658-00012-1,0,4380_7778208_20801,4380_430 -4380_77929,288,4380_20821,Wexford,43652-00011-1,0,4380_7778208_20801,4380_430 -4380_77929,289,4380_20822,Wexford,43656-00014-1,0,4380_7778208_20801,4380_430 -4380_77929,290,4380_20823,Wexford,43649-00015-1,0,4380_7778208_20801,4380_430 -4380_77929,291,4380_20824,Wexford,43654-00013-1,0,4380_7778208_20801,4380_430 -4380_77929,292,4380_20825,Wexford,43651-00016-1,0,4380_7778208_20801,4380_430 -4380_77929,293,4380_20826,Wexford,43653-00017-1,0,4380_7778208_20801,4380_430 -4380_77929,295,4380_20827,Wexford,43657-00019-1,0,4380_7778208_20801,4380_430 -4380_77929,294,4380_20828,Wexford,43659-00018-1,0,4380_7778208_20801,4380_430 -4380_77929,296,4380_20829,Wexford,43655-00021-1,0,4380_7778208_20801,4380_430 -4380_77947,291,4380_2083,Drop Off,50770-00013-1,0,4380_7778208_1011102,4380_26 -4380_77929,285,4380_20837,Wexford,43733-00009-1,0,4380_7778208_20802,4380_430 -4380_77929,286,4380_20838,Wexford,43737-00010-1,0,4380_7778208_20802,4380_430 -4380_77929,297,4380_20839,Wexford,43728-00008-1,0,4380_7778208_20802,4380_430 -4380_77947,292,4380_2084,Drop Off,51098-00016-1,0,4380_7778208_1011105,4380_22 -4380_77929,287,4380_20840,Wexford,43726-00012-1,0,4380_7778208_20802,4380_430 -4380_77929,288,4380_20841,Wexford,43729-00011-1,0,4380_7778208_20802,4380_430 -4380_77929,289,4380_20842,Wexford,43731-00014-1,0,4380_7778208_20802,4380_430 -4380_77929,290,4380_20843,Wexford,43734-00015-1,0,4380_7778208_20802,4380_430 -4380_77929,291,4380_20844,Wexford,43735-00013-1,0,4380_7778208_20802,4380_430 -4380_77929,292,4380_20845,Wexford,43738-00016-1,0,4380_7778208_20802,4380_430 -4380_77929,293,4380_20846,Wexford,43730-00017-1,0,4380_7778208_20802,4380_430 -4380_77929,295,4380_20847,Wexford,43732-00019-1,0,4380_7778208_20802,4380_430 -4380_77929,294,4380_20848,Wexford,43727-00018-1,0,4380_7778208_20802,4380_430 -4380_77929,296,4380_20849,Wexford,43736-00021-1,0,4380_7778208_20802,4380_430 -4380_77947,293,4380_2085,Drop Off,51090-00017-1,0,4380_7778208_1011105,4380_22 -4380_77929,285,4380_20857,Wexford,43813-00009-1,0,4380_7778208_20803,4380_430 -4380_77929,286,4380_20858,Wexford,43807-00010-1,0,4380_7778208_20803,4380_430 -4380_77929,297,4380_20859,Wexford,43804-00008-1,0,4380_7778208_20803,4380_430 -4380_77947,294,4380_2086,Drop Off,51092-00018-1,0,4380_7778208_1011105,4380_22 -4380_77929,287,4380_20860,Wexford,43805-00012-1,0,4380_7778208_20803,4380_430 -4380_77929,288,4380_20861,Wexford,43815-00011-1,0,4380_7778208_20803,4380_430 -4380_77929,289,4380_20862,Wexford,43809-00014-1,0,4380_7778208_20803,4380_430 -4380_77929,290,4380_20863,Wexford,43814-00015-1,0,4380_7778208_20803,4380_430 -4380_77929,291,4380_20864,Wexford,43811-00013-1,0,4380_7778208_20803,4380_430 -4380_77929,292,4380_20865,Wexford,43808-00016-1,0,4380_7778208_20803,4380_430 -4380_77929,293,4380_20866,Wexford,43816-00017-1,0,4380_7778208_20803,4380_430 -4380_77929,295,4380_20867,Wexford,43810-00019-1,0,4380_7778208_20803,4380_430 -4380_77929,294,4380_20868,Wexford,43806-00018-1,0,4380_7778208_20803,4380_430 -4380_77929,296,4380_20869,Wexford,43812-00021-1,0,4380_7778208_20803,4380_430 -4380_77947,295,4380_2087,Drop Off,51094-00019-1,0,4380_7778208_1011105,4380_22 -4380_77929,285,4380_20876,Wexford,43866-00009-1,0,4380_7778208_20804,4380_430 -4380_77929,286,4380_20877,Wexford,43858-00010-1,0,4380_7778208_20804,4380_430 -4380_77929,287,4380_20878,Wexford,43856-00012-1,0,4380_7778208_20804,4380_430 -4380_77929,288,4380_20879,Wexford,43862-00011-1,0,4380_7778208_20804,4380_430 -4380_77947,296,4380_2088,Drop Off,50771-00021-1,0,4380_7778208_1011102,4380_26 -4380_77929,289,4380_20880,Wexford,43860-00014-1,0,4380_7778208_20804,4380_430 -4380_77929,290,4380_20881,Wexford,43867-00015-1,0,4380_7778208_20804,4380_430 -4380_77929,291,4380_20882,Wexford,43864-00013-1,0,4380_7778208_20804,4380_430 -4380_77929,292,4380_20883,Wexford,43859-00016-1,0,4380_7778208_20804,4380_430 -4380_77929,293,4380_20884,Wexford,43863-00017-1,0,4380_7778208_20804,4380_430 -4380_77929,295,4380_20885,Wexford,43861-00019-1,0,4380_7778208_20804,4380_430 -4380_77929,294,4380_20886,Wexford,43857-00018-1,0,4380_7778208_20804,4380_430 -4380_77929,296,4380_20887,Wexford,43865-00021-1,0,4380_7778208_20804,4380_430 -4380_77929,285,4380_20895,Wexford,43917-00009-1,0,4380_7778208_20805,4380_430 -4380_77929,286,4380_20896,Wexford,43911-00010-1,0,4380_7778208_20805,4380_430 -4380_77929,297,4380_20897,Wexford,43868-00008-1,0,4380_7778208_20804,4380_430 -4380_77929,287,4380_20898,Wexford,43915-00012-1,0,4380_7778208_20805,4380_430 -4380_77929,288,4380_20899,Wexford,43913-00011-1,0,4380_7778208_20805,4380_430 -4380_77929,289,4380_20900,Wexford,43909-00014-1,0,4380_7778208_20805,4380_430 -4380_77929,290,4380_20901,Wexford,43918-00015-1,0,4380_7778208_20805,4380_430 -4380_77929,291,4380_20902,Wexford,43907-00013-1,0,4380_7778208_20805,4380_430 -4380_77929,292,4380_20903,Wexford,43912-00016-1,0,4380_7778208_20805,4380_430 -4380_77929,293,4380_20904,Wexford,43914-00017-1,0,4380_7778208_20805,4380_430 -4380_77929,295,4380_20905,Wexford,43910-00019-1,0,4380_7778208_20805,4380_430 -4380_77929,294,4380_20906,Wexford,43916-00018-1,0,4380_7778208_20805,4380_430 -4380_77929,296,4380_20907,Wexford,43908-00021-1,0,4380_7778208_20805,4380_430 -4380_77929,285,4380_20914,Wexford,43959-00009-1,0,4380_7778208_20806,4380_430 -4380_77929,286,4380_20915,Wexford,43957-00010-1,0,4380_7778208_20806,4380_430 -4380_77929,287,4380_20916,Wexford,43965-00012-1,0,4380_7778208_20806,4380_430 -4380_77929,288,4380_20917,Wexford,43961-00011-1,0,4380_7778208_20806,4380_430 -4380_77929,289,4380_20918,Wexford,43963-00014-1,0,4380_7778208_20806,4380_430 -4380_77929,290,4380_20919,Wexford,43960-00015-1,0,4380_7778208_20806,4380_430 -4380_77929,291,4380_20920,Wexford,43967-00013-1,0,4380_7778208_20806,4380_430 -4380_77929,292,4380_20921,Wexford,43958-00016-1,0,4380_7778208_20806,4380_430 -4380_77929,293,4380_20922,Wexford,43962-00017-1,0,4380_7778208_20806,4380_430 -4380_77929,295,4380_20923,Wexford,43964-00019-1,0,4380_7778208_20806,4380_430 -4380_77929,294,4380_20924,Wexford,43966-00018-1,0,4380_7778208_20806,4380_430 -4380_77929,296,4380_20925,Wexford,43968-00021-1,0,4380_7778208_20806,4380_430 -4380_77929,285,4380_20933,Wexford,43677-00009-1,0,4380_7778208_20801,4380_431 -4380_77929,286,4380_20934,Wexford,43683-00010-1,0,4380_7778208_20801,4380_431 -4380_77929,297,4380_20935,Wexford,43674-00008-1,0,4380_7778208_20801,4380_431 -4380_77929,287,4380_20936,Wexford,43681-00012-1,0,4380_7778208_20801,4380_431 -4380_77929,288,4380_20937,Wexford,43675-00011-1,0,4380_7778208_20801,4380_431 -4380_77929,289,4380_20938,Wexford,43679-00014-1,0,4380_7778208_20801,4380_431 -4380_77929,290,4380_20939,Wexford,43678-00015-1,0,4380_7778208_20801,4380_431 -4380_77929,291,4380_20940,Wexford,43685-00013-1,0,4380_7778208_20801,4380_431 -4380_77929,292,4380_20941,Wexford,43684-00016-1,0,4380_7778208_20801,4380_431 -4380_77929,293,4380_20942,Wexford,43676-00017-1,0,4380_7778208_20801,4380_431 -4380_77929,295,4380_20943,Wexford,43680-00019-1,0,4380_7778208_20801,4380_431 -4380_77929,294,4380_20944,Wexford,43682-00018-1,0,4380_7778208_20801,4380_431 -4380_77929,296,4380_20945,Wexford,43686-00021-1,0,4380_7778208_20801,4380_431 -4380_77929,285,4380_20952,Wexford,43983-00009-1,0,4380_7778208_20807,4380_431 -4380_77929,286,4380_20953,Wexford,43993-00010-1,0,4380_7778208_20807,4380_431 -4380_77929,287,4380_20954,Wexford,43989-00012-1,0,4380_7778208_20807,4380_431 -4380_77929,288,4380_20955,Wexford,43985-00011-1,0,4380_7778208_20807,4380_431 -4380_77929,289,4380_20956,Wexford,43991-00014-1,0,4380_7778208_20807,4380_431 -4380_77929,290,4380_20957,Wexford,43984-00015-1,0,4380_7778208_20807,4380_431 -4380_77929,291,4380_20958,Wexford,43987-00013-1,0,4380_7778208_20807,4380_431 -4380_77929,292,4380_20959,Wexford,43994-00016-1,0,4380_7778208_20807,4380_431 -4380_77947,285,4380_2096,Drop Off,50888-00009-1,0,4380_7778208_1011103,4380_21 -4380_77929,293,4380_20960,Wexford,43986-00017-1,0,4380_7778208_20807,4380_431 -4380_77929,295,4380_20961,Wexford,43992-00019-1,0,4380_7778208_20807,4380_431 -4380_77929,294,4380_20962,Wexford,43990-00018-1,0,4380_7778208_20807,4380_431 -4380_77929,296,4380_20963,Wexford,43988-00021-1,0,4380_7778208_20807,4380_431 -4380_77947,286,4380_2097,Drop Off,50894-00010-1,0,4380_7778208_1011103,4380_21 -4380_77929,285,4380_20971,Wexford,43755-00009-1,0,4380_7778208_20802,4380_430 -4380_77929,286,4380_20972,Wexford,43757-00010-1,0,4380_7778208_20802,4380_430 -4380_77929,297,4380_20973,Wexford,43754-00008-1,0,4380_7778208_20802,4380_430 -4380_77929,287,4380_20974,Wexford,43763-00012-1,0,4380_7778208_20802,4380_430 -4380_77929,288,4380_20975,Wexford,43759-00011-1,0,4380_7778208_20802,4380_430 -4380_77929,289,4380_20976,Wexford,43761-00014-1,0,4380_7778208_20802,4380_430 -4380_77929,290,4380_20977,Wexford,43756-00015-1,0,4380_7778208_20802,4380_430 -4380_77929,291,4380_20978,Wexford,43752-00013-1,0,4380_7778208_20802,4380_430 -4380_77929,292,4380_20979,Wexford,43758-00016-1,0,4380_7778208_20802,4380_430 -4380_77947,297,4380_2098,Drop Off,51099-00008-1,0,4380_7778208_1011105,4380_23 -4380_77929,293,4380_20980,Wexford,43760-00017-1,0,4380_7778208_20802,4380_430 -4380_77929,295,4380_20981,Wexford,43762-00019-1,0,4380_7778208_20802,4380_430 -4380_77929,294,4380_20982,Wexford,43764-00018-1,0,4380_7778208_20802,4380_430 -4380_77929,296,4380_20983,Wexford,43753-00021-1,0,4380_7778208_20802,4380_430 -4380_77947,288,4380_2099,Drop Off,50896-00011-1,0,4380_7778208_1011103,4380_21 -4380_77929,285,4380_20991,Wexford,44009-00009-1,0,4380_7778208_20808,4380_430 -4380_77929,286,4380_20992,Wexford,44011-00010-1,0,4380_7778208_20808,4380_430 -4380_77929,297,4380_20993,Wexford,43926-00008-1,0,4380_7778208_20805,4380_430 -4380_77929,287,4380_20994,Wexford,44013-00012-1,0,4380_7778208_20808,4380_430 -4380_77929,288,4380_20995,Wexford,44015-00011-1,0,4380_7778208_20808,4380_430 -4380_77929,289,4380_20996,Wexford,44007-00014-1,0,4380_7778208_20808,4380_430 -4380_77929,290,4380_20997,Wexford,44010-00015-1,0,4380_7778208_20808,4380_430 -4380_77929,291,4380_20998,Wexford,44017-00013-1,0,4380_7778208_20808,4380_430 -4380_77929,292,4380_20999,Wexford,44012-00016-1,0,4380_7778208_20808,4380_430 -4380_77947,287,4380_2100,Drop Off,50892-00012-1,0,4380_7778208_1011103,4380_21 -4380_77929,293,4380_21000,Wexford,44016-00017-1,0,4380_7778208_20808,4380_430 -4380_77929,295,4380_21001,Wexford,44008-00019-1,0,4380_7778208_20808,4380_430 -4380_77929,294,4380_21002,Wexford,44014-00018-1,0,4380_7778208_20808,4380_430 -4380_77929,296,4380_21003,Wexford,44018-00021-1,0,4380_7778208_20808,4380_430 -4380_77947,289,4380_2101,Drop Off,50890-00014-1,0,4380_7778208_1011103,4380_21 -4380_77929,285,4380_21011,Wexford,43837-00009-1,0,4380_7778208_20803,4380_431 -4380_77929,286,4380_21012,Wexford,43839-00010-1,0,4380_7778208_20803,4380_431 -4380_77929,297,4380_21013,Wexford,43836-00008-1,0,4380_7778208_20803,4380_431 -4380_77929,287,4380_21014,Wexford,43832-00012-1,0,4380_7778208_20803,4380_431 -4380_77929,288,4380_21015,Wexford,43841-00011-1,0,4380_7778208_20803,4380_431 -4380_77929,289,4380_21016,Wexford,43834-00014-1,0,4380_7778208_20803,4380_431 -4380_77929,290,4380_21017,Wexford,43838-00015-1,0,4380_7778208_20803,4380_431 -4380_77929,291,4380_21018,Wexford,43830-00013-1,0,4380_7778208_20803,4380_431 -4380_77929,292,4380_21019,Wexford,43840-00016-1,0,4380_7778208_20803,4380_431 -4380_77947,290,4380_2102,Drop Off,50889-00015-1,0,4380_7778208_1011103,4380_21 -4380_77929,293,4380_21020,Wexford,43842-00017-1,0,4380_7778208_20803,4380_431 -4380_77929,295,4380_21021,Wexford,43835-00019-1,0,4380_7778208_20803,4380_431 -4380_77929,294,4380_21022,Wexford,43833-00018-1,0,4380_7778208_20803,4380_431 -4380_77929,296,4380_21023,Wexford,43831-00021-1,0,4380_7778208_20803,4380_431 -4380_77947,291,4380_2103,Drop Off,51184-00013-1,0,4380_7778208_1011106,4380_25 -4380_77929,285,4380_21031,Wexford,43886-00009-1,0,4380_7778208_20804,4380_430 -4380_77929,286,4380_21032,Wexford,43890-00010-1,0,4380_7778208_20804,4380_430 -4380_77929,297,4380_21033,Wexford,43970-00008-1,0,4380_7778208_20806,4380_430 -4380_77929,287,4380_21034,Wexford,43882-00012-1,0,4380_7778208_20804,4380_430 -4380_77929,288,4380_21035,Wexford,43888-00011-1,0,4380_7778208_20804,4380_430 -4380_77929,289,4380_21036,Wexford,43892-00014-1,0,4380_7778208_20804,4380_430 -4380_77929,290,4380_21037,Wexford,43887-00015-1,0,4380_7778208_20804,4380_430 -4380_77929,291,4380_21038,Wexford,43884-00013-1,0,4380_7778208_20804,4380_430 -4380_77929,292,4380_21039,Wexford,43891-00016-1,0,4380_7778208_20804,4380_430 -4380_77947,292,4380_2104,Drop Off,50895-00016-1,0,4380_7778208_1011103,4380_21 -4380_77929,293,4380_21040,Wexford,43889-00017-1,0,4380_7778208_20804,4380_430 -4380_77929,295,4380_21041,Wexford,43893-00019-1,0,4380_7778208_20804,4380_430 -4380_77929,294,4380_21042,Wexford,43883-00018-1,0,4380_7778208_20804,4380_430 -4380_77929,296,4380_21043,Wexford,43885-00021-1,0,4380_7778208_20804,4380_430 -4380_77947,293,4380_2105,Drop Off,50897-00017-1,0,4380_7778208_1011103,4380_21 -4380_77929,285,4380_21051,Wexford,43933-00009-1,0,4380_7778208_20805,4380_430 -4380_77929,286,4380_21052,Wexford,43943-00010-1,0,4380_7778208_20805,4380_430 -4380_77929,297,4380_21053,Wexford,43894-00008-1,0,4380_7778208_20804,4380_430 -4380_77929,287,4380_21054,Wexford,43939-00012-1,0,4380_7778208_20805,4380_430 -4380_77929,288,4380_21055,Wexford,43935-00011-1,0,4380_7778208_20805,4380_430 -4380_77929,289,4380_21056,Wexford,43937-00014-1,0,4380_7778208_20805,4380_430 -4380_77929,290,4380_21057,Wexford,43934-00015-1,0,4380_7778208_20805,4380_430 -4380_77929,291,4380_21058,Wexford,43941-00013-1,0,4380_7778208_20805,4380_430 -4380_77929,292,4380_21059,Wexford,43944-00016-1,0,4380_7778208_20805,4380_430 -4380_77947,294,4380_2106,Drop Off,50893-00018-1,0,4380_7778208_1011103,4380_21 -4380_77929,293,4380_21060,Wexford,43936-00017-1,0,4380_7778208_20805,4380_430 -4380_77929,295,4380_21061,Wexford,43938-00019-1,0,4380_7778208_20805,4380_430 -4380_77929,294,4380_21062,Wexford,43940-00018-1,0,4380_7778208_20805,4380_430 -4380_77929,296,4380_21063,Wexford,43942-00021-1,0,4380_7778208_20805,4380_430 -4380_77947,295,4380_2107,Drop Off,50891-00019-1,0,4380_7778208_1011103,4380_21 -4380_77929,285,4380_21071,Wexford,43708-00009-1,0,4380_7778208_20801,4380_430 -4380_77929,286,4380_21072,Wexford,43710-00010-1,0,4380_7778208_20801,4380_430 -4380_77929,297,4380_21073,Wexford,43712-00008-1,0,4380_7778208_20801,4380_430 -4380_77929,287,4380_21074,Wexford,43704-00012-1,0,4380_7778208_20801,4380_430 -4380_77929,288,4380_21075,Wexford,43706-00011-1,0,4380_7778208_20801,4380_430 -4380_77929,289,4380_21076,Wexford,43702-00014-1,0,4380_7778208_20801,4380_430 -4380_77929,290,4380_21077,Wexford,43709-00015-1,0,4380_7778208_20801,4380_430 -4380_77929,291,4380_21078,Wexford,43700-00013-1,0,4380_7778208_20801,4380_430 -4380_77929,292,4380_21079,Wexford,43711-00016-1,0,4380_7778208_20801,4380_430 -4380_77947,296,4380_2108,Drop Off,51185-00021-1,0,4380_7778208_1011106,4380_25 -4380_77929,293,4380_21080,Wexford,43707-00017-1,0,4380_7778208_20801,4380_430 -4380_77929,295,4380_21081,Wexford,43703-00019-1,0,4380_7778208_20801,4380_430 -4380_77929,294,4380_21082,Wexford,43705-00018-1,0,4380_7778208_20801,4380_430 -4380_77929,296,4380_21083,Wexford,43701-00021-1,0,4380_7778208_20801,4380_430 -4380_77929,285,4380_21091,Wexford,43780-00009-1,0,4380_7778208_20802,4380_430 -4380_77929,286,4380_21092,Wexford,43782-00010-1,0,4380_7778208_20802,4380_430 -4380_77929,297,4380_21093,Wexford,43790-00008-1,0,4380_7778208_20802,4380_430 -4380_77929,287,4380_21094,Wexford,43784-00012-1,0,4380_7778208_20802,4380_430 -4380_77929,288,4380_21095,Wexford,43788-00011-1,0,4380_7778208_20802,4380_430 -4380_77929,289,4380_21096,Wexford,43778-00014-1,0,4380_7778208_20802,4380_430 -4380_77929,290,4380_21097,Wexford,43781-00015-1,0,4380_7778208_20802,4380_430 -4380_77929,291,4380_21098,Wexford,43786-00013-1,0,4380_7778208_20802,4380_430 -4380_77929,292,4380_21099,Wexford,43783-00016-1,0,4380_7778208_20802,4380_430 -4380_77929,293,4380_21100,Wexford,43789-00017-1,0,4380_7778208_20802,4380_430 -4380_77929,295,4380_21101,Wexford,43779-00019-1,0,4380_7778208_20802,4380_430 -4380_77929,294,4380_21102,Wexford,43785-00018-1,0,4380_7778208_20802,4380_430 -4380_77929,296,4380_21103,Wexford,43787-00021-1,0,4380_7778208_20802,4380_430 -4380_77929,285,4380_21111,Dublin Airport,43643-00009-1,1,4380_7778208_20801,4380_432 -4380_77929,286,4380_21112,Dublin Airport,43646-00010-1,1,4380_7778208_20801,4380_432 -4380_77929,297,4380_21113,Dublin Airport,43645-00008-1,1,4380_7778208_20801,4380_432 -4380_77929,287,4380_21114,Dublin Airport,43641-00012-1,1,4380_7778208_20801,4380_432 -4380_77929,288,4380_21115,Dublin Airport,43635-00011-1,1,4380_7778208_20801,4380_432 -4380_77929,289,4380_21116,Dublin Airport,43637-00014-1,1,4380_7778208_20801,4380_432 -4380_77929,290,4380_21117,Dublin Airport,43644-00015-1,1,4380_7778208_20801,4380_432 -4380_77929,291,4380_21118,Dublin Airport,43639-00013-1,1,4380_7778208_20801,4380_432 -4380_77929,292,4380_21119,Dublin Airport,43647-00016-1,1,4380_7778208_20801,4380_432 -4380_77929,293,4380_21120,Dublin Airport,43636-00017-1,1,4380_7778208_20801,4380_432 -4380_77929,295,4380_21121,Dublin Airport,43638-00019-1,1,4380_7778208_20801,4380_432 -4380_77929,294,4380_21122,Dublin Airport,43642-00018-1,1,4380_7778208_20801,4380_432 -4380_77929,296,4380_21123,Dublin Airport,43640-00021-1,1,4380_7778208_20801,4380_432 -4380_77929,285,4380_21131,Dublin Airport,43722-00009-1,1,4380_7778208_20802,4380_432 -4380_77929,286,4380_21132,Dublin Airport,43713-00010-1,1,4380_7778208_20802,4380_432 -4380_77929,297,4380_21133,Dublin Airport,43721-00008-1,1,4380_7778208_20802,4380_432 -4380_77929,287,4380_21134,Dublin Airport,43719-00012-1,1,4380_7778208_20802,4380_432 -4380_77929,288,4380_21135,Dublin Airport,43717-00011-1,1,4380_7778208_20802,4380_432 -4380_77929,289,4380_21136,Dublin Airport,43715-00014-1,1,4380_7778208_20802,4380_432 -4380_77929,290,4380_21137,Dublin Airport,43723-00015-1,1,4380_7778208_20802,4380_432 -4380_77929,291,4380_21138,Dublin Airport,43724-00013-1,1,4380_7778208_20802,4380_432 -4380_77929,292,4380_21139,Dublin Airport,43714-00016-1,1,4380_7778208_20802,4380_432 -4380_77929,293,4380_21140,Dublin Airport,43718-00017-1,1,4380_7778208_20802,4380_432 -4380_77929,295,4380_21141,Dublin Airport,43716-00019-1,1,4380_7778208_20802,4380_432 -4380_77929,294,4380_21142,Dublin Airport,43720-00018-1,1,4380_7778208_20802,4380_432 -4380_77929,296,4380_21143,Dublin Airport,43725-00021-1,1,4380_7778208_20802,4380_432 -4380_77929,285,4380_21151,Dublin Airport,43798-00009-1,1,4380_7778208_20803,4380_432 -4380_77929,286,4380_21152,Dublin Airport,43802-00010-1,1,4380_7778208_20803,4380_432 -4380_77929,297,4380_21153,Dublin Airport,43795-00008-1,1,4380_7778208_20803,4380_432 -4380_77929,287,4380_21154,Dublin Airport,43796-00012-1,1,4380_7778208_20803,4380_432 -4380_77929,288,4380_21155,Dublin Airport,43800-00011-1,1,4380_7778208_20803,4380_432 -4380_77929,289,4380_21156,Dublin Airport,43791-00014-1,1,4380_7778208_20803,4380_432 -4380_77929,290,4380_21157,Dublin Airport,43799-00015-1,1,4380_7778208_20803,4380_432 -4380_77929,291,4380_21158,Dublin Airport,43793-00013-1,1,4380_7778208_20803,4380_432 -4380_77929,292,4380_21159,Dublin Airport,43803-00016-1,1,4380_7778208_20803,4380_432 -4380_77947,285,4380_2116,Drop Off,51286-00009-1,0,4380_7778208_1011107,4380_21 -4380_77929,293,4380_21160,Dublin Airport,43801-00017-1,1,4380_7778208_20803,4380_432 -4380_77929,295,4380_21161,Dublin Airport,43792-00019-1,1,4380_7778208_20803,4380_432 -4380_77929,294,4380_21162,Dublin Airport,43797-00018-1,1,4380_7778208_20803,4380_432 -4380_77929,296,4380_21163,Dublin Airport,43794-00021-1,1,4380_7778208_20803,4380_432 -4380_77947,286,4380_2117,Drop Off,51284-00010-1,0,4380_7778208_1011107,4380_21 -4380_77929,285,4380_21170,Dublin Airport,43851-00009-1,1,4380_7778208_20804,4380_433 -4380_77929,286,4380_21171,Dublin Airport,43847-00010-1,1,4380_7778208_20804,4380_433 -4380_77929,287,4380_21172,Dublin Airport,43845-00012-1,1,4380_7778208_20804,4380_433 -4380_77929,288,4380_21173,Dublin Airport,43853-00011-1,1,4380_7778208_20804,4380_433 -4380_77929,289,4380_21174,Dublin Airport,43843-00014-1,1,4380_7778208_20804,4380_433 -4380_77929,290,4380_21175,Dublin Airport,43852-00015-1,1,4380_7778208_20804,4380_433 -4380_77929,291,4380_21176,Dublin Airport,43849-00013-1,1,4380_7778208_20804,4380_433 -4380_77929,292,4380_21177,Dublin Airport,43848-00016-1,1,4380_7778208_20804,4380_433 -4380_77929,293,4380_21178,Dublin Airport,43854-00017-1,1,4380_7778208_20804,4380_433 -4380_77929,295,4380_21179,Dublin Airport,43844-00019-1,1,4380_7778208_20804,4380_433 -4380_77947,297,4380_2118,Drop Off,51420-00008-1,0,4380_7778208_1011109,4380_23 -4380_77929,294,4380_21180,Dublin Airport,43846-00018-1,1,4380_7778208_20804,4380_433 -4380_77929,296,4380_21181,Dublin Airport,43850-00021-1,1,4380_7778208_20804,4380_433 -4380_77929,285,4380_21189,Dublin Airport,43903-00009-1,1,4380_7778208_20805,4380_432 -4380_77947,288,4380_2119,Drop Off,51278-00011-1,0,4380_7778208_1011107,4380_21 -4380_77929,286,4380_21190,Dublin Airport,43897-00010-1,1,4380_7778208_20805,4380_432 -4380_77929,297,4380_21191,Dublin Airport,43855-00008-1,1,4380_7778208_20804,4380_432 -4380_77929,287,4380_21192,Dublin Airport,43899-00012-1,1,4380_7778208_20805,4380_432 -4380_77929,288,4380_21193,Dublin Airport,43905-00011-1,1,4380_7778208_20805,4380_432 -4380_77929,289,4380_21194,Dublin Airport,43895-00014-1,1,4380_7778208_20805,4380_432 -4380_77929,290,4380_21195,Dublin Airport,43904-00015-1,1,4380_7778208_20805,4380_432 -4380_77929,291,4380_21196,Dublin Airport,43901-00013-1,1,4380_7778208_20805,4380_432 -4380_77929,292,4380_21197,Dublin Airport,43898-00016-1,1,4380_7778208_20805,4380_432 -4380_77929,293,4380_21198,Dublin Airport,43906-00017-1,1,4380_7778208_20805,4380_432 -4380_77929,295,4380_21199,Dublin Airport,43896-00019-1,1,4380_7778208_20805,4380_432 -4380_77946,285,4380_212,Dundalk,50509-00009-1,0,4380_7778208_1000915,4380_1 -4380_77947,287,4380_2120,Drop Off,51282-00012-1,0,4380_7778208_1011107,4380_21 -4380_77929,294,4380_21200,Dublin Airport,43900-00018-1,1,4380_7778208_20805,4380_432 -4380_77929,296,4380_21201,Dublin Airport,43902-00021-1,1,4380_7778208_20805,4380_432 -4380_77929,285,4380_21208,Dublin Airport,43951-00009-1,1,4380_7778208_20806,4380_433 -4380_77929,286,4380_21209,Dublin Airport,43955-00010-1,1,4380_7778208_20806,4380_433 -4380_77947,289,4380_2121,Drop Off,51280-00014-1,0,4380_7778208_1011107,4380_21 -4380_77929,287,4380_21210,Dublin Airport,43949-00012-1,1,4380_7778208_20806,4380_433 -4380_77929,288,4380_21211,Dublin Airport,43953-00011-1,1,4380_7778208_20806,4380_433 -4380_77929,289,4380_21212,Dublin Airport,43947-00014-1,1,4380_7778208_20806,4380_433 -4380_77929,290,4380_21213,Dublin Airport,43952-00015-1,1,4380_7778208_20806,4380_433 -4380_77929,291,4380_21214,Dublin Airport,43945-00013-1,1,4380_7778208_20806,4380_433 -4380_77929,292,4380_21215,Dublin Airport,43956-00016-1,1,4380_7778208_20806,4380_433 -4380_77929,293,4380_21216,Dublin Airport,43954-00017-1,1,4380_7778208_20806,4380_433 -4380_77929,295,4380_21217,Dublin Airport,43948-00019-1,1,4380_7778208_20806,4380_433 -4380_77929,294,4380_21218,Dublin Airport,43950-00018-1,1,4380_7778208_20806,4380_433 -4380_77929,296,4380_21219,Dublin Airport,43946-00021-1,1,4380_7778208_20806,4380_433 -4380_77947,290,4380_2122,Drop Off,51287-00015-1,0,4380_7778208_1011107,4380_21 -4380_77929,285,4380_21227,Dublin Airport,43670-00009-1,1,4380_7778208_20801,4380_433 -4380_77929,286,4380_21228,Dublin Airport,43661-00010-1,1,4380_7778208_20801,4380_433 -4380_77929,297,4380_21229,Dublin Airport,43663-00008-1,1,4380_7778208_20801,4380_433 -4380_77947,291,4380_2123,Drop Off,51361-00013-1,0,4380_7778208_1011108,4380_25 -4380_77929,287,4380_21230,Dublin Airport,43672-00012-1,1,4380_7778208_20801,4380_433 -4380_77929,288,4380_21231,Dublin Airport,43666-00011-1,1,4380_7778208_20801,4380_433 -4380_77929,289,4380_21232,Dublin Airport,43664-00014-1,1,4380_7778208_20801,4380_433 -4380_77929,290,4380_21233,Dublin Airport,43671-00015-1,1,4380_7778208_20801,4380_433 -4380_77929,291,4380_21234,Dublin Airport,43668-00013-1,1,4380_7778208_20801,4380_433 -4380_77929,292,4380_21235,Dublin Airport,43662-00016-1,1,4380_7778208_20801,4380_433 -4380_77929,293,4380_21236,Dublin Airport,43667-00017-1,1,4380_7778208_20801,4380_433 -4380_77929,295,4380_21237,Dublin Airport,43665-00019-1,1,4380_7778208_20801,4380_433 -4380_77929,294,4380_21238,Dublin Airport,43673-00018-1,1,4380_7778208_20801,4380_433 -4380_77929,296,4380_21239,Dublin Airport,43669-00021-1,1,4380_7778208_20801,4380_433 -4380_77947,292,4380_2124,Drop Off,51285-00016-1,0,4380_7778208_1011107,4380_21 -4380_77929,285,4380_21246,Dublin Airport,43977-00009-1,1,4380_7778208_20807,4380_432 -4380_77929,286,4380_21247,Dublin Airport,43981-00010-1,1,4380_7778208_20807,4380_432 -4380_77929,287,4380_21248,Dublin Airport,43971-00012-1,1,4380_7778208_20807,4380_432 -4380_77929,288,4380_21249,Dublin Airport,43979-00011-1,1,4380_7778208_20807,4380_432 -4380_77947,293,4380_2125,Drop Off,51279-00017-1,0,4380_7778208_1011107,4380_21 -4380_77929,289,4380_21250,Dublin Airport,43973-00014-1,1,4380_7778208_20807,4380_432 -4380_77929,290,4380_21251,Dublin Airport,43978-00015-1,1,4380_7778208_20807,4380_432 -4380_77929,291,4380_21252,Dublin Airport,43975-00013-1,1,4380_7778208_20807,4380_432 -4380_77929,292,4380_21253,Dublin Airport,43982-00016-1,1,4380_7778208_20807,4380_432 -4380_77929,293,4380_21254,Dublin Airport,43980-00017-1,1,4380_7778208_20807,4380_432 -4380_77929,295,4380_21255,Dublin Airport,43974-00019-1,1,4380_7778208_20807,4380_432 -4380_77929,294,4380_21256,Dublin Airport,43972-00018-1,1,4380_7778208_20807,4380_432 -4380_77929,296,4380_21257,Dublin Airport,43976-00021-1,1,4380_7778208_20807,4380_432 -4380_77947,294,4380_2126,Drop Off,51283-00018-1,0,4380_7778208_1011107,4380_21 -4380_77929,285,4380_21265,Dublin Airport,43741-00009-1,1,4380_7778208_20802,4380_432 -4380_77929,286,4380_21266,Dublin Airport,43739-00010-1,1,4380_7778208_20802,4380_432 -4380_77929,297,4380_21267,Dublin Airport,43745-00008-1,1,4380_7778208_20802,4380_432 -4380_77929,287,4380_21268,Dublin Airport,43750-00012-1,1,4380_7778208_20802,4380_432 -4380_77929,288,4380_21269,Dublin Airport,43748-00011-1,1,4380_7778208_20802,4380_432 -4380_77947,295,4380_2127,Drop Off,51281-00019-1,0,4380_7778208_1011107,4380_21 -4380_77929,289,4380_21270,Dublin Airport,43746-00014-1,1,4380_7778208_20802,4380_432 -4380_77929,290,4380_21271,Dublin Airport,43742-00015-1,1,4380_7778208_20802,4380_432 -4380_77929,291,4380_21272,Dublin Airport,43743-00013-1,1,4380_7778208_20802,4380_432 -4380_77929,292,4380_21273,Dublin Airport,43740-00016-1,1,4380_7778208_20802,4380_432 -4380_77929,293,4380_21274,Dublin Airport,43749-00017-1,1,4380_7778208_20802,4380_432 -4380_77929,295,4380_21275,Dublin Airport,43747-00019-1,1,4380_7778208_20802,4380_432 -4380_77929,294,4380_21276,Dublin Airport,43751-00018-1,1,4380_7778208_20802,4380_432 -4380_77929,296,4380_21277,Dublin Airport,43744-00021-1,1,4380_7778208_20802,4380_432 -4380_77947,296,4380_2128,Drop Off,51362-00021-1,0,4380_7778208_1011108,4380_25 -4380_77929,285,4380_21285,Dublin Airport,44001-00009-1,1,4380_7778208_20808,4380_432 -4380_77929,286,4380_21286,Dublin Airport,44005-00010-1,1,4380_7778208_20808,4380_432 -4380_77929,297,4380_21287,Dublin Airport,43919-00008-1,1,4380_7778208_20805,4380_432 -4380_77929,287,4380_21288,Dublin Airport,43995-00012-1,1,4380_7778208_20808,4380_432 -4380_77929,288,4380_21289,Dublin Airport,44003-00011-1,1,4380_7778208_20808,4380_432 -4380_77929,289,4380_21290,Dublin Airport,43997-00014-1,1,4380_7778208_20808,4380_432 -4380_77929,290,4380_21291,Dublin Airport,44002-00015-1,1,4380_7778208_20808,4380_432 -4380_77929,291,4380_21292,Dublin Airport,43999-00013-1,1,4380_7778208_20808,4380_432 -4380_77929,292,4380_21293,Dublin Airport,44006-00016-1,1,4380_7778208_20808,4380_432 -4380_77929,293,4380_21294,Dublin Airport,44004-00017-1,1,4380_7778208_20808,4380_432 -4380_77929,295,4380_21295,Dublin Airport,43998-00019-1,1,4380_7778208_20808,4380_432 -4380_77929,294,4380_21296,Dublin Airport,43996-00018-1,1,4380_7778208_20808,4380_432 -4380_77929,296,4380_21297,Dublin Airport,44000-00021-1,1,4380_7778208_20808,4380_432 -4380_77946,286,4380_213,Dundalk,50513-00010-1,0,4380_7778208_1000915,4380_1 -4380_77929,285,4380_21305,Dublin Airport,43819-00009-1,1,4380_7778208_20803,4380_432 -4380_77929,286,4380_21306,Dublin Airport,43826-00010-1,1,4380_7778208_20803,4380_432 -4380_77929,297,4380_21307,Dublin Airport,43821-00008-1,1,4380_7778208_20803,4380_432 -4380_77929,287,4380_21308,Dublin Airport,43822-00012-1,1,4380_7778208_20803,4380_432 -4380_77929,288,4380_21309,Dublin Airport,43817-00011-1,1,4380_7778208_20803,4380_432 -4380_77929,289,4380_21310,Dublin Airport,43824-00014-1,1,4380_7778208_20803,4380_432 -4380_77929,290,4380_21311,Dublin Airport,43820-00015-1,1,4380_7778208_20803,4380_432 -4380_77929,291,4380_21312,Dublin Airport,43828-00013-1,1,4380_7778208_20803,4380_432 -4380_77929,292,4380_21313,Dublin Airport,43827-00016-1,1,4380_7778208_20803,4380_432 -4380_77929,293,4380_21314,Dublin Airport,43818-00017-1,1,4380_7778208_20803,4380_432 -4380_77929,295,4380_21315,Dublin Airport,43825-00019-1,1,4380_7778208_20803,4380_432 -4380_77929,294,4380_21316,Dublin Airport,43823-00018-1,1,4380_7778208_20803,4380_432 -4380_77929,296,4380_21317,Dublin Airport,43829-00021-1,1,4380_7778208_20803,4380_432 -4380_77929,285,4380_21325,Dublin Airport,43879-00009-1,1,4380_7778208_20804,4380_432 -4380_77929,286,4380_21326,Dublin Airport,43871-00010-1,1,4380_7778208_20804,4380_432 -4380_77929,297,4380_21327,Dublin Airport,43969-00008-1,1,4380_7778208_20806,4380_432 -4380_77929,287,4380_21328,Dublin Airport,43875-00012-1,1,4380_7778208_20804,4380_432 -4380_77929,288,4380_21329,Dublin Airport,43869-00011-1,1,4380_7778208_20804,4380_432 -4380_77929,289,4380_21330,Dublin Airport,43873-00014-1,1,4380_7778208_20804,4380_432 -4380_77929,290,4380_21331,Dublin Airport,43880-00015-1,1,4380_7778208_20804,4380_432 -4380_77929,291,4380_21332,Dublin Airport,43877-00013-1,1,4380_7778208_20804,4380_432 -4380_77929,292,4380_21333,Dublin Airport,43872-00016-1,1,4380_7778208_20804,4380_432 -4380_77929,293,4380_21334,Dublin Airport,43870-00017-1,1,4380_7778208_20804,4380_432 -4380_77929,295,4380_21335,Dublin Airport,43874-00019-1,1,4380_7778208_20804,4380_432 -4380_77929,294,4380_21336,Dublin Airport,43876-00018-1,1,4380_7778208_20804,4380_432 -4380_77929,296,4380_21337,Dublin Airport,43878-00021-1,1,4380_7778208_20804,4380_432 -4380_77929,285,4380_21345,Dublin Airport,43927-00009-1,1,4380_7778208_20805,4380_432 -4380_77929,286,4380_21346,Dublin Airport,43924-00010-1,1,4380_7778208_20805,4380_432 -4380_77929,297,4380_21347,Dublin Airport,43881-00008-1,1,4380_7778208_20804,4380_432 -4380_77929,287,4380_21348,Dublin Airport,43929-00012-1,1,4380_7778208_20805,4380_432 -4380_77929,288,4380_21349,Dublin Airport,43920-00011-1,1,4380_7778208_20805,4380_432 -4380_77929,289,4380_21350,Dublin Airport,43922-00014-1,1,4380_7778208_20805,4380_432 -4380_77929,290,4380_21351,Dublin Airport,43928-00015-1,1,4380_7778208_20805,4380_432 -4380_77929,291,4380_21352,Dublin Airport,43931-00013-1,1,4380_7778208_20805,4380_432 -4380_77929,292,4380_21353,Dublin Airport,43925-00016-1,1,4380_7778208_20805,4380_432 -4380_77929,293,4380_21354,Dublin Airport,43921-00017-1,1,4380_7778208_20805,4380_432 -4380_77929,295,4380_21355,Dublin Airport,43923-00019-1,1,4380_7778208_20805,4380_432 -4380_77929,294,4380_21356,Dublin Airport,43930-00018-1,1,4380_7778208_20805,4380_432 -4380_77929,296,4380_21357,Dublin Airport,43932-00021-1,1,4380_7778208_20805,4380_432 -4380_77947,285,4380_2136,Drop Off,51683-00009-1,0,4380_7778208_1011113,4380_21 -4380_77929,285,4380_21365,Dublin Airport,43691-00009-1,1,4380_7778208_20801,4380_432 -4380_77929,286,4380_21366,Dublin Airport,43697-00010-1,1,4380_7778208_20801,4380_432 -4380_77929,297,4380_21367,Dublin Airport,43699-00008-1,1,4380_7778208_20801,4380_432 -4380_77929,287,4380_21368,Dublin Airport,43687-00012-1,1,4380_7778208_20801,4380_432 -4380_77929,288,4380_21369,Dublin Airport,43695-00011-1,1,4380_7778208_20801,4380_432 -4380_77947,286,4380_2137,Drop Off,51681-00010-1,0,4380_7778208_1011113,4380_21 -4380_77929,289,4380_21370,Dublin Airport,43689-00014-1,1,4380_7778208_20801,4380_432 -4380_77929,290,4380_21371,Dublin Airport,43692-00015-1,1,4380_7778208_20801,4380_432 -4380_77929,291,4380_21372,Dublin Airport,43693-00013-1,1,4380_7778208_20801,4380_432 -4380_77929,292,4380_21373,Dublin Airport,43698-00016-1,1,4380_7778208_20801,4380_432 -4380_77929,293,4380_21374,Dublin Airport,43696-00017-1,1,4380_7778208_20801,4380_432 -4380_77929,295,4380_21375,Dublin Airport,43690-00019-1,1,4380_7778208_20801,4380_432 -4380_77929,294,4380_21376,Dublin Airport,43688-00018-1,1,4380_7778208_20801,4380_432 -4380_77929,296,4380_21377,Dublin Airport,43694-00021-1,1,4380_7778208_20801,4380_432 -4380_77947,297,4380_2138,Drop Off,51506-00008-1,0,4380_7778208_1011110,4380_23 -4380_77929,285,4380_21385,Dublin Airport,43769-00009-1,1,4380_7778208_20802,4380_432 -4380_77929,286,4380_21386,Dublin Airport,43767-00010-1,1,4380_7778208_20802,4380_432 -4380_77929,297,4380_21387,Dublin Airport,43777-00008-1,1,4380_7778208_20802,4380_432 -4380_77929,287,4380_21388,Dublin Airport,43765-00012-1,1,4380_7778208_20802,4380_432 -4380_77929,288,4380_21389,Dublin Airport,43775-00011-1,1,4380_7778208_20802,4380_432 -4380_77947,288,4380_2139,Drop Off,51677-00011-1,0,4380_7778208_1011113,4380_21 -4380_77929,289,4380_21390,Dublin Airport,43771-00014-1,1,4380_7778208_20802,4380_432 -4380_77929,290,4380_21391,Dublin Airport,43770-00015-1,1,4380_7778208_20802,4380_432 -4380_77929,291,4380_21392,Dublin Airport,43773-00013-1,1,4380_7778208_20802,4380_432 -4380_77929,292,4380_21393,Dublin Airport,43768-00016-1,1,4380_7778208_20802,4380_432 -4380_77929,293,4380_21394,Dublin Airport,43776-00017-1,1,4380_7778208_20802,4380_432 -4380_77929,295,4380_21395,Dublin Airport,43772-00019-1,1,4380_7778208_20802,4380_432 -4380_77929,294,4380_21396,Dublin Airport,43766-00018-1,1,4380_7778208_20802,4380_432 -4380_77929,296,4380_21397,Dublin Airport,43774-00021-1,1,4380_7778208_20802,4380_432 -4380_77946,297,4380_214,Dundalk,50228-00008-1,0,4380_7778208_1000909,4380_2 -4380_77947,287,4380_2140,Drop Off,51685-00012-1,0,4380_7778208_1011113,4380_21 -4380_77974,285,4380_21403,University Hospital,66589-00009-1,0,4380_7778208_2010201,4380_434 -4380_77974,286,4380_21404,University Hospital,66587-00010-1,0,4380_7778208_2010201,4380_434 -4380_77974,288,4380_21405,University Hospital,66593-00011-1,0,4380_7778208_2010201,4380_434 -4380_77974,287,4380_21406,University Hospital,66591-00012-1,0,4380_7778208_2010201,4380_434 -4380_77974,289,4380_21407,University Hospital,66585-00014-1,0,4380_7778208_2010201,4380_434 -4380_77974,292,4380_21408,University Hospital,66588-00016-1,0,4380_7778208_2010201,4380_434 -4380_77974,293,4380_21409,University Hospital,66594-00017-1,0,4380_7778208_2010201,4380_434 -4380_77947,289,4380_2141,Drop Off,51679-00014-1,0,4380_7778208_1011113,4380_21 -4380_77974,290,4380_21410,University Hospital,66590-00015-1,0,4380_7778208_2010201,4380_434 -4380_77974,294,4380_21411,University Hospital,66592-00018-1,0,4380_7778208_2010201,4380_434 -4380_77974,295,4380_21412,University Hospital,66586-00019-1,0,4380_7778208_2010201,4380_434 -4380_77974,285,4380_21418,University Hospital,66709-00009-1,0,4380_7778208_2010202,4380_434 -4380_77974,286,4380_21419,University Hospital,66711-00010-1,0,4380_7778208_2010202,4380_434 -4380_77947,290,4380_2142,Drop Off,51684-00015-1,0,4380_7778208_1011113,4380_21 -4380_77974,288,4380_21420,University Hospital,66713-00011-1,0,4380_7778208_2010202,4380_434 -4380_77974,287,4380_21421,University Hospital,66705-00012-1,0,4380_7778208_2010202,4380_434 -4380_77974,289,4380_21422,University Hospital,66707-00014-1,0,4380_7778208_2010202,4380_434 -4380_77974,292,4380_21423,University Hospital,66712-00016-1,0,4380_7778208_2010202,4380_434 -4380_77974,293,4380_21424,University Hospital,66714-00017-1,0,4380_7778208_2010202,4380_434 -4380_77974,290,4380_21425,University Hospital,66710-00015-1,0,4380_7778208_2010202,4380_434 -4380_77974,294,4380_21426,University Hospital,66706-00018-1,0,4380_7778208_2010202,4380_434 -4380_77974,295,4380_21427,University Hospital,66708-00019-1,0,4380_7778208_2010202,4380_434 -4380_77947,291,4380_2143,Drop Off,51288-00013-1,0,4380_7778208_1011107,4380_25 -4380_77974,285,4380_21433,University Hospital,66605-00009-1,0,4380_7778208_2010201,4380_434 -4380_77974,286,4380_21434,University Hospital,66607-00010-1,0,4380_7778208_2010201,4380_434 -4380_77974,288,4380_21435,University Hospital,66609-00011-1,0,4380_7778208_2010201,4380_434 -4380_77974,287,4380_21436,University Hospital,66613-00012-1,0,4380_7778208_2010201,4380_434 -4380_77974,289,4380_21437,University Hospital,66611-00014-1,0,4380_7778208_2010201,4380_434 -4380_77974,292,4380_21438,University Hospital,66608-00016-1,0,4380_7778208_2010201,4380_434 -4380_77974,293,4380_21439,University Hospital,66610-00017-1,0,4380_7778208_2010201,4380_434 -4380_77947,292,4380_2144,Drop Off,51682-00016-1,0,4380_7778208_1011113,4380_21 -4380_77974,290,4380_21440,University Hospital,66606-00015-1,0,4380_7778208_2010201,4380_434 -4380_77974,294,4380_21441,University Hospital,66614-00018-1,0,4380_7778208_2010201,4380_434 -4380_77974,295,4380_21442,University Hospital,66612-00019-1,0,4380_7778208_2010201,4380_434 -4380_77974,285,4380_21448,University Hospital,66627-00009-1,0,4380_7778208_2010201,4380_434 -4380_77974,286,4380_21449,University Hospital,66629-00010-1,0,4380_7778208_2010201,4380_434 -4380_77947,293,4380_2145,Drop Off,51678-00017-1,0,4380_7778208_1011113,4380_21 -4380_77974,288,4380_21450,University Hospital,66631-00011-1,0,4380_7778208_2010201,4380_434 -4380_77974,287,4380_21451,University Hospital,66625-00012-1,0,4380_7778208_2010201,4380_434 -4380_77974,289,4380_21452,University Hospital,66633-00014-1,0,4380_7778208_2010201,4380_434 -4380_77974,292,4380_21453,University Hospital,66630-00016-1,0,4380_7778208_2010201,4380_434 -4380_77974,293,4380_21454,University Hospital,66632-00017-1,0,4380_7778208_2010201,4380_434 -4380_77974,290,4380_21455,University Hospital,66628-00015-1,0,4380_7778208_2010201,4380_434 -4380_77974,294,4380_21456,University Hospital,66626-00018-1,0,4380_7778208_2010201,4380_434 -4380_77974,295,4380_21457,University Hospital,66634-00019-1,0,4380_7778208_2010201,4380_434 -4380_77947,294,4380_2146,Drop Off,51686-00018-1,0,4380_7778208_1011113,4380_21 -4380_77974,285,4380_21463,University Hospital,66635-00009-1,0,4380_7778208_2010201,4380_434 -4380_77974,286,4380_21464,University Hospital,66639-00010-1,0,4380_7778208_2010201,4380_434 -4380_77974,288,4380_21465,University Hospital,66641-00011-1,0,4380_7778208_2010201,4380_434 -4380_77974,287,4380_21466,University Hospital,66643-00012-1,0,4380_7778208_2010201,4380_434 -4380_77974,289,4380_21467,University Hospital,66637-00014-1,0,4380_7778208_2010201,4380_434 -4380_77974,292,4380_21468,University Hospital,66640-00016-1,0,4380_7778208_2010201,4380_434 -4380_77974,293,4380_21469,University Hospital,66642-00017-1,0,4380_7778208_2010201,4380_434 -4380_77947,295,4380_2147,Drop Off,51680-00019-1,0,4380_7778208_1011113,4380_21 -4380_77974,290,4380_21470,University Hospital,66636-00015-1,0,4380_7778208_2010201,4380_434 -4380_77974,294,4380_21471,University Hospital,66644-00018-1,0,4380_7778208_2010201,4380_434 -4380_77974,295,4380_21472,University Hospital,66638-00019-1,0,4380_7778208_2010201,4380_434 -4380_77974,285,4380_21478,University Hospital,66655-00009-1,0,4380_7778208_2010201,4380_434 -4380_77974,286,4380_21479,University Hospital,66663-00010-1,0,4380_7778208_2010201,4380_434 -4380_77947,296,4380_2148,Drop Off,51289-00021-1,0,4380_7778208_1011107,4380_25 -4380_77974,288,4380_21480,University Hospital,66657-00011-1,0,4380_7778208_2010201,4380_434 -4380_77974,287,4380_21481,University Hospital,66659-00012-1,0,4380_7778208_2010201,4380_434 -4380_77974,289,4380_21482,University Hospital,66661-00014-1,0,4380_7778208_2010201,4380_434 -4380_77974,292,4380_21483,University Hospital,66664-00016-1,0,4380_7778208_2010201,4380_434 -4380_77974,293,4380_21484,University Hospital,66658-00017-1,0,4380_7778208_2010201,4380_434 -4380_77974,290,4380_21485,University Hospital,66656-00015-1,0,4380_7778208_2010201,4380_434 -4380_77974,294,4380_21486,University Hospital,66660-00018-1,0,4380_7778208_2010201,4380_434 -4380_77974,295,4380_21487,University Hospital,66662-00019-1,0,4380_7778208_2010201,4380_434 -4380_77974,285,4380_21493,University Hospital,66673-00009-1,0,4380_7778208_2010201,4380_434 -4380_77974,286,4380_21494,University Hospital,66667-00010-1,0,4380_7778208_2010201,4380_434 -4380_77974,288,4380_21495,University Hospital,66669-00011-1,0,4380_7778208_2010201,4380_434 -4380_77974,287,4380_21496,University Hospital,66671-00012-1,0,4380_7778208_2010201,4380_434 -4380_77974,289,4380_21497,University Hospital,66665-00014-1,0,4380_7778208_2010201,4380_434 -4380_77974,292,4380_21498,University Hospital,66668-00016-1,0,4380_7778208_2010201,4380_434 -4380_77974,293,4380_21499,University Hospital,66670-00017-1,0,4380_7778208_2010201,4380_434 -4380_77946,287,4380_215,Dundalk,50507-00012-1,0,4380_7778208_1000915,4380_1 -4380_77974,290,4380_21500,University Hospital,66674-00015-1,0,4380_7778208_2010201,4380_434 -4380_77974,294,4380_21501,University Hospital,66672-00018-1,0,4380_7778208_2010201,4380_434 -4380_77974,295,4380_21502,University Hospital,66666-00019-1,0,4380_7778208_2010201,4380_434 -4380_77974,285,4380_21508,University Hospital,66691-00009-1,0,4380_7778208_2010201,4380_434 -4380_77974,286,4380_21509,University Hospital,66685-00010-1,0,4380_7778208_2010201,4380_434 -4380_77974,288,4380_21510,University Hospital,66689-00011-1,0,4380_7778208_2010201,4380_434 -4380_77974,287,4380_21511,University Hospital,66693-00012-1,0,4380_7778208_2010201,4380_434 -4380_77974,289,4380_21512,University Hospital,66687-00014-1,0,4380_7778208_2010201,4380_434 -4380_77974,292,4380_21513,University Hospital,66686-00016-1,0,4380_7778208_2010201,4380_434 -4380_77974,293,4380_21514,University Hospital,66690-00017-1,0,4380_7778208_2010201,4380_434 -4380_77974,290,4380_21515,University Hospital,66692-00015-1,0,4380_7778208_2010201,4380_434 -4380_77974,294,4380_21516,University Hospital,66694-00018-1,0,4380_7778208_2010201,4380_434 -4380_77974,295,4380_21517,University Hospital,66688-00019-1,0,4380_7778208_2010201,4380_434 -4380_77974,285,4380_21523,Lotabeg,66595-00009-1,1,4380_7778208_2010201,4380_435 -4380_77974,286,4380_21524,Lotabeg,66597-00010-1,1,4380_7778208_2010201,4380_435 -4380_77974,288,4380_21525,Lotabeg,66599-00011-1,1,4380_7778208_2010201,4380_435 -4380_77974,287,4380_21526,Lotabeg,66603-00012-1,1,4380_7778208_2010201,4380_435 -4380_77974,289,4380_21527,Lotabeg,66601-00014-1,1,4380_7778208_2010201,4380_435 -4380_77974,292,4380_21528,Lotabeg,66598-00016-1,1,4380_7778208_2010201,4380_435 -4380_77974,293,4380_21529,Lotabeg,66600-00017-1,1,4380_7778208_2010201,4380_435 -4380_77974,290,4380_21530,Lotabeg,66596-00015-1,1,4380_7778208_2010201,4380_435 -4380_77974,294,4380_21531,Lotabeg,66604-00018-1,1,4380_7778208_2010201,4380_435 -4380_77974,295,4380_21532,Lotabeg,66602-00019-1,1,4380_7778208_2010201,4380_435 -4380_77974,285,4380_21538,Lotabeg,66623-00009-1,1,4380_7778208_2010201,4380_435 -4380_77974,286,4380_21539,Lotabeg,66619-00010-1,1,4380_7778208_2010201,4380_435 -4380_77974,288,4380_21540,Lotabeg,66621-00011-1,1,4380_7778208_2010201,4380_435 -4380_77974,287,4380_21541,Lotabeg,66617-00012-1,1,4380_7778208_2010201,4380_435 -4380_77974,289,4380_21542,Lotabeg,66615-00014-1,1,4380_7778208_2010201,4380_435 -4380_77974,292,4380_21543,Lotabeg,66620-00016-1,1,4380_7778208_2010201,4380_435 -4380_77974,293,4380_21544,Lotabeg,66622-00017-1,1,4380_7778208_2010201,4380_435 -4380_77974,290,4380_21545,Lotabeg,66624-00015-1,1,4380_7778208_2010201,4380_435 -4380_77974,294,4380_21546,Lotabeg,66618-00018-1,1,4380_7778208_2010201,4380_435 -4380_77974,295,4380_21547,Lotabeg,66616-00019-1,1,4380_7778208_2010201,4380_435 -4380_77974,285,4380_21553,Lotabeg,66647-00009-1,1,4380_7778208_2010201,4380_435 -4380_77974,286,4380_21554,Lotabeg,66649-00010-1,1,4380_7778208_2010201,4380_435 -4380_77974,288,4380_21555,Lotabeg,66653-00011-1,1,4380_7778208_2010201,4380_435 -4380_77974,287,4380_21556,Lotabeg,66645-00012-1,1,4380_7778208_2010201,4380_435 -4380_77974,289,4380_21557,Lotabeg,66651-00014-1,1,4380_7778208_2010201,4380_435 -4380_77974,292,4380_21558,Lotabeg,66650-00016-1,1,4380_7778208_2010201,4380_435 -4380_77974,293,4380_21559,Lotabeg,66654-00017-1,1,4380_7778208_2010201,4380_435 -4380_77947,285,4380_2156,Drop Off,51437-00009-1,0,4380_7778208_1011109,4380_21 -4380_77974,290,4380_21560,Lotabeg,66648-00015-1,1,4380_7778208_2010201,4380_435 -4380_77974,294,4380_21561,Lotabeg,66646-00018-1,1,4380_7778208_2010201,4380_435 -4380_77974,295,4380_21562,Lotabeg,66652-00019-1,1,4380_7778208_2010201,4380_435 -4380_77974,285,4380_21568,Lotabeg,66683-00009-1,1,4380_7778208_2010201,4380_435 -4380_77974,286,4380_21569,Lotabeg,66677-00010-1,1,4380_7778208_2010201,4380_435 -4380_77947,286,4380_2157,Drop Off,51435-00010-1,0,4380_7778208_1011109,4380_21 -4380_77974,288,4380_21570,Lotabeg,66679-00011-1,1,4380_7778208_2010201,4380_435 -4380_77974,287,4380_21571,Lotabeg,66681-00012-1,1,4380_7778208_2010201,4380_435 -4380_77974,289,4380_21572,Lotabeg,66675-00014-1,1,4380_7778208_2010201,4380_435 -4380_77974,292,4380_21573,Lotabeg,66678-00016-1,1,4380_7778208_2010201,4380_435 -4380_77974,293,4380_21574,Lotabeg,66680-00017-1,1,4380_7778208_2010201,4380_435 -4380_77974,290,4380_21575,Lotabeg,66684-00015-1,1,4380_7778208_2010201,4380_435 -4380_77974,294,4380_21576,Lotabeg,66682-00018-1,1,4380_7778208_2010201,4380_435 -4380_77974,295,4380_21577,Lotabeg,66676-00019-1,1,4380_7778208_2010201,4380_435 -4380_77947,297,4380_2158,Drop Off,51364-00008-1,0,4380_7778208_1011108,4380_23 -4380_77974,285,4380_21583,Lotabeg,66699-00009-1,1,4380_7778208_2010201,4380_435 -4380_77974,286,4380_21584,Lotabeg,66701-00010-1,1,4380_7778208_2010201,4380_435 -4380_77974,288,4380_21585,Lotabeg,66697-00011-1,1,4380_7778208_2010201,4380_435 -4380_77974,287,4380_21586,Lotabeg,66703-00012-1,1,4380_7778208_2010201,4380_435 -4380_77974,289,4380_21587,Lotabeg,66695-00014-1,1,4380_7778208_2010201,4380_435 -4380_77974,292,4380_21588,Lotabeg,66702-00016-1,1,4380_7778208_2010201,4380_435 -4380_77974,293,4380_21589,Lotabeg,66698-00017-1,1,4380_7778208_2010201,4380_435 -4380_77947,288,4380_2159,Drop Off,51433-00011-1,0,4380_7778208_1011109,4380_21 -4380_77974,290,4380_21590,Lotabeg,66700-00015-1,1,4380_7778208_2010201,4380_435 -4380_77974,294,4380_21591,Lotabeg,66704-00018-1,1,4380_7778208_2010201,4380_435 -4380_77974,295,4380_21592,Lotabeg,66696-00019-1,1,4380_7778208_2010201,4380_435 -4380_77946,288,4380_216,Dundalk,50515-00011-1,0,4380_7778208_1000915,4380_1 -4380_77947,287,4380_2160,Drop Off,51439-00012-1,0,4380_7778208_1011109,4380_21 -4380_77975,285,4380_21603,Knocknaheeny,66717-00009-1,0,4380_7778208_2020201,4380_437 -4380_77975,285,4380_21604,Knocknaheeny,66969-00009-1,0,4380_7778208_2020202,4380_436 -4380_77975,286,4380_21605,Knocknaheeny,66724-00010-1,0,4380_7778208_2020201,4380_437 -4380_77975,286,4380_21606,Knocknaheeny,66967-00010-1,0,4380_7778208_2020202,4380_436 -4380_77975,288,4380_21607,Knocknaheeny,66726-00011-1,0,4380_7778208_2020201,4380_437 -4380_77975,288,4380_21608,Knocknaheeny,66965-00011-1,0,4380_7778208_2020202,4380_436 -4380_77975,287,4380_21609,Knocknaheeny,66722-00012-1,0,4380_7778208_2020201,4380_437 -4380_77947,289,4380_2161,Drop Off,51431-00014-1,0,4380_7778208_1011109,4380_21 -4380_77975,287,4380_21610,Knocknaheeny,66963-00012-1,0,4380_7778208_2020202,4380_436 -4380_77975,289,4380_21611,Knocknaheeny,66719-00014-1,0,4380_7778208_2020201,4380_437 -4380_77975,289,4380_21612,Knocknaheeny,66971-00014-1,0,4380_7778208_2020202,4380_436 -4380_77975,292,4380_21613,Knocknaheeny,66725-00016-1,0,4380_7778208_2020201,4380_437 -4380_77975,292,4380_21614,Knocknaheeny,66968-00016-1,0,4380_7778208_2020202,4380_436 -4380_77975,293,4380_21615,Knocknaheeny,66727-00017-1,0,4380_7778208_2020201,4380_437 -4380_77975,293,4380_21616,Knocknaheeny,66966-00017-1,0,4380_7778208_2020202,4380_436 -4380_77975,290,4380_21617,Knocknaheeny,66718-00015-1,0,4380_7778208_2020201,4380_437 -4380_77975,290,4380_21618,Knocknaheeny,66970-00015-1,0,4380_7778208_2020202,4380_436 -4380_77975,294,4380_21619,Knocknaheeny,66723-00018-1,0,4380_7778208_2020201,4380_437 -4380_77947,290,4380_2162,Drop Off,51438-00015-1,0,4380_7778208_1011109,4380_21 -4380_77975,294,4380_21620,Knocknaheeny,66964-00018-1,0,4380_7778208_2020202,4380_436 -4380_77975,295,4380_21621,Knocknaheeny,66720-00019-1,0,4380_7778208_2020201,4380_437 -4380_77975,295,4380_21622,Knocknaheeny,66972-00019-1,0,4380_7778208_2020202,4380_436 -4380_77975,291,4380_21624,Knocknaheeny,67745-00013-1,0,4380_7778208_2020206,4380_437 -4380_77975,296,4380_21625,Knocknaheeny,67746-00021-1,0,4380_7778208_2020206,4380_437 -4380_77947,291,4380_2163,Drop Off,50900-00013-1,0,4380_7778208_1011103,4380_25 -4380_77975,285,4380_21632,Knocknaheeny,67444-00009-1,0,4380_7778208_2020204,4380_436 -4380_77975,286,4380_21633,Knocknaheeny,67446-00010-1,0,4380_7778208_2020204,4380_436 -4380_77975,288,4380_21634,Knocknaheeny,67450-00011-1,0,4380_7778208_2020204,4380_436 -4380_77975,287,4380_21635,Knocknaheeny,67442-00012-1,0,4380_7778208_2020204,4380_436 -4380_77975,291,4380_21636,Knocknaheeny,67212-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_21637,Knocknaheeny,67448-00014-1,0,4380_7778208_2020204,4380_436 -4380_77975,292,4380_21638,Knocknaheeny,67447-00016-1,0,4380_7778208_2020204,4380_436 -4380_77975,293,4380_21639,Knocknaheeny,67451-00017-1,0,4380_7778208_2020204,4380_436 -4380_77947,292,4380_2164,Drop Off,51436-00016-1,0,4380_7778208_1011109,4380_21 -4380_77975,290,4380_21640,Knocknaheeny,67445-00015-1,0,4380_7778208_2020204,4380_436 -4380_77975,294,4380_21641,Knocknaheeny,67443-00018-1,0,4380_7778208_2020204,4380_436 -4380_77975,295,4380_21642,Knocknaheeny,67449-00019-1,0,4380_7778208_2020204,4380_436 -4380_77975,296,4380_21643,Knocknaheeny,67213-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_21645,Knocknaheeny,67680-00008-1,0,4380_7778208_2020205,4380_436 -4380_77947,293,4380_2165,Drop Off,51434-00017-1,0,4380_7778208_1011109,4380_21 -4380_77975,285,4380_21652,Knocknaheeny,67214-00009-1,0,4380_7778208_2020203,4380_436 -4380_77975,286,4380_21653,Knocknaheeny,67218-00010-1,0,4380_7778208_2020203,4380_436 -4380_77975,288,4380_21654,Knocknaheeny,67222-00011-1,0,4380_7778208_2020203,4380_436 -4380_77975,287,4380_21655,Knocknaheeny,67220-00012-1,0,4380_7778208_2020203,4380_436 -4380_77975,291,4380_21656,Knocknaheeny,67681-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_21657,Knocknaheeny,67216-00014-1,0,4380_7778208_2020203,4380_436 -4380_77975,292,4380_21658,Knocknaheeny,67219-00016-1,0,4380_7778208_2020203,4380_436 -4380_77975,293,4380_21659,Knocknaheeny,67223-00017-1,0,4380_7778208_2020203,4380_436 -4380_77947,294,4380_2166,Drop Off,51440-00018-1,0,4380_7778208_1011109,4380_21 -4380_77975,290,4380_21660,Knocknaheeny,67215-00015-1,0,4380_7778208_2020203,4380_436 -4380_77975,294,4380_21661,Knocknaheeny,67221-00018-1,0,4380_7778208_2020203,4380_436 -4380_77975,295,4380_21662,Knocknaheeny,67217-00019-1,0,4380_7778208_2020203,4380_436 -4380_77975,296,4380_21663,Knocknaheeny,67682-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_21665,Knocknaheeny,67749-00008-1,0,4380_7778208_2020206,4380_436 -4380_77947,295,4380_2167,Drop Off,51432-00019-1,0,4380_7778208_1011109,4380_21 -4380_77975,285,4380_21672,Knocknaheeny,66743-00009-1,0,4380_7778208_2020201,4380_436 -4380_77975,286,4380_21673,Knocknaheeny,66752-00010-1,0,4380_7778208_2020201,4380_436 -4380_77975,288,4380_21674,Knocknaheeny,66745-00011-1,0,4380_7778208_2020201,4380_436 -4380_77975,287,4380_21675,Knocknaheeny,66750-00012-1,0,4380_7778208_2020201,4380_436 -4380_77975,291,4380_21676,Knocknaheeny,67750-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_21677,Knocknaheeny,66748-00014-1,0,4380_7778208_2020201,4380_436 -4380_77975,292,4380_21678,Knocknaheeny,66753-00016-1,0,4380_7778208_2020201,4380_436 -4380_77975,293,4380_21679,Knocknaheeny,66746-00017-1,0,4380_7778208_2020201,4380_436 -4380_77947,296,4380_2168,Drop Off,50901-00021-1,0,4380_7778208_1011103,4380_25 -4380_77975,290,4380_21680,Knocknaheeny,66744-00015-1,0,4380_7778208_2020201,4380_436 -4380_77975,294,4380_21681,Knocknaheeny,66751-00018-1,0,4380_7778208_2020201,4380_436 -4380_77975,295,4380_21682,Knocknaheeny,66749-00019-1,0,4380_7778208_2020201,4380_436 -4380_77975,296,4380_21683,Knocknaheeny,67751-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_21685,Knocknaheeny,67806-00008-1,0,4380_7778208_2020207,4380_436 -4380_77975,285,4380_21692,Knocknaheeny,66998-00009-1,0,4380_7778208_2020202,4380_436 -4380_77975,286,4380_21693,Knocknaheeny,66996-00010-1,0,4380_7778208_2020202,4380_436 -4380_77975,288,4380_21694,Knocknaheeny,67000-00011-1,0,4380_7778208_2020202,4380_436 -4380_77975,287,4380_21695,Knocknaheeny,66994-00012-1,0,4380_7778208_2020202,4380_436 -4380_77975,291,4380_21696,Knocknaheeny,67232-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_21697,Knocknaheeny,66991-00014-1,0,4380_7778208_2020202,4380_436 -4380_77975,292,4380_21698,Knocknaheeny,66997-00016-1,0,4380_7778208_2020202,4380_436 -4380_77975,293,4380_21699,Knocknaheeny,67001-00017-1,0,4380_7778208_2020202,4380_436 -4380_77946,289,4380_217,Dundalk,50511-00014-1,0,4380_7778208_1000915,4380_1 -4380_77975,290,4380_21700,Knocknaheeny,66999-00015-1,0,4380_7778208_2020202,4380_436 -4380_77975,294,4380_21701,Knocknaheeny,66995-00018-1,0,4380_7778208_2020202,4380_436 -4380_77975,295,4380_21702,Knocknaheeny,66992-00019-1,0,4380_7778208_2020202,4380_436 -4380_77975,296,4380_21703,Knocknaheeny,67233-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_21705,Knocknaheeny,67686-00008-1,0,4380_7778208_2020205,4380_436 -4380_77975,285,4380_21712,Knocknaheeny,67472-00009-1,0,4380_7778208_2020204,4380_436 -4380_77975,286,4380_21713,Knocknaheeny,67470-00010-1,0,4380_7778208_2020204,4380_436 -4380_77975,288,4380_21714,Knocknaheeny,67479-00011-1,0,4380_7778208_2020204,4380_436 -4380_77975,287,4380_21715,Knocknaheeny,67475-00012-1,0,4380_7778208_2020204,4380_436 -4380_77975,291,4380_21716,Knocknaheeny,67687-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_21717,Knocknaheeny,67477-00014-1,0,4380_7778208_2020204,4380_436 -4380_77975,292,4380_21718,Knocknaheeny,67471-00016-1,0,4380_7778208_2020204,4380_436 -4380_77975,293,4380_21719,Knocknaheeny,67480-00017-1,0,4380_7778208_2020204,4380_436 -4380_77975,290,4380_21720,Knocknaheeny,67473-00015-1,0,4380_7778208_2020204,4380_436 -4380_77975,294,4380_21721,Knocknaheeny,67476-00018-1,0,4380_7778208_2020204,4380_436 -4380_77975,295,4380_21722,Knocknaheeny,67478-00019-1,0,4380_7778208_2020204,4380_436 -4380_77975,296,4380_21723,Knocknaheeny,67688-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_21725,Knocknaheeny,67755-00008-1,0,4380_7778208_2020206,4380_436 -4380_77975,285,4380_21732,Knocknaheeny,67240-00009-1,0,4380_7778208_2020203,4380_436 -4380_77975,286,4380_21733,Knocknaheeny,67244-00010-1,0,4380_7778208_2020203,4380_436 -4380_77975,288,4380_21734,Knocknaheeny,67246-00011-1,0,4380_7778208_2020203,4380_436 -4380_77975,287,4380_21735,Knocknaheeny,67248-00012-1,0,4380_7778208_2020203,4380_436 -4380_77975,291,4380_21736,Knocknaheeny,67756-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_21737,Knocknaheeny,67242-00014-1,0,4380_7778208_2020203,4380_436 -4380_77975,292,4380_21738,Knocknaheeny,67245-00016-1,0,4380_7778208_2020203,4380_436 -4380_77975,293,4380_21739,Knocknaheeny,67247-00017-1,0,4380_7778208_2020203,4380_436 -4380_77975,290,4380_21740,Knocknaheeny,67241-00015-1,0,4380_7778208_2020203,4380_436 -4380_77975,294,4380_21741,Knocknaheeny,67249-00018-1,0,4380_7778208_2020203,4380_436 -4380_77975,295,4380_21742,Knocknaheeny,67243-00019-1,0,4380_7778208_2020203,4380_436 -4380_77975,296,4380_21743,Knocknaheeny,67757-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_21745,Knocknaheeny,67808-00008-1,0,4380_7778208_2020207,4380_436 -4380_77975,285,4380_21752,Knocknaheeny,66776-00009-1,0,4380_7778208_2020201,4380_436 -4380_77975,286,4380_21753,Knocknaheeny,66774-00010-1,0,4380_7778208_2020201,4380_436 -4380_77975,288,4380_21754,Knocknaheeny,66772-00011-1,0,4380_7778208_2020201,4380_436 -4380_77975,287,4380_21755,Knocknaheeny,66778-00012-1,0,4380_7778208_2020201,4380_436 -4380_77975,291,4380_21756,Knocknaheeny,67250-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_21757,Knocknaheeny,66770-00014-1,0,4380_7778208_2020201,4380_436 -4380_77975,292,4380_21758,Knocknaheeny,66775-00016-1,0,4380_7778208_2020201,4380_436 -4380_77975,293,4380_21759,Knocknaheeny,66773-00017-1,0,4380_7778208_2020201,4380_436 -4380_77947,285,4380_2176,Drop Off,50558-00009-1,1,4380_7778208_1011101,4380_27 -4380_77975,290,4380_21760,Knocknaheeny,66777-00015-1,0,4380_7778208_2020201,4380_436 -4380_77975,294,4380_21761,Knocknaheeny,66779-00018-1,0,4380_7778208_2020201,4380_436 -4380_77975,295,4380_21762,Knocknaheeny,66771-00019-1,0,4380_7778208_2020201,4380_436 -4380_77975,296,4380_21763,Knocknaheeny,67251-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_21765,Knocknaheeny,67692-00008-1,0,4380_7778208_2020205,4380_436 -4380_77947,286,4380_2177,Drop Off,50547-00010-1,1,4380_7778208_1011101,4380_27 -4380_77975,285,4380_21772,Knocknaheeny,67024-00009-1,0,4380_7778208_2020202,4380_436 -4380_77975,286,4380_21773,Knocknaheeny,67018-00010-1,0,4380_7778208_2020202,4380_436 -4380_77975,288,4380_21774,Knocknaheeny,67020-00011-1,0,4380_7778208_2020202,4380_436 -4380_77975,287,4380_21775,Knocknaheeny,67026-00012-1,0,4380_7778208_2020202,4380_436 -4380_77975,291,4380_21776,Knocknaheeny,67693-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_21777,Knocknaheeny,67022-00014-1,0,4380_7778208_2020202,4380_436 -4380_77975,292,4380_21778,Knocknaheeny,67019-00016-1,0,4380_7778208_2020202,4380_436 -4380_77975,293,4380_21779,Knocknaheeny,67021-00017-1,0,4380_7778208_2020202,4380_436 -4380_77947,297,4380_2178,Drop Off,50551-00008-1,1,4380_7778208_1011101,4380_29 -4380_77975,290,4380_21780,Knocknaheeny,67025-00015-1,0,4380_7778208_2020202,4380_436 -4380_77975,294,4380_21781,Knocknaheeny,67027-00018-1,0,4380_7778208_2020202,4380_436 -4380_77975,295,4380_21782,Knocknaheeny,67023-00019-1,0,4380_7778208_2020202,4380_436 -4380_77975,296,4380_21783,Knocknaheeny,67694-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_21785,Knocknaheeny,67761-00008-1,0,4380_7778208_2020206,4380_436 -4380_77947,287,4380_2179,Drop Off,50556-00012-1,1,4380_7778208_1011101,4380_27 -4380_77975,285,4380_21792,Knocknaheeny,67501-00009-1,0,4380_7778208_2020204,4380_436 -4380_77975,286,4380_21793,Knocknaheeny,67497-00010-1,0,4380_7778208_2020204,4380_436 -4380_77975,288,4380_21794,Knocknaheeny,67503-00011-1,0,4380_7778208_2020204,4380_436 -4380_77975,287,4380_21795,Knocknaheeny,67507-00012-1,0,4380_7778208_2020204,4380_436 -4380_77975,291,4380_21796,Knocknaheeny,67762-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_21797,Knocknaheeny,67499-00014-1,0,4380_7778208_2020204,4380_436 -4380_77975,292,4380_21798,Knocknaheeny,67498-00016-1,0,4380_7778208_2020204,4380_436 -4380_77975,293,4380_21799,Knocknaheeny,67504-00017-1,0,4380_7778208_2020204,4380_436 -4380_77946,290,4380_218,Dundalk,50510-00015-1,0,4380_7778208_1000915,4380_1 -4380_77947,288,4380_2180,Drop Off,50554-00011-1,1,4380_7778208_1011101,4380_27 -4380_77975,290,4380_21800,Knocknaheeny,67502-00015-1,0,4380_7778208_2020204,4380_436 -4380_77975,294,4380_21801,Knocknaheeny,67508-00018-1,0,4380_7778208_2020204,4380_436 -4380_77975,295,4380_21802,Knocknaheeny,67500-00019-1,0,4380_7778208_2020204,4380_436 -4380_77975,296,4380_21803,Knocknaheeny,67763-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_21805,Knocknaheeny,67810-00008-1,0,4380_7778208_2020207,4380_436 -4380_77947,289,4380_2181,Drop Off,50549-00014-1,1,4380_7778208_1011101,4380_27 -4380_77975,285,4380_21812,Knocknaheeny,67266-00009-1,0,4380_7778208_2020203,4380_436 -4380_77975,286,4380_21813,Knocknaheeny,67272-00010-1,0,4380_7778208_2020203,4380_436 -4380_77975,288,4380_21814,Knocknaheeny,67274-00011-1,0,4380_7778208_2020203,4380_436 -4380_77975,287,4380_21815,Knocknaheeny,67264-00012-1,0,4380_7778208_2020203,4380_436 -4380_77975,291,4380_21816,Knocknaheeny,67270-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_21817,Knocknaheeny,67268-00014-1,0,4380_7778208_2020203,4380_436 -4380_77975,292,4380_21818,Knocknaheeny,67273-00016-1,0,4380_7778208_2020203,4380_436 -4380_77975,293,4380_21819,Knocknaheeny,67275-00017-1,0,4380_7778208_2020203,4380_436 -4380_77947,290,4380_2182,Drop Off,50559-00015-1,1,4380_7778208_1011101,4380_27 -4380_77975,290,4380_21820,Knocknaheeny,67267-00015-1,0,4380_7778208_2020203,4380_436 -4380_77975,294,4380_21821,Knocknaheeny,67265-00018-1,0,4380_7778208_2020203,4380_436 -4380_77975,295,4380_21822,Knocknaheeny,67269-00019-1,0,4380_7778208_2020203,4380_436 -4380_77975,296,4380_21823,Knocknaheeny,67271-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_21825,Knocknaheeny,67698-00008-1,0,4380_7778208_2020205,4380_436 -4380_77947,291,4380_2183,Drop Off,50552-00013-1,1,4380_7778208_1011101,4380_31 -4380_77975,285,4380_21832,Knocknaheeny,66805-00009-1,0,4380_7778208_2020201,4380_436 -4380_77975,286,4380_21833,Knocknaheeny,66807-00010-1,0,4380_7778208_2020201,4380_436 -4380_77975,288,4380_21834,Knocknaheeny,66803-00011-1,0,4380_7778208_2020201,4380_436 -4380_77975,287,4380_21835,Knocknaheeny,66799-00012-1,0,4380_7778208_2020201,4380_436 -4380_77975,291,4380_21836,Knocknaheeny,67699-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_21837,Knocknaheeny,66801-00014-1,0,4380_7778208_2020201,4380_436 -4380_77975,292,4380_21838,Knocknaheeny,66808-00016-1,0,4380_7778208_2020201,4380_436 -4380_77975,293,4380_21839,Knocknaheeny,66804-00017-1,0,4380_7778208_2020201,4380_436 -4380_77947,292,4380_2184,Drop Off,50548-00016-1,1,4380_7778208_1011101,4380_27 -4380_77975,290,4380_21840,Knocknaheeny,66806-00015-1,0,4380_7778208_2020201,4380_436 -4380_77975,294,4380_21841,Knocknaheeny,66800-00018-1,0,4380_7778208_2020201,4380_436 -4380_77975,295,4380_21842,Knocknaheeny,66802-00019-1,0,4380_7778208_2020201,4380_436 -4380_77975,296,4380_21843,Knocknaheeny,67700-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_21845,Knocknaheeny,67767-00008-1,0,4380_7778208_2020206,4380_436 -4380_77947,293,4380_2185,Drop Off,50555-00017-1,1,4380_7778208_1011101,4380_27 -4380_77975,285,4380_21852,Knocknaheeny,67047-00009-1,0,4380_7778208_2020202,4380_436 -4380_77975,286,4380_21853,Knocknaheeny,67055-00010-1,0,4380_7778208_2020202,4380_436 -4380_77975,288,4380_21854,Knocknaheeny,67051-00011-1,0,4380_7778208_2020202,4380_436 -4380_77975,287,4380_21855,Knocknaheeny,67049-00012-1,0,4380_7778208_2020202,4380_436 -4380_77975,291,4380_21856,Knocknaheeny,67768-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_21857,Knocknaheeny,67053-00014-1,0,4380_7778208_2020202,4380_436 -4380_77975,292,4380_21858,Knocknaheeny,67056-00016-1,0,4380_7778208_2020202,4380_436 -4380_77975,293,4380_21859,Knocknaheeny,67052-00017-1,0,4380_7778208_2020202,4380_436 -4380_77947,294,4380_2186,Drop Off,50557-00018-1,1,4380_7778208_1011101,4380_27 -4380_77975,290,4380_21860,Knocknaheeny,67048-00015-1,0,4380_7778208_2020202,4380_436 -4380_77975,294,4380_21861,Knocknaheeny,67050-00018-1,0,4380_7778208_2020202,4380_436 -4380_77975,295,4380_21862,Knocknaheeny,67054-00019-1,0,4380_7778208_2020202,4380_436 -4380_77975,296,4380_21863,Knocknaheeny,67769-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_21865,Knocknaheeny,67812-00008-1,0,4380_7778208_2020207,4380_436 -4380_77947,295,4380_2187,Drop Off,50550-00019-1,1,4380_7778208_1011101,4380_27 -4380_77975,285,4380_21872,Knocknaheeny,67528-00009-1,0,4380_7778208_2020204,4380_436 -4380_77975,286,4380_21873,Knocknaheeny,67532-00010-1,0,4380_7778208_2020204,4380_436 -4380_77975,288,4380_21874,Knocknaheeny,67534-00011-1,0,4380_7778208_2020204,4380_436 -4380_77975,287,4380_21875,Knocknaheeny,67526-00012-1,0,4380_7778208_2020204,4380_436 -4380_77975,291,4380_21876,Knocknaheeny,67288-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_21877,Knocknaheeny,67530-00014-1,0,4380_7778208_2020204,4380_436 -4380_77975,292,4380_21878,Knocknaheeny,67533-00016-1,0,4380_7778208_2020204,4380_436 -4380_77975,293,4380_21879,Knocknaheeny,67535-00017-1,0,4380_7778208_2020204,4380_436 -4380_77947,296,4380_2188,Drop Off,50553-00021-1,1,4380_7778208_1011101,4380_31 -4380_77975,290,4380_21880,Knocknaheeny,67529-00015-1,0,4380_7778208_2020204,4380_436 -4380_77975,294,4380_21881,Knocknaheeny,67527-00018-1,0,4380_7778208_2020204,4380_436 -4380_77975,295,4380_21882,Knocknaheeny,67531-00019-1,0,4380_7778208_2020204,4380_436 -4380_77975,296,4380_21883,Knocknaheeny,67289-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_21885,Knocknaheeny,67059-00008-1,0,4380_7778208_2020202,4380_436 -4380_77975,285,4380_21892,Knocknaheeny,67299-00009-1,0,4380_7778208_2020203,4380_436 -4380_77975,286,4380_21893,Knocknaheeny,67291-00010-1,0,4380_7778208_2020203,4380_436 -4380_77975,288,4380_21894,Knocknaheeny,67295-00011-1,0,4380_7778208_2020203,4380_436 -4380_77975,287,4380_21895,Knocknaheeny,67297-00012-1,0,4380_7778208_2020203,4380_436 -4380_77975,291,4380_21896,Knocknaheeny,67705-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_21897,Knocknaheeny,67293-00014-1,0,4380_7778208_2020203,4380_436 -4380_77975,292,4380_21898,Knocknaheeny,67292-00016-1,0,4380_7778208_2020203,4380_436 -4380_77975,293,4380_21899,Knocknaheeny,67296-00017-1,0,4380_7778208_2020203,4380_436 -4380_77946,291,4380_219,Dundalk,50281-00013-1,0,4380_7778208_1000912,4380_5 -4380_77975,290,4380_21900,Knocknaheeny,67300-00015-1,0,4380_7778208_2020203,4380_436 -4380_77975,294,4380_21901,Knocknaheeny,67298-00018-1,0,4380_7778208_2020203,4380_436 -4380_77975,295,4380_21902,Knocknaheeny,67294-00019-1,0,4380_7778208_2020203,4380_436 -4380_77975,296,4380_21903,Knocknaheeny,67706-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_21905,Knocknaheeny,67538-00008-1,0,4380_7778208_2020204,4380_436 -4380_77975,285,4380_21912,Knocknaheeny,66833-00009-1,0,4380_7778208_2020201,4380_436 -4380_77975,286,4380_21913,Knocknaheeny,66829-00010-1,0,4380_7778208_2020201,4380_436 -4380_77975,288,4380_21914,Knocknaheeny,66827-00011-1,0,4380_7778208_2020201,4380_436 -4380_77975,287,4380_21915,Knocknaheeny,66835-00012-1,0,4380_7778208_2020201,4380_436 -4380_77975,291,4380_21916,Knocknaheeny,67774-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_21917,Knocknaheeny,66831-00014-1,0,4380_7778208_2020201,4380_436 -4380_77975,292,4380_21918,Knocknaheeny,66830-00016-1,0,4380_7778208_2020201,4380_436 -4380_77975,293,4380_21919,Knocknaheeny,66828-00017-1,0,4380_7778208_2020201,4380_436 -4380_77975,290,4380_21920,Knocknaheeny,66834-00015-1,0,4380_7778208_2020201,4380_436 -4380_77975,294,4380_21921,Knocknaheeny,66836-00018-1,0,4380_7778208_2020201,4380_436 -4380_77975,295,4380_21922,Knocknaheeny,66832-00019-1,0,4380_7778208_2020201,4380_436 -4380_77975,296,4380_21923,Knocknaheeny,67775-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_21925,Knocknaheeny,66837-00008-1,0,4380_7778208_2020201,4380_436 -4380_77975,285,4380_21932,Knocknaheeny,67077-00009-1,0,4380_7778208_2020202,4380_436 -4380_77975,286,4380_21933,Knocknaheeny,67083-00010-1,0,4380_7778208_2020202,4380_436 -4380_77975,288,4380_21934,Knocknaheeny,67075-00011-1,0,4380_7778208_2020202,4380_436 -4380_77975,287,4380_21935,Knocknaheeny,67079-00012-1,0,4380_7778208_2020202,4380_436 -4380_77975,291,4380_21936,Knocknaheeny,67310-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_21937,Knocknaheeny,67081-00014-1,0,4380_7778208_2020202,4380_436 -4380_77975,292,4380_21938,Knocknaheeny,67084-00016-1,0,4380_7778208_2020202,4380_436 -4380_77975,293,4380_21939,Knocknaheeny,67076-00017-1,0,4380_7778208_2020202,4380_436 -4380_77975,290,4380_21940,Knocknaheeny,67078-00015-1,0,4380_7778208_2020202,4380_436 -4380_77975,294,4380_21941,Knocknaheeny,67080-00018-1,0,4380_7778208_2020202,4380_436 -4380_77975,295,4380_21942,Knocknaheeny,67082-00019-1,0,4380_7778208_2020202,4380_436 -4380_77975,296,4380_21943,Knocknaheeny,67311-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_21945,Knocknaheeny,67316-00008-1,0,4380_7778208_2020203,4380_436 -4380_77975,285,4380_21952,Knocknaheeny,67556-00009-1,0,4380_7778208_2020204,4380_436 -4380_77975,286,4380_21953,Knocknaheeny,67560-00010-1,0,4380_7778208_2020204,4380_436 -4380_77975,288,4380_21954,Knocknaheeny,67554-00011-1,0,4380_7778208_2020204,4380_436 -4380_77975,287,4380_21955,Knocknaheeny,67562-00012-1,0,4380_7778208_2020204,4380_436 -4380_77975,291,4380_21956,Knocknaheeny,67710-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_21957,Knocknaheeny,67558-00014-1,0,4380_7778208_2020204,4380_436 -4380_77975,292,4380_21958,Knocknaheeny,67561-00016-1,0,4380_7778208_2020204,4380_436 -4380_77975,293,4380_21959,Knocknaheeny,67555-00017-1,0,4380_7778208_2020204,4380_436 -4380_77947,285,4380_2196,Drop Off,50675-00009-1,1,4380_7778208_1011102,4380_27 -4380_77975,290,4380_21960,Knocknaheeny,67557-00015-1,0,4380_7778208_2020204,4380_436 -4380_77975,294,4380_21961,Knocknaheeny,67563-00018-1,0,4380_7778208_2020204,4380_436 -4380_77975,295,4380_21962,Knocknaheeny,67559-00019-1,0,4380_7778208_2020204,4380_436 -4380_77975,296,4380_21963,Knocknaheeny,67711-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_21965,Knocknaheeny,67712-00008-1,0,4380_7778208_2020205,4380_436 -4380_77947,286,4380_2197,Drop Off,50671-00010-1,1,4380_7778208_1011102,4380_27 -4380_77975,285,4380_21972,Knocknaheeny,67325-00009-1,0,4380_7778208_2020203,4380_436 -4380_77975,286,4380_21973,Knocknaheeny,67328-00010-1,0,4380_7778208_2020203,4380_436 -4380_77975,288,4380_21974,Knocknaheeny,67321-00011-1,0,4380_7778208_2020203,4380_436 -4380_77975,287,4380_21975,Knocknaheeny,67323-00012-1,0,4380_7778208_2020203,4380_436 -4380_77975,291,4380_21976,Knocknaheeny,67779-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_21977,Knocknaheeny,67319-00014-1,0,4380_7778208_2020203,4380_436 -4380_77975,292,4380_21978,Knocknaheeny,67329-00016-1,0,4380_7778208_2020203,4380_436 -4380_77975,293,4380_21979,Knocknaheeny,67322-00017-1,0,4380_7778208_2020203,4380_436 -4380_77947,297,4380_2198,Drop Off,50670-00008-1,1,4380_7778208_1011102,4380_29 -4380_77975,290,4380_21980,Knocknaheeny,67326-00015-1,0,4380_7778208_2020203,4380_436 -4380_77975,294,4380_21981,Knocknaheeny,67324-00018-1,0,4380_7778208_2020203,4380_436 -4380_77975,295,4380_21982,Knocknaheeny,67320-00019-1,0,4380_7778208_2020203,4380_436 -4380_77975,296,4380_21983,Knocknaheeny,67780-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_21985,Knocknaheeny,67781-00008-1,0,4380_7778208_2020206,4380_436 -4380_77947,287,4380_2199,Drop Off,50664-00012-1,1,4380_7778208_1011102,4380_27 -4380_77975,285,4380_21992,Knocknaheeny,66857-00009-1,0,4380_7778208_2020201,4380_436 -4380_77975,286,4380_21993,Knocknaheeny,66862-00010-1,0,4380_7778208_2020201,4380_436 -4380_77975,288,4380_21994,Knocknaheeny,66853-00011-1,0,4380_7778208_2020201,4380_436 -4380_77975,287,4380_21995,Knocknaheeny,66860-00012-1,0,4380_7778208_2020201,4380_436 -4380_77975,291,4380_21996,Knocknaheeny,67330-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_21997,Knocknaheeny,66864-00014-1,0,4380_7778208_2020201,4380_436 -4380_77975,292,4380_21998,Knocknaheeny,66863-00016-1,0,4380_7778208_2020201,4380_436 -4380_77975,293,4380_21999,Knocknaheeny,66854-00017-1,0,4380_7778208_2020201,4380_436 -4380_77946,292,4380_220,Dundalk,50514-00016-1,0,4380_7778208_1000915,4380_1 -4380_77947,288,4380_2200,Drop Off,50668-00011-1,1,4380_7778208_1011102,4380_27 -4380_77975,290,4380_22000,Knocknaheeny,66858-00015-1,0,4380_7778208_2020201,4380_436 -4380_77975,294,4380_22001,Knocknaheeny,66861-00018-1,0,4380_7778208_2020201,4380_436 -4380_77975,295,4380_22002,Knocknaheeny,66865-00019-1,0,4380_7778208_2020201,4380_436 -4380_77975,296,4380_22003,Knocknaheeny,67331-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_22005,Knocknaheeny,67816-00008-1,0,4380_7778208_2020207,4380_436 -4380_77947,289,4380_2201,Drop Off,50666-00014-1,1,4380_7778208_1011102,4380_27 -4380_77975,285,4380_22012,Knocknaheeny,67111-00009-1,0,4380_7778208_2020202,4380_436 -4380_77975,286,4380_22013,Knocknaheeny,67103-00010-1,0,4380_7778208_2020202,4380_436 -4380_77975,288,4380_22014,Knocknaheeny,67107-00011-1,0,4380_7778208_2020202,4380_436 -4380_77975,287,4380_22015,Knocknaheeny,67101-00012-1,0,4380_7778208_2020202,4380_436 -4380_77975,291,4380_22016,Knocknaheeny,67716-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_22017,Knocknaheeny,67105-00014-1,0,4380_7778208_2020202,4380_436 -4380_77975,292,4380_22018,Knocknaheeny,67104-00016-1,0,4380_7778208_2020202,4380_436 -4380_77975,293,4380_22019,Knocknaheeny,67108-00017-1,0,4380_7778208_2020202,4380_436 -4380_77947,290,4380_2202,Drop Off,50676-00015-1,1,4380_7778208_1011102,4380_27 -4380_77975,290,4380_22020,Knocknaheeny,67112-00015-1,0,4380_7778208_2020202,4380_436 -4380_77975,294,4380_22021,Knocknaheeny,67102-00018-1,0,4380_7778208_2020202,4380_436 -4380_77975,295,4380_22022,Knocknaheeny,67106-00019-1,0,4380_7778208_2020202,4380_436 -4380_77975,296,4380_22023,Knocknaheeny,67717-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_22025,Knocknaheeny,67113-00008-1,0,4380_7778208_2020202,4380_436 -4380_77947,291,4380_2203,Drop Off,50673-00013-1,1,4380_7778208_1011102,4380_31 -4380_77975,285,4380_22032,Knocknaheeny,67586-00009-1,0,4380_7778208_2020204,4380_436 -4380_77975,286,4380_22033,Knocknaheeny,67588-00010-1,0,4380_7778208_2020204,4380_436 -4380_77975,288,4380_22034,Knocknaheeny,67580-00011-1,0,4380_7778208_2020204,4380_436 -4380_77975,287,4380_22035,Knocknaheeny,67590-00012-1,0,4380_7778208_2020204,4380_436 -4380_77975,291,4380_22036,Knocknaheeny,67785-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_22037,Knocknaheeny,67584-00014-1,0,4380_7778208_2020204,4380_436 -4380_77975,292,4380_22038,Knocknaheeny,67589-00016-1,0,4380_7778208_2020204,4380_436 -4380_77975,293,4380_22039,Knocknaheeny,67581-00017-1,0,4380_7778208_2020204,4380_436 -4380_77947,292,4380_2204,Drop Off,50672-00016-1,1,4380_7778208_1011102,4380_27 -4380_77975,290,4380_22040,Knocknaheeny,67587-00015-1,0,4380_7778208_2020204,4380_436 -4380_77975,294,4380_22041,Knocknaheeny,67591-00018-1,0,4380_7778208_2020204,4380_436 -4380_77975,295,4380_22042,Knocknaheeny,67585-00019-1,0,4380_7778208_2020204,4380_436 -4380_77975,296,4380_22043,Knocknaheeny,67786-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_22045,Knocknaheeny,67592-00008-1,0,4380_7778208_2020204,4380_436 -4380_77947,293,4380_2205,Drop Off,50669-00017-1,1,4380_7778208_1011102,4380_27 -4380_77975,285,4380_22052,Knocknaheeny,67352-00009-1,0,4380_7778208_2020203,4380_436 -4380_77975,286,4380_22053,Knocknaheeny,67356-00010-1,0,4380_7778208_2020203,4380_436 -4380_77975,288,4380_22054,Knocknaheeny,67348-00011-1,0,4380_7778208_2020203,4380_436 -4380_77975,287,4380_22055,Knocknaheeny,67346-00012-1,0,4380_7778208_2020203,4380_436 -4380_77975,291,4380_22056,Knocknaheeny,67354-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_22057,Knocknaheeny,67350-00014-1,0,4380_7778208_2020203,4380_436 -4380_77975,292,4380_22058,Knocknaheeny,67357-00016-1,0,4380_7778208_2020203,4380_436 -4380_77975,293,4380_22059,Knocknaheeny,67349-00017-1,0,4380_7778208_2020203,4380_436 -4380_77947,294,4380_2206,Drop Off,50665-00018-1,1,4380_7778208_1011102,4380_27 -4380_77975,290,4380_22060,Knocknaheeny,67353-00015-1,0,4380_7778208_2020203,4380_436 -4380_77975,294,4380_22061,Knocknaheeny,67347-00018-1,0,4380_7778208_2020203,4380_436 -4380_77975,295,4380_22062,Knocknaheeny,67351-00019-1,0,4380_7778208_2020203,4380_436 -4380_77975,296,4380_22063,Knocknaheeny,67355-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_22065,Knocknaheeny,66881-00008-1,0,4380_7778208_2020201,4380_436 -4380_77947,295,4380_2207,Drop Off,50667-00019-1,1,4380_7778208_1011102,4380_27 -4380_77975,285,4380_22072,Knocknaheeny,66890-00009-1,0,4380_7778208_2020201,4380_436 -4380_77975,286,4380_22073,Knocknaheeny,66886-00010-1,0,4380_7778208_2020201,4380_436 -4380_77975,288,4380_22074,Knocknaheeny,66884-00011-1,0,4380_7778208_2020201,4380_436 -4380_77975,287,4380_22075,Knocknaheeny,66882-00012-1,0,4380_7778208_2020201,4380_436 -4380_77975,291,4380_22076,Knocknaheeny,67722-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_22077,Knocknaheeny,66888-00014-1,0,4380_7778208_2020201,4380_436 -4380_77975,292,4380_22078,Knocknaheeny,66887-00016-1,0,4380_7778208_2020201,4380_436 -4380_77975,293,4380_22079,Knocknaheeny,66885-00017-1,0,4380_7778208_2020201,4380_436 -4380_77947,296,4380_2208,Drop Off,50674-00021-1,1,4380_7778208_1011102,4380_31 -4380_77975,290,4380_22080,Knocknaheeny,66891-00015-1,0,4380_7778208_2020201,4380_436 -4380_77975,294,4380_22081,Knocknaheeny,66883-00018-1,0,4380_7778208_2020201,4380_436 -4380_77975,295,4380_22082,Knocknaheeny,66889-00019-1,0,4380_7778208_2020201,4380_436 -4380_77975,296,4380_22083,Knocknaheeny,67723-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_22085,Knocknaheeny,67360-00008-1,0,4380_7778208_2020203,4380_436 -4380_77975,285,4380_22092,Knocknaheeny,67133-00009-1,0,4380_7778208_2020202,4380_436 -4380_77975,286,4380_22093,Knocknaheeny,67129-00010-1,0,4380_7778208_2020202,4380_436 -4380_77975,288,4380_22094,Knocknaheeny,67138-00011-1,0,4380_7778208_2020202,4380_436 -4380_77975,287,4380_22095,Knocknaheeny,67135-00012-1,0,4380_7778208_2020202,4380_436 -4380_77975,291,4380_22096,Knocknaheeny,67791-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_22097,Knocknaheeny,67131-00014-1,0,4380_7778208_2020202,4380_436 -4380_77975,292,4380_22098,Knocknaheeny,67130-00016-1,0,4380_7778208_2020202,4380_436 -4380_77975,293,4380_22099,Knocknaheeny,67139-00017-1,0,4380_7778208_2020202,4380_436 -4380_77946,293,4380_221,Dundalk,50516-00017-1,0,4380_7778208_1000915,4380_1 -4380_77975,290,4380_22100,Knocknaheeny,67134-00015-1,0,4380_7778208_2020202,4380_436 -4380_77975,294,4380_22101,Knocknaheeny,67136-00018-1,0,4380_7778208_2020202,4380_436 -4380_77975,295,4380_22102,Knocknaheeny,67132-00019-1,0,4380_7778208_2020202,4380_436 -4380_77975,296,4380_22103,Knocknaheeny,67792-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_22105,Knocknaheeny,67726-00008-1,0,4380_7778208_2020205,4380_436 -4380_77975,285,4380_22112,Knocknaheeny,67614-00009-1,0,4380_7778208_2020204,4380_436 -4380_77975,286,4380_22113,Knocknaheeny,67612-00010-1,0,4380_7778208_2020204,4380_436 -4380_77975,288,4380_22114,Knocknaheeny,67610-00011-1,0,4380_7778208_2020204,4380_436 -4380_77975,287,4380_22115,Knocknaheeny,67616-00012-1,0,4380_7778208_2020204,4380_436 -4380_77975,291,4380_22116,Knocknaheeny,67371-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_22117,Knocknaheeny,67608-00014-1,0,4380_7778208_2020204,4380_436 -4380_77975,292,4380_22118,Knocknaheeny,67613-00016-1,0,4380_7778208_2020204,4380_436 -4380_77975,293,4380_22119,Knocknaheeny,67611-00017-1,0,4380_7778208_2020204,4380_436 -4380_77975,290,4380_22120,Knocknaheeny,67615-00015-1,0,4380_7778208_2020204,4380_436 -4380_77975,294,4380_22121,Knocknaheeny,67617-00018-1,0,4380_7778208_2020204,4380_436 -4380_77975,295,4380_22122,Knocknaheeny,67609-00019-1,0,4380_7778208_2020204,4380_436 -4380_77975,296,4380_22123,Knocknaheeny,67372-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_22125,Knocknaheeny,66907-00008-1,0,4380_7778208_2020201,4380_436 -4380_77975,285,4380_22132,Knocknaheeny,67374-00009-1,0,4380_7778208_2020203,4380_436 -4380_77975,286,4380_22133,Knocknaheeny,67380-00010-1,0,4380_7778208_2020203,4380_436 -4380_77975,288,4380_22134,Knocknaheeny,67376-00011-1,0,4380_7778208_2020203,4380_436 -4380_77975,287,4380_22135,Knocknaheeny,67378-00012-1,0,4380_7778208_2020203,4380_436 -4380_77975,291,4380_22136,Knocknaheeny,67728-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_22137,Knocknaheeny,67382-00014-1,0,4380_7778208_2020203,4380_436 -4380_77975,292,4380_22138,Knocknaheeny,67381-00016-1,0,4380_7778208_2020203,4380_436 -4380_77975,293,4380_22139,Knocknaheeny,67377-00017-1,0,4380_7778208_2020203,4380_436 -4380_77975,290,4380_22140,Knocknaheeny,67375-00015-1,0,4380_7778208_2020203,4380_436 -4380_77975,294,4380_22141,Knocknaheeny,67379-00018-1,0,4380_7778208_2020203,4380_436 -4380_77975,295,4380_22142,Knocknaheeny,67383-00019-1,0,4380_7778208_2020203,4380_436 -4380_77975,296,4380_22143,Knocknaheeny,67729-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_22145,Knocknaheeny,67384-00008-1,0,4380_7778208_2020203,4380_436 -4380_77975,285,4380_22152,Knocknaheeny,66916-00009-1,0,4380_7778208_2020201,4380_436 -4380_77975,286,4380_22153,Knocknaheeny,66914-00010-1,0,4380_7778208_2020201,4380_436 -4380_77975,288,4380_22154,Knocknaheeny,66910-00011-1,0,4380_7778208_2020201,4380_436 -4380_77975,287,4380_22155,Knocknaheeny,66912-00012-1,0,4380_7778208_2020201,4380_436 -4380_77975,291,4380_22156,Knocknaheeny,67795-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_22157,Knocknaheeny,66918-00014-1,0,4380_7778208_2020201,4380_436 -4380_77975,292,4380_22158,Knocknaheeny,66915-00016-1,0,4380_7778208_2020201,4380_436 -4380_77975,293,4380_22159,Knocknaheeny,66911-00017-1,0,4380_7778208_2020201,4380_436 -4380_77947,285,4380_2216,Drop Off,50780-00009-1,1,4380_7778208_1011103,4380_27 -4380_77975,290,4380_22160,Knocknaheeny,66917-00015-1,0,4380_7778208_2020201,4380_436 -4380_77975,294,4380_22161,Knocknaheeny,66913-00018-1,0,4380_7778208_2020201,4380_436 -4380_77975,295,4380_22162,Knocknaheeny,66919-00019-1,0,4380_7778208_2020201,4380_436 -4380_77975,296,4380_22163,Knocknaheeny,67796-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_22165,Knocknaheeny,67732-00008-1,0,4380_7778208_2020205,4380_436 -4380_77947,286,4380_2217,Drop Off,50776-00010-1,1,4380_7778208_1011103,4380_27 -4380_77975,285,4380_22172,Knocknaheeny,67160-00009-1,0,4380_7778208_2020202,4380_436 -4380_77975,286,4380_22173,Knocknaheeny,67164-00010-1,0,4380_7778208_2020202,4380_436 -4380_77975,288,4380_22174,Knocknaheeny,67162-00011-1,0,4380_7778208_2020202,4380_436 -4380_77975,287,4380_22175,Knocknaheeny,67158-00012-1,0,4380_7778208_2020202,4380_436 -4380_77975,291,4380_22176,Knocknaheeny,67398-00013-1,0,4380_7778208_2020203,4380_438 -4380_77975,289,4380_22177,Knocknaheeny,67166-00014-1,0,4380_7778208_2020202,4380_436 -4380_77975,292,4380_22178,Knocknaheeny,67165-00016-1,0,4380_7778208_2020202,4380_436 -4380_77975,293,4380_22179,Knocknaheeny,67163-00017-1,0,4380_7778208_2020202,4380_436 -4380_77947,297,4380_2218,Drop Off,50782-00008-1,1,4380_7778208_1011103,4380_29 -4380_77975,290,4380_22180,Knocknaheeny,67161-00015-1,0,4380_7778208_2020202,4380_436 -4380_77975,294,4380_22181,Knocknaheeny,67159-00018-1,0,4380_7778208_2020202,4380_436 -4380_77975,295,4380_22182,Knocknaheeny,67167-00019-1,0,4380_7778208_2020202,4380_436 -4380_77975,296,4380_22183,Knocknaheeny,67399-00021-1,0,4380_7778208_2020203,4380_438 -4380_77975,297,4380_22185,Knocknaheeny,66923-00008-1,0,4380_7778208_2020201,4380_436 -4380_77947,288,4380_2219,Drop Off,50772-00011-1,1,4380_7778208_1011103,4380_27 -4380_77975,285,4380_22192,Knocknaheeny,67643-00009-1,0,4380_7778208_2020204,4380_436 -4380_77975,286,4380_22193,Knocknaheeny,67639-00010-1,0,4380_7778208_2020204,4380_436 -4380_77975,288,4380_22194,Knocknaheeny,67637-00011-1,0,4380_7778208_2020204,4380_436 -4380_77975,287,4380_22195,Knocknaheeny,67641-00012-1,0,4380_7778208_2020204,4380_436 -4380_77975,291,4380_22196,Knocknaheeny,67734-00013-1,0,4380_7778208_2020205,4380_438 -4380_77975,289,4380_22197,Knocknaheeny,67645-00014-1,0,4380_7778208_2020204,4380_436 -4380_77975,292,4380_22198,Knocknaheeny,67640-00016-1,0,4380_7778208_2020204,4380_436 -4380_77975,293,4380_22199,Knocknaheeny,67638-00017-1,0,4380_7778208_2020204,4380_436 -4380_77946,294,4380_222,Dundalk,50508-00018-1,0,4380_7778208_1000915,4380_1 -4380_77947,287,4380_2220,Drop Off,50778-00012-1,1,4380_7778208_1011103,4380_27 -4380_77975,290,4380_22200,Knocknaheeny,67644-00015-1,0,4380_7778208_2020204,4380_436 -4380_77975,294,4380_22201,Knocknaheeny,67642-00018-1,0,4380_7778208_2020204,4380_436 -4380_77975,295,4380_22202,Knocknaheeny,67646-00019-1,0,4380_7778208_2020204,4380_436 -4380_77975,296,4380_22203,Knocknaheeny,67735-00021-1,0,4380_7778208_2020205,4380_438 -4380_77975,297,4380_22205,Knocknaheeny,67400-00008-1,0,4380_7778208_2020203,4380_436 -4380_77947,289,4380_2221,Drop Off,50774-00014-1,1,4380_7778208_1011103,4380_27 -4380_77975,285,4380_22212,Knocknaheeny,67411-00009-1,0,4380_7778208_2020203,4380_436 -4380_77975,286,4380_22213,Knocknaheeny,67403-00010-1,0,4380_7778208_2020203,4380_436 -4380_77975,288,4380_22214,Knocknaheeny,67407-00011-1,0,4380_7778208_2020203,4380_436 -4380_77975,287,4380_22215,Knocknaheeny,67409-00012-1,0,4380_7778208_2020203,4380_436 -4380_77975,291,4380_22216,Knocknaheeny,67799-00013-1,0,4380_7778208_2020206,4380_438 -4380_77975,289,4380_22217,Knocknaheeny,67405-00014-1,0,4380_7778208_2020203,4380_436 -4380_77975,292,4380_22218,Knocknaheeny,67404-00016-1,0,4380_7778208_2020203,4380_436 -4380_77975,293,4380_22219,Knocknaheeny,67408-00017-1,0,4380_7778208_2020203,4380_436 -4380_77947,290,4380_2222,Drop Off,50781-00015-1,1,4380_7778208_1011103,4380_27 -4380_77975,290,4380_22220,Knocknaheeny,67412-00015-1,0,4380_7778208_2020203,4380_436 -4380_77975,294,4380_22221,Knocknaheeny,67410-00018-1,0,4380_7778208_2020203,4380_436 -4380_77975,295,4380_22222,Knocknaheeny,67406-00019-1,0,4380_7778208_2020203,4380_436 -4380_77975,296,4380_22223,Knocknaheeny,67800-00021-1,0,4380_7778208_2020206,4380_438 -4380_77975,297,4380_22225,Knocknaheeny,67738-00008-1,0,4380_7778208_2020205,4380_436 -4380_77947,291,4380_2223,Drop Off,50902-00013-1,1,4380_7778208_1011104,4380_31 -4380_77975,285,4380_22232,Knocknaheeny,66943-00009-1,0,4380_7778208_2020201,4380_436 -4380_77975,286,4380_22233,Knocknaheeny,66941-00010-1,0,4380_7778208_2020201,4380_436 -4380_77975,288,4380_22234,Knocknaheeny,66937-00011-1,0,4380_7778208_2020201,4380_436 -4380_77975,287,4380_22235,Knocknaheeny,66947-00012-1,0,4380_7778208_2020201,4380_436 -4380_77975,291,4380_22236,Knocknaheeny,67413-00013-1,0,4380_7778208_2020203,4380_436 -4380_77975,289,4380_22237,Knocknaheeny,66945-00014-1,0,4380_7778208_2020201,4380_436 -4380_77975,292,4380_22238,Knocknaheeny,66942-00016-1,0,4380_7778208_2020201,4380_436 -4380_77975,293,4380_22239,Knocknaheeny,66938-00017-1,0,4380_7778208_2020201,4380_436 -4380_77947,292,4380_2224,Drop Off,50777-00016-1,1,4380_7778208_1011103,4380_27 -4380_77975,290,4380_22240,Knocknaheeny,66944-00015-1,0,4380_7778208_2020201,4380_436 -4380_77975,294,4380_22241,Knocknaheeny,66948-00018-1,0,4380_7778208_2020201,4380_436 -4380_77975,295,4380_22242,Knocknaheeny,66946-00019-1,0,4380_7778208_2020201,4380_436 -4380_77975,296,4380_22243,Knocknaheeny,67414-00021-1,0,4380_7778208_2020203,4380_436 -4380_77975,297,4380_22245,Knocknaheeny,66949-00008-1,0,4380_7778208_2020201,4380_436 -4380_77947,293,4380_2225,Drop Off,50773-00017-1,1,4380_7778208_1011103,4380_27 -4380_77975,285,4380_22252,Knocknaheeny,67189-00009-1,0,4380_7778208_2020202,4380_436 -4380_77975,286,4380_22253,Knocknaheeny,67193-00010-1,0,4380_7778208_2020202,4380_436 -4380_77975,288,4380_22254,Knocknaheeny,67185-00011-1,0,4380_7778208_2020202,4380_436 -4380_77975,287,4380_22255,Knocknaheeny,67195-00012-1,0,4380_7778208_2020202,4380_436 -4380_77975,291,4380_22256,Knocknaheeny,67739-00013-1,0,4380_7778208_2020205,4380_436 -4380_77975,289,4380_22257,Knocknaheeny,67191-00014-1,0,4380_7778208_2020202,4380_436 -4380_77975,292,4380_22258,Knocknaheeny,67194-00016-1,0,4380_7778208_2020202,4380_436 -4380_77975,293,4380_22259,Knocknaheeny,67186-00017-1,0,4380_7778208_2020202,4380_436 -4380_77947,294,4380_2226,Drop Off,50779-00018-1,1,4380_7778208_1011103,4380_27 -4380_77975,290,4380_22260,Knocknaheeny,67190-00015-1,0,4380_7778208_2020202,4380_436 -4380_77975,294,4380_22261,Knocknaheeny,67196-00018-1,0,4380_7778208_2020202,4380_436 -4380_77975,295,4380_22262,Knocknaheeny,67192-00019-1,0,4380_7778208_2020202,4380_436 -4380_77975,296,4380_22263,Knocknaheeny,67740-00021-1,0,4380_7778208_2020205,4380_436 -4380_77975,297,4380_22265,Knocknaheeny,67426-00008-1,0,4380_7778208_2020203,4380_436 -4380_77947,295,4380_2227,Drop Off,50775-00019-1,1,4380_7778208_1011103,4380_27 -4380_77975,285,4380_22272,Knocknaheeny,67664-00009-1,0,4380_7778208_2020204,4380_436 -4380_77975,286,4380_22273,Knocknaheeny,67670-00010-1,0,4380_7778208_2020204,4380_436 -4380_77975,288,4380_22274,Knocknaheeny,67672-00011-1,0,4380_7778208_2020204,4380_436 -4380_77975,287,4380_22275,Knocknaheeny,67666-00012-1,0,4380_7778208_2020204,4380_436 -4380_77975,291,4380_22276,Knocknaheeny,66956-00013-1,0,4380_7778208_2020201,4380_436 -4380_77975,289,4380_22277,Knocknaheeny,67674-00014-1,0,4380_7778208_2020204,4380_436 -4380_77975,292,4380_22278,Knocknaheeny,67671-00016-1,0,4380_7778208_2020204,4380_436 -4380_77975,293,4380_22279,Knocknaheeny,67673-00017-1,0,4380_7778208_2020204,4380_436 -4380_77947,296,4380_2228,Drop Off,50903-00021-1,1,4380_7778208_1011104,4380_31 -4380_77975,290,4380_22280,Knocknaheeny,67665-00015-1,0,4380_7778208_2020204,4380_436 -4380_77975,294,4380_22281,Knocknaheeny,67667-00018-1,0,4380_7778208_2020204,4380_436 -4380_77975,295,4380_22282,Knocknaheeny,67675-00019-1,0,4380_7778208_2020204,4380_436 -4380_77975,296,4380_22283,Knocknaheeny,66957-00021-1,0,4380_7778208_2020201,4380_436 -4380_77975,297,4380_22285,Knocknaheeny,67744-00008-1,0,4380_7778208_2020205,4380_436 -4380_77975,285,4380_22291,Mahon,67432-00009-1,1,4380_7778208_2020204,4380_442 -4380_77975,286,4380_22292,Mahon,67434-00010-1,1,4380_7778208_2020204,4380_442 -4380_77975,288,4380_22293,Mahon,67438-00011-1,1,4380_7778208_2020204,4380_442 -4380_77975,287,4380_22294,Mahon,67436-00012-1,1,4380_7778208_2020204,4380_442 -4380_77975,289,4380_22295,Mahon,67430-00014-1,1,4380_7778208_2020204,4380_442 -4380_77975,292,4380_22296,Mahon,67435-00016-1,1,4380_7778208_2020204,4380_442 -4380_77975,293,4380_22297,Mahon,67439-00017-1,1,4380_7778208_2020204,4380_442 -4380_77975,290,4380_22298,Mahon,67433-00015-1,1,4380_7778208_2020204,4380_442 -4380_77975,294,4380_22299,Mahon,67437-00018-1,1,4380_7778208_2020204,4380_442 -4380_77946,295,4380_223,Dundalk,50512-00019-1,0,4380_7778208_1000915,4380_1 -4380_77975,295,4380_22300,Mahon,67431-00019-1,1,4380_7778208_2020204,4380_442 -4380_77975,285,4380_22306,Mahon,67202-00009-1,1,4380_7778208_2020203,4380_439 -4380_77975,286,4380_22307,Mahon,67210-00010-1,1,4380_7778208_2020203,4380_439 -4380_77975,288,4380_22308,Mahon,67208-00011-1,1,4380_7778208_2020203,4380_439 -4380_77975,287,4380_22309,Mahon,67206-00012-1,1,4380_7778208_2020203,4380_439 -4380_77975,289,4380_22310,Mahon,67200-00014-1,1,4380_7778208_2020203,4380_439 -4380_77975,292,4380_22311,Mahon,67211-00016-1,1,4380_7778208_2020203,4380_439 -4380_77975,293,4380_22312,Mahon,67209-00017-1,1,4380_7778208_2020203,4380_439 -4380_77975,290,4380_22313,Mahon,67203-00015-1,1,4380_7778208_2020203,4380_439 -4380_77975,294,4380_22314,Mahon,67207-00018-1,1,4380_7778208_2020203,4380_439 -4380_77975,295,4380_22315,Mahon,67201-00019-1,1,4380_7778208_2020203,4380_439 -4380_77975,291,4380_22317,Mahon,67440-00013-1,1,4380_7778208_2020204,4380_442 -4380_77975,296,4380_22318,Mahon,67441-00021-1,1,4380_7778208_2020204,4380_442 -4380_77975,285,4380_22325,Mahon,66732-00009-1,1,4380_7778208_2020201,4380_439 -4380_77975,286,4380_22326,Mahon,66734-00010-1,1,4380_7778208_2020201,4380_439 -4380_77975,288,4380_22327,Mahon,66730-00011-1,1,4380_7778208_2020201,4380_439 -4380_77975,287,4380_22328,Mahon,66738-00012-1,1,4380_7778208_2020201,4380_439 -4380_77975,291,4380_22329,Mahon,66728-00013-1,1,4380_7778208_2020201,4380_441 -4380_77975,289,4380_22330,Mahon,66736-00014-1,1,4380_7778208_2020201,4380_439 -4380_77975,292,4380_22331,Mahon,66735-00016-1,1,4380_7778208_2020201,4380_439 -4380_77975,293,4380_22332,Mahon,66731-00017-1,1,4380_7778208_2020201,4380_439 -4380_77975,290,4380_22333,Mahon,66733-00015-1,1,4380_7778208_2020201,4380_439 -4380_77975,294,4380_22334,Mahon,66739-00018-1,1,4380_7778208_2020201,4380_439 -4380_77975,295,4380_22335,Mahon,66737-00019-1,1,4380_7778208_2020201,4380_439 -4380_77975,296,4380_22336,Mahon,66729-00021-1,1,4380_7778208_2020201,4380_441 -4380_77975,285,4380_22344,Mahon,66984-00009-1,1,4380_7778208_2020202,4380_441 -4380_77975,286,4380_22345,Mahon,66978-00010-1,1,4380_7778208_2020202,4380_441 -4380_77975,297,4380_22346,Mahon,67805-00008-1,1,4380_7778208_2020207,4380_439 -4380_77975,288,4380_22347,Mahon,66980-00011-1,1,4380_7778208_2020202,4380_441 -4380_77975,287,4380_22348,Mahon,66986-00012-1,1,4380_7778208_2020202,4380_441 -4380_77975,291,4380_22349,Mahon,66976-00013-1,1,4380_7778208_2020202,4380_443 -4380_77975,289,4380_22350,Mahon,66982-00014-1,1,4380_7778208_2020202,4380_441 -4380_77975,292,4380_22351,Mahon,66979-00016-1,1,4380_7778208_2020202,4380_441 -4380_77975,293,4380_22352,Mahon,66981-00017-1,1,4380_7778208_2020202,4380_441 -4380_77975,290,4380_22353,Mahon,66985-00015-1,1,4380_7778208_2020202,4380_441 -4380_77975,294,4380_22354,Mahon,66987-00018-1,1,4380_7778208_2020202,4380_441 -4380_77975,295,4380_22355,Mahon,66983-00019-1,1,4380_7778208_2020202,4380_441 -4380_77975,296,4380_22356,Mahon,66977-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,285,4380_2236,Drop Off,51000-00009-1,1,4380_7778208_1011105,4380_28 -4380_77975,285,4380_22364,Mahon,67465-00009-1,1,4380_7778208_2020204,4380_441 -4380_77975,286,4380_22365,Mahon,67459-00010-1,1,4380_7778208_2020204,4380_441 -4380_77975,297,4380_22366,Mahon,67683-00008-1,1,4380_7778208_2020205,4380_439 -4380_77975,288,4380_22367,Mahon,67455-00011-1,1,4380_7778208_2020204,4380_441 -4380_77975,287,4380_22368,Mahon,67461-00012-1,1,4380_7778208_2020204,4380_441 -4380_77975,291,4380_22369,Mahon,67463-00013-1,1,4380_7778208_2020204,4380_443 -4380_77947,286,4380_2237,Drop Off,51006-00010-1,1,4380_7778208_1011105,4380_28 -4380_77975,289,4380_22370,Mahon,67457-00014-1,1,4380_7778208_2020204,4380_441 -4380_77975,292,4380_22371,Mahon,67460-00016-1,1,4380_7778208_2020204,4380_441 -4380_77975,293,4380_22372,Mahon,67456-00017-1,1,4380_7778208_2020204,4380_441 -4380_77975,290,4380_22373,Mahon,67466-00015-1,1,4380_7778208_2020204,4380_441 -4380_77975,294,4380_22374,Mahon,67462-00018-1,1,4380_7778208_2020204,4380_441 -4380_77975,295,4380_22375,Mahon,67458-00019-1,1,4380_7778208_2020204,4380_441 -4380_77975,296,4380_22376,Mahon,67464-00021-1,1,4380_7778208_2020204,4380_443 -4380_77947,297,4380_2238,Drop Off,50904-00008-1,1,4380_7778208_1011104,4380_30 -4380_77975,285,4380_22384,Mahon,67230-00009-1,1,4380_7778208_2020203,4380_441 -4380_77975,286,4380_22385,Mahon,67234-00010-1,1,4380_7778208_2020203,4380_441 -4380_77975,297,4380_22386,Mahon,67752-00008-1,1,4380_7778208_2020206,4380_439 -4380_77975,288,4380_22387,Mahon,67228-00011-1,1,4380_7778208_2020203,4380_441 -4380_77975,287,4380_22388,Mahon,67236-00012-1,1,4380_7778208_2020203,4380_441 -4380_77975,291,4380_22389,Mahon,66754-00013-1,1,4380_7778208_2020201,4380_443 -4380_77947,288,4380_2239,Drop Off,51002-00011-1,1,4380_7778208_1011105,4380_28 -4380_77975,289,4380_22390,Mahon,67226-00014-1,1,4380_7778208_2020203,4380_441 -4380_77975,292,4380_22391,Mahon,67235-00016-1,1,4380_7778208_2020203,4380_441 -4380_77975,293,4380_22392,Mahon,67229-00017-1,1,4380_7778208_2020203,4380_441 -4380_77975,290,4380_22393,Mahon,67231-00015-1,1,4380_7778208_2020203,4380_441 -4380_77975,294,4380_22394,Mahon,67237-00018-1,1,4380_7778208_2020203,4380_441 -4380_77975,295,4380_22395,Mahon,67227-00019-1,1,4380_7778208_2020203,4380_441 -4380_77975,296,4380_22396,Mahon,66755-00021-1,1,4380_7778208_2020201,4380_443 -4380_77946,296,4380_224,Dundalk,50282-00021-1,0,4380_7778208_1000912,4380_5 -4380_77947,287,4380_2240,Drop Off,51004-00012-1,1,4380_7778208_1011105,4380_28 -4380_77975,285,4380_22404,Mahon,66757-00009-1,1,4380_7778208_2020201,4380_441 -4380_77975,286,4380_22405,Mahon,66763-00010-1,1,4380_7778208_2020201,4380_441 -4380_77975,297,4380_22406,Mahon,67807-00008-1,1,4380_7778208_2020207,4380_439 -4380_77975,288,4380_22407,Mahon,66759-00011-1,1,4380_7778208_2020201,4380_441 -4380_77975,287,4380_22408,Mahon,66765-00012-1,1,4380_7778208_2020201,4380_441 -4380_77975,291,4380_22409,Mahon,67002-00013-1,1,4380_7778208_2020202,4380_443 -4380_77947,289,4380_2241,Drop Off,50998-00014-1,1,4380_7778208_1011105,4380_28 -4380_77975,289,4380_22410,Mahon,66761-00014-1,1,4380_7778208_2020201,4380_441 -4380_77975,292,4380_22411,Mahon,66764-00016-1,1,4380_7778208_2020201,4380_441 -4380_77975,293,4380_22412,Mahon,66760-00017-1,1,4380_7778208_2020201,4380_441 -4380_77975,290,4380_22413,Mahon,66758-00015-1,1,4380_7778208_2020201,4380_441 -4380_77975,294,4380_22414,Mahon,66766-00018-1,1,4380_7778208_2020201,4380_441 -4380_77975,295,4380_22415,Mahon,66762-00019-1,1,4380_7778208_2020201,4380_441 -4380_77975,296,4380_22416,Mahon,67003-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,290,4380_2242,Drop Off,51001-00015-1,1,4380_7778208_1011105,4380_28 -4380_77975,285,4380_22424,Mahon,67009-00009-1,1,4380_7778208_2020202,4380_441 -4380_77975,286,4380_22425,Mahon,67013-00010-1,1,4380_7778208_2020202,4380_441 -4380_77975,297,4380_22426,Mahon,67689-00008-1,1,4380_7778208_2020205,4380_439 -4380_77975,288,4380_22427,Mahon,67007-00011-1,1,4380_7778208_2020202,4380_441 -4380_77975,287,4380_22428,Mahon,67011-00012-1,1,4380_7778208_2020202,4380_441 -4380_77975,291,4380_22429,Mahon,67481-00013-1,1,4380_7778208_2020204,4380_443 -4380_77947,291,4380_2243,Drop Off,50996-00013-1,1,4380_7778208_1011105,4380_32 -4380_77975,289,4380_22430,Mahon,67005-00014-1,1,4380_7778208_2020202,4380_441 -4380_77975,292,4380_22431,Mahon,67014-00016-1,1,4380_7778208_2020202,4380_441 -4380_77975,293,4380_22432,Mahon,67008-00017-1,1,4380_7778208_2020202,4380_441 -4380_77975,290,4380_22433,Mahon,67010-00015-1,1,4380_7778208_2020202,4380_441 -4380_77975,294,4380_22434,Mahon,67012-00018-1,1,4380_7778208_2020202,4380_441 -4380_77975,295,4380_22435,Mahon,67006-00019-1,1,4380_7778208_2020202,4380_441 -4380_77975,296,4380_22436,Mahon,67482-00021-1,1,4380_7778208_2020204,4380_443 -4380_77947,292,4380_2244,Drop Off,51007-00016-1,1,4380_7778208_1011105,4380_28 -4380_77975,285,4380_22444,Mahon,67488-00009-1,1,4380_7778208_2020204,4380_441 -4380_77975,286,4380_22445,Mahon,67484-00010-1,1,4380_7778208_2020204,4380_441 -4380_77975,297,4380_22446,Mahon,67758-00008-1,1,4380_7778208_2020206,4380_439 -4380_77975,288,4380_22447,Mahon,67490-00011-1,1,4380_7778208_2020204,4380_441 -4380_77975,287,4380_22448,Mahon,67486-00012-1,1,4380_7778208_2020204,4380_441 -4380_77975,291,4380_22449,Mahon,66780-00013-1,1,4380_7778208_2020201,4380_443 -4380_77947,293,4380_2245,Drop Off,51003-00017-1,1,4380_7778208_1011105,4380_28 -4380_77975,289,4380_22450,Mahon,67492-00014-1,1,4380_7778208_2020204,4380_441 -4380_77975,292,4380_22451,Mahon,67485-00016-1,1,4380_7778208_2020204,4380_441 -4380_77975,293,4380_22452,Mahon,67491-00017-1,1,4380_7778208_2020204,4380_441 -4380_77975,290,4380_22453,Mahon,67489-00015-1,1,4380_7778208_2020204,4380_441 -4380_77975,294,4380_22454,Mahon,67487-00018-1,1,4380_7778208_2020204,4380_441 -4380_77975,295,4380_22455,Mahon,67493-00019-1,1,4380_7778208_2020204,4380_441 -4380_77975,296,4380_22456,Mahon,66781-00021-1,1,4380_7778208_2020201,4380_443 -4380_77947,294,4380_2246,Drop Off,51005-00018-1,1,4380_7778208_1011105,4380_28 -4380_77975,285,4380_22464,Mahon,67258-00009-1,1,4380_7778208_2020203,4380_441 -4380_77975,286,4380_22465,Mahon,67252-00010-1,1,4380_7778208_2020203,4380_441 -4380_77975,297,4380_22466,Mahon,67809-00008-1,1,4380_7778208_2020207,4380_439 -4380_77975,288,4380_22467,Mahon,67256-00011-1,1,4380_7778208_2020203,4380_441 -4380_77975,287,4380_22468,Mahon,67254-00012-1,1,4380_7778208_2020203,4380_441 -4380_77975,291,4380_22469,Mahon,67028-00013-1,1,4380_7778208_2020202,4380_443 -4380_77947,295,4380_2247,Drop Off,50999-00019-1,1,4380_7778208_1011105,4380_28 -4380_77975,289,4380_22470,Mahon,67260-00014-1,1,4380_7778208_2020203,4380_441 -4380_77975,292,4380_22471,Mahon,67253-00016-1,1,4380_7778208_2020203,4380_441 -4380_77975,293,4380_22472,Mahon,67257-00017-1,1,4380_7778208_2020203,4380_441 -4380_77975,290,4380_22473,Mahon,67259-00015-1,1,4380_7778208_2020203,4380_441 -4380_77975,294,4380_22474,Mahon,67255-00018-1,1,4380_7778208_2020203,4380_441 -4380_77975,295,4380_22475,Mahon,67261-00019-1,1,4380_7778208_2020203,4380_441 -4380_77975,296,4380_22476,Mahon,67029-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,296,4380_2248,Drop Off,50997-00021-1,1,4380_7778208_1011105,4380_32 -4380_77975,285,4380_22484,Mahon,66791-00009-1,1,4380_7778208_2020201,4380_441 -4380_77975,286,4380_22485,Mahon,66787-00010-1,1,4380_7778208_2020201,4380_441 -4380_77975,297,4380_22486,Mahon,67695-00008-1,1,4380_7778208_2020205,4380_439 -4380_77975,288,4380_22487,Mahon,66785-00011-1,1,4380_7778208_2020201,4380_441 -4380_77975,287,4380_22488,Mahon,66794-00012-1,1,4380_7778208_2020201,4380_441 -4380_77975,291,4380_22489,Mahon,67505-00013-1,1,4380_7778208_2020204,4380_443 -4380_77975,289,4380_22490,Mahon,66789-00014-1,1,4380_7778208_2020201,4380_441 -4380_77975,292,4380_22491,Mahon,66788-00016-1,1,4380_7778208_2020201,4380_441 -4380_77975,293,4380_22492,Mahon,66786-00017-1,1,4380_7778208_2020201,4380_441 -4380_77975,290,4380_22493,Mahon,66792-00015-1,1,4380_7778208_2020201,4380_441 -4380_77975,294,4380_22494,Mahon,66795-00018-1,1,4380_7778208_2020201,4380_441 -4380_77975,295,4380_22495,Mahon,66790-00019-1,1,4380_7778208_2020201,4380_441 -4380_77975,296,4380_22496,Mahon,67506-00021-1,1,4380_7778208_2020204,4380_443 -4380_77975,285,4380_22504,Mahon,67040-00009-1,1,4380_7778208_2020202,4380_441 -4380_77975,286,4380_22505,Mahon,67042-00010-1,1,4380_7778208_2020202,4380_441 -4380_77975,297,4380_22506,Mahon,67764-00008-1,1,4380_7778208_2020206,4380_439 -4380_77975,288,4380_22507,Mahon,67035-00011-1,1,4380_7778208_2020202,4380_441 -4380_77975,287,4380_22508,Mahon,67038-00012-1,1,4380_7778208_2020202,4380_441 -4380_77975,291,4380_22509,Mahon,66796-00013-1,1,4380_7778208_2020201,4380_443 -4380_77975,289,4380_22510,Mahon,67033-00014-1,1,4380_7778208_2020202,4380_441 -4380_77975,292,4380_22511,Mahon,67043-00016-1,1,4380_7778208_2020202,4380_441 -4380_77975,293,4380_22512,Mahon,67036-00017-1,1,4380_7778208_2020202,4380_441 -4380_77975,290,4380_22513,Mahon,67041-00015-1,1,4380_7778208_2020202,4380_441 -4380_77975,294,4380_22514,Mahon,67039-00018-1,1,4380_7778208_2020202,4380_441 -4380_77975,295,4380_22515,Mahon,67034-00019-1,1,4380_7778208_2020202,4380_441 -4380_77975,296,4380_22516,Mahon,66797-00021-1,1,4380_7778208_2020201,4380_443 -4380_77975,285,4380_22524,Mahon,67513-00009-1,1,4380_7778208_2020204,4380_441 -4380_77975,286,4380_22525,Mahon,67521-00010-1,1,4380_7778208_2020204,4380_441 -4380_77975,297,4380_22526,Mahon,67811-00008-1,1,4380_7778208_2020207,4380_439 -4380_77975,288,4380_22527,Mahon,67517-00011-1,1,4380_7778208_2020204,4380_441 -4380_77975,287,4380_22528,Mahon,67519-00012-1,1,4380_7778208_2020204,4380_441 -4380_77975,291,4380_22529,Mahon,67044-00013-1,1,4380_7778208_2020202,4380_443 -4380_77975,289,4380_22530,Mahon,67515-00014-1,1,4380_7778208_2020204,4380_441 -4380_77975,292,4380_22531,Mahon,67522-00016-1,1,4380_7778208_2020204,4380_441 -4380_77975,293,4380_22532,Mahon,67518-00017-1,1,4380_7778208_2020204,4380_441 -4380_77975,290,4380_22533,Mahon,67514-00015-1,1,4380_7778208_2020204,4380_441 -4380_77975,294,4380_22534,Mahon,67520-00018-1,1,4380_7778208_2020204,4380_441 -4380_77975,295,4380_22535,Mahon,67516-00019-1,1,4380_7778208_2020204,4380_441 -4380_77975,296,4380_22536,Mahon,67045-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,285,4380_2254,Drop Off,51108-00009-1,1,4380_7778208_1011106,4380_28 -4380_77975,285,4380_22544,Mahon,67284-00009-1,1,4380_7778208_2020203,4380_441 -4380_77975,286,4380_22545,Mahon,67282-00010-1,1,4380_7778208_2020203,4380_441 -4380_77975,297,4380_22546,Mahon,67701-00008-1,1,4380_7778208_2020205,4380_439 -4380_77975,288,4380_22547,Mahon,67280-00011-1,1,4380_7778208_2020203,4380_441 -4380_77975,287,4380_22548,Mahon,67286-00012-1,1,4380_7778208_2020203,4380_441 -4380_77975,291,4380_22549,Mahon,67523-00013-1,1,4380_7778208_2020204,4380_443 -4380_77947,286,4380_2255,Drop Off,51104-00010-1,1,4380_7778208_1011106,4380_28 -4380_77975,289,4380_22550,Mahon,67278-00014-1,1,4380_7778208_2020203,4380_441 -4380_77975,292,4380_22551,Mahon,67283-00016-1,1,4380_7778208_2020203,4380_441 -4380_77975,293,4380_22552,Mahon,67281-00017-1,1,4380_7778208_2020203,4380_441 -4380_77975,290,4380_22553,Mahon,67285-00015-1,1,4380_7778208_2020203,4380_441 -4380_77975,294,4380_22554,Mahon,67287-00018-1,1,4380_7778208_2020203,4380_441 -4380_77975,295,4380_22555,Mahon,67279-00019-1,1,4380_7778208_2020203,4380_441 -4380_77975,296,4380_22556,Mahon,67524-00021-1,1,4380_7778208_2020204,4380_443 -4380_77947,288,4380_2256,Drop Off,51100-00011-1,1,4380_7778208_1011106,4380_28 -4380_77975,285,4380_22564,Mahon,66820-00009-1,1,4380_7778208_2020201,4380_441 -4380_77975,286,4380_22565,Mahon,66822-00010-1,1,4380_7778208_2020201,4380_441 -4380_77975,297,4380_22566,Mahon,67770-00008-1,1,4380_7778208_2020206,4380_439 -4380_77975,288,4380_22567,Mahon,66816-00011-1,1,4380_7778208_2020201,4380_441 -4380_77975,287,4380_22568,Mahon,66814-00012-1,1,4380_7778208_2020201,4380_441 -4380_77975,291,4380_22569,Mahon,66812-00013-1,1,4380_7778208_2020201,4380_443 -4380_77947,287,4380_2257,Drop Off,51106-00012-1,1,4380_7778208_1011106,4380_28 -4380_77975,289,4380_22570,Mahon,66818-00014-1,1,4380_7778208_2020201,4380_441 -4380_77975,292,4380_22571,Mahon,66823-00016-1,1,4380_7778208_2020201,4380_441 -4380_77975,293,4380_22572,Mahon,66817-00017-1,1,4380_7778208_2020201,4380_441 -4380_77975,290,4380_22573,Mahon,66821-00015-1,1,4380_7778208_2020201,4380_441 -4380_77975,294,4380_22574,Mahon,66815-00018-1,1,4380_7778208_2020201,4380_441 -4380_77975,295,4380_22575,Mahon,66819-00019-1,1,4380_7778208_2020201,4380_441 -4380_77975,296,4380_22576,Mahon,66813-00021-1,1,4380_7778208_2020201,4380_443 -4380_77947,289,4380_2258,Drop Off,51102-00014-1,1,4380_7778208_1011106,4380_28 -4380_77975,285,4380_22584,Mahon,67062-00009-1,1,4380_7778208_2020202,4380_441 -4380_77975,286,4380_22585,Mahon,67068-00010-1,1,4380_7778208_2020202,4380_441 -4380_77975,297,4380_22586,Mahon,67813-00008-1,1,4380_7778208_2020207,4380_439 -4380_77975,288,4380_22587,Mahon,67070-00011-1,1,4380_7778208_2020202,4380_441 -4380_77975,287,4380_22588,Mahon,67060-00012-1,1,4380_7778208_2020202,4380_441 -4380_77975,291,4380_22589,Mahon,67064-00013-1,1,4380_7778208_2020202,4380_443 -4380_77947,290,4380_2259,Drop Off,51109-00015-1,1,4380_7778208_1011106,4380_28 -4380_77975,289,4380_22590,Mahon,67066-00014-1,1,4380_7778208_2020202,4380_441 -4380_77975,292,4380_22591,Mahon,67069-00016-1,1,4380_7778208_2020202,4380_441 -4380_77975,293,4380_22592,Mahon,67071-00017-1,1,4380_7778208_2020202,4380_441 -4380_77975,290,4380_22593,Mahon,67063-00015-1,1,4380_7778208_2020202,4380_441 -4380_77975,294,4380_22594,Mahon,67061-00018-1,1,4380_7778208_2020202,4380_441 -4380_77975,295,4380_22595,Mahon,67067-00019-1,1,4380_7778208_2020202,4380_441 -4380_77975,296,4380_22596,Mahon,67065-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,292,4380_2260,Drop Off,51105-00016-1,1,4380_7778208_1011106,4380_28 -4380_77975,285,4380_22604,Mahon,67547-00009-1,1,4380_7778208_2020204,4380_441 -4380_77975,286,4380_22605,Mahon,67545-00010-1,1,4380_7778208_2020204,4380_441 -4380_77975,297,4380_22606,Mahon,67072-00008-1,1,4380_7778208_2020202,4380_439 -4380_77975,288,4380_22607,Mahon,67549-00011-1,1,4380_7778208_2020204,4380_441 -4380_77975,287,4380_22608,Mahon,67541-00012-1,1,4380_7778208_2020204,4380_441 -4380_77975,291,4380_22609,Mahon,67539-00013-1,1,4380_7778208_2020204,4380_443 -4380_77947,293,4380_2261,Drop Off,51101-00017-1,1,4380_7778208_1011106,4380_28 -4380_77975,289,4380_22610,Mahon,67543-00014-1,1,4380_7778208_2020204,4380_441 -4380_77975,292,4380_22611,Mahon,67546-00016-1,1,4380_7778208_2020204,4380_441 -4380_77975,293,4380_22612,Mahon,67550-00017-1,1,4380_7778208_2020204,4380_441 -4380_77975,290,4380_22613,Mahon,67548-00015-1,1,4380_7778208_2020204,4380_441 -4380_77975,294,4380_22614,Mahon,67542-00018-1,1,4380_7778208_2020204,4380_441 -4380_77975,295,4380_22615,Mahon,67544-00019-1,1,4380_7778208_2020204,4380_441 -4380_77975,296,4380_22616,Mahon,67540-00021-1,1,4380_7778208_2020204,4380_443 -4380_77947,294,4380_2262,Drop Off,51107-00018-1,1,4380_7778208_1011106,4380_28 -4380_77975,285,4380_22624,Mahon,67314-00009-1,1,4380_7778208_2020203,4380_441 -4380_77975,286,4380_22625,Mahon,67308-00010-1,1,4380_7778208_2020203,4380_441 -4380_77975,297,4380_22626,Mahon,67551-00008-1,1,4380_7778208_2020204,4380_439 -4380_77975,288,4380_22627,Mahon,67306-00011-1,1,4380_7778208_2020203,4380_441 -4380_77975,287,4380_22628,Mahon,67312-00012-1,1,4380_7778208_2020203,4380_441 -4380_77975,291,4380_22629,Mahon,66838-00013-1,1,4380_7778208_2020201,4380_443 -4380_77947,295,4380_2263,Drop Off,51103-00019-1,1,4380_7778208_1011106,4380_28 -4380_77975,289,4380_22630,Mahon,67304-00014-1,1,4380_7778208_2020203,4380_441 -4380_77975,292,4380_22631,Mahon,67309-00016-1,1,4380_7778208_2020203,4380_441 -4380_77975,293,4380_22632,Mahon,67307-00017-1,1,4380_7778208_2020203,4380_441 -4380_77975,290,4380_22633,Mahon,67315-00015-1,1,4380_7778208_2020203,4380_441 -4380_77975,294,4380_22634,Mahon,67313-00018-1,1,4380_7778208_2020203,4380_441 -4380_77975,295,4380_22635,Mahon,67305-00019-1,1,4380_7778208_2020203,4380_441 -4380_77975,296,4380_22636,Mahon,66839-00021-1,1,4380_7778208_2020201,4380_443 -4380_77975,285,4380_22644,Mahon,66849-00009-1,1,4380_7778208_2020201,4380_441 -4380_77975,286,4380_22645,Mahon,66840-00010-1,1,4380_7778208_2020201,4380_441 -4380_77975,297,4380_22646,Mahon,66846-00008-1,1,4380_7778208_2020201,4380_439 -4380_77975,288,4380_22647,Mahon,66844-00011-1,1,4380_7778208_2020201,4380_441 -4380_77975,287,4380_22648,Mahon,66847-00012-1,1,4380_7778208_2020201,4380_441 -4380_77975,291,4380_22649,Mahon,67086-00013-1,1,4380_7778208_2020202,4380_443 -4380_77947,291,4380_2265,Drop Off,51110-00013-1,1,4380_7778208_1011106,4380_28 -4380_77975,289,4380_22650,Mahon,66842-00014-1,1,4380_7778208_2020201,4380_441 -4380_77975,292,4380_22651,Mahon,66841-00016-1,1,4380_7778208_2020201,4380_441 -4380_77975,293,4380_22652,Mahon,66845-00017-1,1,4380_7778208_2020201,4380_441 -4380_77975,290,4380_22653,Mahon,66850-00015-1,1,4380_7778208_2020201,4380_441 -4380_77975,294,4380_22654,Mahon,66848-00018-1,1,4380_7778208_2020201,4380_441 -4380_77975,295,4380_22655,Mahon,66843-00019-1,1,4380_7778208_2020201,4380_441 -4380_77975,296,4380_22656,Mahon,67087-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,296,4380_2266,Drop Off,51111-00021-1,1,4380_7778208_1011106,4380_28 -4380_77975,285,4380_22664,Mahon,67090-00009-1,1,4380_7778208_2020202,4380_441 -4380_77975,286,4380_22665,Mahon,67096-00010-1,1,4380_7778208_2020202,4380_441 -4380_77975,297,4380_22666,Mahon,67327-00008-1,1,4380_7778208_2020203,4380_439 -4380_77975,288,4380_22667,Mahon,67092-00011-1,1,4380_7778208_2020202,4380_441 -4380_77975,287,4380_22668,Mahon,67094-00012-1,1,4380_7778208_2020202,4380_441 -4380_77975,291,4380_22669,Mahon,67565-00013-1,1,4380_7778208_2020204,4380_443 -4380_77975,289,4380_22670,Mahon,67088-00014-1,1,4380_7778208_2020202,4380_441 -4380_77975,292,4380_22671,Mahon,67097-00016-1,1,4380_7778208_2020202,4380_441 -4380_77975,293,4380_22672,Mahon,67093-00017-1,1,4380_7778208_2020202,4380_441 -4380_77975,290,4380_22673,Mahon,67091-00015-1,1,4380_7778208_2020202,4380_441 -4380_77975,294,4380_22674,Mahon,67095-00018-1,1,4380_7778208_2020202,4380_441 -4380_77975,295,4380_22675,Mahon,67089-00019-1,1,4380_7778208_2020202,4380_441 -4380_77975,296,4380_22676,Mahon,67566-00021-1,1,4380_7778208_2020204,4380_443 -4380_77975,285,4380_22684,Mahon,67571-00009-1,1,4380_7778208_2020204,4380_441 -4380_77975,286,4380_22685,Mahon,67573-00010-1,1,4380_7778208_2020204,4380_441 -4380_77975,297,4380_22686,Mahon,67715-00008-1,1,4380_7778208_2020205,4380_439 -4380_77975,288,4380_22687,Mahon,67567-00011-1,1,4380_7778208_2020204,4380_441 -4380_77975,287,4380_22688,Mahon,67575-00012-1,1,4380_7778208_2020204,4380_441 -4380_77975,291,4380_22689,Mahon,66855-00013-1,1,4380_7778208_2020201,4380_443 -4380_77975,289,4380_22690,Mahon,67569-00014-1,1,4380_7778208_2020204,4380_441 -4380_77975,292,4380_22691,Mahon,67574-00016-1,1,4380_7778208_2020204,4380_441 -4380_77975,293,4380_22692,Mahon,67568-00017-1,1,4380_7778208_2020204,4380_441 -4380_77975,290,4380_22693,Mahon,67572-00015-1,1,4380_7778208_2020204,4380_441 -4380_77975,294,4380_22694,Mahon,67576-00018-1,1,4380_7778208_2020204,4380_441 -4380_77975,295,4380_22695,Mahon,67570-00019-1,1,4380_7778208_2020204,4380_441 -4380_77975,296,4380_22696,Mahon,66856-00021-1,1,4380_7778208_2020201,4380_443 -4380_77975,285,4380_22704,Mahon,67332-00009-1,1,4380_7778208_2020203,4380_441 -4380_77975,286,4380_22705,Mahon,67334-00010-1,1,4380_7778208_2020203,4380_441 -4380_77975,297,4380_22706,Mahon,67784-00008-1,1,4380_7778208_2020206,4380_439 -4380_77975,288,4380_22707,Mahon,67340-00011-1,1,4380_7778208_2020203,4380_441 -4380_77975,287,4380_22708,Mahon,67338-00012-1,1,4380_7778208_2020203,4380_441 -4380_77975,291,4380_22709,Mahon,67109-00013-1,1,4380_7778208_2020202,4380_443 -4380_77975,289,4380_22710,Mahon,67336-00014-1,1,4380_7778208_2020203,4380_441 -4380_77975,292,4380_22711,Mahon,67335-00016-1,1,4380_7778208_2020203,4380_441 -4380_77975,293,4380_22712,Mahon,67341-00017-1,1,4380_7778208_2020203,4380_441 -4380_77975,290,4380_22713,Mahon,67333-00015-1,1,4380_7778208_2020203,4380_441 -4380_77975,294,4380_22714,Mahon,67339-00018-1,1,4380_7778208_2020203,4380_441 -4380_77975,295,4380_22715,Mahon,67337-00019-1,1,4380_7778208_2020203,4380_441 -4380_77975,296,4380_22716,Mahon,67110-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,285,4380_2272,Drop Off,51192-00009-1,1,4380_7778208_1011107,4380_28 -4380_77975,285,4380_22724,Mahon,66875-00009-1,1,4380_7778208_2020201,4380_441 -4380_77975,286,4380_22725,Mahon,66869-00010-1,1,4380_7778208_2020201,4380_441 -4380_77975,297,4380_22726,Mahon,67817-00008-1,1,4380_7778208_2020207,4380_439 -4380_77975,288,4380_22727,Mahon,66871-00011-1,1,4380_7778208_2020201,4380_441 -4380_77975,287,4380_22728,Mahon,66873-00012-1,1,4380_7778208_2020201,4380_441 -4380_77975,291,4380_22729,Mahon,67582-00013-1,1,4380_7778208_2020204,4380_443 -4380_77947,286,4380_2273,Drop Off,51190-00010-1,1,4380_7778208_1011107,4380_28 -4380_77975,289,4380_22730,Mahon,66877-00014-1,1,4380_7778208_2020201,4380_441 -4380_77975,292,4380_22731,Mahon,66870-00016-1,1,4380_7778208_2020201,4380_441 -4380_77975,293,4380_22732,Mahon,66872-00017-1,1,4380_7778208_2020201,4380_441 -4380_77975,290,4380_22733,Mahon,66876-00015-1,1,4380_7778208_2020201,4380_441 -4380_77975,294,4380_22734,Mahon,66874-00018-1,1,4380_7778208_2020201,4380_441 -4380_77975,295,4380_22735,Mahon,66878-00019-1,1,4380_7778208_2020201,4380_441 -4380_77975,296,4380_22736,Mahon,67583-00021-1,1,4380_7778208_2020204,4380_443 -4380_77947,288,4380_2274,Drop Off,51188-00011-1,1,4380_7778208_1011107,4380_28 -4380_77975,285,4380_22744,Mahon,67119-00009-1,1,4380_7778208_2020202,4380_441 -4380_77975,286,4380_22745,Mahon,67123-00010-1,1,4380_7778208_2020202,4380_441 -4380_77975,297,4380_22746,Mahon,67116-00008-1,1,4380_7778208_2020202,4380_439 -4380_77975,288,4380_22747,Mahon,67125-00011-1,1,4380_7778208_2020202,4380_441 -4380_77975,287,4380_22748,Mahon,67117-00012-1,1,4380_7778208_2020202,4380_441 -4380_77975,291,4380_22749,Mahon,66879-00013-1,1,4380_7778208_2020201,4380_443 -4380_77947,287,4380_2275,Drop Off,51194-00012-1,1,4380_7778208_1011107,4380_28 -4380_77975,289,4380_22750,Mahon,67121-00014-1,1,4380_7778208_2020202,4380_441 -4380_77975,292,4380_22751,Mahon,67124-00016-1,1,4380_7778208_2020202,4380_441 -4380_77975,293,4380_22752,Mahon,67126-00017-1,1,4380_7778208_2020202,4380_441 -4380_77975,290,4380_22753,Mahon,67120-00015-1,1,4380_7778208_2020202,4380_441 -4380_77975,294,4380_22754,Mahon,67118-00018-1,1,4380_7778208_2020202,4380_441 -4380_77975,295,4380_22755,Mahon,67122-00019-1,1,4380_7778208_2020202,4380_441 -4380_77975,296,4380_22756,Mahon,66880-00021-1,1,4380_7778208_2020201,4380_443 -4380_77947,289,4380_2276,Drop Off,51186-00014-1,1,4380_7778208_1011107,4380_28 -4380_77975,285,4380_22764,Mahon,67595-00009-1,1,4380_7778208_2020204,4380_441 -4380_77975,286,4380_22765,Mahon,67597-00010-1,1,4380_7778208_2020204,4380_441 -4380_77975,297,4380_22766,Mahon,67605-00008-1,1,4380_7778208_2020204,4380_439 -4380_77975,288,4380_22767,Mahon,67599-00011-1,1,4380_7778208_2020204,4380_441 -4380_77975,287,4380_22768,Mahon,67603-00012-1,1,4380_7778208_2020204,4380_441 -4380_77975,291,4380_22769,Mahon,67127-00013-1,1,4380_7778208_2020202,4380_443 -4380_77947,290,4380_2277,Drop Off,51193-00015-1,1,4380_7778208_1011107,4380_28 -4380_77975,289,4380_22770,Mahon,67601-00014-1,1,4380_7778208_2020204,4380_441 -4380_77975,292,4380_22771,Mahon,67598-00016-1,1,4380_7778208_2020204,4380_441 -4380_77975,293,4380_22772,Mahon,67600-00017-1,1,4380_7778208_2020204,4380_441 -4380_77975,290,4380_22773,Mahon,67596-00015-1,1,4380_7778208_2020204,4380_441 -4380_77975,294,4380_22774,Mahon,67604-00018-1,1,4380_7778208_2020204,4380_441 -4380_77975,295,4380_22775,Mahon,67602-00019-1,1,4380_7778208_2020204,4380_441 -4380_77975,296,4380_22776,Mahon,67128-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,292,4380_2278,Drop Off,51191-00016-1,1,4380_7778208_1011107,4380_28 -4380_77975,285,4380_22784,Mahon,67363-00009-1,1,4380_7778208_2020203,4380_441 -4380_77975,286,4380_22785,Mahon,67369-00010-1,1,4380_7778208_2020203,4380_441 -4380_77975,297,4380_22786,Mahon,66894-00008-1,1,4380_7778208_2020201,4380_439 -4380_77975,288,4380_22787,Mahon,67361-00011-1,1,4380_7778208_2020203,4380_441 -4380_77975,287,4380_22788,Mahon,67365-00012-1,1,4380_7778208_2020203,4380_441 -4380_77975,291,4380_22789,Mahon,67606-00013-1,1,4380_7778208_2020204,4380_443 -4380_77947,293,4380_2279,Drop Off,51189-00017-1,1,4380_7778208_1011107,4380_28 -4380_77975,289,4380_22790,Mahon,67367-00014-1,1,4380_7778208_2020203,4380_441 -4380_77975,292,4380_22791,Mahon,67370-00016-1,1,4380_7778208_2020203,4380_441 -4380_77975,293,4380_22792,Mahon,67362-00017-1,1,4380_7778208_2020203,4380_441 -4380_77975,290,4380_22793,Mahon,67364-00015-1,1,4380_7778208_2020203,4380_441 -4380_77975,294,4380_22794,Mahon,67366-00018-1,1,4380_7778208_2020203,4380_441 -4380_77975,295,4380_22795,Mahon,67368-00019-1,1,4380_7778208_2020203,4380_441 -4380_77975,296,4380_22796,Mahon,67607-00021-1,1,4380_7778208_2020204,4380_443 -4380_77947,294,4380_2280,Drop Off,51195-00018-1,1,4380_7778208_1011107,4380_28 -4380_77975,285,4380_22804,Mahon,66901-00009-1,1,4380_7778208_2020201,4380_441 -4380_77975,286,4380_22805,Mahon,66895-00010-1,1,4380_7778208_2020201,4380_441 -4380_77975,297,4380_22806,Mahon,67373-00008-1,1,4380_7778208_2020203,4380_439 -4380_77975,288,4380_22807,Mahon,66897-00011-1,1,4380_7778208_2020201,4380_441 -4380_77975,287,4380_22808,Mahon,66905-00012-1,1,4380_7778208_2020201,4380_441 -4380_77975,291,4380_22809,Mahon,66903-00013-1,1,4380_7778208_2020201,4380_443 -4380_77947,295,4380_2281,Drop Off,51187-00019-1,1,4380_7778208_1011107,4380_28 -4380_77975,289,4380_22810,Mahon,66899-00014-1,1,4380_7778208_2020201,4380_441 -4380_77975,292,4380_22811,Mahon,66896-00016-1,1,4380_7778208_2020201,4380_441 -4380_77975,293,4380_22812,Mahon,66898-00017-1,1,4380_7778208_2020201,4380_441 -4380_77975,290,4380_22813,Mahon,66902-00015-1,1,4380_7778208_2020201,4380_441 -4380_77975,294,4380_22814,Mahon,66906-00018-1,1,4380_7778208_2020201,4380_441 -4380_77975,295,4380_22815,Mahon,66900-00019-1,1,4380_7778208_2020201,4380_441 -4380_77975,296,4380_22816,Mahon,66904-00021-1,1,4380_7778208_2020201,4380_443 -4380_77975,285,4380_22824,Mahon,67143-00009-1,1,4380_7778208_2020202,4380_441 -4380_77975,286,4380_22825,Mahon,67149-00010-1,1,4380_7778208_2020202,4380_441 -4380_77975,297,4380_22826,Mahon,67727-00008-1,1,4380_7778208_2020205,4380_439 -4380_77975,288,4380_22827,Mahon,67151-00011-1,1,4380_7778208_2020202,4380_441 -4380_77975,287,4380_22828,Mahon,67153-00012-1,1,4380_7778208_2020202,4380_441 -4380_77975,291,4380_22829,Mahon,67147-00013-1,1,4380_7778208_2020202,4380_443 -4380_77975,289,4380_22830,Mahon,67145-00014-1,1,4380_7778208_2020202,4380_441 -4380_77975,292,4380_22831,Mahon,67150-00016-1,1,4380_7778208_2020202,4380_441 -4380_77975,293,4380_22832,Mahon,67152-00017-1,1,4380_7778208_2020202,4380_441 -4380_77975,290,4380_22833,Mahon,67144-00015-1,1,4380_7778208_2020202,4380_441 -4380_77975,294,4380_22834,Mahon,67154-00018-1,1,4380_7778208_2020202,4380_441 -4380_77975,295,4380_22835,Mahon,67146-00019-1,1,4380_7778208_2020202,4380_441 -4380_77975,296,4380_22836,Mahon,67148-00021-1,1,4380_7778208_2020202,4380_443 -4380_77975,285,4380_22844,Mahon,67622-00009-1,1,4380_7778208_2020204,4380_441 -4380_77975,286,4380_22845,Mahon,67626-00010-1,1,4380_7778208_2020204,4380_441 -4380_77975,297,4380_22846,Mahon,66920-00008-1,1,4380_7778208_2020201,4380_439 -4380_77975,288,4380_22847,Mahon,67632-00011-1,1,4380_7778208_2020204,4380_441 -4380_77975,287,4380_22848,Mahon,67624-00012-1,1,4380_7778208_2020204,4380_441 -4380_77975,291,4380_22849,Mahon,67630-00013-1,1,4380_7778208_2020204,4380_443 -4380_77975,289,4380_22850,Mahon,67628-00014-1,1,4380_7778208_2020204,4380_441 -4380_77975,292,4380_22851,Mahon,67627-00016-1,1,4380_7778208_2020204,4380_441 -4380_77975,293,4380_22852,Mahon,67633-00017-1,1,4380_7778208_2020204,4380_441 -4380_77975,290,4380_22853,Mahon,67623-00015-1,1,4380_7778208_2020204,4380_441 -4380_77975,294,4380_22854,Mahon,67625-00018-1,1,4380_7778208_2020204,4380_441 -4380_77975,295,4380_22855,Mahon,67629-00019-1,1,4380_7778208_2020204,4380_441 -4380_77975,296,4380_22856,Mahon,67631-00021-1,1,4380_7778208_2020204,4380_443 -4380_77975,285,4380_22864,Mahon,67393-00009-1,1,4380_7778208_2020203,4380_441 -4380_77975,286,4380_22865,Mahon,67389-00010-1,1,4380_7778208_2020203,4380_441 -4380_77975,297,4380_22866,Mahon,67395-00008-1,1,4380_7778208_2020203,4380_439 -4380_77975,288,4380_22867,Mahon,67391-00011-1,1,4380_7778208_2020203,4380_441 -4380_77975,287,4380_22868,Mahon,67396-00012-1,1,4380_7778208_2020203,4380_441 -4380_77975,291,4380_22869,Mahon,66921-00013-1,1,4380_7778208_2020201,4380_443 -4380_77975,289,4380_22870,Mahon,67387-00014-1,1,4380_7778208_2020203,4380_441 -4380_77975,292,4380_22871,Mahon,67390-00016-1,1,4380_7778208_2020203,4380_441 -4380_77975,293,4380_22872,Mahon,67392-00017-1,1,4380_7778208_2020203,4380_441 -4380_77975,290,4380_22873,Mahon,67394-00015-1,1,4380_7778208_2020203,4380_441 -4380_77975,294,4380_22874,Mahon,67397-00018-1,1,4380_7778208_2020203,4380_441 -4380_77975,295,4380_22875,Mahon,67388-00019-1,1,4380_7778208_2020203,4380_441 -4380_77975,296,4380_22876,Mahon,66922-00021-1,1,4380_7778208_2020201,4380_443 -4380_77975,285,4380_22884,Mahon,66930-00009-1,1,4380_7778208_2020201,4380_441 -4380_77975,286,4380_22885,Mahon,66928-00010-1,1,4380_7778208_2020201,4380_441 -4380_77975,297,4380_22886,Mahon,67733-00008-1,1,4380_7778208_2020205,4380_439 -4380_77975,288,4380_22887,Mahon,66932-00011-1,1,4380_7778208_2020201,4380_441 -4380_77975,287,4380_22888,Mahon,66924-00012-1,1,4380_7778208_2020201,4380_441 -4380_77975,291,4380_22889,Mahon,67169-00013-1,1,4380_7778208_2020202,4380_443 -4380_77947,285,4380_2289,Drop Off,50579-00009-1,1,4380_7778208_1011101,4380_28 -4380_77975,289,4380_22890,Mahon,66926-00014-1,1,4380_7778208_2020201,4380_441 -4380_77975,292,4380_22891,Mahon,66929-00016-1,1,4380_7778208_2020201,4380_441 -4380_77975,293,4380_22892,Mahon,66933-00017-1,1,4380_7778208_2020201,4380_441 -4380_77975,290,4380_22893,Mahon,66931-00015-1,1,4380_7778208_2020201,4380_441 -4380_77975,294,4380_22894,Mahon,66925-00018-1,1,4380_7778208_2020201,4380_441 -4380_77975,295,4380_22895,Mahon,66927-00019-1,1,4380_7778208_2020201,4380_441 -4380_77975,296,4380_22896,Mahon,67170-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,286,4380_2290,Drop Off,50581-00010-1,1,4380_7778208_1011101,4380_28 -4380_77975,285,4380_22904,Mahon,67173-00009-1,1,4380_7778208_2020202,4380_441 -4380_77975,286,4380_22905,Mahon,67180-00010-1,1,4380_7778208_2020202,4380_441 -4380_77975,297,4380_22906,Mahon,66936-00008-1,1,4380_7778208_2020201,4380_439 -4380_77975,288,4380_22907,Mahon,67177-00011-1,1,4380_7778208_2020202,4380_441 -4380_77975,287,4380_22908,Mahon,67175-00012-1,1,4380_7778208_2020202,4380_441 -4380_77975,291,4380_22909,Mahon,67648-00013-1,1,4380_7778208_2020204,4380_443 -4380_77947,297,4380_2291,Drop Off,51008-00008-1,1,4380_7778208_1011105,4380_30 -4380_77975,289,4380_22910,Mahon,67171-00014-1,1,4380_7778208_2020202,4380_441 -4380_77975,292,4380_22911,Mahon,67181-00016-1,1,4380_7778208_2020202,4380_441 -4380_77975,293,4380_22912,Mahon,67178-00017-1,1,4380_7778208_2020202,4380_441 -4380_77975,290,4380_22913,Mahon,67174-00015-1,1,4380_7778208_2020202,4380_441 -4380_77975,294,4380_22914,Mahon,67176-00018-1,1,4380_7778208_2020202,4380_441 -4380_77975,295,4380_22915,Mahon,67172-00019-1,1,4380_7778208_2020202,4380_441 -4380_77975,296,4380_22916,Mahon,67649-00021-1,1,4380_7778208_2020204,4380_443 -4380_77947,287,4380_2292,Drop Off,50577-00012-1,1,4380_7778208_1011101,4380_28 -4380_77975,285,4380_22924,Mahon,67651-00009-1,1,4380_7778208_2020204,4380_441 -4380_77975,286,4380_22925,Mahon,67659-00010-1,1,4380_7778208_2020204,4380_441 -4380_77975,297,4380_22926,Mahon,67415-00008-1,1,4380_7778208_2020203,4380_439 -4380_77975,288,4380_22927,Mahon,67653-00011-1,1,4380_7778208_2020204,4380_441 -4380_77975,287,4380_22928,Mahon,67655-00012-1,1,4380_7778208_2020204,4380_441 -4380_77975,291,4380_22929,Mahon,66939-00013-1,1,4380_7778208_2020201,4380_443 -4380_77947,288,4380_2293,Drop Off,50583-00011-1,1,4380_7778208_1011101,4380_28 -4380_77975,289,4380_22930,Mahon,67657-00014-1,1,4380_7778208_2020204,4380_441 -4380_77975,292,4380_22931,Mahon,67660-00016-1,1,4380_7778208_2020204,4380_441 -4380_77975,293,4380_22932,Mahon,67654-00017-1,1,4380_7778208_2020204,4380_441 -4380_77975,290,4380_22933,Mahon,67652-00015-1,1,4380_7778208_2020204,4380_441 -4380_77975,294,4380_22934,Mahon,67656-00018-1,1,4380_7778208_2020204,4380_441 -4380_77975,295,4380_22935,Mahon,67658-00019-1,1,4380_7778208_2020204,4380_441 -4380_77975,296,4380_22936,Mahon,66940-00021-1,1,4380_7778208_2020201,4380_443 -4380_77947,289,4380_2294,Drop Off,50573-00014-1,1,4380_7778208_1011101,4380_28 -4380_77975,285,4380_22944,Mahon,67422-00009-1,1,4380_7778208_2020203,4380_441 -4380_77975,286,4380_22945,Mahon,67416-00010-1,1,4380_7778208_2020203,4380_441 -4380_77975,297,4380_22946,Mahon,67741-00008-1,1,4380_7778208_2020205,4380_439 -4380_77975,288,4380_22947,Mahon,67418-00011-1,1,4380_7778208_2020203,4380_441 -4380_77975,287,4380_22948,Mahon,67420-00012-1,1,4380_7778208_2020203,4380_441 -4380_77975,291,4380_22949,Mahon,67187-00013-1,1,4380_7778208_2020202,4380_443 -4380_77947,290,4380_2295,Drop Off,50580-00015-1,1,4380_7778208_1011101,4380_28 -4380_77975,289,4380_22950,Mahon,67424-00014-1,1,4380_7778208_2020203,4380_441 -4380_77975,292,4380_22951,Mahon,67417-00016-1,1,4380_7778208_2020203,4380_441 -4380_77975,293,4380_22952,Mahon,67419-00017-1,1,4380_7778208_2020203,4380_441 -4380_77975,290,4380_22953,Mahon,67423-00015-1,1,4380_7778208_2020203,4380_441 -4380_77975,294,4380_22954,Mahon,67421-00018-1,1,4380_7778208_2020203,4380_441 -4380_77975,295,4380_22955,Mahon,67425-00019-1,1,4380_7778208_2020203,4380_441 -4380_77975,296,4380_22956,Mahon,67188-00021-1,1,4380_7778208_2020202,4380_443 -4380_77947,291,4380_2296,Drop Off,50575-00013-1,1,4380_7778208_1011101,4380_32 -4380_77975,285,4380_22964,Mahon,66950-00009-1,1,4380_7778208_2020201,4380_441 -4380_77975,286,4380_22965,Mahon,66954-00010-1,1,4380_7778208_2020201,4380_441 -4380_77975,297,4380_22966,Mahon,66958-00008-1,1,4380_7778208_2020201,4380_439 -4380_77975,288,4380_22967,Mahon,66952-00011-1,1,4380_7778208_2020201,4380_441 -4380_77975,287,4380_22968,Mahon,66961-00012-1,1,4380_7778208_2020201,4380_441 -4380_77975,291,4380_22969,Mahon,67668-00013-1,1,4380_7778208_2020204,4380_443 -4380_77947,292,4380_2297,Drop Off,50582-00016-1,1,4380_7778208_1011101,4380_28 -4380_77975,289,4380_22970,Mahon,66959-00014-1,1,4380_7778208_2020201,4380_441 -4380_77975,292,4380_22971,Mahon,66955-00016-1,1,4380_7778208_2020201,4380_441 -4380_77975,293,4380_22972,Mahon,66953-00017-1,1,4380_7778208_2020201,4380_441 -4380_77975,290,4380_22973,Mahon,66951-00015-1,1,4380_7778208_2020201,4380_441 -4380_77975,294,4380_22974,Mahon,66962-00018-1,1,4380_7778208_2020201,4380_441 -4380_77975,295,4380_22975,Mahon,66960-00019-1,1,4380_7778208_2020201,4380_441 -4380_77975,296,4380_22976,Mahon,67669-00021-1,1,4380_7778208_2020204,4380_443 -4380_77975,297,4380_22978,Merchants Quay,67429-00008-1,1,4380_7778208_2020203,4380_440 -4380_77947,293,4380_2298,Drop Off,50584-00017-1,1,4380_7778208_1011101,4380_28 -4380_78136,291,4380_22981,Knocknaheeny,66715-00013-1,0,4380_7778208_2020201,4380_444 -4380_78136,291,4380_22982,Knocknaheeny,67676-00013-1,0,4380_7778208_2020205,4380_445 -4380_78136,296,4380_22983,Knocknaheeny,66716-00021-1,0,4380_7778208_2020201,4380_444 -4380_78136,296,4380_22984,Knocknaheeny,67677-00021-1,0,4380_7778208_2020205,4380_445 -4380_77947,294,4380_2299,Drop Off,50578-00018-1,1,4380_7778208_1011101,4380_28 -4380_78136,285,4380_22991,Knocknaheeny,68184-00009-1,0,4380_7778208_2020213,4380_445 -4380_78136,286,4380_22992,Knocknaheeny,68180-00010-1,0,4380_7778208_2020213,4380_445 -4380_78136,297,4380_22993,Knocknaheeny,66721-00008-1,0,4380_7778208_2020201,4380_444 -4380_78136,288,4380_22994,Knocknaheeny,68176-00011-1,0,4380_7778208_2020213,4380_445 -4380_78136,287,4380_22995,Knocknaheeny,68182-00012-1,0,4380_7778208_2020213,4380_445 -4380_78136,289,4380_22996,Knocknaheeny,68178-00014-1,0,4380_7778208_2020213,4380_445 -4380_78136,292,4380_22997,Knocknaheeny,68181-00016-1,0,4380_7778208_2020213,4380_445 -4380_78136,293,4380_22998,Knocknaheeny,68177-00017-1,0,4380_7778208_2020213,4380_445 -4380_78136,290,4380_22999,Knocknaheeny,68185-00015-1,0,4380_7778208_2020213,4380_445 -4380_77947,295,4380_2300,Drop Off,50574-00019-1,1,4380_7778208_1011101,4380_28 -4380_78136,294,4380_23000,Knocknaheeny,68183-00018-1,0,4380_7778208_2020213,4380_445 -4380_78136,295,4380_23001,Knocknaheeny,68179-00019-1,0,4380_7778208_2020213,4380_445 -4380_78136,285,4380_23008,Knocknaheeny,68372-00009-1,0,4380_7778208_2020214,4380_444 -4380_78136,286,4380_23009,Knocknaheeny,68368-00010-1,0,4380_7778208_2020214,4380_444 -4380_77947,296,4380_2301,Drop Off,50576-00021-1,1,4380_7778208_1011101,4380_32 -4380_78136,288,4380_23010,Knocknaheeny,68374-00011-1,0,4380_7778208_2020214,4380_444 -4380_78136,287,4380_23011,Knocknaheeny,68370-00012-1,0,4380_7778208_2020214,4380_444 -4380_78136,291,4380_23012,Knocknaheeny,66973-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23013,Knocknaheeny,68366-00014-1,0,4380_7778208_2020214,4380_444 -4380_78136,292,4380_23014,Knocknaheeny,68369-00016-1,0,4380_7778208_2020214,4380_444 -4380_78136,293,4380_23015,Knocknaheeny,68375-00017-1,0,4380_7778208_2020214,4380_444 -4380_78136,290,4380_23016,Knocknaheeny,68373-00015-1,0,4380_7778208_2020214,4380_444 -4380_78136,294,4380_23017,Knocknaheeny,68371-00018-1,0,4380_7778208_2020214,4380_444 -4380_78136,295,4380_23018,Knocknaheeny,68367-00019-1,0,4380_7778208_2020214,4380_444 -4380_78136,296,4380_23019,Knocknaheeny,66974-00021-1,0,4380_7778208_2020202,4380_446 -4380_78136,297,4380_23021,Knocknaheeny,66975-00008-1,0,4380_7778208_2020202,4380_444 -4380_78136,285,4380_23028,Knocknaheeny,67840-00009-1,0,4380_7778208_2020211,4380_444 -4380_78136,286,4380_23029,Knocknaheeny,67844-00010-1,0,4380_7778208_2020211,4380_444 -4380_78136,288,4380_23030,Knocknaheeny,67838-00011-1,0,4380_7778208_2020211,4380_444 -4380_78136,287,4380_23031,Knocknaheeny,67842-00012-1,0,4380_7778208_2020211,4380_444 -4380_78136,291,4380_23032,Knocknaheeny,67452-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23033,Knocknaheeny,67836-00014-1,0,4380_7778208_2020211,4380_444 -4380_78136,292,4380_23034,Knocknaheeny,67845-00016-1,0,4380_7778208_2020211,4380_444 -4380_78136,293,4380_23035,Knocknaheeny,67839-00017-1,0,4380_7778208_2020211,4380_444 -4380_78136,290,4380_23036,Knocknaheeny,67841-00015-1,0,4380_7778208_2020211,4380_444 -4380_78136,294,4380_23037,Knocknaheeny,67843-00018-1,0,4380_7778208_2020211,4380_444 -4380_78136,295,4380_23038,Knocknaheeny,67837-00019-1,0,4380_7778208_2020211,4380_444 -4380_78136,296,4380_23039,Knocknaheeny,67453-00021-1,0,4380_7778208_2020204,4380_446 -4380_78136,297,4380_23041,Knocknaheeny,67454-00008-1,0,4380_7778208_2020204,4380_444 -4380_78136,285,4380_23048,Knocknaheeny,68200-00009-1,0,4380_7778208_2020213,4380_444 -4380_78136,286,4380_23049,Knocknaheeny,68198-00010-1,0,4380_7778208_2020213,4380_444 -4380_78136,288,4380_23050,Knocknaheeny,68196-00011-1,0,4380_7778208_2020213,4380_444 -4380_78136,287,4380_23051,Knocknaheeny,68204-00012-1,0,4380_7778208_2020213,4380_444 -4380_78136,291,4380_23052,Knocknaheeny,66741-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23053,Knocknaheeny,68202-00014-1,0,4380_7778208_2020213,4380_444 -4380_78136,292,4380_23054,Knocknaheeny,68199-00016-1,0,4380_7778208_2020213,4380_444 -4380_78136,293,4380_23055,Knocknaheeny,68197-00017-1,0,4380_7778208_2020213,4380_444 -4380_78136,290,4380_23056,Knocknaheeny,68201-00015-1,0,4380_7778208_2020213,4380_444 -4380_78136,294,4380_23057,Knocknaheeny,68205-00018-1,0,4380_7778208_2020213,4380_444 -4380_78136,295,4380_23058,Knocknaheeny,68203-00019-1,0,4380_7778208_2020213,4380_444 -4380_78136,296,4380_23059,Knocknaheeny,66742-00021-1,0,4380_7778208_2020201,4380_446 -4380_78136,297,4380_23061,Knocknaheeny,66747-00008-1,0,4380_7778208_2020201,4380_444 -4380_78136,285,4380_23068,Knocknaheeny,68024-00009-1,0,4380_7778208_2020212,4380_444 -4380_78136,286,4380_23069,Knocknaheeny,68022-00010-1,0,4380_7778208_2020212,4380_444 -4380_77947,285,4380_2307,Drop Off,51447-00009-1,1,4380_7778208_1011110,4380_28 -4380_78136,288,4380_23070,Knocknaheeny,68020-00011-1,0,4380_7778208_2020212,4380_444 -4380_78136,287,4380_23071,Knocknaheeny,68016-00012-1,0,4380_7778208_2020212,4380_444 -4380_78136,291,4380_23072,Knocknaheeny,66989-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23073,Knocknaheeny,68018-00014-1,0,4380_7778208_2020212,4380_444 -4380_78136,292,4380_23074,Knocknaheeny,68023-00016-1,0,4380_7778208_2020212,4380_444 -4380_78136,293,4380_23075,Knocknaheeny,68021-00017-1,0,4380_7778208_2020212,4380_444 -4380_78136,290,4380_23076,Knocknaheeny,68025-00015-1,0,4380_7778208_2020212,4380_444 -4380_78136,294,4380_23077,Knocknaheeny,68017-00018-1,0,4380_7778208_2020212,4380_444 -4380_78136,295,4380_23078,Knocknaheeny,68019-00019-1,0,4380_7778208_2020212,4380_444 -4380_78136,296,4380_23079,Knocknaheeny,66990-00021-1,0,4380_7778208_2020202,4380_446 -4380_77947,286,4380_2308,Drop Off,51441-00010-1,1,4380_7778208_1011110,4380_28 -4380_78136,297,4380_23081,Knocknaheeny,66993-00008-1,0,4380_7778208_2020202,4380_444 -4380_78136,285,4380_23088,Knocknaheeny,68386-00009-1,0,4380_7778208_2020214,4380_444 -4380_78136,286,4380_23089,Knocknaheeny,68392-00010-1,0,4380_7778208_2020214,4380_444 -4380_77947,288,4380_2309,Drop Off,51445-00011-1,1,4380_7778208_1011110,4380_28 -4380_78136,288,4380_23090,Knocknaheeny,68388-00011-1,0,4380_7778208_2020214,4380_444 -4380_78136,287,4380_23091,Knocknaheeny,68390-00012-1,0,4380_7778208_2020214,4380_444 -4380_78136,291,4380_23092,Knocknaheeny,67468-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23093,Knocknaheeny,68394-00014-1,0,4380_7778208_2020214,4380_444 -4380_78136,292,4380_23094,Knocknaheeny,68393-00016-1,0,4380_7778208_2020214,4380_444 -4380_78136,293,4380_23095,Knocknaheeny,68389-00017-1,0,4380_7778208_2020214,4380_444 -4380_78136,290,4380_23096,Knocknaheeny,68387-00015-1,0,4380_7778208_2020214,4380_444 -4380_78136,294,4380_23097,Knocknaheeny,68391-00018-1,0,4380_7778208_2020214,4380_444 -4380_78136,295,4380_23098,Knocknaheeny,68395-00019-1,0,4380_7778208_2020214,4380_444 -4380_78136,296,4380_23099,Knocknaheeny,67469-00021-1,0,4380_7778208_2020204,4380_446 -4380_77947,287,4380_2310,Drop Off,51449-00012-1,1,4380_7778208_1011110,4380_28 -4380_78136,297,4380_23101,Knocknaheeny,67474-00008-1,0,4380_7778208_2020204,4380_444 -4380_78136,285,4380_23108,Knocknaheeny,67864-00009-1,0,4380_7778208_2020211,4380_444 -4380_78136,286,4380_23109,Knocknaheeny,67862-00010-1,0,4380_7778208_2020211,4380_444 -4380_77947,289,4380_2311,Drop Off,51443-00014-1,1,4380_7778208_1011110,4380_28 -4380_78136,288,4380_23110,Knocknaheeny,67856-00011-1,0,4380_7778208_2020211,4380_444 -4380_78136,287,4380_23111,Knocknaheeny,67860-00012-1,0,4380_7778208_2020211,4380_444 -4380_78136,291,4380_23112,Knocknaheeny,66767-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23113,Knocknaheeny,67858-00014-1,0,4380_7778208_2020211,4380_444 -4380_78136,292,4380_23114,Knocknaheeny,67863-00016-1,0,4380_7778208_2020211,4380_444 -4380_78136,293,4380_23115,Knocknaheeny,67857-00017-1,0,4380_7778208_2020211,4380_444 -4380_78136,290,4380_23116,Knocknaheeny,67865-00015-1,0,4380_7778208_2020211,4380_444 -4380_78136,294,4380_23117,Knocknaheeny,67861-00018-1,0,4380_7778208_2020211,4380_444 -4380_78136,295,4380_23118,Knocknaheeny,67859-00019-1,0,4380_7778208_2020211,4380_444 -4380_78136,296,4380_23119,Knocknaheeny,66768-00021-1,0,4380_7778208_2020201,4380_446 -4380_77947,290,4380_2312,Drop Off,51448-00015-1,1,4380_7778208_1011110,4380_28 -4380_78136,297,4380_23121,Knocknaheeny,66769-00008-1,0,4380_7778208_2020201,4380_444 -4380_78136,285,4380_23128,Knocknaheeny,68224-00009-1,0,4380_7778208_2020213,4380_444 -4380_78136,286,4380_23129,Knocknaheeny,68222-00010-1,0,4380_7778208_2020213,4380_444 -4380_77947,292,4380_2313,Drop Off,51442-00016-1,1,4380_7778208_1011110,4380_28 -4380_78136,288,4380_23130,Knocknaheeny,68216-00011-1,0,4380_7778208_2020213,4380_444 -4380_78136,287,4380_23131,Knocknaheeny,68218-00012-1,0,4380_7778208_2020213,4380_444 -4380_78136,291,4380_23132,Knocknaheeny,67015-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23133,Knocknaheeny,68220-00014-1,0,4380_7778208_2020213,4380_444 -4380_78136,292,4380_23134,Knocknaheeny,68223-00016-1,0,4380_7778208_2020213,4380_444 -4380_78136,293,4380_23135,Knocknaheeny,68217-00017-1,0,4380_7778208_2020213,4380_444 -4380_78136,290,4380_23136,Knocknaheeny,68225-00015-1,0,4380_7778208_2020213,4380_444 -4380_78136,294,4380_23137,Knocknaheeny,68219-00018-1,0,4380_7778208_2020213,4380_444 -4380_78136,295,4380_23138,Knocknaheeny,68221-00019-1,0,4380_7778208_2020213,4380_444 -4380_78136,296,4380_23139,Knocknaheeny,67016-00021-1,0,4380_7778208_2020202,4380_446 -4380_77947,293,4380_2314,Drop Off,51446-00017-1,1,4380_7778208_1011110,4380_28 -4380_78136,297,4380_23141,Knocknaheeny,67017-00008-1,0,4380_7778208_2020202,4380_444 -4380_78136,285,4380_23148,Knocknaheeny,68038-00009-1,0,4380_7778208_2020212,4380_444 -4380_78136,286,4380_23149,Knocknaheeny,68040-00010-1,0,4380_7778208_2020212,4380_444 -4380_77947,294,4380_2315,Drop Off,51450-00018-1,1,4380_7778208_1011110,4380_28 -4380_78136,288,4380_23150,Knocknaheeny,68036-00011-1,0,4380_7778208_2020212,4380_444 -4380_78136,287,4380_23151,Knocknaheeny,68044-00012-1,0,4380_7778208_2020212,4380_444 -4380_78136,291,4380_23152,Knocknaheeny,67494-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23153,Knocknaheeny,68042-00014-1,0,4380_7778208_2020212,4380_444 -4380_78136,292,4380_23154,Knocknaheeny,68041-00016-1,0,4380_7778208_2020212,4380_444 -4380_78136,293,4380_23155,Knocknaheeny,68037-00017-1,0,4380_7778208_2020212,4380_444 -4380_78136,290,4380_23156,Knocknaheeny,68039-00015-1,0,4380_7778208_2020212,4380_444 -4380_78136,294,4380_23157,Knocknaheeny,68045-00018-1,0,4380_7778208_2020212,4380_444 -4380_78136,295,4380_23158,Knocknaheeny,68043-00019-1,0,4380_7778208_2020212,4380_444 -4380_78136,296,4380_23159,Knocknaheeny,67495-00021-1,0,4380_7778208_2020204,4380_446 -4380_77947,295,4380_2316,Drop Off,51444-00019-1,1,4380_7778208_1011110,4380_28 -4380_78136,297,4380_23161,Knocknaheeny,67496-00008-1,0,4380_7778208_2020204,4380_444 -4380_78136,285,4380_23168,Knocknaheeny,68408-00009-1,0,4380_7778208_2020214,4380_444 -4380_78136,286,4380_23169,Knocknaheeny,68412-00010-1,0,4380_7778208_2020214,4380_444 -4380_78136,288,4380_23170,Knocknaheeny,68414-00011-1,0,4380_7778208_2020214,4380_444 -4380_78136,287,4380_23171,Knocknaheeny,68406-00012-1,0,4380_7778208_2020214,4380_444 -4380_78136,291,4380_23172,Knocknaheeny,66783-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23173,Knocknaheeny,68410-00014-1,0,4380_7778208_2020214,4380_444 -4380_78136,292,4380_23174,Knocknaheeny,68413-00016-1,0,4380_7778208_2020214,4380_444 -4380_78136,293,4380_23175,Knocknaheeny,68415-00017-1,0,4380_7778208_2020214,4380_444 -4380_78136,290,4380_23176,Knocknaheeny,68409-00015-1,0,4380_7778208_2020214,4380_444 -4380_78136,294,4380_23177,Knocknaheeny,68407-00018-1,0,4380_7778208_2020214,4380_444 -4380_78136,295,4380_23178,Knocknaheeny,68411-00019-1,0,4380_7778208_2020214,4380_444 -4380_78136,296,4380_23179,Knocknaheeny,66784-00021-1,0,4380_7778208_2020201,4380_446 -4380_77947,291,4380_2318,Drop Off,51196-00013-1,1,4380_7778208_1011107,4380_28 -4380_78136,297,4380_23181,Knocknaheeny,66793-00008-1,0,4380_7778208_2020201,4380_444 -4380_78136,285,4380_23188,Knocknaheeny,67880-00009-1,0,4380_7778208_2020211,4380_444 -4380_78136,286,4380_23189,Knocknaheeny,67878-00010-1,0,4380_7778208_2020211,4380_444 -4380_77947,296,4380_2319,Drop Off,51197-00021-1,1,4380_7778208_1011107,4380_28 -4380_78136,288,4380_23190,Knocknaheeny,67884-00011-1,0,4380_7778208_2020211,4380_444 -4380_78136,287,4380_23191,Knocknaheeny,67876-00012-1,0,4380_7778208_2020211,4380_444 -4380_78136,291,4380_23192,Knocknaheeny,67031-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23193,Knocknaheeny,67882-00014-1,0,4380_7778208_2020211,4380_444 -4380_78136,292,4380_23194,Knocknaheeny,67879-00016-1,0,4380_7778208_2020211,4380_444 -4380_78136,293,4380_23195,Knocknaheeny,67885-00017-1,0,4380_7778208_2020211,4380_444 -4380_78136,290,4380_23196,Knocknaheeny,67881-00015-1,0,4380_7778208_2020211,4380_444 -4380_78136,294,4380_23197,Knocknaheeny,67877-00018-1,0,4380_7778208_2020211,4380_444 -4380_78136,295,4380_23198,Knocknaheeny,67883-00019-1,0,4380_7778208_2020211,4380_444 -4380_78136,296,4380_23199,Knocknaheeny,67032-00021-1,0,4380_7778208_2020202,4380_446 -4380_77946,285,4380_232,Dundalk,50361-00009-1,0,4380_7778208_1000913,4380_1 -4380_78136,297,4380_23201,Knocknaheeny,67037-00008-1,0,4380_7778208_2020202,4380_444 -4380_78136,285,4380_23208,Knocknaheeny,68236-00009-1,0,4380_7778208_2020213,4380_444 -4380_78136,286,4380_23209,Knocknaheeny,68240-00010-1,0,4380_7778208_2020213,4380_444 -4380_78136,288,4380_23210,Knocknaheeny,68244-00011-1,0,4380_7778208_2020213,4380_444 -4380_78136,287,4380_23211,Knocknaheeny,68238-00012-1,0,4380_7778208_2020213,4380_444 -4380_78136,291,4380_23212,Knocknaheeny,67510-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23213,Knocknaheeny,68242-00014-1,0,4380_7778208_2020213,4380_444 -4380_78136,292,4380_23214,Knocknaheeny,68241-00016-1,0,4380_7778208_2020213,4380_444 -4380_78136,293,4380_23215,Knocknaheeny,68245-00017-1,0,4380_7778208_2020213,4380_444 -4380_78136,290,4380_23216,Knocknaheeny,68237-00015-1,0,4380_7778208_2020213,4380_444 -4380_78136,294,4380_23217,Knocknaheeny,68239-00018-1,0,4380_7778208_2020213,4380_444 -4380_78136,295,4380_23218,Knocknaheeny,68243-00019-1,0,4380_7778208_2020213,4380_444 -4380_78136,296,4380_23219,Knocknaheeny,67511-00021-1,0,4380_7778208_2020204,4380_446 -4380_78136,297,4380_23221,Knocknaheeny,67512-00008-1,0,4380_7778208_2020204,4380_444 -4380_78136,285,4380_23228,Knocknaheeny,68058-00009-1,0,4380_7778208_2020212,4380_444 -4380_78136,286,4380_23229,Knocknaheeny,68062-00010-1,0,4380_7778208_2020212,4380_444 -4380_78136,288,4380_23230,Knocknaheeny,68064-00011-1,0,4380_7778208_2020212,4380_444 -4380_78136,287,4380_23231,Knocknaheeny,68056-00012-1,0,4380_7778208_2020212,4380_444 -4380_78136,291,4380_23232,Knocknaheeny,66809-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23233,Knocknaheeny,68060-00014-1,0,4380_7778208_2020212,4380_444 -4380_78136,292,4380_23234,Knocknaheeny,68063-00016-1,0,4380_7778208_2020212,4380_444 -4380_78136,293,4380_23235,Knocknaheeny,68065-00017-1,0,4380_7778208_2020212,4380_444 -4380_78136,290,4380_23236,Knocknaheeny,68059-00015-1,0,4380_7778208_2020212,4380_444 -4380_78136,294,4380_23237,Knocknaheeny,68057-00018-1,0,4380_7778208_2020212,4380_444 -4380_78136,295,4380_23238,Knocknaheeny,68061-00019-1,0,4380_7778208_2020212,4380_444 -4380_78136,296,4380_23239,Knocknaheeny,66810-00021-1,0,4380_7778208_2020201,4380_446 -4380_78136,297,4380_23241,Knocknaheeny,66811-00008-1,0,4380_7778208_2020201,4380_444 -4380_78136,285,4380_23248,Knocknaheeny,68430-00009-1,0,4380_7778208_2020214,4380_444 -4380_78136,286,4380_23249,Knocknaheeny,68432-00010-1,0,4380_7778208_2020214,4380_444 -4380_77947,285,4380_2325,Drop Off,51511-00009-1,1,4380_7778208_1011111,4380_28 -4380_78136,288,4380_23250,Knocknaheeny,68426-00011-1,0,4380_7778208_2020214,4380_444 -4380_78136,287,4380_23251,Knocknaheeny,68434-00012-1,0,4380_7778208_2020214,4380_444 -4380_78136,291,4380_23252,Knocknaheeny,67057-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23253,Knocknaheeny,68428-00014-1,0,4380_7778208_2020214,4380_444 -4380_78136,292,4380_23254,Knocknaheeny,68433-00016-1,0,4380_7778208_2020214,4380_444 -4380_78136,293,4380_23255,Knocknaheeny,68427-00017-1,0,4380_7778208_2020214,4380_444 -4380_78136,290,4380_23256,Knocknaheeny,68431-00015-1,0,4380_7778208_2020214,4380_444 -4380_78136,294,4380_23257,Knocknaheeny,68435-00018-1,0,4380_7778208_2020214,4380_444 -4380_78136,295,4380_23258,Knocknaheeny,68429-00019-1,0,4380_7778208_2020214,4380_444 -4380_78136,296,4380_23259,Knocknaheeny,67058-00021-1,0,4380_7778208_2020202,4380_446 -4380_77947,286,4380_2326,Drop Off,51507-00010-1,1,4380_7778208_1011111,4380_28 -4380_78136,297,4380_23261,Knocknaheeny,67290-00008-1,0,4380_7778208_2020203,4380_444 -4380_78136,285,4380_23268,Knocknaheeny,67902-00009-1,0,4380_7778208_2020211,4380_444 -4380_78136,286,4380_23269,Knocknaheeny,67904-00010-1,0,4380_7778208_2020211,4380_444 -4380_77947,288,4380_2327,Drop Off,51513-00011-1,1,4380_7778208_1011111,4380_28 -4380_78136,288,4380_23270,Knocknaheeny,67896-00011-1,0,4380_7778208_2020211,4380_444 -4380_78136,287,4380_23271,Knocknaheeny,67900-00012-1,0,4380_7778208_2020211,4380_444 -4380_78136,291,4380_23272,Knocknaheeny,67536-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23273,Knocknaheeny,67898-00014-1,0,4380_7778208_2020211,4380_444 -4380_78136,292,4380_23274,Knocknaheeny,67905-00016-1,0,4380_7778208_2020211,4380_444 -4380_78136,293,4380_23275,Knocknaheeny,67897-00017-1,0,4380_7778208_2020211,4380_444 -4380_78136,290,4380_23276,Knocknaheeny,67903-00015-1,0,4380_7778208_2020211,4380_444 -4380_78136,294,4380_23277,Knocknaheeny,67901-00018-1,0,4380_7778208_2020211,4380_444 -4380_78136,295,4380_23278,Knocknaheeny,67899-00019-1,0,4380_7778208_2020211,4380_444 -4380_78136,296,4380_23279,Knocknaheeny,67537-00021-1,0,4380_7778208_2020204,4380_446 -4380_77947,287,4380_2328,Drop Off,51515-00012-1,1,4380_7778208_1011111,4380_28 -4380_78136,297,4380_23281,Knocknaheeny,67704-00008-1,0,4380_7778208_2020205,4380_444 -4380_78136,285,4380_23288,Knocknaheeny,68264-00009-1,0,4380_7778208_2020213,4380_444 -4380_78136,286,4380_23289,Knocknaheeny,68260-00010-1,0,4380_7778208_2020213,4380_444 -4380_77947,289,4380_2329,Drop Off,51509-00014-1,1,4380_7778208_1011111,4380_28 -4380_78136,288,4380_23290,Knocknaheeny,68258-00011-1,0,4380_7778208_2020213,4380_444 -4380_78136,287,4380_23291,Knocknaheeny,68256-00012-1,0,4380_7778208_2020213,4380_444 -4380_78136,291,4380_23292,Knocknaheeny,66825-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23293,Knocknaheeny,68262-00014-1,0,4380_7778208_2020213,4380_444 -4380_78136,292,4380_23294,Knocknaheeny,68261-00016-1,0,4380_7778208_2020213,4380_444 -4380_78136,293,4380_23295,Knocknaheeny,68259-00017-1,0,4380_7778208_2020213,4380_444 -4380_78136,290,4380_23296,Knocknaheeny,68265-00015-1,0,4380_7778208_2020213,4380_444 -4380_78136,294,4380_23297,Knocknaheeny,68257-00018-1,0,4380_7778208_2020213,4380_444 -4380_78136,295,4380_23298,Knocknaheeny,68263-00019-1,0,4380_7778208_2020213,4380_444 -4380_78136,296,4380_23299,Knocknaheeny,66826-00021-1,0,4380_7778208_2020201,4380_446 -4380_77946,286,4380_233,Dundalk,50359-00010-1,0,4380_7778208_1000913,4380_1 -4380_77947,290,4380_2330,Drop Off,51512-00015-1,1,4380_7778208_1011111,4380_28 -4380_78136,297,4380_23301,Knocknaheeny,67773-00008-1,0,4380_7778208_2020206,4380_444 -4380_78136,285,4380_23308,Knocknaheeny,68080-00009-1,0,4380_7778208_2020212,4380_444 -4380_78136,286,4380_23309,Knocknaheeny,68078-00010-1,0,4380_7778208_2020212,4380_444 -4380_77947,292,4380_2331,Drop Off,51508-00016-1,1,4380_7778208_1011111,4380_28 -4380_78136,288,4380_23310,Knocknaheeny,68082-00011-1,0,4380_7778208_2020212,4380_444 -4380_78136,287,4380_23311,Knocknaheeny,68084-00012-1,0,4380_7778208_2020212,4380_444 -4380_78136,291,4380_23312,Knocknaheeny,67073-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23313,Knocknaheeny,68076-00014-1,0,4380_7778208_2020212,4380_444 -4380_78136,292,4380_23314,Knocknaheeny,68079-00016-1,0,4380_7778208_2020212,4380_444 -4380_78136,293,4380_23315,Knocknaheeny,68083-00017-1,0,4380_7778208_2020212,4380_444 -4380_78136,290,4380_23316,Knocknaheeny,68081-00015-1,0,4380_7778208_2020212,4380_444 -4380_78136,294,4380_23317,Knocknaheeny,68085-00018-1,0,4380_7778208_2020212,4380_444 -4380_78136,295,4380_23318,Knocknaheeny,68077-00019-1,0,4380_7778208_2020212,4380_444 -4380_78136,296,4380_23319,Knocknaheeny,67074-00021-1,0,4380_7778208_2020202,4380_446 -4380_77947,293,4380_2332,Drop Off,51514-00017-1,1,4380_7778208_1011111,4380_28 -4380_78136,297,4380_23321,Knocknaheeny,67814-00008-1,0,4380_7778208_2020207,4380_444 -4380_78136,285,4380_23328,Knocknaheeny,68450-00009-1,0,4380_7778208_2020214,4380_444 -4380_78136,286,4380_23329,Knocknaheeny,68446-00010-1,0,4380_7778208_2020214,4380_444 -4380_77947,294,4380_2333,Drop Off,51516-00018-1,1,4380_7778208_1011111,4380_28 -4380_78136,288,4380_23330,Knocknaheeny,68452-00011-1,0,4380_7778208_2020214,4380_444 -4380_78136,287,4380_23331,Knocknaheeny,68448-00012-1,0,4380_7778208_2020214,4380_444 -4380_78136,291,4380_23332,Knocknaheeny,67552-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23333,Knocknaheeny,68454-00014-1,0,4380_7778208_2020214,4380_444 -4380_78136,292,4380_23334,Knocknaheeny,68447-00016-1,0,4380_7778208_2020214,4380_444 -4380_78136,293,4380_23335,Knocknaheeny,68453-00017-1,0,4380_7778208_2020214,4380_444 -4380_78136,290,4380_23336,Knocknaheeny,68451-00015-1,0,4380_7778208_2020214,4380_444 -4380_78136,294,4380_23337,Knocknaheeny,68449-00018-1,0,4380_7778208_2020214,4380_444 -4380_78136,295,4380_23338,Knocknaheeny,68455-00019-1,0,4380_7778208_2020214,4380_444 -4380_78136,296,4380_23339,Knocknaheeny,67553-00021-1,0,4380_7778208_2020204,4380_446 -4380_77947,295,4380_2334,Drop Off,51510-00019-1,1,4380_7778208_1011111,4380_28 -4380_78136,297,4380_23341,Knocknaheeny,67085-00008-1,0,4380_7778208_2020202,4380_444 -4380_78136,285,4380_23348,Knocknaheeny,67916-00009-1,0,4380_7778208_2020211,4380_444 -4380_78136,286,4380_23349,Knocknaheeny,67922-00010-1,0,4380_7778208_2020211,4380_444 -4380_78136,288,4380_23350,Knocknaheeny,67920-00011-1,0,4380_7778208_2020211,4380_444 -4380_78136,287,4380_23351,Knocknaheeny,67918-00012-1,0,4380_7778208_2020211,4380_444 -4380_78136,291,4380_23352,Knocknaheeny,66851-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23353,Knocknaheeny,67924-00014-1,0,4380_7778208_2020211,4380_444 -4380_78136,292,4380_23354,Knocknaheeny,67923-00016-1,0,4380_7778208_2020211,4380_444 -4380_78136,293,4380_23355,Knocknaheeny,67921-00017-1,0,4380_7778208_2020211,4380_444 -4380_78136,290,4380_23356,Knocknaheeny,67917-00015-1,0,4380_7778208_2020211,4380_444 -4380_78136,294,4380_23357,Knocknaheeny,67919-00018-1,0,4380_7778208_2020211,4380_444 -4380_78136,295,4380_23358,Knocknaheeny,67925-00019-1,0,4380_7778208_2020211,4380_444 -4380_78136,296,4380_23359,Knocknaheeny,66852-00021-1,0,4380_7778208_2020201,4380_446 -4380_78136,297,4380_23361,Knocknaheeny,67564-00008-1,0,4380_7778208_2020204,4380_444 -4380_78136,285,4380_23368,Knocknaheeny,68278-00009-1,0,4380_7778208_2020213,4380_444 -4380_78136,286,4380_23369,Knocknaheeny,68280-00010-1,0,4380_7778208_2020213,4380_444 -4380_78136,288,4380_23370,Knocknaheeny,68276-00011-1,0,4380_7778208_2020213,4380_444 -4380_78136,287,4380_23371,Knocknaheeny,68282-00012-1,0,4380_7778208_2020213,4380_444 -4380_78136,291,4380_23372,Knocknaheeny,67099-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23373,Knocknaheeny,68284-00014-1,0,4380_7778208_2020213,4380_444 -4380_78136,292,4380_23374,Knocknaheeny,68281-00016-1,0,4380_7778208_2020213,4380_444 -4380_78136,293,4380_23375,Knocknaheeny,68277-00017-1,0,4380_7778208_2020213,4380_444 -4380_78136,290,4380_23376,Knocknaheeny,68279-00015-1,0,4380_7778208_2020213,4380_444 -4380_78136,294,4380_23377,Knocknaheeny,68283-00018-1,0,4380_7778208_2020213,4380_444 -4380_78136,295,4380_23378,Knocknaheeny,68285-00019-1,0,4380_7778208_2020213,4380_444 -4380_78136,296,4380_23379,Knocknaheeny,67100-00021-1,0,4380_7778208_2020202,4380_446 -4380_78136,297,4380_23381,Knocknaheeny,66859-00008-1,0,4380_7778208_2020201,4380_444 -4380_78136,285,4380_23388,Knocknaheeny,68104-00009-1,0,4380_7778208_2020212,4380_444 -4380_78136,286,4380_23389,Knocknaheeny,68100-00010-1,0,4380_7778208_2020212,4380_444 -4380_78136,288,4380_23390,Knocknaheeny,68096-00011-1,0,4380_7778208_2020212,4380_444 -4380_78136,287,4380_23391,Knocknaheeny,68098-00012-1,0,4380_7778208_2020212,4380_444 -4380_78136,291,4380_23392,Knocknaheeny,67578-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23393,Knocknaheeny,68102-00014-1,0,4380_7778208_2020212,4380_444 -4380_78136,292,4380_23394,Knocknaheeny,68101-00016-1,0,4380_7778208_2020212,4380_444 -4380_78136,293,4380_23395,Knocknaheeny,68097-00017-1,0,4380_7778208_2020212,4380_444 -4380_78136,290,4380_23396,Knocknaheeny,68105-00015-1,0,4380_7778208_2020212,4380_444 -4380_78136,294,4380_23397,Knocknaheeny,68099-00018-1,0,4380_7778208_2020212,4380_444 -4380_78136,295,4380_23398,Knocknaheeny,68103-00019-1,0,4380_7778208_2020212,4380_444 -4380_78136,296,4380_23399,Knocknaheeny,67579-00021-1,0,4380_7778208_2020204,4380_446 -4380_77946,297,4380_234,Dundalk,50198-00008-1,0,4380_7778208_1000908,4380_2 -4380_78136,297,4380_23401,Knocknaheeny,67342-00008-1,0,4380_7778208_2020203,4380_444 -4380_78136,285,4380_23408,Knocknaheeny,68474-00009-1,0,4380_7778208_2020214,4380_444 -4380_78136,286,4380_23409,Knocknaheeny,68466-00010-1,0,4380_7778208_2020214,4380_444 -4380_78136,288,4380_23410,Knocknaheeny,68470-00011-1,0,4380_7778208_2020214,4380_444 -4380_78136,287,4380_23411,Knocknaheeny,68468-00012-1,0,4380_7778208_2020214,4380_444 -4380_78136,291,4380_23412,Knocknaheeny,66866-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23413,Knocknaheeny,68472-00014-1,0,4380_7778208_2020214,4380_444 -4380_78136,292,4380_23414,Knocknaheeny,68467-00016-1,0,4380_7778208_2020214,4380_444 -4380_78136,293,4380_23415,Knocknaheeny,68471-00017-1,0,4380_7778208_2020214,4380_444 -4380_78136,290,4380_23416,Knocknaheeny,68475-00015-1,0,4380_7778208_2020214,4380_444 -4380_78136,294,4380_23417,Knocknaheeny,68469-00018-1,0,4380_7778208_2020214,4380_444 -4380_78136,295,4380_23418,Knocknaheeny,68473-00019-1,0,4380_7778208_2020214,4380_444 -4380_78136,296,4380_23419,Knocknaheeny,66867-00021-1,0,4380_7778208_2020201,4380_446 -4380_77947,285,4380_2342,Drop Off,50693-00009-1,1,4380_7778208_1011102,4380_28 -4380_78136,297,4380_23421,Knocknaheeny,67718-00008-1,0,4380_7778208_2020205,4380_444 -4380_78136,285,4380_23428,Knocknaheeny,67942-00009-1,0,4380_7778208_2020211,4380_444 -4380_78136,286,4380_23429,Knocknaheeny,67944-00010-1,0,4380_7778208_2020211,4380_444 -4380_77947,286,4380_2343,Drop Off,50699-00010-1,1,4380_7778208_1011102,4380_28 -4380_78136,288,4380_23430,Knocknaheeny,67940-00011-1,0,4380_7778208_2020211,4380_444 -4380_78136,287,4380_23431,Knocknaheeny,67938-00012-1,0,4380_7778208_2020211,4380_444 -4380_78136,291,4380_23432,Knocknaheeny,67114-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23433,Knocknaheeny,67936-00014-1,0,4380_7778208_2020211,4380_444 -4380_78136,292,4380_23434,Knocknaheeny,67945-00016-1,0,4380_7778208_2020211,4380_444 -4380_78136,293,4380_23435,Knocknaheeny,67941-00017-1,0,4380_7778208_2020211,4380_444 -4380_78136,290,4380_23436,Knocknaheeny,67943-00015-1,0,4380_7778208_2020211,4380_444 -4380_78136,294,4380_23437,Knocknaheeny,67939-00018-1,0,4380_7778208_2020211,4380_444 -4380_78136,295,4380_23438,Knocknaheeny,67937-00019-1,0,4380_7778208_2020211,4380_444 -4380_78136,296,4380_23439,Knocknaheeny,67115-00021-1,0,4380_7778208_2020202,4380_446 -4380_77947,297,4380_2344,Drop Off,50690-00008-1,1,4380_7778208_1011102,4380_30 -4380_78136,297,4380_23441,Knocknaheeny,67787-00008-1,0,4380_7778208_2020206,4380_444 -4380_78136,285,4380_23448,Knocknaheeny,68298-00009-1,0,4380_7778208_2020213,4380_444 -4380_78136,286,4380_23449,Knocknaheeny,68296-00010-1,0,4380_7778208_2020213,4380_444 -4380_77947,287,4380_2345,Drop Off,50691-00012-1,1,4380_7778208_1011102,4380_28 -4380_78136,288,4380_23450,Knocknaheeny,68302-00011-1,0,4380_7778208_2020213,4380_444 -4380_78136,287,4380_23451,Knocknaheeny,68300-00012-1,0,4380_7778208_2020213,4380_444 -4380_78136,291,4380_23452,Knocknaheeny,67593-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23453,Knocknaheeny,68304-00014-1,0,4380_7778208_2020213,4380_444 -4380_78136,292,4380_23454,Knocknaheeny,68297-00016-1,0,4380_7778208_2020213,4380_444 -4380_78136,293,4380_23455,Knocknaheeny,68303-00017-1,0,4380_7778208_2020213,4380_444 -4380_78136,290,4380_23456,Knocknaheeny,68299-00015-1,0,4380_7778208_2020213,4380_444 -4380_78136,294,4380_23457,Knocknaheeny,68301-00018-1,0,4380_7778208_2020213,4380_444 -4380_78136,295,4380_23458,Knocknaheeny,68305-00019-1,0,4380_7778208_2020213,4380_444 -4380_78136,296,4380_23459,Knocknaheeny,67594-00021-1,0,4380_7778208_2020204,4380_446 -4380_77947,288,4380_2346,Drop Off,50695-00011-1,1,4380_7778208_1011102,4380_28 -4380_78136,297,4380_23461,Knocknaheeny,67818-00008-1,0,4380_7778208_2020207,4380_444 -4380_78136,285,4380_23468,Knocknaheeny,68122-00009-1,0,4380_7778208_2020212,4380_444 -4380_78136,286,4380_23469,Knocknaheeny,68120-00010-1,0,4380_7778208_2020212,4380_444 -4380_77947,289,4380_2347,Drop Off,50697-00014-1,1,4380_7778208_1011102,4380_28 -4380_78136,288,4380_23470,Knocknaheeny,68118-00011-1,0,4380_7778208_2020212,4380_444 -4380_78136,287,4380_23471,Knocknaheeny,68116-00012-1,0,4380_7778208_2020212,4380_444 -4380_78136,291,4380_23472,Knocknaheeny,66892-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23473,Knocknaheeny,68124-00014-1,0,4380_7778208_2020212,4380_444 -4380_78136,292,4380_23474,Knocknaheeny,68121-00016-1,0,4380_7778208_2020212,4380_444 -4380_78136,293,4380_23475,Knocknaheeny,68119-00017-1,0,4380_7778208_2020212,4380_444 -4380_78136,290,4380_23476,Knocknaheeny,68123-00015-1,0,4380_7778208_2020212,4380_444 -4380_78136,294,4380_23477,Knocknaheeny,68117-00018-1,0,4380_7778208_2020212,4380_444 -4380_78136,295,4380_23478,Knocknaheeny,68125-00019-1,0,4380_7778208_2020212,4380_444 -4380_78136,296,4380_23479,Knocknaheeny,66893-00021-1,0,4380_7778208_2020201,4380_446 -4380_77947,290,4380_2348,Drop Off,50694-00015-1,1,4380_7778208_1011102,4380_28 -4380_78136,297,4380_23481,Knocknaheeny,67137-00008-1,0,4380_7778208_2020202,4380_444 -4380_78136,285,4380_23488,Knocknaheeny,68494-00009-1,0,4380_7778208_2020214,4380_444 -4380_78136,286,4380_23489,Knocknaheeny,68490-00010-1,0,4380_7778208_2020214,4380_444 -4380_77947,291,4380_2349,Drop Off,50796-00013-1,1,4380_7778208_1011103,4380_32 -4380_78136,288,4380_23490,Knocknaheeny,68488-00011-1,0,4380_7778208_2020214,4380_444 -4380_78136,287,4380_23491,Knocknaheeny,68486-00012-1,0,4380_7778208_2020214,4380_444 -4380_78136,291,4380_23492,Knocknaheeny,67140-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23493,Knocknaheeny,68492-00014-1,0,4380_7778208_2020214,4380_444 -4380_78136,292,4380_23494,Knocknaheeny,68491-00016-1,0,4380_7778208_2020214,4380_444 -4380_78136,293,4380_23495,Knocknaheeny,68489-00017-1,0,4380_7778208_2020214,4380_444 -4380_78136,290,4380_23496,Knocknaheeny,68495-00015-1,0,4380_7778208_2020214,4380_444 -4380_78136,294,4380_23497,Knocknaheeny,68487-00018-1,0,4380_7778208_2020214,4380_444 -4380_78136,295,4380_23498,Knocknaheeny,68493-00019-1,0,4380_7778208_2020214,4380_444 -4380_78136,296,4380_23499,Knocknaheeny,67141-00021-1,0,4380_7778208_2020202,4380_446 -4380_77946,287,4380_235,Dundalk,50363-00012-1,0,4380_7778208_1000913,4380_1 -4380_77947,292,4380_2350,Drop Off,50700-00016-1,1,4380_7778208_1011102,4380_28 -4380_78136,297,4380_23501,Knocknaheeny,67618-00008-1,0,4380_7778208_2020204,4380_444 -4380_78136,285,4380_23508,Knocknaheeny,67956-00009-1,0,4380_7778208_2020211,4380_444 -4380_78136,286,4380_23509,Knocknaheeny,67960-00010-1,0,4380_7778208_2020211,4380_444 -4380_77947,293,4380_2351,Drop Off,50696-00017-1,1,4380_7778208_1011102,4380_28 -4380_78136,288,4380_23510,Knocknaheeny,67958-00011-1,0,4380_7778208_2020211,4380_444 -4380_78136,287,4380_23511,Knocknaheeny,67964-00012-1,0,4380_7778208_2020211,4380_444 -4380_78136,291,4380_23512,Knocknaheeny,67619-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23513,Knocknaheeny,67962-00014-1,0,4380_7778208_2020211,4380_444 -4380_78136,292,4380_23514,Knocknaheeny,67961-00016-1,0,4380_7778208_2020211,4380_444 -4380_78136,293,4380_23515,Knocknaheeny,67959-00017-1,0,4380_7778208_2020211,4380_444 -4380_78136,290,4380_23516,Knocknaheeny,67957-00015-1,0,4380_7778208_2020211,4380_444 -4380_78136,294,4380_23517,Knocknaheeny,67965-00018-1,0,4380_7778208_2020211,4380_444 -4380_78136,295,4380_23518,Knocknaheeny,67963-00019-1,0,4380_7778208_2020211,4380_444 -4380_78136,296,4380_23519,Knocknaheeny,67620-00021-1,0,4380_7778208_2020204,4380_446 -4380_77947,294,4380_2352,Drop Off,50692-00018-1,1,4380_7778208_1011102,4380_28 -4380_78136,297,4380_23521,Knocknaheeny,67820-00008-1,0,4380_7778208_2020207,4380_444 -4380_78136,285,4380_23528,Knocknaheeny,68316-00009-1,0,4380_7778208_2020213,4380_444 -4380_78136,286,4380_23529,Knocknaheeny,68324-00010-1,0,4380_7778208_2020213,4380_444 -4380_77947,295,4380_2353,Drop Off,50698-00019-1,1,4380_7778208_1011102,4380_28 -4380_78136,288,4380_23530,Knocknaheeny,68318-00011-1,0,4380_7778208_2020213,4380_444 -4380_78136,287,4380_23531,Knocknaheeny,68322-00012-1,0,4380_7778208_2020213,4380_444 -4380_78136,291,4380_23532,Knocknaheeny,66908-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23533,Knocknaheeny,68320-00014-1,0,4380_7778208_2020213,4380_444 -4380_78136,292,4380_23534,Knocknaheeny,68325-00016-1,0,4380_7778208_2020213,4380_444 -4380_78136,293,4380_23535,Knocknaheeny,68319-00017-1,0,4380_7778208_2020213,4380_444 -4380_78136,290,4380_23536,Knocknaheeny,68317-00015-1,0,4380_7778208_2020213,4380_444 -4380_78136,294,4380_23537,Knocknaheeny,68323-00018-1,0,4380_7778208_2020213,4380_444 -4380_78136,295,4380_23538,Knocknaheeny,68321-00019-1,0,4380_7778208_2020213,4380_444 -4380_78136,296,4380_23539,Knocknaheeny,66909-00021-1,0,4380_7778208_2020201,4380_446 -4380_77947,296,4380_2354,Drop Off,50797-00021-1,1,4380_7778208_1011103,4380_32 -4380_78136,297,4380_23541,Knocknaheeny,67155-00008-1,0,4380_7778208_2020202,4380_444 -4380_78136,285,4380_23548,Knocknaheeny,68136-00009-1,0,4380_7778208_2020212,4380_444 -4380_78136,286,4380_23549,Knocknaheeny,68142-00010-1,0,4380_7778208_2020212,4380_444 -4380_78136,288,4380_23550,Knocknaheeny,68138-00011-1,0,4380_7778208_2020212,4380_444 -4380_78136,287,4380_23551,Knocknaheeny,68144-00012-1,0,4380_7778208_2020212,4380_444 -4380_78136,291,4380_23552,Knocknaheeny,67156-00013-1,0,4380_7778208_2020202,4380_446 -4380_78136,289,4380_23553,Knocknaheeny,68140-00014-1,0,4380_7778208_2020212,4380_444 -4380_78136,292,4380_23554,Knocknaheeny,68143-00016-1,0,4380_7778208_2020212,4380_444 -4380_78136,293,4380_23555,Knocknaheeny,68139-00017-1,0,4380_7778208_2020212,4380_444 -4380_78136,290,4380_23556,Knocknaheeny,68137-00015-1,0,4380_7778208_2020212,4380_444 -4380_78136,294,4380_23557,Knocknaheeny,68145-00018-1,0,4380_7778208_2020212,4380_444 -4380_78136,295,4380_23558,Knocknaheeny,68141-00019-1,0,4380_7778208_2020212,4380_444 -4380_78136,296,4380_23559,Knocknaheeny,67157-00021-1,0,4380_7778208_2020202,4380_446 -4380_78136,297,4380_23561,Knocknaheeny,67634-00008-1,0,4380_7778208_2020204,4380_444 -4380_78136,285,4380_23568,Knocknaheeny,68512-00009-1,0,4380_7778208_2020214,4380_444 -4380_78136,286,4380_23569,Knocknaheeny,68508-00010-1,0,4380_7778208_2020214,4380_444 -4380_78136,288,4380_23570,Knocknaheeny,68506-00011-1,0,4380_7778208_2020214,4380_444 -4380_78136,287,4380_23571,Knocknaheeny,68514-00012-1,0,4380_7778208_2020214,4380_444 -4380_78136,291,4380_23572,Knocknaheeny,67635-00013-1,0,4380_7778208_2020204,4380_446 -4380_78136,289,4380_23573,Knocknaheeny,68510-00014-1,0,4380_7778208_2020214,4380_444 -4380_78136,292,4380_23574,Knocknaheeny,68509-00016-1,0,4380_7778208_2020214,4380_444 -4380_78136,293,4380_23575,Knocknaheeny,68507-00017-1,0,4380_7778208_2020214,4380_444 -4380_78136,290,4380_23576,Knocknaheeny,68513-00015-1,0,4380_7778208_2020214,4380_444 -4380_78136,294,4380_23577,Knocknaheeny,68515-00018-1,0,4380_7778208_2020214,4380_444 -4380_78136,295,4380_23578,Knocknaheeny,68511-00019-1,0,4380_7778208_2020214,4380_444 -4380_78136,296,4380_23579,Knocknaheeny,67636-00021-1,0,4380_7778208_2020204,4380_446 -4380_78136,297,4380_23581,Knocknaheeny,67822-00008-1,0,4380_7778208_2020207,4380_444 -4380_78136,285,4380_23588,Knocknaheeny,67976-00009-1,0,4380_7778208_2020211,4380_444 -4380_78136,286,4380_23589,Knocknaheeny,67982-00010-1,0,4380_7778208_2020211,4380_444 -4380_78136,288,4380_23590,Knocknaheeny,67978-00011-1,0,4380_7778208_2020211,4380_444 -4380_78136,287,4380_23591,Knocknaheeny,67980-00012-1,0,4380_7778208_2020211,4380_444 -4380_78136,291,4380_23592,Knocknaheeny,66934-00013-1,0,4380_7778208_2020201,4380_446 -4380_78136,289,4380_23593,Knocknaheeny,67984-00014-1,0,4380_7778208_2020211,4380_444 -4380_78136,292,4380_23594,Knocknaheeny,67983-00016-1,0,4380_7778208_2020211,4380_444 -4380_78136,293,4380_23595,Knocknaheeny,67979-00017-1,0,4380_7778208_2020211,4380_444 -4380_78136,290,4380_23596,Knocknaheeny,67977-00015-1,0,4380_7778208_2020211,4380_444 -4380_78136,294,4380_23597,Knocknaheeny,67981-00018-1,0,4380_7778208_2020211,4380_444 -4380_78136,295,4380_23598,Knocknaheeny,67985-00019-1,0,4380_7778208_2020211,4380_444 -4380_78136,296,4380_23599,Knocknaheeny,66935-00021-1,0,4380_7778208_2020201,4380_446 -4380_77946,288,4380_236,Dundalk,50365-00011-1,0,4380_7778208_1000913,4380_1 -4380_77947,285,4380_2360,Drop Off,50918-00009-1,1,4380_7778208_1011104,4380_28 -4380_78136,297,4380_23601,Knocknaheeny,67179-00008-1,0,4380_7778208_2020202,4380_444 -4380_78136,285,4380_23608,Knocknaheeny,68336-00009-1,0,4380_7778208_2020213,4380_444 -4380_78136,286,4380_23609,Knocknaheeny,68340-00010-1,0,4380_7778208_2020213,4380_444 -4380_77947,286,4380_2361,Drop Off,50926-00010-1,1,4380_7778208_1011104,4380_28 -4380_78136,288,4380_23610,Knocknaheeny,68344-00011-1,0,4380_7778208_2020213,4380_444 -4380_78136,287,4380_23611,Knocknaheeny,68342-00012-1,0,4380_7778208_2020213,4380_444 -4380_78136,291,4380_23612,Knocknaheeny,67182-00013-1,0,4380_7778208_2020202,4380_444 -4380_78136,289,4380_23613,Knocknaheeny,68338-00014-1,0,4380_7778208_2020213,4380_444 -4380_78136,292,4380_23614,Knocknaheeny,68341-00016-1,0,4380_7778208_2020213,4380_444 -4380_78136,293,4380_23615,Knocknaheeny,68345-00017-1,0,4380_7778208_2020213,4380_444 -4380_78136,290,4380_23616,Knocknaheeny,68337-00015-1,0,4380_7778208_2020213,4380_444 -4380_78136,294,4380_23617,Knocknaheeny,68343-00018-1,0,4380_7778208_2020213,4380_444 -4380_78136,295,4380_23618,Knocknaheeny,68339-00019-1,0,4380_7778208_2020213,4380_444 -4380_78136,296,4380_23619,Knocknaheeny,67183-00021-1,0,4380_7778208_2020202,4380_444 -4380_77947,288,4380_2362,Drop Off,50920-00011-1,1,4380_7778208_1011104,4380_28 -4380_78136,297,4380_23621,Knocknaheeny,67650-00008-1,0,4380_7778208_2020204,4380_444 -4380_78136,285,4380_23628,Knocknaheeny,68158-00009-1,0,4380_7778208_2020212,4380_444 -4380_78136,286,4380_23629,Knocknaheeny,68164-00010-1,0,4380_7778208_2020212,4380_444 -4380_77947,287,4380_2363,Drop Off,50924-00012-1,1,4380_7778208_1011104,4380_28 -4380_78136,288,4380_23630,Knocknaheeny,68160-00011-1,0,4380_7778208_2020212,4380_444 -4380_78136,287,4380_23631,Knocknaheeny,68156-00012-1,0,4380_7778208_2020212,4380_444 -4380_78136,291,4380_23632,Knocknaheeny,67661-00013-1,0,4380_7778208_2020204,4380_444 -4380_78136,289,4380_23633,Knocknaheeny,68162-00014-1,0,4380_7778208_2020212,4380_444 -4380_78136,292,4380_23634,Knocknaheeny,68165-00016-1,0,4380_7778208_2020212,4380_444 -4380_78136,293,4380_23635,Knocknaheeny,68161-00017-1,0,4380_7778208_2020212,4380_444 -4380_78136,290,4380_23636,Knocknaheeny,68159-00015-1,0,4380_7778208_2020212,4380_444 -4380_78136,294,4380_23637,Knocknaheeny,68157-00018-1,0,4380_7778208_2020212,4380_444 -4380_78136,295,4380_23638,Knocknaheeny,68163-00019-1,0,4380_7778208_2020212,4380_444 -4380_78136,296,4380_23639,Knocknaheeny,67662-00021-1,0,4380_7778208_2020204,4380_444 -4380_77947,289,4380_2364,Drop Off,50922-00014-1,1,4380_7778208_1011104,4380_28 -4380_78136,297,4380_23641,Knocknaheeny,67824-00008-1,0,4380_7778208_2020207,4380_444 -4380_78136,285,4380_23648,Knocknaheeny,68530-00009-1,0,4380_7778208_2020214,4380_444 -4380_78136,286,4380_23649,Knocknaheeny,68534-00010-1,0,4380_7778208_2020214,4380_444 -4380_77947,290,4380_2365,Drop Off,50919-00015-1,1,4380_7778208_1011104,4380_28 -4380_78136,288,4380_23650,Knocknaheeny,68528-00011-1,0,4380_7778208_2020214,4380_444 -4380_78136,287,4380_23651,Knocknaheeny,68526-00012-1,0,4380_7778208_2020214,4380_444 -4380_78136,291,4380_23652,Knocknaheeny,67803-00013-1,0,4380_7778208_2020206,4380_444 -4380_78136,289,4380_23653,Knocknaheeny,68532-00014-1,0,4380_7778208_2020214,4380_444 -4380_78136,292,4380_23654,Knocknaheeny,68535-00016-1,0,4380_7778208_2020214,4380_444 -4380_78136,293,4380_23655,Knocknaheeny,68529-00017-1,0,4380_7778208_2020214,4380_444 -4380_78136,290,4380_23656,Knocknaheeny,68531-00015-1,0,4380_7778208_2020214,4380_444 -4380_78136,294,4380_23657,Knocknaheeny,68527-00018-1,0,4380_7778208_2020214,4380_444 -4380_78136,295,4380_23658,Knocknaheeny,68533-00019-1,0,4380_7778208_2020214,4380_444 -4380_78136,296,4380_23659,Knocknaheeny,67804-00021-1,0,4380_7778208_2020206,4380_444 -4380_77947,292,4380_2366,Drop Off,50927-00016-1,1,4380_7778208_1011104,4380_28 -4380_78136,297,4380_23661,Knocknaheeny,67197-00008-1,0,4380_7778208_2020202,4380_444 -4380_78136,285,4380_23668,Knocknaheeny,67996-00009-1,0,4380_7778208_2020211,4380_444 -4380_78136,286,4380_23669,Knocknaheeny,68002-00010-1,0,4380_7778208_2020211,4380_444 -4380_77947,293,4380_2367,Drop Off,50921-00017-1,1,4380_7778208_1011104,4380_28 -4380_78136,288,4380_23670,Knocknaheeny,68000-00011-1,0,4380_7778208_2020211,4380_444 -4380_78136,287,4380_23671,Knocknaheeny,68004-00012-1,0,4380_7778208_2020211,4380_444 -4380_78136,291,4380_23672,Knocknaheeny,67198-00013-1,0,4380_7778208_2020202,4380_444 -4380_78136,289,4380_23673,Knocknaheeny,67998-00014-1,0,4380_7778208_2020211,4380_444 -4380_78136,292,4380_23674,Knocknaheeny,68003-00016-1,0,4380_7778208_2020211,4380_444 -4380_78136,293,4380_23675,Knocknaheeny,68001-00017-1,0,4380_7778208_2020211,4380_444 -4380_78136,290,4380_23676,Knocknaheeny,67997-00015-1,0,4380_7778208_2020211,4380_444 -4380_78136,294,4380_23677,Knocknaheeny,68005-00018-1,0,4380_7778208_2020211,4380_444 -4380_78136,295,4380_23678,Knocknaheeny,67999-00019-1,0,4380_7778208_2020211,4380_444 -4380_78136,296,4380_23679,Knocknaheeny,67199-00021-1,0,4380_7778208_2020202,4380_444 -4380_77947,294,4380_2368,Drop Off,50925-00018-1,1,4380_7778208_1011104,4380_28 -4380_78136,285,4380_23685,Mahon,68360-00009-1,1,4380_7778208_2020214,4380_448 -4380_78136,286,4380_23686,Mahon,68364-00010-1,1,4380_7778208_2020214,4380_448 -4380_78136,288,4380_23687,Mahon,68356-00011-1,1,4380_7778208_2020214,4380_448 -4380_78136,287,4380_23688,Mahon,68362-00012-1,1,4380_7778208_2020214,4380_448 -4380_78136,289,4380_23689,Mahon,68358-00014-1,1,4380_7778208_2020214,4380_448 -4380_77947,295,4380_2369,Drop Off,50923-00019-1,1,4380_7778208_1011104,4380_28 -4380_78136,292,4380_23690,Mahon,68365-00016-1,1,4380_7778208_2020214,4380_448 -4380_78136,293,4380_23691,Mahon,68357-00017-1,1,4380_7778208_2020214,4380_448 -4380_78136,290,4380_23692,Mahon,68361-00015-1,1,4380_7778208_2020214,4380_448 -4380_78136,294,4380_23693,Mahon,68363-00018-1,1,4380_7778208_2020214,4380_448 -4380_78136,295,4380_23694,Mahon,68359-00019-1,1,4380_7778208_2020214,4380_448 -4380_77946,289,4380_237,Dundalk,50357-00014-1,0,4380_7778208_1000913,4380_1 -4380_78136,285,4380_23701,Mahon,67826-00009-1,1,4380_7778208_2020211,4380_448 -4380_78136,286,4380_23702,Mahon,67832-00010-1,1,4380_7778208_2020211,4380_448 -4380_78136,288,4380_23703,Mahon,67828-00011-1,1,4380_7778208_2020211,4380_448 -4380_78136,287,4380_23704,Mahon,67830-00012-1,1,4380_7778208_2020211,4380_448 -4380_78136,291,4380_23705,Mahon,67204-00013-1,1,4380_7778208_2020203,4380_450 -4380_78136,289,4380_23706,Mahon,67834-00014-1,1,4380_7778208_2020211,4380_448 -4380_78136,292,4380_23707,Mahon,67833-00016-1,1,4380_7778208_2020211,4380_448 -4380_78136,293,4380_23708,Mahon,67829-00017-1,1,4380_7778208_2020211,4380_448 -4380_78136,290,4380_23709,Mahon,67827-00015-1,1,4380_7778208_2020211,4380_448 -4380_77947,291,4380_2371,Drop Off,50928-00013-1,1,4380_7778208_1011104,4380_28 -4380_78136,294,4380_23710,Mahon,67831-00018-1,1,4380_7778208_2020211,4380_448 -4380_78136,295,4380_23711,Mahon,67835-00019-1,1,4380_7778208_2020211,4380_448 -4380_78136,296,4380_23712,Mahon,67205-00021-1,1,4380_7778208_2020203,4380_450 -4380_78136,285,4380_23719,Mahon,68190-00009-1,1,4380_7778208_2020213,4380_447 -4380_77947,296,4380_2372,Drop Off,50929-00021-1,1,4380_7778208_1011104,4380_28 -4380_78136,286,4380_23720,Mahon,68188-00010-1,1,4380_7778208_2020213,4380_447 -4380_78136,288,4380_23721,Mahon,68186-00011-1,1,4380_7778208_2020213,4380_447 -4380_78136,287,4380_23722,Mahon,68194-00012-1,1,4380_7778208_2020213,4380_447 -4380_78136,291,4380_23723,Mahon,67678-00013-1,1,4380_7778208_2020205,4380_449 -4380_78136,289,4380_23724,Mahon,68192-00014-1,1,4380_7778208_2020213,4380_447 -4380_78136,292,4380_23725,Mahon,68189-00016-1,1,4380_7778208_2020213,4380_447 -4380_78136,293,4380_23726,Mahon,68187-00017-1,1,4380_7778208_2020213,4380_447 -4380_78136,290,4380_23727,Mahon,68191-00015-1,1,4380_7778208_2020213,4380_447 -4380_78136,294,4380_23728,Mahon,68195-00018-1,1,4380_7778208_2020213,4380_447 -4380_78136,295,4380_23729,Mahon,68193-00019-1,1,4380_7778208_2020213,4380_447 -4380_78136,296,4380_23730,Mahon,67679-00021-1,1,4380_7778208_2020205,4380_449 -4380_78136,285,4380_23738,Mahon,68008-00009-1,1,4380_7778208_2020212,4380_449 -4380_78136,286,4380_23739,Mahon,68006-00010-1,1,4380_7778208_2020212,4380_449 -4380_78136,297,4380_23740,Mahon,66740-00008-1,1,4380_7778208_2020201,4380_447 -4380_78136,288,4380_23741,Mahon,68012-00011-1,1,4380_7778208_2020212,4380_449 -4380_78136,287,4380_23742,Mahon,68014-00012-1,1,4380_7778208_2020212,4380_449 -4380_78136,291,4380_23743,Mahon,67747-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_23744,Mahon,68010-00014-1,1,4380_7778208_2020212,4380_449 -4380_78136,292,4380_23745,Mahon,68007-00016-1,1,4380_7778208_2020212,4380_449 -4380_78136,293,4380_23746,Mahon,68013-00017-1,1,4380_7778208_2020212,4380_449 -4380_78136,290,4380_23747,Mahon,68009-00015-1,1,4380_7778208_2020212,4380_449 -4380_78136,294,4380_23748,Mahon,68015-00018-1,1,4380_7778208_2020212,4380_449 -4380_78136,295,4380_23749,Mahon,68011-00019-1,1,4380_7778208_2020212,4380_449 -4380_78136,296,4380_23750,Mahon,67748-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_23758,Mahon,68384-00009-1,1,4380_7778208_2020214,4380_449 -4380_78136,286,4380_23759,Mahon,68380-00010-1,1,4380_7778208_2020214,4380_449 -4380_78136,297,4380_23760,Mahon,66988-00008-1,1,4380_7778208_2020202,4380_447 -4380_78136,288,4380_23761,Mahon,68376-00011-1,1,4380_7778208_2020214,4380_449 -4380_78136,287,4380_23762,Mahon,68382-00012-1,1,4380_7778208_2020214,4380_449 -4380_78136,291,4380_23763,Mahon,67224-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_23764,Mahon,68378-00014-1,1,4380_7778208_2020214,4380_449 -4380_78136,292,4380_23765,Mahon,68381-00016-1,1,4380_7778208_2020214,4380_449 -4380_78136,293,4380_23766,Mahon,68377-00017-1,1,4380_7778208_2020214,4380_449 -4380_78136,290,4380_23767,Mahon,68385-00015-1,1,4380_7778208_2020214,4380_449 -4380_78136,294,4380_23768,Mahon,68383-00018-1,1,4380_7778208_2020214,4380_449 -4380_78136,295,4380_23769,Mahon,68379-00019-1,1,4380_7778208_2020214,4380_449 -4380_78136,296,4380_23770,Mahon,67225-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_23778,Mahon,67846-00009-1,1,4380_7778208_2020211,4380_449 -4380_78136,286,4380_23779,Mahon,67850-00010-1,1,4380_7778208_2020211,4380_449 -4380_77947,285,4380_2378,Drop Off,51555-00009-1,1,4380_7778208_1011112,4380_28 -4380_78136,297,4380_23780,Mahon,67467-00008-1,1,4380_7778208_2020204,4380_447 -4380_78136,288,4380_23781,Mahon,67854-00011-1,1,4380_7778208_2020211,4380_449 -4380_78136,287,4380_23782,Mahon,67848-00012-1,1,4380_7778208_2020211,4380_449 -4380_78136,291,4380_23783,Mahon,67684-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_23784,Mahon,67852-00014-1,1,4380_7778208_2020211,4380_449 -4380_78136,292,4380_23785,Mahon,67851-00016-1,1,4380_7778208_2020211,4380_449 -4380_78136,293,4380_23786,Mahon,67855-00017-1,1,4380_7778208_2020211,4380_449 -4380_78136,290,4380_23787,Mahon,67847-00015-1,1,4380_7778208_2020211,4380_449 -4380_78136,294,4380_23788,Mahon,67849-00018-1,1,4380_7778208_2020211,4380_449 -4380_78136,295,4380_23789,Mahon,67853-00019-1,1,4380_7778208_2020211,4380_449 -4380_77947,286,4380_2379,Drop Off,51551-00010-1,1,4380_7778208_1011112,4380_28 -4380_78136,296,4380_23790,Mahon,67685-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,285,4380_23798,Mahon,68214-00009-1,1,4380_7778208_2020213,4380_449 -4380_78136,286,4380_23799,Mahon,68212-00010-1,1,4380_7778208_2020213,4380_449 -4380_77946,290,4380_238,Dundalk,50362-00015-1,0,4380_7778208_1000913,4380_1 -4380_77947,288,4380_2380,Drop Off,51547-00011-1,1,4380_7778208_1011112,4380_28 -4380_78136,297,4380_23800,Mahon,66756-00008-1,1,4380_7778208_2020201,4380_447 -4380_78136,288,4380_23801,Mahon,68210-00011-1,1,4380_7778208_2020213,4380_449 -4380_78136,287,4380_23802,Mahon,68208-00012-1,1,4380_7778208_2020213,4380_449 -4380_78136,291,4380_23803,Mahon,67753-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_23804,Mahon,68206-00014-1,1,4380_7778208_2020213,4380_449 -4380_78136,292,4380_23805,Mahon,68213-00016-1,1,4380_7778208_2020213,4380_449 -4380_78136,293,4380_23806,Mahon,68211-00017-1,1,4380_7778208_2020213,4380_449 -4380_78136,290,4380_23807,Mahon,68215-00015-1,1,4380_7778208_2020213,4380_449 -4380_78136,294,4380_23808,Mahon,68209-00018-1,1,4380_7778208_2020213,4380_449 -4380_78136,295,4380_23809,Mahon,68207-00019-1,1,4380_7778208_2020213,4380_449 -4380_77947,287,4380_2381,Drop Off,51553-00012-1,1,4380_7778208_1011112,4380_28 -4380_78136,296,4380_23810,Mahon,67754-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_23818,Mahon,68028-00009-1,1,4380_7778208_2020212,4380_449 -4380_78136,286,4380_23819,Mahon,68026-00010-1,1,4380_7778208_2020212,4380_449 -4380_77947,289,4380_2382,Drop Off,51549-00014-1,1,4380_7778208_1011112,4380_28 -4380_78136,297,4380_23820,Mahon,67004-00008-1,1,4380_7778208_2020202,4380_447 -4380_78136,288,4380_23821,Mahon,68030-00011-1,1,4380_7778208_2020212,4380_449 -4380_78136,287,4380_23822,Mahon,68032-00012-1,1,4380_7778208_2020212,4380_449 -4380_78136,291,4380_23823,Mahon,67238-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_23824,Mahon,68034-00014-1,1,4380_7778208_2020212,4380_449 -4380_78136,292,4380_23825,Mahon,68027-00016-1,1,4380_7778208_2020212,4380_449 -4380_78136,293,4380_23826,Mahon,68031-00017-1,1,4380_7778208_2020212,4380_449 -4380_78136,290,4380_23827,Mahon,68029-00015-1,1,4380_7778208_2020212,4380_449 -4380_78136,294,4380_23828,Mahon,68033-00018-1,1,4380_7778208_2020212,4380_449 -4380_78136,295,4380_23829,Mahon,68035-00019-1,1,4380_7778208_2020212,4380_449 -4380_77947,290,4380_2383,Drop Off,51556-00015-1,1,4380_7778208_1011112,4380_28 -4380_78136,296,4380_23830,Mahon,67239-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_23838,Mahon,68398-00009-1,1,4380_7778208_2020214,4380_449 -4380_78136,286,4380_23839,Mahon,68404-00010-1,1,4380_7778208_2020214,4380_449 -4380_77947,292,4380_2384,Drop Off,51552-00016-1,1,4380_7778208_1011112,4380_28 -4380_78136,297,4380_23840,Mahon,67483-00008-1,1,4380_7778208_2020204,4380_447 -4380_78136,288,4380_23841,Mahon,68402-00011-1,1,4380_7778208_2020214,4380_449 -4380_78136,287,4380_23842,Mahon,68400-00012-1,1,4380_7778208_2020214,4380_449 -4380_78136,291,4380_23843,Mahon,67690-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_23844,Mahon,68396-00014-1,1,4380_7778208_2020214,4380_449 -4380_78136,292,4380_23845,Mahon,68405-00016-1,1,4380_7778208_2020214,4380_449 -4380_78136,293,4380_23846,Mahon,68403-00017-1,1,4380_7778208_2020214,4380_449 -4380_78136,290,4380_23847,Mahon,68399-00015-1,1,4380_7778208_2020214,4380_449 -4380_78136,294,4380_23848,Mahon,68401-00018-1,1,4380_7778208_2020214,4380_449 -4380_78136,295,4380_23849,Mahon,68397-00019-1,1,4380_7778208_2020214,4380_449 -4380_77947,293,4380_2385,Drop Off,51548-00017-1,1,4380_7778208_1011112,4380_28 -4380_78136,296,4380_23850,Mahon,67691-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,285,4380_23858,Mahon,67872-00009-1,1,4380_7778208_2020211,4380_449 -4380_78136,286,4380_23859,Mahon,67868-00010-1,1,4380_7778208_2020211,4380_449 -4380_77947,294,4380_2386,Drop Off,51554-00018-1,1,4380_7778208_1011112,4380_28 -4380_78136,297,4380_23860,Mahon,66782-00008-1,1,4380_7778208_2020201,4380_447 -4380_78136,288,4380_23861,Mahon,67870-00011-1,1,4380_7778208_2020211,4380_449 -4380_78136,287,4380_23862,Mahon,67866-00012-1,1,4380_7778208_2020211,4380_449 -4380_78136,291,4380_23863,Mahon,67759-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_23864,Mahon,67874-00014-1,1,4380_7778208_2020211,4380_449 -4380_78136,292,4380_23865,Mahon,67869-00016-1,1,4380_7778208_2020211,4380_449 -4380_78136,293,4380_23866,Mahon,67871-00017-1,1,4380_7778208_2020211,4380_449 -4380_78136,290,4380_23867,Mahon,67873-00015-1,1,4380_7778208_2020211,4380_449 -4380_78136,294,4380_23868,Mahon,67867-00018-1,1,4380_7778208_2020211,4380_449 -4380_78136,295,4380_23869,Mahon,67875-00019-1,1,4380_7778208_2020211,4380_449 -4380_77947,295,4380_2387,Drop Off,51550-00019-1,1,4380_7778208_1011112,4380_28 -4380_78136,296,4380_23870,Mahon,67760-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_23878,Mahon,68234-00009-1,1,4380_7778208_2020213,4380_449 -4380_78136,286,4380_23879,Mahon,68230-00010-1,1,4380_7778208_2020213,4380_449 -4380_78136,297,4380_23880,Mahon,67030-00008-1,1,4380_7778208_2020202,4380_447 -4380_78136,288,4380_23881,Mahon,68226-00011-1,1,4380_7778208_2020213,4380_449 -4380_78136,287,4380_23882,Mahon,68232-00012-1,1,4380_7778208_2020213,4380_449 -4380_78136,291,4380_23883,Mahon,67262-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_23884,Mahon,68228-00014-1,1,4380_7778208_2020213,4380_449 -4380_78136,292,4380_23885,Mahon,68231-00016-1,1,4380_7778208_2020213,4380_449 -4380_78136,293,4380_23886,Mahon,68227-00017-1,1,4380_7778208_2020213,4380_449 -4380_78136,290,4380_23887,Mahon,68235-00015-1,1,4380_7778208_2020213,4380_449 -4380_78136,294,4380_23888,Mahon,68233-00018-1,1,4380_7778208_2020213,4380_449 -4380_78136,295,4380_23889,Mahon,68229-00019-1,1,4380_7778208_2020213,4380_449 -4380_78136,296,4380_23890,Mahon,67263-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_23898,Mahon,68046-00009-1,1,4380_7778208_2020212,4380_449 -4380_78136,286,4380_23899,Mahon,68050-00010-1,1,4380_7778208_2020212,4380_449 -4380_77946,291,4380_239,Dundalk,50250-00013-1,0,4380_7778208_1000910,4380_5 -4380_78136,297,4380_23900,Mahon,67509-00008-1,1,4380_7778208_2020204,4380_447 -4380_78136,288,4380_23901,Mahon,68054-00011-1,1,4380_7778208_2020212,4380_449 -4380_78136,287,4380_23902,Mahon,68052-00012-1,1,4380_7778208_2020212,4380_449 -4380_78136,291,4380_23903,Mahon,67696-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_23904,Mahon,68048-00014-1,1,4380_7778208_2020212,4380_449 -4380_78136,292,4380_23905,Mahon,68051-00016-1,1,4380_7778208_2020212,4380_449 -4380_78136,293,4380_23906,Mahon,68055-00017-1,1,4380_7778208_2020212,4380_449 -4380_78136,290,4380_23907,Mahon,68047-00015-1,1,4380_7778208_2020212,4380_449 -4380_78136,294,4380_23908,Mahon,68053-00018-1,1,4380_7778208_2020212,4380_449 -4380_78136,295,4380_23909,Mahon,68049-00019-1,1,4380_7778208_2020212,4380_449 -4380_78136,296,4380_23910,Mahon,67697-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,285,4380_23918,Mahon,68416-00009-1,1,4380_7778208_2020214,4380_449 -4380_78136,286,4380_23919,Mahon,68420-00010-1,1,4380_7778208_2020214,4380_449 -4380_78136,297,4380_23920,Mahon,66798-00008-1,1,4380_7778208_2020201,4380_447 -4380_78136,288,4380_23921,Mahon,68424-00011-1,1,4380_7778208_2020214,4380_449 -4380_78136,287,4380_23922,Mahon,68422-00012-1,1,4380_7778208_2020214,4380_449 -4380_78136,291,4380_23923,Mahon,67765-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_23924,Mahon,68418-00014-1,1,4380_7778208_2020214,4380_449 -4380_78136,292,4380_23925,Mahon,68421-00016-1,1,4380_7778208_2020214,4380_449 -4380_78136,293,4380_23926,Mahon,68425-00017-1,1,4380_7778208_2020214,4380_449 -4380_78136,290,4380_23927,Mahon,68417-00015-1,1,4380_7778208_2020214,4380_449 -4380_78136,294,4380_23928,Mahon,68423-00018-1,1,4380_7778208_2020214,4380_449 -4380_78136,295,4380_23929,Mahon,68419-00019-1,1,4380_7778208_2020214,4380_449 -4380_78136,296,4380_23930,Mahon,67766-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_23938,Mahon,67888-00009-1,1,4380_7778208_2020211,4380_449 -4380_78136,286,4380_23939,Mahon,67886-00010-1,1,4380_7778208_2020211,4380_449 -4380_78136,297,4380_23940,Mahon,67046-00008-1,1,4380_7778208_2020202,4380_447 -4380_78136,288,4380_23941,Mahon,67894-00011-1,1,4380_7778208_2020211,4380_449 -4380_78136,287,4380_23942,Mahon,67892-00012-1,1,4380_7778208_2020211,4380_449 -4380_78136,291,4380_23943,Mahon,67276-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_23944,Mahon,67890-00014-1,1,4380_7778208_2020211,4380_449 -4380_78136,292,4380_23945,Mahon,67887-00016-1,1,4380_7778208_2020211,4380_449 -4380_78136,293,4380_23946,Mahon,67895-00017-1,1,4380_7778208_2020211,4380_449 -4380_78136,290,4380_23947,Mahon,67889-00015-1,1,4380_7778208_2020211,4380_449 -4380_78136,294,4380_23948,Mahon,67893-00018-1,1,4380_7778208_2020211,4380_449 -4380_78136,295,4380_23949,Mahon,67891-00019-1,1,4380_7778208_2020211,4380_449 -4380_77947,285,4380_2395,Drop Off,50805-00009-1,1,4380_7778208_1011103,4380_28 -4380_78136,296,4380_23950,Mahon,67277-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_23958,Mahon,68254-00009-1,1,4380_7778208_2020213,4380_449 -4380_78136,286,4380_23959,Mahon,68250-00010-1,1,4380_7778208_2020213,4380_449 -4380_77947,286,4380_2396,Drop Off,50800-00010-1,1,4380_7778208_1011103,4380_28 -4380_78136,297,4380_23960,Mahon,67525-00008-1,1,4380_7778208_2020204,4380_447 -4380_78136,288,4380_23961,Mahon,68246-00011-1,1,4380_7778208_2020213,4380_449 -4380_78136,287,4380_23962,Mahon,68248-00012-1,1,4380_7778208_2020213,4380_449 -4380_78136,291,4380_23963,Mahon,67702-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_23964,Mahon,68252-00014-1,1,4380_7778208_2020213,4380_449 -4380_78136,292,4380_23965,Mahon,68251-00016-1,1,4380_7778208_2020213,4380_449 -4380_78136,293,4380_23966,Mahon,68247-00017-1,1,4380_7778208_2020213,4380_449 -4380_78136,290,4380_23967,Mahon,68255-00015-1,1,4380_7778208_2020213,4380_449 -4380_78136,294,4380_23968,Mahon,68249-00018-1,1,4380_7778208_2020213,4380_449 -4380_78136,295,4380_23969,Mahon,68253-00019-1,1,4380_7778208_2020213,4380_449 -4380_77947,297,4380_2397,Drop Off,50804-00008-1,1,4380_7778208_1011103,4380_30 -4380_78136,296,4380_23970,Mahon,67703-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,285,4380_23978,Mahon,68072-00009-1,1,4380_7778208_2020212,4380_449 -4380_78136,286,4380_23979,Mahon,68074-00010-1,1,4380_7778208_2020212,4380_449 -4380_77947,288,4380_2398,Drop Off,50798-00011-1,1,4380_7778208_1011103,4380_28 -4380_78136,297,4380_23980,Mahon,66824-00008-1,1,4380_7778208_2020201,4380_447 -4380_78136,288,4380_23981,Mahon,68066-00011-1,1,4380_7778208_2020212,4380_449 -4380_78136,287,4380_23982,Mahon,68070-00012-1,1,4380_7778208_2020212,4380_449 -4380_78136,291,4380_23983,Mahon,67771-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_23984,Mahon,68068-00014-1,1,4380_7778208_2020212,4380_449 -4380_78136,292,4380_23985,Mahon,68075-00016-1,1,4380_7778208_2020212,4380_449 -4380_78136,293,4380_23986,Mahon,68067-00017-1,1,4380_7778208_2020212,4380_449 -4380_78136,290,4380_23987,Mahon,68073-00015-1,1,4380_7778208_2020212,4380_449 -4380_78136,294,4380_23988,Mahon,68071-00018-1,1,4380_7778208_2020212,4380_449 -4380_78136,295,4380_23989,Mahon,68069-00019-1,1,4380_7778208_2020212,4380_449 -4380_77947,287,4380_2399,Drop Off,50802-00012-1,1,4380_7778208_1011103,4380_28 -4380_78136,296,4380_23990,Mahon,67772-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_23998,Mahon,68438-00009-1,1,4380_7778208_2020214,4380_449 -4380_78136,286,4380_23999,Mahon,68444-00010-1,1,4380_7778208_2020214,4380_449 -4380_77946,285,4380_24,Dundalk,114771-00009-1,0,4380_7778208_10088801,4380_3 -4380_77946,292,4380_240,Dundalk,50360-00016-1,0,4380_7778208_1000913,4380_1 -4380_77947,289,4380_2400,Drop Off,50807-00014-1,1,4380_7778208_1011103,4380_28 -4380_78136,297,4380_24000,Mahon,67303-00008-1,1,4380_7778208_2020203,4380_447 -4380_78136,288,4380_24001,Mahon,68440-00011-1,1,4380_7778208_2020214,4380_449 -4380_78136,287,4380_24002,Mahon,68436-00012-1,1,4380_7778208_2020214,4380_449 -4380_78136,291,4380_24003,Mahon,67301-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_24004,Mahon,68442-00014-1,1,4380_7778208_2020214,4380_449 -4380_78136,292,4380_24005,Mahon,68445-00016-1,1,4380_7778208_2020214,4380_449 -4380_78136,293,4380_24006,Mahon,68441-00017-1,1,4380_7778208_2020214,4380_449 -4380_78136,290,4380_24007,Mahon,68439-00015-1,1,4380_7778208_2020214,4380_449 -4380_78136,294,4380_24008,Mahon,68437-00018-1,1,4380_7778208_2020214,4380_449 -4380_78136,295,4380_24009,Mahon,68443-00019-1,1,4380_7778208_2020214,4380_449 -4380_77947,290,4380_2401,Drop Off,50806-00015-1,1,4380_7778208_1011103,4380_28 -4380_78136,296,4380_24010,Mahon,67302-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_24018,Mahon,67906-00009-1,1,4380_7778208_2020211,4380_449 -4380_78136,286,4380_24019,Mahon,67914-00010-1,1,4380_7778208_2020211,4380_449 -4380_77947,291,4380_2402,Drop Off,50701-00013-1,1,4380_7778208_1011102,4380_32 -4380_78136,297,4380_24020,Mahon,67707-00008-1,1,4380_7778208_2020205,4380_447 -4380_78136,288,4380_24021,Mahon,67910-00011-1,1,4380_7778208_2020211,4380_449 -4380_78136,287,4380_24022,Mahon,67908-00012-1,1,4380_7778208_2020211,4380_449 -4380_78136,291,4380_24023,Mahon,67708-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_24024,Mahon,67912-00014-1,1,4380_7778208_2020211,4380_449 -4380_78136,292,4380_24025,Mahon,67915-00016-1,1,4380_7778208_2020211,4380_449 -4380_78136,293,4380_24026,Mahon,67911-00017-1,1,4380_7778208_2020211,4380_449 -4380_78136,290,4380_24027,Mahon,67907-00015-1,1,4380_7778208_2020211,4380_449 -4380_78136,294,4380_24028,Mahon,67909-00018-1,1,4380_7778208_2020211,4380_449 -4380_78136,295,4380_24029,Mahon,67913-00019-1,1,4380_7778208_2020211,4380_449 -4380_77947,292,4380_2403,Drop Off,50801-00016-1,1,4380_7778208_1011103,4380_28 -4380_78136,296,4380_24030,Mahon,67709-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,285,4380_24038,Mahon,68270-00009-1,1,4380_7778208_2020213,4380_449 -4380_78136,286,4380_24039,Mahon,68272-00010-1,1,4380_7778208_2020213,4380_449 -4380_77947,293,4380_2404,Drop Off,50799-00017-1,1,4380_7778208_1011103,4380_28 -4380_78136,297,4380_24040,Mahon,67778-00008-1,1,4380_7778208_2020206,4380_447 -4380_78136,288,4380_24041,Mahon,68266-00011-1,1,4380_7778208_2020213,4380_449 -4380_78136,287,4380_24042,Mahon,68274-00012-1,1,4380_7778208_2020213,4380_449 -4380_78136,291,4380_24043,Mahon,67776-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_24044,Mahon,68268-00014-1,1,4380_7778208_2020213,4380_449 -4380_78136,292,4380_24045,Mahon,68273-00016-1,1,4380_7778208_2020213,4380_449 -4380_78136,293,4380_24046,Mahon,68267-00017-1,1,4380_7778208_2020213,4380_449 -4380_78136,290,4380_24047,Mahon,68271-00015-1,1,4380_7778208_2020213,4380_449 -4380_78136,294,4380_24048,Mahon,68275-00018-1,1,4380_7778208_2020213,4380_449 -4380_78136,295,4380_24049,Mahon,68269-00019-1,1,4380_7778208_2020213,4380_449 -4380_77947,294,4380_2405,Drop Off,50803-00018-1,1,4380_7778208_1011103,4380_28 -4380_78136,296,4380_24050,Mahon,67777-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_24058,Mahon,68092-00009-1,1,4380_7778208_2020212,4380_449 -4380_78136,286,4380_24059,Mahon,68086-00010-1,1,4380_7778208_2020212,4380_449 -4380_77947,295,4380_2406,Drop Off,50808-00019-1,1,4380_7778208_1011103,4380_28 -4380_78136,297,4380_24060,Mahon,67815-00008-1,1,4380_7778208_2020207,4380_447 -4380_78136,288,4380_24061,Mahon,68090-00011-1,1,4380_7778208_2020212,4380_449 -4380_78136,287,4380_24062,Mahon,68094-00012-1,1,4380_7778208_2020212,4380_449 -4380_78136,291,4380_24063,Mahon,67317-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_24064,Mahon,68088-00014-1,1,4380_7778208_2020212,4380_449 -4380_78136,292,4380_24065,Mahon,68087-00016-1,1,4380_7778208_2020212,4380_449 -4380_78136,293,4380_24066,Mahon,68091-00017-1,1,4380_7778208_2020212,4380_449 -4380_78136,290,4380_24067,Mahon,68093-00015-1,1,4380_7778208_2020212,4380_449 -4380_78136,294,4380_24068,Mahon,68095-00018-1,1,4380_7778208_2020212,4380_449 -4380_78136,295,4380_24069,Mahon,68089-00019-1,1,4380_7778208_2020212,4380_449 -4380_77947,296,4380_2407,Drop Off,50702-00021-1,1,4380_7778208_1011102,4380_32 -4380_78136,296,4380_24070,Mahon,67318-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_24078,Mahon,68464-00009-1,1,4380_7778208_2020214,4380_449 -4380_78136,286,4380_24079,Mahon,68460-00010-1,1,4380_7778208_2020214,4380_449 -4380_78136,297,4380_24080,Mahon,67098-00008-1,1,4380_7778208_2020202,4380_447 -4380_78136,288,4380_24081,Mahon,68462-00011-1,1,4380_7778208_2020214,4380_449 -4380_78136,287,4380_24082,Mahon,68458-00012-1,1,4380_7778208_2020214,4380_449 -4380_78136,291,4380_24083,Mahon,67713-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_24084,Mahon,68456-00014-1,1,4380_7778208_2020214,4380_449 -4380_78136,292,4380_24085,Mahon,68461-00016-1,1,4380_7778208_2020214,4380_449 -4380_78136,293,4380_24086,Mahon,68463-00017-1,1,4380_7778208_2020214,4380_449 -4380_78136,290,4380_24087,Mahon,68465-00015-1,1,4380_7778208_2020214,4380_449 -4380_78136,294,4380_24088,Mahon,68459-00018-1,1,4380_7778208_2020214,4380_449 -4380_78136,295,4380_24089,Mahon,68457-00019-1,1,4380_7778208_2020214,4380_449 -4380_78136,296,4380_24090,Mahon,67714-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,285,4380_24098,Mahon,67932-00009-1,1,4380_7778208_2020211,4380_449 -4380_78136,286,4380_24099,Mahon,67928-00010-1,1,4380_7778208_2020211,4380_449 -4380_77946,293,4380_241,Dundalk,50366-00017-1,0,4380_7778208_1000913,4380_1 -4380_78136,297,4380_24100,Mahon,67577-00008-1,1,4380_7778208_2020204,4380_447 -4380_78136,288,4380_24101,Mahon,67934-00011-1,1,4380_7778208_2020211,4380_449 -4380_78136,287,4380_24102,Mahon,67930-00012-1,1,4380_7778208_2020211,4380_449 -4380_78136,291,4380_24103,Mahon,67782-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_24104,Mahon,67926-00014-1,1,4380_7778208_2020211,4380_449 -4380_78136,292,4380_24105,Mahon,67929-00016-1,1,4380_7778208_2020211,4380_449 -4380_78136,293,4380_24106,Mahon,67935-00017-1,1,4380_7778208_2020211,4380_449 -4380_78136,290,4380_24107,Mahon,67933-00015-1,1,4380_7778208_2020211,4380_449 -4380_78136,294,4380_24108,Mahon,67931-00018-1,1,4380_7778208_2020211,4380_449 -4380_78136,295,4380_24109,Mahon,67927-00019-1,1,4380_7778208_2020211,4380_449 -4380_78136,296,4380_24110,Mahon,67783-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_24118,Mahon,68294-00009-1,1,4380_7778208_2020213,4380_449 -4380_78136,286,4380_24119,Mahon,68286-00010-1,1,4380_7778208_2020213,4380_449 -4380_78136,297,4380_24120,Mahon,66868-00008-1,1,4380_7778208_2020201,4380_447 -4380_78136,288,4380_24121,Mahon,68292-00011-1,1,4380_7778208_2020213,4380_449 -4380_78136,287,4380_24122,Mahon,68288-00012-1,1,4380_7778208_2020213,4380_449 -4380_78136,291,4380_24123,Mahon,67343-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_24124,Mahon,68290-00014-1,1,4380_7778208_2020213,4380_449 -4380_78136,292,4380_24125,Mahon,68287-00016-1,1,4380_7778208_2020213,4380_449 -4380_78136,293,4380_24126,Mahon,68293-00017-1,1,4380_7778208_2020213,4380_449 -4380_78136,290,4380_24127,Mahon,68295-00015-1,1,4380_7778208_2020213,4380_449 -4380_78136,294,4380_24128,Mahon,68289-00018-1,1,4380_7778208_2020213,4380_449 -4380_78136,295,4380_24129,Mahon,68291-00019-1,1,4380_7778208_2020213,4380_449 -4380_78136,296,4380_24130,Mahon,67344-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_24138,Mahon,68112-00009-1,1,4380_7778208_2020212,4380_449 -4380_78136,286,4380_24139,Mahon,68106-00010-1,1,4380_7778208_2020212,4380_449 -4380_77947,285,4380_2414,Drop Off,51607-00009-1,1,4380_7778208_1011113,4380_28 -4380_78136,297,4380_24140,Mahon,67345-00008-1,1,4380_7778208_2020203,4380_447 -4380_78136,288,4380_24141,Mahon,68110-00011-1,1,4380_7778208_2020212,4380_449 -4380_78136,287,4380_24142,Mahon,68108-00012-1,1,4380_7778208_2020212,4380_449 -4380_78136,291,4380_24143,Mahon,67719-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_24144,Mahon,68114-00014-1,1,4380_7778208_2020212,4380_449 -4380_78136,292,4380_24145,Mahon,68107-00016-1,1,4380_7778208_2020212,4380_449 -4380_78136,293,4380_24146,Mahon,68111-00017-1,1,4380_7778208_2020212,4380_449 -4380_78136,290,4380_24147,Mahon,68113-00015-1,1,4380_7778208_2020212,4380_449 -4380_78136,294,4380_24148,Mahon,68109-00018-1,1,4380_7778208_2020212,4380_449 -4380_78136,295,4380_24149,Mahon,68115-00019-1,1,4380_7778208_2020212,4380_449 -4380_77947,286,4380_2415,Drop Off,51611-00010-1,1,4380_7778208_1011113,4380_28 -4380_78136,296,4380_24150,Mahon,67720-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,285,4380_24158,Mahon,68480-00009-1,1,4380_7778208_2020214,4380_449 -4380_78136,286,4380_24159,Mahon,68482-00010-1,1,4380_7778208_2020214,4380_449 -4380_77947,288,4380_2416,Drop Off,51613-00011-1,1,4380_7778208_1011113,4380_28 -4380_78136,297,4380_24160,Mahon,67721-00008-1,1,4380_7778208_2020205,4380_447 -4380_78136,288,4380_24161,Mahon,68476-00011-1,1,4380_7778208_2020214,4380_449 -4380_78136,287,4380_24162,Mahon,68484-00012-1,1,4380_7778208_2020214,4380_449 -4380_78136,291,4380_24163,Mahon,67788-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_24164,Mahon,68478-00014-1,1,4380_7778208_2020214,4380_449 -4380_78136,292,4380_24165,Mahon,68483-00016-1,1,4380_7778208_2020214,4380_449 -4380_78136,293,4380_24166,Mahon,68477-00017-1,1,4380_7778208_2020214,4380_449 -4380_78136,290,4380_24167,Mahon,68481-00015-1,1,4380_7778208_2020214,4380_449 -4380_78136,294,4380_24168,Mahon,68485-00018-1,1,4380_7778208_2020214,4380_449 -4380_78136,295,4380_24169,Mahon,68479-00019-1,1,4380_7778208_2020214,4380_449 -4380_77947,287,4380_2417,Drop Off,51615-00012-1,1,4380_7778208_1011113,4380_28 -4380_78136,296,4380_24170,Mahon,67789-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_24178,Mahon,67954-00009-1,1,4380_7778208_2020211,4380_449 -4380_78136,286,4380_24179,Mahon,67952-00010-1,1,4380_7778208_2020211,4380_449 -4380_77947,289,4380_2418,Drop Off,51609-00014-1,1,4380_7778208_1011113,4380_28 -4380_78136,297,4380_24180,Mahon,67790-00008-1,1,4380_7778208_2020206,4380_447 -4380_78136,288,4380_24181,Mahon,67950-00011-1,1,4380_7778208_2020211,4380_449 -4380_78136,287,4380_24182,Mahon,67948-00012-1,1,4380_7778208_2020211,4380_449 -4380_78136,291,4380_24183,Mahon,67358-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_24184,Mahon,67946-00014-1,1,4380_7778208_2020211,4380_449 -4380_78136,292,4380_24185,Mahon,67953-00016-1,1,4380_7778208_2020211,4380_449 -4380_78136,293,4380_24186,Mahon,67951-00017-1,1,4380_7778208_2020211,4380_449 -4380_78136,290,4380_24187,Mahon,67955-00015-1,1,4380_7778208_2020211,4380_449 -4380_78136,294,4380_24188,Mahon,67949-00018-1,1,4380_7778208_2020211,4380_449 -4380_78136,295,4380_24189,Mahon,67947-00019-1,1,4380_7778208_2020211,4380_449 -4380_77947,290,4380_2419,Drop Off,51608-00015-1,1,4380_7778208_1011113,4380_28 -4380_78136,296,4380_24190,Mahon,67359-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_24198,Mahon,68308-00009-1,1,4380_7778208_2020213,4380_449 -4380_78136,286,4380_24199,Mahon,68310-00010-1,1,4380_7778208_2020213,4380_449 -4380_77946,294,4380_242,Dundalk,50364-00018-1,0,4380_7778208_1000913,4380_1 -4380_77947,291,4380_2420,Drop Off,51022-00013-1,1,4380_7778208_1011105,4380_30 -4380_78136,297,4380_24200,Mahon,67819-00008-1,1,4380_7778208_2020207,4380_447 -4380_78136,288,4380_24201,Mahon,68306-00011-1,1,4380_7778208_2020213,4380_449 -4380_78136,287,4380_24202,Mahon,68312-00012-1,1,4380_7778208_2020213,4380_449 -4380_78136,291,4380_24203,Mahon,67724-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_24204,Mahon,68314-00014-1,1,4380_7778208_2020213,4380_449 -4380_78136,292,4380_24205,Mahon,68311-00016-1,1,4380_7778208_2020213,4380_449 -4380_78136,293,4380_24206,Mahon,68307-00017-1,1,4380_7778208_2020213,4380_449 -4380_78136,290,4380_24207,Mahon,68309-00015-1,1,4380_7778208_2020213,4380_449 -4380_78136,294,4380_24208,Mahon,68313-00018-1,1,4380_7778208_2020213,4380_449 -4380_78136,295,4380_24209,Mahon,68315-00019-1,1,4380_7778208_2020213,4380_449 -4380_77947,292,4380_2421,Drop Off,51612-00016-1,1,4380_7778208_1011113,4380_28 -4380_78136,296,4380_24210,Mahon,67725-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,285,4380_24218,Mahon,68134-00009-1,1,4380_7778208_2020212,4380_449 -4380_78136,286,4380_24219,Mahon,68126-00010-1,1,4380_7778208_2020212,4380_449 -4380_77947,293,4380_2422,Drop Off,51614-00017-1,1,4380_7778208_1011113,4380_28 -4380_78136,297,4380_24220,Mahon,67142-00008-1,1,4380_7778208_2020202,4380_447 -4380_78136,288,4380_24221,Mahon,68132-00011-1,1,4380_7778208_2020212,4380_449 -4380_78136,287,4380_24222,Mahon,68128-00012-1,1,4380_7778208_2020212,4380_449 -4380_78136,291,4380_24223,Mahon,67793-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_24224,Mahon,68130-00014-1,1,4380_7778208_2020212,4380_449 -4380_78136,292,4380_24225,Mahon,68127-00016-1,1,4380_7778208_2020212,4380_449 -4380_78136,293,4380_24226,Mahon,68133-00017-1,1,4380_7778208_2020212,4380_449 -4380_78136,290,4380_24227,Mahon,68135-00015-1,1,4380_7778208_2020212,4380_449 -4380_78136,294,4380_24228,Mahon,68129-00018-1,1,4380_7778208_2020212,4380_449 -4380_78136,295,4380_24229,Mahon,68131-00019-1,1,4380_7778208_2020212,4380_449 -4380_77947,294,4380_2423,Drop Off,51616-00018-1,1,4380_7778208_1011113,4380_28 -4380_78136,296,4380_24230,Mahon,67794-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_24238,Mahon,68500-00009-1,1,4380_7778208_2020214,4380_449 -4380_78136,286,4380_24239,Mahon,68502-00010-1,1,4380_7778208_2020214,4380_449 -4380_77947,295,4380_2424,Drop Off,51610-00019-1,1,4380_7778208_1011113,4380_28 -4380_78136,297,4380_24240,Mahon,67621-00008-1,1,4380_7778208_2020204,4380_447 -4380_78136,288,4380_24241,Mahon,68504-00011-1,1,4380_7778208_2020214,4380_449 -4380_78136,287,4380_24242,Mahon,68498-00012-1,1,4380_7778208_2020214,4380_449 -4380_78136,291,4380_24243,Mahon,67385-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_24244,Mahon,68496-00014-1,1,4380_7778208_2020214,4380_449 -4380_78136,292,4380_24245,Mahon,68503-00016-1,1,4380_7778208_2020214,4380_449 -4380_78136,293,4380_24246,Mahon,68505-00017-1,1,4380_7778208_2020214,4380_449 -4380_78136,290,4380_24247,Mahon,68501-00015-1,1,4380_7778208_2020214,4380_449 -4380_78136,294,4380_24248,Mahon,68499-00018-1,1,4380_7778208_2020214,4380_449 -4380_78136,295,4380_24249,Mahon,68497-00019-1,1,4380_7778208_2020214,4380_449 -4380_77947,296,4380_2425,Drop Off,51023-00021-1,1,4380_7778208_1011105,4380_30 -4380_78136,296,4380_24250,Mahon,67386-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_24258,Mahon,67970-00009-1,1,4380_7778208_2020211,4380_449 -4380_78136,286,4380_24259,Mahon,67972-00010-1,1,4380_7778208_2020211,4380_449 -4380_78136,297,4380_24260,Mahon,67821-00008-1,1,4380_7778208_2020207,4380_447 -4380_78136,288,4380_24261,Mahon,67968-00011-1,1,4380_7778208_2020211,4380_449 -4380_78136,287,4380_24262,Mahon,67974-00012-1,1,4380_7778208_2020211,4380_449 -4380_78136,291,4380_24263,Mahon,67730-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_24264,Mahon,67966-00014-1,1,4380_7778208_2020211,4380_449 -4380_78136,292,4380_24265,Mahon,67973-00016-1,1,4380_7778208_2020211,4380_449 -4380_78136,293,4380_24266,Mahon,67969-00017-1,1,4380_7778208_2020211,4380_449 -4380_78136,290,4380_24267,Mahon,67971-00015-1,1,4380_7778208_2020211,4380_449 -4380_78136,294,4380_24268,Mahon,67975-00018-1,1,4380_7778208_2020211,4380_449 -4380_78136,295,4380_24269,Mahon,67967-00019-1,1,4380_7778208_2020211,4380_449 -4380_78136,296,4380_24270,Mahon,67731-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,285,4380_24278,Mahon,68330-00009-1,1,4380_7778208_2020213,4380_449 -4380_78136,286,4380_24279,Mahon,68326-00010-1,1,4380_7778208_2020213,4380_449 -4380_78136,297,4380_24280,Mahon,67168-00008-1,1,4380_7778208_2020202,4380_447 -4380_78136,288,4380_24281,Mahon,68334-00011-1,1,4380_7778208_2020213,4380_449 -4380_78136,287,4380_24282,Mahon,68328-00012-1,1,4380_7778208_2020213,4380_449 -4380_78136,291,4380_24283,Mahon,67797-00013-1,1,4380_7778208_2020206,4380_451 -4380_78136,289,4380_24284,Mahon,68332-00014-1,1,4380_7778208_2020213,4380_449 -4380_78136,292,4380_24285,Mahon,68327-00016-1,1,4380_7778208_2020213,4380_449 -4380_78136,293,4380_24286,Mahon,68335-00017-1,1,4380_7778208_2020213,4380_449 -4380_78136,290,4380_24287,Mahon,68331-00015-1,1,4380_7778208_2020213,4380_449 -4380_78136,294,4380_24288,Mahon,68329-00018-1,1,4380_7778208_2020213,4380_449 -4380_78136,295,4380_24289,Mahon,68333-00019-1,1,4380_7778208_2020213,4380_449 -4380_78136,296,4380_24290,Mahon,67798-00021-1,1,4380_7778208_2020206,4380_451 -4380_78136,285,4380_24298,Mahon,68154-00009-1,1,4380_7778208_2020212,4380_449 -4380_78136,286,4380_24299,Mahon,68148-00010-1,1,4380_7778208_2020212,4380_449 -4380_77946,295,4380_243,Dundalk,50358-00019-1,0,4380_7778208_1000913,4380_1 -4380_78136,297,4380_24300,Mahon,67647-00008-1,1,4380_7778208_2020204,4380_447 -4380_78136,288,4380_24301,Mahon,68152-00011-1,1,4380_7778208_2020212,4380_449 -4380_78136,287,4380_24302,Mahon,68150-00012-1,1,4380_7778208_2020212,4380_449 -4380_78136,291,4380_24303,Mahon,67401-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_24304,Mahon,68146-00014-1,1,4380_7778208_2020212,4380_449 -4380_78136,292,4380_24305,Mahon,68149-00016-1,1,4380_7778208_2020212,4380_449 -4380_78136,293,4380_24306,Mahon,68153-00017-1,1,4380_7778208_2020212,4380_449 -4380_78136,290,4380_24307,Mahon,68155-00015-1,1,4380_7778208_2020212,4380_449 -4380_78136,294,4380_24308,Mahon,68151-00018-1,1,4380_7778208_2020212,4380_449 -4380_78136,295,4380_24309,Mahon,68147-00019-1,1,4380_7778208_2020212,4380_449 -4380_78136,296,4380_24310,Mahon,67402-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_24318,Mahon,68520-00009-1,1,4380_7778208_2020214,4380_449 -4380_78136,286,4380_24319,Mahon,68518-00010-1,1,4380_7778208_2020214,4380_449 -4380_78136,297,4380_24320,Mahon,67823-00008-1,1,4380_7778208_2020207,4380_447 -4380_78136,288,4380_24321,Mahon,68522-00011-1,1,4380_7778208_2020214,4380_449 -4380_78136,287,4380_24322,Mahon,68524-00012-1,1,4380_7778208_2020214,4380_449 -4380_78136,291,4380_24323,Mahon,67736-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_24324,Mahon,68516-00014-1,1,4380_7778208_2020214,4380_449 -4380_78136,292,4380_24325,Mahon,68519-00016-1,1,4380_7778208_2020214,4380_449 -4380_78136,293,4380_24326,Mahon,68523-00017-1,1,4380_7778208_2020214,4380_449 -4380_78136,290,4380_24327,Mahon,68521-00015-1,1,4380_7778208_2020214,4380_449 -4380_78136,294,4380_24328,Mahon,68525-00018-1,1,4380_7778208_2020214,4380_449 -4380_78136,295,4380_24329,Mahon,68517-00019-1,1,4380_7778208_2020214,4380_449 -4380_77947,285,4380_2433,Drop Off,51308-00009-1,1,4380_7778208_1011108,4380_28 -4380_78136,296,4380_24330,Mahon,67737-00021-1,1,4380_7778208_2020205,4380_451 -4380_78136,291,4380_24332,Mahon,67801-00013-1,1,4380_7778208_2020206,4380_447 -4380_78136,296,4380_24333,Mahon,67802-00021-1,1,4380_7778208_2020206,4380_447 -4380_77947,286,4380_2434,Drop Off,51304-00010-1,1,4380_7778208_1011108,4380_28 -4380_78136,285,4380_24340,Mahon,67988-00009-1,1,4380_7778208_2020211,4380_449 -4380_78136,286,4380_24341,Mahon,67990-00010-1,1,4380_7778208_2020211,4380_449 -4380_78136,297,4380_24342,Mahon,67184-00008-1,1,4380_7778208_2020202,4380_447 -4380_78136,288,4380_24343,Mahon,67992-00011-1,1,4380_7778208_2020211,4380_449 -4380_78136,287,4380_24344,Mahon,67986-00012-1,1,4380_7778208_2020211,4380_449 -4380_78136,289,4380_24345,Mahon,67994-00014-1,1,4380_7778208_2020211,4380_449 -4380_78136,292,4380_24346,Mahon,67991-00016-1,1,4380_7778208_2020211,4380_449 -4380_78136,293,4380_24347,Mahon,67993-00017-1,1,4380_7778208_2020211,4380_449 -4380_78136,290,4380_24348,Mahon,67989-00015-1,1,4380_7778208_2020211,4380_449 -4380_78136,294,4380_24349,Mahon,67987-00018-1,1,4380_7778208_2020211,4380_449 -4380_77947,297,4380_2435,Drop Off,51124-00008-1,1,4380_7778208_1011106,4380_30 -4380_78136,295,4380_24350,Mahon,67995-00019-1,1,4380_7778208_2020211,4380_449 -4380_78136,285,4380_24358,Mahon,68346-00009-1,1,4380_7778208_2020213,4380_449 -4380_78136,286,4380_24359,Mahon,68352-00010-1,1,4380_7778208_2020213,4380_449 -4380_77947,288,4380_2436,Drop Off,51302-00011-1,1,4380_7778208_1011108,4380_28 -4380_78136,297,4380_24360,Mahon,67663-00008-1,1,4380_7778208_2020204,4380_447 -4380_78136,288,4380_24361,Mahon,68348-00011-1,1,4380_7778208_2020213,4380_449 -4380_78136,287,4380_24362,Mahon,68350-00012-1,1,4380_7778208_2020213,4380_449 -4380_78136,291,4380_24363,Mahon,67427-00013-1,1,4380_7778208_2020203,4380_451 -4380_78136,289,4380_24364,Mahon,68354-00014-1,1,4380_7778208_2020213,4380_449 -4380_78136,292,4380_24365,Mahon,68353-00016-1,1,4380_7778208_2020213,4380_449 -4380_78136,293,4380_24366,Mahon,68349-00017-1,1,4380_7778208_2020213,4380_449 -4380_78136,290,4380_24367,Mahon,68347-00015-1,1,4380_7778208_2020213,4380_449 -4380_78136,294,4380_24368,Mahon,68351-00018-1,1,4380_7778208_2020213,4380_449 -4380_78136,295,4380_24369,Mahon,68355-00019-1,1,4380_7778208_2020213,4380_449 -4380_77947,287,4380_2437,Drop Off,51306-00012-1,1,4380_7778208_1011108,4380_28 -4380_78136,296,4380_24370,Mahon,67428-00021-1,1,4380_7778208_2020203,4380_451 -4380_78136,285,4380_24378,Mahon,68170-00009-1,1,4380_7778208_2020212,4380_449 -4380_78136,286,4380_24379,Mahon,68172-00010-1,1,4380_7778208_2020212,4380_449 -4380_77947,289,4380_2438,Drop Off,51310-00014-1,1,4380_7778208_1011108,4380_28 -4380_78136,297,4380_24380,Mahon,67825-00008-1,1,4380_7778208_2020207,4380_447 -4380_78136,288,4380_24381,Mahon,68166-00011-1,1,4380_7778208_2020212,4380_449 -4380_78136,287,4380_24382,Mahon,68168-00012-1,1,4380_7778208_2020212,4380_449 -4380_78136,291,4380_24383,Mahon,67742-00013-1,1,4380_7778208_2020205,4380_451 -4380_78136,289,4380_24384,Mahon,68174-00014-1,1,4380_7778208_2020212,4380_449 -4380_78136,292,4380_24385,Mahon,68173-00016-1,1,4380_7778208_2020212,4380_449 -4380_78136,293,4380_24386,Mahon,68167-00017-1,1,4380_7778208_2020212,4380_449 -4380_78136,290,4380_24387,Mahon,68171-00015-1,1,4380_7778208_2020212,4380_449 -4380_78136,294,4380_24388,Mahon,68169-00018-1,1,4380_7778208_2020212,4380_449 -4380_78136,295,4380_24389,Mahon,68175-00019-1,1,4380_7778208_2020212,4380_449 -4380_77947,290,4380_2439,Drop Off,51309-00015-1,1,4380_7778208_1011108,4380_28 -4380_78136,296,4380_24390,Mahon,67743-00021-1,1,4380_7778208_2020205,4380_451 -4380_77976,285,4380_24396,Farranree,69080-00009-1,0,4380_7778208_2030223,4380_452 -4380_77976,286,4380_24397,Farranree,69074-00010-1,0,4380_7778208_2030223,4380_452 -4380_77976,288,4380_24398,Farranree,69076-00011-1,0,4380_7778208_2030223,4380_452 -4380_77976,287,4380_24399,Farranree,69078-00012-1,0,4380_7778208_2030223,4380_452 -4380_77946,296,4380_244,Dundalk,50251-00021-1,0,4380_7778208_1000910,4380_5 -4380_77947,291,4380_2440,Drop Off,51125-00013-1,1,4380_7778208_1011106,4380_32 -4380_77976,289,4380_24400,Farranree,69082-00014-1,0,4380_7778208_2030223,4380_452 -4380_77976,292,4380_24401,Farranree,69075-00016-1,0,4380_7778208_2030223,4380_452 -4380_77976,293,4380_24402,Farranree,69077-00017-1,0,4380_7778208_2030223,4380_452 -4380_77976,290,4380_24403,Farranree,69081-00015-1,0,4380_7778208_2030223,4380_452 -4380_77976,294,4380_24404,Farranree,69079-00018-1,0,4380_7778208_2030223,4380_452 -4380_77976,295,4380_24405,Farranree,69083-00019-1,0,4380_7778208_2030223,4380_452 -4380_77976,291,4380_24407,Farranree,68536-00013-1,0,4380_7778208_2030201,4380_452 -4380_77976,296,4380_24408,Farranree,68537-00021-1,0,4380_7778208_2030201,4380_452 -4380_77947,292,4380_2441,Drop Off,51305-00016-1,1,4380_7778208_1011108,4380_28 -4380_77976,285,4380_24414,Farranree,68778-00009-1,0,4380_7778208_2030221,4380_453 -4380_77976,286,4380_24415,Farranree,68782-00010-1,0,4380_7778208_2030221,4380_453 -4380_77976,288,4380_24416,Farranree,68774-00011-1,0,4380_7778208_2030221,4380_453 -4380_77976,287,4380_24417,Farranree,68780-00012-1,0,4380_7778208_2030221,4380_453 -4380_77976,289,4380_24418,Farranree,68776-00014-1,0,4380_7778208_2030221,4380_453 -4380_77976,292,4380_24419,Farranree,68783-00016-1,0,4380_7778208_2030221,4380_453 -4380_77947,293,4380_2442,Drop Off,51303-00017-1,1,4380_7778208_1011108,4380_28 -4380_77976,293,4380_24420,Farranree,68775-00017-1,0,4380_7778208_2030221,4380_453 -4380_77976,290,4380_24421,Farranree,68779-00015-1,0,4380_7778208_2030221,4380_453 -4380_77976,294,4380_24422,Farranree,68781-00018-1,0,4380_7778208_2030221,4380_453 -4380_77976,295,4380_24423,Farranree,68777-00019-1,0,4380_7778208_2030221,4380_453 -4380_77976,285,4380_24429,Farranree,69254-00009-1,0,4380_7778208_2030224,4380_452 -4380_77947,294,4380_2443,Drop Off,51307-00018-1,1,4380_7778208_1011108,4380_28 -4380_77976,286,4380_24430,Farranree,69256-00010-1,0,4380_7778208_2030224,4380_452 -4380_77976,288,4380_24431,Farranree,69262-00011-1,0,4380_7778208_2030224,4380_452 -4380_77976,287,4380_24432,Farranree,69260-00012-1,0,4380_7778208_2030224,4380_452 -4380_77976,289,4380_24433,Farranree,69258-00014-1,0,4380_7778208_2030224,4380_452 -4380_77976,292,4380_24434,Farranree,69257-00016-1,0,4380_7778208_2030224,4380_452 -4380_77976,293,4380_24435,Farranree,69263-00017-1,0,4380_7778208_2030224,4380_452 -4380_77976,290,4380_24436,Farranree,69255-00015-1,0,4380_7778208_2030224,4380_452 -4380_77976,294,4380_24437,Farranree,69261-00018-1,0,4380_7778208_2030224,4380_452 -4380_77976,295,4380_24438,Farranree,69259-00019-1,0,4380_7778208_2030224,4380_452 -4380_77947,295,4380_2444,Drop Off,51311-00019-1,1,4380_7778208_1011108,4380_28 -4380_77976,285,4380_24444,Farranree,68910-00009-1,0,4380_7778208_2030222,4380_453 -4380_77976,286,4380_24445,Farranree,68908-00010-1,0,4380_7778208_2030222,4380_453 -4380_77976,288,4380_24446,Farranree,68904-00011-1,0,4380_7778208_2030222,4380_453 -4380_77976,287,4380_24447,Farranree,68912-00012-1,0,4380_7778208_2030222,4380_453 -4380_77976,289,4380_24448,Farranree,68906-00014-1,0,4380_7778208_2030222,4380_453 -4380_77976,292,4380_24449,Farranree,68909-00016-1,0,4380_7778208_2030222,4380_453 -4380_77947,296,4380_2445,Drop Off,51126-00021-1,1,4380_7778208_1011106,4380_32 -4380_77976,293,4380_24450,Farranree,68905-00017-1,0,4380_7778208_2030222,4380_453 -4380_77976,290,4380_24451,Farranree,68911-00015-1,0,4380_7778208_2030222,4380_453 -4380_77976,294,4380_24452,Farranree,68913-00018-1,0,4380_7778208_2030222,4380_453 -4380_77976,295,4380_24453,Farranree,68907-00019-1,0,4380_7778208_2030222,4380_453 -4380_77976,291,4380_24455,Farranree,68587-00013-1,0,4380_7778208_2030202,4380_452 -4380_77976,296,4380_24456,Farranree,68588-00021-1,0,4380_7778208_2030202,4380_452 -4380_77976,291,4380_24458,Farranree,68635-00013-1,0,4380_7778208_2030203,4380_453 -4380_77976,296,4380_24459,Farranree,68636-00021-1,0,4380_7778208_2030203,4380_453 -4380_77976,285,4380_24465,Farranree,69428-00009-1,0,4380_7778208_2030225,4380_453 -4380_77976,286,4380_24466,Farranree,69424-00010-1,0,4380_7778208_2030225,4380_453 -4380_77976,288,4380_24467,Farranree,69426-00011-1,0,4380_7778208_2030225,4380_453 -4380_77976,287,4380_24468,Farranree,69430-00012-1,0,4380_7778208_2030225,4380_453 -4380_77976,289,4380_24469,Farranree,69432-00014-1,0,4380_7778208_2030225,4380_453 -4380_77976,292,4380_24470,Farranree,69425-00016-1,0,4380_7778208_2030225,4380_453 -4380_77976,293,4380_24471,Farranree,69427-00017-1,0,4380_7778208_2030225,4380_453 -4380_77976,290,4380_24472,Farranree,69429-00015-1,0,4380_7778208_2030225,4380_453 -4380_77976,294,4380_24473,Farranree,69431-00018-1,0,4380_7778208_2030225,4380_453 -4380_77976,295,4380_24474,Farranree,69433-00019-1,0,4380_7778208_2030225,4380_453 -4380_77976,291,4380_24476,Farranree,68684-00013-1,0,4380_7778208_2030204,4380_453 -4380_77976,296,4380_24477,Farranree,68685-00021-1,0,4380_7778208_2030204,4380_453 -4380_77976,285,4380_24483,Farranree,69602-00009-1,0,4380_7778208_2030226,4380_453 -4380_77976,286,4380_24484,Farranree,69596-00010-1,0,4380_7778208_2030226,4380_453 -4380_77976,288,4380_24485,Farranree,69594-00011-1,0,4380_7778208_2030226,4380_453 -4380_77976,287,4380_24486,Farranree,69598-00012-1,0,4380_7778208_2030226,4380_453 -4380_77976,289,4380_24487,Farranree,69600-00014-1,0,4380_7778208_2030226,4380_453 -4380_77976,292,4380_24488,Farranree,69597-00016-1,0,4380_7778208_2030226,4380_453 -4380_77976,293,4380_24489,Farranree,69595-00017-1,0,4380_7778208_2030226,4380_453 -4380_77976,290,4380_24490,Farranree,69603-00015-1,0,4380_7778208_2030226,4380_453 -4380_77976,294,4380_24491,Farranree,69599-00018-1,0,4380_7778208_2030226,4380_453 -4380_77976,295,4380_24492,Farranree,69601-00019-1,0,4380_7778208_2030226,4380_453 -4380_77976,285,4380_24498,Farranree,69102-00009-1,0,4380_7778208_2030223,4380_453 -4380_77976,286,4380_24499,Farranree,69094-00010-1,0,4380_7778208_2030223,4380_453 -4380_77976,288,4380_24500,Farranree,69096-00011-1,0,4380_7778208_2030223,4380_453 -4380_77976,287,4380_24501,Farranree,69098-00012-1,0,4380_7778208_2030223,4380_453 -4380_77976,289,4380_24502,Farranree,69100-00014-1,0,4380_7778208_2030223,4380_453 -4380_77976,292,4380_24503,Farranree,69095-00016-1,0,4380_7778208_2030223,4380_453 -4380_77976,293,4380_24504,Farranree,69097-00017-1,0,4380_7778208_2030223,4380_453 -4380_77976,290,4380_24505,Farranree,69103-00015-1,0,4380_7778208_2030223,4380_453 -4380_77976,294,4380_24506,Farranree,69099-00018-1,0,4380_7778208_2030223,4380_453 -4380_77976,295,4380_24507,Farranree,69101-00019-1,0,4380_7778208_2030223,4380_453 -4380_77976,291,4380_24509,Farranree,68540-00013-1,0,4380_7778208_2030201,4380_453 -4380_77976,296,4380_24510,Farranree,68541-00021-1,0,4380_7778208_2030201,4380_453 -4380_77976,285,4380_24516,Farranree,69276-00009-1,0,4380_7778208_2030224,4380_453 -4380_77976,286,4380_24517,Farranree,69282-00010-1,0,4380_7778208_2030224,4380_453 -4380_77976,288,4380_24518,Farranree,69280-00011-1,0,4380_7778208_2030224,4380_453 -4380_77976,287,4380_24519,Farranree,69274-00012-1,0,4380_7778208_2030224,4380_453 -4380_77976,289,4380_24520,Farranree,69278-00014-1,0,4380_7778208_2030224,4380_453 -4380_77976,292,4380_24521,Farranree,69283-00016-1,0,4380_7778208_2030224,4380_453 -4380_77976,293,4380_24522,Farranree,69281-00017-1,0,4380_7778208_2030224,4380_453 -4380_77976,290,4380_24523,Farranree,69277-00015-1,0,4380_7778208_2030224,4380_453 -4380_77976,294,4380_24524,Farranree,69275-00018-1,0,4380_7778208_2030224,4380_453 -4380_77976,295,4380_24525,Farranree,69279-00019-1,0,4380_7778208_2030224,4380_453 -4380_77976,291,4380_24527,Farranree,68591-00013-1,0,4380_7778208_2030202,4380_453 -4380_77976,296,4380_24528,Farranree,68592-00021-1,0,4380_7778208_2030202,4380_453 -4380_77947,285,4380_2453,Drop Off,51030-00009-1,1,4380_7778208_1011105,4380_28 -4380_77976,285,4380_24534,Farranree,68802-00009-1,0,4380_7778208_2030221,4380_453 -4380_77976,286,4380_24535,Farranree,68798-00010-1,0,4380_7778208_2030221,4380_453 -4380_77976,288,4380_24536,Farranree,68794-00011-1,0,4380_7778208_2030221,4380_453 -4380_77976,287,4380_24537,Farranree,68800-00012-1,0,4380_7778208_2030221,4380_453 -4380_77976,289,4380_24538,Farranree,68796-00014-1,0,4380_7778208_2030221,4380_453 -4380_77976,292,4380_24539,Farranree,68799-00016-1,0,4380_7778208_2030221,4380_453 -4380_77947,286,4380_2454,Drop Off,51032-00010-1,1,4380_7778208_1011105,4380_28 -4380_77976,293,4380_24540,Farranree,68795-00017-1,0,4380_7778208_2030221,4380_453 -4380_77976,290,4380_24541,Farranree,68803-00015-1,0,4380_7778208_2030221,4380_453 -4380_77976,294,4380_24542,Farranree,68801-00018-1,0,4380_7778208_2030221,4380_453 -4380_77976,295,4380_24543,Farranree,68797-00019-1,0,4380_7778208_2030221,4380_453 -4380_77947,297,4380_2455,Drop Off,51210-00008-1,1,4380_7778208_1011107,4380_30 -4380_77976,285,4380_24550,Farranree,68926-00009-1,0,4380_7778208_2030222,4380_453 -4380_77976,286,4380_24551,Farranree,68924-00010-1,0,4380_7778208_2030222,4380_453 -4380_77976,288,4380_24552,Farranree,68930-00011-1,0,4380_7778208_2030222,4380_453 -4380_77976,287,4380_24553,Farranree,68932-00012-1,0,4380_7778208_2030222,4380_453 -4380_77976,291,4380_24554,Farranree,68639-00013-1,0,4380_7778208_2030203,4380_455 -4380_77976,289,4380_24555,Farranree,68928-00014-1,0,4380_7778208_2030222,4380_453 -4380_77976,292,4380_24556,Farranree,68925-00016-1,0,4380_7778208_2030222,4380_453 -4380_77976,293,4380_24557,Farranree,68931-00017-1,0,4380_7778208_2030222,4380_453 -4380_77976,290,4380_24558,Farranree,68927-00015-1,0,4380_7778208_2030222,4380_453 -4380_77976,294,4380_24559,Farranree,68933-00018-1,0,4380_7778208_2030222,4380_453 -4380_77947,288,4380_2456,Drop Off,51028-00011-1,1,4380_7778208_1011105,4380_28 -4380_77976,295,4380_24560,Farranree,68929-00019-1,0,4380_7778208_2030222,4380_453 -4380_77976,296,4380_24561,Farranree,68640-00021-1,0,4380_7778208_2030203,4380_455 -4380_77976,297,4380_24563,Farranree,68544-00008-1,0,4380_7778208_2030201,4380_452 -4380_77976,285,4380_24569,Farranree,69450-00009-1,0,4380_7778208_2030225,4380_453 -4380_77947,287,4380_2457,Drop Off,51024-00012-1,1,4380_7778208_1011105,4380_28 -4380_77976,286,4380_24570,Farranree,69446-00010-1,0,4380_7778208_2030225,4380_453 -4380_77976,288,4380_24571,Farranree,69444-00011-1,0,4380_7778208_2030225,4380_453 -4380_77976,287,4380_24572,Farranree,69452-00012-1,0,4380_7778208_2030225,4380_453 -4380_77976,289,4380_24573,Farranree,69448-00014-1,0,4380_7778208_2030225,4380_453 -4380_77976,292,4380_24574,Farranree,69447-00016-1,0,4380_7778208_2030225,4380_453 -4380_77976,293,4380_24575,Farranree,69445-00017-1,0,4380_7778208_2030225,4380_453 -4380_77976,290,4380_24576,Farranree,69451-00015-1,0,4380_7778208_2030225,4380_453 -4380_77976,294,4380_24577,Farranree,69453-00018-1,0,4380_7778208_2030225,4380_453 -4380_77976,295,4380_24578,Farranree,69449-00019-1,0,4380_7778208_2030225,4380_453 -4380_77947,289,4380_2458,Drop Off,51026-00014-1,1,4380_7778208_1011105,4380_28 -4380_77976,291,4380_24580,Farranree,68688-00013-1,0,4380_7778208_2030204,4380_453 -4380_77976,296,4380_24581,Farranree,68689-00021-1,0,4380_7778208_2030204,4380_453 -4380_77976,297,4380_24584,Farranree,68595-00008-1,0,4380_7778208_2030202,4380_453 -4380_77976,297,4380_24585,Farranree,68641-00008-1,0,4380_7778208_2030203,4380_452 -4380_77947,290,4380_2459,Drop Off,51031-00015-1,1,4380_7778208_1011105,4380_28 -4380_77976,285,4380_24591,Farranree,69616-00009-1,0,4380_7778208_2030226,4380_453 -4380_77976,286,4380_24592,Farranree,69620-00010-1,0,4380_7778208_2030226,4380_453 -4380_77976,288,4380_24593,Farranree,69618-00011-1,0,4380_7778208_2030226,4380_453 -4380_77976,287,4380_24594,Farranree,69614-00012-1,0,4380_7778208_2030226,4380_453 -4380_77976,289,4380_24595,Farranree,69622-00014-1,0,4380_7778208_2030226,4380_453 -4380_77976,292,4380_24596,Farranree,69621-00016-1,0,4380_7778208_2030226,4380_453 -4380_77976,293,4380_24597,Farranree,69619-00017-1,0,4380_7778208_2030226,4380_453 -4380_77976,290,4380_24598,Farranree,69617-00015-1,0,4380_7778208_2030226,4380_453 -4380_77976,294,4380_24599,Farranree,69615-00018-1,0,4380_7778208_2030226,4380_453 -4380_77947,291,4380_2460,Drop Off,51312-00013-1,1,4380_7778208_1011108,4380_32 -4380_77976,295,4380_24600,Farranree,69623-00019-1,0,4380_7778208_2030226,4380_453 -4380_77976,285,4380_24607,Farranree,69116-00009-1,0,4380_7778208_2030223,4380_453 -4380_77976,286,4380_24608,Farranree,69120-00010-1,0,4380_7778208_2030223,4380_453 -4380_77976,288,4380_24609,Farranree,69118-00011-1,0,4380_7778208_2030223,4380_453 -4380_77947,292,4380_2461,Drop Off,51033-00016-1,1,4380_7778208_1011105,4380_28 -4380_77976,287,4380_24610,Farranree,69122-00012-1,0,4380_7778208_2030223,4380_453 -4380_77976,291,4380_24611,Farranree,68546-00013-1,0,4380_7778208_2030201,4380_455 -4380_77976,289,4380_24612,Farranree,69114-00014-1,0,4380_7778208_2030223,4380_453 -4380_77976,292,4380_24613,Farranree,69121-00016-1,0,4380_7778208_2030223,4380_453 -4380_77976,293,4380_24614,Farranree,69119-00017-1,0,4380_7778208_2030223,4380_453 -4380_77976,290,4380_24615,Farranree,69117-00015-1,0,4380_7778208_2030223,4380_453 -4380_77976,294,4380_24616,Farranree,69123-00018-1,0,4380_7778208_2030223,4380_453 -4380_77976,295,4380_24617,Farranree,69115-00019-1,0,4380_7778208_2030223,4380_453 -4380_77976,296,4380_24618,Farranree,68547-00021-1,0,4380_7778208_2030201,4380_455 -4380_77947,293,4380_2462,Drop Off,51029-00017-1,1,4380_7778208_1011105,4380_28 -4380_77976,297,4380_24620,Farranree,68690-00008-1,0,4380_7778208_2030204,4380_453 -4380_77976,285,4380_24627,Farranree,69294-00009-1,0,4380_7778208_2030224,4380_453 -4380_77976,286,4380_24628,Farranree,69296-00010-1,0,4380_7778208_2030224,4380_453 -4380_77976,288,4380_24629,Farranree,69298-00011-1,0,4380_7778208_2030224,4380_453 -4380_77947,294,4380_2463,Drop Off,51025-00018-1,1,4380_7778208_1011105,4380_28 -4380_77976,287,4380_24630,Farranree,69302-00012-1,0,4380_7778208_2030224,4380_453 -4380_77976,291,4380_24631,Farranree,68596-00013-1,0,4380_7778208_2030202,4380_455 -4380_77976,289,4380_24632,Farranree,69300-00014-1,0,4380_7778208_2030224,4380_453 -4380_77976,292,4380_24633,Farranree,69297-00016-1,0,4380_7778208_2030224,4380_453 -4380_77976,293,4380_24634,Farranree,69299-00017-1,0,4380_7778208_2030224,4380_453 -4380_77976,290,4380_24635,Farranree,69295-00015-1,0,4380_7778208_2030224,4380_453 -4380_77976,294,4380_24636,Farranree,69303-00018-1,0,4380_7778208_2030224,4380_453 -4380_77976,295,4380_24637,Farranree,69301-00019-1,0,4380_7778208_2030224,4380_453 -4380_77976,296,4380_24638,Farranree,68597-00021-1,0,4380_7778208_2030202,4380_455 -4380_77947,295,4380_2464,Drop Off,51027-00019-1,1,4380_7778208_1011105,4380_28 -4380_77976,297,4380_24640,Farranree,68548-00008-1,0,4380_7778208_2030201,4380_453 -4380_77976,285,4380_24647,Farranree,68814-00009-1,0,4380_7778208_2030221,4380_453 -4380_77976,286,4380_24648,Farranree,68816-00010-1,0,4380_7778208_2030221,4380_453 -4380_77976,288,4380_24649,Farranree,68818-00011-1,0,4380_7778208_2030221,4380_453 -4380_77947,296,4380_2465,Drop Off,51313-00021-1,1,4380_7778208_1011108,4380_32 -4380_77976,287,4380_24650,Farranree,68820-00012-1,0,4380_7778208_2030221,4380_453 -4380_77976,291,4380_24651,Farranree,68748-00013-1,0,4380_7778208_2030206,4380_455 -4380_77976,289,4380_24652,Farranree,68822-00014-1,0,4380_7778208_2030221,4380_453 -4380_77976,292,4380_24653,Farranree,68817-00016-1,0,4380_7778208_2030221,4380_453 -4380_77976,293,4380_24654,Farranree,68819-00017-1,0,4380_7778208_2030221,4380_453 -4380_77976,290,4380_24655,Farranree,68815-00015-1,0,4380_7778208_2030221,4380_453 -4380_77976,294,4380_24656,Farranree,68821-00018-1,0,4380_7778208_2030221,4380_453 -4380_77976,295,4380_24657,Farranree,68823-00019-1,0,4380_7778208_2030221,4380_453 -4380_77976,296,4380_24658,Farranree,68749-00021-1,0,4380_7778208_2030206,4380_455 -4380_77976,285,4380_24665,Farranree,68950-00009-1,0,4380_7778208_2030222,4380_453 -4380_77976,286,4380_24666,Farranree,68952-00010-1,0,4380_7778208_2030222,4380_453 -4380_77976,288,4380_24667,Farranree,68944-00011-1,0,4380_7778208_2030222,4380_453 -4380_77976,287,4380_24668,Farranree,68946-00012-1,0,4380_7778208_2030222,4380_453 -4380_77976,291,4380_24669,Farranree,68645-00013-1,0,4380_7778208_2030203,4380_455 -4380_77976,289,4380_24670,Farranree,68948-00014-1,0,4380_7778208_2030222,4380_453 -4380_77976,292,4380_24671,Farranree,68953-00016-1,0,4380_7778208_2030222,4380_453 -4380_77976,293,4380_24672,Farranree,68945-00017-1,0,4380_7778208_2030222,4380_453 -4380_77976,290,4380_24673,Farranree,68951-00015-1,0,4380_7778208_2030222,4380_453 -4380_77976,294,4380_24674,Farranree,68947-00018-1,0,4380_7778208_2030222,4380_453 -4380_77976,295,4380_24675,Farranree,68949-00019-1,0,4380_7778208_2030222,4380_453 -4380_77976,296,4380_24676,Farranree,68646-00021-1,0,4380_7778208_2030203,4380_455 -4380_77976,297,4380_24678,Farranree,68647-00008-1,0,4380_7778208_2030203,4380_453 -4380_77976,285,4380_24685,Farranree,69472-00009-1,0,4380_7778208_2030225,4380_453 -4380_77976,286,4380_24686,Farranree,69468-00010-1,0,4380_7778208_2030225,4380_453 -4380_77976,288,4380_24687,Farranree,69470-00011-1,0,4380_7778208_2030225,4380_453 -4380_77976,287,4380_24688,Farranree,69464-00012-1,0,4380_7778208_2030225,4380_453 -4380_77976,291,4380_24689,Farranree,68694-00013-1,0,4380_7778208_2030204,4380_455 -4380_77976,289,4380_24690,Farranree,69466-00014-1,0,4380_7778208_2030225,4380_453 -4380_77976,292,4380_24691,Farranree,69469-00016-1,0,4380_7778208_2030225,4380_453 -4380_77976,293,4380_24692,Farranree,69471-00017-1,0,4380_7778208_2030225,4380_453 -4380_77976,290,4380_24693,Farranree,69473-00015-1,0,4380_7778208_2030225,4380_453 -4380_77976,294,4380_24694,Farranree,69465-00018-1,0,4380_7778208_2030225,4380_453 -4380_77976,295,4380_24695,Farranree,69467-00019-1,0,4380_7778208_2030225,4380_453 -4380_77976,296,4380_24696,Farranree,68695-00021-1,0,4380_7778208_2030204,4380_455 -4380_77976,297,4380_24698,Farranree,68601-00008-1,0,4380_7778208_2030202,4380_453 -4380_77976,285,4380_24705,Farranree,69638-00009-1,0,4380_7778208_2030226,4380_453 -4380_77976,286,4380_24706,Farranree,69636-00010-1,0,4380_7778208_2030226,4380_453 -4380_77976,288,4380_24707,Farranree,69634-00011-1,0,4380_7778208_2030226,4380_453 -4380_77976,287,4380_24708,Farranree,69640-00012-1,0,4380_7778208_2030226,4380_453 -4380_77976,291,4380_24709,Farranree,68732-00013-1,0,4380_7778208_2030205,4380_455 -4380_77976,289,4380_24710,Farranree,69642-00014-1,0,4380_7778208_2030226,4380_453 -4380_77976,292,4380_24711,Farranree,69637-00016-1,0,4380_7778208_2030226,4380_453 -4380_77976,293,4380_24712,Farranree,69635-00017-1,0,4380_7778208_2030226,4380_453 -4380_77976,290,4380_24713,Farranree,69639-00015-1,0,4380_7778208_2030226,4380_453 -4380_77976,294,4380_24714,Farranree,69641-00018-1,0,4380_7778208_2030226,4380_453 -4380_77976,295,4380_24715,Farranree,69643-00019-1,0,4380_7778208_2030226,4380_453 -4380_77976,296,4380_24716,Farranree,68733-00021-1,0,4380_7778208_2030205,4380_455 -4380_77976,285,4380_24723,Farranree,69138-00009-1,0,4380_7778208_2030223,4380_453 -4380_77976,286,4380_24724,Farranree,69142-00010-1,0,4380_7778208_2030223,4380_453 -4380_77976,288,4380_24725,Farranree,69140-00011-1,0,4380_7778208_2030223,4380_453 -4380_77976,287,4380_24726,Farranree,69134-00012-1,0,4380_7778208_2030223,4380_453 -4380_77976,291,4380_24727,Farranree,68552-00013-1,0,4380_7778208_2030201,4380_455 -4380_77976,289,4380_24728,Farranree,69136-00014-1,0,4380_7778208_2030223,4380_453 -4380_77976,292,4380_24729,Farranree,69143-00016-1,0,4380_7778208_2030223,4380_453 -4380_77947,285,4380_2473,Drop Off,51131-00009-1,1,4380_7778208_1011106,4380_28 -4380_77976,293,4380_24730,Farranree,69141-00017-1,0,4380_7778208_2030223,4380_453 -4380_77976,290,4380_24731,Farranree,69139-00015-1,0,4380_7778208_2030223,4380_453 -4380_77976,294,4380_24732,Farranree,69135-00018-1,0,4380_7778208_2030223,4380_453 -4380_77976,295,4380_24733,Farranree,69137-00019-1,0,4380_7778208_2030223,4380_453 -4380_77976,296,4380_24734,Farranree,68553-00021-1,0,4380_7778208_2030201,4380_455 -4380_77976,297,4380_24736,Farranree,68696-00008-1,0,4380_7778208_2030204,4380_453 -4380_77947,286,4380_2474,Drop Off,51127-00010-1,1,4380_7778208_1011106,4380_28 -4380_77976,285,4380_24743,Farranree,69318-00009-1,0,4380_7778208_2030224,4380_453 -4380_77976,286,4380_24744,Farranree,69322-00010-1,0,4380_7778208_2030224,4380_453 -4380_77976,288,4380_24745,Farranree,69320-00011-1,0,4380_7778208_2030224,4380_453 -4380_77976,287,4380_24746,Farranree,69314-00012-1,0,4380_7778208_2030224,4380_453 -4380_77976,291,4380_24747,Farranree,68602-00013-1,0,4380_7778208_2030202,4380_455 -4380_77976,289,4380_24748,Farranree,69316-00014-1,0,4380_7778208_2030224,4380_453 -4380_77976,292,4380_24749,Farranree,69323-00016-1,0,4380_7778208_2030224,4380_453 -4380_77947,297,4380_2475,Drop Off,50598-00008-1,1,4380_7778208_1011101,4380_30 -4380_77976,293,4380_24750,Farranree,69321-00017-1,0,4380_7778208_2030224,4380_453 -4380_77976,290,4380_24751,Farranree,69319-00015-1,0,4380_7778208_2030224,4380_453 -4380_77976,294,4380_24752,Farranree,69315-00018-1,0,4380_7778208_2030224,4380_453 -4380_77976,295,4380_24753,Farranree,69317-00019-1,0,4380_7778208_2030224,4380_453 -4380_77976,296,4380_24754,Farranree,68603-00021-1,0,4380_7778208_2030202,4380_455 -4380_77976,297,4380_24756,Farranree,68554-00008-1,0,4380_7778208_2030201,4380_453 -4380_77947,288,4380_2476,Drop Off,51129-00011-1,1,4380_7778208_1011106,4380_28 -4380_77976,285,4380_24763,Farranree,68842-00009-1,0,4380_7778208_2030221,4380_453 -4380_77976,286,4380_24764,Farranree,68836-00010-1,0,4380_7778208_2030221,4380_453 -4380_77976,288,4380_24765,Farranree,68838-00011-1,0,4380_7778208_2030221,4380_453 -4380_77976,287,4380_24766,Farranree,68840-00012-1,0,4380_7778208_2030221,4380_453 -4380_77976,291,4380_24767,Farranree,68752-00013-1,0,4380_7778208_2030206,4380_455 -4380_77976,289,4380_24768,Farranree,68834-00014-1,0,4380_7778208_2030221,4380_453 -4380_77976,292,4380_24769,Farranree,68837-00016-1,0,4380_7778208_2030221,4380_453 -4380_77947,287,4380_2477,Drop Off,51135-00012-1,1,4380_7778208_1011106,4380_28 -4380_77976,293,4380_24770,Farranree,68839-00017-1,0,4380_7778208_2030221,4380_453 -4380_77976,290,4380_24771,Farranree,68843-00015-1,0,4380_7778208_2030221,4380_453 -4380_77976,294,4380_24772,Farranree,68841-00018-1,0,4380_7778208_2030221,4380_453 -4380_77976,295,4380_24773,Farranree,68835-00019-1,0,4380_7778208_2030221,4380_453 -4380_77976,296,4380_24774,Farranree,68753-00021-1,0,4380_7778208_2030206,4380_455 -4380_77947,289,4380_2478,Drop Off,51133-00014-1,1,4380_7778208_1011106,4380_28 -4380_77976,285,4380_24781,Farranree,68964-00009-1,0,4380_7778208_2030222,4380_453 -4380_77976,286,4380_24782,Farranree,68970-00010-1,0,4380_7778208_2030222,4380_453 -4380_77976,288,4380_24783,Farranree,68972-00011-1,0,4380_7778208_2030222,4380_453 -4380_77976,287,4380_24784,Farranree,68968-00012-1,0,4380_7778208_2030222,4380_453 -4380_77976,291,4380_24785,Farranree,68651-00013-1,0,4380_7778208_2030203,4380_455 -4380_77976,289,4380_24786,Farranree,68966-00014-1,0,4380_7778208_2030222,4380_453 -4380_77976,292,4380_24787,Farranree,68971-00016-1,0,4380_7778208_2030222,4380_453 -4380_77976,293,4380_24788,Farranree,68973-00017-1,0,4380_7778208_2030222,4380_453 -4380_77976,290,4380_24789,Farranree,68965-00015-1,0,4380_7778208_2030222,4380_453 -4380_77947,290,4380_2479,Drop Off,51132-00015-1,1,4380_7778208_1011106,4380_28 -4380_77976,294,4380_24790,Farranree,68969-00018-1,0,4380_7778208_2030222,4380_453 -4380_77976,295,4380_24791,Farranree,68967-00019-1,0,4380_7778208_2030222,4380_453 -4380_77976,296,4380_24792,Farranree,68652-00021-1,0,4380_7778208_2030203,4380_455 -4380_77976,297,4380_24794,Farranree,68653-00008-1,0,4380_7778208_2030203,4380_453 -4380_77947,291,4380_2480,Drop Off,50599-00013-1,1,4380_7778208_1011101,4380_32 -4380_77976,285,4380_24801,Farranree,69484-00009-1,0,4380_7778208_2030225,4380_453 -4380_77976,286,4380_24802,Farranree,69488-00010-1,0,4380_7778208_2030225,4380_453 -4380_77976,288,4380_24803,Farranree,69486-00011-1,0,4380_7778208_2030225,4380_453 -4380_77976,287,4380_24804,Farranree,69490-00012-1,0,4380_7778208_2030225,4380_453 -4380_77976,291,4380_24805,Farranree,68700-00013-1,0,4380_7778208_2030204,4380_455 -4380_77976,289,4380_24806,Farranree,69492-00014-1,0,4380_7778208_2030225,4380_453 -4380_77976,292,4380_24807,Farranree,69489-00016-1,0,4380_7778208_2030225,4380_453 -4380_77976,293,4380_24808,Farranree,69487-00017-1,0,4380_7778208_2030225,4380_453 -4380_77976,290,4380_24809,Farranree,69485-00015-1,0,4380_7778208_2030225,4380_453 -4380_77947,292,4380_2481,Drop Off,51128-00016-1,1,4380_7778208_1011106,4380_28 -4380_77976,294,4380_24810,Farranree,69491-00018-1,0,4380_7778208_2030225,4380_453 -4380_77976,295,4380_24811,Farranree,69493-00019-1,0,4380_7778208_2030225,4380_453 -4380_77976,296,4380_24812,Farranree,68701-00021-1,0,4380_7778208_2030204,4380_455 -4380_77976,297,4380_24814,Farranree,68607-00008-1,0,4380_7778208_2030202,4380_453 -4380_77947,293,4380_2482,Drop Off,51130-00017-1,1,4380_7778208_1011106,4380_28 -4380_77976,285,4380_24821,Farranree,69654-00009-1,0,4380_7778208_2030226,4380_453 -4380_77976,286,4380_24822,Farranree,69658-00010-1,0,4380_7778208_2030226,4380_453 -4380_77976,288,4380_24823,Farranree,69656-00011-1,0,4380_7778208_2030226,4380_453 -4380_77976,287,4380_24824,Farranree,69660-00012-1,0,4380_7778208_2030226,4380_453 -4380_77976,291,4380_24825,Farranree,68736-00013-1,0,4380_7778208_2030205,4380_455 -4380_77976,289,4380_24826,Farranree,69662-00014-1,0,4380_7778208_2030226,4380_453 -4380_77976,292,4380_24827,Farranree,69659-00016-1,0,4380_7778208_2030226,4380_453 -4380_77976,293,4380_24828,Farranree,69657-00017-1,0,4380_7778208_2030226,4380_453 -4380_77976,290,4380_24829,Farranree,69655-00015-1,0,4380_7778208_2030226,4380_453 -4380_77947,294,4380_2483,Drop Off,51136-00018-1,1,4380_7778208_1011106,4380_28 -4380_77976,294,4380_24830,Farranree,69661-00018-1,0,4380_7778208_2030226,4380_453 -4380_77976,295,4380_24831,Farranree,69663-00019-1,0,4380_7778208_2030226,4380_453 -4380_77976,296,4380_24832,Farranree,68737-00021-1,0,4380_7778208_2030205,4380_455 -4380_77976,285,4380_24839,Farranree,69162-00009-1,0,4380_7778208_2030223,4380_453 -4380_77947,295,4380_2484,Drop Off,51134-00019-1,1,4380_7778208_1011106,4380_28 -4380_77976,286,4380_24840,Farranree,69154-00010-1,0,4380_7778208_2030223,4380_453 -4380_77976,288,4380_24841,Farranree,69158-00011-1,0,4380_7778208_2030223,4380_453 -4380_77976,287,4380_24842,Farranree,69156-00012-1,0,4380_7778208_2030223,4380_453 -4380_77976,291,4380_24843,Farranree,68558-00013-1,0,4380_7778208_2030201,4380_455 -4380_77976,289,4380_24844,Farranree,69160-00014-1,0,4380_7778208_2030223,4380_453 -4380_77976,292,4380_24845,Farranree,69155-00016-1,0,4380_7778208_2030223,4380_453 -4380_77976,293,4380_24846,Farranree,69159-00017-1,0,4380_7778208_2030223,4380_453 -4380_77976,290,4380_24847,Farranree,69163-00015-1,0,4380_7778208_2030223,4380_453 -4380_77976,294,4380_24848,Farranree,69157-00018-1,0,4380_7778208_2030223,4380_453 -4380_77976,295,4380_24849,Farranree,69161-00019-1,0,4380_7778208_2030223,4380_453 -4380_77947,296,4380_2485,Drop Off,50600-00021-1,1,4380_7778208_1011101,4380_32 -4380_77976,296,4380_24850,Farranree,68559-00021-1,0,4380_7778208_2030201,4380_455 -4380_77976,297,4380_24852,Farranree,68702-00008-1,0,4380_7778208_2030204,4380_453 -4380_77976,285,4380_24859,Farranree,69338-00009-1,0,4380_7778208_2030224,4380_453 -4380_77976,286,4380_24860,Farranree,69336-00010-1,0,4380_7778208_2030224,4380_453 -4380_77976,288,4380_24861,Farranree,69340-00011-1,0,4380_7778208_2030224,4380_453 -4380_77976,287,4380_24862,Farranree,69334-00012-1,0,4380_7778208_2030224,4380_453 -4380_77976,291,4380_24863,Farranree,68608-00013-1,0,4380_7778208_2030202,4380_455 -4380_77976,289,4380_24864,Farranree,69342-00014-1,0,4380_7778208_2030224,4380_453 -4380_77976,292,4380_24865,Farranree,69337-00016-1,0,4380_7778208_2030224,4380_453 -4380_77976,293,4380_24866,Farranree,69341-00017-1,0,4380_7778208_2030224,4380_453 -4380_77976,290,4380_24867,Farranree,69339-00015-1,0,4380_7778208_2030224,4380_453 -4380_77976,294,4380_24868,Farranree,69335-00018-1,0,4380_7778208_2030224,4380_453 -4380_77976,295,4380_24869,Farranree,69343-00019-1,0,4380_7778208_2030224,4380_453 -4380_77976,296,4380_24870,Farranree,68609-00021-1,0,4380_7778208_2030202,4380_455 -4380_77976,297,4380_24872,Farranree,68560-00008-1,0,4380_7778208_2030201,4380_453 -4380_77976,285,4380_24879,Farranree,68856-00009-1,0,4380_7778208_2030221,4380_453 -4380_77976,286,4380_24880,Farranree,68854-00010-1,0,4380_7778208_2030221,4380_453 -4380_77976,288,4380_24881,Farranree,68862-00011-1,0,4380_7778208_2030221,4380_453 -4380_77976,287,4380_24882,Farranree,68860-00012-1,0,4380_7778208_2030221,4380_453 -4380_77976,291,4380_24883,Farranree,68756-00013-1,0,4380_7778208_2030206,4380_455 -4380_77976,289,4380_24884,Farranree,68858-00014-1,0,4380_7778208_2030221,4380_453 -4380_77976,292,4380_24885,Farranree,68855-00016-1,0,4380_7778208_2030221,4380_453 -4380_77976,293,4380_24886,Farranree,68863-00017-1,0,4380_7778208_2030221,4380_453 -4380_77976,290,4380_24887,Farranree,68857-00015-1,0,4380_7778208_2030221,4380_453 -4380_77976,294,4380_24888,Farranree,68861-00018-1,0,4380_7778208_2030221,4380_453 -4380_77976,295,4380_24889,Farranree,68859-00019-1,0,4380_7778208_2030221,4380_453 -4380_77976,296,4380_24890,Farranree,68757-00021-1,0,4380_7778208_2030206,4380_455 -4380_77976,285,4380_24897,Farranree,68990-00009-1,0,4380_7778208_2030222,4380_453 -4380_77976,286,4380_24898,Farranree,68992-00010-1,0,4380_7778208_2030222,4380_453 -4380_77976,288,4380_24899,Farranree,68988-00011-1,0,4380_7778208_2030222,4380_453 -4380_77976,287,4380_24900,Farranree,68984-00012-1,0,4380_7778208_2030222,4380_453 -4380_77976,291,4380_24901,Farranree,68657-00013-1,0,4380_7778208_2030203,4380_455 -4380_77976,289,4380_24902,Farranree,68986-00014-1,0,4380_7778208_2030222,4380_453 -4380_77976,292,4380_24903,Farranree,68993-00016-1,0,4380_7778208_2030222,4380_453 -4380_77976,293,4380_24904,Farranree,68989-00017-1,0,4380_7778208_2030222,4380_453 -4380_77976,290,4380_24905,Farranree,68991-00015-1,0,4380_7778208_2030222,4380_453 -4380_77976,294,4380_24906,Farranree,68985-00018-1,0,4380_7778208_2030222,4380_453 -4380_77976,295,4380_24907,Farranree,68987-00019-1,0,4380_7778208_2030222,4380_453 -4380_77976,296,4380_24908,Farranree,68658-00021-1,0,4380_7778208_2030203,4380_455 -4380_77976,297,4380_24910,Farranree,68659-00008-1,0,4380_7778208_2030203,4380_453 -4380_77976,285,4380_24917,Farranree,69510-00009-1,0,4380_7778208_2030225,4380_453 -4380_77976,286,4380_24918,Farranree,69512-00010-1,0,4380_7778208_2030225,4380_453 -4380_77976,288,4380_24919,Farranree,69506-00011-1,0,4380_7778208_2030225,4380_453 -4380_77976,287,4380_24920,Farranree,69508-00012-1,0,4380_7778208_2030225,4380_453 -4380_77976,291,4380_24921,Farranree,68706-00013-1,0,4380_7778208_2030204,4380_455 -4380_77976,289,4380_24922,Farranree,69504-00014-1,0,4380_7778208_2030225,4380_453 -4380_77976,292,4380_24923,Farranree,69513-00016-1,0,4380_7778208_2030225,4380_453 -4380_77976,293,4380_24924,Farranree,69507-00017-1,0,4380_7778208_2030225,4380_453 -4380_77976,290,4380_24925,Farranree,69511-00015-1,0,4380_7778208_2030225,4380_453 -4380_77976,294,4380_24926,Farranree,69509-00018-1,0,4380_7778208_2030225,4380_453 -4380_77976,295,4380_24927,Farranree,69505-00019-1,0,4380_7778208_2030225,4380_453 -4380_77976,296,4380_24928,Farranree,68707-00021-1,0,4380_7778208_2030204,4380_455 -4380_77947,285,4380_2493,Drop Off,50605-00009-1,1,4380_7778208_1011101,4380_28 -4380_77976,297,4380_24930,Farranree,68613-00008-1,0,4380_7778208_2030202,4380_453 -4380_77976,285,4380_24937,Farranree,69674-00009-1,0,4380_7778208_2030226,4380_453 -4380_77976,286,4380_24938,Farranree,69682-00010-1,0,4380_7778208_2030226,4380_453 -4380_77976,288,4380_24939,Farranree,69676-00011-1,0,4380_7778208_2030226,4380_453 -4380_77947,286,4380_2494,Drop Off,50601-00010-1,1,4380_7778208_1011101,4380_28 -4380_77976,287,4380_24940,Farranree,69680-00012-1,0,4380_7778208_2030226,4380_453 -4380_77976,291,4380_24941,Farranree,68740-00013-1,0,4380_7778208_2030205,4380_455 -4380_77976,289,4380_24942,Farranree,69678-00014-1,0,4380_7778208_2030226,4380_453 -4380_77976,292,4380_24943,Farranree,69683-00016-1,0,4380_7778208_2030226,4380_453 -4380_77976,293,4380_24944,Farranree,69677-00017-1,0,4380_7778208_2030226,4380_453 -4380_77976,290,4380_24945,Farranree,69675-00015-1,0,4380_7778208_2030226,4380_453 -4380_77976,294,4380_24946,Farranree,69681-00018-1,0,4380_7778208_2030226,4380_453 -4380_77976,295,4380_24947,Farranree,69679-00019-1,0,4380_7778208_2030226,4380_453 -4380_77976,296,4380_24948,Farranree,68741-00021-1,0,4380_7778208_2030205,4380_455 -4380_77947,297,4380_2495,Drop Off,50942-00008-1,1,4380_7778208_1011104,4380_30 -4380_77976,285,4380_24955,Farranree,69182-00009-1,0,4380_7778208_2030223,4380_453 -4380_77976,286,4380_24956,Farranree,69176-00010-1,0,4380_7778208_2030223,4380_453 -4380_77976,288,4380_24957,Farranree,69180-00011-1,0,4380_7778208_2030223,4380_453 -4380_77976,287,4380_24958,Farranree,69174-00012-1,0,4380_7778208_2030223,4380_453 -4380_77976,291,4380_24959,Farranree,68564-00013-1,0,4380_7778208_2030201,4380_455 -4380_77947,287,4380_2496,Drop Off,50603-00012-1,1,4380_7778208_1011101,4380_28 -4380_77976,289,4380_24960,Farranree,69178-00014-1,0,4380_7778208_2030223,4380_453 -4380_77976,292,4380_24961,Farranree,69177-00016-1,0,4380_7778208_2030223,4380_453 -4380_77976,293,4380_24962,Farranree,69181-00017-1,0,4380_7778208_2030223,4380_453 -4380_77976,290,4380_24963,Farranree,69183-00015-1,0,4380_7778208_2030223,4380_453 -4380_77976,294,4380_24964,Farranree,69175-00018-1,0,4380_7778208_2030223,4380_453 -4380_77976,295,4380_24965,Farranree,69179-00019-1,0,4380_7778208_2030223,4380_453 -4380_77976,296,4380_24966,Farranree,68565-00021-1,0,4380_7778208_2030201,4380_455 -4380_77976,297,4380_24968,Farranree,68708-00008-1,0,4380_7778208_2030204,4380_453 -4380_77947,288,4380_2497,Drop Off,50607-00011-1,1,4380_7778208_1011101,4380_28 -4380_77976,285,4380_24975,Farranree,69356-00009-1,0,4380_7778208_2030224,4380_453 -4380_77976,286,4380_24976,Farranree,69360-00010-1,0,4380_7778208_2030224,4380_453 -4380_77976,288,4380_24977,Farranree,69362-00011-1,0,4380_7778208_2030224,4380_453 -4380_77976,287,4380_24978,Farranree,69358-00012-1,0,4380_7778208_2030224,4380_453 -4380_77976,291,4380_24979,Farranree,68614-00013-1,0,4380_7778208_2030202,4380_455 -4380_77947,289,4380_2498,Drop Off,50609-00014-1,1,4380_7778208_1011101,4380_28 -4380_77976,289,4380_24980,Farranree,69354-00014-1,0,4380_7778208_2030224,4380_453 -4380_77976,292,4380_24981,Farranree,69361-00016-1,0,4380_7778208_2030224,4380_453 -4380_77976,293,4380_24982,Farranree,69363-00017-1,0,4380_7778208_2030224,4380_453 -4380_77976,290,4380_24983,Farranree,69357-00015-1,0,4380_7778208_2030224,4380_453 -4380_77976,294,4380_24984,Farranree,69359-00018-1,0,4380_7778208_2030224,4380_453 -4380_77976,295,4380_24985,Farranree,69355-00019-1,0,4380_7778208_2030224,4380_453 -4380_77976,296,4380_24986,Farranree,68615-00021-1,0,4380_7778208_2030202,4380_455 -4380_77976,297,4380_24988,Farranree,68566-00008-1,0,4380_7778208_2030201,4380_453 -4380_77947,290,4380_2499,Drop Off,50606-00015-1,1,4380_7778208_1011101,4380_28 -4380_77976,285,4380_24995,Farranree,68874-00009-1,0,4380_7778208_2030221,4380_453 -4380_77976,286,4380_24996,Farranree,68876-00010-1,0,4380_7778208_2030221,4380_453 -4380_77976,288,4380_24997,Farranree,68880-00011-1,0,4380_7778208_2030221,4380_453 -4380_77976,287,4380_24998,Farranree,68882-00012-1,0,4380_7778208_2030221,4380_453 -4380_77976,291,4380_24999,Farranree,68760-00013-1,0,4380_7778208_2030206,4380_455 -4380_77946,288,4380_25,Dundalk,114767-00011-1,0,4380_7778208_10088801,4380_3 -4380_77947,291,4380_2500,Drop Off,51211-00013-1,1,4380_7778208_1011107,4380_32 -4380_77976,289,4380_25000,Farranree,68878-00014-1,0,4380_7778208_2030221,4380_453 -4380_77976,292,4380_25001,Farranree,68877-00016-1,0,4380_7778208_2030221,4380_453 -4380_77976,293,4380_25002,Farranree,68881-00017-1,0,4380_7778208_2030221,4380_453 -4380_77976,290,4380_25003,Farranree,68875-00015-1,0,4380_7778208_2030221,4380_453 -4380_77976,294,4380_25004,Farranree,68883-00018-1,0,4380_7778208_2030221,4380_453 -4380_77976,295,4380_25005,Farranree,68879-00019-1,0,4380_7778208_2030221,4380_453 -4380_77976,296,4380_25006,Farranree,68761-00021-1,0,4380_7778208_2030206,4380_455 -4380_77947,292,4380_2501,Drop Off,50602-00016-1,1,4380_7778208_1011101,4380_28 -4380_77976,285,4380_25013,Farranree,69004-00009-1,0,4380_7778208_2030222,4380_453 -4380_77976,286,4380_25014,Farranree,69006-00010-1,0,4380_7778208_2030222,4380_453 -4380_77976,288,4380_25015,Farranree,69012-00011-1,0,4380_7778208_2030222,4380_453 -4380_77976,287,4380_25016,Farranree,69008-00012-1,0,4380_7778208_2030222,4380_453 -4380_77976,291,4380_25017,Farranree,68663-00013-1,0,4380_7778208_2030203,4380_455 -4380_77976,289,4380_25018,Farranree,69010-00014-1,0,4380_7778208_2030222,4380_453 -4380_77976,292,4380_25019,Farranree,69007-00016-1,0,4380_7778208_2030222,4380_453 -4380_77947,293,4380_2502,Drop Off,50608-00017-1,1,4380_7778208_1011101,4380_28 -4380_77976,293,4380_25020,Farranree,69013-00017-1,0,4380_7778208_2030222,4380_453 -4380_77976,290,4380_25021,Farranree,69005-00015-1,0,4380_7778208_2030222,4380_453 -4380_77976,294,4380_25022,Farranree,69009-00018-1,0,4380_7778208_2030222,4380_453 -4380_77976,295,4380_25023,Farranree,69011-00019-1,0,4380_7778208_2030222,4380_453 -4380_77976,296,4380_25024,Farranree,68664-00021-1,0,4380_7778208_2030203,4380_455 -4380_77976,297,4380_25026,Farranree,68665-00008-1,0,4380_7778208_2030203,4380_453 -4380_77947,294,4380_2503,Drop Off,50604-00018-1,1,4380_7778208_1011101,4380_28 -4380_77976,285,4380_25033,Farranree,69530-00009-1,0,4380_7778208_2030225,4380_453 -4380_77976,286,4380_25034,Farranree,69532-00010-1,0,4380_7778208_2030225,4380_453 -4380_77976,288,4380_25035,Farranree,69526-00011-1,0,4380_7778208_2030225,4380_453 -4380_77976,287,4380_25036,Farranree,69528-00012-1,0,4380_7778208_2030225,4380_453 -4380_77976,291,4380_25037,Farranree,68712-00013-1,0,4380_7778208_2030204,4380_455 -4380_77976,289,4380_25038,Farranree,69524-00014-1,0,4380_7778208_2030225,4380_453 -4380_77976,292,4380_25039,Farranree,69533-00016-1,0,4380_7778208_2030225,4380_453 -4380_77947,295,4380_2504,Drop Off,50610-00019-1,1,4380_7778208_1011101,4380_28 -4380_77976,293,4380_25040,Farranree,69527-00017-1,0,4380_7778208_2030225,4380_453 -4380_77976,290,4380_25041,Farranree,69531-00015-1,0,4380_7778208_2030225,4380_453 -4380_77976,294,4380_25042,Farranree,69529-00018-1,0,4380_7778208_2030225,4380_453 -4380_77976,295,4380_25043,Farranree,69525-00019-1,0,4380_7778208_2030225,4380_453 -4380_77976,296,4380_25044,Farranree,68713-00021-1,0,4380_7778208_2030204,4380_455 -4380_77976,297,4380_25046,Farranree,68619-00008-1,0,4380_7778208_2030202,4380_453 -4380_77947,296,4380_2505,Drop Off,51212-00021-1,1,4380_7778208_1011107,4380_32 -4380_77976,285,4380_25053,St. Patrick Street,69696-00009-1,0,4380_7778208_2030226,4380_454 -4380_77976,286,4380_25054,St. Patrick Street,69700-00010-1,0,4380_7778208_2030226,4380_454 -4380_77976,288,4380_25055,St. Patrick Street,69694-00011-1,0,4380_7778208_2030226,4380_454 -4380_77976,287,4380_25056,St. Patrick Street,69702-00012-1,0,4380_7778208_2030226,4380_454 -4380_77976,291,4380_25057,St. Patrick Street,68744-00013-1,0,4380_7778208_2030205,4380_456 -4380_77976,289,4380_25058,St. Patrick Street,69698-00014-1,0,4380_7778208_2030226,4380_454 -4380_77976,292,4380_25059,St. Patrick Street,69701-00016-1,0,4380_7778208_2030226,4380_454 -4380_77976,293,4380_25060,St. Patrick Street,69695-00017-1,0,4380_7778208_2030226,4380_454 -4380_77976,290,4380_25061,St. Patrick Street,69697-00015-1,0,4380_7778208_2030226,4380_454 -4380_77976,294,4380_25062,St. Patrick Street,69703-00018-1,0,4380_7778208_2030226,4380_454 -4380_77976,295,4380_25063,St. Patrick Street,69699-00019-1,0,4380_7778208_2030226,4380_454 -4380_77976,296,4380_25064,St. Patrick Street,68745-00021-1,0,4380_7778208_2030205,4380_456 -4380_77976,285,4380_25071,Farranree,69198-00009-1,0,4380_7778208_2030223,4380_453 -4380_77976,286,4380_25072,Farranree,69200-00010-1,0,4380_7778208_2030223,4380_453 -4380_77976,288,4380_25073,Farranree,69196-00011-1,0,4380_7778208_2030223,4380_453 -4380_77976,287,4380_25074,Farranree,69202-00012-1,0,4380_7778208_2030223,4380_453 -4380_77976,291,4380_25075,Farranree,68570-00013-1,0,4380_7778208_2030201,4380_455 -4380_77976,289,4380_25076,Farranree,69194-00014-1,0,4380_7778208_2030223,4380_453 -4380_77976,292,4380_25077,Farranree,69201-00016-1,0,4380_7778208_2030223,4380_453 -4380_77976,293,4380_25078,Farranree,69197-00017-1,0,4380_7778208_2030223,4380_453 -4380_77976,290,4380_25079,Farranree,69199-00015-1,0,4380_7778208_2030223,4380_453 -4380_77976,294,4380_25080,Farranree,69203-00018-1,0,4380_7778208_2030223,4380_453 -4380_77976,295,4380_25081,Farranree,69195-00019-1,0,4380_7778208_2030223,4380_453 -4380_77976,296,4380_25082,Farranree,68571-00021-1,0,4380_7778208_2030201,4380_455 -4380_77976,297,4380_25084,Farranree,68714-00008-1,0,4380_7778208_2030204,4380_453 -4380_77976,285,4380_25091,Farranree,69376-00009-1,0,4380_7778208_2030224,4380_453 -4380_77976,286,4380_25092,Farranree,69374-00010-1,0,4380_7778208_2030224,4380_453 -4380_77976,288,4380_25093,Farranree,69382-00011-1,0,4380_7778208_2030224,4380_453 -4380_77976,287,4380_25094,Farranree,69380-00012-1,0,4380_7778208_2030224,4380_453 -4380_77976,291,4380_25095,Farranree,68620-00013-1,0,4380_7778208_2030202,4380_455 -4380_77976,289,4380_25096,Farranree,69378-00014-1,0,4380_7778208_2030224,4380_453 -4380_77976,292,4380_25097,Farranree,69375-00016-1,0,4380_7778208_2030224,4380_453 -4380_77976,293,4380_25098,Farranree,69383-00017-1,0,4380_7778208_2030224,4380_453 -4380_77976,290,4380_25099,Farranree,69377-00015-1,0,4380_7778208_2030224,4380_453 -4380_77976,294,4380_25100,Farranree,69381-00018-1,0,4380_7778208_2030224,4380_453 -4380_77976,295,4380_25101,Farranree,69379-00019-1,0,4380_7778208_2030224,4380_453 -4380_77976,296,4380_25102,Farranree,68621-00021-1,0,4380_7778208_2030202,4380_455 -4380_77976,297,4380_25104,Farranree,68572-00008-1,0,4380_7778208_2030201,4380_453 -4380_77976,285,4380_25111,Farranree,69026-00009-1,0,4380_7778208_2030222,4380_453 -4380_77976,286,4380_25112,Farranree,69030-00010-1,0,4380_7778208_2030222,4380_453 -4380_77976,288,4380_25113,Farranree,69024-00011-1,0,4380_7778208_2030222,4380_453 -4380_77976,287,4380_25114,Farranree,69028-00012-1,0,4380_7778208_2030222,4380_453 -4380_77976,291,4380_25115,Farranree,68669-00013-1,0,4380_7778208_2030203,4380_455 -4380_77976,289,4380_25116,Farranree,69032-00014-1,0,4380_7778208_2030222,4380_453 -4380_77976,292,4380_25117,Farranree,69031-00016-1,0,4380_7778208_2030222,4380_453 -4380_77976,293,4380_25118,Farranree,69025-00017-1,0,4380_7778208_2030222,4380_453 -4380_77976,290,4380_25119,Farranree,69027-00015-1,0,4380_7778208_2030222,4380_453 -4380_77976,294,4380_25120,Farranree,69029-00018-1,0,4380_7778208_2030222,4380_453 -4380_77976,295,4380_25121,Farranree,69033-00019-1,0,4380_7778208_2030222,4380_453 -4380_77976,296,4380_25122,Farranree,68670-00021-1,0,4380_7778208_2030203,4380_455 -4380_77976,297,4380_25124,Farranree,68671-00008-1,0,4380_7778208_2030203,4380_453 -4380_77947,285,4380_2513,Drop Off,51469-00009-1,1,4380_7778208_1011110,4380_28 -4380_77976,285,4380_25131,Farranree,69544-00009-1,0,4380_7778208_2030225,4380_453 -4380_77976,286,4380_25132,Farranree,69548-00010-1,0,4380_7778208_2030225,4380_453 -4380_77976,288,4380_25133,Farranree,69552-00011-1,0,4380_7778208_2030225,4380_453 -4380_77976,287,4380_25134,Farranree,69550-00012-1,0,4380_7778208_2030225,4380_453 -4380_77976,291,4380_25135,Farranree,68718-00013-1,0,4380_7778208_2030204,4380_455 -4380_77976,289,4380_25136,Farranree,69546-00014-1,0,4380_7778208_2030225,4380_453 -4380_77976,292,4380_25137,Farranree,69549-00016-1,0,4380_7778208_2030225,4380_453 -4380_77976,293,4380_25138,Farranree,69553-00017-1,0,4380_7778208_2030225,4380_453 -4380_77976,290,4380_25139,Farranree,69545-00015-1,0,4380_7778208_2030225,4380_453 -4380_77947,286,4380_2514,Drop Off,51463-00010-1,1,4380_7778208_1011110,4380_28 -4380_77976,294,4380_25140,Farranree,69551-00018-1,0,4380_7778208_2030225,4380_453 -4380_77976,295,4380_25141,Farranree,69547-00019-1,0,4380_7778208_2030225,4380_453 -4380_77976,296,4380_25142,Farranree,68719-00021-1,0,4380_7778208_2030204,4380_455 -4380_77976,297,4380_25144,Farranree,68625-00008-1,0,4380_7778208_2030202,4380_453 -4380_77947,297,4380_2515,Drop Off,51314-00008-1,1,4380_7778208_1011108,4380_30 -4380_77976,285,4380_25151,Farranree,69218-00009-1,0,4380_7778208_2030223,4380_453 -4380_77976,286,4380_25152,Farranree,69222-00010-1,0,4380_7778208_2030223,4380_453 -4380_77976,288,4380_25153,Farranree,69220-00011-1,0,4380_7778208_2030223,4380_453 -4380_77976,287,4380_25154,Farranree,69214-00012-1,0,4380_7778208_2030223,4380_453 -4380_77976,291,4380_25155,Farranree,68576-00013-1,0,4380_7778208_2030201,4380_453 -4380_77976,289,4380_25156,Farranree,69216-00014-1,0,4380_7778208_2030223,4380_453 -4380_77976,292,4380_25157,Farranree,69223-00016-1,0,4380_7778208_2030223,4380_453 -4380_77976,293,4380_25158,Farranree,69221-00017-1,0,4380_7778208_2030223,4380_453 -4380_77976,290,4380_25159,Farranree,69219-00015-1,0,4380_7778208_2030223,4380_453 -4380_77947,288,4380_2516,Drop Off,51461-00011-1,1,4380_7778208_1011110,4380_28 -4380_77976,294,4380_25160,Farranree,69215-00018-1,0,4380_7778208_2030223,4380_453 -4380_77976,295,4380_25161,Farranree,69217-00019-1,0,4380_7778208_2030223,4380_453 -4380_77976,296,4380_25162,Farranree,68577-00021-1,0,4380_7778208_2030201,4380_453 -4380_77976,297,4380_25164,Farranree,68720-00008-1,0,4380_7778208_2030204,4380_453 -4380_77947,287,4380_2517,Drop Off,51465-00012-1,1,4380_7778208_1011110,4380_28 -4380_77976,285,4380_25171,Farranree,69394-00009-1,0,4380_7778208_2030224,4380_453 -4380_77976,286,4380_25172,Farranree,69398-00010-1,0,4380_7778208_2030224,4380_453 -4380_77976,288,4380_25173,Farranree,69402-00011-1,0,4380_7778208_2030224,4380_453 -4380_77976,287,4380_25174,Farranree,69400-00012-1,0,4380_7778208_2030224,4380_453 -4380_77976,291,4380_25175,Farranree,68626-00013-1,0,4380_7778208_2030202,4380_453 -4380_77976,289,4380_25176,Farranree,69396-00014-1,0,4380_7778208_2030224,4380_453 -4380_77976,292,4380_25177,Farranree,69399-00016-1,0,4380_7778208_2030224,4380_453 -4380_77976,293,4380_25178,Farranree,69403-00017-1,0,4380_7778208_2030224,4380_453 -4380_77976,290,4380_25179,Farranree,69395-00015-1,0,4380_7778208_2030224,4380_453 -4380_77947,289,4380_2518,Drop Off,51467-00014-1,1,4380_7778208_1011110,4380_28 -4380_77976,294,4380_25180,Farranree,69401-00018-1,0,4380_7778208_2030224,4380_453 -4380_77976,295,4380_25181,Farranree,69397-00019-1,0,4380_7778208_2030224,4380_453 -4380_77976,296,4380_25182,Farranree,68627-00021-1,0,4380_7778208_2030202,4380_453 -4380_77976,297,4380_25184,Farranree,68578-00008-1,0,4380_7778208_2030201,4380_453 -4380_77947,290,4380_2519,Drop Off,51470-00015-1,1,4380_7778208_1011110,4380_28 -4380_77976,285,4380_25191,Farranree,69052-00009-1,0,4380_7778208_2030222,4380_453 -4380_77976,286,4380_25192,Farranree,69046-00010-1,0,4380_7778208_2030222,4380_453 -4380_77976,288,4380_25193,Farranree,69048-00011-1,0,4380_7778208_2030222,4380_453 -4380_77976,287,4380_25194,Farranree,69050-00012-1,0,4380_7778208_2030222,4380_453 -4380_77976,291,4380_25195,Farranree,68675-00013-1,0,4380_7778208_2030203,4380_453 -4380_77976,289,4380_25196,Farranree,69044-00014-1,0,4380_7778208_2030222,4380_453 -4380_77976,292,4380_25197,Farranree,69047-00016-1,0,4380_7778208_2030222,4380_453 -4380_77976,293,4380_25198,Farranree,69049-00017-1,0,4380_7778208_2030222,4380_453 -4380_77976,290,4380_25199,Farranree,69053-00015-1,0,4380_7778208_2030222,4380_453 -4380_77946,285,4380_252,Dundalk,50439-00009-1,0,4380_7778208_1000914,4380_1 -4380_77947,291,4380_2520,Drop Off,50822-00013-1,1,4380_7778208_1011103,4380_32 -4380_77976,294,4380_25200,Farranree,69051-00018-1,0,4380_7778208_2030222,4380_453 -4380_77976,295,4380_25201,Farranree,69045-00019-1,0,4380_7778208_2030222,4380_453 -4380_77976,296,4380_25202,Farranree,68676-00021-1,0,4380_7778208_2030203,4380_453 -4380_77976,297,4380_25204,Farranree,68677-00008-1,0,4380_7778208_2030203,4380_453 -4380_77947,292,4380_2521,Drop Off,51464-00016-1,1,4380_7778208_1011110,4380_28 -4380_77976,285,4380_25211,Farranree,69566-00009-1,0,4380_7778208_2030225,4380_453 -4380_77976,286,4380_25212,Farranree,69568-00010-1,0,4380_7778208_2030225,4380_453 -4380_77976,288,4380_25213,Farranree,69570-00011-1,0,4380_7778208_2030225,4380_453 -4380_77976,287,4380_25214,Farranree,69572-00012-1,0,4380_7778208_2030225,4380_453 -4380_77976,291,4380_25215,Farranree,68724-00013-1,0,4380_7778208_2030204,4380_453 -4380_77976,289,4380_25216,Farranree,69564-00014-1,0,4380_7778208_2030225,4380_453 -4380_77976,292,4380_25217,Farranree,69569-00016-1,0,4380_7778208_2030225,4380_453 -4380_77976,293,4380_25218,Farranree,69571-00017-1,0,4380_7778208_2030225,4380_453 -4380_77976,290,4380_25219,Farranree,69567-00015-1,0,4380_7778208_2030225,4380_453 -4380_77947,293,4380_2522,Drop Off,51462-00017-1,1,4380_7778208_1011110,4380_28 -4380_77976,294,4380_25220,Farranree,69573-00018-1,0,4380_7778208_2030225,4380_453 -4380_77976,295,4380_25221,Farranree,69565-00019-1,0,4380_7778208_2030225,4380_453 -4380_77976,296,4380_25222,Farranree,68725-00021-1,0,4380_7778208_2030204,4380_453 -4380_77976,297,4380_25224,Farranree,68631-00008-1,0,4380_7778208_2030202,4380_453 -4380_77947,294,4380_2523,Drop Off,51466-00018-1,1,4380_7778208_1011110,4380_28 -4380_77976,285,4380_25231,Farranree,69238-00009-1,0,4380_7778208_2030223,4380_453 -4380_77976,286,4380_25232,Farranree,69242-00010-1,0,4380_7778208_2030223,4380_453 -4380_77976,288,4380_25233,Farranree,69236-00011-1,0,4380_7778208_2030223,4380_453 -4380_77976,287,4380_25234,Farranree,69234-00012-1,0,4380_7778208_2030223,4380_453 -4380_77976,291,4380_25235,Farranree,68582-00013-1,0,4380_7778208_2030201,4380_453 -4380_77976,289,4380_25236,Farranree,69240-00014-1,0,4380_7778208_2030223,4380_453 -4380_77976,292,4380_25237,Farranree,69243-00016-1,0,4380_7778208_2030223,4380_453 -4380_77976,293,4380_25238,Farranree,69237-00017-1,0,4380_7778208_2030223,4380_453 -4380_77976,290,4380_25239,Farranree,69239-00015-1,0,4380_7778208_2030223,4380_453 -4380_77947,295,4380_2524,Drop Off,51468-00019-1,1,4380_7778208_1011110,4380_28 -4380_77976,294,4380_25240,Farranree,69235-00018-1,0,4380_7778208_2030223,4380_453 -4380_77976,295,4380_25241,Farranree,69241-00019-1,0,4380_7778208_2030223,4380_453 -4380_77976,296,4380_25242,Farranree,68583-00021-1,0,4380_7778208_2030201,4380_453 -4380_77976,297,4380_25244,Farranree,68726-00008-1,0,4380_7778208_2030204,4380_453 -4380_77947,296,4380_2525,Drop Off,50823-00021-1,1,4380_7778208_1011103,4380_32 -4380_77976,285,4380_25252,Farranree,69414-00009-1,0,4380_7778208_2030224,4380_453 -4380_77976,286,4380_25253,Farranree,69422-00010-1,0,4380_7778208_2030224,4380_453 -4380_77976,297,4380_25254,Farranree,68584-00008-1,0,4380_7778208_2030201,4380_453 -4380_77976,288,4380_25255,Farranree,69418-00011-1,0,4380_7778208_2030224,4380_453 -4380_77976,287,4380_25256,Farranree,69416-00012-1,0,4380_7778208_2030224,4380_453 -4380_77976,291,4380_25257,Farranree,68633-00013-1,0,4380_7778208_2030202,4380_453 -4380_77976,289,4380_25258,Farranree,69420-00014-1,0,4380_7778208_2030224,4380_453 -4380_77976,292,4380_25259,Farranree,69423-00016-1,0,4380_7778208_2030224,4380_453 -4380_77976,293,4380_25260,Farranree,69419-00017-1,0,4380_7778208_2030224,4380_453 -4380_77976,290,4380_25261,Farranree,69415-00015-1,0,4380_7778208_2030224,4380_453 -4380_77976,294,4380_25262,Farranree,69417-00018-1,0,4380_7778208_2030224,4380_453 -4380_77976,295,4380_25263,Farranree,69421-00019-1,0,4380_7778208_2030224,4380_453 -4380_77976,296,4380_25264,Farranree,68634-00021-1,0,4380_7778208_2030202,4380_453 -4380_77976,285,4380_25272,St. Patrick Street,69072-00009-1,0,4380_7778208_2030222,4380_454 -4380_77976,286,4380_25273,St. Patrick Street,69066-00010-1,0,4380_7778208_2030222,4380_454 -4380_77976,297,4380_25274,St. Patrick Street,68683-00008-1,0,4380_7778208_2030203,4380_454 -4380_77976,288,4380_25275,St. Patrick Street,69068-00011-1,0,4380_7778208_2030222,4380_454 -4380_77976,287,4380_25276,St. Patrick Street,69070-00012-1,0,4380_7778208_2030222,4380_454 -4380_77976,291,4380_25277,St. Patrick Street,68681-00013-1,0,4380_7778208_2030203,4380_454 -4380_77976,289,4380_25278,St. Patrick Street,69064-00014-1,0,4380_7778208_2030222,4380_454 -4380_77976,292,4380_25279,St. Patrick Street,69067-00016-1,0,4380_7778208_2030222,4380_454 -4380_77976,293,4380_25280,St. Patrick Street,69069-00017-1,0,4380_7778208_2030222,4380_454 -4380_77976,290,4380_25281,St. Patrick Street,69073-00015-1,0,4380_7778208_2030222,4380_454 -4380_77976,294,4380_25282,St. Patrick Street,69071-00018-1,0,4380_7778208_2030222,4380_454 -4380_77976,295,4380_25283,St. Patrick Street,69065-00019-1,0,4380_7778208_2030222,4380_454 -4380_77976,296,4380_25284,St. Patrick Street,68682-00021-1,0,4380_7778208_2030203,4380_454 -4380_77976,285,4380_25290,Ballyphehane,68766-00009-1,1,4380_7778208_2030221,4380_459 -4380_77976,286,4380_25291,Ballyphehane,68770-00010-1,1,4380_7778208_2030221,4380_459 -4380_77976,288,4380_25292,Ballyphehane,68764-00011-1,1,4380_7778208_2030221,4380_459 -4380_77976,287,4380_25293,Ballyphehane,68772-00012-1,1,4380_7778208_2030221,4380_459 -4380_77976,289,4380_25294,Ballyphehane,68768-00014-1,1,4380_7778208_2030221,4380_459 -4380_77976,292,4380_25295,Ballyphehane,68771-00016-1,1,4380_7778208_2030221,4380_459 -4380_77976,293,4380_25296,Ballyphehane,68765-00017-1,1,4380_7778208_2030221,4380_459 -4380_77976,290,4380_25297,Ballyphehane,68767-00015-1,1,4380_7778208_2030221,4380_459 -4380_77976,294,4380_25298,Ballyphehane,68773-00018-1,1,4380_7778208_2030221,4380_459 -4380_77976,295,4380_25299,Ballyphehane,68769-00019-1,1,4380_7778208_2030221,4380_459 -4380_77946,286,4380_253,Dundalk,50437-00010-1,0,4380_7778208_1000914,4380_1 -4380_77976,285,4380_25305,Ballyphehane,68894-00009-1,1,4380_7778208_2030222,4380_459 -4380_77976,286,4380_25306,Ballyphehane,68902-00010-1,1,4380_7778208_2030222,4380_459 -4380_77976,288,4380_25307,Ballyphehane,68896-00011-1,1,4380_7778208_2030222,4380_459 -4380_77976,287,4380_25308,Ballyphehane,68900-00012-1,1,4380_7778208_2030222,4380_459 -4380_77976,289,4380_25309,Ballyphehane,68898-00014-1,1,4380_7778208_2030222,4380_459 -4380_77976,292,4380_25310,Ballyphehane,68903-00016-1,1,4380_7778208_2030222,4380_459 -4380_77976,293,4380_25311,Ballyphehane,68897-00017-1,1,4380_7778208_2030222,4380_459 -4380_77976,290,4380_25312,Ballyphehane,68895-00015-1,1,4380_7778208_2030222,4380_459 -4380_77976,294,4380_25313,Ballyphehane,68901-00018-1,1,4380_7778208_2030222,4380_459 -4380_77976,295,4380_25314,Ballyphehane,68899-00019-1,1,4380_7778208_2030222,4380_459 -4380_77976,285,4380_25321,Ballyphehane,69084-00009-1,1,4380_7778208_2030223,4380_457 -4380_77976,286,4380_25322,Ballyphehane,69086-00010-1,1,4380_7778208_2030223,4380_457 -4380_77976,288,4380_25323,Ballyphehane,69090-00011-1,1,4380_7778208_2030223,4380_457 -4380_77976,287,4380_25324,Ballyphehane,69092-00012-1,1,4380_7778208_2030223,4380_457 -4380_77976,291,4380_25325,Ballyphehane,68538-00013-1,1,4380_7778208_2030201,4380_460 -4380_77976,289,4380_25326,Ballyphehane,69088-00014-1,1,4380_7778208_2030223,4380_457 -4380_77976,292,4380_25327,Ballyphehane,69087-00016-1,1,4380_7778208_2030223,4380_457 -4380_77976,293,4380_25328,Ballyphehane,69091-00017-1,1,4380_7778208_2030223,4380_457 -4380_77976,290,4380_25329,Ballyphehane,69085-00015-1,1,4380_7778208_2030223,4380_457 -4380_77947,285,4380_2533,Drop Off,50724-00009-1,1,4380_7778208_1011102,4380_28 -4380_77976,294,4380_25330,Ballyphehane,69093-00018-1,1,4380_7778208_2030223,4380_457 -4380_77976,295,4380_25331,Ballyphehane,69089-00019-1,1,4380_7778208_2030223,4380_457 -4380_77976,296,4380_25332,Ballyphehane,68539-00021-1,1,4380_7778208_2030201,4380_460 -4380_77976,285,4380_25338,Ballyphehane,69592-00009-1,1,4380_7778208_2030226,4380_459 -4380_77976,286,4380_25339,Ballyphehane,69590-00010-1,1,4380_7778208_2030226,4380_459 -4380_77947,286,4380_2534,Drop Off,50718-00010-1,1,4380_7778208_1011102,4380_28 -4380_77976,288,4380_25340,Ballyphehane,69584-00011-1,1,4380_7778208_2030226,4380_459 -4380_77976,287,4380_25341,Ballyphehane,69588-00012-1,1,4380_7778208_2030226,4380_459 -4380_77976,289,4380_25342,Ballyphehane,69586-00014-1,1,4380_7778208_2030226,4380_459 -4380_77976,292,4380_25343,Ballyphehane,69591-00016-1,1,4380_7778208_2030226,4380_459 -4380_77976,293,4380_25344,Ballyphehane,69585-00017-1,1,4380_7778208_2030226,4380_459 -4380_77976,290,4380_25345,Ballyphehane,69593-00015-1,1,4380_7778208_2030226,4380_459 -4380_77976,294,4380_25346,Ballyphehane,69589-00018-1,1,4380_7778208_2030226,4380_459 -4380_77976,295,4380_25347,Ballyphehane,69587-00019-1,1,4380_7778208_2030226,4380_459 -4380_77947,297,4380_2535,Drop Off,51036-00008-1,1,4380_7778208_1011105,4380_30 -4380_77976,285,4380_25353,Ballyphehane,69266-00009-1,1,4380_7778208_2030224,4380_457 -4380_77976,286,4380_25354,Ballyphehane,69272-00010-1,1,4380_7778208_2030224,4380_457 -4380_77976,288,4380_25355,Ballyphehane,69270-00011-1,1,4380_7778208_2030224,4380_457 -4380_77976,287,4380_25356,Ballyphehane,69268-00012-1,1,4380_7778208_2030224,4380_457 -4380_77976,289,4380_25357,Ballyphehane,69264-00014-1,1,4380_7778208_2030224,4380_457 -4380_77976,292,4380_25358,Ballyphehane,69273-00016-1,1,4380_7778208_2030224,4380_457 -4380_77976,293,4380_25359,Ballyphehane,69271-00017-1,1,4380_7778208_2030224,4380_457 -4380_77947,287,4380_2536,Drop Off,50720-00012-1,1,4380_7778208_1011102,4380_28 -4380_77976,290,4380_25360,Ballyphehane,69267-00015-1,1,4380_7778208_2030224,4380_457 -4380_77976,294,4380_25361,Ballyphehane,69269-00018-1,1,4380_7778208_2030224,4380_457 -4380_77976,295,4380_25362,Ballyphehane,69265-00019-1,1,4380_7778208_2030224,4380_457 -4380_77976,291,4380_25364,Ballyphehane,68589-00013-1,1,4380_7778208_2030202,4380_457 -4380_77976,296,4380_25365,Ballyphehane,68590-00021-1,1,4380_7778208_2030202,4380_457 -4380_77947,288,4380_2537,Drop Off,50716-00011-1,1,4380_7778208_1011102,4380_28 -4380_77976,285,4380_25371,Ballyphehane,68790-00009-1,1,4380_7778208_2030221,4380_457 -4380_77976,286,4380_25372,Ballyphehane,68784-00010-1,1,4380_7778208_2030221,4380_457 -4380_77976,288,4380_25373,Ballyphehane,68788-00011-1,1,4380_7778208_2030221,4380_457 -4380_77976,287,4380_25374,Ballyphehane,68786-00012-1,1,4380_7778208_2030221,4380_457 -4380_77976,289,4380_25375,Ballyphehane,68792-00014-1,1,4380_7778208_2030221,4380_457 -4380_77976,292,4380_25376,Ballyphehane,68785-00016-1,1,4380_7778208_2030221,4380_457 -4380_77976,293,4380_25377,Ballyphehane,68789-00017-1,1,4380_7778208_2030221,4380_457 -4380_77976,290,4380_25378,Ballyphehane,68791-00015-1,1,4380_7778208_2030221,4380_457 -4380_77976,294,4380_25379,Ballyphehane,68787-00018-1,1,4380_7778208_2030221,4380_457 -4380_77947,289,4380_2538,Drop Off,50722-00014-1,1,4380_7778208_1011102,4380_28 -4380_77976,295,4380_25380,Ballyphehane,68793-00019-1,1,4380_7778208_2030221,4380_457 -4380_77976,285,4380_25387,Ballyphehane,68918-00009-1,1,4380_7778208_2030222,4380_457 -4380_77976,286,4380_25388,Ballyphehane,68916-00010-1,1,4380_7778208_2030222,4380_457 -4380_77976,288,4380_25389,Ballyphehane,68922-00011-1,1,4380_7778208_2030222,4380_457 -4380_77947,290,4380_2539,Drop Off,50725-00015-1,1,4380_7778208_1011102,4380_28 -4380_77976,287,4380_25390,Ballyphehane,68920-00012-1,1,4380_7778208_2030222,4380_457 -4380_77976,291,4380_25391,Ballyphehane,68637-00013-1,1,4380_7778208_2030203,4380_460 -4380_77976,289,4380_25392,Ballyphehane,68914-00014-1,1,4380_7778208_2030222,4380_457 -4380_77976,292,4380_25393,Ballyphehane,68917-00016-1,1,4380_7778208_2030222,4380_457 -4380_77976,293,4380_25394,Ballyphehane,68923-00017-1,1,4380_7778208_2030222,4380_457 -4380_77976,290,4380_25395,Ballyphehane,68919-00015-1,1,4380_7778208_2030222,4380_457 -4380_77976,294,4380_25396,Ballyphehane,68921-00018-1,1,4380_7778208_2030222,4380_457 -4380_77976,295,4380_25397,Ballyphehane,68915-00019-1,1,4380_7778208_2030222,4380_457 -4380_77976,296,4380_25398,Ballyphehane,68638-00021-1,1,4380_7778208_2030203,4380_460 -4380_77946,297,4380_254,Dundalk,50252-00008-1,0,4380_7778208_1000910,4380_2 -4380_77947,291,4380_2540,Drop Off,50943-00013-1,1,4380_7778208_1011104,4380_32 -4380_77976,285,4380_25404,Ballyphehane,69442-00009-1,1,4380_7778208_2030225,4380_457 -4380_77976,286,4380_25405,Ballyphehane,69434-00010-1,1,4380_7778208_2030225,4380_457 -4380_77976,288,4380_25406,Ballyphehane,69436-00011-1,1,4380_7778208_2030225,4380_457 -4380_77976,287,4380_25407,Ballyphehane,69438-00012-1,1,4380_7778208_2030225,4380_457 -4380_77976,289,4380_25408,Ballyphehane,69440-00014-1,1,4380_7778208_2030225,4380_457 -4380_77976,292,4380_25409,Ballyphehane,69435-00016-1,1,4380_7778208_2030225,4380_457 -4380_77947,292,4380_2541,Drop Off,50719-00016-1,1,4380_7778208_1011102,4380_28 -4380_77976,293,4380_25410,Ballyphehane,69437-00017-1,1,4380_7778208_2030225,4380_457 -4380_77976,290,4380_25411,Ballyphehane,69443-00015-1,1,4380_7778208_2030225,4380_457 -4380_77976,294,4380_25412,Ballyphehane,69439-00018-1,1,4380_7778208_2030225,4380_457 -4380_77976,295,4380_25413,Ballyphehane,69441-00019-1,1,4380_7778208_2030225,4380_457 -4380_77976,291,4380_25415,Ballyphehane,68686-00013-1,1,4380_7778208_2030204,4380_457 -4380_77976,296,4380_25416,Ballyphehane,68687-00021-1,1,4380_7778208_2030204,4380_457 -4380_77947,293,4380_2542,Drop Off,50717-00017-1,1,4380_7778208_1011102,4380_28 -4380_77976,285,4380_25422,Ballyphehane,69606-00009-1,1,4380_7778208_2030226,4380_457 -4380_77976,286,4380_25423,Ballyphehane,69604-00010-1,1,4380_7778208_2030226,4380_457 -4380_77976,288,4380_25424,Ballyphehane,69610-00011-1,1,4380_7778208_2030226,4380_457 -4380_77976,287,4380_25425,Ballyphehane,69612-00012-1,1,4380_7778208_2030226,4380_457 -4380_77976,289,4380_25426,Ballyphehane,69608-00014-1,1,4380_7778208_2030226,4380_457 -4380_77976,292,4380_25427,Ballyphehane,69605-00016-1,1,4380_7778208_2030226,4380_457 -4380_77976,293,4380_25428,Ballyphehane,69611-00017-1,1,4380_7778208_2030226,4380_457 -4380_77976,290,4380_25429,Ballyphehane,69607-00015-1,1,4380_7778208_2030226,4380_457 -4380_77947,294,4380_2543,Drop Off,50721-00018-1,1,4380_7778208_1011102,4380_28 -4380_77976,294,4380_25430,Ballyphehane,69613-00018-1,1,4380_7778208_2030226,4380_457 -4380_77976,295,4380_25431,Ballyphehane,69609-00019-1,1,4380_7778208_2030226,4380_457 -4380_77976,285,4380_25438,Ballyphehane,69112-00009-1,1,4380_7778208_2030223,4380_457 -4380_77976,286,4380_25439,Ballyphehane,69104-00010-1,1,4380_7778208_2030223,4380_457 -4380_77947,295,4380_2544,Drop Off,50723-00019-1,1,4380_7778208_1011102,4380_28 -4380_77976,288,4380_25440,Ballyphehane,69110-00011-1,1,4380_7778208_2030223,4380_457 -4380_77976,287,4380_25441,Ballyphehane,69108-00012-1,1,4380_7778208_2030223,4380_457 -4380_77976,291,4380_25442,Ballyphehane,68542-00013-1,1,4380_7778208_2030201,4380_460 -4380_77976,289,4380_25443,Ballyphehane,69106-00014-1,1,4380_7778208_2030223,4380_457 -4380_77976,292,4380_25444,Ballyphehane,69105-00016-1,1,4380_7778208_2030223,4380_457 -4380_77976,293,4380_25445,Ballyphehane,69111-00017-1,1,4380_7778208_2030223,4380_457 -4380_77976,290,4380_25446,Ballyphehane,69113-00015-1,1,4380_7778208_2030223,4380_457 -4380_77976,294,4380_25447,Ballyphehane,69109-00018-1,1,4380_7778208_2030223,4380_457 -4380_77976,295,4380_25448,Ballyphehane,69107-00019-1,1,4380_7778208_2030223,4380_457 -4380_77976,296,4380_25449,Ballyphehane,68543-00021-1,1,4380_7778208_2030201,4380_460 -4380_77947,296,4380_2545,Drop Off,50944-00021-1,1,4380_7778208_1011104,4380_32 -4380_77976,285,4380_25455,Ballyphehane,69292-00009-1,1,4380_7778208_2030224,4380_457 -4380_77976,286,4380_25456,Ballyphehane,69288-00010-1,1,4380_7778208_2030224,4380_457 -4380_77976,288,4380_25457,Ballyphehane,69284-00011-1,1,4380_7778208_2030224,4380_457 -4380_77976,287,4380_25458,Ballyphehane,69290-00012-1,1,4380_7778208_2030224,4380_457 -4380_77976,289,4380_25459,Ballyphehane,69286-00014-1,1,4380_7778208_2030224,4380_457 -4380_77976,292,4380_25460,Ballyphehane,69289-00016-1,1,4380_7778208_2030224,4380_457 -4380_77976,293,4380_25461,Ballyphehane,69285-00017-1,1,4380_7778208_2030224,4380_457 -4380_77976,290,4380_25462,Ballyphehane,69293-00015-1,1,4380_7778208_2030224,4380_457 -4380_77976,294,4380_25463,Ballyphehane,69291-00018-1,1,4380_7778208_2030224,4380_457 -4380_77976,295,4380_25464,Ballyphehane,69287-00019-1,1,4380_7778208_2030224,4380_457 -4380_77976,291,4380_25466,Ballyphehane,68593-00013-1,1,4380_7778208_2030202,4380_457 -4380_77976,296,4380_25467,Ballyphehane,68594-00021-1,1,4380_7778208_2030202,4380_457 -4380_77976,297,4380_25469,Ballyphehane,68545-00008-1,1,4380_7778208_2030201,4380_457 -4380_77976,285,4380_25475,Ballyphehane,68808-00009-1,1,4380_7778208_2030221,4380_457 -4380_77976,286,4380_25476,Ballyphehane,68810-00010-1,1,4380_7778208_2030221,4380_457 -4380_77976,288,4380_25477,Ballyphehane,68806-00011-1,1,4380_7778208_2030221,4380_457 -4380_77976,287,4380_25478,Ballyphehane,68804-00012-1,1,4380_7778208_2030221,4380_457 -4380_77976,289,4380_25479,Ballyphehane,68812-00014-1,1,4380_7778208_2030221,4380_457 -4380_77976,292,4380_25480,Ballyphehane,68811-00016-1,1,4380_7778208_2030221,4380_457 -4380_77976,293,4380_25481,Ballyphehane,68807-00017-1,1,4380_7778208_2030221,4380_457 -4380_77976,290,4380_25482,Ballyphehane,68809-00015-1,1,4380_7778208_2030221,4380_457 -4380_77976,294,4380_25483,Ballyphehane,68805-00018-1,1,4380_7778208_2030221,4380_457 -4380_77976,295,4380_25484,Ballyphehane,68813-00019-1,1,4380_7778208_2030221,4380_457 -4380_77976,285,4380_25491,Ballyphehane,68942-00009-1,1,4380_7778208_2030222,4380_457 -4380_77976,286,4380_25492,Ballyphehane,68936-00010-1,1,4380_7778208_2030222,4380_457 -4380_77976,288,4380_25493,Ballyphehane,68938-00011-1,1,4380_7778208_2030222,4380_457 -4380_77976,287,4380_25494,Ballyphehane,68934-00012-1,1,4380_7778208_2030222,4380_457 -4380_77976,291,4380_25495,Ballyphehane,68642-00013-1,1,4380_7778208_2030203,4380_460 -4380_77976,289,4380_25496,Ballyphehane,68940-00014-1,1,4380_7778208_2030222,4380_457 -4380_77976,292,4380_25497,Ballyphehane,68937-00016-1,1,4380_7778208_2030222,4380_457 -4380_77976,293,4380_25498,Ballyphehane,68939-00017-1,1,4380_7778208_2030222,4380_457 -4380_77976,290,4380_25499,Ballyphehane,68943-00015-1,1,4380_7778208_2030222,4380_457 -4380_77946,287,4380_255,Dundalk,50443-00012-1,0,4380_7778208_1000914,4380_1 -4380_77976,294,4380_25500,Ballyphehane,68935-00018-1,1,4380_7778208_2030222,4380_457 -4380_77976,295,4380_25501,Ballyphehane,68941-00019-1,1,4380_7778208_2030222,4380_457 -4380_77976,296,4380_25502,Ballyphehane,68643-00021-1,1,4380_7778208_2030203,4380_460 -4380_77976,297,4380_25504,Ballyphehane,68644-00008-1,1,4380_7778208_2030203,4380_457 -4380_77976,291,4380_25506,Ballyphehane,68746-00013-1,1,4380_7778208_2030206,4380_459 -4380_77976,296,4380_25507,Ballyphehane,68747-00021-1,1,4380_7778208_2030206,4380_459 -4380_77976,285,4380_25513,Ballyphehane,69458-00009-1,1,4380_7778208_2030225,4380_457 -4380_77976,286,4380_25514,Ballyphehane,69456-00010-1,1,4380_7778208_2030225,4380_457 -4380_77976,288,4380_25515,Ballyphehane,69454-00011-1,1,4380_7778208_2030225,4380_457 -4380_77976,287,4380_25516,Ballyphehane,69462-00012-1,1,4380_7778208_2030225,4380_457 -4380_77976,289,4380_25517,Ballyphehane,69460-00014-1,1,4380_7778208_2030225,4380_457 -4380_77976,292,4380_25518,Ballyphehane,69457-00016-1,1,4380_7778208_2030225,4380_457 -4380_77976,293,4380_25519,Ballyphehane,69455-00017-1,1,4380_7778208_2030225,4380_457 -4380_77976,290,4380_25520,Ballyphehane,69459-00015-1,1,4380_7778208_2030225,4380_457 -4380_77976,294,4380_25521,Ballyphehane,69463-00018-1,1,4380_7778208_2030225,4380_457 -4380_77976,295,4380_25522,Ballyphehane,69461-00019-1,1,4380_7778208_2030225,4380_457 -4380_77976,291,4380_25524,Ballyphehane,68691-00013-1,1,4380_7778208_2030204,4380_457 -4380_77976,296,4380_25525,Ballyphehane,68692-00021-1,1,4380_7778208_2030204,4380_457 -4380_77976,297,4380_25527,Ballyphehane,68598-00008-1,1,4380_7778208_2030202,4380_457 -4380_77947,285,4380_2553,Drop Off,50953-00009-1,1,4380_7778208_1011104,4380_28 -4380_77976,285,4380_25533,Ballyphehane,69632-00009-1,1,4380_7778208_2030226,4380_457 -4380_77976,286,4380_25534,Ballyphehane,69628-00010-1,1,4380_7778208_2030226,4380_457 -4380_77976,288,4380_25535,Ballyphehane,69630-00011-1,1,4380_7778208_2030226,4380_457 -4380_77976,287,4380_25536,Ballyphehane,69626-00012-1,1,4380_7778208_2030226,4380_457 -4380_77976,289,4380_25537,Ballyphehane,69624-00014-1,1,4380_7778208_2030226,4380_457 -4380_77976,292,4380_25538,Ballyphehane,69629-00016-1,1,4380_7778208_2030226,4380_457 -4380_77976,293,4380_25539,Ballyphehane,69631-00017-1,1,4380_7778208_2030226,4380_457 -4380_77947,286,4380_2554,Drop Off,50945-00010-1,1,4380_7778208_1011104,4380_28 -4380_77976,290,4380_25540,Ballyphehane,69633-00015-1,1,4380_7778208_2030226,4380_457 -4380_77976,294,4380_25541,Ballyphehane,69627-00018-1,1,4380_7778208_2030226,4380_457 -4380_77976,295,4380_25542,Ballyphehane,69625-00019-1,1,4380_7778208_2030226,4380_457 -4380_77976,285,4380_25549,Ballyphehane,69132-00009-1,1,4380_7778208_2030223,4380_457 -4380_77947,297,4380_2555,Drop Off,51375-00008-1,1,4380_7778208_1011109,4380_30 -4380_77976,286,4380_25550,Ballyphehane,69130-00010-1,1,4380_7778208_2030223,4380_457 -4380_77976,288,4380_25551,Ballyphehane,69124-00011-1,1,4380_7778208_2030223,4380_457 -4380_77976,287,4380_25552,Ballyphehane,69128-00012-1,1,4380_7778208_2030223,4380_457 -4380_77976,291,4380_25553,Ballyphehane,68549-00013-1,1,4380_7778208_2030201,4380_460 -4380_77976,289,4380_25554,Ballyphehane,69126-00014-1,1,4380_7778208_2030223,4380_457 -4380_77976,292,4380_25555,Ballyphehane,69131-00016-1,1,4380_7778208_2030223,4380_457 -4380_77976,293,4380_25556,Ballyphehane,69125-00017-1,1,4380_7778208_2030223,4380_457 -4380_77976,290,4380_25557,Ballyphehane,69133-00015-1,1,4380_7778208_2030223,4380_457 -4380_77976,294,4380_25558,Ballyphehane,69129-00018-1,1,4380_7778208_2030223,4380_457 -4380_77976,295,4380_25559,Ballyphehane,69127-00019-1,1,4380_7778208_2030223,4380_457 -4380_77947,288,4380_2556,Drop Off,50947-00011-1,1,4380_7778208_1011104,4380_28 -4380_77976,296,4380_25560,Ballyphehane,68550-00021-1,1,4380_7778208_2030201,4380_460 -4380_77976,297,4380_25562,Ballyphehane,68693-00008-1,1,4380_7778208_2030204,4380_457 -4380_77976,291,4380_25564,Ballyphehane,68730-00013-1,1,4380_7778208_2030205,4380_459 -4380_77976,296,4380_25565,Ballyphehane,68731-00021-1,1,4380_7778208_2030205,4380_459 -4380_77947,287,4380_2557,Drop Off,50949-00012-1,1,4380_7778208_1011104,4380_28 -4380_77976,285,4380_25572,Ballyphehane,69308-00009-1,1,4380_7778208_2030224,4380_457 -4380_77976,286,4380_25573,Ballyphehane,69310-00010-1,1,4380_7778208_2030224,4380_457 -4380_77976,288,4380_25574,Ballyphehane,69304-00011-1,1,4380_7778208_2030224,4380_457 -4380_77976,287,4380_25575,Ballyphehane,69312-00012-1,1,4380_7778208_2030224,4380_457 -4380_77976,291,4380_25576,Ballyphehane,68599-00013-1,1,4380_7778208_2030202,4380_460 -4380_77976,289,4380_25577,Ballyphehane,69306-00014-1,1,4380_7778208_2030224,4380_457 -4380_77976,292,4380_25578,Ballyphehane,69311-00016-1,1,4380_7778208_2030224,4380_457 -4380_77976,293,4380_25579,Ballyphehane,69305-00017-1,1,4380_7778208_2030224,4380_457 -4380_77947,289,4380_2558,Drop Off,50951-00014-1,1,4380_7778208_1011104,4380_28 -4380_77976,290,4380_25580,Ballyphehane,69309-00015-1,1,4380_7778208_2030224,4380_457 -4380_77976,294,4380_25581,Ballyphehane,69313-00018-1,1,4380_7778208_2030224,4380_457 -4380_77976,295,4380_25582,Ballyphehane,69307-00019-1,1,4380_7778208_2030224,4380_457 -4380_77976,296,4380_25583,Ballyphehane,68600-00021-1,1,4380_7778208_2030202,4380_460 -4380_77976,297,4380_25585,Ballyphehane,68551-00008-1,1,4380_7778208_2030201,4380_457 -4380_77947,290,4380_2559,Drop Off,50954-00015-1,1,4380_7778208_1011104,4380_28 -4380_77976,285,4380_25592,Ballyphehane,68826-00009-1,1,4380_7778208_2030221,4380_457 -4380_77976,286,4380_25593,Ballyphehane,68830-00010-1,1,4380_7778208_2030221,4380_457 -4380_77976,288,4380_25594,Ballyphehane,68824-00011-1,1,4380_7778208_2030221,4380_457 -4380_77976,287,4380_25595,Ballyphehane,68828-00012-1,1,4380_7778208_2030221,4380_457 -4380_77976,291,4380_25596,Ballyphehane,68750-00013-1,1,4380_7778208_2030206,4380_460 -4380_77976,289,4380_25597,Ballyphehane,68832-00014-1,1,4380_7778208_2030221,4380_457 -4380_77976,292,4380_25598,Ballyphehane,68831-00016-1,1,4380_7778208_2030221,4380_457 -4380_77976,293,4380_25599,Ballyphehane,68825-00017-1,1,4380_7778208_2030221,4380_457 -4380_77946,288,4380_256,Dundalk,50445-00011-1,0,4380_7778208_1000914,4380_1 -4380_77947,291,4380_2560,Drop Off,50726-00013-1,1,4380_7778208_1011102,4380_32 -4380_77976,290,4380_25600,Ballyphehane,68827-00015-1,1,4380_7778208_2030221,4380_457 -4380_77976,294,4380_25601,Ballyphehane,68829-00018-1,1,4380_7778208_2030221,4380_457 -4380_77976,295,4380_25602,Ballyphehane,68833-00019-1,1,4380_7778208_2030221,4380_457 -4380_77976,296,4380_25603,Ballyphehane,68751-00021-1,1,4380_7778208_2030206,4380_460 -4380_77947,292,4380_2561,Drop Off,50946-00016-1,1,4380_7778208_1011104,4380_28 -4380_77976,285,4380_25610,Ballyphehane,68954-00009-1,1,4380_7778208_2030222,4380_457 -4380_77976,286,4380_25611,Ballyphehane,68962-00010-1,1,4380_7778208_2030222,4380_457 -4380_77976,288,4380_25612,Ballyphehane,68960-00011-1,1,4380_7778208_2030222,4380_457 -4380_77976,287,4380_25613,Ballyphehane,68958-00012-1,1,4380_7778208_2030222,4380_457 -4380_77976,291,4380_25614,Ballyphehane,68648-00013-1,1,4380_7778208_2030203,4380_460 -4380_77976,289,4380_25615,Ballyphehane,68956-00014-1,1,4380_7778208_2030222,4380_457 -4380_77976,292,4380_25616,Ballyphehane,68963-00016-1,1,4380_7778208_2030222,4380_457 -4380_77976,293,4380_25617,Ballyphehane,68961-00017-1,1,4380_7778208_2030222,4380_457 -4380_77976,290,4380_25618,Ballyphehane,68955-00015-1,1,4380_7778208_2030222,4380_457 -4380_77976,294,4380_25619,Ballyphehane,68959-00018-1,1,4380_7778208_2030222,4380_457 -4380_77947,293,4380_2562,Drop Off,50948-00017-1,1,4380_7778208_1011104,4380_28 -4380_77976,295,4380_25620,Ballyphehane,68957-00019-1,1,4380_7778208_2030222,4380_457 -4380_77976,296,4380_25621,Ballyphehane,68649-00021-1,1,4380_7778208_2030203,4380_460 -4380_77976,297,4380_25623,Ballyphehane,68650-00008-1,1,4380_7778208_2030203,4380_457 -4380_77947,294,4380_2563,Drop Off,50950-00018-1,1,4380_7778208_1011104,4380_28 -4380_77976,285,4380_25630,Ballyphehane,69476-00009-1,1,4380_7778208_2030225,4380_457 -4380_77976,286,4380_25631,Ballyphehane,69480-00010-1,1,4380_7778208_2030225,4380_457 -4380_77976,288,4380_25632,Ballyphehane,69478-00011-1,1,4380_7778208_2030225,4380_457 -4380_77976,287,4380_25633,Ballyphehane,69474-00012-1,1,4380_7778208_2030225,4380_457 -4380_77976,291,4380_25634,Ballyphehane,68697-00013-1,1,4380_7778208_2030204,4380_460 -4380_77976,289,4380_25635,Ballyphehane,69482-00014-1,1,4380_7778208_2030225,4380_457 -4380_77976,292,4380_25636,Ballyphehane,69481-00016-1,1,4380_7778208_2030225,4380_457 -4380_77976,293,4380_25637,Ballyphehane,69479-00017-1,1,4380_7778208_2030225,4380_457 -4380_77976,290,4380_25638,Ballyphehane,69477-00015-1,1,4380_7778208_2030225,4380_457 -4380_77976,294,4380_25639,Ballyphehane,69475-00018-1,1,4380_7778208_2030225,4380_457 -4380_77947,295,4380_2564,Drop Off,50952-00019-1,1,4380_7778208_1011104,4380_28 -4380_77976,295,4380_25640,Ballyphehane,69483-00019-1,1,4380_7778208_2030225,4380_457 -4380_77976,296,4380_25641,Ballyphehane,68698-00021-1,1,4380_7778208_2030204,4380_460 -4380_77976,297,4380_25643,Ballyphehane,68604-00008-1,1,4380_7778208_2030202,4380_457 -4380_77947,296,4380_2565,Drop Off,50727-00021-1,1,4380_7778208_1011102,4380_32 -4380_77976,285,4380_25650,Ballyphehane,69644-00009-1,1,4380_7778208_2030226,4380_457 -4380_77976,286,4380_25651,Ballyphehane,69646-00010-1,1,4380_7778208_2030226,4380_457 -4380_77976,288,4380_25652,Ballyphehane,69650-00011-1,1,4380_7778208_2030226,4380_457 -4380_77976,287,4380_25653,Ballyphehane,69648-00012-1,1,4380_7778208_2030226,4380_457 -4380_77976,291,4380_25654,Ballyphehane,68734-00013-1,1,4380_7778208_2030205,4380_460 -4380_77976,289,4380_25655,Ballyphehane,69652-00014-1,1,4380_7778208_2030226,4380_457 -4380_77976,292,4380_25656,Ballyphehane,69647-00016-1,1,4380_7778208_2030226,4380_457 -4380_77976,293,4380_25657,Ballyphehane,69651-00017-1,1,4380_7778208_2030226,4380_457 -4380_77976,290,4380_25658,Ballyphehane,69645-00015-1,1,4380_7778208_2030226,4380_457 -4380_77976,294,4380_25659,Ballyphehane,69649-00018-1,1,4380_7778208_2030226,4380_457 -4380_77976,295,4380_25660,Ballyphehane,69653-00019-1,1,4380_7778208_2030226,4380_457 -4380_77976,296,4380_25661,Ballyphehane,68735-00021-1,1,4380_7778208_2030205,4380_460 -4380_77976,285,4380_25668,Ballyphehane,69150-00009-1,1,4380_7778208_2030223,4380_457 -4380_77976,286,4380_25669,Ballyphehane,69148-00010-1,1,4380_7778208_2030223,4380_457 -4380_77976,288,4380_25670,Ballyphehane,69146-00011-1,1,4380_7778208_2030223,4380_457 -4380_77976,287,4380_25671,Ballyphehane,69144-00012-1,1,4380_7778208_2030223,4380_457 -4380_77976,291,4380_25672,Ballyphehane,68555-00013-1,1,4380_7778208_2030201,4380_460 -4380_77976,289,4380_25673,Ballyphehane,69152-00014-1,1,4380_7778208_2030223,4380_457 -4380_77976,292,4380_25674,Ballyphehane,69149-00016-1,1,4380_7778208_2030223,4380_457 -4380_77976,293,4380_25675,Ballyphehane,69147-00017-1,1,4380_7778208_2030223,4380_457 -4380_77976,290,4380_25676,Ballyphehane,69151-00015-1,1,4380_7778208_2030223,4380_457 -4380_77976,294,4380_25677,Ballyphehane,69145-00018-1,1,4380_7778208_2030223,4380_457 -4380_77976,295,4380_25678,Ballyphehane,69153-00019-1,1,4380_7778208_2030223,4380_457 -4380_77976,296,4380_25679,Ballyphehane,68556-00021-1,1,4380_7778208_2030201,4380_460 -4380_77976,297,4380_25681,Ballyphehane,68699-00008-1,1,4380_7778208_2030204,4380_457 -4380_77976,285,4380_25688,Ballyphehane,69326-00009-1,1,4380_7778208_2030224,4380_457 -4380_77976,286,4380_25689,Ballyphehane,69330-00010-1,1,4380_7778208_2030224,4380_457 -4380_77976,288,4380_25690,Ballyphehane,69324-00011-1,1,4380_7778208_2030224,4380_457 -4380_77976,287,4380_25691,Ballyphehane,69332-00012-1,1,4380_7778208_2030224,4380_457 -4380_77976,291,4380_25692,Ballyphehane,68605-00013-1,1,4380_7778208_2030202,4380_460 -4380_77976,289,4380_25693,Ballyphehane,69328-00014-1,1,4380_7778208_2030224,4380_457 -4380_77976,292,4380_25694,Ballyphehane,69331-00016-1,1,4380_7778208_2030224,4380_457 -4380_77976,293,4380_25695,Ballyphehane,69325-00017-1,1,4380_7778208_2030224,4380_457 -4380_77976,290,4380_25696,Ballyphehane,69327-00015-1,1,4380_7778208_2030224,4380_457 -4380_77976,294,4380_25697,Ballyphehane,69333-00018-1,1,4380_7778208_2030224,4380_457 -4380_77976,295,4380_25698,Ballyphehane,69329-00019-1,1,4380_7778208_2030224,4380_457 -4380_77976,296,4380_25699,Ballyphehane,68606-00021-1,1,4380_7778208_2030202,4380_460 -4380_77946,289,4380_257,Dundalk,50441-00014-1,0,4380_7778208_1000914,4380_1 -4380_77976,297,4380_25701,Ballyphehane,68557-00008-1,1,4380_7778208_2030201,4380_457 -4380_77976,285,4380_25708,Ballyphehane,68852-00009-1,1,4380_7778208_2030221,4380_457 -4380_77976,286,4380_25709,Ballyphehane,68848-00010-1,1,4380_7778208_2030221,4380_457 -4380_77976,288,4380_25710,Ballyphehane,68844-00011-1,1,4380_7778208_2030221,4380_457 -4380_77976,287,4380_25711,Ballyphehane,68846-00012-1,1,4380_7778208_2030221,4380_457 -4380_77976,291,4380_25712,Ballyphehane,68754-00013-1,1,4380_7778208_2030206,4380_460 -4380_77976,289,4380_25713,Ballyphehane,68850-00014-1,1,4380_7778208_2030221,4380_457 -4380_77976,292,4380_25714,Ballyphehane,68849-00016-1,1,4380_7778208_2030221,4380_457 -4380_77976,293,4380_25715,Ballyphehane,68845-00017-1,1,4380_7778208_2030221,4380_457 -4380_77976,290,4380_25716,Ballyphehane,68853-00015-1,1,4380_7778208_2030221,4380_457 -4380_77976,294,4380_25717,Ballyphehane,68847-00018-1,1,4380_7778208_2030221,4380_457 -4380_77976,295,4380_25718,Ballyphehane,68851-00019-1,1,4380_7778208_2030221,4380_457 -4380_77976,296,4380_25719,Ballyphehane,68755-00021-1,1,4380_7778208_2030206,4380_460 -4380_77976,285,4380_25726,Ballyphehane,68976-00009-1,1,4380_7778208_2030222,4380_457 -4380_77976,286,4380_25727,Ballyphehane,68982-00010-1,1,4380_7778208_2030222,4380_457 -4380_77976,288,4380_25728,Ballyphehane,68974-00011-1,1,4380_7778208_2030222,4380_457 -4380_77976,287,4380_25729,Ballyphehane,68980-00012-1,1,4380_7778208_2030222,4380_457 -4380_77947,285,4380_2573,Drop Off,50832-00009-1,1,4380_7778208_1011103,4380_28 -4380_77976,291,4380_25730,Ballyphehane,68654-00013-1,1,4380_7778208_2030203,4380_460 -4380_77976,289,4380_25731,Ballyphehane,68978-00014-1,1,4380_7778208_2030222,4380_457 -4380_77976,292,4380_25732,Ballyphehane,68983-00016-1,1,4380_7778208_2030222,4380_457 -4380_77976,293,4380_25733,Ballyphehane,68975-00017-1,1,4380_7778208_2030222,4380_457 -4380_77976,290,4380_25734,Ballyphehane,68977-00015-1,1,4380_7778208_2030222,4380_457 -4380_77976,294,4380_25735,Ballyphehane,68981-00018-1,1,4380_7778208_2030222,4380_457 -4380_77976,295,4380_25736,Ballyphehane,68979-00019-1,1,4380_7778208_2030222,4380_457 -4380_77976,296,4380_25737,Ballyphehane,68655-00021-1,1,4380_7778208_2030203,4380_460 -4380_77976,297,4380_25739,Ballyphehane,68656-00008-1,1,4380_7778208_2030203,4380_457 -4380_77947,286,4380_2574,Drop Off,50826-00010-1,1,4380_7778208_1011103,4380_28 -4380_77976,285,4380_25746,Ballyphehane,69498-00009-1,1,4380_7778208_2030225,4380_457 -4380_77976,286,4380_25747,Ballyphehane,69494-00010-1,1,4380_7778208_2030225,4380_457 -4380_77976,288,4380_25748,Ballyphehane,69502-00011-1,1,4380_7778208_2030225,4380_457 -4380_77976,287,4380_25749,Ballyphehane,69500-00012-1,1,4380_7778208_2030225,4380_457 -4380_77947,297,4380_2575,Drop Off,50728-00008-1,1,4380_7778208_1011102,4380_30 -4380_77976,291,4380_25750,Ballyphehane,68703-00013-1,1,4380_7778208_2030204,4380_460 -4380_77976,289,4380_25751,Ballyphehane,69496-00014-1,1,4380_7778208_2030225,4380_457 -4380_77976,292,4380_25752,Ballyphehane,69495-00016-1,1,4380_7778208_2030225,4380_457 -4380_77976,293,4380_25753,Ballyphehane,69503-00017-1,1,4380_7778208_2030225,4380_457 -4380_77976,290,4380_25754,Ballyphehane,69499-00015-1,1,4380_7778208_2030225,4380_457 -4380_77976,294,4380_25755,Ballyphehane,69501-00018-1,1,4380_7778208_2030225,4380_457 -4380_77976,295,4380_25756,Ballyphehane,69497-00019-1,1,4380_7778208_2030225,4380_457 -4380_77976,296,4380_25757,Ballyphehane,68704-00021-1,1,4380_7778208_2030204,4380_460 -4380_77976,297,4380_25759,Ballyphehane,68610-00008-1,1,4380_7778208_2030202,4380_457 -4380_77947,288,4380_2576,Drop Off,50828-00011-1,1,4380_7778208_1011103,4380_28 -4380_77976,285,4380_25766,Ballyphehane,69670-00009-1,1,4380_7778208_2030226,4380_457 -4380_77976,286,4380_25767,Ballyphehane,69668-00010-1,1,4380_7778208_2030226,4380_457 -4380_77976,288,4380_25768,Ballyphehane,69666-00011-1,1,4380_7778208_2030226,4380_457 -4380_77976,287,4380_25769,Ballyphehane,69664-00012-1,1,4380_7778208_2030226,4380_457 -4380_77947,287,4380_2577,Drop Off,50824-00012-1,1,4380_7778208_1011103,4380_28 -4380_77976,291,4380_25770,Ballyphehane,68738-00013-1,1,4380_7778208_2030205,4380_460 -4380_77976,289,4380_25771,Ballyphehane,69672-00014-1,1,4380_7778208_2030226,4380_457 -4380_77976,292,4380_25772,Ballyphehane,69669-00016-1,1,4380_7778208_2030226,4380_457 -4380_77976,293,4380_25773,Ballyphehane,69667-00017-1,1,4380_7778208_2030226,4380_457 -4380_77976,290,4380_25774,Ballyphehane,69671-00015-1,1,4380_7778208_2030226,4380_457 -4380_77976,294,4380_25775,Ballyphehane,69665-00018-1,1,4380_7778208_2030226,4380_457 -4380_77976,295,4380_25776,Ballyphehane,69673-00019-1,1,4380_7778208_2030226,4380_457 -4380_77976,296,4380_25777,Ballyphehane,68739-00021-1,1,4380_7778208_2030205,4380_460 -4380_77947,289,4380_2578,Drop Off,50830-00014-1,1,4380_7778208_1011103,4380_28 -4380_77976,285,4380_25784,Ballyphehane,69170-00009-1,1,4380_7778208_2030223,4380_457 -4380_77976,286,4380_25785,Ballyphehane,69166-00010-1,1,4380_7778208_2030223,4380_457 -4380_77976,288,4380_25786,Ballyphehane,69168-00011-1,1,4380_7778208_2030223,4380_457 -4380_77976,287,4380_25787,Ballyphehane,69172-00012-1,1,4380_7778208_2030223,4380_457 -4380_77976,291,4380_25788,Ballyphehane,68561-00013-1,1,4380_7778208_2030201,4380_460 -4380_77976,289,4380_25789,Ballyphehane,69164-00014-1,1,4380_7778208_2030223,4380_457 -4380_77947,290,4380_2579,Drop Off,50833-00015-1,1,4380_7778208_1011103,4380_28 -4380_77976,292,4380_25790,Ballyphehane,69167-00016-1,1,4380_7778208_2030223,4380_457 -4380_77976,293,4380_25791,Ballyphehane,69169-00017-1,1,4380_7778208_2030223,4380_457 -4380_77976,290,4380_25792,Ballyphehane,69171-00015-1,1,4380_7778208_2030223,4380_457 -4380_77976,294,4380_25793,Ballyphehane,69173-00018-1,1,4380_7778208_2030223,4380_457 -4380_77976,295,4380_25794,Ballyphehane,69165-00019-1,1,4380_7778208_2030223,4380_457 -4380_77976,296,4380_25795,Ballyphehane,68562-00021-1,1,4380_7778208_2030201,4380_460 -4380_77976,297,4380_25797,Ballyphehane,68705-00008-1,1,4380_7778208_2030204,4380_457 -4380_77946,290,4380_258,Dundalk,50440-00015-1,0,4380_7778208_1000914,4380_1 -4380_77947,291,4380_2580,Drop Off,51047-00013-1,1,4380_7778208_1011105,4380_32 -4380_77976,285,4380_25804,Ballyphehane,69350-00009-1,1,4380_7778208_2030224,4380_457 -4380_77976,286,4380_25805,Ballyphehane,69348-00010-1,1,4380_7778208_2030224,4380_457 -4380_77976,288,4380_25806,Ballyphehane,69346-00011-1,1,4380_7778208_2030224,4380_457 -4380_77976,287,4380_25807,Ballyphehane,69352-00012-1,1,4380_7778208_2030224,4380_457 -4380_77976,291,4380_25808,Ballyphehane,68611-00013-1,1,4380_7778208_2030202,4380_460 -4380_77976,289,4380_25809,Ballyphehane,69344-00014-1,1,4380_7778208_2030224,4380_457 -4380_77947,292,4380_2581,Drop Off,50827-00016-1,1,4380_7778208_1011103,4380_28 -4380_77976,292,4380_25810,Ballyphehane,69349-00016-1,1,4380_7778208_2030224,4380_457 -4380_77976,293,4380_25811,Ballyphehane,69347-00017-1,1,4380_7778208_2030224,4380_457 -4380_77976,290,4380_25812,Ballyphehane,69351-00015-1,1,4380_7778208_2030224,4380_457 -4380_77976,294,4380_25813,Ballyphehane,69353-00018-1,1,4380_7778208_2030224,4380_457 -4380_77976,295,4380_25814,Ballyphehane,69345-00019-1,1,4380_7778208_2030224,4380_457 -4380_77976,296,4380_25815,Ballyphehane,68612-00021-1,1,4380_7778208_2030202,4380_460 -4380_77976,297,4380_25817,Ballyphehane,68563-00008-1,1,4380_7778208_2030201,4380_457 -4380_77947,293,4380_2582,Drop Off,50829-00017-1,1,4380_7778208_1011103,4380_28 -4380_77976,285,4380_25824,Ballyphehane,68864-00009-1,1,4380_7778208_2030221,4380_457 -4380_77976,286,4380_25825,Ballyphehane,68872-00010-1,1,4380_7778208_2030221,4380_457 -4380_77976,288,4380_25826,Ballyphehane,68866-00011-1,1,4380_7778208_2030221,4380_457 -4380_77976,287,4380_25827,Ballyphehane,68868-00012-1,1,4380_7778208_2030221,4380_457 -4380_77976,291,4380_25828,Ballyphehane,68758-00013-1,1,4380_7778208_2030206,4380_460 -4380_77976,289,4380_25829,Ballyphehane,68870-00014-1,1,4380_7778208_2030221,4380_457 -4380_77947,294,4380_2583,Drop Off,50825-00018-1,1,4380_7778208_1011103,4380_28 -4380_77976,292,4380_25830,Ballyphehane,68873-00016-1,1,4380_7778208_2030221,4380_457 -4380_77976,293,4380_25831,Ballyphehane,68867-00017-1,1,4380_7778208_2030221,4380_457 -4380_77976,290,4380_25832,Ballyphehane,68865-00015-1,1,4380_7778208_2030221,4380_457 -4380_77976,294,4380_25833,Ballyphehane,68869-00018-1,1,4380_7778208_2030221,4380_457 -4380_77976,295,4380_25834,Ballyphehane,68871-00019-1,1,4380_7778208_2030221,4380_457 -4380_77976,296,4380_25835,Ballyphehane,68759-00021-1,1,4380_7778208_2030206,4380_460 -4380_77947,295,4380_2584,Drop Off,50831-00019-1,1,4380_7778208_1011103,4380_28 -4380_77976,285,4380_25842,Ballyphehane,69002-00009-1,1,4380_7778208_2030222,4380_457 -4380_77976,286,4380_25843,Ballyphehane,68998-00010-1,1,4380_7778208_2030222,4380_457 -4380_77976,288,4380_25844,Ballyphehane,68994-00011-1,1,4380_7778208_2030222,4380_457 -4380_77976,287,4380_25845,Ballyphehane,69000-00012-1,1,4380_7778208_2030222,4380_457 -4380_77976,291,4380_25846,Ballyphehane,68660-00013-1,1,4380_7778208_2030203,4380_460 -4380_77976,289,4380_25847,Ballyphehane,68996-00014-1,1,4380_7778208_2030222,4380_457 -4380_77976,292,4380_25848,Ballyphehane,68999-00016-1,1,4380_7778208_2030222,4380_457 -4380_77976,293,4380_25849,Ballyphehane,68995-00017-1,1,4380_7778208_2030222,4380_457 -4380_77947,296,4380_2585,Drop Off,51048-00021-1,1,4380_7778208_1011105,4380_32 -4380_77976,290,4380_25850,Ballyphehane,69003-00015-1,1,4380_7778208_2030222,4380_457 -4380_77976,294,4380_25851,Ballyphehane,69001-00018-1,1,4380_7778208_2030222,4380_457 -4380_77976,295,4380_25852,Ballyphehane,68997-00019-1,1,4380_7778208_2030222,4380_457 -4380_77976,296,4380_25853,Ballyphehane,68661-00021-1,1,4380_7778208_2030203,4380_460 -4380_77976,297,4380_25855,Ballyphehane,68662-00008-1,1,4380_7778208_2030203,4380_457 -4380_77976,285,4380_25862,Ballyphehane,69516-00009-1,1,4380_7778208_2030225,4380_457 -4380_77976,286,4380_25863,Ballyphehane,69522-00010-1,1,4380_7778208_2030225,4380_457 -4380_77976,288,4380_25864,Ballyphehane,69520-00011-1,1,4380_7778208_2030225,4380_457 -4380_77976,287,4380_25865,Ballyphehane,69518-00012-1,1,4380_7778208_2030225,4380_457 -4380_77976,291,4380_25866,Ballyphehane,68709-00013-1,1,4380_7778208_2030204,4380_460 -4380_77976,289,4380_25867,Ballyphehane,69514-00014-1,1,4380_7778208_2030225,4380_457 -4380_77976,292,4380_25868,Ballyphehane,69523-00016-1,1,4380_7778208_2030225,4380_457 -4380_77976,293,4380_25869,Ballyphehane,69521-00017-1,1,4380_7778208_2030225,4380_457 -4380_77976,290,4380_25870,Ballyphehane,69517-00015-1,1,4380_7778208_2030225,4380_457 -4380_77976,294,4380_25871,Ballyphehane,69519-00018-1,1,4380_7778208_2030225,4380_457 -4380_77976,295,4380_25872,Ballyphehane,69515-00019-1,1,4380_7778208_2030225,4380_457 -4380_77976,296,4380_25873,Ballyphehane,68710-00021-1,1,4380_7778208_2030204,4380_460 -4380_77976,297,4380_25875,Ballyphehane,68616-00008-1,1,4380_7778208_2030202,4380_457 -4380_77976,285,4380_25882,Ballyphehane,69692-00009-1,1,4380_7778208_2030226,4380_457 -4380_77976,286,4380_25883,Ballyphehane,69684-00010-1,1,4380_7778208_2030226,4380_457 -4380_77976,288,4380_25884,Ballyphehane,69688-00011-1,1,4380_7778208_2030226,4380_457 -4380_77976,287,4380_25885,Ballyphehane,69686-00012-1,1,4380_7778208_2030226,4380_457 -4380_77976,291,4380_25886,Ballyphehane,68742-00013-1,1,4380_7778208_2030205,4380_460 -4380_77976,289,4380_25887,Ballyphehane,69690-00014-1,1,4380_7778208_2030226,4380_457 -4380_77976,292,4380_25888,Ballyphehane,69685-00016-1,1,4380_7778208_2030226,4380_457 -4380_77976,293,4380_25889,Ballyphehane,69689-00017-1,1,4380_7778208_2030226,4380_457 -4380_77976,290,4380_25890,Ballyphehane,69693-00015-1,1,4380_7778208_2030226,4380_457 -4380_77976,294,4380_25891,Ballyphehane,69687-00018-1,1,4380_7778208_2030226,4380_457 -4380_77976,295,4380_25892,Ballyphehane,69691-00019-1,1,4380_7778208_2030226,4380_457 -4380_77976,296,4380_25893,Ballyphehane,68743-00021-1,1,4380_7778208_2030205,4380_460 -4380_77946,291,4380_259,Dundalk,50267-00013-1,0,4380_7778208_1000911,4380_5 -4380_77976,285,4380_25900,Ballyphehane,69188-00009-1,1,4380_7778208_2030223,4380_457 -4380_77976,286,4380_25901,Ballyphehane,69190-00010-1,1,4380_7778208_2030223,4380_457 -4380_77976,288,4380_25902,Ballyphehane,69192-00011-1,1,4380_7778208_2030223,4380_457 -4380_77976,287,4380_25903,Ballyphehane,69186-00012-1,1,4380_7778208_2030223,4380_457 -4380_77976,291,4380_25904,Ballyphehane,68567-00013-1,1,4380_7778208_2030201,4380_460 -4380_77976,289,4380_25905,Ballyphehane,69184-00014-1,1,4380_7778208_2030223,4380_457 -4380_77976,292,4380_25906,Ballyphehane,69191-00016-1,1,4380_7778208_2030223,4380_457 -4380_77976,293,4380_25907,Ballyphehane,69193-00017-1,1,4380_7778208_2030223,4380_457 -4380_77976,290,4380_25908,Ballyphehane,69189-00015-1,1,4380_7778208_2030223,4380_457 -4380_77976,294,4380_25909,Ballyphehane,69187-00018-1,1,4380_7778208_2030223,4380_457 -4380_77976,295,4380_25910,Ballyphehane,69185-00019-1,1,4380_7778208_2030223,4380_457 -4380_77976,296,4380_25911,Ballyphehane,68568-00021-1,1,4380_7778208_2030201,4380_460 -4380_77976,297,4380_25913,Ballyphehane,68711-00008-1,1,4380_7778208_2030204,4380_457 -4380_77976,285,4380_25920,Ballyphehane,69368-00009-1,1,4380_7778208_2030224,4380_457 -4380_77976,286,4380_25921,Ballyphehane,69370-00010-1,1,4380_7778208_2030224,4380_457 -4380_77976,288,4380_25922,Ballyphehane,69372-00011-1,1,4380_7778208_2030224,4380_457 -4380_77976,287,4380_25923,Ballyphehane,69364-00012-1,1,4380_7778208_2030224,4380_457 -4380_77976,291,4380_25924,Ballyphehane,68617-00013-1,1,4380_7778208_2030202,4380_460 -4380_77976,289,4380_25925,Ballyphehane,69366-00014-1,1,4380_7778208_2030224,4380_457 -4380_77976,292,4380_25926,Ballyphehane,69371-00016-1,1,4380_7778208_2030224,4380_457 -4380_77976,293,4380_25927,Ballyphehane,69373-00017-1,1,4380_7778208_2030224,4380_457 -4380_77976,290,4380_25928,Ballyphehane,69369-00015-1,1,4380_7778208_2030224,4380_457 -4380_77976,294,4380_25929,Ballyphehane,69365-00018-1,1,4380_7778208_2030224,4380_457 -4380_77947,285,4380_2593,Drop Off,51220-00009-1,1,4380_7778208_1011107,4380_28 -4380_77976,295,4380_25930,Ballyphehane,69367-00019-1,1,4380_7778208_2030224,4380_457 -4380_77976,296,4380_25931,Ballyphehane,68618-00021-1,1,4380_7778208_2030202,4380_460 -4380_77976,297,4380_25933,Ballyphehane,68569-00008-1,1,4380_7778208_2030201,4380_457 -4380_77947,286,4380_2594,Drop Off,51222-00010-1,1,4380_7778208_1011107,4380_28 -4380_77976,285,4380_25940,St. Patrick Street,68884-00009-1,1,4380_7778208_2030221,4380_458 -4380_77976,286,4380_25941,St. Patrick Street,68890-00010-1,1,4380_7778208_2030221,4380_458 -4380_77976,288,4380_25942,St. Patrick Street,68888-00011-1,1,4380_7778208_2030221,4380_458 -4380_77976,287,4380_25943,St. Patrick Street,68886-00012-1,1,4380_7778208_2030221,4380_458 -4380_77976,291,4380_25944,St. Patrick Street,68762-00013-1,1,4380_7778208_2030206,4380_461 -4380_77976,289,4380_25945,St. Patrick Street,68892-00014-1,1,4380_7778208_2030221,4380_458 -4380_77976,292,4380_25946,St. Patrick Street,68891-00016-1,1,4380_7778208_2030221,4380_458 -4380_77976,293,4380_25947,St. Patrick Street,68889-00017-1,1,4380_7778208_2030221,4380_458 -4380_77976,290,4380_25948,St. Patrick Street,68885-00015-1,1,4380_7778208_2030221,4380_458 -4380_77976,294,4380_25949,St. Patrick Street,68887-00018-1,1,4380_7778208_2030221,4380_458 -4380_77947,297,4380_2595,Drop Off,51471-00008-1,1,4380_7778208_1011110,4380_30 -4380_77976,295,4380_25950,St. Patrick Street,68893-00019-1,1,4380_7778208_2030221,4380_458 -4380_77976,296,4380_25951,St. Patrick Street,68763-00021-1,1,4380_7778208_2030206,4380_461 -4380_77976,285,4380_25958,Ballyphehane,69022-00009-1,1,4380_7778208_2030222,4380_457 -4380_77976,286,4380_25959,Ballyphehane,69014-00010-1,1,4380_7778208_2030222,4380_457 -4380_77947,288,4380_2596,Drop Off,51224-00011-1,1,4380_7778208_1011107,4380_28 -4380_77976,288,4380_25960,Ballyphehane,69018-00011-1,1,4380_7778208_2030222,4380_457 -4380_77976,287,4380_25961,Ballyphehane,69020-00012-1,1,4380_7778208_2030222,4380_457 -4380_77976,291,4380_25962,Ballyphehane,68666-00013-1,1,4380_7778208_2030203,4380_460 -4380_77976,289,4380_25963,Ballyphehane,69016-00014-1,1,4380_7778208_2030222,4380_457 -4380_77976,292,4380_25964,Ballyphehane,69015-00016-1,1,4380_7778208_2030222,4380_457 -4380_77976,293,4380_25965,Ballyphehane,69019-00017-1,1,4380_7778208_2030222,4380_457 -4380_77976,290,4380_25966,Ballyphehane,69023-00015-1,1,4380_7778208_2030222,4380_457 -4380_77976,294,4380_25967,Ballyphehane,69021-00018-1,1,4380_7778208_2030222,4380_457 -4380_77976,295,4380_25968,Ballyphehane,69017-00019-1,1,4380_7778208_2030222,4380_457 -4380_77976,296,4380_25969,Ballyphehane,68667-00021-1,1,4380_7778208_2030203,4380_460 -4380_77947,287,4380_2597,Drop Off,51218-00012-1,1,4380_7778208_1011107,4380_28 -4380_77976,297,4380_25971,Ballyphehane,68668-00008-1,1,4380_7778208_2030203,4380_457 -4380_77976,285,4380_25978,Ballyphehane,69536-00009-1,1,4380_7778208_2030225,4380_457 -4380_77976,286,4380_25979,Ballyphehane,69540-00010-1,1,4380_7778208_2030225,4380_457 -4380_77947,289,4380_2598,Drop Off,51216-00014-1,1,4380_7778208_1011107,4380_28 -4380_77976,288,4380_25980,Ballyphehane,69534-00011-1,1,4380_7778208_2030225,4380_457 -4380_77976,287,4380_25981,Ballyphehane,69542-00012-1,1,4380_7778208_2030225,4380_457 -4380_77976,291,4380_25982,Ballyphehane,68715-00013-1,1,4380_7778208_2030204,4380_457 -4380_77976,289,4380_25983,Ballyphehane,69538-00014-1,1,4380_7778208_2030225,4380_457 -4380_77976,292,4380_25984,Ballyphehane,69541-00016-1,1,4380_7778208_2030225,4380_457 -4380_77976,293,4380_25985,Ballyphehane,69535-00017-1,1,4380_7778208_2030225,4380_457 -4380_77976,290,4380_25986,Ballyphehane,69537-00015-1,1,4380_7778208_2030225,4380_457 -4380_77976,294,4380_25987,Ballyphehane,69543-00018-1,1,4380_7778208_2030225,4380_457 -4380_77976,295,4380_25988,Ballyphehane,69539-00019-1,1,4380_7778208_2030225,4380_457 -4380_77976,296,4380_25989,Ballyphehane,68716-00021-1,1,4380_7778208_2030204,4380_457 -4380_77947,290,4380_2599,Drop Off,51221-00015-1,1,4380_7778208_1011107,4380_28 -4380_77976,297,4380_25991,Ballyphehane,68622-00008-1,1,4380_7778208_2030202,4380_457 -4380_77976,285,4380_25998,Ballyphehane,69208-00009-1,1,4380_7778208_2030223,4380_457 -4380_77976,286,4380_25999,Ballyphehane,69212-00010-1,1,4380_7778208_2030223,4380_457 -4380_77946,286,4380_26,Dundalk,114769-00010-1,0,4380_7778208_10088801,4380_3 -4380_77946,292,4380_260,Dundalk,50438-00016-1,0,4380_7778208_1000914,4380_1 -4380_77947,291,4380_2600,Drop Off,51150-00013-1,1,4380_7778208_1011106,4380_32 -4380_77976,288,4380_26000,Ballyphehane,69204-00011-1,1,4380_7778208_2030223,4380_457 -4380_77976,287,4380_26001,Ballyphehane,69206-00012-1,1,4380_7778208_2030223,4380_457 -4380_77976,291,4380_26002,Ballyphehane,68573-00013-1,1,4380_7778208_2030201,4380_457 -4380_77976,289,4380_26003,Ballyphehane,69210-00014-1,1,4380_7778208_2030223,4380_457 -4380_77976,292,4380_26004,Ballyphehane,69213-00016-1,1,4380_7778208_2030223,4380_457 -4380_77976,293,4380_26005,Ballyphehane,69205-00017-1,1,4380_7778208_2030223,4380_457 -4380_77976,290,4380_26006,Ballyphehane,69209-00015-1,1,4380_7778208_2030223,4380_457 -4380_77976,294,4380_26007,Ballyphehane,69207-00018-1,1,4380_7778208_2030223,4380_457 -4380_77976,295,4380_26008,Ballyphehane,69211-00019-1,1,4380_7778208_2030223,4380_457 -4380_77976,296,4380_26009,Ballyphehane,68574-00021-1,1,4380_7778208_2030201,4380_457 -4380_77947,292,4380_2601,Drop Off,51223-00016-1,1,4380_7778208_1011107,4380_28 -4380_77976,297,4380_26011,Ballyphehane,68717-00008-1,1,4380_7778208_2030204,4380_457 -4380_77976,285,4380_26018,Ballyphehane,69386-00009-1,1,4380_7778208_2030224,4380_457 -4380_77976,286,4380_26019,Ballyphehane,69392-00010-1,1,4380_7778208_2030224,4380_457 -4380_77947,293,4380_2602,Drop Off,51225-00017-1,1,4380_7778208_1011107,4380_28 -4380_77976,288,4380_26020,Ballyphehane,69388-00011-1,1,4380_7778208_2030224,4380_457 -4380_77976,287,4380_26021,Ballyphehane,69390-00012-1,1,4380_7778208_2030224,4380_457 -4380_77976,291,4380_26022,Ballyphehane,68623-00013-1,1,4380_7778208_2030202,4380_457 -4380_77976,289,4380_26023,Ballyphehane,69384-00014-1,1,4380_7778208_2030224,4380_457 -4380_77976,292,4380_26024,Ballyphehane,69393-00016-1,1,4380_7778208_2030224,4380_457 -4380_77976,293,4380_26025,Ballyphehane,69389-00017-1,1,4380_7778208_2030224,4380_457 -4380_77976,290,4380_26026,Ballyphehane,69387-00015-1,1,4380_7778208_2030224,4380_457 -4380_77976,294,4380_26027,Ballyphehane,69391-00018-1,1,4380_7778208_2030224,4380_457 -4380_77976,295,4380_26028,Ballyphehane,69385-00019-1,1,4380_7778208_2030224,4380_457 -4380_77976,296,4380_26029,Ballyphehane,68624-00021-1,1,4380_7778208_2030202,4380_457 -4380_77947,294,4380_2603,Drop Off,51219-00018-1,1,4380_7778208_1011107,4380_28 -4380_77976,297,4380_26031,Ballyphehane,68575-00008-1,1,4380_7778208_2030201,4380_457 -4380_77976,285,4380_26038,Ballyphehane,69038-00009-1,1,4380_7778208_2030222,4380_457 -4380_77976,286,4380_26039,Ballyphehane,69040-00010-1,1,4380_7778208_2030222,4380_457 -4380_77947,295,4380_2604,Drop Off,51217-00019-1,1,4380_7778208_1011107,4380_28 -4380_77976,288,4380_26040,Ballyphehane,69036-00011-1,1,4380_7778208_2030222,4380_457 -4380_77976,287,4380_26041,Ballyphehane,69034-00012-1,1,4380_7778208_2030222,4380_457 -4380_77976,291,4380_26042,Ballyphehane,68672-00013-1,1,4380_7778208_2030203,4380_457 -4380_77976,289,4380_26043,Ballyphehane,69042-00014-1,1,4380_7778208_2030222,4380_457 -4380_77976,292,4380_26044,Ballyphehane,69041-00016-1,1,4380_7778208_2030222,4380_457 -4380_77976,293,4380_26045,Ballyphehane,69037-00017-1,1,4380_7778208_2030222,4380_457 -4380_77976,290,4380_26046,Ballyphehane,69039-00015-1,1,4380_7778208_2030222,4380_457 -4380_77976,294,4380_26047,Ballyphehane,69035-00018-1,1,4380_7778208_2030222,4380_457 -4380_77976,295,4380_26048,Ballyphehane,69043-00019-1,1,4380_7778208_2030222,4380_457 -4380_77976,296,4380_26049,Ballyphehane,68673-00021-1,1,4380_7778208_2030203,4380_457 -4380_77947,296,4380_2605,Drop Off,51151-00021-1,1,4380_7778208_1011106,4380_32 -4380_77976,297,4380_26051,Ballyphehane,68674-00008-1,1,4380_7778208_2030203,4380_457 -4380_77976,285,4380_26058,Ballyphehane,69560-00009-1,1,4380_7778208_2030225,4380_457 -4380_77976,286,4380_26059,Ballyphehane,69562-00010-1,1,4380_7778208_2030225,4380_457 -4380_77976,288,4380_26060,Ballyphehane,69554-00011-1,1,4380_7778208_2030225,4380_457 -4380_77976,287,4380_26061,Ballyphehane,69556-00012-1,1,4380_7778208_2030225,4380_457 -4380_77976,291,4380_26062,Ballyphehane,68721-00013-1,1,4380_7778208_2030204,4380_457 -4380_77976,289,4380_26063,Ballyphehane,69558-00014-1,1,4380_7778208_2030225,4380_457 -4380_77976,292,4380_26064,Ballyphehane,69563-00016-1,1,4380_7778208_2030225,4380_457 -4380_77976,293,4380_26065,Ballyphehane,69555-00017-1,1,4380_7778208_2030225,4380_457 -4380_77976,290,4380_26066,Ballyphehane,69561-00015-1,1,4380_7778208_2030225,4380_457 -4380_77976,294,4380_26067,Ballyphehane,69557-00018-1,1,4380_7778208_2030225,4380_457 -4380_77976,295,4380_26068,Ballyphehane,69559-00019-1,1,4380_7778208_2030225,4380_457 -4380_77976,296,4380_26069,Ballyphehane,68722-00021-1,1,4380_7778208_2030204,4380_457 -4380_77976,297,4380_26071,Ballyphehane,68628-00008-1,1,4380_7778208_2030202,4380_457 -4380_77976,285,4380_26078,Ballyphehane,69228-00009-1,1,4380_7778208_2030223,4380_457 -4380_77976,286,4380_26079,Ballyphehane,69230-00010-1,1,4380_7778208_2030223,4380_457 -4380_77976,288,4380_26080,Ballyphehane,69232-00011-1,1,4380_7778208_2030223,4380_457 -4380_77976,287,4380_26081,Ballyphehane,69226-00012-1,1,4380_7778208_2030223,4380_457 -4380_77976,291,4380_26082,Ballyphehane,68579-00013-1,1,4380_7778208_2030201,4380_457 -4380_77976,289,4380_26083,Ballyphehane,69224-00014-1,1,4380_7778208_2030223,4380_457 -4380_77976,292,4380_26084,Ballyphehane,69231-00016-1,1,4380_7778208_2030223,4380_457 -4380_77976,293,4380_26085,Ballyphehane,69233-00017-1,1,4380_7778208_2030223,4380_457 -4380_77976,290,4380_26086,Ballyphehane,69229-00015-1,1,4380_7778208_2030223,4380_457 -4380_77976,294,4380_26087,Ballyphehane,69227-00018-1,1,4380_7778208_2030223,4380_457 -4380_77976,295,4380_26088,Ballyphehane,69225-00019-1,1,4380_7778208_2030223,4380_457 -4380_77976,296,4380_26089,Ballyphehane,68580-00021-1,1,4380_7778208_2030201,4380_457 -4380_77976,297,4380_26091,Ballyphehane,68723-00008-1,1,4380_7778208_2030204,4380_457 -4380_77976,285,4380_26098,Ballyphehane,69406-00009-1,1,4380_7778208_2030224,4380_457 -4380_77976,286,4380_26099,Ballyphehane,69404-00010-1,1,4380_7778208_2030224,4380_457 -4380_77946,293,4380_261,Dundalk,50446-00017-1,0,4380_7778208_1000914,4380_1 -4380_77976,288,4380_26100,Ballyphehane,69412-00011-1,1,4380_7778208_2030224,4380_457 -4380_77976,287,4380_26101,Ballyphehane,69408-00012-1,1,4380_7778208_2030224,4380_457 -4380_77976,291,4380_26102,Ballyphehane,68629-00013-1,1,4380_7778208_2030202,4380_457 -4380_77976,289,4380_26103,Ballyphehane,69410-00014-1,1,4380_7778208_2030224,4380_457 -4380_77976,292,4380_26104,Ballyphehane,69405-00016-1,1,4380_7778208_2030224,4380_457 -4380_77976,293,4380_26105,Ballyphehane,69413-00017-1,1,4380_7778208_2030224,4380_457 -4380_77976,290,4380_26106,Ballyphehane,69407-00015-1,1,4380_7778208_2030224,4380_457 -4380_77976,294,4380_26107,Ballyphehane,69409-00018-1,1,4380_7778208_2030224,4380_457 -4380_77976,295,4380_26108,Ballyphehane,69411-00019-1,1,4380_7778208_2030224,4380_457 -4380_77976,296,4380_26109,Ballyphehane,68630-00021-1,1,4380_7778208_2030202,4380_457 -4380_77947,285,4380_2611,Drop Off,51575-00009-1,1,4380_7778208_1011112,4380_28 -4380_77976,297,4380_26111,Ballyphehane,68581-00008-1,1,4380_7778208_2030201,4380_457 -4380_77976,285,4380_26118,Ballyphehane,69062-00009-1,1,4380_7778208_2030222,4380_457 -4380_77976,286,4380_26119,Ballyphehane,69058-00010-1,1,4380_7778208_2030222,4380_457 -4380_77947,286,4380_2612,Drop Off,51573-00010-1,1,4380_7778208_1011112,4380_28 -4380_77976,288,4380_26120,Ballyphehane,69054-00011-1,1,4380_7778208_2030222,4380_457 -4380_77976,287,4380_26121,Ballyphehane,69056-00012-1,1,4380_7778208_2030222,4380_457 -4380_77976,291,4380_26122,Ballyphehane,68678-00013-1,1,4380_7778208_2030203,4380_457 -4380_77976,289,4380_26123,Ballyphehane,69060-00014-1,1,4380_7778208_2030222,4380_457 -4380_77976,292,4380_26124,Ballyphehane,69059-00016-1,1,4380_7778208_2030222,4380_457 -4380_77976,293,4380_26125,Ballyphehane,69055-00017-1,1,4380_7778208_2030222,4380_457 -4380_77976,290,4380_26126,Ballyphehane,69063-00015-1,1,4380_7778208_2030222,4380_457 -4380_77976,294,4380_26127,Ballyphehane,69057-00018-1,1,4380_7778208_2030222,4380_457 -4380_77976,295,4380_26128,Ballyphehane,69061-00019-1,1,4380_7778208_2030222,4380_457 -4380_77976,296,4380_26129,Ballyphehane,68679-00021-1,1,4380_7778208_2030203,4380_457 -4380_77947,288,4380_2613,Drop Off,51571-00011-1,1,4380_7778208_1011112,4380_28 -4380_77976,297,4380_26131,Ballyphehane,68680-00008-1,1,4380_7778208_2030203,4380_457 -4380_77976,285,4380_26139,Ballyphehane,69576-00009-1,1,4380_7778208_2030225,4380_457 -4380_77947,287,4380_2614,Drop Off,51569-00012-1,1,4380_7778208_1011112,4380_28 -4380_77976,286,4380_26140,Ballyphehane,69574-00010-1,1,4380_7778208_2030225,4380_457 -4380_77976,297,4380_26141,Ballyphehane,68632-00008-1,1,4380_7778208_2030202,4380_457 -4380_77976,288,4380_26142,Ballyphehane,69582-00011-1,1,4380_7778208_2030225,4380_457 -4380_77976,287,4380_26143,Ballyphehane,69580-00012-1,1,4380_7778208_2030225,4380_457 -4380_77976,291,4380_26144,Ballyphehane,68727-00013-1,1,4380_7778208_2030204,4380_457 -4380_77976,289,4380_26145,Ballyphehane,69578-00014-1,1,4380_7778208_2030225,4380_457 -4380_77976,292,4380_26146,Ballyphehane,69575-00016-1,1,4380_7778208_2030225,4380_457 -4380_77976,293,4380_26147,Ballyphehane,69583-00017-1,1,4380_7778208_2030225,4380_457 -4380_77976,290,4380_26148,Ballyphehane,69577-00015-1,1,4380_7778208_2030225,4380_457 -4380_77976,294,4380_26149,Ballyphehane,69581-00018-1,1,4380_7778208_2030225,4380_457 -4380_77947,289,4380_2615,Drop Off,51567-00014-1,1,4380_7778208_1011112,4380_28 -4380_77976,295,4380_26150,Ballyphehane,69579-00019-1,1,4380_7778208_2030225,4380_457 -4380_77976,296,4380_26151,Ballyphehane,68728-00021-1,1,4380_7778208_2030204,4380_457 -4380_77976,285,4380_26159,St. Patrick Street,69248-00009-1,1,4380_7778208_2030223,4380_458 -4380_77947,290,4380_2616,Drop Off,51576-00015-1,1,4380_7778208_1011112,4380_28 -4380_77976,286,4380_26160,St. Patrick Street,69250-00010-1,1,4380_7778208_2030223,4380_458 -4380_77976,297,4380_26161,St. Patrick Street,68729-00008-1,1,4380_7778208_2030204,4380_458 -4380_77976,288,4380_26162,St. Patrick Street,69244-00011-1,1,4380_7778208_2030223,4380_458 -4380_77976,287,4380_26163,St. Patrick Street,69252-00012-1,1,4380_7778208_2030223,4380_458 -4380_77976,291,4380_26164,St. Patrick Street,68585-00013-1,1,4380_7778208_2030201,4380_458 -4380_77976,289,4380_26165,St. Patrick Street,69246-00014-1,1,4380_7778208_2030223,4380_458 -4380_77976,292,4380_26166,St. Patrick Street,69251-00016-1,1,4380_7778208_2030223,4380_458 -4380_77976,293,4380_26167,St. Patrick Street,69245-00017-1,1,4380_7778208_2030223,4380_458 -4380_77976,290,4380_26168,St. Patrick Street,69249-00015-1,1,4380_7778208_2030223,4380_458 -4380_77976,294,4380_26169,St. Patrick Street,69253-00018-1,1,4380_7778208_2030223,4380_458 -4380_77947,292,4380_2617,Drop Off,51574-00016-1,1,4380_7778208_1011112,4380_28 -4380_77976,295,4380_26170,St. Patrick Street,69247-00019-1,1,4380_7778208_2030223,4380_458 -4380_77976,296,4380_26171,St. Patrick Street,68586-00021-1,1,4380_7778208_2030201,4380_458 -4380_77977,285,4380_26177,MTU,70480-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26178,MTU,70474-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26179,MTU,70482-00011-1,0,4380_7778208_2050204,4380_462 -4380_77947,293,4380_2618,Drop Off,51572-00017-1,1,4380_7778208_1011112,4380_28 -4380_77977,287,4380_26180,MTU,70478-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26181,MTU,70476-00014-1,0,4380_7778208_2050204,4380_462 -4380_77977,292,4380_26182,MTU,70475-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26183,MTU,70483-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26184,MTU,70481-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26185,MTU,70479-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26186,MTU,70477-00019-1,0,4380_7778208_2050204,4380_462 -4380_77947,294,4380_2619,Drop Off,51570-00018-1,1,4380_7778208_1011112,4380_28 -4380_77977,285,4380_26192,MTU,70002-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26193,MTU,70000-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26194,MTU,69998-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26195,MTU,69994-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26196,MTU,69996-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26197,MTU,70001-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26198,MTU,69999-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26199,MTU,70003-00015-1,0,4380_7778208_2050202,4380_462 -4380_77946,294,4380_262,Dundalk,50444-00018-1,0,4380_7778208_1000914,4380_1 -4380_77947,295,4380_2620,Drop Off,51568-00019-1,1,4380_7778208_1011112,4380_28 -4380_77977,294,4380_26200,MTU,69995-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26201,MTU,69997-00019-1,0,4380_7778208_2050202,4380_462 -4380_77977,285,4380_26207,MTU,70292-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26208,MTU,70284-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26209,MTU,70288-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26210,MTU,70290-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26211,MTU,70286-00014-1,0,4380_7778208_2050203,4380_462 -4380_77977,292,4380_26212,MTU,70285-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26213,MTU,70289-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26214,MTU,70293-00015-1,0,4380_7778208_2050203,4380_462 -4380_77977,294,4380_26215,MTU,70291-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26216,MTU,70287-00019-1,0,4380_7778208_2050203,4380_462 -4380_77977,291,4380_26218,MTU,70686-00013-1,0,4380_7778208_2050211,4380_462 -4380_77977,296,4380_26219,MTU,70687-00021-1,0,4380_7778208_2050211,4380_462 -4380_77977,285,4380_26225,MTU,69720-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26226,MTU,69716-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26227,MTU,69722-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26228,MTU,69718-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26229,MTU,69714-00014-1,0,4380_7778208_2050201,4380_462 -4380_77947,297,4380_2623,Drop Off,50836-00008-1,1,4380_7778208_1011103,4380_28 -4380_77977,292,4380_26230,MTU,69717-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26231,MTU,69723-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26232,MTU,69721-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26233,MTU,69719-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26234,MTU,69715-00019-1,0,4380_7778208_2050201,4380_462 -4380_77947,291,4380_2624,Drop Off,51327-00013-1,1,4380_7778208_1011108,4380_30 -4380_77977,285,4380_26240,MTU,70498-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26241,MTU,70494-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26242,MTU,70500-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26243,MTU,70502-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26244,MTU,70496-00014-1,0,4380_7778208_2050204,4380_462 -4380_77977,292,4380_26245,MTU,70495-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26246,MTU,70501-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26247,MTU,70499-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26248,MTU,70503-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26249,MTU,70497-00019-1,0,4380_7778208_2050204,4380_462 -4380_77947,296,4380_2625,Drop Off,51328-00021-1,1,4380_7778208_1011108,4380_30 -4380_77977,291,4380_26251,MTU,70753-00013-1,0,4380_7778208_2050212,4380_462 -4380_77977,296,4380_26252,MTU,70754-00021-1,0,4380_7778208_2050212,4380_462 -4380_77977,285,4380_26258,MTU,70020-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26259,MTU,70016-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26260,MTU,70014-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26261,MTU,70018-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26262,MTU,70022-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26263,MTU,70017-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26264,MTU,70015-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26265,MTU,70021-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26266,MTU,70019-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26267,MTU,70023-00019-1,0,4380_7778208_2050202,4380_462 -4380_77977,291,4380_26269,MTU,70690-00013-1,0,4380_7778208_2050211,4380_462 -4380_77977,296,4380_26270,MTU,70691-00021-1,0,4380_7778208_2050211,4380_462 -4380_77977,285,4380_26276,MTU,70306-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26277,MTU,70310-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26278,MTU,70312-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26279,MTU,70304-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26280,MTU,70308-00014-1,0,4380_7778208_2050203,4380_462 -4380_77977,292,4380_26281,MTU,70311-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26282,MTU,70313-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26283,MTU,70307-00015-1,0,4380_7778208_2050203,4380_462 -4380_77977,294,4380_26284,MTU,70305-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26285,MTU,70309-00019-1,0,4380_7778208_2050203,4380_462 -4380_77977,285,4380_26291,MTU,69734-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26292,MTU,69738-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26293,MTU,69740-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26294,MTU,69742-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26295,MTU,69736-00014-1,0,4380_7778208_2050201,4380_462 -4380_77977,292,4380_26296,MTU,69739-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26297,MTU,69741-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26298,MTU,69735-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26299,MTU,69743-00018-1,0,4380_7778208_2050201,4380_462 -4380_77946,295,4380_263,Dundalk,50442-00019-1,0,4380_7778208_1000914,4380_1 -4380_77977,295,4380_26300,MTU,69737-00019-1,0,4380_7778208_2050201,4380_462 -4380_77977,291,4380_26302,MTU,70757-00013-1,0,4380_7778208_2050212,4380_462 -4380_77977,296,4380_26303,MTU,70758-00021-1,0,4380_7778208_2050212,4380_462 -4380_77977,285,4380_26309,MTU,70516-00009-1,0,4380_7778208_2050204,4380_462 -4380_77947,285,4380_2631,Drop Off,51627-00009-1,1,4380_7778208_1011113,4380_28 -4380_77977,286,4380_26310,MTU,70520-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26311,MTU,70518-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26312,MTU,70514-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26313,MTU,70522-00014-1,0,4380_7778208_2050204,4380_462 -4380_77977,292,4380_26314,MTU,70521-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26315,MTU,70519-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26316,MTU,70517-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26317,MTU,70515-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26318,MTU,70523-00019-1,0,4380_7778208_2050204,4380_462 -4380_77947,286,4380_2632,Drop Off,51629-00010-1,1,4380_7778208_1011113,4380_28 -4380_77977,291,4380_26320,MTU,70694-00013-1,0,4380_7778208_2050211,4380_462 -4380_77977,296,4380_26321,MTU,70695-00021-1,0,4380_7778208_2050211,4380_462 -4380_77977,285,4380_26327,MTU,70042-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26328,MTU,70040-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26329,MTU,70038-00011-1,0,4380_7778208_2050202,4380_462 -4380_77947,288,4380_2633,Drop Off,51631-00011-1,1,4380_7778208_1011113,4380_28 -4380_77977,287,4380_26330,MTU,70036-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26331,MTU,70034-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26332,MTU,70041-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26333,MTU,70039-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26334,MTU,70043-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26335,MTU,70037-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26336,MTU,70035-00019-1,0,4380_7778208_2050202,4380_462 -4380_77947,287,4380_2634,Drop Off,51635-00012-1,1,4380_7778208_1011113,4380_28 -4380_77977,285,4380_26342,MTU,70328-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26343,MTU,70324-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26344,MTU,70330-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26345,MTU,70326-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26346,MTU,70332-00014-1,0,4380_7778208_2050203,4380_462 -4380_77977,292,4380_26347,MTU,70325-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26348,MTU,70331-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26349,MTU,70329-00015-1,0,4380_7778208_2050203,4380_462 -4380_77947,289,4380_2635,Drop Off,51633-00014-1,1,4380_7778208_1011113,4380_28 -4380_77977,294,4380_26350,MTU,70327-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26351,MTU,70333-00019-1,0,4380_7778208_2050203,4380_462 -4380_77977,291,4380_26353,MTU,70761-00013-1,0,4380_7778208_2050212,4380_462 -4380_77977,296,4380_26354,MTU,70762-00021-1,0,4380_7778208_2050212,4380_462 -4380_77947,290,4380_2636,Drop Off,51628-00015-1,1,4380_7778208_1011113,4380_28 -4380_77977,285,4380_26360,MTU,69760-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26361,MTU,69756-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26362,MTU,69758-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26363,MTU,69762-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26364,MTU,69754-00014-1,0,4380_7778208_2050201,4380_462 -4380_77977,292,4380_26365,MTU,69757-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26366,MTU,69759-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26367,MTU,69761-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26368,MTU,69763-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26369,MTU,69755-00019-1,0,4380_7778208_2050201,4380_462 -4380_77947,292,4380_2637,Drop Off,51630-00016-1,1,4380_7778208_1011113,4380_28 -4380_77977,297,4380_26372,MTU,70699-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26373,MTU,70700-00013-1,0,4380_7778208_2050211,4380_463 -4380_77977,296,4380_26374,MTU,70701-00021-1,0,4380_7778208_2050211,4380_463 -4380_77947,293,4380_2638,Drop Off,51632-00017-1,1,4380_7778208_1011113,4380_28 -4380_77977,285,4380_26380,MTU,70540-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26381,MTU,70538-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26382,MTU,70534-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26383,MTU,70542-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26384,MTU,70536-00014-1,0,4380_7778208_2050204,4380_462 -4380_77977,292,4380_26385,MTU,70539-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26386,MTU,70535-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26387,MTU,70541-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26388,MTU,70543-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26389,MTU,70537-00019-1,0,4380_7778208_2050204,4380_462 -4380_77947,294,4380_2639,Drop Off,51636-00018-1,1,4380_7778208_1011113,4380_28 -4380_77977,285,4380_26395,MTU,70054-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26396,MTU,70060-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26397,MTU,70062-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26398,MTU,70058-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26399,MTU,70056-00014-1,0,4380_7778208_2050202,4380_462 -4380_77946,296,4380_264,Dundalk,50268-00021-1,0,4380_7778208_1000911,4380_5 -4380_77947,295,4380_2640,Drop Off,51634-00019-1,1,4380_7778208_1011113,4380_28 -4380_77977,292,4380_26400,MTU,70061-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26401,MTU,70063-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26402,MTU,70055-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26403,MTU,70059-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26404,MTU,70057-00019-1,0,4380_7778208_2050202,4380_462 -4380_77977,297,4380_26407,MTU,70766-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26408,MTU,70767-00013-1,0,4380_7778208_2050212,4380_463 -4380_77977,296,4380_26409,MTU,70768-00021-1,0,4380_7778208_2050212,4380_463 -4380_77977,285,4380_26415,MTU,70350-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26416,MTU,70344-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26417,MTU,70348-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26418,MTU,70352-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26419,MTU,70346-00014-1,0,4380_7778208_2050203,4380_462 -4380_77977,292,4380_26420,MTU,70345-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26421,MTU,70349-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26422,MTU,70351-00015-1,0,4380_7778208_2050203,4380_462 -4380_77977,294,4380_26423,MTU,70353-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26424,MTU,70347-00019-1,0,4380_7778208_2050203,4380_462 -4380_77977,297,4380_26427,MTU,70707-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26428,MTU,70705-00013-1,0,4380_7778208_2050211,4380_463 -4380_77977,296,4380_26429,MTU,70706-00021-1,0,4380_7778208_2050211,4380_463 -4380_77977,285,4380_26435,MTU,69776-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26436,MTU,69782-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26437,MTU,69774-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26438,MTU,69778-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26439,MTU,69780-00014-1,0,4380_7778208_2050201,4380_462 -4380_77977,292,4380_26440,MTU,69783-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26441,MTU,69775-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26442,MTU,69777-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26443,MTU,69779-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26444,MTU,69781-00019-1,0,4380_7778208_2050201,4380_462 -4380_77977,285,4380_26450,MTU,70556-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26451,MTU,70554-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26452,MTU,70560-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26453,MTU,70558-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26454,MTU,70562-00014-1,0,4380_7778208_2050204,4380_462 -4380_77977,292,4380_26455,MTU,70555-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26456,MTU,70561-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26457,MTU,70557-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26458,MTU,70559-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26459,MTU,70563-00019-1,0,4380_7778208_2050204,4380_462 -4380_77977,297,4380_26462,MTU,70772-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26463,MTU,70773-00013-1,0,4380_7778208_2050212,4380_463 -4380_77977,296,4380_26464,MTU,70774-00021-1,0,4380_7778208_2050212,4380_463 -4380_77977,285,4380_26470,MTU,70078-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26471,MTU,70082-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26472,MTU,70076-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26473,MTU,70074-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26474,MTU,70080-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26475,MTU,70083-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26476,MTU,70077-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26477,MTU,70079-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26478,MTU,70075-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26479,MTU,70081-00019-1,0,4380_7778208_2050202,4380_462 -4380_77947,285,4380_2648,Drop Off,51380-00009-1,1,4380_7778208_1011109,4380_28 -4380_77977,297,4380_26482,MTU,70711-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26483,MTU,70712-00013-1,0,4380_7778208_2050211,4380_463 -4380_77977,296,4380_26484,MTU,70713-00021-1,0,4380_7778208_2050211,4380_463 -4380_77947,286,4380_2649,Drop Off,51376-00010-1,1,4380_7778208_1011109,4380_28 -4380_77977,285,4380_26490,MTU,70370-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26491,MTU,70372-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26492,MTU,70368-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26493,MTU,70366-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26494,MTU,70364-00014-1,0,4380_7778208_2050203,4380_462 -4380_77977,292,4380_26495,MTU,70373-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26496,MTU,70369-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26497,MTU,70371-00015-1,0,4380_7778208_2050203,4380_462 -4380_77977,294,4380_26498,MTU,70367-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26499,MTU,70365-00019-1,0,4380_7778208_2050203,4380_462 -4380_77947,297,4380_2650,Drop Off,51152-00008-1,1,4380_7778208_1011106,4380_30 -4380_77977,285,4380_26505,MTU,69802-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26506,MTU,69800-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26507,MTU,69794-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26508,MTU,69798-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26509,MTU,69796-00014-1,0,4380_7778208_2050201,4380_462 -4380_77947,288,4380_2651,Drop Off,51384-00011-1,1,4380_7778208_1011109,4380_28 -4380_77977,292,4380_26510,MTU,69801-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26511,MTU,69795-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26512,MTU,69803-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26513,MTU,69799-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26514,MTU,69797-00019-1,0,4380_7778208_2050201,4380_462 -4380_77977,297,4380_26517,MTU,70780-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26518,MTU,70778-00013-1,0,4380_7778208_2050212,4380_463 -4380_77977,296,4380_26519,MTU,70779-00021-1,0,4380_7778208_2050212,4380_463 -4380_77947,287,4380_2652,Drop Off,51382-00012-1,1,4380_7778208_1011109,4380_28 -4380_77977,285,4380_26525,MTU,70574-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26526,MTU,70580-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26527,MTU,70576-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26528,MTU,70582-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26529,MTU,70578-00014-1,0,4380_7778208_2050204,4380_462 -4380_77947,289,4380_2653,Drop Off,51378-00014-1,1,4380_7778208_1011109,4380_28 -4380_77977,292,4380_26530,MTU,70581-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26531,MTU,70577-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26532,MTU,70575-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26533,MTU,70583-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26534,MTU,70579-00019-1,0,4380_7778208_2050204,4380_462 -4380_77977,297,4380_26537,MTU,70717-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26538,MTU,70841-00013-1,0,4380_7778208_2050213,4380_463 -4380_77977,296,4380_26539,MTU,70842-00021-1,0,4380_7778208_2050213,4380_463 -4380_77947,290,4380_2654,Drop Off,51381-00015-1,1,4380_7778208_1011109,4380_28 -4380_77977,285,4380_26545,MTU,70098-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26546,MTU,70096-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26547,MTU,70100-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26548,MTU,70094-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26549,MTU,70102-00014-1,0,4380_7778208_2050202,4380_462 -4380_77947,291,4380_2655,Drop Off,50624-00013-1,1,4380_7778208_1011101,4380_32 -4380_77977,292,4380_26550,MTU,70097-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26551,MTU,70101-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26552,MTU,70099-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26553,MTU,70095-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26554,MTU,70103-00019-1,0,4380_7778208_2050202,4380_462 -4380_77947,292,4380_2656,Drop Off,51377-00016-1,1,4380_7778208_1011109,4380_28 -4380_77977,285,4380_26560,MTU,70386-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26561,MTU,70392-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26562,MTU,70384-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26563,MTU,70390-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26564,MTU,70388-00014-1,0,4380_7778208_2050203,4380_462 -4380_77977,292,4380_26565,MTU,70393-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26566,MTU,70385-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26567,MTU,70387-00015-1,0,4380_7778208_2050203,4380_462 -4380_77977,294,4380_26568,MTU,70391-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26569,MTU,70389-00019-1,0,4380_7778208_2050203,4380_462 -4380_77947,293,4380_2657,Drop Off,51385-00017-1,1,4380_7778208_1011109,4380_28 -4380_77977,297,4380_26572,MTU,70784-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26573,MTU,70719-00013-1,0,4380_7778208_2050211,4380_463 -4380_77977,296,4380_26574,MTU,70720-00021-1,0,4380_7778208_2050211,4380_463 -4380_77947,294,4380_2658,Drop Off,51383-00018-1,1,4380_7778208_1011109,4380_28 -4380_77977,285,4380_26580,MTU,69818-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26581,MTU,69822-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26582,MTU,69816-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26583,MTU,69820-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26584,MTU,69814-00014-1,0,4380_7778208_2050201,4380_462 -4380_77977,292,4380_26585,MTU,69823-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26586,MTU,69817-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26587,MTU,69819-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26588,MTU,69821-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26589,MTU,69815-00019-1,0,4380_7778208_2050201,4380_462 -4380_77947,295,4380_2659,Drop Off,51379-00019-1,1,4380_7778208_1011109,4380_28 -4380_77977,297,4380_26592,MTU,70721-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26593,MTU,70785-00013-1,0,4380_7778208_2050212,4380_463 -4380_77977,296,4380_26594,MTU,70786-00021-1,0,4380_7778208_2050212,4380_463 -4380_77947,296,4380_2660,Drop Off,50625-00021-1,1,4380_7778208_1011101,4380_32 -4380_77977,285,4380_26600,MTU,70598-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26601,MTU,70600-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26602,MTU,70594-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26603,MTU,70596-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26604,MTU,70602-00014-1,0,4380_7778208_2050204,4380_462 -4380_77977,292,4380_26605,MTU,70601-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26606,MTU,70595-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26607,MTU,70599-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26608,MTU,70597-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26609,MTU,70603-00019-1,0,4380_7778208_2050204,4380_462 -4380_77977,285,4380_26615,MTU,70116-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26616,MTU,70120-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26617,MTU,70114-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26618,MTU,70122-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26619,MTU,70118-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26620,MTU,70121-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26621,MTU,70115-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26622,MTU,70117-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26623,MTU,70123-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26624,MTU,70119-00019-1,0,4380_7778208_2050202,4380_462 -4380_77977,297,4380_26627,MTU,70788-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26628,MTU,70845-00013-1,0,4380_7778208_2050213,4380_463 -4380_77977,296,4380_26629,MTU,70846-00021-1,0,4380_7778208_2050213,4380_463 -4380_77977,285,4380_26635,MTU,70410-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26636,MTU,70412-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26637,MTU,70404-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26638,MTU,70406-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26639,MTU,70408-00014-1,0,4380_7778208_2050203,4380_462 -4380_77977,292,4380_26640,MTU,70413-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26641,MTU,70405-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26642,MTU,70411-00015-1,0,4380_7778208_2050203,4380_462 -4380_77977,294,4380_26643,MTU,70407-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26644,MTU,70409-00019-1,0,4380_7778208_2050203,4380_462 -4380_77977,297,4380_26647,MTU,70727-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26648,MTU,70725-00013-1,0,4380_7778208_2050211,4380_463 -4380_77977,296,4380_26649,MTU,70726-00021-1,0,4380_7778208_2050211,4380_463 -4380_77977,285,4380_26655,MTU,69834-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26656,MTU,69838-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26657,MTU,69840-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26658,MTU,69842-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26659,MTU,69836-00014-1,0,4380_7778208_2050201,4380_462 -4380_77947,285,4380_2666,Drop Off,51332-00009-1,1,4380_7778208_1011108,4380_28 -4380_77977,292,4380_26660,MTU,69839-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26661,MTU,69841-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26662,MTU,69835-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26663,MTU,69843-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26664,MTU,69837-00019-1,0,4380_7778208_2050201,4380_462 -4380_77947,286,4380_2667,Drop Off,51330-00010-1,1,4380_7778208_1011108,4380_28 -4380_77977,285,4380_26670,MTU,70616-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26671,MTU,70618-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26672,MTU,70622-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26673,MTU,70614-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26674,MTU,70620-00014-1,0,4380_7778208_2050204,4380_462 -4380_77977,292,4380_26675,MTU,70619-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26676,MTU,70623-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26677,MTU,70617-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26678,MTU,70615-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26679,MTU,70621-00019-1,0,4380_7778208_2050204,4380_462 -4380_77947,288,4380_2668,Drop Off,51334-00011-1,1,4380_7778208_1011108,4380_28 -4380_77977,297,4380_26682,MTU,70792-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26683,MTU,70793-00013-1,0,4380_7778208_2050212,4380_463 -4380_77977,296,4380_26684,MTU,70794-00021-1,0,4380_7778208_2050212,4380_463 -4380_77947,287,4380_2669,Drop Off,51336-00012-1,1,4380_7778208_1011108,4380_28 -4380_77977,285,4380_26690,MTU,70136-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26691,MTU,70138-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26692,MTU,70142-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26693,MTU,70140-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26694,MTU,70134-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26695,MTU,70139-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26696,MTU,70143-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26697,MTU,70137-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26698,MTU,70141-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26699,MTU,70135-00019-1,0,4380_7778208_2050202,4380_462 -4380_77947,289,4380_2670,Drop Off,51338-00014-1,1,4380_7778208_1011108,4380_28 -4380_77977,297,4380_26702,MTU,70731-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26703,MTU,70849-00013-1,0,4380_7778208_2050213,4380_463 -4380_77977,296,4380_26704,MTU,70850-00021-1,0,4380_7778208_2050213,4380_463 -4380_77947,290,4380_2671,Drop Off,51333-00015-1,1,4380_7778208_1011108,4380_28 -4380_77977,285,4380_26710,MTU,70426-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26711,MTU,70424-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26712,MTU,70428-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26713,MTU,70430-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26714,MTU,70432-00014-1,0,4380_7778208_2050203,4380_462 -4380_77977,292,4380_26715,MTU,70425-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26716,MTU,70429-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26717,MTU,70427-00015-1,0,4380_7778208_2050203,4380_462 -4380_77977,294,4380_26718,MTU,70431-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26719,MTU,70433-00019-1,0,4380_7778208_2050203,4380_462 -4380_77947,292,4380_2672,Drop Off,51331-00016-1,1,4380_7778208_1011108,4380_28 -4380_77977,285,4380_26725,MTU,69860-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26726,MTU,69858-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26727,MTU,69862-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26728,MTU,69856-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26729,MTU,69854-00014-1,0,4380_7778208_2050201,4380_462 -4380_77947,293,4380_2673,Drop Off,51335-00017-1,1,4380_7778208_1011108,4380_28 -4380_77977,292,4380_26730,MTU,69859-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26731,MTU,69863-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26732,MTU,69861-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26733,MTU,69857-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26734,MTU,69855-00019-1,0,4380_7778208_2050201,4380_462 -4380_77977,297,4380_26737,MTU,70798-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26738,MTU,70733-00013-1,0,4380_7778208_2050211,4380_463 -4380_77977,296,4380_26739,MTU,70734-00021-1,0,4380_7778208_2050211,4380_463 -4380_77947,294,4380_2674,Drop Off,51337-00018-1,1,4380_7778208_1011108,4380_28 -4380_77977,285,4380_26745,MTU,70638-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26746,MTU,70640-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26747,MTU,70634-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26748,MTU,70636-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26749,MTU,70642-00014-1,0,4380_7778208_2050204,4380_462 -4380_77947,295,4380_2675,Drop Off,51339-00019-1,1,4380_7778208_1011108,4380_28 -4380_77977,292,4380_26750,MTU,70641-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26751,MTU,70635-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26752,MTU,70639-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26753,MTU,70637-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26754,MTU,70643-00019-1,0,4380_7778208_2050204,4380_462 -4380_77977,297,4380_26757,MTU,70735-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26758,MTU,70799-00013-1,0,4380_7778208_2050212,4380_463 -4380_77977,296,4380_26759,MTU,70800-00021-1,0,4380_7778208_2050212,4380_463 -4380_77977,285,4380_26765,MTU,70162-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26766,MTU,70160-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26767,MTU,70154-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26768,MTU,70158-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26769,MTU,70156-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26770,MTU,70161-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26771,MTU,70155-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26772,MTU,70163-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26773,MTU,70159-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26774,MTU,70157-00019-1,0,4380_7778208_2050202,4380_462 -4380_77947,297,4380_2678,Drop Off,51228-00008-1,1,4380_7778208_1011107,4380_28 -4380_77977,285,4380_26780,MTU,70444-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26781,MTU,70450-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26782,MTU,70448-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26783,MTU,70452-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26784,MTU,70446-00014-1,0,4380_7778208_2050203,4380_462 -4380_77977,292,4380_26785,MTU,70451-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26786,MTU,70449-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26787,MTU,70445-00015-1,0,4380_7778208_2050203,4380_462 -4380_77977,294,4380_26788,MTU,70453-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26789,MTU,70447-00019-1,0,4380_7778208_2050203,4380_462 -4380_77947,291,4380_2679,Drop Off,51226-00013-1,1,4380_7778208_1011107,4380_30 -4380_77977,297,4380_26792,MTU,70804-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26793,MTU,70853-00013-1,0,4380_7778208_2050213,4380_463 -4380_77977,296,4380_26794,MTU,70854-00021-1,0,4380_7778208_2050213,4380_463 -4380_77947,296,4380_2680,Drop Off,51227-00021-1,1,4380_7778208_1011107,4380_30 -4380_77977,285,4380_26800,MTU,69878-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26801,MTU,69876-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26802,MTU,69874-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26803,MTU,69880-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26804,MTU,69882-00014-1,0,4380_7778208_2050201,4380_462 -4380_77977,292,4380_26805,MTU,69877-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26806,MTU,69875-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26807,MTU,69879-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26808,MTU,69881-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26809,MTU,69883-00019-1,0,4380_7778208_2050201,4380_462 -4380_77977,297,4380_26812,MTU,70739-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26813,MTU,70806-00013-1,0,4380_7778208_2050212,4380_463 -4380_77977,296,4380_26814,MTU,70807-00021-1,0,4380_7778208_2050212,4380_463 -4380_77977,285,4380_26820,MTU,70662-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26821,MTU,70654-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26822,MTU,70658-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26823,MTU,70660-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26824,MTU,70656-00014-1,0,4380_7778208_2050204,4380_462 -4380_77977,292,4380_26825,MTU,70655-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26826,MTU,70659-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26827,MTU,70663-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26828,MTU,70661-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26829,MTU,70657-00019-1,0,4380_7778208_2050204,4380_462 -4380_77977,285,4380_26835,MTU,70182-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26836,MTU,70180-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26837,MTU,70176-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26838,MTU,70174-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26839,MTU,70178-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26840,MTU,70181-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26841,MTU,70177-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26842,MTU,70183-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26843,MTU,70175-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26844,MTU,70179-00019-1,0,4380_7778208_2050202,4380_462 -4380_77977,297,4380_26847,MTU,70808-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26848,MTU,70857-00013-1,0,4380_7778208_2050213,4380_463 -4380_77977,296,4380_26849,MTU,70858-00021-1,0,4380_7778208_2050213,4380_463 -4380_77977,285,4380_26855,MTU,70464-00009-1,0,4380_7778208_2050203,4380_462 -4380_77977,286,4380_26856,MTU,70466-00010-1,0,4380_7778208_2050203,4380_462 -4380_77977,288,4380_26857,MTU,70470-00011-1,0,4380_7778208_2050203,4380_462 -4380_77977,287,4380_26858,MTU,70468-00012-1,0,4380_7778208_2050203,4380_462 -4380_77977,289,4380_26859,MTU,70472-00014-1,0,4380_7778208_2050203,4380_462 -4380_77947,285,4380_2686,Drop Off,51060-00009-1,1,4380_7778208_1011105,4380_28 -4380_77977,292,4380_26860,MTU,70467-00016-1,0,4380_7778208_2050203,4380_462 -4380_77977,293,4380_26861,MTU,70471-00017-1,0,4380_7778208_2050203,4380_462 -4380_77977,290,4380_26862,MTU,70465-00015-1,0,4380_7778208_2050203,4380_462 -4380_77977,294,4380_26863,MTU,70469-00018-1,0,4380_7778208_2050203,4380_462 -4380_77977,295,4380_26864,MTU,70473-00019-1,0,4380_7778208_2050203,4380_462 -4380_77977,297,4380_26867,MTU,70741-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26868,MTU,70811-00013-1,0,4380_7778208_2050212,4380_462 -4380_77977,296,4380_26869,MTU,70812-00021-1,0,4380_7778208_2050212,4380_462 -4380_77947,286,4380_2687,Drop Off,51058-00010-1,1,4380_7778208_1011105,4380_28 -4380_77977,285,4380_26875,MTU,69902-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26876,MTU,69900-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26877,MTU,69896-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26878,MTU,69894-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26879,MTU,69898-00014-1,0,4380_7778208_2050201,4380_462 -4380_77947,288,4380_2688,Drop Off,51054-00011-1,1,4380_7778208_1011105,4380_28 -4380_77977,292,4380_26880,MTU,69901-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26881,MTU,69897-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26882,MTU,69903-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26883,MTU,69895-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26884,MTU,69899-00019-1,0,4380_7778208_2050201,4380_462 -4380_77947,287,4380_2689,Drop Off,51052-00012-1,1,4380_7778208_1011105,4380_28 -4380_77977,285,4380_26890,MTU,70198-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26891,MTU,70200-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,288,4380_26892,MTU,70202-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26893,MTU,70194-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,289,4380_26894,MTU,70196-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26895,MTU,70201-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26896,MTU,70203-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26897,MTU,70199-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26898,MTU,70195-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26899,MTU,70197-00019-1,0,4380_7778208_2050202,4380_462 -4380_77947,289,4380_2690,Drop Off,51056-00014-1,1,4380_7778208_1011105,4380_28 -4380_77977,297,4380_26902,MTU,70814-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,291,4380_26903,MTU,70861-00013-1,0,4380_7778208_2050213,4380_462 -4380_77977,296,4380_26904,MTU,70862-00021-1,0,4380_7778208_2050213,4380_462 -4380_77947,290,4380_2691,Drop Off,51061-00015-1,1,4380_7778208_1011105,4380_28 -4380_77977,285,4380_26910,MTU,70680-00009-1,0,4380_7778208_2050204,4380_462 -4380_77977,286,4380_26911,MTU,70682-00010-1,0,4380_7778208_2050204,4380_462 -4380_77977,288,4380_26912,MTU,70676-00011-1,0,4380_7778208_2050204,4380_462 -4380_77977,287,4380_26913,MTU,70674-00012-1,0,4380_7778208_2050204,4380_462 -4380_77977,289,4380_26914,MTU,70678-00014-1,0,4380_7778208_2050204,4380_462 -4380_77977,292,4380_26915,MTU,70683-00016-1,0,4380_7778208_2050204,4380_462 -4380_77977,293,4380_26916,MTU,70677-00017-1,0,4380_7778208_2050204,4380_462 -4380_77977,290,4380_26917,MTU,70681-00015-1,0,4380_7778208_2050204,4380_462 -4380_77977,294,4380_26918,MTU,70675-00018-1,0,4380_7778208_2050204,4380_462 -4380_77977,295,4380_26919,MTU,70679-00019-1,0,4380_7778208_2050204,4380_462 -4380_77947,292,4380_2692,Drop Off,51059-00016-1,1,4380_7778208_1011105,4380_28 -4380_77977,297,4380_26922,MTU,70743-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,291,4380_26923,MTU,70818-00013-1,0,4380_7778208_2050212,4380_462 -4380_77977,296,4380_26924,MTU,70819-00021-1,0,4380_7778208_2050212,4380_462 -4380_77947,293,4380_2693,Drop Off,51055-00017-1,1,4380_7778208_1011105,4380_28 -4380_77977,285,4380_26930,MTU,69920-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26931,MTU,69916-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,288,4380_26932,MTU,69914-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26933,MTU,69918-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,289,4380_26934,MTU,69922-00014-1,0,4380_7778208_2050201,4380_462 -4380_77977,292,4380_26935,MTU,69917-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26936,MTU,69915-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26937,MTU,69921-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26938,MTU,69919-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26939,MTU,69923-00019-1,0,4380_7778208_2050201,4380_462 -4380_77947,294,4380_2694,Drop Off,51053-00018-1,1,4380_7778208_1011105,4380_28 -4380_77977,285,4380_26947,MTU,70214-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26948,MTU,70222-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,297,4380_26949,MTU,70820-00008-1,0,4380_7778208_2050212,4380_462 -4380_77947,295,4380_2695,Drop Off,51057-00019-1,1,4380_7778208_1011105,4380_28 -4380_77977,288,4380_26950,MTU,70220-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26951,MTU,70218-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,291,4380_26952,MTU,70865-00013-1,0,4380_7778208_2050213,4380_462 -4380_77977,289,4380_26953,MTU,70216-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26954,MTU,70223-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26955,MTU,70221-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26956,MTU,70215-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26957,MTU,70219-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26958,MTU,70217-00019-1,0,4380_7778208_2050202,4380_462 -4380_77977,296,4380_26959,MTU,70866-00021-1,0,4380_7778208_2050213,4380_462 -4380_77977,285,4380_26967,MTU,69938-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_26968,MTU,69936-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,297,4380_26969,MTU,70745-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,288,4380_26970,MTU,69934-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_26971,MTU,69940-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,291,4380_26972,MTU,70824-00013-1,0,4380_7778208_2050212,4380_462 -4380_77977,289,4380_26973,MTU,69942-00014-1,0,4380_7778208_2050201,4380_462 -4380_77977,292,4380_26974,MTU,69937-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_26975,MTU,69935-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_26976,MTU,69939-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_26977,MTU,69941-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_26978,MTU,69943-00019-1,0,4380_7778208_2050201,4380_462 -4380_77977,296,4380_26979,MTU,70825-00021-1,0,4380_7778208_2050212,4380_462 -4380_77977,285,4380_26987,MTU,70238-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_26988,MTU,70240-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,297,4380_26989,MTU,70826-00008-1,0,4380_7778208_2050212,4380_462 -4380_77977,288,4380_26990,MTU,70242-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_26991,MTU,70234-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,291,4380_26992,MTU,70869-00013-1,0,4380_7778208_2050213,4380_462 -4380_77977,289,4380_26993,MTU,70236-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_26994,MTU,70241-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_26995,MTU,70243-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_26996,MTU,70239-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_26997,MTU,70235-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_26998,MTU,70237-00019-1,0,4380_7778208_2050202,4380_462 -4380_77977,296,4380_26999,MTU,70870-00021-1,0,4380_7778208_2050213,4380_462 -4380_77946,289,4380_27,Dundalk,114773-00014-1,0,4380_7778208_10088801,4380_3 -4380_77977,285,4380_27007,MTU,69960-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_27008,MTU,69954-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,297,4380_27009,MTU,70747-00008-1,0,4380_7778208_2050211,4380_462 -4380_77977,288,4380_27010,MTU,69958-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_27011,MTU,69956-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,291,4380_27012,MTU,70830-00013-1,0,4380_7778208_2050212,4380_462 -4380_77977,289,4380_27013,MTU,69962-00014-1,0,4380_7778208_2050201,4380_462 -4380_77977,292,4380_27014,MTU,69955-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_27015,MTU,69959-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_27016,MTU,69961-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_27017,MTU,69957-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_27018,MTU,69963-00019-1,0,4380_7778208_2050201,4380_462 -4380_77977,296,4380_27019,MTU,70831-00021-1,0,4380_7778208_2050212,4380_462 -4380_77977,285,4380_27027,MTU,70262-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_27028,MTU,70256-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,297,4380_27029,MTU,70834-00008-1,0,4380_7778208_2050212,4380_462 -4380_77947,285,4380_2703,Drop Off,51159-00009-1,1,4380_7778208_1011106,4380_28 -4380_77977,288,4380_27030,MTU,70258-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_27031,MTU,70260-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,291,4380_27032,MTU,70873-00013-1,0,4380_7778208_2050213,4380_462 -4380_77977,289,4380_27033,MTU,70254-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_27034,MTU,70257-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_27035,MTU,70259-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_27036,MTU,70263-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_27037,MTU,70261-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_27038,MTU,70255-00019-1,0,4380_7778208_2050202,4380_462 -4380_77977,296,4380_27039,MTU,70874-00021-1,0,4380_7778208_2050213,4380_462 -4380_77947,286,4380_2704,Drop Off,51157-00010-1,1,4380_7778208_1011106,4380_28 -4380_77977,285,4380_27047,MTU,69974-00009-1,0,4380_7778208_2050201,4380_462 -4380_77977,286,4380_27048,MTU,69976-00010-1,0,4380_7778208_2050201,4380_462 -4380_77977,297,4380_27049,MTU,70749-00008-1,0,4380_7778208_2050211,4380_462 -4380_77947,297,4380_2705,Drop Off,50626-00008-1,1,4380_7778208_1011101,4380_30 -4380_77977,288,4380_27050,MTU,69980-00011-1,0,4380_7778208_2050201,4380_462 -4380_77977,287,4380_27051,MTU,69982-00012-1,0,4380_7778208_2050201,4380_462 -4380_77977,291,4380_27052,MTU,70835-00013-1,0,4380_7778208_2050212,4380_462 -4380_77977,289,4380_27053,MTU,69978-00014-1,0,4380_7778208_2050201,4380_462 -4380_77977,292,4380_27054,MTU,69977-00016-1,0,4380_7778208_2050201,4380_462 -4380_77977,293,4380_27055,MTU,69981-00017-1,0,4380_7778208_2050201,4380_462 -4380_77977,290,4380_27056,MTU,69975-00015-1,0,4380_7778208_2050201,4380_462 -4380_77977,294,4380_27057,MTU,69983-00018-1,0,4380_7778208_2050201,4380_462 -4380_77977,295,4380_27058,MTU,69979-00019-1,0,4380_7778208_2050201,4380_462 -4380_77977,296,4380_27059,MTU,70836-00021-1,0,4380_7778208_2050212,4380_462 -4380_77947,288,4380_2706,Drop Off,51161-00011-1,1,4380_7778208_1011106,4380_28 -4380_77977,285,4380_27067,MTU,70276-00009-1,0,4380_7778208_2050202,4380_462 -4380_77977,286,4380_27068,MTU,70278-00010-1,0,4380_7778208_2050202,4380_462 -4380_77977,297,4380_27069,MTU,70838-00008-1,0,4380_7778208_2050212,4380_462 -4380_77947,287,4380_2707,Drop Off,51153-00012-1,1,4380_7778208_1011106,4380_28 -4380_77977,288,4380_27070,MTU,70280-00011-1,0,4380_7778208_2050202,4380_462 -4380_77977,287,4380_27071,MTU,70274-00012-1,0,4380_7778208_2050202,4380_462 -4380_77977,291,4380_27072,MTU,70877-00013-1,0,4380_7778208_2050213,4380_462 -4380_77977,289,4380_27073,MTU,70282-00014-1,0,4380_7778208_2050202,4380_462 -4380_77977,292,4380_27074,MTU,70279-00016-1,0,4380_7778208_2050202,4380_462 -4380_77977,293,4380_27075,MTU,70281-00017-1,0,4380_7778208_2050202,4380_462 -4380_77977,290,4380_27076,MTU,70277-00015-1,0,4380_7778208_2050202,4380_462 -4380_77977,294,4380_27077,MTU,70275-00018-1,0,4380_7778208_2050202,4380_462 -4380_77977,295,4380_27078,MTU,70283-00019-1,0,4380_7778208_2050202,4380_462 -4380_77977,296,4380_27079,MTU,70878-00021-1,0,4380_7778208_2050213,4380_462 -4380_77947,289,4380_2708,Drop Off,51163-00014-1,1,4380_7778208_1011106,4380_28 -4380_77977,285,4380_27085,Kent Train Station,69704-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27086,Kent Train Station,69712-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,288,4380_27087,Kent Train Station,69710-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27088,Kent Train Station,69708-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27089,Kent Train Station,69706-00014-1,1,4380_7778208_2050201,4380_464 -4380_77947,290,4380_2709,Drop Off,51160-00015-1,1,4380_7778208_1011106,4380_28 -4380_77977,292,4380_27090,Kent Train Station,69713-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27091,Kent Train Station,69711-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27092,Kent Train Station,69705-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27093,Kent Train Station,69709-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27094,Kent Train Station,69707-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,291,4380_27096,Kent Train Station,70684-00013-1,1,4380_7778208_2050211,4380_464 -4380_77977,296,4380_27097,Kent Train Station,70685-00021-1,1,4380_7778208_2050211,4380_464 -4380_77947,291,4380_2710,Drop Off,50847-00013-1,1,4380_7778208_1011103,4380_32 -4380_77977,285,4380_27103,Kent Train Station,70490-00009-1,1,4380_7778208_2050204,4380_464 -4380_77977,286,4380_27104,Kent Train Station,70492-00010-1,1,4380_7778208_2050204,4380_464 -4380_77977,288,4380_27105,Kent Train Station,70488-00011-1,1,4380_7778208_2050204,4380_464 -4380_77977,287,4380_27106,Kent Train Station,70486-00012-1,1,4380_7778208_2050204,4380_464 -4380_77977,289,4380_27107,Kent Train Station,70484-00014-1,1,4380_7778208_2050204,4380_464 -4380_77977,292,4380_27108,Kent Train Station,70493-00016-1,1,4380_7778208_2050204,4380_464 -4380_77977,293,4380_27109,Kent Train Station,70489-00017-1,1,4380_7778208_2050204,4380_464 -4380_77947,292,4380_2711,Drop Off,51158-00016-1,1,4380_7778208_1011106,4380_28 -4380_77977,290,4380_27110,Kent Train Station,70491-00015-1,1,4380_7778208_2050204,4380_464 -4380_77977,294,4380_27111,Kent Train Station,70487-00018-1,1,4380_7778208_2050204,4380_464 -4380_77977,295,4380_27112,Kent Train Station,70485-00019-1,1,4380_7778208_2050204,4380_464 -4380_77977,291,4380_27114,Kent Train Station,70751-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,296,4380_27115,Kent Train Station,70752-00021-1,1,4380_7778208_2050212,4380_464 -4380_77947,293,4380_2712,Drop Off,51162-00017-1,1,4380_7778208_1011106,4380_28 -4380_77977,285,4380_27121,Kent Train Station,70012-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27122,Kent Train Station,70004-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,288,4380_27123,Kent Train Station,70010-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27124,Kent Train Station,70006-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27125,Kent Train Station,70008-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27126,Kent Train Station,70005-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27127,Kent Train Station,70011-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27128,Kent Train Station,70013-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27129,Kent Train Station,70007-00018-1,1,4380_7778208_2050202,4380_464 -4380_77947,294,4380_2713,Drop Off,51154-00018-1,1,4380_7778208_1011106,4380_28 -4380_77977,295,4380_27130,Kent Train Station,70009-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,285,4380_27136,Kent Train Station,70294-00009-1,1,4380_7778208_2050203,4380_464 -4380_77977,286,4380_27137,Kent Train Station,70296-00010-1,1,4380_7778208_2050203,4380_464 -4380_77977,288,4380_27138,Kent Train Station,70298-00011-1,1,4380_7778208_2050203,4380_464 -4380_77977,287,4380_27139,Kent Train Station,70302-00012-1,1,4380_7778208_2050203,4380_464 -4380_77947,295,4380_2714,Drop Off,51164-00019-1,1,4380_7778208_1011106,4380_28 -4380_77977,289,4380_27140,Kent Train Station,70300-00014-1,1,4380_7778208_2050203,4380_464 -4380_77977,292,4380_27141,Kent Train Station,70297-00016-1,1,4380_7778208_2050203,4380_464 -4380_77977,293,4380_27142,Kent Train Station,70299-00017-1,1,4380_7778208_2050203,4380_464 -4380_77977,290,4380_27143,Kent Train Station,70295-00015-1,1,4380_7778208_2050203,4380_464 -4380_77977,294,4380_27144,Kent Train Station,70303-00018-1,1,4380_7778208_2050203,4380_464 -4380_77977,295,4380_27145,Kent Train Station,70301-00019-1,1,4380_7778208_2050203,4380_464 -4380_77977,291,4380_27147,Kent Train Station,70688-00013-1,1,4380_7778208_2050211,4380_464 -4380_77977,296,4380_27148,Kent Train Station,70689-00021-1,1,4380_7778208_2050211,4380_464 -4380_77947,296,4380_2715,Drop Off,50848-00021-1,1,4380_7778208_1011103,4380_32 -4380_77977,285,4380_27154,Kent Train Station,69724-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27155,Kent Train Station,69726-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,288,4380_27156,Kent Train Station,69732-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27157,Kent Train Station,69728-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27158,Kent Train Station,69730-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27159,Kent Train Station,69727-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27160,Kent Train Station,69733-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27161,Kent Train Station,69725-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27162,Kent Train Station,69729-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27163,Kent Train Station,69731-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,291,4380_27165,Kent Train Station,70755-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,296,4380_27166,Kent Train Station,70756-00021-1,1,4380_7778208_2050212,4380_464 -4380_77977,285,4380_27172,Kent Train Station,70504-00009-1,1,4380_7778208_2050204,4380_464 -4380_77977,286,4380_27173,Kent Train Station,70510-00010-1,1,4380_7778208_2050204,4380_464 -4380_77977,288,4380_27174,Kent Train Station,70508-00011-1,1,4380_7778208_2050204,4380_464 -4380_77977,287,4380_27175,Kent Train Station,70512-00012-1,1,4380_7778208_2050204,4380_464 -4380_77977,289,4380_27176,Kent Train Station,70506-00014-1,1,4380_7778208_2050204,4380_464 -4380_77977,292,4380_27177,Kent Train Station,70511-00016-1,1,4380_7778208_2050204,4380_464 -4380_77977,293,4380_27178,Kent Train Station,70509-00017-1,1,4380_7778208_2050204,4380_464 -4380_77977,290,4380_27179,Kent Train Station,70505-00015-1,1,4380_7778208_2050204,4380_464 -4380_77977,294,4380_27180,Kent Train Station,70513-00018-1,1,4380_7778208_2050204,4380_464 -4380_77977,295,4380_27181,Kent Train Station,70507-00019-1,1,4380_7778208_2050204,4380_464 -4380_77977,285,4380_27187,Kent Train Station,70030-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27188,Kent Train Station,70024-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,288,4380_27189,Kent Train Station,70032-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27190,Kent Train Station,70028-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27191,Kent Train Station,70026-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27192,Kent Train Station,70025-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27193,Kent Train Station,70033-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27194,Kent Train Station,70031-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27195,Kent Train Station,70029-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27196,Kent Train Station,70027-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,291,4380_27198,Kent Train Station,70692-00013-1,1,4380_7778208_2050211,4380_464 -4380_77977,296,4380_27199,Kent Train Station,70693-00021-1,1,4380_7778208_2050211,4380_464 -4380_77946,285,4380_272,Dundalk,50531-00009-1,0,4380_7778208_1000915,4380_1 -4380_77977,285,4380_27205,Kent Train Station,70322-00009-1,1,4380_7778208_2050203,4380_464 -4380_77977,286,4380_27206,Kent Train Station,70314-00010-1,1,4380_7778208_2050203,4380_464 -4380_77977,288,4380_27207,Kent Train Station,70320-00011-1,1,4380_7778208_2050203,4380_464 -4380_77977,287,4380_27208,Kent Train Station,70318-00012-1,1,4380_7778208_2050203,4380_464 -4380_77977,289,4380_27209,Kent Train Station,70316-00014-1,1,4380_7778208_2050203,4380_464 -4380_77947,285,4380_2721,Drop Off,50629-00009-1,1,4380_7778208_1011101,4380_28 -4380_77977,292,4380_27210,Kent Train Station,70315-00016-1,1,4380_7778208_2050203,4380_464 -4380_77977,293,4380_27211,Kent Train Station,70321-00017-1,1,4380_7778208_2050203,4380_464 -4380_77977,290,4380_27212,Kent Train Station,70323-00015-1,1,4380_7778208_2050203,4380_464 -4380_77977,294,4380_27213,Kent Train Station,70319-00018-1,1,4380_7778208_2050203,4380_464 -4380_77977,295,4380_27214,Kent Train Station,70317-00019-1,1,4380_7778208_2050203,4380_464 -4380_77977,291,4380_27216,Kent Train Station,70759-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,296,4380_27217,Kent Train Station,70760-00021-1,1,4380_7778208_2050212,4380_464 -4380_77947,286,4380_2722,Drop Off,50631-00010-1,1,4380_7778208_1011101,4380_28 -4380_77977,285,4380_27223,Kent Train Station,69744-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27224,Kent Train Station,69748-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,288,4380_27225,Kent Train Station,69746-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27226,Kent Train Station,69752-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27227,Kent Train Station,69750-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27228,Kent Train Station,69749-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27229,Kent Train Station,69747-00017-1,1,4380_7778208_2050201,4380_464 -4380_77947,287,4380_2723,Drop Off,50627-00012-1,1,4380_7778208_1011101,4380_28 -4380_77977,290,4380_27230,Kent Train Station,69745-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27231,Kent Train Station,69753-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27232,Kent Train Station,69751-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,285,4380_27238,Kent Train Station,70526-00009-1,1,4380_7778208_2050204,4380_464 -4380_77977,286,4380_27239,Kent Train Station,70528-00010-1,1,4380_7778208_2050204,4380_464 -4380_77947,288,4380_2724,Drop Off,50633-00011-1,1,4380_7778208_1011101,4380_28 -4380_77977,288,4380_27240,Kent Train Station,70524-00011-1,1,4380_7778208_2050204,4380_464 -4380_77977,287,4380_27241,Kent Train Station,70532-00012-1,1,4380_7778208_2050204,4380_464 -4380_77977,289,4380_27242,Kent Train Station,70530-00014-1,1,4380_7778208_2050204,4380_464 -4380_77977,292,4380_27243,Kent Train Station,70529-00016-1,1,4380_7778208_2050204,4380_464 -4380_77977,293,4380_27244,Kent Train Station,70525-00017-1,1,4380_7778208_2050204,4380_464 -4380_77977,290,4380_27245,Kent Train Station,70527-00015-1,1,4380_7778208_2050204,4380_464 -4380_77977,294,4380_27246,Kent Train Station,70533-00018-1,1,4380_7778208_2050204,4380_464 -4380_77977,295,4380_27247,Kent Train Station,70531-00019-1,1,4380_7778208_2050204,4380_464 -4380_77947,289,4380_2725,Drop Off,50635-00014-1,1,4380_7778208_1011101,4380_28 -4380_77977,297,4380_27250,Kent Train Station,70696-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,291,4380_27251,Kent Train Station,70697-00013-1,1,4380_7778208_2050211,4380_466 -4380_77977,296,4380_27252,Kent Train Station,70698-00021-1,1,4380_7778208_2050211,4380_466 -4380_77977,285,4380_27258,Kent Train Station,70050-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27259,Kent Train Station,70048-00010-1,1,4380_7778208_2050202,4380_464 -4380_77947,290,4380_2726,Drop Off,50630-00015-1,1,4380_7778208_1011101,4380_28 -4380_77977,288,4380_27260,Kent Train Station,70044-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27261,Kent Train Station,70046-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27262,Kent Train Station,70052-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27263,Kent Train Station,70049-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27264,Kent Train Station,70045-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27265,Kent Train Station,70051-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27266,Kent Train Station,70047-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27267,Kent Train Station,70053-00019-1,1,4380_7778208_2050202,4380_464 -4380_77947,292,4380_2727,Drop Off,50632-00016-1,1,4380_7778208_1011101,4380_28 -4380_77977,297,4380_27270,Kent Train Station,70763-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,291,4380_27271,Kent Train Station,70764-00013-1,1,4380_7778208_2050212,4380_466 -4380_77977,296,4380_27272,Kent Train Station,70765-00021-1,1,4380_7778208_2050212,4380_466 -4380_77977,285,4380_27278,Kent Train Station,70340-00009-1,1,4380_7778208_2050203,4380_464 -4380_77977,286,4380_27279,Kent Train Station,70336-00010-1,1,4380_7778208_2050203,4380_464 -4380_77947,293,4380_2728,Drop Off,50634-00017-1,1,4380_7778208_1011101,4380_28 -4380_77977,288,4380_27280,Kent Train Station,70338-00011-1,1,4380_7778208_2050203,4380_464 -4380_77977,287,4380_27281,Kent Train Station,70334-00012-1,1,4380_7778208_2050203,4380_464 -4380_77977,289,4380_27282,Kent Train Station,70342-00014-1,1,4380_7778208_2050203,4380_464 -4380_77977,292,4380_27283,Kent Train Station,70337-00016-1,1,4380_7778208_2050203,4380_464 -4380_77977,293,4380_27284,Kent Train Station,70339-00017-1,1,4380_7778208_2050203,4380_464 -4380_77977,290,4380_27285,Kent Train Station,70341-00015-1,1,4380_7778208_2050203,4380_464 -4380_77977,294,4380_27286,Kent Train Station,70335-00018-1,1,4380_7778208_2050203,4380_464 -4380_77977,295,4380_27287,Kent Train Station,70343-00019-1,1,4380_7778208_2050203,4380_464 -4380_77947,294,4380_2729,Drop Off,50628-00018-1,1,4380_7778208_1011101,4380_28 -4380_77977,285,4380_27293,Kent Train Station,69768-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27294,Kent Train Station,69770-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,288,4380_27295,Kent Train Station,69764-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27296,Kent Train Station,69766-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27297,Kent Train Station,69772-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27298,Kent Train Station,69771-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27299,Kent Train Station,69765-00017-1,1,4380_7778208_2050201,4380_464 -4380_77946,286,4380_273,Dundalk,50533-00010-1,0,4380_7778208_1000915,4380_1 -4380_77947,295,4380_2730,Drop Off,50636-00019-1,1,4380_7778208_1011101,4380_28 -4380_77977,290,4380_27300,Kent Train Station,69769-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27301,Kent Train Station,69767-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27302,Kent Train Station,69773-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,297,4380_27305,Kent Train Station,70702-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,291,4380_27306,Kent Train Station,70703-00013-1,1,4380_7778208_2050211,4380_466 -4380_77977,296,4380_27307,Kent Train Station,70704-00021-1,1,4380_7778208_2050211,4380_466 -4380_77977,285,4380_27313,Kent Train Station,70546-00009-1,1,4380_7778208_2050204,4380_464 -4380_77977,286,4380_27314,Kent Train Station,70550-00010-1,1,4380_7778208_2050204,4380_464 -4380_77977,288,4380_27315,Kent Train Station,70544-00011-1,1,4380_7778208_2050204,4380_464 -4380_77977,287,4380_27316,Kent Train Station,70548-00012-1,1,4380_7778208_2050204,4380_464 -4380_77977,289,4380_27317,Kent Train Station,70552-00014-1,1,4380_7778208_2050204,4380_464 -4380_77977,292,4380_27318,Kent Train Station,70551-00016-1,1,4380_7778208_2050204,4380_464 -4380_77977,293,4380_27319,Kent Train Station,70545-00017-1,1,4380_7778208_2050204,4380_464 -4380_77977,290,4380_27320,Kent Train Station,70547-00015-1,1,4380_7778208_2050204,4380_464 -4380_77977,294,4380_27321,Kent Train Station,70549-00018-1,1,4380_7778208_2050204,4380_464 -4380_77977,295,4380_27322,Kent Train Station,70553-00019-1,1,4380_7778208_2050204,4380_464 -4380_77977,297,4380_27325,Kent Train Station,70769-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,291,4380_27326,Kent Train Station,70770-00013-1,1,4380_7778208_2050212,4380_466 -4380_77977,296,4380_27327,Kent Train Station,70771-00021-1,1,4380_7778208_2050212,4380_466 -4380_77947,297,4380_2733,Drop Off,50968-00008-1,1,4380_7778208_1011104,4380_28 -4380_77977,285,4380_27333,Kent Train Station,70066-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27334,Kent Train Station,70070-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,288,4380_27335,Kent Train Station,70072-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27336,Kent Train Station,70068-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27337,Kent Train Station,70064-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27338,Kent Train Station,70071-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27339,Kent Train Station,70073-00017-1,1,4380_7778208_2050202,4380_464 -4380_77947,291,4380_2734,Drop Off,50969-00013-1,1,4380_7778208_1011104,4380_30 -4380_77977,290,4380_27340,Kent Train Station,70067-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27341,Kent Train Station,70069-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27342,Kent Train Station,70065-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,285,4380_27348,Kent Train Station,70356-00009-1,1,4380_7778208_2050203,4380_464 -4380_77977,286,4380_27349,Kent Train Station,70354-00010-1,1,4380_7778208_2050203,4380_464 -4380_77947,296,4380_2735,Drop Off,50970-00021-1,1,4380_7778208_1011104,4380_30 -4380_77977,288,4380_27350,Kent Train Station,70362-00011-1,1,4380_7778208_2050203,4380_464 -4380_77977,287,4380_27351,Kent Train Station,70358-00012-1,1,4380_7778208_2050203,4380_464 -4380_77977,289,4380_27352,Kent Train Station,70360-00014-1,1,4380_7778208_2050203,4380_464 -4380_77977,292,4380_27353,Kent Train Station,70355-00016-1,1,4380_7778208_2050203,4380_464 -4380_77977,293,4380_27354,Kent Train Station,70363-00017-1,1,4380_7778208_2050203,4380_464 -4380_77977,290,4380_27355,Kent Train Station,70357-00015-1,1,4380_7778208_2050203,4380_464 -4380_77977,294,4380_27356,Kent Train Station,70359-00018-1,1,4380_7778208_2050203,4380_464 -4380_77977,295,4380_27357,Kent Train Station,70361-00019-1,1,4380_7778208_2050203,4380_464 -4380_77977,297,4380_27360,Kent Train Station,70708-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,291,4380_27361,Kent Train Station,70709-00013-1,1,4380_7778208_2050211,4380_466 -4380_77977,296,4380_27362,Kent Train Station,70710-00021-1,1,4380_7778208_2050211,4380_466 -4380_77977,285,4380_27368,Kent Train Station,69792-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27369,Kent Train Station,69788-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,288,4380_27370,Kent Train Station,69784-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27371,Kent Train Station,69786-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27372,Kent Train Station,69790-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27373,Kent Train Station,69789-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27374,Kent Train Station,69785-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27375,Kent Train Station,69793-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27376,Kent Train Station,69787-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27377,Kent Train Station,69791-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,297,4380_27380,Kent Train Station,70777-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,291,4380_27381,Kent Train Station,70775-00013-1,1,4380_7778208_2050212,4380_466 -4380_77977,296,4380_27382,Kent Train Station,70776-00021-1,1,4380_7778208_2050212,4380_466 -4380_77977,285,4380_27388,Kent Train Station,70566-00009-1,1,4380_7778208_2050204,4380_464 -4380_77977,286,4380_27389,Kent Train Station,70564-00010-1,1,4380_7778208_2050204,4380_464 -4380_77977,288,4380_27390,Kent Train Station,70570-00011-1,1,4380_7778208_2050204,4380_464 -4380_77977,287,4380_27391,Kent Train Station,70568-00012-1,1,4380_7778208_2050204,4380_464 -4380_77977,289,4380_27392,Kent Train Station,70572-00014-1,1,4380_7778208_2050204,4380_464 -4380_77977,292,4380_27393,Kent Train Station,70565-00016-1,1,4380_7778208_2050204,4380_464 -4380_77977,293,4380_27394,Kent Train Station,70571-00017-1,1,4380_7778208_2050204,4380_464 -4380_77977,290,4380_27395,Kent Train Station,70567-00015-1,1,4380_7778208_2050204,4380_464 -4380_77977,294,4380_27396,Kent Train Station,70569-00018-1,1,4380_7778208_2050204,4380_464 -4380_77977,295,4380_27397,Kent Train Station,70573-00019-1,1,4380_7778208_2050204,4380_464 -4380_77946,297,4380_274,Dundalk,50230-00008-1,0,4380_7778208_1000909,4380_2 -4380_77977,285,4380_27403,Kent Train Station,70090-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27404,Kent Train Station,70092-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,288,4380_27405,Kent Train Station,70088-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27406,Kent Train Station,70086-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27407,Kent Train Station,70084-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27408,Kent Train Station,70093-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27409,Kent Train Station,70089-00017-1,1,4380_7778208_2050202,4380_464 -4380_77947,285,4380_2741,Drop Off,51533-00009-1,1,4380_7778208_1011111,4380_28 -4380_77977,290,4380_27410,Kent Train Station,70091-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27411,Kent Train Station,70087-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27412,Kent Train Station,70085-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,297,4380_27414,Kent Train Station,70714-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,291,4380_27416,Kent Train Station,70715-00013-1,1,4380_7778208_2050211,4380_464 -4380_77977,296,4380_27417,Kent Train Station,70716-00021-1,1,4380_7778208_2050211,4380_464 -4380_77947,286,4380_2742,Drop Off,51527-00010-1,1,4380_7778208_1011111,4380_28 -4380_77977,285,4380_27423,Kent Train Station,70376-00009-1,1,4380_7778208_2050203,4380_464 -4380_77977,286,4380_27424,Kent Train Station,70380-00010-1,1,4380_7778208_2050203,4380_464 -4380_77977,288,4380_27425,Kent Train Station,70382-00011-1,1,4380_7778208_2050203,4380_464 -4380_77977,287,4380_27426,Kent Train Station,70374-00012-1,1,4380_7778208_2050203,4380_464 -4380_77977,289,4380_27427,Kent Train Station,70378-00014-1,1,4380_7778208_2050203,4380_464 -4380_77977,292,4380_27428,Kent Train Station,70381-00016-1,1,4380_7778208_2050203,4380_464 -4380_77977,293,4380_27429,Kent Train Station,70383-00017-1,1,4380_7778208_2050203,4380_464 -4380_77947,288,4380_2743,Drop Off,51529-00011-1,1,4380_7778208_1011111,4380_28 -4380_77977,290,4380_27430,Kent Train Station,70377-00015-1,1,4380_7778208_2050203,4380_464 -4380_77977,294,4380_27431,Kent Train Station,70375-00018-1,1,4380_7778208_2050203,4380_464 -4380_77977,295,4380_27432,Kent Train Station,70379-00019-1,1,4380_7778208_2050203,4380_464 -4380_77977,297,4380_27434,Kent Train Station,70781-00008-1,1,4380_7778208_2050212,4380_464 -4380_77947,287,4380_2744,Drop Off,51535-00012-1,1,4380_7778208_1011111,4380_28 -4380_77977,285,4380_27440,Kent Train Station,69812-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27441,Kent Train Station,69810-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,288,4380_27442,Kent Train Station,69808-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27443,Kent Train Station,69804-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27444,Kent Train Station,69806-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27445,Kent Train Station,69811-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27446,Kent Train Station,69809-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27447,Kent Train Station,69813-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27448,Kent Train Station,69805-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27449,Kent Train Station,69807-00019-1,1,4380_7778208_2050201,4380_464 -4380_77947,289,4380_2745,Drop Off,51531-00014-1,1,4380_7778208_1011111,4380_28 -4380_77977,291,4380_27451,Kent Train Station,70782-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,296,4380_27452,Kent Train Station,70783-00021-1,1,4380_7778208_2050212,4380_464 -4380_77977,285,4380_27458,Kent Train Station,70584-00009-1,1,4380_7778208_2050204,4380_464 -4380_77977,286,4380_27459,Kent Train Station,70592-00010-1,1,4380_7778208_2050204,4380_464 -4380_77947,290,4380_2746,Drop Off,51534-00015-1,1,4380_7778208_1011111,4380_28 -4380_77977,288,4380_27460,Kent Train Station,70586-00011-1,1,4380_7778208_2050204,4380_464 -4380_77977,287,4380_27461,Kent Train Station,70588-00012-1,1,4380_7778208_2050204,4380_464 -4380_77977,289,4380_27462,Kent Train Station,70590-00014-1,1,4380_7778208_2050204,4380_464 -4380_77977,292,4380_27463,Kent Train Station,70593-00016-1,1,4380_7778208_2050204,4380_464 -4380_77977,293,4380_27464,Kent Train Station,70587-00017-1,1,4380_7778208_2050204,4380_464 -4380_77977,290,4380_27465,Kent Train Station,70585-00015-1,1,4380_7778208_2050204,4380_464 -4380_77977,294,4380_27466,Kent Train Station,70589-00018-1,1,4380_7778208_2050204,4380_464 -4380_77977,295,4380_27467,Kent Train Station,70591-00019-1,1,4380_7778208_2050204,4380_464 -4380_77977,297,4380_27469,Kent Train Station,70718-00008-1,1,4380_7778208_2050211,4380_464 -4380_77947,292,4380_2747,Drop Off,51528-00016-1,1,4380_7778208_1011111,4380_28 -4380_77977,291,4380_27471,Kent Train Station,70843-00013-1,1,4380_7778208_2050213,4380_464 -4380_77977,296,4380_27472,Kent Train Station,70844-00021-1,1,4380_7778208_2050213,4380_464 -4380_77977,285,4380_27478,Kent Train Station,70110-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27479,Kent Train Station,70112-00010-1,1,4380_7778208_2050202,4380_464 -4380_77947,293,4380_2748,Drop Off,51530-00017-1,1,4380_7778208_1011111,4380_28 -4380_77977,288,4380_27480,Kent Train Station,70104-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27481,Kent Train Station,70106-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27482,Kent Train Station,70108-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27483,Kent Train Station,70113-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27484,Kent Train Station,70105-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27485,Kent Train Station,70111-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27486,Kent Train Station,70107-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27487,Kent Train Station,70109-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,297,4380_27489,Kent Train Station,70787-00008-1,1,4380_7778208_2050212,4380_464 -4380_77947,294,4380_2749,Drop Off,51536-00018-1,1,4380_7778208_1011111,4380_28 -4380_77977,285,4380_27495,Kent Train Station,70394-00009-1,1,4380_7778208_2050203,4380_464 -4380_77977,286,4380_27496,Kent Train Station,70402-00010-1,1,4380_7778208_2050203,4380_464 -4380_77977,288,4380_27497,Kent Train Station,70398-00011-1,1,4380_7778208_2050203,4380_464 -4380_77977,287,4380_27498,Kent Train Station,70400-00012-1,1,4380_7778208_2050203,4380_464 -4380_77977,289,4380_27499,Kent Train Station,70396-00014-1,1,4380_7778208_2050203,4380_464 -4380_77946,287,4380_275,Dundalk,50535-00012-1,0,4380_7778208_1000915,4380_1 -4380_77947,295,4380_2750,Drop Off,51532-00019-1,1,4380_7778208_1011111,4380_28 -4380_77977,292,4380_27500,Kent Train Station,70403-00016-1,1,4380_7778208_2050203,4380_464 -4380_77977,293,4380_27501,Kent Train Station,70399-00017-1,1,4380_7778208_2050203,4380_464 -4380_77977,290,4380_27502,Kent Train Station,70395-00015-1,1,4380_7778208_2050203,4380_464 -4380_77977,294,4380_27503,Kent Train Station,70401-00018-1,1,4380_7778208_2050203,4380_464 -4380_77977,295,4380_27504,Kent Train Station,70397-00019-1,1,4380_7778208_2050203,4380_464 -4380_77977,291,4380_27506,Kent Train Station,70722-00013-1,1,4380_7778208_2050211,4380_464 -4380_77977,296,4380_27507,Kent Train Station,70723-00021-1,1,4380_7778208_2050211,4380_464 -4380_77977,285,4380_27513,Kent Train Station,69826-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27514,Kent Train Station,69828-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,288,4380_27515,Kent Train Station,69830-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27516,Kent Train Station,69832-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27517,Kent Train Station,69824-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27518,Kent Train Station,69829-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27519,Kent Train Station,69831-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27520,Kent Train Station,69827-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27521,Kent Train Station,69833-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27522,Kent Train Station,69825-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,297,4380_27524,Kent Train Station,70724-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,291,4380_27526,Kent Train Station,70789-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,296,4380_27527,Kent Train Station,70790-00021-1,1,4380_7778208_2050212,4380_464 -4380_77977,285,4380_27533,Kent Train Station,70612-00009-1,1,4380_7778208_2050204,4380_464 -4380_77977,286,4380_27534,Kent Train Station,70606-00010-1,1,4380_7778208_2050204,4380_464 -4380_77977,288,4380_27535,Kent Train Station,70604-00011-1,1,4380_7778208_2050204,4380_464 -4380_77977,287,4380_27536,Kent Train Station,70610-00012-1,1,4380_7778208_2050204,4380_464 -4380_77977,289,4380_27537,Kent Train Station,70608-00014-1,1,4380_7778208_2050204,4380_464 -4380_77977,292,4380_27538,Kent Train Station,70607-00016-1,1,4380_7778208_2050204,4380_464 -4380_77977,293,4380_27539,Kent Train Station,70605-00017-1,1,4380_7778208_2050204,4380_464 -4380_77977,290,4380_27540,Kent Train Station,70613-00015-1,1,4380_7778208_2050204,4380_464 -4380_77977,294,4380_27541,Kent Train Station,70611-00018-1,1,4380_7778208_2050204,4380_464 -4380_77977,295,4380_27542,Kent Train Station,70609-00019-1,1,4380_7778208_2050204,4380_464 -4380_77977,297,4380_27544,Kent Train Station,70791-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,285,4380_27550,Kent Train Station,70130-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27551,Kent Train Station,70124-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,288,4380_27552,Kent Train Station,70128-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27553,Kent Train Station,70126-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27554,Kent Train Station,70132-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27555,Kent Train Station,70125-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27556,Kent Train Station,70129-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27557,Kent Train Station,70131-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27558,Kent Train Station,70127-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27559,Kent Train Station,70133-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,291,4380_27561,Kent Train Station,70847-00013-1,1,4380_7778208_2050213,4380_464 -4380_77977,296,4380_27562,Kent Train Station,70848-00021-1,1,4380_7778208_2050213,4380_464 -4380_77977,285,4380_27568,Kent Train Station,70414-00009-1,1,4380_7778208_2050203,4380_464 -4380_77977,286,4380_27569,Kent Train Station,70418-00010-1,1,4380_7778208_2050203,4380_464 -4380_77977,288,4380_27570,Kent Train Station,70422-00011-1,1,4380_7778208_2050203,4380_464 -4380_77977,287,4380_27571,Kent Train Station,70420-00012-1,1,4380_7778208_2050203,4380_464 -4380_77977,289,4380_27572,Kent Train Station,70416-00014-1,1,4380_7778208_2050203,4380_464 -4380_77977,292,4380_27573,Kent Train Station,70419-00016-1,1,4380_7778208_2050203,4380_464 -4380_77977,293,4380_27574,Kent Train Station,70423-00017-1,1,4380_7778208_2050203,4380_464 -4380_77977,290,4380_27575,Kent Train Station,70415-00015-1,1,4380_7778208_2050203,4380_464 -4380_77977,294,4380_27576,Kent Train Station,70421-00018-1,1,4380_7778208_2050203,4380_464 -4380_77977,295,4380_27577,Kent Train Station,70417-00019-1,1,4380_7778208_2050203,4380_464 -4380_77977,297,4380_27579,Kent Train Station,70728-00008-1,1,4380_7778208_2050211,4380_464 -4380_77947,285,4380_2758,Drop Off,50752-00009-1,1,4380_7778208_1011102,4380_28 -4380_77977,291,4380_27581,Kent Train Station,70729-00013-1,1,4380_7778208_2050211,4380_464 -4380_77977,296,4380_27582,Kent Train Station,70730-00021-1,1,4380_7778208_2050211,4380_464 -4380_77977,285,4380_27588,Kent Train Station,69846-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27589,Kent Train Station,69850-00010-1,1,4380_7778208_2050201,4380_464 -4380_77947,286,4380_2759,Drop Off,50744-00010-1,1,4380_7778208_1011102,4380_28 -4380_77977,288,4380_27590,Kent Train Station,69848-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27591,Kent Train Station,69844-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27592,Kent Train Station,69852-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27593,Kent Train Station,69851-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27594,Kent Train Station,69849-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27595,Kent Train Station,69847-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27596,Kent Train Station,69845-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27597,Kent Train Station,69853-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,297,4380_27599,Kent Train Station,70795-00008-1,1,4380_7778208_2050212,4380_464 -4380_77946,288,4380_276,Dundalk,50529-00011-1,0,4380_7778208_1000915,4380_1 -4380_77947,297,4380_2760,Drop Off,51342-00008-1,1,4380_7778208_1011108,4380_30 -4380_77977,285,4380_27605,Kent Train Station,70628-00009-1,1,4380_7778208_2050204,4380_464 -4380_77977,286,4380_27606,Kent Train Station,70630-00010-1,1,4380_7778208_2050204,4380_464 -4380_77977,288,4380_27607,Kent Train Station,70632-00011-1,1,4380_7778208_2050204,4380_464 -4380_77977,287,4380_27608,Kent Train Station,70624-00012-1,1,4380_7778208_2050204,4380_464 -4380_77977,289,4380_27609,Kent Train Station,70626-00014-1,1,4380_7778208_2050204,4380_464 -4380_77947,287,4380_2761,Drop Off,50742-00012-1,1,4380_7778208_1011102,4380_28 -4380_77977,292,4380_27610,Kent Train Station,70631-00016-1,1,4380_7778208_2050204,4380_464 -4380_77977,293,4380_27611,Kent Train Station,70633-00017-1,1,4380_7778208_2050204,4380_464 -4380_77977,290,4380_27612,Kent Train Station,70629-00015-1,1,4380_7778208_2050204,4380_464 -4380_77977,294,4380_27613,Kent Train Station,70625-00018-1,1,4380_7778208_2050204,4380_464 -4380_77977,295,4380_27614,Kent Train Station,70627-00019-1,1,4380_7778208_2050204,4380_464 -4380_77977,291,4380_27616,Kent Train Station,70796-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,296,4380_27617,Kent Train Station,70797-00021-1,1,4380_7778208_2050212,4380_464 -4380_77947,288,4380_2762,Drop Off,50746-00011-1,1,4380_7778208_1011102,4380_28 -4380_77977,285,4380_27623,Kent Train Station,70152-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27624,Kent Train Station,70150-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,288,4380_27625,Kent Train Station,70146-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27626,Kent Train Station,70148-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27627,Kent Train Station,70144-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27628,Kent Train Station,70151-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27629,Kent Train Station,70147-00017-1,1,4380_7778208_2050202,4380_464 -4380_77947,289,4380_2763,Drop Off,50748-00014-1,1,4380_7778208_1011102,4380_28 -4380_77977,290,4380_27630,Kent Train Station,70153-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27631,Kent Train Station,70149-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27632,Kent Train Station,70145-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,297,4380_27634,Kent Train Station,70732-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,291,4380_27636,Kent Train Station,70851-00013-1,1,4380_7778208_2050213,4380_464 -4380_77977,296,4380_27637,Kent Train Station,70852-00021-1,1,4380_7778208_2050213,4380_464 -4380_77947,290,4380_2764,Drop Off,50753-00015-1,1,4380_7778208_1011102,4380_28 -4380_77977,285,4380_27643,Kent Train Station,70436-00009-1,1,4380_7778208_2050203,4380_464 -4380_77977,286,4380_27644,Kent Train Station,70438-00010-1,1,4380_7778208_2050203,4380_464 -4380_77977,288,4380_27645,Kent Train Station,70440-00011-1,1,4380_7778208_2050203,4380_464 -4380_77977,287,4380_27646,Kent Train Station,70434-00012-1,1,4380_7778208_2050203,4380_464 -4380_77977,289,4380_27647,Kent Train Station,70442-00014-1,1,4380_7778208_2050203,4380_464 -4380_77977,292,4380_27648,Kent Train Station,70439-00016-1,1,4380_7778208_2050203,4380_464 -4380_77977,293,4380_27649,Kent Train Station,70441-00017-1,1,4380_7778208_2050203,4380_464 -4380_77947,291,4380_2765,Drop Off,50750-00013-1,1,4380_7778208_1011102,4380_32 -4380_77977,290,4380_27650,Kent Train Station,70437-00015-1,1,4380_7778208_2050203,4380_464 -4380_77977,294,4380_27651,Kent Train Station,70435-00018-1,1,4380_7778208_2050203,4380_464 -4380_77977,295,4380_27652,Kent Train Station,70443-00019-1,1,4380_7778208_2050203,4380_464 -4380_77977,297,4380_27654,Kent Train Station,70801-00008-1,1,4380_7778208_2050212,4380_464 -4380_77947,292,4380_2766,Drop Off,50745-00016-1,1,4380_7778208_1011102,4380_28 -4380_77977,285,4380_27660,Kent Train Station,69870-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27661,Kent Train Station,69866-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,288,4380_27662,Kent Train Station,69868-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27663,Kent Train Station,69872-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27664,Kent Train Station,69864-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27665,Kent Train Station,69867-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27666,Kent Train Station,69869-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27667,Kent Train Station,69871-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27668,Kent Train Station,69873-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27669,Kent Train Station,69865-00019-1,1,4380_7778208_2050201,4380_464 -4380_77947,293,4380_2767,Drop Off,50747-00017-1,1,4380_7778208_1011102,4380_28 -4380_77977,291,4380_27671,Kent Train Station,70736-00013-1,1,4380_7778208_2050211,4380_464 -4380_77977,296,4380_27672,Kent Train Station,70737-00021-1,1,4380_7778208_2050211,4380_464 -4380_77977,285,4380_27678,Kent Train Station,70650-00009-1,1,4380_7778208_2050204,4380_464 -4380_77977,286,4380_27679,Kent Train Station,70648-00010-1,1,4380_7778208_2050204,4380_464 -4380_77947,294,4380_2768,Drop Off,50743-00018-1,1,4380_7778208_1011102,4380_28 -4380_77977,288,4380_27680,Kent Train Station,70644-00011-1,1,4380_7778208_2050204,4380_464 -4380_77977,287,4380_27681,Kent Train Station,70646-00012-1,1,4380_7778208_2050204,4380_464 -4380_77977,289,4380_27682,Kent Train Station,70652-00014-1,1,4380_7778208_2050204,4380_464 -4380_77977,292,4380_27683,Kent Train Station,70649-00016-1,1,4380_7778208_2050204,4380_464 -4380_77977,293,4380_27684,Kent Train Station,70645-00017-1,1,4380_7778208_2050204,4380_464 -4380_77977,290,4380_27685,Kent Train Station,70651-00015-1,1,4380_7778208_2050204,4380_464 -4380_77977,294,4380_27686,Kent Train Station,70647-00018-1,1,4380_7778208_2050204,4380_464 -4380_77977,295,4380_27687,Kent Train Station,70653-00019-1,1,4380_7778208_2050204,4380_464 -4380_77947,295,4380_2769,Drop Off,50749-00019-1,1,4380_7778208_1011102,4380_28 -4380_77977,297,4380_27690,Kent Train Station,70738-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,291,4380_27691,Kent Train Station,70802-00013-1,1,4380_7778208_2050212,4380_466 -4380_77977,296,4380_27692,Kent Train Station,70803-00021-1,1,4380_7778208_2050212,4380_466 -4380_77977,285,4380_27698,Kent Train Station,70164-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27699,Kent Train Station,70166-00010-1,1,4380_7778208_2050202,4380_464 -4380_77946,289,4380_277,Dundalk,50527-00014-1,0,4380_7778208_1000915,4380_1 -4380_77947,296,4380_2770,Drop Off,50751-00021-1,1,4380_7778208_1011102,4380_32 -4380_77977,288,4380_27700,Kent Train Station,70170-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27701,Kent Train Station,70168-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27702,Kent Train Station,70172-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27703,Kent Train Station,70167-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27704,Kent Train Station,70171-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27705,Kent Train Station,70165-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27706,Kent Train Station,70169-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27707,Kent Train Station,70173-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,297,4380_27710,Kent Train Station,70805-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,291,4380_27711,Kent Train Station,70855-00013-1,1,4380_7778208_2050213,4380_466 -4380_77977,296,4380_27712,Kent Train Station,70856-00021-1,1,4380_7778208_2050213,4380_466 -4380_77977,285,4380_27718,Kent Train Station,70460-00009-1,1,4380_7778208_2050203,4380_464 -4380_77977,286,4380_27719,Kent Train Station,70454-00010-1,1,4380_7778208_2050203,4380_464 -4380_77977,288,4380_27720,Kent Train Station,70458-00011-1,1,4380_7778208_2050203,4380_464 -4380_77977,287,4380_27721,Kent Train Station,70456-00012-1,1,4380_7778208_2050203,4380_464 -4380_77977,289,4380_27722,Kent Train Station,70462-00014-1,1,4380_7778208_2050203,4380_464 -4380_77977,292,4380_27723,Kent Train Station,70455-00016-1,1,4380_7778208_2050203,4380_464 -4380_77977,293,4380_27724,Kent Train Station,70459-00017-1,1,4380_7778208_2050203,4380_464 -4380_77977,290,4380_27725,Kent Train Station,70461-00015-1,1,4380_7778208_2050203,4380_464 -4380_77977,294,4380_27726,Kent Train Station,70457-00018-1,1,4380_7778208_2050203,4380_464 -4380_77977,295,4380_27727,Kent Train Station,70463-00019-1,1,4380_7778208_2050203,4380_464 -4380_77977,285,4380_27733,Kent Train Station,69890-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27734,Kent Train Station,69892-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,288,4380_27735,Kent Train Station,69884-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27736,Kent Train Station,69888-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,289,4380_27737,Kent Train Station,69886-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27738,Kent Train Station,69893-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27739,Kent Train Station,69885-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27740,Kent Train Station,69891-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27741,Kent Train Station,69889-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27742,Kent Train Station,69887-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,297,4380_27745,Kent Train Station,70740-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,291,4380_27746,Kent Train Station,70809-00013-1,1,4380_7778208_2050212,4380_466 -4380_77977,296,4380_27747,Kent Train Station,70810-00021-1,1,4380_7778208_2050212,4380_466 -4380_77977,285,4380_27753,Kent Train Station,70186-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27754,Kent Train Station,70184-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,288,4380_27755,Kent Train Station,70192-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27756,Kent Train Station,70188-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,289,4380_27757,Kent Train Station,70190-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27758,Kent Train Station,70185-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27759,Kent Train Station,70193-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27760,Kent Train Station,70187-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27761,Kent Train Station,70189-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27762,Kent Train Station,70191-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,285,4380_27770,Kent Train Station,70672-00009-1,1,4380_7778208_2050204,4380_466 -4380_77977,286,4380_27771,Kent Train Station,70668-00010-1,1,4380_7778208_2050204,4380_466 -4380_77977,297,4380_27772,Kent Train Station,70813-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,288,4380_27773,Kent Train Station,70670-00011-1,1,4380_7778208_2050204,4380_466 -4380_77977,287,4380_27774,Kent Train Station,70666-00012-1,1,4380_7778208_2050204,4380_466 -4380_77977,291,4380_27775,Kent Train Station,70859-00013-1,1,4380_7778208_2050213,4380_464 -4380_77977,289,4380_27776,Kent Train Station,70664-00014-1,1,4380_7778208_2050204,4380_466 -4380_77977,292,4380_27777,Kent Train Station,70669-00016-1,1,4380_7778208_2050204,4380_466 -4380_77977,293,4380_27778,Kent Train Station,70671-00017-1,1,4380_7778208_2050204,4380_466 -4380_77977,290,4380_27779,Kent Train Station,70673-00015-1,1,4380_7778208_2050204,4380_466 -4380_77947,285,4380_2778,Drop Off,51491-00009-1,1,4380_7778208_1011110,4380_28 -4380_77977,294,4380_27780,Kent Train Station,70667-00018-1,1,4380_7778208_2050204,4380_466 -4380_77977,295,4380_27781,Kent Train Station,70665-00019-1,1,4380_7778208_2050204,4380_466 -4380_77977,296,4380_27782,Kent Train Station,70860-00021-1,1,4380_7778208_2050213,4380_464 -4380_77947,286,4380_2779,Drop Off,51487-00010-1,1,4380_7778208_1011110,4380_28 -4380_77977,285,4380_27790,Kent Train Station,69906-00009-1,1,4380_7778208_2050201,4380_466 -4380_77977,286,4380_27791,Kent Train Station,69910-00010-1,1,4380_7778208_2050201,4380_466 -4380_77977,297,4380_27792,Kent Train Station,70742-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,288,4380_27793,Kent Train Station,69912-00011-1,1,4380_7778208_2050201,4380_466 -4380_77977,287,4380_27794,Kent Train Station,69908-00012-1,1,4380_7778208_2050201,4380_466 -4380_77977,291,4380_27795,Kent Train Station,70815-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,289,4380_27796,Kent Train Station,69904-00014-1,1,4380_7778208_2050201,4380_466 -4380_77977,292,4380_27797,Kent Train Station,69911-00016-1,1,4380_7778208_2050201,4380_466 -4380_77977,293,4380_27798,Kent Train Station,69913-00017-1,1,4380_7778208_2050201,4380_466 -4380_77977,290,4380_27799,Kent Train Station,69907-00015-1,1,4380_7778208_2050201,4380_466 -4380_77946,290,4380_278,Dundalk,50532-00015-1,0,4380_7778208_1000915,4380_1 -4380_77947,297,4380_2780,Drop Off,51064-00008-1,1,4380_7778208_1011105,4380_30 -4380_77977,294,4380_27800,Kent Train Station,69909-00018-1,1,4380_7778208_2050201,4380_466 -4380_77977,295,4380_27801,Kent Train Station,69905-00019-1,1,4380_7778208_2050201,4380_466 -4380_77977,296,4380_27802,Kent Train Station,70816-00021-1,1,4380_7778208_2050212,4380_464 -4380_77947,288,4380_2781,Drop Off,51483-00011-1,1,4380_7778208_1011110,4380_28 -4380_77977,285,4380_27810,Kent Train Station,70204-00009-1,1,4380_7778208_2050202,4380_466 -4380_77977,286,4380_27811,Kent Train Station,70210-00010-1,1,4380_7778208_2050202,4380_466 -4380_77977,297,4380_27812,Kent Train Station,70817-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,288,4380_27813,Kent Train Station,70208-00011-1,1,4380_7778208_2050202,4380_466 -4380_77977,287,4380_27814,Kent Train Station,70206-00012-1,1,4380_7778208_2050202,4380_466 -4380_77977,291,4380_27815,Kent Train Station,70863-00013-1,1,4380_7778208_2050213,4380_464 -4380_77977,289,4380_27816,Kent Train Station,70212-00014-1,1,4380_7778208_2050202,4380_466 -4380_77977,292,4380_27817,Kent Train Station,70211-00016-1,1,4380_7778208_2050202,4380_466 -4380_77977,293,4380_27818,Kent Train Station,70209-00017-1,1,4380_7778208_2050202,4380_466 -4380_77977,290,4380_27819,Kent Train Station,70205-00015-1,1,4380_7778208_2050202,4380_466 -4380_77947,287,4380_2782,Drop Off,51489-00012-1,1,4380_7778208_1011110,4380_28 -4380_77977,294,4380_27820,Kent Train Station,70207-00018-1,1,4380_7778208_2050202,4380_466 -4380_77977,295,4380_27821,Kent Train Station,70213-00019-1,1,4380_7778208_2050202,4380_466 -4380_77977,296,4380_27822,Kent Train Station,70864-00021-1,1,4380_7778208_2050213,4380_464 -4380_77947,289,4380_2783,Drop Off,51485-00014-1,1,4380_7778208_1011110,4380_28 -4380_77977,285,4380_27830,Kent Train Station,69928-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27831,Kent Train Station,69932-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,297,4380_27832,Kent Train Station,70744-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,288,4380_27833,Kent Train Station,69930-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27834,Kent Train Station,69926-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,291,4380_27835,Kent Train Station,70821-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,289,4380_27836,Kent Train Station,69924-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27837,Kent Train Station,69933-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27838,Kent Train Station,69931-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27839,Kent Train Station,69929-00015-1,1,4380_7778208_2050201,4380_464 -4380_77947,290,4380_2784,Drop Off,51492-00015-1,1,4380_7778208_1011110,4380_28 -4380_77977,294,4380_27840,Kent Train Station,69927-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27841,Kent Train Station,69925-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,296,4380_27842,Kent Train Station,70822-00021-1,1,4380_7778208_2050212,4380_464 -4380_77947,291,4380_2785,Drop Off,51062-00013-1,1,4380_7778208_1011105,4380_32 -4380_77977,285,4380_27850,Kent Train Station,70226-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27851,Kent Train Station,70230-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,297,4380_27852,Kent Train Station,70823-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,288,4380_27853,Kent Train Station,70232-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27854,Kent Train Station,70228-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,291,4380_27855,Kent Train Station,70867-00013-1,1,4380_7778208_2050213,4380_464 -4380_77977,289,4380_27856,Kent Train Station,70224-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27857,Kent Train Station,70231-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27858,Kent Train Station,70233-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27859,Kent Train Station,70227-00015-1,1,4380_7778208_2050202,4380_464 -4380_77947,292,4380_2786,Drop Off,51488-00016-1,1,4380_7778208_1011110,4380_28 -4380_77977,294,4380_27860,Kent Train Station,70229-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27861,Kent Train Station,70225-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,296,4380_27862,Kent Train Station,70868-00021-1,1,4380_7778208_2050213,4380_464 -4380_77947,293,4380_2787,Drop Off,51484-00017-1,1,4380_7778208_1011110,4380_28 -4380_77977,285,4380_27870,Kent Train Station,69950-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27871,Kent Train Station,69944-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,297,4380_27872,Kent Train Station,70746-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,288,4380_27873,Kent Train Station,69948-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27874,Kent Train Station,69946-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,291,4380_27875,Kent Train Station,70827-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,289,4380_27876,Kent Train Station,69952-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27877,Kent Train Station,69945-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27878,Kent Train Station,69949-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27879,Kent Train Station,69951-00015-1,1,4380_7778208_2050201,4380_464 -4380_77947,294,4380_2788,Drop Off,51490-00018-1,1,4380_7778208_1011110,4380_28 -4380_77977,294,4380_27880,Kent Train Station,69947-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27881,Kent Train Station,69953-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,296,4380_27882,Kent Train Station,70828-00021-1,1,4380_7778208_2050212,4380_464 -4380_77947,295,4380_2789,Drop Off,51486-00019-1,1,4380_7778208_1011110,4380_28 -4380_77977,285,4380_27890,Kent Train Station,70250-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27891,Kent Train Station,70244-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,297,4380_27892,Kent Train Station,70829-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,288,4380_27893,Kent Train Station,70246-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27894,Kent Train Station,70248-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,291,4380_27895,Kent Train Station,70871-00013-1,1,4380_7778208_2050213,4380_464 -4380_77977,289,4380_27896,Kent Train Station,70252-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27897,Kent Train Station,70245-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27898,Kent Train Station,70247-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27899,Kent Train Station,70251-00015-1,1,4380_7778208_2050202,4380_464 -4380_77946,291,4380_279,Dundalk,50285-00013-1,0,4380_7778208_1000912,4380_5 -4380_77947,296,4380_2790,Drop Off,51063-00021-1,1,4380_7778208_1011105,4380_32 -4380_77977,294,4380_27900,Kent Train Station,70249-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27901,Kent Train Station,70253-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,296,4380_27902,Kent Train Station,70872-00021-1,1,4380_7778208_2050213,4380_464 -4380_77977,285,4380_27910,Kent Train Station,69972-00009-1,1,4380_7778208_2050201,4380_464 -4380_77977,286,4380_27911,Kent Train Station,69966-00010-1,1,4380_7778208_2050201,4380_464 -4380_77977,297,4380_27912,Kent Train Station,70748-00008-1,1,4380_7778208_2050211,4380_464 -4380_77977,288,4380_27913,Kent Train Station,69968-00011-1,1,4380_7778208_2050201,4380_464 -4380_77977,287,4380_27914,Kent Train Station,69970-00012-1,1,4380_7778208_2050201,4380_464 -4380_77977,291,4380_27915,Kent Train Station,70832-00013-1,1,4380_7778208_2050212,4380_464 -4380_77977,289,4380_27916,Kent Train Station,69964-00014-1,1,4380_7778208_2050201,4380_464 -4380_77977,292,4380_27917,Kent Train Station,69967-00016-1,1,4380_7778208_2050201,4380_464 -4380_77977,293,4380_27918,Kent Train Station,69969-00017-1,1,4380_7778208_2050201,4380_464 -4380_77977,290,4380_27919,Kent Train Station,69973-00015-1,1,4380_7778208_2050201,4380_464 -4380_77977,294,4380_27920,Kent Train Station,69971-00018-1,1,4380_7778208_2050201,4380_464 -4380_77977,295,4380_27921,Kent Train Station,69965-00019-1,1,4380_7778208_2050201,4380_464 -4380_77977,296,4380_27922,Kent Train Station,70833-00021-1,1,4380_7778208_2050212,4380_464 -4380_77977,285,4380_27930,Kent Train Station,70264-00009-1,1,4380_7778208_2050202,4380_464 -4380_77977,286,4380_27931,Kent Train Station,70272-00010-1,1,4380_7778208_2050202,4380_464 -4380_77977,297,4380_27932,Kent Train Station,70837-00008-1,1,4380_7778208_2050212,4380_464 -4380_77977,288,4380_27933,Kent Train Station,70266-00011-1,1,4380_7778208_2050202,4380_464 -4380_77977,287,4380_27934,Kent Train Station,70268-00012-1,1,4380_7778208_2050202,4380_464 -4380_77977,291,4380_27935,Kent Train Station,70875-00013-1,1,4380_7778208_2050213,4380_464 -4380_77977,289,4380_27936,Kent Train Station,70270-00014-1,1,4380_7778208_2050202,4380_464 -4380_77977,292,4380_27937,Kent Train Station,70273-00016-1,1,4380_7778208_2050202,4380_464 -4380_77977,293,4380_27938,Kent Train Station,70267-00017-1,1,4380_7778208_2050202,4380_464 -4380_77977,290,4380_27939,Kent Train Station,70265-00015-1,1,4380_7778208_2050202,4380_464 -4380_77977,294,4380_27940,Kent Train Station,70269-00018-1,1,4380_7778208_2050202,4380_464 -4380_77977,295,4380_27941,Kent Train Station,70271-00019-1,1,4380_7778208_2050202,4380_464 -4380_77977,296,4380_27942,Kent Train Station,70876-00021-1,1,4380_7778208_2050213,4380_464 -4380_77977,285,4380_27950,St. Patrick Street,69986-00009-1,1,4380_7778208_2050201,4380_465 -4380_77977,286,4380_27951,St. Patrick Street,69984-00010-1,1,4380_7778208_2050201,4380_465 -4380_77977,297,4380_27952,St. Patrick Street,70750-00008-1,1,4380_7778208_2050211,4380_465 -4380_77977,288,4380_27953,St. Patrick Street,69990-00011-1,1,4380_7778208_2050201,4380_465 -4380_77977,287,4380_27954,St. Patrick Street,69992-00012-1,1,4380_7778208_2050201,4380_465 -4380_77977,291,4380_27955,St. Patrick Street,70839-00013-1,1,4380_7778208_2050212,4380_465 -4380_77977,289,4380_27956,St. Patrick Street,69988-00014-1,1,4380_7778208_2050201,4380_465 -4380_77977,292,4380_27957,St. Patrick Street,69985-00016-1,1,4380_7778208_2050201,4380_465 -4380_77977,293,4380_27958,St. Patrick Street,69991-00017-1,1,4380_7778208_2050201,4380_465 -4380_77977,290,4380_27959,St. Patrick Street,69987-00015-1,1,4380_7778208_2050201,4380_465 -4380_77947,285,4380_2796,Drop Off,50977-00009-1,1,4380_7778208_1011104,4380_28 -4380_77977,294,4380_27960,St. Patrick Street,69993-00018-1,1,4380_7778208_2050201,4380_465 -4380_77977,295,4380_27961,St. Patrick Street,69989-00019-1,1,4380_7778208_2050201,4380_465 -4380_77977,296,4380_27962,St. Patrick Street,70840-00021-1,1,4380_7778208_2050212,4380_465 -4380_77978,285,4380_27969,South Mall,71451-00009-1,0,4380_7778208_2060212,4380_467 -4380_77947,286,4380_2797,Drop Off,50979-00010-1,1,4380_7778208_1011104,4380_28 -4380_77978,286,4380_27970,South Mall,71447-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_27971,South Mall,71443-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_27972,South Mall,71449-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,291,4380_27973,South Mall,70879-00013-1,0,4380_7778208_2060201,4380_468 -4380_77978,289,4380_27974,South Mall,71445-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_27975,South Mall,71448-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_27976,South Mall,71444-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_27977,South Mall,71452-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_27978,South Mall,71450-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_27979,South Mall,71446-00019-1,0,4380_7778208_2060212,4380_467 -4380_77947,288,4380_2798,Drop Off,50971-00011-1,1,4380_7778208_1011104,4380_28 -4380_77978,296,4380_27980,South Mall,70880-00021-1,0,4380_7778208_2060201,4380_468 -4380_77978,285,4380_27986,South Mall,71151-00009-1,0,4380_7778208_2060211,4380_467 -4380_77978,286,4380_27987,South Mall,71149-00010-1,0,4380_7778208_2060211,4380_467 -4380_77978,288,4380_27988,South Mall,71145-00011-1,0,4380_7778208_2060211,4380_467 -4380_77978,287,4380_27989,South Mall,71143-00012-1,0,4380_7778208_2060211,4380_467 -4380_77947,287,4380_2799,Drop Off,50975-00012-1,1,4380_7778208_1011104,4380_28 -4380_77978,289,4380_27990,South Mall,71147-00014-1,0,4380_7778208_2060211,4380_467 -4380_77978,292,4380_27991,South Mall,71150-00016-1,0,4380_7778208_2060211,4380_467 -4380_77978,293,4380_27992,South Mall,71146-00017-1,0,4380_7778208_2060211,4380_467 -4380_77978,290,4380_27993,South Mall,71152-00015-1,0,4380_7778208_2060211,4380_467 -4380_77978,294,4380_27994,South Mall,71144-00018-1,0,4380_7778208_2060211,4380_467 -4380_77978,295,4380_27995,South Mall,71148-00019-1,0,4380_7778208_2060211,4380_467 -4380_77946,287,4380_28,Dundalk,114775-00012-1,0,4380_7778208_10088801,4380_3 -4380_77946,292,4380_280,Dundalk,50534-00016-1,0,4380_7778208_1000915,4380_1 -4380_77947,289,4380_2800,Drop Off,50973-00014-1,1,4380_7778208_1011104,4380_28 -4380_77978,285,4380_28002,South Mall,71703-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28003,South Mall,71707-00010-1,0,4380_7778208_2060213,4380_467 -4380_77978,288,4380_28004,South Mall,71709-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28005,South Mall,71711-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28006,South Mall,70953-00013-1,0,4380_7778208_2060202,4380_468 -4380_77978,289,4380_28007,South Mall,71705-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28008,South Mall,71708-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28009,South Mall,71710-00017-1,0,4380_7778208_2060213,4380_467 -4380_77947,290,4380_2801,Drop Off,50978-00015-1,1,4380_7778208_1011104,4380_28 -4380_77978,290,4380_28010,South Mall,71704-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28011,South Mall,71712-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28012,South Mall,71706-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28013,South Mall,70954-00021-1,0,4380_7778208_2060202,4380_468 -4380_77978,285,4380_28019,South Mall,72017-00009-1,0,4380_7778208_2060215,4380_467 -4380_77947,292,4380_2802,Drop Off,50980-00016-1,1,4380_7778208_1011104,4380_28 -4380_77978,286,4380_28020,South Mall,72015-00010-1,0,4380_7778208_2060215,4380_467 -4380_77978,288,4380_28021,South Mall,72019-00011-1,0,4380_7778208_2060215,4380_467 -4380_77978,287,4380_28022,South Mall,72013-00012-1,0,4380_7778208_2060215,4380_467 -4380_77978,289,4380_28023,South Mall,72021-00014-1,0,4380_7778208_2060215,4380_467 -4380_77978,292,4380_28024,South Mall,72016-00016-1,0,4380_7778208_2060215,4380_467 -4380_77978,293,4380_28025,South Mall,72020-00017-1,0,4380_7778208_2060215,4380_467 -4380_77978,290,4380_28026,South Mall,72018-00015-1,0,4380_7778208_2060215,4380_467 -4380_77978,294,4380_28027,South Mall,72014-00018-1,0,4380_7778208_2060215,4380_467 -4380_77978,295,4380_28028,South Mall,72022-00019-1,0,4380_7778208_2060215,4380_467 -4380_77947,293,4380_2803,Drop Off,50972-00017-1,1,4380_7778208_1011104,4380_28 -4380_77978,285,4380_28034,South Mall,71961-00009-1,0,4380_7778208_2060214,4380_467 -4380_77978,286,4380_28035,South Mall,71955-00010-1,0,4380_7778208_2060214,4380_467 -4380_77978,288,4380_28036,South Mall,71959-00011-1,0,4380_7778208_2060214,4380_467 -4380_77978,287,4380_28037,South Mall,71957-00012-1,0,4380_7778208_2060214,4380_467 -4380_77978,289,4380_28038,South Mall,71953-00014-1,0,4380_7778208_2060214,4380_467 -4380_77978,292,4380_28039,South Mall,71956-00016-1,0,4380_7778208_2060214,4380_467 -4380_77947,294,4380_2804,Drop Off,50976-00018-1,1,4380_7778208_1011104,4380_28 -4380_77978,293,4380_28040,South Mall,71960-00017-1,0,4380_7778208_2060214,4380_467 -4380_77978,290,4380_28041,South Mall,71962-00015-1,0,4380_7778208_2060214,4380_467 -4380_77978,294,4380_28042,South Mall,71958-00018-1,0,4380_7778208_2060214,4380_467 -4380_77978,295,4380_28043,South Mall,71954-00019-1,0,4380_7778208_2060214,4380_467 -4380_77947,295,4380_2805,Drop Off,50974-00019-1,1,4380_7778208_1011104,4380_28 -4380_77978,285,4380_28050,South Mall,71471-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28051,South Mall,71467-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28052,South Mall,71463-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28053,South Mall,71465-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,291,4380_28054,South Mall,70883-00013-1,0,4380_7778208_2060201,4380_468 -4380_77978,289,4380_28055,South Mall,71469-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28056,South Mall,71468-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28057,South Mall,71464-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28058,South Mall,71472-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28059,South Mall,71466-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28060,South Mall,71470-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28061,South Mall,70884-00021-1,0,4380_7778208_2060201,4380_468 -4380_77978,285,4380_28067,South Mall,71167-00009-1,0,4380_7778208_2060211,4380_467 -4380_77978,286,4380_28068,South Mall,71163-00010-1,0,4380_7778208_2060211,4380_467 -4380_77978,288,4380_28069,South Mall,71165-00011-1,0,4380_7778208_2060211,4380_467 -4380_77978,287,4380_28070,South Mall,71171-00012-1,0,4380_7778208_2060211,4380_467 -4380_77978,289,4380_28071,South Mall,71169-00014-1,0,4380_7778208_2060211,4380_467 -4380_77978,292,4380_28072,South Mall,71164-00016-1,0,4380_7778208_2060211,4380_467 -4380_77978,293,4380_28073,South Mall,71166-00017-1,0,4380_7778208_2060211,4380_467 -4380_77978,290,4380_28074,South Mall,71168-00015-1,0,4380_7778208_2060211,4380_467 -4380_77978,294,4380_28075,South Mall,71172-00018-1,0,4380_7778208_2060211,4380_467 -4380_77978,295,4380_28076,South Mall,71170-00019-1,0,4380_7778208_2060211,4380_467 -4380_77947,297,4380_2808,Drop Off,51397-00008-1,1,4380_7778208_1011109,4380_28 -4380_77978,285,4380_28083,South Mall,71731-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28084,South Mall,71723-00010-1,0,4380_7778208_2060213,4380_467 -4380_77978,288,4380_28085,South Mall,71729-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28086,South Mall,71725-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28087,South Mall,70957-00013-1,0,4380_7778208_2060202,4380_468 -4380_77978,289,4380_28088,South Mall,71727-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28089,South Mall,71724-00016-1,0,4380_7778208_2060213,4380_467 -4380_77947,291,4380_2809,Drop Off,51166-00013-1,1,4380_7778208_1011106,4380_30 -4380_77978,293,4380_28090,South Mall,71730-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28091,South Mall,71732-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28092,South Mall,71726-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28093,South Mall,71728-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28094,South Mall,70958-00021-1,0,4380_7778208_2060202,4380_468 -4380_77946,293,4380_281,Dundalk,50530-00017-1,0,4380_7778208_1000915,4380_1 -4380_77947,296,4380_2810,Drop Off,51167-00021-1,1,4380_7778208_1011106,4380_30 -4380_77978,285,4380_28100,South Mall,72037-00009-1,0,4380_7778208_2060215,4380_467 -4380_77978,286,4380_28101,South Mall,72039-00010-1,0,4380_7778208_2060215,4380_467 -4380_77978,288,4380_28102,South Mall,72035-00011-1,0,4380_7778208_2060215,4380_467 -4380_77978,287,4380_28103,South Mall,72041-00012-1,0,4380_7778208_2060215,4380_467 -4380_77978,289,4380_28104,South Mall,72033-00014-1,0,4380_7778208_2060215,4380_467 -4380_77978,292,4380_28105,South Mall,72040-00016-1,0,4380_7778208_2060215,4380_467 -4380_77978,293,4380_28106,South Mall,72036-00017-1,0,4380_7778208_2060215,4380_467 -4380_77978,290,4380_28107,South Mall,72038-00015-1,0,4380_7778208_2060215,4380_467 -4380_77978,294,4380_28108,South Mall,72042-00018-1,0,4380_7778208_2060215,4380_467 -4380_77978,295,4380_28109,South Mall,72034-00019-1,0,4380_7778208_2060215,4380_467 -4380_77978,285,4380_28116,South Mall,71981-00009-1,0,4380_7778208_2060214,4380_467 -4380_77978,286,4380_28117,South Mall,71975-00010-1,0,4380_7778208_2060214,4380_467 -4380_77978,288,4380_28118,South Mall,71973-00011-1,0,4380_7778208_2060214,4380_467 -4380_77978,287,4380_28119,South Mall,71979-00012-1,0,4380_7778208_2060214,4380_467 -4380_77978,291,4380_28120,South Mall,70887-00013-1,0,4380_7778208_2060201,4380_468 -4380_77978,289,4380_28121,South Mall,71977-00014-1,0,4380_7778208_2060214,4380_467 -4380_77978,292,4380_28122,South Mall,71976-00016-1,0,4380_7778208_2060214,4380_467 -4380_77978,293,4380_28123,South Mall,71974-00017-1,0,4380_7778208_2060214,4380_467 -4380_77978,290,4380_28124,South Mall,71982-00015-1,0,4380_7778208_2060214,4380_467 -4380_77978,294,4380_28125,South Mall,71980-00018-1,0,4380_7778208_2060214,4380_467 -4380_77978,295,4380_28126,South Mall,71978-00019-1,0,4380_7778208_2060214,4380_467 -4380_77978,296,4380_28127,South Mall,70888-00021-1,0,4380_7778208_2060201,4380_468 -4380_77978,285,4380_28133,South Mall,71487-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28134,South Mall,71485-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28135,South Mall,71491-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28136,South Mall,71483-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,289,4380_28137,South Mall,71489-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28138,South Mall,71486-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28139,South Mall,71492-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28140,South Mall,71488-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28141,South Mall,71484-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28142,South Mall,71490-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,285,4380_28150,South Mall,71187-00009-1,0,4380_7778208_2060211,4380_468 -4380_77978,286,4380_28151,South Mall,71191-00010-1,0,4380_7778208_2060211,4380_468 -4380_77978,297,4380_28152,South Mall,70891-00008-1,0,4380_7778208_2060201,4380_467 -4380_77978,288,4380_28153,South Mall,71183-00011-1,0,4380_7778208_2060211,4380_468 -4380_77978,287,4380_28154,South Mall,71189-00012-1,0,4380_7778208_2060211,4380_468 -4380_77978,291,4380_28155,South Mall,70961-00013-1,0,4380_7778208_2060202,4380_467 -4380_77978,289,4380_28156,South Mall,71185-00014-1,0,4380_7778208_2060211,4380_468 -4380_77978,292,4380_28157,South Mall,71192-00016-1,0,4380_7778208_2060211,4380_468 -4380_77978,293,4380_28158,South Mall,71184-00017-1,0,4380_7778208_2060211,4380_468 -4380_77978,290,4380_28159,South Mall,71188-00015-1,0,4380_7778208_2060211,4380_468 -4380_77947,285,4380_2816,Drop Off,50860-00009-1,1,4380_7778208_1011103,4380_28 -4380_77978,294,4380_28160,South Mall,71190-00018-1,0,4380_7778208_2060211,4380_468 -4380_77978,295,4380_28161,South Mall,71186-00019-1,0,4380_7778208_2060211,4380_468 -4380_77978,296,4380_28162,South Mall,70962-00021-1,0,4380_7778208_2060202,4380_467 -4380_77978,285,4380_28168,South Mall,71751-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28169,South Mall,71747-00010-1,0,4380_7778208_2060213,4380_467 -4380_77947,286,4380_2817,Drop Off,50854-00010-1,1,4380_7778208_1011103,4380_28 -4380_77978,288,4380_28170,South Mall,71745-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28171,South Mall,71749-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,289,4380_28172,South Mall,71743-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28173,South Mall,71748-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28174,South Mall,71746-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28175,South Mall,71752-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28176,South Mall,71750-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28177,South Mall,71744-00019-1,0,4380_7778208_2060213,4380_467 -4380_77947,288,4380_2818,Drop Off,50856-00011-1,1,4380_7778208_1011103,4380_28 -4380_77978,285,4380_28185,South Mall,71999-00009-1,0,4380_7778208_2060214,4380_468 -4380_77978,286,4380_28186,South Mall,72001-00010-1,0,4380_7778208_2060214,4380_468 -4380_77978,297,4380_28187,South Mall,70964-00008-1,0,4380_7778208_2060202,4380_467 -4380_77978,288,4380_28188,South Mall,71997-00011-1,0,4380_7778208_2060214,4380_468 -4380_77978,287,4380_28189,South Mall,71993-00012-1,0,4380_7778208_2060214,4380_468 -4380_77947,287,4380_2819,Drop Off,50858-00012-1,1,4380_7778208_1011103,4380_28 -4380_77978,291,4380_28190,South Mall,70892-00013-1,0,4380_7778208_2060201,4380_468 -4380_77978,289,4380_28191,South Mall,71995-00014-1,0,4380_7778208_2060214,4380_468 -4380_77978,292,4380_28192,South Mall,72002-00016-1,0,4380_7778208_2060214,4380_468 -4380_77978,293,4380_28193,South Mall,71998-00017-1,0,4380_7778208_2060214,4380_468 -4380_77978,290,4380_28194,South Mall,72000-00015-1,0,4380_7778208_2060214,4380_468 -4380_77978,294,4380_28195,South Mall,71994-00018-1,0,4380_7778208_2060214,4380_468 -4380_77978,295,4380_28196,South Mall,71996-00019-1,0,4380_7778208_2060214,4380_468 -4380_77978,296,4380_28197,South Mall,70893-00021-1,0,4380_7778208_2060201,4380_468 -4380_77946,294,4380_282,Dundalk,50536-00018-1,0,4380_7778208_1000915,4380_1 -4380_77947,289,4380_2820,Drop Off,50852-00014-1,1,4380_7778208_1011103,4380_28 -4380_77978,285,4380_28203,South Mall,71505-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28204,South Mall,71507-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28205,South Mall,71509-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28206,South Mall,71503-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,289,4380_28207,South Mall,71511-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28208,South Mall,71508-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28209,South Mall,71510-00017-1,0,4380_7778208_2060212,4380_467 -4380_77947,290,4380_2821,Drop Off,50861-00015-1,1,4380_7778208_1011103,4380_28 -4380_77978,290,4380_28210,South Mall,71506-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28211,South Mall,71504-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28212,South Mall,71512-00019-1,0,4380_7778208_2060212,4380_467 -4380_77947,292,4380_2822,Drop Off,50855-00016-1,1,4380_7778208_1011103,4380_28 -4380_77978,285,4380_28220,South Mall,71211-00009-1,0,4380_7778208_2060211,4380_468 -4380_77978,286,4380_28221,South Mall,71207-00010-1,0,4380_7778208_2060211,4380_468 -4380_77978,297,4380_28222,South Mall,70897-00008-1,0,4380_7778208_2060201,4380_467 -4380_77978,288,4380_28223,South Mall,71209-00011-1,0,4380_7778208_2060211,4380_468 -4380_77978,287,4380_28224,South Mall,71205-00012-1,0,4380_7778208_2060211,4380_468 -4380_77978,291,4380_28225,South Mall,70967-00013-1,0,4380_7778208_2060202,4380_468 -4380_77978,289,4380_28226,South Mall,71203-00014-1,0,4380_7778208_2060211,4380_468 -4380_77978,292,4380_28227,South Mall,71208-00016-1,0,4380_7778208_2060211,4380_468 -4380_77978,293,4380_28228,South Mall,71210-00017-1,0,4380_7778208_2060211,4380_468 -4380_77978,290,4380_28229,South Mall,71212-00015-1,0,4380_7778208_2060211,4380_468 -4380_77947,293,4380_2823,Drop Off,50857-00017-1,1,4380_7778208_1011103,4380_28 -4380_77978,294,4380_28230,South Mall,71206-00018-1,0,4380_7778208_2060211,4380_468 -4380_77978,295,4380_28231,South Mall,71204-00019-1,0,4380_7778208_2060211,4380_468 -4380_77978,296,4380_28232,South Mall,70968-00021-1,0,4380_7778208_2060202,4380_468 -4380_77978,285,4380_28238,South Mall,71767-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28239,South Mall,71769-00010-1,0,4380_7778208_2060213,4380_467 -4380_77947,294,4380_2824,Drop Off,50859-00018-1,1,4380_7778208_1011103,4380_28 -4380_77978,288,4380_28240,South Mall,71763-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28241,South Mall,71771-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,289,4380_28242,South Mall,71765-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28243,South Mall,71770-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28244,South Mall,71764-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28245,South Mall,71768-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28246,South Mall,71772-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28247,South Mall,71766-00019-1,0,4380_7778208_2060213,4380_467 -4380_77947,295,4380_2825,Drop Off,50853-00019-1,1,4380_7778208_1011103,4380_28 -4380_77978,285,4380_28255,South Mall,72053-00009-1,0,4380_7778208_2060215,4380_467 -4380_77978,286,4380_28256,South Mall,72061-00010-1,0,4380_7778208_2060215,4380_467 -4380_77978,297,4380_28257,South Mall,70972-00008-1,0,4380_7778208_2060202,4380_467 -4380_77978,288,4380_28258,South Mall,72059-00011-1,0,4380_7778208_2060215,4380_467 -4380_77978,287,4380_28259,South Mall,72055-00012-1,0,4380_7778208_2060215,4380_467 -4380_77978,291,4380_28260,South Mall,70898-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_28261,South Mall,72057-00014-1,0,4380_7778208_2060215,4380_467 -4380_77978,292,4380_28262,South Mall,72062-00016-1,0,4380_7778208_2060215,4380_467 -4380_77978,293,4380_28263,South Mall,72060-00017-1,0,4380_7778208_2060215,4380_467 -4380_77978,290,4380_28264,South Mall,72054-00015-1,0,4380_7778208_2060215,4380_467 -4380_77978,294,4380_28265,South Mall,72056-00018-1,0,4380_7778208_2060215,4380_467 -4380_77978,295,4380_28266,South Mall,72058-00019-1,0,4380_7778208_2060215,4380_467 -4380_77978,296,4380_28267,South Mall,70899-00021-1,0,4380_7778208_2060201,4380_467 -4380_77978,285,4380_28274,South Mall,71531-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28275,South Mall,71523-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28276,South Mall,71529-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28277,South Mall,71525-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,291,4380_28278,South Mall,71034-00013-1,0,4380_7778208_2060203,4380_467 -4380_77978,289,4380_28279,South Mall,71527-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28280,South Mall,71524-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28281,South Mall,71530-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28282,South Mall,71532-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28283,South Mall,71526-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28284,South Mall,71528-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28285,South Mall,71035-00021-1,0,4380_7778208_2060203,4380_467 -4380_77978,285,4380_28293,South Mall,71229-00009-1,0,4380_7778208_2060211,4380_467 -4380_77978,286,4380_28294,South Mall,71227-00010-1,0,4380_7778208_2060211,4380_467 -4380_77978,297,4380_28295,South Mall,70901-00008-1,0,4380_7778208_2060201,4380_467 -4380_77978,288,4380_28296,South Mall,71223-00011-1,0,4380_7778208_2060211,4380_467 -4380_77978,287,4380_28297,South Mall,71231-00012-1,0,4380_7778208_2060211,4380_467 -4380_77978,291,4380_28298,South Mall,70974-00013-1,0,4380_7778208_2060202,4380_467 -4380_77978,289,4380_28299,South Mall,71225-00014-1,0,4380_7778208_2060211,4380_467 -4380_77946,295,4380_283,Dundalk,50528-00019-1,0,4380_7778208_1000915,4380_1 -4380_77978,292,4380_28300,South Mall,71228-00016-1,0,4380_7778208_2060211,4380_467 -4380_77978,293,4380_28301,South Mall,71224-00017-1,0,4380_7778208_2060211,4380_467 -4380_77978,290,4380_28302,South Mall,71230-00015-1,0,4380_7778208_2060211,4380_467 -4380_77978,294,4380_28303,South Mall,71232-00018-1,0,4380_7778208_2060211,4380_467 -4380_77978,295,4380_28304,South Mall,71226-00019-1,0,4380_7778208_2060211,4380_467 -4380_77978,296,4380_28305,South Mall,70975-00021-1,0,4380_7778208_2060202,4380_467 -4380_77978,285,4380_28312,South Mall,71787-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28313,South Mall,71791-00010-1,0,4380_7778208_2060213,4380_467 -4380_77978,288,4380_28314,South Mall,71785-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28315,South Mall,71789-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28316,South Mall,71089-00013-1,0,4380_7778208_2060204,4380_467 -4380_77978,289,4380_28317,South Mall,71783-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28318,South Mall,71792-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28319,South Mall,71786-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28320,South Mall,71788-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28321,South Mall,71790-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28322,South Mall,71784-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28323,South Mall,71090-00021-1,0,4380_7778208_2060204,4380_467 -4380_77947,285,4380_2833,Drop Off,51244-00009-1,1,4380_7778208_1011107,4380_28 -4380_77978,285,4380_28331,South Mall,72073-00009-1,0,4380_7778208_2060215,4380_467 -4380_77978,286,4380_28332,South Mall,72081-00010-1,0,4380_7778208_2060215,4380_467 -4380_77978,297,4380_28333,South Mall,70976-00008-1,0,4380_7778208_2060202,4380_467 -4380_77978,288,4380_28334,South Mall,72075-00011-1,0,4380_7778208_2060215,4380_467 -4380_77978,287,4380_28335,South Mall,72079-00012-1,0,4380_7778208_2060215,4380_467 -4380_77978,291,4380_28336,South Mall,70905-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_28337,South Mall,72077-00014-1,0,4380_7778208_2060215,4380_467 -4380_77978,292,4380_28338,South Mall,72082-00016-1,0,4380_7778208_2060215,4380_467 -4380_77978,293,4380_28339,South Mall,72076-00017-1,0,4380_7778208_2060215,4380_467 -4380_77947,286,4380_2834,Drop Off,51250-00010-1,1,4380_7778208_1011107,4380_28 -4380_77978,290,4380_28340,South Mall,72074-00015-1,0,4380_7778208_2060215,4380_467 -4380_77978,294,4380_28341,South Mall,72080-00018-1,0,4380_7778208_2060215,4380_467 -4380_77978,295,4380_28342,South Mall,72078-00019-1,0,4380_7778208_2060215,4380_467 -4380_77978,296,4380_28343,South Mall,70906-00021-1,0,4380_7778208_2060201,4380_467 -4380_77947,297,4380_2835,Drop Off,50754-00008-1,1,4380_7778208_1011102,4380_30 -4380_77978,285,4380_28350,South Mall,71547-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28351,South Mall,71551-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28352,South Mall,71545-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28353,South Mall,71549-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,291,4380_28354,South Mall,71038-00013-1,0,4380_7778208_2060203,4380_467 -4380_77978,289,4380_28355,South Mall,71543-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28356,South Mall,71552-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28357,South Mall,71546-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28358,South Mall,71548-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28359,South Mall,71550-00018-1,0,4380_7778208_2060212,4380_467 -4380_77947,288,4380_2836,Drop Off,51242-00011-1,1,4380_7778208_1011107,4380_28 -4380_77978,295,4380_28360,South Mall,71544-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28361,South Mall,71039-00021-1,0,4380_7778208_2060203,4380_467 -4380_77978,285,4380_28369,South Mall,71243-00009-1,0,4380_7778208_2060211,4380_467 -4380_77947,287,4380_2837,Drop Off,51246-00012-1,1,4380_7778208_1011107,4380_28 -4380_77978,286,4380_28370,South Mall,71247-00010-1,0,4380_7778208_2060211,4380_467 -4380_77978,297,4380_28371,South Mall,70907-00008-1,0,4380_7778208_2060201,4380_467 -4380_77978,288,4380_28372,South Mall,71251-00011-1,0,4380_7778208_2060211,4380_467 -4380_77978,287,4380_28373,South Mall,71249-00012-1,0,4380_7778208_2060211,4380_467 -4380_77978,291,4380_28374,South Mall,70980-00013-1,0,4380_7778208_2060202,4380_467 -4380_77978,289,4380_28375,South Mall,71245-00014-1,0,4380_7778208_2060211,4380_467 -4380_77978,292,4380_28376,South Mall,71248-00016-1,0,4380_7778208_2060211,4380_467 -4380_77978,293,4380_28377,South Mall,71252-00017-1,0,4380_7778208_2060211,4380_467 -4380_77978,290,4380_28378,South Mall,71244-00015-1,0,4380_7778208_2060211,4380_467 -4380_77978,294,4380_28379,South Mall,71250-00018-1,0,4380_7778208_2060211,4380_467 -4380_77947,289,4380_2838,Drop Off,51248-00014-1,1,4380_7778208_1011107,4380_28 -4380_77978,295,4380_28380,South Mall,71246-00019-1,0,4380_7778208_2060211,4380_467 -4380_77978,296,4380_28381,South Mall,70981-00021-1,0,4380_7778208_2060202,4380_467 -4380_77978,285,4380_28388,South Mall,71807-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28389,South Mall,71811-00010-1,0,4380_7778208_2060213,4380_467 -4380_77947,290,4380_2839,Drop Off,51245-00015-1,1,4380_7778208_1011107,4380_28 -4380_77978,288,4380_28390,South Mall,71803-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28391,South Mall,71809-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28392,South Mall,71093-00013-1,0,4380_7778208_2060204,4380_467 -4380_77978,289,4380_28393,South Mall,71805-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28394,South Mall,71812-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28395,South Mall,71804-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28396,South Mall,71808-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28397,South Mall,71810-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28398,South Mall,71806-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28399,South Mall,71094-00021-1,0,4380_7778208_2060204,4380_467 -4380_77946,296,4380_284,Dundalk,50286-00021-1,0,4380_7778208_1000912,4380_5 -4380_77947,291,4380_2840,Drop Off,51353-00013-1,1,4380_7778208_1011108,4380_32 -4380_77978,285,4380_28407,South Mall,72093-00009-1,0,4380_7778208_2060215,4380_467 -4380_77978,286,4380_28408,South Mall,72101-00010-1,0,4380_7778208_2060215,4380_467 -4380_77978,297,4380_28409,South Mall,70984-00008-1,0,4380_7778208_2060202,4380_467 -4380_77947,292,4380_2841,Drop Off,51251-00016-1,1,4380_7778208_1011107,4380_28 -4380_77978,288,4380_28410,South Mall,72095-00011-1,0,4380_7778208_2060215,4380_467 -4380_77978,287,4380_28411,South Mall,72097-00012-1,0,4380_7778208_2060215,4380_467 -4380_77978,291,4380_28412,South Mall,70911-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_28413,South Mall,72099-00014-1,0,4380_7778208_2060215,4380_467 -4380_77978,292,4380_28414,South Mall,72102-00016-1,0,4380_7778208_2060215,4380_467 -4380_77978,293,4380_28415,South Mall,72096-00017-1,0,4380_7778208_2060215,4380_467 -4380_77978,290,4380_28416,South Mall,72094-00015-1,0,4380_7778208_2060215,4380_467 -4380_77978,294,4380_28417,South Mall,72098-00018-1,0,4380_7778208_2060215,4380_467 -4380_77978,295,4380_28418,South Mall,72100-00019-1,0,4380_7778208_2060215,4380_467 -4380_77978,296,4380_28419,South Mall,70912-00021-1,0,4380_7778208_2060201,4380_467 -4380_77947,293,4380_2842,Drop Off,51243-00017-1,1,4380_7778208_1011107,4380_28 -4380_77978,285,4380_28426,South Mall,71563-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28427,South Mall,71569-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28428,South Mall,71567-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28429,South Mall,71565-00012-1,0,4380_7778208_2060212,4380_467 -4380_77947,294,4380_2843,Drop Off,51247-00018-1,1,4380_7778208_1011107,4380_28 -4380_77978,291,4380_28430,South Mall,71042-00013-1,0,4380_7778208_2060203,4380_467 -4380_77978,289,4380_28431,South Mall,71571-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28432,South Mall,71570-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28433,South Mall,71568-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28434,South Mall,71564-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28435,South Mall,71566-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28436,South Mall,71572-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28437,South Mall,71043-00021-1,0,4380_7778208_2060203,4380_467 -4380_77947,295,4380_2844,Drop Off,51249-00019-1,1,4380_7778208_1011107,4380_28 -4380_77978,285,4380_28445,South Mall,71271-00009-1,0,4380_7778208_2060211,4380_467 -4380_77978,286,4380_28446,South Mall,71267-00010-1,0,4380_7778208_2060211,4380_467 -4380_77978,297,4380_28447,South Mall,70913-00008-1,0,4380_7778208_2060201,4380_467 -4380_77978,288,4380_28448,South Mall,71269-00011-1,0,4380_7778208_2060211,4380_467 -4380_77978,287,4380_28449,South Mall,71265-00012-1,0,4380_7778208_2060211,4380_467 -4380_77947,296,4380_2845,Drop Off,51354-00021-1,1,4380_7778208_1011108,4380_32 -4380_77978,291,4380_28450,South Mall,70986-00013-1,0,4380_7778208_2060202,4380_467 -4380_77978,289,4380_28451,South Mall,71263-00014-1,0,4380_7778208_2060211,4380_467 -4380_77978,292,4380_28452,South Mall,71268-00016-1,0,4380_7778208_2060211,4380_467 -4380_77978,293,4380_28453,South Mall,71270-00017-1,0,4380_7778208_2060211,4380_467 -4380_77978,290,4380_28454,South Mall,71272-00015-1,0,4380_7778208_2060211,4380_467 -4380_77978,294,4380_28455,South Mall,71266-00018-1,0,4380_7778208_2060211,4380_467 -4380_77978,295,4380_28456,South Mall,71264-00019-1,0,4380_7778208_2060211,4380_467 -4380_77978,296,4380_28457,South Mall,70987-00021-1,0,4380_7778208_2060202,4380_467 -4380_77978,285,4380_28464,South Mall,71823-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28465,South Mall,71827-00010-1,0,4380_7778208_2060213,4380_467 -4380_77978,288,4380_28466,South Mall,71829-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28467,South Mall,71825-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28468,South Mall,71097-00013-1,0,4380_7778208_2060204,4380_467 -4380_77978,289,4380_28469,South Mall,71831-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28470,South Mall,71828-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28471,South Mall,71830-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28472,South Mall,71824-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28473,South Mall,71826-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28474,South Mall,71832-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28475,South Mall,71098-00021-1,0,4380_7778208_2060204,4380_467 -4380_77978,285,4380_28483,South Mall,72115-00009-1,0,4380_7778208_2060215,4380_468 -4380_77978,286,4380_28484,South Mall,72117-00010-1,0,4380_7778208_2060215,4380_468 -4380_77978,297,4380_28485,South Mall,70988-00008-1,0,4380_7778208_2060202,4380_467 -4380_77978,288,4380_28486,South Mall,72119-00011-1,0,4380_7778208_2060215,4380_468 -4380_77978,287,4380_28487,South Mall,72113-00012-1,0,4380_7778208_2060215,4380_468 -4380_77978,291,4380_28488,South Mall,70916-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_28489,South Mall,72121-00014-1,0,4380_7778208_2060215,4380_468 -4380_77978,292,4380_28490,South Mall,72118-00016-1,0,4380_7778208_2060215,4380_468 -4380_77978,293,4380_28491,South Mall,72120-00017-1,0,4380_7778208_2060215,4380_468 -4380_77978,290,4380_28492,South Mall,72116-00015-1,0,4380_7778208_2060215,4380_468 -4380_77978,294,4380_28493,South Mall,72114-00018-1,0,4380_7778208_2060215,4380_468 -4380_77978,295,4380_28494,South Mall,72122-00019-1,0,4380_7778208_2060215,4380_468 -4380_77978,296,4380_28495,South Mall,70917-00021-1,0,4380_7778208_2060201,4380_467 -4380_77978,285,4380_28502,South Mall,71585-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28503,South Mall,71589-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28504,South Mall,71583-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28505,South Mall,71591-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,291,4380_28506,South Mall,71046-00013-1,0,4380_7778208_2060203,4380_468 -4380_77978,289,4380_28507,South Mall,71587-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28508,South Mall,71590-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28509,South Mall,71584-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28510,South Mall,71586-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28511,South Mall,71592-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28512,South Mall,71588-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28513,South Mall,71047-00021-1,0,4380_7778208_2060203,4380_468 -4380_77978,297,4380_28521,South Mall,71048-00008-1,0,4380_7778208_2060203,4380_467 -4380_77978,285,4380_28522,South Mall,71283-00009-1,0,4380_7778208_2060211,4380_468 -4380_77978,286,4380_28523,South Mall,71289-00010-1,0,4380_7778208_2060211,4380_468 -4380_77978,288,4380_28524,South Mall,71287-00011-1,0,4380_7778208_2060211,4380_468 -4380_77978,287,4380_28525,South Mall,71285-00012-1,0,4380_7778208_2060211,4380_468 -4380_77978,291,4380_28526,South Mall,70991-00013-1,0,4380_7778208_2060202,4380_467 -4380_77978,289,4380_28527,South Mall,71291-00014-1,0,4380_7778208_2060211,4380_468 -4380_77978,292,4380_28528,South Mall,71290-00016-1,0,4380_7778208_2060211,4380_468 -4380_77978,293,4380_28529,South Mall,71288-00017-1,0,4380_7778208_2060211,4380_468 -4380_77947,285,4380_2853,Drop Off,51587-00009-1,1,4380_7778208_1011112,4380_28 -4380_77978,290,4380_28530,South Mall,71284-00015-1,0,4380_7778208_2060211,4380_468 -4380_77978,294,4380_28531,South Mall,71286-00018-1,0,4380_7778208_2060211,4380_468 -4380_77978,295,4380_28532,South Mall,71292-00019-1,0,4380_7778208_2060211,4380_468 -4380_77978,296,4380_28533,South Mall,70992-00021-1,0,4380_7778208_2060202,4380_467 -4380_77947,286,4380_2854,Drop Off,51589-00010-1,1,4380_7778208_1011112,4380_28 -4380_77978,285,4380_28540,South Mall,71847-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28541,South Mall,71845-00010-1,0,4380_7778208_2060213,4380_467 -4380_77978,288,4380_28542,South Mall,71843-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28543,South Mall,71851-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28544,South Mall,71101-00013-1,0,4380_7778208_2060204,4380_468 -4380_77978,289,4380_28545,South Mall,71849-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28546,South Mall,71846-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28547,South Mall,71844-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28548,South Mall,71848-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28549,South Mall,71852-00018-1,0,4380_7778208_2060213,4380_467 -4380_77947,297,4380_2855,Drop Off,51493-00008-1,1,4380_7778208_1011110,4380_30 -4380_77978,295,4380_28550,South Mall,71850-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28551,South Mall,71102-00021-1,0,4380_7778208_2060204,4380_468 -4380_77978,285,4380_28559,South Mall,72135-00009-1,0,4380_7778208_2060215,4380_468 -4380_77947,288,4380_2856,Drop Off,51593-00011-1,1,4380_7778208_1011112,4380_28 -4380_77978,286,4380_28560,South Mall,72137-00010-1,0,4380_7778208_2060215,4380_468 -4380_77978,297,4380_28561,South Mall,70996-00008-1,0,4380_7778208_2060202,4380_467 -4380_77978,288,4380_28562,South Mall,72139-00011-1,0,4380_7778208_2060215,4380_468 -4380_77978,287,4380_28563,South Mall,72141-00012-1,0,4380_7778208_2060215,4380_468 -4380_77978,291,4380_28564,South Mall,70921-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_28565,South Mall,72133-00014-1,0,4380_7778208_2060215,4380_468 -4380_77978,292,4380_28566,South Mall,72138-00016-1,0,4380_7778208_2060215,4380_468 -4380_77978,293,4380_28567,South Mall,72140-00017-1,0,4380_7778208_2060215,4380_468 -4380_77978,290,4380_28568,South Mall,72136-00015-1,0,4380_7778208_2060215,4380_468 -4380_77978,294,4380_28569,South Mall,72142-00018-1,0,4380_7778208_2060215,4380_468 -4380_77947,287,4380_2857,Drop Off,51595-00012-1,1,4380_7778208_1011112,4380_28 -4380_77978,295,4380_28570,South Mall,72134-00019-1,0,4380_7778208_2060215,4380_468 -4380_77978,296,4380_28571,South Mall,70922-00021-1,0,4380_7778208_2060201,4380_467 -4380_77978,285,4380_28578,South Mall,71607-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28579,South Mall,71605-00010-1,0,4380_7778208_2060212,4380_467 -4380_77947,289,4380_2858,Drop Off,51591-00014-1,1,4380_7778208_1011112,4380_28 -4380_77978,288,4380_28580,South Mall,71603-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28581,South Mall,71609-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,291,4380_28582,South Mall,71052-00013-1,0,4380_7778208_2060203,4380_468 -4380_77978,289,4380_28583,South Mall,71611-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28584,South Mall,71606-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28585,South Mall,71604-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28586,South Mall,71608-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28587,South Mall,71610-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28588,South Mall,71612-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28589,South Mall,71053-00021-1,0,4380_7778208_2060203,4380_468 -4380_77947,290,4380_2859,Drop Off,51588-00015-1,1,4380_7778208_1011112,4380_28 -4380_77978,297,4380_28597,South Mall,71054-00008-1,0,4380_7778208_2060203,4380_467 -4380_77978,285,4380_28598,South Mall,71311-00009-1,0,4380_7778208_2060211,4380_468 -4380_77978,286,4380_28599,South Mall,71309-00010-1,0,4380_7778208_2060211,4380_468 -4380_77947,291,4380_2860,Drop Off,50650-00013-1,1,4380_7778208_1011101,4380_32 -4380_77978,288,4380_28600,South Mall,71305-00011-1,0,4380_7778208_2060211,4380_468 -4380_77978,287,4380_28601,South Mall,71303-00012-1,0,4380_7778208_2060211,4380_468 -4380_77978,291,4380_28602,South Mall,70997-00013-1,0,4380_7778208_2060202,4380_467 -4380_77978,289,4380_28603,South Mall,71307-00014-1,0,4380_7778208_2060211,4380_468 -4380_77978,292,4380_28604,South Mall,71310-00016-1,0,4380_7778208_2060211,4380_468 -4380_77978,293,4380_28605,South Mall,71306-00017-1,0,4380_7778208_2060211,4380_468 -4380_77978,290,4380_28606,South Mall,71312-00015-1,0,4380_7778208_2060211,4380_468 -4380_77978,294,4380_28607,South Mall,71304-00018-1,0,4380_7778208_2060211,4380_468 -4380_77978,295,4380_28608,South Mall,71308-00019-1,0,4380_7778208_2060211,4380_468 -4380_77978,296,4380_28609,South Mall,70998-00021-1,0,4380_7778208_2060202,4380_467 -4380_77947,292,4380_2861,Drop Off,51590-00016-1,1,4380_7778208_1011112,4380_28 -4380_77978,285,4380_28616,South Mall,71871-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28617,South Mall,71863-00010-1,0,4380_7778208_2060213,4380_467 -4380_77978,288,4380_28618,South Mall,71867-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28619,South Mall,71865-00012-1,0,4380_7778208_2060213,4380_467 -4380_77947,293,4380_2862,Drop Off,51594-00017-1,1,4380_7778208_1011112,4380_28 -4380_77978,291,4380_28620,South Mall,71105-00013-1,0,4380_7778208_2060204,4380_468 -4380_77978,289,4380_28621,South Mall,71869-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28622,South Mall,71864-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28623,South Mall,71868-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28624,South Mall,71872-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28625,South Mall,71866-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28626,South Mall,71870-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28627,South Mall,71106-00021-1,0,4380_7778208_2060204,4380_468 -4380_77947,294,4380_2863,Drop Off,51596-00018-1,1,4380_7778208_1011112,4380_28 -4380_77978,285,4380_28635,South Mall,72153-00009-1,0,4380_7778208_2060215,4380_468 -4380_77978,286,4380_28636,South Mall,72159-00010-1,0,4380_7778208_2060215,4380_468 -4380_77978,297,4380_28637,South Mall,71002-00008-1,0,4380_7778208_2060202,4380_467 -4380_77978,288,4380_28638,South Mall,72157-00011-1,0,4380_7778208_2060215,4380_468 -4380_77978,287,4380_28639,South Mall,72155-00012-1,0,4380_7778208_2060215,4380_468 -4380_77947,295,4380_2864,Drop Off,51592-00019-1,1,4380_7778208_1011112,4380_28 -4380_77978,291,4380_28640,South Mall,70925-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_28641,South Mall,72161-00014-1,0,4380_7778208_2060215,4380_468 -4380_77978,292,4380_28642,South Mall,72160-00016-1,0,4380_7778208_2060215,4380_468 -4380_77978,293,4380_28643,South Mall,72158-00017-1,0,4380_7778208_2060215,4380_468 -4380_77978,290,4380_28644,South Mall,72154-00015-1,0,4380_7778208_2060215,4380_468 -4380_77978,294,4380_28645,South Mall,72156-00018-1,0,4380_7778208_2060215,4380_468 -4380_77978,295,4380_28646,South Mall,72162-00019-1,0,4380_7778208_2060215,4380_468 -4380_77978,296,4380_28647,South Mall,70926-00021-1,0,4380_7778208_2060201,4380_467 -4380_77947,296,4380_2865,Drop Off,50651-00021-1,1,4380_7778208_1011101,4380_32 -4380_77978,285,4380_28654,South Mall,71625-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28655,South Mall,71627-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28656,South Mall,71629-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28657,South Mall,71623-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,291,4380_28658,South Mall,71058-00013-1,0,4380_7778208_2060203,4380_468 -4380_77978,289,4380_28659,South Mall,71631-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28660,South Mall,71628-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28661,South Mall,71630-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28662,South Mall,71626-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28663,South Mall,71624-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28664,South Mall,71632-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28665,South Mall,71059-00021-1,0,4380_7778208_2060203,4380_468 -4380_77978,297,4380_28673,South Mall,71060-00008-1,0,4380_7778208_2060203,4380_467 -4380_77978,285,4380_28674,South Mall,71323-00009-1,0,4380_7778208_2060211,4380_468 -4380_77978,286,4380_28675,South Mall,71327-00010-1,0,4380_7778208_2060211,4380_468 -4380_77978,288,4380_28676,South Mall,71325-00011-1,0,4380_7778208_2060211,4380_468 -4380_77978,287,4380_28677,South Mall,71329-00012-1,0,4380_7778208_2060211,4380_468 -4380_77978,291,4380_28678,South Mall,71004-00013-1,0,4380_7778208_2060202,4380_467 -4380_77978,289,4380_28679,South Mall,71331-00014-1,0,4380_7778208_2060211,4380_468 -4380_77978,292,4380_28680,South Mall,71328-00016-1,0,4380_7778208_2060211,4380_468 -4380_77978,293,4380_28681,South Mall,71326-00017-1,0,4380_7778208_2060211,4380_468 -4380_77978,290,4380_28682,South Mall,71324-00015-1,0,4380_7778208_2060211,4380_468 -4380_77978,294,4380_28683,South Mall,71330-00018-1,0,4380_7778208_2060211,4380_468 -4380_77978,295,4380_28684,South Mall,71332-00019-1,0,4380_7778208_2060211,4380_468 -4380_77978,296,4380_28685,South Mall,71005-00021-1,0,4380_7778208_2060202,4380_467 -4380_77978,285,4380_28692,South Mall,71887-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28693,South Mall,71891-00010-1,0,4380_7778208_2060213,4380_467 -4380_77978,288,4380_28694,South Mall,71885-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28695,South Mall,71883-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28696,South Mall,71109-00013-1,0,4380_7778208_2060204,4380_468 -4380_77978,289,4380_28697,South Mall,71889-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28698,South Mall,71892-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28699,South Mall,71886-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28700,South Mall,71888-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28701,South Mall,71884-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28702,South Mall,71890-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28703,South Mall,71110-00021-1,0,4380_7778208_2060204,4380_468 -4380_77978,285,4380_28711,South Mall,72179-00009-1,0,4380_7778208_2060215,4380_468 -4380_77978,286,4380_28712,South Mall,72181-00010-1,0,4380_7778208_2060215,4380_468 -4380_77978,297,4380_28713,South Mall,71006-00008-1,0,4380_7778208_2060202,4380_467 -4380_77978,288,4380_28714,South Mall,72175-00011-1,0,4380_7778208_2060215,4380_468 -4380_77978,287,4380_28715,South Mall,72173-00012-1,0,4380_7778208_2060215,4380_468 -4380_77978,291,4380_28716,South Mall,70929-00013-1,0,4380_7778208_2060201,4380_469 -4380_77978,289,4380_28717,South Mall,72177-00014-1,0,4380_7778208_2060215,4380_468 -4380_77978,292,4380_28718,South Mall,72182-00016-1,0,4380_7778208_2060215,4380_468 -4380_77978,293,4380_28719,South Mall,72176-00017-1,0,4380_7778208_2060215,4380_468 -4380_77947,285,4380_2872,Drop Off,51647-00009-1,1,4380_7778208_1011113,4380_28 -4380_77978,290,4380_28720,South Mall,72180-00015-1,0,4380_7778208_2060215,4380_468 -4380_77978,294,4380_28721,South Mall,72174-00018-1,0,4380_7778208_2060215,4380_468 -4380_77978,295,4380_28722,South Mall,72178-00019-1,0,4380_7778208_2060215,4380_468 -4380_77978,296,4380_28723,South Mall,70930-00021-1,0,4380_7778208_2060201,4380_469 -4380_77947,286,4380_2873,Drop Off,51649-00010-1,1,4380_7778208_1011113,4380_28 -4380_77978,285,4380_28730,South Mall,71649-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28731,South Mall,71643-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28732,South Mall,71645-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28733,South Mall,71647-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,291,4380_28734,South Mall,71064-00013-1,0,4380_7778208_2060203,4380_468 -4380_77978,289,4380_28735,South Mall,71651-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28736,South Mall,71644-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28737,South Mall,71646-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28738,South Mall,71650-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28739,South Mall,71648-00018-1,0,4380_7778208_2060212,4380_467 -4380_77947,288,4380_2874,Drop Off,51653-00011-1,1,4380_7778208_1011113,4380_28 -4380_77978,295,4380_28740,South Mall,71652-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28741,South Mall,71065-00021-1,0,4380_7778208_2060203,4380_468 -4380_77978,297,4380_28749,South Mall,71066-00008-1,0,4380_7778208_2060203,4380_467 -4380_77947,287,4380_2875,Drop Off,51655-00012-1,1,4380_7778208_1011113,4380_28 -4380_77978,285,4380_28750,South Mall,71347-00009-1,0,4380_7778208_2060211,4380_468 -4380_77978,286,4380_28751,South Mall,71351-00010-1,0,4380_7778208_2060211,4380_468 -4380_77978,288,4380_28752,South Mall,71349-00011-1,0,4380_7778208_2060211,4380_468 -4380_77978,287,4380_28753,South Mall,71345-00012-1,0,4380_7778208_2060211,4380_468 -4380_77978,291,4380_28754,South Mall,71010-00013-1,0,4380_7778208_2060202,4380_469 -4380_77978,289,4380_28755,South Mall,71343-00014-1,0,4380_7778208_2060211,4380_468 -4380_77978,292,4380_28756,South Mall,71352-00016-1,0,4380_7778208_2060211,4380_468 -4380_77978,293,4380_28757,South Mall,71350-00017-1,0,4380_7778208_2060211,4380_468 -4380_77978,290,4380_28758,South Mall,71348-00015-1,0,4380_7778208_2060211,4380_468 -4380_77978,294,4380_28759,South Mall,71346-00018-1,0,4380_7778208_2060211,4380_468 -4380_77947,289,4380_2876,Drop Off,51651-00014-1,1,4380_7778208_1011113,4380_28 -4380_77978,295,4380_28760,South Mall,71344-00019-1,0,4380_7778208_2060211,4380_468 -4380_77978,296,4380_28761,South Mall,71011-00021-1,0,4380_7778208_2060202,4380_469 -4380_77978,285,4380_28768,South Mall,71903-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28769,South Mall,71905-00010-1,0,4380_7778208_2060213,4380_467 -4380_77947,290,4380_2877,Drop Off,51648-00015-1,1,4380_7778208_1011113,4380_28 -4380_77978,288,4380_28770,South Mall,71911-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28771,South Mall,71907-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28772,South Mall,71113-00013-1,0,4380_7778208_2060204,4380_468 -4380_77978,289,4380_28773,South Mall,71909-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28774,South Mall,71906-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28775,South Mall,71912-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28776,South Mall,71904-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28777,South Mall,71908-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28778,South Mall,71910-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28779,South Mall,71114-00021-1,0,4380_7778208_2060204,4380_468 -4380_77947,291,4380_2878,Drop Off,51252-00013-1,1,4380_7778208_1011107,4380_30 -4380_77978,285,4380_28787,South Mall,72199-00009-1,0,4380_7778208_2060215,4380_468 -4380_77978,286,4380_28788,South Mall,72195-00010-1,0,4380_7778208_2060215,4380_468 -4380_77978,297,4380_28789,South Mall,71012-00008-1,0,4380_7778208_2060202,4380_467 -4380_77947,292,4380_2879,Drop Off,51650-00016-1,1,4380_7778208_1011113,4380_28 -4380_77978,288,4380_28790,South Mall,72201-00011-1,0,4380_7778208_2060215,4380_468 -4380_77978,287,4380_28791,South Mall,72193-00012-1,0,4380_7778208_2060215,4380_468 -4380_77978,291,4380_28792,South Mall,70933-00013-1,0,4380_7778208_2060201,4380_469 -4380_77978,289,4380_28793,South Mall,72197-00014-1,0,4380_7778208_2060215,4380_468 -4380_77978,292,4380_28794,South Mall,72196-00016-1,0,4380_7778208_2060215,4380_468 -4380_77978,293,4380_28795,South Mall,72202-00017-1,0,4380_7778208_2060215,4380_468 -4380_77978,290,4380_28796,South Mall,72200-00015-1,0,4380_7778208_2060215,4380_468 -4380_77978,294,4380_28797,South Mall,72194-00018-1,0,4380_7778208_2060215,4380_468 -4380_77978,295,4380_28798,South Mall,72198-00019-1,0,4380_7778208_2060215,4380_468 -4380_77978,296,4380_28799,South Mall,70934-00021-1,0,4380_7778208_2060201,4380_469 -4380_77947,293,4380_2880,Drop Off,51654-00017-1,1,4380_7778208_1011113,4380_28 -4380_77978,285,4380_28806,South Mall,71667-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28807,South Mall,71663-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28808,South Mall,71665-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28809,South Mall,71671-00012-1,0,4380_7778208_2060212,4380_467 -4380_77947,294,4380_2881,Drop Off,51656-00018-1,1,4380_7778208_1011113,4380_28 -4380_77978,291,4380_28810,South Mall,71070-00013-1,0,4380_7778208_2060203,4380_468 -4380_77978,289,4380_28811,South Mall,71669-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28812,South Mall,71664-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28813,South Mall,71666-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28814,South Mall,71668-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28815,South Mall,71672-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28816,South Mall,71670-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28817,South Mall,71071-00021-1,0,4380_7778208_2060203,4380_468 -4380_77947,295,4380_2882,Drop Off,51652-00019-1,1,4380_7778208_1011113,4380_28 -4380_77978,297,4380_28825,South Mall,71072-00008-1,0,4380_7778208_2060203,4380_467 -4380_77978,285,4380_28826,South Mall,71371-00009-1,0,4380_7778208_2060211,4380_468 -4380_77978,286,4380_28827,South Mall,71369-00010-1,0,4380_7778208_2060211,4380_468 -4380_77978,288,4380_28828,South Mall,71365-00011-1,0,4380_7778208_2060211,4380_468 -4380_77978,287,4380_28829,South Mall,71363-00012-1,0,4380_7778208_2060211,4380_468 -4380_77947,296,4380_2883,Drop Off,51253-00021-1,1,4380_7778208_1011107,4380_30 -4380_77978,291,4380_28830,South Mall,71016-00013-1,0,4380_7778208_2060202,4380_469 -4380_77978,289,4380_28831,South Mall,71367-00014-1,0,4380_7778208_2060211,4380_468 -4380_77978,292,4380_28832,South Mall,71370-00016-1,0,4380_7778208_2060211,4380_468 -4380_77978,293,4380_28833,South Mall,71366-00017-1,0,4380_7778208_2060211,4380_468 -4380_77978,290,4380_28834,South Mall,71372-00015-1,0,4380_7778208_2060211,4380_468 -4380_77978,294,4380_28835,South Mall,71364-00018-1,0,4380_7778208_2060211,4380_468 -4380_77978,295,4380_28836,South Mall,71368-00019-1,0,4380_7778208_2060211,4380_468 -4380_77978,296,4380_28837,South Mall,71017-00021-1,0,4380_7778208_2060202,4380_469 -4380_77978,285,4380_28844,South Mall,71929-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28845,South Mall,71923-00010-1,0,4380_7778208_2060213,4380_467 -4380_77978,288,4380_28846,South Mall,71931-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28847,South Mall,71925-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28848,South Mall,71117-00013-1,0,4380_7778208_2060204,4380_468 -4380_77978,289,4380_28849,South Mall,71927-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28850,South Mall,71924-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28851,South Mall,71932-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28852,South Mall,71930-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28853,South Mall,71926-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28854,South Mall,71928-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28855,South Mall,71118-00021-1,0,4380_7778208_2060204,4380_468 -4380_77978,297,4380_28857,South Mall,71018-00008-1,0,4380_7778208_2060202,4380_467 -4380_77978,285,4380_28864,South Mall,71685-00009-1,0,4380_7778208_2060212,4380_467 -4380_77978,286,4380_28865,South Mall,71691-00010-1,0,4380_7778208_2060212,4380_467 -4380_77978,288,4380_28866,South Mall,71687-00011-1,0,4380_7778208_2060212,4380_467 -4380_77978,287,4380_28867,South Mall,71683-00012-1,0,4380_7778208_2060212,4380_467 -4380_77978,291,4380_28868,South Mall,71076-00013-1,0,4380_7778208_2060203,4380_467 -4380_77978,289,4380_28869,South Mall,71689-00014-1,0,4380_7778208_2060212,4380_467 -4380_77978,292,4380_28870,South Mall,71692-00016-1,0,4380_7778208_2060212,4380_467 -4380_77978,293,4380_28871,South Mall,71688-00017-1,0,4380_7778208_2060212,4380_467 -4380_77978,290,4380_28872,South Mall,71686-00015-1,0,4380_7778208_2060212,4380_467 -4380_77978,294,4380_28873,South Mall,71684-00018-1,0,4380_7778208_2060212,4380_467 -4380_77978,295,4380_28874,South Mall,71690-00019-1,0,4380_7778208_2060212,4380_467 -4380_77978,296,4380_28875,South Mall,71077-00021-1,0,4380_7778208_2060203,4380_467 -4380_77978,297,4380_28877,South Mall,71078-00008-1,0,4380_7778208_2060203,4380_467 -4380_77978,285,4380_28884,South Mall,71947-00009-1,0,4380_7778208_2060213,4380_467 -4380_77978,286,4380_28885,South Mall,71943-00010-1,0,4380_7778208_2060213,4380_467 -4380_77978,288,4380_28886,South Mall,71949-00011-1,0,4380_7778208_2060213,4380_467 -4380_77978,287,4380_28887,South Mall,71951-00012-1,0,4380_7778208_2060213,4380_467 -4380_77978,291,4380_28888,South Mall,71022-00013-1,0,4380_7778208_2060202,4380_467 -4380_77978,289,4380_28889,South Mall,71945-00014-1,0,4380_7778208_2060213,4380_467 -4380_77978,292,4380_28890,South Mall,71944-00016-1,0,4380_7778208_2060213,4380_467 -4380_77978,293,4380_28891,South Mall,71950-00017-1,0,4380_7778208_2060213,4380_467 -4380_77978,290,4380_28892,South Mall,71948-00015-1,0,4380_7778208_2060213,4380_467 -4380_77978,294,4380_28893,South Mall,71952-00018-1,0,4380_7778208_2060213,4380_467 -4380_77978,295,4380_28894,South Mall,71946-00019-1,0,4380_7778208_2060213,4380_467 -4380_77978,296,4380_28895,South Mall,71023-00021-1,0,4380_7778208_2060202,4380_467 -4380_77978,297,4380_28897,South Mall,71024-00008-1,0,4380_7778208_2060202,4380_467 -4380_77978,285,4380_28904,South Mall,72215-00009-1,0,4380_7778208_2060215,4380_467 -4380_77978,286,4380_28905,South Mall,72213-00010-1,0,4380_7778208_2060215,4380_467 -4380_77978,288,4380_28906,South Mall,72217-00011-1,0,4380_7778208_2060215,4380_467 -4380_77978,287,4380_28907,South Mall,72221-00012-1,0,4380_7778208_2060215,4380_467 -4380_77978,291,4380_28908,South Mall,70937-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_28909,South Mall,72219-00014-1,0,4380_7778208_2060215,4380_467 -4380_77947,285,4380_2891,Drop Off,51406-00009-1,1,4380_7778208_1011109,4380_28 -4380_77978,292,4380_28910,South Mall,72214-00016-1,0,4380_7778208_2060215,4380_467 -4380_77978,293,4380_28911,South Mall,72218-00017-1,0,4380_7778208_2060215,4380_467 -4380_77978,290,4380_28912,South Mall,72216-00015-1,0,4380_7778208_2060215,4380_467 -4380_77978,294,4380_28913,South Mall,72222-00018-1,0,4380_7778208_2060215,4380_467 -4380_77978,295,4380_28914,South Mall,72220-00019-1,0,4380_7778208_2060215,4380_467 -4380_77978,296,4380_28915,South Mall,70938-00021-1,0,4380_7778208_2060201,4380_467 -4380_77978,297,4380_28917,South Mall,71080-00008-1,0,4380_7778208_2060203,4380_467 -4380_77947,286,4380_2892,Drop Off,51400-00010-1,1,4380_7778208_1011109,4380_28 -4380_77978,285,4380_28924,South Mall,71389-00009-1,0,4380_7778208_2060211,4380_467 -4380_77978,286,4380_28925,South Mall,71391-00010-1,0,4380_7778208_2060211,4380_467 -4380_77978,288,4380_28926,South Mall,71385-00011-1,0,4380_7778208_2060211,4380_467 -4380_77978,287,4380_28927,South Mall,71387-00012-1,0,4380_7778208_2060211,4380_467 -4380_77978,291,4380_28928,South Mall,71121-00013-1,0,4380_7778208_2060204,4380_467 -4380_77978,289,4380_28929,South Mall,71383-00014-1,0,4380_7778208_2060211,4380_467 -4380_77947,297,4380_2893,Drop Off,50864-00008-1,1,4380_7778208_1011103,4380_30 -4380_77978,292,4380_28930,South Mall,71392-00016-1,0,4380_7778208_2060211,4380_467 -4380_77978,293,4380_28931,South Mall,71386-00017-1,0,4380_7778208_2060211,4380_467 -4380_77978,290,4380_28932,South Mall,71390-00015-1,0,4380_7778208_2060211,4380_467 -4380_77978,294,4380_28933,South Mall,71388-00018-1,0,4380_7778208_2060211,4380_467 -4380_77978,295,4380_28934,South Mall,71384-00019-1,0,4380_7778208_2060211,4380_467 -4380_77978,296,4380_28935,South Mall,71122-00021-1,0,4380_7778208_2060204,4380_467 -4380_77978,297,4380_28937,South Mall,71026-00008-1,0,4380_7778208_2060202,4380_467 -4380_77947,288,4380_2894,Drop Off,51402-00011-1,1,4380_7778208_1011109,4380_28 -4380_77978,285,4380_28944,South Mall,72235-00009-1,0,4380_7778208_2060215,4380_467 -4380_77978,286,4380_28945,South Mall,72237-00010-1,0,4380_7778208_2060215,4380_467 -4380_77978,288,4380_28946,South Mall,72239-00011-1,0,4380_7778208_2060215,4380_467 -4380_77978,287,4380_28947,South Mall,72233-00012-1,0,4380_7778208_2060215,4380_467 -4380_77978,291,4380_28948,South Mall,70941-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_28949,South Mall,72241-00014-1,0,4380_7778208_2060215,4380_467 -4380_77947,287,4380_2895,Drop Off,51398-00012-1,1,4380_7778208_1011109,4380_28 -4380_77978,292,4380_28950,South Mall,72238-00016-1,0,4380_7778208_2060215,4380_467 -4380_77978,293,4380_28951,South Mall,72240-00017-1,0,4380_7778208_2060215,4380_467 -4380_77978,290,4380_28952,South Mall,72236-00015-1,0,4380_7778208_2060215,4380_467 -4380_77978,294,4380_28953,South Mall,72234-00018-1,0,4380_7778208_2060215,4380_467 -4380_77978,295,4380_28954,South Mall,72242-00019-1,0,4380_7778208_2060215,4380_467 -4380_77978,296,4380_28955,South Mall,70942-00021-1,0,4380_7778208_2060201,4380_467 -4380_77978,297,4380_28957,South Mall,71082-00008-1,0,4380_7778208_2060203,4380_467 -4380_77947,289,4380_2896,Drop Off,51404-00014-1,1,4380_7778208_1011109,4380_28 -4380_77978,285,4380_28964,South Mall,71403-00009-1,0,4380_7778208_2060211,4380_467 -4380_77978,286,4380_28965,South Mall,71409-00010-1,0,4380_7778208_2060211,4380_467 -4380_77978,288,4380_28966,South Mall,71407-00011-1,0,4380_7778208_2060211,4380_467 -4380_77978,287,4380_28967,South Mall,71405-00012-1,0,4380_7778208_2060211,4380_467 -4380_77978,291,4380_28968,South Mall,71125-00013-1,0,4380_7778208_2060204,4380_467 -4380_77978,289,4380_28969,South Mall,71411-00014-1,0,4380_7778208_2060211,4380_467 -4380_77947,290,4380_2897,Drop Off,51407-00015-1,1,4380_7778208_1011109,4380_28 -4380_77978,292,4380_28970,South Mall,71410-00016-1,0,4380_7778208_2060211,4380_467 -4380_77978,293,4380_28971,South Mall,71408-00017-1,0,4380_7778208_2060211,4380_467 -4380_77978,290,4380_28972,South Mall,71404-00015-1,0,4380_7778208_2060211,4380_467 -4380_77978,294,4380_28973,South Mall,71406-00018-1,0,4380_7778208_2060211,4380_467 -4380_77978,295,4380_28974,South Mall,71412-00019-1,0,4380_7778208_2060211,4380_467 -4380_77978,296,4380_28975,South Mall,71126-00021-1,0,4380_7778208_2060204,4380_467 -4380_77978,297,4380_28977,South Mall,71028-00008-1,0,4380_7778208_2060202,4380_467 -4380_77947,291,4380_2898,Drop Off,50862-00013-1,1,4380_7778208_1011103,4380_32 -4380_77978,285,4380_28984,South Mall,72255-00009-1,0,4380_7778208_2060215,4380_467 -4380_77978,286,4380_28985,South Mall,72253-00010-1,0,4380_7778208_2060215,4380_467 -4380_77978,288,4380_28986,South Mall,72261-00011-1,0,4380_7778208_2060215,4380_467 -4380_77978,287,4380_28987,South Mall,72259-00012-1,0,4380_7778208_2060215,4380_467 -4380_77978,291,4380_28988,South Mall,70945-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_28989,South Mall,72257-00014-1,0,4380_7778208_2060215,4380_467 -4380_77947,292,4380_2899,Drop Off,51401-00016-1,1,4380_7778208_1011109,4380_28 -4380_77978,292,4380_28990,South Mall,72254-00016-1,0,4380_7778208_2060215,4380_467 -4380_77978,293,4380_28991,South Mall,72262-00017-1,0,4380_7778208_2060215,4380_467 -4380_77978,290,4380_28992,South Mall,72256-00015-1,0,4380_7778208_2060215,4380_467 -4380_77978,294,4380_28993,South Mall,72260-00018-1,0,4380_7778208_2060215,4380_467 -4380_77978,295,4380_28994,South Mall,72258-00019-1,0,4380_7778208_2060215,4380_467 -4380_77978,296,4380_28995,South Mall,70946-00021-1,0,4380_7778208_2060201,4380_467 -4380_77978,297,4380_28997,South Mall,71084-00008-1,0,4380_7778208_2060203,4380_467 -4380_77946,290,4380_29,Dundalk,114772-00015-1,0,4380_7778208_10088801,4380_3 -4380_77947,293,4380_2900,Drop Off,51403-00017-1,1,4380_7778208_1011109,4380_28 -4380_77978,285,4380_29004,South Mall,71425-00009-1,0,4380_7778208_2060211,4380_467 -4380_77978,286,4380_29005,South Mall,71427-00010-1,0,4380_7778208_2060211,4380_467 -4380_77978,288,4380_29006,South Mall,71431-00011-1,0,4380_7778208_2060211,4380_467 -4380_77978,287,4380_29007,South Mall,71429-00012-1,0,4380_7778208_2060211,4380_467 -4380_77978,291,4380_29008,South Mall,71129-00013-1,0,4380_7778208_2060204,4380_467 -4380_77978,289,4380_29009,South Mall,71423-00014-1,0,4380_7778208_2060211,4380_467 -4380_77947,294,4380_2901,Drop Off,51399-00018-1,1,4380_7778208_1011109,4380_28 -4380_77978,292,4380_29010,South Mall,71428-00016-1,0,4380_7778208_2060211,4380_467 -4380_77978,293,4380_29011,South Mall,71432-00017-1,0,4380_7778208_2060211,4380_467 -4380_77978,290,4380_29012,South Mall,71426-00015-1,0,4380_7778208_2060211,4380_467 -4380_77978,294,4380_29013,South Mall,71430-00018-1,0,4380_7778208_2060211,4380_467 -4380_77978,295,4380_29014,South Mall,71424-00019-1,0,4380_7778208_2060211,4380_467 -4380_77978,296,4380_29015,South Mall,71130-00021-1,0,4380_7778208_2060204,4380_467 -4380_77978,297,4380_29017,South Mall,71030-00008-1,0,4380_7778208_2060202,4380_467 -4380_77947,295,4380_2902,Drop Off,51405-00019-1,1,4380_7778208_1011109,4380_28 -4380_77978,297,4380_29025,South Mall,71086-00008-1,0,4380_7778208_2060203,4380_467 -4380_77978,285,4380_29026,South Mall,72281-00009-1,0,4380_7778208_2060215,4380_467 -4380_77978,286,4380_29027,South Mall,72279-00010-1,0,4380_7778208_2060215,4380_467 -4380_77978,288,4380_29028,South Mall,72273-00011-1,0,4380_7778208_2060215,4380_467 -4380_77978,287,4380_29029,South Mall,72277-00012-1,0,4380_7778208_2060215,4380_467 -4380_77947,296,4380_2903,Drop Off,50863-00021-1,1,4380_7778208_1011103,4380_32 -4380_77978,291,4380_29030,South Mall,70949-00013-1,0,4380_7778208_2060201,4380_467 -4380_77978,289,4380_29031,South Mall,72275-00014-1,0,4380_7778208_2060215,4380_467 -4380_77978,292,4380_29032,South Mall,72280-00016-1,0,4380_7778208_2060215,4380_467 -4380_77978,293,4380_29033,South Mall,72274-00017-1,0,4380_7778208_2060215,4380_467 -4380_77978,290,4380_29034,South Mall,72282-00015-1,0,4380_7778208_2060215,4380_467 -4380_77978,294,4380_29035,South Mall,72278-00018-1,0,4380_7778208_2060215,4380_467 -4380_77978,295,4380_29036,South Mall,72276-00019-1,0,4380_7778208_2060215,4380_467 -4380_77978,296,4380_29037,South Mall,70950-00021-1,0,4380_7778208_2060201,4380_467 -4380_77978,285,4380_29043,Grange,71141-00009-1,1,4380_7778208_2060211,4380_470 -4380_77978,286,4380_29044,Grange,71139-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,288,4380_29045,Grange,71137-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_29046,Grange,71133-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,289,4380_29047,Grange,71135-00014-1,1,4380_7778208_2060211,4380_470 -4380_77978,292,4380_29048,Grange,71140-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_29049,Grange,71138-00017-1,1,4380_7778208_2060211,4380_470 -4380_77978,290,4380_29050,Grange,71142-00015-1,1,4380_7778208_2060211,4380_470 -4380_77978,294,4380_29051,Grange,71134-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_29052,Grange,71136-00019-1,1,4380_7778208_2060211,4380_470 -4380_77978,285,4380_29059,Grange,71699-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29060,Grange,71697-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29061,Grange,71695-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29062,Grange,71701-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29063,Grange,70951-00013-1,1,4380_7778208_2060202,4380_470 -4380_77978,289,4380_29064,Grange,71693-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29065,Grange,71698-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29066,Grange,71696-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29067,Grange,71700-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29068,Grange,71702-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29069,Grange,71694-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29070,Grange,70952-00021-1,1,4380_7778208_2060202,4380_470 -4380_77978,285,4380_29076,Grange,72003-00009-1,1,4380_7778208_2060215,4380_470 -4380_77978,286,4380_29077,Grange,72005-00010-1,1,4380_7778208_2060215,4380_470 -4380_77978,288,4380_29078,Grange,72007-00011-1,1,4380_7778208_2060215,4380_470 -4380_77978,287,4380_29079,Grange,72009-00012-1,1,4380_7778208_2060215,4380_470 -4380_77978,289,4380_29080,Grange,72011-00014-1,1,4380_7778208_2060215,4380_470 -4380_77978,292,4380_29081,Grange,72006-00016-1,1,4380_7778208_2060215,4380_470 -4380_77978,293,4380_29082,Grange,72008-00017-1,1,4380_7778208_2060215,4380_470 -4380_77978,290,4380_29083,Grange,72004-00015-1,1,4380_7778208_2060215,4380_470 -4380_77978,294,4380_29084,Grange,72010-00018-1,1,4380_7778208_2060215,4380_470 -4380_77978,295,4380_29085,Grange,72012-00019-1,1,4380_7778208_2060215,4380_470 -4380_77978,285,4380_29092,Grange,71457-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29093,Grange,71453-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29094,Grange,71461-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29095,Grange,71459-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29096,Grange,70881-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_29097,Grange,71455-00014-1,1,4380_7778208_2060212,4380_470 -4380_77978,292,4380_29098,Grange,71454-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29099,Grange,71462-00017-1,1,4380_7778208_2060212,4380_470 -4380_77946,285,4380_291,Drogheda,50291-00009-1,1,4380_7778208_1000913,4380_6 -4380_77978,290,4380_29100,Grange,71458-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29101,Grange,71460-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29102,Grange,71456-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29103,Grange,70882-00021-1,1,4380_7778208_2060201,4380_470 -4380_77978,285,4380_29109,Grange,71155-00009-1,1,4380_7778208_2060211,4380_470 -4380_77947,285,4380_2911,Drop Off,51084-00009-1,1,4380_7778208_1011105,4380_28 -4380_77978,286,4380_29110,Grange,71157-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,288,4380_29111,Grange,71161-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_29112,Grange,71159-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,289,4380_29113,Grange,71153-00014-1,1,4380_7778208_2060211,4380_470 -4380_77978,292,4380_29114,Grange,71158-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_29115,Grange,71162-00017-1,1,4380_7778208_2060211,4380_470 -4380_77978,290,4380_29116,Grange,71156-00015-1,1,4380_7778208_2060211,4380_470 -4380_77978,294,4380_29117,Grange,71160-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_29118,Grange,71154-00019-1,1,4380_7778208_2060211,4380_470 -4380_77947,286,4380_2912,Drop Off,51086-00010-1,1,4380_7778208_1011105,4380_28 -4380_77978,285,4380_29125,Grange,71717-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29126,Grange,71721-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29127,Grange,71713-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29128,Grange,71719-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29129,Grange,70955-00013-1,1,4380_7778208_2060202,4380_470 -4380_77947,297,4380_2913,Drop Off,51180-00008-1,1,4380_7778208_1011106,4380_30 -4380_77978,289,4380_29130,Grange,71715-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29131,Grange,71722-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29132,Grange,71714-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29133,Grange,71718-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29134,Grange,71720-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29135,Grange,71716-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29136,Grange,70956-00021-1,1,4380_7778208_2060202,4380_470 -4380_77947,288,4380_2914,Drop Off,51080-00011-1,1,4380_7778208_1011105,4380_28 -4380_77978,285,4380_29142,Grange,72031-00009-1,1,4380_7778208_2060215,4380_470 -4380_77978,286,4380_29143,Grange,72027-00010-1,1,4380_7778208_2060215,4380_470 -4380_77978,288,4380_29144,Grange,72025-00011-1,1,4380_7778208_2060215,4380_470 -4380_77978,287,4380_29145,Grange,72023-00012-1,1,4380_7778208_2060215,4380_470 -4380_77978,289,4380_29146,Grange,72029-00014-1,1,4380_7778208_2060215,4380_470 -4380_77978,292,4380_29147,Grange,72028-00016-1,1,4380_7778208_2060215,4380_470 -4380_77978,293,4380_29148,Grange,72026-00017-1,1,4380_7778208_2060215,4380_470 -4380_77978,290,4380_29149,Grange,72032-00015-1,1,4380_7778208_2060215,4380_470 -4380_77947,287,4380_2915,Drop Off,51082-00012-1,1,4380_7778208_1011105,4380_28 -4380_77978,294,4380_29150,Grange,72024-00018-1,1,4380_7778208_2060215,4380_470 -4380_77978,295,4380_29151,Grange,72030-00019-1,1,4380_7778208_2060215,4380_470 -4380_77978,285,4380_29158,Grange,71965-00009-1,1,4380_7778208_2060214,4380_470 -4380_77978,286,4380_29159,Grange,71967-00010-1,1,4380_7778208_2060214,4380_470 -4380_77947,289,4380_2916,Drop Off,51078-00014-1,1,4380_7778208_1011105,4380_28 -4380_77978,288,4380_29160,Grange,71971-00011-1,1,4380_7778208_2060214,4380_470 -4380_77978,287,4380_29161,Grange,71969-00012-1,1,4380_7778208_2060214,4380_470 -4380_77978,291,4380_29162,Grange,70885-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_29163,Grange,71963-00014-1,1,4380_7778208_2060214,4380_470 -4380_77978,292,4380_29164,Grange,71968-00016-1,1,4380_7778208_2060214,4380_470 -4380_77978,293,4380_29165,Grange,71972-00017-1,1,4380_7778208_2060214,4380_470 -4380_77978,290,4380_29166,Grange,71966-00015-1,1,4380_7778208_2060214,4380_470 -4380_77978,294,4380_29167,Grange,71970-00018-1,1,4380_7778208_2060214,4380_470 -4380_77978,295,4380_29168,Grange,71964-00019-1,1,4380_7778208_2060214,4380_470 -4380_77978,296,4380_29169,Grange,70886-00021-1,1,4380_7778208_2060201,4380_470 -4380_77947,290,4380_2917,Drop Off,51085-00015-1,1,4380_7778208_1011105,4380_28 -4380_77978,285,4380_29175,Grange,71477-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29176,Grange,71481-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29177,Grange,71479-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29178,Grange,71475-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,289,4380_29179,Grange,71473-00014-1,1,4380_7778208_2060212,4380_470 -4380_77947,291,4380_2918,Drop Off,50767-00013-1,1,4380_7778208_1011102,4380_32 -4380_77978,292,4380_29180,Grange,71482-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29181,Grange,71480-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29182,Grange,71478-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29183,Grange,71476-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29184,Grange,71474-00019-1,1,4380_7778208_2060212,4380_470 -4380_77947,292,4380_2919,Drop Off,51087-00016-1,1,4380_7778208_1011105,4380_28 -4380_77978,285,4380_29191,Grange,71173-00009-1,1,4380_7778208_2060211,4380_470 -4380_77978,286,4380_29192,Grange,71175-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,288,4380_29193,Grange,71179-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_29194,Grange,71181-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,291,4380_29195,Grange,70959-00013-1,1,4380_7778208_2060202,4380_471 -4380_77978,289,4380_29196,Grange,71177-00014-1,1,4380_7778208_2060211,4380_470 -4380_77978,292,4380_29197,Grange,71176-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_29198,Grange,71180-00017-1,1,4380_7778208_2060211,4380_470 -4380_77978,290,4380_29199,Grange,71174-00015-1,1,4380_7778208_2060211,4380_470 -4380_77946,286,4380_292,Drogheda,50287-00010-1,1,4380_7778208_1000913,4380_6 -4380_77947,293,4380_2920,Drop Off,51081-00017-1,1,4380_7778208_1011105,4380_28 -4380_77978,294,4380_29200,Grange,71182-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_29201,Grange,71178-00019-1,1,4380_7778208_2060211,4380_470 -4380_77978,296,4380_29202,Grange,70960-00021-1,1,4380_7778208_2060202,4380_471 -4380_77978,285,4380_29208,Grange,71741-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29209,Grange,71733-00010-1,1,4380_7778208_2060213,4380_470 -4380_77947,294,4380_2921,Drop Off,51083-00018-1,1,4380_7778208_1011105,4380_28 -4380_77978,288,4380_29210,Grange,71737-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29211,Grange,71735-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,289,4380_29212,Grange,71739-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29213,Grange,71734-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29214,Grange,71738-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29215,Grange,71742-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29216,Grange,71736-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29217,Grange,71740-00019-1,1,4380_7778208_2060213,4380_470 -4380_77947,295,4380_2922,Drop Off,51079-00019-1,1,4380_7778208_1011105,4380_28 -4380_77978,285,4380_29225,Grange,71987-00009-1,1,4380_7778208_2060214,4380_471 -4380_77978,286,4380_29226,Grange,71985-00010-1,1,4380_7778208_2060214,4380_471 -4380_77978,297,4380_29227,Grange,70963-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,288,4380_29228,Grange,71989-00011-1,1,4380_7778208_2060214,4380_471 -4380_77978,287,4380_29229,Grange,71991-00012-1,1,4380_7778208_2060214,4380_471 -4380_77947,296,4380_2923,Drop Off,50768-00021-1,1,4380_7778208_1011102,4380_32 -4380_77978,291,4380_29230,Grange,70889-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_29231,Grange,71983-00014-1,1,4380_7778208_2060214,4380_471 -4380_77978,292,4380_29232,Grange,71986-00016-1,1,4380_7778208_2060214,4380_471 -4380_77978,293,4380_29233,Grange,71990-00017-1,1,4380_7778208_2060214,4380_471 -4380_77978,290,4380_29234,Grange,71988-00015-1,1,4380_7778208_2060214,4380_471 -4380_77978,294,4380_29235,Grange,71992-00018-1,1,4380_7778208_2060214,4380_471 -4380_77978,295,4380_29236,Grange,71984-00019-1,1,4380_7778208_2060214,4380_471 -4380_77978,296,4380_29237,Grange,70890-00021-1,1,4380_7778208_2060201,4380_470 -4380_77978,285,4380_29243,Grange,71499-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29244,Grange,71495-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29245,Grange,71493-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29246,Grange,71497-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,289,4380_29247,Grange,71501-00014-1,1,4380_7778208_2060212,4380_470 -4380_77978,292,4380_29248,Grange,71496-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29249,Grange,71494-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29250,Grange,71500-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29251,Grange,71498-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29252,Grange,71502-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,285,4380_29260,Grange,71201-00009-1,1,4380_7778208_2060211,4380_471 -4380_77978,286,4380_29261,Grange,71193-00010-1,1,4380_7778208_2060211,4380_471 -4380_77978,297,4380_29262,Grange,70894-00008-1,1,4380_7778208_2060201,4380_470 -4380_77978,288,4380_29263,Grange,71197-00011-1,1,4380_7778208_2060211,4380_471 -4380_77978,287,4380_29264,Grange,71199-00012-1,1,4380_7778208_2060211,4380_471 -4380_77978,291,4380_29265,Grange,70965-00013-1,1,4380_7778208_2060202,4380_471 -4380_77978,289,4380_29266,Grange,71195-00014-1,1,4380_7778208_2060211,4380_471 -4380_77978,292,4380_29267,Grange,71194-00016-1,1,4380_7778208_2060211,4380_471 -4380_77978,293,4380_29268,Grange,71198-00017-1,1,4380_7778208_2060211,4380_471 -4380_77978,290,4380_29269,Grange,71202-00015-1,1,4380_7778208_2060211,4380_471 -4380_77978,294,4380_29270,Grange,71200-00018-1,1,4380_7778208_2060211,4380_471 -4380_77978,295,4380_29271,Grange,71196-00019-1,1,4380_7778208_2060211,4380_471 -4380_77978,296,4380_29272,Grange,70966-00021-1,1,4380_7778208_2060202,4380_471 -4380_77978,285,4380_29278,Grange,71759-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29279,Grange,71761-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29280,Grange,71755-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29281,Grange,71757-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,289,4380_29282,Grange,71753-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29283,Grange,71762-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29284,Grange,71756-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29285,Grange,71760-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29286,Grange,71758-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29287,Grange,71754-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,285,4380_29295,Grange,72051-00009-1,1,4380_7778208_2060215,4380_471 -4380_77978,286,4380_29296,Grange,72049-00010-1,1,4380_7778208_2060215,4380_471 -4380_77978,297,4380_29297,Grange,70969-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,288,4380_29298,Grange,72043-00011-1,1,4380_7778208_2060215,4380_471 -4380_77978,287,4380_29299,Grange,72045-00012-1,1,4380_7778208_2060215,4380_471 -4380_77946,287,4380_293,Drogheda,50295-00012-1,1,4380_7778208_1000913,4380_6 -4380_77978,291,4380_29300,Grange,70895-00013-1,1,4380_7778208_2060201,4380_471 -4380_77978,289,4380_29301,Grange,72047-00014-1,1,4380_7778208_2060215,4380_471 -4380_77978,292,4380_29302,Grange,72050-00016-1,1,4380_7778208_2060215,4380_471 -4380_77978,293,4380_29303,Grange,72044-00017-1,1,4380_7778208_2060215,4380_471 -4380_77978,290,4380_29304,Grange,72052-00015-1,1,4380_7778208_2060215,4380_471 -4380_77978,294,4380_29305,Grange,72046-00018-1,1,4380_7778208_2060215,4380_471 -4380_77978,295,4380_29306,Grange,72048-00019-1,1,4380_7778208_2060215,4380_471 -4380_77978,296,4380_29307,Grange,70896-00021-1,1,4380_7778208_2060201,4380_471 -4380_77947,285,4380_2931,Drop Off,50654-00009-1,1,4380_7778208_1011101,4380_28 -4380_77978,285,4380_29314,Grange,71515-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29315,Grange,71521-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29316,Grange,71519-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29317,Grange,71513-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29318,Grange,71032-00013-1,1,4380_7778208_2060203,4380_470 -4380_77978,289,4380_29319,Grange,71517-00014-1,1,4380_7778208_2060212,4380_470 -4380_77947,286,4380_2932,Drop Off,50662-00010-1,1,4380_7778208_1011101,4380_28 -4380_77978,292,4380_29320,Grange,71522-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29321,Grange,71520-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29322,Grange,71516-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29323,Grange,71514-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29324,Grange,71518-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29325,Grange,71033-00021-1,1,4380_7778208_2060203,4380_470 -4380_77947,297,4380_2933,Drop Off,51358-00008-1,1,4380_7778208_1011108,4380_30 -4380_77978,285,4380_29333,Grange,71221-00009-1,1,4380_7778208_2060211,4380_471 -4380_77978,286,4380_29334,Grange,71215-00010-1,1,4380_7778208_2060211,4380_471 -4380_77978,297,4380_29335,Grange,70900-00008-1,1,4380_7778208_2060201,4380_470 -4380_77978,288,4380_29336,Grange,71217-00011-1,1,4380_7778208_2060211,4380_471 -4380_77978,287,4380_29337,Grange,71219-00012-1,1,4380_7778208_2060211,4380_471 -4380_77978,291,4380_29338,Grange,70970-00013-1,1,4380_7778208_2060202,4380_471 -4380_77978,289,4380_29339,Grange,71213-00014-1,1,4380_7778208_2060211,4380_471 -4380_77947,287,4380_2934,Drop Off,50660-00012-1,1,4380_7778208_1011101,4380_28 -4380_77978,292,4380_29340,Grange,71216-00016-1,1,4380_7778208_2060211,4380_471 -4380_77978,293,4380_29341,Grange,71218-00017-1,1,4380_7778208_2060211,4380_471 -4380_77978,290,4380_29342,Grange,71222-00015-1,1,4380_7778208_2060211,4380_471 -4380_77978,294,4380_29343,Grange,71220-00018-1,1,4380_7778208_2060211,4380_471 -4380_77978,295,4380_29344,Grange,71214-00019-1,1,4380_7778208_2060211,4380_471 -4380_77978,296,4380_29345,Grange,70971-00021-1,1,4380_7778208_2060202,4380_471 -4380_77947,288,4380_2935,Drop Off,50656-00011-1,1,4380_7778208_1011101,4380_28 -4380_77978,285,4380_29352,Grange,71775-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29353,Grange,71779-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29354,Grange,71781-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29355,Grange,71773-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29356,Grange,71087-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_29357,Grange,71777-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29358,Grange,71780-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29359,Grange,71782-00017-1,1,4380_7778208_2060213,4380_470 -4380_77947,289,4380_2936,Drop Off,50658-00014-1,1,4380_7778208_1011101,4380_28 -4380_77978,290,4380_29360,Grange,71776-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29361,Grange,71774-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29362,Grange,71778-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29363,Grange,71088-00021-1,1,4380_7778208_2060204,4380_470 -4380_77947,290,4380_2937,Drop Off,50655-00015-1,1,4380_7778208_1011101,4380_28 -4380_77978,285,4380_29371,Grange,72071-00009-1,1,4380_7778208_2060215,4380_471 -4380_77978,286,4380_29372,Grange,72063-00010-1,1,4380_7778208_2060215,4380_471 -4380_77978,297,4380_29373,Grange,70973-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,288,4380_29374,Grange,72069-00011-1,1,4380_7778208_2060215,4380_471 -4380_77978,287,4380_29375,Grange,72067-00012-1,1,4380_7778208_2060215,4380_471 -4380_77978,291,4380_29376,Grange,70902-00013-1,1,4380_7778208_2060201,4380_471 -4380_77978,289,4380_29377,Grange,72065-00014-1,1,4380_7778208_2060215,4380_471 -4380_77978,292,4380_29378,Grange,72064-00016-1,1,4380_7778208_2060215,4380_471 -4380_77978,293,4380_29379,Grange,72070-00017-1,1,4380_7778208_2060215,4380_471 -4380_77947,291,4380_2938,Drop Off,50994-00013-1,1,4380_7778208_1011104,4380_32 -4380_77978,290,4380_29380,Grange,72072-00015-1,1,4380_7778208_2060215,4380_471 -4380_77978,294,4380_29381,Grange,72068-00018-1,1,4380_7778208_2060215,4380_471 -4380_77978,295,4380_29382,Grange,72066-00019-1,1,4380_7778208_2060215,4380_471 -4380_77978,296,4380_29383,Grange,70903-00021-1,1,4380_7778208_2060201,4380_471 -4380_77947,292,4380_2939,Drop Off,50663-00016-1,1,4380_7778208_1011101,4380_28 -4380_77978,285,4380_29390,Grange,71533-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29391,Grange,71541-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29392,Grange,71535-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29393,Grange,71539-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29394,Grange,71036-00013-1,1,4380_7778208_2060203,4380_470 -4380_77978,289,4380_29395,Grange,71537-00014-1,1,4380_7778208_2060212,4380_470 -4380_77978,292,4380_29396,Grange,71542-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29397,Grange,71536-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29398,Grange,71534-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29399,Grange,71540-00018-1,1,4380_7778208_2060212,4380_470 -4380_77946,288,4380_294,Drogheda,50293-00011-1,1,4380_7778208_1000913,4380_6 -4380_77947,293,4380_2940,Drop Off,50657-00017-1,1,4380_7778208_1011101,4380_28 -4380_77978,295,4380_29400,Grange,71538-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29401,Grange,71037-00021-1,1,4380_7778208_2060203,4380_470 -4380_77978,285,4380_29409,Grange,71237-00009-1,1,4380_7778208_2060211,4380_471 -4380_77947,294,4380_2941,Drop Off,50661-00018-1,1,4380_7778208_1011101,4380_28 -4380_77978,286,4380_29410,Grange,71233-00010-1,1,4380_7778208_2060211,4380_471 -4380_77978,297,4380_29411,Grange,70904-00008-1,1,4380_7778208_2060201,4380_470 -4380_77978,288,4380_29412,Grange,71235-00011-1,1,4380_7778208_2060211,4380_471 -4380_77978,287,4380_29413,Grange,71241-00012-1,1,4380_7778208_2060211,4380_471 -4380_77978,291,4380_29414,Grange,70977-00013-1,1,4380_7778208_2060202,4380_471 -4380_77978,289,4380_29415,Grange,71239-00014-1,1,4380_7778208_2060211,4380_471 -4380_77978,292,4380_29416,Grange,71234-00016-1,1,4380_7778208_2060211,4380_471 -4380_77978,293,4380_29417,Grange,71236-00017-1,1,4380_7778208_2060211,4380_471 -4380_77978,290,4380_29418,Grange,71238-00015-1,1,4380_7778208_2060211,4380_471 -4380_77978,294,4380_29419,Grange,71242-00018-1,1,4380_7778208_2060211,4380_471 -4380_77947,295,4380_2942,Drop Off,50659-00019-1,1,4380_7778208_1011101,4380_28 -4380_77978,295,4380_29420,Grange,71240-00019-1,1,4380_7778208_2060211,4380_471 -4380_77978,296,4380_29421,Grange,70978-00021-1,1,4380_7778208_2060202,4380_471 -4380_77978,285,4380_29428,Grange,71795-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29429,Grange,71801-00010-1,1,4380_7778208_2060213,4380_470 -4380_77947,296,4380_2943,Drop Off,50995-00021-1,1,4380_7778208_1011104,4380_32 -4380_77978,288,4380_29430,Grange,71793-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29431,Grange,71799-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29432,Grange,71091-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_29433,Grange,71797-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29434,Grange,71802-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29435,Grange,71794-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29436,Grange,71796-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29437,Grange,71800-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29438,Grange,71798-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29439,Grange,71092-00021-1,1,4380_7778208_2060204,4380_470 -4380_77978,285,4380_29447,Grange,72085-00009-1,1,4380_7778208_2060215,4380_471 -4380_77978,286,4380_29448,Grange,72091-00010-1,1,4380_7778208_2060215,4380_471 -4380_77978,297,4380_29449,Grange,70979-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,288,4380_29450,Grange,72089-00011-1,1,4380_7778208_2060215,4380_471 -4380_77978,287,4380_29451,Grange,72087-00012-1,1,4380_7778208_2060215,4380_471 -4380_77978,291,4380_29452,Grange,70908-00013-1,1,4380_7778208_2060201,4380_471 -4380_77978,289,4380_29453,Grange,72083-00014-1,1,4380_7778208_2060215,4380_471 -4380_77978,292,4380_29454,Grange,72092-00016-1,1,4380_7778208_2060215,4380_471 -4380_77978,293,4380_29455,Grange,72090-00017-1,1,4380_7778208_2060215,4380_471 -4380_77978,290,4380_29456,Grange,72086-00015-1,1,4380_7778208_2060215,4380_471 -4380_77978,294,4380_29457,Grange,72088-00018-1,1,4380_7778208_2060215,4380_471 -4380_77978,295,4380_29458,Grange,72084-00019-1,1,4380_7778208_2060215,4380_471 -4380_77978,296,4380_29459,Grange,70909-00021-1,1,4380_7778208_2060201,4380_471 -4380_77978,285,4380_29466,Grange,71553-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29467,Grange,71557-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29468,Grange,71559-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29469,Grange,71555-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29470,Grange,71040-00013-1,1,4380_7778208_2060203,4380_470 -4380_77978,289,4380_29471,Grange,71561-00014-1,1,4380_7778208_2060212,4380_470 -4380_77978,292,4380_29472,Grange,71558-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29473,Grange,71560-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29474,Grange,71554-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29475,Grange,71556-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29476,Grange,71562-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29477,Grange,71041-00021-1,1,4380_7778208_2060203,4380_470 -4380_77978,285,4380_29485,Grange,71259-00009-1,1,4380_7778208_2060211,4380_471 -4380_77978,286,4380_29486,Grange,71261-00010-1,1,4380_7778208_2060211,4380_471 -4380_77978,297,4380_29487,Grange,70910-00008-1,1,4380_7778208_2060201,4380_470 -4380_77978,288,4380_29488,Grange,71257-00011-1,1,4380_7778208_2060211,4380_471 -4380_77978,287,4380_29489,Grange,71255-00012-1,1,4380_7778208_2060211,4380_471 -4380_77978,291,4380_29490,Grange,70982-00013-1,1,4380_7778208_2060202,4380_471 -4380_77978,289,4380_29491,Grange,71253-00014-1,1,4380_7778208_2060211,4380_471 -4380_77978,292,4380_29492,Grange,71262-00016-1,1,4380_7778208_2060211,4380_471 -4380_77978,293,4380_29493,Grange,71258-00017-1,1,4380_7778208_2060211,4380_471 -4380_77978,290,4380_29494,Grange,71260-00015-1,1,4380_7778208_2060211,4380_471 -4380_77978,294,4380_29495,Grange,71256-00018-1,1,4380_7778208_2060211,4380_471 -4380_77978,295,4380_29496,Grange,71254-00019-1,1,4380_7778208_2060211,4380_471 -4380_77978,296,4380_29497,Grange,70983-00021-1,1,4380_7778208_2060202,4380_471 -4380_77946,289,4380_295,Drogheda,50289-00014-1,1,4380_7778208_1000913,4380_6 -4380_77978,285,4380_29504,Grange,71813-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29505,Grange,71815-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29506,Grange,71817-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29507,Grange,71819-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29508,Grange,71095-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_29509,Grange,71821-00014-1,1,4380_7778208_2060213,4380_470 -4380_77947,285,4380_2951,Drop Off,50882-00009-1,1,4380_7778208_1011103,4380_27 -4380_77978,292,4380_29510,Grange,71816-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29511,Grange,71818-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29512,Grange,71814-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29513,Grange,71820-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29514,Grange,71822-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29515,Grange,71096-00021-1,1,4380_7778208_2060204,4380_470 -4380_77947,286,4380_2952,Drop Off,50886-00010-1,1,4380_7778208_1011103,4380_27 -4380_77978,285,4380_29523,Grange,72103-00009-1,1,4380_7778208_2060215,4380_471 -4380_77978,286,4380_29524,Grange,72109-00010-1,1,4380_7778208_2060215,4380_471 -4380_77978,297,4380_29525,Grange,70985-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,288,4380_29526,Grange,72111-00011-1,1,4380_7778208_2060215,4380_471 -4380_77978,287,4380_29527,Grange,72105-00012-1,1,4380_7778208_2060215,4380_471 -4380_77978,291,4380_29528,Grange,70914-00013-1,1,4380_7778208_2060201,4380_471 -4380_77978,289,4380_29529,Grange,72107-00014-1,1,4380_7778208_2060215,4380_471 -4380_77947,297,4380_2953,Drop Off,51088-00008-1,1,4380_7778208_1011105,4380_29 -4380_77978,292,4380_29530,Grange,72110-00016-1,1,4380_7778208_2060215,4380_471 -4380_77978,293,4380_29531,Grange,72112-00017-1,1,4380_7778208_2060215,4380_471 -4380_77978,290,4380_29532,Grange,72104-00015-1,1,4380_7778208_2060215,4380_471 -4380_77978,294,4380_29533,Grange,72106-00018-1,1,4380_7778208_2060215,4380_471 -4380_77978,295,4380_29534,Grange,72108-00019-1,1,4380_7778208_2060215,4380_471 -4380_77978,296,4380_29535,Grange,70915-00021-1,1,4380_7778208_2060201,4380_471 -4380_77947,288,4380_2954,Drop Off,50884-00011-1,1,4380_7778208_1011103,4380_27 -4380_77978,285,4380_29542,Grange,71575-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29543,Grange,71581-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29544,Grange,71573-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29545,Grange,71579-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29546,Grange,71044-00013-1,1,4380_7778208_2060203,4380_470 -4380_77978,289,4380_29547,Grange,71577-00014-1,1,4380_7778208_2060212,4380_470 -4380_77978,292,4380_29548,Grange,71582-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29549,Grange,71574-00017-1,1,4380_7778208_2060212,4380_470 -4380_77947,287,4380_2955,Drop Off,50878-00012-1,1,4380_7778208_1011103,4380_27 -4380_77978,290,4380_29550,Grange,71576-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29551,Grange,71580-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29552,Grange,71578-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29553,Grange,71045-00021-1,1,4380_7778208_2060203,4380_470 -4380_77947,289,4380_2956,Drop Off,50880-00014-1,1,4380_7778208_1011103,4380_27 -4380_77978,285,4380_29561,Grange,71277-00009-1,1,4380_7778208_2060211,4380_470 -4380_77978,286,4380_29562,Grange,71281-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,297,4380_29563,Grange,70918-00008-1,1,4380_7778208_2060201,4380_470 -4380_77978,288,4380_29564,Grange,71279-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_29565,Grange,71273-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,291,4380_29566,Grange,70989-00013-1,1,4380_7778208_2060202,4380_470 -4380_77978,289,4380_29567,Grange,71275-00014-1,1,4380_7778208_2060211,4380_470 -4380_77978,292,4380_29568,Grange,71282-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_29569,Grange,71280-00017-1,1,4380_7778208_2060211,4380_470 -4380_77947,290,4380_2957,Drop Off,50883-00015-1,1,4380_7778208_1011103,4380_27 -4380_77978,290,4380_29570,Grange,71278-00015-1,1,4380_7778208_2060211,4380_470 -4380_77978,294,4380_29571,Grange,71274-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_29572,Grange,71276-00019-1,1,4380_7778208_2060211,4380_470 -4380_77978,296,4380_29573,Grange,70990-00021-1,1,4380_7778208_2060202,4380_470 -4380_77947,291,4380_2958,Drop Off,51181-00013-1,1,4380_7778208_1011106,4380_31 -4380_77978,285,4380_29580,Grange,71835-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29581,Grange,71839-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29582,Grange,71837-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29583,Grange,71841-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29584,Grange,71099-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_29585,Grange,71833-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29586,Grange,71840-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29587,Grange,71838-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29588,Grange,71836-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29589,Grange,71842-00018-1,1,4380_7778208_2060213,4380_470 -4380_77947,292,4380_2959,Drop Off,50887-00016-1,1,4380_7778208_1011103,4380_27 -4380_77978,295,4380_29590,Grange,71834-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29591,Grange,71100-00021-1,1,4380_7778208_2060204,4380_470 -4380_77978,285,4380_29599,Grange,72123-00009-1,1,4380_7778208_2060215,4380_470 -4380_77946,290,4380_296,Drogheda,50292-00015-1,1,4380_7778208_1000913,4380_6 -4380_77947,293,4380_2960,Drop Off,50885-00017-1,1,4380_7778208_1011103,4380_27 -4380_77978,286,4380_29600,Grange,72127-00010-1,1,4380_7778208_2060215,4380_470 -4380_77978,297,4380_29601,Grange,70993-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,288,4380_29602,Grange,72129-00011-1,1,4380_7778208_2060215,4380_470 -4380_77978,287,4380_29603,Grange,72125-00012-1,1,4380_7778208_2060215,4380_470 -4380_77978,291,4380_29604,Grange,70919-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_29605,Grange,72131-00014-1,1,4380_7778208_2060215,4380_470 -4380_77978,292,4380_29606,Grange,72128-00016-1,1,4380_7778208_2060215,4380_470 -4380_77978,293,4380_29607,Grange,72130-00017-1,1,4380_7778208_2060215,4380_470 -4380_77978,290,4380_29608,Grange,72124-00015-1,1,4380_7778208_2060215,4380_470 -4380_77978,294,4380_29609,Grange,72126-00018-1,1,4380_7778208_2060215,4380_470 -4380_77947,294,4380_2961,Drop Off,50879-00018-1,1,4380_7778208_1011103,4380_27 -4380_77978,295,4380_29610,Grange,72132-00019-1,1,4380_7778208_2060215,4380_470 -4380_77978,296,4380_29611,Grange,70920-00021-1,1,4380_7778208_2060201,4380_470 -4380_77978,285,4380_29618,Grange,71599-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29619,Grange,71595-00010-1,1,4380_7778208_2060212,4380_470 -4380_77947,295,4380_2962,Drop Off,50881-00019-1,1,4380_7778208_1011103,4380_27 -4380_77978,288,4380_29620,Grange,71597-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29621,Grange,71593-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29622,Grange,71049-00013-1,1,4380_7778208_2060203,4380_470 -4380_77978,289,4380_29623,Grange,71601-00014-1,1,4380_7778208_2060212,4380_470 -4380_77978,292,4380_29624,Grange,71596-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29625,Grange,71598-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29626,Grange,71600-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29627,Grange,71594-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29628,Grange,71602-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29629,Grange,71050-00021-1,1,4380_7778208_2060203,4380_470 -4380_77947,296,4380_2963,Drop Off,51182-00021-1,1,4380_7778208_1011106,4380_31 -4380_77978,297,4380_29637,Grange,71051-00008-1,1,4380_7778208_2060203,4380_470 -4380_77978,285,4380_29638,Grange,71301-00009-1,1,4380_7778208_2060211,4380_470 -4380_77978,286,4380_29639,Grange,71295-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,288,4380_29640,Grange,71297-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_29641,Grange,71299-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,291,4380_29642,Grange,70994-00013-1,1,4380_7778208_2060202,4380_470 -4380_77978,289,4380_29643,Grange,71293-00014-1,1,4380_7778208_2060211,4380_470 -4380_77978,292,4380_29644,Grange,71296-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_29645,Grange,71298-00017-1,1,4380_7778208_2060211,4380_470 -4380_77978,290,4380_29646,Grange,71302-00015-1,1,4380_7778208_2060211,4380_470 -4380_77978,294,4380_29647,Grange,71300-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_29648,Grange,71294-00019-1,1,4380_7778208_2060211,4380_470 -4380_77978,296,4380_29649,Grange,70995-00021-1,1,4380_7778208_2060202,4380_470 -4380_77978,285,4380_29656,Grange,71859-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29657,Grange,71861-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29658,Grange,71853-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29659,Grange,71855-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29660,Grange,71103-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_29661,Grange,71857-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29662,Grange,71862-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29663,Grange,71854-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29664,Grange,71860-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29665,Grange,71856-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29666,Grange,71858-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29667,Grange,71104-00021-1,1,4380_7778208_2060204,4380_470 -4380_77978,285,4380_29675,Grange,72143-00009-1,1,4380_7778208_2060215,4380_470 -4380_77978,286,4380_29676,Grange,72149-00010-1,1,4380_7778208_2060215,4380_470 -4380_77978,297,4380_29677,Grange,70999-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,288,4380_29678,Grange,72145-00011-1,1,4380_7778208_2060215,4380_470 -4380_77978,287,4380_29679,Grange,72151-00012-1,1,4380_7778208_2060215,4380_470 -4380_77978,291,4380_29680,Grange,70923-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_29681,Grange,72147-00014-1,1,4380_7778208_2060215,4380_470 -4380_77978,292,4380_29682,Grange,72150-00016-1,1,4380_7778208_2060215,4380_470 -4380_77978,293,4380_29683,Grange,72146-00017-1,1,4380_7778208_2060215,4380_470 -4380_77978,290,4380_29684,Grange,72144-00015-1,1,4380_7778208_2060215,4380_470 -4380_77978,294,4380_29685,Grange,72152-00018-1,1,4380_7778208_2060215,4380_470 -4380_77978,295,4380_29686,Grange,72148-00019-1,1,4380_7778208_2060215,4380_470 -4380_77978,296,4380_29687,Grange,70924-00021-1,1,4380_7778208_2060201,4380_470 -4380_77978,285,4380_29694,Grange,71615-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29695,Grange,71619-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29696,Grange,71621-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29697,Grange,71617-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29698,Grange,71055-00013-1,1,4380_7778208_2060203,4380_470 -4380_77978,289,4380_29699,Grange,71613-00014-1,1,4380_7778208_2060212,4380_470 -4380_77946,291,4380_297,Drogheda,50231-00013-1,1,4380_7778208_1000910,4380_8 -4380_77978,292,4380_29700,Grange,71620-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29701,Grange,71622-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29702,Grange,71616-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29703,Grange,71618-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29704,Grange,71614-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29705,Grange,71056-00021-1,1,4380_7778208_2060203,4380_470 -4380_77947,285,4380_2971,Drop Off,51270-00009-1,1,4380_7778208_1011107,4380_27 -4380_77978,297,4380_29713,Grange,71057-00008-1,1,4380_7778208_2060203,4380_470 -4380_77978,285,4380_29714,Grange,71317-00009-1,1,4380_7778208_2060211,4380_470 -4380_77978,286,4380_29715,Grange,71315-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,288,4380_29716,Grange,71313-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_29717,Grange,71319-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,291,4380_29718,Grange,71000-00013-1,1,4380_7778208_2060202,4380_470 -4380_77978,289,4380_29719,Grange,71321-00014-1,1,4380_7778208_2060211,4380_470 -4380_77947,286,4380_2972,Drop Off,51272-00010-1,1,4380_7778208_1011107,4380_27 -4380_77978,292,4380_29720,Grange,71316-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_29721,Grange,71314-00017-1,1,4380_7778208_2060211,4380_470 -4380_77978,290,4380_29722,Grange,71318-00015-1,1,4380_7778208_2060211,4380_470 -4380_77978,294,4380_29723,Grange,71320-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_29724,Grange,71322-00019-1,1,4380_7778208_2060211,4380_470 -4380_77978,296,4380_29725,Grange,71001-00021-1,1,4380_7778208_2060202,4380_470 -4380_77947,297,4380_2973,Drop Off,51419-00008-1,1,4380_7778208_1011109,4380_29 -4380_77978,285,4380_29732,Grange,71881-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29733,Grange,71877-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29734,Grange,71879-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29735,Grange,71875-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29736,Grange,71107-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_29737,Grange,71873-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29738,Grange,71878-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29739,Grange,71880-00017-1,1,4380_7778208_2060213,4380_470 -4380_77947,288,4380_2974,Drop Off,51274-00011-1,1,4380_7778208_1011107,4380_27 -4380_77978,290,4380_29740,Grange,71882-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29741,Grange,71876-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29742,Grange,71874-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29743,Grange,71108-00021-1,1,4380_7778208_2060204,4380_470 -4380_77947,287,4380_2975,Drop Off,51268-00012-1,1,4380_7778208_1011107,4380_27 -4380_77978,285,4380_29751,Grange,72167-00009-1,1,4380_7778208_2060215,4380_470 -4380_77978,286,4380_29752,Grange,72163-00010-1,1,4380_7778208_2060215,4380_470 -4380_77978,297,4380_29753,Grange,71003-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,288,4380_29754,Grange,72171-00011-1,1,4380_7778208_2060215,4380_470 -4380_77978,287,4380_29755,Grange,72169-00012-1,1,4380_7778208_2060215,4380_470 -4380_77978,291,4380_29756,Grange,70927-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_29757,Grange,72165-00014-1,1,4380_7778208_2060215,4380_470 -4380_77978,292,4380_29758,Grange,72164-00016-1,1,4380_7778208_2060215,4380_470 -4380_77978,293,4380_29759,Grange,72172-00017-1,1,4380_7778208_2060215,4380_470 -4380_77947,289,4380_2976,Drop Off,51266-00014-1,1,4380_7778208_1011107,4380_27 -4380_77978,290,4380_29760,Grange,72168-00015-1,1,4380_7778208_2060215,4380_470 -4380_77978,294,4380_29761,Grange,72170-00018-1,1,4380_7778208_2060215,4380_470 -4380_77978,295,4380_29762,Grange,72166-00019-1,1,4380_7778208_2060215,4380_470 -4380_77978,296,4380_29763,Grange,70928-00021-1,1,4380_7778208_2060201,4380_470 -4380_77947,290,4380_2977,Drop Off,51271-00015-1,1,4380_7778208_1011107,4380_27 -4380_77978,285,4380_29770,Grange,71635-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29771,Grange,71639-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29772,Grange,71633-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29773,Grange,71637-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29774,Grange,71061-00013-1,1,4380_7778208_2060203,4380_471 -4380_77978,289,4380_29775,Grange,71641-00014-1,1,4380_7778208_2060212,4380_470 -4380_77978,292,4380_29776,Grange,71640-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29777,Grange,71634-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29778,Grange,71636-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29779,Grange,71638-00018-1,1,4380_7778208_2060212,4380_470 -4380_77947,291,4380_2978,Drop Off,51359-00013-1,1,4380_7778208_1011108,4380_31 -4380_77978,295,4380_29780,Grange,71642-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29781,Grange,71062-00021-1,1,4380_7778208_2060203,4380_471 -4380_77978,297,4380_29789,Grange,71063-00008-1,1,4380_7778208_2060203,4380_470 -4380_77947,292,4380_2979,Drop Off,51273-00016-1,1,4380_7778208_1011107,4380_27 -4380_77978,285,4380_29790,Grange,71335-00009-1,1,4380_7778208_2060211,4380_471 -4380_77978,286,4380_29791,Grange,71339-00010-1,1,4380_7778208_2060211,4380_471 -4380_77978,288,4380_29792,Grange,71341-00011-1,1,4380_7778208_2060211,4380_471 -4380_77978,287,4380_29793,Grange,71333-00012-1,1,4380_7778208_2060211,4380_471 -4380_77978,291,4380_29794,Grange,71007-00013-1,1,4380_7778208_2060202,4380_471 -4380_77978,289,4380_29795,Grange,71337-00014-1,1,4380_7778208_2060211,4380_471 -4380_77978,292,4380_29796,Grange,71340-00016-1,1,4380_7778208_2060211,4380_471 -4380_77978,293,4380_29797,Grange,71342-00017-1,1,4380_7778208_2060211,4380_471 -4380_77978,290,4380_29798,Grange,71336-00015-1,1,4380_7778208_2060211,4380_471 -4380_77978,294,4380_29799,Grange,71334-00018-1,1,4380_7778208_2060211,4380_471 -4380_77946,292,4380_298,Drogheda,50288-00016-1,1,4380_7778208_1000913,4380_6 -4380_77947,293,4380_2980,Drop Off,51275-00017-1,1,4380_7778208_1011107,4380_27 -4380_77978,295,4380_29800,Grange,71338-00019-1,1,4380_7778208_2060211,4380_471 -4380_77978,296,4380_29801,Grange,71008-00021-1,1,4380_7778208_2060202,4380_471 -4380_77978,285,4380_29808,Grange,71895-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29809,Grange,71901-00010-1,1,4380_7778208_2060213,4380_470 -4380_77947,294,4380_2981,Drop Off,51269-00018-1,1,4380_7778208_1011107,4380_27 -4380_77978,288,4380_29810,Grange,71899-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29811,Grange,71897-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29812,Grange,71111-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_29813,Grange,71893-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29814,Grange,71902-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29815,Grange,71900-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29816,Grange,71896-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29817,Grange,71898-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29818,Grange,71894-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29819,Grange,71112-00021-1,1,4380_7778208_2060204,4380_470 -4380_77947,295,4380_2982,Drop Off,51267-00019-1,1,4380_7778208_1011107,4380_27 -4380_77978,285,4380_29827,Grange,72183-00009-1,1,4380_7778208_2060215,4380_471 -4380_77978,286,4380_29828,Grange,72191-00010-1,1,4380_7778208_2060215,4380_471 -4380_77978,297,4380_29829,Grange,71009-00008-1,1,4380_7778208_2060202,4380_470 -4380_77947,296,4380_2983,Drop Off,51360-00021-1,1,4380_7778208_1011108,4380_31 -4380_77978,288,4380_29830,Grange,72189-00011-1,1,4380_7778208_2060215,4380_471 -4380_77978,287,4380_29831,Grange,72187-00012-1,1,4380_7778208_2060215,4380_471 -4380_77978,291,4380_29832,Grange,70931-00013-1,1,4380_7778208_2060201,4380_471 -4380_77978,289,4380_29833,Grange,72185-00014-1,1,4380_7778208_2060215,4380_471 -4380_77978,292,4380_29834,Grange,72192-00016-1,1,4380_7778208_2060215,4380_471 -4380_77978,293,4380_29835,Grange,72190-00017-1,1,4380_7778208_2060215,4380_471 -4380_77978,290,4380_29836,Grange,72184-00015-1,1,4380_7778208_2060215,4380_471 -4380_77978,294,4380_29837,Grange,72188-00018-1,1,4380_7778208_2060215,4380_471 -4380_77978,295,4380_29838,Grange,72186-00019-1,1,4380_7778208_2060215,4380_471 -4380_77978,296,4380_29839,Grange,70932-00021-1,1,4380_7778208_2060201,4380_471 -4380_77978,285,4380_29846,Grange,71661-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29847,Grange,71659-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29848,Grange,71657-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29849,Grange,71653-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29850,Grange,71067-00013-1,1,4380_7778208_2060203,4380_470 -4380_77978,289,4380_29851,Grange,71655-00014-1,1,4380_7778208_2060212,4380_470 -4380_77978,292,4380_29852,Grange,71660-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29853,Grange,71658-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29854,Grange,71662-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29855,Grange,71654-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29856,Grange,71656-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29857,Grange,71068-00021-1,1,4380_7778208_2060203,4380_470 -4380_77978,297,4380_29865,Grange,71069-00008-1,1,4380_7778208_2060203,4380_470 -4380_77978,285,4380_29866,Grange,71353-00009-1,1,4380_7778208_2060211,4380_471 -4380_77978,286,4380_29867,Grange,71361-00010-1,1,4380_7778208_2060211,4380_471 -4380_77978,288,4380_29868,Grange,71357-00011-1,1,4380_7778208_2060211,4380_471 -4380_77978,287,4380_29869,Grange,71359-00012-1,1,4380_7778208_2060211,4380_471 -4380_77978,291,4380_29870,Grange,71013-00013-1,1,4380_7778208_2060202,4380_471 -4380_77978,289,4380_29871,Grange,71355-00014-1,1,4380_7778208_2060211,4380_471 -4380_77978,292,4380_29872,Grange,71362-00016-1,1,4380_7778208_2060211,4380_471 -4380_77978,293,4380_29873,Grange,71358-00017-1,1,4380_7778208_2060211,4380_471 -4380_77978,290,4380_29874,Grange,71354-00015-1,1,4380_7778208_2060211,4380_471 -4380_77978,294,4380_29875,Grange,71360-00018-1,1,4380_7778208_2060211,4380_471 -4380_77978,295,4380_29876,Grange,71356-00019-1,1,4380_7778208_2060211,4380_471 -4380_77978,296,4380_29877,Grange,71014-00021-1,1,4380_7778208_2060202,4380_471 -4380_77978,285,4380_29884,Grange,71913-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29885,Grange,71919-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29886,Grange,71915-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29887,Grange,71917-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29888,Grange,71115-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_29889,Grange,71921-00014-1,1,4380_7778208_2060213,4380_470 -4380_77978,292,4380_29890,Grange,71920-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29891,Grange,71916-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29892,Grange,71914-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29893,Grange,71918-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29894,Grange,71922-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29895,Grange,71116-00021-1,1,4380_7778208_2060204,4380_470 -4380_77978,297,4380_29897,Grange,71015-00008-1,1,4380_7778208_2060202,4380_470 -4380_77946,293,4380_299,Drogheda,50294-00017-1,1,4380_7778208_1000913,4380_6 -4380_77978,285,4380_29904,Grange,71673-00009-1,1,4380_7778208_2060212,4380_470 -4380_77978,286,4380_29905,Grange,71679-00010-1,1,4380_7778208_2060212,4380_470 -4380_77978,288,4380_29906,Grange,71675-00011-1,1,4380_7778208_2060212,4380_470 -4380_77978,287,4380_29907,Grange,71681-00012-1,1,4380_7778208_2060212,4380_470 -4380_77978,291,4380_29908,Grange,71073-00013-1,1,4380_7778208_2060203,4380_470 -4380_77978,289,4380_29909,Grange,71677-00014-1,1,4380_7778208_2060212,4380_470 -4380_77947,285,4380_2991,Drop Off,51673-00009-1,1,4380_7778208_1011113,4380_27 -4380_77978,292,4380_29910,Grange,71680-00016-1,1,4380_7778208_2060212,4380_470 -4380_77978,293,4380_29911,Grange,71676-00017-1,1,4380_7778208_2060212,4380_470 -4380_77978,290,4380_29912,Grange,71674-00015-1,1,4380_7778208_2060212,4380_470 -4380_77978,294,4380_29913,Grange,71682-00018-1,1,4380_7778208_2060212,4380_470 -4380_77978,295,4380_29914,Grange,71678-00019-1,1,4380_7778208_2060212,4380_470 -4380_77978,296,4380_29915,Grange,71074-00021-1,1,4380_7778208_2060203,4380_470 -4380_77978,297,4380_29917,Grange,71075-00008-1,1,4380_7778208_2060203,4380_470 -4380_77947,286,4380_2992,Drop Off,51675-00010-1,1,4380_7778208_1011113,4380_27 -4380_77978,285,4380_29924,Grange,71935-00009-1,1,4380_7778208_2060213,4380_470 -4380_77978,286,4380_29925,Grange,71933-00010-1,1,4380_7778208_2060213,4380_470 -4380_77978,288,4380_29926,Grange,71937-00011-1,1,4380_7778208_2060213,4380_470 -4380_77978,287,4380_29927,Grange,71941-00012-1,1,4380_7778208_2060213,4380_470 -4380_77978,291,4380_29928,Grange,71019-00013-1,1,4380_7778208_2060202,4380_470 -4380_77978,289,4380_29929,Grange,71939-00014-1,1,4380_7778208_2060213,4380_470 -4380_77947,297,4380_2993,Drop Off,51505-00008-1,1,4380_7778208_1011110,4380_29 -4380_77978,292,4380_29930,Grange,71934-00016-1,1,4380_7778208_2060213,4380_470 -4380_77978,293,4380_29931,Grange,71938-00017-1,1,4380_7778208_2060213,4380_470 -4380_77978,290,4380_29932,Grange,71936-00015-1,1,4380_7778208_2060213,4380_470 -4380_77978,294,4380_29933,Grange,71942-00018-1,1,4380_7778208_2060213,4380_470 -4380_77978,295,4380_29934,Grange,71940-00019-1,1,4380_7778208_2060213,4380_470 -4380_77978,296,4380_29935,Grange,71020-00021-1,1,4380_7778208_2060202,4380_470 -4380_77978,297,4380_29937,Grange,71021-00008-1,1,4380_7778208_2060202,4380_470 -4380_77947,288,4380_2994,Drop Off,51667-00011-1,1,4380_7778208_1011113,4380_27 -4380_77978,285,4380_29944,Grange,72211-00009-1,1,4380_7778208_2060215,4380_470 -4380_77978,286,4380_29945,Grange,72209-00010-1,1,4380_7778208_2060215,4380_470 -4380_77978,288,4380_29946,Grange,72207-00011-1,1,4380_7778208_2060215,4380_470 -4380_77978,287,4380_29947,Grange,72205-00012-1,1,4380_7778208_2060215,4380_470 -4380_77978,291,4380_29948,Grange,70935-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_29949,Grange,72203-00014-1,1,4380_7778208_2060215,4380_470 -4380_77947,287,4380_2995,Drop Off,51669-00012-1,1,4380_7778208_1011113,4380_27 -4380_77978,292,4380_29950,Grange,72210-00016-1,1,4380_7778208_2060215,4380_470 -4380_77978,293,4380_29951,Grange,72208-00017-1,1,4380_7778208_2060215,4380_470 -4380_77978,290,4380_29952,Grange,72212-00015-1,1,4380_7778208_2060215,4380_470 -4380_77978,294,4380_29953,Grange,72206-00018-1,1,4380_7778208_2060215,4380_470 -4380_77978,295,4380_29954,Grange,72204-00019-1,1,4380_7778208_2060215,4380_470 -4380_77978,296,4380_29955,Grange,70936-00021-1,1,4380_7778208_2060201,4380_470 -4380_77978,297,4380_29957,Grange,71079-00008-1,1,4380_7778208_2060203,4380_470 -4380_77947,289,4380_2996,Drop Off,51671-00014-1,1,4380_7778208_1011113,4380_27 -4380_77978,285,4380_29964,Grange,71373-00009-1,1,4380_7778208_2060211,4380_470 -4380_77978,286,4380_29965,Grange,71381-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,288,4380_29966,Grange,71375-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_29967,Grange,71379-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,291,4380_29968,Grange,71119-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_29969,Grange,71377-00014-1,1,4380_7778208_2060211,4380_470 -4380_77947,290,4380_2997,Drop Off,51674-00015-1,1,4380_7778208_1011113,4380_27 -4380_77978,292,4380_29970,Grange,71382-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_29971,Grange,71376-00017-1,1,4380_7778208_2060211,4380_470 -4380_77978,290,4380_29972,Grange,71374-00015-1,1,4380_7778208_2060211,4380_470 -4380_77978,294,4380_29973,Grange,71380-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_29974,Grange,71378-00019-1,1,4380_7778208_2060211,4380_470 -4380_77978,296,4380_29975,Grange,71120-00021-1,1,4380_7778208_2060204,4380_470 -4380_77978,297,4380_29977,Grange,71025-00008-1,1,4380_7778208_2060202,4380_470 -4380_77947,291,4380_2998,Drop Off,51276-00013-1,1,4380_7778208_1011107,4380_31 -4380_77978,285,4380_29984,Grange,72229-00009-1,1,4380_7778208_2060215,4380_470 -4380_77978,286,4380_29985,Grange,72227-00010-1,1,4380_7778208_2060215,4380_470 -4380_77978,288,4380_29986,Grange,72225-00011-1,1,4380_7778208_2060215,4380_470 -4380_77978,287,4380_29987,Grange,72231-00012-1,1,4380_7778208_2060215,4380_470 -4380_77978,291,4380_29988,Grange,70939-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_29989,Grange,72223-00014-1,1,4380_7778208_2060215,4380_470 -4380_77947,292,4380_2999,Drop Off,51676-00016-1,1,4380_7778208_1011113,4380_27 -4380_77978,292,4380_29990,Grange,72228-00016-1,1,4380_7778208_2060215,4380_470 -4380_77978,293,4380_29991,Grange,72226-00017-1,1,4380_7778208_2060215,4380_470 -4380_77978,290,4380_29992,Grange,72230-00015-1,1,4380_7778208_2060215,4380_470 -4380_77978,294,4380_29993,Grange,72232-00018-1,1,4380_7778208_2060215,4380_470 -4380_77978,295,4380_29994,Grange,72224-00019-1,1,4380_7778208_2060215,4380_470 -4380_77978,296,4380_29995,Grange,70940-00021-1,1,4380_7778208_2060201,4380_470 -4380_77978,297,4380_29997,Grange,71081-00008-1,1,4380_7778208_2060203,4380_470 -4380_77946,292,4380_30,Dundalk,114770-00016-1,0,4380_7778208_10088801,4380_3 -4380_77946,294,4380_300,Drogheda,50296-00018-1,1,4380_7778208_1000913,4380_6 -4380_77947,293,4380_3000,Drop Off,51668-00017-1,1,4380_7778208_1011113,4380_27 -4380_77978,285,4380_30004,Grange,71401-00009-1,1,4380_7778208_2060211,4380_470 -4380_77978,286,4380_30005,Grange,71399-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,288,4380_30006,Grange,71393-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_30007,Grange,71395-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,291,4380_30008,Grange,71123-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_30009,Grange,71397-00014-1,1,4380_7778208_2060211,4380_470 -4380_77947,294,4380_3001,Drop Off,51670-00018-1,1,4380_7778208_1011113,4380_27 -4380_77978,292,4380_30010,Grange,71400-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_30011,Grange,71394-00017-1,1,4380_7778208_2060211,4380_470 -4380_77978,290,4380_30012,Grange,71402-00015-1,1,4380_7778208_2060211,4380_470 -4380_77978,294,4380_30013,Grange,71396-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_30014,Grange,71398-00019-1,1,4380_7778208_2060211,4380_470 -4380_77978,296,4380_30015,Grange,71124-00021-1,1,4380_7778208_2060204,4380_470 -4380_77978,297,4380_30017,Grange,71027-00008-1,1,4380_7778208_2060202,4380_470 -4380_77947,295,4380_3002,Drop Off,51672-00019-1,1,4380_7778208_1011113,4380_27 -4380_77978,285,4380_30024,Grange,72249-00009-1,1,4380_7778208_2060215,4380_470 -4380_77978,286,4380_30025,Grange,72247-00010-1,1,4380_7778208_2060215,4380_470 -4380_77978,288,4380_30026,Grange,72251-00011-1,1,4380_7778208_2060215,4380_470 -4380_77978,287,4380_30027,Grange,72245-00012-1,1,4380_7778208_2060215,4380_470 -4380_77978,291,4380_30028,Grange,70943-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_30029,Grange,72243-00014-1,1,4380_7778208_2060215,4380_470 -4380_77947,296,4380_3003,Drop Off,51277-00021-1,1,4380_7778208_1011107,4380_31 -4380_77978,292,4380_30030,Grange,72248-00016-1,1,4380_7778208_2060215,4380_470 -4380_77978,293,4380_30031,Grange,72252-00017-1,1,4380_7778208_2060215,4380_470 -4380_77978,290,4380_30032,Grange,72250-00015-1,1,4380_7778208_2060215,4380_470 -4380_77978,294,4380_30033,Grange,72246-00018-1,1,4380_7778208_2060215,4380_470 -4380_77978,295,4380_30034,Grange,72244-00019-1,1,4380_7778208_2060215,4380_470 -4380_77978,296,4380_30035,Grange,70944-00021-1,1,4380_7778208_2060201,4380_470 -4380_77978,297,4380_30037,Grange,71083-00008-1,1,4380_7778208_2060203,4380_470 -4380_77978,285,4380_30044,Grange,71419-00009-1,1,4380_7778208_2060211,4380_470 -4380_77978,286,4380_30045,Grange,71417-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,288,4380_30046,Grange,71413-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_30047,Grange,71421-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,291,4380_30048,Grange,71127-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_30049,Grange,71415-00014-1,1,4380_7778208_2060211,4380_470 -4380_77978,292,4380_30050,Grange,71418-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_30051,Grange,71414-00017-1,1,4380_7778208_2060211,4380_470 -4380_77978,290,4380_30052,Grange,71420-00015-1,1,4380_7778208_2060211,4380_470 -4380_77978,294,4380_30053,Grange,71422-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_30054,Grange,71416-00019-1,1,4380_7778208_2060211,4380_470 -4380_77978,296,4380_30055,Grange,71128-00021-1,1,4380_7778208_2060204,4380_470 -4380_77978,297,4380_30057,Grange,71029-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,285,4380_30064,Grange,72263-00009-1,1,4380_7778208_2060215,4380_470 -4380_77978,286,4380_30065,Grange,72267-00010-1,1,4380_7778208_2060215,4380_470 -4380_77978,288,4380_30066,Grange,72271-00011-1,1,4380_7778208_2060215,4380_470 -4380_77978,287,4380_30067,Grange,72269-00012-1,1,4380_7778208_2060215,4380_470 -4380_77978,291,4380_30068,Grange,70947-00013-1,1,4380_7778208_2060201,4380_470 -4380_77978,289,4380_30069,Grange,72265-00014-1,1,4380_7778208_2060215,4380_470 -4380_77978,292,4380_30070,Grange,72268-00016-1,1,4380_7778208_2060215,4380_470 -4380_77978,293,4380_30071,Grange,72272-00017-1,1,4380_7778208_2060215,4380_470 -4380_77978,290,4380_30072,Grange,72264-00015-1,1,4380_7778208_2060215,4380_470 -4380_77978,294,4380_30073,Grange,72270-00018-1,1,4380_7778208_2060215,4380_470 -4380_77978,295,4380_30074,Grange,72266-00019-1,1,4380_7778208_2060215,4380_470 -4380_77978,296,4380_30075,Grange,70948-00021-1,1,4380_7778208_2060201,4380_470 -4380_77978,297,4380_30077,Grange,71085-00008-1,1,4380_7778208_2060203,4380_470 -4380_77978,285,4380_30085,Grange,71433-00009-1,1,4380_7778208_2060211,4380_470 -4380_77978,286,4380_30086,Grange,71439-00010-1,1,4380_7778208_2060211,4380_470 -4380_77978,297,4380_30087,Grange,71031-00008-1,1,4380_7778208_2060202,4380_470 -4380_77978,288,4380_30088,Grange,71437-00011-1,1,4380_7778208_2060211,4380_470 -4380_77978,287,4380_30089,Grange,71435-00012-1,1,4380_7778208_2060211,4380_470 -4380_77978,291,4380_30090,Grange,71131-00013-1,1,4380_7778208_2060204,4380_470 -4380_77978,289,4380_30091,Grange,71441-00014-1,1,4380_7778208_2060211,4380_470 -4380_77978,292,4380_30092,Grange,71440-00016-1,1,4380_7778208_2060211,4380_470 -4380_77978,293,4380_30093,Grange,71438-00017-1,1,4380_7778208_2060211,4380_470 -4380_77978,290,4380_30094,Grange,71434-00015-1,1,4380_7778208_2060211,4380_470 -4380_77978,294,4380_30095,Grange,71436-00018-1,1,4380_7778208_2060211,4380_470 -4380_77978,295,4380_30096,Grange,71442-00019-1,1,4380_7778208_2060211,4380_470 -4380_77978,296,4380_30097,Grange,71132-00021-1,1,4380_7778208_2060204,4380_470 -4380_77946,295,4380_301,Drogheda,50290-00019-1,1,4380_7778208_1000913,4380_6 -4380_77979,285,4380_30104,Ballyvolane,73209-00009-1,0,4380_7778208_2070211,4380_472 -4380_77979,286,4380_30105,Ballyvolane,73211-00010-1,0,4380_7778208_2070211,4380_472 -4380_77979,288,4380_30106,Ballyvolane,73205-00011-1,0,4380_7778208_2070211,4380_472 -4380_77979,287,4380_30107,Ballyvolane,73203-00012-1,0,4380_7778208_2070211,4380_472 -4380_77979,291,4380_30108,Ballyvolane,72328-00013-1,0,4380_7778208_2070202,4380_476 -4380_77979,289,4380_30109,Ballyvolane,73207-00014-1,0,4380_7778208_2070211,4380_472 -4380_77947,285,4380_3011,Drop Off,51421-00009-1,1,4380_7778208_1011109,4380_27 -4380_77979,292,4380_30110,Ballyvolane,73212-00016-1,0,4380_7778208_2070211,4380_472 -4380_77979,293,4380_30111,Ballyvolane,73206-00017-1,0,4380_7778208_2070211,4380_472 -4380_77979,290,4380_30112,Ballyvolane,73210-00015-1,0,4380_7778208_2070211,4380_472 -4380_77979,294,4380_30113,Ballyvolane,73204-00018-1,0,4380_7778208_2070211,4380_472 -4380_77979,295,4380_30114,Ballyvolane,73208-00019-1,0,4380_7778208_2070211,4380_472 -4380_77979,296,4380_30115,Ballyvolane,72329-00021-1,0,4380_7778208_2070202,4380_476 -4380_77947,286,4380_3012,Drop Off,51423-00010-1,1,4380_7778208_1011109,4380_27 -4380_77979,285,4380_30122,Ballyvolane,73387-00009-1,0,4380_7778208_2070212,4380_474 -4380_77979,286,4380_30123,Ballyvolane,73383-00010-1,0,4380_7778208_2070212,4380_474 -4380_77979,288,4380_30124,Ballyvolane,73389-00011-1,0,4380_7778208_2070212,4380_474 -4380_77979,287,4380_30125,Ballyvolane,73385-00012-1,0,4380_7778208_2070212,4380_474 -4380_77979,291,4380_30126,Ballyvolane,72447-00013-1,0,4380_7778208_2070204,4380_477 -4380_77979,289,4380_30127,Ballyvolane,73391-00014-1,0,4380_7778208_2070212,4380_474 -4380_77979,292,4380_30128,Ballyvolane,73384-00016-1,0,4380_7778208_2070212,4380_474 -4380_77979,293,4380_30129,Ballyvolane,73390-00017-1,0,4380_7778208_2070212,4380_474 -4380_77947,297,4380_3013,Drop Off,51363-00008-1,1,4380_7778208_1011108,4380_29 -4380_77979,290,4380_30130,Ballyvolane,73388-00015-1,0,4380_7778208_2070212,4380_474 -4380_77979,294,4380_30131,Ballyvolane,73386-00018-1,0,4380_7778208_2070212,4380_474 -4380_77979,295,4380_30132,Ballyvolane,73392-00019-1,0,4380_7778208_2070212,4380_474 -4380_77979,296,4380_30133,Ballyvolane,72448-00021-1,0,4380_7778208_2070204,4380_477 -4380_77979,285,4380_30139,Ballyvolane,72907-00009-1,0,4380_7778208_2070209,4380_474 -4380_77947,288,4380_3014,Drop Off,51427-00011-1,1,4380_7778208_1011109,4380_27 -4380_77979,286,4380_30140,Ballyvolane,72909-00010-1,0,4380_7778208_2070209,4380_474 -4380_77979,288,4380_30141,Ballyvolane,72911-00011-1,0,4380_7778208_2070209,4380_474 -4380_77979,287,4380_30142,Ballyvolane,72905-00012-1,0,4380_7778208_2070209,4380_474 -4380_77979,289,4380_30143,Ballyvolane,72903-00014-1,0,4380_7778208_2070209,4380_474 -4380_77979,292,4380_30144,Ballyvolane,72910-00016-1,0,4380_7778208_2070209,4380_474 -4380_77979,293,4380_30145,Ballyvolane,72912-00017-1,0,4380_7778208_2070209,4380_474 -4380_77979,290,4380_30146,Ballyvolane,72908-00015-1,0,4380_7778208_2070209,4380_474 -4380_77979,294,4380_30147,Ballyvolane,72906-00018-1,0,4380_7778208_2070209,4380_474 -4380_77979,295,4380_30148,Ballyvolane,72904-00019-1,0,4380_7778208_2070209,4380_474 -4380_77947,287,4380_3015,Drop Off,51425-00012-1,1,4380_7778208_1011109,4380_27 -4380_77979,285,4380_30155,Ballyvolane,72893-00009-1,0,4380_7778208_2070208,4380_472 -4380_77979,286,4380_30156,Ballyvolane,72899-00010-1,0,4380_7778208_2070208,4380_472 -4380_77979,288,4380_30157,Ballyvolane,72895-00011-1,0,4380_7778208_2070208,4380_472 -4380_77979,287,4380_30158,Ballyvolane,72897-00012-1,0,4380_7778208_2070208,4380_472 -4380_77979,291,4380_30159,Ballyvolane,72285-00013-1,0,4380_7778208_2070201,4380_476 -4380_77947,289,4380_3016,Drop Off,51429-00014-1,1,4380_7778208_1011109,4380_27 -4380_77979,289,4380_30160,Ballyvolane,72901-00014-1,0,4380_7778208_2070208,4380_472 -4380_77979,292,4380_30161,Ballyvolane,72900-00016-1,0,4380_7778208_2070208,4380_472 -4380_77979,293,4380_30162,Ballyvolane,72896-00017-1,0,4380_7778208_2070208,4380_472 -4380_77979,290,4380_30163,Ballyvolane,72894-00015-1,0,4380_7778208_2070208,4380_472 -4380_77979,294,4380_30164,Ballyvolane,72898-00018-1,0,4380_7778208_2070208,4380_472 -4380_77979,295,4380_30165,Ballyvolane,72902-00019-1,0,4380_7778208_2070208,4380_472 -4380_77979,296,4380_30166,Ballyvolane,72286-00021-1,0,4380_7778208_2070201,4380_476 -4380_77947,290,4380_3017,Drop Off,51422-00015-1,1,4380_7778208_1011109,4380_27 -4380_77979,285,4380_30173,Ballyvolane,73039-00009-1,0,4380_7778208_2070210,4380_472 -4380_77979,286,4380_30174,Ballyvolane,73033-00010-1,0,4380_7778208_2070210,4380_472 -4380_77979,288,4380_30175,Ballyvolane,73037-00011-1,0,4380_7778208_2070210,4380_472 -4380_77979,287,4380_30176,Ballyvolane,73041-00012-1,0,4380_7778208_2070210,4380_472 -4380_77979,291,4380_30177,Ballyvolane,72394-00013-1,0,4380_7778208_2070203,4380_476 -4380_77979,289,4380_30178,Ballyvolane,73035-00014-1,0,4380_7778208_2070210,4380_472 -4380_77979,292,4380_30179,Ballyvolane,73034-00016-1,0,4380_7778208_2070210,4380_472 -4380_77947,291,4380_3018,Drop Off,50898-00013-1,1,4380_7778208_1011103,4380_31 -4380_77979,293,4380_30180,Ballyvolane,73038-00017-1,0,4380_7778208_2070210,4380_472 -4380_77979,290,4380_30181,Ballyvolane,73040-00015-1,0,4380_7778208_2070210,4380_472 -4380_77979,294,4380_30182,Ballyvolane,73042-00018-1,0,4380_7778208_2070210,4380_472 -4380_77979,295,4380_30183,Ballyvolane,73036-00019-1,0,4380_7778208_2070210,4380_472 -4380_77979,296,4380_30184,Ballyvolane,72395-00021-1,0,4380_7778208_2070203,4380_476 -4380_77947,292,4380_3019,Drop Off,51424-00016-1,1,4380_7778208_1011109,4380_27 -4380_77979,285,4380_30191,Ballyvolane,73225-00009-1,0,4380_7778208_2070211,4380_472 -4380_77979,286,4380_30192,Ballyvolane,73227-00010-1,0,4380_7778208_2070211,4380_472 -4380_77979,288,4380_30193,Ballyvolane,73229-00011-1,0,4380_7778208_2070211,4380_472 -4380_77979,287,4380_30194,Ballyvolane,73231-00012-1,0,4380_7778208_2070211,4380_472 -4380_77979,291,4380_30195,Ballyvolane,72332-00013-1,0,4380_7778208_2070202,4380_476 -4380_77979,289,4380_30196,Ballyvolane,73223-00014-1,0,4380_7778208_2070211,4380_472 -4380_77979,292,4380_30197,Ballyvolane,73228-00016-1,0,4380_7778208_2070211,4380_472 -4380_77979,293,4380_30198,Ballyvolane,73230-00017-1,0,4380_7778208_2070211,4380_472 -4380_77979,290,4380_30199,Ballyvolane,73226-00015-1,0,4380_7778208_2070211,4380_472 -4380_77946,296,4380_302,Drogheda,50232-00021-1,1,4380_7778208_1000910,4380_8 -4380_77947,293,4380_3020,Drop Off,51428-00017-1,1,4380_7778208_1011109,4380_27 -4380_77979,294,4380_30200,Ballyvolane,73232-00018-1,0,4380_7778208_2070211,4380_472 -4380_77979,295,4380_30201,Ballyvolane,73224-00019-1,0,4380_7778208_2070211,4380_472 -4380_77979,296,4380_30202,Ballyvolane,72333-00021-1,0,4380_7778208_2070202,4380_476 -4380_77947,294,4380_3021,Drop Off,51426-00018-1,1,4380_7778208_1011109,4380_27 -4380_77979,297,4380_30210,Ballyvolane,72396-00008-1,0,4380_7778208_2070203,4380_472 -4380_77979,285,4380_30211,Ballyvolane,73405-00009-1,0,4380_7778208_2070212,4380_472 -4380_77979,286,4380_30212,Ballyvolane,73409-00010-1,0,4380_7778208_2070212,4380_472 -4380_77979,288,4380_30213,Ballyvolane,73407-00011-1,0,4380_7778208_2070212,4380_472 -4380_77979,287,4380_30214,Ballyvolane,73403-00012-1,0,4380_7778208_2070212,4380_472 -4380_77979,291,4380_30215,Ballyvolane,72451-00013-1,0,4380_7778208_2070204,4380_472 -4380_77979,289,4380_30216,Ballyvolane,73411-00014-1,0,4380_7778208_2070212,4380_472 -4380_77979,292,4380_30217,Ballyvolane,73410-00016-1,0,4380_7778208_2070212,4380_472 -4380_77979,293,4380_30218,Ballyvolane,73408-00017-1,0,4380_7778208_2070212,4380_472 -4380_77979,290,4380_30219,Ballyvolane,73406-00015-1,0,4380_7778208_2070212,4380_472 -4380_77947,295,4380_3022,Drop Off,51430-00019-1,1,4380_7778208_1011109,4380_27 -4380_77979,294,4380_30220,Ballyvolane,73404-00018-1,0,4380_7778208_2070212,4380_472 -4380_77979,295,4380_30221,Ballyvolane,73412-00019-1,0,4380_7778208_2070212,4380_472 -4380_77979,296,4380_30222,Ballyvolane,72452-00021-1,0,4380_7778208_2070204,4380_472 -4380_77947,296,4380_3023,Drop Off,50899-00021-1,1,4380_7778208_1011103,4380_31 -4380_77979,297,4380_30230,Ballyvolane,72290-00008-1,0,4380_7778208_2070201,4380_472 -4380_77979,285,4380_30231,Ballyvolane,72927-00009-1,0,4380_7778208_2070209,4380_472 -4380_77979,286,4380_30232,Ballyvolane,72931-00010-1,0,4380_7778208_2070209,4380_472 -4380_77979,288,4380_30233,Ballyvolane,72925-00011-1,0,4380_7778208_2070209,4380_472 -4380_77979,287,4380_30234,Ballyvolane,72929-00012-1,0,4380_7778208_2070209,4380_472 -4380_77979,291,4380_30235,Ballyvolane,72291-00013-1,0,4380_7778208_2070201,4380_472 -4380_77979,289,4380_30236,Ballyvolane,72923-00014-1,0,4380_7778208_2070209,4380_472 -4380_77979,292,4380_30237,Ballyvolane,72932-00016-1,0,4380_7778208_2070209,4380_472 -4380_77979,293,4380_30238,Ballyvolane,72926-00017-1,0,4380_7778208_2070209,4380_472 -4380_77979,290,4380_30239,Ballyvolane,72928-00015-1,0,4380_7778208_2070209,4380_472 -4380_77979,294,4380_30240,Ballyvolane,72930-00018-1,0,4380_7778208_2070209,4380_472 -4380_77979,295,4380_30241,Ballyvolane,72924-00019-1,0,4380_7778208_2070209,4380_472 -4380_77979,296,4380_30242,Ballyvolane,72292-00021-1,0,4380_7778208_2070201,4380_472 -4380_77979,297,4380_30250,Ballyvolane,72454-00008-1,0,4380_7778208_2070204,4380_472 -4380_77979,285,4380_30251,Ballyvolane,73055-00009-1,0,4380_7778208_2070210,4380_472 -4380_77979,286,4380_30252,Ballyvolane,73053-00010-1,0,4380_7778208_2070210,4380_472 -4380_77979,288,4380_30253,Ballyvolane,73061-00011-1,0,4380_7778208_2070210,4380_472 -4380_77979,287,4380_30254,Ballyvolane,73057-00012-1,0,4380_7778208_2070210,4380_472 -4380_77979,291,4380_30255,Ballyvolane,72400-00013-1,0,4380_7778208_2070203,4380_472 -4380_77979,289,4380_30256,Ballyvolane,73059-00014-1,0,4380_7778208_2070210,4380_472 -4380_77979,292,4380_30257,Ballyvolane,73054-00016-1,0,4380_7778208_2070210,4380_472 -4380_77979,293,4380_30258,Ballyvolane,73062-00017-1,0,4380_7778208_2070210,4380_472 -4380_77979,290,4380_30259,Ballyvolane,73056-00015-1,0,4380_7778208_2070210,4380_472 -4380_77979,294,4380_30260,Ballyvolane,73058-00018-1,0,4380_7778208_2070210,4380_472 -4380_77979,295,4380_30261,Ballyvolane,73060-00019-1,0,4380_7778208_2070210,4380_472 -4380_77979,296,4380_30262,Ballyvolane,72401-00021-1,0,4380_7778208_2070203,4380_472 -4380_77979,297,4380_30270,Ballyvolane,72402-00008-1,0,4380_7778208_2070203,4380_472 -4380_77979,285,4380_30271,Ballyvolane,73243-00009-1,0,4380_7778208_2070211,4380_472 -4380_77979,286,4380_30272,Ballyvolane,73245-00010-1,0,4380_7778208_2070211,4380_472 -4380_77979,288,4380_30273,Ballyvolane,73247-00011-1,0,4380_7778208_2070211,4380_472 -4380_77979,287,4380_30274,Ballyvolane,73249-00012-1,0,4380_7778208_2070211,4380_472 -4380_77979,291,4380_30275,Ballyvolane,72340-00013-1,0,4380_7778208_2070202,4380_472 -4380_77979,289,4380_30276,Ballyvolane,73251-00014-1,0,4380_7778208_2070211,4380_472 -4380_77979,292,4380_30277,Ballyvolane,73246-00016-1,0,4380_7778208_2070211,4380_472 -4380_77979,293,4380_30278,Ballyvolane,73248-00017-1,0,4380_7778208_2070211,4380_472 -4380_77979,290,4380_30279,Ballyvolane,73244-00015-1,0,4380_7778208_2070211,4380_472 -4380_77979,294,4380_30280,Ballyvolane,73250-00018-1,0,4380_7778208_2070211,4380_472 -4380_77979,295,4380_30281,Ballyvolane,73252-00019-1,0,4380_7778208_2070211,4380_472 -4380_77979,296,4380_30282,Ballyvolane,72341-00021-1,0,4380_7778208_2070202,4380_472 -4380_78144,285,4380_3029,Drop Off,51705-00009-1,0,4380_7778208_1011114,4380_33 -4380_77979,297,4380_30290,Ballyvolane,72296-00008-1,0,4380_7778208_2070201,4380_472 -4380_77979,285,4380_30291,Ballyvolane,73427-00009-1,0,4380_7778208_2070212,4380_472 -4380_77979,286,4380_30292,Ballyvolane,73425-00010-1,0,4380_7778208_2070212,4380_472 -4380_77979,288,4380_30293,Ballyvolane,73423-00011-1,0,4380_7778208_2070212,4380_472 -4380_77979,287,4380_30294,Ballyvolane,73429-00012-1,0,4380_7778208_2070212,4380_472 -4380_77979,291,4380_30295,Ballyvolane,72458-00013-1,0,4380_7778208_2070204,4380_472 -4380_77979,289,4380_30296,Ballyvolane,73431-00014-1,0,4380_7778208_2070212,4380_472 -4380_77979,292,4380_30297,Ballyvolane,73426-00016-1,0,4380_7778208_2070212,4380_472 -4380_77979,293,4380_30298,Ballyvolane,73424-00017-1,0,4380_7778208_2070212,4380_472 -4380_77979,290,4380_30299,Ballyvolane,73428-00015-1,0,4380_7778208_2070212,4380_472 -4380_78144,286,4380_3030,Drop Off,51697-00010-1,0,4380_7778208_1011114,4380_33 -4380_77979,294,4380_30300,Ballyvolane,73430-00018-1,0,4380_7778208_2070212,4380_472 -4380_77979,295,4380_30301,Ballyvolane,73432-00019-1,0,4380_7778208_2070212,4380_472 -4380_77979,296,4380_30302,Ballyvolane,72459-00021-1,0,4380_7778208_2070204,4380_472 -4380_78144,288,4380_3031,Drop Off,51701-00011-1,0,4380_7778208_1011114,4380_33 -4380_77979,297,4380_30310,Ballyvolane,72460-00008-1,0,4380_7778208_2070204,4380_472 -4380_77979,285,4380_30311,Ballyvolane,72943-00009-1,0,4380_7778208_2070209,4380_472 -4380_77979,286,4380_30312,Ballyvolane,72947-00010-1,0,4380_7778208_2070209,4380_472 -4380_77979,288,4380_30313,Ballyvolane,72951-00011-1,0,4380_7778208_2070209,4380_472 -4380_77979,287,4380_30314,Ballyvolane,72949-00012-1,0,4380_7778208_2070209,4380_472 -4380_77979,291,4380_30315,Ballyvolane,72297-00013-1,0,4380_7778208_2070201,4380_472 -4380_77979,289,4380_30316,Ballyvolane,72945-00014-1,0,4380_7778208_2070209,4380_472 -4380_77979,292,4380_30317,Ballyvolane,72948-00016-1,0,4380_7778208_2070209,4380_472 -4380_77979,293,4380_30318,Ballyvolane,72952-00017-1,0,4380_7778208_2070209,4380_472 -4380_77979,290,4380_30319,Ballyvolane,72944-00015-1,0,4380_7778208_2070209,4380_472 -4380_78144,287,4380_3032,Drop Off,51703-00012-1,0,4380_7778208_1011114,4380_33 -4380_77979,294,4380_30320,Ballyvolane,72950-00018-1,0,4380_7778208_2070209,4380_472 -4380_77979,295,4380_30321,Ballyvolane,72946-00019-1,0,4380_7778208_2070209,4380_472 -4380_77979,296,4380_30322,Ballyvolane,72298-00021-1,0,4380_7778208_2070201,4380_472 -4380_78144,289,4380_3033,Drop Off,51699-00014-1,0,4380_7778208_1011114,4380_33 -4380_77979,297,4380_30330,Ballyvolane,72406-00008-1,0,4380_7778208_2070203,4380_472 -4380_77979,285,4380_30331,Ballyvolane,73073-00009-1,0,4380_7778208_2070210,4380_472 -4380_77979,286,4380_30332,Ballyvolane,73077-00010-1,0,4380_7778208_2070210,4380_472 -4380_77979,288,4380_30333,Ballyvolane,73081-00011-1,0,4380_7778208_2070210,4380_472 -4380_77979,287,4380_30334,Ballyvolane,73075-00012-1,0,4380_7778208_2070210,4380_472 -4380_77979,291,4380_30335,Ballyvolane,72407-00013-1,0,4380_7778208_2070203,4380_472 -4380_77979,289,4380_30336,Ballyvolane,73079-00014-1,0,4380_7778208_2070210,4380_472 -4380_77979,292,4380_30337,Ballyvolane,73078-00016-1,0,4380_7778208_2070210,4380_472 -4380_77979,293,4380_30338,Ballyvolane,73082-00017-1,0,4380_7778208_2070210,4380_472 -4380_77979,290,4380_30339,Ballyvolane,73074-00015-1,0,4380_7778208_2070210,4380_472 -4380_78144,290,4380_3034,Drop Off,51706-00015-1,0,4380_7778208_1011114,4380_33 -4380_77979,294,4380_30340,Ballyvolane,73076-00018-1,0,4380_7778208_2070210,4380_472 -4380_77979,295,4380_30341,Ballyvolane,73080-00019-1,0,4380_7778208_2070210,4380_472 -4380_77979,296,4380_30342,Ballyvolane,72408-00021-1,0,4380_7778208_2070203,4380_472 -4380_78144,292,4380_3035,Drop Off,51698-00016-1,0,4380_7778208_1011114,4380_33 -4380_77979,297,4380_30350,Ballyvolane,72302-00008-1,0,4380_7778208_2070201,4380_472 -4380_77979,285,4380_30351,Ballyvolane,73269-00009-1,0,4380_7778208_2070211,4380_472 -4380_77979,286,4380_30352,Ballyvolane,73271-00010-1,0,4380_7778208_2070211,4380_472 -4380_77979,288,4380_30353,Ballyvolane,73267-00011-1,0,4380_7778208_2070211,4380_472 -4380_77979,287,4380_30354,Ballyvolane,73265-00012-1,0,4380_7778208_2070211,4380_472 -4380_77979,291,4380_30355,Ballyvolane,72348-00013-1,0,4380_7778208_2070202,4380_472 -4380_77979,289,4380_30356,Ballyvolane,73263-00014-1,0,4380_7778208_2070211,4380_472 -4380_77979,292,4380_30357,Ballyvolane,73272-00016-1,0,4380_7778208_2070211,4380_472 -4380_77979,293,4380_30358,Ballyvolane,73268-00017-1,0,4380_7778208_2070211,4380_472 -4380_77979,290,4380_30359,Ballyvolane,73270-00015-1,0,4380_7778208_2070211,4380_472 -4380_78144,293,4380_3036,Drop Off,51702-00017-1,0,4380_7778208_1011114,4380_33 -4380_77979,294,4380_30360,Ballyvolane,73266-00018-1,0,4380_7778208_2070211,4380_472 -4380_77979,295,4380_30361,Ballyvolane,73264-00019-1,0,4380_7778208_2070211,4380_472 -4380_77979,296,4380_30362,Ballyvolane,72349-00021-1,0,4380_7778208_2070202,4380_472 -4380_78144,294,4380_3037,Drop Off,51704-00018-1,0,4380_7778208_1011114,4380_33 -4380_77979,297,4380_30370,Ballyvolane,72464-00008-1,0,4380_7778208_2070204,4380_472 -4380_77979,285,4380_30371,Ballyvolane,73449-00009-1,0,4380_7778208_2070212,4380_472 -4380_77979,286,4380_30372,Ballyvolane,73447-00010-1,0,4380_7778208_2070212,4380_472 -4380_77979,288,4380_30373,Ballyvolane,73443-00011-1,0,4380_7778208_2070212,4380_472 -4380_77979,287,4380_30374,Ballyvolane,73451-00012-1,0,4380_7778208_2070212,4380_472 -4380_77979,291,4380_30375,Ballyvolane,72465-00013-1,0,4380_7778208_2070204,4380_472 -4380_77979,289,4380_30376,Ballyvolane,73445-00014-1,0,4380_7778208_2070212,4380_472 -4380_77979,292,4380_30377,Ballyvolane,73448-00016-1,0,4380_7778208_2070212,4380_472 -4380_77979,293,4380_30378,Ballyvolane,73444-00017-1,0,4380_7778208_2070212,4380_472 -4380_77979,290,4380_30379,Ballyvolane,73450-00015-1,0,4380_7778208_2070212,4380_472 -4380_78144,295,4380_3038,Drop Off,51700-00019-1,0,4380_7778208_1011114,4380_33 -4380_77979,294,4380_30380,Ballyvolane,73452-00018-1,0,4380_7778208_2070212,4380_472 -4380_77979,295,4380_30381,Ballyvolane,73446-00019-1,0,4380_7778208_2070212,4380_472 -4380_77979,296,4380_30382,Ballyvolane,72466-00021-1,0,4380_7778208_2070204,4380_472 -4380_77979,297,4380_30390,Ballyvolane,72412-00008-1,0,4380_7778208_2070203,4380_472 -4380_77979,285,4380_30391,Ballyvolane,72963-00009-1,0,4380_7778208_2070209,4380_472 -4380_77979,286,4380_30392,Ballyvolane,72971-00010-1,0,4380_7778208_2070209,4380_472 -4380_77979,288,4380_30393,Ballyvolane,72969-00011-1,0,4380_7778208_2070209,4380_472 -4380_77979,287,4380_30394,Ballyvolane,72967-00012-1,0,4380_7778208_2070209,4380_472 -4380_77979,291,4380_30395,Ballyvolane,72304-00013-1,0,4380_7778208_2070201,4380_472 -4380_77979,289,4380_30396,Ballyvolane,72965-00014-1,0,4380_7778208_2070209,4380_472 -4380_77979,292,4380_30397,Ballyvolane,72972-00016-1,0,4380_7778208_2070209,4380_472 -4380_77979,293,4380_30398,Ballyvolane,72970-00017-1,0,4380_7778208_2070209,4380_472 -4380_77979,290,4380_30399,Ballyvolane,72964-00015-1,0,4380_7778208_2070209,4380_472 -4380_77979,294,4380_30400,Ballyvolane,72968-00018-1,0,4380_7778208_2070209,4380_472 -4380_77979,295,4380_30401,Ballyvolane,72966-00019-1,0,4380_7778208_2070209,4380_472 -4380_77979,296,4380_30402,Ballyvolane,72305-00021-1,0,4380_7778208_2070201,4380_472 -4380_77979,297,4380_30410,Ballyvolane,72306-00008-1,0,4380_7778208_2070201,4380_472 -4380_77979,285,4380_30411,Ballyvolane,73095-00009-1,0,4380_7778208_2070210,4380_472 -4380_77979,286,4380_30412,Ballyvolane,73097-00010-1,0,4380_7778208_2070210,4380_472 -4380_77979,288,4380_30413,Ballyvolane,73099-00011-1,0,4380_7778208_2070210,4380_472 -4380_77979,287,4380_30414,Ballyvolane,73093-00012-1,0,4380_7778208_2070210,4380_472 -4380_77979,291,4380_30415,Ballyvolane,72413-00013-1,0,4380_7778208_2070203,4380_472 -4380_77979,289,4380_30416,Ballyvolane,73101-00014-1,0,4380_7778208_2070210,4380_472 -4380_77979,292,4380_30417,Ballyvolane,73098-00016-1,0,4380_7778208_2070210,4380_472 -4380_77979,293,4380_30418,Ballyvolane,73100-00017-1,0,4380_7778208_2070210,4380_472 -4380_77979,290,4380_30419,Ballyvolane,73096-00015-1,0,4380_7778208_2070210,4380_472 -4380_77979,294,4380_30420,Ballyvolane,73094-00018-1,0,4380_7778208_2070210,4380_472 -4380_77979,295,4380_30421,Ballyvolane,73102-00019-1,0,4380_7778208_2070210,4380_472 -4380_77979,296,4380_30422,Ballyvolane,72414-00021-1,0,4380_7778208_2070203,4380_472 -4380_77979,297,4380_30430,Ballyvolane,72470-00008-1,0,4380_7778208_2070204,4380_472 -4380_77979,285,4380_30431,Ballyvolane,73287-00009-1,0,4380_7778208_2070211,4380_472 -4380_77979,286,4380_30432,Ballyvolane,73285-00010-1,0,4380_7778208_2070211,4380_472 -4380_77979,288,4380_30433,Ballyvolane,73289-00011-1,0,4380_7778208_2070211,4380_472 -4380_77979,287,4380_30434,Ballyvolane,73291-00012-1,0,4380_7778208_2070211,4380_472 -4380_77979,291,4380_30435,Ballyvolane,72356-00013-1,0,4380_7778208_2070202,4380_472 -4380_77979,289,4380_30436,Ballyvolane,73283-00014-1,0,4380_7778208_2070211,4380_472 -4380_77979,292,4380_30437,Ballyvolane,73286-00016-1,0,4380_7778208_2070211,4380_472 -4380_77979,293,4380_30438,Ballyvolane,73290-00017-1,0,4380_7778208_2070211,4380_472 -4380_77979,290,4380_30439,Ballyvolane,73288-00015-1,0,4380_7778208_2070211,4380_472 -4380_78144,285,4380_3044,Drop Off,51725-00009-1,0,4380_7778208_1011115,4380_33 -4380_77979,294,4380_30440,Ballyvolane,73292-00018-1,0,4380_7778208_2070211,4380_472 -4380_77979,295,4380_30441,Ballyvolane,73284-00019-1,0,4380_7778208_2070211,4380_472 -4380_77979,296,4380_30442,Ballyvolane,72357-00021-1,0,4380_7778208_2070202,4380_472 -4380_78144,286,4380_3045,Drop Off,51717-00010-1,0,4380_7778208_1011115,4380_33 -4380_77979,297,4380_30450,Ballyvolane,72416-00008-1,0,4380_7778208_2070203,4380_472 -4380_77979,285,4380_30451,Ballyvolane,73471-00009-1,0,4380_7778208_2070212,4380_472 -4380_77979,286,4380_30452,Ballyvolane,73463-00010-1,0,4380_7778208_2070212,4380_472 -4380_77979,288,4380_30453,Ballyvolane,73467-00011-1,0,4380_7778208_2070212,4380_472 -4380_77979,287,4380_30454,Ballyvolane,73469-00012-1,0,4380_7778208_2070212,4380_472 -4380_77979,291,4380_30455,Ballyvolane,72471-00013-1,0,4380_7778208_2070204,4380_472 -4380_77979,289,4380_30456,Ballyvolane,73465-00014-1,0,4380_7778208_2070212,4380_472 -4380_77979,292,4380_30457,Ballyvolane,73464-00016-1,0,4380_7778208_2070212,4380_472 -4380_77979,293,4380_30458,Ballyvolane,73468-00017-1,0,4380_7778208_2070212,4380_472 -4380_77979,290,4380_30459,Ballyvolane,73472-00015-1,0,4380_7778208_2070212,4380_472 -4380_78144,288,4380_3046,Drop Off,51721-00011-1,0,4380_7778208_1011115,4380_33 -4380_77979,294,4380_30460,Ballyvolane,73470-00018-1,0,4380_7778208_2070212,4380_472 -4380_77979,295,4380_30461,Ballyvolane,73466-00019-1,0,4380_7778208_2070212,4380_472 -4380_77979,296,4380_30462,Ballyvolane,72472-00021-1,0,4380_7778208_2070204,4380_472 -4380_78144,287,4380_3047,Drop Off,51723-00012-1,0,4380_7778208_1011115,4380_33 -4380_77979,297,4380_30470,Ballyvolane,72310-00008-1,0,4380_7778208_2070201,4380_472 -4380_77979,285,4380_30471,Ballyvolane,72987-00009-1,0,4380_7778208_2070209,4380_472 -4380_77979,286,4380_30472,Ballyvolane,72983-00010-1,0,4380_7778208_2070209,4380_472 -4380_77979,288,4380_30473,Ballyvolane,72985-00011-1,0,4380_7778208_2070209,4380_472 -4380_77979,287,4380_30474,Ballyvolane,72991-00012-1,0,4380_7778208_2070209,4380_472 -4380_77979,291,4380_30475,Ballyvolane,72311-00013-1,0,4380_7778208_2070201,4380_472 -4380_77979,289,4380_30476,Ballyvolane,72989-00014-1,0,4380_7778208_2070209,4380_472 -4380_77979,292,4380_30477,Ballyvolane,72984-00016-1,0,4380_7778208_2070209,4380_472 -4380_77979,293,4380_30478,Ballyvolane,72986-00017-1,0,4380_7778208_2070209,4380_472 -4380_77979,290,4380_30479,Ballyvolane,72988-00015-1,0,4380_7778208_2070209,4380_472 -4380_78144,289,4380_3048,Drop Off,51719-00014-1,0,4380_7778208_1011115,4380_33 -4380_77979,294,4380_30480,Ballyvolane,72992-00018-1,0,4380_7778208_2070209,4380_472 -4380_77979,295,4380_30481,Ballyvolane,72990-00019-1,0,4380_7778208_2070209,4380_472 -4380_77979,296,4380_30482,Ballyvolane,72312-00021-1,0,4380_7778208_2070201,4380_472 -4380_78144,290,4380_3049,Drop Off,51726-00015-1,0,4380_7778208_1011115,4380_33 -4380_77979,297,4380_30490,Ballyvolane,72474-00008-1,0,4380_7778208_2070204,4380_472 -4380_77979,285,4380_30491,Ballyvolane,73121-00009-1,0,4380_7778208_2070210,4380_472 -4380_77979,286,4380_30492,Ballyvolane,73113-00010-1,0,4380_7778208_2070210,4380_472 -4380_77979,288,4380_30493,Ballyvolane,73119-00011-1,0,4380_7778208_2070210,4380_472 -4380_77979,287,4380_30494,Ballyvolane,73117-00012-1,0,4380_7778208_2070210,4380_472 -4380_77979,291,4380_30495,Ballyvolane,72420-00013-1,0,4380_7778208_2070203,4380_472 -4380_77979,289,4380_30496,Ballyvolane,73115-00014-1,0,4380_7778208_2070210,4380_472 -4380_77979,292,4380_30497,Ballyvolane,73114-00016-1,0,4380_7778208_2070210,4380_472 -4380_77979,293,4380_30498,Ballyvolane,73120-00017-1,0,4380_7778208_2070210,4380_472 -4380_77979,290,4380_30499,Ballyvolane,73122-00015-1,0,4380_7778208_2070210,4380_472 -4380_78144,292,4380_3050,Drop Off,51718-00016-1,0,4380_7778208_1011115,4380_33 -4380_77979,294,4380_30500,Ballyvolane,73118-00018-1,0,4380_7778208_2070210,4380_472 -4380_77979,295,4380_30501,Ballyvolane,73116-00019-1,0,4380_7778208_2070210,4380_472 -4380_77979,296,4380_30502,Ballyvolane,72421-00021-1,0,4380_7778208_2070203,4380_472 -4380_78144,293,4380_3051,Drop Off,51722-00017-1,0,4380_7778208_1011115,4380_33 -4380_77979,297,4380_30510,Ballyvolane,72422-00008-1,0,4380_7778208_2070203,4380_472 -4380_77979,285,4380_30511,Ballyvolane,73307-00009-1,0,4380_7778208_2070211,4380_472 -4380_77979,286,4380_30512,Ballyvolane,73303-00010-1,0,4380_7778208_2070211,4380_472 -4380_77979,288,4380_30513,Ballyvolane,73305-00011-1,0,4380_7778208_2070211,4380_472 -4380_77979,287,4380_30514,Ballyvolane,73311-00012-1,0,4380_7778208_2070211,4380_472 -4380_77979,291,4380_30515,Ballyvolane,72363-00013-1,0,4380_7778208_2070202,4380_472 -4380_77979,289,4380_30516,Ballyvolane,73309-00014-1,0,4380_7778208_2070211,4380_472 -4380_77979,292,4380_30517,Ballyvolane,73304-00016-1,0,4380_7778208_2070211,4380_472 -4380_77979,293,4380_30518,Ballyvolane,73306-00017-1,0,4380_7778208_2070211,4380_472 -4380_77979,290,4380_30519,Ballyvolane,73308-00015-1,0,4380_7778208_2070211,4380_472 -4380_78144,294,4380_3052,Drop Off,51724-00018-1,0,4380_7778208_1011115,4380_33 -4380_77979,294,4380_30520,Ballyvolane,73312-00018-1,0,4380_7778208_2070211,4380_472 -4380_77979,295,4380_30521,Ballyvolane,73310-00019-1,0,4380_7778208_2070211,4380_472 -4380_77979,296,4380_30522,Ballyvolane,72364-00021-1,0,4380_7778208_2070202,4380_472 -4380_78144,295,4380_3053,Drop Off,51720-00019-1,0,4380_7778208_1011115,4380_33 -4380_77979,297,4380_30530,Ballyvolane,72316-00008-1,0,4380_7778208_2070201,4380_472 -4380_77979,285,4380_30531,Ballyvolane,73485-00009-1,0,4380_7778208_2070212,4380_476 -4380_77979,286,4380_30532,Ballyvolane,73487-00010-1,0,4380_7778208_2070212,4380_476 -4380_77979,288,4380_30533,Ballyvolane,73491-00011-1,0,4380_7778208_2070212,4380_476 -4380_77979,287,4380_30534,Ballyvolane,73483-00012-1,0,4380_7778208_2070212,4380_476 -4380_77979,291,4380_30535,Ballyvolane,72478-00013-1,0,4380_7778208_2070204,4380_472 -4380_77979,289,4380_30536,Ballyvolane,73489-00014-1,0,4380_7778208_2070212,4380_476 -4380_77979,292,4380_30537,Ballyvolane,73488-00016-1,0,4380_7778208_2070212,4380_476 -4380_77979,293,4380_30538,Ballyvolane,73492-00017-1,0,4380_7778208_2070212,4380_476 -4380_77979,290,4380_30539,Ballyvolane,73486-00015-1,0,4380_7778208_2070212,4380_476 -4380_77979,294,4380_30540,Ballyvolane,73484-00018-1,0,4380_7778208_2070212,4380_476 -4380_77979,295,4380_30541,Ballyvolane,73490-00019-1,0,4380_7778208_2070212,4380_476 -4380_77979,296,4380_30542,Ballyvolane,72479-00021-1,0,4380_7778208_2070204,4380_472 -4380_77979,297,4380_30550,Ballyvolane,72480-00008-1,0,4380_7778208_2070204,4380_472 -4380_77979,285,4380_30551,Ballyvolane,73005-00009-1,0,4380_7778208_2070209,4380_472 -4380_77979,286,4380_30552,Ballyvolane,73009-00010-1,0,4380_7778208_2070209,4380_472 -4380_77979,288,4380_30553,Ballyvolane,73007-00011-1,0,4380_7778208_2070209,4380_472 -4380_77979,287,4380_30554,Ballyvolane,73011-00012-1,0,4380_7778208_2070209,4380_472 -4380_77979,291,4380_30555,Ballyvolane,72317-00013-1,0,4380_7778208_2070201,4380_472 -4380_77979,289,4380_30556,Ballyvolane,73003-00014-1,0,4380_7778208_2070209,4380_472 -4380_77979,292,4380_30557,Ballyvolane,73010-00016-1,0,4380_7778208_2070209,4380_472 -4380_77979,293,4380_30558,Ballyvolane,73008-00017-1,0,4380_7778208_2070209,4380_472 -4380_77979,290,4380_30559,Ballyvolane,73006-00015-1,0,4380_7778208_2070209,4380_472 -4380_77979,294,4380_30560,Ballyvolane,73012-00018-1,0,4380_7778208_2070209,4380_472 -4380_77979,295,4380_30561,Ballyvolane,73004-00019-1,0,4380_7778208_2070209,4380_472 -4380_77979,296,4380_30562,Ballyvolane,72318-00021-1,0,4380_7778208_2070201,4380_472 -4380_77979,297,4380_30570,Ballyvolane,72428-00008-1,0,4380_7778208_2070203,4380_472 -4380_77979,285,4380_30571,Ballyvolane,73137-00009-1,0,4380_7778208_2070210,4380_472 -4380_77979,286,4380_30572,Ballyvolane,73141-00010-1,0,4380_7778208_2070210,4380_472 -4380_77979,288,4380_30573,Ballyvolane,73133-00011-1,0,4380_7778208_2070210,4380_472 -4380_77979,287,4380_30574,Ballyvolane,73139-00012-1,0,4380_7778208_2070210,4380_472 -4380_77979,291,4380_30575,Ballyvolane,72426-00013-1,0,4380_7778208_2070203,4380_472 -4380_77979,289,4380_30576,Ballyvolane,73135-00014-1,0,4380_7778208_2070210,4380_472 -4380_77979,292,4380_30577,Ballyvolane,73142-00016-1,0,4380_7778208_2070210,4380_472 -4380_77979,293,4380_30578,Ballyvolane,73134-00017-1,0,4380_7778208_2070210,4380_472 -4380_77979,290,4380_30579,Ballyvolane,73138-00015-1,0,4380_7778208_2070210,4380_472 -4380_77979,294,4380_30580,Ballyvolane,73140-00018-1,0,4380_7778208_2070210,4380_472 -4380_77979,295,4380_30581,Ballyvolane,73136-00019-1,0,4380_7778208_2070210,4380_472 -4380_77979,296,4380_30582,Ballyvolane,72427-00021-1,0,4380_7778208_2070203,4380_472 -4380_78144,285,4380_3059,Drop Off,51745-00009-1,0,4380_7778208_1011116,4380_33 -4380_77979,297,4380_30590,Ballyvolane,72322-00008-1,0,4380_7778208_2070201,4380_472 -4380_77979,285,4380_30591,Ballyvolane,73325-00009-1,0,4380_7778208_2070211,4380_472 -4380_77979,286,4380_30592,Ballyvolane,73323-00010-1,0,4380_7778208_2070211,4380_472 -4380_77979,288,4380_30593,Ballyvolane,73327-00011-1,0,4380_7778208_2070211,4380_472 -4380_77979,287,4380_30594,Ballyvolane,73331-00012-1,0,4380_7778208_2070211,4380_472 -4380_77979,291,4380_30595,Ballyvolane,72371-00013-1,0,4380_7778208_2070202,4380_472 -4380_77979,289,4380_30596,Ballyvolane,73329-00014-1,0,4380_7778208_2070211,4380_472 -4380_77979,292,4380_30597,Ballyvolane,73324-00016-1,0,4380_7778208_2070211,4380_472 -4380_77979,293,4380_30598,Ballyvolane,73328-00017-1,0,4380_7778208_2070211,4380_472 -4380_77979,290,4380_30599,Ballyvolane,73326-00015-1,0,4380_7778208_2070211,4380_472 -4380_78144,286,4380_3060,Drop Off,51737-00010-1,0,4380_7778208_1011116,4380_33 -4380_77979,294,4380_30600,Ballyvolane,73332-00018-1,0,4380_7778208_2070211,4380_472 -4380_77979,295,4380_30601,Ballyvolane,73330-00019-1,0,4380_7778208_2070211,4380_472 -4380_77979,296,4380_30602,Ballyvolane,72372-00021-1,0,4380_7778208_2070202,4380_472 -4380_78144,288,4380_3061,Drop Off,51741-00011-1,0,4380_7778208_1011116,4380_33 -4380_77979,297,4380_30610,Ballyvolane,72484-00008-1,0,4380_7778208_2070204,4380_472 -4380_77979,285,4380_30611,Ballyvolane,73505-00009-1,0,4380_7778208_2070212,4380_472 -4380_77979,286,4380_30612,Ballyvolane,73507-00010-1,0,4380_7778208_2070212,4380_472 -4380_77979,288,4380_30613,Ballyvolane,73511-00011-1,0,4380_7778208_2070212,4380_472 -4380_77979,287,4380_30614,Ballyvolane,73503-00012-1,0,4380_7778208_2070212,4380_472 -4380_77979,291,4380_30615,Ballyvolane,72485-00013-1,0,4380_7778208_2070204,4380_472 -4380_77979,289,4380_30616,Ballyvolane,73509-00014-1,0,4380_7778208_2070212,4380_472 -4380_77979,292,4380_30617,Ballyvolane,73508-00016-1,0,4380_7778208_2070212,4380_472 -4380_77979,293,4380_30618,Ballyvolane,73512-00017-1,0,4380_7778208_2070212,4380_472 -4380_77979,290,4380_30619,Ballyvolane,73506-00015-1,0,4380_7778208_2070212,4380_472 -4380_78144,287,4380_3062,Drop Off,51739-00012-1,0,4380_7778208_1011116,4380_33 -4380_77979,294,4380_30620,Ballyvolane,73504-00018-1,0,4380_7778208_2070212,4380_472 -4380_77979,295,4380_30621,Ballyvolane,73510-00019-1,0,4380_7778208_2070212,4380_472 -4380_77979,296,4380_30622,Ballyvolane,72486-00021-1,0,4380_7778208_2070204,4380_472 -4380_78144,289,4380_3063,Drop Off,51743-00014-1,0,4380_7778208_1011116,4380_33 -4380_77979,297,4380_30630,Ballyvolane,72432-00008-1,0,4380_7778208_2070203,4380_472 -4380_77979,285,4380_30631,Ballyvolane,73159-00009-1,0,4380_7778208_2070210,4380_472 -4380_77979,286,4380_30632,Ballyvolane,73157-00010-1,0,4380_7778208_2070210,4380_472 -4380_77979,288,4380_30633,Ballyvolane,73161-00011-1,0,4380_7778208_2070210,4380_472 -4380_77979,287,4380_30634,Ballyvolane,73155-00012-1,0,4380_7778208_2070210,4380_472 -4380_77979,291,4380_30635,Ballyvolane,72433-00013-1,0,4380_7778208_2070203,4380_472 -4380_77979,289,4380_30636,Ballyvolane,73153-00014-1,0,4380_7778208_2070210,4380_472 -4380_77979,292,4380_30637,Ballyvolane,73158-00016-1,0,4380_7778208_2070210,4380_472 -4380_77979,293,4380_30638,Ballyvolane,73162-00017-1,0,4380_7778208_2070210,4380_472 -4380_77979,290,4380_30639,Ballyvolane,73160-00015-1,0,4380_7778208_2070210,4380_472 -4380_78144,290,4380_3064,Drop Off,51746-00015-1,0,4380_7778208_1011116,4380_33 -4380_77979,294,4380_30640,Ballyvolane,73156-00018-1,0,4380_7778208_2070210,4380_472 -4380_77979,295,4380_30641,Ballyvolane,73154-00019-1,0,4380_7778208_2070210,4380_472 -4380_77979,296,4380_30642,Ballyvolane,72434-00021-1,0,4380_7778208_2070203,4380_472 -4380_78144,292,4380_3065,Drop Off,51738-00016-1,0,4380_7778208_1011116,4380_33 -4380_77979,297,4380_30650,Ballyvolane,72324-00008-1,0,4380_7778208_2070201,4380_472 -4380_77979,285,4380_30651,Ballyvolane,73343-00009-1,0,4380_7778208_2070211,4380_472 -4380_77979,286,4380_30652,Ballyvolane,73347-00010-1,0,4380_7778208_2070211,4380_472 -4380_77979,288,4380_30653,Ballyvolane,73345-00011-1,0,4380_7778208_2070211,4380_472 -4380_77979,287,4380_30654,Ballyvolane,73351-00012-1,0,4380_7778208_2070211,4380_472 -4380_77979,291,4380_30655,Ballyvolane,72378-00013-1,0,4380_7778208_2070202,4380_472 -4380_77979,289,4380_30656,Ballyvolane,73349-00014-1,0,4380_7778208_2070211,4380_472 -4380_77979,292,4380_30657,Ballyvolane,73348-00016-1,0,4380_7778208_2070211,4380_472 -4380_77979,293,4380_30658,Ballyvolane,73346-00017-1,0,4380_7778208_2070211,4380_472 -4380_77979,290,4380_30659,Ballyvolane,73344-00015-1,0,4380_7778208_2070211,4380_472 -4380_78144,293,4380_3066,Drop Off,51742-00017-1,0,4380_7778208_1011116,4380_33 -4380_77979,294,4380_30660,Ballyvolane,73352-00018-1,0,4380_7778208_2070211,4380_472 -4380_77979,295,4380_30661,Ballyvolane,73350-00019-1,0,4380_7778208_2070211,4380_472 -4380_77979,296,4380_30662,Ballyvolane,72379-00021-1,0,4380_7778208_2070202,4380_472 -4380_78144,294,4380_3067,Drop Off,51740-00018-1,0,4380_7778208_1011116,4380_33 -4380_77979,297,4380_30670,Ballyvolane,72490-00008-1,0,4380_7778208_2070204,4380_472 -4380_77979,285,4380_30671,Ballyvolane,73523-00009-1,0,4380_7778208_2070212,4380_472 -4380_77979,286,4380_30672,Ballyvolane,73531-00010-1,0,4380_7778208_2070212,4380_472 -4380_77979,288,4380_30673,Ballyvolane,73527-00011-1,0,4380_7778208_2070212,4380_472 -4380_77979,287,4380_30674,Ballyvolane,73529-00012-1,0,4380_7778208_2070212,4380_472 -4380_77979,291,4380_30675,Ballyvolane,72491-00013-1,0,4380_7778208_2070204,4380_472 -4380_77979,289,4380_30676,Ballyvolane,73525-00014-1,0,4380_7778208_2070212,4380_472 -4380_77979,292,4380_30677,Ballyvolane,73532-00016-1,0,4380_7778208_2070212,4380_472 -4380_77979,293,4380_30678,Ballyvolane,73528-00017-1,0,4380_7778208_2070212,4380_472 -4380_77979,290,4380_30679,Ballyvolane,73524-00015-1,0,4380_7778208_2070212,4380_472 -4380_78144,295,4380_3068,Drop Off,51744-00019-1,0,4380_7778208_1011116,4380_33 -4380_77979,294,4380_30680,Ballyvolane,73530-00018-1,0,4380_7778208_2070212,4380_472 -4380_77979,295,4380_30681,Ballyvolane,73526-00019-1,0,4380_7778208_2070212,4380_472 -4380_77979,296,4380_30682,Ballyvolane,72492-00021-1,0,4380_7778208_2070204,4380_472 -4380_77979,297,4380_30690,Ballyvolane,72438-00008-1,0,4380_7778208_2070203,4380_472 -4380_77979,285,4380_30691,Ballyvolane,73175-00009-1,0,4380_7778208_2070210,4380_472 -4380_77979,286,4380_30692,Ballyvolane,73179-00010-1,0,4380_7778208_2070210,4380_472 -4380_77979,288,4380_30693,Ballyvolane,73173-00011-1,0,4380_7778208_2070210,4380_472 -4380_77979,287,4380_30694,Ballyvolane,73177-00012-1,0,4380_7778208_2070210,4380_472 -4380_77979,291,4380_30695,Ballyvolane,72439-00013-1,0,4380_7778208_2070203,4380_472 -4380_77979,289,4380_30696,Ballyvolane,73181-00014-1,0,4380_7778208_2070210,4380_472 -4380_77979,292,4380_30697,Ballyvolane,73180-00016-1,0,4380_7778208_2070210,4380_472 -4380_77979,293,4380_30698,Ballyvolane,73174-00017-1,0,4380_7778208_2070210,4380_472 -4380_77979,290,4380_30699,Ballyvolane,73176-00015-1,0,4380_7778208_2070210,4380_472 -4380_77979,294,4380_30700,Ballyvolane,73178-00018-1,0,4380_7778208_2070210,4380_472 -4380_77979,295,4380_30701,Ballyvolane,73182-00019-1,0,4380_7778208_2070210,4380_472 -4380_77979,296,4380_30702,Ballyvolane,72440-00021-1,0,4380_7778208_2070203,4380_472 -4380_77979,297,4380_30710,Ballyvolane,72326-00008-1,0,4380_7778208_2070201,4380_472 -4380_77979,285,4380_30711,Ballyvolane,73369-00009-1,0,4380_7778208_2070211,4380_472 -4380_77979,286,4380_30712,Ballyvolane,73367-00010-1,0,4380_7778208_2070211,4380_472 -4380_77979,288,4380_30713,Ballyvolane,73371-00011-1,0,4380_7778208_2070211,4380_472 -4380_77979,287,4380_30714,Ballyvolane,73363-00012-1,0,4380_7778208_2070211,4380_472 -4380_77979,291,4380_30715,Ballyvolane,72385-00013-1,0,4380_7778208_2070202,4380_472 -4380_77979,289,4380_30716,Ballyvolane,73365-00014-1,0,4380_7778208_2070211,4380_472 -4380_77979,292,4380_30717,Ballyvolane,73368-00016-1,0,4380_7778208_2070211,4380_472 -4380_77979,293,4380_30718,Ballyvolane,73372-00017-1,0,4380_7778208_2070211,4380_472 -4380_77979,290,4380_30719,Ballyvolane,73370-00015-1,0,4380_7778208_2070211,4380_472 -4380_77979,294,4380_30720,Ballyvolane,73364-00018-1,0,4380_7778208_2070211,4380_472 -4380_77979,295,4380_30721,Ballyvolane,73366-00019-1,0,4380_7778208_2070211,4380_472 -4380_77979,296,4380_30722,Ballyvolane,72386-00021-1,0,4380_7778208_2070202,4380_472 -4380_77979,297,4380_30730,Ballyvolane,72498-00008-1,0,4380_7778208_2070204,4380_472 -4380_77979,285,4380_30731,Ballyvolane,73547-00009-1,0,4380_7778208_2070212,4380_472 -4380_77979,286,4380_30732,Ballyvolane,73549-00010-1,0,4380_7778208_2070212,4380_472 -4380_77979,288,4380_30733,Ballyvolane,73543-00011-1,0,4380_7778208_2070212,4380_472 -4380_77979,287,4380_30734,Ballyvolane,73551-00012-1,0,4380_7778208_2070212,4380_472 -4380_77979,291,4380_30735,Ballyvolane,72496-00013-1,0,4380_7778208_2070204,4380_472 -4380_77979,289,4380_30736,Ballyvolane,73545-00014-1,0,4380_7778208_2070212,4380_472 -4380_77979,292,4380_30737,Ballyvolane,73550-00016-1,0,4380_7778208_2070212,4380_472 -4380_77979,293,4380_30738,Ballyvolane,73544-00017-1,0,4380_7778208_2070212,4380_472 -4380_77979,290,4380_30739,Ballyvolane,73548-00015-1,0,4380_7778208_2070212,4380_472 -4380_78144,285,4380_3074,Drop Off,51765-00009-1,0,4380_7778208_1011117,4380_33 -4380_77979,294,4380_30740,Ballyvolane,73552-00018-1,0,4380_7778208_2070212,4380_472 -4380_77979,295,4380_30741,Ballyvolane,73546-00019-1,0,4380_7778208_2070212,4380_472 -4380_77979,296,4380_30742,Ballyvolane,72497-00021-1,0,4380_7778208_2070204,4380_472 -4380_78144,286,4380_3075,Drop Off,51757-00010-1,0,4380_7778208_1011117,4380_33 -4380_77979,297,4380_30750,St. Patrick Street,72446-00008-1,0,4380_7778208_2070203,4380_473 -4380_77979,285,4380_30751,St. Patrick Street,73201-00009-1,0,4380_7778208_2070210,4380_475 -4380_77979,286,4380_30752,St. Patrick Street,73199-00010-1,0,4380_7778208_2070210,4380_475 -4380_77979,288,4380_30753,St. Patrick Street,73193-00011-1,0,4380_7778208_2070210,4380_475 -4380_77979,287,4380_30754,St. Patrick Street,73197-00012-1,0,4380_7778208_2070210,4380_475 -4380_77979,291,4380_30755,St. Patrick Street,72444-00013-1,0,4380_7778208_2070203,4380_475 -4380_77979,289,4380_30756,St. Patrick Street,73195-00014-1,0,4380_7778208_2070210,4380_475 -4380_77979,292,4380_30757,St. Patrick Street,73200-00016-1,0,4380_7778208_2070210,4380_475 -4380_77979,293,4380_30758,St. Patrick Street,73194-00017-1,0,4380_7778208_2070210,4380_475 -4380_77979,290,4380_30759,St. Patrick Street,73202-00015-1,0,4380_7778208_2070210,4380_475 -4380_78144,288,4380_3076,Drop Off,51761-00011-1,0,4380_7778208_1011117,4380_33 -4380_77979,294,4380_30760,St. Patrick Street,73198-00018-1,0,4380_7778208_2070210,4380_475 -4380_77979,295,4380_30761,St. Patrick Street,73196-00019-1,0,4380_7778208_2070210,4380_475 -4380_77979,296,4380_30762,St. Patrick Street,72445-00021-1,0,4380_7778208_2070203,4380_475 -4380_77979,285,4380_30769,Donnybrook,72889-00009-1,1,4380_7778208_2070208,4380_478 -4380_78144,287,4380_3077,Drop Off,51763-00012-1,0,4380_7778208_1011117,4380_33 -4380_77979,286,4380_30770,Donnybrook,72885-00010-1,1,4380_7778208_2070208,4380_478 -4380_77979,288,4380_30771,Donnybrook,72883-00011-1,1,4380_7778208_2070208,4380_478 -4380_77979,287,4380_30772,Donnybrook,72891-00012-1,1,4380_7778208_2070208,4380_478 -4380_77979,291,4380_30773,Donnybrook,72283-00013-1,1,4380_7778208_2070201,4380_478 -4380_77979,289,4380_30774,Donnybrook,72887-00014-1,1,4380_7778208_2070208,4380_478 -4380_77979,292,4380_30775,Donnybrook,72886-00016-1,1,4380_7778208_2070208,4380_478 -4380_77979,293,4380_30776,Donnybrook,72884-00017-1,1,4380_7778208_2070208,4380_478 -4380_77979,290,4380_30777,Donnybrook,72890-00015-1,1,4380_7778208_2070208,4380_478 -4380_77979,294,4380_30778,Donnybrook,72892-00018-1,1,4380_7778208_2070208,4380_478 -4380_77979,295,4380_30779,Donnybrook,72888-00019-1,1,4380_7778208_2070208,4380_478 -4380_78144,289,4380_3078,Drop Off,51759-00014-1,0,4380_7778208_1011117,4380_33 -4380_77979,296,4380_30780,Donnybrook,72284-00021-1,1,4380_7778208_2070201,4380_478 -4380_77979,285,4380_30787,Donnybrook,73031-00009-1,1,4380_7778208_2070210,4380_478 -4380_77979,286,4380_30788,Donnybrook,73027-00010-1,1,4380_7778208_2070210,4380_478 -4380_77979,288,4380_30789,Donnybrook,73023-00011-1,1,4380_7778208_2070210,4380_478 -4380_78144,290,4380_3079,Drop Off,51766-00015-1,0,4380_7778208_1011117,4380_33 -4380_77979,287,4380_30790,Donnybrook,73029-00012-1,1,4380_7778208_2070210,4380_478 -4380_77979,291,4380_30791,Donnybrook,72392-00013-1,1,4380_7778208_2070203,4380_481 -4380_77979,289,4380_30792,Donnybrook,73025-00014-1,1,4380_7778208_2070210,4380_478 -4380_77979,292,4380_30793,Donnybrook,73028-00016-1,1,4380_7778208_2070210,4380_478 -4380_77979,293,4380_30794,Donnybrook,73024-00017-1,1,4380_7778208_2070210,4380_478 -4380_77979,290,4380_30795,Donnybrook,73032-00015-1,1,4380_7778208_2070210,4380_478 -4380_77979,294,4380_30796,Donnybrook,73030-00018-1,1,4380_7778208_2070210,4380_478 -4380_77979,295,4380_30797,Donnybrook,73026-00019-1,1,4380_7778208_2070210,4380_478 -4380_77979,296,4380_30798,Donnybrook,72393-00021-1,1,4380_7778208_2070203,4380_481 -4380_78144,292,4380_3080,Drop Off,51758-00016-1,0,4380_7778208_1011117,4380_33 -4380_77979,285,4380_30805,Donnybrook,73215-00009-1,1,4380_7778208_2070211,4380_478 -4380_77979,286,4380_30806,Donnybrook,73217-00010-1,1,4380_7778208_2070211,4380_478 -4380_77979,288,4380_30807,Donnybrook,73213-00011-1,1,4380_7778208_2070211,4380_478 -4380_77979,287,4380_30808,Donnybrook,73219-00012-1,1,4380_7778208_2070211,4380_478 -4380_77979,291,4380_30809,Donnybrook,72330-00013-1,1,4380_7778208_2070202,4380_481 -4380_78144,293,4380_3081,Drop Off,51762-00017-1,0,4380_7778208_1011117,4380_33 -4380_77979,289,4380_30810,Donnybrook,73221-00014-1,1,4380_7778208_2070211,4380_478 -4380_77979,292,4380_30811,Donnybrook,73218-00016-1,1,4380_7778208_2070211,4380_478 -4380_77979,293,4380_30812,Donnybrook,73214-00017-1,1,4380_7778208_2070211,4380_478 -4380_77979,290,4380_30813,Donnybrook,73216-00015-1,1,4380_7778208_2070211,4380_478 -4380_77979,294,4380_30814,Donnybrook,73220-00018-1,1,4380_7778208_2070211,4380_478 -4380_77979,295,4380_30815,Donnybrook,73222-00019-1,1,4380_7778208_2070211,4380_478 -4380_77979,296,4380_30816,Donnybrook,72331-00021-1,1,4380_7778208_2070202,4380_481 -4380_78144,294,4380_3082,Drop Off,51764-00018-1,0,4380_7778208_1011117,4380_33 -4380_77979,285,4380_30823,Donnybrook,73399-00009-1,1,4380_7778208_2070212,4380_478 -4380_77979,286,4380_30824,Donnybrook,73393-00010-1,1,4380_7778208_2070212,4380_478 -4380_77979,288,4380_30825,Donnybrook,73397-00011-1,1,4380_7778208_2070212,4380_478 -4380_77979,287,4380_30826,Donnybrook,73395-00012-1,1,4380_7778208_2070212,4380_478 -4380_77979,291,4380_30827,Donnybrook,72449-00013-1,1,4380_7778208_2070204,4380_481 -4380_77979,289,4380_30828,Donnybrook,73401-00014-1,1,4380_7778208_2070212,4380_478 -4380_77979,292,4380_30829,Donnybrook,73394-00016-1,1,4380_7778208_2070212,4380_478 -4380_78144,295,4380_3083,Drop Off,51760-00019-1,0,4380_7778208_1011117,4380_33 -4380_77979,293,4380_30830,Donnybrook,73398-00017-1,1,4380_7778208_2070212,4380_478 -4380_77979,290,4380_30831,Donnybrook,73400-00015-1,1,4380_7778208_2070212,4380_478 -4380_77979,294,4380_30832,Donnybrook,73396-00018-1,1,4380_7778208_2070212,4380_478 -4380_77979,295,4380_30833,Donnybrook,73402-00019-1,1,4380_7778208_2070212,4380_478 -4380_77979,296,4380_30834,Donnybrook,72450-00021-1,1,4380_7778208_2070204,4380_481 -4380_77979,285,4380_30841,Donnybrook,72921-00009-1,1,4380_7778208_2070209,4380_478 -4380_77979,286,4380_30842,Donnybrook,72917-00010-1,1,4380_7778208_2070209,4380_478 -4380_77979,288,4380_30843,Donnybrook,72913-00011-1,1,4380_7778208_2070209,4380_478 -4380_77979,287,4380_30844,Donnybrook,72919-00012-1,1,4380_7778208_2070209,4380_478 -4380_77979,291,4380_30845,Donnybrook,72287-00013-1,1,4380_7778208_2070201,4380_481 -4380_77979,289,4380_30846,Donnybrook,72915-00014-1,1,4380_7778208_2070209,4380_478 -4380_77979,292,4380_30847,Donnybrook,72918-00016-1,1,4380_7778208_2070209,4380_478 -4380_77979,293,4380_30848,Donnybrook,72914-00017-1,1,4380_7778208_2070209,4380_478 -4380_77979,290,4380_30849,Donnybrook,72922-00015-1,1,4380_7778208_2070209,4380_478 -4380_77979,294,4380_30850,Donnybrook,72920-00018-1,1,4380_7778208_2070209,4380_478 -4380_77979,295,4380_30851,Donnybrook,72916-00019-1,1,4380_7778208_2070209,4380_478 -4380_77979,296,4380_30852,Donnybrook,72288-00021-1,1,4380_7778208_2070201,4380_481 -4380_77979,297,4380_30854,Donnybrook,72289-00008-1,1,4380_7778208_2070201,4380_478 -4380_77979,285,4380_30861,Donnybrook,73051-00009-1,1,4380_7778208_2070210,4380_478 -4380_77979,286,4380_30862,Donnybrook,73049-00010-1,1,4380_7778208_2070210,4380_478 -4380_77979,288,4380_30863,Donnybrook,73045-00011-1,1,4380_7778208_2070210,4380_478 -4380_77979,287,4380_30864,Donnybrook,73043-00012-1,1,4380_7778208_2070210,4380_478 -4380_77979,291,4380_30865,Donnybrook,72397-00013-1,1,4380_7778208_2070203,4380_478 -4380_77979,289,4380_30866,Donnybrook,73047-00014-1,1,4380_7778208_2070210,4380_478 -4380_77979,292,4380_30867,Donnybrook,73050-00016-1,1,4380_7778208_2070210,4380_478 -4380_77979,293,4380_30868,Donnybrook,73046-00017-1,1,4380_7778208_2070210,4380_478 -4380_77979,290,4380_30869,Donnybrook,73052-00015-1,1,4380_7778208_2070210,4380_478 -4380_77979,294,4380_30870,Donnybrook,73044-00018-1,1,4380_7778208_2070210,4380_478 -4380_77979,295,4380_30871,Donnybrook,73048-00019-1,1,4380_7778208_2070210,4380_478 -4380_77979,296,4380_30872,Donnybrook,72398-00021-1,1,4380_7778208_2070203,4380_478 -4380_77979,297,4380_30874,Donnybrook,72453-00008-1,1,4380_7778208_2070204,4380_478 -4380_77979,285,4380_30881,Donnybrook,73235-00009-1,1,4380_7778208_2070211,4380_478 -4380_77979,286,4380_30882,Donnybrook,73239-00010-1,1,4380_7778208_2070211,4380_478 -4380_77979,288,4380_30883,Donnybrook,73237-00011-1,1,4380_7778208_2070211,4380_478 -4380_77979,287,4380_30884,Donnybrook,73233-00012-1,1,4380_7778208_2070211,4380_478 -4380_77979,291,4380_30885,Donnybrook,72336-00013-1,1,4380_7778208_2070202,4380_478 -4380_77979,289,4380_30886,Donnybrook,73241-00014-1,1,4380_7778208_2070211,4380_478 -4380_77979,292,4380_30887,Donnybrook,73240-00016-1,1,4380_7778208_2070211,4380_478 -4380_77979,293,4380_30888,Donnybrook,73238-00017-1,1,4380_7778208_2070211,4380_478 -4380_77979,290,4380_30889,Donnybrook,73236-00015-1,1,4380_7778208_2070211,4380_478 -4380_78144,285,4380_3089,Drop Off,51693-00009-1,1,4380_7778208_1011114,4380_34 -4380_77979,294,4380_30890,Donnybrook,73234-00018-1,1,4380_7778208_2070211,4380_478 -4380_77979,295,4380_30891,Donnybrook,73242-00019-1,1,4380_7778208_2070211,4380_478 -4380_77979,296,4380_30892,Donnybrook,72337-00021-1,1,4380_7778208_2070202,4380_478 -4380_77979,297,4380_30894,Donnybrook,72399-00008-1,1,4380_7778208_2070203,4380_478 -4380_77946,285,4380_309,Drogheda,50373-00009-1,1,4380_7778208_1000914,4380_6 -4380_78144,286,4380_3090,Drop Off,51695-00010-1,1,4380_7778208_1011114,4380_34 -4380_77979,285,4380_30901,Donnybrook,73413-00009-1,1,4380_7778208_2070212,4380_478 -4380_77979,286,4380_30902,Donnybrook,73419-00010-1,1,4380_7778208_2070212,4380_478 -4380_77979,288,4380_30903,Donnybrook,73421-00011-1,1,4380_7778208_2070212,4380_478 -4380_77979,287,4380_30904,Donnybrook,73417-00012-1,1,4380_7778208_2070212,4380_478 -4380_77979,291,4380_30905,Donnybrook,72455-00013-1,1,4380_7778208_2070204,4380_478 -4380_77979,289,4380_30906,Donnybrook,73415-00014-1,1,4380_7778208_2070212,4380_478 -4380_77979,292,4380_30907,Donnybrook,73420-00016-1,1,4380_7778208_2070212,4380_478 -4380_77979,293,4380_30908,Donnybrook,73422-00017-1,1,4380_7778208_2070212,4380_478 -4380_77979,290,4380_30909,Donnybrook,73414-00015-1,1,4380_7778208_2070212,4380_478 -4380_78144,288,4380_3091,Drop Off,51691-00011-1,1,4380_7778208_1011114,4380_34 -4380_77979,294,4380_30910,Donnybrook,73418-00018-1,1,4380_7778208_2070212,4380_478 -4380_77979,295,4380_30911,Donnybrook,73416-00019-1,1,4380_7778208_2070212,4380_478 -4380_77979,296,4380_30912,Donnybrook,72456-00021-1,1,4380_7778208_2070204,4380_478 -4380_77979,297,4380_30914,Donnybrook,72293-00008-1,1,4380_7778208_2070201,4380_478 -4380_78144,287,4380_3092,Drop Off,51687-00012-1,1,4380_7778208_1011114,4380_34 -4380_77979,285,4380_30921,Donnybrook,72939-00009-1,1,4380_7778208_2070209,4380_478 -4380_77979,286,4380_30922,Donnybrook,72933-00010-1,1,4380_7778208_2070209,4380_478 -4380_77979,288,4380_30923,Donnybrook,72941-00011-1,1,4380_7778208_2070209,4380_478 -4380_77979,287,4380_30924,Donnybrook,72937-00012-1,1,4380_7778208_2070209,4380_478 -4380_77979,291,4380_30925,Donnybrook,72294-00013-1,1,4380_7778208_2070201,4380_478 -4380_77979,289,4380_30926,Donnybrook,72935-00014-1,1,4380_7778208_2070209,4380_478 -4380_77979,292,4380_30927,Donnybrook,72934-00016-1,1,4380_7778208_2070209,4380_478 -4380_77979,293,4380_30928,Donnybrook,72942-00017-1,1,4380_7778208_2070209,4380_478 -4380_77979,290,4380_30929,Donnybrook,72940-00015-1,1,4380_7778208_2070209,4380_478 -4380_78144,289,4380_3093,Drop Off,51689-00014-1,1,4380_7778208_1011114,4380_34 -4380_77979,294,4380_30930,Donnybrook,72938-00018-1,1,4380_7778208_2070209,4380_478 -4380_77979,295,4380_30931,Donnybrook,72936-00019-1,1,4380_7778208_2070209,4380_478 -4380_77979,296,4380_30932,Donnybrook,72295-00021-1,1,4380_7778208_2070201,4380_478 -4380_77979,297,4380_30934,Donnybrook,72457-00008-1,1,4380_7778208_2070204,4380_478 -4380_78144,290,4380_3094,Drop Off,51694-00015-1,1,4380_7778208_1011114,4380_34 -4380_77979,285,4380_30941,Donnybrook,73067-00009-1,1,4380_7778208_2070210,4380_478 -4380_77979,286,4380_30942,Donnybrook,73069-00010-1,1,4380_7778208_2070210,4380_478 -4380_77979,288,4380_30943,Donnybrook,73065-00011-1,1,4380_7778208_2070210,4380_478 -4380_77979,287,4380_30944,Donnybrook,73063-00012-1,1,4380_7778208_2070210,4380_478 -4380_77979,291,4380_30945,Donnybrook,72403-00013-1,1,4380_7778208_2070203,4380_478 -4380_77979,289,4380_30946,Donnybrook,73071-00014-1,1,4380_7778208_2070210,4380_478 -4380_77979,292,4380_30947,Donnybrook,73070-00016-1,1,4380_7778208_2070210,4380_478 -4380_77979,293,4380_30948,Donnybrook,73066-00017-1,1,4380_7778208_2070210,4380_478 -4380_77979,290,4380_30949,Donnybrook,73068-00015-1,1,4380_7778208_2070210,4380_478 -4380_78144,292,4380_3095,Drop Off,51696-00016-1,1,4380_7778208_1011114,4380_34 -4380_77979,294,4380_30950,Donnybrook,73064-00018-1,1,4380_7778208_2070210,4380_478 -4380_77979,295,4380_30951,Donnybrook,73072-00019-1,1,4380_7778208_2070210,4380_478 -4380_77979,296,4380_30952,Donnybrook,72404-00021-1,1,4380_7778208_2070203,4380_478 -4380_77979,297,4380_30954,Donnybrook,72405-00008-1,1,4380_7778208_2070203,4380_478 -4380_78144,293,4380_3096,Drop Off,51692-00017-1,1,4380_7778208_1011114,4380_34 -4380_77979,285,4380_30961,Donnybrook,73253-00009-1,1,4380_7778208_2070211,4380_478 -4380_77979,286,4380_30962,Donnybrook,73257-00010-1,1,4380_7778208_2070211,4380_478 -4380_77979,288,4380_30963,Donnybrook,73255-00011-1,1,4380_7778208_2070211,4380_478 -4380_77979,287,4380_30964,Donnybrook,73261-00012-1,1,4380_7778208_2070211,4380_478 -4380_77979,291,4380_30965,Donnybrook,72344-00013-1,1,4380_7778208_2070202,4380_478 -4380_77979,289,4380_30966,Donnybrook,73259-00014-1,1,4380_7778208_2070211,4380_478 -4380_77979,292,4380_30967,Donnybrook,73258-00016-1,1,4380_7778208_2070211,4380_478 -4380_77979,293,4380_30968,Donnybrook,73256-00017-1,1,4380_7778208_2070211,4380_478 -4380_77979,290,4380_30969,Donnybrook,73254-00015-1,1,4380_7778208_2070211,4380_478 -4380_78144,294,4380_3097,Drop Off,51688-00018-1,1,4380_7778208_1011114,4380_34 -4380_77979,294,4380_30970,Donnybrook,73262-00018-1,1,4380_7778208_2070211,4380_478 -4380_77979,295,4380_30971,Donnybrook,73260-00019-1,1,4380_7778208_2070211,4380_478 -4380_77979,296,4380_30972,Donnybrook,72345-00021-1,1,4380_7778208_2070202,4380_478 -4380_77979,297,4380_30974,Donnybrook,72299-00008-1,1,4380_7778208_2070201,4380_478 -4380_78144,295,4380_3098,Drop Off,51690-00019-1,1,4380_7778208_1011114,4380_34 -4380_77979,285,4380_30981,Donnybrook,73435-00009-1,1,4380_7778208_2070212,4380_478 -4380_77979,286,4380_30982,Donnybrook,73437-00010-1,1,4380_7778208_2070212,4380_478 -4380_77979,288,4380_30983,Donnybrook,73439-00011-1,1,4380_7778208_2070212,4380_478 -4380_77979,287,4380_30984,Donnybrook,73433-00012-1,1,4380_7778208_2070212,4380_478 -4380_77979,291,4380_30985,Donnybrook,72461-00013-1,1,4380_7778208_2070204,4380_478 -4380_77979,289,4380_30986,Donnybrook,73441-00014-1,1,4380_7778208_2070212,4380_478 -4380_77979,292,4380_30987,Donnybrook,73438-00016-1,1,4380_7778208_2070212,4380_478 -4380_77979,293,4380_30988,Donnybrook,73440-00017-1,1,4380_7778208_2070212,4380_478 -4380_77979,290,4380_30989,Donnybrook,73436-00015-1,1,4380_7778208_2070212,4380_478 -4380_77979,294,4380_30990,Donnybrook,73434-00018-1,1,4380_7778208_2070212,4380_478 -4380_77979,295,4380_30991,Donnybrook,73442-00019-1,1,4380_7778208_2070212,4380_478 -4380_77979,296,4380_30992,Donnybrook,72462-00021-1,1,4380_7778208_2070204,4380_478 -4380_77979,297,4380_30994,Donnybrook,72463-00008-1,1,4380_7778208_2070204,4380_478 -4380_77946,294,4380_31,Dundalk,114776-00018-1,0,4380_7778208_10088801,4380_3 -4380_77946,286,4380_310,Drogheda,50371-00010-1,1,4380_7778208_1000914,4380_6 -4380_77979,285,4380_31001,Donnybrook,72955-00009-1,1,4380_7778208_2070209,4380_478 -4380_77979,286,4380_31002,Donnybrook,72961-00010-1,1,4380_7778208_2070209,4380_478 -4380_77979,288,4380_31003,Donnybrook,72957-00011-1,1,4380_7778208_2070209,4380_478 -4380_77979,287,4380_31004,Donnybrook,72959-00012-1,1,4380_7778208_2070209,4380_478 -4380_77979,291,4380_31005,Donnybrook,72300-00013-1,1,4380_7778208_2070201,4380_478 -4380_77979,289,4380_31006,Donnybrook,72953-00014-1,1,4380_7778208_2070209,4380_478 -4380_77979,292,4380_31007,Donnybrook,72962-00016-1,1,4380_7778208_2070209,4380_478 -4380_77979,293,4380_31008,Donnybrook,72958-00017-1,1,4380_7778208_2070209,4380_478 -4380_77979,290,4380_31009,Donnybrook,72956-00015-1,1,4380_7778208_2070209,4380_478 -4380_77979,294,4380_31010,Donnybrook,72960-00018-1,1,4380_7778208_2070209,4380_478 -4380_77979,295,4380_31011,Donnybrook,72954-00019-1,1,4380_7778208_2070209,4380_478 -4380_77979,296,4380_31012,Donnybrook,72301-00021-1,1,4380_7778208_2070201,4380_478 -4380_77979,297,4380_31014,Donnybrook,72409-00008-1,1,4380_7778208_2070203,4380_478 -4380_77979,285,4380_31021,Donnybrook,73091-00009-1,1,4380_7778208_2070210,4380_478 -4380_77979,286,4380_31022,Donnybrook,73083-00010-1,1,4380_7778208_2070210,4380_478 -4380_77979,288,4380_31023,Donnybrook,73089-00011-1,1,4380_7778208_2070210,4380_478 -4380_77979,287,4380_31024,Donnybrook,73087-00012-1,1,4380_7778208_2070210,4380_478 -4380_77979,291,4380_31025,Donnybrook,72410-00013-1,1,4380_7778208_2070203,4380_478 -4380_77979,289,4380_31026,Donnybrook,73085-00014-1,1,4380_7778208_2070210,4380_478 -4380_77979,292,4380_31027,Donnybrook,73084-00016-1,1,4380_7778208_2070210,4380_478 -4380_77979,293,4380_31028,Donnybrook,73090-00017-1,1,4380_7778208_2070210,4380_478 -4380_77979,290,4380_31029,Donnybrook,73092-00015-1,1,4380_7778208_2070210,4380_478 -4380_77979,294,4380_31030,Donnybrook,73088-00018-1,1,4380_7778208_2070210,4380_478 -4380_77979,295,4380_31031,Donnybrook,73086-00019-1,1,4380_7778208_2070210,4380_478 -4380_77979,296,4380_31032,Donnybrook,72411-00021-1,1,4380_7778208_2070203,4380_478 -4380_77979,297,4380_31034,Donnybrook,72303-00008-1,1,4380_7778208_2070201,4380_478 -4380_78144,285,4380_3104,Drop Off,51373-00009-1,1,4380_7778208_1011109,4380_34 -4380_77979,285,4380_31041,Donnybrook,73279-00009-1,1,4380_7778208_2070211,4380_478 -4380_77979,286,4380_31042,Donnybrook,73281-00010-1,1,4380_7778208_2070211,4380_478 -4380_77979,288,4380_31043,Donnybrook,73277-00011-1,1,4380_7778208_2070211,4380_478 -4380_77979,287,4380_31044,Donnybrook,73275-00012-1,1,4380_7778208_2070211,4380_478 -4380_77979,291,4380_31045,Donnybrook,72352-00013-1,1,4380_7778208_2070202,4380_478 -4380_77979,289,4380_31046,Donnybrook,73273-00014-1,1,4380_7778208_2070211,4380_478 -4380_77979,292,4380_31047,Donnybrook,73282-00016-1,1,4380_7778208_2070211,4380_478 -4380_77979,293,4380_31048,Donnybrook,73278-00017-1,1,4380_7778208_2070211,4380_478 -4380_77979,290,4380_31049,Donnybrook,73280-00015-1,1,4380_7778208_2070211,4380_478 -4380_78144,286,4380_3105,Drop Off,51371-00010-1,1,4380_7778208_1011109,4380_34 -4380_77979,294,4380_31050,Donnybrook,73276-00018-1,1,4380_7778208_2070211,4380_478 -4380_77979,295,4380_31051,Donnybrook,73274-00019-1,1,4380_7778208_2070211,4380_478 -4380_77979,296,4380_31052,Donnybrook,72353-00021-1,1,4380_7778208_2070202,4380_478 -4380_77979,297,4380_31054,Donnybrook,72467-00008-1,1,4380_7778208_2070204,4380_478 -4380_78144,288,4380_3106,Drop Off,51365-00011-1,1,4380_7778208_1011109,4380_34 -4380_77979,285,4380_31061,Donnybrook,73461-00009-1,1,4380_7778208_2070212,4380_478 -4380_77979,286,4380_31062,Donnybrook,73453-00010-1,1,4380_7778208_2070212,4380_478 -4380_77979,288,4380_31063,Donnybrook,73455-00011-1,1,4380_7778208_2070212,4380_478 -4380_77979,287,4380_31064,Donnybrook,73457-00012-1,1,4380_7778208_2070212,4380_478 -4380_77979,291,4380_31065,Donnybrook,72468-00013-1,1,4380_7778208_2070204,4380_481 -4380_77979,289,4380_31066,Donnybrook,73459-00014-1,1,4380_7778208_2070212,4380_478 -4380_77979,292,4380_31067,Donnybrook,73454-00016-1,1,4380_7778208_2070212,4380_478 -4380_77979,293,4380_31068,Donnybrook,73456-00017-1,1,4380_7778208_2070212,4380_478 -4380_77979,290,4380_31069,Donnybrook,73462-00015-1,1,4380_7778208_2070212,4380_478 -4380_78144,287,4380_3107,Drop Off,51367-00012-1,1,4380_7778208_1011109,4380_34 -4380_77979,294,4380_31070,Donnybrook,73458-00018-1,1,4380_7778208_2070212,4380_478 -4380_77979,295,4380_31071,Donnybrook,73460-00019-1,1,4380_7778208_2070212,4380_478 -4380_77979,296,4380_31072,Donnybrook,72469-00021-1,1,4380_7778208_2070204,4380_481 -4380_77979,297,4380_31074,Donnybrook,72415-00008-1,1,4380_7778208_2070203,4380_478 -4380_78144,289,4380_3108,Drop Off,51369-00014-1,1,4380_7778208_1011109,4380_34 -4380_77979,285,4380_31081,Donnybrook,72979-00009-1,1,4380_7778208_2070209,4380_478 -4380_77979,286,4380_31082,Donnybrook,72977-00010-1,1,4380_7778208_2070209,4380_478 -4380_77979,288,4380_31083,Donnybrook,72975-00011-1,1,4380_7778208_2070209,4380_478 -4380_77979,287,4380_31084,Donnybrook,72981-00012-1,1,4380_7778208_2070209,4380_478 -4380_77979,291,4380_31085,Donnybrook,72307-00013-1,1,4380_7778208_2070201,4380_481 -4380_77979,289,4380_31086,Donnybrook,72973-00014-1,1,4380_7778208_2070209,4380_478 -4380_77979,292,4380_31087,Donnybrook,72978-00016-1,1,4380_7778208_2070209,4380_478 -4380_77979,293,4380_31088,Donnybrook,72976-00017-1,1,4380_7778208_2070209,4380_478 -4380_77979,290,4380_31089,Donnybrook,72980-00015-1,1,4380_7778208_2070209,4380_478 -4380_78144,290,4380_3109,Drop Off,51374-00015-1,1,4380_7778208_1011109,4380_34 -4380_77979,294,4380_31090,Donnybrook,72982-00018-1,1,4380_7778208_2070209,4380_478 -4380_77979,295,4380_31091,Donnybrook,72974-00019-1,1,4380_7778208_2070209,4380_478 -4380_77979,296,4380_31092,Donnybrook,72308-00021-1,1,4380_7778208_2070201,4380_481 -4380_77979,297,4380_31094,Donnybrook,72309-00008-1,1,4380_7778208_2070201,4380_478 -4380_77946,287,4380_311,Drogheda,50367-00012-1,1,4380_7778208_1000914,4380_6 -4380_78144,292,4380_3110,Drop Off,51372-00016-1,1,4380_7778208_1011109,4380_34 -4380_77979,285,4380_31101,Donnybrook,73109-00009-1,1,4380_7778208_2070210,4380_478 -4380_77979,286,4380_31102,Donnybrook,73111-00010-1,1,4380_7778208_2070210,4380_478 -4380_77979,288,4380_31103,Donnybrook,73103-00011-1,1,4380_7778208_2070210,4380_478 -4380_77979,287,4380_31104,Donnybrook,73107-00012-1,1,4380_7778208_2070210,4380_478 -4380_77979,291,4380_31105,Donnybrook,72417-00013-1,1,4380_7778208_2070203,4380_481 -4380_77979,289,4380_31106,Donnybrook,73105-00014-1,1,4380_7778208_2070210,4380_478 -4380_77979,292,4380_31107,Donnybrook,73112-00016-1,1,4380_7778208_2070210,4380_478 -4380_77979,293,4380_31108,Donnybrook,73104-00017-1,1,4380_7778208_2070210,4380_478 -4380_77979,290,4380_31109,Donnybrook,73110-00015-1,1,4380_7778208_2070210,4380_478 -4380_78144,293,4380_3111,Drop Off,51366-00017-1,1,4380_7778208_1011109,4380_34 -4380_77979,294,4380_31110,Donnybrook,73108-00018-1,1,4380_7778208_2070210,4380_478 -4380_77979,295,4380_31111,Donnybrook,73106-00019-1,1,4380_7778208_2070210,4380_478 -4380_77979,296,4380_31112,Donnybrook,72418-00021-1,1,4380_7778208_2070203,4380_481 -4380_77979,297,4380_31114,Donnybrook,72473-00008-1,1,4380_7778208_2070204,4380_478 -4380_78144,294,4380_3112,Drop Off,51368-00018-1,1,4380_7778208_1011109,4380_34 -4380_77979,285,4380_31121,Donnybrook,73297-00009-1,1,4380_7778208_2070211,4380_480 -4380_77979,286,4380_31122,Donnybrook,73295-00010-1,1,4380_7778208_2070211,4380_480 -4380_77979,288,4380_31123,Donnybrook,73299-00011-1,1,4380_7778208_2070211,4380_480 -4380_77979,287,4380_31124,Donnybrook,73293-00012-1,1,4380_7778208_2070211,4380_480 -4380_77979,291,4380_31125,Donnybrook,72360-00013-1,1,4380_7778208_2070202,4380_482 -4380_77979,289,4380_31126,Donnybrook,73301-00014-1,1,4380_7778208_2070211,4380_480 -4380_77979,292,4380_31127,Donnybrook,73296-00016-1,1,4380_7778208_2070211,4380_480 -4380_77979,293,4380_31128,Donnybrook,73300-00017-1,1,4380_7778208_2070211,4380_480 -4380_77979,290,4380_31129,Donnybrook,73298-00015-1,1,4380_7778208_2070211,4380_480 -4380_78144,295,4380_3113,Drop Off,51370-00019-1,1,4380_7778208_1011109,4380_34 -4380_77979,294,4380_31130,Donnybrook,73294-00018-1,1,4380_7778208_2070211,4380_480 -4380_77979,295,4380_31131,Donnybrook,73302-00019-1,1,4380_7778208_2070211,4380_480 -4380_77979,296,4380_31132,Donnybrook,72361-00021-1,1,4380_7778208_2070202,4380_482 -4380_77979,297,4380_31134,Donnybrook,72419-00008-1,1,4380_7778208_2070203,4380_478 -4380_77979,285,4380_31141,Donnybrook,73475-00009-1,1,4380_7778208_2070212,4380_478 -4380_77979,286,4380_31142,Donnybrook,73479-00010-1,1,4380_7778208_2070212,4380_478 -4380_77979,288,4380_31143,Donnybrook,73481-00011-1,1,4380_7778208_2070212,4380_478 -4380_77979,287,4380_31144,Donnybrook,73477-00012-1,1,4380_7778208_2070212,4380_478 -4380_77979,291,4380_31145,Donnybrook,72475-00013-1,1,4380_7778208_2070204,4380_481 -4380_77979,289,4380_31146,Donnybrook,73473-00014-1,1,4380_7778208_2070212,4380_478 -4380_77979,292,4380_31147,Donnybrook,73480-00016-1,1,4380_7778208_2070212,4380_478 -4380_77979,293,4380_31148,Donnybrook,73482-00017-1,1,4380_7778208_2070212,4380_478 -4380_77979,290,4380_31149,Donnybrook,73476-00015-1,1,4380_7778208_2070212,4380_478 -4380_77979,294,4380_31150,Donnybrook,73478-00018-1,1,4380_7778208_2070212,4380_478 -4380_77979,295,4380_31151,Donnybrook,73474-00019-1,1,4380_7778208_2070212,4380_478 -4380_77979,296,4380_31152,Donnybrook,72476-00021-1,1,4380_7778208_2070204,4380_481 -4380_77979,297,4380_31154,Donnybrook,72313-00008-1,1,4380_7778208_2070201,4380_478 -4380_77979,285,4380_31161,Donnybrook,73001-00009-1,1,4380_7778208_2070209,4380_478 -4380_77979,286,4380_31162,Donnybrook,72995-00010-1,1,4380_7778208_2070209,4380_478 -4380_77979,288,4380_31163,Donnybrook,72993-00011-1,1,4380_7778208_2070209,4380_478 -4380_77979,287,4380_31164,Donnybrook,72997-00012-1,1,4380_7778208_2070209,4380_478 -4380_77979,291,4380_31165,Donnybrook,72314-00013-1,1,4380_7778208_2070201,4380_481 -4380_77979,289,4380_31166,Donnybrook,72999-00014-1,1,4380_7778208_2070209,4380_478 -4380_77979,292,4380_31167,Donnybrook,72996-00016-1,1,4380_7778208_2070209,4380_478 -4380_77979,293,4380_31168,Donnybrook,72994-00017-1,1,4380_7778208_2070209,4380_478 -4380_77979,290,4380_31169,Donnybrook,73002-00015-1,1,4380_7778208_2070209,4380_478 -4380_77979,294,4380_31170,Donnybrook,72998-00018-1,1,4380_7778208_2070209,4380_478 -4380_77979,295,4380_31171,Donnybrook,73000-00019-1,1,4380_7778208_2070209,4380_478 -4380_77979,296,4380_31172,Donnybrook,72315-00021-1,1,4380_7778208_2070201,4380_481 -4380_77979,297,4380_31174,Donnybrook,72477-00008-1,1,4380_7778208_2070204,4380_478 -4380_77979,285,4380_31181,Donnybrook,73125-00009-1,1,4380_7778208_2070210,4380_478 -4380_77979,286,4380_31182,Donnybrook,73129-00010-1,1,4380_7778208_2070210,4380_478 -4380_77979,288,4380_31183,Donnybrook,73131-00011-1,1,4380_7778208_2070210,4380_478 -4380_77979,287,4380_31184,Donnybrook,73127-00012-1,1,4380_7778208_2070210,4380_478 -4380_77979,291,4380_31185,Donnybrook,72423-00013-1,1,4380_7778208_2070203,4380_478 -4380_77979,289,4380_31186,Donnybrook,73123-00014-1,1,4380_7778208_2070210,4380_478 -4380_77979,292,4380_31187,Donnybrook,73130-00016-1,1,4380_7778208_2070210,4380_478 -4380_77979,293,4380_31188,Donnybrook,73132-00017-1,1,4380_7778208_2070210,4380_478 -4380_77979,290,4380_31189,Donnybrook,73126-00015-1,1,4380_7778208_2070210,4380_478 -4380_78144,285,4380_3119,Drop Off,51713-00009-1,1,4380_7778208_1011115,4380_34 -4380_77979,294,4380_31190,Donnybrook,73128-00018-1,1,4380_7778208_2070210,4380_478 -4380_77979,295,4380_31191,Donnybrook,73124-00019-1,1,4380_7778208_2070210,4380_478 -4380_77979,296,4380_31192,Donnybrook,72424-00021-1,1,4380_7778208_2070203,4380_478 -4380_77979,297,4380_31194,Donnybrook,72425-00008-1,1,4380_7778208_2070203,4380_478 -4380_77946,288,4380_312,Drogheda,50375-00011-1,1,4380_7778208_1000914,4380_6 -4380_78144,286,4380_3120,Drop Off,51715-00010-1,1,4380_7778208_1011115,4380_34 -4380_77979,285,4380_31201,Donnybrook,73317-00009-1,1,4380_7778208_2070211,4380_478 -4380_77979,286,4380_31202,Donnybrook,73315-00010-1,1,4380_7778208_2070211,4380_478 -4380_77979,288,4380_31203,Donnybrook,73321-00011-1,1,4380_7778208_2070211,4380_478 -4380_77979,287,4380_31204,Donnybrook,73319-00012-1,1,4380_7778208_2070211,4380_478 -4380_77979,291,4380_31205,Donnybrook,72367-00013-1,1,4380_7778208_2070202,4380_478 -4380_77979,289,4380_31206,Donnybrook,73313-00014-1,1,4380_7778208_2070211,4380_478 -4380_77979,292,4380_31207,Donnybrook,73316-00016-1,1,4380_7778208_2070211,4380_478 -4380_77979,293,4380_31208,Donnybrook,73322-00017-1,1,4380_7778208_2070211,4380_478 -4380_77979,290,4380_31209,Donnybrook,73318-00015-1,1,4380_7778208_2070211,4380_478 -4380_78144,288,4380_3121,Drop Off,51711-00011-1,1,4380_7778208_1011115,4380_34 -4380_77979,294,4380_31210,Donnybrook,73320-00018-1,1,4380_7778208_2070211,4380_478 -4380_77979,295,4380_31211,Donnybrook,73314-00019-1,1,4380_7778208_2070211,4380_478 -4380_77979,296,4380_31212,Donnybrook,72368-00021-1,1,4380_7778208_2070202,4380_478 -4380_77979,297,4380_31214,Donnybrook,72319-00008-1,1,4380_7778208_2070201,4380_478 -4380_78144,287,4380_3122,Drop Off,51707-00012-1,1,4380_7778208_1011115,4380_34 -4380_77979,285,4380_31221,Donnybrook,73493-00009-1,1,4380_7778208_2070212,4380_478 -4380_77979,286,4380_31222,Donnybrook,73495-00010-1,1,4380_7778208_2070212,4380_478 -4380_77979,288,4380_31223,Donnybrook,73499-00011-1,1,4380_7778208_2070212,4380_478 -4380_77979,287,4380_31224,Donnybrook,73497-00012-1,1,4380_7778208_2070212,4380_478 -4380_77979,291,4380_31225,Donnybrook,72481-00013-1,1,4380_7778208_2070204,4380_478 -4380_77979,289,4380_31226,Donnybrook,73501-00014-1,1,4380_7778208_2070212,4380_478 -4380_77979,292,4380_31227,Donnybrook,73496-00016-1,1,4380_7778208_2070212,4380_478 -4380_77979,293,4380_31228,Donnybrook,73500-00017-1,1,4380_7778208_2070212,4380_478 -4380_77979,290,4380_31229,Donnybrook,73494-00015-1,1,4380_7778208_2070212,4380_478 -4380_78144,289,4380_3123,Drop Off,51709-00014-1,1,4380_7778208_1011115,4380_34 -4380_77979,294,4380_31230,Donnybrook,73498-00018-1,1,4380_7778208_2070212,4380_478 -4380_77979,295,4380_31231,Donnybrook,73502-00019-1,1,4380_7778208_2070212,4380_478 -4380_77979,296,4380_31232,Donnybrook,72482-00021-1,1,4380_7778208_2070204,4380_478 -4380_78144,290,4380_3124,Drop Off,51714-00015-1,1,4380_7778208_1011115,4380_34 -4380_77979,297,4380_31240,Donnybrook,72483-00008-1,1,4380_7778208_2070204,4380_478 -4380_77979,285,4380_31241,St. Patrick Street,73021-00009-1,1,4380_7778208_2070209,4380_479 -4380_77979,286,4380_31242,St. Patrick Street,73013-00010-1,1,4380_7778208_2070209,4380_479 -4380_77979,288,4380_31243,St. Patrick Street,73017-00011-1,1,4380_7778208_2070209,4380_479 -4380_77979,287,4380_31244,St. Patrick Street,73015-00012-1,1,4380_7778208_2070209,4380_479 -4380_77979,291,4380_31245,St. Patrick Street,72320-00013-1,1,4380_7778208_2070201,4380_479 -4380_77979,289,4380_31246,St. Patrick Street,73019-00014-1,1,4380_7778208_2070209,4380_479 -4380_77979,292,4380_31247,St. Patrick Street,73014-00016-1,1,4380_7778208_2070209,4380_479 -4380_77979,293,4380_31248,St. Patrick Street,73018-00017-1,1,4380_7778208_2070209,4380_479 -4380_77979,290,4380_31249,St. Patrick Street,73022-00015-1,1,4380_7778208_2070209,4380_479 -4380_78144,292,4380_3125,Drop Off,51716-00016-1,1,4380_7778208_1011115,4380_34 -4380_77979,294,4380_31250,St. Patrick Street,73016-00018-1,1,4380_7778208_2070209,4380_479 -4380_77979,295,4380_31251,St. Patrick Street,73020-00019-1,1,4380_7778208_2070209,4380_479 -4380_77979,296,4380_31252,St. Patrick Street,72321-00021-1,1,4380_7778208_2070201,4380_479 -4380_78144,293,4380_3126,Drop Off,51712-00017-1,1,4380_7778208_1011115,4380_34 -4380_77979,297,4380_31260,Donnybrook,72429-00008-1,1,4380_7778208_2070203,4380_478 -4380_77979,285,4380_31261,Donnybrook,73143-00009-1,1,4380_7778208_2070210,4380_478 -4380_77979,286,4380_31262,Donnybrook,73151-00010-1,1,4380_7778208_2070210,4380_478 -4380_77979,288,4380_31263,Donnybrook,73147-00011-1,1,4380_7778208_2070210,4380_478 -4380_77979,287,4380_31264,Donnybrook,73145-00012-1,1,4380_7778208_2070210,4380_478 -4380_77979,291,4380_31265,Donnybrook,72430-00013-1,1,4380_7778208_2070203,4380_478 -4380_77979,289,4380_31266,Donnybrook,73149-00014-1,1,4380_7778208_2070210,4380_478 -4380_77979,292,4380_31267,Donnybrook,73152-00016-1,1,4380_7778208_2070210,4380_478 -4380_77979,293,4380_31268,Donnybrook,73148-00017-1,1,4380_7778208_2070210,4380_478 -4380_77979,290,4380_31269,Donnybrook,73144-00015-1,1,4380_7778208_2070210,4380_478 -4380_78144,294,4380_3127,Drop Off,51708-00018-1,1,4380_7778208_1011115,4380_34 -4380_77979,294,4380_31270,Donnybrook,73146-00018-1,1,4380_7778208_2070210,4380_478 -4380_77979,295,4380_31271,Donnybrook,73150-00019-1,1,4380_7778208_2070210,4380_478 -4380_77979,296,4380_31272,Donnybrook,72431-00021-1,1,4380_7778208_2070203,4380_478 -4380_78144,295,4380_3128,Drop Off,51710-00019-1,1,4380_7778208_1011115,4380_34 -4380_77979,297,4380_31280,Donnybrook,72323-00008-1,1,4380_7778208_2070201,4380_478 -4380_77979,285,4380_31281,Donnybrook,73333-00009-1,1,4380_7778208_2070211,4380_478 -4380_77979,286,4380_31282,Donnybrook,73335-00010-1,1,4380_7778208_2070211,4380_478 -4380_77979,288,4380_31283,Donnybrook,73341-00011-1,1,4380_7778208_2070211,4380_478 -4380_77979,287,4380_31284,Donnybrook,73339-00012-1,1,4380_7778208_2070211,4380_478 -4380_77979,291,4380_31285,Donnybrook,72375-00013-1,1,4380_7778208_2070202,4380_478 -4380_77979,289,4380_31286,Donnybrook,73337-00014-1,1,4380_7778208_2070211,4380_478 -4380_77979,292,4380_31287,Donnybrook,73336-00016-1,1,4380_7778208_2070211,4380_478 -4380_77979,293,4380_31288,Donnybrook,73342-00017-1,1,4380_7778208_2070211,4380_478 -4380_77979,290,4380_31289,Donnybrook,73334-00015-1,1,4380_7778208_2070211,4380_478 -4380_77979,294,4380_31290,Donnybrook,73340-00018-1,1,4380_7778208_2070211,4380_478 -4380_77979,295,4380_31291,Donnybrook,73338-00019-1,1,4380_7778208_2070211,4380_478 -4380_77979,296,4380_31292,Donnybrook,72376-00021-1,1,4380_7778208_2070202,4380_478 -4380_77946,289,4380_313,Drogheda,50369-00014-1,1,4380_7778208_1000914,4380_6 -4380_77979,297,4380_31300,Donnybrook,72487-00008-1,1,4380_7778208_2070204,4380_478 -4380_77979,285,4380_31301,Donnybrook,73515-00009-1,1,4380_7778208_2070212,4380_478 -4380_77979,286,4380_31302,Donnybrook,73513-00010-1,1,4380_7778208_2070212,4380_478 -4380_77979,288,4380_31303,Donnybrook,73521-00011-1,1,4380_7778208_2070212,4380_478 -4380_77979,287,4380_31304,Donnybrook,73519-00012-1,1,4380_7778208_2070212,4380_478 -4380_77979,291,4380_31305,Donnybrook,72488-00013-1,1,4380_7778208_2070204,4380_478 -4380_77979,289,4380_31306,Donnybrook,73517-00014-1,1,4380_7778208_2070212,4380_478 -4380_77979,292,4380_31307,Donnybrook,73514-00016-1,1,4380_7778208_2070212,4380_478 -4380_77979,293,4380_31308,Donnybrook,73522-00017-1,1,4380_7778208_2070212,4380_478 -4380_77979,290,4380_31309,Donnybrook,73516-00015-1,1,4380_7778208_2070212,4380_478 -4380_77979,294,4380_31310,Donnybrook,73520-00018-1,1,4380_7778208_2070212,4380_478 -4380_77979,295,4380_31311,Donnybrook,73518-00019-1,1,4380_7778208_2070212,4380_478 -4380_77979,296,4380_31312,Donnybrook,72489-00021-1,1,4380_7778208_2070204,4380_478 -4380_77979,297,4380_31320,Donnybrook,72437-00008-1,1,4380_7778208_2070203,4380_478 -4380_77979,285,4380_31321,Donnybrook,73165-00009-1,1,4380_7778208_2070210,4380_478 -4380_77979,286,4380_31322,Donnybrook,73169-00010-1,1,4380_7778208_2070210,4380_478 -4380_77979,288,4380_31323,Donnybrook,73163-00011-1,1,4380_7778208_2070210,4380_478 -4380_77979,287,4380_31324,Donnybrook,73171-00012-1,1,4380_7778208_2070210,4380_478 -4380_77979,291,4380_31325,Donnybrook,72435-00013-1,1,4380_7778208_2070203,4380_478 -4380_77979,289,4380_31326,Donnybrook,73167-00014-1,1,4380_7778208_2070210,4380_478 -4380_77979,292,4380_31327,Donnybrook,73170-00016-1,1,4380_7778208_2070210,4380_478 -4380_77979,293,4380_31328,Donnybrook,73164-00017-1,1,4380_7778208_2070210,4380_478 -4380_77979,290,4380_31329,Donnybrook,73166-00015-1,1,4380_7778208_2070210,4380_478 -4380_77979,294,4380_31330,Donnybrook,73172-00018-1,1,4380_7778208_2070210,4380_478 -4380_77979,295,4380_31331,Donnybrook,73168-00019-1,1,4380_7778208_2070210,4380_478 -4380_77979,296,4380_31332,Donnybrook,72436-00021-1,1,4380_7778208_2070203,4380_478 -4380_78144,285,4380_3134,Drop Off,51733-00009-1,1,4380_7778208_1011116,4380_34 -4380_77979,297,4380_31340,Donnybrook,72325-00008-1,1,4380_7778208_2070201,4380_478 -4380_77979,285,4380_31341,Donnybrook,73357-00009-1,1,4380_7778208_2070211,4380_478 -4380_77979,286,4380_31342,Donnybrook,73361-00010-1,1,4380_7778208_2070211,4380_478 -4380_77979,288,4380_31343,Donnybrook,73359-00011-1,1,4380_7778208_2070211,4380_478 -4380_77979,287,4380_31344,Donnybrook,73355-00012-1,1,4380_7778208_2070211,4380_478 -4380_77979,291,4380_31345,Donnybrook,72382-00013-1,1,4380_7778208_2070202,4380_478 -4380_77979,289,4380_31346,Donnybrook,73353-00014-1,1,4380_7778208_2070211,4380_478 -4380_77979,292,4380_31347,Donnybrook,73362-00016-1,1,4380_7778208_2070211,4380_478 -4380_77979,293,4380_31348,Donnybrook,73360-00017-1,1,4380_7778208_2070211,4380_478 -4380_77979,290,4380_31349,Donnybrook,73358-00015-1,1,4380_7778208_2070211,4380_478 -4380_78144,286,4380_3135,Drop Off,51735-00010-1,1,4380_7778208_1011116,4380_34 -4380_77979,294,4380_31350,Donnybrook,73356-00018-1,1,4380_7778208_2070211,4380_478 -4380_77979,295,4380_31351,Donnybrook,73354-00019-1,1,4380_7778208_2070211,4380_478 -4380_77979,296,4380_31352,Donnybrook,72383-00021-1,1,4380_7778208_2070202,4380_478 -4380_78144,288,4380_3136,Drop Off,51727-00011-1,1,4380_7778208_1011116,4380_34 -4380_77979,297,4380_31360,Donnybrook,72493-00008-1,1,4380_7778208_2070204,4380_478 -4380_77979,285,4380_31361,Donnybrook,73533-00009-1,1,4380_7778208_2070212,4380_478 -4380_77979,286,4380_31362,Donnybrook,73541-00010-1,1,4380_7778208_2070212,4380_478 -4380_77979,288,4380_31363,Donnybrook,73537-00011-1,1,4380_7778208_2070212,4380_478 -4380_77979,287,4380_31364,Donnybrook,73535-00012-1,1,4380_7778208_2070212,4380_478 -4380_77979,291,4380_31365,Donnybrook,72494-00013-1,1,4380_7778208_2070204,4380_478 -4380_77979,289,4380_31366,Donnybrook,73539-00014-1,1,4380_7778208_2070212,4380_478 -4380_77979,292,4380_31367,Donnybrook,73542-00016-1,1,4380_7778208_2070212,4380_478 -4380_77979,293,4380_31368,Donnybrook,73538-00017-1,1,4380_7778208_2070212,4380_478 -4380_77979,290,4380_31369,Donnybrook,73534-00015-1,1,4380_7778208_2070212,4380_478 -4380_78144,287,4380_3137,Drop Off,51731-00012-1,1,4380_7778208_1011116,4380_34 -4380_77979,294,4380_31370,Donnybrook,73536-00018-1,1,4380_7778208_2070212,4380_478 -4380_77979,295,4380_31371,Donnybrook,73540-00019-1,1,4380_7778208_2070212,4380_478 -4380_77979,296,4380_31372,Donnybrook,72495-00021-1,1,4380_7778208_2070204,4380_478 -4380_78144,289,4380_3138,Drop Off,51729-00014-1,1,4380_7778208_1011116,4380_34 -4380_77979,297,4380_31380,Donnybrook,72443-00008-1,1,4380_7778208_2070203,4380_478 -4380_77979,285,4380_31381,Donnybrook,73187-00009-1,1,4380_7778208_2070210,4380_478 -4380_77979,286,4380_31382,Donnybrook,73189-00010-1,1,4380_7778208_2070210,4380_478 -4380_77979,288,4380_31383,Donnybrook,73183-00011-1,1,4380_7778208_2070210,4380_478 -4380_77979,287,4380_31384,Donnybrook,73191-00012-1,1,4380_7778208_2070210,4380_478 -4380_77979,291,4380_31385,Donnybrook,72441-00013-1,1,4380_7778208_2070203,4380_478 -4380_77979,289,4380_31386,Donnybrook,73185-00014-1,1,4380_7778208_2070210,4380_478 -4380_77979,292,4380_31387,Donnybrook,73190-00016-1,1,4380_7778208_2070210,4380_478 -4380_77979,293,4380_31388,Donnybrook,73184-00017-1,1,4380_7778208_2070210,4380_478 -4380_77979,290,4380_31389,Donnybrook,73188-00015-1,1,4380_7778208_2070210,4380_478 -4380_78144,290,4380_3139,Drop Off,51734-00015-1,1,4380_7778208_1011116,4380_34 -4380_77979,294,4380_31390,Donnybrook,73192-00018-1,1,4380_7778208_2070210,4380_478 -4380_77979,295,4380_31391,Donnybrook,73186-00019-1,1,4380_7778208_2070210,4380_478 -4380_77979,296,4380_31392,Donnybrook,72442-00021-1,1,4380_7778208_2070203,4380_478 -4380_77946,290,4380_314,Drogheda,50374-00015-1,1,4380_7778208_1000914,4380_6 -4380_78144,292,4380_3140,Drop Off,51736-00016-1,1,4380_7778208_1011116,4380_34 -4380_77979,297,4380_31400,Donnybrook,72327-00008-1,1,4380_7778208_2070201,4380_478 -4380_77979,285,4380_31401,Donnybrook,73377-00009-1,1,4380_7778208_2070211,4380_478 -4380_77979,286,4380_31402,Donnybrook,73381-00010-1,1,4380_7778208_2070211,4380_478 -4380_77979,288,4380_31403,Donnybrook,73373-00011-1,1,4380_7778208_2070211,4380_478 -4380_77979,287,4380_31404,Donnybrook,73379-00012-1,1,4380_7778208_2070211,4380_478 -4380_77979,291,4380_31405,Donnybrook,72389-00013-1,1,4380_7778208_2070202,4380_478 -4380_77979,289,4380_31406,Donnybrook,73375-00014-1,1,4380_7778208_2070211,4380_478 -4380_77979,292,4380_31407,Donnybrook,73382-00016-1,1,4380_7778208_2070211,4380_478 -4380_77979,293,4380_31408,Donnybrook,73374-00017-1,1,4380_7778208_2070211,4380_478 -4380_77979,290,4380_31409,Donnybrook,73378-00015-1,1,4380_7778208_2070211,4380_478 -4380_78144,293,4380_3141,Drop Off,51728-00017-1,1,4380_7778208_1011116,4380_34 -4380_77979,294,4380_31410,Donnybrook,73380-00018-1,1,4380_7778208_2070211,4380_478 -4380_77979,295,4380_31411,Donnybrook,73376-00019-1,1,4380_7778208_2070211,4380_478 -4380_77979,296,4380_31412,Donnybrook,72390-00021-1,1,4380_7778208_2070202,4380_478 -4380_78126,285,4380_31419,Glenthorn,72513-00009-1,0,4380_7778208_2070206,4380_483 -4380_78144,294,4380_3142,Drop Off,51732-00018-1,1,4380_7778208_1011116,4380_34 -4380_78126,286,4380_31420,Glenthorn,72517-00010-1,0,4380_7778208_2070206,4380_483 -4380_78126,288,4380_31421,Glenthorn,72521-00011-1,0,4380_7778208_2070206,4380_483 -4380_78126,287,4380_31422,Glenthorn,72519-00012-1,0,4380_7778208_2070206,4380_483 -4380_78126,291,4380_31423,Glenthorn,72515-00013-1,0,4380_7778208_2070206,4380_484 -4380_78126,289,4380_31424,Glenthorn,72511-00014-1,0,4380_7778208_2070206,4380_483 -4380_78126,292,4380_31425,Glenthorn,72518-00016-1,0,4380_7778208_2070206,4380_483 -4380_78126,293,4380_31426,Glenthorn,72522-00017-1,0,4380_7778208_2070206,4380_483 -4380_78126,290,4380_31427,Glenthorn,72514-00015-1,0,4380_7778208_2070206,4380_483 -4380_78126,294,4380_31428,Glenthorn,72520-00018-1,0,4380_7778208_2070206,4380_483 -4380_78126,295,4380_31429,Glenthorn,72512-00019-1,0,4380_7778208_2070206,4380_483 -4380_78144,295,4380_3143,Drop Off,51730-00019-1,1,4380_7778208_1011116,4380_34 -4380_78126,296,4380_31430,Glenthorn,72516-00021-1,0,4380_7778208_2070206,4380_484 -4380_78126,285,4380_31437,Glenthorn,72541-00009-1,0,4380_7778208_2070206,4380_483 -4380_78126,286,4380_31438,Glenthorn,72539-00010-1,0,4380_7778208_2070206,4380_483 -4380_78126,288,4380_31439,Glenthorn,72535-00011-1,0,4380_7778208_2070206,4380_483 -4380_78126,287,4380_31440,Glenthorn,72543-00012-1,0,4380_7778208_2070206,4380_483 -4380_78126,291,4380_31441,Glenthorn,72545-00013-1,0,4380_7778208_2070206,4380_484 -4380_78126,289,4380_31442,Glenthorn,72537-00014-1,0,4380_7778208_2070206,4380_483 -4380_78126,292,4380_31443,Glenthorn,72540-00016-1,0,4380_7778208_2070206,4380_483 -4380_78126,293,4380_31444,Glenthorn,72536-00017-1,0,4380_7778208_2070206,4380_483 -4380_78126,290,4380_31445,Glenthorn,72542-00015-1,0,4380_7778208_2070206,4380_483 -4380_78126,294,4380_31446,Glenthorn,72544-00018-1,0,4380_7778208_2070206,4380_483 -4380_78126,295,4380_31447,Glenthorn,72538-00019-1,0,4380_7778208_2070206,4380_483 -4380_78126,296,4380_31448,Glenthorn,72546-00021-1,0,4380_7778208_2070206,4380_484 -4380_78126,297,4380_31456,Glenthorn,72335-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31457,Glenthorn,72563-00009-1,0,4380_7778208_2070206,4380_484 -4380_78126,286,4380_31458,Glenthorn,72559-00010-1,0,4380_7778208_2070206,4380_484 -4380_78126,288,4380_31459,Glenthorn,72569-00011-1,0,4380_7778208_2070206,4380_484 -4380_78126,287,4380_31460,Glenthorn,72561-00012-1,0,4380_7778208_2070206,4380_484 -4380_78126,291,4380_31461,Glenthorn,72567-00013-1,0,4380_7778208_2070206,4380_485 -4380_78126,289,4380_31462,Glenthorn,72565-00014-1,0,4380_7778208_2070206,4380_484 -4380_78126,292,4380_31463,Glenthorn,72560-00016-1,0,4380_7778208_2070206,4380_484 -4380_78126,293,4380_31464,Glenthorn,72570-00017-1,0,4380_7778208_2070206,4380_484 -4380_78126,290,4380_31465,Glenthorn,72564-00015-1,0,4380_7778208_2070206,4380_484 -4380_78126,294,4380_31466,Glenthorn,72562-00018-1,0,4380_7778208_2070206,4380_484 -4380_78126,295,4380_31467,Glenthorn,72566-00019-1,0,4380_7778208_2070206,4380_484 -4380_78126,296,4380_31468,Glenthorn,72568-00021-1,0,4380_7778208_2070206,4380_485 -4380_78126,297,4380_31476,Glenthorn,72339-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31477,Glenthorn,72587-00009-1,0,4380_7778208_2070206,4380_484 -4380_78126,286,4380_31478,Glenthorn,72593-00010-1,0,4380_7778208_2070206,4380_484 -4380_78126,288,4380_31479,Glenthorn,72583-00011-1,0,4380_7778208_2070206,4380_484 -4380_78126,287,4380_31480,Glenthorn,72585-00012-1,0,4380_7778208_2070206,4380_484 -4380_78126,291,4380_31481,Glenthorn,72591-00013-1,0,4380_7778208_2070206,4380_485 -4380_78126,289,4380_31482,Glenthorn,72589-00014-1,0,4380_7778208_2070206,4380_484 -4380_78126,292,4380_31483,Glenthorn,72594-00016-1,0,4380_7778208_2070206,4380_484 -4380_78126,293,4380_31484,Glenthorn,72584-00017-1,0,4380_7778208_2070206,4380_484 -4380_78126,290,4380_31485,Glenthorn,72588-00015-1,0,4380_7778208_2070206,4380_484 -4380_78126,294,4380_31486,Glenthorn,72586-00018-1,0,4380_7778208_2070206,4380_484 -4380_78126,295,4380_31487,Glenthorn,72590-00019-1,0,4380_7778208_2070206,4380_484 -4380_78126,296,4380_31488,Glenthorn,72592-00021-1,0,4380_7778208_2070206,4380_485 -4380_78144,285,4380_3149,Drop Off,51753-00009-1,1,4380_7778208_1011117,4380_34 -4380_78126,297,4380_31496,Glenthorn,72343-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31497,Glenthorn,72607-00009-1,0,4380_7778208_2070206,4380_484 -4380_78126,286,4380_31498,Glenthorn,72617-00010-1,0,4380_7778208_2070206,4380_484 -4380_78126,288,4380_31499,Glenthorn,72609-00011-1,0,4380_7778208_2070206,4380_484 -4380_77946,291,4380_315,Drogheda,50253-00013-1,1,4380_7778208_1000911,4380_8 -4380_78144,286,4380_3150,Drop Off,51747-00010-1,1,4380_7778208_1011117,4380_34 -4380_78126,287,4380_31500,Glenthorn,72611-00012-1,0,4380_7778208_2070206,4380_484 -4380_78126,291,4380_31501,Glenthorn,72615-00013-1,0,4380_7778208_2070206,4380_485 -4380_78126,289,4380_31502,Glenthorn,72613-00014-1,0,4380_7778208_2070206,4380_484 -4380_78126,292,4380_31503,Glenthorn,72618-00016-1,0,4380_7778208_2070206,4380_484 -4380_78126,293,4380_31504,Glenthorn,72610-00017-1,0,4380_7778208_2070206,4380_484 -4380_78126,290,4380_31505,Glenthorn,72608-00015-1,0,4380_7778208_2070206,4380_484 -4380_78126,294,4380_31506,Glenthorn,72612-00018-1,0,4380_7778208_2070206,4380_484 -4380_78126,295,4380_31507,Glenthorn,72614-00019-1,0,4380_7778208_2070206,4380_484 -4380_78126,296,4380_31508,Glenthorn,72616-00021-1,0,4380_7778208_2070206,4380_485 -4380_78144,288,4380_3151,Drop Off,51751-00011-1,1,4380_7778208_1011117,4380_34 -4380_78126,297,4380_31516,Glenthorn,72347-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31517,Glenthorn,72631-00009-1,0,4380_7778208_2070206,4380_484 -4380_78126,286,4380_31518,Glenthorn,72641-00010-1,0,4380_7778208_2070206,4380_484 -4380_78126,288,4380_31519,Glenthorn,72639-00011-1,0,4380_7778208_2070206,4380_484 -4380_78144,287,4380_3152,Drop Off,51755-00012-1,1,4380_7778208_1011117,4380_34 -4380_78126,287,4380_31520,Glenthorn,72635-00012-1,0,4380_7778208_2070206,4380_484 -4380_78126,291,4380_31521,Glenthorn,72633-00013-1,0,4380_7778208_2070206,4380_485 -4380_78126,289,4380_31522,Glenthorn,72637-00014-1,0,4380_7778208_2070206,4380_484 -4380_78126,292,4380_31523,Glenthorn,72642-00016-1,0,4380_7778208_2070206,4380_484 -4380_78126,293,4380_31524,Glenthorn,72640-00017-1,0,4380_7778208_2070206,4380_484 -4380_78126,290,4380_31525,Glenthorn,72632-00015-1,0,4380_7778208_2070206,4380_484 -4380_78126,294,4380_31526,Glenthorn,72636-00018-1,0,4380_7778208_2070206,4380_484 -4380_78126,295,4380_31527,Glenthorn,72638-00019-1,0,4380_7778208_2070206,4380_484 -4380_78126,296,4380_31528,Glenthorn,72634-00021-1,0,4380_7778208_2070206,4380_485 -4380_78144,289,4380_3153,Drop Off,51749-00014-1,1,4380_7778208_1011117,4380_34 -4380_78126,297,4380_31536,Glenthorn,72351-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31537,Glenthorn,72655-00009-1,0,4380_7778208_2070206,4380_484 -4380_78126,286,4380_31538,Glenthorn,72657-00010-1,0,4380_7778208_2070206,4380_484 -4380_78126,288,4380_31539,Glenthorn,72661-00011-1,0,4380_7778208_2070206,4380_484 -4380_78144,290,4380_3154,Drop Off,51754-00015-1,1,4380_7778208_1011117,4380_34 -4380_78126,287,4380_31540,Glenthorn,72659-00012-1,0,4380_7778208_2070206,4380_484 -4380_78126,291,4380_31541,Glenthorn,72665-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31542,Glenthorn,72663-00014-1,0,4380_7778208_2070206,4380_484 -4380_78126,292,4380_31543,Glenthorn,72658-00016-1,0,4380_7778208_2070206,4380_484 -4380_78126,293,4380_31544,Glenthorn,72662-00017-1,0,4380_7778208_2070206,4380_484 -4380_78126,290,4380_31545,Glenthorn,72656-00015-1,0,4380_7778208_2070206,4380_484 -4380_78126,294,4380_31546,Glenthorn,72660-00018-1,0,4380_7778208_2070206,4380_484 -4380_78126,295,4380_31547,Glenthorn,72664-00019-1,0,4380_7778208_2070206,4380_484 -4380_78126,296,4380_31548,Glenthorn,72666-00021-1,0,4380_7778208_2070206,4380_483 -4380_78144,292,4380_3155,Drop Off,51748-00016-1,1,4380_7778208_1011117,4380_34 -4380_78126,297,4380_31556,Glenthorn,72355-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31557,Glenthorn,72687-00009-1,0,4380_7778208_2070206,4380_484 -4380_78126,286,4380_31558,Glenthorn,72685-00010-1,0,4380_7778208_2070206,4380_484 -4380_78126,288,4380_31559,Glenthorn,72681-00011-1,0,4380_7778208_2070206,4380_484 -4380_78144,293,4380_3156,Drop Off,51752-00017-1,1,4380_7778208_1011117,4380_34 -4380_78126,287,4380_31560,Glenthorn,72679-00012-1,0,4380_7778208_2070206,4380_484 -4380_78126,291,4380_31561,Glenthorn,72683-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31562,Glenthorn,72689-00014-1,0,4380_7778208_2070206,4380_484 -4380_78126,292,4380_31563,Glenthorn,72686-00016-1,0,4380_7778208_2070206,4380_484 -4380_78126,293,4380_31564,Glenthorn,72682-00017-1,0,4380_7778208_2070206,4380_484 -4380_78126,290,4380_31565,Glenthorn,72688-00015-1,0,4380_7778208_2070206,4380_484 -4380_78126,294,4380_31566,Glenthorn,72680-00018-1,0,4380_7778208_2070206,4380_484 -4380_78126,295,4380_31567,Glenthorn,72690-00019-1,0,4380_7778208_2070206,4380_484 -4380_78126,296,4380_31568,Glenthorn,72684-00021-1,0,4380_7778208_2070206,4380_483 -4380_78144,294,4380_3157,Drop Off,51756-00018-1,1,4380_7778208_1011117,4380_34 -4380_78126,297,4380_31576,Glenthorn,72359-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31577,Glenthorn,72711-00009-1,0,4380_7778208_2070206,4380_484 -4380_78126,286,4380_31578,Glenthorn,72709-00010-1,0,4380_7778208_2070206,4380_484 -4380_78126,288,4380_31579,Glenthorn,72707-00011-1,0,4380_7778208_2070206,4380_484 -4380_78144,295,4380_3158,Drop Off,51750-00019-1,1,4380_7778208_1011117,4380_34 -4380_78126,287,4380_31580,Glenthorn,72713-00012-1,0,4380_7778208_2070206,4380_484 -4380_78126,291,4380_31581,Glenthorn,72705-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31582,Glenthorn,72703-00014-1,0,4380_7778208_2070206,4380_484 -4380_78126,292,4380_31583,Glenthorn,72710-00016-1,0,4380_7778208_2070206,4380_484 -4380_78126,293,4380_31584,Glenthorn,72708-00017-1,0,4380_7778208_2070206,4380_484 -4380_78126,290,4380_31585,Glenthorn,72712-00015-1,0,4380_7778208_2070206,4380_484 -4380_78126,294,4380_31586,Glenthorn,72714-00018-1,0,4380_7778208_2070206,4380_484 -4380_78126,295,4380_31587,Glenthorn,72704-00019-1,0,4380_7778208_2070206,4380_484 -4380_78126,296,4380_31588,Glenthorn,72706-00021-1,0,4380_7778208_2070206,4380_483 -4380_77948,285,4380_3159,Ratoath,1182-00009-1,0,4380_7778208_1030101,4380_39 -4380_78126,297,4380_31596,Glenthorn,72365-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31597,Glenthorn,72727-00009-1,0,4380_7778208_2070206,4380_484 -4380_78126,286,4380_31598,Glenthorn,72733-00010-1,0,4380_7778208_2070206,4380_484 -4380_78126,288,4380_31599,Glenthorn,72737-00011-1,0,4380_7778208_2070206,4380_484 -4380_77946,292,4380_316,Drogheda,50372-00016-1,1,4380_7778208_1000914,4380_6 -4380_77948,286,4380_3160,Ratoath,1192-00010-1,0,4380_7778208_1030101,4380_39 -4380_78126,287,4380_31600,Glenthorn,72731-00012-1,0,4380_7778208_2070206,4380_484 -4380_78126,291,4380_31601,Glenthorn,72735-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31602,Glenthorn,72729-00014-1,0,4380_7778208_2070206,4380_484 -4380_78126,292,4380_31603,Glenthorn,72734-00016-1,0,4380_7778208_2070206,4380_484 -4380_78126,293,4380_31604,Glenthorn,72738-00017-1,0,4380_7778208_2070206,4380_484 -4380_78126,290,4380_31605,Glenthorn,72728-00015-1,0,4380_7778208_2070206,4380_484 -4380_78126,294,4380_31606,Glenthorn,72732-00018-1,0,4380_7778208_2070206,4380_484 -4380_78126,295,4380_31607,Glenthorn,72730-00019-1,0,4380_7778208_2070206,4380_484 -4380_78126,296,4380_31608,Glenthorn,72736-00021-1,0,4380_7778208_2070206,4380_483 -4380_77948,288,4380_3161,Ratoath,1202-00011-1,0,4380_7778208_1030101,4380_39 -4380_78126,297,4380_31616,Glenthorn,72369-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31617,Glenthorn,72755-00009-1,0,4380_7778208_2070206,4380_484 -4380_78126,286,4380_31618,Glenthorn,72751-00010-1,0,4380_7778208_2070206,4380_484 -4380_78126,288,4380_31619,Glenthorn,72759-00011-1,0,4380_7778208_2070206,4380_484 -4380_77948,287,4380_3162,Ratoath,1212-00012-1,0,4380_7778208_1030101,4380_39 -4380_78126,287,4380_31620,Glenthorn,72757-00012-1,0,4380_7778208_2070206,4380_484 -4380_78126,291,4380_31621,Glenthorn,72753-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31622,Glenthorn,72761-00014-1,0,4380_7778208_2070206,4380_484 -4380_78126,292,4380_31623,Glenthorn,72752-00016-1,0,4380_7778208_2070206,4380_484 -4380_78126,293,4380_31624,Glenthorn,72760-00017-1,0,4380_7778208_2070206,4380_484 -4380_78126,290,4380_31625,Glenthorn,72756-00015-1,0,4380_7778208_2070206,4380_484 -4380_78126,294,4380_31626,Glenthorn,72758-00018-1,0,4380_7778208_2070206,4380_484 -4380_78126,295,4380_31627,Glenthorn,72762-00019-1,0,4380_7778208_2070206,4380_484 -4380_78126,296,4380_31628,Glenthorn,72754-00021-1,0,4380_7778208_2070206,4380_483 -4380_77948,289,4380_3163,Ratoath,1172-00014-1,0,4380_7778208_1030101,4380_39 -4380_78126,297,4380_31636,Glenthorn,72373-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31637,Glenthorn,72783-00009-1,0,4380_7778208_2070206,4380_483 -4380_78126,286,4380_31638,Glenthorn,72775-00010-1,0,4380_7778208_2070206,4380_483 -4380_78126,288,4380_31639,Glenthorn,72785-00011-1,0,4380_7778208_2070206,4380_483 -4380_77948,290,4380_3164,Ratoath,51767-00015-1,0,4380_7778208_1030101,4380_39 -4380_78126,287,4380_31640,Glenthorn,72779-00012-1,0,4380_7778208_2070206,4380_483 -4380_78126,291,4380_31641,Glenthorn,72781-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31642,Glenthorn,72777-00014-1,0,4380_7778208_2070206,4380_483 -4380_78126,292,4380_31643,Glenthorn,72776-00016-1,0,4380_7778208_2070206,4380_483 -4380_78126,293,4380_31644,Glenthorn,72786-00017-1,0,4380_7778208_2070206,4380_483 -4380_78126,290,4380_31645,Glenthorn,72784-00015-1,0,4380_7778208_2070206,4380_483 -4380_78126,294,4380_31646,Glenthorn,72780-00018-1,0,4380_7778208_2070206,4380_483 -4380_78126,295,4380_31647,Glenthorn,72778-00019-1,0,4380_7778208_2070206,4380_483 -4380_78126,296,4380_31648,Glenthorn,72782-00021-1,0,4380_7778208_2070206,4380_483 -4380_77948,292,4380_3165,Ratoath,51770-00016-1,0,4380_7778208_1030101,4380_39 -4380_78126,297,4380_31656,Glenthorn,72377-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31657,Glenthorn,72801-00009-1,0,4380_7778208_2070206,4380_483 -4380_78126,286,4380_31658,Glenthorn,72799-00010-1,0,4380_7778208_2070206,4380_483 -4380_78126,288,4380_31659,Glenthorn,72805-00011-1,0,4380_7778208_2070206,4380_483 -4380_77948,293,4380_3166,Ratoath,51771-00017-1,0,4380_7778208_1030101,4380_39 -4380_78126,287,4380_31660,Glenthorn,72807-00012-1,0,4380_7778208_2070206,4380_483 -4380_78126,291,4380_31661,Glenthorn,72803-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31662,Glenthorn,72809-00014-1,0,4380_7778208_2070206,4380_483 -4380_78126,292,4380_31663,Glenthorn,72800-00016-1,0,4380_7778208_2070206,4380_483 -4380_78126,293,4380_31664,Glenthorn,72806-00017-1,0,4380_7778208_2070206,4380_483 -4380_78126,290,4380_31665,Glenthorn,72802-00015-1,0,4380_7778208_2070206,4380_483 -4380_78126,294,4380_31666,Glenthorn,72808-00018-1,0,4380_7778208_2070206,4380_483 -4380_78126,295,4380_31667,Glenthorn,72810-00019-1,0,4380_7778208_2070206,4380_483 -4380_78126,296,4380_31668,Glenthorn,72804-00021-1,0,4380_7778208_2070206,4380_483 -4380_77948,294,4380_3167,Ratoath,51769-00018-1,0,4380_7778208_1030101,4380_39 -4380_78126,297,4380_31676,Glenthorn,72381-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31677,Glenthorn,72827-00009-1,0,4380_7778208_2070206,4380_483 -4380_78126,286,4380_31678,Glenthorn,72831-00010-1,0,4380_7778208_2070206,4380_483 -4380_78126,288,4380_31679,Glenthorn,72825-00011-1,0,4380_7778208_2070206,4380_483 -4380_77948,295,4380_3168,Ratoath,51768-00019-1,0,4380_7778208_1030101,4380_39 -4380_78126,287,4380_31680,Glenthorn,72833-00012-1,0,4380_7778208_2070206,4380_483 -4380_78126,291,4380_31681,Glenthorn,72829-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31682,Glenthorn,72823-00014-1,0,4380_7778208_2070206,4380_483 -4380_78126,292,4380_31683,Glenthorn,72832-00016-1,0,4380_7778208_2070206,4380_483 -4380_78126,293,4380_31684,Glenthorn,72826-00017-1,0,4380_7778208_2070206,4380_483 -4380_78126,290,4380_31685,Glenthorn,72828-00015-1,0,4380_7778208_2070206,4380_483 -4380_78126,294,4380_31686,Glenthorn,72834-00018-1,0,4380_7778208_2070206,4380_483 -4380_78126,295,4380_31687,Glenthorn,72824-00019-1,0,4380_7778208_2070206,4380_483 -4380_78126,296,4380_31688,Glenthorn,72830-00021-1,0,4380_7778208_2070206,4380_483 -4380_77948,285,4380_3169,Ratoath,1272-00009-1,0,4380_7778208_1030102,4380_39 -4380_78126,297,4380_31696,Glenthorn,72387-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31697,Glenthorn,72855-00009-1,0,4380_7778208_2070206,4380_483 -4380_78126,286,4380_31698,Glenthorn,72851-00010-1,0,4380_7778208_2070206,4380_483 -4380_78126,288,4380_31699,Glenthorn,72847-00011-1,0,4380_7778208_2070206,4380_483 -4380_77946,293,4380_317,Drogheda,50376-00017-1,1,4380_7778208_1000914,4380_6 -4380_77948,286,4380_3170,Ratoath,1282-00010-1,0,4380_7778208_1030102,4380_39 -4380_78126,287,4380_31700,Glenthorn,72853-00012-1,0,4380_7778208_2070206,4380_483 -4380_78126,291,4380_31701,Glenthorn,72857-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31702,Glenthorn,72849-00014-1,0,4380_7778208_2070206,4380_483 -4380_78126,292,4380_31703,Glenthorn,72852-00016-1,0,4380_7778208_2070206,4380_483 -4380_78126,293,4380_31704,Glenthorn,72848-00017-1,0,4380_7778208_2070206,4380_483 -4380_78126,290,4380_31705,Glenthorn,72856-00015-1,0,4380_7778208_2070206,4380_483 -4380_78126,294,4380_31706,Glenthorn,72854-00018-1,0,4380_7778208_2070206,4380_483 -4380_78126,295,4380_31707,Glenthorn,72850-00019-1,0,4380_7778208_2070206,4380_483 -4380_78126,296,4380_31708,Glenthorn,72858-00021-1,0,4380_7778208_2070206,4380_483 -4380_77948,288,4380_3171,Ratoath,1292-00011-1,0,4380_7778208_1030102,4380_39 -4380_78126,297,4380_31716,Glenthorn,72391-00008-1,0,4380_7778208_2070202,4380_483 -4380_78126,285,4380_31717,Glenthorn,72873-00009-1,0,4380_7778208_2070206,4380_483 -4380_78126,286,4380_31718,Glenthorn,72879-00010-1,0,4380_7778208_2070206,4380_483 -4380_78126,288,4380_31719,Glenthorn,72877-00011-1,0,4380_7778208_2070206,4380_483 -4380_77948,287,4380_3172,Ratoath,1302-00012-1,0,4380_7778208_1030102,4380_39 -4380_78126,287,4380_31720,Glenthorn,72881-00012-1,0,4380_7778208_2070206,4380_483 -4380_78126,291,4380_31721,Glenthorn,72875-00013-1,0,4380_7778208_2070206,4380_483 -4380_78126,289,4380_31722,Glenthorn,72871-00014-1,0,4380_7778208_2070206,4380_483 -4380_78126,292,4380_31723,Glenthorn,72880-00016-1,0,4380_7778208_2070206,4380_483 -4380_78126,293,4380_31724,Glenthorn,72878-00017-1,0,4380_7778208_2070206,4380_483 -4380_78126,290,4380_31725,Glenthorn,72874-00015-1,0,4380_7778208_2070206,4380_483 -4380_78126,294,4380_31726,Glenthorn,72882-00018-1,0,4380_7778208_2070206,4380_483 -4380_78126,295,4380_31727,Glenthorn,72872-00019-1,0,4380_7778208_2070206,4380_483 -4380_78126,296,4380_31728,Glenthorn,72876-00021-1,0,4380_7778208_2070206,4380_483 -4380_77948,289,4380_3173,Ratoath,1262-00014-1,0,4380_7778208_1030102,4380_39 -4380_78126,285,4380_31735,Merchants Quay,72505-00009-1,1,4380_7778208_2070206,4380_486 -4380_78126,286,4380_31736,Merchants Quay,72503-00010-1,1,4380_7778208_2070206,4380_486 -4380_78126,288,4380_31737,Merchants Quay,72507-00011-1,1,4380_7778208_2070206,4380_486 -4380_78126,287,4380_31738,Merchants Quay,72509-00012-1,1,4380_7778208_2070206,4380_486 -4380_78126,291,4380_31739,Merchants Quay,72499-00013-1,1,4380_7778208_2070206,4380_487 -4380_77948,290,4380_3174,Ratoath,51831-00015-1,0,4380_7778208_1030102,4380_39 -4380_78126,289,4380_31740,Merchants Quay,72501-00014-1,1,4380_7778208_2070206,4380_486 -4380_78126,292,4380_31741,Merchants Quay,72504-00016-1,1,4380_7778208_2070206,4380_486 -4380_78126,293,4380_31742,Merchants Quay,72508-00017-1,1,4380_7778208_2070206,4380_486 -4380_78126,290,4380_31743,Merchants Quay,72506-00015-1,1,4380_7778208_2070206,4380_486 -4380_78126,294,4380_31744,Merchants Quay,72510-00018-1,1,4380_7778208_2070206,4380_486 -4380_78126,295,4380_31745,Merchants Quay,72502-00019-1,1,4380_7778208_2070206,4380_486 -4380_78126,296,4380_31746,Merchants Quay,72500-00021-1,1,4380_7778208_2070206,4380_487 -4380_77948,292,4380_3175,Ratoath,51830-00016-1,0,4380_7778208_1030102,4380_39 -4380_78126,285,4380_31753,Merchants Quay,72531-00009-1,1,4380_7778208_2070206,4380_486 -4380_78126,286,4380_31754,Merchants Quay,72529-00010-1,1,4380_7778208_2070206,4380_486 -4380_78126,288,4380_31755,Merchants Quay,72523-00011-1,1,4380_7778208_2070206,4380_486 -4380_78126,287,4380_31756,Merchants Quay,72525-00012-1,1,4380_7778208_2070206,4380_486 -4380_78126,291,4380_31757,Merchants Quay,72527-00013-1,1,4380_7778208_2070206,4380_487 -4380_78126,289,4380_31758,Merchants Quay,72533-00014-1,1,4380_7778208_2070206,4380_486 -4380_78126,292,4380_31759,Merchants Quay,72530-00016-1,1,4380_7778208_2070206,4380_486 -4380_77948,293,4380_3176,Ratoath,51829-00017-1,0,4380_7778208_1030102,4380_39 -4380_78126,293,4380_31760,Merchants Quay,72524-00017-1,1,4380_7778208_2070206,4380_486 -4380_78126,290,4380_31761,Merchants Quay,72532-00015-1,1,4380_7778208_2070206,4380_486 -4380_78126,294,4380_31762,Merchants Quay,72526-00018-1,1,4380_7778208_2070206,4380_486 -4380_78126,295,4380_31763,Merchants Quay,72534-00019-1,1,4380_7778208_2070206,4380_486 -4380_78126,296,4380_31764,Merchants Quay,72528-00021-1,1,4380_7778208_2070206,4380_487 -4380_77948,294,4380_3177,Ratoath,51827-00018-1,0,4380_7778208_1030102,4380_39 -4380_78126,297,4380_31772,Merchants Quay,72334-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31773,Merchants Quay,72555-00009-1,1,4380_7778208_2070206,4380_487 -4380_78126,286,4380_31774,Merchants Quay,72557-00010-1,1,4380_7778208_2070206,4380_487 -4380_78126,288,4380_31775,Merchants Quay,72549-00011-1,1,4380_7778208_2070206,4380_487 -4380_78126,287,4380_31776,Merchants Quay,72553-00012-1,1,4380_7778208_2070206,4380_487 -4380_78126,291,4380_31777,Merchants Quay,72547-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31778,Merchants Quay,72551-00014-1,1,4380_7778208_2070206,4380_487 -4380_78126,292,4380_31779,Merchants Quay,72558-00016-1,1,4380_7778208_2070206,4380_487 -4380_77948,295,4380_3178,Ratoath,51828-00019-1,0,4380_7778208_1030102,4380_39 -4380_78126,293,4380_31780,Merchants Quay,72550-00017-1,1,4380_7778208_2070206,4380_487 -4380_78126,290,4380_31781,Merchants Quay,72556-00015-1,1,4380_7778208_2070206,4380_487 -4380_78126,294,4380_31782,Merchants Quay,72554-00018-1,1,4380_7778208_2070206,4380_487 -4380_78126,295,4380_31783,Merchants Quay,72552-00019-1,1,4380_7778208_2070206,4380_487 -4380_78126,296,4380_31784,Merchants Quay,72548-00021-1,1,4380_7778208_2070206,4380_486 -4380_78126,297,4380_31792,Merchants Quay,72338-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31793,Merchants Quay,72571-00009-1,1,4380_7778208_2070206,4380_487 -4380_78126,286,4380_31794,Merchants Quay,72579-00010-1,1,4380_7778208_2070206,4380_487 -4380_78126,288,4380_31795,Merchants Quay,72575-00011-1,1,4380_7778208_2070206,4380_487 -4380_78126,287,4380_31796,Merchants Quay,72577-00012-1,1,4380_7778208_2070206,4380_487 -4380_78126,291,4380_31797,Merchants Quay,72581-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31798,Merchants Quay,72573-00014-1,1,4380_7778208_2070206,4380_487 -4380_78126,292,4380_31799,Merchants Quay,72580-00016-1,1,4380_7778208_2070206,4380_487 -4380_77946,294,4380_318,Drogheda,50368-00018-1,1,4380_7778208_1000914,4380_6 -4380_78126,293,4380_31800,Merchants Quay,72576-00017-1,1,4380_7778208_2070206,4380_487 -4380_78126,290,4380_31801,Merchants Quay,72572-00015-1,1,4380_7778208_2070206,4380_487 -4380_78126,294,4380_31802,Merchants Quay,72578-00018-1,1,4380_7778208_2070206,4380_487 -4380_78126,295,4380_31803,Merchants Quay,72574-00019-1,1,4380_7778208_2070206,4380_487 -4380_78126,296,4380_31804,Merchants Quay,72582-00021-1,1,4380_7778208_2070206,4380_486 -4380_78126,297,4380_31812,Merchants Quay,72342-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31813,Merchants Quay,72601-00009-1,1,4380_7778208_2070206,4380_487 -4380_78126,286,4380_31814,Merchants Quay,72599-00010-1,1,4380_7778208_2070206,4380_487 -4380_78126,288,4380_31815,Merchants Quay,72595-00011-1,1,4380_7778208_2070206,4380_487 -4380_78126,287,4380_31816,Merchants Quay,72597-00012-1,1,4380_7778208_2070206,4380_487 -4380_78126,291,4380_31817,Merchants Quay,72603-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31818,Merchants Quay,72605-00014-1,1,4380_7778208_2070206,4380_487 -4380_78126,292,4380_31819,Merchants Quay,72600-00016-1,1,4380_7778208_2070206,4380_487 -4380_78126,293,4380_31820,Merchants Quay,72596-00017-1,1,4380_7778208_2070206,4380_487 -4380_78126,290,4380_31821,Merchants Quay,72602-00015-1,1,4380_7778208_2070206,4380_487 -4380_78126,294,4380_31822,Merchants Quay,72598-00018-1,1,4380_7778208_2070206,4380_487 -4380_78126,295,4380_31823,Merchants Quay,72606-00019-1,1,4380_7778208_2070206,4380_487 -4380_78126,296,4380_31824,Merchants Quay,72604-00021-1,1,4380_7778208_2070206,4380_486 -4380_78126,297,4380_31832,Merchants Quay,72346-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31833,Merchants Quay,72625-00009-1,1,4380_7778208_2070206,4380_487 -4380_78126,286,4380_31834,Merchants Quay,72627-00010-1,1,4380_7778208_2070206,4380_487 -4380_78126,288,4380_31835,Merchants Quay,72623-00011-1,1,4380_7778208_2070206,4380_487 -4380_78126,287,4380_31836,Merchants Quay,72619-00012-1,1,4380_7778208_2070206,4380_487 -4380_78126,291,4380_31837,Merchants Quay,72629-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31838,Merchants Quay,72621-00014-1,1,4380_7778208_2070206,4380_487 -4380_78126,292,4380_31839,Merchants Quay,72628-00016-1,1,4380_7778208_2070206,4380_487 -4380_77948,285,4380_3184,Ratoath,1364-00009-1,0,4380_7778208_1030103,4380_39 -4380_78126,293,4380_31840,Merchants Quay,72624-00017-1,1,4380_7778208_2070206,4380_487 -4380_78126,290,4380_31841,Merchants Quay,72626-00015-1,1,4380_7778208_2070206,4380_487 -4380_78126,294,4380_31842,Merchants Quay,72620-00018-1,1,4380_7778208_2070206,4380_487 -4380_78126,295,4380_31843,Merchants Quay,72622-00019-1,1,4380_7778208_2070206,4380_487 -4380_78126,296,4380_31844,Merchants Quay,72630-00021-1,1,4380_7778208_2070206,4380_486 -4380_77948,286,4380_3185,Ratoath,1374-00010-1,0,4380_7778208_1030103,4380_39 -4380_78126,297,4380_31852,Merchants Quay,72350-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31853,Merchants Quay,72651-00009-1,1,4380_7778208_2070206,4380_487 -4380_78126,286,4380_31854,Merchants Quay,72643-00010-1,1,4380_7778208_2070206,4380_487 -4380_78126,288,4380_31855,Merchants Quay,72647-00011-1,1,4380_7778208_2070206,4380_487 -4380_78126,287,4380_31856,Merchants Quay,72645-00012-1,1,4380_7778208_2070206,4380_487 -4380_78126,291,4380_31857,Merchants Quay,72653-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31858,Merchants Quay,72649-00014-1,1,4380_7778208_2070206,4380_487 -4380_78126,292,4380_31859,Merchants Quay,72644-00016-1,1,4380_7778208_2070206,4380_487 -4380_77948,288,4380_3186,Ratoath,1384-00011-1,0,4380_7778208_1030103,4380_39 -4380_78126,293,4380_31860,Merchants Quay,72648-00017-1,1,4380_7778208_2070206,4380_487 -4380_78126,290,4380_31861,Merchants Quay,72652-00015-1,1,4380_7778208_2070206,4380_487 -4380_78126,294,4380_31862,Merchants Quay,72646-00018-1,1,4380_7778208_2070206,4380_487 -4380_78126,295,4380_31863,Merchants Quay,72650-00019-1,1,4380_7778208_2070206,4380_487 -4380_78126,296,4380_31864,Merchants Quay,72654-00021-1,1,4380_7778208_2070206,4380_486 -4380_77948,287,4380_3187,Ratoath,1394-00012-1,0,4380_7778208_1030103,4380_39 -4380_78126,297,4380_31872,Merchants Quay,72354-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31873,Merchants Quay,72671-00009-1,1,4380_7778208_2070206,4380_487 -4380_78126,286,4380_31874,Merchants Quay,72673-00010-1,1,4380_7778208_2070206,4380_487 -4380_78126,288,4380_31875,Merchants Quay,72667-00011-1,1,4380_7778208_2070206,4380_487 -4380_78126,287,4380_31876,Merchants Quay,72675-00012-1,1,4380_7778208_2070206,4380_487 -4380_78126,291,4380_31877,Merchants Quay,72669-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31878,Merchants Quay,72677-00014-1,1,4380_7778208_2070206,4380_487 -4380_78126,292,4380_31879,Merchants Quay,72674-00016-1,1,4380_7778208_2070206,4380_487 -4380_77948,289,4380_3188,Ratoath,1354-00014-1,0,4380_7778208_1030103,4380_39 -4380_78126,293,4380_31880,Merchants Quay,72668-00017-1,1,4380_7778208_2070206,4380_487 -4380_78126,290,4380_31881,Merchants Quay,72672-00015-1,1,4380_7778208_2070206,4380_487 -4380_78126,294,4380_31882,Merchants Quay,72676-00018-1,1,4380_7778208_2070206,4380_487 -4380_78126,295,4380_31883,Merchants Quay,72678-00019-1,1,4380_7778208_2070206,4380_487 -4380_78126,296,4380_31884,Merchants Quay,72670-00021-1,1,4380_7778208_2070206,4380_486 -4380_77948,290,4380_3189,Ratoath,51891-00015-1,0,4380_7778208_1030103,4380_39 -4380_78126,297,4380_31892,Merchants Quay,72358-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31893,Merchants Quay,72691-00009-1,1,4380_7778208_2070206,4380_487 -4380_78126,286,4380_31894,Merchants Quay,72697-00010-1,1,4380_7778208_2070206,4380_487 -4380_78126,288,4380_31895,Merchants Quay,72695-00011-1,1,4380_7778208_2070206,4380_487 -4380_78126,287,4380_31896,Merchants Quay,72699-00012-1,1,4380_7778208_2070206,4380_487 -4380_78126,291,4380_31897,Merchants Quay,72693-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31898,Merchants Quay,72701-00014-1,1,4380_7778208_2070206,4380_487 -4380_78126,292,4380_31899,Merchants Quay,72698-00016-1,1,4380_7778208_2070206,4380_487 -4380_77946,295,4380_319,Drogheda,50370-00019-1,1,4380_7778208_1000914,4380_6 -4380_77948,292,4380_3190,Ratoath,51889-00016-1,0,4380_7778208_1030103,4380_39 -4380_78126,293,4380_31900,Merchants Quay,72696-00017-1,1,4380_7778208_2070206,4380_487 -4380_78126,290,4380_31901,Merchants Quay,72692-00015-1,1,4380_7778208_2070206,4380_487 -4380_78126,294,4380_31902,Merchants Quay,72700-00018-1,1,4380_7778208_2070206,4380_487 -4380_78126,295,4380_31903,Merchants Quay,72702-00019-1,1,4380_7778208_2070206,4380_487 -4380_78126,296,4380_31904,Merchants Quay,72694-00021-1,1,4380_7778208_2070206,4380_486 -4380_77948,293,4380_3191,Ratoath,51887-00017-1,0,4380_7778208_1030103,4380_39 -4380_78126,297,4380_31912,Merchants Quay,72362-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31913,Merchants Quay,72721-00009-1,1,4380_7778208_2070206,4380_487 -4380_78126,286,4380_31914,Merchants Quay,72719-00010-1,1,4380_7778208_2070206,4380_487 -4380_78126,288,4380_31915,Merchants Quay,72715-00011-1,1,4380_7778208_2070206,4380_487 -4380_78126,287,4380_31916,Merchants Quay,72723-00012-1,1,4380_7778208_2070206,4380_487 -4380_78126,291,4380_31917,Merchants Quay,72717-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31918,Merchants Quay,72725-00014-1,1,4380_7778208_2070206,4380_487 -4380_78126,292,4380_31919,Merchants Quay,72720-00016-1,1,4380_7778208_2070206,4380_487 -4380_77948,294,4380_3192,Ratoath,51890-00018-1,0,4380_7778208_1030103,4380_39 -4380_78126,293,4380_31920,Merchants Quay,72716-00017-1,1,4380_7778208_2070206,4380_487 -4380_78126,290,4380_31921,Merchants Quay,72722-00015-1,1,4380_7778208_2070206,4380_487 -4380_78126,294,4380_31922,Merchants Quay,72724-00018-1,1,4380_7778208_2070206,4380_487 -4380_78126,295,4380_31923,Merchants Quay,72726-00019-1,1,4380_7778208_2070206,4380_487 -4380_78126,296,4380_31924,Merchants Quay,72718-00021-1,1,4380_7778208_2070206,4380_486 -4380_77948,295,4380_3193,Ratoath,51888-00019-1,0,4380_7778208_1030103,4380_39 -4380_78126,297,4380_31932,Merchants Quay,72366-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31933,Merchants Quay,72743-00009-1,1,4380_7778208_2070206,4380_487 -4380_78126,286,4380_31934,Merchants Quay,72745-00010-1,1,4380_7778208_2070206,4380_487 -4380_78126,288,4380_31935,Merchants Quay,72749-00011-1,1,4380_7778208_2070206,4380_487 -4380_78126,287,4380_31936,Merchants Quay,72741-00012-1,1,4380_7778208_2070206,4380_487 -4380_78126,291,4380_31937,Merchants Quay,72747-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31938,Merchants Quay,72739-00014-1,1,4380_7778208_2070206,4380_487 -4380_78126,292,4380_31939,Merchants Quay,72746-00016-1,1,4380_7778208_2070206,4380_487 -4380_78126,293,4380_31940,Merchants Quay,72750-00017-1,1,4380_7778208_2070206,4380_487 -4380_78126,290,4380_31941,Merchants Quay,72744-00015-1,1,4380_7778208_2070206,4380_487 -4380_78126,294,4380_31942,Merchants Quay,72742-00018-1,1,4380_7778208_2070206,4380_487 -4380_78126,295,4380_31943,Merchants Quay,72740-00019-1,1,4380_7778208_2070206,4380_487 -4380_78126,296,4380_31944,Merchants Quay,72748-00021-1,1,4380_7778208_2070206,4380_486 -4380_78126,297,4380_31952,Merchants Quay,72370-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31953,Merchants Quay,72765-00009-1,1,4380_7778208_2070206,4380_486 -4380_78126,286,4380_31954,Merchants Quay,72767-00010-1,1,4380_7778208_2070206,4380_486 -4380_78126,288,4380_31955,Merchants Quay,72773-00011-1,1,4380_7778208_2070206,4380_486 -4380_78126,287,4380_31956,Merchants Quay,72769-00012-1,1,4380_7778208_2070206,4380_486 -4380_78126,291,4380_31957,Merchants Quay,72763-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31958,Merchants Quay,72771-00014-1,1,4380_7778208_2070206,4380_486 -4380_78126,292,4380_31959,Merchants Quay,72768-00016-1,1,4380_7778208_2070206,4380_486 -4380_78126,293,4380_31960,Merchants Quay,72774-00017-1,1,4380_7778208_2070206,4380_486 -4380_78126,290,4380_31961,Merchants Quay,72766-00015-1,1,4380_7778208_2070206,4380_486 -4380_78126,294,4380_31962,Merchants Quay,72770-00018-1,1,4380_7778208_2070206,4380_486 -4380_78126,295,4380_31963,Merchants Quay,72772-00019-1,1,4380_7778208_2070206,4380_486 -4380_78126,296,4380_31964,Merchants Quay,72764-00021-1,1,4380_7778208_2070206,4380_486 -4380_78126,297,4380_31972,Merchants Quay,72374-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31973,Merchants Quay,72793-00009-1,1,4380_7778208_2070206,4380_486 -4380_78126,286,4380_31974,Merchants Quay,72797-00010-1,1,4380_7778208_2070206,4380_486 -4380_78126,288,4380_31975,Merchants Quay,72787-00011-1,1,4380_7778208_2070206,4380_486 -4380_78126,287,4380_31976,Merchants Quay,72789-00012-1,1,4380_7778208_2070206,4380_486 -4380_78126,291,4380_31977,Merchants Quay,72791-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31978,Merchants Quay,72795-00014-1,1,4380_7778208_2070206,4380_486 -4380_78126,292,4380_31979,Merchants Quay,72798-00016-1,1,4380_7778208_2070206,4380_486 -4380_78126,293,4380_31980,Merchants Quay,72788-00017-1,1,4380_7778208_2070206,4380_486 -4380_78126,290,4380_31981,Merchants Quay,72794-00015-1,1,4380_7778208_2070206,4380_486 -4380_78126,294,4380_31982,Merchants Quay,72790-00018-1,1,4380_7778208_2070206,4380_486 -4380_78126,295,4380_31983,Merchants Quay,72796-00019-1,1,4380_7778208_2070206,4380_486 -4380_78126,296,4380_31984,Merchants Quay,72792-00021-1,1,4380_7778208_2070206,4380_486 -4380_77948,285,4380_3199,Ratoath,1462-00009-1,0,4380_7778208_1030104,4380_39 -4380_78126,297,4380_31992,Merchants Quay,72380-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_31993,Merchants Quay,72815-00009-1,1,4380_7778208_2070206,4380_486 -4380_78126,286,4380_31994,Merchants Quay,72813-00010-1,1,4380_7778208_2070206,4380_486 -4380_78126,288,4380_31995,Merchants Quay,72819-00011-1,1,4380_7778208_2070206,4380_486 -4380_78126,287,4380_31996,Merchants Quay,72811-00012-1,1,4380_7778208_2070206,4380_486 -4380_78126,291,4380_31997,Merchants Quay,72817-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_31998,Merchants Quay,72821-00014-1,1,4380_7778208_2070206,4380_486 -4380_78126,292,4380_31999,Merchants Quay,72814-00016-1,1,4380_7778208_2070206,4380_486 -4380_77946,293,4380_32,Dundalk,114768-00017-1,0,4380_7778208_10088801,4380_3 -4380_77946,296,4380_320,Drogheda,50254-00021-1,1,4380_7778208_1000911,4380_8 -4380_77948,286,4380_3200,Ratoath,1474-00010-1,0,4380_7778208_1030104,4380_39 -4380_78126,293,4380_32000,Merchants Quay,72820-00017-1,1,4380_7778208_2070206,4380_486 -4380_78126,290,4380_32001,Merchants Quay,72816-00015-1,1,4380_7778208_2070206,4380_486 -4380_78126,294,4380_32002,Merchants Quay,72812-00018-1,1,4380_7778208_2070206,4380_486 -4380_78126,295,4380_32003,Merchants Quay,72822-00019-1,1,4380_7778208_2070206,4380_486 -4380_78126,296,4380_32004,Merchants Quay,72818-00021-1,1,4380_7778208_2070206,4380_486 -4380_77948,288,4380_3201,Ratoath,1486-00011-1,0,4380_7778208_1030104,4380_39 -4380_78126,297,4380_32012,Merchants Quay,72384-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_32013,Merchants Quay,72843-00009-1,1,4380_7778208_2070206,4380_486 -4380_78126,286,4380_32014,Merchants Quay,72839-00010-1,1,4380_7778208_2070206,4380_486 -4380_78126,288,4380_32015,Merchants Quay,72841-00011-1,1,4380_7778208_2070206,4380_486 -4380_78126,287,4380_32016,Merchants Quay,72835-00012-1,1,4380_7778208_2070206,4380_486 -4380_78126,291,4380_32017,Merchants Quay,72845-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_32018,Merchants Quay,72837-00014-1,1,4380_7778208_2070206,4380_486 -4380_78126,292,4380_32019,Merchants Quay,72840-00016-1,1,4380_7778208_2070206,4380_486 -4380_77948,287,4380_3202,Ratoath,1498-00012-1,0,4380_7778208_1030104,4380_39 -4380_78126,293,4380_32020,Merchants Quay,72842-00017-1,1,4380_7778208_2070206,4380_486 -4380_78126,290,4380_32021,Merchants Quay,72844-00015-1,1,4380_7778208_2070206,4380_486 -4380_78126,294,4380_32022,Merchants Quay,72836-00018-1,1,4380_7778208_2070206,4380_486 -4380_78126,295,4380_32023,Merchants Quay,72838-00019-1,1,4380_7778208_2070206,4380_486 -4380_78126,296,4380_32024,Merchants Quay,72846-00021-1,1,4380_7778208_2070206,4380_486 -4380_77948,289,4380_3203,Ratoath,1450-00014-1,0,4380_7778208_1030104,4380_39 -4380_78126,297,4380_32032,Merchants Quay,72388-00008-1,1,4380_7778208_2070202,4380_486 -4380_78126,285,4380_32033,Merchants Quay,72867-00009-1,1,4380_7778208_2070206,4380_486 -4380_78126,286,4380_32034,Merchants Quay,72869-00010-1,1,4380_7778208_2070206,4380_486 -4380_78126,288,4380_32035,Merchants Quay,72863-00011-1,1,4380_7778208_2070206,4380_486 -4380_78126,287,4380_32036,Merchants Quay,72859-00012-1,1,4380_7778208_2070206,4380_486 -4380_78126,291,4380_32037,Merchants Quay,72861-00013-1,1,4380_7778208_2070206,4380_486 -4380_78126,289,4380_32038,Merchants Quay,72865-00014-1,1,4380_7778208_2070206,4380_486 -4380_78126,292,4380_32039,Merchants Quay,72870-00016-1,1,4380_7778208_2070206,4380_486 -4380_77948,290,4380_3204,Ratoath,51953-00015-1,0,4380_7778208_1030104,4380_39 -4380_78126,293,4380_32040,Merchants Quay,72864-00017-1,1,4380_7778208_2070206,4380_486 -4380_78126,290,4380_32041,Merchants Quay,72868-00015-1,1,4380_7778208_2070206,4380_486 -4380_78126,294,4380_32042,Merchants Quay,72860-00018-1,1,4380_7778208_2070206,4380_486 -4380_78126,295,4380_32043,Merchants Quay,72866-00019-1,1,4380_7778208_2070206,4380_486 -4380_78126,296,4380_32044,Merchants Quay,72862-00021-1,1,4380_7778208_2070206,4380_486 -4380_77948,292,4380_3205,Ratoath,51951-00016-1,0,4380_7778208_1030104,4380_39 -4380_77980,285,4380_32051,Bishopstown via CUH,73803-00009-1,0,4380_7778208_2080202,4380_490 -4380_77980,286,4380_32052,Bishopstown via CUH,73801-00010-1,0,4380_7778208_2080202,4380_490 -4380_77980,288,4380_32053,Bishopstown via CUH,73805-00011-1,0,4380_7778208_2080202,4380_490 -4380_77980,287,4380_32054,Bishopstown via CUH,73807-00012-1,0,4380_7778208_2080202,4380_490 -4380_77980,291,4380_32055,Bishopstown via CUH,73563-00013-1,0,4380_7778208_2080201,4380_490 -4380_77980,289,4380_32056,Bishopstown via CUH,73809-00014-1,0,4380_7778208_2080202,4380_490 -4380_77980,292,4380_32057,Bishopstown via CUH,73802-00016-1,0,4380_7778208_2080202,4380_490 -4380_77980,293,4380_32058,Bishopstown via CUH,73806-00017-1,0,4380_7778208_2080202,4380_490 -4380_77980,290,4380_32059,Bishopstown via CUH,73804-00015-1,0,4380_7778208_2080202,4380_490 -4380_77948,293,4380_3206,Ratoath,51952-00017-1,0,4380_7778208_1030104,4380_39 -4380_77980,294,4380_32060,Bishopstown via CUH,73808-00018-1,0,4380_7778208_2080202,4380_490 -4380_77980,295,4380_32061,Bishopstown via CUH,73810-00019-1,0,4380_7778208_2080202,4380_490 -4380_77980,296,4380_32062,Bishopstown via CUH,73564-00021-1,0,4380_7778208_2080201,4380_490 -4380_77948,294,4380_3207,Ratoath,51949-00018-1,0,4380_7778208_1030104,4380_39 -4380_77980,285,4380_32074,Bishopstown via CUH,74243-00009-1,0,4380_7778208_2080204,4380_488 -4380_77980,285,4380_32075,Bishopstown via CUH,74471-00009-1,0,4380_7778208_2080205,4380_490 -4380_77980,286,4380_32076,Bishopstown via CUH,74239-00010-1,0,4380_7778208_2080204,4380_488 -4380_77980,286,4380_32077,Bishopstown via CUH,74467-00010-1,0,4380_7778208_2080205,4380_490 -4380_77980,288,4380_32078,Bishopstown via CUH,74237-00011-1,0,4380_7778208_2080204,4380_488 -4380_77980,288,4380_32079,Bishopstown via CUH,74465-00011-1,0,4380_7778208_2080205,4380_490 -4380_77948,295,4380_3208,Ratoath,51950-00019-1,0,4380_7778208_1030104,4380_39 -4380_77980,287,4380_32080,Bishopstown via CUH,74235-00012-1,0,4380_7778208_2080204,4380_488 -4380_77980,287,4380_32081,Bishopstown via CUH,74469-00012-1,0,4380_7778208_2080205,4380_490 -4380_77980,291,4380_32082,Bishopstown via CUH,73811-00013-1,0,4380_7778208_2080202,4380_490 -4380_77980,289,4380_32083,Bishopstown via CUH,74241-00014-1,0,4380_7778208_2080204,4380_488 -4380_77980,289,4380_32084,Bishopstown via CUH,74463-00014-1,0,4380_7778208_2080205,4380_490 -4380_77980,292,4380_32085,Bishopstown via CUH,74240-00016-1,0,4380_7778208_2080204,4380_488 -4380_77980,292,4380_32086,Bishopstown via CUH,74468-00016-1,0,4380_7778208_2080205,4380_490 -4380_77980,293,4380_32087,Bishopstown via CUH,74238-00017-1,0,4380_7778208_2080204,4380_488 -4380_77980,293,4380_32088,Bishopstown via CUH,74466-00017-1,0,4380_7778208_2080205,4380_490 -4380_77980,290,4380_32089,Bishopstown via CUH,74244-00015-1,0,4380_7778208_2080204,4380_488 -4380_77980,290,4380_32090,Bishopstown via CUH,74472-00015-1,0,4380_7778208_2080205,4380_490 -4380_77980,294,4380_32091,Bishopstown via CUH,74236-00018-1,0,4380_7778208_2080204,4380_488 -4380_77980,294,4380_32092,Bishopstown via CUH,74470-00018-1,0,4380_7778208_2080205,4380_490 -4380_77980,295,4380_32093,Bishopstown via CUH,74242-00019-1,0,4380_7778208_2080204,4380_488 -4380_77980,295,4380_32094,Bishopstown via CUH,74464-00019-1,0,4380_7778208_2080205,4380_490 -4380_77980,296,4380_32095,Bishopstown via CUH,73812-00021-1,0,4380_7778208_2080202,4380_490 -4380_77980,285,4380_32102,Curraheen,74722-00009-1,0,4380_7778208_2080206,4380_491 -4380_77980,286,4380_32103,Curraheen,74728-00010-1,0,4380_7778208_2080206,4380_491 -4380_77980,288,4380_32104,Curraheen,74726-00011-1,0,4380_7778208_2080206,4380_491 -4380_77980,287,4380_32105,Curraheen,74724-00012-1,0,4380_7778208_2080206,4380_491 -4380_77980,291,4380_32106,Bishopstown via CUH,74010-00013-1,0,4380_7778208_2080203,4380_488 -4380_77980,289,4380_32107,Curraheen,74720-00014-1,0,4380_7778208_2080206,4380_491 -4380_77980,292,4380_32108,Curraheen,74729-00016-1,0,4380_7778208_2080206,4380_491 -4380_77980,293,4380_32109,Curraheen,74727-00017-1,0,4380_7778208_2080206,4380_491 -4380_77980,290,4380_32110,Curraheen,74723-00015-1,0,4380_7778208_2080206,4380_491 -4380_77980,294,4380_32111,Curraheen,74725-00018-1,0,4380_7778208_2080206,4380_491 -4380_77980,295,4380_32112,Curraheen,74721-00019-1,0,4380_7778208_2080206,4380_491 -4380_77980,296,4380_32113,Bishopstown via CUH,74011-00021-1,0,4380_7778208_2080203,4380_488 -4380_77980,291,4380_32115,Bishopstown via CUH,74245-00013-1,0,4380_7778208_2080204,4380_490 -4380_77980,296,4380_32116,Bishopstown via CUH,74246-00021-1,0,4380_7778208_2080204,4380_490 -4380_77980,285,4380_32123,Bishopstown via CUH,73567-00009-1,0,4380_7778208_2080201,4380_488 -4380_77980,286,4380_32124,Bishopstown via CUH,73569-00010-1,0,4380_7778208_2080201,4380_488 -4380_77980,288,4380_32125,Bishopstown via CUH,73571-00011-1,0,4380_7778208_2080201,4380_488 -4380_77980,287,4380_32126,Bishopstown via CUH,73573-00012-1,0,4380_7778208_2080201,4380_488 -4380_77980,291,4380_32127,Bishopstown via CUH,74483-00013-1,0,4380_7778208_2080205,4380_492 -4380_77980,289,4380_32128,Bishopstown via CUH,73575-00014-1,0,4380_7778208_2080201,4380_488 -4380_77980,292,4380_32129,Bishopstown via CUH,73570-00016-1,0,4380_7778208_2080201,4380_488 -4380_77980,293,4380_32130,Bishopstown via CUH,73572-00017-1,0,4380_7778208_2080201,4380_488 -4380_77980,290,4380_32131,Bishopstown via CUH,73568-00015-1,0,4380_7778208_2080201,4380_488 -4380_77980,294,4380_32132,Bishopstown via CUH,73574-00018-1,0,4380_7778208_2080201,4380_488 -4380_77980,295,4380_32133,Bishopstown via CUH,73576-00019-1,0,4380_7778208_2080201,4380_488 -4380_77980,296,4380_32134,Bishopstown via CUH,74484-00021-1,0,4380_7778208_2080205,4380_492 -4380_77948,291,4380_3214,Ratoath,1222-00013-1,0,4380_7778208_1030101,4380_39 -4380_77980,285,4380_32141,Bishopstown via CUH,74016-00009-1,0,4380_7778208_2080203,4380_488 -4380_77980,286,4380_32142,Bishopstown via CUH,74012-00010-1,0,4380_7778208_2080203,4380_488 -4380_77980,288,4380_32143,Bishopstown via CUH,74018-00011-1,0,4380_7778208_2080203,4380_488 -4380_77980,287,4380_32144,Bishopstown via CUH,74014-00012-1,0,4380_7778208_2080203,4380_488 -4380_77980,291,4380_32145,Bishopstown via CUH,74730-00013-1,0,4380_7778208_2080206,4380_492 -4380_77980,289,4380_32146,Bishopstown via CUH,74020-00014-1,0,4380_7778208_2080203,4380_488 -4380_77980,292,4380_32147,Bishopstown via CUH,74013-00016-1,0,4380_7778208_2080203,4380_488 -4380_77980,293,4380_32148,Bishopstown via CUH,74019-00017-1,0,4380_7778208_2080203,4380_488 -4380_77980,290,4380_32149,Bishopstown via CUH,74017-00015-1,0,4380_7778208_2080203,4380_488 -4380_77948,296,4380_3215,Ratoath,51772-00021-1,0,4380_7778208_1030101,4380_39 -4380_77980,294,4380_32150,Bishopstown via CUH,74015-00018-1,0,4380_7778208_2080203,4380_488 -4380_77980,295,4380_32151,Bishopstown via CUH,74021-00019-1,0,4380_7778208_2080203,4380_488 -4380_77980,296,4380_32152,Bishopstown via CUH,74731-00021-1,0,4380_7778208_2080206,4380_492 -4380_77980,297,4380_32154,Bishopstown via CUH,74485-00008-1,0,4380_7778208_2080205,4380_490 -4380_77980,297,4380_32156,Bishopstown via CUH,73577-00008-1,0,4380_7778208_2080201,4380_488 -4380_77948,285,4380_3216,Ratoath,1552-00009-1,0,4380_7778208_1030105,4380_39 -4380_77980,285,4380_32163,Bishopstown via CUH,73831-00009-1,0,4380_7778208_2080202,4380_488 -4380_77980,286,4380_32164,Bishopstown via CUH,73825-00010-1,0,4380_7778208_2080202,4380_488 -4380_77980,288,4380_32165,Bishopstown via CUH,73829-00011-1,0,4380_7778208_2080202,4380_488 -4380_77980,287,4380_32166,Bishopstown via CUH,73827-00012-1,0,4380_7778208_2080202,4380_488 -4380_77980,291,4380_32167,Bishopstown via CUH,73578-00013-1,0,4380_7778208_2080201,4380_492 -4380_77980,289,4380_32168,Bishopstown via CUH,73833-00014-1,0,4380_7778208_2080202,4380_488 -4380_77980,292,4380_32169,Bishopstown via CUH,73826-00016-1,0,4380_7778208_2080202,4380_488 -4380_77948,286,4380_3217,Ratoath,1560-00010-1,0,4380_7778208_1030105,4380_39 -4380_77980,293,4380_32170,Bishopstown via CUH,73830-00017-1,0,4380_7778208_2080202,4380_488 -4380_77980,290,4380_32171,Bishopstown via CUH,73832-00015-1,0,4380_7778208_2080202,4380_488 -4380_77980,294,4380_32172,Bishopstown via CUH,73828-00018-1,0,4380_7778208_2080202,4380_488 -4380_77980,295,4380_32173,Bishopstown via CUH,73834-00019-1,0,4380_7778208_2080202,4380_488 -4380_77980,296,4380_32174,Bishopstown via CUH,73579-00021-1,0,4380_7778208_2080201,4380_492 -4380_77948,288,4380_3218,Ratoath,1568-00011-1,0,4380_7778208_1030105,4380_39 -4380_77980,297,4380_32182,Bishopstown via CUH,74024-00008-1,0,4380_7778208_2080203,4380_488 -4380_77980,285,4380_32183,Bishopstown via CUH,74488-00009-1,0,4380_7778208_2080205,4380_492 -4380_77980,286,4380_32184,Bishopstown via CUH,74490-00010-1,0,4380_7778208_2080205,4380_492 -4380_77980,288,4380_32185,Bishopstown via CUH,74486-00011-1,0,4380_7778208_2080205,4380_492 -4380_77980,287,4380_32186,Bishopstown via CUH,74492-00012-1,0,4380_7778208_2080205,4380_492 -4380_77980,291,4380_32187,Bishopstown via CUH,73835-00013-1,0,4380_7778208_2080202,4380_493 -4380_77980,289,4380_32188,Bishopstown via CUH,74494-00014-1,0,4380_7778208_2080205,4380_492 -4380_77980,292,4380_32189,Bishopstown via CUH,74491-00016-1,0,4380_7778208_2080205,4380_492 -4380_77948,287,4380_3219,Ratoath,1576-00012-1,0,4380_7778208_1030105,4380_39 -4380_77980,293,4380_32190,Bishopstown via CUH,74487-00017-1,0,4380_7778208_2080205,4380_492 -4380_77980,290,4380_32191,Bishopstown via CUH,74489-00015-1,0,4380_7778208_2080205,4380_492 -4380_77980,294,4380_32192,Bishopstown via CUH,74493-00018-1,0,4380_7778208_2080205,4380_492 -4380_77980,295,4380_32193,Bishopstown via CUH,74495-00019-1,0,4380_7778208_2080205,4380_492 -4380_77980,296,4380_32194,Bishopstown via CUH,73836-00021-1,0,4380_7778208_2080202,4380_493 -4380_77948,289,4380_3220,Ratoath,1544-00014-1,0,4380_7778208_1030105,4380_39 -4380_77980,285,4380_32201,Bishopstown via CUH,74259-00009-1,0,4380_7778208_2080204,4380_488 -4380_77980,286,4380_32202,Bishopstown via CUH,74261-00010-1,0,4380_7778208_2080204,4380_488 -4380_77980,288,4380_32203,Bishopstown via CUH,74267-00011-1,0,4380_7778208_2080204,4380_488 -4380_77980,287,4380_32204,Bishopstown via CUH,74269-00012-1,0,4380_7778208_2080204,4380_488 -4380_77980,291,4380_32205,Bishopstown via CUH,74265-00013-1,0,4380_7778208_2080204,4380_492 -4380_77980,289,4380_32206,Bishopstown via CUH,74263-00014-1,0,4380_7778208_2080204,4380_488 -4380_77980,292,4380_32207,Bishopstown via CUH,74262-00016-1,0,4380_7778208_2080204,4380_488 -4380_77980,293,4380_32208,Bishopstown via CUH,74268-00017-1,0,4380_7778208_2080204,4380_488 -4380_77980,290,4380_32209,Bishopstown via CUH,74260-00015-1,0,4380_7778208_2080204,4380_488 -4380_77948,290,4380_3221,Ratoath,52023-00015-1,0,4380_7778208_1030105,4380_39 -4380_77980,294,4380_32210,Bishopstown via CUH,74270-00018-1,0,4380_7778208_2080204,4380_488 -4380_77980,295,4380_32211,Bishopstown via CUH,74264-00019-1,0,4380_7778208_2080204,4380_488 -4380_77980,296,4380_32212,Bishopstown via CUH,74266-00021-1,0,4380_7778208_2080204,4380_492 -4380_77980,297,4380_32214,Bishopstown via CUH,73837-00008-1,0,4380_7778208_2080202,4380_488 -4380_77948,292,4380_3222,Ratoath,52022-00016-1,0,4380_7778208_1030105,4380_39 -4380_77980,285,4380_32221,Curraheen,75130-00009-1,0,4380_7778208_2080208,4380_491 -4380_77980,286,4380_32222,Curraheen,75128-00010-1,0,4380_7778208_2080208,4380_491 -4380_77980,288,4380_32223,Curraheen,75132-00011-1,0,4380_7778208_2080208,4380_491 -4380_77980,287,4380_32224,Curraheen,75122-00012-1,0,4380_7778208_2080208,4380_491 -4380_77980,291,4380_32225,Bishopstown via CUH,75126-00013-1,0,4380_7778208_2080208,4380_488 -4380_77980,289,4380_32226,Curraheen,75124-00014-1,0,4380_7778208_2080208,4380_491 -4380_77980,292,4380_32227,Curraheen,75129-00016-1,0,4380_7778208_2080208,4380_491 -4380_77980,293,4380_32228,Curraheen,75133-00017-1,0,4380_7778208_2080208,4380_491 -4380_77980,290,4380_32229,Curraheen,75131-00015-1,0,4380_7778208_2080208,4380_491 -4380_77948,293,4380_3223,Ratoath,52019-00017-1,0,4380_7778208_1030105,4380_39 -4380_77980,294,4380_32230,Curraheen,75123-00018-1,0,4380_7778208_2080208,4380_491 -4380_77980,295,4380_32231,Curraheen,75125-00019-1,0,4380_7778208_2080208,4380_491 -4380_77980,296,4380_32232,Bishopstown via CUH,75127-00021-1,0,4380_7778208_2080208,4380_488 -4380_77980,297,4380_32234,Bishopstown via CUH,74745-00008-1,0,4380_7778208_2080206,4380_488 -4380_77948,294,4380_3224,Ratoath,52021-00018-1,0,4380_7778208_1030105,4380_39 -4380_77980,285,4380_32241,Bishopstown via CUH,74754-00009-1,0,4380_7778208_2080206,4380_488 -4380_77980,286,4380_32242,Bishopstown via CUH,74750-00010-1,0,4380_7778208_2080206,4380_488 -4380_77980,288,4380_32243,Bishopstown via CUH,74752-00011-1,0,4380_7778208_2080206,4380_488 -4380_77980,287,4380_32244,Bishopstown via CUH,74748-00012-1,0,4380_7778208_2080206,4380_488 -4380_77980,291,4380_32245,Bishopstown via CUH,74035-00013-1,0,4380_7778208_2080203,4380_492 -4380_77980,289,4380_32246,Bishopstown via CUH,74746-00014-1,0,4380_7778208_2080206,4380_488 -4380_77980,292,4380_32247,Bishopstown via CUH,74751-00016-1,0,4380_7778208_2080206,4380_488 -4380_77980,293,4380_32248,Bishopstown via CUH,74753-00017-1,0,4380_7778208_2080206,4380_488 -4380_77980,290,4380_32249,Bishopstown via CUH,74755-00015-1,0,4380_7778208_2080206,4380_488 -4380_77948,295,4380_3225,Ratoath,52020-00019-1,0,4380_7778208_1030105,4380_39 -4380_77980,294,4380_32250,Bishopstown via CUH,74749-00018-1,0,4380_7778208_2080206,4380_488 -4380_77980,295,4380_32251,Bishopstown via CUH,74747-00019-1,0,4380_7778208_2080206,4380_488 -4380_77980,296,4380_32252,Bishopstown via CUH,74036-00021-1,0,4380_7778208_2080203,4380_492 -4380_77980,297,4380_32260,Bishopstown via CUH,74499-00008-1,0,4380_7778208_2080205,4380_488 -4380_77980,285,4380_32261,Bishopstown via CUH,74920-00009-1,0,4380_7778208_2080207,4380_492 -4380_77980,286,4380_32262,Bishopstown via CUH,74928-00010-1,0,4380_7778208_2080207,4380_492 -4380_77980,288,4380_32263,Bishopstown via CUH,74926-00011-1,0,4380_7778208_2080207,4380_492 -4380_77980,287,4380_32264,Bishopstown via CUH,74918-00012-1,0,4380_7778208_2080207,4380_492 -4380_77980,291,4380_32265,Bishopstown via CUH,74922-00013-1,0,4380_7778208_2080207,4380_493 -4380_77980,289,4380_32266,Bishopstown via CUH,74924-00014-1,0,4380_7778208_2080207,4380_492 -4380_77980,292,4380_32267,Bishopstown via CUH,74929-00016-1,0,4380_7778208_2080207,4380_492 -4380_77980,293,4380_32268,Bishopstown via CUH,74927-00017-1,0,4380_7778208_2080207,4380_492 -4380_77980,290,4380_32269,Bishopstown via CUH,74921-00015-1,0,4380_7778208_2080207,4380_492 -4380_77980,294,4380_32270,Bishopstown via CUH,74919-00018-1,0,4380_7778208_2080207,4380_492 -4380_77980,295,4380_32271,Bishopstown via CUH,74925-00019-1,0,4380_7778208_2080207,4380_492 -4380_77980,296,4380_32272,Bishopstown via CUH,74923-00021-1,0,4380_7778208_2080207,4380_493 -4380_77980,285,4380_32279,Bishopstown via CUH,73597-00009-1,0,4380_7778208_2080201,4380_488 -4380_77980,286,4380_32280,Bishopstown via CUH,73599-00010-1,0,4380_7778208_2080201,4380_488 -4380_77980,288,4380_32281,Bishopstown via CUH,73601-00011-1,0,4380_7778208_2080201,4380_488 -4380_77980,287,4380_32282,Bishopstown via CUH,73593-00012-1,0,4380_7778208_2080201,4380_488 -4380_77980,291,4380_32283,Bishopstown via CUH,74510-00013-1,0,4380_7778208_2080205,4380_492 -4380_77980,289,4380_32284,Bishopstown via CUH,73595-00014-1,0,4380_7778208_2080201,4380_488 -4380_77980,292,4380_32285,Bishopstown via CUH,73600-00016-1,0,4380_7778208_2080201,4380_488 -4380_77980,293,4380_32286,Bishopstown via CUH,73602-00017-1,0,4380_7778208_2080201,4380_488 -4380_77980,290,4380_32287,Bishopstown via CUH,73598-00015-1,0,4380_7778208_2080201,4380_488 -4380_77980,294,4380_32288,Bishopstown via CUH,73594-00018-1,0,4380_7778208_2080201,4380_488 -4380_77980,295,4380_32289,Bishopstown via CUH,73596-00019-1,0,4380_7778208_2080201,4380_488 -4380_77980,296,4380_32290,Bishopstown via CUH,74511-00021-1,0,4380_7778208_2080205,4380_492 -4380_77980,297,4380_32292,Bishopstown via CUH,73603-00008-1,0,4380_7778208_2080201,4380_488 -4380_77980,285,4380_32299,Bishopstown via CUH,74040-00009-1,0,4380_7778208_2080203,4380_488 -4380_77980,286,4380_32300,Bishopstown via CUH,74044-00010-1,0,4380_7778208_2080203,4380_488 -4380_77980,288,4380_32301,Bishopstown via CUH,74046-00011-1,0,4380_7778208_2080203,4380_488 -4380_77980,287,4380_32302,Bishopstown via CUH,74038-00012-1,0,4380_7778208_2080203,4380_488 -4380_77980,291,4380_32303,Bishopstown via CUH,74756-00013-1,0,4380_7778208_2080206,4380_492 -4380_77980,289,4380_32304,Bishopstown via CUH,74042-00014-1,0,4380_7778208_2080203,4380_488 -4380_77980,292,4380_32305,Bishopstown via CUH,74045-00016-1,0,4380_7778208_2080203,4380_488 -4380_77980,293,4380_32306,Bishopstown via CUH,74047-00017-1,0,4380_7778208_2080203,4380_488 -4380_77980,290,4380_32307,Bishopstown via CUH,74041-00015-1,0,4380_7778208_2080203,4380_488 -4380_77980,294,4380_32308,Bishopstown via CUH,74039-00018-1,0,4380_7778208_2080203,4380_488 -4380_77980,295,4380_32309,Bishopstown via CUH,74043-00019-1,0,4380_7778208_2080203,4380_488 -4380_77980,296,4380_32310,Bishopstown via CUH,74757-00021-1,0,4380_7778208_2080206,4380_492 -4380_77980,297,4380_32312,Bishopstown via CUH,74048-00008-1,0,4380_7778208_2080203,4380_488 -4380_77980,285,4380_32319,Bishopstown via CUH,73857-00009-1,0,4380_7778208_2080202,4380_488 -4380_77948,285,4380_3232,Ratoath,1772-00009-1,0,4380_7778208_1030108,4380_39 -4380_77980,286,4380_32320,Bishopstown via CUH,73851-00010-1,0,4380_7778208_2080202,4380_488 -4380_77980,288,4380_32321,Bishopstown via CUH,73853-00011-1,0,4380_7778208_2080202,4380_488 -4380_77980,287,4380_32322,Bishopstown via CUH,73859-00012-1,0,4380_7778208_2080202,4380_488 -4380_77980,291,4380_32323,Bishopstown via CUH,73604-00013-1,0,4380_7778208_2080201,4380_492 -4380_77980,289,4380_32324,Bishopstown via CUH,73855-00014-1,0,4380_7778208_2080202,4380_488 -4380_77980,292,4380_32325,Bishopstown via CUH,73852-00016-1,0,4380_7778208_2080202,4380_488 -4380_77980,293,4380_32326,Bishopstown via CUH,73854-00017-1,0,4380_7778208_2080202,4380_488 -4380_77980,290,4380_32327,Bishopstown via CUH,73858-00015-1,0,4380_7778208_2080202,4380_488 -4380_77980,294,4380_32328,Bishopstown via CUH,73860-00018-1,0,4380_7778208_2080202,4380_488 -4380_77980,295,4380_32329,Bishopstown via CUH,73856-00019-1,0,4380_7778208_2080202,4380_488 -4380_77948,286,4380_3233,Ratoath,1784-00010-1,0,4380_7778208_1030108,4380_39 -4380_77980,296,4380_32330,Bishopstown via CUH,73605-00021-1,0,4380_7778208_2080201,4380_492 -4380_77980,297,4380_32338,Bishopstown via CUH,73861-00008-1,0,4380_7778208_2080202,4380_488 -4380_77980,285,4380_32339,Bishopstown via CUH,74519-00009-1,0,4380_7778208_2080205,4380_492 -4380_77948,288,4380_3234,Ratoath,1796-00011-1,0,4380_7778208_1030108,4380_39 -4380_77980,286,4380_32340,Bishopstown via CUH,74513-00010-1,0,4380_7778208_2080205,4380_492 -4380_77980,288,4380_32341,Bishopstown via CUH,74517-00011-1,0,4380_7778208_2080205,4380_492 -4380_77980,287,4380_32342,Bishopstown via CUH,74515-00012-1,0,4380_7778208_2080205,4380_492 -4380_77980,291,4380_32343,Bishopstown via CUH,73862-00013-1,0,4380_7778208_2080202,4380_493 -4380_77980,289,4380_32344,Bishopstown via CUH,74521-00014-1,0,4380_7778208_2080205,4380_492 -4380_77980,292,4380_32345,Bishopstown via CUH,74514-00016-1,0,4380_7778208_2080205,4380_492 -4380_77980,293,4380_32346,Bishopstown via CUH,74518-00017-1,0,4380_7778208_2080205,4380_492 -4380_77980,290,4380_32347,Bishopstown via CUH,74520-00015-1,0,4380_7778208_2080205,4380_492 -4380_77980,294,4380_32348,Bishopstown via CUH,74516-00018-1,0,4380_7778208_2080205,4380_492 -4380_77980,295,4380_32349,Bishopstown via CUH,74522-00019-1,0,4380_7778208_2080205,4380_492 -4380_77948,287,4380_3235,Ratoath,1808-00012-1,0,4380_7778208_1030108,4380_39 -4380_77980,296,4380_32350,Bishopstown via CUH,73863-00021-1,0,4380_7778208_2080202,4380_493 -4380_77980,285,4380_32357,Bishopstown via CUH,74293-00009-1,0,4380_7778208_2080204,4380_488 -4380_77980,286,4380_32358,Bishopstown via CUH,74285-00010-1,0,4380_7778208_2080204,4380_488 -4380_77980,288,4380_32359,Bishopstown via CUH,74289-00011-1,0,4380_7778208_2080204,4380_488 -4380_77948,289,4380_3236,Ratoath,1760-00014-1,0,4380_7778208_1030108,4380_39 -4380_77980,287,4380_32360,Bishopstown via CUH,74283-00012-1,0,4380_7778208_2080204,4380_488 -4380_77980,291,4380_32361,Bishopstown via CUH,74287-00013-1,0,4380_7778208_2080204,4380_492 -4380_77980,289,4380_32362,Bishopstown via CUH,74291-00014-1,0,4380_7778208_2080204,4380_488 -4380_77980,292,4380_32363,Bishopstown via CUH,74286-00016-1,0,4380_7778208_2080204,4380_488 -4380_77980,293,4380_32364,Bishopstown via CUH,74290-00017-1,0,4380_7778208_2080204,4380_488 -4380_77980,290,4380_32365,Bishopstown via CUH,74294-00015-1,0,4380_7778208_2080204,4380_488 -4380_77980,294,4380_32366,Bishopstown via CUH,74284-00018-1,0,4380_7778208_2080204,4380_488 -4380_77980,295,4380_32367,Bishopstown via CUH,74292-00019-1,0,4380_7778208_2080204,4380_488 -4380_77980,296,4380_32368,Bishopstown via CUH,74288-00021-1,0,4380_7778208_2080204,4380_492 -4380_77948,290,4380_3237,Ratoath,52204-00015-1,0,4380_7778208_1030108,4380_39 -4380_77980,297,4380_32370,Bishopstown via CUH,74769-00008-1,0,4380_7778208_2080206,4380_488 -4380_77980,285,4380_32377,Bishopstown via CUH,75154-00009-1,0,4380_7778208_2080208,4380_488 -4380_77980,286,4380_32378,Bishopstown via CUH,75156-00010-1,0,4380_7778208_2080208,4380_488 -4380_77980,288,4380_32379,Bishopstown via CUH,75146-00011-1,0,4380_7778208_2080208,4380_488 -4380_77948,291,4380_3238,Ratoath,1322-00013-1,0,4380_7778208_1030102,4380_40 -4380_77980,287,4380_32380,Bishopstown via CUH,75152-00012-1,0,4380_7778208_2080208,4380_488 -4380_77980,291,4380_32381,Bishopstown via CUH,75150-00013-1,0,4380_7778208_2080208,4380_492 -4380_77980,289,4380_32382,Bishopstown via CUH,75148-00014-1,0,4380_7778208_2080208,4380_488 -4380_77980,292,4380_32383,Bishopstown via CUH,75157-00016-1,0,4380_7778208_2080208,4380_488 -4380_77980,293,4380_32384,Bishopstown via CUH,75147-00017-1,0,4380_7778208_2080208,4380_488 -4380_77980,290,4380_32385,Bishopstown via CUH,75155-00015-1,0,4380_7778208_2080208,4380_488 -4380_77980,294,4380_32386,Bishopstown via CUH,75153-00018-1,0,4380_7778208_2080208,4380_488 -4380_77980,295,4380_32387,Bishopstown via CUH,75149-00019-1,0,4380_7778208_2080208,4380_488 -4380_77980,296,4380_32388,Bishopstown via CUH,75151-00021-1,0,4380_7778208_2080208,4380_492 -4380_77948,292,4380_3239,Ratoath,52205-00016-1,0,4380_7778208_1030108,4380_39 -4380_77980,297,4380_32390,Bishopstown via CUH,74525-00008-1,0,4380_7778208_2080205,4380_488 -4380_77980,285,4380_32397,Bishopstown via CUH,74772-00009-1,0,4380_7778208_2080206,4380_488 -4380_77980,286,4380_32398,Bishopstown via CUH,74778-00010-1,0,4380_7778208_2080206,4380_488 -4380_77980,288,4380_32399,Bishopstown via CUH,74774-00011-1,0,4380_7778208_2080206,4380_488 -4380_77948,293,4380_3240,Ratoath,52202-00017-1,0,4380_7778208_1030108,4380_39 -4380_77980,287,4380_32400,Bishopstown via CUH,74776-00012-1,0,4380_7778208_2080206,4380_488 -4380_77980,291,4380_32401,Bishopstown via CUH,74062-00013-1,0,4380_7778208_2080203,4380_492 -4380_77980,289,4380_32402,Bishopstown via CUH,74780-00014-1,0,4380_7778208_2080206,4380_488 -4380_77980,292,4380_32403,Bishopstown via CUH,74779-00016-1,0,4380_7778208_2080206,4380_488 -4380_77980,293,4380_32404,Bishopstown via CUH,74775-00017-1,0,4380_7778208_2080206,4380_488 -4380_77980,290,4380_32405,Bishopstown via CUH,74773-00015-1,0,4380_7778208_2080206,4380_488 -4380_77980,294,4380_32406,Bishopstown via CUH,74777-00018-1,0,4380_7778208_2080206,4380_488 -4380_77980,295,4380_32407,Bishopstown via CUH,74781-00019-1,0,4380_7778208_2080206,4380_488 -4380_77980,296,4380_32408,Bishopstown via CUH,74063-00021-1,0,4380_7778208_2080203,4380_492 -4380_77948,294,4380_3241,Ratoath,52203-00018-1,0,4380_7778208_1030108,4380_39 -4380_77980,297,4380_32416,Bishopstown via CUH,73619-00008-1,0,4380_7778208_2080201,4380_488 -4380_77980,285,4380_32417,Bishopstown via CUH,74942-00009-1,0,4380_7778208_2080207,4380_492 -4380_77980,286,4380_32418,Bishopstown via CUH,74944-00010-1,0,4380_7778208_2080207,4380_492 -4380_77980,288,4380_32419,Bishopstown via CUH,74948-00011-1,0,4380_7778208_2080207,4380_492 -4380_77948,295,4380_3242,Ratoath,52201-00019-1,0,4380_7778208_1030108,4380_39 -4380_77980,287,4380_32420,Bishopstown via CUH,74946-00012-1,0,4380_7778208_2080207,4380_492 -4380_77980,291,4380_32421,Bishopstown via CUH,74950-00013-1,0,4380_7778208_2080207,4380_493 -4380_77980,289,4380_32422,Bishopstown via CUH,74952-00014-1,0,4380_7778208_2080207,4380_492 -4380_77980,292,4380_32423,Bishopstown via CUH,74945-00016-1,0,4380_7778208_2080207,4380_492 -4380_77980,293,4380_32424,Bishopstown via CUH,74949-00017-1,0,4380_7778208_2080207,4380_492 -4380_77980,290,4380_32425,Bishopstown via CUH,74943-00015-1,0,4380_7778208_2080207,4380_492 -4380_77980,294,4380_32426,Bishopstown via CUH,74947-00018-1,0,4380_7778208_2080207,4380_492 -4380_77980,295,4380_32427,Bishopstown via CUH,74953-00019-1,0,4380_7778208_2080207,4380_492 -4380_77980,296,4380_32428,Bishopstown via CUH,74951-00021-1,0,4380_7778208_2080207,4380_493 -4380_77948,296,4380_3243,Ratoath,51837-00021-1,0,4380_7778208_1030102,4380_40 -4380_77980,285,4380_32435,Bishopstown via CUH,73622-00009-1,0,4380_7778208_2080201,4380_488 -4380_77980,286,4380_32436,Bishopstown via CUH,73628-00010-1,0,4380_7778208_2080201,4380_488 -4380_77980,288,4380_32437,Bishopstown via CUH,73626-00011-1,0,4380_7778208_2080201,4380_488 -4380_77980,287,4380_32438,Bishopstown via CUH,73620-00012-1,0,4380_7778208_2080201,4380_488 -4380_77980,291,4380_32439,Bishopstown via CUH,74536-00013-1,0,4380_7778208_2080205,4380_492 -4380_77980,289,4380_32440,Bishopstown via CUH,73624-00014-1,0,4380_7778208_2080201,4380_488 -4380_77980,292,4380_32441,Bishopstown via CUH,73629-00016-1,0,4380_7778208_2080201,4380_488 -4380_77980,293,4380_32442,Bishopstown via CUH,73627-00017-1,0,4380_7778208_2080201,4380_488 -4380_77980,290,4380_32443,Bishopstown via CUH,73623-00015-1,0,4380_7778208_2080201,4380_488 -4380_77980,294,4380_32444,Bishopstown via CUH,73621-00018-1,0,4380_7778208_2080201,4380_488 -4380_77980,295,4380_32445,Bishopstown via CUH,73625-00019-1,0,4380_7778208_2080201,4380_488 -4380_77980,296,4380_32446,Bishopstown via CUH,74537-00021-1,0,4380_7778208_2080205,4380_492 -4380_77980,297,4380_32448,Bishopstown via CUH,74064-00008-1,0,4380_7778208_2080203,4380_488 -4380_77980,285,4380_32455,Bishopstown via CUH,74073-00009-1,0,4380_7778208_2080203,4380_488 -4380_77980,286,4380_32456,Bishopstown via CUH,74071-00010-1,0,4380_7778208_2080203,4380_488 -4380_77980,288,4380_32457,Bishopstown via CUH,74069-00011-1,0,4380_7778208_2080203,4380_488 -4380_77980,287,4380_32458,Bishopstown via CUH,74067-00012-1,0,4380_7778208_2080203,4380_488 -4380_77980,291,4380_32459,Bishopstown via CUH,74783-00013-1,0,4380_7778208_2080206,4380_492 -4380_77980,289,4380_32460,Bishopstown via CUH,74065-00014-1,0,4380_7778208_2080203,4380_488 -4380_77980,292,4380_32461,Bishopstown via CUH,74072-00016-1,0,4380_7778208_2080203,4380_488 -4380_77980,293,4380_32462,Bishopstown via CUH,74070-00017-1,0,4380_7778208_2080203,4380_488 -4380_77980,290,4380_32463,Bishopstown via CUH,74074-00015-1,0,4380_7778208_2080203,4380_488 -4380_77980,294,4380_32464,Bishopstown via CUH,74068-00018-1,0,4380_7778208_2080203,4380_488 -4380_77980,295,4380_32465,Bishopstown via CUH,74066-00019-1,0,4380_7778208_2080203,4380_488 -4380_77980,296,4380_32466,Bishopstown via CUH,74784-00021-1,0,4380_7778208_2080206,4380_492 -4380_77980,297,4380_32468,Bishopstown via CUH,73877-00008-1,0,4380_7778208_2080202,4380_488 -4380_77980,285,4380_32475,Bishopstown via CUH,73880-00009-1,0,4380_7778208_2080202,4380_488 -4380_77980,286,4380_32476,Bishopstown via CUH,73886-00010-1,0,4380_7778208_2080202,4380_488 -4380_77980,288,4380_32477,Bishopstown via CUH,73882-00011-1,0,4380_7778208_2080202,4380_488 -4380_77980,287,4380_32478,Bishopstown via CUH,73878-00012-1,0,4380_7778208_2080202,4380_488 -4380_77980,291,4380_32479,Bishopstown via CUH,73630-00013-1,0,4380_7778208_2080201,4380_492 -4380_77980,289,4380_32480,Bishopstown via CUH,73884-00014-1,0,4380_7778208_2080202,4380_488 -4380_77980,292,4380_32481,Bishopstown via CUH,73887-00016-1,0,4380_7778208_2080202,4380_488 -4380_77980,293,4380_32482,Bishopstown via CUH,73883-00017-1,0,4380_7778208_2080202,4380_488 -4380_77980,290,4380_32483,Bishopstown via CUH,73881-00015-1,0,4380_7778208_2080202,4380_488 -4380_77980,294,4380_32484,Bishopstown via CUH,73879-00018-1,0,4380_7778208_2080202,4380_488 -4380_77980,295,4380_32485,Bishopstown via CUH,73885-00019-1,0,4380_7778208_2080202,4380_488 -4380_77980,296,4380_32486,Bishopstown via CUH,73631-00021-1,0,4380_7778208_2080201,4380_492 -4380_77948,285,4380_3249,Ratoath,1696-00009-1,0,4380_7778208_1030107,4380_39 -4380_77980,297,4380_32494,Bishopstown via CUH,74795-00008-1,0,4380_7778208_2080206,4380_488 -4380_77980,285,4380_32495,Bishopstown via CUH,74541-00009-1,0,4380_7778208_2080205,4380_492 -4380_77980,286,4380_32496,Bishopstown via CUH,74543-00010-1,0,4380_7778208_2080205,4380_492 -4380_77980,288,4380_32497,Bishopstown via CUH,74539-00011-1,0,4380_7778208_2080205,4380_492 -4380_77980,287,4380_32498,Bishopstown via CUH,74545-00012-1,0,4380_7778208_2080205,4380_492 -4380_77980,291,4380_32499,Bishopstown via CUH,73888-00013-1,0,4380_7778208_2080202,4380_493 -4380_77948,286,4380_3250,Ratoath,1708-00010-1,0,4380_7778208_1030107,4380_39 -4380_77980,289,4380_32500,Bishopstown via CUH,74547-00014-1,0,4380_7778208_2080205,4380_492 -4380_77980,292,4380_32501,Bishopstown via CUH,74544-00016-1,0,4380_7778208_2080205,4380_492 -4380_77980,293,4380_32502,Bishopstown via CUH,74540-00017-1,0,4380_7778208_2080205,4380_492 -4380_77980,290,4380_32503,Bishopstown via CUH,74542-00015-1,0,4380_7778208_2080205,4380_492 -4380_77980,294,4380_32504,Bishopstown via CUH,74546-00018-1,0,4380_7778208_2080205,4380_492 -4380_77980,295,4380_32505,Bishopstown via CUH,74548-00019-1,0,4380_7778208_2080205,4380_492 -4380_77980,296,4380_32506,Bishopstown via CUH,73889-00021-1,0,4380_7778208_2080202,4380_493 -4380_77948,288,4380_3251,Ratoath,1720-00011-1,0,4380_7778208_1030107,4380_39 -4380_77980,285,4380_32513,Bishopstown via CUH,74315-00009-1,0,4380_7778208_2080204,4380_488 -4380_77980,286,4380_32514,Bishopstown via CUH,74317-00010-1,0,4380_7778208_2080204,4380_488 -4380_77980,288,4380_32515,Bishopstown via CUH,74309-00011-1,0,4380_7778208_2080204,4380_488 -4380_77980,287,4380_32516,Bishopstown via CUH,74307-00012-1,0,4380_7778208_2080204,4380_488 -4380_77980,291,4380_32517,Bishopstown via CUH,74311-00013-1,0,4380_7778208_2080204,4380_492 -4380_77980,289,4380_32518,Bishopstown via CUH,74313-00014-1,0,4380_7778208_2080204,4380_488 -4380_77980,292,4380_32519,Bishopstown via CUH,74318-00016-1,0,4380_7778208_2080204,4380_488 -4380_77948,287,4380_3252,Ratoath,1732-00012-1,0,4380_7778208_1030107,4380_39 -4380_77980,293,4380_32520,Bishopstown via CUH,74310-00017-1,0,4380_7778208_2080204,4380_488 -4380_77980,290,4380_32521,Bishopstown via CUH,74316-00015-1,0,4380_7778208_2080204,4380_488 -4380_77980,294,4380_32522,Bishopstown via CUH,74308-00018-1,0,4380_7778208_2080204,4380_488 -4380_77980,295,4380_32523,Bishopstown via CUH,74314-00019-1,0,4380_7778208_2080204,4380_488 -4380_77980,296,4380_32524,Bishopstown via CUH,74312-00021-1,0,4380_7778208_2080204,4380_492 -4380_77980,297,4380_32526,Bishopstown via CUH,74551-00008-1,0,4380_7778208_2080205,4380_488 -4380_77948,289,4380_3253,Ratoath,1684-00014-1,0,4380_7778208_1030107,4380_39 -4380_77980,285,4380_32533,Curraheen,75176-00009-1,0,4380_7778208_2080208,4380_491 -4380_77980,286,4380_32534,Curraheen,75170-00010-1,0,4380_7778208_2080208,4380_491 -4380_77980,288,4380_32535,Curraheen,75174-00011-1,0,4380_7778208_2080208,4380_491 -4380_77980,287,4380_32536,Curraheen,75180-00012-1,0,4380_7778208_2080208,4380_491 -4380_77980,291,4380_32537,Bishopstown via CUH,75178-00013-1,0,4380_7778208_2080208,4380_488 -4380_77980,289,4380_32538,Curraheen,75172-00014-1,0,4380_7778208_2080208,4380_491 -4380_77980,292,4380_32539,Curraheen,75171-00016-1,0,4380_7778208_2080208,4380_491 -4380_77948,290,4380_3254,Ratoath,52138-00015-1,0,4380_7778208_1030107,4380_39 -4380_77980,293,4380_32540,Curraheen,75175-00017-1,0,4380_7778208_2080208,4380_491 -4380_77980,290,4380_32541,Curraheen,75177-00015-1,0,4380_7778208_2080208,4380_491 -4380_77980,294,4380_32542,Curraheen,75181-00018-1,0,4380_7778208_2080208,4380_491 -4380_77980,295,4380_32543,Curraheen,75173-00019-1,0,4380_7778208_2080208,4380_491 -4380_77980,296,4380_32544,Bishopstown via CUH,75179-00021-1,0,4380_7778208_2080208,4380_488 -4380_77980,297,4380_32546,Bishopstown via CUH,73643-00008-1,0,4380_7778208_2080201,4380_488 -4380_77948,292,4380_3255,Ratoath,52136-00016-1,0,4380_7778208_1030107,4380_39 -4380_77980,285,4380_32553,Bishopstown via CUH,74800-00009-1,0,4380_7778208_2080206,4380_488 -4380_77980,286,4380_32554,Bishopstown via CUH,74802-00010-1,0,4380_7778208_2080206,4380_488 -4380_77980,288,4380_32555,Bishopstown via CUH,74806-00011-1,0,4380_7778208_2080206,4380_488 -4380_77980,287,4380_32556,Bishopstown via CUH,74804-00012-1,0,4380_7778208_2080206,4380_488 -4380_77980,291,4380_32557,Bishopstown via CUH,74088-00013-1,0,4380_7778208_2080203,4380_492 -4380_77980,289,4380_32558,Bishopstown via CUH,74798-00014-1,0,4380_7778208_2080206,4380_488 -4380_77980,292,4380_32559,Bishopstown via CUH,74803-00016-1,0,4380_7778208_2080206,4380_488 -4380_77948,293,4380_3256,Ratoath,52139-00017-1,0,4380_7778208_1030107,4380_39 -4380_77980,293,4380_32560,Bishopstown via CUH,74807-00017-1,0,4380_7778208_2080206,4380_488 -4380_77980,290,4380_32561,Bishopstown via CUH,74801-00015-1,0,4380_7778208_2080206,4380_488 -4380_77980,294,4380_32562,Bishopstown via CUH,74805-00018-1,0,4380_7778208_2080206,4380_488 -4380_77980,295,4380_32563,Bishopstown via CUH,74799-00019-1,0,4380_7778208_2080206,4380_488 -4380_77980,296,4380_32564,Bishopstown via CUH,74089-00021-1,0,4380_7778208_2080203,4380_492 -4380_77948,294,4380_3257,Ratoath,52137-00018-1,0,4380_7778208_1030107,4380_39 -4380_77980,297,4380_32572,Bishopstown via CUH,74090-00008-1,0,4380_7778208_2080203,4380_488 -4380_77980,285,4380_32573,Bishopstown via CUH,74966-00009-1,0,4380_7778208_2080207,4380_492 -4380_77980,286,4380_32574,Bishopstown via CUH,74972-00010-1,0,4380_7778208_2080207,4380_492 -4380_77980,288,4380_32575,Bishopstown via CUH,74968-00011-1,0,4380_7778208_2080207,4380_492 -4380_77980,287,4380_32576,Bishopstown via CUH,74970-00012-1,0,4380_7778208_2080207,4380_492 -4380_77980,291,4380_32577,Bishopstown via CUH,74974-00013-1,0,4380_7778208_2080207,4380_493 -4380_77980,289,4380_32578,Bishopstown via CUH,74976-00014-1,0,4380_7778208_2080207,4380_492 -4380_77980,292,4380_32579,Bishopstown via CUH,74973-00016-1,0,4380_7778208_2080207,4380_492 -4380_77948,295,4380_3258,Ratoath,52135-00019-1,0,4380_7778208_1030107,4380_39 -4380_77980,293,4380_32580,Bishopstown via CUH,74969-00017-1,0,4380_7778208_2080207,4380_492 -4380_77980,290,4380_32581,Bishopstown via CUH,74967-00015-1,0,4380_7778208_2080207,4380_492 -4380_77980,294,4380_32582,Bishopstown via CUH,74971-00018-1,0,4380_7778208_2080207,4380_492 -4380_77980,295,4380_32583,Bishopstown via CUH,74977-00019-1,0,4380_7778208_2080207,4380_492 -4380_77980,296,4380_32584,Bishopstown via CUH,74975-00021-1,0,4380_7778208_2080207,4380_493 -4380_77980,285,4380_32591,Bishopstown via CUH,73654-00009-1,0,4380_7778208_2080201,4380_488 -4380_77980,286,4380_32592,Bishopstown via CUH,73652-00010-1,0,4380_7778208_2080201,4380_488 -4380_77980,288,4380_32593,Bishopstown via CUH,73648-00011-1,0,4380_7778208_2080201,4380_488 -4380_77980,287,4380_32594,Bishopstown via CUH,73646-00012-1,0,4380_7778208_2080201,4380_488 -4380_77980,291,4380_32595,Bishopstown via CUH,74563-00013-1,0,4380_7778208_2080205,4380_492 -4380_77980,289,4380_32596,Bishopstown via CUH,73650-00014-1,0,4380_7778208_2080201,4380_488 -4380_77980,292,4380_32597,Bishopstown via CUH,73653-00016-1,0,4380_7778208_2080201,4380_488 -4380_77980,293,4380_32598,Bishopstown via CUH,73649-00017-1,0,4380_7778208_2080201,4380_488 -4380_77980,290,4380_32599,Bishopstown via CUH,73655-00015-1,0,4380_7778208_2080201,4380_488 -4380_77980,294,4380_32600,Bishopstown via CUH,73647-00018-1,0,4380_7778208_2080201,4380_488 -4380_77980,295,4380_32601,Bishopstown via CUH,73651-00019-1,0,4380_7778208_2080201,4380_488 -4380_77980,296,4380_32602,Bishopstown via CUH,74564-00021-1,0,4380_7778208_2080205,4380_492 -4380_77980,297,4380_32604,Bishopstown via CUH,73903-00008-1,0,4380_7778208_2080202,4380_488 -4380_77980,285,4380_32611,Bishopstown via CUH,74097-00009-1,0,4380_7778208_2080203,4380_488 -4380_77980,286,4380_32612,Bishopstown via CUH,74091-00010-1,0,4380_7778208_2080203,4380_488 -4380_77980,288,4380_32613,Bishopstown via CUH,74099-00011-1,0,4380_7778208_2080203,4380_488 -4380_77980,287,4380_32614,Bishopstown via CUH,74093-00012-1,0,4380_7778208_2080203,4380_488 -4380_77980,291,4380_32615,Bishopstown via CUH,74809-00013-1,0,4380_7778208_2080206,4380_492 -4380_77980,289,4380_32616,Bishopstown via CUH,74095-00014-1,0,4380_7778208_2080203,4380_488 -4380_77980,292,4380_32617,Bishopstown via CUH,74092-00016-1,0,4380_7778208_2080203,4380_488 -4380_77980,293,4380_32618,Bishopstown via CUH,74100-00017-1,0,4380_7778208_2080203,4380_488 -4380_77980,290,4380_32619,Bishopstown via CUH,74098-00015-1,0,4380_7778208_2080203,4380_488 -4380_77980,294,4380_32620,Bishopstown via CUH,74094-00018-1,0,4380_7778208_2080203,4380_488 -4380_77980,295,4380_32621,Bishopstown via CUH,74096-00019-1,0,4380_7778208_2080203,4380_488 -4380_77980,296,4380_32622,Bishopstown via CUH,74810-00021-1,0,4380_7778208_2080206,4380_492 -4380_77980,297,4380_32624,Bishopstown via CUH,74811-00008-1,0,4380_7778208_2080206,4380_488 -4380_77980,285,4380_32631,Bishopstown via CUH,73904-00009-1,0,4380_7778208_2080202,4380_488 -4380_77980,286,4380_32632,Bishopstown via CUH,73906-00010-1,0,4380_7778208_2080202,4380_488 -4380_77980,288,4380_32633,Bishopstown via CUH,73910-00011-1,0,4380_7778208_2080202,4380_488 -4380_77980,287,4380_32634,Bishopstown via CUH,73912-00012-1,0,4380_7778208_2080202,4380_488 -4380_77980,291,4380_32635,Bishopstown via CUH,73657-00013-1,0,4380_7778208_2080201,4380_492 -4380_77980,289,4380_32636,Bishopstown via CUH,73908-00014-1,0,4380_7778208_2080202,4380_488 -4380_77980,292,4380_32637,Bishopstown via CUH,73907-00016-1,0,4380_7778208_2080202,4380_488 -4380_77980,293,4380_32638,Bishopstown via CUH,73911-00017-1,0,4380_7778208_2080202,4380_488 -4380_77980,290,4380_32639,Bishopstown via CUH,73905-00015-1,0,4380_7778208_2080202,4380_488 -4380_77980,294,4380_32640,Bishopstown via CUH,73913-00018-1,0,4380_7778208_2080202,4380_488 -4380_77980,295,4380_32641,Bishopstown via CUH,73909-00019-1,0,4380_7778208_2080202,4380_488 -4380_77980,296,4380_32642,Bishopstown via CUH,73658-00021-1,0,4380_7778208_2080201,4380_492 -4380_77980,297,4380_32650,Bishopstown via CUH,74569-00008-1,0,4380_7778208_2080205,4380_488 -4380_77980,285,4380_32651,Bishopstown via CUH,74567-00009-1,0,4380_7778208_2080205,4380_492 -4380_77980,286,4380_32652,Bishopstown via CUH,74572-00010-1,0,4380_7778208_2080205,4380_492 -4380_77980,288,4380_32653,Bishopstown via CUH,74570-00011-1,0,4380_7778208_2080205,4380_492 -4380_77980,287,4380_32654,Bishopstown via CUH,74565-00012-1,0,4380_7778208_2080205,4380_492 -4380_77980,291,4380_32655,Bishopstown via CUH,73914-00013-1,0,4380_7778208_2080202,4380_493 -4380_77980,289,4380_32656,Bishopstown via CUH,74574-00014-1,0,4380_7778208_2080205,4380_492 -4380_77980,292,4380_32657,Bishopstown via CUH,74573-00016-1,0,4380_7778208_2080205,4380_492 -4380_77980,293,4380_32658,Bishopstown via CUH,74571-00017-1,0,4380_7778208_2080205,4380_492 -4380_77980,290,4380_32659,Bishopstown via CUH,74568-00015-1,0,4380_7778208_2080205,4380_492 -4380_77948,297,4380_3266,Ratoath,1244-00008-1,0,4380_7778208_1030101,4380_39 -4380_77980,294,4380_32660,Bishopstown via CUH,74566-00018-1,0,4380_7778208_2080205,4380_492 -4380_77980,295,4380_32661,Bishopstown via CUH,74575-00019-1,0,4380_7778208_2080205,4380_492 -4380_77980,296,4380_32662,Bishopstown via CUH,73915-00021-1,0,4380_7778208_2080202,4380_493 -4380_77980,285,4380_32669,Bishopstown via CUH,74333-00009-1,0,4380_7778208_2080204,4380_488 -4380_77948,291,4380_3267,Ratoath,1404-00013-1,0,4380_7778208_1030103,4380_40 -4380_77980,286,4380_32670,Bishopstown via CUH,74337-00010-1,0,4380_7778208_2080204,4380_488 -4380_77980,288,4380_32671,Bishopstown via CUH,74341-00011-1,0,4380_7778208_2080204,4380_488 -4380_77980,287,4380_32672,Bishopstown via CUH,74335-00012-1,0,4380_7778208_2080204,4380_488 -4380_77980,291,4380_32673,Bishopstown via CUH,74331-00013-1,0,4380_7778208_2080204,4380_492 -4380_77980,289,4380_32674,Bishopstown via CUH,74339-00014-1,0,4380_7778208_2080204,4380_488 -4380_77980,292,4380_32675,Bishopstown via CUH,74338-00016-1,0,4380_7778208_2080204,4380_488 -4380_77980,293,4380_32676,Bishopstown via CUH,74342-00017-1,0,4380_7778208_2080204,4380_488 -4380_77980,290,4380_32677,Bishopstown via CUH,74334-00015-1,0,4380_7778208_2080204,4380_488 -4380_77980,294,4380_32678,Bishopstown via CUH,74336-00018-1,0,4380_7778208_2080204,4380_488 -4380_77980,295,4380_32679,Bishopstown via CUH,74340-00019-1,0,4380_7778208_2080204,4380_488 -4380_77948,296,4380_3268,Ratoath,51897-00021-1,0,4380_7778208_1030103,4380_40 -4380_77980,296,4380_32680,Bishopstown via CUH,74332-00021-1,0,4380_7778208_2080204,4380_492 -4380_77980,297,4380_32682,Bishopstown via CUH,73669-00008-1,0,4380_7778208_2080201,4380_488 -4380_77980,285,4380_32689,Curraheen,75194-00009-1,0,4380_7778208_2080208,4380_491 -4380_77980,286,4380_32690,Curraheen,75200-00010-1,0,4380_7778208_2080208,4380_491 -4380_77980,288,4380_32691,Curraheen,75204-00011-1,0,4380_7778208_2080208,4380_491 -4380_77980,287,4380_32692,Curraheen,75196-00012-1,0,4380_7778208_2080208,4380_491 -4380_77980,291,4380_32693,Bishopstown via CUH,75198-00013-1,0,4380_7778208_2080208,4380_488 -4380_77980,289,4380_32694,Curraheen,75202-00014-1,0,4380_7778208_2080208,4380_491 -4380_77980,292,4380_32695,Curraheen,75201-00016-1,0,4380_7778208_2080208,4380_491 -4380_77980,293,4380_32696,Curraheen,75205-00017-1,0,4380_7778208_2080208,4380_491 -4380_77980,290,4380_32697,Curraheen,75195-00015-1,0,4380_7778208_2080208,4380_491 -4380_77980,294,4380_32698,Curraheen,75197-00018-1,0,4380_7778208_2080208,4380_491 -4380_77980,295,4380_32699,Curraheen,75203-00019-1,0,4380_7778208_2080208,4380_491 -4380_77980,296,4380_32700,Bishopstown via CUH,75199-00021-1,0,4380_7778208_2080208,4380_488 -4380_77980,297,4380_32702,Bishopstown via CUH,74114-00008-1,0,4380_7778208_2080203,4380_488 -4380_77980,285,4380_32709,Bishopstown via CUH,74829-00009-1,0,4380_7778208_2080206,4380_488 -4380_77980,286,4380_32710,Bishopstown via CUH,74831-00010-1,0,4380_7778208_2080206,4380_488 -4380_77980,288,4380_32711,Bishopstown via CUH,74833-00011-1,0,4380_7778208_2080206,4380_488 -4380_77980,287,4380_32712,Bishopstown via CUH,74825-00012-1,0,4380_7778208_2080206,4380_488 -4380_77980,291,4380_32713,Bishopstown via CUH,74115-00013-1,0,4380_7778208_2080203,4380_492 -4380_77980,289,4380_32714,Bishopstown via CUH,74827-00014-1,0,4380_7778208_2080206,4380_488 -4380_77980,292,4380_32715,Bishopstown via CUH,74832-00016-1,0,4380_7778208_2080206,4380_488 -4380_77980,293,4380_32716,Bishopstown via CUH,74834-00017-1,0,4380_7778208_2080206,4380_488 -4380_77980,290,4380_32717,Bishopstown via CUH,74830-00015-1,0,4380_7778208_2080206,4380_488 -4380_77980,294,4380_32718,Bishopstown via CUH,74826-00018-1,0,4380_7778208_2080206,4380_488 -4380_77980,295,4380_32719,Bishopstown via CUH,74828-00019-1,0,4380_7778208_2080206,4380_488 -4380_77980,296,4380_32720,Bishopstown via CUH,74116-00021-1,0,4380_7778208_2080203,4380_492 -4380_77980,297,4380_32728,Bishopstown via CUH,73929-00008-1,0,4380_7778208_2080202,4380_488 -4380_77980,285,4380_32729,Bishopstown via CUH,74990-00009-1,0,4380_7778208_2080207,4380_492 -4380_77980,286,4380_32730,Bishopstown via CUH,74996-00010-1,0,4380_7778208_2080207,4380_492 -4380_77980,288,4380_32731,Bishopstown via CUH,74992-00011-1,0,4380_7778208_2080207,4380_492 -4380_77980,287,4380_32732,Bishopstown via CUH,75000-00012-1,0,4380_7778208_2080207,4380_492 -4380_77980,291,4380_32733,Bishopstown via CUH,74994-00013-1,0,4380_7778208_2080207,4380_493 -4380_77980,289,4380_32734,Bishopstown via CUH,74998-00014-1,0,4380_7778208_2080207,4380_492 -4380_77980,292,4380_32735,Bishopstown via CUH,74997-00016-1,0,4380_7778208_2080207,4380_492 -4380_77980,293,4380_32736,Bishopstown via CUH,74993-00017-1,0,4380_7778208_2080207,4380_492 -4380_77980,290,4380_32737,Bishopstown via CUH,74991-00015-1,0,4380_7778208_2080207,4380_492 -4380_77980,294,4380_32738,Bishopstown via CUH,75001-00018-1,0,4380_7778208_2080207,4380_492 -4380_77980,295,4380_32739,Bishopstown via CUH,74999-00019-1,0,4380_7778208_2080207,4380_492 -4380_77948,285,4380_3274,Ratoath,1612-00009-1,0,4380_7778208_1030106,4380_39 -4380_77980,296,4380_32740,Bishopstown via CUH,74995-00021-1,0,4380_7778208_2080207,4380_493 -4380_77980,285,4380_32747,Bishopstown via CUH,73679-00009-1,0,4380_7778208_2080201,4380_488 -4380_77980,286,4380_32748,Bishopstown via CUH,73675-00010-1,0,4380_7778208_2080201,4380_488 -4380_77980,288,4380_32749,Bishopstown via CUH,73677-00011-1,0,4380_7778208_2080201,4380_488 -4380_77948,286,4380_3275,Ratoath,1624-00010-1,0,4380_7778208_1030106,4380_39 -4380_77980,287,4380_32750,Bishopstown via CUH,73673-00012-1,0,4380_7778208_2080201,4380_488 -4380_77980,291,4380_32751,Bishopstown via CUH,74589-00013-1,0,4380_7778208_2080205,4380_492 -4380_77980,289,4380_32752,Bishopstown via CUH,73681-00014-1,0,4380_7778208_2080201,4380_488 -4380_77980,292,4380_32753,Bishopstown via CUH,73676-00016-1,0,4380_7778208_2080201,4380_488 -4380_77980,293,4380_32754,Bishopstown via CUH,73678-00017-1,0,4380_7778208_2080201,4380_488 -4380_77980,290,4380_32755,Bishopstown via CUH,73680-00015-1,0,4380_7778208_2080201,4380_488 -4380_77980,294,4380_32756,Bishopstown via CUH,73674-00018-1,0,4380_7778208_2080201,4380_488 -4380_77980,295,4380_32757,Bishopstown via CUH,73682-00019-1,0,4380_7778208_2080201,4380_488 -4380_77980,296,4380_32758,Bishopstown via CUH,74590-00021-1,0,4380_7778208_2080205,4380_492 -4380_77948,288,4380_3276,Ratoath,1636-00011-1,0,4380_7778208_1030106,4380_39 -4380_77980,297,4380_32760,Bishopstown via CUH,74835-00008-1,0,4380_7778208_2080206,4380_488 -4380_77980,285,4380_32767,Curraheen,74124-00009-1,0,4380_7778208_2080203,4380_491 -4380_77980,286,4380_32768,Curraheen,74119-00010-1,0,4380_7778208_2080203,4380_491 -4380_77980,288,4380_32769,Curraheen,74121-00011-1,0,4380_7778208_2080203,4380_491 -4380_77948,287,4380_3277,Ratoath,1648-00012-1,0,4380_7778208_1030106,4380_39 -4380_77980,287,4380_32770,Curraheen,74117-00012-1,0,4380_7778208_2080203,4380_491 -4380_77980,291,4380_32771,Bishopstown via CUH,74836-00013-1,0,4380_7778208_2080206,4380_488 -4380_77980,289,4380_32772,Curraheen,74126-00014-1,0,4380_7778208_2080203,4380_491 -4380_77980,292,4380_32773,Curraheen,74120-00016-1,0,4380_7778208_2080203,4380_491 -4380_77980,293,4380_32774,Curraheen,74122-00017-1,0,4380_7778208_2080203,4380_491 -4380_77980,290,4380_32775,Curraheen,74125-00015-1,0,4380_7778208_2080203,4380_491 -4380_77980,294,4380_32776,Curraheen,74118-00018-1,0,4380_7778208_2080203,4380_491 -4380_77980,295,4380_32777,Curraheen,74127-00019-1,0,4380_7778208_2080203,4380_491 -4380_77980,296,4380_32778,Bishopstown via CUH,74837-00021-1,0,4380_7778208_2080206,4380_488 -4380_77948,289,4380_3278,Ratoath,1600-00014-1,0,4380_7778208_1030106,4380_39 -4380_77980,297,4380_32780,Bishopstown via CUH,74591-00008-1,0,4380_7778208_2080205,4380_488 -4380_77980,285,4380_32787,Bishopstown via CUH,73932-00009-1,0,4380_7778208_2080202,4380_488 -4380_77980,286,4380_32788,Bishopstown via CUH,73934-00010-1,0,4380_7778208_2080202,4380_488 -4380_77980,288,4380_32789,Bishopstown via CUH,73936-00011-1,0,4380_7778208_2080202,4380_488 -4380_77948,290,4380_3279,Ratoath,52066-00015-1,0,4380_7778208_1030106,4380_39 -4380_77980,287,4380_32790,Bishopstown via CUH,73938-00012-1,0,4380_7778208_2080202,4380_488 -4380_77980,291,4380_32791,Bishopstown via CUH,73683-00013-1,0,4380_7778208_2080201,4380_492 -4380_77980,289,4380_32792,Bishopstown via CUH,73930-00014-1,0,4380_7778208_2080202,4380_488 -4380_77980,292,4380_32793,Bishopstown via CUH,73935-00016-1,0,4380_7778208_2080202,4380_488 -4380_77980,293,4380_32794,Bishopstown via CUH,73937-00017-1,0,4380_7778208_2080202,4380_488 -4380_77980,290,4380_32795,Bishopstown via CUH,73933-00015-1,0,4380_7778208_2080202,4380_488 -4380_77980,294,4380_32796,Bishopstown via CUH,73939-00018-1,0,4380_7778208_2080202,4380_488 -4380_77980,295,4380_32797,Bishopstown via CUH,73931-00019-1,0,4380_7778208_2080202,4380_488 -4380_77980,296,4380_32798,Bishopstown via CUH,73684-00021-1,0,4380_7778208_2080201,4380_492 -4380_77946,285,4380_328,Drogheda,50461-00009-1,1,4380_7778208_1000915,4380_6 -4380_77948,292,4380_3280,Ratoath,52068-00016-1,0,4380_7778208_1030106,4380_39 -4380_77980,297,4380_32806,Bishopstown via CUH,73685-00008-1,0,4380_7778208_2080201,4380_488 -4380_77980,285,4380_32807,Bishopstown via CUH,74596-00009-1,0,4380_7778208_2080205,4380_492 -4380_77980,286,4380_32808,Bishopstown via CUH,74600-00010-1,0,4380_7778208_2080205,4380_492 -4380_77980,288,4380_32809,Bishopstown via CUH,74598-00011-1,0,4380_7778208_2080205,4380_492 -4380_77948,293,4380_3281,Ratoath,52067-00017-1,0,4380_7778208_1030106,4380_39 -4380_77980,287,4380_32810,Bishopstown via CUH,74592-00012-1,0,4380_7778208_2080205,4380_492 -4380_77980,291,4380_32811,Bishopstown via CUH,73941-00013-1,0,4380_7778208_2080202,4380_493 -4380_77980,289,4380_32812,Bishopstown via CUH,74594-00014-1,0,4380_7778208_2080205,4380_492 -4380_77980,292,4380_32813,Bishopstown via CUH,74601-00016-1,0,4380_7778208_2080205,4380_492 -4380_77980,293,4380_32814,Bishopstown via CUH,74599-00017-1,0,4380_7778208_2080205,4380_492 -4380_77980,290,4380_32815,Bishopstown via CUH,74597-00015-1,0,4380_7778208_2080205,4380_492 -4380_77980,294,4380_32816,Bishopstown via CUH,74593-00018-1,0,4380_7778208_2080205,4380_492 -4380_77980,295,4380_32817,Bishopstown via CUH,74595-00019-1,0,4380_7778208_2080205,4380_492 -4380_77980,296,4380_32818,Bishopstown via CUH,73942-00021-1,0,4380_7778208_2080202,4380_493 -4380_77948,294,4380_3282,Ratoath,52065-00018-1,0,4380_7778208_1030106,4380_39 -4380_77980,285,4380_32825,Bishopstown via CUH,74359-00009-1,0,4380_7778208_2080204,4380_488 -4380_77980,286,4380_32826,Bishopstown via CUH,74355-00010-1,0,4380_7778208_2080204,4380_488 -4380_77980,288,4380_32827,Bishopstown via CUH,74361-00011-1,0,4380_7778208_2080204,4380_488 -4380_77980,287,4380_32828,Bishopstown via CUH,74357-00012-1,0,4380_7778208_2080204,4380_488 -4380_77980,291,4380_32829,Bishopstown via CUH,74363-00013-1,0,4380_7778208_2080204,4380_492 -4380_77948,295,4380_3283,Ratoath,52069-00019-1,0,4380_7778208_1030106,4380_39 -4380_77980,289,4380_32830,Bishopstown via CUH,74365-00014-1,0,4380_7778208_2080204,4380_488 -4380_77980,292,4380_32831,Bishopstown via CUH,74356-00016-1,0,4380_7778208_2080204,4380_488 -4380_77980,293,4380_32832,Bishopstown via CUH,74362-00017-1,0,4380_7778208_2080204,4380_488 -4380_77980,290,4380_32833,Bishopstown via CUH,74360-00015-1,0,4380_7778208_2080204,4380_488 -4380_77980,294,4380_32834,Bishopstown via CUH,74358-00018-1,0,4380_7778208_2080204,4380_488 -4380_77980,295,4380_32835,Bishopstown via CUH,74366-00019-1,0,4380_7778208_2080204,4380_488 -4380_77980,296,4380_32836,Bishopstown via CUH,74364-00021-1,0,4380_7778208_2080204,4380_492 -4380_77980,297,4380_32838,Bishopstown via CUH,74130-00008-1,0,4380_7778208_2080203,4380_488 -4380_77980,285,4380_32845,Bishopstown via CUH,75220-00009-1,0,4380_7778208_2080208,4380_488 -4380_77980,286,4380_32846,Bishopstown via CUH,75228-00010-1,0,4380_7778208_2080208,4380_488 -4380_77980,288,4380_32847,Bishopstown via CUH,75222-00011-1,0,4380_7778208_2080208,4380_488 -4380_77980,287,4380_32848,Bishopstown via CUH,75218-00012-1,0,4380_7778208_2080208,4380_488 -4380_77980,291,4380_32849,Bishopstown via CUH,75224-00013-1,0,4380_7778208_2080208,4380_492 -4380_77980,289,4380_32850,Bishopstown via CUH,75226-00014-1,0,4380_7778208_2080208,4380_488 -4380_77980,292,4380_32851,Bishopstown via CUH,75229-00016-1,0,4380_7778208_2080208,4380_488 -4380_77980,293,4380_32852,Bishopstown via CUH,75223-00017-1,0,4380_7778208_2080208,4380_488 -4380_77980,290,4380_32853,Bishopstown via CUH,75221-00015-1,0,4380_7778208_2080208,4380_488 -4380_77980,294,4380_32854,Bishopstown via CUH,75219-00018-1,0,4380_7778208_2080208,4380_488 -4380_77980,295,4380_32855,Bishopstown via CUH,75227-00019-1,0,4380_7778208_2080208,4380_488 -4380_77980,296,4380_32856,Bishopstown via CUH,75225-00021-1,0,4380_7778208_2080208,4380_492 -4380_77980,297,4380_32858,Bishopstown via CUH,73943-00008-1,0,4380_7778208_2080202,4380_488 -4380_77980,285,4380_32865,Bishopstown via CUH,74855-00009-1,0,4380_7778208_2080206,4380_488 -4380_77980,286,4380_32866,Bishopstown via CUH,74853-00010-1,0,4380_7778208_2080206,4380_488 -4380_77980,288,4380_32867,Bishopstown via CUH,74857-00011-1,0,4380_7778208_2080206,4380_488 -4380_77980,287,4380_32868,Bishopstown via CUH,74851-00012-1,0,4380_7778208_2080206,4380_488 -4380_77980,291,4380_32869,Bishopstown via CUH,74141-00013-1,0,4380_7778208_2080203,4380_492 -4380_77980,289,4380_32870,Bishopstown via CUH,74859-00014-1,0,4380_7778208_2080206,4380_488 -4380_77980,292,4380_32871,Bishopstown via CUH,74854-00016-1,0,4380_7778208_2080206,4380_488 -4380_77980,293,4380_32872,Bishopstown via CUH,74858-00017-1,0,4380_7778208_2080206,4380_488 -4380_77980,290,4380_32873,Bishopstown via CUH,74856-00015-1,0,4380_7778208_2080206,4380_488 -4380_77980,294,4380_32874,Bishopstown via CUH,74852-00018-1,0,4380_7778208_2080206,4380_488 -4380_77980,295,4380_32875,Bishopstown via CUH,74860-00019-1,0,4380_7778208_2080206,4380_488 -4380_77980,296,4380_32876,Bishopstown via CUH,74142-00021-1,0,4380_7778208_2080203,4380_492 -4380_77980,297,4380_32884,Bishopstown via CUH,74861-00008-1,0,4380_7778208_2080206,4380_488 -4380_77980,285,4380_32885,Bishopstown via CUH,75014-00009-1,0,4380_7778208_2080207,4380_492 -4380_77980,286,4380_32886,Bishopstown via CUH,75016-00010-1,0,4380_7778208_2080207,4380_492 -4380_77980,288,4380_32887,Bishopstown via CUH,75022-00011-1,0,4380_7778208_2080207,4380_492 -4380_77980,287,4380_32888,Bishopstown via CUH,75020-00012-1,0,4380_7778208_2080207,4380_492 -4380_77980,291,4380_32889,Bishopstown via CUH,75018-00013-1,0,4380_7778208_2080207,4380_493 -4380_77980,289,4380_32890,Bishopstown via CUH,75024-00014-1,0,4380_7778208_2080207,4380_492 -4380_77980,292,4380_32891,Bishopstown via CUH,75017-00016-1,0,4380_7778208_2080207,4380_492 -4380_77980,293,4380_32892,Bishopstown via CUH,75023-00017-1,0,4380_7778208_2080207,4380_492 -4380_77980,290,4380_32893,Bishopstown via CUH,75015-00015-1,0,4380_7778208_2080207,4380_492 -4380_77980,294,4380_32894,Bishopstown via CUH,75021-00018-1,0,4380_7778208_2080207,4380_492 -4380_77980,295,4380_32895,Bishopstown via CUH,75025-00019-1,0,4380_7778208_2080207,4380_492 -4380_77980,296,4380_32896,Bishopstown via CUH,75019-00021-1,0,4380_7778208_2080207,4380_493 -4380_77946,286,4380_329,Drogheda,50457-00010-1,1,4380_7778208_1000915,4380_6 -4380_77948,285,4380_3290,Ratoath,1842-00009-1,0,4380_7778208_1030109,4380_39 -4380_77980,285,4380_32903,Bishopstown via CUH,73705-00009-1,0,4380_7778208_2080201,4380_488 -4380_77980,286,4380_32904,Bishopstown via CUH,73701-00010-1,0,4380_7778208_2080201,4380_488 -4380_77980,288,4380_32905,Bishopstown via CUH,73707-00011-1,0,4380_7778208_2080201,4380_488 -4380_77980,287,4380_32906,Bishopstown via CUH,73699-00012-1,0,4380_7778208_2080201,4380_488 -4380_77980,291,4380_32907,Bishopstown via CUH,74615-00013-1,0,4380_7778208_2080205,4380_492 -4380_77980,289,4380_32908,Bishopstown via CUH,73703-00014-1,0,4380_7778208_2080201,4380_488 -4380_77980,292,4380_32909,Bishopstown via CUH,73702-00016-1,0,4380_7778208_2080201,4380_488 -4380_77948,286,4380_3291,Ratoath,1852-00010-1,0,4380_7778208_1030109,4380_39 -4380_77980,293,4380_32910,Bishopstown via CUH,73708-00017-1,0,4380_7778208_2080201,4380_488 -4380_77980,290,4380_32911,Bishopstown via CUH,73706-00015-1,0,4380_7778208_2080201,4380_488 -4380_77980,294,4380_32912,Bishopstown via CUH,73700-00018-1,0,4380_7778208_2080201,4380_488 -4380_77980,295,4380_32913,Bishopstown via CUH,73704-00019-1,0,4380_7778208_2080201,4380_488 -4380_77980,296,4380_32914,Bishopstown via CUH,74616-00021-1,0,4380_7778208_2080205,4380_492 -4380_77980,297,4380_32916,Bishopstown via CUH,74617-00008-1,0,4380_7778208_2080205,4380_488 -4380_77948,288,4380_3292,Ratoath,1862-00011-1,0,4380_7778208_1030109,4380_39 -4380_77980,285,4380_32923,Bishopstown via CUH,74144-00009-1,0,4380_7778208_2080203,4380_488 -4380_77980,286,4380_32924,Bishopstown via CUH,74146-00010-1,0,4380_7778208_2080203,4380_488 -4380_77980,288,4380_32925,Bishopstown via CUH,74150-00011-1,0,4380_7778208_2080203,4380_488 -4380_77980,287,4380_32926,Bishopstown via CUH,74152-00012-1,0,4380_7778208_2080203,4380_488 -4380_77980,291,4380_32927,Bishopstown via CUH,74862-00013-1,0,4380_7778208_2080206,4380_492 -4380_77980,289,4380_32928,Bishopstown via CUH,74148-00014-1,0,4380_7778208_2080203,4380_488 -4380_77980,292,4380_32929,Bishopstown via CUH,74147-00016-1,0,4380_7778208_2080203,4380_488 -4380_77948,287,4380_3293,Ratoath,1872-00012-1,0,4380_7778208_1030109,4380_39 -4380_77980,293,4380_32930,Bishopstown via CUH,74151-00017-1,0,4380_7778208_2080203,4380_488 -4380_77980,290,4380_32931,Bishopstown via CUH,74145-00015-1,0,4380_7778208_2080203,4380_488 -4380_77980,294,4380_32932,Bishopstown via CUH,74153-00018-1,0,4380_7778208_2080203,4380_488 -4380_77980,295,4380_32933,Bishopstown via CUH,74149-00019-1,0,4380_7778208_2080203,4380_488 -4380_77980,296,4380_32934,Bishopstown via CUH,74863-00021-1,0,4380_7778208_2080206,4380_492 -4380_77980,297,4380_32936,Bishopstown via CUH,73709-00008-1,0,4380_7778208_2080201,4380_488 -4380_77948,289,4380_3294,Ratoath,1832-00014-1,0,4380_7778208_1030109,4380_39 -4380_77980,285,4380_32943,Bishopstown via CUH,73961-00009-1,0,4380_7778208_2080202,4380_488 -4380_77980,286,4380_32944,Bishopstown via CUH,73957-00010-1,0,4380_7778208_2080202,4380_488 -4380_77980,288,4380_32945,Bishopstown via CUH,73965-00011-1,0,4380_7778208_2080202,4380_488 -4380_77980,287,4380_32946,Bishopstown via CUH,73963-00012-1,0,4380_7778208_2080202,4380_488 -4380_77980,291,4380_32947,Bishopstown via CUH,73710-00013-1,0,4380_7778208_2080201,4380_492 -4380_77980,289,4380_32948,Bishopstown via CUH,73959-00014-1,0,4380_7778208_2080202,4380_488 -4380_77980,292,4380_32949,Bishopstown via CUH,73958-00016-1,0,4380_7778208_2080202,4380_488 -4380_77948,290,4380_3295,Ratoath,52267-00015-1,0,4380_7778208_1030109,4380_39 -4380_77980,293,4380_32950,Bishopstown via CUH,73966-00017-1,0,4380_7778208_2080202,4380_488 -4380_77980,290,4380_32951,Bishopstown via CUH,73962-00015-1,0,4380_7778208_2080202,4380_488 -4380_77980,294,4380_32952,Bishopstown via CUH,73964-00018-1,0,4380_7778208_2080202,4380_488 -4380_77980,295,4380_32953,Bishopstown via CUH,73960-00019-1,0,4380_7778208_2080202,4380_488 -4380_77980,296,4380_32954,Bishopstown via CUH,73711-00021-1,0,4380_7778208_2080201,4380_492 -4380_77948,291,4380_3296,Ratoath,1522-00013-1,0,4380_7778208_1030104,4380_40 -4380_77980,297,4380_32962,Bishopstown via CUH,74156-00008-1,0,4380_7778208_2080203,4380_488 -4380_77980,285,4380_32963,Bishopstown via CUH,74618-00009-1,0,4380_7778208_2080205,4380_492 -4380_77980,286,4380_32964,Bishopstown via CUH,74620-00010-1,0,4380_7778208_2080205,4380_492 -4380_77980,288,4380_32965,Bishopstown via CUH,74624-00011-1,0,4380_7778208_2080205,4380_492 -4380_77980,287,4380_32966,Bishopstown via CUH,74626-00012-1,0,4380_7778208_2080205,4380_492 -4380_77980,291,4380_32967,Bishopstown via CUH,73967-00013-1,0,4380_7778208_2080202,4380_493 -4380_77980,289,4380_32968,Bishopstown via CUH,74622-00014-1,0,4380_7778208_2080205,4380_492 -4380_77980,292,4380_32969,Bishopstown via CUH,74621-00016-1,0,4380_7778208_2080205,4380_492 -4380_77948,292,4380_3297,Ratoath,52269-00016-1,0,4380_7778208_1030109,4380_39 -4380_77980,293,4380_32970,Bishopstown via CUH,74625-00017-1,0,4380_7778208_2080205,4380_492 -4380_77980,290,4380_32971,Bishopstown via CUH,74619-00015-1,0,4380_7778208_2080205,4380_492 -4380_77980,294,4380_32972,Bishopstown via CUH,74627-00018-1,0,4380_7778208_2080205,4380_492 -4380_77980,295,4380_32973,Bishopstown via CUH,74623-00019-1,0,4380_7778208_2080205,4380_492 -4380_77980,296,4380_32974,Bishopstown via CUH,73968-00021-1,0,4380_7778208_2080202,4380_493 -4380_77948,293,4380_3298,Ratoath,52268-00017-1,0,4380_7778208_1030109,4380_39 -4380_77980,285,4380_32981,Bishopstown via CUH,74387-00009-1,0,4380_7778208_2080204,4380_488 -4380_77980,286,4380_32982,Bishopstown via CUH,74389-00010-1,0,4380_7778208_2080204,4380_488 -4380_77980,288,4380_32983,Bishopstown via CUH,74385-00011-1,0,4380_7778208_2080204,4380_488 -4380_77980,287,4380_32984,Bishopstown via CUH,74381-00012-1,0,4380_7778208_2080204,4380_488 -4380_77980,291,4380_32985,Bishopstown via CUH,74379-00013-1,0,4380_7778208_2080204,4380_492 -4380_77980,289,4380_32986,Bishopstown via CUH,74383-00014-1,0,4380_7778208_2080204,4380_488 -4380_77980,292,4380_32987,Bishopstown via CUH,74390-00016-1,0,4380_7778208_2080204,4380_488 -4380_77980,293,4380_32988,Bishopstown via CUH,74386-00017-1,0,4380_7778208_2080204,4380_488 -4380_77980,290,4380_32989,Bishopstown via CUH,74388-00015-1,0,4380_7778208_2080204,4380_488 -4380_77948,294,4380_3299,Ratoath,52270-00018-1,0,4380_7778208_1030109,4380_39 -4380_77980,294,4380_32990,Bishopstown via CUH,74382-00018-1,0,4380_7778208_2080204,4380_488 -4380_77980,295,4380_32991,Bishopstown via CUH,74384-00019-1,0,4380_7778208_2080204,4380_488 -4380_77980,296,4380_32992,Bishopstown via CUH,74380-00021-1,0,4380_7778208_2080204,4380_492 -4380_77980,297,4380_32994,Bishopstown via CUH,73969-00008-1,0,4380_7778208_2080202,4380_488 -4380_77946,295,4380_33,Dundalk,114774-00019-1,0,4380_7778208_10088801,4380_3 -4380_77946,297,4380_330,Drogheda,50223-00008-1,1,4380_7778208_1000909,4380_8 -4380_77948,295,4380_3300,Ratoath,52271-00019-1,0,4380_7778208_1030109,4380_39 -4380_77980,285,4380_33001,Bishopstown via CUH,75248-00009-1,0,4380_7778208_2080208,4380_488 -4380_77980,286,4380_33002,Bishopstown via CUH,75252-00010-1,0,4380_7778208_2080208,4380_488 -4380_77980,288,4380_33003,Bishopstown via CUH,75250-00011-1,0,4380_7778208_2080208,4380_488 -4380_77980,287,4380_33004,Bishopstown via CUH,75242-00012-1,0,4380_7778208_2080208,4380_488 -4380_77980,291,4380_33005,Bishopstown via CUH,75244-00013-1,0,4380_7778208_2080208,4380_492 -4380_77980,289,4380_33006,Bishopstown via CUH,75246-00014-1,0,4380_7778208_2080208,4380_488 -4380_77980,292,4380_33007,Bishopstown via CUH,75253-00016-1,0,4380_7778208_2080208,4380_488 -4380_77980,293,4380_33008,Bishopstown via CUH,75251-00017-1,0,4380_7778208_2080208,4380_488 -4380_77980,290,4380_33009,Bishopstown via CUH,75249-00015-1,0,4380_7778208_2080208,4380_488 -4380_77948,296,4380_3301,Ratoath,51959-00021-1,0,4380_7778208_1030104,4380_40 -4380_77980,294,4380_33010,Bishopstown via CUH,75243-00018-1,0,4380_7778208_2080208,4380_488 -4380_77980,295,4380_33011,Bishopstown via CUH,75247-00019-1,0,4380_7778208_2080208,4380_488 -4380_77980,296,4380_33012,Bishopstown via CUH,75245-00021-1,0,4380_7778208_2080208,4380_492 -4380_77980,297,4380_33014,Bishopstown via CUH,74877-00008-1,0,4380_7778208_2080206,4380_488 -4380_77948,285,4380_3302,Ratoath,1909-00009-1,0,4380_7778208_1030110,4380_39 -4380_77980,285,4380_33021,Bishopstown via CUH,74884-00009-1,0,4380_7778208_2080206,4380_488 -4380_77980,286,4380_33022,Bishopstown via CUH,74882-00010-1,0,4380_7778208_2080206,4380_488 -4380_77980,288,4380_33023,Bishopstown via CUH,74878-00011-1,0,4380_7778208_2080206,4380_488 -4380_77980,287,4380_33024,Bishopstown via CUH,74880-00012-1,0,4380_7778208_2080206,4380_488 -4380_77980,291,4380_33025,Bishopstown via CUH,74167-00013-1,0,4380_7778208_2080203,4380_492 -4380_77980,289,4380_33026,Bishopstown via CUH,74886-00014-1,0,4380_7778208_2080206,4380_488 -4380_77980,292,4380_33027,Bishopstown via CUH,74883-00016-1,0,4380_7778208_2080206,4380_488 -4380_77980,293,4380_33028,Bishopstown via CUH,74879-00017-1,0,4380_7778208_2080206,4380_488 -4380_77980,290,4380_33029,Bishopstown via CUH,74885-00015-1,0,4380_7778208_2080206,4380_488 -4380_77948,286,4380_3303,Ratoath,1919-00010-1,0,4380_7778208_1030110,4380_39 -4380_77980,294,4380_33030,Bishopstown via CUH,74881-00018-1,0,4380_7778208_2080206,4380_488 -4380_77980,295,4380_33031,Bishopstown via CUH,74887-00019-1,0,4380_7778208_2080206,4380_488 -4380_77980,296,4380_33032,Bishopstown via CUH,74168-00021-1,0,4380_7778208_2080203,4380_492 -4380_77948,288,4380_3304,Ratoath,1929-00011-1,0,4380_7778208_1030110,4380_39 -4380_77980,297,4380_33040,Bishopstown via CUH,74641-00008-1,0,4380_7778208_2080205,4380_488 -4380_77980,285,4380_33041,Bishopstown via CUH,75038-00009-1,0,4380_7778208_2080207,4380_492 -4380_77980,286,4380_33042,Bishopstown via CUH,75048-00010-1,0,4380_7778208_2080207,4380_492 -4380_77980,288,4380_33043,Bishopstown via CUH,75046-00011-1,0,4380_7778208_2080207,4380_492 -4380_77980,287,4380_33044,Bishopstown via CUH,75040-00012-1,0,4380_7778208_2080207,4380_492 -4380_77980,291,4380_33045,Bishopstown via CUH,75042-00013-1,0,4380_7778208_2080207,4380_493 -4380_77980,289,4380_33046,Bishopstown via CUH,75044-00014-1,0,4380_7778208_2080207,4380_492 -4380_77980,292,4380_33047,Bishopstown via CUH,75049-00016-1,0,4380_7778208_2080207,4380_492 -4380_77980,293,4380_33048,Bishopstown via CUH,75047-00017-1,0,4380_7778208_2080207,4380_492 -4380_77980,290,4380_33049,Bishopstown via CUH,75039-00015-1,0,4380_7778208_2080207,4380_492 -4380_77948,287,4380_3305,Ratoath,1939-00012-1,0,4380_7778208_1030110,4380_39 -4380_77980,294,4380_33050,Bishopstown via CUH,75041-00018-1,0,4380_7778208_2080207,4380_492 -4380_77980,295,4380_33051,Bishopstown via CUH,75045-00019-1,0,4380_7778208_2080207,4380_492 -4380_77980,296,4380_33052,Bishopstown via CUH,75043-00021-1,0,4380_7778208_2080207,4380_493 -4380_77980,285,4380_33059,Bishopstown via CUH,73731-00009-1,0,4380_7778208_2080201,4380_488 -4380_77948,289,4380_3306,Ratoath,1899-00014-1,0,4380_7778208_1030110,4380_39 -4380_77980,286,4380_33060,Bishopstown via CUH,73733-00010-1,0,4380_7778208_2080201,4380_488 -4380_77980,288,4380_33061,Bishopstown via CUH,73725-00011-1,0,4380_7778208_2080201,4380_488 -4380_77980,287,4380_33062,Bishopstown via CUH,73727-00012-1,0,4380_7778208_2080201,4380_488 -4380_77980,291,4380_33063,Bishopstown via CUH,74642-00013-1,0,4380_7778208_2080205,4380_492 -4380_77980,289,4380_33064,Bishopstown via CUH,73729-00014-1,0,4380_7778208_2080201,4380_488 -4380_77980,292,4380_33065,Bishopstown via CUH,73734-00016-1,0,4380_7778208_2080201,4380_488 -4380_77980,293,4380_33066,Bishopstown via CUH,73726-00017-1,0,4380_7778208_2080201,4380_488 -4380_77980,290,4380_33067,Bishopstown via CUH,73732-00015-1,0,4380_7778208_2080201,4380_488 -4380_77980,294,4380_33068,Bishopstown via CUH,73728-00018-1,0,4380_7778208_2080201,4380_488 -4380_77980,295,4380_33069,Bishopstown via CUH,73730-00019-1,0,4380_7778208_2080201,4380_488 -4380_77948,290,4380_3307,Ratoath,52326-00015-1,0,4380_7778208_1030110,4380_39 -4380_77980,296,4380_33070,Bishopstown via CUH,74643-00021-1,0,4380_7778208_2080205,4380_492 -4380_77980,297,4380_33072,Bishopstown via CUH,73735-00008-1,0,4380_7778208_2080201,4380_488 -4380_77980,285,4380_33079,Bishopstown via CUH,74172-00009-1,0,4380_7778208_2080203,4380_488 -4380_77948,292,4380_3308,Ratoath,52324-00016-1,0,4380_7778208_1030110,4380_39 -4380_77980,286,4380_33080,Bishopstown via CUH,74176-00010-1,0,4380_7778208_2080203,4380_488 -4380_77980,288,4380_33081,Bishopstown via CUH,74178-00011-1,0,4380_7778208_2080203,4380_488 -4380_77980,287,4380_33082,Bishopstown via CUH,74170-00012-1,0,4380_7778208_2080203,4380_488 -4380_77980,291,4380_33083,Bishopstown via CUH,74888-00013-1,0,4380_7778208_2080206,4380_492 -4380_77980,289,4380_33084,Bishopstown via CUH,74174-00014-1,0,4380_7778208_2080203,4380_488 -4380_77980,292,4380_33085,Bishopstown via CUH,74177-00016-1,0,4380_7778208_2080203,4380_488 -4380_77980,293,4380_33086,Bishopstown via CUH,74179-00017-1,0,4380_7778208_2080203,4380_488 -4380_77980,290,4380_33087,Bishopstown via CUH,74173-00015-1,0,4380_7778208_2080203,4380_488 -4380_77980,294,4380_33088,Bishopstown via CUH,74171-00018-1,0,4380_7778208_2080203,4380_488 -4380_77980,295,4380_33089,Bishopstown via CUH,74175-00019-1,0,4380_7778208_2080203,4380_488 -4380_77948,293,4380_3309,Ratoath,52323-00017-1,0,4380_7778208_1030110,4380_39 -4380_77980,296,4380_33090,Bishopstown via CUH,74889-00021-1,0,4380_7778208_2080206,4380_492 -4380_77980,297,4380_33092,Bishopstown via CUH,74180-00008-1,0,4380_7778208_2080203,4380_488 -4380_77980,285,4380_33099,Bishopstown via CUH,74650-00009-1,0,4380_7778208_2080205,4380_488 -4380_77946,287,4380_331,Drogheda,50459-00012-1,1,4380_7778208_1000915,4380_6 -4380_77948,294,4380_3310,Ratoath,52327-00018-1,0,4380_7778208_1030110,4380_39 -4380_77980,286,4380_33100,Bishopstown via CUH,74646-00010-1,0,4380_7778208_2080205,4380_488 -4380_77980,288,4380_33101,Bishopstown via CUH,74652-00011-1,0,4380_7778208_2080205,4380_488 -4380_77980,287,4380_33102,Bishopstown via CUH,74644-00012-1,0,4380_7778208_2080205,4380_488 -4380_77980,291,4380_33103,Bishopstown via CUH,73983-00013-1,0,4380_7778208_2080202,4380_492 -4380_77980,289,4380_33104,Bishopstown via CUH,74648-00014-1,0,4380_7778208_2080205,4380_488 -4380_77980,292,4380_33105,Bishopstown via CUH,74647-00016-1,0,4380_7778208_2080205,4380_488 -4380_77980,293,4380_33106,Bishopstown via CUH,74653-00017-1,0,4380_7778208_2080205,4380_488 -4380_77980,290,4380_33107,Bishopstown via CUH,74651-00015-1,0,4380_7778208_2080205,4380_488 -4380_77980,294,4380_33108,Bishopstown via CUH,74645-00018-1,0,4380_7778208_2080205,4380_488 -4380_77980,295,4380_33109,Bishopstown via CUH,74649-00019-1,0,4380_7778208_2080205,4380_488 -4380_77948,295,4380_3311,Ratoath,52325-00019-1,0,4380_7778208_1030110,4380_39 -4380_77980,296,4380_33110,Bishopstown via CUH,73984-00021-1,0,4380_7778208_2080202,4380_492 -4380_77980,297,4380_33118,Bishopstown via CUH,73985-00008-1,0,4380_7778208_2080202,4380_488 -4380_77980,285,4380_33119,Bishopstown via CUH,74409-00009-1,0,4380_7778208_2080204,4380_492 -4380_77980,286,4380_33120,Bishopstown via CUH,74403-00010-1,0,4380_7778208_2080204,4380_492 -4380_77980,288,4380_33121,Bishopstown via CUH,74413-00011-1,0,4380_7778208_2080204,4380_492 -4380_77980,287,4380_33122,Bishopstown via CUH,74407-00012-1,0,4380_7778208_2080204,4380_492 -4380_77980,291,4380_33123,Bishopstown via CUH,74405-00013-1,0,4380_7778208_2080204,4380_493 -4380_77980,289,4380_33124,Bishopstown via CUH,74411-00014-1,0,4380_7778208_2080204,4380_492 -4380_77980,292,4380_33125,Bishopstown via CUH,74404-00016-1,0,4380_7778208_2080204,4380_492 -4380_77980,293,4380_33126,Bishopstown via CUH,74414-00017-1,0,4380_7778208_2080204,4380_492 -4380_77980,290,4380_33127,Bishopstown via CUH,74410-00015-1,0,4380_7778208_2080204,4380_492 -4380_77980,294,4380_33128,Bishopstown via CUH,74408-00018-1,0,4380_7778208_2080204,4380_492 -4380_77980,295,4380_33129,Bishopstown via CUH,74412-00019-1,0,4380_7778208_2080204,4380_492 -4380_77980,296,4380_33130,Bishopstown via CUH,74406-00021-1,0,4380_7778208_2080204,4380_493 -4380_77980,285,4380_33137,Bishopstown via CUH,75266-00009-1,0,4380_7778208_2080208,4380_488 -4380_77980,286,4380_33138,Bishopstown via CUH,75268-00010-1,0,4380_7778208_2080208,4380_488 -4380_77980,288,4380_33139,Bishopstown via CUH,75274-00011-1,0,4380_7778208_2080208,4380_488 -4380_77980,287,4380_33140,Bishopstown via CUH,75272-00012-1,0,4380_7778208_2080208,4380_488 -4380_77980,291,4380_33141,Bishopstown via CUH,75270-00013-1,0,4380_7778208_2080208,4380_492 -4380_77980,289,4380_33142,Bishopstown via CUH,75276-00014-1,0,4380_7778208_2080208,4380_488 -4380_77980,292,4380_33143,Bishopstown via CUH,75269-00016-1,0,4380_7778208_2080208,4380_488 -4380_77980,293,4380_33144,Bishopstown via CUH,75275-00017-1,0,4380_7778208_2080208,4380_488 -4380_77980,290,4380_33145,Bishopstown via CUH,75267-00015-1,0,4380_7778208_2080208,4380_488 -4380_77980,294,4380_33146,Bishopstown via CUH,75273-00018-1,0,4380_7778208_2080208,4380_488 -4380_77980,295,4380_33147,Bishopstown via CUH,75277-00019-1,0,4380_7778208_2080208,4380_488 -4380_77980,296,4380_33148,Bishopstown via CUH,75271-00021-1,0,4380_7778208_2080208,4380_492 -4380_77980,297,4380_33150,Bishopstown via CUH,74893-00008-1,0,4380_7778208_2080206,4380_488 -4380_77980,285,4380_33157,Bishopstown via CUH,75070-00009-1,0,4380_7778208_2080207,4380_488 -4380_77980,286,4380_33158,Bishopstown via CUH,75066-00010-1,0,4380_7778208_2080207,4380_488 -4380_77980,288,4380_33159,Bishopstown via CUH,75062-00011-1,0,4380_7778208_2080207,4380_488 -4380_77980,287,4380_33160,Bishopstown via CUH,75068-00012-1,0,4380_7778208_2080207,4380_488 -4380_77980,291,4380_33161,Bishopstown via CUH,75064-00013-1,0,4380_7778208_2080207,4380_492 -4380_77980,289,4380_33162,Bishopstown via CUH,75072-00014-1,0,4380_7778208_2080207,4380_488 -4380_77980,292,4380_33163,Bishopstown via CUH,75067-00016-1,0,4380_7778208_2080207,4380_488 -4380_77980,293,4380_33164,Bishopstown via CUH,75063-00017-1,0,4380_7778208_2080207,4380_488 -4380_77980,290,4380_33165,Bishopstown via CUH,75071-00015-1,0,4380_7778208_2080207,4380_488 -4380_77980,294,4380_33166,Bishopstown via CUH,75069-00018-1,0,4380_7778208_2080207,4380_488 -4380_77980,295,4380_33167,Bishopstown via CUH,75073-00019-1,0,4380_7778208_2080207,4380_488 -4380_77980,296,4380_33168,Bishopstown via CUH,75065-00021-1,0,4380_7778208_2080207,4380_492 -4380_77980,297,4380_33170,Bishopstown via CUH,74667-00008-1,0,4380_7778208_2080205,4380_488 -4380_77980,285,4380_33177,Bishopstown via CUH,73755-00009-1,0,4380_7778208_2080201,4380_488 -4380_77980,286,4380_33178,Bishopstown via CUH,73747-00010-1,0,4380_7778208_2080201,4380_488 -4380_77980,288,4380_33179,Bishopstown via CUH,73753-00011-1,0,4380_7778208_2080201,4380_488 -4380_77980,287,4380_33180,Bishopstown via CUH,73749-00012-1,0,4380_7778208_2080201,4380_488 -4380_77980,291,4380_33181,Bishopstown via CUH,74668-00013-1,0,4380_7778208_2080205,4380_492 -4380_77980,289,4380_33182,Bishopstown via CUH,73751-00014-1,0,4380_7778208_2080201,4380_488 -4380_77980,292,4380_33183,Bishopstown via CUH,73748-00016-1,0,4380_7778208_2080201,4380_488 -4380_77980,293,4380_33184,Bishopstown via CUH,73754-00017-1,0,4380_7778208_2080201,4380_488 -4380_77980,290,4380_33185,Bishopstown via CUH,73756-00015-1,0,4380_7778208_2080201,4380_488 -4380_77980,294,4380_33186,Bishopstown via CUH,73750-00018-1,0,4380_7778208_2080201,4380_488 -4380_77980,295,4380_33187,Bishopstown via CUH,73752-00019-1,0,4380_7778208_2080201,4380_488 -4380_77980,296,4380_33188,Bishopstown via CUH,74669-00021-1,0,4380_7778208_2080205,4380_492 -4380_77948,297,4380_3319,Ratoath,1332-00008-1,0,4380_7778208_1030102,4380_39 -4380_77980,297,4380_33196,Bishopstown via CUH,73757-00008-1,0,4380_7778208_2080201,4380_488 -4380_77980,285,4380_33197,Bishopstown via CUH,74200-00009-1,0,4380_7778208_2080203,4380_492 -4380_77980,286,4380_33198,Bishopstown via CUH,74192-00010-1,0,4380_7778208_2080203,4380_492 -4380_77980,288,4380_33199,Bishopstown via CUH,74194-00011-1,0,4380_7778208_2080203,4380_492 -4380_77946,288,4380_332,Drogheda,50465-00011-1,1,4380_7778208_1000915,4380_6 -4380_77948,291,4380_3320,Ratoath,1584-00013-1,0,4380_7778208_1030105,4380_40 -4380_77980,287,4380_33200,Bishopstown via CUH,74198-00012-1,0,4380_7778208_2080203,4380_492 -4380_77980,291,4380_33201,Bishopstown via CUH,74894-00013-1,0,4380_7778208_2080206,4380_493 -4380_77980,289,4380_33202,Bishopstown via CUH,74196-00014-1,0,4380_7778208_2080203,4380_492 -4380_77980,292,4380_33203,Bishopstown via CUH,74193-00016-1,0,4380_7778208_2080203,4380_492 -4380_77980,293,4380_33204,Bishopstown via CUH,74195-00017-1,0,4380_7778208_2080203,4380_492 -4380_77980,290,4380_33205,Bishopstown via CUH,74201-00015-1,0,4380_7778208_2080203,4380_492 -4380_77980,294,4380_33206,Bishopstown via CUH,74199-00018-1,0,4380_7778208_2080203,4380_492 -4380_77980,295,4380_33207,Bishopstown via CUH,74197-00019-1,0,4380_7778208_2080203,4380_492 -4380_77980,296,4380_33208,Bishopstown via CUH,74895-00021-1,0,4380_7778208_2080206,4380_493 -4380_77948,296,4380_3321,Ratoath,52029-00021-1,0,4380_7778208_1030105,4380_40 -4380_77980,285,4380_33215,Bishopstown via CUH,74672-00009-1,0,4380_7778208_2080205,4380_488 -4380_77980,286,4380_33216,Bishopstown via CUH,74676-00010-1,0,4380_7778208_2080205,4380_488 -4380_77980,288,4380_33217,Bishopstown via CUH,74674-00011-1,0,4380_7778208_2080205,4380_488 -4380_77980,287,4380_33218,Bishopstown via CUH,74678-00012-1,0,4380_7778208_2080205,4380_488 -4380_77980,291,4380_33219,Bishopstown via CUH,73989-00013-1,0,4380_7778208_2080202,4380_492 -4380_77948,285,4380_3322,Ratoath,1274-00009-1,0,4380_7778208_1030102,4380_39 -4380_77980,289,4380_33220,Bishopstown via CUH,74670-00014-1,0,4380_7778208_2080205,4380_488 -4380_77980,292,4380_33221,Bishopstown via CUH,74677-00016-1,0,4380_7778208_2080205,4380_488 -4380_77980,293,4380_33222,Bishopstown via CUH,74675-00017-1,0,4380_7778208_2080205,4380_488 -4380_77980,290,4380_33223,Bishopstown via CUH,74673-00015-1,0,4380_7778208_2080205,4380_488 -4380_77980,294,4380_33224,Bishopstown via CUH,74679-00018-1,0,4380_7778208_2080205,4380_488 -4380_77980,295,4380_33225,Bishopstown via CUH,74671-00019-1,0,4380_7778208_2080205,4380_488 -4380_77980,296,4380_33226,Bishopstown via CUH,73990-00021-1,0,4380_7778208_2080202,4380_492 -4380_77980,297,4380_33228,Bishopstown via CUH,74202-00008-1,0,4380_7778208_2080203,4380_488 -4380_77948,286,4380_3323,Ratoath,1284-00010-1,0,4380_7778208_1030102,4380_39 -4380_77980,285,4380_33235,Bishopstown via CUH,74437-00009-1,0,4380_7778208_2080204,4380_488 -4380_77980,286,4380_33236,Bishopstown via CUH,74429-00010-1,0,4380_7778208_2080204,4380_488 -4380_77980,288,4380_33237,Bishopstown via CUH,74427-00011-1,0,4380_7778208_2080204,4380_488 -4380_77980,287,4380_33238,Bishopstown via CUH,74433-00012-1,0,4380_7778208_2080204,4380_488 -4380_77980,291,4380_33239,Bishopstown via CUH,74431-00013-1,0,4380_7778208_2080204,4380_492 -4380_77948,288,4380_3324,Ratoath,1294-00011-1,0,4380_7778208_1030102,4380_39 -4380_77980,289,4380_33240,Bishopstown via CUH,74435-00014-1,0,4380_7778208_2080204,4380_488 -4380_77980,292,4380_33241,Bishopstown via CUH,74430-00016-1,0,4380_7778208_2080204,4380_488 -4380_77980,293,4380_33242,Bishopstown via CUH,74428-00017-1,0,4380_7778208_2080204,4380_488 -4380_77980,290,4380_33243,Bishopstown via CUH,74438-00015-1,0,4380_7778208_2080204,4380_488 -4380_77980,294,4380_33244,Bishopstown via CUH,74434-00018-1,0,4380_7778208_2080204,4380_488 -4380_77980,295,4380_33245,Bishopstown via CUH,74436-00019-1,0,4380_7778208_2080204,4380_488 -4380_77980,296,4380_33246,Bishopstown via CUH,74432-00021-1,0,4380_7778208_2080204,4380_492 -4380_77980,297,4380_33248,Bishopstown via CUH,73991-00008-1,0,4380_7778208_2080202,4380_488 -4380_77948,287,4380_3325,Ratoath,1304-00012-1,0,4380_7778208_1030102,4380_39 -4380_77980,285,4380_33255,Bishopstown via CUH,75300-00009-1,0,4380_7778208_2080208,4380_488 -4380_77980,286,4380_33256,Bishopstown via CUH,75292-00010-1,0,4380_7778208_2080208,4380_488 -4380_77980,288,4380_33257,Bishopstown via CUH,75298-00011-1,0,4380_7778208_2080208,4380_488 -4380_77980,287,4380_33258,Bishopstown via CUH,75294-00012-1,0,4380_7778208_2080208,4380_488 -4380_77980,291,4380_33259,Bishopstown via CUH,75290-00013-1,0,4380_7778208_2080208,4380_492 -4380_77948,289,4380_3326,Ratoath,1264-00014-1,0,4380_7778208_1030102,4380_39 -4380_77980,289,4380_33260,Bishopstown via CUH,75296-00014-1,0,4380_7778208_2080208,4380_488 -4380_77980,292,4380_33261,Bishopstown via CUH,75293-00016-1,0,4380_7778208_2080208,4380_488 -4380_77980,293,4380_33262,Bishopstown via CUH,75299-00017-1,0,4380_7778208_2080208,4380_488 -4380_77980,290,4380_33263,Bishopstown via CUH,75301-00015-1,0,4380_7778208_2080208,4380_488 -4380_77980,294,4380_33264,Bishopstown via CUH,75295-00018-1,0,4380_7778208_2080208,4380_488 -4380_77980,295,4380_33265,Bishopstown via CUH,75297-00019-1,0,4380_7778208_2080208,4380_488 -4380_77980,296,4380_33266,Bishopstown via CUH,75291-00021-1,0,4380_7778208_2080208,4380_492 -4380_77948,290,4380_3327,Ratoath,51841-00015-1,0,4380_7778208_1030102,4380_39 -4380_77980,297,4380_33274,Bishopstown via CUH,74899-00008-1,0,4380_7778208_2080206,4380_488 -4380_77980,285,4380_33275,Bishopstown via CUH,75088-00009-1,0,4380_7778208_2080207,4380_492 -4380_77980,286,4380_33276,Bishopstown via CUH,75094-00010-1,0,4380_7778208_2080207,4380_492 -4380_77980,288,4380_33277,Bishopstown via CUH,75092-00011-1,0,4380_7778208_2080207,4380_492 -4380_77980,287,4380_33278,Bishopstown via CUH,75086-00012-1,0,4380_7778208_2080207,4380_492 -4380_77980,291,4380_33279,Bishopstown via CUH,75090-00013-1,0,4380_7778208_2080207,4380_493 -4380_77948,292,4380_3328,Ratoath,51840-00016-1,0,4380_7778208_1030102,4380_39 -4380_77980,289,4380_33280,Bishopstown via CUH,75096-00014-1,0,4380_7778208_2080207,4380_492 -4380_77980,292,4380_33281,Bishopstown via CUH,75095-00016-1,0,4380_7778208_2080207,4380_492 -4380_77980,293,4380_33282,Bishopstown via CUH,75093-00017-1,0,4380_7778208_2080207,4380_492 -4380_77980,290,4380_33283,Bishopstown via CUH,75089-00015-1,0,4380_7778208_2080207,4380_492 -4380_77980,294,4380_33284,Bishopstown via CUH,75087-00018-1,0,4380_7778208_2080207,4380_492 -4380_77980,295,4380_33285,Bishopstown via CUH,75097-00019-1,0,4380_7778208_2080207,4380_492 -4380_77980,296,4380_33286,Bishopstown via CUH,75091-00021-1,0,4380_7778208_2080207,4380_493 -4380_77948,293,4380_3329,Ratoath,51843-00017-1,0,4380_7778208_1030102,4380_39 -4380_77980,285,4380_33293,Bishopstown via CUH,73769-00009-1,0,4380_7778208_2080201,4380_488 -4380_77980,286,4380_33294,Bishopstown via CUH,73771-00010-1,0,4380_7778208_2080201,4380_488 -4380_77980,288,4380_33295,Bishopstown via CUH,73777-00011-1,0,4380_7778208_2080201,4380_488 -4380_77980,287,4380_33296,Bishopstown via CUH,73773-00012-1,0,4380_7778208_2080201,4380_488 -4380_77980,291,4380_33297,Bishopstown via CUH,74693-00013-1,0,4380_7778208_2080205,4380_492 -4380_77980,289,4380_33298,Bishopstown via CUH,73775-00014-1,0,4380_7778208_2080201,4380_488 -4380_77980,292,4380_33299,Bishopstown via CUH,73772-00016-1,0,4380_7778208_2080201,4380_488 -4380_77946,289,4380_333,Drogheda,50463-00014-1,1,4380_7778208_1000915,4380_6 -4380_77948,294,4380_3330,Ratoath,51842-00018-1,0,4380_7778208_1030102,4380_39 -4380_77980,293,4380_33300,Bishopstown via CUH,73778-00017-1,0,4380_7778208_2080201,4380_488 -4380_77980,290,4380_33301,Bishopstown via CUH,73770-00015-1,0,4380_7778208_2080201,4380_488 -4380_77980,294,4380_33302,Bishopstown via CUH,73774-00018-1,0,4380_7778208_2080201,4380_488 -4380_77980,295,4380_33303,Bishopstown via CUH,73776-00019-1,0,4380_7778208_2080201,4380_488 -4380_77980,296,4380_33304,Bishopstown via CUH,74694-00021-1,0,4380_7778208_2080205,4380_492 -4380_77980,297,4380_33306,Bishopstown via CUH,74695-00008-1,0,4380_7778208_2080205,4380_488 -4380_77948,295,4380_3331,Ratoath,51839-00019-1,0,4380_7778208_1030102,4380_39 -4380_77980,285,4380_33313,Bishopstown via CUH,74214-00009-1,0,4380_7778208_2080203,4380_488 -4380_77980,286,4380_33314,Bishopstown via CUH,74220-00010-1,0,4380_7778208_2080203,4380_488 -4380_77980,288,4380_33315,Bishopstown via CUH,74216-00011-1,0,4380_7778208_2080203,4380_488 -4380_77980,287,4380_33316,Bishopstown via CUH,74218-00012-1,0,4380_7778208_2080203,4380_488 -4380_77980,291,4380_33317,Bishopstown via CUH,74900-00013-1,0,4380_7778208_2080206,4380_492 -4380_77980,289,4380_33318,Bishopstown via CUH,74222-00014-1,0,4380_7778208_2080203,4380_488 -4380_77980,292,4380_33319,Bishopstown via CUH,74221-00016-1,0,4380_7778208_2080203,4380_488 -4380_77980,293,4380_33320,Bishopstown via CUH,74217-00017-1,0,4380_7778208_2080203,4380_488 -4380_77980,290,4380_33321,Bishopstown via CUH,74215-00015-1,0,4380_7778208_2080203,4380_488 -4380_77980,294,4380_33322,Bishopstown via CUH,74219-00018-1,0,4380_7778208_2080203,4380_488 -4380_77980,295,4380_33323,Bishopstown via CUH,74223-00019-1,0,4380_7778208_2080203,4380_488 -4380_77980,296,4380_33324,Bishopstown via CUH,74901-00021-1,0,4380_7778208_2080206,4380_492 -4380_77980,297,4380_33326,Bishopstown via CUH,73779-00008-1,0,4380_7778208_2080201,4380_488 -4380_77980,285,4380_33333,Bishopstown via CUH,74696-00009-1,0,4380_7778208_2080205,4380_488 -4380_77980,286,4380_33334,Bishopstown via CUH,74700-00010-1,0,4380_7778208_2080205,4380_488 -4380_77980,288,4380_33335,Bishopstown via CUH,74702-00011-1,0,4380_7778208_2080205,4380_488 -4380_77980,287,4380_33336,Bishopstown via CUH,74698-00012-1,0,4380_7778208_2080205,4380_488 -4380_77980,291,4380_33337,Bishopstown via CUH,73995-00013-1,0,4380_7778208_2080202,4380_492 -4380_77980,289,4380_33338,Bishopstown via CUH,74704-00014-1,0,4380_7778208_2080205,4380_488 -4380_77980,292,4380_33339,Bishopstown via CUH,74701-00016-1,0,4380_7778208_2080205,4380_488 -4380_77980,293,4380_33340,Bishopstown via CUH,74703-00017-1,0,4380_7778208_2080205,4380_488 -4380_77980,290,4380_33341,Bishopstown via CUH,74697-00015-1,0,4380_7778208_2080205,4380_488 -4380_77980,294,4380_33342,Bishopstown via CUH,74699-00018-1,0,4380_7778208_2080205,4380_488 -4380_77980,295,4380_33343,Bishopstown via CUH,74705-00019-1,0,4380_7778208_2080205,4380_488 -4380_77980,296,4380_33344,Bishopstown via CUH,73996-00021-1,0,4380_7778208_2080202,4380_492 -4380_77980,297,4380_33352,Bishopstown via CUH,74224-00008-1,0,4380_7778208_2080203,4380_488 -4380_77980,285,4380_33353,Bishopstown via CUH,74453-00009-1,0,4380_7778208_2080204,4380_492 -4380_77980,286,4380_33354,Bishopstown via CUH,74455-00010-1,0,4380_7778208_2080204,4380_492 -4380_77980,288,4380_33355,Bishopstown via CUH,74457-00011-1,0,4380_7778208_2080204,4380_492 -4380_77980,287,4380_33356,Bishopstown via CUH,74459-00012-1,0,4380_7778208_2080204,4380_492 -4380_77980,291,4380_33357,Bishopstown via CUH,74461-00013-1,0,4380_7778208_2080204,4380_493 -4380_77980,289,4380_33358,Bishopstown via CUH,74451-00014-1,0,4380_7778208_2080204,4380_492 -4380_77980,292,4380_33359,Bishopstown via CUH,74456-00016-1,0,4380_7778208_2080204,4380_492 -4380_77980,293,4380_33360,Bishopstown via CUH,74458-00017-1,0,4380_7778208_2080204,4380_492 -4380_77980,290,4380_33361,Bishopstown via CUH,74454-00015-1,0,4380_7778208_2080204,4380_492 -4380_77980,294,4380_33362,Bishopstown via CUH,74460-00018-1,0,4380_7778208_2080204,4380_492 -4380_77980,295,4380_33363,Bishopstown via CUH,74452-00019-1,0,4380_7778208_2080204,4380_492 -4380_77980,296,4380_33364,Bishopstown via CUH,74462-00021-1,0,4380_7778208_2080204,4380_493 -4380_77980,285,4380_33371,Bishopstown via CUH,75316-00009-1,0,4380_7778208_2080208,4380_488 -4380_77980,286,4380_33372,Bishopstown via CUH,75318-00010-1,0,4380_7778208_2080208,4380_488 -4380_77980,288,4380_33373,Bishopstown via CUH,75320-00011-1,0,4380_7778208_2080208,4380_488 -4380_77980,287,4380_33374,Bishopstown via CUH,75322-00012-1,0,4380_7778208_2080208,4380_488 -4380_77980,291,4380_33375,St. Patrick Street,75324-00013-1,0,4380_7778208_2080208,4380_489 -4380_77980,289,4380_33376,Bishopstown via CUH,75314-00014-1,0,4380_7778208_2080208,4380_488 -4380_77980,292,4380_33377,Bishopstown via CUH,75319-00016-1,0,4380_7778208_2080208,4380_488 -4380_77980,293,4380_33378,Bishopstown via CUH,75321-00017-1,0,4380_7778208_2080208,4380_488 -4380_77980,290,4380_33379,Bishopstown via CUH,75317-00015-1,0,4380_7778208_2080208,4380_488 -4380_77948,285,4380_3338,Ratoath,1184-00009-1,0,4380_7778208_1030101,4380_39 -4380_77980,294,4380_33380,Bishopstown via CUH,75323-00018-1,0,4380_7778208_2080208,4380_488 -4380_77980,295,4380_33381,Bishopstown via CUH,75315-00019-1,0,4380_7778208_2080208,4380_488 -4380_77980,296,4380_33382,St. Patrick Street,75325-00021-1,0,4380_7778208_2080208,4380_489 -4380_77980,297,4380_33384,St. Patrick Street,73997-00008-1,0,4380_7778208_2080202,4380_489 -4380_77948,286,4380_3339,Ratoath,1194-00010-1,0,4380_7778208_1030101,4380_39 -4380_77980,285,4380_33391,St. Patrick Street,75114-00009-1,0,4380_7778208_2080207,4380_489 -4380_77980,286,4380_33392,St. Patrick Street,75116-00010-1,0,4380_7778208_2080207,4380_489 -4380_77980,288,4380_33393,St. Patrick Street,75118-00011-1,0,4380_7778208_2080207,4380_489 -4380_77980,287,4380_33394,St. Patrick Street,75112-00012-1,0,4380_7778208_2080207,4380_489 -4380_77980,291,4380_33395,St. Patrick Street,75110-00013-1,0,4380_7778208_2080207,4380_494 -4380_77980,289,4380_33396,St. Patrick Street,75120-00014-1,0,4380_7778208_2080207,4380_489 -4380_77980,292,4380_33397,St. Patrick Street,75117-00016-1,0,4380_7778208_2080207,4380_489 -4380_77980,293,4380_33398,St. Patrick Street,75119-00017-1,0,4380_7778208_2080207,4380_489 -4380_77980,290,4380_33399,St. Patrick Street,75115-00015-1,0,4380_7778208_2080207,4380_489 -4380_77946,290,4380_334,Drogheda,50462-00015-1,1,4380_7778208_1000915,4380_6 -4380_77948,288,4380_3340,Ratoath,1204-00011-1,0,4380_7778208_1030101,4380_39 -4380_77980,294,4380_33400,St. Patrick Street,75113-00018-1,0,4380_7778208_2080207,4380_489 -4380_77980,295,4380_33401,St. Patrick Street,75121-00019-1,0,4380_7778208_2080207,4380_489 -4380_77980,296,4380_33402,St. Patrick Street,75111-00021-1,0,4380_7778208_2080207,4380_494 -4380_77980,297,4380_33404,St. Patrick Street,74905-00008-1,0,4380_7778208_2080206,4380_489 -4380_77948,287,4380_3341,Ratoath,1214-00012-1,0,4380_7778208_1030101,4380_39 -4380_77980,285,4380_33411,St. Patrick Street,73793-00009-1,0,4380_7778208_2080201,4380_489 -4380_77980,286,4380_33412,St. Patrick Street,73797-00010-1,0,4380_7778208_2080201,4380_489 -4380_77980,288,4380_33413,St. Patrick Street,73795-00011-1,0,4380_7778208_2080201,4380_489 -4380_77980,287,4380_33414,St. Patrick Street,73799-00012-1,0,4380_7778208_2080201,4380_489 -4380_77980,291,4380_33415,St. Patrick Street,74718-00013-1,0,4380_7778208_2080205,4380_494 -4380_77980,289,4380_33416,St. Patrick Street,73791-00014-1,0,4380_7778208_2080201,4380_489 -4380_77980,292,4380_33417,St. Patrick Street,73798-00016-1,0,4380_7778208_2080201,4380_489 -4380_77980,293,4380_33418,St. Patrick Street,73796-00017-1,0,4380_7778208_2080201,4380_489 -4380_77980,290,4380_33419,St. Patrick Street,73794-00015-1,0,4380_7778208_2080201,4380_489 -4380_77948,289,4380_3342,Ratoath,1174-00014-1,0,4380_7778208_1030101,4380_39 -4380_77980,294,4380_33420,St. Patrick Street,73800-00018-1,0,4380_7778208_2080201,4380_489 -4380_77980,295,4380_33421,St. Patrick Street,73792-00019-1,0,4380_7778208_2080201,4380_489 -4380_77980,296,4380_33422,St. Patrick Street,74719-00021-1,0,4380_7778208_2080205,4380_494 -4380_77980,285,4380_33428,Lotabeg,73561-00009-1,1,4380_7778208_2080201,4380_495 -4380_77980,286,4380_33429,Lotabeg,73553-00010-1,1,4380_7778208_2080201,4380_495 -4380_77948,290,4380_3343,Ratoath,51783-00015-1,0,4380_7778208_1030101,4380_39 -4380_77980,288,4380_33430,Lotabeg,73557-00011-1,1,4380_7778208_2080201,4380_495 -4380_77980,287,4380_33431,Lotabeg,73559-00012-1,1,4380_7778208_2080201,4380_495 -4380_77980,289,4380_33432,Lotabeg,73555-00014-1,1,4380_7778208_2080201,4380_495 -4380_77980,292,4380_33433,Lotabeg,73554-00016-1,1,4380_7778208_2080201,4380_495 -4380_77980,293,4380_33434,Lotabeg,73558-00017-1,1,4380_7778208_2080201,4380_495 -4380_77980,290,4380_33435,Lotabeg,73562-00015-1,1,4380_7778208_2080201,4380_495 -4380_77980,294,4380_33436,Lotabeg,73560-00018-1,1,4380_7778208_2080201,4380_495 -4380_77980,295,4380_33437,Lotabeg,73556-00019-1,1,4380_7778208_2080201,4380_495 -4380_77948,291,4380_3344,Ratoath,1666-00013-1,0,4380_7778208_1030106,4380_40 -4380_77980,285,4380_33443,Lotabeg,74008-00009-1,1,4380_7778208_2080203,4380_495 -4380_77980,286,4380_33444,Lotabeg,74002-00010-1,1,4380_7778208_2080203,4380_495 -4380_77980,288,4380_33445,Lotabeg,74000-00011-1,1,4380_7778208_2080203,4380_495 -4380_77980,287,4380_33446,Lotabeg,74006-00012-1,1,4380_7778208_2080203,4380_495 -4380_77980,289,4380_33447,Lotabeg,74004-00014-1,1,4380_7778208_2080203,4380_495 -4380_77980,292,4380_33448,Lotabeg,74003-00016-1,1,4380_7778208_2080203,4380_495 -4380_77980,293,4380_33449,Lotabeg,74001-00017-1,1,4380_7778208_2080203,4380_495 -4380_77948,292,4380_3345,Ratoath,51779-00016-1,0,4380_7778208_1030101,4380_39 -4380_77980,290,4380_33450,Lotabeg,74009-00015-1,1,4380_7778208_2080203,4380_495 -4380_77980,294,4380_33451,Lotabeg,74007-00018-1,1,4380_7778208_2080203,4380_495 -4380_77980,295,4380_33452,Lotabeg,74005-00019-1,1,4380_7778208_2080203,4380_495 -4380_77980,285,4380_33459,Lotabeg,73819-00009-1,1,4380_7778208_2080202,4380_495 -4380_77948,293,4380_3346,Ratoath,51780-00017-1,0,4380_7778208_1030101,4380_39 -4380_77980,286,4380_33460,Lotabeg,73817-00010-1,1,4380_7778208_2080202,4380_495 -4380_77980,288,4380_33461,Lotabeg,73821-00011-1,1,4380_7778208_2080202,4380_495 -4380_77980,287,4380_33462,Lotabeg,73815-00012-1,1,4380_7778208_2080202,4380_495 -4380_77980,291,4380_33463,Lotabeg,73565-00013-1,1,4380_7778208_2080201,4380_497 -4380_77980,289,4380_33464,Lotabeg,73813-00014-1,1,4380_7778208_2080202,4380_495 -4380_77980,292,4380_33465,Lotabeg,73818-00016-1,1,4380_7778208_2080202,4380_495 -4380_77980,293,4380_33466,Lotabeg,73822-00017-1,1,4380_7778208_2080202,4380_495 -4380_77980,290,4380_33467,Lotabeg,73820-00015-1,1,4380_7778208_2080202,4380_495 -4380_77980,294,4380_33468,Lotabeg,73816-00018-1,1,4380_7778208_2080202,4380_495 -4380_77980,295,4380_33469,Lotabeg,73814-00019-1,1,4380_7778208_2080202,4380_495 -4380_77948,294,4380_3347,Ratoath,51782-00018-1,0,4380_7778208_1030101,4380_39 -4380_77980,296,4380_33470,Lotabeg,73566-00021-1,1,4380_7778208_2080201,4380_497 -4380_77980,285,4380_33477,Lotabeg,74477-00009-1,1,4380_7778208_2080205,4380_495 -4380_77980,286,4380_33478,Lotabeg,74473-00010-1,1,4380_7778208_2080205,4380_495 -4380_77980,288,4380_33479,Lotabeg,74479-00011-1,1,4380_7778208_2080205,4380_495 -4380_77948,295,4380_3348,Ratoath,51781-00019-1,0,4380_7778208_1030101,4380_39 -4380_77980,287,4380_33480,Lotabeg,74475-00012-1,1,4380_7778208_2080205,4380_495 -4380_77980,291,4380_33481,Lotabeg,73823-00013-1,1,4380_7778208_2080202,4380_497 -4380_77980,289,4380_33482,Lotabeg,74481-00014-1,1,4380_7778208_2080205,4380_495 -4380_77980,292,4380_33483,Lotabeg,74474-00016-1,1,4380_7778208_2080205,4380_495 -4380_77980,293,4380_33484,Lotabeg,74480-00017-1,1,4380_7778208_2080205,4380_495 -4380_77980,290,4380_33485,Lotabeg,74478-00015-1,1,4380_7778208_2080205,4380_495 -4380_77980,294,4380_33486,Lotabeg,74476-00018-1,1,4380_7778208_2080205,4380_495 -4380_77980,295,4380_33487,Lotabeg,74482-00019-1,1,4380_7778208_2080205,4380_495 -4380_77980,296,4380_33488,Lotabeg,73824-00021-1,1,4380_7778208_2080202,4380_497 -4380_77948,296,4380_3349,Ratoath,52075-00021-1,0,4380_7778208_1030106,4380_40 -4380_77980,285,4380_33495,Lotabeg,74253-00009-1,1,4380_7778208_2080204,4380_495 -4380_77980,286,4380_33496,Lotabeg,74249-00010-1,1,4380_7778208_2080204,4380_495 -4380_77980,288,4380_33497,Lotabeg,74255-00011-1,1,4380_7778208_2080204,4380_495 -4380_77980,287,4380_33498,Lotabeg,74247-00012-1,1,4380_7778208_2080204,4380_495 -4380_77980,291,4380_33499,Lotabeg,74251-00013-1,1,4380_7778208_2080204,4380_497 -4380_77946,291,4380_335,Drogheda,50271-00013-1,1,4380_7778208_1000912,4380_9 -4380_77980,289,4380_33500,Lotabeg,74257-00014-1,1,4380_7778208_2080204,4380_495 -4380_77980,292,4380_33501,Lotabeg,74250-00016-1,1,4380_7778208_2080204,4380_495 -4380_77980,293,4380_33502,Lotabeg,74256-00017-1,1,4380_7778208_2080204,4380_495 -4380_77980,290,4380_33503,Lotabeg,74254-00015-1,1,4380_7778208_2080204,4380_495 -4380_77980,294,4380_33504,Lotabeg,74248-00018-1,1,4380_7778208_2080204,4380_495 -4380_77980,295,4380_33505,Lotabeg,74258-00019-1,1,4380_7778208_2080204,4380_495 -4380_77980,296,4380_33506,Lotabeg,74252-00021-1,1,4380_7778208_2080204,4380_497 -4380_77980,291,4380_33508,Lotabeg,74022-00013-1,1,4380_7778208_2080203,4380_495 -4380_77980,296,4380_33509,Lotabeg,74023-00021-1,1,4380_7778208_2080203,4380_495 -4380_77980,285,4380_33515,Lotabeg,74732-00009-1,1,4380_7778208_2080206,4380_498 -4380_77980,286,4380_33516,Lotabeg,74734-00010-1,1,4380_7778208_2080206,4380_498 -4380_77980,288,4380_33517,Lotabeg,74736-00011-1,1,4380_7778208_2080206,4380_498 -4380_77980,287,4380_33518,Lotabeg,74740-00012-1,1,4380_7778208_2080206,4380_498 -4380_77980,289,4380_33519,Lotabeg,74738-00014-1,1,4380_7778208_2080206,4380_498 -4380_77980,292,4380_33520,Lotabeg,74735-00016-1,1,4380_7778208_2080206,4380_498 -4380_77980,293,4380_33521,Lotabeg,74737-00017-1,1,4380_7778208_2080206,4380_498 -4380_77980,290,4380_33522,Lotabeg,74733-00015-1,1,4380_7778208_2080206,4380_498 -4380_77980,294,4380_33523,Lotabeg,74741-00018-1,1,4380_7778208_2080206,4380_498 -4380_77980,295,4380_33524,Lotabeg,74739-00019-1,1,4380_7778208_2080206,4380_498 -4380_77980,297,4380_33526,Lotabeg,74742-00008-1,1,4380_7778208_2080206,4380_495 -4380_77980,285,4380_33533,Lotabeg,74916-00009-1,1,4380_7778208_2080207,4380_495 -4380_77980,286,4380_33534,Lotabeg,74912-00010-1,1,4380_7778208_2080207,4380_495 -4380_77980,288,4380_33535,Lotabeg,74910-00011-1,1,4380_7778208_2080207,4380_495 -4380_77980,287,4380_33536,Lotabeg,74906-00012-1,1,4380_7778208_2080207,4380_495 -4380_77980,291,4380_33537,Lotabeg,74914-00013-1,1,4380_7778208_2080207,4380_497 -4380_77980,289,4380_33538,Lotabeg,74908-00014-1,1,4380_7778208_2080207,4380_495 -4380_77980,292,4380_33539,Lotabeg,74913-00016-1,1,4380_7778208_2080207,4380_495 -4380_77980,293,4380_33540,Lotabeg,74911-00017-1,1,4380_7778208_2080207,4380_495 -4380_77980,290,4380_33541,Lotabeg,74917-00015-1,1,4380_7778208_2080207,4380_495 -4380_77980,294,4380_33542,Lotabeg,74907-00018-1,1,4380_7778208_2080207,4380_495 -4380_77980,295,4380_33543,Lotabeg,74909-00019-1,1,4380_7778208_2080207,4380_495 -4380_77980,296,4380_33544,Lotabeg,74915-00021-1,1,4380_7778208_2080207,4380_497 -4380_77980,297,4380_33546,Lotabeg,74496-00008-1,1,4380_7778208_2080205,4380_495 -4380_77948,285,4380_3355,Ratoath,1366-00009-1,0,4380_7778208_1030103,4380_39 -4380_77980,285,4380_33553,Lotabeg,73580-00009-1,1,4380_7778208_2080201,4380_495 -4380_77980,286,4380_33554,Lotabeg,73586-00010-1,1,4380_7778208_2080201,4380_495 -4380_77980,288,4380_33555,Lotabeg,73584-00011-1,1,4380_7778208_2080201,4380_495 -4380_77980,287,4380_33556,Lotabeg,73582-00012-1,1,4380_7778208_2080201,4380_495 -4380_77980,291,4380_33557,Lotabeg,74497-00013-1,1,4380_7778208_2080205,4380_497 -4380_77980,289,4380_33558,Lotabeg,73588-00014-1,1,4380_7778208_2080201,4380_495 -4380_77980,292,4380_33559,Lotabeg,73587-00016-1,1,4380_7778208_2080201,4380_495 -4380_77948,286,4380_3356,Ratoath,1376-00010-1,0,4380_7778208_1030103,4380_39 -4380_77980,293,4380_33560,Lotabeg,73585-00017-1,1,4380_7778208_2080201,4380_495 -4380_77980,290,4380_33561,Lotabeg,73581-00015-1,1,4380_7778208_2080201,4380_495 -4380_77980,294,4380_33562,Lotabeg,73583-00018-1,1,4380_7778208_2080201,4380_495 -4380_77980,295,4380_33563,Lotabeg,73589-00019-1,1,4380_7778208_2080201,4380_495 -4380_77980,296,4380_33564,Lotabeg,74498-00021-1,1,4380_7778208_2080205,4380_497 -4380_77948,288,4380_3357,Ratoath,1386-00011-1,0,4380_7778208_1030103,4380_39 -4380_77980,297,4380_33572,Lotabeg,73590-00008-1,1,4380_7778208_2080201,4380_495 -4380_77980,285,4380_33573,Lotabeg,74029-00009-1,1,4380_7778208_2080203,4380_497 -4380_77980,286,4380_33574,Lotabeg,74033-00010-1,1,4380_7778208_2080203,4380_497 -4380_77980,288,4380_33575,Lotabeg,74031-00011-1,1,4380_7778208_2080203,4380_497 -4380_77980,287,4380_33576,Lotabeg,74025-00012-1,1,4380_7778208_2080203,4380_497 -4380_77980,291,4380_33577,Lotabeg,74743-00013-1,1,4380_7778208_2080206,4380_500 -4380_77980,289,4380_33578,Lotabeg,74027-00014-1,1,4380_7778208_2080203,4380_497 -4380_77980,292,4380_33579,Lotabeg,74034-00016-1,1,4380_7778208_2080203,4380_497 -4380_77948,287,4380_3358,Ratoath,1396-00012-1,0,4380_7778208_1030103,4380_39 -4380_77980,293,4380_33580,Lotabeg,74032-00017-1,1,4380_7778208_2080203,4380_497 -4380_77980,290,4380_33581,Lotabeg,74030-00015-1,1,4380_7778208_2080203,4380_497 -4380_77980,294,4380_33582,Lotabeg,74026-00018-1,1,4380_7778208_2080203,4380_497 -4380_77980,295,4380_33583,Lotabeg,74028-00019-1,1,4380_7778208_2080203,4380_497 -4380_77980,296,4380_33584,Lotabeg,74744-00021-1,1,4380_7778208_2080206,4380_500 -4380_77948,289,4380_3359,Ratoath,1356-00014-1,0,4380_7778208_1030103,4380_39 -4380_77980,285,4380_33591,Lotabeg,73846-00009-1,1,4380_7778208_2080202,4380_495 -4380_77980,286,4380_33592,Lotabeg,73840-00010-1,1,4380_7778208_2080202,4380_495 -4380_77980,288,4380_33593,Lotabeg,73842-00011-1,1,4380_7778208_2080202,4380_495 -4380_77980,287,4380_33594,Lotabeg,73838-00012-1,1,4380_7778208_2080202,4380_495 -4380_77980,291,4380_33595,Lotabeg,73591-00013-1,1,4380_7778208_2080201,4380_497 -4380_77980,289,4380_33596,Lotabeg,73844-00014-1,1,4380_7778208_2080202,4380_495 -4380_77980,292,4380_33597,Lotabeg,73841-00016-1,1,4380_7778208_2080202,4380_495 -4380_77980,293,4380_33598,Lotabeg,73843-00017-1,1,4380_7778208_2080202,4380_495 -4380_77980,290,4380_33599,Lotabeg,73847-00015-1,1,4380_7778208_2080202,4380_495 -4380_77946,292,4380_336,Drogheda,50458-00016-1,1,4380_7778208_1000915,4380_6 -4380_77948,290,4380_3360,Ratoath,51903-00015-1,0,4380_7778208_1030103,4380_39 -4380_77980,294,4380_33600,Lotabeg,73839-00018-1,1,4380_7778208_2080202,4380_495 -4380_77980,295,4380_33601,Lotabeg,73845-00019-1,1,4380_7778208_2080202,4380_495 -4380_77980,296,4380_33602,Lotabeg,73592-00021-1,1,4380_7778208_2080201,4380_497 -4380_77980,297,4380_33604,Lotabeg,74037-00008-1,1,4380_7778208_2080203,4380_495 -4380_77948,292,4380_3361,Ratoath,51901-00016-1,0,4380_7778208_1030103,4380_39 -4380_77980,285,4380_33611,Lotabeg,74500-00009-1,1,4380_7778208_2080205,4380_495 -4380_77980,286,4380_33612,Lotabeg,74504-00010-1,1,4380_7778208_2080205,4380_495 -4380_77980,288,4380_33613,Lotabeg,74508-00011-1,1,4380_7778208_2080205,4380_495 -4380_77980,287,4380_33614,Lotabeg,74506-00012-1,1,4380_7778208_2080205,4380_495 -4380_77980,291,4380_33615,Lotabeg,73848-00013-1,1,4380_7778208_2080202,4380_497 -4380_77980,289,4380_33616,Lotabeg,74502-00014-1,1,4380_7778208_2080205,4380_495 -4380_77980,292,4380_33617,Lotabeg,74505-00016-1,1,4380_7778208_2080205,4380_495 -4380_77980,293,4380_33618,Lotabeg,74509-00017-1,1,4380_7778208_2080205,4380_495 -4380_77980,290,4380_33619,Lotabeg,74501-00015-1,1,4380_7778208_2080205,4380_495 -4380_77948,293,4380_3362,Ratoath,51899-00017-1,0,4380_7778208_1030103,4380_39 -4380_77980,294,4380_33620,Lotabeg,74507-00018-1,1,4380_7778208_2080205,4380_495 -4380_77980,295,4380_33621,Lotabeg,74503-00019-1,1,4380_7778208_2080205,4380_495 -4380_77980,296,4380_33622,Lotabeg,73849-00021-1,1,4380_7778208_2080202,4380_497 -4380_77980,297,4380_33624,Lotabeg,73850-00008-1,1,4380_7778208_2080202,4380_495 -4380_77948,294,4380_3363,Ratoath,51900-00018-1,0,4380_7778208_1030103,4380_39 -4380_77980,285,4380_33631,Lotabeg,74279-00009-1,1,4380_7778208_2080204,4380_495 -4380_77980,286,4380_33632,Lotabeg,74275-00010-1,1,4380_7778208_2080204,4380_495 -4380_77980,288,4380_33633,Lotabeg,74273-00011-1,1,4380_7778208_2080204,4380_495 -4380_77980,287,4380_33634,Lotabeg,74277-00012-1,1,4380_7778208_2080204,4380_495 -4380_77980,291,4380_33635,Lotabeg,74271-00013-1,1,4380_7778208_2080204,4380_497 -4380_77980,289,4380_33636,Lotabeg,74281-00014-1,1,4380_7778208_2080204,4380_495 -4380_77980,292,4380_33637,Lotabeg,74276-00016-1,1,4380_7778208_2080204,4380_495 -4380_77980,293,4380_33638,Lotabeg,74274-00017-1,1,4380_7778208_2080204,4380_495 -4380_77980,290,4380_33639,Lotabeg,74280-00015-1,1,4380_7778208_2080204,4380_495 -4380_77948,295,4380_3364,Ratoath,51902-00019-1,0,4380_7778208_1030103,4380_39 -4380_77980,294,4380_33640,Lotabeg,74278-00018-1,1,4380_7778208_2080204,4380_495 -4380_77980,295,4380_33641,Lotabeg,74282-00019-1,1,4380_7778208_2080204,4380_495 -4380_77980,296,4380_33642,Lotabeg,74272-00021-1,1,4380_7778208_2080204,4380_497 -4380_77980,297,4380_33645,Lotabeg,74758-00008-1,1,4380_7778208_2080206,4380_495 -4380_77980,291,4380_33646,Lotabeg,75134-00013-1,1,4380_7778208_2080208,4380_497 -4380_77980,296,4380_33647,Lotabeg,75135-00021-1,1,4380_7778208_2080208,4380_497 -4380_77980,285,4380_33653,Lotabeg,75140-00009-1,1,4380_7778208_2080208,4380_498 -4380_77980,286,4380_33654,Lotabeg,75144-00010-1,1,4380_7778208_2080208,4380_498 -4380_77980,288,4380_33655,Lotabeg,75138-00011-1,1,4380_7778208_2080208,4380_498 -4380_77980,287,4380_33656,Lotabeg,75136-00012-1,1,4380_7778208_2080208,4380_498 -4380_77980,289,4380_33657,Lotabeg,75142-00014-1,1,4380_7778208_2080208,4380_498 -4380_77980,292,4380_33658,Lotabeg,75145-00016-1,1,4380_7778208_2080208,4380_498 -4380_77980,293,4380_33659,Lotabeg,75139-00017-1,1,4380_7778208_2080208,4380_498 -4380_77980,290,4380_33660,Lotabeg,75141-00015-1,1,4380_7778208_2080208,4380_498 -4380_77980,294,4380_33661,Lotabeg,75137-00018-1,1,4380_7778208_2080208,4380_498 -4380_77980,295,4380_33662,Lotabeg,75143-00019-1,1,4380_7778208_2080208,4380_498 -4380_77980,285,4380_33669,Lotabeg,74767-00009-1,1,4380_7778208_2080206,4380_495 -4380_77980,286,4380_33670,Lotabeg,74765-00010-1,1,4380_7778208_2080206,4380_495 -4380_77980,288,4380_33671,Lotabeg,74759-00011-1,1,4380_7778208_2080206,4380_495 -4380_77980,287,4380_33672,Lotabeg,74763-00012-1,1,4380_7778208_2080206,4380_495 -4380_77980,291,4380_33673,Lotabeg,74049-00013-1,1,4380_7778208_2080203,4380_497 -4380_77980,289,4380_33674,Lotabeg,74761-00014-1,1,4380_7778208_2080206,4380_495 -4380_77980,292,4380_33675,Lotabeg,74766-00016-1,1,4380_7778208_2080206,4380_495 -4380_77980,293,4380_33676,Lotabeg,74760-00017-1,1,4380_7778208_2080206,4380_495 -4380_77980,290,4380_33677,Lotabeg,74768-00015-1,1,4380_7778208_2080206,4380_495 -4380_77980,294,4380_33678,Lotabeg,74764-00018-1,1,4380_7778208_2080206,4380_495 -4380_77980,295,4380_33679,Lotabeg,74762-00019-1,1,4380_7778208_2080206,4380_495 -4380_77980,296,4380_33680,Lotabeg,74050-00021-1,1,4380_7778208_2080203,4380_497 -4380_77980,297,4380_33682,Lotabeg,74512-00008-1,1,4380_7778208_2080205,4380_495 -4380_77980,285,4380_33689,Lotabeg,74938-00009-1,1,4380_7778208_2080207,4380_495 -4380_77980,286,4380_33690,Lotabeg,74932-00010-1,1,4380_7778208_2080207,4380_495 -4380_77980,288,4380_33691,Lotabeg,74930-00011-1,1,4380_7778208_2080207,4380_495 -4380_77980,287,4380_33692,Lotabeg,74934-00012-1,1,4380_7778208_2080207,4380_495 -4380_77980,291,4380_33693,Lotabeg,74940-00013-1,1,4380_7778208_2080207,4380_497 -4380_77980,289,4380_33694,Lotabeg,74936-00014-1,1,4380_7778208_2080207,4380_495 -4380_77980,292,4380_33695,Lotabeg,74933-00016-1,1,4380_7778208_2080207,4380_495 -4380_77980,293,4380_33696,Lotabeg,74931-00017-1,1,4380_7778208_2080207,4380_495 -4380_77980,290,4380_33697,Lotabeg,74939-00015-1,1,4380_7778208_2080207,4380_495 -4380_77980,294,4380_33698,Lotabeg,74935-00018-1,1,4380_7778208_2080207,4380_495 -4380_77980,295,4380_33699,Lotabeg,74937-00019-1,1,4380_7778208_2080207,4380_495 -4380_77946,293,4380_337,Drogheda,50466-00017-1,1,4380_7778208_1000915,4380_6 -4380_77980,296,4380_33700,Lotabeg,74941-00021-1,1,4380_7778208_2080207,4380_497 -4380_77980,297,4380_33702,Lotabeg,73606-00008-1,1,4380_7778208_2080201,4380_495 -4380_77980,285,4380_33709,Lotabeg,73611-00009-1,1,4380_7778208_2080201,4380_495 -4380_77980,286,4380_33710,Lotabeg,73613-00010-1,1,4380_7778208_2080201,4380_495 -4380_77980,288,4380_33711,Lotabeg,73609-00011-1,1,4380_7778208_2080201,4380_495 -4380_77980,287,4380_33712,Lotabeg,73615-00012-1,1,4380_7778208_2080201,4380_495 -4380_77980,291,4380_33713,Lotabeg,74523-00013-1,1,4380_7778208_2080205,4380_497 -4380_77980,289,4380_33714,Lotabeg,73607-00014-1,1,4380_7778208_2080201,4380_495 -4380_77980,292,4380_33715,Lotabeg,73614-00016-1,1,4380_7778208_2080201,4380_495 -4380_77980,293,4380_33716,Lotabeg,73610-00017-1,1,4380_7778208_2080201,4380_495 -4380_77980,290,4380_33717,Lotabeg,73612-00015-1,1,4380_7778208_2080201,4380_495 -4380_77980,294,4380_33718,Lotabeg,73616-00018-1,1,4380_7778208_2080201,4380_495 -4380_77980,295,4380_33719,Lotabeg,73608-00019-1,1,4380_7778208_2080201,4380_495 -4380_77948,297,4380_3372,Ratoath,1428-00008-1,0,4380_7778208_1030103,4380_39 -4380_77980,296,4380_33720,Lotabeg,74524-00021-1,1,4380_7778208_2080205,4380_497 -4380_77980,297,4380_33728,Lotabeg,74061-00008-1,1,4380_7778208_2080203,4380_495 -4380_77980,285,4380_33729,Lotabeg,74057-00009-1,1,4380_7778208_2080203,4380_497 -4380_77948,291,4380_3373,Ratoath,1750-00013-1,0,4380_7778208_1030107,4380_40 -4380_77980,286,4380_33730,Lotabeg,74059-00010-1,1,4380_7778208_2080203,4380_497 -4380_77980,288,4380_33731,Lotabeg,74053-00011-1,1,4380_7778208_2080203,4380_497 -4380_77980,287,4380_33732,Lotabeg,74055-00012-1,1,4380_7778208_2080203,4380_497 -4380_77980,291,4380_33733,Lotabeg,74770-00013-1,1,4380_7778208_2080206,4380_500 -4380_77980,289,4380_33734,Lotabeg,74051-00014-1,1,4380_7778208_2080203,4380_497 -4380_77980,292,4380_33735,Lotabeg,74060-00016-1,1,4380_7778208_2080203,4380_497 -4380_77980,293,4380_33736,Lotabeg,74054-00017-1,1,4380_7778208_2080203,4380_497 -4380_77980,290,4380_33737,Lotabeg,74058-00015-1,1,4380_7778208_2080203,4380_497 -4380_77980,294,4380_33738,Lotabeg,74056-00018-1,1,4380_7778208_2080203,4380_497 -4380_77980,295,4380_33739,Lotabeg,74052-00019-1,1,4380_7778208_2080203,4380_497 -4380_77948,296,4380_3374,Ratoath,52145-00021-1,0,4380_7778208_1030107,4380_40 -4380_77980,296,4380_33740,Lotabeg,74771-00021-1,1,4380_7778208_2080206,4380_500 -4380_77980,285,4380_33747,Lotabeg,73864-00009-1,1,4380_7778208_2080202,4380_495 -4380_77980,286,4380_33748,Lotabeg,73870-00010-1,1,4380_7778208_2080202,4380_495 -4380_77980,288,4380_33749,Lotabeg,73868-00011-1,1,4380_7778208_2080202,4380_495 -4380_77948,285,4380_3375,Ratoath,1464-00009-1,0,4380_7778208_1030104,4380_39 -4380_77980,287,4380_33750,Lotabeg,73872-00012-1,1,4380_7778208_2080202,4380_495 -4380_77980,291,4380_33751,Lotabeg,73617-00013-1,1,4380_7778208_2080201,4380_497 -4380_77980,289,4380_33752,Lotabeg,73866-00014-1,1,4380_7778208_2080202,4380_495 -4380_77980,292,4380_33753,Lotabeg,73871-00016-1,1,4380_7778208_2080202,4380_495 -4380_77980,293,4380_33754,Lotabeg,73869-00017-1,1,4380_7778208_2080202,4380_495 -4380_77980,290,4380_33755,Lotabeg,73865-00015-1,1,4380_7778208_2080202,4380_495 -4380_77980,294,4380_33756,Lotabeg,73873-00018-1,1,4380_7778208_2080202,4380_495 -4380_77980,295,4380_33757,Lotabeg,73867-00019-1,1,4380_7778208_2080202,4380_495 -4380_77980,296,4380_33758,Lotabeg,73618-00021-1,1,4380_7778208_2080201,4380_497 -4380_77948,286,4380_3376,Ratoath,1476-00010-1,0,4380_7778208_1030104,4380_39 -4380_77980,297,4380_33760,Lotabeg,73874-00008-1,1,4380_7778208_2080202,4380_495 -4380_77980,285,4380_33767,Lotabeg,74528-00009-1,1,4380_7778208_2080205,4380_495 -4380_77980,286,4380_33768,Lotabeg,74530-00010-1,1,4380_7778208_2080205,4380_495 -4380_77980,288,4380_33769,Lotabeg,74526-00011-1,1,4380_7778208_2080205,4380_495 -4380_77948,288,4380_3377,Ratoath,1488-00011-1,0,4380_7778208_1030104,4380_39 -4380_77980,287,4380_33770,Lotabeg,74534-00012-1,1,4380_7778208_2080205,4380_495 -4380_77980,291,4380_33771,Lotabeg,73875-00013-1,1,4380_7778208_2080202,4380_497 -4380_77980,289,4380_33772,Lotabeg,74532-00014-1,1,4380_7778208_2080205,4380_495 -4380_77980,292,4380_33773,Lotabeg,74531-00016-1,1,4380_7778208_2080205,4380_495 -4380_77980,293,4380_33774,Lotabeg,74527-00017-1,1,4380_7778208_2080205,4380_495 -4380_77980,290,4380_33775,Lotabeg,74529-00015-1,1,4380_7778208_2080205,4380_495 -4380_77980,294,4380_33776,Lotabeg,74535-00018-1,1,4380_7778208_2080205,4380_495 -4380_77980,295,4380_33777,Lotabeg,74533-00019-1,1,4380_7778208_2080205,4380_495 -4380_77980,296,4380_33778,Lotabeg,73876-00021-1,1,4380_7778208_2080202,4380_497 -4380_77948,287,4380_3378,Ratoath,1500-00012-1,0,4380_7778208_1030104,4380_39 -4380_77980,297,4380_33780,Lotabeg,74782-00008-1,1,4380_7778208_2080206,4380_495 -4380_77980,285,4380_33787,Lotabeg,74301-00009-1,1,4380_7778208_2080204,4380_495 -4380_77980,286,4380_33788,Lotabeg,74299-00010-1,1,4380_7778208_2080204,4380_495 -4380_77980,288,4380_33789,Lotabeg,74295-00011-1,1,4380_7778208_2080204,4380_495 -4380_77948,289,4380_3379,Ratoath,1452-00014-1,0,4380_7778208_1030104,4380_39 -4380_77980,287,4380_33790,Lotabeg,74303-00012-1,1,4380_7778208_2080204,4380_495 -4380_77980,291,4380_33791,Lotabeg,74297-00013-1,1,4380_7778208_2080204,4380_497 -4380_77980,289,4380_33792,Lotabeg,74305-00014-1,1,4380_7778208_2080204,4380_495 -4380_77980,292,4380_33793,Lotabeg,74300-00016-1,1,4380_7778208_2080204,4380_495 -4380_77980,293,4380_33794,Lotabeg,74296-00017-1,1,4380_7778208_2080204,4380_495 -4380_77980,290,4380_33795,Lotabeg,74302-00015-1,1,4380_7778208_2080204,4380_495 -4380_77980,294,4380_33796,Lotabeg,74304-00018-1,1,4380_7778208_2080204,4380_495 -4380_77980,295,4380_33797,Lotabeg,74306-00019-1,1,4380_7778208_2080204,4380_495 -4380_77980,296,4380_33798,Lotabeg,74298-00021-1,1,4380_7778208_2080204,4380_497 -4380_77946,294,4380_338,Drogheda,50460-00018-1,1,4380_7778208_1000915,4380_6 -4380_77948,290,4380_3380,Ratoath,51961-00015-1,0,4380_7778208_1030104,4380_39 -4380_77980,297,4380_33806,Lotabeg,74538-00008-1,1,4380_7778208_2080205,4380_495 -4380_77980,285,4380_33807,Lotabeg,75166-00009-1,1,4380_7778208_2080208,4380_497 -4380_77980,286,4380_33808,Lotabeg,75168-00010-1,1,4380_7778208_2080208,4380_497 -4380_77980,288,4380_33809,Lotabeg,75162-00011-1,1,4380_7778208_2080208,4380_497 -4380_77948,292,4380_3381,Ratoath,51965-00016-1,0,4380_7778208_1030104,4380_39 -4380_77980,287,4380_33810,Lotabeg,75158-00012-1,1,4380_7778208_2080208,4380_497 -4380_77980,291,4380_33811,Lotabeg,75160-00013-1,1,4380_7778208_2080208,4380_500 -4380_77980,289,4380_33812,Lotabeg,75164-00014-1,1,4380_7778208_2080208,4380_497 -4380_77980,292,4380_33813,Lotabeg,75169-00016-1,1,4380_7778208_2080208,4380_497 -4380_77980,293,4380_33814,Lotabeg,75163-00017-1,1,4380_7778208_2080208,4380_497 -4380_77980,290,4380_33815,Lotabeg,75167-00015-1,1,4380_7778208_2080208,4380_497 -4380_77980,294,4380_33816,Lotabeg,75159-00018-1,1,4380_7778208_2080208,4380_497 -4380_77980,295,4380_33817,Lotabeg,75165-00019-1,1,4380_7778208_2080208,4380_497 -4380_77980,296,4380_33818,Lotabeg,75161-00021-1,1,4380_7778208_2080208,4380_500 -4380_77948,293,4380_3382,Ratoath,51964-00017-1,0,4380_7778208_1030104,4380_39 -4380_77980,285,4380_33825,Lotabeg,74793-00009-1,1,4380_7778208_2080206,4380_495 -4380_77980,286,4380_33826,Lotabeg,74785-00010-1,1,4380_7778208_2080206,4380_495 -4380_77980,288,4380_33827,Lotabeg,74789-00011-1,1,4380_7778208_2080206,4380_495 -4380_77980,287,4380_33828,Lotabeg,74787-00012-1,1,4380_7778208_2080206,4380_495 -4380_77980,291,4380_33829,Lotabeg,74075-00013-1,1,4380_7778208_2080203,4380_497 -4380_77948,294,4380_3383,Ratoath,51962-00018-1,0,4380_7778208_1030104,4380_39 -4380_77980,289,4380_33830,Lotabeg,74791-00014-1,1,4380_7778208_2080206,4380_495 -4380_77980,292,4380_33831,Lotabeg,74786-00016-1,1,4380_7778208_2080206,4380_495 -4380_77980,293,4380_33832,Lotabeg,74790-00017-1,1,4380_7778208_2080206,4380_495 -4380_77980,290,4380_33833,Lotabeg,74794-00015-1,1,4380_7778208_2080206,4380_495 -4380_77980,294,4380_33834,Lotabeg,74788-00018-1,1,4380_7778208_2080206,4380_495 -4380_77980,295,4380_33835,Lotabeg,74792-00019-1,1,4380_7778208_2080206,4380_495 -4380_77980,296,4380_33836,Lotabeg,74076-00021-1,1,4380_7778208_2080203,4380_497 -4380_77980,297,4380_33838,Lotabeg,73632-00008-1,1,4380_7778208_2080201,4380_495 -4380_77948,295,4380_3384,Ratoath,51963-00019-1,0,4380_7778208_1030104,4380_39 -4380_77980,285,4380_33845,Lotabeg,74960-00009-1,1,4380_7778208_2080207,4380_495 -4380_77980,286,4380_33846,Lotabeg,74962-00010-1,1,4380_7778208_2080207,4380_495 -4380_77980,288,4380_33847,Lotabeg,74964-00011-1,1,4380_7778208_2080207,4380_495 -4380_77980,287,4380_33848,Lotabeg,74956-00012-1,1,4380_7778208_2080207,4380_495 -4380_77980,291,4380_33849,Lotabeg,74958-00013-1,1,4380_7778208_2080207,4380_497 -4380_77980,289,4380_33850,Lotabeg,74954-00014-1,1,4380_7778208_2080207,4380_495 -4380_77980,292,4380_33851,Lotabeg,74963-00016-1,1,4380_7778208_2080207,4380_495 -4380_77980,293,4380_33852,Lotabeg,74965-00017-1,1,4380_7778208_2080207,4380_495 -4380_77980,290,4380_33853,Lotabeg,74961-00015-1,1,4380_7778208_2080207,4380_495 -4380_77980,294,4380_33854,Lotabeg,74957-00018-1,1,4380_7778208_2080207,4380_495 -4380_77980,295,4380_33855,Lotabeg,74955-00019-1,1,4380_7778208_2080207,4380_495 -4380_77980,296,4380_33856,Lotabeg,74959-00021-1,1,4380_7778208_2080207,4380_497 -4380_77980,297,4380_33858,Lotabeg,74077-00008-1,1,4380_7778208_2080203,4380_495 -4380_77980,285,4380_33865,Lotabeg,73633-00009-1,1,4380_7778208_2080201,4380_495 -4380_77980,286,4380_33866,Lotabeg,73641-00010-1,1,4380_7778208_2080201,4380_495 -4380_77980,288,4380_33867,Lotabeg,73637-00011-1,1,4380_7778208_2080201,4380_495 -4380_77980,287,4380_33868,Lotabeg,73639-00012-1,1,4380_7778208_2080201,4380_495 -4380_77980,291,4380_33869,Lotabeg,74549-00013-1,1,4380_7778208_2080205,4380_497 -4380_77980,289,4380_33870,Lotabeg,73635-00014-1,1,4380_7778208_2080201,4380_495 -4380_77980,292,4380_33871,Lotabeg,73642-00016-1,1,4380_7778208_2080201,4380_495 -4380_77980,293,4380_33872,Lotabeg,73638-00017-1,1,4380_7778208_2080201,4380_495 -4380_77980,290,4380_33873,Lotabeg,73634-00015-1,1,4380_7778208_2080201,4380_495 -4380_77980,294,4380_33874,Lotabeg,73640-00018-1,1,4380_7778208_2080201,4380_495 -4380_77980,295,4380_33875,Lotabeg,73636-00019-1,1,4380_7778208_2080201,4380_495 -4380_77980,296,4380_33876,Lotabeg,74550-00021-1,1,4380_7778208_2080205,4380_497 -4380_77980,297,4380_33884,Lotabeg,73890-00008-1,1,4380_7778208_2080202,4380_495 -4380_77980,285,4380_33885,Lotabeg,74082-00009-1,1,4380_7778208_2080203,4380_497 -4380_77980,286,4380_33886,Lotabeg,74080-00010-1,1,4380_7778208_2080203,4380_497 -4380_77980,288,4380_33887,Lotabeg,74086-00011-1,1,4380_7778208_2080203,4380_497 -4380_77980,287,4380_33888,Lotabeg,74084-00012-1,1,4380_7778208_2080203,4380_497 -4380_77980,291,4380_33889,Lotabeg,74796-00013-1,1,4380_7778208_2080206,4380_500 -4380_77980,289,4380_33890,Lotabeg,74078-00014-1,1,4380_7778208_2080203,4380_497 -4380_77980,292,4380_33891,Lotabeg,74081-00016-1,1,4380_7778208_2080203,4380_497 -4380_77980,293,4380_33892,Lotabeg,74087-00017-1,1,4380_7778208_2080203,4380_497 -4380_77980,290,4380_33893,Lotabeg,74083-00015-1,1,4380_7778208_2080203,4380_497 -4380_77980,294,4380_33894,Lotabeg,74085-00018-1,1,4380_7778208_2080203,4380_497 -4380_77980,295,4380_33895,Lotabeg,74079-00019-1,1,4380_7778208_2080203,4380_497 -4380_77980,296,4380_33896,Lotabeg,74797-00021-1,1,4380_7778208_2080206,4380_500 -4380_77946,295,4380_339,Drogheda,50464-00019-1,1,4380_7778208_1000915,4380_6 -4380_77980,285,4380_33903,Lotabeg,73899-00009-1,1,4380_7778208_2080202,4380_495 -4380_77980,286,4380_33904,Lotabeg,73893-00010-1,1,4380_7778208_2080202,4380_495 -4380_77980,288,4380_33905,Lotabeg,73895-00011-1,1,4380_7778208_2080202,4380_495 -4380_77980,287,4380_33906,Lotabeg,73891-00012-1,1,4380_7778208_2080202,4380_495 -4380_77980,291,4380_33907,Lotabeg,73644-00013-1,1,4380_7778208_2080201,4380_497 -4380_77980,289,4380_33908,Lotabeg,73897-00014-1,1,4380_7778208_2080202,4380_495 -4380_77980,292,4380_33909,Lotabeg,73894-00016-1,1,4380_7778208_2080202,4380_495 -4380_77948,285,4380_3391,Ratoath,1554-00009-1,0,4380_7778208_1030105,4380_39 -4380_77980,293,4380_33910,Lotabeg,73896-00017-1,1,4380_7778208_2080202,4380_495 -4380_77980,290,4380_33911,Lotabeg,73900-00015-1,1,4380_7778208_2080202,4380_495 -4380_77980,294,4380_33912,Lotabeg,73892-00018-1,1,4380_7778208_2080202,4380_495 -4380_77980,295,4380_33913,Lotabeg,73898-00019-1,1,4380_7778208_2080202,4380_495 -4380_77980,296,4380_33914,Lotabeg,73645-00021-1,1,4380_7778208_2080201,4380_497 -4380_77980,297,4380_33916,Lotabeg,74808-00008-1,1,4380_7778208_2080206,4380_495 -4380_77948,286,4380_3392,Ratoath,1562-00010-1,0,4380_7778208_1030105,4380_39 -4380_77980,285,4380_33923,Lotabeg,74556-00009-1,1,4380_7778208_2080205,4380_495 -4380_77980,286,4380_33924,Lotabeg,74560-00010-1,1,4380_7778208_2080205,4380_495 -4380_77980,288,4380_33925,Lotabeg,74554-00011-1,1,4380_7778208_2080205,4380_495 -4380_77980,287,4380_33926,Lotabeg,74558-00012-1,1,4380_7778208_2080205,4380_495 -4380_77980,291,4380_33927,Lotabeg,73901-00013-1,1,4380_7778208_2080202,4380_497 -4380_77980,289,4380_33928,Lotabeg,74552-00014-1,1,4380_7778208_2080205,4380_495 -4380_77980,292,4380_33929,Lotabeg,74561-00016-1,1,4380_7778208_2080205,4380_495 -4380_77948,288,4380_3393,Ratoath,1570-00011-1,0,4380_7778208_1030105,4380_39 -4380_77980,293,4380_33930,Lotabeg,74555-00017-1,1,4380_7778208_2080205,4380_495 -4380_77980,290,4380_33931,Lotabeg,74557-00015-1,1,4380_7778208_2080205,4380_495 -4380_77980,294,4380_33932,Lotabeg,74559-00018-1,1,4380_7778208_2080205,4380_495 -4380_77980,295,4380_33933,Lotabeg,74553-00019-1,1,4380_7778208_2080205,4380_495 -4380_77980,296,4380_33934,Lotabeg,73902-00021-1,1,4380_7778208_2080202,4380_497 -4380_77980,297,4380_33936,Lotabeg,74562-00008-1,1,4380_7778208_2080205,4380_495 -4380_77948,287,4380_3394,Ratoath,1578-00012-1,0,4380_7778208_1030105,4380_39 -4380_77980,285,4380_33943,Lotabeg,74319-00009-1,1,4380_7778208_2080204,4380_495 -4380_77980,286,4380_33944,Lotabeg,74325-00010-1,1,4380_7778208_2080204,4380_495 -4380_77980,288,4380_33945,Lotabeg,74321-00011-1,1,4380_7778208_2080204,4380_495 -4380_77980,287,4380_33946,Lotabeg,74327-00012-1,1,4380_7778208_2080204,4380_495 -4380_77980,291,4380_33947,Lotabeg,74323-00013-1,1,4380_7778208_2080204,4380_497 -4380_77980,289,4380_33948,Lotabeg,74329-00014-1,1,4380_7778208_2080204,4380_495 -4380_77980,292,4380_33949,Lotabeg,74326-00016-1,1,4380_7778208_2080204,4380_495 -4380_77948,289,4380_3395,Ratoath,1546-00014-1,0,4380_7778208_1030105,4380_39 -4380_77980,293,4380_33950,Lotabeg,74322-00017-1,1,4380_7778208_2080204,4380_495 -4380_77980,290,4380_33951,Lotabeg,74320-00015-1,1,4380_7778208_2080204,4380_495 -4380_77980,294,4380_33952,Lotabeg,74328-00018-1,1,4380_7778208_2080204,4380_495 -4380_77980,295,4380_33953,Lotabeg,74330-00019-1,1,4380_7778208_2080204,4380_495 -4380_77980,296,4380_33954,Lotabeg,74324-00021-1,1,4380_7778208_2080204,4380_497 -4380_77948,290,4380_3396,Ratoath,52034-00015-1,0,4380_7778208_1030105,4380_39 -4380_77980,285,4380_33960,Lotabeg,75190-00009-1,1,4380_7778208_2080208,4380_498 -4380_77980,286,4380_33961,Lotabeg,75182-00010-1,1,4380_7778208_2080208,4380_498 -4380_77980,288,4380_33962,Lotabeg,75188-00011-1,1,4380_7778208_2080208,4380_498 -4380_77980,287,4380_33963,Lotabeg,75184-00012-1,1,4380_7778208_2080208,4380_498 -4380_77980,289,4380_33964,Lotabeg,75186-00014-1,1,4380_7778208_2080208,4380_498 -4380_77980,292,4380_33965,Lotabeg,75183-00016-1,1,4380_7778208_2080208,4380_498 -4380_77980,293,4380_33966,Lotabeg,75189-00017-1,1,4380_7778208_2080208,4380_498 -4380_77980,290,4380_33967,Lotabeg,75191-00015-1,1,4380_7778208_2080208,4380_498 -4380_77980,294,4380_33968,Lotabeg,75185-00018-1,1,4380_7778208_2080208,4380_498 -4380_77980,295,4380_33969,Lotabeg,75187-00019-1,1,4380_7778208_2080208,4380_498 -4380_77948,291,4380_3397,Ratoath,1224-00013-1,0,4380_7778208_1030101,4380_40 -4380_77980,297,4380_33972,Lotabeg,73656-00008-1,1,4380_7778208_2080201,4380_495 -4380_77980,291,4380_33973,Lotabeg,75192-00013-1,1,4380_7778208_2080208,4380_497 -4380_77980,296,4380_33974,Lotabeg,75193-00021-1,1,4380_7778208_2080208,4380_497 -4380_77948,292,4380_3398,Ratoath,52031-00016-1,0,4380_7778208_1030105,4380_39 -4380_77980,285,4380_33981,Lotabeg,74814-00009-1,1,4380_7778208_2080206,4380_495 -4380_77980,286,4380_33982,Lotabeg,74816-00010-1,1,4380_7778208_2080206,4380_495 -4380_77980,288,4380_33983,Lotabeg,74820-00011-1,1,4380_7778208_2080206,4380_495 -4380_77980,287,4380_33984,Lotabeg,74818-00012-1,1,4380_7778208_2080206,4380_495 -4380_77980,291,4380_33985,Lotabeg,74101-00013-1,1,4380_7778208_2080203,4380_497 -4380_77980,289,4380_33986,Lotabeg,74812-00014-1,1,4380_7778208_2080206,4380_495 -4380_77980,292,4380_33987,Lotabeg,74817-00016-1,1,4380_7778208_2080206,4380_495 -4380_77980,293,4380_33988,Lotabeg,74821-00017-1,1,4380_7778208_2080206,4380_495 -4380_77980,290,4380_33989,Lotabeg,74815-00015-1,1,4380_7778208_2080206,4380_495 -4380_77948,293,4380_3399,Ratoath,52033-00017-1,0,4380_7778208_1030105,4380_39 -4380_77980,294,4380_33990,Lotabeg,74819-00018-1,1,4380_7778208_2080206,4380_495 -4380_77980,295,4380_33991,Lotabeg,74813-00019-1,1,4380_7778208_2080206,4380_495 -4380_77980,296,4380_33992,Lotabeg,74102-00021-1,1,4380_7778208_2080203,4380_497 -4380_77980,297,4380_33994,Lotabeg,74103-00008-1,1,4380_7778208_2080203,4380_495 -4380_77946,296,4380_340,Drogheda,50272-00021-1,1,4380_7778208_1000912,4380_9 -4380_77948,294,4380_3400,Ratoath,52035-00018-1,0,4380_7778208_1030105,4380_39 -4380_77980,285,4380_34001,Lotabeg,74986-00009-1,1,4380_7778208_2080207,4380_495 -4380_77980,286,4380_34002,Lotabeg,74988-00010-1,1,4380_7778208_2080207,4380_495 -4380_77980,288,4380_34003,Lotabeg,74978-00011-1,1,4380_7778208_2080207,4380_495 -4380_77980,287,4380_34004,Lotabeg,74982-00012-1,1,4380_7778208_2080207,4380_495 -4380_77980,291,4380_34005,Lotabeg,74984-00013-1,1,4380_7778208_2080207,4380_497 -4380_77980,289,4380_34006,Lotabeg,74980-00014-1,1,4380_7778208_2080207,4380_495 -4380_77980,292,4380_34007,Lotabeg,74989-00016-1,1,4380_7778208_2080207,4380_495 -4380_77980,293,4380_34008,Lotabeg,74979-00017-1,1,4380_7778208_2080207,4380_495 -4380_77980,290,4380_34009,Lotabeg,74987-00015-1,1,4380_7778208_2080207,4380_495 -4380_77948,295,4380_3401,Ratoath,52032-00019-1,0,4380_7778208_1030105,4380_39 -4380_77980,294,4380_34010,Lotabeg,74983-00018-1,1,4380_7778208_2080207,4380_495 -4380_77980,295,4380_34011,Lotabeg,74981-00019-1,1,4380_7778208_2080207,4380_495 -4380_77980,296,4380_34012,Lotabeg,74985-00021-1,1,4380_7778208_2080207,4380_497 -4380_77980,297,4380_34014,Lotabeg,73916-00008-1,1,4380_7778208_2080202,4380_495 -4380_77948,296,4380_3402,Ratoath,51784-00021-1,0,4380_7778208_1030101,4380_40 -4380_77980,285,4380_34021,Lotabeg,73661-00009-1,1,4380_7778208_2080201,4380_495 -4380_77980,286,4380_34022,Lotabeg,73663-00010-1,1,4380_7778208_2080201,4380_495 -4380_77980,288,4380_34023,Lotabeg,73665-00011-1,1,4380_7778208_2080201,4380_495 -4380_77980,287,4380_34024,Lotabeg,73667-00012-1,1,4380_7778208_2080201,4380_495 -4380_77980,291,4380_34025,Lotabeg,74576-00013-1,1,4380_7778208_2080205,4380_497 -4380_77980,289,4380_34026,Lotabeg,73659-00014-1,1,4380_7778208_2080201,4380_495 -4380_77980,292,4380_34027,Lotabeg,73664-00016-1,1,4380_7778208_2080201,4380_495 -4380_77980,293,4380_34028,Lotabeg,73666-00017-1,1,4380_7778208_2080201,4380_495 -4380_77980,290,4380_34029,Lotabeg,73662-00015-1,1,4380_7778208_2080201,4380_495 -4380_77980,294,4380_34030,Lotabeg,73668-00018-1,1,4380_7778208_2080201,4380_495 -4380_77980,295,4380_34031,Lotabeg,73660-00019-1,1,4380_7778208_2080201,4380_495 -4380_77980,296,4380_34032,Lotabeg,74577-00021-1,1,4380_7778208_2080205,4380_497 -4380_77980,297,4380_34040,Lotabeg,74824-00008-1,1,4380_7778208_2080206,4380_495 -4380_77980,285,4380_34041,Lotabeg,74110-00009-1,1,4380_7778208_2080203,4380_497 -4380_77980,286,4380_34042,Lotabeg,74106-00010-1,1,4380_7778208_2080203,4380_497 -4380_77980,288,4380_34043,Lotabeg,74104-00011-1,1,4380_7778208_2080203,4380_497 -4380_77980,287,4380_34044,Lotabeg,74108-00012-1,1,4380_7778208_2080203,4380_497 -4380_77980,291,4380_34045,Lotabeg,74822-00013-1,1,4380_7778208_2080206,4380_500 -4380_77980,289,4380_34046,Lotabeg,74112-00014-1,1,4380_7778208_2080203,4380_497 -4380_77980,292,4380_34047,Lotabeg,74107-00016-1,1,4380_7778208_2080203,4380_497 -4380_77980,293,4380_34048,Lotabeg,74105-00017-1,1,4380_7778208_2080203,4380_497 -4380_77980,290,4380_34049,Lotabeg,74111-00015-1,1,4380_7778208_2080203,4380_497 -4380_77980,294,4380_34050,Lotabeg,74109-00018-1,1,4380_7778208_2080203,4380_497 -4380_77980,295,4380_34051,Lotabeg,74113-00019-1,1,4380_7778208_2080203,4380_497 -4380_77980,296,4380_34052,Lotabeg,74823-00021-1,1,4380_7778208_2080206,4380_500 -4380_77980,285,4380_34059,Lotabeg,73917-00009-1,1,4380_7778208_2080202,4380_495 -4380_77980,286,4380_34060,Lotabeg,73921-00010-1,1,4380_7778208_2080202,4380_495 -4380_77980,288,4380_34061,Lotabeg,73923-00011-1,1,4380_7778208_2080202,4380_495 -4380_77980,287,4380_34062,Lotabeg,73919-00012-1,1,4380_7778208_2080202,4380_495 -4380_77980,291,4380_34063,Lotabeg,73670-00013-1,1,4380_7778208_2080201,4380_497 -4380_77980,289,4380_34064,Lotabeg,73925-00014-1,1,4380_7778208_2080202,4380_495 -4380_77980,292,4380_34065,Lotabeg,73922-00016-1,1,4380_7778208_2080202,4380_495 -4380_77980,293,4380_34066,Lotabeg,73924-00017-1,1,4380_7778208_2080202,4380_495 -4380_77980,290,4380_34067,Lotabeg,73918-00015-1,1,4380_7778208_2080202,4380_495 -4380_77980,294,4380_34068,Lotabeg,73920-00018-1,1,4380_7778208_2080202,4380_495 -4380_77980,295,4380_34069,Lotabeg,73926-00019-1,1,4380_7778208_2080202,4380_495 -4380_77980,296,4380_34070,Lotabeg,73671-00021-1,1,4380_7778208_2080201,4380_497 -4380_77980,297,4380_34072,Lotabeg,74578-00008-1,1,4380_7778208_2080205,4380_495 -4380_77980,285,4380_34079,Lotabeg,74585-00009-1,1,4380_7778208_2080205,4380_495 -4380_77948,285,4380_3408,Ratoath,1774-00009-1,0,4380_7778208_1030108,4380_39 -4380_77980,286,4380_34080,Lotabeg,74583-00010-1,1,4380_7778208_2080205,4380_495 -4380_77980,288,4380_34081,Lotabeg,74579-00011-1,1,4380_7778208_2080205,4380_495 -4380_77980,287,4380_34082,Lotabeg,74581-00012-1,1,4380_7778208_2080205,4380_495 -4380_77980,291,4380_34083,Lotabeg,73927-00013-1,1,4380_7778208_2080202,4380_497 -4380_77980,289,4380_34084,Lotabeg,74587-00014-1,1,4380_7778208_2080205,4380_495 -4380_77980,292,4380_34085,Lotabeg,74584-00016-1,1,4380_7778208_2080205,4380_495 -4380_77980,293,4380_34086,Lotabeg,74580-00017-1,1,4380_7778208_2080205,4380_495 -4380_77980,290,4380_34087,Lotabeg,74586-00015-1,1,4380_7778208_2080205,4380_495 -4380_77980,294,4380_34088,Lotabeg,74582-00018-1,1,4380_7778208_2080205,4380_495 -4380_77980,295,4380_34089,Lotabeg,74588-00019-1,1,4380_7778208_2080205,4380_495 -4380_77948,286,4380_3409,Ratoath,1786-00010-1,0,4380_7778208_1030108,4380_39 -4380_77980,296,4380_34090,Lotabeg,73928-00021-1,1,4380_7778208_2080202,4380_497 -4380_77980,297,4380_34092,Lotabeg,73672-00008-1,1,4380_7778208_2080201,4380_495 -4380_77980,285,4380_34099,Lotabeg,74345-00009-1,1,4380_7778208_2080204,4380_495 -4380_77948,288,4380_3410,Ratoath,1798-00011-1,0,4380_7778208_1030108,4380_39 -4380_77980,286,4380_34100,Lotabeg,74351-00010-1,1,4380_7778208_2080204,4380_495 -4380_77980,288,4380_34101,Lotabeg,74349-00011-1,1,4380_7778208_2080204,4380_495 -4380_77980,287,4380_34102,Lotabeg,74347-00012-1,1,4380_7778208_2080204,4380_495 -4380_77980,291,4380_34103,Lotabeg,74353-00013-1,1,4380_7778208_2080204,4380_497 -4380_77980,289,4380_34104,Lotabeg,74343-00014-1,1,4380_7778208_2080204,4380_495 -4380_77980,292,4380_34105,Lotabeg,74352-00016-1,1,4380_7778208_2080204,4380_495 -4380_77980,293,4380_34106,Lotabeg,74350-00017-1,1,4380_7778208_2080204,4380_495 -4380_77980,290,4380_34107,Lotabeg,74346-00015-1,1,4380_7778208_2080204,4380_495 -4380_77980,294,4380_34108,Lotabeg,74348-00018-1,1,4380_7778208_2080204,4380_495 -4380_77980,295,4380_34109,Lotabeg,74344-00019-1,1,4380_7778208_2080204,4380_495 -4380_77948,287,4380_3411,Ratoath,1810-00012-1,0,4380_7778208_1030108,4380_39 -4380_77980,296,4380_34110,Lotabeg,74354-00021-1,1,4380_7778208_2080204,4380_497 -4380_77980,297,4380_34113,Lotabeg,74123-00008-1,1,4380_7778208_2080203,4380_495 -4380_77980,291,4380_34114,Lotabeg,75206-00013-1,1,4380_7778208_2080208,4380_497 -4380_77980,296,4380_34115,Lotabeg,75207-00021-1,1,4380_7778208_2080208,4380_497 -4380_77948,289,4380_3412,Ratoath,1762-00014-1,0,4380_7778208_1030108,4380_39 -4380_77980,285,4380_34121,Lotabeg,75214-00009-1,1,4380_7778208_2080208,4380_498 -4380_77980,286,4380_34122,Lotabeg,75216-00010-1,1,4380_7778208_2080208,4380_498 -4380_77980,288,4380_34123,Lotabeg,75208-00011-1,1,4380_7778208_2080208,4380_498 -4380_77980,287,4380_34124,Lotabeg,75212-00012-1,1,4380_7778208_2080208,4380_498 -4380_77980,289,4380_34125,Lotabeg,75210-00014-1,1,4380_7778208_2080208,4380_498 -4380_77980,292,4380_34126,Lotabeg,75217-00016-1,1,4380_7778208_2080208,4380_498 -4380_77980,293,4380_34127,Lotabeg,75209-00017-1,1,4380_7778208_2080208,4380_498 -4380_77980,290,4380_34128,Lotabeg,75215-00015-1,1,4380_7778208_2080208,4380_498 -4380_77980,294,4380_34129,Lotabeg,75213-00018-1,1,4380_7778208_2080208,4380_498 -4380_77948,290,4380_3413,Ratoath,52215-00015-1,0,4380_7778208_1030108,4380_39 -4380_77980,295,4380_34130,Lotabeg,75211-00019-1,1,4380_7778208_2080208,4380_498 -4380_77980,285,4380_34137,Lotabeg,74840-00009-1,1,4380_7778208_2080206,4380_495 -4380_77980,286,4380_34138,Lotabeg,74844-00010-1,1,4380_7778208_2080206,4380_495 -4380_77980,288,4380_34139,Lotabeg,74838-00011-1,1,4380_7778208_2080206,4380_495 -4380_77948,292,4380_3414,Ratoath,52212-00016-1,0,4380_7778208_1030108,4380_39 -4380_77980,287,4380_34140,Lotabeg,74842-00012-1,1,4380_7778208_2080206,4380_495 -4380_77980,291,4380_34141,Lotabeg,74128-00013-1,1,4380_7778208_2080203,4380_497 -4380_77980,289,4380_34142,Lotabeg,74846-00014-1,1,4380_7778208_2080206,4380_495 -4380_77980,292,4380_34143,Lotabeg,74845-00016-1,1,4380_7778208_2080206,4380_495 -4380_77980,293,4380_34144,Lotabeg,74839-00017-1,1,4380_7778208_2080206,4380_495 -4380_77980,290,4380_34145,Lotabeg,74841-00015-1,1,4380_7778208_2080206,4380_495 -4380_77980,294,4380_34146,Lotabeg,74843-00018-1,1,4380_7778208_2080206,4380_495 -4380_77980,295,4380_34147,Lotabeg,74847-00019-1,1,4380_7778208_2080206,4380_495 -4380_77980,296,4380_34148,Lotabeg,74129-00021-1,1,4380_7778208_2080203,4380_497 -4380_77948,293,4380_3415,Ratoath,52211-00017-1,0,4380_7778208_1030108,4380_39 -4380_77980,297,4380_34150,Lotabeg,73940-00008-1,1,4380_7778208_2080202,4380_495 -4380_77980,285,4380_34157,Lotabeg,75010-00009-1,1,4380_7778208_2080207,4380_495 -4380_77980,286,4380_34158,Lotabeg,75012-00010-1,1,4380_7778208_2080207,4380_495 -4380_77980,288,4380_34159,Lotabeg,75004-00011-1,1,4380_7778208_2080207,4380_495 -4380_77948,294,4380_3416,Ratoath,52213-00018-1,0,4380_7778208_1030108,4380_39 -4380_77980,287,4380_34160,Lotabeg,75008-00012-1,1,4380_7778208_2080207,4380_495 -4380_77980,291,4380_34161,Lotabeg,75006-00013-1,1,4380_7778208_2080207,4380_497 -4380_77980,289,4380_34162,Lotabeg,75002-00014-1,1,4380_7778208_2080207,4380_495 -4380_77980,292,4380_34163,Lotabeg,75013-00016-1,1,4380_7778208_2080207,4380_495 -4380_77980,293,4380_34164,Lotabeg,75005-00017-1,1,4380_7778208_2080207,4380_495 -4380_77980,290,4380_34165,Lotabeg,75011-00015-1,1,4380_7778208_2080207,4380_495 -4380_77980,294,4380_34166,Lotabeg,75009-00018-1,1,4380_7778208_2080207,4380_495 -4380_77980,295,4380_34167,Lotabeg,75003-00019-1,1,4380_7778208_2080207,4380_495 -4380_77980,296,4380_34168,Lotabeg,75007-00021-1,1,4380_7778208_2080207,4380_497 -4380_77948,295,4380_3417,Ratoath,52214-00019-1,0,4380_7778208_1030108,4380_39 -4380_77980,297,4380_34170,Lotabeg,74848-00008-1,1,4380_7778208_2080206,4380_495 -4380_77980,285,4380_34177,Lotabeg,73694-00009-1,1,4380_7778208_2080201,4380_495 -4380_77980,286,4380_34178,Lotabeg,73688-00010-1,1,4380_7778208_2080201,4380_495 -4380_77980,288,4380_34179,Lotabeg,73692-00011-1,1,4380_7778208_2080201,4380_495 -4380_77980,287,4380_34180,Lotabeg,73690-00012-1,1,4380_7778208_2080201,4380_495 -4380_77980,291,4380_34181,Lotabeg,74602-00013-1,1,4380_7778208_2080205,4380_497 -4380_77980,289,4380_34182,Lotabeg,73686-00014-1,1,4380_7778208_2080201,4380_495 -4380_77980,292,4380_34183,Lotabeg,73689-00016-1,1,4380_7778208_2080201,4380_495 -4380_77980,293,4380_34184,Lotabeg,73693-00017-1,1,4380_7778208_2080201,4380_495 -4380_77980,290,4380_34185,Lotabeg,73695-00015-1,1,4380_7778208_2080201,4380_495 -4380_77980,294,4380_34186,Lotabeg,73691-00018-1,1,4380_7778208_2080201,4380_495 -4380_77980,295,4380_34187,Lotabeg,73687-00019-1,1,4380_7778208_2080201,4380_495 -4380_77980,296,4380_34188,Lotabeg,74603-00021-1,1,4380_7778208_2080205,4380_497 -4380_77980,297,4380_34191,Lotabeg,74604-00008-1,1,4380_7778208_2080205,4380_495 -4380_77980,291,4380_34192,Lotabeg,74849-00013-1,1,4380_7778208_2080206,4380_497 -4380_77980,296,4380_34193,Lotabeg,74850-00021-1,1,4380_7778208_2080206,4380_497 -4380_77980,285,4380_34199,Lotabeg,74139-00009-1,1,4380_7778208_2080203,4380_498 -4380_77980,286,4380_34200,Lotabeg,74137-00010-1,1,4380_7778208_2080203,4380_498 -4380_77980,288,4380_34201,Lotabeg,74135-00011-1,1,4380_7778208_2080203,4380_498 -4380_77980,287,4380_34202,Lotabeg,74131-00012-1,1,4380_7778208_2080203,4380_498 -4380_77980,289,4380_34203,Lotabeg,74133-00014-1,1,4380_7778208_2080203,4380_498 -4380_77980,292,4380_34204,Lotabeg,74138-00016-1,1,4380_7778208_2080203,4380_498 -4380_77980,293,4380_34205,Lotabeg,74136-00017-1,1,4380_7778208_2080203,4380_498 -4380_77980,290,4380_34206,Lotabeg,74140-00015-1,1,4380_7778208_2080203,4380_498 -4380_77980,294,4380_34207,Lotabeg,74132-00018-1,1,4380_7778208_2080203,4380_498 -4380_77980,295,4380_34208,Lotabeg,74134-00019-1,1,4380_7778208_2080203,4380_498 -4380_77980,285,4380_34215,Lotabeg,73950-00009-1,1,4380_7778208_2080202,4380_495 -4380_77980,286,4380_34216,Lotabeg,73944-00010-1,1,4380_7778208_2080202,4380_495 -4380_77980,288,4380_34217,Lotabeg,73952-00011-1,1,4380_7778208_2080202,4380_495 -4380_77980,287,4380_34218,Lotabeg,73948-00012-1,1,4380_7778208_2080202,4380_495 -4380_77980,291,4380_34219,Lotabeg,73696-00013-1,1,4380_7778208_2080201,4380_497 -4380_77980,289,4380_34220,Lotabeg,73946-00014-1,1,4380_7778208_2080202,4380_495 -4380_77980,292,4380_34221,Lotabeg,73945-00016-1,1,4380_7778208_2080202,4380_495 -4380_77980,293,4380_34222,Lotabeg,73953-00017-1,1,4380_7778208_2080202,4380_495 -4380_77980,290,4380_34223,Lotabeg,73951-00015-1,1,4380_7778208_2080202,4380_495 -4380_77980,294,4380_34224,Lotabeg,73949-00018-1,1,4380_7778208_2080202,4380_495 -4380_77980,295,4380_34225,Lotabeg,73947-00019-1,1,4380_7778208_2080202,4380_495 -4380_77980,296,4380_34226,Lotabeg,73697-00021-1,1,4380_7778208_2080201,4380_497 -4380_77980,297,4380_34228,Lotabeg,73698-00008-1,1,4380_7778208_2080201,4380_495 -4380_77980,285,4380_34235,Lotabeg,74609-00009-1,1,4380_7778208_2080205,4380_495 -4380_77980,286,4380_34236,Lotabeg,74611-00010-1,1,4380_7778208_2080205,4380_495 -4380_77980,288,4380_34237,Lotabeg,74613-00011-1,1,4380_7778208_2080205,4380_495 -4380_77980,287,4380_34238,Lotabeg,74605-00012-1,1,4380_7778208_2080205,4380_495 -4380_77980,291,4380_34239,Lotabeg,73954-00013-1,1,4380_7778208_2080202,4380_497 -4380_77980,289,4380_34240,Lotabeg,74607-00014-1,1,4380_7778208_2080205,4380_495 -4380_77980,292,4380_34241,Lotabeg,74612-00016-1,1,4380_7778208_2080205,4380_495 -4380_77980,293,4380_34242,Lotabeg,74614-00017-1,1,4380_7778208_2080205,4380_495 -4380_77980,290,4380_34243,Lotabeg,74610-00015-1,1,4380_7778208_2080205,4380_495 -4380_77980,294,4380_34244,Lotabeg,74606-00018-1,1,4380_7778208_2080205,4380_495 -4380_77980,295,4380_34245,Lotabeg,74608-00019-1,1,4380_7778208_2080205,4380_495 -4380_77980,296,4380_34246,Lotabeg,73955-00021-1,1,4380_7778208_2080202,4380_497 -4380_77980,297,4380_34248,Lotabeg,74143-00008-1,1,4380_7778208_2080203,4380_495 -4380_77948,297,4380_3425,Ratoath,1538-00008-1,0,4380_7778208_1030104,4380_39 -4380_77980,285,4380_34255,Lotabeg,74367-00009-1,1,4380_7778208_2080204,4380_495 -4380_77980,286,4380_34256,Lotabeg,74375-00010-1,1,4380_7778208_2080204,4380_495 -4380_77980,288,4380_34257,Lotabeg,74371-00011-1,1,4380_7778208_2080204,4380_495 -4380_77980,287,4380_34258,Lotabeg,74373-00012-1,1,4380_7778208_2080204,4380_495 -4380_77980,291,4380_34259,Lotabeg,74377-00013-1,1,4380_7778208_2080204,4380_497 -4380_77948,291,4380_3426,Ratoath,1324-00013-1,0,4380_7778208_1030102,4380_40 -4380_77980,289,4380_34260,Lotabeg,74369-00014-1,1,4380_7778208_2080204,4380_495 -4380_77980,292,4380_34261,Lotabeg,74376-00016-1,1,4380_7778208_2080204,4380_495 -4380_77980,293,4380_34262,Lotabeg,74372-00017-1,1,4380_7778208_2080204,4380_495 -4380_77980,290,4380_34263,Lotabeg,74368-00015-1,1,4380_7778208_2080204,4380_495 -4380_77980,294,4380_34264,Lotabeg,74374-00018-1,1,4380_7778208_2080204,4380_495 -4380_77980,295,4380_34265,Lotabeg,74370-00019-1,1,4380_7778208_2080204,4380_495 -4380_77980,296,4380_34266,Lotabeg,74378-00021-1,1,4380_7778208_2080204,4380_497 -4380_77948,296,4380_3427,Ratoath,51849-00021-1,0,4380_7778208_1030102,4380_40 -4380_77980,297,4380_34274,Lotabeg,73956-00008-1,1,4380_7778208_2080202,4380_495 -4380_77980,285,4380_34275,Lotabeg,75236-00009-1,1,4380_7778208_2080208,4380_497 -4380_77980,286,4380_34276,Lotabeg,75232-00010-1,1,4380_7778208_2080208,4380_497 -4380_77980,288,4380_34277,Lotabeg,75234-00011-1,1,4380_7778208_2080208,4380_497 -4380_77980,287,4380_34278,Lotabeg,75230-00012-1,1,4380_7778208_2080208,4380_497 -4380_77980,291,4380_34279,Lotabeg,75240-00013-1,1,4380_7778208_2080208,4380_500 -4380_77948,285,4380_3428,Ratoath,1698-00009-1,0,4380_7778208_1030107,4380_39 -4380_77980,289,4380_34280,Lotabeg,75238-00014-1,1,4380_7778208_2080208,4380_497 -4380_77980,292,4380_34281,Lotabeg,75233-00016-1,1,4380_7778208_2080208,4380_497 -4380_77980,293,4380_34282,Lotabeg,75235-00017-1,1,4380_7778208_2080208,4380_497 -4380_77980,290,4380_34283,Lotabeg,75237-00015-1,1,4380_7778208_2080208,4380_497 -4380_77980,294,4380_34284,Lotabeg,75231-00018-1,1,4380_7778208_2080208,4380_497 -4380_77980,295,4380_34285,Lotabeg,75239-00019-1,1,4380_7778208_2080208,4380_497 -4380_77980,296,4380_34286,Lotabeg,75241-00021-1,1,4380_7778208_2080208,4380_500 -4380_77948,286,4380_3429,Ratoath,1710-00010-1,0,4380_7778208_1030107,4380_39 -4380_77980,285,4380_34293,Lotabeg,74870-00009-1,1,4380_7778208_2080206,4380_495 -4380_77980,286,4380_34294,Lotabeg,74868-00010-1,1,4380_7778208_2080206,4380_495 -4380_77980,288,4380_34295,Lotabeg,74864-00011-1,1,4380_7778208_2080206,4380_495 -4380_77980,287,4380_34296,Lotabeg,74866-00012-1,1,4380_7778208_2080206,4380_495 -4380_77980,291,4380_34297,Lotabeg,74154-00013-1,1,4380_7778208_2080203,4380_497 -4380_77980,289,4380_34298,Lotabeg,74872-00014-1,1,4380_7778208_2080206,4380_495 -4380_77980,292,4380_34299,Lotabeg,74869-00016-1,1,4380_7778208_2080206,4380_495 -4380_77948,288,4380_3430,Ratoath,1722-00011-1,0,4380_7778208_1030107,4380_39 -4380_77980,293,4380_34300,Lotabeg,74865-00017-1,1,4380_7778208_2080206,4380_495 -4380_77980,290,4380_34301,Lotabeg,74871-00015-1,1,4380_7778208_2080206,4380_495 -4380_77980,294,4380_34302,Lotabeg,74867-00018-1,1,4380_7778208_2080206,4380_495 -4380_77980,295,4380_34303,Lotabeg,74873-00019-1,1,4380_7778208_2080206,4380_495 -4380_77980,296,4380_34304,Lotabeg,74155-00021-1,1,4380_7778208_2080203,4380_497 -4380_77980,297,4380_34306,Lotabeg,74874-00008-1,1,4380_7778208_2080206,4380_495 -4380_77948,287,4380_3431,Ratoath,1734-00012-1,0,4380_7778208_1030107,4380_39 -4380_77980,285,4380_34313,Lotabeg,75028-00009-1,1,4380_7778208_2080207,4380_495 -4380_77980,286,4380_34314,Lotabeg,75032-00010-1,1,4380_7778208_2080207,4380_495 -4380_77980,288,4380_34315,Lotabeg,75030-00011-1,1,4380_7778208_2080207,4380_495 -4380_77980,287,4380_34316,Lotabeg,75036-00012-1,1,4380_7778208_2080207,4380_495 -4380_77980,291,4380_34317,Lotabeg,75034-00013-1,1,4380_7778208_2080207,4380_497 -4380_77980,289,4380_34318,Lotabeg,75026-00014-1,1,4380_7778208_2080207,4380_495 -4380_77980,292,4380_34319,Lotabeg,75033-00016-1,1,4380_7778208_2080207,4380_495 -4380_77948,289,4380_3432,Ratoath,1686-00014-1,0,4380_7778208_1030107,4380_39 -4380_77980,293,4380_34320,Lotabeg,75031-00017-1,1,4380_7778208_2080207,4380_495 -4380_77980,290,4380_34321,Lotabeg,75029-00015-1,1,4380_7778208_2080207,4380_495 -4380_77980,294,4380_34322,Lotabeg,75037-00018-1,1,4380_7778208_2080207,4380_495 -4380_77980,295,4380_34323,Lotabeg,75027-00019-1,1,4380_7778208_2080207,4380_495 -4380_77980,296,4380_34324,Lotabeg,75035-00021-1,1,4380_7778208_2080207,4380_497 -4380_77980,297,4380_34326,Lotabeg,74628-00008-1,1,4380_7778208_2080205,4380_495 -4380_77948,290,4380_3433,Ratoath,52148-00015-1,0,4380_7778208_1030107,4380_39 -4380_77980,285,4380_34333,Lotabeg,73718-00009-1,1,4380_7778208_2080201,4380_495 -4380_77980,286,4380_34334,Lotabeg,73720-00010-1,1,4380_7778208_2080201,4380_495 -4380_77980,288,4380_34335,Lotabeg,73716-00011-1,1,4380_7778208_2080201,4380_495 -4380_77980,287,4380_34336,Lotabeg,73714-00012-1,1,4380_7778208_2080201,4380_495 -4380_77980,291,4380_34337,Lotabeg,74629-00013-1,1,4380_7778208_2080205,4380_497 -4380_77980,289,4380_34338,Lotabeg,73712-00014-1,1,4380_7778208_2080201,4380_495 -4380_77980,292,4380_34339,Lotabeg,73721-00016-1,1,4380_7778208_2080201,4380_495 -4380_77948,292,4380_3434,Ratoath,52151-00016-1,0,4380_7778208_1030107,4380_39 -4380_77980,293,4380_34340,Lotabeg,73717-00017-1,1,4380_7778208_2080201,4380_495 -4380_77980,290,4380_34341,Lotabeg,73719-00015-1,1,4380_7778208_2080201,4380_495 -4380_77980,294,4380_34342,Lotabeg,73715-00018-1,1,4380_7778208_2080201,4380_495 -4380_77980,295,4380_34343,Lotabeg,73713-00019-1,1,4380_7778208_2080201,4380_495 -4380_77980,296,4380_34344,Lotabeg,74630-00021-1,1,4380_7778208_2080205,4380_497 -4380_77948,293,4380_3435,Ratoath,52147-00017-1,0,4380_7778208_1030107,4380_39 -4380_77980,297,4380_34352,Lotabeg,73722-00008-1,1,4380_7778208_2080201,4380_495 -4380_77980,285,4380_34353,Lotabeg,74157-00009-1,1,4380_7778208_2080203,4380_497 -4380_77980,286,4380_34354,Lotabeg,74159-00010-1,1,4380_7778208_2080203,4380_497 -4380_77980,288,4380_34355,Lotabeg,74161-00011-1,1,4380_7778208_2080203,4380_497 -4380_77980,287,4380_34356,Lotabeg,74163-00012-1,1,4380_7778208_2080203,4380_497 -4380_77980,291,4380_34357,Lotabeg,74875-00013-1,1,4380_7778208_2080206,4380_500 -4380_77980,289,4380_34358,Lotabeg,74165-00014-1,1,4380_7778208_2080203,4380_497 -4380_77980,292,4380_34359,Lotabeg,74160-00016-1,1,4380_7778208_2080203,4380_497 -4380_77948,294,4380_3436,Ratoath,52150-00018-1,0,4380_7778208_1030107,4380_39 -4380_77980,293,4380_34360,Lotabeg,74162-00017-1,1,4380_7778208_2080203,4380_497 -4380_77980,290,4380_34361,Lotabeg,74158-00015-1,1,4380_7778208_2080203,4380_497 -4380_77980,294,4380_34362,Lotabeg,74164-00018-1,1,4380_7778208_2080203,4380_497 -4380_77980,295,4380_34363,Lotabeg,74166-00019-1,1,4380_7778208_2080203,4380_497 -4380_77980,296,4380_34364,Lotabeg,74876-00021-1,1,4380_7778208_2080206,4380_500 -4380_77948,295,4380_3437,Ratoath,52149-00019-1,0,4380_7778208_1030107,4380_39 -4380_77980,285,4380_34371,Lotabeg,73976-00009-1,1,4380_7778208_2080202,4380_495 -4380_77980,286,4380_34372,Lotabeg,73974-00010-1,1,4380_7778208_2080202,4380_495 -4380_77980,288,4380_34373,Lotabeg,73978-00011-1,1,4380_7778208_2080202,4380_495 -4380_77980,287,4380_34374,Lotabeg,73972-00012-1,1,4380_7778208_2080202,4380_495 -4380_77980,291,4380_34375,Lotabeg,73723-00013-1,1,4380_7778208_2080201,4380_497 -4380_77980,289,4380_34376,Lotabeg,73970-00014-1,1,4380_7778208_2080202,4380_495 -4380_77980,292,4380_34377,Lotabeg,73975-00016-1,1,4380_7778208_2080202,4380_495 -4380_77980,293,4380_34378,Lotabeg,73979-00017-1,1,4380_7778208_2080202,4380_495 -4380_77980,290,4380_34379,Lotabeg,73977-00015-1,1,4380_7778208_2080202,4380_495 -4380_77980,294,4380_34380,Lotabeg,73973-00018-1,1,4380_7778208_2080202,4380_495 -4380_77980,295,4380_34381,Lotabeg,73971-00019-1,1,4380_7778208_2080202,4380_495 -4380_77980,296,4380_34382,Lotabeg,73724-00021-1,1,4380_7778208_2080201,4380_497 -4380_77980,297,4380_34384,Lotabeg,74169-00008-1,1,4380_7778208_2080203,4380_495 -4380_77980,285,4380_34391,Lotabeg,74631-00009-1,1,4380_7778208_2080205,4380_495 -4380_77980,286,4380_34392,Lotabeg,74639-00010-1,1,4380_7778208_2080205,4380_495 -4380_77980,288,4380_34393,Lotabeg,74637-00011-1,1,4380_7778208_2080205,4380_495 -4380_77980,287,4380_34394,Lotabeg,74635-00012-1,1,4380_7778208_2080205,4380_495 -4380_77980,291,4380_34395,Lotabeg,73980-00013-1,1,4380_7778208_2080202,4380_497 -4380_77980,289,4380_34396,Lotabeg,74633-00014-1,1,4380_7778208_2080205,4380_495 -4380_77980,292,4380_34397,Lotabeg,74640-00016-1,1,4380_7778208_2080205,4380_495 -4380_77980,293,4380_34398,Lotabeg,74638-00017-1,1,4380_7778208_2080205,4380_495 -4380_77980,290,4380_34399,Lotabeg,74632-00015-1,1,4380_7778208_2080205,4380_495 -4380_77980,294,4380_34400,Lotabeg,74636-00018-1,1,4380_7778208_2080205,4380_495 -4380_77980,295,4380_34401,Lotabeg,74634-00019-1,1,4380_7778208_2080205,4380_495 -4380_77980,296,4380_34402,Lotabeg,73981-00021-1,1,4380_7778208_2080202,4380_497 -4380_77980,297,4380_34404,Lotabeg,73982-00008-1,1,4380_7778208_2080202,4380_495 -4380_77980,285,4380_34411,Lotabeg,74401-00009-1,1,4380_7778208_2080204,4380_495 -4380_77980,286,4380_34412,Lotabeg,74399-00010-1,1,4380_7778208_2080204,4380_495 -4380_77980,288,4380_34413,Lotabeg,74391-00011-1,1,4380_7778208_2080204,4380_495 -4380_77980,287,4380_34414,Lotabeg,74395-00012-1,1,4380_7778208_2080204,4380_495 -4380_77980,291,4380_34415,Lotabeg,74397-00013-1,1,4380_7778208_2080204,4380_497 -4380_77980,289,4380_34416,Lotabeg,74393-00014-1,1,4380_7778208_2080204,4380_495 -4380_77980,292,4380_34417,Lotabeg,74400-00016-1,1,4380_7778208_2080204,4380_495 -4380_77980,293,4380_34418,Lotabeg,74392-00017-1,1,4380_7778208_2080204,4380_495 -4380_77980,290,4380_34419,Lotabeg,74402-00015-1,1,4380_7778208_2080204,4380_495 -4380_77980,294,4380_34420,Lotabeg,74396-00018-1,1,4380_7778208_2080204,4380_495 -4380_77980,295,4380_34421,Lotabeg,74394-00019-1,1,4380_7778208_2080204,4380_495 -4380_77980,296,4380_34422,Lotabeg,74398-00021-1,1,4380_7778208_2080204,4380_497 -4380_77980,297,4380_34430,Lotabeg,74890-00008-1,1,4380_7778208_2080206,4380_495 -4380_77980,285,4380_34431,Lotabeg,75260-00009-1,1,4380_7778208_2080208,4380_497 -4380_77980,286,4380_34432,Lotabeg,75264-00010-1,1,4380_7778208_2080208,4380_497 -4380_77980,288,4380_34433,Lotabeg,75254-00011-1,1,4380_7778208_2080208,4380_497 -4380_77980,287,4380_34434,Lotabeg,75262-00012-1,1,4380_7778208_2080208,4380_497 -4380_77980,291,4380_34435,Lotabeg,75256-00013-1,1,4380_7778208_2080208,4380_500 -4380_77980,289,4380_34436,Lotabeg,75258-00014-1,1,4380_7778208_2080208,4380_497 -4380_77980,292,4380_34437,Lotabeg,75265-00016-1,1,4380_7778208_2080208,4380_497 -4380_77980,293,4380_34438,Lotabeg,75255-00017-1,1,4380_7778208_2080208,4380_497 -4380_77980,290,4380_34439,Lotabeg,75261-00015-1,1,4380_7778208_2080208,4380_497 -4380_77948,285,4380_3444,Ratoath,1614-00009-1,0,4380_7778208_1030106,4380_39 -4380_77980,294,4380_34440,Lotabeg,75263-00018-1,1,4380_7778208_2080208,4380_497 -4380_77980,295,4380_34441,Lotabeg,75259-00019-1,1,4380_7778208_2080208,4380_497 -4380_77980,296,4380_34442,Lotabeg,75257-00021-1,1,4380_7778208_2080208,4380_500 -4380_77980,285,4380_34449,Lotabeg,75052-00009-1,1,4380_7778208_2080207,4380_495 -4380_77948,286,4380_3445,Ratoath,1626-00010-1,0,4380_7778208_1030106,4380_39 -4380_77980,286,4380_34450,Lotabeg,75058-00010-1,1,4380_7778208_2080207,4380_495 -4380_77980,288,4380_34451,Lotabeg,75056-00011-1,1,4380_7778208_2080207,4380_495 -4380_77980,287,4380_34452,Lotabeg,75054-00012-1,1,4380_7778208_2080207,4380_495 -4380_77980,291,4380_34453,Lotabeg,75050-00013-1,1,4380_7778208_2080207,4380_497 -4380_77980,289,4380_34454,Lotabeg,75060-00014-1,1,4380_7778208_2080207,4380_495 -4380_77980,292,4380_34455,Lotabeg,75059-00016-1,1,4380_7778208_2080207,4380_495 -4380_77980,293,4380_34456,Lotabeg,75057-00017-1,1,4380_7778208_2080207,4380_495 -4380_77980,290,4380_34457,Lotabeg,75053-00015-1,1,4380_7778208_2080207,4380_495 -4380_77980,294,4380_34458,Lotabeg,75055-00018-1,1,4380_7778208_2080207,4380_495 -4380_77980,295,4380_34459,Lotabeg,75061-00019-1,1,4380_7778208_2080207,4380_495 -4380_77948,288,4380_3446,Ratoath,1638-00011-1,0,4380_7778208_1030106,4380_39 -4380_77980,296,4380_34460,Lotabeg,75051-00021-1,1,4380_7778208_2080207,4380_497 -4380_77980,297,4380_34462,Lotabeg,74654-00008-1,1,4380_7778208_2080205,4380_495 -4380_77980,285,4380_34469,Lotabeg,73740-00009-1,1,4380_7778208_2080201,4380_495 -4380_77948,287,4380_3447,Ratoath,1650-00012-1,0,4380_7778208_1030106,4380_39 -4380_77980,286,4380_34470,Lotabeg,73738-00010-1,1,4380_7778208_2080201,4380_495 -4380_77980,288,4380_34471,Lotabeg,73736-00011-1,1,4380_7778208_2080201,4380_495 -4380_77980,287,4380_34472,Lotabeg,73744-00012-1,1,4380_7778208_2080201,4380_495 -4380_77980,291,4380_34473,Lotabeg,74655-00013-1,1,4380_7778208_2080205,4380_497 -4380_77980,289,4380_34474,Lotabeg,73742-00014-1,1,4380_7778208_2080201,4380_495 -4380_77980,292,4380_34475,Lotabeg,73739-00016-1,1,4380_7778208_2080201,4380_495 -4380_77980,293,4380_34476,Lotabeg,73737-00017-1,1,4380_7778208_2080201,4380_495 -4380_77980,290,4380_34477,Lotabeg,73741-00015-1,1,4380_7778208_2080201,4380_495 -4380_77980,294,4380_34478,Lotabeg,73745-00018-1,1,4380_7778208_2080201,4380_495 -4380_77980,295,4380_34479,Lotabeg,73743-00019-1,1,4380_7778208_2080201,4380_495 -4380_77948,289,4380_3448,Ratoath,1602-00014-1,0,4380_7778208_1030106,4380_39 -4380_77980,296,4380_34480,Lotabeg,74656-00021-1,1,4380_7778208_2080205,4380_497 -4380_77980,297,4380_34482,Lotabeg,73746-00008-1,1,4380_7778208_2080201,4380_495 -4380_77980,285,4380_34489,Lotabeg,74185-00009-1,1,4380_7778208_2080203,4380_495 -4380_77948,290,4380_3449,Ratoath,52078-00015-1,0,4380_7778208_1030106,4380_39 -4380_77980,286,4380_34490,Lotabeg,74189-00010-1,1,4380_7778208_2080203,4380_495 -4380_77980,288,4380_34491,Lotabeg,74181-00011-1,1,4380_7778208_2080203,4380_495 -4380_77980,287,4380_34492,Lotabeg,74183-00012-1,1,4380_7778208_2080203,4380_495 -4380_77980,291,4380_34493,Lotabeg,74891-00013-1,1,4380_7778208_2080206,4380_497 -4380_77980,289,4380_34494,Lotabeg,74187-00014-1,1,4380_7778208_2080203,4380_495 -4380_77980,292,4380_34495,Lotabeg,74190-00016-1,1,4380_7778208_2080203,4380_495 -4380_77980,293,4380_34496,Lotabeg,74182-00017-1,1,4380_7778208_2080203,4380_495 -4380_77980,290,4380_34497,Lotabeg,74186-00015-1,1,4380_7778208_2080203,4380_495 -4380_77980,294,4380_34498,Lotabeg,74184-00018-1,1,4380_7778208_2080203,4380_495 -4380_77980,295,4380_34499,Lotabeg,74188-00019-1,1,4380_7778208_2080203,4380_495 -4380_77948,291,4380_3450,Ratoath,1406-00013-1,0,4380_7778208_1030103,4380_40 -4380_77980,296,4380_34500,Lotabeg,74892-00021-1,1,4380_7778208_2080206,4380_497 -4380_77980,297,4380_34508,Lotabeg,74191-00008-1,1,4380_7778208_2080203,4380_495 -4380_77980,285,4380_34509,Lotabeg,74657-00009-1,1,4380_7778208_2080205,4380_497 -4380_77948,292,4380_3451,Ratoath,52077-00016-1,0,4380_7778208_1030106,4380_39 -4380_77980,286,4380_34510,Lotabeg,74659-00010-1,1,4380_7778208_2080205,4380_497 -4380_77980,288,4380_34511,Lotabeg,74661-00011-1,1,4380_7778208_2080205,4380_497 -4380_77980,287,4380_34512,Lotabeg,74665-00012-1,1,4380_7778208_2080205,4380_497 -4380_77980,291,4380_34513,Lotabeg,73986-00013-1,1,4380_7778208_2080202,4380_500 -4380_77980,289,4380_34514,Lotabeg,74663-00014-1,1,4380_7778208_2080205,4380_497 -4380_77980,292,4380_34515,Lotabeg,74660-00016-1,1,4380_7778208_2080205,4380_497 -4380_77980,293,4380_34516,Lotabeg,74662-00017-1,1,4380_7778208_2080205,4380_497 -4380_77980,290,4380_34517,Lotabeg,74658-00015-1,1,4380_7778208_2080205,4380_497 -4380_77980,294,4380_34518,Lotabeg,74666-00018-1,1,4380_7778208_2080205,4380_497 -4380_77980,295,4380_34519,Lotabeg,74664-00019-1,1,4380_7778208_2080205,4380_497 -4380_77948,293,4380_3452,Ratoath,52079-00017-1,0,4380_7778208_1030106,4380_39 -4380_77980,296,4380_34520,Lotabeg,73987-00021-1,1,4380_7778208_2080202,4380_500 -4380_77980,285,4380_34527,Lotabeg,74417-00009-1,1,4380_7778208_2080204,4380_495 -4380_77980,286,4380_34528,Lotabeg,74419-00010-1,1,4380_7778208_2080204,4380_495 -4380_77980,288,4380_34529,Lotabeg,74425-00011-1,1,4380_7778208_2080204,4380_495 -4380_77948,294,4380_3453,Ratoath,52081-00018-1,0,4380_7778208_1030106,4380_39 -4380_77980,287,4380_34530,Lotabeg,74415-00012-1,1,4380_7778208_2080204,4380_495 -4380_77980,291,4380_34531,Lotabeg,74423-00013-1,1,4380_7778208_2080204,4380_497 -4380_77980,289,4380_34532,Lotabeg,74421-00014-1,1,4380_7778208_2080204,4380_495 -4380_77980,292,4380_34533,Lotabeg,74420-00016-1,1,4380_7778208_2080204,4380_495 -4380_77980,293,4380_34534,Lotabeg,74426-00017-1,1,4380_7778208_2080204,4380_495 -4380_77980,290,4380_34535,Lotabeg,74418-00015-1,1,4380_7778208_2080204,4380_495 -4380_77980,294,4380_34536,Lotabeg,74416-00018-1,1,4380_7778208_2080204,4380_495 -4380_77980,295,4380_34537,Lotabeg,74422-00019-1,1,4380_7778208_2080204,4380_495 -4380_77980,296,4380_34538,Lotabeg,74424-00021-1,1,4380_7778208_2080204,4380_497 -4380_77948,295,4380_3454,Ratoath,52080-00019-1,0,4380_7778208_1030106,4380_39 -4380_77980,297,4380_34540,Lotabeg,73988-00008-1,1,4380_7778208_2080202,4380_495 -4380_77980,285,4380_34547,Lotabeg,75280-00009-1,1,4380_7778208_2080208,4380_495 -4380_77980,286,4380_34548,Lotabeg,75288-00010-1,1,4380_7778208_2080208,4380_495 -4380_77980,288,4380_34549,Lotabeg,75286-00011-1,1,4380_7778208_2080208,4380_495 -4380_77948,296,4380_3455,Ratoath,51909-00021-1,0,4380_7778208_1030103,4380_40 -4380_77980,287,4380_34550,Lotabeg,75282-00012-1,1,4380_7778208_2080208,4380_495 -4380_77980,291,4380_34551,Lotabeg,75284-00013-1,1,4380_7778208_2080208,4380_497 -4380_77980,289,4380_34552,Lotabeg,75278-00014-1,1,4380_7778208_2080208,4380_495 -4380_77980,292,4380_34553,Lotabeg,75289-00016-1,1,4380_7778208_2080208,4380_495 -4380_77980,293,4380_34554,Lotabeg,75287-00017-1,1,4380_7778208_2080208,4380_495 -4380_77980,290,4380_34555,Lotabeg,75281-00015-1,1,4380_7778208_2080208,4380_495 -4380_77980,294,4380_34556,Lotabeg,75283-00018-1,1,4380_7778208_2080208,4380_495 -4380_77980,295,4380_34557,Lotabeg,75279-00019-1,1,4380_7778208_2080208,4380_495 -4380_77980,296,4380_34558,Lotabeg,75285-00021-1,1,4380_7778208_2080208,4380_497 -4380_77980,297,4380_34560,Lotabeg,74896-00008-1,1,4380_7778208_2080206,4380_495 -4380_77980,285,4380_34567,Lotabeg,75084-00009-1,1,4380_7778208_2080207,4380_495 -4380_77980,286,4380_34568,Lotabeg,75080-00010-1,1,4380_7778208_2080207,4380_495 -4380_77980,288,4380_34569,Lotabeg,75074-00011-1,1,4380_7778208_2080207,4380_495 -4380_77980,287,4380_34570,Lotabeg,75078-00012-1,1,4380_7778208_2080207,4380_495 -4380_77980,291,4380_34571,Lotabeg,75076-00013-1,1,4380_7778208_2080207,4380_497 -4380_77980,289,4380_34572,Lotabeg,75082-00014-1,1,4380_7778208_2080207,4380_495 -4380_77980,292,4380_34573,Lotabeg,75081-00016-1,1,4380_7778208_2080207,4380_495 -4380_77980,293,4380_34574,Lotabeg,75075-00017-1,1,4380_7778208_2080207,4380_495 -4380_77980,290,4380_34575,Lotabeg,75085-00015-1,1,4380_7778208_2080207,4380_495 -4380_77980,294,4380_34576,Lotabeg,75079-00018-1,1,4380_7778208_2080207,4380_495 -4380_77980,295,4380_34577,Lotabeg,75083-00019-1,1,4380_7778208_2080207,4380_495 -4380_77980,296,4380_34578,Lotabeg,75077-00021-1,1,4380_7778208_2080207,4380_497 -4380_77980,297,4380_34586,Lotabeg,74680-00008-1,1,4380_7778208_2080205,4380_495 -4380_77980,285,4380_34587,Lotabeg,73758-00009-1,1,4380_7778208_2080201,4380_497 -4380_77980,286,4380_34588,Lotabeg,73764-00010-1,1,4380_7778208_2080201,4380_497 -4380_77980,288,4380_34589,Lotabeg,73762-00011-1,1,4380_7778208_2080201,4380_497 -4380_77980,287,4380_34590,Lotabeg,73760-00012-1,1,4380_7778208_2080201,4380_497 -4380_77980,291,4380_34591,Lotabeg,74681-00013-1,1,4380_7778208_2080205,4380_500 -4380_77980,289,4380_34592,Lotabeg,73766-00014-1,1,4380_7778208_2080201,4380_497 -4380_77980,292,4380_34593,Lotabeg,73765-00016-1,1,4380_7778208_2080201,4380_497 -4380_77980,293,4380_34594,Lotabeg,73763-00017-1,1,4380_7778208_2080201,4380_497 -4380_77980,290,4380_34595,Lotabeg,73759-00015-1,1,4380_7778208_2080201,4380_497 -4380_77980,294,4380_34596,Lotabeg,73761-00018-1,1,4380_7778208_2080201,4380_497 -4380_77980,295,4380_34597,Lotabeg,73767-00019-1,1,4380_7778208_2080201,4380_497 -4380_77980,296,4380_34598,Lotabeg,74682-00021-1,1,4380_7778208_2080205,4380_500 -4380_77980,285,4380_34605,Lotabeg,74203-00009-1,1,4380_7778208_2080203,4380_495 -4380_77980,286,4380_34606,Lotabeg,74207-00010-1,1,4380_7778208_2080203,4380_495 -4380_77980,288,4380_34607,Lotabeg,74205-00011-1,1,4380_7778208_2080203,4380_495 -4380_77980,287,4380_34608,Lotabeg,74211-00012-1,1,4380_7778208_2080203,4380_495 -4380_77980,291,4380_34609,Lotabeg,74897-00013-1,1,4380_7778208_2080206,4380_497 -4380_77948,285,4380_3461,Ratoath,1844-00009-1,0,4380_7778208_1030109,4380_39 -4380_77980,289,4380_34610,Lotabeg,74209-00014-1,1,4380_7778208_2080203,4380_495 -4380_77980,292,4380_34611,Lotabeg,74208-00016-1,1,4380_7778208_2080203,4380_495 -4380_77980,293,4380_34612,Lotabeg,74206-00017-1,1,4380_7778208_2080203,4380_495 -4380_77980,290,4380_34613,Lotabeg,74204-00015-1,1,4380_7778208_2080203,4380_495 -4380_77980,294,4380_34614,Lotabeg,74212-00018-1,1,4380_7778208_2080203,4380_495 -4380_77980,295,4380_34615,Lotabeg,74210-00019-1,1,4380_7778208_2080203,4380_495 -4380_77980,296,4380_34616,Lotabeg,74898-00021-1,1,4380_7778208_2080206,4380_497 -4380_77980,297,4380_34618,Lotabeg,73768-00008-1,1,4380_7778208_2080201,4380_495 -4380_77948,286,4380_3462,Ratoath,1854-00010-1,0,4380_7778208_1030109,4380_39 -4380_77980,285,4380_34625,Lotabeg,74685-00009-1,1,4380_7778208_2080205,4380_495 -4380_77980,286,4380_34626,Lotabeg,74687-00010-1,1,4380_7778208_2080205,4380_495 -4380_77980,288,4380_34627,Lotabeg,74691-00011-1,1,4380_7778208_2080205,4380_495 -4380_77980,287,4380_34628,Lotabeg,74689-00012-1,1,4380_7778208_2080205,4380_495 -4380_77980,291,4380_34629,Lotabeg,73992-00013-1,1,4380_7778208_2080202,4380_497 -4380_77948,288,4380_3463,Ratoath,1864-00011-1,0,4380_7778208_1030109,4380_39 -4380_77980,289,4380_34630,Lotabeg,74683-00014-1,1,4380_7778208_2080205,4380_495 -4380_77980,292,4380_34631,Lotabeg,74688-00016-1,1,4380_7778208_2080205,4380_495 -4380_77980,293,4380_34632,Lotabeg,74692-00017-1,1,4380_7778208_2080205,4380_495 -4380_77980,290,4380_34633,Lotabeg,74686-00015-1,1,4380_7778208_2080205,4380_495 -4380_77980,294,4380_34634,Lotabeg,74690-00018-1,1,4380_7778208_2080205,4380_495 -4380_77980,295,4380_34635,Lotabeg,74684-00019-1,1,4380_7778208_2080205,4380_495 -4380_77980,296,4380_34636,Lotabeg,73993-00021-1,1,4380_7778208_2080202,4380_497 -4380_77980,297,4380_34638,Lotabeg,74213-00008-1,1,4380_7778208_2080203,4380_495 -4380_77948,287,4380_3464,Ratoath,1874-00012-1,0,4380_7778208_1030109,4380_39 -4380_77980,285,4380_34645,Lotabeg,74445-00009-1,1,4380_7778208_2080204,4380_495 -4380_77980,286,4380_34646,Lotabeg,74443-00010-1,1,4380_7778208_2080204,4380_495 -4380_77980,288,4380_34647,Lotabeg,74441-00011-1,1,4380_7778208_2080204,4380_495 -4380_77980,287,4380_34648,Lotabeg,74447-00012-1,1,4380_7778208_2080204,4380_495 -4380_77980,291,4380_34649,Lotabeg,74449-00013-1,1,4380_7778208_2080204,4380_497 -4380_77948,289,4380_3465,Ratoath,1834-00014-1,0,4380_7778208_1030109,4380_39 -4380_77980,289,4380_34650,Lotabeg,74439-00014-1,1,4380_7778208_2080204,4380_495 -4380_77980,292,4380_34651,Lotabeg,74444-00016-1,1,4380_7778208_2080204,4380_495 -4380_77980,293,4380_34652,Lotabeg,74442-00017-1,1,4380_7778208_2080204,4380_495 -4380_77980,290,4380_34653,Lotabeg,74446-00015-1,1,4380_7778208_2080204,4380_495 -4380_77980,294,4380_34654,Lotabeg,74448-00018-1,1,4380_7778208_2080204,4380_495 -4380_77980,295,4380_34655,Lotabeg,74440-00019-1,1,4380_7778208_2080204,4380_495 -4380_77980,296,4380_34656,Lotabeg,74450-00021-1,1,4380_7778208_2080204,4380_497 -4380_77948,290,4380_3466,Ratoath,52278-00015-1,0,4380_7778208_1030109,4380_39 -4380_77980,297,4380_34664,Lotabeg,73994-00008-1,1,4380_7778208_2080202,4380_495 -4380_77980,285,4380_34665,Lotabeg,75310-00009-1,1,4380_7778208_2080208,4380_495 -4380_77980,286,4380_34666,Lotabeg,75306-00010-1,1,4380_7778208_2080208,4380_495 -4380_77980,288,4380_34667,Lotabeg,75312-00011-1,1,4380_7778208_2080208,4380_495 -4380_77980,287,4380_34668,Lotabeg,75302-00012-1,1,4380_7778208_2080208,4380_495 -4380_77980,291,4380_34669,Lotabeg,75308-00013-1,1,4380_7778208_2080208,4380_497 -4380_77948,292,4380_3467,Ratoath,52277-00016-1,0,4380_7778208_1030109,4380_39 -4380_77980,289,4380_34670,Lotabeg,75304-00014-1,1,4380_7778208_2080208,4380_495 -4380_77980,292,4380_34671,Lotabeg,75307-00016-1,1,4380_7778208_2080208,4380_495 -4380_77980,293,4380_34672,Lotabeg,75313-00017-1,1,4380_7778208_2080208,4380_495 -4380_77980,290,4380_34673,Lotabeg,75311-00015-1,1,4380_7778208_2080208,4380_495 -4380_77980,294,4380_34674,Lotabeg,75303-00018-1,1,4380_7778208_2080208,4380_495 -4380_77980,295,4380_34675,Lotabeg,75305-00019-1,1,4380_7778208_2080208,4380_495 -4380_77980,296,4380_34676,Lotabeg,75309-00021-1,1,4380_7778208_2080208,4380_497 -4380_77948,293,4380_3468,Ratoath,52280-00017-1,0,4380_7778208_1030109,4380_39 -4380_77980,285,4380_34683,Lotabeg,75098-00009-1,1,4380_7778208_2080207,4380_495 -4380_77980,286,4380_34684,Lotabeg,75106-00010-1,1,4380_7778208_2080207,4380_495 -4380_77980,288,4380_34685,Lotabeg,75100-00011-1,1,4380_7778208_2080207,4380_495 -4380_77980,287,4380_34686,Lotabeg,75102-00012-1,1,4380_7778208_2080207,4380_495 -4380_77980,291,4380_34687,Lotabeg,75108-00013-1,1,4380_7778208_2080207,4380_497 -4380_77980,289,4380_34688,Lotabeg,75104-00014-1,1,4380_7778208_2080207,4380_495 -4380_77980,292,4380_34689,Lotabeg,75107-00016-1,1,4380_7778208_2080207,4380_495 -4380_77948,294,4380_3469,Ratoath,52279-00018-1,0,4380_7778208_1030109,4380_39 -4380_77980,293,4380_34690,Lotabeg,75101-00017-1,1,4380_7778208_2080207,4380_495 -4380_77980,290,4380_34691,Lotabeg,75099-00015-1,1,4380_7778208_2080207,4380_495 -4380_77980,294,4380_34692,Lotabeg,75103-00018-1,1,4380_7778208_2080207,4380_495 -4380_77980,295,4380_34693,Lotabeg,75105-00019-1,1,4380_7778208_2080207,4380_495 -4380_77980,296,4380_34694,Lotabeg,75109-00021-1,1,4380_7778208_2080207,4380_497 -4380_77980,297,4380_34696,Lotabeg,74902-00008-1,1,4380_7778208_2080206,4380_495 -4380_77948,295,4380_3470,Ratoath,52281-00019-1,0,4380_7778208_1030109,4380_39 -4380_77980,285,4380_34703,Lotabeg,73782-00009-1,1,4380_7778208_2080201,4380_495 -4380_77980,286,4380_34704,Lotabeg,73786-00010-1,1,4380_7778208_2080201,4380_495 -4380_77980,288,4380_34705,Lotabeg,73784-00011-1,1,4380_7778208_2080201,4380_495 -4380_77980,287,4380_34706,Lotabeg,73780-00012-1,1,4380_7778208_2080201,4380_495 -4380_77980,291,4380_34707,Lotabeg,74706-00013-1,1,4380_7778208_2080205,4380_497 -4380_77980,289,4380_34708,Lotabeg,73788-00014-1,1,4380_7778208_2080201,4380_495 -4380_77980,292,4380_34709,Lotabeg,73787-00016-1,1,4380_7778208_2080201,4380_495 -4380_77980,293,4380_34710,Lotabeg,73785-00017-1,1,4380_7778208_2080201,4380_495 -4380_77980,290,4380_34711,Lotabeg,73783-00015-1,1,4380_7778208_2080201,4380_495 -4380_77980,294,4380_34712,Lotabeg,73781-00018-1,1,4380_7778208_2080201,4380_495 -4380_77980,295,4380_34713,Lotabeg,73789-00019-1,1,4380_7778208_2080201,4380_495 -4380_77980,296,4380_34714,Lotabeg,74707-00021-1,1,4380_7778208_2080205,4380_497 -4380_77980,285,4380_34721,St. Patrick Street,74227-00009-1,1,4380_7778208_2080203,4380_496 -4380_77980,286,4380_34722,St. Patrick Street,74225-00010-1,1,4380_7778208_2080203,4380_496 -4380_77980,288,4380_34723,St. Patrick Street,74231-00011-1,1,4380_7778208_2080203,4380_496 -4380_77980,287,4380_34724,St. Patrick Street,74229-00012-1,1,4380_7778208_2080203,4380_496 -4380_77980,291,4380_34725,St. Patrick Street,74903-00013-1,1,4380_7778208_2080206,4380_499 -4380_77980,289,4380_34726,St. Patrick Street,74233-00014-1,1,4380_7778208_2080203,4380_496 -4380_77980,292,4380_34727,St. Patrick Street,74226-00016-1,1,4380_7778208_2080203,4380_496 -4380_77980,293,4380_34728,St. Patrick Street,74232-00017-1,1,4380_7778208_2080203,4380_496 -4380_77980,290,4380_34729,St. Patrick Street,74228-00015-1,1,4380_7778208_2080203,4380_496 -4380_77980,294,4380_34730,St. Patrick Street,74230-00018-1,1,4380_7778208_2080203,4380_496 -4380_77980,295,4380_34731,St. Patrick Street,74234-00019-1,1,4380_7778208_2080203,4380_496 -4380_77980,296,4380_34732,St. Patrick Street,74904-00021-1,1,4380_7778208_2080206,4380_499 -4380_77980,297,4380_34740,St. Patrick Street,73790-00008-1,1,4380_7778208_2080201,4380_496 -4380_77980,285,4380_34741,St. Patrick Street,74716-00009-1,1,4380_7778208_2080205,4380_499 -4380_77980,286,4380_34742,St. Patrick Street,74710-00010-1,1,4380_7778208_2080205,4380_499 -4380_77980,288,4380_34743,St. Patrick Street,74708-00011-1,1,4380_7778208_2080205,4380_499 -4380_77980,287,4380_34744,St. Patrick Street,74712-00012-1,1,4380_7778208_2080205,4380_499 -4380_77980,291,4380_34745,St. Patrick Street,73998-00013-1,1,4380_7778208_2080202,4380_501 -4380_77980,289,4380_34746,St. Patrick Street,74714-00014-1,1,4380_7778208_2080205,4380_499 -4380_77980,292,4380_34747,St. Patrick Street,74711-00016-1,1,4380_7778208_2080205,4380_499 -4380_77980,293,4380_34748,St. Patrick Street,74709-00017-1,1,4380_7778208_2080205,4380_499 -4380_77980,290,4380_34749,St. Patrick Street,74717-00015-1,1,4380_7778208_2080205,4380_499 -4380_77980,294,4380_34750,St. Patrick Street,74713-00018-1,1,4380_7778208_2080205,4380_499 -4380_77980,295,4380_34751,St. Patrick Street,74715-00019-1,1,4380_7778208_2080205,4380_499 -4380_77980,296,4380_34752,St. Patrick Street,73999-00021-1,1,4380_7778208_2080202,4380_501 -4380_77981,285,4380_34759,Lotamore,83660-00009-1,0,4380_7778208_2230244,4380_502 -4380_77981,288,4380_34760,Lotamore,83658-00011-1,0,4380_7778208_2230244,4380_502 -4380_77981,287,4380_34761,Lotamore,83662-00012-1,0,4380_7778208_2230244,4380_502 -4380_77981,286,4380_34762,Lotamore,83664-00010-1,0,4380_7778208_2230244,4380_502 -4380_77981,291,4380_34763,Lotamore,87900-00013-1,0,4380_7778208_2610201,4380_502 -4380_77981,289,4380_34764,Lotamore,83666-00014-1,0,4380_7778208_2230244,4380_502 -4380_77981,292,4380_34765,Lotamore,83665-00016-1,0,4380_7778208_2230244,4380_502 -4380_77981,290,4380_34766,Lotamore,83661-00015-1,0,4380_7778208_2230244,4380_502 -4380_77981,294,4380_34767,Lotamore,83663-00018-1,0,4380_7778208_2230244,4380_502 -4380_77981,295,4380_34768,Lotamore,83667-00019-1,0,4380_7778208_2230244,4380_502 -4380_77981,293,4380_34769,Lotamore,83659-00017-1,0,4380_7778208_2230244,4380_502 -4380_77981,296,4380_34770,Lotamore,87901-00021-1,0,4380_7778208_2610201,4380_502 -4380_77981,285,4380_34777,Lotamore,83702-00009-1,0,4380_7778208_2230244,4380_502 -4380_77981,288,4380_34778,Lotamore,83704-00011-1,0,4380_7778208_2230244,4380_502 -4380_77981,287,4380_34779,Lotamore,83700-00012-1,0,4380_7778208_2230244,4380_502 -4380_77948,297,4380_3478,Ratoath,1246-00008-1,0,4380_7778208_1030101,4380_39 -4380_77981,286,4380_34780,Lotamore,83698-00010-1,0,4380_7778208_2230244,4380_502 -4380_77981,291,4380_34781,Lotamore,87932-00013-1,0,4380_7778208_2610201,4380_502 -4380_77981,289,4380_34782,Lotamore,83706-00014-1,0,4380_7778208_2230244,4380_502 -4380_77981,292,4380_34783,Lotamore,83699-00016-1,0,4380_7778208_2230244,4380_502 -4380_77981,290,4380_34784,Lotamore,83703-00015-1,0,4380_7778208_2230244,4380_502 -4380_77981,294,4380_34785,Lotamore,83701-00018-1,0,4380_7778208_2230244,4380_502 -4380_77981,295,4380_34786,Lotamore,83707-00019-1,0,4380_7778208_2230244,4380_502 -4380_77981,293,4380_34787,Lotamore,83705-00017-1,0,4380_7778208_2230244,4380_502 -4380_77981,296,4380_34788,Lotamore,87933-00021-1,0,4380_7778208_2610201,4380_502 -4380_77948,291,4380_3479,Ratoath,1826-00013-1,0,4380_7778208_1030108,4380_40 -4380_77981,285,4380_34795,Lotamore,83724-00009-1,0,4380_7778208_2230244,4380_502 -4380_77981,288,4380_34796,Lotamore,83722-00011-1,0,4380_7778208_2230244,4380_502 -4380_77981,287,4380_34797,Lotamore,83718-00012-1,0,4380_7778208_2230244,4380_502 -4380_77981,286,4380_34798,Lotamore,83720-00010-1,0,4380_7778208_2230244,4380_502 -4380_77981,291,4380_34799,Lotamore,87957-00013-1,0,4380_7778208_2610201,4380_502 -4380_77946,285,4380_348,Drogheda,50307-00009-1,1,4380_7778208_1000913,4380_6 -4380_77948,296,4380_3480,Ratoath,52220-00021-1,0,4380_7778208_1030108,4380_40 -4380_77981,289,4380_34800,Lotamore,83726-00014-1,0,4380_7778208_2230244,4380_502 -4380_77981,292,4380_34801,Lotamore,83721-00016-1,0,4380_7778208_2230244,4380_502 -4380_77981,290,4380_34802,Lotamore,83725-00015-1,0,4380_7778208_2230244,4380_502 -4380_77981,294,4380_34803,Lotamore,83719-00018-1,0,4380_7778208_2230244,4380_502 -4380_77981,295,4380_34804,Lotamore,83727-00019-1,0,4380_7778208_2230244,4380_502 -4380_77981,293,4380_34805,Lotamore,83723-00017-1,0,4380_7778208_2230244,4380_502 -4380_77981,296,4380_34806,Lotamore,87958-00021-1,0,4380_7778208_2610201,4380_502 -4380_77948,285,4380_3481,Ratoath,1276-00009-1,0,4380_7778208_1030102,4380_39 -4380_77981,285,4380_34813,St. Patrick Street,83676-00009-1,1,4380_7778208_2230244,4380_503 -4380_77981,288,4380_34814,St. Patrick Street,83674-00011-1,1,4380_7778208_2230244,4380_503 -4380_77981,287,4380_34815,St. Patrick Street,83670-00012-1,1,4380_7778208_2230244,4380_503 -4380_77981,286,4380_34816,St. Patrick Street,83672-00010-1,1,4380_7778208_2230244,4380_503 -4380_77981,291,4380_34817,St. Patrick Street,87903-00013-1,1,4380_7778208_2610201,4380_503 -4380_77981,289,4380_34818,St. Patrick Street,83668-00014-1,1,4380_7778208_2230244,4380_503 -4380_77981,292,4380_34819,St. Patrick Street,83673-00016-1,1,4380_7778208_2230244,4380_503 -4380_77948,286,4380_3482,Ratoath,1286-00010-1,0,4380_7778208_1030102,4380_39 -4380_77981,290,4380_34820,St. Patrick Street,83677-00015-1,1,4380_7778208_2230244,4380_503 -4380_77981,294,4380_34821,St. Patrick Street,83671-00018-1,1,4380_7778208_2230244,4380_503 -4380_77981,295,4380_34822,St. Patrick Street,83669-00019-1,1,4380_7778208_2230244,4380_503 -4380_77981,293,4380_34823,St. Patrick Street,83675-00017-1,1,4380_7778208_2230244,4380_503 -4380_77981,296,4380_34824,St. Patrick Street,87904-00021-1,1,4380_7778208_2610201,4380_503 -4380_77948,288,4380_3483,Ratoath,1296-00011-1,0,4380_7778208_1030102,4380_39 -4380_77981,285,4380_34831,St. Patrick Street,83716-00009-1,1,4380_7778208_2230244,4380_503 -4380_77981,288,4380_34832,St. Patrick Street,83708-00011-1,1,4380_7778208_2230244,4380_503 -4380_77981,287,4380_34833,St. Patrick Street,83714-00012-1,1,4380_7778208_2230244,4380_503 -4380_77981,286,4380_34834,St. Patrick Street,83710-00010-1,1,4380_7778208_2230244,4380_503 -4380_77981,291,4380_34835,St. Patrick Street,87938-00013-1,1,4380_7778208_2610201,4380_503 -4380_77981,289,4380_34836,St. Patrick Street,83712-00014-1,1,4380_7778208_2230244,4380_503 -4380_77981,292,4380_34837,St. Patrick Street,83711-00016-1,1,4380_7778208_2230244,4380_503 -4380_77981,290,4380_34838,St. Patrick Street,83717-00015-1,1,4380_7778208_2230244,4380_503 -4380_77981,294,4380_34839,St. Patrick Street,83715-00018-1,1,4380_7778208_2230244,4380_503 -4380_77948,287,4380_3484,Ratoath,1306-00012-1,0,4380_7778208_1030102,4380_39 -4380_77981,295,4380_34840,St. Patrick Street,83713-00019-1,1,4380_7778208_2230244,4380_503 -4380_77981,293,4380_34841,St. Patrick Street,83709-00017-1,1,4380_7778208_2230244,4380_503 -4380_77981,296,4380_34842,St. Patrick Street,87939-00021-1,1,4380_7778208_2610201,4380_503 -4380_77981,285,4380_34849,St. Patrick Street,83732-00009-1,1,4380_7778208_2230244,4380_503 -4380_77948,289,4380_3485,Ratoath,1266-00014-1,0,4380_7778208_1030102,4380_39 -4380_77981,288,4380_34850,St. Patrick Street,83736-00011-1,1,4380_7778208_2230244,4380_503 -4380_77981,287,4380_34851,St. Patrick Street,83734-00012-1,1,4380_7778208_2230244,4380_503 -4380_77981,286,4380_34852,St. Patrick Street,83728-00010-1,1,4380_7778208_2230244,4380_503 -4380_77981,291,4380_34853,St. Patrick Street,87959-00013-1,1,4380_7778208_2610201,4380_503 -4380_77981,289,4380_34854,St. Patrick Street,83730-00014-1,1,4380_7778208_2230244,4380_503 -4380_77981,292,4380_34855,St. Patrick Street,83729-00016-1,1,4380_7778208_2230244,4380_503 -4380_77981,290,4380_34856,St. Patrick Street,83733-00015-1,1,4380_7778208_2230244,4380_503 -4380_77981,294,4380_34857,St. Patrick Street,83735-00018-1,1,4380_7778208_2230244,4380_503 -4380_77981,295,4380_34858,St. Patrick Street,83731-00019-1,1,4380_7778208_2230244,4380_503 -4380_77981,293,4380_34859,St. Patrick Street,83737-00017-1,1,4380_7778208_2230244,4380_503 -4380_77948,290,4380_3486,Ratoath,51854-00015-1,0,4380_7778208_1030102,4380_39 -4380_77981,296,4380_34860,St. Patrick Street,87960-00021-1,1,4380_7778208_2610201,4380_503 -4380_78124,285,4380_34867,Ballyphehane,83686-00009-1,0,4380_7778208_2230244,4380_504 -4380_78124,288,4380_34868,Ballyphehane,83678-00011-1,0,4380_7778208_2230244,4380_504 -4380_78124,287,4380_34869,Ballyphehane,83684-00012-1,0,4380_7778208_2230244,4380_504 -4380_77948,292,4380_3487,Ratoath,51851-00016-1,0,4380_7778208_1030102,4380_39 -4380_78124,286,4380_34870,Ballyphehane,83680-00010-1,0,4380_7778208_2230244,4380_504 -4380_78124,291,4380_34871,Ballyphehane,87927-00013-1,0,4380_7778208_2610201,4380_504 -4380_78124,289,4380_34872,Ballyphehane,83682-00014-1,0,4380_7778208_2230244,4380_504 -4380_78124,292,4380_34873,Ballyphehane,83681-00016-1,0,4380_7778208_2230244,4380_504 -4380_78124,290,4380_34874,Ballyphehane,83687-00015-1,0,4380_7778208_2230244,4380_504 -4380_78124,294,4380_34875,Ballyphehane,83685-00018-1,0,4380_7778208_2230244,4380_504 -4380_78124,295,4380_34876,Ballyphehane,83683-00019-1,0,4380_7778208_2230244,4380_504 -4380_78124,293,4380_34877,Ballyphehane,83679-00017-1,0,4380_7778208_2230244,4380_504 -4380_78124,296,4380_34878,Ballyphehane,87928-00021-1,0,4380_7778208_2610201,4380_504 -4380_77948,293,4380_3488,Ratoath,51852-00017-1,0,4380_7778208_1030102,4380_39 -4380_78124,285,4380_34885,Ballyphehane,83742-00009-1,0,4380_7778208_2230244,4380_504 -4380_78124,288,4380_34886,Ballyphehane,83746-00011-1,0,4380_7778208_2230244,4380_504 -4380_78124,287,4380_34887,Ballyphehane,83744-00012-1,0,4380_7778208_2230244,4380_504 -4380_78124,286,4380_34888,Ballyphehane,83738-00010-1,0,4380_7778208_2230244,4380_504 -4380_78124,291,4380_34889,Ballyphehane,87962-00013-1,0,4380_7778208_2610201,4380_504 -4380_77948,294,4380_3489,Ratoath,51853-00018-1,0,4380_7778208_1030102,4380_39 -4380_78124,289,4380_34890,Ballyphehane,83740-00014-1,0,4380_7778208_2230244,4380_504 -4380_78124,292,4380_34891,Ballyphehane,83739-00016-1,0,4380_7778208_2230244,4380_504 -4380_78124,290,4380_34892,Ballyphehane,83743-00015-1,0,4380_7778208_2230244,4380_504 -4380_78124,294,4380_34893,Ballyphehane,83745-00018-1,0,4380_7778208_2230244,4380_504 -4380_78124,295,4380_34894,Ballyphehane,83741-00019-1,0,4380_7778208_2230244,4380_504 -4380_78124,293,4380_34895,Ballyphehane,83747-00017-1,0,4380_7778208_2230244,4380_504 -4380_78124,296,4380_34896,Ballyphehane,87963-00021-1,0,4380_7778208_2610201,4380_504 -4380_77946,286,4380_349,Drogheda,50309-00010-1,1,4380_7778208_1000913,4380_6 -4380_77948,295,4380_3490,Ratoath,51855-00019-1,0,4380_7778208_1030102,4380_39 -4380_78124,285,4380_34903,Merchants Quay,83652-00009-1,1,4380_7778208_2230244,4380_505 -4380_78124,288,4380_34904,Merchants Quay,83650-00011-1,1,4380_7778208_2230244,4380_505 -4380_78124,287,4380_34905,Merchants Quay,83654-00012-1,1,4380_7778208_2230244,4380_505 -4380_78124,286,4380_34906,Merchants Quay,83648-00010-1,1,4380_7778208_2230244,4380_505 -4380_78124,291,4380_34907,Merchants Quay,87898-00013-1,1,4380_7778208_2610201,4380_505 -4380_78124,289,4380_34908,Merchants Quay,83656-00014-1,1,4380_7778208_2230244,4380_505 -4380_78124,292,4380_34909,Merchants Quay,83649-00016-1,1,4380_7778208_2230244,4380_505 -4380_78124,290,4380_34910,Merchants Quay,83653-00015-1,1,4380_7778208_2230244,4380_505 -4380_78124,294,4380_34911,Merchants Quay,83655-00018-1,1,4380_7778208_2230244,4380_505 -4380_78124,295,4380_34912,Merchants Quay,83657-00019-1,1,4380_7778208_2230244,4380_505 -4380_78124,293,4380_34913,Merchants Quay,83651-00017-1,1,4380_7778208_2230244,4380_505 -4380_78124,296,4380_34914,Merchants Quay,87899-00021-1,1,4380_7778208_2610201,4380_505 -4380_78124,285,4380_34921,Merchants Quay,83688-00009-1,1,4380_7778208_2230244,4380_505 -4380_78124,288,4380_34922,Merchants Quay,83690-00011-1,1,4380_7778208_2230244,4380_505 -4380_78124,287,4380_34923,Merchants Quay,83692-00012-1,1,4380_7778208_2230244,4380_505 -4380_78124,286,4380_34924,Merchants Quay,83696-00010-1,1,4380_7778208_2230244,4380_505 -4380_78124,291,4380_34925,Merchants Quay,87929-00013-1,1,4380_7778208_2610201,4380_505 -4380_78124,289,4380_34926,Merchants Quay,83694-00014-1,1,4380_7778208_2230244,4380_505 -4380_78124,292,4380_34927,Merchants Quay,83697-00016-1,1,4380_7778208_2230244,4380_505 -4380_78124,290,4380_34928,Merchants Quay,83689-00015-1,1,4380_7778208_2230244,4380_505 -4380_78124,294,4380_34929,Merchants Quay,83693-00018-1,1,4380_7778208_2230244,4380_505 -4380_78124,295,4380_34930,Merchants Quay,83695-00019-1,1,4380_7778208_2230244,4380_505 -4380_78124,293,4380_34931,Merchants Quay,83691-00017-1,1,4380_7778208_2230244,4380_505 -4380_78124,296,4380_34932,Merchants Quay,87930-00021-1,1,4380_7778208_2610201,4380_505 -4380_78124,285,4380_34939,Merchants Quay,83748-00009-1,1,4380_7778208_2230244,4380_505 -4380_78124,288,4380_34940,Merchants Quay,83754-00011-1,1,4380_7778208_2230244,4380_505 -4380_78124,287,4380_34941,Merchants Quay,83756-00012-1,1,4380_7778208_2230244,4380_505 -4380_78124,286,4380_34942,Merchants Quay,83752-00010-1,1,4380_7778208_2230244,4380_505 -4380_78124,291,4380_34943,Merchants Quay,87964-00013-1,1,4380_7778208_2610201,4380_505 -4380_78124,289,4380_34944,Merchants Quay,83750-00014-1,1,4380_7778208_2230244,4380_505 -4380_78124,292,4380_34945,Merchants Quay,83753-00016-1,1,4380_7778208_2230244,4380_505 -4380_78124,290,4380_34946,Merchants Quay,83749-00015-1,1,4380_7778208_2230244,4380_505 -4380_78124,294,4380_34947,Merchants Quay,83757-00018-1,1,4380_7778208_2230244,4380_505 -4380_78124,295,4380_34948,Merchants Quay,83751-00019-1,1,4380_7778208_2230244,4380_505 -4380_78124,293,4380_34949,Merchants Quay,83755-00017-1,1,4380_7778208_2230244,4380_505 -4380_78124,296,4380_34950,Merchants Quay,87965-00021-1,1,4380_7778208_2610201,4380_505 -4380_77982,285,4380_34957,Mahon,75326-00009-1,0,4380_7778208_2120201,4380_506 -4380_77982,286,4380_34958,Mahon,75334-00010-1,0,4380_7778208_2120201,4380_506 -4380_77982,288,4380_34959,Mahon,75336-00011-1,0,4380_7778208_2120201,4380_506 -4380_77982,287,4380_34960,Mahon,75330-00012-1,0,4380_7778208_2120201,4380_506 -4380_77982,291,4380_34961,Mahon,75332-00013-1,0,4380_7778208_2120201,4380_506 -4380_77982,289,4380_34962,Mahon,75328-00014-1,0,4380_7778208_2120201,4380_506 -4380_77982,292,4380_34963,Mahon,75335-00016-1,0,4380_7778208_2120201,4380_506 -4380_77982,293,4380_34964,Mahon,75337-00017-1,0,4380_7778208_2120201,4380_506 -4380_77982,290,4380_34965,Mahon,75327-00015-1,0,4380_7778208_2120201,4380_506 -4380_77982,294,4380_34966,Mahon,75331-00018-1,0,4380_7778208_2120201,4380_506 -4380_77982,295,4380_34967,Mahon,75329-00019-1,0,4380_7778208_2120201,4380_506 -4380_77982,296,4380_34968,Mahon,75333-00021-1,0,4380_7778208_2120201,4380_506 -4380_77948,285,4380_3497,Ratoath,1186-00009-1,0,4380_7778208_1030101,4380_39 -4380_77982,285,4380_34975,Mahon,75352-00009-1,0,4380_7778208_2120201,4380_506 -4380_77982,286,4380_34976,Mahon,75354-00010-1,0,4380_7778208_2120201,4380_506 -4380_77982,288,4380_34977,Mahon,75360-00011-1,0,4380_7778208_2120201,4380_506 -4380_77982,287,4380_34978,Mahon,75356-00012-1,0,4380_7778208_2120201,4380_506 -4380_77982,291,4380_34979,Mahon,75350-00013-1,0,4380_7778208_2120201,4380_506 -4380_77948,286,4380_3498,Ratoath,1196-00010-1,0,4380_7778208_1030101,4380_39 -4380_77982,289,4380_34980,Mahon,75358-00014-1,0,4380_7778208_2120201,4380_506 -4380_77982,292,4380_34981,Mahon,75355-00016-1,0,4380_7778208_2120201,4380_506 -4380_77982,293,4380_34982,Mahon,75361-00017-1,0,4380_7778208_2120201,4380_506 -4380_77982,290,4380_34983,Mahon,75353-00015-1,0,4380_7778208_2120201,4380_506 -4380_77982,294,4380_34984,Mahon,75357-00018-1,0,4380_7778208_2120201,4380_506 -4380_77982,295,4380_34985,Mahon,75359-00019-1,0,4380_7778208_2120201,4380_506 -4380_77982,296,4380_34986,Mahon,75351-00021-1,0,4380_7778208_2120201,4380_506 -4380_77948,288,4380_3499,Ratoath,1206-00011-1,0,4380_7778208_1030101,4380_39 -4380_77982,297,4380_34994,Mahon,75382-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_34995,Mahon,75383-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_34996,Mahon,75380-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_34997,Mahon,75378-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_34998,Mahon,75385-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_34999,Mahon,75376-00013-1,0,4380_7778208_2120201,4380_507 -4380_77946,297,4380_350,Drogheda,50157-00008-1,1,4380_7778208_1000908,4380_8 -4380_77948,287,4380_3500,Ratoath,1216-00012-1,0,4380_7778208_1030101,4380_39 -4380_77982,289,4380_35000,Mahon,75374-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35001,Mahon,75381-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35002,Mahon,75379-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35003,Mahon,75384-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35004,Mahon,75386-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35005,Mahon,75375-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35006,Mahon,75377-00021-1,0,4380_7778208_2120201,4380_507 -4380_77948,289,4380_3501,Ratoath,1176-00014-1,0,4380_7778208_1030101,4380_39 -4380_77982,297,4380_35014,Mahon,75400-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35015,Mahon,75403-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35016,Mahon,75405-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35017,Mahon,75407-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35018,Mahon,75409-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35019,Mahon,75411-00013-1,0,4380_7778208_2120201,4380_508 -4380_77948,290,4380_3502,Ratoath,51794-00015-1,0,4380_7778208_1030101,4380_39 -4380_77982,289,4380_35020,Mahon,75401-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35021,Mahon,75406-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35022,Mahon,75408-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35023,Mahon,75404-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35024,Mahon,75410-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35025,Mahon,75402-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35026,Mahon,75412-00021-1,0,4380_7778208_2120201,4380_508 -4380_77948,291,4380_3503,Ratoath,1586-00013-1,0,4380_7778208_1030105,4380_40 -4380_77982,297,4380_35034,Mahon,75428-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35035,Mahon,75431-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35036,Mahon,75426-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35037,Mahon,75433-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35038,Mahon,75429-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35039,Mahon,75435-00013-1,0,4380_7778208_2120201,4380_506 -4380_77948,292,4380_3504,Ratoath,51793-00016-1,0,4380_7778208_1030101,4380_39 -4380_77982,289,4380_35040,Mahon,75437-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35041,Mahon,75427-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35042,Mahon,75434-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35043,Mahon,75432-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35044,Mahon,75430-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35045,Mahon,75438-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35046,Mahon,75436-00021-1,0,4380_7778208_2120201,4380_506 -4380_77948,293,4380_3505,Ratoath,51791-00017-1,0,4380_7778208_1030101,4380_39 -4380_77982,297,4380_35054,Mahon,75460-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35055,Mahon,75454-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35056,Mahon,75456-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35057,Mahon,75461-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35058,Mahon,75452-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35059,Mahon,75458-00013-1,0,4380_7778208_2120201,4380_506 -4380_77948,294,4380_3506,Ratoath,51795-00018-1,0,4380_7778208_1030101,4380_39 -4380_77982,289,4380_35060,Mahon,75463-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35061,Mahon,75457-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35062,Mahon,75462-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35063,Mahon,75455-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35064,Mahon,75453-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35065,Mahon,75464-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35066,Mahon,75459-00021-1,0,4380_7778208_2120201,4380_506 -4380_77948,295,4380_3507,Ratoath,51792-00019-1,0,4380_7778208_1030101,4380_39 -4380_77982,297,4380_35074,Mahon,75482-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35075,Mahon,75483-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35076,Mahon,75478-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35077,Mahon,75487-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35078,Mahon,75489-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35079,Mahon,75485-00013-1,0,4380_7778208_2120201,4380_506 -4380_77948,296,4380_3508,Ratoath,52041-00021-1,0,4380_7778208_1030105,4380_40 -4380_77982,289,4380_35080,Mahon,75480-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35081,Mahon,75479-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35082,Mahon,75488-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35083,Mahon,75484-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35084,Mahon,75490-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35085,Mahon,75481-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35086,Mahon,75486-00021-1,0,4380_7778208_2120201,4380_506 -4380_77982,297,4380_35094,Mahon,75516-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35095,Mahon,75508-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35096,Mahon,75510-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35097,Mahon,75506-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35098,Mahon,75514-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35099,Mahon,75512-00013-1,0,4380_7778208_2120201,4380_506 -4380_77946,287,4380_351,Drogheda,50315-00012-1,1,4380_7778208_1000913,4380_6 -4380_77982,289,4380_35100,Mahon,75504-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35101,Mahon,75511-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35102,Mahon,75507-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35103,Mahon,75509-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35104,Mahon,75515-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35105,Mahon,75505-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35106,Mahon,75513-00021-1,0,4380_7778208_2120201,4380_506 -4380_77982,297,4380_35114,Mahon,75534-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35115,Mahon,75537-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35116,Mahon,75539-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35117,Mahon,75530-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35118,Mahon,75535-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35119,Mahon,75541-00013-1,0,4380_7778208_2120201,4380_506 -4380_77982,289,4380_35120,Mahon,75532-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35121,Mahon,75540-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35122,Mahon,75531-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35123,Mahon,75538-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35124,Mahon,75536-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35125,Mahon,75533-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35126,Mahon,75542-00021-1,0,4380_7778208_2120201,4380_506 -4380_77982,297,4380_35134,Mahon,75562-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35135,Mahon,75567-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35136,Mahon,75556-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35137,Mahon,75563-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35138,Mahon,75565-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35139,Mahon,75560-00013-1,0,4380_7778208_2120201,4380_507 -4380_77948,285,4380_3514,Ratoath,1911-00009-1,0,4380_7778208_1030110,4380_39 -4380_77982,289,4380_35140,Mahon,75558-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35141,Mahon,75557-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35142,Mahon,75564-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35143,Mahon,75568-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35144,Mahon,75566-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35145,Mahon,75559-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35146,Mahon,75561-00021-1,0,4380_7778208_2120201,4380_507 -4380_77948,286,4380_3515,Ratoath,1921-00010-1,0,4380_7778208_1030110,4380_39 -4380_77982,297,4380_35154,Mahon,75586-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35155,Mahon,75589-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35156,Mahon,75587-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35157,Mahon,75593-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35158,Mahon,75591-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35159,Mahon,75582-00013-1,0,4380_7778208_2120201,4380_507 -4380_77948,288,4380_3516,Ratoath,1931-00011-1,0,4380_7778208_1030110,4380_39 -4380_77982,289,4380_35160,Mahon,75584-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35161,Mahon,75588-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35162,Mahon,75594-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35163,Mahon,75590-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35164,Mahon,75592-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35165,Mahon,75585-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35166,Mahon,75583-00021-1,0,4380_7778208_2120201,4380_507 -4380_77948,287,4380_3517,Ratoath,1941-00012-1,0,4380_7778208_1030110,4380_39 -4380_77982,297,4380_35174,Mahon,75616-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35175,Mahon,75614-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35176,Mahon,75608-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35177,Mahon,75617-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35178,Mahon,75610-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35179,Mahon,75619-00013-1,0,4380_7778208_2120201,4380_507 -4380_77948,289,4380_3518,Ratoath,1901-00014-1,0,4380_7778208_1030110,4380_39 -4380_77982,289,4380_35180,Mahon,75612-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35181,Mahon,75609-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35182,Mahon,75618-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35183,Mahon,75615-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35184,Mahon,75611-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35185,Mahon,75613-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35186,Mahon,75620-00021-1,0,4380_7778208_2120201,4380_507 -4380_77948,290,4380_3519,Ratoath,52336-00015-1,0,4380_7778208_1030110,4380_39 -4380_77982,297,4380_35194,Mahon,75636-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35195,Mahon,75634-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35196,Mahon,75641-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35197,Mahon,75643-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35198,Mahon,75645-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35199,Mahon,75637-00013-1,0,4380_7778208_2120201,4380_507 -4380_77946,288,4380_352,Drogheda,50311-00011-1,1,4380_7778208_1000913,4380_6 -4380_77948,291,4380_3520,Ratoath,1524-00013-1,0,4380_7778208_1030104,4380_40 -4380_77982,289,4380_35200,Mahon,75639-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35201,Mahon,75642-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35202,Mahon,75644-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35203,Mahon,75635-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35204,Mahon,75646-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35205,Mahon,75640-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35206,Mahon,75638-00021-1,0,4380_7778208_2120201,4380_507 -4380_77948,292,4380_3521,Ratoath,52335-00016-1,0,4380_7778208_1030110,4380_39 -4380_77982,297,4380_35214,Mahon,75672-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35215,Mahon,75662-00009-1,0,4380_7778208_2120201,4380_507 -4380_77982,286,4380_35216,Mahon,75670-00010-1,0,4380_7778208_2120201,4380_507 -4380_77982,288,4380_35217,Mahon,75666-00011-1,0,4380_7778208_2120201,4380_507 -4380_77982,287,4380_35218,Mahon,75660-00012-1,0,4380_7778208_2120201,4380_507 -4380_77982,291,4380_35219,Mahon,75664-00013-1,0,4380_7778208_2120201,4380_507 -4380_77948,293,4380_3522,Ratoath,52337-00017-1,0,4380_7778208_1030110,4380_39 -4380_77982,289,4380_35220,Mahon,75668-00014-1,0,4380_7778208_2120201,4380_507 -4380_77982,292,4380_35221,Mahon,75671-00016-1,0,4380_7778208_2120201,4380_507 -4380_77982,293,4380_35222,Mahon,75667-00017-1,0,4380_7778208_2120201,4380_507 -4380_77982,290,4380_35223,Mahon,75663-00015-1,0,4380_7778208_2120201,4380_507 -4380_77982,294,4380_35224,Mahon,75661-00018-1,0,4380_7778208_2120201,4380_507 -4380_77982,295,4380_35225,Mahon,75669-00019-1,0,4380_7778208_2120201,4380_507 -4380_77982,296,4380_35226,Mahon,75665-00021-1,0,4380_7778208_2120201,4380_507 -4380_77948,294,4380_3523,Ratoath,52333-00018-1,0,4380_7778208_1030110,4380_39 -4380_77982,297,4380_35234,Mahon,75692-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35235,Mahon,75690-00009-1,0,4380_7778208_2120201,4380_506 -4380_77982,286,4380_35236,Mahon,75688-00010-1,0,4380_7778208_2120201,4380_506 -4380_77982,288,4380_35237,Mahon,75686-00011-1,0,4380_7778208_2120201,4380_506 -4380_77982,287,4380_35238,Mahon,75695-00012-1,0,4380_7778208_2120201,4380_506 -4380_77982,291,4380_35239,Mahon,75697-00013-1,0,4380_7778208_2120201,4380_506 -4380_77948,295,4380_3524,Ratoath,52334-00019-1,0,4380_7778208_1030110,4380_39 -4380_77982,289,4380_35240,Mahon,75693-00014-1,0,4380_7778208_2120201,4380_506 -4380_77982,292,4380_35241,Mahon,75689-00016-1,0,4380_7778208_2120201,4380_506 -4380_77982,293,4380_35242,Mahon,75687-00017-1,0,4380_7778208_2120201,4380_506 -4380_77982,290,4380_35243,Mahon,75691-00015-1,0,4380_7778208_2120201,4380_506 -4380_77982,294,4380_35244,Mahon,75696-00018-1,0,4380_7778208_2120201,4380_506 -4380_77982,295,4380_35245,Mahon,75694-00019-1,0,4380_7778208_2120201,4380_506 -4380_77982,296,4380_35246,Mahon,75698-00021-1,0,4380_7778208_2120201,4380_506 -4380_77948,296,4380_3525,Ratoath,51971-00021-1,0,4380_7778208_1030104,4380_40 -4380_77982,297,4380_35254,Mahon,75716-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35255,Mahon,75719-00009-1,0,4380_7778208_2120201,4380_506 -4380_77982,286,4380_35256,Mahon,75723-00010-1,0,4380_7778208_2120201,4380_506 -4380_77982,288,4380_35257,Mahon,75717-00011-1,0,4380_7778208_2120201,4380_506 -4380_77982,287,4380_35258,Mahon,75712-00012-1,0,4380_7778208_2120201,4380_506 -4380_77982,291,4380_35259,Mahon,75714-00013-1,0,4380_7778208_2120201,4380_506 -4380_77982,289,4380_35260,Mahon,75721-00014-1,0,4380_7778208_2120201,4380_506 -4380_77982,292,4380_35261,Mahon,75724-00016-1,0,4380_7778208_2120201,4380_506 -4380_77982,293,4380_35262,Mahon,75718-00017-1,0,4380_7778208_2120201,4380_506 -4380_77982,290,4380_35263,Mahon,75720-00015-1,0,4380_7778208_2120201,4380_506 -4380_77982,294,4380_35264,Mahon,75713-00018-1,0,4380_7778208_2120201,4380_506 -4380_77982,295,4380_35265,Mahon,75722-00019-1,0,4380_7778208_2120201,4380_506 -4380_77982,296,4380_35266,Mahon,75715-00021-1,0,4380_7778208_2120201,4380_506 -4380_77982,297,4380_35274,Mahon,75750-00008-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35275,Mahon,75738-00009-1,0,4380_7778208_2120201,4380_506 -4380_77982,286,4380_35276,Mahon,75746-00010-1,0,4380_7778208_2120201,4380_506 -4380_77982,288,4380_35277,Mahon,75744-00011-1,0,4380_7778208_2120201,4380_506 -4380_77982,287,4380_35278,Mahon,75740-00012-1,0,4380_7778208_2120201,4380_506 -4380_77982,291,4380_35279,Mahon,75742-00013-1,0,4380_7778208_2120201,4380_506 -4380_77982,289,4380_35280,Mahon,75748-00014-1,0,4380_7778208_2120201,4380_506 -4380_77982,292,4380_35281,Mahon,75747-00016-1,0,4380_7778208_2120201,4380_506 -4380_77982,293,4380_35282,Mahon,75745-00017-1,0,4380_7778208_2120201,4380_506 -4380_77982,290,4380_35283,Mahon,75739-00015-1,0,4380_7778208_2120201,4380_506 -4380_77982,294,4380_35284,Mahon,75741-00018-1,0,4380_7778208_2120201,4380_506 -4380_77982,295,4380_35285,Mahon,75749-00019-1,0,4380_7778208_2120201,4380_506 -4380_77982,296,4380_35286,Mahon,75743-00021-1,0,4380_7778208_2120201,4380_506 -4380_77982,285,4380_35293,Kent Train Station,75346-00009-1,1,4380_7778208_2120201,4380_509 -4380_77982,286,4380_35294,Kent Train Station,75338-00010-1,1,4380_7778208_2120201,4380_509 -4380_77982,288,4380_35295,Kent Train Station,75340-00011-1,1,4380_7778208_2120201,4380_509 -4380_77982,287,4380_35296,Kent Train Station,75348-00012-1,1,4380_7778208_2120201,4380_509 -4380_77982,291,4380_35297,Kent Train Station,75344-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35298,Kent Train Station,75342-00014-1,1,4380_7778208_2120201,4380_509 -4380_77982,292,4380_35299,Kent Train Station,75339-00016-1,1,4380_7778208_2120201,4380_509 -4380_77946,289,4380_353,Drogheda,50313-00014-1,1,4380_7778208_1000913,4380_6 -4380_77982,293,4380_35300,Kent Train Station,75341-00017-1,1,4380_7778208_2120201,4380_509 -4380_77982,290,4380_35301,Kent Train Station,75347-00015-1,1,4380_7778208_2120201,4380_509 -4380_77982,294,4380_35302,Kent Train Station,75349-00018-1,1,4380_7778208_2120201,4380_509 -4380_77982,295,4380_35303,Kent Train Station,75343-00019-1,1,4380_7778208_2120201,4380_509 -4380_77982,296,4380_35304,Kent Train Station,75345-00021-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35311,Kent Train Station,75372-00009-1,1,4380_7778208_2120201,4380_509 -4380_77982,286,4380_35312,Kent Train Station,75366-00010-1,1,4380_7778208_2120201,4380_509 -4380_77982,288,4380_35313,Kent Train Station,75364-00011-1,1,4380_7778208_2120201,4380_509 -4380_77982,287,4380_35314,Kent Train Station,75362-00012-1,1,4380_7778208_2120201,4380_509 -4380_77982,291,4380_35315,Kent Train Station,75370-00013-1,1,4380_7778208_2120201,4380_510 -4380_77982,289,4380_35316,Kent Train Station,75368-00014-1,1,4380_7778208_2120201,4380_509 -4380_77982,292,4380_35317,Kent Train Station,75367-00016-1,1,4380_7778208_2120201,4380_509 -4380_77982,293,4380_35318,Kent Train Station,75365-00017-1,1,4380_7778208_2120201,4380_509 -4380_77982,290,4380_35319,Kent Train Station,75373-00015-1,1,4380_7778208_2120201,4380_509 -4380_77982,294,4380_35320,Kent Train Station,75363-00018-1,1,4380_7778208_2120201,4380_509 -4380_77982,295,4380_35321,Kent Train Station,75369-00019-1,1,4380_7778208_2120201,4380_509 -4380_77982,296,4380_35322,Kent Train Station,75371-00021-1,1,4380_7778208_2120201,4380_510 -4380_77948,297,4380_3533,Ratoath,1334-00008-1,0,4380_7778208_1030102,4380_39 -4380_77982,297,4380_35330,Kent Train Station,75387-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35331,Kent Train Station,75394-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35332,Kent Train Station,75398-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35333,Kent Train Station,75396-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35334,Kent Train Station,75388-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35335,Kent Train Station,75392-00013-1,1,4380_7778208_2120201,4380_511 -4380_77982,289,4380_35336,Kent Train Station,75390-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35337,Kent Train Station,75399-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35338,Kent Train Station,75397-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35339,Kent Train Station,75395-00015-1,1,4380_7778208_2120201,4380_510 -4380_77948,285,4380_3534,Ratoath,1466-00009-1,0,4380_7778208_1030104,4380_39 -4380_77982,294,4380_35340,Kent Train Station,75389-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35341,Kent Train Station,75391-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35342,Kent Train Station,75393-00021-1,1,4380_7778208_2120201,4380_511 -4380_77948,286,4380_3535,Ratoath,1478-00010-1,0,4380_7778208_1030104,4380_39 -4380_77982,297,4380_35350,Kent Train Station,75423-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35351,Kent Train Station,75417-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35352,Kent Train Station,75421-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35353,Kent Train Station,75415-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35354,Kent Train Station,75419-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35355,Kent Train Station,75424-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35356,Kent Train Station,75413-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35357,Kent Train Station,75422-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35358,Kent Train Station,75416-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35359,Kent Train Station,75418-00015-1,1,4380_7778208_2120201,4380_510 -4380_77948,288,4380_3536,Ratoath,1490-00011-1,0,4380_7778208_1030104,4380_39 -4380_77982,294,4380_35360,Kent Train Station,75420-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35361,Kent Train Station,75414-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35362,Kent Train Station,75425-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,287,4380_3537,Ratoath,1502-00012-1,0,4380_7778208_1030104,4380_39 -4380_77982,297,4380_35370,Kent Train Station,75443-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35371,Kent Train Station,75444-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35372,Kent Train Station,75439-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35373,Kent Train Station,75446-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35374,Kent Train Station,75448-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35375,Kent Train Station,75450-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35376,Kent Train Station,75441-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35377,Kent Train Station,75440-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35378,Kent Train Station,75447-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35379,Kent Train Station,75445-00015-1,1,4380_7778208_2120201,4380_510 -4380_77948,289,4380_3538,Ratoath,1454-00014-1,0,4380_7778208_1030104,4380_39 -4380_77982,294,4380_35380,Kent Train Station,75449-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35381,Kent Train Station,75442-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35382,Kent Train Station,75451-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,290,4380_3539,Ratoath,51974-00015-1,0,4380_7778208_1030104,4380_39 -4380_77982,297,4380_35390,Kent Train Station,75465-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35391,Kent Train Station,75466-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35392,Kent Train Station,75472-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35393,Kent Train Station,75474-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35394,Kent Train Station,75476-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35395,Kent Train Station,75470-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35396,Kent Train Station,75468-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35397,Kent Train Station,75473-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35398,Kent Train Station,75475-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35399,Kent Train Station,75467-00015-1,1,4380_7778208_2120201,4380_510 -4380_77946,290,4380_354,Drogheda,50308-00015-1,1,4380_7778208_1000913,4380_6 -4380_77948,291,4380_3540,Ratoath,1882-00013-1,0,4380_7778208_1030109,4380_40 -4380_77982,294,4380_35400,Kent Train Station,75477-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35401,Kent Train Station,75469-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35402,Kent Train Station,75471-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,292,4380_3541,Ratoath,51973-00016-1,0,4380_7778208_1030104,4380_39 -4380_77982,297,4380_35410,Kent Train Station,75501-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35411,Kent Train Station,75502-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35412,Kent Train Station,75495-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35413,Kent Train Station,75497-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35414,Kent Train Station,75499-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35415,Kent Train Station,75491-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35416,Kent Train Station,75493-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35417,Kent Train Station,75496-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35418,Kent Train Station,75498-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35419,Kent Train Station,75503-00015-1,1,4380_7778208_2120201,4380_510 -4380_77948,293,4380_3542,Ratoath,51972-00017-1,0,4380_7778208_1030104,4380_39 -4380_77982,294,4380_35420,Kent Train Station,75500-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35421,Kent Train Station,75494-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35422,Kent Train Station,75492-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,294,4380_3543,Ratoath,51975-00018-1,0,4380_7778208_1030104,4380_39 -4380_77982,297,4380_35430,Kent Train Station,75517-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35431,Kent Train Station,75526-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35432,Kent Train Station,75522-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35433,Kent Train Station,75518-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35434,Kent Train Station,75528-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35435,Kent Train Station,75524-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35436,Kent Train Station,75520-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35437,Kent Train Station,75523-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35438,Kent Train Station,75519-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35439,Kent Train Station,75527-00015-1,1,4380_7778208_2120201,4380_510 -4380_77948,295,4380_3544,Ratoath,51976-00019-1,0,4380_7778208_1030104,4380_39 -4380_77982,294,4380_35440,Kent Train Station,75529-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35441,Kent Train Station,75521-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35442,Kent Train Station,75525-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,296,4380_3545,Ratoath,52287-00021-1,0,4380_7778208_1030109,4380_40 -4380_77982,297,4380_35450,Kent Train Station,75555-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35451,Kent Train Station,75543-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35452,Kent Train Station,75551-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35453,Kent Train Station,75553-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35454,Kent Train Station,75549-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35455,Kent Train Station,75547-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35456,Kent Train Station,75545-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35457,Kent Train Station,75552-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35458,Kent Train Station,75554-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35459,Kent Train Station,75544-00015-1,1,4380_7778208_2120201,4380_510 -4380_77982,294,4380_35460,Kent Train Station,75550-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35461,Kent Train Station,75546-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35462,Kent Train Station,75548-00021-1,1,4380_7778208_2120201,4380_509 -4380_77982,297,4380_35470,Kent Train Station,75577-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35471,Kent Train Station,75569-00009-1,1,4380_7778208_2120201,4380_509 -4380_77982,286,4380_35472,Kent Train Station,75575-00010-1,1,4380_7778208_2120201,4380_509 -4380_77982,288,4380_35473,Kent Train Station,75571-00011-1,1,4380_7778208_2120201,4380_509 -4380_77982,287,4380_35474,Kent Train Station,75580-00012-1,1,4380_7778208_2120201,4380_509 -4380_77982,291,4380_35475,Kent Train Station,75573-00013-1,1,4380_7778208_2120201,4380_510 -4380_77982,289,4380_35476,Kent Train Station,75578-00014-1,1,4380_7778208_2120201,4380_509 -4380_77982,292,4380_35477,Kent Train Station,75576-00016-1,1,4380_7778208_2120201,4380_509 -4380_77982,293,4380_35478,Kent Train Station,75572-00017-1,1,4380_7778208_2120201,4380_509 -4380_77982,290,4380_35479,Kent Train Station,75570-00015-1,1,4380_7778208_2120201,4380_509 -4380_77982,294,4380_35480,Kent Train Station,75581-00018-1,1,4380_7778208_2120201,4380_509 -4380_77982,295,4380_35481,Kent Train Station,75579-00019-1,1,4380_7778208_2120201,4380_509 -4380_77982,296,4380_35482,Kent Train Station,75574-00021-1,1,4380_7778208_2120201,4380_510 -4380_77982,297,4380_35490,Kent Train Station,75595-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35491,Kent Train Station,75604-00009-1,1,4380_7778208_2120201,4380_509 -4380_77982,286,4380_35492,Kent Train Station,75602-00010-1,1,4380_7778208_2120201,4380_509 -4380_77982,288,4380_35493,Kent Train Station,75596-00011-1,1,4380_7778208_2120201,4380_509 -4380_77982,287,4380_35494,Kent Train Station,75598-00012-1,1,4380_7778208_2120201,4380_509 -4380_77982,291,4380_35495,Kent Train Station,75600-00013-1,1,4380_7778208_2120201,4380_510 -4380_77982,289,4380_35496,Kent Train Station,75606-00014-1,1,4380_7778208_2120201,4380_509 -4380_77982,292,4380_35497,Kent Train Station,75603-00016-1,1,4380_7778208_2120201,4380_509 -4380_77982,293,4380_35498,Kent Train Station,75597-00017-1,1,4380_7778208_2120201,4380_509 -4380_77982,290,4380_35499,Kent Train Station,75605-00015-1,1,4380_7778208_2120201,4380_509 -4380_77946,291,4380_355,Drogheda,50235-00013-1,1,4380_7778208_1000910,4380_9 -4380_77982,294,4380_35500,Kent Train Station,75599-00018-1,1,4380_7778208_2120201,4380_509 -4380_77982,295,4380_35501,Kent Train Station,75607-00019-1,1,4380_7778208_2120201,4380_509 -4380_77982,296,4380_35502,Kent Train Station,75601-00021-1,1,4380_7778208_2120201,4380_510 -4380_77982,297,4380_35510,Kent Train Station,75631-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35511,Kent Train Station,75629-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35512,Kent Train Station,75632-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35513,Kent Train Station,75621-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35514,Kent Train Station,75625-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35515,Kent Train Station,75627-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35516,Kent Train Station,75623-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35517,Kent Train Station,75633-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35518,Kent Train Station,75622-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35519,Kent Train Station,75630-00015-1,1,4380_7778208_2120201,4380_510 -4380_77982,294,4380_35520,Kent Train Station,75626-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35521,Kent Train Station,75624-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35522,Kent Train Station,75628-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,285,4380_3553,Ratoath,1368-00009-1,0,4380_7778208_1030103,4380_39 -4380_77982,297,4380_35530,Kent Train Station,75657-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35531,Kent Train Station,75658-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35532,Kent Train Station,75649-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35533,Kent Train Station,75653-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35534,Kent Train Station,75655-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35535,Kent Train Station,75647-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35536,Kent Train Station,75651-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35537,Kent Train Station,75650-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35538,Kent Train Station,75654-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35539,Kent Train Station,75659-00015-1,1,4380_7778208_2120201,4380_510 -4380_77948,286,4380_3554,Ratoath,1378-00010-1,0,4380_7778208_1030103,4380_39 -4380_77982,294,4380_35540,Kent Train Station,75656-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35541,Kent Train Station,75652-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35542,Kent Train Station,75648-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,297,4380_3555,Ratoath,1430-00008-1,0,4380_7778208_1030103,4380_40 -4380_77982,297,4380_35550,Kent Train Station,75673-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35551,Kent Train Station,75676-00009-1,1,4380_7778208_2120201,4380_510 -4380_77982,286,4380_35552,Kent Train Station,75674-00010-1,1,4380_7778208_2120201,4380_510 -4380_77982,288,4380_35553,Kent Train Station,75678-00011-1,1,4380_7778208_2120201,4380_510 -4380_77982,287,4380_35554,Kent Train Station,75680-00012-1,1,4380_7778208_2120201,4380_510 -4380_77982,291,4380_35555,Kent Train Station,75684-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35556,Kent Train Station,75682-00014-1,1,4380_7778208_2120201,4380_510 -4380_77982,292,4380_35557,Kent Train Station,75675-00016-1,1,4380_7778208_2120201,4380_510 -4380_77982,293,4380_35558,Kent Train Station,75679-00017-1,1,4380_7778208_2120201,4380_510 -4380_77982,290,4380_35559,Kent Train Station,75677-00015-1,1,4380_7778208_2120201,4380_510 -4380_77948,288,4380_3556,Ratoath,1388-00011-1,0,4380_7778208_1030103,4380_39 -4380_77982,294,4380_35560,Kent Train Station,75681-00018-1,1,4380_7778208_2120201,4380_510 -4380_77982,295,4380_35561,Kent Train Station,75683-00019-1,1,4380_7778208_2120201,4380_510 -4380_77982,296,4380_35562,Kent Train Station,75685-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,287,4380_3557,Ratoath,1398-00012-1,0,4380_7778208_1030103,4380_39 -4380_77982,297,4380_35570,Kent Train Station,75711-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35571,Kent Train Station,75699-00009-1,1,4380_7778208_2120201,4380_509 -4380_77982,286,4380_35572,Kent Train Station,75705-00010-1,1,4380_7778208_2120201,4380_509 -4380_77982,288,4380_35573,Kent Train Station,75707-00011-1,1,4380_7778208_2120201,4380_509 -4380_77982,287,4380_35574,Kent Train Station,75703-00012-1,1,4380_7778208_2120201,4380_509 -4380_77982,291,4380_35575,Kent Train Station,75701-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35576,Kent Train Station,75709-00014-1,1,4380_7778208_2120201,4380_509 -4380_77982,292,4380_35577,Kent Train Station,75706-00016-1,1,4380_7778208_2120201,4380_509 -4380_77982,293,4380_35578,Kent Train Station,75708-00017-1,1,4380_7778208_2120201,4380_509 -4380_77982,290,4380_35579,Kent Train Station,75700-00015-1,1,4380_7778208_2120201,4380_509 -4380_77948,289,4380_3558,Ratoath,1358-00014-1,0,4380_7778208_1030103,4380_39 -4380_77982,294,4380_35580,Kent Train Station,75704-00018-1,1,4380_7778208_2120201,4380_509 -4380_77982,295,4380_35581,Kent Train Station,75710-00019-1,1,4380_7778208_2120201,4380_509 -4380_77982,296,4380_35582,Kent Train Station,75702-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,290,4380_3559,Ratoath,51913-00015-1,0,4380_7778208_1030103,4380_39 -4380_77982,297,4380_35590,Kent Train Station,75727-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35591,Kent Train Station,75736-00009-1,1,4380_7778208_2120201,4380_509 -4380_77982,286,4380_35592,Kent Train Station,75730-00010-1,1,4380_7778208_2120201,4380_509 -4380_77982,288,4380_35593,Kent Train Station,75734-00011-1,1,4380_7778208_2120201,4380_509 -4380_77982,287,4380_35594,Kent Train Station,75732-00012-1,1,4380_7778208_2120201,4380_509 -4380_77982,291,4380_35595,Kent Train Station,75728-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35596,Kent Train Station,75725-00014-1,1,4380_7778208_2120201,4380_509 -4380_77982,292,4380_35597,Kent Train Station,75731-00016-1,1,4380_7778208_2120201,4380_509 -4380_77982,293,4380_35598,Kent Train Station,75735-00017-1,1,4380_7778208_2120201,4380_509 -4380_77982,290,4380_35599,Kent Train Station,75737-00015-1,1,4380_7778208_2120201,4380_509 -4380_77946,292,4380_356,Drogheda,50310-00016-1,1,4380_7778208_1000913,4380_6 -4380_77948,291,4380_3560,Ratoath,1668-00013-1,0,4380_7778208_1030106,4380_41 -4380_77982,294,4380_35600,Kent Train Station,75733-00018-1,1,4380_7778208_2120201,4380_509 -4380_77982,295,4380_35601,Kent Train Station,75726-00019-1,1,4380_7778208_2120201,4380_509 -4380_77982,296,4380_35602,Kent Train Station,75729-00021-1,1,4380_7778208_2120201,4380_509 -4380_77948,292,4380_3561,Ratoath,51914-00016-1,0,4380_7778208_1030103,4380_39 -4380_77982,297,4380_35610,Kent Train Station,75757-00008-1,1,4380_7778208_2120201,4380_509 -4380_77982,285,4380_35611,Kent Train Station,75751-00009-1,1,4380_7778208_2120201,4380_509 -4380_77982,286,4380_35612,Kent Train Station,75753-00010-1,1,4380_7778208_2120201,4380_509 -4380_77982,288,4380_35613,Kent Train Station,75755-00011-1,1,4380_7778208_2120201,4380_509 -4380_77982,287,4380_35614,Kent Train Station,75760-00012-1,1,4380_7778208_2120201,4380_509 -4380_77982,291,4380_35615,Kent Train Station,75758-00013-1,1,4380_7778208_2120201,4380_509 -4380_77982,289,4380_35616,Kent Train Station,75762-00014-1,1,4380_7778208_2120201,4380_509 -4380_77982,292,4380_35617,Kent Train Station,75754-00016-1,1,4380_7778208_2120201,4380_509 -4380_77982,293,4380_35618,Kent Train Station,75756-00017-1,1,4380_7778208_2120201,4380_509 -4380_77982,290,4380_35619,Kent Train Station,75752-00015-1,1,4380_7778208_2120201,4380_509 -4380_77948,293,4380_3562,Ratoath,51911-00017-1,0,4380_7778208_1030103,4380_39 -4380_77982,294,4380_35620,Kent Train Station,75761-00018-1,1,4380_7778208_2120201,4380_509 -4380_77982,295,4380_35621,Kent Train Station,75763-00019-1,1,4380_7778208_2120201,4380_509 -4380_77982,296,4380_35622,Kent Train Station,75759-00021-1,1,4380_7778208_2120201,4380_509 -4380_77983,285,4380_35629,Black Ash P + R,75778-00009-1,0,4380_7778208_2130201,4380_512 -4380_77948,294,4380_3563,Ratoath,51912-00018-1,0,4380_7778208_1030103,4380_39 -4380_77983,286,4380_35630,Black Ash P + R,75782-00010-1,0,4380_7778208_2130201,4380_512 -4380_77983,288,4380_35631,Black Ash P + R,75780-00011-1,0,4380_7778208_2130201,4380_512 -4380_77983,287,4380_35632,Black Ash P + R,75784-00012-1,0,4380_7778208_2130201,4380_512 -4380_77983,291,4380_35633,Black Ash P + R,75786-00013-1,0,4380_7778208_2130201,4380_512 -4380_77983,289,4380_35634,Black Ash P + R,75776-00014-1,0,4380_7778208_2130201,4380_512 -4380_77983,292,4380_35635,Black Ash P + R,75783-00016-1,0,4380_7778208_2130201,4380_512 -4380_77983,293,4380_35636,Black Ash P + R,75781-00017-1,0,4380_7778208_2130201,4380_512 -4380_77983,290,4380_35637,Black Ash P + R,75779-00015-1,0,4380_7778208_2130201,4380_512 -4380_77983,294,4380_35638,Black Ash P + R,75785-00018-1,0,4380_7778208_2130201,4380_512 -4380_77983,295,4380_35639,Black Ash P + R,75777-00019-1,0,4380_7778208_2130201,4380_512 -4380_77948,295,4380_3564,Ratoath,51915-00019-1,0,4380_7778208_1030103,4380_39 -4380_77983,296,4380_35640,Black Ash P + R,75787-00021-1,0,4380_7778208_2130201,4380_512 -4380_77983,285,4380_35647,Black Ash P + R,75980-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_35648,Black Ash P + R,75984-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_35649,Black Ash P + R,75990-00011-1,0,4380_7778208_2130202,4380_512 -4380_77948,296,4380_3565,Ratoath,52087-00021-1,0,4380_7778208_1030106,4380_41 -4380_77983,287,4380_35650,Black Ash P + R,75982-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_35651,Black Ash P + R,75988-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_35652,Black Ash P + R,75986-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_35653,Black Ash P + R,75985-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_35654,Black Ash P + R,75991-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_35655,Black Ash P + R,75981-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_35656,Black Ash P + R,75983-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_35657,Black Ash P + R,75987-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_35658,Black Ash P + R,75989-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_35665,Black Ash P + R,76426-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_35666,Black Ash P + R,76424-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_35667,Black Ash P + R,76430-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_35668,Black Ash P + R,76432-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_35669,Black Ash P + R,76434-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_35670,Black Ash P + R,76428-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_35671,Black Ash P + R,76425-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_35672,Black Ash P + R,76431-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_35673,Black Ash P + R,76427-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_35674,Black Ash P + R,76433-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_35675,Black Ash P + R,76429-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_35676,Black Ash P + R,76435-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_35683,Black Ash P + R,76938-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_35684,Black Ash P + R,76936-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_35685,Black Ash P + R,76932-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_35686,Black Ash P + R,76934-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_35687,Black Ash P + R,76928-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_35688,Black Ash P + R,76930-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_35689,Black Ash P + R,76937-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_35690,Black Ash P + R,76933-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_35691,Black Ash P + R,76939-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_35692,Black Ash P + R,76935-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_35693,Black Ash P + R,76931-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_35694,Black Ash P + R,76929-00021-1,0,4380_7778208_2130204,4380_512 -4380_77946,293,4380_357,Drogheda,50312-00017-1,1,4380_7778208_1000913,4380_6 -4380_77983,285,4380_35701,Black Ash P + R,75806-00009-1,0,4380_7778208_2130201,4380_512 -4380_77983,286,4380_35702,Black Ash P + R,75808-00010-1,0,4380_7778208_2130201,4380_512 -4380_77983,288,4380_35703,Black Ash P + R,75802-00011-1,0,4380_7778208_2130201,4380_512 -4380_77983,287,4380_35704,Black Ash P + R,75810-00012-1,0,4380_7778208_2130201,4380_512 -4380_77983,291,4380_35705,Black Ash P + R,75804-00013-1,0,4380_7778208_2130201,4380_512 -4380_77983,289,4380_35706,Black Ash P + R,75800-00014-1,0,4380_7778208_2130201,4380_512 -4380_77983,292,4380_35707,Black Ash P + R,75809-00016-1,0,4380_7778208_2130201,4380_512 -4380_77983,293,4380_35708,Black Ash P + R,75803-00017-1,0,4380_7778208_2130201,4380_512 -4380_77983,290,4380_35709,Black Ash P + R,75807-00015-1,0,4380_7778208_2130201,4380_512 -4380_77983,294,4380_35710,Black Ash P + R,75811-00018-1,0,4380_7778208_2130201,4380_512 -4380_77983,295,4380_35711,Black Ash P + R,75801-00019-1,0,4380_7778208_2130201,4380_512 -4380_77983,296,4380_35712,Black Ash P + R,75805-00021-1,0,4380_7778208_2130201,4380_512 -4380_77983,285,4380_35719,Black Ash P + R,76004-00009-1,0,4380_7778208_2130202,4380_512 -4380_77948,285,4380_3572,Ratoath,1700-00009-1,0,4380_7778208_1030107,4380_39 -4380_77983,286,4380_35720,Black Ash P + R,76012-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_35721,Black Ash P + R,76006-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_35722,Black Ash P + R,76010-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_35723,Black Ash P + R,76008-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_35724,Black Ash P + R,76014-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_35725,Black Ash P + R,76013-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_35726,Black Ash P + R,76007-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_35727,Black Ash P + R,76005-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_35728,Black Ash P + R,76011-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_35729,Black Ash P + R,76015-00019-1,0,4380_7778208_2130202,4380_512 -4380_77948,286,4380_3573,Ratoath,1712-00010-1,0,4380_7778208_1030107,4380_39 -4380_77983,296,4380_35730,Black Ash P + R,76009-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_35737,Black Ash P + R,76450-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_35738,Black Ash P + R,76454-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_35739,Black Ash P + R,76456-00011-1,0,4380_7778208_2130203,4380_512 -4380_77948,288,4380_3574,Ratoath,1724-00011-1,0,4380_7778208_1030107,4380_39 -4380_77983,287,4380_35740,Black Ash P + R,76458-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_35741,Black Ash P + R,76448-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_35742,Black Ash P + R,76452-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_35743,Black Ash P + R,76455-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_35744,Black Ash P + R,76457-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_35745,Black Ash P + R,76451-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_35746,Black Ash P + R,76459-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_35747,Black Ash P + R,76453-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_35748,Black Ash P + R,76449-00021-1,0,4380_7778208_2130203,4380_512 -4380_77948,287,4380_3575,Ratoath,1736-00012-1,0,4380_7778208_1030107,4380_39 -4380_77983,285,4380_35755,Black Ash P + R,76962-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_35756,Black Ash P + R,76958-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_35757,Black Ash P + R,76956-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_35758,Black Ash P + R,76954-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_35759,Black Ash P + R,76952-00013-1,0,4380_7778208_2130204,4380_512 -4380_77948,289,4380_3576,Ratoath,1688-00014-1,0,4380_7778208_1030107,4380_39 -4380_77983,289,4380_35760,Black Ash P + R,76960-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_35761,Black Ash P + R,76959-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_35762,Black Ash P + R,76957-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_35763,Black Ash P + R,76963-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_35764,Black Ash P + R,76955-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_35765,Black Ash P + R,76961-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_35766,Black Ash P + R,76953-00021-1,0,4380_7778208_2130204,4380_512 -4380_77948,290,4380_3577,Ratoath,52158-00015-1,0,4380_7778208_1030107,4380_39 -4380_77983,285,4380_35773,Black Ash P + R,75830-00009-1,0,4380_7778208_2130201,4380_512 -4380_77983,286,4380_35774,Black Ash P + R,75826-00010-1,0,4380_7778208_2130201,4380_512 -4380_77983,288,4380_35775,Black Ash P + R,75828-00011-1,0,4380_7778208_2130201,4380_512 -4380_77983,287,4380_35776,Black Ash P + R,75824-00012-1,0,4380_7778208_2130201,4380_512 -4380_77983,291,4380_35777,Black Ash P + R,75832-00013-1,0,4380_7778208_2130201,4380_512 -4380_77983,289,4380_35778,Black Ash P + R,75834-00014-1,0,4380_7778208_2130201,4380_512 -4380_77983,292,4380_35779,Black Ash P + R,75827-00016-1,0,4380_7778208_2130201,4380_512 -4380_77948,291,4380_3578,Ratoath,1949-00013-1,0,4380_7778208_1030110,4380_40 -4380_77983,293,4380_35780,Black Ash P + R,75829-00017-1,0,4380_7778208_2130201,4380_512 -4380_77983,290,4380_35781,Black Ash P + R,75831-00015-1,0,4380_7778208_2130201,4380_512 -4380_77983,294,4380_35782,Black Ash P + R,75825-00018-1,0,4380_7778208_2130201,4380_512 -4380_77983,295,4380_35783,Black Ash P + R,75835-00019-1,0,4380_7778208_2130201,4380_512 -4380_77983,296,4380_35784,Black Ash P + R,75833-00021-1,0,4380_7778208_2130201,4380_512 -4380_77948,292,4380_3579,Ratoath,52157-00016-1,0,4380_7778208_1030107,4380_39 -4380_77983,285,4380_35791,Black Ash P + R,76034-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_35792,Black Ash P + R,76038-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_35793,Black Ash P + R,76032-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_35794,Black Ash P + R,76030-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_35795,Black Ash P + R,76028-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_35796,Black Ash P + R,76036-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_35797,Black Ash P + R,76039-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_35798,Black Ash P + R,76033-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_35799,Black Ash P + R,76035-00015-1,0,4380_7778208_2130202,4380_512 -4380_77946,294,4380_358,Drogheda,50316-00018-1,1,4380_7778208_1000913,4380_6 -4380_77948,293,4380_3580,Ratoath,52161-00017-1,0,4380_7778208_1030107,4380_39 -4380_77983,294,4380_35800,Black Ash P + R,76031-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_35801,Black Ash P + R,76037-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_35802,Black Ash P + R,76029-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_35809,Black Ash P + R,76476-00009-1,0,4380_7778208_2130203,4380_512 -4380_77948,294,4380_3581,Ratoath,52160-00018-1,0,4380_7778208_1030107,4380_39 -4380_77983,286,4380_35810,Black Ash P + R,76478-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_35811,Black Ash P + R,76472-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_35812,Black Ash P + R,76482-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_35813,Black Ash P + R,76480-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_35814,Black Ash P + R,76474-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_35815,Black Ash P + R,76479-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_35816,Black Ash P + R,76473-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_35817,Black Ash P + R,76477-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_35818,Black Ash P + R,76483-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_35819,Black Ash P + R,76475-00019-1,0,4380_7778208_2130203,4380_512 -4380_77948,295,4380_3582,Ratoath,52159-00019-1,0,4380_7778208_1030107,4380_39 -4380_77983,296,4380_35820,Black Ash P + R,76481-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_35827,Black Ash P + R,76984-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_35828,Black Ash P + R,76982-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_35829,Black Ash P + R,76986-00011-1,0,4380_7778208_2130204,4380_512 -4380_77948,296,4380_3583,Ratoath,52338-00021-1,0,4380_7778208_1030110,4380_40 -4380_77983,287,4380_35830,Black Ash P + R,76980-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_35831,Black Ash P + R,76978-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_35832,Black Ash P + R,76976-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_35833,Black Ash P + R,76983-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_35834,Black Ash P + R,76987-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_35835,Black Ash P + R,76985-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_35836,Black Ash P + R,76981-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_35837,Black Ash P + R,76977-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_35838,Black Ash P + R,76979-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_35845,Black Ash P + R,75858-00009-1,0,4380_7778208_2130201,4380_512 -4380_77983,286,4380_35846,Black Ash P + R,75848-00010-1,0,4380_7778208_2130201,4380_512 -4380_77983,288,4380_35847,Black Ash P + R,75856-00011-1,0,4380_7778208_2130201,4380_512 -4380_77983,287,4380_35848,Black Ash P + R,75852-00012-1,0,4380_7778208_2130201,4380_512 -4380_77983,291,4380_35849,Black Ash P + R,75850-00013-1,0,4380_7778208_2130201,4380_512 -4380_77983,289,4380_35850,Black Ash P + R,75854-00014-1,0,4380_7778208_2130201,4380_512 -4380_77983,292,4380_35851,Black Ash P + R,75849-00016-1,0,4380_7778208_2130201,4380_512 -4380_77983,293,4380_35852,Black Ash P + R,75857-00017-1,0,4380_7778208_2130201,4380_512 -4380_77983,290,4380_35853,Black Ash P + R,75859-00015-1,0,4380_7778208_2130201,4380_512 -4380_77983,294,4380_35854,Black Ash P + R,75853-00018-1,0,4380_7778208_2130201,4380_512 -4380_77983,295,4380_35855,Black Ash P + R,75855-00019-1,0,4380_7778208_2130201,4380_512 -4380_77983,296,4380_35856,Black Ash P + R,75851-00021-1,0,4380_7778208_2130201,4380_512 -4380_77983,285,4380_35863,Black Ash P + R,76056-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_35864,Black Ash P + R,76052-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_35865,Black Ash P + R,76062-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_35866,Black Ash P + R,76054-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_35867,Black Ash P + R,76060-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_35868,Black Ash P + R,76058-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_35869,Black Ash P + R,76053-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_35870,Black Ash P + R,76063-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_35871,Black Ash P + R,76057-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_35872,Black Ash P + R,76055-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_35873,Black Ash P + R,76059-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_35874,Black Ash P + R,76061-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_35881,Black Ash P + R,76496-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_35882,Black Ash P + R,76502-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_35883,Black Ash P + R,76504-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_35884,Black Ash P + R,76500-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_35885,Black Ash P + R,76498-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_35886,Black Ash P + R,76506-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_35887,Black Ash P + R,76503-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_35888,Black Ash P + R,76505-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_35889,Black Ash P + R,76497-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_35890,Black Ash P + R,76501-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_35891,Black Ash P + R,76507-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_35892,Black Ash P + R,76499-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_35899,Black Ash P + R,77008-00009-1,0,4380_7778208_2130204,4380_512 -4380_77946,295,4380_359,Drogheda,50314-00019-1,1,4380_7778208_1000913,4380_6 -4380_77983,286,4380_35900,Black Ash P + R,77004-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_35901,Black Ash P + R,77000-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_35902,Black Ash P + R,77010-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_35903,Black Ash P + R,77006-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_35904,Black Ash P + R,77002-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_35905,Black Ash P + R,77005-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_35906,Black Ash P + R,77001-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_35907,Black Ash P + R,77009-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_35908,Black Ash P + R,77011-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_35909,Black Ash P + R,77003-00019-1,0,4380_7778208_2130204,4380_512 -4380_77948,297,4380_3591,Ratoath,1594-00008-1,0,4380_7778208_1030105,4380_39 -4380_77983,296,4380_35910,Black Ash P + R,77007-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_35917,Black Ash P + R,76082-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_35918,Black Ash P + R,76078-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_35919,Black Ash P + R,76084-00011-1,0,4380_7778208_2130202,4380_512 -4380_77948,285,4380_3592,Ratoath,1616-00009-1,0,4380_7778208_1030106,4380_39 -4380_77983,287,4380_35920,Black Ash P + R,76086-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_35921,Black Ash P + R,76076-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_35922,Black Ash P + R,76080-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_35923,Black Ash P + R,76079-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_35924,Black Ash P + R,76085-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_35925,Black Ash P + R,76083-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_35926,Black Ash P + R,76087-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_35927,Black Ash P + R,76081-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_35928,Black Ash P + R,76077-00021-1,0,4380_7778208_2130202,4380_512 -4380_77948,286,4380_3593,Ratoath,1628-00010-1,0,4380_7778208_1030106,4380_39 -4380_77983,285,4380_35935,Black Ash P + R,76530-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_35936,Black Ash P + R,76520-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_35937,Black Ash P + R,76524-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_35938,Black Ash P + R,76522-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_35939,Black Ash P + R,76526-00013-1,0,4380_7778208_2130203,4380_512 -4380_77948,288,4380_3594,Ratoath,1640-00011-1,0,4380_7778208_1030106,4380_39 -4380_77983,289,4380_35940,Black Ash P + R,76528-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_35941,Black Ash P + R,76521-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_35942,Black Ash P + R,76525-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_35943,Black Ash P + R,76531-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_35944,Black Ash P + R,76523-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_35945,Black Ash P + R,76529-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_35946,Black Ash P + R,76527-00021-1,0,4380_7778208_2130203,4380_512 -4380_77948,287,4380_3595,Ratoath,1652-00012-1,0,4380_7778208_1030106,4380_39 -4380_77983,285,4380_35953,Black Ash P + R,77026-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_35954,Black Ash P + R,77034-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_35955,Black Ash P + R,77032-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_35956,Black Ash P + R,77030-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_35957,Black Ash P + R,77028-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_35958,Black Ash P + R,77024-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_35959,Black Ash P + R,77035-00016-1,0,4380_7778208_2130204,4380_512 -4380_77948,289,4380_3596,Ratoath,1604-00014-1,0,4380_7778208_1030106,4380_39 -4380_77983,293,4380_35960,Black Ash P + R,77033-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_35961,Black Ash P + R,77027-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_35962,Black Ash P + R,77031-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_35963,Black Ash P + R,77025-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_35964,Black Ash P + R,77029-00021-1,0,4380_7778208_2130204,4380_512 -4380_77948,290,4380_3597,Ratoath,52092-00015-1,0,4380_7778208_1030106,4380_39 -4380_77983,285,4380_35971,Black Ash P + R,76100-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_35972,Black Ash P + R,76102-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_35973,Black Ash P + R,76106-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_35974,Black Ash P + R,76104-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_35975,Black Ash P + R,76110-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_35976,Black Ash P + R,76108-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_35977,Black Ash P + R,76103-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_35978,Black Ash P + R,76107-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_35979,Black Ash P + R,76101-00015-1,0,4380_7778208_2130202,4380_512 -4380_77948,291,4380_3598,Ratoath,1408-00013-1,0,4380_7778208_1030103,4380_40 -4380_77983,294,4380_35980,Black Ash P + R,76105-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_35981,Black Ash P + R,76109-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_35982,Black Ash P + R,76111-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_35989,Black Ash P + R,76548-00009-1,0,4380_7778208_2130203,4380_512 -4380_77948,292,4380_3599,Ratoath,52091-00016-1,0,4380_7778208_1030106,4380_39 -4380_77983,286,4380_35990,Black Ash P + R,76552-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_35991,Black Ash P + R,76550-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_35992,Black Ash P + R,76546-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_35993,Black Ash P + R,76554-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_35994,Black Ash P + R,76544-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_35995,Black Ash P + R,76553-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_35996,Black Ash P + R,76551-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_35997,Black Ash P + R,76549-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_35998,Black Ash P + R,76547-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_35999,Black Ash P + R,76545-00019-1,0,4380_7778208_2130203,4380_512 -4380_77946,296,4380_360,Drogheda,50236-00021-1,1,4380_7778208_1000910,4380_9 -4380_77948,293,4380_3600,Ratoath,52088-00017-1,0,4380_7778208_1030106,4380_39 -4380_77983,296,4380_36000,Black Ash P + R,76555-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_36007,Black Ash P + R,77056-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36008,Black Ash P + R,77054-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36009,Black Ash P + R,77048-00011-1,0,4380_7778208_2130204,4380_512 -4380_77948,294,4380_3601,Ratoath,52089-00018-1,0,4380_7778208_1030106,4380_39 -4380_77983,287,4380_36010,Black Ash P + R,77050-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36011,Black Ash P + R,77058-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36012,Black Ash P + R,77052-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36013,Black Ash P + R,77055-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36014,Black Ash P + R,77049-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36015,Black Ash P + R,77057-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36016,Black Ash P + R,77051-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36017,Black Ash P + R,77053-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36018,Black Ash P + R,77059-00021-1,0,4380_7778208_2130204,4380_512 -4380_77948,295,4380_3602,Ratoath,52090-00019-1,0,4380_7778208_1030106,4380_39 -4380_77983,285,4380_36025,Black Ash P + R,76124-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36026,Black Ash P + R,76130-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36027,Black Ash P + R,76126-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36028,Black Ash P + R,76132-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36029,Black Ash P + R,76128-00013-1,0,4380_7778208_2130202,4380_512 -4380_77948,296,4380_3603,Ratoath,51916-00021-1,0,4380_7778208_1030103,4380_40 -4380_77983,289,4380_36030,Black Ash P + R,76134-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36031,Black Ash P + R,76131-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36032,Black Ash P + R,76127-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36033,Black Ash P + R,76125-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36034,Black Ash P + R,76133-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36035,Black Ash P + R,76135-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36036,Black Ash P + R,76129-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_36043,Black Ash P + R,76570-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36044,Black Ash P + R,76572-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36045,Black Ash P + R,76574-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36046,Black Ash P + R,76568-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36047,Black Ash P + R,76576-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36048,Black Ash P + R,76578-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36049,Black Ash P + R,76573-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36050,Black Ash P + R,76575-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36051,Black Ash P + R,76571-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36052,Black Ash P + R,76569-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36053,Black Ash P + R,76579-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36054,Black Ash P + R,76577-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_36061,Black Ash P + R,77074-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36062,Black Ash P + R,77072-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36063,Black Ash P + R,77080-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36064,Black Ash P + R,77076-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36065,Black Ash P + R,77078-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36066,Black Ash P + R,77082-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36067,Black Ash P + R,77073-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36068,Black Ash P + R,77081-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36069,Black Ash P + R,77075-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36070,Black Ash P + R,77077-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36071,Black Ash P + R,77083-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36072,Black Ash P + R,77079-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36079,Black Ash P + R,76152-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36080,Black Ash P + R,76150-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36081,Black Ash P + R,76148-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36082,Black Ash P + R,76156-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36083,Black Ash P + R,76154-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36084,Black Ash P + R,76158-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36085,Black Ash P + R,76151-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36086,Black Ash P + R,76149-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36087,Black Ash P + R,76153-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36088,Black Ash P + R,76157-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36089,Black Ash P + R,76159-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36090,Black Ash P + R,76155-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_36097,Black Ash P + R,76592-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36098,Black Ash P + R,76596-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36099,Black Ash P + R,76602-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36100,Black Ash P + R,76598-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36101,Black Ash P + R,76594-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36102,Black Ash P + R,76600-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36103,Black Ash P + R,76597-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36104,Black Ash P + R,76603-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36105,Black Ash P + R,76593-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36106,Black Ash P + R,76599-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36107,Black Ash P + R,76601-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36108,Black Ash P + R,76595-00021-1,0,4380_7778208_2130203,4380_512 -4380_77948,285,4380_3611,Ratoath,1556-00009-1,0,4380_7778208_1030105,4380_39 -4380_77983,285,4380_36115,Black Ash P + R,77106-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36116,Black Ash P + R,77100-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36117,Black Ash P + R,77098-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36118,Black Ash P + R,77102-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36119,Black Ash P + R,77096-00013-1,0,4380_7778208_2130204,4380_512 -4380_77948,286,4380_3612,Ratoath,1564-00010-1,0,4380_7778208_1030105,4380_39 -4380_77983,289,4380_36120,Black Ash P + R,77104-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36121,Black Ash P + R,77101-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36122,Black Ash P + R,77099-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36123,Black Ash P + R,77107-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36124,Black Ash P + R,77103-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36125,Black Ash P + R,77105-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36126,Black Ash P + R,77097-00021-1,0,4380_7778208_2130204,4380_512 -4380_77948,297,4380_3613,Ratoath,1676-00008-1,0,4380_7778208_1030106,4380_40 -4380_77983,285,4380_36133,Black Ash P + R,76178-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36134,Black Ash P + R,76176-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36135,Black Ash P + R,76180-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36136,Black Ash P + R,76182-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36137,Black Ash P + R,76174-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36138,Black Ash P + R,76172-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36139,Black Ash P + R,76177-00016-1,0,4380_7778208_2130202,4380_512 -4380_77948,288,4380_3614,Ratoath,1572-00011-1,0,4380_7778208_1030105,4380_39 -4380_77983,293,4380_36140,Black Ash P + R,76181-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36141,Black Ash P + R,76179-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36142,Black Ash P + R,76183-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36143,Black Ash P + R,76173-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36144,Black Ash P + R,76175-00021-1,0,4380_7778208_2130202,4380_512 -4380_77948,287,4380_3615,Ratoath,1580-00012-1,0,4380_7778208_1030105,4380_39 -4380_77983,285,4380_36151,Black Ash P + R,76622-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36152,Black Ash P + R,76624-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36153,Black Ash P + R,76616-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36154,Black Ash P + R,76626-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36155,Black Ash P + R,76620-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36156,Black Ash P + R,76618-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36157,Black Ash P + R,76625-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36158,Black Ash P + R,76617-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36159,Black Ash P + R,76623-00015-1,0,4380_7778208_2130203,4380_512 -4380_77948,289,4380_3616,Ratoath,1548-00014-1,0,4380_7778208_1030105,4380_39 -4380_77983,294,4380_36160,Black Ash P + R,76627-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36161,Black Ash P + R,76619-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36162,Black Ash P + R,76621-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_36169,Black Ash P + R,77124-00009-1,0,4380_7778208_2130204,4380_512 -4380_77948,290,4380_3617,Ratoath,52044-00015-1,0,4380_7778208_1030105,4380_39 -4380_77983,286,4380_36170,Black Ash P + R,77126-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36171,Black Ash P + R,77122-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36172,Black Ash P + R,77130-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36173,Black Ash P + R,77128-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36174,Black Ash P + R,77120-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36175,Black Ash P + R,77127-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36176,Black Ash P + R,77123-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36177,Black Ash P + R,77125-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36178,Black Ash P + R,77131-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36179,Black Ash P + R,77121-00019-1,0,4380_7778208_2130204,4380_512 -4380_77948,291,4380_3618,Ratoath,1752-00013-1,0,4380_7778208_1030107,4380_41 -4380_77983,296,4380_36180,Black Ash P + R,77129-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36187,Black Ash P + R,76202-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36188,Black Ash P + R,76198-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36189,Black Ash P + R,76196-00011-1,0,4380_7778208_2130202,4380_512 -4380_77948,292,4380_3619,Ratoath,52043-00016-1,0,4380_7778208_1030105,4380_39 -4380_77983,287,4380_36190,Black Ash P + R,76200-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36191,Black Ash P + R,76204-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36192,Black Ash P + R,76206-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36193,Black Ash P + R,76199-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36194,Black Ash P + R,76197-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36195,Black Ash P + R,76203-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36196,Black Ash P + R,76201-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36197,Black Ash P + R,76207-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36198,Black Ash P + R,76205-00021-1,0,4380_7778208_2130202,4380_512 -4380_77948,293,4380_3620,Ratoath,52047-00017-1,0,4380_7778208_1030105,4380_39 -4380_77983,285,4380_36205,Black Ash P + R,76640-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36206,Black Ash P + R,76648-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36207,Black Ash P + R,76642-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36208,Black Ash P + R,76644-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36209,Black Ash P + R,76646-00013-1,0,4380_7778208_2130203,4380_512 -4380_77948,294,4380_3621,Ratoath,52045-00018-1,0,4380_7778208_1030105,4380_39 -4380_77983,289,4380_36210,Black Ash P + R,76650-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36211,Black Ash P + R,76649-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36212,Black Ash P + R,76643-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36213,Black Ash P + R,76641-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36214,Black Ash P + R,76645-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36215,Black Ash P + R,76651-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36216,Black Ash P + R,76647-00021-1,0,4380_7778208_2130203,4380_512 -4380_77948,295,4380_3622,Ratoath,52046-00019-1,0,4380_7778208_1030105,4380_39 -4380_77983,285,4380_36223,Black Ash P + R,77144-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36224,Black Ash P + R,77148-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36225,Black Ash P + R,77154-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36226,Black Ash P + R,77152-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36227,Black Ash P + R,77146-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36228,Black Ash P + R,77150-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36229,Black Ash P + R,77149-00016-1,0,4380_7778208_2130204,4380_512 -4380_77948,296,4380_3623,Ratoath,52162-00021-1,0,4380_7778208_1030107,4380_41 -4380_77983,293,4380_36230,Black Ash P + R,77155-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36231,Black Ash P + R,77145-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36232,Black Ash P + R,77153-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36233,Black Ash P + R,77151-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36234,Black Ash P + R,77147-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36241,Black Ash P + R,76228-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36242,Black Ash P + R,76230-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36243,Black Ash P + R,76220-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36244,Black Ash P + R,76222-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36245,Black Ash P + R,76224-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36246,Black Ash P + R,76226-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36247,Black Ash P + R,76231-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36248,Black Ash P + R,76221-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36249,Black Ash P + R,76229-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36250,Black Ash P + R,76223-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36251,Black Ash P + R,76227-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36252,Black Ash P + R,76225-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_36259,Black Ash P + R,76664-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36260,Black Ash P + R,76672-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36261,Black Ash P + R,76666-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36262,Black Ash P + R,76668-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36263,Black Ash P + R,76674-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36264,Black Ash P + R,76670-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36265,Black Ash P + R,76673-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36266,Black Ash P + R,76667-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36267,Black Ash P + R,76665-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36268,Black Ash P + R,76669-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36269,Black Ash P + R,76671-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36270,Black Ash P + R,76675-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_36277,Black Ash P + R,77176-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36278,Black Ash P + R,77178-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36279,Black Ash P + R,77174-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36280,Black Ash P + R,77168-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36281,Black Ash P + R,77172-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36282,Black Ash P + R,77170-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36283,Black Ash P + R,77179-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36284,Black Ash P + R,77175-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36285,Black Ash P + R,77177-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36286,Black Ash P + R,77169-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36287,Black Ash P + R,77171-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36288,Black Ash P + R,77173-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36295,Black Ash P + R,76248-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36296,Black Ash P + R,76244-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36297,Black Ash P + R,76250-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36298,Black Ash P + R,76254-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36299,Black Ash P + R,76246-00013-1,0,4380_7778208_2130202,4380_512 -4380_77948,285,4380_3630,Ratoath,1776-00009-1,0,4380_7778208_1030108,4380_39 -4380_77983,289,4380_36300,Black Ash P + R,76252-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36301,Black Ash P + R,76245-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36302,Black Ash P + R,76251-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36303,Black Ash P + R,76249-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36304,Black Ash P + R,76255-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36305,Black Ash P + R,76253-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36306,Black Ash P + R,76247-00021-1,0,4380_7778208_2130202,4380_512 -4380_77948,286,4380_3631,Ratoath,1788-00010-1,0,4380_7778208_1030108,4380_39 -4380_77983,285,4380_36313,Black Ash P + R,76688-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36314,Black Ash P + R,76694-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36315,Black Ash P + R,76698-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36316,Black Ash P + R,76692-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36317,Black Ash P + R,76690-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36318,Black Ash P + R,76696-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36319,Black Ash P + R,76695-00016-1,0,4380_7778208_2130203,4380_512 -4380_77948,288,4380_3632,Ratoath,1800-00011-1,0,4380_7778208_1030108,4380_39 -4380_77983,293,4380_36320,Black Ash P + R,76699-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36321,Black Ash P + R,76689-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36322,Black Ash P + R,76693-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36323,Black Ash P + R,76697-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36324,Black Ash P + R,76691-00021-1,0,4380_7778208_2130203,4380_512 -4380_77948,287,4380_3633,Ratoath,1812-00012-1,0,4380_7778208_1030108,4380_39 -4380_77983,285,4380_36331,Black Ash P + R,77202-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36332,Black Ash P + R,77198-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36333,Black Ash P + R,77194-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36334,Black Ash P + R,77192-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36335,Black Ash P + R,77200-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36336,Black Ash P + R,77196-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36337,Black Ash P + R,77199-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36338,Black Ash P + R,77195-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36339,Black Ash P + R,77203-00015-1,0,4380_7778208_2130204,4380_512 -4380_77948,289,4380_3634,Ratoath,1764-00014-1,0,4380_7778208_1030108,4380_39 -4380_77983,294,4380_36340,Black Ash P + R,77193-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36341,Black Ash P + R,77197-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36342,Black Ash P + R,77201-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36349,Black Ash P + R,76272-00009-1,0,4380_7778208_2130202,4380_512 -4380_77948,290,4380_3635,Ratoath,52226-00015-1,0,4380_7778208_1030108,4380_39 -4380_77983,286,4380_36350,Black Ash P + R,76274-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36351,Black Ash P + R,76278-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36352,Black Ash P + R,76270-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36353,Black Ash P + R,76268-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36354,Black Ash P + R,76276-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36355,Black Ash P + R,76275-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36356,Black Ash P + R,76279-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36357,Black Ash P + R,76273-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36358,Black Ash P + R,76271-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36359,Black Ash P + R,76277-00019-1,0,4380_7778208_2130202,4380_512 -4380_77948,291,4380_3636,Ratoath,1226-00013-1,0,4380_7778208_1030101,4380_40 -4380_77983,296,4380_36360,Black Ash P + R,76269-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_36367,Black Ash P + R,76716-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36368,Black Ash P + R,76720-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36369,Black Ash P + R,76714-00011-1,0,4380_7778208_2130203,4380_512 -4380_77948,292,4380_3637,Ratoath,52227-00016-1,0,4380_7778208_1030108,4380_39 -4380_77983,287,4380_36370,Black Ash P + R,76718-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36371,Black Ash P + R,76712-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36372,Black Ash P + R,76722-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36373,Black Ash P + R,76721-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36374,Black Ash P + R,76715-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36375,Black Ash P + R,76717-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36376,Black Ash P + R,76719-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36377,Black Ash P + R,76723-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36378,Black Ash P + R,76713-00021-1,0,4380_7778208_2130203,4380_512 -4380_77948,293,4380_3638,Ratoath,52225-00017-1,0,4380_7778208_1030108,4380_39 -4380_77983,285,4380_36385,Black Ash P + R,77216-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36386,Black Ash P + R,77226-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36387,Black Ash P + R,77218-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36388,Black Ash P + R,77224-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36389,Black Ash P + R,77222-00013-1,0,4380_7778208_2130204,4380_512 -4380_77948,294,4380_3639,Ratoath,52224-00018-1,0,4380_7778208_1030108,4380_39 -4380_77983,289,4380_36390,Black Ash P + R,77220-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36391,Black Ash P + R,77227-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36392,Black Ash P + R,77219-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36393,Black Ash P + R,77217-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36394,Black Ash P + R,77225-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36395,Black Ash P + R,77221-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36396,Black Ash P + R,77223-00021-1,0,4380_7778208_2130204,4380_512 -4380_77948,295,4380_3640,Ratoath,52223-00019-1,0,4380_7778208_1030108,4380_39 -4380_77983,285,4380_36403,Black Ash P + R,76302-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36404,Black Ash P + R,76300-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36405,Black Ash P + R,76298-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36406,Black Ash P + R,76292-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36407,Black Ash P + R,76294-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36408,Black Ash P + R,76296-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36409,Black Ash P + R,76301-00016-1,0,4380_7778208_2130202,4380_512 -4380_77948,296,4380_3641,Ratoath,51801-00021-1,0,4380_7778208_1030101,4380_40 -4380_77983,293,4380_36410,Black Ash P + R,76299-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36411,Black Ash P + R,76303-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36412,Black Ash P + R,76293-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36413,Black Ash P + R,76297-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36414,Black Ash P + R,76295-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_36421,Black Ash P + R,76746-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36422,Black Ash P + R,76738-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36423,Black Ash P + R,76740-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36424,Black Ash P + R,76742-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36425,Black Ash P + R,76736-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36426,Black Ash P + R,76744-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36427,Black Ash P + R,76739-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36428,Black Ash P + R,76741-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36429,Black Ash P + R,76747-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36430,Black Ash P + R,76743-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36431,Black Ash P + R,76745-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36432,Black Ash P + R,76737-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_36439,Black Ash P + R,75870-00009-1,0,4380_7778208_2130201,4380_512 -4380_77983,286,4380_36440,Black Ash P + R,75864-00010-1,0,4380_7778208_2130201,4380_512 -4380_77983,288,4380_36441,Black Ash P + R,75866-00011-1,0,4380_7778208_2130201,4380_512 -4380_77983,287,4380_36442,Black Ash P + R,75860-00012-1,0,4380_7778208_2130201,4380_512 -4380_77983,291,4380_36443,Black Ash P + R,75862-00013-1,0,4380_7778208_2130201,4380_512 -4380_77983,289,4380_36444,Black Ash P + R,75868-00014-1,0,4380_7778208_2130201,4380_512 -4380_77983,292,4380_36445,Black Ash P + R,75865-00016-1,0,4380_7778208_2130201,4380_512 -4380_77983,293,4380_36446,Black Ash P + R,75867-00017-1,0,4380_7778208_2130201,4380_512 -4380_77983,290,4380_36447,Black Ash P + R,75871-00015-1,0,4380_7778208_2130201,4380_512 -4380_77983,294,4380_36448,Black Ash P + R,75861-00018-1,0,4380_7778208_2130201,4380_512 -4380_77983,295,4380_36449,Black Ash P + R,75869-00019-1,0,4380_7778208_2130201,4380_512 -4380_77983,296,4380_36450,Black Ash P + R,75863-00021-1,0,4380_7778208_2130201,4380_512 -4380_77983,285,4380_36457,Black Ash P + R,77246-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36458,Black Ash P + R,77244-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36459,Black Ash P + R,77242-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36460,Black Ash P + R,77240-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36461,Black Ash P + R,77248-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36462,Black Ash P + R,77250-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36463,Black Ash P + R,77245-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36464,Black Ash P + R,77243-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36465,Black Ash P + R,77247-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36466,Black Ash P + R,77241-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36467,Black Ash P + R,77251-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36468,Black Ash P + R,77249-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36475,Black Ash P + R,76326-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36476,Black Ash P + R,76316-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36477,Black Ash P + R,76318-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36478,Black Ash P + R,76324-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36479,Black Ash P + R,76322-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36480,Black Ash P + R,76320-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36481,Black Ash P + R,76317-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36482,Black Ash P + R,76319-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36483,Black Ash P + R,76327-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36484,Black Ash P + R,76325-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36485,Black Ash P + R,76321-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36486,Black Ash P + R,76323-00021-1,0,4380_7778208_2130202,4380_512 -4380_77948,297,4380_3649,Ratoath,1540-00008-1,0,4380_7778208_1030104,4380_39 -4380_77983,285,4380_36493,Black Ash P + R,76760-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36494,Black Ash P + R,76768-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36495,Black Ash P + R,76770-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36496,Black Ash P + R,76766-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36497,Black Ash P + R,76764-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36498,Black Ash P + R,76762-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36499,Black Ash P + R,76769-00016-1,0,4380_7778208_2130203,4380_512 -4380_77948,285,4380_3650,Ratoath,1188-00009-1,0,4380_7778208_1030101,4380_39 -4380_77983,293,4380_36500,Black Ash P + R,76771-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36501,Black Ash P + R,76761-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36502,Black Ash P + R,76767-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36503,Black Ash P + R,76763-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36504,Black Ash P + R,76765-00021-1,0,4380_7778208_2130203,4380_512 -4380_77948,286,4380_3651,Ratoath,1198-00010-1,0,4380_7778208_1030101,4380_39 -4380_77983,285,4380_36511,Black Ash P + R,75892-00009-1,0,4380_7778208_2130201,4380_512 -4380_77983,286,4380_36512,Black Ash P + R,75894-00010-1,0,4380_7778208_2130201,4380_512 -4380_77983,288,4380_36513,Black Ash P + R,75888-00011-1,0,4380_7778208_2130201,4380_512 -4380_77983,287,4380_36514,Black Ash P + R,75884-00012-1,0,4380_7778208_2130201,4380_512 -4380_77983,291,4380_36515,Black Ash P + R,75890-00013-1,0,4380_7778208_2130201,4380_512 -4380_77983,289,4380_36516,Black Ash P + R,75886-00014-1,0,4380_7778208_2130201,4380_512 -4380_77983,292,4380_36517,Black Ash P + R,75895-00016-1,0,4380_7778208_2130201,4380_512 -4380_77983,293,4380_36518,Black Ash P + R,75889-00017-1,0,4380_7778208_2130201,4380_512 -4380_77983,290,4380_36519,Black Ash P + R,75893-00015-1,0,4380_7778208_2130201,4380_512 -4380_77948,288,4380_3652,Ratoath,1208-00011-1,0,4380_7778208_1030101,4380_39 -4380_77983,294,4380_36520,Black Ash P + R,75885-00018-1,0,4380_7778208_2130201,4380_512 -4380_77983,295,4380_36521,Black Ash P + R,75887-00019-1,0,4380_7778208_2130201,4380_512 -4380_77983,296,4380_36522,Black Ash P + R,75891-00021-1,0,4380_7778208_2130201,4380_512 -4380_77983,285,4380_36529,Black Ash P + R,77266-00009-1,0,4380_7778208_2130204,4380_512 -4380_77948,287,4380_3653,Ratoath,1218-00012-1,0,4380_7778208_1030101,4380_39 -4380_77983,286,4380_36530,Black Ash P + R,77268-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36531,Black Ash P + R,77274-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36532,Black Ash P + R,77264-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36533,Black Ash P + R,77270-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36534,Black Ash P + R,77272-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36535,Black Ash P + R,77269-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36536,Black Ash P + R,77275-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36537,Black Ash P + R,77267-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36538,Black Ash P + R,77265-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36539,Black Ash P + R,77273-00019-1,0,4380_7778208_2130204,4380_512 -4380_77948,289,4380_3654,Ratoath,1178-00014-1,0,4380_7778208_1030101,4380_39 -4380_77983,296,4380_36540,Black Ash P + R,77271-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36547,Black Ash P + R,76344-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36548,Black Ash P + R,76350-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36549,Black Ash P + R,76342-00011-1,0,4380_7778208_2130202,4380_512 -4380_77948,290,4380_3655,Ratoath,51805-00015-1,0,4380_7778208_1030101,4380_39 -4380_77983,287,4380_36550,Black Ash P + R,76348-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36551,Black Ash P + R,76340-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36552,Black Ash P + R,76346-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36553,Black Ash P + R,76351-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36554,Black Ash P + R,76343-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36555,Black Ash P + R,76345-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36556,Black Ash P + R,76349-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36557,Black Ash P + R,76347-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36558,Black Ash P + R,76341-00021-1,0,4380_7778208_2130202,4380_512 -4380_77948,291,4380_3656,Ratoath,1588-00013-1,0,4380_7778208_1030105,4380_40 -4380_77983,285,4380_36565,Black Ash P + R,76790-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36566,Black Ash P + R,76786-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36567,Black Ash P + R,76784-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36568,Black Ash P + R,76788-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36569,Black Ash P + R,76794-00013-1,0,4380_7778208_2130203,4380_512 -4380_77948,292,4380_3657,Ratoath,51802-00016-1,0,4380_7778208_1030101,4380_39 -4380_77983,289,4380_36570,Black Ash P + R,76792-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36571,Black Ash P + R,76787-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36572,Black Ash P + R,76785-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36573,Black Ash P + R,76791-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36574,Black Ash P + R,76789-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36575,Black Ash P + R,76793-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36576,Black Ash P + R,76795-00021-1,0,4380_7778208_2130203,4380_512 -4380_77948,293,4380_3658,Ratoath,51803-00017-1,0,4380_7778208_1030101,4380_39 -4380_77983,285,4380_36583,Black Ash P + R,75914-00009-1,0,4380_7778208_2130201,4380_512 -4380_77983,286,4380_36584,Black Ash P + R,75908-00010-1,0,4380_7778208_2130201,4380_512 -4380_77983,288,4380_36585,Black Ash P + R,75912-00011-1,0,4380_7778208_2130201,4380_512 -4380_77983,287,4380_36586,Black Ash P + R,75918-00012-1,0,4380_7778208_2130201,4380_512 -4380_77983,291,4380_36587,Black Ash P + R,75916-00013-1,0,4380_7778208_2130201,4380_512 -4380_77983,289,4380_36588,Black Ash P + R,75910-00014-1,0,4380_7778208_2130201,4380_512 -4380_77983,292,4380_36589,Black Ash P + R,75909-00016-1,0,4380_7778208_2130201,4380_512 -4380_77948,294,4380_3659,Ratoath,51806-00018-1,0,4380_7778208_1030101,4380_39 -4380_77983,293,4380_36590,Black Ash P + R,75913-00017-1,0,4380_7778208_2130201,4380_512 -4380_77983,290,4380_36591,Black Ash P + R,75915-00015-1,0,4380_7778208_2130201,4380_512 -4380_77983,294,4380_36592,Black Ash P + R,75919-00018-1,0,4380_7778208_2130201,4380_512 -4380_77983,295,4380_36593,Black Ash P + R,75911-00019-1,0,4380_7778208_2130201,4380_512 -4380_77983,296,4380_36594,Black Ash P + R,75917-00021-1,0,4380_7778208_2130201,4380_512 -4380_77948,295,4380_3660,Ratoath,51804-00019-1,0,4380_7778208_1030101,4380_39 -4380_77983,285,4380_36601,Black Ash P + R,77290-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36602,Black Ash P + R,77296-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36603,Black Ash P + R,77288-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36604,Black Ash P + R,77292-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36605,Black Ash P + R,77298-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36606,Black Ash P + R,77294-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36607,Black Ash P + R,77297-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36608,Black Ash P + R,77289-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36609,Black Ash P + R,77291-00015-1,0,4380_7778208_2130204,4380_512 -4380_77948,296,4380_3661,Ratoath,52048-00021-1,0,4380_7778208_1030105,4380_40 -4380_77983,294,4380_36610,Black Ash P + R,77293-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36611,Black Ash P + R,77295-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36612,Black Ash P + R,77299-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36619,Black Ash P + R,76370-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36620,Black Ash P + R,76374-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36621,Black Ash P + R,76368-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36622,Black Ash P + R,76366-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36623,Black Ash P + R,76372-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36624,Black Ash P + R,76364-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36625,Black Ash P + R,76375-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36626,Black Ash P + R,76369-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36627,Black Ash P + R,76371-00015-1,0,4380_7778208_2130202,4380_512 -4380_77983,294,4380_36628,Black Ash P + R,76367-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36629,Black Ash P + R,76365-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36630,Black Ash P + R,76373-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_36637,Black Ash P + R,76814-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36638,Black Ash P + R,76812-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36639,Black Ash P + R,76816-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36640,Black Ash P + R,76808-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36641,Black Ash P + R,76810-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36642,Black Ash P + R,76818-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36643,Black Ash P + R,76813-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36644,Black Ash P + R,76817-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36645,Black Ash P + R,76815-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36646,Black Ash P + R,76809-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36647,Black Ash P + R,76819-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36648,Black Ash P + R,76811-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_36655,Black Ash P + R,75932-00009-1,0,4380_7778208_2130201,4380_512 -4380_77983,286,4380_36656,Black Ash P + R,75934-00010-1,0,4380_7778208_2130201,4380_512 -4380_77983,288,4380_36657,Black Ash P + R,75936-00011-1,0,4380_7778208_2130201,4380_512 -4380_77983,287,4380_36658,Black Ash P + R,75940-00012-1,0,4380_7778208_2130201,4380_512 -4380_77983,291,4380_36659,Black Ash P + R,75938-00013-1,0,4380_7778208_2130201,4380_512 -4380_77983,289,4380_36660,Black Ash P + R,75942-00014-1,0,4380_7778208_2130201,4380_512 -4380_77983,292,4380_36661,Black Ash P + R,75935-00016-1,0,4380_7778208_2130201,4380_512 -4380_77983,293,4380_36662,Black Ash P + R,75937-00017-1,0,4380_7778208_2130201,4380_512 -4380_77983,290,4380_36663,Black Ash P + R,75933-00015-1,0,4380_7778208_2130201,4380_512 -4380_77983,294,4380_36664,Black Ash P + R,75941-00018-1,0,4380_7778208_2130201,4380_512 -4380_77983,295,4380_36665,Black Ash P + R,75943-00019-1,0,4380_7778208_2130201,4380_512 -4380_77983,296,4380_36666,Black Ash P + R,75939-00021-1,0,4380_7778208_2130201,4380_512 -4380_77983,285,4380_36673,Black Ash P + R,77322-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36674,Black Ash P + R,77314-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36675,Black Ash P + R,77316-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36676,Black Ash P + R,77318-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36677,Black Ash P + R,77320-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36678,Black Ash P + R,77312-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36679,Black Ash P + R,77315-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36680,Black Ash P + R,77317-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36681,Black Ash P + R,77323-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36682,Black Ash P + R,77319-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36683,Black Ash P + R,77313-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36684,Black Ash P + R,77321-00021-1,0,4380_7778208_2130204,4380_512 -4380_77948,285,4380_3669,Ratoath,1913-00009-1,0,4380_7778208_1030110,4380_39 -4380_77983,285,4380_36691,Black Ash P + R,76392-00009-1,0,4380_7778208_2130202,4380_512 -4380_77983,286,4380_36692,Black Ash P + R,76388-00010-1,0,4380_7778208_2130202,4380_512 -4380_77983,288,4380_36693,Black Ash P + R,76394-00011-1,0,4380_7778208_2130202,4380_512 -4380_77983,287,4380_36694,Black Ash P + R,76390-00012-1,0,4380_7778208_2130202,4380_512 -4380_77983,291,4380_36695,Black Ash P + R,76396-00013-1,0,4380_7778208_2130202,4380_512 -4380_77983,289,4380_36696,Black Ash P + R,76398-00014-1,0,4380_7778208_2130202,4380_512 -4380_77983,292,4380_36697,Black Ash P + R,76389-00016-1,0,4380_7778208_2130202,4380_512 -4380_77983,293,4380_36698,Black Ash P + R,76395-00017-1,0,4380_7778208_2130202,4380_512 -4380_77983,290,4380_36699,Black Ash P + R,76393-00015-1,0,4380_7778208_2130202,4380_512 -4380_77948,286,4380_3670,Ratoath,1923-00010-1,0,4380_7778208_1030110,4380_39 -4380_77983,294,4380_36700,Black Ash P + R,76391-00018-1,0,4380_7778208_2130202,4380_512 -4380_77983,295,4380_36701,Black Ash P + R,76399-00019-1,0,4380_7778208_2130202,4380_512 -4380_77983,296,4380_36702,Black Ash P + R,76397-00021-1,0,4380_7778208_2130202,4380_512 -4380_77983,285,4380_36709,Black Ash P + R,76842-00009-1,0,4380_7778208_2130203,4380_512 -4380_77948,297,4380_3671,Ratoath,1756-00008-1,0,4380_7778208_1030107,4380_40 -4380_77983,286,4380_36710,Black Ash P + R,76840-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36711,Black Ash P + R,76832-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36712,Black Ash P + R,76838-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36713,Black Ash P + R,76836-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36714,Black Ash P + R,76834-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36715,Black Ash P + R,76841-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36716,Black Ash P + R,76833-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36717,Black Ash P + R,76843-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36718,Black Ash P + R,76839-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36719,Black Ash P + R,76835-00019-1,0,4380_7778208_2130203,4380_512 -4380_77948,288,4380_3672,Ratoath,1933-00011-1,0,4380_7778208_1030110,4380_39 -4380_77983,296,4380_36720,Black Ash P + R,76837-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_36727,Black Ash P + R,75958-00009-1,0,4380_7778208_2130201,4380_512 -4380_77983,286,4380_36728,Black Ash P + R,75964-00010-1,0,4380_7778208_2130201,4380_512 -4380_77983,288,4380_36729,Black Ash P + R,75960-00011-1,0,4380_7778208_2130201,4380_512 -4380_77948,287,4380_3673,Ratoath,1943-00012-1,0,4380_7778208_1030110,4380_39 -4380_77983,287,4380_36730,Black Ash P + R,75956-00012-1,0,4380_7778208_2130201,4380_512 -4380_77983,291,4380_36731,Black Ash P + R,75962-00013-1,0,4380_7778208_2130201,4380_512 -4380_77983,289,4380_36732,Black Ash P + R,75966-00014-1,0,4380_7778208_2130201,4380_512 -4380_77983,292,4380_36733,Black Ash P + R,75965-00016-1,0,4380_7778208_2130201,4380_512 -4380_77983,293,4380_36734,Black Ash P + R,75961-00017-1,0,4380_7778208_2130201,4380_512 -4380_77983,290,4380_36735,Black Ash P + R,75959-00015-1,0,4380_7778208_2130201,4380_512 -4380_77983,294,4380_36736,Black Ash P + R,75957-00018-1,0,4380_7778208_2130201,4380_512 -4380_77983,295,4380_36737,Black Ash P + R,75967-00019-1,0,4380_7778208_2130201,4380_512 -4380_77983,296,4380_36738,Black Ash P + R,75963-00021-1,0,4380_7778208_2130201,4380_512 -4380_77948,289,4380_3674,Ratoath,1903-00014-1,0,4380_7778208_1030110,4380_39 -4380_77983,285,4380_36745,Black Ash P + R,77346-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36746,Black Ash P + R,77344-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36747,Black Ash P + R,77342-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36748,Black Ash P + R,77340-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36749,Black Ash P + R,77338-00013-1,0,4380_7778208_2130204,4380_512 -4380_77948,290,4380_3675,Ratoath,52346-00015-1,0,4380_7778208_1030110,4380_39 -4380_77983,289,4380_36750,Black Ash P + R,77336-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36751,Black Ash P + R,77345-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36752,Black Ash P + R,77343-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36753,Black Ash P + R,77347-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36754,Black Ash P + R,77341-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36755,Black Ash P + R,77337-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36756,Black Ash P + R,77339-00021-1,0,4380_7778208_2130204,4380_512 -4380_77948,291,4380_3676,Ratoath,1326-00013-1,0,4380_7778208_1030102,4380_41 -4380_77983,285,4380_36763,Black Ash P + R,76860-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36764,Black Ash P + R,76858-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36765,Black Ash P + R,76866-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36766,Black Ash P + R,76862-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36767,Black Ash P + R,76864-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36768,Black Ash P + R,76856-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36769,Black Ash P + R,76859-00016-1,0,4380_7778208_2130203,4380_512 -4380_77948,292,4380_3677,Ratoath,52347-00016-1,0,4380_7778208_1030110,4380_39 -4380_77983,293,4380_36770,Black Ash P + R,76867-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36771,Black Ash P + R,76861-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36772,Black Ash P + R,76863-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36773,Black Ash P + R,76857-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36774,Black Ash P + R,76865-00021-1,0,4380_7778208_2130203,4380_512 -4380_77948,293,4380_3678,Ratoath,52349-00017-1,0,4380_7778208_1030110,4380_39 -4380_77983,285,4380_36781,Black Ash P + R,77360-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36782,Black Ash P + R,77362-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36783,Black Ash P + R,77368-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36784,Black Ash P + R,77370-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36785,Black Ash P + R,77364-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36786,Black Ash P + R,77366-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36787,Black Ash P + R,77363-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36788,Black Ash P + R,77369-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36789,Black Ash P + R,77361-00015-1,0,4380_7778208_2130204,4380_512 -4380_77948,294,4380_3679,Ratoath,52345-00018-1,0,4380_7778208_1030110,4380_39 -4380_77983,294,4380_36790,Black Ash P + R,77371-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36791,Black Ash P + R,77367-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36792,Black Ash P + R,77365-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36799,Black Ash P + R,76880-00009-1,0,4380_7778208_2130203,4380_512 -4380_77946,285,4380_368,Drogheda,50387-00009-1,1,4380_7778208_1000914,4380_6 -4380_77948,295,4380_3680,Ratoath,52348-00019-1,0,4380_7778208_1030110,4380_39 -4380_77983,286,4380_36800,Black Ash P + R,76886-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36801,Black Ash P + R,76882-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36802,Black Ash P + R,76888-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36803,Black Ash P + R,76884-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36804,Black Ash P + R,76890-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36805,Black Ash P + R,76887-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36806,Black Ash P + R,76883-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36807,Black Ash P + R,76881-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36808,Black Ash P + R,76889-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36809,Black Ash P + R,76891-00019-1,0,4380_7778208_2130203,4380_512 -4380_77948,296,4380_3681,Ratoath,51861-00021-1,0,4380_7778208_1030102,4380_41 -4380_77983,296,4380_36810,Black Ash P + R,76885-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_36817,Black Ash P + R,77390-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36818,Black Ash P + R,77392-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36819,Black Ash P + R,77386-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36820,Black Ash P + R,77394-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36821,Black Ash P + R,77384-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36822,Black Ash P + R,77388-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36823,Black Ash P + R,77393-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36824,Black Ash P + R,77387-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36825,Black Ash P + R,77391-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36826,Black Ash P + R,77395-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36827,Black Ash P + R,77389-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36828,Black Ash P + R,77385-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36835,Black Ash P + R,76906-00009-1,0,4380_7778208_2130203,4380_512 -4380_77983,286,4380_36836,Black Ash P + R,76914-00010-1,0,4380_7778208_2130203,4380_512 -4380_77983,288,4380_36837,Black Ash P + R,76908-00011-1,0,4380_7778208_2130203,4380_512 -4380_77983,287,4380_36838,Black Ash P + R,76904-00012-1,0,4380_7778208_2130203,4380_512 -4380_77983,291,4380_36839,Black Ash P + R,76910-00013-1,0,4380_7778208_2130203,4380_512 -4380_77983,289,4380_36840,Black Ash P + R,76912-00014-1,0,4380_7778208_2130203,4380_512 -4380_77983,292,4380_36841,Black Ash P + R,76915-00016-1,0,4380_7778208_2130203,4380_512 -4380_77983,293,4380_36842,Black Ash P + R,76909-00017-1,0,4380_7778208_2130203,4380_512 -4380_77983,290,4380_36843,Black Ash P + R,76907-00015-1,0,4380_7778208_2130203,4380_512 -4380_77983,294,4380_36844,Black Ash P + R,76905-00018-1,0,4380_7778208_2130203,4380_512 -4380_77983,295,4380_36845,Black Ash P + R,76913-00019-1,0,4380_7778208_2130203,4380_512 -4380_77983,296,4380_36846,Black Ash P + R,76911-00021-1,0,4380_7778208_2130203,4380_512 -4380_77983,285,4380_36853,Black Ash P + R,77410-00009-1,0,4380_7778208_2130204,4380_512 -4380_77983,286,4380_36854,Black Ash P + R,77412-00010-1,0,4380_7778208_2130204,4380_512 -4380_77983,288,4380_36855,Black Ash P + R,77416-00011-1,0,4380_7778208_2130204,4380_512 -4380_77983,287,4380_36856,Black Ash P + R,77414-00012-1,0,4380_7778208_2130204,4380_512 -4380_77983,291,4380_36857,Black Ash P + R,77418-00013-1,0,4380_7778208_2130204,4380_512 -4380_77983,289,4380_36858,Black Ash P + R,77408-00014-1,0,4380_7778208_2130204,4380_512 -4380_77983,292,4380_36859,Black Ash P + R,77413-00016-1,0,4380_7778208_2130204,4380_512 -4380_77983,293,4380_36860,Black Ash P + R,77417-00017-1,0,4380_7778208_2130204,4380_512 -4380_77983,290,4380_36861,Black Ash P + R,77411-00015-1,0,4380_7778208_2130204,4380_512 -4380_77983,294,4380_36862,Black Ash P + R,77415-00018-1,0,4380_7778208_2130204,4380_512 -4380_77983,295,4380_36863,Black Ash P + R,77409-00019-1,0,4380_7778208_2130204,4380_512 -4380_77983,296,4380_36864,Black Ash P + R,77419-00021-1,0,4380_7778208_2130204,4380_512 -4380_77983,285,4380_36871,St. Patrick Street,75774-00009-1,1,4380_7778208_2130201,4380_513 -4380_77983,286,4380_36872,St. Patrick Street,75772-00010-1,1,4380_7778208_2130201,4380_513 -4380_77983,288,4380_36873,St. Patrick Street,75764-00011-1,1,4380_7778208_2130201,4380_513 -4380_77983,287,4380_36874,St. Patrick Street,75770-00012-1,1,4380_7778208_2130201,4380_513 -4380_77983,291,4380_36875,St. Patrick Street,75768-00013-1,1,4380_7778208_2130201,4380_513 -4380_77983,289,4380_36876,St. Patrick Street,75766-00014-1,1,4380_7778208_2130201,4380_513 -4380_77983,292,4380_36877,St. Patrick Street,75773-00016-1,1,4380_7778208_2130201,4380_513 -4380_77983,293,4380_36878,St. Patrick Street,75765-00017-1,1,4380_7778208_2130201,4380_513 -4380_77983,290,4380_36879,St. Patrick Street,75775-00015-1,1,4380_7778208_2130201,4380_513 -4380_77948,285,4380_3688,Ratoath,1278-00009-1,0,4380_7778208_1030102,4380_39 -4380_77983,294,4380_36880,St. Patrick Street,75771-00018-1,1,4380_7778208_2130201,4380_513 -4380_77983,295,4380_36881,St. Patrick Street,75767-00019-1,1,4380_7778208_2130201,4380_513 -4380_77983,296,4380_36882,St. Patrick Street,75769-00021-1,1,4380_7778208_2130201,4380_513 -4380_77983,285,4380_36889,St. Patrick Street,75974-00009-1,1,4380_7778208_2130202,4380_513 -4380_77948,286,4380_3689,Ratoath,1288-00010-1,0,4380_7778208_1030102,4380_39 -4380_77983,286,4380_36890,St. Patrick Street,75972-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_36891,St. Patrick Street,75976-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_36892,St. Patrick Street,75968-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_36893,St. Patrick Street,75978-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_36894,St. Patrick Street,75970-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_36895,St. Patrick Street,75973-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_36896,St. Patrick Street,75977-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_36897,St. Patrick Street,75975-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_36898,St. Patrick Street,75969-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_36899,St. Patrick Street,75971-00019-1,1,4380_7778208_2130202,4380_513 -4380_77946,286,4380_369,Drogheda,50395-00010-1,1,4380_7778208_1000914,4380_6 -4380_77948,288,4380_3690,Ratoath,1298-00011-1,0,4380_7778208_1030102,4380_39 -4380_77983,296,4380_36900,St. Patrick Street,75979-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_36907,St. Patrick Street,76418-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_36908,St. Patrick Street,76412-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_36909,St. Patrick Street,76416-00011-1,1,4380_7778208_2130203,4380_513 -4380_77948,287,4380_3691,Ratoath,1308-00012-1,0,4380_7778208_1030102,4380_39 -4380_77983,287,4380_36910,St. Patrick Street,76422-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_36911,St. Patrick Street,76420-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_36912,St. Patrick Street,76414-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_36913,St. Patrick Street,76413-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_36914,St. Patrick Street,76417-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_36915,St. Patrick Street,76419-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_36916,St. Patrick Street,76423-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_36917,St. Patrick Street,76415-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_36918,St. Patrick Street,76421-00021-1,1,4380_7778208_2130203,4380_513 -4380_77948,289,4380_3692,Ratoath,1268-00014-1,0,4380_7778208_1030102,4380_39 -4380_77983,285,4380_36925,St. Patrick Street,76926-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_36926,St. Patrick Street,76922-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_36927,St. Patrick Street,76920-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_36928,St. Patrick Street,76924-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_36929,St. Patrick Street,76916-00013-1,1,4380_7778208_2130204,4380_513 -4380_77948,290,4380_3693,Ratoath,51862-00015-1,0,4380_7778208_1030102,4380_39 -4380_77983,289,4380_36930,St. Patrick Street,76918-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_36931,St. Patrick Street,76923-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_36932,St. Patrick Street,76921-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_36933,St. Patrick Street,76927-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_36934,St. Patrick Street,76925-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_36935,St. Patrick Street,76919-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_36936,St. Patrick Street,76917-00021-1,1,4380_7778208_2130204,4380_513 -4380_77948,291,4380_3694,Ratoath,1828-00013-1,0,4380_7778208_1030108,4380_40 -4380_77983,285,4380_36943,St. Patrick Street,75798-00009-1,1,4380_7778208_2130201,4380_513 -4380_77983,286,4380_36944,St. Patrick Street,75790-00010-1,1,4380_7778208_2130201,4380_513 -4380_77983,288,4380_36945,St. Patrick Street,75794-00011-1,1,4380_7778208_2130201,4380_513 -4380_77983,287,4380_36946,St. Patrick Street,75788-00012-1,1,4380_7778208_2130201,4380_513 -4380_77983,291,4380_36947,St. Patrick Street,75796-00013-1,1,4380_7778208_2130201,4380_513 -4380_77983,289,4380_36948,St. Patrick Street,75792-00014-1,1,4380_7778208_2130201,4380_513 -4380_77983,292,4380_36949,St. Patrick Street,75791-00016-1,1,4380_7778208_2130201,4380_513 -4380_77948,292,4380_3695,Ratoath,51866-00016-1,0,4380_7778208_1030102,4380_39 -4380_77983,293,4380_36950,St. Patrick Street,75795-00017-1,1,4380_7778208_2130201,4380_513 -4380_77983,290,4380_36951,St. Patrick Street,75799-00015-1,1,4380_7778208_2130201,4380_513 -4380_77983,294,4380_36952,St. Patrick Street,75789-00018-1,1,4380_7778208_2130201,4380_513 -4380_77983,295,4380_36953,St. Patrick Street,75793-00019-1,1,4380_7778208_2130201,4380_513 -4380_77983,296,4380_36954,St. Patrick Street,75797-00021-1,1,4380_7778208_2130201,4380_513 -4380_77948,293,4380_3696,Ratoath,51863-00017-1,0,4380_7778208_1030102,4380_39 -4380_77983,285,4380_36961,St. Patrick Street,76002-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_36962,St. Patrick Street,75998-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_36963,St. Patrick Street,75996-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_36964,St. Patrick Street,75994-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_36965,St. Patrick Street,75992-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_36966,St. Patrick Street,76000-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_36967,St. Patrick Street,75999-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_36968,St. Patrick Street,75997-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_36969,St. Patrick Street,76003-00015-1,1,4380_7778208_2130202,4380_513 -4380_77948,294,4380_3697,Ratoath,51865-00018-1,0,4380_7778208_1030102,4380_39 -4380_77983,294,4380_36970,St. Patrick Street,75995-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_36971,St. Patrick Street,76001-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_36972,St. Patrick Street,75993-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_36979,St. Patrick Street,76436-00009-1,1,4380_7778208_2130203,4380_513 -4380_77948,295,4380_3698,Ratoath,51864-00019-1,0,4380_7778208_1030102,4380_39 -4380_77983,286,4380_36980,St. Patrick Street,76438-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_36981,St. Patrick Street,76442-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_36982,St. Patrick Street,76444-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_36983,St. Patrick Street,76446-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_36984,St. Patrick Street,76440-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_36985,St. Patrick Street,76439-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_36986,St. Patrick Street,76443-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_36987,St. Patrick Street,76437-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_36988,St. Patrick Street,76445-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_36989,St. Patrick Street,76441-00019-1,1,4380_7778208_2130203,4380_513 -4380_77948,296,4380_3699,Ratoath,52228-00021-1,0,4380_7778208_1030108,4380_40 -4380_77983,296,4380_36990,St. Patrick Street,76447-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_36997,St. Patrick Street,76940-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_36998,St. Patrick Street,76942-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_36999,St. Patrick Street,76944-00011-1,1,4380_7778208_2130204,4380_513 -4380_77946,297,4380_370,Drogheda,50237-00008-1,1,4380_7778208_1000910,4380_8 -4380_77983,287,4380_37000,St. Patrick Street,76950-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37001,St. Patrick Street,76948-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37002,St. Patrick Street,76946-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37003,St. Patrick Street,76943-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37004,St. Patrick Street,76945-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37005,St. Patrick Street,76941-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37006,St. Patrick Street,76951-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37007,St. Patrick Street,76947-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37008,St. Patrick Street,76949-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37015,St. Patrick Street,75818-00009-1,1,4380_7778208_2130201,4380_513 -4380_77983,286,4380_37016,St. Patrick Street,75812-00010-1,1,4380_7778208_2130201,4380_513 -4380_77983,288,4380_37017,St. Patrick Street,75820-00011-1,1,4380_7778208_2130201,4380_513 -4380_77983,287,4380_37018,St. Patrick Street,75816-00012-1,1,4380_7778208_2130201,4380_513 -4380_77983,291,4380_37019,St. Patrick Street,75822-00013-1,1,4380_7778208_2130201,4380_513 -4380_77983,289,4380_37020,St. Patrick Street,75814-00014-1,1,4380_7778208_2130201,4380_513 -4380_77983,292,4380_37021,St. Patrick Street,75813-00016-1,1,4380_7778208_2130201,4380_513 -4380_77983,293,4380_37022,St. Patrick Street,75821-00017-1,1,4380_7778208_2130201,4380_513 -4380_77983,290,4380_37023,St. Patrick Street,75819-00015-1,1,4380_7778208_2130201,4380_513 -4380_77983,294,4380_37024,St. Patrick Street,75817-00018-1,1,4380_7778208_2130201,4380_513 -4380_77983,295,4380_37025,St. Patrick Street,75815-00019-1,1,4380_7778208_2130201,4380_513 -4380_77983,296,4380_37026,St. Patrick Street,75823-00021-1,1,4380_7778208_2130201,4380_513 -4380_77983,285,4380_37033,St. Patrick Street,76018-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37034,St. Patrick Street,76022-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37035,St. Patrick Street,76016-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37036,St. Patrick Street,76024-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37037,St. Patrick Street,76026-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37038,St. Patrick Street,76020-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37039,St. Patrick Street,76023-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37040,St. Patrick Street,76017-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37041,St. Patrick Street,76019-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37042,St. Patrick Street,76025-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37043,St. Patrick Street,76021-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37044,St. Patrick Street,76027-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37051,St. Patrick Street,76460-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37052,St. Patrick Street,76464-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37053,St. Patrick Street,76470-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37054,St. Patrick Street,76462-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37055,St. Patrick Street,76468-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37056,St. Patrick Street,76466-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37057,St. Patrick Street,76465-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37058,St. Patrick Street,76471-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37059,St. Patrick Street,76461-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37060,St. Patrick Street,76463-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37061,St. Patrick Street,76467-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37062,St. Patrick Street,76469-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_37069,St. Patrick Street,76972-00009-1,1,4380_7778208_2130204,4380_513 -4380_77948,297,4380_3707,Ratoath,1248-00008-1,0,4380_7778208_1030101,4380_39 -4380_77983,286,4380_37070,St. Patrick Street,76964-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37071,St. Patrick Street,76966-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37072,St. Patrick Street,76968-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37073,St. Patrick Street,76970-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37074,St. Patrick Street,76974-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37075,St. Patrick Street,76965-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37076,St. Patrick Street,76967-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37077,St. Patrick Street,76973-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37078,St. Patrick Street,76969-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37079,St. Patrick Street,76975-00019-1,1,4380_7778208_2130204,4380_513 -4380_77948,285,4380_3708,Ratoath,1468-00009-1,0,4380_7778208_1030104,4380_39 -4380_77983,296,4380_37080,St. Patrick Street,76971-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37087,St. Patrick Street,75840-00009-1,1,4380_7778208_2130201,4380_513 -4380_77983,286,4380_37088,St. Patrick Street,75846-00010-1,1,4380_7778208_2130201,4380_513 -4380_77983,288,4380_37089,St. Patrick Street,75842-00011-1,1,4380_7778208_2130201,4380_513 -4380_77948,286,4380_3709,Ratoath,1480-00010-1,0,4380_7778208_1030104,4380_39 -4380_77983,287,4380_37090,St. Patrick Street,75836-00012-1,1,4380_7778208_2130201,4380_513 -4380_77983,291,4380_37091,St. Patrick Street,75844-00013-1,1,4380_7778208_2130201,4380_513 -4380_77983,289,4380_37092,St. Patrick Street,75838-00014-1,1,4380_7778208_2130201,4380_513 -4380_77983,292,4380_37093,St. Patrick Street,75847-00016-1,1,4380_7778208_2130201,4380_513 -4380_77983,293,4380_37094,St. Patrick Street,75843-00017-1,1,4380_7778208_2130201,4380_513 -4380_77983,290,4380_37095,St. Patrick Street,75841-00015-1,1,4380_7778208_2130201,4380_513 -4380_77983,294,4380_37096,St. Patrick Street,75837-00018-1,1,4380_7778208_2130201,4380_513 -4380_77983,295,4380_37097,St. Patrick Street,75839-00019-1,1,4380_7778208_2130201,4380_513 -4380_77983,296,4380_37098,St. Patrick Street,75845-00021-1,1,4380_7778208_2130201,4380_513 -4380_77946,287,4380_371,Drogheda,50389-00012-1,1,4380_7778208_1000914,4380_6 -4380_77948,288,4380_3710,Ratoath,1492-00011-1,0,4380_7778208_1030104,4380_39 -4380_77983,291,4380_37100,St. Patrick Street,76040-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37101,St. Patrick Street,76041-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37107,St. Patrick Street,76044-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37108,St. Patrick Street,76050-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37109,St. Patrick Street,76046-00011-1,1,4380_7778208_2130202,4380_513 -4380_77948,287,4380_3711,Ratoath,1504-00012-1,0,4380_7778208_1030104,4380_39 -4380_77983,287,4380_37110,St. Patrick Street,76042-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37111,St. Patrick Street,76048-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37112,St. Patrick Street,76051-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37113,St. Patrick Street,76047-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37114,St. Patrick Street,76045-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37115,St. Patrick Street,76043-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37116,St. Patrick Street,76049-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37118,St. Patrick Street,76484-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37119,St. Patrick Street,76485-00021-1,1,4380_7778208_2130203,4380_513 -4380_77948,289,4380_3712,Ratoath,1456-00014-1,0,4380_7778208_1030104,4380_39 -4380_77983,285,4380_37125,St. Patrick Street,76488-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37126,St. Patrick Street,76494-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37127,St. Patrick Street,76490-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37128,St. Patrick Street,76486-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37129,St. Patrick Street,76492-00014-1,1,4380_7778208_2130203,4380_513 -4380_77948,290,4380_3713,Ratoath,51988-00015-1,0,4380_7778208_1030104,4380_39 -4380_77983,292,4380_37130,St. Patrick Street,76495-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37131,St. Patrick Street,76491-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37132,St. Patrick Street,76489-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37133,St. Patrick Street,76487-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37134,St. Patrick Street,76493-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37136,St. Patrick Street,76988-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37137,St. Patrick Street,76989-00021-1,1,4380_7778208_2130204,4380_513 -4380_77948,291,4380_3714,Ratoath,1526-00013-1,0,4380_7778208_1030104,4380_40 -4380_77983,285,4380_37143,St. Patrick Street,76998-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37144,St. Patrick Street,76994-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37145,St. Patrick Street,76996-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37146,St. Patrick Street,76992-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37147,St. Patrick Street,76990-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37148,St. Patrick Street,76995-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37149,St. Patrick Street,76997-00017-1,1,4380_7778208_2130204,4380_513 -4380_77948,292,4380_3715,Ratoath,51987-00016-1,0,4380_7778208_1030104,4380_39 -4380_77983,290,4380_37150,St. Patrick Street,76999-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37151,St. Patrick Street,76993-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37152,St. Patrick Street,76991-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37154,St. Patrick Street,76064-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37155,St. Patrick Street,76065-00021-1,1,4380_7778208_2130202,4380_513 -4380_77948,293,4380_3716,Ratoath,51986-00017-1,0,4380_7778208_1030104,4380_39 -4380_77983,285,4380_37161,St. Patrick Street,76068-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37162,St. Patrick Street,76074-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37163,St. Patrick Street,76072-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37164,St. Patrick Street,76070-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37165,St. Patrick Street,76066-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37166,St. Patrick Street,76075-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37167,St. Patrick Street,76073-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37168,St. Patrick Street,76069-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37169,St. Patrick Street,76071-00018-1,1,4380_7778208_2130202,4380_513 -4380_77948,294,4380_3717,Ratoath,51983-00018-1,0,4380_7778208_1030104,4380_39 -4380_77983,295,4380_37170,St. Patrick Street,76067-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37172,St. Patrick Street,76508-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37173,St. Patrick Street,76509-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_37179,St. Patrick Street,76516-00009-1,1,4380_7778208_2130203,4380_513 -4380_77948,295,4380_3718,Ratoath,51985-00019-1,0,4380_7778208_1030104,4380_39 -4380_77983,286,4380_37180,St. Patrick Street,76510-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37181,St. Patrick Street,76512-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37182,St. Patrick Street,76518-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37183,St. Patrick Street,76514-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37184,St. Patrick Street,76511-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37185,St. Patrick Street,76513-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37186,St. Patrick Street,76517-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37187,St. Patrick Street,76519-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37188,St. Patrick Street,76515-00019-1,1,4380_7778208_2130203,4380_513 -4380_77948,296,4380_3719,Ratoath,51984-00021-1,0,4380_7778208_1030104,4380_40 -4380_77983,291,4380_37190,St. Patrick Street,77012-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37191,St. Patrick Street,77013-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37197,St. Patrick Street,77014-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37198,St. Patrick Street,77016-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37199,St. Patrick Street,77018-00011-1,1,4380_7778208_2130204,4380_513 -4380_77946,288,4380_372,Drogheda,50391-00011-1,1,4380_7778208_1000914,4380_6 -4380_77983,287,4380_37200,St. Patrick Street,77020-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37201,St. Patrick Street,77022-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37202,St. Patrick Street,77017-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37203,St. Patrick Street,77019-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37204,St. Patrick Street,77015-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37205,St. Patrick Street,77021-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37206,St. Patrick Street,77023-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37208,St. Patrick Street,76088-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37209,St. Patrick Street,76089-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37215,St. Patrick Street,76098-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37216,St. Patrick Street,76090-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37217,St. Patrick Street,76094-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37218,St. Patrick Street,76096-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37219,St. Patrick Street,76092-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37220,St. Patrick Street,76091-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37221,St. Patrick Street,76095-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37222,St. Patrick Street,76099-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37223,St. Patrick Street,76097-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37224,St. Patrick Street,76093-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37226,St. Patrick Street,76532-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37227,St. Patrick Street,76533-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_37233,St. Patrick Street,76536-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37234,St. Patrick Street,76542-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37235,St. Patrick Street,76534-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37236,St. Patrick Street,76538-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37237,St. Patrick Street,76540-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37238,St. Patrick Street,76543-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37239,St. Patrick Street,76535-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37240,St. Patrick Street,76537-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37241,St. Patrick Street,76539-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37242,St. Patrick Street,76541-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37244,St. Patrick Street,77036-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37245,St. Patrick Street,77037-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37251,St. Patrick Street,77042-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37252,St. Patrick Street,77044-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37253,St. Patrick Street,77038-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37254,St. Patrick Street,77040-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37255,St. Patrick Street,77046-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37256,St. Patrick Street,77045-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37257,St. Patrick Street,77039-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37258,St. Patrick Street,77043-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37259,St. Patrick Street,77041-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37260,St. Patrick Street,77047-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37262,St. Patrick Street,76112-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37263,St. Patrick Street,76113-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37269,St. Patrick Street,76114-00009-1,1,4380_7778208_2130202,4380_513 -4380_77948,285,4380_3727,Ratoath,1370-00009-1,0,4380_7778208_1030103,4380_39 -4380_77983,286,4380_37270,St. Patrick Street,76120-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37271,St. Patrick Street,76118-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37272,St. Patrick Street,76116-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37273,St. Patrick Street,76122-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37274,St. Patrick Street,76121-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37275,St. Patrick Street,76119-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37276,St. Patrick Street,76115-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37277,St. Patrick Street,76117-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37278,St. Patrick Street,76123-00019-1,1,4380_7778208_2130202,4380_513 -4380_77948,286,4380_3728,Ratoath,1380-00010-1,0,4380_7778208_1030103,4380_39 -4380_77983,291,4380_37280,St. Patrick Street,76556-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37281,St. Patrick Street,76557-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_37287,St. Patrick Street,76562-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37288,St. Patrick Street,76560-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37289,St. Patrick Street,76564-00011-1,1,4380_7778208_2130203,4380_513 -4380_77948,297,4380_3729,Ratoath,1596-00008-1,0,4380_7778208_1030105,4380_40 -4380_77983,287,4380_37290,St. Patrick Street,76558-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37291,St. Patrick Street,76566-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37292,St. Patrick Street,76561-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37293,St. Patrick Street,76565-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37294,St. Patrick Street,76563-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37295,St. Patrick Street,76559-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37296,St. Patrick Street,76567-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37298,St. Patrick Street,77060-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37299,St. Patrick Street,77061-00021-1,1,4380_7778208_2130204,4380_513 -4380_77946,289,4380_373,Drogheda,50393-00014-1,1,4380_7778208_1000914,4380_6 -4380_77948,288,4380_3730,Ratoath,1390-00011-1,0,4380_7778208_1030103,4380_39 -4380_77983,285,4380_37305,St. Patrick Street,77064-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37306,St. Patrick Street,77066-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37307,St. Patrick Street,77068-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37308,St. Patrick Street,77062-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37309,St. Patrick Street,77070-00014-1,1,4380_7778208_2130204,4380_513 -4380_77948,287,4380_3731,Ratoath,1400-00012-1,0,4380_7778208_1030103,4380_39 -4380_77983,292,4380_37310,St. Patrick Street,77067-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37311,St. Patrick Street,77069-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37312,St. Patrick Street,77065-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37313,St. Patrick Street,77063-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37314,St. Patrick Street,77071-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37316,St. Patrick Street,76136-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37317,St. Patrick Street,76137-00021-1,1,4380_7778208_2130202,4380_513 -4380_77948,289,4380_3732,Ratoath,1360-00014-1,0,4380_7778208_1030103,4380_39 -4380_77983,285,4380_37323,St. Patrick Street,76142-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37324,St. Patrick Street,76140-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37325,St. Patrick Street,76144-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37326,St. Patrick Street,76138-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37327,St. Patrick Street,76146-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37328,St. Patrick Street,76141-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37329,St. Patrick Street,76145-00017-1,1,4380_7778208_2130202,4380_513 -4380_77948,290,4380_3733,Ratoath,51927-00015-1,0,4380_7778208_1030103,4380_39 -4380_77983,290,4380_37330,St. Patrick Street,76143-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37331,St. Patrick Street,76139-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37332,St. Patrick Street,76147-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37334,St. Patrick Street,76580-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37335,St. Patrick Street,76581-00021-1,1,4380_7778208_2130203,4380_513 -4380_77948,291,4380_3734,Ratoath,1951-00013-1,0,4380_7778208_1030110,4380_41 -4380_77983,285,4380_37341,St. Patrick Street,76586-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37342,St. Patrick Street,76588-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37343,St. Patrick Street,76582-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37344,St. Patrick Street,76584-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37345,St. Patrick Street,76590-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37346,St. Patrick Street,76589-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37347,St. Patrick Street,76583-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37348,St. Patrick Street,76587-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37349,St. Patrick Street,76585-00018-1,1,4380_7778208_2130203,4380_513 -4380_77948,292,4380_3735,Ratoath,51924-00016-1,0,4380_7778208_1030103,4380_39 -4380_77983,295,4380_37350,St. Patrick Street,76591-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37352,St. Patrick Street,77084-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37353,St. Patrick Street,77085-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37359,St. Patrick Street,77088-00009-1,1,4380_7778208_2130204,4380_513 -4380_77948,293,4380_3736,Ratoath,51923-00017-1,0,4380_7778208_1030103,4380_39 -4380_77983,286,4380_37360,St. Patrick Street,77086-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37361,St. Patrick Street,77094-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37362,St. Patrick Street,77092-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37363,St. Patrick Street,77090-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37364,St. Patrick Street,77087-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37365,St. Patrick Street,77095-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37366,St. Patrick Street,77089-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37367,St. Patrick Street,77093-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37368,St. Patrick Street,77091-00019-1,1,4380_7778208_2130204,4380_513 -4380_77948,294,4380_3737,Ratoath,51925-00018-1,0,4380_7778208_1030103,4380_39 -4380_77983,291,4380_37370,St. Patrick Street,76160-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37371,St. Patrick Street,76161-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37377,St. Patrick Street,76170-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37378,St. Patrick Street,76168-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37379,St. Patrick Street,76162-00011-1,1,4380_7778208_2130202,4380_513 -4380_77948,295,4380_3738,Ratoath,51926-00019-1,0,4380_7778208_1030103,4380_39 -4380_77983,287,4380_37380,St. Patrick Street,76164-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37381,St. Patrick Street,76166-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37382,St. Patrick Street,76169-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37383,St. Patrick Street,76163-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37384,St. Patrick Street,76171-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37385,St. Patrick Street,76165-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37386,St. Patrick Street,76167-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37388,St. Patrick Street,76604-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37389,St. Patrick Street,76605-00021-1,1,4380_7778208_2130203,4380_513 -4380_77948,296,4380_3739,Ratoath,52350-00021-1,0,4380_7778208_1030110,4380_41 -4380_77983,285,4380_37395,St. Patrick Street,76612-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37396,St. Patrick Street,76606-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37397,St. Patrick Street,76614-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37398,St. Patrick Street,76608-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37399,St. Patrick Street,76610-00014-1,1,4380_7778208_2130203,4380_513 -4380_77946,290,4380_374,Drogheda,50388-00015-1,1,4380_7778208_1000914,4380_6 -4380_77983,292,4380_37400,St. Patrick Street,76607-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37401,St. Patrick Street,76615-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37402,St. Patrick Street,76613-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37403,St. Patrick Street,76609-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37404,St. Patrick Street,76611-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37406,St. Patrick Street,77108-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37407,St. Patrick Street,77109-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37413,St. Patrick Street,77118-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37414,St. Patrick Street,77116-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37415,St. Patrick Street,77114-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37416,St. Patrick Street,77112-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37417,St. Patrick Street,77110-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37418,St. Patrick Street,77117-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37419,St. Patrick Street,77115-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37420,St. Patrick Street,77119-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37421,St. Patrick Street,77113-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37422,St. Patrick Street,77111-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37424,St. Patrick Street,76184-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37425,St. Patrick Street,76185-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37431,St. Patrick Street,76190-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37432,St. Patrick Street,76192-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37433,St. Patrick Street,76188-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37434,St. Patrick Street,76186-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37435,St. Patrick Street,76194-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37436,St. Patrick Street,76193-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37437,St. Patrick Street,76189-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37438,St. Patrick Street,76191-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37439,St. Patrick Street,76187-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37440,St. Patrick Street,76195-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37442,St. Patrick Street,76628-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37443,St. Patrick Street,76629-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_37449,St. Patrick Street,76636-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37450,St. Patrick Street,76634-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37451,St. Patrick Street,76632-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37452,St. Patrick Street,76638-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37453,St. Patrick Street,76630-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37454,St. Patrick Street,76635-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37455,St. Patrick Street,76633-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37456,St. Patrick Street,76637-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37457,St. Patrick Street,76639-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37458,St. Patrick Street,76631-00019-1,1,4380_7778208_2130203,4380_513 -4380_77948,285,4380_3746,Ratoath,1702-00009-1,0,4380_7778208_1030107,4380_39 -4380_77983,291,4380_37460,St. Patrick Street,77132-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37461,St. Patrick Street,77133-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37467,St. Patrick Street,77142-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37468,St. Patrick Street,77134-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37469,St. Patrick Street,77140-00011-1,1,4380_7778208_2130204,4380_513 -4380_77948,286,4380_3747,Ratoath,1714-00010-1,0,4380_7778208_1030107,4380_39 -4380_77983,287,4380_37470,St. Patrick Street,77136-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37471,St. Patrick Street,77138-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37472,St. Patrick Street,77135-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37473,St. Patrick Street,77141-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37474,St. Patrick Street,77143-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37475,St. Patrick Street,77137-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37476,St. Patrick Street,77139-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37478,St. Patrick Street,76208-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37479,St. Patrick Street,76209-00021-1,1,4380_7778208_2130202,4380_513 -4380_77948,288,4380_3748,Ratoath,1726-00011-1,0,4380_7778208_1030107,4380_39 -4380_77983,285,4380_37485,St. Patrick Street,76214-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37486,St. Patrick Street,76218-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37487,St. Patrick Street,76210-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37488,St. Patrick Street,76216-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37489,St. Patrick Street,76212-00014-1,1,4380_7778208_2130202,4380_513 -4380_77948,287,4380_3749,Ratoath,1738-00012-1,0,4380_7778208_1030107,4380_39 -4380_77983,292,4380_37490,St. Patrick Street,76219-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37491,St. Patrick Street,76211-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37492,St. Patrick Street,76215-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37493,St. Patrick Street,76217-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37494,St. Patrick Street,76213-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37496,St. Patrick Street,76652-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37497,St. Patrick Street,76653-00021-1,1,4380_7778208_2130203,4380_513 -4380_77946,291,4380_375,Drogheda,50257-00013-1,1,4380_7778208_1000911,4380_9 -4380_77948,289,4380_3750,Ratoath,1690-00014-1,0,4380_7778208_1030107,4380_39 -4380_77983,285,4380_37503,St. Patrick Street,76654-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37504,St. Patrick Street,76662-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37505,St. Patrick Street,76656-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37506,St. Patrick Street,76660-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37507,St. Patrick Street,76658-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37508,St. Patrick Street,76663-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37509,St. Patrick Street,76657-00017-1,1,4380_7778208_2130203,4380_513 -4380_77948,290,4380_3751,Ratoath,52172-00015-1,0,4380_7778208_1030107,4380_39 -4380_77983,290,4380_37510,St. Patrick Street,76655-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37511,St. Patrick Street,76661-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37512,St. Patrick Street,76659-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37514,St. Patrick Street,77156-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37515,St. Patrick Street,77157-00021-1,1,4380_7778208_2130204,4380_513 -4380_77948,291,4380_3752,Ratoath,1884-00013-1,0,4380_7778208_1030109,4380_40 -4380_77983,285,4380_37521,St. Patrick Street,77164-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37522,St. Patrick Street,77162-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37523,St. Patrick Street,77158-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37524,St. Patrick Street,77160-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37525,St. Patrick Street,77166-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37526,St. Patrick Street,77163-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37527,St. Patrick Street,77159-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37528,St. Patrick Street,77165-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37529,St. Patrick Street,77161-00018-1,1,4380_7778208_2130204,4380_513 -4380_77948,292,4380_3753,Ratoath,52170-00016-1,0,4380_7778208_1030107,4380_39 -4380_77983,295,4380_37530,St. Patrick Street,77167-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37532,St. Patrick Street,76232-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37533,St. Patrick Street,76233-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37539,St. Patrick Street,76240-00009-1,1,4380_7778208_2130202,4380_513 -4380_77948,293,4380_3754,Ratoath,52171-00017-1,0,4380_7778208_1030107,4380_39 -4380_77983,286,4380_37540,St. Patrick Street,76242-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37541,St. Patrick Street,76234-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37542,St. Patrick Street,76238-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37543,St. Patrick Street,76236-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37544,St. Patrick Street,76243-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37545,St. Patrick Street,76235-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37546,St. Patrick Street,76241-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37547,St. Patrick Street,76239-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37548,St. Patrick Street,76237-00019-1,1,4380_7778208_2130202,4380_513 -4380_77948,294,4380_3755,Ratoath,52169-00018-1,0,4380_7778208_1030107,4380_39 -4380_77983,291,4380_37550,St. Patrick Street,76676-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37551,St. Patrick Street,76677-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_37557,St. Patrick Street,76682-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37558,St. Patrick Street,76684-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37559,St. Patrick Street,76686-00011-1,1,4380_7778208_2130203,4380_513 -4380_77948,295,4380_3756,Ratoath,52173-00019-1,0,4380_7778208_1030107,4380_39 -4380_77983,287,4380_37560,St. Patrick Street,76680-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37561,St. Patrick Street,76678-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37562,St. Patrick Street,76685-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37563,St. Patrick Street,76687-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37564,St. Patrick Street,76683-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37565,St. Patrick Street,76681-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37566,St. Patrick Street,76679-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37568,St. Patrick Street,77180-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37569,St. Patrick Street,77181-00021-1,1,4380_7778208_2130204,4380_513 -4380_77948,296,4380_3757,Ratoath,52289-00021-1,0,4380_7778208_1030109,4380_40 -4380_77983,285,4380_37575,St. Patrick Street,77190-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37576,St. Patrick Street,77184-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37577,St. Patrick Street,77182-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37578,St. Patrick Street,77188-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37579,St. Patrick Street,77186-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37580,St. Patrick Street,77185-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37581,St. Patrick Street,77183-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37582,St. Patrick Street,77191-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37583,St. Patrick Street,77189-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37584,St. Patrick Street,77187-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37586,St. Patrick Street,76256-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37587,St. Patrick Street,76257-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37593,St. Patrick Street,76266-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37594,St. Patrick Street,76262-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37595,St. Patrick Street,76260-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37596,St. Patrick Street,76264-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37597,St. Patrick Street,76258-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37598,St. Patrick Street,76263-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37599,St. Patrick Street,76261-00017-1,1,4380_7778208_2130202,4380_513 -4380_77946,292,4380_376,Drogheda,50396-00016-1,1,4380_7778208_1000914,4380_6 -4380_77983,290,4380_37600,St. Patrick Street,76267-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37601,St. Patrick Street,76265-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37602,St. Patrick Street,76259-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37604,St. Patrick Street,76700-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37605,St. Patrick Street,76701-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_37611,St. Patrick Street,76706-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37612,St. Patrick Street,76702-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37613,St. Patrick Street,76710-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37614,St. Patrick Street,76704-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37615,St. Patrick Street,76708-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37616,St. Patrick Street,76703-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37617,St. Patrick Street,76711-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37618,St. Patrick Street,76707-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37619,St. Patrick Street,76705-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37620,St. Patrick Street,76709-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37622,St. Patrick Street,77204-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37623,St. Patrick Street,77205-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37629,St. Patrick Street,77208-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37630,St. Patrick Street,77212-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37631,St. Patrick Street,77214-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37632,St. Patrick Street,77210-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37633,St. Patrick Street,77206-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37634,St. Patrick Street,77213-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37635,St. Patrick Street,77215-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37636,St. Patrick Street,77209-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37637,St. Patrick Street,77211-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37638,St. Patrick Street,77207-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37640,St. Patrick Street,76280-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37641,St. Patrick Street,76281-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37647,St. Patrick Street,76282-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37648,St. Patrick Street,76284-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37649,St. Patrick Street,76288-00011-1,1,4380_7778208_2130202,4380_513 -4380_77948,297,4380_3765,Ratoath,1336-00008-1,0,4380_7778208_1030102,4380_39 -4380_77983,287,4380_37650,St. Patrick Street,76290-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37651,St. Patrick Street,76286-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37652,St. Patrick Street,76285-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37653,St. Patrick Street,76289-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37654,St. Patrick Street,76283-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37655,St. Patrick Street,76291-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37656,St. Patrick Street,76287-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37658,St. Patrick Street,76724-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37659,St. Patrick Street,76725-00021-1,1,4380_7778208_2130203,4380_513 -4380_77948,285,4380_3766,Ratoath,1846-00009-1,0,4380_7778208_1030109,4380_39 -4380_77983,285,4380_37665,St. Patrick Street,76728-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37666,St. Patrick Street,76732-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37667,St. Patrick Street,76734-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37668,St. Patrick Street,76726-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37669,St. Patrick Street,76730-00014-1,1,4380_7778208_2130203,4380_513 -4380_77948,286,4380_3767,Ratoath,1856-00010-1,0,4380_7778208_1030109,4380_39 -4380_77983,292,4380_37670,St. Patrick Street,76733-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37671,St. Patrick Street,76735-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37672,St. Patrick Street,76729-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37673,St. Patrick Street,76727-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37674,St. Patrick Street,76731-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37676,St. Patrick Street,77228-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37677,St. Patrick Street,77229-00021-1,1,4380_7778208_2130204,4380_513 -4380_77948,288,4380_3768,Ratoath,1866-00011-1,0,4380_7778208_1030109,4380_39 -4380_77983,285,4380_37683,St. Patrick Street,77234-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37684,St. Patrick Street,77230-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37685,St. Patrick Street,77236-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37686,St. Patrick Street,77232-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37687,St. Patrick Street,77238-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37688,St. Patrick Street,77231-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37689,St. Patrick Street,77237-00017-1,1,4380_7778208_2130204,4380_513 -4380_77948,287,4380_3769,Ratoath,1876-00012-1,0,4380_7778208_1030109,4380_39 -4380_77983,290,4380_37690,St. Patrick Street,77235-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37691,St. Patrick Street,77233-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37692,St. Patrick Street,77239-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37699,St. Patrick Street,76306-00009-1,1,4380_7778208_2130202,4380_513 -4380_77946,293,4380_377,Drogheda,50392-00017-1,1,4380_7778208_1000914,4380_6 -4380_77948,289,4380_3770,Ratoath,1836-00014-1,0,4380_7778208_1030109,4380_39 -4380_77983,286,4380_37700,St. Patrick Street,76312-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37701,St. Patrick Street,76304-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37702,St. Patrick Street,76314-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37703,St. Patrick Street,76310-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37704,St. Patrick Street,76308-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37705,St. Patrick Street,76313-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37706,St. Patrick Street,76305-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37707,St. Patrick Street,76307-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37708,St. Patrick Street,76315-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37709,St. Patrick Street,76309-00019-1,1,4380_7778208_2130202,4380_513 -4380_77948,290,4380_3771,Ratoath,52293-00015-1,0,4380_7778208_1030109,4380_39 -4380_77983,296,4380_37710,St. Patrick Street,76311-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37717,St. Patrick Street,76758-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37718,St. Patrick Street,76750-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37719,St. Patrick Street,76756-00011-1,1,4380_7778208_2130203,4380_513 -4380_77948,291,4380_3772,Ratoath,1670-00013-1,0,4380_7778208_1030106,4380_40 -4380_77983,287,4380_37720,St. Patrick Street,76754-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37721,St. Patrick Street,76748-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37722,St. Patrick Street,76752-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37723,St. Patrick Street,76751-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37724,St. Patrick Street,76757-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37725,St. Patrick Street,76759-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37726,St. Patrick Street,76755-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37727,St. Patrick Street,76753-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37728,St. Patrick Street,76749-00021-1,1,4380_7778208_2130203,4380_513 -4380_77948,292,4380_3773,Ratoath,52292-00016-1,0,4380_7778208_1030109,4380_39 -4380_77983,285,4380_37735,St. Patrick Street,75876-00009-1,1,4380_7778208_2130201,4380_513 -4380_77983,286,4380_37736,St. Patrick Street,75880-00010-1,1,4380_7778208_2130201,4380_513 -4380_77983,288,4380_37737,St. Patrick Street,75882-00011-1,1,4380_7778208_2130201,4380_513 -4380_77983,287,4380_37738,St. Patrick Street,75872-00012-1,1,4380_7778208_2130201,4380_513 -4380_77983,291,4380_37739,St. Patrick Street,75878-00013-1,1,4380_7778208_2130201,4380_513 -4380_77948,293,4380_3774,Ratoath,52290-00017-1,0,4380_7778208_1030109,4380_39 -4380_77983,289,4380_37740,St. Patrick Street,75874-00014-1,1,4380_7778208_2130201,4380_513 -4380_77983,292,4380_37741,St. Patrick Street,75881-00016-1,1,4380_7778208_2130201,4380_513 -4380_77983,293,4380_37742,St. Patrick Street,75883-00017-1,1,4380_7778208_2130201,4380_513 -4380_77983,290,4380_37743,St. Patrick Street,75877-00015-1,1,4380_7778208_2130201,4380_513 -4380_77983,294,4380_37744,St. Patrick Street,75873-00018-1,1,4380_7778208_2130201,4380_513 -4380_77983,295,4380_37745,St. Patrick Street,75875-00019-1,1,4380_7778208_2130201,4380_513 -4380_77983,296,4380_37746,St. Patrick Street,75879-00021-1,1,4380_7778208_2130201,4380_513 -4380_77948,294,4380_3775,Ratoath,52294-00018-1,0,4380_7778208_1030109,4380_39 -4380_77983,285,4380_37753,St. Patrick Street,77256-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37754,St. Patrick Street,77252-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37755,St. Patrick Street,77258-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37756,St. Patrick Street,77262-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37757,St. Patrick Street,77254-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37758,St. Patrick Street,77260-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37759,St. Patrick Street,77253-00016-1,1,4380_7778208_2130204,4380_513 -4380_77948,295,4380_3776,Ratoath,52291-00019-1,0,4380_7778208_1030109,4380_39 -4380_77983,293,4380_37760,St. Patrick Street,77259-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37761,St. Patrick Street,77257-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37762,St. Patrick Street,77263-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37763,St. Patrick Street,77261-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37764,St. Patrick Street,77255-00021-1,1,4380_7778208_2130204,4380_513 -4380_77948,296,4380_3777,Ratoath,52099-00021-1,0,4380_7778208_1030106,4380_40 -4380_77983,285,4380_37771,St. Patrick Street,76334-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37772,St. Patrick Street,76330-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37773,St. Patrick Street,76336-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37774,St. Patrick Street,76332-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37775,St. Patrick Street,76338-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37776,St. Patrick Street,76328-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37777,St. Patrick Street,76331-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37778,St. Patrick Street,76337-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37779,St. Patrick Street,76335-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37780,St. Patrick Street,76333-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37781,St. Patrick Street,76329-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37782,St. Patrick Street,76339-00021-1,1,4380_7778208_2130202,4380_513 -4380_77983,285,4380_37789,St. Patrick Street,76772-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37790,St. Patrick Street,76780-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37791,St. Patrick Street,76776-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37792,St. Patrick Street,76782-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37793,St. Patrick Street,76778-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37794,St. Patrick Street,76774-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37795,St. Patrick Street,76781-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37796,St. Patrick Street,76777-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37797,St. Patrick Street,76773-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37798,St. Patrick Street,76783-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37799,St. Patrick Street,76775-00019-1,1,4380_7778208_2130203,4380_513 -4380_77946,294,4380_378,Drogheda,50390-00018-1,1,4380_7778208_1000914,4380_6 -4380_77983,296,4380_37800,St. Patrick Street,76779-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_37807,St. Patrick Street,75898-00009-1,1,4380_7778208_2130201,4380_513 -4380_77983,286,4380_37808,St. Patrick Street,75896-00010-1,1,4380_7778208_2130201,4380_513 -4380_77983,288,4380_37809,St. Patrick Street,75902-00011-1,1,4380_7778208_2130201,4380_513 -4380_77983,287,4380_37810,St. Patrick Street,75900-00012-1,1,4380_7778208_2130201,4380_513 -4380_77983,291,4380_37811,St. Patrick Street,75904-00013-1,1,4380_7778208_2130201,4380_513 -4380_77983,289,4380_37812,St. Patrick Street,75906-00014-1,1,4380_7778208_2130201,4380_513 -4380_77983,292,4380_37813,St. Patrick Street,75897-00016-1,1,4380_7778208_2130201,4380_513 -4380_77983,293,4380_37814,St. Patrick Street,75903-00017-1,1,4380_7778208_2130201,4380_513 -4380_77983,290,4380_37815,St. Patrick Street,75899-00015-1,1,4380_7778208_2130201,4380_513 -4380_77983,294,4380_37816,St. Patrick Street,75901-00018-1,1,4380_7778208_2130201,4380_513 -4380_77983,295,4380_37817,St. Patrick Street,75907-00019-1,1,4380_7778208_2130201,4380_513 -4380_77983,296,4380_37818,St. Patrick Street,75905-00021-1,1,4380_7778208_2130201,4380_513 -4380_77983,285,4380_37825,St. Patrick Street,77282-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37826,St. Patrick Street,77284-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37827,St. Patrick Street,77286-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37828,St. Patrick Street,77280-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37829,St. Patrick Street,77278-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37830,St. Patrick Street,77276-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37831,St. Patrick Street,77285-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37832,St. Patrick Street,77287-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37833,St. Patrick Street,77283-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37834,St. Patrick Street,77281-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37835,St. Patrick Street,77277-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37836,St. Patrick Street,77279-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37843,St. Patrick Street,76352-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37844,St. Patrick Street,76362-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37845,St. Patrick Street,76354-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37846,St. Patrick Street,76356-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37847,St. Patrick Street,76360-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37848,St. Patrick Street,76358-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37849,St. Patrick Street,76363-00016-1,1,4380_7778208_2130202,4380_513 -4380_77948,285,4380_3785,Ratoath,1618-00009-1,0,4380_7778208_1030106,4380_39 -4380_77983,293,4380_37850,St. Patrick Street,76355-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37851,St. Patrick Street,76353-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37852,St. Patrick Street,76357-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37853,St. Patrick Street,76359-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37854,St. Patrick Street,76361-00021-1,1,4380_7778208_2130202,4380_513 -4380_77948,286,4380_3786,Ratoath,1630-00010-1,0,4380_7778208_1030106,4380_39 -4380_77983,285,4380_37861,St. Patrick Street,76804-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37862,St. Patrick Street,76802-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37863,St. Patrick Street,76800-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37864,St. Patrick Street,76796-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37865,St. Patrick Street,76806-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37866,St. Patrick Street,76798-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37867,St. Patrick Street,76803-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_37868,St. Patrick Street,76801-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37869,St. Patrick Street,76805-00015-1,1,4380_7778208_2130203,4380_513 -4380_77948,297,4380_3787,Ratoath,1432-00008-1,0,4380_7778208_1030103,4380_40 -4380_77983,294,4380_37870,St. Patrick Street,76797-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37871,St. Patrick Street,76799-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37872,St. Patrick Street,76807-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_37879,St. Patrick Street,75924-00009-1,1,4380_7778208_2130201,4380_513 -4380_77948,288,4380_3788,Ratoath,1642-00011-1,0,4380_7778208_1030106,4380_39 -4380_77983,286,4380_37880,St. Patrick Street,75926-00010-1,1,4380_7778208_2130201,4380_513 -4380_77983,288,4380_37881,St. Patrick Street,75922-00011-1,1,4380_7778208_2130201,4380_513 -4380_77983,287,4380_37882,St. Patrick Street,75928-00012-1,1,4380_7778208_2130201,4380_513 -4380_77983,291,4380_37883,St. Patrick Street,75920-00013-1,1,4380_7778208_2130201,4380_513 -4380_77983,289,4380_37884,St. Patrick Street,75930-00014-1,1,4380_7778208_2130201,4380_513 -4380_77983,292,4380_37885,St. Patrick Street,75927-00016-1,1,4380_7778208_2130201,4380_513 -4380_77983,293,4380_37886,St. Patrick Street,75923-00017-1,1,4380_7778208_2130201,4380_513 -4380_77983,290,4380_37887,St. Patrick Street,75925-00015-1,1,4380_7778208_2130201,4380_513 -4380_77983,294,4380_37888,St. Patrick Street,75929-00018-1,1,4380_7778208_2130201,4380_513 -4380_77983,295,4380_37889,St. Patrick Street,75931-00019-1,1,4380_7778208_2130201,4380_513 -4380_77948,287,4380_3789,Ratoath,1654-00012-1,0,4380_7778208_1030106,4380_39 -4380_77983,296,4380_37890,St. Patrick Street,75921-00021-1,1,4380_7778208_2130201,4380_513 -4380_77983,285,4380_37897,St. Patrick Street,77310-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_37898,St. Patrick Street,77306-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37899,St. Patrick Street,77300-00011-1,1,4380_7778208_2130204,4380_513 -4380_77946,295,4380_379,Drogheda,50394-00019-1,1,4380_7778208_1000914,4380_6 -4380_77948,289,4380_3790,Ratoath,1606-00014-1,0,4380_7778208_1030106,4380_39 -4380_77983,287,4380_37900,St. Patrick Street,77302-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37901,St. Patrick Street,77308-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37902,St. Patrick Street,77304-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37903,St. Patrick Street,77307-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37904,St. Patrick Street,77301-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37905,St. Patrick Street,77311-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37906,St. Patrick Street,77303-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37907,St. Patrick Street,77305-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37908,St. Patrick Street,77309-00021-1,1,4380_7778208_2130204,4380_513 -4380_77948,290,4380_3791,Ratoath,52101-00015-1,0,4380_7778208_1030106,4380_39 -4380_77983,285,4380_37915,St. Patrick Street,76378-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37916,St. Patrick Street,76386-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37917,St. Patrick Street,76380-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37918,St. Patrick Street,76382-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37919,St. Patrick Street,76376-00013-1,1,4380_7778208_2130202,4380_513 -4380_77948,291,4380_3792,Ratoath,1228-00013-1,0,4380_7778208_1030101,4380_41 -4380_77983,289,4380_37920,St. Patrick Street,76384-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37921,St. Patrick Street,76387-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37922,St. Patrick Street,76381-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37923,St. Patrick Street,76379-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37924,St. Patrick Street,76383-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37925,St. Patrick Street,76385-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37926,St. Patrick Street,76377-00021-1,1,4380_7778208_2130202,4380_513 -4380_77948,292,4380_3793,Ratoath,52100-00016-1,0,4380_7778208_1030106,4380_39 -4380_77983,285,4380_37933,St. Patrick Street,76830-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_37934,St. Patrick Street,76826-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_37935,St. Patrick Street,76828-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_37936,St. Patrick Street,76824-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_37937,St. Patrick Street,76820-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_37938,St. Patrick Street,76822-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_37939,St. Patrick Street,76827-00016-1,1,4380_7778208_2130203,4380_513 -4380_77948,293,4380_3794,Ratoath,52103-00017-1,0,4380_7778208_1030106,4380_39 -4380_77983,293,4380_37940,St. Patrick Street,76829-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_37941,St. Patrick Street,76831-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_37942,St. Patrick Street,76825-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_37943,St. Patrick Street,76823-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_37944,St. Patrick Street,76821-00021-1,1,4380_7778208_2130203,4380_513 -4380_77948,294,4380_3795,Ratoath,52104-00018-1,0,4380_7778208_1030106,4380_39 -4380_77983,285,4380_37951,St. Patrick Street,75946-00009-1,1,4380_7778208_2130201,4380_513 -4380_77983,286,4380_37952,St. Patrick Street,75950-00010-1,1,4380_7778208_2130201,4380_513 -4380_77983,288,4380_37953,St. Patrick Street,75948-00011-1,1,4380_7778208_2130201,4380_513 -4380_77983,287,4380_37954,St. Patrick Street,75944-00012-1,1,4380_7778208_2130201,4380_513 -4380_77983,291,4380_37955,St. Patrick Street,75952-00013-1,1,4380_7778208_2130201,4380_513 -4380_77983,289,4380_37956,St. Patrick Street,75954-00014-1,1,4380_7778208_2130201,4380_513 -4380_77983,292,4380_37957,St. Patrick Street,75951-00016-1,1,4380_7778208_2130201,4380_513 -4380_77983,293,4380_37958,St. Patrick Street,75949-00017-1,1,4380_7778208_2130201,4380_513 -4380_77983,290,4380_37959,St. Patrick Street,75947-00015-1,1,4380_7778208_2130201,4380_513 -4380_77948,295,4380_3796,Ratoath,52102-00019-1,0,4380_7778208_1030106,4380_39 -4380_77983,294,4380_37960,St. Patrick Street,75945-00018-1,1,4380_7778208_2130201,4380_513 -4380_77983,295,4380_37961,St. Patrick Street,75955-00019-1,1,4380_7778208_2130201,4380_513 -4380_77983,296,4380_37962,St. Patrick Street,75953-00021-1,1,4380_7778208_2130201,4380_513 -4380_77983,285,4380_37969,St. Patrick Street,77328-00009-1,1,4380_7778208_2130204,4380_513 -4380_77948,296,4380_3797,Ratoath,51813-00021-1,0,4380_7778208_1030101,4380_41 -4380_77983,286,4380_37970,St. Patrick Street,77334-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_37971,St. Patrick Street,77324-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_37972,St. Patrick Street,77330-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_37973,St. Patrick Street,77326-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_37974,St. Patrick Street,77332-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_37975,St. Patrick Street,77335-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_37976,St. Patrick Street,77325-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_37977,St. Patrick Street,77329-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_37978,St. Patrick Street,77331-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_37979,St. Patrick Street,77333-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_37980,St. Patrick Street,77327-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_37987,St. Patrick Street,76406-00009-1,1,4380_7778208_2130202,4380_513 -4380_77983,286,4380_37988,St. Patrick Street,76404-00010-1,1,4380_7778208_2130202,4380_513 -4380_77983,288,4380_37989,St. Patrick Street,76400-00011-1,1,4380_7778208_2130202,4380_513 -4380_77983,287,4380_37990,St. Patrick Street,76408-00012-1,1,4380_7778208_2130202,4380_513 -4380_77983,291,4380_37991,St. Patrick Street,76410-00013-1,1,4380_7778208_2130202,4380_513 -4380_77983,289,4380_37992,St. Patrick Street,76402-00014-1,1,4380_7778208_2130202,4380_513 -4380_77983,292,4380_37993,St. Patrick Street,76405-00016-1,1,4380_7778208_2130202,4380_513 -4380_77983,293,4380_37994,St. Patrick Street,76401-00017-1,1,4380_7778208_2130202,4380_513 -4380_77983,290,4380_37995,St. Patrick Street,76407-00015-1,1,4380_7778208_2130202,4380_513 -4380_77983,294,4380_37996,St. Patrick Street,76409-00018-1,1,4380_7778208_2130202,4380_513 -4380_77983,295,4380_37997,St. Patrick Street,76403-00019-1,1,4380_7778208_2130202,4380_513 -4380_77983,296,4380_37998,St. Patrick Street,76411-00021-1,1,4380_7778208_2130202,4380_513 -4380_77946,296,4380_380,Drogheda,50258-00021-1,1,4380_7778208_1000911,4380_9 -4380_77983,285,4380_38005,St. Patrick Street,76844-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_38006,St. Patrick Street,76852-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_38007,St. Patrick Street,76848-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_38008,St. Patrick Street,76850-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_38009,St. Patrick Street,76846-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_38010,St. Patrick Street,76854-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_38011,St. Patrick Street,76853-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_38012,St. Patrick Street,76849-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_38013,St. Patrick Street,76845-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_38014,St. Patrick Street,76851-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_38015,St. Patrick Street,76855-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_38016,St. Patrick Street,76847-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_38023,St. Patrick Street,77358-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_38024,St. Patrick Street,77354-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_38025,St. Patrick Street,77352-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_38026,St. Patrick Street,77356-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_38027,St. Patrick Street,77350-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_38028,St. Patrick Street,77348-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_38029,St. Patrick Street,77355-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_38030,St. Patrick Street,77353-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_38031,St. Patrick Street,77359-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_38032,St. Patrick Street,77357-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_38033,St. Patrick Street,77349-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_38034,St. Patrick Street,77351-00021-1,1,4380_7778208_2130204,4380_513 -4380_77948,285,4380_3804,Ratoath,1778-00009-1,0,4380_7778208_1030108,4380_39 -4380_77983,285,4380_38041,St. Patrick Street,76874-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_38042,St. Patrick Street,76878-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_38043,St. Patrick Street,76876-00011-1,1,4380_7778208_2130203,4380_513 -4380_77983,287,4380_38044,St. Patrick Street,76868-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_38045,St. Patrick Street,76870-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_38046,St. Patrick Street,76872-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_38047,St. Patrick Street,76879-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_38048,St. Patrick Street,76877-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_38049,St. Patrick Street,76875-00015-1,1,4380_7778208_2130203,4380_513 -4380_77948,286,4380_3805,Ratoath,1790-00010-1,0,4380_7778208_1030108,4380_39 -4380_77983,294,4380_38050,St. Patrick Street,76869-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_38051,St. Patrick Street,76873-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_38052,St. Patrick Street,76871-00021-1,1,4380_7778208_2130203,4380_513 -4380_77983,285,4380_38059,St. Patrick Street,77374-00009-1,1,4380_7778208_2130204,4380_513 -4380_77948,288,4380_3806,Ratoath,1802-00011-1,0,4380_7778208_1030108,4380_39 -4380_77983,286,4380_38060,St. Patrick Street,77372-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_38061,St. Patrick Street,77380-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_38062,St. Patrick Street,77382-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_38063,St. Patrick Street,77376-00013-1,1,4380_7778208_2130204,4380_513 -4380_77983,289,4380_38064,St. Patrick Street,77378-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_38065,St. Patrick Street,77373-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_38066,St. Patrick Street,77381-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_38067,St. Patrick Street,77375-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_38068,St. Patrick Street,77383-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_38069,St. Patrick Street,77379-00019-1,1,4380_7778208_2130204,4380_513 -4380_77948,287,4380_3807,Ratoath,1814-00012-1,0,4380_7778208_1030108,4380_39 -4380_77983,296,4380_38070,St. Patrick Street,77377-00021-1,1,4380_7778208_2130204,4380_513 -4380_77983,285,4380_38077,St. Patrick Street,76902-00009-1,1,4380_7778208_2130203,4380_513 -4380_77983,286,4380_38078,St. Patrick Street,76900-00010-1,1,4380_7778208_2130203,4380_513 -4380_77983,288,4380_38079,St. Patrick Street,76894-00011-1,1,4380_7778208_2130203,4380_513 -4380_77948,289,4380_3808,Ratoath,1766-00014-1,0,4380_7778208_1030108,4380_39 -4380_77983,287,4380_38080,St. Patrick Street,76892-00012-1,1,4380_7778208_2130203,4380_513 -4380_77983,291,4380_38081,St. Patrick Street,76898-00013-1,1,4380_7778208_2130203,4380_513 -4380_77983,289,4380_38082,St. Patrick Street,76896-00014-1,1,4380_7778208_2130203,4380_513 -4380_77983,292,4380_38083,St. Patrick Street,76901-00016-1,1,4380_7778208_2130203,4380_513 -4380_77983,293,4380_38084,St. Patrick Street,76895-00017-1,1,4380_7778208_2130203,4380_513 -4380_77983,290,4380_38085,St. Patrick Street,76903-00015-1,1,4380_7778208_2130203,4380_513 -4380_77983,294,4380_38086,St. Patrick Street,76893-00018-1,1,4380_7778208_2130203,4380_513 -4380_77983,295,4380_38087,St. Patrick Street,76897-00019-1,1,4380_7778208_2130203,4380_513 -4380_77983,296,4380_38088,St. Patrick Street,76899-00021-1,1,4380_7778208_2130203,4380_513 -4380_77948,290,4380_3809,Ratoath,52238-00015-1,0,4380_7778208_1030108,4380_39 -4380_77983,285,4380_38095,St. Patrick Street,77396-00009-1,1,4380_7778208_2130204,4380_513 -4380_77983,286,4380_38096,St. Patrick Street,77406-00010-1,1,4380_7778208_2130204,4380_513 -4380_77983,288,4380_38097,St. Patrick Street,77402-00011-1,1,4380_7778208_2130204,4380_513 -4380_77983,287,4380_38098,St. Patrick Street,77404-00012-1,1,4380_7778208_2130204,4380_513 -4380_77983,291,4380_38099,St. Patrick Street,77400-00013-1,1,4380_7778208_2130204,4380_513 -4380_77948,291,4380_3810,Ratoath,1754-00013-1,0,4380_7778208_1030107,4380_40 -4380_77983,289,4380_38100,St. Patrick Street,77398-00014-1,1,4380_7778208_2130204,4380_513 -4380_77983,292,4380_38101,St. Patrick Street,77407-00016-1,1,4380_7778208_2130204,4380_513 -4380_77983,293,4380_38102,St. Patrick Street,77403-00017-1,1,4380_7778208_2130204,4380_513 -4380_77983,290,4380_38103,St. Patrick Street,77397-00015-1,1,4380_7778208_2130204,4380_513 -4380_77983,294,4380_38104,St. Patrick Street,77405-00018-1,1,4380_7778208_2130204,4380_513 -4380_77983,295,4380_38105,St. Patrick Street,77399-00019-1,1,4380_7778208_2130204,4380_513 -4380_77983,296,4380_38106,St. Patrick Street,77401-00021-1,1,4380_7778208_2130204,4380_513 -4380_77948,292,4380_3811,Ratoath,52239-00016-1,0,4380_7778208_1030108,4380_39 -4380_77984,285,4380_38112,CUH via Togher,77428-00009-1,0,4380_7778208_2140201,4380_514 -4380_77984,286,4380_38113,CUH via Togher,77422-00010-1,0,4380_7778208_2140201,4380_514 -4380_77984,288,4380_38114,CUH via Togher,77426-00011-1,0,4380_7778208_2140201,4380_514 -4380_77984,287,4380_38115,CUH via Togher,77424-00012-1,0,4380_7778208_2140201,4380_514 -4380_77984,289,4380_38116,CUH via Togher,77420-00014-1,0,4380_7778208_2140201,4380_514 -4380_77984,292,4380_38117,CUH via Togher,77423-00016-1,0,4380_7778208_2140201,4380_514 -4380_77984,293,4380_38118,CUH via Togher,77427-00017-1,0,4380_7778208_2140201,4380_514 -4380_77984,290,4380_38119,CUH via Togher,77429-00015-1,0,4380_7778208_2140201,4380_514 -4380_77948,293,4380_3812,Ratoath,52237-00017-1,0,4380_7778208_1030108,4380_39 -4380_77984,294,4380_38120,CUH via Togher,77425-00018-1,0,4380_7778208_2140201,4380_514 -4380_77984,295,4380_38121,CUH via Togher,77421-00019-1,0,4380_7778208_2140201,4380_514 -4380_77984,285,4380_38127,CUH via Togher,77596-00009-1,0,4380_7778208_2140202,4380_517 -4380_77984,286,4380_38128,CUH via Togher,77592-00010-1,0,4380_7778208_2140202,4380_517 -4380_77984,288,4380_38129,CUH via Togher,77598-00011-1,0,4380_7778208_2140202,4380_517 -4380_77948,294,4380_3813,Ratoath,52235-00018-1,0,4380_7778208_1030108,4380_39 -4380_77984,287,4380_38130,CUH via Togher,77594-00012-1,0,4380_7778208_2140202,4380_517 -4380_77984,289,4380_38131,CUH via Togher,77590-00014-1,0,4380_7778208_2140202,4380_517 -4380_77984,292,4380_38132,CUH via Togher,77593-00016-1,0,4380_7778208_2140202,4380_517 -4380_77984,293,4380_38133,CUH via Togher,77599-00017-1,0,4380_7778208_2140202,4380_517 -4380_77984,290,4380_38134,CUH via Togher,77597-00015-1,0,4380_7778208_2140202,4380_517 -4380_77984,294,4380_38135,CUH via Togher,77595-00018-1,0,4380_7778208_2140202,4380_517 -4380_77984,295,4380_38136,CUH via Togher,77591-00019-1,0,4380_7778208_2140202,4380_517 -4380_77948,295,4380_3814,Ratoath,52236-00019-1,0,4380_7778208_1030108,4380_39 -4380_77984,285,4380_38142,CUH via Togher,77726-00009-1,0,4380_7778208_2140203,4380_514 -4380_77984,286,4380_38143,CUH via Togher,77722-00010-1,0,4380_7778208_2140203,4380_514 -4380_77984,288,4380_38144,CUH via Togher,77728-00011-1,0,4380_7778208_2140203,4380_514 -4380_77984,287,4380_38145,CUH via Togher,77724-00012-1,0,4380_7778208_2140203,4380_514 -4380_77984,289,4380_38146,CUH via Togher,77720-00014-1,0,4380_7778208_2140203,4380_514 -4380_77984,292,4380_38147,CUH via Togher,77723-00016-1,0,4380_7778208_2140203,4380_514 -4380_77984,293,4380_38148,CUH via Togher,77729-00017-1,0,4380_7778208_2140203,4380_514 -4380_77984,290,4380_38149,CUH via Togher,77727-00015-1,0,4380_7778208_2140203,4380_514 -4380_77948,296,4380_3815,Ratoath,52174-00021-1,0,4380_7778208_1030107,4380_40 -4380_77984,294,4380_38150,CUH via Togher,77725-00018-1,0,4380_7778208_2140203,4380_514 -4380_77984,295,4380_38151,CUH via Togher,77721-00019-1,0,4380_7778208_2140203,4380_514 -4380_77984,285,4380_38158,CUH via Togher,77752-00009-1,0,4380_7778208_2140204,4380_514 -4380_77984,286,4380_38159,CUH via Togher,77754-00010-1,0,4380_7778208_2140204,4380_514 -4380_77984,288,4380_38160,CUH via Togher,77758-00011-1,0,4380_7778208_2140204,4380_514 -4380_77984,287,4380_38161,CUH via Togher,77756-00012-1,0,4380_7778208_2140204,4380_514 -4380_77984,291,4380_38162,CUH via Togher,78490-00013-1,0,4380_7778208_2140211,4380_515 -4380_77984,289,4380_38163,CUH via Togher,77750-00014-1,0,4380_7778208_2140204,4380_514 -4380_77984,292,4380_38164,CUH via Togher,77755-00016-1,0,4380_7778208_2140204,4380_514 -4380_77984,290,4380_38165,CUH via Togher,77753-00015-1,0,4380_7778208_2140204,4380_514 -4380_77984,294,4380_38166,CUH via Togher,77757-00018-1,0,4380_7778208_2140204,4380_514 -4380_77984,295,4380_38167,CUH via Togher,77751-00019-1,0,4380_7778208_2140204,4380_514 -4380_77984,293,4380_38168,CUH via Togher,77759-00017-1,0,4380_7778208_2140204,4380_514 -4380_77984,296,4380_38169,CUH via Togher,78491-00021-1,0,4380_7778208_2140211,4380_515 -4380_77984,285,4380_38176,CUH via Togher,77928-00009-1,0,4380_7778208_2140205,4380_514 -4380_77984,286,4380_38177,CUH via Togher,77926-00010-1,0,4380_7778208_2140205,4380_514 -4380_77984,288,4380_38178,CUH via Togher,77924-00011-1,0,4380_7778208_2140205,4380_514 -4380_77984,287,4380_38179,CUH via Togher,77922-00012-1,0,4380_7778208_2140205,4380_514 -4380_77984,291,4380_38180,CUH via Togher,78543-00013-1,0,4380_7778208_2140222,4380_515 -4380_77984,289,4380_38181,CUH via Togher,77920-00014-1,0,4380_7778208_2140205,4380_514 -4380_77984,292,4380_38182,CUH via Togher,77927-00016-1,0,4380_7778208_2140205,4380_514 -4380_77984,290,4380_38183,CUH via Togher,77929-00015-1,0,4380_7778208_2140205,4380_514 -4380_77984,294,4380_38184,CUH via Togher,77923-00018-1,0,4380_7778208_2140205,4380_514 -4380_77984,295,4380_38185,CUH via Togher,77921-00019-1,0,4380_7778208_2140205,4380_514 -4380_77984,293,4380_38186,CUH via Togher,77925-00017-1,0,4380_7778208_2140205,4380_514 -4380_77984,296,4380_38187,CUH via Togher,78544-00021-1,0,4380_7778208_2140222,4380_515 -4380_77984,297,4380_38189,CUH via Togher,78492-00008-1,0,4380_7778208_2140211,4380_514 -4380_77984,285,4380_38196,CUH via Togher,78088-00009-1,0,4380_7778208_2140206,4380_518 -4380_77984,286,4380_38197,CUH via Togher,78080-00010-1,0,4380_7778208_2140206,4380_518 -4380_77984,288,4380_38198,CUH via Togher,78084-00011-1,0,4380_7778208_2140206,4380_518 -4380_77984,287,4380_38199,CUH via Togher,78086-00012-1,0,4380_7778208_2140206,4380_518 -4380_77984,291,4380_38200,CUH via Togher,78644-00013-1,0,4380_7778208_2140244,4380_520 -4380_77984,289,4380_38201,CUH via Togher,78082-00014-1,0,4380_7778208_2140206,4380_518 -4380_77984,292,4380_38202,CUH via Togher,78081-00016-1,0,4380_7778208_2140206,4380_518 -4380_77984,290,4380_38203,CUH via Togher,78089-00015-1,0,4380_7778208_2140206,4380_518 -4380_77984,294,4380_38204,CUH via Togher,78087-00018-1,0,4380_7778208_2140206,4380_518 -4380_77984,295,4380_38205,CUH via Togher,78083-00019-1,0,4380_7778208_2140206,4380_518 -4380_77984,293,4380_38206,CUH via Togher,78085-00017-1,0,4380_7778208_2140206,4380_518 -4380_77984,296,4380_38207,CUH via Togher,78645-00021-1,0,4380_7778208_2140244,4380_520 -4380_77984,297,4380_38215,CUH via Togher,78596-00008-1,0,4380_7778208_2140233,4380_514 -4380_77984,285,4380_38216,CUH via Togher,77614-00009-1,0,4380_7778208_2140202,4380_515 -4380_77984,286,4380_38217,CUH via Togher,77610-00010-1,0,4380_7778208_2140202,4380_515 -4380_77984,288,4380_38218,CUH via Togher,77616-00011-1,0,4380_7778208_2140202,4380_515 -4380_77984,287,4380_38219,CUH via Togher,77618-00012-1,0,4380_7778208_2140202,4380_515 -4380_77984,291,4380_38220,CUH via Togher,78728-00013-1,0,4380_7778208_2140266,4380_514 -4380_77984,289,4380_38221,CUH via Togher,77612-00014-1,0,4380_7778208_2140202,4380_515 -4380_77984,292,4380_38222,CUH via Togher,77611-00016-1,0,4380_7778208_2140202,4380_515 -4380_77984,293,4380_38223,CUH via Togher,77617-00017-1,0,4380_7778208_2140202,4380_515 -4380_77984,290,4380_38224,CUH via Togher,77615-00015-1,0,4380_7778208_2140202,4380_515 -4380_77984,294,4380_38225,CUH via Togher,77619-00018-1,0,4380_7778208_2140202,4380_515 -4380_77984,295,4380_38226,CUH via Togher,77613-00019-1,0,4380_7778208_2140202,4380_515 -4380_77984,296,4380_38227,CUH via Togher,78729-00021-1,0,4380_7778208_2140266,4380_514 -4380_77948,297,4380_3823,Ratoath,1542-00008-1,0,4380_7778208_1030104,4380_39 -4380_77984,285,4380_38234,CUH via Togher,78244-00009-1,0,4380_7778208_2140207,4380_514 -4380_77984,286,4380_38235,CUH via Togher,78242-00010-1,0,4380_7778208_2140207,4380_514 -4380_77984,288,4380_38236,CUH via Togher,78246-00011-1,0,4380_7778208_2140207,4380_514 -4380_77984,287,4380_38237,CUH via Togher,78240-00012-1,0,4380_7778208_2140207,4380_514 -4380_77984,291,4380_38238,CUH via Togher,78597-00013-1,0,4380_7778208_2140233,4380_515 -4380_77984,289,4380_38239,CUH via Togher,78248-00014-1,0,4380_7778208_2140207,4380_514 -4380_77948,285,4380_3824,Ratoath,1190-00009-1,0,4380_7778208_1030101,4380_39 -4380_77984,292,4380_38240,CUH via Togher,78243-00016-1,0,4380_7778208_2140207,4380_514 -4380_77984,290,4380_38241,CUH via Togher,78245-00015-1,0,4380_7778208_2140207,4380_514 -4380_77984,294,4380_38242,CUH via Togher,78241-00018-1,0,4380_7778208_2140207,4380_514 -4380_77984,295,4380_38243,CUH via Togher,78249-00019-1,0,4380_7778208_2140207,4380_514 -4380_77984,293,4380_38244,CUH via Togher,78247-00017-1,0,4380_7778208_2140207,4380_514 -4380_77984,296,4380_38245,CUH via Togher,78598-00021-1,0,4380_7778208_2140233,4380_515 -4380_77984,297,4380_38247,CUH via Togher,78548-00008-1,0,4380_7778208_2140222,4380_514 -4380_77948,286,4380_3825,Ratoath,1200-00010-1,0,4380_7778208_1030101,4380_39 -4380_77984,285,4380_38254,CUH via Togher,77444-00009-1,0,4380_7778208_2140201,4380_514 -4380_77984,286,4380_38255,CUH via Togher,77448-00010-1,0,4380_7778208_2140201,4380_514 -4380_77984,288,4380_38256,CUH via Togher,77446-00011-1,0,4380_7778208_2140201,4380_514 -4380_77984,287,4380_38257,CUH via Togher,77442-00012-1,0,4380_7778208_2140201,4380_514 -4380_77984,291,4380_38258,CUH via Togher,78696-00013-1,0,4380_7778208_2140255,4380_515 -4380_77984,289,4380_38259,CUH via Togher,77440-00014-1,0,4380_7778208_2140201,4380_514 -4380_77948,288,4380_3826,Ratoath,1210-00011-1,0,4380_7778208_1030101,4380_39 -4380_77984,292,4380_38260,CUH via Togher,77449-00016-1,0,4380_7778208_2140201,4380_514 -4380_77984,293,4380_38261,CUH via Togher,77447-00017-1,0,4380_7778208_2140201,4380_514 -4380_77984,290,4380_38262,CUH via Togher,77445-00015-1,0,4380_7778208_2140201,4380_514 -4380_77984,294,4380_38263,CUH via Togher,77443-00018-1,0,4380_7778208_2140201,4380_514 -4380_77984,295,4380_38264,CUH via Togher,77441-00019-1,0,4380_7778208_2140201,4380_514 -4380_77984,296,4380_38265,CUH via Togher,78697-00021-1,0,4380_7778208_2140255,4380_515 -4380_77948,287,4380_3827,Ratoath,1220-00012-1,0,4380_7778208_1030101,4380_39 -4380_77984,297,4380_38273,CUH via Togher,78649-00008-1,0,4380_7778208_2140244,4380_514 -4380_77984,285,4380_38274,CUH via Togher,77744-00009-1,0,4380_7778208_2140203,4380_515 -4380_77984,286,4380_38275,CUH via Togher,77746-00010-1,0,4380_7778208_2140203,4380_515 -4380_77984,288,4380_38276,CUH via Togher,77740-00011-1,0,4380_7778208_2140203,4380_515 -4380_77984,287,4380_38277,CUH via Togher,77748-00012-1,0,4380_7778208_2140203,4380_515 -4380_77984,291,4380_38278,CUH via Togher,78496-00013-1,0,4380_7778208_2140211,4380_514 -4380_77984,289,4380_38279,CUH via Togher,77742-00014-1,0,4380_7778208_2140203,4380_515 -4380_77948,289,4380_3828,Ratoath,1180-00014-1,0,4380_7778208_1030101,4380_39 -4380_77984,292,4380_38280,CUH via Togher,77747-00016-1,0,4380_7778208_2140203,4380_515 -4380_77984,293,4380_38281,CUH via Togher,77741-00017-1,0,4380_7778208_2140203,4380_515 -4380_77984,290,4380_38282,CUH via Togher,77745-00015-1,0,4380_7778208_2140203,4380_515 -4380_77984,294,4380_38283,CUH via Togher,77749-00018-1,0,4380_7778208_2140203,4380_515 -4380_77984,295,4380_38284,CUH via Togher,77743-00019-1,0,4380_7778208_2140203,4380_515 -4380_77984,296,4380_38285,CUH via Togher,78497-00021-1,0,4380_7778208_2140211,4380_514 -4380_77948,290,4380_3829,Ratoath,51815-00015-1,0,4380_7778208_1030101,4380_39 -4380_77984,285,4380_38292,CUH via Togher,77778-00009-1,0,4380_7778208_2140204,4380_514 -4380_77984,286,4380_38293,CUH via Togher,77772-00010-1,0,4380_7778208_2140204,4380_514 -4380_77984,288,4380_38294,CUH via Togher,77774-00011-1,0,4380_7778208_2140204,4380_514 -4380_77984,287,4380_38295,CUH via Togher,77770-00012-1,0,4380_7778208_2140204,4380_514 -4380_77984,291,4380_38296,CUH via Togher,78549-00013-1,0,4380_7778208_2140222,4380_515 -4380_77984,289,4380_38297,CUH via Togher,77776-00014-1,0,4380_7778208_2140204,4380_514 -4380_77984,292,4380_38298,CUH via Togher,77773-00016-1,0,4380_7778208_2140204,4380_514 -4380_77984,290,4380_38299,CUH via Togher,77779-00015-1,0,4380_7778208_2140204,4380_514 -4380_77948,291,4380_3830,Ratoath,1410-00013-1,0,4380_7778208_1030103,4380_40 -4380_77984,294,4380_38300,CUH via Togher,77771-00018-1,0,4380_7778208_2140204,4380_514 -4380_77984,295,4380_38301,CUH via Togher,77777-00019-1,0,4380_7778208_2140204,4380_514 -4380_77984,293,4380_38302,CUH via Togher,77775-00017-1,0,4380_7778208_2140204,4380_514 -4380_77984,296,4380_38303,CUH via Togher,78550-00021-1,0,4380_7778208_2140222,4380_515 -4380_77984,297,4380_38305,CUH via Togher,78498-00008-1,0,4380_7778208_2140211,4380_514 -4380_77948,292,4380_3831,Ratoath,51816-00016-1,0,4380_7778208_1030101,4380_39 -4380_77984,285,4380_38312,CUH via Togher,77944-00009-1,0,4380_7778208_2140205,4380_514 -4380_77984,286,4380_38313,CUH via Togher,77946-00010-1,0,4380_7778208_2140205,4380_514 -4380_77984,288,4380_38314,CUH via Togher,77942-00011-1,0,4380_7778208_2140205,4380_514 -4380_77984,287,4380_38315,CUH via Togher,77940-00012-1,0,4380_7778208_2140205,4380_514 -4380_77984,291,4380_38316,CUH via Togher,78650-00013-1,0,4380_7778208_2140244,4380_515 -4380_77984,289,4380_38317,CUH via Togher,77948-00014-1,0,4380_7778208_2140205,4380_514 -4380_77984,292,4380_38318,CUH via Togher,77947-00016-1,0,4380_7778208_2140205,4380_514 -4380_77984,290,4380_38319,CUH via Togher,77945-00015-1,0,4380_7778208_2140205,4380_514 -4380_77948,293,4380_3832,Ratoath,51817-00017-1,0,4380_7778208_1030101,4380_39 -4380_77984,294,4380_38320,CUH via Togher,77941-00018-1,0,4380_7778208_2140205,4380_514 -4380_77984,295,4380_38321,CUH via Togher,77949-00019-1,0,4380_7778208_2140205,4380_514 -4380_77984,293,4380_38322,CUH via Togher,77943-00017-1,0,4380_7778208_2140205,4380_514 -4380_77984,296,4380_38323,CUH via Togher,78651-00021-1,0,4380_7778208_2140244,4380_515 -4380_77948,294,4380_3833,Ratoath,51818-00018-1,0,4380_7778208_1030101,4380_39 -4380_77984,297,4380_38331,CUH via Togher,78602-00008-1,0,4380_7778208_2140233,4380_514 -4380_77984,285,4380_38332,CUH via Togher,78102-00009-1,0,4380_7778208_2140206,4380_515 -4380_77984,286,4380_38333,CUH via Togher,78100-00010-1,0,4380_7778208_2140206,4380_515 -4380_77984,288,4380_38334,CUH via Togher,78108-00011-1,0,4380_7778208_2140206,4380_515 -4380_77984,287,4380_38335,CUH via Togher,78104-00012-1,0,4380_7778208_2140206,4380_515 -4380_77984,291,4380_38336,CUH via Togher,78732-00013-1,0,4380_7778208_2140266,4380_519 -4380_77984,289,4380_38337,CUH via Togher,78106-00014-1,0,4380_7778208_2140206,4380_515 -4380_77984,292,4380_38338,CUH via Togher,78101-00016-1,0,4380_7778208_2140206,4380_515 -4380_77984,290,4380_38339,CUH via Togher,78103-00015-1,0,4380_7778208_2140206,4380_515 -4380_77948,295,4380_3834,Ratoath,51814-00019-1,0,4380_7778208_1030101,4380_39 -4380_77984,294,4380_38340,CUH via Togher,78105-00018-1,0,4380_7778208_2140206,4380_515 -4380_77984,295,4380_38341,CUH via Togher,78107-00019-1,0,4380_7778208_2140206,4380_515 -4380_77984,293,4380_38342,CUH via Togher,78109-00017-1,0,4380_7778208_2140206,4380_515 -4380_77984,296,4380_38343,CUH via Togher,78733-00021-1,0,4380_7778208_2140266,4380_519 -4380_77948,296,4380_3835,Ratoath,51933-00021-1,0,4380_7778208_1030103,4380_40 -4380_77984,285,4380_38350,CUH via Togher,78356-00009-1,0,4380_7778208_2140208,4380_518 -4380_77984,286,4380_38351,CUH via Togher,78358-00010-1,0,4380_7778208_2140208,4380_518 -4380_77984,288,4380_38352,CUH via Togher,78352-00011-1,0,4380_7778208_2140208,4380_518 -4380_77984,287,4380_38353,CUH via Togher,78350-00012-1,0,4380_7778208_2140208,4380_518 -4380_77984,291,4380_38354,CUH via Togher,78603-00013-1,0,4380_7778208_2140233,4380_520 -4380_77984,289,4380_38355,CUH via Togher,78354-00014-1,0,4380_7778208_2140208,4380_518 -4380_77984,292,4380_38356,CUH via Togher,78359-00016-1,0,4380_7778208_2140208,4380_518 -4380_77984,290,4380_38357,CUH via Togher,78357-00015-1,0,4380_7778208_2140208,4380_518 -4380_77984,294,4380_38358,CUH via Togher,78351-00018-1,0,4380_7778208_2140208,4380_518 -4380_77984,295,4380_38359,CUH via Togher,78355-00019-1,0,4380_7778208_2140208,4380_518 -4380_77984,293,4380_38360,CUH via Togher,78353-00017-1,0,4380_7778208_2140208,4380_518 -4380_77984,296,4380_38361,CUH via Togher,78604-00021-1,0,4380_7778208_2140233,4380_520 -4380_77984,297,4380_38363,CUH via Togher,78554-00008-1,0,4380_7778208_2140222,4380_514 -4380_77984,285,4380_38370,CUH via Togher,78262-00009-1,0,4380_7778208_2140207,4380_514 -4380_77984,286,4380_38371,CUH via Togher,78268-00010-1,0,4380_7778208_2140207,4380_514 -4380_77984,288,4380_38372,CUH via Togher,78266-00011-1,0,4380_7778208_2140207,4380_514 -4380_77984,287,4380_38373,CUH via Togher,78260-00012-1,0,4380_7778208_2140207,4380_514 -4380_77984,291,4380_38374,CUH via Togher,78700-00013-1,0,4380_7778208_2140255,4380_515 -4380_77984,289,4380_38375,CUH via Togher,78264-00014-1,0,4380_7778208_2140207,4380_514 -4380_77984,292,4380_38376,CUH via Togher,78269-00016-1,0,4380_7778208_2140207,4380_514 -4380_77984,290,4380_38377,CUH via Togher,78263-00015-1,0,4380_7778208_2140207,4380_514 -4380_77984,294,4380_38378,CUH via Togher,78261-00018-1,0,4380_7778208_2140207,4380_514 -4380_77984,295,4380_38379,CUH via Togher,78265-00019-1,0,4380_7778208_2140207,4380_514 -4380_77984,293,4380_38380,CUH via Togher,78267-00017-1,0,4380_7778208_2140207,4380_514 -4380_77984,296,4380_38381,CUH via Togher,78701-00021-1,0,4380_7778208_2140255,4380_515 -4380_77984,297,4380_38389,CUH via Togher,78655-00008-1,0,4380_7778208_2140244,4380_514 -4380_77984,285,4380_38390,CUH via Togher,77460-00009-1,0,4380_7778208_2140201,4380_515 -4380_77984,286,4380_38391,CUH via Togher,77468-00010-1,0,4380_7778208_2140201,4380_515 -4380_77984,288,4380_38392,CUH via Togher,77462-00011-1,0,4380_7778208_2140201,4380_515 -4380_77984,287,4380_38393,CUH via Togher,77464-00012-1,0,4380_7778208_2140201,4380_515 -4380_77984,291,4380_38394,CUH via Togher,78502-00013-1,0,4380_7778208_2140211,4380_519 -4380_77984,289,4380_38395,CUH via Togher,77466-00014-1,0,4380_7778208_2140201,4380_515 -4380_77984,292,4380_38396,CUH via Togher,77469-00016-1,0,4380_7778208_2140201,4380_515 -4380_77984,293,4380_38397,CUH via Togher,77463-00017-1,0,4380_7778208_2140201,4380_515 -4380_77984,290,4380_38398,CUH via Togher,77461-00015-1,0,4380_7778208_2140201,4380_515 -4380_77984,294,4380_38399,CUH via Togher,77465-00018-1,0,4380_7778208_2140201,4380_515 -4380_77984,295,4380_38400,CUH via Togher,77467-00019-1,0,4380_7778208_2140201,4380_515 -4380_77984,296,4380_38401,CUH via Togher,78503-00021-1,0,4380_7778208_2140211,4380_519 -4380_77984,285,4380_38408,CUH via Togher,77792-00009-1,0,4380_7778208_2140204,4380_514 -4380_77984,286,4380_38409,CUH via Togher,77796-00010-1,0,4380_7778208_2140204,4380_514 -4380_77984,288,4380_38410,CUH via Togher,77798-00011-1,0,4380_7778208_2140204,4380_514 -4380_77984,287,4380_38411,CUH via Togher,77794-00012-1,0,4380_7778208_2140204,4380_514 -4380_77984,291,4380_38412,CUH via Togher,78555-00013-1,0,4380_7778208_2140222,4380_515 -4380_77984,289,4380_38413,CUH via Togher,77790-00014-1,0,4380_7778208_2140204,4380_514 -4380_77984,292,4380_38414,CUH via Togher,77797-00016-1,0,4380_7778208_2140204,4380_514 -4380_77984,290,4380_38415,CUH via Togher,77793-00015-1,0,4380_7778208_2140204,4380_514 -4380_77984,294,4380_38416,CUH via Togher,77795-00018-1,0,4380_7778208_2140204,4380_514 -4380_77984,295,4380_38417,CUH via Togher,77791-00019-1,0,4380_7778208_2140204,4380_514 -4380_77984,293,4380_38418,CUH via Togher,77799-00017-1,0,4380_7778208_2140204,4380_514 -4380_77984,296,4380_38419,CUH via Togher,78556-00021-1,0,4380_7778208_2140222,4380_515 -4380_77948,285,4380_3842,Ratoath,1558-00009-1,0,4380_7778208_1030105,4380_39 -4380_77984,297,4380_38421,CUH via Togher,78504-00008-1,0,4380_7778208_2140211,4380_514 -4380_77984,285,4380_38428,CUH via Togher,77960-00009-1,0,4380_7778208_2140205,4380_514 -4380_77984,286,4380_38429,CUH via Togher,77968-00010-1,0,4380_7778208_2140205,4380_514 -4380_77948,286,4380_3843,Ratoath,1566-00010-1,0,4380_7778208_1030105,4380_39 -4380_77984,288,4380_38430,CUH via Togher,77964-00011-1,0,4380_7778208_2140205,4380_514 -4380_77984,287,4380_38431,CUH via Togher,77966-00012-1,0,4380_7778208_2140205,4380_514 -4380_77984,291,4380_38432,CUH via Togher,78656-00013-1,0,4380_7778208_2140244,4380_514 -4380_77984,289,4380_38433,CUH via Togher,77962-00014-1,0,4380_7778208_2140205,4380_514 -4380_77984,292,4380_38434,CUH via Togher,77969-00016-1,0,4380_7778208_2140205,4380_514 -4380_77984,290,4380_38435,CUH via Togher,77961-00015-1,0,4380_7778208_2140205,4380_514 -4380_77984,294,4380_38436,CUH via Togher,77967-00018-1,0,4380_7778208_2140205,4380_514 -4380_77984,295,4380_38437,CUH via Togher,77963-00019-1,0,4380_7778208_2140205,4380_514 -4380_77984,293,4380_38438,CUH via Togher,77965-00017-1,0,4380_7778208_2140205,4380_514 -4380_77984,296,4380_38439,CUH via Togher,78657-00021-1,0,4380_7778208_2140244,4380_514 -4380_77948,288,4380_3844,Ratoath,1574-00011-1,0,4380_7778208_1030105,4380_39 -4380_77984,297,4380_38447,CUH via Togher,78608-00008-1,0,4380_7778208_2140233,4380_514 -4380_77984,285,4380_38448,CUH via Togher,78122-00009-1,0,4380_7778208_2140206,4380_514 -4380_77984,286,4380_38449,CUH via Togher,78120-00010-1,0,4380_7778208_2140206,4380_514 -4380_77948,287,4380_3845,Ratoath,1582-00012-1,0,4380_7778208_1030105,4380_39 -4380_77984,288,4380_38450,CUH via Togher,78126-00011-1,0,4380_7778208_2140206,4380_514 -4380_77984,287,4380_38451,CUH via Togher,78128-00012-1,0,4380_7778208_2140206,4380_514 -4380_77984,291,4380_38452,CUH via Togher,78736-00013-1,0,4380_7778208_2140266,4380_514 -4380_77984,289,4380_38453,CUH via Togher,78124-00014-1,0,4380_7778208_2140206,4380_514 -4380_77984,292,4380_38454,CUH via Togher,78121-00016-1,0,4380_7778208_2140206,4380_514 -4380_77984,290,4380_38455,CUH via Togher,78123-00015-1,0,4380_7778208_2140206,4380_514 -4380_77984,294,4380_38456,CUH via Togher,78129-00018-1,0,4380_7778208_2140206,4380_514 -4380_77984,295,4380_38457,CUH via Togher,78125-00019-1,0,4380_7778208_2140206,4380_514 -4380_77984,293,4380_38458,CUH via Togher,78127-00017-1,0,4380_7778208_2140206,4380_514 -4380_77984,296,4380_38459,CUH via Togher,78737-00021-1,0,4380_7778208_2140266,4380_514 -4380_77948,289,4380_3846,Ratoath,1550-00014-1,0,4380_7778208_1030105,4380_39 -4380_77984,285,4380_38466,CUH via Togher,78372-00009-1,0,4380_7778208_2140208,4380_514 -4380_77984,286,4380_38467,CUH via Togher,78378-00010-1,0,4380_7778208_2140208,4380_514 -4380_77984,288,4380_38468,CUH via Togher,78376-00011-1,0,4380_7778208_2140208,4380_514 -4380_77984,287,4380_38469,CUH via Togher,78370-00012-1,0,4380_7778208_2140208,4380_514 -4380_77948,290,4380_3847,Ratoath,52059-00015-1,0,4380_7778208_1030105,4380_39 -4380_77984,291,4380_38470,CUH via Togher,78609-00013-1,0,4380_7778208_2140233,4380_514 -4380_77984,289,4380_38471,CUH via Togher,78374-00014-1,0,4380_7778208_2140208,4380_514 -4380_77984,292,4380_38472,CUH via Togher,78379-00016-1,0,4380_7778208_2140208,4380_514 -4380_77984,290,4380_38473,CUH via Togher,78373-00015-1,0,4380_7778208_2140208,4380_514 -4380_77984,294,4380_38474,CUH via Togher,78371-00018-1,0,4380_7778208_2140208,4380_514 -4380_77984,295,4380_38475,CUH via Togher,78375-00019-1,0,4380_7778208_2140208,4380_514 -4380_77984,293,4380_38476,CUH via Togher,78377-00017-1,0,4380_7778208_2140208,4380_514 -4380_77984,296,4380_38477,CUH via Togher,78610-00021-1,0,4380_7778208_2140233,4380_514 -4380_77984,297,4380_38479,CUH via Togher,78560-00008-1,0,4380_7778208_2140222,4380_514 -4380_77948,292,4380_3848,Ratoath,52056-00016-1,0,4380_7778208_1030105,4380_39 -4380_77984,285,4380_38486,CUH via Togher,78280-00009-1,0,4380_7778208_2140207,4380_514 -4380_77984,286,4380_38487,CUH via Togher,78288-00010-1,0,4380_7778208_2140207,4380_514 -4380_77984,288,4380_38488,CUH via Togher,78286-00011-1,0,4380_7778208_2140207,4380_514 -4380_77984,287,4380_38489,CUH via Togher,78282-00012-1,0,4380_7778208_2140207,4380_514 -4380_77948,293,4380_3849,Ratoath,52055-00017-1,0,4380_7778208_1030105,4380_39 -4380_77984,291,4380_38490,CUH via Togher,78704-00013-1,0,4380_7778208_2140255,4380_514 -4380_77984,289,4380_38491,CUH via Togher,78284-00014-1,0,4380_7778208_2140207,4380_514 -4380_77984,292,4380_38492,CUH via Togher,78289-00016-1,0,4380_7778208_2140207,4380_514 -4380_77984,290,4380_38493,CUH via Togher,78281-00015-1,0,4380_7778208_2140207,4380_514 -4380_77984,294,4380_38494,CUH via Togher,78283-00018-1,0,4380_7778208_2140207,4380_514 -4380_77984,295,4380_38495,CUH via Togher,78285-00019-1,0,4380_7778208_2140207,4380_514 -4380_77984,293,4380_38496,CUH via Togher,78287-00017-1,0,4380_7778208_2140207,4380_514 -4380_77984,296,4380_38497,CUH via Togher,78705-00021-1,0,4380_7778208_2140255,4380_514 -4380_77948,294,4380_3850,Ratoath,52057-00018-1,0,4380_7778208_1030105,4380_39 -4380_77984,297,4380_38505,CUH via Togher,78661-00008-1,0,4380_7778208_2140244,4380_514 -4380_77984,285,4380_38506,CUH via Togher,77482-00009-1,0,4380_7778208_2140201,4380_514 -4380_77984,286,4380_38507,CUH via Togher,77480-00010-1,0,4380_7778208_2140201,4380_514 -4380_77984,288,4380_38508,CUH via Togher,77486-00011-1,0,4380_7778208_2140201,4380_514 -4380_77984,287,4380_38509,CUH via Togher,77484-00012-1,0,4380_7778208_2140201,4380_514 -4380_77948,295,4380_3851,Ratoath,52058-00019-1,0,4380_7778208_1030105,4380_39 -4380_77984,291,4380_38510,CUH via Togher,78508-00013-1,0,4380_7778208_2140211,4380_514 -4380_77984,289,4380_38511,CUH via Togher,77488-00014-1,0,4380_7778208_2140201,4380_514 -4380_77984,292,4380_38512,CUH via Togher,77481-00016-1,0,4380_7778208_2140201,4380_514 -4380_77984,293,4380_38513,CUH via Togher,77487-00017-1,0,4380_7778208_2140201,4380_514 -4380_77984,290,4380_38514,CUH via Togher,77483-00015-1,0,4380_7778208_2140201,4380_514 -4380_77984,294,4380_38515,CUH via Togher,77485-00018-1,0,4380_7778208_2140201,4380_514 -4380_77984,295,4380_38516,CUH via Togher,77489-00019-1,0,4380_7778208_2140201,4380_514 -4380_77984,296,4380_38517,CUH via Togher,78509-00021-1,0,4380_7778208_2140211,4380_514 -4380_77984,285,4380_38524,CUH via Togher,77816-00009-1,0,4380_7778208_2140204,4380_514 -4380_77984,286,4380_38525,CUH via Togher,77812-00010-1,0,4380_7778208_2140204,4380_514 -4380_77984,288,4380_38526,CUH via Togher,77810-00011-1,0,4380_7778208_2140204,4380_514 -4380_77984,287,4380_38527,CUH via Togher,77818-00012-1,0,4380_7778208_2140204,4380_514 -4380_77984,291,4380_38528,CUH via Togher,78561-00013-1,0,4380_7778208_2140222,4380_514 -4380_77984,289,4380_38529,CUH via Togher,77814-00014-1,0,4380_7778208_2140204,4380_514 -4380_77948,297,4380_3853,Ratoath,1250-00008-1,0,4380_7778208_1030101,4380_39 -4380_77984,292,4380_38530,CUH via Togher,77813-00016-1,0,4380_7778208_2140204,4380_514 -4380_77984,290,4380_38531,CUH via Togher,77817-00015-1,0,4380_7778208_2140204,4380_514 -4380_77984,294,4380_38532,CUH via Togher,77819-00018-1,0,4380_7778208_2140204,4380_514 -4380_77984,295,4380_38533,CUH via Togher,77815-00019-1,0,4380_7778208_2140204,4380_514 -4380_77984,293,4380_38534,CUH via Togher,77811-00017-1,0,4380_7778208_2140204,4380_514 -4380_77984,296,4380_38535,CUH via Togher,78562-00021-1,0,4380_7778208_2140222,4380_514 -4380_77984,297,4380_38537,CUH via Togher,78510-00008-1,0,4380_7778208_2140211,4380_514 -4380_77948,291,4380_3854,Ratoath,1328-00013-1,0,4380_7778208_1030102,4380_40 -4380_77984,285,4380_38544,CUH via Togher,77988-00009-1,0,4380_7778208_2140205,4380_514 -4380_77984,286,4380_38545,CUH via Togher,77982-00010-1,0,4380_7778208_2140205,4380_514 -4380_77984,288,4380_38546,CUH via Togher,77980-00011-1,0,4380_7778208_2140205,4380_514 -4380_77984,287,4380_38547,CUH via Togher,77984-00012-1,0,4380_7778208_2140205,4380_514 -4380_77984,291,4380_38548,CUH via Togher,78662-00013-1,0,4380_7778208_2140244,4380_514 -4380_77984,289,4380_38549,CUH via Togher,77986-00014-1,0,4380_7778208_2140205,4380_514 -4380_77948,296,4380_3855,Ratoath,51873-00021-1,0,4380_7778208_1030102,4380_40 -4380_77984,292,4380_38550,CUH via Togher,77983-00016-1,0,4380_7778208_2140205,4380_514 -4380_77984,290,4380_38551,CUH via Togher,77989-00015-1,0,4380_7778208_2140205,4380_514 -4380_77984,294,4380_38552,CUH via Togher,77985-00018-1,0,4380_7778208_2140205,4380_514 -4380_77984,295,4380_38553,CUH via Togher,77987-00019-1,0,4380_7778208_2140205,4380_514 -4380_77984,293,4380_38554,CUH via Togher,77981-00017-1,0,4380_7778208_2140205,4380_514 -4380_77984,296,4380_38555,CUH via Togher,78663-00021-1,0,4380_7778208_2140244,4380_514 -4380_77984,297,4380_38563,CUH via Togher,78614-00008-1,0,4380_7778208_2140233,4380_514 -4380_77984,285,4380_38564,CUH via Togher,78142-00009-1,0,4380_7778208_2140206,4380_514 -4380_77984,286,4380_38565,CUH via Togher,78144-00010-1,0,4380_7778208_2140206,4380_514 -4380_77984,288,4380_38566,CUH via Togher,78140-00011-1,0,4380_7778208_2140206,4380_514 -4380_77984,287,4380_38567,CUH via Togher,78148-00012-1,0,4380_7778208_2140206,4380_514 -4380_77984,291,4380_38568,CUH via Togher,78740-00013-1,0,4380_7778208_2140266,4380_514 -4380_77984,289,4380_38569,CUH via Togher,78146-00014-1,0,4380_7778208_2140206,4380_514 -4380_77984,292,4380_38570,CUH via Togher,78145-00016-1,0,4380_7778208_2140206,4380_514 -4380_77984,290,4380_38571,CUH via Togher,78143-00015-1,0,4380_7778208_2140206,4380_514 -4380_77984,294,4380_38572,CUH via Togher,78149-00018-1,0,4380_7778208_2140206,4380_514 -4380_77984,295,4380_38573,CUH via Togher,78147-00019-1,0,4380_7778208_2140206,4380_514 -4380_77984,293,4380_38574,CUH via Togher,78141-00017-1,0,4380_7778208_2140206,4380_514 -4380_77984,296,4380_38575,CUH via Togher,78741-00021-1,0,4380_7778208_2140266,4380_514 -4380_77984,285,4380_38582,CUH via Togher,78394-00009-1,0,4380_7778208_2140208,4380_518 -4380_77984,286,4380_38583,CUH via Togher,78390-00010-1,0,4380_7778208_2140208,4380_518 -4380_77984,288,4380_38584,CUH via Togher,78396-00011-1,0,4380_7778208_2140208,4380_518 -4380_77984,287,4380_38585,CUH via Togher,78392-00012-1,0,4380_7778208_2140208,4380_518 -4380_77984,291,4380_38586,CUH via Togher,78615-00013-1,0,4380_7778208_2140233,4380_518 -4380_77984,289,4380_38587,CUH via Togher,78398-00014-1,0,4380_7778208_2140208,4380_518 -4380_77984,292,4380_38588,CUH via Togher,78391-00016-1,0,4380_7778208_2140208,4380_518 -4380_77984,290,4380_38589,CUH via Togher,78395-00015-1,0,4380_7778208_2140208,4380_518 -4380_77984,294,4380_38590,CUH via Togher,78393-00018-1,0,4380_7778208_2140208,4380_518 -4380_77984,295,4380_38591,CUH via Togher,78399-00019-1,0,4380_7778208_2140208,4380_518 -4380_77984,293,4380_38592,CUH via Togher,78397-00017-1,0,4380_7778208_2140208,4380_518 -4380_77984,296,4380_38593,CUH via Togher,78616-00021-1,0,4380_7778208_2140233,4380_518 -4380_77984,297,4380_38595,CUH via Togher,78566-00008-1,0,4380_7778208_2140222,4380_514 -4380_77984,285,4380_38602,CUH via Togher,78304-00009-1,0,4380_7778208_2140207,4380_514 -4380_77984,286,4380_38603,CUH via Togher,78308-00010-1,0,4380_7778208_2140207,4380_514 -4380_77984,288,4380_38604,CUH via Togher,78302-00011-1,0,4380_7778208_2140207,4380_514 -4380_77984,287,4380_38605,CUH via Togher,78300-00012-1,0,4380_7778208_2140207,4380_514 -4380_77984,291,4380_38606,CUH via Togher,78708-00013-1,0,4380_7778208_2140255,4380_514 -4380_77984,289,4380_38607,CUH via Togher,78306-00014-1,0,4380_7778208_2140207,4380_514 -4380_77984,292,4380_38608,CUH via Togher,78309-00016-1,0,4380_7778208_2140207,4380_514 -4380_77984,290,4380_38609,CUH via Togher,78305-00015-1,0,4380_7778208_2140207,4380_514 -4380_77984,294,4380_38610,CUH via Togher,78301-00018-1,0,4380_7778208_2140207,4380_514 -4380_77984,295,4380_38611,CUH via Togher,78307-00019-1,0,4380_7778208_2140207,4380_514 -4380_77984,293,4380_38612,CUH via Togher,78303-00017-1,0,4380_7778208_2140207,4380_514 -4380_77984,296,4380_38613,CUH via Togher,78709-00021-1,0,4380_7778208_2140255,4380_514 -4380_77948,285,4380_3862,Ratoath,1915-00009-1,0,4380_7778208_1030110,4380_39 -4380_77984,297,4380_38621,CUH via Togher,78667-00008-1,0,4380_7778208_2140244,4380_514 -4380_77984,285,4380_38622,CUH via Togher,77500-00009-1,0,4380_7778208_2140201,4380_514 -4380_77984,286,4380_38623,CUH via Togher,77504-00010-1,0,4380_7778208_2140201,4380_514 -4380_77984,288,4380_38624,CUH via Togher,77508-00011-1,0,4380_7778208_2140201,4380_514 -4380_77984,287,4380_38625,CUH via Togher,77502-00012-1,0,4380_7778208_2140201,4380_514 -4380_77984,291,4380_38626,CUH via Togher,78514-00013-1,0,4380_7778208_2140211,4380_514 -4380_77984,289,4380_38627,CUH via Togher,77506-00014-1,0,4380_7778208_2140201,4380_514 -4380_77984,292,4380_38628,CUH via Togher,77505-00016-1,0,4380_7778208_2140201,4380_514 -4380_77984,293,4380_38629,CUH via Togher,77509-00017-1,0,4380_7778208_2140201,4380_514 -4380_77948,286,4380_3863,Ratoath,1925-00010-1,0,4380_7778208_1030110,4380_39 -4380_77984,290,4380_38630,CUH via Togher,77501-00015-1,0,4380_7778208_2140201,4380_514 -4380_77984,294,4380_38631,CUH via Togher,77503-00018-1,0,4380_7778208_2140201,4380_514 -4380_77984,295,4380_38632,CUH via Togher,77507-00019-1,0,4380_7778208_2140201,4380_514 -4380_77984,296,4380_38633,CUH via Togher,78515-00021-1,0,4380_7778208_2140211,4380_514 -4380_77948,288,4380_3864,Ratoath,1935-00011-1,0,4380_7778208_1030110,4380_39 -4380_77984,285,4380_38640,CUH via Togher,77832-00009-1,0,4380_7778208_2140204,4380_514 -4380_77984,286,4380_38641,CUH via Togher,77834-00010-1,0,4380_7778208_2140204,4380_514 -4380_77984,288,4380_38642,CUH via Togher,77838-00011-1,0,4380_7778208_2140204,4380_514 -4380_77984,287,4380_38643,CUH via Togher,77830-00012-1,0,4380_7778208_2140204,4380_514 -4380_77984,291,4380_38644,CUH via Togher,78567-00013-1,0,4380_7778208_2140222,4380_514 -4380_77984,289,4380_38645,CUH via Togher,77836-00014-1,0,4380_7778208_2140204,4380_514 -4380_77984,292,4380_38646,CUH via Togher,77835-00016-1,0,4380_7778208_2140204,4380_514 -4380_77984,290,4380_38647,CUH via Togher,77833-00015-1,0,4380_7778208_2140204,4380_514 -4380_77984,294,4380_38648,CUH via Togher,77831-00018-1,0,4380_7778208_2140204,4380_514 -4380_77984,295,4380_38649,CUH via Togher,77837-00019-1,0,4380_7778208_2140204,4380_514 -4380_77948,287,4380_3865,Ratoath,1945-00012-1,0,4380_7778208_1030110,4380_39 -4380_77984,293,4380_38650,CUH via Togher,77839-00017-1,0,4380_7778208_2140204,4380_514 -4380_77984,296,4380_38651,CUH via Togher,78568-00021-1,0,4380_7778208_2140222,4380_514 -4380_77984,297,4380_38653,CUH via Togher,78516-00008-1,0,4380_7778208_2140211,4380_514 -4380_77948,289,4380_3866,Ratoath,1905-00014-1,0,4380_7778208_1030110,4380_39 -4380_77984,285,4380_38660,CUH via Togher,77638-00009-1,0,4380_7778208_2140202,4380_514 -4380_77984,286,4380_38661,CUH via Togher,77630-00010-1,0,4380_7778208_2140202,4380_514 -4380_77984,288,4380_38662,CUH via Togher,77632-00011-1,0,4380_7778208_2140202,4380_514 -4380_77984,287,4380_38663,CUH via Togher,77634-00012-1,0,4380_7778208_2140202,4380_514 -4380_77984,291,4380_38664,CUH via Togher,78668-00013-1,0,4380_7778208_2140244,4380_514 -4380_77984,289,4380_38665,CUH via Togher,77636-00014-1,0,4380_7778208_2140202,4380_514 -4380_77984,292,4380_38666,CUH via Togher,77631-00016-1,0,4380_7778208_2140202,4380_514 -4380_77984,293,4380_38667,CUH via Togher,77633-00017-1,0,4380_7778208_2140202,4380_514 -4380_77984,290,4380_38668,CUH via Togher,77639-00015-1,0,4380_7778208_2140202,4380_514 -4380_77984,294,4380_38669,CUH via Togher,77635-00018-1,0,4380_7778208_2140202,4380_514 -4380_77948,290,4380_3867,Ratoath,52359-00015-1,0,4380_7778208_1030110,4380_39 -4380_77984,295,4380_38670,CUH via Togher,77637-00019-1,0,4380_7778208_2140202,4380_514 -4380_77984,296,4380_38671,CUH via Togher,78669-00021-1,0,4380_7778208_2140244,4380_514 -4380_77984,297,4380_38679,CUH via Togher,78620-00008-1,0,4380_7778208_2140233,4380_514 -4380_77948,292,4380_3868,Ratoath,52357-00016-1,0,4380_7778208_1030110,4380_39 -4380_77984,285,4380_38680,CUH via Togher,78008-00009-1,0,4380_7778208_2140205,4380_514 -4380_77984,286,4380_38681,CUH via Togher,78000-00010-1,0,4380_7778208_2140205,4380_514 -4380_77984,288,4380_38682,CUH via Togher,78002-00011-1,0,4380_7778208_2140205,4380_514 -4380_77984,287,4380_38683,CUH via Togher,78004-00012-1,0,4380_7778208_2140205,4380_514 -4380_77984,291,4380_38684,CUH via Togher,78744-00013-1,0,4380_7778208_2140266,4380_514 -4380_77984,289,4380_38685,CUH via Togher,78006-00014-1,0,4380_7778208_2140205,4380_514 -4380_77984,292,4380_38686,CUH via Togher,78001-00016-1,0,4380_7778208_2140205,4380_514 -4380_77984,290,4380_38687,CUH via Togher,78009-00015-1,0,4380_7778208_2140205,4380_514 -4380_77984,294,4380_38688,CUH via Togher,78005-00018-1,0,4380_7778208_2140205,4380_514 -4380_77984,295,4380_38689,CUH via Togher,78007-00019-1,0,4380_7778208_2140205,4380_514 -4380_77948,293,4380_3869,Ratoath,52361-00017-1,0,4380_7778208_1030110,4380_39 -4380_77984,293,4380_38690,CUH via Togher,78003-00017-1,0,4380_7778208_2140205,4380_514 -4380_77984,296,4380_38691,CUH via Togher,78745-00021-1,0,4380_7778208_2140266,4380_514 -4380_77984,285,4380_38698,CUH via Togher,78162-00009-1,0,4380_7778208_2140206,4380_514 -4380_77984,286,4380_38699,CUH via Togher,78164-00010-1,0,4380_7778208_2140206,4380_514 -4380_77948,294,4380_3870,Ratoath,52360-00018-1,0,4380_7778208_1030110,4380_39 -4380_77984,288,4380_38700,CUH via Togher,78160-00011-1,0,4380_7778208_2140206,4380_514 -4380_77984,287,4380_38701,CUH via Togher,78166-00012-1,0,4380_7778208_2140206,4380_514 -4380_77984,291,4380_38702,CUH via Togher,78621-00013-1,0,4380_7778208_2140233,4380_514 -4380_77984,289,4380_38703,CUH via Togher,78168-00014-1,0,4380_7778208_2140206,4380_514 -4380_77984,292,4380_38704,CUH via Togher,78165-00016-1,0,4380_7778208_2140206,4380_514 -4380_77984,290,4380_38705,CUH via Togher,78163-00015-1,0,4380_7778208_2140206,4380_514 -4380_77984,294,4380_38706,CUH via Togher,78167-00018-1,0,4380_7778208_2140206,4380_514 -4380_77984,295,4380_38707,CUH via Togher,78169-00019-1,0,4380_7778208_2140206,4380_514 -4380_77984,293,4380_38708,CUH via Togher,78161-00017-1,0,4380_7778208_2140206,4380_514 -4380_77984,296,4380_38709,CUH via Togher,78622-00021-1,0,4380_7778208_2140233,4380_514 -4380_77948,295,4380_3871,Ratoath,52358-00019-1,0,4380_7778208_1030110,4380_39 -4380_77984,297,4380_38711,CUH via Togher,78572-00008-1,0,4380_7778208_2140222,4380_514 -4380_77984,285,4380_38718,CUH via Togher,78418-00009-1,0,4380_7778208_2140208,4380_514 -4380_77984,286,4380_38719,CUH via Togher,78416-00010-1,0,4380_7778208_2140208,4380_514 -4380_77948,291,4380_3872,Ratoath,1830-00013-1,0,4380_7778208_1030108,4380_39 -4380_77984,288,4380_38720,CUH via Togher,78412-00011-1,0,4380_7778208_2140208,4380_514 -4380_77984,287,4380_38721,CUH via Togher,78414-00012-1,0,4380_7778208_2140208,4380_514 -4380_77984,291,4380_38722,CUH via Togher,78712-00013-1,0,4380_7778208_2140255,4380_514 -4380_77984,289,4380_38723,CUH via Togher,78410-00014-1,0,4380_7778208_2140208,4380_514 -4380_77984,292,4380_38724,CUH via Togher,78417-00016-1,0,4380_7778208_2140208,4380_514 -4380_77984,290,4380_38725,CUH via Togher,78419-00015-1,0,4380_7778208_2140208,4380_514 -4380_77984,294,4380_38726,CUH via Togher,78415-00018-1,0,4380_7778208_2140208,4380_514 -4380_77984,295,4380_38727,CUH via Togher,78411-00019-1,0,4380_7778208_2140208,4380_514 -4380_77984,293,4380_38728,CUH via Togher,78413-00017-1,0,4380_7778208_2140208,4380_514 -4380_77984,296,4380_38729,CUH via Togher,78713-00021-1,0,4380_7778208_2140255,4380_514 -4380_77948,296,4380_3873,Ratoath,52240-00021-1,0,4380_7778208_1030108,4380_39 -4380_77984,297,4380_38737,CUH via Togher,78673-00008-1,0,4380_7778208_2140244,4380_514 -4380_77984,285,4380_38738,CUH via Togher,78326-00009-1,0,4380_7778208_2140207,4380_514 -4380_77984,286,4380_38739,CUH via Togher,78322-00010-1,0,4380_7778208_2140207,4380_514 -4380_77984,288,4380_38740,CUH via Togher,78324-00011-1,0,4380_7778208_2140207,4380_514 -4380_77984,287,4380_38741,CUH via Togher,78328-00012-1,0,4380_7778208_2140207,4380_514 -4380_77984,291,4380_38742,CUH via Togher,78520-00013-1,0,4380_7778208_2140211,4380_514 -4380_77984,289,4380_38743,CUH via Togher,78320-00014-1,0,4380_7778208_2140207,4380_514 -4380_77984,292,4380_38744,CUH via Togher,78323-00016-1,0,4380_7778208_2140207,4380_514 -4380_77984,290,4380_38745,CUH via Togher,78327-00015-1,0,4380_7778208_2140207,4380_514 -4380_77984,294,4380_38746,CUH via Togher,78329-00018-1,0,4380_7778208_2140207,4380_514 -4380_77984,295,4380_38747,CUH via Togher,78321-00019-1,0,4380_7778208_2140207,4380_514 -4380_77984,293,4380_38748,CUH via Togher,78325-00017-1,0,4380_7778208_2140207,4380_514 -4380_77984,296,4380_38749,CUH via Togher,78521-00021-1,0,4380_7778208_2140211,4380_514 -4380_77984,291,4380_38751,CUH via Togher,78573-00013-1,0,4380_7778208_2140222,4380_518 -4380_77984,296,4380_38752,CUH via Togher,78574-00021-1,0,4380_7778208_2140222,4380_518 -4380_77984,285,4380_38758,CUH via Togher,77856-00009-1,0,4380_7778208_2140204,4380_518 -4380_77984,286,4380_38759,CUH via Togher,77854-00010-1,0,4380_7778208_2140204,4380_518 -4380_77984,288,4380_38760,CUH via Togher,77852-00011-1,0,4380_7778208_2140204,4380_518 -4380_77984,287,4380_38761,CUH via Togher,77850-00012-1,0,4380_7778208_2140204,4380_518 -4380_77984,289,4380_38762,CUH via Togher,77858-00014-1,0,4380_7778208_2140204,4380_518 -4380_77984,292,4380_38763,CUH via Togher,77855-00016-1,0,4380_7778208_2140204,4380_518 -4380_77984,290,4380_38764,CUH via Togher,77857-00015-1,0,4380_7778208_2140204,4380_518 -4380_77984,294,4380_38765,CUH via Togher,77851-00018-1,0,4380_7778208_2140204,4380_518 -4380_77984,295,4380_38766,CUH via Togher,77859-00019-1,0,4380_7778208_2140204,4380_518 -4380_77984,293,4380_38767,CUH via Togher,77853-00017-1,0,4380_7778208_2140204,4380_518 -4380_77984,297,4380_38769,CUH via Togher,78522-00008-1,0,4380_7778208_2140211,4380_514 -4380_77984,285,4380_38776,CUH via Togher,77528-00009-1,0,4380_7778208_2140201,4380_514 -4380_77984,286,4380_38777,CUH via Togher,77526-00010-1,0,4380_7778208_2140201,4380_514 -4380_77984,288,4380_38778,CUH via Togher,77522-00011-1,0,4380_7778208_2140201,4380_514 -4380_77984,287,4380_38779,CUH via Togher,77520-00012-1,0,4380_7778208_2140201,4380_514 -4380_77984,291,4380_38780,CUH via Togher,78674-00013-1,0,4380_7778208_2140244,4380_514 -4380_77984,289,4380_38781,CUH via Togher,77524-00014-1,0,4380_7778208_2140201,4380_514 -4380_77984,292,4380_38782,CUH via Togher,77527-00016-1,0,4380_7778208_2140201,4380_514 -4380_77984,293,4380_38783,CUH via Togher,77523-00017-1,0,4380_7778208_2140201,4380_514 -4380_77984,290,4380_38784,CUH via Togher,77529-00015-1,0,4380_7778208_2140201,4380_514 -4380_77984,294,4380_38785,CUH via Togher,77521-00018-1,0,4380_7778208_2140201,4380_514 -4380_77984,295,4380_38786,CUH via Togher,77525-00019-1,0,4380_7778208_2140201,4380_514 -4380_77984,296,4380_38787,CUH via Togher,78675-00021-1,0,4380_7778208_2140244,4380_514 -4380_77984,297,4380_38795,CUH via Togher,78626-00008-1,0,4380_7778208_2140233,4380_514 -4380_77984,285,4380_38796,CUH via Togher,77658-00009-1,0,4380_7778208_2140202,4380_514 -4380_77984,286,4380_38797,CUH via Togher,77654-00010-1,0,4380_7778208_2140202,4380_514 -4380_77984,288,4380_38798,CUH via Togher,77650-00011-1,0,4380_7778208_2140202,4380_514 -4380_77984,287,4380_38799,CUH via Togher,77656-00012-1,0,4380_7778208_2140202,4380_514 -4380_77946,285,4380_388,Drogheda,50479-00009-1,1,4380_7778208_1000915,4380_6 -4380_77984,291,4380_38800,CUH via Togher,78748-00013-1,0,4380_7778208_2140266,4380_514 -4380_77984,289,4380_38801,CUH via Togher,77652-00014-1,0,4380_7778208_2140202,4380_514 -4380_77984,292,4380_38802,CUH via Togher,77655-00016-1,0,4380_7778208_2140202,4380_514 -4380_77984,293,4380_38803,CUH via Togher,77651-00017-1,0,4380_7778208_2140202,4380_514 -4380_77984,290,4380_38804,CUH via Togher,77659-00015-1,0,4380_7778208_2140202,4380_514 -4380_77984,294,4380_38805,CUH via Togher,77657-00018-1,0,4380_7778208_2140202,4380_514 -4380_77984,295,4380_38806,CUH via Togher,77653-00019-1,0,4380_7778208_2140202,4380_514 -4380_77984,296,4380_38807,CUH via Togher,78749-00021-1,0,4380_7778208_2140266,4380_514 -4380_77948,285,4380_3881,Ratoath,1280-00009-1,0,4380_7778208_1030102,4380_39 -4380_77984,285,4380_38814,CUH via Togher,78020-00009-1,0,4380_7778208_2140205,4380_514 -4380_77984,286,4380_38815,CUH via Togher,78024-00010-1,0,4380_7778208_2140205,4380_514 -4380_77984,288,4380_38816,CUH via Togher,78028-00011-1,0,4380_7778208_2140205,4380_514 -4380_77984,287,4380_38817,CUH via Togher,78026-00012-1,0,4380_7778208_2140205,4380_514 -4380_77984,291,4380_38818,CUH via Togher,78627-00013-1,0,4380_7778208_2140233,4380_515 -4380_77984,289,4380_38819,CUH via Togher,78022-00014-1,0,4380_7778208_2140205,4380_514 -4380_77948,286,4380_3882,Ratoath,1290-00010-1,0,4380_7778208_1030102,4380_39 -4380_77984,292,4380_38820,CUH via Togher,78025-00016-1,0,4380_7778208_2140205,4380_514 -4380_77984,290,4380_38821,CUH via Togher,78021-00015-1,0,4380_7778208_2140205,4380_514 -4380_77984,294,4380_38822,CUH via Togher,78027-00018-1,0,4380_7778208_2140205,4380_514 -4380_77984,295,4380_38823,CUH via Togher,78023-00019-1,0,4380_7778208_2140205,4380_514 -4380_77984,293,4380_38824,CUH via Togher,78029-00017-1,0,4380_7778208_2140205,4380_514 -4380_77984,296,4380_38825,CUH via Togher,78628-00021-1,0,4380_7778208_2140233,4380_515 -4380_77984,297,4380_38827,CUH via Togher,78578-00008-1,0,4380_7778208_2140222,4380_514 -4380_77948,297,4380_3883,Ratoath,1758-00008-1,0,4380_7778208_1030107,4380_40 -4380_77984,285,4380_38834,CUH via Togher,78186-00009-1,0,4380_7778208_2140206,4380_514 -4380_77984,286,4380_38835,CUH via Togher,78184-00010-1,0,4380_7778208_2140206,4380_514 -4380_77984,288,4380_38836,CUH via Togher,78188-00011-1,0,4380_7778208_2140206,4380_514 -4380_77984,287,4380_38837,CUH via Togher,78180-00012-1,0,4380_7778208_2140206,4380_514 -4380_77984,291,4380_38838,CUH via Togher,78716-00013-1,0,4380_7778208_2140255,4380_515 -4380_77984,289,4380_38839,CUH via Togher,78182-00014-1,0,4380_7778208_2140206,4380_514 -4380_77948,288,4380_3884,Ratoath,1300-00011-1,0,4380_7778208_1030102,4380_39 -4380_77984,292,4380_38840,CUH via Togher,78185-00016-1,0,4380_7778208_2140206,4380_514 -4380_77984,290,4380_38841,CUH via Togher,78187-00015-1,0,4380_7778208_2140206,4380_514 -4380_77984,294,4380_38842,CUH via Togher,78181-00018-1,0,4380_7778208_2140206,4380_514 -4380_77984,295,4380_38843,CUH via Togher,78183-00019-1,0,4380_7778208_2140206,4380_514 -4380_77984,293,4380_38844,CUH via Togher,78189-00017-1,0,4380_7778208_2140206,4380_514 -4380_77984,296,4380_38845,CUH via Togher,78717-00021-1,0,4380_7778208_2140255,4380_515 -4380_77948,287,4380_3885,Ratoath,1310-00012-1,0,4380_7778208_1030102,4380_39 -4380_77984,297,4380_38853,CUH via Togher,78679-00008-1,0,4380_7778208_2140244,4380_514 -4380_77984,285,4380_38854,CUH via Togher,78434-00009-1,0,4380_7778208_2140208,4380_514 -4380_77984,286,4380_38855,CUH via Togher,78432-00010-1,0,4380_7778208_2140208,4380_514 -4380_77984,288,4380_38856,CUH via Togher,78438-00011-1,0,4380_7778208_2140208,4380_514 -4380_77984,287,4380_38857,CUH via Togher,78436-00012-1,0,4380_7778208_2140208,4380_514 -4380_77984,291,4380_38858,CUH via Togher,78526-00013-1,0,4380_7778208_2140211,4380_515 -4380_77984,289,4380_38859,CUH via Togher,78430-00014-1,0,4380_7778208_2140208,4380_514 -4380_77948,289,4380_3886,Ratoath,1270-00014-1,0,4380_7778208_1030102,4380_39 -4380_77984,292,4380_38860,CUH via Togher,78433-00016-1,0,4380_7778208_2140208,4380_514 -4380_77984,290,4380_38861,CUH via Togher,78435-00015-1,0,4380_7778208_2140208,4380_514 -4380_77984,294,4380_38862,CUH via Togher,78437-00018-1,0,4380_7778208_2140208,4380_514 -4380_77984,295,4380_38863,CUH via Togher,78431-00019-1,0,4380_7778208_2140208,4380_514 -4380_77984,293,4380_38864,CUH via Togher,78439-00017-1,0,4380_7778208_2140208,4380_514 -4380_77984,296,4380_38865,CUH via Togher,78527-00021-1,0,4380_7778208_2140211,4380_515 -4380_77984,291,4380_38867,CUH via Togher,78579-00013-1,0,4380_7778208_2140222,4380_518 -4380_77984,296,4380_38868,CUH via Togher,78580-00021-1,0,4380_7778208_2140222,4380_518 -4380_77948,290,4380_3887,Ratoath,51877-00015-1,0,4380_7778208_1030102,4380_39 -4380_77984,285,4380_38874,CUH via Togher,77870-00009-1,0,4380_7778208_2140204,4380_518 -4380_77984,286,4380_38875,CUH via Togher,77878-00010-1,0,4380_7778208_2140204,4380_518 -4380_77984,288,4380_38876,CUH via Togher,77876-00011-1,0,4380_7778208_2140204,4380_518 -4380_77984,287,4380_38877,CUH via Togher,77874-00012-1,0,4380_7778208_2140204,4380_518 -4380_77984,289,4380_38878,CUH via Togher,77872-00014-1,0,4380_7778208_2140204,4380_518 -4380_77984,292,4380_38879,CUH via Togher,77879-00016-1,0,4380_7778208_2140204,4380_518 -4380_77948,292,4380_3888,Ratoath,51878-00016-1,0,4380_7778208_1030102,4380_39 -4380_77984,290,4380_38880,CUH via Togher,77871-00015-1,0,4380_7778208_2140204,4380_518 -4380_77984,294,4380_38881,CUH via Togher,77875-00018-1,0,4380_7778208_2140204,4380_518 -4380_77984,295,4380_38882,CUH via Togher,77873-00019-1,0,4380_7778208_2140204,4380_518 -4380_77984,293,4380_38883,CUH via Togher,77877-00017-1,0,4380_7778208_2140204,4380_518 -4380_77984,297,4380_38885,CUH via Togher,78528-00008-1,0,4380_7778208_2140211,4380_514 -4380_77948,293,4380_3889,Ratoath,51874-00017-1,0,4380_7778208_1030102,4380_39 -4380_77984,285,4380_38892,CUH via Togher,77548-00009-1,0,4380_7778208_2140201,4380_514 -4380_77984,286,4380_38893,CUH via Togher,77542-00010-1,0,4380_7778208_2140201,4380_514 -4380_77984,288,4380_38894,CUH via Togher,77546-00011-1,0,4380_7778208_2140201,4380_514 -4380_77984,287,4380_38895,CUH via Togher,77544-00012-1,0,4380_7778208_2140201,4380_514 -4380_77984,291,4380_38896,CUH via Togher,78680-00013-1,0,4380_7778208_2140244,4380_515 -4380_77984,289,4380_38897,CUH via Togher,77540-00014-1,0,4380_7778208_2140201,4380_514 -4380_77984,292,4380_38898,CUH via Togher,77543-00016-1,0,4380_7778208_2140201,4380_514 -4380_77984,293,4380_38899,CUH via Togher,77547-00017-1,0,4380_7778208_2140201,4380_514 -4380_77946,286,4380_389,Drogheda,50477-00010-1,1,4380_7778208_1000915,4380_6 -4380_77948,294,4380_3890,Ratoath,51875-00018-1,0,4380_7778208_1030102,4380_39 -4380_77984,290,4380_38900,CUH via Togher,77549-00015-1,0,4380_7778208_2140201,4380_514 -4380_77984,294,4380_38901,CUH via Togher,77545-00018-1,0,4380_7778208_2140201,4380_514 -4380_77984,295,4380_38902,CUH via Togher,77541-00019-1,0,4380_7778208_2140201,4380_514 -4380_77984,296,4380_38903,CUH via Togher,78681-00021-1,0,4380_7778208_2140244,4380_515 -4380_77948,295,4380_3891,Ratoath,51876-00019-1,0,4380_7778208_1030102,4380_39 -4380_77984,297,4380_38911,CUH via Togher,78632-00008-1,0,4380_7778208_2140233,4380_514 -4380_77984,285,4380_38912,CUH via Togher,77674-00009-1,0,4380_7778208_2140202,4380_515 -4380_77984,286,4380_38913,CUH via Togher,77676-00010-1,0,4380_7778208_2140202,4380_515 -4380_77984,288,4380_38914,CUH via Togher,77678-00011-1,0,4380_7778208_2140202,4380_515 -4380_77984,287,4380_38915,CUH via Togher,77672-00012-1,0,4380_7778208_2140202,4380_515 -4380_77984,291,4380_38916,CUH via Togher,78752-00013-1,0,4380_7778208_2140266,4380_519 -4380_77984,289,4380_38917,CUH via Togher,77670-00014-1,0,4380_7778208_2140202,4380_515 -4380_77984,292,4380_38918,CUH via Togher,77677-00016-1,0,4380_7778208_2140202,4380_515 -4380_77984,293,4380_38919,CUH via Togher,77679-00017-1,0,4380_7778208_2140202,4380_515 -4380_77984,290,4380_38920,CUH via Togher,77675-00015-1,0,4380_7778208_2140202,4380_515 -4380_77984,294,4380_38921,CUH via Togher,77673-00018-1,0,4380_7778208_2140202,4380_515 -4380_77984,295,4380_38922,CUH via Togher,77671-00019-1,0,4380_7778208_2140202,4380_515 -4380_77984,296,4380_38923,CUH via Togher,78753-00021-1,0,4380_7778208_2140266,4380_519 -4380_77984,285,4380_38930,CUH via Togher,78048-00009-1,0,4380_7778208_2140205,4380_514 -4380_77984,286,4380_38931,CUH via Togher,78046-00010-1,0,4380_7778208_2140205,4380_514 -4380_77984,288,4380_38932,CUH via Togher,78042-00011-1,0,4380_7778208_2140205,4380_514 -4380_77984,287,4380_38933,CUH via Togher,78040-00012-1,0,4380_7778208_2140205,4380_514 -4380_77984,291,4380_38934,CUH via Togher,78633-00013-1,0,4380_7778208_2140233,4380_515 -4380_77984,289,4380_38935,CUH via Togher,78044-00014-1,0,4380_7778208_2140205,4380_514 -4380_77984,292,4380_38936,CUH via Togher,78047-00016-1,0,4380_7778208_2140205,4380_514 -4380_77984,290,4380_38937,CUH via Togher,78049-00015-1,0,4380_7778208_2140205,4380_514 -4380_77984,294,4380_38938,CUH via Togher,78041-00018-1,0,4380_7778208_2140205,4380_514 -4380_77984,295,4380_38939,CUH via Togher,78045-00019-1,0,4380_7778208_2140205,4380_514 -4380_77984,293,4380_38940,CUH via Togher,78043-00017-1,0,4380_7778208_2140205,4380_514 -4380_77984,296,4380_38941,CUH via Togher,78634-00021-1,0,4380_7778208_2140233,4380_515 -4380_77984,297,4380_38943,CUH via Togher,78584-00008-1,0,4380_7778208_2140222,4380_514 -4380_77984,285,4380_38950,CUH via Togher,78200-00009-1,0,4380_7778208_2140206,4380_514 -4380_77984,286,4380_38951,CUH via Togher,78206-00010-1,0,4380_7778208_2140206,4380_514 -4380_77984,288,4380_38952,CUH via Togher,78202-00011-1,0,4380_7778208_2140206,4380_514 -4380_77984,287,4380_38953,CUH via Togher,78208-00012-1,0,4380_7778208_2140206,4380_514 -4380_77984,291,4380_38954,CUH via Togher,78720-00013-1,0,4380_7778208_2140255,4380_515 -4380_77984,289,4380_38955,CUH via Togher,78204-00014-1,0,4380_7778208_2140206,4380_514 -4380_77984,292,4380_38956,CUH via Togher,78207-00016-1,0,4380_7778208_2140206,4380_514 -4380_77984,290,4380_38957,CUH via Togher,78201-00015-1,0,4380_7778208_2140206,4380_514 -4380_77984,294,4380_38958,CUH via Togher,78209-00018-1,0,4380_7778208_2140206,4380_514 -4380_77984,295,4380_38959,CUH via Togher,78205-00019-1,0,4380_7778208_2140206,4380_514 -4380_77984,293,4380_38960,CUH via Togher,78203-00017-1,0,4380_7778208_2140206,4380_514 -4380_77984,296,4380_38961,CUH via Togher,78721-00021-1,0,4380_7778208_2140255,4380_515 -4380_77984,297,4380_38969,CUH via Togher,78685-00008-1,0,4380_7778208_2140244,4380_514 -4380_77948,285,4380_3897,Ratoath,1470-00009-1,0,4380_7778208_1030104,4380_39 -4380_77984,285,4380_38970,CUH via Togher,78456-00009-1,0,4380_7778208_2140208,4380_515 -4380_77984,286,4380_38971,CUH via Togher,78450-00010-1,0,4380_7778208_2140208,4380_515 -4380_77984,288,4380_38972,CUH via Togher,78454-00011-1,0,4380_7778208_2140208,4380_515 -4380_77984,287,4380_38973,CUH via Togher,78452-00012-1,0,4380_7778208_2140208,4380_515 -4380_77984,291,4380_38974,CUH via Togher,78532-00013-1,0,4380_7778208_2140211,4380_519 -4380_77984,289,4380_38975,CUH via Togher,78458-00014-1,0,4380_7778208_2140208,4380_515 -4380_77984,292,4380_38976,CUH via Togher,78451-00016-1,0,4380_7778208_2140208,4380_515 -4380_77984,290,4380_38977,CUH via Togher,78457-00015-1,0,4380_7778208_2140208,4380_515 -4380_77984,294,4380_38978,CUH via Togher,78453-00018-1,0,4380_7778208_2140208,4380_515 -4380_77984,295,4380_38979,CUH via Togher,78459-00019-1,0,4380_7778208_2140208,4380_515 -4380_77948,286,4380_3898,Ratoath,1482-00010-1,0,4380_7778208_1030104,4380_39 -4380_77984,293,4380_38980,CUH via Togher,78455-00017-1,0,4380_7778208_2140208,4380_515 -4380_77984,296,4380_38981,CUH via Togher,78533-00021-1,0,4380_7778208_2140211,4380_519 -4380_77984,285,4380_38988,CUH via Togher,77892-00009-1,0,4380_7778208_2140204,4380_514 -4380_77984,286,4380_38989,CUH via Togher,77890-00010-1,0,4380_7778208_2140204,4380_514 -4380_77948,288,4380_3899,Ratoath,1494-00011-1,0,4380_7778208_1030104,4380_39 -4380_77984,288,4380_38990,CUH via Togher,77894-00011-1,0,4380_7778208_2140204,4380_514 -4380_77984,287,4380_38991,CUH via Togher,77898-00012-1,0,4380_7778208_2140204,4380_514 -4380_77984,291,4380_38992,CUH via Togher,78585-00013-1,0,4380_7778208_2140222,4380_514 -4380_77984,289,4380_38993,CUH via Togher,77896-00014-1,0,4380_7778208_2140204,4380_514 -4380_77984,292,4380_38994,CUH via Togher,77891-00016-1,0,4380_7778208_2140204,4380_514 -4380_77984,290,4380_38995,CUH via Togher,77893-00015-1,0,4380_7778208_2140204,4380_514 -4380_77984,294,4380_38996,CUH via Togher,77899-00018-1,0,4380_7778208_2140204,4380_514 -4380_77984,295,4380_38997,CUH via Togher,77897-00019-1,0,4380_7778208_2140204,4380_514 -4380_77984,293,4380_38998,CUH via Togher,77895-00017-1,0,4380_7778208_2140204,4380_514 -4380_77984,296,4380_38999,CUH via Togher,78586-00021-1,0,4380_7778208_2140222,4380_514 -4380_77946,297,4380_390,Drogheda,50225-00008-1,1,4380_7778208_1000909,4380_8 -4380_77948,287,4380_3900,Ratoath,1506-00012-1,0,4380_7778208_1030104,4380_39 -4380_77984,297,4380_39001,CUH via Togher,78534-00008-1,0,4380_7778208_2140211,4380_514 -4380_77984,285,4380_39008,CUH via Togher,77568-00009-1,0,4380_7778208_2140201,4380_514 -4380_77984,286,4380_39009,CUH via Togher,77566-00010-1,0,4380_7778208_2140201,4380_514 -4380_77948,289,4380_3901,Ratoath,1458-00014-1,0,4380_7778208_1030104,4380_39 -4380_77984,288,4380_39010,CUH via Togher,77562-00011-1,0,4380_7778208_2140201,4380_514 -4380_77984,287,4380_39011,CUH via Togher,77564-00012-1,0,4380_7778208_2140201,4380_514 -4380_77984,291,4380_39012,CUH via Togher,78686-00013-1,0,4380_7778208_2140244,4380_514 -4380_77984,289,4380_39013,CUH via Togher,77560-00014-1,0,4380_7778208_2140201,4380_514 -4380_77984,292,4380_39014,CUH via Togher,77567-00016-1,0,4380_7778208_2140201,4380_514 -4380_77984,293,4380_39015,CUH via Togher,77563-00017-1,0,4380_7778208_2140201,4380_514 -4380_77984,290,4380_39016,CUH via Togher,77569-00015-1,0,4380_7778208_2140201,4380_514 -4380_77984,294,4380_39017,CUH via Togher,77565-00018-1,0,4380_7778208_2140201,4380_514 -4380_77984,295,4380_39018,CUH via Togher,77561-00019-1,0,4380_7778208_2140201,4380_514 -4380_77984,296,4380_39019,CUH via Togher,78687-00021-1,0,4380_7778208_2140244,4380_514 -4380_77948,290,4380_3902,Ratoath,51998-00015-1,0,4380_7778208_1030104,4380_39 -4380_77984,297,4380_39027,CUH via Togher,78638-00008-1,0,4380_7778208_2140233,4380_514 -4380_77984,285,4380_39028,CUH via Togher,77692-00009-1,0,4380_7778208_2140202,4380_514 -4380_77984,286,4380_39029,CUH via Togher,77690-00010-1,0,4380_7778208_2140202,4380_514 -4380_77948,291,4380_3903,Ratoath,1886-00013-1,0,4380_7778208_1030109,4380_40 -4380_77984,288,4380_39030,CUH via Togher,77698-00011-1,0,4380_7778208_2140202,4380_514 -4380_77984,287,4380_39031,CUH via Togher,77694-00012-1,0,4380_7778208_2140202,4380_514 -4380_77984,291,4380_39032,CUH via Togher,78756-00013-1,0,4380_7778208_2140266,4380_514 -4380_77984,289,4380_39033,CUH via Togher,77696-00014-1,0,4380_7778208_2140202,4380_514 -4380_77984,292,4380_39034,CUH via Togher,77691-00016-1,0,4380_7778208_2140202,4380_514 -4380_77984,293,4380_39035,CUH via Togher,77699-00017-1,0,4380_7778208_2140202,4380_514 -4380_77984,290,4380_39036,CUH via Togher,77693-00015-1,0,4380_7778208_2140202,4380_514 -4380_77984,294,4380_39037,CUH via Togher,77695-00018-1,0,4380_7778208_2140202,4380_514 -4380_77984,295,4380_39038,CUH via Togher,77697-00019-1,0,4380_7778208_2140202,4380_514 -4380_77984,296,4380_39039,CUH via Togher,78757-00021-1,0,4380_7778208_2140266,4380_514 -4380_77948,292,4380_3904,Ratoath,51999-00016-1,0,4380_7778208_1030104,4380_39 -4380_77984,285,4380_39046,CUH via Togher,78066-00009-1,0,4380_7778208_2140205,4380_514 -4380_77984,286,4380_39047,CUH via Togher,78068-00010-1,0,4380_7778208_2140205,4380_514 -4380_77984,288,4380_39048,CUH via Togher,78064-00011-1,0,4380_7778208_2140205,4380_514 -4380_77984,287,4380_39049,CUH via Togher,78060-00012-1,0,4380_7778208_2140205,4380_514 -4380_77948,293,4380_3905,Ratoath,51997-00017-1,0,4380_7778208_1030104,4380_39 -4380_77984,291,4380_39050,CUH via Togher,78639-00013-1,0,4380_7778208_2140233,4380_514 -4380_77984,289,4380_39051,CUH via Togher,78062-00014-1,0,4380_7778208_2140205,4380_514 -4380_77984,292,4380_39052,CUH via Togher,78069-00016-1,0,4380_7778208_2140205,4380_514 -4380_77984,290,4380_39053,CUH via Togher,78067-00015-1,0,4380_7778208_2140205,4380_514 -4380_77984,294,4380_39054,CUH via Togher,78061-00018-1,0,4380_7778208_2140205,4380_514 -4380_77984,295,4380_39055,CUH via Togher,78063-00019-1,0,4380_7778208_2140205,4380_514 -4380_77984,293,4380_39056,CUH via Togher,78065-00017-1,0,4380_7778208_2140205,4380_514 -4380_77984,296,4380_39057,CUH via Togher,78640-00021-1,0,4380_7778208_2140233,4380_514 -4380_77984,297,4380_39059,CUH via Togher,78590-00008-1,0,4380_7778208_2140222,4380_514 -4380_77948,294,4380_3906,Ratoath,51995-00018-1,0,4380_7778208_1030104,4380_39 -4380_77984,285,4380_39066,CUH via Togher,78222-00009-1,0,4380_7778208_2140206,4380_514 -4380_77984,286,4380_39067,CUH via Togher,78224-00010-1,0,4380_7778208_2140206,4380_514 -4380_77984,288,4380_39068,CUH via Togher,78220-00011-1,0,4380_7778208_2140206,4380_514 -4380_77984,287,4380_39069,CUH via Togher,78228-00012-1,0,4380_7778208_2140206,4380_514 -4380_77948,295,4380_3907,Ratoath,51996-00019-1,0,4380_7778208_1030104,4380_39 -4380_77984,291,4380_39070,CUH via Togher,78724-00013-1,0,4380_7778208_2140255,4380_514 -4380_77984,289,4380_39071,CUH via Togher,78226-00014-1,0,4380_7778208_2140206,4380_514 -4380_77984,292,4380_39072,CUH via Togher,78225-00016-1,0,4380_7778208_2140206,4380_514 -4380_77984,290,4380_39073,CUH via Togher,78223-00015-1,0,4380_7778208_2140206,4380_514 -4380_77984,294,4380_39074,CUH via Togher,78229-00018-1,0,4380_7778208_2140206,4380_514 -4380_77984,295,4380_39075,CUH via Togher,78227-00019-1,0,4380_7778208_2140206,4380_514 -4380_77984,293,4380_39076,CUH via Togher,78221-00017-1,0,4380_7778208_2140206,4380_514 -4380_77984,296,4380_39077,CUH via Togher,78725-00021-1,0,4380_7778208_2140255,4380_514 -4380_77948,296,4380_3908,Ratoath,52301-00021-1,0,4380_7778208_1030109,4380_40 -4380_77984,297,4380_39085,CUH via Togher,78691-00008-1,0,4380_7778208_2140244,4380_514 -4380_77984,285,4380_39086,CUH via Togher,78478-00009-1,0,4380_7778208_2140208,4380_514 -4380_77984,286,4380_39087,CUH via Togher,78470-00010-1,0,4380_7778208_2140208,4380_514 -4380_77984,288,4380_39088,CUH via Togher,78476-00011-1,0,4380_7778208_2140208,4380_514 -4380_77984,287,4380_39089,CUH via Togher,78472-00012-1,0,4380_7778208_2140208,4380_514 -4380_77984,291,4380_39090,CUH via Togher,78538-00013-1,0,4380_7778208_2140211,4380_514 -4380_77984,289,4380_39091,CUH via Togher,78474-00014-1,0,4380_7778208_2140208,4380_514 -4380_77984,292,4380_39092,CUH via Togher,78471-00016-1,0,4380_7778208_2140208,4380_514 -4380_77984,290,4380_39093,CUH via Togher,78479-00015-1,0,4380_7778208_2140208,4380_514 -4380_77984,294,4380_39094,CUH via Togher,78473-00018-1,0,4380_7778208_2140208,4380_514 -4380_77984,295,4380_39095,CUH via Togher,78475-00019-1,0,4380_7778208_2140208,4380_514 -4380_77984,293,4380_39096,CUH via Togher,78477-00017-1,0,4380_7778208_2140208,4380_514 -4380_77984,296,4380_39097,CUH via Togher,78539-00021-1,0,4380_7778208_2140211,4380_514 -4380_77946,287,4380_391,Drogheda,50481-00012-1,1,4380_7778208_1000915,4380_6 -4380_77984,285,4380_39104,CUH via Togher,77912-00009-1,0,4380_7778208_2140204,4380_514 -4380_77984,286,4380_39105,CUH via Togher,77910-00010-1,0,4380_7778208_2140204,4380_514 -4380_77984,288,4380_39106,CUH via Togher,77918-00011-1,0,4380_7778208_2140204,4380_514 -4380_77984,287,4380_39107,CUH via Togher,77916-00012-1,0,4380_7778208_2140204,4380_514 -4380_77984,291,4380_39108,CUH via Togher,78591-00013-1,0,4380_7778208_2140222,4380_514 -4380_77984,289,4380_39109,CUH via Togher,77914-00014-1,0,4380_7778208_2140204,4380_514 -4380_77948,297,4380_3911,Ratoath,1338-00008-1,0,4380_7778208_1030102,4380_39 -4380_77984,292,4380_39110,CUH via Togher,77911-00016-1,0,4380_7778208_2140204,4380_514 -4380_77984,290,4380_39111,CUH via Togher,77913-00015-1,0,4380_7778208_2140204,4380_514 -4380_77984,294,4380_39112,CUH via Togher,77917-00018-1,0,4380_7778208_2140204,4380_514 -4380_77984,295,4380_39113,CUH via Togher,77915-00019-1,0,4380_7778208_2140204,4380_514 -4380_77984,293,4380_39114,CUH via Togher,77919-00017-1,0,4380_7778208_2140204,4380_514 -4380_77984,296,4380_39115,CUH via Togher,78592-00021-1,0,4380_7778208_2140222,4380_514 -4380_77984,297,4380_39117,CUH via Togher,78540-00008-1,0,4380_7778208_2140211,4380_514 -4380_77984,285,4380_39124,St. Patrick Street,77580-00009-1,0,4380_7778208_2140201,4380_516 -4380_77984,286,4380_39125,St. Patrick Street,77582-00010-1,0,4380_7778208_2140201,4380_516 -4380_77984,288,4380_39126,St. Patrick Street,77584-00011-1,0,4380_7778208_2140201,4380_516 -4380_77984,287,4380_39127,St. Patrick Street,77588-00012-1,0,4380_7778208_2140201,4380_516 -4380_77984,291,4380_39128,St. Patrick Street,78692-00013-1,0,4380_7778208_2140244,4380_516 -4380_77984,289,4380_39129,St. Patrick Street,77586-00014-1,0,4380_7778208_2140201,4380_516 -4380_77984,292,4380_39130,St. Patrick Street,77583-00016-1,0,4380_7778208_2140201,4380_516 -4380_77984,293,4380_39131,St. Patrick Street,77585-00017-1,0,4380_7778208_2140201,4380_516 -4380_77984,290,4380_39132,St. Patrick Street,77581-00015-1,0,4380_7778208_2140201,4380_516 -4380_77984,294,4380_39133,St. Patrick Street,77589-00018-1,0,4380_7778208_2140201,4380_516 -4380_77984,295,4380_39134,St. Patrick Street,77587-00019-1,0,4380_7778208_2140201,4380_516 -4380_77984,296,4380_39135,St. Patrick Street,78693-00021-1,0,4380_7778208_2140244,4380_516 -4380_77984,285,4380_39142,St. Patrick Street,77712-00009-1,0,4380_7778208_2140202,4380_516 -4380_77984,286,4380_39143,St. Patrick Street,77710-00010-1,0,4380_7778208_2140202,4380_516 -4380_77984,288,4380_39144,St. Patrick Street,77718-00011-1,0,4380_7778208_2140202,4380_516 -4380_77984,287,4380_39145,St. Patrick Street,77716-00012-1,0,4380_7778208_2140202,4380_516 -4380_77984,291,4380_39146,St. Patrick Street,78760-00013-1,0,4380_7778208_2140266,4380_516 -4380_77984,289,4380_39147,St. Patrick Street,77714-00014-1,0,4380_7778208_2140202,4380_516 -4380_77984,292,4380_39148,St. Patrick Street,77711-00016-1,0,4380_7778208_2140202,4380_516 -4380_77984,293,4380_39149,St. Patrick Street,77719-00017-1,0,4380_7778208_2140202,4380_516 -4380_77984,290,4380_39150,St. Patrick Street,77713-00015-1,0,4380_7778208_2140202,4380_516 -4380_77984,294,4380_39151,St. Patrick Street,77717-00018-1,0,4380_7778208_2140202,4380_516 -4380_77984,295,4380_39152,St. Patrick Street,77715-00019-1,0,4380_7778208_2140202,4380_516 -4380_77984,296,4380_39153,St. Patrick Street,78761-00021-1,0,4380_7778208_2140266,4380_516 -4380_77984,285,4380_39159,Glyntown,77604-00009-1,1,4380_7778208_2140202,4380_521 -4380_77984,286,4380_39160,Glyntown,77608-00010-1,1,4380_7778208_2140202,4380_521 -4380_77984,288,4380_39161,Glyntown,77602-00011-1,1,4380_7778208_2140202,4380_521 -4380_77984,287,4380_39162,Glyntown,77606-00012-1,1,4380_7778208_2140202,4380_521 -4380_77984,289,4380_39163,Glyntown,77600-00014-1,1,4380_7778208_2140202,4380_521 -4380_77984,292,4380_39164,Glyntown,77609-00016-1,1,4380_7778208_2140202,4380_521 -4380_77984,293,4380_39165,Glyntown,77603-00017-1,1,4380_7778208_2140202,4380_521 -4380_77984,290,4380_39166,Glyntown,77605-00015-1,1,4380_7778208_2140202,4380_521 -4380_77984,294,4380_39167,Glyntown,77607-00018-1,1,4380_7778208_2140202,4380_521 -4380_77984,295,4380_39168,Glyntown,77601-00019-1,1,4380_7778208_2140202,4380_521 -4380_77948,285,4380_3917,Ratoath,1704-00009-1,0,4380_7778208_1030107,4380_39 -4380_77984,285,4380_39175,Glyntown,77432-00009-1,1,4380_7778208_2140201,4380_521 -4380_77984,286,4380_39176,Glyntown,77434-00010-1,1,4380_7778208_2140201,4380_521 -4380_77984,288,4380_39177,Glyntown,77436-00011-1,1,4380_7778208_2140201,4380_521 -4380_77984,287,4380_39178,Glyntown,77438-00012-1,1,4380_7778208_2140201,4380_521 -4380_77984,291,4380_39179,Glyntown,78594-00013-1,1,4380_7778208_2140233,4380_522 -4380_77948,286,4380_3918,Ratoath,1716-00010-1,0,4380_7778208_1030107,4380_39 -4380_77984,289,4380_39180,Glyntown,77430-00014-1,1,4380_7778208_2140201,4380_521 -4380_77984,292,4380_39181,Glyntown,77435-00016-1,1,4380_7778208_2140201,4380_521 -4380_77984,293,4380_39182,Glyntown,77437-00017-1,1,4380_7778208_2140201,4380_521 -4380_77984,290,4380_39183,Glyntown,77433-00015-1,1,4380_7778208_2140201,4380_521 -4380_77984,294,4380_39184,Glyntown,77439-00018-1,1,4380_7778208_2140201,4380_521 -4380_77984,295,4380_39185,Glyntown,77431-00019-1,1,4380_7778208_2140201,4380_521 -4380_77984,296,4380_39186,Glyntown,78595-00021-1,1,4380_7778208_2140233,4380_522 -4380_77984,297,4380_39188,Glyntown,78545-00008-1,1,4380_7778208_2140222,4380_521 -4380_77948,288,4380_3919,Ratoath,1728-00011-1,0,4380_7778208_1030107,4380_39 -4380_77984,285,4380_39195,Glyntown,77736-00009-1,1,4380_7778208_2140203,4380_521 -4380_77984,286,4380_39196,Glyntown,77732-00010-1,1,4380_7778208_2140203,4380_521 -4380_77984,288,4380_39197,Glyntown,77734-00011-1,1,4380_7778208_2140203,4380_521 -4380_77984,287,4380_39198,Glyntown,77738-00012-1,1,4380_7778208_2140203,4380_521 -4380_77984,291,4380_39199,Glyntown,78694-00013-1,1,4380_7778208_2140255,4380_522 -4380_77946,288,4380_392,Drogheda,50483-00011-1,1,4380_7778208_1000915,4380_6 -4380_77948,287,4380_3920,Ratoath,1740-00012-1,0,4380_7778208_1030107,4380_39 -4380_77984,289,4380_39200,Glyntown,77730-00014-1,1,4380_7778208_2140203,4380_521 -4380_77984,292,4380_39201,Glyntown,77733-00016-1,1,4380_7778208_2140203,4380_521 -4380_77984,293,4380_39202,Glyntown,77735-00017-1,1,4380_7778208_2140203,4380_521 -4380_77984,290,4380_39203,Glyntown,77737-00015-1,1,4380_7778208_2140203,4380_521 -4380_77984,294,4380_39204,Glyntown,77739-00018-1,1,4380_7778208_2140203,4380_521 -4380_77984,295,4380_39205,Glyntown,77731-00019-1,1,4380_7778208_2140203,4380_521 -4380_77984,296,4380_39206,Glyntown,78695-00021-1,1,4380_7778208_2140255,4380_522 -4380_77948,289,4380_3921,Ratoath,1692-00014-1,0,4380_7778208_1030107,4380_39 -4380_77984,297,4380_39214,Glyntown,78646-00008-1,1,4380_7778208_2140244,4380_521 -4380_77984,285,4380_39215,Glyntown,77762-00009-1,1,4380_7778208_2140204,4380_522 -4380_77984,286,4380_39216,Glyntown,77768-00010-1,1,4380_7778208_2140204,4380_522 -4380_77984,288,4380_39217,Glyntown,77760-00011-1,1,4380_7778208_2140204,4380_522 -4380_77984,287,4380_39218,Glyntown,77766-00012-1,1,4380_7778208_2140204,4380_522 -4380_77984,291,4380_39219,Glyntown,78493-00013-1,1,4380_7778208_2140211,4380_521 -4380_77948,290,4380_3922,Ratoath,52182-00015-1,0,4380_7778208_1030107,4380_39 -4380_77984,289,4380_39220,Glyntown,77764-00014-1,1,4380_7778208_2140204,4380_522 -4380_77984,292,4380_39221,Glyntown,77769-00016-1,1,4380_7778208_2140204,4380_522 -4380_77984,290,4380_39222,Glyntown,77763-00015-1,1,4380_7778208_2140204,4380_522 -4380_77984,294,4380_39223,Glyntown,77767-00018-1,1,4380_7778208_2140204,4380_522 -4380_77984,295,4380_39224,Glyntown,77765-00019-1,1,4380_7778208_2140204,4380_522 -4380_77984,293,4380_39225,Glyntown,77761-00017-1,1,4380_7778208_2140204,4380_522 -4380_77984,296,4380_39226,Glyntown,78494-00021-1,1,4380_7778208_2140211,4380_521 -4380_77948,291,4380_3923,Ratoath,1672-00013-1,0,4380_7778208_1030106,4380_40 -4380_77984,285,4380_39233,Glyntown,77934-00009-1,1,4380_7778208_2140205,4380_521 -4380_77984,286,4380_39234,Glyntown,77930-00010-1,1,4380_7778208_2140205,4380_521 -4380_77984,288,4380_39235,Glyntown,77936-00011-1,1,4380_7778208_2140205,4380_521 -4380_77984,287,4380_39236,Glyntown,77932-00012-1,1,4380_7778208_2140205,4380_521 -4380_77984,291,4380_39237,Glyntown,78546-00013-1,1,4380_7778208_2140222,4380_522 -4380_77984,289,4380_39238,Glyntown,77938-00014-1,1,4380_7778208_2140205,4380_521 -4380_77984,292,4380_39239,Glyntown,77931-00016-1,1,4380_7778208_2140205,4380_521 -4380_77948,292,4380_3924,Ratoath,52185-00016-1,0,4380_7778208_1030107,4380_39 -4380_77984,290,4380_39240,Glyntown,77935-00015-1,1,4380_7778208_2140205,4380_521 -4380_77984,294,4380_39241,Glyntown,77933-00018-1,1,4380_7778208_2140205,4380_521 -4380_77984,295,4380_39242,Glyntown,77939-00019-1,1,4380_7778208_2140205,4380_521 -4380_77984,293,4380_39243,Glyntown,77937-00017-1,1,4380_7778208_2140205,4380_521 -4380_77984,296,4380_39244,Glyntown,78547-00021-1,1,4380_7778208_2140222,4380_522 -4380_77984,297,4380_39246,Glyntown,78495-00008-1,1,4380_7778208_2140211,4380_521 -4380_77948,293,4380_3925,Ratoath,52181-00017-1,0,4380_7778208_1030107,4380_39 -4380_77984,285,4380_39253,Glyntown,78092-00009-1,1,4380_7778208_2140206,4380_521 -4380_77984,286,4380_39254,Glyntown,78090-00010-1,1,4380_7778208_2140206,4380_521 -4380_77984,288,4380_39255,Glyntown,78096-00011-1,1,4380_7778208_2140206,4380_521 -4380_77984,287,4380_39256,Glyntown,78098-00012-1,1,4380_7778208_2140206,4380_521 -4380_77984,291,4380_39257,Glyntown,78647-00013-1,1,4380_7778208_2140244,4380_522 -4380_77984,289,4380_39258,Glyntown,78094-00014-1,1,4380_7778208_2140206,4380_521 -4380_77984,292,4380_39259,Glyntown,78091-00016-1,1,4380_7778208_2140206,4380_521 -4380_77948,294,4380_3926,Ratoath,52183-00018-1,0,4380_7778208_1030107,4380_39 -4380_77984,290,4380_39260,Glyntown,78093-00015-1,1,4380_7778208_2140206,4380_521 -4380_77984,294,4380_39261,Glyntown,78099-00018-1,1,4380_7778208_2140206,4380_521 -4380_77984,295,4380_39262,Glyntown,78095-00019-1,1,4380_7778208_2140206,4380_521 -4380_77984,293,4380_39263,Glyntown,78097-00017-1,1,4380_7778208_2140206,4380_521 -4380_77984,296,4380_39264,Glyntown,78648-00021-1,1,4380_7778208_2140244,4380_522 -4380_77948,295,4380_3927,Ratoath,52184-00019-1,0,4380_7778208_1030107,4380_39 -4380_77984,297,4380_39272,Glyntown,78599-00008-1,1,4380_7778208_2140233,4380_521 -4380_77984,285,4380_39273,Glyntown,77620-00009-1,1,4380_7778208_2140202,4380_522 -4380_77984,286,4380_39274,Glyntown,77622-00010-1,1,4380_7778208_2140202,4380_522 -4380_77984,288,4380_39275,Glyntown,77626-00011-1,1,4380_7778208_2140202,4380_522 -4380_77984,287,4380_39276,Glyntown,77624-00012-1,1,4380_7778208_2140202,4380_522 -4380_77984,291,4380_39277,Glyntown,78730-00013-1,1,4380_7778208_2140266,4380_525 -4380_77984,289,4380_39278,Glyntown,77628-00014-1,1,4380_7778208_2140202,4380_522 -4380_77984,292,4380_39279,Glyntown,77623-00016-1,1,4380_7778208_2140202,4380_522 -4380_77948,296,4380_3928,Ratoath,52111-00021-1,0,4380_7778208_1030106,4380_40 -4380_77984,293,4380_39280,Glyntown,77627-00017-1,1,4380_7778208_2140202,4380_522 -4380_77984,290,4380_39281,Glyntown,77621-00015-1,1,4380_7778208_2140202,4380_522 -4380_77984,294,4380_39282,Glyntown,77625-00018-1,1,4380_7778208_2140202,4380_522 -4380_77984,295,4380_39283,Glyntown,77629-00019-1,1,4380_7778208_2140202,4380_522 -4380_77984,296,4380_39284,Glyntown,78731-00021-1,1,4380_7778208_2140266,4380_525 -4380_77984,285,4380_39291,Knockraha,78340-00009-1,1,4380_7778208_2140208,4380_523 -4380_77984,286,4380_39292,Knockraha,78344-00010-1,1,4380_7778208_2140208,4380_523 -4380_77984,288,4380_39293,Knockraha,78348-00011-1,1,4380_7778208_2140208,4380_523 -4380_77984,287,4380_39294,Knockraha,78342-00012-1,1,4380_7778208_2140208,4380_523 -4380_77984,291,4380_39295,Knockraha,78600-00013-1,1,4380_7778208_2140233,4380_527 -4380_77984,289,4380_39296,Knockraha,78346-00014-1,1,4380_7778208_2140208,4380_523 -4380_77984,292,4380_39297,Knockraha,78345-00016-1,1,4380_7778208_2140208,4380_523 -4380_77984,290,4380_39298,Knockraha,78341-00015-1,1,4380_7778208_2140208,4380_523 -4380_77984,294,4380_39299,Knockraha,78343-00018-1,1,4380_7778208_2140208,4380_523 -4380_77946,289,4380_393,Drogheda,50485-00014-1,1,4380_7778208_1000915,4380_6 -4380_77984,295,4380_39300,Knockraha,78347-00019-1,1,4380_7778208_2140208,4380_523 -4380_77984,293,4380_39301,Knockraha,78349-00017-1,1,4380_7778208_2140208,4380_523 -4380_77984,296,4380_39302,Knockraha,78601-00021-1,1,4380_7778208_2140233,4380_527 -4380_77984,297,4380_39304,Glyntown,78551-00008-1,1,4380_7778208_2140222,4380_521 -4380_77984,285,4380_39311,Glyntown,78252-00009-1,1,4380_7778208_2140207,4380_521 -4380_77984,286,4380_39312,Glyntown,78256-00010-1,1,4380_7778208_2140207,4380_521 -4380_77984,288,4380_39313,Glyntown,78254-00011-1,1,4380_7778208_2140207,4380_521 -4380_77984,287,4380_39314,Glyntown,78258-00012-1,1,4380_7778208_2140207,4380_521 -4380_77984,291,4380_39315,Glyntown,78698-00013-1,1,4380_7778208_2140255,4380_522 -4380_77984,289,4380_39316,Glyntown,78250-00014-1,1,4380_7778208_2140207,4380_521 -4380_77984,292,4380_39317,Glyntown,78257-00016-1,1,4380_7778208_2140207,4380_521 -4380_77984,290,4380_39318,Glyntown,78253-00015-1,1,4380_7778208_2140207,4380_521 -4380_77984,294,4380_39319,Glyntown,78259-00018-1,1,4380_7778208_2140207,4380_521 -4380_77984,295,4380_39320,Glyntown,78251-00019-1,1,4380_7778208_2140207,4380_521 -4380_77984,293,4380_39321,Glyntown,78255-00017-1,1,4380_7778208_2140207,4380_521 -4380_77984,296,4380_39322,Glyntown,78699-00021-1,1,4380_7778208_2140255,4380_522 -4380_77984,297,4380_39330,Glyntown,78652-00008-1,1,4380_7778208_2140244,4380_521 -4380_77984,285,4380_39331,Glyntown,77450-00009-1,1,4380_7778208_2140201,4380_522 -4380_77984,286,4380_39332,Glyntown,77458-00010-1,1,4380_7778208_2140201,4380_522 -4380_77984,288,4380_39333,Glyntown,77452-00011-1,1,4380_7778208_2140201,4380_522 -4380_77984,287,4380_39334,Glyntown,77454-00012-1,1,4380_7778208_2140201,4380_522 -4380_77984,291,4380_39335,Glyntown,78499-00013-1,1,4380_7778208_2140211,4380_525 -4380_77984,289,4380_39336,Glyntown,77456-00014-1,1,4380_7778208_2140201,4380_522 -4380_77984,292,4380_39337,Glyntown,77459-00016-1,1,4380_7778208_2140201,4380_522 -4380_77984,293,4380_39338,Glyntown,77453-00017-1,1,4380_7778208_2140201,4380_522 -4380_77984,290,4380_39339,Glyntown,77451-00015-1,1,4380_7778208_2140201,4380_522 -4380_77984,294,4380_39340,Glyntown,77455-00018-1,1,4380_7778208_2140201,4380_522 -4380_77984,295,4380_39341,Glyntown,77457-00019-1,1,4380_7778208_2140201,4380_522 -4380_77984,296,4380_39342,Glyntown,78500-00021-1,1,4380_7778208_2140211,4380_525 -4380_77984,285,4380_39349,Glyntown,77780-00009-1,1,4380_7778208_2140204,4380_521 -4380_77948,285,4380_3935,Ratoath,1372-00009-1,0,4380_7778208_1030103,4380_39 -4380_77984,286,4380_39350,Glyntown,77788-00010-1,1,4380_7778208_2140204,4380_521 -4380_77984,288,4380_39351,Glyntown,77784-00011-1,1,4380_7778208_2140204,4380_521 -4380_77984,287,4380_39352,Glyntown,77786-00012-1,1,4380_7778208_2140204,4380_521 -4380_77984,291,4380_39353,Glyntown,78552-00013-1,1,4380_7778208_2140222,4380_522 -4380_77984,289,4380_39354,Glyntown,77782-00014-1,1,4380_7778208_2140204,4380_521 -4380_77984,292,4380_39355,Glyntown,77789-00016-1,1,4380_7778208_2140204,4380_521 -4380_77984,290,4380_39356,Glyntown,77781-00015-1,1,4380_7778208_2140204,4380_521 -4380_77984,294,4380_39357,Glyntown,77787-00018-1,1,4380_7778208_2140204,4380_521 -4380_77984,295,4380_39358,Glyntown,77783-00019-1,1,4380_7778208_2140204,4380_521 -4380_77984,293,4380_39359,Glyntown,77785-00017-1,1,4380_7778208_2140204,4380_521 -4380_77948,286,4380_3936,Ratoath,1382-00010-1,0,4380_7778208_1030103,4380_39 -4380_77984,296,4380_39360,Glyntown,78553-00021-1,1,4380_7778208_2140222,4380_522 -4380_77984,297,4380_39362,Glyntown,78501-00008-1,1,4380_7778208_2140211,4380_521 -4380_77984,285,4380_39369,Glyntown,77956-00009-1,1,4380_7778208_2140205,4380_521 -4380_77948,288,4380_3937,Ratoath,1392-00011-1,0,4380_7778208_1030103,4380_39 -4380_77984,286,4380_39370,Glyntown,77952-00010-1,1,4380_7778208_2140205,4380_521 -4380_77984,288,4380_39371,Glyntown,77950-00011-1,1,4380_7778208_2140205,4380_521 -4380_77984,287,4380_39372,Glyntown,77954-00012-1,1,4380_7778208_2140205,4380_521 -4380_77984,291,4380_39373,Glyntown,78653-00013-1,1,4380_7778208_2140244,4380_522 -4380_77984,289,4380_39374,Glyntown,77958-00014-1,1,4380_7778208_2140205,4380_521 -4380_77984,292,4380_39375,Glyntown,77953-00016-1,1,4380_7778208_2140205,4380_521 -4380_77984,290,4380_39376,Glyntown,77957-00015-1,1,4380_7778208_2140205,4380_521 -4380_77984,294,4380_39377,Glyntown,77955-00018-1,1,4380_7778208_2140205,4380_521 -4380_77984,295,4380_39378,Glyntown,77959-00019-1,1,4380_7778208_2140205,4380_521 -4380_77984,293,4380_39379,Glyntown,77951-00017-1,1,4380_7778208_2140205,4380_521 -4380_77948,287,4380_3938,Ratoath,1402-00012-1,0,4380_7778208_1030103,4380_39 -4380_77984,296,4380_39380,Glyntown,78654-00021-1,1,4380_7778208_2140244,4380_522 -4380_77984,297,4380_39388,Glyntown,78605-00008-1,1,4380_7778208_2140233,4380_521 -4380_77984,285,4380_39389,Glyntown,78110-00009-1,1,4380_7778208_2140206,4380_522 -4380_77948,289,4380_3939,Ratoath,1362-00014-1,0,4380_7778208_1030103,4380_39 -4380_77984,286,4380_39390,Glyntown,78114-00010-1,1,4380_7778208_2140206,4380_522 -4380_77984,288,4380_39391,Glyntown,78116-00011-1,1,4380_7778208_2140206,4380_522 -4380_77984,287,4380_39392,Glyntown,78112-00012-1,1,4380_7778208_2140206,4380_522 -4380_77984,291,4380_39393,Glyntown,78734-00013-1,1,4380_7778208_2140266,4380_525 -4380_77984,289,4380_39394,Glyntown,78118-00014-1,1,4380_7778208_2140206,4380_522 -4380_77984,292,4380_39395,Glyntown,78115-00016-1,1,4380_7778208_2140206,4380_522 -4380_77984,290,4380_39396,Glyntown,78111-00015-1,1,4380_7778208_2140206,4380_522 -4380_77984,294,4380_39397,Glyntown,78113-00018-1,1,4380_7778208_2140206,4380_522 -4380_77984,295,4380_39398,Glyntown,78119-00019-1,1,4380_7778208_2140206,4380_522 -4380_77984,293,4380_39399,Glyntown,78117-00017-1,1,4380_7778208_2140206,4380_522 -4380_77946,290,4380_394,Drogheda,50480-00015-1,1,4380_7778208_1000915,4380_6 -4380_77948,290,4380_3940,Ratoath,51935-00015-1,0,4380_7778208_1030103,4380_39 -4380_77984,296,4380_39400,Glyntown,78735-00021-1,1,4380_7778208_2140266,4380_525 -4380_77984,285,4380_39407,Glyntown,78362-00009-1,1,4380_7778208_2140208,4380_521 -4380_77984,286,4380_39408,Glyntown,78368-00010-1,1,4380_7778208_2140208,4380_521 -4380_77984,288,4380_39409,Glyntown,78366-00011-1,1,4380_7778208_2140208,4380_521 -4380_77948,292,4380_3941,Ratoath,51938-00016-1,0,4380_7778208_1030103,4380_39 -4380_77984,287,4380_39410,Glyntown,78364-00012-1,1,4380_7778208_2140208,4380_521 -4380_77984,291,4380_39411,Glyntown,78606-00013-1,1,4380_7778208_2140233,4380_522 -4380_77984,289,4380_39412,Glyntown,78360-00014-1,1,4380_7778208_2140208,4380_521 -4380_77984,292,4380_39413,Glyntown,78369-00016-1,1,4380_7778208_2140208,4380_521 -4380_77984,290,4380_39414,Glyntown,78363-00015-1,1,4380_7778208_2140208,4380_521 -4380_77984,294,4380_39415,Glyntown,78365-00018-1,1,4380_7778208_2140208,4380_521 -4380_77984,295,4380_39416,Glyntown,78361-00019-1,1,4380_7778208_2140208,4380_521 -4380_77984,293,4380_39417,Glyntown,78367-00017-1,1,4380_7778208_2140208,4380_521 -4380_77984,296,4380_39418,Glyntown,78607-00021-1,1,4380_7778208_2140233,4380_522 -4380_77948,293,4380_3942,Ratoath,51937-00017-1,0,4380_7778208_1030103,4380_39 -4380_77984,297,4380_39420,Glyntown,78557-00008-1,1,4380_7778208_2140222,4380_521 -4380_77984,285,4380_39427,Glyntown,78272-00009-1,1,4380_7778208_2140207,4380_521 -4380_77984,286,4380_39428,Glyntown,78276-00010-1,1,4380_7778208_2140207,4380_521 -4380_77984,288,4380_39429,Glyntown,78278-00011-1,1,4380_7778208_2140207,4380_521 -4380_77948,294,4380_3943,Ratoath,51939-00018-1,0,4380_7778208_1030103,4380_39 -4380_77984,287,4380_39430,Glyntown,78270-00012-1,1,4380_7778208_2140207,4380_521 -4380_77984,291,4380_39431,Glyntown,78702-00013-1,1,4380_7778208_2140255,4380_522 -4380_77984,289,4380_39432,Glyntown,78274-00014-1,1,4380_7778208_2140207,4380_521 -4380_77984,292,4380_39433,Glyntown,78277-00016-1,1,4380_7778208_2140207,4380_521 -4380_77984,290,4380_39434,Glyntown,78273-00015-1,1,4380_7778208_2140207,4380_521 -4380_77984,294,4380_39435,Glyntown,78271-00018-1,1,4380_7778208_2140207,4380_521 -4380_77984,295,4380_39436,Glyntown,78275-00019-1,1,4380_7778208_2140207,4380_521 -4380_77984,293,4380_39437,Glyntown,78279-00017-1,1,4380_7778208_2140207,4380_521 -4380_77984,296,4380_39438,Glyntown,78703-00021-1,1,4380_7778208_2140255,4380_522 -4380_77948,295,4380_3944,Ratoath,51936-00019-1,0,4380_7778208_1030103,4380_39 -4380_77984,297,4380_39446,Glyntown,78658-00008-1,1,4380_7778208_2140244,4380_521 -4380_77984,285,4380_39447,Glyntown,77472-00009-1,1,4380_7778208_2140201,4380_522 -4380_77984,286,4380_39448,Glyntown,77476-00010-1,1,4380_7778208_2140201,4380_522 -4380_77984,288,4380_39449,Glyntown,77474-00011-1,1,4380_7778208_2140201,4380_522 -4380_77984,287,4380_39450,Glyntown,77470-00012-1,1,4380_7778208_2140201,4380_522 -4380_77984,291,4380_39451,Glyntown,78505-00013-1,1,4380_7778208_2140211,4380_525 -4380_77984,289,4380_39452,Glyntown,77478-00014-1,1,4380_7778208_2140201,4380_522 -4380_77984,292,4380_39453,Glyntown,77477-00016-1,1,4380_7778208_2140201,4380_522 -4380_77984,293,4380_39454,Glyntown,77475-00017-1,1,4380_7778208_2140201,4380_522 -4380_77984,290,4380_39455,Glyntown,77473-00015-1,1,4380_7778208_2140201,4380_522 -4380_77984,294,4380_39456,Glyntown,77471-00018-1,1,4380_7778208_2140201,4380_522 -4380_77984,295,4380_39457,Glyntown,77479-00019-1,1,4380_7778208_2140201,4380_522 -4380_77984,296,4380_39458,Glyntown,78506-00021-1,1,4380_7778208_2140211,4380_525 -4380_77984,285,4380_39465,Glyntown,77802-00009-1,1,4380_7778208_2140204,4380_521 -4380_77984,286,4380_39466,Glyntown,77808-00010-1,1,4380_7778208_2140204,4380_521 -4380_77984,288,4380_39467,Glyntown,77800-00011-1,1,4380_7778208_2140204,4380_521 -4380_77984,287,4380_39468,Glyntown,77804-00012-1,1,4380_7778208_2140204,4380_521 -4380_77984,291,4380_39469,Glyntown,78558-00013-1,1,4380_7778208_2140222,4380_522 -4380_77984,289,4380_39470,Glyntown,77806-00014-1,1,4380_7778208_2140204,4380_521 -4380_77984,292,4380_39471,Glyntown,77809-00016-1,1,4380_7778208_2140204,4380_521 -4380_77984,290,4380_39472,Glyntown,77803-00015-1,1,4380_7778208_2140204,4380_521 -4380_77984,294,4380_39473,Glyntown,77805-00018-1,1,4380_7778208_2140204,4380_521 -4380_77984,295,4380_39474,Glyntown,77807-00019-1,1,4380_7778208_2140204,4380_521 -4380_77984,293,4380_39475,Glyntown,77801-00017-1,1,4380_7778208_2140204,4380_521 -4380_77984,296,4380_39476,Glyntown,78559-00021-1,1,4380_7778208_2140222,4380_522 -4380_77984,297,4380_39478,Glyntown,78507-00008-1,1,4380_7778208_2140211,4380_521 -4380_77984,285,4380_39485,Glyntown,77970-00009-1,1,4380_7778208_2140205,4380_521 -4380_77984,286,4380_39486,Glyntown,77976-00010-1,1,4380_7778208_2140205,4380_521 -4380_77984,288,4380_39487,Glyntown,77972-00011-1,1,4380_7778208_2140205,4380_521 -4380_77984,287,4380_39488,Glyntown,77974-00012-1,1,4380_7778208_2140205,4380_521 -4380_77984,291,4380_39489,Glyntown,78659-00013-1,1,4380_7778208_2140244,4380_522 -4380_77984,289,4380_39490,Glyntown,77978-00014-1,1,4380_7778208_2140205,4380_521 -4380_77984,292,4380_39491,Glyntown,77977-00016-1,1,4380_7778208_2140205,4380_521 -4380_77984,290,4380_39492,Glyntown,77971-00015-1,1,4380_7778208_2140205,4380_521 -4380_77984,294,4380_39493,Glyntown,77975-00018-1,1,4380_7778208_2140205,4380_521 -4380_77984,295,4380_39494,Glyntown,77979-00019-1,1,4380_7778208_2140205,4380_521 -4380_77984,293,4380_39495,Glyntown,77973-00017-1,1,4380_7778208_2140205,4380_521 -4380_77984,296,4380_39496,Glyntown,78660-00021-1,1,4380_7778208_2140244,4380_522 -4380_77946,291,4380_395,Drogheda,50275-00013-1,1,4380_7778208_1000912,4380_9 -4380_77948,291,4380_3950,Ratoath,1528-00013-1,0,4380_7778208_1030104,4380_39 -4380_77984,297,4380_39504,Glyntown,78611-00008-1,1,4380_7778208_2140233,4380_521 -4380_77984,285,4380_39505,Glyntown,78136-00009-1,1,4380_7778208_2140206,4380_522 -4380_77984,286,4380_39506,Glyntown,78130-00010-1,1,4380_7778208_2140206,4380_522 -4380_77984,288,4380_39507,Glyntown,78134-00011-1,1,4380_7778208_2140206,4380_522 -4380_77984,287,4380_39508,Glyntown,78138-00012-1,1,4380_7778208_2140206,4380_522 -4380_77984,291,4380_39509,Glyntown,78738-00013-1,1,4380_7778208_2140266,4380_525 -4380_77948,296,4380_3951,Ratoath,52000-00021-1,0,4380_7778208_1030104,4380_39 -4380_77984,289,4380_39510,Glyntown,78132-00014-1,1,4380_7778208_2140206,4380_522 -4380_77984,292,4380_39511,Glyntown,78131-00016-1,1,4380_7778208_2140206,4380_522 -4380_77984,290,4380_39512,Glyntown,78137-00015-1,1,4380_7778208_2140206,4380_522 -4380_77984,294,4380_39513,Glyntown,78139-00018-1,1,4380_7778208_2140206,4380_522 -4380_77984,295,4380_39514,Glyntown,78133-00019-1,1,4380_7778208_2140206,4380_522 -4380_77984,293,4380_39515,Glyntown,78135-00017-1,1,4380_7778208_2140206,4380_522 -4380_77984,296,4380_39516,Glyntown,78739-00021-1,1,4380_7778208_2140266,4380_525 -4380_77984,285,4380_39523,Knockraha,78386-00009-1,1,4380_7778208_2140208,4380_523 -4380_77984,286,4380_39524,Knockraha,78380-00010-1,1,4380_7778208_2140208,4380_523 -4380_77984,288,4380_39525,Knockraha,78388-00011-1,1,4380_7778208_2140208,4380_523 -4380_77984,287,4380_39526,Knockraha,78384-00012-1,1,4380_7778208_2140208,4380_523 -4380_77984,291,4380_39527,Knockraha,78612-00013-1,1,4380_7778208_2140233,4380_527 -4380_77984,289,4380_39528,Knockraha,78382-00014-1,1,4380_7778208_2140208,4380_523 -4380_77984,292,4380_39529,Knockraha,78381-00016-1,1,4380_7778208_2140208,4380_523 -4380_77984,290,4380_39530,Knockraha,78387-00015-1,1,4380_7778208_2140208,4380_523 -4380_77984,294,4380_39531,Knockraha,78385-00018-1,1,4380_7778208_2140208,4380_523 -4380_77984,295,4380_39532,Knockraha,78383-00019-1,1,4380_7778208_2140208,4380_523 -4380_77984,293,4380_39533,Knockraha,78389-00017-1,1,4380_7778208_2140208,4380_523 -4380_77984,296,4380_39534,Knockraha,78613-00021-1,1,4380_7778208_2140233,4380_527 -4380_77984,297,4380_39536,Glyntown,78563-00008-1,1,4380_7778208_2140222,4380_521 -4380_77948,285,4380_3954,Ratoath,1620-00009-1,0,4380_7778208_1030106,4380_39 -4380_77984,285,4380_39543,Glyntown,78292-00009-1,1,4380_7778208_2140207,4380_521 -4380_77984,286,4380_39544,Glyntown,78298-00010-1,1,4380_7778208_2140207,4380_521 -4380_77984,288,4380_39545,Glyntown,78296-00011-1,1,4380_7778208_2140207,4380_521 -4380_77984,287,4380_39546,Glyntown,78294-00012-1,1,4380_7778208_2140207,4380_521 -4380_77984,291,4380_39547,Glyntown,78706-00013-1,1,4380_7778208_2140255,4380_522 -4380_77984,289,4380_39548,Glyntown,78290-00014-1,1,4380_7778208_2140207,4380_521 -4380_77984,292,4380_39549,Glyntown,78299-00016-1,1,4380_7778208_2140207,4380_521 -4380_77948,286,4380_3955,Ratoath,1632-00010-1,0,4380_7778208_1030106,4380_39 -4380_77984,290,4380_39550,Glyntown,78293-00015-1,1,4380_7778208_2140207,4380_521 -4380_77984,294,4380_39551,Glyntown,78295-00018-1,1,4380_7778208_2140207,4380_521 -4380_77984,295,4380_39552,Glyntown,78291-00019-1,1,4380_7778208_2140207,4380_521 -4380_77984,293,4380_39553,Glyntown,78297-00017-1,1,4380_7778208_2140207,4380_521 -4380_77984,296,4380_39554,Glyntown,78707-00021-1,1,4380_7778208_2140255,4380_522 -4380_77948,297,4380_3956,Ratoath,1598-00008-1,0,4380_7778208_1030105,4380_40 -4380_77984,297,4380_39562,Glyntown,78664-00008-1,1,4380_7778208_2140244,4380_521 -4380_77984,285,4380_39563,Glyntown,77498-00009-1,1,4380_7778208_2140201,4380_522 -4380_77984,286,4380_39564,Glyntown,77492-00010-1,1,4380_7778208_2140201,4380_522 -4380_77984,288,4380_39565,Glyntown,77490-00011-1,1,4380_7778208_2140201,4380_522 -4380_77984,287,4380_39566,Glyntown,77494-00012-1,1,4380_7778208_2140201,4380_522 -4380_77984,291,4380_39567,Glyntown,78511-00013-1,1,4380_7778208_2140211,4380_525 -4380_77984,289,4380_39568,Glyntown,77496-00014-1,1,4380_7778208_2140201,4380_522 -4380_77984,292,4380_39569,Glyntown,77493-00016-1,1,4380_7778208_2140201,4380_522 -4380_77948,288,4380_3957,Ratoath,1644-00011-1,0,4380_7778208_1030106,4380_39 -4380_77984,293,4380_39570,Glyntown,77491-00017-1,1,4380_7778208_2140201,4380_522 -4380_77984,290,4380_39571,Glyntown,77499-00015-1,1,4380_7778208_2140201,4380_522 -4380_77984,294,4380_39572,Glyntown,77495-00018-1,1,4380_7778208_2140201,4380_522 -4380_77984,295,4380_39573,Glyntown,77497-00019-1,1,4380_7778208_2140201,4380_522 -4380_77984,296,4380_39574,Glyntown,78512-00021-1,1,4380_7778208_2140211,4380_525 -4380_77948,287,4380_3958,Ratoath,1656-00012-1,0,4380_7778208_1030106,4380_39 -4380_77984,285,4380_39581,Glyntown,77822-00009-1,1,4380_7778208_2140204,4380_521 -4380_77984,286,4380_39582,Glyntown,77824-00010-1,1,4380_7778208_2140204,4380_521 -4380_77984,288,4380_39583,Glyntown,77820-00011-1,1,4380_7778208_2140204,4380_521 -4380_77984,287,4380_39584,Glyntown,77826-00012-1,1,4380_7778208_2140204,4380_521 -4380_77984,291,4380_39585,Glyntown,78564-00013-1,1,4380_7778208_2140222,4380_522 -4380_77984,289,4380_39586,Glyntown,77828-00014-1,1,4380_7778208_2140204,4380_521 -4380_77984,292,4380_39587,Glyntown,77825-00016-1,1,4380_7778208_2140204,4380_521 -4380_77984,290,4380_39588,Glyntown,77823-00015-1,1,4380_7778208_2140204,4380_521 -4380_77984,294,4380_39589,Glyntown,77827-00018-1,1,4380_7778208_2140204,4380_521 -4380_77948,289,4380_3959,Ratoath,1608-00014-1,0,4380_7778208_1030106,4380_39 -4380_77984,295,4380_39590,Glyntown,77829-00019-1,1,4380_7778208_2140204,4380_521 -4380_77984,293,4380_39591,Glyntown,77821-00017-1,1,4380_7778208_2140204,4380_521 -4380_77984,296,4380_39592,Glyntown,78565-00021-1,1,4380_7778208_2140222,4380_522 -4380_77984,297,4380_39594,Glyntown,78513-00008-1,1,4380_7778208_2140211,4380_521 -4380_77946,292,4380_396,Drogheda,50478-00016-1,1,4380_7778208_1000915,4380_6 -4380_77948,290,4380_3960,Ratoath,52116-00015-1,0,4380_7778208_1030106,4380_39 -4380_77984,285,4380_39601,Glyntown,77998-00009-1,1,4380_7778208_2140205,4380_521 -4380_77984,286,4380_39602,Glyntown,77996-00010-1,1,4380_7778208_2140205,4380_521 -4380_77984,288,4380_39603,Glyntown,77990-00011-1,1,4380_7778208_2140205,4380_521 -4380_77984,287,4380_39604,Glyntown,77992-00012-1,1,4380_7778208_2140205,4380_521 -4380_77984,291,4380_39605,Glyntown,78665-00013-1,1,4380_7778208_2140244,4380_522 -4380_77984,289,4380_39606,Glyntown,77994-00014-1,1,4380_7778208_2140205,4380_521 -4380_77984,292,4380_39607,Glyntown,77997-00016-1,1,4380_7778208_2140205,4380_521 -4380_77984,290,4380_39608,Glyntown,77999-00015-1,1,4380_7778208_2140205,4380_521 -4380_77984,294,4380_39609,Glyntown,77993-00018-1,1,4380_7778208_2140205,4380_521 -4380_77948,292,4380_3961,Ratoath,52115-00016-1,0,4380_7778208_1030106,4380_39 -4380_77984,295,4380_39610,Glyntown,77995-00019-1,1,4380_7778208_2140205,4380_521 -4380_77984,293,4380_39611,Glyntown,77991-00017-1,1,4380_7778208_2140205,4380_521 -4380_77984,296,4380_39612,Glyntown,78666-00021-1,1,4380_7778208_2140244,4380_522 -4380_77948,293,4380_3962,Ratoath,52114-00017-1,0,4380_7778208_1030106,4380_39 -4380_77984,297,4380_39620,Glyntown,78617-00008-1,1,4380_7778208_2140233,4380_521 -4380_77984,285,4380_39621,Glyntown,78150-00009-1,1,4380_7778208_2140206,4380_522 -4380_77984,286,4380_39622,Glyntown,78152-00010-1,1,4380_7778208_2140206,4380_522 -4380_77984,288,4380_39623,Glyntown,78156-00011-1,1,4380_7778208_2140206,4380_522 -4380_77984,287,4380_39624,Glyntown,78158-00012-1,1,4380_7778208_2140206,4380_522 -4380_77984,291,4380_39625,Glyntown,78742-00013-1,1,4380_7778208_2140266,4380_525 -4380_77984,289,4380_39626,Glyntown,78154-00014-1,1,4380_7778208_2140206,4380_522 -4380_77984,292,4380_39627,Glyntown,78153-00016-1,1,4380_7778208_2140206,4380_522 -4380_77984,290,4380_39628,Glyntown,78151-00015-1,1,4380_7778208_2140206,4380_522 -4380_77984,294,4380_39629,Glyntown,78159-00018-1,1,4380_7778208_2140206,4380_522 -4380_77948,294,4380_3963,Ratoath,52113-00018-1,0,4380_7778208_1030106,4380_39 -4380_77984,295,4380_39630,Glyntown,78155-00019-1,1,4380_7778208_2140206,4380_522 -4380_77984,293,4380_39631,Glyntown,78157-00017-1,1,4380_7778208_2140206,4380_522 -4380_77984,296,4380_39632,Glyntown,78743-00021-1,1,4380_7778208_2140266,4380_525 -4380_77984,285,4380_39639,Glyntown,78406-00009-1,1,4380_7778208_2140208,4380_521 -4380_77948,295,4380_3964,Ratoath,52112-00019-1,0,4380_7778208_1030106,4380_39 -4380_77984,286,4380_39640,Glyntown,78400-00010-1,1,4380_7778208_2140208,4380_521 -4380_77984,288,4380_39641,Glyntown,78404-00011-1,1,4380_7778208_2140208,4380_521 -4380_77984,287,4380_39642,Glyntown,78402-00012-1,1,4380_7778208_2140208,4380_521 -4380_77984,291,4380_39643,Glyntown,78618-00013-1,1,4380_7778208_2140233,4380_522 -4380_77984,289,4380_39644,Glyntown,78408-00014-1,1,4380_7778208_2140208,4380_521 -4380_77984,292,4380_39645,Glyntown,78401-00016-1,1,4380_7778208_2140208,4380_521 -4380_77984,290,4380_39646,Glyntown,78407-00015-1,1,4380_7778208_2140208,4380_521 -4380_77984,294,4380_39647,Glyntown,78403-00018-1,1,4380_7778208_2140208,4380_521 -4380_77984,295,4380_39648,Glyntown,78409-00019-1,1,4380_7778208_2140208,4380_521 -4380_77984,293,4380_39649,Glyntown,78405-00017-1,1,4380_7778208_2140208,4380_521 -4380_77984,296,4380_39650,Glyntown,78619-00021-1,1,4380_7778208_2140233,4380_522 -4380_77984,297,4380_39652,Glyntown,78569-00008-1,1,4380_7778208_2140222,4380_521 -4380_77984,285,4380_39659,Glyntown,78310-00009-1,1,4380_7778208_2140207,4380_521 -4380_77984,286,4380_39660,Glyntown,78314-00010-1,1,4380_7778208_2140207,4380_521 -4380_77984,288,4380_39661,Glyntown,78312-00011-1,1,4380_7778208_2140207,4380_521 -4380_77984,287,4380_39662,Glyntown,78318-00012-1,1,4380_7778208_2140207,4380_521 -4380_77984,291,4380_39663,Glyntown,78710-00013-1,1,4380_7778208_2140255,4380_522 -4380_77984,289,4380_39664,Glyntown,78316-00014-1,1,4380_7778208_2140207,4380_521 -4380_77984,292,4380_39665,Glyntown,78315-00016-1,1,4380_7778208_2140207,4380_521 -4380_77984,290,4380_39666,Glyntown,78311-00015-1,1,4380_7778208_2140207,4380_521 -4380_77984,294,4380_39667,Glyntown,78319-00018-1,1,4380_7778208_2140207,4380_521 -4380_77984,295,4380_39668,Glyntown,78317-00019-1,1,4380_7778208_2140207,4380_521 -4380_77984,293,4380_39669,Glyntown,78313-00017-1,1,4380_7778208_2140207,4380_521 -4380_77984,296,4380_39670,Glyntown,78711-00021-1,1,4380_7778208_2140255,4380_522 -4380_77984,297,4380_39678,Glyntown,78670-00008-1,1,4380_7778208_2140244,4380_521 -4380_77984,285,4380_39679,Glyntown,77514-00009-1,1,4380_7778208_2140201,4380_522 -4380_77984,286,4380_39680,Glyntown,77518-00010-1,1,4380_7778208_2140201,4380_522 -4380_77984,288,4380_39681,Glyntown,77510-00011-1,1,4380_7778208_2140201,4380_522 -4380_77984,287,4380_39682,Glyntown,77516-00012-1,1,4380_7778208_2140201,4380_522 -4380_77984,291,4380_39683,Glyntown,78517-00013-1,1,4380_7778208_2140211,4380_525 -4380_77984,289,4380_39684,Glyntown,77512-00014-1,1,4380_7778208_2140201,4380_522 -4380_77984,292,4380_39685,Glyntown,77519-00016-1,1,4380_7778208_2140201,4380_522 -4380_77984,293,4380_39686,Glyntown,77511-00017-1,1,4380_7778208_2140201,4380_522 -4380_77984,290,4380_39687,Glyntown,77515-00015-1,1,4380_7778208_2140201,4380_522 -4380_77984,294,4380_39688,Glyntown,77517-00018-1,1,4380_7778208_2140201,4380_522 -4380_77984,295,4380_39689,Glyntown,77513-00019-1,1,4380_7778208_2140201,4380_522 -4380_77984,296,4380_39690,Glyntown,78518-00021-1,1,4380_7778208_2140211,4380_525 -4380_77984,285,4380_39697,Knockraha,77842-00009-1,1,4380_7778208_2140204,4380_523 -4380_77984,286,4380_39698,Knockraha,77848-00010-1,1,4380_7778208_2140204,4380_523 -4380_77984,288,4380_39699,Knockraha,77846-00011-1,1,4380_7778208_2140204,4380_523 -4380_77946,293,4380_397,Drogheda,50484-00017-1,1,4380_7778208_1000915,4380_6 -4380_77948,285,4380_3970,Ratoath,1848-00009-1,0,4380_7778208_1030109,4380_39 -4380_77984,287,4380_39700,Knockraha,77844-00012-1,1,4380_7778208_2140204,4380_523 -4380_77984,291,4380_39701,Knockraha,78570-00013-1,1,4380_7778208_2140222,4380_527 -4380_77984,289,4380_39702,Knockraha,77840-00014-1,1,4380_7778208_2140204,4380_523 -4380_77984,292,4380_39703,Knockraha,77849-00016-1,1,4380_7778208_2140204,4380_523 -4380_77984,290,4380_39704,Knockraha,77843-00015-1,1,4380_7778208_2140204,4380_523 -4380_77984,294,4380_39705,Knockraha,77845-00018-1,1,4380_7778208_2140204,4380_523 -4380_77984,295,4380_39706,Knockraha,77841-00019-1,1,4380_7778208_2140204,4380_523 -4380_77984,293,4380_39707,Knockraha,77847-00017-1,1,4380_7778208_2140204,4380_523 -4380_77984,296,4380_39708,Knockraha,78571-00021-1,1,4380_7778208_2140222,4380_527 -4380_77948,286,4380_3971,Ratoath,1858-00010-1,0,4380_7778208_1030109,4380_39 -4380_77984,297,4380_39710,Glyntown,78519-00008-1,1,4380_7778208_2140211,4380_521 -4380_77984,285,4380_39717,Glyntown,77640-00009-1,1,4380_7778208_2140202,4380_521 -4380_77984,286,4380_39718,Glyntown,77648-00010-1,1,4380_7778208_2140202,4380_521 -4380_77984,288,4380_39719,Glyntown,77646-00011-1,1,4380_7778208_2140202,4380_521 -4380_77948,288,4380_3972,Ratoath,1868-00011-1,0,4380_7778208_1030109,4380_39 -4380_77984,287,4380_39720,Glyntown,77644-00012-1,1,4380_7778208_2140202,4380_521 -4380_77984,291,4380_39721,Glyntown,78671-00013-1,1,4380_7778208_2140244,4380_522 -4380_77984,289,4380_39722,Glyntown,77642-00014-1,1,4380_7778208_2140202,4380_521 -4380_77984,292,4380_39723,Glyntown,77649-00016-1,1,4380_7778208_2140202,4380_521 -4380_77984,293,4380_39724,Glyntown,77647-00017-1,1,4380_7778208_2140202,4380_521 -4380_77984,290,4380_39725,Glyntown,77641-00015-1,1,4380_7778208_2140202,4380_521 -4380_77984,294,4380_39726,Glyntown,77645-00018-1,1,4380_7778208_2140202,4380_521 -4380_77984,295,4380_39727,Glyntown,77643-00019-1,1,4380_7778208_2140202,4380_521 -4380_77984,296,4380_39728,Glyntown,78672-00021-1,1,4380_7778208_2140244,4380_522 -4380_77948,287,4380_3973,Ratoath,1878-00012-1,0,4380_7778208_1030109,4380_39 -4380_77984,297,4380_39736,Glyntown,78623-00008-1,1,4380_7778208_2140233,4380_521 -4380_77984,285,4380_39737,Glyntown,78016-00009-1,1,4380_7778208_2140205,4380_522 -4380_77984,286,4380_39738,Glyntown,78014-00010-1,1,4380_7778208_2140205,4380_522 -4380_77984,288,4380_39739,Glyntown,78012-00011-1,1,4380_7778208_2140205,4380_522 -4380_77948,289,4380_3974,Ratoath,1838-00014-1,0,4380_7778208_1030109,4380_39 -4380_77984,287,4380_39740,Glyntown,78010-00012-1,1,4380_7778208_2140205,4380_522 -4380_77984,291,4380_39741,Glyntown,78746-00013-1,1,4380_7778208_2140266,4380_525 -4380_77984,289,4380_39742,Glyntown,78018-00014-1,1,4380_7778208_2140205,4380_522 -4380_77984,292,4380_39743,Glyntown,78015-00016-1,1,4380_7778208_2140205,4380_522 -4380_77984,290,4380_39744,Glyntown,78017-00015-1,1,4380_7778208_2140205,4380_522 -4380_77984,294,4380_39745,Glyntown,78011-00018-1,1,4380_7778208_2140205,4380_522 -4380_77984,295,4380_39746,Glyntown,78019-00019-1,1,4380_7778208_2140205,4380_522 -4380_77984,293,4380_39747,Glyntown,78013-00017-1,1,4380_7778208_2140205,4380_522 -4380_77984,296,4380_39748,Glyntown,78747-00021-1,1,4380_7778208_2140266,4380_525 -4380_77948,290,4380_3975,Ratoath,52307-00015-1,0,4380_7778208_1030109,4380_39 -4380_77984,285,4380_39755,Glyntown,78170-00009-1,1,4380_7778208_2140206,4380_521 -4380_77984,286,4380_39756,Glyntown,78172-00010-1,1,4380_7778208_2140206,4380_521 -4380_77984,288,4380_39757,Glyntown,78178-00011-1,1,4380_7778208_2140206,4380_521 -4380_77984,287,4380_39758,Glyntown,78174-00012-1,1,4380_7778208_2140206,4380_521 -4380_77984,291,4380_39759,Glyntown,78624-00013-1,1,4380_7778208_2140233,4380_522 -4380_77948,291,4380_3976,Ratoath,1953-00013-1,0,4380_7778208_1030110,4380_40 -4380_77984,289,4380_39760,Glyntown,78176-00014-1,1,4380_7778208_2140206,4380_521 -4380_77984,292,4380_39761,Glyntown,78173-00016-1,1,4380_7778208_2140206,4380_521 -4380_77984,290,4380_39762,Glyntown,78171-00015-1,1,4380_7778208_2140206,4380_521 -4380_77984,294,4380_39763,Glyntown,78175-00018-1,1,4380_7778208_2140206,4380_521 -4380_77984,295,4380_39764,Glyntown,78177-00019-1,1,4380_7778208_2140206,4380_521 -4380_77984,293,4380_39765,Glyntown,78179-00017-1,1,4380_7778208_2140206,4380_521 -4380_77984,296,4380_39766,Glyntown,78625-00021-1,1,4380_7778208_2140233,4380_522 -4380_77984,297,4380_39768,Glyntown,78575-00008-1,1,4380_7778208_2140222,4380_521 -4380_77948,292,4380_3977,Ratoath,52305-00016-1,0,4380_7778208_1030109,4380_39 -4380_77984,285,4380_39775,Glyntown,78422-00009-1,1,4380_7778208_2140208,4380_521 -4380_77984,286,4380_39776,Glyntown,78428-00010-1,1,4380_7778208_2140208,4380_521 -4380_77984,288,4380_39777,Glyntown,78424-00011-1,1,4380_7778208_2140208,4380_521 -4380_77984,287,4380_39778,Glyntown,78420-00012-1,1,4380_7778208_2140208,4380_521 -4380_77984,291,4380_39779,Glyntown,78714-00013-1,1,4380_7778208_2140255,4380_522 -4380_77948,293,4380_3978,Ratoath,52306-00017-1,0,4380_7778208_1030109,4380_39 -4380_77984,289,4380_39780,Glyntown,78426-00014-1,1,4380_7778208_2140208,4380_521 -4380_77984,292,4380_39781,Glyntown,78429-00016-1,1,4380_7778208_2140208,4380_521 -4380_77984,290,4380_39782,Glyntown,78423-00015-1,1,4380_7778208_2140208,4380_521 -4380_77984,294,4380_39783,Glyntown,78421-00018-1,1,4380_7778208_2140208,4380_521 -4380_77984,295,4380_39784,Glyntown,78427-00019-1,1,4380_7778208_2140208,4380_521 -4380_77984,293,4380_39785,Glyntown,78425-00017-1,1,4380_7778208_2140208,4380_521 -4380_77984,296,4380_39786,Glyntown,78715-00021-1,1,4380_7778208_2140255,4380_522 -4380_77948,294,4380_3979,Ratoath,52303-00018-1,0,4380_7778208_1030109,4380_39 -4380_77984,297,4380_39794,Glyntown,78676-00008-1,1,4380_7778208_2140244,4380_521 -4380_77984,285,4380_39795,Glyntown,78332-00009-1,1,4380_7778208_2140207,4380_522 -4380_77984,286,4380_39796,Glyntown,78336-00010-1,1,4380_7778208_2140207,4380_522 -4380_77984,288,4380_39797,Glyntown,78338-00011-1,1,4380_7778208_2140207,4380_522 -4380_77984,287,4380_39798,Glyntown,78334-00012-1,1,4380_7778208_2140207,4380_522 -4380_77984,291,4380_39799,Glyntown,78523-00013-1,1,4380_7778208_2140211,4380_525 -4380_77946,294,4380_398,Drogheda,50482-00018-1,1,4380_7778208_1000915,4380_6 -4380_77948,295,4380_3980,Ratoath,52304-00019-1,0,4380_7778208_1030109,4380_39 -4380_77984,289,4380_39800,Glyntown,78330-00014-1,1,4380_7778208_2140207,4380_522 -4380_77984,292,4380_39801,Glyntown,78337-00016-1,1,4380_7778208_2140207,4380_522 -4380_77984,290,4380_39802,Glyntown,78333-00015-1,1,4380_7778208_2140207,4380_522 -4380_77984,294,4380_39803,Glyntown,78335-00018-1,1,4380_7778208_2140207,4380_522 -4380_77984,295,4380_39804,Glyntown,78331-00019-1,1,4380_7778208_2140207,4380_522 -4380_77984,293,4380_39805,Glyntown,78339-00017-1,1,4380_7778208_2140207,4380_522 -4380_77984,296,4380_39806,Glyntown,78524-00021-1,1,4380_7778208_2140211,4380_525 -4380_77948,296,4380_3981,Ratoath,52367-00021-1,0,4380_7778208_1030110,4380_40 -4380_77984,285,4380_39813,Knockraha,77864-00009-1,1,4380_7778208_2140204,4380_523 -4380_77984,286,4380_39814,Knockraha,77868-00010-1,1,4380_7778208_2140204,4380_523 -4380_77984,288,4380_39815,Knockraha,77860-00011-1,1,4380_7778208_2140204,4380_523 -4380_77984,287,4380_39816,Knockraha,77862-00012-1,1,4380_7778208_2140204,4380_523 -4380_77984,291,4380_39817,Knockraha,78576-00013-1,1,4380_7778208_2140222,4380_527 -4380_77984,289,4380_39818,Knockraha,77866-00014-1,1,4380_7778208_2140204,4380_523 -4380_77984,292,4380_39819,Knockraha,77869-00016-1,1,4380_7778208_2140204,4380_523 -4380_77984,290,4380_39820,Knockraha,77865-00015-1,1,4380_7778208_2140204,4380_523 -4380_77984,294,4380_39821,Knockraha,77863-00018-1,1,4380_7778208_2140204,4380_523 -4380_77984,295,4380_39822,Knockraha,77867-00019-1,1,4380_7778208_2140204,4380_523 -4380_77984,293,4380_39823,Knockraha,77861-00017-1,1,4380_7778208_2140204,4380_523 -4380_77984,296,4380_39824,Knockraha,78577-00021-1,1,4380_7778208_2140222,4380_527 -4380_77984,297,4380_39826,Glyntown,78525-00008-1,1,4380_7778208_2140211,4380_521 -4380_77984,285,4380_39833,Glyntown,77534-00009-1,1,4380_7778208_2140201,4380_521 -4380_77984,286,4380_39834,Glyntown,77536-00010-1,1,4380_7778208_2140201,4380_521 -4380_77984,288,4380_39835,Glyntown,77538-00011-1,1,4380_7778208_2140201,4380_521 -4380_77984,287,4380_39836,Glyntown,77532-00012-1,1,4380_7778208_2140201,4380_521 -4380_77984,291,4380_39837,Glyntown,78677-00013-1,1,4380_7778208_2140244,4380_522 -4380_77984,289,4380_39838,Glyntown,77530-00014-1,1,4380_7778208_2140201,4380_521 -4380_77984,292,4380_39839,Glyntown,77537-00016-1,1,4380_7778208_2140201,4380_521 -4380_77984,293,4380_39840,Glyntown,77539-00017-1,1,4380_7778208_2140201,4380_521 -4380_77984,290,4380_39841,Glyntown,77535-00015-1,1,4380_7778208_2140201,4380_521 -4380_77984,294,4380_39842,Glyntown,77533-00018-1,1,4380_7778208_2140201,4380_521 -4380_77984,295,4380_39843,Glyntown,77531-00019-1,1,4380_7778208_2140201,4380_521 -4380_77984,296,4380_39844,Glyntown,78678-00021-1,1,4380_7778208_2140244,4380_522 -4380_77984,297,4380_39852,Glyntown,78629-00008-1,1,4380_7778208_2140233,4380_521 -4380_77984,285,4380_39853,Glyntown,77668-00009-1,1,4380_7778208_2140202,4380_522 -4380_77984,286,4380_39854,Glyntown,77660-00010-1,1,4380_7778208_2140202,4380_522 -4380_77984,288,4380_39855,Glyntown,77664-00011-1,1,4380_7778208_2140202,4380_522 -4380_77984,287,4380_39856,Glyntown,77666-00012-1,1,4380_7778208_2140202,4380_522 -4380_77984,291,4380_39857,Glyntown,78750-00013-1,1,4380_7778208_2140266,4380_525 -4380_77984,289,4380_39858,Glyntown,77662-00014-1,1,4380_7778208_2140202,4380_522 -4380_77984,292,4380_39859,Glyntown,77661-00016-1,1,4380_7778208_2140202,4380_522 -4380_77984,293,4380_39860,Glyntown,77665-00017-1,1,4380_7778208_2140202,4380_522 -4380_77984,290,4380_39861,Glyntown,77669-00015-1,1,4380_7778208_2140202,4380_522 -4380_77984,294,4380_39862,Glyntown,77667-00018-1,1,4380_7778208_2140202,4380_522 -4380_77984,295,4380_39863,Glyntown,77663-00019-1,1,4380_7778208_2140202,4380_522 -4380_77984,296,4380_39864,Glyntown,78751-00021-1,1,4380_7778208_2140266,4380_525 -4380_77984,285,4380_39871,Glyntown,78032-00009-1,1,4380_7778208_2140205,4380_521 -4380_77984,286,4380_39872,Glyntown,78036-00010-1,1,4380_7778208_2140205,4380_521 -4380_77984,288,4380_39873,Glyntown,78030-00011-1,1,4380_7778208_2140205,4380_521 -4380_77984,287,4380_39874,Glyntown,78038-00012-1,1,4380_7778208_2140205,4380_521 -4380_77984,291,4380_39875,Glyntown,78630-00013-1,1,4380_7778208_2140233,4380_522 -4380_77984,289,4380_39876,Glyntown,78034-00014-1,1,4380_7778208_2140205,4380_521 -4380_77984,292,4380_39877,Glyntown,78037-00016-1,1,4380_7778208_2140205,4380_521 -4380_77984,290,4380_39878,Glyntown,78033-00015-1,1,4380_7778208_2140205,4380_521 -4380_77984,294,4380_39879,Glyntown,78039-00018-1,1,4380_7778208_2140205,4380_521 -4380_77948,285,4380_3988,Ratoath,1917-00009-1,0,4380_7778208_1030110,4380_39 -4380_77984,295,4380_39880,Glyntown,78035-00019-1,1,4380_7778208_2140205,4380_521 -4380_77984,293,4380_39881,Glyntown,78031-00017-1,1,4380_7778208_2140205,4380_521 -4380_77984,296,4380_39882,Glyntown,78631-00021-1,1,4380_7778208_2140233,4380_522 -4380_77984,297,4380_39884,Glyntown,78581-00008-1,1,4380_7778208_2140222,4380_521 -4380_77948,286,4380_3989,Ratoath,1927-00010-1,0,4380_7778208_1030110,4380_39 -4380_77984,285,4380_39891,Glyntown,78198-00009-1,1,4380_7778208_2140206,4380_521 -4380_77984,286,4380_39892,Glyntown,78190-00010-1,1,4380_7778208_2140206,4380_521 -4380_77984,288,4380_39893,Glyntown,78196-00011-1,1,4380_7778208_2140206,4380_521 -4380_77984,287,4380_39894,Glyntown,78192-00012-1,1,4380_7778208_2140206,4380_521 -4380_77984,291,4380_39895,Glyntown,78718-00013-1,1,4380_7778208_2140255,4380_522 -4380_77984,289,4380_39896,Glyntown,78194-00014-1,1,4380_7778208_2140206,4380_521 -4380_77984,292,4380_39897,Glyntown,78191-00016-1,1,4380_7778208_2140206,4380_521 -4380_77984,290,4380_39898,Glyntown,78199-00015-1,1,4380_7778208_2140206,4380_521 -4380_77984,294,4380_39899,Glyntown,78193-00018-1,1,4380_7778208_2140206,4380_521 -4380_77946,295,4380_399,Drogheda,50486-00019-1,1,4380_7778208_1000915,4380_6 -4380_77948,288,4380_3990,Ratoath,1937-00011-1,0,4380_7778208_1030110,4380_39 -4380_77984,295,4380_39900,Glyntown,78195-00019-1,1,4380_7778208_2140206,4380_521 -4380_77984,293,4380_39901,Glyntown,78197-00017-1,1,4380_7778208_2140206,4380_521 -4380_77984,296,4380_39902,Glyntown,78719-00021-1,1,4380_7778208_2140255,4380_522 -4380_77948,287,4380_3991,Ratoath,1947-00012-1,0,4380_7778208_1030110,4380_39 -4380_77984,297,4380_39910,Glyntown,78682-00008-1,1,4380_7778208_2140244,4380_521 -4380_77984,285,4380_39911,Glyntown,78446-00009-1,1,4380_7778208_2140208,4380_522 -4380_77984,286,4380_39912,Glyntown,78448-00010-1,1,4380_7778208_2140208,4380_522 -4380_77984,288,4380_39913,Glyntown,78440-00011-1,1,4380_7778208_2140208,4380_522 -4380_77984,287,4380_39914,Glyntown,78444-00012-1,1,4380_7778208_2140208,4380_522 -4380_77984,291,4380_39915,Glyntown,78529-00013-1,1,4380_7778208_2140211,4380_525 -4380_77984,289,4380_39916,Glyntown,78442-00014-1,1,4380_7778208_2140208,4380_522 -4380_77984,292,4380_39917,Glyntown,78449-00016-1,1,4380_7778208_2140208,4380_522 -4380_77984,290,4380_39918,Glyntown,78447-00015-1,1,4380_7778208_2140208,4380_522 -4380_77984,294,4380_39919,Glyntown,78445-00018-1,1,4380_7778208_2140208,4380_522 -4380_77948,289,4380_3992,Ratoath,1907-00014-1,0,4380_7778208_1030110,4380_39 -4380_77984,295,4380_39920,Glyntown,78443-00019-1,1,4380_7778208_2140208,4380_522 -4380_77984,293,4380_39921,Glyntown,78441-00017-1,1,4380_7778208_2140208,4380_522 -4380_77984,296,4380_39922,Glyntown,78530-00021-1,1,4380_7778208_2140211,4380_525 -4380_77984,285,4380_39929,Glyntown,77880-00009-1,1,4380_7778208_2140204,4380_521 -4380_77948,290,4380_3993,Ratoath,52371-00015-1,0,4380_7778208_1030110,4380_39 -4380_77984,286,4380_39930,Glyntown,77884-00010-1,1,4380_7778208_2140204,4380_521 -4380_77984,288,4380_39931,Glyntown,77888-00011-1,1,4380_7778208_2140204,4380_521 -4380_77984,287,4380_39932,Glyntown,77886-00012-1,1,4380_7778208_2140204,4380_521 -4380_77984,291,4380_39933,Glyntown,78582-00013-1,1,4380_7778208_2140222,4380_522 -4380_77984,289,4380_39934,Glyntown,77882-00014-1,1,4380_7778208_2140204,4380_521 -4380_77984,292,4380_39935,Glyntown,77885-00016-1,1,4380_7778208_2140204,4380_521 -4380_77984,290,4380_39936,Glyntown,77881-00015-1,1,4380_7778208_2140204,4380_521 -4380_77984,294,4380_39937,Glyntown,77887-00018-1,1,4380_7778208_2140204,4380_521 -4380_77984,295,4380_39938,Glyntown,77883-00019-1,1,4380_7778208_2140204,4380_521 -4380_77984,293,4380_39939,Glyntown,77889-00017-1,1,4380_7778208_2140204,4380_521 -4380_77948,291,4380_3994,Ratoath,1230-00013-1,0,4380_7778208_1030101,4380_40 -4380_77984,296,4380_39940,Glyntown,78583-00021-1,1,4380_7778208_2140222,4380_522 -4380_77984,297,4380_39942,Glyntown,78531-00008-1,1,4380_7778208_2140211,4380_521 -4380_77984,285,4380_39949,Glyntown,77558-00009-1,1,4380_7778208_2140201,4380_521 -4380_77948,292,4380_3995,Ratoath,52370-00016-1,0,4380_7778208_1030110,4380_39 -4380_77984,286,4380_39950,Glyntown,77550-00010-1,1,4380_7778208_2140201,4380_521 -4380_77984,288,4380_39951,Glyntown,77556-00011-1,1,4380_7778208_2140201,4380_521 -4380_77984,287,4380_39952,Glyntown,77552-00012-1,1,4380_7778208_2140201,4380_521 -4380_77984,291,4380_39953,Glyntown,78683-00013-1,1,4380_7778208_2140244,4380_522 -4380_77984,289,4380_39954,Glyntown,77554-00014-1,1,4380_7778208_2140201,4380_521 -4380_77984,292,4380_39955,Glyntown,77551-00016-1,1,4380_7778208_2140201,4380_521 -4380_77984,293,4380_39956,Glyntown,77557-00017-1,1,4380_7778208_2140201,4380_521 -4380_77984,290,4380_39957,Glyntown,77559-00015-1,1,4380_7778208_2140201,4380_521 -4380_77984,294,4380_39958,Glyntown,77553-00018-1,1,4380_7778208_2140201,4380_521 -4380_77984,295,4380_39959,Glyntown,77555-00019-1,1,4380_7778208_2140201,4380_521 -4380_77948,293,4380_3996,Ratoath,52369-00017-1,0,4380_7778208_1030110,4380_39 -4380_77984,296,4380_39960,Glyntown,78684-00021-1,1,4380_7778208_2140244,4380_522 -4380_77984,297,4380_39968,Glyntown,78635-00008-1,1,4380_7778208_2140233,4380_521 -4380_77984,285,4380_39969,Glyntown,77688-00009-1,1,4380_7778208_2140202,4380_522 -4380_77948,294,4380_3997,Ratoath,52372-00018-1,0,4380_7778208_1030110,4380_39 -4380_77984,286,4380_39970,Glyntown,77680-00010-1,1,4380_7778208_2140202,4380_522 -4380_77984,288,4380_39971,Glyntown,77686-00011-1,1,4380_7778208_2140202,4380_522 -4380_77984,287,4380_39972,Glyntown,77684-00012-1,1,4380_7778208_2140202,4380_522 -4380_77984,291,4380_39973,Glyntown,78754-00013-1,1,4380_7778208_2140266,4380_525 -4380_77984,289,4380_39974,Glyntown,77682-00014-1,1,4380_7778208_2140202,4380_522 -4380_77984,292,4380_39975,Glyntown,77681-00016-1,1,4380_7778208_2140202,4380_522 -4380_77984,293,4380_39976,Glyntown,77687-00017-1,1,4380_7778208_2140202,4380_522 -4380_77984,290,4380_39977,Glyntown,77689-00015-1,1,4380_7778208_2140202,4380_522 -4380_77984,294,4380_39978,Glyntown,77685-00018-1,1,4380_7778208_2140202,4380_522 -4380_77984,295,4380_39979,Glyntown,77683-00019-1,1,4380_7778208_2140202,4380_522 -4380_77948,295,4380_3998,Ratoath,52368-00019-1,0,4380_7778208_1030110,4380_39 -4380_77984,296,4380_39980,Glyntown,78755-00021-1,1,4380_7778208_2140266,4380_525 -4380_77984,285,4380_39987,Glyntown,78058-00009-1,1,4380_7778208_2140205,4380_521 -4380_77984,286,4380_39988,Glyntown,78054-00010-1,1,4380_7778208_2140205,4380_521 -4380_77984,288,4380_39989,Glyntown,78050-00011-1,1,4380_7778208_2140205,4380_521 -4380_77948,296,4380_3999,Ratoath,51825-00021-1,0,4380_7778208_1030101,4380_40 -4380_77984,287,4380_39990,Glyntown,78052-00012-1,1,4380_7778208_2140205,4380_521 -4380_77984,291,4380_39991,Glyntown,78636-00013-1,1,4380_7778208_2140233,4380_522 -4380_77984,289,4380_39992,Glyntown,78056-00014-1,1,4380_7778208_2140205,4380_521 -4380_77984,292,4380_39993,Glyntown,78055-00016-1,1,4380_7778208_2140205,4380_521 -4380_77984,290,4380_39994,Glyntown,78059-00015-1,1,4380_7778208_2140205,4380_521 -4380_77984,294,4380_39995,Glyntown,78053-00018-1,1,4380_7778208_2140205,4380_521 -4380_77984,295,4380_39996,Glyntown,78057-00019-1,1,4380_7778208_2140205,4380_521 -4380_77984,293,4380_39997,Glyntown,78051-00017-1,1,4380_7778208_2140205,4380_521 -4380_77984,296,4380_39998,Glyntown,78637-00021-1,1,4380_7778208_2140233,4380_522 -4380_77946,296,4380_400,Drogheda,50276-00021-1,1,4380_7778208_1000912,4380_9 -4380_77984,297,4380_40000,Glyntown,78587-00008-1,1,4380_7778208_2140222,4380_521 -4380_77984,285,4380_40007,Glyntown,78212-00009-1,1,4380_7778208_2140206,4380_521 -4380_77984,286,4380_40008,Glyntown,78210-00010-1,1,4380_7778208_2140206,4380_521 -4380_77984,288,4380_40009,Glyntown,78218-00011-1,1,4380_7778208_2140206,4380_521 -4380_77984,287,4380_40010,Glyntown,78216-00012-1,1,4380_7778208_2140206,4380_521 -4380_77984,291,4380_40011,Glyntown,78722-00013-1,1,4380_7778208_2140255,4380_522 -4380_77984,289,4380_40012,Glyntown,78214-00014-1,1,4380_7778208_2140206,4380_521 -4380_77984,292,4380_40013,Glyntown,78211-00016-1,1,4380_7778208_2140206,4380_521 -4380_77984,290,4380_40014,Glyntown,78213-00015-1,1,4380_7778208_2140206,4380_521 -4380_77984,294,4380_40015,Glyntown,78217-00018-1,1,4380_7778208_2140206,4380_521 -4380_77984,295,4380_40016,Glyntown,78215-00019-1,1,4380_7778208_2140206,4380_521 -4380_77984,293,4380_40017,Glyntown,78219-00017-1,1,4380_7778208_2140206,4380_521 -4380_77984,296,4380_40018,Glyntown,78723-00021-1,1,4380_7778208_2140255,4380_522 -4380_77984,297,4380_40026,Glyntown,78688-00008-1,1,4380_7778208_2140244,4380_521 -4380_77984,285,4380_40027,Glyntown,78464-00009-1,1,4380_7778208_2140208,4380_522 -4380_77984,286,4380_40028,Glyntown,78466-00010-1,1,4380_7778208_2140208,4380_522 -4380_77984,288,4380_40029,Glyntown,78460-00011-1,1,4380_7778208_2140208,4380_522 -4380_77984,287,4380_40030,Glyntown,78468-00012-1,1,4380_7778208_2140208,4380_522 -4380_77984,291,4380_40031,Glyntown,78535-00013-1,1,4380_7778208_2140211,4380_522 -4380_77984,289,4380_40032,Glyntown,78462-00014-1,1,4380_7778208_2140208,4380_522 -4380_77984,292,4380_40033,Glyntown,78467-00016-1,1,4380_7778208_2140208,4380_522 -4380_77984,290,4380_40034,Glyntown,78465-00015-1,1,4380_7778208_2140208,4380_522 -4380_77984,294,4380_40035,Glyntown,78469-00018-1,1,4380_7778208_2140208,4380_522 -4380_77984,295,4380_40036,Glyntown,78463-00019-1,1,4380_7778208_2140208,4380_522 -4380_77984,293,4380_40037,Glyntown,78461-00017-1,1,4380_7778208_2140208,4380_522 -4380_77984,296,4380_40038,Glyntown,78536-00021-1,1,4380_7778208_2140211,4380_522 -4380_77984,285,4380_40045,Glyntown,77904-00009-1,1,4380_7778208_2140204,4380_521 -4380_77984,286,4380_40046,Glyntown,77906-00010-1,1,4380_7778208_2140204,4380_521 -4380_77984,288,4380_40047,Glyntown,77908-00011-1,1,4380_7778208_2140204,4380_521 -4380_77984,287,4380_40048,Glyntown,77902-00012-1,1,4380_7778208_2140204,4380_521 -4380_77984,291,4380_40049,Glyntown,78588-00013-1,1,4380_7778208_2140222,4380_521 -4380_77984,289,4380_40050,Glyntown,77900-00014-1,1,4380_7778208_2140204,4380_521 -4380_77984,292,4380_40051,Glyntown,77907-00016-1,1,4380_7778208_2140204,4380_521 -4380_77984,290,4380_40052,Glyntown,77905-00015-1,1,4380_7778208_2140204,4380_521 -4380_77984,294,4380_40053,Glyntown,77903-00018-1,1,4380_7778208_2140204,4380_521 -4380_77984,295,4380_40054,Glyntown,77901-00019-1,1,4380_7778208_2140204,4380_521 -4380_77984,293,4380_40055,Glyntown,77909-00017-1,1,4380_7778208_2140204,4380_521 -4380_77984,296,4380_40056,Glyntown,78589-00021-1,1,4380_7778208_2140222,4380_521 -4380_77984,297,4380_40058,Glyntown,78537-00008-1,1,4380_7778208_2140211,4380_521 -4380_77984,285,4380_40065,Glyntown,77576-00009-1,1,4380_7778208_2140201,4380_521 -4380_77984,286,4380_40066,Glyntown,77570-00010-1,1,4380_7778208_2140201,4380_521 -4380_77984,288,4380_40067,Glyntown,77572-00011-1,1,4380_7778208_2140201,4380_521 -4380_77984,287,4380_40068,Glyntown,77574-00012-1,1,4380_7778208_2140201,4380_521 -4380_77984,291,4380_40069,Glyntown,78689-00013-1,1,4380_7778208_2140244,4380_521 -4380_77948,297,4380_4007,Ratoath,1434-00008-1,0,4380_7778208_1030103,4380_39 -4380_77984,289,4380_40070,Glyntown,77578-00014-1,1,4380_7778208_2140201,4380_521 -4380_77984,292,4380_40071,Glyntown,77571-00016-1,1,4380_7778208_2140201,4380_521 -4380_77984,293,4380_40072,Glyntown,77573-00017-1,1,4380_7778208_2140201,4380_521 -4380_77984,290,4380_40073,Glyntown,77577-00015-1,1,4380_7778208_2140201,4380_521 -4380_77984,294,4380_40074,Glyntown,77575-00018-1,1,4380_7778208_2140201,4380_521 -4380_77984,295,4380_40075,Glyntown,77579-00019-1,1,4380_7778208_2140201,4380_521 -4380_77984,296,4380_40076,Glyntown,78690-00021-1,1,4380_7778208_2140244,4380_521 -4380_77948,285,4380_4008,Ratoath,1780-00009-1,0,4380_7778208_1030108,4380_39 -4380_77984,297,4380_40084,Glyntown,78641-00008-1,1,4380_7778208_2140233,4380_521 -4380_77984,285,4380_40085,Glyntown,77704-00009-1,1,4380_7778208_2140202,4380_521 -4380_77984,286,4380_40086,Glyntown,77706-00010-1,1,4380_7778208_2140202,4380_521 -4380_77984,288,4380_40087,Glyntown,77708-00011-1,1,4380_7778208_2140202,4380_521 -4380_77984,287,4380_40088,Glyntown,77702-00012-1,1,4380_7778208_2140202,4380_521 -4380_77984,291,4380_40089,Glyntown,78758-00013-1,1,4380_7778208_2140266,4380_521 -4380_77948,286,4380_4009,Ratoath,1792-00010-1,0,4380_7778208_1030108,4380_39 -4380_77984,289,4380_40090,Glyntown,77700-00014-1,1,4380_7778208_2140202,4380_521 -4380_77984,292,4380_40091,Glyntown,77707-00016-1,1,4380_7778208_2140202,4380_521 -4380_77984,293,4380_40092,Glyntown,77709-00017-1,1,4380_7778208_2140202,4380_521 -4380_77984,290,4380_40093,Glyntown,77705-00015-1,1,4380_7778208_2140202,4380_521 -4380_77984,294,4380_40094,Glyntown,77703-00018-1,1,4380_7778208_2140202,4380_521 -4380_77984,295,4380_40095,Glyntown,77701-00019-1,1,4380_7778208_2140202,4380_521 -4380_77984,296,4380_40096,Glyntown,78759-00021-1,1,4380_7778208_2140266,4380_521 -4380_77948,288,4380_4010,Ratoath,1804-00011-1,0,4380_7778208_1030108,4380_39 -4380_77984,285,4380_40103,Glyntown,78078-00009-1,1,4380_7778208_2140205,4380_521 -4380_77984,286,4380_40104,Glyntown,78072-00010-1,1,4380_7778208_2140205,4380_521 -4380_77984,288,4380_40105,Glyntown,78076-00011-1,1,4380_7778208_2140205,4380_521 -4380_77984,287,4380_40106,Glyntown,78070-00012-1,1,4380_7778208_2140205,4380_521 -4380_77984,291,4380_40107,Glyntown,78642-00013-1,1,4380_7778208_2140233,4380_521 -4380_77984,289,4380_40108,Glyntown,78074-00014-1,1,4380_7778208_2140205,4380_521 -4380_77984,292,4380_40109,Glyntown,78073-00016-1,1,4380_7778208_2140205,4380_521 -4380_77948,287,4380_4011,Ratoath,1816-00012-1,0,4380_7778208_1030108,4380_39 -4380_77984,290,4380_40110,Glyntown,78079-00015-1,1,4380_7778208_2140205,4380_521 -4380_77984,294,4380_40111,Glyntown,78071-00018-1,1,4380_7778208_2140205,4380_521 -4380_77984,295,4380_40112,Glyntown,78075-00019-1,1,4380_7778208_2140205,4380_521 -4380_77984,293,4380_40113,Glyntown,78077-00017-1,1,4380_7778208_2140205,4380_521 -4380_77984,296,4380_40114,Glyntown,78643-00021-1,1,4380_7778208_2140233,4380_521 -4380_77984,297,4380_40116,Glyntown,78593-00008-1,1,4380_7778208_2140222,4380_521 -4380_77948,289,4380_4012,Ratoath,1768-00014-1,0,4380_7778208_1030108,4380_39 -4380_77984,285,4380_40123,St. Patrick Street,78232-00009-1,1,4380_7778208_2140206,4380_524 -4380_77984,286,4380_40124,St. Patrick Street,78234-00010-1,1,4380_7778208_2140206,4380_524 -4380_77984,288,4380_40125,St. Patrick Street,78236-00011-1,1,4380_7778208_2140206,4380_524 -4380_77984,287,4380_40126,St. Patrick Street,78238-00012-1,1,4380_7778208_2140206,4380_524 -4380_77984,291,4380_40127,St. Patrick Street,78726-00013-1,1,4380_7778208_2140255,4380_526 -4380_77984,289,4380_40128,St. Patrick Street,78230-00014-1,1,4380_7778208_2140206,4380_524 -4380_77984,292,4380_40129,St. Patrick Street,78235-00016-1,1,4380_7778208_2140206,4380_524 -4380_77948,290,4380_4013,Ratoath,52248-00015-1,0,4380_7778208_1030108,4380_39 -4380_77984,290,4380_40130,St. Patrick Street,78233-00015-1,1,4380_7778208_2140206,4380_524 -4380_77984,294,4380_40131,St. Patrick Street,78239-00018-1,1,4380_7778208_2140206,4380_524 -4380_77984,295,4380_40132,St. Patrick Street,78231-00019-1,1,4380_7778208_2140206,4380_524 -4380_77984,293,4380_40133,St. Patrick Street,78237-00017-1,1,4380_7778208_2140206,4380_524 -4380_77984,296,4380_40134,St. Patrick Street,78727-00021-1,1,4380_7778208_2140255,4380_526 -4380_77948,291,4380_4014,Ratoath,1330-00013-1,0,4380_7778208_1030102,4380_40 -4380_77984,285,4380_40141,St. Patrick Street,78482-00009-1,1,4380_7778208_2140208,4380_524 -4380_77984,286,4380_40142,St. Patrick Street,78484-00010-1,1,4380_7778208_2140208,4380_524 -4380_77984,288,4380_40143,St. Patrick Street,78486-00011-1,1,4380_7778208_2140208,4380_524 -4380_77984,287,4380_40144,St. Patrick Street,78480-00012-1,1,4380_7778208_2140208,4380_524 -4380_77984,291,4380_40145,St. Patrick Street,78541-00013-1,1,4380_7778208_2140211,4380_526 -4380_77984,289,4380_40146,St. Patrick Street,78488-00014-1,1,4380_7778208_2140208,4380_524 -4380_77984,292,4380_40147,St. Patrick Street,78485-00016-1,1,4380_7778208_2140208,4380_524 -4380_77984,290,4380_40148,St. Patrick Street,78483-00015-1,1,4380_7778208_2140208,4380_524 -4380_77984,294,4380_40149,St. Patrick Street,78481-00018-1,1,4380_7778208_2140208,4380_524 -4380_77948,292,4380_4015,Ratoath,52249-00016-1,0,4380_7778208_1030108,4380_39 -4380_77984,295,4380_40150,St. Patrick Street,78489-00019-1,1,4380_7778208_2140208,4380_524 -4380_77984,293,4380_40151,St. Patrick Street,78487-00017-1,1,4380_7778208_2140208,4380_524 -4380_77984,296,4380_40152,St. Patrick Street,78542-00021-1,1,4380_7778208_2140211,4380_526 -4380_77985,285,4380_40158,Cloghroe,78811-00009-1,0,4380_7778208_2150202,4380_528 -4380_77985,286,4380_40159,Cloghroe,78807-00010-1,0,4380_7778208_2150202,4380_528 -4380_77948,293,4380_4016,Ratoath,52251-00017-1,0,4380_7778208_1030108,4380_39 -4380_77985,288,4380_40160,Cloghroe,78809-00011-1,0,4380_7778208_2150202,4380_528 -4380_77985,287,4380_40161,Cloghroe,78805-00012-1,0,4380_7778208_2150202,4380_528 -4380_77985,289,4380_40162,Cloghroe,78813-00014-1,0,4380_7778208_2150202,4380_528 -4380_77985,292,4380_40163,Cloghroe,78808-00016-1,0,4380_7778208_2150202,4380_528 -4380_77985,290,4380_40164,Cloghroe,78812-00015-1,0,4380_7778208_2150202,4380_528 -4380_77985,294,4380_40165,Cloghroe,78806-00018-1,0,4380_7778208_2150202,4380_528 -4380_77985,295,4380_40166,Cloghroe,78814-00019-1,0,4380_7778208_2150202,4380_528 -4380_77985,293,4380_40167,Cloghroe,78810-00017-1,0,4380_7778208_2150202,4380_528 -4380_77948,294,4380_4017,Ratoath,52247-00018-1,0,4380_7778208_1030108,4380_39 -4380_77985,285,4380_40178,Cloghroe,79019-00009-1,0,4380_7778208_2150203,4380_529 -4380_77985,285,4380_40179,Cloghroe,79463-00009-1,0,4380_7778208_2150205,4380_528 -4380_77948,295,4380_4018,Ratoath,52250-00019-1,0,4380_7778208_1030108,4380_39 -4380_77985,286,4380_40180,Cloghroe,79013-00010-1,0,4380_7778208_2150203,4380_529 -4380_77985,286,4380_40181,Cloghroe,79467-00010-1,0,4380_7778208_2150205,4380_528 -4380_77985,288,4380_40182,Cloghroe,79015-00011-1,0,4380_7778208_2150203,4380_529 -4380_77985,288,4380_40183,Cloghroe,79465-00011-1,0,4380_7778208_2150205,4380_528 -4380_77985,287,4380_40184,Cloghroe,79021-00012-1,0,4380_7778208_2150203,4380_529 -4380_77985,287,4380_40185,Cloghroe,79469-00012-1,0,4380_7778208_2150205,4380_528 -4380_77985,289,4380_40186,Cloghroe,79017-00014-1,0,4380_7778208_2150203,4380_529 -4380_77985,289,4380_40187,Cloghroe,79471-00014-1,0,4380_7778208_2150205,4380_528 -4380_77985,292,4380_40188,Cloghroe,79014-00016-1,0,4380_7778208_2150203,4380_529 -4380_77985,292,4380_40189,Cloghroe,79468-00016-1,0,4380_7778208_2150205,4380_528 -4380_77948,296,4380_4019,Ratoath,51885-00021-1,0,4380_7778208_1030102,4380_40 -4380_77985,290,4380_40190,Cloghroe,79020-00015-1,0,4380_7778208_2150203,4380_529 -4380_77985,290,4380_40191,Cloghroe,79464-00015-1,0,4380_7778208_2150205,4380_528 -4380_77985,294,4380_40192,Cloghroe,79022-00018-1,0,4380_7778208_2150203,4380_529 -4380_77985,294,4380_40193,Cloghroe,79470-00018-1,0,4380_7778208_2150205,4380_528 -4380_77985,295,4380_40194,Cloghroe,79018-00019-1,0,4380_7778208_2150203,4380_529 -4380_77985,295,4380_40195,Cloghroe,79472-00019-1,0,4380_7778208_2150205,4380_528 -4380_77985,293,4380_40196,Cloghroe,79016-00017-1,0,4380_7778208_2150203,4380_529 -4380_77985,293,4380_40197,Cloghroe,79466-00017-1,0,4380_7778208_2150205,4380_528 -4380_77985,285,4380_40204,Cloghroe,79651-00009-1,0,4380_7778208_2150206,4380_529 -4380_77985,286,4380_40205,Cloghroe,79653-00010-1,0,4380_7778208_2150206,4380_529 -4380_77985,288,4380_40206,Cloghroe,79649-00011-1,0,4380_7778208_2150206,4380_529 -4380_77985,287,4380_40207,Cloghroe,79647-00012-1,0,4380_7778208_2150206,4380_529 -4380_77985,291,4380_40208,Cloghroe,79215-00013-1,0,4380_7778208_2150204,4380_528 -4380_77985,289,4380_40209,Cloghroe,79645-00014-1,0,4380_7778208_2150206,4380_529 -4380_77985,292,4380_40210,Cloghroe,79654-00016-1,0,4380_7778208_2150206,4380_529 -4380_77985,290,4380_40211,Cloghroe,79652-00015-1,0,4380_7778208_2150206,4380_529 -4380_77985,294,4380_40212,Cloghroe,79648-00018-1,0,4380_7778208_2150206,4380_529 -4380_77985,295,4380_40213,Cloghroe,79646-00019-1,0,4380_7778208_2150206,4380_529 -4380_77985,293,4380_40214,Cloghroe,79650-00017-1,0,4380_7778208_2150206,4380_529 -4380_77985,296,4380_40215,Cloghroe,79216-00021-1,0,4380_7778208_2150204,4380_528 -4380_77985,291,4380_40217,Cloghroe,78827-00013-1,0,4380_7778208_2150202,4380_529 -4380_77985,296,4380_40218,Cloghroe,78828-00021-1,0,4380_7778208_2150202,4380_529 -4380_77985,297,4380_40220,Cloghroe,78766-00008-1,0,4380_7778208_2150201,4380_528 -4380_77985,285,4380_40227,Cloghroe,80059-00009-1,0,4380_7778208_2150209,4380_529 -4380_77985,286,4380_40228,Cloghroe,80057-00010-1,0,4380_7778208_2150209,4380_529 -4380_77985,288,4380_40229,Cloghroe,80063-00011-1,0,4380_7778208_2150209,4380_529 -4380_77985,287,4380_40230,Cloghroe,80061-00012-1,0,4380_7778208_2150209,4380_529 -4380_77985,291,4380_40231,Cloghroe,78767-00013-1,0,4380_7778208_2150201,4380_532 -4380_77985,289,4380_40232,Cloghroe,80055-00014-1,0,4380_7778208_2150209,4380_529 -4380_77985,292,4380_40233,Cloghroe,80058-00016-1,0,4380_7778208_2150209,4380_529 -4380_77985,290,4380_40234,Cloghroe,80060-00015-1,0,4380_7778208_2150209,4380_529 -4380_77985,294,4380_40235,Cloghroe,80062-00018-1,0,4380_7778208_2150209,4380_529 -4380_77985,295,4380_40236,Cloghroe,80056-00019-1,0,4380_7778208_2150209,4380_529 -4380_77985,293,4380_40237,Cloghroe,80064-00017-1,0,4380_7778208_2150209,4380_529 -4380_77985,296,4380_40238,Cloghroe,78768-00021-1,0,4380_7778208_2150201,4380_532 -4380_77985,285,4380_40245,Cloghroe,78839-00009-1,0,4380_7778208_2150202,4380_529 -4380_77985,286,4380_40246,Cloghroe,78837-00010-1,0,4380_7778208_2150202,4380_529 -4380_77985,288,4380_40247,Cloghroe,78831-00011-1,0,4380_7778208_2150202,4380_529 -4380_77985,287,4380_40248,Cloghroe,78833-00012-1,0,4380_7778208_2150202,4380_529 -4380_77985,291,4380_40249,Cloghroe,79035-00013-1,0,4380_7778208_2150203,4380_532 -4380_77985,289,4380_40250,Cloghroe,78835-00014-1,0,4380_7778208_2150202,4380_529 -4380_77985,292,4380_40251,Cloghroe,78838-00016-1,0,4380_7778208_2150202,4380_529 -4380_77985,290,4380_40252,Cloghroe,78840-00015-1,0,4380_7778208_2150202,4380_529 -4380_77985,294,4380_40253,Cloghroe,78834-00018-1,0,4380_7778208_2150202,4380_529 -4380_77985,295,4380_40254,Cloghroe,78836-00019-1,0,4380_7778208_2150202,4380_529 -4380_77985,293,4380_40255,Cloghroe,78832-00017-1,0,4380_7778208_2150202,4380_529 -4380_77985,296,4380_40256,Cloghroe,79036-00021-1,0,4380_7778208_2150203,4380_532 -4380_77985,297,4380_40258,Cloghroe,78841-00008-1,0,4380_7778208_2150202,4380_528 -4380_77948,285,4380_4026,Ratoath,1472-00009-1,0,4380_7778208_1030104,4380_39 -4380_77985,285,4380_40265,Cloghroe,79489-00009-1,0,4380_7778208_2150205,4380_529 -4380_77985,286,4380_40266,Cloghroe,79483-00010-1,0,4380_7778208_2150205,4380_529 -4380_77985,288,4380_40267,Cloghroe,79491-00011-1,0,4380_7778208_2150205,4380_529 -4380_77985,287,4380_40268,Cloghroe,79485-00012-1,0,4380_7778208_2150205,4380_529 -4380_77985,291,4380_40269,Cloghroe,79249-00013-1,0,4380_7778208_2150204,4380_532 -4380_77948,286,4380_4027,Ratoath,1484-00010-1,0,4380_7778208_1030104,4380_39 -4380_77985,289,4380_40270,Cloghroe,79487-00014-1,0,4380_7778208_2150205,4380_529 -4380_77985,292,4380_40271,Cloghroe,79484-00016-1,0,4380_7778208_2150205,4380_529 -4380_77985,290,4380_40272,Cloghroe,79490-00015-1,0,4380_7778208_2150205,4380_529 -4380_77985,294,4380_40273,Cloghroe,79486-00018-1,0,4380_7778208_2150205,4380_529 -4380_77985,295,4380_40274,Cloghroe,79488-00019-1,0,4380_7778208_2150205,4380_529 -4380_77985,293,4380_40275,Cloghroe,79492-00017-1,0,4380_7778208_2150205,4380_529 -4380_77985,296,4380_40276,Cloghroe,79250-00021-1,0,4380_7778208_2150204,4380_532 -4380_77948,288,4380_4028,Ratoath,1496-00011-1,0,4380_7778208_1030104,4380_39 -4380_77985,297,4380_40284,Cloghroe,78772-00008-1,0,4380_7778208_2150201,4380_529 -4380_77985,285,4380_40285,Cloghroe,79047-00009-1,0,4380_7778208_2150203,4380_532 -4380_77985,286,4380_40286,Cloghroe,79043-00010-1,0,4380_7778208_2150203,4380_532 -4380_77985,288,4380_40287,Cloghroe,79045-00011-1,0,4380_7778208_2150203,4380_532 -4380_77985,287,4380_40288,Cloghroe,79041-00012-1,0,4380_7778208_2150203,4380_532 -4380_77985,291,4380_40289,Cloghroe,78843-00013-1,0,4380_7778208_2150202,4380_529 -4380_77948,287,4380_4029,Ratoath,1508-00012-1,0,4380_7778208_1030104,4380_39 -4380_77985,289,4380_40290,Cloghroe,79039-00014-1,0,4380_7778208_2150203,4380_532 -4380_77985,292,4380_40291,Cloghroe,79044-00016-1,0,4380_7778208_2150203,4380_532 -4380_77985,290,4380_40292,Cloghroe,79048-00015-1,0,4380_7778208_2150203,4380_532 -4380_77985,294,4380_40293,Cloghroe,79042-00018-1,0,4380_7778208_2150203,4380_532 -4380_77985,295,4380_40294,Cloghroe,79040-00019-1,0,4380_7778208_2150203,4380_532 -4380_77985,293,4380_40295,Cloghroe,79046-00017-1,0,4380_7778208_2150203,4380_532 -4380_77985,296,4380_40296,Cloghroe,78844-00021-1,0,4380_7778208_2150202,4380_529 -4380_77948,289,4380_4030,Ratoath,1460-00014-1,0,4380_7778208_1030104,4380_39 -4380_77985,285,4380_40303,Cloghroe,79673-00009-1,0,4380_7778208_2150206,4380_529 -4380_77985,286,4380_40304,Cloghroe,79665-00010-1,0,4380_7778208_2150206,4380_529 -4380_77985,288,4380_40305,Cloghroe,79667-00011-1,0,4380_7778208_2150206,4380_529 -4380_77985,287,4380_40306,Cloghroe,79671-00012-1,0,4380_7778208_2150206,4380_529 -4380_77985,291,4380_40307,Cloghroe,78773-00013-1,0,4380_7778208_2150201,4380_532 -4380_77985,289,4380_40308,Cloghroe,79669-00014-1,0,4380_7778208_2150206,4380_529 -4380_77985,292,4380_40309,Cloghroe,79666-00016-1,0,4380_7778208_2150206,4380_529 -4380_77948,290,4380_4031,Ratoath,52009-00015-1,0,4380_7778208_1030104,4380_39 -4380_77985,290,4380_40310,Cloghroe,79674-00015-1,0,4380_7778208_2150206,4380_529 -4380_77985,294,4380_40311,Cloghroe,79672-00018-1,0,4380_7778208_2150206,4380_529 -4380_77985,295,4380_40312,Cloghroe,79670-00019-1,0,4380_7778208_2150206,4380_529 -4380_77985,293,4380_40313,Cloghroe,79668-00017-1,0,4380_7778208_2150206,4380_529 -4380_77985,296,4380_40314,Cloghroe,78774-00021-1,0,4380_7778208_2150201,4380_532 -4380_77948,291,4380_4032,Ratoath,1412-00013-1,0,4380_7778208_1030103,4380_40 -4380_77985,297,4380_40322,Cloghroe,78857-00008-1,0,4380_7778208_2150202,4380_529 -4380_77985,285,4380_40323,Cloghroe,80077-00009-1,0,4380_7778208_2150209,4380_532 -4380_77985,286,4380_40324,Cloghroe,80081-00010-1,0,4380_7778208_2150209,4380_532 -4380_77985,288,4380_40325,Cloghroe,80079-00011-1,0,4380_7778208_2150209,4380_532 -4380_77985,287,4380_40326,Cloghroe,80083-00012-1,0,4380_7778208_2150209,4380_532 -4380_77985,291,4380_40327,Cloghroe,79049-00013-1,0,4380_7778208_2150203,4380_529 -4380_77985,289,4380_40328,Cloghroe,80075-00014-1,0,4380_7778208_2150209,4380_532 -4380_77985,292,4380_40329,Cloghroe,80082-00016-1,0,4380_7778208_2150209,4380_532 -4380_77948,292,4380_4033,Ratoath,52008-00016-1,0,4380_7778208_1030104,4380_39 -4380_77985,290,4380_40330,Cloghroe,80078-00015-1,0,4380_7778208_2150209,4380_532 -4380_77985,294,4380_40331,Cloghroe,80084-00018-1,0,4380_7778208_2150209,4380_532 -4380_77985,295,4380_40332,Cloghroe,80076-00019-1,0,4380_7778208_2150209,4380_532 -4380_77985,293,4380_40333,Cloghroe,80080-00017-1,0,4380_7778208_2150209,4380_532 -4380_77985,296,4380_40334,Cloghroe,79050-00021-1,0,4380_7778208_2150203,4380_529 -4380_77948,293,4380_4034,Ratoath,52010-00017-1,0,4380_7778208_1030104,4380_39 -4380_77985,285,4380_40341,Cloghroe,78860-00009-1,0,4380_7778208_2150202,4380_529 -4380_77985,286,4380_40342,Cloghroe,78862-00010-1,0,4380_7778208_2150202,4380_529 -4380_77985,288,4380_40343,Cloghroe,78864-00011-1,0,4380_7778208_2150202,4380_529 -4380_77985,287,4380_40344,Cloghroe,78858-00012-1,0,4380_7778208_2150202,4380_529 -4380_77985,291,4380_40345,Cloghroe,79293-00013-1,0,4380_7778208_2150204,4380_532 -4380_77985,289,4380_40346,Cloghroe,78866-00014-1,0,4380_7778208_2150202,4380_529 -4380_77985,292,4380_40347,Cloghroe,78863-00016-1,0,4380_7778208_2150202,4380_529 -4380_77985,290,4380_40348,Cloghroe,78861-00015-1,0,4380_7778208_2150202,4380_529 -4380_77985,294,4380_40349,Cloghroe,78859-00018-1,0,4380_7778208_2150202,4380_529 -4380_77948,294,4380_4035,Ratoath,52011-00018-1,0,4380_7778208_1030104,4380_39 -4380_77985,295,4380_40350,Cloghroe,78867-00019-1,0,4380_7778208_2150202,4380_529 -4380_77985,293,4380_40351,Cloghroe,78865-00017-1,0,4380_7778208_2150202,4380_529 -4380_77985,296,4380_40352,Cloghroe,79294-00021-1,0,4380_7778208_2150204,4380_532 -4380_77985,297,4380_40354,Cloghroe,78778-00008-1,0,4380_7778208_2150201,4380_529 -4380_77948,295,4380_4036,Ratoath,52007-00019-1,0,4380_7778208_1030104,4380_39 -4380_77985,285,4380_40361,Cloghroe,79507-00009-1,0,4380_7778208_2150205,4380_529 -4380_77985,286,4380_40362,Cloghroe,79505-00010-1,0,4380_7778208_2150205,4380_529 -4380_77985,288,4380_40363,Cloghroe,79509-00011-1,0,4380_7778208_2150205,4380_529 -4380_77985,287,4380_40364,Cloghroe,79511-00012-1,0,4380_7778208_2150205,4380_529 -4380_77985,291,4380_40365,Cloghroe,78869-00013-1,0,4380_7778208_2150202,4380_532 -4380_77985,289,4380_40366,Cloghroe,79503-00014-1,0,4380_7778208_2150205,4380_529 -4380_77985,292,4380_40367,Cloghroe,79506-00016-1,0,4380_7778208_2150205,4380_529 -4380_77985,290,4380_40368,Cloghroe,79508-00015-1,0,4380_7778208_2150205,4380_529 -4380_77985,294,4380_40369,Cloghroe,79512-00018-1,0,4380_7778208_2150205,4380_529 -4380_77948,296,4380_4037,Ratoath,51945-00021-1,0,4380_7778208_1030103,4380_40 -4380_77985,295,4380_40370,Cloghroe,79504-00019-1,0,4380_7778208_2150205,4380_529 -4380_77985,293,4380_40371,Cloghroe,79510-00017-1,0,4380_7778208_2150205,4380_529 -4380_77985,296,4380_40372,Cloghroe,78870-00021-1,0,4380_7778208_2150202,4380_532 -4380_77985,285,4380_40379,Cloghroe,79063-00009-1,0,4380_7778208_2150203,4380_529 -4380_77985,286,4380_40380,Cloghroe,79071-00010-1,0,4380_7778208_2150203,4380_529 -4380_77985,288,4380_40381,Cloghroe,79069-00011-1,0,4380_7778208_2150203,4380_529 -4380_77985,287,4380_40382,Cloghroe,79067-00012-1,0,4380_7778208_2150203,4380_529 -4380_77985,291,4380_40383,Cloghroe,78779-00013-1,0,4380_7778208_2150201,4380_529 -4380_77985,289,4380_40384,Cloghroe,79065-00014-1,0,4380_7778208_2150203,4380_529 -4380_77985,292,4380_40385,Cloghroe,79072-00016-1,0,4380_7778208_2150203,4380_529 -4380_77985,290,4380_40386,Cloghroe,79064-00015-1,0,4380_7778208_2150203,4380_529 -4380_77985,294,4380_40387,Cloghroe,79068-00018-1,0,4380_7778208_2150203,4380_529 -4380_77985,295,4380_40388,Cloghroe,79066-00019-1,0,4380_7778208_2150203,4380_529 -4380_77985,293,4380_40389,Cloghroe,79070-00017-1,0,4380_7778208_2150203,4380_529 -4380_77985,296,4380_40390,Cloghroe,78780-00021-1,0,4380_7778208_2150201,4380_529 -4380_77985,297,4380_40392,Cloghroe,78881-00008-1,0,4380_7778208_2150202,4380_529 -4380_77985,285,4380_40399,Cloghroe,79687-00009-1,0,4380_7778208_2150206,4380_529 -4380_77985,286,4380_40400,Cloghroe,79691-00010-1,0,4380_7778208_2150206,4380_529 -4380_77985,288,4380_40401,Cloghroe,79693-00011-1,0,4380_7778208_2150206,4380_529 -4380_77985,287,4380_40402,Cloghroe,79685-00012-1,0,4380_7778208_2150206,4380_529 -4380_77985,291,4380_40403,Cloghroe,79074-00013-1,0,4380_7778208_2150203,4380_529 -4380_77985,289,4380_40404,Cloghroe,79689-00014-1,0,4380_7778208_2150206,4380_529 -4380_77985,292,4380_40405,Cloghroe,79692-00016-1,0,4380_7778208_2150206,4380_529 -4380_77985,290,4380_40406,Cloghroe,79688-00015-1,0,4380_7778208_2150206,4380_529 -4380_77985,294,4380_40407,Cloghroe,79686-00018-1,0,4380_7778208_2150206,4380_529 -4380_77985,295,4380_40408,Cloghroe,79690-00019-1,0,4380_7778208_2150206,4380_529 -4380_77985,293,4380_40409,Cloghroe,79694-00017-1,0,4380_7778208_2150206,4380_529 -4380_77985,296,4380_40410,Cloghroe,79075-00021-1,0,4380_7778208_2150203,4380_529 -4380_77985,285,4380_40417,Cloghroe,80095-00009-1,0,4380_7778208_2150209,4380_529 -4380_77985,286,4380_40418,Cloghroe,80101-00010-1,0,4380_7778208_2150209,4380_529 -4380_77985,288,4380_40419,Cloghroe,80099-00011-1,0,4380_7778208_2150209,4380_529 -4380_77985,287,4380_40420,Cloghroe,80097-00012-1,0,4380_7778208_2150209,4380_529 -4380_77985,291,4380_40421,Cloghroe,79525-00013-1,0,4380_7778208_2150205,4380_529 -4380_77985,289,4380_40422,Cloghroe,80103-00014-1,0,4380_7778208_2150209,4380_529 -4380_77985,292,4380_40423,Cloghroe,80102-00016-1,0,4380_7778208_2150209,4380_529 -4380_77985,290,4380_40424,Cloghroe,80096-00015-1,0,4380_7778208_2150209,4380_529 -4380_77985,294,4380_40425,Cloghroe,80098-00018-1,0,4380_7778208_2150209,4380_529 -4380_77985,295,4380_40426,Cloghroe,80104-00019-1,0,4380_7778208_2150209,4380_529 -4380_77985,293,4380_40427,Cloghroe,80100-00017-1,0,4380_7778208_2150209,4380_529 -4380_77985,296,4380_40428,Cloghroe,79526-00021-1,0,4380_7778208_2150205,4380_529 -4380_77985,297,4380_40430,Cloghroe,79086-00008-1,0,4380_7778208_2150203,4380_529 -4380_77985,285,4380_40437,Cloghroe,78888-00009-1,0,4380_7778208_2150202,4380_529 -4380_77985,286,4380_40438,Cloghroe,78890-00010-1,0,4380_7778208_2150202,4380_529 -4380_77985,288,4380_40439,Cloghroe,78892-00011-1,0,4380_7778208_2150202,4380_529 -4380_77985,287,4380_40440,Cloghroe,78886-00012-1,0,4380_7778208_2150202,4380_529 -4380_77985,291,4380_40441,Cloghroe,79347-00013-1,0,4380_7778208_2150204,4380_532 -4380_77985,289,4380_40442,Cloghroe,78884-00014-1,0,4380_7778208_2150202,4380_529 -4380_77985,292,4380_40443,Cloghroe,78891-00016-1,0,4380_7778208_2150202,4380_529 -4380_77985,290,4380_40444,Cloghroe,78889-00015-1,0,4380_7778208_2150202,4380_529 -4380_77985,294,4380_40445,Cloghroe,78887-00018-1,0,4380_7778208_2150202,4380_529 -4380_77985,295,4380_40446,Cloghroe,78885-00019-1,0,4380_7778208_2150202,4380_529 -4380_77985,293,4380_40447,Cloghroe,78893-00017-1,0,4380_7778208_2150202,4380_529 -4380_77985,296,4380_40448,Cloghroe,79348-00021-1,0,4380_7778208_2150204,4380_532 -4380_77948,297,4380_4045,Ratoath,1252-00008-1,0,4380_7778208_1030101,4380_39 -4380_77985,285,4380_40455,Cloghroe,79529-00009-1,0,4380_7778208_2150205,4380_529 -4380_77985,286,4380_40456,Cloghroe,79535-00010-1,0,4380_7778208_2150205,4380_529 -4380_77985,288,4380_40457,Cloghroe,79531-00011-1,0,4380_7778208_2150205,4380_529 -4380_77985,287,4380_40458,Cloghroe,79533-00012-1,0,4380_7778208_2150205,4380_529 -4380_77985,291,4380_40459,Cloghroe,78895-00013-1,0,4380_7778208_2150202,4380_532 -4380_77948,285,4380_4046,Ratoath,1706-00009-1,0,4380_7778208_1030107,4380_39 -4380_77985,289,4380_40460,Cloghroe,79527-00014-1,0,4380_7778208_2150205,4380_529 -4380_77985,292,4380_40461,Cloghroe,79536-00016-1,0,4380_7778208_2150205,4380_529 -4380_77985,290,4380_40462,Cloghroe,79530-00015-1,0,4380_7778208_2150205,4380_529 -4380_77985,294,4380_40463,Cloghroe,79534-00018-1,0,4380_7778208_2150205,4380_529 -4380_77985,295,4380_40464,Cloghroe,79528-00019-1,0,4380_7778208_2150205,4380_529 -4380_77985,293,4380_40465,Cloghroe,79532-00017-1,0,4380_7778208_2150205,4380_529 -4380_77985,296,4380_40466,Cloghroe,78896-00021-1,0,4380_7778208_2150202,4380_532 -4380_77985,297,4380_40468,Cloghroe,78784-00008-1,0,4380_7778208_2150201,4380_529 -4380_77948,286,4380_4047,Ratoath,1718-00010-1,0,4380_7778208_1030107,4380_39 -4380_77985,285,4380_40475,Cloghroe,79091-00009-1,0,4380_7778208_2150203,4380_529 -4380_77985,286,4380_40476,Cloghroe,79095-00010-1,0,4380_7778208_2150203,4380_529 -4380_77985,288,4380_40477,Cloghroe,79089-00011-1,0,4380_7778208_2150203,4380_529 -4380_77985,287,4380_40478,Cloghroe,79097-00012-1,0,4380_7778208_2150203,4380_529 -4380_77985,291,4380_40479,Cloghroe,78785-00013-1,0,4380_7778208_2150201,4380_532 -4380_77948,288,4380_4048,Ratoath,1730-00011-1,0,4380_7778208_1030107,4380_39 -4380_77985,289,4380_40480,Cloghroe,79093-00014-1,0,4380_7778208_2150203,4380_529 -4380_77985,292,4380_40481,Cloghroe,79096-00016-1,0,4380_7778208_2150203,4380_529 -4380_77985,290,4380_40482,Cloghroe,79092-00015-1,0,4380_7778208_2150203,4380_529 -4380_77985,294,4380_40483,Cloghroe,79098-00018-1,0,4380_7778208_2150203,4380_529 -4380_77985,295,4380_40484,Cloghroe,79094-00019-1,0,4380_7778208_2150203,4380_529 -4380_77985,293,4380_40485,Cloghroe,79090-00017-1,0,4380_7778208_2150203,4380_529 -4380_77985,296,4380_40486,Cloghroe,78786-00021-1,0,4380_7778208_2150201,4380_532 -4380_77985,297,4380_40488,St. Patrick Street,78907-00008-1,0,4380_7778208_2150202,4380_530 -4380_77948,287,4380_4049,Ratoath,1742-00012-1,0,4380_7778208_1030107,4380_39 -4380_77985,285,4380_40495,Cloghroe,79709-00009-1,0,4380_7778208_2150206,4380_529 -4380_77985,286,4380_40496,Cloghroe,79707-00010-1,0,4380_7778208_2150206,4380_529 -4380_77985,288,4380_40497,Cloghroe,79713-00011-1,0,4380_7778208_2150206,4380_529 -4380_77985,287,4380_40498,Cloghroe,79705-00012-1,0,4380_7778208_2150206,4380_529 -4380_77985,291,4380_40499,Cloghroe,79100-00013-1,0,4380_7778208_2150203,4380_532 -4380_77948,289,4380_4050,Ratoath,1694-00014-1,0,4380_7778208_1030107,4380_39 -4380_77985,289,4380_40500,Cloghroe,79711-00014-1,0,4380_7778208_2150206,4380_529 -4380_77985,292,4380_40501,Cloghroe,79708-00016-1,0,4380_7778208_2150206,4380_529 -4380_77985,290,4380_40502,Cloghroe,79710-00015-1,0,4380_7778208_2150206,4380_529 -4380_77985,294,4380_40503,Cloghroe,79706-00018-1,0,4380_7778208_2150206,4380_529 -4380_77985,295,4380_40504,Cloghroe,79712-00019-1,0,4380_7778208_2150206,4380_529 -4380_77985,293,4380_40505,Cloghroe,79714-00017-1,0,4380_7778208_2150206,4380_529 -4380_77985,296,4380_40506,Cloghroe,79101-00021-1,0,4380_7778208_2150203,4380_532 -4380_77948,290,4380_4051,Ratoath,52195-00015-1,0,4380_7778208_1030107,4380_39 -4380_77985,297,4380_40513,Cloghroe,79392-00008-1,0,4380_7778208_2150204,4380_529 -4380_77985,285,4380_40514,Cloghroe,80115-00009-1,0,4380_7778208_2150209,4380_532 -4380_77985,286,4380_40515,Cloghroe,80119-00010-1,0,4380_7778208_2150209,4380_532 -4380_77985,288,4380_40516,Cloghroe,80117-00011-1,0,4380_7778208_2150209,4380_532 -4380_77985,287,4380_40517,Cloghroe,80123-00012-1,0,4380_7778208_2150209,4380_532 -4380_77985,289,4380_40518,Cloghroe,80121-00014-1,0,4380_7778208_2150209,4380_532 -4380_77985,292,4380_40519,Cloghroe,80120-00016-1,0,4380_7778208_2150209,4380_532 -4380_77948,291,4380_4052,Ratoath,1530-00013-1,0,4380_7778208_1030104,4380_40 -4380_77985,290,4380_40520,Cloghroe,80116-00015-1,0,4380_7778208_2150209,4380_532 -4380_77985,294,4380_40521,Cloghroe,80124-00018-1,0,4380_7778208_2150209,4380_532 -4380_77985,295,4380_40522,Cloghroe,80122-00019-1,0,4380_7778208_2150209,4380_532 -4380_77985,293,4380_40523,Cloghroe,80118-00017-1,0,4380_7778208_2150209,4380_532 -4380_77985,291,4380_40525,Cloghroe,79549-00013-1,0,4380_7778208_2150205,4380_529 -4380_77985,296,4380_40526,Cloghroe,79550-00021-1,0,4380_7778208_2150205,4380_529 -4380_77948,292,4380_4053,Ratoath,52193-00016-1,0,4380_7778208_1030107,4380_39 -4380_77985,297,4380_40533,St. Patrick Street,79112-00008-1,0,4380_7778208_2150203,4380_530 -4380_77985,285,4380_40534,Cloghroe,80029-00009-1,0,4380_7778208_2150208,4380_529 -4380_77985,286,4380_40535,Cloghroe,80027-00010-1,0,4380_7778208_2150208,4380_529 -4380_77985,288,4380_40536,Cloghroe,80025-00011-1,0,4380_7778208_2150208,4380_529 -4380_77985,287,4380_40537,Cloghroe,80031-00012-1,0,4380_7778208_2150208,4380_529 -4380_77985,289,4380_40538,Cloghroe,80033-00014-1,0,4380_7778208_2150208,4380_529 -4380_77985,292,4380_40539,Cloghroe,80028-00016-1,0,4380_7778208_2150208,4380_529 -4380_77948,293,4380_4054,Ratoath,52191-00017-1,0,4380_7778208_1030107,4380_39 -4380_77985,290,4380_40540,Cloghroe,80030-00015-1,0,4380_7778208_2150208,4380_529 -4380_77985,294,4380_40541,Cloghroe,80032-00018-1,0,4380_7778208_2150208,4380_529 -4380_77985,295,4380_40542,Cloghroe,80034-00019-1,0,4380_7778208_2150208,4380_529 -4380_77985,293,4380_40543,Cloghroe,80026-00017-1,0,4380_7778208_2150208,4380_529 -4380_77985,291,4380_40545,Cloghroe,79403-00013-1,0,4380_7778208_2150204,4380_529 -4380_77985,296,4380_40546,Cloghroe,79404-00021-1,0,4380_7778208_2150204,4380_529 -4380_77948,294,4380_4055,Ratoath,52192-00018-1,0,4380_7778208_1030107,4380_39 -4380_77985,285,4380_40552,Cloghroe,78917-00009-1,0,4380_7778208_2150202,4380_529 -4380_77985,286,4380_40553,Cloghroe,78915-00010-1,0,4380_7778208_2150202,4380_529 -4380_77985,288,4380_40554,Cloghroe,78913-00011-1,0,4380_7778208_2150202,4380_529 -4380_77985,287,4380_40555,Cloghroe,78919-00012-1,0,4380_7778208_2150202,4380_529 -4380_77985,289,4380_40556,Cloghroe,78911-00014-1,0,4380_7778208_2150202,4380_529 -4380_77985,292,4380_40557,Cloghroe,78916-00016-1,0,4380_7778208_2150202,4380_529 -4380_77985,290,4380_40558,Cloghroe,78918-00015-1,0,4380_7778208_2150202,4380_529 -4380_77985,294,4380_40559,Cloghroe,78920-00018-1,0,4380_7778208_2150202,4380_529 -4380_77948,295,4380_4056,Ratoath,52194-00019-1,0,4380_7778208_1030107,4380_39 -4380_77985,295,4380_40560,Cloghroe,78912-00019-1,0,4380_7778208_2150202,4380_529 -4380_77985,293,4380_40561,Cloghroe,78914-00017-1,0,4380_7778208_2150202,4380_529 -4380_77985,297,4380_40563,Cloghroe,78921-00008-1,0,4380_7778208_2150202,4380_529 -4380_77985,291,4380_40565,Cloghroe,78922-00013-1,0,4380_7778208_2150202,4380_529 -4380_77985,296,4380_40566,Cloghroe,78923-00021-1,0,4380_7778208_2150202,4380_529 -4380_77948,296,4380_4057,Ratoath,52012-00021-1,0,4380_7778208_1030104,4380_40 -4380_77985,285,4380_40572,Cloghroe,79555-00009-1,0,4380_7778208_2150205,4380_529 -4380_77985,286,4380_40573,Cloghroe,79561-00010-1,0,4380_7778208_2150205,4380_529 -4380_77985,288,4380_40574,Cloghroe,79559-00011-1,0,4380_7778208_2150205,4380_529 -4380_77985,287,4380_40575,Cloghroe,79557-00012-1,0,4380_7778208_2150205,4380_529 -4380_77985,289,4380_40576,Cloghroe,79553-00014-1,0,4380_7778208_2150205,4380_529 -4380_77985,292,4380_40577,Cloghroe,79562-00016-1,0,4380_7778208_2150205,4380_529 -4380_77985,290,4380_40578,Cloghroe,79556-00015-1,0,4380_7778208_2150205,4380_529 -4380_77985,294,4380_40579,Cloghroe,79558-00018-1,0,4380_7778208_2150205,4380_529 -4380_77985,295,4380_40580,Cloghroe,79554-00019-1,0,4380_7778208_2150205,4380_529 -4380_77985,293,4380_40581,Cloghroe,79560-00017-1,0,4380_7778208_2150205,4380_529 -4380_77985,297,4380_40583,St. Patrick Street,78790-00008-1,0,4380_7778208_2150201,4380_530 -4380_77985,291,4380_40585,Cloghroe,78791-00013-1,0,4380_7778208_2150201,4380_529 -4380_77985,296,4380_40586,Cloghroe,78792-00021-1,0,4380_7778208_2150201,4380_529 -4380_77985,285,4380_40592,Cloghroe,79118-00009-1,0,4380_7778208_2150203,4380_529 -4380_77985,286,4380_40593,Cloghroe,79122-00010-1,0,4380_7778208_2150203,4380_529 -4380_77985,288,4380_40594,Cloghroe,79120-00011-1,0,4380_7778208_2150203,4380_529 -4380_77985,287,4380_40595,Cloghroe,79116-00012-1,0,4380_7778208_2150203,4380_529 -4380_77985,289,4380_40596,Cloghroe,79124-00014-1,0,4380_7778208_2150203,4380_529 -4380_77985,292,4380_40597,Cloghroe,79123-00016-1,0,4380_7778208_2150203,4380_529 -4380_77985,290,4380_40598,Cloghroe,79119-00015-1,0,4380_7778208_2150203,4380_529 -4380_77985,294,4380_40599,Cloghroe,79117-00018-1,0,4380_7778208_2150203,4380_529 -4380_77985,295,4380_40600,Cloghroe,79125-00019-1,0,4380_7778208_2150203,4380_529 -4380_77985,293,4380_40601,Cloghroe,79121-00017-1,0,4380_7778208_2150203,4380_529 -4380_77985,297,4380_40603,Cloghroe,79126-00008-1,0,4380_7778208_2150203,4380_529 -4380_77985,291,4380_40605,Cloghroe,79127-00013-1,0,4380_7778208_2150203,4380_529 -4380_77985,296,4380_40606,Cloghroe,79128-00021-1,0,4380_7778208_2150203,4380_529 -4380_77985,297,4380_40613,St. Patrick Street,79448-00008-1,0,4380_7778208_2150204,4380_530 -4380_77985,285,4380_40614,Cloghroe,79725-00009-1,0,4380_7778208_2150206,4380_529 -4380_77985,286,4380_40615,Cloghroe,79727-00010-1,0,4380_7778208_2150206,4380_529 -4380_77985,288,4380_40616,Cloghroe,79733-00011-1,0,4380_7778208_2150206,4380_529 -4380_77985,287,4380_40617,Cloghroe,79731-00012-1,0,4380_7778208_2150206,4380_529 -4380_77985,289,4380_40618,Cloghroe,79729-00014-1,0,4380_7778208_2150206,4380_529 -4380_77985,292,4380_40619,Cloghroe,79728-00016-1,0,4380_7778208_2150206,4380_529 -4380_77985,290,4380_40620,Cloghroe,79726-00015-1,0,4380_7778208_2150206,4380_529 -4380_77985,294,4380_40621,Cloghroe,79732-00018-1,0,4380_7778208_2150206,4380_529 -4380_77985,295,4380_40622,Cloghroe,79730-00019-1,0,4380_7778208_2150206,4380_529 -4380_77985,293,4380_40623,Cloghroe,79734-00017-1,0,4380_7778208_2150206,4380_529 -4380_77985,291,4380_40625,Cloghroe,79563-00013-1,0,4380_7778208_2150205,4380_529 -4380_77985,296,4380_40626,Cloghroe,79564-00021-1,0,4380_7778208_2150205,4380_529 -4380_77985,297,4380_40633,Cloghroe,78937-00008-1,0,4380_7778208_2150202,4380_529 -4380_77985,285,4380_40634,Cloghroe,80135-00009-1,0,4380_7778208_2150209,4380_532 -4380_77985,286,4380_40635,Cloghroe,80139-00010-1,0,4380_7778208_2150209,4380_532 -4380_77985,288,4380_40636,Cloghroe,80143-00011-1,0,4380_7778208_2150209,4380_532 -4380_77985,287,4380_40637,Cloghroe,80137-00012-1,0,4380_7778208_2150209,4380_532 -4380_77985,289,4380_40638,Cloghroe,80141-00014-1,0,4380_7778208_2150209,4380_532 -4380_77985,292,4380_40639,Cloghroe,80140-00016-1,0,4380_7778208_2150209,4380_532 -4380_77948,291,4380_4064,Ratoath,1955-00013-1,0,4380_7778208_1030110,4380_39 -4380_77985,290,4380_40640,Cloghroe,80136-00015-1,0,4380_7778208_2150209,4380_532 -4380_77985,294,4380_40641,Cloghroe,80138-00018-1,0,4380_7778208_2150209,4380_532 -4380_77985,295,4380_40642,Cloghroe,80142-00019-1,0,4380_7778208_2150209,4380_532 -4380_77985,293,4380_40643,Cloghroe,80144-00017-1,0,4380_7778208_2150209,4380_532 -4380_77985,291,4380_40645,Cloghroe,79459-00013-1,0,4380_7778208_2150204,4380_529 -4380_77985,296,4380_40646,Cloghroe,79460-00021-1,0,4380_7778208_2150204,4380_529 -4380_77948,296,4380_4065,Ratoath,52379-00021-1,0,4380_7778208_1030110,4380_39 -4380_77985,285,4380_40653,Cloghroe,78948-00009-1,0,4380_7778208_2150202,4380_529 -4380_77985,286,4380_40654,Cloghroe,78944-00010-1,0,4380_7778208_2150202,4380_529 -4380_77985,288,4380_40655,Cloghroe,78938-00011-1,0,4380_7778208_2150202,4380_529 -4380_77985,287,4380_40656,Cloghroe,78940-00012-1,0,4380_7778208_2150202,4380_529 -4380_77985,291,4380_40657,Cloghroe,78946-00013-1,0,4380_7778208_2150202,4380_532 -4380_77985,289,4380_40658,Cloghroe,78942-00014-1,0,4380_7778208_2150202,4380_529 -4380_77985,292,4380_40659,Cloghroe,78945-00016-1,0,4380_7778208_2150202,4380_529 -4380_77985,290,4380_40660,Cloghroe,78949-00015-1,0,4380_7778208_2150202,4380_529 -4380_77985,294,4380_40661,Cloghroe,78941-00018-1,0,4380_7778208_2150202,4380_529 -4380_77985,295,4380_40662,Cloghroe,78943-00019-1,0,4380_7778208_2150202,4380_529 -4380_77985,293,4380_40663,Cloghroe,78939-00017-1,0,4380_7778208_2150202,4380_529 -4380_77985,296,4380_40664,Cloghroe,78947-00021-1,0,4380_7778208_2150202,4380_532 -4380_77985,297,4380_40666,Cloghroe,79142-00008-1,0,4380_7778208_2150203,4380_529 -4380_77985,285,4380_40673,Cloghroe,79583-00009-1,0,4380_7778208_2150205,4380_529 -4380_77985,286,4380_40674,Cloghroe,79585-00010-1,0,4380_7778208_2150205,4380_529 -4380_77985,288,4380_40675,Cloghroe,79579-00011-1,0,4380_7778208_2150205,4380_529 -4380_77985,287,4380_40676,Cloghroe,79581-00012-1,0,4380_7778208_2150205,4380_529 -4380_77985,291,4380_40677,Cloghroe,78795-00013-1,0,4380_7778208_2150201,4380_529 -4380_77985,289,4380_40678,Cloghroe,79577-00014-1,0,4380_7778208_2150205,4380_529 -4380_77985,292,4380_40679,Cloghroe,79586-00016-1,0,4380_7778208_2150205,4380_529 -4380_77985,290,4380_40680,Cloghroe,79584-00015-1,0,4380_7778208_2150205,4380_529 -4380_77985,294,4380_40681,Cloghroe,79582-00018-1,0,4380_7778208_2150205,4380_529 -4380_77985,295,4380_40682,Cloghroe,79578-00019-1,0,4380_7778208_2150205,4380_529 -4380_77985,293,4380_40683,Cloghroe,79580-00017-1,0,4380_7778208_2150205,4380_529 -4380_77985,296,4380_40684,Cloghroe,78796-00021-1,0,4380_7778208_2150201,4380_529 -4380_77985,285,4380_40691,Cloghroe,79153-00009-1,0,4380_7778208_2150203,4380_529 -4380_77985,286,4380_40692,Cloghroe,79149-00010-1,0,4380_7778208_2150203,4380_529 -4380_77985,288,4380_40693,Cloghroe,79145-00011-1,0,4380_7778208_2150203,4380_529 -4380_77985,287,4380_40694,Cloghroe,79143-00012-1,0,4380_7778208_2150203,4380_529 -4380_77985,291,4380_40695,Cloghroe,79147-00013-1,0,4380_7778208_2150203,4380_529 -4380_77985,289,4380_40696,Cloghroe,79151-00014-1,0,4380_7778208_2150203,4380_529 -4380_77985,292,4380_40697,Cloghroe,79150-00016-1,0,4380_7778208_2150203,4380_529 -4380_77985,290,4380_40698,Cloghroe,79154-00015-1,0,4380_7778208_2150203,4380_529 -4380_77985,294,4380_40699,Cloghroe,79144-00018-1,0,4380_7778208_2150203,4380_529 -4380_77985,295,4380_40700,Cloghroe,79152-00019-1,0,4380_7778208_2150203,4380_529 -4380_77985,293,4380_40701,Cloghroe,79146-00017-1,0,4380_7778208_2150203,4380_529 -4380_77985,296,4380_40702,Cloghroe,79148-00021-1,0,4380_7778208_2150203,4380_529 -4380_77985,297,4380_40704,Cloghroe,78963-00008-1,0,4380_7778208_2150202,4380_529 -4380_77985,285,4380_40711,Cloghroe,79753-00009-1,0,4380_7778208_2150206,4380_529 -4380_77985,286,4380_40712,Cloghroe,79751-00010-1,0,4380_7778208_2150206,4380_529 -4380_77985,288,4380_40713,Cloghroe,79749-00011-1,0,4380_7778208_2150206,4380_529 -4380_77985,287,4380_40714,Cloghroe,79745-00012-1,0,4380_7778208_2150206,4380_529 -4380_77985,291,4380_40715,Cloghroe,79587-00013-1,0,4380_7778208_2150205,4380_529 -4380_77985,289,4380_40716,Cloghroe,79747-00014-1,0,4380_7778208_2150206,4380_529 -4380_77985,292,4380_40717,Cloghroe,79752-00016-1,0,4380_7778208_2150206,4380_529 -4380_77985,290,4380_40718,Cloghroe,79754-00015-1,0,4380_7778208_2150206,4380_529 -4380_77985,294,4380_40719,Cloghroe,79746-00018-1,0,4380_7778208_2150206,4380_529 -4380_77985,295,4380_40720,Cloghroe,79748-00019-1,0,4380_7778208_2150206,4380_529 -4380_77985,293,4380_40721,Cloghroe,79750-00017-1,0,4380_7778208_2150206,4380_529 -4380_77985,296,4380_40722,Cloghroe,79588-00021-1,0,4380_7778208_2150205,4380_529 -4380_77985,285,4380_40729,Cloghroe,78964-00009-1,0,4380_7778208_2150202,4380_529 -4380_77948,285,4380_4073,Ratoath,1850-00009-1,0,4380_7778208_1030109,4380_39 -4380_77985,286,4380_40730,Cloghroe,78970-00010-1,0,4380_7778208_2150202,4380_529 -4380_77985,288,4380_40731,Cloghroe,78968-00011-1,0,4380_7778208_2150202,4380_529 -4380_77985,287,4380_40732,Cloghroe,78966-00012-1,0,4380_7778208_2150202,4380_529 -4380_77985,291,4380_40733,Cloghroe,78974-00013-1,0,4380_7778208_2150202,4380_529 -4380_77985,289,4380_40734,Cloghroe,78972-00014-1,0,4380_7778208_2150202,4380_529 -4380_77985,292,4380_40735,Cloghroe,78971-00016-1,0,4380_7778208_2150202,4380_529 -4380_77985,290,4380_40736,Cloghroe,78965-00015-1,0,4380_7778208_2150202,4380_529 -4380_77985,294,4380_40737,Cloghroe,78967-00018-1,0,4380_7778208_2150202,4380_529 -4380_77985,295,4380_40738,Cloghroe,78973-00019-1,0,4380_7778208_2150202,4380_529 -4380_77985,293,4380_40739,Cloghroe,78969-00017-1,0,4380_7778208_2150202,4380_529 -4380_77948,286,4380_4074,Ratoath,1860-00010-1,0,4380_7778208_1030109,4380_39 -4380_77985,296,4380_40740,Cloghroe,78975-00021-1,0,4380_7778208_2150202,4380_529 -4380_77985,297,4380_40742,Cloghroe,79168-00008-1,0,4380_7778208_2150203,4380_529 -4380_77985,285,4380_40749,Cloghroe,79607-00009-1,0,4380_7778208_2150205,4380_529 -4380_77948,297,4380_4075,Ratoath,1340-00008-1,0,4380_7778208_1030102,4380_40 -4380_77985,286,4380_40750,Cloghroe,79605-00010-1,0,4380_7778208_2150205,4380_529 -4380_77985,288,4380_40751,Cloghroe,79601-00011-1,0,4380_7778208_2150205,4380_529 -4380_77985,287,4380_40752,Cloghroe,79603-00012-1,0,4380_7778208_2150205,4380_529 -4380_77985,291,4380_40753,Cloghroe,78799-00013-1,0,4380_7778208_2150201,4380_529 -4380_77985,289,4380_40754,Cloghroe,79609-00014-1,0,4380_7778208_2150205,4380_529 -4380_77985,292,4380_40755,Cloghroe,79606-00016-1,0,4380_7778208_2150205,4380_529 -4380_77985,290,4380_40756,Cloghroe,79608-00015-1,0,4380_7778208_2150205,4380_529 -4380_77985,294,4380_40757,Cloghroe,79604-00018-1,0,4380_7778208_2150205,4380_529 -4380_77985,295,4380_40758,Cloghroe,79610-00019-1,0,4380_7778208_2150205,4380_529 -4380_77985,293,4380_40759,Cloghroe,79602-00017-1,0,4380_7778208_2150205,4380_529 -4380_77948,288,4380_4076,Ratoath,1870-00011-1,0,4380_7778208_1030109,4380_39 -4380_77985,296,4380_40760,Cloghroe,78800-00021-1,0,4380_7778208_2150201,4380_529 -4380_77985,285,4380_40767,Cloghroe,79171-00009-1,0,4380_7778208_2150203,4380_529 -4380_77985,286,4380_40768,Cloghroe,79169-00010-1,0,4380_7778208_2150203,4380_529 -4380_77985,288,4380_40769,Cloghroe,79179-00011-1,0,4380_7778208_2150203,4380_529 -4380_77948,287,4380_4077,Ratoath,1880-00012-1,0,4380_7778208_1030109,4380_39 -4380_77985,287,4380_40770,Cloghroe,79177-00012-1,0,4380_7778208_2150203,4380_529 -4380_77985,291,4380_40771,Cloghroe,79175-00013-1,0,4380_7778208_2150203,4380_529 -4380_77985,289,4380_40772,Cloghroe,79173-00014-1,0,4380_7778208_2150203,4380_529 -4380_77985,292,4380_40773,Cloghroe,79170-00016-1,0,4380_7778208_2150203,4380_529 -4380_77985,290,4380_40774,Cloghroe,79172-00015-1,0,4380_7778208_2150203,4380_529 -4380_77985,294,4380_40775,Cloghroe,79178-00018-1,0,4380_7778208_2150203,4380_529 -4380_77985,295,4380_40776,Cloghroe,79174-00019-1,0,4380_7778208_2150203,4380_529 -4380_77985,293,4380_40777,Cloghroe,79180-00017-1,0,4380_7778208_2150203,4380_529 -4380_77985,296,4380_40778,Cloghroe,79176-00021-1,0,4380_7778208_2150203,4380_529 -4380_77948,289,4380_4078,Ratoath,1840-00014-1,0,4380_7778208_1030109,4380_39 -4380_77985,297,4380_40780,Cloghroe,78989-00008-1,0,4380_7778208_2150202,4380_529 -4380_77985,285,4380_40787,Cloghroe,79773-00009-1,0,4380_7778208_2150206,4380_529 -4380_77985,286,4380_40788,Cloghroe,79767-00010-1,0,4380_7778208_2150206,4380_529 -4380_77985,288,4380_40789,Cloghroe,79771-00011-1,0,4380_7778208_2150206,4380_529 -4380_77948,290,4380_4079,Ratoath,52313-00015-1,0,4380_7778208_1030109,4380_39 -4380_77985,287,4380_40790,Cloghroe,79765-00012-1,0,4380_7778208_2150206,4380_529 -4380_77985,291,4380_40791,Cloghroe,79619-00013-1,0,4380_7778208_2150205,4380_529 -4380_77985,289,4380_40792,Cloghroe,79769-00014-1,0,4380_7778208_2150206,4380_529 -4380_77985,292,4380_40793,Cloghroe,79768-00016-1,0,4380_7778208_2150206,4380_529 -4380_77985,290,4380_40794,Cloghroe,79774-00015-1,0,4380_7778208_2150206,4380_529 -4380_77985,294,4380_40795,Cloghroe,79766-00018-1,0,4380_7778208_2150206,4380_529 -4380_77985,295,4380_40796,Cloghroe,79770-00019-1,0,4380_7778208_2150206,4380_529 -4380_77985,293,4380_40797,Cloghroe,79772-00017-1,0,4380_7778208_2150206,4380_529 -4380_77985,296,4380_40798,Cloghroe,79620-00021-1,0,4380_7778208_2150205,4380_529 -4380_77946,285,4380_408,Drogheda,50333-00009-1,1,4380_7778208_1000913,4380_6 -4380_77948,292,4380_4080,Ratoath,52314-00016-1,0,4380_7778208_1030109,4380_39 -4380_77985,285,4380_40805,St. Patrick Street,78996-00009-1,0,4380_7778208_2150202,4380_531 -4380_77985,286,4380_40806,St. Patrick Street,78998-00010-1,0,4380_7778208_2150202,4380_531 -4380_77985,288,4380_40807,St. Patrick Street,78994-00011-1,0,4380_7778208_2150202,4380_531 -4380_77985,287,4380_40808,St. Patrick Street,78990-00012-1,0,4380_7778208_2150202,4380_531 -4380_77985,291,4380_40809,St. Patrick Street,78992-00013-1,0,4380_7778208_2150202,4380_531 -4380_77948,293,4380_4081,Ratoath,52317-00017-1,0,4380_7778208_1030109,4380_39 -4380_77985,289,4380_40810,St. Patrick Street,79000-00014-1,0,4380_7778208_2150202,4380_531 -4380_77985,292,4380_40811,St. Patrick Street,78999-00016-1,0,4380_7778208_2150202,4380_531 -4380_77985,290,4380_40812,St. Patrick Street,78997-00015-1,0,4380_7778208_2150202,4380_531 -4380_77985,294,4380_40813,St. Patrick Street,78991-00018-1,0,4380_7778208_2150202,4380_531 -4380_77985,295,4380_40814,St. Patrick Street,79001-00019-1,0,4380_7778208_2150202,4380_531 -4380_77985,293,4380_40815,St. Patrick Street,78995-00017-1,0,4380_7778208_2150202,4380_531 -4380_77985,296,4380_40816,St. Patrick Street,78993-00021-1,0,4380_7778208_2150202,4380_531 -4380_77985,297,4380_40818,St. Patrick Street,79194-00008-1,0,4380_7778208_2150203,4380_531 -4380_77948,294,4380_4082,Ratoath,52316-00018-1,0,4380_7778208_1030109,4380_39 -4380_77985,285,4380_40825,St. Patrick Street,79631-00009-1,0,4380_7778208_2150205,4380_531 -4380_77985,286,4380_40826,St. Patrick Street,79629-00010-1,0,4380_7778208_2150205,4380_531 -4380_77985,288,4380_40827,St. Patrick Street,79625-00011-1,0,4380_7778208_2150205,4380_531 -4380_77985,287,4380_40828,St. Patrick Street,79633-00012-1,0,4380_7778208_2150205,4380_531 -4380_77985,291,4380_40829,St. Patrick Street,78803-00013-1,0,4380_7778208_2150201,4380_531 -4380_77948,295,4380_4083,Ratoath,52315-00019-1,0,4380_7778208_1030109,4380_39 -4380_77985,289,4380_40830,St. Patrick Street,79627-00014-1,0,4380_7778208_2150205,4380_531 -4380_77985,292,4380_40831,St. Patrick Street,79630-00016-1,0,4380_7778208_2150205,4380_531 -4380_77985,290,4380_40832,St. Patrick Street,79632-00015-1,0,4380_7778208_2150205,4380_531 -4380_77985,294,4380_40833,St. Patrick Street,79634-00018-1,0,4380_7778208_2150205,4380_531 -4380_77985,295,4380_40834,St. Patrick Street,79628-00019-1,0,4380_7778208_2150205,4380_531 -4380_77985,293,4380_40835,St. Patrick Street,79626-00017-1,0,4380_7778208_2150205,4380_531 -4380_77985,296,4380_40836,St. Patrick Street,78804-00021-1,0,4380_7778208_2150201,4380_531 -4380_77985,285,4380_40843,Mahon Pt. S.C.,79003-00009-1,1,4380_7778208_2150203,4380_534 -4380_77985,286,4380_40844,Mahon Pt. S.C.,79009-00010-1,1,4380_7778208_2150203,4380_534 -4380_77985,288,4380_40845,Mahon Pt. S.C.,79011-00011-1,1,4380_7778208_2150203,4380_534 -4380_77985,287,4380_40846,Mahon Pt. S.C.,79005-00012-1,1,4380_7778208_2150203,4380_534 -4380_77985,291,4380_40847,Mahon Pt. S.C.,78762-00013-1,1,4380_7778208_2150201,4380_537 -4380_77985,289,4380_40848,Mahon Pt. S.C.,79007-00014-1,1,4380_7778208_2150203,4380_534 -4380_77985,292,4380_40849,Mahon Pt. S.C.,79010-00016-1,1,4380_7778208_2150203,4380_534 -4380_77985,290,4380_40850,Mahon Pt. S.C.,79004-00015-1,1,4380_7778208_2150203,4380_534 -4380_77985,294,4380_40851,Mahon Pt. S.C.,79006-00018-1,1,4380_7778208_2150203,4380_534 -4380_77985,295,4380_40852,Mahon Pt. S.C.,79008-00019-1,1,4380_7778208_2150203,4380_534 -4380_77985,293,4380_40853,Mahon Pt. S.C.,79012-00017-1,1,4380_7778208_2150203,4380_534 -4380_77985,296,4380_40854,Mahon Pt. S.C.,78763-00021-1,1,4380_7778208_2150201,4380_537 -4380_77985,285,4380_40860,Mahon Pt. S.C.,80049-00009-1,1,4380_7778208_2150209,4380_533 -4380_77985,286,4380_40861,Mahon Pt. S.C.,80051-00010-1,1,4380_7778208_2150209,4380_533 -4380_77985,288,4380_40862,Mahon Pt. S.C.,80045-00011-1,1,4380_7778208_2150209,4380_533 -4380_77985,287,4380_40863,Mahon Pt. S.C.,80053-00012-1,1,4380_7778208_2150209,4380_533 -4380_77985,289,4380_40864,Mahon Pt. S.C.,80047-00014-1,1,4380_7778208_2150209,4380_533 -4380_77985,292,4380_40865,Mahon Pt. S.C.,80052-00016-1,1,4380_7778208_2150209,4380_533 -4380_77985,290,4380_40866,Mahon Pt. S.C.,80050-00015-1,1,4380_7778208_2150209,4380_533 -4380_77985,294,4380_40867,Mahon Pt. S.C.,80054-00018-1,1,4380_7778208_2150209,4380_533 -4380_77985,295,4380_40868,Mahon Pt. S.C.,80048-00019-1,1,4380_7778208_2150209,4380_533 -4380_77985,293,4380_40869,Mahon Pt. S.C.,80046-00017-1,1,4380_7778208_2150209,4380_533 -4380_77985,285,4380_40876,Mahon Pt. S.C.,79641-00009-1,1,4380_7778208_2150206,4380_534 -4380_77985,286,4380_40877,Mahon Pt. S.C.,79637-00010-1,1,4380_7778208_2150206,4380_534 -4380_77985,288,4380_40878,Mahon Pt. S.C.,79635-00011-1,1,4380_7778208_2150206,4380_534 -4380_77985,287,4380_40879,Mahon Pt. S.C.,79639-00012-1,1,4380_7778208_2150206,4380_534 -4380_77985,291,4380_40880,Mahon Pt. S.C.,78815-00013-1,1,4380_7778208_2150202,4380_537 -4380_77985,289,4380_40881,Mahon Pt. S.C.,79643-00014-1,1,4380_7778208_2150206,4380_534 -4380_77985,292,4380_40882,Mahon Pt. S.C.,79638-00016-1,1,4380_7778208_2150206,4380_534 -4380_77985,290,4380_40883,Mahon Pt. S.C.,79642-00015-1,1,4380_7778208_2150206,4380_534 -4380_77985,294,4380_40884,Mahon Pt. S.C.,79640-00018-1,1,4380_7778208_2150206,4380_534 -4380_77985,295,4380_40885,Mahon Pt. S.C.,79644-00019-1,1,4380_7778208_2150206,4380_534 -4380_77985,293,4380_40886,Mahon Pt. S.C.,79636-00017-1,1,4380_7778208_2150206,4380_534 -4380_77985,296,4380_40887,Mahon Pt. S.C.,78816-00021-1,1,4380_7778208_2150202,4380_537 -4380_77985,285,4380_40893,Mahon Pt. S.C.,78825-00009-1,1,4380_7778208_2150202,4380_533 -4380_77985,286,4380_40894,Mahon Pt. S.C.,78819-00010-1,1,4380_7778208_2150202,4380_533 -4380_77985,288,4380_40895,Mahon Pt. S.C.,78817-00011-1,1,4380_7778208_2150202,4380_533 -4380_77985,287,4380_40896,Mahon Pt. S.C.,78821-00012-1,1,4380_7778208_2150202,4380_533 -4380_77985,289,4380_40897,Mahon Pt. S.C.,78823-00014-1,1,4380_7778208_2150202,4380_533 -4380_77985,292,4380_40898,Mahon Pt. S.C.,78820-00016-1,1,4380_7778208_2150202,4380_533 -4380_77985,290,4380_40899,Mahon Pt. S.C.,78826-00015-1,1,4380_7778208_2150202,4380_533 -4380_77946,286,4380_409,Drogheda,50327-00010-1,1,4380_7778208_1000913,4380_6 -4380_77948,285,4380_4090,Ratoath,1622-00009-1,0,4380_7778208_1030106,4380_39 -4380_77985,294,4380_40900,Mahon Pt. S.C.,78822-00018-1,1,4380_7778208_2150202,4380_533 -4380_77985,295,4380_40901,Mahon Pt. S.C.,78824-00019-1,1,4380_7778208_2150202,4380_533 -4380_77985,293,4380_40902,Mahon Pt. S.C.,78818-00017-1,1,4380_7778208_2150202,4380_533 -4380_77985,291,4380_40905,Mahon Pt. S.C.,78764-00013-1,1,4380_7778208_2150201,4380_534 -4380_77985,291,4380_40906,Mahon Pt. S.C.,79023-00013-1,1,4380_7778208_2150203,4380_533 -4380_77985,296,4380_40907,Mahon Pt. S.C.,78765-00021-1,1,4380_7778208_2150201,4380_534 -4380_77985,296,4380_40908,Mahon Pt. S.C.,79024-00021-1,1,4380_7778208_2150203,4380_533 -4380_77948,286,4380_4091,Ratoath,1634-00010-1,0,4380_7778208_1030106,4380_39 -4380_77985,285,4380_40914,Mahon Pt. S.C.,79475-00009-1,1,4380_7778208_2150205,4380_533 -4380_77985,286,4380_40915,Mahon Pt. S.C.,79477-00010-1,1,4380_7778208_2150205,4380_533 -4380_77985,288,4380_40916,Mahon Pt. S.C.,79481-00011-1,1,4380_7778208_2150205,4380_533 -4380_77985,287,4380_40917,Mahon Pt. S.C.,79479-00012-1,1,4380_7778208_2150205,4380_533 -4380_77985,289,4380_40918,Mahon Pt. S.C.,79473-00014-1,1,4380_7778208_2150205,4380_533 -4380_77985,292,4380_40919,Mahon Pt. S.C.,79478-00016-1,1,4380_7778208_2150205,4380_533 -4380_77948,288,4380_4092,Ratoath,1646-00011-1,0,4380_7778208_1030106,4380_39 -4380_77985,290,4380_40920,Mahon Pt. S.C.,79476-00015-1,1,4380_7778208_2150205,4380_533 -4380_77985,294,4380_40921,Mahon Pt. S.C.,79480-00018-1,1,4380_7778208_2150205,4380_533 -4380_77985,295,4380_40922,Mahon Pt. S.C.,79474-00019-1,1,4380_7778208_2150205,4380_533 -4380_77985,293,4380_40923,Mahon Pt. S.C.,79482-00017-1,1,4380_7778208_2150205,4380_533 -4380_77985,291,4380_40925,Mahon Pt. S.C.,79227-00013-1,1,4380_7778208_2150204,4380_533 -4380_77985,296,4380_40926,Mahon Pt. S.C.,79228-00021-1,1,4380_7778208_2150204,4380_533 -4380_77948,287,4380_4093,Ratoath,1658-00012-1,0,4380_7778208_1030106,4380_39 -4380_77985,285,4380_40932,Mahon Pt. S.C.,79031-00009-1,1,4380_7778208_2150203,4380_533 -4380_77985,286,4380_40933,Mahon Pt. S.C.,79029-00010-1,1,4380_7778208_2150203,4380_533 -4380_77985,288,4380_40934,Mahon Pt. S.C.,79027-00011-1,1,4380_7778208_2150203,4380_533 -4380_77985,287,4380_40935,Mahon Pt. S.C.,79033-00012-1,1,4380_7778208_2150203,4380_533 -4380_77985,289,4380_40936,Mahon Pt. S.C.,79025-00014-1,1,4380_7778208_2150203,4380_533 -4380_77985,292,4380_40937,Mahon Pt. S.C.,79030-00016-1,1,4380_7778208_2150203,4380_533 -4380_77985,290,4380_40938,Mahon Pt. S.C.,79032-00015-1,1,4380_7778208_2150203,4380_533 -4380_77985,294,4380_40939,Mahon Pt. S.C.,79034-00018-1,1,4380_7778208_2150203,4380_533 -4380_77948,289,4380_4094,Ratoath,1610-00014-1,0,4380_7778208_1030106,4380_39 -4380_77985,295,4380_40940,Mahon Pt. S.C.,79026-00019-1,1,4380_7778208_2150203,4380_533 -4380_77985,293,4380_40941,Mahon Pt. S.C.,79028-00017-1,1,4380_7778208_2150203,4380_533 -4380_77985,297,4380_40944,Mahon Pt. S.C.,78769-00008-1,1,4380_7778208_2150201,4380_533 -4380_77985,291,4380_40945,Mahon Pt. S.C.,78829-00013-1,1,4380_7778208_2150202,4380_533 -4380_77985,296,4380_40946,Mahon Pt. S.C.,78830-00021-1,1,4380_7778208_2150202,4380_533 -4380_77948,290,4380_4095,Ratoath,52123-00015-1,0,4380_7778208_1030106,4380_39 -4380_77985,285,4380_40952,Mahon Pt. S.C.,79661-00009-1,1,4380_7778208_2150206,4380_533 -4380_77985,286,4380_40953,Mahon Pt. S.C.,79663-00010-1,1,4380_7778208_2150206,4380_533 -4380_77985,288,4380_40954,Mahon Pt. S.C.,79659-00011-1,1,4380_7778208_2150206,4380_533 -4380_77985,287,4380_40955,Mahon Pt. S.C.,79655-00012-1,1,4380_7778208_2150206,4380_533 -4380_77985,289,4380_40956,Mahon Pt. S.C.,79657-00014-1,1,4380_7778208_2150206,4380_533 -4380_77985,292,4380_40957,Mahon Pt. S.C.,79664-00016-1,1,4380_7778208_2150206,4380_533 -4380_77985,290,4380_40958,Mahon Pt. S.C.,79662-00015-1,1,4380_7778208_2150206,4380_533 -4380_77985,294,4380_40959,Mahon Pt. S.C.,79656-00018-1,1,4380_7778208_2150206,4380_533 -4380_77948,291,4380_4096,Ratoath,1674-00013-1,0,4380_7778208_1030106,4380_40 -4380_77985,295,4380_40960,Mahon Pt. S.C.,79658-00019-1,1,4380_7778208_2150206,4380_533 -4380_77985,293,4380_40961,Mahon Pt. S.C.,79660-00017-1,1,4380_7778208_2150206,4380_533 -4380_77985,291,4380_40963,Mahon Pt. S.C.,78770-00013-1,1,4380_7778208_2150201,4380_533 -4380_77985,296,4380_40964,Mahon Pt. S.C.,78771-00021-1,1,4380_7778208_2150201,4380_533 -4380_77948,292,4380_4097,Ratoath,52127-00016-1,0,4380_7778208_1030106,4380_39 -4380_77985,285,4380_40970,Mahon Pt. S.C.,80071-00009-1,1,4380_7778208_2150209,4380_533 -4380_77985,286,4380_40971,Mahon Pt. S.C.,80067-00010-1,1,4380_7778208_2150209,4380_533 -4380_77985,288,4380_40972,Mahon Pt. S.C.,80065-00011-1,1,4380_7778208_2150209,4380_533 -4380_77985,287,4380_40973,Mahon Pt. S.C.,80073-00012-1,1,4380_7778208_2150209,4380_533 -4380_77985,289,4380_40974,Mahon Pt. S.C.,80069-00014-1,1,4380_7778208_2150209,4380_533 -4380_77985,292,4380_40975,Mahon Pt. S.C.,80068-00016-1,1,4380_7778208_2150209,4380_533 -4380_77985,290,4380_40976,Mahon Pt. S.C.,80072-00015-1,1,4380_7778208_2150209,4380_533 -4380_77985,294,4380_40977,Mahon Pt. S.C.,80074-00018-1,1,4380_7778208_2150209,4380_533 -4380_77985,295,4380_40978,Mahon Pt. S.C.,80070-00019-1,1,4380_7778208_2150209,4380_533 -4380_77985,293,4380_40979,Mahon Pt. S.C.,80066-00017-1,1,4380_7778208_2150209,4380_533 -4380_77948,293,4380_4098,Ratoath,52128-00017-1,0,4380_7778208_1030106,4380_39 -4380_77985,297,4380_40982,Mahon Pt. S.C.,78842-00008-1,1,4380_7778208_2150202,4380_533 -4380_77985,291,4380_40983,Mahon Pt. S.C.,79037-00013-1,1,4380_7778208_2150203,4380_536 -4380_77985,296,4380_40984,Mahon Pt. S.C.,79038-00021-1,1,4380_7778208_2150203,4380_536 -4380_77948,294,4380_4099,Ratoath,52124-00018-1,0,4380_7778208_1030106,4380_39 -4380_77985,285,4380_40990,Mahon Pt. S.C.,78845-00009-1,1,4380_7778208_2150202,4380_533 -4380_77985,286,4380_40991,Mahon Pt. S.C.,78853-00010-1,1,4380_7778208_2150202,4380_533 -4380_77985,288,4380_40992,Mahon Pt. S.C.,78851-00011-1,1,4380_7778208_2150202,4380_533 -4380_77985,287,4380_40993,Mahon Pt. S.C.,78847-00012-1,1,4380_7778208_2150202,4380_533 -4380_77985,289,4380_40994,Mahon Pt. S.C.,78849-00014-1,1,4380_7778208_2150202,4380_533 -4380_77985,292,4380_40995,Mahon Pt. S.C.,78854-00016-1,1,4380_7778208_2150202,4380_533 -4380_77985,290,4380_40996,Mahon Pt. S.C.,78846-00015-1,1,4380_7778208_2150202,4380_533 -4380_77985,294,4380_40997,Mahon Pt. S.C.,78848-00018-1,1,4380_7778208_2150202,4380_533 -4380_77985,295,4380_40998,Mahon Pt. S.C.,78850-00019-1,1,4380_7778208_2150202,4380_533 -4380_77985,293,4380_40999,Mahon Pt. S.C.,78852-00017-1,1,4380_7778208_2150202,4380_533 -4380_77946,297,4380_410,Drogheda,50171-00008-1,1,4380_7778208_1000908,4380_8 -4380_77948,295,4380_4100,Ratoath,52126-00019-1,0,4380_7778208_1030106,4380_39 -4380_77985,291,4380_41001,Mahon Pt. S.C.,79271-00013-1,1,4380_7778208_2150204,4380_533 -4380_77985,296,4380_41002,Mahon Pt. S.C.,79272-00021-1,1,4380_7778208_2150204,4380_533 -4380_77985,285,4380_41008,Mahon Pt. S.C.,79495-00009-1,1,4380_7778208_2150205,4380_533 -4380_77985,286,4380_41009,Mahon Pt. S.C.,79497-00010-1,1,4380_7778208_2150205,4380_533 -4380_77948,296,4380_4101,Ratoath,52125-00021-1,0,4380_7778208_1030106,4380_40 -4380_77985,288,4380_41010,Mahon Pt. S.C.,79499-00011-1,1,4380_7778208_2150205,4380_533 -4380_77985,287,4380_41011,Mahon Pt. S.C.,79493-00012-1,1,4380_7778208_2150205,4380_533 -4380_77985,289,4380_41012,Mahon Pt. S.C.,79501-00014-1,1,4380_7778208_2150205,4380_533 -4380_77985,292,4380_41013,Mahon Pt. S.C.,79498-00016-1,1,4380_7778208_2150205,4380_533 -4380_77985,290,4380_41014,Mahon Pt. S.C.,79496-00015-1,1,4380_7778208_2150205,4380_533 -4380_77985,294,4380_41015,Mahon Pt. S.C.,79494-00018-1,1,4380_7778208_2150205,4380_533 -4380_77985,295,4380_41016,Mahon Pt. S.C.,79502-00019-1,1,4380_7778208_2150205,4380_533 -4380_77985,293,4380_41017,Mahon Pt. S.C.,79500-00017-1,1,4380_7778208_2150205,4380_533 -4380_77985,297,4380_41020,Mahon Pt. S.C.,78775-00008-1,1,4380_7778208_2150201,4380_533 -4380_77985,291,4380_41021,Mahon Pt. S.C.,78855-00013-1,1,4380_7778208_2150202,4380_536 -4380_77985,296,4380_41022,Mahon Pt. S.C.,78856-00021-1,1,4380_7778208_2150202,4380_536 -4380_77985,285,4380_41028,Mahon Pt. S.C.,79057-00009-1,1,4380_7778208_2150203,4380_533 -4380_77985,286,4380_41029,Mahon Pt. S.C.,79051-00010-1,1,4380_7778208_2150203,4380_533 -4380_77985,288,4380_41030,Mahon Pt. S.C.,79055-00011-1,1,4380_7778208_2150203,4380_533 -4380_77985,287,4380_41031,Mahon Pt. S.C.,79053-00012-1,1,4380_7778208_2150203,4380_533 -4380_77985,289,4380_41032,Mahon Pt. S.C.,79059-00014-1,1,4380_7778208_2150203,4380_533 -4380_77985,292,4380_41033,Mahon Pt. S.C.,79052-00016-1,1,4380_7778208_2150203,4380_533 -4380_77985,290,4380_41034,Mahon Pt. S.C.,79058-00015-1,1,4380_7778208_2150203,4380_533 -4380_77985,294,4380_41035,Mahon Pt. S.C.,79054-00018-1,1,4380_7778208_2150203,4380_533 -4380_77985,295,4380_41036,Mahon Pt. S.C.,79060-00019-1,1,4380_7778208_2150203,4380_533 -4380_77985,293,4380_41037,Mahon Pt. S.C.,79056-00017-1,1,4380_7778208_2150203,4380_533 -4380_77985,291,4380_41039,Mahon Pt. S.C.,78776-00013-1,1,4380_7778208_2150201,4380_533 -4380_77985,296,4380_41040,Mahon Pt. S.C.,78777-00021-1,1,4380_7778208_2150201,4380_533 -4380_77985,285,4380_41046,Mahon Pt. S.C.,79679-00009-1,1,4380_7778208_2150206,4380_533 -4380_77985,286,4380_41047,Mahon Pt. S.C.,79677-00010-1,1,4380_7778208_2150206,4380_533 -4380_77985,288,4380_41048,Mahon Pt. S.C.,79683-00011-1,1,4380_7778208_2150206,4380_533 -4380_77985,287,4380_41049,Mahon Pt. S.C.,79681-00012-1,1,4380_7778208_2150206,4380_533 -4380_77985,289,4380_41050,Mahon Pt. S.C.,79675-00014-1,1,4380_7778208_2150206,4380_533 -4380_77985,292,4380_41051,Mahon Pt. S.C.,79678-00016-1,1,4380_7778208_2150206,4380_533 -4380_77985,290,4380_41052,Mahon Pt. S.C.,79680-00015-1,1,4380_7778208_2150206,4380_533 -4380_77985,294,4380_41053,Mahon Pt. S.C.,79682-00018-1,1,4380_7778208_2150206,4380_533 -4380_77985,295,4380_41054,Mahon Pt. S.C.,79676-00019-1,1,4380_7778208_2150206,4380_533 -4380_77985,293,4380_41055,Mahon Pt. S.C.,79684-00017-1,1,4380_7778208_2150206,4380_533 -4380_77985,297,4380_41058,Mahon Pt. S.C.,78868-00008-1,1,4380_7778208_2150202,4380_533 -4380_77985,291,4380_41059,Mahon Pt. S.C.,79061-00013-1,1,4380_7778208_2150203,4380_536 -4380_77985,296,4380_41060,Mahon Pt. S.C.,79062-00021-1,1,4380_7778208_2150203,4380_536 -4380_77985,285,4380_41067,Mahon Pt. S.C.,80091-00009-1,1,4380_7778208_2150209,4380_533 -4380_77985,286,4380_41068,Mahon Pt. S.C.,80093-00010-1,1,4380_7778208_2150209,4380_533 -4380_77985,288,4380_41069,Mahon Pt. S.C.,80085-00011-1,1,4380_7778208_2150209,4380_533 -4380_77985,287,4380_41070,Mahon Pt. S.C.,80089-00012-1,1,4380_7778208_2150209,4380_533 -4380_77985,291,4380_41071,Mahon Pt. S.C.,79513-00013-1,1,4380_7778208_2150205,4380_536 -4380_77985,289,4380_41072,Mahon Pt. S.C.,80087-00014-1,1,4380_7778208_2150209,4380_533 -4380_77985,292,4380_41073,Mahon Pt. S.C.,80094-00016-1,1,4380_7778208_2150209,4380_533 -4380_77985,290,4380_41074,Mahon Pt. S.C.,80092-00015-1,1,4380_7778208_2150209,4380_533 -4380_77985,294,4380_41075,Mahon Pt. S.C.,80090-00018-1,1,4380_7778208_2150209,4380_533 -4380_77985,295,4380_41076,Mahon Pt. S.C.,80088-00019-1,1,4380_7778208_2150209,4380_533 -4380_77985,293,4380_41077,Mahon Pt. S.C.,80086-00017-1,1,4380_7778208_2150209,4380_533 -4380_77985,296,4380_41078,Mahon Pt. S.C.,79514-00021-1,1,4380_7778208_2150205,4380_536 -4380_77985,297,4380_41086,Mahon Pt. S.C.,79073-00008-1,1,4380_7778208_2150203,4380_533 -4380_77985,285,4380_41087,Mahon Pt. S.C.,78873-00009-1,1,4380_7778208_2150202,4380_536 -4380_77985,286,4380_41088,Mahon Pt. S.C.,78879-00010-1,1,4380_7778208_2150202,4380_536 -4380_77985,288,4380_41089,Mahon Pt. S.C.,78877-00011-1,1,4380_7778208_2150202,4380_536 -4380_77948,285,4380_4109,Ratoath,1782-00009-1,0,4380_7778208_1030108,4380_39 -4380_77985,287,4380_41090,Mahon Pt. S.C.,78871-00012-1,1,4380_7778208_2150202,4380_536 -4380_77985,291,4380_41091,Mahon Pt. S.C.,79315-00013-1,1,4380_7778208_2150204,4380_536 -4380_77985,289,4380_41092,Mahon Pt. S.C.,78875-00014-1,1,4380_7778208_2150202,4380_536 -4380_77985,292,4380_41093,Mahon Pt. S.C.,78880-00016-1,1,4380_7778208_2150202,4380_536 -4380_77985,290,4380_41094,Mahon Pt. S.C.,78874-00015-1,1,4380_7778208_2150202,4380_536 -4380_77985,294,4380_41095,Mahon Pt. S.C.,78872-00018-1,1,4380_7778208_2150202,4380_536 -4380_77985,295,4380_41096,Mahon Pt. S.C.,78876-00019-1,1,4380_7778208_2150202,4380_536 -4380_77985,293,4380_41097,Mahon Pt. S.C.,78878-00017-1,1,4380_7778208_2150202,4380_536 -4380_77985,296,4380_41098,Mahon Pt. S.C.,79316-00021-1,1,4380_7778208_2150204,4380_536 -4380_77946,287,4380_411,Drogheda,50331-00012-1,1,4380_7778208_1000913,4380_6 -4380_77948,286,4380_4110,Ratoath,1794-00010-1,0,4380_7778208_1030108,4380_39 -4380_77985,285,4380_41105,Mahon Pt. S.C.,79519-00009-1,1,4380_7778208_2150205,4380_533 -4380_77985,286,4380_41106,Mahon Pt. S.C.,79515-00010-1,1,4380_7778208_2150205,4380_533 -4380_77985,288,4380_41107,Mahon Pt. S.C.,79517-00011-1,1,4380_7778208_2150205,4380_533 -4380_77985,287,4380_41108,Mahon Pt. S.C.,79521-00012-1,1,4380_7778208_2150205,4380_533 -4380_77985,291,4380_41109,Mahon Pt. S.C.,78882-00013-1,1,4380_7778208_2150202,4380_533 -4380_77948,297,4380_4111,Ratoath,1436-00008-1,0,4380_7778208_1030103,4380_40 -4380_77985,289,4380_41110,Mahon Pt. S.C.,79523-00014-1,1,4380_7778208_2150205,4380_533 -4380_77985,292,4380_41111,Mahon Pt. S.C.,79516-00016-1,1,4380_7778208_2150205,4380_533 -4380_77985,290,4380_41112,Mahon Pt. S.C.,79520-00015-1,1,4380_7778208_2150205,4380_533 -4380_77985,294,4380_41113,Mahon Pt. S.C.,79522-00018-1,1,4380_7778208_2150205,4380_533 -4380_77985,295,4380_41114,Mahon Pt. S.C.,79524-00019-1,1,4380_7778208_2150205,4380_533 -4380_77985,293,4380_41115,Mahon Pt. S.C.,79518-00017-1,1,4380_7778208_2150205,4380_533 -4380_77985,296,4380_41116,Mahon Pt. S.C.,78883-00021-1,1,4380_7778208_2150202,4380_533 -4380_77948,288,4380_4112,Ratoath,1806-00011-1,0,4380_7778208_1030108,4380_39 -4380_77985,297,4380_41124,Mahon Pt. S.C.,78783-00008-1,1,4380_7778208_2150201,4380_533 -4380_77985,285,4380_41125,Mahon Pt. S.C.,79076-00009-1,1,4380_7778208_2150203,4380_536 -4380_77985,286,4380_41126,Mahon Pt. S.C.,79082-00010-1,1,4380_7778208_2150203,4380_536 -4380_77985,288,4380_41127,Mahon Pt. S.C.,79080-00011-1,1,4380_7778208_2150203,4380_536 -4380_77985,287,4380_41128,Mahon Pt. S.C.,79084-00012-1,1,4380_7778208_2150203,4380_536 -4380_77985,291,4380_41129,Mahon Pt. S.C.,78781-00013-1,1,4380_7778208_2150201,4380_536 -4380_77948,287,4380_4113,Ratoath,1818-00012-1,0,4380_7778208_1030108,4380_39 -4380_77985,289,4380_41130,Mahon Pt. S.C.,79078-00014-1,1,4380_7778208_2150203,4380_536 -4380_77985,292,4380_41131,Mahon Pt. S.C.,79083-00016-1,1,4380_7778208_2150203,4380_536 -4380_77985,290,4380_41132,Mahon Pt. S.C.,79077-00015-1,1,4380_7778208_2150203,4380_536 -4380_77985,294,4380_41133,Mahon Pt. S.C.,79085-00018-1,1,4380_7778208_2150203,4380_536 -4380_77985,295,4380_41134,Mahon Pt. S.C.,79079-00019-1,1,4380_7778208_2150203,4380_536 -4380_77985,293,4380_41135,Mahon Pt. S.C.,79081-00017-1,1,4380_7778208_2150203,4380_536 -4380_77985,296,4380_41136,Mahon Pt. S.C.,78782-00021-1,1,4380_7778208_2150201,4380_536 -4380_77948,289,4380_4114,Ratoath,1770-00014-1,0,4380_7778208_1030108,4380_39 -4380_77985,297,4380_41144,Mahon Pt. S.C.,78894-00008-1,1,4380_7778208_2150202,4380_533 -4380_77985,285,4380_41145,Mahon Pt. S.C.,79699-00009-1,1,4380_7778208_2150206,4380_533 -4380_77985,286,4380_41146,Mahon Pt. S.C.,79697-00010-1,1,4380_7778208_2150206,4380_533 -4380_77985,288,4380_41147,Mahon Pt. S.C.,79703-00011-1,1,4380_7778208_2150206,4380_533 -4380_77985,287,4380_41148,Mahon Pt. S.C.,79695-00012-1,1,4380_7778208_2150206,4380_533 -4380_77985,291,4380_41149,Mahon Pt. S.C.,79087-00013-1,1,4380_7778208_2150203,4380_533 -4380_77948,290,4380_4115,Ratoath,52257-00015-1,0,4380_7778208_1030108,4380_39 -4380_77985,289,4380_41150,Mahon Pt. S.C.,79701-00014-1,1,4380_7778208_2150206,4380_533 -4380_77985,292,4380_41151,Mahon Pt. S.C.,79698-00016-1,1,4380_7778208_2150206,4380_533 -4380_77985,290,4380_41152,Mahon Pt. S.C.,79700-00015-1,1,4380_7778208_2150206,4380_533 -4380_77985,294,4380_41153,Mahon Pt. S.C.,79696-00018-1,1,4380_7778208_2150206,4380_533 -4380_77985,295,4380_41154,Mahon Pt. S.C.,79702-00019-1,1,4380_7778208_2150206,4380_533 -4380_77985,293,4380_41155,Mahon Pt. S.C.,79704-00017-1,1,4380_7778208_2150206,4380_533 -4380_77985,296,4380_41156,Mahon Pt. S.C.,79088-00021-1,1,4380_7778208_2150203,4380_533 -4380_77948,291,4380_4116,Ratoath,1414-00013-1,0,4380_7778208_1030103,4380_41 -4380_77985,285,4380_41163,Mahon Pt. S.C.,80109-00009-1,1,4380_7778208_2150209,4380_533 -4380_77985,286,4380_41164,Mahon Pt. S.C.,80113-00010-1,1,4380_7778208_2150209,4380_533 -4380_77985,288,4380_41165,Mahon Pt. S.C.,80107-00011-1,1,4380_7778208_2150209,4380_533 -4380_77985,287,4380_41166,Mahon Pt. S.C.,80105-00012-1,1,4380_7778208_2150209,4380_533 -4380_77985,291,4380_41167,Mahon Pt. S.C.,79537-00013-1,1,4380_7778208_2150205,4380_536 -4380_77985,289,4380_41168,Mahon Pt. S.C.,80111-00014-1,1,4380_7778208_2150209,4380_533 -4380_77985,292,4380_41169,Mahon Pt. S.C.,80114-00016-1,1,4380_7778208_2150209,4380_533 -4380_77948,292,4380_4117,Ratoath,52260-00016-1,0,4380_7778208_1030108,4380_39 -4380_77985,290,4380_41170,Mahon Pt. S.C.,80110-00015-1,1,4380_7778208_2150209,4380_533 -4380_77985,294,4380_41171,Mahon Pt. S.C.,80106-00018-1,1,4380_7778208_2150209,4380_533 -4380_77985,295,4380_41172,Mahon Pt. S.C.,80112-00019-1,1,4380_7778208_2150209,4380_533 -4380_77985,293,4380_41173,Mahon Pt. S.C.,80108-00017-1,1,4380_7778208_2150209,4380_533 -4380_77985,296,4380_41174,Mahon Pt. S.C.,79538-00021-1,1,4380_7778208_2150205,4380_536 -4380_77948,293,4380_4118,Ratoath,52261-00017-1,0,4380_7778208_1030108,4380_39 -4380_77985,297,4380_41182,Mahon Pt. S.C.,79099-00008-1,1,4380_7778208_2150203,4380_533 -4380_77985,285,4380_41183,Mahon Pt. S.C.,78899-00009-1,1,4380_7778208_2150202,4380_536 -4380_77985,286,4380_41184,Mahon Pt. S.C.,78905-00010-1,1,4380_7778208_2150202,4380_536 -4380_77985,288,4380_41185,Mahon Pt. S.C.,78903-00011-1,1,4380_7778208_2150202,4380_536 -4380_77985,287,4380_41186,Mahon Pt. S.C.,78901-00012-1,1,4380_7778208_2150202,4380_536 -4380_77985,291,4380_41187,Mahon Pt. S.C.,79369-00013-1,1,4380_7778208_2150204,4380_533 -4380_77985,289,4380_41188,Mahon Pt. S.C.,78897-00014-1,1,4380_7778208_2150202,4380_536 -4380_77985,292,4380_41189,Mahon Pt. S.C.,78906-00016-1,1,4380_7778208_2150202,4380_536 -4380_77948,294,4380_4119,Ratoath,52259-00018-1,0,4380_7778208_1030108,4380_39 -4380_77985,290,4380_41190,Mahon Pt. S.C.,78900-00015-1,1,4380_7778208_2150202,4380_536 -4380_77985,294,4380_41191,Mahon Pt. S.C.,78902-00018-1,1,4380_7778208_2150202,4380_536 -4380_77985,295,4380_41192,Mahon Pt. S.C.,78898-00019-1,1,4380_7778208_2150202,4380_536 -4380_77985,293,4380_41193,Mahon Pt. S.C.,78904-00017-1,1,4380_7778208_2150202,4380_536 -4380_77985,296,4380_41194,Mahon Pt. S.C.,79370-00021-1,1,4380_7778208_2150204,4380_533 -4380_77985,297,4380_41196,Mahon Pt. S.C.,79371-00008-1,1,4380_7778208_2150204,4380_534 -4380_77946,288,4380_412,Drogheda,50329-00011-1,1,4380_7778208_1000913,4380_6 -4380_77948,295,4380_4120,Ratoath,52258-00019-1,0,4380_7778208_1030108,4380_39 -4380_77985,285,4380_41203,Mahon Pt. S.C.,79541-00009-1,1,4380_7778208_2150205,4380_533 -4380_77985,286,4380_41204,Mahon Pt. S.C.,79545-00010-1,1,4380_7778208_2150205,4380_533 -4380_77985,288,4380_41205,Mahon Pt. S.C.,79547-00011-1,1,4380_7778208_2150205,4380_533 -4380_77985,287,4380_41206,Mahon Pt. S.C.,79543-00012-1,1,4380_7778208_2150205,4380_533 -4380_77985,291,4380_41207,Mahon Pt. S.C.,78908-00013-1,1,4380_7778208_2150202,4380_536 -4380_77985,289,4380_41208,Mahon Pt. S.C.,79539-00014-1,1,4380_7778208_2150205,4380_533 -4380_77985,292,4380_41209,Mahon Pt. S.C.,79546-00016-1,1,4380_7778208_2150205,4380_533 -4380_77948,296,4380_4121,Ratoath,51947-00021-1,0,4380_7778208_1030103,4380_41 -4380_77985,290,4380_41210,Mahon Pt. S.C.,79542-00015-1,1,4380_7778208_2150205,4380_533 -4380_77985,294,4380_41211,Mahon Pt. S.C.,79544-00018-1,1,4380_7778208_2150205,4380_533 -4380_77985,295,4380_41212,Mahon Pt. S.C.,79540-00019-1,1,4380_7778208_2150205,4380_533 -4380_77985,293,4380_41213,Mahon Pt. S.C.,79548-00017-1,1,4380_7778208_2150205,4380_533 -4380_77985,296,4380_41214,Mahon Pt. S.C.,78909-00021-1,1,4380_7778208_2150202,4380_536 -4380_77948,285,4380_4122,Dublin,1183-00009-1,1,4380_7778208_1030101,4380_42 -4380_77985,297,4380_41222,Mahon Pt. S.C.,78787-00008-1,1,4380_7778208_2150201,4380_533 -4380_77985,285,4380_41223,Mahon Pt. S.C.,79106-00009-1,1,4380_7778208_2150203,4380_536 -4380_77985,286,4380_41224,Mahon Pt. S.C.,79102-00010-1,1,4380_7778208_2150203,4380_536 -4380_77985,288,4380_41225,Mahon Pt. S.C.,79108-00011-1,1,4380_7778208_2150203,4380_536 -4380_77985,287,4380_41226,Mahon Pt. S.C.,79104-00012-1,1,4380_7778208_2150203,4380_536 -4380_77985,291,4380_41227,Mahon Pt. S.C.,78788-00013-1,1,4380_7778208_2150201,4380_533 -4380_77985,289,4380_41228,Mahon Pt. S.C.,79110-00014-1,1,4380_7778208_2150203,4380_536 -4380_77985,292,4380_41229,Mahon Pt. S.C.,79103-00016-1,1,4380_7778208_2150203,4380_536 -4380_77948,286,4380_4123,Dublin,1193-00010-1,1,4380_7778208_1030101,4380_42 -4380_77985,290,4380_41230,Mahon Pt. S.C.,79107-00015-1,1,4380_7778208_2150203,4380_536 -4380_77985,294,4380_41231,Mahon Pt. S.C.,79105-00018-1,1,4380_7778208_2150203,4380_536 -4380_77985,295,4380_41232,Mahon Pt. S.C.,79111-00019-1,1,4380_7778208_2150203,4380_536 -4380_77985,293,4380_41233,Mahon Pt. S.C.,79109-00017-1,1,4380_7778208_2150203,4380_536 -4380_77985,296,4380_41234,Mahon Pt. S.C.,78789-00021-1,1,4380_7778208_2150201,4380_533 -4380_77985,297,4380_41236,Mahon Pt. S.C.,78910-00008-1,1,4380_7778208_2150202,4380_534 -4380_77985,291,4380_41238,Mahon Pt. S.C.,79113-00013-1,1,4380_7778208_2150203,4380_533 -4380_77985,296,4380_41239,Mahon Pt. S.C.,79114-00021-1,1,4380_7778208_2150203,4380_533 -4380_77948,288,4380_4124,Dublin,1203-00011-1,1,4380_7778208_1030101,4380_42 -4380_77985,285,4380_41245,Mahon Pt. S.C.,79719-00009-1,1,4380_7778208_2150206,4380_533 -4380_77985,286,4380_41246,Mahon Pt. S.C.,79717-00010-1,1,4380_7778208_2150206,4380_533 -4380_77985,288,4380_41247,Mahon Pt. S.C.,79723-00011-1,1,4380_7778208_2150206,4380_533 -4380_77985,287,4380_41248,Mahon Pt. S.C.,79715-00012-1,1,4380_7778208_2150206,4380_533 -4380_77985,289,4380_41249,Mahon Pt. S.C.,79721-00014-1,1,4380_7778208_2150206,4380_533 -4380_77948,287,4380_4125,Dublin,1213-00012-1,1,4380_7778208_1030101,4380_42 -4380_77985,292,4380_41250,Mahon Pt. S.C.,79718-00016-1,1,4380_7778208_2150206,4380_533 -4380_77985,290,4380_41251,Mahon Pt. S.C.,79720-00015-1,1,4380_7778208_2150206,4380_533 -4380_77985,294,4380_41252,Mahon Pt. S.C.,79716-00018-1,1,4380_7778208_2150206,4380_533 -4380_77985,295,4380_41253,Mahon Pt. S.C.,79722-00019-1,1,4380_7778208_2150206,4380_533 -4380_77985,293,4380_41254,Mahon Pt. S.C.,79724-00017-1,1,4380_7778208_2150206,4380_533 -4380_77985,297,4380_41257,Mahon Pt. S.C.,79415-00008-1,1,4380_7778208_2150204,4380_533 -4380_77985,291,4380_41258,Mahon Pt. S.C.,79551-00013-1,1,4380_7778208_2150205,4380_536 -4380_77985,296,4380_41259,Mahon Pt. S.C.,79552-00021-1,1,4380_7778208_2150205,4380_536 -4380_77948,289,4380_4126,Dublin,1173-00014-1,1,4380_7778208_1030101,4380_42 -4380_77985,297,4380_41261,Mahon Pt. S.C.,79115-00008-1,1,4380_7778208_2150203,4380_534 -4380_77985,285,4380_41267,Mahon Pt. S.C.,80131-00009-1,1,4380_7778208_2150209,4380_533 -4380_77985,286,4380_41268,Mahon Pt. S.C.,80127-00010-1,1,4380_7778208_2150209,4380_533 -4380_77985,288,4380_41269,Mahon Pt. S.C.,80133-00011-1,1,4380_7778208_2150209,4380_533 -4380_77948,290,4380_4127,Dublin,51776-00015-1,1,4380_7778208_1030101,4380_42 -4380_77985,287,4380_41270,Mahon Pt. S.C.,80125-00012-1,1,4380_7778208_2150209,4380_533 -4380_77985,289,4380_41271,Mahon Pt. S.C.,80129-00014-1,1,4380_7778208_2150209,4380_533 -4380_77985,292,4380_41272,Mahon Pt. S.C.,80128-00016-1,1,4380_7778208_2150209,4380_533 -4380_77985,290,4380_41273,Mahon Pt. S.C.,80132-00015-1,1,4380_7778208_2150209,4380_533 -4380_77985,294,4380_41274,Mahon Pt. S.C.,80126-00018-1,1,4380_7778208_2150209,4380_533 -4380_77985,295,4380_41275,Mahon Pt. S.C.,80130-00019-1,1,4380_7778208_2150209,4380_533 -4380_77985,293,4380_41276,Mahon Pt. S.C.,80134-00017-1,1,4380_7778208_2150209,4380_533 -4380_77985,291,4380_41278,Mahon Pt. S.C.,79426-00013-1,1,4380_7778208_2150204,4380_533 -4380_77985,296,4380_41279,Mahon Pt. S.C.,79427-00021-1,1,4380_7778208_2150204,4380_533 -4380_77948,292,4380_4128,Dublin,51777-00016-1,1,4380_7778208_1030101,4380_42 -4380_77985,297,4380_41286,Mahon Pt. S.C.,78924-00008-1,1,4380_7778208_2150202,4380_533 -4380_77985,285,4380_41287,Mahon Pt. S.C.,80039-00009-1,1,4380_7778208_2150208,4380_536 -4380_77985,286,4380_41288,Mahon Pt. S.C.,80043-00010-1,1,4380_7778208_2150208,4380_536 -4380_77985,288,4380_41289,Mahon Pt. S.C.,80041-00011-1,1,4380_7778208_2150208,4380_536 -4380_77948,293,4380_4129,Dublin,51773-00017-1,1,4380_7778208_1030101,4380_42 -4380_77985,287,4380_41290,Mahon Pt. S.C.,80037-00012-1,1,4380_7778208_2150208,4380_536 -4380_77985,289,4380_41291,Mahon Pt. S.C.,80035-00014-1,1,4380_7778208_2150208,4380_536 -4380_77985,292,4380_41292,Mahon Pt. S.C.,80044-00016-1,1,4380_7778208_2150208,4380_536 -4380_77985,290,4380_41293,Mahon Pt. S.C.,80040-00015-1,1,4380_7778208_2150208,4380_536 -4380_77985,294,4380_41294,Mahon Pt. S.C.,80038-00018-1,1,4380_7778208_2150208,4380_536 -4380_77985,295,4380_41295,Mahon Pt. S.C.,80036-00019-1,1,4380_7778208_2150208,4380_536 -4380_77985,293,4380_41296,Mahon Pt. S.C.,80042-00017-1,1,4380_7778208_2150208,4380_536 -4380_77985,291,4380_41298,Mahon Pt. S.C.,78925-00013-1,1,4380_7778208_2150202,4380_533 -4380_77985,296,4380_41299,Mahon Pt. S.C.,78926-00021-1,1,4380_7778208_2150202,4380_533 -4380_77946,289,4380_413,Drogheda,50335-00014-1,1,4380_7778208_1000913,4380_6 -4380_77948,294,4380_4130,Dublin,51774-00018-1,1,4380_7778208_1030101,4380_42 -4380_77985,285,4380_41305,Mahon Pt. S.C.,78931-00009-1,1,4380_7778208_2150202,4380_533 -4380_77985,286,4380_41306,Mahon Pt. S.C.,78929-00010-1,1,4380_7778208_2150202,4380_533 -4380_77985,288,4380_41307,Mahon Pt. S.C.,78933-00011-1,1,4380_7778208_2150202,4380_533 -4380_77985,287,4380_41308,Mahon Pt. S.C.,78935-00012-1,1,4380_7778208_2150202,4380_533 -4380_77985,289,4380_41309,Mahon Pt. S.C.,78927-00014-1,1,4380_7778208_2150202,4380_533 -4380_77948,295,4380_4131,Dublin,51775-00019-1,1,4380_7778208_1030101,4380_42 -4380_77985,292,4380_41310,Mahon Pt. S.C.,78930-00016-1,1,4380_7778208_2150202,4380_533 -4380_77985,290,4380_41311,Mahon Pt. S.C.,78932-00015-1,1,4380_7778208_2150202,4380_533 -4380_77985,294,4380_41312,Mahon Pt. S.C.,78936-00018-1,1,4380_7778208_2150202,4380_533 -4380_77985,295,4380_41313,Mahon Pt. S.C.,78928-00019-1,1,4380_7778208_2150202,4380_533 -4380_77985,293,4380_41314,Mahon Pt. S.C.,78934-00017-1,1,4380_7778208_2150202,4380_533 -4380_77985,291,4380_41316,Mahon Pt. S.C.,78793-00013-1,1,4380_7778208_2150201,4380_533 -4380_77985,296,4380_41317,Mahon Pt. S.C.,78794-00021-1,1,4380_7778208_2150201,4380_533 -4380_77985,297,4380_41324,Mahon Pt. S.C.,79129-00008-1,1,4380_7778208_2150203,4380_533 -4380_77985,285,4380_41325,Mahon Pt. S.C.,79565-00009-1,1,4380_7778208_2150205,4380_536 -4380_77985,286,4380_41326,Mahon Pt. S.C.,79569-00010-1,1,4380_7778208_2150205,4380_536 -4380_77985,288,4380_41327,Mahon Pt. S.C.,79571-00011-1,1,4380_7778208_2150205,4380_536 -4380_77985,287,4380_41328,Mahon Pt. S.C.,79567-00012-1,1,4380_7778208_2150205,4380_536 -4380_77985,289,4380_41329,Mahon Pt. S.C.,79573-00014-1,1,4380_7778208_2150205,4380_536 -4380_77985,292,4380_41330,Mahon Pt. S.C.,79570-00016-1,1,4380_7778208_2150205,4380_536 -4380_77985,290,4380_41331,Mahon Pt. S.C.,79566-00015-1,1,4380_7778208_2150205,4380_536 -4380_77985,294,4380_41332,Mahon Pt. S.C.,79568-00018-1,1,4380_7778208_2150205,4380_536 -4380_77985,295,4380_41333,Mahon Pt. S.C.,79574-00019-1,1,4380_7778208_2150205,4380_536 -4380_77985,293,4380_41334,Mahon Pt. S.C.,79572-00017-1,1,4380_7778208_2150205,4380_536 -4380_77985,291,4380_41336,Mahon Pt. S.C.,79130-00013-1,1,4380_7778208_2150203,4380_533 -4380_77985,296,4380_41337,Mahon Pt. S.C.,79131-00021-1,1,4380_7778208_2150203,4380_533 -4380_77985,285,4380_41343,Mahon Pt. S.C.,79138-00009-1,1,4380_7778208_2150203,4380_533 -4380_77985,286,4380_41344,Mahon Pt. S.C.,79134-00010-1,1,4380_7778208_2150203,4380_533 -4380_77985,288,4380_41345,Mahon Pt. S.C.,79136-00011-1,1,4380_7778208_2150203,4380_533 -4380_77985,287,4380_41346,Mahon Pt. S.C.,79140-00012-1,1,4380_7778208_2150203,4380_533 -4380_77985,289,4380_41347,Mahon Pt. S.C.,79132-00014-1,1,4380_7778208_2150203,4380_533 -4380_77985,292,4380_41348,Mahon Pt. S.C.,79135-00016-1,1,4380_7778208_2150203,4380_533 -4380_77985,290,4380_41349,Mahon Pt. S.C.,79139-00015-1,1,4380_7778208_2150203,4380_533 -4380_77985,294,4380_41350,Mahon Pt. S.C.,79141-00018-1,1,4380_7778208_2150203,4380_533 -4380_77985,295,4380_41351,Mahon Pt. S.C.,79133-00019-1,1,4380_7778208_2150203,4380_533 -4380_77985,293,4380_41352,Mahon Pt. S.C.,79137-00017-1,1,4380_7778208_2150203,4380_533 -4380_77985,291,4380_41354,Mahon Pt. S.C.,79575-00013-1,1,4380_7778208_2150205,4380_533 -4380_77985,296,4380_41355,Mahon Pt. S.C.,79576-00021-1,1,4380_7778208_2150205,4380_533 -4380_77985,297,4380_41362,Mahon Pt. S.C.,78950-00008-1,1,4380_7778208_2150202,4380_533 -4380_77985,285,4380_41363,Mahon Pt. S.C.,79743-00009-1,1,4380_7778208_2150206,4380_533 -4380_77985,286,4380_41364,Mahon Pt. S.C.,79739-00010-1,1,4380_7778208_2150206,4380_533 -4380_77985,288,4380_41365,Mahon Pt. S.C.,79737-00011-1,1,4380_7778208_2150206,4380_533 -4380_77985,287,4380_41366,Mahon Pt. S.C.,79735-00012-1,1,4380_7778208_2150206,4380_533 -4380_77985,289,4380_41367,Mahon Pt. S.C.,79741-00014-1,1,4380_7778208_2150206,4380_533 -4380_77985,292,4380_41368,Mahon Pt. S.C.,79740-00016-1,1,4380_7778208_2150206,4380_533 -4380_77985,290,4380_41369,Mahon Pt. S.C.,79744-00015-1,1,4380_7778208_2150206,4380_533 -4380_77948,285,4380_4137,Dublin,1273-00009-1,1,4380_7778208_1030102,4380_42 -4380_77985,294,4380_41370,Mahon Pt. S.C.,79736-00018-1,1,4380_7778208_2150206,4380_533 -4380_77985,295,4380_41371,Mahon Pt. S.C.,79742-00019-1,1,4380_7778208_2150206,4380_533 -4380_77985,293,4380_41372,Mahon Pt. S.C.,79738-00017-1,1,4380_7778208_2150206,4380_533 -4380_77985,291,4380_41374,St. Patrick Street,79461-00013-1,1,4380_7778208_2150204,4380_535 -4380_77985,296,4380_41375,St. Patrick Street,79462-00021-1,1,4380_7778208_2150204,4380_535 -4380_77948,286,4380_4138,Dublin,1283-00010-1,1,4380_7778208_1030102,4380_42 -4380_77985,285,4380_41382,St. Patrick Street,80151-00009-1,1,4380_7778208_2150209,4380_535 -4380_77985,286,4380_41383,St. Patrick Street,80153-00010-1,1,4380_7778208_2150209,4380_535 -4380_77985,288,4380_41384,St. Patrick Street,80145-00011-1,1,4380_7778208_2150209,4380_535 -4380_77985,287,4380_41385,St. Patrick Street,80149-00012-1,1,4380_7778208_2150209,4380_535 -4380_77985,291,4380_41386,Mahon Pt. S.C.,78951-00013-1,1,4380_7778208_2150202,4380_533 -4380_77985,289,4380_41387,St. Patrick Street,80147-00014-1,1,4380_7778208_2150209,4380_535 -4380_77985,292,4380_41388,St. Patrick Street,80154-00016-1,1,4380_7778208_2150209,4380_535 -4380_77985,290,4380_41389,St. Patrick Street,80152-00015-1,1,4380_7778208_2150209,4380_535 -4380_77948,288,4380_4139,Dublin,1293-00011-1,1,4380_7778208_1030102,4380_42 -4380_77985,294,4380_41390,St. Patrick Street,80150-00018-1,1,4380_7778208_2150209,4380_535 -4380_77985,295,4380_41391,St. Patrick Street,80148-00019-1,1,4380_7778208_2150209,4380_535 -4380_77985,293,4380_41392,St. Patrick Street,80146-00017-1,1,4380_7778208_2150209,4380_535 -4380_77985,296,4380_41393,Mahon Pt. S.C.,78952-00021-1,1,4380_7778208_2150202,4380_533 -4380_77985,285,4380_41399,Mahon Pt. S.C.,78953-00009-1,1,4380_7778208_2150202,4380_533 -4380_77946,290,4380_414,Drogheda,50334-00015-1,1,4380_7778208_1000913,4380_6 -4380_77948,287,4380_4140,Dublin,1303-00012-1,1,4380_7778208_1030102,4380_42 -4380_77985,286,4380_41400,Mahon Pt. S.C.,78955-00010-1,1,4380_7778208_2150202,4380_533 -4380_77985,288,4380_41401,Mahon Pt. S.C.,78957-00011-1,1,4380_7778208_2150202,4380_533 -4380_77985,287,4380_41402,Mahon Pt. S.C.,78961-00012-1,1,4380_7778208_2150202,4380_533 -4380_77985,289,4380_41403,Mahon Pt. S.C.,78959-00014-1,1,4380_7778208_2150202,4380_533 -4380_77985,292,4380_41404,Mahon Pt. S.C.,78956-00016-1,1,4380_7778208_2150202,4380_533 -4380_77985,290,4380_41405,Mahon Pt. S.C.,78954-00015-1,1,4380_7778208_2150202,4380_533 -4380_77985,294,4380_41406,Mahon Pt. S.C.,78962-00018-1,1,4380_7778208_2150202,4380_533 -4380_77985,295,4380_41407,Mahon Pt. S.C.,78960-00019-1,1,4380_7778208_2150202,4380_533 -4380_77985,293,4380_41408,Mahon Pt. S.C.,78958-00017-1,1,4380_7778208_2150202,4380_533 -4380_77948,289,4380_4141,Dublin,1263-00014-1,1,4380_7778208_1030102,4380_42 -4380_77985,297,4380_41411,Mahon Pt. S.C.,79155-00008-1,1,4380_7778208_2150203,4380_533 -4380_77985,291,4380_41412,Mahon Pt. S.C.,78797-00013-1,1,4380_7778208_2150201,4380_533 -4380_77985,296,4380_41413,Mahon Pt. S.C.,78798-00021-1,1,4380_7778208_2150201,4380_533 -4380_77985,285,4380_41419,Mahon Pt. S.C.,79589-00009-1,1,4380_7778208_2150205,4380_533 -4380_77948,290,4380_4142,Dublin,51834-00015-1,1,4380_7778208_1030102,4380_42 -4380_77985,286,4380_41420,Mahon Pt. S.C.,79593-00010-1,1,4380_7778208_2150205,4380_533 -4380_77985,288,4380_41421,Mahon Pt. S.C.,79591-00011-1,1,4380_7778208_2150205,4380_533 -4380_77985,287,4380_41422,Mahon Pt. S.C.,79595-00012-1,1,4380_7778208_2150205,4380_533 -4380_77985,289,4380_41423,Mahon Pt. S.C.,79597-00014-1,1,4380_7778208_2150205,4380_533 -4380_77985,292,4380_41424,Mahon Pt. S.C.,79594-00016-1,1,4380_7778208_2150205,4380_533 -4380_77985,290,4380_41425,Mahon Pt. S.C.,79590-00015-1,1,4380_7778208_2150205,4380_533 -4380_77985,294,4380_41426,Mahon Pt. S.C.,79596-00018-1,1,4380_7778208_2150205,4380_533 -4380_77985,295,4380_41427,Mahon Pt. S.C.,79598-00019-1,1,4380_7778208_2150205,4380_533 -4380_77985,293,4380_41428,Mahon Pt. S.C.,79592-00017-1,1,4380_7778208_2150205,4380_533 -4380_77948,292,4380_4143,Dublin,51833-00016-1,1,4380_7778208_1030102,4380_42 -4380_77985,291,4380_41430,Mahon Pt. S.C.,79156-00013-1,1,4380_7778208_2150203,4380_533 -4380_77985,296,4380_41431,Mahon Pt. S.C.,79157-00021-1,1,4380_7778208_2150203,4380_533 -4380_77985,285,4380_41437,Mahon Pt. S.C.,79166-00009-1,1,4380_7778208_2150203,4380_533 -4380_77985,286,4380_41438,Mahon Pt. S.C.,79162-00010-1,1,4380_7778208_2150203,4380_533 -4380_77985,288,4380_41439,Mahon Pt. S.C.,79160-00011-1,1,4380_7778208_2150203,4380_533 -4380_77948,293,4380_4144,Dublin,51836-00017-1,1,4380_7778208_1030102,4380_42 -4380_77985,287,4380_41440,Mahon Pt. S.C.,79164-00012-1,1,4380_7778208_2150203,4380_533 -4380_77985,289,4380_41441,Mahon Pt. S.C.,79158-00014-1,1,4380_7778208_2150203,4380_533 -4380_77985,292,4380_41442,Mahon Pt. S.C.,79163-00016-1,1,4380_7778208_2150203,4380_533 -4380_77985,290,4380_41443,Mahon Pt. S.C.,79167-00015-1,1,4380_7778208_2150203,4380_533 -4380_77985,294,4380_41444,Mahon Pt. S.C.,79165-00018-1,1,4380_7778208_2150203,4380_533 -4380_77985,295,4380_41445,Mahon Pt. S.C.,79159-00019-1,1,4380_7778208_2150203,4380_533 -4380_77985,293,4380_41446,Mahon Pt. S.C.,79161-00017-1,1,4380_7778208_2150203,4380_533 -4380_77985,297,4380_41449,Mahon Pt. S.C.,78976-00008-1,1,4380_7778208_2150202,4380_533 -4380_77948,294,4380_4145,Dublin,51832-00018-1,1,4380_7778208_1030102,4380_42 -4380_77985,291,4380_41450,Mahon Pt. S.C.,79599-00013-1,1,4380_7778208_2150205,4380_533 -4380_77985,296,4380_41451,Mahon Pt. S.C.,79600-00021-1,1,4380_7778208_2150205,4380_533 -4380_77985,285,4380_41457,Mahon Pt. S.C.,79763-00009-1,1,4380_7778208_2150206,4380_533 -4380_77985,286,4380_41458,Mahon Pt. S.C.,79761-00010-1,1,4380_7778208_2150206,4380_533 -4380_77985,288,4380_41459,Mahon Pt. S.C.,79755-00011-1,1,4380_7778208_2150206,4380_533 -4380_77948,295,4380_4146,Dublin,51835-00019-1,1,4380_7778208_1030102,4380_42 -4380_77985,287,4380_41460,Mahon Pt. S.C.,79759-00012-1,1,4380_7778208_2150206,4380_533 -4380_77985,289,4380_41461,Mahon Pt. S.C.,79757-00014-1,1,4380_7778208_2150206,4380_533 -4380_77985,292,4380_41462,Mahon Pt. S.C.,79762-00016-1,1,4380_7778208_2150206,4380_533 -4380_77985,290,4380_41463,Mahon Pt. S.C.,79764-00015-1,1,4380_7778208_2150206,4380_533 -4380_77985,294,4380_41464,Mahon Pt. S.C.,79760-00018-1,1,4380_7778208_2150206,4380_533 -4380_77985,295,4380_41465,Mahon Pt. S.C.,79758-00019-1,1,4380_7778208_2150206,4380_533 -4380_77985,293,4380_41466,Mahon Pt. S.C.,79756-00017-1,1,4380_7778208_2150206,4380_533 -4380_77985,291,4380_41468,Mahon Pt. S.C.,78977-00013-1,1,4380_7778208_2150202,4380_533 -4380_77985,296,4380_41469,Mahon Pt. S.C.,78978-00021-1,1,4380_7778208_2150202,4380_533 -4380_77985,285,4380_41475,Mahon Pt. S.C.,78983-00009-1,1,4380_7778208_2150202,4380_533 -4380_77985,286,4380_41476,Mahon Pt. S.C.,78987-00010-1,1,4380_7778208_2150202,4380_533 -4380_77985,288,4380_41477,Mahon Pt. S.C.,78981-00011-1,1,4380_7778208_2150202,4380_533 -4380_77985,287,4380_41478,Mahon Pt. S.C.,78985-00012-1,1,4380_7778208_2150202,4380_533 -4380_77985,289,4380_41479,Mahon Pt. S.C.,78979-00014-1,1,4380_7778208_2150202,4380_533 -4380_77985,292,4380_41480,Mahon Pt. S.C.,78988-00016-1,1,4380_7778208_2150202,4380_533 -4380_77985,290,4380_41481,Mahon Pt. S.C.,78984-00015-1,1,4380_7778208_2150202,4380_533 -4380_77985,294,4380_41482,Mahon Pt. S.C.,78986-00018-1,1,4380_7778208_2150202,4380_533 -4380_77985,295,4380_41483,Mahon Pt. S.C.,78980-00019-1,1,4380_7778208_2150202,4380_533 -4380_77985,293,4380_41484,Mahon Pt. S.C.,78982-00017-1,1,4380_7778208_2150202,4380_533 -4380_77985,297,4380_41487,Mahon Pt. S.C.,79181-00008-1,1,4380_7778208_2150203,4380_533 -4380_77985,291,4380_41488,Mahon Pt. S.C.,78801-00013-1,1,4380_7778208_2150201,4380_533 -4380_77985,296,4380_41489,Mahon Pt. S.C.,78802-00021-1,1,4380_7778208_2150201,4380_533 -4380_77985,285,4380_41495,Mahon Pt. S.C.,79613-00009-1,1,4380_7778208_2150205,4380_533 -4380_77985,286,4380_41496,Mahon Pt. S.C.,79611-00010-1,1,4380_7778208_2150205,4380_533 -4380_77985,288,4380_41497,Mahon Pt. S.C.,79617-00011-1,1,4380_7778208_2150205,4380_533 -4380_77985,287,4380_41498,Mahon Pt. S.C.,79615-00012-1,1,4380_7778208_2150205,4380_533 -4380_77985,289,4380_41499,Mahon Pt. S.C.,79621-00014-1,1,4380_7778208_2150205,4380_533 -4380_77946,291,4380_415,Drogheda,50241-00013-1,1,4380_7778208_1000910,4380_9 -4380_77985,292,4380_41500,Mahon Pt. S.C.,79612-00016-1,1,4380_7778208_2150205,4380_533 -4380_77985,290,4380_41501,Mahon Pt. S.C.,79614-00015-1,1,4380_7778208_2150205,4380_533 -4380_77985,294,4380_41502,Mahon Pt. S.C.,79616-00018-1,1,4380_7778208_2150205,4380_533 -4380_77985,295,4380_41503,Mahon Pt. S.C.,79622-00019-1,1,4380_7778208_2150205,4380_533 -4380_77985,293,4380_41504,Mahon Pt. S.C.,79618-00017-1,1,4380_7778208_2150205,4380_533 -4380_77985,291,4380_41506,St. Patrick Street,79182-00013-1,1,4380_7778208_2150203,4380_535 -4380_77985,296,4380_41507,St. Patrick Street,79183-00021-1,1,4380_7778208_2150203,4380_535 -4380_77985,285,4380_41513,St. Patrick Street,79184-00009-1,1,4380_7778208_2150203,4380_535 -4380_77985,286,4380_41514,St. Patrick Street,79188-00010-1,1,4380_7778208_2150203,4380_535 -4380_77985,288,4380_41515,St. Patrick Street,79186-00011-1,1,4380_7778208_2150203,4380_535 -4380_77985,287,4380_41516,St. Patrick Street,79192-00012-1,1,4380_7778208_2150203,4380_535 -4380_77985,289,4380_41517,St. Patrick Street,79190-00014-1,1,4380_7778208_2150203,4380_535 -4380_77985,292,4380_41518,St. Patrick Street,79189-00016-1,1,4380_7778208_2150203,4380_535 -4380_77985,290,4380_41519,St. Patrick Street,79185-00015-1,1,4380_7778208_2150203,4380_535 -4380_77948,285,4380_4152,Dublin,1365-00009-1,1,4380_7778208_1030103,4380_42 -4380_77985,294,4380_41520,St. Patrick Street,79193-00018-1,1,4380_7778208_2150203,4380_535 -4380_77985,295,4380_41521,St. Patrick Street,79191-00019-1,1,4380_7778208_2150203,4380_535 -4380_77985,293,4380_41522,St. Patrick Street,79187-00017-1,1,4380_7778208_2150203,4380_535 -4380_77948,286,4380_4153,Dublin,1375-00010-1,1,4380_7778208_1030103,4380_42 -4380_77985,297,4380_41530,St. Patrick Street,79002-00008-1,1,4380_7778208_2150202,4380_535 -4380_77985,285,4380_41531,St. Patrick Street,79777-00009-1,1,4380_7778208_2150206,4380_535 -4380_77985,286,4380_41532,St. Patrick Street,79779-00010-1,1,4380_7778208_2150206,4380_535 -4380_77985,288,4380_41533,St. Patrick Street,79775-00011-1,1,4380_7778208_2150206,4380_535 -4380_77985,287,4380_41534,St. Patrick Street,79783-00012-1,1,4380_7778208_2150206,4380_535 -4380_77985,291,4380_41535,St. Patrick Street,79623-00013-1,1,4380_7778208_2150205,4380_535 -4380_77985,289,4380_41536,St. Patrick Street,79781-00014-1,1,4380_7778208_2150206,4380_535 -4380_77985,292,4380_41537,St. Patrick Street,79780-00016-1,1,4380_7778208_2150206,4380_535 -4380_77985,290,4380_41538,St. Patrick Street,79778-00015-1,1,4380_7778208_2150206,4380_535 -4380_77985,294,4380_41539,St. Patrick Street,79784-00018-1,1,4380_7778208_2150206,4380_535 -4380_77948,288,4380_4154,Dublin,1385-00011-1,1,4380_7778208_1030103,4380_42 -4380_77985,295,4380_41540,St. Patrick Street,79782-00019-1,1,4380_7778208_2150206,4380_535 -4380_77985,293,4380_41541,St. Patrick Street,79776-00017-1,1,4380_7778208_2150206,4380_535 -4380_77985,296,4380_41542,St. Patrick Street,79624-00021-1,1,4380_7778208_2150205,4380_535 -4380_78125,285,4380_41548,South Mall,79207-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41549,South Mall,79209-00010-1,0,4380_7778208_2150204,4380_538 -4380_77948,287,4380_4155,Dublin,1395-00012-1,1,4380_7778208_1030103,4380_42 -4380_78125,288,4380_41550,South Mall,79205-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41551,South Mall,79211-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41552,South Mall,79213-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41553,South Mall,79210-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41554,South Mall,79208-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41555,South Mall,79212-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41556,South Mall,79214-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41557,South Mall,79206-00017-1,0,4380_7778208_2150204,4380_538 -4380_77948,289,4380_4156,Dublin,1355-00014-1,1,4380_7778208_1030103,4380_42 -4380_78125,285,4380_41563,South Mall,79801-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41564,South Mall,79799-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41565,South Mall,79797-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41566,South Mall,79795-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41567,South Mall,79803-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41568,South Mall,79800-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41569,South Mall,79802-00015-1,0,4380_7778208_2150207,4380_538 -4380_77948,290,4380_4157,Dublin,51893-00015-1,1,4380_7778208_1030103,4380_42 -4380_78125,294,4380_41570,South Mall,79796-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41571,South Mall,79804-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41572,South Mall,79798-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41578,South Mall,79233-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41579,South Mall,79231-00010-1,0,4380_7778208_2150204,4380_538 -4380_77948,292,4380_4158,Dublin,51896-00016-1,1,4380_7778208_1030103,4380_42 -4380_78125,288,4380_41580,South Mall,79235-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41581,South Mall,79237-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41582,South Mall,79229-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41583,South Mall,79232-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41584,South Mall,79234-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41585,South Mall,79238-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41586,South Mall,79230-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41587,South Mall,79236-00017-1,0,4380_7778208_2150204,4380_538 -4380_77948,293,4380_4159,Dublin,51892-00017-1,1,4380_7778208_1030103,4380_42 -4380_78125,285,4380_41593,South Mall,79815-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41594,South Mall,79821-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41595,South Mall,79823-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41596,South Mall,79819-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41597,South Mall,79817-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41598,South Mall,79822-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41599,South Mall,79816-00015-1,0,4380_7778208_2150207,4380_538 -4380_77946,292,4380_416,Drogheda,50328-00016-1,1,4380_7778208_1000913,4380_6 -4380_77948,294,4380_4160,Dublin,51895-00018-1,1,4380_7778208_1030103,4380_42 -4380_78125,294,4380_41600,South Mall,79820-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41601,South Mall,79818-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41602,South Mall,79824-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41608,South Mall,79255-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41609,South Mall,79251-00010-1,0,4380_7778208_2150204,4380_538 -4380_77948,295,4380_4161,Dublin,51894-00019-1,1,4380_7778208_1030103,4380_42 -4380_78125,288,4380_41610,South Mall,79253-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41611,South Mall,79259-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41612,South Mall,79257-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41613,South Mall,79252-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41614,South Mall,79256-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41615,South Mall,79260-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41616,South Mall,79258-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41617,South Mall,79254-00017-1,0,4380_7778208_2150204,4380_538 -4380_78125,285,4380_41623,South Mall,79843-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41624,South Mall,79839-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41625,South Mall,79837-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41626,South Mall,79835-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41627,South Mall,79841-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41628,South Mall,79840-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41629,South Mall,79844-00015-1,0,4380_7778208_2150207,4380_538 -4380_78125,294,4380_41630,South Mall,79836-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41631,South Mall,79842-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41632,South Mall,79838-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41638,South Mall,79279-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41639,South Mall,79273-00010-1,0,4380_7778208_2150204,4380_538 -4380_78125,288,4380_41640,South Mall,79275-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41641,South Mall,79281-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41642,South Mall,79277-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41643,South Mall,79274-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41644,South Mall,79280-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41645,South Mall,79282-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41646,South Mall,79278-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41647,South Mall,79276-00017-1,0,4380_7778208_2150204,4380_538 -4380_78125,285,4380_41653,South Mall,79863-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41654,South Mall,79861-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41655,South Mall,79859-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41656,South Mall,79857-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41657,South Mall,79855-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41658,South Mall,79862-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41659,South Mall,79864-00015-1,0,4380_7778208_2150207,4380_538 -4380_78125,294,4380_41660,South Mall,79858-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41661,South Mall,79856-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41662,South Mall,79860-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41668,South Mall,79299-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41669,South Mall,79303-00010-1,0,4380_7778208_2150204,4380_538 -4380_78125,288,4380_41670,South Mall,79295-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41671,South Mall,79297-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41672,South Mall,79301-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41673,South Mall,79304-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41674,South Mall,79300-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41675,South Mall,79298-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41676,South Mall,79302-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41677,South Mall,79296-00017-1,0,4380_7778208_2150204,4380_538 -4380_78125,285,4380_41683,South Mall,79877-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41684,South Mall,79875-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41685,South Mall,79881-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41686,South Mall,79883-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41687,South Mall,79879-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41688,South Mall,79876-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41689,South Mall,79878-00015-1,0,4380_7778208_2150207,4380_538 -4380_78125,294,4380_41690,South Mall,79884-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41691,South Mall,79880-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41692,South Mall,79882-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41698,South Mall,79319-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41699,South Mall,79321-00010-1,0,4380_7778208_2150204,4380_538 -4380_77946,293,4380_417,Drogheda,50330-00017-1,1,4380_7778208_1000913,4380_6 -4380_78125,288,4380_41700,South Mall,79317-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41701,South Mall,79325-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41702,South Mall,79323-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41703,South Mall,79322-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41704,South Mall,79320-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41705,South Mall,79326-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41706,South Mall,79324-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41707,South Mall,79318-00017-1,0,4380_7778208_2150204,4380_538 -4380_78125,285,4380_41713,South Mall,79901-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41714,South Mall,79903-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41715,South Mall,79899-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41716,South Mall,79897-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41717,South Mall,79895-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41718,South Mall,79904-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41719,South Mall,79902-00015-1,0,4380_7778208_2150207,4380_538 -4380_77948,285,4380_4172,Dublin,1463-00009-1,1,4380_7778208_1030104,4380_42 -4380_78125,294,4380_41720,South Mall,79898-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41721,South Mall,79896-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41722,South Mall,79900-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41728,South Mall,79341-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41729,South Mall,79339-00010-1,0,4380_7778208_2150204,4380_538 -4380_77948,286,4380_4173,Dublin,1475-00010-1,1,4380_7778208_1030104,4380_42 -4380_78125,288,4380_41730,South Mall,79343-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41731,South Mall,79337-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41732,South Mall,79345-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41733,South Mall,79340-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41734,South Mall,79342-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41735,South Mall,79338-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41736,South Mall,79346-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41737,South Mall,79344-00017-1,0,4380_7778208_2150204,4380_538 -4380_77948,288,4380_4174,Dublin,1487-00011-1,1,4380_7778208_1030104,4380_42 -4380_78125,285,4380_41743,South Mall,79915-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41744,South Mall,79923-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41745,South Mall,79921-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41746,South Mall,79919-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41747,South Mall,79917-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41748,South Mall,79924-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41749,South Mall,79916-00015-1,0,4380_7778208_2150207,4380_538 -4380_77948,287,4380_4175,Dublin,1499-00012-1,1,4380_7778208_1030104,4380_42 -4380_78125,294,4380_41750,South Mall,79920-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41751,South Mall,79918-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41752,South Mall,79922-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41758,South Mall,79359-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41759,South Mall,79363-00010-1,0,4380_7778208_2150204,4380_538 -4380_77948,289,4380_4176,Dublin,1451-00014-1,1,4380_7778208_1030104,4380_42 -4380_78125,288,4380_41760,South Mall,79361-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41761,South Mall,79367-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41762,South Mall,79365-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41763,South Mall,79364-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41764,South Mall,79360-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41765,South Mall,79368-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41766,South Mall,79366-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41767,South Mall,79362-00017-1,0,4380_7778208_2150204,4380_538 -4380_77948,290,4380_4177,Dublin,51955-00015-1,1,4380_7778208_1030104,4380_42 -4380_78125,285,4380_41773,South Mall,79939-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41774,South Mall,79937-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41775,South Mall,79935-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41776,South Mall,79941-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41777,South Mall,79943-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41778,South Mall,79938-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41779,South Mall,79940-00015-1,0,4380_7778208_2150207,4380_538 -4380_77948,292,4380_4178,Dublin,51956-00016-1,1,4380_7778208_1030104,4380_42 -4380_78125,294,4380_41780,South Mall,79942-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41781,South Mall,79944-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41782,South Mall,79936-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41788,South Mall,79390-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41789,South Mall,79382-00010-1,0,4380_7778208_2150204,4380_538 -4380_77948,293,4380_4179,Dublin,51954-00017-1,1,4380_7778208_1030104,4380_42 -4380_78125,288,4380_41790,South Mall,79388-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41791,South Mall,79384-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41792,South Mall,79386-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41793,South Mall,79383-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41794,South Mall,79391-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41795,South Mall,79385-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41796,South Mall,79387-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41797,South Mall,79389-00017-1,0,4380_7778208_2150204,4380_538 -4380_77946,294,4380_418,Drogheda,50332-00018-1,1,4380_7778208_1000913,4380_6 -4380_77948,294,4380_4180,Dublin,51958-00018-1,1,4380_7778208_1030104,4380_42 -4380_78125,285,4380_41803,South Mall,79955-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41804,South Mall,79961-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41805,South Mall,79963-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41806,South Mall,79959-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41807,South Mall,79957-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41808,South Mall,79962-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41809,South Mall,79956-00015-1,0,4380_7778208_2150207,4380_538 -4380_77948,295,4380_4181,Dublin,51957-00019-1,1,4380_7778208_1030104,4380_42 -4380_78125,294,4380_41810,South Mall,79960-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41811,South Mall,79958-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41812,South Mall,79964-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41818,South Mall,79409-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41819,South Mall,79405-00010-1,0,4380_7778208_2150204,4380_538 -4380_78125,288,4380_41820,South Mall,79407-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41821,South Mall,79411-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41822,South Mall,79413-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41823,South Mall,79406-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41824,South Mall,79410-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41825,South Mall,79412-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41826,South Mall,79414-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41827,South Mall,79408-00017-1,0,4380_7778208_2150204,4380_538 -4380_77948,291,4380_4183,Dublin,1223-00013-1,1,4380_7778208_1030101,4380_42 -4380_78125,285,4380_41833,South Mall,79977-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41834,South Mall,79975-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41835,South Mall,79983-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41836,South Mall,79981-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41837,South Mall,79979-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41838,South Mall,79976-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41839,South Mall,79978-00015-1,0,4380_7778208_2150207,4380_538 -4380_77948,296,4380_4184,Dublin,51778-00021-1,1,4380_7778208_1030101,4380_42 -4380_78125,294,4380_41840,South Mall,79982-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41841,South Mall,79980-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41842,South Mall,79984-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41848,South Mall,79436-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41849,South Mall,79428-00010-1,0,4380_7778208_2150204,4380_538 -4380_78125,288,4380_41850,South Mall,79432-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41851,South Mall,79434-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41852,South Mall,79430-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41853,South Mall,79429-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41854,South Mall,79437-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41855,South Mall,79435-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41856,South Mall,79431-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41857,South Mall,79433-00017-1,0,4380_7778208_2150204,4380_538 -4380_78125,285,4380_41863,South Mall,80003-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41864,South Mall,79999-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41865,South Mall,79997-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41866,South Mall,79995-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41867,South Mall,80001-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41868,South Mall,80000-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41869,South Mall,80004-00015-1,0,4380_7778208_2150207,4380_538 -4380_78125,294,4380_41870,South Mall,79996-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41871,South Mall,80002-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41872,South Mall,79998-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41878,South Mall,79449-00009-1,0,4380_7778208_2150204,4380_538 -4380_78125,286,4380_41879,South Mall,79451-00010-1,0,4380_7778208_2150204,4380_538 -4380_78125,288,4380_41880,South Mall,79457-00011-1,0,4380_7778208_2150204,4380_538 -4380_78125,287,4380_41881,South Mall,79453-00012-1,0,4380_7778208_2150204,4380_538 -4380_78125,289,4380_41882,South Mall,79455-00014-1,0,4380_7778208_2150204,4380_538 -4380_78125,292,4380_41883,South Mall,79452-00016-1,0,4380_7778208_2150204,4380_538 -4380_78125,290,4380_41884,South Mall,79450-00015-1,0,4380_7778208_2150204,4380_538 -4380_78125,294,4380_41885,South Mall,79454-00018-1,0,4380_7778208_2150204,4380_538 -4380_78125,295,4380_41886,South Mall,79456-00019-1,0,4380_7778208_2150204,4380_538 -4380_78125,293,4380_41887,South Mall,79458-00017-1,0,4380_7778208_2150204,4380_538 -4380_78125,285,4380_41893,South Mall,80017-00009-1,0,4380_7778208_2150207,4380_538 -4380_78125,286,4380_41894,South Mall,80015-00010-1,0,4380_7778208_2150207,4380_538 -4380_78125,288,4380_41895,South Mall,80021-00011-1,0,4380_7778208_2150207,4380_538 -4380_78125,287,4380_41896,South Mall,80023-00012-1,0,4380_7778208_2150207,4380_538 -4380_78125,289,4380_41897,South Mall,80019-00014-1,0,4380_7778208_2150207,4380_538 -4380_78125,292,4380_41898,South Mall,80016-00016-1,0,4380_7778208_2150207,4380_538 -4380_78125,290,4380_41899,South Mall,80018-00015-1,0,4380_7778208_2150207,4380_538 -4380_77946,295,4380_419,Drogheda,50336-00019-1,1,4380_7778208_1000913,4380_6 -4380_77948,285,4380_4190,Dublin,1553-00009-1,1,4380_7778208_1030105,4380_42 -4380_78125,294,4380_41900,South Mall,80024-00018-1,0,4380_7778208_2150207,4380_538 -4380_78125,295,4380_41901,South Mall,80020-00019-1,0,4380_7778208_2150207,4380_538 -4380_78125,293,4380_41902,South Mall,80022-00017-1,0,4380_7778208_2150207,4380_538 -4380_78125,285,4380_41908,Mahon Pt.,79199-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_41909,Mahon Pt.,79201-00010-1,1,4380_7778208_2150204,4380_539 -4380_77948,286,4380_4191,Dublin,1561-00010-1,1,4380_7778208_1030105,4380_42 -4380_78125,288,4380_41910,Mahon Pt.,79197-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_41911,Mahon Pt.,79195-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_41912,Mahon Pt.,79203-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_41913,Mahon Pt.,79202-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_41914,Mahon Pt.,79200-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_41915,Mahon Pt.,79196-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_41916,Mahon Pt.,79204-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_41917,Mahon Pt.,79198-00017-1,1,4380_7778208_2150204,4380_539 -4380_77948,288,4380_4192,Dublin,1569-00011-1,1,4380_7778208_1030105,4380_42 -4380_78125,285,4380_41923,Mahon Pt.,79791-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_41924,Mahon Pt.,79789-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_41925,Mahon Pt.,79785-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_41926,Mahon Pt.,79787-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_41927,Mahon Pt.,79793-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_41928,Mahon Pt.,79790-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_41929,Mahon Pt.,79792-00015-1,1,4380_7778208_2150207,4380_539 -4380_77948,287,4380_4193,Dublin,1577-00012-1,1,4380_7778208_1030105,4380_42 -4380_78125,294,4380_41930,Mahon Pt.,79788-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_41931,Mahon Pt.,79794-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_41932,Mahon Pt.,79786-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_41938,Mahon Pt.,79221-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_41939,Mahon Pt.,79219-00010-1,1,4380_7778208_2150204,4380_539 -4380_77948,289,4380_4194,Dublin,1545-00014-1,1,4380_7778208_1030105,4380_42 -4380_78125,288,4380_41940,Mahon Pt.,79223-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_41941,Mahon Pt.,79225-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_41942,Mahon Pt.,79217-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_41943,Mahon Pt.,79220-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_41944,Mahon Pt.,79222-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_41945,Mahon Pt.,79226-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_41946,Mahon Pt.,79218-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_41947,Mahon Pt.,79224-00017-1,1,4380_7778208_2150204,4380_539 -4380_77948,290,4380_4195,Dublin,52025-00015-1,1,4380_7778208_1030105,4380_42 -4380_78125,285,4380_41953,Mahon Pt.,79805-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_41954,Mahon Pt.,79811-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_41955,Mahon Pt.,79813-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_41956,Mahon Pt.,79809-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_41957,Mahon Pt.,79807-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_41958,Mahon Pt.,79812-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_41959,Mahon Pt.,79806-00015-1,1,4380_7778208_2150207,4380_539 -4380_77948,292,4380_4196,Dublin,52028-00016-1,1,4380_7778208_1030105,4380_42 -4380_78125,294,4380_41960,Mahon Pt.,79810-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_41961,Mahon Pt.,79808-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_41962,Mahon Pt.,79814-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_41968,Mahon Pt.,79243-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_41969,Mahon Pt.,79239-00010-1,1,4380_7778208_2150204,4380_539 -4380_77948,293,4380_4197,Dublin,52027-00017-1,1,4380_7778208_1030105,4380_42 -4380_78125,288,4380_41970,Mahon Pt.,79247-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_41971,Mahon Pt.,79241-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_41972,Mahon Pt.,79245-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_41973,Mahon Pt.,79240-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_41974,Mahon Pt.,79244-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_41975,Mahon Pt.,79242-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_41976,Mahon Pt.,79246-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_41977,Mahon Pt.,79248-00017-1,1,4380_7778208_2150204,4380_539 -4380_77948,294,4380_4198,Dublin,52026-00018-1,1,4380_7778208_1030105,4380_42 -4380_78125,285,4380_41983,Mahon Pt.,79827-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_41984,Mahon Pt.,79825-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_41985,Mahon Pt.,79833-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_41986,Mahon Pt.,79831-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_41987,Mahon Pt.,79829-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_41988,Mahon Pt.,79826-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_41989,Mahon Pt.,79828-00015-1,1,4380_7778208_2150207,4380_539 -4380_77948,295,4380_4199,Dublin,52024-00019-1,1,4380_7778208_1030105,4380_42 -4380_78125,294,4380_41990,Mahon Pt.,79832-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_41991,Mahon Pt.,79830-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_41992,Mahon Pt.,79834-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_41998,Mahon Pt.,79261-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_41999,Mahon Pt.,79267-00010-1,1,4380_7778208_2150204,4380_539 -4380_77946,296,4380_420,Drogheda,50242-00021-1,1,4380_7778208_1000910,4380_9 -4380_78125,288,4380_42000,Mahon Pt.,79269-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_42001,Mahon Pt.,79265-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_42002,Mahon Pt.,79263-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_42003,Mahon Pt.,79268-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_42004,Mahon Pt.,79262-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_42005,Mahon Pt.,79266-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_42006,Mahon Pt.,79264-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_42007,Mahon Pt.,79270-00017-1,1,4380_7778208_2150204,4380_539 -4380_78125,285,4380_42013,Mahon Pt.,79853-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_42014,Mahon Pt.,79849-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_42015,Mahon Pt.,79847-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_42016,Mahon Pt.,79845-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_42017,Mahon Pt.,79851-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_42018,Mahon Pt.,79850-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_42019,Mahon Pt.,79854-00015-1,1,4380_7778208_2150207,4380_539 -4380_78125,294,4380_42020,Mahon Pt.,79846-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_42021,Mahon Pt.,79852-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_42022,Mahon Pt.,79848-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_42028,Mahon Pt.,79287-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_42029,Mahon Pt.,79283-00010-1,1,4380_7778208_2150204,4380_539 -4380_78125,288,4380_42030,Mahon Pt.,79291-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_42031,Mahon Pt.,79285-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_42032,Mahon Pt.,79289-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_42033,Mahon Pt.,79284-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_42034,Mahon Pt.,79288-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_42035,Mahon Pt.,79286-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_42036,Mahon Pt.,79290-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_42037,Mahon Pt.,79292-00017-1,1,4380_7778208_2150204,4380_539 -4380_78125,285,4380_42043,Mahon Pt.,79867-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_42044,Mahon Pt.,79865-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_42045,Mahon Pt.,79871-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_42046,Mahon Pt.,79873-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_42047,Mahon Pt.,79869-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_42048,Mahon Pt.,79866-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_42049,Mahon Pt.,79868-00015-1,1,4380_7778208_2150207,4380_539 -4380_78125,294,4380_42050,Mahon Pt.,79874-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_42051,Mahon Pt.,79870-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_42052,Mahon Pt.,79872-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_42058,Mahon Pt.,79311-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_42059,Mahon Pt.,79309-00010-1,1,4380_7778208_2150204,4380_539 -4380_77948,291,4380_4206,Dublin,1323-00013-1,1,4380_7778208_1030102,4380_43 -4380_78125,288,4380_42060,Mahon Pt.,79307-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_42061,Mahon Pt.,79305-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_42062,Mahon Pt.,79313-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_42063,Mahon Pt.,79310-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_42064,Mahon Pt.,79312-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_42065,Mahon Pt.,79306-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_42066,Mahon Pt.,79314-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_42067,Mahon Pt.,79308-00017-1,1,4380_7778208_2150204,4380_539 -4380_77948,296,4380_4207,Dublin,51838-00021-1,1,4380_7778208_1030102,4380_43 -4380_78125,285,4380_42073,Mahon Pt.,79889-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_42074,Mahon Pt.,79887-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_42075,Mahon Pt.,79885-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_42076,Mahon Pt.,79893-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_42077,Mahon Pt.,79891-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_42078,Mahon Pt.,79888-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_42079,Mahon Pt.,79890-00015-1,1,4380_7778208_2150207,4380_539 -4380_77948,285,4380_4208,Dublin,1773-00009-1,1,4380_7778208_1030108,4380_42 -4380_78125,294,4380_42080,Mahon Pt.,79894-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_42081,Mahon Pt.,79892-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_42082,Mahon Pt.,79886-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_42088,Mahon Pt.,79335-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_42089,Mahon Pt.,79331-00010-1,1,4380_7778208_2150204,4380_539 -4380_77948,286,4380_4209,Dublin,1785-00010-1,1,4380_7778208_1030108,4380_42 -4380_78125,288,4380_42090,Mahon Pt.,79333-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_42091,Mahon Pt.,79327-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_42092,Mahon Pt.,79329-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_42093,Mahon Pt.,79332-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_42094,Mahon Pt.,79336-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_42095,Mahon Pt.,79328-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_42096,Mahon Pt.,79330-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_42097,Mahon Pt.,79334-00017-1,1,4380_7778208_2150204,4380_539 -4380_77948,288,4380_4210,Dublin,1797-00011-1,1,4380_7778208_1030108,4380_42 -4380_78125,285,4380_42103,Mahon Pt.,79911-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_42104,Mahon Pt.,79913-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_42105,Mahon Pt.,79909-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_42106,Mahon Pt.,79907-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_42107,Mahon Pt.,79905-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_42108,Mahon Pt.,79914-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_42109,Mahon Pt.,79912-00015-1,1,4380_7778208_2150207,4380_539 -4380_77948,287,4380_4211,Dublin,1809-00012-1,1,4380_7778208_1030108,4380_42 -4380_78125,294,4380_42110,Mahon Pt.,79908-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_42111,Mahon Pt.,79906-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_42112,Mahon Pt.,79910-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_42118,Mahon Pt.,79351-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_42119,Mahon Pt.,79353-00010-1,1,4380_7778208_2150204,4380_539 -4380_77948,289,4380_4212,Dublin,1761-00014-1,1,4380_7778208_1030108,4380_42 -4380_78125,288,4380_42120,Mahon Pt.,79355-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_42121,Mahon Pt.,79349-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_42122,Mahon Pt.,79357-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_42123,Mahon Pt.,79354-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_42124,Mahon Pt.,79352-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_42125,Mahon Pt.,79350-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_42126,Mahon Pt.,79358-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_42127,Mahon Pt.,79356-00017-1,1,4380_7778208_2150204,4380_539 -4380_77948,290,4380_4213,Dublin,52207-00015-1,1,4380_7778208_1030108,4380_42 -4380_78125,285,4380_42133,Mahon Pt.,79929-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_42134,Mahon Pt.,79927-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_42135,Mahon Pt.,79925-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_42136,Mahon Pt.,79931-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_42137,Mahon Pt.,79933-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_42138,Mahon Pt.,79928-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_42139,Mahon Pt.,79930-00015-1,1,4380_7778208_2150207,4380_539 -4380_77948,292,4380_4214,Dublin,52206-00016-1,1,4380_7778208_1030108,4380_42 -4380_78125,294,4380_42140,Mahon Pt.,79932-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_42141,Mahon Pt.,79934-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_42142,Mahon Pt.,79926-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_42148,Mahon Pt.,79376-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_42149,Mahon Pt.,79372-00010-1,1,4380_7778208_2150204,4380_539 -4380_77948,293,4380_4215,Dublin,52209-00017-1,1,4380_7778208_1030108,4380_42 -4380_78125,288,4380_42150,Mahon Pt.,79378-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_42151,Mahon Pt.,79374-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_42152,Mahon Pt.,79380-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_42153,Mahon Pt.,79373-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_42154,Mahon Pt.,79377-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_42155,Mahon Pt.,79375-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_42156,Mahon Pt.,79381-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_42157,Mahon Pt.,79379-00017-1,1,4380_7778208_2150204,4380_539 -4380_77948,294,4380_4216,Dublin,52210-00018-1,1,4380_7778208_1030108,4380_42 -4380_78125,285,4380_42163,Mahon Pt.,79951-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_42164,Mahon Pt.,79949-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_42165,Mahon Pt.,79947-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_42166,Mahon Pt.,79945-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_42167,Mahon Pt.,79953-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_42168,Mahon Pt.,79950-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_42169,Mahon Pt.,79952-00015-1,1,4380_7778208_2150207,4380_539 -4380_77948,295,4380_4217,Dublin,52208-00019-1,1,4380_7778208_1030108,4380_42 -4380_78125,294,4380_42170,Mahon Pt.,79946-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_42171,Mahon Pt.,79954-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_42172,Mahon Pt.,79948-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_42178,Mahon Pt.,79397-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_42179,Mahon Pt.,79393-00010-1,1,4380_7778208_2150204,4380_539 -4380_78125,288,4380_42180,Mahon Pt.,79399-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_42181,Mahon Pt.,79395-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_42182,Mahon Pt.,79401-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_42183,Mahon Pt.,79394-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_42184,Mahon Pt.,79398-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_42185,Mahon Pt.,79396-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_42186,Mahon Pt.,79402-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_42187,Mahon Pt.,79400-00017-1,1,4380_7778208_2150204,4380_539 -4380_78125,285,4380_42193,Mahon Pt.,79965-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_42194,Mahon Pt.,79971-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_42195,Mahon Pt.,79973-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_42196,Mahon Pt.,79969-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_42197,Mahon Pt.,79967-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_42198,Mahon Pt.,79972-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_42199,Mahon Pt.,79966-00015-1,1,4380_7778208_2150207,4380_539 -4380_78125,294,4380_42200,Mahon Pt.,79970-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_42201,Mahon Pt.,79968-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_42202,Mahon Pt.,79974-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_42208,Mahon Pt.,79416-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_42209,Mahon Pt.,79424-00010-1,1,4380_7778208_2150204,4380_539 -4380_78125,288,4380_42210,Mahon Pt.,79420-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_42211,Mahon Pt.,79422-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_42212,Mahon Pt.,79418-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_42213,Mahon Pt.,79425-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_42214,Mahon Pt.,79417-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_42215,Mahon Pt.,79423-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_42216,Mahon Pt.,79419-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_42217,Mahon Pt.,79421-00017-1,1,4380_7778208_2150204,4380_539 -4380_78125,285,4380_42223,Mahon Pt.,79993-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_42224,Mahon Pt.,79989-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_42225,Mahon Pt.,79987-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_42226,Mahon Pt.,79985-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_42227,Mahon Pt.,79991-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_42228,Mahon Pt.,79990-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_42229,Mahon Pt.,79994-00015-1,1,4380_7778208_2150207,4380_539 -4380_77948,285,4380_4223,Dublin,1697-00009-1,1,4380_7778208_1030107,4380_42 -4380_78125,294,4380_42230,Mahon Pt.,79986-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_42231,Mahon Pt.,79992-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_42232,Mahon Pt.,79988-00017-1,1,4380_7778208_2150207,4380_539 -4380_78125,285,4380_42238,Mahon Pt.,79446-00009-1,1,4380_7778208_2150204,4380_539 -4380_78125,286,4380_42239,Mahon Pt.,79440-00010-1,1,4380_7778208_2150204,4380_539 -4380_77948,286,4380_4224,Dublin,1709-00010-1,1,4380_7778208_1030107,4380_42 -4380_78125,288,4380_42240,Mahon Pt.,79438-00011-1,1,4380_7778208_2150204,4380_539 -4380_78125,287,4380_42241,Mahon Pt.,79442-00012-1,1,4380_7778208_2150204,4380_539 -4380_78125,289,4380_42242,Mahon Pt.,79444-00014-1,1,4380_7778208_2150204,4380_539 -4380_78125,292,4380_42243,Mahon Pt.,79441-00016-1,1,4380_7778208_2150204,4380_539 -4380_78125,290,4380_42244,Mahon Pt.,79447-00015-1,1,4380_7778208_2150204,4380_539 -4380_78125,294,4380_42245,Mahon Pt.,79443-00018-1,1,4380_7778208_2150204,4380_539 -4380_78125,295,4380_42246,Mahon Pt.,79445-00019-1,1,4380_7778208_2150204,4380_539 -4380_78125,293,4380_42247,Mahon Pt.,79439-00017-1,1,4380_7778208_2150204,4380_539 -4380_77948,288,4380_4225,Dublin,1721-00011-1,1,4380_7778208_1030107,4380_42 -4380_78125,285,4380_42253,Mahon Pt.,80013-00009-1,1,4380_7778208_2150207,4380_539 -4380_78125,286,4380_42254,Mahon Pt.,80011-00010-1,1,4380_7778208_2150207,4380_539 -4380_78125,288,4380_42255,Mahon Pt.,80009-00011-1,1,4380_7778208_2150207,4380_539 -4380_78125,287,4380_42256,Mahon Pt.,80007-00012-1,1,4380_7778208_2150207,4380_539 -4380_78125,289,4380_42257,Mahon Pt.,80005-00014-1,1,4380_7778208_2150207,4380_539 -4380_78125,292,4380_42258,Mahon Pt.,80012-00016-1,1,4380_7778208_2150207,4380_539 -4380_78125,290,4380_42259,Mahon Pt.,80014-00015-1,1,4380_7778208_2150207,4380_539 -4380_77948,287,4380_4226,Dublin,1733-00012-1,1,4380_7778208_1030107,4380_42 -4380_78125,294,4380_42260,Mahon Pt.,80008-00018-1,1,4380_7778208_2150207,4380_539 -4380_78125,295,4380_42261,Mahon Pt.,80006-00019-1,1,4380_7778208_2150207,4380_539 -4380_78125,293,4380_42262,Mahon Pt.,80010-00017-1,1,4380_7778208_2150207,4380_539 -4380_77986,285,4380_42269,University Hospital,80155-00009-1,0,4380_7778208_2160201,4380_540 -4380_77948,289,4380_4227,Dublin,1685-00014-1,1,4380_7778208_1030107,4380_42 -4380_77986,286,4380_42270,University Hospital,80159-00010-1,0,4380_7778208_2160201,4380_540 -4380_77986,288,4380_42271,University Hospital,80163-00011-1,0,4380_7778208_2160201,4380_540 -4380_77986,287,4380_42272,University Hospital,80161-00012-1,0,4380_7778208_2160201,4380_540 -4380_77986,291,4380_42273,University Hospital,80845-00013-1,0,4380_7778208_2160211,4380_541 -4380_77986,289,4380_42274,University Hospital,80157-00014-1,0,4380_7778208_2160201,4380_540 -4380_77986,292,4380_42275,University Hospital,80160-00016-1,0,4380_7778208_2160201,4380_540 -4380_77986,290,4380_42276,University Hospital,80156-00015-1,0,4380_7778208_2160201,4380_540 -4380_77986,294,4380_42277,University Hospital,80162-00018-1,0,4380_7778208_2160201,4380_540 -4380_77986,295,4380_42278,University Hospital,80158-00019-1,0,4380_7778208_2160201,4380_540 -4380_77986,293,4380_42279,University Hospital,80164-00017-1,0,4380_7778208_2160201,4380_540 -4380_77948,290,4380_4228,Dublin,52144-00015-1,1,4380_7778208_1030107,4380_42 -4380_77986,296,4380_42280,University Hospital,80846-00021-1,0,4380_7778208_2160211,4380_541 -4380_77986,285,4380_42287,University Hospital,80295-00009-1,0,4380_7778208_2160202,4380_540 -4380_77986,286,4380_42288,University Hospital,80303-00010-1,0,4380_7778208_2160202,4380_540 -4380_77986,288,4380_42289,University Hospital,80301-00011-1,0,4380_7778208_2160202,4380_540 -4380_77948,292,4380_4229,Dublin,52142-00016-1,1,4380_7778208_1030107,4380_42 -4380_77986,287,4380_42290,University Hospital,80299-00012-1,0,4380_7778208_2160202,4380_540 -4380_77986,291,4380_42291,University Hospital,80861-00013-1,0,4380_7778208_2160212,4380_541 -4380_77986,289,4380_42292,University Hospital,80297-00014-1,0,4380_7778208_2160202,4380_540 -4380_77986,292,4380_42293,University Hospital,80304-00016-1,0,4380_7778208_2160202,4380_540 -4380_77986,290,4380_42294,University Hospital,80296-00015-1,0,4380_7778208_2160202,4380_540 -4380_77986,294,4380_42295,University Hospital,80300-00018-1,0,4380_7778208_2160202,4380_540 -4380_77986,295,4380_42296,University Hospital,80298-00019-1,0,4380_7778208_2160202,4380_540 -4380_77986,293,4380_42297,University Hospital,80302-00017-1,0,4380_7778208_2160202,4380_540 -4380_77986,296,4380_42298,University Hospital,80862-00021-1,0,4380_7778208_2160212,4380_541 -4380_77948,293,4380_4230,Dublin,52143-00017-1,1,4380_7778208_1030107,4380_42 -4380_77986,285,4380_42305,University Hospital,80349-00009-1,0,4380_7778208_2160203,4380_540 -4380_77986,286,4380_42306,University Hospital,80351-00010-1,0,4380_7778208_2160203,4380_540 -4380_77986,288,4380_42307,University Hospital,80345-00011-1,0,4380_7778208_2160203,4380_540 -4380_77986,287,4380_42308,University Hospital,80353-00012-1,0,4380_7778208_2160203,4380_540 -4380_77986,291,4380_42309,University Hospital,80901-00013-1,0,4380_7778208_2160213,4380_541 -4380_77948,294,4380_4231,Dublin,52140-00018-1,1,4380_7778208_1030107,4380_42 -4380_77986,289,4380_42310,University Hospital,80347-00014-1,0,4380_7778208_2160203,4380_540 -4380_77986,292,4380_42311,University Hospital,80352-00016-1,0,4380_7778208_2160203,4380_540 -4380_77986,290,4380_42312,University Hospital,80350-00015-1,0,4380_7778208_2160203,4380_540 -4380_77986,294,4380_42313,University Hospital,80354-00018-1,0,4380_7778208_2160203,4380_540 -4380_77986,295,4380_42314,University Hospital,80348-00019-1,0,4380_7778208_2160203,4380_540 -4380_77986,293,4380_42315,University Hospital,80346-00017-1,0,4380_7778208_2160203,4380_540 -4380_77986,296,4380_42316,University Hospital,80902-00021-1,0,4380_7778208_2160213,4380_541 -4380_77948,295,4380_4232,Dublin,52141-00019-1,1,4380_7778208_1030107,4380_42 -4380_77986,285,4380_42323,University Hospital,80457-00009-1,0,4380_7778208_2160204,4380_540 -4380_77986,286,4380_42324,University Hospital,80463-00010-1,0,4380_7778208_2160204,4380_540 -4380_77986,288,4380_42325,University Hospital,80461-00011-1,0,4380_7778208_2160204,4380_540 -4380_77986,287,4380_42326,University Hospital,80455-00012-1,0,4380_7778208_2160204,4380_540 -4380_77986,291,4380_42327,University Hospital,80932-00013-1,0,4380_7778208_2160214,4380_541 -4380_77986,289,4380_42328,University Hospital,80459-00014-1,0,4380_7778208_2160204,4380_540 -4380_77986,292,4380_42329,University Hospital,80464-00016-1,0,4380_7778208_2160204,4380_540 -4380_77986,290,4380_42330,University Hospital,80458-00015-1,0,4380_7778208_2160204,4380_540 -4380_77986,294,4380_42331,University Hospital,80456-00018-1,0,4380_7778208_2160204,4380_540 -4380_77986,295,4380_42332,University Hospital,80460-00019-1,0,4380_7778208_2160204,4380_540 -4380_77986,293,4380_42333,University Hospital,80462-00017-1,0,4380_7778208_2160204,4380_540 -4380_77986,296,4380_42334,University Hospital,80933-00021-1,0,4380_7778208_2160214,4380_541 -4380_77986,285,4380_42341,University Hospital,80593-00009-1,0,4380_7778208_2160205,4380_540 -4380_77986,286,4380_42342,University Hospital,80587-00010-1,0,4380_7778208_2160205,4380_540 -4380_77986,288,4380_42343,University Hospital,80589-00011-1,0,4380_7778208_2160205,4380_540 -4380_77986,287,4380_42344,University Hospital,80591-00012-1,0,4380_7778208_2160205,4380_540 -4380_77986,291,4380_42345,University Hospital,80960-00013-1,0,4380_7778208_2160215,4380_541 -4380_77986,289,4380_42346,University Hospital,80585-00014-1,0,4380_7778208_2160205,4380_540 -4380_77986,292,4380_42347,University Hospital,80588-00016-1,0,4380_7778208_2160205,4380_540 -4380_77986,290,4380_42348,University Hospital,80594-00015-1,0,4380_7778208_2160205,4380_540 -4380_77986,294,4380_42349,University Hospital,80592-00018-1,0,4380_7778208_2160205,4380_540 -4380_77948,297,4380_4235,Dublin,1245-00008-1,1,4380_7778208_1030101,4380_42 -4380_77986,295,4380_42350,University Hospital,80586-00019-1,0,4380_7778208_2160205,4380_540 -4380_77986,293,4380_42351,University Hospital,80590-00017-1,0,4380_7778208_2160205,4380_540 -4380_77986,296,4380_42352,University Hospital,80961-00021-1,0,4380_7778208_2160215,4380_541 -4380_77986,285,4380_42359,University Hospital,80183-00009-1,0,4380_7778208_2160201,4380_540 -4380_77948,291,4380_4236,Dublin,1405-00013-1,1,4380_7778208_1030103,4380_43 -4380_77986,286,4380_42360,University Hospital,80177-00010-1,0,4380_7778208_2160201,4380_540 -4380_77986,288,4380_42361,University Hospital,80179-00011-1,0,4380_7778208_2160201,4380_540 -4380_77986,287,4380_42362,University Hospital,80175-00012-1,0,4380_7778208_2160201,4380_540 -4380_77986,291,4380_42363,University Hospital,80849-00013-1,0,4380_7778208_2160211,4380_541 -4380_77986,289,4380_42364,University Hospital,80181-00014-1,0,4380_7778208_2160201,4380_540 -4380_77986,292,4380_42365,University Hospital,80178-00016-1,0,4380_7778208_2160201,4380_540 -4380_77986,290,4380_42366,University Hospital,80184-00015-1,0,4380_7778208_2160201,4380_540 -4380_77986,294,4380_42367,University Hospital,80176-00018-1,0,4380_7778208_2160201,4380_540 -4380_77986,295,4380_42368,University Hospital,80182-00019-1,0,4380_7778208_2160201,4380_540 -4380_77986,293,4380_42369,University Hospital,80180-00017-1,0,4380_7778208_2160201,4380_540 -4380_77948,296,4380_4237,Dublin,51898-00021-1,1,4380_7778208_1030103,4380_43 -4380_77986,296,4380_42370,University Hospital,80850-00021-1,0,4380_7778208_2160211,4380_541 -4380_77986,285,4380_42377,University Hospital,80323-00009-1,0,4380_7778208_2160202,4380_540 -4380_77986,286,4380_42378,University Hospital,80315-00010-1,0,4380_7778208_2160202,4380_540 -4380_77986,288,4380_42379,University Hospital,80319-00011-1,0,4380_7778208_2160202,4380_540 -4380_77986,287,4380_42380,University Hospital,80321-00012-1,0,4380_7778208_2160202,4380_540 -4380_77986,291,4380_42381,University Hospital,80865-00013-1,0,4380_7778208_2160212,4380_541 -4380_77986,289,4380_42382,University Hospital,80317-00014-1,0,4380_7778208_2160202,4380_540 -4380_77986,292,4380_42383,University Hospital,80316-00016-1,0,4380_7778208_2160202,4380_540 -4380_77986,290,4380_42384,University Hospital,80324-00015-1,0,4380_7778208_2160202,4380_540 -4380_77986,294,4380_42385,University Hospital,80322-00018-1,0,4380_7778208_2160202,4380_540 -4380_77986,295,4380_42386,University Hospital,80318-00019-1,0,4380_7778208_2160202,4380_540 -4380_77986,293,4380_42387,University Hospital,80320-00017-1,0,4380_7778208_2160202,4380_540 -4380_77986,296,4380_42388,University Hospital,80866-00021-1,0,4380_7778208_2160212,4380_541 -4380_77986,285,4380_42395,University Hospital,80725-00009-1,0,4380_7778208_2160206,4380_540 -4380_77986,286,4380_42396,University Hospital,80729-00010-1,0,4380_7778208_2160206,4380_540 -4380_77986,288,4380_42397,University Hospital,80731-00011-1,0,4380_7778208_2160206,4380_540 -4380_77986,287,4380_42398,University Hospital,80733-00012-1,0,4380_7778208_2160206,4380_540 -4380_77986,291,4380_42399,University Hospital,80988-00013-1,0,4380_7778208_2160216,4380_541 -4380_77986,289,4380_42400,University Hospital,80727-00014-1,0,4380_7778208_2160206,4380_540 -4380_77986,292,4380_42401,University Hospital,80730-00016-1,0,4380_7778208_2160206,4380_540 -4380_77986,290,4380_42402,University Hospital,80726-00015-1,0,4380_7778208_2160206,4380_540 -4380_77986,294,4380_42403,University Hospital,80734-00018-1,0,4380_7778208_2160206,4380_540 -4380_77986,295,4380_42404,University Hospital,80728-00019-1,0,4380_7778208_2160206,4380_540 -4380_77986,293,4380_42405,University Hospital,80732-00017-1,0,4380_7778208_2160206,4380_540 -4380_77986,296,4380_42406,University Hospital,80989-00021-1,0,4380_7778208_2160216,4380_541 -4380_77986,285,4380_42413,University Hospital,80373-00009-1,0,4380_7778208_2160203,4380_540 -4380_77986,286,4380_42414,University Hospital,80367-00010-1,0,4380_7778208_2160203,4380_540 -4380_77986,288,4380_42415,University Hospital,80371-00011-1,0,4380_7778208_2160203,4380_540 -4380_77986,287,4380_42416,University Hospital,80365-00012-1,0,4380_7778208_2160203,4380_540 -4380_77986,291,4380_42417,University Hospital,80905-00013-1,0,4380_7778208_2160213,4380_541 -4380_77986,289,4380_42418,University Hospital,80369-00014-1,0,4380_7778208_2160203,4380_540 -4380_77986,292,4380_42419,University Hospital,80368-00016-1,0,4380_7778208_2160203,4380_540 -4380_77986,290,4380_42420,University Hospital,80374-00015-1,0,4380_7778208_2160203,4380_540 -4380_77986,294,4380_42421,University Hospital,80366-00018-1,0,4380_7778208_2160203,4380_540 -4380_77986,295,4380_42422,University Hospital,80370-00019-1,0,4380_7778208_2160203,4380_540 -4380_77986,293,4380_42423,University Hospital,80372-00017-1,0,4380_7778208_2160203,4380_540 -4380_77986,296,4380_42424,University Hospital,80906-00021-1,0,4380_7778208_2160213,4380_541 -4380_77986,297,4380_42426,University Hospital,80851-00008-1,0,4380_7778208_2160211,4380_540 -4380_77948,285,4380_4243,Dublin,1613-00009-1,1,4380_7778208_1030106,4380_42 -4380_77986,285,4380_42433,University Hospital,80477-00009-1,0,4380_7778208_2160204,4380_540 -4380_77986,286,4380_42434,University Hospital,80483-00010-1,0,4380_7778208_2160204,4380_540 -4380_77986,288,4380_42435,University Hospital,80475-00011-1,0,4380_7778208_2160204,4380_540 -4380_77986,287,4380_42436,University Hospital,80479-00012-1,0,4380_7778208_2160204,4380_540 -4380_77986,291,4380_42437,University Hospital,80936-00013-1,0,4380_7778208_2160214,4380_541 -4380_77986,289,4380_42438,University Hospital,80481-00014-1,0,4380_7778208_2160204,4380_540 -4380_77986,292,4380_42439,University Hospital,80484-00016-1,0,4380_7778208_2160204,4380_540 -4380_77948,286,4380_4244,Dublin,1625-00010-1,1,4380_7778208_1030106,4380_42 -4380_77986,290,4380_42440,University Hospital,80478-00015-1,0,4380_7778208_2160204,4380_540 -4380_77986,294,4380_42441,University Hospital,80480-00018-1,0,4380_7778208_2160204,4380_540 -4380_77986,295,4380_42442,University Hospital,80482-00019-1,0,4380_7778208_2160204,4380_540 -4380_77986,293,4380_42443,University Hospital,80476-00017-1,0,4380_7778208_2160204,4380_540 -4380_77986,296,4380_42444,University Hospital,80937-00021-1,0,4380_7778208_2160214,4380_541 -4380_77948,288,4380_4245,Dublin,1637-00011-1,1,4380_7778208_1030106,4380_42 -4380_77986,285,4380_42451,University Hospital,80609-00009-1,0,4380_7778208_2160205,4380_540 -4380_77986,286,4380_42452,University Hospital,80611-00010-1,0,4380_7778208_2160205,4380_540 -4380_77986,288,4380_42453,University Hospital,80613-00011-1,0,4380_7778208_2160205,4380_540 -4380_77986,287,4380_42454,University Hospital,80607-00012-1,0,4380_7778208_2160205,4380_540 -4380_77986,291,4380_42455,University Hospital,80964-00013-1,0,4380_7778208_2160215,4380_541 -4380_77986,289,4380_42456,University Hospital,80605-00014-1,0,4380_7778208_2160205,4380_540 -4380_77986,292,4380_42457,University Hospital,80612-00016-1,0,4380_7778208_2160205,4380_540 -4380_77986,290,4380_42458,University Hospital,80610-00015-1,0,4380_7778208_2160205,4380_540 -4380_77986,294,4380_42459,University Hospital,80608-00018-1,0,4380_7778208_2160205,4380_540 -4380_77948,287,4380_4246,Dublin,1649-00012-1,1,4380_7778208_1030106,4380_42 -4380_77986,295,4380_42460,University Hospital,80606-00019-1,0,4380_7778208_2160205,4380_540 -4380_77986,293,4380_42461,University Hospital,80614-00017-1,0,4380_7778208_2160205,4380_540 -4380_77986,296,4380_42462,University Hospital,80965-00021-1,0,4380_7778208_2160215,4380_541 -4380_77986,297,4380_42464,University Hospital,80870-00008-1,0,4380_7778208_2160212,4380_540 -4380_77948,289,4380_4247,Dublin,1601-00014-1,1,4380_7778208_1030106,4380_42 -4380_77986,285,4380_42471,University Hospital,80197-00009-1,0,4380_7778208_2160201,4380_540 -4380_77986,286,4380_42472,University Hospital,80195-00010-1,0,4380_7778208_2160201,4380_540 -4380_77986,288,4380_42473,University Hospital,80203-00011-1,0,4380_7778208_2160201,4380_540 -4380_77986,287,4380_42474,University Hospital,80201-00012-1,0,4380_7778208_2160201,4380_540 -4380_77986,291,4380_42475,University Hospital,80871-00013-1,0,4380_7778208_2160212,4380_541 -4380_77986,289,4380_42476,University Hospital,80199-00014-1,0,4380_7778208_2160201,4380_540 -4380_77986,292,4380_42477,University Hospital,80196-00016-1,0,4380_7778208_2160201,4380_540 -4380_77986,290,4380_42478,University Hospital,80198-00015-1,0,4380_7778208_2160201,4380_540 -4380_77986,294,4380_42479,University Hospital,80202-00018-1,0,4380_7778208_2160201,4380_540 -4380_77948,290,4380_4248,Dublin,52070-00015-1,1,4380_7778208_1030106,4380_42 -4380_77986,295,4380_42480,University Hospital,80200-00019-1,0,4380_7778208_2160201,4380_540 -4380_77986,293,4380_42481,University Hospital,80204-00017-1,0,4380_7778208_2160201,4380_540 -4380_77986,296,4380_42482,University Hospital,80872-00021-1,0,4380_7778208_2160212,4380_541 -4380_77986,285,4380_42489,University Hospital,80749-00009-1,0,4380_7778208_2160206,4380_540 -4380_77948,292,4380_4249,Dublin,52073-00016-1,1,4380_7778208_1030106,4380_42 -4380_77986,286,4380_42490,University Hospital,80747-00010-1,0,4380_7778208_2160206,4380_540 -4380_77986,288,4380_42491,University Hospital,80751-00011-1,0,4380_7778208_2160206,4380_540 -4380_77986,287,4380_42492,University Hospital,80745-00012-1,0,4380_7778208_2160206,4380_540 -4380_77986,291,4380_42493,University Hospital,80992-00013-1,0,4380_7778208_2160216,4380_541 -4380_77986,289,4380_42494,University Hospital,80753-00014-1,0,4380_7778208_2160206,4380_540 -4380_77986,292,4380_42495,University Hospital,80748-00016-1,0,4380_7778208_2160206,4380_540 -4380_77986,290,4380_42496,University Hospital,80750-00015-1,0,4380_7778208_2160206,4380_540 -4380_77986,294,4380_42497,University Hospital,80746-00018-1,0,4380_7778208_2160206,4380_540 -4380_77986,295,4380_42498,University Hospital,80754-00019-1,0,4380_7778208_2160206,4380_540 -4380_77986,293,4380_42499,University Hospital,80752-00017-1,0,4380_7778208_2160206,4380_540 -4380_77948,293,4380_4250,Dublin,52074-00017-1,1,4380_7778208_1030106,4380_42 -4380_77986,296,4380_42500,University Hospital,80993-00021-1,0,4380_7778208_2160216,4380_541 -4380_77986,297,4380_42502,University Hospital,80910-00008-1,0,4380_7778208_2160213,4380_540 -4380_77986,285,4380_42509,University Hospital,80391-00009-1,0,4380_7778208_2160203,4380_540 -4380_77948,294,4380_4251,Dublin,52072-00018-1,1,4380_7778208_1030106,4380_42 -4380_77986,286,4380_42510,University Hospital,80387-00010-1,0,4380_7778208_2160203,4380_540 -4380_77986,288,4380_42511,University Hospital,80393-00011-1,0,4380_7778208_2160203,4380_540 -4380_77986,287,4380_42512,University Hospital,80389-00012-1,0,4380_7778208_2160203,4380_540 -4380_77986,291,4380_42513,University Hospital,80911-00013-1,0,4380_7778208_2160213,4380_541 -4380_77986,289,4380_42514,University Hospital,80385-00014-1,0,4380_7778208_2160203,4380_540 -4380_77986,292,4380_42515,University Hospital,80388-00016-1,0,4380_7778208_2160203,4380_540 -4380_77986,290,4380_42516,University Hospital,80392-00015-1,0,4380_7778208_2160203,4380_540 -4380_77986,294,4380_42517,University Hospital,80390-00018-1,0,4380_7778208_2160203,4380_540 -4380_77986,295,4380_42518,University Hospital,80386-00019-1,0,4380_7778208_2160203,4380_540 -4380_77986,293,4380_42519,University Hospital,80394-00017-1,0,4380_7778208_2160203,4380_540 -4380_77948,295,4380_4252,Dublin,52071-00019-1,1,4380_7778208_1030106,4380_42 -4380_77986,296,4380_42520,University Hospital,80912-00021-1,0,4380_7778208_2160213,4380_541 -4380_77986,285,4380_42527,University Hospital,80499-00009-1,0,4380_7778208_2160204,4380_540 -4380_77986,286,4380_42528,University Hospital,80503-00010-1,0,4380_7778208_2160204,4380_540 -4380_77986,288,4380_42529,University Hospital,80501-00011-1,0,4380_7778208_2160204,4380_540 -4380_77986,287,4380_42530,University Hospital,80495-00012-1,0,4380_7778208_2160204,4380_540 -4380_77986,291,4380_42531,University Hospital,80940-00013-1,0,4380_7778208_2160214,4380_541 -4380_77986,289,4380_42532,University Hospital,80497-00014-1,0,4380_7778208_2160204,4380_540 -4380_77986,292,4380_42533,University Hospital,80504-00016-1,0,4380_7778208_2160204,4380_540 -4380_77986,290,4380_42534,University Hospital,80500-00015-1,0,4380_7778208_2160204,4380_540 -4380_77986,294,4380_42535,University Hospital,80496-00018-1,0,4380_7778208_2160204,4380_540 -4380_77986,295,4380_42536,University Hospital,80498-00019-1,0,4380_7778208_2160204,4380_540 -4380_77986,293,4380_42537,University Hospital,80502-00017-1,0,4380_7778208_2160204,4380_540 -4380_77986,296,4380_42538,University Hospital,80941-00021-1,0,4380_7778208_2160214,4380_541 -4380_77986,297,4380_42540,University Hospital,80853-00008-1,0,4380_7778208_2160211,4380_540 -4380_77986,285,4380_42547,University Hospital,80631-00009-1,0,4380_7778208_2160205,4380_540 -4380_77986,286,4380_42548,University Hospital,80633-00010-1,0,4380_7778208_2160205,4380_540 -4380_77986,288,4380_42549,University Hospital,80625-00011-1,0,4380_7778208_2160205,4380_540 -4380_77986,287,4380_42550,University Hospital,80629-00012-1,0,4380_7778208_2160205,4380_540 -4380_77986,291,4380_42551,University Hospital,80968-00013-1,0,4380_7778208_2160215,4380_541 -4380_77986,289,4380_42552,University Hospital,80627-00014-1,0,4380_7778208_2160205,4380_540 -4380_77986,292,4380_42553,University Hospital,80634-00016-1,0,4380_7778208_2160205,4380_540 -4380_77986,290,4380_42554,University Hospital,80632-00015-1,0,4380_7778208_2160205,4380_540 -4380_77986,294,4380_42555,University Hospital,80630-00018-1,0,4380_7778208_2160205,4380_540 -4380_77986,295,4380_42556,University Hospital,80628-00019-1,0,4380_7778208_2160205,4380_540 -4380_77986,293,4380_42557,University Hospital,80626-00017-1,0,4380_7778208_2160205,4380_540 -4380_77986,296,4380_42558,University Hospital,80969-00021-1,0,4380_7778208_2160215,4380_541 -4380_77986,285,4380_42565,University Hospital,80223-00009-1,0,4380_7778208_2160201,4380_540 -4380_77986,286,4380_42566,University Hospital,80221-00010-1,0,4380_7778208_2160201,4380_540 -4380_77986,288,4380_42567,University Hospital,80219-00011-1,0,4380_7778208_2160201,4380_540 -4380_77986,287,4380_42568,University Hospital,80215-00012-1,0,4380_7778208_2160201,4380_540 -4380_77986,291,4380_42569,University Hospital,80876-00013-1,0,4380_7778208_2160212,4380_541 -4380_77986,289,4380_42570,University Hospital,80217-00014-1,0,4380_7778208_2160201,4380_540 -4380_77986,292,4380_42571,University Hospital,80222-00016-1,0,4380_7778208_2160201,4380_540 -4380_77986,290,4380_42572,University Hospital,80224-00015-1,0,4380_7778208_2160201,4380_540 -4380_77986,294,4380_42573,University Hospital,80216-00018-1,0,4380_7778208_2160201,4380_540 -4380_77986,295,4380_42574,University Hospital,80218-00019-1,0,4380_7778208_2160201,4380_540 -4380_77986,293,4380_42575,University Hospital,80220-00017-1,0,4380_7778208_2160201,4380_540 -4380_77986,296,4380_42576,University Hospital,80877-00021-1,0,4380_7778208_2160212,4380_541 -4380_77986,297,4380_42578,University Hospital,80878-00008-1,0,4380_7778208_2160212,4380_540 -4380_77986,285,4380_42585,University Hospital,80767-00009-1,0,4380_7778208_2160206,4380_540 -4380_77986,286,4380_42586,University Hospital,80765-00010-1,0,4380_7778208_2160206,4380_540 -4380_77986,288,4380_42587,University Hospital,80771-00011-1,0,4380_7778208_2160206,4380_540 -4380_77986,287,4380_42588,University Hospital,80773-00012-1,0,4380_7778208_2160206,4380_540 -4380_77986,291,4380_42589,University Hospital,80996-00013-1,0,4380_7778208_2160216,4380_541 -4380_77948,291,4380_4259,Dublin,1523-00013-1,1,4380_7778208_1030104,4380_43 -4380_77986,289,4380_42590,University Hospital,80769-00014-1,0,4380_7778208_2160206,4380_540 -4380_77986,292,4380_42591,University Hospital,80766-00016-1,0,4380_7778208_2160206,4380_540 -4380_77986,290,4380_42592,University Hospital,80768-00015-1,0,4380_7778208_2160206,4380_540 -4380_77986,294,4380_42593,University Hospital,80774-00018-1,0,4380_7778208_2160206,4380_540 -4380_77986,295,4380_42594,University Hospital,80770-00019-1,0,4380_7778208_2160206,4380_540 -4380_77986,293,4380_42595,University Hospital,80772-00017-1,0,4380_7778208_2160206,4380_540 -4380_77986,296,4380_42596,University Hospital,80997-00021-1,0,4380_7778208_2160216,4380_541 -4380_77948,296,4380_4260,Dublin,51960-00021-1,1,4380_7778208_1030104,4380_43 -4380_77986,285,4380_42603,University Hospital,80407-00009-1,0,4380_7778208_2160203,4380_540 -4380_77986,286,4380_42604,University Hospital,80413-00010-1,0,4380_7778208_2160203,4380_540 -4380_77986,288,4380_42605,University Hospital,80405-00011-1,0,4380_7778208_2160203,4380_540 -4380_77986,287,4380_42606,University Hospital,80409-00012-1,0,4380_7778208_2160203,4380_540 -4380_77986,291,4380_42607,University Hospital,80916-00013-1,0,4380_7778208_2160213,4380_541 -4380_77986,289,4380_42608,University Hospital,80411-00014-1,0,4380_7778208_2160203,4380_540 -4380_77986,292,4380_42609,University Hospital,80414-00016-1,0,4380_7778208_2160203,4380_540 -4380_77948,285,4380_4261,Dublin,1843-00009-1,1,4380_7778208_1030109,4380_42 -4380_77986,290,4380_42610,University Hospital,80408-00015-1,0,4380_7778208_2160203,4380_540 -4380_77986,294,4380_42611,University Hospital,80410-00018-1,0,4380_7778208_2160203,4380_540 -4380_77986,295,4380_42612,University Hospital,80412-00019-1,0,4380_7778208_2160203,4380_540 -4380_77986,293,4380_42613,University Hospital,80406-00017-1,0,4380_7778208_2160203,4380_540 -4380_77986,296,4380_42614,University Hospital,80917-00021-1,0,4380_7778208_2160213,4380_541 -4380_77986,297,4380_42616,University Hospital,80918-00008-1,0,4380_7778208_2160213,4380_540 -4380_77948,286,4380_4262,Dublin,1853-00010-1,1,4380_7778208_1030109,4380_42 -4380_77986,285,4380_42623,University Hospital,80517-00009-1,0,4380_7778208_2160204,4380_540 -4380_77986,286,4380_42624,University Hospital,80521-00010-1,0,4380_7778208_2160204,4380_540 -4380_77986,288,4380_42625,University Hospital,80523-00011-1,0,4380_7778208_2160204,4380_540 -4380_77986,287,4380_42626,University Hospital,80519-00012-1,0,4380_7778208_2160204,4380_540 -4380_77986,291,4380_42627,University Hospital,80944-00013-1,0,4380_7778208_2160214,4380_541 -4380_77986,289,4380_42628,University Hospital,80515-00014-1,0,4380_7778208_2160204,4380_540 -4380_77986,292,4380_42629,University Hospital,80522-00016-1,0,4380_7778208_2160204,4380_540 -4380_77948,288,4380_4263,Dublin,1863-00011-1,1,4380_7778208_1030109,4380_42 -4380_77986,290,4380_42630,University Hospital,80518-00015-1,0,4380_7778208_2160204,4380_540 -4380_77986,294,4380_42631,University Hospital,80520-00018-1,0,4380_7778208_2160204,4380_540 -4380_77986,295,4380_42632,University Hospital,80516-00019-1,0,4380_7778208_2160204,4380_540 -4380_77986,293,4380_42633,University Hospital,80524-00017-1,0,4380_7778208_2160204,4380_540 -4380_77986,296,4380_42634,University Hospital,80945-00021-1,0,4380_7778208_2160214,4380_541 -4380_77948,287,4380_4264,Dublin,1873-00012-1,1,4380_7778208_1030109,4380_42 -4380_77986,285,4380_42641,University Hospital,80647-00009-1,0,4380_7778208_2160205,4380_540 -4380_77986,286,4380_42642,University Hospital,80651-00010-1,0,4380_7778208_2160205,4380_540 -4380_77986,288,4380_42643,University Hospital,80645-00011-1,0,4380_7778208_2160205,4380_540 -4380_77986,287,4380_42644,University Hospital,80653-00012-1,0,4380_7778208_2160205,4380_540 -4380_77986,291,4380_42645,University Hospital,80972-00013-1,0,4380_7778208_2160215,4380_541 -4380_77986,289,4380_42646,University Hospital,80649-00014-1,0,4380_7778208_2160205,4380_540 -4380_77986,292,4380_42647,University Hospital,80652-00016-1,0,4380_7778208_2160205,4380_540 -4380_77986,290,4380_42648,University Hospital,80648-00015-1,0,4380_7778208_2160205,4380_540 -4380_77986,294,4380_42649,University Hospital,80654-00018-1,0,4380_7778208_2160205,4380_540 -4380_77948,289,4380_4265,Dublin,1833-00014-1,1,4380_7778208_1030109,4380_42 -4380_77986,295,4380_42650,University Hospital,80650-00019-1,0,4380_7778208_2160205,4380_540 -4380_77986,293,4380_42651,University Hospital,80646-00017-1,0,4380_7778208_2160205,4380_540 -4380_77986,296,4380_42652,University Hospital,80973-00021-1,0,4380_7778208_2160215,4380_541 -4380_77986,297,4380_42654,University Hospital,80855-00008-1,0,4380_7778208_2160211,4380_540 -4380_77948,290,4380_4266,Dublin,52276-00015-1,1,4380_7778208_1030109,4380_42 -4380_77986,285,4380_42661,University Hospital,80241-00009-1,0,4380_7778208_2160201,4380_540 -4380_77986,286,4380_42662,University Hospital,80235-00010-1,0,4380_7778208_2160201,4380_540 -4380_77986,288,4380_42663,University Hospital,80239-00011-1,0,4380_7778208_2160201,4380_540 -4380_77986,287,4380_42664,University Hospital,80243-00012-1,0,4380_7778208_2160201,4380_540 -4380_77986,291,4380_42665,University Hospital,80882-00013-1,0,4380_7778208_2160212,4380_541 -4380_77986,289,4380_42666,University Hospital,80237-00014-1,0,4380_7778208_2160201,4380_540 -4380_77986,292,4380_42667,University Hospital,80236-00016-1,0,4380_7778208_2160201,4380_540 -4380_77986,290,4380_42668,University Hospital,80242-00015-1,0,4380_7778208_2160201,4380_540 -4380_77986,294,4380_42669,University Hospital,80244-00018-1,0,4380_7778208_2160201,4380_540 -4380_77948,292,4380_4267,Dublin,52274-00016-1,1,4380_7778208_1030109,4380_42 -4380_77986,295,4380_42670,University Hospital,80238-00019-1,0,4380_7778208_2160201,4380_540 -4380_77986,293,4380_42671,University Hospital,80240-00017-1,0,4380_7778208_2160201,4380_540 -4380_77986,296,4380_42672,University Hospital,80883-00021-1,0,4380_7778208_2160212,4380_541 -4380_77986,285,4380_42679,University Hospital,80335-00009-1,0,4380_7778208_2160202,4380_540 -4380_77948,293,4380_4268,Dublin,52275-00017-1,1,4380_7778208_1030109,4380_42 -4380_77986,286,4380_42680,University Hospital,80337-00010-1,0,4380_7778208_2160202,4380_540 -4380_77986,288,4380_42681,University Hospital,80339-00011-1,0,4380_7778208_2160202,4380_540 -4380_77986,287,4380_42682,University Hospital,80341-00012-1,0,4380_7778208_2160202,4380_540 -4380_77986,291,4380_42683,University Hospital,81000-00013-1,0,4380_7778208_2160216,4380_541 -4380_77986,289,4380_42684,University Hospital,80343-00014-1,0,4380_7778208_2160202,4380_540 -4380_77986,292,4380_42685,University Hospital,80338-00016-1,0,4380_7778208_2160202,4380_540 -4380_77986,290,4380_42686,University Hospital,80336-00015-1,0,4380_7778208_2160202,4380_540 -4380_77986,294,4380_42687,University Hospital,80342-00018-1,0,4380_7778208_2160202,4380_540 -4380_77986,295,4380_42688,University Hospital,80344-00019-1,0,4380_7778208_2160202,4380_540 -4380_77986,293,4380_42689,University Hospital,80340-00017-1,0,4380_7778208_2160202,4380_540 -4380_77948,294,4380_4269,Dublin,52273-00018-1,1,4380_7778208_1030109,4380_42 -4380_77986,296,4380_42690,University Hospital,81001-00021-1,0,4380_7778208_2160216,4380_541 -4380_77986,297,4380_42692,University Hospital,80884-00008-1,0,4380_7778208_2160212,4380_540 -4380_77986,285,4380_42699,University Hospital,80791-00009-1,0,4380_7778208_2160206,4380_540 -4380_77948,295,4380_4270,Dublin,52272-00019-1,1,4380_7778208_1030109,4380_42 -4380_77986,286,4380_42700,University Hospital,80789-00010-1,0,4380_7778208_2160206,4380_540 -4380_77986,288,4380_42701,University Hospital,80785-00011-1,0,4380_7778208_2160206,4380_540 -4380_77986,287,4380_42702,University Hospital,80793-00012-1,0,4380_7778208_2160206,4380_540 -4380_77986,291,4380_42703,University Hospital,80922-00013-1,0,4380_7778208_2160213,4380_541 -4380_77986,289,4380_42704,University Hospital,80787-00014-1,0,4380_7778208_2160206,4380_540 -4380_77986,292,4380_42705,University Hospital,80790-00016-1,0,4380_7778208_2160206,4380_540 -4380_77986,290,4380_42706,University Hospital,80792-00015-1,0,4380_7778208_2160206,4380_540 -4380_77986,294,4380_42707,University Hospital,80794-00018-1,0,4380_7778208_2160206,4380_540 -4380_77986,295,4380_42708,University Hospital,80788-00019-1,0,4380_7778208_2160206,4380_540 -4380_77986,293,4380_42709,University Hospital,80786-00017-1,0,4380_7778208_2160206,4380_540 -4380_77986,296,4380_42710,University Hospital,80923-00021-1,0,4380_7778208_2160213,4380_541 -4380_77986,285,4380_42717,University Hospital,80425-00009-1,0,4380_7778208_2160203,4380_540 -4380_77986,286,4380_42718,University Hospital,80431-00010-1,0,4380_7778208_2160203,4380_540 -4380_77986,288,4380_42719,University Hospital,80427-00011-1,0,4380_7778208_2160203,4380_540 -4380_77986,287,4380_42720,University Hospital,80429-00012-1,0,4380_7778208_2160203,4380_540 -4380_77986,291,4380_42721,University Hospital,80948-00013-1,0,4380_7778208_2160214,4380_541 -4380_77986,289,4380_42722,University Hospital,80433-00014-1,0,4380_7778208_2160203,4380_540 -4380_77986,292,4380_42723,University Hospital,80432-00016-1,0,4380_7778208_2160203,4380_540 -4380_77986,290,4380_42724,University Hospital,80426-00015-1,0,4380_7778208_2160203,4380_540 -4380_77986,294,4380_42725,University Hospital,80430-00018-1,0,4380_7778208_2160203,4380_540 -4380_77986,295,4380_42726,University Hospital,80434-00019-1,0,4380_7778208_2160203,4380_540 -4380_77986,293,4380_42727,University Hospital,80428-00017-1,0,4380_7778208_2160203,4380_540 -4380_77986,296,4380_42728,University Hospital,80949-00021-1,0,4380_7778208_2160214,4380_541 -4380_77986,297,4380_42730,University Hospital,80924-00008-1,0,4380_7778208_2160213,4380_540 -4380_77986,285,4380_42737,University Hospital,80541-00009-1,0,4380_7778208_2160204,4380_540 -4380_77986,286,4380_42738,University Hospital,80539-00010-1,0,4380_7778208_2160204,4380_540 -4380_77986,288,4380_42739,University Hospital,80535-00011-1,0,4380_7778208_2160204,4380_540 -4380_77986,287,4380_42740,University Hospital,80537-00012-1,0,4380_7778208_2160204,4380_540 -4380_77986,291,4380_42741,University Hospital,80976-00013-1,0,4380_7778208_2160215,4380_541 -4380_77986,289,4380_42742,University Hospital,80543-00014-1,0,4380_7778208_2160204,4380_540 -4380_77986,292,4380_42743,University Hospital,80540-00016-1,0,4380_7778208_2160204,4380_540 -4380_77986,290,4380_42744,University Hospital,80542-00015-1,0,4380_7778208_2160204,4380_540 -4380_77986,294,4380_42745,University Hospital,80538-00018-1,0,4380_7778208_2160204,4380_540 -4380_77986,295,4380_42746,University Hospital,80544-00019-1,0,4380_7778208_2160204,4380_540 -4380_77986,293,4380_42747,University Hospital,80536-00017-1,0,4380_7778208_2160204,4380_540 -4380_77986,296,4380_42748,University Hospital,80977-00021-1,0,4380_7778208_2160215,4380_541 -4380_77986,285,4380_42755,University Hospital,80673-00009-1,0,4380_7778208_2160205,4380_540 -4380_77986,286,4380_42756,University Hospital,80665-00010-1,0,4380_7778208_2160205,4380_540 -4380_77986,288,4380_42757,University Hospital,80667-00011-1,0,4380_7778208_2160205,4380_540 -4380_77986,287,4380_42758,University Hospital,80671-00012-1,0,4380_7778208_2160205,4380_540 -4380_77986,291,4380_42759,University Hospital,80888-00013-1,0,4380_7778208_2160212,4380_541 -4380_77948,285,4380_4276,Dublin,1910-00009-1,1,4380_7778208_1030110,4380_42 -4380_77986,289,4380_42760,University Hospital,80669-00014-1,0,4380_7778208_2160205,4380_540 -4380_77986,292,4380_42761,University Hospital,80666-00016-1,0,4380_7778208_2160205,4380_540 -4380_77986,290,4380_42762,University Hospital,80674-00015-1,0,4380_7778208_2160205,4380_540 -4380_77986,294,4380_42763,University Hospital,80672-00018-1,0,4380_7778208_2160205,4380_540 -4380_77986,295,4380_42764,University Hospital,80670-00019-1,0,4380_7778208_2160205,4380_540 -4380_77986,293,4380_42765,University Hospital,80668-00017-1,0,4380_7778208_2160205,4380_540 -4380_77986,296,4380_42766,University Hospital,80889-00021-1,0,4380_7778208_2160212,4380_541 -4380_77986,297,4380_42768,University Hospital,80857-00008-1,0,4380_7778208_2160211,4380_540 -4380_77948,286,4380_4277,Dublin,1920-00010-1,1,4380_7778208_1030110,4380_42 -4380_77986,285,4380_42775,University Hospital,80257-00009-1,0,4380_7778208_2160201,4380_540 -4380_77986,286,4380_42776,University Hospital,80259-00010-1,0,4380_7778208_2160201,4380_540 -4380_77986,288,4380_42777,University Hospital,80263-00011-1,0,4380_7778208_2160201,4380_540 -4380_77986,287,4380_42778,University Hospital,80255-00012-1,0,4380_7778208_2160201,4380_540 -4380_77986,291,4380_42779,University Hospital,81004-00013-1,0,4380_7778208_2160216,4380_541 -4380_77948,288,4380_4278,Dublin,1930-00011-1,1,4380_7778208_1030110,4380_42 -4380_77986,289,4380_42780,University Hospital,80261-00014-1,0,4380_7778208_2160201,4380_540 -4380_77986,292,4380_42781,University Hospital,80260-00016-1,0,4380_7778208_2160201,4380_540 -4380_77986,290,4380_42782,University Hospital,80258-00015-1,0,4380_7778208_2160201,4380_540 -4380_77986,294,4380_42783,University Hospital,80256-00018-1,0,4380_7778208_2160201,4380_540 -4380_77986,295,4380_42784,University Hospital,80262-00019-1,0,4380_7778208_2160201,4380_540 -4380_77986,293,4380_42785,University Hospital,80264-00017-1,0,4380_7778208_2160201,4380_540 -4380_77986,296,4380_42786,University Hospital,81005-00021-1,0,4380_7778208_2160216,4380_541 -4380_77948,287,4380_4279,Dublin,1940-00012-1,1,4380_7778208_1030110,4380_42 -4380_77986,285,4380_42793,University Hospital,80805-00009-1,0,4380_7778208_2160206,4380_540 -4380_77986,286,4380_42794,University Hospital,80807-00010-1,0,4380_7778208_2160206,4380_540 -4380_77986,288,4380_42795,University Hospital,80809-00011-1,0,4380_7778208_2160206,4380_540 -4380_77986,287,4380_42796,University Hospital,80811-00012-1,0,4380_7778208_2160206,4380_540 -4380_77986,291,4380_42797,University Hospital,80928-00013-1,0,4380_7778208_2160213,4380_541 -4380_77986,289,4380_42798,University Hospital,80813-00014-1,0,4380_7778208_2160206,4380_540 -4380_77986,292,4380_42799,University Hospital,80808-00016-1,0,4380_7778208_2160206,4380_540 -4380_77946,285,4380_428,Drogheda,50409-00009-1,1,4380_7778208_1000914,4380_6 -4380_77948,289,4380_4280,Dublin,1900-00014-1,1,4380_7778208_1030110,4380_42 -4380_77986,290,4380_42800,University Hospital,80806-00015-1,0,4380_7778208_2160206,4380_540 -4380_77986,294,4380_42801,University Hospital,80812-00018-1,0,4380_7778208_2160206,4380_540 -4380_77986,295,4380_42802,University Hospital,80814-00019-1,0,4380_7778208_2160206,4380_540 -4380_77986,293,4380_42803,University Hospital,80810-00017-1,0,4380_7778208_2160206,4380_540 -4380_77986,296,4380_42804,University Hospital,80929-00021-1,0,4380_7778208_2160213,4380_541 -4380_77986,297,4380_42806,University Hospital,80890-00008-1,0,4380_7778208_2160212,4380_540 -4380_77948,290,4380_4281,Dublin,52329-00015-1,1,4380_7778208_1030110,4380_42 -4380_77986,285,4380_42813,University Hospital,80449-00009-1,0,4380_7778208_2160203,4380_540 -4380_77986,286,4380_42814,University Hospital,80453-00010-1,0,4380_7778208_2160203,4380_540 -4380_77986,288,4380_42815,University Hospital,80445-00011-1,0,4380_7778208_2160203,4380_540 -4380_77986,287,4380_42816,University Hospital,80447-00012-1,0,4380_7778208_2160203,4380_540 -4380_77986,291,4380_42817,University Hospital,80952-00013-1,0,4380_7778208_2160214,4380_541 -4380_77986,289,4380_42818,University Hospital,80451-00014-1,0,4380_7778208_2160203,4380_540 -4380_77986,292,4380_42819,University Hospital,80454-00016-1,0,4380_7778208_2160203,4380_540 -4380_77948,292,4380_4282,Dublin,52330-00016-1,1,4380_7778208_1030110,4380_42 -4380_77986,290,4380_42820,University Hospital,80450-00015-1,0,4380_7778208_2160203,4380_540 -4380_77986,294,4380_42821,University Hospital,80448-00018-1,0,4380_7778208_2160203,4380_540 -4380_77986,295,4380_42822,University Hospital,80452-00019-1,0,4380_7778208_2160203,4380_540 -4380_77986,293,4380_42823,University Hospital,80446-00017-1,0,4380_7778208_2160203,4380_540 -4380_77986,296,4380_42824,University Hospital,80953-00021-1,0,4380_7778208_2160214,4380_541 -4380_77948,293,4380_4283,Dublin,52328-00017-1,1,4380_7778208_1030110,4380_42 -4380_77986,285,4380_42831,University Hospital,80563-00009-1,0,4380_7778208_2160204,4380_540 -4380_77986,286,4380_42832,University Hospital,80559-00010-1,0,4380_7778208_2160204,4380_540 -4380_77986,288,4380_42833,University Hospital,80555-00011-1,0,4380_7778208_2160204,4380_540 -4380_77986,287,4380_42834,University Hospital,80561-00012-1,0,4380_7778208_2160204,4380_540 -4380_77986,291,4380_42835,University Hospital,80980-00013-1,0,4380_7778208_2160215,4380_541 -4380_77986,289,4380_42836,University Hospital,80557-00014-1,0,4380_7778208_2160204,4380_540 -4380_77986,292,4380_42837,University Hospital,80560-00016-1,0,4380_7778208_2160204,4380_540 -4380_77986,290,4380_42838,University Hospital,80564-00015-1,0,4380_7778208_2160204,4380_540 -4380_77986,294,4380_42839,University Hospital,80562-00018-1,0,4380_7778208_2160204,4380_540 -4380_77948,294,4380_4284,Dublin,52332-00018-1,1,4380_7778208_1030110,4380_42 -4380_77986,295,4380_42840,University Hospital,80558-00019-1,0,4380_7778208_2160204,4380_540 -4380_77986,293,4380_42841,University Hospital,80556-00017-1,0,4380_7778208_2160204,4380_540 -4380_77986,296,4380_42842,University Hospital,80981-00021-1,0,4380_7778208_2160215,4380_541 -4380_77986,297,4380_42844,University Hospital,80930-00008-1,0,4380_7778208_2160213,4380_540 -4380_77948,295,4380_4285,Dublin,52331-00019-1,1,4380_7778208_1030110,4380_42 -4380_77986,285,4380_42851,University Hospital,80691-00009-1,0,4380_7778208_2160205,4380_540 -4380_77986,286,4380_42852,University Hospital,80689-00010-1,0,4380_7778208_2160205,4380_540 -4380_77986,288,4380_42853,University Hospital,80685-00011-1,0,4380_7778208_2160205,4380_540 -4380_77986,287,4380_42854,University Hospital,80693-00012-1,0,4380_7778208_2160205,4380_540 -4380_77986,291,4380_42855,University Hospital,80893-00013-1,0,4380_7778208_2160212,4380_541 -4380_77986,289,4380_42856,University Hospital,80687-00014-1,0,4380_7778208_2160205,4380_540 -4380_77986,292,4380_42857,University Hospital,80690-00016-1,0,4380_7778208_2160205,4380_540 -4380_77986,290,4380_42858,University Hospital,80692-00015-1,0,4380_7778208_2160205,4380_540 -4380_77986,294,4380_42859,University Hospital,80694-00018-1,0,4380_7778208_2160205,4380_540 -4380_77986,295,4380_42860,University Hospital,80688-00019-1,0,4380_7778208_2160205,4380_540 -4380_77986,293,4380_42861,University Hospital,80686-00017-1,0,4380_7778208_2160205,4380_540 -4380_77986,296,4380_42862,University Hospital,80894-00021-1,0,4380_7778208_2160212,4380_541 -4380_77986,285,4380_42869,University Hospital,80283-00009-1,0,4380_7778208_2160201,4380_540 -4380_77986,286,4380_42870,University Hospital,80281-00010-1,0,4380_7778208_2160201,4380_540 -4380_77986,288,4380_42871,University Hospital,80277-00011-1,0,4380_7778208_2160201,4380_540 -4380_77986,287,4380_42872,University Hospital,80279-00012-1,0,4380_7778208_2160201,4380_540 -4380_77986,291,4380_42873,University Hospital,81008-00013-1,0,4380_7778208_2160216,4380_541 -4380_77986,289,4380_42874,University Hospital,80275-00014-1,0,4380_7778208_2160201,4380_540 -4380_77986,292,4380_42875,University Hospital,80282-00016-1,0,4380_7778208_2160201,4380_540 -4380_77986,290,4380_42876,University Hospital,80284-00015-1,0,4380_7778208_2160201,4380_540 -4380_77986,294,4380_42877,University Hospital,80280-00018-1,0,4380_7778208_2160201,4380_540 -4380_77986,295,4380_42878,University Hospital,80276-00019-1,0,4380_7778208_2160201,4380_540 -4380_77986,293,4380_42879,University Hospital,80278-00017-1,0,4380_7778208_2160201,4380_540 -4380_77948,297,4380_4288,Dublin,1333-00008-1,1,4380_7778208_1030102,4380_42 -4380_77986,296,4380_42880,University Hospital,81009-00021-1,0,4380_7778208_2160216,4380_541 -4380_77986,297,4380_42882,University Hospital,80859-00008-1,0,4380_7778208_2160211,4380_540 -4380_77986,285,4380_42889,University Hospital,80829-00009-1,0,4380_7778208_2160206,4380_540 -4380_77948,291,4380_4289,Dublin,1585-00013-1,1,4380_7778208_1030105,4380_43 -4380_77986,286,4380_42890,University Hospital,80831-00010-1,0,4380_7778208_2160206,4380_540 -4380_77986,288,4380_42891,University Hospital,80827-00011-1,0,4380_7778208_2160206,4380_540 -4380_77986,287,4380_42892,University Hospital,80833-00012-1,0,4380_7778208_2160206,4380_540 -4380_77986,291,4380_42893,University Hospital,80956-00013-1,0,4380_7778208_2160214,4380_541 -4380_77986,289,4380_42894,University Hospital,80825-00014-1,0,4380_7778208_2160206,4380_540 -4380_77986,292,4380_42895,University Hospital,80832-00016-1,0,4380_7778208_2160206,4380_540 -4380_77986,290,4380_42896,University Hospital,80830-00015-1,0,4380_7778208_2160206,4380_540 -4380_77986,294,4380_42897,University Hospital,80834-00018-1,0,4380_7778208_2160206,4380_540 -4380_77986,295,4380_42898,University Hospital,80826-00019-1,0,4380_7778208_2160206,4380_540 -4380_77986,293,4380_42899,University Hospital,80828-00017-1,0,4380_7778208_2160206,4380_540 -4380_77946,286,4380_429,Drogheda,50407-00010-1,1,4380_7778208_1000914,4380_6 -4380_77948,296,4380_4290,Dublin,52030-00021-1,1,4380_7778208_1030105,4380_43 -4380_77986,296,4380_42900,University Hospital,80957-00021-1,0,4380_7778208_2160214,4380_541 -4380_77986,285,4380_42907,University Hospital,80575-00009-1,0,4380_7778208_2160204,4380_540 -4380_77986,286,4380_42908,University Hospital,80583-00010-1,0,4380_7778208_2160204,4380_540 -4380_77986,288,4380_42909,University Hospital,80579-00011-1,0,4380_7778208_2160204,4380_540 -4380_77948,285,4380_4291,Dublin,1275-00009-1,1,4380_7778208_1030102,4380_42 -4380_77986,287,4380_42910,University Hospital,80581-00012-1,0,4380_7778208_2160204,4380_540 -4380_77986,291,4380_42911,University Hospital,80984-00013-1,0,4380_7778208_2160215,4380_541 -4380_77986,289,4380_42912,University Hospital,80577-00014-1,0,4380_7778208_2160204,4380_540 -4380_77986,292,4380_42913,University Hospital,80584-00016-1,0,4380_7778208_2160204,4380_540 -4380_77986,290,4380_42914,University Hospital,80576-00015-1,0,4380_7778208_2160204,4380_540 -4380_77986,294,4380_42915,University Hospital,80582-00018-1,0,4380_7778208_2160204,4380_540 -4380_77986,295,4380_42916,University Hospital,80578-00019-1,0,4380_7778208_2160204,4380_540 -4380_77986,293,4380_42917,University Hospital,80580-00017-1,0,4380_7778208_2160204,4380_540 -4380_77986,296,4380_42918,University Hospital,80985-00021-1,0,4380_7778208_2160215,4380_541 -4380_77948,286,4380_4292,Dublin,1285-00010-1,1,4380_7778208_1030102,4380_42 -4380_77986,297,4380_42920,University Hospital,80898-00008-1,0,4380_7778208_2160212,4380_540 -4380_77986,285,4380_42927,University Hospital,80705-00009-1,0,4380_7778208_2160205,4380_540 -4380_77986,286,4380_42928,University Hospital,80713-00010-1,0,4380_7778208_2160205,4380_540 -4380_77986,288,4380_42929,University Hospital,80711-00011-1,0,4380_7778208_2160205,4380_540 -4380_77948,288,4380_4293,Dublin,1295-00011-1,1,4380_7778208_1030102,4380_42 -4380_77986,287,4380_42930,University Hospital,80707-00012-1,0,4380_7778208_2160205,4380_540 -4380_77986,291,4380_42931,University Hospital,80899-00013-1,0,4380_7778208_2160212,4380_541 -4380_77986,289,4380_42932,University Hospital,80709-00014-1,0,4380_7778208_2160205,4380_540 -4380_77986,292,4380_42933,University Hospital,80714-00016-1,0,4380_7778208_2160205,4380_540 -4380_77986,290,4380_42934,University Hospital,80706-00015-1,0,4380_7778208_2160205,4380_540 -4380_77986,294,4380_42935,University Hospital,80708-00018-1,0,4380_7778208_2160205,4380_540 -4380_77986,295,4380_42936,University Hospital,80710-00019-1,0,4380_7778208_2160205,4380_540 -4380_77986,293,4380_42937,University Hospital,80712-00017-1,0,4380_7778208_2160205,4380_540 -4380_77986,296,4380_42938,University Hospital,80900-00021-1,0,4380_7778208_2160212,4380_541 -4380_77948,287,4380_4294,Dublin,1305-00012-1,1,4380_7778208_1030102,4380_42 -4380_77986,285,4380_42945,Monkstown,80171-00009-1,1,4380_7778208_2160201,4380_542 -4380_77986,286,4380_42946,Monkstown,80169-00010-1,1,4380_7778208_2160201,4380_542 -4380_77986,288,4380_42947,Monkstown,80165-00011-1,1,4380_7778208_2160201,4380_542 -4380_77986,287,4380_42948,Monkstown,80173-00012-1,1,4380_7778208_2160201,4380_542 -4380_77986,291,4380_42949,Monkstown,80847-00013-1,1,4380_7778208_2160211,4380_543 -4380_77948,289,4380_4295,Dublin,1265-00014-1,1,4380_7778208_1030102,4380_42 -4380_77986,289,4380_42950,Monkstown,80167-00014-1,1,4380_7778208_2160201,4380_542 -4380_77986,292,4380_42951,Monkstown,80170-00016-1,1,4380_7778208_2160201,4380_542 -4380_77986,290,4380_42952,Monkstown,80172-00015-1,1,4380_7778208_2160201,4380_542 -4380_77986,294,4380_42953,Monkstown,80174-00018-1,1,4380_7778208_2160201,4380_542 -4380_77986,295,4380_42954,Monkstown,80168-00019-1,1,4380_7778208_2160201,4380_542 -4380_77986,293,4380_42955,Monkstown,80166-00017-1,1,4380_7778208_2160201,4380_542 -4380_77986,296,4380_42956,Monkstown,80848-00021-1,1,4380_7778208_2160211,4380_543 -4380_77948,290,4380_4296,Dublin,51846-00015-1,1,4380_7778208_1030102,4380_42 -4380_77986,285,4380_42963,Monkstown,80307-00009-1,1,4380_7778208_2160202,4380_542 -4380_77986,286,4380_42964,Monkstown,80313-00010-1,1,4380_7778208_2160202,4380_542 -4380_77986,288,4380_42965,Monkstown,80309-00011-1,1,4380_7778208_2160202,4380_542 -4380_77986,287,4380_42966,Monkstown,80311-00012-1,1,4380_7778208_2160202,4380_542 -4380_77986,291,4380_42967,Monkstown,80863-00013-1,1,4380_7778208_2160212,4380_543 -4380_77986,289,4380_42968,Monkstown,80305-00014-1,1,4380_7778208_2160202,4380_542 -4380_77986,292,4380_42969,Monkstown,80314-00016-1,1,4380_7778208_2160202,4380_542 -4380_77948,292,4380_4297,Dublin,51844-00016-1,1,4380_7778208_1030102,4380_42 -4380_77986,290,4380_42970,Monkstown,80308-00015-1,1,4380_7778208_2160202,4380_542 -4380_77986,294,4380_42971,Monkstown,80312-00018-1,1,4380_7778208_2160202,4380_542 -4380_77986,295,4380_42972,Monkstown,80306-00019-1,1,4380_7778208_2160202,4380_542 -4380_77986,293,4380_42973,Monkstown,80310-00017-1,1,4380_7778208_2160202,4380_542 -4380_77986,296,4380_42974,Monkstown,80864-00021-1,1,4380_7778208_2160212,4380_543 -4380_77948,293,4380_4298,Dublin,51847-00017-1,1,4380_7778208_1030102,4380_42 -4380_77986,285,4380_42981,Monkstown,80715-00009-1,1,4380_7778208_2160206,4380_542 -4380_77986,286,4380_42982,Monkstown,80721-00010-1,1,4380_7778208_2160206,4380_542 -4380_77986,288,4380_42983,Monkstown,80717-00011-1,1,4380_7778208_2160206,4380_542 -4380_77986,287,4380_42984,Monkstown,80719-00012-1,1,4380_7778208_2160206,4380_542 -4380_77986,291,4380_42985,Monkstown,80986-00013-1,1,4380_7778208_2160216,4380_543 -4380_77986,289,4380_42986,Monkstown,80723-00014-1,1,4380_7778208_2160206,4380_542 -4380_77986,292,4380_42987,Monkstown,80722-00016-1,1,4380_7778208_2160206,4380_542 -4380_77986,290,4380_42988,Monkstown,80716-00015-1,1,4380_7778208_2160206,4380_542 -4380_77986,294,4380_42989,Monkstown,80720-00018-1,1,4380_7778208_2160206,4380_542 -4380_77948,294,4380_4299,Dublin,51845-00018-1,1,4380_7778208_1030102,4380_42 -4380_77986,295,4380_42990,Monkstown,80724-00019-1,1,4380_7778208_2160206,4380_542 -4380_77986,293,4380_42991,Monkstown,80718-00017-1,1,4380_7778208_2160206,4380_542 -4380_77986,296,4380_42992,Monkstown,80987-00021-1,1,4380_7778208_2160216,4380_543 -4380_77986,285,4380_42999,Monkstown,80357-00009-1,1,4380_7778208_2160203,4380_542 -4380_77946,297,4380_430,Drogheda,50243-00008-1,1,4380_7778208_1000910,4380_8 -4380_77948,295,4380_4300,Dublin,51848-00019-1,1,4380_7778208_1030102,4380_42 -4380_77986,286,4380_43000,Monkstown,80361-00010-1,1,4380_7778208_2160203,4380_542 -4380_77986,288,4380_43001,Monkstown,80363-00011-1,1,4380_7778208_2160203,4380_542 -4380_77986,287,4380_43002,Monkstown,80359-00012-1,1,4380_7778208_2160203,4380_542 -4380_77986,291,4380_43003,Monkstown,80903-00013-1,1,4380_7778208_2160213,4380_543 -4380_77986,289,4380_43004,Monkstown,80355-00014-1,1,4380_7778208_2160203,4380_542 -4380_77986,292,4380_43005,Monkstown,80362-00016-1,1,4380_7778208_2160203,4380_542 -4380_77986,290,4380_43006,Monkstown,80358-00015-1,1,4380_7778208_2160203,4380_542 -4380_77986,294,4380_43007,Monkstown,80360-00018-1,1,4380_7778208_2160203,4380_542 -4380_77986,295,4380_43008,Monkstown,80356-00019-1,1,4380_7778208_2160203,4380_542 -4380_77986,293,4380_43009,Monkstown,80364-00017-1,1,4380_7778208_2160203,4380_542 -4380_77986,296,4380_43010,Monkstown,80904-00021-1,1,4380_7778208_2160213,4380_543 -4380_77986,285,4380_43017,Monkstown,80469-00009-1,1,4380_7778208_2160204,4380_542 -4380_77986,286,4380_43018,Monkstown,80471-00010-1,1,4380_7778208_2160204,4380_542 -4380_77986,288,4380_43019,Monkstown,80467-00011-1,1,4380_7778208_2160204,4380_542 -4380_77986,287,4380_43020,Monkstown,80465-00012-1,1,4380_7778208_2160204,4380_542 -4380_77986,291,4380_43021,Monkstown,80934-00013-1,1,4380_7778208_2160214,4380_543 -4380_77986,289,4380_43022,Monkstown,80473-00014-1,1,4380_7778208_2160204,4380_542 -4380_77986,292,4380_43023,Monkstown,80472-00016-1,1,4380_7778208_2160204,4380_542 -4380_77986,290,4380_43024,Monkstown,80470-00015-1,1,4380_7778208_2160204,4380_542 -4380_77986,294,4380_43025,Monkstown,80466-00018-1,1,4380_7778208_2160204,4380_542 -4380_77986,295,4380_43026,Monkstown,80474-00019-1,1,4380_7778208_2160204,4380_542 -4380_77986,293,4380_43027,Monkstown,80468-00017-1,1,4380_7778208_2160204,4380_542 -4380_77986,296,4380_43028,Monkstown,80935-00021-1,1,4380_7778208_2160214,4380_543 -4380_77986,297,4380_43030,Monkstown,80867-00008-1,1,4380_7778208_2160212,4380_542 -4380_77986,285,4380_43037,Monkstown,80601-00009-1,1,4380_7778208_2160205,4380_542 -4380_77986,286,4380_43038,Monkstown,80597-00010-1,1,4380_7778208_2160205,4380_542 -4380_77986,288,4380_43039,Monkstown,80599-00011-1,1,4380_7778208_2160205,4380_542 -4380_77986,287,4380_43040,Monkstown,80603-00012-1,1,4380_7778208_2160205,4380_542 -4380_77986,291,4380_43041,Monkstown,80962-00013-1,1,4380_7778208_2160215,4380_543 -4380_77986,289,4380_43042,Monkstown,80595-00014-1,1,4380_7778208_2160205,4380_542 -4380_77986,292,4380_43043,Monkstown,80598-00016-1,1,4380_7778208_2160205,4380_542 -4380_77986,290,4380_43044,Monkstown,80602-00015-1,1,4380_7778208_2160205,4380_542 -4380_77986,294,4380_43045,Monkstown,80604-00018-1,1,4380_7778208_2160205,4380_542 -4380_77986,295,4380_43046,Monkstown,80596-00019-1,1,4380_7778208_2160205,4380_542 -4380_77986,293,4380_43047,Monkstown,80600-00017-1,1,4380_7778208_2160205,4380_542 -4380_77986,296,4380_43048,Monkstown,80963-00021-1,1,4380_7778208_2160215,4380_543 -4380_77986,285,4380_43055,Monkstown,80191-00009-1,1,4380_7778208_2160201,4380_542 -4380_77986,286,4380_43056,Monkstown,80187-00010-1,1,4380_7778208_2160201,4380_542 -4380_77986,288,4380_43057,Monkstown,80185-00011-1,1,4380_7778208_2160201,4380_542 -4380_77986,287,4380_43058,Monkstown,80193-00012-1,1,4380_7778208_2160201,4380_542 -4380_77986,291,4380_43059,Monkstown,80868-00013-1,1,4380_7778208_2160212,4380_543 -4380_77986,289,4380_43060,Monkstown,80189-00014-1,1,4380_7778208_2160201,4380_542 -4380_77986,292,4380_43061,Monkstown,80188-00016-1,1,4380_7778208_2160201,4380_542 -4380_77986,290,4380_43062,Monkstown,80192-00015-1,1,4380_7778208_2160201,4380_542 -4380_77986,294,4380_43063,Monkstown,80194-00018-1,1,4380_7778208_2160201,4380_542 -4380_77986,295,4380_43064,Monkstown,80190-00019-1,1,4380_7778208_2160201,4380_542 -4380_77986,293,4380_43065,Monkstown,80186-00017-1,1,4380_7778208_2160201,4380_542 -4380_77986,296,4380_43066,Monkstown,80869-00021-1,1,4380_7778208_2160212,4380_543 -4380_77986,297,4380_43068,Monkstown,80907-00008-1,1,4380_7778208_2160213,4380_542 -4380_77948,291,4380_4307,Dublin,1667-00013-1,1,4380_7778208_1030106,4380_42 -4380_77986,285,4380_43075,Monkstown,80737-00009-1,1,4380_7778208_2160206,4380_542 -4380_77986,286,4380_43076,Monkstown,80739-00010-1,1,4380_7778208_2160206,4380_542 -4380_77986,288,4380_43077,Monkstown,80735-00011-1,1,4380_7778208_2160206,4380_542 -4380_77986,287,4380_43078,Monkstown,80741-00012-1,1,4380_7778208_2160206,4380_542 -4380_77986,291,4380_43079,Monkstown,80990-00013-1,1,4380_7778208_2160216,4380_543 -4380_77948,296,4380_4308,Dublin,52076-00021-1,1,4380_7778208_1030106,4380_42 -4380_77986,289,4380_43080,Monkstown,80743-00014-1,1,4380_7778208_2160206,4380_542 -4380_77986,292,4380_43081,Monkstown,80740-00016-1,1,4380_7778208_2160206,4380_542 -4380_77986,290,4380_43082,Monkstown,80738-00015-1,1,4380_7778208_2160206,4380_542 -4380_77986,294,4380_43083,Monkstown,80742-00018-1,1,4380_7778208_2160206,4380_542 -4380_77986,295,4380_43084,Monkstown,80744-00019-1,1,4380_7778208_2160206,4380_542 -4380_77986,293,4380_43085,Monkstown,80736-00017-1,1,4380_7778208_2160206,4380_542 -4380_77986,296,4380_43086,Monkstown,80991-00021-1,1,4380_7778208_2160216,4380_543 -4380_77948,285,4380_4309,Dublin,1185-00009-1,1,4380_7778208_1030101,4380_42 -4380_77986,285,4380_43093,Monkstown,80375-00009-1,1,4380_7778208_2160203,4380_542 -4380_77986,286,4380_43094,Monkstown,80377-00010-1,1,4380_7778208_2160203,4380_542 -4380_77986,288,4380_43095,Monkstown,80383-00011-1,1,4380_7778208_2160203,4380_542 -4380_77986,287,4380_43096,Monkstown,80379-00012-1,1,4380_7778208_2160203,4380_542 -4380_77986,291,4380_43097,Monkstown,80908-00013-1,1,4380_7778208_2160213,4380_543 -4380_77986,289,4380_43098,Monkstown,80381-00014-1,1,4380_7778208_2160203,4380_542 -4380_77986,292,4380_43099,Monkstown,80378-00016-1,1,4380_7778208_2160203,4380_542 -4380_77946,287,4380_431,Drogheda,50413-00012-1,1,4380_7778208_1000914,4380_6 -4380_77948,286,4380_4310,Dublin,1195-00010-1,1,4380_7778208_1030101,4380_42 -4380_77986,290,4380_43100,Monkstown,80376-00015-1,1,4380_7778208_2160203,4380_542 -4380_77986,294,4380_43101,Monkstown,80380-00018-1,1,4380_7778208_2160203,4380_542 -4380_77986,295,4380_43102,Monkstown,80382-00019-1,1,4380_7778208_2160203,4380_542 -4380_77986,293,4380_43103,Monkstown,80384-00017-1,1,4380_7778208_2160203,4380_542 -4380_77986,296,4380_43104,Monkstown,80909-00021-1,1,4380_7778208_2160213,4380_543 -4380_77986,297,4380_43106,Monkstown,80852-00008-1,1,4380_7778208_2160211,4380_542 -4380_77948,288,4380_4311,Dublin,1205-00011-1,1,4380_7778208_1030101,4380_42 -4380_77986,285,4380_43113,Monkstown,80489-00009-1,1,4380_7778208_2160204,4380_542 -4380_77986,286,4380_43114,Monkstown,80493-00010-1,1,4380_7778208_2160204,4380_542 -4380_77986,288,4380_43115,Monkstown,80485-00011-1,1,4380_7778208_2160204,4380_542 -4380_77986,287,4380_43116,Monkstown,80487-00012-1,1,4380_7778208_2160204,4380_542 -4380_77986,291,4380_43117,Monkstown,80938-00013-1,1,4380_7778208_2160214,4380_543 -4380_77986,289,4380_43118,Monkstown,80491-00014-1,1,4380_7778208_2160204,4380_542 -4380_77986,292,4380_43119,Monkstown,80494-00016-1,1,4380_7778208_2160204,4380_542 -4380_77948,287,4380_4312,Dublin,1215-00012-1,1,4380_7778208_1030101,4380_42 -4380_77986,290,4380_43120,Monkstown,80490-00015-1,1,4380_7778208_2160204,4380_542 -4380_77986,294,4380_43121,Monkstown,80488-00018-1,1,4380_7778208_2160204,4380_542 -4380_77986,295,4380_43122,Monkstown,80492-00019-1,1,4380_7778208_2160204,4380_542 -4380_77986,293,4380_43123,Monkstown,80486-00017-1,1,4380_7778208_2160204,4380_542 -4380_77986,296,4380_43124,Monkstown,80939-00021-1,1,4380_7778208_2160214,4380_543 -4380_77948,289,4380_4313,Dublin,1175-00014-1,1,4380_7778208_1030101,4380_42 -4380_77986,285,4380_43131,Monkstown,80621-00009-1,1,4380_7778208_2160205,4380_542 -4380_77986,286,4380_43132,Monkstown,80615-00010-1,1,4380_7778208_2160205,4380_542 -4380_77986,288,4380_43133,Monkstown,80617-00011-1,1,4380_7778208_2160205,4380_542 -4380_77986,287,4380_43134,Monkstown,80623-00012-1,1,4380_7778208_2160205,4380_542 -4380_77986,291,4380_43135,Monkstown,80966-00013-1,1,4380_7778208_2160215,4380_543 -4380_77986,289,4380_43136,Monkstown,80619-00014-1,1,4380_7778208_2160205,4380_542 -4380_77986,292,4380_43137,Monkstown,80616-00016-1,1,4380_7778208_2160205,4380_542 -4380_77986,290,4380_43138,Monkstown,80622-00015-1,1,4380_7778208_2160205,4380_542 -4380_77986,294,4380_43139,Monkstown,80624-00018-1,1,4380_7778208_2160205,4380_542 -4380_77948,290,4380_4314,Dublin,51788-00015-1,1,4380_7778208_1030101,4380_42 -4380_77986,295,4380_43140,Monkstown,80620-00019-1,1,4380_7778208_2160205,4380_542 -4380_77986,293,4380_43141,Monkstown,80618-00017-1,1,4380_7778208_2160205,4380_542 -4380_77986,296,4380_43142,Monkstown,80967-00021-1,1,4380_7778208_2160215,4380_543 -4380_77986,297,4380_43144,Monkstown,80873-00008-1,1,4380_7778208_2160212,4380_542 -4380_77948,292,4380_4315,Dublin,51785-00016-1,1,4380_7778208_1030101,4380_42 -4380_77986,285,4380_43151,Monkstown,80209-00009-1,1,4380_7778208_2160201,4380_542 -4380_77986,286,4380_43152,Monkstown,80213-00010-1,1,4380_7778208_2160201,4380_542 -4380_77986,288,4380_43153,Monkstown,80207-00011-1,1,4380_7778208_2160201,4380_542 -4380_77986,287,4380_43154,Monkstown,80211-00012-1,1,4380_7778208_2160201,4380_542 -4380_77986,291,4380_43155,Monkstown,80874-00013-1,1,4380_7778208_2160212,4380_543 -4380_77986,289,4380_43156,Monkstown,80205-00014-1,1,4380_7778208_2160201,4380_542 -4380_77986,292,4380_43157,Monkstown,80214-00016-1,1,4380_7778208_2160201,4380_542 -4380_77986,290,4380_43158,Monkstown,80210-00015-1,1,4380_7778208_2160201,4380_542 -4380_77986,294,4380_43159,Monkstown,80212-00018-1,1,4380_7778208_2160201,4380_542 -4380_77948,293,4380_4316,Dublin,51787-00017-1,1,4380_7778208_1030101,4380_42 -4380_77986,295,4380_43160,Monkstown,80206-00019-1,1,4380_7778208_2160201,4380_542 -4380_77986,293,4380_43161,Monkstown,80208-00017-1,1,4380_7778208_2160201,4380_542 -4380_77986,296,4380_43162,Monkstown,80875-00021-1,1,4380_7778208_2160212,4380_543 -4380_77986,285,4380_43169,Monkstown,80761-00009-1,1,4380_7778208_2160206,4380_542 -4380_77948,294,4380_4317,Dublin,51789-00018-1,1,4380_7778208_1030101,4380_42 -4380_77986,286,4380_43170,Monkstown,80755-00010-1,1,4380_7778208_2160206,4380_542 -4380_77986,288,4380_43171,Monkstown,80763-00011-1,1,4380_7778208_2160206,4380_542 -4380_77986,287,4380_43172,Monkstown,80759-00012-1,1,4380_7778208_2160206,4380_542 -4380_77986,291,4380_43173,Monkstown,80994-00013-1,1,4380_7778208_2160216,4380_543 -4380_77986,289,4380_43174,Monkstown,80757-00014-1,1,4380_7778208_2160206,4380_542 -4380_77986,292,4380_43175,Monkstown,80756-00016-1,1,4380_7778208_2160206,4380_542 -4380_77986,290,4380_43176,Monkstown,80762-00015-1,1,4380_7778208_2160206,4380_542 -4380_77986,294,4380_43177,Monkstown,80760-00018-1,1,4380_7778208_2160206,4380_542 -4380_77986,295,4380_43178,Monkstown,80758-00019-1,1,4380_7778208_2160206,4380_542 -4380_77986,293,4380_43179,Monkstown,80764-00017-1,1,4380_7778208_2160206,4380_542 -4380_77948,295,4380_4318,Dublin,51786-00019-1,1,4380_7778208_1030101,4380_42 -4380_77986,296,4380_43180,Monkstown,80995-00021-1,1,4380_7778208_2160216,4380_543 -4380_77986,297,4380_43182,Monkstown,80913-00008-1,1,4380_7778208_2160213,4380_542 -4380_77986,285,4380_43189,Monkstown,80399-00009-1,1,4380_7778208_2160203,4380_542 -4380_77986,286,4380_43190,Monkstown,80401-00010-1,1,4380_7778208_2160203,4380_542 -4380_77986,288,4380_43191,Monkstown,80395-00011-1,1,4380_7778208_2160203,4380_542 -4380_77986,287,4380_43192,Monkstown,80397-00012-1,1,4380_7778208_2160203,4380_542 -4380_77986,291,4380_43193,Monkstown,80914-00013-1,1,4380_7778208_2160213,4380_543 -4380_77986,289,4380_43194,Monkstown,80403-00014-1,1,4380_7778208_2160203,4380_542 -4380_77986,292,4380_43195,Monkstown,80402-00016-1,1,4380_7778208_2160203,4380_542 -4380_77986,290,4380_43196,Monkstown,80400-00015-1,1,4380_7778208_2160203,4380_542 -4380_77986,294,4380_43197,Monkstown,80398-00018-1,1,4380_7778208_2160203,4380_542 -4380_77986,295,4380_43198,Monkstown,80404-00019-1,1,4380_7778208_2160203,4380_542 -4380_77986,293,4380_43199,Monkstown,80396-00017-1,1,4380_7778208_2160203,4380_542 -4380_77946,288,4380_432,Drogheda,50411-00011-1,1,4380_7778208_1000914,4380_6 -4380_77986,296,4380_43200,Monkstown,80915-00021-1,1,4380_7778208_2160213,4380_543 -4380_77986,285,4380_43207,Monkstown,80507-00009-1,1,4380_7778208_2160204,4380_542 -4380_77986,286,4380_43208,Monkstown,80509-00010-1,1,4380_7778208_2160204,4380_542 -4380_77986,288,4380_43209,Monkstown,80505-00011-1,1,4380_7778208_2160204,4380_542 -4380_77986,287,4380_43210,Monkstown,80511-00012-1,1,4380_7778208_2160204,4380_542 -4380_77986,291,4380_43211,Monkstown,80942-00013-1,1,4380_7778208_2160214,4380_543 -4380_77986,289,4380_43212,Monkstown,80513-00014-1,1,4380_7778208_2160204,4380_542 -4380_77986,292,4380_43213,Monkstown,80510-00016-1,1,4380_7778208_2160204,4380_542 -4380_77986,290,4380_43214,Monkstown,80508-00015-1,1,4380_7778208_2160204,4380_542 -4380_77986,294,4380_43215,Monkstown,80512-00018-1,1,4380_7778208_2160204,4380_542 -4380_77986,295,4380_43216,Monkstown,80514-00019-1,1,4380_7778208_2160204,4380_542 -4380_77986,293,4380_43217,Monkstown,80506-00017-1,1,4380_7778208_2160204,4380_542 -4380_77986,296,4380_43218,Monkstown,80943-00021-1,1,4380_7778208_2160214,4380_543 -4380_77986,297,4380_43220,Monkstown,80854-00008-1,1,4380_7778208_2160211,4380_542 -4380_77986,285,4380_43227,Monkstown,80643-00009-1,1,4380_7778208_2160205,4380_542 -4380_77986,286,4380_43228,Monkstown,80641-00010-1,1,4380_7778208_2160205,4380_542 -4380_77986,288,4380_43229,Monkstown,80635-00011-1,1,4380_7778208_2160205,4380_542 -4380_77986,287,4380_43230,Monkstown,80639-00012-1,1,4380_7778208_2160205,4380_542 -4380_77986,291,4380_43231,Monkstown,80970-00013-1,1,4380_7778208_2160215,4380_543 -4380_77986,289,4380_43232,Monkstown,80637-00014-1,1,4380_7778208_2160205,4380_542 -4380_77986,292,4380_43233,Monkstown,80642-00016-1,1,4380_7778208_2160205,4380_542 -4380_77986,290,4380_43234,Monkstown,80644-00015-1,1,4380_7778208_2160205,4380_542 -4380_77986,294,4380_43235,Monkstown,80640-00018-1,1,4380_7778208_2160205,4380_542 -4380_77986,295,4380_43236,Monkstown,80638-00019-1,1,4380_7778208_2160205,4380_542 -4380_77986,293,4380_43237,Monkstown,80636-00017-1,1,4380_7778208_2160205,4380_542 -4380_77986,296,4380_43238,Monkstown,80971-00021-1,1,4380_7778208_2160215,4380_543 -4380_77986,285,4380_43245,Monkstown,80231-00009-1,1,4380_7778208_2160201,4380_542 -4380_77986,286,4380_43246,Monkstown,80227-00010-1,1,4380_7778208_2160201,4380_542 -4380_77986,288,4380_43247,Monkstown,80225-00011-1,1,4380_7778208_2160201,4380_542 -4380_77986,287,4380_43248,Monkstown,80233-00012-1,1,4380_7778208_2160201,4380_542 -4380_77986,291,4380_43249,Monkstown,80879-00013-1,1,4380_7778208_2160212,4380_543 -4380_77986,289,4380_43250,Monkstown,80229-00014-1,1,4380_7778208_2160201,4380_542 -4380_77986,292,4380_43251,Monkstown,80228-00016-1,1,4380_7778208_2160201,4380_542 -4380_77986,290,4380_43252,Monkstown,80232-00015-1,1,4380_7778208_2160201,4380_542 -4380_77986,294,4380_43253,Monkstown,80234-00018-1,1,4380_7778208_2160201,4380_542 -4380_77986,295,4380_43254,Monkstown,80230-00019-1,1,4380_7778208_2160201,4380_542 -4380_77986,293,4380_43255,Monkstown,80226-00017-1,1,4380_7778208_2160201,4380_542 -4380_77986,296,4380_43256,Monkstown,80880-00021-1,1,4380_7778208_2160212,4380_543 -4380_77986,297,4380_43258,Monkstown,80881-00008-1,1,4380_7778208_2160212,4380_542 -4380_77986,285,4380_43265,Monkstown,80325-00009-1,1,4380_7778208_2160202,4380_542 -4380_77986,286,4380_43266,Monkstown,80329-00010-1,1,4380_7778208_2160202,4380_542 -4380_77986,288,4380_43267,Monkstown,80327-00011-1,1,4380_7778208_2160202,4380_542 -4380_77986,287,4380_43268,Monkstown,80331-00012-1,1,4380_7778208_2160202,4380_542 -4380_77986,291,4380_43269,Monkstown,80998-00013-1,1,4380_7778208_2160216,4380_543 -4380_77986,289,4380_43270,Monkstown,80333-00014-1,1,4380_7778208_2160202,4380_542 -4380_77986,292,4380_43271,Monkstown,80330-00016-1,1,4380_7778208_2160202,4380_542 -4380_77986,290,4380_43272,Monkstown,80326-00015-1,1,4380_7778208_2160202,4380_542 -4380_77986,294,4380_43273,Monkstown,80332-00018-1,1,4380_7778208_2160202,4380_542 -4380_77986,295,4380_43274,Monkstown,80334-00019-1,1,4380_7778208_2160202,4380_542 -4380_77986,293,4380_43275,Monkstown,80328-00017-1,1,4380_7778208_2160202,4380_542 -4380_77986,296,4380_43276,Monkstown,80999-00021-1,1,4380_7778208_2160216,4380_543 -4380_77986,285,4380_43283,Monkstown,80779-00009-1,1,4380_7778208_2160206,4380_542 -4380_77986,286,4380_43284,Monkstown,80777-00010-1,1,4380_7778208_2160206,4380_542 -4380_77986,288,4380_43285,Monkstown,80783-00011-1,1,4380_7778208_2160206,4380_542 -4380_77986,287,4380_43286,Monkstown,80775-00012-1,1,4380_7778208_2160206,4380_542 -4380_77986,291,4380_43287,Monkstown,80919-00013-1,1,4380_7778208_2160213,4380_543 -4380_77986,289,4380_43288,Monkstown,80781-00014-1,1,4380_7778208_2160206,4380_542 -4380_77986,292,4380_43289,Monkstown,80778-00016-1,1,4380_7778208_2160206,4380_542 -4380_77986,290,4380_43290,Monkstown,80780-00015-1,1,4380_7778208_2160206,4380_542 -4380_77986,294,4380_43291,Monkstown,80776-00018-1,1,4380_7778208_2160206,4380_542 -4380_77986,295,4380_43292,Monkstown,80782-00019-1,1,4380_7778208_2160206,4380_542 -4380_77986,293,4380_43293,Monkstown,80784-00017-1,1,4380_7778208_2160206,4380_542 -4380_77986,296,4380_43294,Monkstown,80920-00021-1,1,4380_7778208_2160213,4380_543 -4380_77986,297,4380_43296,Monkstown,80921-00008-1,1,4380_7778208_2160213,4380_542 -4380_77946,289,4380_433,Drogheda,50415-00014-1,1,4380_7778208_1000914,4380_6 -4380_77986,285,4380_43303,Monkstown,80415-00009-1,1,4380_7778208_2160203,4380_542 -4380_77986,286,4380_43304,Monkstown,80423-00010-1,1,4380_7778208_2160203,4380_542 -4380_77986,288,4380_43305,Monkstown,80417-00011-1,1,4380_7778208_2160203,4380_542 -4380_77986,287,4380_43306,Monkstown,80421-00012-1,1,4380_7778208_2160203,4380_542 -4380_77986,291,4380_43307,Monkstown,80946-00013-1,1,4380_7778208_2160214,4380_543 -4380_77986,289,4380_43308,Monkstown,80419-00014-1,1,4380_7778208_2160203,4380_542 -4380_77986,292,4380_43309,Monkstown,80424-00016-1,1,4380_7778208_2160203,4380_542 -4380_77948,285,4380_4331,Dublin,1367-00009-1,1,4380_7778208_1030103,4380_43 -4380_77986,290,4380_43310,Monkstown,80416-00015-1,1,4380_7778208_2160203,4380_542 -4380_77986,294,4380_43311,Monkstown,80422-00018-1,1,4380_7778208_2160203,4380_542 -4380_77986,295,4380_43312,Monkstown,80420-00019-1,1,4380_7778208_2160203,4380_542 -4380_77986,293,4380_43313,Monkstown,80418-00017-1,1,4380_7778208_2160203,4380_542 -4380_77986,296,4380_43314,Monkstown,80947-00021-1,1,4380_7778208_2160214,4380_543 -4380_77948,286,4380_4332,Dublin,1377-00010-1,1,4380_7778208_1030103,4380_43 -4380_77986,285,4380_43321,Monkstown,80527-00009-1,1,4380_7778208_2160204,4380_542 -4380_77986,286,4380_43322,Monkstown,80529-00010-1,1,4380_7778208_2160204,4380_542 -4380_77986,288,4380_43323,Monkstown,80533-00011-1,1,4380_7778208_2160204,4380_542 -4380_77986,287,4380_43324,Monkstown,80525-00012-1,1,4380_7778208_2160204,4380_542 -4380_77986,291,4380_43325,Monkstown,80974-00013-1,1,4380_7778208_2160215,4380_543 -4380_77986,289,4380_43326,Monkstown,80531-00014-1,1,4380_7778208_2160204,4380_542 -4380_77986,292,4380_43327,Monkstown,80530-00016-1,1,4380_7778208_2160204,4380_542 -4380_77986,290,4380_43328,Monkstown,80528-00015-1,1,4380_7778208_2160204,4380_542 -4380_77986,294,4380_43329,Monkstown,80526-00018-1,1,4380_7778208_2160204,4380_542 -4380_77948,288,4380_4333,Dublin,1387-00011-1,1,4380_7778208_1030103,4380_43 -4380_77986,295,4380_43330,Monkstown,80532-00019-1,1,4380_7778208_2160204,4380_542 -4380_77986,293,4380_43331,Monkstown,80534-00017-1,1,4380_7778208_2160204,4380_542 -4380_77986,296,4380_43332,Monkstown,80975-00021-1,1,4380_7778208_2160215,4380_543 -4380_77986,297,4380_43334,Monkstown,80856-00008-1,1,4380_7778208_2160211,4380_542 -4380_77948,287,4380_4334,Dublin,1397-00012-1,1,4380_7778208_1030103,4380_43 -4380_77986,285,4380_43341,Monkstown,80661-00009-1,1,4380_7778208_2160205,4380_542 -4380_77986,286,4380_43342,Monkstown,80655-00010-1,1,4380_7778208_2160205,4380_542 -4380_77986,288,4380_43343,Monkstown,80663-00011-1,1,4380_7778208_2160205,4380_542 -4380_77986,287,4380_43344,Monkstown,80657-00012-1,1,4380_7778208_2160205,4380_542 -4380_77986,291,4380_43345,Monkstown,80885-00013-1,1,4380_7778208_2160212,4380_543 -4380_77986,289,4380_43346,Monkstown,80659-00014-1,1,4380_7778208_2160205,4380_542 -4380_77986,292,4380_43347,Monkstown,80656-00016-1,1,4380_7778208_2160205,4380_542 -4380_77986,290,4380_43348,Monkstown,80662-00015-1,1,4380_7778208_2160205,4380_542 -4380_77986,294,4380_43349,Monkstown,80658-00018-1,1,4380_7778208_2160205,4380_542 -4380_77948,289,4380_4335,Dublin,1357-00014-1,1,4380_7778208_1030103,4380_43 -4380_77986,295,4380_43350,Monkstown,80660-00019-1,1,4380_7778208_2160205,4380_542 -4380_77986,293,4380_43351,Monkstown,80664-00017-1,1,4380_7778208_2160205,4380_542 -4380_77986,296,4380_43352,Monkstown,80886-00021-1,1,4380_7778208_2160212,4380_543 -4380_77986,285,4380_43359,Monkstown,80253-00009-1,1,4380_7778208_2160201,4380_542 -4380_77948,290,4380_4336,Dublin,51906-00015-1,1,4380_7778208_1030103,4380_43 -4380_77986,286,4380_43360,Monkstown,80249-00010-1,1,4380_7778208_2160201,4380_542 -4380_77986,288,4380_43361,Monkstown,80245-00011-1,1,4380_7778208_2160201,4380_542 -4380_77986,287,4380_43362,Monkstown,80247-00012-1,1,4380_7778208_2160201,4380_542 -4380_77986,291,4380_43363,Monkstown,81002-00013-1,1,4380_7778208_2160216,4380_543 -4380_77986,289,4380_43364,Monkstown,80251-00014-1,1,4380_7778208_2160201,4380_542 -4380_77986,292,4380_43365,Monkstown,80250-00016-1,1,4380_7778208_2160201,4380_542 -4380_77986,290,4380_43366,Monkstown,80254-00015-1,1,4380_7778208_2160201,4380_542 -4380_77986,294,4380_43367,Monkstown,80248-00018-1,1,4380_7778208_2160201,4380_542 -4380_77986,295,4380_43368,Monkstown,80252-00019-1,1,4380_7778208_2160201,4380_542 -4380_77986,293,4380_43369,Monkstown,80246-00017-1,1,4380_7778208_2160201,4380_542 -4380_77948,292,4380_4337,Dublin,51905-00016-1,1,4380_7778208_1030103,4380_43 -4380_77986,296,4380_43370,Monkstown,81003-00021-1,1,4380_7778208_2160216,4380_543 -4380_77986,297,4380_43372,Monkstown,80887-00008-1,1,4380_7778208_2160212,4380_542 -4380_77986,285,4380_43379,Monkstown,80799-00009-1,1,4380_7778208_2160206,4380_542 -4380_77948,293,4380_4338,Dublin,51907-00017-1,1,4380_7778208_1030103,4380_43 -4380_77986,286,4380_43380,Monkstown,80795-00010-1,1,4380_7778208_2160206,4380_542 -4380_77986,288,4380_43381,Monkstown,80797-00011-1,1,4380_7778208_2160206,4380_542 -4380_77986,287,4380_43382,Monkstown,80803-00012-1,1,4380_7778208_2160206,4380_542 -4380_77986,291,4380_43383,Monkstown,80925-00013-1,1,4380_7778208_2160213,4380_543 -4380_77986,289,4380_43384,Monkstown,80801-00014-1,1,4380_7778208_2160206,4380_542 -4380_77986,292,4380_43385,Monkstown,80796-00016-1,1,4380_7778208_2160206,4380_542 -4380_77986,290,4380_43386,Monkstown,80800-00015-1,1,4380_7778208_2160206,4380_542 -4380_77986,294,4380_43387,Monkstown,80804-00018-1,1,4380_7778208_2160206,4380_542 -4380_77986,295,4380_43388,Monkstown,80802-00019-1,1,4380_7778208_2160206,4380_542 -4380_77986,293,4380_43389,Monkstown,80798-00017-1,1,4380_7778208_2160206,4380_542 -4380_77948,294,4380_4339,Dublin,51904-00018-1,1,4380_7778208_1030103,4380_43 -4380_77986,296,4380_43390,Monkstown,80926-00021-1,1,4380_7778208_2160213,4380_543 -4380_77986,285,4380_43397,Monkstown,80439-00009-1,1,4380_7778208_2160203,4380_542 -4380_77986,286,4380_43398,Monkstown,80437-00010-1,1,4380_7778208_2160203,4380_542 -4380_77986,288,4380_43399,Monkstown,80443-00011-1,1,4380_7778208_2160203,4380_542 -4380_77946,290,4380_434,Drogheda,50410-00015-1,1,4380_7778208_1000914,4380_6 -4380_77948,295,4380_4340,Dublin,51908-00019-1,1,4380_7778208_1030103,4380_43 -4380_77986,287,4380_43400,Monkstown,80441-00012-1,1,4380_7778208_2160203,4380_542 -4380_77986,291,4380_43401,Monkstown,80950-00013-1,1,4380_7778208_2160214,4380_543 -4380_77986,289,4380_43402,Monkstown,80435-00014-1,1,4380_7778208_2160203,4380_542 -4380_77986,292,4380_43403,Monkstown,80438-00016-1,1,4380_7778208_2160203,4380_542 -4380_77986,290,4380_43404,Monkstown,80440-00015-1,1,4380_7778208_2160203,4380_542 -4380_77986,294,4380_43405,Monkstown,80442-00018-1,1,4380_7778208_2160203,4380_542 -4380_77986,295,4380_43406,Monkstown,80436-00019-1,1,4380_7778208_2160203,4380_542 -4380_77986,293,4380_43407,Monkstown,80444-00017-1,1,4380_7778208_2160203,4380_542 -4380_77986,296,4380_43408,Monkstown,80951-00021-1,1,4380_7778208_2160214,4380_543 -4380_77948,297,4380_4341,Dublin,1429-00008-1,1,4380_7778208_1030103,4380_42 -4380_77986,297,4380_43410,Monkstown,80927-00008-1,1,4380_7778208_2160213,4380_542 -4380_77986,285,4380_43417,Monkstown,80553-00009-1,1,4380_7778208_2160204,4380_542 -4380_77986,286,4380_43418,Monkstown,80545-00010-1,1,4380_7778208_2160204,4380_542 -4380_77986,288,4380_43419,Monkstown,80547-00011-1,1,4380_7778208_2160204,4380_542 -4380_77948,291,4380_4342,Dublin,1751-00013-1,1,4380_7778208_1030107,4380_43 -4380_77986,287,4380_43420,Monkstown,80551-00012-1,1,4380_7778208_2160204,4380_542 -4380_77986,291,4380_43421,Monkstown,80978-00013-1,1,4380_7778208_2160215,4380_543 -4380_77986,289,4380_43422,Monkstown,80549-00014-1,1,4380_7778208_2160204,4380_542 -4380_77986,292,4380_43423,Monkstown,80546-00016-1,1,4380_7778208_2160204,4380_542 -4380_77986,290,4380_43424,Monkstown,80554-00015-1,1,4380_7778208_2160204,4380_542 -4380_77986,294,4380_43425,Monkstown,80552-00018-1,1,4380_7778208_2160204,4380_542 -4380_77986,295,4380_43426,Monkstown,80550-00019-1,1,4380_7778208_2160204,4380_542 -4380_77986,293,4380_43427,Monkstown,80548-00017-1,1,4380_7778208_2160204,4380_542 -4380_77986,296,4380_43428,Monkstown,80979-00021-1,1,4380_7778208_2160215,4380_543 -4380_77948,296,4380_4343,Dublin,52146-00021-1,1,4380_7778208_1030107,4380_43 -4380_77986,285,4380_43435,Monkstown,80679-00009-1,1,4380_7778208_2160205,4380_542 -4380_77986,286,4380_43436,Monkstown,80677-00010-1,1,4380_7778208_2160205,4380_542 -4380_77986,288,4380_43437,Monkstown,80681-00011-1,1,4380_7778208_2160205,4380_542 -4380_77986,287,4380_43438,Monkstown,80683-00012-1,1,4380_7778208_2160205,4380_542 -4380_77986,291,4380_43439,Monkstown,80891-00013-1,1,4380_7778208_2160212,4380_543 -4380_77948,285,4380_4344,Dublin,1465-00009-1,1,4380_7778208_1030104,4380_42 -4380_77986,289,4380_43440,Monkstown,80675-00014-1,1,4380_7778208_2160205,4380_542 -4380_77986,292,4380_43441,Monkstown,80678-00016-1,1,4380_7778208_2160205,4380_542 -4380_77986,290,4380_43442,Monkstown,80680-00015-1,1,4380_7778208_2160205,4380_542 -4380_77986,294,4380_43443,Monkstown,80684-00018-1,1,4380_7778208_2160205,4380_542 -4380_77986,295,4380_43444,Monkstown,80676-00019-1,1,4380_7778208_2160205,4380_542 -4380_77986,293,4380_43445,Monkstown,80682-00017-1,1,4380_7778208_2160205,4380_542 -4380_77986,296,4380_43446,Monkstown,80892-00021-1,1,4380_7778208_2160212,4380_543 -4380_77986,297,4380_43448,Monkstown,80858-00008-1,1,4380_7778208_2160211,4380_542 -4380_77948,286,4380_4345,Dublin,1477-00010-1,1,4380_7778208_1030104,4380_42 -4380_77986,285,4380_43455,Monkstown,80265-00009-1,1,4380_7778208_2160201,4380_542 -4380_77986,286,4380_43456,Monkstown,80267-00010-1,1,4380_7778208_2160201,4380_542 -4380_77986,288,4380_43457,Monkstown,80273-00011-1,1,4380_7778208_2160201,4380_542 -4380_77986,287,4380_43458,Monkstown,80269-00012-1,1,4380_7778208_2160201,4380_542 -4380_77986,291,4380_43459,Monkstown,81006-00013-1,1,4380_7778208_2160216,4380_543 -4380_77948,288,4380_4346,Dublin,1489-00011-1,1,4380_7778208_1030104,4380_42 -4380_77986,289,4380_43460,Monkstown,80271-00014-1,1,4380_7778208_2160201,4380_542 -4380_77986,292,4380_43461,Monkstown,80268-00016-1,1,4380_7778208_2160201,4380_542 -4380_77986,290,4380_43462,Monkstown,80266-00015-1,1,4380_7778208_2160201,4380_542 -4380_77986,294,4380_43463,Monkstown,80270-00018-1,1,4380_7778208_2160201,4380_542 -4380_77986,295,4380_43464,Monkstown,80272-00019-1,1,4380_7778208_2160201,4380_542 -4380_77986,293,4380_43465,Monkstown,80274-00017-1,1,4380_7778208_2160201,4380_542 -4380_77986,296,4380_43466,Monkstown,81007-00021-1,1,4380_7778208_2160216,4380_543 -4380_77948,287,4380_4347,Dublin,1501-00012-1,1,4380_7778208_1030104,4380_42 -4380_77986,285,4380_43473,Monkstown,80821-00009-1,1,4380_7778208_2160206,4380_542 -4380_77986,286,4380_43474,Monkstown,80817-00010-1,1,4380_7778208_2160206,4380_542 -4380_77986,288,4380_43475,Monkstown,80823-00011-1,1,4380_7778208_2160206,4380_542 -4380_77986,287,4380_43476,Monkstown,80819-00012-1,1,4380_7778208_2160206,4380_542 -4380_77986,291,4380_43477,Monkstown,80954-00013-1,1,4380_7778208_2160214,4380_543 -4380_77986,289,4380_43478,Monkstown,80815-00014-1,1,4380_7778208_2160206,4380_542 -4380_77986,292,4380_43479,Monkstown,80818-00016-1,1,4380_7778208_2160206,4380_542 -4380_77948,289,4380_4348,Dublin,1453-00014-1,1,4380_7778208_1030104,4380_42 -4380_77986,290,4380_43480,Monkstown,80822-00015-1,1,4380_7778208_2160206,4380_542 -4380_77986,294,4380_43481,Monkstown,80820-00018-1,1,4380_7778208_2160206,4380_542 -4380_77986,295,4380_43482,Monkstown,80816-00019-1,1,4380_7778208_2160206,4380_542 -4380_77986,293,4380_43483,Monkstown,80824-00017-1,1,4380_7778208_2160206,4380_542 -4380_77986,296,4380_43484,Monkstown,80955-00021-1,1,4380_7778208_2160214,4380_543 -4380_77986,297,4380_43486,Monkstown,80895-00008-1,1,4380_7778208_2160212,4380_542 -4380_77948,290,4380_4349,Dublin,51966-00015-1,1,4380_7778208_1030104,4380_42 -4380_77986,285,4380_43493,Monkstown,80571-00009-1,1,4380_7778208_2160204,4380_542 -4380_77986,286,4380_43494,Monkstown,80573-00010-1,1,4380_7778208_2160204,4380_542 -4380_77986,288,4380_43495,Monkstown,80567-00011-1,1,4380_7778208_2160204,4380_542 -4380_77986,287,4380_43496,Monkstown,80569-00012-1,1,4380_7778208_2160204,4380_542 -4380_77986,291,4380_43497,Monkstown,80982-00013-1,1,4380_7778208_2160215,4380_543 -4380_77986,289,4380_43498,Monkstown,80565-00014-1,1,4380_7778208_2160204,4380_542 -4380_77986,292,4380_43499,Monkstown,80574-00016-1,1,4380_7778208_2160204,4380_542 -4380_77946,291,4380_435,Drogheda,50261-00013-1,1,4380_7778208_1000911,4380_9 -4380_77948,292,4380_4350,Dublin,51968-00016-1,1,4380_7778208_1030104,4380_42 -4380_77986,290,4380_43500,Monkstown,80572-00015-1,1,4380_7778208_2160204,4380_542 -4380_77986,294,4380_43501,Monkstown,80570-00018-1,1,4380_7778208_2160204,4380_542 -4380_77986,295,4380_43502,Monkstown,80566-00019-1,1,4380_7778208_2160204,4380_542 -4380_77986,293,4380_43503,Monkstown,80568-00017-1,1,4380_7778208_2160204,4380_542 -4380_77986,296,4380_43504,Monkstown,80983-00021-1,1,4380_7778208_2160215,4380_543 -4380_77948,293,4380_4351,Dublin,51969-00017-1,1,4380_7778208_1030104,4380_42 -4380_77986,285,4380_43511,Monkstown,80697-00009-1,1,4380_7778208_2160205,4380_542 -4380_77986,286,4380_43512,Monkstown,80699-00010-1,1,4380_7778208_2160205,4380_542 -4380_77986,288,4380_43513,Monkstown,80701-00011-1,1,4380_7778208_2160205,4380_542 -4380_77986,287,4380_43514,Monkstown,80695-00012-1,1,4380_7778208_2160205,4380_542 -4380_77986,291,4380_43515,Monkstown,80896-00013-1,1,4380_7778208_2160212,4380_543 -4380_77986,289,4380_43516,Monkstown,80703-00014-1,1,4380_7778208_2160205,4380_542 -4380_77986,292,4380_43517,Monkstown,80700-00016-1,1,4380_7778208_2160205,4380_542 -4380_77986,290,4380_43518,Monkstown,80698-00015-1,1,4380_7778208_2160205,4380_542 -4380_77986,294,4380_43519,Monkstown,80696-00018-1,1,4380_7778208_2160205,4380_542 -4380_77948,294,4380_4352,Dublin,51967-00018-1,1,4380_7778208_1030104,4380_42 -4380_77986,295,4380_43520,Monkstown,80704-00019-1,1,4380_7778208_2160205,4380_542 -4380_77986,293,4380_43521,Monkstown,80702-00017-1,1,4380_7778208_2160205,4380_542 -4380_77986,296,4380_43522,Monkstown,80897-00021-1,1,4380_7778208_2160212,4380_543 -4380_77986,297,4380_43524,Monkstown,80931-00008-1,1,4380_7778208_2160213,4380_542 -4380_77948,295,4380_4353,Dublin,51970-00019-1,1,4380_7778208_1030104,4380_42 -4380_77986,285,4380_43531,Monkstown,80285-00009-1,1,4380_7778208_2160201,4380_542 -4380_77986,286,4380_43532,Monkstown,80293-00010-1,1,4380_7778208_2160201,4380_542 -4380_77986,288,4380_43533,Monkstown,80287-00011-1,1,4380_7778208_2160201,4380_542 -4380_77986,287,4380_43534,Monkstown,80289-00012-1,1,4380_7778208_2160201,4380_542 -4380_77986,291,4380_43535,Monkstown,81010-00013-1,1,4380_7778208_2160216,4380_543 -4380_77986,289,4380_43536,Monkstown,80291-00014-1,1,4380_7778208_2160201,4380_542 -4380_77986,292,4380_43537,Monkstown,80294-00016-1,1,4380_7778208_2160201,4380_542 -4380_77986,290,4380_43538,Monkstown,80286-00015-1,1,4380_7778208_2160201,4380_542 -4380_77986,294,4380_43539,Monkstown,80290-00018-1,1,4380_7778208_2160201,4380_542 -4380_77986,295,4380_43540,Monkstown,80292-00019-1,1,4380_7778208_2160201,4380_542 -4380_77986,293,4380_43541,Monkstown,80288-00017-1,1,4380_7778208_2160201,4380_542 -4380_77986,296,4380_43542,Monkstown,81011-00021-1,1,4380_7778208_2160216,4380_543 -4380_77986,285,4380_43549,Monkstown,80839-00009-1,1,4380_7778208_2160206,4380_542 -4380_77986,286,4380_43550,Monkstown,80837-00010-1,1,4380_7778208_2160206,4380_542 -4380_77986,288,4380_43551,Monkstown,80841-00011-1,1,4380_7778208_2160206,4380_542 -4380_77986,287,4380_43552,Monkstown,80843-00012-1,1,4380_7778208_2160206,4380_542 -4380_77986,291,4380_43553,Monkstown,80958-00013-1,1,4380_7778208_2160214,4380_543 -4380_77986,289,4380_43554,Monkstown,80835-00014-1,1,4380_7778208_2160206,4380_542 -4380_77986,292,4380_43555,Monkstown,80838-00016-1,1,4380_7778208_2160206,4380_542 -4380_77986,290,4380_43556,Monkstown,80840-00015-1,1,4380_7778208_2160206,4380_542 -4380_77986,294,4380_43557,Monkstown,80844-00018-1,1,4380_7778208_2160206,4380_542 -4380_77986,295,4380_43558,Monkstown,80836-00019-1,1,4380_7778208_2160206,4380_542 -4380_77986,293,4380_43559,Monkstown,80842-00017-1,1,4380_7778208_2160206,4380_542 -4380_77986,296,4380_43560,Monkstown,80959-00021-1,1,4380_7778208_2160214,4380_543 -4380_77986,297,4380_43562,Monkstown,80860-00008-1,1,4380_7778208_2160211,4380_542 -4380_77987,285,4380_43568,Southern Orbital,81144-00009-1,0,4380_7778208_2190204,4380_545 -4380_77987,286,4380_43569,Southern Orbital,81150-00010-1,0,4380_7778208_2190204,4380_545 -4380_77987,288,4380_43570,Southern Orbital,81146-00011-1,0,4380_7778208_2190204,4380_545 -4380_77987,287,4380_43571,Southern Orbital,81142-00012-1,0,4380_7778208_2190204,4380_545 -4380_77987,289,4380_43572,Southern Orbital,81148-00014-1,0,4380_7778208_2190204,4380_545 -4380_77987,292,4380_43573,Southern Orbital,81151-00016-1,0,4380_7778208_2190204,4380_545 -4380_77987,290,4380_43574,Southern Orbital,81145-00015-1,0,4380_7778208_2190204,4380_545 -4380_77987,294,4380_43575,Southern Orbital,81143-00018-1,0,4380_7778208_2190204,4380_545 -4380_77987,295,4380_43576,Southern Orbital,81149-00019-1,0,4380_7778208_2190204,4380_545 -4380_77987,293,4380_43577,Southern Orbital,81147-00017-1,0,4380_7778208_2190204,4380_545 -4380_77987,285,4380_43583,Southern Orbital,81030-00009-1,0,4380_7778208_2190203,4380_544 -4380_77987,286,4380_43584,Southern Orbital,81022-00010-1,0,4380_7778208_2190203,4380_544 -4380_77987,288,4380_43585,Southern Orbital,81026-00011-1,0,4380_7778208_2190203,4380_544 -4380_77987,287,4380_43586,Southern Orbital,81024-00012-1,0,4380_7778208_2190203,4380_544 -4380_77987,289,4380_43587,Southern Orbital,81028-00014-1,0,4380_7778208_2190203,4380_544 -4380_77987,292,4380_43588,Southern Orbital,81023-00016-1,0,4380_7778208_2190203,4380_544 -4380_77987,290,4380_43589,Southern Orbital,81031-00015-1,0,4380_7778208_2190203,4380_544 -4380_77987,294,4380_43590,Southern Orbital,81025-00018-1,0,4380_7778208_2190203,4380_544 -4380_77987,295,4380_43591,Southern Orbital,81029-00019-1,0,4380_7778208_2190203,4380_544 -4380_77987,293,4380_43592,Southern Orbital,81027-00017-1,0,4380_7778208_2190203,4380_544 -4380_77987,285,4380_43598,Southern Orbital,81166-00009-1,0,4380_7778208_2190204,4380_544 -4380_77987,286,4380_43599,Southern Orbital,81162-00010-1,0,4380_7778208_2190204,4380_544 -4380_77946,292,4380_436,Drogheda,50408-00016-1,1,4380_7778208_1000914,4380_6 -4380_77948,291,4380_4360,Dublin,1225-00013-1,1,4380_7778208_1030101,4380_42 -4380_77987,288,4380_43600,Southern Orbital,81170-00011-1,0,4380_7778208_2190204,4380_544 -4380_77987,287,4380_43601,Southern Orbital,81168-00012-1,0,4380_7778208_2190204,4380_544 -4380_77987,289,4380_43602,Southern Orbital,81164-00014-1,0,4380_7778208_2190204,4380_544 -4380_77987,292,4380_43603,Southern Orbital,81163-00016-1,0,4380_7778208_2190204,4380_544 -4380_77987,290,4380_43604,Southern Orbital,81167-00015-1,0,4380_7778208_2190204,4380_544 -4380_77987,294,4380_43605,Southern Orbital,81169-00018-1,0,4380_7778208_2190204,4380_544 -4380_77987,295,4380_43606,Southern Orbital,81165-00019-1,0,4380_7778208_2190204,4380_544 -4380_77987,293,4380_43607,Southern Orbital,81171-00017-1,0,4380_7778208_2190204,4380_544 -4380_77948,296,4380_4361,Dublin,51790-00021-1,1,4380_7778208_1030101,4380_42 -4380_77987,285,4380_43613,Southern Orbital,81048-00009-1,0,4380_7778208_2190203,4380_544 -4380_77987,286,4380_43614,Southern Orbital,81044-00010-1,0,4380_7778208_2190203,4380_544 -4380_77987,288,4380_43615,Southern Orbital,81050-00011-1,0,4380_7778208_2190203,4380_544 -4380_77987,287,4380_43616,Southern Orbital,81042-00012-1,0,4380_7778208_2190203,4380_544 -4380_77987,289,4380_43617,Southern Orbital,81046-00014-1,0,4380_7778208_2190203,4380_544 -4380_77987,292,4380_43618,Southern Orbital,81045-00016-1,0,4380_7778208_2190203,4380_544 -4380_77987,290,4380_43619,Southern Orbital,81049-00015-1,0,4380_7778208_2190203,4380_544 -4380_77948,285,4380_4362,Dublin,1555-00009-1,1,4380_7778208_1030105,4380_42 -4380_77987,294,4380_43620,Southern Orbital,81043-00018-1,0,4380_7778208_2190203,4380_544 -4380_77987,295,4380_43621,Southern Orbital,81047-00019-1,0,4380_7778208_2190203,4380_544 -4380_77987,293,4380_43622,Southern Orbital,81051-00017-1,0,4380_7778208_2190203,4380_544 -4380_77987,285,4380_43628,Southern Orbital,81188-00009-1,0,4380_7778208_2190204,4380_544 -4380_77987,286,4380_43629,Southern Orbital,81186-00010-1,0,4380_7778208_2190204,4380_544 -4380_77948,286,4380_4363,Dublin,1563-00010-1,1,4380_7778208_1030105,4380_42 -4380_77987,288,4380_43630,Southern Orbital,81184-00011-1,0,4380_7778208_2190204,4380_544 -4380_77987,287,4380_43631,Southern Orbital,81190-00012-1,0,4380_7778208_2190204,4380_544 -4380_77987,289,4380_43632,Southern Orbital,81182-00014-1,0,4380_7778208_2190204,4380_544 -4380_77987,292,4380_43633,Southern Orbital,81187-00016-1,0,4380_7778208_2190204,4380_544 -4380_77987,290,4380_43634,Southern Orbital,81189-00015-1,0,4380_7778208_2190204,4380_544 -4380_77987,294,4380_43635,Southern Orbital,81191-00018-1,0,4380_7778208_2190204,4380_544 -4380_77987,295,4380_43636,Southern Orbital,81183-00019-1,0,4380_7778208_2190204,4380_544 -4380_77987,293,4380_43637,Southern Orbital,81185-00017-1,0,4380_7778208_2190204,4380_544 -4380_77948,288,4380_4364,Dublin,1571-00011-1,1,4380_7778208_1030105,4380_42 -4380_77987,285,4380_43643,Southern Orbital,81064-00009-1,0,4380_7778208_2190203,4380_544 -4380_77987,286,4380_43644,Southern Orbital,81068-00010-1,0,4380_7778208_2190203,4380_544 -4380_77987,288,4380_43645,Southern Orbital,81066-00011-1,0,4380_7778208_2190203,4380_544 -4380_77987,287,4380_43646,Southern Orbital,81062-00012-1,0,4380_7778208_2190203,4380_544 -4380_77987,289,4380_43647,Southern Orbital,81070-00014-1,0,4380_7778208_2190203,4380_544 -4380_77987,292,4380_43648,Southern Orbital,81069-00016-1,0,4380_7778208_2190203,4380_544 -4380_77987,290,4380_43649,Southern Orbital,81065-00015-1,0,4380_7778208_2190203,4380_544 -4380_77948,287,4380_4365,Dublin,1579-00012-1,1,4380_7778208_1030105,4380_42 -4380_77987,294,4380_43650,Southern Orbital,81063-00018-1,0,4380_7778208_2190203,4380_544 -4380_77987,295,4380_43651,Southern Orbital,81071-00019-1,0,4380_7778208_2190203,4380_544 -4380_77987,293,4380_43652,Southern Orbital,81067-00017-1,0,4380_7778208_2190203,4380_544 -4380_77987,285,4380_43658,Southern Orbital,81202-00009-1,0,4380_7778208_2190204,4380_544 -4380_77987,286,4380_43659,Southern Orbital,81208-00010-1,0,4380_7778208_2190204,4380_544 -4380_77948,289,4380_4366,Dublin,1547-00014-1,1,4380_7778208_1030105,4380_42 -4380_77987,288,4380_43660,Southern Orbital,81210-00011-1,0,4380_7778208_2190204,4380_544 -4380_77987,287,4380_43661,Southern Orbital,81206-00012-1,0,4380_7778208_2190204,4380_544 -4380_77987,289,4380_43662,Southern Orbital,81204-00014-1,0,4380_7778208_2190204,4380_544 -4380_77987,292,4380_43663,Southern Orbital,81209-00016-1,0,4380_7778208_2190204,4380_544 -4380_77987,290,4380_43664,Southern Orbital,81203-00015-1,0,4380_7778208_2190204,4380_544 -4380_77987,294,4380_43665,Southern Orbital,81207-00018-1,0,4380_7778208_2190204,4380_544 -4380_77987,295,4380_43666,Southern Orbital,81205-00019-1,0,4380_7778208_2190204,4380_544 -4380_77987,293,4380_43667,Southern Orbital,81211-00017-1,0,4380_7778208_2190204,4380_544 -4380_77948,290,4380_4367,Dublin,52040-00015-1,1,4380_7778208_1030105,4380_42 -4380_77987,285,4380_43673,Southern Orbital,81088-00009-1,0,4380_7778208_2190203,4380_544 -4380_77987,286,4380_43674,Southern Orbital,81084-00010-1,0,4380_7778208_2190203,4380_544 -4380_77987,288,4380_43675,Southern Orbital,81090-00011-1,0,4380_7778208_2190203,4380_544 -4380_77987,287,4380_43676,Southern Orbital,81086-00012-1,0,4380_7778208_2190203,4380_544 -4380_77987,289,4380_43677,Southern Orbital,81082-00014-1,0,4380_7778208_2190203,4380_544 -4380_77987,292,4380_43678,Southern Orbital,81085-00016-1,0,4380_7778208_2190203,4380_544 -4380_77987,290,4380_43679,Southern Orbital,81089-00015-1,0,4380_7778208_2190203,4380_544 -4380_77948,292,4380_4368,Dublin,52039-00016-1,1,4380_7778208_1030105,4380_42 -4380_77987,294,4380_43680,Southern Orbital,81087-00018-1,0,4380_7778208_2190203,4380_544 -4380_77987,295,4380_43681,Southern Orbital,81083-00019-1,0,4380_7778208_2190203,4380_544 -4380_77987,293,4380_43682,Southern Orbital,81091-00017-1,0,4380_7778208_2190203,4380_544 -4380_77987,285,4380_43688,Southern Orbital,81230-00009-1,0,4380_7778208_2190204,4380_544 -4380_77987,286,4380_43689,Southern Orbital,81228-00010-1,0,4380_7778208_2190204,4380_544 -4380_77948,293,4380_4369,Dublin,52037-00017-1,1,4380_7778208_1030105,4380_42 -4380_77987,288,4380_43690,Southern Orbital,81224-00011-1,0,4380_7778208_2190204,4380_544 -4380_77987,287,4380_43691,Southern Orbital,81226-00012-1,0,4380_7778208_2190204,4380_544 -4380_77987,289,4380_43692,Southern Orbital,81222-00014-1,0,4380_7778208_2190204,4380_544 -4380_77987,292,4380_43693,Southern Orbital,81229-00016-1,0,4380_7778208_2190204,4380_544 -4380_77987,290,4380_43694,Southern Orbital,81231-00015-1,0,4380_7778208_2190204,4380_544 -4380_77987,294,4380_43695,Southern Orbital,81227-00018-1,0,4380_7778208_2190204,4380_544 -4380_77987,295,4380_43696,Southern Orbital,81223-00019-1,0,4380_7778208_2190204,4380_544 -4380_77987,293,4380_43697,Southern Orbital,81225-00017-1,0,4380_7778208_2190204,4380_544 -4380_77946,293,4380_437,Drogheda,50412-00017-1,1,4380_7778208_1000914,4380_6 -4380_77948,294,4380_4370,Dublin,52038-00018-1,1,4380_7778208_1030105,4380_42 -4380_77987,285,4380_43703,Southern Orbital,81110-00009-1,0,4380_7778208_2190203,4380_544 -4380_77987,286,4380_43704,Southern Orbital,81102-00010-1,0,4380_7778208_2190203,4380_544 -4380_77987,288,4380_43705,Southern Orbital,81106-00011-1,0,4380_7778208_2190203,4380_544 -4380_77987,287,4380_43706,Southern Orbital,81104-00012-1,0,4380_7778208_2190203,4380_544 -4380_77987,289,4380_43707,Southern Orbital,81108-00014-1,0,4380_7778208_2190203,4380_544 -4380_77987,292,4380_43708,Southern Orbital,81103-00016-1,0,4380_7778208_2190203,4380_544 -4380_77987,290,4380_43709,Southern Orbital,81111-00015-1,0,4380_7778208_2190203,4380_544 -4380_77948,295,4380_4371,Dublin,52036-00019-1,1,4380_7778208_1030105,4380_42 -4380_77987,294,4380_43710,Southern Orbital,81105-00018-1,0,4380_7778208_2190203,4380_544 -4380_77987,295,4380_43711,Southern Orbital,81109-00019-1,0,4380_7778208_2190203,4380_544 -4380_77987,293,4380_43712,Southern Orbital,81107-00017-1,0,4380_7778208_2190203,4380_544 -4380_77987,285,4380_43718,Southern Orbital,81246-00009-1,0,4380_7778208_2190204,4380_544 -4380_77987,286,4380_43719,Southern Orbital,81242-00010-1,0,4380_7778208_2190204,4380_544 -4380_77987,288,4380_43720,Southern Orbital,81244-00011-1,0,4380_7778208_2190204,4380_544 -4380_77987,287,4380_43721,Southern Orbital,81250-00012-1,0,4380_7778208_2190204,4380_544 -4380_77987,289,4380_43722,Southern Orbital,81248-00014-1,0,4380_7778208_2190204,4380_544 -4380_77987,292,4380_43723,Southern Orbital,81243-00016-1,0,4380_7778208_2190204,4380_544 -4380_77987,290,4380_43724,Southern Orbital,81247-00015-1,0,4380_7778208_2190204,4380_544 -4380_77987,294,4380_43725,Southern Orbital,81251-00018-1,0,4380_7778208_2190204,4380_544 -4380_77987,295,4380_43726,Southern Orbital,81249-00019-1,0,4380_7778208_2190204,4380_544 -4380_77987,293,4380_43727,Southern Orbital,81245-00017-1,0,4380_7778208_2190204,4380_544 -4380_77987,285,4380_43733,Southern Orbital,81126-00009-1,0,4380_7778208_2190203,4380_544 -4380_77987,286,4380_43734,Southern Orbital,81122-00010-1,0,4380_7778208_2190203,4380_544 -4380_77987,288,4380_43735,Southern Orbital,81128-00011-1,0,4380_7778208_2190203,4380_544 -4380_77987,287,4380_43736,Southern Orbital,81124-00012-1,0,4380_7778208_2190203,4380_544 -4380_77987,289,4380_43737,Southern Orbital,81130-00014-1,0,4380_7778208_2190203,4380_544 -4380_77987,292,4380_43738,Southern Orbital,81123-00016-1,0,4380_7778208_2190203,4380_544 -4380_77987,290,4380_43739,Southern Orbital,81127-00015-1,0,4380_7778208_2190203,4380_544 -4380_77987,294,4380_43740,Southern Orbital,81125-00018-1,0,4380_7778208_2190203,4380_544 -4380_77987,295,4380_43741,Southern Orbital,81131-00019-1,0,4380_7778208_2190203,4380_544 -4380_77987,293,4380_43742,Southern Orbital,81129-00017-1,0,4380_7778208_2190203,4380_544 -4380_77987,285,4380_43748,Mahon,81014-00009-1,1,4380_7778208_2190203,4380_546 -4380_77987,286,4380_43749,Mahon,81012-00010-1,1,4380_7778208_2190203,4380_546 -4380_77987,288,4380_43750,Mahon,81020-00011-1,1,4380_7778208_2190203,4380_546 -4380_77987,287,4380_43751,Mahon,81018-00012-1,1,4380_7778208_2190203,4380_546 -4380_77987,289,4380_43752,Mahon,81016-00014-1,1,4380_7778208_2190203,4380_546 -4380_77987,292,4380_43753,Mahon,81013-00016-1,1,4380_7778208_2190203,4380_546 -4380_77987,290,4380_43754,Mahon,81015-00015-1,1,4380_7778208_2190203,4380_546 -4380_77987,294,4380_43755,Mahon,81019-00018-1,1,4380_7778208_2190203,4380_546 -4380_77987,295,4380_43756,Mahon,81017-00019-1,1,4380_7778208_2190203,4380_546 -4380_77987,293,4380_43757,Mahon,81021-00017-1,1,4380_7778208_2190203,4380_546 -4380_77987,285,4380_43763,Mahon,81156-00009-1,1,4380_7778208_2190204,4380_546 -4380_77987,286,4380_43764,Mahon,81154-00010-1,1,4380_7778208_2190204,4380_546 -4380_77987,288,4380_43765,Mahon,81152-00011-1,1,4380_7778208_2190204,4380_546 -4380_77987,287,4380_43766,Mahon,81158-00012-1,1,4380_7778208_2190204,4380_546 -4380_77987,289,4380_43767,Mahon,81160-00014-1,1,4380_7778208_2190204,4380_546 -4380_77987,292,4380_43768,Mahon,81155-00016-1,1,4380_7778208_2190204,4380_546 -4380_77987,290,4380_43769,Mahon,81157-00015-1,1,4380_7778208_2190204,4380_546 -4380_77948,285,4380_4377,Dublin,1775-00009-1,1,4380_7778208_1030108,4380_42 -4380_77987,294,4380_43770,Mahon,81159-00018-1,1,4380_7778208_2190204,4380_546 -4380_77987,295,4380_43771,Mahon,81161-00019-1,1,4380_7778208_2190204,4380_546 -4380_77987,293,4380_43772,Mahon,81153-00017-1,1,4380_7778208_2190204,4380_546 -4380_77987,285,4380_43778,Mahon,81036-00009-1,1,4380_7778208_2190203,4380_546 -4380_77987,286,4380_43779,Mahon,81040-00010-1,1,4380_7778208_2190203,4380_546 -4380_77948,286,4380_4378,Dublin,1787-00010-1,1,4380_7778208_1030108,4380_42 -4380_77987,288,4380_43780,Mahon,81032-00011-1,1,4380_7778208_2190203,4380_546 -4380_77987,287,4380_43781,Mahon,81034-00012-1,1,4380_7778208_2190203,4380_546 -4380_77987,289,4380_43782,Mahon,81038-00014-1,1,4380_7778208_2190203,4380_546 -4380_77987,292,4380_43783,Mahon,81041-00016-1,1,4380_7778208_2190203,4380_546 -4380_77987,290,4380_43784,Mahon,81037-00015-1,1,4380_7778208_2190203,4380_546 -4380_77987,294,4380_43785,Mahon,81035-00018-1,1,4380_7778208_2190203,4380_546 -4380_77987,295,4380_43786,Mahon,81039-00019-1,1,4380_7778208_2190203,4380_546 -4380_77987,293,4380_43787,Mahon,81033-00017-1,1,4380_7778208_2190203,4380_546 -4380_77948,288,4380_4379,Dublin,1799-00011-1,1,4380_7778208_1030108,4380_42 -4380_77987,285,4380_43793,Mahon,81178-00009-1,1,4380_7778208_2190204,4380_546 -4380_77987,286,4380_43794,Mahon,81176-00010-1,1,4380_7778208_2190204,4380_546 -4380_77987,288,4380_43795,Mahon,81174-00011-1,1,4380_7778208_2190204,4380_546 -4380_77987,287,4380_43796,Mahon,81180-00012-1,1,4380_7778208_2190204,4380_546 -4380_77987,289,4380_43797,Mahon,81172-00014-1,1,4380_7778208_2190204,4380_546 -4380_77987,292,4380_43798,Mahon,81177-00016-1,1,4380_7778208_2190204,4380_546 -4380_77987,290,4380_43799,Mahon,81179-00015-1,1,4380_7778208_2190204,4380_546 -4380_77946,294,4380_438,Drogheda,50414-00018-1,1,4380_7778208_1000914,4380_6 -4380_77948,287,4380_4380,Dublin,1811-00012-1,1,4380_7778208_1030108,4380_42 -4380_77987,294,4380_43800,Mahon,81181-00018-1,1,4380_7778208_2190204,4380_546 -4380_77987,295,4380_43801,Mahon,81173-00019-1,1,4380_7778208_2190204,4380_546 -4380_77987,293,4380_43802,Mahon,81175-00017-1,1,4380_7778208_2190204,4380_546 -4380_77987,285,4380_43808,Mahon,81060-00009-1,1,4380_7778208_2190203,4380_546 -4380_77987,286,4380_43809,Mahon,81056-00010-1,1,4380_7778208_2190203,4380_546 -4380_77948,289,4380_4381,Dublin,1763-00014-1,1,4380_7778208_1030108,4380_42 -4380_77987,288,4380_43810,Mahon,81052-00011-1,1,4380_7778208_2190203,4380_546 -4380_77987,287,4380_43811,Mahon,81058-00012-1,1,4380_7778208_2190203,4380_546 -4380_77987,289,4380_43812,Mahon,81054-00014-1,1,4380_7778208_2190203,4380_546 -4380_77987,292,4380_43813,Mahon,81057-00016-1,1,4380_7778208_2190203,4380_546 -4380_77987,290,4380_43814,Mahon,81061-00015-1,1,4380_7778208_2190203,4380_546 -4380_77987,294,4380_43815,Mahon,81059-00018-1,1,4380_7778208_2190203,4380_546 -4380_77987,295,4380_43816,Mahon,81055-00019-1,1,4380_7778208_2190203,4380_546 -4380_77987,293,4380_43817,Mahon,81053-00017-1,1,4380_7778208_2190203,4380_546 -4380_77948,290,4380_4382,Dublin,52221-00015-1,1,4380_7778208_1030108,4380_42 -4380_77987,285,4380_43823,Mahon,81196-00009-1,1,4380_7778208_2190204,4380_546 -4380_77987,286,4380_43824,Mahon,81200-00010-1,1,4380_7778208_2190204,4380_546 -4380_77987,288,4380_43825,Mahon,81192-00011-1,1,4380_7778208_2190204,4380_546 -4380_77987,287,4380_43826,Mahon,81198-00012-1,1,4380_7778208_2190204,4380_546 -4380_77987,289,4380_43827,Mahon,81194-00014-1,1,4380_7778208_2190204,4380_546 -4380_77987,292,4380_43828,Mahon,81201-00016-1,1,4380_7778208_2190204,4380_546 -4380_77987,290,4380_43829,Mahon,81197-00015-1,1,4380_7778208_2190204,4380_546 -4380_77948,292,4380_4383,Dublin,52218-00016-1,1,4380_7778208_1030108,4380_42 -4380_77987,294,4380_43830,Mahon,81199-00018-1,1,4380_7778208_2190204,4380_546 -4380_77987,295,4380_43831,Mahon,81195-00019-1,1,4380_7778208_2190204,4380_546 -4380_77987,293,4380_43832,Mahon,81193-00017-1,1,4380_7778208_2190204,4380_546 -4380_77987,285,4380_43838,Mahon,81076-00009-1,1,4380_7778208_2190203,4380_546 -4380_77987,286,4380_43839,Mahon,81074-00010-1,1,4380_7778208_2190203,4380_546 -4380_77948,293,4380_4384,Dublin,52217-00017-1,1,4380_7778208_1030108,4380_42 -4380_77987,288,4380_43840,Mahon,81078-00011-1,1,4380_7778208_2190203,4380_546 -4380_77987,287,4380_43841,Mahon,81072-00012-1,1,4380_7778208_2190203,4380_546 -4380_77987,289,4380_43842,Mahon,81080-00014-1,1,4380_7778208_2190203,4380_546 -4380_77987,292,4380_43843,Mahon,81075-00016-1,1,4380_7778208_2190203,4380_546 -4380_77987,290,4380_43844,Mahon,81077-00015-1,1,4380_7778208_2190203,4380_546 -4380_77987,294,4380_43845,Mahon,81073-00018-1,1,4380_7778208_2190203,4380_546 -4380_77987,295,4380_43846,Mahon,81081-00019-1,1,4380_7778208_2190203,4380_546 -4380_77987,293,4380_43847,Mahon,81079-00017-1,1,4380_7778208_2190203,4380_546 -4380_77948,294,4380_4385,Dublin,52216-00018-1,1,4380_7778208_1030108,4380_42 -4380_77987,285,4380_43853,Mahon,81218-00009-1,1,4380_7778208_2190204,4380_546 -4380_77987,286,4380_43854,Mahon,81212-00010-1,1,4380_7778208_2190204,4380_546 -4380_77987,288,4380_43855,Mahon,81220-00011-1,1,4380_7778208_2190204,4380_546 -4380_77987,287,4380_43856,Mahon,81216-00012-1,1,4380_7778208_2190204,4380_546 -4380_77987,289,4380_43857,Mahon,81214-00014-1,1,4380_7778208_2190204,4380_546 -4380_77987,292,4380_43858,Mahon,81213-00016-1,1,4380_7778208_2190204,4380_546 -4380_77987,290,4380_43859,Mahon,81219-00015-1,1,4380_7778208_2190204,4380_546 -4380_77948,295,4380_4386,Dublin,52219-00019-1,1,4380_7778208_1030108,4380_42 -4380_77987,294,4380_43860,Mahon,81217-00018-1,1,4380_7778208_2190204,4380_546 -4380_77987,295,4380_43861,Mahon,81215-00019-1,1,4380_7778208_2190204,4380_546 -4380_77987,293,4380_43862,Mahon,81221-00017-1,1,4380_7778208_2190204,4380_546 -4380_77987,285,4380_43868,Mahon,81100-00009-1,1,4380_7778208_2190203,4380_546 -4380_77987,286,4380_43869,Mahon,81096-00010-1,1,4380_7778208_2190203,4380_546 -4380_77987,288,4380_43870,Mahon,81092-00011-1,1,4380_7778208_2190203,4380_546 -4380_77987,287,4380_43871,Mahon,81094-00012-1,1,4380_7778208_2190203,4380_546 -4380_77987,289,4380_43872,Mahon,81098-00014-1,1,4380_7778208_2190203,4380_546 -4380_77987,292,4380_43873,Mahon,81097-00016-1,1,4380_7778208_2190203,4380_546 -4380_77987,290,4380_43874,Mahon,81101-00015-1,1,4380_7778208_2190203,4380_546 -4380_77987,294,4380_43875,Mahon,81095-00018-1,1,4380_7778208_2190203,4380_546 -4380_77987,295,4380_43876,Mahon,81099-00019-1,1,4380_7778208_2190203,4380_546 -4380_77987,293,4380_43877,Mahon,81093-00017-1,1,4380_7778208_2190203,4380_546 -4380_77987,285,4380_43883,Mahon,81240-00009-1,1,4380_7778208_2190204,4380_546 -4380_77987,286,4380_43884,Mahon,81238-00010-1,1,4380_7778208_2190204,4380_546 -4380_77987,288,4380_43885,Mahon,81234-00011-1,1,4380_7778208_2190204,4380_546 -4380_77987,287,4380_43886,Mahon,81236-00012-1,1,4380_7778208_2190204,4380_546 -4380_77987,289,4380_43887,Mahon,81232-00014-1,1,4380_7778208_2190204,4380_546 -4380_77987,292,4380_43888,Mahon,81239-00016-1,1,4380_7778208_2190204,4380_546 -4380_77987,290,4380_43889,Mahon,81241-00015-1,1,4380_7778208_2190204,4380_546 -4380_77987,294,4380_43890,Mahon,81237-00018-1,1,4380_7778208_2190204,4380_546 -4380_77987,295,4380_43891,Mahon,81233-00019-1,1,4380_7778208_2190204,4380_546 -4380_77987,293,4380_43892,Mahon,81235-00017-1,1,4380_7778208_2190204,4380_546 -4380_77987,285,4380_43898,Mahon,81118-00009-1,1,4380_7778208_2190203,4380_546 -4380_77987,286,4380_43899,Mahon,81114-00010-1,1,4380_7778208_2190203,4380_546 -4380_77946,295,4380_439,Drogheda,50416-00019-1,1,4380_7778208_1000914,4380_6 -4380_77987,288,4380_43900,Mahon,81116-00011-1,1,4380_7778208_2190203,4380_546 -4380_77987,287,4380_43901,Mahon,81112-00012-1,1,4380_7778208_2190203,4380_546 -4380_77987,289,4380_43902,Mahon,81120-00014-1,1,4380_7778208_2190203,4380_546 -4380_77987,292,4380_43903,Mahon,81115-00016-1,1,4380_7778208_2190203,4380_546 -4380_77987,290,4380_43904,Mahon,81119-00015-1,1,4380_7778208_2190203,4380_546 -4380_77987,294,4380_43905,Mahon,81113-00018-1,1,4380_7778208_2190203,4380_546 -4380_77987,295,4380_43906,Mahon,81121-00019-1,1,4380_7778208_2190203,4380_546 -4380_77987,293,4380_43907,Mahon,81117-00017-1,1,4380_7778208_2190203,4380_546 -4380_77987,285,4380_43913,Mahon,81252-00009-1,1,4380_7778208_2190204,4380_546 -4380_77987,286,4380_43914,Mahon,81254-00010-1,1,4380_7778208_2190204,4380_546 -4380_77987,288,4380_43915,Mahon,81256-00011-1,1,4380_7778208_2190204,4380_546 -4380_77987,287,4380_43916,Mahon,81260-00012-1,1,4380_7778208_2190204,4380_546 -4380_77987,289,4380_43917,Mahon,81258-00014-1,1,4380_7778208_2190204,4380_546 -4380_77987,292,4380_43918,Mahon,81255-00016-1,1,4380_7778208_2190204,4380_546 -4380_77987,290,4380_43919,Mahon,81253-00015-1,1,4380_7778208_2190204,4380_546 -4380_77987,294,4380_43920,Mahon,81261-00018-1,1,4380_7778208_2190204,4380_546 -4380_77987,295,4380_43921,Mahon,81259-00019-1,1,4380_7778208_2190204,4380_546 -4380_77987,293,4380_43922,Mahon,81257-00017-1,1,4380_7778208_2190204,4380_546 -4380_77987,285,4380_43928,Mahon,81138-00009-1,1,4380_7778208_2190203,4380_546 -4380_77987,286,4380_43929,Mahon,81140-00010-1,1,4380_7778208_2190203,4380_546 -4380_77987,288,4380_43930,Mahon,81134-00011-1,1,4380_7778208_2190203,4380_546 -4380_77987,287,4380_43931,Mahon,81132-00012-1,1,4380_7778208_2190203,4380_546 -4380_77987,289,4380_43932,Mahon,81136-00014-1,1,4380_7778208_2190203,4380_546 -4380_77987,292,4380_43933,Mahon,81141-00016-1,1,4380_7778208_2190203,4380_546 -4380_77987,290,4380_43934,Mahon,81139-00015-1,1,4380_7778208_2190203,4380_546 -4380_77987,294,4380_43935,Mahon,81133-00018-1,1,4380_7778208_2190203,4380_546 -4380_77987,295,4380_43936,Mahon,81137-00019-1,1,4380_7778208_2190203,4380_546 -4380_77987,293,4380_43937,Mahon,81135-00017-1,1,4380_7778208_2190203,4380_546 -4380_77948,297,4380_4394,Dublin,1539-00008-1,1,4380_7778208_1030104,4380_42 -4380_77933,285,4380_43945,Ballina,46516-00009-1,0,4380_7778208_221001,4380_547 -4380_77933,286,4380_43946,Ballina,46508-00010-1,0,4380_7778208_221001,4380_547 -4380_77933,297,4380_43947,Ballina,46507-00008-1,0,4380_7778208_221001,4380_547 -4380_77933,287,4380_43948,Ballina,46510-00012-1,0,4380_7778208_221001,4380_547 -4380_77933,288,4380_43949,Ballina,46518-00011-1,0,4380_7778208_221001,4380_547 -4380_77948,291,4380_4395,Dublin,1325-00013-1,1,4380_7778208_1030102,4380_43 -4380_77933,289,4380_43950,Ballina,46512-00014-1,0,4380_7778208_221001,4380_547 -4380_77933,290,4380_43951,Ballina,46517-00015-1,0,4380_7778208_221001,4380_547 -4380_77933,291,4380_43952,Ballina,46514-00013-1,0,4380_7778208_221001,4380_547 -4380_77933,292,4380_43953,Ballina,46509-00016-1,0,4380_7778208_221001,4380_547 -4380_77933,293,4380_43954,Ballina,46519-00017-1,0,4380_7778208_221001,4380_547 -4380_77933,295,4380_43955,Ballina,46513-00019-1,0,4380_7778208_221001,4380_547 -4380_77933,294,4380_43956,Ballina,46511-00018-1,0,4380_7778208_221001,4380_547 -4380_77933,296,4380_43957,Ballina,46515-00021-1,0,4380_7778208_221001,4380_547 -4380_77948,296,4380_4396,Dublin,51850-00021-1,1,4380_7778208_1030102,4380_43 -4380_77933,285,4380_43965,Ballina,46472-00009-1,0,4380_7778208_220101,4380_547 -4380_77933,286,4380_43966,Ballina,46476-00010-1,0,4380_7778208_220101,4380_547 -4380_77933,297,4380_43967,Ballina,46480-00008-1,0,4380_7778208_220101,4380_547 -4380_77933,287,4380_43968,Ballina,46474-00012-1,0,4380_7778208_220101,4380_547 -4380_77933,288,4380_43969,Ballina,46478-00011-1,0,4380_7778208_220101,4380_547 -4380_77948,285,4380_4397,Dublin,1699-00009-1,1,4380_7778208_1030107,4380_42 -4380_77933,289,4380_43970,Ballina,46468-00014-1,0,4380_7778208_220101,4380_547 -4380_77933,290,4380_43971,Ballina,46473-00015-1,0,4380_7778208_220101,4380_547 -4380_77933,291,4380_43972,Ballina,46470-00013-1,0,4380_7778208_220101,4380_547 -4380_77933,292,4380_43973,Ballina,46477-00016-1,0,4380_7778208_220101,4380_547 -4380_77933,293,4380_43974,Ballina,46479-00017-1,0,4380_7778208_220101,4380_547 -4380_77933,295,4380_43975,Ballina,46469-00019-1,0,4380_7778208_220101,4380_547 -4380_77933,294,4380_43976,Ballina,46475-00018-1,0,4380_7778208_220101,4380_547 -4380_77933,296,4380_43977,Ballina,46471-00021-1,0,4380_7778208_220101,4380_547 -4380_77948,286,4380_4398,Dublin,1711-00010-1,1,4380_7778208_1030107,4380_42 -4380_77933,285,4380_43985,Ballina,46564-00009-1,0,4380_7778208_221002,4380_548 -4380_77933,286,4380_43986,Ballina,46562-00010-1,0,4380_7778208_221002,4380_548 -4380_77933,297,4380_43987,Ballina,46622-00008-1,0,4380_7778208_221007,4380_548 -4380_77933,287,4380_43988,Ballina,46568-00012-1,0,4380_7778208_221002,4380_548 -4380_77933,288,4380_43989,Ballina,46566-00011-1,0,4380_7778208_221002,4380_548 -4380_77948,288,4380_4399,Dublin,1723-00011-1,1,4380_7778208_1030107,4380_42 -4380_77933,289,4380_43990,Ballina,46560-00014-1,0,4380_7778208_221002,4380_548 -4380_77933,290,4380_43991,Ballina,46565-00015-1,0,4380_7778208_221002,4380_548 -4380_77933,291,4380_43992,Ballina,46558-00013-1,0,4380_7778208_221002,4380_548 -4380_77933,292,4380_43993,Ballina,46563-00016-1,0,4380_7778208_221002,4380_548 -4380_77933,293,4380_43994,Ballina,46567-00017-1,0,4380_7778208_221002,4380_548 -4380_77933,295,4380_43995,Ballina,46561-00019-1,0,4380_7778208_221002,4380_548 -4380_77933,294,4380_43996,Ballina,46569-00018-1,0,4380_7778208_221002,4380_548 -4380_77933,296,4380_43997,Ballina,46559-00021-1,0,4380_7778208_221002,4380_548 -4380_77946,296,4380_440,Drogheda,50262-00021-1,1,4380_7778208_1000911,4380_9 -4380_77948,287,4380_4400,Dublin,1735-00012-1,1,4380_7778208_1030107,4380_42 -4380_77933,285,4380_44005,Ballina,46615-00009-1,0,4380_7778208_221003,4380_550 -4380_77933,286,4380_44006,Ballina,46607-00010-1,0,4380_7778208_221003,4380_550 -4380_77933,297,4380_44007,Ballina,46619-00008-1,0,4380_7778208_221003,4380_550 -4380_77933,287,4380_44008,Ballina,46609-00012-1,0,4380_7778208_221003,4380_550 -4380_77933,288,4380_44009,Ballina,46617-00011-1,0,4380_7778208_221003,4380_550 -4380_77948,289,4380_4401,Dublin,1687-00014-1,1,4380_7778208_1030107,4380_42 -4380_77933,289,4380_44010,Ballina,46611-00014-1,0,4380_7778208_221003,4380_550 -4380_77933,290,4380_44011,Ballina,46616-00015-1,0,4380_7778208_221003,4380_550 -4380_77933,291,4380_44012,Ballina,46613-00013-1,0,4380_7778208_221003,4380_550 -4380_77933,292,4380_44013,Ballina,46608-00016-1,0,4380_7778208_221003,4380_550 -4380_77933,293,4380_44014,Ballina,46618-00017-1,0,4380_7778208_221003,4380_550 -4380_77933,295,4380_44015,Ballina,46612-00019-1,0,4380_7778208_221003,4380_550 -4380_77933,294,4380_44016,Ballina,46610-00018-1,0,4380_7778208_221003,4380_550 -4380_77933,296,4380_44017,Ballina,46614-00021-1,0,4380_7778208_221003,4380_550 -4380_77948,290,4380_4402,Dublin,52152-00015-1,1,4380_7778208_1030107,4380_42 -4380_77933,285,4380_44025,Ballina,46541-00009-1,0,4380_7778208_221001,4380_548 -4380_77933,286,4380_44026,Ballina,46533-00010-1,0,4380_7778208_221001,4380_548 -4380_77933,297,4380_44027,Ballina,46545-00008-1,0,4380_7778208_221001,4380_548 -4380_77933,287,4380_44028,Ballina,46543-00012-1,0,4380_7778208_221001,4380_548 -4380_77933,288,4380_44029,Ballina,46539-00011-1,0,4380_7778208_221001,4380_548 -4380_77948,292,4380_4403,Dublin,52155-00016-1,1,4380_7778208_1030107,4380_42 -4380_77933,289,4380_44030,Ballina,46537-00014-1,0,4380_7778208_221001,4380_548 -4380_77933,290,4380_44031,Ballina,46542-00015-1,0,4380_7778208_221001,4380_548 -4380_77933,291,4380_44032,Ballina,46535-00013-1,0,4380_7778208_221001,4380_548 -4380_77933,292,4380_44033,Ballina,46534-00016-1,0,4380_7778208_221001,4380_548 -4380_77933,293,4380_44034,Ballina,46540-00017-1,0,4380_7778208_221001,4380_548 -4380_77933,295,4380_44035,Ballina,46538-00019-1,0,4380_7778208_221001,4380_548 -4380_77933,294,4380_44036,Ballina,46544-00018-1,0,4380_7778208_221001,4380_548 -4380_77933,296,4380_44037,Ballina,46536-00021-1,0,4380_7778208_221001,4380_548 -4380_77948,293,4380_4404,Dublin,52156-00017-1,1,4380_7778208_1030107,4380_42 -4380_77933,285,4380_44045,Ballina,46586-00009-1,0,4380_7778208_221002,4380_549 -4380_77933,286,4380_44046,Ballina,46584-00010-1,0,4380_7778208_221002,4380_549 -4380_77933,297,4380_44047,Ballina,46624-00008-1,0,4380_7778208_221007,4380_549 -4380_77933,287,4380_44048,Ballina,46582-00012-1,0,4380_7778208_221002,4380_549 -4380_77933,288,4380_44049,Ballina,46592-00011-1,0,4380_7778208_221002,4380_549 -4380_77948,294,4380_4405,Dublin,52154-00018-1,1,4380_7778208_1030107,4380_42 -4380_77933,289,4380_44050,Ballina,46588-00014-1,0,4380_7778208_221002,4380_549 -4380_77933,290,4380_44051,Ballina,46587-00015-1,0,4380_7778208_221002,4380_549 -4380_77933,291,4380_44052,Ballina,46590-00013-1,0,4380_7778208_221002,4380_549 -4380_77933,292,4380_44053,Ballina,46585-00016-1,0,4380_7778208_221002,4380_549 -4380_77933,293,4380_44054,Ballina,46593-00017-1,0,4380_7778208_221002,4380_549 -4380_77933,295,4380_44055,Ballina,46589-00019-1,0,4380_7778208_221002,4380_549 -4380_77933,294,4380_44056,Ballina,46583-00018-1,0,4380_7778208_221002,4380_549 -4380_77933,296,4380_44057,Ballina,46591-00021-1,0,4380_7778208_221002,4380_549 -4380_77948,295,4380_4406,Dublin,52153-00019-1,1,4380_7778208_1030107,4380_42 -4380_77933,285,4380_44065,Dublin via Airport,46501-00009-1,1,4380_7778208_221001,4380_552 -4380_77933,286,4380_44066,Dublin via Airport,46498-00010-1,1,4380_7778208_221001,4380_552 -4380_77933,297,4380_44067,Dublin via Airport,46500-00008-1,1,4380_7778208_221001,4380_552 -4380_77933,287,4380_44068,Dublin via Airport,46496-00012-1,1,4380_7778208_221001,4380_552 -4380_77933,288,4380_44069,Dublin via Airport,46505-00011-1,1,4380_7778208_221001,4380_552 -4380_77933,289,4380_44070,Dublin via Airport,46494-00014-1,1,4380_7778208_221001,4380_552 -4380_77933,290,4380_44071,Dublin via Airport,46502-00015-1,1,4380_7778208_221001,4380_552 -4380_77933,291,4380_44072,Dublin via Airport,46503-00013-1,1,4380_7778208_221001,4380_552 -4380_77933,292,4380_44073,Dublin via Airport,46499-00016-1,1,4380_7778208_221001,4380_552 -4380_77933,293,4380_44074,Dublin via Airport,46506-00017-1,1,4380_7778208_221001,4380_552 -4380_77933,295,4380_44075,Dublin via Airport,46495-00019-1,1,4380_7778208_221001,4380_552 -4380_77933,294,4380_44076,Dublin via Airport,46497-00018-1,1,4380_7778208_221001,4380_552 -4380_77933,296,4380_44077,Dublin via Airport,46504-00021-1,1,4380_7778208_221001,4380_552 -4380_77933,285,4380_44085,Dublin Airport,46554-00009-1,1,4380_7778208_221002,4380_553 -4380_77933,286,4380_44086,Dublin Airport,46548-00010-1,1,4380_7778208_221002,4380_553 -4380_77933,297,4380_44087,Dublin Airport,46621-00008-1,1,4380_7778208_221007,4380_553 -4380_77933,287,4380_44088,Dublin Airport,46550-00012-1,1,4380_7778208_221002,4380_553 -4380_77933,288,4380_44089,Dublin Airport,46552-00011-1,1,4380_7778208_221002,4380_553 -4380_77933,289,4380_44090,Dublin Airport,46546-00014-1,1,4380_7778208_221002,4380_553 -4380_77933,290,4380_44091,Dublin Airport,46555-00015-1,1,4380_7778208_221002,4380_553 -4380_77933,291,4380_44092,Dublin Airport,46556-00013-1,1,4380_7778208_221002,4380_553 -4380_77933,292,4380_44093,Dublin Airport,46549-00016-1,1,4380_7778208_221002,4380_553 -4380_77933,293,4380_44094,Dublin Airport,46553-00017-1,1,4380_7778208_221002,4380_553 -4380_77933,295,4380_44095,Dublin Airport,46547-00019-1,1,4380_7778208_221002,4380_553 -4380_77933,294,4380_44096,Dublin Airport,46551-00018-1,1,4380_7778208_221002,4380_553 -4380_77933,296,4380_44097,Dublin Airport,46557-00021-1,1,4380_7778208_221002,4380_553 -4380_77933,285,4380_44105,Dublin Airport,46598-00009-1,1,4380_7778208_221003,4380_555 -4380_77933,286,4380_44106,Dublin Airport,46601-00010-1,1,4380_7778208_221003,4380_555 -4380_77933,297,4380_44107,Dublin Airport,46600-00008-1,1,4380_7778208_221003,4380_555 -4380_77933,287,4380_44108,Dublin Airport,46603-00012-1,1,4380_7778208_221003,4380_555 -4380_77933,288,4380_44109,Dublin Airport,46605-00011-1,1,4380_7778208_221003,4380_555 -4380_77933,289,4380_44110,Dublin Airport,46594-00014-1,1,4380_7778208_221003,4380_555 -4380_77933,290,4380_44111,Dublin Airport,46599-00015-1,1,4380_7778208_221003,4380_555 -4380_77933,291,4380_44112,Dublin Airport,46596-00013-1,1,4380_7778208_221003,4380_555 -4380_77933,292,4380_44113,Dublin Airport,46602-00016-1,1,4380_7778208_221003,4380_555 -4380_77933,293,4380_44114,Dublin Airport,46606-00017-1,1,4380_7778208_221003,4380_555 -4380_77933,295,4380_44115,Dublin Airport,46595-00019-1,1,4380_7778208_221003,4380_555 -4380_77933,294,4380_44116,Dublin Airport,46604-00018-1,1,4380_7778208_221003,4380_555 -4380_77933,296,4380_44117,Dublin Airport,46597-00021-1,1,4380_7778208_221003,4380_555 -4380_77933,285,4380_44125,Dublin Airport,46530-00009-1,1,4380_7778208_221001,4380_553 -4380_77933,286,4380_44126,Dublin Airport,46526-00010-1,1,4380_7778208_221001,4380_553 -4380_77933,297,4380_44127,Dublin Airport,46532-00008-1,1,4380_7778208_221001,4380_553 -4380_77933,287,4380_44128,Dublin Airport,46528-00012-1,1,4380_7778208_221001,4380_553 -4380_77933,288,4380_44129,Dublin Airport,46520-00011-1,1,4380_7778208_221001,4380_553 -4380_77948,291,4380_4413,Dublin,1407-00013-1,1,4380_7778208_1030103,4380_42 -4380_77933,289,4380_44130,Dublin Airport,46522-00014-1,1,4380_7778208_221001,4380_553 -4380_77933,290,4380_44131,Dublin Airport,46531-00015-1,1,4380_7778208_221001,4380_553 -4380_77933,291,4380_44132,Dublin Airport,46524-00013-1,1,4380_7778208_221001,4380_553 -4380_77933,292,4380_44133,Dublin Airport,46527-00016-1,1,4380_7778208_221001,4380_553 -4380_77933,293,4380_44134,Dublin Airport,46521-00017-1,1,4380_7778208_221001,4380_553 -4380_77933,295,4380_44135,Dublin Airport,46523-00019-1,1,4380_7778208_221001,4380_553 -4380_77933,294,4380_44136,Dublin Airport,46529-00018-1,1,4380_7778208_221001,4380_553 -4380_77933,296,4380_44137,Dublin Airport,46525-00021-1,1,4380_7778208_221001,4380_553 -4380_77948,296,4380_4414,Dublin,51910-00021-1,1,4380_7778208_1030103,4380_42 -4380_77933,285,4380_44145,Dublin via Airport,46481-00009-1,1,4380_7778208_220101,4380_551 -4380_77933,286,4380_44146,Dublin via Airport,46491-00010-1,1,4380_7778208_220101,4380_551 -4380_77933,297,4380_44147,Dublin via Airport,46493-00008-1,1,4380_7778208_220101,4380_551 -4380_77933,287,4380_44148,Dublin via Airport,46483-00012-1,1,4380_7778208_220101,4380_551 -4380_77933,288,4380_44149,Dublin via Airport,46489-00011-1,1,4380_7778208_220101,4380_551 -4380_77948,285,4380_4415,Dublin,1615-00009-1,1,4380_7778208_1030106,4380_42 -4380_77933,289,4380_44150,Dublin via Airport,46485-00014-1,1,4380_7778208_220101,4380_551 -4380_77933,290,4380_44151,Dublin via Airport,46482-00015-1,1,4380_7778208_220101,4380_551 -4380_77933,291,4380_44152,Dublin via Airport,46487-00013-1,1,4380_7778208_220101,4380_551 -4380_77933,292,4380_44153,Dublin via Airport,46492-00016-1,1,4380_7778208_220101,4380_551 -4380_77933,293,4380_44154,Dublin via Airport,46490-00017-1,1,4380_7778208_220101,4380_551 -4380_77933,295,4380_44155,Dublin via Airport,46486-00019-1,1,4380_7778208_220101,4380_551 -4380_77933,294,4380_44156,Dublin via Airport,46484-00018-1,1,4380_7778208_220101,4380_551 -4380_77933,296,4380_44157,Dublin via Airport,46488-00021-1,1,4380_7778208_220101,4380_551 -4380_77948,286,4380_4416,Dublin,1627-00010-1,1,4380_7778208_1030106,4380_42 -4380_77933,285,4380_44165,Dublin,46578-00009-1,1,4380_7778208_221002,4380_554 -4380_77933,286,4380_44166,Dublin,46580-00010-1,1,4380_7778208_221002,4380_554 -4380_77933,297,4380_44167,Dublin,46623-00008-1,1,4380_7778208_221007,4380_554 -4380_77933,287,4380_44168,Dublin,46574-00012-1,1,4380_7778208_221002,4380_554 -4380_77933,288,4380_44169,Dublin,46572-00011-1,1,4380_7778208_221002,4380_554 -4380_77948,288,4380_4417,Dublin,1639-00011-1,1,4380_7778208_1030106,4380_42 -4380_77933,289,4380_44170,Dublin,46576-00014-1,1,4380_7778208_221002,4380_554 -4380_77933,290,4380_44171,Dublin,46579-00015-1,1,4380_7778208_221002,4380_554 -4380_77933,291,4380_44172,Dublin,46570-00013-1,1,4380_7778208_221002,4380_554 -4380_77933,292,4380_44173,Dublin,46581-00016-1,1,4380_7778208_221002,4380_554 -4380_77933,293,4380_44174,Dublin,46573-00017-1,1,4380_7778208_221002,4380_554 -4380_77933,295,4380_44175,Dublin,46577-00019-1,1,4380_7778208_221002,4380_554 -4380_77933,294,4380_44176,Dublin,46575-00018-1,1,4380_7778208_221002,4380_554 -4380_77933,296,4380_44177,Dublin,46571-00021-1,1,4380_7778208_221002,4380_554 -4380_77933,297,4380_44179,Dublin,46620-00008-1,1,4380_7778208_221005,4380_556 -4380_77948,287,4380_4418,Dublin,1651-00012-1,1,4380_7778208_1030106,4380_42 -4380_77988,297,4380_44187,Carrigaline,81423-00008-1,0,4380_7778208_2200202,4380_559 -4380_77988,285,4380_44188,Carrigaline,81430-00009-1,0,4380_7778208_2200202,4380_561 -4380_77988,286,4380_44189,Carrigaline,81419-00010-1,0,4380_7778208_2200202,4380_561 -4380_77948,289,4380_4419,Dublin,1603-00014-1,1,4380_7778208_1030106,4380_42 -4380_77988,288,4380_44190,Carrigaline,81424-00011-1,0,4380_7778208_2200202,4380_561 -4380_77988,287,4380_44191,Carrigaline,81428-00012-1,0,4380_7778208_2200202,4380_561 -4380_77988,291,4380_44192,Fort Camden,81421-00013-1,0,4380_7778208_2200202,4380_557 -4380_77988,289,4380_44193,Carrigaline,81426-00014-1,0,4380_7778208_2200202,4380_561 -4380_77988,292,4380_44194,Carrigaline,81420-00016-1,0,4380_7778208_2200202,4380_561 -4380_77988,290,4380_44195,Carrigaline,81431-00015-1,0,4380_7778208_2200202,4380_561 -4380_77988,294,4380_44196,Carrigaline,81429-00018-1,0,4380_7778208_2200202,4380_561 -4380_77988,295,4380_44197,Carrigaline,81427-00019-1,0,4380_7778208_2200202,4380_561 -4380_77988,293,4380_44198,Carrigaline,81425-00017-1,0,4380_7778208_2200202,4380_561 -4380_77988,296,4380_44199,Fort Camden,81422-00021-1,0,4380_7778208_2200202,4380_557 -4380_77948,290,4380_4420,Dublin,52085-00015-1,1,4380_7778208_1030106,4380_42 -4380_77988,285,4380_44205,Carrigaline,81980-00009-1,0,4380_7778208_2200206,4380_559 -4380_77988,286,4380_44206,Carrigaline,81978-00010-1,0,4380_7778208_2200206,4380_559 -4380_77988,288,4380_44207,Carrigaline,81974-00011-1,0,4380_7778208_2200206,4380_559 -4380_77988,287,4380_44208,Carrigaline,81982-00012-1,0,4380_7778208_2200206,4380_559 -4380_77988,289,4380_44209,Carrigaline,81976-00014-1,0,4380_7778208_2200206,4380_559 -4380_77948,292,4380_4421,Dublin,52083-00016-1,1,4380_7778208_1030106,4380_42 -4380_77988,292,4380_44210,Carrigaline,81979-00016-1,0,4380_7778208_2200206,4380_559 -4380_77988,290,4380_44211,Carrigaline,81981-00015-1,0,4380_7778208_2200206,4380_559 -4380_77988,294,4380_44212,Carrigaline,81983-00018-1,0,4380_7778208_2200206,4380_559 -4380_77988,295,4380_44213,Carrigaline,81977-00019-1,0,4380_7778208_2200206,4380_559 -4380_77988,293,4380_44214,Carrigaline,81975-00017-1,0,4380_7778208_2200206,4380_559 -4380_77948,293,4380_4422,Dublin,52082-00017-1,1,4380_7778208_1030106,4380_42 -4380_77988,297,4380_44222,Carrigaline,81769-00008-1,0,4380_7778208_2200204,4380_559 -4380_77988,285,4380_44223,Fort Camden,82125-00009-1,0,4380_7778208_2200207,4380_557 -4380_77988,286,4380_44224,Fort Camden,82127-00010-1,0,4380_7778208_2200207,4380_557 -4380_77988,288,4380_44225,Fort Camden,82129-00011-1,0,4380_7778208_2200207,4380_557 -4380_77988,287,4380_44226,Fort Camden,82123-00012-1,0,4380_7778208_2200207,4380_557 -4380_77988,291,4380_44227,Fort Camden,81984-00013-1,0,4380_7778208_2200206,4380_557 -4380_77988,289,4380_44228,Fort Camden,82121-00014-1,0,4380_7778208_2200207,4380_557 -4380_77988,292,4380_44229,Fort Camden,82128-00016-1,0,4380_7778208_2200207,4380_557 -4380_77948,294,4380_4423,Dublin,52086-00018-1,1,4380_7778208_1030106,4380_42 -4380_77988,290,4380_44230,Fort Camden,82126-00015-1,0,4380_7778208_2200207,4380_557 -4380_77988,294,4380_44231,Fort Camden,82124-00018-1,0,4380_7778208_2200207,4380_557 -4380_77988,295,4380_44232,Fort Camden,82122-00019-1,0,4380_7778208_2200207,4380_557 -4380_77988,293,4380_44233,Fort Camden,82130-00017-1,0,4380_7778208_2200207,4380_557 -4380_77988,296,4380_44234,Fort Camden,81985-00021-1,0,4380_7778208_2200206,4380_557 -4380_77948,295,4380_4424,Dublin,52084-00019-1,1,4380_7778208_1030106,4380_42 -4380_77988,285,4380_44240,Carrigaline,81275-00009-1,0,4380_7778208_2200201,4380_559 -4380_77988,286,4380_44241,Carrigaline,81281-00010-1,0,4380_7778208_2200201,4380_559 -4380_77988,288,4380_44242,Carrigaline,81277-00011-1,0,4380_7778208_2200201,4380_559 -4380_77988,287,4380_44243,Carrigaline,81283-00012-1,0,4380_7778208_2200201,4380_559 -4380_77988,289,4380_44244,Carrigaline,81273-00014-1,0,4380_7778208_2200201,4380_559 -4380_77988,292,4380_44245,Carrigaline,81282-00016-1,0,4380_7778208_2200201,4380_559 -4380_77988,290,4380_44246,Carrigaline,81276-00015-1,0,4380_7778208_2200201,4380_559 -4380_77988,294,4380_44247,Carrigaline,81284-00018-1,0,4380_7778208_2200201,4380_559 -4380_77988,295,4380_44248,Carrigaline,81274-00019-1,0,4380_7778208_2200201,4380_559 -4380_77988,293,4380_44249,Carrigaline,81278-00017-1,0,4380_7778208_2200201,4380_559 -4380_77988,297,4380_44251,Fort Camden,81285-00008-1,0,4380_7778208_2200201,4380_557 -4380_77988,285,4380_44258,Fort Camden,81631-00009-1,0,4380_7778208_2200203,4380_557 -4380_77988,286,4380_44259,Fort Camden,81633-00010-1,0,4380_7778208_2200203,4380_557 -4380_77988,288,4380_44260,Fort Camden,81639-00011-1,0,4380_7778208_2200203,4380_557 -4380_77988,287,4380_44261,Fort Camden,81641-00012-1,0,4380_7778208_2200203,4380_557 -4380_77988,291,4380_44262,Carrigaline,81637-00013-1,0,4380_7778208_2200203,4380_559 -4380_77988,289,4380_44263,Fort Camden,81635-00014-1,0,4380_7778208_2200203,4380_557 -4380_77988,292,4380_44264,Fort Camden,81634-00016-1,0,4380_7778208_2200203,4380_557 -4380_77988,290,4380_44265,Fort Camden,81632-00015-1,0,4380_7778208_2200203,4380_557 -4380_77988,294,4380_44266,Fort Camden,81642-00018-1,0,4380_7778208_2200203,4380_557 -4380_77988,295,4380_44267,Fort Camden,81636-00019-1,0,4380_7778208_2200203,4380_557 -4380_77988,293,4380_44268,Fort Camden,81640-00017-1,0,4380_7778208_2200203,4380_557 -4380_77988,296,4380_44269,Carrigaline,81638-00021-1,0,4380_7778208_2200203,4380_559 -4380_77988,297,4380_44276,Carrigaline,81643-00008-1,0,4380_7778208_2200203,4380_559 -4380_77988,285,4380_44277,Carrigaline,81772-00009-1,0,4380_7778208_2200204,4380_561 -4380_77988,286,4380_44278,Carrigaline,81778-00010-1,0,4380_7778208_2200204,4380_561 -4380_77988,288,4380_44279,Carrigaline,81770-00011-1,0,4380_7778208_2200204,4380_561 -4380_77988,287,4380_44280,Carrigaline,81776-00012-1,0,4380_7778208_2200204,4380_561 -4380_77988,289,4380_44281,Carrigaline,81774-00014-1,0,4380_7778208_2200204,4380_561 -4380_77988,292,4380_44282,Carrigaline,81779-00016-1,0,4380_7778208_2200204,4380_561 -4380_77988,290,4380_44283,Carrigaline,81773-00015-1,0,4380_7778208_2200204,4380_561 -4380_77988,294,4380_44284,Carrigaline,81777-00018-1,0,4380_7778208_2200204,4380_561 -4380_77988,295,4380_44285,Carrigaline,81775-00019-1,0,4380_7778208_2200204,4380_561 -4380_77988,293,4380_44286,Carrigaline,81771-00017-1,0,4380_7778208_2200204,4380_561 -4380_77988,291,4380_44288,Fort Camden,81780-00013-1,0,4380_7778208_2200204,4380_557 -4380_77988,296,4380_44289,Fort Camden,81781-00021-1,0,4380_7778208_2200204,4380_557 -4380_77988,285,4380_44295,Fort Camden,81885-00009-1,0,4380_7778208_2200205,4380_557 -4380_77988,286,4380_44296,Fort Camden,81887-00010-1,0,4380_7778208_2200205,4380_557 -4380_77988,288,4380_44297,Fort Camden,81891-00011-1,0,4380_7778208_2200205,4380_557 -4380_77988,287,4380_44298,Fort Camden,81883-00012-1,0,4380_7778208_2200205,4380_557 -4380_77988,289,4380_44299,Fort Camden,81889-00014-1,0,4380_7778208_2200205,4380_557 -4380_77948,285,4380_4430,Dublin,1845-00009-1,1,4380_7778208_1030109,4380_42 -4380_77988,292,4380_44300,Fort Camden,81888-00016-1,0,4380_7778208_2200205,4380_557 -4380_77988,290,4380_44301,Fort Camden,81886-00015-1,0,4380_7778208_2200205,4380_557 -4380_77988,294,4380_44302,Fort Camden,81884-00018-1,0,4380_7778208_2200205,4380_557 -4380_77988,295,4380_44303,Fort Camden,81890-00019-1,0,4380_7778208_2200205,4380_557 -4380_77988,293,4380_44304,Fort Camden,81892-00017-1,0,4380_7778208_2200205,4380_557 -4380_77988,297,4380_44306,Crosshaven,81996-00008-1,0,4380_7778208_2200206,4380_558 -4380_77948,286,4380_4431,Dublin,1855-00010-1,1,4380_7778208_1030109,4380_42 -4380_77988,285,4380_44313,Carrigaline,81453-00009-1,0,4380_7778208_2200202,4380_559 -4380_77988,286,4380_44314,Carrigaline,81449-00010-1,0,4380_7778208_2200202,4380_559 -4380_77988,288,4380_44315,Carrigaline,81451-00011-1,0,4380_7778208_2200202,4380_559 -4380_77988,287,4380_44316,Carrigaline,81445-00012-1,0,4380_7778208_2200202,4380_559 -4380_77988,291,4380_44317,Carrigaline,81286-00013-1,0,4380_7778208_2200201,4380_561 -4380_77988,289,4380_44318,Carrigaline,81447-00014-1,0,4380_7778208_2200202,4380_559 -4380_77988,292,4380_44319,Carrigaline,81450-00016-1,0,4380_7778208_2200202,4380_559 -4380_77948,288,4380_4432,Dublin,1865-00011-1,1,4380_7778208_1030109,4380_42 -4380_77988,290,4380_44320,Carrigaline,81454-00015-1,0,4380_7778208_2200202,4380_559 -4380_77988,294,4380_44321,Carrigaline,81446-00018-1,0,4380_7778208_2200202,4380_559 -4380_77988,295,4380_44322,Carrigaline,81448-00019-1,0,4380_7778208_2200202,4380_559 -4380_77988,293,4380_44323,Carrigaline,81452-00017-1,0,4380_7778208_2200202,4380_559 -4380_77988,296,4380_44324,Carrigaline,81287-00021-1,0,4380_7778208_2200201,4380_561 -4380_77948,287,4380_4433,Dublin,1875-00012-1,1,4380_7778208_1030109,4380_42 -4380_77988,297,4380_44332,Carrigaline,81455-00008-1,0,4380_7778208_2200202,4380_559 -4380_77988,285,4380_44333,Fort Camden,82236-00009-1,0,4380_7778208_2200208,4380_557 -4380_77988,286,4380_44334,Fort Camden,82232-00010-1,0,4380_7778208_2200208,4380_557 -4380_77988,288,4380_44335,Fort Camden,82230-00011-1,0,4380_7778208_2200208,4380_557 -4380_77988,287,4380_44336,Fort Camden,82234-00012-1,0,4380_7778208_2200208,4380_557 -4380_77988,291,4380_44337,Fort Camden,81456-00013-1,0,4380_7778208_2200202,4380_563 -4380_77988,289,4380_44338,Fort Camden,82228-00014-1,0,4380_7778208_2200208,4380_557 -4380_77988,292,4380_44339,Fort Camden,82233-00016-1,0,4380_7778208_2200208,4380_557 -4380_77948,289,4380_4434,Dublin,1835-00014-1,1,4380_7778208_1030109,4380_42 -4380_77988,290,4380_44340,Fort Camden,82237-00015-1,0,4380_7778208_2200208,4380_557 -4380_77988,294,4380_44341,Fort Camden,82235-00018-1,0,4380_7778208_2200208,4380_557 -4380_77988,295,4380_44342,Fort Camden,82229-00019-1,0,4380_7778208_2200208,4380_557 -4380_77988,293,4380_44343,Fort Camden,82231-00017-1,0,4380_7778208_2200208,4380_557 -4380_77988,296,4380_44344,Fort Camden,81457-00021-1,0,4380_7778208_2200202,4380_563 -4380_77948,290,4380_4435,Dublin,52286-00015-1,1,4380_7778208_1030109,4380_42 -4380_77988,285,4380_44351,Carrigaline,82700-00009-1,0,4380_7778208_2200212,4380_559 -4380_77988,286,4380_44352,Carrigaline,82704-00010-1,0,4380_7778208_2200212,4380_559 -4380_77988,288,4380_44353,Carrigaline,82702-00011-1,0,4380_7778208_2200212,4380_559 -4380_77988,287,4380_44354,Carrigaline,82706-00012-1,0,4380_7778208_2200212,4380_559 -4380_77988,291,4380_44355,Carrigaline,82345-00013-1,0,4380_7778208_2200209,4380_561 -4380_77988,289,4380_44356,Carrigaline,82708-00014-1,0,4380_7778208_2200212,4380_559 -4380_77988,292,4380_44357,Carrigaline,82705-00016-1,0,4380_7778208_2200212,4380_559 -4380_77988,290,4380_44358,Carrigaline,82701-00015-1,0,4380_7778208_2200212,4380_559 -4380_77988,294,4380_44359,Carrigaline,82707-00018-1,0,4380_7778208_2200212,4380_559 -4380_77948,292,4380_4436,Dublin,52282-00016-1,1,4380_7778208_1030109,4380_42 -4380_77988,295,4380_44360,Carrigaline,82709-00019-1,0,4380_7778208_2200212,4380_559 -4380_77988,293,4380_44361,Carrigaline,82703-00017-1,0,4380_7778208_2200212,4380_559 -4380_77988,296,4380_44362,Carrigaline,82346-00021-1,0,4380_7778208_2200209,4380_561 -4380_77988,297,4380_44364,Fort Camden,81893-00008-1,0,4380_7778208_2200205,4380_557 -4380_77948,293,4380_4437,Dublin,52284-00017-1,1,4380_7778208_1030109,4380_42 -4380_77988,285,4380_44371,Fort Camden,82351-00009-1,0,4380_7778208_2200209,4380_557 -4380_77988,286,4380_44372,Fort Camden,82355-00010-1,0,4380_7778208_2200209,4380_557 -4380_77988,288,4380_44373,Fort Camden,82347-00011-1,0,4380_7778208_2200209,4380_557 -4380_77988,287,4380_44374,Fort Camden,82353-00012-1,0,4380_7778208_2200209,4380_557 -4380_77988,291,4380_44375,Fort Camden,82238-00013-1,0,4380_7778208_2200208,4380_557 -4380_77988,289,4380_44376,Fort Camden,82349-00014-1,0,4380_7778208_2200209,4380_557 -4380_77988,292,4380_44377,Fort Camden,82356-00016-1,0,4380_7778208_2200209,4380_557 -4380_77988,290,4380_44378,Fort Camden,82352-00015-1,0,4380_7778208_2200209,4380_557 -4380_77988,294,4380_44379,Fort Camden,82354-00018-1,0,4380_7778208_2200209,4380_557 -4380_77948,294,4380_4438,Dublin,52283-00018-1,1,4380_7778208_1030109,4380_42 -4380_77988,295,4380_44380,Fort Camden,82350-00019-1,0,4380_7778208_2200209,4380_557 -4380_77988,293,4380_44381,Fort Camden,82348-00017-1,0,4380_7778208_2200209,4380_557 -4380_77988,296,4380_44382,Fort Camden,82239-00021-1,0,4380_7778208_2200208,4380_557 -4380_77948,295,4380_4439,Dublin,52285-00019-1,1,4380_7778208_1030109,4380_42 -4380_77988,297,4380_44390,Carrigaline,81785-00008-1,0,4380_7778208_2200204,4380_559 -4380_77988,285,4380_44391,Carrigaline,82002-00009-1,0,4380_7778208_2200206,4380_561 -4380_77988,286,4380_44392,Carrigaline,82000-00010-1,0,4380_7778208_2200206,4380_561 -4380_77988,288,4380_44393,Carrigaline,82008-00011-1,0,4380_7778208_2200206,4380_561 -4380_77988,287,4380_44394,Carrigaline,82006-00012-1,0,4380_7778208_2200206,4380_561 -4380_77988,291,4380_44395,Carrigaline,82458-00013-1,0,4380_7778208_2200210,4380_564 -4380_77988,289,4380_44396,Carrigaline,82004-00014-1,0,4380_7778208_2200206,4380_561 -4380_77988,292,4380_44397,Carrigaline,82001-00016-1,0,4380_7778208_2200206,4380_561 -4380_77988,290,4380_44398,Carrigaline,82003-00015-1,0,4380_7778208_2200206,4380_561 -4380_77988,294,4380_44399,Carrigaline,82007-00018-1,0,4380_7778208_2200206,4380_561 -4380_77988,295,4380_44400,Carrigaline,82005-00019-1,0,4380_7778208_2200206,4380_561 -4380_77988,293,4380_44401,Carrigaline,82009-00017-1,0,4380_7778208_2200206,4380_561 -4380_77988,296,4380_44402,Carrigaline,82459-00021-1,0,4380_7778208_2200210,4380_564 -4380_77988,285,4380_44409,Fort Camden,82462-00009-1,0,4380_7778208_2200210,4380_557 -4380_77988,286,4380_44410,Fort Camden,82466-00010-1,0,4380_7778208_2200210,4380_557 -4380_77988,288,4380_44411,Fort Camden,82468-00011-1,0,4380_7778208_2200210,4380_557 -4380_77988,287,4380_44412,Fort Camden,82464-00012-1,0,4380_7778208_2200210,4380_557 -4380_77988,291,4380_44413,Fort Camden,82010-00013-1,0,4380_7778208_2200206,4380_557 -4380_77988,289,4380_44414,Fort Camden,82460-00014-1,0,4380_7778208_2200210,4380_557 -4380_77988,292,4380_44415,Fort Camden,82467-00016-1,0,4380_7778208_2200210,4380_557 -4380_77988,290,4380_44416,Fort Camden,82463-00015-1,0,4380_7778208_2200210,4380_557 -4380_77988,294,4380_44417,Fort Camden,82465-00018-1,0,4380_7778208_2200210,4380_557 -4380_77988,295,4380_44418,Fort Camden,82461-00019-1,0,4380_7778208_2200210,4380_557 -4380_77988,293,4380_44419,Fort Camden,82469-00017-1,0,4380_7778208_2200210,4380_557 -4380_77988,296,4380_44420,Fort Camden,82011-00021-1,0,4380_7778208_2200206,4380_557 -4380_77988,297,4380_44422,Crosshaven,81301-00008-1,0,4380_7778208_2200201,4380_558 -4380_77988,285,4380_44429,Carrigaline,82624-00009-1,0,4380_7778208_2200211,4380_559 -4380_77988,286,4380_44430,Carrigaline,82616-00010-1,0,4380_7778208_2200211,4380_559 -4380_77988,288,4380_44431,Carrigaline,82620-00011-1,0,4380_7778208_2200211,4380_559 -4380_77988,287,4380_44432,Carrigaline,82622-00012-1,0,4380_7778208_2200211,4380_559 -4380_77988,291,4380_44433,Carrigaline,81657-00013-1,0,4380_7778208_2200203,4380_561 -4380_77988,289,4380_44434,Carrigaline,82618-00014-1,0,4380_7778208_2200211,4380_559 -4380_77988,292,4380_44435,Carrigaline,82617-00016-1,0,4380_7778208_2200211,4380_559 -4380_77988,290,4380_44436,Carrigaline,82625-00015-1,0,4380_7778208_2200211,4380_559 -4380_77988,294,4380_44437,Carrigaline,82623-00018-1,0,4380_7778208_2200211,4380_559 -4380_77988,295,4380_44438,Carrigaline,82619-00019-1,0,4380_7778208_2200211,4380_559 -4380_77988,293,4380_44439,Carrigaline,82621-00017-1,0,4380_7778208_2200211,4380_559 -4380_77988,296,4380_44440,Carrigaline,81658-00021-1,0,4380_7778208_2200203,4380_561 -4380_77988,297,4380_44448,Carrigaline,81659-00008-1,0,4380_7778208_2200203,4380_559 -4380_77988,285,4380_44449,Fort Camden,82149-00009-1,0,4380_7778208_2200207,4380_557 -4380_77988,286,4380_44450,Fort Camden,82141-00010-1,0,4380_7778208_2200207,4380_557 -4380_77988,288,4380_44451,Fort Camden,82143-00011-1,0,4380_7778208_2200207,4380_557 -4380_77988,287,4380_44452,Fort Camden,82147-00012-1,0,4380_7778208_2200207,4380_557 -4380_77988,291,4380_44453,Fort Camden,81796-00013-1,0,4380_7778208_2200204,4380_557 -4380_77988,289,4380_44454,Fort Camden,82145-00014-1,0,4380_7778208_2200207,4380_557 -4380_77988,292,4380_44455,Fort Camden,82142-00016-1,0,4380_7778208_2200207,4380_557 -4380_77988,290,4380_44456,Fort Camden,82150-00015-1,0,4380_7778208_2200207,4380_557 -4380_77988,294,4380_44457,Fort Camden,82148-00018-1,0,4380_7778208_2200207,4380_557 -4380_77988,295,4380_44458,Fort Camden,82146-00019-1,0,4380_7778208_2200207,4380_557 -4380_77988,293,4380_44459,Fort Camden,82144-00017-1,0,4380_7778208_2200207,4380_557 -4380_77988,296,4380_44460,Fort Camden,81797-00021-1,0,4380_7778208_2200204,4380_557 -4380_77988,285,4380_44467,Carrigaline,81304-00009-1,0,4380_7778208_2200201,4380_559 -4380_77988,286,4380_44468,Carrigaline,81302-00010-1,0,4380_7778208_2200201,4380_559 -4380_77988,288,4380_44469,Carrigaline,81308-00011-1,0,4380_7778208_2200201,4380_559 -4380_77948,297,4380_4447,Dublin,1247-00008-1,1,4380_7778208_1030101,4380_42 -4380_77988,287,4380_44470,Carrigaline,81310-00012-1,0,4380_7778208_2200201,4380_559 -4380_77988,291,4380_44471,Carrigaline,81306-00013-1,0,4380_7778208_2200201,4380_561 -4380_77988,289,4380_44472,Carrigaline,81312-00014-1,0,4380_7778208_2200201,4380_559 -4380_77988,292,4380_44473,Carrigaline,81303-00016-1,0,4380_7778208_2200201,4380_559 -4380_77988,290,4380_44474,Carrigaline,81305-00015-1,0,4380_7778208_2200201,4380_559 -4380_77988,294,4380_44475,Carrigaline,81311-00018-1,0,4380_7778208_2200201,4380_559 -4380_77988,295,4380_44476,Carrigaline,81313-00019-1,0,4380_7778208_2200201,4380_559 -4380_77988,293,4380_44477,Carrigaline,81309-00017-1,0,4380_7778208_2200201,4380_559 -4380_77988,296,4380_44478,Carrigaline,81307-00021-1,0,4380_7778208_2200201,4380_561 -4380_77948,291,4380_4448,Dublin,1827-00013-1,1,4380_7778208_1030108,4380_43 -4380_77988,297,4380_44480,Fort Camden,82012-00008-1,0,4380_7778208_2200206,4380_557 -4380_77988,285,4380_44487,Fort Camden,81666-00009-1,0,4380_7778208_2200203,4380_557 -4380_77988,286,4380_44488,Fort Camden,81668-00010-1,0,4380_7778208_2200203,4380_557 -4380_77988,288,4380_44489,Fort Camden,81664-00011-1,0,4380_7778208_2200203,4380_557 -4380_77948,296,4380_4449,Dublin,52222-00021-1,1,4380_7778208_1030108,4380_43 -4380_77988,287,4380_44490,Fort Camden,81662-00012-1,0,4380_7778208_2200203,4380_557 -4380_77988,291,4380_44491,Fort Camden,82626-00013-1,0,4380_7778208_2200211,4380_557 -4380_77988,289,4380_44492,Fort Camden,81660-00014-1,0,4380_7778208_2200203,4380_557 -4380_77988,292,4380_44493,Fort Camden,81669-00016-1,0,4380_7778208_2200203,4380_557 -4380_77988,290,4380_44494,Fort Camden,81667-00015-1,0,4380_7778208_2200203,4380_557 -4380_77988,294,4380_44495,Fort Camden,81663-00018-1,0,4380_7778208_2200203,4380_557 -4380_77988,295,4380_44496,Fort Camden,81661-00019-1,0,4380_7778208_2200203,4380_557 -4380_77988,293,4380_44497,Fort Camden,81665-00017-1,0,4380_7778208_2200203,4380_557 -4380_77988,296,4380_44498,Fort Camden,82627-00021-1,0,4380_7778208_2200211,4380_557 -4380_77948,285,4380_4450,Dublin,1277-00009-1,1,4380_7778208_1030102,4380_42 -4380_77988,297,4380_44506,Carrigaline,81479-00008-1,0,4380_7778208_2200202,4380_559 -4380_77988,285,4380_44507,Carrigaline,81475-00009-1,0,4380_7778208_2200202,4380_561 -4380_77988,286,4380_44508,Carrigaline,81480-00010-1,0,4380_7778208_2200202,4380_561 -4380_77988,288,4380_44509,Carrigaline,81473-00011-1,0,4380_7778208_2200202,4380_561 -4380_77948,286,4380_4451,Dublin,1287-00010-1,1,4380_7778208_1030102,4380_42 -4380_77988,287,4380_44510,Carrigaline,81471-00012-1,0,4380_7778208_2200202,4380_561 -4380_77988,291,4380_44511,Carrigaline,82369-00013-1,0,4380_7778208_2200209,4380_561 -4380_77988,289,4380_44512,Carrigaline,81477-00014-1,0,4380_7778208_2200202,4380_561 -4380_77988,292,4380_44513,Carrigaline,81481-00016-1,0,4380_7778208_2200202,4380_561 -4380_77988,290,4380_44514,Carrigaline,81476-00015-1,0,4380_7778208_2200202,4380_561 -4380_77988,294,4380_44515,Carrigaline,81472-00018-1,0,4380_7778208_2200202,4380_561 -4380_77988,295,4380_44516,Carrigaline,81478-00019-1,0,4380_7778208_2200202,4380_561 -4380_77988,293,4380_44517,Carrigaline,81474-00017-1,0,4380_7778208_2200202,4380_561 -4380_77988,296,4380_44518,Carrigaline,82370-00021-1,0,4380_7778208_2200209,4380_561 -4380_77948,288,4380_4452,Dublin,1297-00011-1,1,4380_7778208_1030102,4380_42 -4380_77988,297,4380_44526,Crosshaven,81905-00008-1,0,4380_7778208_2200205,4380_558 -4380_77988,285,4380_44527,Fort Camden,81799-00009-1,0,4380_7778208_2200204,4380_557 -4380_77988,286,4380_44528,Fort Camden,81805-00010-1,0,4380_7778208_2200204,4380_557 -4380_77988,288,4380_44529,Fort Camden,81801-00011-1,0,4380_7778208_2200204,4380_557 -4380_77948,287,4380_4453,Dublin,1307-00012-1,1,4380_7778208_1030102,4380_42 -4380_77988,287,4380_44530,Fort Camden,81807-00012-1,0,4380_7778208_2200204,4380_557 -4380_77988,291,4380_44531,Fort Camden,81482-00013-1,0,4380_7778208_2200202,4380_557 -4380_77988,289,4380_44532,Fort Camden,81803-00014-1,0,4380_7778208_2200204,4380_557 -4380_77988,292,4380_44533,Fort Camden,81806-00016-1,0,4380_7778208_2200204,4380_557 -4380_77988,290,4380_44534,Fort Camden,81800-00015-1,0,4380_7778208_2200204,4380_557 -4380_77988,294,4380_44535,Fort Camden,81808-00018-1,0,4380_7778208_2200204,4380_557 -4380_77988,295,4380_44536,Fort Camden,81804-00019-1,0,4380_7778208_2200204,4380_557 -4380_77988,293,4380_44537,Fort Camden,81802-00017-1,0,4380_7778208_2200204,4380_557 -4380_77988,296,4380_44538,Fort Camden,81483-00021-1,0,4380_7778208_2200202,4380_557 -4380_77948,289,4380_4454,Dublin,1267-00014-1,1,4380_7778208_1030102,4380_42 -4380_77988,297,4380_44546,Carrigaline,82371-00008-1,0,4380_7778208_2200209,4380_559 -4380_77988,285,4380_44547,Carrigaline,81908-00009-1,0,4380_7778208_2200205,4380_561 -4380_77988,286,4380_44548,Carrigaline,81910-00010-1,0,4380_7778208_2200205,4380_561 -4380_77988,288,4380_44549,Carrigaline,81906-00011-1,0,4380_7778208_2200205,4380_561 -4380_77948,290,4380_4455,Dublin,51857-00015-1,1,4380_7778208_1030102,4380_42 -4380_77988,287,4380_44550,Carrigaline,81914-00012-1,0,4380_7778208_2200205,4380_561 -4380_77988,291,4380_44551,Carrigaline,82482-00013-1,0,4380_7778208_2200210,4380_561 -4380_77988,289,4380_44552,Carrigaline,81912-00014-1,0,4380_7778208_2200205,4380_561 -4380_77988,292,4380_44553,Carrigaline,81911-00016-1,0,4380_7778208_2200205,4380_561 -4380_77988,290,4380_44554,Carrigaline,81909-00015-1,0,4380_7778208_2200205,4380_561 -4380_77988,294,4380_44555,Carrigaline,81915-00018-1,0,4380_7778208_2200205,4380_561 -4380_77988,295,4380_44556,Carrigaline,81913-00019-1,0,4380_7778208_2200205,4380_561 -4380_77988,293,4380_44557,Carrigaline,81907-00017-1,0,4380_7778208_2200205,4380_561 -4380_77988,296,4380_44558,Carrigaline,82483-00021-1,0,4380_7778208_2200210,4380_561 -4380_77948,292,4380_4456,Dublin,51858-00016-1,1,4380_7778208_1030102,4380_42 -4380_77988,297,4380_44566,Fort Camden,81811-00008-1,0,4380_7778208_2200204,4380_557 -4380_77988,285,4380_44567,Fort Camden,82261-00009-1,0,4380_7778208_2200208,4380_563 -4380_77988,286,4380_44568,Fort Camden,82263-00010-1,0,4380_7778208_2200208,4380_563 -4380_77988,288,4380_44569,Fort Camden,82259-00011-1,0,4380_7778208_2200208,4380_563 -4380_77948,293,4380_4457,Dublin,51859-00017-1,1,4380_7778208_1030102,4380_42 -4380_77988,287,4380_44570,Fort Camden,82253-00012-1,0,4380_7778208_2200208,4380_563 -4380_77988,291,4380_44571,Fort Camden,82255-00013-1,0,4380_7778208_2200208,4380_557 -4380_77988,289,4380_44572,Fort Camden,82257-00014-1,0,4380_7778208_2200208,4380_563 -4380_77988,292,4380_44573,Fort Camden,82264-00016-1,0,4380_7778208_2200208,4380_563 -4380_77988,290,4380_44574,Fort Camden,82262-00015-1,0,4380_7778208_2200208,4380_563 -4380_77988,294,4380_44575,Fort Camden,82254-00018-1,0,4380_7778208_2200208,4380_563 -4380_77988,295,4380_44576,Fort Camden,82258-00019-1,0,4380_7778208_2200208,4380_563 -4380_77988,293,4380_44577,Fort Camden,82260-00017-1,0,4380_7778208_2200208,4380_563 -4380_77988,296,4380_44578,Fort Camden,82256-00021-1,0,4380_7778208_2200208,4380_557 -4380_77948,294,4380_4458,Dublin,51860-00018-1,1,4380_7778208_1030102,4380_42 -4380_77988,297,4380_44586,Carrigaline,81317-00008-1,0,4380_7778208_2200201,4380_559 -4380_77988,285,4380_44587,Carrigaline,82724-00009-1,0,4380_7778208_2200212,4380_559 -4380_77988,286,4380_44588,Carrigaline,82722-00010-1,0,4380_7778208_2200212,4380_559 -4380_77988,288,4380_44589,Carrigaline,82720-00011-1,0,4380_7778208_2200212,4380_559 -4380_77948,295,4380_4459,Dublin,51856-00019-1,1,4380_7778208_1030102,4380_42 -4380_77988,287,4380_44590,Carrigaline,82726-00012-1,0,4380_7778208_2200212,4380_559 -4380_77988,291,4380_44591,Carrigaline,81916-00013-1,0,4380_7778208_2200205,4380_561 -4380_77988,289,4380_44592,Carrigaline,82728-00014-1,0,4380_7778208_2200212,4380_559 -4380_77988,292,4380_44593,Carrigaline,82723-00016-1,0,4380_7778208_2200212,4380_559 -4380_77988,290,4380_44594,Carrigaline,82725-00015-1,0,4380_7778208_2200212,4380_559 -4380_77988,294,4380_44595,Carrigaline,82727-00018-1,0,4380_7778208_2200212,4380_559 -4380_77988,295,4380_44596,Carrigaline,82729-00019-1,0,4380_7778208_2200212,4380_559 -4380_77988,293,4380_44597,Carrigaline,82721-00017-1,0,4380_7778208_2200212,4380_559 -4380_77988,296,4380_44598,Carrigaline,81917-00021-1,0,4380_7778208_2200205,4380_561 -4380_77988,297,4380_44606,Crosshaven,82162-00008-1,0,4380_7778208_2200207,4380_558 -4380_77988,285,4380_44607,Fort Camden,82378-00009-1,0,4380_7778208_2200209,4380_557 -4380_77988,286,4380_44608,Fort Camden,82376-00010-1,0,4380_7778208_2200209,4380_557 -4380_77988,288,4380_44609,Fort Camden,82380-00011-1,0,4380_7778208_2200209,4380_557 -4380_77988,287,4380_44610,Fort Camden,82374-00012-1,0,4380_7778208_2200209,4380_557 -4380_77988,291,4380_44611,Fort Camden,81683-00013-1,0,4380_7778208_2200203,4380_557 -4380_77988,289,4380_44612,Fort Camden,82372-00014-1,0,4380_7778208_2200209,4380_557 -4380_77988,292,4380_44613,Fort Camden,82377-00016-1,0,4380_7778208_2200209,4380_557 -4380_77988,290,4380_44614,Fort Camden,82379-00015-1,0,4380_7778208_2200209,4380_557 -4380_77988,294,4380_44615,Fort Camden,82375-00018-1,0,4380_7778208_2200209,4380_557 -4380_77988,295,4380_44616,Fort Camden,82373-00019-1,0,4380_7778208_2200209,4380_557 -4380_77988,293,4380_44617,Fort Camden,82381-00017-1,0,4380_7778208_2200209,4380_557 -4380_77988,296,4380_44618,Fort Camden,81684-00021-1,0,4380_7778208_2200203,4380_557 -4380_77988,297,4380_44626,Carrigaline,82484-00008-1,0,4380_7778208_2200210,4380_559 -4380_77988,285,4380_44627,Carrigaline,82036-00009-1,0,4380_7778208_2200206,4380_559 -4380_77988,286,4380_44628,Carrigaline,82034-00010-1,0,4380_7778208_2200206,4380_559 -4380_77988,288,4380_44629,Carrigaline,82032-00011-1,0,4380_7778208_2200206,4380_559 -4380_77988,287,4380_44630,Carrigaline,82028-00012-1,0,4380_7778208_2200206,4380_559 -4380_77988,291,4380_44631,Carrigaline,82026-00013-1,0,4380_7778208_2200206,4380_559 -4380_77988,289,4380_44632,Carrigaline,82030-00014-1,0,4380_7778208_2200206,4380_559 -4380_77988,292,4380_44633,Carrigaline,82035-00016-1,0,4380_7778208_2200206,4380_559 -4380_77988,290,4380_44634,Carrigaline,82037-00015-1,0,4380_7778208_2200206,4380_559 -4380_77988,294,4380_44635,Carrigaline,82029-00018-1,0,4380_7778208_2200206,4380_559 -4380_77988,295,4380_44636,Carrigaline,82031-00019-1,0,4380_7778208_2200206,4380_559 -4380_77988,293,4380_44637,Carrigaline,82033-00017-1,0,4380_7778208_2200206,4380_559 -4380_77988,296,4380_44638,Carrigaline,82027-00021-1,0,4380_7778208_2200206,4380_559 -4380_77988,297,4380_44646,Fort Camden,82265-00008-1,0,4380_7778208_2200208,4380_557 -4380_77988,285,4380_44647,Fort Camden,82491-00009-1,0,4380_7778208_2200210,4380_563 -4380_77988,286,4380_44648,Fort Camden,82487-00010-1,0,4380_7778208_2200210,4380_563 -4380_77988,288,4380_44649,Fort Camden,82485-00011-1,0,4380_7778208_2200210,4380_563 -4380_77988,287,4380_44650,Fort Camden,82493-00012-1,0,4380_7778208_2200210,4380_563 -4380_77988,291,4380_44651,Fort Camden,81328-00013-1,0,4380_7778208_2200201,4380_557 -4380_77988,289,4380_44652,Fort Camden,82489-00014-1,0,4380_7778208_2200210,4380_563 -4380_77988,292,4380_44653,Fort Camden,82488-00016-1,0,4380_7778208_2200210,4380_563 -4380_77988,290,4380_44654,Fort Camden,82492-00015-1,0,4380_7778208_2200210,4380_563 -4380_77988,294,4380_44655,Fort Camden,82494-00018-1,0,4380_7778208_2200210,4380_563 -4380_77988,295,4380_44656,Fort Camden,82490-00019-1,0,4380_7778208_2200210,4380_563 -4380_77988,293,4380_44657,Fort Camden,82486-00017-1,0,4380_7778208_2200210,4380_563 -4380_77988,296,4380_44658,Fort Camden,81329-00021-1,0,4380_7778208_2200201,4380_557 -4380_77948,291,4380_4466,Dublin,1587-00013-1,1,4380_7778208_1030105,4380_42 -4380_77988,297,4380_44666,Carrigaline,81685-00008-1,0,4380_7778208_2200203,4380_559 -4380_77988,285,4380_44667,Carrigaline,82640-00009-1,0,4380_7778208_2200211,4380_561 -4380_77988,286,4380_44668,Carrigaline,82642-00010-1,0,4380_7778208_2200211,4380_561 -4380_77988,288,4380_44669,Carrigaline,82646-00011-1,0,4380_7778208_2200211,4380_561 -4380_77948,296,4380_4467,Dublin,52042-00021-1,1,4380_7778208_1030105,4380_42 -4380_77988,287,4380_44670,Carrigaline,82648-00012-1,0,4380_7778208_2200211,4380_561 -4380_77988,291,4380_44671,Carrigaline,81823-00013-1,0,4380_7778208_2200204,4380_564 -4380_77988,289,4380_44672,Carrigaline,82644-00014-1,0,4380_7778208_2200211,4380_561 -4380_77988,292,4380_44673,Carrigaline,82643-00016-1,0,4380_7778208_2200211,4380_561 -4380_77988,290,4380_44674,Carrigaline,82641-00015-1,0,4380_7778208_2200211,4380_561 -4380_77988,294,4380_44675,Carrigaline,82649-00018-1,0,4380_7778208_2200211,4380_561 -4380_77988,295,4380_44676,Carrigaline,82645-00019-1,0,4380_7778208_2200211,4380_561 -4380_77988,293,4380_44677,Carrigaline,82647-00017-1,0,4380_7778208_2200211,4380_561 -4380_77988,296,4380_44678,Carrigaline,81824-00021-1,0,4380_7778208_2200204,4380_564 -4380_77948,285,4380_4468,Dublin,1187-00009-1,1,4380_7778208_1030101,4380_42 -4380_77988,297,4380_44686,Crosshaven,82038-00008-1,0,4380_7778208_2200206,4380_558 -4380_77988,285,4380_44687,Fort Camden,82163-00009-1,0,4380_7778208_2200207,4380_557 -4380_77988,286,4380_44688,Fort Camden,82167-00010-1,0,4380_7778208_2200207,4380_557 -4380_77988,288,4380_44689,Fort Camden,82171-00011-1,0,4380_7778208_2200207,4380_557 -4380_77948,286,4380_4469,Dublin,1197-00010-1,1,4380_7778208_1030101,4380_42 -4380_77988,287,4380_44690,Fort Camden,82165-00012-1,0,4380_7778208_2200207,4380_557 -4380_77988,291,4380_44691,Fort Camden,82732-00013-1,0,4380_7778208_2200212,4380_563 -4380_77988,289,4380_44692,Fort Camden,82169-00014-1,0,4380_7778208_2200207,4380_557 -4380_77988,292,4380_44693,Fort Camden,82168-00016-1,0,4380_7778208_2200207,4380_557 -4380_77988,290,4380_44694,Fort Camden,82164-00015-1,0,4380_7778208_2200207,4380_557 -4380_77988,294,4380_44695,Fort Camden,82166-00018-1,0,4380_7778208_2200207,4380_557 -4380_77988,295,4380_44696,Fort Camden,82170-00019-1,0,4380_7778208_2200207,4380_557 -4380_77988,293,4380_44697,Fort Camden,82172-00017-1,0,4380_7778208_2200207,4380_557 -4380_77988,296,4380_44698,Fort Camden,82733-00021-1,0,4380_7778208_2200212,4380_563 -4380_77948,288,4380_4470,Dublin,1207-00011-1,1,4380_7778208_1030101,4380_42 -4380_77988,297,4380_44706,Carrigaline,81497-00008-1,0,4380_7778208_2200202,4380_559 -4380_77988,285,4380_44707,Carrigaline,81335-00009-1,0,4380_7778208_2200201,4380_561 -4380_77988,286,4380_44708,Carrigaline,81331-00010-1,0,4380_7778208_2200201,4380_561 -4380_77988,288,4380_44709,Carrigaline,81333-00011-1,0,4380_7778208_2200201,4380_561 -4380_77948,287,4380_4471,Dublin,1217-00012-1,1,4380_7778208_1030101,4380_42 -4380_77988,287,4380_44710,Carrigaline,81339-00012-1,0,4380_7778208_2200201,4380_561 -4380_77988,291,4380_44711,Carrigaline,82650-00013-1,0,4380_7778208_2200211,4380_564 -4380_77988,289,4380_44712,Carrigaline,81337-00014-1,0,4380_7778208_2200201,4380_561 -4380_77988,292,4380_44713,Carrigaline,81332-00016-1,0,4380_7778208_2200201,4380_561 -4380_77988,290,4380_44714,Carrigaline,81336-00015-1,0,4380_7778208_2200201,4380_561 -4380_77988,294,4380_44715,Carrigaline,81340-00018-1,0,4380_7778208_2200201,4380_561 -4380_77988,295,4380_44716,Carrigaline,81338-00019-1,0,4380_7778208_2200201,4380_561 -4380_77988,293,4380_44717,Carrigaline,81334-00017-1,0,4380_7778208_2200201,4380_561 -4380_77988,296,4380_44718,Carrigaline,82651-00021-1,0,4380_7778208_2200211,4380_564 -4380_77948,289,4380_4472,Dublin,1177-00014-1,1,4380_7778208_1030101,4380_42 -4380_77988,297,4380_44726,Fort Camden,81931-00008-1,0,4380_7778208_2200205,4380_557 -4380_77988,285,4380_44727,Fort Camden,81690-00009-1,0,4380_7778208_2200203,4380_563 -4380_77988,286,4380_44728,Fort Camden,81692-00010-1,0,4380_7778208_2200203,4380_563 -4380_77988,288,4380_44729,Fort Camden,81688-00011-1,0,4380_7778208_2200203,4380_563 -4380_77948,290,4380_4473,Dublin,51799-00015-1,1,4380_7778208_1030101,4380_42 -4380_77988,287,4380_44730,Fort Camden,81696-00012-1,0,4380_7778208_2200203,4380_563 -4380_77988,291,4380_44731,Fort Camden,82385-00013-1,0,4380_7778208_2200209,4380_557 -4380_77988,289,4380_44732,Fort Camden,81694-00014-1,0,4380_7778208_2200203,4380_563 -4380_77988,292,4380_44733,Fort Camden,81693-00016-1,0,4380_7778208_2200203,4380_563 -4380_77988,290,4380_44734,Fort Camden,81691-00015-1,0,4380_7778208_2200203,4380_563 -4380_77988,294,4380_44735,Fort Camden,81697-00018-1,0,4380_7778208_2200203,4380_563 -4380_77988,295,4380_44736,Fort Camden,81695-00019-1,0,4380_7778208_2200203,4380_563 -4380_77988,293,4380_44737,Fort Camden,81689-00017-1,0,4380_7778208_2200203,4380_563 -4380_77988,296,4380_44738,Fort Camden,82386-00021-1,0,4380_7778208_2200209,4380_557 -4380_77948,292,4380_4474,Dublin,51796-00016-1,1,4380_7778208_1030101,4380_42 -4380_77988,297,4380_44746,Carrigaline,82387-00008-1,0,4380_7778208_2200209,4380_559 -4380_77988,285,4380_44747,Carrigaline,81504-00009-1,0,4380_7778208_2200202,4380_561 -4380_77988,286,4380_44748,Carrigaline,81498-00010-1,0,4380_7778208_2200202,4380_561 -4380_77988,288,4380_44749,Carrigaline,81506-00011-1,0,4380_7778208_2200202,4380_561 -4380_77948,293,4380_4475,Dublin,51797-00017-1,1,4380_7778208_1030101,4380_42 -4380_77988,287,4380_44750,Carrigaline,81502-00012-1,0,4380_7778208_2200202,4380_561 -4380_77988,291,4380_44751,Carrigaline,81500-00013-1,0,4380_7778208_2200202,4380_564 -4380_77988,289,4380_44752,Carrigaline,81508-00014-1,0,4380_7778208_2200202,4380_561 -4380_77988,292,4380_44753,Carrigaline,81499-00016-1,0,4380_7778208_2200202,4380_561 -4380_77988,290,4380_44754,Carrigaline,81505-00015-1,0,4380_7778208_2200202,4380_561 -4380_77988,294,4380_44755,Carrigaline,81503-00018-1,0,4380_7778208_2200202,4380_561 -4380_77988,295,4380_44756,Carrigaline,81509-00019-1,0,4380_7778208_2200202,4380_561 -4380_77988,293,4380_44757,Carrigaline,81507-00017-1,0,4380_7778208_2200202,4380_561 -4380_77988,296,4380_44758,Carrigaline,81501-00021-1,0,4380_7778208_2200202,4380_564 -4380_77948,294,4380_4476,Dublin,51800-00018-1,1,4380_7778208_1030101,4380_42 -4380_77988,297,4380_44766,Crosshaven,81827-00008-1,0,4380_7778208_2200204,4380_558 -4380_77988,285,4380_44767,Fort Camden,81832-00009-1,0,4380_7778208_2200204,4380_557 -4380_77988,286,4380_44768,Fort Camden,81830-00010-1,0,4380_7778208_2200204,4380_557 -4380_77988,288,4380_44769,Fort Camden,81828-00011-1,0,4380_7778208_2200204,4380_557 -4380_77948,295,4380_4477,Dublin,51798-00019-1,1,4380_7778208_1030101,4380_42 -4380_77988,287,4380_44770,Fort Camden,81834-00012-1,0,4380_7778208_2200204,4380_557 -4380_77988,291,4380_44771,Fort Camden,82498-00013-1,0,4380_7778208_2200210,4380_563 -4380_77988,289,4380_44772,Fort Camden,81825-00014-1,0,4380_7778208_2200204,4380_557 -4380_77988,292,4380_44773,Fort Camden,81831-00016-1,0,4380_7778208_2200204,4380_557 -4380_77988,290,4380_44774,Fort Camden,81833-00015-1,0,4380_7778208_2200204,4380_557 -4380_77988,294,4380_44775,Fort Camden,81835-00018-1,0,4380_7778208_2200204,4380_557 -4380_77988,295,4380_44776,Fort Camden,81826-00019-1,0,4380_7778208_2200204,4380_557 -4380_77988,293,4380_44777,Fort Camden,81829-00017-1,0,4380_7778208_2200204,4380_557 -4380_77988,296,4380_44778,Fort Camden,82499-00021-1,0,4380_7778208_2200210,4380_563 -4380_77988,297,4380_44786,Carrigaline,81343-00008-1,0,4380_7778208_2200201,4380_559 -4380_77988,285,4380_44787,Carrigaline,81932-00009-1,0,4380_7778208_2200205,4380_561 -4380_77988,286,4380_44788,Carrigaline,81936-00010-1,0,4380_7778208_2200205,4380_561 -4380_77988,288,4380_44789,Carrigaline,81938-00011-1,0,4380_7778208_2200205,4380_561 -4380_77988,287,4380_44790,Carrigaline,81934-00012-1,0,4380_7778208_2200205,4380_561 -4380_77988,291,4380_44791,Carrigaline,82279-00013-1,0,4380_7778208_2200208,4380_561 -4380_77988,289,4380_44792,Carrigaline,81940-00014-1,0,4380_7778208_2200205,4380_561 -4380_77988,292,4380_44793,Carrigaline,81937-00016-1,0,4380_7778208_2200205,4380_561 -4380_77988,290,4380_44794,Carrigaline,81933-00015-1,0,4380_7778208_2200205,4380_561 -4380_77988,294,4380_44795,Carrigaline,81935-00018-1,0,4380_7778208_2200205,4380_561 -4380_77988,295,4380_44796,Carrigaline,81941-00019-1,0,4380_7778208_2200205,4380_561 -4380_77988,293,4380_44797,Carrigaline,81939-00017-1,0,4380_7778208_2200205,4380_561 -4380_77988,296,4380_44798,Carrigaline,82280-00021-1,0,4380_7778208_2200208,4380_561 -4380_77946,285,4380_448,Drogheda,50501-00009-1,1,4380_7778208_1000915,4380_6 -4380_77988,297,4380_44806,Fort Camden,82174-00008-1,0,4380_7778208_2200207,4380_557 -4380_77988,285,4380_44807,Fort Camden,82287-00009-1,0,4380_7778208_2200208,4380_563 -4380_77988,286,4380_44808,Fort Camden,82283-00010-1,0,4380_7778208_2200208,4380_563 -4380_77988,288,4380_44809,Fort Camden,82285-00011-1,0,4380_7778208_2200208,4380_563 -4380_77988,287,4380_44810,Fort Camden,82289-00012-1,0,4380_7778208_2200208,4380_563 -4380_77988,291,4380_44811,Fort Camden,81942-00013-1,0,4380_7778208_2200205,4380_565 -4380_77988,289,4380_44812,Fort Camden,82281-00014-1,0,4380_7778208_2200208,4380_563 -4380_77988,292,4380_44813,Fort Camden,82284-00016-1,0,4380_7778208_2200208,4380_563 -4380_77988,290,4380_44814,Fort Camden,82288-00015-1,0,4380_7778208_2200208,4380_563 -4380_77988,294,4380_44815,Fort Camden,82290-00018-1,0,4380_7778208_2200208,4380_563 -4380_77988,295,4380_44816,Fort Camden,82282-00019-1,0,4380_7778208_2200208,4380_563 -4380_77988,293,4380_44817,Fort Camden,82286-00017-1,0,4380_7778208_2200208,4380_563 -4380_77988,296,4380_44818,Fort Camden,81943-00021-1,0,4380_7778208_2200205,4380_565 -4380_77988,297,4380_44826,Carrigaline,82510-00008-1,0,4380_7778208_2200210,4380_559 -4380_77988,285,4380_44827,Carrigaline,82754-00009-1,0,4380_7778208_2200212,4380_561 -4380_77988,286,4380_44828,Carrigaline,82748-00010-1,0,4380_7778208_2200212,4380_561 -4380_77988,288,4380_44829,Carrigaline,82752-00011-1,0,4380_7778208_2200212,4380_561 -4380_77948,291,4380_4483,Dublin,1525-00013-1,1,4380_7778208_1030104,4380_42 -4380_77988,287,4380_44830,Carrigaline,82750-00012-1,0,4380_7778208_2200212,4380_561 -4380_77988,291,4380_44831,Carrigaline,81699-00013-1,0,4380_7778208_2200203,4380_564 -4380_77988,289,4380_44832,Carrigaline,82746-00014-1,0,4380_7778208_2200212,4380_561 -4380_77988,292,4380_44833,Carrigaline,82749-00016-1,0,4380_7778208_2200212,4380_561 -4380_77988,290,4380_44834,Carrigaline,82755-00015-1,0,4380_7778208_2200212,4380_561 -4380_77988,294,4380_44835,Carrigaline,82751-00018-1,0,4380_7778208_2200212,4380_561 -4380_77988,295,4380_44836,Carrigaline,82747-00019-1,0,4380_7778208_2200212,4380_561 -4380_77988,293,4380_44837,Carrigaline,82753-00017-1,0,4380_7778208_2200212,4380_561 -4380_77988,296,4380_44838,Carrigaline,81700-00021-1,0,4380_7778208_2200203,4380_564 -4380_77948,296,4380_4484,Dublin,51977-00021-1,1,4380_7778208_1030104,4380_42 -4380_77988,297,4380_44846,Crosshaven,82291-00008-1,0,4380_7778208_2200208,4380_558 -4380_77988,285,4380_44847,Fort Camden,82832-00009-1,0,4380_7778208_2200213,4380_557 -4380_77988,286,4380_44848,Fort Camden,82824-00010-1,0,4380_7778208_2200213,4380_557 -4380_77988,288,4380_44849,Fort Camden,82826-00011-1,0,4380_7778208_2200213,4380_557 -4380_77988,287,4380_44850,Fort Camden,82830-00012-1,0,4380_7778208_2200213,4380_557 -4380_77988,291,4380_44851,Fort Camden,82052-00013-1,0,4380_7778208_2200206,4380_563 -4380_77988,289,4380_44852,Fort Camden,82828-00014-1,0,4380_7778208_2200213,4380_557 -4380_77988,292,4380_44853,Fort Camden,82825-00016-1,0,4380_7778208_2200213,4380_557 -4380_77988,290,4380_44854,Fort Camden,82833-00015-1,0,4380_7778208_2200213,4380_557 -4380_77988,294,4380_44855,Fort Camden,82831-00018-1,0,4380_7778208_2200213,4380_557 -4380_77988,295,4380_44856,Fort Camden,82829-00019-1,0,4380_7778208_2200213,4380_557 -4380_77988,293,4380_44857,Fort Camden,82827-00017-1,0,4380_7778208_2200213,4380_557 -4380_77988,296,4380_44858,Fort Camden,82053-00021-1,0,4380_7778208_2200206,4380_563 -4380_77988,297,4380_44866,Carrigaline,81701-00008-1,0,4380_7778208_2200203,4380_559 -4380_77988,285,4380_44867,Carrigaline,82058-00009-1,0,4380_7778208_2200206,4380_561 -4380_77988,286,4380_44868,Carrigaline,82054-00010-1,0,4380_7778208_2200206,4380_561 -4380_77988,288,4380_44869,Carrigaline,82060-00011-1,0,4380_7778208_2200206,4380_561 -4380_77988,287,4380_44870,Carrigaline,82056-00012-1,0,4380_7778208_2200206,4380_561 -4380_77988,291,4380_44871,Carrigaline,81354-00013-1,0,4380_7778208_2200201,4380_564 -4380_77988,289,4380_44872,Carrigaline,82062-00014-1,0,4380_7778208_2200206,4380_561 -4380_77988,292,4380_44873,Carrigaline,82055-00016-1,0,4380_7778208_2200206,4380_561 -4380_77988,290,4380_44874,Carrigaline,82059-00015-1,0,4380_7778208_2200206,4380_561 -4380_77988,294,4380_44875,Carrigaline,82057-00018-1,0,4380_7778208_2200206,4380_561 -4380_77988,295,4380_44876,Carrigaline,82063-00019-1,0,4380_7778208_2200206,4380_561 -4380_77988,293,4380_44877,Carrigaline,82061-00017-1,0,4380_7778208_2200206,4380_561 -4380_77988,296,4380_44878,Carrigaline,81355-00021-1,0,4380_7778208_2200201,4380_564 -4380_77988,297,4380_44886,Fort Camden,81523-00008-1,0,4380_7778208_2200202,4380_557 -4380_77988,285,4380_44887,Fort Camden,82403-00009-1,0,4380_7778208_2200209,4380_563 -4380_77988,286,4380_44888,Fort Camden,82405-00010-1,0,4380_7778208_2200209,4380_563 -4380_77988,288,4380_44889,Fort Camden,82409-00011-1,0,4380_7778208_2200209,4380_563 -4380_77988,287,4380_44890,Fort Camden,82401-00012-1,0,4380_7778208_2200209,4380_563 -4380_77988,291,4380_44891,Fort Camden,81839-00013-1,0,4380_7778208_2200204,4380_565 -4380_77988,289,4380_44892,Fort Camden,82407-00014-1,0,4380_7778208_2200209,4380_563 -4380_77988,292,4380_44893,Fort Camden,82406-00016-1,0,4380_7778208_2200209,4380_563 -4380_77988,290,4380_44894,Fort Camden,82404-00015-1,0,4380_7778208_2200209,4380_563 -4380_77988,294,4380_44895,Fort Camden,82402-00018-1,0,4380_7778208_2200209,4380_563 -4380_77988,295,4380_44896,Fort Camden,82408-00019-1,0,4380_7778208_2200209,4380_563 -4380_77988,293,4380_44897,Fort Camden,82410-00017-1,0,4380_7778208_2200209,4380_563 -4380_77988,296,4380_44898,Fort Camden,81840-00021-1,0,4380_7778208_2200204,4380_565 -4380_77946,286,4380_449,Drogheda,50503-00010-1,1,4380_7778208_1000915,4380_6 -4380_77988,297,4380_44906,Carrigaline,82064-00008-1,0,4380_7778208_2200206,4380_559 -4380_77988,285,4380_44907,Carrigaline,82668-00009-1,0,4380_7778208_2200211,4380_561 -4380_77988,286,4380_44908,Carrigaline,82670-00010-1,0,4380_7778208_2200211,4380_561 -4380_77988,288,4380_44909,Carrigaline,82664-00011-1,0,4380_7778208_2200211,4380_561 -4380_77988,287,4380_44910,Carrigaline,82672-00012-1,0,4380_7778208_2200211,4380_561 -4380_77988,291,4380_44911,Carrigaline,82756-00013-1,0,4380_7778208_2200212,4380_559 -4380_77988,289,4380_44912,Carrigaline,82666-00014-1,0,4380_7778208_2200211,4380_561 -4380_77988,292,4380_44913,Carrigaline,82671-00016-1,0,4380_7778208_2200211,4380_561 -4380_77988,290,4380_44914,Carrigaline,82669-00015-1,0,4380_7778208_2200211,4380_561 -4380_77988,294,4380_44915,Carrigaline,82673-00018-1,0,4380_7778208_2200211,4380_561 -4380_77988,295,4380_44916,Carrigaline,82667-00019-1,0,4380_7778208_2200211,4380_561 -4380_77988,293,4380_44917,Carrigaline,82665-00017-1,0,4380_7778208_2200211,4380_561 -4380_77988,296,4380_44918,Carrigaline,82757-00021-1,0,4380_7778208_2200212,4380_559 -4380_77948,285,4380_4492,Dublin,1912-00009-1,1,4380_7778208_1030110,4380_43 -4380_77988,297,4380_44926,Fort Camden,81957-00008-1,0,4380_7778208_2200205,4380_557 -4380_77988,285,4380_44927,Fort Camden,82521-00009-1,0,4380_7778208_2200210,4380_563 -4380_77988,286,4380_44928,Fort Camden,82515-00010-1,0,4380_7778208_2200210,4380_563 -4380_77988,288,4380_44929,Fort Camden,82517-00011-1,0,4380_7778208_2200210,4380_563 -4380_77948,286,4380_4493,Dublin,1922-00010-1,1,4380_7778208_1030110,4380_43 -4380_77988,287,4380_44930,Fort Camden,82513-00012-1,0,4380_7778208_2200210,4380_563 -4380_77988,291,4380_44931,Fort Camden,82186-00013-1,0,4380_7778208_2200207,4380_557 -4380_77988,289,4380_44932,Fort Camden,82519-00014-1,0,4380_7778208_2200210,4380_563 -4380_77988,292,4380_44933,Fort Camden,82516-00016-1,0,4380_7778208_2200210,4380_563 -4380_77988,290,4380_44934,Fort Camden,82522-00015-1,0,4380_7778208_2200210,4380_563 -4380_77988,294,4380_44935,Fort Camden,82514-00018-1,0,4380_7778208_2200210,4380_563 -4380_77988,295,4380_44936,Fort Camden,82520-00019-1,0,4380_7778208_2200210,4380_563 -4380_77988,293,4380_44937,Fort Camden,82518-00017-1,0,4380_7778208_2200210,4380_563 -4380_77988,296,4380_44938,Fort Camden,82187-00021-1,0,4380_7778208_2200207,4380_557 -4380_77948,288,4380_4494,Dublin,1932-00011-1,1,4380_7778208_1030110,4380_43 -4380_77988,297,4380_44946,Carrigaline,82411-00008-1,0,4380_7778208_2200209,4380_559 -4380_77988,285,4380_44947,Carrigaline,81357-00009-1,0,4380_7778208_2200201,4380_561 -4380_77988,286,4380_44948,Carrigaline,81361-00010-1,0,4380_7778208_2200201,4380_561 -4380_77988,288,4380_44949,Carrigaline,81365-00011-1,0,4380_7778208_2200201,4380_561 -4380_77948,287,4380_4495,Dublin,1942-00012-1,1,4380_7778208_1030110,4380_43 -4380_77988,287,4380_44950,Carrigaline,81363-00012-1,0,4380_7778208_2200201,4380_561 -4380_77988,291,4380_44951,Carrigaline,82674-00013-1,0,4380_7778208_2200211,4380_564 -4380_77988,289,4380_44952,Carrigaline,81359-00014-1,0,4380_7778208_2200201,4380_561 -4380_77988,292,4380_44953,Carrigaline,81362-00016-1,0,4380_7778208_2200201,4380_561 -4380_77988,290,4380_44954,Carrigaline,81358-00015-1,0,4380_7778208_2200201,4380_561 -4380_77988,294,4380_44955,Carrigaline,81364-00018-1,0,4380_7778208_2200201,4380_561 -4380_77988,295,4380_44956,Carrigaline,81360-00019-1,0,4380_7778208_2200201,4380_561 -4380_77988,293,4380_44957,Carrigaline,81366-00017-1,0,4380_7778208_2200201,4380_561 -4380_77988,296,4380_44958,Carrigaline,82675-00021-1,0,4380_7778208_2200211,4380_564 -4380_77948,289,4380_4496,Dublin,1902-00014-1,1,4380_7778208_1030110,4380_43 -4380_77988,297,4380_44966,Fort Camden,81851-00008-1,0,4380_7778208_2200204,4380_557 -4380_77988,285,4380_44967,Fort Camden,82188-00009-1,0,4380_7778208_2200207,4380_563 -4380_77988,286,4380_44968,Fort Camden,82196-00010-1,0,4380_7778208_2200207,4380_563 -4380_77988,288,4380_44969,Fort Camden,82192-00011-1,0,4380_7778208_2200207,4380_563 -4380_77948,290,4380_4497,Dublin,52340-00015-1,1,4380_7778208_1030110,4380_43 -4380_77988,287,4380_44970,Fort Camden,82194-00012-1,0,4380_7778208_2200207,4380_563 -4380_77988,291,4380_44971,Fort Camden,81524-00013-1,0,4380_7778208_2200202,4380_557 -4380_77988,289,4380_44972,Fort Camden,82190-00014-1,0,4380_7778208_2200207,4380_563 -4380_77988,292,4380_44973,Fort Camden,82197-00016-1,0,4380_7778208_2200207,4380_563 -4380_77988,290,4380_44974,Fort Camden,82189-00015-1,0,4380_7778208_2200207,4380_563 -4380_77988,294,4380_44975,Fort Camden,82195-00018-1,0,4380_7778208_2200207,4380_563 -4380_77988,295,4380_44976,Fort Camden,82191-00019-1,0,4380_7778208_2200207,4380_563 -4380_77988,293,4380_44977,Fort Camden,82193-00017-1,0,4380_7778208_2200207,4380_563 -4380_77988,296,4380_44978,Fort Camden,81525-00021-1,0,4380_7778208_2200202,4380_557 -4380_77948,292,4380_4498,Dublin,52343-00016-1,1,4380_7778208_1030110,4380_43 -4380_77988,297,4380_44986,Carrigaline,81369-00008-1,0,4380_7778208_2200201,4380_559 -4380_77988,285,4380_44987,Carrigaline,81527-00009-1,0,4380_7778208_2200202,4380_561 -4380_77988,286,4380_44988,Carrigaline,81531-00010-1,0,4380_7778208_2200202,4380_561 -4380_77988,288,4380_44989,Carrigaline,81529-00011-1,0,4380_7778208_2200202,4380_561 -4380_77948,293,4380_4499,Dublin,52342-00017-1,1,4380_7778208_1030110,4380_43 -4380_77988,287,4380_44990,Carrigaline,81535-00012-1,0,4380_7778208_2200202,4380_561 -4380_77988,291,4380_44991,Carrigaline,82524-00013-1,0,4380_7778208_2200210,4380_561 -4380_77988,289,4380_44992,Carrigaline,81533-00014-1,0,4380_7778208_2200202,4380_561 -4380_77988,292,4380_44993,Carrigaline,81532-00016-1,0,4380_7778208_2200202,4380_561 -4380_77988,290,4380_44994,Carrigaline,81528-00015-1,0,4380_7778208_2200202,4380_561 -4380_77988,294,4380_44995,Carrigaline,81536-00018-1,0,4380_7778208_2200202,4380_561 -4380_77988,295,4380_44996,Carrigaline,81534-00019-1,0,4380_7778208_2200202,4380_561 -4380_77988,293,4380_44997,Carrigaline,81530-00017-1,0,4380_7778208_2200202,4380_561 -4380_77988,296,4380_44998,Carrigaline,82525-00021-1,0,4380_7778208_2200210,4380_561 -4380_77946,285,4380_45,Dundalk,50303-00009-1,0,4380_7778208_1000913,4380_1 -4380_77946,297,4380_450,Drogheda,50227-00008-1,1,4380_7778208_1000909,4380_8 -4380_77948,294,4380_4500,Dublin,52339-00018-1,1,4380_7778208_1030110,4380_43 -4380_77988,285,4380_45005,Fort Camden,81719-00009-1,0,4380_7778208_2200203,4380_557 -4380_77988,286,4380_45006,Fort Camden,81717-00010-1,0,4380_7778208_2200203,4380_557 -4380_77988,288,4380_45007,Fort Camden,81723-00011-1,0,4380_7778208_2200203,4380_557 -4380_77988,287,4380_45008,Fort Camden,81721-00012-1,0,4380_7778208_2200203,4380_557 -4380_77988,291,4380_45009,Fort Camden,82305-00013-1,0,4380_7778208_2200208,4380_557 -4380_77948,295,4380_4501,Dublin,52341-00019-1,1,4380_7778208_1030110,4380_43 -4380_77988,289,4380_45010,Fort Camden,81715-00014-1,0,4380_7778208_2200203,4380_557 -4380_77988,292,4380_45011,Fort Camden,81718-00016-1,0,4380_7778208_2200203,4380_557 -4380_77988,290,4380_45012,Fort Camden,81720-00015-1,0,4380_7778208_2200203,4380_557 -4380_77988,294,4380_45013,Fort Camden,81722-00018-1,0,4380_7778208_2200203,4380_557 -4380_77988,295,4380_45014,Fort Camden,81716-00019-1,0,4380_7778208_2200203,4380_557 -4380_77988,293,4380_45015,Fort Camden,81724-00017-1,0,4380_7778208_2200203,4380_557 -4380_77988,296,4380_45016,Fort Camden,82306-00021-1,0,4380_7778208_2200208,4380_557 -4380_77988,297,4380_45018,Fort Camden,82526-00008-1,0,4380_7778208_2200210,4380_557 -4380_77948,297,4380_4502,Dublin,1335-00008-1,1,4380_7778208_1030102,4380_42 -4380_77988,285,4380_45025,Carrigaline,81968-00009-1,0,4380_7778208_2200205,4380_559 -4380_77988,286,4380_45026,Carrigaline,81966-00010-1,0,4380_7778208_2200205,4380_559 -4380_77988,288,4380_45027,Carrigaline,81962-00011-1,0,4380_7778208_2200205,4380_559 -4380_77988,287,4380_45028,Carrigaline,81960-00012-1,0,4380_7778208_2200205,4380_559 -4380_77988,291,4380_45029,Carrigaline,81958-00013-1,0,4380_7778208_2200205,4380_561 -4380_77948,291,4380_4503,Dublin,1883-00013-1,1,4380_7778208_1030109,4380_42 -4380_77988,289,4380_45030,Carrigaline,81964-00014-1,0,4380_7778208_2200205,4380_559 -4380_77988,292,4380_45031,Carrigaline,81967-00016-1,0,4380_7778208_2200205,4380_559 -4380_77988,290,4380_45032,Carrigaline,81969-00015-1,0,4380_7778208_2200205,4380_559 -4380_77988,294,4380_45033,Carrigaline,81961-00018-1,0,4380_7778208_2200205,4380_559 -4380_77988,295,4380_45034,Carrigaline,81965-00019-1,0,4380_7778208_2200205,4380_559 -4380_77988,293,4380_45035,Carrigaline,81963-00017-1,0,4380_7778208_2200205,4380_559 -4380_77988,296,4380_45036,Carrigaline,81959-00021-1,0,4380_7778208_2200205,4380_561 -4380_77948,296,4380_4504,Dublin,52288-00021-1,1,4380_7778208_1030109,4380_42 -4380_77988,297,4380_45044,Carrigaline,81725-00008-1,0,4380_7778208_2200203,4380_559 -4380_77988,285,4380_45045,Fort Camden,81856-00009-1,0,4380_7778208_2200204,4380_557 -4380_77988,286,4380_45046,Fort Camden,81858-00010-1,0,4380_7778208_2200204,4380_557 -4380_77988,288,4380_45047,Fort Camden,81860-00011-1,0,4380_7778208_2200204,4380_557 -4380_77988,287,4380_45048,Fort Camden,81862-00012-1,0,4380_7778208_2200204,4380_557 -4380_77988,291,4380_45049,Fort Camden,82077-00013-1,0,4380_7778208_2200206,4380_563 -4380_77948,285,4380_4505,Dublin,1467-00009-1,1,4380_7778208_1030104,4380_42 -4380_77988,289,4380_45050,Fort Camden,81854-00014-1,0,4380_7778208_2200204,4380_557 -4380_77988,292,4380_45051,Fort Camden,81859-00016-1,0,4380_7778208_2200204,4380_557 -4380_77988,290,4380_45052,Fort Camden,81857-00015-1,0,4380_7778208_2200204,4380_557 -4380_77988,294,4380_45053,Fort Camden,81863-00018-1,0,4380_7778208_2200204,4380_557 -4380_77988,295,4380_45054,Fort Camden,81855-00019-1,0,4380_7778208_2200204,4380_557 -4380_77988,293,4380_45055,Fort Camden,81861-00017-1,0,4380_7778208_2200204,4380_557 -4380_77988,296,4380_45056,Fort Camden,82078-00021-1,0,4380_7778208_2200206,4380_563 -4380_77948,286,4380_4506,Dublin,1479-00010-1,1,4380_7778208_1030104,4380_42 -4380_77988,285,4380_45063,Carrigaline,82083-00009-1,0,4380_7778208_2200206,4380_559 -4380_77988,286,4380_45064,Carrigaline,82085-00010-1,0,4380_7778208_2200206,4380_559 -4380_77988,288,4380_45065,Carrigaline,82079-00011-1,0,4380_7778208_2200206,4380_559 -4380_77988,287,4380_45066,Carrigaline,82081-00012-1,0,4380_7778208_2200206,4380_559 -4380_77988,291,4380_45067,Carrigaline,81726-00013-1,0,4380_7778208_2200203,4380_561 -4380_77988,289,4380_45068,Carrigaline,82087-00014-1,0,4380_7778208_2200206,4380_559 -4380_77988,292,4380_45069,Carrigaline,82086-00016-1,0,4380_7778208_2200206,4380_559 -4380_77948,288,4380_4507,Dublin,1491-00011-1,1,4380_7778208_1030104,4380_42 -4380_77988,290,4380_45070,Carrigaline,82084-00015-1,0,4380_7778208_2200206,4380_559 -4380_77988,294,4380_45071,Carrigaline,82082-00018-1,0,4380_7778208_2200206,4380_559 -4380_77988,295,4380_45072,Carrigaline,82088-00019-1,0,4380_7778208_2200206,4380_559 -4380_77988,293,4380_45073,Carrigaline,82080-00017-1,0,4380_7778208_2200206,4380_559 -4380_77988,296,4380_45074,Carrigaline,81727-00021-1,0,4380_7778208_2200203,4380_561 -4380_77988,297,4380_45076,Fort Camden,81539-00008-1,0,4380_7778208_2200202,4380_557 -4380_77948,287,4380_4508,Dublin,1503-00012-1,1,4380_7778208_1030104,4380_42 -4380_77988,285,4380_45083,Fort Camden,82313-00009-1,0,4380_7778208_2200208,4380_557 -4380_77988,286,4380_45084,Fort Camden,82311-00010-1,0,4380_7778208_2200208,4380_557 -4380_77988,288,4380_45085,Fort Camden,82307-00011-1,0,4380_7778208_2200208,4380_557 -4380_77988,287,4380_45086,Fort Camden,82309-00012-1,0,4380_7778208_2200208,4380_557 -4380_77988,291,4380_45087,Fort Camden,81381-00013-1,0,4380_7778208_2200201,4380_563 -4380_77988,289,4380_45088,Fort Camden,82315-00014-1,0,4380_7778208_2200208,4380_557 -4380_77988,292,4380_45089,Fort Camden,82312-00016-1,0,4380_7778208_2200208,4380_557 -4380_77948,289,4380_4509,Dublin,1455-00014-1,1,4380_7778208_1030104,4380_42 -4380_77988,290,4380_45090,Fort Camden,82314-00015-1,0,4380_7778208_2200208,4380_557 -4380_77988,294,4380_45091,Fort Camden,82310-00018-1,0,4380_7778208_2200208,4380_557 -4380_77988,295,4380_45092,Fort Camden,82316-00019-1,0,4380_7778208_2200208,4380_557 -4380_77988,293,4380_45093,Fort Camden,82308-00017-1,0,4380_7778208_2200208,4380_557 -4380_77988,296,4380_45094,Fort Camden,81382-00021-1,0,4380_7778208_2200201,4380_563 -4380_77946,287,4380_451,Drogheda,50499-00012-1,1,4380_7778208_1000915,4380_6 -4380_77948,290,4380_4510,Dublin,51980-00015-1,1,4380_7778208_1030104,4380_42 -4380_77988,297,4380_45102,Carrigaline,82423-00008-1,0,4380_7778208_2200209,4380_559 -4380_77988,285,4380_45103,Carrigaline,82776-00009-1,0,4380_7778208_2200212,4380_561 -4380_77988,286,4380_45104,Carrigaline,82778-00010-1,0,4380_7778208_2200212,4380_561 -4380_77988,288,4380_45105,Carrigaline,82770-00011-1,0,4380_7778208_2200212,4380_561 -4380_77988,287,4380_45106,Carrigaline,82774-00012-1,0,4380_7778208_2200212,4380_561 -4380_77988,291,4380_45107,Carrigaline,81864-00013-1,0,4380_7778208_2200204,4380_564 -4380_77988,289,4380_45108,Carrigaline,82772-00014-1,0,4380_7778208_2200212,4380_561 -4380_77988,292,4380_45109,Carrigaline,82779-00016-1,0,4380_7778208_2200212,4380_561 -4380_77948,292,4380_4511,Dublin,51981-00016-1,1,4380_7778208_1030104,4380_42 -4380_77988,290,4380_45110,Carrigaline,82777-00015-1,0,4380_7778208_2200212,4380_561 -4380_77988,294,4380_45111,Carrigaline,82775-00018-1,0,4380_7778208_2200212,4380_561 -4380_77988,295,4380_45112,Carrigaline,82773-00019-1,0,4380_7778208_2200212,4380_561 -4380_77988,293,4380_45113,Carrigaline,82771-00017-1,0,4380_7778208_2200212,4380_561 -4380_77988,296,4380_45114,Carrigaline,81865-00021-1,0,4380_7778208_2200204,4380_564 -4380_77948,293,4380_4512,Dublin,51982-00017-1,1,4380_7778208_1030104,4380_42 -4380_77988,285,4380_45121,Fort Camden,82428-00009-1,0,4380_7778208_2200209,4380_557 -4380_77988,286,4380_45122,Fort Camden,82424-00010-1,0,4380_7778208_2200209,4380_557 -4380_77988,288,4380_45123,Fort Camden,82426-00011-1,0,4380_7778208_2200209,4380_557 -4380_77988,287,4380_45124,Fort Camden,82432-00012-1,0,4380_7778208_2200209,4380_557 -4380_77988,291,4380_45125,Fort Camden,82780-00013-1,0,4380_7778208_2200212,4380_563 -4380_77988,289,4380_45126,Fort Camden,82430-00014-1,0,4380_7778208_2200209,4380_557 -4380_77988,292,4380_45127,Fort Camden,82425-00016-1,0,4380_7778208_2200209,4380_557 -4380_77988,290,4380_45128,Fort Camden,82429-00015-1,0,4380_7778208_2200209,4380_557 -4380_77988,294,4380_45129,Fort Camden,82433-00018-1,0,4380_7778208_2200209,4380_557 -4380_77948,294,4380_4513,Dublin,51979-00018-1,1,4380_7778208_1030104,4380_42 -4380_77988,295,4380_45130,Fort Camden,82431-00019-1,0,4380_7778208_2200209,4380_557 -4380_77988,293,4380_45131,Fort Camden,82427-00017-1,0,4380_7778208_2200209,4380_557 -4380_77988,296,4380_45132,Fort Camden,82781-00021-1,0,4380_7778208_2200212,4380_563 -4380_77988,297,4380_45134,Fort Camden,81971-00008-1,0,4380_7778208_2200205,4380_557 -4380_77948,295,4380_4514,Dublin,51978-00019-1,1,4380_7778208_1030104,4380_42 -4380_77988,285,4380_45141,Carrigaline,82548-00009-1,0,4380_7778208_2200210,4380_559 -4380_77988,286,4380_45142,Carrigaline,82544-00010-1,0,4380_7778208_2200210,4380_559 -4380_77988,288,4380_45143,Carrigaline,82542-00011-1,0,4380_7778208_2200210,4380_559 -4380_77988,287,4380_45144,Carrigaline,82540-00012-1,0,4380_7778208_2200210,4380_559 -4380_77988,291,4380_45145,Carrigaline,82210-00013-1,0,4380_7778208_2200207,4380_561 -4380_77988,289,4380_45146,Carrigaline,82546-00014-1,0,4380_7778208_2200210,4380_559 -4380_77988,292,4380_45147,Carrigaline,82545-00016-1,0,4380_7778208_2200210,4380_559 -4380_77988,290,4380_45148,Carrigaline,82549-00015-1,0,4380_7778208_2200210,4380_559 -4380_77988,294,4380_45149,Carrigaline,82541-00018-1,0,4380_7778208_2200210,4380_559 -4380_77988,295,4380_45150,Carrigaline,82547-00019-1,0,4380_7778208_2200210,4380_559 -4380_77988,293,4380_45151,Carrigaline,82543-00017-1,0,4380_7778208_2200210,4380_559 -4380_77988,296,4380_45152,Carrigaline,82211-00021-1,0,4380_7778208_2200207,4380_561 -4380_77988,297,4380_45160,Carrigaline,81383-00008-1,0,4380_7778208_2200201,4380_559 -4380_77988,285,4380_45161,Fort Camden,82690-00009-1,0,4380_7778208_2200211,4380_557 -4380_77988,286,4380_45162,Fort Camden,82696-00010-1,0,4380_7778208_2200211,4380_557 -4380_77988,288,4380_45163,Fort Camden,82688-00011-1,0,4380_7778208_2200211,4380_557 -4380_77988,287,4380_45164,Fort Camden,82694-00012-1,0,4380_7778208_2200211,4380_557 -4380_77988,291,4380_45165,Fort Camden,82698-00013-1,0,4380_7778208_2200211,4380_563 -4380_77988,289,4380_45166,Fort Camden,82692-00014-1,0,4380_7778208_2200211,4380_557 -4380_77988,292,4380_45167,Fort Camden,82697-00016-1,0,4380_7778208_2200211,4380_557 -4380_77988,290,4380_45168,Fort Camden,82691-00015-1,0,4380_7778208_2200211,4380_557 -4380_77988,294,4380_45169,Fort Camden,82695-00018-1,0,4380_7778208_2200211,4380_557 -4380_77988,295,4380_45170,Fort Camden,82693-00019-1,0,4380_7778208_2200211,4380_557 -4380_77988,293,4380_45171,Fort Camden,82689-00017-1,0,4380_7778208_2200211,4380_557 -4380_77988,296,4380_45172,Fort Camden,82699-00021-1,0,4380_7778208_2200211,4380_563 -4380_77988,285,4380_45179,Carrigaline,81386-00009-1,0,4380_7778208_2200201,4380_559 -4380_77988,286,4380_45180,Carrigaline,81392-00010-1,0,4380_7778208_2200201,4380_559 -4380_77988,288,4380_45181,Carrigaline,81384-00011-1,0,4380_7778208_2200201,4380_559 -4380_77988,287,4380_45182,Carrigaline,81388-00012-1,0,4380_7778208_2200201,4380_559 -4380_77988,291,4380_45183,Carrigaline,81551-00013-1,0,4380_7778208_2200202,4380_561 -4380_77988,289,4380_45184,Carrigaline,81390-00014-1,0,4380_7778208_2200201,4380_559 -4380_77988,292,4380_45185,Carrigaline,81393-00016-1,0,4380_7778208_2200201,4380_559 -4380_77988,290,4380_45186,Carrigaline,81387-00015-1,0,4380_7778208_2200201,4380_559 -4380_77988,294,4380_45187,Carrigaline,81389-00018-1,0,4380_7778208_2200201,4380_559 -4380_77988,295,4380_45188,Carrigaline,81391-00019-1,0,4380_7778208_2200201,4380_559 -4380_77988,293,4380_45189,Carrigaline,81385-00017-1,0,4380_7778208_2200201,4380_559 -4380_77988,296,4380_45190,Carrigaline,81552-00021-1,0,4380_7778208_2200202,4380_561 -4380_77988,285,4380_45197,Fort Camden,82218-00009-1,0,4380_7778208_2200207,4380_557 -4380_77988,286,4380_45198,Fort Camden,82220-00010-1,0,4380_7778208_2200207,4380_557 -4380_77988,288,4380_45199,Fort Camden,82212-00011-1,0,4380_7778208_2200207,4380_557 -4380_77946,288,4380_452,Drogheda,50505-00011-1,1,4380_7778208_1000915,4380_6 -4380_77988,287,4380_45200,Fort Camden,82216-00012-1,0,4380_7778208_2200207,4380_557 -4380_77988,291,4380_45201,Fort Camden,82550-00013-1,0,4380_7778208_2200210,4380_563 -4380_77988,289,4380_45202,Fort Camden,82214-00014-1,0,4380_7778208_2200207,4380_557 -4380_77988,292,4380_45203,Fort Camden,82221-00016-1,0,4380_7778208_2200207,4380_557 -4380_77988,290,4380_45204,Fort Camden,82219-00015-1,0,4380_7778208_2200207,4380_557 -4380_77988,294,4380_45205,Fort Camden,82217-00018-1,0,4380_7778208_2200207,4380_557 -4380_77988,295,4380_45206,Fort Camden,82215-00019-1,0,4380_7778208_2200207,4380_557 -4380_77988,293,4380_45207,Fort Camden,82213-00017-1,0,4380_7778208_2200207,4380_557 -4380_77988,296,4380_45208,Fort Camden,82551-00021-1,0,4380_7778208_2200210,4380_563 -4380_77988,297,4380_45210,Fort Camden,82552-00008-1,0,4380_7778208_2200210,4380_557 -4380_77988,285,4380_45217,Carrigaline,81557-00009-1,0,4380_7778208_2200202,4380_559 -4380_77988,286,4380_45218,Carrigaline,81553-00010-1,0,4380_7778208_2200202,4380_559 -4380_77988,288,4380_45219,Carrigaline,81559-00011-1,0,4380_7778208_2200202,4380_559 -4380_77948,297,4380_4522,Dublin,1431-00008-1,1,4380_7778208_1030103,4380_42 -4380_77988,287,4380_45220,Carrigaline,81555-00012-1,0,4380_7778208_2200202,4380_559 -4380_77988,291,4380_45221,Carrigaline,82319-00013-1,0,4380_7778208_2200208,4380_561 -4380_77988,289,4380_45222,Carrigaline,81561-00014-1,0,4380_7778208_2200202,4380_559 -4380_77988,292,4380_45223,Carrigaline,81554-00016-1,0,4380_7778208_2200202,4380_559 -4380_77988,290,4380_45224,Carrigaline,81558-00015-1,0,4380_7778208_2200202,4380_559 -4380_77988,294,4380_45225,Carrigaline,81556-00018-1,0,4380_7778208_2200202,4380_559 -4380_77988,295,4380_45226,Carrigaline,81562-00019-1,0,4380_7778208_2200202,4380_559 -4380_77988,293,4380_45227,Carrigaline,81560-00017-1,0,4380_7778208_2200202,4380_559 -4380_77988,296,4380_45228,Carrigaline,82320-00021-1,0,4380_7778208_2200208,4380_561 -4380_77948,291,4380_4523,Dublin,1669-00013-1,1,4380_7778208_1030106,4380_43 -4380_77988,297,4380_45236,Carrigaline,81753-00008-1,0,4380_7778208_2200203,4380_560 -4380_77988,285,4380_45237,Carrigaline,81743-00009-1,0,4380_7778208_2200203,4380_562 -4380_77988,286,4380_45238,Carrigaline,81745-00010-1,0,4380_7778208_2200203,4380_562 -4380_77988,288,4380_45239,Carrigaline,81749-00011-1,0,4380_7778208_2200203,4380_562 -4380_77948,296,4380_4524,Dublin,52093-00021-1,1,4380_7778208_1030106,4380_43 -4380_77988,287,4380_45240,Carrigaline,81741-00012-1,0,4380_7778208_2200203,4380_562 -4380_77988,291,4380_45241,Carrigaline,81747-00013-1,0,4380_7778208_2200203,4380_560 -4380_77988,289,4380_45242,Carrigaline,81751-00014-1,0,4380_7778208_2200203,4380_562 -4380_77988,292,4380_45243,Carrigaline,81746-00016-1,0,4380_7778208_2200203,4380_562 -4380_77988,290,4380_45244,Carrigaline,81744-00015-1,0,4380_7778208_2200203,4380_562 -4380_77988,294,4380_45245,Carrigaline,81742-00018-1,0,4380_7778208_2200203,4380_562 -4380_77988,295,4380_45246,Carrigaline,81752-00019-1,0,4380_7778208_2200203,4380_562 -4380_77988,293,4380_45247,Carrigaline,81750-00017-1,0,4380_7778208_2200203,4380_562 -4380_77988,296,4380_45248,Carrigaline,81748-00021-1,0,4380_7778208_2200203,4380_560 -4380_77948,285,4380_4525,Dublin,1369-00009-1,1,4380_7778208_1030103,4380_42 -4380_77988,285,4380_45255,Carrigaline,82103-00009-1,0,4380_7778208_2200206,4380_560 -4380_77988,286,4380_45256,Carrigaline,82099-00010-1,0,4380_7778208_2200206,4380_560 -4380_77988,288,4380_45257,Carrigaline,82101-00011-1,0,4380_7778208_2200206,4380_560 -4380_77988,287,4380_45258,Carrigaline,82107-00012-1,0,4380_7778208_2200206,4380_560 -4380_77988,291,4380_45259,Carrigaline,82435-00013-1,0,4380_7778208_2200209,4380_560 -4380_77948,286,4380_4526,Dublin,1379-00010-1,1,4380_7778208_1030103,4380_42 -4380_77988,289,4380_45260,Carrigaline,82105-00014-1,0,4380_7778208_2200206,4380_560 -4380_77988,292,4380_45261,Carrigaline,82100-00016-1,0,4380_7778208_2200206,4380_560 -4380_77988,290,4380_45262,Carrigaline,82104-00015-1,0,4380_7778208_2200206,4380_560 -4380_77988,294,4380_45263,Carrigaline,82108-00018-1,0,4380_7778208_2200206,4380_560 -4380_77988,295,4380_45264,Carrigaline,82106-00019-1,0,4380_7778208_2200206,4380_560 -4380_77988,293,4380_45265,Carrigaline,82102-00017-1,0,4380_7778208_2200206,4380_560 -4380_77988,296,4380_45266,Carrigaline,82436-00021-1,0,4380_7778208_2200209,4380_560 -4380_77988,297,4380_45268,Carrigaline,81565-00008-1,0,4380_7778208_2200202,4380_560 -4380_77948,288,4380_4527,Dublin,1389-00011-1,1,4380_7778208_1030103,4380_42 -4380_77988,297,4380_45276,Carrigaline,82437-00008-1,0,4380_7778208_2200209,4380_560 -4380_77988,285,4380_45277,Carrigaline,82798-00009-1,0,4380_7778208_2200212,4380_562 -4380_77988,286,4380_45278,Carrigaline,82794-00010-1,0,4380_7778208_2200212,4380_562 -4380_77988,288,4380_45279,Carrigaline,82796-00011-1,0,4380_7778208_2200212,4380_562 -4380_77948,287,4380_4528,Dublin,1399-00012-1,1,4380_7778208_1030103,4380_42 -4380_77988,287,4380_45280,Carrigaline,82802-00012-1,0,4380_7778208_2200212,4380_562 -4380_77988,291,4380_45281,Carrigaline,81868-00013-1,0,4380_7778208_2200204,4380_562 -4380_77988,289,4380_45282,Carrigaline,82800-00014-1,0,4380_7778208_2200212,4380_562 -4380_77988,292,4380_45283,Carrigaline,82795-00016-1,0,4380_7778208_2200212,4380_562 -4380_77988,290,4380_45284,Carrigaline,82799-00015-1,0,4380_7778208_2200212,4380_562 -4380_77988,294,4380_45285,Carrigaline,82803-00018-1,0,4380_7778208_2200212,4380_562 -4380_77988,295,4380_45286,Carrigaline,82801-00019-1,0,4380_7778208_2200212,4380_562 -4380_77988,293,4380_45287,Carrigaline,82797-00017-1,0,4380_7778208_2200212,4380_562 -4380_77988,296,4380_45288,Carrigaline,81869-00021-1,0,4380_7778208_2200204,4380_562 -4380_77948,289,4380_4529,Dublin,1359-00014-1,1,4380_7778208_1030103,4380_42 -4380_77988,297,4380_45296,Carrigaline,81973-00008-1,0,4380_7778208_2200205,4380_560 -4380_77988,285,4380_45297,Carrigaline,82564-00009-1,0,4380_7778208_2200210,4380_562 -4380_77988,286,4380_45298,Carrigaline,82572-00010-1,0,4380_7778208_2200210,4380_562 -4380_77988,288,4380_45299,Carrigaline,82570-00011-1,0,4380_7778208_2200210,4380_562 -4380_77946,289,4380_453,Drogheda,50497-00014-1,1,4380_7778208_1000915,4380_6 -4380_77948,290,4380_4530,Dublin,51921-00015-1,1,4380_7778208_1030103,4380_42 -4380_77988,287,4380_45300,Carrigaline,82566-00012-1,0,4380_7778208_2200210,4380_562 -4380_77988,291,4380_45301,Carrigaline,82224-00013-1,0,4380_7778208_2200207,4380_562 -4380_77988,289,4380_45302,Carrigaline,82568-00014-1,0,4380_7778208_2200210,4380_562 -4380_77988,292,4380_45303,Carrigaline,82573-00016-1,0,4380_7778208_2200210,4380_562 -4380_77988,290,4380_45304,Carrigaline,82565-00015-1,0,4380_7778208_2200210,4380_562 -4380_77988,294,4380_45305,Carrigaline,82567-00018-1,0,4380_7778208_2200210,4380_562 -4380_77988,295,4380_45306,Carrigaline,82569-00019-1,0,4380_7778208_2200210,4380_562 -4380_77988,293,4380_45307,Carrigaline,82571-00017-1,0,4380_7778208_2200210,4380_562 -4380_77988,296,4380_45308,Carrigaline,82225-00021-1,0,4380_7778208_2200207,4380_562 -4380_77948,292,4380_4531,Dublin,51919-00016-1,1,4380_7778208_1030103,4380_42 -4380_77988,297,4380_45316,Carrigaline,81407-00008-1,0,4380_7778208_2200201,4380_560 -4380_77988,285,4380_45317,Carrigaline,81410-00009-1,0,4380_7778208_2200201,4380_562 -4380_77988,286,4380_45318,Carrigaline,81414-00010-1,0,4380_7778208_2200201,4380_562 -4380_77988,288,4380_45319,Carrigaline,81408-00011-1,0,4380_7778208_2200201,4380_562 -4380_77948,293,4380_4532,Dublin,51920-00017-1,1,4380_7778208_1030103,4380_42 -4380_77988,287,4380_45320,Carrigaline,81405-00012-1,0,4380_7778208_2200201,4380_562 -4380_77988,291,4380_45321,Carrigaline,81577-00013-1,0,4380_7778208_2200202,4380_562 -4380_77988,289,4380_45322,Carrigaline,81412-00014-1,0,4380_7778208_2200201,4380_562 -4380_77988,292,4380_45323,Carrigaline,81415-00016-1,0,4380_7778208_2200201,4380_562 -4380_77988,290,4380_45324,Carrigaline,81411-00015-1,0,4380_7778208_2200201,4380_562 -4380_77988,294,4380_45325,Carrigaline,81406-00018-1,0,4380_7778208_2200201,4380_562 -4380_77988,295,4380_45326,Carrigaline,81413-00019-1,0,4380_7778208_2200201,4380_562 -4380_77988,293,4380_45327,Carrigaline,81409-00017-1,0,4380_7778208_2200201,4380_562 -4380_77988,296,4380_45328,Carrigaline,81578-00021-1,0,4380_7778208_2200202,4380_562 -4380_77948,294,4380_4533,Dublin,51918-00018-1,1,4380_7778208_1030103,4380_42 -4380_77988,297,4380_45336,Carrigaline,81579-00008-1,0,4380_7778208_2200202,4380_560 -4380_77988,285,4380_45337,Carrigaline,81590-00009-1,0,4380_7778208_2200202,4380_562 -4380_77988,286,4380_45338,Carrigaline,81582-00010-1,0,4380_7778208_2200202,4380_562 -4380_77988,288,4380_45339,Carrigaline,81586-00011-1,0,4380_7778208_2200202,4380_562 -4380_77948,295,4380_4534,Dublin,51917-00019-1,1,4380_7778208_1030103,4380_42 -4380_77988,287,4380_45340,Carrigaline,81584-00012-1,0,4380_7778208_2200202,4380_562 -4380_77988,291,4380_45341,Carrigaline,82440-00013-1,0,4380_7778208_2200209,4380_562 -4380_77988,289,4380_45342,Carrigaline,81588-00014-1,0,4380_7778208_2200202,4380_562 -4380_77988,292,4380_45343,Carrigaline,81583-00016-1,0,4380_7778208_2200202,4380_562 -4380_77988,290,4380_45344,Carrigaline,81591-00015-1,0,4380_7778208_2200202,4380_562 -4380_77988,294,4380_45345,Carrigaline,81585-00018-1,0,4380_7778208_2200202,4380_562 -4380_77988,295,4380_45346,Carrigaline,81589-00019-1,0,4380_7778208_2200202,4380_562 -4380_77988,293,4380_45347,Carrigaline,81587-00017-1,0,4380_7778208_2200202,4380_562 -4380_77988,296,4380_45348,Carrigaline,82441-00021-1,0,4380_7778208_2200209,4380_562 -4380_77988,297,4380_45356,Carrigaline,81417-00008-1,0,4380_7778208_2200201,4380_560 -4380_77988,285,4380_45357,Carrigaline,82590-00009-1,0,4380_7778208_2200210,4380_562 -4380_77988,286,4380_45358,Carrigaline,82586-00010-1,0,4380_7778208_2200210,4380_562 -4380_77988,288,4380_45359,Carrigaline,82588-00011-1,0,4380_7778208_2200210,4380_562 -4380_77988,287,4380_45360,Carrigaline,82592-00012-1,0,4380_7778208_2200210,4380_562 -4380_77988,291,4380_45361,Carrigaline,81596-00013-1,0,4380_7778208_2200202,4380_562 -4380_77988,289,4380_45362,Carrigaline,82584-00014-1,0,4380_7778208_2200210,4380_562 -4380_77988,292,4380_45363,Carrigaline,82587-00016-1,0,4380_7778208_2200210,4380_562 -4380_77988,290,4380_45364,Carrigaline,82591-00015-1,0,4380_7778208_2200210,4380_562 -4380_77988,294,4380_45365,Carrigaline,82593-00018-1,0,4380_7778208_2200210,4380_562 -4380_77988,295,4380_45366,Carrigaline,82585-00019-1,0,4380_7778208_2200210,4380_562 -4380_77988,293,4380_45367,Carrigaline,82589-00017-1,0,4380_7778208_2200210,4380_562 -4380_77988,296,4380_45368,Carrigaline,81597-00021-1,0,4380_7778208_2200202,4380_562 -4380_77988,297,4380_45376,Carrigaline,81613-00008-1,0,4380_7778208_2200202,4380_560 -4380_77988,285,4380_45377,Fort Camden,81614-00009-1,0,4380_7778208_2200202,4380_557 -4380_77988,286,4380_45378,Fort Camden,81605-00010-1,0,4380_7778208_2200202,4380_557 -4380_77988,288,4380_45379,Fort Camden,81609-00011-1,0,4380_7778208_2200202,4380_557 -4380_77988,287,4380_45380,Fort Camden,81611-00012-1,0,4380_7778208_2200202,4380_557 -4380_77988,291,4380_45381,Carrigaline,82444-00013-1,0,4380_7778208_2200209,4380_562 -4380_77988,289,4380_45382,Fort Camden,81607-00014-1,0,4380_7778208_2200202,4380_557 -4380_77988,292,4380_45383,Fort Camden,81606-00016-1,0,4380_7778208_2200202,4380_557 -4380_77988,290,4380_45384,Fort Camden,81615-00015-1,0,4380_7778208_2200202,4380_557 -4380_77988,294,4380_45385,Fort Camden,81612-00018-1,0,4380_7778208_2200202,4380_557 -4380_77988,295,4380_45386,Fort Camden,81608-00019-1,0,4380_7778208_2200202,4380_557 -4380_77988,293,4380_45387,Fort Camden,81610-00017-1,0,4380_7778208_2200202,4380_557 -4380_77988,296,4380_45388,Carrigaline,82445-00021-1,0,4380_7778208_2200209,4380_562 -4380_77988,297,4380_45396,Ovens,81264-00008-1,1,4380_7778208_2200201,4380_566 -4380_77988,285,4380_45397,Ovens,81262-00009-1,1,4380_7778208_2200201,4380_566 -4380_77988,286,4380_45398,Ovens,81269-00010-1,1,4380_7778208_2200201,4380_566 -4380_77988,288,4380_45399,Ovens,81267-00011-1,1,4380_7778208_2200201,4380_566 -4380_77946,290,4380_454,Drogheda,50502-00015-1,1,4380_7778208_1000915,4380_6 -4380_77988,287,4380_45400,Ovens,81265-00012-1,1,4380_7778208_2200201,4380_566 -4380_77988,291,4380_45401,Ovens,82119-00013-1,1,4380_7778208_2200207,4380_572 -4380_77988,289,4380_45402,Ovens,81271-00014-1,1,4380_7778208_2200201,4380_566 -4380_77988,292,4380_45403,Ovens,81270-00016-1,1,4380_7778208_2200201,4380_566 -4380_77988,290,4380_45404,Ovens,81263-00015-1,1,4380_7778208_2200201,4380_566 -4380_77988,294,4380_45405,Ovens,81266-00018-1,1,4380_7778208_2200201,4380_566 -4380_77988,295,4380_45406,Ovens,81272-00019-1,1,4380_7778208_2200201,4380_566 -4380_77988,293,4380_45407,Ovens,81268-00017-1,1,4380_7778208_2200201,4380_566 -4380_77988,296,4380_45408,Ovens,82120-00021-1,1,4380_7778208_2200207,4380_572 -4380_77948,291,4380_4541,Dublin,1950-00013-1,1,4380_7778208_1030110,4380_42 -4380_77988,285,4380_45414,Ovens,81620-00009-1,1,4380_7778208_2200203,4380_567 -4380_77988,286,4380_45415,Ovens,81622-00010-1,1,4380_7778208_2200203,4380_567 -4380_77988,288,4380_45416,Ovens,81618-00011-1,1,4380_7778208_2200203,4380_567 -4380_77988,287,4380_45417,Ovens,81624-00012-1,1,4380_7778208_2200203,4380_567 -4380_77988,289,4380_45418,Ovens,81626-00014-1,1,4380_7778208_2200203,4380_567 -4380_77988,292,4380_45419,Ovens,81623-00016-1,1,4380_7778208_2200203,4380_567 -4380_77948,296,4380_4542,Dublin,52344-00021-1,1,4380_7778208_1030110,4380_42 -4380_77988,290,4380_45420,Ovens,81621-00015-1,1,4380_7778208_2200203,4380_567 -4380_77988,294,4380_45421,Ovens,81625-00018-1,1,4380_7778208_2200203,4380_567 -4380_77988,295,4380_45422,Ovens,81627-00019-1,1,4380_7778208_2200203,4380_567 -4380_77988,293,4380_45423,Ovens,81619-00017-1,1,4380_7778208_2200203,4380_567 -4380_77988,291,4380_45425,Ovens,81628-00013-1,1,4380_7778208_2200203,4380_566 -4380_77988,296,4380_45426,Ovens,81629-00021-1,1,4380_7778208_2200203,4380_566 -4380_77988,297,4380_45428,Ovens,81630-00008-1,1,4380_7778208_2200203,4380_566 -4380_77948,285,4380_4543,Dublin,1701-00009-1,1,4380_7778208_1030107,4380_42 -4380_77988,285,4380_45435,Ovens,81763-00009-1,1,4380_7778208_2200204,4380_566 -4380_77988,286,4380_45436,Ovens,81757-00010-1,1,4380_7778208_2200204,4380_566 -4380_77988,288,4380_45437,Ovens,81759-00011-1,1,4380_7778208_2200204,4380_566 -4380_77988,287,4380_45438,Ovens,81761-00012-1,1,4380_7778208_2200204,4380_566 -4380_77988,291,4380_45439,Ovens,81870-00013-1,1,4380_7778208_2200205,4380_572 -4380_77948,286,4380_4544,Dublin,1713-00010-1,1,4380_7778208_1030107,4380_42 -4380_77988,289,4380_45440,Ovens,81765-00014-1,1,4380_7778208_2200204,4380_566 -4380_77988,292,4380_45441,Ovens,81758-00016-1,1,4380_7778208_2200204,4380_566 -4380_77988,290,4380_45442,Ovens,81764-00015-1,1,4380_7778208_2200204,4380_566 -4380_77988,294,4380_45443,Ovens,81762-00018-1,1,4380_7778208_2200204,4380_566 -4380_77988,295,4380_45444,Ovens,81766-00019-1,1,4380_7778208_2200204,4380_566 -4380_77988,293,4380_45445,Ovens,81760-00017-1,1,4380_7778208_2200204,4380_566 -4380_77988,296,4380_45446,Ovens,81871-00021-1,1,4380_7778208_2200205,4380_572 -4380_77948,288,4380_4545,Dublin,1725-00011-1,1,4380_7778208_1030107,4380_42 -4380_77988,285,4380_45453,Ovens,81872-00009-1,1,4380_7778208_2200205,4380_567 -4380_77988,286,4380_45454,Ovens,81876-00010-1,1,4380_7778208_2200205,4380_567 -4380_77988,288,4380_45455,Ovens,81878-00011-1,1,4380_7778208_2200205,4380_567 -4380_77988,287,4380_45456,Ovens,81874-00012-1,1,4380_7778208_2200205,4380_567 -4380_77988,291,4380_45457,Ovens,81767-00013-1,1,4380_7778208_2200204,4380_571 -4380_77988,289,4380_45458,Ovens,81880-00014-1,1,4380_7778208_2200205,4380_567 -4380_77988,292,4380_45459,Ovens,81877-00016-1,1,4380_7778208_2200205,4380_567 -4380_77948,287,4380_4546,Dublin,1737-00012-1,1,4380_7778208_1030107,4380_42 -4380_77988,290,4380_45460,Ovens,81873-00015-1,1,4380_7778208_2200205,4380_567 -4380_77988,294,4380_45461,Ovens,81875-00018-1,1,4380_7778208_2200205,4380_567 -4380_77988,295,4380_45462,Ovens,81881-00019-1,1,4380_7778208_2200205,4380_567 -4380_77988,293,4380_45463,Ovens,81879-00017-1,1,4380_7778208_2200205,4380_567 -4380_77988,296,4380_45464,Ovens,81768-00021-1,1,4380_7778208_2200204,4380_571 -4380_77948,289,4380_4547,Dublin,1689-00014-1,1,4380_7778208_1030107,4380_42 -4380_77988,285,4380_45471,Ovens,81440-00009-1,1,4380_7778208_2200202,4380_566 -4380_77988,286,4380_45472,Ovens,81438-00010-1,1,4380_7778208_2200202,4380_566 -4380_77988,288,4380_45473,Ovens,81436-00011-1,1,4380_7778208_2200202,4380_566 -4380_77988,287,4380_45474,Ovens,81434-00012-1,1,4380_7778208_2200202,4380_566 -4380_77988,291,4380_45475,Ovens,81279-00013-1,1,4380_7778208_2200201,4380_572 -4380_77988,289,4380_45476,Ovens,81432-00014-1,1,4380_7778208_2200202,4380_566 -4380_77988,292,4380_45477,Ovens,81439-00016-1,1,4380_7778208_2200202,4380_566 -4380_77988,290,4380_45478,Ovens,81441-00015-1,1,4380_7778208_2200202,4380_566 -4380_77988,294,4380_45479,Ovens,81435-00018-1,1,4380_7778208_2200202,4380_566 -4380_77948,290,4380_4548,Dublin,52166-00015-1,1,4380_7778208_1030107,4380_42 -4380_77988,295,4380_45480,Ovens,81433-00019-1,1,4380_7778208_2200202,4380_566 -4380_77988,293,4380_45481,Ovens,81437-00017-1,1,4380_7778208_2200202,4380_566 -4380_77988,296,4380_45482,Ovens,81280-00021-1,1,4380_7778208_2200201,4380_572 -4380_77948,292,4380_4549,Dublin,52165-00016-1,1,4380_7778208_1030107,4380_42 -4380_77988,297,4380_45490,Ovens,81442-00008-1,1,4380_7778208_2200202,4380_566 -4380_77988,285,4380_45491,Ovens,82341-00009-1,1,4380_7778208_2200209,4380_567 -4380_77988,286,4380_45492,Ovens,82339-00010-1,1,4380_7778208_2200209,4380_567 -4380_77988,288,4380_45493,Ovens,82337-00011-1,1,4380_7778208_2200209,4380_567 -4380_77988,287,4380_45494,Ovens,82333-00012-1,1,4380_7778208_2200209,4380_567 -4380_77988,291,4380_45495,Ovens,81443-00013-1,1,4380_7778208_2200202,4380_571 -4380_77988,289,4380_45496,Ovens,82335-00014-1,1,4380_7778208_2200209,4380_567 -4380_77988,292,4380_45497,Ovens,82340-00016-1,1,4380_7778208_2200209,4380_567 -4380_77988,290,4380_45498,Ovens,82342-00015-1,1,4380_7778208_2200209,4380_567 -4380_77988,294,4380_45499,Ovens,82334-00018-1,1,4380_7778208_2200209,4380_567 -4380_77946,291,4380_455,Drogheda,50279-00013-1,1,4380_7778208_1000912,4380_9 -4380_77948,293,4380_4550,Dublin,52163-00017-1,1,4380_7778208_1030107,4380_42 -4380_77988,295,4380_45500,Ovens,82336-00019-1,1,4380_7778208_2200209,4380_567 -4380_77988,293,4380_45501,Ovens,82338-00017-1,1,4380_7778208_2200209,4380_567 -4380_77988,296,4380_45502,Ovens,81444-00021-1,1,4380_7778208_2200202,4380_571 -4380_77988,297,4380_45504,Ovens,81882-00008-1,1,4380_7778208_2200205,4380_567 -4380_77948,294,4380_4551,Dublin,52164-00018-1,1,4380_7778208_1030107,4380_42 -4380_77988,285,4380_45511,Ovens,81990-00009-1,1,4380_7778208_2200206,4380_566 -4380_77988,286,4380_45512,Ovens,81994-00010-1,1,4380_7778208_2200206,4380_566 -4380_77988,288,4380_45513,Ovens,81986-00011-1,1,4380_7778208_2200206,4380_566 -4380_77988,287,4380_45514,Ovens,81992-00012-1,1,4380_7778208_2200206,4380_566 -4380_77988,291,4380_45515,Ovens,82343-00013-1,1,4380_7778208_2200209,4380_572 -4380_77988,289,4380_45516,Ovens,81988-00014-1,1,4380_7778208_2200206,4380_566 -4380_77988,292,4380_45517,Ovens,81995-00016-1,1,4380_7778208_2200206,4380_566 -4380_77988,290,4380_45518,Ovens,81991-00015-1,1,4380_7778208_2200206,4380_566 -4380_77988,294,4380_45519,Ovens,81993-00018-1,1,4380_7778208_2200206,4380_566 -4380_77948,295,4380_4552,Dublin,52167-00019-1,1,4380_7778208_1030107,4380_42 -4380_77988,295,4380_45520,Ovens,81989-00019-1,1,4380_7778208_2200206,4380_566 -4380_77988,293,4380_45521,Ovens,81987-00017-1,1,4380_7778208_2200206,4380_566 -4380_77988,296,4380_45522,Ovens,82344-00021-1,1,4380_7778208_2200209,4380_572 -4380_77988,285,4380_45529,Ovens,82448-00009-1,1,4380_7778208_2200210,4380_567 -4380_77988,286,4380_45530,Ovens,82446-00010-1,1,4380_7778208_2200210,4380_567 -4380_77988,288,4380_45531,Ovens,82450-00011-1,1,4380_7778208_2200210,4380_567 -4380_77988,287,4380_45532,Ovens,82454-00012-1,1,4380_7778208_2200210,4380_567 -4380_77988,291,4380_45533,Ovens,82226-00013-1,1,4380_7778208_2200208,4380_571 -4380_77988,289,4380_45534,Ovens,82452-00014-1,1,4380_7778208_2200210,4380_567 -4380_77988,292,4380_45535,Ovens,82447-00016-1,1,4380_7778208_2200210,4380_567 -4380_77988,290,4380_45536,Ovens,82449-00015-1,1,4380_7778208_2200210,4380_567 -4380_77988,294,4380_45537,Ovens,82455-00018-1,1,4380_7778208_2200210,4380_567 -4380_77988,295,4380_45538,Ovens,82453-00019-1,1,4380_7778208_2200210,4380_567 -4380_77988,293,4380_45539,Ovens,82451-00017-1,1,4380_7778208_2200210,4380_567 -4380_77988,296,4380_45540,Ovens,82227-00021-1,1,4380_7778208_2200208,4380_571 -4380_77988,297,4380_45542,Ovens,81782-00008-1,1,4380_7778208_2200204,4380_566 -4380_77988,285,4380_45549,Ovens,82612-00009-1,1,4380_7778208_2200211,4380_566 -4380_77988,286,4380_45550,Ovens,82610-00010-1,1,4380_7778208_2200211,4380_566 -4380_77988,288,4380_45551,Ovens,82604-00011-1,1,4380_7778208_2200211,4380_566 -4380_77988,287,4380_45552,Ovens,82608-00012-1,1,4380_7778208_2200211,4380_566 -4380_77988,291,4380_45553,Ovens,82456-00013-1,1,4380_7778208_2200210,4380_572 -4380_77988,289,4380_45554,Ovens,82606-00014-1,1,4380_7778208_2200211,4380_566 -4380_77988,292,4380_45555,Ovens,82611-00016-1,1,4380_7778208_2200211,4380_566 -4380_77988,290,4380_45556,Ovens,82613-00015-1,1,4380_7778208_2200211,4380_566 -4380_77988,294,4380_45557,Ovens,82609-00018-1,1,4380_7778208_2200211,4380_566 -4380_77988,295,4380_45558,Ovens,82607-00019-1,1,4380_7778208_2200211,4380_566 -4380_77988,293,4380_45559,Ovens,82605-00017-1,1,4380_7778208_2200211,4380_566 -4380_77988,296,4380_45560,Ovens,82457-00021-1,1,4380_7778208_2200210,4380_572 -4380_77988,297,4380_45568,Ovens,81288-00008-1,1,4380_7778208_2200201,4380_567 -4380_77988,285,4380_45569,Ovens,82135-00009-1,1,4380_7778208_2200207,4380_571 -4380_77988,286,4380_45570,Ovens,82139-00010-1,1,4380_7778208_2200207,4380_571 -4380_77988,288,4380_45571,Ovens,82131-00011-1,1,4380_7778208_2200207,4380_571 -4380_77988,287,4380_45572,Ovens,82137-00012-1,1,4380_7778208_2200207,4380_571 -4380_77988,291,4380_45573,Ovens,81997-00013-1,1,4380_7778208_2200206,4380_573 -4380_77988,289,4380_45574,Ovens,82133-00014-1,1,4380_7778208_2200207,4380_571 -4380_77988,292,4380_45575,Ovens,82140-00016-1,1,4380_7778208_2200207,4380_571 -4380_77988,290,4380_45576,Ovens,82136-00015-1,1,4380_7778208_2200207,4380_571 -4380_77988,294,4380_45577,Ovens,82138-00018-1,1,4380_7778208_2200207,4380_571 -4380_77988,295,4380_45578,Ovens,82134-00019-1,1,4380_7778208_2200207,4380_571 -4380_77988,293,4380_45579,Ovens,82132-00017-1,1,4380_7778208_2200207,4380_571 -4380_77988,296,4380_45580,Ovens,81998-00021-1,1,4380_7778208_2200206,4380_573 -4380_77988,285,4380_45587,Ovens,81289-00009-1,1,4380_7778208_2200201,4380_566 -4380_77988,286,4380_45588,Ovens,81295-00010-1,1,4380_7778208_2200201,4380_566 -4380_77988,288,4380_45589,Ovens,81297-00011-1,1,4380_7778208_2200201,4380_566 -4380_77988,287,4380_45590,Ovens,81293-00012-1,1,4380_7778208_2200201,4380_566 -4380_77988,291,4380_45591,Ovens,81644-00013-1,1,4380_7778208_2200203,4380_572 -4380_77988,289,4380_45592,Ovens,81291-00014-1,1,4380_7778208_2200201,4380_566 -4380_77988,292,4380_45593,Ovens,81296-00016-1,1,4380_7778208_2200201,4380_566 -4380_77988,290,4380_45594,Ovens,81290-00015-1,1,4380_7778208_2200201,4380_566 -4380_77988,294,4380_45595,Ovens,81294-00018-1,1,4380_7778208_2200201,4380_566 -4380_77988,295,4380_45596,Ovens,81292-00019-1,1,4380_7778208_2200201,4380_566 -4380_77988,293,4380_45597,Ovens,81298-00017-1,1,4380_7778208_2200201,4380_566 -4380_77988,296,4380_45598,Ovens,81645-00021-1,1,4380_7778208_2200203,4380_572 -4380_77946,292,4380_456,Drogheda,50504-00016-1,1,4380_7778208_1000915,4380_6 -4380_77948,297,4380_4560,Dublin,1595-00008-1,1,4380_7778208_1030105,4380_42 -4380_77988,297,4380_45606,Ovens,81646-00008-1,1,4380_7778208_2200203,4380_566 -4380_77988,285,4380_45607,Ovens,81651-00009-1,1,4380_7778208_2200203,4380_567 -4380_77988,286,4380_45608,Ovens,81655-00010-1,1,4380_7778208_2200203,4380_567 -4380_77988,288,4380_45609,Ovens,81649-00011-1,1,4380_7778208_2200203,4380_567 -4380_77948,291,4380_4561,Dublin,1409-00013-1,1,4380_7778208_1030103,4380_42 -4380_77988,287,4380_45610,Ovens,81647-00012-1,1,4380_7778208_2200203,4380_567 -4380_77988,291,4380_45611,Ovens,81783-00013-1,1,4380_7778208_2200204,4380_571 -4380_77988,289,4380_45612,Ovens,81653-00014-1,1,4380_7778208_2200203,4380_567 -4380_77988,292,4380_45613,Ovens,81656-00016-1,1,4380_7778208_2200203,4380_567 -4380_77988,290,4380_45614,Ovens,81652-00015-1,1,4380_7778208_2200203,4380_567 -4380_77988,294,4380_45615,Ovens,81648-00018-1,1,4380_7778208_2200203,4380_567 -4380_77988,295,4380_45616,Ovens,81654-00019-1,1,4380_7778208_2200203,4380_567 -4380_77988,293,4380_45617,Ovens,81650-00017-1,1,4380_7778208_2200203,4380_567 -4380_77988,296,4380_45618,Ovens,81784-00021-1,1,4380_7778208_2200204,4380_571 -4380_77948,296,4380_4562,Dublin,51922-00021-1,1,4380_7778208_1030103,4380_42 -4380_77988,297,4380_45620,Ovens,81999-00008-1,1,4380_7778208_2200206,4380_568 -4380_77988,291,4380_45622,Ovens,81299-00013-1,1,4380_7778208_2200201,4380_566 -4380_77988,296,4380_45623,Ovens,81300-00021-1,1,4380_7778208_2200201,4380_566 -4380_77988,285,4380_45629,Ovens,81794-00009-1,1,4380_7778208_2200204,4380_566 -4380_77948,285,4380_4563,Dublin,1617-00009-1,1,4380_7778208_1030106,4380_42 -4380_77988,286,4380_45630,Ovens,81788-00010-1,1,4380_7778208_2200204,4380_566 -4380_77988,288,4380_45631,Ovens,81790-00011-1,1,4380_7778208_2200204,4380_566 -4380_77988,287,4380_45632,Ovens,81792-00012-1,1,4380_7778208_2200204,4380_566 -4380_77988,289,4380_45633,Ovens,81786-00014-1,1,4380_7778208_2200204,4380_566 -4380_77988,292,4380_45634,Ovens,81789-00016-1,1,4380_7778208_2200204,4380_566 -4380_77988,290,4380_45635,Ovens,81795-00015-1,1,4380_7778208_2200204,4380_566 -4380_77988,294,4380_45636,Ovens,81793-00018-1,1,4380_7778208_2200204,4380_566 -4380_77988,295,4380_45637,Ovens,81787-00019-1,1,4380_7778208_2200204,4380_566 -4380_77988,293,4380_45638,Ovens,81791-00017-1,1,4380_7778208_2200204,4380_566 -4380_77948,286,4380_4564,Dublin,1629-00010-1,1,4380_7778208_1030106,4380_42 -4380_77988,285,4380_45645,Ovens,81894-00009-1,1,4380_7778208_2200205,4380_567 -4380_77988,286,4380_45646,Ovens,81898-00010-1,1,4380_7778208_2200205,4380_567 -4380_77988,288,4380_45647,Ovens,81902-00011-1,1,4380_7778208_2200205,4380_567 -4380_77988,287,4380_45648,Ovens,81900-00012-1,1,4380_7778208_2200205,4380_567 -4380_77988,291,4380_45649,Ovens,82614-00013-1,1,4380_7778208_2200211,4380_571 -4380_77948,288,4380_4565,Dublin,1641-00011-1,1,4380_7778208_1030106,4380_42 -4380_77988,289,4380_45650,Ovens,81896-00014-1,1,4380_7778208_2200205,4380_567 -4380_77988,292,4380_45651,Ovens,81899-00016-1,1,4380_7778208_2200205,4380_567 -4380_77988,290,4380_45652,Ovens,81895-00015-1,1,4380_7778208_2200205,4380_567 -4380_77988,294,4380_45653,Ovens,81901-00018-1,1,4380_7778208_2200205,4380_567 -4380_77988,295,4380_45654,Ovens,81897-00019-1,1,4380_7778208_2200205,4380_567 -4380_77988,293,4380_45655,Ovens,81903-00017-1,1,4380_7778208_2200205,4380_567 -4380_77988,296,4380_45656,Ovens,82615-00021-1,1,4380_7778208_2200211,4380_571 -4380_77988,297,4380_45658,Ovens,81458-00008-1,1,4380_7778208_2200202,4380_566 -4380_77948,287,4380_4566,Dublin,1653-00012-1,1,4380_7778208_1030106,4380_42 -4380_77988,285,4380_45665,Ovens,81463-00009-1,1,4380_7778208_2200202,4380_566 -4380_77988,286,4380_45666,Ovens,81465-00010-1,1,4380_7778208_2200202,4380_566 -4380_77988,288,4380_45667,Ovens,81467-00011-1,1,4380_7778208_2200202,4380_566 -4380_77988,287,4380_45668,Ovens,81459-00012-1,1,4380_7778208_2200202,4380_566 -4380_77988,291,4380_45669,Ovens,82357-00013-1,1,4380_7778208_2200209,4380_572 -4380_77948,289,4380_4567,Dublin,1605-00014-1,1,4380_7778208_1030106,4380_42 -4380_77988,289,4380_45670,Ovens,81461-00014-1,1,4380_7778208_2200202,4380_566 -4380_77988,292,4380_45671,Ovens,81466-00016-1,1,4380_7778208_2200202,4380_566 -4380_77988,290,4380_45672,Ovens,81464-00015-1,1,4380_7778208_2200202,4380_566 -4380_77988,294,4380_45673,Ovens,81460-00018-1,1,4380_7778208_2200202,4380_566 -4380_77988,295,4380_45674,Ovens,81462-00019-1,1,4380_7778208_2200202,4380_566 -4380_77988,293,4380_45675,Ovens,81468-00017-1,1,4380_7778208_2200202,4380_566 -4380_77988,296,4380_45676,Ovens,82358-00021-1,1,4380_7778208_2200209,4380_572 -4380_77948,290,4380_4568,Dublin,52095-00015-1,1,4380_7778208_1030106,4380_42 -4380_77988,297,4380_45684,Ovens,81904-00008-1,1,4380_7778208_2200205,4380_567 -4380_77988,285,4380_45685,Ovens,82246-00009-1,1,4380_7778208_2200208,4380_571 -4380_77988,286,4380_45686,Ovens,82248-00010-1,1,4380_7778208_2200208,4380_571 -4380_77988,288,4380_45687,Ovens,82240-00011-1,1,4380_7778208_2200208,4380_571 -4380_77988,287,4380_45688,Ovens,82244-00012-1,1,4380_7778208_2200208,4380_571 -4380_77988,291,4380_45689,Ovens,81469-00013-1,1,4380_7778208_2200202,4380_573 -4380_77948,292,4380_4569,Dublin,52096-00016-1,1,4380_7778208_1030106,4380_42 -4380_77988,289,4380_45690,Ovens,82242-00014-1,1,4380_7778208_2200208,4380_571 -4380_77988,292,4380_45691,Ovens,82249-00016-1,1,4380_7778208_2200208,4380_571 -4380_77988,290,4380_45692,Ovens,82247-00015-1,1,4380_7778208_2200208,4380_571 -4380_77988,294,4380_45693,Ovens,82245-00018-1,1,4380_7778208_2200208,4380_571 -4380_77988,295,4380_45694,Ovens,82243-00019-1,1,4380_7778208_2200208,4380_571 -4380_77988,293,4380_45695,Ovens,82241-00017-1,1,4380_7778208_2200208,4380_571 -4380_77988,296,4380_45696,Ovens,81470-00021-1,1,4380_7778208_2200202,4380_573 -4380_77946,293,4380_457,Drogheda,50506-00017-1,1,4380_7778208_1000915,4380_6 -4380_77948,293,4380_4570,Dublin,52094-00017-1,1,4380_7778208_1030106,4380_42 -4380_77988,285,4380_45703,Ovens,82714-00009-1,1,4380_7778208_2200212,4380_566 -4380_77988,286,4380_45704,Ovens,82718-00010-1,1,4380_7778208_2200212,4380_566 -4380_77988,288,4380_45705,Ovens,82716-00011-1,1,4380_7778208_2200212,4380_566 -4380_77988,287,4380_45706,Ovens,82712-00012-1,1,4380_7778208_2200212,4380_566 -4380_77988,291,4380_45707,Ovens,82470-00013-1,1,4380_7778208_2200210,4380_572 -4380_77988,289,4380_45708,Ovens,82710-00014-1,1,4380_7778208_2200212,4380_566 -4380_77988,292,4380_45709,Ovens,82719-00016-1,1,4380_7778208_2200212,4380_566 -4380_77948,294,4380_4571,Dublin,52097-00018-1,1,4380_7778208_1030106,4380_42 -4380_77988,290,4380_45710,Ovens,82715-00015-1,1,4380_7778208_2200212,4380_566 -4380_77988,294,4380_45711,Ovens,82713-00018-1,1,4380_7778208_2200212,4380_566 -4380_77988,295,4380_45712,Ovens,82711-00019-1,1,4380_7778208_2200212,4380_566 -4380_77988,293,4380_45713,Ovens,82717-00017-1,1,4380_7778208_2200212,4380_566 -4380_77988,296,4380_45714,Ovens,82471-00021-1,1,4380_7778208_2200210,4380_572 -4380_77988,297,4380_45717,Ovens,81798-00008-1,1,4380_7778208_2200204,4380_566 -4380_77988,291,4380_45718,Ovens,82250-00013-1,1,4380_7778208_2200208,4380_567 -4380_77988,296,4380_45719,Ovens,82251-00021-1,1,4380_7778208_2200208,4380_567 -4380_77948,295,4380_4572,Dublin,52098-00019-1,1,4380_7778208_1030106,4380_42 -4380_77988,285,4380_45725,Ovens,82363-00009-1,1,4380_7778208_2200209,4380_567 -4380_77988,286,4380_45726,Ovens,82367-00010-1,1,4380_7778208_2200209,4380_567 -4380_77988,288,4380_45727,Ovens,82361-00011-1,1,4380_7778208_2200209,4380_567 -4380_77988,287,4380_45728,Ovens,82359-00012-1,1,4380_7778208_2200209,4380_567 -4380_77988,289,4380_45729,Ovens,82365-00014-1,1,4380_7778208_2200209,4380_567 -4380_77988,292,4380_45730,Ovens,82368-00016-1,1,4380_7778208_2200209,4380_567 -4380_77988,290,4380_45731,Ovens,82364-00015-1,1,4380_7778208_2200209,4380_567 -4380_77988,294,4380_45732,Ovens,82360-00018-1,1,4380_7778208_2200209,4380_567 -4380_77988,295,4380_45733,Ovens,82366-00019-1,1,4380_7778208_2200209,4380_567 -4380_77988,293,4380_45734,Ovens,82362-00017-1,1,4380_7778208_2200209,4380_567 -4380_77988,297,4380_45736,Ovens,81314-00008-1,1,4380_7778208_2200201,4380_568 -4380_77988,285,4380_45743,Ovens,82015-00009-1,1,4380_7778208_2200206,4380_566 -4380_77988,286,4380_45744,Ovens,82019-00010-1,1,4380_7778208_2200206,4380_566 -4380_77988,288,4380_45745,Ovens,82017-00011-1,1,4380_7778208_2200206,4380_566 -4380_77988,287,4380_45746,Ovens,82013-00012-1,1,4380_7778208_2200206,4380_566 -4380_77988,291,4380_45747,Ovens,81670-00013-1,1,4380_7778208_2200203,4380_566 -4380_77988,289,4380_45748,Ovens,82021-00014-1,1,4380_7778208_2200206,4380_566 -4380_77988,292,4380_45749,Ovens,82020-00016-1,1,4380_7778208_2200206,4380_566 -4380_77988,290,4380_45750,Ovens,82016-00015-1,1,4380_7778208_2200206,4380_566 -4380_77988,294,4380_45751,Ovens,82014-00018-1,1,4380_7778208_2200206,4380_566 -4380_77988,295,4380_45752,Ovens,82022-00019-1,1,4380_7778208_2200206,4380_566 -4380_77988,293,4380_45753,Ovens,82018-00017-1,1,4380_7778208_2200206,4380_566 -4380_77988,296,4380_45754,Ovens,81671-00021-1,1,4380_7778208_2200203,4380_566 -4380_77988,285,4380_45761,Ovens,82480-00009-1,1,4380_7778208_2200210,4380_567 -4380_77988,286,4380_45762,Ovens,82476-00010-1,1,4380_7778208_2200210,4380_567 -4380_77988,288,4380_45763,Ovens,82478-00011-1,1,4380_7778208_2200210,4380_567 -4380_77988,287,4380_45764,Ovens,82474-00012-1,1,4380_7778208_2200210,4380_567 -4380_77988,291,4380_45765,Ovens,82023-00013-1,1,4380_7778208_2200206,4380_571 -4380_77988,289,4380_45766,Ovens,82472-00014-1,1,4380_7778208_2200210,4380_567 -4380_77988,292,4380_45767,Ovens,82477-00016-1,1,4380_7778208_2200210,4380_567 -4380_77988,290,4380_45768,Ovens,82481-00015-1,1,4380_7778208_2200210,4380_567 -4380_77988,294,4380_45769,Ovens,82475-00018-1,1,4380_7778208_2200210,4380_567 -4380_77988,295,4380_45770,Ovens,82473-00019-1,1,4380_7778208_2200210,4380_567 -4380_77988,293,4380_45771,Ovens,82479-00017-1,1,4380_7778208_2200210,4380_567 -4380_77988,296,4380_45772,Ovens,82024-00021-1,1,4380_7778208_2200206,4380_571 -4380_77988,297,4380_45774,Ovens,82151-00008-1,1,4380_7778208_2200207,4380_566 -4380_77988,297,4380_45776,Ovens,82252-00008-1,1,4380_7778208_2200208,4380_567 -4380_77988,285,4380_45783,Ovens,82632-00009-1,1,4380_7778208_2200211,4380_566 -4380_77988,286,4380_45784,Ovens,82630-00010-1,1,4380_7778208_2200211,4380_566 -4380_77988,288,4380_45785,Ovens,82628-00011-1,1,4380_7778208_2200211,4380_566 -4380_77988,287,4380_45786,Ovens,82636-00012-1,1,4380_7778208_2200211,4380_566 -4380_77988,291,4380_45787,Ovens,81315-00013-1,1,4380_7778208_2200201,4380_572 -4380_77988,289,4380_45788,Ovens,82634-00014-1,1,4380_7778208_2200211,4380_566 -4380_77988,292,4380_45789,Ovens,82631-00016-1,1,4380_7778208_2200211,4380_566 -4380_77988,290,4380_45790,Ovens,82633-00015-1,1,4380_7778208_2200211,4380_566 -4380_77988,294,4380_45791,Ovens,82637-00018-1,1,4380_7778208_2200211,4380_566 -4380_77988,295,4380_45792,Ovens,82635-00019-1,1,4380_7778208_2200211,4380_566 -4380_77988,293,4380_45793,Ovens,82629-00017-1,1,4380_7778208_2200211,4380_566 -4380_77988,296,4380_45794,Ovens,81316-00021-1,1,4380_7778208_2200201,4380_572 -4380_77946,294,4380_458,Drogheda,50500-00018-1,1,4380_7778208_1000915,4380_6 -4380_77948,297,4380_4580,Dublin,1677-00008-1,1,4380_7778208_1030106,4380_42 -4380_77988,285,4380_45801,Ovens,82152-00009-1,1,4380_7778208_2200207,4380_567 -4380_77988,286,4380_45802,Ovens,82160-00010-1,1,4380_7778208_2200207,4380_567 -4380_77988,288,4380_45803,Ovens,82158-00011-1,1,4380_7778208_2200207,4380_567 -4380_77988,287,4380_45804,Ovens,82156-00012-1,1,4380_7778208_2200207,4380_567 -4380_77988,291,4380_45805,Ovens,81809-00013-1,1,4380_7778208_2200204,4380_571 -4380_77988,289,4380_45806,Ovens,82154-00014-1,1,4380_7778208_2200207,4380_567 -4380_77988,292,4380_45807,Ovens,82161-00016-1,1,4380_7778208_2200207,4380_567 -4380_77988,290,4380_45808,Ovens,82153-00015-1,1,4380_7778208_2200207,4380_567 -4380_77988,294,4380_45809,Ovens,82157-00018-1,1,4380_7778208_2200207,4380_567 -4380_77948,291,4380_4581,Dublin,1753-00013-1,1,4380_7778208_1030107,4380_43 -4380_77988,295,4380_45810,Ovens,82155-00019-1,1,4380_7778208_2200207,4380_567 -4380_77988,293,4380_45811,Ovens,82159-00017-1,1,4380_7778208_2200207,4380_567 -4380_77988,296,4380_45812,Ovens,81810-00021-1,1,4380_7778208_2200204,4380_571 -4380_77988,297,4380_45814,Ovens,81672-00008-1,1,4380_7778208_2200203,4380_566 -4380_77988,297,4380_45816,Ovens,82025-00008-1,1,4380_7778208_2200206,4380_567 -4380_77948,296,4380_4582,Dublin,52168-00021-1,1,4380_7778208_1030107,4380_43 -4380_77988,285,4380_45823,Ovens,81324-00009-1,1,4380_7778208_2200201,4380_566 -4380_77988,286,4380_45824,Ovens,81322-00010-1,1,4380_7778208_2200201,4380_566 -4380_77988,288,4380_45825,Ovens,81320-00011-1,1,4380_7778208_2200201,4380_566 -4380_77988,287,4380_45826,Ovens,81326-00012-1,1,4380_7778208_2200201,4380_566 -4380_77988,291,4380_45827,Ovens,82730-00013-1,1,4380_7778208_2200212,4380_572 -4380_77988,289,4380_45828,Ovens,81318-00014-1,1,4380_7778208_2200201,4380_566 -4380_77988,292,4380_45829,Ovens,81323-00016-1,1,4380_7778208_2200201,4380_566 -4380_77948,285,4380_4583,Dublin,1557-00009-1,1,4380_7778208_1030105,4380_42 -4380_77988,290,4380_45830,Ovens,81325-00015-1,1,4380_7778208_2200201,4380_566 -4380_77988,294,4380_45831,Ovens,81327-00018-1,1,4380_7778208_2200201,4380_566 -4380_77988,295,4380_45832,Ovens,81319-00019-1,1,4380_7778208_2200201,4380_566 -4380_77988,293,4380_45833,Ovens,81321-00017-1,1,4380_7778208_2200201,4380_566 -4380_77988,296,4380_45834,Ovens,82731-00021-1,1,4380_7778208_2200212,4380_572 -4380_77988,291,4380_45836,Ovens,82638-00013-1,1,4380_7778208_2200211,4380_567 -4380_77988,296,4380_45837,Ovens,82639-00021-1,1,4380_7778208_2200211,4380_567 -4380_77948,286,4380_4584,Dublin,1565-00010-1,1,4380_7778208_1030105,4380_42 -4380_77988,285,4380_45843,Ovens,81679-00009-1,1,4380_7778208_2200203,4380_567 -4380_77988,286,4380_45844,Ovens,81673-00010-1,1,4380_7778208_2200203,4380_567 -4380_77988,288,4380_45845,Ovens,81677-00011-1,1,4380_7778208_2200203,4380_567 -4380_77988,287,4380_45846,Ovens,81681-00012-1,1,4380_7778208_2200203,4380_567 -4380_77988,289,4380_45847,Ovens,81675-00014-1,1,4380_7778208_2200203,4380_567 -4380_77988,292,4380_45848,Ovens,81674-00016-1,1,4380_7778208_2200203,4380_567 -4380_77988,290,4380_45849,Ovens,81680-00015-1,1,4380_7778208_2200203,4380_567 -4380_77948,288,4380_4585,Dublin,1573-00011-1,1,4380_7778208_1030105,4380_42 -4380_77988,294,4380_45850,Ovens,81682-00018-1,1,4380_7778208_2200203,4380_567 -4380_77988,295,4380_45851,Ovens,81676-00019-1,1,4380_7778208_2200203,4380_567 -4380_77988,293,4380_45852,Ovens,81678-00017-1,1,4380_7778208_2200203,4380_567 -4380_77988,297,4380_45854,Ovens,81484-00008-1,1,4380_7778208_2200202,4380_566 -4380_77948,287,4380_4586,Dublin,1581-00012-1,1,4380_7778208_1030105,4380_42 -4380_77988,285,4380_45861,Ovens,81493-00009-1,1,4380_7778208_2200202,4380_566 -4380_77988,286,4380_45862,Ovens,81485-00010-1,1,4380_7778208_2200202,4380_566 -4380_77988,288,4380_45863,Ovens,81491-00011-1,1,4380_7778208_2200202,4380_566 -4380_77988,287,4380_45864,Ovens,81487-00012-1,1,4380_7778208_2200202,4380_566 -4380_77988,291,4380_45865,Ovens,82382-00013-1,1,4380_7778208_2200209,4380_572 -4380_77988,289,4380_45866,Ovens,81489-00014-1,1,4380_7778208_2200202,4380_566 -4380_77988,292,4380_45867,Ovens,81486-00016-1,1,4380_7778208_2200202,4380_566 -4380_77988,290,4380_45868,Ovens,81494-00015-1,1,4380_7778208_2200202,4380_566 -4380_77988,294,4380_45869,Ovens,81488-00018-1,1,4380_7778208_2200202,4380_566 -4380_77948,289,4380_4587,Dublin,1549-00014-1,1,4380_7778208_1030105,4380_42 -4380_77988,295,4380_45870,Ovens,81490-00019-1,1,4380_7778208_2200202,4380_566 -4380_77988,293,4380_45871,Ovens,81492-00017-1,1,4380_7778208_2200202,4380_566 -4380_77988,296,4380_45872,Ovens,82383-00021-1,1,4380_7778208_2200209,4380_572 -4380_77988,297,4380_45874,Ovens,81918-00008-1,1,4380_7778208_2200205,4380_568 -4380_77948,290,4380_4588,Dublin,52049-00015-1,1,4380_7778208_1030105,4380_42 -4380_77988,285,4380_45881,Ovens,81814-00009-1,1,4380_7778208_2200204,4380_567 -4380_77988,286,4380_45882,Ovens,81816-00010-1,1,4380_7778208_2200204,4380_567 -4380_77988,288,4380_45883,Ovens,81812-00011-1,1,4380_7778208_2200204,4380_567 -4380_77988,287,4380_45884,Ovens,81820-00012-1,1,4380_7778208_2200204,4380_567 -4380_77988,291,4380_45885,Ovens,81495-00013-1,1,4380_7778208_2200202,4380_571 -4380_77988,289,4380_45886,Ovens,81818-00014-1,1,4380_7778208_2200204,4380_567 -4380_77988,292,4380_45887,Ovens,81817-00016-1,1,4380_7778208_2200204,4380_567 -4380_77988,290,4380_45888,Ovens,81815-00015-1,1,4380_7778208_2200204,4380_567 -4380_77988,294,4380_45889,Ovens,81821-00018-1,1,4380_7778208_2200204,4380_567 -4380_77948,292,4380_4589,Dublin,52053-00016-1,1,4380_7778208_1030105,4380_42 -4380_77988,295,4380_45890,Ovens,81819-00019-1,1,4380_7778208_2200204,4380_567 -4380_77988,293,4380_45891,Ovens,81813-00017-1,1,4380_7778208_2200204,4380_567 -4380_77988,296,4380_45892,Ovens,81496-00021-1,1,4380_7778208_2200202,4380_571 -4380_77988,297,4380_45894,Ovens,82384-00008-1,1,4380_7778208_2200209,4380_566 -4380_77988,297,4380_45896,Ovens,81822-00008-1,1,4380_7778208_2200204,4380_567 -4380_77946,295,4380_459,Drogheda,50498-00019-1,1,4380_7778208_1000915,4380_6 -4380_77948,293,4380_4590,Dublin,52050-00017-1,1,4380_7778208_1030105,4380_42 -4380_77988,285,4380_45903,Ovens,81919-00009-1,1,4380_7778208_2200205,4380_566 -4380_77988,286,4380_45904,Ovens,81921-00010-1,1,4380_7778208_2200205,4380_566 -4380_77988,288,4380_45905,Ovens,81927-00011-1,1,4380_7778208_2200205,4380_566 -4380_77988,287,4380_45906,Ovens,81923-00012-1,1,4380_7778208_2200205,4380_566 -4380_77988,291,4380_45907,Ovens,82495-00013-1,1,4380_7778208_2200210,4380_572 -4380_77988,289,4380_45908,Ovens,81925-00014-1,1,4380_7778208_2200205,4380_566 -4380_77988,292,4380_45909,Ovens,81922-00016-1,1,4380_7778208_2200205,4380_566 -4380_77948,294,4380_4591,Dublin,52051-00018-1,1,4380_7778208_1030105,4380_42 -4380_77988,290,4380_45910,Ovens,81920-00015-1,1,4380_7778208_2200205,4380_566 -4380_77988,294,4380_45911,Ovens,81924-00018-1,1,4380_7778208_2200205,4380_566 -4380_77988,295,4380_45912,Ovens,81926-00019-1,1,4380_7778208_2200205,4380_566 -4380_77988,293,4380_45913,Ovens,81928-00017-1,1,4380_7778208_2200205,4380_566 -4380_77988,296,4380_45914,Ovens,82496-00021-1,1,4380_7778208_2200210,4380_572 -4380_77948,295,4380_4592,Dublin,52052-00019-1,1,4380_7778208_1030105,4380_42 -4380_77988,285,4380_45921,Ovens,82274-00009-1,1,4380_7778208_2200208,4380_567 -4380_77988,286,4380_45922,Ovens,82272-00010-1,1,4380_7778208_2200208,4380_567 -4380_77988,288,4380_45923,Ovens,82268-00011-1,1,4380_7778208_2200208,4380_567 -4380_77988,287,4380_45924,Ovens,82276-00012-1,1,4380_7778208_2200208,4380_567 -4380_77988,291,4380_45925,Ovens,82270-00013-1,1,4380_7778208_2200208,4380_571 -4380_77988,289,4380_45926,Ovens,82266-00014-1,1,4380_7778208_2200208,4380_567 -4380_77988,292,4380_45927,Ovens,82273-00016-1,1,4380_7778208_2200208,4380_567 -4380_77988,290,4380_45928,Ovens,82275-00015-1,1,4380_7778208_2200208,4380_567 -4380_77988,294,4380_45929,Ovens,82277-00018-1,1,4380_7778208_2200208,4380_567 -4380_77988,295,4380_45930,Ovens,82267-00019-1,1,4380_7778208_2200208,4380_567 -4380_77988,293,4380_45931,Ovens,82269-00017-1,1,4380_7778208_2200208,4380_567 -4380_77988,296,4380_45932,Ovens,82271-00021-1,1,4380_7778208_2200208,4380_571 -4380_77988,297,4380_45934,Ovens,81330-00008-1,1,4380_7778208_2200201,4380_566 -4380_77988,297,4380_45936,Ovens,82173-00008-1,1,4380_7778208_2200207,4380_568 -4380_77988,285,4380_45943,Ovens,82738-00009-1,1,4380_7778208_2200212,4380_566 -4380_77988,286,4380_45944,Ovens,82740-00010-1,1,4380_7778208_2200212,4380_566 -4380_77988,288,4380_45945,Ovens,82736-00011-1,1,4380_7778208_2200212,4380_566 -4380_77988,287,4380_45946,Ovens,82734-00012-1,1,4380_7778208_2200212,4380_566 -4380_77988,291,4380_45947,Ovens,81929-00013-1,1,4380_7778208_2200205,4380_572 -4380_77988,289,4380_45948,Ovens,82742-00014-1,1,4380_7778208_2200212,4380_566 -4380_77988,292,4380_45949,Ovens,82741-00016-1,1,4380_7778208_2200212,4380_566 -4380_77988,290,4380_45950,Ovens,82739-00015-1,1,4380_7778208_2200212,4380_566 -4380_77988,294,4380_45951,Ovens,82735-00018-1,1,4380_7778208_2200212,4380_566 -4380_77988,295,4380_45952,Ovens,82743-00019-1,1,4380_7778208_2200212,4380_566 -4380_77988,293,4380_45953,Ovens,82737-00017-1,1,4380_7778208_2200212,4380_566 -4380_77988,296,4380_45954,Ovens,81930-00021-1,1,4380_7778208_2200205,4380_572 -4380_77988,285,4380_45961,Ovens,82822-00009-1,1,4380_7778208_2200213,4380_567 -4380_77988,286,4380_45962,Ovens,82818-00010-1,1,4380_7778208_2200213,4380_567 -4380_77988,288,4380_45963,Ovens,82814-00011-1,1,4380_7778208_2200213,4380_567 -4380_77988,287,4380_45964,Ovens,82820-00012-1,1,4380_7778208_2200213,4380_567 -4380_77988,291,4380_45965,Ovens,81686-00013-1,1,4380_7778208_2200203,4380_571 -4380_77988,289,4380_45966,Ovens,82816-00014-1,1,4380_7778208_2200213,4380_567 -4380_77988,292,4380_45967,Ovens,82819-00016-1,1,4380_7778208_2200213,4380_567 -4380_77988,290,4380_45968,Ovens,82823-00015-1,1,4380_7778208_2200213,4380_567 -4380_77988,294,4380_45969,Ovens,82821-00018-1,1,4380_7778208_2200213,4380_567 -4380_77988,295,4380_45970,Ovens,82817-00019-1,1,4380_7778208_2200213,4380_567 -4380_77988,293,4380_45971,Ovens,82815-00017-1,1,4380_7778208_2200213,4380_567 -4380_77988,296,4380_45972,Ovens,81687-00021-1,1,4380_7778208_2200203,4380_571 -4380_77988,297,4380_45974,Ovens,82497-00008-1,1,4380_7778208_2200210,4380_566 -4380_77988,297,4380_45976,Ovens,82278-00008-1,1,4380_7778208_2200208,4380_567 -4380_77988,285,4380_45983,Ovens,82043-00009-1,1,4380_7778208_2200206,4380_566 -4380_77988,286,4380_45984,Ovens,82045-00010-1,1,4380_7778208_2200206,4380_566 -4380_77988,288,4380_45985,Ovens,82039-00011-1,1,4380_7778208_2200206,4380_566 -4380_77988,287,4380_45986,Ovens,82041-00012-1,1,4380_7778208_2200206,4380_566 -4380_77988,291,4380_45987,Ovens,82047-00013-1,1,4380_7778208_2200206,4380_572 -4380_77988,289,4380_45988,Ovens,82049-00014-1,1,4380_7778208_2200206,4380_566 -4380_77988,292,4380_45989,Ovens,82046-00016-1,1,4380_7778208_2200206,4380_566 -4380_77948,291,4380_4599,Dublin,1227-00013-1,1,4380_7778208_1030101,4380_42 -4380_77988,290,4380_45990,Ovens,82044-00015-1,1,4380_7778208_2200206,4380_566 -4380_77988,294,4380_45991,Ovens,82042-00018-1,1,4380_7778208_2200206,4380_566 -4380_77988,295,4380_45992,Ovens,82050-00019-1,1,4380_7778208_2200206,4380_566 -4380_77988,293,4380_45993,Ovens,82040-00017-1,1,4380_7778208_2200206,4380_566 -4380_77988,296,4380_45994,Ovens,82048-00021-1,1,4380_7778208_2200206,4380_572 -4380_77946,285,4380_46,Dundalk,114777-00009-1,0,4380_7778208_10088802,4380_4 -4380_77946,296,4380_460,Drogheda,50280-00021-1,1,4380_7778208_1000912,4380_9 -4380_77948,296,4380_4600,Dublin,51807-00021-1,1,4380_7778208_1030101,4380_42 -4380_77988,285,4380_46001,Ovens,82396-00009-1,1,4380_7778208_2200209,4380_567 -4380_77988,286,4380_46002,Ovens,82390-00010-1,1,4380_7778208_2200209,4380_567 -4380_77988,288,4380_46003,Ovens,82394-00011-1,1,4380_7778208_2200209,4380_567 -4380_77988,287,4380_46004,Ovens,82388-00012-1,1,4380_7778208_2200209,4380_567 -4380_77988,291,4380_46005,Ovens,81341-00013-1,1,4380_7778208_2200201,4380_571 -4380_77988,289,4380_46006,Ovens,82392-00014-1,1,4380_7778208_2200209,4380_567 -4380_77988,292,4380_46007,Ovens,82391-00016-1,1,4380_7778208_2200209,4380_567 -4380_77988,290,4380_46008,Ovens,82397-00015-1,1,4380_7778208_2200209,4380_567 -4380_77988,294,4380_46009,Ovens,82389-00018-1,1,4380_7778208_2200209,4380_567 -4380_77988,295,4380_46010,Ovens,82393-00019-1,1,4380_7778208_2200209,4380_567 -4380_77988,293,4380_46011,Ovens,82395-00017-1,1,4380_7778208_2200209,4380_567 -4380_77988,296,4380_46012,Ovens,81342-00021-1,1,4380_7778208_2200201,4380_571 -4380_77988,297,4380_46014,Ovens,81698-00008-1,1,4380_7778208_2200203,4380_566 -4380_77988,297,4380_46016,Ovens,82051-00008-1,1,4380_7778208_2200206,4380_568 -4380_77988,285,4380_46023,Ovens,82656-00009-1,1,4380_7778208_2200211,4380_566 -4380_77988,286,4380_46024,Ovens,82660-00010-1,1,4380_7778208_2200211,4380_566 -4380_77988,288,4380_46025,Ovens,82652-00011-1,1,4380_7778208_2200211,4380_566 -4380_77988,287,4380_46026,Ovens,82654-00012-1,1,4380_7778208_2200211,4380_566 -4380_77988,291,4380_46027,Ovens,81836-00013-1,1,4380_7778208_2200204,4380_572 -4380_77988,289,4380_46028,Ovens,82658-00014-1,1,4380_7778208_2200211,4380_566 -4380_77988,292,4380_46029,Ovens,82661-00016-1,1,4380_7778208_2200211,4380_566 -4380_77988,290,4380_46030,Ovens,82657-00015-1,1,4380_7778208_2200211,4380_566 -4380_77988,294,4380_46031,Ovens,82655-00018-1,1,4380_7778208_2200211,4380_566 -4380_77988,295,4380_46032,Ovens,82659-00019-1,1,4380_7778208_2200211,4380_566 -4380_77988,293,4380_46033,Ovens,82653-00017-1,1,4380_7778208_2200211,4380_566 -4380_77988,296,4380_46034,Ovens,81837-00021-1,1,4380_7778208_2200204,4380_572 -4380_77988,285,4380_46041,Ovens,82508-00009-1,1,4380_7778208_2200210,4380_567 -4380_77988,286,4380_46042,Ovens,82500-00010-1,1,4380_7778208_2200210,4380_567 -4380_77988,288,4380_46043,Ovens,82504-00011-1,1,4380_7778208_2200210,4380_567 -4380_77988,287,4380_46044,Ovens,82502-00012-1,1,4380_7778208_2200210,4380_567 -4380_77988,291,4380_46045,Ovens,82744-00013-1,1,4380_7778208_2200212,4380_571 -4380_77988,289,4380_46046,Ovens,82506-00014-1,1,4380_7778208_2200210,4380_567 -4380_77988,292,4380_46047,Ovens,82501-00016-1,1,4380_7778208_2200210,4380_567 -4380_77988,290,4380_46048,Ovens,82509-00015-1,1,4380_7778208_2200210,4380_567 -4380_77988,294,4380_46049,Ovens,82503-00018-1,1,4380_7778208_2200210,4380_567 -4380_77988,295,4380_46050,Ovens,82507-00019-1,1,4380_7778208_2200210,4380_567 -4380_77988,293,4380_46051,Ovens,82505-00017-1,1,4380_7778208_2200210,4380_567 -4380_77988,296,4380_46052,Ovens,82745-00021-1,1,4380_7778208_2200212,4380_571 -4380_77988,297,4380_46054,Ovens,81510-00008-1,1,4380_7778208_2200202,4380_566 -4380_77988,297,4380_46056,Ovens,81944-00008-1,1,4380_7778208_2200205,4380_567 -4380_77988,285,4380_46063,Ovens,81344-00009-1,1,4380_7778208_2200201,4380_566 -4380_77988,286,4380_46064,Ovens,81350-00010-1,1,4380_7778208_2200201,4380_566 -4380_77988,288,4380_46065,Ovens,81346-00011-1,1,4380_7778208_2200201,4380_566 -4380_77988,287,4380_46066,Ovens,81352-00012-1,1,4380_7778208_2200201,4380_566 -4380_77988,291,4380_46067,Ovens,82662-00013-1,1,4380_7778208_2200211,4380_572 -4380_77988,289,4380_46068,Ovens,81348-00014-1,1,4380_7778208_2200201,4380_566 -4380_77988,292,4380_46069,Ovens,81351-00016-1,1,4380_7778208_2200201,4380_566 -4380_77988,290,4380_46070,Ovens,81345-00015-1,1,4380_7778208_2200201,4380_566 -4380_77988,294,4380_46071,Ovens,81353-00018-1,1,4380_7778208_2200201,4380_566 -4380_77988,295,4380_46072,Ovens,81349-00019-1,1,4380_7778208_2200201,4380_566 -4380_77988,293,4380_46073,Ovens,81347-00017-1,1,4380_7778208_2200201,4380_566 -4380_77988,296,4380_46074,Ovens,82663-00021-1,1,4380_7778208_2200211,4380_572 -4380_77948,285,4380_4608,Dublin,1777-00009-1,1,4380_7778208_1030108,4380_43 -4380_77988,285,4380_46081,Ovens,82175-00009-1,1,4380_7778208_2200207,4380_567 -4380_77988,286,4380_46082,Ovens,82179-00010-1,1,4380_7778208_2200207,4380_567 -4380_77988,288,4380_46083,Ovens,82181-00011-1,1,4380_7778208_2200207,4380_567 -4380_77988,287,4380_46084,Ovens,82183-00012-1,1,4380_7778208_2200207,4380_567 -4380_77988,291,4380_46085,Ovens,82398-00013-1,1,4380_7778208_2200209,4380_571 -4380_77988,289,4380_46086,Ovens,82177-00014-1,1,4380_7778208_2200207,4380_567 -4380_77988,292,4380_46087,Ovens,82180-00016-1,1,4380_7778208_2200207,4380_567 -4380_77988,290,4380_46088,Ovens,82176-00015-1,1,4380_7778208_2200207,4380_567 -4380_77988,294,4380_46089,Ovens,82184-00018-1,1,4380_7778208_2200207,4380_567 -4380_77948,286,4380_4609,Dublin,1789-00010-1,1,4380_7778208_1030108,4380_43 -4380_77988,295,4380_46090,Ovens,82178-00019-1,1,4380_7778208_2200207,4380_567 -4380_77988,293,4380_46091,Ovens,82182-00017-1,1,4380_7778208_2200207,4380_567 -4380_77988,296,4380_46092,Ovens,82399-00021-1,1,4380_7778208_2200209,4380_571 -4380_77988,297,4380_46094,Ovens,82400-00008-1,1,4380_7778208_2200209,4380_566 -4380_77948,288,4380_4610,Dublin,1801-00011-1,1,4380_7778208_1030108,4380_43 -4380_77988,285,4380_46101,Ovens,81511-00009-1,1,4380_7778208_2200202,4380_566 -4380_77988,286,4380_46102,Ovens,81517-00010-1,1,4380_7778208_2200202,4380_566 -4380_77988,288,4380_46103,Ovens,81521-00011-1,1,4380_7778208_2200202,4380_566 -4380_77988,287,4380_46104,Ovens,81513-00012-1,1,4380_7778208_2200202,4380_566 -4380_77988,291,4380_46105,Ovens,81515-00013-1,1,4380_7778208_2200202,4380_572 -4380_77988,289,4380_46106,Ovens,81519-00014-1,1,4380_7778208_2200202,4380_566 -4380_77988,292,4380_46107,Ovens,81518-00016-1,1,4380_7778208_2200202,4380_566 -4380_77988,290,4380_46108,Ovens,81512-00015-1,1,4380_7778208_2200202,4380_566 -4380_77988,294,4380_46109,Ovens,81514-00018-1,1,4380_7778208_2200202,4380_566 -4380_77948,287,4380_4611,Dublin,1813-00012-1,1,4380_7778208_1030108,4380_43 -4380_77988,295,4380_46110,Ovens,81520-00019-1,1,4380_7778208_2200202,4380_566 -4380_77988,293,4380_46111,Ovens,81522-00017-1,1,4380_7778208_2200202,4380_566 -4380_77988,296,4380_46112,Ovens,81516-00021-1,1,4380_7778208_2200202,4380_572 -4380_77988,297,4380_46114,Ovens,81838-00008-1,1,4380_7778208_2200204,4380_568 -4380_77948,289,4380_4612,Dublin,1765-00014-1,1,4380_7778208_1030108,4380_43 -4380_77988,285,4380_46121,Ovens,81702-00009-1,1,4380_7778208_2200203,4380_567 -4380_77988,286,4380_46122,Ovens,81704-00010-1,1,4380_7778208_2200203,4380_567 -4380_77988,288,4380_46123,Ovens,81706-00011-1,1,4380_7778208_2200203,4380_567 -4380_77988,287,4380_46124,Ovens,81708-00012-1,1,4380_7778208_2200203,4380_567 -4380_77988,291,4380_46125,Ovens,82511-00013-1,1,4380_7778208_2200210,4380_571 -4380_77988,289,4380_46126,Ovens,81710-00014-1,1,4380_7778208_2200203,4380_567 -4380_77988,292,4380_46127,Ovens,81705-00016-1,1,4380_7778208_2200203,4380_567 -4380_77988,290,4380_46128,Ovens,81703-00015-1,1,4380_7778208_2200203,4380_567 -4380_77988,294,4380_46129,Ovens,81709-00018-1,1,4380_7778208_2200203,4380_567 -4380_77948,290,4380_4613,Dublin,52229-00015-1,1,4380_7778208_1030108,4380_43 -4380_77988,295,4380_46130,Ovens,81711-00019-1,1,4380_7778208_2200203,4380_567 -4380_77988,293,4380_46131,Ovens,81707-00017-1,1,4380_7778208_2200203,4380_567 -4380_77988,296,4380_46132,Ovens,82512-00021-1,1,4380_7778208_2200210,4380_571 -4380_77988,297,4380_46134,Ovens,81356-00008-1,1,4380_7778208_2200201,4380_566 -4380_77988,297,4380_46136,Ovens,82185-00008-1,1,4380_7778208_2200207,4380_567 -4380_77948,292,4380_4614,Dublin,52232-00016-1,1,4380_7778208_1030108,4380_43 -4380_77988,285,4380_46143,Ovens,81951-00009-1,1,4380_7778208_2200205,4380_566 -4380_77988,286,4380_46144,Ovens,81949-00010-1,1,4380_7778208_2200205,4380_566 -4380_77988,288,4380_46145,Ovens,81953-00011-1,1,4380_7778208_2200205,4380_566 -4380_77988,287,4380_46146,Ovens,81945-00012-1,1,4380_7778208_2200205,4380_566 -4380_77988,291,4380_46147,Ovens,82292-00013-1,1,4380_7778208_2200208,4380_572 -4380_77988,289,4380_46148,Ovens,81947-00014-1,1,4380_7778208_2200205,4380_566 -4380_77988,292,4380_46149,Ovens,81950-00016-1,1,4380_7778208_2200205,4380_566 -4380_77948,293,4380_4615,Dublin,52233-00017-1,1,4380_7778208_1030108,4380_43 -4380_77988,290,4380_46150,Ovens,81952-00015-1,1,4380_7778208_2200205,4380_566 -4380_77988,294,4380_46151,Ovens,81946-00018-1,1,4380_7778208_2200205,4380_566 -4380_77988,295,4380_46152,Ovens,81948-00019-1,1,4380_7778208_2200205,4380_566 -4380_77988,293,4380_46153,Ovens,81954-00017-1,1,4380_7778208_2200205,4380_566 -4380_77988,296,4380_46154,Ovens,82293-00021-1,1,4380_7778208_2200208,4380_572 -4380_77948,294,4380_4616,Dublin,52231-00018-1,1,4380_7778208_1030108,4380_43 -4380_77988,285,4380_46161,Ovens,81841-00009-1,1,4380_7778208_2200204,4380_567 -4380_77988,286,4380_46162,Ovens,81845-00010-1,1,4380_7778208_2200204,4380_567 -4380_77988,288,4380_46163,Ovens,81847-00011-1,1,4380_7778208_2200204,4380_567 -4380_77988,287,4380_46164,Ovens,81849-00012-1,1,4380_7778208_2200204,4380_567 -4380_77988,291,4380_46165,Ovens,81955-00013-1,1,4380_7778208_2200205,4380_571 -4380_77988,289,4380_46166,Ovens,81843-00014-1,1,4380_7778208_2200204,4380_567 -4380_77988,292,4380_46167,Ovens,81846-00016-1,1,4380_7778208_2200204,4380_567 -4380_77988,290,4380_46168,Ovens,81842-00015-1,1,4380_7778208_2200204,4380_567 -4380_77988,294,4380_46169,Ovens,81850-00018-1,1,4380_7778208_2200204,4380_567 -4380_77948,295,4380_4617,Dublin,52230-00019-1,1,4380_7778208_1030108,4380_43 -4380_77988,295,4380_46170,Ovens,81844-00019-1,1,4380_7778208_2200204,4380_567 -4380_77988,293,4380_46171,Ovens,81848-00017-1,1,4380_7778208_2200204,4380_567 -4380_77988,296,4380_46172,Ovens,81956-00021-1,1,4380_7778208_2200205,4380_571 -4380_77988,297,4380_46174,Ovens,82523-00008-1,1,4380_7778208_2200210,4380_566 -4380_77948,297,4380_4618,Dublin,1541-00008-1,1,4380_7778208_1030104,4380_42 -4380_77988,285,4380_46181,Ovens,82065-00009-1,1,4380_7778208_2200206,4380_566 -4380_77988,286,4380_46182,Ovens,82067-00010-1,1,4380_7778208_2200206,4380_566 -4380_77988,288,4380_46183,Ovens,82069-00011-1,1,4380_7778208_2200206,4380_566 -4380_77988,287,4380_46184,Ovens,82071-00012-1,1,4380_7778208_2200206,4380_566 -4380_77988,291,4380_46185,Ovens,81712-00013-1,1,4380_7778208_2200203,4380_566 -4380_77988,289,4380_46186,Ovens,82073-00014-1,1,4380_7778208_2200206,4380_566 -4380_77988,292,4380_46187,Ovens,82068-00016-1,1,4380_7778208_2200206,4380_566 -4380_77988,290,4380_46188,Ovens,82066-00015-1,1,4380_7778208_2200206,4380_566 -4380_77988,294,4380_46189,Ovens,82072-00018-1,1,4380_7778208_2200206,4380_566 -4380_77948,291,4380_4619,Dublin,1589-00013-1,1,4380_7778208_1030105,4380_42 -4380_77988,295,4380_46190,Ovens,82074-00019-1,1,4380_7778208_2200206,4380_566 -4380_77988,293,4380_46191,Ovens,82070-00017-1,1,4380_7778208_2200206,4380_566 -4380_77988,296,4380_46192,Ovens,81713-00021-1,1,4380_7778208_2200203,4380_566 -4380_77988,297,4380_46194,Ovens,82294-00008-1,1,4380_7778208_2200208,4380_568 -4380_77948,296,4380_4620,Dublin,52054-00021-1,1,4380_7778208_1030105,4380_42 -4380_77988,285,4380_46201,Ovens,82299-00009-1,1,4380_7778208_2200208,4380_567 -4380_77988,286,4380_46202,Ovens,82303-00010-1,1,4380_7778208_2200208,4380_567 -4380_77988,288,4380_46203,Ovens,82297-00011-1,1,4380_7778208_2200208,4380_567 -4380_77988,287,4380_46204,Ovens,82295-00012-1,1,4380_7778208_2200208,4380_567 -4380_77988,291,4380_46205,Ovens,82075-00013-1,1,4380_7778208_2200206,4380_571 -4380_77988,289,4380_46206,Ovens,82301-00014-1,1,4380_7778208_2200208,4380_567 -4380_77988,292,4380_46207,Ovens,82304-00016-1,1,4380_7778208_2200208,4380_567 -4380_77988,290,4380_46208,Ovens,82300-00015-1,1,4380_7778208_2200208,4380_567 -4380_77988,294,4380_46209,Ovens,82296-00018-1,1,4380_7778208_2200208,4380_567 -4380_77948,285,4380_4621,Dublin,1189-00009-1,1,4380_7778208_1030101,4380_42 -4380_77988,295,4380_46210,Ovens,82302-00019-1,1,4380_7778208_2200208,4380_567 -4380_77988,293,4380_46211,Ovens,82298-00017-1,1,4380_7778208_2200208,4380_567 -4380_77988,296,4380_46212,Ovens,82076-00021-1,1,4380_7778208_2200206,4380_571 -4380_77988,297,4380_46214,Ovens,81714-00008-1,1,4380_7778208_2200203,4380_566 -4380_77988,297,4380_46216,Ovens,81526-00008-1,1,4380_7778208_2200202,4380_567 -4380_77988,291,4380_46218,Ovens,81367-00013-1,1,4380_7778208_2200201,4380_566 -4380_77988,296,4380_46219,Ovens,81368-00021-1,1,4380_7778208_2200201,4380_566 -4380_77948,286,4380_4622,Dublin,1199-00010-1,1,4380_7778208_1030101,4380_42 -4380_77988,285,4380_46225,Ovens,82758-00009-1,1,4380_7778208_2200212,4380_566 -4380_77988,286,4380_46226,Ovens,82760-00010-1,1,4380_7778208_2200212,4380_566 -4380_77988,288,4380_46227,Ovens,82764-00011-1,1,4380_7778208_2200212,4380_566 -4380_77988,287,4380_46228,Ovens,82762-00012-1,1,4380_7778208_2200212,4380_566 -4380_77988,289,4380_46229,Ovens,82766-00014-1,1,4380_7778208_2200212,4380_566 -4380_77948,288,4380_4623,Dublin,1209-00011-1,1,4380_7778208_1030101,4380_42 -4380_77988,292,4380_46230,Ovens,82761-00016-1,1,4380_7778208_2200212,4380_566 -4380_77988,290,4380_46231,Ovens,82759-00015-1,1,4380_7778208_2200212,4380_566 -4380_77988,294,4380_46232,Ovens,82763-00018-1,1,4380_7778208_2200212,4380_566 -4380_77988,295,4380_46233,Ovens,82767-00019-1,1,4380_7778208_2200212,4380_566 -4380_77988,293,4380_46234,Ovens,82765-00017-1,1,4380_7778208_2200212,4380_566 -4380_77948,287,4380_4624,Dublin,1219-00012-1,1,4380_7778208_1030101,4380_42 -4380_77988,285,4380_46241,Ovens,82420-00009-1,1,4380_7778208_2200209,4380_567 -4380_77988,286,4380_46242,Ovens,82414-00010-1,1,4380_7778208_2200209,4380_567 -4380_77988,288,4380_46243,Ovens,82418-00011-1,1,4380_7778208_2200209,4380_567 -4380_77988,287,4380_46244,Ovens,82416-00012-1,1,4380_7778208_2200209,4380_567 -4380_77988,291,4380_46245,Ovens,81852-00013-1,1,4380_7778208_2200204,4380_571 -4380_77988,289,4380_46246,Ovens,82412-00014-1,1,4380_7778208_2200209,4380_567 -4380_77988,292,4380_46247,Ovens,82415-00016-1,1,4380_7778208_2200209,4380_567 -4380_77988,290,4380_46248,Ovens,82421-00015-1,1,4380_7778208_2200209,4380_567 -4380_77988,294,4380_46249,Ovens,82417-00018-1,1,4380_7778208_2200209,4380_567 -4380_77948,289,4380_4625,Dublin,1179-00014-1,1,4380_7778208_1030101,4380_42 -4380_77988,295,4380_46250,Ovens,82413-00019-1,1,4380_7778208_2200209,4380_567 -4380_77988,293,4380_46251,Ovens,82419-00017-1,1,4380_7778208_2200209,4380_567 -4380_77988,296,4380_46252,Ovens,81853-00021-1,1,4380_7778208_2200204,4380_571 -4380_77988,297,4380_46254,Ovens,82422-00008-1,1,4380_7778208_2200209,4380_566 -4380_77948,290,4380_4626,Dublin,51808-00015-1,1,4380_7778208_1030101,4380_42 -4380_77988,285,4380_46261,Ovens,82676-00009-1,1,4380_7778208_2200211,4380_566 -4380_77988,286,4380_46262,Ovens,82680-00010-1,1,4380_7778208_2200211,4380_566 -4380_77988,288,4380_46263,Ovens,82684-00011-1,1,4380_7778208_2200211,4380_566 -4380_77988,287,4380_46264,Ovens,82682-00012-1,1,4380_7778208_2200211,4380_566 -4380_77988,291,4380_46265,Ovens,82768-00013-1,1,4380_7778208_2200212,4380_572 -4380_77988,289,4380_46266,Ovens,82678-00014-1,1,4380_7778208_2200211,4380_566 -4380_77988,292,4380_46267,Ovens,82681-00016-1,1,4380_7778208_2200211,4380_566 -4380_77988,290,4380_46268,Ovens,82677-00015-1,1,4380_7778208_2200211,4380_566 -4380_77988,294,4380_46269,Ovens,82683-00018-1,1,4380_7778208_2200211,4380_566 -4380_77948,292,4380_4627,Dublin,51810-00016-1,1,4380_7778208_1030101,4380_42 -4380_77988,295,4380_46270,Ovens,82679-00019-1,1,4380_7778208_2200211,4380_566 -4380_77988,293,4380_46271,Ovens,82685-00017-1,1,4380_7778208_2200211,4380_566 -4380_77988,296,4380_46272,Ovens,82769-00021-1,1,4380_7778208_2200212,4380_572 -4380_77948,293,4380_4628,Dublin,51812-00017-1,1,4380_7778208_1030101,4380_42 -4380_77988,297,4380_46280,Ovens,81970-00008-1,1,4380_7778208_2200205,4380_567 -4380_77988,285,4380_46281,Ovens,82531-00009-1,1,4380_7778208_2200210,4380_571 -4380_77988,286,4380_46282,Ovens,82533-00010-1,1,4380_7778208_2200210,4380_571 -4380_77988,288,4380_46283,Ovens,82535-00011-1,1,4380_7778208_2200210,4380_571 -4380_77988,287,4380_46284,Ovens,82527-00012-1,1,4380_7778208_2200210,4380_571 -4380_77988,291,4380_46285,Ovens,82198-00013-1,1,4380_7778208_2200207,4380_573 -4380_77988,289,4380_46286,Ovens,82529-00014-1,1,4380_7778208_2200210,4380_571 -4380_77988,292,4380_46287,Ovens,82534-00016-1,1,4380_7778208_2200210,4380_571 -4380_77988,290,4380_46288,Ovens,82532-00015-1,1,4380_7778208_2200210,4380_571 -4380_77988,294,4380_46289,Ovens,82528-00018-1,1,4380_7778208_2200210,4380_571 -4380_77948,294,4380_4629,Dublin,51809-00018-1,1,4380_7778208_1030101,4380_42 -4380_77988,295,4380_46290,Ovens,82530-00019-1,1,4380_7778208_2200210,4380_571 -4380_77988,293,4380_46291,Ovens,82536-00017-1,1,4380_7778208_2200210,4380_571 -4380_77988,296,4380_46292,Ovens,82199-00021-1,1,4380_7778208_2200207,4380_573 -4380_77988,285,4380_46299,Ovens,81372-00009-1,1,4380_7778208_2200201,4380_566 -4380_77948,295,4380_4630,Dublin,51811-00019-1,1,4380_7778208_1030101,4380_42 -4380_77988,286,4380_46300,Ovens,81370-00010-1,1,4380_7778208_2200201,4380_566 -4380_77988,288,4380_46301,Ovens,81376-00011-1,1,4380_7778208_2200201,4380_566 -4380_77988,287,4380_46302,Ovens,81378-00012-1,1,4380_7778208_2200201,4380_566 -4380_77988,291,4380_46303,Ovens,82686-00013-1,1,4380_7778208_2200211,4380_572 -4380_77988,289,4380_46304,Ovens,81374-00014-1,1,4380_7778208_2200201,4380_566 -4380_77988,292,4380_46305,Ovens,81371-00016-1,1,4380_7778208_2200201,4380_566 -4380_77988,290,4380_46306,Ovens,81373-00015-1,1,4380_7778208_2200201,4380_566 -4380_77988,294,4380_46307,Ovens,81379-00018-1,1,4380_7778208_2200201,4380_566 -4380_77988,295,4380_46308,Ovens,81375-00019-1,1,4380_7778208_2200201,4380_566 -4380_77988,293,4380_46309,Ovens,81377-00017-1,1,4380_7778208_2200201,4380_566 -4380_77988,296,4380_46310,Ovens,82687-00021-1,1,4380_7778208_2200211,4380_572 -4380_77988,297,4380_46318,Ovens,81380-00008-1,1,4380_7778208_2200201,4380_566 -4380_77988,285,4380_46319,Ovens,82200-00009-1,1,4380_7778208_2200207,4380_567 -4380_77988,286,4380_46320,Ovens,82208-00010-1,1,4380_7778208_2200207,4380_567 -4380_77988,288,4380_46321,Ovens,82206-00011-1,1,4380_7778208_2200207,4380_567 -4380_77988,287,4380_46322,Ovens,82204-00012-1,1,4380_7778208_2200207,4380_567 -4380_77988,291,4380_46323,Ovens,81537-00013-1,1,4380_7778208_2200202,4380_571 -4380_77988,289,4380_46324,Ovens,82202-00014-1,1,4380_7778208_2200207,4380_567 -4380_77988,292,4380_46325,Ovens,82209-00016-1,1,4380_7778208_2200207,4380_567 -4380_77988,290,4380_46326,Ovens,82201-00015-1,1,4380_7778208_2200207,4380_567 -4380_77988,294,4380_46327,Ovens,82205-00018-1,1,4380_7778208_2200207,4380_567 -4380_77988,295,4380_46328,Ovens,82203-00019-1,1,4380_7778208_2200207,4380_567 -4380_77988,293,4380_46329,Ovens,82207-00017-1,1,4380_7778208_2200207,4380_567 -4380_77988,296,4380_46330,Ovens,81538-00021-1,1,4380_7778208_2200202,4380_571 -4380_77988,297,4380_46332,Ovens,82537-00008-1,1,4380_7778208_2200210,4380_567 -4380_77988,291,4380_46334,Ovens,82538-00013-1,1,4380_7778208_2200210,4380_566 -4380_77988,296,4380_46335,Ovens,82539-00021-1,1,4380_7778208_2200210,4380_566 -4380_77988,285,4380_46341,Ovens,81542-00009-1,1,4380_7778208_2200202,4380_566 -4380_77988,286,4380_46342,Ovens,81544-00010-1,1,4380_7778208_2200202,4380_566 -4380_77988,288,4380_46343,Ovens,81548-00011-1,1,4380_7778208_2200202,4380_566 -4380_77988,287,4380_46344,Ovens,81540-00012-1,1,4380_7778208_2200202,4380_566 -4380_77988,289,4380_46345,Ovens,81546-00014-1,1,4380_7778208_2200202,4380_566 -4380_77988,292,4380_46346,Ovens,81545-00016-1,1,4380_7778208_2200202,4380_566 -4380_77988,290,4380_46347,Ovens,81543-00015-1,1,4380_7778208_2200202,4380_566 -4380_77988,294,4380_46348,Ovens,81541-00018-1,1,4380_7778208_2200202,4380_566 -4380_77988,295,4380_46349,Ovens,81547-00019-1,1,4380_7778208_2200202,4380_566 -4380_77988,293,4380_46350,Ovens,81549-00017-1,1,4380_7778208_2200202,4380_566 -4380_77988,285,4380_46357,Ovens,81730-00009-1,1,4380_7778208_2200203,4380_567 -4380_77988,286,4380_46358,Ovens,81736-00010-1,1,4380_7778208_2200203,4380_567 -4380_77988,288,4380_46359,Ovens,81732-00011-1,1,4380_7778208_2200203,4380_567 -4380_77988,287,4380_46360,Ovens,81728-00012-1,1,4380_7778208_2200203,4380_567 -4380_77988,291,4380_46361,Ovens,82317-00013-1,1,4380_7778208_2200208,4380_571 -4380_77988,289,4380_46362,Ovens,81734-00014-1,1,4380_7778208_2200203,4380_567 -4380_77988,292,4380_46363,Ovens,81737-00016-1,1,4380_7778208_2200203,4380_567 -4380_77988,290,4380_46364,Ovens,81731-00015-1,1,4380_7778208_2200203,4380_567 -4380_77988,294,4380_46365,Ovens,81729-00018-1,1,4380_7778208_2200203,4380_567 -4380_77988,295,4380_46366,Ovens,81735-00019-1,1,4380_7778208_2200203,4380_567 -4380_77988,293,4380_46367,Ovens,81733-00017-1,1,4380_7778208_2200203,4380_567 -4380_77988,296,4380_46368,Ovens,82318-00021-1,1,4380_7778208_2200208,4380_571 -4380_77988,297,4380_46370,Ovens,81738-00008-1,1,4380_7778208_2200203,4380_566 -4380_77988,291,4380_46372,Ovens,81739-00013-1,1,4380_7778208_2200203,4380_566 -4380_77988,296,4380_46373,Ovens,81740-00021-1,1,4380_7778208_2200203,4380_566 -4380_77948,297,4380_4638,Dublin,1757-00008-1,1,4380_7778208_1030107,4380_42 -4380_77988,297,4380_46380,Ovens,81550-00008-1,1,4380_7778208_2200202,4380_567 -4380_77988,285,4380_46381,Ovens,82095-00009-1,1,4380_7778208_2200206,4380_566 -4380_77988,286,4380_46382,Ovens,82089-00010-1,1,4380_7778208_2200206,4380_566 -4380_77988,288,4380_46383,Ovens,82097-00011-1,1,4380_7778208_2200206,4380_566 -4380_77988,287,4380_46384,Ovens,82091-00012-1,1,4380_7778208_2200206,4380_566 -4380_77988,289,4380_46385,Ovens,82093-00014-1,1,4380_7778208_2200206,4380_566 -4380_77988,292,4380_46386,Ovens,82090-00016-1,1,4380_7778208_2200206,4380_566 -4380_77988,290,4380_46387,Ovens,82096-00015-1,1,4380_7778208_2200206,4380_566 -4380_77988,294,4380_46388,Ovens,82092-00018-1,1,4380_7778208_2200206,4380_566 -4380_77988,295,4380_46389,Ovens,82094-00019-1,1,4380_7778208_2200206,4380_566 -4380_77948,291,4380_4639,Dublin,1327-00013-1,1,4380_7778208_1030102,4380_43 -4380_77988,293,4380_46390,Ovens,82098-00017-1,1,4380_7778208_2200206,4380_566 -4380_77988,285,4380_46397,Ovens,82782-00009-1,1,4380_7778208_2200212,4380_566 -4380_77988,286,4380_46398,Ovens,82790-00010-1,1,4380_7778208_2200212,4380_566 -4380_77988,288,4380_46399,Ovens,82788-00011-1,1,4380_7778208_2200212,4380_566 -4380_77948,296,4380_4640,Dublin,51867-00021-1,1,4380_7778208_1030102,4380_43 -4380_77988,287,4380_46400,Ovens,82784-00012-1,1,4380_7778208_2200212,4380_566 -4380_77988,291,4380_46401,Ovens,81866-00013-1,1,4380_7778208_2200204,4380_572 -4380_77988,289,4380_46402,Ovens,82786-00014-1,1,4380_7778208_2200212,4380_566 -4380_77988,292,4380_46403,Ovens,82791-00016-1,1,4380_7778208_2200212,4380_566 -4380_77988,290,4380_46404,Ovens,82783-00015-1,1,4380_7778208_2200212,4380_566 -4380_77988,294,4380_46405,Ovens,82785-00018-1,1,4380_7778208_2200212,4380_566 -4380_77988,295,4380_46406,Ovens,82787-00019-1,1,4380_7778208_2200212,4380_566 -4380_77988,293,4380_46407,Ovens,82789-00017-1,1,4380_7778208_2200212,4380_566 -4380_77988,296,4380_46408,Ovens,81867-00021-1,1,4380_7778208_2200204,4380_572 -4380_77948,285,4380_4641,Dublin,1914-00009-1,1,4380_7778208_1030110,4380_42 -4380_77988,297,4380_46410,Ovens,82434-00008-1,1,4380_7778208_2200209,4380_566 -4380_77988,285,4380_46417,Ovens,82329-00009-1,1,4380_7778208_2200208,4380_566 -4380_77988,286,4380_46418,Ovens,82327-00010-1,1,4380_7778208_2200208,4380_566 -4380_77988,288,4380_46419,Ovens,82321-00011-1,1,4380_7778208_2200208,4380_566 -4380_77948,286,4380_4642,Dublin,1924-00010-1,1,4380_7778208_1030110,4380_42 -4380_77988,287,4380_46420,Ovens,82323-00012-1,1,4380_7778208_2200208,4380_566 -4380_77988,291,4380_46421,Ovens,82792-00013-1,1,4380_7778208_2200212,4380_567 -4380_77988,289,4380_46422,Ovens,82325-00014-1,1,4380_7778208_2200208,4380_566 -4380_77988,292,4380_46423,Ovens,82328-00016-1,1,4380_7778208_2200208,4380_566 -4380_77988,290,4380_46424,Ovens,82330-00015-1,1,4380_7778208_2200208,4380_566 -4380_77988,294,4380_46425,Ovens,82324-00018-1,1,4380_7778208_2200208,4380_566 -4380_77988,295,4380_46426,Ovens,82326-00019-1,1,4380_7778208_2200208,4380_566 -4380_77988,293,4380_46427,Ovens,82322-00017-1,1,4380_7778208_2200208,4380_566 -4380_77988,296,4380_46428,Ovens,82793-00021-1,1,4380_7778208_2200212,4380_567 -4380_77948,288,4380_4643,Dublin,1934-00011-1,1,4380_7778208_1030110,4380_42 -4380_77988,297,4380_46430,Ovens,81972-00008-1,1,4380_7778208_2200205,4380_567 -4380_77988,285,4380_46436,Ovens,82557-00009-1,1,4380_7778208_2200210,4380_566 -4380_77988,286,4380_46437,Ovens,82559-00010-1,1,4380_7778208_2200210,4380_566 -4380_77988,288,4380_46438,Ovens,82555-00011-1,1,4380_7778208_2200210,4380_566 -4380_77988,287,4380_46439,Ovens,82553-00012-1,1,4380_7778208_2200210,4380_566 -4380_77948,287,4380_4644,Dublin,1944-00012-1,1,4380_7778208_1030110,4380_42 -4380_77988,289,4380_46440,Ovens,82561-00014-1,1,4380_7778208_2200210,4380_566 -4380_77988,292,4380_46441,Ovens,82560-00016-1,1,4380_7778208_2200210,4380_566 -4380_77988,290,4380_46442,Ovens,82558-00015-1,1,4380_7778208_2200210,4380_566 -4380_77988,294,4380_46443,Ovens,82554-00018-1,1,4380_7778208_2200210,4380_566 -4380_77988,295,4380_46444,Ovens,82562-00019-1,1,4380_7778208_2200210,4380_566 -4380_77988,293,4380_46445,Ovens,82556-00017-1,1,4380_7778208_2200210,4380_566 -4380_77988,291,4380_46447,Ovens,82222-00013-1,1,4380_7778208_2200207,4380_566 -4380_77988,296,4380_46448,Ovens,82223-00021-1,1,4380_7778208_2200207,4380_566 -4380_77948,289,4380_4645,Dublin,1904-00014-1,1,4380_7778208_1030110,4380_42 -4380_77988,285,4380_46455,Ovens,81402-00009-1,1,4380_7778208_2200201,4380_566 -4380_77988,286,4380_46456,Ovens,81394-00010-1,1,4380_7778208_2200201,4380_566 -4380_77988,288,4380_46457,Ovens,81400-00011-1,1,4380_7778208_2200201,4380_566 -4380_77988,287,4380_46458,Ovens,81398-00012-1,1,4380_7778208_2200201,4380_566 -4380_77988,291,4380_46459,Ovens,81563-00013-1,1,4380_7778208_2200202,4380_572 -4380_77948,290,4380_4646,Dublin,52353-00015-1,1,4380_7778208_1030110,4380_42 -4380_77988,289,4380_46460,Ovens,81396-00014-1,1,4380_7778208_2200201,4380_566 -4380_77988,292,4380_46461,Ovens,81395-00016-1,1,4380_7778208_2200201,4380_566 -4380_77988,290,4380_46462,Ovens,81403-00015-1,1,4380_7778208_2200201,4380_566 -4380_77988,294,4380_46463,Ovens,81399-00018-1,1,4380_7778208_2200201,4380_566 -4380_77988,295,4380_46464,Ovens,81397-00019-1,1,4380_7778208_2200201,4380_566 -4380_77988,293,4380_46465,Ovens,81401-00017-1,1,4380_7778208_2200201,4380_566 -4380_77988,296,4380_46466,Ovens,81564-00021-1,1,4380_7778208_2200202,4380_572 -4380_77988,297,4380_46468,Ovens,81404-00008-1,1,4380_7778208_2200201,4380_566 -4380_77948,292,4380_4647,Dublin,52351-00016-1,1,4380_7778208_1030110,4380_42 -4380_77988,297,4380_46470,Ovens,82563-00008-1,1,4380_7778208_2200210,4380_567 -4380_77988,285,4380_46476,Ovens,81570-00009-1,1,4380_7778208_2200202,4380_566 -4380_77988,286,4380_46477,Ovens,81568-00010-1,1,4380_7778208_2200202,4380_566 -4380_77988,288,4380_46478,Ovens,81572-00011-1,1,4380_7778208_2200202,4380_566 -4380_77988,287,4380_46479,Ovens,81574-00012-1,1,4380_7778208_2200202,4380_566 -4380_77948,293,4380_4648,Dublin,52355-00017-1,1,4380_7778208_1030110,4380_42 -4380_77988,289,4380_46480,Ovens,81566-00014-1,1,4380_7778208_2200202,4380_566 -4380_77988,292,4380_46481,Ovens,81569-00016-1,1,4380_7778208_2200202,4380_566 -4380_77988,290,4380_46482,Ovens,81571-00015-1,1,4380_7778208_2200202,4380_566 -4380_77988,294,4380_46483,Ovens,81575-00018-1,1,4380_7778208_2200202,4380_566 -4380_77988,295,4380_46484,Ovens,81567-00019-1,1,4380_7778208_2200202,4380_566 -4380_77988,293,4380_46485,Ovens,81573-00017-1,1,4380_7778208_2200202,4380_566 -4380_77988,291,4380_46487,Ovens,82331-00013-1,1,4380_7778208_2200208,4380_566 -4380_77988,296,4380_46488,Ovens,82332-00021-1,1,4380_7778208_2200208,4380_566 -4380_77948,294,4380_4649,Dublin,52354-00018-1,1,4380_7778208_1030110,4380_42 -4380_77988,297,4380_46496,Ovens,81756-00008-1,1,4380_7778208_2200203,4380_569 -4380_77988,285,4380_46497,Ovens,82109-00009-1,1,4380_7778208_2200206,4380_570 -4380_77988,286,4380_46498,Ovens,82111-00010-1,1,4380_7778208_2200206,4380_570 -4380_77988,288,4380_46499,Ovens,82117-00011-1,1,4380_7778208_2200206,4380_570 -4380_77948,295,4380_4650,Dublin,52352-00019-1,1,4380_7778208_1030110,4380_42 -4380_77988,287,4380_46500,Ovens,82113-00012-1,1,4380_7778208_2200206,4380_570 -4380_77988,291,4380_46501,Ovens,81754-00013-1,1,4380_7778208_2200203,4380_570 -4380_77988,289,4380_46502,Ovens,82115-00014-1,1,4380_7778208_2200206,4380_570 -4380_77988,292,4380_46503,Ovens,82112-00016-1,1,4380_7778208_2200206,4380_570 -4380_77988,290,4380_46504,Ovens,82110-00015-1,1,4380_7778208_2200206,4380_570 -4380_77988,294,4380_46505,Ovens,82114-00018-1,1,4380_7778208_2200206,4380_570 -4380_77988,295,4380_46506,Ovens,82116-00019-1,1,4380_7778208_2200206,4380_570 -4380_77988,293,4380_46507,Ovens,82118-00017-1,1,4380_7778208_2200206,4380_570 -4380_77988,296,4380_46508,Ovens,81755-00021-1,1,4380_7778208_2200203,4380_570 -4380_77988,297,4380_46516,Ovens,81576-00008-1,1,4380_7778208_2200202,4380_569 -4380_77988,285,4380_46517,Ovens,82806-00009-1,1,4380_7778208_2200212,4380_570 -4380_77988,286,4380_46518,Ovens,82812-00010-1,1,4380_7778208_2200212,4380_570 -4380_77988,288,4380_46519,Ovens,82808-00011-1,1,4380_7778208_2200212,4380_570 -4380_77988,287,4380_46520,Ovens,82804-00012-1,1,4380_7778208_2200212,4380_570 -4380_77988,291,4380_46521,Ovens,82438-00013-1,1,4380_7778208_2200209,4380_570 -4380_77988,289,4380_46522,Ovens,82810-00014-1,1,4380_7778208_2200212,4380_570 -4380_77988,292,4380_46523,Ovens,82813-00016-1,1,4380_7778208_2200212,4380_570 -4380_77988,290,4380_46524,Ovens,82807-00015-1,1,4380_7778208_2200212,4380_570 -4380_77988,294,4380_46525,Ovens,82805-00018-1,1,4380_7778208_2200212,4380_570 -4380_77988,295,4380_46526,Ovens,82811-00019-1,1,4380_7778208_2200212,4380_570 -4380_77988,293,4380_46527,Ovens,82809-00017-1,1,4380_7778208_2200212,4380_570 -4380_77988,296,4380_46528,Ovens,82439-00021-1,1,4380_7778208_2200209,4380_570 -4380_77988,297,4380_46536,Ovens,81416-00008-1,1,4380_7778208_2200201,4380_569 -4380_77988,285,4380_46537,Ovens,82576-00009-1,1,4380_7778208_2200210,4380_570 -4380_77988,286,4380_46538,Ovens,82574-00010-1,1,4380_7778208_2200210,4380_570 -4380_77988,288,4380_46539,Ovens,82582-00011-1,1,4380_7778208_2200210,4380_570 -4380_77988,287,4380_46540,Ovens,82578-00012-1,1,4380_7778208_2200210,4380_570 -4380_77988,291,4380_46541,Ovens,81580-00013-1,1,4380_7778208_2200202,4380_570 -4380_77988,289,4380_46542,Ovens,82580-00014-1,1,4380_7778208_2200210,4380_570 -4380_77988,292,4380_46543,Ovens,82575-00016-1,1,4380_7778208_2200210,4380_570 -4380_77988,290,4380_46544,Ovens,82577-00015-1,1,4380_7778208_2200210,4380_570 -4380_77988,294,4380_46545,Ovens,82579-00018-1,1,4380_7778208_2200210,4380_570 -4380_77988,295,4380_46546,Ovens,82581-00019-1,1,4380_7778208_2200210,4380_570 -4380_77988,293,4380_46547,Ovens,82583-00017-1,1,4380_7778208_2200210,4380_570 -4380_77988,296,4380_46548,Ovens,81581-00021-1,1,4380_7778208_2200202,4380_570 -4380_77988,297,4380_46556,Ovens,81602-00008-1,1,4380_7778208_2200202,4380_569 -4380_77988,285,4380_46557,Ovens,81600-00009-1,1,4380_7778208_2200202,4380_570 -4380_77988,286,4380_46558,Ovens,81592-00010-1,1,4380_7778208_2200202,4380_570 -4380_77988,288,4380_46559,Ovens,81598-00011-1,1,4380_7778208_2200202,4380_570 -4380_77988,287,4380_46560,Ovens,81594-00012-1,1,4380_7778208_2200202,4380_570 -4380_77988,291,4380_46561,Ovens,82442-00013-1,1,4380_7778208_2200209,4380_574 -4380_77988,289,4380_46562,Ovens,81603-00014-1,1,4380_7778208_2200202,4380_570 -4380_77988,292,4380_46563,Ovens,81593-00016-1,1,4380_7778208_2200202,4380_570 -4380_77988,290,4380_46564,Ovens,81601-00015-1,1,4380_7778208_2200202,4380_570 -4380_77988,294,4380_46565,Ovens,81595-00018-1,1,4380_7778208_2200202,4380_570 -4380_77988,295,4380_46566,Ovens,81604-00019-1,1,4380_7778208_2200202,4380_570 -4380_77988,293,4380_46567,Ovens,81599-00017-1,1,4380_7778208_2200202,4380_570 -4380_77988,296,4380_46568,Ovens,82443-00021-1,1,4380_7778208_2200209,4380_574 -4380_77948,291,4380_4657,Dublin,1829-00013-1,1,4380_7778208_1030108,4380_42 -4380_77988,297,4380_46576,Ovens,81418-00008-1,1,4380_7778208_2200201,4380_569 -4380_77988,285,4380_46577,Ovens,82596-00009-1,1,4380_7778208_2200210,4380_570 -4380_77988,286,4380_46578,Ovens,82594-00010-1,1,4380_7778208_2200210,4380_570 -4380_77988,288,4380_46579,Ovens,82598-00011-1,1,4380_7778208_2200210,4380_570 -4380_77948,296,4380_4658,Dublin,52234-00021-1,1,4380_7778208_1030108,4380_42 -4380_77988,287,4380_46580,Ovens,82600-00012-1,1,4380_7778208_2200210,4380_570 -4380_77988,291,4380_46581,Ovens,81616-00013-1,1,4380_7778208_2200202,4380_574 -4380_77988,289,4380_46582,Ovens,82602-00014-1,1,4380_7778208_2200210,4380_570 -4380_77988,292,4380_46583,Ovens,82595-00016-1,1,4380_7778208_2200210,4380_570 -4380_77988,290,4380_46584,Ovens,82597-00015-1,1,4380_7778208_2200210,4380_570 -4380_77988,294,4380_46585,Ovens,82601-00018-1,1,4380_7778208_2200210,4380_570 -4380_77988,295,4380_46586,Ovens,82603-00019-1,1,4380_7778208_2200210,4380_570 -4380_77988,293,4380_46587,Ovens,82599-00017-1,1,4380_7778208_2200210,4380_570 -4380_77988,296,4380_46588,Ovens,81617-00021-1,1,4380_7778208_2200202,4380_574 -4380_78143,285,4380_46594,Crosshaven,82960-00009-1,0,4380_7778208_2200292,4380_575 -4380_78143,288,4380_46595,Crosshaven,82956-00011-1,0,4380_7778208_2200292,4380_575 -4380_78143,287,4380_46596,Crosshaven,82958-00012-1,0,4380_7778208_2200292,4380_575 -4380_78143,286,4380_46597,Crosshaven,82964-00010-1,0,4380_7778208_2200292,4380_575 -4380_78143,289,4380_46598,Crosshaven,82962-00014-1,0,4380_7778208_2200292,4380_575 -4380_78143,292,4380_46599,Crosshaven,82965-00016-1,0,4380_7778208_2200292,4380_575 -4380_78143,290,4380_46600,Crosshaven,82961-00015-1,0,4380_7778208_2200292,4380_575 -4380_78143,294,4380_46601,Crosshaven,82959-00018-1,0,4380_7778208_2200292,4380_575 -4380_78143,295,4380_46602,Crosshaven,82963-00019-1,0,4380_7778208_2200292,4380_575 -4380_78143,293,4380_46603,Crosshaven,82957-00017-1,0,4380_7778208_2200292,4380_575 -4380_78143,291,4380_46605,Crosshaven,82844-00013-1,0,4380_7778208_2200291,4380_575 -4380_78143,296,4380_46606,Crosshaven,82845-00021-1,0,4380_7778208_2200291,4380_575 -4380_78143,285,4380_46613,Crosshaven,82850-00009-1,0,4380_7778208_2200291,4380_575 -4380_78143,286,4380_46614,Crosshaven,82846-00010-1,0,4380_7778208_2200291,4380_575 -4380_78143,288,4380_46615,Crosshaven,82848-00011-1,0,4380_7778208_2200291,4380_575 -4380_78143,287,4380_46616,Crosshaven,82852-00012-1,0,4380_7778208_2200291,4380_575 -4380_78143,291,4380_46617,Crosshaven,82968-00013-1,0,4380_7778208_2200292,4380_578 -4380_78143,289,4380_46618,Crosshaven,82854-00014-1,0,4380_7778208_2200291,4380_575 -4380_78143,292,4380_46619,Crosshaven,82847-00016-1,0,4380_7778208_2200291,4380_575 -4380_78143,290,4380_46620,Crosshaven,82851-00015-1,0,4380_7778208_2200291,4380_575 -4380_78143,294,4380_46621,Crosshaven,82853-00018-1,0,4380_7778208_2200291,4380_575 -4380_78143,295,4380_46622,Crosshaven,82855-00019-1,0,4380_7778208_2200291,4380_575 -4380_78143,293,4380_46623,Crosshaven,82849-00017-1,0,4380_7778208_2200291,4380_575 -4380_78143,296,4380_46624,Crosshaven,82969-00021-1,0,4380_7778208_2200292,4380_578 -4380_78143,285,4380_46631,Crosshaven,83096-00009-1,0,4380_7778208_2200293,4380_575 -4380_78143,288,4380_46632,Crosshaven,83098-00011-1,0,4380_7778208_2200293,4380_575 -4380_78143,287,4380_46633,Crosshaven,83106-00012-1,0,4380_7778208_2200293,4380_575 -4380_78143,286,4380_46634,Crosshaven,83104-00010-1,0,4380_7778208_2200293,4380_575 -4380_78143,291,4380_46635,Crosshaven,83100-00013-1,0,4380_7778208_2200293,4380_578 -4380_78143,289,4380_46636,Crosshaven,83102-00014-1,0,4380_7778208_2200293,4380_575 -4380_78143,292,4380_46637,Crosshaven,83105-00016-1,0,4380_7778208_2200293,4380_575 -4380_78143,290,4380_46638,Crosshaven,83097-00015-1,0,4380_7778208_2200293,4380_575 -4380_78143,294,4380_46639,Crosshaven,83107-00018-1,0,4380_7778208_2200293,4380_575 -4380_78143,295,4380_46640,Crosshaven,83103-00019-1,0,4380_7778208_2200293,4380_575 -4380_78143,293,4380_46641,Crosshaven,83099-00017-1,0,4380_7778208_2200293,4380_575 -4380_78143,296,4380_46642,Crosshaven,83101-00021-1,0,4380_7778208_2200293,4380_578 -4380_78143,285,4380_46649,Crosshaven,82982-00009-1,0,4380_7778208_2200292,4380_575 -4380_78143,288,4380_46650,Crosshaven,82984-00011-1,0,4380_7778208_2200292,4380_575 -4380_78143,287,4380_46651,Crosshaven,82988-00012-1,0,4380_7778208_2200292,4380_575 -4380_78143,286,4380_46652,Crosshaven,82986-00010-1,0,4380_7778208_2200292,4380_575 -4380_78143,291,4380_46653,Crosshaven,82868-00013-1,0,4380_7778208_2200291,4380_578 -4380_78143,289,4380_46654,Crosshaven,82990-00014-1,0,4380_7778208_2200292,4380_575 -4380_78143,292,4380_46655,Crosshaven,82987-00016-1,0,4380_7778208_2200292,4380_575 -4380_78143,290,4380_46656,Crosshaven,82983-00015-1,0,4380_7778208_2200292,4380_575 -4380_78143,294,4380_46657,Crosshaven,82989-00018-1,0,4380_7778208_2200292,4380_575 -4380_78143,295,4380_46658,Crosshaven,82991-00019-1,0,4380_7778208_2200292,4380_575 -4380_78143,293,4380_46659,Crosshaven,82985-00017-1,0,4380_7778208_2200292,4380_575 -4380_77948,285,4380_4666,Dublin,1279-00009-1,1,4380_7778208_1030102,4380_42 -4380_78143,296,4380_46660,Crosshaven,82869-00021-1,0,4380_7778208_2200291,4380_578 -4380_78143,285,4380_46667,Crosshaven,82872-00009-1,0,4380_7778208_2200291,4380_575 -4380_78143,286,4380_46668,Crosshaven,82874-00010-1,0,4380_7778208_2200291,4380_575 -4380_78143,288,4380_46669,Crosshaven,82876-00011-1,0,4380_7778208_2200291,4380_575 -4380_77948,286,4380_4667,Dublin,1289-00010-1,1,4380_7778208_1030102,4380_42 -4380_78143,287,4380_46670,Crosshaven,82870-00012-1,0,4380_7778208_2200291,4380_575 -4380_78143,291,4380_46671,Crosshaven,82992-00013-1,0,4380_7778208_2200292,4380_578 -4380_78143,289,4380_46672,Crosshaven,82878-00014-1,0,4380_7778208_2200291,4380_575 -4380_78143,292,4380_46673,Crosshaven,82875-00016-1,0,4380_7778208_2200291,4380_575 -4380_78143,290,4380_46674,Crosshaven,82873-00015-1,0,4380_7778208_2200291,4380_575 -4380_78143,294,4380_46675,Crosshaven,82871-00018-1,0,4380_7778208_2200291,4380_575 -4380_78143,295,4380_46676,Crosshaven,82879-00019-1,0,4380_7778208_2200291,4380_575 -4380_78143,293,4380_46677,Crosshaven,82877-00017-1,0,4380_7778208_2200291,4380_575 -4380_78143,296,4380_46678,Crosshaven,82993-00021-1,0,4380_7778208_2200292,4380_578 -4380_77948,297,4380_4668,Dublin,1249-00008-1,1,4380_7778208_1030101,4380_43 -4380_78143,285,4380_46685,Crosshaven,83120-00009-1,0,4380_7778208_2200293,4380_575 -4380_78143,288,4380_46686,Crosshaven,83130-00011-1,0,4380_7778208_2200293,4380_575 -4380_78143,287,4380_46687,Crosshaven,83126-00012-1,0,4380_7778208_2200293,4380_575 -4380_78143,286,4380_46688,Crosshaven,83122-00010-1,0,4380_7778208_2200293,4380_575 -4380_78143,291,4380_46689,Crosshaven,83124-00013-1,0,4380_7778208_2200293,4380_578 -4380_77948,288,4380_4669,Dublin,1299-00011-1,1,4380_7778208_1030102,4380_42 -4380_78143,289,4380_46690,Crosshaven,83128-00014-1,0,4380_7778208_2200293,4380_575 -4380_78143,292,4380_46691,Crosshaven,83123-00016-1,0,4380_7778208_2200293,4380_575 -4380_78143,290,4380_46692,Crosshaven,83121-00015-1,0,4380_7778208_2200293,4380_575 -4380_78143,294,4380_46693,Crosshaven,83127-00018-1,0,4380_7778208_2200293,4380_575 -4380_78143,295,4380_46694,Crosshaven,83129-00019-1,0,4380_7778208_2200293,4380_575 -4380_78143,293,4380_46695,Crosshaven,83131-00017-1,0,4380_7778208_2200293,4380_575 -4380_78143,296,4380_46696,Crosshaven,83125-00021-1,0,4380_7778208_2200293,4380_578 -4380_77948,287,4380_4670,Dublin,1309-00012-1,1,4380_7778208_1030102,4380_42 -4380_78143,285,4380_46703,Crosshaven,83010-00009-1,0,4380_7778208_2200292,4380_575 -4380_78143,288,4380_46704,Crosshaven,83006-00011-1,0,4380_7778208_2200292,4380_575 -4380_78143,287,4380_46705,Crosshaven,83014-00012-1,0,4380_7778208_2200292,4380_575 -4380_78143,286,4380_46706,Crosshaven,83008-00010-1,0,4380_7778208_2200292,4380_575 -4380_78143,291,4380_46707,Crosshaven,82892-00013-1,0,4380_7778208_2200291,4380_578 -4380_78143,289,4380_46708,Crosshaven,83012-00014-1,0,4380_7778208_2200292,4380_575 -4380_78143,292,4380_46709,Crosshaven,83009-00016-1,0,4380_7778208_2200292,4380_575 -4380_77948,289,4380_4671,Dublin,1269-00014-1,1,4380_7778208_1030102,4380_42 -4380_78143,290,4380_46710,Crosshaven,83011-00015-1,0,4380_7778208_2200292,4380_575 -4380_78143,294,4380_46711,Crosshaven,83015-00018-1,0,4380_7778208_2200292,4380_575 -4380_78143,295,4380_46712,Crosshaven,83013-00019-1,0,4380_7778208_2200292,4380_575 -4380_78143,293,4380_46713,Crosshaven,83007-00017-1,0,4380_7778208_2200292,4380_575 -4380_78143,296,4380_46714,Crosshaven,82893-00021-1,0,4380_7778208_2200291,4380_578 -4380_77948,290,4380_4672,Dublin,51872-00015-1,1,4380_7778208_1030102,4380_42 -4380_78143,285,4380_46721,Crosshaven,82898-00009-1,0,4380_7778208_2200291,4380_575 -4380_78143,286,4380_46722,Crosshaven,82894-00010-1,0,4380_7778208_2200291,4380_575 -4380_78143,288,4380_46723,Crosshaven,82902-00011-1,0,4380_7778208_2200291,4380_575 -4380_78143,287,4380_46724,Crosshaven,82900-00012-1,0,4380_7778208_2200291,4380_575 -4380_78143,291,4380_46725,Crosshaven,83016-00013-1,0,4380_7778208_2200292,4380_578 -4380_78143,289,4380_46726,Crosshaven,82896-00014-1,0,4380_7778208_2200291,4380_575 -4380_78143,292,4380_46727,Crosshaven,82895-00016-1,0,4380_7778208_2200291,4380_575 -4380_78143,290,4380_46728,Crosshaven,82899-00015-1,0,4380_7778208_2200291,4380_575 -4380_78143,294,4380_46729,Crosshaven,82901-00018-1,0,4380_7778208_2200291,4380_575 -4380_77948,292,4380_4673,Dublin,51868-00016-1,1,4380_7778208_1030102,4380_42 -4380_78143,295,4380_46730,Crosshaven,82897-00019-1,0,4380_7778208_2200291,4380_575 -4380_78143,293,4380_46731,Crosshaven,82903-00017-1,0,4380_7778208_2200291,4380_575 -4380_78143,296,4380_46732,Crosshaven,83017-00021-1,0,4380_7778208_2200292,4380_578 -4380_78143,285,4380_46739,Crosshaven,83148-00009-1,0,4380_7778208_2200293,4380_575 -4380_77948,293,4380_4674,Dublin,51869-00017-1,1,4380_7778208_1030102,4380_42 -4380_78143,288,4380_46740,Crosshaven,83150-00011-1,0,4380_7778208_2200293,4380_575 -4380_78143,287,4380_46741,Crosshaven,83152-00012-1,0,4380_7778208_2200293,4380_575 -4380_78143,286,4380_46742,Crosshaven,83144-00010-1,0,4380_7778208_2200293,4380_575 -4380_78143,291,4380_46743,Crosshaven,83146-00013-1,0,4380_7778208_2200293,4380_578 -4380_78143,289,4380_46744,Crosshaven,83154-00014-1,0,4380_7778208_2200293,4380_575 -4380_78143,292,4380_46745,Crosshaven,83145-00016-1,0,4380_7778208_2200293,4380_575 -4380_78143,290,4380_46746,Crosshaven,83149-00015-1,0,4380_7778208_2200293,4380_575 -4380_78143,294,4380_46747,Crosshaven,83153-00018-1,0,4380_7778208_2200293,4380_575 -4380_78143,295,4380_46748,Crosshaven,83155-00019-1,0,4380_7778208_2200293,4380_575 -4380_78143,293,4380_46749,Crosshaven,83151-00017-1,0,4380_7778208_2200293,4380_575 -4380_77948,294,4380_4675,Dublin,51870-00018-1,1,4380_7778208_1030102,4380_42 -4380_78143,296,4380_46750,Crosshaven,83147-00021-1,0,4380_7778208_2200293,4380_578 -4380_78143,285,4380_46756,Crosshaven,83206-00009-1,0,4380_7778208_2200295,4380_577 -4380_78143,288,4380_46757,Crosshaven,83202-00011-1,0,4380_7778208_2200295,4380_577 -4380_78143,287,4380_46758,Crosshaven,83208-00012-1,0,4380_7778208_2200295,4380_577 -4380_78143,286,4380_46759,Crosshaven,83204-00010-1,0,4380_7778208_2200295,4380_577 -4380_77948,295,4380_4676,Dublin,51871-00019-1,1,4380_7778208_1030102,4380_42 -4380_78143,289,4380_46760,Crosshaven,83210-00014-1,0,4380_7778208_2200295,4380_577 -4380_78143,292,4380_46761,Crosshaven,83205-00016-1,0,4380_7778208_2200295,4380_577 -4380_78143,290,4380_46762,Crosshaven,83207-00015-1,0,4380_7778208_2200295,4380_577 -4380_78143,294,4380_46763,Crosshaven,83209-00018-1,0,4380_7778208_2200295,4380_577 -4380_78143,295,4380_46764,Crosshaven,83211-00019-1,0,4380_7778208_2200295,4380_577 -4380_78143,293,4380_46765,Crosshaven,83203-00017-1,0,4380_7778208_2200295,4380_577 -4380_77948,291,4380_4677,Dublin,1527-00013-1,1,4380_7778208_1030104,4380_42 -4380_78143,285,4380_46772,Crosshaven,83034-00009-1,0,4380_7778208_2200292,4380_575 -4380_78143,288,4380_46773,Crosshaven,83030-00011-1,0,4380_7778208_2200292,4380_575 -4380_78143,287,4380_46774,Crosshaven,83036-00012-1,0,4380_7778208_2200292,4380_575 -4380_78143,286,4380_46775,Crosshaven,83032-00010-1,0,4380_7778208_2200292,4380_575 -4380_78143,291,4380_46776,Crosshaven,82916-00013-1,0,4380_7778208_2200291,4380_578 -4380_78143,289,4380_46777,Crosshaven,83038-00014-1,0,4380_7778208_2200292,4380_575 -4380_78143,292,4380_46778,Crosshaven,83033-00016-1,0,4380_7778208_2200292,4380_575 -4380_78143,290,4380_46779,Crosshaven,83035-00015-1,0,4380_7778208_2200292,4380_575 -4380_77948,296,4380_4678,Dublin,51989-00021-1,1,4380_7778208_1030104,4380_42 -4380_78143,294,4380_46780,Crosshaven,83037-00018-1,0,4380_7778208_2200292,4380_575 -4380_78143,295,4380_46781,Crosshaven,83039-00019-1,0,4380_7778208_2200292,4380_575 -4380_78143,293,4380_46782,Crosshaven,83031-00017-1,0,4380_7778208_2200292,4380_575 -4380_78143,296,4380_46783,Crosshaven,82917-00021-1,0,4380_7778208_2200291,4380_578 -4380_78143,285,4380_46790,Crosshaven,82924-00009-1,0,4380_7778208_2200291,4380_575 -4380_78143,286,4380_46791,Crosshaven,82920-00010-1,0,4380_7778208_2200291,4380_575 -4380_78143,288,4380_46792,Crosshaven,82918-00011-1,0,4380_7778208_2200291,4380_575 -4380_78143,287,4380_46793,Crosshaven,82926-00012-1,0,4380_7778208_2200291,4380_575 -4380_78143,291,4380_46794,Crosshaven,83040-00013-1,0,4380_7778208_2200292,4380_578 -4380_78143,289,4380_46795,Crosshaven,82922-00014-1,0,4380_7778208_2200291,4380_575 -4380_78143,292,4380_46796,Crosshaven,82921-00016-1,0,4380_7778208_2200291,4380_575 -4380_78143,290,4380_46797,Crosshaven,82925-00015-1,0,4380_7778208_2200291,4380_575 -4380_78143,294,4380_46798,Crosshaven,82927-00018-1,0,4380_7778208_2200291,4380_575 -4380_78143,295,4380_46799,Crosshaven,82923-00019-1,0,4380_7778208_2200291,4380_575 -4380_77946,285,4380_468,Drogheda,50353-00009-1,1,4380_7778208_1000913,4380_6 -4380_78143,293,4380_46800,Crosshaven,82919-00017-1,0,4380_7778208_2200291,4380_575 -4380_78143,296,4380_46801,Crosshaven,83041-00021-1,0,4380_7778208_2200292,4380_578 -4380_78143,285,4380_46808,Crosshaven,83174-00009-1,0,4380_7778208_2200293,4380_575 -4380_78143,288,4380_46809,Crosshaven,83176-00011-1,0,4380_7778208_2200293,4380_575 -4380_78143,287,4380_46810,Crosshaven,83168-00012-1,0,4380_7778208_2200293,4380_575 -4380_78143,286,4380_46811,Crosshaven,83170-00010-1,0,4380_7778208_2200293,4380_575 -4380_78143,291,4380_46812,Crosshaven,83178-00013-1,0,4380_7778208_2200293,4380_578 -4380_78143,289,4380_46813,Crosshaven,83172-00014-1,0,4380_7778208_2200293,4380_575 -4380_78143,292,4380_46814,Crosshaven,83171-00016-1,0,4380_7778208_2200293,4380_575 -4380_78143,290,4380_46815,Crosshaven,83175-00015-1,0,4380_7778208_2200293,4380_575 -4380_78143,294,4380_46816,Crosshaven,83169-00018-1,0,4380_7778208_2200293,4380_575 -4380_78143,295,4380_46817,Crosshaven,83173-00019-1,0,4380_7778208_2200293,4380_575 -4380_78143,293,4380_46818,Crosshaven,83177-00017-1,0,4380_7778208_2200293,4380_575 -4380_78143,296,4380_46819,Crosshaven,83179-00021-1,0,4380_7778208_2200293,4380_578 -4380_78143,285,4380_46826,Crosshaven,83060-00009-1,0,4380_7778208_2200292,4380_575 -4380_78143,288,4380_46827,Crosshaven,83054-00011-1,0,4380_7778208_2200292,4380_575 -4380_78143,287,4380_46828,Crosshaven,83056-00012-1,0,4380_7778208_2200292,4380_575 -4380_78143,286,4380_46829,Crosshaven,83062-00010-1,0,4380_7778208_2200292,4380_575 -4380_78143,291,4380_46830,Crosshaven,82940-00013-1,0,4380_7778208_2200291,4380_578 -4380_78143,289,4380_46831,Crosshaven,83058-00014-1,0,4380_7778208_2200292,4380_575 -4380_78143,292,4380_46832,Crosshaven,83063-00016-1,0,4380_7778208_2200292,4380_575 -4380_78143,290,4380_46833,Crosshaven,83061-00015-1,0,4380_7778208_2200292,4380_575 -4380_78143,294,4380_46834,Crosshaven,83057-00018-1,0,4380_7778208_2200292,4380_575 -4380_78143,295,4380_46835,Crosshaven,83059-00019-1,0,4380_7778208_2200292,4380_575 -4380_78143,293,4380_46836,Crosshaven,83055-00017-1,0,4380_7778208_2200292,4380_575 -4380_78143,296,4380_46837,Crosshaven,82941-00021-1,0,4380_7778208_2200291,4380_578 -4380_78143,291,4380_46839,Crosshaven,82944-00013-1,0,4380_7778208_2200291,4380_576 -4380_78143,296,4380_46840,Crosshaven,82945-00021-1,0,4380_7778208_2200291,4380_576 -4380_78143,285,4380_46846,Crosshaven,83080-00009-1,0,4380_7778208_2200292,4380_576 -4380_78143,288,4380_46847,Crosshaven,83078-00011-1,0,4380_7778208_2200292,4380_576 -4380_78143,287,4380_46848,Crosshaven,83076-00012-1,0,4380_7778208_2200292,4380_576 -4380_78143,286,4380_46849,Crosshaven,83074-00010-1,0,4380_7778208_2200292,4380_576 -4380_77948,285,4380_4685,Dublin,1469-00009-1,1,4380_7778208_1030104,4380_42 -4380_78143,289,4380_46850,Crosshaven,83082-00014-1,0,4380_7778208_2200292,4380_576 -4380_78143,292,4380_46851,Crosshaven,83075-00016-1,0,4380_7778208_2200292,4380_576 -4380_78143,290,4380_46852,Crosshaven,83081-00015-1,0,4380_7778208_2200292,4380_576 -4380_78143,294,4380_46853,Crosshaven,83077-00018-1,0,4380_7778208_2200292,4380_576 -4380_78143,295,4380_46854,Crosshaven,83083-00019-1,0,4380_7778208_2200292,4380_576 -4380_78143,293,4380_46855,Crosshaven,83079-00017-1,0,4380_7778208_2200292,4380_576 -4380_77948,286,4380_4686,Dublin,1481-00010-1,1,4380_7778208_1030104,4380_42 -4380_78143,285,4380_46861,Ovens,82950-00009-1,1,4380_7778208_2200292,4380_582 -4380_78143,288,4380_46862,Ovens,82952-00011-1,1,4380_7778208_2200292,4380_582 -4380_78143,287,4380_46863,Ovens,82948-00012-1,1,4380_7778208_2200292,4380_582 -4380_78143,286,4380_46864,Ovens,82954-00010-1,1,4380_7778208_2200292,4380_582 -4380_78143,289,4380_46865,Ovens,82946-00014-1,1,4380_7778208_2200292,4380_582 -4380_78143,292,4380_46866,Ovens,82955-00016-1,1,4380_7778208_2200292,4380_582 -4380_78143,290,4380_46867,Ovens,82951-00015-1,1,4380_7778208_2200292,4380_582 -4380_78143,294,4380_46868,Ovens,82949-00018-1,1,4380_7778208_2200292,4380_582 -4380_78143,295,4380_46869,Ovens,82947-00019-1,1,4380_7778208_2200292,4380_582 -4380_77948,288,4380_4687,Dublin,1493-00011-1,1,4380_7778208_1030104,4380_42 -4380_78143,293,4380_46870,Ovens,82953-00017-1,1,4380_7778208_2200292,4380_582 -4380_78143,285,4380_46876,Ovens,82834-00009-1,1,4380_7778208_2200291,4380_579 -4380_78143,286,4380_46877,Ovens,82836-00010-1,1,4380_7778208_2200291,4380_579 -4380_78143,288,4380_46878,Ovens,82842-00011-1,1,4380_7778208_2200291,4380_579 -4380_78143,287,4380_46879,Ovens,82838-00012-1,1,4380_7778208_2200291,4380_579 -4380_77948,287,4380_4688,Dublin,1505-00012-1,1,4380_7778208_1030104,4380_42 -4380_78143,289,4380_46880,Ovens,82840-00014-1,1,4380_7778208_2200291,4380_579 -4380_78143,292,4380_46881,Ovens,82837-00016-1,1,4380_7778208_2200291,4380_579 -4380_78143,290,4380_46882,Ovens,82835-00015-1,1,4380_7778208_2200291,4380_579 -4380_78143,294,4380_46883,Ovens,82839-00018-1,1,4380_7778208_2200291,4380_579 -4380_78143,295,4380_46884,Ovens,82841-00019-1,1,4380_7778208_2200291,4380_579 -4380_78143,293,4380_46885,Ovens,82843-00017-1,1,4380_7778208_2200291,4380_579 -4380_77948,289,4380_4689,Dublin,1457-00014-1,1,4380_7778208_1030104,4380_42 -4380_78143,285,4380_46891,MTU,83200-00009-1,1,4380_7778208_2200294,4380_584 -4380_78143,288,4380_46892,MTU,83196-00011-1,1,4380_7778208_2200294,4380_584 -4380_78143,287,4380_46893,MTU,83198-00012-1,1,4380_7778208_2200294,4380_584 -4380_78143,286,4380_46894,MTU,83192-00010-1,1,4380_7778208_2200294,4380_584 -4380_78143,289,4380_46895,MTU,83194-00014-1,1,4380_7778208_2200294,4380_584 -4380_78143,292,4380_46896,MTU,83193-00016-1,1,4380_7778208_2200294,4380_584 -4380_78143,290,4380_46897,MTU,83201-00015-1,1,4380_7778208_2200294,4380_584 -4380_78143,294,4380_46898,MTU,83199-00018-1,1,4380_7778208_2200294,4380_584 -4380_78143,295,4380_46899,MTU,83195-00019-1,1,4380_7778208_2200294,4380_584 -4380_77946,286,4380_469,Drogheda,50351-00010-1,1,4380_7778208_1000913,4380_6 -4380_77948,290,4380_4690,Dublin,51992-00015-1,1,4380_7778208_1030104,4380_42 -4380_78143,293,4380_46900,MTU,83197-00017-1,1,4380_7778208_2200294,4380_584 -4380_78143,291,4380_46902,Ovens,82966-00013-1,1,4380_7778208_2200292,4380_582 -4380_78143,296,4380_46903,Ovens,82967-00021-1,1,4380_7778208_2200292,4380_582 -4380_77948,292,4380_4691,Dublin,51993-00016-1,1,4380_7778208_1030104,4380_42 -4380_78143,285,4380_46910,Ovens,83088-00009-1,1,4380_7778208_2200293,4380_580 -4380_78143,288,4380_46911,Ovens,83094-00011-1,1,4380_7778208_2200293,4380_580 -4380_78143,287,4380_46912,Ovens,83092-00012-1,1,4380_7778208_2200293,4380_580 -4380_78143,286,4380_46913,Ovens,83090-00010-1,1,4380_7778208_2200293,4380_580 -4380_78143,291,4380_46914,Ovens,83086-00013-1,1,4380_7778208_2200293,4380_585 -4380_78143,289,4380_46915,Ovens,83084-00014-1,1,4380_7778208_2200293,4380_580 -4380_78143,292,4380_46916,Ovens,83091-00016-1,1,4380_7778208_2200293,4380_580 -4380_78143,290,4380_46917,Ovens,83089-00015-1,1,4380_7778208_2200293,4380_580 -4380_78143,294,4380_46918,Ovens,83093-00018-1,1,4380_7778208_2200293,4380_580 -4380_78143,295,4380_46919,Ovens,83085-00019-1,1,4380_7778208_2200293,4380_580 -4380_77948,293,4380_4692,Dublin,51994-00017-1,1,4380_7778208_1030104,4380_42 -4380_78143,293,4380_46920,Ovens,83095-00017-1,1,4380_7778208_2200293,4380_580 -4380_78143,296,4380_46921,Ovens,83087-00021-1,1,4380_7778208_2200293,4380_585 -4380_78143,285,4380_46927,Ovens,82970-00009-1,1,4380_7778208_2200292,4380_580 -4380_78143,288,4380_46928,Ovens,82976-00011-1,1,4380_7778208_2200292,4380_580 -4380_78143,287,4380_46929,Ovens,82972-00012-1,1,4380_7778208_2200292,4380_580 -4380_77948,294,4380_4693,Dublin,51991-00018-1,1,4380_7778208_1030104,4380_42 -4380_78143,286,4380_46930,Ovens,82974-00010-1,1,4380_7778208_2200292,4380_580 -4380_78143,289,4380_46931,Ovens,82978-00014-1,1,4380_7778208_2200292,4380_580 -4380_78143,292,4380_46932,Ovens,82975-00016-1,1,4380_7778208_2200292,4380_580 -4380_78143,290,4380_46933,Ovens,82971-00015-1,1,4380_7778208_2200292,4380_580 -4380_78143,294,4380_46934,Ovens,82973-00018-1,1,4380_7778208_2200292,4380_580 -4380_78143,295,4380_46935,Ovens,82979-00019-1,1,4380_7778208_2200292,4380_580 -4380_78143,293,4380_46936,Ovens,82977-00017-1,1,4380_7778208_2200292,4380_580 -4380_78143,291,4380_46938,Ovens,82856-00013-1,1,4380_7778208_2200291,4380_585 -4380_78143,296,4380_46939,Ovens,82857-00021-1,1,4380_7778208_2200291,4380_585 -4380_77948,295,4380_4694,Dublin,51990-00019-1,1,4380_7778208_1030104,4380_42 -4380_78143,285,4380_46946,Ovens,82860-00009-1,1,4380_7778208_2200291,4380_580 -4380_78143,286,4380_46947,Ovens,82858-00010-1,1,4380_7778208_2200291,4380_580 -4380_78143,288,4380_46948,Ovens,82864-00011-1,1,4380_7778208_2200291,4380_580 -4380_78143,287,4380_46949,Ovens,82866-00012-1,1,4380_7778208_2200291,4380_580 -4380_78143,291,4380_46950,Ovens,82980-00013-1,1,4380_7778208_2200292,4380_585 -4380_78143,289,4380_46951,Ovens,82862-00014-1,1,4380_7778208_2200291,4380_580 -4380_78143,292,4380_46952,Ovens,82859-00016-1,1,4380_7778208_2200291,4380_580 -4380_78143,290,4380_46953,Ovens,82861-00015-1,1,4380_7778208_2200291,4380_580 -4380_78143,294,4380_46954,Ovens,82867-00018-1,1,4380_7778208_2200291,4380_580 -4380_78143,295,4380_46955,Ovens,82863-00019-1,1,4380_7778208_2200291,4380_580 -4380_78143,293,4380_46956,Ovens,82865-00017-1,1,4380_7778208_2200291,4380_580 -4380_78143,296,4380_46957,Ovens,82981-00021-1,1,4380_7778208_2200292,4380_585 -4380_77948,297,4380_4696,Dublin,1597-00008-1,1,4380_7778208_1030105,4380_42 -4380_78143,285,4380_46963,Ovens,83108-00009-1,1,4380_7778208_2200293,4380_580 -4380_78143,288,4380_46964,Ovens,83110-00011-1,1,4380_7778208_2200293,4380_580 -4380_78143,287,4380_46965,Ovens,83114-00012-1,1,4380_7778208_2200293,4380_580 -4380_78143,286,4380_46966,Ovens,83112-00010-1,1,4380_7778208_2200293,4380_580 -4380_78143,289,4380_46967,Ovens,83116-00014-1,1,4380_7778208_2200293,4380_580 -4380_78143,292,4380_46968,Ovens,83113-00016-1,1,4380_7778208_2200293,4380_580 -4380_78143,290,4380_46969,Ovens,83109-00015-1,1,4380_7778208_2200293,4380_580 -4380_77948,291,4380_4697,Dublin,1952-00013-1,1,4380_7778208_1030110,4380_43 -4380_78143,294,4380_46970,Ovens,83115-00018-1,1,4380_7778208_2200293,4380_580 -4380_78143,295,4380_46971,Ovens,83117-00019-1,1,4380_7778208_2200293,4380_580 -4380_78143,293,4380_46972,Ovens,83111-00017-1,1,4380_7778208_2200293,4380_580 -4380_78143,291,4380_46974,Ovens,83118-00013-1,1,4380_7778208_2200293,4380_585 -4380_78143,296,4380_46975,Ovens,83119-00021-1,1,4380_7778208_2200293,4380_585 -4380_77948,296,4380_4698,Dublin,52356-00021-1,1,4380_7778208_1030110,4380_43 -4380_78143,285,4380_46982,Ovens,82994-00009-1,1,4380_7778208_2200292,4380_580 -4380_78143,288,4380_46983,Ovens,83000-00011-1,1,4380_7778208_2200292,4380_580 -4380_78143,287,4380_46984,Ovens,82996-00012-1,1,4380_7778208_2200292,4380_580 -4380_78143,286,4380_46985,Ovens,82998-00010-1,1,4380_7778208_2200292,4380_580 -4380_78143,291,4380_46986,Ovens,82880-00013-1,1,4380_7778208_2200291,4380_585 -4380_78143,289,4380_46987,Ovens,83002-00014-1,1,4380_7778208_2200292,4380_580 -4380_78143,292,4380_46988,Ovens,82999-00016-1,1,4380_7778208_2200292,4380_580 -4380_78143,290,4380_46989,Ovens,82995-00015-1,1,4380_7778208_2200292,4380_580 -4380_78143,294,4380_46990,Ovens,82997-00018-1,1,4380_7778208_2200292,4380_580 -4380_78143,295,4380_46991,Ovens,83003-00019-1,1,4380_7778208_2200292,4380_580 -4380_78143,293,4380_46992,Ovens,83001-00017-1,1,4380_7778208_2200292,4380_580 -4380_78143,296,4380_46993,Ovens,82881-00021-1,1,4380_7778208_2200291,4380_585 -4380_77946,286,4380_47,Dundalk,50299-00010-1,0,4380_7778208_1000913,4380_1 -4380_77946,297,4380_470,Drogheda,50185-00008-1,1,4380_7778208_1000908,4380_8 -4380_78143,285,4380_47000,Ovens,82890-00009-1,1,4380_7778208_2200291,4380_580 -4380_78143,286,4380_47001,Ovens,82882-00010-1,1,4380_7778208_2200291,4380_580 -4380_78143,288,4380_47002,Ovens,82884-00011-1,1,4380_7778208_2200291,4380_580 -4380_78143,287,4380_47003,Ovens,82886-00012-1,1,4380_7778208_2200291,4380_580 -4380_78143,291,4380_47004,Ovens,83004-00013-1,1,4380_7778208_2200292,4380_585 -4380_78143,289,4380_47005,Ovens,82888-00014-1,1,4380_7778208_2200291,4380_580 -4380_78143,292,4380_47006,Ovens,82883-00016-1,1,4380_7778208_2200291,4380_580 -4380_78143,290,4380_47007,Ovens,82891-00015-1,1,4380_7778208_2200291,4380_580 -4380_78143,294,4380_47008,Ovens,82887-00018-1,1,4380_7778208_2200291,4380_580 -4380_78143,295,4380_47009,Ovens,82889-00019-1,1,4380_7778208_2200291,4380_580 -4380_78143,293,4380_47010,Ovens,82885-00017-1,1,4380_7778208_2200291,4380_580 -4380_78143,296,4380_47011,Ovens,83005-00021-1,1,4380_7778208_2200292,4380_585 -4380_78143,285,4380_47018,Ovens,83136-00009-1,1,4380_7778208_2200293,4380_580 -4380_78143,288,4380_47019,Ovens,83138-00011-1,1,4380_7778208_2200293,4380_580 -4380_78143,287,4380_47020,Ovens,83140-00012-1,1,4380_7778208_2200293,4380_580 -4380_78143,286,4380_47021,Ovens,83134-00010-1,1,4380_7778208_2200293,4380_580 -4380_78143,291,4380_47022,Ovens,83142-00013-1,1,4380_7778208_2200293,4380_585 -4380_78143,289,4380_47023,Ovens,83132-00014-1,1,4380_7778208_2200293,4380_580 -4380_78143,292,4380_47024,Ovens,83135-00016-1,1,4380_7778208_2200293,4380_580 -4380_78143,290,4380_47025,Ovens,83137-00015-1,1,4380_7778208_2200293,4380_580 -4380_78143,294,4380_47026,Ovens,83141-00018-1,1,4380_7778208_2200293,4380_580 -4380_78143,295,4380_47027,Ovens,83133-00019-1,1,4380_7778208_2200293,4380_580 -4380_78143,293,4380_47028,Ovens,83139-00017-1,1,4380_7778208_2200293,4380_580 -4380_78143,296,4380_47029,Ovens,83143-00021-1,1,4380_7778208_2200293,4380_585 -4380_78143,285,4380_47036,Ovens,83018-00009-1,1,4380_7778208_2200292,4380_580 -4380_78143,288,4380_47037,Ovens,83020-00011-1,1,4380_7778208_2200292,4380_580 -4380_78143,287,4380_47038,Ovens,83026-00012-1,1,4380_7778208_2200292,4380_580 -4380_78143,286,4380_47039,Ovens,83024-00010-1,1,4380_7778208_2200292,4380_580 -4380_78143,291,4380_47040,Ovens,82904-00013-1,1,4380_7778208_2200291,4380_585 -4380_78143,289,4380_47041,Ovens,83022-00014-1,1,4380_7778208_2200292,4380_580 -4380_78143,292,4380_47042,Ovens,83025-00016-1,1,4380_7778208_2200292,4380_580 -4380_78143,290,4380_47043,Ovens,83019-00015-1,1,4380_7778208_2200292,4380_580 -4380_78143,294,4380_47044,Ovens,83027-00018-1,1,4380_7778208_2200292,4380_580 -4380_78143,295,4380_47045,Ovens,83023-00019-1,1,4380_7778208_2200292,4380_580 -4380_78143,293,4380_47046,Ovens,83021-00017-1,1,4380_7778208_2200292,4380_580 -4380_78143,296,4380_47047,Ovens,82905-00021-1,1,4380_7778208_2200291,4380_585 -4380_77948,285,4380_4705,Dublin,1371-00009-1,1,4380_7778208_1030103,4380_42 -4380_78143,285,4380_47054,Ovens,82914-00009-1,1,4380_7778208_2200291,4380_580 -4380_78143,286,4380_47055,Ovens,82912-00010-1,1,4380_7778208_2200291,4380_580 -4380_78143,288,4380_47056,Ovens,82910-00011-1,1,4380_7778208_2200291,4380_580 -4380_78143,287,4380_47057,Ovens,82908-00012-1,1,4380_7778208_2200291,4380_580 -4380_78143,291,4380_47058,Ovens,83028-00013-1,1,4380_7778208_2200292,4380_585 -4380_78143,289,4380_47059,Ovens,82906-00014-1,1,4380_7778208_2200291,4380_580 -4380_77948,286,4380_4706,Dublin,1381-00010-1,1,4380_7778208_1030103,4380_42 -4380_78143,292,4380_47060,Ovens,82913-00016-1,1,4380_7778208_2200291,4380_580 -4380_78143,290,4380_47061,Ovens,82915-00015-1,1,4380_7778208_2200291,4380_580 -4380_78143,294,4380_47062,Ovens,82909-00018-1,1,4380_7778208_2200291,4380_580 -4380_78143,295,4380_47063,Ovens,82907-00019-1,1,4380_7778208_2200291,4380_580 -4380_78143,293,4380_47064,Ovens,82911-00017-1,1,4380_7778208_2200291,4380_580 -4380_78143,296,4380_47065,Ovens,83029-00021-1,1,4380_7778208_2200292,4380_585 -4380_77948,288,4380_4707,Dublin,1391-00011-1,1,4380_7778208_1030103,4380_42 -4380_78143,285,4380_47072,Ovens,83158-00009-1,1,4380_7778208_2200293,4380_580 -4380_78143,288,4380_47073,Ovens,83160-00011-1,1,4380_7778208_2200293,4380_580 -4380_78143,287,4380_47074,Ovens,83156-00012-1,1,4380_7778208_2200293,4380_580 -4380_78143,286,4380_47075,Ovens,83164-00010-1,1,4380_7778208_2200293,4380_580 -4380_78143,291,4380_47076,Ovens,83166-00013-1,1,4380_7778208_2200293,4380_585 -4380_78143,289,4380_47077,Ovens,83162-00014-1,1,4380_7778208_2200293,4380_580 -4380_78143,292,4380_47078,Ovens,83165-00016-1,1,4380_7778208_2200293,4380_580 -4380_78143,290,4380_47079,Ovens,83159-00015-1,1,4380_7778208_2200293,4380_580 -4380_77948,287,4380_4708,Dublin,1401-00012-1,1,4380_7778208_1030103,4380_42 -4380_78143,294,4380_47080,Ovens,83157-00018-1,1,4380_7778208_2200293,4380_580 -4380_78143,295,4380_47081,Ovens,83163-00019-1,1,4380_7778208_2200293,4380_580 -4380_78143,293,4380_47082,Ovens,83161-00017-1,1,4380_7778208_2200293,4380_580 -4380_78143,296,4380_47083,Ovens,83167-00021-1,1,4380_7778208_2200293,4380_585 -4380_78143,291,4380_47085,Ovens,82928-00013-1,1,4380_7778208_2200291,4380_585 -4380_78143,296,4380_47086,Ovens,82929-00021-1,1,4380_7778208_2200291,4380_585 -4380_77948,289,4380_4709,Dublin,1361-00014-1,1,4380_7778208_1030103,4380_42 -4380_78143,285,4380_47092,Ovens,83050-00009-1,1,4380_7778208_2200292,4380_580 -4380_78143,288,4380_47093,Ovens,83046-00011-1,1,4380_7778208_2200292,4380_580 -4380_78143,287,4380_47094,Ovens,83042-00012-1,1,4380_7778208_2200292,4380_580 -4380_78143,286,4380_47095,Ovens,83048-00010-1,1,4380_7778208_2200292,4380_580 -4380_78143,289,4380_47096,Ovens,83044-00014-1,1,4380_7778208_2200292,4380_580 -4380_78143,292,4380_47097,Ovens,83049-00016-1,1,4380_7778208_2200292,4380_580 -4380_78143,290,4380_47098,Ovens,83051-00015-1,1,4380_7778208_2200292,4380_580 -4380_78143,294,4380_47099,Ovens,83043-00018-1,1,4380_7778208_2200292,4380_580 -4380_77946,287,4380_471,Drogheda,50355-00012-1,1,4380_7778208_1000913,4380_6 -4380_77948,290,4380_4710,Dublin,51930-00015-1,1,4380_7778208_1030103,4380_42 -4380_78143,295,4380_47100,Ovens,83045-00019-1,1,4380_7778208_2200292,4380_580 -4380_78143,293,4380_47101,Ovens,83047-00017-1,1,4380_7778208_2200292,4380_580 -4380_78143,291,4380_47103,Grand Parade,83052-00013-1,1,4380_7778208_2200292,4380_587 -4380_78143,296,4380_47104,Grand Parade,83053-00021-1,1,4380_7778208_2200292,4380_587 -4380_77948,292,4380_4711,Dublin,51932-00016-1,1,4380_7778208_1030103,4380_42 -4380_78143,285,4380_47110,Grand Parade,82930-00009-1,1,4380_7778208_2200291,4380_581 -4380_78143,286,4380_47111,Grand Parade,82938-00010-1,1,4380_7778208_2200291,4380_581 -4380_78143,288,4380_47112,Grand Parade,82936-00011-1,1,4380_7778208_2200291,4380_581 -4380_78143,287,4380_47113,Grand Parade,82932-00012-1,1,4380_7778208_2200291,4380_581 -4380_78143,289,4380_47114,Grand Parade,82934-00014-1,1,4380_7778208_2200291,4380_581 -4380_78143,292,4380_47115,Grand Parade,82939-00016-1,1,4380_7778208_2200291,4380_581 -4380_78143,290,4380_47116,Grand Parade,82931-00015-1,1,4380_7778208_2200291,4380_581 -4380_78143,294,4380_47117,Grand Parade,82933-00018-1,1,4380_7778208_2200291,4380_581 -4380_78143,295,4380_47118,Grand Parade,82935-00019-1,1,4380_7778208_2200291,4380_581 -4380_78143,293,4380_47119,Grand Parade,82937-00017-1,1,4380_7778208_2200291,4380_581 -4380_77948,293,4380_4712,Dublin,51931-00017-1,1,4380_7778208_1030103,4380_42 -4380_78143,291,4380_47121,Carrigaline,83180-00013-1,1,4380_7778208_2200293,4380_586 -4380_78143,296,4380_47122,Carrigaline,83181-00021-1,1,4380_7778208_2200293,4380_586 -4380_78143,285,4380_47128,Carrigaline,83182-00009-1,1,4380_7778208_2200293,4380_583 -4380_78143,288,4380_47129,Carrigaline,83190-00011-1,1,4380_7778208_2200293,4380_583 -4380_77948,294,4380_4713,Dublin,51929-00018-1,1,4380_7778208_1030103,4380_42 -4380_78143,287,4380_47130,Carrigaline,83186-00012-1,1,4380_7778208_2200293,4380_583 -4380_78143,286,4380_47131,Carrigaline,83188-00010-1,1,4380_7778208_2200293,4380_583 -4380_78143,289,4380_47132,Carrigaline,83184-00014-1,1,4380_7778208_2200293,4380_583 -4380_78143,292,4380_47133,Carrigaline,83189-00016-1,1,4380_7778208_2200293,4380_583 -4380_78143,290,4380_47134,Carrigaline,83183-00015-1,1,4380_7778208_2200293,4380_583 -4380_78143,294,4380_47135,Carrigaline,83187-00018-1,1,4380_7778208_2200293,4380_583 -4380_78143,295,4380_47136,Carrigaline,83185-00019-1,1,4380_7778208_2200293,4380_583 -4380_78143,293,4380_47137,Carrigaline,83191-00017-1,1,4380_7778208_2200293,4380_583 -4380_78143,291,4380_47139,Carrigaline,82942-00013-1,1,4380_7778208_2200291,4380_586 -4380_77948,295,4380_4714,Dublin,51928-00019-1,1,4380_7778208_1030103,4380_42 -4380_78143,296,4380_47140,Carrigaline,82943-00021-1,1,4380_7778208_2200291,4380_586 -4380_78143,285,4380_47146,Carrigaline,83070-00009-1,1,4380_7778208_2200292,4380_583 -4380_78143,288,4380_47147,Carrigaline,83072-00011-1,1,4380_7778208_2200292,4380_583 -4380_78143,287,4380_47148,Carrigaline,83068-00012-1,1,4380_7778208_2200292,4380_583 -4380_78143,286,4380_47149,Carrigaline,83064-00010-1,1,4380_7778208_2200292,4380_583 -4380_77948,291,4380_4715,Dublin,1885-00013-1,1,4380_7778208_1030109,4380_42 -4380_78143,289,4380_47150,Carrigaline,83066-00014-1,1,4380_7778208_2200292,4380_583 -4380_78143,292,4380_47151,Carrigaline,83065-00016-1,1,4380_7778208_2200292,4380_583 -4380_78143,290,4380_47152,Carrigaline,83071-00015-1,1,4380_7778208_2200292,4380_583 -4380_78143,294,4380_47153,Carrigaline,83069-00018-1,1,4380_7778208_2200292,4380_583 -4380_78143,295,4380_47154,Carrigaline,83067-00019-1,1,4380_7778208_2200292,4380_583 -4380_78143,293,4380_47155,Carrigaline,83073-00017-1,1,4380_7778208_2200292,4380_583 -4380_77948,296,4380_4716,Dublin,52295-00021-1,1,4380_7778208_1030109,4380_42 -4380_77989,285,4380_47161,Haulbowline,83636-00009-1,0,4380_7778208_2230244,4380_591 -4380_77989,288,4380_47162,Haulbowline,83630-00011-1,0,4380_7778208_2230244,4380_591 -4380_77989,287,4380_47163,Haulbowline,83634-00012-1,0,4380_7778208_2230244,4380_591 -4380_77989,286,4380_47164,Haulbowline,83628-00010-1,0,4380_7778208_2230244,4380_591 -4380_77989,289,4380_47165,Haulbowline,83632-00014-1,0,4380_7778208_2230244,4380_591 -4380_77989,292,4380_47166,Haulbowline,83629-00016-1,0,4380_7778208_2230244,4380_591 -4380_77989,290,4380_47167,Haulbowline,83637-00015-1,0,4380_7778208_2230244,4380_591 -4380_77989,294,4380_47168,Haulbowline,83635-00018-1,0,4380_7778208_2230244,4380_591 -4380_77989,295,4380_47169,Haulbowline,83633-00019-1,0,4380_7778208_2230244,4380_591 -4380_77989,293,4380_47170,Haulbowline,83631-00017-1,0,4380_7778208_2230244,4380_591 -4380_77989,297,4380_47173,Haulbowline,83212-00008-1,0,4380_7778208_2230201,4380_588 -4380_77989,291,4380_47174,Haulbowline,83329-00013-1,0,4380_7778208_2230202,4380_590 -4380_77989,296,4380_47175,Haulbowline,83330-00021-1,0,4380_7778208_2230202,4380_590 -4380_77989,285,4380_47181,Haulbowline,83333-00009-1,0,4380_7778208_2230202,4380_591 -4380_77989,288,4380_47182,Haulbowline,83335-00011-1,0,4380_7778208_2230202,4380_591 -4380_77989,287,4380_47183,Haulbowline,83337-00012-1,0,4380_7778208_2230202,4380_591 -4380_77989,286,4380_47184,Haulbowline,83331-00010-1,0,4380_7778208_2230202,4380_591 -4380_77989,289,4380_47185,Haulbowline,83339-00014-1,0,4380_7778208_2230202,4380_591 -4380_77989,292,4380_47186,Haulbowline,83332-00016-1,0,4380_7778208_2230202,4380_591 -4380_77989,290,4380_47187,Haulbowline,83334-00015-1,0,4380_7778208_2230202,4380_591 -4380_77989,294,4380_47188,Haulbowline,83338-00018-1,0,4380_7778208_2230202,4380_591 -4380_77989,295,4380_47189,Haulbowline,83340-00019-1,0,4380_7778208_2230202,4380_591 -4380_77989,293,4380_47190,Haulbowline,83336-00017-1,0,4380_7778208_2230202,4380_591 -4380_77989,285,4380_47196,Haulbowline (NMCI),83800-00009-1,0,4380_7778208_2230255,4380_594 -4380_77989,288,4380_47197,Haulbowline (NMCI),83798-00011-1,0,4380_7778208_2230255,4380_594 -4380_77989,287,4380_47198,Haulbowline (NMCI),83802-00012-1,0,4380_7778208_2230255,4380_594 -4380_77989,286,4380_47199,Haulbowline (NMCI),83806-00010-1,0,4380_7778208_2230255,4380_594 -4380_77946,288,4380_472,Drogheda,50347-00011-1,1,4380_7778208_1000913,4380_6 -4380_77989,289,4380_47200,Haulbowline (NMCI),83804-00014-1,0,4380_7778208_2230255,4380_594 -4380_77989,292,4380_47201,Haulbowline (NMCI),83807-00016-1,0,4380_7778208_2230255,4380_594 -4380_77989,290,4380_47202,Haulbowline (NMCI),83801-00015-1,0,4380_7778208_2230255,4380_594 -4380_77989,294,4380_47203,Haulbowline (NMCI),83803-00018-1,0,4380_7778208_2230255,4380_594 -4380_77989,295,4380_47204,Haulbowline (NMCI),83805-00019-1,0,4380_7778208_2230255,4380_594 -4380_77989,293,4380_47205,Haulbowline (NMCI),83799-00017-1,0,4380_7778208_2230255,4380_594 -4380_77989,285,4380_47212,Haulbowline,83215-00009-1,0,4380_7778208_2230201,4380_589 -4380_77989,288,4380_47213,Haulbowline,83219-00011-1,0,4380_7778208_2230201,4380_589 -4380_77989,287,4380_47214,Haulbowline,83221-00012-1,0,4380_7778208_2230201,4380_589 -4380_77989,286,4380_47215,Haulbowline,83217-00010-1,0,4380_7778208_2230201,4380_589 -4380_77989,291,4380_47216,Haulbowline,83223-00013-1,0,4380_7778208_2230201,4380_593 -4380_77989,289,4380_47217,Haulbowline,83225-00014-1,0,4380_7778208_2230201,4380_589 -4380_77989,292,4380_47218,Haulbowline,83218-00016-1,0,4380_7778208_2230201,4380_589 -4380_77989,290,4380_47219,Haulbowline,83216-00015-1,0,4380_7778208_2230201,4380_589 -4380_77989,294,4380_47220,Haulbowline,83222-00018-1,0,4380_7778208_2230201,4380_589 -4380_77989,295,4380_47221,Haulbowline,83226-00019-1,0,4380_7778208_2230201,4380_589 -4380_77989,293,4380_47222,Haulbowline,83220-00017-1,0,4380_7778208_2230201,4380_589 -4380_77989,296,4380_47223,Haulbowline,83224-00021-1,0,4380_7778208_2230201,4380_593 -4380_77989,297,4380_47231,Haulbowline,83228-00008-1,0,4380_7778208_2230201,4380_588 -4380_77989,285,4380_47232,Haulbowline,83503-00009-1,0,4380_7778208_2230203,4380_590 -4380_77989,288,4380_47233,Haulbowline,83509-00011-1,0,4380_7778208_2230203,4380_590 -4380_77989,287,4380_47234,Haulbowline,83507-00012-1,0,4380_7778208_2230203,4380_590 -4380_77989,286,4380_47235,Haulbowline,83511-00010-1,0,4380_7778208_2230203,4380_590 -4380_77989,291,4380_47236,Haulbowline,83353-00013-1,0,4380_7778208_2230202,4380_588 -4380_77989,289,4380_47237,Haulbowline,83505-00014-1,0,4380_7778208_2230203,4380_590 -4380_77989,292,4380_47238,Haulbowline,83512-00016-1,0,4380_7778208_2230203,4380_590 -4380_77989,290,4380_47239,Haulbowline,83504-00015-1,0,4380_7778208_2230203,4380_590 -4380_77948,297,4380_4724,Dublin,1337-00008-1,1,4380_7778208_1030102,4380_42 -4380_77989,294,4380_47240,Haulbowline,83508-00018-1,0,4380_7778208_2230203,4380_590 -4380_77989,295,4380_47241,Haulbowline,83506-00019-1,0,4380_7778208_2230203,4380_590 -4380_77989,293,4380_47242,Haulbowline,83510-00017-1,0,4380_7778208_2230203,4380_590 -4380_77989,296,4380_47243,Haulbowline,83354-00021-1,0,4380_7778208_2230202,4380_588 -4380_77948,285,4380_4725,Dublin,1703-00009-1,1,4380_7778208_1030107,4380_42 -4380_77989,285,4380_47250,Haulbowline,83241-00009-1,0,4380_7778208_2230201,4380_588 -4380_77989,288,4380_47251,Haulbowline,83247-00011-1,0,4380_7778208_2230201,4380_588 -4380_77989,287,4380_47252,Haulbowline,83245-00012-1,0,4380_7778208_2230201,4380_588 -4380_77989,286,4380_47253,Haulbowline,83249-00010-1,0,4380_7778208_2230201,4380_588 -4380_77989,291,4380_47254,Haulbowline,83243-00013-1,0,4380_7778208_2230201,4380_590 -4380_77989,289,4380_47255,Haulbowline,83251-00014-1,0,4380_7778208_2230201,4380_588 -4380_77989,292,4380_47256,Haulbowline,83250-00016-1,0,4380_7778208_2230201,4380_588 -4380_77989,290,4380_47257,Haulbowline,83242-00015-1,0,4380_7778208_2230201,4380_588 -4380_77989,294,4380_47258,Haulbowline,83246-00018-1,0,4380_7778208_2230201,4380_588 -4380_77989,295,4380_47259,Haulbowline,83252-00019-1,0,4380_7778208_2230201,4380_588 -4380_77948,286,4380_4726,Dublin,1715-00010-1,1,4380_7778208_1030107,4380_42 -4380_77989,293,4380_47260,Haulbowline,83248-00017-1,0,4380_7778208_2230201,4380_588 -4380_77989,296,4380_47261,Haulbowline,83244-00021-1,0,4380_7778208_2230201,4380_590 -4380_77989,297,4380_47269,Haulbowline,83254-00008-1,0,4380_7778208_2230201,4380_588 -4380_77948,288,4380_4727,Dublin,1727-00011-1,1,4380_7778208_1030107,4380_42 -4380_77989,285,4380_47270,Haulbowline,83365-00009-1,0,4380_7778208_2230202,4380_590 -4380_77989,288,4380_47271,Haulbowline,83361-00011-1,0,4380_7778208_2230202,4380_590 -4380_77989,287,4380_47272,Haulbowline,83359-00012-1,0,4380_7778208_2230202,4380_590 -4380_77989,286,4380_47273,Haulbowline,83367-00010-1,0,4380_7778208_2230202,4380_590 -4380_77989,291,4380_47274,Haulbowline,83357-00013-1,0,4380_7778208_2230202,4380_595 -4380_77989,289,4380_47275,Haulbowline,83363-00014-1,0,4380_7778208_2230202,4380_590 -4380_77989,292,4380_47276,Haulbowline,83368-00016-1,0,4380_7778208_2230202,4380_590 -4380_77989,290,4380_47277,Haulbowline,83366-00015-1,0,4380_7778208_2230202,4380_590 -4380_77989,294,4380_47278,Haulbowline,83360-00018-1,0,4380_7778208_2230202,4380_590 -4380_77989,295,4380_47279,Haulbowline,83364-00019-1,0,4380_7778208_2230202,4380_590 -4380_77948,287,4380_4728,Dublin,1739-00012-1,1,4380_7778208_1030107,4380_42 -4380_77989,293,4380_47280,Haulbowline,83362-00017-1,0,4380_7778208_2230202,4380_590 -4380_77989,296,4380_47281,Haulbowline,83358-00021-1,0,4380_7778208_2230202,4380_595 -4380_77989,297,4380_47289,Haulbowline,83610-00008-1,0,4380_7778208_2230204,4380_588 -4380_77948,289,4380_4729,Dublin,1691-00014-1,1,4380_7778208_1030107,4380_42 -4380_77989,285,4380_47290,Haulbowline,83529-00009-1,0,4380_7778208_2230203,4380_590 -4380_77989,288,4380_47291,Haulbowline,83525-00011-1,0,4380_7778208_2230203,4380_590 -4380_77989,287,4380_47292,Haulbowline,83523-00012-1,0,4380_7778208_2230203,4380_590 -4380_77989,286,4380_47293,Haulbowline,83531-00010-1,0,4380_7778208_2230203,4380_590 -4380_77989,291,4380_47294,Haulbowline,83267-00013-1,0,4380_7778208_2230201,4380_595 -4380_77989,289,4380_47295,Haulbowline,83527-00014-1,0,4380_7778208_2230203,4380_590 -4380_77989,292,4380_47296,Haulbowline,83532-00016-1,0,4380_7778208_2230203,4380_590 -4380_77989,290,4380_47297,Haulbowline,83530-00015-1,0,4380_7778208_2230203,4380_590 -4380_77989,294,4380_47298,Haulbowline,83524-00018-1,0,4380_7778208_2230203,4380_590 -4380_77989,295,4380_47299,Haulbowline,83528-00019-1,0,4380_7778208_2230203,4380_590 -4380_77946,289,4380_473,Drogheda,50349-00014-1,1,4380_7778208_1000913,4380_6 -4380_77948,290,4380_4730,Dublin,52179-00015-1,1,4380_7778208_1030107,4380_42 -4380_77989,293,4380_47300,Haulbowline,83526-00017-1,0,4380_7778208_2230203,4380_590 -4380_77989,296,4380_47301,Haulbowline,83268-00021-1,0,4380_7778208_2230201,4380_595 -4380_77989,297,4380_47309,Haulbowline,83270-00008-1,0,4380_7778208_2230201,4380_588 -4380_77948,292,4380_4731,Dublin,52178-00016-1,1,4380_7778208_1030107,4380_42 -4380_77989,285,4380_47310,Haulbowline,83387-00009-1,0,4380_7778208_2230202,4380_589 -4380_77989,288,4380_47311,Haulbowline,83383-00011-1,0,4380_7778208_2230202,4380_589 -4380_77989,287,4380_47312,Haulbowline,83385-00012-1,0,4380_7778208_2230202,4380_589 -4380_77989,286,4380_47313,Haulbowline,83391-00010-1,0,4380_7778208_2230202,4380_589 -4380_77989,291,4380_47314,Haulbowline,83381-00013-1,0,4380_7778208_2230202,4380_593 -4380_77989,289,4380_47315,Haulbowline,83389-00014-1,0,4380_7778208_2230202,4380_589 -4380_77989,292,4380_47316,Haulbowline,83392-00016-1,0,4380_7778208_2230202,4380_589 -4380_77989,290,4380_47317,Haulbowline,83388-00015-1,0,4380_7778208_2230202,4380_589 -4380_77989,294,4380_47318,Haulbowline,83386-00018-1,0,4380_7778208_2230202,4380_589 -4380_77989,295,4380_47319,Haulbowline,83390-00019-1,0,4380_7778208_2230202,4380_589 -4380_77948,293,4380_4732,Dublin,52175-00017-1,1,4380_7778208_1030107,4380_42 -4380_77989,293,4380_47320,Haulbowline,83384-00017-1,0,4380_7778208_2230202,4380_589 -4380_77989,296,4380_47321,Haulbowline,83382-00021-1,0,4380_7778208_2230202,4380_593 -4380_77989,297,4380_47329,Haulbowline,83612-00008-1,0,4380_7778208_2230204,4380_588 -4380_77948,294,4380_4733,Dublin,52177-00018-1,1,4380_7778208_1030107,4380_42 -4380_77989,285,4380_47330,Haulbowline,83277-00009-1,0,4380_7778208_2230201,4380_590 -4380_77989,288,4380_47331,Haulbowline,83273-00011-1,0,4380_7778208_2230201,4380_590 -4380_77989,287,4380_47332,Haulbowline,83281-00012-1,0,4380_7778208_2230201,4380_590 -4380_77989,286,4380_47333,Haulbowline,83279-00010-1,0,4380_7778208_2230201,4380_590 -4380_77989,291,4380_47334,Haulbowline,83283-00013-1,0,4380_7778208_2230201,4380_595 -4380_77989,289,4380_47335,Haulbowline,83275-00014-1,0,4380_7778208_2230201,4380_590 -4380_77989,292,4380_47336,Haulbowline,83280-00016-1,0,4380_7778208_2230201,4380_590 -4380_77989,290,4380_47337,Haulbowline,83278-00015-1,0,4380_7778208_2230201,4380_590 -4380_77989,294,4380_47338,Haulbowline,83282-00018-1,0,4380_7778208_2230201,4380_590 -4380_77989,295,4380_47339,Haulbowline,83276-00019-1,0,4380_7778208_2230201,4380_590 -4380_77948,295,4380_4734,Dublin,52176-00019-1,1,4380_7778208_1030107,4380_42 -4380_77989,293,4380_47340,Haulbowline,83274-00017-1,0,4380_7778208_2230201,4380_590 -4380_77989,296,4380_47341,Haulbowline,83284-00021-1,0,4380_7778208_2230201,4380_595 -4380_77989,285,4380_47347,Haulbowline (NMCI),83543-00009-1,0,4380_7778208_2230203,4380_594 -4380_77989,288,4380_47348,Haulbowline (NMCI),83551-00011-1,0,4380_7778208_2230203,4380_594 -4380_77989,287,4380_47349,Haulbowline (NMCI),83545-00012-1,0,4380_7778208_2230203,4380_594 -4380_77948,291,4380_4735,Dublin,1671-00013-1,1,4380_7778208_1030106,4380_42 -4380_77989,286,4380_47350,Haulbowline (NMCI),83549-00010-1,0,4380_7778208_2230203,4380_594 -4380_77989,289,4380_47351,Haulbowline (NMCI),83547-00014-1,0,4380_7778208_2230203,4380_594 -4380_77989,292,4380_47352,Haulbowline (NMCI),83550-00016-1,0,4380_7778208_2230203,4380_594 -4380_77989,290,4380_47353,Haulbowline (NMCI),83544-00015-1,0,4380_7778208_2230203,4380_594 -4380_77989,294,4380_47354,Haulbowline (NMCI),83546-00018-1,0,4380_7778208_2230203,4380_594 -4380_77989,295,4380_47355,Haulbowline (NMCI),83548-00019-1,0,4380_7778208_2230203,4380_594 -4380_77989,293,4380_47356,Haulbowline (NMCI),83552-00017-1,0,4380_7778208_2230203,4380_594 -4380_77948,296,4380_4736,Dublin,52105-00021-1,1,4380_7778208_1030106,4380_42 -4380_77989,297,4380_47364,Haulbowline,83296-00008-1,0,4380_7778208_2230201,4380_588 -4380_77989,285,4380_47365,Haulbowline,83834-00009-1,0,4380_7778208_2230255,4380_589 -4380_77989,288,4380_47366,Haulbowline,83832-00011-1,0,4380_7778208_2230255,4380_589 -4380_77989,287,4380_47367,Haulbowline,83828-00012-1,0,4380_7778208_2230255,4380_589 -4380_77989,286,4380_47368,Haulbowline,83830-00010-1,0,4380_7778208_2230255,4380_589 -4380_77989,291,4380_47369,Haulbowline,83395-00013-1,0,4380_7778208_2230202,4380_593 -4380_77989,289,4380_47370,Haulbowline,83836-00014-1,0,4380_7778208_2230255,4380_589 -4380_77989,292,4380_47371,Haulbowline,83831-00016-1,0,4380_7778208_2230255,4380_589 -4380_77989,290,4380_47372,Haulbowline,83835-00015-1,0,4380_7778208_2230255,4380_589 -4380_77989,294,4380_47373,Haulbowline,83829-00018-1,0,4380_7778208_2230255,4380_589 -4380_77989,295,4380_47374,Haulbowline,83837-00019-1,0,4380_7778208_2230255,4380_589 -4380_77989,293,4380_47375,Haulbowline,83833-00017-1,0,4380_7778208_2230255,4380_589 -4380_77989,296,4380_47376,Haulbowline,83396-00021-1,0,4380_7778208_2230202,4380_593 -4380_77989,285,4380_47382,Haulbowline,83401-00009-1,0,4380_7778208_2230202,4380_592 -4380_77989,288,4380_47383,Haulbowline,83399-00011-1,0,4380_7778208_2230202,4380_592 -4380_77989,287,4380_47384,Haulbowline,83397-00012-1,0,4380_7778208_2230202,4380_592 -4380_77989,286,4380_47385,Haulbowline,83403-00010-1,0,4380_7778208_2230202,4380_592 -4380_77989,289,4380_47386,Haulbowline,83405-00014-1,0,4380_7778208_2230202,4380_592 -4380_77989,292,4380_47387,Haulbowline,83404-00016-1,0,4380_7778208_2230202,4380_592 -4380_77989,290,4380_47388,Haulbowline,83402-00015-1,0,4380_7778208_2230202,4380_592 -4380_77989,294,4380_47389,Haulbowline,83398-00018-1,0,4380_7778208_2230202,4380_592 -4380_77989,295,4380_47390,Haulbowline,83406-00019-1,0,4380_7778208_2230202,4380_592 -4380_77989,293,4380_47391,Haulbowline,83400-00017-1,0,4380_7778208_2230202,4380_592 -4380_77989,297,4380_47399,Haulbowline,83614-00008-1,0,4380_7778208_2230204,4380_588 -4380_77946,290,4380_474,Drogheda,50354-00015-1,1,4380_7778208_1000913,4380_6 -4380_77989,285,4380_47400,Haulbowline,83309-00009-1,0,4380_7778208_2230201,4380_590 -4380_77989,288,4380_47401,Haulbowline,83305-00011-1,0,4380_7778208_2230201,4380_590 -4380_77989,287,4380_47402,Haulbowline,83303-00012-1,0,4380_7778208_2230201,4380_590 -4380_77989,286,4380_47403,Haulbowline,83307-00010-1,0,4380_7778208_2230201,4380_590 -4380_77989,291,4380_47404,Haulbowline,83301-00013-1,0,4380_7778208_2230201,4380_595 -4380_77989,289,4380_47405,Haulbowline,83299-00014-1,0,4380_7778208_2230201,4380_590 -4380_77989,292,4380_47406,Haulbowline,83308-00016-1,0,4380_7778208_2230201,4380_590 -4380_77989,290,4380_47407,Haulbowline,83310-00015-1,0,4380_7778208_2230201,4380_590 -4380_77989,294,4380_47408,Haulbowline,83304-00018-1,0,4380_7778208_2230201,4380_590 -4380_77989,295,4380_47409,Haulbowline,83300-00019-1,0,4380_7778208_2230201,4380_590 -4380_77989,293,4380_47410,Haulbowline,83306-00017-1,0,4380_7778208_2230201,4380_590 -4380_77989,296,4380_47411,Haulbowline,83302-00021-1,0,4380_7778208_2230201,4380_595 -4380_77989,285,4380_47417,Haulbowline,83758-00009-1,0,4380_7778208_2230244,4380_588 -4380_77989,288,4380_47418,Haulbowline,83762-00011-1,0,4380_7778208_2230244,4380_588 -4380_77989,287,4380_47419,Haulbowline,83764-00012-1,0,4380_7778208_2230244,4380_588 -4380_77989,286,4380_47420,Haulbowline,83760-00010-1,0,4380_7778208_2230244,4380_588 -4380_77989,289,4380_47421,Haulbowline,83766-00014-1,0,4380_7778208_2230244,4380_588 -4380_77989,292,4380_47422,Haulbowline,83761-00016-1,0,4380_7778208_2230244,4380_588 -4380_77989,290,4380_47423,Haulbowline,83759-00015-1,0,4380_7778208_2230244,4380_588 -4380_77989,294,4380_47424,Haulbowline,83765-00018-1,0,4380_7778208_2230244,4380_588 -4380_77989,295,4380_47425,Haulbowline,83767-00019-1,0,4380_7778208_2230244,4380_588 -4380_77989,293,4380_47426,Haulbowline,83763-00017-1,0,4380_7778208_2230244,4380_588 -4380_77948,285,4380_4743,Dublin,1847-00009-1,1,4380_7778208_1030109,4380_42 -4380_77989,297,4380_47434,Haulbowline,83312-00008-1,0,4380_7778208_2230201,4380_588 -4380_77989,285,4380_47435,Haulbowline,83569-00009-1,0,4380_7778208_2230203,4380_590 -4380_77989,288,4380_47436,Haulbowline,83563-00011-1,0,4380_7778208_2230203,4380_590 -4380_77989,287,4380_47437,Haulbowline,83567-00012-1,0,4380_7778208_2230203,4380_590 -4380_77989,286,4380_47438,Haulbowline,83571-00010-1,0,4380_7778208_2230203,4380_590 -4380_77989,291,4380_47439,Haulbowline,83419-00013-1,0,4380_7778208_2230202,4380_588 -4380_77948,286,4380_4744,Dublin,1857-00010-1,1,4380_7778208_1030109,4380_42 -4380_77989,289,4380_47440,Haulbowline,83565-00014-1,0,4380_7778208_2230203,4380_590 -4380_77989,292,4380_47441,Haulbowline,83572-00016-1,0,4380_7778208_2230203,4380_590 -4380_77989,290,4380_47442,Haulbowline,83570-00015-1,0,4380_7778208_2230203,4380_590 -4380_77989,294,4380_47443,Haulbowline,83568-00018-1,0,4380_7778208_2230203,4380_590 -4380_77989,295,4380_47444,Haulbowline,83566-00019-1,0,4380_7778208_2230203,4380_590 -4380_77989,293,4380_47445,Haulbowline,83564-00017-1,0,4380_7778208_2230203,4380_590 -4380_77989,296,4380_47446,Haulbowline,83420-00021-1,0,4380_7778208_2230202,4380_588 -4380_77948,288,4380_4745,Dublin,1867-00011-1,1,4380_7778208_1030109,4380_42 -4380_77989,285,4380_47452,Haulbowline,83852-00009-1,0,4380_7778208_2230255,4380_591 -4380_77989,288,4380_47453,Haulbowline,83850-00011-1,0,4380_7778208_2230255,4380_591 -4380_77989,287,4380_47454,Haulbowline,83856-00012-1,0,4380_7778208_2230255,4380_591 -4380_77989,286,4380_47455,Haulbowline,83848-00010-1,0,4380_7778208_2230255,4380_591 -4380_77989,289,4380_47456,Haulbowline,83854-00014-1,0,4380_7778208_2230255,4380_591 -4380_77989,292,4380_47457,Haulbowline,83849-00016-1,0,4380_7778208_2230255,4380_591 -4380_77989,290,4380_47458,Haulbowline,83853-00015-1,0,4380_7778208_2230255,4380_591 -4380_77989,294,4380_47459,Haulbowline,83857-00018-1,0,4380_7778208_2230255,4380_591 -4380_77948,287,4380_4746,Dublin,1877-00012-1,1,4380_7778208_1030109,4380_42 -4380_77989,295,4380_47460,Haulbowline,83855-00019-1,0,4380_7778208_2230255,4380_591 -4380_77989,293,4380_47461,Haulbowline,83851-00017-1,0,4380_7778208_2230255,4380_591 -4380_77989,297,4380_47469,Haulbowline,83616-00008-1,0,4380_7778208_2230204,4380_589 -4380_77948,289,4380_4747,Dublin,1837-00014-1,1,4380_7778208_1030109,4380_42 -4380_77989,285,4380_47470,Haulbowline,83429-00009-1,0,4380_7778208_2230202,4380_593 -4380_77989,288,4380_47471,Haulbowline,83423-00011-1,0,4380_7778208_2230202,4380_593 -4380_77989,287,4380_47472,Haulbowline,83427-00012-1,0,4380_7778208_2230202,4380_593 -4380_77989,286,4380_47473,Haulbowline,83425-00010-1,0,4380_7778208_2230202,4380_593 -4380_77989,291,4380_47474,Haulbowline,83315-00013-1,0,4380_7778208_2230201,4380_596 -4380_77989,289,4380_47475,Haulbowline,83421-00014-1,0,4380_7778208_2230202,4380_593 -4380_77989,292,4380_47476,Haulbowline,83426-00016-1,0,4380_7778208_2230202,4380_593 -4380_77989,290,4380_47477,Haulbowline,83430-00015-1,0,4380_7778208_2230202,4380_593 -4380_77989,294,4380_47478,Haulbowline,83428-00018-1,0,4380_7778208_2230202,4380_593 -4380_77989,295,4380_47479,Haulbowline,83422-00019-1,0,4380_7778208_2230202,4380_593 -4380_77948,290,4380_4748,Dublin,52300-00015-1,1,4380_7778208_1030109,4380_42 -4380_77989,293,4380_47480,Haulbowline,83424-00017-1,0,4380_7778208_2230202,4380_593 -4380_77989,296,4380_47481,Haulbowline,83316-00021-1,0,4380_7778208_2230201,4380_596 -4380_77989,297,4380_47489,Haulbowline,83592-00008-1,0,4380_7778208_2230203,4380_588 -4380_77948,292,4380_4749,Dublin,52296-00016-1,1,4380_7778208_1030109,4380_42 -4380_77989,285,4380_47490,Haulbowline,83590-00009-1,0,4380_7778208_2230203,4380_590 -4380_77989,288,4380_47491,Haulbowline,83588-00011-1,0,4380_7778208_2230203,4380_590 -4380_77989,287,4380_47492,Haulbowline,83586-00012-1,0,4380_7778208_2230203,4380_590 -4380_77989,286,4380_47493,Haulbowline,83593-00010-1,0,4380_7778208_2230203,4380_590 -4380_77989,291,4380_47494,Haulbowline,83433-00013-1,0,4380_7778208_2230202,4380_595 -4380_77989,289,4380_47495,Haulbowline,83584-00014-1,0,4380_7778208_2230203,4380_590 -4380_77989,292,4380_47496,Haulbowline,83594-00016-1,0,4380_7778208_2230203,4380_590 -4380_77989,290,4380_47497,Haulbowline,83591-00015-1,0,4380_7778208_2230203,4380_590 -4380_77989,294,4380_47498,Haulbowline,83587-00018-1,0,4380_7778208_2230203,4380_590 -4380_77989,295,4380_47499,Haulbowline,83585-00019-1,0,4380_7778208_2230203,4380_590 -4380_77946,291,4380_475,Drogheda,50247-00013-1,1,4380_7778208_1000910,4380_9 -4380_77948,293,4380_4750,Dublin,52297-00017-1,1,4380_7778208_1030109,4380_42 -4380_77989,293,4380_47500,Haulbowline,83589-00017-1,0,4380_7778208_2230203,4380_590 -4380_77989,296,4380_47501,Haulbowline,83434-00021-1,0,4380_7778208_2230202,4380_595 -4380_77989,297,4380_47509,Haulbowline,83606-00008-1,0,4380_7778208_2230203,4380_588 -4380_77948,294,4380_4751,Dublin,52298-00018-1,1,4380_7778208_1030109,4380_42 -4380_77989,285,4380_47510,Haulbowline,83455-00009-1,0,4380_7778208_2230202,4380_590 -4380_77989,288,4380_47511,Haulbowline,83453-00011-1,0,4380_7778208_2230202,4380_590 -4380_77989,287,4380_47512,Haulbowline,83449-00012-1,0,4380_7778208_2230202,4380_590 -4380_77989,286,4380_47513,Haulbowline,83451-00010-1,0,4380_7778208_2230202,4380_590 -4380_77989,291,4380_47514,Haulbowline,83447-00013-1,0,4380_7778208_2230202,4380_588 -4380_77989,289,4380_47515,Haulbowline,83457-00014-1,0,4380_7778208_2230202,4380_590 -4380_77989,292,4380_47516,Haulbowline,83452-00016-1,0,4380_7778208_2230202,4380_590 -4380_77989,290,4380_47517,Haulbowline,83456-00015-1,0,4380_7778208_2230202,4380_590 -4380_77989,294,4380_47518,Haulbowline,83450-00018-1,0,4380_7778208_2230202,4380_590 -4380_77989,295,4380_47519,Haulbowline,83458-00019-1,0,4380_7778208_2230202,4380_590 -4380_77948,295,4380_4752,Dublin,52299-00019-1,1,4380_7778208_1030109,4380_42 -4380_77989,293,4380_47520,Haulbowline,83454-00017-1,0,4380_7778208_2230202,4380_590 -4380_77989,296,4380_47521,Haulbowline,83448-00021-1,0,4380_7778208_2230202,4380_588 -4380_77989,297,4380_47529,Haulbowline,83608-00008-1,0,4380_7778208_2230203,4380_588 -4380_77989,285,4380_47530,Haulbowline,83481-00009-1,0,4380_7778208_2230202,4380_590 -4380_77989,288,4380_47531,Haulbowline,83477-00011-1,0,4380_7778208_2230202,4380_590 -4380_77989,287,4380_47532,Haulbowline,83471-00012-1,0,4380_7778208_2230202,4380_590 -4380_77989,286,4380_47533,Haulbowline,83473-00010-1,0,4380_7778208_2230202,4380_590 -4380_77989,291,4380_47534,Haulbowline,83475-00013-1,0,4380_7778208_2230202,4380_588 -4380_77989,289,4380_47535,Haulbowline,83479-00014-1,0,4380_7778208_2230202,4380_590 -4380_77989,292,4380_47536,Haulbowline,83474-00016-1,0,4380_7778208_2230202,4380_590 -4380_77989,290,4380_47537,Haulbowline,83482-00015-1,0,4380_7778208_2230202,4380_590 -4380_77989,294,4380_47538,Haulbowline,83472-00018-1,0,4380_7778208_2230202,4380_590 -4380_77989,295,4380_47539,Haulbowline,83480-00019-1,0,4380_7778208_2230202,4380_590 -4380_77948,297,4380_4754,Dublin,1433-00008-1,1,4380_7778208_1030103,4380_42 -4380_77989,293,4380_47540,Haulbowline,83478-00017-1,0,4380_7778208_2230202,4380_590 -4380_77989,296,4380_47541,Haulbowline,83476-00021-1,0,4380_7778208_2230202,4380_588 -4380_77989,285,4380_47547,Southside Orbital,83327-00009-1,1,4380_7778208_2230202,4380_597 -4380_77989,288,4380_47548,Southside Orbital,83323-00011-1,1,4380_7778208_2230202,4380_597 -4380_77989,287,4380_47549,Southside Orbital,83321-00012-1,1,4380_7778208_2230202,4380_597 -4380_77948,291,4380_4755,Dublin,1229-00013-1,1,4380_7778208_1030101,4380_43 -4380_77989,286,4380_47550,Southside Orbital,83325-00010-1,1,4380_7778208_2230202,4380_597 -4380_77989,289,4380_47551,Southside Orbital,83319-00014-1,1,4380_7778208_2230202,4380_597 -4380_77989,292,4380_47552,Southside Orbital,83326-00016-1,1,4380_7778208_2230202,4380_597 -4380_77989,290,4380_47553,Southside Orbital,83328-00015-1,1,4380_7778208_2230202,4380_597 -4380_77989,294,4380_47554,Southside Orbital,83322-00018-1,1,4380_7778208_2230202,4380_597 -4380_77989,295,4380_47555,Southside Orbital,83320-00019-1,1,4380_7778208_2230202,4380_597 -4380_77989,293,4380_47556,Southside Orbital,83324-00017-1,1,4380_7778208_2230202,4380_597 -4380_77948,296,4380_4756,Dublin,51819-00021-1,1,4380_7778208_1030101,4380_43 -4380_77989,285,4380_47562,Southside Orbital,83794-00009-1,1,4380_7778208_2230255,4380_600 -4380_77989,288,4380_47563,Southside Orbital,83796-00011-1,1,4380_7778208_2230255,4380_600 -4380_77989,287,4380_47564,Southside Orbital,83788-00012-1,1,4380_7778208_2230255,4380_600 -4380_77989,286,4380_47565,Southside Orbital,83792-00010-1,1,4380_7778208_2230255,4380_600 -4380_77989,289,4380_47566,Southside Orbital,83790-00014-1,1,4380_7778208_2230255,4380_600 -4380_77989,292,4380_47567,Southside Orbital,83793-00016-1,1,4380_7778208_2230255,4380_600 -4380_77989,290,4380_47568,Southside Orbital,83795-00015-1,1,4380_7778208_2230255,4380_600 -4380_77989,294,4380_47569,Southside Orbital,83789-00018-1,1,4380_7778208_2230255,4380_600 -4380_77989,295,4380_47570,Southside Orbital,83791-00019-1,1,4380_7778208_2230255,4380_600 -4380_77989,293,4380_47571,Southside Orbital,83797-00017-1,1,4380_7778208_2230255,4380_600 -4380_77989,291,4380_47573,Southside Orbital,83213-00013-1,1,4380_7778208_2230201,4380_597 -4380_77989,296,4380_47574,Southside Orbital,83214-00021-1,1,4380_7778208_2230201,4380_597 -4380_77989,285,4380_47580,MTU,83620-00009-1,1,4380_7778208_2230207,4380_604 -4380_77989,288,4380_47581,MTU,83624-00011-1,1,4380_7778208_2230207,4380_604 -4380_77989,287,4380_47582,MTU,83622-00012-1,1,4380_7778208_2230207,4380_604 -4380_77989,286,4380_47583,MTU,83618-00010-1,1,4380_7778208_2230207,4380_604 -4380_77989,289,4380_47584,MTU,83626-00014-1,1,4380_7778208_2230207,4380_604 -4380_77989,292,4380_47585,MTU,83619-00016-1,1,4380_7778208_2230207,4380_604 -4380_77989,290,4380_47586,MTU,83621-00015-1,1,4380_7778208_2230207,4380_604 -4380_77989,294,4380_47587,MTU,83623-00018-1,1,4380_7778208_2230207,4380_604 -4380_77989,295,4380_47588,MTU,83627-00019-1,1,4380_7778208_2230207,4380_604 -4380_77989,293,4380_47589,MTU,83625-00017-1,1,4380_7778208_2230207,4380_604 -4380_77989,285,4380_47595,Southside Orbital,83495-00009-1,1,4380_7778208_2230203,4380_597 -4380_77989,288,4380_47596,Southside Orbital,83499-00011-1,1,4380_7778208_2230203,4380_597 -4380_77989,287,4380_47597,Southside Orbital,83501-00012-1,1,4380_7778208_2230203,4380_597 -4380_77989,286,4380_47598,Southside Orbital,83497-00010-1,1,4380_7778208_2230203,4380_597 -4380_77989,289,4380_47599,Southside Orbital,83493-00014-1,1,4380_7778208_2230203,4380_597 -4380_77946,292,4380_476,Drogheda,50352-00016-1,1,4380_7778208_1000913,4380_6 -4380_77989,292,4380_47600,Southside Orbital,83498-00016-1,1,4380_7778208_2230203,4380_597 -4380_77989,290,4380_47601,Southside Orbital,83496-00015-1,1,4380_7778208_2230203,4380_597 -4380_77989,294,4380_47602,Southside Orbital,83502-00018-1,1,4380_7778208_2230203,4380_597 -4380_77989,295,4380_47603,Southside Orbital,83494-00019-1,1,4380_7778208_2230203,4380_597 -4380_77989,293,4380_47604,Southside Orbital,83500-00017-1,1,4380_7778208_2230203,4380_597 -4380_77989,285,4380_47610,Southside Orbital,83638-00009-1,1,4380_7778208_2230244,4380_599 -4380_77989,288,4380_47611,Southside Orbital,83640-00011-1,1,4380_7778208_2230244,4380_599 -4380_77989,287,4380_47612,Southside Orbital,83646-00012-1,1,4380_7778208_2230244,4380_599 -4380_77989,286,4380_47613,Southside Orbital,83644-00010-1,1,4380_7778208_2230244,4380_599 -4380_77989,289,4380_47614,Southside Orbital,83642-00014-1,1,4380_7778208_2230244,4380_599 -4380_77989,292,4380_47615,Southside Orbital,83645-00016-1,1,4380_7778208_2230244,4380_599 -4380_77989,290,4380_47616,Southside Orbital,83639-00015-1,1,4380_7778208_2230244,4380_599 -4380_77989,294,4380_47617,Southside Orbital,83647-00018-1,1,4380_7778208_2230244,4380_599 -4380_77989,295,4380_47618,Southside Orbital,83643-00019-1,1,4380_7778208_2230244,4380_599 -4380_77989,293,4380_47619,Southside Orbital,83641-00017-1,1,4380_7778208_2230244,4380_599 -4380_77989,297,4380_47622,Southside Orbital,83227-00008-1,1,4380_7778208_2230201,4380_597 -4380_77989,291,4380_47623,Southside Orbital,83341-00013-1,1,4380_7778208_2230202,4380_599 -4380_77989,296,4380_47624,Southside Orbital,83342-00021-1,1,4380_7778208_2230202,4380_599 -4380_77948,285,4380_4763,Dublin,1619-00009-1,1,4380_7778208_1030106,4380_42 -4380_77989,285,4380_47630,Southside Orbital,83347-00009-1,1,4380_7778208_2230202,4380_597 -4380_77989,288,4380_47631,Southside Orbital,83345-00011-1,1,4380_7778208_2230202,4380_597 -4380_77989,287,4380_47632,Southside Orbital,83351-00012-1,1,4380_7778208_2230202,4380_597 -4380_77989,286,4380_47633,Southside Orbital,83343-00010-1,1,4380_7778208_2230202,4380_597 -4380_77989,289,4380_47634,Southside Orbital,83349-00014-1,1,4380_7778208_2230202,4380_597 -4380_77989,292,4380_47635,Southside Orbital,83344-00016-1,1,4380_7778208_2230202,4380_597 -4380_77989,290,4380_47636,Southside Orbital,83348-00015-1,1,4380_7778208_2230202,4380_597 -4380_77989,294,4380_47637,Southside Orbital,83352-00018-1,1,4380_7778208_2230202,4380_597 -4380_77989,295,4380_47638,Southside Orbital,83350-00019-1,1,4380_7778208_2230202,4380_597 -4380_77989,293,4380_47639,Southside Orbital,83346-00017-1,1,4380_7778208_2230202,4380_597 -4380_77948,286,4380_4764,Dublin,1631-00010-1,1,4380_7778208_1030106,4380_42 -4380_77989,285,4380_47645,South Mall,83808-00009-1,1,4380_7778208_2230255,4380_603 -4380_77989,288,4380_47646,South Mall,83812-00011-1,1,4380_7778208_2230255,4380_603 -4380_77989,287,4380_47647,South Mall,83814-00012-1,1,4380_7778208_2230255,4380_603 -4380_77989,286,4380_47648,South Mall,83810-00010-1,1,4380_7778208_2230255,4380_603 -4380_77989,289,4380_47649,South Mall,83816-00014-1,1,4380_7778208_2230255,4380_603 -4380_77948,288,4380_4765,Dublin,1643-00011-1,1,4380_7778208_1030106,4380_42 -4380_77989,292,4380_47650,South Mall,83811-00016-1,1,4380_7778208_2230255,4380_603 -4380_77989,290,4380_47651,South Mall,83809-00015-1,1,4380_7778208_2230255,4380_603 -4380_77989,294,4380_47652,South Mall,83815-00018-1,1,4380_7778208_2230255,4380_603 -4380_77989,295,4380_47653,South Mall,83817-00019-1,1,4380_7778208_2230255,4380_603 -4380_77989,293,4380_47654,South Mall,83813-00017-1,1,4380_7778208_2230255,4380_603 -4380_77948,287,4380_4766,Dublin,1655-00012-1,1,4380_7778208_1030106,4380_42 -4380_77989,285,4380_47661,Southside Orbital,83235-00009-1,1,4380_7778208_2230201,4380_597 -4380_77989,288,4380_47662,Southside Orbital,83231-00011-1,1,4380_7778208_2230201,4380_597 -4380_77989,287,4380_47663,Southside Orbital,83237-00012-1,1,4380_7778208_2230201,4380_597 -4380_77989,286,4380_47664,Southside Orbital,83233-00010-1,1,4380_7778208_2230201,4380_597 -4380_77989,291,4380_47665,Southside Orbital,83229-00013-1,1,4380_7778208_2230201,4380_601 -4380_77989,289,4380_47666,Southside Orbital,83239-00014-1,1,4380_7778208_2230201,4380_597 -4380_77989,292,4380_47667,Southside Orbital,83234-00016-1,1,4380_7778208_2230201,4380_597 -4380_77989,290,4380_47668,Southside Orbital,83236-00015-1,1,4380_7778208_2230201,4380_597 -4380_77989,294,4380_47669,Southside Orbital,83238-00018-1,1,4380_7778208_2230201,4380_597 -4380_77948,289,4380_4767,Dublin,1607-00014-1,1,4380_7778208_1030106,4380_42 -4380_77989,295,4380_47670,Southside Orbital,83240-00019-1,1,4380_7778208_2230201,4380_597 -4380_77989,293,4380_47671,Southside Orbital,83232-00017-1,1,4380_7778208_2230201,4380_597 -4380_77989,296,4380_47672,Southside Orbital,83230-00021-1,1,4380_7778208_2230201,4380_601 -4380_77948,290,4380_4768,Dublin,52106-00015-1,1,4380_7778208_1030106,4380_42 -4380_77989,297,4380_47680,Southside Orbital,83253-00008-1,1,4380_7778208_2230201,4380_597 -4380_77989,285,4380_47681,Southside Orbital,83515-00009-1,1,4380_7778208_2230203,4380_597 -4380_77989,288,4380_47682,Southside Orbital,83517-00011-1,1,4380_7778208_2230203,4380_597 -4380_77989,287,4380_47683,Southside Orbital,83513-00012-1,1,4380_7778208_2230203,4380_597 -4380_77989,286,4380_47684,Southside Orbital,83521-00010-1,1,4380_7778208_2230203,4380_597 -4380_77989,291,4380_47685,Southside Orbital,83355-00013-1,1,4380_7778208_2230202,4380_597 -4380_77989,289,4380_47686,Southside Orbital,83519-00014-1,1,4380_7778208_2230203,4380_597 -4380_77989,292,4380_47687,Southside Orbital,83522-00016-1,1,4380_7778208_2230203,4380_597 -4380_77989,290,4380_47688,Southside Orbital,83516-00015-1,1,4380_7778208_2230203,4380_597 -4380_77989,294,4380_47689,Southside Orbital,83514-00018-1,1,4380_7778208_2230203,4380_597 -4380_77948,292,4380_4769,Dublin,52107-00016-1,1,4380_7778208_1030106,4380_42 -4380_77989,295,4380_47690,Southside Orbital,83520-00019-1,1,4380_7778208_2230203,4380_597 -4380_77989,293,4380_47691,Southside Orbital,83518-00017-1,1,4380_7778208_2230203,4380_597 -4380_77989,296,4380_47692,Southside Orbital,83356-00021-1,1,4380_7778208_2230202,4380_597 -4380_77989,285,4380_47699,Southside Orbital,83265-00009-1,1,4380_7778208_2230201,4380_597 -4380_77946,293,4380_477,Drogheda,50348-00017-1,1,4380_7778208_1000913,4380_6 -4380_77948,293,4380_4770,Dublin,52108-00017-1,1,4380_7778208_1030106,4380_42 -4380_77989,288,4380_47700,Southside Orbital,83259-00011-1,1,4380_7778208_2230201,4380_597 -4380_77989,287,4380_47701,Southside Orbital,83255-00012-1,1,4380_7778208_2230201,4380_597 -4380_77989,286,4380_47702,Southside Orbital,83263-00010-1,1,4380_7778208_2230201,4380_597 -4380_77989,291,4380_47703,Southside Orbital,83257-00013-1,1,4380_7778208_2230201,4380_597 -4380_77989,289,4380_47704,Southside Orbital,83261-00014-1,1,4380_7778208_2230201,4380_597 -4380_77989,292,4380_47705,Southside Orbital,83264-00016-1,1,4380_7778208_2230201,4380_597 -4380_77989,290,4380_47706,Southside Orbital,83266-00015-1,1,4380_7778208_2230201,4380_597 -4380_77989,294,4380_47707,Southside Orbital,83256-00018-1,1,4380_7778208_2230201,4380_597 -4380_77989,295,4380_47708,Southside Orbital,83262-00019-1,1,4380_7778208_2230201,4380_597 -4380_77989,293,4380_47709,Southside Orbital,83260-00017-1,1,4380_7778208_2230201,4380_597 -4380_77948,294,4380_4771,Dublin,52110-00018-1,1,4380_7778208_1030106,4380_42 -4380_77989,296,4380_47710,Southside Orbital,83258-00021-1,1,4380_7778208_2230201,4380_597 -4380_77989,297,4380_47712,South Mall,83609-00008-1,1,4380_7778208_2230204,4380_598 -4380_77948,295,4380_4772,Dublin,52109-00019-1,1,4380_7778208_1030106,4380_42 -4380_77989,297,4380_47720,Southside Orbital,83269-00008-1,1,4380_7778208_2230201,4380_597 -4380_77989,285,4380_47721,Southside Orbital,83377-00009-1,1,4380_7778208_2230202,4380_597 -4380_77989,288,4380_47722,Southside Orbital,83371-00011-1,1,4380_7778208_2230202,4380_597 -4380_77989,287,4380_47723,Southside Orbital,83373-00012-1,1,4380_7778208_2230202,4380_597 -4380_77989,286,4380_47724,Southside Orbital,83369-00010-1,1,4380_7778208_2230202,4380_597 -4380_77989,291,4380_47725,Southside Orbital,83375-00013-1,1,4380_7778208_2230202,4380_597 -4380_77989,289,4380_47726,Southside Orbital,83379-00014-1,1,4380_7778208_2230202,4380_597 -4380_77989,292,4380_47727,Southside Orbital,83370-00016-1,1,4380_7778208_2230202,4380_597 -4380_77989,290,4380_47728,Southside Orbital,83378-00015-1,1,4380_7778208_2230202,4380_597 -4380_77989,294,4380_47729,Southside Orbital,83374-00018-1,1,4380_7778208_2230202,4380_597 -4380_77948,291,4380_4773,Dublin,1755-00013-1,1,4380_7778208_1030107,4380_42 -4380_77989,295,4380_47730,Southside Orbital,83380-00019-1,1,4380_7778208_2230202,4380_597 -4380_77989,293,4380_47731,Southside Orbital,83372-00017-1,1,4380_7778208_2230202,4380_597 -4380_77989,296,4380_47732,Southside Orbital,83376-00021-1,1,4380_7778208_2230202,4380_597 -4380_77948,296,4380_4774,Dublin,52180-00021-1,1,4380_7778208_1030107,4380_42 -4380_77989,297,4380_47740,Southside Orbital,83611-00008-1,1,4380_7778208_2230204,4380_599 -4380_77989,285,4380_47741,Southside Orbital,83533-00009-1,1,4380_7778208_2230203,4380_602 -4380_77989,288,4380_47742,Southside Orbital,83537-00011-1,1,4380_7778208_2230203,4380_602 -4380_77989,287,4380_47743,Southside Orbital,83539-00012-1,1,4380_7778208_2230203,4380_602 -4380_77989,286,4380_47744,Southside Orbital,83535-00010-1,1,4380_7778208_2230203,4380_602 -4380_77989,291,4380_47745,Southside Orbital,83271-00013-1,1,4380_7778208_2230201,4380_599 -4380_77989,289,4380_47746,Southside Orbital,83541-00014-1,1,4380_7778208_2230203,4380_602 -4380_77989,292,4380_47747,Southside Orbital,83536-00016-1,1,4380_7778208_2230203,4380_602 -4380_77989,290,4380_47748,Southside Orbital,83534-00015-1,1,4380_7778208_2230203,4380_602 -4380_77989,294,4380_47749,Southside Orbital,83540-00018-1,1,4380_7778208_2230203,4380_602 -4380_77989,295,4380_47750,Southside Orbital,83542-00019-1,1,4380_7778208_2230203,4380_602 -4380_77989,293,4380_47751,Southside Orbital,83538-00017-1,1,4380_7778208_2230203,4380_602 -4380_77989,296,4380_47752,Southside Orbital,83272-00021-1,1,4380_7778208_2230201,4380_599 -4380_77989,297,4380_47760,Southside Orbital,83285-00008-1,1,4380_7778208_2230201,4380_597 -4380_77989,285,4380_47761,Southside Orbital,83824-00009-1,1,4380_7778208_2230255,4380_601 -4380_77989,288,4380_47762,Southside Orbital,83818-00011-1,1,4380_7778208_2230255,4380_601 -4380_77989,287,4380_47763,Southside Orbital,83820-00012-1,1,4380_7778208_2230255,4380_601 -4380_77989,286,4380_47764,Southside Orbital,83822-00010-1,1,4380_7778208_2230255,4380_601 -4380_77989,291,4380_47765,Southside Orbital,83393-00013-1,1,4380_7778208_2230202,4380_597 -4380_77989,289,4380_47766,Southside Orbital,83826-00014-1,1,4380_7778208_2230255,4380_601 -4380_77989,292,4380_47767,Southside Orbital,83823-00016-1,1,4380_7778208_2230255,4380_601 -4380_77989,290,4380_47768,Southside Orbital,83825-00015-1,1,4380_7778208_2230255,4380_601 -4380_77989,294,4380_47769,Southside Orbital,83821-00018-1,1,4380_7778208_2230255,4380_601 -4380_77989,295,4380_47770,Southside Orbital,83827-00019-1,1,4380_7778208_2230255,4380_601 -4380_77989,293,4380_47771,Southside Orbital,83819-00017-1,1,4380_7778208_2230255,4380_601 -4380_77989,296,4380_47772,Southside Orbital,83394-00021-1,1,4380_7778208_2230202,4380_597 -4380_77989,285,4380_47778,Southside Orbital,83290-00009-1,1,4380_7778208_2230201,4380_599 -4380_77989,288,4380_47779,Southside Orbital,83294-00011-1,1,4380_7778208_2230201,4380_599 -4380_77989,287,4380_47780,Southside Orbital,83288-00012-1,1,4380_7778208_2230201,4380_599 -4380_77989,286,4380_47781,Southside Orbital,83292-00010-1,1,4380_7778208_2230201,4380_599 -4380_77989,289,4380_47782,Southside Orbital,83286-00014-1,1,4380_7778208_2230201,4380_599 -4380_77989,292,4380_47783,Southside Orbital,83293-00016-1,1,4380_7778208_2230201,4380_599 -4380_77989,290,4380_47784,Southside Orbital,83291-00015-1,1,4380_7778208_2230201,4380_599 -4380_77989,294,4380_47785,Southside Orbital,83289-00018-1,1,4380_7778208_2230201,4380_599 -4380_77989,295,4380_47786,Southside Orbital,83287-00019-1,1,4380_7778208_2230201,4380_599 -4380_77989,293,4380_47787,Southside Orbital,83295-00017-1,1,4380_7778208_2230201,4380_599 -4380_77989,297,4380_47790,Southside Orbital,83613-00008-1,1,4380_7778208_2230204,4380_597 -4380_77989,291,4380_47791,Southside Orbital,83297-00013-1,1,4380_7778208_2230201,4380_599 -4380_77989,296,4380_47792,Southside Orbital,83298-00021-1,1,4380_7778208_2230201,4380_599 -4380_77989,285,4380_47798,South Mall,83561-00009-1,1,4380_7778208_2230203,4380_603 -4380_77989,288,4380_47799,South Mall,83557-00011-1,1,4380_7778208_2230203,4380_603 -4380_77946,294,4380_478,Drogheda,50356-00018-1,1,4380_7778208_1000913,4380_6 -4380_77989,287,4380_47800,South Mall,83559-00012-1,1,4380_7778208_2230203,4380_603 -4380_77989,286,4380_47801,South Mall,83555-00010-1,1,4380_7778208_2230203,4380_603 -4380_77989,289,4380_47802,South Mall,83553-00014-1,1,4380_7778208_2230203,4380_603 -4380_77989,292,4380_47803,South Mall,83556-00016-1,1,4380_7778208_2230203,4380_603 -4380_77989,290,4380_47804,South Mall,83562-00015-1,1,4380_7778208_2230203,4380_603 -4380_77989,294,4380_47805,South Mall,83560-00018-1,1,4380_7778208_2230203,4380_603 -4380_77989,295,4380_47806,South Mall,83554-00019-1,1,4380_7778208_2230203,4380_603 -4380_77989,293,4380_47807,South Mall,83558-00017-1,1,4380_7778208_2230203,4380_603 -4380_77989,297,4380_47815,Southside Orbital,83311-00008-1,1,4380_7778208_2230201,4380_597 -4380_77989,285,4380_47816,Southside Orbital,83846-00009-1,1,4380_7778208_2230255,4380_601 -4380_77989,288,4380_47817,Southside Orbital,83838-00011-1,1,4380_7778208_2230255,4380_601 -4380_77989,287,4380_47818,Southside Orbital,83842-00012-1,1,4380_7778208_2230255,4380_601 -4380_77989,286,4380_47819,Southside Orbital,83844-00010-1,1,4380_7778208_2230255,4380_601 -4380_77948,297,4380_4782,Dublin,1543-00008-1,1,4380_7778208_1030104,4380_43 -4380_77989,291,4380_47820,Southside Orbital,83407-00013-1,1,4380_7778208_2230202,4380_605 -4380_77989,289,4380_47821,Southside Orbital,83840-00014-1,1,4380_7778208_2230255,4380_601 -4380_77989,292,4380_47822,Southside Orbital,83845-00016-1,1,4380_7778208_2230255,4380_601 -4380_77989,290,4380_47823,Southside Orbital,83847-00015-1,1,4380_7778208_2230255,4380_601 -4380_77989,294,4380_47824,Southside Orbital,83843-00018-1,1,4380_7778208_2230255,4380_601 -4380_77989,295,4380_47825,Southside Orbital,83841-00019-1,1,4380_7778208_2230255,4380_601 -4380_77989,293,4380_47826,Southside Orbital,83839-00017-1,1,4380_7778208_2230255,4380_601 -4380_77989,296,4380_47827,Southside Orbital,83408-00021-1,1,4380_7778208_2230202,4380_605 -4380_77948,285,4380_4783,Dublin,1779-00009-1,1,4380_7778208_1030108,4380_42 -4380_77989,285,4380_47833,Southside Orbital,83411-00009-1,1,4380_7778208_2230202,4380_600 -4380_77989,288,4380_47834,Southside Orbital,83409-00011-1,1,4380_7778208_2230202,4380_600 -4380_77989,287,4380_47835,Southside Orbital,83417-00012-1,1,4380_7778208_2230202,4380_600 -4380_77989,286,4380_47836,Southside Orbital,83415-00010-1,1,4380_7778208_2230202,4380_600 -4380_77989,289,4380_47837,Southside Orbital,83413-00014-1,1,4380_7778208_2230202,4380_600 -4380_77989,292,4380_47838,Southside Orbital,83416-00016-1,1,4380_7778208_2230202,4380_600 -4380_77989,290,4380_47839,Southside Orbital,83412-00015-1,1,4380_7778208_2230202,4380_600 -4380_77948,286,4380_4784,Dublin,1791-00010-1,1,4380_7778208_1030108,4380_42 -4380_77989,294,4380_47840,Southside Orbital,83418-00018-1,1,4380_7778208_2230202,4380_600 -4380_77989,295,4380_47841,Southside Orbital,83414-00019-1,1,4380_7778208_2230202,4380_600 -4380_77989,293,4380_47842,Southside Orbital,83410-00017-1,1,4380_7778208_2230202,4380_600 -4380_77989,297,4380_47845,Southside Orbital,83615-00008-1,1,4380_7778208_2230204,4380_597 -4380_77989,291,4380_47846,Southside Orbital,83313-00013-1,1,4380_7778208_2230201,4380_597 -4380_77989,296,4380_47847,Southside Orbital,83314-00021-1,1,4380_7778208_2230201,4380_597 -4380_77948,288,4380_4785,Dublin,1803-00011-1,1,4380_7778208_1030108,4380_42 -4380_77989,285,4380_47853,Southside Orbital,83772-00009-1,1,4380_7778208_2230244,4380_597 -4380_77989,288,4380_47854,Southside Orbital,83768-00011-1,1,4380_7778208_2230244,4380_597 -4380_77989,287,4380_47855,Southside Orbital,83776-00012-1,1,4380_7778208_2230244,4380_597 -4380_77989,286,4380_47856,Southside Orbital,83770-00010-1,1,4380_7778208_2230244,4380_597 -4380_77989,289,4380_47857,Southside Orbital,83774-00014-1,1,4380_7778208_2230244,4380_597 -4380_77989,292,4380_47858,Southside Orbital,83771-00016-1,1,4380_7778208_2230244,4380_597 -4380_77989,290,4380_47859,Southside Orbital,83773-00015-1,1,4380_7778208_2230244,4380_597 -4380_77948,287,4380_4786,Dublin,1815-00012-1,1,4380_7778208_1030108,4380_42 -4380_77989,294,4380_47860,Southside Orbital,83777-00018-1,1,4380_7778208_2230244,4380_597 -4380_77989,295,4380_47861,Southside Orbital,83775-00019-1,1,4380_7778208_2230244,4380_597 -4380_77989,293,4380_47862,Southside Orbital,83769-00017-1,1,4380_7778208_2230244,4380_597 -4380_77948,289,4380_4787,Dublin,1767-00014-1,1,4380_7778208_1030108,4380_42 -4380_77989,297,4380_47870,Southside Orbital,83581-00008-1,1,4380_7778208_2230203,4380_597 -4380_77989,285,4380_47871,Southside Orbital,83579-00009-1,1,4380_7778208_2230203,4380_601 -4380_77989,288,4380_47872,Southside Orbital,83573-00011-1,1,4380_7778208_2230203,4380_601 -4380_77989,287,4380_47873,Southside Orbital,83582-00012-1,1,4380_7778208_2230203,4380_601 -4380_77989,286,4380_47874,Southside Orbital,83575-00010-1,1,4380_7778208_2230203,4380_601 -4380_77989,291,4380_47875,Southside Orbital,83431-00013-1,1,4380_7778208_2230202,4380_597 -4380_77989,289,4380_47876,Southside Orbital,83577-00014-1,1,4380_7778208_2230203,4380_601 -4380_77989,292,4380_47877,Southside Orbital,83576-00016-1,1,4380_7778208_2230203,4380_601 -4380_77989,290,4380_47878,Southside Orbital,83580-00015-1,1,4380_7778208_2230203,4380_601 -4380_77989,294,4380_47879,Southside Orbital,83583-00018-1,1,4380_7778208_2230203,4380_601 -4380_77948,290,4380_4788,Dublin,52242-00015-1,1,4380_7778208_1030108,4380_42 -4380_77989,295,4380_47880,Southside Orbital,83578-00019-1,1,4380_7778208_2230203,4380_601 -4380_77989,293,4380_47881,Southside Orbital,83574-00017-1,1,4380_7778208_2230203,4380_601 -4380_77989,296,4380_47882,Southside Orbital,83432-00021-1,1,4380_7778208_2230202,4380_597 -4380_77948,292,4380_4789,Dublin,52244-00016-1,1,4380_7778208_1030108,4380_42 -4380_77989,297,4380_47890,Southside Orbital,83617-00008-1,1,4380_7778208_2230204,4380_597 -4380_77989,285,4380_47891,Southside Orbital,83441-00009-1,1,4380_7778208_2230202,4380_601 -4380_77989,288,4380_47892,Southside Orbital,83437-00011-1,1,4380_7778208_2230202,4380_601 -4380_77989,287,4380_47893,Southside Orbital,83443-00012-1,1,4380_7778208_2230202,4380_601 -4380_77989,286,4380_47894,Southside Orbital,83435-00010-1,1,4380_7778208_2230202,4380_601 -4380_77989,291,4380_47895,Southside Orbital,83317-00013-1,1,4380_7778208_2230201,4380_601 -4380_77989,289,4380_47896,Southside Orbital,83439-00014-1,1,4380_7778208_2230202,4380_601 -4380_77989,292,4380_47897,Southside Orbital,83436-00016-1,1,4380_7778208_2230202,4380_601 -4380_77989,290,4380_47898,Southside Orbital,83442-00015-1,1,4380_7778208_2230202,4380_601 -4380_77989,294,4380_47899,Southside Orbital,83444-00018-1,1,4380_7778208_2230202,4380_601 -4380_77946,295,4380_479,Drogheda,50350-00019-1,1,4380_7778208_1000913,4380_6 -4380_77948,293,4380_4790,Dublin,52241-00017-1,1,4380_7778208_1030108,4380_42 -4380_77989,295,4380_47900,Southside Orbital,83440-00019-1,1,4380_7778208_2230202,4380_601 -4380_77989,293,4380_47901,Southside Orbital,83438-00017-1,1,4380_7778208_2230202,4380_601 -4380_77989,296,4380_47902,Southside Orbital,83318-00021-1,1,4380_7778208_2230201,4380_601 -4380_77948,294,4380_4791,Dublin,52243-00018-1,1,4380_7778208_1030108,4380_42 -4380_77989,297,4380_47910,Southside Orbital,83595-00008-1,1,4380_7778208_2230203,4380_597 -4380_77989,285,4380_47911,Southside Orbital,83596-00009-1,1,4380_7778208_2230203,4380_597 -4380_77989,288,4380_47912,Southside Orbital,83602-00011-1,1,4380_7778208_2230203,4380_597 -4380_77989,287,4380_47913,Southside Orbital,83600-00012-1,1,4380_7778208_2230203,4380_597 -4380_77989,286,4380_47914,Southside Orbital,83604-00010-1,1,4380_7778208_2230203,4380_597 -4380_77989,291,4380_47915,Southside Orbital,83445-00013-1,1,4380_7778208_2230202,4380_597 -4380_77989,289,4380_47916,Southside Orbital,83598-00014-1,1,4380_7778208_2230203,4380_597 -4380_77989,292,4380_47917,Southside Orbital,83605-00016-1,1,4380_7778208_2230203,4380_597 -4380_77989,290,4380_47918,Southside Orbital,83597-00015-1,1,4380_7778208_2230203,4380_597 -4380_77989,294,4380_47919,Southside Orbital,83601-00018-1,1,4380_7778208_2230203,4380_597 -4380_77948,295,4380_4792,Dublin,52245-00019-1,1,4380_7778208_1030108,4380_42 -4380_77989,295,4380_47920,Southside Orbital,83599-00019-1,1,4380_7778208_2230203,4380_597 -4380_77989,293,4380_47921,Southside Orbital,83603-00017-1,1,4380_7778208_2230203,4380_597 -4380_77989,296,4380_47922,Southside Orbital,83446-00021-1,1,4380_7778208_2230202,4380_597 -4380_77948,291,4380_4793,Dublin,1411-00013-1,1,4380_7778208_1030103,4380_42 -4380_77989,297,4380_47930,Southside Orbital,83607-00008-1,1,4380_7778208_2230203,4380_597 -4380_77989,285,4380_47931,Southside Orbital,83459-00009-1,1,4380_7778208_2230202,4380_597 -4380_77989,288,4380_47932,Southside Orbital,83469-00011-1,1,4380_7778208_2230202,4380_597 -4380_77989,287,4380_47933,Southside Orbital,83463-00012-1,1,4380_7778208_2230202,4380_597 -4380_77989,286,4380_47934,Southside Orbital,83465-00010-1,1,4380_7778208_2230202,4380_597 -4380_77989,291,4380_47935,Southside Orbital,83461-00013-1,1,4380_7778208_2230202,4380_597 -4380_77989,289,4380_47936,Southside Orbital,83467-00014-1,1,4380_7778208_2230202,4380_597 -4380_77989,292,4380_47937,Southside Orbital,83466-00016-1,1,4380_7778208_2230202,4380_597 -4380_77989,290,4380_47938,Southside Orbital,83460-00015-1,1,4380_7778208_2230202,4380_597 -4380_77989,294,4380_47939,Southside Orbital,83464-00018-1,1,4380_7778208_2230202,4380_597 -4380_77948,296,4380_4794,Dublin,51934-00021-1,1,4380_7778208_1030103,4380_42 -4380_77989,295,4380_47940,Southside Orbital,83468-00019-1,1,4380_7778208_2230202,4380_597 -4380_77989,293,4380_47941,Southside Orbital,83470-00017-1,1,4380_7778208_2230202,4380_597 -4380_77989,296,4380_47942,Southside Orbital,83462-00021-1,1,4380_7778208_2230202,4380_597 -4380_78151,285,4380_47948,Haulbowline (NMCI),83786-00009-1,0,4380_7778208_2230255,4380_606 -4380_78151,288,4380_47949,Haulbowline (NMCI),83778-00011-1,0,4380_7778208_2230255,4380_606 -4380_78151,287,4380_47950,Haulbowline (NMCI),83782-00012-1,0,4380_7778208_2230255,4380_606 -4380_78151,286,4380_47951,Haulbowline (NMCI),83784-00010-1,0,4380_7778208_2230255,4380_606 -4380_78151,289,4380_47952,Haulbowline (NMCI),83780-00014-1,0,4380_7778208_2230255,4380_606 -4380_78151,292,4380_47953,Haulbowline (NMCI),83785-00016-1,0,4380_7778208_2230255,4380_606 -4380_78151,290,4380_47954,Haulbowline (NMCI),83787-00015-1,0,4380_7778208_2230255,4380_606 -4380_78151,294,4380_47955,Haulbowline (NMCI),83783-00018-1,0,4380_7778208_2230255,4380_606 -4380_78151,295,4380_47956,Haulbowline (NMCI),83781-00019-1,0,4380_7778208_2230255,4380_606 -4380_78151,293,4380_47957,Haulbowline (NMCI),83779-00017-1,0,4380_7778208_2230255,4380_606 -4380_78151,285,4380_47963,Haulbowline (NMCI),83491-00009-1,0,4380_7778208_2230203,4380_606 -4380_78151,288,4380_47964,Haulbowline (NMCI),83487-00011-1,0,4380_7778208_2230203,4380_606 -4380_78151,287,4380_47965,Haulbowline (NMCI),83483-00012-1,0,4380_7778208_2230203,4380_606 -4380_78151,286,4380_47966,Haulbowline (NMCI),83485-00010-1,0,4380_7778208_2230203,4380_606 -4380_78151,289,4380_47967,Haulbowline (NMCI),83489-00014-1,0,4380_7778208_2230203,4380_606 -4380_78151,292,4380_47968,Haulbowline (NMCI),83486-00016-1,0,4380_7778208_2230203,4380_606 -4380_78151,290,4380_47969,Haulbowline (NMCI),83492-00015-1,0,4380_7778208_2230203,4380_606 -4380_78151,294,4380_47970,Haulbowline (NMCI),83484-00018-1,0,4380_7778208_2230203,4380_606 -4380_78151,295,4380_47971,Haulbowline (NMCI),83490-00019-1,0,4380_7778208_2230203,4380_606 -4380_78151,293,4380_47972,Haulbowline (NMCI),83488-00017-1,0,4380_7778208_2230203,4380_606 -4380_78151,285,4380_47978,South Mall,83860-00009-1,1,4380_7778208_2230255,4380_607 -4380_78151,288,4380_47979,South Mall,83858-00011-1,1,4380_7778208_2230255,4380_607 -4380_78151,287,4380_47980,South Mall,83862-00012-1,1,4380_7778208_2230255,4380_607 -4380_78151,286,4380_47981,South Mall,83864-00010-1,1,4380_7778208_2230255,4380_607 -4380_78151,289,4380_47982,South Mall,83866-00014-1,1,4380_7778208_2230255,4380_607 -4380_78151,292,4380_47983,South Mall,83865-00016-1,1,4380_7778208_2230255,4380_607 -4380_78151,290,4380_47984,South Mall,83861-00015-1,1,4380_7778208_2230255,4380_607 -4380_78151,294,4380_47985,South Mall,83863-00018-1,1,4380_7778208_2230255,4380_607 -4380_78151,295,4380_47986,South Mall,83867-00019-1,1,4380_7778208_2230255,4380_607 -4380_78151,293,4380_47987,South Mall,83859-00017-1,1,4380_7778208_2230255,4380_607 -4380_77990,297,4380_47995,Haulbowline (NMCI),83872-00008-1,0,4380_7778208_2250201,4380_608 -4380_77990,285,4380_47996,Haulbowline (NMCI),83868-00009-1,0,4380_7778208_2250201,4380_610 -4380_77990,288,4380_47997,Haulbowline (NMCI),83877-00011-1,0,4380_7778208_2250201,4380_610 -4380_77990,287,4380_47998,Haulbowline (NMCI),83879-00012-1,0,4380_7778208_2250201,4380_610 -4380_77990,286,4380_47999,Haulbowline (NMCI),83870-00010-1,0,4380_7778208_2250201,4380_610 -4380_77946,288,4380_48,Dundalk,114783-00011-1,0,4380_7778208_10088802,4380_4 -4380_77946,296,4380_480,Drogheda,50248-00021-1,1,4380_7778208_1000910,4380_9 -4380_77990,291,4380_48000,Haulbowline (NMCI),83875-00013-1,0,4380_7778208_2250201,4380_612 -4380_77990,289,4380_48001,Haulbowline (NMCI),83873-00014-1,0,4380_7778208_2250201,4380_610 -4380_77990,292,4380_48002,Haulbowline (NMCI),83871-00016-1,0,4380_7778208_2250201,4380_610 -4380_77990,290,4380_48003,Haulbowline (NMCI),83869-00015-1,0,4380_7778208_2250201,4380_610 -4380_77990,294,4380_48004,Haulbowline (NMCI),83880-00018-1,0,4380_7778208_2250201,4380_610 -4380_77990,295,4380_48005,Haulbowline (NMCI),83874-00019-1,0,4380_7778208_2250201,4380_610 -4380_77990,293,4380_48006,Haulbowline (NMCI),83878-00017-1,0,4380_7778208_2250201,4380_610 -4380_77990,296,4380_48007,Haulbowline (NMCI),83876-00021-1,0,4380_7778208_2250201,4380_612 -4380_77948,285,4380_4801,Dublin,1191-00009-1,1,4380_7778208_1030101,4380_42 -4380_77990,297,4380_48015,Haulbowline (NMCI),84102-00008-1,0,4380_7778208_2250203,4380_608 -4380_77990,285,4380_48016,Haulbowline (NMCI),84109-00009-1,0,4380_7778208_2250203,4380_610 -4380_77990,288,4380_48017,Haulbowline (NMCI),84113-00011-1,0,4380_7778208_2250203,4380_610 -4380_77990,287,4380_48018,Haulbowline (NMCI),84107-00012-1,0,4380_7778208_2250203,4380_610 -4380_77990,286,4380_48019,Haulbowline (NMCI),84111-00010-1,0,4380_7778208_2250203,4380_610 -4380_77948,286,4380_4802,Dublin,1201-00010-1,1,4380_7778208_1030101,4380_42 -4380_77990,291,4380_48020,Haulbowline (NMCI),84103-00013-1,0,4380_7778208_2250203,4380_612 -4380_77990,289,4380_48021,Haulbowline (NMCI),84105-00014-1,0,4380_7778208_2250203,4380_610 -4380_77990,292,4380_48022,Haulbowline (NMCI),84112-00016-1,0,4380_7778208_2250203,4380_610 -4380_77990,290,4380_48023,Haulbowline (NMCI),84110-00015-1,0,4380_7778208_2250203,4380_610 -4380_77990,294,4380_48024,Haulbowline (NMCI),84108-00018-1,0,4380_7778208_2250203,4380_610 -4380_77990,295,4380_48025,Haulbowline (NMCI),84106-00019-1,0,4380_7778208_2250203,4380_610 -4380_77990,293,4380_48026,Haulbowline (NMCI),84114-00017-1,0,4380_7778208_2250203,4380_610 -4380_77990,296,4380_48027,Haulbowline (NMCI),84104-00021-1,0,4380_7778208_2250203,4380_612 -4380_77948,288,4380_4803,Dublin,1211-00011-1,1,4380_7778208_1030101,4380_42 -4380_77990,297,4380_48035,Haulbowline (NMCI),84232-00008-1,0,4380_7778208_2250204,4380_608 -4380_77990,285,4380_48036,Haulbowline (NMCI),84241-00009-1,0,4380_7778208_2250204,4380_610 -4380_77990,288,4380_48037,Haulbowline (NMCI),84233-00011-1,0,4380_7778208_2250204,4380_610 -4380_77990,287,4380_48038,Haulbowline (NMCI),84235-00012-1,0,4380_7778208_2250204,4380_610 -4380_77990,286,4380_48039,Haulbowline (NMCI),84239-00010-1,0,4380_7778208_2250204,4380_610 -4380_77948,287,4380_4804,Dublin,1221-00012-1,1,4380_7778208_1030101,4380_42 -4380_77990,291,4380_48040,Haulbowline (NMCI),84237-00013-1,0,4380_7778208_2250204,4380_612 -4380_77990,289,4380_48041,Haulbowline (NMCI),84243-00014-1,0,4380_7778208_2250204,4380_610 -4380_77990,292,4380_48042,Haulbowline (NMCI),84240-00016-1,0,4380_7778208_2250204,4380_610 -4380_77990,290,4380_48043,Haulbowline (NMCI),84242-00015-1,0,4380_7778208_2250204,4380_610 -4380_77990,294,4380_48044,Haulbowline (NMCI),84236-00018-1,0,4380_7778208_2250204,4380_610 -4380_77990,295,4380_48045,Haulbowline (NMCI),84244-00019-1,0,4380_7778208_2250204,4380_610 -4380_77990,293,4380_48046,Haulbowline (NMCI),84234-00017-1,0,4380_7778208_2250204,4380_610 -4380_77990,296,4380_48047,Haulbowline (NMCI),84238-00021-1,0,4380_7778208_2250204,4380_612 -4380_77948,289,4380_4805,Dublin,1181-00014-1,1,4380_7778208_1030101,4380_42 -4380_77990,297,4380_48055,Haulbowline (NMCI),84019-00008-1,0,4380_7778208_2250202,4380_608 -4380_77990,285,4380_48056,Haulbowline (NMCI),84011-00009-1,0,4380_7778208_2250202,4380_610 -4380_77990,288,4380_48057,Haulbowline (NMCI),84017-00011-1,0,4380_7778208_2250202,4380_610 -4380_77990,287,4380_48058,Haulbowline (NMCI),84022-00012-1,0,4380_7778208_2250202,4380_610 -4380_77990,286,4380_48059,Haulbowline (NMCI),84015-00010-1,0,4380_7778208_2250202,4380_610 -4380_77948,290,4380_4806,Dublin,51821-00015-1,1,4380_7778208_1030101,4380_42 -4380_77990,291,4380_48060,Haulbowline (NMCI),84013-00013-1,0,4380_7778208_2250202,4380_612 -4380_77990,289,4380_48061,Haulbowline (NMCI),84020-00014-1,0,4380_7778208_2250202,4380_610 -4380_77990,292,4380_48062,Haulbowline (NMCI),84016-00016-1,0,4380_7778208_2250202,4380_610 -4380_77990,290,4380_48063,Haulbowline (NMCI),84012-00015-1,0,4380_7778208_2250202,4380_610 -4380_77990,294,4380_48064,Haulbowline (NMCI),84023-00018-1,0,4380_7778208_2250202,4380_610 -4380_77990,295,4380_48065,Haulbowline (NMCI),84021-00019-1,0,4380_7778208_2250202,4380_610 -4380_77990,293,4380_48066,Haulbowline (NMCI),84018-00017-1,0,4380_7778208_2250202,4380_610 -4380_77990,296,4380_48067,Haulbowline (NMCI),84014-00021-1,0,4380_7778208_2250202,4380_612 -4380_77948,292,4380_4807,Dublin,51823-00016-1,1,4380_7778208_1030101,4380_42 -4380_77990,297,4380_48075,Haulbowline (NMCI),83904-00008-1,0,4380_7778208_2250201,4380_608 -4380_77990,285,4380_48076,Haulbowline (NMCI),83898-00009-1,0,4380_7778208_2250201,4380_610 -4380_77990,288,4380_48077,Haulbowline (NMCI),83905-00011-1,0,4380_7778208_2250201,4380_610 -4380_77990,287,4380_48078,Haulbowline (NMCI),83900-00012-1,0,4380_7778208_2250201,4380_610 -4380_77990,286,4380_48079,Haulbowline (NMCI),83894-00010-1,0,4380_7778208_2250201,4380_610 -4380_77948,293,4380_4808,Dublin,51822-00017-1,1,4380_7778208_1030101,4380_42 -4380_77990,291,4380_48080,Haulbowline (NMCI),83896-00013-1,0,4380_7778208_2250201,4380_612 -4380_77990,289,4380_48081,Haulbowline (NMCI),83902-00014-1,0,4380_7778208_2250201,4380_610 -4380_77990,292,4380_48082,Haulbowline (NMCI),83895-00016-1,0,4380_7778208_2250201,4380_610 -4380_77990,290,4380_48083,Haulbowline (NMCI),83899-00015-1,0,4380_7778208_2250201,4380_610 -4380_77990,294,4380_48084,Haulbowline (NMCI),83901-00018-1,0,4380_7778208_2250201,4380_610 -4380_77990,295,4380_48085,Haulbowline (NMCI),83903-00019-1,0,4380_7778208_2250201,4380_610 -4380_77990,293,4380_48086,Haulbowline (NMCI),83906-00017-1,0,4380_7778208_2250201,4380_610 -4380_77990,296,4380_48087,Haulbowline (NMCI),83897-00021-1,0,4380_7778208_2250201,4380_612 -4380_77948,294,4380_4809,Dublin,51820-00018-1,1,4380_7778208_1030101,4380_42 -4380_77990,297,4380_48095,Haulbowline (NMCI),84130-00008-1,0,4380_7778208_2250203,4380_608 -4380_77990,285,4380_48096,Haulbowline (NMCI),84135-00009-1,0,4380_7778208_2250203,4380_610 -4380_77990,288,4380_48097,Haulbowline (NMCI),84128-00011-1,0,4380_7778208_2250203,4380_610 -4380_77990,287,4380_48098,Haulbowline (NMCI),84139-00012-1,0,4380_7778208_2250203,4380_610 -4380_77990,286,4380_48099,Haulbowline (NMCI),84133-00010-1,0,4380_7778208_2250203,4380_610 -4380_77948,295,4380_4810,Dublin,51824-00019-1,1,4380_7778208_1030101,4380_42 -4380_77990,291,4380_48100,Haulbowline (NMCI),84137-00013-1,0,4380_7778208_2250203,4380_612 -4380_77990,289,4380_48101,Haulbowline (NMCI),84131-00014-1,0,4380_7778208_2250203,4380_610 -4380_77990,292,4380_48102,Haulbowline (NMCI),84134-00016-1,0,4380_7778208_2250203,4380_610 -4380_77990,290,4380_48103,Haulbowline (NMCI),84136-00015-1,0,4380_7778208_2250203,4380_610 -4380_77990,294,4380_48104,Haulbowline (NMCI),84140-00018-1,0,4380_7778208_2250203,4380_610 -4380_77990,295,4380_48105,Haulbowline (NMCI),84132-00019-1,0,4380_7778208_2250203,4380_610 -4380_77990,293,4380_48106,Haulbowline (NMCI),84129-00017-1,0,4380_7778208_2250203,4380_610 -4380_77990,296,4380_48107,Haulbowline (NMCI),84138-00021-1,0,4380_7778208_2250203,4380_612 -4380_77990,297,4380_48115,Haulbowline (NMCI),84268-00008-1,0,4380_7778208_2250204,4380_608 -4380_77990,285,4380_48116,Haulbowline (NMCI),84269-00009-1,0,4380_7778208_2250204,4380_610 -4380_77990,288,4380_48117,Haulbowline (NMCI),84262-00011-1,0,4380_7778208_2250204,4380_610 -4380_77990,287,4380_48118,Haulbowline (NMCI),84264-00012-1,0,4380_7778208_2250204,4380_610 -4380_77990,286,4380_48119,Haulbowline (NMCI),84260-00010-1,0,4380_7778208_2250204,4380_610 -4380_77948,297,4380_4812,Dublin,1251-00008-1,1,4380_7778208_1030101,4380_42 -4380_77990,291,4380_48120,Haulbowline (NMCI),84266-00013-1,0,4380_7778208_2250204,4380_612 -4380_77990,289,4380_48121,Haulbowline (NMCI),84258-00014-1,0,4380_7778208_2250204,4380_610 -4380_77990,292,4380_48122,Haulbowline (NMCI),84261-00016-1,0,4380_7778208_2250204,4380_610 -4380_77990,290,4380_48123,Haulbowline (NMCI),84270-00015-1,0,4380_7778208_2250204,4380_610 -4380_77990,294,4380_48124,Haulbowline (NMCI),84265-00018-1,0,4380_7778208_2250204,4380_610 -4380_77990,295,4380_48125,Haulbowline (NMCI),84259-00019-1,0,4380_7778208_2250204,4380_610 -4380_77990,293,4380_48126,Haulbowline (NMCI),84263-00017-1,0,4380_7778208_2250204,4380_610 -4380_77990,296,4380_48127,Haulbowline (NMCI),84267-00021-1,0,4380_7778208_2250204,4380_612 -4380_77948,291,4380_4813,Dublin,1329-00013-1,1,4380_7778208_1030102,4380_43 -4380_77990,297,4380_48135,Haulbowline (NMCI),84039-00008-1,0,4380_7778208_2250202,4380_609 -4380_77990,285,4380_48136,Haulbowline (NMCI),84037-00009-1,0,4380_7778208_2250202,4380_611 -4380_77990,288,4380_48137,Haulbowline (NMCI),84046-00011-1,0,4380_7778208_2250202,4380_611 -4380_77990,287,4380_48138,Haulbowline (NMCI),84040-00012-1,0,4380_7778208_2250202,4380_611 -4380_77990,286,4380_48139,Haulbowline (NMCI),84044-00010-1,0,4380_7778208_2250202,4380_611 -4380_77948,296,4380_4814,Dublin,51879-00021-1,1,4380_7778208_1030102,4380_43 -4380_77990,291,4380_48140,Haulbowline (NMCI),84048-00013-1,0,4380_7778208_2250202,4380_613 -4380_77990,289,4380_48141,Haulbowline (NMCI),84042-00014-1,0,4380_7778208_2250202,4380_611 -4380_77990,292,4380_48142,Haulbowline (NMCI),84045-00016-1,0,4380_7778208_2250202,4380_611 -4380_77990,290,4380_48143,Haulbowline (NMCI),84038-00015-1,0,4380_7778208_2250202,4380_611 -4380_77990,294,4380_48144,Haulbowline (NMCI),84041-00018-1,0,4380_7778208_2250202,4380_611 -4380_77990,295,4380_48145,Haulbowline (NMCI),84043-00019-1,0,4380_7778208_2250202,4380_611 -4380_77990,293,4380_48146,Haulbowline (NMCI),84047-00017-1,0,4380_7778208_2250202,4380_611 -4380_77990,296,4380_48147,Haulbowline (NMCI),84049-00021-1,0,4380_7778208_2250202,4380_613 -4380_77990,297,4380_48155,Haulbowline (NMCI),83932-00008-1,0,4380_7778208_2250201,4380_609 -4380_77990,285,4380_48156,Haulbowline (NMCI),83928-00009-1,0,4380_7778208_2250201,4380_611 -4380_77990,288,4380_48157,Haulbowline (NMCI),83920-00011-1,0,4380_7778208_2250201,4380_611 -4380_77990,287,4380_48158,Haulbowline (NMCI),83922-00012-1,0,4380_7778208_2250201,4380_611 -4380_77990,286,4380_48159,Haulbowline (NMCI),83930-00010-1,0,4380_7778208_2250201,4380_611 -4380_77990,291,4380_48160,Haulbowline (NMCI),83924-00013-1,0,4380_7778208_2250201,4380_613 -4380_77990,289,4380_48161,Haulbowline (NMCI),83926-00014-1,0,4380_7778208_2250201,4380_611 -4380_77990,292,4380_48162,Haulbowline (NMCI),83931-00016-1,0,4380_7778208_2250201,4380_611 -4380_77990,290,4380_48163,Haulbowline (NMCI),83929-00015-1,0,4380_7778208_2250201,4380_611 -4380_77990,294,4380_48164,Haulbowline (NMCI),83923-00018-1,0,4380_7778208_2250201,4380_611 -4380_77990,295,4380_48165,Haulbowline (NMCI),83927-00019-1,0,4380_7778208_2250201,4380_611 -4380_77990,293,4380_48166,Haulbowline (NMCI),83921-00017-1,0,4380_7778208_2250201,4380_611 -4380_77990,296,4380_48167,Haulbowline (NMCI),83925-00021-1,0,4380_7778208_2250201,4380_613 -4380_77990,297,4380_48175,Haulbowline (NMCI),84154-00008-1,0,4380_7778208_2250203,4380_609 -4380_77990,285,4380_48176,Haulbowline (NMCI),84165-00009-1,0,4380_7778208_2250203,4380_611 -4380_77990,288,4380_48177,Haulbowline (NMCI),84159-00011-1,0,4380_7778208_2250203,4380_611 -4380_77990,287,4380_48178,Haulbowline (NMCI),84161-00012-1,0,4380_7778208_2250203,4380_611 -4380_77990,286,4380_48179,Haulbowline (NMCI),84155-00010-1,0,4380_7778208_2250203,4380_611 -4380_77990,291,4380_48180,Haulbowline (NMCI),84157-00013-1,0,4380_7778208_2250203,4380_613 -4380_77990,289,4380_48181,Haulbowline (NMCI),84163-00014-1,0,4380_7778208_2250203,4380_611 -4380_77990,292,4380_48182,Haulbowline (NMCI),84156-00016-1,0,4380_7778208_2250203,4380_611 -4380_77990,290,4380_48183,Haulbowline (NMCI),84166-00015-1,0,4380_7778208_2250203,4380_611 -4380_77990,294,4380_48184,Haulbowline (NMCI),84162-00018-1,0,4380_7778208_2250203,4380_611 -4380_77990,295,4380_48185,Haulbowline (NMCI),84164-00019-1,0,4380_7778208_2250203,4380_611 -4380_77990,293,4380_48186,Haulbowline (NMCI),84160-00017-1,0,4380_7778208_2250203,4380_611 -4380_77990,296,4380_48187,Haulbowline (NMCI),84158-00021-1,0,4380_7778208_2250203,4380_613 -4380_77990,297,4380_48195,Haulbowline (NMCI),84286-00008-1,0,4380_7778208_2250204,4380_609 -4380_77990,285,4380_48196,Haulbowline (NMCI),84293-00009-1,0,4380_7778208_2250204,4380_611 -4380_77990,288,4380_48197,Haulbowline (NMCI),84295-00011-1,0,4380_7778208_2250204,4380_611 -4380_77990,287,4380_48198,Haulbowline (NMCI),84287-00012-1,0,4380_7778208_2250204,4380_611 -4380_77990,286,4380_48199,Haulbowline (NMCI),84289-00010-1,0,4380_7778208_2250204,4380_611 -4380_77990,291,4380_48200,Haulbowline (NMCI),84284-00013-1,0,4380_7778208_2250204,4380_613 -4380_77990,289,4380_48201,Haulbowline (NMCI),84291-00014-1,0,4380_7778208_2250204,4380_611 -4380_77990,292,4380_48202,Haulbowline (NMCI),84290-00016-1,0,4380_7778208_2250204,4380_611 -4380_77990,290,4380_48203,Haulbowline (NMCI),84294-00015-1,0,4380_7778208_2250204,4380_611 -4380_77990,294,4380_48204,Haulbowline (NMCI),84288-00018-1,0,4380_7778208_2250204,4380_611 -4380_77990,295,4380_48205,Haulbowline (NMCI),84292-00019-1,0,4380_7778208_2250204,4380_611 -4380_77990,293,4380_48206,Haulbowline (NMCI),84296-00017-1,0,4380_7778208_2250204,4380_611 -4380_77990,296,4380_48207,Haulbowline (NMCI),84285-00021-1,0,4380_7778208_2250204,4380_613 -4380_77948,285,4380_4821,Dublin,1559-00009-1,1,4380_7778208_1030105,4380_42 -4380_77990,297,4380_48215,Haulbowline (NMCI),84065-00008-1,0,4380_7778208_2250202,4380_609 -4380_77990,285,4380_48216,Haulbowline (NMCI),84063-00009-1,0,4380_7778208_2250202,4380_611 -4380_77990,288,4380_48217,Haulbowline (NMCI),84070-00011-1,0,4380_7778208_2250202,4380_611 -4380_77990,287,4380_48218,Haulbowline (NMCI),84072-00012-1,0,4380_7778208_2250202,4380_611 -4380_77990,286,4380_48219,Haulbowline (NMCI),84068-00010-1,0,4380_7778208_2250202,4380_611 -4380_77948,286,4380_4822,Dublin,1567-00010-1,1,4380_7778208_1030105,4380_42 -4380_77990,291,4380_48220,Haulbowline (NMCI),84074-00013-1,0,4380_7778208_2250202,4380_613 -4380_77990,289,4380_48221,Haulbowline (NMCI),84066-00014-1,0,4380_7778208_2250202,4380_611 -4380_77990,292,4380_48222,Haulbowline (NMCI),84069-00016-1,0,4380_7778208_2250202,4380_611 -4380_77990,290,4380_48223,Haulbowline (NMCI),84064-00015-1,0,4380_7778208_2250202,4380_611 -4380_77990,294,4380_48224,Haulbowline (NMCI),84073-00018-1,0,4380_7778208_2250202,4380_611 -4380_77990,295,4380_48225,Haulbowline (NMCI),84067-00019-1,0,4380_7778208_2250202,4380_611 -4380_77990,293,4380_48226,Haulbowline (NMCI),84071-00017-1,0,4380_7778208_2250202,4380_611 -4380_77990,296,4380_48227,Haulbowline (NMCI),84075-00021-1,0,4380_7778208_2250202,4380_613 -4380_77948,288,4380_4823,Dublin,1575-00011-1,1,4380_7778208_1030105,4380_42 -4380_77990,297,4380_48235,Haulbowline (NMCI),83946-00008-1,0,4380_7778208_2250201,4380_609 -4380_77990,285,4380_48236,Haulbowline (NMCI),83947-00009-1,0,4380_7778208_2250201,4380_611 -4380_77990,288,4380_48237,Haulbowline (NMCI),83953-00011-1,0,4380_7778208_2250201,4380_611 -4380_77990,287,4380_48238,Haulbowline (NMCI),83949-00012-1,0,4380_7778208_2250201,4380_611 -4380_77990,286,4380_48239,Haulbowline (NMCI),83951-00010-1,0,4380_7778208_2250201,4380_611 -4380_77948,287,4380_4824,Dublin,1583-00012-1,1,4380_7778208_1030105,4380_42 -4380_77990,291,4380_48240,Haulbowline (NMCI),83955-00013-1,0,4380_7778208_2250201,4380_613 -4380_77990,289,4380_48241,Haulbowline (NMCI),83957-00014-1,0,4380_7778208_2250201,4380_611 -4380_77990,292,4380_48242,Haulbowline (NMCI),83952-00016-1,0,4380_7778208_2250201,4380_611 -4380_77990,290,4380_48243,Haulbowline (NMCI),83948-00015-1,0,4380_7778208_2250201,4380_611 -4380_77990,294,4380_48244,Haulbowline (NMCI),83950-00018-1,0,4380_7778208_2250201,4380_611 -4380_77990,295,4380_48245,Haulbowline (NMCI),83958-00019-1,0,4380_7778208_2250201,4380_611 -4380_77990,293,4380_48246,Haulbowline (NMCI),83954-00017-1,0,4380_7778208_2250201,4380_611 -4380_77990,296,4380_48247,Haulbowline (NMCI),83956-00021-1,0,4380_7778208_2250201,4380_613 -4380_77948,289,4380_4825,Dublin,1551-00014-1,1,4380_7778208_1030105,4380_42 -4380_77990,297,4380_48255,Haulbowline (NMCI),84188-00008-1,0,4380_7778208_2250203,4380_609 -4380_77990,285,4380_48256,Haulbowline (NMCI),84182-00009-1,0,4380_7778208_2250203,4380_611 -4380_77990,288,4380_48257,Haulbowline (NMCI),84186-00011-1,0,4380_7778208_2250203,4380_611 -4380_77990,287,4380_48258,Haulbowline (NMCI),84180-00012-1,0,4380_7778208_2250203,4380_611 -4380_77990,286,4380_48259,Haulbowline (NMCI),84184-00010-1,0,4380_7778208_2250203,4380_611 -4380_77948,290,4380_4826,Dublin,52060-00015-1,1,4380_7778208_1030105,4380_42 -4380_77990,291,4380_48260,Haulbowline (NMCI),84189-00013-1,0,4380_7778208_2250203,4380_613 -4380_77990,289,4380_48261,Haulbowline (NMCI),84191-00014-1,0,4380_7778208_2250203,4380_611 -4380_77990,292,4380_48262,Haulbowline (NMCI),84185-00016-1,0,4380_7778208_2250203,4380_611 -4380_77990,290,4380_48263,Haulbowline (NMCI),84183-00015-1,0,4380_7778208_2250203,4380_611 -4380_77990,294,4380_48264,Haulbowline (NMCI),84181-00018-1,0,4380_7778208_2250203,4380_611 -4380_77990,295,4380_48265,Haulbowline (NMCI),84192-00019-1,0,4380_7778208_2250203,4380_611 -4380_77990,293,4380_48266,Haulbowline (NMCI),84187-00017-1,0,4380_7778208_2250203,4380_611 -4380_77990,296,4380_48267,Haulbowline (NMCI),84190-00021-1,0,4380_7778208_2250203,4380_613 -4380_77948,292,4380_4827,Dublin,52062-00016-1,1,4380_7778208_1030105,4380_42 -4380_77990,297,4380_48275,Haulbowline (NMCI),84310-00008-1,0,4380_7778208_2250204,4380_609 -4380_77990,285,4380_48276,Haulbowline (NMCI),84319-00009-1,0,4380_7778208_2250204,4380_611 -4380_77990,288,4380_48277,Haulbowline (NMCI),84315-00011-1,0,4380_7778208_2250204,4380_611 -4380_77990,287,4380_48278,Haulbowline (NMCI),84313-00012-1,0,4380_7778208_2250204,4380_611 -4380_77990,286,4380_48279,Haulbowline (NMCI),84317-00010-1,0,4380_7778208_2250204,4380_611 -4380_77948,293,4380_4828,Dublin,52064-00017-1,1,4380_7778208_1030105,4380_42 -4380_77990,291,4380_48280,Haulbowline (NMCI),84311-00013-1,0,4380_7778208_2250204,4380_613 -4380_77990,289,4380_48281,Haulbowline (NMCI),84321-00014-1,0,4380_7778208_2250204,4380_611 -4380_77990,292,4380_48282,Haulbowline (NMCI),84318-00016-1,0,4380_7778208_2250204,4380_611 -4380_77990,290,4380_48283,Haulbowline (NMCI),84320-00015-1,0,4380_7778208_2250204,4380_611 -4380_77990,294,4380_48284,Haulbowline (NMCI),84314-00018-1,0,4380_7778208_2250204,4380_611 -4380_77990,295,4380_48285,Haulbowline (NMCI),84322-00019-1,0,4380_7778208_2250204,4380_611 -4380_77990,293,4380_48286,Haulbowline (NMCI),84316-00017-1,0,4380_7778208_2250204,4380_611 -4380_77990,296,4380_48287,Haulbowline (NMCI),84312-00021-1,0,4380_7778208_2250204,4380_613 -4380_77948,294,4380_4829,Dublin,52063-00018-1,1,4380_7778208_1030105,4380_42 -4380_77990,297,4380_48295,Haulbowline (NMCI),84097-00008-1,0,4380_7778208_2250202,4380_609 -4380_77990,285,4380_48296,Haulbowline (NMCI),84091-00009-1,0,4380_7778208_2250202,4380_611 -4380_77990,288,4380_48297,Haulbowline (NMCI),84098-00011-1,0,4380_7778208_2250202,4380_611 -4380_77990,287,4380_48298,Haulbowline (NMCI),84093-00012-1,0,4380_7778208_2250202,4380_611 -4380_77990,286,4380_48299,Haulbowline (NMCI),84089-00010-1,0,4380_7778208_2250202,4380_611 -4380_77948,295,4380_4830,Dublin,52061-00019-1,1,4380_7778208_1030105,4380_42 -4380_77990,291,4380_48300,Haulbowline (NMCI),84100-00013-1,0,4380_7778208_2250202,4380_609 -4380_77990,289,4380_48301,Haulbowline (NMCI),84095-00014-1,0,4380_7778208_2250202,4380_611 -4380_77990,292,4380_48302,Haulbowline (NMCI),84090-00016-1,0,4380_7778208_2250202,4380_611 -4380_77990,290,4380_48303,Haulbowline (NMCI),84092-00015-1,0,4380_7778208_2250202,4380_611 -4380_77990,294,4380_48304,Haulbowline (NMCI),84094-00018-1,0,4380_7778208_2250202,4380_611 -4380_77990,295,4380_48305,Haulbowline (NMCI),84096-00019-1,0,4380_7778208_2250202,4380_611 -4380_77990,293,4380_48306,Haulbowline (NMCI),84099-00017-1,0,4380_7778208_2250202,4380_611 -4380_77990,296,4380_48307,Haulbowline (NMCI),84101-00021-1,0,4380_7778208_2250202,4380_609 -4380_77948,291,4380_4831,Dublin,1831-00013-1,1,4380_7778208_1030108,4380_42 -4380_77990,297,4380_48315,Haulbowline (NMCI),83984-00008-1,0,4380_7778208_2250201,4380_609 -4380_77990,285,4380_48316,Haulbowline (NMCI),83980-00009-1,0,4380_7778208_2250201,4380_611 -4380_77990,288,4380_48317,Haulbowline (NMCI),83982-00011-1,0,4380_7778208_2250201,4380_611 -4380_77990,287,4380_48318,Haulbowline (NMCI),83978-00012-1,0,4380_7778208_2250201,4380_611 -4380_77990,286,4380_48319,Haulbowline (NMCI),83974-00010-1,0,4380_7778208_2250201,4380_611 -4380_77948,296,4380_4832,Dublin,52246-00021-1,1,4380_7778208_1030108,4380_42 -4380_77990,291,4380_48320,Haulbowline (NMCI),83976-00013-1,0,4380_7778208_2250201,4380_609 -4380_77990,289,4380_48321,Haulbowline (NMCI),83972-00014-1,0,4380_7778208_2250201,4380_611 -4380_77990,292,4380_48322,Haulbowline (NMCI),83975-00016-1,0,4380_7778208_2250201,4380_611 -4380_77990,290,4380_48323,Haulbowline (NMCI),83981-00015-1,0,4380_7778208_2250201,4380_611 -4380_77990,294,4380_48324,Haulbowline (NMCI),83979-00018-1,0,4380_7778208_2250201,4380_611 -4380_77990,295,4380_48325,Haulbowline (NMCI),83973-00019-1,0,4380_7778208_2250201,4380_611 -4380_77990,293,4380_48326,Haulbowline (NMCI),83983-00017-1,0,4380_7778208_2250201,4380_611 -4380_77990,296,4380_48327,Haulbowline (NMCI),83977-00021-1,0,4380_7778208_2250201,4380_609 -4380_77948,285,4380_4833,Dublin,1916-00009-1,1,4380_7778208_1030110,4380_42 -4380_77990,297,4380_48335,Haulbowline (NMCI),84208-00008-1,0,4380_7778208_2250203,4380_609 -4380_77990,285,4380_48336,Haulbowline (NMCI),84206-00009-1,0,4380_7778208_2250203,4380_611 -4380_77990,288,4380_48337,Haulbowline (NMCI),84215-00011-1,0,4380_7778208_2250203,4380_611 -4380_77990,287,4380_48338,Haulbowline (NMCI),84217-00012-1,0,4380_7778208_2250203,4380_611 -4380_77990,286,4380_48339,Haulbowline (NMCI),84213-00010-1,0,4380_7778208_2250203,4380_611 -4380_77948,286,4380_4834,Dublin,1926-00010-1,1,4380_7778208_1030110,4380_42 -4380_77990,291,4380_48340,Haulbowline (NMCI),84211-00013-1,0,4380_7778208_2250203,4380_609 -4380_77990,289,4380_48341,Haulbowline (NMCI),84209-00014-1,0,4380_7778208_2250203,4380_611 -4380_77990,292,4380_48342,Haulbowline (NMCI),84214-00016-1,0,4380_7778208_2250203,4380_611 -4380_77990,290,4380_48343,Haulbowline (NMCI),84207-00015-1,0,4380_7778208_2250203,4380_611 -4380_77990,294,4380_48344,Haulbowline (NMCI),84218-00018-1,0,4380_7778208_2250203,4380_611 -4380_77990,295,4380_48345,Haulbowline (NMCI),84210-00019-1,0,4380_7778208_2250203,4380_611 -4380_77990,293,4380_48346,Haulbowline (NMCI),84216-00017-1,0,4380_7778208_2250203,4380_611 -4380_77990,296,4380_48347,Haulbowline (NMCI),84212-00021-1,0,4380_7778208_2250203,4380_609 -4380_77948,288,4380_4835,Dublin,1936-00011-1,1,4380_7778208_1030110,4380_42 -4380_77990,297,4380_48355,Kent Train Station,84010-00008-1,1,4380_7778208_2250202,4380_614 -4380_77990,285,4380_48356,Kent Train Station,84008-00009-1,1,4380_7778208_2250202,4380_616 -4380_77990,288,4380_48357,Kent Train Station,84006-00011-1,1,4380_7778208_2250202,4380_616 -4380_77990,287,4380_48358,Kent Train Station,84000-00012-1,1,4380_7778208_2250202,4380_616 -4380_77990,286,4380_48359,Kent Train Station,83998-00010-1,1,4380_7778208_2250202,4380_616 -4380_77948,287,4380_4836,Dublin,1946-00012-1,1,4380_7778208_1030110,4380_42 -4380_77990,291,4380_48360,Kent Train Station,84002-00013-1,1,4380_7778208_2250202,4380_618 -4380_77990,289,4380_48361,Kent Train Station,84004-00014-1,1,4380_7778208_2250202,4380_616 -4380_77990,292,4380_48362,Kent Train Station,83999-00016-1,1,4380_7778208_2250202,4380_616 -4380_77990,290,4380_48363,Kent Train Station,84009-00015-1,1,4380_7778208_2250202,4380_616 -4380_77990,294,4380_48364,Kent Train Station,84001-00018-1,1,4380_7778208_2250202,4380_616 -4380_77990,295,4380_48365,Kent Train Station,84005-00019-1,1,4380_7778208_2250202,4380_616 -4380_77990,293,4380_48366,Kent Train Station,84007-00017-1,1,4380_7778208_2250202,4380_616 -4380_77990,296,4380_48367,Kent Train Station,84003-00021-1,1,4380_7778208_2250202,4380_618 -4380_77948,289,4380_4837,Dublin,1906-00014-1,1,4380_7778208_1030110,4380_42 -4380_77990,297,4380_48375,Kent Train Station,83889-00008-1,1,4380_7778208_2250201,4380_614 -4380_77990,285,4380_48376,Kent Train Station,83881-00009-1,1,4380_7778208_2250201,4380_616 -4380_77990,288,4380_48377,Kent Train Station,83883-00011-1,1,4380_7778208_2250201,4380_616 -4380_77990,287,4380_48378,Kent Train Station,83890-00012-1,1,4380_7778208_2250201,4380_616 -4380_77990,286,4380_48379,Kent Train Station,83892-00010-1,1,4380_7778208_2250201,4380_616 -4380_77948,290,4380_4838,Dublin,52365-00015-1,1,4380_7778208_1030110,4380_42 -4380_77990,291,4380_48380,Kent Train Station,83887-00013-1,1,4380_7778208_2250201,4380_618 -4380_77990,289,4380_48381,Kent Train Station,83885-00014-1,1,4380_7778208_2250201,4380_616 -4380_77990,292,4380_48382,Kent Train Station,83893-00016-1,1,4380_7778208_2250201,4380_616 -4380_77990,290,4380_48383,Kent Train Station,83882-00015-1,1,4380_7778208_2250201,4380_616 -4380_77990,294,4380_48384,Kent Train Station,83891-00018-1,1,4380_7778208_2250201,4380_616 -4380_77990,295,4380_48385,Kent Train Station,83886-00019-1,1,4380_7778208_2250201,4380_616 -4380_77990,293,4380_48386,Kent Train Station,83884-00017-1,1,4380_7778208_2250201,4380_616 -4380_77990,296,4380_48387,Kent Train Station,83888-00021-1,1,4380_7778208_2250201,4380_618 -4380_77948,292,4380_4839,Dublin,52366-00016-1,1,4380_7778208_1030110,4380_42 -4380_77990,297,4380_48395,Kent Train Station,84125-00008-1,1,4380_7778208_2250203,4380_614 -4380_77990,285,4380_48396,Kent Train Station,84115-00009-1,1,4380_7778208_2250203,4380_616 -4380_77990,288,4380_48397,Kent Train Station,84119-00011-1,1,4380_7778208_2250203,4380_616 -4380_77990,287,4380_48398,Kent Train Station,84123-00012-1,1,4380_7778208_2250203,4380_616 -4380_77990,286,4380_48399,Kent Train Station,84117-00010-1,1,4380_7778208_2250203,4380_616 -4380_77948,293,4380_4840,Dublin,52363-00017-1,1,4380_7778208_1030110,4380_42 -4380_77990,291,4380_48400,Kent Train Station,84126-00013-1,1,4380_7778208_2250203,4380_618 -4380_77990,289,4380_48401,Kent Train Station,84121-00014-1,1,4380_7778208_2250203,4380_616 -4380_77990,292,4380_48402,Kent Train Station,84118-00016-1,1,4380_7778208_2250203,4380_616 -4380_77990,290,4380_48403,Kent Train Station,84116-00015-1,1,4380_7778208_2250203,4380_616 -4380_77990,294,4380_48404,Kent Train Station,84124-00018-1,1,4380_7778208_2250203,4380_616 -4380_77990,295,4380_48405,Kent Train Station,84122-00019-1,1,4380_7778208_2250203,4380_616 -4380_77990,293,4380_48406,Kent Train Station,84120-00017-1,1,4380_7778208_2250203,4380_616 -4380_77990,296,4380_48407,Kent Train Station,84127-00021-1,1,4380_7778208_2250203,4380_618 -4380_77948,294,4380_4841,Dublin,52362-00018-1,1,4380_7778208_1030110,4380_42 -4380_77990,297,4380_48415,Kent Train Station,84257-00008-1,1,4380_7778208_2250204,4380_614 -4380_77990,285,4380_48416,Kent Train Station,84245-00009-1,1,4380_7778208_2250204,4380_616 -4380_77990,288,4380_48417,Kent Train Station,84249-00011-1,1,4380_7778208_2250204,4380_616 -4380_77990,287,4380_48418,Kent Train Station,84247-00012-1,1,4380_7778208_2250204,4380_616 -4380_77990,286,4380_48419,Kent Train Station,84255-00010-1,1,4380_7778208_2250204,4380_616 -4380_77948,295,4380_4842,Dublin,52364-00019-1,1,4380_7778208_1030110,4380_42 -4380_77990,291,4380_48420,Kent Train Station,84253-00013-1,1,4380_7778208_2250204,4380_618 -4380_77990,289,4380_48421,Kent Train Station,84251-00014-1,1,4380_7778208_2250204,4380_616 -4380_77990,292,4380_48422,Kent Train Station,84256-00016-1,1,4380_7778208_2250204,4380_616 -4380_77990,290,4380_48423,Kent Train Station,84246-00015-1,1,4380_7778208_2250204,4380_616 -4380_77990,294,4380_48424,Kent Train Station,84248-00018-1,1,4380_7778208_2250204,4380_616 -4380_77990,295,4380_48425,Kent Train Station,84252-00019-1,1,4380_7778208_2250204,4380_616 -4380_77990,293,4380_48426,Kent Train Station,84250-00017-1,1,4380_7778208_2250204,4380_616 -4380_77990,296,4380_48427,Kent Train Station,84254-00021-1,1,4380_7778208_2250204,4380_618 -4380_77990,297,4380_48435,Kent Train Station,84030-00008-1,1,4380_7778208_2250202,4380_614 -4380_77990,285,4380_48436,Kent Train Station,84035-00009-1,1,4380_7778208_2250202,4380_616 -4380_77990,288,4380_48437,Kent Train Station,84024-00011-1,1,4380_7778208_2250202,4380_616 -4380_77990,287,4380_48438,Kent Train Station,84031-00012-1,1,4380_7778208_2250202,4380_616 -4380_77990,286,4380_48439,Kent Train Station,84033-00010-1,1,4380_7778208_2250202,4380_616 -4380_77990,291,4380_48440,Kent Train Station,84028-00013-1,1,4380_7778208_2250202,4380_618 -4380_77990,289,4380_48441,Kent Train Station,84026-00014-1,1,4380_7778208_2250202,4380_616 -4380_77990,292,4380_48442,Kent Train Station,84034-00016-1,1,4380_7778208_2250202,4380_616 -4380_77990,290,4380_48443,Kent Train Station,84036-00015-1,1,4380_7778208_2250202,4380_616 -4380_77990,294,4380_48444,Kent Train Station,84032-00018-1,1,4380_7778208_2250202,4380_616 -4380_77990,295,4380_48445,Kent Train Station,84027-00019-1,1,4380_7778208_2250202,4380_616 -4380_77990,293,4380_48446,Kent Train Station,84025-00017-1,1,4380_7778208_2250202,4380_616 -4380_77990,296,4380_48447,Kent Train Station,84029-00021-1,1,4380_7778208_2250202,4380_618 -4380_77990,297,4380_48455,Kent Train Station,83909-00008-1,1,4380_7778208_2250201,4380_614 -4380_77990,285,4380_48456,Kent Train Station,83907-00009-1,1,4380_7778208_2250201,4380_616 -4380_77990,288,4380_48457,Kent Train Station,83918-00011-1,1,4380_7778208_2250201,4380_616 -4380_77990,287,4380_48458,Kent Train Station,83910-00012-1,1,4380_7778208_2250201,4380_616 -4380_77990,286,4380_48459,Kent Train Station,83914-00010-1,1,4380_7778208_2250201,4380_616 -4380_77990,291,4380_48460,Kent Train Station,83916-00013-1,1,4380_7778208_2250201,4380_618 -4380_77990,289,4380_48461,Kent Train Station,83912-00014-1,1,4380_7778208_2250201,4380_616 -4380_77990,292,4380_48462,Kent Train Station,83915-00016-1,1,4380_7778208_2250201,4380_616 -4380_77990,290,4380_48463,Kent Train Station,83908-00015-1,1,4380_7778208_2250201,4380_616 -4380_77990,294,4380_48464,Kent Train Station,83911-00018-1,1,4380_7778208_2250201,4380_616 -4380_77990,295,4380_48465,Kent Train Station,83913-00019-1,1,4380_7778208_2250201,4380_616 -4380_77990,293,4380_48466,Kent Train Station,83919-00017-1,1,4380_7778208_2250201,4380_616 -4380_77990,296,4380_48467,Kent Train Station,83917-00021-1,1,4380_7778208_2250201,4380_618 -4380_77990,297,4380_48475,Kent Train Station,84147-00008-1,1,4380_7778208_2250203,4380_615 -4380_77990,285,4380_48476,Kent Train Station,84148-00009-1,1,4380_7778208_2250203,4380_617 -4380_77990,288,4380_48477,Kent Train Station,84143-00011-1,1,4380_7778208_2250203,4380_617 -4380_77990,287,4380_48478,Kent Train Station,84145-00012-1,1,4380_7778208_2250203,4380_617 -4380_77990,286,4380_48479,Kent Train Station,84150-00010-1,1,4380_7778208_2250203,4380_617 -4380_77990,291,4380_48480,Kent Train Station,84141-00013-1,1,4380_7778208_2250203,4380_619 -4380_77990,289,4380_48481,Kent Train Station,84152-00014-1,1,4380_7778208_2250203,4380_617 -4380_77990,292,4380_48482,Kent Train Station,84151-00016-1,1,4380_7778208_2250203,4380_617 -4380_77990,290,4380_48483,Kent Train Station,84149-00015-1,1,4380_7778208_2250203,4380_617 -4380_77990,294,4380_48484,Kent Train Station,84146-00018-1,1,4380_7778208_2250203,4380_617 -4380_77990,295,4380_48485,Kent Train Station,84153-00019-1,1,4380_7778208_2250203,4380_617 -4380_77990,293,4380_48486,Kent Train Station,84144-00017-1,1,4380_7778208_2250203,4380_617 -4380_77990,296,4380_48487,Kent Train Station,84142-00021-1,1,4380_7778208_2250203,4380_619 -4380_77990,297,4380_48495,Kent Train Station,84275-00008-1,1,4380_7778208_2250204,4380_615 -4380_77990,285,4380_48496,Kent Train Station,84280-00009-1,1,4380_7778208_2250204,4380_617 -4380_77990,288,4380_48497,Kent Train Station,84276-00011-1,1,4380_7778208_2250204,4380_617 -4380_77990,287,4380_48498,Kent Train Station,84278-00012-1,1,4380_7778208_2250204,4380_617 -4380_77990,286,4380_48499,Kent Train Station,84273-00010-1,1,4380_7778208_2250204,4380_617 -4380_77948,297,4380_4850,Dublin,1759-00008-1,1,4380_7778208_1030107,4380_42 -4380_77990,291,4380_48500,Kent Train Station,84282-00013-1,1,4380_7778208_2250204,4380_615 -4380_77990,289,4380_48501,Kent Train Station,84271-00014-1,1,4380_7778208_2250204,4380_617 -4380_77990,292,4380_48502,Kent Train Station,84274-00016-1,1,4380_7778208_2250204,4380_617 -4380_77990,290,4380_48503,Kent Train Station,84281-00015-1,1,4380_7778208_2250204,4380_617 -4380_77990,294,4380_48504,Kent Train Station,84279-00018-1,1,4380_7778208_2250204,4380_617 -4380_77990,295,4380_48505,Kent Train Station,84272-00019-1,1,4380_7778208_2250204,4380_617 -4380_77990,293,4380_48506,Kent Train Station,84277-00017-1,1,4380_7778208_2250204,4380_617 -4380_77990,296,4380_48507,Kent Train Station,84283-00021-1,1,4380_7778208_2250204,4380_615 -4380_77948,285,4380_4851,Dublin,1281-00009-1,1,4380_7778208_1030102,4380_42 -4380_77990,297,4380_48515,Kent Train Station,84060-00008-1,1,4380_7778208_2250202,4380_615 -4380_77990,285,4380_48516,Kent Train Station,84052-00009-1,1,4380_7778208_2250202,4380_617 -4380_77990,288,4380_48517,Kent Train Station,84050-00011-1,1,4380_7778208_2250202,4380_617 -4380_77990,287,4380_48518,Kent Train Station,84054-00012-1,1,4380_7778208_2250202,4380_617 -4380_77990,286,4380_48519,Kent Train Station,84056-00010-1,1,4380_7778208_2250202,4380_617 -4380_77948,286,4380_4852,Dublin,1291-00010-1,1,4380_7778208_1030102,4380_42 -4380_77990,291,4380_48520,Kent Train Station,84061-00013-1,1,4380_7778208_2250202,4380_615 -4380_77990,289,4380_48521,Kent Train Station,84058-00014-1,1,4380_7778208_2250202,4380_617 -4380_77990,292,4380_48522,Kent Train Station,84057-00016-1,1,4380_7778208_2250202,4380_617 -4380_77990,290,4380_48523,Kent Train Station,84053-00015-1,1,4380_7778208_2250202,4380_617 -4380_77990,294,4380_48524,Kent Train Station,84055-00018-1,1,4380_7778208_2250202,4380_617 -4380_77990,295,4380_48525,Kent Train Station,84059-00019-1,1,4380_7778208_2250202,4380_617 -4380_77990,293,4380_48526,Kent Train Station,84051-00017-1,1,4380_7778208_2250202,4380_617 -4380_77990,296,4380_48527,Kent Train Station,84062-00021-1,1,4380_7778208_2250202,4380_615 -4380_77948,288,4380_4853,Dublin,1301-00011-1,1,4380_7778208_1030102,4380_42 -4380_77990,297,4380_48535,Kent Train Station,83945-00008-1,1,4380_7778208_2250201,4380_615 -4380_77990,285,4380_48536,Kent Train Station,83941-00009-1,1,4380_7778208_2250201,4380_617 -4380_77990,288,4380_48537,Kent Train Station,83939-00011-1,1,4380_7778208_2250201,4380_617 -4380_77990,287,4380_48538,Kent Train Station,83933-00012-1,1,4380_7778208_2250201,4380_617 -4380_77990,286,4380_48539,Kent Train Station,83937-00010-1,1,4380_7778208_2250201,4380_617 -4380_77948,287,4380_4854,Dublin,1311-00012-1,1,4380_7778208_1030102,4380_42 -4380_77990,291,4380_48540,Kent Train Station,83943-00013-1,1,4380_7778208_2250201,4380_619 -4380_77990,289,4380_48541,Kent Train Station,83935-00014-1,1,4380_7778208_2250201,4380_617 -4380_77990,292,4380_48542,Kent Train Station,83938-00016-1,1,4380_7778208_2250201,4380_617 -4380_77990,290,4380_48543,Kent Train Station,83942-00015-1,1,4380_7778208_2250201,4380_617 -4380_77990,294,4380_48544,Kent Train Station,83934-00018-1,1,4380_7778208_2250201,4380_617 -4380_77990,295,4380_48545,Kent Train Station,83936-00019-1,1,4380_7778208_2250201,4380_617 -4380_77990,293,4380_48546,Kent Train Station,83940-00017-1,1,4380_7778208_2250201,4380_617 -4380_77990,296,4380_48547,Kent Train Station,83944-00021-1,1,4380_7778208_2250201,4380_619 -4380_77948,289,4380_4855,Dublin,1271-00014-1,1,4380_7778208_1030102,4380_42 -4380_77990,297,4380_48555,Kent Train Station,84171-00008-1,1,4380_7778208_2250203,4380_615 -4380_77990,285,4380_48556,Kent Train Station,84172-00009-1,1,4380_7778208_2250203,4380_617 -4380_77990,288,4380_48557,Kent Train Station,84178-00011-1,1,4380_7778208_2250203,4380_617 -4380_77990,287,4380_48558,Kent Train Station,84167-00012-1,1,4380_7778208_2250203,4380_617 -4380_77990,286,4380_48559,Kent Train Station,84174-00010-1,1,4380_7778208_2250203,4380_617 -4380_77948,290,4380_4856,Dublin,51884-00015-1,1,4380_7778208_1030102,4380_42 -4380_77990,291,4380_48560,Kent Train Station,84176-00013-1,1,4380_7778208_2250203,4380_619 -4380_77990,289,4380_48561,Kent Train Station,84169-00014-1,1,4380_7778208_2250203,4380_617 -4380_77990,292,4380_48562,Kent Train Station,84175-00016-1,1,4380_7778208_2250203,4380_617 -4380_77990,290,4380_48563,Kent Train Station,84173-00015-1,1,4380_7778208_2250203,4380_617 -4380_77990,294,4380_48564,Kent Train Station,84168-00018-1,1,4380_7778208_2250203,4380_617 -4380_77990,295,4380_48565,Kent Train Station,84170-00019-1,1,4380_7778208_2250203,4380_617 -4380_77990,293,4380_48566,Kent Train Station,84179-00017-1,1,4380_7778208_2250203,4380_617 -4380_77990,296,4380_48567,Kent Train Station,84177-00021-1,1,4380_7778208_2250203,4380_619 -4380_77948,292,4380_4857,Dublin,51881-00016-1,1,4380_7778208_1030102,4380_42 -4380_77990,297,4380_48575,Kent Train Station,84305-00008-1,1,4380_7778208_2250204,4380_615 -4380_77990,285,4380_48576,Kent Train Station,84306-00009-1,1,4380_7778208_2250204,4380_617 -4380_77990,288,4380_48577,Kent Train Station,84308-00011-1,1,4380_7778208_2250204,4380_617 -4380_77990,287,4380_48578,Kent Train Station,84303-00012-1,1,4380_7778208_2250204,4380_617 -4380_77990,286,4380_48579,Kent Train Station,84299-00010-1,1,4380_7778208_2250204,4380_617 -4380_77948,293,4380_4858,Dublin,51882-00017-1,1,4380_7778208_1030102,4380_42 -4380_77990,291,4380_48580,Kent Train Station,84301-00013-1,1,4380_7778208_2250204,4380_619 -4380_77990,289,4380_48581,Kent Train Station,84297-00014-1,1,4380_7778208_2250204,4380_617 -4380_77990,292,4380_48582,Kent Train Station,84300-00016-1,1,4380_7778208_2250204,4380_617 -4380_77990,290,4380_48583,Kent Train Station,84307-00015-1,1,4380_7778208_2250204,4380_617 -4380_77990,294,4380_48584,Kent Train Station,84304-00018-1,1,4380_7778208_2250204,4380_617 -4380_77990,295,4380_48585,Kent Train Station,84298-00019-1,1,4380_7778208_2250204,4380_617 -4380_77990,293,4380_48586,Kent Train Station,84309-00017-1,1,4380_7778208_2250204,4380_617 -4380_77990,296,4380_48587,Kent Train Station,84302-00021-1,1,4380_7778208_2250204,4380_619 -4380_77948,294,4380_4859,Dublin,51880-00018-1,1,4380_7778208_1030102,4380_42 -4380_77990,297,4380_48595,Kent Train Station,84084-00008-1,1,4380_7778208_2250202,4380_615 -4380_77990,285,4380_48596,Kent Train Station,84085-00009-1,1,4380_7778208_2250202,4380_617 -4380_77990,288,4380_48597,Kent Train Station,84076-00011-1,1,4380_7778208_2250202,4380_617 -4380_77990,287,4380_48598,Kent Train Station,84087-00012-1,1,4380_7778208_2250202,4380_617 -4380_77990,286,4380_48599,Kent Train Station,84082-00010-1,1,4380_7778208_2250202,4380_617 -4380_77948,295,4380_4860,Dublin,51883-00019-1,1,4380_7778208_1030102,4380_42 -4380_77990,291,4380_48600,Kent Train Station,84078-00013-1,1,4380_7778208_2250202,4380_619 -4380_77990,289,4380_48601,Kent Train Station,84080-00014-1,1,4380_7778208_2250202,4380_617 -4380_77990,292,4380_48602,Kent Train Station,84083-00016-1,1,4380_7778208_2250202,4380_617 -4380_77990,290,4380_48603,Kent Train Station,84086-00015-1,1,4380_7778208_2250202,4380_617 -4380_77990,294,4380_48604,Kent Train Station,84088-00018-1,1,4380_7778208_2250202,4380_617 -4380_77990,295,4380_48605,Kent Train Station,84081-00019-1,1,4380_7778208_2250202,4380_617 -4380_77990,293,4380_48606,Kent Train Station,84077-00017-1,1,4380_7778208_2250202,4380_617 -4380_77990,296,4380_48607,Kent Train Station,84079-00021-1,1,4380_7778208_2250202,4380_619 -4380_77990,297,4380_48615,Kent Train Station,83965-00008-1,1,4380_7778208_2250201,4380_615 -4380_77990,285,4380_48616,Kent Train Station,83959-00009-1,1,4380_7778208_2250201,4380_617 -4380_77990,288,4380_48617,Kent Train Station,83968-00011-1,1,4380_7778208_2250201,4380_617 -4380_77990,287,4380_48618,Kent Train Station,83970-00012-1,1,4380_7778208_2250201,4380_617 -4380_77990,286,4380_48619,Kent Train Station,83961-00010-1,1,4380_7778208_2250201,4380_617 -4380_77990,291,4380_48620,Kent Train Station,83963-00013-1,1,4380_7778208_2250201,4380_615 -4380_77990,289,4380_48621,Kent Train Station,83966-00014-1,1,4380_7778208_2250201,4380_617 -4380_77990,292,4380_48622,Kent Train Station,83962-00016-1,1,4380_7778208_2250201,4380_617 -4380_77990,290,4380_48623,Kent Train Station,83960-00015-1,1,4380_7778208_2250201,4380_617 -4380_77990,294,4380_48624,Kent Train Station,83971-00018-1,1,4380_7778208_2250201,4380_617 -4380_77990,295,4380_48625,Kent Train Station,83967-00019-1,1,4380_7778208_2250201,4380_617 -4380_77990,293,4380_48626,Kent Train Station,83969-00017-1,1,4380_7778208_2250201,4380_617 -4380_77990,296,4380_48627,Kent Train Station,83964-00021-1,1,4380_7778208_2250201,4380_615 -4380_77990,297,4380_48635,Kent Train Station,84197-00008-1,1,4380_7778208_2250203,4380_615 -4380_77990,285,4380_48636,Kent Train Station,84193-00009-1,1,4380_7778208_2250203,4380_617 -4380_77990,288,4380_48637,Kent Train Station,84200-00011-1,1,4380_7778208_2250203,4380_617 -4380_77990,287,4380_48638,Kent Train Station,84204-00012-1,1,4380_7778208_2250203,4380_617 -4380_77990,286,4380_48639,Kent Train Station,84198-00010-1,1,4380_7778208_2250203,4380_617 -4380_77990,291,4380_48640,Kent Train Station,84195-00013-1,1,4380_7778208_2250203,4380_615 -4380_77990,289,4380_48641,Kent Train Station,84202-00014-1,1,4380_7778208_2250203,4380_617 -4380_77990,292,4380_48642,Kent Train Station,84199-00016-1,1,4380_7778208_2250203,4380_617 -4380_77990,290,4380_48643,Kent Train Station,84194-00015-1,1,4380_7778208_2250203,4380_617 -4380_77990,294,4380_48644,Kent Train Station,84205-00018-1,1,4380_7778208_2250203,4380_617 -4380_77990,295,4380_48645,Kent Train Station,84203-00019-1,1,4380_7778208_2250203,4380_617 -4380_77990,293,4380_48646,Kent Train Station,84201-00017-1,1,4380_7778208_2250203,4380_617 -4380_77990,296,4380_48647,Kent Train Station,84196-00021-1,1,4380_7778208_2250203,4380_615 -4380_77990,297,4380_48655,Kent Train Station,84335-00008-1,1,4380_7778208_2250204,4380_615 -4380_77990,285,4380_48656,Kent Train Station,84329-00009-1,1,4380_7778208_2250204,4380_617 -4380_77990,288,4380_48657,Kent Train Station,84323-00011-1,1,4380_7778208_2250204,4380_617 -4380_77990,287,4380_48658,Kent Train Station,84325-00012-1,1,4380_7778208_2250204,4380_617 -4380_77990,286,4380_48659,Kent Train Station,84333-00010-1,1,4380_7778208_2250204,4380_617 -4380_77948,291,4380_4866,Dublin,1887-00013-1,1,4380_7778208_1030109,4380_42 -4380_77990,291,4380_48660,Kent Train Station,84327-00013-1,1,4380_7778208_2250204,4380_615 -4380_77990,289,4380_48661,Kent Train Station,84331-00014-1,1,4380_7778208_2250204,4380_617 -4380_77990,292,4380_48662,Kent Train Station,84334-00016-1,1,4380_7778208_2250204,4380_617 -4380_77990,290,4380_48663,Kent Train Station,84330-00015-1,1,4380_7778208_2250204,4380_617 -4380_77990,294,4380_48664,Kent Train Station,84326-00018-1,1,4380_7778208_2250204,4380_617 -4380_77990,295,4380_48665,Kent Train Station,84332-00019-1,1,4380_7778208_2250204,4380_617 -4380_77990,293,4380_48666,Kent Train Station,84324-00017-1,1,4380_7778208_2250204,4380_617 -4380_77990,296,4380_48667,Kent Train Station,84328-00021-1,1,4380_7778208_2250204,4380_615 -4380_77948,296,4380_4867,Dublin,52302-00021-1,1,4380_7778208_1030109,4380_42 -4380_77990,297,4380_48675,Kent Train Station,83991-00008-1,1,4380_7778208_2250201,4380_615 -4380_77990,285,4380_48676,Kent Train Station,83989-00009-1,1,4380_7778208_2250201,4380_617 -4380_77990,288,4380_48677,Kent Train Station,83987-00011-1,1,4380_7778208_2250201,4380_617 -4380_77990,287,4380_48678,Kent Train Station,83992-00012-1,1,4380_7778208_2250201,4380_617 -4380_77990,286,4380_48679,Kent Train Station,83994-00010-1,1,4380_7778208_2250201,4380_617 -4380_77990,291,4380_48680,Kent Train Station,83996-00013-1,1,4380_7778208_2250201,4380_615 -4380_77990,289,4380_48681,Kent Train Station,83985-00014-1,1,4380_7778208_2250201,4380_617 -4380_77990,292,4380_48682,Kent Train Station,83995-00016-1,1,4380_7778208_2250201,4380_617 -4380_77990,290,4380_48683,Kent Train Station,83990-00015-1,1,4380_7778208_2250201,4380_617 -4380_77990,294,4380_48684,Kent Train Station,83993-00018-1,1,4380_7778208_2250201,4380_617 -4380_77990,295,4380_48685,Kent Train Station,83986-00019-1,1,4380_7778208_2250201,4380_617 -4380_77990,293,4380_48686,Kent Train Station,83988-00017-1,1,4380_7778208_2250201,4380_617 -4380_77990,296,4380_48687,Kent Train Station,83997-00021-1,1,4380_7778208_2250201,4380_615 -4380_77990,297,4380_48695,Kent Train Station,84231-00008-1,1,4380_7778208_2250203,4380_615 -4380_77990,285,4380_48696,Kent Train Station,84227-00009-1,1,4380_7778208_2250203,4380_617 -4380_77990,288,4380_48697,Kent Train Station,84221-00011-1,1,4380_7778208_2250203,4380_617 -4380_77990,287,4380_48698,Kent Train Station,84225-00012-1,1,4380_7778208_2250203,4380_617 -4380_77990,286,4380_48699,Kent Train Station,84229-00010-1,1,4380_7778208_2250203,4380_617 -4380_77948,297,4380_4870,Dublin,1339-00008-1,1,4380_7778208_1030102,4380_42 -4380_77990,291,4380_48700,Kent Train Station,84223-00013-1,1,4380_7778208_2250203,4380_615 -4380_77990,289,4380_48701,Kent Train Station,84219-00014-1,1,4380_7778208_2250203,4380_617 -4380_77990,292,4380_48702,Kent Train Station,84230-00016-1,1,4380_7778208_2250203,4380_617 -4380_77990,290,4380_48703,Kent Train Station,84228-00015-1,1,4380_7778208_2250203,4380_617 -4380_77990,294,4380_48704,Kent Train Station,84226-00018-1,1,4380_7778208_2250203,4380_617 -4380_77990,295,4380_48705,Kent Train Station,84220-00019-1,1,4380_7778208_2250203,4380_617 -4380_77990,293,4380_48706,Kent Train Station,84222-00017-1,1,4380_7778208_2250203,4380_617 -4380_77990,296,4380_48707,Kent Train Station,84224-00021-1,1,4380_7778208_2250203,4380_615 -4380_77948,285,4380_4871,Dublin,1471-00009-1,1,4380_7778208_1030104,4380_42 -4380_78137,285,4380_48714,Haulbowline (NMCI),84372-00009-1,0,4380_7778208_2250205,4380_620 -4380_78137,288,4380_48715,Haulbowline (NMCI),84362-00011-1,0,4380_7778208_2250205,4380_620 -4380_78137,287,4380_48716,Haulbowline (NMCI),84366-00012-1,0,4380_7778208_2250205,4380_620 -4380_78137,286,4380_48717,Haulbowline (NMCI),84364-00010-1,0,4380_7778208_2250205,4380_620 -4380_78137,291,4380_48718,Haulbowline (NMCI),84370-00013-1,0,4380_7778208_2250205,4380_622 -4380_78137,289,4380_48719,Haulbowline (NMCI),84368-00014-1,0,4380_7778208_2250205,4380_620 -4380_77948,286,4380_4872,Dublin,1483-00010-1,1,4380_7778208_1030104,4380_42 -4380_78137,292,4380_48720,Haulbowline (NMCI),84365-00016-1,0,4380_7778208_2250205,4380_620 -4380_78137,290,4380_48721,Haulbowline (NMCI),84373-00015-1,0,4380_7778208_2250205,4380_620 -4380_78137,294,4380_48722,Haulbowline (NMCI),84367-00018-1,0,4380_7778208_2250205,4380_620 -4380_78137,295,4380_48723,Haulbowline (NMCI),84369-00019-1,0,4380_7778208_2250205,4380_620 -4380_78137,293,4380_48724,Haulbowline (NMCI),84363-00017-1,0,4380_7778208_2250205,4380_620 -4380_78137,296,4380_48725,Haulbowline (NMCI),84371-00021-1,0,4380_7778208_2250205,4380_622 -4380_77948,288,4380_4873,Dublin,1495-00011-1,1,4380_7778208_1030104,4380_42 -4380_78137,285,4380_48732,Haulbowline (NMCI),84388-00009-1,0,4380_7778208_2250205,4380_620 -4380_78137,288,4380_48733,Haulbowline (NMCI),84392-00011-1,0,4380_7778208_2250205,4380_620 -4380_78137,287,4380_48734,Haulbowline (NMCI),84396-00012-1,0,4380_7778208_2250205,4380_620 -4380_78137,286,4380_48735,Haulbowline (NMCI),84390-00010-1,0,4380_7778208_2250205,4380_620 -4380_78137,291,4380_48736,Haulbowline (NMCI),84386-00013-1,0,4380_7778208_2250205,4380_622 -4380_78137,289,4380_48737,Haulbowline (NMCI),84394-00014-1,0,4380_7778208_2250205,4380_620 -4380_78137,292,4380_48738,Haulbowline (NMCI),84391-00016-1,0,4380_7778208_2250205,4380_620 -4380_78137,290,4380_48739,Haulbowline (NMCI),84389-00015-1,0,4380_7778208_2250205,4380_620 -4380_77948,287,4380_4874,Dublin,1507-00012-1,1,4380_7778208_1030104,4380_42 -4380_78137,294,4380_48740,Haulbowline (NMCI),84397-00018-1,0,4380_7778208_2250205,4380_620 -4380_78137,295,4380_48741,Haulbowline (NMCI),84395-00019-1,0,4380_7778208_2250205,4380_620 -4380_78137,293,4380_48742,Haulbowline (NMCI),84393-00017-1,0,4380_7778208_2250205,4380_620 -4380_78137,296,4380_48743,Haulbowline (NMCI),84387-00021-1,0,4380_7778208_2250205,4380_622 -4380_77948,289,4380_4875,Dublin,1459-00014-1,1,4380_7778208_1030104,4380_42 -4380_78137,285,4380_48750,Haulbowline (NMCI),84416-00009-1,0,4380_7778208_2250205,4380_620 -4380_78137,288,4380_48751,Haulbowline (NMCI),84420-00011-1,0,4380_7778208_2250205,4380_620 -4380_78137,287,4380_48752,Haulbowline (NMCI),84414-00012-1,0,4380_7778208_2250205,4380_620 -4380_78137,286,4380_48753,Haulbowline (NMCI),84418-00010-1,0,4380_7778208_2250205,4380_620 -4380_78137,291,4380_48754,Haulbowline (NMCI),84410-00013-1,0,4380_7778208_2250205,4380_622 -4380_78137,289,4380_48755,Haulbowline (NMCI),84412-00014-1,0,4380_7778208_2250205,4380_620 -4380_78137,292,4380_48756,Haulbowline (NMCI),84419-00016-1,0,4380_7778208_2250205,4380_620 -4380_78137,290,4380_48757,Haulbowline (NMCI),84417-00015-1,0,4380_7778208_2250205,4380_620 -4380_78137,294,4380_48758,Haulbowline (NMCI),84415-00018-1,0,4380_7778208_2250205,4380_620 -4380_78137,295,4380_48759,Haulbowline (NMCI),84413-00019-1,0,4380_7778208_2250205,4380_620 -4380_77948,290,4380_4876,Dublin,52003-00015-1,1,4380_7778208_1030104,4380_42 -4380_78137,293,4380_48760,Haulbowline (NMCI),84421-00017-1,0,4380_7778208_2250205,4380_620 -4380_78137,296,4380_48761,Haulbowline (NMCI),84411-00021-1,0,4380_7778208_2250205,4380_622 -4380_78137,285,4380_48768,Haulbowline (NMCI),84444-00009-1,0,4380_7778208_2250205,4380_620 -4380_78137,288,4380_48769,Haulbowline (NMCI),84442-00011-1,0,4380_7778208_2250205,4380_620 -4380_77948,292,4380_4877,Dublin,52002-00016-1,1,4380_7778208_1030104,4380_42 -4380_78137,287,4380_48770,Haulbowline (NMCI),84438-00012-1,0,4380_7778208_2250205,4380_620 -4380_78137,286,4380_48771,Haulbowline (NMCI),84436-00010-1,0,4380_7778208_2250205,4380_620 -4380_78137,291,4380_48772,Haulbowline (NMCI),84434-00013-1,0,4380_7778208_2250205,4380_622 -4380_78137,289,4380_48773,Haulbowline (NMCI),84440-00014-1,0,4380_7778208_2250205,4380_620 -4380_78137,292,4380_48774,Haulbowline (NMCI),84437-00016-1,0,4380_7778208_2250205,4380_620 -4380_78137,290,4380_48775,Haulbowline (NMCI),84445-00015-1,0,4380_7778208_2250205,4380_620 -4380_78137,294,4380_48776,Haulbowline (NMCI),84439-00018-1,0,4380_7778208_2250205,4380_620 -4380_78137,295,4380_48777,Haulbowline (NMCI),84441-00019-1,0,4380_7778208_2250205,4380_620 -4380_78137,293,4380_48778,Haulbowline (NMCI),84443-00017-1,0,4380_7778208_2250205,4380_620 -4380_78137,296,4380_48779,Haulbowline (NMCI),84435-00021-1,0,4380_7778208_2250205,4380_622 -4380_77948,293,4380_4878,Dublin,52005-00017-1,1,4380_7778208_1030104,4380_42 -4380_78137,285,4380_48786,Haulbowline (NMCI),84464-00009-1,0,4380_7778208_2250205,4380_620 -4380_78137,288,4380_48787,Haulbowline (NMCI),84468-00011-1,0,4380_7778208_2250205,4380_620 -4380_78137,287,4380_48788,Haulbowline (NMCI),84466-00012-1,0,4380_7778208_2250205,4380_620 -4380_78137,286,4380_48789,Haulbowline (NMCI),84458-00010-1,0,4380_7778208_2250205,4380_620 -4380_77948,294,4380_4879,Dublin,52001-00018-1,1,4380_7778208_1030104,4380_42 -4380_78137,291,4380_48790,Haulbowline (NMCI),84462-00013-1,0,4380_7778208_2250205,4380_622 -4380_78137,289,4380_48791,Haulbowline (NMCI),84460-00014-1,0,4380_7778208_2250205,4380_620 -4380_78137,292,4380_48792,Haulbowline (NMCI),84459-00016-1,0,4380_7778208_2250205,4380_620 -4380_78137,290,4380_48793,Haulbowline (NMCI),84465-00015-1,0,4380_7778208_2250205,4380_620 -4380_78137,294,4380_48794,Haulbowline (NMCI),84467-00018-1,0,4380_7778208_2250205,4380_620 -4380_78137,295,4380_48795,Haulbowline (NMCI),84461-00019-1,0,4380_7778208_2250205,4380_620 -4380_78137,293,4380_48796,Haulbowline (NMCI),84469-00017-1,0,4380_7778208_2250205,4380_620 -4380_78137,296,4380_48797,Haulbowline (NMCI),84463-00021-1,0,4380_7778208_2250205,4380_622 -4380_77948,295,4380_4880,Dublin,52004-00019-1,1,4380_7778208_1030104,4380_42 -4380_78137,285,4380_48804,Haulbowline (NMCI),84482-00009-1,0,4380_7778208_2250205,4380_620 -4380_78137,288,4380_48805,Haulbowline (NMCI),84492-00011-1,0,4380_7778208_2250205,4380_620 -4380_78137,287,4380_48806,Haulbowline (NMCI),84484-00012-1,0,4380_7778208_2250205,4380_620 -4380_78137,286,4380_48807,Haulbowline (NMCI),84488-00010-1,0,4380_7778208_2250205,4380_620 -4380_78137,291,4380_48808,Haulbowline (NMCI),84486-00013-1,0,4380_7778208_2250205,4380_622 -4380_78137,289,4380_48809,Haulbowline (NMCI),84490-00014-1,0,4380_7778208_2250205,4380_620 -4380_78137,292,4380_48810,Haulbowline (NMCI),84489-00016-1,0,4380_7778208_2250205,4380_620 -4380_78137,290,4380_48811,Haulbowline (NMCI),84483-00015-1,0,4380_7778208_2250205,4380_620 -4380_78137,294,4380_48812,Haulbowline (NMCI),84485-00018-1,0,4380_7778208_2250205,4380_620 -4380_78137,295,4380_48813,Haulbowline (NMCI),84491-00019-1,0,4380_7778208_2250205,4380_620 -4380_78137,293,4380_48814,Haulbowline (NMCI),84493-00017-1,0,4380_7778208_2250205,4380_620 -4380_78137,296,4380_48815,Haulbowline (NMCI),84487-00021-1,0,4380_7778208_2250205,4380_622 -4380_78137,285,4380_48822,Haulbowline (NMCI),84508-00009-1,0,4380_7778208_2250205,4380_621 -4380_78137,288,4380_48823,Haulbowline (NMCI),84506-00011-1,0,4380_7778208_2250205,4380_621 -4380_78137,287,4380_48824,Haulbowline (NMCI),84516-00012-1,0,4380_7778208_2250205,4380_621 -4380_78137,286,4380_48825,Haulbowline (NMCI),84514-00010-1,0,4380_7778208_2250205,4380_621 -4380_78137,291,4380_48826,Haulbowline (NMCI),84510-00013-1,0,4380_7778208_2250205,4380_623 -4380_78137,289,4380_48827,Haulbowline (NMCI),84512-00014-1,0,4380_7778208_2250205,4380_621 -4380_78137,292,4380_48828,Haulbowline (NMCI),84515-00016-1,0,4380_7778208_2250205,4380_621 -4380_78137,290,4380_48829,Haulbowline (NMCI),84509-00015-1,0,4380_7778208_2250205,4380_621 -4380_78137,294,4380_48830,Haulbowline (NMCI),84517-00018-1,0,4380_7778208_2250205,4380_621 -4380_78137,295,4380_48831,Haulbowline (NMCI),84513-00019-1,0,4380_7778208_2250205,4380_621 -4380_78137,293,4380_48832,Haulbowline (NMCI),84507-00017-1,0,4380_7778208_2250205,4380_621 -4380_78137,296,4380_48833,Haulbowline (NMCI),84511-00021-1,0,4380_7778208_2250205,4380_623 -4380_78137,285,4380_48840,Haulbowline (NMCI),84540-00009-1,0,4380_7778208_2250205,4380_621 -4380_78137,288,4380_48841,Haulbowline (NMCI),84532-00011-1,0,4380_7778208_2250205,4380_621 -4380_78137,287,4380_48842,Haulbowline (NMCI),84530-00012-1,0,4380_7778208_2250205,4380_621 -4380_78137,286,4380_48843,Haulbowline (NMCI),84536-00010-1,0,4380_7778208_2250205,4380_621 -4380_78137,291,4380_48844,Haulbowline (NMCI),84538-00013-1,0,4380_7778208_2250205,4380_623 -4380_78137,289,4380_48845,Haulbowline (NMCI),84534-00014-1,0,4380_7778208_2250205,4380_621 -4380_78137,292,4380_48846,Haulbowline (NMCI),84537-00016-1,0,4380_7778208_2250205,4380_621 -4380_78137,290,4380_48847,Haulbowline (NMCI),84541-00015-1,0,4380_7778208_2250205,4380_621 -4380_78137,294,4380_48848,Haulbowline (NMCI),84531-00018-1,0,4380_7778208_2250205,4380_621 -4380_78137,295,4380_48849,Haulbowline (NMCI),84535-00019-1,0,4380_7778208_2250205,4380_621 -4380_78137,293,4380_48850,Haulbowline (NMCI),84533-00017-1,0,4380_7778208_2250205,4380_621 -4380_78137,296,4380_48851,Haulbowline (NMCI),84539-00021-1,0,4380_7778208_2250205,4380_623 -4380_78137,285,4380_48858,Haulbowline (NMCI),84562-00009-1,0,4380_7778208_2250205,4380_621 -4380_78137,288,4380_48859,Haulbowline (NMCI),84556-00011-1,0,4380_7778208_2250205,4380_621 -4380_77948,291,4380_4886,Dublin,1673-00013-1,1,4380_7778208_1030106,4380_42 -4380_78137,287,4380_48860,Haulbowline (NMCI),84554-00012-1,0,4380_7778208_2250205,4380_621 -4380_78137,286,4380_48861,Haulbowline (NMCI),84560-00010-1,0,4380_7778208_2250205,4380_621 -4380_78137,291,4380_48862,Haulbowline (NMCI),84564-00013-1,0,4380_7778208_2250205,4380_623 -4380_78137,289,4380_48863,Haulbowline (NMCI),84558-00014-1,0,4380_7778208_2250205,4380_621 -4380_78137,292,4380_48864,Haulbowline (NMCI),84561-00016-1,0,4380_7778208_2250205,4380_621 -4380_78137,290,4380_48865,Haulbowline (NMCI),84563-00015-1,0,4380_7778208_2250205,4380_621 -4380_78137,294,4380_48866,Haulbowline (NMCI),84555-00018-1,0,4380_7778208_2250205,4380_621 -4380_78137,295,4380_48867,Haulbowline (NMCI),84559-00019-1,0,4380_7778208_2250205,4380_621 -4380_78137,293,4380_48868,Haulbowline (NMCI),84557-00017-1,0,4380_7778208_2250205,4380_621 -4380_78137,296,4380_48869,Haulbowline (NMCI),84565-00021-1,0,4380_7778208_2250205,4380_623 -4380_77948,296,4380_4887,Dublin,52117-00021-1,1,4380_7778208_1030106,4380_42 -4380_78137,285,4380_48876,Haulbowline (NMCI),84584-00009-1,0,4380_7778208_2250205,4380_621 -4380_78137,288,4380_48877,Haulbowline (NMCI),84586-00011-1,0,4380_7778208_2250205,4380_621 -4380_78137,287,4380_48878,Haulbowline (NMCI),84578-00012-1,0,4380_7778208_2250205,4380_621 -4380_78137,286,4380_48879,Haulbowline (NMCI),84580-00010-1,0,4380_7778208_2250205,4380_621 -4380_77948,285,4380_4888,Dublin,1705-00009-1,1,4380_7778208_1030107,4380_42 -4380_78137,291,4380_48880,Haulbowline (NMCI),84588-00013-1,0,4380_7778208_2250205,4380_623 -4380_78137,289,4380_48881,Haulbowline (NMCI),84582-00014-1,0,4380_7778208_2250205,4380_621 -4380_78137,292,4380_48882,Haulbowline (NMCI),84581-00016-1,0,4380_7778208_2250205,4380_621 -4380_78137,290,4380_48883,Haulbowline (NMCI),84585-00015-1,0,4380_7778208_2250205,4380_621 -4380_78137,294,4380_48884,Haulbowline (NMCI),84579-00018-1,0,4380_7778208_2250205,4380_621 -4380_78137,295,4380_48885,Haulbowline (NMCI),84583-00019-1,0,4380_7778208_2250205,4380_621 -4380_78137,293,4380_48886,Haulbowline (NMCI),84587-00017-1,0,4380_7778208_2250205,4380_621 -4380_78137,296,4380_48887,Haulbowline (NMCI),84589-00021-1,0,4380_7778208_2250205,4380_623 -4380_77948,286,4380_4889,Dublin,1717-00010-1,1,4380_7778208_1030107,4380_42 -4380_78137,285,4380_48894,Haulbowline (NMCI),84604-00009-1,0,4380_7778208_2250205,4380_621 -4380_78137,288,4380_48895,Haulbowline (NMCI),84610-00011-1,0,4380_7778208_2250205,4380_621 -4380_78137,287,4380_48896,Haulbowline (NMCI),84602-00012-1,0,4380_7778208_2250205,4380_621 -4380_78137,286,4380_48897,Haulbowline (NMCI),84608-00010-1,0,4380_7778208_2250205,4380_621 -4380_78137,291,4380_48898,Haulbowline (NMCI),84612-00013-1,0,4380_7778208_2250205,4380_623 -4380_78137,289,4380_48899,Haulbowline (NMCI),84606-00014-1,0,4380_7778208_2250205,4380_621 -4380_77948,288,4380_4890,Dublin,1729-00011-1,1,4380_7778208_1030107,4380_42 -4380_78137,292,4380_48900,Haulbowline (NMCI),84609-00016-1,0,4380_7778208_2250205,4380_621 -4380_78137,290,4380_48901,Haulbowline (NMCI),84605-00015-1,0,4380_7778208_2250205,4380_621 -4380_78137,294,4380_48902,Haulbowline (NMCI),84603-00018-1,0,4380_7778208_2250205,4380_621 -4380_78137,295,4380_48903,Haulbowline (NMCI),84607-00019-1,0,4380_7778208_2250205,4380_621 -4380_78137,293,4380_48904,Haulbowline (NMCI),84611-00017-1,0,4380_7778208_2250205,4380_621 -4380_78137,296,4380_48905,Haulbowline (NMCI),84613-00021-1,0,4380_7778208_2250205,4380_623 -4380_77948,287,4380_4891,Dublin,1741-00012-1,1,4380_7778208_1030107,4380_42 -4380_78137,285,4380_48912,Haulbowline (NMCI),84626-00009-1,0,4380_7778208_2250205,4380_621 -4380_78137,288,4380_48913,Haulbowline (NMCI),84628-00011-1,0,4380_7778208_2250205,4380_621 -4380_78137,287,4380_48914,Haulbowline (NMCI),84632-00012-1,0,4380_7778208_2250205,4380_621 -4380_78137,286,4380_48915,Haulbowline (NMCI),84634-00010-1,0,4380_7778208_2250205,4380_621 -4380_78137,291,4380_48916,Haulbowline (NMCI),84630-00013-1,0,4380_7778208_2250205,4380_623 -4380_78137,289,4380_48917,Haulbowline (NMCI),84636-00014-1,0,4380_7778208_2250205,4380_621 -4380_78137,292,4380_48918,Haulbowline (NMCI),84635-00016-1,0,4380_7778208_2250205,4380_621 -4380_78137,290,4380_48919,Haulbowline (NMCI),84627-00015-1,0,4380_7778208_2250205,4380_621 -4380_77948,289,4380_4892,Dublin,1693-00014-1,1,4380_7778208_1030107,4380_42 -4380_78137,294,4380_48920,Haulbowline (NMCI),84633-00018-1,0,4380_7778208_2250205,4380_621 -4380_78137,295,4380_48921,Haulbowline (NMCI),84637-00019-1,0,4380_7778208_2250205,4380_621 -4380_78137,293,4380_48922,Haulbowline (NMCI),84629-00017-1,0,4380_7778208_2250205,4380_621 -4380_78137,296,4380_48923,Haulbowline (NMCI),84631-00021-1,0,4380_7778208_2250205,4380_623 -4380_77948,290,4380_4893,Dublin,52186-00015-1,1,4380_7778208_1030107,4380_42 -4380_78137,285,4380_48930,Haulbowline (NMCI),84654-00009-1,0,4380_7778208_2250205,4380_621 -4380_78137,288,4380_48931,Haulbowline (NMCI),84650-00011-1,0,4380_7778208_2250205,4380_621 -4380_78137,287,4380_48932,Haulbowline (NMCI),84658-00012-1,0,4380_7778208_2250205,4380_621 -4380_78137,286,4380_48933,Haulbowline (NMCI),84660-00010-1,0,4380_7778208_2250205,4380_621 -4380_78137,291,4380_48934,Haulbowline (NMCI),84652-00013-1,0,4380_7778208_2250205,4380_623 -4380_78137,289,4380_48935,Haulbowline (NMCI),84656-00014-1,0,4380_7778208_2250205,4380_621 -4380_78137,292,4380_48936,Haulbowline (NMCI),84661-00016-1,0,4380_7778208_2250205,4380_621 -4380_78137,290,4380_48937,Haulbowline (NMCI),84655-00015-1,0,4380_7778208_2250205,4380_621 -4380_78137,294,4380_48938,Haulbowline (NMCI),84659-00018-1,0,4380_7778208_2250205,4380_621 -4380_78137,295,4380_48939,Haulbowline (NMCI),84657-00019-1,0,4380_7778208_2250205,4380_621 -4380_77948,292,4380_4894,Dublin,52189-00016-1,1,4380_7778208_1030107,4380_42 -4380_78137,293,4380_48940,Haulbowline (NMCI),84651-00017-1,0,4380_7778208_2250205,4380_621 -4380_78137,296,4380_48941,Haulbowline (NMCI),84653-00021-1,0,4380_7778208_2250205,4380_623 -4380_78137,285,4380_48948,Carrigaline (HSE),84378-00009-1,1,4380_7778208_2250205,4380_624 -4380_78137,288,4380_48949,Carrigaline (HSE),84384-00011-1,1,4380_7778208_2250205,4380_624 -4380_77948,293,4380_4895,Dublin,52188-00017-1,1,4380_7778208_1030107,4380_42 -4380_78137,287,4380_48950,Carrigaline (HSE),84376-00012-1,1,4380_7778208_2250205,4380_624 -4380_78137,286,4380_48951,Carrigaline (HSE),84374-00010-1,1,4380_7778208_2250205,4380_624 -4380_78137,291,4380_48952,Carrigaline (HSE),84382-00013-1,1,4380_7778208_2250205,4380_626 -4380_78137,289,4380_48953,Carrigaline (HSE),84380-00014-1,1,4380_7778208_2250205,4380_624 -4380_78137,292,4380_48954,Carrigaline (HSE),84375-00016-1,1,4380_7778208_2250205,4380_624 -4380_78137,290,4380_48955,Carrigaline (HSE),84379-00015-1,1,4380_7778208_2250205,4380_624 -4380_78137,294,4380_48956,Carrigaline (HSE),84377-00018-1,1,4380_7778208_2250205,4380_624 -4380_78137,295,4380_48957,Carrigaline (HSE),84381-00019-1,1,4380_7778208_2250205,4380_624 -4380_78137,293,4380_48958,Carrigaline (HSE),84385-00017-1,1,4380_7778208_2250205,4380_624 -4380_78137,296,4380_48959,Carrigaline (HSE),84383-00021-1,1,4380_7778208_2250205,4380_626 -4380_77948,294,4380_4896,Dublin,52187-00018-1,1,4380_7778208_1030107,4380_42 -4380_78137,285,4380_48966,Carrigaline (HSE),84408-00009-1,1,4380_7778208_2250205,4380_624 -4380_78137,288,4380_48967,Carrigaline (HSE),84402-00011-1,1,4380_7778208_2250205,4380_624 -4380_78137,287,4380_48968,Carrigaline (HSE),84398-00012-1,1,4380_7778208_2250205,4380_624 -4380_78137,286,4380_48969,Carrigaline (HSE),84404-00010-1,1,4380_7778208_2250205,4380_624 -4380_77948,295,4380_4897,Dublin,52190-00019-1,1,4380_7778208_1030107,4380_42 -4380_78137,291,4380_48970,Carrigaline (HSE),84406-00013-1,1,4380_7778208_2250205,4380_626 -4380_78137,289,4380_48971,Carrigaline (HSE),84400-00014-1,1,4380_7778208_2250205,4380_624 -4380_78137,292,4380_48972,Carrigaline (HSE),84405-00016-1,1,4380_7778208_2250205,4380_624 -4380_78137,290,4380_48973,Carrigaline (HSE),84409-00015-1,1,4380_7778208_2250205,4380_624 -4380_78137,294,4380_48974,Carrigaline (HSE),84399-00018-1,1,4380_7778208_2250205,4380_624 -4380_78137,295,4380_48975,Carrigaline (HSE),84401-00019-1,1,4380_7778208_2250205,4380_624 -4380_78137,293,4380_48976,Carrigaline (HSE),84403-00017-1,1,4380_7778208_2250205,4380_624 -4380_78137,296,4380_48977,Carrigaline (HSE),84407-00021-1,1,4380_7778208_2250205,4380_626 -4380_78137,285,4380_48984,Carrigaline (HSE),84430-00009-1,1,4380_7778208_2250205,4380_624 -4380_78137,288,4380_48985,Carrigaline (HSE),84428-00011-1,1,4380_7778208_2250205,4380_624 -4380_78137,287,4380_48986,Carrigaline (HSE),84432-00012-1,1,4380_7778208_2250205,4380_624 -4380_78137,286,4380_48987,Carrigaline (HSE),84424-00010-1,1,4380_7778208_2250205,4380_624 -4380_78137,291,4380_48988,Carrigaline (HSE),84422-00013-1,1,4380_7778208_2250205,4380_626 -4380_78137,289,4380_48989,Carrigaline (HSE),84426-00014-1,1,4380_7778208_2250205,4380_624 -4380_78137,292,4380_48990,Carrigaline (HSE),84425-00016-1,1,4380_7778208_2250205,4380_624 -4380_78137,290,4380_48991,Carrigaline (HSE),84431-00015-1,1,4380_7778208_2250205,4380_624 -4380_78137,294,4380_48992,Carrigaline (HSE),84433-00018-1,1,4380_7778208_2250205,4380_624 -4380_78137,295,4380_48993,Carrigaline (HSE),84427-00019-1,1,4380_7778208_2250205,4380_624 -4380_78137,293,4380_48994,Carrigaline (HSE),84429-00017-1,1,4380_7778208_2250205,4380_624 -4380_78137,296,4380_48995,Carrigaline (HSE),84423-00021-1,1,4380_7778208_2250205,4380_626 -4380_77946,287,4380_49,Dundalk,50297-00012-1,0,4380_7778208_1000913,4380_1 -4380_78137,285,4380_49002,Carrigaline (HSE),84456-00009-1,1,4380_7778208_2250205,4380_624 -4380_78137,288,4380_49003,Carrigaline (HSE),84454-00011-1,1,4380_7778208_2250205,4380_624 -4380_78137,287,4380_49004,Carrigaline (HSE),84448-00012-1,1,4380_7778208_2250205,4380_624 -4380_78137,286,4380_49005,Carrigaline (HSE),84452-00010-1,1,4380_7778208_2250205,4380_624 -4380_78137,291,4380_49006,Carrigaline (HSE),84450-00013-1,1,4380_7778208_2250205,4380_626 -4380_78137,289,4380_49007,Carrigaline (HSE),84446-00014-1,1,4380_7778208_2250205,4380_624 -4380_78137,292,4380_49008,Carrigaline (HSE),84453-00016-1,1,4380_7778208_2250205,4380_624 -4380_78137,290,4380_49009,Carrigaline (HSE),84457-00015-1,1,4380_7778208_2250205,4380_624 -4380_78137,294,4380_49010,Carrigaline (HSE),84449-00018-1,1,4380_7778208_2250205,4380_624 -4380_78137,295,4380_49011,Carrigaline (HSE),84447-00019-1,1,4380_7778208_2250205,4380_624 -4380_78137,293,4380_49012,Carrigaline (HSE),84455-00017-1,1,4380_7778208_2250205,4380_624 -4380_78137,296,4380_49013,Carrigaline (HSE),84451-00021-1,1,4380_7778208_2250205,4380_626 -4380_78137,285,4380_49020,Carrigaline (HSE),84480-00009-1,1,4380_7778208_2250205,4380_624 -4380_78137,288,4380_49021,Carrigaline (HSE),84470-00011-1,1,4380_7778208_2250205,4380_624 -4380_78137,287,4380_49022,Carrigaline (HSE),84478-00012-1,1,4380_7778208_2250205,4380_624 -4380_78137,286,4380_49023,Carrigaline (HSE),84474-00010-1,1,4380_7778208_2250205,4380_624 -4380_78137,291,4380_49024,Carrigaline (HSE),84472-00013-1,1,4380_7778208_2250205,4380_626 -4380_78137,289,4380_49025,Carrigaline (HSE),84476-00014-1,1,4380_7778208_2250205,4380_624 -4380_78137,292,4380_49026,Carrigaline (HSE),84475-00016-1,1,4380_7778208_2250205,4380_624 -4380_78137,290,4380_49027,Carrigaline (HSE),84481-00015-1,1,4380_7778208_2250205,4380_624 -4380_78137,294,4380_49028,Carrigaline (HSE),84479-00018-1,1,4380_7778208_2250205,4380_624 -4380_78137,295,4380_49029,Carrigaline (HSE),84477-00019-1,1,4380_7778208_2250205,4380_624 -4380_78137,293,4380_49030,Carrigaline (HSE),84471-00017-1,1,4380_7778208_2250205,4380_624 -4380_78137,296,4380_49031,Carrigaline (HSE),84473-00021-1,1,4380_7778208_2250205,4380_626 -4380_78137,285,4380_49038,Carrigaline (HSE),84496-00009-1,1,4380_7778208_2250205,4380_624 -4380_78137,288,4380_49039,Carrigaline (HSE),84504-00011-1,1,4380_7778208_2250205,4380_624 -4380_77948,285,4380_4904,Dublin,1373-00009-1,1,4380_7778208_1030103,4380_42 -4380_78137,287,4380_49040,Carrigaline (HSE),84502-00012-1,1,4380_7778208_2250205,4380_624 -4380_78137,286,4380_49041,Carrigaline (HSE),84498-00010-1,1,4380_7778208_2250205,4380_624 -4380_78137,291,4380_49042,Carrigaline (HSE),84500-00013-1,1,4380_7778208_2250205,4380_624 -4380_78137,289,4380_49043,Carrigaline (HSE),84494-00014-1,1,4380_7778208_2250205,4380_624 -4380_78137,292,4380_49044,Carrigaline (HSE),84499-00016-1,1,4380_7778208_2250205,4380_624 -4380_78137,290,4380_49045,Carrigaline (HSE),84497-00015-1,1,4380_7778208_2250205,4380_624 -4380_78137,294,4380_49046,Carrigaline (HSE),84503-00018-1,1,4380_7778208_2250205,4380_624 -4380_78137,295,4380_49047,Carrigaline (HSE),84495-00019-1,1,4380_7778208_2250205,4380_624 -4380_78137,293,4380_49048,Carrigaline (HSE),84505-00017-1,1,4380_7778208_2250205,4380_624 -4380_78137,296,4380_49049,Carrigaline (HSE),84501-00021-1,1,4380_7778208_2250205,4380_624 -4380_77948,286,4380_4905,Dublin,1383-00010-1,1,4380_7778208_1030103,4380_42 -4380_78137,285,4380_49056,Carrigaline (HSE),84520-00009-1,1,4380_7778208_2250205,4380_625 -4380_78137,288,4380_49057,Carrigaline (HSE),84528-00011-1,1,4380_7778208_2250205,4380_625 -4380_78137,287,4380_49058,Carrigaline (HSE),84518-00012-1,1,4380_7778208_2250205,4380_625 -4380_78137,286,4380_49059,Carrigaline (HSE),84526-00010-1,1,4380_7778208_2250205,4380_625 -4380_77948,288,4380_4906,Dublin,1393-00011-1,1,4380_7778208_1030103,4380_42 -4380_78137,291,4380_49060,Carrigaline (HSE),84524-00013-1,1,4380_7778208_2250205,4380_625 -4380_78137,289,4380_49061,Carrigaline (HSE),84522-00014-1,1,4380_7778208_2250205,4380_625 -4380_78137,292,4380_49062,Carrigaline (HSE),84527-00016-1,1,4380_7778208_2250205,4380_625 -4380_78137,290,4380_49063,Carrigaline (HSE),84521-00015-1,1,4380_7778208_2250205,4380_625 -4380_78137,294,4380_49064,Carrigaline (HSE),84519-00018-1,1,4380_7778208_2250205,4380_625 -4380_78137,295,4380_49065,Carrigaline (HSE),84523-00019-1,1,4380_7778208_2250205,4380_625 -4380_78137,293,4380_49066,Carrigaline (HSE),84529-00017-1,1,4380_7778208_2250205,4380_625 -4380_78137,296,4380_49067,Carrigaline (HSE),84525-00021-1,1,4380_7778208_2250205,4380_625 -4380_77948,287,4380_4907,Dublin,1403-00012-1,1,4380_7778208_1030103,4380_42 -4380_78137,285,4380_49074,Carrigaline (HSE),84548-00009-1,1,4380_7778208_2250205,4380_625 -4380_78137,288,4380_49075,Carrigaline (HSE),84550-00011-1,1,4380_7778208_2250205,4380_625 -4380_78137,287,4380_49076,Carrigaline (HSE),84544-00012-1,1,4380_7778208_2250205,4380_625 -4380_78137,286,4380_49077,Carrigaline (HSE),84546-00010-1,1,4380_7778208_2250205,4380_625 -4380_78137,291,4380_49078,Carrigaline (HSE),84542-00013-1,1,4380_7778208_2250205,4380_625 -4380_78137,289,4380_49079,Carrigaline (HSE),84552-00014-1,1,4380_7778208_2250205,4380_625 -4380_77948,289,4380_4908,Dublin,1363-00014-1,1,4380_7778208_1030103,4380_42 -4380_78137,292,4380_49080,Carrigaline (HSE),84547-00016-1,1,4380_7778208_2250205,4380_625 -4380_78137,290,4380_49081,Carrigaline (HSE),84549-00015-1,1,4380_7778208_2250205,4380_625 -4380_78137,294,4380_49082,Carrigaline (HSE),84545-00018-1,1,4380_7778208_2250205,4380_625 -4380_78137,295,4380_49083,Carrigaline (HSE),84553-00019-1,1,4380_7778208_2250205,4380_625 -4380_78137,293,4380_49084,Carrigaline (HSE),84551-00017-1,1,4380_7778208_2250205,4380_625 -4380_78137,296,4380_49085,Carrigaline (HSE),84543-00021-1,1,4380_7778208_2250205,4380_625 -4380_77948,290,4380_4909,Dublin,51940-00015-1,1,4380_7778208_1030103,4380_42 -4380_78137,285,4380_49092,Carrigaline (HSE),84566-00009-1,1,4380_7778208_2250205,4380_625 -4380_78137,288,4380_49093,Carrigaline (HSE),84574-00011-1,1,4380_7778208_2250205,4380_625 -4380_78137,287,4380_49094,Carrigaline (HSE),84576-00012-1,1,4380_7778208_2250205,4380_625 -4380_78137,286,4380_49095,Carrigaline (HSE),84568-00010-1,1,4380_7778208_2250205,4380_625 -4380_78137,291,4380_49096,Carrigaline (HSE),84572-00013-1,1,4380_7778208_2250205,4380_625 -4380_78137,289,4380_49097,Carrigaline (HSE),84570-00014-1,1,4380_7778208_2250205,4380_625 -4380_78137,292,4380_49098,Carrigaline (HSE),84569-00016-1,1,4380_7778208_2250205,4380_625 -4380_78137,290,4380_49099,Carrigaline (HSE),84567-00015-1,1,4380_7778208_2250205,4380_625 -4380_77948,292,4380_4910,Dublin,51943-00016-1,1,4380_7778208_1030103,4380_42 -4380_78137,294,4380_49100,Carrigaline (HSE),84577-00018-1,1,4380_7778208_2250205,4380_625 -4380_78137,295,4380_49101,Carrigaline (HSE),84571-00019-1,1,4380_7778208_2250205,4380_625 -4380_78137,293,4380_49102,Carrigaline (HSE),84575-00017-1,1,4380_7778208_2250205,4380_625 -4380_78137,296,4380_49103,Carrigaline (HSE),84573-00021-1,1,4380_7778208_2250205,4380_625 -4380_77948,293,4380_4911,Dublin,51944-00017-1,1,4380_7778208_1030103,4380_42 -4380_78137,285,4380_49110,Carrigaline (HSE),84596-00009-1,1,4380_7778208_2250205,4380_625 -4380_78137,288,4380_49111,Carrigaline (HSE),84590-00011-1,1,4380_7778208_2250205,4380_625 -4380_78137,287,4380_49112,Carrigaline (HSE),84594-00012-1,1,4380_7778208_2250205,4380_625 -4380_78137,286,4380_49113,Carrigaline (HSE),84600-00010-1,1,4380_7778208_2250205,4380_625 -4380_78137,291,4380_49114,Carrigaline (HSE),84598-00013-1,1,4380_7778208_2250205,4380_625 -4380_78137,289,4380_49115,Carrigaline (HSE),84592-00014-1,1,4380_7778208_2250205,4380_625 -4380_78137,292,4380_49116,Carrigaline (HSE),84601-00016-1,1,4380_7778208_2250205,4380_625 -4380_78137,290,4380_49117,Carrigaline (HSE),84597-00015-1,1,4380_7778208_2250205,4380_625 -4380_78137,294,4380_49118,Carrigaline (HSE),84595-00018-1,1,4380_7778208_2250205,4380_625 -4380_78137,295,4380_49119,Carrigaline (HSE),84593-00019-1,1,4380_7778208_2250205,4380_625 -4380_77948,294,4380_4912,Dublin,51941-00018-1,1,4380_7778208_1030103,4380_42 -4380_78137,293,4380_49120,Carrigaline (HSE),84591-00017-1,1,4380_7778208_2250205,4380_625 -4380_78137,296,4380_49121,Carrigaline (HSE),84599-00021-1,1,4380_7778208_2250205,4380_625 -4380_78137,285,4380_49128,Carrigaline (HSE),84622-00009-1,1,4380_7778208_2250205,4380_625 -4380_78137,288,4380_49129,Carrigaline (HSE),84618-00011-1,1,4380_7778208_2250205,4380_625 -4380_77948,295,4380_4913,Dublin,51942-00019-1,1,4380_7778208_1030103,4380_42 -4380_78137,287,4380_49130,Carrigaline (HSE),84620-00012-1,1,4380_7778208_2250205,4380_625 -4380_78137,286,4380_49131,Carrigaline (HSE),84624-00010-1,1,4380_7778208_2250205,4380_625 -4380_78137,291,4380_49132,Carrigaline (HSE),84616-00013-1,1,4380_7778208_2250205,4380_625 -4380_78137,289,4380_49133,Carrigaline (HSE),84614-00014-1,1,4380_7778208_2250205,4380_625 -4380_78137,292,4380_49134,Carrigaline (HSE),84625-00016-1,1,4380_7778208_2250205,4380_625 -4380_78137,290,4380_49135,Carrigaline (HSE),84623-00015-1,1,4380_7778208_2250205,4380_625 -4380_78137,294,4380_49136,Carrigaline (HSE),84621-00018-1,1,4380_7778208_2250205,4380_625 -4380_78137,295,4380_49137,Carrigaline (HSE),84615-00019-1,1,4380_7778208_2250205,4380_625 -4380_78137,293,4380_49138,Carrigaline (HSE),84619-00017-1,1,4380_7778208_2250205,4380_625 -4380_78137,296,4380_49139,Carrigaline (HSE),84617-00021-1,1,4380_7778208_2250205,4380_625 -4380_78137,285,4380_49146,Carrigaline (HSE),84644-00009-1,1,4380_7778208_2250205,4380_625 -4380_78137,288,4380_49147,Carrigaline (HSE),84640-00011-1,1,4380_7778208_2250205,4380_625 -4380_78137,287,4380_49148,Carrigaline (HSE),84642-00012-1,1,4380_7778208_2250205,4380_625 -4380_78137,286,4380_49149,Carrigaline (HSE),84648-00010-1,1,4380_7778208_2250205,4380_625 -4380_78137,291,4380_49150,Carrigaline (HSE),84638-00013-1,1,4380_7778208_2250205,4380_625 -4380_78137,289,4380_49151,Carrigaline (HSE),84646-00014-1,1,4380_7778208_2250205,4380_625 -4380_78137,292,4380_49152,Carrigaline (HSE),84649-00016-1,1,4380_7778208_2250205,4380_625 -4380_78137,290,4380_49153,Carrigaline (HSE),84645-00015-1,1,4380_7778208_2250205,4380_625 -4380_78137,294,4380_49154,Carrigaline (HSE),84643-00018-1,1,4380_7778208_2250205,4380_625 -4380_78137,295,4380_49155,Carrigaline (HSE),84647-00019-1,1,4380_7778208_2250205,4380_625 -4380_78137,293,4380_49156,Carrigaline (HSE),84641-00017-1,1,4380_7778208_2250205,4380_625 -4380_78137,296,4380_49157,Carrigaline (HSE),84639-00021-1,1,4380_7778208_2250205,4380_625 -4380_78137,285,4380_49164,Carrigaline (HSE),84662-00009-1,1,4380_7778208_2250205,4380_625 -4380_78137,288,4380_49165,Carrigaline (HSE),84670-00011-1,1,4380_7778208_2250205,4380_625 -4380_78137,287,4380_49166,Carrigaline (HSE),84672-00012-1,1,4380_7778208_2250205,4380_625 -4380_78137,286,4380_49167,Carrigaline (HSE),84664-00010-1,1,4380_7778208_2250205,4380_625 -4380_78137,291,4380_49168,Carrigaline (HSE),84668-00013-1,1,4380_7778208_2250205,4380_625 -4380_78137,289,4380_49169,Carrigaline (HSE),84666-00014-1,1,4380_7778208_2250205,4380_625 -4380_78137,292,4380_49170,Carrigaline (HSE),84665-00016-1,1,4380_7778208_2250205,4380_625 -4380_78137,290,4380_49171,Carrigaline (HSE),84663-00015-1,1,4380_7778208_2250205,4380_625 -4380_78137,294,4380_49172,Carrigaline (HSE),84673-00018-1,1,4380_7778208_2250205,4380_625 -4380_78137,295,4380_49173,Carrigaline (HSE),84667-00019-1,1,4380_7778208_2250205,4380_625 -4380_78137,293,4380_49174,Carrigaline (HSE),84671-00017-1,1,4380_7778208_2250205,4380_625 -4380_78137,296,4380_49175,Carrigaline (HSE),84669-00021-1,1,4380_7778208_2250205,4380_625 -4380_77991,297,4380_49183,Kinsale,84678-00008-1,0,4380_7778208_2260201,4380_627 -4380_77991,285,4380_49184,Kinsale,84681-00009-1,0,4380_7778208_2260201,4380_628 -4380_77991,288,4380_49185,Kinsale,84676-00011-1,0,4380_7778208_2260201,4380_628 -4380_77991,287,4380_49186,Kinsale,84683-00012-1,0,4380_7778208_2260201,4380_628 -4380_77991,286,4380_49187,Kinsale,84679-00010-1,0,4380_7778208_2260201,4380_628 -4380_77991,291,4380_49188,Kinsale,84997-00013-1,0,4380_7778208_2260203,4380_627 -4380_77991,289,4380_49189,Kinsale,84685-00014-1,0,4380_7778208_2260201,4380_628 -4380_77948,291,4380_4919,Dublin,1529-00013-1,1,4380_7778208_1030104,4380_42 -4380_77991,292,4380_49190,Kinsale,84680-00016-1,0,4380_7778208_2260201,4380_628 -4380_77991,290,4380_49191,Kinsale,84682-00015-1,0,4380_7778208_2260201,4380_628 -4380_77991,294,4380_49192,Kinsale,84684-00018-1,0,4380_7778208_2260201,4380_628 -4380_77991,295,4380_49193,Kinsale,84686-00019-1,0,4380_7778208_2260201,4380_628 -4380_77991,293,4380_49194,Kinsale,84677-00017-1,0,4380_7778208_2260201,4380_628 -4380_77991,296,4380_49195,Kinsale,84998-00021-1,0,4380_7778208_2260203,4380_627 -4380_77948,296,4380_4920,Dublin,52006-00021-1,1,4380_7778208_1030104,4380_42 -4380_77991,297,4380_49203,Kinsale,85005-00008-1,0,4380_7778208_2260203,4380_627 -4380_77991,285,4380_49204,Kinsale,85006-00009-1,0,4380_7778208_2260203,4380_628 -4380_77991,288,4380_49205,Kinsale,85003-00011-1,0,4380_7778208_2260203,4380_628 -4380_77991,287,4380_49206,Kinsale,84999-00012-1,0,4380_7778208_2260203,4380_628 -4380_77991,286,4380_49207,Kinsale,85008-00010-1,0,4380_7778208_2260203,4380_628 -4380_77991,291,4380_49208,Kinsale,84687-00013-1,0,4380_7778208_2260201,4380_627 -4380_77991,289,4380_49209,Kinsale,85001-00014-1,0,4380_7778208_2260203,4380_628 -4380_77991,292,4380_49210,Kinsale,85009-00016-1,0,4380_7778208_2260203,4380_628 -4380_77991,290,4380_49211,Kinsale,85007-00015-1,0,4380_7778208_2260203,4380_628 -4380_77991,294,4380_49212,Kinsale,85000-00018-1,0,4380_7778208_2260203,4380_628 -4380_77991,295,4380_49213,Kinsale,85002-00019-1,0,4380_7778208_2260203,4380_628 -4380_77991,293,4380_49214,Kinsale,85004-00017-1,0,4380_7778208_2260203,4380_628 -4380_77991,296,4380_49215,Kinsale,84688-00021-1,0,4380_7778208_2260201,4380_627 -4380_77991,297,4380_49223,Kinsale,84860-00008-1,0,4380_7778208_2260202,4380_627 -4380_77991,285,4380_49224,Kinsale,84858-00009-1,0,4380_7778208_2260202,4380_628 -4380_77991,288,4380_49225,Kinsale,84867-00011-1,0,4380_7778208_2260202,4380_628 -4380_77991,287,4380_49226,Kinsale,84861-00012-1,0,4380_7778208_2260202,4380_628 -4380_77991,286,4380_49227,Kinsale,84856-00010-1,0,4380_7778208_2260202,4380_628 -4380_77991,291,4380_49228,Kinsale,84863-00013-1,0,4380_7778208_2260202,4380_627 -4380_77991,289,4380_49229,Kinsale,84865-00014-1,0,4380_7778208_2260202,4380_628 -4380_77948,297,4380_4923,Dublin,1599-00008-1,1,4380_7778208_1030105,4380_42 -4380_77991,292,4380_49230,Kinsale,84857-00016-1,0,4380_7778208_2260202,4380_628 -4380_77991,290,4380_49231,Kinsale,84859-00015-1,0,4380_7778208_2260202,4380_628 -4380_77991,294,4380_49232,Kinsale,84862-00018-1,0,4380_7778208_2260202,4380_628 -4380_77991,295,4380_49233,Kinsale,84866-00019-1,0,4380_7778208_2260202,4380_628 -4380_77991,293,4380_49234,Kinsale,84868-00017-1,0,4380_7778208_2260202,4380_628 -4380_77991,296,4380_49235,Kinsale,84864-00021-1,0,4380_7778208_2260202,4380_627 -4380_77948,285,4380_4924,Dublin,1621-00009-1,1,4380_7778208_1030106,4380_42 -4380_77991,297,4380_49243,Kinsale,84708-00008-1,0,4380_7778208_2260201,4380_627 -4380_77991,285,4380_49244,Kinsale,84704-00009-1,0,4380_7778208_2260201,4380_628 -4380_77991,288,4380_49245,Kinsale,84709-00011-1,0,4380_7778208_2260201,4380_628 -4380_77991,287,4380_49246,Kinsale,84702-00012-1,0,4380_7778208_2260201,4380_628 -4380_77991,286,4380_49247,Kinsale,84706-00010-1,0,4380_7778208_2260201,4380_628 -4380_77991,291,4380_49248,Kinsale,85023-00013-1,0,4380_7778208_2260203,4380_627 -4380_77991,289,4380_49249,Kinsale,84711-00014-1,0,4380_7778208_2260201,4380_628 -4380_77948,286,4380_4925,Dublin,1633-00010-1,1,4380_7778208_1030106,4380_42 -4380_77991,292,4380_49250,Kinsale,84707-00016-1,0,4380_7778208_2260201,4380_628 -4380_77991,290,4380_49251,Kinsale,84705-00015-1,0,4380_7778208_2260201,4380_628 -4380_77991,294,4380_49252,Kinsale,84703-00018-1,0,4380_7778208_2260201,4380_628 -4380_77991,295,4380_49253,Kinsale,84712-00019-1,0,4380_7778208_2260201,4380_628 -4380_77991,293,4380_49254,Kinsale,84710-00017-1,0,4380_7778208_2260201,4380_628 -4380_77991,296,4380_49255,Kinsale,85024-00021-1,0,4380_7778208_2260203,4380_627 -4380_77948,288,4380_4926,Dublin,1645-00011-1,1,4380_7778208_1030106,4380_42 -4380_77991,297,4380_49263,Kinsale,85027-00008-1,0,4380_7778208_2260203,4380_627 -4380_77991,285,4380_49264,Kinsale,85030-00009-1,0,4380_7778208_2260203,4380_628 -4380_77991,288,4380_49265,Kinsale,85032-00011-1,0,4380_7778208_2260203,4380_628 -4380_77991,287,4380_49266,Kinsale,85025-00012-1,0,4380_7778208_2260203,4380_628 -4380_77991,286,4380_49267,Kinsale,85034-00010-1,0,4380_7778208_2260203,4380_628 -4380_77991,291,4380_49268,Kinsale,84713-00013-1,0,4380_7778208_2260201,4380_627 -4380_77991,289,4380_49269,Kinsale,85028-00014-1,0,4380_7778208_2260203,4380_628 -4380_77948,287,4380_4927,Dublin,1657-00012-1,1,4380_7778208_1030106,4380_42 -4380_77991,292,4380_49270,Kinsale,85035-00016-1,0,4380_7778208_2260203,4380_628 -4380_77991,290,4380_49271,Kinsale,85031-00015-1,0,4380_7778208_2260203,4380_628 -4380_77991,294,4380_49272,Kinsale,85026-00018-1,0,4380_7778208_2260203,4380_628 -4380_77991,295,4380_49273,Kinsale,85029-00019-1,0,4380_7778208_2260203,4380_628 -4380_77991,293,4380_49274,Kinsale,85033-00017-1,0,4380_7778208_2260203,4380_628 -4380_77991,296,4380_49275,Kinsale,84714-00021-1,0,4380_7778208_2260201,4380_627 -4380_77948,289,4380_4928,Dublin,1609-00014-1,1,4380_7778208_1030106,4380_42 -4380_77991,297,4380_49283,Kinsale,84886-00008-1,0,4380_7778208_2260202,4380_627 -4380_77991,285,4380_49284,Kinsale,84884-00009-1,0,4380_7778208_2260202,4380_628 -4380_77991,288,4380_49285,Kinsale,84893-00011-1,0,4380_7778208_2260202,4380_628 -4380_77991,287,4380_49286,Kinsale,84891-00012-1,0,4380_7778208_2260202,4380_628 -4380_77991,286,4380_49287,Kinsale,84882-00010-1,0,4380_7778208_2260202,4380_628 -4380_77991,291,4380_49288,Kinsale,84887-00013-1,0,4380_7778208_2260202,4380_627 -4380_77991,289,4380_49289,Kinsale,84889-00014-1,0,4380_7778208_2260202,4380_628 -4380_77948,290,4380_4929,Dublin,52122-00015-1,1,4380_7778208_1030106,4380_42 -4380_77991,292,4380_49290,Kinsale,84883-00016-1,0,4380_7778208_2260202,4380_628 -4380_77991,290,4380_49291,Kinsale,84885-00015-1,0,4380_7778208_2260202,4380_628 -4380_77991,294,4380_49292,Kinsale,84892-00018-1,0,4380_7778208_2260202,4380_628 -4380_77991,295,4380_49293,Kinsale,84890-00019-1,0,4380_7778208_2260202,4380_628 -4380_77991,293,4380_49294,Kinsale,84894-00017-1,0,4380_7778208_2260202,4380_628 -4380_77991,296,4380_49295,Kinsale,84888-00021-1,0,4380_7778208_2260202,4380_627 -4380_77946,285,4380_493,Drogheda,50429-00009-1,1,4380_7778208_1000914,4380_6 -4380_77948,292,4380_4930,Dublin,52120-00016-1,1,4380_7778208_1030106,4380_42 -4380_77991,297,4380_49303,Kinsale,84734-00008-1,0,4380_7778208_2260201,4380_627 -4380_77991,285,4380_49304,Kinsale,84730-00009-1,0,4380_7778208_2260201,4380_628 -4380_77991,288,4380_49305,Kinsale,84737-00011-1,0,4380_7778208_2260201,4380_628 -4380_77991,287,4380_49306,Kinsale,84728-00012-1,0,4380_7778208_2260201,4380_628 -4380_77991,286,4380_49307,Kinsale,84732-00010-1,0,4380_7778208_2260201,4380_628 -4380_77991,291,4380_49308,Kinsale,85049-00013-1,0,4380_7778208_2260203,4380_627 -4380_77991,289,4380_49309,Kinsale,84735-00014-1,0,4380_7778208_2260201,4380_628 -4380_77948,293,4380_4931,Dublin,52121-00017-1,1,4380_7778208_1030106,4380_42 -4380_77991,292,4380_49310,Kinsale,84733-00016-1,0,4380_7778208_2260201,4380_628 -4380_77991,290,4380_49311,Kinsale,84731-00015-1,0,4380_7778208_2260201,4380_628 -4380_77991,294,4380_49312,Kinsale,84729-00018-1,0,4380_7778208_2260201,4380_628 -4380_77991,295,4380_49313,Kinsale,84736-00019-1,0,4380_7778208_2260201,4380_628 -4380_77991,293,4380_49314,Kinsale,84738-00017-1,0,4380_7778208_2260201,4380_628 -4380_77991,296,4380_49315,Kinsale,85050-00021-1,0,4380_7778208_2260203,4380_627 -4380_77948,294,4380_4932,Dublin,52118-00018-1,1,4380_7778208_1030106,4380_42 -4380_77991,297,4380_49323,Kinsale,85057-00008-1,0,4380_7778208_2260203,4380_627 -4380_77991,285,4380_49324,Kinsale,85055-00009-1,0,4380_7778208_2260203,4380_628 -4380_77991,288,4380_49325,Kinsale,85058-00011-1,0,4380_7778208_2260203,4380_628 -4380_77991,287,4380_49326,Kinsale,85053-00012-1,0,4380_7778208_2260203,4380_628 -4380_77991,286,4380_49327,Kinsale,85051-00010-1,0,4380_7778208_2260203,4380_628 -4380_77991,291,4380_49328,Kinsale,84739-00013-1,0,4380_7778208_2260201,4380_627 -4380_77991,289,4380_49329,Kinsale,85060-00014-1,0,4380_7778208_2260203,4380_628 -4380_77948,295,4380_4933,Dublin,52119-00019-1,1,4380_7778208_1030106,4380_42 -4380_77991,292,4380_49330,Kinsale,85052-00016-1,0,4380_7778208_2260203,4380_628 -4380_77991,290,4380_49331,Kinsale,85056-00015-1,0,4380_7778208_2260203,4380_628 -4380_77991,294,4380_49332,Kinsale,85054-00018-1,0,4380_7778208_2260203,4380_628 -4380_77991,295,4380_49333,Kinsale,85061-00019-1,0,4380_7778208_2260203,4380_628 -4380_77991,293,4380_49334,Kinsale,85059-00017-1,0,4380_7778208_2260203,4380_628 -4380_77991,296,4380_49335,Kinsale,84740-00021-1,0,4380_7778208_2260201,4380_627 -4380_77991,297,4380_49343,Kinsale,84910-00008-1,0,4380_7778208_2260202,4380_627 -4380_77991,285,4380_49344,Kinsale,84911-00009-1,0,4380_7778208_2260202,4380_628 -4380_77991,288,4380_49345,Kinsale,84908-00011-1,0,4380_7778208_2260202,4380_628 -4380_77991,287,4380_49346,Kinsale,84919-00012-1,0,4380_7778208_2260202,4380_628 -4380_77991,286,4380_49347,Kinsale,84917-00010-1,0,4380_7778208_2260202,4380_628 -4380_77991,291,4380_49348,Kinsale,84915-00013-1,0,4380_7778208_2260202,4380_627 -4380_77991,289,4380_49349,Kinsale,84913-00014-1,0,4380_7778208_2260202,4380_628 -4380_77991,292,4380_49350,Kinsale,84918-00016-1,0,4380_7778208_2260202,4380_628 -4380_77991,290,4380_49351,Kinsale,84912-00015-1,0,4380_7778208_2260202,4380_628 -4380_77991,294,4380_49352,Kinsale,84920-00018-1,0,4380_7778208_2260202,4380_628 -4380_77991,295,4380_49353,Kinsale,84914-00019-1,0,4380_7778208_2260202,4380_628 -4380_77991,293,4380_49354,Kinsale,84909-00017-1,0,4380_7778208_2260202,4380_628 -4380_77991,296,4380_49355,Kinsale,84916-00021-1,0,4380_7778208_2260202,4380_627 -4380_77991,297,4380_49363,Kinsale,84754-00008-1,0,4380_7778208_2260201,4380_627 -4380_77991,285,4380_49364,Kinsale,84755-00009-1,0,4380_7778208_2260201,4380_628 -4380_77991,288,4380_49365,Kinsale,84759-00011-1,0,4380_7778208_2260201,4380_628 -4380_77991,287,4380_49366,Kinsale,84763-00012-1,0,4380_7778208_2260201,4380_628 -4380_77991,286,4380_49367,Kinsale,84761-00010-1,0,4380_7778208_2260201,4380_628 -4380_77991,291,4380_49368,Kinsale,85075-00013-1,0,4380_7778208_2260203,4380_627 -4380_77991,289,4380_49369,Kinsale,84757-00014-1,0,4380_7778208_2260201,4380_628 -4380_77991,292,4380_49370,Kinsale,84762-00016-1,0,4380_7778208_2260201,4380_628 -4380_77991,290,4380_49371,Kinsale,84756-00015-1,0,4380_7778208_2260201,4380_628 -4380_77991,294,4380_49372,Kinsale,84764-00018-1,0,4380_7778208_2260201,4380_628 -4380_77991,295,4380_49373,Kinsale,84758-00019-1,0,4380_7778208_2260201,4380_628 -4380_77991,293,4380_49374,Kinsale,84760-00017-1,0,4380_7778208_2260201,4380_628 -4380_77991,296,4380_49375,Kinsale,85076-00021-1,0,4380_7778208_2260203,4380_627 -4380_77991,297,4380_49383,Kinsale,85085-00008-1,0,4380_7778208_2260203,4380_627 -4380_77991,285,4380_49384,Kinsale,85081-00009-1,0,4380_7778208_2260203,4380_628 -4380_77991,288,4380_49385,Kinsale,85086-00011-1,0,4380_7778208_2260203,4380_628 -4380_77991,287,4380_49386,Kinsale,85083-00012-1,0,4380_7778208_2260203,4380_628 -4380_77991,286,4380_49387,Kinsale,85079-00010-1,0,4380_7778208_2260203,4380_628 -4380_77991,291,4380_49388,Kinsale,84765-00013-1,0,4380_7778208_2260201,4380_627 -4380_77991,289,4380_49389,Kinsale,85077-00014-1,0,4380_7778208_2260203,4380_628 -4380_77948,291,4380_4939,Dublin,1954-00013-1,1,4380_7778208_1030110,4380_42 -4380_77991,292,4380_49390,Kinsale,85080-00016-1,0,4380_7778208_2260203,4380_628 -4380_77991,290,4380_49391,Kinsale,85082-00015-1,0,4380_7778208_2260203,4380_628 -4380_77991,294,4380_49392,Kinsale,85084-00018-1,0,4380_7778208_2260203,4380_628 -4380_77991,295,4380_49393,Kinsale,85078-00019-1,0,4380_7778208_2260203,4380_628 -4380_77991,293,4380_49394,Kinsale,85087-00017-1,0,4380_7778208_2260203,4380_628 -4380_77991,296,4380_49395,Kinsale,84766-00021-1,0,4380_7778208_2260201,4380_627 -4380_77946,285,4380_494,Monasterboice,50539-00009-1,1,4380_7778208_1000916,4380_7 -4380_77948,296,4380_4940,Dublin,52373-00021-1,1,4380_7778208_1030110,4380_42 -4380_77991,297,4380_49403,Kinsale,84942-00008-1,0,4380_7778208_2260202,4380_627 -4380_77991,285,4380_49404,Kinsale,84943-00009-1,0,4380_7778208_2260202,4380_628 -4380_77991,288,4380_49405,Kinsale,84934-00011-1,0,4380_7778208_2260202,4380_628 -4380_77991,287,4380_49406,Kinsale,84940-00012-1,0,4380_7778208_2260202,4380_628 -4380_77991,286,4380_49407,Kinsale,84938-00010-1,0,4380_7778208_2260202,4380_628 -4380_77991,291,4380_49408,Kinsale,84945-00013-1,0,4380_7778208_2260202,4380_627 -4380_77991,289,4380_49409,Kinsale,84936-00014-1,0,4380_7778208_2260202,4380_628 -4380_77948,285,4380_4941,Dublin,1849-00009-1,1,4380_7778208_1030109,4380_42 -4380_77991,292,4380_49410,Kinsale,84939-00016-1,0,4380_7778208_2260202,4380_628 -4380_77991,290,4380_49411,Kinsale,84944-00015-1,0,4380_7778208_2260202,4380_628 -4380_77991,294,4380_49412,Kinsale,84941-00018-1,0,4380_7778208_2260202,4380_628 -4380_77991,295,4380_49413,Kinsale,84937-00019-1,0,4380_7778208_2260202,4380_628 -4380_77991,293,4380_49414,Kinsale,84935-00017-1,0,4380_7778208_2260202,4380_628 -4380_77991,296,4380_49415,Kinsale,84946-00021-1,0,4380_7778208_2260202,4380_627 -4380_77948,286,4380_4942,Dublin,1859-00010-1,1,4380_7778208_1030109,4380_42 -4380_77991,297,4380_49423,Kinsale,84790-00008-1,0,4380_7778208_2260201,4380_627 -4380_77991,285,4380_49424,Kinsale,84788-00009-1,0,4380_7778208_2260201,4380_628 -4380_77991,288,4380_49425,Kinsale,84782-00011-1,0,4380_7778208_2260201,4380_628 -4380_77991,287,4380_49426,Kinsale,84786-00012-1,0,4380_7778208_2260201,4380_628 -4380_77991,286,4380_49427,Kinsale,84780-00010-1,0,4380_7778208_2260201,4380_628 -4380_77991,291,4380_49428,Kinsale,85101-00013-1,0,4380_7778208_2260203,4380_627 -4380_77991,289,4380_49429,Kinsale,84784-00014-1,0,4380_7778208_2260201,4380_628 -4380_77948,288,4380_4943,Dublin,1869-00011-1,1,4380_7778208_1030109,4380_42 -4380_77991,292,4380_49430,Kinsale,84781-00016-1,0,4380_7778208_2260201,4380_628 -4380_77991,290,4380_49431,Kinsale,84789-00015-1,0,4380_7778208_2260201,4380_628 -4380_77991,294,4380_49432,Kinsale,84787-00018-1,0,4380_7778208_2260201,4380_628 -4380_77991,295,4380_49433,Kinsale,84785-00019-1,0,4380_7778208_2260201,4380_628 -4380_77991,293,4380_49434,Kinsale,84783-00017-1,0,4380_7778208_2260201,4380_628 -4380_77991,296,4380_49435,Kinsale,85102-00021-1,0,4380_7778208_2260203,4380_627 -4380_77948,287,4380_4944,Dublin,1879-00012-1,1,4380_7778208_1030109,4380_42 -4380_77991,297,4380_49443,Kinsale,85111-00008-1,0,4380_7778208_2260203,4380_627 -4380_77991,285,4380_49444,Kinsale,85109-00009-1,0,4380_7778208_2260203,4380_628 -4380_77991,288,4380_49445,Kinsale,85112-00011-1,0,4380_7778208_2260203,4380_628 -4380_77991,287,4380_49446,Kinsale,85105-00012-1,0,4380_7778208_2260203,4380_628 -4380_77991,286,4380_49447,Kinsale,85103-00010-1,0,4380_7778208_2260203,4380_628 -4380_77991,291,4380_49448,Kinsale,84791-00013-1,0,4380_7778208_2260201,4380_627 -4380_77991,289,4380_49449,Kinsale,85107-00014-1,0,4380_7778208_2260203,4380_628 -4380_77948,289,4380_4945,Dublin,1839-00014-1,1,4380_7778208_1030109,4380_42 -4380_77991,292,4380_49450,Kinsale,85104-00016-1,0,4380_7778208_2260203,4380_628 -4380_77991,290,4380_49451,Kinsale,85110-00015-1,0,4380_7778208_2260203,4380_628 -4380_77991,294,4380_49452,Kinsale,85106-00018-1,0,4380_7778208_2260203,4380_628 -4380_77991,295,4380_49453,Kinsale,85108-00019-1,0,4380_7778208_2260203,4380_628 -4380_77991,293,4380_49454,Kinsale,85113-00017-1,0,4380_7778208_2260203,4380_628 -4380_77991,296,4380_49455,Kinsale,84792-00021-1,0,4380_7778208_2260201,4380_627 -4380_77948,290,4380_4946,Dublin,52309-00015-1,1,4380_7778208_1030109,4380_42 -4380_77991,297,4380_49463,Kinsale,84972-00008-1,0,4380_7778208_2260202,4380_627 -4380_77991,285,4380_49464,Kinsale,84968-00009-1,0,4380_7778208_2260202,4380_628 -4380_77991,288,4380_49465,Kinsale,84966-00011-1,0,4380_7778208_2260202,4380_628 -4380_77991,287,4380_49466,Kinsale,84960-00012-1,0,4380_7778208_2260202,4380_628 -4380_77991,286,4380_49467,Kinsale,84970-00010-1,0,4380_7778208_2260202,4380_628 -4380_77991,291,4380_49468,Kinsale,84962-00013-1,0,4380_7778208_2260202,4380_627 -4380_77991,289,4380_49469,Kinsale,84964-00014-1,0,4380_7778208_2260202,4380_628 -4380_77948,292,4380_4947,Dublin,52311-00016-1,1,4380_7778208_1030109,4380_42 -4380_77991,292,4380_49470,Kinsale,84971-00016-1,0,4380_7778208_2260202,4380_628 -4380_77991,290,4380_49471,Kinsale,84969-00015-1,0,4380_7778208_2260202,4380_628 -4380_77991,294,4380_49472,Kinsale,84961-00018-1,0,4380_7778208_2260202,4380_628 -4380_77991,295,4380_49473,Kinsale,84965-00019-1,0,4380_7778208_2260202,4380_628 -4380_77991,293,4380_49474,Kinsale,84967-00017-1,0,4380_7778208_2260202,4380_628 -4380_77991,296,4380_49475,Kinsale,84963-00021-1,0,4380_7778208_2260202,4380_627 -4380_77948,293,4380_4948,Dublin,52310-00017-1,1,4380_7778208_1030109,4380_42 -4380_77991,297,4380_49483,Kinsale,84810-00008-1,0,4380_7778208_2260201,4380_627 -4380_77991,285,4380_49484,Kinsale,84815-00009-1,0,4380_7778208_2260201,4380_628 -4380_77991,288,4380_49485,Kinsale,84811-00011-1,0,4380_7778208_2260201,4380_628 -4380_77991,287,4380_49486,Kinsale,84808-00012-1,0,4380_7778208_2260201,4380_628 -4380_77991,286,4380_49487,Kinsale,84806-00010-1,0,4380_7778208_2260201,4380_628 -4380_77991,291,4380_49488,Kinsale,85127-00013-1,0,4380_7778208_2260203,4380_627 -4380_77991,289,4380_49489,Kinsale,84813-00014-1,0,4380_7778208_2260201,4380_628 -4380_77948,294,4380_4949,Dublin,52312-00018-1,1,4380_7778208_1030109,4380_42 -4380_77991,292,4380_49490,Kinsale,84807-00016-1,0,4380_7778208_2260201,4380_628 -4380_77991,290,4380_49491,Kinsale,84816-00015-1,0,4380_7778208_2260201,4380_628 -4380_77991,294,4380_49492,Kinsale,84809-00018-1,0,4380_7778208_2260201,4380_628 -4380_77991,295,4380_49493,Kinsale,84814-00019-1,0,4380_7778208_2260201,4380_628 -4380_77991,293,4380_49494,Kinsale,84812-00017-1,0,4380_7778208_2260201,4380_628 -4380_77991,296,4380_49495,Kinsale,85128-00021-1,0,4380_7778208_2260203,4380_627 -4380_77946,286,4380_495,Drogheda,50435-00010-1,1,4380_7778208_1000914,4380_6 -4380_77948,295,4380_4950,Dublin,52308-00019-1,1,4380_7778208_1030109,4380_42 -4380_77991,297,4380_49503,Kinsale,85129-00008-1,0,4380_7778208_2260203,4380_627 -4380_77991,285,4380_49504,Kinsale,85132-00009-1,0,4380_7778208_2260203,4380_628 -4380_77991,288,4380_49505,Kinsale,85130-00011-1,0,4380_7778208_2260203,4380_628 -4380_77991,287,4380_49506,Kinsale,85134-00012-1,0,4380_7778208_2260203,4380_628 -4380_77991,286,4380_49507,Kinsale,85136-00010-1,0,4380_7778208_2260203,4380_628 -4380_77991,291,4380_49508,Kinsale,84817-00013-1,0,4380_7778208_2260201,4380_627 -4380_77991,289,4380_49509,Kinsale,85138-00014-1,0,4380_7778208_2260203,4380_628 -4380_77991,292,4380_49510,Kinsale,85137-00016-1,0,4380_7778208_2260203,4380_628 -4380_77991,290,4380_49511,Kinsale,85133-00015-1,0,4380_7778208_2260203,4380_628 -4380_77991,294,4380_49512,Kinsale,85135-00018-1,0,4380_7778208_2260203,4380_628 -4380_77991,295,4380_49513,Kinsale,85139-00019-1,0,4380_7778208_2260203,4380_628 -4380_77991,293,4380_49514,Kinsale,85131-00017-1,0,4380_7778208_2260203,4380_628 -4380_77991,296,4380_49515,Kinsale,84818-00021-1,0,4380_7778208_2260201,4380_627 -4380_77991,297,4380_49523,Kinsale,84338-00008-1,0,4380_7778208_2250204,4380_627 -4380_77991,285,4380_49524,Kinsale,84339-00009-1,0,4380_7778208_2250204,4380_628 -4380_77991,288,4380_49525,Kinsale,84345-00011-1,0,4380_7778208_2250204,4380_628 -4380_77991,287,4380_49526,Kinsale,84343-00012-1,0,4380_7778208_2250204,4380_628 -4380_77991,286,4380_49527,Kinsale,84336-00010-1,0,4380_7778208_2250204,4380_628 -4380_77991,291,4380_49528,Kinsale,84347-00013-1,0,4380_7778208_2250204,4380_627 -4380_77991,289,4380_49529,Kinsale,84341-00014-1,0,4380_7778208_2250204,4380_628 -4380_77991,292,4380_49530,Kinsale,84337-00016-1,0,4380_7778208_2250204,4380_628 -4380_77991,290,4380_49531,Kinsale,84340-00015-1,0,4380_7778208_2250204,4380_628 -4380_77991,294,4380_49532,Kinsale,84344-00018-1,0,4380_7778208_2250204,4380_628 -4380_77991,295,4380_49533,Kinsale,84342-00019-1,0,4380_7778208_2250204,4380_628 -4380_77991,293,4380_49534,Kinsale,84346-00017-1,0,4380_7778208_2250204,4380_628 -4380_77991,296,4380_49535,Kinsale,84348-00021-1,0,4380_7778208_2250204,4380_627 -4380_77991,297,4380_49543,Kinsale,84834-00008-1,0,4380_7778208_2260201,4380_627 -4380_77991,285,4380_49544,Kinsale,84835-00009-1,0,4380_7778208_2260201,4380_628 -4380_77991,288,4380_49545,Kinsale,84832-00011-1,0,4380_7778208_2260201,4380_628 -4380_77991,287,4380_49546,Kinsale,84837-00012-1,0,4380_7778208_2260201,4380_628 -4380_77991,286,4380_49547,Kinsale,84841-00010-1,0,4380_7778208_2260201,4380_628 -4380_77991,291,4380_49548,Kinsale,85153-00013-1,0,4380_7778208_2260203,4380_627 -4380_77991,289,4380_49549,Kinsale,84839-00014-1,0,4380_7778208_2260201,4380_628 -4380_77991,292,4380_49550,Kinsale,84842-00016-1,0,4380_7778208_2260201,4380_628 -4380_77991,290,4380_49551,Kinsale,84836-00015-1,0,4380_7778208_2260201,4380_628 -4380_77991,294,4380_49552,Kinsale,84838-00018-1,0,4380_7778208_2260201,4380_628 -4380_77991,295,4380_49553,Kinsale,84840-00019-1,0,4380_7778208_2260201,4380_628 -4380_77991,293,4380_49554,Kinsale,84833-00017-1,0,4380_7778208_2260201,4380_628 -4380_77991,296,4380_49555,Kinsale,85154-00021-1,0,4380_7778208_2260203,4380_627 -4380_77991,297,4380_49563,Kent Train Station,84996-00008-1,1,4380_7778208_2260203,4380_629 -4380_77991,285,4380_49564,Kent Train Station,84988-00009-1,1,4380_7778208_2260203,4380_630 -4380_77991,288,4380_49565,Kent Train Station,84994-00011-1,1,4380_7778208_2260203,4380_630 -4380_77991,287,4380_49566,Kent Train Station,84990-00012-1,1,4380_7778208_2260203,4380_630 -4380_77991,286,4380_49567,Kent Train Station,84986-00010-1,1,4380_7778208_2260203,4380_630 -4380_77991,291,4380_49568,Kent Train Station,84674-00013-1,1,4380_7778208_2260201,4380_631 -4380_77991,289,4380_49569,Kent Train Station,84992-00014-1,1,4380_7778208_2260203,4380_630 -4380_77948,291,4380_4957,Dublin,1231-00013-1,1,4380_7778208_1030101,4380_42 -4380_77991,292,4380_49570,Kent Train Station,84987-00016-1,1,4380_7778208_2260203,4380_630 -4380_77991,290,4380_49571,Kent Train Station,84989-00015-1,1,4380_7778208_2260203,4380_630 -4380_77991,294,4380_49572,Kent Train Station,84991-00018-1,1,4380_7778208_2260203,4380_630 -4380_77991,295,4380_49573,Kent Train Station,84993-00019-1,1,4380_7778208_2260203,4380_630 -4380_77991,293,4380_49574,Kent Train Station,84995-00017-1,1,4380_7778208_2260203,4380_630 -4380_77991,296,4380_49575,Kent Train Station,84675-00021-1,1,4380_7778208_2260201,4380_631 -4380_77948,296,4380_4958,Dublin,51826-00021-1,1,4380_7778208_1030101,4380_42 -4380_77991,297,4380_49583,Kent Train Station,84855-00008-1,1,4380_7778208_2260202,4380_629 -4380_77991,285,4380_49584,Kent Train Station,84847-00009-1,1,4380_7778208_2260202,4380_630 -4380_77991,288,4380_49585,Kent Train Station,84845-00011-1,1,4380_7778208_2260202,4380_630 -4380_77991,287,4380_49586,Kent Train Station,84849-00012-1,1,4380_7778208_2260202,4380_630 -4380_77991,286,4380_49587,Kent Train Station,84843-00010-1,1,4380_7778208_2260202,4380_630 -4380_77991,291,4380_49588,Kent Train Station,84853-00013-1,1,4380_7778208_2260202,4380_631 -4380_77991,289,4380_49589,Kent Train Station,84851-00014-1,1,4380_7778208_2260202,4380_630 -4380_77948,285,4380_4959,Dublin,1918-00009-1,1,4380_7778208_1030110,4380_42 -4380_77991,292,4380_49590,Kent Train Station,84844-00016-1,1,4380_7778208_2260202,4380_630 -4380_77991,290,4380_49591,Kent Train Station,84848-00015-1,1,4380_7778208_2260202,4380_630 -4380_77991,294,4380_49592,Kent Train Station,84850-00018-1,1,4380_7778208_2260202,4380_630 -4380_77991,295,4380_49593,Kent Train Station,84852-00019-1,1,4380_7778208_2260202,4380_630 -4380_77991,293,4380_49594,Kent Train Station,84846-00017-1,1,4380_7778208_2260202,4380_630 -4380_77991,296,4380_49595,Kent Train Station,84854-00021-1,1,4380_7778208_2260202,4380_631 -4380_77946,286,4380_496,Monasterboice,50541-00010-1,1,4380_7778208_1000916,4380_7 -4380_77948,286,4380_4960,Dublin,1928-00010-1,1,4380_7778208_1030110,4380_42 -4380_77991,297,4380_49603,Kent Train Station,84693-00008-1,1,4380_7778208_2260201,4380_629 -4380_77991,285,4380_49604,Kent Train Station,84691-00009-1,1,4380_7778208_2260201,4380_630 -4380_77991,288,4380_49605,Kent Train Station,84696-00011-1,1,4380_7778208_2260201,4380_630 -4380_77991,287,4380_49606,Kent Train Station,84694-00012-1,1,4380_7778208_2260201,4380_630 -4380_77991,286,4380_49607,Kent Train Station,84698-00010-1,1,4380_7778208_2260201,4380_630 -4380_77991,291,4380_49608,Kent Train Station,85010-00013-1,1,4380_7778208_2260203,4380_631 -4380_77991,289,4380_49609,Kent Train Station,84689-00014-1,1,4380_7778208_2260201,4380_630 -4380_77948,288,4380_4961,Dublin,1938-00011-1,1,4380_7778208_1030110,4380_42 -4380_77991,292,4380_49610,Kent Train Station,84699-00016-1,1,4380_7778208_2260201,4380_630 -4380_77991,290,4380_49611,Kent Train Station,84692-00015-1,1,4380_7778208_2260201,4380_630 -4380_77991,294,4380_49612,Kent Train Station,84695-00018-1,1,4380_7778208_2260201,4380_630 -4380_77991,295,4380_49613,Kent Train Station,84690-00019-1,1,4380_7778208_2260201,4380_630 -4380_77991,293,4380_49614,Kent Train Station,84697-00017-1,1,4380_7778208_2260201,4380_630 -4380_77991,296,4380_49615,Kent Train Station,85011-00021-1,1,4380_7778208_2260203,4380_631 -4380_77948,287,4380_4962,Dublin,1948-00012-1,1,4380_7778208_1030110,4380_42 -4380_77991,297,4380_49623,Kent Train Station,85014-00008-1,1,4380_7778208_2260203,4380_629 -4380_77991,285,4380_49624,Kent Train Station,85012-00009-1,1,4380_7778208_2260203,4380_630 -4380_77991,288,4380_49625,Kent Train Station,85019-00011-1,1,4380_7778208_2260203,4380_630 -4380_77991,287,4380_49626,Kent Train Station,85015-00012-1,1,4380_7778208_2260203,4380_630 -4380_77991,286,4380_49627,Kent Train Station,85021-00010-1,1,4380_7778208_2260203,4380_630 -4380_77991,291,4380_49628,Kent Train Station,84700-00013-1,1,4380_7778208_2260201,4380_631 -4380_77991,289,4380_49629,Kent Train Station,85017-00014-1,1,4380_7778208_2260203,4380_630 -4380_77948,289,4380_4963,Dublin,1908-00014-1,1,4380_7778208_1030110,4380_42 -4380_77991,292,4380_49630,Kent Train Station,85022-00016-1,1,4380_7778208_2260203,4380_630 -4380_77991,290,4380_49631,Kent Train Station,85013-00015-1,1,4380_7778208_2260203,4380_630 -4380_77991,294,4380_49632,Kent Train Station,85016-00018-1,1,4380_7778208_2260203,4380_630 -4380_77991,295,4380_49633,Kent Train Station,85018-00019-1,1,4380_7778208_2260203,4380_630 -4380_77991,293,4380_49634,Kent Train Station,85020-00017-1,1,4380_7778208_2260203,4380_630 -4380_77991,296,4380_49635,Kent Train Station,84701-00021-1,1,4380_7778208_2260201,4380_631 -4380_77948,290,4380_4964,Dublin,52377-00015-1,1,4380_7778208_1030110,4380_42 -4380_77991,297,4380_49643,Kent Train Station,84869-00008-1,1,4380_7778208_2260202,4380_629 -4380_77991,285,4380_49644,Kent Train Station,84876-00009-1,1,4380_7778208_2260202,4380_630 -4380_77991,288,4380_49645,Kent Train Station,84874-00011-1,1,4380_7778208_2260202,4380_630 -4380_77991,287,4380_49646,Kent Train Station,84880-00012-1,1,4380_7778208_2260202,4380_630 -4380_77991,286,4380_49647,Kent Train Station,84870-00010-1,1,4380_7778208_2260202,4380_630 -4380_77991,291,4380_49648,Kent Train Station,84878-00013-1,1,4380_7778208_2260202,4380_631 -4380_77991,289,4380_49649,Kent Train Station,84872-00014-1,1,4380_7778208_2260202,4380_630 -4380_77948,292,4380_4965,Dublin,52375-00016-1,1,4380_7778208_1030110,4380_42 -4380_77991,292,4380_49650,Kent Train Station,84871-00016-1,1,4380_7778208_2260202,4380_630 -4380_77991,290,4380_49651,Kent Train Station,84877-00015-1,1,4380_7778208_2260202,4380_630 -4380_77991,294,4380_49652,Kent Train Station,84881-00018-1,1,4380_7778208_2260202,4380_630 -4380_77991,295,4380_49653,Kent Train Station,84873-00019-1,1,4380_7778208_2260202,4380_630 -4380_77991,293,4380_49654,Kent Train Station,84875-00017-1,1,4380_7778208_2260202,4380_630 -4380_77991,296,4380_49655,Kent Train Station,84879-00021-1,1,4380_7778208_2260202,4380_631 -4380_77948,293,4380_4966,Dublin,52376-00017-1,1,4380_7778208_1030110,4380_42 -4380_77991,297,4380_49663,Kent Train Station,84719-00008-1,1,4380_7778208_2260201,4380_629 -4380_77991,285,4380_49664,Kent Train Station,84720-00009-1,1,4380_7778208_2260201,4380_630 -4380_77991,288,4380_49665,Kent Train Station,84722-00011-1,1,4380_7778208_2260201,4380_630 -4380_77991,287,4380_49666,Kent Train Station,84715-00012-1,1,4380_7778208_2260201,4380_630 -4380_77991,286,4380_49667,Kent Train Station,84724-00010-1,1,4380_7778208_2260201,4380_630 -4380_77991,291,4380_49668,Kent Train Station,85036-00013-1,1,4380_7778208_2260203,4380_631 -4380_77991,289,4380_49669,Kent Train Station,84717-00014-1,1,4380_7778208_2260201,4380_630 -4380_77948,294,4380_4967,Dublin,52374-00018-1,1,4380_7778208_1030110,4380_42 -4380_77991,292,4380_49670,Kent Train Station,84725-00016-1,1,4380_7778208_2260201,4380_630 -4380_77991,290,4380_49671,Kent Train Station,84721-00015-1,1,4380_7778208_2260201,4380_630 -4380_77991,294,4380_49672,Kent Train Station,84716-00018-1,1,4380_7778208_2260201,4380_630 -4380_77991,295,4380_49673,Kent Train Station,84718-00019-1,1,4380_7778208_2260201,4380_630 -4380_77991,293,4380_49674,Kent Train Station,84723-00017-1,1,4380_7778208_2260201,4380_630 -4380_77991,296,4380_49675,Kent Train Station,85037-00021-1,1,4380_7778208_2260203,4380_631 -4380_77948,295,4380_4968,Dublin,52378-00019-1,1,4380_7778208_1030110,4380_42 -4380_77991,297,4380_49683,Kent Train Station,85048-00008-1,1,4380_7778208_2260203,4380_629 -4380_77991,285,4380_49684,Kent Train Station,85042-00009-1,1,4380_7778208_2260203,4380_630 -4380_77991,288,4380_49685,Kent Train Station,85044-00011-1,1,4380_7778208_2260203,4380_630 -4380_77991,287,4380_49686,Kent Train Station,85040-00012-1,1,4380_7778208_2260203,4380_630 -4380_77991,286,4380_49687,Kent Train Station,85038-00010-1,1,4380_7778208_2260203,4380_630 -4380_77991,291,4380_49688,Kent Train Station,84726-00013-1,1,4380_7778208_2260201,4380_631 -4380_77991,289,4380_49689,Kent Train Station,85046-00014-1,1,4380_7778208_2260203,4380_630 -4380_77991,292,4380_49690,Kent Train Station,85039-00016-1,1,4380_7778208_2260203,4380_630 -4380_77991,290,4380_49691,Kent Train Station,85043-00015-1,1,4380_7778208_2260203,4380_630 -4380_77991,294,4380_49692,Kent Train Station,85041-00018-1,1,4380_7778208_2260203,4380_630 -4380_77991,295,4380_49693,Kent Train Station,85047-00019-1,1,4380_7778208_2260203,4380_630 -4380_77991,293,4380_49694,Kent Train Station,85045-00017-1,1,4380_7778208_2260203,4380_630 -4380_77991,296,4380_49695,Kent Train Station,84727-00021-1,1,4380_7778208_2260201,4380_631 -4380_77946,297,4380_497,Drogheda,50249-00008-1,1,4380_7778208_1000910,4380_8 -4380_77991,297,4380_49703,Kent Train Station,84899-00008-1,1,4380_7778208_2260202,4380_629 -4380_77991,285,4380_49704,Kent Train Station,84897-00009-1,1,4380_7778208_2260202,4380_630 -4380_77991,288,4380_49705,Kent Train Station,84906-00011-1,1,4380_7778208_2260202,4380_630 -4380_77991,287,4380_49706,Kent Train Station,84904-00012-1,1,4380_7778208_2260202,4380_630 -4380_77991,286,4380_49707,Kent Train Station,84902-00010-1,1,4380_7778208_2260202,4380_630 -4380_77991,291,4380_49708,Kent Train Station,84895-00013-1,1,4380_7778208_2260202,4380_631 -4380_77991,289,4380_49709,Kent Train Station,84900-00014-1,1,4380_7778208_2260202,4380_630 -4380_77991,292,4380_49710,Kent Train Station,84903-00016-1,1,4380_7778208_2260202,4380_630 -4380_77991,290,4380_49711,Kent Train Station,84898-00015-1,1,4380_7778208_2260202,4380_630 -4380_77991,294,4380_49712,Kent Train Station,84905-00018-1,1,4380_7778208_2260202,4380_630 -4380_77991,295,4380_49713,Kent Train Station,84901-00019-1,1,4380_7778208_2260202,4380_630 -4380_77991,293,4380_49714,Kent Train Station,84907-00017-1,1,4380_7778208_2260202,4380_630 -4380_77991,296,4380_49715,Kent Train Station,84896-00021-1,1,4380_7778208_2260202,4380_631 -4380_77991,297,4380_49723,Kent Train Station,84743-00008-1,1,4380_7778208_2260201,4380_629 -4380_77991,285,4380_49724,Kent Train Station,84748-00009-1,1,4380_7778208_2260201,4380_630 -4380_77991,288,4380_49725,Kent Train Station,84741-00011-1,1,4380_7778208_2260201,4380_630 -4380_77991,287,4380_49726,Kent Train Station,84750-00012-1,1,4380_7778208_2260201,4380_630 -4380_77991,286,4380_49727,Kent Train Station,84746-00010-1,1,4380_7778208_2260201,4380_630 -4380_77991,291,4380_49728,Kent Train Station,85062-00013-1,1,4380_7778208_2260203,4380_631 -4380_77991,289,4380_49729,Kent Train Station,84744-00014-1,1,4380_7778208_2260201,4380_630 -4380_77991,292,4380_49730,Kent Train Station,84747-00016-1,1,4380_7778208_2260201,4380_630 -4380_77991,290,4380_49731,Kent Train Station,84749-00015-1,1,4380_7778208_2260201,4380_630 -4380_77991,294,4380_49732,Kent Train Station,84751-00018-1,1,4380_7778208_2260201,4380_630 -4380_77991,295,4380_49733,Kent Train Station,84745-00019-1,1,4380_7778208_2260201,4380_630 -4380_77991,293,4380_49734,Kent Train Station,84742-00017-1,1,4380_7778208_2260201,4380_630 -4380_77991,296,4380_49735,Kent Train Station,85063-00021-1,1,4380_7778208_2260203,4380_631 -4380_77991,297,4380_49743,Kent Train Station,85066-00008-1,1,4380_7778208_2260203,4380_629 -4380_77991,285,4380_49744,Kent Train Station,85071-00009-1,1,4380_7778208_2260203,4380_630 -4380_77991,288,4380_49745,Kent Train Station,85064-00011-1,1,4380_7778208_2260203,4380_630 -4380_77991,287,4380_49746,Kent Train Station,85067-00012-1,1,4380_7778208_2260203,4380_630 -4380_77991,286,4380_49747,Kent Train Station,85069-00010-1,1,4380_7778208_2260203,4380_630 -4380_77991,291,4380_49748,Kent Train Station,84752-00013-1,1,4380_7778208_2260201,4380_631 -4380_77991,289,4380_49749,Kent Train Station,85073-00014-1,1,4380_7778208_2260203,4380_630 -4380_77991,292,4380_49750,Kent Train Station,85070-00016-1,1,4380_7778208_2260203,4380_630 -4380_77991,290,4380_49751,Kent Train Station,85072-00015-1,1,4380_7778208_2260203,4380_630 -4380_77991,294,4380_49752,Kent Train Station,85068-00018-1,1,4380_7778208_2260203,4380_630 -4380_77991,295,4380_49753,Kent Train Station,85074-00019-1,1,4380_7778208_2260203,4380_630 -4380_77991,293,4380_49754,Kent Train Station,85065-00017-1,1,4380_7778208_2260203,4380_630 -4380_77991,296,4380_49755,Kent Train Station,84753-00021-1,1,4380_7778208_2260201,4380_631 -4380_77948,297,4380_4976,Dublin,1435-00008-1,1,4380_7778208_1030103,4380_42 -4380_77991,297,4380_49763,Kent Train Station,84921-00008-1,1,4380_7778208_2260202,4380_629 -4380_77991,285,4380_49764,Kent Train Station,84924-00009-1,1,4380_7778208_2260202,4380_630 -4380_77991,288,4380_49765,Kent Train Station,84922-00011-1,1,4380_7778208_2260202,4380_630 -4380_77991,287,4380_49766,Kent Train Station,84930-00012-1,1,4380_7778208_2260202,4380_630 -4380_77991,286,4380_49767,Kent Train Station,84926-00010-1,1,4380_7778208_2260202,4380_630 -4380_77991,291,4380_49768,Kent Train Station,84932-00013-1,1,4380_7778208_2260202,4380_631 -4380_77991,289,4380_49769,Kent Train Station,84928-00014-1,1,4380_7778208_2260202,4380_630 -4380_77948,291,4380_4977,Dublin,1331-00013-1,1,4380_7778208_1030102,4380_42 -4380_77991,292,4380_49770,Kent Train Station,84927-00016-1,1,4380_7778208_2260202,4380_630 -4380_77991,290,4380_49771,Kent Train Station,84925-00015-1,1,4380_7778208_2260202,4380_630 -4380_77991,294,4380_49772,Kent Train Station,84931-00018-1,1,4380_7778208_2260202,4380_630 -4380_77991,295,4380_49773,Kent Train Station,84929-00019-1,1,4380_7778208_2260202,4380_630 -4380_77991,293,4380_49774,Kent Train Station,84923-00017-1,1,4380_7778208_2260202,4380_630 -4380_77991,296,4380_49775,Kent Train Station,84933-00021-1,1,4380_7778208_2260202,4380_631 -4380_77948,296,4380_4978,Dublin,51886-00021-1,1,4380_7778208_1030102,4380_42 -4380_77991,297,4380_49783,Kent Train Station,84775-00008-1,1,4380_7778208_2260201,4380_629 -4380_77991,285,4380_49784,Kent Train Station,84776-00009-1,1,4380_7778208_2260201,4380_630 -4380_77991,288,4380_49785,Kent Train Station,84771-00011-1,1,4380_7778208_2260201,4380_630 -4380_77991,287,4380_49786,Kent Train Station,84769-00012-1,1,4380_7778208_2260201,4380_630 -4380_77991,286,4380_49787,Kent Train Station,84767-00010-1,1,4380_7778208_2260201,4380_630 -4380_77991,291,4380_49788,Kent Train Station,85088-00013-1,1,4380_7778208_2260203,4380_631 -4380_77991,289,4380_49789,Kent Train Station,84773-00014-1,1,4380_7778208_2260201,4380_630 -4380_77948,285,4380_4979,Dublin,1781-00009-1,1,4380_7778208_1030108,4380_42 -4380_77991,292,4380_49790,Kent Train Station,84768-00016-1,1,4380_7778208_2260201,4380_630 -4380_77991,290,4380_49791,Kent Train Station,84777-00015-1,1,4380_7778208_2260201,4380_630 -4380_77991,294,4380_49792,Kent Train Station,84770-00018-1,1,4380_7778208_2260201,4380_630 -4380_77991,295,4380_49793,Kent Train Station,84774-00019-1,1,4380_7778208_2260201,4380_630 -4380_77991,293,4380_49794,Kent Train Station,84772-00017-1,1,4380_7778208_2260201,4380_630 -4380_77991,296,4380_49795,Kent Train Station,85089-00021-1,1,4380_7778208_2260203,4380_631 -4380_77946,287,4380_498,Drogheda,50431-00012-1,1,4380_7778208_1000914,4380_6 -4380_77948,286,4380_4980,Dublin,1793-00010-1,1,4380_7778208_1030108,4380_42 -4380_77991,297,4380_49803,Kent Train Station,85098-00008-1,1,4380_7778208_2260203,4380_629 -4380_77991,285,4380_49804,Kent Train Station,85094-00009-1,1,4380_7778208_2260203,4380_630 -4380_77991,288,4380_49805,Kent Train Station,85096-00011-1,1,4380_7778208_2260203,4380_630 -4380_77991,287,4380_49806,Kent Train Station,85090-00012-1,1,4380_7778208_2260203,4380_630 -4380_77991,286,4380_49807,Kent Train Station,85092-00010-1,1,4380_7778208_2260203,4380_630 -4380_77991,291,4380_49808,Kent Train Station,84778-00013-1,1,4380_7778208_2260201,4380_631 -4380_77991,289,4380_49809,Kent Train Station,85099-00014-1,1,4380_7778208_2260203,4380_630 -4380_77948,288,4380_4981,Dublin,1805-00011-1,1,4380_7778208_1030108,4380_42 -4380_77991,292,4380_49810,Kent Train Station,85093-00016-1,1,4380_7778208_2260203,4380_630 -4380_77991,290,4380_49811,Kent Train Station,85095-00015-1,1,4380_7778208_2260203,4380_630 -4380_77991,294,4380_49812,Kent Train Station,85091-00018-1,1,4380_7778208_2260203,4380_630 -4380_77991,295,4380_49813,Kent Train Station,85100-00019-1,1,4380_7778208_2260203,4380_630 -4380_77991,293,4380_49814,Kent Train Station,85097-00017-1,1,4380_7778208_2260203,4380_630 -4380_77991,296,4380_49815,Kent Train Station,84779-00021-1,1,4380_7778208_2260201,4380_631 -4380_77948,287,4380_4982,Dublin,1817-00012-1,1,4380_7778208_1030108,4380_42 -4380_77991,297,4380_49823,Kent Train Station,84951-00008-1,1,4380_7778208_2260202,4380_629 -4380_77991,285,4380_49824,Kent Train Station,84958-00009-1,1,4380_7778208_2260202,4380_630 -4380_77991,288,4380_49825,Kent Train Station,84952-00011-1,1,4380_7778208_2260202,4380_630 -4380_77991,287,4380_49826,Kent Train Station,84956-00012-1,1,4380_7778208_2260202,4380_630 -4380_77991,286,4380_49827,Kent Train Station,84947-00010-1,1,4380_7778208_2260202,4380_630 -4380_77991,291,4380_49828,Kent Train Station,84954-00013-1,1,4380_7778208_2260202,4380_631 -4380_77991,289,4380_49829,Kent Train Station,84949-00014-1,1,4380_7778208_2260202,4380_630 -4380_77948,289,4380_4983,Dublin,1769-00014-1,1,4380_7778208_1030108,4380_42 -4380_77991,292,4380_49830,Kent Train Station,84948-00016-1,1,4380_7778208_2260202,4380_630 -4380_77991,290,4380_49831,Kent Train Station,84959-00015-1,1,4380_7778208_2260202,4380_630 -4380_77991,294,4380_49832,Kent Train Station,84957-00018-1,1,4380_7778208_2260202,4380_630 -4380_77991,295,4380_49833,Kent Train Station,84950-00019-1,1,4380_7778208_2260202,4380_630 -4380_77991,293,4380_49834,Kent Train Station,84953-00017-1,1,4380_7778208_2260202,4380_630 -4380_77991,296,4380_49835,Kent Train Station,84955-00021-1,1,4380_7778208_2260202,4380_631 -4380_77948,290,4380_4984,Dublin,52255-00015-1,1,4380_7778208_1030108,4380_42 -4380_77991,297,4380_49843,Kent Train Station,84793-00008-1,1,4380_7778208_2260201,4380_629 -4380_77991,285,4380_49844,Kent Train Station,84796-00009-1,1,4380_7778208_2260201,4380_630 -4380_77991,288,4380_49845,Kent Train Station,84794-00011-1,1,4380_7778208_2260201,4380_630 -4380_77991,287,4380_49846,Kent Train Station,84800-00012-1,1,4380_7778208_2260201,4380_630 -4380_77991,286,4380_49847,Kent Train Station,84798-00010-1,1,4380_7778208_2260201,4380_630 -4380_77991,291,4380_49848,Kent Train Station,85114-00013-1,1,4380_7778208_2260203,4380_631 -4380_77991,289,4380_49849,Kent Train Station,84802-00014-1,1,4380_7778208_2260201,4380_630 -4380_77948,292,4380_4985,Dublin,52254-00016-1,1,4380_7778208_1030108,4380_42 -4380_77991,292,4380_49850,Kent Train Station,84799-00016-1,1,4380_7778208_2260201,4380_630 -4380_77991,290,4380_49851,Kent Train Station,84797-00015-1,1,4380_7778208_2260201,4380_630 -4380_77991,294,4380_49852,Kent Train Station,84801-00018-1,1,4380_7778208_2260201,4380_630 -4380_77991,295,4380_49853,Kent Train Station,84803-00019-1,1,4380_7778208_2260201,4380_630 -4380_77991,293,4380_49854,Kent Train Station,84795-00017-1,1,4380_7778208_2260201,4380_630 -4380_77991,296,4380_49855,Kent Train Station,85115-00021-1,1,4380_7778208_2260203,4380_631 -4380_77948,293,4380_4986,Dublin,52256-00017-1,1,4380_7778208_1030108,4380_42 -4380_77991,297,4380_49863,Kent Train Station,85124-00008-1,1,4380_7778208_2260203,4380_629 -4380_77991,285,4380_49864,Kent Train Station,85122-00009-1,1,4380_7778208_2260203,4380_630 -4380_77991,288,4380_49865,Kent Train Station,85125-00011-1,1,4380_7778208_2260203,4380_630 -4380_77991,287,4380_49866,Kent Train Station,85120-00012-1,1,4380_7778208_2260203,4380_630 -4380_77991,286,4380_49867,Kent Train Station,85118-00010-1,1,4380_7778208_2260203,4380_630 -4380_77991,291,4380_49868,Kent Train Station,84804-00013-1,1,4380_7778208_2260201,4380_631 -4380_77991,289,4380_49869,Kent Train Station,85116-00014-1,1,4380_7778208_2260203,4380_630 -4380_77948,294,4380_4987,Dublin,52253-00018-1,1,4380_7778208_1030108,4380_42 -4380_77991,292,4380_49870,Kent Train Station,85119-00016-1,1,4380_7778208_2260203,4380_630 -4380_77991,290,4380_49871,Kent Train Station,85123-00015-1,1,4380_7778208_2260203,4380_630 -4380_77991,294,4380_49872,Kent Train Station,85121-00018-1,1,4380_7778208_2260203,4380_630 -4380_77991,295,4380_49873,Kent Train Station,85117-00019-1,1,4380_7778208_2260203,4380_630 -4380_77991,293,4380_49874,Kent Train Station,85126-00017-1,1,4380_7778208_2260203,4380_630 -4380_77991,296,4380_49875,Kent Train Station,84805-00021-1,1,4380_7778208_2260201,4380_631 -4380_77948,295,4380_4988,Dublin,52252-00019-1,1,4380_7778208_1030108,4380_42 -4380_77991,297,4380_49883,Kent Train Station,84979-00008-1,1,4380_7778208_2260202,4380_629 -4380_77991,285,4380_49884,Kent Train Station,84975-00009-1,1,4380_7778208_2260202,4380_630 -4380_77991,288,4380_49885,Kent Train Station,84977-00011-1,1,4380_7778208_2260202,4380_630 -4380_77991,287,4380_49886,Kent Train Station,84982-00012-1,1,4380_7778208_2260202,4380_630 -4380_77991,286,4380_49887,Kent Train Station,84980-00010-1,1,4380_7778208_2260202,4380_630 -4380_77991,291,4380_49888,Kent Train Station,84984-00013-1,1,4380_7778208_2260202,4380_631 -4380_77991,289,4380_49889,Kent Train Station,84973-00014-1,1,4380_7778208_2260202,4380_630 -4380_77991,292,4380_49890,Kent Train Station,84981-00016-1,1,4380_7778208_2260202,4380_630 -4380_77991,290,4380_49891,Kent Train Station,84976-00015-1,1,4380_7778208_2260202,4380_630 -4380_77991,294,4380_49892,Kent Train Station,84983-00018-1,1,4380_7778208_2260202,4380_630 -4380_77991,295,4380_49893,Kent Train Station,84974-00019-1,1,4380_7778208_2260202,4380_630 -4380_77991,293,4380_49894,Kent Train Station,84978-00017-1,1,4380_7778208_2260202,4380_630 -4380_77991,296,4380_49895,Kent Train Station,84985-00021-1,1,4380_7778208_2260202,4380_631 -4380_77946,287,4380_499,Monasterboice,50545-00012-1,1,4380_7778208_1000916,4380_7 -4380_77991,297,4380_49903,Kent Train Station,84827-00008-1,1,4380_7778208_2260201,4380_629 -4380_77991,285,4380_49904,Kent Train Station,84828-00009-1,1,4380_7778208_2260201,4380_630 -4380_77991,288,4380_49905,Kent Train Station,84825-00011-1,1,4380_7778208_2260201,4380_630 -4380_77991,287,4380_49906,Kent Train Station,84821-00012-1,1,4380_7778208_2260201,4380_630 -4380_77991,286,4380_49907,Kent Train Station,84819-00010-1,1,4380_7778208_2260201,4380_630 -4380_77991,291,4380_49908,Kent Train Station,85140-00013-1,1,4380_7778208_2260203,4380_631 -4380_77991,289,4380_49909,Kent Train Station,84823-00014-1,1,4380_7778208_2260201,4380_630 -4380_77991,292,4380_49910,Kent Train Station,84820-00016-1,1,4380_7778208_2260201,4380_630 -4380_77991,290,4380_49911,Kent Train Station,84829-00015-1,1,4380_7778208_2260201,4380_630 -4380_77991,294,4380_49912,Kent Train Station,84822-00018-1,1,4380_7778208_2260201,4380_630 -4380_77991,295,4380_49913,Kent Train Station,84824-00019-1,1,4380_7778208_2260201,4380_630 -4380_77991,293,4380_49914,Kent Train Station,84826-00017-1,1,4380_7778208_2260201,4380_630 -4380_77991,296,4380_49915,Kent Train Station,85141-00021-1,1,4380_7778208_2260203,4380_631 -4380_77991,297,4380_49923,Kent Train Station,85146-00008-1,1,4380_7778208_2260203,4380_629 -4380_77991,285,4380_49924,Kent Train Station,85144-00009-1,1,4380_7778208_2260203,4380_630 -4380_77991,288,4380_49925,Kent Train Station,85147-00011-1,1,4380_7778208_2260203,4380_630 -4380_77991,287,4380_49926,Kent Train Station,85149-00012-1,1,4380_7778208_2260203,4380_630 -4380_77991,286,4380_49927,Kent Train Station,85142-00010-1,1,4380_7778208_2260203,4380_630 -4380_77991,291,4380_49928,Kent Train Station,84830-00013-1,1,4380_7778208_2260201,4380_631 -4380_77991,289,4380_49929,Kent Train Station,85151-00014-1,1,4380_7778208_2260203,4380_630 -4380_77991,292,4380_49930,Kent Train Station,85143-00016-1,1,4380_7778208_2260203,4380_630 -4380_77991,290,4380_49931,Kent Train Station,85145-00015-1,1,4380_7778208_2260203,4380_630 -4380_77991,294,4380_49932,Kent Train Station,85150-00018-1,1,4380_7778208_2260203,4380_630 -4380_77991,295,4380_49933,Kent Train Station,85152-00019-1,1,4380_7778208_2260203,4380_630 -4380_77991,293,4380_49934,Kent Train Station,85148-00017-1,1,4380_7778208_2260203,4380_630 -4380_77991,296,4380_49935,Kent Train Station,84831-00021-1,1,4380_7778208_2260201,4380_631 -4380_77991,297,4380_49943,Kent Train Station,84361-00008-1,1,4380_7778208_2250204,4380_629 -4380_77991,285,4380_49944,Kent Train Station,84359-00009-1,1,4380_7778208_2250204,4380_630 -4380_77991,288,4380_49945,Kent Train Station,84355-00011-1,1,4380_7778208_2250204,4380_630 -4380_77991,287,4380_49946,Kent Train Station,84349-00012-1,1,4380_7778208_2250204,4380_630 -4380_77991,286,4380_49947,Kent Train Station,84351-00010-1,1,4380_7778208_2250204,4380_630 -4380_77991,291,4380_49948,Kent Train Station,84357-00013-1,1,4380_7778208_2250204,4380_631 -4380_77991,289,4380_49949,Kent Train Station,84353-00014-1,1,4380_7778208_2250204,4380_630 -4380_77948,291,4380_4995,Dublin,1413-00013-1,1,4380_7778208_1030103,4380_42 -4380_77991,292,4380_49950,Kent Train Station,84352-00016-1,1,4380_7778208_2250204,4380_630 -4380_77991,290,4380_49951,Kent Train Station,84360-00015-1,1,4380_7778208_2250204,4380_630 -4380_77991,294,4380_49952,Kent Train Station,84350-00018-1,1,4380_7778208_2250204,4380_630 -4380_77991,295,4380_49953,Kent Train Station,84354-00019-1,1,4380_7778208_2250204,4380_630 -4380_77991,293,4380_49954,Kent Train Station,84356-00017-1,1,4380_7778208_2250204,4380_630 -4380_77991,296,4380_49955,Kent Train Station,84358-00021-1,1,4380_7778208_2250204,4380_631 -4380_77948,296,4380_4996,Dublin,51946-00021-1,1,4380_7778208_1030103,4380_42 -4380_78131,285,4380_49961,MTU,85157-00009-1,1,4380_7778208_2260204,4380_632 -4380_78131,288,4380_49962,MTU,85161-00011-1,1,4380_7778208_2260204,4380_632 -4380_78131,287,4380_49963,MTU,85155-00012-1,1,4380_7778208_2260204,4380_632 -4380_78131,286,4380_49964,MTU,85163-00010-1,1,4380_7778208_2260204,4380_632 -4380_78131,289,4380_49965,MTU,85159-00014-1,1,4380_7778208_2260204,4380_632 -4380_78131,292,4380_49966,MTU,85164-00016-1,1,4380_7778208_2260204,4380_632 -4380_78131,290,4380_49967,MTU,85158-00015-1,1,4380_7778208_2260204,4380_632 -4380_78131,294,4380_49968,MTU,85156-00018-1,1,4380_7778208_2260204,4380_632 -4380_78131,295,4380_49969,MTU,85160-00019-1,1,4380_7778208_2260204,4380_632 -4380_77948,285,4380_4997,Dublin,1473-00009-1,1,4380_7778208_1030104,4380_42 -4380_78131,293,4380_49970,MTU,85162-00017-1,1,4380_7778208_2260204,4380_632 -4380_77934,285,4380_49978,Sligo,46634-00009-1,0,4380_7778208_230101,4380_633 -4380_77934,286,4380_49979,Sligo,46631-00010-1,0,4380_7778208_230101,4380_633 -4380_77948,286,4380_4998,Dublin,1485-00010-1,1,4380_7778208_1030104,4380_42 -4380_77934,297,4380_49980,Sligo,46633-00008-1,0,4380_7778208_230101,4380_633 -4380_77934,287,4380_49981,Sligo,46627-00012-1,0,4380_7778208_230101,4380_633 -4380_77934,288,4380_49982,Sligo,46625-00011-1,0,4380_7778208_230101,4380_633 -4380_77934,289,4380_49983,Sligo,46629-00014-1,0,4380_7778208_230101,4380_633 -4380_77934,290,4380_49984,Sligo,46635-00015-1,0,4380_7778208_230101,4380_633 -4380_77934,291,4380_49985,Sligo,46636-00013-1,0,4380_7778208_230101,4380_633 -4380_77934,292,4380_49986,Sligo,46632-00016-1,0,4380_7778208_230101,4380_633 -4380_77934,293,4380_49987,Sligo,46626-00017-1,0,4380_7778208_230101,4380_633 -4380_77934,295,4380_49988,Sligo,46630-00019-1,0,4380_7778208_230101,4380_633 -4380_77934,294,4380_49989,Sligo,46628-00018-1,0,4380_7778208_230101,4380_633 -4380_77948,288,4380_4999,Dublin,1497-00011-1,1,4380_7778208_1030104,4380_42 -4380_77934,296,4380_49990,Sligo,46637-00021-1,0,4380_7778208_230101,4380_633 -4380_77934,285,4380_49998,Sligo,46692-00009-1,0,4380_7778208_230501,4380_635 -4380_77934,286,4380_49999,Sligo,46698-00010-1,0,4380_7778208_230501,4380_635 -4380_77946,286,4380_50,Dundalk,114779-00010-1,0,4380_7778208_10088802,4380_4 -4380_77946,288,4380_500,Drogheda,50427-00011-1,1,4380_7778208_1000914,4380_6 -4380_77948,287,4380_5000,Dublin,1509-00012-1,1,4380_7778208_1030104,4380_42 -4380_77934,297,4380_50000,Sligo,46702-00008-1,0,4380_7778208_230501,4380_635 -4380_77934,287,4380_50001,Sligo,46694-00012-1,0,4380_7778208_230501,4380_635 -4380_77934,288,4380_50002,Sligo,46703-00011-1,0,4380_7778208_230501,4380_635 -4380_77934,289,4380_50003,Sligo,46700-00014-1,0,4380_7778208_230501,4380_635 -4380_77934,290,4380_50004,Sligo,46693-00015-1,0,4380_7778208_230501,4380_635 -4380_77934,291,4380_50005,Sligo,46696-00013-1,0,4380_7778208_230501,4380_635 -4380_77934,292,4380_50006,Sligo,46699-00016-1,0,4380_7778208_230501,4380_635 -4380_77934,293,4380_50007,Sligo,46704-00017-1,0,4380_7778208_230501,4380_635 -4380_77934,295,4380_50008,Sligo,46701-00019-1,0,4380_7778208_230501,4380_635 -4380_77934,294,4380_50009,Sligo,46695-00018-1,0,4380_7778208_230501,4380_635 -4380_77948,289,4380_5001,Dublin,1461-00014-1,1,4380_7778208_1030104,4380_42 -4380_77934,296,4380_50010,Sligo,46697-00021-1,0,4380_7778208_230501,4380_635 -4380_77934,285,4380_50018,Sligo,46751-00009-1,0,4380_7778208_230502,4380_637 -4380_77934,286,4380_50019,Sligo,46749-00010-1,0,4380_7778208_230502,4380_637 -4380_77948,290,4380_5002,Dublin,52015-00015-1,1,4380_7778208_1030104,4380_42 -4380_77934,297,4380_50020,Sligo,46677-00008-1,0,4380_7778208_230102,4380_637 -4380_77934,287,4380_50021,Sligo,46747-00012-1,0,4380_7778208_230502,4380_637 -4380_77934,288,4380_50022,Sligo,46743-00011-1,0,4380_7778208_230502,4380_637 -4380_77934,289,4380_50023,Sligo,46745-00014-1,0,4380_7778208_230502,4380_637 -4380_77934,290,4380_50024,Sligo,46752-00015-1,0,4380_7778208_230502,4380_637 -4380_77934,291,4380_50025,Sligo,46753-00013-1,0,4380_7778208_230502,4380_637 -4380_77934,292,4380_50026,Sligo,46750-00016-1,0,4380_7778208_230502,4380_637 -4380_77934,293,4380_50027,Sligo,46744-00017-1,0,4380_7778208_230502,4380_637 -4380_77934,295,4380_50028,Sligo,46746-00019-1,0,4380_7778208_230502,4380_637 -4380_77934,294,4380_50029,Sligo,46748-00018-1,0,4380_7778208_230502,4380_637 -4380_77948,292,4380_5003,Dublin,52013-00016-1,1,4380_7778208_1030104,4380_42 -4380_77934,296,4380_50030,Sligo,46754-00021-1,0,4380_7778208_230502,4380_637 -4380_77934,285,4380_50038,Sligo,46656-00009-1,0,4380_7778208_230101,4380_634 -4380_77934,286,4380_50039,Sligo,46651-00010-1,0,4380_7778208_230101,4380_634 -4380_77948,293,4380_5004,Dublin,52017-00017-1,1,4380_7778208_1030104,4380_42 -4380_77934,297,4380_50040,Sligo,46655-00008-1,0,4380_7778208_230101,4380_634 -4380_77934,287,4380_50041,Sligo,46660-00012-1,0,4380_7778208_230101,4380_634 -4380_77934,288,4380_50042,Sligo,46662-00011-1,0,4380_7778208_230101,4380_634 -4380_77934,289,4380_50043,Sligo,46658-00014-1,0,4380_7778208_230101,4380_634 -4380_77934,290,4380_50044,Sligo,46657-00015-1,0,4380_7778208_230101,4380_634 -4380_77934,291,4380_50045,Sligo,46653-00013-1,0,4380_7778208_230101,4380_634 -4380_77934,292,4380_50046,Sligo,46652-00016-1,0,4380_7778208_230101,4380_634 -4380_77934,293,4380_50047,Sligo,46663-00017-1,0,4380_7778208_230101,4380_634 -4380_77934,295,4380_50048,Sligo,46659-00019-1,0,4380_7778208_230101,4380_634 -4380_77934,294,4380_50049,Sligo,46661-00018-1,0,4380_7778208_230101,4380_634 -4380_77948,294,4380_5005,Dublin,52014-00018-1,1,4380_7778208_1030104,4380_42 -4380_77934,296,4380_50050,Sligo,46654-00021-1,0,4380_7778208_230101,4380_634 -4380_77934,285,4380_50058,Sligo,46727-00009-1,0,4380_7778208_230501,4380_636 -4380_77934,286,4380_50059,Sligo,46725-00010-1,0,4380_7778208_230501,4380_636 -4380_77948,295,4380_5006,Dublin,52016-00019-1,1,4380_7778208_1030104,4380_42 -4380_77934,297,4380_50060,Sligo,46722-00008-1,0,4380_7778208_230501,4380_636 -4380_77934,287,4380_50061,Sligo,46720-00012-1,0,4380_7778208_230501,4380_636 -4380_77934,288,4380_50062,Sligo,46723-00011-1,0,4380_7778208_230501,4380_636 -4380_77934,289,4380_50063,Sligo,46729-00014-1,0,4380_7778208_230501,4380_636 -4380_77934,290,4380_50064,Sligo,46728-00015-1,0,4380_7778208_230501,4380_636 -4380_77934,291,4380_50065,Sligo,46718-00013-1,0,4380_7778208_230501,4380_636 -4380_77934,292,4380_50066,Sligo,46726-00016-1,0,4380_7778208_230501,4380_636 -4380_77934,293,4380_50067,Sligo,46724-00017-1,0,4380_7778208_230501,4380_636 -4380_77934,295,4380_50068,Sligo,46730-00019-1,0,4380_7778208_230501,4380_636 -4380_77934,294,4380_50069,Sligo,46721-00018-1,0,4380_7778208_230501,4380_636 -4380_77934,296,4380_50070,Sligo,46719-00021-1,0,4380_7778208_230501,4380_636 -4380_77934,285,4380_50077,Sligo,46775-00009-1,0,4380_7778208_230502,4380_638 -4380_77934,286,4380_50078,Sligo,46773-00010-1,0,4380_7778208_230502,4380_638 -4380_77934,287,4380_50079,Sligo,46769-00012-1,0,4380_7778208_230502,4380_638 -4380_77934,288,4380_50080,Sligo,46771-00011-1,0,4380_7778208_230502,4380_638 -4380_77934,289,4380_50081,Sligo,46767-00014-1,0,4380_7778208_230502,4380_638 -4380_77934,290,4380_50082,Sligo,46776-00015-1,0,4380_7778208_230502,4380_638 -4380_77934,291,4380_50083,Sligo,46777-00013-1,0,4380_7778208_230502,4380_638 -4380_77934,292,4380_50084,Sligo,46774-00016-1,0,4380_7778208_230502,4380_638 -4380_77934,293,4380_50085,Sligo,46772-00017-1,0,4380_7778208_230502,4380_638 -4380_77934,295,4380_50086,Sligo,46768-00019-1,0,4380_7778208_230502,4380_638 -4380_77934,294,4380_50087,Sligo,46770-00018-1,0,4380_7778208_230502,4380_638 -4380_77934,296,4380_50088,Sligo,46778-00021-1,0,4380_7778208_230502,4380_638 -4380_77934,285,4380_50096,Dublin via Airport,46683-00009-1,1,4380_7778208_230501,4380_641 -4380_77934,286,4380_50097,Dublin via Airport,46681-00010-1,1,4380_7778208_230501,4380_641 -4380_77934,297,4380_50098,Dublin via Airport,46691-00008-1,1,4380_7778208_230501,4380_645 -4380_77934,287,4380_50099,Dublin via Airport,46689-00012-1,1,4380_7778208_230501,4380_641 -4380_77946,288,4380_501,Monasterboice,50543-00011-1,1,4380_7778208_1000916,4380_7 -4380_77934,288,4380_50100,Dublin via Airport,46679-00011-1,1,4380_7778208_230501,4380_641 -4380_77934,289,4380_50101,Dublin via Airport,46687-00014-1,1,4380_7778208_230501,4380_641 -4380_77934,290,4380_50102,Dublin via Airport,46684-00015-1,1,4380_7778208_230501,4380_641 -4380_77934,291,4380_50103,Dublin via Airport,46685-00013-1,1,4380_7778208_230501,4380_641 -4380_77934,292,4380_50104,Dublin via Airport,46682-00016-1,1,4380_7778208_230501,4380_641 -4380_77934,293,4380_50105,Dublin via Airport,46680-00017-1,1,4380_7778208_230501,4380_641 -4380_77934,295,4380_50106,Dublin via Airport,46688-00019-1,1,4380_7778208_230501,4380_641 -4380_77934,294,4380_50107,Dublin via Airport,46690-00018-1,1,4380_7778208_230501,4380_641 -4380_77934,296,4380_50108,Dublin via Airport,46686-00021-1,1,4380_7778208_230501,4380_641 -4380_77934,285,4380_50115,Dublin via Airport,46735-00009-1,1,4380_7778208_230502,4380_643 -4380_77934,286,4380_50116,Dublin via Airport,46739-00010-1,1,4380_7778208_230502,4380_643 -4380_77934,287,4380_50117,Dublin via Airport,46733-00012-1,1,4380_7778208_230502,4380_643 -4380_77934,288,4380_50118,Dublin via Airport,46737-00011-1,1,4380_7778208_230502,4380_643 -4380_77934,289,4380_50119,Dublin via Airport,46731-00014-1,1,4380_7778208_230502,4380_643 -4380_77934,290,4380_50120,Dublin via Airport,46736-00015-1,1,4380_7778208_230502,4380_643 -4380_77934,291,4380_50121,Dublin via Airport,46741-00013-1,1,4380_7778208_230502,4380_643 -4380_77934,292,4380_50122,Dublin via Airport,46740-00016-1,1,4380_7778208_230502,4380_643 -4380_77934,293,4380_50123,Dublin via Airport,46738-00017-1,1,4380_7778208_230502,4380_643 -4380_77934,295,4380_50124,Dublin via Airport,46732-00019-1,1,4380_7778208_230502,4380_643 -4380_77934,294,4380_50125,Dublin via Airport,46734-00018-1,1,4380_7778208_230502,4380_643 -4380_77934,296,4380_50126,Dublin via Airport,46742-00021-1,1,4380_7778208_230502,4380_643 -4380_77934,285,4380_50134,Dublin via Airport,46642-00009-1,1,4380_7778208_230101,4380_639 -4380_77934,286,4380_50135,Dublin via Airport,46647-00010-1,1,4380_7778208_230101,4380_639 -4380_77934,297,4380_50136,Dublin via Airport,46646-00008-1,1,4380_7778208_230101,4380_639 -4380_77934,287,4380_50137,Dublin via Airport,46644-00012-1,1,4380_7778208_230101,4380_639 -4380_77934,288,4380_50138,Dublin via Airport,46649-00011-1,1,4380_7778208_230101,4380_639 -4380_77934,289,4380_50139,Dublin via Airport,46638-00014-1,1,4380_7778208_230101,4380_639 -4380_77948,297,4380_5014,Dublin,1253-00008-1,1,4380_7778208_1030101,4380_42 -4380_77934,290,4380_50140,Dublin via Airport,46643-00015-1,1,4380_7778208_230101,4380_639 -4380_77934,291,4380_50141,Dublin via Airport,46640-00013-1,1,4380_7778208_230101,4380_639 -4380_77934,292,4380_50142,Dublin via Airport,46648-00016-1,1,4380_7778208_230101,4380_639 -4380_77934,293,4380_50143,Dublin via Airport,46650-00017-1,1,4380_7778208_230101,4380_639 -4380_77934,295,4380_50144,Dublin via Airport,46639-00019-1,1,4380_7778208_230101,4380_639 -4380_77934,294,4380_50145,Dublin via Airport,46645-00018-1,1,4380_7778208_230101,4380_639 -4380_77934,296,4380_50146,Dublin via Airport,46641-00021-1,1,4380_7778208_230101,4380_639 -4380_77948,291,4380_5015,Dublin,1531-00013-1,1,4380_7778208_1030104,4380_42 -4380_77934,285,4380_50154,Dublin via Airport,46714-00009-1,1,4380_7778208_230501,4380_642 -4380_77934,286,4380_50155,Dublin via Airport,46712-00010-1,1,4380_7778208_230501,4380_642 -4380_77934,297,4380_50156,Dublin via Airport,46709-00008-1,1,4380_7778208_230501,4380_642 -4380_77934,287,4380_50157,Dublin via Airport,46707-00012-1,1,4380_7778208_230501,4380_642 -4380_77934,288,4380_50158,Dublin via Airport,46705-00011-1,1,4380_7778208_230501,4380_642 -4380_77934,289,4380_50159,Dublin via Airport,46710-00014-1,1,4380_7778208_230501,4380_642 -4380_77948,296,4380_5016,Dublin,52018-00021-1,1,4380_7778208_1030104,4380_42 -4380_77934,290,4380_50160,Dublin via Airport,46715-00015-1,1,4380_7778208_230501,4380_642 -4380_77934,291,4380_50161,Dublin via Airport,46716-00013-1,1,4380_7778208_230501,4380_642 -4380_77934,292,4380_50162,Dublin via Airport,46713-00016-1,1,4380_7778208_230501,4380_642 -4380_77934,293,4380_50163,Dublin via Airport,46706-00017-1,1,4380_7778208_230501,4380_642 -4380_77934,295,4380_50164,Dublin via Airport,46711-00019-1,1,4380_7778208_230501,4380_642 -4380_77934,294,4380_50165,Dublin via Airport,46708-00018-1,1,4380_7778208_230501,4380_642 -4380_77934,296,4380_50166,Dublin via Airport,46717-00021-1,1,4380_7778208_230501,4380_642 -4380_77948,285,4380_5017,Dublin,1707-00009-1,1,4380_7778208_1030107,4380_42 -4380_77934,285,4380_50173,Dublin,46759-00009-1,1,4380_7778208_230502,4380_644 -4380_77934,286,4380_50174,Dublin,46763-00010-1,1,4380_7778208_230502,4380_644 -4380_77934,287,4380_50175,Dublin,46765-00012-1,1,4380_7778208_230502,4380_644 -4380_77934,288,4380_50176,Dublin,46761-00011-1,1,4380_7778208_230502,4380_644 -4380_77934,289,4380_50177,Dublin,46755-00014-1,1,4380_7778208_230502,4380_644 -4380_77934,290,4380_50178,Dublin,46760-00015-1,1,4380_7778208_230502,4380_644 -4380_77934,291,4380_50179,Dublin,46757-00013-1,1,4380_7778208_230502,4380_644 -4380_77948,286,4380_5018,Dublin,1719-00010-1,1,4380_7778208_1030107,4380_42 -4380_77934,292,4380_50180,Dublin,46764-00016-1,1,4380_7778208_230502,4380_644 -4380_77934,293,4380_50181,Dublin,46762-00017-1,1,4380_7778208_230502,4380_644 -4380_77934,295,4380_50182,Dublin,46756-00019-1,1,4380_7778208_230502,4380_644 -4380_77934,294,4380_50183,Dublin,46766-00018-1,1,4380_7778208_230502,4380_644 -4380_77934,296,4380_50184,Dublin,46758-00021-1,1,4380_7778208_230502,4380_644 -4380_77934,297,4380_50186,Dublin,46678-00008-1,1,4380_7778208_230102,4380_644 -4380_77948,288,4380_5019,Dublin,1731-00011-1,1,4380_7778208_1030107,4380_42 -4380_77934,285,4380_50194,Dublin via Airport,46673-00009-1,1,4380_7778208_230101,4380_640 -4380_77934,286,4380_50195,Dublin via Airport,46675-00010-1,1,4380_7778208_230101,4380_640 -4380_77934,297,4380_50196,Dublin via Airport,46670-00008-1,1,4380_7778208_230101,4380_640 -4380_77934,287,4380_50197,Dublin via Airport,46668-00012-1,1,4380_7778208_230101,4380_640 -4380_77934,288,4380_50198,Dublin via Airport,46666-00011-1,1,4380_7778208_230101,4380_640 -4380_77934,289,4380_50199,Dublin via Airport,46664-00014-1,1,4380_7778208_230101,4380_640 -4380_77946,289,4380_502,Drogheda,50433-00014-1,1,4380_7778208_1000914,4380_6 -4380_77948,287,4380_5020,Dublin,1743-00012-1,1,4380_7778208_1030107,4380_42 -4380_77934,290,4380_50200,Dublin via Airport,46674-00015-1,1,4380_7778208_230101,4380_640 -4380_77934,291,4380_50201,Dublin via Airport,46671-00013-1,1,4380_7778208_230101,4380_640 -4380_77934,292,4380_50202,Dublin via Airport,46676-00016-1,1,4380_7778208_230101,4380_640 -4380_77934,293,4380_50203,Dublin via Airport,46667-00017-1,1,4380_7778208_230101,4380_640 -4380_77934,295,4380_50204,Dublin via Airport,46665-00019-1,1,4380_7778208_230101,4380_640 -4380_77934,294,4380_50205,Dublin via Airport,46669-00018-1,1,4380_7778208_230101,4380_640 -4380_77934,296,4380_50206,Dublin via Airport,46672-00021-1,1,4380_7778208_230101,4380_640 -4380_77992,291,4380_50208,Cloughduv,85371-00013-1,0,4380_7778208_2330204,4380_666 -4380_77992,296,4380_50209,Cloughduv,85372-00021-1,0,4380_7778208_2330204,4380_666 -4380_77948,289,4380_5021,Dublin,1695-00014-1,1,4380_7778208_1030107,4380_42 -4380_77948,290,4380_5022,Dublin,52198-00015-1,1,4380_7778208_1030107,4380_42 -4380_77992,285,4380_50220,Srelane,85453-00009-1,0,4380_7778208_2330205,4380_658 -4380_77992,285,4380_50221,Macroom,85515-00009-1,0,4380_7778208_2330206,4380_654 -4380_77992,288,4380_50222,Srelane,85455-00011-1,0,4380_7778208_2330205,4380_658 -4380_77992,288,4380_50223,Macroom,85511-00011-1,0,4380_7778208_2330206,4380_654 -4380_77992,287,4380_50224,Srelane,85447-00012-1,0,4380_7778208_2330205,4380_658 -4380_77992,287,4380_50225,Macroom,85513-00012-1,0,4380_7778208_2330206,4380_654 -4380_77992,286,4380_50226,Srelane,85451-00010-1,0,4380_7778208_2330205,4380_658 -4380_77992,286,4380_50227,Macroom,85507-00010-1,0,4380_7778208_2330206,4380_654 -4380_77992,289,4380_50228,Srelane,85449-00014-1,0,4380_7778208_2330205,4380_658 -4380_77992,289,4380_50229,Macroom,85509-00014-1,0,4380_7778208_2330206,4380_654 -4380_77948,292,4380_5023,Dublin,52196-00016-1,1,4380_7778208_1030107,4380_42 -4380_77992,292,4380_50230,Srelane,85452-00016-1,0,4380_7778208_2330205,4380_658 -4380_77992,292,4380_50231,Macroom,85508-00016-1,0,4380_7778208_2330206,4380_654 -4380_77992,290,4380_50232,Srelane,85454-00015-1,0,4380_7778208_2330205,4380_658 -4380_77992,290,4380_50233,Macroom,85516-00015-1,0,4380_7778208_2330206,4380_654 -4380_77992,294,4380_50234,Srelane,85448-00018-1,0,4380_7778208_2330205,4380_658 -4380_77992,294,4380_50235,Macroom,85514-00018-1,0,4380_7778208_2330206,4380_654 -4380_77992,295,4380_50236,Srelane,85450-00019-1,0,4380_7778208_2330205,4380_658 -4380_77992,295,4380_50237,Macroom,85510-00019-1,0,4380_7778208_2330206,4380_654 -4380_77992,293,4380_50238,Srelane,85456-00017-1,0,4380_7778208_2330205,4380_658 -4380_77992,293,4380_50239,Macroom,85512-00017-1,0,4380_7778208_2330206,4380_654 -4380_77948,293,4380_5024,Dublin,52200-00017-1,1,4380_7778208_1030107,4380_42 -4380_77992,285,4380_50245,Macroom,85183-00009-1,0,4380_7778208_2330201,4380_649 -4380_77992,288,4380_50246,Macroom,85181-00011-1,0,4380_7778208_2330201,4380_649 -4380_77992,287,4380_50247,Macroom,85177-00012-1,0,4380_7778208_2330201,4380_649 -4380_77992,286,4380_50248,Macroom,85175-00010-1,0,4380_7778208_2330201,4380_649 -4380_77992,289,4380_50249,Macroom,85179-00014-1,0,4380_7778208_2330201,4380_649 -4380_77948,294,4380_5025,Dublin,52197-00018-1,1,4380_7778208_1030107,4380_42 -4380_77992,292,4380_50250,Macroom,85176-00016-1,0,4380_7778208_2330201,4380_649 -4380_77992,290,4380_50251,Macroom,85184-00015-1,0,4380_7778208_2330201,4380_649 -4380_77992,294,4380_50252,Macroom,85178-00018-1,0,4380_7778208_2330201,4380_649 -4380_77992,295,4380_50253,Macroom,85180-00019-1,0,4380_7778208_2330201,4380_649 -4380_77992,293,4380_50254,Macroom,85182-00017-1,0,4380_7778208_2330201,4380_649 -4380_77948,295,4380_5026,Dublin,52199-00019-1,1,4380_7778208_1030107,4380_42 -4380_77992,285,4380_50266,Macroom,85263-00009-1,0,4380_7778208_2330202,4380_652 -4380_77992,285,4380_50267,Macroom,85315-00009-1,0,4380_7778208_2330203,4380_654 -4380_77992,288,4380_50268,Macroom,85265-00011-1,0,4380_7778208_2330202,4380_652 -4380_77992,288,4380_50269,Macroom,85321-00011-1,0,4380_7778208_2330203,4380_654 -4380_77992,287,4380_50270,Macroom,85271-00012-1,0,4380_7778208_2330202,4380_652 -4380_77992,287,4380_50271,Ballingeary,85319-00012-1,0,4380_7778208_2330203,4380_661 -4380_77992,286,4380_50272,Macroom,85267-00010-1,0,4380_7778208_2330202,4380_652 -4380_77992,286,4380_50273,Macroom,85323-00010-1,0,4380_7778208_2330203,4380_654 -4380_77992,291,4380_50274,Macroom,85269-00013-1,0,4380_7778208_2330202,4380_662 -4380_77992,289,4380_50275,Macroom,85261-00014-1,0,4380_7778208_2330202,4380_652 -4380_77992,289,4380_50276,Macroom,85317-00014-1,0,4380_7778208_2330203,4380_654 -4380_77992,292,4380_50277,Macroom,85268-00016-1,0,4380_7778208_2330202,4380_652 -4380_77992,292,4380_50278,Macroom,85324-00016-1,0,4380_7778208_2330203,4380_654 -4380_77992,290,4380_50279,Macroom,85264-00015-1,0,4380_7778208_2330202,4380_652 -4380_77992,290,4380_50280,Macroom,85316-00015-1,0,4380_7778208_2330203,4380_654 -4380_77992,294,4380_50281,Macroom,85272-00018-1,0,4380_7778208_2330202,4380_652 -4380_77992,294,4380_50282,Ballingeary,85320-00018-1,0,4380_7778208_2330203,4380_661 -4380_77992,295,4380_50283,Macroom,85262-00019-1,0,4380_7778208_2330202,4380_652 -4380_77992,295,4380_50284,Macroom,85318-00019-1,0,4380_7778208_2330203,4380_654 -4380_77992,293,4380_50285,Macroom,85266-00017-1,0,4380_7778208_2330202,4380_652 -4380_77992,293,4380_50286,Macroom,85322-00017-1,0,4380_7778208_2330203,4380_654 -4380_77992,296,4380_50287,Macroom,85270-00021-1,0,4380_7778208_2330202,4380_662 -4380_77992,285,4380_50293,Farnanes,85475-00009-1,0,4380_7778208_2330205,4380_659 -4380_77992,288,4380_50294,Farnanes,85471-00011-1,0,4380_7778208_2330205,4380_659 -4380_77992,287,4380_50295,Farnanes,85469-00012-1,0,4380_7778208_2330205,4380_659 -4380_77992,286,4380_50296,Farnanes,85467-00010-1,0,4380_7778208_2330205,4380_659 -4380_77992,289,4380_50297,Farnanes,85473-00014-1,0,4380_7778208_2330205,4380_659 -4380_77992,292,4380_50298,Farnanes,85468-00016-1,0,4380_7778208_2330205,4380_659 -4380_77992,290,4380_50299,Farnanes,85476-00015-1,0,4380_7778208_2330205,4380_659 -4380_77946,289,4380_503,Monasterboice,50537-00014-1,1,4380_7778208_1000916,4380_7 -4380_77992,294,4380_50300,Farnanes,85470-00018-1,0,4380_7778208_2330205,4380_659 -4380_77992,295,4380_50301,Farnanes,85474-00019-1,0,4380_7778208_2330205,4380_659 -4380_77992,293,4380_50302,Farnanes,85472-00017-1,0,4380_7778208_2330205,4380_659 -4380_77992,297,4380_50309,Farnanes,85205-00008-1,0,4380_7778208_2330201,4380_646 -4380_77992,285,4380_50310,Macroom,85201-00009-1,0,4380_7778208_2330201,4380_649 -4380_77992,288,4380_50311,Macroom,85195-00011-1,0,4380_7778208_2330201,4380_649 -4380_77992,287,4380_50312,Macroom,85197-00012-1,0,4380_7778208_2330201,4380_649 -4380_77992,286,4380_50313,Macroom,85203-00010-1,0,4380_7778208_2330201,4380_649 -4380_77992,289,4380_50314,Macroom,85199-00014-1,0,4380_7778208_2330201,4380_649 -4380_77992,292,4380_50315,Macroom,85204-00016-1,0,4380_7778208_2330201,4380_649 -4380_77992,290,4380_50316,Macroom,85202-00015-1,0,4380_7778208_2330201,4380_649 -4380_77992,294,4380_50317,Macroom,85198-00018-1,0,4380_7778208_2330201,4380_649 -4380_77992,295,4380_50318,Macroom,85200-00019-1,0,4380_7778208_2330201,4380_649 -4380_77992,293,4380_50319,Macroom,85196-00017-1,0,4380_7778208_2330201,4380_649 -4380_77992,285,4380_50325,Macroom,85405-00009-1,0,4380_7778208_2330204,4380_656 -4380_77992,288,4380_50326,Macroom,85407-00011-1,0,4380_7778208_2330204,4380_656 -4380_77992,287,4380_50327,Macroom,85403-00012-1,0,4380_7778208_2330204,4380_656 -4380_77992,286,4380_50328,Macroom,85399-00010-1,0,4380_7778208_2330204,4380_656 -4380_77992,289,4380_50329,Macroom,85401-00014-1,0,4380_7778208_2330204,4380_656 -4380_77948,291,4380_5033,Dublin,1956-00013-1,1,4380_7778208_1030110,4380_42 -4380_77992,292,4380_50330,Macroom,85400-00016-1,0,4380_7778208_2330204,4380_656 -4380_77992,290,4380_50331,Macroom,85406-00015-1,0,4380_7778208_2330204,4380_656 -4380_77992,294,4380_50332,Macroom,85404-00018-1,0,4380_7778208_2330204,4380_656 -4380_77992,295,4380_50333,Macroom,85402-00019-1,0,4380_7778208_2330204,4380_656 -4380_77992,293,4380_50334,Macroom,85408-00017-1,0,4380_7778208_2330204,4380_656 -4380_77992,291,4380_50336,Cloughduv,85409-00013-1,0,4380_7778208_2330204,4380_667 -4380_77992,296,4380_50337,Cloughduv,85410-00021-1,0,4380_7778208_2330204,4380_667 -4380_77948,296,4380_5034,Dublin,52380-00021-1,1,4380_7778208_1030110,4380_42 -4380_77992,285,4380_50343,Farnanes,85495-00009-1,0,4380_7778208_2330205,4380_646 -4380_77992,288,4380_50344,Farnanes,85493-00011-1,0,4380_7778208_2330205,4380_646 -4380_77992,287,4380_50345,Farnanes,85491-00012-1,0,4380_7778208_2330205,4380_646 -4380_77992,286,4380_50346,Farnanes,85489-00010-1,0,4380_7778208_2330205,4380_646 -4380_77992,289,4380_50347,Farnanes,85487-00014-1,0,4380_7778208_2330205,4380_646 -4380_77992,292,4380_50348,Farnanes,85490-00016-1,0,4380_7778208_2330205,4380_646 -4380_77992,290,4380_50349,Farnanes,85496-00015-1,0,4380_7778208_2330205,4380_646 -4380_77948,285,4380_5035,Dublin,1851-00009-1,1,4380_7778208_1030109,4380_42 -4380_77992,294,4380_50350,Farnanes,85492-00018-1,0,4380_7778208_2330205,4380_646 -4380_77992,295,4380_50351,Farnanes,85488-00019-1,0,4380_7778208_2330205,4380_646 -4380_77992,293,4380_50352,Farnanes,85494-00017-1,0,4380_7778208_2330205,4380_646 -4380_77992,285,4380_50359,Macroom,85292-00009-1,0,4380_7778208_2330202,4380_653 -4380_77948,286,4380_5036,Dublin,1861-00010-1,1,4380_7778208_1030109,4380_42 -4380_77992,288,4380_50360,Macroom,85296-00011-1,0,4380_7778208_2330202,4380_653 -4380_77992,287,4380_50361,Ballingeary,85294-00012-1,0,4380_7778208_2330202,4380_660 -4380_77992,286,4380_50362,Macroom,85290-00010-1,0,4380_7778208_2330202,4380_653 -4380_77992,291,4380_50363,Macroom,85300-00013-1,0,4380_7778208_2330202,4380_663 -4380_77992,289,4380_50364,Macroom,85298-00014-1,0,4380_7778208_2330202,4380_653 -4380_77992,292,4380_50365,Macroom,85291-00016-1,0,4380_7778208_2330202,4380_653 -4380_77992,290,4380_50366,Macroom,85293-00015-1,0,4380_7778208_2330202,4380_653 -4380_77992,294,4380_50367,Ballingeary,85295-00018-1,0,4380_7778208_2330202,4380_660 -4380_77992,295,4380_50368,Macroom,85299-00019-1,0,4380_7778208_2330202,4380_653 -4380_77992,293,4380_50369,Macroom,85297-00017-1,0,4380_7778208_2330202,4380_653 -4380_77948,288,4380_5037,Dublin,1871-00011-1,1,4380_7778208_1030109,4380_42 -4380_77992,296,4380_50370,Macroom,85301-00021-1,0,4380_7778208_2330202,4380_663 -4380_77992,285,4380_50376,Macroom,85431-00009-1,0,4380_7778208_2330204,4380_657 -4380_77992,288,4380_50377,Macroom,85425-00011-1,0,4380_7778208_2330204,4380_657 -4380_77992,287,4380_50378,Macroom,85423-00012-1,0,4380_7778208_2330204,4380_657 -4380_77992,286,4380_50379,Macroom,85427-00010-1,0,4380_7778208_2330204,4380_657 -4380_77948,287,4380_5038,Dublin,1881-00012-1,1,4380_7778208_1030109,4380_42 -4380_77992,289,4380_50380,Macroom,85429-00014-1,0,4380_7778208_2330204,4380_657 -4380_77992,292,4380_50381,Macroom,85428-00016-1,0,4380_7778208_2330204,4380_657 -4380_77992,290,4380_50382,Macroom,85432-00015-1,0,4380_7778208_2330204,4380_657 -4380_77992,294,4380_50383,Macroom,85424-00018-1,0,4380_7778208_2330204,4380_657 -4380_77992,295,4380_50384,Macroom,85430-00019-1,0,4380_7778208_2330204,4380_657 -4380_77992,293,4380_50385,Macroom,85426-00017-1,0,4380_7778208_2330204,4380_657 -4380_77992,297,4380_50387,Macroom,85217-00008-1,0,4380_7778208_2330201,4380_647 -4380_77948,289,4380_5039,Dublin,1841-00014-1,1,4380_7778208_1030109,4380_42 -4380_77992,285,4380_50394,Crookstown,85224-00009-1,0,4380_7778208_2330201,4380_650 -4380_77992,288,4380_50395,Crookstown,85220-00011-1,0,4380_7778208_2330201,4380_650 -4380_77992,287,4380_50396,Crookstown,85222-00012-1,0,4380_7778208_2330201,4380_650 -4380_77992,286,4380_50397,Crookstown,85226-00010-1,0,4380_7778208_2330201,4380_650 -4380_77992,291,4380_50398,Crookstown,85355-00013-1,0,4380_7778208_2330203,4380_664 -4380_77992,289,4380_50399,Crookstown,85218-00014-1,0,4380_7778208_2330201,4380_650 -4380_77946,290,4380_504,Drogheda,50430-00015-1,1,4380_7778208_1000914,4380_6 -4380_77948,290,4380_5040,Dublin,52321-00015-1,1,4380_7778208_1030109,4380_42 -4380_77992,292,4380_50400,Crookstown,85227-00016-1,0,4380_7778208_2330201,4380_650 -4380_77992,290,4380_50401,Crookstown,85225-00015-1,0,4380_7778208_2330201,4380_650 -4380_77992,294,4380_50402,Crookstown,85223-00018-1,0,4380_7778208_2330201,4380_650 -4380_77992,295,4380_50403,Crookstown,85219-00019-1,0,4380_7778208_2330201,4380_650 -4380_77992,293,4380_50404,Crookstown,85221-00017-1,0,4380_7778208_2330201,4380_650 -4380_77992,296,4380_50405,Crookstown,85356-00021-1,0,4380_7778208_2330203,4380_664 -4380_77948,292,4380_5041,Dublin,52319-00016-1,1,4380_7778208_1030109,4380_42 -4380_77992,285,4380_50411,Macroom,85357-00009-1,0,4380_7778208_2330203,4380_655 -4380_77992,288,4380_50412,Macroom,85365-00011-1,0,4380_7778208_2330203,4380_655 -4380_77992,287,4380_50413,Macroom,85359-00012-1,0,4380_7778208_2330203,4380_655 -4380_77992,286,4380_50414,Macroom,85363-00010-1,0,4380_7778208_2330203,4380_655 -4380_77992,289,4380_50415,Macroom,85361-00014-1,0,4380_7778208_2330203,4380_655 -4380_77992,292,4380_50416,Macroom,85364-00016-1,0,4380_7778208_2330203,4380_655 -4380_77992,290,4380_50417,Macroom,85358-00015-1,0,4380_7778208_2330203,4380_655 -4380_77992,294,4380_50418,Macroom,85360-00018-1,0,4380_7778208_2330203,4380_655 -4380_77992,295,4380_50419,Macroom,85362-00019-1,0,4380_7778208_2330203,4380_655 -4380_77948,293,4380_5042,Dublin,52318-00017-1,1,4380_7778208_1030109,4380_42 -4380_77992,293,4380_50420,Macroom,85366-00017-1,0,4380_7778208_2330203,4380_655 -4380_77992,297,4380_50422,Macroom,85304-00008-1,0,4380_7778208_2330202,4380_648 -4380_77992,285,4380_50429,Macroom,85239-00009-1,0,4380_7778208_2330201,4380_651 -4380_77948,294,4380_5043,Dublin,52322-00018-1,1,4380_7778208_1030109,4380_42 -4380_77992,288,4380_50430,Macroom,85241-00011-1,0,4380_7778208_2330201,4380_651 -4380_77992,287,4380_50431,Macroom,85247-00012-1,0,4380_7778208_2330201,4380_651 -4380_77992,286,4380_50432,Macroom,85243-00010-1,0,4380_7778208_2330201,4380_651 -4380_77992,291,4380_50433,Macroom,85369-00013-1,0,4380_7778208_2330203,4380_665 -4380_77992,289,4380_50434,Macroom,85245-00014-1,0,4380_7778208_2330201,4380_651 -4380_77992,292,4380_50435,Macroom,85244-00016-1,0,4380_7778208_2330201,4380_651 -4380_77992,290,4380_50436,Macroom,85240-00015-1,0,4380_7778208_2330201,4380_651 -4380_77992,294,4380_50437,Macroom,85248-00018-1,0,4380_7778208_2330201,4380_651 -4380_77992,295,4380_50438,Macroom,85246-00019-1,0,4380_7778208_2330201,4380_651 -4380_77992,293,4380_50439,Macroom,85242-00017-1,0,4380_7778208_2330201,4380_651 -4380_77948,295,4380_5044,Dublin,52320-00019-1,1,4380_7778208_1030109,4380_42 -4380_77992,296,4380_50440,Macroom,85370-00021-1,0,4380_7778208_2330203,4380_665 -4380_77992,285,4380_50446,Cork,85167-00009-1,1,4380_7778208_2330201,4380_669 -4380_77992,288,4380_50447,Cork,85173-00011-1,1,4380_7778208_2330201,4380_669 -4380_77992,287,4380_50448,Cork,85171-00012-1,1,4380_7778208_2330201,4380_669 -4380_77992,286,4380_50449,Cork,85169-00010-1,1,4380_7778208_2330201,4380_669 -4380_77992,289,4380_50450,Cork,85165-00014-1,1,4380_7778208_2330201,4380_669 -4380_77992,292,4380_50451,Cork,85170-00016-1,1,4380_7778208_2330201,4380_669 -4380_77992,290,4380_50452,Cork,85168-00015-1,1,4380_7778208_2330201,4380_669 -4380_77992,294,4380_50453,Cork,85172-00018-1,1,4380_7778208_2330201,4380_669 -4380_77992,295,4380_50454,Cork,85166-00019-1,1,4380_7778208_2330201,4380_669 -4380_77992,293,4380_50455,Cork,85174-00017-1,1,4380_7778208_2330201,4380_669 -4380_77992,285,4380_50461,Cork,85257-00009-1,1,4380_7778208_2330202,4380_674 -4380_77992,288,4380_50462,Cork,85253-00011-1,1,4380_7778208_2330202,4380_674 -4380_77992,287,4380_50463,Cork,85251-00012-1,1,4380_7778208_2330202,4380_674 -4380_77992,286,4380_50464,Cork,85255-00010-1,1,4380_7778208_2330202,4380_674 -4380_77992,289,4380_50465,Cork,85249-00014-1,1,4380_7778208_2330202,4380_674 -4380_77992,292,4380_50466,Cork,85256-00016-1,1,4380_7778208_2330202,4380_674 -4380_77992,290,4380_50467,Cork,85258-00015-1,1,4380_7778208_2330202,4380_674 -4380_77992,294,4380_50468,Cork,85252-00018-1,1,4380_7778208_2330202,4380_674 -4380_77992,295,4380_50469,Cork,85250-00019-1,1,4380_7778208_2330202,4380_674 -4380_77992,293,4380_50470,Cork,85254-00017-1,1,4380_7778208_2330202,4380_674 -4380_77992,285,4380_50477,Cork,85313-00009-1,1,4380_7778208_2330203,4380_676 -4380_77992,288,4380_50478,Cork,85307-00011-1,1,4380_7778208_2330203,4380_676 -4380_77992,287,4380_50479,Cork,85311-00012-1,1,4380_7778208_2330203,4380_676 -4380_77992,286,4380_50480,Cork,85309-00010-1,1,4380_7778208_2330203,4380_676 -4380_77992,291,4380_50481,Cork,85259-00013-1,1,4380_7778208_2330202,4380_670 -4380_77992,289,4380_50482,Cork,85305-00014-1,1,4380_7778208_2330203,4380_676 -4380_77992,292,4380_50483,Cork,85310-00016-1,1,4380_7778208_2330203,4380_676 -4380_77992,290,4380_50484,Cork,85314-00015-1,1,4380_7778208_2330203,4380_676 -4380_77992,294,4380_50485,Cork,85312-00018-1,1,4380_7778208_2330203,4380_676 -4380_77992,295,4380_50486,Cork,85306-00019-1,1,4380_7778208_2330203,4380_676 -4380_77992,293,4380_50487,Cork,85308-00017-1,1,4380_7778208_2330203,4380_676 -4380_77992,296,4380_50488,Cork,85260-00021-1,1,4380_7778208_2330202,4380_670 -4380_77992,285,4380_50494,Cork,85377-00009-1,1,4380_7778208_2330204,4380_677 -4380_77992,288,4380_50495,Cork,85379-00011-1,1,4380_7778208_2330204,4380_677 -4380_77992,287,4380_50496,Cork,85375-00012-1,1,4380_7778208_2330204,4380_677 -4380_77992,286,4380_50497,Cork,85373-00010-1,1,4380_7778208_2330204,4380_677 -4380_77992,289,4380_50498,Cork,85381-00014-1,1,4380_7778208_2330204,4380_677 -4380_77992,292,4380_50499,Cork,85374-00016-1,1,4380_7778208_2330204,4380_677 -4380_77946,290,4380_505,Monasterboice,50540-00015-1,1,4380_7778208_1000916,4380_7 -4380_77992,290,4380_50500,Cork,85378-00015-1,1,4380_7778208_2330204,4380_677 -4380_77992,294,4380_50501,Cork,85376-00018-1,1,4380_7778208_2330204,4380_677 -4380_77992,295,4380_50502,Cork,85382-00019-1,1,4380_7778208_2330204,4380_677 -4380_77992,293,4380_50503,Cork,85380-00017-1,1,4380_7778208_2330204,4380_677 -4380_77992,291,4380_50505,Cork,85383-00013-1,1,4380_7778208_2330204,4380_686 -4380_77992,296,4380_50506,Cork,85384-00021-1,1,4380_7778208_2330204,4380_686 -4380_77992,285,4380_50512,Cork,85463-00009-1,1,4380_7778208_2330205,4380_680 -4380_77992,288,4380_50513,Cork,85457-00011-1,1,4380_7778208_2330205,4380_680 -4380_77992,287,4380_50514,Cork,85461-00012-1,1,4380_7778208_2330205,4380_680 -4380_77992,286,4380_50515,Cork,85465-00010-1,1,4380_7778208_2330205,4380_680 -4380_77992,289,4380_50516,Cork,85459-00014-1,1,4380_7778208_2330205,4380_680 -4380_77992,292,4380_50517,Cork,85466-00016-1,1,4380_7778208_2330205,4380_680 -4380_77992,290,4380_50518,Cork,85464-00015-1,1,4380_7778208_2330205,4380_680 -4380_77992,294,4380_50519,Cork,85462-00018-1,1,4380_7778208_2330205,4380_680 -4380_77948,297,4380_5052,Dublin,1341-00008-1,1,4380_7778208_1030102,4380_42 -4380_77992,295,4380_50520,Cork,85460-00019-1,1,4380_7778208_2330205,4380_680 -4380_77992,293,4380_50521,Cork,85458-00017-1,1,4380_7778208_2330205,4380_680 -4380_77992,285,4380_50527,Cork,85525-00009-1,1,4380_7778208_2330206,4380_682 -4380_77992,288,4380_50528,Cork,85517-00011-1,1,4380_7778208_2330206,4380_682 -4380_77992,287,4380_50529,Cork,85519-00012-1,1,4380_7778208_2330206,4380_682 -4380_77948,291,4380_5053,Dublin,1675-00013-1,1,4380_7778208_1030106,4380_42 -4380_77992,286,4380_50530,Cork,85521-00010-1,1,4380_7778208_2330206,4380_682 -4380_77992,289,4380_50531,Cork,85523-00014-1,1,4380_7778208_2330206,4380_682 -4380_77992,292,4380_50532,Cork,85522-00016-1,1,4380_7778208_2330206,4380_682 -4380_77992,290,4380_50533,Cork,85526-00015-1,1,4380_7778208_2330206,4380_682 -4380_77992,294,4380_50534,Cork,85520-00018-1,1,4380_7778208_2330206,4380_682 -4380_77992,295,4380_50535,Cork,85524-00019-1,1,4380_7778208_2330206,4380_682 -4380_77992,293,4380_50536,Cork,85518-00017-1,1,4380_7778208_2330206,4380_682 -4380_77992,297,4380_50538,Cork,85273-00008-1,1,4380_7778208_2330202,4380_670 -4380_77948,296,4380_5054,Dublin,52129-00021-1,1,4380_7778208_1030106,4380_42 -4380_77992,285,4380_50544,Cork,85185-00009-1,1,4380_7778208_2330201,4380_671 -4380_77992,288,4380_50545,Cork,85193-00011-1,1,4380_7778208_2330201,4380_671 -4380_77992,287,4380_50546,Cork,85191-00012-1,1,4380_7778208_2330201,4380_671 -4380_77992,286,4380_50547,Cork,85189-00010-1,1,4380_7778208_2330201,4380_671 -4380_77992,289,4380_50548,Cork,85187-00014-1,1,4380_7778208_2330201,4380_671 -4380_77992,292,4380_50549,Cork,85190-00016-1,1,4380_7778208_2330201,4380_671 -4380_77948,285,4380_5055,Dublin,1623-00009-1,1,4380_7778208_1030106,4380_42 -4380_77992,290,4380_50550,Cork,85186-00015-1,1,4380_7778208_2330201,4380_671 -4380_77992,294,4380_50551,Cork,85192-00018-1,1,4380_7778208_2330201,4380_671 -4380_77992,295,4380_50552,Cork,85188-00019-1,1,4380_7778208_2330201,4380_671 -4380_77992,293,4380_50553,Cork,85194-00017-1,1,4380_7778208_2330201,4380_671 -4380_77948,286,4380_5056,Dublin,1635-00010-1,1,4380_7778208_1030106,4380_42 -4380_77992,285,4380_50560,Cork,85278-00009-1,1,4380_7778208_2330202,4380_678 -4380_77992,288,4380_50561,Cork,85274-00011-1,1,4380_7778208_2330202,4380_678 -4380_77992,287,4380_50562,Cork,85284-00012-1,1,4380_7778208_2330202,4380_675 -4380_77992,286,4380_50563,Cork,85282-00010-1,1,4380_7778208_2330202,4380_675 -4380_77992,291,4380_50564,Cork,85276-00013-1,1,4380_7778208_2330202,4380_671 -4380_77992,289,4380_50565,Cork,85280-00014-1,1,4380_7778208_2330202,4380_675 -4380_77992,292,4380_50566,Cork,85283-00016-1,1,4380_7778208_2330202,4380_675 -4380_77992,290,4380_50567,Cork,85279-00015-1,1,4380_7778208_2330202,4380_678 -4380_77992,294,4380_50568,Cork,85285-00018-1,1,4380_7778208_2330202,4380_675 -4380_77992,295,4380_50569,Cork,85281-00019-1,1,4380_7778208_2330202,4380_675 -4380_77948,288,4380_5057,Dublin,1647-00011-1,1,4380_7778208_1030106,4380_42 -4380_77992,293,4380_50570,Cork,85275-00017-1,1,4380_7778208_2330202,4380_678 -4380_77992,296,4380_50571,Cork,85277-00021-1,1,4380_7778208_2330202,4380_671 -4380_77992,287,4380_50573,Macroom,85329-00012-1,1,4380_7778208_2330203,4380_683 -4380_77992,294,4380_50574,Macroom,85330-00018-1,1,4380_7778208_2330203,4380_683 -4380_77948,287,4380_5058,Dublin,1659-00012-1,1,4380_7778208_1030106,4380_42 -4380_77992,285,4380_50580,Cork,85481-00009-1,1,4380_7778208_2330205,4380_681 -4380_77992,288,4380_50581,Cork,85485-00011-1,1,4380_7778208_2330205,4380_681 -4380_77992,287,4380_50582,Cork,85483-00012-1,1,4380_7778208_2330205,4380_681 -4380_77992,286,4380_50583,Cork,85477-00010-1,1,4380_7778208_2330205,4380_681 -4380_77992,289,4380_50584,Cork,85479-00014-1,1,4380_7778208_2330205,4380_681 -4380_77992,292,4380_50585,Cork,85478-00016-1,1,4380_7778208_2330205,4380_681 -4380_77992,290,4380_50586,Cork,85482-00015-1,1,4380_7778208_2330205,4380_681 -4380_77992,294,4380_50587,Cork,85484-00018-1,1,4380_7778208_2330205,4380_681 -4380_77992,295,4380_50588,Cork,85480-00019-1,1,4380_7778208_2330205,4380_681 -4380_77992,293,4380_50589,Cork,85486-00017-1,1,4380_7778208_2330205,4380_681 -4380_77948,289,4380_5059,Dublin,1611-00014-1,1,4380_7778208_1030106,4380_42 -4380_77992,297,4380_50591,Cork,85206-00008-1,1,4380_7778208_2330201,4380_668 -4380_77992,291,4380_50593,Cork,85411-00013-1,1,4380_7778208_2330204,4380_686 -4380_77992,296,4380_50594,Cork,85412-00021-1,1,4380_7778208_2330204,4380_686 -4380_77946,291,4380_506,Drogheda,50265-00013-1,1,4380_7778208_1000911,4380_9 -4380_77948,290,4380_5060,Dublin,52130-00015-1,1,4380_7778208_1030106,4380_42 -4380_77992,285,4380_50600,Cork,85417-00009-1,1,4380_7778208_2330204,4380_678 -4380_77992,288,4380_50601,Cork,85413-00011-1,1,4380_7778208_2330204,4380_678 -4380_77992,287,4380_50602,Cork,85415-00012-1,1,4380_7778208_2330204,4380_678 -4380_77992,286,4380_50603,Cork,85419-00010-1,1,4380_7778208_2330204,4380_678 -4380_77992,289,4380_50604,Cork,85421-00014-1,1,4380_7778208_2330204,4380_678 -4380_77992,292,4380_50605,Cork,85420-00016-1,1,4380_7778208_2330204,4380_678 -4380_77992,290,4380_50606,Cork,85418-00015-1,1,4380_7778208_2330204,4380_678 -4380_77992,294,4380_50607,Cork,85416-00018-1,1,4380_7778208_2330204,4380_678 -4380_77992,295,4380_50608,Cork,85422-00019-1,1,4380_7778208_2330204,4380_678 -4380_77992,293,4380_50609,Cork,85414-00017-1,1,4380_7778208_2330204,4380_678 -4380_77948,292,4380_5061,Dublin,52131-00016-1,1,4380_7778208_1030106,4380_42 -4380_77948,293,4380_5062,Dublin,52134-00017-1,1,4380_7778208_1030106,4380_42 -4380_77992,285,4380_50621,Cork,85215-00009-1,1,4380_7778208_2330201,4380_672 -4380_77992,285,4380_50622,Cork,85353-00009-1,1,4380_7778208_2330203,4380_671 -4380_77992,288,4380_50623,Cork,85207-00011-1,1,4380_7778208_2330201,4380_672 -4380_77992,288,4380_50624,Cork,85347-00011-1,1,4380_7778208_2330203,4380_671 -4380_77992,287,4380_50625,Cork,85209-00012-1,1,4380_7778208_2330201,4380_672 -4380_77992,287,4380_50626,Cork,85345-00012-1,1,4380_7778208_2330203,4380_671 -4380_77992,286,4380_50627,Cork,85213-00010-1,1,4380_7778208_2330201,4380_672 -4380_77992,286,4380_50628,Cork,85351-00010-1,1,4380_7778208_2330203,4380_671 -4380_77992,291,4380_50629,Cork,85349-00013-1,1,4380_7778208_2330203,4380_684 -4380_77948,294,4380_5063,Dublin,52132-00018-1,1,4380_7778208_1030106,4380_42 -4380_77992,289,4380_50630,Cork,85211-00014-1,1,4380_7778208_2330201,4380_672 -4380_77992,289,4380_50631,Cork,85343-00014-1,1,4380_7778208_2330203,4380_671 -4380_77992,292,4380_50632,Cork,85214-00016-1,1,4380_7778208_2330201,4380_672 -4380_77992,292,4380_50633,Cork,85352-00016-1,1,4380_7778208_2330203,4380_671 -4380_77992,290,4380_50634,Cork,85216-00015-1,1,4380_7778208_2330201,4380_672 -4380_77992,290,4380_50635,Cork,85354-00015-1,1,4380_7778208_2330203,4380_671 -4380_77992,294,4380_50636,Cork,85210-00018-1,1,4380_7778208_2330201,4380_672 -4380_77992,294,4380_50637,Cork,85346-00018-1,1,4380_7778208_2330203,4380_671 -4380_77992,295,4380_50638,Cork,85212-00019-1,1,4380_7778208_2330201,4380_672 -4380_77992,295,4380_50639,Cork,85344-00019-1,1,4380_7778208_2330203,4380_671 -4380_77948,295,4380_5064,Dublin,52133-00019-1,1,4380_7778208_1030106,4380_42 -4380_77992,293,4380_50640,Cork,85208-00017-1,1,4380_7778208_2330201,4380_672 -4380_77992,293,4380_50641,Cork,85348-00017-1,1,4380_7778208_2330203,4380_671 -4380_77992,296,4380_50642,Cork,85350-00021-1,1,4380_7778208_2330203,4380_684 -4380_77992,285,4380_50648,Cork,85499-00009-1,1,4380_7778208_2330205,4380_668 -4380_77992,288,4380_50649,Cork,85505-00011-1,1,4380_7778208_2330205,4380_668 -4380_77992,287,4380_50650,Cork,85503-00012-1,1,4380_7778208_2330205,4380_668 -4380_77992,286,4380_50651,Cork,85497-00010-1,1,4380_7778208_2330205,4380_668 -4380_77992,289,4380_50652,Cork,85501-00014-1,1,4380_7778208_2330205,4380_668 -4380_77992,292,4380_50653,Cork,85498-00016-1,1,4380_7778208_2330205,4380_668 -4380_77992,290,4380_50654,Cork,85500-00015-1,1,4380_7778208_2330205,4380_668 -4380_77992,294,4380_50655,Cork,85504-00018-1,1,4380_7778208_2330205,4380_668 -4380_77992,295,4380_50656,Cork,85502-00019-1,1,4380_7778208_2330205,4380_668 -4380_77992,293,4380_50657,Cork,85506-00017-1,1,4380_7778208_2330205,4380_668 -4380_77992,285,4380_50663,Cork,85435-00009-1,1,4380_7778208_2330204,4380_679 -4380_77992,288,4380_50664,Cork,85443-00011-1,1,4380_7778208_2330204,4380_679 -4380_77992,287,4380_50665,Cork,85437-00012-1,1,4380_7778208_2330204,4380_679 -4380_77992,286,4380_50666,Cork,85433-00010-1,1,4380_7778208_2330204,4380_679 -4380_77992,289,4380_50667,Cork,85439-00014-1,1,4380_7778208_2330204,4380_679 -4380_77992,292,4380_50668,Cork,85434-00016-1,1,4380_7778208_2330204,4380_679 -4380_77992,290,4380_50669,Cork,85436-00015-1,1,4380_7778208_2330204,4380_679 -4380_77992,294,4380_50670,Cork,85438-00018-1,1,4380_7778208_2330204,4380_679 -4380_77992,295,4380_50671,Cork,85440-00019-1,1,4380_7778208_2330204,4380_679 -4380_77992,293,4380_50672,Cork,85444-00017-1,1,4380_7778208_2330204,4380_679 -4380_77992,287,4380_50674,Macroom,85302-00012-1,1,4380_7778208_2330202,4380_683 -4380_77992,294,4380_50675,Macroom,85303-00018-1,1,4380_7778208_2330202,4380_683 -4380_77992,285,4380_50682,Cork,85232-00009-1,1,4380_7778208_2330201,4380_673 -4380_77992,288,4380_50683,Cork,85234-00011-1,1,4380_7778208_2330201,4380_673 -4380_77992,287,4380_50684,Cork,85230-00012-1,1,4380_7778208_2330201,4380_673 -4380_77992,286,4380_50685,Cork,85236-00010-1,1,4380_7778208_2330201,4380_673 -4380_77992,291,4380_50686,Cork,85367-00013-1,1,4380_7778208_2330203,4380_685 -4380_77992,289,4380_50687,Cork,85228-00014-1,1,4380_7778208_2330201,4380_673 -4380_77992,292,4380_50688,Cork,85237-00016-1,1,4380_7778208_2330201,4380_673 -4380_77992,290,4380_50689,Cork,85233-00015-1,1,4380_7778208_2330201,4380_673 -4380_77992,294,4380_50690,Cork,85231-00018-1,1,4380_7778208_2330201,4380_673 -4380_77992,295,4380_50691,Cork,85229-00019-1,1,4380_7778208_2330201,4380_673 -4380_77992,293,4380_50692,Cork,85235-00017-1,1,4380_7778208_2330201,4380_673 -4380_77992,296,4380_50693,Cork,85368-00021-1,1,4380_7778208_2330203,4380_685 -4380_77992,297,4380_50695,Cork,85238-00008-1,1,4380_7778208_2330201,4380_669 -4380_77946,292,4380_507,Drogheda,50436-00016-1,1,4380_7778208_1000914,4380_6 -4380_77993,285,4380_50701,Donoughmore via Blarney,85549-00009-1,0,4380_7778208_2350201,4380_687 -4380_77993,288,4380_50702,Donoughmore via Blarney,85553-00011-1,0,4380_7778208_2350201,4380_687 -4380_77993,287,4380_50703,Donoughmore via Blarney,85555-00012-1,0,4380_7778208_2350201,4380_687 -4380_77993,286,4380_50704,Donoughmore via Blarney,85547-00010-1,0,4380_7778208_2350201,4380_687 -4380_77993,289,4380_50705,Donoughmore via Blarney,85551-00014-1,0,4380_7778208_2350201,4380_687 -4380_77993,292,4380_50706,Donoughmore via Blarney,85548-00016-1,0,4380_7778208_2350201,4380_687 -4380_77993,290,4380_50707,Donoughmore via Blarney,85550-00015-1,0,4380_7778208_2350201,4380_687 -4380_77993,294,4380_50708,Donoughmore via Blarney,85556-00018-1,0,4380_7778208_2350201,4380_687 -4380_77993,295,4380_50709,Donoughmore via Blarney,85552-00019-1,0,4380_7778208_2350201,4380_687 -4380_77948,291,4380_5071,Dublin,1415-00013-1,1,4380_7778208_1030103,4380_42 -4380_77993,293,4380_50710,Donoughmore via Blarney,85554-00017-1,0,4380_7778208_2350201,4380_687 -4380_77993,285,4380_50716,Rylane via Cloghroe,85575-00009-1,0,4380_7778208_2350201,4380_688 -4380_77993,288,4380_50717,Rylane via Cloghroe,85571-00011-1,0,4380_7778208_2350201,4380_688 -4380_77993,287,4380_50718,Rylane via Cloghroe,85573-00012-1,0,4380_7778208_2350201,4380_688 -4380_77993,286,4380_50719,Rylane via Cloghroe,85569-00010-1,0,4380_7778208_2350201,4380_688 -4380_77948,296,4380_5072,Dublin,51948-00021-1,1,4380_7778208_1030103,4380_42 -4380_77993,289,4380_50720,Rylane via Cloghroe,85567-00014-1,0,4380_7778208_2350201,4380_688 -4380_77993,292,4380_50721,Rylane via Cloghroe,85570-00016-1,0,4380_7778208_2350201,4380_688 -4380_77993,290,4380_50722,Rylane via Cloghroe,85576-00015-1,0,4380_7778208_2350201,4380_688 -4380_77993,294,4380_50723,Rylane via Cloghroe,85574-00018-1,0,4380_7778208_2350201,4380_688 -4380_77993,295,4380_50724,Rylane via Cloghroe,85568-00019-1,0,4380_7778208_2350201,4380_688 -4380_77993,293,4380_50725,Rylane via Cloghroe,85572-00017-1,0,4380_7778208_2350201,4380_688 -4380_77948,285,4380_5073,Dublin,1783-00009-1,1,4380_7778208_1030108,4380_42 -4380_77993,285,4380_50731,Cork,85545-00009-1,1,4380_7778208_2350201,4380_689 -4380_77993,288,4380_50732,Cork,85543-00011-1,1,4380_7778208_2350201,4380_689 -4380_77993,287,4380_50733,Cork,85541-00012-1,1,4380_7778208_2350201,4380_689 -4380_77993,286,4380_50734,Cork,85537-00010-1,1,4380_7778208_2350201,4380_689 -4380_77993,289,4380_50735,Cork,85539-00014-1,1,4380_7778208_2350201,4380_689 -4380_77993,292,4380_50736,Cork,85538-00016-1,1,4380_7778208_2350201,4380_689 -4380_77993,290,4380_50737,Cork,85546-00015-1,1,4380_7778208_2350201,4380_689 -4380_77993,294,4380_50738,Cork,85542-00018-1,1,4380_7778208_2350201,4380_689 -4380_77993,295,4380_50739,Cork,85540-00019-1,1,4380_7778208_2350201,4380_689 -4380_77948,286,4380_5074,Dublin,1795-00010-1,1,4380_7778208_1030108,4380_42 -4380_77993,293,4380_50740,Cork,85544-00017-1,1,4380_7778208_2350201,4380_689 -4380_77993,285,4380_50746,Cork,85559-00009-1,1,4380_7778208_2350201,4380_690 -4380_77993,288,4380_50747,Cork,85557-00011-1,1,4380_7778208_2350201,4380_690 -4380_77993,287,4380_50748,Cork,85565-00012-1,1,4380_7778208_2350201,4380_690 -4380_77993,286,4380_50749,Cork,85563-00010-1,1,4380_7778208_2350201,4380_690 -4380_77948,288,4380_5075,Dublin,1807-00011-1,1,4380_7778208_1030108,4380_42 -4380_77993,289,4380_50750,Cork,85561-00014-1,1,4380_7778208_2350201,4380_690 -4380_77993,292,4380_50751,Cork,85564-00016-1,1,4380_7778208_2350201,4380_690 -4380_77993,290,4380_50752,Cork,85560-00015-1,1,4380_7778208_2350201,4380_690 -4380_77993,294,4380_50753,Cork,85566-00018-1,1,4380_7778208_2350201,4380_690 -4380_77993,295,4380_50754,Cork,85562-00019-1,1,4380_7778208_2350201,4380_690 -4380_77993,293,4380_50755,Cork,85558-00017-1,1,4380_7778208_2350201,4380_690 -4380_77948,287,4380_5076,Dublin,1819-00012-1,1,4380_7778208_1030108,4380_42 -4380_77994,285,4380_50762,Glengarriff,85603-00009-1,0,4380_7778208_2360202,4380_696 -4380_77994,288,4380_50763,Glengarriff,85607-00011-1,0,4380_7778208_2360202,4380_696 -4380_77994,287,4380_50764,Castletownbere,85609-00012-1,0,4380_7778208_2360202,4380_691 -4380_77994,286,4380_50765,Castletownbere,85605-00010-1,0,4380_7778208_2360202,4380_691 -4380_77994,291,4380_50766,Castletownbere,85773-00013-1,0,4380_7778208_2360206,4380_701 -4380_77994,289,4380_50767,Castletownbere,85611-00014-1,0,4380_7778208_2360202,4380_691 -4380_77994,292,4380_50768,Castletownbere,85606-00016-1,0,4380_7778208_2360202,4380_691 -4380_77994,290,4380_50769,Glengarriff,85604-00015-1,0,4380_7778208_2360202,4380_696 -4380_77948,289,4380_5077,Dublin,1771-00014-1,1,4380_7778208_1030108,4380_42 -4380_77994,294,4380_50770,Castletownbere,85610-00018-1,0,4380_7778208_2360202,4380_691 -4380_77994,295,4380_50771,Castletownbere,85612-00019-1,0,4380_7778208_2360202,4380_691 -4380_77994,293,4380_50772,Glengarriff,85608-00017-1,0,4380_7778208_2360202,4380_696 -4380_77994,296,4380_50773,Castletownbere,85774-00021-1,0,4380_7778208_2360206,4380_701 -4380_77948,290,4380_5078,Dublin,52263-00015-1,1,4380_7778208_1030108,4380_42 -4380_77994,297,4380_50781,Castletownbere,85807-00008-1,0,4380_7778208_2360207,4380_691 -4380_77994,285,4380_50782,Bantry via Bandon,86285-00009-1,0,4380_7778208_2390202,4380_693 -4380_77994,288,4380_50783,Bantry via Bandon,86281-00011-1,0,4380_7778208_2390202,4380_693 -4380_77994,287,4380_50784,Bantry via Bandon,86287-00012-1,0,4380_7778208_2390202,4380_693 -4380_77994,286,4380_50785,Bantry via Bandon,86289-00010-1,0,4380_7778208_2390202,4380_693 -4380_77994,291,4380_50786,Bantry via Bandon,86215-00013-1,0,4380_7778208_2390201,4380_693 -4380_77994,289,4380_50787,Bantry via Bandon,86283-00014-1,0,4380_7778208_2390202,4380_693 -4380_77994,292,4380_50788,Bantry via Bandon,86290-00016-1,0,4380_7778208_2390202,4380_693 -4380_77994,290,4380_50789,Bantry via Bandon,86286-00015-1,0,4380_7778208_2390202,4380_693 -4380_77948,292,4380_5079,Dublin,52264-00016-1,1,4380_7778208_1030108,4380_42 -4380_77994,294,4380_50790,Bantry via Bandon,86288-00018-1,0,4380_7778208_2390202,4380_693 -4380_77994,295,4380_50791,Bantry via Bandon,86284-00019-1,0,4380_7778208_2390202,4380_693 -4380_77994,293,4380_50792,Bantry via Bandon,86282-00017-1,0,4380_7778208_2390202,4380_693 -4380_77994,296,4380_50793,Bantry via Bandon,86216-00021-1,0,4380_7778208_2390201,4380_693 -4380_77994,285,4380_50799,Bantry via Bandon,85649-00009-1,0,4380_7778208_2360203,4380_693 -4380_77946,292,4380_508,Monasterboice,50542-00016-1,1,4380_7778208_1000916,4380_7 -4380_77948,293,4380_5080,Dublin,52262-00017-1,1,4380_7778208_1030108,4380_42 -4380_77994,288,4380_50800,Bantry via Bandon,85647-00011-1,0,4380_7778208_2360203,4380_693 -4380_77994,287,4380_50801,Bantry via Bandon,85645-00012-1,0,4380_7778208_2360203,4380_693 -4380_77994,286,4380_50802,Bantry via Bandon,85651-00010-1,0,4380_7778208_2360203,4380_693 -4380_77994,289,4380_50803,Bantry via Bandon,85643-00014-1,0,4380_7778208_2360203,4380_693 -4380_77994,292,4380_50804,Bantry via Bandon,85652-00016-1,0,4380_7778208_2360203,4380_693 -4380_77994,290,4380_50805,Bantry via Bandon,85650-00015-1,0,4380_7778208_2360203,4380_693 -4380_77994,294,4380_50806,Bantry via Bandon,85646-00018-1,0,4380_7778208_2360203,4380_693 -4380_77994,295,4380_50807,Bantry via Bandon,85644-00019-1,0,4380_7778208_2360203,4380_693 -4380_77994,293,4380_50808,Bantry via Bandon,85648-00017-1,0,4380_7778208_2360203,4380_693 -4380_77948,294,4380_5081,Dublin,52265-00018-1,1,4380_7778208_1030108,4380_42 -4380_77994,297,4380_50812,Bantry via Bandon,85814-00008-1,0,4380_7778208_2360208,4380_693 -4380_77994,285,4380_50813,Glengarriff,85625-00009-1,0,4380_7778208_2360202,4380_692 -4380_77994,288,4380_50814,Glengarriff,85621-00011-1,0,4380_7778208_2360202,4380_692 -4380_77994,290,4380_50815,Glengarriff,85626-00015-1,0,4380_7778208_2360202,4380_692 -4380_77994,293,4380_50816,Glengarriff,85622-00017-1,0,4380_7778208_2360202,4380_692 -4380_77948,295,4380_5082,Dublin,52266-00019-1,1,4380_7778208_1030108,4380_42 -4380_77994,285,4380_50823,Glengarriff,85595-00009-1,0,4380_7778208_2360201,4380_696 -4380_77994,288,4380_50824,Glengarriff,85589-00011-1,0,4380_7778208_2360201,4380_696 -4380_77994,287,4380_50825,Glengarriff,85591-00012-1,0,4380_7778208_2360201,4380_696 -4380_77994,286,4380_50826,Glengarriff,85593-00010-1,0,4380_7778208_2360201,4380_696 -4380_77994,291,4380_50827,Glengarriff,85815-00013-1,0,4380_7778208_2360208,4380_696 -4380_77994,289,4380_50828,Glengarriff,85587-00014-1,0,4380_7778208_2360201,4380_696 -4380_77994,292,4380_50829,Glengarriff,85594-00016-1,0,4380_7778208_2360201,4380_696 -4380_77994,290,4380_50830,Glengarriff,85596-00015-1,0,4380_7778208_2360201,4380_696 -4380_77994,294,4380_50831,Glengarriff,85592-00018-1,0,4380_7778208_2360201,4380_696 -4380_77994,295,4380_50832,Glengarriff,85588-00019-1,0,4380_7778208_2360201,4380_696 -4380_77994,293,4380_50833,Glengarriff,85590-00017-1,0,4380_7778208_2360201,4380_696 -4380_77994,296,4380_50834,Glengarriff,85816-00021-1,0,4380_7778208_2360208,4380_696 -4380_77994,297,4380_50836,Glengarriff,85809-00008-1,0,4380_7778208_2360207,4380_692 -4380_77994,285,4380_50842,Glengarriff,85653-00009-1,0,4380_7778208_2360203,4380_692 -4380_77994,288,4380_50843,Glengarriff,85659-00011-1,0,4380_7778208_2360203,4380_692 -4380_77994,287,4380_50844,Glengarriff,85661-00012-1,0,4380_7778208_2360203,4380_692 -4380_77994,286,4380_50845,Glengarriff,85655-00010-1,0,4380_7778208_2360203,4380_692 -4380_77994,289,4380_50846,Glengarriff,85657-00014-1,0,4380_7778208_2360203,4380_692 -4380_77994,292,4380_50847,Glengarriff,85656-00016-1,0,4380_7778208_2360203,4380_692 -4380_77994,290,4380_50848,Glengarriff,85654-00015-1,0,4380_7778208_2360203,4380_692 -4380_77994,294,4380_50849,Glengarriff,85662-00018-1,0,4380_7778208_2360203,4380_692 -4380_77994,295,4380_50850,Glengarriff,85658-00019-1,0,4380_7778208_2360203,4380_692 -4380_77994,293,4380_50851,Glengarriff,85660-00017-1,0,4380_7778208_2360203,4380_692 -4380_77994,285,4380_50858,Bantry via Bandon,85761-00009-1,0,4380_7778208_2360205,4380_693 -4380_77994,288,4380_50859,Bantry via Bandon,85767-00011-1,0,4380_7778208_2360205,4380_693 -4380_77994,287,4380_50860,Bantry via Bandon,85763-00012-1,0,4380_7778208_2360205,4380_693 -4380_77994,286,4380_50861,Bantry via Bandon,85765-00010-1,0,4380_7778208_2360205,4380_693 -4380_77994,291,4380_50862,Bantry via Bandon,85769-00013-1,0,4380_7778208_2360205,4380_700 -4380_77994,289,4380_50863,Bantry via Bandon,85771-00014-1,0,4380_7778208_2360205,4380_693 -4380_77994,292,4380_50864,Bantry via Bandon,85766-00016-1,0,4380_7778208_2360205,4380_693 -4380_77994,290,4380_50865,Bantry via Bandon,85762-00015-1,0,4380_7778208_2360205,4380_693 -4380_77994,294,4380_50866,Bantry via Bandon,85764-00018-1,0,4380_7778208_2360205,4380_693 -4380_77994,295,4380_50867,Bantry via Bandon,85772-00019-1,0,4380_7778208_2360205,4380_693 -4380_77994,293,4380_50868,Bantry via Bandon,85768-00017-1,0,4380_7778208_2360205,4380_693 -4380_77994,296,4380_50869,Bantry via Bandon,85770-00021-1,0,4380_7778208_2360205,4380_700 -4380_77994,297,4380_50871,Bandon,85821-00008-1,0,4380_7778208_2360209,4380_694 -4380_77994,287,4380_50875,Castletownbere,85601-00012-1,0,4380_7778208_2360201,4380_697 -4380_77994,286,4380_50876,Castletownbere,85599-00010-1,0,4380_7778208_2360201,4380_697 -4380_77994,289,4380_50877,Castletownbere,85597-00014-1,0,4380_7778208_2360201,4380_697 -4380_77994,292,4380_50878,Castletownbere,85600-00016-1,0,4380_7778208_2360201,4380_697 -4380_77994,294,4380_50879,Castletownbere,85602-00018-1,0,4380_7778208_2360201,4380_697 -4380_77994,295,4380_50880,Castletownbere,85598-00019-1,0,4380_7778208_2360201,4380_697 -4380_77994,297,4380_50882,Bantry via Bandon,85822-00008-1,0,4380_7778208_2360209,4380_695 -4380_77994,297,4380_50895,Bantry via Bandon,85820-00008-1,0,4380_7778208_2360208,4380_693 -4380_77994,285,4380_50896,Bus Eireann,85737-00009-1,0,4380_7778208_2360204,4380_698 -4380_77994,285,4380_50897,Glengarriff,85795-00009-1,0,4380_7778208_2360206,4380_696 -4380_77994,288,4380_50898,Bus Eireann,85741-00011-1,0,4380_7778208_2360204,4380_698 -4380_77994,288,4380_50899,Glengarriff,85801-00011-1,0,4380_7778208_2360206,4380_696 -4380_77946,293,4380_509,Drogheda,50428-00017-1,1,4380_7778208_1000914,4380_6 -4380_77948,297,4380_5090,Dublin,1437-00008-1,1,4380_7778208_1030103,4380_42 -4380_77994,287,4380_50900,Bus Eireann,85743-00012-1,0,4380_7778208_2360204,4380_698 -4380_77994,287,4380_50901,Glengarriff,85793-00012-1,0,4380_7778208_2360206,4380_696 -4380_77994,286,4380_50902,Bus Eireann,85735-00010-1,0,4380_7778208_2360204,4380_698 -4380_77994,286,4380_50903,Glengarriff,85799-00010-1,0,4380_7778208_2360206,4380_696 -4380_77994,291,4380_50904,Glengarriff,85673-00013-1,0,4380_7778208_2360203,4380_699 -4380_77994,289,4380_50905,Bus Eireann,85739-00014-1,0,4380_7778208_2360204,4380_698 -4380_77994,289,4380_50906,Glengarriff,85797-00014-1,0,4380_7778208_2360206,4380_696 -4380_77994,292,4380_50907,Bus Eireann,85736-00016-1,0,4380_7778208_2360204,4380_698 -4380_77994,292,4380_50908,Glengarriff,85800-00016-1,0,4380_7778208_2360206,4380_696 -4380_77994,290,4380_50909,Bus Eireann,85738-00015-1,0,4380_7778208_2360204,4380_698 -4380_77994,290,4380_50910,Glengarriff,85796-00015-1,0,4380_7778208_2360206,4380_696 -4380_77994,294,4380_50911,Bus Eireann,85744-00018-1,0,4380_7778208_2360204,4380_698 -4380_77994,294,4380_50912,Glengarriff,85794-00018-1,0,4380_7778208_2360206,4380_696 -4380_77994,295,4380_50913,Bus Eireann,85740-00019-1,0,4380_7778208_2360204,4380_698 -4380_77994,295,4380_50914,Glengarriff,85798-00019-1,0,4380_7778208_2360206,4380_696 -4380_77994,293,4380_50915,Bus Eireann,85742-00017-1,0,4380_7778208_2360204,4380_698 -4380_77994,293,4380_50916,Glengarriff,85802-00017-1,0,4380_7778208_2360206,4380_696 -4380_77994,296,4380_50917,Glengarriff,85674-00021-1,0,4380_7778208_2360203,4380_699 -4380_77994,285,4380_50924,Cork,85745-00009-1,1,4380_7778208_2360205,4380_704 -4380_77994,288,4380_50925,Cork,85755-00011-1,1,4380_7778208_2360205,4380_704 -4380_77994,287,4380_50926,Cork,85753-00012-1,1,4380_7778208_2360205,4380_704 -4380_77994,286,4380_50927,Cork,85751-00010-1,1,4380_7778208_2360205,4380_704 -4380_77994,291,4380_50928,Cork,85749-00013-1,1,4380_7778208_2360205,4380_704 -4380_77994,289,4380_50929,Cork,85747-00014-1,1,4380_7778208_2360205,4380_704 -4380_77994,292,4380_50930,Cork,85752-00016-1,1,4380_7778208_2360205,4380_704 -4380_77994,290,4380_50931,Cork,85746-00015-1,1,4380_7778208_2360205,4380_704 -4380_77994,294,4380_50932,Cork,85754-00018-1,1,4380_7778208_2360205,4380_704 -4380_77994,295,4380_50933,Cork,85748-00019-1,1,4380_7778208_2360205,4380_704 -4380_77994,293,4380_50934,Cork,85756-00017-1,1,4380_7778208_2360205,4380_704 -4380_77994,296,4380_50935,Cork,85750-00021-1,1,4380_7778208_2360205,4380_704 -4380_77994,287,4380_50939,Cork,85581-00012-1,1,4380_7778208_2360201,4380_705 -4380_77994,286,4380_50940,Cork,85579-00010-1,1,4380_7778208_2360201,4380_705 -4380_77994,289,4380_50941,Cork,85577-00014-1,1,4380_7778208_2360201,4380_705 -4380_77994,292,4380_50942,Cork,85580-00016-1,1,4380_7778208_2360201,4380_705 -4380_77994,294,4380_50943,Cork,85582-00018-1,1,4380_7778208_2360201,4380_705 -4380_77994,295,4380_50944,Cork,85578-00019-1,1,4380_7778208_2360201,4380_705 -4380_77994,285,4380_50947,Cork,85585-00009-1,1,4380_7778208_2360201,4380_703 -4380_77994,288,4380_50948,Cork,85583-00011-1,1,4380_7778208_2360201,4380_703 -4380_77994,290,4380_50949,Cork,85586-00015-1,1,4380_7778208_2360201,4380_703 -4380_77994,293,4380_50950,Cork,85584-00017-1,1,4380_7778208_2360201,4380_703 -4380_77994,291,4380_50952,Cork,85805-00013-1,1,4380_7778208_2360207,4380_703 -4380_77994,296,4380_50953,Cork,85806-00021-1,1,4380_7778208_2360207,4380_703 -4380_77994,285,4380_50959,Cork,85775-00009-1,1,4380_7778208_2360206,4380_704 -4380_78141,285,4380_5096,Duleek,3919-00009-1,0,4380_7778208_1030137,4380_47 -4380_77994,288,4380_50960,Cork,85777-00011-1,1,4380_7778208_2360206,4380_704 -4380_77994,287,4380_50961,Cork,85783-00012-1,1,4380_7778208_2360206,4380_704 -4380_77994,286,4380_50962,Cork,85781-00010-1,1,4380_7778208_2360206,4380_704 -4380_77994,289,4380_50963,Cork,85779-00014-1,1,4380_7778208_2360206,4380_704 -4380_77994,292,4380_50964,Cork,85782-00016-1,1,4380_7778208_2360206,4380_704 -4380_77994,290,4380_50965,Cork,85776-00015-1,1,4380_7778208_2360206,4380_704 -4380_77994,294,4380_50966,Cork,85784-00018-1,1,4380_7778208_2360206,4380_704 -4380_77994,295,4380_50967,Cork,85780-00019-1,1,4380_7778208_2360206,4380_704 -4380_77994,293,4380_50968,Cork,85778-00017-1,1,4380_7778208_2360206,4380_704 -4380_78141,286,4380_5097,Duleek,3923-00010-1,0,4380_7778208_1030137,4380_47 -4380_77994,297,4380_50970,Cork,85813-00008-1,1,4380_7778208_2360208,4380_704 -4380_77994,285,4380_50973,Bantry via Bandon,85613-00009-1,1,4380_7778208_2360202,4380_707 -4380_77994,288,4380_50974,Bantry via Bandon,85615-00011-1,1,4380_7778208_2360202,4380_707 -4380_77994,290,4380_50975,Bantry via Bandon,85614-00015-1,1,4380_7778208_2360202,4380_707 -4380_77994,293,4380_50976,Bantry via Bandon,85616-00017-1,1,4380_7778208_2360202,4380_707 -4380_78141,288,4380_5098,Duleek,3927-00011-1,0,4380_7778208_1030137,4380_47 -4380_77994,285,4380_50983,Cork,85709-00009-1,1,4380_7778208_2360204,4380_704 -4380_77994,288,4380_50984,Cork,85705-00011-1,1,4380_7778208_2360204,4380_704 -4380_77994,287,4380_50985,Cork,85713-00012-1,1,4380_7778208_2360204,4380_704 -4380_77994,286,4380_50986,Cork,85711-00010-1,1,4380_7778208_2360204,4380_704 -4380_77994,291,4380_50987,Cork,85641-00013-1,1,4380_7778208_2360203,4380_704 -4380_77994,289,4380_50988,Cork,85707-00014-1,1,4380_7778208_2360204,4380_704 -4380_77994,292,4380_50989,Cork,85712-00016-1,1,4380_7778208_2360204,4380_704 -4380_78141,287,4380_5099,Duleek,3931-00012-1,0,4380_7778208_1030137,4380_47 -4380_77994,290,4380_50990,Cork,85710-00015-1,1,4380_7778208_2360204,4380_704 -4380_77994,294,4380_50991,Cork,85714-00018-1,1,4380_7778208_2360204,4380_704 -4380_77994,295,4380_50992,Cork,85708-00019-1,1,4380_7778208_2360204,4380_704 -4380_77994,293,4380_50993,Cork,85706-00017-1,1,4380_7778208_2360204,4380_704 -4380_77994,296,4380_50994,Cork,85642-00021-1,1,4380_7778208_2360203,4380_704 -4380_77946,288,4380_51,Dundalk,50301-00011-1,0,4380_7778208_1000913,4380_1 -4380_77946,293,4380_510,Monasterboice,50544-00017-1,1,4380_7778208_1000916,4380_7 -4380_78141,289,4380_5100,Duleek,3915-00014-1,0,4380_7778208_1030137,4380_47 -4380_77994,285,4380_51000,Cork,86297-00009-1,1,4380_7778208_2390202,4380_704 -4380_77994,288,4380_51001,Cork,86299-00011-1,1,4380_7778208_2390202,4380_704 -4380_77994,287,4380_51002,Cork,86293-00012-1,1,4380_7778208_2390202,4380_704 -4380_77994,286,4380_51003,Cork,86291-00010-1,1,4380_7778208_2390202,4380_704 -4380_77994,289,4380_51004,Cork,86295-00014-1,1,4380_7778208_2390202,4380_704 -4380_77994,292,4380_51005,Cork,86292-00016-1,1,4380_7778208_2390202,4380_704 -4380_77994,290,4380_51006,Cork,86298-00015-1,1,4380_7778208_2390202,4380_704 -4380_77994,294,4380_51007,Cork,86294-00018-1,1,4380_7778208_2390202,4380_704 -4380_77994,295,4380_51008,Cork,86296-00019-1,1,4380_7778208_2390202,4380_704 -4380_77994,293,4380_51009,Cork,86300-00017-1,1,4380_7778208_2390202,4380_704 -4380_78141,290,4380_5101,Duleek,53026-00015-1,0,4380_7778208_1030137,4380_47 -4380_77994,287,4380_51015,Cork,85617-00012-1,1,4380_7778208_2360202,4380_706 -4380_77994,286,4380_51016,Cork,85619-00010-1,1,4380_7778208_2360202,4380_706 -4380_77994,291,4380_51017,Cork,85787-00013-1,1,4380_7778208_2360206,4380_709 -4380_77994,291,4380_51018,Cork,86227-00013-1,1,4380_7778208_2390201,4380_704 -4380_77994,289,4380_51019,Cork,85623-00014-1,1,4380_7778208_2360202,4380_706 -4380_78141,292,4380_5102,Duleek,53024-00016-1,0,4380_7778208_1030137,4380_47 -4380_77994,292,4380_51020,Cork,85620-00016-1,1,4380_7778208_2360202,4380_706 -4380_77994,294,4380_51021,Cork,85618-00018-1,1,4380_7778208_2360202,4380_706 -4380_77994,295,4380_51022,Cork,85624-00019-1,1,4380_7778208_2360202,4380_706 -4380_77994,296,4380_51023,Cork,85788-00021-1,1,4380_7778208_2360206,4380_709 -4380_77994,296,4380_51024,Cork,86228-00021-1,1,4380_7778208_2390201,4380_704 -4380_77994,297,4380_51028,Bantry via Bandon,85808-00008-1,1,4380_7778208_2360207,4380_702 -4380_77994,285,4380_51029,Cork,85629-00009-1,1,4380_7778208_2360202,4380_708 -4380_78141,293,4380_5103,Duleek,53023-00017-1,0,4380_7778208_1030137,4380_47 -4380_77994,288,4380_51030,Cork,85627-00011-1,1,4380_7778208_2360202,4380_708 -4380_77994,290,4380_51031,Cork,85630-00015-1,1,4380_7778208_2360202,4380_708 -4380_77994,293,4380_51032,Cork,85628-00017-1,1,4380_7778208_2360202,4380_708 -4380_77994,297,4380_51034,Cork,85817-00008-1,1,4380_7778208_2360208,4380_704 -4380_77994,297,4380_51036,Cork,85810-00008-1,1,4380_7778208_2360207,4380_703 -4380_78141,294,4380_5104,Duleek,53025-00018-1,0,4380_7778208_1030137,4380_47 -4380_77994,285,4380_51043,Cork,85669-00009-1,1,4380_7778208_2360203,4380_703 -4380_77994,288,4380_51044,Cork,85663-00011-1,1,4380_7778208_2360203,4380_703 -4380_77994,287,4380_51045,Cork,85671-00012-1,1,4380_7778208_2360203,4380_703 -4380_77994,286,4380_51046,Cork,85667-00010-1,1,4380_7778208_2360203,4380_703 -4380_77994,291,4380_51047,Cork,85818-00013-1,1,4380_7778208_2360208,4380_703 -4380_77994,289,4380_51048,Cork,85665-00014-1,1,4380_7778208_2360203,4380_703 -4380_77994,292,4380_51049,Cork,85668-00016-1,1,4380_7778208_2360203,4380_703 -4380_78141,295,4380_5105,Duleek,53027-00019-1,0,4380_7778208_1030137,4380_47 -4380_77994,290,4380_51050,Cork,85670-00015-1,1,4380_7778208_2360203,4380_703 -4380_77994,294,4380_51051,Cork,85672-00018-1,1,4380_7778208_2360203,4380_703 -4380_77994,295,4380_51052,Cork,85666-00019-1,1,4380_7778208_2360203,4380_703 -4380_77994,293,4380_51053,Cork,85664-00017-1,1,4380_7778208_2360203,4380_703 -4380_77994,296,4380_51054,Cork,85819-00021-1,1,4380_7778208_2360208,4380_703 -4380_77994,297,4380_51056,Cork,85823-00008-1,1,4380_7778208_2360209,4380_704 -4380_77995,285,4380_51062,Clonakilty,86193-00009-1,0,4380_7778208_2390201,4380_710 -4380_77995,288,4380_51063,Clonakilty,86197-00011-1,0,4380_7778208_2390201,4380_710 -4380_77995,287,4380_51064,Clonakilty,86201-00012-1,0,4380_7778208_2390201,4380_710 -4380_77995,286,4380_51065,Clonakilty,86195-00010-1,0,4380_7778208_2390201,4380_710 -4380_77995,289,4380_51066,Clonakilty,86199-00014-1,0,4380_7778208_2390201,4380_710 -4380_77995,292,4380_51067,Clonakilty,86196-00016-1,0,4380_7778208_2390201,4380_710 -4380_77995,290,4380_51068,Clonakilty,86194-00015-1,0,4380_7778208_2390201,4380_710 -4380_77995,294,4380_51069,Clonakilty,86202-00018-1,0,4380_7778208_2390201,4380_710 -4380_77995,295,4380_51070,Clonakilty,86200-00019-1,0,4380_7778208_2390201,4380_710 -4380_77995,293,4380_51071,Clonakilty,86198-00017-1,0,4380_7778208_2390201,4380_710 -4380_77995,297,4380_51073,Skibbereen,86115-00008-1,0,4380_7778208_2370211,4380_713 -4380_77995,285,4380_51085,Baltimore,85693-00009-1,0,4380_7778208_2360204,4380_715 -4380_77995,285,4380_51086,Schull,85879-00009-1,0,4380_7778208_2370202,4380_717 -4380_77995,288,4380_51087,Baltimore,85689-00011-1,0,4380_7778208_2360204,4380_715 -4380_77995,288,4380_51088,Schull,85881-00011-1,0,4380_7778208_2370202,4380_717 -4380_77995,287,4380_51089,Baltimore,85691-00012-1,0,4380_7778208_2360204,4380_715 -4380_77995,287,4380_51090,Schull,85885-00012-1,0,4380_7778208_2370202,4380_717 -4380_77995,286,4380_51091,Baltimore,85687-00010-1,0,4380_7778208_2360204,4380_715 -4380_77995,286,4380_51092,Schull,85887-00010-1,0,4380_7778208_2370202,4380_717 -4380_77995,291,4380_51093,Schull,86143-00013-1,0,4380_7778208_2370216,4380_724 -4380_77995,289,4380_51094,Baltimore,85685-00014-1,0,4380_7778208_2360204,4380_715 -4380_77995,289,4380_51095,Schull,85883-00014-1,0,4380_7778208_2370202,4380_717 -4380_77995,292,4380_51096,Baltimore,85688-00016-1,0,4380_7778208_2360204,4380_715 -4380_77995,292,4380_51097,Schull,85888-00016-1,0,4380_7778208_2370202,4380_717 -4380_77995,290,4380_51098,Baltimore,85694-00015-1,0,4380_7778208_2360204,4380_715 -4380_77995,290,4380_51099,Schull,85880-00015-1,0,4380_7778208_2370202,4380_717 -4380_77946,294,4380_511,Drogheda,50432-00018-1,1,4380_7778208_1000914,4380_6 -4380_77995,294,4380_51100,Baltimore,85692-00018-1,0,4380_7778208_2360204,4380_715 -4380_77995,294,4380_51101,Schull,85886-00018-1,0,4380_7778208_2370202,4380_717 -4380_77995,295,4380_51102,Baltimore,85686-00019-1,0,4380_7778208_2360204,4380_715 -4380_77995,295,4380_51103,Schull,85884-00019-1,0,4380_7778208_2370202,4380_717 -4380_77995,293,4380_51104,Baltimore,85690-00017-1,0,4380_7778208_2360204,4380_715 -4380_77995,293,4380_51105,Schull,85882-00017-1,0,4380_7778208_2370202,4380_717 -4380_77995,296,4380_51106,Schull,86144-00021-1,0,4380_7778208_2370216,4380_724 -4380_78141,285,4380_5111,Navan via Ashbourne,3949-00009-1,0,4380_7778208_1030138,4380_48 -4380_77995,297,4380_51114,Goleen,86049-00008-1,0,4380_7778208_2370206,4380_712 -4380_77995,285,4380_51115,Skibbereen,86096-00009-1,0,4380_7778208_2370208,4380_713 -4380_77995,288,4380_51116,Skibbereen,86098-00011-1,0,4380_7778208_2370208,4380_713 -4380_77995,287,4380_51117,Skibbereen,86094-00012-1,0,4380_7778208_2370208,4380_713 -4380_77995,286,4380_51118,Skibbereen,86092-00010-1,0,4380_7778208_2370208,4380_713 -4380_77995,291,4380_51119,Skibbereen,86167-00013-1,0,4380_7778208_2370218,4380_721 -4380_78141,286,4380_5112,Navan via Ashbourne,3953-00010-1,0,4380_7778208_1030138,4380_48 -4380_77995,289,4380_51120,Skibbereen,86100-00014-1,0,4380_7778208_2370208,4380_713 -4380_77995,292,4380_51121,Skibbereen,86093-00016-1,0,4380_7778208_2370208,4380_713 -4380_77995,290,4380_51122,Skibbereen,86097-00015-1,0,4380_7778208_2370208,4380_713 -4380_77995,294,4380_51123,Skibbereen,86095-00018-1,0,4380_7778208_2370208,4380_713 -4380_77995,295,4380_51124,Skibbereen,86101-00019-1,0,4380_7778208_2370208,4380_713 -4380_77995,293,4380_51125,Skibbereen,86099-00017-1,0,4380_7778208_2370208,4380_713 -4380_77995,296,4380_51126,Skibbereen,86168-00021-1,0,4380_7778208_2370218,4380_721 -4380_78141,288,4380_5113,Navan via Ashbourne,3955-00011-1,0,4380_7778208_1030138,4380_48 -4380_77995,297,4380_51134,Clonakilty,85834-00008-1,0,4380_7778208_2370201,4380_710 -4380_77995,285,4380_51135,Skibbereen,85993-00009-1,0,4380_7778208_2370204,4380_714 -4380_77995,288,4380_51136,Skibbereen,85997-00011-1,0,4380_7778208_2370204,4380_714 -4380_77995,287,4380_51137,Skibbereen,85995-00012-1,0,4380_7778208_2370204,4380_714 -4380_77995,286,4380_51138,Skibbereen,85991-00010-1,0,4380_7778208_2370204,4380_714 -4380_77995,291,4380_51139,Skibbereen,86137-00013-1,0,4380_7778208_2370215,4380_713 -4380_78141,287,4380_5114,Navan via Ashbourne,3961-00012-1,0,4380_7778208_1030138,4380_48 -4380_77995,289,4380_51140,Skibbereen,85989-00014-1,0,4380_7778208_2370204,4380_714 -4380_77995,292,4380_51141,Skibbereen,85992-00016-1,0,4380_7778208_2370204,4380_714 -4380_77995,290,4380_51142,Skibbereen,85994-00015-1,0,4380_7778208_2370204,4380_714 -4380_77995,294,4380_51143,Skibbereen,85996-00018-1,0,4380_7778208_2370204,4380_714 -4380_77995,295,4380_51144,Skibbereen,85990-00019-1,0,4380_7778208_2370204,4380_714 -4380_77995,293,4380_51145,Skibbereen,85998-00017-1,0,4380_7778208_2370204,4380_714 -4380_77995,296,4380_51146,Skibbereen,86138-00021-1,0,4380_7778208_2370215,4380_713 -4380_78141,289,4380_5115,Navan via Ashbourne,3945-00014-1,0,4380_7778208_1030138,4380_48 -4380_77995,285,4380_51153,Baltimore,85901-00009-1,0,4380_7778208_2370202,4380_715 -4380_77995,288,4380_51154,Baltimore,85907-00011-1,0,4380_7778208_2370202,4380_715 -4380_77995,287,4380_51155,Baltimore,85905-00012-1,0,4380_7778208_2370202,4380_715 -4380_77995,286,4380_51156,Baltimore,85899-00010-1,0,4380_7778208_2370202,4380_715 -4380_77995,291,4380_51157,Baltimore,86147-00013-1,0,4380_7778208_2370216,4380_725 -4380_77995,289,4380_51158,Baltimore,85903-00014-1,0,4380_7778208_2370202,4380_715 -4380_77995,292,4380_51159,Baltimore,85900-00016-1,0,4380_7778208_2370202,4380_715 -4380_78141,290,4380_5116,Navan via Ashbourne,53043-00015-1,0,4380_7778208_1030138,4380_48 -4380_77995,290,4380_51160,Baltimore,85902-00015-1,0,4380_7778208_2370202,4380_715 -4380_77995,294,4380_51161,Baltimore,85906-00018-1,0,4380_7778208_2370202,4380_715 -4380_77995,295,4380_51162,Baltimore,85904-00019-1,0,4380_7778208_2370202,4380_715 -4380_77995,293,4380_51163,Baltimore,85908-00017-1,0,4380_7778208_2370202,4380_715 -4380_77995,296,4380_51164,Baltimore,86148-00021-1,0,4380_7778208_2370216,4380_725 -4380_77995,291,4380_51166,Clonakilty,86129-00013-1,0,4380_7778208_2370214,4380_722 -4380_77995,296,4380_51167,Clonakilty,86130-00021-1,0,4380_7778208_2370214,4380_722 -4380_78141,292,4380_5117,Navan via Ashbourne,53044-00016-1,0,4380_7778208_1030138,4380_48 -4380_77995,297,4380_51174,Skibbereen,86112-00008-1,0,4380_7778208_2370208,4380_713 -4380_77995,285,4380_51175,Skibbereen,86050-00009-1,0,4380_7778208_2370206,4380_714 -4380_77995,288,4380_51176,Skibbereen,86052-00011-1,0,4380_7778208_2370206,4380_714 -4380_77995,287,4380_51177,Skibbereen,86058-00012-1,0,4380_7778208_2370206,4380_714 -4380_77995,286,4380_51178,Skibbereen,86056-00010-1,0,4380_7778208_2370206,4380_714 -4380_77995,289,4380_51179,Skibbereen,86054-00014-1,0,4380_7778208_2370206,4380_714 -4380_78141,293,4380_5118,Navan via Ashbourne,53041-00017-1,0,4380_7778208_1030138,4380_48 -4380_77995,292,4380_51180,Skibbereen,86057-00016-1,0,4380_7778208_2370206,4380_714 -4380_77995,290,4380_51181,Skibbereen,86051-00015-1,0,4380_7778208_2370206,4380_714 -4380_77995,294,4380_51182,Skibbereen,86059-00018-1,0,4380_7778208_2370206,4380_714 -4380_77995,295,4380_51183,Skibbereen,86055-00019-1,0,4380_7778208_2370206,4380_714 -4380_77995,293,4380_51184,Skibbereen,86053-00017-1,0,4380_7778208_2370206,4380_714 -4380_77995,297,4380_51186,Clonakilty,85836-00008-1,0,4380_7778208_2370201,4380_711 -4380_77995,291,4380_51188,Skibbereen,86141-00013-1,0,4380_7778208_2370215,4380_723 -4380_77995,296,4380_51189,Skibbereen,86142-00021-1,0,4380_7778208_2370215,4380_723 -4380_78141,294,4380_5119,Navan via Ashbourne,53042-00018-1,0,4380_7778208_1030138,4380_48 -4380_77995,285,4380_51195,Baltimore,86001-00009-1,0,4380_7778208_2370204,4380_719 -4380_77995,288,4380_51196,Baltimore,86005-00011-1,0,4380_7778208_2370204,4380_719 -4380_77995,287,4380_51197,Baltimore,86003-00012-1,0,4380_7778208_2370204,4380_719 -4380_77995,286,4380_51198,Baltimore,85999-00010-1,0,4380_7778208_2370204,4380_719 -4380_77995,289,4380_51199,Baltimore,86007-00014-1,0,4380_7778208_2370204,4380_719 -4380_77946,294,4380_512,Monasterboice,50546-00018-1,1,4380_7778208_1000916,4380_7 -4380_78141,295,4380_5120,Navan via Ashbourne,53045-00019-1,0,4380_7778208_1030138,4380_48 -4380_77995,292,4380_51200,Baltimore,86000-00016-1,0,4380_7778208_2370204,4380_719 -4380_77995,290,4380_51201,Baltimore,86002-00015-1,0,4380_7778208_2370204,4380_719 -4380_77995,294,4380_51202,Baltimore,86004-00018-1,0,4380_7778208_2370204,4380_719 -4380_77995,295,4380_51203,Baltimore,86008-00019-1,0,4380_7778208_2370204,4380_719 -4380_77995,293,4380_51204,Baltimore,86006-00017-1,0,4380_7778208_2370204,4380_719 -4380_77995,285,4380_51211,Goleen,85925-00009-1,0,4380_7778208_2370202,4380_718 -4380_77995,288,4380_51212,Goleen,85919-00011-1,0,4380_7778208_2370202,4380_718 -4380_77995,287,4380_51213,Goleen,85921-00012-1,0,4380_7778208_2370202,4380_718 -4380_77995,286,4380_51214,Goleen,85923-00010-1,0,4380_7778208_2370202,4380_718 -4380_77995,291,4380_51215,Goleen,86151-00013-1,0,4380_7778208_2370216,4380_718 -4380_77995,289,4380_51216,Goleen,85927-00014-1,0,4380_7778208_2370202,4380_718 -4380_77995,292,4380_51217,Goleen,85924-00016-1,0,4380_7778208_2370202,4380_718 -4380_77995,290,4380_51218,Goleen,85926-00015-1,0,4380_7778208_2370202,4380_718 -4380_77995,294,4380_51219,Goleen,85922-00018-1,0,4380_7778208_2370202,4380_718 -4380_77995,295,4380_51220,Goleen,85928-00019-1,0,4380_7778208_2370202,4380_718 -4380_77995,293,4380_51221,Goleen,85920-00017-1,0,4380_7778208_2370202,4380_718 -4380_77995,296,4380_51222,Goleen,86152-00021-1,0,4380_7778208_2370216,4380_718 -4380_77995,297,4380_51224,Skibbereen,86117-00008-1,0,4380_7778208_2370211,4380_714 -4380_77995,285,4380_51231,Skibbereen,85839-00009-1,0,4380_7778208_2370201,4380_713 -4380_77995,288,4380_51232,Skibbereen,85841-00011-1,0,4380_7778208_2370201,4380_713 -4380_77995,287,4380_51233,Skibbereen,85843-00012-1,0,4380_7778208_2370201,4380_713 -4380_77995,286,4380_51234,Skibbereen,85837-00010-1,0,4380_7778208_2370201,4380_713 -4380_77995,291,4380_51235,Skibbereen,86123-00013-1,0,4380_7778208_2370213,4380_721 -4380_77995,289,4380_51236,Skibbereen,85845-00014-1,0,4380_7778208_2370201,4380_713 -4380_77995,292,4380_51237,Skibbereen,85838-00016-1,0,4380_7778208_2370201,4380_713 -4380_77995,290,4380_51238,Skibbereen,85840-00015-1,0,4380_7778208_2370201,4380_713 -4380_77995,294,4380_51239,Skibbereen,85844-00018-1,0,4380_7778208_2370201,4380_713 -4380_77995,295,4380_51240,Skibbereen,85846-00019-1,0,4380_7778208_2370201,4380_713 -4380_77995,293,4380_51241,Skibbereen,85842-00017-1,0,4380_7778208_2370201,4380_713 -4380_77995,296,4380_51242,Skibbereen,86124-00021-1,0,4380_7778208_2370213,4380_721 -4380_77995,285,4380_51249,Baltimore,88075-00009-1,0,4380_7778208_2700201,4380_715 -4380_77995,288,4380_51250,Baltimore,88073-00011-1,0,4380_7778208_2700201,4380_715 -4380_77995,287,4380_51251,Baltimore,88079-00012-1,0,4380_7778208_2700201,4380_715 -4380_77995,286,4380_51252,Baltimore,88071-00010-1,0,4380_7778208_2700201,4380_715 -4380_77995,291,4380_51253,Baltimore,88069-00013-1,0,4380_7778208_2700201,4380_715 -4380_77995,289,4380_51254,Baltimore,88077-00014-1,0,4380_7778208_2700201,4380_715 -4380_77995,292,4380_51255,Baltimore,88072-00016-1,0,4380_7778208_2700201,4380_715 -4380_77995,290,4380_51256,Baltimore,88076-00015-1,0,4380_7778208_2700201,4380_715 -4380_77995,294,4380_51257,Baltimore,88080-00018-1,0,4380_7778208_2700201,4380_715 -4380_77995,295,4380_51258,Baltimore,88078-00019-1,0,4380_7778208_2700201,4380_715 -4380_77995,293,4380_51259,Baltimore,88074-00017-1,0,4380_7778208_2700201,4380_715 -4380_78141,285,4380_5126,Duleek,3973-00009-1,0,4380_7778208_1030139,4380_49 -4380_77995,296,4380_51260,Baltimore,88070-00021-1,0,4380_7778208_2700201,4380_715 -4380_77995,297,4380_51268,Skibbereen,86114-00008-1,0,4380_7778208_2370209,4380_713 -4380_77995,285,4380_51269,Skibbereen,86247-00009-1,0,4380_7778208_2390201,4380_721 -4380_78141,286,4380_5127,Duleek,3975-00010-1,0,4380_7778208_1030139,4380_49 -4380_77995,288,4380_51270,Skibbereen,86243-00011-1,0,4380_7778208_2390201,4380_721 -4380_77995,287,4380_51271,Skibbereen,86241-00012-1,0,4380_7778208_2390201,4380_721 -4380_77995,286,4380_51272,Skibbereen,86245-00010-1,0,4380_7778208_2390201,4380_721 -4380_77995,291,4380_51273,Skibbereen,85811-00013-1,0,4380_7778208_2360207,4380_713 -4380_77995,289,4380_51274,Skibbereen,86249-00014-1,0,4380_7778208_2390201,4380_721 -4380_77995,292,4380_51275,Skibbereen,86246-00016-1,0,4380_7778208_2390201,4380_721 -4380_77995,290,4380_51276,Skibbereen,86248-00015-1,0,4380_7778208_2390201,4380_721 -4380_77995,294,4380_51277,Skibbereen,86242-00018-1,0,4380_7778208_2390201,4380_721 -4380_77995,295,4380_51278,Skibbereen,86250-00019-1,0,4380_7778208_2390201,4380_721 -4380_77995,293,4380_51279,Skibbereen,86244-00017-1,0,4380_7778208_2390201,4380_721 -4380_78141,288,4380_5128,Duleek,3978-00011-1,0,4380_7778208_1030139,4380_49 -4380_77995,296,4380_51280,Skibbereen,85812-00021-1,0,4380_7778208_2360207,4380_713 -4380_77995,285,4380_51287,Goleen,85852-00009-1,0,4380_7778208_2370201,4380_716 -4380_77995,288,4380_51288,Goleen,85856-00011-1,0,4380_7778208_2370201,4380_716 -4380_77995,287,4380_51289,Goleen,85854-00012-1,0,4380_7778208_2370201,4380_716 -4380_78141,287,4380_5129,Duleek,3982-00012-1,0,4380_7778208_1030139,4380_49 -4380_77995,286,4380_51290,Goleen,85850-00010-1,0,4380_7778208_2370201,4380_716 -4380_77995,291,4380_51291,Goleen,86125-00013-1,0,4380_7778208_2370213,4380_716 -4380_77995,289,4380_51292,Goleen,85848-00014-1,0,4380_7778208_2370201,4380_716 -4380_77995,292,4380_51293,Goleen,85851-00016-1,0,4380_7778208_2370201,4380_716 -4380_77995,290,4380_51294,Goleen,85853-00015-1,0,4380_7778208_2370201,4380_716 -4380_77995,294,4380_51295,Goleen,85855-00018-1,0,4380_7778208_2370201,4380_716 -4380_77995,295,4380_51296,Goleen,85849-00019-1,0,4380_7778208_2370201,4380_716 -4380_77995,293,4380_51297,Goleen,85857-00017-1,0,4380_7778208_2370201,4380_716 -4380_77995,296,4380_51298,Goleen,86126-00021-1,0,4380_7778208_2370213,4380_716 -4380_77946,295,4380_513,Drogheda,50434-00019-1,1,4380_7778208_1000914,4380_6 -4380_78141,289,4380_5130,Duleek,3969-00014-1,0,4380_7778208_1030139,4380_49 -4380_77995,285,4380_51304,Skibbereen,86043-00009-1,0,4380_7778208_2370205,4380_720 -4380_77995,288,4380_51305,Skibbereen,86039-00011-1,0,4380_7778208_2370205,4380_720 -4380_77995,287,4380_51306,Skibbereen,86047-00012-1,0,4380_7778208_2370205,4380_720 -4380_77995,286,4380_51307,Skibbereen,86045-00010-1,0,4380_7778208_2370205,4380_720 -4380_77995,289,4380_51308,Skibbereen,86041-00014-1,0,4380_7778208_2370205,4380_720 -4380_77995,292,4380_51309,Skibbereen,86046-00016-1,0,4380_7778208_2370205,4380_720 -4380_78141,290,4380_5131,Duleek,53060-00015-1,0,4380_7778208_1030139,4380_49 -4380_77995,290,4380_51310,Skibbereen,86044-00015-1,0,4380_7778208_2370205,4380_720 -4380_77995,294,4380_51311,Skibbereen,86048-00018-1,0,4380_7778208_2370205,4380_720 -4380_77995,295,4380_51312,Skibbereen,86042-00019-1,0,4380_7778208_2370205,4380_720 -4380_77995,293,4380_51313,Skibbereen,86040-00017-1,0,4380_7778208_2370205,4380_720 -4380_77995,291,4380_51315,Skibbereen,86133-00013-1,0,4380_7778208_2370214,4380_713 -4380_77995,296,4380_51316,Skibbereen,86134-00021-1,0,4380_7778208_2370214,4380_713 -4380_77995,297,4380_51318,Clonakilty,85858-00008-1,0,4380_7778208_2370201,4380_711 -4380_78141,292,4380_5132,Duleek,53061-00016-1,0,4380_7778208_1030139,4380_49 -4380_77995,285,4380_51325,Cork,85973-00009-1,1,4380_7778208_2370204,4380_729 -4380_77995,288,4380_51326,Cork,85971-00011-1,1,4380_7778208_2370204,4380_729 -4380_77995,287,4380_51327,Cork,85975-00012-1,1,4380_7778208_2370204,4380_729 -4380_77995,286,4380_51328,Cork,85977-00010-1,1,4380_7778208_2370204,4380_729 -4380_77995,291,4380_51329,Cork,86135-00013-1,1,4380_7778208_2370215,4380_729 -4380_78141,293,4380_5133,Duleek,53058-00017-1,0,4380_7778208_1030139,4380_49 -4380_77995,289,4380_51330,Cork,85969-00014-1,1,4380_7778208_2370204,4380_729 -4380_77995,292,4380_51331,Cork,85978-00016-1,1,4380_7778208_2370204,4380_729 -4380_77995,290,4380_51332,Cork,85974-00015-1,1,4380_7778208_2370204,4380_729 -4380_77995,294,4380_51333,Cork,85976-00018-1,1,4380_7778208_2370204,4380_729 -4380_77995,295,4380_51334,Cork,85970-00019-1,1,4380_7778208_2370204,4380_729 -4380_77995,293,4380_51335,Cork,85972-00017-1,1,4380_7778208_2370204,4380_729 -4380_77995,296,4380_51336,Cork,86136-00021-1,1,4380_7778208_2370215,4380_729 -4380_78141,294,4380_5134,Duleek,53059-00018-1,0,4380_7778208_1030139,4380_49 -4380_77995,285,4380_51342,Cork,85945-00009-1,1,4380_7778208_2370203,4380_733 -4380_77995,288,4380_51343,Cork,85947-00011-1,1,4380_7778208_2370203,4380_733 -4380_77995,287,4380_51344,Cork,85943-00012-1,1,4380_7778208_2370203,4380_733 -4380_77995,286,4380_51345,Cork,85941-00010-1,1,4380_7778208_2370203,4380_733 -4380_77995,289,4380_51346,Cork,85939-00014-1,1,4380_7778208_2370203,4380_733 -4380_77995,292,4380_51347,Cork,85942-00016-1,1,4380_7778208_2370203,4380_733 -4380_77995,290,4380_51348,Cork,85946-00015-1,1,4380_7778208_2370203,4380_733 -4380_77995,294,4380_51349,Cork,85944-00018-1,1,4380_7778208_2370203,4380_733 -4380_78141,295,4380_5135,Duleek,53057-00019-1,0,4380_7778208_1030139,4380_49 -4380_77995,295,4380_51350,Cork,85940-00019-1,1,4380_7778208_2370203,4380_733 -4380_77995,293,4380_51351,Cork,85948-00017-1,1,4380_7778208_2370203,4380_733 -4380_77995,285,4380_51358,Cork,85830-00009-1,1,4380_7778208_2370201,4380_731 -4380_77995,288,4380_51359,Cork,85828-00011-1,1,4380_7778208_2370201,4380_731 -4380_77995,287,4380_51360,Cork,85826-00012-1,1,4380_7778208_2370201,4380_731 -4380_77995,286,4380_51361,Cork,85832-00010-1,1,4380_7778208_2370201,4380_731 -4380_77995,291,4380_51362,Cork,86121-00013-1,1,4380_7778208_2370213,4380_736 -4380_77995,289,4380_51363,Cork,85824-00014-1,1,4380_7778208_2370201,4380_731 -4380_77995,292,4380_51364,Cork,85833-00016-1,1,4380_7778208_2370201,4380_731 -4380_77995,290,4380_51365,Cork,85831-00015-1,1,4380_7778208_2370201,4380_731 -4380_77995,294,4380_51366,Cork,85827-00018-1,1,4380_7778208_2370201,4380_731 -4380_77995,295,4380_51367,Cork,85825-00019-1,1,4380_7778208_2370201,4380_731 -4380_77995,293,4380_51368,Cork,85829-00017-1,1,4380_7778208_2370201,4380_731 -4380_77995,296,4380_51369,Cork,86122-00021-1,1,4380_7778208_2370213,4380_736 -4380_77995,285,4380_51375,Skibbereen,85683-00009-1,1,4380_7778208_2360204,4380_730 -4380_77995,288,4380_51376,Skibbereen,85679-00011-1,1,4380_7778208_2360204,4380_730 -4380_77995,287,4380_51377,Skibbereen,85681-00012-1,1,4380_7778208_2360204,4380_730 -4380_77995,286,4380_51378,Skibbereen,85675-00010-1,1,4380_7778208_2360204,4380_730 -4380_77995,289,4380_51379,Skibbereen,85677-00014-1,1,4380_7778208_2360204,4380_730 -4380_77995,292,4380_51380,Skibbereen,85676-00016-1,1,4380_7778208_2360204,4380_730 -4380_77995,290,4380_51381,Skibbereen,85684-00015-1,1,4380_7778208_2360204,4380_730 -4380_77995,294,4380_51382,Skibbereen,85682-00018-1,1,4380_7778208_2360204,4380_730 -4380_77995,295,4380_51383,Skibbereen,85678-00019-1,1,4380_7778208_2360204,4380_730 -4380_77995,293,4380_51384,Skibbereen,85680-00017-1,1,4380_7778208_2360204,4380_730 -4380_77995,297,4380_51386,Cork,86091-00008-1,1,4380_7778208_2370208,4380_729 -4380_77995,285,4380_51392,Cork,86209-00009-1,1,4380_7778208_2390201,4380_735 -4380_77995,288,4380_51393,Cork,86207-00011-1,1,4380_7778208_2390201,4380_735 -4380_77995,287,4380_51394,Cork,86205-00012-1,1,4380_7778208_2390201,4380_735 -4380_77995,286,4380_51395,Cork,86211-00010-1,1,4380_7778208_2390201,4380_735 -4380_77995,289,4380_51396,Cork,86213-00014-1,1,4380_7778208_2390201,4380_735 -4380_77995,292,4380_51397,Cork,86212-00016-1,1,4380_7778208_2390201,4380_735 -4380_77995,290,4380_51398,Cork,86210-00015-1,1,4380_7778208_2390201,4380_735 -4380_77995,294,4380_51399,Cork,86206-00018-1,1,4380_7778208_2390201,4380_735 -4380_77946,295,4380_514,Monasterboice,50538-00019-1,1,4380_7778208_1000916,4380_7 -4380_77995,295,4380_51400,Cork,86214-00019-1,1,4380_7778208_2390201,4380_735 -4380_77995,293,4380_51401,Cork,86208-00017-1,1,4380_7778208_2390201,4380_735 -4380_77995,291,4380_51403,Cork,86155-00013-1,1,4380_7778208_2370217,4380_726 -4380_77995,296,4380_51404,Cork,86156-00021-1,1,4380_7778208_2370217,4380_726 -4380_78141,285,4380_5141,St. Stephen's Green,3918-00009-1,1,4380_7778208_1030137,4380_50 -4380_77995,285,4380_51410,Skibbereen,85695-00009-1,1,4380_7778208_2360204,4380_730 -4380_77995,288,4380_51411,Skibbereen,85703-00011-1,1,4380_7778208_2360204,4380_730 -4380_77995,287,4380_51412,Skibbereen,85701-00012-1,1,4380_7778208_2360204,4380_730 -4380_77995,286,4380_51413,Skibbereen,85697-00010-1,1,4380_7778208_2360204,4380_730 -4380_77995,289,4380_51414,Skibbereen,85699-00014-1,1,4380_7778208_2360204,4380_730 -4380_77995,292,4380_51415,Skibbereen,85698-00016-1,1,4380_7778208_2360204,4380_730 -4380_77995,290,4380_51416,Skibbereen,85696-00015-1,1,4380_7778208_2360204,4380_730 -4380_77995,294,4380_51417,Skibbereen,85702-00018-1,1,4380_7778208_2360204,4380_730 -4380_77995,295,4380_51418,Skibbereen,85700-00019-1,1,4380_7778208_2360204,4380_730 -4380_77995,293,4380_51419,Skibbereen,85704-00017-1,1,4380_7778208_2360204,4380_730 -4380_78141,286,4380_5142,St. Stephen's Green,3922-00010-1,1,4380_7778208_1030137,4380_50 -4380_77995,297,4380_51427,Cork,86116-00008-1,1,4380_7778208_2370211,4380_729 -4380_77995,285,4380_51428,Cork,86025-00009-1,1,4380_7778208_2370205,4380_729 -4380_77995,288,4380_51429,Cork,86027-00011-1,1,4380_7778208_2370205,4380_729 -4380_78141,288,4380_5143,St. Stephen's Green,3926-00011-1,1,4380_7778208_1030137,4380_50 -4380_77995,287,4380_51430,Cork,86023-00012-1,1,4380_7778208_2370205,4380_729 -4380_77995,286,4380_51431,Cork,86021-00010-1,1,4380_7778208_2370205,4380_729 -4380_77995,291,4380_51432,Cork,86127-00013-1,1,4380_7778208_2370214,4380_729 -4380_77995,289,4380_51433,Cork,86019-00014-1,1,4380_7778208_2370205,4380_729 -4380_77995,292,4380_51434,Cork,86022-00016-1,1,4380_7778208_2370205,4380_729 -4380_77995,290,4380_51435,Cork,86026-00015-1,1,4380_7778208_2370205,4380_729 -4380_77995,294,4380_51436,Cork,86024-00018-1,1,4380_7778208_2370205,4380_729 -4380_77995,295,4380_51437,Cork,86020-00019-1,1,4380_7778208_2370205,4380_729 -4380_77995,293,4380_51438,Cork,86028-00017-1,1,4380_7778208_2370205,4380_729 -4380_77995,296,4380_51439,Cork,86128-00021-1,1,4380_7778208_2370214,4380_729 -4380_78141,287,4380_5144,St. Stephen's Green,3930-00012-1,1,4380_7778208_1030137,4380_50 -4380_77995,285,4380_51446,Skibbereen,85891-00009-1,1,4380_7778208_2370202,4380_732 -4380_77995,288,4380_51447,Skibbereen,85889-00011-1,1,4380_7778208_2370202,4380_732 -4380_77995,287,4380_51448,Skibbereen,85895-00012-1,1,4380_7778208_2370202,4380_732 -4380_77995,286,4380_51449,Skibbereen,85897-00010-1,1,4380_7778208_2370202,4380_732 -4380_78141,289,4380_5145,St. Stephen's Green,3914-00014-1,1,4380_7778208_1030137,4380_50 -4380_77995,291,4380_51450,Skibbereen,86145-00013-1,1,4380_7778208_2370216,4380_732 -4380_77995,289,4380_51451,Skibbereen,85893-00014-1,1,4380_7778208_2370202,4380_732 -4380_77995,292,4380_51452,Skibbereen,85898-00016-1,1,4380_7778208_2370202,4380_732 -4380_77995,290,4380_51453,Skibbereen,85892-00015-1,1,4380_7778208_2370202,4380_732 -4380_77995,294,4380_51454,Skibbereen,85896-00018-1,1,4380_7778208_2370202,4380_732 -4380_77995,295,4380_51455,Skibbereen,85894-00019-1,1,4380_7778208_2370202,4380_732 -4380_77995,293,4380_51456,Skibbereen,85890-00017-1,1,4380_7778208_2370202,4380_732 -4380_77995,296,4380_51457,Skibbereen,86146-00021-1,1,4380_7778208_2370216,4380_732 -4380_78141,290,4380_5146,St. Stephen's Green,53015-00015-1,1,4380_7778208_1030137,4380_50 -4380_77995,285,4380_51464,Cork,86106-00009-1,1,4380_7778208_2370208,4380_729 -4380_77995,288,4380_51465,Cork,86104-00011-1,1,4380_7778208_2370208,4380_729 -4380_77995,287,4380_51466,Cork,86108-00012-1,1,4380_7778208_2370208,4380_729 -4380_77995,286,4380_51467,Cork,86110-00010-1,1,4380_7778208_2370208,4380_729 -4380_77995,291,4380_51468,Cork,86169-00013-1,1,4380_7778208_2370218,4380_729 -4380_77995,289,4380_51469,Cork,86102-00014-1,1,4380_7778208_2370208,4380_729 -4380_78141,292,4380_5147,St. Stephen's Green,53017-00016-1,1,4380_7778208_1030137,4380_50 -4380_77995,292,4380_51470,Cork,86111-00016-1,1,4380_7778208_2370208,4380_729 -4380_77995,290,4380_51471,Cork,86107-00015-1,1,4380_7778208_2370208,4380_729 -4380_77995,294,4380_51472,Cork,86109-00018-1,1,4380_7778208_2370208,4380_729 -4380_77995,295,4380_51473,Cork,86103-00019-1,1,4380_7778208_2370208,4380_729 -4380_77995,293,4380_51474,Cork,86105-00017-1,1,4380_7778208_2370208,4380_729 -4380_77995,296,4380_51475,Cork,86170-00021-1,1,4380_7778208_2370218,4380_729 -4380_77995,297,4380_51477,Cork,85835-00008-1,1,4380_7778208_2370201,4380_726 -4380_78141,293,4380_5148,St. Stephen's Green,53014-00017-1,1,4380_7778208_1030137,4380_50 -4380_77995,285,4380_51484,Skibbereen,85911-00009-1,1,4380_7778208_2370202,4380_730 -4380_77995,288,4380_51485,Skibbereen,85917-00011-1,1,4380_7778208_2370202,4380_730 -4380_77995,287,4380_51486,Skibbereen,85915-00012-1,1,4380_7778208_2370202,4380_730 -4380_77995,286,4380_51487,Skibbereen,85909-00010-1,1,4380_7778208_2370202,4380_730 -4380_77995,291,4380_51488,Skibbereen,86149-00013-1,1,4380_7778208_2370216,4380_730 -4380_77995,289,4380_51489,Skibbereen,85913-00014-1,1,4380_7778208_2370202,4380_730 -4380_78141,294,4380_5149,St. Stephen's Green,53016-00018-1,1,4380_7778208_1030137,4380_50 -4380_77995,292,4380_51490,Skibbereen,85910-00016-1,1,4380_7778208_2370202,4380_730 -4380_77995,290,4380_51491,Skibbereen,85912-00015-1,1,4380_7778208_2370202,4380_730 -4380_77995,294,4380_51492,Skibbereen,85916-00018-1,1,4380_7778208_2370202,4380_730 -4380_77995,295,4380_51493,Skibbereen,85914-00019-1,1,4380_7778208_2370202,4380_730 -4380_77995,293,4380_51494,Skibbereen,85918-00017-1,1,4380_7778208_2370202,4380_730 -4380_77995,296,4380_51495,Skibbereen,86150-00021-1,1,4380_7778208_2370216,4380_730 -4380_77995,297,4380_51497,Cork,86113-00008-1,1,4380_7778208_2370209,4380_729 -4380_77995,291,4380_51499,Clonakilty,86139-00013-1,1,4380_7778208_2370215,4380_737 -4380_77946,296,4380_515,Drogheda,50266-00021-1,1,4380_7778208_1000911,4380_9 -4380_78141,295,4380_5150,St. Stephen's Green,53013-00019-1,1,4380_7778208_1030137,4380_50 -4380_77995,296,4380_51500,Clonakilty,86140-00021-1,1,4380_7778208_2370215,4380_737 -4380_77995,291,4380_51502,Cork,86131-00013-1,1,4380_7778208_2370214,4380_727 -4380_77995,296,4380_51503,Cork,86132-00021-1,1,4380_7778208_2370214,4380_727 -4380_77995,297,4380_51505,Cork,86060-00008-1,1,4380_7778208_2370206,4380_728 -4380_77995,285,4380_51516,Skibbereen,86013-00009-1,1,4380_7778208_2370204,4380_730 -4380_77995,285,4380_51517,Cork,86065-00009-1,1,4380_7778208_2370206,4380_734 -4380_77995,288,4380_51518,Skibbereen,86015-00011-1,1,4380_7778208_2370204,4380_730 -4380_77995,288,4380_51519,Cork,86069-00011-1,1,4380_7778208_2370206,4380_734 -4380_77995,287,4380_51520,Skibbereen,86017-00012-1,1,4380_7778208_2370204,4380_730 -4380_77995,287,4380_51521,Cork,86063-00012-1,1,4380_7778208_2370206,4380_734 -4380_77995,286,4380_51522,Skibbereen,86011-00010-1,1,4380_7778208_2370204,4380_730 -4380_77995,286,4380_51523,Cork,86061-00010-1,1,4380_7778208_2370206,4380_734 -4380_77995,289,4380_51524,Skibbereen,86009-00014-1,1,4380_7778208_2370204,4380_730 -4380_77995,289,4380_51525,Cork,86067-00014-1,1,4380_7778208_2370206,4380_734 -4380_77995,292,4380_51526,Skibbereen,86012-00016-1,1,4380_7778208_2370204,4380_730 -4380_77995,292,4380_51527,Cork,86062-00016-1,1,4380_7778208_2370206,4380_734 -4380_77995,290,4380_51528,Skibbereen,86014-00015-1,1,4380_7778208_2370204,4380_730 -4380_77995,290,4380_51529,Cork,86066-00015-1,1,4380_7778208_2370206,4380_734 -4380_77995,294,4380_51530,Skibbereen,86018-00018-1,1,4380_7778208_2370204,4380_730 -4380_77995,294,4380_51531,Cork,86064-00018-1,1,4380_7778208_2370206,4380_734 -4380_77995,295,4380_51532,Skibbereen,86010-00019-1,1,4380_7778208_2370204,4380_730 -4380_77995,295,4380_51533,Cork,86068-00019-1,1,4380_7778208_2370206,4380_734 -4380_77995,293,4380_51534,Skibbereen,86016-00017-1,1,4380_7778208_2370204,4380_730 -4380_77995,293,4380_51535,Cork,86070-00017-1,1,4380_7778208_2370206,4380_734 -4380_77995,297,4380_51537,Cork,85847-00008-1,1,4380_7778208_2370201,4380_727 -4380_77995,285,4380_51550,Cork,85931-00009-1,1,4380_7778208_2370202,4380_728 -4380_77995,285,4380_51551,Skibbereen,88085-00009-1,1,4380_7778208_2700201,4380_730 -4380_77995,288,4380_51552,Cork,85933-00011-1,1,4380_7778208_2370202,4380_728 -4380_77995,288,4380_51553,Skibbereen,88081-00011-1,1,4380_7778208_2700201,4380_730 -4380_77995,287,4380_51554,Cork,85935-00012-1,1,4380_7778208_2370202,4380_728 -4380_77995,287,4380_51555,Skibbereen,88089-00012-1,1,4380_7778208_2700201,4380_730 -4380_77995,286,4380_51556,Cork,85929-00010-1,1,4380_7778208_2370202,4380_728 -4380_77995,286,4380_51557,Skibbereen,88087-00010-1,1,4380_7778208_2700201,4380_730 -4380_77995,291,4380_51558,Cork,86153-00013-1,1,4380_7778208_2370216,4380_728 -4380_77995,291,4380_51559,Skibbereen,88091-00013-1,1,4380_7778208_2700201,4380_730 -4380_78141,285,4380_5156,U C D Belfield,3972-00009-1,1,4380_7778208_1030139,4380_51 -4380_77995,289,4380_51560,Cork,85937-00014-1,1,4380_7778208_2370202,4380_728 -4380_77995,289,4380_51561,Skibbereen,88083-00014-1,1,4380_7778208_2700201,4380_730 -4380_77995,292,4380_51562,Cork,85930-00016-1,1,4380_7778208_2370202,4380_728 -4380_77995,292,4380_51563,Skibbereen,88088-00016-1,1,4380_7778208_2700201,4380_730 -4380_77995,290,4380_51564,Cork,85932-00015-1,1,4380_7778208_2370202,4380_728 -4380_77995,290,4380_51565,Skibbereen,88086-00015-1,1,4380_7778208_2700201,4380_730 -4380_77995,294,4380_51566,Cork,85936-00018-1,1,4380_7778208_2370202,4380_728 -4380_77995,294,4380_51567,Skibbereen,88090-00018-1,1,4380_7778208_2700201,4380_730 -4380_77995,295,4380_51568,Cork,85938-00019-1,1,4380_7778208_2370202,4380_728 -4380_77995,295,4380_51569,Skibbereen,88084-00019-1,1,4380_7778208_2700201,4380_730 -4380_78141,286,4380_5157,U C D Belfield,3974-00010-1,1,4380_7778208_1030139,4380_51 -4380_77995,293,4380_51570,Cork,85934-00017-1,1,4380_7778208_2370202,4380_728 -4380_77995,293,4380_51571,Skibbereen,88082-00017-1,1,4380_7778208_2700201,4380_730 -4380_77995,296,4380_51572,Cork,86154-00021-1,1,4380_7778208_2370216,4380_728 -4380_77995,296,4380_51573,Skibbereen,88092-00021-1,1,4380_7778208_2700201,4380_730 -4380_77995,297,4380_51575,Cork,86118-00008-1,1,4380_7778208_2370211,4380_729 -4380_78141,288,4380_5158,U C D Belfield,3977-00011-1,1,4380_7778208_1030139,4380_51 -4380_77995,285,4380_51581,Cork,86257-00009-1,1,4380_7778208_2390201,4380_729 -4380_77995,288,4380_51582,Cork,86255-00011-1,1,4380_7778208_2390201,4380_729 -4380_77995,287,4380_51583,Cork,86253-00012-1,1,4380_7778208_2390201,4380_729 -4380_77995,286,4380_51584,Cork,86251-00010-1,1,4380_7778208_2390201,4380_729 -4380_77995,289,4380_51585,Cork,86259-00014-1,1,4380_7778208_2390201,4380_729 -4380_77995,292,4380_51586,Cork,86252-00016-1,1,4380_7778208_2390201,4380_729 -4380_77995,290,4380_51587,Cork,86258-00015-1,1,4380_7778208_2390201,4380_729 -4380_77995,294,4380_51588,Cork,86254-00018-1,1,4380_7778208_2390201,4380_729 -4380_77995,295,4380_51589,Cork,86260-00019-1,1,4380_7778208_2390201,4380_729 -4380_78141,287,4380_5159,U C D Belfield,3981-00012-1,1,4380_7778208_1030139,4380_51 -4380_77995,293,4380_51590,Cork,86256-00017-1,1,4380_7778208_2390201,4380_729 -4380_77996,285,4380_51596,Bandon,85867-00009-1,0,4380_7778208_2370202,4380_738 -4380_77996,288,4380_51597,Bandon,85863-00011-1,0,4380_7778208_2370202,4380_738 -4380_77996,287,4380_51598,Bandon,85865-00012-1,0,4380_7778208_2370202,4380_738 -4380_77996,286,4380_51599,Bandon,85861-00010-1,0,4380_7778208_2370202,4380_738 -4380_78141,289,4380_5160,U C D Belfield,3968-00014-1,1,4380_7778208_1030139,4380_51 -4380_77996,289,4380_51600,Bandon,85859-00014-1,0,4380_7778208_2370202,4380_738 -4380_77996,292,4380_51601,Bandon,85862-00016-1,0,4380_7778208_2370202,4380_738 -4380_77996,290,4380_51602,Bandon,85868-00015-1,0,4380_7778208_2370202,4380_738 -4380_77996,294,4380_51603,Bandon,85866-00018-1,0,4380_7778208_2370202,4380_738 -4380_77996,295,4380_51604,Bandon,85860-00019-1,0,4380_7778208_2370202,4380_738 -4380_77996,293,4380_51605,Bandon,85864-00017-1,0,4380_7778208_2370202,4380_738 -4380_78141,290,4380_5161,U C D Belfield,53048-00015-1,1,4380_7778208_1030139,4380_51 -4380_77996,285,4380_51611,Bandon,86187-00009-1,0,4380_7778208_2390201,4380_740 -4380_77996,288,4380_51612,Bandon,86181-00011-1,0,4380_7778208_2390201,4380_740 -4380_77996,287,4380_51613,Bandon,86189-00012-1,0,4380_7778208_2390201,4380_740 -4380_77996,286,4380_51614,Bandon,86183-00010-1,0,4380_7778208_2390201,4380_740 -4380_77996,289,4380_51615,Bandon,86185-00014-1,0,4380_7778208_2390201,4380_740 -4380_77996,292,4380_51616,Bandon,86184-00016-1,0,4380_7778208_2390201,4380_740 -4380_77996,290,4380_51617,Bandon,86188-00015-1,0,4380_7778208_2390201,4380_740 -4380_77996,294,4380_51618,Bandon,86190-00018-1,0,4380_7778208_2390201,4380_740 -4380_77996,295,4380_51619,Bandon,86186-00019-1,0,4380_7778208_2390201,4380_740 -4380_78141,292,4380_5162,U C D Belfield,53047-00016-1,1,4380_7778208_1030139,4380_51 -4380_77996,293,4380_51620,Bandon,86182-00017-1,0,4380_7778208_2390201,4380_740 -4380_77996,291,4380_51622,Bandon,86157-00013-1,0,4380_7778208_2370217,4380_738 -4380_77996,296,4380_51623,Bandon,86158-00021-1,0,4380_7778208_2370217,4380_738 -4380_78141,293,4380_5163,U C D Belfield,53051-00017-1,1,4380_7778208_1030139,4380_51 -4380_77996,285,4380_51630,Bandon,86221-00009-1,0,4380_7778208_2390201,4380_741 -4380_77996,288,4380_51631,Bandon,86225-00011-1,0,4380_7778208_2390201,4380_741 -4380_77996,287,4380_51632,Bandon,86219-00012-1,0,4380_7778208_2390201,4380_741 -4380_77996,286,4380_51633,Bandon,86217-00010-1,0,4380_7778208_2390201,4380_741 -4380_77996,291,4380_51634,Bandon,85757-00013-1,0,4380_7778208_2360205,4380_744 -4380_77996,289,4380_51635,Bandon,86223-00014-1,0,4380_7778208_2390201,4380_741 -4380_77996,292,4380_51636,Bandon,86218-00016-1,0,4380_7778208_2390201,4380_741 -4380_77996,290,4380_51637,Bandon,86222-00015-1,0,4380_7778208_2390201,4380_741 -4380_77996,294,4380_51638,Bandon,86220-00018-1,0,4380_7778208_2390201,4380_741 -4380_77996,295,4380_51639,Bandon,86224-00019-1,0,4380_7778208_2390201,4380_741 -4380_78141,294,4380_5164,U C D Belfield,53050-00018-1,1,4380_7778208_1030139,4380_51 -4380_77996,293,4380_51640,Bandon,86226-00017-1,0,4380_7778208_2390201,4380_741 -4380_77996,296,4380_51641,Bandon,85758-00021-1,0,4380_7778208_2360205,4380_744 -4380_77996,291,4380_51643,Bandon,86161-00013-1,0,4380_7778208_2370217,4380_740 -4380_77996,296,4380_51644,Bandon,86162-00021-1,0,4380_7778208_2370217,4380_740 -4380_78141,295,4380_5165,U C D Belfield,53049-00019-1,1,4380_7778208_1030139,4380_51 -4380_77996,285,4380_51650,Butlerstown,85723-00009-1,0,4380_7778208_2360204,4380_739 -4380_77996,288,4380_51651,Butlerstown,85715-00011-1,0,4380_7778208_2360204,4380_739 -4380_77996,287,4380_51652,Butlerstown,85717-00012-1,0,4380_7778208_2360204,4380_739 -4380_77996,286,4380_51653,Butlerstown,85721-00010-1,0,4380_7778208_2360204,4380_739 -4380_77996,289,4380_51654,Butlerstown,85719-00014-1,0,4380_7778208_2360204,4380_739 -4380_77996,292,4380_51655,Butlerstown,85722-00016-1,0,4380_7778208_2360204,4380_739 -4380_77996,290,4380_51656,Butlerstown,85724-00015-1,0,4380_7778208_2360204,4380_739 -4380_77996,294,4380_51657,Butlerstown,85718-00018-1,0,4380_7778208_2360204,4380_739 -4380_77996,295,4380_51658,Butlerstown,85720-00019-1,0,4380_7778208_2360204,4380_739 -4380_77996,293,4380_51659,Butlerstown,85716-00017-1,0,4380_7778208_2360204,4380_739 -4380_77996,285,4380_51666,Butlerstown via Bandon,86303-00009-1,0,4380_7778208_2390202,4380_743 -4380_77996,288,4380_51667,Butlerstown via Bandon,86309-00011-1,0,4380_7778208_2390202,4380_743 -4380_77996,287,4380_51668,Butlerstown via Bandon,86307-00012-1,0,4380_7778208_2390202,4380_743 -4380_77996,286,4380_51669,Butlerstown via Bandon,86305-00010-1,0,4380_7778208_2390202,4380_743 -4380_77996,291,4380_51670,Bandon,86239-00013-1,0,4380_7778208_2390201,4380_740 -4380_77996,289,4380_51671,Butlerstown via Bandon,86301-00014-1,0,4380_7778208_2390202,4380_743 -4380_77996,292,4380_51672,Butlerstown via Bandon,86306-00016-1,0,4380_7778208_2390202,4380_743 -4380_77996,290,4380_51673,Butlerstown via Bandon,86304-00015-1,0,4380_7778208_2390202,4380_743 -4380_77996,294,4380_51674,Butlerstown via Bandon,86308-00018-1,0,4380_7778208_2390202,4380_743 -4380_77996,295,4380_51675,Butlerstown via Bandon,86302-00019-1,0,4380_7778208_2390202,4380_743 -4380_77996,293,4380_51676,Butlerstown via Bandon,86310-00017-1,0,4380_7778208_2390202,4380_743 -4380_77996,296,4380_51677,Bandon,86240-00021-1,0,4380_7778208_2390201,4380_740 -4380_77996,285,4380_51683,Bandon,86313-00009-1,0,4380_7778208_2390203,4380_741 -4380_77996,288,4380_51684,Bandon,86317-00011-1,0,4380_7778208_2390203,4380_741 -4380_77996,287,4380_51685,Bandon,86319-00012-1,0,4380_7778208_2390203,4380_741 -4380_77996,286,4380_51686,Bandon,86315-00010-1,0,4380_7778208_2390203,4380_741 -4380_77996,289,4380_51687,Bandon,86311-00014-1,0,4380_7778208_2390203,4380_741 -4380_77996,292,4380_51688,Bandon,86316-00016-1,0,4380_7778208_2390203,4380_741 -4380_77996,290,4380_51689,Bandon,86314-00015-1,0,4380_7778208_2390203,4380_741 -4380_77996,294,4380_51690,Bandon,86320-00018-1,0,4380_7778208_2390203,4380_741 -4380_77996,295,4380_51691,Bandon,86312-00019-1,0,4380_7778208_2390203,4380_741 -4380_77996,293,4380_51692,Bandon,86318-00017-1,0,4380_7778208_2390203,4380_741 -4380_77996,291,4380_51694,Bandon,86165-00013-1,0,4380_7778208_2370217,4380_741 -4380_77996,296,4380_51695,Bandon,86166-00021-1,0,4380_7778208_2370217,4380_741 -4380_77996,297,4380_51702,Bandon,86119-00008-1,0,4380_7778208_2370211,4380_738 -4380_77996,285,4380_51703,Bandon,86265-00009-1,0,4380_7778208_2390201,4380_742 -4380_77996,288,4380_51704,Bandon,86267-00011-1,0,4380_7778208_2390201,4380_742 -4380_77996,287,4380_51705,Bandon,86269-00012-1,0,4380_7778208_2390201,4380_742 -4380_77996,286,4380_51706,Bandon,86261-00010-1,0,4380_7778208_2390201,4380_742 -4380_77996,289,4380_51707,Bandon,86263-00014-1,0,4380_7778208_2390201,4380_742 -4380_77996,292,4380_51708,Bandon,86262-00016-1,0,4380_7778208_2390201,4380_742 -4380_77996,290,4380_51709,Bandon,86266-00015-1,0,4380_7778208_2390201,4380_742 -4380_78141,285,4380_5171,St. Stephen's Green,3948-00009-1,1,4380_7778208_1030138,4380_50 -4380_77996,294,4380_51710,Bandon,86270-00018-1,0,4380_7778208_2390201,4380_742 -4380_77996,295,4380_51711,Bandon,86264-00019-1,0,4380_7778208_2390201,4380_742 -4380_77996,293,4380_51712,Bandon,86268-00017-1,0,4380_7778208_2390201,4380_742 -4380_77996,285,4380_51718,Cork,86177-00009-1,1,4380_7778208_2390201,4380_749 -4380_77996,288,4380_51719,Cork,86179-00011-1,1,4380_7778208_2390201,4380_749 -4380_78141,286,4380_5172,St. Stephen's Green,3952-00010-1,1,4380_7778208_1030138,4380_50 -4380_77996,287,4380_51720,Cork,86175-00012-1,1,4380_7778208_2390201,4380_749 -4380_77996,286,4380_51721,Cork,86173-00010-1,1,4380_7778208_2390201,4380_749 -4380_77996,289,4380_51722,Cork,86171-00014-1,1,4380_7778208_2390201,4380_749 -4380_77996,292,4380_51723,Cork,86174-00016-1,1,4380_7778208_2390201,4380_749 -4380_77996,290,4380_51724,Cork,86178-00015-1,1,4380_7778208_2390201,4380_749 -4380_77996,294,4380_51725,Cork,86176-00018-1,1,4380_7778208_2390201,4380_749 -4380_77996,295,4380_51726,Cork,86172-00019-1,1,4380_7778208_2390201,4380_749 -4380_77996,293,4380_51727,Cork,86180-00017-1,1,4380_7778208_2390201,4380_749 -4380_78141,288,4380_5173,St. Stephen's Green,3954-00011-1,1,4380_7778208_1030138,4380_50 -4380_77996,285,4380_51733,Cork,85877-00009-1,1,4380_7778208_2370202,4380_747 -4380_77996,288,4380_51734,Cork,85873-00011-1,1,4380_7778208_2370202,4380_747 -4380_77996,287,4380_51735,Cork,85875-00012-1,1,4380_7778208_2370202,4380_747 -4380_77996,286,4380_51736,Cork,85869-00010-1,1,4380_7778208_2370202,4380_747 -4380_77996,289,4380_51737,Cork,85871-00014-1,1,4380_7778208_2370202,4380_747 -4380_77996,292,4380_51738,Cork,85870-00016-1,1,4380_7778208_2370202,4380_747 -4380_77996,290,4380_51739,Cork,85878-00015-1,1,4380_7778208_2370202,4380_747 -4380_78141,287,4380_5174,St. Stephen's Green,3960-00012-1,1,4380_7778208_1030138,4380_50 -4380_77996,294,4380_51740,Cork,85876-00018-1,1,4380_7778208_2370202,4380_747 -4380_77996,295,4380_51741,Cork,85872-00019-1,1,4380_7778208_2370202,4380_747 -4380_77996,293,4380_51742,Cork,85874-00017-1,1,4380_7778208_2370202,4380_747 -4380_77996,285,4380_51748,Cork,86275-00009-1,1,4380_7778208_2390202,4380_752 -4380_77996,288,4380_51749,Cork,86273-00011-1,1,4380_7778208_2390202,4380_752 -4380_78141,289,4380_5175,St. Stephen's Green,3944-00014-1,1,4380_7778208_1030138,4380_50 -4380_77996,287,4380_51750,Cork,86277-00012-1,1,4380_7778208_2390202,4380_752 -4380_77996,286,4380_51751,Cork,86279-00010-1,1,4380_7778208_2390202,4380_752 -4380_77996,289,4380_51752,Cork,86271-00014-1,1,4380_7778208_2390202,4380_752 -4380_77996,292,4380_51753,Cork,86280-00016-1,1,4380_7778208_2390202,4380_752 -4380_77996,290,4380_51754,Cork,86276-00015-1,1,4380_7778208_2390202,4380_752 -4380_77996,294,4380_51755,Cork,86278-00018-1,1,4380_7778208_2390202,4380_752 -4380_77996,295,4380_51756,Cork,86272-00019-1,1,4380_7778208_2390202,4380_752 -4380_77996,293,4380_51757,Cork,86274-00017-1,1,4380_7778208_2390202,4380_752 -4380_77996,291,4380_51759,Cork,86191-00013-1,1,4380_7778208_2390201,4380_749 -4380_78141,290,4380_5176,St. Stephen's Green,53034-00015-1,1,4380_7778208_1030138,4380_50 -4380_77996,296,4380_51760,Cork,86192-00021-1,1,4380_7778208_2390201,4380_749 -4380_77996,285,4380_51766,Cork,85957-00009-1,1,4380_7778208_2370203,4380_748 -4380_77996,288,4380_51767,Cork,85953-00011-1,1,4380_7778208_2370203,4380_748 -4380_77996,287,4380_51768,Cork,85955-00012-1,1,4380_7778208_2370203,4380_748 -4380_77996,286,4380_51769,Cork,85951-00010-1,1,4380_7778208_2370203,4380_748 -4380_78141,292,4380_5177,St. Stephen's Green,53035-00016-1,1,4380_7778208_1030138,4380_50 -4380_77996,289,4380_51770,Cork,85949-00014-1,1,4380_7778208_2370203,4380_748 -4380_77996,292,4380_51771,Cork,85952-00016-1,1,4380_7778208_2370203,4380_748 -4380_77996,290,4380_51772,Cork,85958-00015-1,1,4380_7778208_2370203,4380_748 -4380_77996,294,4380_51773,Cork,85956-00018-1,1,4380_7778208_2370203,4380_748 -4380_77996,295,4380_51774,Cork,85950-00019-1,1,4380_7778208_2370203,4380_748 -4380_77996,293,4380_51775,Cork,85954-00017-1,1,4380_7778208_2370203,4380_748 -4380_78141,293,4380_5178,St. Stephen's Green,53031-00017-1,1,4380_7778208_1030138,4380_50 -4380_77996,285,4380_51782,Cork,85961-00009-1,1,4380_7778208_2370203,4380_749 -4380_77996,288,4380_51783,Cork,85959-00011-1,1,4380_7778208_2370203,4380_749 -4380_77996,287,4380_51784,Cork,85967-00012-1,1,4380_7778208_2370203,4380_749 -4380_77996,286,4380_51785,Cork,85965-00010-1,1,4380_7778208_2370203,4380_749 -4380_77996,291,4380_51786,Cork,86159-00013-1,1,4380_7778208_2370217,4380_753 -4380_77996,289,4380_51787,Cork,85963-00014-1,1,4380_7778208_2370203,4380_749 -4380_77996,292,4380_51788,Cork,85966-00016-1,1,4380_7778208_2370203,4380_749 -4380_77996,290,4380_51789,Cork,85962-00015-1,1,4380_7778208_2370203,4380_749 -4380_78141,294,4380_5179,St. Stephen's Green,53032-00018-1,1,4380_7778208_1030138,4380_50 -4380_77996,294,4380_51790,Cork,85968-00018-1,1,4380_7778208_2370203,4380_749 -4380_77996,295,4380_51791,Cork,85964-00019-1,1,4380_7778208_2370203,4380_749 -4380_77996,293,4380_51792,Cork,85960-00017-1,1,4380_7778208_2370203,4380_749 -4380_77996,296,4380_51793,Cork,86160-00021-1,1,4380_7778208_2370217,4380_753 -4380_77996,291,4380_51795,Cork,85759-00013-1,1,4380_7778208_2360205,4380_749 -4380_77996,296,4380_51796,Cork,85760-00021-1,1,4380_7778208_2360205,4380_749 -4380_78141,295,4380_5180,St. Stephen's Green,53033-00019-1,1,4380_7778208_1030138,4380_50 -4380_77996,285,4380_51802,Cork,86237-00009-1,1,4380_7778208_2390201,4380_751 -4380_77996,288,4380_51803,Cork,86233-00011-1,1,4380_7778208_2390201,4380_751 -4380_77996,287,4380_51804,Cork,86235-00012-1,1,4380_7778208_2390201,4380_751 -4380_77996,286,4380_51805,Cork,86231-00010-1,1,4380_7778208_2390201,4380_751 -4380_77996,289,4380_51806,Cork,86229-00014-1,1,4380_7778208_2390201,4380_751 -4380_77996,292,4380_51807,Cork,86232-00016-1,1,4380_7778208_2390201,4380_751 -4380_77996,290,4380_51808,Cork,86238-00015-1,1,4380_7778208_2390201,4380_751 -4380_77996,294,4380_51809,Cork,86236-00018-1,1,4380_7778208_2390201,4380_751 -4380_77996,295,4380_51810,Cork,86230-00019-1,1,4380_7778208_2390201,4380_751 -4380_77996,293,4380_51811,Cork,86234-00017-1,1,4380_7778208_2390201,4380_751 -4380_77996,285,4380_51818,Cork,86033-00009-1,1,4380_7778208_2370205,4380_750 -4380_77996,288,4380_51819,Cork,86035-00011-1,1,4380_7778208_2370205,4380_750 -4380_77996,287,4380_51820,Cork,86037-00012-1,1,4380_7778208_2370205,4380_750 -4380_77996,286,4380_51821,Cork,86031-00010-1,1,4380_7778208_2370205,4380_750 -4380_77996,291,4380_51822,Cork,86163-00013-1,1,4380_7778208_2370217,4380_749 -4380_77996,289,4380_51823,Cork,86029-00014-1,1,4380_7778208_2370205,4380_750 -4380_77996,292,4380_51824,Cork,86032-00016-1,1,4380_7778208_2370205,4380_750 -4380_77996,290,4380_51825,Cork,86034-00015-1,1,4380_7778208_2370205,4380_750 -4380_77996,294,4380_51826,Cork,86038-00018-1,1,4380_7778208_2370205,4380_750 -4380_77996,295,4380_51827,Cork,86030-00019-1,1,4380_7778208_2370205,4380_750 -4380_77996,293,4380_51828,Cork,86036-00017-1,1,4380_7778208_2370205,4380_750 -4380_77996,296,4380_51829,Cork,86164-00021-1,1,4380_7778208_2370217,4380_749 -4380_77996,285,4380_51835,Bandon,85733-00009-1,1,4380_7778208_2360204,4380_746 -4380_77996,288,4380_51836,Bandon,85729-00011-1,1,4380_7778208_2360204,4380_746 -4380_77996,287,4380_51837,Bandon,85727-00012-1,1,4380_7778208_2360204,4380_746 -4380_77996,286,4380_51838,Bandon,85731-00010-1,1,4380_7778208_2360204,4380_746 -4380_77996,289,4380_51839,Bandon,85725-00014-1,1,4380_7778208_2360204,4380_746 -4380_77996,292,4380_51840,Bandon,85732-00016-1,1,4380_7778208_2360204,4380_746 -4380_77996,290,4380_51841,Bandon,85734-00015-1,1,4380_7778208_2360204,4380_746 -4380_77996,294,4380_51842,Bandon,85728-00018-1,1,4380_7778208_2360204,4380_746 -4380_77996,295,4380_51843,Bandon,85726-00019-1,1,4380_7778208_2360204,4380_746 -4380_77996,293,4380_51844,Bandon,85730-00017-1,1,4380_7778208_2360204,4380_746 -4380_77996,297,4380_51846,South Mall,86120-00008-1,1,4380_7778208_2370211,4380_745 -4380_77997,285,4380_51852,Cloyne,86345-00009-1,0,4380_7778208_2400202,4380_754 -4380_77997,288,4380_51853,Cloyne,86341-00011-1,0,4380_7778208_2400202,4380_754 -4380_77997,287,4380_51854,Cloyne,86343-00012-1,0,4380_7778208_2400202,4380_754 -4380_77997,286,4380_51855,Cloyne,86339-00010-1,0,4380_7778208_2400202,4380_754 -4380_77997,289,4380_51856,Cloyne,86337-00014-1,0,4380_7778208_2400202,4380_754 -4380_77997,292,4380_51857,Cloyne,86340-00016-1,0,4380_7778208_2400202,4380_754 -4380_77997,290,4380_51858,Cloyne,86346-00015-1,0,4380_7778208_2400202,4380_754 -4380_77997,294,4380_51859,Cloyne,86344-00018-1,0,4380_7778208_2400202,4380_754 -4380_77950,285,4380_5186,Drogheda,54151-00009-1,0,4380_7778208_1051101,4380_53 -4380_77997,295,4380_51860,Cloyne,86338-00019-1,0,4380_7778208_2400202,4380_754 -4380_77997,293,4380_51861,Cloyne,86342-00017-1,0,4380_7778208_2400202,4380_754 -4380_77997,291,4380_51863,Ballycotton,86321-00013-1,0,4380_7778208_2400201,4380_756 -4380_77997,296,4380_51864,Ballycotton,86322-00021-1,0,4380_7778208_2400201,4380_756 -4380_77950,286,4380_5187,Drogheda,54155-00010-1,0,4380_7778208_1051101,4380_53 -4380_77997,285,4380_51870,Ballycotton,86395-00009-1,0,4380_7778208_2400203,4380_756 -4380_77997,288,4380_51871,Ballycotton,86393-00011-1,0,4380_7778208_2400203,4380_756 -4380_77997,287,4380_51872,Ballycotton,86391-00012-1,0,4380_7778208_2400203,4380_756 -4380_77997,286,4380_51873,Ballycotton,86387-00010-1,0,4380_7778208_2400203,4380_756 -4380_77997,289,4380_51874,Ballycotton,86389-00014-1,0,4380_7778208_2400203,4380_756 -4380_77997,292,4380_51875,Ballycotton,86388-00016-1,0,4380_7778208_2400203,4380_756 -4380_77997,290,4380_51876,Ballycotton,86396-00015-1,0,4380_7778208_2400203,4380_756 -4380_77997,294,4380_51877,Ballycotton,86392-00018-1,0,4380_7778208_2400203,4380_756 -4380_77997,295,4380_51878,Ballycotton,86390-00019-1,0,4380_7778208_2400203,4380_756 -4380_77997,293,4380_51879,Ballycotton,86394-00017-1,0,4380_7778208_2400203,4380_756 -4380_77950,288,4380_5188,Drogheda,54153-00011-1,0,4380_7778208_1051101,4380_53 -4380_77997,291,4380_51881,Cloyne,86329-00013-1,0,4380_7778208_2400201,4380_754 -4380_77997,296,4380_51882,Cloyne,86330-00021-1,0,4380_7778208_2400201,4380_754 -4380_77997,285,4380_51889,Ballycotton,86363-00009-1,0,4380_7778208_2400202,4380_755 -4380_77950,287,4380_5189,Drogheda,54157-00012-1,0,4380_7778208_1051101,4380_53 -4380_77997,288,4380_51890,Ballycotton,86361-00011-1,0,4380_7778208_2400202,4380_755 -4380_77997,287,4380_51891,Ballycotton,86365-00012-1,0,4380_7778208_2400202,4380_755 -4380_77997,286,4380_51892,Ballycotton,86357-00010-1,0,4380_7778208_2400202,4380_755 -4380_77997,291,4380_51893,Ballycotton,86333-00013-1,0,4380_7778208_2400201,4380_758 -4380_77997,289,4380_51894,Ballycotton,86359-00014-1,0,4380_7778208_2400202,4380_755 -4380_77997,292,4380_51895,Ballycotton,86358-00016-1,0,4380_7778208_2400202,4380_755 -4380_77997,290,4380_51896,Ballycotton,86364-00015-1,0,4380_7778208_2400202,4380_755 -4380_77997,294,4380_51897,Ballycotton,86366-00018-1,0,4380_7778208_2400202,4380_755 -4380_77997,295,4380_51898,Ballycotton,86360-00019-1,0,4380_7778208_2400202,4380_755 -4380_77997,293,4380_51899,Ballycotton,86362-00017-1,0,4380_7778208_2400202,4380_755 -4380_77950,289,4380_5190,Drogheda,54159-00014-1,0,4380_7778208_1051101,4380_53 -4380_77997,296,4380_51900,Ballycotton,86334-00021-1,0,4380_7778208_2400201,4380_758 -4380_77997,285,4380_51906,Ballycotton,86451-00009-1,0,4380_7778208_2400203,4380_757 -4380_77997,288,4380_51907,Ballycotton,86449-00011-1,0,4380_7778208_2400203,4380_757 -4380_77997,287,4380_51908,Ballycotton,86455-00012-1,0,4380_7778208_2400203,4380_757 -4380_77997,286,4380_51909,Ballycotton,86453-00010-1,0,4380_7778208_2400203,4380_757 -4380_77950,290,4380_5191,Drogheda,54152-00015-1,0,4380_7778208_1051101,4380_53 -4380_77997,289,4380_51910,Ballycotton,86447-00014-1,0,4380_7778208_2400203,4380_757 -4380_77997,292,4380_51911,Ballycotton,86454-00016-1,0,4380_7778208_2400203,4380_757 -4380_77997,290,4380_51912,Ballycotton,86452-00015-1,0,4380_7778208_2400203,4380_757 -4380_77997,294,4380_51913,Ballycotton,86456-00018-1,0,4380_7778208_2400203,4380_757 -4380_77997,295,4380_51914,Ballycotton,86448-00019-1,0,4380_7778208_2400203,4380_757 -4380_77997,293,4380_51915,Ballycotton,86450-00017-1,0,4380_7778208_2400203,4380_757 -4380_77950,292,4380_5192,Drogheda,54156-00016-1,0,4380_7778208_1051101,4380_53 -4380_77997,285,4380_51921,Cork,86353-00009-1,1,4380_7778208_2400202,4380_759 -4380_77997,288,4380_51922,Cork,86347-00011-1,1,4380_7778208_2400202,4380_759 -4380_77997,287,4380_51923,Cork,86349-00012-1,1,4380_7778208_2400202,4380_759 -4380_77997,286,4380_51924,Cork,86355-00010-1,1,4380_7778208_2400202,4380_759 -4380_77997,289,4380_51925,Cork,86351-00014-1,1,4380_7778208_2400202,4380_759 -4380_77997,292,4380_51926,Cork,86356-00016-1,1,4380_7778208_2400202,4380_759 -4380_77997,290,4380_51927,Cork,86354-00015-1,1,4380_7778208_2400202,4380_759 -4380_77997,294,4380_51928,Cork,86350-00018-1,1,4380_7778208_2400202,4380_759 -4380_77997,295,4380_51929,Cork,86352-00019-1,1,4380_7778208_2400202,4380_759 -4380_77950,293,4380_5193,Drogheda,54154-00017-1,0,4380_7778208_1051101,4380_53 -4380_77997,293,4380_51930,Cork,86348-00017-1,1,4380_7778208_2400202,4380_759 -4380_77997,285,4380_51936,Cork,86385-00009-1,1,4380_7778208_2400203,4380_761 -4380_77997,288,4380_51937,Cork,86383-00011-1,1,4380_7778208_2400203,4380_761 -4380_77997,287,4380_51938,Cork,86381-00012-1,1,4380_7778208_2400203,4380_761 -4380_77997,286,4380_51939,Cork,86379-00010-1,1,4380_7778208_2400203,4380_761 -4380_77950,294,4380_5194,Drogheda,54158-00018-1,0,4380_7778208_1051101,4380_53 -4380_77997,289,4380_51940,Cork,86377-00014-1,1,4380_7778208_2400203,4380_761 -4380_77997,292,4380_51941,Cork,86380-00016-1,1,4380_7778208_2400203,4380_761 -4380_77997,290,4380_51942,Cork,86386-00015-1,1,4380_7778208_2400203,4380_761 -4380_77997,294,4380_51943,Cork,86382-00018-1,1,4380_7778208_2400203,4380_761 -4380_77997,295,4380_51944,Cork,86378-00019-1,1,4380_7778208_2400203,4380_761 -4380_77997,293,4380_51945,Cork,86384-00017-1,1,4380_7778208_2400203,4380_761 -4380_77997,291,4380_51947,Midleton,86323-00013-1,1,4380_7778208_2400201,4380_763 -4380_77997,296,4380_51948,Midleton,86324-00021-1,1,4380_7778208_2400201,4380_763 -4380_77950,295,4380_5195,Drogheda,54160-00019-1,0,4380_7778208_1051101,4380_53 -4380_77997,285,4380_51954,Cork,86397-00009-1,1,4380_7778208_2400203,4380_762 -4380_77997,288,4380_51955,Cork,86403-00011-1,1,4380_7778208_2400203,4380_762 -4380_77997,287,4380_51956,Cork,86401-00012-1,1,4380_7778208_2400203,4380_762 -4380_77997,286,4380_51957,Cork,86405-00010-1,1,4380_7778208_2400203,4380_762 -4380_77997,289,4380_51958,Cork,86399-00014-1,1,4380_7778208_2400203,4380_762 -4380_77997,292,4380_51959,Cork,86406-00016-1,1,4380_7778208_2400203,4380_762 -4380_77997,290,4380_51960,Cork,86398-00015-1,1,4380_7778208_2400203,4380_762 -4380_77997,294,4380_51961,Cork,86402-00018-1,1,4380_7778208_2400203,4380_762 -4380_77997,295,4380_51962,Cork,86400-00019-1,1,4380_7778208_2400203,4380_762 -4380_77997,293,4380_51963,Cork,86404-00017-1,1,4380_7778208_2400203,4380_762 -4380_77997,291,4380_51965,Cork,86331-00013-1,1,4380_7778208_2400201,4380_759 -4380_77997,296,4380_51966,Cork,86332-00021-1,1,4380_7778208_2400201,4380_759 -4380_77997,291,4380_51968,Cork,86335-00013-1,1,4380_7778208_2400201,4380_760 -4380_77997,296,4380_51969,Cork,86336-00021-1,1,4380_7778208_2400201,4380_760 -4380_77950,291,4380_5197,Drogheda,54161-00013-1,0,4380_7778208_1051101,4380_53 -4380_77997,285,4380_51975,Cork,86373-00009-1,1,4380_7778208_2400202,4380_760 -4380_77997,288,4380_51976,Cork,86371-00011-1,1,4380_7778208_2400202,4380_760 -4380_77997,287,4380_51977,Cork,86375-00012-1,1,4380_7778208_2400202,4380_760 -4380_77997,286,4380_51978,Cork,86369-00010-1,1,4380_7778208_2400202,4380_760 -4380_77997,289,4380_51979,Cork,86367-00014-1,1,4380_7778208_2400202,4380_760 -4380_77950,296,4380_5198,Drogheda,54162-00021-1,0,4380_7778208_1051101,4380_53 -4380_77997,292,4380_51980,Cork,86370-00016-1,1,4380_7778208_2400202,4380_760 -4380_77997,290,4380_51981,Cork,86374-00015-1,1,4380_7778208_2400202,4380_760 -4380_77997,294,4380_51982,Cork,86376-00018-1,1,4380_7778208_2400202,4380_760 -4380_77997,295,4380_51983,Cork,86368-00019-1,1,4380_7778208_2400202,4380_760 -4380_77997,293,4380_51984,Cork,86372-00017-1,1,4380_7778208_2400202,4380_760 -4380_77998,285,4380_51990,Trabolgan,86521-00009-1,0,4380_7778208_2410203,4380_767 -4380_77998,288,4380_51991,Trabolgan,86519-00011-1,0,4380_7778208_2410203,4380_767 -4380_77998,287,4380_51992,Trabolgan,86523-00012-1,0,4380_7778208_2410203,4380_767 -4380_77998,286,4380_51993,Trabolgan,86525-00010-1,0,4380_7778208_2410203,4380_767 -4380_77998,289,4380_51994,Trabolgan,86517-00014-1,0,4380_7778208_2410203,4380_767 -4380_77998,292,4380_51995,Trabolgan,86526-00016-1,0,4380_7778208_2410203,4380_767 -4380_77998,290,4380_51996,Trabolgan,86522-00015-1,0,4380_7778208_2410203,4380_767 -4380_77998,294,4380_51997,Trabolgan,86524-00018-1,0,4380_7778208_2410203,4380_767 -4380_77998,295,4380_51998,Trabolgan,86518-00019-1,0,4380_7778208_2410203,4380_767 -4380_77998,293,4380_51999,Trabolgan,86520-00017-1,0,4380_7778208_2410203,4380_767 -4380_77946,289,4380_52,Dundalk,50305-00014-1,0,4380_7778208_1000913,4380_1 -4380_77998,285,4380_52005,Trabolgan,86469-00009-1,0,4380_7778208_2410201,4380_764 -4380_77998,288,4380_52006,Trabolgan,86471-00011-1,0,4380_7778208_2410201,4380_764 -4380_77998,287,4380_52007,Trabolgan,86475-00012-1,0,4380_7778208_2410201,4380_764 -4380_77998,286,4380_52008,Trabolgan,86473-00010-1,0,4380_7778208_2410201,4380_764 -4380_77998,289,4380_52009,Trabolgan,86467-00014-1,0,4380_7778208_2410201,4380_764 -4380_77998,292,4380_52010,Trabolgan,86474-00016-1,0,4380_7778208_2410201,4380_764 -4380_77998,290,4380_52011,Trabolgan,86470-00015-1,0,4380_7778208_2410201,4380_764 -4380_77998,294,4380_52012,Trabolgan,86476-00018-1,0,4380_7778208_2410201,4380_764 -4380_77998,295,4380_52013,Trabolgan,86468-00019-1,0,4380_7778208_2410201,4380_764 -4380_77998,293,4380_52014,Trabolgan,86472-00017-1,0,4380_7778208_2410201,4380_764 -4380_77998,291,4380_52016,Whitegate,86325-00013-1,0,4380_7778208_2400201,4380_765 -4380_77998,296,4380_52017,Whitegate,86326-00021-1,0,4380_7778208_2400201,4380_765 -4380_77998,285,4380_52023,Whitegate,86495-00009-1,0,4380_7778208_2410201,4380_765 -4380_77998,288,4380_52024,Whitegate,86487-00011-1,0,4380_7778208_2410201,4380_765 -4380_77998,287,4380_52025,Whitegate,86489-00012-1,0,4380_7778208_2410201,4380_765 -4380_77998,286,4380_52026,Whitegate,86491-00010-1,0,4380_7778208_2410201,4380_765 -4380_77998,289,4380_52027,Whitegate,86493-00014-1,0,4380_7778208_2410201,4380_765 -4380_77998,292,4380_52028,Whitegate,86492-00016-1,0,4380_7778208_2410201,4380_765 -4380_77998,290,4380_52029,Whitegate,86496-00015-1,0,4380_7778208_2410201,4380_765 -4380_77998,294,4380_52030,Whitegate,86490-00018-1,0,4380_7778208_2410201,4380_765 -4380_77998,295,4380_52031,Whitegate,86494-00019-1,0,4380_7778208_2410201,4380_765 -4380_77998,293,4380_52032,Whitegate,86488-00017-1,0,4380_7778208_2410201,4380_765 -4380_77998,285,4380_52038,Trabolgan,86543-00009-1,0,4380_7778208_2410203,4380_766 -4380_77998,288,4380_52039,Trabolgan,86541-00011-1,0,4380_7778208_2410203,4380_766 -4380_77998,287,4380_52040,Trabolgan,86545-00012-1,0,4380_7778208_2410203,4380_766 -4380_77998,286,4380_52041,Trabolgan,86537-00010-1,0,4380_7778208_2410203,4380_766 -4380_77998,289,4380_52042,Trabolgan,86539-00014-1,0,4380_7778208_2410203,4380_766 -4380_77998,292,4380_52043,Trabolgan,86538-00016-1,0,4380_7778208_2410203,4380_766 -4380_77998,290,4380_52044,Trabolgan,86544-00015-1,0,4380_7778208_2410203,4380_766 -4380_77998,294,4380_52045,Trabolgan,86546-00018-1,0,4380_7778208_2410203,4380_766 -4380_77998,295,4380_52046,Trabolgan,86540-00019-1,0,4380_7778208_2410203,4380_766 -4380_77998,293,4380_52047,Trabolgan,86542-00017-1,0,4380_7778208_2410203,4380_766 -4380_77998,291,4380_52049,Whitegate,85791-00013-1,0,4380_7778208_2360206,4380_768 -4380_77950,285,4380_5205,Emerald Park,4472-00009-1,0,4380_7778208_1050101,4380_58 -4380_77998,296,4380_52050,Whitegate,85792-00021-1,0,4380_7778208_2360206,4380_768 -4380_77998,285,4380_52056,Trabolgan,86509-00009-1,0,4380_7778208_2410201,4380_766 -4380_77998,288,4380_52057,Trabolgan,86511-00011-1,0,4380_7778208_2410201,4380_766 -4380_77998,287,4380_52058,Trabolgan,86515-00012-1,0,4380_7778208_2410201,4380_766 -4380_77998,286,4380_52059,Trabolgan,86513-00010-1,0,4380_7778208_2410201,4380_766 -4380_77950,286,4380_5206,Emerald Park,4486-00010-1,0,4380_7778208_1050101,4380_58 -4380_77998,289,4380_52060,Trabolgan,86507-00014-1,0,4380_7778208_2410201,4380_766 -4380_77998,292,4380_52061,Trabolgan,86514-00016-1,0,4380_7778208_2410201,4380_766 -4380_77998,290,4380_52062,Trabolgan,86510-00015-1,0,4380_7778208_2410201,4380_766 -4380_77998,294,4380_52063,Trabolgan,86516-00018-1,0,4380_7778208_2410201,4380_766 -4380_77998,295,4380_52064,Trabolgan,86508-00019-1,0,4380_7778208_2410201,4380_766 -4380_77998,293,4380_52065,Trabolgan,86512-00017-1,0,4380_7778208_2410201,4380_766 -4380_77950,288,4380_5207,Emerald Park,4528-00011-1,0,4380_7778208_1050101,4380_58 -4380_77998,285,4380_52071,MTU,86563-00009-1,1,4380_7778208_2410204,4380_773 -4380_77998,288,4380_52072,MTU,86565-00011-1,1,4380_7778208_2410204,4380_773 -4380_77998,287,4380_52073,MTU,86559-00012-1,1,4380_7778208_2410204,4380_773 -4380_77998,286,4380_52074,MTU,86561-00010-1,1,4380_7778208_2410204,4380_773 -4380_77998,289,4380_52075,MTU,86557-00014-1,1,4380_7778208_2410204,4380_773 -4380_77998,292,4380_52076,MTU,86562-00016-1,1,4380_7778208_2410204,4380_773 -4380_77998,290,4380_52077,MTU,86564-00015-1,1,4380_7778208_2410204,4380_773 -4380_77998,294,4380_52078,MTU,86560-00018-1,1,4380_7778208_2410204,4380_773 -4380_77998,295,4380_52079,MTU,86558-00019-1,1,4380_7778208_2410204,4380_773 -4380_77950,287,4380_5208,Emerald Park,4556-00012-1,0,4380_7778208_1050101,4380_58 -4380_77998,293,4380_52080,MTU,86566-00017-1,1,4380_7778208_2410204,4380_773 -4380_77998,285,4380_52086,Cork,86459-00009-1,1,4380_7778208_2410201,4380_769 -4380_77998,288,4380_52087,Cork,86461-00011-1,1,4380_7778208_2410201,4380_769 -4380_77998,287,4380_52088,Cork,86465-00012-1,1,4380_7778208_2410201,4380_769 -4380_77998,286,4380_52089,Cork,86463-00010-1,1,4380_7778208_2410201,4380_769 -4380_77950,289,4380_5209,Ashbourne,53951-00014-1,0,4380_7778208_1050101,4380_52 -4380_77998,289,4380_52090,Cork,86457-00014-1,1,4380_7778208_2410201,4380_769 -4380_77998,292,4380_52091,Cork,86464-00016-1,1,4380_7778208_2410201,4380_769 -4380_77998,290,4380_52092,Cork,86460-00015-1,1,4380_7778208_2410201,4380_769 -4380_77998,294,4380_52093,Cork,86466-00018-1,1,4380_7778208_2410201,4380_769 -4380_77998,295,4380_52094,Cork,86458-00019-1,1,4380_7778208_2410201,4380_769 -4380_77998,293,4380_52095,Cork,86462-00017-1,1,4380_7778208_2410201,4380_769 -4380_77950,290,4380_5210,Ashbourne,53952-00015-1,0,4380_7778208_1050101,4380_52 -4380_77998,285,4380_52101,Cork,86531-00009-1,1,4380_7778208_2410203,4380_772 -4380_77998,288,4380_52102,Cork,86527-00011-1,1,4380_7778208_2410203,4380_772 -4380_77998,287,4380_52103,Cork,86533-00012-1,1,4380_7778208_2410203,4380_772 -4380_77998,286,4380_52104,Cork,86535-00010-1,1,4380_7778208_2410203,4380_772 -4380_77998,289,4380_52105,Cork,86529-00014-1,1,4380_7778208_2410203,4380_772 -4380_77998,292,4380_52106,Cork,86536-00016-1,1,4380_7778208_2410203,4380_772 -4380_77998,290,4380_52107,Cork,86532-00015-1,1,4380_7778208_2410203,4380_772 -4380_77998,294,4380_52108,Cork,86534-00018-1,1,4380_7778208_2410203,4380_772 -4380_77998,295,4380_52109,Cork,86530-00019-1,1,4380_7778208_2410203,4380_772 -4380_77950,291,4380_5211,Emerald Park,53947-00013-1,0,4380_7778208_1050101,4380_56 -4380_77998,293,4380_52110,Cork,86528-00017-1,1,4380_7778208_2410203,4380_772 -4380_77998,285,4380_52116,Midleton,86479-00009-1,1,4380_7778208_2410201,4380_770 -4380_77998,288,4380_52117,Midleton,86481-00011-1,1,4380_7778208_2410201,4380_770 -4380_77998,287,4380_52118,Midleton,86477-00012-1,1,4380_7778208_2410201,4380_770 -4380_77998,286,4380_52119,Midleton,86483-00010-1,1,4380_7778208_2410201,4380_770 -4380_77950,292,4380_5212,Ashbourne,53948-00016-1,0,4380_7778208_1050101,4380_52 -4380_77998,289,4380_52120,Midleton,86485-00014-1,1,4380_7778208_2410201,4380_770 -4380_77998,292,4380_52121,Midleton,86484-00016-1,1,4380_7778208_2410201,4380_770 -4380_77998,290,4380_52122,Midleton,86480-00015-1,1,4380_7778208_2410201,4380_770 -4380_77998,294,4380_52123,Midleton,86478-00018-1,1,4380_7778208_2410201,4380_770 -4380_77998,295,4380_52124,Midleton,86486-00019-1,1,4380_7778208_2410201,4380_770 -4380_77998,293,4380_52125,Midleton,86482-00017-1,1,4380_7778208_2410201,4380_770 -4380_77998,291,4380_52127,Cork,86327-00013-1,1,4380_7778208_2400201,4380_775 -4380_77998,296,4380_52128,Cork,86328-00021-1,1,4380_7778208_2400201,4380_775 -4380_77950,293,4380_5213,Ashbourne,53950-00017-1,0,4380_7778208_1050101,4380_52 -4380_77998,285,4380_52134,Midleton,86503-00009-1,1,4380_7778208_2410201,4380_771 -4380_77998,288,4380_52135,Midleton,86499-00011-1,1,4380_7778208_2410201,4380_771 -4380_77998,287,4380_52136,Midleton,86505-00012-1,1,4380_7778208_2410201,4380_771 -4380_77998,286,4380_52137,Midleton,86497-00010-1,1,4380_7778208_2410201,4380_771 -4380_77998,289,4380_52138,Midleton,86501-00014-1,1,4380_7778208_2410201,4380_771 -4380_77998,292,4380_52139,Midleton,86498-00016-1,1,4380_7778208_2410201,4380_771 -4380_77950,294,4380_5214,Ashbourne,53949-00018-1,0,4380_7778208_1050101,4380_52 -4380_77998,290,4380_52140,Midleton,86504-00015-1,1,4380_7778208_2410201,4380_771 -4380_77998,294,4380_52141,Midleton,86506-00018-1,1,4380_7778208_2410201,4380_771 -4380_77998,295,4380_52142,Midleton,86502-00019-1,1,4380_7778208_2410201,4380_771 -4380_77998,293,4380_52143,Midleton,86500-00017-1,1,4380_7778208_2410201,4380_771 -4380_77998,285,4380_52149,Cork,86553-00009-1,1,4380_7778208_2410203,4380_772 -4380_77950,295,4380_5215,Emerald Park,4444-00019-1,0,4380_7778208_1050101,4380_58 -4380_77998,288,4380_52150,Cork,86551-00011-1,1,4380_7778208_2410203,4380_772 -4380_77998,287,4380_52151,Cork,86555-00012-1,1,4380_7778208_2410203,4380_772 -4380_77998,286,4380_52152,Cork,86549-00010-1,1,4380_7778208_2410203,4380_772 -4380_77998,289,4380_52153,Cork,86547-00014-1,1,4380_7778208_2410203,4380_772 -4380_77998,292,4380_52154,Cork,86550-00016-1,1,4380_7778208_2410203,4380_772 -4380_77998,290,4380_52155,Cork,86554-00015-1,1,4380_7778208_2410203,4380_772 -4380_77998,294,4380_52156,Cork,86556-00018-1,1,4380_7778208_2410203,4380_772 -4380_77998,295,4380_52157,Cork,86548-00019-1,1,4380_7778208_2410203,4380_772 -4380_77998,293,4380_52158,Cork,86552-00017-1,1,4380_7778208_2410203,4380_772 -4380_77950,296,4380_5216,Ashbourne,4570-00021-1,0,4380_7778208_1050101,4380_59 -4380_77998,291,4380_52160,Cork,85803-00013-1,1,4380_7778208_2360206,4380_774 -4380_77998,296,4380_52161,Cork,85804-00021-1,1,4380_7778208_2360206,4380_774 -4380_77999,285,4380_52167,Charleville,86699-00009-1,0,4380_7778208_2430202,4380_780 -4380_77999,288,4380_52168,Charleville,86695-00011-1,0,4380_7778208_2430202,4380_780 -4380_77999,287,4380_52169,Charleville,86693-00012-1,0,4380_7778208_2430202,4380_780 -4380_77999,286,4380_52170,Charleville,86697-00010-1,0,4380_7778208_2430202,4380_780 -4380_77999,289,4380_52171,Charleville,86691-00014-1,0,4380_7778208_2430202,4380_780 -4380_77999,292,4380_52172,Charleville,86698-00016-1,0,4380_7778208_2430202,4380_780 -4380_77999,290,4380_52173,Charleville,86700-00015-1,0,4380_7778208_2430202,4380_780 -4380_77999,294,4380_52174,Charleville,86694-00018-1,0,4380_7778208_2430202,4380_780 -4380_77999,295,4380_52175,Charleville,86692-00019-1,0,4380_7778208_2430202,4380_780 -4380_77999,293,4380_52176,Charleville,86696-00017-1,0,4380_7778208_2430202,4380_780 -4380_77999,285,4380_52182,Kanturk,86597-00009-1,0,4380_7778208_2430201,4380_776 -4380_77999,288,4380_52183,Kanturk,86603-00011-1,0,4380_7778208_2430201,4380_776 -4380_77999,287,4380_52184,Kanturk,86599-00012-1,0,4380_7778208_2430201,4380_776 -4380_77999,286,4380_52185,Kanturk,86601-00010-1,0,4380_7778208_2430201,4380_776 -4380_77999,289,4380_52186,Kanturk,86605-00014-1,0,4380_7778208_2430201,4380_776 -4380_77999,292,4380_52187,Kanturk,86602-00016-1,0,4380_7778208_2430201,4380_776 -4380_77999,290,4380_52188,Kanturk,86598-00015-1,0,4380_7778208_2430201,4380_776 -4380_77999,294,4380_52189,Kanturk,86600-00018-1,0,4380_7778208_2430201,4380_776 -4380_77999,295,4380_52190,Kanturk,86606-00019-1,0,4380_7778208_2430201,4380_776 -4380_77999,293,4380_52191,Kanturk,86604-00017-1,0,4380_7778208_2430201,4380_776 -4380_77999,285,4380_52197,Donerail via Mallow,86619-00009-1,0,4380_7778208_2430201,4380_777 -4380_77999,288,4380_52198,Donerail via Mallow,86625-00011-1,0,4380_7778208_2430201,4380_777 -4380_77999,287,4380_52199,Donerail via Mallow,86623-00012-1,0,4380_7778208_2430201,4380_777 -4380_77999,286,4380_52200,Donerail via Mallow,86617-00010-1,0,4380_7778208_2430201,4380_777 -4380_77999,289,4380_52201,Donerail via Mallow,86621-00014-1,0,4380_7778208_2430201,4380_777 -4380_77999,292,4380_52202,Donerail via Mallow,86618-00016-1,0,4380_7778208_2430201,4380_777 -4380_77999,290,4380_52203,Donerail via Mallow,86620-00015-1,0,4380_7778208_2430201,4380_777 -4380_77999,294,4380_52204,Donerail via Mallow,86624-00018-1,0,4380_7778208_2430201,4380_777 -4380_77999,295,4380_52205,Donerail via Mallow,86622-00019-1,0,4380_7778208_2430201,4380_777 -4380_77999,293,4380_52206,Donerail via Mallow,86626-00017-1,0,4380_7778208_2430201,4380_777 -4380_77999,285,4380_52212,Newmarket,86643-00009-1,0,4380_7778208_2430201,4380_778 -4380_77999,288,4380_52213,Newmarket,86645-00011-1,0,4380_7778208_2430201,4380_778 -4380_77999,287,4380_52214,Newmarket,86641-00012-1,0,4380_7778208_2430201,4380_778 -4380_77999,286,4380_52215,Newmarket,86637-00010-1,0,4380_7778208_2430201,4380_778 -4380_77999,289,4380_52216,Newmarket,86639-00014-1,0,4380_7778208_2430201,4380_778 -4380_77999,292,4380_52217,Newmarket,86638-00016-1,0,4380_7778208_2430201,4380_778 -4380_77999,290,4380_52218,Newmarket,86644-00015-1,0,4380_7778208_2430201,4380_778 -4380_77999,294,4380_52219,Newmarket,86642-00018-1,0,4380_7778208_2430201,4380_778 -4380_77999,295,4380_52220,Newmarket,86640-00019-1,0,4380_7778208_2430201,4380_778 -4380_77999,293,4380_52221,Newmarket,86646-00017-1,0,4380_7778208_2430201,4380_778 -4380_77999,285,4380_52227,Newmarket,86659-00009-1,0,4380_7778208_2430201,4380_778 -4380_77999,288,4380_52228,Newmarket,86661-00011-1,0,4380_7778208_2430201,4380_778 -4380_77999,287,4380_52229,Newmarket,86663-00012-1,0,4380_7778208_2430201,4380_778 -4380_77950,285,4380_5223,Drogheda,54255-00009-1,0,4380_7778208_1051102,4380_54 -4380_77999,286,4380_52230,Newmarket,86667-00010-1,0,4380_7778208_2430201,4380_778 -4380_77999,289,4380_52231,Newmarket,86665-00014-1,0,4380_7778208_2430201,4380_778 -4380_77999,292,4380_52232,Newmarket,86668-00016-1,0,4380_7778208_2430201,4380_778 -4380_77999,290,4380_52233,Newmarket,86660-00015-1,0,4380_7778208_2430201,4380_778 -4380_77999,294,4380_52234,Newmarket,86664-00018-1,0,4380_7778208_2430201,4380_778 -4380_77999,295,4380_52235,Newmarket,86666-00019-1,0,4380_7778208_2430201,4380_778 -4380_77999,293,4380_52236,Newmarket,86662-00017-1,0,4380_7778208_2430201,4380_778 -4380_77999,286,4380_52238,Rathduff,85785-00010-1,0,4380_7778208_2360206,4380_782 -4380_77999,292,4380_52239,Rathduff,85786-00016-1,0,4380_7778208_2360206,4380_782 -4380_77950,286,4380_5224,Drogheda,54259-00010-1,0,4380_7778208_1051102,4380_54 -4380_77999,285,4380_52244,Donerail via Mallow,86717-00009-1,0,4380_7778208_2430202,4380_781 -4380_77999,288,4380_52245,Donerail via Mallow,86711-00011-1,0,4380_7778208_2430202,4380_781 -4380_77999,286,4380_52246,Donerail via Mallow,86715-00010-1,0,4380_7778208_2430202,4380_781 -4380_77999,289,4380_52247,Donerail via Mallow,86713-00014-1,0,4380_7778208_2430202,4380_781 -4380_77999,292,4380_52248,Donerail via Mallow,86716-00016-1,0,4380_7778208_2430202,4380_781 -4380_77999,290,4380_52249,Donerail via Mallow,86718-00015-1,0,4380_7778208_2430202,4380_781 -4380_77950,288,4380_5225,Drogheda,54261-00011-1,0,4380_7778208_1051102,4380_54 -4380_77999,295,4380_52250,Donerail via Mallow,86714-00019-1,0,4380_7778208_2430202,4380_781 -4380_77999,293,4380_52251,Donerail via Mallow,86712-00017-1,0,4380_7778208_2430202,4380_781 -4380_77999,287,4380_52253,Donerail via Mallow,86719-00012-1,0,4380_7778208_2430202,4380_783 -4380_77999,294,4380_52254,Donerail via Mallow,86720-00018-1,0,4380_7778208_2430202,4380_783 -4380_77999,291,4380_52256,Newmarket,86679-00013-1,0,4380_7778208_2430201,4380_784 -4380_77999,296,4380_52257,Newmarket,86680-00021-1,0,4380_7778208_2430201,4380_784 -4380_77950,287,4380_5226,Drogheda,54263-00012-1,0,4380_7778208_1051102,4380_54 -4380_77999,285,4380_52263,Newmarket,86687-00009-1,0,4380_7778208_2430201,4380_779 -4380_77999,288,4380_52264,Newmarket,86685-00011-1,0,4380_7778208_2430201,4380_779 -4380_77999,287,4380_52265,Newmarket,86683-00012-1,0,4380_7778208_2430201,4380_779 -4380_77999,286,4380_52266,Newmarket,86689-00010-1,0,4380_7778208_2430201,4380_779 -4380_77999,289,4380_52267,Newmarket,86681-00014-1,0,4380_7778208_2430201,4380_779 -4380_77999,292,4380_52268,Newmarket,86690-00016-1,0,4380_7778208_2430201,4380_779 -4380_77999,290,4380_52269,Newmarket,86688-00015-1,0,4380_7778208_2430201,4380_779 -4380_77950,289,4380_5227,Drogheda,54257-00014-1,0,4380_7778208_1051102,4380_54 -4380_77999,294,4380_52270,Newmarket,86684-00018-1,0,4380_7778208_2430201,4380_779 -4380_77999,295,4380_52271,Newmarket,86682-00019-1,0,4380_7778208_2430201,4380_779 -4380_77999,293,4380_52272,Newmarket,86686-00017-1,0,4380_7778208_2430201,4380_779 -4380_77999,285,4380_52278,Mallow,86591-00009-1,1,4380_7778208_2430201,4380_786 -4380_77999,288,4380_52279,Mallow,86589-00011-1,1,4380_7778208_2430201,4380_786 -4380_77950,290,4380_5228,Drogheda,54256-00015-1,0,4380_7778208_1051102,4380_54 -4380_77999,287,4380_52280,Mallow,86593-00012-1,1,4380_7778208_2430201,4380_786 -4380_77999,286,4380_52281,Mallow,86595-00010-1,1,4380_7778208_2430201,4380_786 -4380_77999,289,4380_52282,Mallow,86587-00014-1,1,4380_7778208_2430201,4380_786 -4380_77999,292,4380_52283,Mallow,86596-00016-1,1,4380_7778208_2430201,4380_786 -4380_77999,290,4380_52284,Mallow,86592-00015-1,1,4380_7778208_2430201,4380_786 -4380_77999,294,4380_52285,Mallow,86594-00018-1,1,4380_7778208_2430201,4380_786 -4380_77999,295,4380_52286,Mallow,86588-00019-1,1,4380_7778208_2430201,4380_786 -4380_77999,293,4380_52287,Mallow,86590-00017-1,1,4380_7778208_2430201,4380_786 -4380_77950,291,4380_5229,Drogheda,54253-00013-1,0,4380_7778208_1051102,4380_55 -4380_77999,285,4380_52293,Cork,86701-00009-1,1,4380_7778208_2430202,4380_790 -4380_77999,288,4380_52294,Cork,86709-00011-1,1,4380_7778208_2430202,4380_790 -4380_77999,287,4380_52295,Cork,86705-00012-1,1,4380_7778208_2430202,4380_790 -4380_77999,286,4380_52296,Cork,86703-00010-1,1,4380_7778208_2430202,4380_790 -4380_77999,289,4380_52297,Cork,86707-00014-1,1,4380_7778208_2430202,4380_790 -4380_77999,292,4380_52298,Cork,86704-00016-1,1,4380_7778208_2430202,4380_790 -4380_77999,290,4380_52299,Cork,86702-00015-1,1,4380_7778208_2430202,4380_790 -4380_77946,285,4380_523,Drogheda,50521-00009-1,1,4380_7778208_1000915,4380_6 -4380_77950,292,4380_5230,Drogheda,54260-00016-1,0,4380_7778208_1051102,4380_54 -4380_77999,294,4380_52300,Cork,86706-00018-1,1,4380_7778208_2430202,4380_790 -4380_77999,295,4380_52301,Cork,86708-00019-1,1,4380_7778208_2430202,4380_790 -4380_77999,293,4380_52302,Cork,86710-00017-1,1,4380_7778208_2430202,4380_790 -4380_77999,285,4380_52308,Mallow,86609-00009-1,1,4380_7778208_2430201,4380_787 -4380_77999,288,4380_52309,Mallow,86615-00011-1,1,4380_7778208_2430201,4380_787 -4380_77950,293,4380_5231,Drogheda,54262-00017-1,0,4380_7778208_1051102,4380_54 -4380_77999,287,4380_52310,Mallow,86607-00012-1,1,4380_7778208_2430201,4380_787 -4380_77999,286,4380_52311,Mallow,86611-00010-1,1,4380_7778208_2430201,4380_787 -4380_77999,289,4380_52312,Mallow,86613-00014-1,1,4380_7778208_2430201,4380_787 -4380_77999,292,4380_52313,Mallow,86612-00016-1,1,4380_7778208_2430201,4380_787 -4380_77999,290,4380_52314,Mallow,86610-00015-1,1,4380_7778208_2430201,4380_787 -4380_77999,294,4380_52315,Mallow,86608-00018-1,1,4380_7778208_2430201,4380_787 -4380_77999,295,4380_52316,Mallow,86614-00019-1,1,4380_7778208_2430201,4380_787 -4380_77999,293,4380_52317,Mallow,86616-00017-1,1,4380_7778208_2430201,4380_787 -4380_77950,294,4380_5232,Drogheda,54264-00018-1,0,4380_7778208_1051102,4380_54 -4380_77999,285,4380_52323,Mallow,86631-00009-1,1,4380_7778208_2430201,4380_788 -4380_77999,288,4380_52324,Mallow,86629-00011-1,1,4380_7778208_2430201,4380_788 -4380_77999,287,4380_52325,Mallow,86635-00012-1,1,4380_7778208_2430201,4380_788 -4380_77999,286,4380_52326,Mallow,86627-00010-1,1,4380_7778208_2430201,4380_788 -4380_77999,289,4380_52327,Mallow,86633-00014-1,1,4380_7778208_2430201,4380_788 -4380_77999,292,4380_52328,Mallow,86628-00016-1,1,4380_7778208_2430201,4380_788 -4380_77999,290,4380_52329,Mallow,86632-00015-1,1,4380_7778208_2430201,4380_788 -4380_77950,295,4380_5233,Drogheda,54258-00019-1,0,4380_7778208_1051102,4380_54 -4380_77999,294,4380_52330,Mallow,86636-00018-1,1,4380_7778208_2430201,4380_788 -4380_77999,295,4380_52331,Mallow,86634-00019-1,1,4380_7778208_2430201,4380_788 -4380_77999,293,4380_52332,Mallow,86630-00017-1,1,4380_7778208_2430201,4380_788 -4380_77999,291,4380_52334,Cork,86647-00013-1,1,4380_7778208_2430201,4380_794 -4380_77999,296,4380_52335,Cork,86648-00021-1,1,4380_7778208_2430201,4380_794 -4380_77950,296,4380_5234,Drogheda,54254-00021-1,0,4380_7778208_1051102,4380_55 -4380_77999,285,4380_52341,Mallow,86657-00009-1,1,4380_7778208_2430201,4380_786 -4380_77999,288,4380_52342,Mallow,86651-00011-1,1,4380_7778208_2430201,4380_786 -4380_77999,287,4380_52343,Mallow,86655-00012-1,1,4380_7778208_2430201,4380_786 -4380_77999,286,4380_52344,Mallow,86653-00010-1,1,4380_7778208_2430201,4380_786 -4380_77999,289,4380_52345,Mallow,86649-00014-1,1,4380_7778208_2430201,4380_786 -4380_77999,292,4380_52346,Mallow,86654-00016-1,1,4380_7778208_2430201,4380_786 -4380_77999,290,4380_52347,Mallow,86658-00015-1,1,4380_7778208_2430201,4380_786 -4380_77999,294,4380_52348,Mallow,86656-00018-1,1,4380_7778208_2430201,4380_786 -4380_77999,295,4380_52349,Mallow,86650-00019-1,1,4380_7778208_2430201,4380_786 -4380_77999,293,4380_52350,Mallow,86652-00017-1,1,4380_7778208_2430201,4380_786 -4380_77999,285,4380_52356,Cork,85527-00009-1,1,4380_7778208_2330206,4380_785 -4380_77999,288,4380_52357,Cork,85529-00011-1,1,4380_7778208_2330206,4380_785 -4380_77999,287,4380_52358,Cork,85533-00012-1,1,4380_7778208_2330206,4380_793 -4380_77999,286,4380_52359,Cork,85535-00010-1,1,4380_7778208_2330206,4380_785 -4380_77999,289,4380_52360,Cork,85531-00014-1,1,4380_7778208_2330206,4380_785 -4380_77999,292,4380_52361,Cork,85536-00016-1,1,4380_7778208_2330206,4380_785 -4380_77999,290,4380_52362,Cork,85528-00015-1,1,4380_7778208_2330206,4380_785 -4380_77999,294,4380_52363,Cork,85534-00018-1,1,4380_7778208_2330206,4380_793 -4380_77999,295,4380_52364,Cork,85532-00019-1,1,4380_7778208_2330206,4380_785 -4380_77999,293,4380_52365,Cork,85530-00017-1,1,4380_7778208_2330206,4380_785 -4380_77999,285,4380_52371,Cork,86675-00009-1,1,4380_7778208_2430201,4380_789 -4380_77999,288,4380_52372,Cork,86671-00011-1,1,4380_7778208_2430201,4380_789 -4380_77999,287,4380_52373,Cork,86669-00012-1,1,4380_7778208_2430201,4380_789 -4380_77999,286,4380_52374,Cork,86677-00010-1,1,4380_7778208_2430201,4380_789 -4380_77999,289,4380_52375,Cork,86673-00014-1,1,4380_7778208_2430201,4380_789 -4380_77999,292,4380_52376,Cork,86678-00016-1,1,4380_7778208_2430201,4380_789 -4380_77999,290,4380_52377,Cork,86676-00015-1,1,4380_7778208_2430201,4380_789 -4380_77999,294,4380_52378,Cork,86670-00018-1,1,4380_7778208_2430201,4380_789 -4380_77999,295,4380_52379,Cork,86674-00019-1,1,4380_7778208_2430201,4380_789 -4380_77999,293,4380_52380,Cork,86672-00017-1,1,4380_7778208_2430201,4380_789 -4380_77999,286,4380_52382,Cork,85789-00010-1,1,4380_7778208_2360206,4380_792 -4380_77999,292,4380_52383,Cork,85790-00016-1,1,4380_7778208_2360206,4380_792 -4380_77999,285,4380_52388,Cork,86723-00009-1,1,4380_7778208_2430202,4380_791 -4380_77999,288,4380_52389,Cork,86725-00011-1,1,4380_7778208_2430202,4380_791 -4380_77999,286,4380_52390,Cork,86727-00010-1,1,4380_7778208_2430202,4380_791 -4380_77999,289,4380_52391,Cork,86721-00014-1,1,4380_7778208_2430202,4380_791 -4380_77999,292,4380_52392,Cork,86728-00016-1,1,4380_7778208_2430202,4380_791 -4380_77999,290,4380_52393,Cork,86724-00015-1,1,4380_7778208_2430202,4380_791 -4380_77999,295,4380_52394,Cork,86722-00019-1,1,4380_7778208_2430202,4380_791 -4380_77999,293,4380_52395,Cork,86726-00017-1,1,4380_7778208_2430202,4380_791 -4380_77999,287,4380_52397,Cork,86729-00012-1,1,4380_7778208_2430202,4380_791 -4380_77999,294,4380_52398,Cork,86730-00018-1,1,4380_7778208_2430202,4380_791 -4380_77946,286,4380_524,Drogheda,50519-00010-1,1,4380_7778208_1000915,4380_6 -4380_78000,285,4380_52404,Fermoy via Glanmire,86962-00009-1,0,4380_7778208_2450255,4380_795 -4380_78000,288,4380_52405,Fermoy via Glanmire,86964-00011-1,0,4380_7778208_2450255,4380_795 -4380_78000,287,4380_52406,Fermoy via Glanmire,86966-00012-1,0,4380_7778208_2450255,4380_795 -4380_78000,286,4380_52407,Fermoy via Glanmire,86970-00010-1,0,4380_7778208_2450255,4380_795 -4380_78000,289,4380_52408,Fermoy via Glanmire,86968-00014-1,0,4380_7778208_2450255,4380_795 -4380_78000,292,4380_52409,Fermoy via Glanmire,86971-00016-1,0,4380_7778208_2450255,4380_795 -4380_77950,285,4380_5241,Emerald Park,4626-00009-1,0,4380_7778208_1050102,4380_58 -4380_78000,290,4380_52410,Fermoy via Glanmire,86963-00015-1,0,4380_7778208_2450255,4380_795 -4380_78000,294,4380_52411,Fermoy via Glanmire,86967-00018-1,0,4380_7778208_2450255,4380_795 -4380_78000,295,4380_52412,Fermoy via Glanmire,86969-00019-1,0,4380_7778208_2450255,4380_795 -4380_78000,293,4380_52413,Fermoy via Glanmire,86965-00017-1,0,4380_7778208_2450255,4380_795 -4380_77950,286,4380_5242,Emerald Park,4668-00010-1,0,4380_7778208_1050102,4380_58 -4380_78000,285,4380_52425,Clonmel,86900-00009-1,0,4380_7778208_2450253,4380_798 -4380_78000,285,4380_52426,Fermoy via Glanmire,87100-00009-1,0,4380_7778208_2450259,4380_796 -4380_78000,288,4380_52427,Clonmel,86896-00011-1,0,4380_7778208_2450253,4380_798 -4380_78000,288,4380_52428,Fermoy via Glanmire,87094-00011-1,0,4380_7778208_2450259,4380_796 -4380_78000,287,4380_52429,Clonmel,86892-00012-1,0,4380_7778208_2450253,4380_798 -4380_77950,288,4380_5243,Emerald Park,4682-00011-1,0,4380_7778208_1050102,4380_58 -4380_78000,287,4380_52430,Fermoy via Glanmire,87098-00012-1,0,4380_7778208_2450259,4380_796 -4380_78000,286,4380_52431,Clonmel,86898-00010-1,0,4380_7778208_2450253,4380_798 -4380_78000,286,4380_52432,Fermoy via Glanmire,87092-00010-1,0,4380_7778208_2450259,4380_796 -4380_78000,291,4380_52433,Fermoy via Glanmire,86844-00013-1,0,4380_7778208_2450234,4380_801 -4380_78000,289,4380_52434,Clonmel,86894-00014-1,0,4380_7778208_2450253,4380_798 -4380_78000,289,4380_52435,Fermoy via Glanmire,87096-00014-1,0,4380_7778208_2450259,4380_796 -4380_78000,292,4380_52436,Clonmel,86899-00016-1,0,4380_7778208_2450253,4380_798 -4380_78000,292,4380_52437,Fermoy via Glanmire,87093-00016-1,0,4380_7778208_2450259,4380_796 -4380_78000,290,4380_52438,Clonmel,86901-00015-1,0,4380_7778208_2450253,4380_798 -4380_78000,290,4380_52439,Fermoy via Glanmire,87101-00015-1,0,4380_7778208_2450259,4380_796 -4380_77950,287,4380_5244,Emerald Park,4710-00012-1,0,4380_7778208_1050102,4380_58 -4380_78000,294,4380_52440,Clonmel,86893-00018-1,0,4380_7778208_2450253,4380_798 -4380_78000,294,4380_52441,Fermoy via Glanmire,87099-00018-1,0,4380_7778208_2450259,4380_796 -4380_78000,295,4380_52442,Clonmel,86895-00019-1,0,4380_7778208_2450253,4380_798 -4380_78000,295,4380_52443,Fermoy via Glanmire,87097-00019-1,0,4380_7778208_2450259,4380_796 -4380_78000,293,4380_52444,Clonmel,86897-00017-1,0,4380_7778208_2450253,4380_798 -4380_78000,293,4380_52445,Fermoy via Glanmire,87095-00017-1,0,4380_7778208_2450259,4380_796 -4380_78000,296,4380_52446,Fermoy via Glanmire,86845-00021-1,0,4380_7778208_2450234,4380_801 -4380_77950,289,4380_5245,Ashbourne,54034-00014-1,0,4380_7778208_1050102,4380_52 -4380_78000,285,4380_52453,Fermoy via Glanmire,87270-00009-1,0,4380_7778208_2450802,4380_795 -4380_78000,288,4380_52454,Fermoy via Glanmire,87266-00011-1,0,4380_7778208_2450802,4380_795 -4380_78000,287,4380_52455,Fermoy via Glanmire,87268-00012-1,0,4380_7778208_2450802,4380_795 -4380_78000,286,4380_52456,Fermoy via Glanmire,87272-00010-1,0,4380_7778208_2450802,4380_795 -4380_78000,291,4380_52457,Fermoy via Glanmire,86858-00013-1,0,4380_7778208_2450236,4380_804 -4380_78000,289,4380_52458,Fermoy via Glanmire,87274-00014-1,0,4380_7778208_2450802,4380_795 -4380_78000,292,4380_52459,Fermoy via Glanmire,87273-00016-1,0,4380_7778208_2450802,4380_795 -4380_77950,290,4380_5246,Ashbourne,54031-00015-1,0,4380_7778208_1050102,4380_52 -4380_78000,290,4380_52460,Fermoy via Glanmire,87271-00015-1,0,4380_7778208_2450802,4380_795 -4380_78000,294,4380_52461,Fermoy via Glanmire,87269-00018-1,0,4380_7778208_2450802,4380_795 -4380_78000,295,4380_52462,Fermoy via Glanmire,87275-00019-1,0,4380_7778208_2450802,4380_795 -4380_78000,293,4380_52463,Fermoy via Glanmire,87267-00017-1,0,4380_7778208_2450802,4380_795 -4380_78000,296,4380_52464,Fermoy via Glanmire,86859-00021-1,0,4380_7778208_2450236,4380_804 -4380_77950,291,4380_5247,Emerald Park,54032-00013-1,0,4380_7778208_1050102,4380_56 -4380_78000,285,4380_52471,Fermoy via Glanmire,87042-00009-1,0,4380_7778208_2450256,4380_796 -4380_78000,288,4380_52472,Fermoy via Glanmire,87050-00011-1,0,4380_7778208_2450256,4380_796 -4380_78000,287,4380_52473,Fermoy via Glanmire,87048-00012-1,0,4380_7778208_2450256,4380_796 -4380_78000,286,4380_52474,Fermoy via Glanmire,87044-00010-1,0,4380_7778208_2450256,4380_796 -4380_78000,291,4380_52475,Fermoy via Glanmire,86878-00013-1,0,4380_7778208_2450238,4380_801 -4380_78000,289,4380_52476,Fermoy via Glanmire,87046-00014-1,0,4380_7778208_2450256,4380_796 -4380_78000,292,4380_52477,Fermoy via Glanmire,87045-00016-1,0,4380_7778208_2450256,4380_796 -4380_78000,290,4380_52478,Fermoy via Glanmire,87043-00015-1,0,4380_7778208_2450256,4380_796 -4380_78000,294,4380_52479,Fermoy via Glanmire,87049-00018-1,0,4380_7778208_2450256,4380_796 -4380_77950,292,4380_5248,Ashbourne,54033-00016-1,0,4380_7778208_1050102,4380_52 -4380_78000,295,4380_52480,Fermoy via Glanmire,87047-00019-1,0,4380_7778208_2450256,4380_796 -4380_78000,293,4380_52481,Fermoy via Glanmire,87051-00017-1,0,4380_7778208_2450256,4380_796 -4380_78000,296,4380_52482,Fermoy via Glanmire,86879-00021-1,0,4380_7778208_2450238,4380_801 -4380_78000,285,4380_52489,Clonmel,87334-00009-1,0,4380_7778208_2450857,4380_797 -4380_77950,293,4380_5249,Ashbourne,54035-00017-1,0,4380_7778208_1050102,4380_52 -4380_78000,288,4380_52490,Clonmel,87342-00011-1,0,4380_7778208_2450857,4380_797 -4380_78000,287,4380_52491,Clonmel,87340-00012-1,0,4380_7778208_2450857,4380_797 -4380_78000,286,4380_52492,Clonmel,87338-00010-1,0,4380_7778208_2450857,4380_797 -4380_78000,291,4380_52493,Clonmel,86848-00013-1,0,4380_7778208_2450234,4380_802 -4380_78000,289,4380_52494,Clonmel,87336-00014-1,0,4380_7778208_2450857,4380_797 -4380_78000,292,4380_52495,Clonmel,87339-00016-1,0,4380_7778208_2450857,4380_797 -4380_78000,290,4380_52496,Clonmel,87335-00015-1,0,4380_7778208_2450857,4380_797 -4380_78000,294,4380_52497,Clonmel,87341-00018-1,0,4380_7778208_2450857,4380_797 -4380_78000,295,4380_52498,Clonmel,87337-00019-1,0,4380_7778208_2450857,4380_797 -4380_78000,293,4380_52499,Clonmel,87343-00017-1,0,4380_7778208_2450857,4380_797 -4380_77946,297,4380_525,Drogheda,50229-00008-1,1,4380_7778208_1000909,4380_8 -4380_77950,294,4380_5250,Ashbourne,54036-00018-1,0,4380_7778208_1050102,4380_52 -4380_78000,296,4380_52500,Clonmel,86849-00021-1,0,4380_7778208_2450234,4380_802 -4380_78000,297,4380_52502,Fermoy via Glanmire,86784-00008-1,0,4380_7778208_2450201,4380_795 -4380_78000,285,4380_52509,Fermoy via Glanmire,86988-00009-1,0,4380_7778208_2450255,4380_795 -4380_77950,295,4380_5251,Emerald Park,4598-00019-1,0,4380_7778208_1050102,4380_58 -4380_78000,288,4380_52510,Fermoy via Glanmire,86986-00011-1,0,4380_7778208_2450255,4380_795 -4380_78000,287,4380_52511,Fermoy via Glanmire,86990-00012-1,0,4380_7778208_2450255,4380_795 -4380_78000,286,4380_52512,Fermoy via Glanmire,86982-00010-1,0,4380_7778208_2450255,4380_795 -4380_78000,291,4380_52513,Fermoy via Glanmire,86862-00013-1,0,4380_7778208_2450236,4380_804 -4380_78000,289,4380_52514,Fermoy via Glanmire,86984-00014-1,0,4380_7778208_2450255,4380_795 -4380_78000,292,4380_52515,Fermoy via Glanmire,86983-00016-1,0,4380_7778208_2450255,4380_795 -4380_78000,290,4380_52516,Fermoy via Glanmire,86989-00015-1,0,4380_7778208_2450255,4380_795 -4380_78000,294,4380_52517,Fermoy via Glanmire,86991-00018-1,0,4380_7778208_2450255,4380_795 -4380_78000,295,4380_52518,Fermoy via Glanmire,86985-00019-1,0,4380_7778208_2450255,4380_795 -4380_78000,293,4380_52519,Fermoy via Glanmire,86987-00017-1,0,4380_7778208_2450255,4380_795 -4380_77950,296,4380_5252,Ashbourne,4738-00021-1,0,4380_7778208_1050102,4380_59 -4380_78000,296,4380_52520,Fermoy via Glanmire,86863-00021-1,0,4380_7778208_2450236,4380_804 -4380_78000,285,4380_52527,Fermoy via Glanmire,87114-00009-1,0,4380_7778208_2450259,4380_796 -4380_78000,288,4380_52528,Fermoy via Glanmire,87120-00011-1,0,4380_7778208_2450259,4380_796 -4380_78000,287,4380_52529,Fermoy via Glanmire,87112-00012-1,0,4380_7778208_2450259,4380_796 -4380_78000,286,4380_52530,Fermoy via Glanmire,87116-00010-1,0,4380_7778208_2450259,4380_796 -4380_78000,291,4380_52531,Fermoy via Glanmire,86882-00013-1,0,4380_7778208_2450238,4380_801 -4380_78000,289,4380_52532,Fermoy via Glanmire,87118-00014-1,0,4380_7778208_2450259,4380_796 -4380_78000,292,4380_52533,Fermoy via Glanmire,87117-00016-1,0,4380_7778208_2450259,4380_796 -4380_78000,290,4380_52534,Fermoy via Glanmire,87115-00015-1,0,4380_7778208_2450259,4380_796 -4380_78000,294,4380_52535,Fermoy via Glanmire,87113-00018-1,0,4380_7778208_2450259,4380_796 -4380_78000,295,4380_52536,Fermoy via Glanmire,87119-00019-1,0,4380_7778208_2450259,4380_796 -4380_78000,293,4380_52537,Fermoy via Glanmire,87121-00017-1,0,4380_7778208_2450259,4380_796 -4380_78000,296,4380_52538,Fermoy via Glanmire,86883-00021-1,0,4380_7778208_2450238,4380_801 -4380_78000,297,4380_52540,Fermoy via Glanmire,86786-00008-1,0,4380_7778208_2450201,4380_795 -4380_78000,285,4380_52547,Clonmel,87286-00009-1,0,4380_7778208_2450802,4380_798 -4380_78000,288,4380_52548,Clonmel,87288-00011-1,0,4380_7778208_2450802,4380_798 -4380_78000,287,4380_52549,Clonmel,87294-00012-1,0,4380_7778208_2450802,4380_798 -4380_78000,286,4380_52550,Clonmel,87290-00010-1,0,4380_7778208_2450802,4380_798 -4380_78000,291,4380_52551,Clonmel,86888-00013-1,0,4380_7778208_2450239,4380_806 -4380_78000,289,4380_52552,Clonmel,87292-00014-1,0,4380_7778208_2450802,4380_798 -4380_78000,292,4380_52553,Clonmel,87291-00016-1,0,4380_7778208_2450802,4380_798 -4380_78000,290,4380_52554,Clonmel,87287-00015-1,0,4380_7778208_2450802,4380_798 -4380_78000,294,4380_52555,Clonmel,87295-00018-1,0,4380_7778208_2450802,4380_798 -4380_78000,295,4380_52556,Clonmel,87293-00019-1,0,4380_7778208_2450802,4380_798 -4380_78000,293,4380_52557,Clonmel,87289-00017-1,0,4380_7778208_2450802,4380_798 -4380_78000,296,4380_52558,Clonmel,86889-00021-1,0,4380_7778208_2450239,4380_806 -4380_78000,291,4380_52560,Fermoy via Glanmire,87318-00013-1,0,4380_7778208_2450829,4380_795 -4380_78000,296,4380_52561,Fermoy via Glanmire,87319-00021-1,0,4380_7778208_2450829,4380_795 -4380_78000,285,4380_52567,Fermoy via Glanmire,87136-00009-1,0,4380_7778208_2450259,4380_795 -4380_78000,288,4380_52568,Fermoy via Glanmire,87140-00011-1,0,4380_7778208_2450259,4380_795 -4380_78000,287,4380_52569,Fermoy via Glanmire,87132-00012-1,0,4380_7778208_2450259,4380_795 -4380_78000,286,4380_52570,Fermoy via Glanmire,87138-00010-1,0,4380_7778208_2450259,4380_795 -4380_78000,289,4380_52571,Fermoy via Glanmire,87134-00014-1,0,4380_7778208_2450259,4380_795 -4380_78000,292,4380_52572,Fermoy via Glanmire,87139-00016-1,0,4380_7778208_2450259,4380_795 -4380_78000,290,4380_52573,Fermoy via Glanmire,87137-00015-1,0,4380_7778208_2450259,4380_795 -4380_78000,294,4380_52574,Fermoy via Glanmire,87133-00018-1,0,4380_7778208_2450259,4380_795 -4380_78000,295,4380_52575,Fermoy via Glanmire,87135-00019-1,0,4380_7778208_2450259,4380_795 -4380_78000,293,4380_52576,Fermoy via Glanmire,87141-00017-1,0,4380_7778208_2450259,4380_795 -4380_78000,297,4380_52578,Fermoy via Glanmire,86788-00008-1,0,4380_7778208_2450202,4380_796 -4380_78000,285,4380_52585,Fermoy via Glanmire,86912-00009-1,0,4380_7778208_2450253,4380_796 -4380_78000,288,4380_52586,Fermoy via Glanmire,86918-00011-1,0,4380_7778208_2450253,4380_796 -4380_78000,287,4380_52587,Fermoy via Glanmire,86914-00012-1,0,4380_7778208_2450253,4380_796 -4380_78000,286,4380_52588,Fermoy via Glanmire,86916-00010-1,0,4380_7778208_2450253,4380_796 -4380_78000,291,4380_52589,Fermoy via Glanmire,86886-00013-1,0,4380_7778208_2450238,4380_801 -4380_77950,285,4380_5259,Drogheda,54357-00009-1,0,4380_7778208_1051103,4380_54 -4380_78000,289,4380_52590,Fermoy via Glanmire,86920-00014-1,0,4380_7778208_2450253,4380_796 -4380_78000,292,4380_52591,Fermoy via Glanmire,86917-00016-1,0,4380_7778208_2450253,4380_796 -4380_78000,290,4380_52592,Fermoy via Glanmire,86913-00015-1,0,4380_7778208_2450253,4380_796 -4380_78000,294,4380_52593,Fermoy via Glanmire,86915-00018-1,0,4380_7778208_2450253,4380_796 -4380_78000,295,4380_52594,Fermoy via Glanmire,86921-00019-1,0,4380_7778208_2450253,4380_796 -4380_78000,293,4380_52595,Fermoy via Glanmire,86919-00017-1,0,4380_7778208_2450253,4380_796 -4380_78000,296,4380_52596,Fermoy via Glanmire,86887-00021-1,0,4380_7778208_2450238,4380_801 -4380_77946,287,4380_526,Drogheda,50523-00012-1,1,4380_7778208_1000915,4380_6 -4380_77950,286,4380_5260,Drogheda,54355-00010-1,0,4380_7778208_1051103,4380_54 -4380_78000,285,4380_52602,Fermoy via Glanmire,87198-00009-1,0,4380_7778208_2450260,4380_795 -4380_78000,288,4380_52603,Fermoy via Glanmire,87200-00011-1,0,4380_7778208_2450260,4380_795 -4380_78000,287,4380_52604,Fermoy via Glanmire,87194-00012-1,0,4380_7778208_2450260,4380_795 -4380_78000,286,4380_52605,Fermoy via Glanmire,87196-00010-1,0,4380_7778208_2450260,4380_795 -4380_78000,289,4380_52606,Fermoy via Glanmire,87192-00014-1,0,4380_7778208_2450260,4380_795 -4380_78000,292,4380_52607,Fermoy via Glanmire,87197-00016-1,0,4380_7778208_2450260,4380_795 -4380_78000,290,4380_52608,Fermoy via Glanmire,87199-00015-1,0,4380_7778208_2450260,4380_795 -4380_78000,294,4380_52609,Fermoy via Glanmire,87195-00018-1,0,4380_7778208_2450260,4380_795 -4380_77950,288,4380_5261,Drogheda,54351-00011-1,0,4380_7778208_1051103,4380_54 -4380_78000,295,4380_52610,Fermoy via Glanmire,87193-00019-1,0,4380_7778208_2450260,4380_795 -4380_78000,293,4380_52611,Fermoy via Glanmire,87201-00017-1,0,4380_7778208_2450260,4380_795 -4380_78000,285,4380_52618,Clonmel,87066-00009-1,0,4380_7778208_2450256,4380_797 -4380_78000,288,4380_52619,Clonmel,87064-00011-1,0,4380_7778208_2450256,4380_797 -4380_77950,287,4380_5262,Drogheda,54353-00012-1,0,4380_7778208_1051103,4380_54 -4380_78000,287,4380_52620,Clonmel,87070-00012-1,0,4380_7778208_2450256,4380_797 -4380_78000,286,4380_52621,Clonmel,87062-00010-1,0,4380_7778208_2450256,4380_797 -4380_78000,291,4380_52622,Clonmel,87322-00013-1,0,4380_7778208_2450829,4380_802 -4380_78000,289,4380_52623,Clonmel,87068-00014-1,0,4380_7778208_2450256,4380_797 -4380_78000,292,4380_52624,Clonmel,87063-00016-1,0,4380_7778208_2450256,4380_797 -4380_78000,290,4380_52625,Clonmel,87067-00015-1,0,4380_7778208_2450256,4380_797 -4380_78000,294,4380_52626,Clonmel,87071-00018-1,0,4380_7778208_2450256,4380_797 -4380_78000,295,4380_52627,Clonmel,87069-00019-1,0,4380_7778208_2450256,4380_797 -4380_78000,293,4380_52628,Clonmel,87065-00017-1,0,4380_7778208_2450256,4380_797 -4380_78000,296,4380_52629,Clonmel,87323-00021-1,0,4380_7778208_2450829,4380_802 -4380_77950,289,4380_5263,Drogheda,54359-00014-1,0,4380_7778208_1051103,4380_54 -4380_78000,297,4380_52636,Clonmel,86790-00008-1,0,4380_7778208_2450202,4380_797 -4380_78000,285,4380_52637,Fermoy via Glanmire,87158-00009-1,0,4380_7778208_2450259,4380_795 -4380_78000,288,4380_52638,Fermoy via Glanmire,87152-00011-1,0,4380_7778208_2450259,4380_795 -4380_78000,287,4380_52639,Fermoy via Glanmire,87156-00012-1,0,4380_7778208_2450259,4380_795 -4380_77950,290,4380_5264,Drogheda,54358-00015-1,0,4380_7778208_1051103,4380_54 -4380_78000,286,4380_52640,Fermoy via Glanmire,87160-00010-1,0,4380_7778208_2450259,4380_795 -4380_78000,289,4380_52641,Fermoy via Glanmire,87154-00014-1,0,4380_7778208_2450259,4380_795 -4380_78000,292,4380_52642,Fermoy via Glanmire,87161-00016-1,0,4380_7778208_2450259,4380_795 -4380_78000,290,4380_52643,Fermoy via Glanmire,87159-00015-1,0,4380_7778208_2450259,4380_795 -4380_78000,294,4380_52644,Fermoy via Glanmire,87157-00018-1,0,4380_7778208_2450259,4380_795 -4380_78000,295,4380_52645,Fermoy via Glanmire,87155-00019-1,0,4380_7778208_2450259,4380_795 -4380_78000,293,4380_52646,Fermoy via Glanmire,87153-00017-1,0,4380_7778208_2450259,4380_795 -4380_77950,291,4380_5265,Drogheda,54361-00013-1,0,4380_7778208_1051103,4380_55 -4380_78000,285,4380_52653,Fermoy via Glanmire,87006-00009-1,0,4380_7778208_2450255,4380_795 -4380_78000,288,4380_52654,Fermoy via Glanmire,87010-00011-1,0,4380_7778208_2450255,4380_795 -4380_78000,287,4380_52655,Fermoy via Glanmire,87004-00012-1,0,4380_7778208_2450255,4380_795 -4380_78000,286,4380_52656,Fermoy via Glanmire,87002-00010-1,0,4380_7778208_2450255,4380_795 -4380_78000,291,4380_52657,Fermoy via Glanmire,86868-00013-1,0,4380_7778208_2450236,4380_804 -4380_78000,289,4380_52658,Fermoy via Glanmire,87008-00014-1,0,4380_7778208_2450255,4380_795 -4380_78000,292,4380_52659,Fermoy via Glanmire,87003-00016-1,0,4380_7778208_2450255,4380_795 -4380_77950,292,4380_5266,Drogheda,54356-00016-1,0,4380_7778208_1051103,4380_54 -4380_78000,290,4380_52660,Fermoy via Glanmire,87007-00015-1,0,4380_7778208_2450255,4380_795 -4380_78000,294,4380_52661,Fermoy via Glanmire,87005-00018-1,0,4380_7778208_2450255,4380_795 -4380_78000,295,4380_52662,Fermoy via Glanmire,87009-00019-1,0,4380_7778208_2450255,4380_795 -4380_78000,293,4380_52663,Fermoy via Glanmire,87011-00017-1,0,4380_7778208_2450255,4380_795 -4380_78000,296,4380_52664,Fermoy via Glanmire,86869-00021-1,0,4380_7778208_2450236,4380_804 -4380_77950,293,4380_5267,Drogheda,54352-00017-1,0,4380_7778208_1051103,4380_54 -4380_78000,285,4380_52671,Clonmel,87358-00009-1,0,4380_7778208_2450857,4380_797 -4380_78000,288,4380_52672,Clonmel,87362-00011-1,0,4380_7778208_2450857,4380_797 -4380_78000,287,4380_52673,Clonmel,87354-00012-1,0,4380_7778208_2450857,4380_797 -4380_78000,286,4380_52674,Clonmel,87360-00010-1,0,4380_7778208_2450857,4380_797 -4380_78000,291,4380_52675,Mitchelstown,86852-00013-1,0,4380_7778208_2450234,4380_803 -4380_78000,289,4380_52676,Clonmel,87356-00014-1,0,4380_7778208_2450857,4380_797 -4380_78000,292,4380_52677,Clonmel,87361-00016-1,0,4380_7778208_2450857,4380_797 -4380_78000,290,4380_52678,Clonmel,87359-00015-1,0,4380_7778208_2450857,4380_797 -4380_78000,294,4380_52679,Clonmel,87355-00018-1,0,4380_7778208_2450857,4380_797 -4380_77950,294,4380_5268,Drogheda,54354-00018-1,0,4380_7778208_1051103,4380_54 -4380_78000,295,4380_52680,Clonmel,87357-00019-1,0,4380_7778208_2450857,4380_797 -4380_78000,293,4380_52681,Clonmel,87363-00017-1,0,4380_7778208_2450857,4380_797 -4380_78000,296,4380_52682,Mitchelstown,86853-00021-1,0,4380_7778208_2450234,4380_803 -4380_78000,297,4380_52684,Fermoy via Glanmire,87253-00008-1,0,4380_7778208_2450801,4380_795 -4380_77950,295,4380_5269,Drogheda,54360-00019-1,0,4380_7778208_1051103,4380_54 -4380_78000,285,4380_52690,Fermoy via Glanmire,87214-00009-1,0,4380_7778208_2450260,4380_796 -4380_78000,288,4380_52691,Fermoy via Glanmire,87216-00011-1,0,4380_7778208_2450260,4380_796 -4380_78000,287,4380_52692,Fermoy via Glanmire,87220-00012-1,0,4380_7778208_2450260,4380_796 -4380_78000,286,4380_52693,Fermoy via Glanmire,87218-00010-1,0,4380_7778208_2450260,4380_796 -4380_78000,289,4380_52694,Fermoy via Glanmire,87212-00014-1,0,4380_7778208_2450260,4380_796 -4380_78000,292,4380_52695,Fermoy via Glanmire,87219-00016-1,0,4380_7778208_2450260,4380_796 -4380_78000,290,4380_52696,Fermoy via Glanmire,87215-00015-1,0,4380_7778208_2450260,4380_796 -4380_78000,294,4380_52697,Fermoy via Glanmire,87221-00018-1,0,4380_7778208_2450260,4380_796 -4380_78000,295,4380_52698,Fermoy via Glanmire,87213-00019-1,0,4380_7778208_2450260,4380_796 -4380_78000,293,4380_52699,Fermoy via Glanmire,87217-00017-1,0,4380_7778208_2450260,4380_796 -4380_77946,288,4380_527,Drogheda,50525-00011-1,1,4380_7778208_1000915,4380_6 -4380_77950,296,4380_5270,Drogheda,54362-00021-1,0,4380_7778208_1051103,4380_55 -4380_78000,285,4380_52706,Mitchelstown,86952-00009-1,0,4380_7778208_2450253,4380_799 -4380_78000,288,4380_52707,Mitchelstown,86956-00011-1,0,4380_7778208_2450253,4380_799 -4380_78000,287,4380_52708,Mitchelstown,86958-00012-1,0,4380_7778208_2450253,4380_799 -4380_78000,286,4380_52709,Mitchelstown,86954-00010-1,0,4380_7778208_2450253,4380_799 -4380_78000,291,4380_52710,Fermoy via Glanmire,86872-00013-1,0,4380_7778208_2450236,4380_795 -4380_78000,289,4380_52711,Mitchelstown,86960-00014-1,0,4380_7778208_2450253,4380_799 -4380_78000,292,4380_52712,Mitchelstown,86955-00016-1,0,4380_7778208_2450253,4380_799 -4380_78000,290,4380_52713,Mitchelstown,86953-00015-1,0,4380_7778208_2450253,4380_799 -4380_78000,294,4380_52714,Mitchelstown,86959-00018-1,0,4380_7778208_2450253,4380_799 -4380_78000,295,4380_52715,Mitchelstown,86961-00019-1,0,4380_7778208_2450253,4380_799 -4380_78000,293,4380_52716,Mitchelstown,86957-00017-1,0,4380_7778208_2450253,4380_799 -4380_78000,296,4380_52717,Fermoy via Glanmire,86873-00021-1,0,4380_7778208_2450236,4380_795 -4380_78000,285,4380_52723,Mitchelstown,87234-00009-1,0,4380_7778208_2450260,4380_799 -4380_78000,288,4380_52724,Mitchelstown,87236-00011-1,0,4380_7778208_2450260,4380_799 -4380_78000,287,4380_52725,Mitchelstown,87240-00012-1,0,4380_7778208_2450260,4380_799 -4380_78000,286,4380_52726,Mitchelstown,87232-00010-1,0,4380_7778208_2450260,4380_799 -4380_78000,289,4380_52727,Mitchelstown,87238-00014-1,0,4380_7778208_2450260,4380_799 -4380_78000,292,4380_52728,Mitchelstown,87233-00016-1,0,4380_7778208_2450260,4380_799 -4380_78000,290,4380_52729,Mitchelstown,87235-00015-1,0,4380_7778208_2450260,4380_799 -4380_78000,294,4380_52730,Mitchelstown,87241-00018-1,0,4380_7778208_2450260,4380_799 -4380_78000,295,4380_52731,Mitchelstown,87239-00019-1,0,4380_7778208_2450260,4380_799 -4380_78000,293,4380_52732,Mitchelstown,87237-00017-1,0,4380_7778208_2450260,4380_799 -4380_78000,297,4380_52734,Clonmel,87255-00008-1,0,4380_7778208_2450801,4380_797 -4380_78000,285,4380_52741,Clonmel,87314-00009-1,0,4380_7778208_2450802,4380_800 -4380_78000,288,4380_52742,Clonmel,87308-00011-1,0,4380_7778208_2450802,4380_800 -4380_78000,287,4380_52743,Clonmel,87306-00012-1,0,4380_7778208_2450802,4380_800 -4380_78000,286,4380_52744,Clonmel,87312-00010-1,0,4380_7778208_2450802,4380_800 -4380_78000,291,4380_52745,Mitchelstown,86876-00013-1,0,4380_7778208_2450236,4380_805 -4380_78000,289,4380_52746,Clonmel,87310-00014-1,0,4380_7778208_2450802,4380_800 -4380_78000,292,4380_52747,Clonmel,87313-00016-1,0,4380_7778208_2450802,4380_800 -4380_78000,290,4380_52748,Clonmel,87315-00015-1,0,4380_7778208_2450802,4380_800 -4380_78000,294,4380_52749,Clonmel,87307-00018-1,0,4380_7778208_2450802,4380_800 -4380_78000,295,4380_52750,Clonmel,87311-00019-1,0,4380_7778208_2450802,4380_800 -4380_78000,293,4380_52751,Clonmel,87309-00017-1,0,4380_7778208_2450802,4380_800 -4380_78000,296,4380_52752,Mitchelstown,86877-00021-1,0,4380_7778208_2450236,4380_805 -4380_78000,285,4380_52758,Fermoy via Glanmire,87024-00009-1,0,4380_7778208_2450255,4380_795 -4380_78000,288,4380_52759,Fermoy via Glanmire,87022-00011-1,0,4380_7778208_2450255,4380_795 -4380_78000,287,4380_52760,Fermoy via Glanmire,87028-00012-1,0,4380_7778208_2450255,4380_795 -4380_78000,286,4380_52761,Fermoy via Glanmire,87030-00010-1,0,4380_7778208_2450255,4380_795 -4380_78000,289,4380_52762,Fermoy via Glanmire,87026-00014-1,0,4380_7778208_2450255,4380_795 -4380_78000,292,4380_52763,Fermoy via Glanmire,87031-00016-1,0,4380_7778208_2450255,4380_795 -4380_78000,290,4380_52764,Fermoy via Glanmire,87025-00015-1,0,4380_7778208_2450255,4380_795 -4380_78000,294,4380_52765,Fermoy via Glanmire,87029-00018-1,0,4380_7778208_2450255,4380_795 -4380_78000,295,4380_52766,Fermoy via Glanmire,87027-00019-1,0,4380_7778208_2450255,4380_795 -4380_78000,293,4380_52767,Fermoy via Glanmire,87023-00017-1,0,4380_7778208_2450255,4380_795 -4380_77950,285,4380_5277,Emerald Park,4474-00009-1,0,4380_7778208_1050101,4380_58 -4380_78000,285,4380_52773,Cork,87090-00009-1,1,4380_7778208_2450259,4380_814 -4380_78000,288,4380_52774,Cork,87086-00011-1,1,4380_7778208_2450259,4380_814 -4380_78000,287,4380_52775,Cork,87088-00012-1,1,4380_7778208_2450259,4380_814 -4380_78000,286,4380_52776,Cork,87084-00010-1,1,4380_7778208_2450259,4380_814 -4380_78000,289,4380_52777,Cork,87082-00014-1,1,4380_7778208_2450259,4380_814 -4380_78000,292,4380_52778,Cork,87085-00016-1,1,4380_7778208_2450259,4380_814 -4380_78000,290,4380_52779,Cork,87091-00015-1,1,4380_7778208_2450259,4380_814 -4380_77950,286,4380_5278,Emerald Park,4488-00010-1,0,4380_7778208_1050101,4380_58 -4380_78000,294,4380_52780,Cork,87089-00018-1,1,4380_7778208_2450259,4380_814 -4380_78000,295,4380_52781,Cork,87083-00019-1,1,4380_7778208_2450259,4380_814 -4380_78000,293,4380_52782,Cork,87087-00017-1,1,4380_7778208_2450259,4380_814 -4380_78000,285,4380_52788,Cork,87264-00009-1,1,4380_7778208_2450802,4380_817 -4380_78000,288,4380_52789,Cork,87260-00011-1,1,4380_7778208_2450802,4380_817 -4380_77950,288,4380_5279,Emerald Park,4530-00011-1,0,4380_7778208_1050101,4380_58 -4380_78000,287,4380_52790,Cork,87258-00012-1,1,4380_7778208_2450802,4380_817 -4380_78000,286,4380_52791,Cork,87256-00010-1,1,4380_7778208_2450802,4380_817 -4380_78000,289,4380_52792,Cork,87262-00014-1,1,4380_7778208_2450802,4380_817 -4380_78000,292,4380_52793,Cork,87257-00016-1,1,4380_7778208_2450802,4380_817 -4380_78000,290,4380_52794,Cork,87265-00015-1,1,4380_7778208_2450802,4380_817 -4380_78000,294,4380_52795,Cork,87259-00018-1,1,4380_7778208_2450802,4380_817 -4380_78000,295,4380_52796,Cork,87263-00019-1,1,4380_7778208_2450802,4380_817 -4380_78000,293,4380_52797,Cork,87261-00017-1,1,4380_7778208_2450802,4380_817 -4380_77946,289,4380_528,Drogheda,50517-00014-1,1,4380_7778208_1000915,4380_6 -4380_77950,287,4380_5280,Emerald Park,4558-00012-1,0,4380_7778208_1050101,4380_58 -4380_78000,285,4380_52803,MTU,87040-00009-1,1,4380_7778208_2450256,4380_813 -4380_78000,288,4380_52804,MTU,87032-00011-1,1,4380_7778208_2450256,4380_813 -4380_78000,287,4380_52805,MTU,87038-00012-1,1,4380_7778208_2450256,4380_813 -4380_78000,286,4380_52806,MTU,87034-00010-1,1,4380_7778208_2450256,4380_813 -4380_78000,289,4380_52807,MTU,87036-00014-1,1,4380_7778208_2450256,4380_813 -4380_78000,292,4380_52808,MTU,87035-00016-1,1,4380_7778208_2450256,4380_813 -4380_78000,290,4380_52809,MTU,87041-00015-1,1,4380_7778208_2450256,4380_813 -4380_77950,289,4380_5281,Ashbourne,53960-00014-1,0,4380_7778208_1050101,4380_52 -4380_78000,294,4380_52810,MTU,87039-00018-1,1,4380_7778208_2450256,4380_813 -4380_78000,295,4380_52811,MTU,87037-00019-1,1,4380_7778208_2450256,4380_813 -4380_78000,293,4380_52812,MTU,87033-00017-1,1,4380_7778208_2450256,4380_813 -4380_78000,291,4380_52814,Cork,86856-00013-1,1,4380_7778208_2450236,4380_818 -4380_78000,296,4380_52815,Cork,86857-00021-1,1,4380_7778208_2450236,4380_818 -4380_77950,290,4380_5282,Ashbourne,53959-00015-1,0,4380_7778208_1050101,4380_52 -4380_78000,285,4380_52821,Cork,87328-00009-1,1,4380_7778208_2450857,4380_807 -4380_78000,288,4380_52822,Cork,87332-00011-1,1,4380_7778208_2450857,4380_807 -4380_78000,287,4380_52823,Cork,87330-00012-1,1,4380_7778208_2450857,4380_807 -4380_78000,286,4380_52824,Cork,87326-00010-1,1,4380_7778208_2450857,4380_807 -4380_78000,289,4380_52825,Cork,87324-00014-1,1,4380_7778208_2450857,4380_807 -4380_78000,292,4380_52826,Cork,87327-00016-1,1,4380_7778208_2450857,4380_807 -4380_78000,290,4380_52827,Cork,87329-00015-1,1,4380_7778208_2450857,4380_807 -4380_78000,294,4380_52828,Cork,87331-00018-1,1,4380_7778208_2450857,4380_807 -4380_78000,295,4380_52829,Cork,87325-00019-1,1,4380_7778208_2450857,4380_807 -4380_77950,291,4380_5283,Emerald Park,53964-00013-1,0,4380_7778208_1050101,4380_56 -4380_78000,293,4380_52830,Cork,87333-00017-1,1,4380_7778208_2450857,4380_807 -4380_77950,292,4380_5284,Ashbourne,53961-00016-1,0,4380_7778208_1050101,4380_52 -4380_78000,285,4380_52841,MTU,86976-00009-1,1,4380_7778208_2450255,4380_811 -4380_78000,285,4380_52842,Cork,87180-00009-1,1,4380_7778208_2450260,4380_815 -4380_78000,288,4380_52843,MTU,86978-00011-1,1,4380_7778208_2450255,4380_811 -4380_78000,288,4380_52844,Cork,87172-00011-1,1,4380_7778208_2450260,4380_815 -4380_78000,287,4380_52845,MTU,86972-00012-1,1,4380_7778208_2450255,4380_811 -4380_78000,287,4380_52846,Cork,87174-00012-1,1,4380_7778208_2450260,4380_815 -4380_78000,286,4380_52847,MTU,86974-00010-1,1,4380_7778208_2450255,4380_811 -4380_78000,286,4380_52848,Cork,87178-00010-1,1,4380_7778208_2450260,4380_815 -4380_78000,289,4380_52849,MTU,86980-00014-1,1,4380_7778208_2450255,4380_811 -4380_77950,293,4380_5285,Ashbourne,53962-00017-1,0,4380_7778208_1050101,4380_52 -4380_78000,289,4380_52850,Cork,87176-00014-1,1,4380_7778208_2450260,4380_815 -4380_78000,292,4380_52851,MTU,86975-00016-1,1,4380_7778208_2450255,4380_811 -4380_78000,292,4380_52852,Cork,87179-00016-1,1,4380_7778208_2450260,4380_815 -4380_78000,290,4380_52853,MTU,86977-00015-1,1,4380_7778208_2450255,4380_811 -4380_78000,290,4380_52854,Cork,87181-00015-1,1,4380_7778208_2450260,4380_815 -4380_78000,294,4380_52855,MTU,86973-00018-1,1,4380_7778208_2450255,4380_811 -4380_78000,294,4380_52856,Cork,87175-00018-1,1,4380_7778208_2450260,4380_815 -4380_78000,295,4380_52857,MTU,86981-00019-1,1,4380_7778208_2450255,4380_811 -4380_78000,295,4380_52858,Cork,87177-00019-1,1,4380_7778208_2450260,4380_815 -4380_78000,293,4380_52859,MTU,86979-00017-1,1,4380_7778208_2450255,4380_811 -4380_77950,294,4380_5286,Ashbourne,53963-00018-1,0,4380_7778208_1050101,4380_52 -4380_78000,293,4380_52860,Cork,87173-00017-1,1,4380_7778208_2450260,4380_815 -4380_78000,291,4380_52862,Cork,86846-00013-1,1,4380_7778208_2450234,4380_808 -4380_78000,296,4380_52863,Cork,86847-00021-1,1,4380_7778208_2450234,4380_808 -4380_78000,297,4380_52865,Cork,86783-00008-1,1,4380_7778208_2450201,4380_807 -4380_77950,295,4380_5287,Emerald Park,4446-00019-1,0,4380_7778208_1050101,4380_58 -4380_78000,285,4380_52871,Cork,87102-00009-1,1,4380_7778208_2450259,4380_815 -4380_78000,288,4380_52872,Cork,87108-00011-1,1,4380_7778208_2450259,4380_815 -4380_78000,287,4380_52873,Cork,87104-00012-1,1,4380_7778208_2450259,4380_815 -4380_78000,286,4380_52874,Cork,87110-00010-1,1,4380_7778208_2450259,4380_815 -4380_78000,289,4380_52875,Cork,87106-00014-1,1,4380_7778208_2450259,4380_815 -4380_78000,292,4380_52876,Cork,87111-00016-1,1,4380_7778208_2450259,4380_815 -4380_78000,290,4380_52877,Cork,87103-00015-1,1,4380_7778208_2450259,4380_815 -4380_78000,294,4380_52878,Cork,87105-00018-1,1,4380_7778208_2450259,4380_815 -4380_78000,295,4380_52879,Cork,87107-00019-1,1,4380_7778208_2450259,4380_815 -4380_77950,296,4380_5288,Ashbourne,4572-00021-1,0,4380_7778208_1050101,4380_59 -4380_78000,293,4380_52880,Cork,87109-00017-1,1,4380_7778208_2450259,4380_815 -4380_78000,285,4380_52887,Cork,87276-00009-1,1,4380_7778208_2450802,4380_812 -4380_78000,288,4380_52888,Cork,87278-00011-1,1,4380_7778208_2450802,4380_812 -4380_78000,287,4380_52889,Cork,87284-00012-1,1,4380_7778208_2450802,4380_812 -4380_78000,286,4380_52890,Cork,87282-00010-1,1,4380_7778208_2450802,4380_812 -4380_78000,291,4380_52891,Cork,86860-00013-1,1,4380_7778208_2450236,4380_819 -4380_78000,289,4380_52892,Cork,87280-00014-1,1,4380_7778208_2450802,4380_812 -4380_78000,292,4380_52893,Cork,87283-00016-1,1,4380_7778208_2450802,4380_812 -4380_78000,290,4380_52894,Cork,87277-00015-1,1,4380_7778208_2450802,4380_812 -4380_78000,294,4380_52895,Cork,87285-00018-1,1,4380_7778208_2450802,4380_812 -4380_78000,295,4380_52896,Cork,87281-00019-1,1,4380_7778208_2450802,4380_812 -4380_78000,293,4380_52897,Cork,87279-00017-1,1,4380_7778208_2450802,4380_812 -4380_78000,296,4380_52898,Cork,86861-00021-1,1,4380_7778208_2450236,4380_819 -4380_77946,290,4380_529,Drogheda,50522-00015-1,1,4380_7778208_1000915,4380_6 -4380_78000,285,4380_52905,Cork,86906-00009-1,1,4380_7778208_2450253,4380_810 -4380_78000,288,4380_52906,Cork,86908-00011-1,1,4380_7778208_2450253,4380_810 -4380_78000,287,4380_52907,Cork,86902-00012-1,1,4380_7778208_2450253,4380_810 -4380_78000,286,4380_52908,Cork,86910-00010-1,1,4380_7778208_2450253,4380_810 -4380_78000,291,4380_52909,Cork,87316-00013-1,1,4380_7778208_2450829,4380_822 -4380_78000,289,4380_52910,Cork,86904-00014-1,1,4380_7778208_2450253,4380_810 -4380_78000,292,4380_52911,Cork,86911-00016-1,1,4380_7778208_2450253,4380_810 -4380_78000,290,4380_52912,Cork,86907-00015-1,1,4380_7778208_2450253,4380_810 -4380_78000,294,4380_52913,Cork,86903-00018-1,1,4380_7778208_2450253,4380_810 -4380_78000,295,4380_52914,Cork,86905-00019-1,1,4380_7778208_2450253,4380_810 -4380_78000,293,4380_52915,Cork,86909-00017-1,1,4380_7778208_2450253,4380_810 -4380_78000,296,4380_52916,Cork,87317-00021-1,1,4380_7778208_2450829,4380_822 -4380_78000,285,4380_52923,Cork,87056-00009-1,1,4380_7778208_2450256,4380_808 -4380_78000,288,4380_52924,Cork,87054-00011-1,1,4380_7778208_2450256,4380_808 -4380_78000,287,4380_52925,Cork,87058-00012-1,1,4380_7778208_2450256,4380_808 -4380_78000,286,4380_52926,Cork,87052-00010-1,1,4380_7778208_2450256,4380_808 -4380_78000,291,4380_52927,Cork,86880-00013-1,1,4380_7778208_2450238,4380_820 -4380_78000,289,4380_52928,Cork,87060-00014-1,1,4380_7778208_2450256,4380_808 -4380_78000,292,4380_52929,Cork,87053-00016-1,1,4380_7778208_2450256,4380_808 -4380_78000,290,4380_52930,Cork,87057-00015-1,1,4380_7778208_2450256,4380_808 -4380_78000,294,4380_52931,Cork,87059-00018-1,1,4380_7778208_2450256,4380_808 -4380_78000,295,4380_52932,Cork,87061-00019-1,1,4380_7778208_2450256,4380_808 -4380_78000,293,4380_52933,Cork,87055-00017-1,1,4380_7778208_2450256,4380_808 -4380_78000,296,4380_52934,Cork,86881-00021-1,1,4380_7778208_2450238,4380_820 -4380_78000,297,4380_52936,Cork,86785-00008-1,1,4380_7778208_2450201,4380_808 -4380_78000,285,4380_52943,Cork,86996-00009-1,1,4380_7778208_2450255,4380_812 -4380_78000,288,4380_52944,Cork,87000-00011-1,1,4380_7778208_2450255,4380_812 -4380_78000,287,4380_52945,Cork,86998-00012-1,1,4380_7778208_2450255,4380_812 -4380_78000,286,4380_52946,Cork,86994-00010-1,1,4380_7778208_2450255,4380_812 -4380_78000,291,4380_52947,Cork,86864-00013-1,1,4380_7778208_2450236,4380_819 -4380_78000,289,4380_52948,Cork,86992-00014-1,1,4380_7778208_2450255,4380_812 -4380_78000,292,4380_52949,Cork,86995-00016-1,1,4380_7778208_2450255,4380_812 -4380_78000,290,4380_52950,Cork,86997-00015-1,1,4380_7778208_2450255,4380_812 -4380_78000,294,4380_52951,Cork,86999-00018-1,1,4380_7778208_2450255,4380_812 -4380_78000,295,4380_52952,Cork,86993-00019-1,1,4380_7778208_2450255,4380_812 -4380_78000,293,4380_52953,Cork,87001-00017-1,1,4380_7778208_2450255,4380_812 -4380_78000,296,4380_52954,Cork,86865-00021-1,1,4380_7778208_2450236,4380_819 -4380_78000,291,4380_52956,Cork,86850-00013-1,1,4380_7778208_2450234,4380_809 -4380_78000,296,4380_52957,Cork,86851-00021-1,1,4380_7778208_2450234,4380_809 -4380_77950,285,4380_5296,Drogheda,54457-00009-1,0,4380_7778208_1051104,4380_54 -4380_78000,285,4380_52964,Cork,87122-00009-1,1,4380_7778208_2450259,4380_808 -4380_78000,288,4380_52965,Cork,87130-00011-1,1,4380_7778208_2450259,4380_808 -4380_78000,287,4380_52966,Cork,87126-00012-1,1,4380_7778208_2450259,4380_808 -4380_78000,286,4380_52967,Cork,87124-00010-1,1,4380_7778208_2450259,4380_808 -4380_78000,291,4380_52968,Cork,86884-00013-1,1,4380_7778208_2450238,4380_820 -4380_78000,289,4380_52969,Cork,87128-00014-1,1,4380_7778208_2450259,4380_808 -4380_77950,286,4380_5297,Drogheda,54455-00010-1,0,4380_7778208_1051104,4380_54 -4380_78000,292,4380_52970,Cork,87125-00016-1,1,4380_7778208_2450259,4380_808 -4380_78000,290,4380_52971,Cork,87123-00015-1,1,4380_7778208_2450259,4380_808 -4380_78000,294,4380_52972,Cork,87127-00018-1,1,4380_7778208_2450259,4380_808 -4380_78000,295,4380_52973,Cork,87129-00019-1,1,4380_7778208_2450259,4380_808 -4380_78000,293,4380_52974,Cork,87131-00017-1,1,4380_7778208_2450259,4380_808 -4380_78000,296,4380_52975,Cork,86885-00021-1,1,4380_7778208_2450238,4380_820 -4380_78000,297,4380_52977,Cork,86787-00008-1,1,4380_7778208_2450202,4380_808 -4380_77950,297,4380_5298,Drogheda,54176-00008-1,0,4380_7778208_1051101,4380_55 -4380_78000,285,4380_52983,Cork,87348-00009-1,1,4380_7778208_2450857,4380_810 -4380_78000,288,4380_52984,Cork,87350-00011-1,1,4380_7778208_2450857,4380_810 -4380_78000,287,4380_52985,Cork,87352-00012-1,1,4380_7778208_2450857,4380_810 -4380_78000,286,4380_52986,Cork,87344-00010-1,1,4380_7778208_2450857,4380_810 -4380_78000,289,4380_52987,Cork,87346-00014-1,1,4380_7778208_2450857,4380_810 -4380_78000,292,4380_52988,Cork,87345-00016-1,1,4380_7778208_2450857,4380_810 -4380_78000,290,4380_52989,Cork,87349-00015-1,1,4380_7778208_2450857,4380_810 -4380_77950,288,4380_5299,Drogheda,54453-00011-1,0,4380_7778208_1051104,4380_54 -4380_78000,294,4380_52990,Cork,87353-00018-1,1,4380_7778208_2450857,4380_810 -4380_78000,295,4380_52991,Cork,87347-00019-1,1,4380_7778208_2450857,4380_810 -4380_78000,293,4380_52992,Cork,87351-00017-1,1,4380_7778208_2450857,4380_810 -4380_78000,285,4380_52998,Cork,87184-00009-1,1,4380_7778208_2450260,4380_812 -4380_78000,288,4380_52999,Cork,87190-00011-1,1,4380_7778208_2450260,4380_812 -4380_77946,289,4380_53,Dundalk,114785-00014-1,0,4380_7778208_10088802,4380_4 -4380_77946,291,4380_530,Drogheda,50283-00013-1,1,4380_7778208_1000912,4380_9 -4380_77950,287,4380_5300,Drogheda,54461-00012-1,0,4380_7778208_1051104,4380_54 -4380_78000,287,4380_53000,Cork,87188-00012-1,1,4380_7778208_2450260,4380_812 -4380_78000,286,4380_53001,Cork,87182-00010-1,1,4380_7778208_2450260,4380_812 -4380_78000,289,4380_53002,Cork,87186-00014-1,1,4380_7778208_2450260,4380_812 -4380_78000,292,4380_53003,Cork,87183-00016-1,1,4380_7778208_2450260,4380_812 -4380_78000,290,4380_53004,Cork,87185-00015-1,1,4380_7778208_2450260,4380_812 -4380_78000,294,4380_53005,Cork,87189-00018-1,1,4380_7778208_2450260,4380_812 -4380_78000,295,4380_53006,Cork,87187-00019-1,1,4380_7778208_2450260,4380_812 -4380_78000,293,4380_53007,Cork,87191-00017-1,1,4380_7778208_2450260,4380_812 -4380_78000,291,4380_53009,Cork,87320-00013-1,1,4380_7778208_2450829,4380_808 -4380_77950,289,4380_5301,Drogheda,54459-00014-1,0,4380_7778208_1051104,4380_54 -4380_78000,296,4380_53010,Cork,87321-00021-1,1,4380_7778208_2450829,4380_808 -4380_78000,285,4380_53016,Cork,87148-00009-1,1,4380_7778208_2450259,4380_816 -4380_78000,288,4380_53017,Cork,87146-00011-1,1,4380_7778208_2450259,4380_816 -4380_78000,287,4380_53018,Cork,87144-00012-1,1,4380_7778208_2450259,4380_816 -4380_78000,286,4380_53019,Cork,87150-00010-1,1,4380_7778208_2450259,4380_816 -4380_77950,290,4380_5302,Drogheda,54458-00015-1,0,4380_7778208_1051104,4380_54 -4380_78000,289,4380_53020,Cork,87142-00014-1,1,4380_7778208_2450259,4380_816 -4380_78000,292,4380_53021,Cork,87151-00016-1,1,4380_7778208_2450259,4380_816 -4380_78000,290,4380_53022,Cork,87149-00015-1,1,4380_7778208_2450259,4380_816 -4380_78000,294,4380_53023,Cork,87145-00018-1,1,4380_7778208_2450259,4380_816 -4380_78000,295,4380_53024,Cork,87143-00019-1,1,4380_7778208_2450259,4380_816 -4380_78000,293,4380_53025,Cork,87147-00017-1,1,4380_7778208_2450259,4380_816 -4380_78000,297,4380_53027,Cork,86789-00008-1,1,4380_7778208_2450202,4380_808 -4380_77950,291,4380_5303,Drogheda,54463-00013-1,0,4380_7778208_1051104,4380_57 -4380_78000,285,4380_53034,Cork,87296-00009-1,1,4380_7778208_2450802,4380_807 -4380_78000,288,4380_53035,Cork,87302-00011-1,1,4380_7778208_2450802,4380_807 -4380_78000,287,4380_53036,Cork,87304-00012-1,1,4380_7778208_2450802,4380_807 -4380_78000,286,4380_53037,Cork,87300-00010-1,1,4380_7778208_2450802,4380_807 -4380_78000,291,4380_53038,Cork,86890-00013-1,1,4380_7778208_2450239,4380_821 -4380_78000,289,4380_53039,Cork,87298-00014-1,1,4380_7778208_2450802,4380_807 -4380_77950,292,4380_5304,Drogheda,54456-00016-1,0,4380_7778208_1051104,4380_54 -4380_78000,292,4380_53040,Cork,87301-00016-1,1,4380_7778208_2450802,4380_807 -4380_78000,290,4380_53041,Cork,87297-00015-1,1,4380_7778208_2450802,4380_807 -4380_78000,294,4380_53042,Cork,87305-00018-1,1,4380_7778208_2450802,4380_807 -4380_78000,295,4380_53043,Cork,87299-00019-1,1,4380_7778208_2450802,4380_807 -4380_78000,293,4380_53044,Cork,87303-00017-1,1,4380_7778208_2450802,4380_807 -4380_78000,296,4380_53045,Cork,86891-00021-1,1,4380_7778208_2450239,4380_821 -4380_78000,291,4380_53047,Cork,86866-00013-1,1,4380_7778208_2450236,4380_808 -4380_78000,296,4380_53048,Cork,86867-00021-1,1,4380_7778208_2450236,4380_808 -4380_77950,293,4380_5305,Drogheda,54454-00017-1,0,4380_7778208_1051104,4380_54 -4380_78000,285,4380_53054,Cork,86928-00009-1,1,4380_7778208_2450253,4380_808 -4380_78000,288,4380_53055,Cork,86930-00011-1,1,4380_7778208_2450253,4380_808 -4380_78000,287,4380_53056,Cork,86922-00012-1,1,4380_7778208_2450253,4380_808 -4380_78000,286,4380_53057,Cork,86924-00010-1,1,4380_7778208_2450253,4380_808 -4380_78000,289,4380_53058,Cork,86926-00014-1,1,4380_7778208_2450253,4380_808 -4380_78000,292,4380_53059,Cork,86925-00016-1,1,4380_7778208_2450253,4380_808 -4380_77950,294,4380_5306,Drogheda,54462-00018-1,0,4380_7778208_1051104,4380_54 -4380_78000,290,4380_53060,Cork,86929-00015-1,1,4380_7778208_2450253,4380_808 -4380_78000,294,4380_53061,Cork,86923-00018-1,1,4380_7778208_2450253,4380_808 -4380_78000,295,4380_53062,Cork,86927-00019-1,1,4380_7778208_2450253,4380_808 -4380_78000,293,4380_53063,Cork,86931-00017-1,1,4380_7778208_2450253,4380_808 -4380_78000,297,4380_53065,Cork,87252-00008-1,1,4380_7778208_2450801,4380_809 -4380_77950,295,4380_5307,Drogheda,54460-00019-1,0,4380_7778208_1051104,4380_54 -4380_78000,285,4380_53071,Cork,87204-00009-1,1,4380_7778208_2450260,4380_808 -4380_78000,288,4380_53072,Cork,87210-00011-1,1,4380_7778208_2450260,4380_808 -4380_78000,287,4380_53073,Cork,87206-00012-1,1,4380_7778208_2450260,4380_808 -4380_78000,286,4380_53074,Cork,87202-00010-1,1,4380_7778208_2450260,4380_808 -4380_78000,289,4380_53075,Cork,87208-00014-1,1,4380_7778208_2450260,4380_808 -4380_78000,292,4380_53076,Cork,87203-00016-1,1,4380_7778208_2450260,4380_808 -4380_78000,290,4380_53077,Cork,87205-00015-1,1,4380_7778208_2450260,4380_808 -4380_78000,294,4380_53078,Cork,87207-00018-1,1,4380_7778208_2450260,4380_808 -4380_78000,295,4380_53079,Cork,87209-00019-1,1,4380_7778208_2450260,4380_808 -4380_77950,296,4380_5308,Drogheda,54464-00021-1,0,4380_7778208_1051104,4380_57 -4380_78000,293,4380_53080,Cork,87211-00017-1,1,4380_7778208_2450260,4380_808 -4380_78000,285,4380_53086,Cork,87168-00009-1,1,4380_7778208_2450259,4380_808 -4380_78000,288,4380_53087,Cork,87170-00011-1,1,4380_7778208_2450259,4380_808 -4380_78000,287,4380_53088,Cork,87166-00012-1,1,4380_7778208_2450259,4380_808 -4380_78000,286,4380_53089,Cork,87162-00010-1,1,4380_7778208_2450259,4380_808 -4380_78000,289,4380_53090,Cork,87164-00014-1,1,4380_7778208_2450259,4380_808 -4380_78000,292,4380_53091,Cork,87163-00016-1,1,4380_7778208_2450259,4380_808 -4380_78000,290,4380_53092,Cork,87169-00015-1,1,4380_7778208_2450259,4380_808 -4380_78000,294,4380_53093,Cork,87167-00018-1,1,4380_7778208_2450259,4380_808 -4380_78000,295,4380_53094,Cork,87165-00019-1,1,4380_7778208_2450259,4380_808 -4380_78000,293,4380_53095,Cork,87171-00017-1,1,4380_7778208_2450259,4380_808 -4380_77946,292,4380_531,Drogheda,50520-00016-1,1,4380_7778208_1000915,4380_6 -4380_78000,285,4380_53102,Cork,87016-00009-1,1,4380_7778208_2450255,4380_812 -4380_78000,288,4380_53103,Cork,87020-00011-1,1,4380_7778208_2450255,4380_812 -4380_78000,287,4380_53104,Cork,87018-00012-1,1,4380_7778208_2450255,4380_812 -4380_78000,286,4380_53105,Cork,87014-00010-1,1,4380_7778208_2450255,4380_812 -4380_78000,291,4380_53106,Cork,86870-00013-1,1,4380_7778208_2450236,4380_808 -4380_78000,289,4380_53107,Cork,87012-00014-1,1,4380_7778208_2450255,4380_812 -4380_78000,292,4380_53108,Cork,87015-00016-1,1,4380_7778208_2450255,4380_812 -4380_78000,290,4380_53109,Cork,87017-00015-1,1,4380_7778208_2450255,4380_812 -4380_78000,294,4380_53110,Cork,87019-00018-1,1,4380_7778208_2450255,4380_812 -4380_78000,295,4380_53111,Cork,87013-00019-1,1,4380_7778208_2450255,4380_812 -4380_78000,293,4380_53112,Cork,87021-00017-1,1,4380_7778208_2450255,4380_812 -4380_78000,296,4380_53113,Cork,86871-00021-1,1,4380_7778208_2450236,4380_808 -4380_78000,285,4380_53119,Cork,87072-00009-1,1,4380_7778208_2450256,4380_807 -4380_78000,288,4380_53120,Cork,87074-00011-1,1,4380_7778208_2450256,4380_807 -4380_78000,287,4380_53121,Cork,87078-00012-1,1,4380_7778208_2450256,4380_807 -4380_78000,286,4380_53122,Cork,87076-00010-1,1,4380_7778208_2450256,4380_807 -4380_78000,289,4380_53123,Cork,87080-00014-1,1,4380_7778208_2450256,4380_807 -4380_78000,292,4380_53124,Cork,87077-00016-1,1,4380_7778208_2450256,4380_807 -4380_78000,290,4380_53125,Cork,87073-00015-1,1,4380_7778208_2450256,4380_807 -4380_78000,294,4380_53126,Cork,87079-00018-1,1,4380_7778208_2450256,4380_807 -4380_78000,295,4380_53127,Cork,87081-00019-1,1,4380_7778208_2450256,4380_807 -4380_78000,293,4380_53128,Cork,87075-00017-1,1,4380_7778208_2450256,4380_807 -4380_78000,291,4380_53130,Cork,86854-00013-1,1,4380_7778208_2450234,4380_818 -4380_78000,296,4380_53131,Cork,86855-00021-1,1,4380_7778208_2450234,4380_818 -4380_78000,297,4380_53133,Cork,86791-00008-1,1,4380_7778208_2450202,4380_807 -4380_78000,297,4380_53135,Cork,87254-00008-1,1,4380_7778208_2450801,4380_808 -4380_78000,285,4380_53141,Cork,87224-00009-1,1,4380_7778208_2450260,4380_808 -4380_78000,288,4380_53142,Cork,87228-00011-1,1,4380_7778208_2450260,4380_808 -4380_78000,287,4380_53143,Cork,87222-00012-1,1,4380_7778208_2450260,4380_808 -4380_78000,286,4380_53144,Cork,87230-00010-1,1,4380_7778208_2450260,4380_808 -4380_78000,289,4380_53145,Cork,87226-00014-1,1,4380_7778208_2450260,4380_808 -4380_78000,292,4380_53146,Cork,87231-00016-1,1,4380_7778208_2450260,4380_808 -4380_78000,290,4380_53147,Cork,87225-00015-1,1,4380_7778208_2450260,4380_808 -4380_78000,294,4380_53148,Cork,87223-00018-1,1,4380_7778208_2450260,4380_808 -4380_78000,295,4380_53149,Cork,87227-00019-1,1,4380_7778208_2450260,4380_808 -4380_77950,285,4380_5315,Emerald Park,4628-00009-1,0,4380_7778208_1050102,4380_58 -4380_78000,293,4380_53150,Cork,87229-00017-1,1,4380_7778208_2450260,4380_808 -4380_78000,291,4380_53152,Cork,86874-00013-1,1,4380_7778208_2450236,4380_808 -4380_78000,296,4380_53153,Cork,86875-00021-1,1,4380_7778208_2450236,4380_808 -4380_78000,285,4380_53159,Cork,87246-00009-1,1,4380_7778208_2450260,4380_815 -4380_77950,286,4380_5316,Emerald Park,4670-00010-1,0,4380_7778208_1050102,4380_58 -4380_78000,288,4380_53160,Cork,87250-00011-1,1,4380_7778208_2450260,4380_815 -4380_78000,287,4380_53161,Cork,87248-00012-1,1,4380_7778208_2450260,4380_815 -4380_78000,286,4380_53162,Cork,87242-00010-1,1,4380_7778208_2450260,4380_815 -4380_78000,289,4380_53163,Cork,87244-00014-1,1,4380_7778208_2450260,4380_815 -4380_78000,292,4380_53164,Cork,87243-00016-1,1,4380_7778208_2450260,4380_815 -4380_78000,290,4380_53165,Cork,87247-00015-1,1,4380_7778208_2450260,4380_815 -4380_78000,294,4380_53166,Cork,87249-00018-1,1,4380_7778208_2450260,4380_815 -4380_78000,295,4380_53167,Cork,87245-00019-1,1,4380_7778208_2450260,4380_815 -4380_78000,293,4380_53168,Cork,87251-00017-1,1,4380_7778208_2450260,4380_815 -4380_77950,288,4380_5317,Emerald Park,4684-00011-1,0,4380_7778208_1050102,4380_58 -4380_78146,297,4380_53176,Cork,86733-00008-1,0,4380_7778208_2450101,4380_823 -4380_78146,285,4380_53177,Cork,86734-00009-1,0,4380_7778208_2450101,4380_824 -4380_78146,288,4380_53178,Cork,86742-00011-1,0,4380_7778208_2450101,4380_824 -4380_78146,287,4380_53179,Cork,86740-00012-1,0,4380_7778208_2450101,4380_824 -4380_77950,287,4380_5318,Emerald Park,4712-00012-1,0,4380_7778208_1050102,4380_58 -4380_78146,286,4380_53180,Cork,86738-00010-1,0,4380_7778208_2450101,4380_824 -4380_78146,291,4380_53181,Cork,86736-00013-1,0,4380_7778208_2450101,4380_825 -4380_78146,289,4380_53182,Cork,86731-00014-1,0,4380_7778208_2450101,4380_824 -4380_78146,292,4380_53183,Cork,86739-00016-1,0,4380_7778208_2450101,4380_824 -4380_78146,290,4380_53184,Cork,86735-00015-1,0,4380_7778208_2450101,4380_824 -4380_78146,294,4380_53185,Cork,86741-00018-1,0,4380_7778208_2450101,4380_824 -4380_78146,295,4380_53186,Cork,86732-00019-1,0,4380_7778208_2450101,4380_824 -4380_78146,293,4380_53187,Cork,86743-00017-1,0,4380_7778208_2450101,4380_824 -4380_78146,296,4380_53188,Cork,86737-00021-1,0,4380_7778208_2450101,4380_825 -4380_77950,289,4380_5319,Ashbourne,54045-00014-1,0,4380_7778208_1050102,4380_52 -4380_78146,297,4380_53196,Cork,86759-00008-1,0,4380_7778208_2450102,4380_823 -4380_78146,285,4380_53197,Cork,86760-00009-1,0,4380_7778208_2450102,4380_824 -4380_78146,288,4380_53198,Cork,86768-00011-1,0,4380_7778208_2450102,4380_824 -4380_78146,287,4380_53199,Cork,86766-00012-1,0,4380_7778208_2450102,4380_824 -4380_77946,293,4380_532,Drogheda,50526-00017-1,1,4380_7778208_1000915,4380_6 -4380_77950,290,4380_5320,Ashbourne,54046-00015-1,0,4380_7778208_1050102,4380_52 -4380_78146,286,4380_53200,Cork,86764-00010-1,0,4380_7778208_2450102,4380_824 -4380_78146,291,4380_53201,Cork,86762-00013-1,0,4380_7778208_2450102,4380_825 -4380_78146,289,4380_53202,Cork,86757-00014-1,0,4380_7778208_2450102,4380_824 -4380_78146,292,4380_53203,Cork,86765-00016-1,0,4380_7778208_2450102,4380_824 -4380_78146,290,4380_53204,Cork,86761-00015-1,0,4380_7778208_2450102,4380_824 -4380_78146,294,4380_53205,Cork,86767-00018-1,0,4380_7778208_2450102,4380_824 -4380_78146,295,4380_53206,Cork,86758-00019-1,0,4380_7778208_2450102,4380_824 -4380_78146,293,4380_53207,Cork,86769-00017-1,0,4380_7778208_2450102,4380_824 -4380_78146,296,4380_53208,Cork,86763-00021-1,0,4380_7778208_2450102,4380_825 -4380_77950,291,4380_5321,Emerald Park,54044-00013-1,0,4380_7778208_1050102,4380_56 -4380_78146,297,4380_53216,Cork,86841-00008-1,0,4380_7778208_2450223,4380_823 -4380_78146,285,4380_53217,Cork,86806-00009-1,0,4380_7778208_2450211,4380_824 -4380_78146,288,4380_53218,Cork,86804-00011-1,0,4380_7778208_2450211,4380_824 -4380_78146,287,4380_53219,Cork,86808-00012-1,0,4380_7778208_2450211,4380_824 -4380_77950,292,4380_5322,Ashbourne,54043-00016-1,0,4380_7778208_1050102,4380_52 -4380_78146,286,4380_53220,Cork,86814-00010-1,0,4380_7778208_2450211,4380_824 -4380_78146,291,4380_53221,Cork,86812-00013-1,0,4380_7778208_2450211,4380_825 -4380_78146,289,4380_53222,Cork,86810-00014-1,0,4380_7778208_2450211,4380_824 -4380_78146,292,4380_53223,Cork,86815-00016-1,0,4380_7778208_2450211,4380_824 -4380_78146,290,4380_53224,Cork,86807-00015-1,0,4380_7778208_2450211,4380_824 -4380_78146,294,4380_53225,Cork,86809-00018-1,0,4380_7778208_2450211,4380_824 -4380_78146,295,4380_53226,Cork,86811-00019-1,0,4380_7778208_2450211,4380_824 -4380_78146,293,4380_53227,Cork,86805-00017-1,0,4380_7778208_2450211,4380_824 -4380_78146,296,4380_53228,Cork,86813-00021-1,0,4380_7778208_2450211,4380_825 -4380_77950,293,4380_5323,Ashbourne,54047-00017-1,0,4380_7778208_1050102,4380_52 -4380_78146,297,4380_53236,Cork,86843-00008-1,0,4380_7778208_2450224,4380_823 -4380_78146,285,4380_53237,Cork,86834-00009-1,0,4380_7778208_2450222,4380_824 -4380_78146,288,4380_53238,Cork,86828-00011-1,0,4380_7778208_2450222,4380_824 -4380_78146,287,4380_53239,Cork,86832-00012-1,0,4380_7778208_2450222,4380_824 -4380_77950,294,4380_5324,Ashbourne,54048-00018-1,0,4380_7778208_1050102,4380_52 -4380_78146,286,4380_53240,Cork,86836-00010-1,0,4380_7778208_2450222,4380_824 -4380_78146,291,4380_53241,Cork,86838-00013-1,0,4380_7778208_2450222,4380_825 -4380_78146,289,4380_53242,Cork,86830-00014-1,0,4380_7778208_2450222,4380_824 -4380_78146,292,4380_53243,Cork,86837-00016-1,0,4380_7778208_2450222,4380_824 -4380_78146,290,4380_53244,Cork,86835-00015-1,0,4380_7778208_2450222,4380_824 -4380_78146,294,4380_53245,Cork,86833-00018-1,0,4380_7778208_2450222,4380_824 -4380_78146,295,4380_53246,Cork,86831-00019-1,0,4380_7778208_2450222,4380_824 -4380_78146,293,4380_53247,Cork,86829-00017-1,0,4380_7778208_2450222,4380_824 -4380_78146,296,4380_53248,Cork,86839-00021-1,0,4380_7778208_2450222,4380_825 -4380_77950,295,4380_5325,Emerald Park,4600-00019-1,0,4380_7778208_1050102,4380_58 -4380_78146,297,4380_53256,Dublin,86840-00008-1,1,4380_7778208_2450223,4380_826 -4380_78146,285,4380_53257,Dublin,86796-00009-1,1,4380_7778208_2450211,4380_827 -4380_78146,288,4380_53258,Dublin,86802-00011-1,1,4380_7778208_2450211,4380_827 -4380_78146,287,4380_53259,Dublin,86798-00012-1,1,4380_7778208_2450211,4380_827 -4380_77950,296,4380_5326,Ashbourne,4740-00021-1,0,4380_7778208_1050102,4380_59 -4380_78146,286,4380_53260,Dublin,86800-00010-1,1,4380_7778208_2450211,4380_827 -4380_78146,291,4380_53261,Dublin,86794-00013-1,1,4380_7778208_2450211,4380_828 -4380_78146,289,4380_53262,Dublin,86792-00014-1,1,4380_7778208_2450211,4380_827 -4380_78146,292,4380_53263,Dublin,86801-00016-1,1,4380_7778208_2450211,4380_827 -4380_78146,290,4380_53264,Dublin,86797-00015-1,1,4380_7778208_2450211,4380_827 -4380_78146,294,4380_53265,Dublin,86799-00018-1,1,4380_7778208_2450211,4380_827 -4380_78146,295,4380_53266,Dublin,86793-00019-1,1,4380_7778208_2450211,4380_827 -4380_78146,293,4380_53267,Dublin,86803-00017-1,1,4380_7778208_2450211,4380_827 -4380_78146,296,4380_53268,Dublin,86795-00021-1,1,4380_7778208_2450211,4380_828 -4380_78146,297,4380_53276,Dublin,86842-00008-1,1,4380_7778208_2450224,4380_826 -4380_78146,285,4380_53277,Dublin,86820-00009-1,1,4380_7778208_2450222,4380_827 -4380_78146,288,4380_53278,Dublin,86822-00011-1,1,4380_7778208_2450222,4380_827 -4380_78146,287,4380_53279,Dublin,86818-00012-1,1,4380_7778208_2450222,4380_827 -4380_78146,286,4380_53280,Dublin,86824-00010-1,1,4380_7778208_2450222,4380_827 -4380_78146,291,4380_53281,Dublin,86826-00013-1,1,4380_7778208_2450222,4380_828 -4380_78146,289,4380_53282,Dublin,86816-00014-1,1,4380_7778208_2450222,4380_827 -4380_78146,292,4380_53283,Dublin,86825-00016-1,1,4380_7778208_2450222,4380_827 -4380_78146,290,4380_53284,Dublin,86821-00015-1,1,4380_7778208_2450222,4380_827 -4380_78146,294,4380_53285,Dublin,86819-00018-1,1,4380_7778208_2450222,4380_827 -4380_78146,295,4380_53286,Dublin,86817-00019-1,1,4380_7778208_2450222,4380_827 -4380_78146,293,4380_53287,Dublin,86823-00017-1,1,4380_7778208_2450222,4380_827 -4380_78146,296,4380_53288,Dublin,86827-00021-1,1,4380_7778208_2450222,4380_828 -4380_78146,297,4380_53296,Dublin,86754-00008-1,1,4380_7778208_2450101,4380_826 -4380_78146,285,4380_53297,Dublin,86748-00009-1,1,4380_7778208_2450101,4380_827 -4380_78146,288,4380_53298,Dublin,86755-00011-1,1,4380_7778208_2450101,4380_827 -4380_78146,287,4380_53299,Dublin,86746-00012-1,1,4380_7778208_2450101,4380_827 -4380_77946,294,4380_533,Drogheda,50524-00018-1,1,4380_7778208_1000915,4380_6 -4380_78146,286,4380_53300,Dublin,86744-00010-1,1,4380_7778208_2450101,4380_827 -4380_78146,291,4380_53301,Dublin,86750-00013-1,1,4380_7778208_2450101,4380_828 -4380_78146,289,4380_53302,Dublin,86752-00014-1,1,4380_7778208_2450101,4380_827 -4380_78146,292,4380_53303,Dublin,86745-00016-1,1,4380_7778208_2450101,4380_827 -4380_78146,290,4380_53304,Dublin,86749-00015-1,1,4380_7778208_2450101,4380_827 -4380_78146,294,4380_53305,Dublin,86747-00018-1,1,4380_7778208_2450101,4380_827 -4380_78146,295,4380_53306,Dublin,86753-00019-1,1,4380_7778208_2450101,4380_827 -4380_78146,293,4380_53307,Dublin,86756-00017-1,1,4380_7778208_2450101,4380_827 -4380_78146,296,4380_53308,Dublin,86751-00021-1,1,4380_7778208_2450101,4380_828 -4380_78146,297,4380_53316,Dublin,86782-00008-1,1,4380_7778208_2450102,4380_826 -4380_78146,285,4380_53317,Dublin,86776-00009-1,1,4380_7778208_2450102,4380_827 -4380_78146,288,4380_53318,Dublin,86770-00011-1,1,4380_7778208_2450102,4380_827 -4380_78146,287,4380_53319,Dublin,86774-00012-1,1,4380_7778208_2450102,4380_827 -4380_78146,286,4380_53320,Dublin,86772-00010-1,1,4380_7778208_2450102,4380_827 -4380_78146,291,4380_53321,Dublin,86778-00013-1,1,4380_7778208_2450102,4380_828 -4380_78146,289,4380_53322,Dublin,86780-00014-1,1,4380_7778208_2450102,4380_827 -4380_78146,292,4380_53323,Dublin,86773-00016-1,1,4380_7778208_2450102,4380_827 -4380_78146,290,4380_53324,Dublin,86777-00015-1,1,4380_7778208_2450102,4380_827 -4380_78146,294,4380_53325,Dublin,86775-00018-1,1,4380_7778208_2450102,4380_827 -4380_78146,295,4380_53326,Dublin,86781-00019-1,1,4380_7778208_2450102,4380_827 -4380_78146,293,4380_53327,Dublin,86771-00017-1,1,4380_7778208_2450102,4380_827 -4380_78146,296,4380_53328,Dublin,86779-00021-1,1,4380_7778208_2450102,4380_828 -4380_78001,285,4380_53334,Glenville,87370-00009-1,0,4380_7778208_2480201,4380_831 -4380_78001,288,4380_53335,Glenville,87366-00011-1,0,4380_7778208_2480201,4380_831 -4380_78001,287,4380_53336,Glenville,87372-00012-1,0,4380_7778208_2480201,4380_831 -4380_78001,286,4380_53337,Glenville,87364-00010-1,0,4380_7778208_2480201,4380_831 -4380_78001,289,4380_53338,Glenville,87368-00014-1,0,4380_7778208_2480201,4380_831 -4380_78001,292,4380_53339,Glenville,87365-00016-1,0,4380_7778208_2480201,4380_831 -4380_77950,285,4380_5334,Drogheda,54183-00009-1,0,4380_7778208_1051101,4380_54 -4380_78001,290,4380_53340,Glenville,87371-00015-1,0,4380_7778208_2480201,4380_831 -4380_78001,294,4380_53341,Glenville,87373-00018-1,0,4380_7778208_2480201,4380_831 -4380_78001,295,4380_53342,Glenville,87369-00019-1,0,4380_7778208_2480201,4380_831 -4380_78001,293,4380_53343,Glenville,87367-00017-1,0,4380_7778208_2480201,4380_831 -4380_78001,291,4380_53345,Glenville,85385-00013-1,0,4380_7778208_2330204,4380_829 -4380_78001,296,4380_53346,Glenville,85386-00021-1,0,4380_7778208_2330204,4380_829 -4380_78001,286,4380_53348,Carrignavar,87384-00010-1,0,4380_7778208_2480201,4380_832 -4380_78001,292,4380_53349,Carrignavar,87385-00016-1,0,4380_7778208_2480201,4380_832 -4380_77950,286,4380_5335,Drogheda,54181-00010-1,0,4380_7778208_1051101,4380_54 -4380_78001,286,4380_53351,Glenville,87388-00010-1,0,4380_7778208_2480201,4380_833 -4380_78001,292,4380_53352,Glenville,87389-00016-1,0,4380_7778208_2480201,4380_833 -4380_78001,285,4380_53358,Glenville,86427-00009-1,0,4380_7778208_2400203,4380_829 -4380_78001,288,4380_53359,Glenville,86435-00011-1,0,4380_7778208_2400203,4380_829 -4380_77950,297,4380_5336,Drogheda,54278-00008-1,0,4380_7778208_1051102,4380_55 -4380_78001,287,4380_53360,Glenville,86431-00012-1,0,4380_7778208_2400203,4380_829 -4380_78001,286,4380_53361,Glenville,86429-00010-1,0,4380_7778208_2400203,4380_829 -4380_78001,289,4380_53362,Glenville,86433-00014-1,0,4380_7778208_2400203,4380_829 -4380_78001,292,4380_53363,Glenville,86430-00016-1,0,4380_7778208_2400203,4380_829 -4380_78001,290,4380_53364,Glenville,86428-00015-1,0,4380_7778208_2400203,4380_829 -4380_78001,294,4380_53365,Glenville,86432-00018-1,0,4380_7778208_2400203,4380_829 -4380_78001,295,4380_53366,Glenville,86434-00019-1,0,4380_7778208_2400203,4380_829 -4380_78001,293,4380_53367,Glenville,86436-00017-1,0,4380_7778208_2400203,4380_829 -4380_77950,288,4380_5337,Drogheda,54187-00011-1,0,4380_7778208_1051101,4380_54 -4380_78001,285,4380_53374,Glenville,86934-00009-1,0,4380_7778208_2450253,4380_830 -4380_78001,288,4380_53375,Glenville,86932-00011-1,0,4380_7778208_2450253,4380_830 -4380_78001,287,4380_53376,Glenville,86938-00012-1,0,4380_7778208_2450253,4380_830 -4380_78001,286,4380_53377,Glenville,86940-00010-1,0,4380_7778208_2450253,4380_830 -4380_78001,291,4380_53378,Glenville,85441-00013-1,0,4380_7778208_2330204,4380_834 -4380_78001,289,4380_53379,Glenville,86936-00014-1,0,4380_7778208_2450253,4380_830 -4380_77950,287,4380_5338,Drogheda,54179-00012-1,0,4380_7778208_1051101,4380_54 -4380_78001,292,4380_53380,Glenville,86941-00016-1,0,4380_7778208_2450253,4380_830 -4380_78001,290,4380_53381,Glenville,86935-00015-1,0,4380_7778208_2450253,4380_830 -4380_78001,294,4380_53382,Glenville,86939-00018-1,0,4380_7778208_2450253,4380_830 -4380_78001,295,4380_53383,Glenville,86937-00019-1,0,4380_7778208_2450253,4380_830 -4380_78001,293,4380_53384,Glenville,86933-00017-1,0,4380_7778208_2450253,4380_830 -4380_78001,296,4380_53385,Glenville,85442-00021-1,0,4380_7778208_2330204,4380_834 -4380_77950,289,4380_5339,Drogheda,54185-00014-1,0,4380_7778208_1051101,4380_54 -4380_78001,285,4380_53391,Cork,87380-00009-1,1,4380_7778208_2480201,4380_837 -4380_78001,288,4380_53392,Cork,87376-00011-1,1,4380_7778208_2480201,4380_837 -4380_78001,287,4380_53393,Cork,87382-00012-1,1,4380_7778208_2480201,4380_837 -4380_78001,286,4380_53394,Cork,87374-00010-1,1,4380_7778208_2480201,4380_837 -4380_78001,289,4380_53395,Cork,87378-00014-1,1,4380_7778208_2480201,4380_837 -4380_78001,292,4380_53396,Cork,87375-00016-1,1,4380_7778208_2480201,4380_837 -4380_78001,290,4380_53397,Cork,87381-00015-1,1,4380_7778208_2480201,4380_837 -4380_78001,294,4380_53398,Cork,87383-00018-1,1,4380_7778208_2480201,4380_837 -4380_78001,295,4380_53399,Cork,87379-00019-1,1,4380_7778208_2480201,4380_837 -4380_77946,295,4380_534,Drogheda,50518-00019-1,1,4380_7778208_1000915,4380_6 -4380_77950,290,4380_5340,Drogheda,54184-00015-1,0,4380_7778208_1051101,4380_54 -4380_78001,293,4380_53400,Cork,87377-00017-1,1,4380_7778208_2480201,4380_837 -4380_78001,291,4380_53402,Cork,85393-00013-1,1,4380_7778208_2330204,4380_835 -4380_78001,296,4380_53403,Cork,85394-00021-1,1,4380_7778208_2330204,4380_835 -4380_78001,286,4380_53405,Cork,87386-00010-1,1,4380_7778208_2480201,4380_838 -4380_78001,292,4380_53406,Cork,87387-00016-1,1,4380_7778208_2480201,4380_838 -4380_78001,286,4380_53408,Cork,87390-00010-1,1,4380_7778208_2480201,4380_835 -4380_78001,292,4380_53409,Cork,87391-00016-1,1,4380_7778208_2480201,4380_835 -4380_77950,291,4380_5341,Drogheda,54177-00013-1,0,4380_7778208_1051101,4380_57 -4380_78001,285,4380_53415,Cork,86441-00009-1,1,4380_7778208_2400203,4380_835 -4380_78001,288,4380_53416,Cork,86437-00011-1,1,4380_7778208_2400203,4380_835 -4380_78001,287,4380_53417,Cork,86445-00012-1,1,4380_7778208_2400203,4380_835 -4380_78001,286,4380_53418,Cork,86443-00010-1,1,4380_7778208_2400203,4380_835 -4380_78001,289,4380_53419,Cork,86439-00014-1,1,4380_7778208_2400203,4380_835 -4380_77950,292,4380_5342,Drogheda,54182-00016-1,0,4380_7778208_1051101,4380_54 -4380_78001,292,4380_53420,Cork,86444-00016-1,1,4380_7778208_2400203,4380_835 -4380_78001,290,4380_53421,Cork,86442-00015-1,1,4380_7778208_2400203,4380_835 -4380_78001,294,4380_53422,Cork,86446-00018-1,1,4380_7778208_2400203,4380_835 -4380_78001,295,4380_53423,Cork,86440-00019-1,1,4380_7778208_2400203,4380_835 -4380_78001,293,4380_53424,Cork,86438-00017-1,1,4380_7778208_2400203,4380_835 -4380_77950,293,4380_5343,Drogheda,54188-00017-1,0,4380_7778208_1051101,4380_54 -4380_78001,285,4380_53431,Cork,86950-00009-1,1,4380_7778208_2450253,4380_836 -4380_78001,288,4380_53432,Cork,86948-00011-1,1,4380_7778208_2450253,4380_836 -4380_78001,287,4380_53433,Cork,86942-00012-1,1,4380_7778208_2450253,4380_836 -4380_78001,286,4380_53434,Cork,86944-00010-1,1,4380_7778208_2450253,4380_836 -4380_78001,291,4380_53435,Cork,85445-00013-1,1,4380_7778208_2330204,4380_839 -4380_78001,289,4380_53436,Cork,86946-00014-1,1,4380_7778208_2450253,4380_836 -4380_78001,292,4380_53437,Cork,86945-00016-1,1,4380_7778208_2450253,4380_836 -4380_78001,290,4380_53438,Cork,86951-00015-1,1,4380_7778208_2450253,4380_836 -4380_78001,294,4380_53439,Cork,86943-00018-1,1,4380_7778208_2450253,4380_836 -4380_77950,294,4380_5344,Drogheda,54180-00018-1,0,4380_7778208_1051101,4380_54 -4380_78001,295,4380_53440,Cork,86947-00019-1,1,4380_7778208_2450253,4380_836 -4380_78001,293,4380_53441,Cork,86949-00017-1,1,4380_7778208_2450253,4380_836 -4380_78001,296,4380_53442,Cork,85446-00021-1,1,4380_7778208_2330204,4380_839 -4380_78002,285,4380_53449,Killarney,87412-00009-1,0,4380_7778208_2570201,4380_841 -4380_77950,295,4380_5345,Drogheda,54186-00019-1,0,4380_7778208_1051101,4380_54 -4380_78002,288,4380_53450,Killarney,87406-00011-1,0,4380_7778208_2570201,4380_841 -4380_78002,287,4380_53451,Killarney,87408-00012-1,0,4380_7778208_2570201,4380_841 -4380_78002,286,4380_53452,Killarney,87414-00010-1,0,4380_7778208_2570201,4380_841 -4380_78002,291,4380_53453,Killarney,87404-00013-1,0,4380_7778208_2570201,4380_841 -4380_78002,289,4380_53454,Killarney,87410-00014-1,0,4380_7778208_2570201,4380_841 -4380_78002,292,4380_53455,Killarney,87415-00016-1,0,4380_7778208_2570201,4380_841 -4380_78002,290,4380_53456,Killarney,87413-00015-1,0,4380_7778208_2570201,4380_841 -4380_78002,294,4380_53457,Killarney,87409-00018-1,0,4380_7778208_2570201,4380_841 -4380_78002,295,4380_53458,Killarney,87411-00019-1,0,4380_7778208_2570201,4380_841 -4380_78002,293,4380_53459,Killarney,87407-00017-1,0,4380_7778208_2570201,4380_841 -4380_77950,296,4380_5346,Drogheda,54178-00021-1,0,4380_7778208_1051101,4380_57 -4380_78002,296,4380_53460,Killarney,87405-00021-1,0,4380_7778208_2570201,4380_841 -4380_78002,297,4380_53462,Killarney,87416-00008-1,0,4380_7778208_2570201,4380_840 -4380_78002,297,4380_53470,Killarney,87430-00008-1,0,4380_7778208_2570201,4380_841 -4380_78002,285,4380_53471,Killarney,87437-00009-1,0,4380_7778208_2570201,4380_841 -4380_78002,288,4380_53472,Killarney,87441-00011-1,0,4380_7778208_2570201,4380_841 -4380_78002,287,4380_53473,Killarney,87439-00012-1,0,4380_7778208_2570201,4380_841 -4380_78002,286,4380_53474,Killarney,87433-00010-1,0,4380_7778208_2570201,4380_841 -4380_78002,291,4380_53475,Killarney,87435-00013-1,0,4380_7778208_2570201,4380_841 -4380_78002,289,4380_53476,Killarney,87431-00014-1,0,4380_7778208_2570201,4380_841 -4380_78002,292,4380_53477,Killarney,87434-00016-1,0,4380_7778208_2570201,4380_841 -4380_78002,290,4380_53478,Killarney,87438-00015-1,0,4380_7778208_2570201,4380_841 -4380_78002,294,4380_53479,Killarney,87440-00018-1,0,4380_7778208_2570201,4380_841 -4380_78002,295,4380_53480,Killarney,87432-00019-1,0,4380_7778208_2570201,4380_841 -4380_78002,293,4380_53481,Killarney,87442-00017-1,0,4380_7778208_2570201,4380_841 -4380_78002,296,4380_53482,Killarney,87436-00021-1,0,4380_7778208_2570201,4380_841 -4380_78002,297,4380_53490,Killarney,87444-00008-1,0,4380_7778208_2570201,4380_841 -4380_78002,285,4380_53491,Killarney,88167-00009-1,0,4380_7778208_2700202,4380_841 -4380_78002,288,4380_53492,Killarney,88161-00011-1,0,4380_7778208_2700202,4380_841 -4380_78002,287,4380_53493,Killarney,88159-00012-1,0,4380_7778208_2700202,4380_841 -4380_78002,286,4380_53494,Killarney,88157-00010-1,0,4380_7778208_2700202,4380_841 -4380_78002,291,4380_53495,Killarney,88163-00013-1,0,4380_7778208_2700202,4380_841 -4380_78002,289,4380_53496,Killarney,88165-00014-1,0,4380_7778208_2700202,4380_841 -4380_78002,292,4380_53497,Killarney,88158-00016-1,0,4380_7778208_2700202,4380_841 -4380_78002,290,4380_53498,Killarney,88168-00015-1,0,4380_7778208_2700202,4380_841 -4380_78002,294,4380_53499,Killarney,88160-00018-1,0,4380_7778208_2700202,4380_841 -4380_77946,296,4380_535,Drogheda,50284-00021-1,1,4380_7778208_1000912,4380_9 -4380_78002,295,4380_53500,Killarney,88166-00019-1,0,4380_7778208_2700202,4380_841 -4380_78002,293,4380_53501,Killarney,88162-00017-1,0,4380_7778208_2700202,4380_841 -4380_78002,296,4380_53502,Killarney,88164-00021-1,0,4380_7778208_2700202,4380_841 -4380_78002,297,4380_53510,Killarney via Rathmore,87458-00008-1,0,4380_7778208_2570201,4380_842 -4380_78002,285,4380_53511,Killarney,87461-00009-1,0,4380_7778208_2570201,4380_841 -4380_78002,288,4380_53512,Killarney,87459-00011-1,0,4380_7778208_2570201,4380_841 -4380_78002,287,4380_53513,Killarney,87469-00012-1,0,4380_7778208_2570201,4380_841 -4380_78002,286,4380_53514,Killarney,87463-00010-1,0,4380_7778208_2570201,4380_841 -4380_78002,291,4380_53515,Killarney,87467-00013-1,0,4380_7778208_2570201,4380_841 -4380_78002,289,4380_53516,Killarney,87465-00014-1,0,4380_7778208_2570201,4380_841 -4380_78002,292,4380_53517,Killarney,87464-00016-1,0,4380_7778208_2570201,4380_841 -4380_78002,290,4380_53518,Killarney,87462-00015-1,0,4380_7778208_2570201,4380_841 -4380_78002,294,4380_53519,Killarney,87470-00018-1,0,4380_7778208_2570201,4380_841 -4380_78002,295,4380_53520,Killarney,87466-00019-1,0,4380_7778208_2570201,4380_841 -4380_78002,293,4380_53521,Killarney,87460-00017-1,0,4380_7778208_2570201,4380_841 -4380_78002,296,4380_53522,Killarney,87468-00021-1,0,4380_7778208_2570201,4380_841 -4380_77950,285,4380_5353,Emerald Park,4476-00009-1,0,4380_7778208_1050101,4380_58 -4380_78002,297,4380_53530,Killarney,87488-00008-1,0,4380_7778208_2570201,4380_841 -4380_78002,285,4380_53531,Killarney,87495-00009-1,0,4380_7778208_2570201,4380_841 -4380_78002,288,4380_53532,Killarney,87491-00011-1,0,4380_7778208_2570201,4380_841 -4380_78002,287,4380_53533,Killarney,87484-00012-1,0,4380_7778208_2570201,4380_841 -4380_78002,286,4380_53534,Killarney,87486-00010-1,0,4380_7778208_2570201,4380_841 -4380_78002,291,4380_53535,Killarney,87489-00013-1,0,4380_7778208_2570201,4380_841 -4380_78002,289,4380_53536,Killarney,87493-00014-1,0,4380_7778208_2570201,4380_841 -4380_78002,292,4380_53537,Killarney,87487-00016-1,0,4380_7778208_2570201,4380_841 -4380_78002,290,4380_53538,Killarney,87496-00015-1,0,4380_7778208_2570201,4380_841 -4380_78002,294,4380_53539,Killarney,87485-00018-1,0,4380_7778208_2570201,4380_841 -4380_77950,286,4380_5354,Emerald Park,4490-00010-1,0,4380_7778208_1050101,4380_58 -4380_78002,295,4380_53540,Killarney,87494-00019-1,0,4380_7778208_2570201,4380_841 -4380_78002,293,4380_53541,Killarney,87492-00017-1,0,4380_7778208_2570201,4380_841 -4380_78002,296,4380_53542,Killarney,87490-00021-1,0,4380_7778208_2570201,4380_841 -4380_78002,285,4380_53549,Killarney,87510-00009-1,0,4380_7778208_2570201,4380_840 -4380_77950,288,4380_5355,Emerald Park,4532-00011-1,0,4380_7778208_1050101,4380_58 -4380_78002,288,4380_53550,Killarney,87514-00011-1,0,4380_7778208_2570201,4380_840 -4380_78002,287,4380_53551,Killarney,87520-00012-1,0,4380_7778208_2570201,4380_840 -4380_78002,286,4380_53552,Killarney,87512-00010-1,0,4380_7778208_2570201,4380_840 -4380_78002,291,4380_53553,Killarney,87516-00013-1,0,4380_7778208_2570201,4380_840 -4380_78002,289,4380_53554,Killarney,87518-00014-1,0,4380_7778208_2570201,4380_840 -4380_78002,292,4380_53555,Killarney,87513-00016-1,0,4380_7778208_2570201,4380_840 -4380_78002,290,4380_53556,Killarney,87511-00015-1,0,4380_7778208_2570201,4380_840 -4380_78002,294,4380_53557,Killarney,87521-00018-1,0,4380_7778208_2570201,4380_840 -4380_78002,295,4380_53558,Killarney,87519-00019-1,0,4380_7778208_2570201,4380_840 -4380_78002,293,4380_53559,Killarney,87515-00017-1,0,4380_7778208_2570201,4380_840 -4380_77950,287,4380_5356,Emerald Park,4560-00012-1,0,4380_7778208_1050101,4380_58 -4380_78002,296,4380_53560,Killarney,87517-00021-1,0,4380_7778208_2570201,4380_840 -4380_78002,285,4380_53567,Macroom,87392-00009-1,1,4380_7778208_2570201,4380_845 -4380_78002,288,4380_53568,Macroom,87394-00011-1,1,4380_7778208_2570201,4380_845 -4380_78002,287,4380_53569,Macroom,87396-00012-1,1,4380_7778208_2570201,4380_845 -4380_77950,289,4380_5357,Ashbourne,53976-00014-1,0,4380_7778208_1050101,4380_52 -4380_78002,286,4380_53570,Macroom,87398-00010-1,1,4380_7778208_2570201,4380_845 -4380_78002,291,4380_53571,Macroom,87400-00013-1,1,4380_7778208_2570201,4380_845 -4380_78002,289,4380_53572,Macroom,87402-00014-1,1,4380_7778208_2570201,4380_845 -4380_78002,292,4380_53573,Macroom,87399-00016-1,1,4380_7778208_2570201,4380_845 -4380_78002,290,4380_53574,Macroom,87393-00015-1,1,4380_7778208_2570201,4380_845 -4380_78002,294,4380_53575,Macroom,87397-00018-1,1,4380_7778208_2570201,4380_845 -4380_78002,295,4380_53576,Macroom,87403-00019-1,1,4380_7778208_2570201,4380_845 -4380_78002,293,4380_53577,Macroom,87395-00017-1,1,4380_7778208_2570201,4380_845 -4380_78002,296,4380_53578,Macroom,87401-00021-1,1,4380_7778208_2570201,4380_845 -4380_77950,290,4380_5358,Ashbourne,53972-00015-1,0,4380_7778208_1050101,4380_52 -4380_78002,297,4380_53586,Macroom,87429-00008-1,1,4380_7778208_2570201,4380_843 -4380_78002,285,4380_53587,Macroom,87425-00009-1,1,4380_7778208_2570201,4380_843 -4380_78002,288,4380_53588,Macroom,87417-00011-1,1,4380_7778208_2570201,4380_843 -4380_78002,287,4380_53589,Macroom,87419-00012-1,1,4380_7778208_2570201,4380_843 -4380_77950,291,4380_5359,Emerald Park,53974-00013-1,0,4380_7778208_1050101,4380_56 -4380_78002,286,4380_53590,Macroom,87423-00010-1,1,4380_7778208_2570201,4380_843 -4380_78002,291,4380_53591,Macroom,87427-00013-1,1,4380_7778208_2570201,4380_843 -4380_78002,289,4380_53592,Macroom,87421-00014-1,1,4380_7778208_2570201,4380_843 -4380_78002,292,4380_53593,Macroom,87424-00016-1,1,4380_7778208_2570201,4380_843 -4380_78002,290,4380_53594,Macroom,87426-00015-1,1,4380_7778208_2570201,4380_843 -4380_78002,294,4380_53595,Macroom,87420-00018-1,1,4380_7778208_2570201,4380_843 -4380_78002,295,4380_53596,Macroom,87422-00019-1,1,4380_7778208_2570201,4380_843 -4380_78002,293,4380_53597,Macroom,87418-00017-1,1,4380_7778208_2570201,4380_843 -4380_78002,296,4380_53598,Macroom,87428-00021-1,1,4380_7778208_2570201,4380_843 -4380_77950,292,4380_5360,Ashbourne,53975-00016-1,0,4380_7778208_1050101,4380_52 -4380_78002,285,4380_53605,Macroom,88155-00009-1,1,4380_7778208_2700202,4380_843 -4380_78002,288,4380_53606,Macroom,88149-00011-1,1,4380_7778208_2700202,4380_843 -4380_78002,287,4380_53607,Macroom,88147-00012-1,1,4380_7778208_2700202,4380_843 -4380_78002,286,4380_53608,Macroom,88151-00010-1,1,4380_7778208_2700202,4380_843 -4380_78002,291,4380_53609,Macroom,88153-00013-1,1,4380_7778208_2700202,4380_843 -4380_77950,293,4380_5361,Ashbourne,53973-00017-1,0,4380_7778208_1050101,4380_52 -4380_78002,289,4380_53610,Macroom,88145-00014-1,1,4380_7778208_2700202,4380_843 -4380_78002,292,4380_53611,Macroom,88152-00016-1,1,4380_7778208_2700202,4380_843 -4380_78002,290,4380_53612,Macroom,88156-00015-1,1,4380_7778208_2700202,4380_843 -4380_78002,294,4380_53613,Macroom,88148-00018-1,1,4380_7778208_2700202,4380_843 -4380_78002,295,4380_53614,Macroom,88146-00019-1,1,4380_7778208_2700202,4380_843 -4380_78002,293,4380_53615,Macroom,88150-00017-1,1,4380_7778208_2700202,4380_843 -4380_78002,296,4380_53616,Macroom,88154-00021-1,1,4380_7778208_2700202,4380_843 -4380_78002,297,4380_53618,Macroom,87443-00008-1,1,4380_7778208_2570201,4380_843 -4380_77950,294,4380_5362,Ashbourne,53971-00018-1,0,4380_7778208_1050101,4380_52 -4380_78002,297,4380_53626,Macroom,87453-00008-1,1,4380_7778208_2570201,4380_843 -4380_78002,285,4380_53627,Macroom,87449-00009-1,1,4380_7778208_2570201,4380_843 -4380_78002,288,4380_53628,Macroom,87454-00011-1,1,4380_7778208_2570201,4380_843 -4380_78002,287,4380_53629,Macroom,87445-00012-1,1,4380_7778208_2570201,4380_843 -4380_77950,295,4380_5363,Emerald Park,4448-00019-1,0,4380_7778208_1050101,4380_58 -4380_78002,286,4380_53630,Macroom,87447-00010-1,1,4380_7778208_2570201,4380_843 -4380_78002,291,4380_53631,Macroom,87456-00013-1,1,4380_7778208_2570201,4380_843 -4380_78002,289,4380_53632,Macroom,87451-00014-1,1,4380_7778208_2570201,4380_843 -4380_78002,292,4380_53633,Macroom,87448-00016-1,1,4380_7778208_2570201,4380_843 -4380_78002,290,4380_53634,Macroom,87450-00015-1,1,4380_7778208_2570201,4380_843 -4380_78002,294,4380_53635,Macroom,87446-00018-1,1,4380_7778208_2570201,4380_843 -4380_78002,295,4380_53636,Macroom,87452-00019-1,1,4380_7778208_2570201,4380_843 -4380_78002,293,4380_53637,Macroom,87455-00017-1,1,4380_7778208_2570201,4380_843 -4380_78002,296,4380_53638,Macroom,87457-00021-1,1,4380_7778208_2570201,4380_843 -4380_77950,296,4380_5364,Ashbourne,4574-00021-1,0,4380_7778208_1050101,4380_59 -4380_78002,285,4380_53645,Macroom,87471-00009-1,1,4380_7778208_2570201,4380_846 -4380_78002,288,4380_53646,Macroom,87481-00011-1,1,4380_7778208_2570201,4380_846 -4380_78002,287,4380_53647,Macroom,87477-00012-1,1,4380_7778208_2570201,4380_846 -4380_78002,286,4380_53648,Macroom,87473-00010-1,1,4380_7778208_2570201,4380_846 -4380_78002,291,4380_53649,Macroom,87475-00013-1,1,4380_7778208_2570201,4380_846 -4380_78002,289,4380_53650,Macroom,87479-00014-1,1,4380_7778208_2570201,4380_846 -4380_78002,292,4380_53651,Macroom,87474-00016-1,1,4380_7778208_2570201,4380_846 -4380_78002,290,4380_53652,Macroom,87472-00015-1,1,4380_7778208_2570201,4380_846 -4380_78002,294,4380_53653,Macroom,87478-00018-1,1,4380_7778208_2570201,4380_846 -4380_78002,295,4380_53654,Macroom,87480-00019-1,1,4380_7778208_2570201,4380_846 -4380_78002,293,4380_53655,Macroom,87482-00017-1,1,4380_7778208_2570201,4380_846 -4380_78002,296,4380_53656,Macroom,87476-00021-1,1,4380_7778208_2570201,4380_846 -4380_78002,297,4380_53658,Macroom,87483-00008-1,1,4380_7778208_2570201,4380_843 -4380_78002,297,4380_53666,Millstreet,87499-00008-1,1,4380_7778208_2570201,4380_844 -4380_78002,285,4380_53667,Millstreet,87504-00009-1,1,4380_7778208_2570201,4380_844 -4380_78002,288,4380_53668,Millstreet,87508-00011-1,1,4380_7778208_2570201,4380_844 -4380_78002,287,4380_53669,Millstreet,87500-00012-1,1,4380_7778208_2570201,4380_844 -4380_78002,286,4380_53670,Millstreet,87506-00010-1,1,4380_7778208_2570201,4380_844 -4380_78002,291,4380_53671,Millstreet,87497-00013-1,1,4380_7778208_2570201,4380_844 -4380_78002,289,4380_53672,Millstreet,87502-00014-1,1,4380_7778208_2570201,4380_844 -4380_78002,292,4380_53673,Millstreet,87507-00016-1,1,4380_7778208_2570201,4380_844 -4380_78002,290,4380_53674,Millstreet,87505-00015-1,1,4380_7778208_2570201,4380_844 -4380_78002,294,4380_53675,Millstreet,87501-00018-1,1,4380_7778208_2570201,4380_844 -4380_78002,295,4380_53676,Millstreet,87503-00019-1,1,4380_7778208_2570201,4380_844 -4380_78002,293,4380_53677,Millstreet,87509-00017-1,1,4380_7778208_2570201,4380_844 -4380_78002,296,4380_53678,Millstreet,87498-00021-1,1,4380_7778208_2570201,4380_844 -4380_78003,285,4380_53680,Rylane Lower,85325-00009-1,0,4380_7778208_2330203,4380_847 -4380_78003,290,4380_53681,Rylane Lower,85326-00015-1,0,4380_7778208_2330203,4380_847 -4380_78003,285,4380_53683,Rylane Lower,85337-00009-1,0,4380_7778208_2330203,4380_847 -4380_78003,290,4380_53684,Rylane Lower,85338-00015-1,0,4380_7778208_2330203,4380_847 -4380_78003,285,4380_53686,Macroom,85333-00009-1,1,4380_7778208_2330203,4380_848 -4380_78003,290,4380_53687,Macroom,85334-00015-1,1,4380_7778208_2330203,4380_848 -4380_78003,285,4380_53689,Macroom,85339-00009-1,1,4380_7778208_2330203,4380_848 -4380_78003,290,4380_53690,Macroom,85340-00015-1,1,4380_7778208_2330203,4380_848 -4380_78004,288,4380_53692,Renanirree,85327-00011-1,0,4380_7778208_2330203,4380_849 -4380_78004,293,4380_53693,Renanirree,85328-00017-1,0,4380_7778208_2330203,4380_849 -4380_78004,288,4380_53695,Renanirree,85335-00011-1,0,4380_7778208_2330203,4380_850 -4380_78004,293,4380_53696,Renanirree,85336-00017-1,0,4380_7778208_2330203,4380_850 -4380_78004,288,4380_53698,Macroom,85331-00011-1,1,4380_7778208_2330203,4380_851 -4380_78004,293,4380_53699,Macroom,85332-00017-1,1,4380_7778208_2330203,4380_851 -4380_78113,297,4380_537,Dundalk,50042-00008-1,0,4380_7778208_1000907,4380_10 -4380_78004,288,4380_53701,Macroom,85341-00011-1,1,4380_7778208_2330203,4380_852 -4380_78004,293,4380_53702,Macroom,85342-00017-1,1,4380_7778208_2330203,4380_852 -4380_78005,285,4380_53708,Youghal,86079-00009-1,0,4380_7778208_2370208,4380_855 -4380_78005,288,4380_53709,Youghal,86075-00011-1,0,4380_7778208_2370208,4380_855 -4380_78005,287,4380_53710,Youghal,86077-00012-1,0,4380_7778208_2370208,4380_855 -4380_78005,286,4380_53711,Youghal,86073-00010-1,0,4380_7778208_2370208,4380_855 -4380_78005,289,4380_53712,Youghal,86071-00014-1,0,4380_7778208_2370208,4380_855 -4380_78005,292,4380_53713,Youghal,86074-00016-1,0,4380_7778208_2370208,4380_855 -4380_78005,290,4380_53714,Youghal,86080-00015-1,0,4380_7778208_2370208,4380_855 -4380_78005,294,4380_53715,Youghal,86078-00018-1,0,4380_7778208_2370208,4380_855 -4380_78005,295,4380_53716,Youghal,86072-00019-1,0,4380_7778208_2370208,4380_855 -4380_78005,293,4380_53717,Youghal,86076-00017-1,0,4380_7778208_2370208,4380_855 -4380_77950,285,4380_5372,Drogheda,54281-00009-1,0,4380_7778208_1051102,4380_54 -4380_78005,285,4380_53723,Midleton,87620-00009-1,0,4380_7778208_2600202,4380_859 -4380_78005,288,4380_53724,Midleton,87624-00011-1,0,4380_7778208_2600202,4380_859 -4380_78005,287,4380_53725,Midleton,87626-00012-1,0,4380_7778208_2600202,4380_859 -4380_78005,286,4380_53726,Midleton,87618-00010-1,0,4380_7778208_2600202,4380_859 -4380_78005,289,4380_53727,Midleton,87622-00014-1,0,4380_7778208_2600202,4380_859 -4380_78005,292,4380_53728,Midleton,87619-00016-1,0,4380_7778208_2600202,4380_859 -4380_78005,290,4380_53729,Midleton,87621-00015-1,0,4380_7778208_2600202,4380_859 -4380_77950,286,4380_5373,Drogheda,54287-00010-1,0,4380_7778208_1051102,4380_54 -4380_78005,294,4380_53730,Midleton,87627-00018-1,0,4380_7778208_2600202,4380_859 -4380_78005,295,4380_53731,Midleton,87623-00019-1,0,4380_7778208_2600202,4380_859 -4380_78005,293,4380_53732,Midleton,87625-00017-1,0,4380_7778208_2600202,4380_859 -4380_78005,291,4380_53734,Ardmore,87840-00013-1,0,4380_7778208_2600206,4380_854 -4380_78005,296,4380_53735,Ardmore,87841-00021-1,0,4380_7778208_2600206,4380_854 -4380_77950,297,4380_5374,Drogheda,54376-00008-1,0,4380_7778208_1051103,4380_55 -4380_78005,285,4380_53741,Ardmore,87536-00009-1,0,4380_7778208_2600201,4380_856 -4380_78005,288,4380_53742,Ardmore,87540-00011-1,0,4380_7778208_2600201,4380_856 -4380_78005,287,4380_53743,Ardmore,87538-00012-1,0,4380_7778208_2600201,4380_856 -4380_78005,286,4380_53744,Ardmore,87532-00010-1,0,4380_7778208_2600201,4380_856 -4380_78005,289,4380_53745,Ardmore,87534-00014-1,0,4380_7778208_2600201,4380_856 -4380_78005,292,4380_53746,Ardmore,87533-00016-1,0,4380_7778208_2600201,4380_856 -4380_78005,290,4380_53747,Ardmore,87537-00015-1,0,4380_7778208_2600201,4380_856 -4380_78005,294,4380_53748,Ardmore,87539-00018-1,0,4380_7778208_2600201,4380_856 -4380_78005,295,4380_53749,Ardmore,87535-00019-1,0,4380_7778208_2600201,4380_856 -4380_77950,288,4380_5375,Drogheda,54279-00011-1,0,4380_7778208_1051102,4380_54 -4380_78005,293,4380_53750,Ardmore,87541-00017-1,0,4380_7778208_2600201,4380_856 -4380_78005,297,4380_53757,Youghal,87552-00008-1,0,4380_7778208_2600201,4380_853 -4380_78005,285,4380_53758,Youghal,87768-00009-1,0,4380_7778208_2600203,4380_860 -4380_78005,288,4380_53759,Youghal,87764-00011-1,0,4380_7778208_2600203,4380_860 -4380_77950,287,4380_5376,Drogheda,54285-00012-1,0,4380_7778208_1051102,4380_54 -4380_78005,287,4380_53760,Youghal,87762-00012-1,0,4380_7778208_2600203,4380_860 -4380_78005,286,4380_53761,Youghal,87770-00010-1,0,4380_7778208_2600203,4380_860 -4380_78005,289,4380_53762,Youghal,87766-00014-1,0,4380_7778208_2600203,4380_860 -4380_78005,292,4380_53763,Youghal,87771-00016-1,0,4380_7778208_2600203,4380_860 -4380_78005,290,4380_53764,Youghal,87769-00015-1,0,4380_7778208_2600203,4380_860 -4380_78005,294,4380_53765,Youghal,87763-00018-1,0,4380_7778208_2600203,4380_860 -4380_78005,295,4380_53766,Youghal,87767-00019-1,0,4380_7778208_2600203,4380_860 -4380_78005,293,4380_53767,Youghal,87765-00017-1,0,4380_7778208_2600203,4380_860 -4380_77950,289,4380_5377,Drogheda,54283-00014-1,0,4380_7778208_1051102,4380_54 -4380_78005,285,4380_53774,Ardmore,87564-00009-1,0,4380_7778208_2600201,4380_854 -4380_78005,288,4380_53775,Ardmore,87562-00011-1,0,4380_7778208_2600201,4380_854 -4380_78005,287,4380_53776,Ardmore,87560-00012-1,0,4380_7778208_2600201,4380_854 -4380_78005,286,4380_53777,Ardmore,87558-00010-1,0,4380_7778208_2600201,4380_854 -4380_78005,291,4380_53778,Youghal,87566-00013-1,0,4380_7778208_2600201,4380_853 -4380_78005,289,4380_53779,Ardmore,87556-00014-1,0,4380_7778208_2600201,4380_854 -4380_77950,290,4380_5378,Drogheda,54282-00015-1,0,4380_7778208_1051102,4380_54 -4380_78005,292,4380_53780,Ardmore,87559-00016-1,0,4380_7778208_2600201,4380_854 -4380_78005,290,4380_53781,Ardmore,87565-00015-1,0,4380_7778208_2600201,4380_854 -4380_78005,294,4380_53782,Ardmore,87561-00018-1,0,4380_7778208_2600201,4380_854 -4380_78005,295,4380_53783,Ardmore,87557-00019-1,0,4380_7778208_2600201,4380_854 -4380_78005,293,4380_53784,Ardmore,87563-00017-1,0,4380_7778208_2600201,4380_854 -4380_78005,296,4380_53785,Youghal,87567-00021-1,0,4380_7778208_2600201,4380_853 -4380_78005,297,4380_53787,Youghal,87568-00008-1,0,4380_7778208_2600201,4380_853 -4380_78005,291,4380_53789,Youghal,87834-00013-1,0,4380_7778208_2600205,4380_860 -4380_77950,291,4380_5379,Drogheda,54289-00013-1,0,4380_7778208_1051102,4380_57 -4380_78005,296,4380_53790,Youghal,87835-00021-1,0,4380_7778208_2600205,4380_860 -4380_78005,285,4380_53797,Ardmore,87589-00009-1,0,4380_7778208_2600201,4380_857 -4380_78005,288,4380_53798,Ardmore,87587-00011-1,0,4380_7778208_2600201,4380_857 -4380_78005,287,4380_53799,Ardmore,87583-00012-1,0,4380_7778208_2600201,4380_857 -4380_77950,292,4380_5380,Drogheda,54288-00016-1,0,4380_7778208_1051102,4380_54 -4380_78005,286,4380_53800,Ardmore,87585-00010-1,0,4380_7778208_2600201,4380_857 -4380_78005,291,4380_53801,Ardmore,87581-00013-1,0,4380_7778208_2600201,4380_861 -4380_78005,289,4380_53802,Ardmore,87591-00014-1,0,4380_7778208_2600201,4380_857 -4380_78005,292,4380_53803,Ardmore,87586-00016-1,0,4380_7778208_2600201,4380_857 -4380_78005,290,4380_53804,Ardmore,87590-00015-1,0,4380_7778208_2600201,4380_857 -4380_78005,294,4380_53805,Ardmore,87584-00018-1,0,4380_7778208_2600201,4380_857 -4380_78005,295,4380_53806,Ardmore,87592-00019-1,0,4380_7778208_2600201,4380_857 -4380_78005,293,4380_53807,Ardmore,87588-00017-1,0,4380_7778208_2600201,4380_857 -4380_78005,296,4380_53808,Ardmore,87582-00021-1,0,4380_7778208_2600201,4380_861 -4380_77950,293,4380_5381,Drogheda,54280-00017-1,0,4380_7778208_1051102,4380_54 -4380_78005,297,4380_53810,Ardmore,87699-00008-1,0,4380_7778208_2600202,4380_854 -4380_78005,297,4380_53818,Youghal,87741-00008-1,0,4380_7778208_2600202,4380_853 -4380_78005,285,4380_53819,Youghal,87608-00009-1,0,4380_7778208_2600201,4380_858 -4380_77950,294,4380_5382,Drogheda,54286-00018-1,0,4380_7778208_1051102,4380_54 -4380_78005,288,4380_53820,Youghal,87614-00011-1,0,4380_7778208_2600201,4380_858 -4380_78005,287,4380_53821,Youghal,87612-00012-1,0,4380_7778208_2600201,4380_858 -4380_78005,286,4380_53822,Youghal,87610-00010-1,0,4380_7778208_2600201,4380_858 -4380_78005,291,4380_53823,Youghal,87838-00013-1,0,4380_7778208_2600205,4380_862 -4380_78005,289,4380_53824,Youghal,87616-00014-1,0,4380_7778208_2600201,4380_858 -4380_78005,292,4380_53825,Youghal,87611-00016-1,0,4380_7778208_2600201,4380_858 -4380_78005,290,4380_53826,Youghal,87609-00015-1,0,4380_7778208_2600201,4380_858 -4380_78005,294,4380_53827,Youghal,87613-00018-1,0,4380_7778208_2600201,4380_858 -4380_78005,295,4380_53828,Youghal,87617-00019-1,0,4380_7778208_2600201,4380_858 -4380_78005,293,4380_53829,Youghal,87615-00017-1,0,4380_7778208_2600201,4380_858 -4380_77950,295,4380_5383,Drogheda,54284-00019-1,0,4380_7778208_1051102,4380_54 -4380_78005,296,4380_53830,Youghal,87839-00021-1,0,4380_7778208_2600205,4380_862 -4380_78005,285,4380_53836,MTU,87822-00009-1,1,4380_7778208_2600204,4380_873 -4380_78005,288,4380_53837,MTU,87826-00011-1,1,4380_7778208_2600204,4380_873 -4380_78005,287,4380_53838,MTU,87828-00012-1,1,4380_7778208_2600204,4380_873 -4380_78005,286,4380_53839,MTU,87824-00010-1,1,4380_7778208_2600204,4380_873 -4380_77950,296,4380_5384,Drogheda,54290-00021-1,0,4380_7778208_1051102,4380_57 -4380_78005,289,4380_53840,MTU,87830-00014-1,1,4380_7778208_2600204,4380_873 -4380_78005,292,4380_53841,MTU,87825-00016-1,1,4380_7778208_2600204,4380_873 -4380_78005,290,4380_53842,MTU,87823-00015-1,1,4380_7778208_2600204,4380_873 -4380_78005,294,4380_53843,MTU,87829-00018-1,1,4380_7778208_2600204,4380_873 -4380_78005,295,4380_53844,MTU,87831-00019-1,1,4380_7778208_2600204,4380_873 -4380_78005,293,4380_53845,MTU,87827-00017-1,1,4380_7778208_2600204,4380_873 -4380_78005,285,4380_53851,Cork,87750-00009-1,1,4380_7778208_2600203,4380_870 -4380_78005,288,4380_53852,Cork,87746-00011-1,1,4380_7778208_2600203,4380_870 -4380_78005,287,4380_53853,Cork,87744-00012-1,1,4380_7778208_2600203,4380_870 -4380_78005,286,4380_53854,Cork,87748-00010-1,1,4380_7778208_2600203,4380_870 -4380_78005,289,4380_53855,Cork,87742-00014-1,1,4380_7778208_2600203,4380_870 -4380_78005,292,4380_53856,Cork,87749-00016-1,1,4380_7778208_2600203,4380_870 -4380_78005,290,4380_53857,Cork,87751-00015-1,1,4380_7778208_2600203,4380_870 -4380_78005,294,4380_53858,Cork,87745-00018-1,1,4380_7778208_2600203,4380_870 -4380_78005,295,4380_53859,Cork,87743-00019-1,1,4380_7778208_2600203,4380_870 -4380_78005,293,4380_53860,Cork,87747-00017-1,1,4380_7778208_2600203,4380_870 -4380_78005,285,4380_53866,Midleton,87524-00009-1,1,4380_7778208_2600201,4380_867 -4380_78005,288,4380_53867,Midleton,87526-00011-1,1,4380_7778208_2600201,4380_867 -4380_78005,287,4380_53868,Midleton,87528-00012-1,1,4380_7778208_2600201,4380_867 -4380_78005,286,4380_53869,Midleton,87530-00010-1,1,4380_7778208_2600201,4380_867 -4380_78005,289,4380_53870,Midleton,87522-00014-1,1,4380_7778208_2600201,4380_867 -4380_78005,292,4380_53871,Midleton,87531-00016-1,1,4380_7778208_2600201,4380_867 -4380_78005,290,4380_53872,Midleton,87525-00015-1,1,4380_7778208_2600201,4380_867 -4380_78005,294,4380_53873,Midleton,87529-00018-1,1,4380_7778208_2600201,4380_867 -4380_78005,295,4380_53874,Midleton,87523-00019-1,1,4380_7778208_2600201,4380_867 -4380_78005,293,4380_53875,Midleton,87527-00017-1,1,4380_7778208_2600201,4380_867 -4380_78005,291,4380_53877,Cork,87832-00013-1,1,4380_7778208_2600205,4380_863 -4380_78005,296,4380_53878,Cork,87833-00021-1,1,4380_7778208_2600205,4380_863 -4380_78005,285,4380_53884,Cork,86087-00009-1,1,4380_7778208_2370208,4380_866 -4380_78005,288,4380_53885,Cork,86081-00011-1,1,4380_7778208_2370208,4380_866 -4380_78005,287,4380_53886,Cork,86083-00012-1,1,4380_7778208_2370208,4380_866 -4380_78005,286,4380_53887,Cork,86089-00010-1,1,4380_7778208_2370208,4380_866 -4380_78005,289,4380_53888,Cork,86085-00014-1,1,4380_7778208_2370208,4380_866 -4380_78005,292,4380_53889,Cork,86090-00016-1,1,4380_7778208_2370208,4380_866 -4380_78005,290,4380_53890,Cork,86088-00015-1,1,4380_7778208_2370208,4380_866 -4380_78005,294,4380_53891,Cork,86084-00018-1,1,4380_7778208_2370208,4380_866 -4380_78005,295,4380_53892,Cork,86086-00019-1,1,4380_7778208_2370208,4380_866 -4380_78005,293,4380_53893,Cork,86082-00017-1,1,4380_7778208_2370208,4380_866 -4380_78005,285,4380_53899,MTU,87752-00009-1,1,4380_7778208_2600203,4380_871 -4380_78005,288,4380_53900,MTU,87758-00011-1,1,4380_7778208_2600203,4380_871 -4380_78005,287,4380_53901,MTU,87756-00012-1,1,4380_7778208_2600203,4380_871 -4380_78005,286,4380_53902,MTU,87754-00010-1,1,4380_7778208_2600203,4380_871 -4380_78005,289,4380_53903,MTU,87760-00014-1,1,4380_7778208_2600203,4380_871 -4380_78005,292,4380_53904,MTU,87755-00016-1,1,4380_7778208_2600203,4380_871 -4380_78005,290,4380_53905,MTU,87753-00015-1,1,4380_7778208_2600203,4380_871 -4380_78005,294,4380_53906,MTU,87757-00018-1,1,4380_7778208_2600203,4380_871 -4380_78005,295,4380_53907,MTU,87761-00019-1,1,4380_7778208_2600203,4380_871 -4380_78005,293,4380_53908,MTU,87759-00017-1,1,4380_7778208_2600203,4380_871 -4380_77950,285,4380_5391,Emerald Park,4630-00009-1,0,4380_7778208_1050102,4380_58 -4380_78005,285,4380_53914,Cork,87634-00009-1,1,4380_7778208_2600202,4380_869 -4380_78005,288,4380_53915,Cork,87632-00011-1,1,4380_7778208_2600202,4380_869 -4380_78005,287,4380_53916,Cork,87628-00012-1,1,4380_7778208_2600202,4380_869 -4380_78005,286,4380_53917,Cork,87636-00010-1,1,4380_7778208_2600202,4380_869 -4380_78005,289,4380_53918,Cork,87630-00014-1,1,4380_7778208_2600202,4380_869 -4380_78005,292,4380_53919,Cork,87637-00016-1,1,4380_7778208_2600202,4380_869 -4380_77950,286,4380_5392,Emerald Park,4672-00010-1,0,4380_7778208_1050102,4380_58 -4380_78005,290,4380_53920,Cork,87635-00015-1,1,4380_7778208_2600202,4380_869 -4380_78005,294,4380_53921,Cork,87629-00018-1,1,4380_7778208_2600202,4380_869 -4380_78005,295,4380_53922,Cork,87631-00019-1,1,4380_7778208_2600202,4380_869 -4380_78005,293,4380_53923,Cork,87633-00017-1,1,4380_7778208_2600202,4380_869 -4380_77950,288,4380_5393,Emerald Park,4686-00011-1,0,4380_7778208_1050102,4380_58 -4380_78005,285,4380_53930,Cork,87550-00009-1,1,4380_7778208_2600201,4380_868 -4380_78005,288,4380_53931,Cork,87542-00011-1,1,4380_7778208_2600201,4380_868 -4380_78005,287,4380_53932,Cork,87548-00012-1,1,4380_7778208_2600201,4380_868 -4380_78005,286,4380_53933,Cork,87546-00010-1,1,4380_7778208_2600201,4380_868 -4380_78005,291,4380_53934,Cork,87842-00013-1,1,4380_7778208_2600206,4380_865 -4380_78005,289,4380_53935,Cork,87544-00014-1,1,4380_7778208_2600201,4380_868 -4380_78005,292,4380_53936,Cork,87547-00016-1,1,4380_7778208_2600201,4380_868 -4380_78005,290,4380_53937,Cork,87551-00015-1,1,4380_7778208_2600201,4380_868 -4380_78005,294,4380_53938,Cork,87549-00018-1,1,4380_7778208_2600201,4380_868 -4380_78005,295,4380_53939,Cork,87545-00019-1,1,4380_7778208_2600201,4380_868 -4380_77950,287,4380_5394,Emerald Park,4714-00012-1,0,4380_7778208_1050102,4380_58 -4380_78005,293,4380_53940,Cork,87543-00017-1,1,4380_7778208_2600201,4380_868 -4380_78005,296,4380_53941,Cork,87843-00021-1,1,4380_7778208_2600206,4380_865 -4380_78005,285,4380_53947,Cork,85395-00009-1,1,4380_7778208_2330204,4380_866 -4380_78005,288,4380_53948,Cork,85389-00011-1,1,4380_7778208_2330204,4380_866 -4380_78005,287,4380_53949,Cork,85387-00012-1,1,4380_7778208_2330204,4380_866 -4380_77950,289,4380_5395,Ashbourne,54060-00014-1,0,4380_7778208_1050102,4380_52 -4380_78005,286,4380_53950,Cork,85397-00010-1,1,4380_7778208_2330204,4380_866 -4380_78005,289,4380_53951,Cork,85391-00014-1,1,4380_7778208_2330204,4380_866 -4380_78005,292,4380_53952,Cork,85398-00016-1,1,4380_7778208_2330204,4380_866 -4380_78005,290,4380_53953,Cork,85396-00015-1,1,4380_7778208_2330204,4380_866 -4380_78005,294,4380_53954,Cork,85388-00018-1,1,4380_7778208_2330204,4380_866 -4380_78005,295,4380_53955,Cork,85392-00019-1,1,4380_7778208_2330204,4380_866 -4380_78005,293,4380_53956,Cork,85390-00017-1,1,4380_7778208_2330204,4380_866 -4380_78005,297,4380_53958,Cork,87553-00008-1,1,4380_7778208_2600201,4380_863 -4380_77950,290,4380_5396,Ashbourne,54059-00015-1,0,4380_7778208_1050102,4380_52 -4380_78005,285,4380_53965,Cork,87774-00009-1,1,4380_7778208_2600203,4380_872 -4380_78005,288,4380_53966,Cork,87778-00011-1,1,4380_7778208_2600203,4380_872 -4380_78005,287,4380_53967,Cork,87776-00012-1,1,4380_7778208_2600203,4380_872 -4380_78005,286,4380_53968,Cork,87780-00010-1,1,4380_7778208_2600203,4380_872 -4380_78005,291,4380_53969,Cork,87554-00013-1,1,4380_7778208_2600201,4380_874 -4380_77950,291,4380_5397,Emerald Park,54057-00013-1,0,4380_7778208_1050102,4380_56 -4380_78005,289,4380_53970,Cork,87772-00014-1,1,4380_7778208_2600203,4380_872 -4380_78005,292,4380_53971,Cork,87781-00016-1,1,4380_7778208_2600203,4380_872 -4380_78005,290,4380_53972,Cork,87775-00015-1,1,4380_7778208_2600203,4380_872 -4380_78005,294,4380_53973,Cork,87777-00018-1,1,4380_7778208_2600203,4380_872 -4380_78005,295,4380_53974,Cork,87773-00019-1,1,4380_7778208_2600203,4380_872 -4380_78005,293,4380_53975,Cork,87779-00017-1,1,4380_7778208_2600203,4380_872 -4380_78005,296,4380_53976,Cork,87555-00021-1,1,4380_7778208_2600201,4380_874 -4380_77950,292,4380_5398,Ashbourne,54058-00016-1,0,4380_7778208_1050102,4380_52 -4380_78005,285,4380_53982,Cork,87571-00009-1,1,4380_7778208_2600201,4380_865 -4380_78005,288,4380_53983,Cork,87569-00011-1,1,4380_7778208_2600201,4380_865 -4380_78005,287,4380_53984,Cork,87573-00012-1,1,4380_7778208_2600201,4380_865 -4380_78005,286,4380_53985,Cork,87577-00010-1,1,4380_7778208_2600201,4380_865 -4380_78005,289,4380_53986,Cork,87575-00014-1,1,4380_7778208_2600201,4380_865 -4380_78005,292,4380_53987,Cork,87578-00016-1,1,4380_7778208_2600201,4380_865 -4380_78005,290,4380_53988,Cork,87572-00015-1,1,4380_7778208_2600201,4380_865 -4380_78005,294,4380_53989,Cork,87574-00018-1,1,4380_7778208_2600201,4380_865 -4380_77950,293,4380_5399,Ashbourne,54055-00017-1,0,4380_7778208_1050102,4380_52 -4380_78005,295,4380_53990,Cork,87576-00019-1,1,4380_7778208_2600201,4380_865 -4380_78005,293,4380_53991,Cork,87570-00017-1,1,4380_7778208_2600201,4380_865 -4380_78005,297,4380_53993,Cork,87680-00008-1,1,4380_7778208_2600202,4380_863 -4380_78005,291,4380_53995,Cork,87579-00013-1,1,4380_7778208_2600201,4380_863 -4380_78005,296,4380_53996,Cork,87580-00021-1,1,4380_7778208_2600201,4380_863 -4380_78005,291,4380_53998,Cork,87836-00013-1,1,4380_7778208_2600205,4380_863 -4380_78005,296,4380_53999,Cork,87837-00021-1,1,4380_7778208_2600205,4380_863 -4380_77946,290,4380_54,Dundalk,50304-00015-1,0,4380_7778208_1000913,4380_1 -4380_77950,294,4380_5400,Ashbourne,54056-00018-1,0,4380_7778208_1050102,4380_52 -4380_78005,297,4380_54001,Cork,87593-00008-1,1,4380_7778208_2600201,4380_864 -4380_78005,291,4380_54003,Youghal,87594-00013-1,1,4380_7778208_2600201,4380_875 -4380_78005,296,4380_54004,Youghal,87595-00021-1,1,4380_7778208_2600201,4380_875 -4380_77950,295,4380_5401,Emerald Park,4602-00019-1,0,4380_7778208_1050102,4380_58 -4380_78005,285,4380_54010,Cork,87598-00009-1,1,4380_7778208_2600201,4380_865 -4380_78005,288,4380_54011,Cork,87602-00011-1,1,4380_7778208_2600201,4380_865 -4380_78005,287,4380_54012,Cork,87604-00012-1,1,4380_7778208_2600201,4380_865 -4380_78005,286,4380_54013,Cork,87596-00010-1,1,4380_7778208_2600201,4380_865 -4380_78005,289,4380_54014,Cork,87600-00014-1,1,4380_7778208_2600201,4380_865 -4380_78005,292,4380_54015,Cork,87597-00016-1,1,4380_7778208_2600201,4380_865 -4380_78005,290,4380_54016,Cork,87599-00015-1,1,4380_7778208_2600201,4380_865 -4380_78005,294,4380_54017,Cork,87605-00018-1,1,4380_7778208_2600201,4380_865 -4380_78005,295,4380_54018,Cork,87601-00019-1,1,4380_7778208_2600201,4380_865 -4380_78005,293,4380_54019,Cork,87603-00017-1,1,4380_7778208_2600201,4380_865 -4380_77950,296,4380_5402,Ashbourne,4742-00021-1,0,4380_7778208_1050102,4380_59 -4380_78005,297,4380_54021,Cork,87700-00008-1,1,4380_7778208_2600202,4380_865 -4380_78006,297,4380_54023,Ballinacurra,87874-00008-1,0,4380_7778208_2610201,4380_876 -4380_78006,285,4380_54029,Ballinacurra,87878-00009-1,0,4380_7778208_2610201,4380_876 -4380_78006,288,4380_54030,Ballinacurra,87882-00011-1,0,4380_7778208_2610201,4380_876 -4380_78006,287,4380_54031,Ballinacurra,87880-00012-1,0,4380_7778208_2610201,4380_876 -4380_78006,286,4380_54032,Ballinacurra,87886-00010-1,0,4380_7778208_2610201,4380_876 -4380_78006,289,4380_54033,Ballinacurra,87884-00014-1,0,4380_7778208_2610201,4380_876 -4380_78006,292,4380_54034,Ballinacurra,87887-00016-1,0,4380_7778208_2610201,4380_876 -4380_78006,290,4380_54035,Ballinacurra,87879-00015-1,0,4380_7778208_2610201,4380_876 -4380_78006,294,4380_54036,Ballinacurra,87881-00018-1,0,4380_7778208_2610201,4380_876 -4380_78006,295,4380_54037,Ballinacurra,87885-00019-1,0,4380_7778208_2610201,4380_876 -4380_78006,293,4380_54038,Ballinacurra,87883-00017-1,0,4380_7778208_2610201,4380_876 -4380_78006,285,4380_54044,Ballinacurra,87913-00009-1,0,4380_7778208_2610201,4380_876 -4380_78006,288,4380_54045,Ballinacurra,87905-00011-1,0,4380_7778208_2610201,4380_876 -4380_78006,287,4380_54046,Ballinacurra,87907-00012-1,0,4380_7778208_2610201,4380_876 -4380_78006,286,4380_54047,Ballinacurra,87909-00010-1,0,4380_7778208_2610201,4380_876 -4380_78006,289,4380_54048,Ballinacurra,87911-00014-1,0,4380_7778208_2610201,4380_876 -4380_78006,292,4380_54049,Ballinacurra,87910-00016-1,0,4380_7778208_2610201,4380_876 -4380_78006,290,4380_54050,Ballinacurra,87914-00015-1,0,4380_7778208_2610201,4380_876 -4380_78006,294,4380_54051,Ballinacurra,87908-00018-1,0,4380_7778208_2610201,4380_876 -4380_78006,295,4380_54052,Ballinacurra,87912-00019-1,0,4380_7778208_2610201,4380_876 -4380_78006,293,4380_54053,Ballinacurra,87906-00017-1,0,4380_7778208_2610201,4380_876 -4380_78006,297,4380_54056,Ballinacurra,87915-00008-1,0,4380_7778208_2610201,4380_876 -4380_78006,291,4380_54057,Ballinacurra,87844-00013-1,0,4380_7778208_2600206,4380_879 -4380_78006,296,4380_54058,Ballinacurra,87845-00021-1,0,4380_7778208_2600206,4380_879 -4380_78006,285,4380_54064,Ballinacurra,87642-00009-1,0,4380_7778208_2600202,4380_878 -4380_78006,288,4380_54065,Ballinacurra,87644-00011-1,0,4380_7778208_2600202,4380_878 -4380_78006,287,4380_54066,Ballinacurra,87646-00012-1,0,4380_7778208_2600202,4380_878 -4380_78006,286,4380_54067,Ballinacurra,87640-00010-1,0,4380_7778208_2600202,4380_878 -4380_78006,289,4380_54068,Ballinacurra,87638-00014-1,0,4380_7778208_2600202,4380_878 -4380_78006,292,4380_54069,Ballinacurra,87641-00016-1,0,4380_7778208_2600202,4380_878 -4380_78006,290,4380_54070,Ballinacurra,87643-00015-1,0,4380_7778208_2600202,4380_878 -4380_78006,294,4380_54071,Ballinacurra,87647-00018-1,0,4380_7778208_2600202,4380_878 -4380_78006,295,4380_54072,Ballinacurra,87639-00019-1,0,4380_7778208_2600202,4380_878 -4380_78006,293,4380_54073,Ballinacurra,87645-00017-1,0,4380_7778208_2600202,4380_878 -4380_78006,285,4380_54080,Ballinacurra,86407-00009-1,0,4380_7778208_2400203,4380_876 -4380_78006,288,4380_54081,Ballinacurra,86413-00011-1,0,4380_7778208_2400203,4380_876 -4380_78006,287,4380_54082,Ballinacurra,86411-00012-1,0,4380_7778208_2400203,4380_876 -4380_78006,286,4380_54083,Ballinacurra,86415-00010-1,0,4380_7778208_2400203,4380_876 -4380_78006,291,4380_54084,Ballinacurra,85286-00013-1,0,4380_7778208_2330202,4380_879 -4380_78006,289,4380_54085,Ballinacurra,86409-00014-1,0,4380_7778208_2400203,4380_876 -4380_78006,292,4380_54086,Ballinacurra,86416-00016-1,0,4380_7778208_2400203,4380_876 -4380_78006,290,4380_54087,Ballinacurra,86408-00015-1,0,4380_7778208_2400203,4380_876 -4380_78006,294,4380_54088,Ballinacurra,86412-00018-1,0,4380_7778208_2400203,4380_876 -4380_78006,295,4380_54089,Ballinacurra,86410-00019-1,0,4380_7778208_2400203,4380_876 -4380_78006,293,4380_54090,Ballinacurra,86414-00017-1,0,4380_7778208_2400203,4380_876 -4380_78006,296,4380_54091,Ballinacurra,85287-00021-1,0,4380_7778208_2330202,4380_879 -4380_78006,297,4380_54094,Ballinacurra,87931-00008-1,0,4380_7778208_2610201,4380_876 -4380_78006,291,4380_54095,Ballinacurra,87848-00013-1,0,4380_7778208_2600206,4380_879 -4380_78006,296,4380_54096,Ballinacurra,87849-00021-1,0,4380_7778208_2600206,4380_879 -4380_77950,285,4380_5410,Drogheda,54383-00009-1,0,4380_7778208_1051103,4380_54 -4380_78006,285,4380_54102,Ballinacurra,87934-00009-1,0,4380_7778208_2610201,4380_876 -4380_78006,288,4380_54103,Ballinacurra,87942-00011-1,0,4380_7778208_2610201,4380_876 -4380_78006,287,4380_54104,Ballinacurra,87936-00012-1,0,4380_7778208_2610201,4380_876 -4380_78006,286,4380_54105,Ballinacurra,87944-00010-1,0,4380_7778208_2610201,4380_876 -4380_78006,289,4380_54106,Ballinacurra,87940-00014-1,0,4380_7778208_2610201,4380_876 -4380_78006,292,4380_54107,Ballinacurra,87945-00016-1,0,4380_7778208_2610201,4380_876 -4380_78006,290,4380_54108,Ballinacurra,87935-00015-1,0,4380_7778208_2610201,4380_876 -4380_78006,294,4380_54109,Ballinacurra,87937-00018-1,0,4380_7778208_2610201,4380_876 -4380_77950,286,4380_5411,Drogheda,54385-00010-1,0,4380_7778208_1051103,4380_54 -4380_78006,295,4380_54110,Ballinacurra,87941-00019-1,0,4380_7778208_2610201,4380_876 -4380_78006,293,4380_54111,Ballinacurra,87943-00017-1,0,4380_7778208_2610201,4380_876 -4380_78006,285,4380_54117,Ballinacurra,87666-00009-1,0,4380_7778208_2600202,4380_876 -4380_78006,288,4380_54118,Ballinacurra,87662-00011-1,0,4380_7778208_2600202,4380_876 -4380_78006,287,4380_54119,Ballinacurra,87658-00012-1,0,4380_7778208_2600202,4380_876 -4380_77950,297,4380_5412,Drogheda,54478-00008-1,0,4380_7778208_1051104,4380_55 -4380_78006,286,4380_54120,Ballinacurra,87664-00010-1,0,4380_7778208_2600202,4380_876 -4380_78006,289,4380_54121,Ballinacurra,87660-00014-1,0,4380_7778208_2600202,4380_876 -4380_78006,292,4380_54122,Ballinacurra,87665-00016-1,0,4380_7778208_2600202,4380_876 -4380_78006,290,4380_54123,Ballinacurra,87667-00015-1,0,4380_7778208_2600202,4380_876 -4380_78006,294,4380_54124,Ballinacurra,87659-00018-1,0,4380_7778208_2600202,4380_876 -4380_78006,295,4380_54125,Ballinacurra,87661-00019-1,0,4380_7778208_2600202,4380_876 -4380_78006,293,4380_54126,Ballinacurra,87663-00017-1,0,4380_7778208_2600202,4380_876 -4380_77950,288,4380_5413,Drogheda,54379-00011-1,0,4380_7778208_1051103,4380_54 -4380_78006,285,4380_54132,Ballinacurra,86575-00009-1,0,4380_7778208_2410204,4380_876 -4380_78006,288,4380_54133,Ballinacurra,86567-00011-1,0,4380_7778208_2410204,4380_876 -4380_78006,287,4380_54134,Ballinacurra,86573-00012-1,0,4380_7778208_2410204,4380_876 -4380_78006,286,4380_54135,Ballinacurra,86569-00010-1,0,4380_7778208_2410204,4380_876 -4380_78006,289,4380_54136,Ballinacurra,86571-00014-1,0,4380_7778208_2410204,4380_876 -4380_78006,292,4380_54137,Ballinacurra,86570-00016-1,0,4380_7778208_2410204,4380_876 -4380_78006,290,4380_54138,Ballinacurra,86576-00015-1,0,4380_7778208_2410204,4380_876 -4380_78006,294,4380_54139,Ballinacurra,86574-00018-1,0,4380_7778208_2410204,4380_876 -4380_77950,287,4380_5414,Drogheda,54381-00012-1,0,4380_7778208_1051103,4380_54 -4380_78006,295,4380_54140,Ballinacurra,86572-00019-1,0,4380_7778208_2410204,4380_876 -4380_78006,293,4380_54141,Ballinacurra,86568-00017-1,0,4380_7778208_2410204,4380_876 -4380_78006,291,4380_54143,Ballinacurra,87852-00013-1,0,4380_7778208_2600206,4380_876 -4380_78006,296,4380_54144,Ballinacurra,87853-00021-1,0,4380_7778208_2600206,4380_876 -4380_77950,289,4380_5415,Drogheda,54377-00014-1,0,4380_7778208_1051103,4380_54 -4380_78006,285,4380_54150,Ballinacurra,87784-00009-1,0,4380_7778208_2600203,4380_876 -4380_78006,288,4380_54151,Ballinacurra,87788-00011-1,0,4380_7778208_2600203,4380_876 -4380_78006,287,4380_54152,Ballinacurra,87782-00012-1,0,4380_7778208_2600203,4380_876 -4380_78006,286,4380_54153,Ballinacurra,87790-00010-1,0,4380_7778208_2600203,4380_876 -4380_78006,289,4380_54154,Ballinacurra,87786-00014-1,0,4380_7778208_2600203,4380_876 -4380_78006,292,4380_54155,Ballinacurra,87791-00016-1,0,4380_7778208_2600203,4380_876 -4380_78006,290,4380_54156,Ballinacurra,87785-00015-1,0,4380_7778208_2600203,4380_876 -4380_78006,294,4380_54157,Ballinacurra,87783-00018-1,0,4380_7778208_2600203,4380_876 -4380_78006,295,4380_54158,Ballinacurra,87787-00019-1,0,4380_7778208_2600203,4380_876 -4380_78006,293,4380_54159,Ballinacurra,87789-00017-1,0,4380_7778208_2600203,4380_876 -4380_77950,290,4380_5416,Drogheda,54384-00015-1,0,4380_7778208_1051103,4380_54 -4380_78006,297,4380_54161,Ballinacurra,87961-00008-1,0,4380_7778208_2610201,4380_876 -4380_78006,285,4380_54167,Ballinacurra,87683-00009-1,0,4380_7778208_2600202,4380_876 -4380_78006,288,4380_54168,Ballinacurra,87681-00011-1,0,4380_7778208_2600202,4380_876 -4380_78006,287,4380_54169,Ballinacurra,87687-00012-1,0,4380_7778208_2600202,4380_876 -4380_77950,291,4380_5417,Drogheda,54387-00013-1,0,4380_7778208_1051103,4380_57 -4380_78006,286,4380_54170,Ballinacurra,87685-00010-1,0,4380_7778208_2600202,4380_876 -4380_78006,289,4380_54171,Ballinacurra,87678-00014-1,0,4380_7778208_2600202,4380_876 -4380_78006,292,4380_54172,Ballinacurra,87686-00016-1,0,4380_7778208_2600202,4380_876 -4380_78006,290,4380_54173,Ballinacurra,87684-00015-1,0,4380_7778208_2600202,4380_876 -4380_78006,294,4380_54174,Ballinacurra,87688-00018-1,0,4380_7778208_2600202,4380_876 -4380_78006,295,4380_54175,Ballinacurra,87679-00019-1,0,4380_7778208_2600202,4380_876 -4380_78006,293,4380_54176,Ballinacurra,87682-00017-1,0,4380_7778208_2600202,4380_876 -4380_78006,297,4380_54178,Ballinacurra,88041-00008-1,0,4380_7778208_2610202,4380_877 -4380_77950,292,4380_5418,Drogheda,54386-00016-1,0,4380_7778208_1051103,4380_54 -4380_78006,285,4380_54185,Ballinacurra,87973-00009-1,0,4380_7778208_2610201,4380_876 -4380_78006,288,4380_54186,Ballinacurra,87967-00011-1,0,4380_7778208_2610201,4380_876 -4380_78006,287,4380_54187,Ballinacurra,87971-00012-1,0,4380_7778208_2610201,4380_876 -4380_78006,286,4380_54188,Ballinacurra,87969-00010-1,0,4380_7778208_2610201,4380_876 -4380_78006,291,4380_54189,Ballinacurra,87856-00013-1,0,4380_7778208_2600206,4380_879 -4380_77950,293,4380_5419,Drogheda,54380-00017-1,0,4380_7778208_1051103,4380_54 -4380_78006,289,4380_54190,Ballinacurra,87975-00014-1,0,4380_7778208_2610201,4380_876 -4380_78006,292,4380_54191,Ballinacurra,87970-00016-1,0,4380_7778208_2610201,4380_876 -4380_78006,290,4380_54192,Ballinacurra,87974-00015-1,0,4380_7778208_2610201,4380_876 -4380_78006,294,4380_54193,Ballinacurra,87972-00018-1,0,4380_7778208_2610201,4380_876 -4380_78006,295,4380_54194,Ballinacurra,87976-00019-1,0,4380_7778208_2610201,4380_876 -4380_78006,293,4380_54195,Ballinacurra,87968-00017-1,0,4380_7778208_2610201,4380_876 -4380_78006,296,4380_54196,Ballinacurra,87857-00021-1,0,4380_7778208_2600206,4380_879 -4380_77950,294,4380_5420,Drogheda,54382-00018-1,0,4380_7778208_1051103,4380_54 -4380_78006,285,4380_54203,Ballinacurra,87808-00009-1,0,4380_7778208_2600203,4380_876 -4380_78006,288,4380_54204,Ballinacurra,87804-00011-1,0,4380_7778208_2600203,4380_876 -4380_78006,287,4380_54205,Ballinacurra,87810-00012-1,0,4380_7778208_2600203,4380_876 -4380_78006,286,4380_54206,Ballinacurra,87802-00010-1,0,4380_7778208_2600203,4380_876 -4380_78006,291,4380_54207,Ballinacurra,87977-00013-1,0,4380_7778208_2610201,4380_879 -4380_78006,289,4380_54208,Ballinacurra,87806-00014-1,0,4380_7778208_2600203,4380_876 -4380_78006,292,4380_54209,Ballinacurra,87803-00016-1,0,4380_7778208_2600203,4380_876 -4380_77950,295,4380_5421,Drogheda,54378-00019-1,0,4380_7778208_1051103,4380_54 -4380_78006,290,4380_54210,Ballinacurra,87809-00015-1,0,4380_7778208_2600203,4380_876 -4380_78006,294,4380_54211,Ballinacurra,87811-00018-1,0,4380_7778208_2600203,4380_876 -4380_78006,295,4380_54212,Ballinacurra,87807-00019-1,0,4380_7778208_2600203,4380_876 -4380_78006,293,4380_54213,Ballinacurra,87805-00017-1,0,4380_7778208_2600203,4380_876 -4380_78006,296,4380_54214,Ballinacurra,87978-00021-1,0,4380_7778208_2610201,4380_879 -4380_78006,297,4380_54216,Ballinacurra,87989-00008-1,0,4380_7778208_2610201,4380_876 -4380_77950,296,4380_5422,Drogheda,54388-00021-1,0,4380_7778208_1051103,4380_57 -4380_78006,285,4380_54223,Ballinacurra,87997-00009-1,0,4380_7778208_2610201,4380_877 -4380_78006,288,4380_54224,Ballinacurra,88001-00011-1,0,4380_7778208_2610201,4380_877 -4380_78006,287,4380_54225,Ballinacurra,88003-00012-1,0,4380_7778208_2610201,4380_877 -4380_78006,286,4380_54226,Ballinacurra,87995-00010-1,0,4380_7778208_2610201,4380_877 -4380_78006,291,4380_54227,Ballinacurra,87999-00013-1,0,4380_7778208_2610201,4380_876 -4380_78006,289,4380_54228,Ballinacurra,87993-00014-1,0,4380_7778208_2610201,4380_877 -4380_78006,292,4380_54229,Ballinacurra,87996-00016-1,0,4380_7778208_2610201,4380_877 -4380_78006,290,4380_54230,Ballinacurra,87998-00015-1,0,4380_7778208_2610201,4380_877 -4380_78006,294,4380_54231,Ballinacurra,88004-00018-1,0,4380_7778208_2610201,4380_877 -4380_78006,295,4380_54232,Ballinacurra,87994-00019-1,0,4380_7778208_2610201,4380_877 -4380_78006,293,4380_54233,Ballinacurra,88002-00017-1,0,4380_7778208_2610201,4380_877 -4380_78006,296,4380_54234,Ballinacurra,88000-00021-1,0,4380_7778208_2610201,4380_876 -4380_78006,285,4380_54240,Ballinacurra,87707-00009-1,0,4380_7778208_2600202,4380_876 -4380_78006,288,4380_54241,Ballinacurra,87703-00011-1,0,4380_7778208_2600202,4380_876 -4380_78006,287,4380_54242,Ballinacurra,87705-00012-1,0,4380_7778208_2600202,4380_876 -4380_78006,286,4380_54243,Ballinacurra,87709-00010-1,0,4380_7778208_2600202,4380_876 -4380_78006,289,4380_54244,Ballinacurra,87701-00014-1,0,4380_7778208_2600202,4380_876 -4380_78006,292,4380_54245,Ballinacurra,87710-00016-1,0,4380_7778208_2600202,4380_876 -4380_78006,290,4380_54246,Ballinacurra,87708-00015-1,0,4380_7778208_2600202,4380_876 -4380_78006,294,4380_54247,Ballinacurra,87706-00018-1,0,4380_7778208_2600202,4380_876 -4380_78006,295,4380_54248,Ballinacurra,87702-00019-1,0,4380_7778208_2600202,4380_876 -4380_78006,293,4380_54249,Ballinacurra,87704-00017-1,0,4380_7778208_2600202,4380_876 -4380_78006,297,4380_54257,Ballinacurra,87606-00008-1,0,4380_7778208_2600201,4380_876 -4380_78006,285,4380_54258,Ballinacurra,87725-00009-1,0,4380_7778208_2600202,4380_876 -4380_78006,288,4380_54259,Ballinacurra,87729-00011-1,0,4380_7778208_2600202,4380_876 -4380_78006,287,4380_54260,Ballinacurra,87727-00012-1,0,4380_7778208_2600202,4380_876 -4380_78006,286,4380_54261,Ballinacurra,87723-00010-1,0,4380_7778208_2600202,4380_876 -4380_78006,291,4380_54262,Ballinacurra,87860-00013-1,0,4380_7778208_2600206,4380_876 -4380_78006,289,4380_54263,Ballinacurra,87721-00014-1,0,4380_7778208_2600202,4380_876 -4380_78006,292,4380_54264,Ballinacurra,87724-00016-1,0,4380_7778208_2600202,4380_876 -4380_78006,290,4380_54265,Ballinacurra,87726-00015-1,0,4380_7778208_2600202,4380_876 -4380_78006,294,4380_54266,Ballinacurra,87728-00018-1,0,4380_7778208_2600202,4380_876 -4380_78006,295,4380_54267,Ballinacurra,87722-00019-1,0,4380_7778208_2600202,4380_876 -4380_78006,293,4380_54268,Ballinacurra,87730-00017-1,0,4380_7778208_2600202,4380_876 -4380_78006,296,4380_54269,Ballinacurra,87861-00021-1,0,4380_7778208_2600206,4380_876 -4380_78006,285,4380_54276,Ballinacurra,88027-00009-1,0,4380_7778208_2610201,4380_876 -4380_78006,288,4380_54277,Ballinacurra,88025-00011-1,0,4380_7778208_2610201,4380_876 -4380_78006,287,4380_54278,Ballinacurra,88021-00012-1,0,4380_7778208_2610201,4380_876 -4380_78006,286,4380_54279,Ballinacurra,88019-00010-1,0,4380_7778208_2610201,4380_876 -4380_78006,291,4380_54280,Ballinacurra,88023-00013-1,0,4380_7778208_2610201,4380_879 -4380_78006,289,4380_54281,Ballinacurra,88017-00014-1,0,4380_7778208_2610201,4380_876 -4380_78006,292,4380_54282,Ballinacurra,88020-00016-1,0,4380_7778208_2610201,4380_876 -4380_78006,290,4380_54283,Ballinacurra,88028-00015-1,0,4380_7778208_2610201,4380_876 -4380_78006,294,4380_54284,Ballinacurra,88022-00018-1,0,4380_7778208_2610201,4380_876 -4380_78006,295,4380_54285,Ballinacurra,88018-00019-1,0,4380_7778208_2610201,4380_876 -4380_78006,293,4380_54286,Ballinacurra,88026-00017-1,0,4380_7778208_2610201,4380_876 -4380_78006,296,4380_54287,Ballinacurra,88024-00021-1,0,4380_7778208_2610201,4380_879 -4380_77950,285,4380_5429,Emerald Park,4478-00009-1,0,4380_7778208_1050101,4380_58 -4380_78006,285,4380_54293,Cork,87866-00009-1,1,4380_7778208_2610201,4380_883 -4380_78006,288,4380_54294,Cork,87872-00011-1,1,4380_7778208_2610201,4380_883 -4380_78006,287,4380_54295,Cork,87868-00012-1,1,4380_7778208_2610201,4380_883 -4380_78006,286,4380_54296,Cork,87864-00010-1,1,4380_7778208_2610201,4380_883 -4380_78006,289,4380_54297,Cork,87870-00014-1,1,4380_7778208_2610201,4380_883 -4380_78006,292,4380_54298,Cork,87865-00016-1,1,4380_7778208_2610201,4380_883 -4380_78006,290,4380_54299,Cork,87867-00015-1,1,4380_7778208_2610201,4380_883 -4380_77950,286,4380_5430,Emerald Park,4492-00010-1,0,4380_7778208_1050101,4380_58 -4380_78006,294,4380_54300,Cork,87869-00018-1,1,4380_7778208_2610201,4380_883 -4380_78006,295,4380_54301,Cork,87871-00019-1,1,4380_7778208_2610201,4380_883 -4380_78006,293,4380_54302,Cork,87873-00017-1,1,4380_7778208_2610201,4380_883 -4380_78006,297,4380_54305,Cork,87877-00008-1,1,4380_7778208_2610201,4380_880 -4380_78006,291,4380_54306,Cork,87875-00013-1,1,4380_7778208_2610201,4380_882 -4380_78006,296,4380_54307,Cork,87876-00021-1,1,4380_7778208_2610201,4380_882 -4380_77950,288,4380_5431,Emerald Park,4534-00011-1,0,4380_7778208_1050101,4380_58 -4380_78006,285,4380_54313,Cork,87890-00009-1,1,4380_7778208_2610201,4380_880 -4380_78006,288,4380_54314,Cork,87892-00011-1,1,4380_7778208_2610201,4380_880 -4380_78006,287,4380_54315,Cork,87888-00012-1,1,4380_7778208_2610201,4380_880 -4380_78006,286,4380_54316,Cork,87896-00010-1,1,4380_7778208_2610201,4380_880 -4380_78006,289,4380_54317,Cork,87894-00014-1,1,4380_7778208_2610201,4380_880 -4380_78006,292,4380_54318,Cork,87897-00016-1,1,4380_7778208_2610201,4380_880 -4380_78006,290,4380_54319,Cork,87891-00015-1,1,4380_7778208_2610201,4380_880 -4380_77950,287,4380_5432,Emerald Park,4562-00012-1,0,4380_7778208_1050101,4380_58 -4380_78006,294,4380_54320,Cork,87889-00018-1,1,4380_7778208_2610201,4380_880 -4380_78006,295,4380_54321,Cork,87895-00019-1,1,4380_7778208_2610201,4380_880 -4380_78006,293,4380_54322,Cork,87893-00017-1,1,4380_7778208_2610201,4380_880 -4380_78006,291,4380_54324,Cork,86203-00013-1,1,4380_7778208_2390201,4380_880 -4380_78006,296,4380_54325,Cork,86204-00021-1,1,4380_7778208_2390201,4380_880 -4380_78006,297,4380_54327,Cork,87902-00008-1,1,4380_7778208_2610201,4380_880 -4380_77950,289,4380_5433,Ashbourne,53987-00014-1,0,4380_7778208_1050101,4380_52 -4380_78006,285,4380_54333,Cork,87920-00009-1,1,4380_7778208_2610201,4380_880 -4380_78006,288,4380_54334,Cork,87918-00011-1,1,4380_7778208_2610201,4380_880 -4380_78006,287,4380_54335,Cork,87916-00012-1,1,4380_7778208_2610201,4380_880 -4380_78006,286,4380_54336,Cork,87922-00010-1,1,4380_7778208_2610201,4380_880 -4380_78006,289,4380_54337,Cork,87924-00014-1,1,4380_7778208_2610201,4380_880 -4380_78006,292,4380_54338,Cork,87923-00016-1,1,4380_7778208_2610201,4380_880 -4380_78006,290,4380_54339,Cork,87921-00015-1,1,4380_7778208_2610201,4380_880 -4380_77950,290,4380_5434,Ashbourne,53984-00015-1,0,4380_7778208_1050101,4380_52 -4380_78006,294,4380_54340,Cork,87917-00018-1,1,4380_7778208_2610201,4380_880 -4380_78006,295,4380_54341,Cork,87925-00019-1,1,4380_7778208_2610201,4380_880 -4380_78006,293,4380_54342,Cork,87919-00017-1,1,4380_7778208_2610201,4380_880 -4380_78006,297,4380_54345,Cork,87926-00008-1,1,4380_7778208_2610201,4380_880 -4380_78006,291,4380_54346,Cork,87846-00013-1,1,4380_7778208_2600206,4380_882 -4380_78006,296,4380_54347,Cork,87847-00021-1,1,4380_7778208_2600206,4380_882 -4380_77950,291,4380_5435,Emerald Park,53988-00013-1,0,4380_7778208_1050101,4380_56 -4380_78006,285,4380_54353,Cork,87656-00009-1,1,4380_7778208_2600202,4380_881 -4380_78006,288,4380_54354,Cork,87648-00011-1,1,4380_7778208_2600202,4380_881 -4380_78006,287,4380_54355,Cork,87652-00012-1,1,4380_7778208_2600202,4380_881 -4380_78006,286,4380_54356,Cork,87654-00010-1,1,4380_7778208_2600202,4380_881 -4380_78006,289,4380_54357,Cork,87650-00014-1,1,4380_7778208_2600202,4380_881 -4380_78006,292,4380_54358,Cork,87655-00016-1,1,4380_7778208_2600202,4380_881 -4380_78006,290,4380_54359,Cork,87657-00015-1,1,4380_7778208_2600202,4380_881 -4380_77950,292,4380_5436,Ashbourne,53986-00016-1,0,4380_7778208_1050101,4380_52 -4380_78006,294,4380_54360,Cork,87653-00018-1,1,4380_7778208_2600202,4380_881 -4380_78006,295,4380_54361,Cork,87651-00019-1,1,4380_7778208_2600202,4380_881 -4380_78006,293,4380_54362,Cork,87649-00017-1,1,4380_7778208_2600202,4380_881 -4380_78006,285,4380_54369,Cork,86419-00009-1,1,4380_7778208_2400203,4380_880 -4380_77950,293,4380_5437,Ashbourne,53983-00017-1,0,4380_7778208_1050101,4380_52 -4380_78006,288,4380_54370,Cork,86425-00011-1,1,4380_7778208_2400203,4380_880 -4380_78006,287,4380_54371,Cork,86421-00012-1,1,4380_7778208_2400203,4380_880 -4380_78006,286,4380_54372,Cork,86417-00010-1,1,4380_7778208_2400203,4380_880 -4380_78006,291,4380_54373,Cork,85288-00013-1,1,4380_7778208_2330202,4380_882 -4380_78006,289,4380_54374,Cork,86423-00014-1,1,4380_7778208_2400203,4380_880 -4380_78006,292,4380_54375,Cork,86418-00016-1,1,4380_7778208_2400203,4380_880 -4380_78006,290,4380_54376,Cork,86420-00015-1,1,4380_7778208_2400203,4380_880 -4380_78006,294,4380_54377,Cork,86422-00018-1,1,4380_7778208_2400203,4380_880 -4380_78006,295,4380_54378,Cork,86424-00019-1,1,4380_7778208_2400203,4380_880 -4380_78006,293,4380_54379,Cork,86426-00017-1,1,4380_7778208_2400203,4380_880 -4380_77950,294,4380_5438,Ashbourne,53985-00018-1,0,4380_7778208_1050101,4380_52 -4380_78006,296,4380_54380,Cork,85289-00021-1,1,4380_7778208_2330202,4380_882 -4380_78006,297,4380_54383,Cork,87946-00008-1,1,4380_7778208_2610201,4380_880 -4380_78006,291,4380_54384,Cork,87850-00013-1,1,4380_7778208_2600206,4380_882 -4380_78006,296,4380_54385,Cork,87851-00021-1,1,4380_7778208_2600206,4380_882 -4380_77950,295,4380_5439,Emerald Park,4450-00019-1,0,4380_7778208_1050101,4380_58 -4380_78006,285,4380_54391,Cork,87949-00009-1,1,4380_7778208_2610201,4380_880 -4380_78006,288,4380_54392,Cork,87951-00011-1,1,4380_7778208_2610201,4380_880 -4380_78006,287,4380_54393,Cork,87953-00012-1,1,4380_7778208_2610201,4380_880 -4380_78006,286,4380_54394,Cork,87955-00010-1,1,4380_7778208_2610201,4380_880 -4380_78006,289,4380_54395,Cork,87947-00014-1,1,4380_7778208_2610201,4380_880 -4380_78006,292,4380_54396,Cork,87956-00016-1,1,4380_7778208_2610201,4380_880 -4380_78006,290,4380_54397,Cork,87950-00015-1,1,4380_7778208_2610201,4380_880 -4380_78006,294,4380_54398,Cork,87954-00018-1,1,4380_7778208_2610201,4380_880 -4380_78006,295,4380_54399,Cork,87948-00019-1,1,4380_7778208_2610201,4380_880 -4380_78113,285,4380_544,Dundalk,50141-00009-1,0,4380_7778208_1000908,4380_10 -4380_77950,296,4380_5440,Ashbourne,4576-00021-1,0,4380_7778208_1050101,4380_59 -4380_78006,293,4380_54400,Cork,87952-00017-1,1,4380_7778208_2610201,4380_880 -4380_78006,285,4380_54406,Cork,87670-00009-1,1,4380_7778208_2600202,4380_880 -4380_78006,288,4380_54407,Cork,87674-00011-1,1,4380_7778208_2600202,4380_880 -4380_78006,287,4380_54408,Cork,87668-00012-1,1,4380_7778208_2600202,4380_880 -4380_78006,286,4380_54409,Cork,87672-00010-1,1,4380_7778208_2600202,4380_880 -4380_78006,289,4380_54410,Cork,87676-00014-1,1,4380_7778208_2600202,4380_880 -4380_78006,292,4380_54411,Cork,87673-00016-1,1,4380_7778208_2600202,4380_880 -4380_78006,290,4380_54412,Cork,87671-00015-1,1,4380_7778208_2600202,4380_880 -4380_78006,294,4380_54413,Cork,87669-00018-1,1,4380_7778208_2600202,4380_880 -4380_78006,295,4380_54414,Cork,87677-00019-1,1,4380_7778208_2600202,4380_880 -4380_78006,293,4380_54415,Cork,87675-00017-1,1,4380_7778208_2600202,4380_880 -4380_78006,285,4380_54421,Cork,86581-00009-1,1,4380_7778208_2410204,4380_880 -4380_78006,288,4380_54422,Cork,86577-00011-1,1,4380_7778208_2410204,4380_880 -4380_78006,287,4380_54423,Cork,86583-00012-1,1,4380_7778208_2410204,4380_880 -4380_78006,286,4380_54424,Cork,86579-00010-1,1,4380_7778208_2410204,4380_880 -4380_78006,289,4380_54425,Cork,86585-00014-1,1,4380_7778208_2410204,4380_880 -4380_78006,292,4380_54426,Cork,86580-00016-1,1,4380_7778208_2410204,4380_880 -4380_78006,290,4380_54427,Cork,86582-00015-1,1,4380_7778208_2410204,4380_880 -4380_78006,294,4380_54428,Cork,86584-00018-1,1,4380_7778208_2410204,4380_880 -4380_78006,295,4380_54429,Cork,86586-00019-1,1,4380_7778208_2410204,4380_880 -4380_78006,293,4380_54430,Cork,86578-00017-1,1,4380_7778208_2410204,4380_880 -4380_78006,291,4380_54432,Cork,87854-00013-1,1,4380_7778208_2600206,4380_880 -4380_78006,296,4380_54433,Cork,87855-00021-1,1,4380_7778208_2600206,4380_880 -4380_78006,285,4380_54439,Cork,87794-00009-1,1,4380_7778208_2600203,4380_880 -4380_78006,288,4380_54440,Cork,87800-00011-1,1,4380_7778208_2600203,4380_880 -4380_78006,287,4380_54441,Cork,87792-00012-1,1,4380_7778208_2600203,4380_880 -4380_78006,286,4380_54442,Cork,87796-00010-1,1,4380_7778208_2600203,4380_880 -4380_78006,289,4380_54443,Cork,87798-00014-1,1,4380_7778208_2600203,4380_880 -4380_78006,292,4380_54444,Cork,87797-00016-1,1,4380_7778208_2600203,4380_880 -4380_78006,290,4380_54445,Cork,87795-00015-1,1,4380_7778208_2600203,4380_880 -4380_78006,294,4380_54446,Cork,87793-00018-1,1,4380_7778208_2600203,4380_880 -4380_78006,295,4380_54447,Cork,87799-00019-1,1,4380_7778208_2600203,4380_880 -4380_78006,293,4380_54448,Cork,87801-00017-1,1,4380_7778208_2600203,4380_880 -4380_78006,297,4380_54450,Cork,87966-00008-1,1,4380_7778208_2610201,4380_880 -4380_78006,285,4380_54456,Cork,87693-00009-1,1,4380_7778208_2600202,4380_880 -4380_78006,288,4380_54457,Cork,87697-00011-1,1,4380_7778208_2600202,4380_880 -4380_78006,287,4380_54458,Cork,87689-00012-1,1,4380_7778208_2600202,4380_880 -4380_78006,286,4380_54459,Cork,87691-00010-1,1,4380_7778208_2600202,4380_880 -4380_78006,289,4380_54460,Cork,87695-00014-1,1,4380_7778208_2600202,4380_880 -4380_78006,292,4380_54461,Cork,87692-00016-1,1,4380_7778208_2600202,4380_880 -4380_78006,290,4380_54462,Cork,87694-00015-1,1,4380_7778208_2600202,4380_880 -4380_78006,294,4380_54463,Cork,87690-00018-1,1,4380_7778208_2600202,4380_880 -4380_78006,295,4380_54464,Cork,87696-00019-1,1,4380_7778208_2600202,4380_880 -4380_78006,293,4380_54465,Cork,87698-00017-1,1,4380_7778208_2600202,4380_880 -4380_78006,297,4380_54467,Cork,88042-00008-1,1,4380_7778208_2610202,4380_880 -4380_78006,285,4380_54474,Cork,87981-00009-1,1,4380_7778208_2610201,4380_880 -4380_78006,288,4380_54475,Cork,87979-00011-1,1,4380_7778208_2610201,4380_880 -4380_78006,287,4380_54476,Cork,87983-00012-1,1,4380_7778208_2610201,4380_880 -4380_78006,286,4380_54477,Cork,87985-00010-1,1,4380_7778208_2610201,4380_880 -4380_78006,291,4380_54478,Cork,87858-00013-1,1,4380_7778208_2600206,4380_882 -4380_78006,289,4380_54479,Cork,87987-00014-1,1,4380_7778208_2610201,4380_880 -4380_77950,285,4380_5448,Drogheda,54479-00009-1,0,4380_7778208_1051104,4380_54 -4380_78006,292,4380_54480,Cork,87986-00016-1,1,4380_7778208_2610201,4380_880 -4380_78006,290,4380_54481,Cork,87982-00015-1,1,4380_7778208_2610201,4380_880 -4380_78006,294,4380_54482,Cork,87984-00018-1,1,4380_7778208_2610201,4380_880 -4380_78006,295,4380_54483,Cork,87988-00019-1,1,4380_7778208_2610201,4380_880 -4380_78006,293,4380_54484,Cork,87980-00017-1,1,4380_7778208_2610201,4380_880 -4380_78006,296,4380_54485,Cork,87859-00021-1,1,4380_7778208_2600206,4380_882 -4380_78006,291,4380_54487,Cork,87990-00013-1,1,4380_7778208_2610201,4380_880 -4380_78006,296,4380_54488,Cork,87991-00021-1,1,4380_7778208_2610201,4380_880 -4380_77950,286,4380_5449,Drogheda,54489-00010-1,0,4380_7778208_1051104,4380_54 -4380_78006,285,4380_54494,Cork,87816-00009-1,1,4380_7778208_2600203,4380_880 -4380_78006,288,4380_54495,Cork,87812-00011-1,1,4380_7778208_2600203,4380_880 -4380_78006,287,4380_54496,Cork,87818-00012-1,1,4380_7778208_2600203,4380_880 -4380_78006,286,4380_54497,Cork,87814-00010-1,1,4380_7778208_2600203,4380_880 -4380_78006,289,4380_54498,Cork,87820-00014-1,1,4380_7778208_2600203,4380_880 -4380_78006,292,4380_54499,Cork,87815-00016-1,1,4380_7778208_2600203,4380_880 -4380_78113,286,4380_545,Dundalk,50133-00010-1,0,4380_7778208_1000908,4380_10 -4380_77950,297,4380_5450,Drogheda,54202-00008-1,0,4380_7778208_1051101,4380_55 -4380_78006,290,4380_54500,Cork,87817-00015-1,1,4380_7778208_2600203,4380_880 -4380_78006,294,4380_54501,Cork,87819-00018-1,1,4380_7778208_2600203,4380_880 -4380_78006,295,4380_54502,Cork,87821-00019-1,1,4380_7778208_2600203,4380_880 -4380_78006,293,4380_54503,Cork,87813-00017-1,1,4380_7778208_2600203,4380_880 -4380_78006,297,4380_54505,Cork,87992-00008-1,1,4380_7778208_2610201,4380_880 -4380_78006,291,4380_54507,Cork,88005-00013-1,1,4380_7778208_2610201,4380_880 -4380_78006,296,4380_54508,Cork,88006-00021-1,1,4380_7778208_2610201,4380_880 -4380_77950,288,4380_5451,Drogheda,54487-00011-1,0,4380_7778208_1051104,4380_54 -4380_78006,285,4380_54514,Cork,88015-00009-1,1,4380_7778208_2610201,4380_883 -4380_78006,288,4380_54515,Cork,88013-00011-1,1,4380_7778208_2610201,4380_883 -4380_78006,287,4380_54516,Cork,88007-00012-1,1,4380_7778208_2610201,4380_883 -4380_78006,286,4380_54517,Cork,88009-00010-1,1,4380_7778208_2610201,4380_883 -4380_78006,289,4380_54518,Cork,88011-00014-1,1,4380_7778208_2610201,4380_883 -4380_78006,292,4380_54519,Cork,88010-00016-1,1,4380_7778208_2610201,4380_883 -4380_77950,287,4380_5452,Drogheda,54485-00012-1,0,4380_7778208_1051104,4380_54 -4380_78006,290,4380_54520,Cork,88016-00015-1,1,4380_7778208_2610201,4380_883 -4380_78006,294,4380_54521,Cork,88008-00018-1,1,4380_7778208_2610201,4380_883 -4380_78006,295,4380_54522,Cork,88012-00019-1,1,4380_7778208_2610201,4380_883 -4380_78006,293,4380_54523,Cork,88014-00017-1,1,4380_7778208_2610201,4380_883 -4380_78006,285,4380_54529,Cork,87717-00009-1,1,4380_7778208_2600202,4380_880 -4380_77950,289,4380_5453,Drogheda,54483-00014-1,0,4380_7778208_1051104,4380_54 -4380_78006,288,4380_54530,Cork,87715-00011-1,1,4380_7778208_2600202,4380_880 -4380_78006,287,4380_54531,Cork,87719-00012-1,1,4380_7778208_2600202,4380_880 -4380_78006,286,4380_54532,Cork,87713-00010-1,1,4380_7778208_2600202,4380_880 -4380_78006,289,4380_54533,Cork,87711-00014-1,1,4380_7778208_2600202,4380_880 -4380_78006,292,4380_54534,Cork,87714-00016-1,1,4380_7778208_2600202,4380_880 -4380_78006,290,4380_54535,Cork,87718-00015-1,1,4380_7778208_2600202,4380_880 -4380_78006,294,4380_54536,Cork,87720-00018-1,1,4380_7778208_2600202,4380_880 -4380_78006,295,4380_54537,Cork,87712-00019-1,1,4380_7778208_2600202,4380_880 -4380_78006,293,4380_54538,Cork,87716-00017-1,1,4380_7778208_2600202,4380_880 -4380_77950,290,4380_5454,Drogheda,54480-00015-1,0,4380_7778208_1051104,4380_54 -4380_78006,297,4380_54546,Cork,87607-00008-1,1,4380_7778208_2600201,4380_880 -4380_78006,285,4380_54547,Cork,87733-00009-1,1,4380_7778208_2600202,4380_882 -4380_78006,288,4380_54548,Cork,87735-00011-1,1,4380_7778208_2600202,4380_882 -4380_78006,287,4380_54549,Cork,87731-00012-1,1,4380_7778208_2600202,4380_882 -4380_77950,291,4380_5455,Drogheda,54481-00013-1,0,4380_7778208_1051104,4380_57 -4380_78006,286,4380_54550,Cork,87739-00010-1,1,4380_7778208_2600202,4380_882 -4380_78006,291,4380_54551,Cork,87862-00013-1,1,4380_7778208_2600206,4380_884 -4380_78006,289,4380_54552,Cork,87737-00014-1,1,4380_7778208_2600202,4380_882 -4380_78006,292,4380_54553,Cork,87740-00016-1,1,4380_7778208_2600202,4380_882 -4380_78006,290,4380_54554,Cork,87734-00015-1,1,4380_7778208_2600202,4380_882 -4380_78006,294,4380_54555,Cork,87732-00018-1,1,4380_7778208_2600202,4380_882 -4380_78006,295,4380_54556,Cork,87738-00019-1,1,4380_7778208_2600202,4380_882 -4380_78006,293,4380_54557,Cork,87736-00017-1,1,4380_7778208_2600202,4380_882 -4380_78006,296,4380_54558,Cork,87863-00021-1,1,4380_7778208_2600206,4380_884 -4380_77950,292,4380_5456,Drogheda,54490-00016-1,0,4380_7778208_1051104,4380_54 -4380_78006,285,4380_54565,Cork,88035-00009-1,1,4380_7778208_2610201,4380_880 -4380_78006,288,4380_54566,Cork,88031-00011-1,1,4380_7778208_2610201,4380_880 -4380_78006,287,4380_54567,Cork,88029-00012-1,1,4380_7778208_2610201,4380_880 -4380_78006,286,4380_54568,Cork,88039-00010-1,1,4380_7778208_2610201,4380_880 -4380_78006,291,4380_54569,Cork,88037-00013-1,1,4380_7778208_2610201,4380_882 -4380_77950,293,4380_5457,Drogheda,54488-00017-1,0,4380_7778208_1051104,4380_54 -4380_78006,289,4380_54570,Cork,88033-00014-1,1,4380_7778208_2610201,4380_880 -4380_78006,292,4380_54571,Cork,88040-00016-1,1,4380_7778208_2610201,4380_880 -4380_78006,290,4380_54572,Cork,88036-00015-1,1,4380_7778208_2610201,4380_880 -4380_78006,294,4380_54573,Cork,88030-00018-1,1,4380_7778208_2610201,4380_880 -4380_78006,295,4380_54574,Cork,88034-00019-1,1,4380_7778208_2610201,4380_880 -4380_78006,293,4380_54575,Cork,88032-00017-1,1,4380_7778208_2610201,4380_880 -4380_78006,296,4380_54576,Cork,88038-00021-1,1,4380_7778208_2610201,4380_882 -4380_77950,294,4380_5458,Drogheda,54486-00018-1,0,4380_7778208_1051104,4380_54 -4380_78007,297,4380_54584,Kenmare,88246-00008-1,0,4380_7778208_2700701,4380_887 -4380_78007,285,4380_54585,Kenmare,88234-00009-1,0,4380_7778208_2700701,4380_889 -4380_78007,288,4380_54586,Kenmare,88240-00011-1,0,4380_7778208_2700701,4380_889 -4380_78007,287,4380_54587,Kenmare,88242-00012-1,0,4380_7778208_2700701,4380_889 -4380_78007,286,4380_54588,Kenmare,88238-00010-1,0,4380_7778208_2700701,4380_889 -4380_78007,291,4380_54589,Kenmare,88236-00013-1,0,4380_7778208_2700701,4380_891 -4380_77950,295,4380_5459,Drogheda,54484-00019-1,0,4380_7778208_1051104,4380_54 -4380_78007,289,4380_54590,Kenmare,88244-00014-1,0,4380_7778208_2700701,4380_889 -4380_78007,292,4380_54591,Kenmare,88239-00016-1,0,4380_7778208_2700701,4380_889 -4380_78007,290,4380_54592,Kenmare,88235-00015-1,0,4380_7778208_2700701,4380_889 -4380_78007,294,4380_54593,Kenmare,88243-00018-1,0,4380_7778208_2700701,4380_889 -4380_78007,295,4380_54594,Kenmare,88245-00019-1,0,4380_7778208_2700701,4380_889 -4380_78007,293,4380_54595,Kenmare,88241-00017-1,0,4380_7778208_2700701,4380_889 -4380_78007,296,4380_54596,Kenmare,88237-00021-1,0,4380_7778208_2700701,4380_891 -4380_78113,287,4380_546,Dundalk,50137-00012-1,0,4380_7778208_1000908,4380_10 -4380_77950,296,4380_5460,Drogheda,54482-00021-1,0,4380_7778208_1051104,4380_57 -4380_78007,297,4380_54604,Skibbereen,88121-00008-1,0,4380_7778208_2700202,4380_886 -4380_78007,285,4380_54605,Skibbereen,88126-00009-1,0,4380_7778208_2700202,4380_886 -4380_78007,288,4380_54606,Skibbereen,88128-00011-1,0,4380_7778208_2700202,4380_886 -4380_78007,287,4380_54607,Skibbereen,88124-00012-1,0,4380_7778208_2700202,4380_886 -4380_78007,286,4380_54608,Skibbereen,88130-00010-1,0,4380_7778208_2700202,4380_886 -4380_78007,291,4380_54609,Skibbereen,88122-00013-1,0,4380_7778208_2700202,4380_886 -4380_78007,289,4380_54610,Skibbereen,88119-00014-1,0,4380_7778208_2700202,4380_886 -4380_78007,292,4380_54611,Skibbereen,88131-00016-1,0,4380_7778208_2700202,4380_886 -4380_78007,290,4380_54612,Skibbereen,88127-00015-1,0,4380_7778208_2700202,4380_886 -4380_78007,294,4380_54613,Skibbereen,88125-00018-1,0,4380_7778208_2700202,4380_886 -4380_78007,295,4380_54614,Skibbereen,88120-00019-1,0,4380_7778208_2700202,4380_886 -4380_78007,293,4380_54615,Skibbereen,88129-00017-1,0,4380_7778208_2700202,4380_886 -4380_78007,296,4380_54616,Skibbereen,88123-00021-1,0,4380_7778208_2700202,4380_886 -4380_78007,297,4380_54624,Skibbereen,88390-00008-1,0,4380_7778208_2700702,4380_885 -4380_78007,285,4380_54625,Skibbereen,88393-00009-1,0,4380_7778208_2700702,4380_885 -4380_78007,288,4380_54626,Skibbereen,88395-00011-1,0,4380_7778208_2700702,4380_885 -4380_78007,287,4380_54627,Skibbereen,88391-00012-1,0,4380_7778208_2700702,4380_885 -4380_78007,286,4380_54628,Skibbereen,88399-00010-1,0,4380_7778208_2700702,4380_885 -4380_78007,291,4380_54629,Skibbereen,88401-00013-1,0,4380_7778208_2700702,4380_885 -4380_78007,289,4380_54630,Skibbereen,88397-00014-1,0,4380_7778208_2700702,4380_885 -4380_78007,292,4380_54631,Skibbereen,88400-00016-1,0,4380_7778208_2700702,4380_885 -4380_78007,290,4380_54632,Skibbereen,88394-00015-1,0,4380_7778208_2700702,4380_885 -4380_78007,294,4380_54633,Skibbereen,88392-00018-1,0,4380_7778208_2700702,4380_885 -4380_78007,295,4380_54634,Skibbereen,88398-00019-1,0,4380_7778208_2700702,4380_885 -4380_78007,293,4380_54635,Skibbereen,88396-00017-1,0,4380_7778208_2700702,4380_885 -4380_78007,296,4380_54636,Skibbereen,88402-00021-1,0,4380_7778208_2700702,4380_885 -4380_78007,297,4380_54644,Kenmare,88264-00008-1,0,4380_7778208_2700701,4380_887 -4380_78007,285,4380_54645,Kenmare,88269-00009-1,0,4380_7778208_2700701,4380_887 -4380_78007,288,4380_54646,Kenmare,88271-00011-1,0,4380_7778208_2700701,4380_887 -4380_78007,287,4380_54647,Kenmare,88265-00012-1,0,4380_7778208_2700701,4380_887 -4380_78007,286,4380_54648,Kenmare,88260-00010-1,0,4380_7778208_2700701,4380_887 -4380_78007,291,4380_54649,Kenmare,88262-00013-1,0,4380_7778208_2700701,4380_887 -4380_78007,289,4380_54650,Kenmare,88267-00014-1,0,4380_7778208_2700701,4380_887 -4380_78007,292,4380_54651,Kenmare,88261-00016-1,0,4380_7778208_2700701,4380_887 -4380_78007,290,4380_54652,Kenmare,88270-00015-1,0,4380_7778208_2700701,4380_887 -4380_78007,294,4380_54653,Kenmare,88266-00018-1,0,4380_7778208_2700701,4380_887 -4380_78007,295,4380_54654,Kenmare,88268-00019-1,0,4380_7778208_2700701,4380_887 -4380_78007,293,4380_54655,Kenmare,88272-00017-1,0,4380_7778208_2700701,4380_887 -4380_78007,296,4380_54656,Kenmare,88263-00021-1,0,4380_7778208_2700701,4380_887 -4380_77950,285,4380_5466,Emerald Park,4632-00009-1,0,4380_7778208_1050102,4380_56 -4380_78007,297,4380_54664,Kenmare,88292-00008-1,0,4380_7778208_2700701,4380_887 -4380_78007,285,4380_54665,Kenmare,88286-00009-1,0,4380_7778208_2700701,4380_889 -4380_78007,288,4380_54666,Kenmare,88290-00011-1,0,4380_7778208_2700701,4380_889 -4380_78007,287,4380_54667,Kenmare,88297-00012-1,0,4380_7778208_2700701,4380_889 -4380_78007,286,4380_54668,Kenmare,88293-00010-1,0,4380_7778208_2700701,4380_889 -4380_78007,291,4380_54669,Kenmare,88295-00013-1,0,4380_7778208_2700701,4380_889 -4380_77950,286,4380_5467,Emerald Park,4674-00010-1,0,4380_7778208_1050102,4380_56 -4380_78007,289,4380_54670,Kenmare,88288-00014-1,0,4380_7778208_2700701,4380_889 -4380_78007,292,4380_54671,Kenmare,88294-00016-1,0,4380_7778208_2700701,4380_889 -4380_78007,290,4380_54672,Kenmare,88287-00015-1,0,4380_7778208_2700701,4380_889 -4380_78007,294,4380_54673,Kenmare,88298-00018-1,0,4380_7778208_2700701,4380_889 -4380_78007,295,4380_54674,Kenmare,88289-00019-1,0,4380_7778208_2700701,4380_889 -4380_78007,293,4380_54675,Kenmare,88291-00017-1,0,4380_7778208_2700701,4380_889 -4380_78007,296,4380_54676,Kenmare,88296-00021-1,0,4380_7778208_2700701,4380_889 -4380_77950,288,4380_5468,Emerald Park,4688-00011-1,0,4380_7778208_1050102,4380_56 -4380_78007,297,4380_54684,Skibbereen,88068-00008-1,0,4380_7778208_2700201,4380_885 -4380_78007,285,4380_54685,Skibbereen,88056-00009-1,0,4380_7778208_2700201,4380_885 -4380_78007,288,4380_54686,Skibbereen,88062-00011-1,0,4380_7778208_2700201,4380_885 -4380_78007,287,4380_54687,Skibbereen,88064-00012-1,0,4380_7778208_2700201,4380_885 -4380_78007,286,4380_54688,Skibbereen,88060-00010-1,0,4380_7778208_2700201,4380_885 -4380_78007,291,4380_54689,Skibbereen,88058-00013-1,0,4380_7778208_2700201,4380_885 -4380_77950,287,4380_5469,Emerald Park,4716-00012-1,0,4380_7778208_1050102,4380_56 -4380_78007,289,4380_54690,Skibbereen,88066-00014-1,0,4380_7778208_2700201,4380_885 -4380_78007,292,4380_54691,Skibbereen,88061-00016-1,0,4380_7778208_2700201,4380_885 -4380_78007,290,4380_54692,Skibbereen,88057-00015-1,0,4380_7778208_2700201,4380_885 -4380_78007,294,4380_54693,Skibbereen,88065-00018-1,0,4380_7778208_2700201,4380_885 -4380_78007,295,4380_54694,Skibbereen,88067-00019-1,0,4380_7778208_2700201,4380_885 -4380_78007,293,4380_54695,Skibbereen,88063-00017-1,0,4380_7778208_2700201,4380_885 -4380_78007,296,4380_54696,Skibbereen,88059-00021-1,0,4380_7778208_2700201,4380_885 -4380_78113,288,4380_547,Dundalk,50139-00011-1,0,4380_7778208_1000908,4380_10 -4380_77950,289,4380_5470,Ashbourne,54068-00014-1,0,4380_7778208_1050102,4380_52 -4380_78007,297,4380_54704,Kenmare,88322-00008-1,0,4380_7778208_2700701,4380_887 -4380_78007,285,4380_54705,Kenmare,88323-00009-1,0,4380_7778208_2700701,4380_887 -4380_78007,288,4380_54706,Kenmare,88316-00011-1,0,4380_7778208_2700701,4380_887 -4380_78007,287,4380_54707,Kenmare,88312-00012-1,0,4380_7778208_2700701,4380_887 -4380_78007,286,4380_54708,Kenmare,88320-00010-1,0,4380_7778208_2700701,4380_887 -4380_78007,291,4380_54709,Kenmare,88318-00013-1,0,4380_7778208_2700701,4380_887 -4380_77950,290,4380_5471,Ashbourne,54067-00015-1,0,4380_7778208_1050102,4380_52 -4380_78007,289,4380_54710,Kenmare,88314-00014-1,0,4380_7778208_2700701,4380_887 -4380_78007,292,4380_54711,Kenmare,88321-00016-1,0,4380_7778208_2700701,4380_887 -4380_78007,290,4380_54712,Kenmare,88324-00015-1,0,4380_7778208_2700701,4380_887 -4380_78007,294,4380_54713,Kenmare,88313-00018-1,0,4380_7778208_2700701,4380_887 -4380_78007,295,4380_54714,Kenmare,88315-00019-1,0,4380_7778208_2700701,4380_887 -4380_78007,293,4380_54715,Kenmare,88317-00017-1,0,4380_7778208_2700701,4380_887 -4380_78007,296,4380_54716,Kenmare,88319-00021-1,0,4380_7778208_2700701,4380_887 -4380_77950,292,4380_5472,Ashbourne,54071-00016-1,0,4380_7778208_1050102,4380_52 -4380_78007,297,4380_54724,Skibbereen,88179-00008-1,0,4380_7778208_2700202,4380_885 -4380_78007,285,4380_54725,Skibbereen,88177-00009-1,0,4380_7778208_2700202,4380_885 -4380_78007,288,4380_54726,Skibbereen,88169-00011-1,0,4380_7778208_2700202,4380_885 -4380_78007,287,4380_54727,Skibbereen,88175-00012-1,0,4380_7778208_2700202,4380_885 -4380_78007,286,4380_54728,Skibbereen,88180-00010-1,0,4380_7778208_2700202,4380_885 -4380_78007,291,4380_54729,Skibbereen,88171-00013-1,0,4380_7778208_2700202,4380_885 -4380_77950,293,4380_5473,Ashbourne,54069-00017-1,0,4380_7778208_1050102,4380_52 -4380_78007,289,4380_54730,Skibbereen,88173-00014-1,0,4380_7778208_2700202,4380_885 -4380_78007,292,4380_54731,Skibbereen,88181-00016-1,0,4380_7778208_2700202,4380_885 -4380_78007,290,4380_54732,Skibbereen,88178-00015-1,0,4380_7778208_2700202,4380_885 -4380_78007,294,4380_54733,Skibbereen,88176-00018-1,0,4380_7778208_2700202,4380_885 -4380_78007,295,4380_54734,Skibbereen,88174-00019-1,0,4380_7778208_2700202,4380_885 -4380_78007,293,4380_54735,Skibbereen,88170-00017-1,0,4380_7778208_2700202,4380_885 -4380_78007,296,4380_54736,Skibbereen,88172-00021-1,0,4380_7778208_2700202,4380_885 -4380_77950,294,4380_5474,Ashbourne,54070-00018-1,0,4380_7778208_1050102,4380_52 -4380_78007,297,4380_54744,Kenmare,88350-00008-1,0,4380_7778208_2700701,4380_887 -4380_78007,285,4380_54745,Kenmare,88346-00009-1,0,4380_7778208_2700701,4380_887 -4380_78007,288,4380_54746,Kenmare,88342-00011-1,0,4380_7778208_2700701,4380_887 -4380_78007,287,4380_54747,Kenmare,88344-00012-1,0,4380_7778208_2700701,4380_887 -4380_78007,286,4380_54748,Kenmare,88348-00010-1,0,4380_7778208_2700701,4380_887 -4380_78007,291,4380_54749,Kenmare,88338-00013-1,0,4380_7778208_2700701,4380_887 -4380_77950,295,4380_5475,Emerald Park,4604-00019-1,0,4380_7778208_1050102,4380_56 -4380_78007,289,4380_54750,Kenmare,88340-00014-1,0,4380_7778208_2700701,4380_887 -4380_78007,292,4380_54751,Kenmare,88349-00016-1,0,4380_7778208_2700701,4380_887 -4380_78007,290,4380_54752,Kenmare,88347-00015-1,0,4380_7778208_2700701,4380_887 -4380_78007,294,4380_54753,Kenmare,88345-00018-1,0,4380_7778208_2700701,4380_887 -4380_78007,295,4380_54754,Kenmare,88341-00019-1,0,4380_7778208_2700701,4380_887 -4380_78007,293,4380_54755,Kenmare,88343-00017-1,0,4380_7778208_2700701,4380_887 -4380_78007,296,4380_54756,Kenmare,88339-00021-1,0,4380_7778208_2700701,4380_887 -4380_78007,297,4380_54764,Kenmare,88364-00008-1,0,4380_7778208_2700701,4380_887 -4380_78007,285,4380_54765,Kenmare,88369-00009-1,0,4380_7778208_2700701,4380_887 -4380_78007,288,4380_54766,Kenmare,88371-00011-1,0,4380_7778208_2700701,4380_887 -4380_78007,287,4380_54767,Kenmare,88375-00012-1,0,4380_7778208_2700701,4380_887 -4380_78007,286,4380_54768,Kenmare,88373-00010-1,0,4380_7778208_2700701,4380_887 -4380_78007,291,4380_54769,Kenmare,88367-00013-1,0,4380_7778208_2700701,4380_887 -4380_77950,291,4380_5477,Emerald Park,54072-00013-1,0,4380_7778208_1050102,4380_56 -4380_78007,289,4380_54770,Kenmare,88365-00014-1,0,4380_7778208_2700701,4380_887 -4380_78007,292,4380_54771,Kenmare,88374-00016-1,0,4380_7778208_2700701,4380_887 -4380_78007,290,4380_54772,Kenmare,88370-00015-1,0,4380_7778208_2700701,4380_887 -4380_78007,294,4380_54773,Kenmare,88376-00018-1,0,4380_7778208_2700701,4380_887 -4380_78007,295,4380_54774,Kenmare,88366-00019-1,0,4380_7778208_2700701,4380_887 -4380_78007,293,4380_54775,Kenmare,88372-00017-1,0,4380_7778208_2700701,4380_887 -4380_78007,296,4380_54776,Kenmare,88368-00021-1,0,4380_7778208_2700701,4380_887 -4380_77950,296,4380_5478,Ashbourne,4744-00021-1,0,4380_7778208_1050102,4380_52 -4380_78007,297,4380_54784,Skibbereen,88207-00008-1,0,4380_7778208_2700203,4380_885 -4380_78007,285,4380_54785,Skibbereen,88195-00009-1,0,4380_7778208_2700203,4380_888 -4380_78007,288,4380_54786,Skibbereen,88197-00011-1,0,4380_7778208_2700203,4380_888 -4380_78007,287,4380_54787,Skibbereen,88205-00012-1,0,4380_7778208_2700203,4380_888 -4380_78007,286,4380_54788,Skibbereen,88201-00010-1,0,4380_7778208_2700203,4380_888 -4380_78007,291,4380_54789,Skibbereen,88199-00013-1,0,4380_7778208_2700203,4380_888 -4380_78007,289,4380_54790,Skibbereen,88203-00014-1,0,4380_7778208_2700203,4380_888 -4380_78007,292,4380_54791,Skibbereen,88202-00016-1,0,4380_7778208_2700203,4380_888 -4380_78007,290,4380_54792,Skibbereen,88196-00015-1,0,4380_7778208_2700203,4380_888 -4380_78007,294,4380_54793,Skibbereen,88206-00018-1,0,4380_7778208_2700203,4380_888 -4380_78007,295,4380_54794,Skibbereen,88204-00019-1,0,4380_7778208_2700203,4380_888 -4380_78007,293,4380_54795,Skibbereen,88198-00017-1,0,4380_7778208_2700203,4380_888 -4380_78007,296,4380_54796,Skibbereen,88200-00021-1,0,4380_7778208_2700203,4380_888 -4380_78113,289,4380_548,Dundalk,50143-00014-1,0,4380_7778208_1000908,4380_10 -4380_78007,297,4380_54804,Skibbereen,88114-00008-1,0,4380_7778208_2700201,4380_885 -4380_78007,285,4380_54805,Skibbereen,88115-00009-1,0,4380_7778208_2700201,4380_888 -4380_78007,288,4380_54806,Skibbereen,88108-00011-1,0,4380_7778208_2700201,4380_888 -4380_78007,287,4380_54807,Skibbereen,88117-00012-1,0,4380_7778208_2700201,4380_888 -4380_78007,286,4380_54808,Skibbereen,88110-00010-1,0,4380_7778208_2700201,4380_888 -4380_78007,291,4380_54809,Skibbereen,88106-00013-1,0,4380_7778208_2700201,4380_890 -4380_78007,289,4380_54810,Skibbereen,88112-00014-1,0,4380_7778208_2700201,4380_888 -4380_78007,292,4380_54811,Skibbereen,88111-00016-1,0,4380_7778208_2700201,4380_888 -4380_78007,290,4380_54812,Skibbereen,88116-00015-1,0,4380_7778208_2700201,4380_888 -4380_78007,294,4380_54813,Skibbereen,88118-00018-1,0,4380_7778208_2700201,4380_888 -4380_78007,295,4380_54814,Skibbereen,88113-00019-1,0,4380_7778208_2700201,4380_888 -4380_78007,293,4380_54815,Skibbereen,88109-00017-1,0,4380_7778208_2700201,4380_888 -4380_78007,296,4380_54816,Skibbereen,88107-00021-1,0,4380_7778208_2700201,4380_890 -4380_78007,297,4380_54824,Killarney,88053-00008-1,1,4380_7778208_2700201,4380_892 -4380_78007,285,4380_54825,Killarney,88054-00009-1,1,4380_7778208_2700201,4380_895 -4380_78007,288,4380_54826,Killarney,88045-00011-1,1,4380_7778208_2700201,4380_895 -4380_78007,287,4380_54827,Killarney,88043-00012-1,1,4380_7778208_2700201,4380_895 -4380_78007,286,4380_54828,Killarney,88049-00010-1,1,4380_7778208_2700201,4380_895 -4380_78007,291,4380_54829,Killarney,88051-00013-1,1,4380_7778208_2700201,4380_895 -4380_78007,289,4380_54830,Killarney,88047-00014-1,1,4380_7778208_2700201,4380_895 -4380_78007,292,4380_54831,Killarney,88050-00016-1,1,4380_7778208_2700201,4380_895 -4380_78007,290,4380_54832,Killarney,88055-00015-1,1,4380_7778208_2700201,4380_895 -4380_78007,294,4380_54833,Killarney,88044-00018-1,1,4380_7778208_2700201,4380_895 -4380_78007,295,4380_54834,Killarney,88048-00019-1,1,4380_7778208_2700201,4380_895 -4380_78007,293,4380_54835,Killarney,88046-00017-1,1,4380_7778208_2700201,4380_895 -4380_78007,296,4380_54836,Killarney,88052-00021-1,1,4380_7778208_2700201,4380_895 -4380_78007,297,4380_54844,Killarney,88223-00008-1,1,4380_7778208_2700701,4380_894 -4380_78007,285,4380_54845,Killarney,88224-00009-1,1,4380_7778208_2700701,4380_894 -4380_78007,288,4380_54846,Killarney,88232-00011-1,1,4380_7778208_2700701,4380_894 -4380_78007,287,4380_54847,Killarney,88221-00012-1,1,4380_7778208_2700701,4380_894 -4380_78007,286,4380_54848,Killarney,88230-00010-1,1,4380_7778208_2700701,4380_894 -4380_78007,291,4380_54849,Killarney,88228-00013-1,1,4380_7778208_2700701,4380_894 -4380_78007,289,4380_54850,Killarney,88226-00014-1,1,4380_7778208_2700701,4380_894 -4380_78007,292,4380_54851,Killarney,88231-00016-1,1,4380_7778208_2700701,4380_894 -4380_78007,290,4380_54852,Killarney,88225-00015-1,1,4380_7778208_2700701,4380_894 -4380_78007,294,4380_54853,Killarney,88222-00018-1,1,4380_7778208_2700701,4380_894 -4380_78007,295,4380_54854,Killarney,88227-00019-1,1,4380_7778208_2700701,4380_894 -4380_78007,293,4380_54855,Killarney,88233-00017-1,1,4380_7778208_2700701,4380_894 -4380_78007,296,4380_54856,Killarney,88229-00021-1,1,4380_7778208_2700701,4380_894 -4380_77950,285,4380_5486,Drogheda,54211-00009-1,0,4380_7778208_1051101,4380_54 -4380_78007,297,4380_54864,Killarney,88259-00008-1,1,4380_7778208_2700701,4380_894 -4380_78007,285,4380_54865,Killarney,88249-00009-1,1,4380_7778208_2700701,4380_894 -4380_78007,288,4380_54866,Killarney,88257-00011-1,1,4380_7778208_2700701,4380_894 -4380_78007,287,4380_54867,Killarney,88255-00012-1,1,4380_7778208_2700701,4380_894 -4380_78007,286,4380_54868,Killarney,88247-00010-1,1,4380_7778208_2700701,4380_894 -4380_78007,291,4380_54869,Killarney,88251-00013-1,1,4380_7778208_2700701,4380_898 -4380_77950,286,4380_5487,Drogheda,54209-00010-1,0,4380_7778208_1051101,4380_54 -4380_78007,289,4380_54870,Killarney,88253-00014-1,1,4380_7778208_2700701,4380_894 -4380_78007,292,4380_54871,Killarney,88248-00016-1,1,4380_7778208_2700701,4380_894 -4380_78007,290,4380_54872,Killarney,88250-00015-1,1,4380_7778208_2700701,4380_894 -4380_78007,294,4380_54873,Killarney,88256-00018-1,1,4380_7778208_2700701,4380_894 -4380_78007,295,4380_54874,Killarney,88254-00019-1,1,4380_7778208_2700701,4380_894 -4380_78007,293,4380_54875,Killarney,88258-00017-1,1,4380_7778208_2700701,4380_894 -4380_78007,296,4380_54876,Killarney,88252-00021-1,1,4380_7778208_2700701,4380_898 -4380_77950,297,4380_5488,Drogheda,54302-00008-1,0,4380_7778208_1051102,4380_55 -4380_78007,297,4380_54884,Killarney,88132-00008-1,1,4380_7778208_2700202,4380_892 -4380_78007,285,4380_54885,Killarney,88143-00009-1,1,4380_7778208_2700202,4380_892 -4380_78007,288,4380_54886,Killarney,88141-00011-1,1,4380_7778208_2700202,4380_892 -4380_78007,287,4380_54887,Killarney,88139-00012-1,1,4380_7778208_2700202,4380_892 -4380_78007,286,4380_54888,Killarney,88137-00010-1,1,4380_7778208_2700202,4380_892 -4380_78007,291,4380_54889,Killarney,88135-00013-1,1,4380_7778208_2700202,4380_892 -4380_77950,288,4380_5489,Drogheda,54213-00011-1,0,4380_7778208_1051101,4380_54 -4380_78007,289,4380_54890,Killarney,88133-00014-1,1,4380_7778208_2700202,4380_892 -4380_78007,292,4380_54891,Killarney,88138-00016-1,1,4380_7778208_2700202,4380_892 -4380_78007,290,4380_54892,Killarney,88144-00015-1,1,4380_7778208_2700202,4380_892 -4380_78007,294,4380_54893,Killarney,88140-00018-1,1,4380_7778208_2700202,4380_892 -4380_78007,295,4380_54894,Killarney,88134-00019-1,1,4380_7778208_2700202,4380_892 -4380_78007,293,4380_54895,Killarney,88142-00017-1,1,4380_7778208_2700202,4380_892 -4380_78007,296,4380_54896,Killarney,88136-00021-1,1,4380_7778208_2700202,4380_892 -4380_78113,290,4380_549,Dundalk,50142-00015-1,0,4380_7778208_1000908,4380_10 -4380_77950,287,4380_5490,Drogheda,54203-00012-1,0,4380_7778208_1051101,4380_54 -4380_78007,297,4380_54904,Killarney,88275-00008-1,1,4380_7778208_2700701,4380_894 -4380_78007,285,4380_54905,Killarney,88273-00009-1,1,4380_7778208_2700701,4380_894 -4380_78007,288,4380_54906,Killarney,88280-00011-1,1,4380_7778208_2700701,4380_894 -4380_78007,287,4380_54907,Killarney,88284-00012-1,1,4380_7778208_2700701,4380_894 -4380_78007,286,4380_54908,Killarney,88276-00010-1,1,4380_7778208_2700701,4380_894 -4380_78007,291,4380_54909,Killarney,88278-00013-1,1,4380_7778208_2700701,4380_894 -4380_77950,289,4380_5491,Drogheda,54207-00014-1,0,4380_7778208_1051101,4380_54 -4380_78007,289,4380_54910,Killarney,88282-00014-1,1,4380_7778208_2700701,4380_894 -4380_78007,292,4380_54911,Killarney,88277-00016-1,1,4380_7778208_2700701,4380_894 -4380_78007,290,4380_54912,Killarney,88274-00015-1,1,4380_7778208_2700701,4380_894 -4380_78007,294,4380_54913,Killarney,88285-00018-1,1,4380_7778208_2700701,4380_894 -4380_78007,295,4380_54914,Killarney,88283-00019-1,1,4380_7778208_2700701,4380_894 -4380_78007,293,4380_54915,Killarney,88281-00017-1,1,4380_7778208_2700701,4380_894 -4380_78007,296,4380_54916,Killarney,88279-00021-1,1,4380_7778208_2700701,4380_894 -4380_77950,290,4380_5492,Drogheda,54212-00015-1,0,4380_7778208_1051101,4380_54 -4380_77950,291,4380_5493,Drogheda,54205-00013-1,0,4380_7778208_1051101,4380_57 -4380_78007,297,4380_54931,Killarney,88190-00008-1,1,4380_7778208_2700203,4380_892 -4380_78007,297,4380_54932,Killarney,88299-00008-1,1,4380_7778208_2700701,4380_894 -4380_78007,285,4380_54933,Killarney,88186-00009-1,1,4380_7778208_2700203,4380_892 -4380_78007,285,4380_54934,Killarney,88302-00009-1,1,4380_7778208_2700701,4380_894 -4380_78007,288,4380_54935,Killarney,88188-00011-1,1,4380_7778208_2700203,4380_892 -4380_78007,288,4380_54936,Killarney,88308-00011-1,1,4380_7778208_2700701,4380_894 -4380_78007,287,4380_54937,Killarney,88182-00012-1,1,4380_7778208_2700203,4380_892 -4380_78007,287,4380_54938,Killarney,88306-00012-1,1,4380_7778208_2700701,4380_894 -4380_78007,286,4380_54939,Killarney,88191-00010-1,1,4380_7778208_2700203,4380_892 -4380_77950,292,4380_5494,Drogheda,54210-00016-1,0,4380_7778208_1051101,4380_54 -4380_78007,286,4380_54940,Killarney,88300-00010-1,1,4380_7778208_2700701,4380_894 -4380_78007,291,4380_54941,Killarney,88193-00013-1,1,4380_7778208_2700203,4380_892 -4380_78007,291,4380_54942,Killarney,88304-00013-1,1,4380_7778208_2700701,4380_898 -4380_78007,289,4380_54943,Killarney,88184-00014-1,1,4380_7778208_2700203,4380_892 -4380_78007,289,4380_54944,Killarney,88310-00014-1,1,4380_7778208_2700701,4380_894 -4380_78007,292,4380_54945,Killarney,88192-00016-1,1,4380_7778208_2700203,4380_892 -4380_78007,292,4380_54946,Killarney,88301-00016-1,1,4380_7778208_2700701,4380_894 -4380_78007,290,4380_54947,Killarney,88187-00015-1,1,4380_7778208_2700203,4380_892 -4380_78007,290,4380_54948,Killarney,88303-00015-1,1,4380_7778208_2700701,4380_894 -4380_78007,294,4380_54949,Killarney,88183-00018-1,1,4380_7778208_2700203,4380_892 -4380_77950,293,4380_5495,Drogheda,54214-00017-1,0,4380_7778208_1051101,4380_54 -4380_78007,294,4380_54950,Killarney,88307-00018-1,1,4380_7778208_2700701,4380_894 -4380_78007,295,4380_54951,Killarney,88185-00019-1,1,4380_7778208_2700203,4380_892 -4380_78007,295,4380_54952,Killarney,88311-00019-1,1,4380_7778208_2700701,4380_894 -4380_78007,293,4380_54953,Killarney,88189-00017-1,1,4380_7778208_2700203,4380_892 -4380_78007,293,4380_54954,Killarney,88309-00017-1,1,4380_7778208_2700701,4380_894 -4380_78007,296,4380_54955,Killarney,88194-00021-1,1,4380_7778208_2700203,4380_892 -4380_78007,296,4380_54956,Killarney,88305-00021-1,1,4380_7778208_2700701,4380_898 -4380_77950,294,4380_5496,Drogheda,54204-00018-1,0,4380_7778208_1051101,4380_54 -4380_77950,295,4380_5497,Drogheda,54208-00019-1,0,4380_7778208_1051101,4380_54 -4380_78007,297,4380_54971,Killarney,88335-00008-1,1,4380_7778208_2700701,4380_894 -4380_78007,297,4380_54972,Killarney,88413-00008-1,1,4380_7778208_2700702,4380_892 -4380_78007,285,4380_54973,Killarney,88331-00009-1,1,4380_7778208_2700701,4380_894 -4380_78007,285,4380_54974,Killarney,88409-00009-1,1,4380_7778208_2700702,4380_892 -4380_78007,288,4380_54975,Killarney,88325-00011-1,1,4380_7778208_2700701,4380_894 -4380_78007,288,4380_54976,Killarney,88414-00011-1,1,4380_7778208_2700702,4380_892 -4380_78007,287,4380_54977,Killarney,88333-00012-1,1,4380_7778208_2700701,4380_894 -4380_78007,287,4380_54978,Killarney,88407-00012-1,1,4380_7778208_2700702,4380_892 -4380_78007,286,4380_54979,Killarney,88329-00010-1,1,4380_7778208_2700701,4380_894 -4380_77950,296,4380_5498,Drogheda,54206-00021-1,0,4380_7778208_1051101,4380_57 -4380_78007,286,4380_54980,Killarney,88411-00010-1,1,4380_7778208_2700702,4380_892 -4380_78007,291,4380_54981,Killarney,88336-00013-1,1,4380_7778208_2700701,4380_894 -4380_78007,291,4380_54982,Killarney,88405-00013-1,1,4380_7778208_2700702,4380_892 -4380_78007,289,4380_54983,Killarney,88327-00014-1,1,4380_7778208_2700701,4380_894 -4380_78007,289,4380_54984,Killarney,88403-00014-1,1,4380_7778208_2700702,4380_892 -4380_78007,292,4380_54985,Killarney,88330-00016-1,1,4380_7778208_2700701,4380_894 -4380_78007,292,4380_54986,Killarney,88412-00016-1,1,4380_7778208_2700702,4380_892 -4380_78007,290,4380_54987,Killarney,88332-00015-1,1,4380_7778208_2700701,4380_894 -4380_78007,290,4380_54988,Killarney,88410-00015-1,1,4380_7778208_2700702,4380_892 -4380_78007,294,4380_54989,Killarney,88334-00018-1,1,4380_7778208_2700701,4380_894 -4380_78007,294,4380_54990,Killarney,88408-00018-1,1,4380_7778208_2700702,4380_892 -4380_78007,295,4380_54991,Killarney,88328-00019-1,1,4380_7778208_2700701,4380_894 -4380_78007,295,4380_54992,Killarney,88404-00019-1,1,4380_7778208_2700702,4380_892 -4380_78007,293,4380_54993,Killarney,88326-00017-1,1,4380_7778208_2700701,4380_894 -4380_78007,293,4380_54994,Killarney,88415-00017-1,1,4380_7778208_2700702,4380_892 -4380_78007,296,4380_54995,Killarney,88337-00021-1,1,4380_7778208_2700701,4380_894 -4380_78007,296,4380_54996,Killarney,88406-00021-1,1,4380_7778208_2700702,4380_892 -4380_77946,287,4380_55,Dundalk,114781-00012-1,0,4380_7778208_10088802,4380_4 -4380_78113,291,4380_550,Dundalk,50135-00013-1,0,4380_7778208_1000908,4380_13 -4380_78007,297,4380_55004,Killarney,88355-00008-1,1,4380_7778208_2700701,4380_894 -4380_78007,285,4380_55005,Killarney,88356-00009-1,1,4380_7778208_2700701,4380_894 -4380_78007,288,4380_55006,Killarney,88353-00011-1,1,4380_7778208_2700701,4380_894 -4380_78007,287,4380_55007,Killarney,88362-00012-1,1,4380_7778208_2700701,4380_894 -4380_78007,286,4380_55008,Killarney,88360-00010-1,1,4380_7778208_2700701,4380_894 -4380_78007,291,4380_55009,Killarney,88358-00013-1,1,4380_7778208_2700701,4380_894 -4380_78007,289,4380_55010,Killarney,88351-00014-1,1,4380_7778208_2700701,4380_894 -4380_78007,292,4380_55011,Killarney,88361-00016-1,1,4380_7778208_2700701,4380_894 -4380_78007,290,4380_55012,Killarney,88357-00015-1,1,4380_7778208_2700701,4380_894 -4380_78007,294,4380_55013,Killarney,88363-00018-1,1,4380_7778208_2700701,4380_894 -4380_78007,295,4380_55014,Killarney,88352-00019-1,1,4380_7778208_2700701,4380_894 -4380_78007,293,4380_55015,Killarney,88354-00017-1,1,4380_7778208_2700701,4380_894 -4380_78007,296,4380_55016,Killarney,88359-00021-1,1,4380_7778208_2700701,4380_894 -4380_78007,297,4380_55024,Killarney,88099-00008-1,1,4380_7778208_2700201,4380_892 -4380_78007,285,4380_55025,Killarney,88100-00009-1,1,4380_7778208_2700201,4380_892 -4380_78007,288,4380_55026,Killarney,88104-00011-1,1,4380_7778208_2700201,4380_892 -4380_78007,287,4380_55027,Killarney,88102-00012-1,1,4380_7778208_2700201,4380_892 -4380_78007,286,4380_55028,Killarney,88093-00010-1,1,4380_7778208_2700201,4380_892 -4380_78007,291,4380_55029,Killarney,88095-00013-1,1,4380_7778208_2700201,4380_895 -4380_78007,289,4380_55030,Killarney,88097-00014-1,1,4380_7778208_2700201,4380_892 -4380_78007,292,4380_55031,Killarney,88094-00016-1,1,4380_7778208_2700201,4380_892 -4380_78007,290,4380_55032,Killarney,88101-00015-1,1,4380_7778208_2700201,4380_892 -4380_78007,294,4380_55033,Killarney,88103-00018-1,1,4380_7778208_2700201,4380_892 -4380_78007,295,4380_55034,Killarney,88098-00019-1,1,4380_7778208_2700201,4380_892 -4380_78007,293,4380_55035,Killarney,88105-00017-1,1,4380_7778208_2700201,4380_892 -4380_78007,296,4380_55036,Killarney,88096-00021-1,1,4380_7778208_2700201,4380_895 -4380_77950,285,4380_5504,Emerald Park,4480-00009-1,0,4380_7778208_1050101,4380_56 -4380_78007,297,4380_55044,Killarney,88389-00008-1,1,4380_7778208_2700701,4380_894 -4380_78007,285,4380_55045,Killarney,88385-00009-1,1,4380_7778208_2700701,4380_894 -4380_78007,288,4380_55046,Killarney,88381-00011-1,1,4380_7778208_2700701,4380_894 -4380_78007,287,4380_55047,Killarney,88387-00012-1,1,4380_7778208_2700701,4380_894 -4380_78007,286,4380_55048,Killarney,88379-00010-1,1,4380_7778208_2700701,4380_894 -4380_78007,291,4380_55049,Killarney,88377-00013-1,1,4380_7778208_2700701,4380_894 -4380_77950,286,4380_5505,Emerald Park,4494-00010-1,0,4380_7778208_1050101,4380_56 -4380_78007,289,4380_55050,Killarney,88383-00014-1,1,4380_7778208_2700701,4380_894 -4380_78007,292,4380_55051,Killarney,88380-00016-1,1,4380_7778208_2700701,4380_894 -4380_78007,290,4380_55052,Killarney,88386-00015-1,1,4380_7778208_2700701,4380_894 -4380_78007,294,4380_55053,Killarney,88388-00018-1,1,4380_7778208_2700701,4380_894 -4380_78007,295,4380_55054,Killarney,88384-00019-1,1,4380_7778208_2700701,4380_894 -4380_78007,293,4380_55055,Killarney,88382-00017-1,1,4380_7778208_2700701,4380_894 -4380_78007,296,4380_55056,Killarney,88378-00021-1,1,4380_7778208_2700701,4380_894 -4380_77950,288,4380_5506,Emerald Park,4536-00011-1,0,4380_7778208_1050101,4380_56 -4380_78007,297,4380_55064,Bantry via Bandon,88218-00008-1,1,4380_7778208_2700203,4380_893 -4380_78007,285,4380_55065,Bantry via Bandon,88212-00009-1,1,4380_7778208_2700203,4380_896 -4380_78007,288,4380_55066,Bantry via Bandon,88214-00011-1,1,4380_7778208_2700203,4380_896 -4380_78007,287,4380_55067,Bantry via Bandon,88216-00012-1,1,4380_7778208_2700203,4380_896 -4380_78007,286,4380_55068,Bantry via Bandon,88208-00010-1,1,4380_7778208_2700203,4380_896 -4380_78007,291,4380_55069,Bantry via Bandon,88210-00013-1,1,4380_7778208_2700203,4380_897 -4380_77950,287,4380_5507,Emerald Park,4564-00012-1,0,4380_7778208_1050101,4380_56 -4380_78007,289,4380_55070,Bantry via Bandon,88219-00014-1,1,4380_7778208_2700203,4380_896 -4380_78007,292,4380_55071,Bantry via Bandon,88209-00016-1,1,4380_7778208_2700203,4380_896 -4380_78007,290,4380_55072,Bantry via Bandon,88213-00015-1,1,4380_7778208_2700203,4380_896 -4380_78007,294,4380_55073,Bantry via Bandon,88217-00018-1,1,4380_7778208_2700203,4380_896 -4380_78007,295,4380_55074,Bantry via Bandon,88220-00019-1,1,4380_7778208_2700203,4380_896 -4380_78007,293,4380_55075,Bantry via Bandon,88215-00017-1,1,4380_7778208_2700203,4380_896 -4380_78007,296,4380_55076,Bantry via Bandon,88211-00021-1,1,4380_7778208_2700203,4380_897 -4380_77950,289,4380_5508,Ashbourne,53996-00014-1,0,4380_7778208_1050101,4380_52 -4380_78008,285,4380_55082,Killarney,89124-00009-1,0,4380_7778208_2790703,4380_902 -4380_78008,288,4380_55083,Killarney,89126-00011-1,0,4380_7778208_2790703,4380_902 -4380_78008,287,4380_55084,Killarney,89120-00012-1,0,4380_7778208_2790703,4380_902 -4380_78008,286,4380_55085,Killarney,89128-00010-1,0,4380_7778208_2790703,4380_902 -4380_78008,289,4380_55086,Killarney,89122-00014-1,0,4380_7778208_2790703,4380_902 -4380_78008,292,4380_55087,Killarney,89129-00016-1,0,4380_7778208_2790703,4380_902 -4380_78008,290,4380_55088,Killarney,89125-00015-1,0,4380_7778208_2790703,4380_902 -4380_78008,294,4380_55089,Killarney,89121-00018-1,0,4380_7778208_2790703,4380_902 -4380_77950,290,4380_5509,Ashbourne,53995-00015-1,0,4380_7778208_1050101,4380_52 -4380_78008,295,4380_55090,Killarney,89123-00019-1,0,4380_7778208_2790703,4380_902 -4380_78008,293,4380_55091,Killarney,89127-00017-1,0,4380_7778208_2790703,4380_902 -4380_78008,291,4380_55093,Killarney,88758-00013-1,0,4380_7778208_2750702,4380_899 -4380_78008,296,4380_55094,Killarney,88759-00021-1,0,4380_7778208_2750702,4380_899 -4380_78113,292,4380_551,Dundalk,50134-00016-1,0,4380_7778208_1000908,4380_10 -4380_77950,292,4380_5510,Ashbourne,53999-00016-1,0,4380_7778208_1050101,4380_52 -4380_78008,285,4380_55101,Airport,88656-00009-1,0,4380_7778208_2750701,4380_900 -4380_78008,288,4380_55102,Airport,88652-00011-1,0,4380_7778208_2750701,4380_900 -4380_78008,287,4380_55103,Airport,88650-00012-1,0,4380_7778208_2750701,4380_900 -4380_78008,286,4380_55104,Airport,88654-00010-1,0,4380_7778208_2750701,4380_900 -4380_78008,291,4380_55105,Airport,88446-00013-1,0,4380_7778208_2710701,4380_903 -4380_78008,289,4380_55106,Airport,88658-00014-1,0,4380_7778208_2750701,4380_900 -4380_78008,292,4380_55107,Airport,88655-00016-1,0,4380_7778208_2750701,4380_900 -4380_78008,290,4380_55108,Airport,88657-00015-1,0,4380_7778208_2750701,4380_900 -4380_78008,294,4380_55109,Airport,88651-00018-1,0,4380_7778208_2750701,4380_900 -4380_77950,293,4380_5511,Ashbourne,53998-00017-1,0,4380_7778208_1050101,4380_52 -4380_78008,295,4380_55110,Airport,88659-00019-1,0,4380_7778208_2750701,4380_900 -4380_78008,293,4380_55111,Airport,88653-00017-1,0,4380_7778208_2750701,4380_900 -4380_78008,296,4380_55112,Airport,88447-00021-1,0,4380_7778208_2710701,4380_903 -4380_78008,285,4380_55119,Killarney,88504-00009-1,0,4380_7778208_2710702,4380_899 -4380_77950,294,4380_5512,Ashbourne,53997-00018-1,0,4380_7778208_1050101,4380_52 -4380_78008,288,4380_55120,Killarney,88500-00011-1,0,4380_7778208_2710702,4380_899 -4380_78008,287,4380_55121,Killarney,88498-00012-1,0,4380_7778208_2710702,4380_899 -4380_78008,286,4380_55122,Killarney,88506-00010-1,0,4380_7778208_2710702,4380_899 -4380_78008,291,4380_55123,Killarney,88460-00013-1,0,4380_7778208_2710701,4380_904 -4380_78008,289,4380_55124,Killarney,88502-00014-1,0,4380_7778208_2710702,4380_899 -4380_78008,292,4380_55125,Killarney,88507-00016-1,0,4380_7778208_2710702,4380_899 -4380_78008,290,4380_55126,Killarney,88505-00015-1,0,4380_7778208_2710702,4380_899 -4380_78008,294,4380_55127,Killarney,88499-00018-1,0,4380_7778208_2710702,4380_899 -4380_78008,295,4380_55128,Killarney,88503-00019-1,0,4380_7778208_2710702,4380_899 -4380_78008,293,4380_55129,Killarney,88501-00017-1,0,4380_7778208_2710702,4380_899 -4380_77950,295,4380_5513,Emerald Park,4452-00019-1,0,4380_7778208_1050101,4380_56 -4380_78008,296,4380_55130,Killarney,88461-00021-1,0,4380_7778208_2710701,4380_904 -4380_78008,285,4380_55137,Airport,89060-00009-1,0,4380_7778208_2790702,4380_901 -4380_78008,288,4380_55138,Airport,89056-00011-1,0,4380_7778208_2790702,4380_901 -4380_78008,287,4380_55139,Airport,89052-00012-1,0,4380_7778208_2790702,4380_901 -4380_78008,286,4380_55140,Airport,89058-00010-1,0,4380_7778208_2790702,4380_901 -4380_78008,291,4380_55141,Airport,88484-00013-1,0,4380_7778208_2710701,4380_900 -4380_78008,289,4380_55142,Airport,89054-00014-1,0,4380_7778208_2790702,4380_901 -4380_78008,292,4380_55143,Airport,89059-00016-1,0,4380_7778208_2790702,4380_901 -4380_78008,290,4380_55144,Airport,89061-00015-1,0,4380_7778208_2790702,4380_901 -4380_78008,294,4380_55145,Airport,89053-00018-1,0,4380_7778208_2790702,4380_901 -4380_78008,295,4380_55146,Airport,89055-00019-1,0,4380_7778208_2790702,4380_901 -4380_78008,293,4380_55147,Airport,89057-00017-1,0,4380_7778208_2790702,4380_901 -4380_78008,296,4380_55148,Airport,88485-00021-1,0,4380_7778208_2710701,4380_900 -4380_77950,291,4380_5515,Emerald Park,54000-00013-1,0,4380_7778208_1050101,4380_56 -4380_78008,285,4380_55154,Tralee,88418-00009-1,1,4380_7778208_2710701,4380_905 -4380_78008,288,4380_55155,Tralee,88416-00011-1,1,4380_7778208_2710701,4380_905 -4380_78008,287,4380_55156,Tralee,88424-00012-1,1,4380_7778208_2710701,4380_905 -4380_78008,286,4380_55157,Tralee,88420-00010-1,1,4380_7778208_2710701,4380_905 -4380_78008,289,4380_55158,Tralee,88422-00014-1,1,4380_7778208_2710701,4380_905 -4380_78008,292,4380_55159,Tralee,88421-00016-1,1,4380_7778208_2710701,4380_905 -4380_77950,296,4380_5516,Ashbourne,4578-00021-1,0,4380_7778208_1050101,4380_52 -4380_78008,290,4380_55160,Tralee,88419-00015-1,1,4380_7778208_2710701,4380_905 -4380_78008,294,4380_55161,Tralee,88425-00018-1,1,4380_7778208_2710701,4380_905 -4380_78008,295,4380_55162,Tralee,88423-00019-1,1,4380_7778208_2710701,4380_905 -4380_78008,293,4380_55163,Tralee,88417-00017-1,1,4380_7778208_2710701,4380_905 -4380_78008,285,4380_55170,Tralee,88660-00009-1,1,4380_7778208_2750701,4380_907 -4380_78008,288,4380_55171,Tralee,88670-00011-1,1,4380_7778208_2750701,4380_907 -4380_78008,287,4380_55172,Tralee,88664-00012-1,1,4380_7778208_2750701,4380_907 -4380_78008,286,4380_55173,Tralee,88666-00010-1,1,4380_7778208_2750701,4380_907 -4380_78008,291,4380_55174,Tralee,88448-00013-1,1,4380_7778208_2710701,4380_907 -4380_78008,289,4380_55175,Tralee,88668-00014-1,1,4380_7778208_2750701,4380_907 -4380_78008,292,4380_55176,Tralee,88667-00016-1,1,4380_7778208_2750701,4380_907 -4380_78008,290,4380_55177,Tralee,88661-00015-1,1,4380_7778208_2750701,4380_907 -4380_78008,294,4380_55178,Tralee,88665-00018-1,1,4380_7778208_2750701,4380_907 -4380_78008,295,4380_55179,Tralee,88669-00019-1,1,4380_7778208_2750701,4380_907 -4380_78008,293,4380_55180,Tralee,88671-00017-1,1,4380_7778208_2750701,4380_907 -4380_78008,296,4380_55181,Tralee,88449-00021-1,1,4380_7778208_2710701,4380_907 -4380_78008,285,4380_55188,Tralee,88512-00009-1,1,4380_7778208_2710702,4380_906 -4380_78008,288,4380_55189,Tralee,88510-00011-1,1,4380_7778208_2710702,4380_906 -4380_78008,287,4380_55190,Tralee,88508-00012-1,1,4380_7778208_2710702,4380_906 -4380_78008,286,4380_55191,Tralee,88514-00010-1,1,4380_7778208_2710702,4380_906 -4380_78008,291,4380_55192,Tralee,88472-00013-1,1,4380_7778208_2710701,4380_906 -4380_78008,289,4380_55193,Tralee,88516-00014-1,1,4380_7778208_2710702,4380_906 -4380_78008,292,4380_55194,Tralee,88515-00016-1,1,4380_7778208_2710702,4380_906 -4380_78008,290,4380_55195,Tralee,88513-00015-1,1,4380_7778208_2710702,4380_906 -4380_78008,294,4380_55196,Tralee,88509-00018-1,1,4380_7778208_2710702,4380_906 -4380_78008,295,4380_55197,Tralee,88517-00019-1,1,4380_7778208_2710702,4380_906 -4380_78008,293,4380_55198,Tralee,88511-00017-1,1,4380_7778208_2710702,4380_906 -4380_78008,296,4380_55199,Tralee,88473-00021-1,1,4380_7778208_2710701,4380_906 -4380_78113,293,4380_552,Dundalk,50140-00017-1,0,4380_7778208_1000908,4380_10 -4380_78008,291,4380_55201,Tralee,88486-00013-1,1,4380_7778208_2710701,4380_907 -4380_78008,296,4380_55202,Tralee,88487-00021-1,1,4380_7778208_2710701,4380_907 -4380_78008,285,4380_55208,Tralee,89069-00009-1,1,4380_7778208_2790702,4380_907 -4380_78008,288,4380_55209,Tralee,89067-00011-1,1,4380_7778208_2790702,4380_907 -4380_78008,287,4380_55210,Tralee,89065-00012-1,1,4380_7778208_2790702,4380_907 -4380_78008,286,4380_55211,Tralee,89073-00010-1,1,4380_7778208_2790702,4380_907 -4380_78008,289,4380_55212,Tralee,89071-00014-1,1,4380_7778208_2790702,4380_907 -4380_78008,292,4380_55213,Tralee,89074-00016-1,1,4380_7778208_2790702,4380_907 -4380_78008,290,4380_55214,Tralee,89070-00015-1,1,4380_7778208_2790702,4380_907 -4380_78008,294,4380_55215,Tralee,89066-00018-1,1,4380_7778208_2790702,4380_907 -4380_78008,295,4380_55216,Tralee,89072-00019-1,1,4380_7778208_2790702,4380_907 -4380_78008,293,4380_55217,Tralee,89068-00017-1,1,4380_7778208_2790702,4380_907 -4380_78009,297,4380_55225,Ballybunion,88563-00008-1,0,4380_7778208_2720701,4380_908 -4380_78009,285,4380_55226,Ballybunion,88559-00009-1,0,4380_7778208_2720701,4380_910 -4380_78009,288,4380_55227,Ballybunion,88551-00011-1,0,4380_7778208_2720701,4380_910 -4380_78009,287,4380_55228,Ballybunion,88553-00012-1,0,4380_7778208_2720701,4380_910 -4380_78009,286,4380_55229,Ballybunion,88555-00010-1,0,4380_7778208_2720701,4380_910 -4380_78009,291,4380_55230,Ballybunion,88561-00013-1,0,4380_7778208_2720701,4380_908 -4380_78009,289,4380_55231,Ballybunion,88557-00014-1,0,4380_7778208_2720701,4380_910 -4380_78009,292,4380_55232,Ballybunion,88556-00016-1,0,4380_7778208_2720701,4380_910 -4380_78009,290,4380_55233,Ballybunion,88560-00015-1,0,4380_7778208_2720701,4380_910 -4380_78009,294,4380_55234,Ballybunion,88554-00018-1,0,4380_7778208_2720701,4380_910 -4380_78009,295,4380_55235,Ballybunion,88558-00019-1,0,4380_7778208_2720701,4380_910 -4380_78009,293,4380_55236,Ballybunion,88552-00017-1,0,4380_7778208_2720701,4380_910 -4380_78009,296,4380_55237,Ballybunion,88562-00021-1,0,4380_7778208_2720701,4380_908 -4380_77950,285,4380_5524,Drogheda,54305-00009-1,0,4380_7778208_1051102,4380_54 -4380_78009,297,4380_55244,Ballybunion,89013-00008-1,0,4380_7778208_2790702,4380_908 -4380_78009,285,4380_55245,Ballybunion,88450-00009-1,0,4380_7778208_2710701,4380_908 -4380_78009,288,4380_55247,Ballybunion,88458-00011-1,0,4380_7778208_2710701,4380_908 -4380_78009,287,4380_55248,Ballybunion,88452-00012-1,0,4380_7778208_2710701,4380_908 -4380_78009,286,4380_55249,Ballybunion,88456-00010-1,0,4380_7778208_2710701,4380_908 -4380_77950,286,4380_5525,Drogheda,54309-00010-1,0,4380_7778208_1051102,4380_54 -4380_78009,291,4380_55250,Ballybunion,88604-00013-1,0,4380_7778208_2720702,4380_908 -4380_78009,289,4380_55251,Ballybunion,88454-00014-1,0,4380_7778208_2710701,4380_908 -4380_78009,292,4380_55252,Ballybunion,88457-00016-1,0,4380_7778208_2710701,4380_908 -4380_78009,290,4380_55253,Ballybunion,88451-00015-1,0,4380_7778208_2710701,4380_908 -4380_78009,294,4380_55254,Ballybunion,88453-00018-1,0,4380_7778208_2710701,4380_908 -4380_78009,295,4380_55255,Ballybunion,88455-00019-1,0,4380_7778208_2710701,4380_908 -4380_78009,293,4380_55256,Ballybunion,88459-00017-1,0,4380_7778208_2710701,4380_908 -4380_78009,296,4380_55257,Ballybunion,88605-00021-1,0,4380_7778208_2720702,4380_908 -4380_77950,297,4380_5526,Drogheda,54402-00008-1,0,4380_7778208_1051103,4380_55 -4380_78009,297,4380_55264,Ballybunion,88589-00008-1,0,4380_7778208_2720701,4380_909 -4380_78009,285,4380_55265,Ballybunion,89029-00009-1,0,4380_7778208_2790702,4380_909 -4380_78009,288,4380_55267,Ballybunion,89033-00011-1,0,4380_7778208_2790702,4380_909 -4380_78009,287,4380_55268,Ballybunion,89035-00012-1,0,4380_7778208_2790702,4380_909 -4380_78009,286,4380_55269,Ballybunion,89031-00010-1,0,4380_7778208_2790702,4380_909 -4380_77950,288,4380_5527,Drogheda,54307-00011-1,0,4380_7778208_1051102,4380_54 -4380_78009,291,4380_55270,Ballybunion,88612-00013-1,0,4380_7778208_2720703,4380_909 -4380_78009,289,4380_55271,Ballybunion,89037-00014-1,0,4380_7778208_2790702,4380_909 -4380_78009,292,4380_55272,Ballybunion,89032-00016-1,0,4380_7778208_2790702,4380_909 -4380_78009,290,4380_55273,Ballybunion,89030-00015-1,0,4380_7778208_2790702,4380_909 -4380_78009,294,4380_55274,Ballybunion,89036-00018-1,0,4380_7778208_2790702,4380_909 -4380_78009,295,4380_55275,Ballybunion,89038-00019-1,0,4380_7778208_2790702,4380_909 -4380_78009,293,4380_55276,Ballybunion,89034-00017-1,0,4380_7778208_2790702,4380_909 -4380_78009,296,4380_55277,Ballybunion,88613-00021-1,0,4380_7778208_2720703,4380_909 -4380_77950,287,4380_5528,Drogheda,54303-00012-1,0,4380_7778208_1051102,4380_54 -4380_78009,297,4380_55285,Ballybunion,88601-00008-1,0,4380_7778208_2720701,4380_909 -4380_78009,285,4380_55286,Ballybunion,88595-00009-1,0,4380_7778208_2720701,4380_911 -4380_78009,288,4380_55287,Ballybunion,88591-00011-1,0,4380_7778208_2720701,4380_911 -4380_78009,287,4380_55288,Ballybunion,88602-00012-1,0,4380_7778208_2720701,4380_911 -4380_78009,286,4380_55289,Ballybunion,88599-00010-1,0,4380_7778208_2720701,4380_911 -4380_77950,289,4380_5529,Drogheda,54311-00014-1,0,4380_7778208_1051102,4380_54 -4380_78009,291,4380_55290,Ballybunion,88597-00013-1,0,4380_7778208_2720701,4380_909 -4380_78009,289,4380_55291,Ballybunion,88593-00014-1,0,4380_7778208_2720701,4380_911 -4380_78009,292,4380_55292,Ballybunion,88600-00016-1,0,4380_7778208_2720701,4380_911 -4380_78009,290,4380_55293,Ballybunion,88596-00015-1,0,4380_7778208_2720701,4380_911 -4380_78009,294,4380_55294,Ballybunion,88603-00018-1,0,4380_7778208_2720701,4380_911 -4380_78009,295,4380_55295,Ballybunion,88594-00019-1,0,4380_7778208_2720701,4380_911 -4380_78009,293,4380_55296,Ballybunion,88592-00017-1,0,4380_7778208_2720701,4380_911 -4380_78009,296,4380_55297,Ballybunion,88598-00021-1,0,4380_7778208_2720701,4380_909 -4380_78113,294,4380_553,Dundalk,50138-00018-1,0,4380_7778208_1000908,4380_10 -4380_77950,290,4380_5530,Drogheda,54306-00015-1,0,4380_7778208_1051102,4380_54 -4380_78009,297,4380_55304,Ballybunion,89228-00008-1,0,4380_7778208_2790704,4380_908 -4380_78009,285,4380_55305,Ballybunion,89190-00009-1,0,4380_7778208_2790703,4380_908 -4380_78009,288,4380_55307,Ballybunion,89188-00011-1,0,4380_7778208_2790703,4380_908 -4380_78009,287,4380_55308,Ballybunion,89194-00012-1,0,4380_7778208_2790703,4380_908 -4380_78009,286,4380_55309,Ballybunion,89186-00010-1,0,4380_7778208_2790703,4380_908 -4380_77950,291,4380_5531,Drogheda,54541-00013-1,0,4380_7778208_1051105,4380_57 -4380_78009,291,4380_55310,Ballybunion,89086-00013-1,0,4380_7778208_2790702,4380_908 -4380_78009,289,4380_55311,Ballybunion,89192-00014-1,0,4380_7778208_2790703,4380_908 -4380_78009,292,4380_55312,Ballybunion,89187-00016-1,0,4380_7778208_2790703,4380_908 -4380_78009,290,4380_55313,Ballybunion,89191-00015-1,0,4380_7778208_2790703,4380_908 -4380_78009,294,4380_55314,Ballybunion,89195-00018-1,0,4380_7778208_2790703,4380_908 -4380_78009,295,4380_55315,Ballybunion,89193-00019-1,0,4380_7778208_2790703,4380_908 -4380_78009,293,4380_55316,Ballybunion,89189-00017-1,0,4380_7778208_2790703,4380_908 -4380_78009,296,4380_55317,Ballybunion,89087-00021-1,0,4380_7778208_2790702,4380_908 -4380_77950,292,4380_5532,Drogheda,54310-00016-1,0,4380_7778208_1051102,4380_54 -4380_78009,297,4380_55325,Tralee,88546-00008-1,1,4380_7778208_2720701,4380_912 -4380_78009,285,4380_55326,Tralee,88544-00009-1,1,4380_7778208_2720701,4380_915 -4380_78009,288,4380_55327,Tralee,88540-00011-1,1,4380_7778208_2720701,4380_915 -4380_78009,287,4380_55328,Tralee,88542-00012-1,1,4380_7778208_2720701,4380_915 -4380_78009,286,4380_55329,Tralee,88549-00010-1,1,4380_7778208_2720701,4380_915 -4380_77950,293,4380_5533,Drogheda,54308-00017-1,0,4380_7778208_1051102,4380_54 -4380_78009,291,4380_55330,Tralee,88547-00013-1,1,4380_7778208_2720701,4380_912 -4380_78009,289,4380_55331,Tralee,88538-00014-1,1,4380_7778208_2720701,4380_915 -4380_78009,292,4380_55332,Tralee,88550-00016-1,1,4380_7778208_2720701,4380_915 -4380_78009,290,4380_55333,Tralee,88545-00015-1,1,4380_7778208_2720701,4380_915 -4380_78009,294,4380_55334,Tralee,88543-00018-1,1,4380_7778208_2720701,4380_915 -4380_78009,295,4380_55335,Tralee,88539-00019-1,1,4380_7778208_2720701,4380_915 -4380_78009,293,4380_55336,Tralee,88541-00017-1,1,4380_7778208_2720701,4380_915 -4380_78009,296,4380_55337,Tralee,88548-00021-1,1,4380_7778208_2720701,4380_912 -4380_77950,294,4380_5534,Drogheda,54304-00018-1,0,4380_7778208_1051102,4380_54 -4380_78009,297,4380_55345,Tralee,88564-00008-1,1,4380_7778208_2720701,4380_913 -4380_78009,285,4380_55346,Tralee,88573-00009-1,1,4380_7778208_2720701,4380_914 -4380_78009,288,4380_55347,Tralee,88565-00011-1,1,4380_7778208_2720701,4380_914 -4380_78009,287,4380_55348,Tralee,88569-00012-1,1,4380_7778208_2720701,4380_914 -4380_78009,286,4380_55349,Tralee,88575-00010-1,1,4380_7778208_2720701,4380_914 -4380_77950,295,4380_5535,Drogheda,54312-00019-1,0,4380_7778208_1051102,4380_54 -4380_78009,291,4380_55350,Tralee,88571-00013-1,1,4380_7778208_2720701,4380_913 -4380_78009,289,4380_55351,Tralee,88567-00014-1,1,4380_7778208_2720701,4380_914 -4380_78009,292,4380_55352,Tralee,88576-00016-1,1,4380_7778208_2720701,4380_914 -4380_78009,290,4380_55353,Tralee,88574-00015-1,1,4380_7778208_2720701,4380_914 -4380_78009,294,4380_55354,Tralee,88570-00018-1,1,4380_7778208_2720701,4380_914 -4380_78009,295,4380_55355,Tralee,88568-00019-1,1,4380_7778208_2720701,4380_914 -4380_78009,293,4380_55356,Tralee,88566-00017-1,1,4380_7778208_2720701,4380_914 -4380_78009,296,4380_55357,Tralee,88572-00021-1,1,4380_7778208_2720701,4380_913 -4380_77950,296,4380_5536,Drogheda,54542-00021-1,0,4380_7778208_1051105,4380_57 -4380_78009,297,4380_55364,Tralee,89026-00008-1,1,4380_7778208_2790702,4380_913 -4380_78009,285,4380_55365,Tralee,88464-00009-1,1,4380_7778208_2710701,4380_914 -4380_78009,288,4380_55367,Tralee,88462-00011-1,1,4380_7778208_2710701,4380_914 -4380_78009,287,4380_55368,Tralee,88470-00012-1,1,4380_7778208_2710701,4380_914 -4380_78009,286,4380_55369,Tralee,88466-00010-1,1,4380_7778208_2710701,4380_914 -4380_78009,291,4380_55370,Tralee,88606-00013-1,1,4380_7778208_2720702,4380_913 -4380_78009,289,4380_55371,Tralee,88468-00014-1,1,4380_7778208_2710701,4380_914 -4380_78009,292,4380_55372,Tralee,88467-00016-1,1,4380_7778208_2710701,4380_914 -4380_78009,290,4380_55373,Tralee,88465-00015-1,1,4380_7778208_2710701,4380_914 -4380_78009,294,4380_55374,Tralee,88471-00018-1,1,4380_7778208_2710701,4380_914 -4380_78009,295,4380_55375,Tralee,88469-00019-1,1,4380_7778208_2710701,4380_914 -4380_78009,293,4380_55376,Tralee,88463-00017-1,1,4380_7778208_2710701,4380_914 -4380_78009,296,4380_55377,Tralee,88607-00021-1,1,4380_7778208_2720702,4380_913 -4380_78009,297,4380_55384,Tralee,88590-00008-1,1,4380_7778208_2720701,4380_912 -4380_78009,285,4380_55385,Tralee,89043-00009-1,1,4380_7778208_2790702,4380_915 -4380_78009,288,4380_55387,Tralee,89046-00011-1,1,4380_7778208_2790702,4380_915 -4380_78009,287,4380_55388,Tralee,89041-00012-1,1,4380_7778208_2790702,4380_915 -4380_78009,286,4380_55389,Tralee,89048-00010-1,1,4380_7778208_2790702,4380_915 -4380_78009,291,4380_55390,Tralee,88614-00013-1,1,4380_7778208_2720703,4380_912 -4380_78009,289,4380_55391,Tralee,89039-00014-1,1,4380_7778208_2790702,4380_915 -4380_78009,292,4380_55392,Tralee,89049-00016-1,1,4380_7778208_2790702,4380_915 -4380_78009,290,4380_55393,Tralee,89044-00015-1,1,4380_7778208_2790702,4380_915 -4380_78009,294,4380_55394,Tralee,89042-00018-1,1,4380_7778208_2790702,4380_915 -4380_78009,295,4380_55395,Tralee,89040-00019-1,1,4380_7778208_2790702,4380_915 -4380_78009,293,4380_55396,Tralee,89047-00017-1,1,4380_7778208_2790702,4380_915 -4380_78009,296,4380_55397,Tralee,88615-00021-1,1,4380_7778208_2720703,4380_912 -4380_78113,295,4380_554,Dundalk,50144-00019-1,0,4380_7778208_1000908,4380_10 -4380_78009,297,4380_55404,Tralee,89227-00008-1,1,4380_7778208_2790704,4380_913 -4380_78009,285,4380_55405,Tralee,88492-00009-1,1,4380_7778208_2710701,4380_913 -4380_78009,288,4380_55407,Tralee,88494-00011-1,1,4380_7778208_2710701,4380_913 -4380_78009,287,4380_55408,Tralee,88490-00012-1,1,4380_7778208_2710701,4380_913 -4380_78009,286,4380_55409,Tralee,88488-00010-1,1,4380_7778208_2710701,4380_913 -4380_78009,291,4380_55410,Tralee,88610-00013-1,1,4380_7778208_2720702,4380_913 -4380_78009,289,4380_55411,Tralee,88496-00014-1,1,4380_7778208_2710701,4380_913 -4380_78009,292,4380_55412,Tralee,88489-00016-1,1,4380_7778208_2710701,4380_913 -4380_78009,290,4380_55413,Tralee,88493-00015-1,1,4380_7778208_2710701,4380_913 -4380_78009,294,4380_55414,Tralee,88491-00018-1,1,4380_7778208_2710701,4380_913 -4380_78009,295,4380_55415,Tralee,88497-00019-1,1,4380_7778208_2710701,4380_913 -4380_78009,293,4380_55416,Tralee,88495-00017-1,1,4380_7778208_2710701,4380_913 -4380_78009,296,4380_55417,Tralee,88611-00021-1,1,4380_7778208_2720702,4380_913 -4380_78010,285,4380_55423,Dingle,89106-00009-1,0,4380_7778208_2790703,4380_916 -4380_78010,288,4380_55425,Dingle,89108-00011-1,0,4380_7778208_2790703,4380_916 -4380_78010,287,4380_55426,Dingle,89100-00012-1,0,4380_7778208_2790703,4380_916 -4380_78010,286,4380_55427,Dingle,89102-00010-1,0,4380_7778208_2790703,4380_916 -4380_78010,291,4380_55428,Dingle,88744-00013-1,0,4380_7778208_2750702,4380_916 -4380_78010,289,4380_55429,Dingle,89104-00014-1,0,4380_7778208_2790703,4380_916 -4380_77950,285,4380_5543,Emerald Park,4634-00009-1,0,4380_7778208_1050102,4380_58 -4380_78010,292,4380_55430,Dingle,89103-00016-1,0,4380_7778208_2790703,4380_916 -4380_78010,290,4380_55431,Dingle,89107-00015-1,0,4380_7778208_2790703,4380_916 -4380_78010,294,4380_55432,Dingle,89101-00018-1,0,4380_7778208_2790703,4380_916 -4380_78010,295,4380_55433,Dingle,89105-00019-1,0,4380_7778208_2790703,4380_916 -4380_78010,293,4380_55434,Dingle,89109-00017-1,0,4380_7778208_2790703,4380_916 -4380_78010,296,4380_55435,Dingle,88745-00021-1,0,4380_7778208_2750702,4380_916 -4380_77950,286,4380_5544,Emerald Park,4676-00010-1,0,4380_7778208_1050102,4380_58 -4380_78010,285,4380_55441,Dingle,88636-00009-1,0,4380_7778208_2750701,4380_916 -4380_78010,288,4380_55443,Dingle,88632-00011-1,0,4380_7778208_2750701,4380_916 -4380_78010,287,4380_55444,Dingle,88630-00012-1,0,4380_7778208_2750701,4380_916 -4380_78010,286,4380_55445,Dingle,88626-00010-1,0,4380_7778208_2750701,4380_916 -4380_78010,291,4380_55446,Dingle,88628-00013-1,0,4380_7778208_2750701,4380_917 -4380_78010,289,4380_55447,Dingle,88634-00014-1,0,4380_7778208_2750701,4380_916 -4380_78010,292,4380_55448,Dingle,88627-00016-1,0,4380_7778208_2750701,4380_916 -4380_78010,290,4380_55449,Dingle,88637-00015-1,0,4380_7778208_2750701,4380_916 -4380_77950,288,4380_5545,Emerald Park,4690-00011-1,0,4380_7778208_1050102,4380_58 -4380_78010,294,4380_55450,Dingle,88631-00018-1,0,4380_7778208_2750701,4380_916 -4380_78010,295,4380_55451,Dingle,88635-00019-1,0,4380_7778208_2750701,4380_916 -4380_78010,293,4380_55452,Dingle,88633-00017-1,0,4380_7778208_2750701,4380_916 -4380_78010,296,4380_55453,Dingle,88629-00021-1,0,4380_7778208_2750701,4380_917 -4380_77950,287,4380_5546,Emerald Park,4718-00012-1,0,4380_7778208_1050102,4380_58 -4380_78010,297,4380_55460,Dingle,88622-00008-1,0,4380_7778208_2750401,4380_916 -4380_78010,285,4380_55461,Dingle,88428-00009-1,0,4380_7778208_2710701,4380_917 -4380_78010,288,4380_55463,Dingle,88432-00011-1,0,4380_7778208_2710701,4380_917 -4380_78010,287,4380_55464,Dingle,88426-00012-1,0,4380_7778208_2710701,4380_917 -4380_78010,286,4380_55465,Dingle,88430-00010-1,0,4380_7778208_2710701,4380_917 -4380_78010,291,4380_55466,Dingle,88835-00013-1,0,4380_7778208_2750703,4380_918 -4380_78010,289,4380_55467,Dingle,88434-00014-1,0,4380_7778208_2710701,4380_917 -4380_78010,292,4380_55468,Dingle,88431-00016-1,0,4380_7778208_2710701,4380_917 -4380_78010,290,4380_55469,Dingle,88429-00015-1,0,4380_7778208_2710701,4380_917 -4380_77950,289,4380_5547,Ashbourne,54080-00014-1,0,4380_7778208_1050102,4380_52 -4380_78010,294,4380_55470,Dingle,88427-00018-1,0,4380_7778208_2710701,4380_917 -4380_78010,295,4380_55471,Dingle,88435-00019-1,0,4380_7778208_2710701,4380_917 -4380_78010,293,4380_55472,Dingle,88433-00017-1,0,4380_7778208_2710701,4380_917 -4380_78010,296,4380_55473,Dingle,88836-00021-1,0,4380_7778208_2750703,4380_918 -4380_77950,290,4380_5548,Ashbourne,54082-00015-1,0,4380_7778208_1050102,4380_52 -4380_78010,297,4380_55480,Dingle,88766-00008-1,0,4380_7778208_2750702,4380_916 -4380_78010,285,4380_55481,Dingle,88762-00009-1,0,4380_7778208_2750702,4380_917 -4380_78010,288,4380_55483,Dingle,88760-00011-1,0,4380_7778208_2750702,4380_917 -4380_78010,287,4380_55484,Dingle,88764-00012-1,0,4380_7778208_2750702,4380_917 -4380_78010,286,4380_55485,Dingle,88769-00010-1,0,4380_7778208_2750702,4380_917 -4380_78010,291,4380_55486,Dingle,88662-00013-1,0,4380_7778208_2750701,4380_918 -4380_78010,289,4380_55487,Dingle,88767-00014-1,0,4380_7778208_2750702,4380_917 -4380_78010,292,4380_55488,Dingle,88770-00016-1,0,4380_7778208_2750702,4380_917 -4380_78010,290,4380_55489,Dingle,88763-00015-1,0,4380_7778208_2750702,4380_917 -4380_77950,291,4380_5549,Emerald Park,54081-00013-1,0,4380_7778208_1050102,4380_56 -4380_78010,294,4380_55490,Dingle,88765-00018-1,0,4380_7778208_2750702,4380_917 -4380_78010,295,4380_55491,Dingle,88768-00019-1,0,4380_7778208_2750702,4380_917 -4380_78010,293,4380_55492,Dingle,88761-00017-1,0,4380_7778208_2750702,4380_917 -4380_78010,296,4380_55493,Dingle,88663-00021-1,0,4380_7778208_2750701,4380_918 -4380_78010,285,4380_55499,Dingle,88674-00009-1,0,4380_7778208_2750701,4380_916 -4380_78113,296,4380_555,Dundalk,50136-00021-1,0,4380_7778208_1000908,4380_13 -4380_77950,292,4380_5550,Ashbourne,54083-00016-1,0,4380_7778208_1050102,4380_52 -4380_78010,288,4380_55501,Dingle,88682-00011-1,0,4380_7778208_2750701,4380_916 -4380_78010,287,4380_55502,Dingle,88672-00012-1,0,4380_7778208_2750701,4380_916 -4380_78010,286,4380_55503,Dingle,88680-00010-1,0,4380_7778208_2750701,4380_916 -4380_78010,291,4380_55504,Dingle,88839-00013-1,0,4380_7778208_2750703,4380_917 -4380_78010,289,4380_55505,Dingle,88676-00014-1,0,4380_7778208_2750701,4380_916 -4380_78010,292,4380_55506,Dingle,88681-00016-1,0,4380_7778208_2750701,4380_916 -4380_78010,290,4380_55507,Dingle,88675-00015-1,0,4380_7778208_2750701,4380_916 -4380_78010,294,4380_55508,Dingle,88673-00018-1,0,4380_7778208_2750701,4380_916 -4380_78010,295,4380_55509,Dingle,88677-00019-1,0,4380_7778208_2750701,4380_916 -4380_77950,293,4380_5551,Ashbourne,54084-00017-1,0,4380_7778208_1050102,4380_52 -4380_78010,293,4380_55510,Dingle,88683-00017-1,0,4380_7778208_2750701,4380_916 -4380_78010,296,4380_55511,Dingle,88840-00021-1,0,4380_7778208_2750703,4380_917 -4380_78010,285,4380_55517,Dingle,88792-00009-1,0,4380_7778208_2750702,4380_916 -4380_78010,288,4380_55519,Dingle,88784-00011-1,0,4380_7778208_2750702,4380_916 -4380_77950,294,4380_5552,Ashbourne,54079-00018-1,0,4380_7778208_1050102,4380_52 -4380_78010,287,4380_55520,Dingle,88786-00012-1,0,4380_7778208_2750702,4380_916 -4380_78010,286,4380_55521,Dingle,88782-00010-1,0,4380_7778208_2750702,4380_916 -4380_78010,291,4380_55522,Dingle,88788-00013-1,0,4380_7778208_2750702,4380_917 -4380_78010,289,4380_55523,Dingle,88790-00014-1,0,4380_7778208_2750702,4380_916 -4380_78010,292,4380_55524,Dingle,88783-00016-1,0,4380_7778208_2750702,4380_916 -4380_78010,290,4380_55525,Dingle,88793-00015-1,0,4380_7778208_2750702,4380_916 -4380_78010,294,4380_55526,Dingle,88787-00018-1,0,4380_7778208_2750702,4380_916 -4380_78010,295,4380_55527,Dingle,88791-00019-1,0,4380_7778208_2750702,4380_916 -4380_78010,293,4380_55528,Dingle,88785-00017-1,0,4380_7778208_2750702,4380_916 -4380_78010,296,4380_55529,Dingle,88789-00021-1,0,4380_7778208_2750702,4380_917 -4380_77950,295,4380_5553,Emerald Park,4606-00019-1,0,4380_7778208_1050102,4380_58 -4380_78010,297,4380_55531,Dingle,88624-00008-1,0,4380_7778208_2750401,4380_916 -4380_78010,297,4380_55538,Dingle,88845-00008-1,0,4380_7778208_2750703,4380_916 -4380_78010,285,4380_55539,Dingle,88702-00009-1,0,4380_7778208_2750701,4380_917 -4380_77950,296,4380_5554,Ashbourne,4746-00021-1,0,4380_7778208_1050102,4380_59 -4380_78010,288,4380_55541,Dingle,88700-00011-1,0,4380_7778208_2750701,4380_917 -4380_78010,287,4380_55542,Dingle,88698-00012-1,0,4380_7778208_2750701,4380_917 -4380_78010,286,4380_55543,Dingle,88696-00010-1,0,4380_7778208_2750701,4380_917 -4380_78010,291,4380_55544,Dingle,88843-00013-1,0,4380_7778208_2750703,4380_918 -4380_78010,289,4380_55545,Dingle,88694-00014-1,0,4380_7778208_2750701,4380_917 -4380_78010,292,4380_55546,Dingle,88697-00016-1,0,4380_7778208_2750701,4380_917 -4380_78010,290,4380_55547,Dingle,88703-00015-1,0,4380_7778208_2750701,4380_917 -4380_78010,294,4380_55548,Dingle,88699-00018-1,0,4380_7778208_2750701,4380_917 -4380_78010,295,4380_55549,Dingle,88695-00019-1,0,4380_7778208_2750701,4380_917 -4380_78010,293,4380_55550,Dingle,88701-00017-1,0,4380_7778208_2750701,4380_917 -4380_78010,296,4380_55551,Dingle,88844-00021-1,0,4380_7778208_2750703,4380_918 -4380_78010,297,4380_55558,Dingle,88812-00008-1,0,4380_7778208_2750702,4380_916 -4380_78010,285,4380_55559,Dingle,88817-00009-1,0,4380_7778208_2750702,4380_917 -4380_78010,288,4380_55561,Dingle,88815-00011-1,0,4380_7778208_2750702,4380_917 -4380_78010,287,4380_55562,Dingle,88806-00012-1,0,4380_7778208_2750702,4380_917 -4380_78010,286,4380_55563,Dingle,88808-00010-1,0,4380_7778208_2750702,4380_917 -4380_78010,291,4380_55564,Dingle,88813-00013-1,0,4380_7778208_2750702,4380_917 -4380_78010,289,4380_55565,Dingle,88810-00014-1,0,4380_7778208_2750702,4380_917 -4380_78010,292,4380_55566,Dingle,88809-00016-1,0,4380_7778208_2750702,4380_917 -4380_78010,290,4380_55567,Dingle,88818-00015-1,0,4380_7778208_2750702,4380_917 -4380_78010,294,4380_55568,Dingle,88807-00018-1,0,4380_7778208_2750702,4380_917 -4380_78010,295,4380_55569,Dingle,88811-00019-1,0,4380_7778208_2750702,4380_917 -4380_78010,293,4380_55570,Dingle,88816-00017-1,0,4380_7778208_2750702,4380_917 -4380_78010,296,4380_55571,Dingle,88814-00021-1,0,4380_7778208_2750702,4380_917 -4380_78010,285,4380_55577,Dingle,88714-00009-1,0,4380_7778208_2750701,4380_916 -4380_78010,288,4380_55579,Dingle,88722-00011-1,0,4380_7778208_2750701,4380_916 -4380_78010,287,4380_55580,Dingle,88718-00012-1,0,4380_7778208_2750701,4380_916 -4380_78010,286,4380_55581,Dingle,88720-00010-1,0,4380_7778208_2750701,4380_916 -4380_78010,291,4380_55582,Dingle,88849-00013-1,0,4380_7778208_2750703,4380_917 -4380_78010,289,4380_55583,Dingle,88716-00014-1,0,4380_7778208_2750701,4380_916 -4380_78010,292,4380_55584,Dingle,88721-00016-1,0,4380_7778208_2750701,4380_916 -4380_78010,290,4380_55585,Dingle,88715-00015-1,0,4380_7778208_2750701,4380_916 -4380_78010,294,4380_55586,Dingle,88719-00018-1,0,4380_7778208_2750701,4380_916 -4380_78010,295,4380_55587,Dingle,88717-00019-1,0,4380_7778208_2750701,4380_916 -4380_78010,293,4380_55588,Dingle,88723-00017-1,0,4380_7778208_2750701,4380_916 -4380_78010,296,4380_55589,Dingle,88850-00021-1,0,4380_7778208_2750703,4380_917 -4380_78010,297,4380_55596,Dingle,88832-00008-1,0,4380_7778208_2750702,4380_916 -4380_78010,285,4380_55597,Dingle,88736-00009-1,0,4380_7778208_2750701,4380_917 -4380_78010,288,4380_55599,Dingle,88738-00011-1,0,4380_7778208_2750701,4380_917 -4380_78010,287,4380_55600,Dingle,88742-00012-1,0,4380_7778208_2750701,4380_917 -4380_78010,286,4380_55601,Dingle,88740-00010-1,0,4380_7778208_2750701,4380_917 -4380_78010,291,4380_55602,Dingle,88833-00013-1,0,4380_7778208_2750702,4380_918 -4380_78010,289,4380_55603,Dingle,88734-00014-1,0,4380_7778208_2750701,4380_917 -4380_78010,292,4380_55604,Dingle,88741-00016-1,0,4380_7778208_2750701,4380_917 -4380_78010,290,4380_55605,Dingle,88737-00015-1,0,4380_7778208_2750701,4380_917 -4380_78010,294,4380_55606,Dingle,88743-00018-1,0,4380_7778208_2750701,4380_917 -4380_78010,295,4380_55607,Dingle,88735-00019-1,0,4380_7778208_2750701,4380_917 -4380_78010,293,4380_55608,Dingle,88739-00017-1,0,4380_7778208_2750701,4380_917 -4380_78010,296,4380_55609,Dingle,88834-00021-1,0,4380_7778208_2750702,4380_918 -4380_78010,285,4380_55615,Tralee,89110-00009-1,1,4380_7778208_2790703,4380_919 -4380_78010,288,4380_55617,Tralee,89112-00011-1,1,4380_7778208_2790703,4380_919 -4380_78010,287,4380_55618,Tralee,89116-00012-1,1,4380_7778208_2790703,4380_919 -4380_78010,286,4380_55619,Tralee,89114-00010-1,1,4380_7778208_2790703,4380_919 -4380_77950,285,4380_5562,Drogheda,54411-00009-1,0,4380_7778208_1051103,4380_54 -4380_78010,291,4380_55620,Tralee,88746-00013-1,1,4380_7778208_2750702,4380_920 -4380_78010,289,4380_55621,Tralee,89118-00014-1,1,4380_7778208_2790703,4380_919 -4380_78010,292,4380_55622,Tralee,89115-00016-1,1,4380_7778208_2790703,4380_919 -4380_78010,290,4380_55623,Tralee,89111-00015-1,1,4380_7778208_2790703,4380_919 -4380_78010,294,4380_55624,Tralee,89117-00018-1,1,4380_7778208_2790703,4380_919 -4380_78010,295,4380_55625,Tralee,89119-00019-1,1,4380_7778208_2790703,4380_919 -4380_78010,293,4380_55626,Tralee,89113-00017-1,1,4380_7778208_2790703,4380_919 -4380_78010,296,4380_55627,Tralee,88747-00021-1,1,4380_7778208_2750702,4380_920 -4380_77950,286,4380_5563,Drogheda,54413-00010-1,0,4380_7778208_1051103,4380_54 -4380_78010,285,4380_55633,Tralee,88644-00009-1,1,4380_7778208_2750701,4380_919 -4380_78010,288,4380_55635,Tralee,88638-00011-1,1,4380_7778208_2750701,4380_919 -4380_78010,287,4380_55636,Tralee,88640-00012-1,1,4380_7778208_2750701,4380_919 -4380_78010,286,4380_55637,Tralee,88646-00010-1,1,4380_7778208_2750701,4380_919 -4380_78010,291,4380_55638,Tralee,88648-00013-1,1,4380_7778208_2750701,4380_920 -4380_78010,289,4380_55639,Tralee,88642-00014-1,1,4380_7778208_2750701,4380_919 -4380_77950,297,4380_5564,Drogheda,54504-00008-1,0,4380_7778208_1051104,4380_55 -4380_78010,292,4380_55640,Tralee,88647-00016-1,1,4380_7778208_2750701,4380_919 -4380_78010,290,4380_55641,Tralee,88645-00015-1,1,4380_7778208_2750701,4380_919 -4380_78010,294,4380_55642,Tralee,88641-00018-1,1,4380_7778208_2750701,4380_919 -4380_78010,295,4380_55643,Tralee,88643-00019-1,1,4380_7778208_2750701,4380_919 -4380_78010,293,4380_55644,Tralee,88639-00017-1,1,4380_7778208_2750701,4380_919 -4380_78010,296,4380_55645,Tralee,88649-00021-1,1,4380_7778208_2750701,4380_920 -4380_78010,297,4380_55647,Tralee,88623-00008-1,1,4380_7778208_2750401,4380_919 -4380_77950,288,4380_5565,Drogheda,54405-00011-1,0,4380_7778208_1051103,4380_54 -4380_78010,285,4380_55653,Tralee,88440-00009-1,1,4380_7778208_2710701,4380_919 -4380_78010,288,4380_55655,Tralee,88442-00011-1,1,4380_7778208_2710701,4380_919 -4380_78010,287,4380_55656,Tralee,88438-00012-1,1,4380_7778208_2710701,4380_919 -4380_78010,286,4380_55657,Tralee,88436-00010-1,1,4380_7778208_2710701,4380_919 -4380_78010,291,4380_55658,Tralee,88837-00013-1,1,4380_7778208_2750703,4380_920 -4380_78010,289,4380_55659,Tralee,88444-00014-1,1,4380_7778208_2710701,4380_919 -4380_77950,287,4380_5566,Drogheda,54407-00012-1,0,4380_7778208_1051103,4380_54 -4380_78010,292,4380_55660,Tralee,88437-00016-1,1,4380_7778208_2710701,4380_919 -4380_78010,290,4380_55661,Tralee,88441-00015-1,1,4380_7778208_2710701,4380_919 -4380_78010,294,4380_55662,Tralee,88439-00018-1,1,4380_7778208_2710701,4380_919 -4380_78010,295,4380_55663,Tralee,88445-00019-1,1,4380_7778208_2710701,4380_919 -4380_78010,293,4380_55664,Tralee,88443-00017-1,1,4380_7778208_2710701,4380_919 -4380_78010,296,4380_55665,Tralee,88838-00021-1,1,4380_7778208_2750703,4380_920 -4380_77950,289,4380_5567,Drogheda,54403-00014-1,0,4380_7778208_1051103,4380_54 -4380_78010,297,4380_55672,Tralee,88771-00008-1,1,4380_7778208_2750702,4380_919 -4380_78010,285,4380_55673,Tralee,88780-00009-1,1,4380_7778208_2750702,4380_920 -4380_78010,288,4380_55675,Tralee,88772-00011-1,1,4380_7778208_2750702,4380_920 -4380_78010,287,4380_55676,Tralee,88774-00012-1,1,4380_7778208_2750702,4380_920 -4380_78010,286,4380_55677,Tralee,88778-00010-1,1,4380_7778208_2750702,4380_920 -4380_78010,291,4380_55678,Tralee,88678-00013-1,1,4380_7778208_2750701,4380_919 -4380_78010,289,4380_55679,Tralee,88776-00014-1,1,4380_7778208_2750702,4380_920 -4380_77950,290,4380_5568,Drogheda,54412-00015-1,0,4380_7778208_1051103,4380_54 -4380_78010,292,4380_55680,Tralee,88779-00016-1,1,4380_7778208_2750702,4380_920 -4380_78010,290,4380_55681,Tralee,88781-00015-1,1,4380_7778208_2750702,4380_920 -4380_78010,294,4380_55682,Tralee,88775-00018-1,1,4380_7778208_2750702,4380_920 -4380_78010,295,4380_55683,Tralee,88777-00019-1,1,4380_7778208_2750702,4380_920 -4380_78010,293,4380_55684,Tralee,88773-00017-1,1,4380_7778208_2750702,4380_920 -4380_78010,296,4380_55685,Tralee,88679-00021-1,1,4380_7778208_2750701,4380_919 -4380_77950,291,4380_5569,Drogheda,54409-00013-1,0,4380_7778208_1051103,4380_57 -4380_78010,285,4380_55691,Tralee,88688-00009-1,1,4380_7778208_2750701,4380_919 -4380_78010,288,4380_55693,Tralee,88684-00011-1,1,4380_7778208_2750701,4380_919 -4380_78010,287,4380_55694,Tralee,88686-00012-1,1,4380_7778208_2750701,4380_919 -4380_78010,286,4380_55695,Tralee,88692-00010-1,1,4380_7778208_2750701,4380_919 -4380_78010,291,4380_55696,Tralee,88841-00013-1,1,4380_7778208_2750703,4380_920 -4380_78010,289,4380_55697,Tralee,88690-00014-1,1,4380_7778208_2750701,4380_919 -4380_78010,292,4380_55698,Tralee,88693-00016-1,1,4380_7778208_2750701,4380_919 -4380_78010,290,4380_55699,Tralee,88689-00015-1,1,4380_7778208_2750701,4380_919 -4380_78113,297,4380_557,Dundalk,49704-00008-1,0,4380_7778208_1000903,4380_10 -4380_77950,292,4380_5570,Drogheda,54414-00016-1,0,4380_7778208_1051103,4380_54 -4380_78010,294,4380_55700,Tralee,88687-00018-1,1,4380_7778208_2750701,4380_919 -4380_78010,295,4380_55701,Tralee,88691-00019-1,1,4380_7778208_2750701,4380_919 -4380_78010,293,4380_55702,Tralee,88685-00017-1,1,4380_7778208_2750701,4380_919 -4380_78010,296,4380_55703,Tralee,88842-00021-1,1,4380_7778208_2750703,4380_920 -4380_78010,285,4380_55709,Tralee,88804-00009-1,1,4380_7778208_2750702,4380_919 -4380_77950,293,4380_5571,Drogheda,54406-00017-1,0,4380_7778208_1051103,4380_54 -4380_78010,288,4380_55711,Tralee,88798-00011-1,1,4380_7778208_2750702,4380_919 -4380_78010,287,4380_55712,Tralee,88796-00012-1,1,4380_7778208_2750702,4380_919 -4380_78010,286,4380_55713,Tralee,88802-00010-1,1,4380_7778208_2750702,4380_919 -4380_78010,291,4380_55714,Tralee,88794-00013-1,1,4380_7778208_2750702,4380_920 -4380_78010,289,4380_55715,Tralee,88800-00014-1,1,4380_7778208_2750702,4380_919 -4380_78010,292,4380_55716,Tralee,88803-00016-1,1,4380_7778208_2750702,4380_919 -4380_78010,290,4380_55717,Tralee,88805-00015-1,1,4380_7778208_2750702,4380_919 -4380_78010,294,4380_55718,Tralee,88797-00018-1,1,4380_7778208_2750702,4380_919 -4380_78010,295,4380_55719,Tralee,88801-00019-1,1,4380_7778208_2750702,4380_919 -4380_77950,294,4380_5572,Drogheda,54408-00018-1,0,4380_7778208_1051103,4380_54 -4380_78010,293,4380_55720,Tralee,88799-00017-1,1,4380_7778208_2750702,4380_919 -4380_78010,296,4380_55721,Tralee,88795-00021-1,1,4380_7778208_2750702,4380_920 -4380_78010,297,4380_55723,Tralee,88625-00008-1,1,4380_7778208_2750401,4380_919 -4380_77950,295,4380_5573,Drogheda,54404-00019-1,0,4380_7778208_1051103,4380_54 -4380_78010,297,4380_55730,Tralee,88848-00008-1,1,4380_7778208_2750703,4380_919 -4380_78010,285,4380_55731,Tralee,88708-00009-1,1,4380_7778208_2750701,4380_920 -4380_78010,288,4380_55733,Tralee,88706-00011-1,1,4380_7778208_2750701,4380_920 -4380_78010,287,4380_55734,Tralee,88712-00012-1,1,4380_7778208_2750701,4380_920 -4380_78010,286,4380_55735,Tralee,88710-00010-1,1,4380_7778208_2750701,4380_920 -4380_78010,291,4380_55736,Tralee,88846-00013-1,1,4380_7778208_2750703,4380_919 -4380_78010,289,4380_55737,Tralee,88704-00014-1,1,4380_7778208_2750701,4380_920 -4380_78010,292,4380_55738,Tralee,88711-00016-1,1,4380_7778208_2750701,4380_920 -4380_78010,290,4380_55739,Tralee,88709-00015-1,1,4380_7778208_2750701,4380_920 -4380_77950,296,4380_5574,Drogheda,54410-00021-1,0,4380_7778208_1051103,4380_57 -4380_78010,294,4380_55740,Tralee,88713-00018-1,1,4380_7778208_2750701,4380_920 -4380_78010,295,4380_55741,Tralee,88705-00019-1,1,4380_7778208_2750701,4380_920 -4380_78010,293,4380_55742,Tralee,88707-00017-1,1,4380_7778208_2750701,4380_920 -4380_78010,296,4380_55743,Tralee,88847-00021-1,1,4380_7778208_2750703,4380_919 -4380_78010,297,4380_55750,Tralee,88819-00008-1,1,4380_7778208_2750702,4380_919 -4380_78010,285,4380_55751,Tralee,88822-00009-1,1,4380_7778208_2750702,4380_920 -4380_78010,288,4380_55753,Tralee,88824-00011-1,1,4380_7778208_2750702,4380_920 -4380_78010,287,4380_55754,Tralee,88820-00012-1,1,4380_7778208_2750702,4380_920 -4380_78010,286,4380_55755,Tralee,88828-00010-1,1,4380_7778208_2750702,4380_920 -4380_78010,291,4380_55756,Tralee,88830-00013-1,1,4380_7778208_2750702,4380_920 -4380_78010,289,4380_55757,Tralee,88826-00014-1,1,4380_7778208_2750702,4380_920 -4380_78010,292,4380_55758,Tralee,88829-00016-1,1,4380_7778208_2750702,4380_920 -4380_78010,290,4380_55759,Tralee,88823-00015-1,1,4380_7778208_2750702,4380_920 -4380_78010,294,4380_55760,Tralee,88821-00018-1,1,4380_7778208_2750702,4380_920 -4380_78010,295,4380_55761,Tralee,88827-00019-1,1,4380_7778208_2750702,4380_920 -4380_78010,293,4380_55762,Tralee,88825-00017-1,1,4380_7778208_2750702,4380_920 -4380_78010,296,4380_55763,Tralee,88831-00021-1,1,4380_7778208_2750702,4380_920 -4380_78010,285,4380_55769,Tralee,88728-00009-1,1,4380_7778208_2750701,4380_919 -4380_78010,288,4380_55771,Tralee,88730-00011-1,1,4380_7778208_2750701,4380_919 -4380_78010,287,4380_55772,Tralee,88726-00012-1,1,4380_7778208_2750701,4380_919 -4380_78010,286,4380_55773,Tralee,88732-00010-1,1,4380_7778208_2750701,4380_919 -4380_78010,291,4380_55774,Tralee,88851-00013-1,1,4380_7778208_2750703,4380_919 -4380_78010,289,4380_55775,Tralee,88724-00014-1,1,4380_7778208_2750701,4380_919 -4380_78010,292,4380_55776,Tralee,88733-00016-1,1,4380_7778208_2750701,4380_919 -4380_78010,290,4380_55777,Tralee,88729-00015-1,1,4380_7778208_2750701,4380_919 -4380_78010,294,4380_55778,Tralee,88727-00018-1,1,4380_7778208_2750701,4380_919 -4380_78010,295,4380_55779,Tralee,88725-00019-1,1,4380_7778208_2750701,4380_919 -4380_78010,293,4380_55780,Tralee,88731-00017-1,1,4380_7778208_2750701,4380_919 -4380_78010,296,4380_55781,Tralee,88852-00021-1,1,4380_7778208_2750703,4380_919 -4380_78011,285,4380_55787,Killarney via Killorglin,88979-00009-1,0,4380_7778208_2790702,4380_921 -4380_78011,288,4380_55789,Killarney via Killorglin,88983-00011-1,0,4380_7778208_2790702,4380_921 -4380_78011,287,4380_55790,Killarney via Killorglin,88977-00012-1,0,4380_7778208_2790702,4380_921 -4380_78011,286,4380_55791,Killarney via Killorglin,88981-00010-1,0,4380_7778208_2790702,4380_921 -4380_78011,291,4380_55792,Killarney via Killorglin,88973-00013-1,0,4380_7778208_2790702,4380_921 -4380_78011,289,4380_55793,Killarney via Killorglin,88975-00014-1,0,4380_7778208_2790702,4380_921 -4380_78011,292,4380_55794,Killarney via Killorglin,88982-00016-1,0,4380_7778208_2790702,4380_921 -4380_78011,290,4380_55795,Killarney via Killorglin,88980-00015-1,0,4380_7778208_2790702,4380_921 -4380_78011,294,4380_55796,Killarney via Killorglin,88978-00018-1,0,4380_7778208_2790702,4380_921 -4380_78011,295,4380_55797,Killarney via Killorglin,88976-00019-1,0,4380_7778208_2790702,4380_921 -4380_78011,293,4380_55798,Killarney via Killorglin,88984-00017-1,0,4380_7778208_2790702,4380_921 -4380_78011,296,4380_55799,Killarney via Killorglin,88974-00021-1,0,4380_7778208_2790702,4380_921 -4380_78011,285,4380_55805,Killarney via Killorglin,88869-00009-1,0,4380_7778208_2790701,4380_921 -4380_78011,288,4380_55807,Killarney via Killorglin,88871-00011-1,0,4380_7778208_2790701,4380_921 -4380_78011,287,4380_55808,Killarney via Killorglin,88865-00012-1,0,4380_7778208_2790701,4380_921 -4380_78011,286,4380_55809,Killarney via Killorglin,88875-00010-1,0,4380_7778208_2790701,4380_921 -4380_77950,285,4380_5581,Emerald Park,4482-00009-1,0,4380_7778208_1050101,4380_58 -4380_78011,291,4380_55810,Killarney via Killorglin,88873-00013-1,0,4380_7778208_2790701,4380_923 -4380_78011,289,4380_55811,Killarney via Killorglin,88867-00014-1,0,4380_7778208_2790701,4380_921 -4380_78011,292,4380_55812,Killarney via Killorglin,88876-00016-1,0,4380_7778208_2790701,4380_921 -4380_78011,290,4380_55813,Killarney via Killorglin,88870-00015-1,0,4380_7778208_2790701,4380_921 -4380_78011,294,4380_55814,Killarney via Killorglin,88866-00018-1,0,4380_7778208_2790701,4380_921 -4380_78011,295,4380_55815,Killarney via Killorglin,88868-00019-1,0,4380_7778208_2790701,4380_921 -4380_78011,293,4380_55816,Killarney via Killorglin,88872-00017-1,0,4380_7778208_2790701,4380_921 -4380_78011,296,4380_55817,Killarney via Killorglin,88874-00021-1,0,4380_7778208_2790701,4380_923 -4380_78011,297,4380_55819,Killarney via Killorglin,88989-00008-1,0,4380_7778208_2790702,4380_921 -4380_77950,286,4380_5582,Emerald Park,4496-00010-1,0,4380_7778208_1050101,4380_58 -4380_78011,297,4380_55821,Killarney via Killorglin,88878-00008-1,0,4380_7778208_2790701,4380_921 -4380_78011,285,4380_55827,Killarney via Killorglin,89007-00009-1,0,4380_7778208_2790702,4380_922 -4380_78011,288,4380_55829,Killarney via Killorglin,88999-00011-1,0,4380_7778208_2790702,4380_922 -4380_77950,288,4380_5583,Emerald Park,4538-00011-1,0,4380_7778208_1050101,4380_58 -4380_78011,287,4380_55830,Killarney via Killorglin,89003-00012-1,0,4380_7778208_2790702,4380_922 -4380_78011,286,4380_55831,Killarney via Killorglin,89005-00010-1,0,4380_7778208_2790702,4380_922 -4380_78011,291,4380_55832,Killarney via Killorglin,89001-00013-1,0,4380_7778208_2790702,4380_924 -4380_78011,289,4380_55833,Killarney via Killorglin,89009-00014-1,0,4380_7778208_2790702,4380_922 -4380_78011,292,4380_55834,Killarney via Killorglin,89006-00016-1,0,4380_7778208_2790702,4380_922 -4380_78011,290,4380_55835,Killarney via Killorglin,89008-00015-1,0,4380_7778208_2790702,4380_922 -4380_78011,294,4380_55836,Killarney via Killorglin,89004-00018-1,0,4380_7778208_2790702,4380_922 -4380_78011,295,4380_55837,Killarney via Killorglin,89010-00019-1,0,4380_7778208_2790702,4380_922 -4380_78011,293,4380_55838,Killarney via Killorglin,89000-00017-1,0,4380_7778208_2790702,4380_922 -4380_78011,296,4380_55839,Killarney via Killorglin,89002-00021-1,0,4380_7778208_2790702,4380_924 -4380_77950,287,4380_5584,Emerald Park,4566-00012-1,0,4380_7778208_1050101,4380_58 -4380_78011,297,4380_55841,Killarney via Killorglin,89130-00008-1,0,4380_7778208_2790703,4380_921 -4380_78011,285,4380_55847,Killarney via Killorglin,88892-00009-1,0,4380_7778208_2790701,4380_921 -4380_78011,288,4380_55849,Killarney via Killorglin,88898-00011-1,0,4380_7778208_2790701,4380_921 -4380_77950,289,4380_5585,Ashbourne,54009-00014-1,0,4380_7778208_1050101,4380_52 -4380_78011,287,4380_55850,Killarney via Killorglin,88902-00012-1,0,4380_7778208_2790701,4380_921 -4380_78011,286,4380_55851,Killarney via Killorglin,88896-00010-1,0,4380_7778208_2790701,4380_921 -4380_78011,291,4380_55852,Killarney via Killorglin,88894-00013-1,0,4380_7778208_2790701,4380_921 -4380_78011,289,4380_55853,Killarney via Killorglin,88900-00014-1,0,4380_7778208_2790701,4380_921 -4380_78011,292,4380_55854,Killarney via Killorglin,88897-00016-1,0,4380_7778208_2790701,4380_921 -4380_78011,290,4380_55855,Killarney via Killorglin,88893-00015-1,0,4380_7778208_2790701,4380_921 -4380_78011,294,4380_55856,Killarney via Killorglin,88903-00018-1,0,4380_7778208_2790701,4380_921 -4380_78011,295,4380_55857,Killarney via Killorglin,88901-00019-1,0,4380_7778208_2790701,4380_921 -4380_78011,293,4380_55858,Killarney via Killorglin,88899-00017-1,0,4380_7778208_2790701,4380_921 -4380_78011,296,4380_55859,Killarney via Killorglin,88895-00021-1,0,4380_7778208_2790701,4380_921 -4380_77950,290,4380_5586,Ashbourne,54010-00015-1,0,4380_7778208_1050101,4380_52 -4380_78011,297,4380_55861,Killarney via Killorglin,88906-00008-1,0,4380_7778208_2790701,4380_921 -4380_78011,285,4380_55867,Killarney via Killorglin,89146-00009-1,0,4380_7778208_2790703,4380_921 -4380_78011,288,4380_55869,Killarney via Killorglin,89144-00011-1,0,4380_7778208_2790703,4380_921 -4380_77950,291,4380_5587,Emerald Park,54007-00013-1,0,4380_7778208_1050101,4380_56 -4380_78011,287,4380_55870,Killarney via Killorglin,89148-00012-1,0,4380_7778208_2790703,4380_921 -4380_78011,286,4380_55871,Killarney via Killorglin,89150-00010-1,0,4380_7778208_2790703,4380_921 -4380_78011,291,4380_55872,Killarney via Killorglin,89024-00013-1,0,4380_7778208_2790702,4380_921 -4380_78011,289,4380_55873,Killarney via Killorglin,89142-00014-1,0,4380_7778208_2790703,4380_921 -4380_78011,292,4380_55874,Killarney via Killorglin,89151-00016-1,0,4380_7778208_2790703,4380_921 -4380_78011,290,4380_55875,Killarney via Killorglin,89147-00015-1,0,4380_7778208_2790703,4380_921 -4380_78011,294,4380_55876,Killarney via Killorglin,89149-00018-1,0,4380_7778208_2790703,4380_921 -4380_78011,295,4380_55877,Killarney via Killorglin,89143-00019-1,0,4380_7778208_2790703,4380_921 -4380_78011,293,4380_55878,Killarney via Killorglin,89145-00017-1,0,4380_7778208_2790703,4380_921 -4380_78011,296,4380_55879,Killarney via Killorglin,89025-00021-1,0,4380_7778208_2790702,4380_921 -4380_77950,292,4380_5588,Ashbourne,54008-00016-1,0,4380_7778208_1050101,4380_52 -4380_78011,297,4380_55881,Killarney via Killorglin,89152-00008-1,0,4380_7778208_2790703,4380_921 -4380_78011,285,4380_55888,Killarney via Killorglin,88583-00009-1,0,4380_7778208_2720701,4380_921 -4380_78011,288,4380_55889,Killarney via Killorglin,88577-00011-1,0,4380_7778208_2720701,4380_921 -4380_77950,293,4380_5589,Ashbourne,54012-00017-1,0,4380_7778208_1050101,4380_52 -4380_78011,287,4380_55890,Killarney via Killorglin,88579-00012-1,0,4380_7778208_2720701,4380_921 -4380_78011,286,4380_55891,Killarney via Killorglin,88587-00010-1,0,4380_7778208_2720701,4380_921 -4380_78011,291,4380_55892,Killarney via Killorglin,88581-00013-1,0,4380_7778208_2720701,4380_921 -4380_78011,289,4380_55893,Killarney via Killorglin,88585-00014-1,0,4380_7778208_2720701,4380_921 -4380_78011,292,4380_55894,Killarney via Killorglin,88588-00016-1,0,4380_7778208_2720701,4380_921 -4380_78011,290,4380_55895,Killarney via Killorglin,88584-00015-1,0,4380_7778208_2720701,4380_921 -4380_78011,294,4380_55896,Killarney via Killorglin,88580-00018-1,0,4380_7778208_2720701,4380_921 -4380_78011,295,4380_55897,Killarney via Killorglin,88586-00019-1,0,4380_7778208_2720701,4380_921 -4380_78011,293,4380_55898,Killarney via Killorglin,88578-00017-1,0,4380_7778208_2720701,4380_921 -4380_78011,296,4380_55899,Killarney via Killorglin,88582-00021-1,0,4380_7778208_2720701,4380_921 -4380_77950,294,4380_5590,Ashbourne,54011-00018-1,0,4380_7778208_1050101,4380_52 -4380_78011,297,4380_55901,Killarney via Killorglin,89216-00008-1,0,4380_7778208_2790704,4380_921 -4380_78011,285,4380_55907,Killarney via Killorglin,88480-00009-1,0,4380_7778208_2710701,4380_921 -4380_78011,288,4380_55909,Killarney via Killorglin,88474-00011-1,0,4380_7778208_2710701,4380_921 -4380_77950,295,4380_5591,Emerald Park,4454-00019-1,0,4380_7778208_1050101,4380_58 -4380_78011,287,4380_55910,Killarney via Killorglin,88478-00012-1,0,4380_7778208_2710701,4380_921 -4380_78011,286,4380_55911,Killarney via Killorglin,88476-00010-1,0,4380_7778208_2710701,4380_921 -4380_78011,291,4380_55912,Killarney via Killorglin,88608-00013-1,0,4380_7778208_2720702,4380_923 -4380_78011,289,4380_55913,Killarney via Killorglin,88482-00014-1,0,4380_7778208_2710701,4380_921 -4380_78011,292,4380_55914,Killarney via Killorglin,88477-00016-1,0,4380_7778208_2710701,4380_921 -4380_78011,290,4380_55915,Killarney via Killorglin,88481-00015-1,0,4380_7778208_2710701,4380_921 -4380_78011,294,4380_55916,Killarney via Killorglin,88479-00018-1,0,4380_7778208_2710701,4380_921 -4380_78011,295,4380_55917,Killarney via Killorglin,88483-00019-1,0,4380_7778208_2710701,4380_921 -4380_78011,293,4380_55918,Killarney via Killorglin,88475-00017-1,0,4380_7778208_2710701,4380_921 -4380_78011,296,4380_55919,Killarney via Killorglin,88609-00021-1,0,4380_7778208_2720702,4380_923 -4380_77950,296,4380_5592,Ashbourne,4580-00021-1,0,4380_7778208_1050101,4380_59 -4380_78011,297,4380_55921,Killarney via Killorglin,88920-00008-1,0,4380_7778208_2790701,4380_921 -4380_78011,285,4380_55927,Killarney via Killorglin,88923-00009-1,0,4380_7778208_2790701,4380_922 -4380_78011,288,4380_55929,Killarney via Killorglin,88931-00011-1,0,4380_7778208_2790701,4380_922 -4380_78011,287,4380_55930,Killarney via Killorglin,88921-00012-1,0,4380_7778208_2790701,4380_922 -4380_78011,286,4380_55931,Killarney via Killorglin,88929-00010-1,0,4380_7778208_2790701,4380_922 -4380_78011,291,4380_55932,Killarney via Killorglin,88925-00013-1,0,4380_7778208_2790701,4380_924 -4380_78011,289,4380_55933,Killarney via Killorglin,88927-00014-1,0,4380_7778208_2790701,4380_922 -4380_78011,292,4380_55934,Killarney via Killorglin,88930-00016-1,0,4380_7778208_2790701,4380_922 -4380_78011,290,4380_55935,Killarney via Killorglin,88924-00015-1,0,4380_7778208_2790701,4380_922 -4380_78011,294,4380_55936,Killarney via Killorglin,88922-00018-1,0,4380_7778208_2790701,4380_922 -4380_78011,295,4380_55937,Killarney via Killorglin,88928-00019-1,0,4380_7778208_2790701,4380_922 -4380_78011,293,4380_55938,Killarney via Killorglin,88932-00017-1,0,4380_7778208_2790701,4380_922 -4380_78011,296,4380_55939,Killarney via Killorglin,88926-00021-1,0,4380_7778208_2790701,4380_924 -4380_78011,297,4380_55941,Killarney via Killorglin,89174-00008-1,0,4380_7778208_2790703,4380_921 -4380_78011,285,4380_55947,Killarney via Killorglin,89177-00009-1,0,4380_7778208_2790703,4380_922 -4380_78011,288,4380_55949,Killarney via Killorglin,89179-00011-1,0,4380_7778208_2790703,4380_922 -4380_78011,287,4380_55950,Killarney via Killorglin,89181-00012-1,0,4380_7778208_2790703,4380_922 -4380_78011,286,4380_55951,Killarney via Killorglin,89175-00010-1,0,4380_7778208_2790703,4380_922 -4380_78011,291,4380_55952,Killarney via Killorglin,89062-00013-1,0,4380_7778208_2790702,4380_922 -4380_78011,289,4380_55953,Killarney via Killorglin,89183-00014-1,0,4380_7778208_2790703,4380_922 -4380_78011,292,4380_55954,Killarney via Killorglin,89176-00016-1,0,4380_7778208_2790703,4380_922 -4380_78011,290,4380_55955,Killarney via Killorglin,89178-00015-1,0,4380_7778208_2790703,4380_922 -4380_78011,294,4380_55956,Killarney via Killorglin,89182-00018-1,0,4380_7778208_2790703,4380_922 -4380_78011,295,4380_55957,Killarney via Killorglin,89184-00019-1,0,4380_7778208_2790703,4380_922 -4380_78011,293,4380_55958,Killarney via Killorglin,89180-00017-1,0,4380_7778208_2790703,4380_922 -4380_78011,296,4380_55959,Killarney via Killorglin,89063-00021-1,0,4380_7778208_2790702,4380_922 -4380_78011,297,4380_55961,Killarney via Killorglin,89064-00008-1,0,4380_7778208_2790702,4380_921 -4380_78011,297,4380_55968,Killarney via Killorglin,88938-00008-1,0,4380_7778208_2790701,4380_921 -4380_78011,285,4380_55969,Killarney via Killorglin,89081-00009-1,0,4380_7778208_2790702,4380_921 -4380_78011,288,4380_55971,Killarney via Killorglin,89077-00011-1,0,4380_7778208_2790702,4380_921 -4380_78011,287,4380_55972,Killarney via Killorglin,89079-00012-1,0,4380_7778208_2790702,4380_921 -4380_78011,286,4380_55973,Killarney via Killorglin,89083-00010-1,0,4380_7778208_2790702,4380_921 -4380_78011,291,4380_55974,Killarney via Killorglin,88618-00013-1,0,4380_7778208_2720703,4380_921 -4380_78011,289,4380_55975,Killarney via Killorglin,89075-00014-1,0,4380_7778208_2790702,4380_921 -4380_78011,292,4380_55976,Killarney via Killorglin,89084-00016-1,0,4380_7778208_2790702,4380_921 -4380_78011,290,4380_55977,Killarney via Killorglin,89082-00015-1,0,4380_7778208_2790702,4380_921 -4380_78011,294,4380_55978,Killarney via Killorglin,89080-00018-1,0,4380_7778208_2790702,4380_921 -4380_78011,295,4380_55979,Killarney via Killorglin,89076-00019-1,0,4380_7778208_2790702,4380_921 -4380_78011,293,4380_55980,Killarney via Killorglin,89078-00017-1,0,4380_7778208_2790702,4380_921 -4380_78011,296,4380_55981,Killarney via Killorglin,88619-00021-1,0,4380_7778208_2720703,4380_921 -4380_78011,285,4380_55987,Killarney via Killorglin,88957-00009-1,0,4380_7778208_2790701,4380_921 -4380_78011,288,4380_55989,Killarney via Killorglin,88953-00011-1,0,4380_7778208_2790701,4380_921 -4380_78011,287,4380_55990,Killarney via Killorglin,88947-00012-1,0,4380_7778208_2790701,4380_921 -4380_78011,286,4380_55991,Killarney via Killorglin,88955-00010-1,0,4380_7778208_2790701,4380_921 -4380_78011,291,4380_55992,Killarney via Killorglin,88949-00013-1,0,4380_7778208_2790701,4380_921 -4380_78011,289,4380_55993,Killarney via Killorglin,88951-00014-1,0,4380_7778208_2790701,4380_921 -4380_78011,292,4380_55994,Killarney via Killorglin,88956-00016-1,0,4380_7778208_2790701,4380_921 -4380_78011,290,4380_55995,Killarney via Killorglin,88958-00015-1,0,4380_7778208_2790701,4380_921 -4380_78011,294,4380_55996,Killarney via Killorglin,88948-00018-1,0,4380_7778208_2790701,4380_921 -4380_78011,295,4380_55997,Killarney via Killorglin,88952-00019-1,0,4380_7778208_2790701,4380_921 -4380_78011,293,4380_55998,Killarney via Killorglin,88954-00017-1,0,4380_7778208_2790701,4380_921 -4380_78011,296,4380_55999,Killarney via Killorglin,88950-00021-1,0,4380_7778208_2790701,4380_921 -4380_77946,291,4380_56,Dundalk,50233-00013-1,0,4380_7778208_1000910,4380_2 -4380_77950,285,4380_5600,Drogheda,54505-00009-1,0,4380_7778208_1051104,4380_54 -4380_78011,297,4380_56001,Killarney via Killorglin,88972-00008-1,0,4380_7778208_2790701,4380_921 -4380_78011,285,4380_56007,Killarney via Killorglin,89198-00009-1,0,4380_7778208_2790703,4380_921 -4380_78011,288,4380_56009,Killarney via Killorglin,89196-00011-1,0,4380_7778208_2790703,4380_921 -4380_77950,286,4380_5601,Drogheda,54509-00010-1,0,4380_7778208_1051104,4380_54 -4380_78011,287,4380_56010,Killarney via Killorglin,89204-00012-1,0,4380_7778208_2790703,4380_921 -4380_78011,286,4380_56011,Killarney via Killorglin,89200-00010-1,0,4380_7778208_2790703,4380_921 -4380_78011,291,4380_56012,Killarney via Killorglin,89098-00013-1,0,4380_7778208_2790702,4380_921 -4380_78011,289,4380_56013,Killarney via Killorglin,89202-00014-1,0,4380_7778208_2790703,4380_921 -4380_78011,292,4380_56014,Killarney via Killorglin,89201-00016-1,0,4380_7778208_2790703,4380_921 -4380_78011,290,4380_56015,Killarney via Killorglin,89199-00015-1,0,4380_7778208_2790703,4380_921 -4380_78011,294,4380_56016,Killarney via Killorglin,89205-00018-1,0,4380_7778208_2790703,4380_921 -4380_78011,295,4380_56017,Killarney via Killorglin,89203-00019-1,0,4380_7778208_2790703,4380_921 -4380_78011,293,4380_56018,Killarney via Killorglin,89197-00017-1,0,4380_7778208_2790703,4380_921 -4380_78011,296,4380_56019,Killarney via Killorglin,89099-00021-1,0,4380_7778208_2790702,4380_921 -4380_77950,297,4380_5602,Drogheda,54228-00008-1,0,4380_7778208_1051101,4380_55 -4380_78011,285,4380_56025,Tralee via Killorglin,88853-00009-1,1,4380_7778208_2790701,4380_925 -4380_78011,288,4380_56027,Tralee via Killorglin,88857-00011-1,1,4380_7778208_2790701,4380_925 -4380_78011,287,4380_56028,Tralee via Killorglin,88861-00012-1,1,4380_7778208_2790701,4380_925 -4380_78011,286,4380_56029,Tralee via Killorglin,88855-00010-1,1,4380_7778208_2790701,4380_925 -4380_77950,288,4380_5603,Drogheda,54507-00011-1,0,4380_7778208_1051104,4380_54 -4380_78011,291,4380_56030,Tralee via Killorglin,88859-00013-1,1,4380_7778208_2790701,4380_925 -4380_78011,289,4380_56031,Tralee via Killorglin,88863-00014-1,1,4380_7778208_2790701,4380_925 -4380_78011,292,4380_56032,Tralee via Killorglin,88856-00016-1,1,4380_7778208_2790701,4380_925 -4380_78011,290,4380_56033,Tralee via Killorglin,88854-00015-1,1,4380_7778208_2790701,4380_925 -4380_78011,294,4380_56034,Tralee via Killorglin,88862-00018-1,1,4380_7778208_2790701,4380_925 -4380_78011,295,4380_56035,Tralee via Killorglin,88864-00019-1,1,4380_7778208_2790701,4380_925 -4380_78011,293,4380_56036,Tralee via Killorglin,88858-00017-1,1,4380_7778208_2790701,4380_925 -4380_78011,296,4380_56037,Tralee via Killorglin,88860-00021-1,1,4380_7778208_2790701,4380_925 -4380_77950,287,4380_5604,Drogheda,54513-00012-1,0,4380_7778208_1051104,4380_54 -4380_78011,285,4380_56043,Tralee via Killorglin,88992-00009-1,1,4380_7778208_2790702,4380_926 -4380_78011,288,4380_56045,Tralee via Killorglin,88985-00011-1,1,4380_7778208_2790702,4380_926 -4380_78011,287,4380_56046,Tralee via Killorglin,88990-00012-1,1,4380_7778208_2790702,4380_926 -4380_78011,286,4380_56047,Tralee via Killorglin,88994-00010-1,1,4380_7778208_2790702,4380_926 -4380_78011,291,4380_56048,Tralee via Killorglin,88996-00013-1,1,4380_7778208_2790702,4380_928 -4380_78011,289,4380_56049,Tralee via Killorglin,88987-00014-1,1,4380_7778208_2790702,4380_926 -4380_77950,289,4380_5605,Drogheda,54511-00014-1,0,4380_7778208_1051104,4380_54 -4380_78011,292,4380_56050,Tralee via Killorglin,88995-00016-1,1,4380_7778208_2790702,4380_926 -4380_78011,290,4380_56051,Tralee via Killorglin,88993-00015-1,1,4380_7778208_2790702,4380_926 -4380_78011,294,4380_56052,Tralee via Killorglin,88991-00018-1,1,4380_7778208_2790702,4380_926 -4380_78011,295,4380_56053,Tralee via Killorglin,88988-00019-1,1,4380_7778208_2790702,4380_926 -4380_78011,293,4380_56054,Tralee via Killorglin,88986-00017-1,1,4380_7778208_2790702,4380_926 -4380_78011,296,4380_56055,Tralee via Killorglin,88997-00021-1,1,4380_7778208_2790702,4380_928 -4380_78011,297,4380_56057,Tralee via Killorglin,88877-00008-1,1,4380_7778208_2790701,4380_925 -4380_78011,297,4380_56059,Tralee via Killorglin,88998-00008-1,1,4380_7778208_2790702,4380_925 -4380_77950,290,4380_5606,Drogheda,54506-00015-1,0,4380_7778208_1051104,4380_54 -4380_78011,285,4380_56065,Tralee via Killorglin,88881-00009-1,1,4380_7778208_2790701,4380_925 -4380_78011,288,4380_56067,Tralee via Killorglin,88885-00011-1,1,4380_7778208_2790701,4380_925 -4380_78011,287,4380_56068,Tralee via Killorglin,88883-00012-1,1,4380_7778208_2790701,4380_925 -4380_78011,286,4380_56069,Tralee via Killorglin,88887-00010-1,1,4380_7778208_2790701,4380_925 -4380_77950,291,4380_5607,Drogheda,54515-00013-1,0,4380_7778208_1051104,4380_57 -4380_78011,291,4380_56070,Tralee via Killorglin,88889-00013-1,1,4380_7778208_2790701,4380_925 -4380_78011,289,4380_56071,Tralee via Killorglin,88879-00014-1,1,4380_7778208_2790701,4380_925 -4380_78011,292,4380_56072,Tralee via Killorglin,88888-00016-1,1,4380_7778208_2790701,4380_925 -4380_78011,290,4380_56073,Tralee via Killorglin,88882-00015-1,1,4380_7778208_2790701,4380_925 -4380_78011,294,4380_56074,Tralee via Killorglin,88884-00018-1,1,4380_7778208_2790701,4380_925 -4380_78011,295,4380_56075,Tralee via Killorglin,88880-00019-1,1,4380_7778208_2790701,4380_925 -4380_78011,293,4380_56076,Tralee via Killorglin,88886-00017-1,1,4380_7778208_2790701,4380_925 -4380_78011,296,4380_56077,Tralee via Killorglin,88890-00021-1,1,4380_7778208_2790701,4380_925 -4380_78011,297,4380_56079,Tralee via Killorglin,88891-00008-1,1,4380_7778208_2790701,4380_925 -4380_77950,292,4380_5608,Drogheda,54510-00016-1,0,4380_7778208_1051104,4380_54 -4380_78011,285,4380_56085,Tralee via Killorglin,89135-00009-1,1,4380_7778208_2790703,4380_925 -4380_78011,288,4380_56087,Tralee via Killorglin,89131-00011-1,1,4380_7778208_2790703,4380_925 -4380_78011,287,4380_56088,Tralee via Killorglin,89133-00012-1,1,4380_7778208_2790703,4380_925 -4380_78011,286,4380_56089,Tralee via Killorglin,89137-00010-1,1,4380_7778208_2790703,4380_925 -4380_77950,293,4380_5609,Drogheda,54508-00017-1,0,4380_7778208_1051104,4380_54 -4380_78011,291,4380_56090,Tralee via Killorglin,89011-00013-1,1,4380_7778208_2790702,4380_925 -4380_78011,289,4380_56091,Tralee via Killorglin,89139-00014-1,1,4380_7778208_2790703,4380_925 -4380_78011,292,4380_56092,Tralee via Killorglin,89138-00016-1,1,4380_7778208_2790703,4380_925 -4380_78011,290,4380_56093,Tralee via Killorglin,89136-00015-1,1,4380_7778208_2790703,4380_925 -4380_78011,294,4380_56094,Tralee via Killorglin,89134-00018-1,1,4380_7778208_2790703,4380_925 -4380_78011,295,4380_56095,Tralee via Killorglin,89140-00019-1,1,4380_7778208_2790703,4380_925 -4380_78011,293,4380_56096,Tralee via Killorglin,89132-00017-1,1,4380_7778208_2790703,4380_925 -4380_78011,296,4380_56097,Tralee via Killorglin,89012-00021-1,1,4380_7778208_2790702,4380_925 -4380_78011,297,4380_56099,Tralee via Killorglin,89141-00008-1,1,4380_7778208_2790703,4380_925 -4380_77950,294,4380_5610,Drogheda,54514-00018-1,0,4380_7778208_1051104,4380_54 -4380_78011,285,4380_56105,Tralee via Killorglin,89020-00009-1,1,4380_7778208_2790702,4380_925 -4380_78011,288,4380_56107,Tralee via Killorglin,89014-00011-1,1,4380_7778208_2790702,4380_925 -4380_78011,287,4380_56108,Tralee via Killorglin,89022-00012-1,1,4380_7778208_2790702,4380_925 -4380_78011,286,4380_56109,Tralee via Killorglin,89016-00010-1,1,4380_7778208_2790702,4380_925 -4380_77950,295,4380_5611,Drogheda,54512-00019-1,0,4380_7778208_1051104,4380_54 -4380_78011,291,4380_56110,Tralee via Killorglin,88904-00013-1,1,4380_7778208_2790701,4380_925 -4380_78011,289,4380_56111,Tralee via Killorglin,89018-00014-1,1,4380_7778208_2790702,4380_925 -4380_78011,292,4380_56112,Tralee via Killorglin,89017-00016-1,1,4380_7778208_2790702,4380_925 -4380_78011,290,4380_56113,Tralee via Killorglin,89021-00015-1,1,4380_7778208_2790702,4380_925 -4380_78011,294,4380_56114,Tralee via Killorglin,89023-00018-1,1,4380_7778208_2790702,4380_925 -4380_78011,295,4380_56115,Tralee via Killorglin,89019-00019-1,1,4380_7778208_2790702,4380_925 -4380_78011,293,4380_56116,Tralee via Killorglin,89015-00017-1,1,4380_7778208_2790702,4380_925 -4380_78011,296,4380_56117,Tralee via Killorglin,88905-00021-1,1,4380_7778208_2790701,4380_925 -4380_78011,297,4380_56119,Tralee via Killorglin,88907-00008-1,1,4380_7778208_2790701,4380_925 -4380_77950,296,4380_5612,Drogheda,54516-00021-1,0,4380_7778208_1051104,4380_57 -4380_78011,285,4380_56125,Tralee via Killorglin,89153-00009-1,1,4380_7778208_2790703,4380_925 -4380_78011,288,4380_56127,Tralee via Killorglin,89157-00011-1,1,4380_7778208_2790703,4380_925 -4380_78011,287,4380_56128,Tralee via Killorglin,89159-00012-1,1,4380_7778208_2790703,4380_925 -4380_78011,286,4380_56129,Tralee via Killorglin,89161-00010-1,1,4380_7778208_2790703,4380_925 -4380_78011,291,4380_56130,Tralee via Killorglin,89027-00013-1,1,4380_7778208_2790702,4380_925 -4380_78011,289,4380_56131,Tralee via Killorglin,89155-00014-1,1,4380_7778208_2790703,4380_925 -4380_78011,292,4380_56132,Tralee via Killorglin,89162-00016-1,1,4380_7778208_2790703,4380_925 -4380_78011,290,4380_56133,Tralee via Killorglin,89154-00015-1,1,4380_7778208_2790703,4380_925 -4380_78011,294,4380_56134,Tralee via Killorglin,89160-00018-1,1,4380_7778208_2790703,4380_925 -4380_78011,295,4380_56135,Tralee via Killorglin,89156-00019-1,1,4380_7778208_2790703,4380_925 -4380_78011,293,4380_56136,Tralee via Killorglin,89158-00017-1,1,4380_7778208_2790703,4380_925 -4380_78011,296,4380_56137,Tralee via Killorglin,89028-00021-1,1,4380_7778208_2790702,4380_925 -4380_78011,297,4380_56139,Tralee via Killorglin,89163-00008-1,1,4380_7778208_2790703,4380_925 -4380_78011,285,4380_56145,Tralee via Killorglin,88916-00009-1,1,4380_7778208_2790701,4380_926 -4380_78011,288,4380_56147,Tralee via Killorglin,88918-00011-1,1,4380_7778208_2790701,4380_926 -4380_78011,287,4380_56148,Tralee via Killorglin,88910-00012-1,1,4380_7778208_2790701,4380_926 -4380_78011,286,4380_56149,Tralee via Killorglin,88908-00010-1,1,4380_7778208_2790701,4380_926 -4380_78011,291,4380_56150,Tralee via Killorglin,88912-00013-1,1,4380_7778208_2790701,4380_926 -4380_78011,289,4380_56151,Tralee via Killorglin,88914-00014-1,1,4380_7778208_2790701,4380_926 -4380_78011,292,4380_56152,Tralee via Killorglin,88909-00016-1,1,4380_7778208_2790701,4380_926 -4380_78011,290,4380_56153,Tralee via Killorglin,88917-00015-1,1,4380_7778208_2790701,4380_926 -4380_78011,294,4380_56154,Tralee via Killorglin,88911-00018-1,1,4380_7778208_2790701,4380_926 -4380_78011,295,4380_56155,Tralee via Killorglin,88915-00019-1,1,4380_7778208_2790701,4380_926 -4380_78011,293,4380_56156,Tralee via Killorglin,88919-00017-1,1,4380_7778208_2790701,4380_926 -4380_78011,296,4380_56157,Tralee via Killorglin,88913-00021-1,1,4380_7778208_2790701,4380_926 -4380_78011,297,4380_56159,Tralee via Killorglin,89045-00008-1,1,4380_7778208_2790702,4380_925 -4380_78011,285,4380_56165,Tralee via Killorglin,89170-00009-1,1,4380_7778208_2790703,4380_926 -4380_78011,288,4380_56167,Tralee via Killorglin,89168-00011-1,1,4380_7778208_2790703,4380_926 -4380_78011,287,4380_56168,Tralee via Killorglin,89164-00012-1,1,4380_7778208_2790703,4380_926 -4380_78011,286,4380_56169,Tralee via Killorglin,89172-00010-1,1,4380_7778208_2790703,4380_926 -4380_78011,291,4380_56170,Tralee via Killorglin,89050-00013-1,1,4380_7778208_2790702,4380_928 -4380_78011,289,4380_56171,Tralee via Killorglin,89166-00014-1,1,4380_7778208_2790703,4380_926 -4380_78011,292,4380_56172,Tralee via Killorglin,89173-00016-1,1,4380_7778208_2790703,4380_926 -4380_78011,290,4380_56173,Tralee via Killorglin,89171-00015-1,1,4380_7778208_2790703,4380_926 -4380_78011,294,4380_56174,Tralee via Killorglin,89165-00018-1,1,4380_7778208_2790703,4380_926 -4380_78011,295,4380_56175,Tralee via Killorglin,89167-00019-1,1,4380_7778208_2790703,4380_926 -4380_78011,293,4380_56176,Tralee via Killorglin,89169-00017-1,1,4380_7778208_2790703,4380_926 -4380_78011,296,4380_56177,Tralee via Killorglin,89051-00021-1,1,4380_7778208_2790702,4380_928 -4380_78011,297,4380_56179,Tralee via Killorglin,88933-00008-1,1,4380_7778208_2790701,4380_925 -4380_78011,285,4380_56185,Tralee via Killorglin,88536-00009-1,1,4380_7778208_2710702,4380_925 -4380_78011,288,4380_56187,Tralee via Killorglin,88528-00011-1,1,4380_7778208_2710702,4380_925 -4380_78011,287,4380_56188,Tralee via Killorglin,88534-00012-1,1,4380_7778208_2710702,4380_925 -4380_78011,286,4380_56189,Tralee via Killorglin,88530-00010-1,1,4380_7778208_2710702,4380_925 -4380_77950,285,4380_5619,Emerald Park,4636-00009-1,0,4380_7778208_1050102,4380_58 -4380_78011,291,4380_56190,Tralee via Killorglin,88616-00013-1,1,4380_7778208_2720703,4380_927 -4380_78011,289,4380_56191,Tralee via Killorglin,88532-00014-1,1,4380_7778208_2710702,4380_925 -4380_78011,292,4380_56192,Tralee via Killorglin,88531-00016-1,1,4380_7778208_2710702,4380_925 -4380_78011,290,4380_56193,Tralee via Killorglin,88537-00015-1,1,4380_7778208_2710702,4380_925 -4380_78011,294,4380_56194,Tralee via Killorglin,88535-00018-1,1,4380_7778208_2710702,4380_925 -4380_78011,295,4380_56195,Tralee via Killorglin,88533-00019-1,1,4380_7778208_2710702,4380_925 -4380_78011,293,4380_56196,Tralee via Killorglin,88529-00017-1,1,4380_7778208_2710702,4380_925 -4380_78011,296,4380_56197,Tralee via Killorglin,88617-00021-1,1,4380_7778208_2720703,4380_927 -4380_78011,297,4380_56199,Tralee via Killorglin,89185-00008-1,1,4380_7778208_2790703,4380_925 -4380_77950,286,4380_5620,Emerald Park,4678-00010-1,0,4380_7778208_1050102,4380_58 -4380_78011,285,4380_56205,Tralee via Killorglin,88945-00009-1,1,4380_7778208_2790701,4380_925 -4380_78011,288,4380_56207,Tralee via Killorglin,88934-00011-1,1,4380_7778208_2790701,4380_925 -4380_78011,287,4380_56208,Tralee via Killorglin,88936-00012-1,1,4380_7778208_2790701,4380_925 -4380_78011,286,4380_56209,Tralee via Killorglin,88943-00010-1,1,4380_7778208_2790701,4380_925 -4380_77950,288,4380_5621,Emerald Park,4692-00011-1,0,4380_7778208_1050102,4380_58 -4380_78011,291,4380_56210,Tralee via Killorglin,88941-00013-1,1,4380_7778208_2790701,4380_925 -4380_78011,289,4380_56211,Tralee via Killorglin,88939-00014-1,1,4380_7778208_2790701,4380_925 -4380_78011,292,4380_56212,Tralee via Killorglin,88944-00016-1,1,4380_7778208_2790701,4380_925 -4380_78011,290,4380_56213,Tralee via Killorglin,88946-00015-1,1,4380_7778208_2790701,4380_925 -4380_78011,294,4380_56214,Tralee via Killorglin,88937-00018-1,1,4380_7778208_2790701,4380_925 -4380_78011,295,4380_56215,Tralee via Killorglin,88940-00019-1,1,4380_7778208_2790701,4380_925 -4380_78011,293,4380_56216,Tralee via Killorglin,88935-00017-1,1,4380_7778208_2790701,4380_925 -4380_78011,296,4380_56217,Tralee via Killorglin,88942-00021-1,1,4380_7778208_2790701,4380_925 -4380_78011,297,4380_56219,Tralee via Killorglin,89085-00008-1,1,4380_7778208_2790702,4380_925 -4380_77950,287,4380_5622,Emerald Park,4720-00012-1,0,4380_7778208_1050102,4380_58 -4380_78011,297,4380_56226,Tralee via Killorglin,88959-00008-1,1,4380_7778208_2790701,4380_925 -4380_78011,285,4380_56227,Tralee via Killorglin,89094-00009-1,1,4380_7778208_2790702,4380_925 -4380_78011,288,4380_56229,Tralee via Killorglin,89090-00011-1,1,4380_7778208_2790702,4380_925 -4380_77950,289,4380_5623,Ashbourne,54091-00014-1,0,4380_7778208_1050102,4380_52 -4380_78011,287,4380_56230,Tralee via Killorglin,89096-00012-1,1,4380_7778208_2790702,4380_925 -4380_78011,286,4380_56231,Tralee via Killorglin,89092-00010-1,1,4380_7778208_2790702,4380_925 -4380_78011,291,4380_56232,Tralee via Killorglin,88620-00013-1,1,4380_7778208_2720703,4380_925 -4380_78011,289,4380_56233,Tralee via Killorglin,89088-00014-1,1,4380_7778208_2790702,4380_925 -4380_78011,292,4380_56234,Tralee via Killorglin,89093-00016-1,1,4380_7778208_2790702,4380_925 -4380_78011,290,4380_56235,Tralee via Killorglin,89095-00015-1,1,4380_7778208_2790702,4380_925 -4380_78011,294,4380_56236,Tralee via Killorglin,89097-00018-1,1,4380_7778208_2790702,4380_925 -4380_78011,295,4380_56237,Tralee via Killorglin,89089-00019-1,1,4380_7778208_2790702,4380_925 -4380_78011,293,4380_56238,Tralee via Killorglin,89091-00017-1,1,4380_7778208_2790702,4380_925 -4380_78011,296,4380_56239,Tralee via Killorglin,88621-00021-1,1,4380_7778208_2720703,4380_925 -4380_77950,290,4380_5624,Ashbourne,54096-00015-1,0,4380_7778208_1050102,4380_52 -4380_78011,285,4380_56245,Tralee via Killorglin,88960-00009-1,1,4380_7778208_2790701,4380_925 -4380_78011,288,4380_56247,Tralee via Killorglin,88966-00011-1,1,4380_7778208_2790701,4380_925 -4380_78011,287,4380_56248,Tralee via Killorglin,88962-00012-1,1,4380_7778208_2790701,4380_925 -4380_78011,286,4380_56249,Tralee via Killorglin,88968-00010-1,1,4380_7778208_2790701,4380_925 -4380_77950,291,4380_5625,Emerald Park,54093-00013-1,0,4380_7778208_1050102,4380_56 -4380_78011,291,4380_56250,Tralee via Killorglin,88970-00013-1,1,4380_7778208_2790701,4380_925 -4380_78011,289,4380_56251,Tralee via Killorglin,88964-00014-1,1,4380_7778208_2790701,4380_925 -4380_78011,292,4380_56252,Tralee via Killorglin,88969-00016-1,1,4380_7778208_2790701,4380_925 -4380_78011,290,4380_56253,Tralee via Killorglin,88961-00015-1,1,4380_7778208_2790701,4380_925 -4380_78011,294,4380_56254,Tralee via Killorglin,88963-00018-1,1,4380_7778208_2790701,4380_925 -4380_78011,295,4380_56255,Tralee via Killorglin,88965-00019-1,1,4380_7778208_2790701,4380_925 -4380_78011,293,4380_56256,Tralee via Killorglin,88967-00017-1,1,4380_7778208_2790701,4380_925 -4380_78011,296,4380_56257,Tralee via Killorglin,88971-00021-1,1,4380_7778208_2790701,4380_925 -4380_77950,292,4380_5626,Ashbourne,54092-00016-1,0,4380_7778208_1050102,4380_52 -4380_78140,285,4380_56263,CahersiveenViaKillorglin,89225-00009-1,0,4380_7778208_2790704,4380_929 -4380_78140,288,4380_56264,CahersiveenViaKillorglin,89223-00011-1,0,4380_7778208_2790704,4380_929 -4380_78140,287,4380_56265,CahersiveenViaKillorglin,89219-00012-1,0,4380_7778208_2790704,4380_929 -4380_78140,286,4380_56266,CahersiveenViaKillorglin,89217-00010-1,0,4380_7778208_2790704,4380_929 -4380_78140,289,4380_56267,CahersiveenViaKillorglin,89221-00014-1,0,4380_7778208_2790704,4380_929 -4380_78140,292,4380_56268,CahersiveenViaKillorglin,89218-00016-1,0,4380_7778208_2790704,4380_929 -4380_78140,290,4380_56269,CahersiveenViaKillorglin,89226-00015-1,0,4380_7778208_2790704,4380_929 -4380_77950,293,4380_5627,Ashbourne,54095-00017-1,0,4380_7778208_1050102,4380_52 -4380_78140,294,4380_56270,CahersiveenViaKillorglin,89220-00018-1,0,4380_7778208_2790704,4380_929 -4380_78140,295,4380_56271,CahersiveenViaKillorglin,89222-00019-1,0,4380_7778208_2790704,4380_929 -4380_78140,293,4380_56272,CahersiveenViaKillorglin,89224-00017-1,0,4380_7778208_2790704,4380_929 -4380_78140,285,4380_56278,Tralee via Killorglin,89210-00009-1,1,4380_7778208_2790704,4380_930 -4380_78140,288,4380_56279,Tralee via Killorglin,89214-00011-1,1,4380_7778208_2790704,4380_930 -4380_77950,294,4380_5628,Ashbourne,54094-00018-1,0,4380_7778208_1050102,4380_52 -4380_78140,287,4380_56280,Tralee via Killorglin,89208-00012-1,1,4380_7778208_2790704,4380_930 -4380_78140,286,4380_56281,Tralee via Killorglin,89206-00010-1,1,4380_7778208_2790704,4380_930 -4380_78140,289,4380_56282,Tralee via Killorglin,89212-00014-1,1,4380_7778208_2790704,4380_930 -4380_78140,292,4380_56283,Tralee via Killorglin,89207-00016-1,1,4380_7778208_2790704,4380_930 -4380_78140,290,4380_56284,Tralee via Killorglin,89211-00015-1,1,4380_7778208_2790704,4380_930 -4380_78140,294,4380_56285,Tralee via Killorglin,89209-00018-1,1,4380_7778208_2790704,4380_930 -4380_78140,295,4380_56286,Tralee via Killorglin,89213-00019-1,1,4380_7778208_2790704,4380_930 -4380_78140,293,4380_56287,Tralee via Killorglin,89215-00017-1,1,4380_7778208_2790704,4380_930 -4380_77950,295,4380_5629,Emerald Park,4608-00019-1,0,4380_7778208_1050102,4380_58 -4380_78012,285,4380_56293,Killarney,88524-00009-1,0,4380_7778208_2710702,4380_931 -4380_78012,288,4380_56294,Killarney,88522-00011-1,0,4380_7778208_2710702,4380_931 -4380_78012,287,4380_56295,Killarney,88526-00012-1,0,4380_7778208_2710702,4380_931 -4380_78012,286,4380_56296,Killarney,88520-00010-1,0,4380_7778208_2710702,4380_931 -4380_78012,289,4380_56297,Killarney,88518-00014-1,0,4380_7778208_2710702,4380_931 -4380_78012,292,4380_56298,Killarney,88521-00016-1,0,4380_7778208_2710702,4380_931 -4380_78012,290,4380_56299,Killarney,88525-00015-1,0,4380_7778208_2710702,4380_931 -4380_77950,296,4380_5630,Ashbourne,4748-00021-1,0,4380_7778208_1050102,4380_59 -4380_78012,294,4380_56300,Killarney,88527-00018-1,0,4380_7778208_2710702,4380_931 -4380_78012,295,4380_56301,Killarney,88519-00019-1,0,4380_7778208_2710702,4380_931 -4380_78012,293,4380_56302,Killarney,88523-00017-1,0,4380_7778208_2710702,4380_931 -4380_78012,285,4380_56308,Tralee,88748-00009-1,1,4380_7778208_2750702,4380_932 -4380_78012,288,4380_56309,Tralee,88756-00011-1,1,4380_7778208_2750702,4380_932 -4380_78012,287,4380_56310,Tralee,88750-00012-1,1,4380_7778208_2750702,4380_932 -4380_78012,286,4380_56311,Tralee,88752-00010-1,1,4380_7778208_2750702,4380_932 -4380_78012,289,4380_56312,Tralee,88754-00014-1,1,4380_7778208_2750702,4380_932 -4380_78012,292,4380_56313,Tralee,88753-00016-1,1,4380_7778208_2750702,4380_932 -4380_78012,290,4380_56314,Tralee,88749-00015-1,1,4380_7778208_2750702,4380_932 -4380_78012,294,4380_56315,Tralee,88751-00018-1,1,4380_7778208_2750702,4380_932 -4380_78012,295,4380_56316,Tralee,88755-00019-1,1,4380_7778208_2750702,4380_932 -4380_78012,293,4380_56317,Tralee,88757-00017-1,1,4380_7778208_2750702,4380_932 -4380_77935,285,4380_56325,Donegal,46797-00009-1,0,4380_7778208_300601,4380_933 -4380_77935,286,4380_56326,Donegal,46801-00010-1,0,4380_7778208_300601,4380_933 -4380_77935,297,4380_56327,Donegal,46796-00008-1,0,4380_7778208_300601,4380_933 -4380_77935,287,4380_56328,Donegal,46803-00012-1,0,4380_7778208_300601,4380_933 -4380_77935,288,4380_56329,Donegal,46794-00011-1,0,4380_7778208_300601,4380_933 -4380_77935,289,4380_56330,Donegal,46792-00014-1,0,4380_7778208_300601,4380_933 -4380_77935,290,4380_56331,Donegal,46798-00015-1,0,4380_7778208_300601,4380_933 -4380_77935,291,4380_56332,Donegal,46799-00013-1,0,4380_7778208_300601,4380_933 -4380_77935,292,4380_56333,Donegal,46802-00016-1,0,4380_7778208_300601,4380_933 -4380_77935,293,4380_56334,Donegal,46795-00017-1,0,4380_7778208_300601,4380_933 -4380_77935,295,4380_56335,Donegal,46793-00019-1,0,4380_7778208_300601,4380_933 -4380_77935,294,4380_56336,Donegal,46804-00018-1,0,4380_7778208_300601,4380_933 -4380_77935,296,4380_56337,Donegal,46800-00021-1,0,4380_7778208_300601,4380_933 -4380_77935,285,4380_56345,Donegal,46898-00009-1,0,4380_7778208_300603,4380_933 -4380_77935,286,4380_56346,Donegal,46900-00010-1,0,4380_7778208_300603,4380_933 -4380_77935,297,4380_56347,Donegal,46908-00008-1,0,4380_7778208_300603,4380_933 -4380_77935,287,4380_56348,Donegal,46902-00012-1,0,4380_7778208_300603,4380_933 -4380_77935,288,4380_56349,Donegal,46896-00011-1,0,4380_7778208_300603,4380_933 -4380_77935,289,4380_56350,Donegal,46904-00014-1,0,4380_7778208_300603,4380_933 -4380_77935,290,4380_56351,Donegal,46899-00015-1,0,4380_7778208_300603,4380_933 -4380_77935,291,4380_56352,Donegal,46906-00013-1,0,4380_7778208_300603,4380_933 -4380_77935,292,4380_56353,Donegal,46901-00016-1,0,4380_7778208_300603,4380_933 -4380_77935,293,4380_56354,Donegal,46897-00017-1,0,4380_7778208_300603,4380_933 -4380_77935,295,4380_56355,Donegal,46905-00019-1,0,4380_7778208_300603,4380_933 -4380_77935,294,4380_56356,Donegal,46903-00018-1,0,4380_7778208_300603,4380_933 -4380_77935,296,4380_56357,Donegal,46907-00021-1,0,4380_7778208_300603,4380_933 -4380_77935,285,4380_56365,Donegal,47008-00009-1,0,4380_7778208_300605,4380_933 -4380_77935,286,4380_56366,Donegal,47004-00010-1,0,4380_7778208_300605,4380_933 -4380_77935,297,4380_56367,Donegal,47010-00008-1,0,4380_7778208_300605,4380_933 -4380_77935,287,4380_56368,Donegal,47000-00012-1,0,4380_7778208_300605,4380_933 -4380_77935,288,4380_56369,Donegal,47011-00011-1,0,4380_7778208_300605,4380_933 -4380_77935,289,4380_56370,Donegal,47002-00014-1,0,4380_7778208_300605,4380_933 -4380_77935,290,4380_56371,Donegal,47009-00015-1,0,4380_7778208_300605,4380_933 -4380_77935,291,4380_56372,Donegal,47006-00013-1,0,4380_7778208_300605,4380_933 -4380_77935,292,4380_56373,Donegal,47005-00016-1,0,4380_7778208_300605,4380_933 -4380_77935,293,4380_56374,Donegal,47012-00017-1,0,4380_7778208_300605,4380_933 -4380_77935,295,4380_56375,Donegal,47003-00019-1,0,4380_7778208_300605,4380_933 -4380_77935,294,4380_56376,Donegal,47001-00018-1,0,4380_7778208_300605,4380_933 -4380_77935,296,4380_56377,Donegal,47007-00021-1,0,4380_7778208_300605,4380_933 -4380_77950,285,4380_5638,Drogheda,54229-00009-1,0,4380_7778208_1051101,4380_54 -4380_77935,285,4380_56385,Donegal,47106-00009-1,0,4380_7778208_300607,4380_933 -4380_77935,286,4380_56386,Donegal,47115-00010-1,0,4380_7778208_300607,4380_933 -4380_77935,297,4380_56387,Donegal,47114-00008-1,0,4380_7778208_300607,4380_933 -4380_77935,287,4380_56388,Donegal,47108-00012-1,0,4380_7778208_300607,4380_933 -4380_77935,288,4380_56389,Donegal,47104-00011-1,0,4380_7778208_300607,4380_933 -4380_77950,286,4380_5639,Drogheda,54233-00010-1,0,4380_7778208_1051101,4380_54 -4380_77935,289,4380_56390,Donegal,47110-00014-1,0,4380_7778208_300607,4380_933 -4380_77935,290,4380_56391,Donegal,47107-00015-1,0,4380_7778208_300607,4380_933 -4380_77935,291,4380_56392,Donegal,47112-00013-1,0,4380_7778208_300607,4380_933 -4380_77935,292,4380_56393,Donegal,47116-00016-1,0,4380_7778208_300607,4380_933 -4380_77935,293,4380_56394,Donegal,47105-00017-1,0,4380_7778208_300607,4380_933 -4380_77935,295,4380_56395,Donegal,47111-00019-1,0,4380_7778208_300607,4380_933 -4380_77935,294,4380_56396,Donegal,47109-00018-1,0,4380_7778208_300607,4380_933 -4380_77935,296,4380_56397,Donegal,47113-00021-1,0,4380_7778208_300607,4380_933 -4380_78113,285,4380_564,Dundalk,49748-00009-1,0,4380_7778208_1000904,4380_10 -4380_77950,297,4380_5640,Drogheda,54326-00008-1,0,4380_7778208_1051102,4380_55 -4380_77935,285,4380_56405,Donegal,46881-00009-1,0,4380_7778208_300602,4380_933 -4380_77935,286,4380_56406,Donegal,46876-00010-1,0,4380_7778208_300602,4380_933 -4380_77935,297,4380_56407,Donegal,46880-00008-1,0,4380_7778208_300602,4380_933 -4380_77935,287,4380_56408,Donegal,46870-00012-1,0,4380_7778208_300602,4380_933 -4380_77935,288,4380_56409,Donegal,46878-00011-1,0,4380_7778208_300602,4380_933 -4380_77950,288,4380_5641,Drogheda,54235-00011-1,0,4380_7778208_1051101,4380_54 -4380_77935,289,4380_56410,Donegal,46874-00014-1,0,4380_7778208_300602,4380_933 -4380_77935,290,4380_56411,Donegal,46882-00015-1,0,4380_7778208_300602,4380_933 -4380_77935,291,4380_56412,Donegal,46872-00013-1,0,4380_7778208_300602,4380_933 -4380_77935,292,4380_56413,Donegal,46877-00016-1,0,4380_7778208_300602,4380_933 -4380_77935,293,4380_56414,Donegal,46879-00017-1,0,4380_7778208_300602,4380_933 -4380_77935,295,4380_56415,Donegal,46875-00019-1,0,4380_7778208_300602,4380_933 -4380_77935,294,4380_56416,Donegal,46871-00018-1,0,4380_7778208_300602,4380_933 -4380_77935,296,4380_56417,Donegal,46873-00021-1,0,4380_7778208_300602,4380_933 -4380_77950,287,4380_5642,Drogheda,54237-00012-1,0,4380_7778208_1051101,4380_54 -4380_77935,285,4380_56425,Donegal,46979-00009-1,0,4380_7778208_300604,4380_933 -4380_77935,286,4380_56426,Donegal,46975-00010-1,0,4380_7778208_300604,4380_933 -4380_77935,297,4380_56427,Donegal,46974-00008-1,0,4380_7778208_300604,4380_933 -4380_77935,287,4380_56428,Donegal,46985-00012-1,0,4380_7778208_300604,4380_933 -4380_77935,288,4380_56429,Donegal,46983-00011-1,0,4380_7778208_300604,4380_933 -4380_77950,289,4380_5643,Drogheda,54239-00014-1,0,4380_7778208_1051101,4380_54 -4380_77935,289,4380_56430,Donegal,46981-00014-1,0,4380_7778208_300604,4380_933 -4380_77935,290,4380_56431,Donegal,46980-00015-1,0,4380_7778208_300604,4380_933 -4380_77935,291,4380_56432,Donegal,46977-00013-1,0,4380_7778208_300604,4380_933 -4380_77935,292,4380_56433,Donegal,46976-00016-1,0,4380_7778208_300604,4380_933 -4380_77935,293,4380_56434,Donegal,46984-00017-1,0,4380_7778208_300604,4380_933 -4380_77935,295,4380_56435,Donegal,46982-00019-1,0,4380_7778208_300604,4380_933 -4380_77935,294,4380_56436,Donegal,46986-00018-1,0,4380_7778208_300604,4380_933 -4380_77935,296,4380_56437,Donegal,46978-00021-1,0,4380_7778208_300604,4380_933 -4380_77950,290,4380_5644,Drogheda,54230-00015-1,0,4380_7778208_1051101,4380_54 -4380_77935,285,4380_56445,Donegal,47084-00009-1,0,4380_7778208_300606,4380_933 -4380_77935,286,4380_56446,Donegal,47080-00010-1,0,4380_7778208_300606,4380_933 -4380_77935,297,4380_56447,Donegal,47086-00008-1,0,4380_7778208_300606,4380_933 -4380_77935,287,4380_56448,Donegal,47089-00012-1,0,4380_7778208_300606,4380_933 -4380_77935,288,4380_56449,Donegal,47078-00011-1,0,4380_7778208_300606,4380_933 -4380_77950,291,4380_5645,Drogheda,54231-00013-1,0,4380_7778208_1051101,4380_57 -4380_77935,289,4380_56450,Donegal,47087-00014-1,0,4380_7778208_300606,4380_933 -4380_77935,290,4380_56451,Donegal,47085-00015-1,0,4380_7778208_300606,4380_933 -4380_77935,291,4380_56452,Donegal,47082-00013-1,0,4380_7778208_300606,4380_933 -4380_77935,292,4380_56453,Donegal,47081-00016-1,0,4380_7778208_300606,4380_933 -4380_77935,293,4380_56454,Donegal,47079-00017-1,0,4380_7778208_300606,4380_933 -4380_77935,295,4380_56455,Donegal,47088-00019-1,0,4380_7778208_300606,4380_933 -4380_77935,294,4380_56456,Donegal,47090-00018-1,0,4380_7778208_300606,4380_933 -4380_77935,296,4380_56457,Donegal,47083-00021-1,0,4380_7778208_300606,4380_933 -4380_77950,292,4380_5646,Drogheda,54234-00016-1,0,4380_7778208_1051101,4380_54 -4380_77935,285,4380_56465,Dublin,46838-00009-1,1,4380_7778208_300602,4380_935 -4380_77935,286,4380_56466,Dublin,46835-00010-1,1,4380_7778208_300602,4380_935 -4380_77935,297,4380_56467,Dublin,46837-00008-1,1,4380_7778208_300602,4380_935 -4380_77935,287,4380_56468,Dublin,46833-00012-1,1,4380_7778208_300602,4380_935 -4380_77935,288,4380_56469,Dublin,46842-00011-1,1,4380_7778208_300602,4380_935 -4380_77950,293,4380_5647,Drogheda,54236-00017-1,0,4380_7778208_1051101,4380_54 -4380_77935,289,4380_56470,Dublin,46831-00014-1,1,4380_7778208_300602,4380_935 -4380_77935,290,4380_56471,Dublin,46839-00015-1,1,4380_7778208_300602,4380_935 -4380_77935,291,4380_56472,Dublin,46840-00013-1,1,4380_7778208_300602,4380_935 -4380_77935,292,4380_56473,Dublin,46836-00016-1,1,4380_7778208_300602,4380_935 -4380_77935,293,4380_56474,Dublin,46843-00017-1,1,4380_7778208_300602,4380_935 -4380_77935,295,4380_56475,Dublin,46832-00019-1,1,4380_7778208_300602,4380_935 -4380_77935,294,4380_56476,Dublin,46834-00018-1,1,4380_7778208_300602,4380_935 -4380_77935,296,4380_56477,Dublin,46841-00021-1,1,4380_7778208_300602,4380_935 -4380_77950,294,4380_5648,Drogheda,54238-00018-1,0,4380_7778208_1051101,4380_54 -4380_77935,285,4380_56485,Dublin via Airport,46943-00009-1,1,4380_7778208_300604,4380_934 -4380_77935,286,4380_56486,Dublin via Airport,46945-00010-1,1,4380_7778208_300604,4380_934 -4380_77935,297,4380_56487,Dublin via Airport,46947-00008-1,1,4380_7778208_300604,4380_934 -4380_77935,287,4380_56488,Dublin via Airport,46937-00012-1,1,4380_7778208_300604,4380_934 -4380_77935,288,4380_56489,Dublin via Airport,46939-00011-1,1,4380_7778208_300604,4380_934 -4380_77950,295,4380_5649,Drogheda,54240-00019-1,0,4380_7778208_1051101,4380_54 -4380_77935,289,4380_56490,Dublin via Airport,46935-00014-1,1,4380_7778208_300604,4380_934 -4380_77935,290,4380_56491,Dublin via Airport,46944-00015-1,1,4380_7778208_300604,4380_934 -4380_77935,291,4380_56492,Dublin via Airport,46941-00013-1,1,4380_7778208_300604,4380_934 -4380_77935,292,4380_56493,Dublin via Airport,46946-00016-1,1,4380_7778208_300604,4380_934 -4380_77935,293,4380_56494,Dublin via Airport,46940-00017-1,1,4380_7778208_300604,4380_934 -4380_77935,295,4380_56495,Dublin via Airport,46936-00019-1,1,4380_7778208_300604,4380_934 -4380_77935,294,4380_56496,Dublin via Airport,46938-00018-1,1,4380_7778208_300604,4380_934 -4380_77935,296,4380_56497,Dublin via Airport,46942-00021-1,1,4380_7778208_300604,4380_934 -4380_78113,286,4380_565,Dundalk,49744-00010-1,0,4380_7778208_1000904,4380_10 -4380_77950,296,4380_5650,Drogheda,54232-00021-1,0,4380_7778208_1051101,4380_57 -4380_77935,285,4380_56505,Dublin via Airport,47048-00009-1,1,4380_7778208_300606,4380_934 -4380_77935,286,4380_56506,Dublin via Airport,47043-00010-1,1,4380_7778208_300606,4380_934 -4380_77935,297,4380_56507,Dublin via Airport,47045-00008-1,1,4380_7778208_300606,4380_934 -4380_77935,287,4380_56508,Dublin via Airport,47046-00012-1,1,4380_7778208_300606,4380_934 -4380_77935,288,4380_56509,Dublin via Airport,47050-00011-1,1,4380_7778208_300606,4380_934 -4380_77935,289,4380_56510,Dublin via Airport,47041-00014-1,1,4380_7778208_300606,4380_934 -4380_77935,290,4380_56511,Dublin via Airport,47049-00015-1,1,4380_7778208_300606,4380_934 -4380_77935,291,4380_56512,Dublin via Airport,47039-00013-1,1,4380_7778208_300606,4380_934 -4380_77935,292,4380_56513,Dublin via Airport,47044-00016-1,1,4380_7778208_300606,4380_934 -4380_77935,293,4380_56514,Dublin via Airport,47051-00017-1,1,4380_7778208_300606,4380_934 -4380_77935,295,4380_56515,Dublin via Airport,47042-00019-1,1,4380_7778208_300606,4380_934 -4380_77935,294,4380_56516,Dublin via Airport,47047-00018-1,1,4380_7778208_300606,4380_934 -4380_77935,296,4380_56517,Dublin via Airport,47040-00021-1,1,4380_7778208_300606,4380_934 -4380_77935,285,4380_56525,Dublin via Airport,46805-00009-1,1,4380_7778208_300601,4380_934 -4380_77935,286,4380_56526,Dublin via Airport,46813-00010-1,1,4380_7778208_300601,4380_934 -4380_77935,297,4380_56527,Dublin via Airport,46817-00008-1,1,4380_7778208_300601,4380_934 -4380_77935,287,4380_56528,Dublin via Airport,46811-00012-1,1,4380_7778208_300601,4380_934 -4380_77935,288,4380_56529,Dublin via Airport,46809-00011-1,1,4380_7778208_300601,4380_934 -4380_77935,289,4380_56530,Dublin via Airport,46807-00014-1,1,4380_7778208_300601,4380_934 -4380_77935,290,4380_56531,Dublin via Airport,46806-00015-1,1,4380_7778208_300601,4380_934 -4380_77935,291,4380_56532,Dublin via Airport,46815-00013-1,1,4380_7778208_300601,4380_934 -4380_77935,292,4380_56533,Dublin via Airport,46814-00016-1,1,4380_7778208_300601,4380_934 -4380_77935,293,4380_56534,Dublin via Airport,46810-00017-1,1,4380_7778208_300601,4380_934 -4380_77935,295,4380_56535,Dublin via Airport,46808-00019-1,1,4380_7778208_300601,4380_934 -4380_77935,294,4380_56536,Dublin via Airport,46812-00018-1,1,4380_7778208_300601,4380_934 -4380_77935,296,4380_56537,Dublin via Airport,46816-00021-1,1,4380_7778208_300601,4380_934 -4380_77935,285,4380_56545,Dublin via Airport,46917-00009-1,1,4380_7778208_300603,4380_934 -4380_77935,286,4380_56546,Dublin via Airport,46913-00010-1,1,4380_7778208_300603,4380_934 -4380_77935,297,4380_56547,Dublin via Airport,46921-00008-1,1,4380_7778208_300603,4380_934 -4380_77935,287,4380_56548,Dublin via Airport,46915-00012-1,1,4380_7778208_300603,4380_934 -4380_77935,288,4380_56549,Dublin via Airport,46919-00011-1,1,4380_7778208_300603,4380_934 -4380_77935,289,4380_56550,Dublin via Airport,46909-00014-1,1,4380_7778208_300603,4380_934 -4380_77935,290,4380_56551,Dublin via Airport,46918-00015-1,1,4380_7778208_300603,4380_934 -4380_77935,291,4380_56552,Dublin via Airport,46911-00013-1,1,4380_7778208_300603,4380_934 -4380_77935,292,4380_56553,Dublin via Airport,46914-00016-1,1,4380_7778208_300603,4380_934 -4380_77935,293,4380_56554,Dublin via Airport,46920-00017-1,1,4380_7778208_300603,4380_934 -4380_77935,295,4380_56555,Dublin via Airport,46910-00019-1,1,4380_7778208_300603,4380_934 -4380_77935,294,4380_56556,Dublin via Airport,46916-00018-1,1,4380_7778208_300603,4380_934 -4380_77935,296,4380_56557,Dublin via Airport,46912-00021-1,1,4380_7778208_300603,4380_934 -4380_77935,285,4380_56565,Dublin via Airport,47017-00009-1,1,4380_7778208_300605,4380_934 -4380_77935,286,4380_56566,Dublin via Airport,47015-00010-1,1,4380_7778208_300605,4380_934 -4380_77935,297,4380_56567,Dublin via Airport,47023-00008-1,1,4380_7778208_300605,4380_934 -4380_77935,287,4380_56568,Dublin via Airport,47021-00012-1,1,4380_7778208_300605,4380_934 -4380_77935,288,4380_56569,Dublin via Airport,47013-00011-1,1,4380_7778208_300605,4380_934 -4380_77950,285,4380_5657,Emerald Park,4484-00009-1,0,4380_7778208_1050101,4380_58 -4380_77935,289,4380_56570,Dublin via Airport,47019-00014-1,1,4380_7778208_300605,4380_934 -4380_77935,290,4380_56571,Dublin via Airport,47018-00015-1,1,4380_7778208_300605,4380_934 -4380_77935,291,4380_56572,Dublin via Airport,47024-00013-1,1,4380_7778208_300605,4380_934 -4380_77935,292,4380_56573,Dublin via Airport,47016-00016-1,1,4380_7778208_300605,4380_934 -4380_77935,293,4380_56574,Dublin via Airport,47014-00017-1,1,4380_7778208_300605,4380_934 -4380_77935,295,4380_56575,Dublin via Airport,47020-00019-1,1,4380_7778208_300605,4380_934 -4380_77935,294,4380_56576,Dublin via Airport,47022-00018-1,1,4380_7778208_300605,4380_934 -4380_77935,296,4380_56577,Dublin via Airport,47025-00021-1,1,4380_7778208_300605,4380_934 -4380_77950,286,4380_5658,Emerald Park,4498-00010-1,0,4380_7778208_1050101,4380_58 -4380_78013,285,4380_56588,Westbury,89249-00009-1,0,4380_7778208_3010401,4380_940 -4380_78013,285,4380_56589,Westbury,89681-00009-1,0,4380_7778208_3010403,4380_936 -4380_77950,288,4380_5659,Emerald Park,4540-00011-1,0,4380_7778208_1050101,4380_58 -4380_78013,288,4380_56590,Westbury,89241-00011-1,0,4380_7778208_3010401,4380_940 -4380_78013,288,4380_56591,Westbury,89673-00011-1,0,4380_7778208_3010403,4380_936 -4380_78013,287,4380_56592,Westbury,89245-00012-1,0,4380_7778208_3010401,4380_940 -4380_78013,287,4380_56593,Westbury,89677-00012-1,0,4380_7778208_3010403,4380_936 -4380_78013,286,4380_56594,Westbury,89243-00010-1,0,4380_7778208_3010401,4380_940 -4380_78013,286,4380_56595,Westbury,89679-00010-1,0,4380_7778208_3010403,4380_936 -4380_78013,289,4380_56596,Westbury,89247-00014-1,0,4380_7778208_3010401,4380_940 -4380_78013,289,4380_56597,Westbury,89675-00014-1,0,4380_7778208_3010403,4380_936 -4380_78013,292,4380_56598,Westbury,89244-00016-1,0,4380_7778208_3010401,4380_940 -4380_78013,292,4380_56599,Westbury,89680-00016-1,0,4380_7778208_3010403,4380_936 -4380_78113,287,4380_566,Dundalk,49754-00012-1,0,4380_7778208_1000904,4380_10 -4380_77950,287,4380_5660,Emerald Park,4568-00012-1,0,4380_7778208_1050101,4380_58 -4380_78013,290,4380_56600,Westbury,89250-00015-1,0,4380_7778208_3010401,4380_940 -4380_78013,290,4380_56601,Westbury,89682-00015-1,0,4380_7778208_3010403,4380_936 -4380_78013,294,4380_56602,Westbury,89246-00018-1,0,4380_7778208_3010401,4380_940 -4380_78013,294,4380_56603,Westbury,89678-00018-1,0,4380_7778208_3010403,4380_936 -4380_78013,295,4380_56604,Westbury,89248-00019-1,0,4380_7778208_3010401,4380_940 -4380_78013,295,4380_56605,Westbury,89676-00019-1,0,4380_7778208_3010403,4380_936 -4380_78013,293,4380_56606,Westbury,89242-00017-1,0,4380_7778208_3010401,4380_940 -4380_78013,293,4380_56607,Westbury,89674-00017-1,0,4380_7778208_3010403,4380_936 -4380_77950,289,4380_5661,Ashbourne,54022-00014-1,0,4380_7778208_1050101,4380_52 -4380_78013,291,4380_56610,Westbury,89251-00013-1,0,4380_7778208_3010401,4380_937 -4380_78013,291,4380_56611,Westbury,89683-00013-1,0,4380_7778208_3010403,4380_936 -4380_78013,296,4380_56612,Westbury,89252-00021-1,0,4380_7778208_3010401,4380_937 -4380_78013,296,4380_56613,Westbury,89684-00021-1,0,4380_7778208_3010403,4380_936 -4380_78013,285,4380_56619,Westbury,89441-00009-1,0,4380_7778208_3010402,4380_940 -4380_77950,290,4380_5662,Ashbourne,54019-00015-1,0,4380_7778208_1050101,4380_52 -4380_78013,288,4380_56620,Westbury,89447-00011-1,0,4380_7778208_3010402,4380_940 -4380_78013,287,4380_56621,Westbury,89443-00012-1,0,4380_7778208_3010402,4380_940 -4380_78013,286,4380_56622,Westbury,89445-00010-1,0,4380_7778208_3010402,4380_940 -4380_78013,289,4380_56623,Westbury,89439-00014-1,0,4380_7778208_3010402,4380_940 -4380_78013,292,4380_56624,Westbury,89446-00016-1,0,4380_7778208_3010402,4380_940 -4380_78013,290,4380_56625,Westbury,89442-00015-1,0,4380_7778208_3010402,4380_940 -4380_78013,294,4380_56626,Westbury,89444-00018-1,0,4380_7778208_3010402,4380_940 -4380_78013,295,4380_56627,Westbury,89440-00019-1,0,4380_7778208_3010402,4380_940 -4380_78013,293,4380_56628,Westbury,89448-00017-1,0,4380_7778208_3010402,4380_940 -4380_77950,291,4380_5663,Emerald Park,54021-00013-1,0,4380_7778208_1050101,4380_56 -4380_78013,291,4380_56630,Westbury,89449-00013-1,0,4380_7778208_3010402,4380_937 -4380_78013,296,4380_56631,Westbury,89450-00021-1,0,4380_7778208_3010402,4380_937 -4380_78013,285,4380_56637,Westbury,89940-00009-1,0,4380_7778208_3010404,4380_940 -4380_78013,288,4380_56638,Westbury,89942-00011-1,0,4380_7778208_3010404,4380_940 -4380_78013,287,4380_56639,Westbury,89944-00012-1,0,4380_7778208_3010404,4380_940 -4380_77950,292,4380_5664,Ashbourne,54024-00016-1,0,4380_7778208_1050101,4380_52 -4380_78013,286,4380_56640,Westbury,89946-00010-1,0,4380_7778208_3010404,4380_940 -4380_78013,289,4380_56641,Westbury,89938-00014-1,0,4380_7778208_3010404,4380_940 -4380_78013,292,4380_56642,Westbury,89947-00016-1,0,4380_7778208_3010404,4380_940 -4380_78013,290,4380_56643,Westbury,89941-00015-1,0,4380_7778208_3010404,4380_940 -4380_78013,294,4380_56644,Westbury,89945-00018-1,0,4380_7778208_3010404,4380_940 -4380_78013,295,4380_56645,Westbury,89939-00019-1,0,4380_7778208_3010404,4380_940 -4380_78013,293,4380_56646,Westbury,89943-00017-1,0,4380_7778208_3010404,4380_940 -4380_78013,291,4380_56648,Westbury,89697-00013-1,0,4380_7778208_3010403,4380_937 -4380_78013,296,4380_56649,Westbury,89698-00021-1,0,4380_7778208_3010403,4380_937 -4380_77950,293,4380_5665,Ashbourne,54023-00017-1,0,4380_7778208_1050101,4380_52 -4380_78013,285,4380_56655,Westbury,90048-00009-1,0,4380_7778208_3010405,4380_940 -4380_78013,288,4380_56656,Westbury,90052-00011-1,0,4380_7778208_3010405,4380_940 -4380_78013,287,4380_56657,Westbury,90054-00012-1,0,4380_7778208_3010405,4380_940 -4380_78013,286,4380_56658,Westbury,90050-00010-1,0,4380_7778208_3010405,4380_940 -4380_78013,289,4380_56659,Westbury,90056-00014-1,0,4380_7778208_3010405,4380_940 -4380_77950,294,4380_5666,Ashbourne,54020-00018-1,0,4380_7778208_1050101,4380_52 -4380_78013,292,4380_56660,Westbury,90051-00016-1,0,4380_7778208_3010405,4380_940 -4380_78013,290,4380_56661,Westbury,90049-00015-1,0,4380_7778208_3010405,4380_940 -4380_78013,294,4380_56662,Westbury,90055-00018-1,0,4380_7778208_3010405,4380_940 -4380_78013,295,4380_56663,Westbury,90057-00019-1,0,4380_7778208_3010405,4380_940 -4380_78013,293,4380_56664,Westbury,90053-00017-1,0,4380_7778208_3010405,4380_940 -4380_78013,291,4380_56666,Westbury,89265-00013-1,0,4380_7778208_3010401,4380_937 -4380_78013,296,4380_56667,Westbury,89266-00021-1,0,4380_7778208_3010401,4380_937 -4380_77950,295,4380_5667,Emerald Park,4456-00019-1,0,4380_7778208_1050101,4380_58 -4380_78013,285,4380_56673,Westbury,89701-00009-1,0,4380_7778208_3010403,4380_940 -4380_78013,288,4380_56674,Westbury,89703-00011-1,0,4380_7778208_3010403,4380_940 -4380_78013,287,4380_56675,Westbury,89707-00012-1,0,4380_7778208_3010403,4380_940 -4380_78013,286,4380_56676,Westbury,89705-00010-1,0,4380_7778208_3010403,4380_940 -4380_78013,289,4380_56677,Westbury,89699-00014-1,0,4380_7778208_3010403,4380_940 -4380_78013,292,4380_56678,Westbury,89706-00016-1,0,4380_7778208_3010403,4380_940 -4380_78013,290,4380_56679,Westbury,89702-00015-1,0,4380_7778208_3010403,4380_940 -4380_77950,296,4380_5668,Ashbourne,4582-00021-1,0,4380_7778208_1050101,4380_59 -4380_78013,294,4380_56680,Westbury,89708-00018-1,0,4380_7778208_3010403,4380_940 -4380_78013,295,4380_56681,Westbury,89700-00019-1,0,4380_7778208_3010403,4380_940 -4380_78013,293,4380_56682,Westbury,89704-00017-1,0,4380_7778208_3010403,4380_940 -4380_78013,291,4380_56684,Westbury,89463-00013-1,0,4380_7778208_3010402,4380_937 -4380_78013,296,4380_56685,Westbury,89464-00021-1,0,4380_7778208_3010402,4380_937 -4380_78013,285,4380_56691,Westbury,89273-00009-1,0,4380_7778208_3010401,4380_940 -4380_78013,288,4380_56692,Westbury,89275-00011-1,0,4380_7778208_3010401,4380_940 -4380_78013,287,4380_56693,Westbury,89269-00012-1,0,4380_7778208_3010401,4380_940 -4380_78013,286,4380_56694,Westbury,89267-00010-1,0,4380_7778208_3010401,4380_940 -4380_78013,289,4380_56695,Westbury,89271-00014-1,0,4380_7778208_3010401,4380_940 -4380_78013,292,4380_56696,Westbury,89268-00016-1,0,4380_7778208_3010401,4380_940 -4380_78013,290,4380_56697,Westbury,89274-00015-1,0,4380_7778208_3010401,4380_940 -4380_78013,294,4380_56698,Westbury,89270-00018-1,0,4380_7778208_3010401,4380_940 -4380_78013,295,4380_56699,Westbury,89272-00019-1,0,4380_7778208_3010401,4380_940 -4380_78113,288,4380_567,Dundalk,49750-00011-1,0,4380_7778208_1000904,4380_10 -4380_78013,293,4380_56700,Westbury,89276-00017-1,0,4380_7778208_3010401,4380_940 -4380_78013,297,4380_56702,Westbury,89279-00008-1,0,4380_7778208_3010401,4380_936 -4380_78013,291,4380_56704,Westbury,89711-00013-1,0,4380_7778208_3010403,4380_937 -4380_78013,296,4380_56705,Westbury,89712-00021-1,0,4380_7778208_3010403,4380_937 -4380_78013,285,4380_56711,Westbury,89469-00009-1,0,4380_7778208_3010402,4380_937 -4380_78013,288,4380_56712,Westbury,89471-00011-1,0,4380_7778208_3010402,4380_937 -4380_78013,287,4380_56713,Westbury,89467-00012-1,0,4380_7778208_3010402,4380_937 -4380_78013,286,4380_56714,Westbury,89473-00010-1,0,4380_7778208_3010402,4380_937 -4380_78013,289,4380_56715,Westbury,89465-00014-1,0,4380_7778208_3010402,4380_937 -4380_78013,292,4380_56716,Westbury,89474-00016-1,0,4380_7778208_3010402,4380_937 -4380_78013,290,4380_56717,Westbury,89470-00015-1,0,4380_7778208_3010402,4380_937 -4380_78013,294,4380_56718,Westbury,89468-00018-1,0,4380_7778208_3010402,4380_937 -4380_78013,295,4380_56719,Westbury,89466-00019-1,0,4380_7778208_3010402,4380_937 -4380_78013,293,4380_56720,Westbury,89472-00017-1,0,4380_7778208_3010402,4380_937 -4380_78013,285,4380_56726,Westbury,89958-00009-1,0,4380_7778208_3010404,4380_937 -4380_78013,288,4380_56727,Westbury,89966-00011-1,0,4380_7778208_3010404,4380_937 -4380_78013,287,4380_56728,Westbury,89964-00012-1,0,4380_7778208_3010404,4380_937 -4380_78013,286,4380_56729,Westbury,89960-00010-1,0,4380_7778208_3010404,4380_937 -4380_78013,289,4380_56730,Westbury,89962-00014-1,0,4380_7778208_3010404,4380_937 -4380_78013,292,4380_56731,Westbury,89961-00016-1,0,4380_7778208_3010404,4380_937 -4380_78013,290,4380_56732,Westbury,89959-00015-1,0,4380_7778208_3010404,4380_937 -4380_78013,294,4380_56733,Westbury,89965-00018-1,0,4380_7778208_3010404,4380_937 -4380_78013,295,4380_56734,Westbury,89963-00019-1,0,4380_7778208_3010404,4380_937 -4380_78013,293,4380_56735,Westbury,89967-00017-1,0,4380_7778208_3010404,4380_937 -4380_78013,297,4380_56737,Westbury,89723-00008-1,0,4380_7778208_3010403,4380_936 -4380_78013,291,4380_56739,Westbury,89281-00013-1,0,4380_7778208_3010401,4380_937 -4380_78013,296,4380_56740,Westbury,89282-00021-1,0,4380_7778208_3010401,4380_937 -4380_78013,297,4380_56742,Westbury,89478-00008-1,0,4380_7778208_3010402,4380_937 -4380_78013,285,4380_56748,Westbury,89735-00009-1,0,4380_7778208_3010403,4380_937 -4380_78013,288,4380_56749,Westbury,89733-00011-1,0,4380_7778208_3010403,4380_937 -4380_78013,287,4380_56750,Westbury,89729-00012-1,0,4380_7778208_3010403,4380_937 -4380_78013,286,4380_56751,Westbury,89727-00010-1,0,4380_7778208_3010403,4380_937 -4380_78013,289,4380_56752,Westbury,89731-00014-1,0,4380_7778208_3010403,4380_937 -4380_78013,292,4380_56753,Westbury,89728-00016-1,0,4380_7778208_3010403,4380_937 -4380_78013,290,4380_56754,Westbury,89736-00015-1,0,4380_7778208_3010403,4380_937 -4380_78013,294,4380_56755,Westbury,89730-00018-1,0,4380_7778208_3010403,4380_937 -4380_78013,295,4380_56756,Westbury,89732-00019-1,0,4380_7778208_3010403,4380_937 -4380_78013,293,4380_56757,Westbury,89734-00017-1,0,4380_7778208_3010403,4380_937 -4380_78013,291,4380_56759,Westbury,89479-00013-1,0,4380_7778208_3010402,4380_937 -4380_77950,285,4380_5676,Drogheda,54331-00009-1,0,4380_7778208_1051102,4380_54 -4380_78013,296,4380_56760,Westbury,89480-00021-1,0,4380_7778208_3010402,4380_937 -4380_78013,297,4380_56762,Westbury,89293-00008-1,0,4380_7778208_3010401,4380_937 -4380_78013,285,4380_56768,Westbury,89302-00009-1,0,4380_7778208_3010401,4380_937 -4380_78013,288,4380_56769,Westbury,89300-00011-1,0,4380_7778208_3010401,4380_937 -4380_77950,286,4380_5677,Drogheda,54329-00010-1,0,4380_7778208_1051102,4380_54 -4380_78013,287,4380_56770,Westbury,89298-00012-1,0,4380_7778208_3010401,4380_937 -4380_78013,286,4380_56771,Westbury,89304-00010-1,0,4380_7778208_3010401,4380_937 -4380_78013,289,4380_56772,Westbury,89296-00014-1,0,4380_7778208_3010401,4380_937 -4380_78013,292,4380_56773,Westbury,89305-00016-1,0,4380_7778208_3010401,4380_937 -4380_78013,290,4380_56774,Westbury,89303-00015-1,0,4380_7778208_3010401,4380_937 -4380_78013,294,4380_56775,Westbury,89299-00018-1,0,4380_7778208_3010401,4380_937 -4380_78013,295,4380_56776,Westbury,89297-00019-1,0,4380_7778208_3010401,4380_937 -4380_78013,293,4380_56777,Westbury,89301-00017-1,0,4380_7778208_3010401,4380_937 -4380_78013,291,4380_56779,Westbury,89737-00013-1,0,4380_7778208_3010403,4380_937 -4380_77950,297,4380_5678,Drogheda,54426-00008-1,0,4380_7778208_1051103,4380_55 -4380_78013,296,4380_56780,Westbury,89738-00021-1,0,4380_7778208_3010403,4380_937 -4380_78013,297,4380_56782,Westbury,89747-00008-1,0,4380_7778208_3010403,4380_937 -4380_78013,285,4380_56788,Westbury,89492-00009-1,0,4380_7778208_3010402,4380_937 -4380_78013,288,4380_56789,Westbury,89486-00011-1,0,4380_7778208_3010402,4380_937 -4380_77950,288,4380_5679,Drogheda,54333-00011-1,0,4380_7778208_1051102,4380_54 -4380_78013,287,4380_56790,Westbury,89490-00012-1,0,4380_7778208_3010402,4380_937 -4380_78013,286,4380_56791,Westbury,89488-00010-1,0,4380_7778208_3010402,4380_937 -4380_78013,289,4380_56792,Westbury,89484-00014-1,0,4380_7778208_3010402,4380_937 -4380_78013,292,4380_56793,Westbury,89489-00016-1,0,4380_7778208_3010402,4380_937 -4380_78013,290,4380_56794,Westbury,89493-00015-1,0,4380_7778208_3010402,4380_937 -4380_78013,294,4380_56795,Westbury,89491-00018-1,0,4380_7778208_3010402,4380_937 -4380_78013,295,4380_56796,Westbury,89485-00019-1,0,4380_7778208_3010402,4380_937 -4380_78013,293,4380_56797,Westbury,89487-00017-1,0,4380_7778208_3010402,4380_937 -4380_78013,291,4380_56799,Westbury,89307-00013-1,0,4380_7778208_3010401,4380_937 -4380_78113,289,4380_568,Dundalk,49752-00014-1,0,4380_7778208_1000904,4380_10 -4380_77950,287,4380_5680,Drogheda,54327-00012-1,0,4380_7778208_1051102,4380_54 -4380_78013,296,4380_56800,Westbury,89308-00021-1,0,4380_7778208_3010401,4380_937 -4380_78013,297,4380_56802,Westbury,89494-00008-1,0,4380_7778208_3010402,4380_937 -4380_78013,285,4380_56808,Westbury,89978-00009-1,0,4380_7778208_3010404,4380_937 -4380_78013,288,4380_56809,Westbury,89980-00011-1,0,4380_7778208_3010404,4380_937 -4380_77950,289,4380_5681,Drogheda,54335-00014-1,0,4380_7778208_1051102,4380_54 -4380_78013,287,4380_56810,Westbury,89984-00012-1,0,4380_7778208_3010404,4380_937 -4380_78013,286,4380_56811,Westbury,89986-00010-1,0,4380_7778208_3010404,4380_937 -4380_78013,289,4380_56812,Westbury,89982-00014-1,0,4380_7778208_3010404,4380_937 -4380_78013,292,4380_56813,Westbury,89987-00016-1,0,4380_7778208_3010404,4380_937 -4380_78013,290,4380_56814,Westbury,89979-00015-1,0,4380_7778208_3010404,4380_937 -4380_78013,294,4380_56815,Westbury,89985-00018-1,0,4380_7778208_3010404,4380_937 -4380_78013,295,4380_56816,Westbury,89983-00019-1,0,4380_7778208_3010404,4380_937 -4380_78013,293,4380_56817,Westbury,89981-00017-1,0,4380_7778208_3010404,4380_937 -4380_78013,291,4380_56819,Westbury,89495-00013-1,0,4380_7778208_3010402,4380_937 -4380_77950,290,4380_5682,Drogheda,54332-00015-1,0,4380_7778208_1051102,4380_54 -4380_78013,296,4380_56820,Westbury,89496-00021-1,0,4380_7778208_3010402,4380_937 -4380_78013,297,4380_56822,Westbury,89319-00008-1,0,4380_7778208_3010401,4380_937 -4380_78013,285,4380_56828,Westbury,89761-00009-1,0,4380_7778208_3010403,4380_937 -4380_78013,288,4380_56829,Westbury,89755-00011-1,0,4380_7778208_3010403,4380_937 -4380_77950,291,4380_5683,Drogheda,54337-00013-1,0,4380_7778208_1051102,4380_57 -4380_78013,287,4380_56830,Westbury,89753-00012-1,0,4380_7778208_3010403,4380_937 -4380_78013,286,4380_56831,Westbury,89757-00010-1,0,4380_7778208_3010403,4380_937 -4380_78013,289,4380_56832,Westbury,89759-00014-1,0,4380_7778208_3010403,4380_937 -4380_78013,292,4380_56833,Westbury,89758-00016-1,0,4380_7778208_3010403,4380_937 -4380_78013,290,4380_56834,Westbury,89762-00015-1,0,4380_7778208_3010403,4380_937 -4380_78013,294,4380_56835,Westbury,89754-00018-1,0,4380_7778208_3010403,4380_937 -4380_78013,295,4380_56836,Westbury,89760-00019-1,0,4380_7778208_3010403,4380_937 -4380_78013,293,4380_56837,Westbury,89756-00017-1,0,4380_7778208_3010403,4380_937 -4380_78013,291,4380_56839,Westbury,89763-00013-1,0,4380_7778208_3010403,4380_937 -4380_77950,292,4380_5684,Drogheda,54330-00016-1,0,4380_7778208_1051102,4380_54 -4380_78013,296,4380_56840,Westbury,89764-00021-1,0,4380_7778208_3010403,4380_937 -4380_78013,297,4380_56842,Westbury,89765-00008-1,0,4380_7778208_3010403,4380_937 -4380_78013,285,4380_56848,Westbury,89325-00009-1,0,4380_7778208_3010401,4380_937 -4380_78013,288,4380_56849,Westbury,89323-00011-1,0,4380_7778208_3010401,4380_937 -4380_77950,293,4380_5685,Drogheda,54334-00017-1,0,4380_7778208_1051102,4380_54 -4380_78013,287,4380_56850,Westbury,89329-00012-1,0,4380_7778208_3010401,4380_937 -4380_78013,286,4380_56851,Westbury,89327-00010-1,0,4380_7778208_3010401,4380_937 -4380_78013,289,4380_56852,Westbury,89331-00014-1,0,4380_7778208_3010401,4380_937 -4380_78013,292,4380_56853,Westbury,89328-00016-1,0,4380_7778208_3010401,4380_937 -4380_78013,290,4380_56854,Westbury,89326-00015-1,0,4380_7778208_3010401,4380_937 -4380_78013,294,4380_56855,Westbury,89330-00018-1,0,4380_7778208_3010401,4380_937 -4380_78013,295,4380_56856,Westbury,89332-00019-1,0,4380_7778208_3010401,4380_937 -4380_78013,293,4380_56857,Westbury,89324-00017-1,0,4380_7778208_3010401,4380_937 -4380_78013,291,4380_56859,Westbury,89333-00013-1,0,4380_7778208_3010401,4380_937 -4380_77950,294,4380_5686,Drogheda,54328-00018-1,0,4380_7778208_1051102,4380_54 -4380_78013,296,4380_56860,Westbury,89334-00021-1,0,4380_7778208_3010401,4380_937 -4380_78013,297,4380_56862,Westbury,89510-00008-1,0,4380_7778208_3010402,4380_937 -4380_78013,285,4380_56868,Westbury,89511-00009-1,0,4380_7778208_3010402,4380_937 -4380_78013,288,4380_56869,Westbury,89519-00011-1,0,4380_7778208_3010402,4380_937 -4380_77950,295,4380_5687,Drogheda,54336-00019-1,0,4380_7778208_1051102,4380_54 -4380_78013,287,4380_56870,Westbury,89513-00012-1,0,4380_7778208_3010402,4380_937 -4380_78013,286,4380_56871,Westbury,89515-00010-1,0,4380_7778208_3010402,4380_937 -4380_78013,289,4380_56872,Westbury,89517-00014-1,0,4380_7778208_3010402,4380_937 -4380_78013,292,4380_56873,Westbury,89516-00016-1,0,4380_7778208_3010402,4380_937 -4380_78013,290,4380_56874,Westbury,89512-00015-1,0,4380_7778208_3010402,4380_937 -4380_78013,294,4380_56875,Westbury,89514-00018-1,0,4380_7778208_3010402,4380_937 -4380_78013,295,4380_56876,Westbury,89518-00019-1,0,4380_7778208_3010402,4380_937 -4380_78013,293,4380_56877,Westbury,89520-00017-1,0,4380_7778208_3010402,4380_937 -4380_78013,291,4380_56879,Westbury,89521-00013-1,0,4380_7778208_3010402,4380_937 -4380_77950,296,4380_5688,Drogheda,54338-00021-1,0,4380_7778208_1051102,4380_57 -4380_78013,296,4380_56880,Westbury,89522-00021-1,0,4380_7778208_3010402,4380_937 -4380_78013,297,4380_56882,Westbury,89337-00008-1,0,4380_7778208_3010401,4380_937 -4380_78013,285,4380_56888,Westbury,90006-00009-1,0,4380_7778208_3010404,4380_937 -4380_78013,288,4380_56889,Westbury,90004-00011-1,0,4380_7778208_3010404,4380_937 -4380_78013,287,4380_56890,Westbury,89998-00012-1,0,4380_7778208_3010404,4380_937 -4380_78013,286,4380_56891,Westbury,90002-00010-1,0,4380_7778208_3010404,4380_937 -4380_78013,289,4380_56892,Westbury,90000-00014-1,0,4380_7778208_3010404,4380_937 -4380_78013,292,4380_56893,Westbury,90003-00016-1,0,4380_7778208_3010404,4380_937 -4380_78013,290,4380_56894,Westbury,90007-00015-1,0,4380_7778208_3010404,4380_937 -4380_78013,294,4380_56895,Westbury,89999-00018-1,0,4380_7778208_3010404,4380_937 -4380_78013,295,4380_56896,Westbury,90001-00019-1,0,4380_7778208_3010404,4380_937 -4380_78013,293,4380_56897,Westbury,90005-00017-1,0,4380_7778208_3010404,4380_937 -4380_78013,291,4380_56899,Westbury,89779-00013-1,0,4380_7778208_3010403,4380_937 -4380_78113,290,4380_569,Dundalk,49749-00015-1,0,4380_7778208_1000904,4380_10 -4380_78013,296,4380_56900,Westbury,89780-00021-1,0,4380_7778208_3010403,4380_937 -4380_78013,297,4380_56902,Westbury,89781-00008-1,0,4380_7778208_3010403,4380_937 -4380_78013,285,4380_56908,Westbury,89786-00009-1,0,4380_7778208_3010403,4380_937 -4380_78013,288,4380_56909,Westbury,89784-00011-1,0,4380_7778208_3010403,4380_937 -4380_78013,287,4380_56910,Westbury,89788-00012-1,0,4380_7778208_3010403,4380_937 -4380_78013,286,4380_56911,Westbury,89790-00010-1,0,4380_7778208_3010403,4380_937 -4380_78013,289,4380_56912,Westbury,89782-00014-1,0,4380_7778208_3010403,4380_937 -4380_78013,292,4380_56913,Westbury,89791-00016-1,0,4380_7778208_3010403,4380_937 -4380_78013,290,4380_56914,Westbury,89787-00015-1,0,4380_7778208_3010403,4380_937 -4380_78013,294,4380_56915,Westbury,89789-00018-1,0,4380_7778208_3010403,4380_937 -4380_78013,295,4380_56916,Westbury,89783-00019-1,0,4380_7778208_3010403,4380_937 -4380_78013,293,4380_56917,Westbury,89785-00017-1,0,4380_7778208_3010403,4380_937 -4380_78013,291,4380_56919,Westbury,89349-00013-1,0,4380_7778208_3010401,4380_937 -4380_78013,296,4380_56920,Westbury,89350-00021-1,0,4380_7778208_3010401,4380_937 -4380_78013,297,4380_56922,Westbury,89536-00008-1,0,4380_7778208_3010402,4380_937 -4380_78013,285,4380_56928,Westbury,89355-00009-1,0,4380_7778208_3010401,4380_937 -4380_78013,288,4380_56929,Westbury,89351-00011-1,0,4380_7778208_3010401,4380_937 -4380_78013,287,4380_56930,Westbury,89359-00012-1,0,4380_7778208_3010401,4380_937 -4380_78013,286,4380_56931,Westbury,89357-00010-1,0,4380_7778208_3010401,4380_937 -4380_78013,289,4380_56932,Westbury,89353-00014-1,0,4380_7778208_3010401,4380_937 -4380_78013,292,4380_56933,Westbury,89358-00016-1,0,4380_7778208_3010401,4380_937 -4380_78013,290,4380_56934,Westbury,89356-00015-1,0,4380_7778208_3010401,4380_937 -4380_78013,294,4380_56935,Westbury,89360-00018-1,0,4380_7778208_3010401,4380_937 -4380_78013,295,4380_56936,Westbury,89354-00019-1,0,4380_7778208_3010401,4380_937 -4380_78013,293,4380_56937,Westbury,89352-00017-1,0,4380_7778208_3010401,4380_937 -4380_78013,291,4380_56939,Westbury,89537-00013-1,0,4380_7778208_3010402,4380_937 -4380_78013,296,4380_56940,Westbury,89538-00021-1,0,4380_7778208_3010402,4380_937 -4380_78013,297,4380_56942,Westbury,89361-00008-1,0,4380_7778208_3010401,4380_937 -4380_78013,285,4380_56948,Westbury,89545-00009-1,0,4380_7778208_3010402,4380_937 -4380_78013,288,4380_56949,Westbury,89539-00011-1,0,4380_7778208_3010402,4380_937 -4380_77950,285,4380_5695,Emerald Park,4638-00009-1,0,4380_7778208_1050102,4380_58 -4380_78013,287,4380_56950,Westbury,89547-00012-1,0,4380_7778208_3010402,4380_937 -4380_78013,286,4380_56951,Westbury,89543-00010-1,0,4380_7778208_3010402,4380_937 -4380_78013,289,4380_56952,Westbury,89541-00014-1,0,4380_7778208_3010402,4380_937 -4380_78013,292,4380_56953,Westbury,89544-00016-1,0,4380_7778208_3010402,4380_937 -4380_78013,290,4380_56954,Westbury,89546-00015-1,0,4380_7778208_3010402,4380_937 -4380_78013,294,4380_56955,Westbury,89548-00018-1,0,4380_7778208_3010402,4380_937 -4380_78013,295,4380_56956,Westbury,89542-00019-1,0,4380_7778208_3010402,4380_937 -4380_78013,293,4380_56957,Westbury,89540-00017-1,0,4380_7778208_3010402,4380_937 -4380_78013,291,4380_56959,Westbury,89805-00013-1,0,4380_7778208_3010403,4380_937 -4380_77950,286,4380_5696,Emerald Park,4680-00010-1,0,4380_7778208_1050102,4380_58 -4380_78013,296,4380_56960,Westbury,89806-00021-1,0,4380_7778208_3010403,4380_937 -4380_78013,297,4380_56967,Westbury,89807-00008-1,0,4380_7778208_3010403,4380_937 -4380_78013,285,4380_56968,Westbury,90072-00009-1,0,4380_7778208_3010405,4380_940 -4380_78013,288,4380_56969,Westbury,90068-00011-1,0,4380_7778208_3010405,4380_940 -4380_77950,288,4380_5697,Emerald Park,4694-00011-1,0,4380_7778208_1050102,4380_58 -4380_78013,287,4380_56970,Westbury,90076-00012-1,0,4380_7778208_3010405,4380_940 -4380_78013,286,4380_56971,Westbury,90070-00010-1,0,4380_7778208_3010405,4380_940 -4380_78013,289,4380_56972,Westbury,90074-00014-1,0,4380_7778208_3010405,4380_940 -4380_78013,292,4380_56973,Westbury,90071-00016-1,0,4380_7778208_3010405,4380_940 -4380_78013,290,4380_56974,Westbury,90073-00015-1,0,4380_7778208_3010405,4380_940 -4380_78013,294,4380_56975,Westbury,90077-00018-1,0,4380_7778208_3010405,4380_940 -4380_78013,295,4380_56976,Westbury,90075-00019-1,0,4380_7778208_3010405,4380_940 -4380_78013,293,4380_56977,Westbury,90069-00017-1,0,4380_7778208_3010405,4380_940 -4380_78013,291,4380_56979,Westbury,89375-00013-1,0,4380_7778208_3010401,4380_937 -4380_77950,287,4380_5698,Emerald Park,4722-00012-1,0,4380_7778208_1050102,4380_58 -4380_78013,296,4380_56980,Westbury,89376-00021-1,0,4380_7778208_3010401,4380_937 -4380_78013,297,4380_56987,Westbury,89554-00008-1,0,4380_7778208_3010402,4380_937 -4380_78013,285,4380_56988,Westbury,90022-00009-1,0,4380_7778208_3010404,4380_940 -4380_78013,288,4380_56989,Westbury,90018-00011-1,0,4380_7778208_3010404,4380_940 -4380_77950,289,4380_5699,Ashbourne,54108-00014-1,0,4380_7778208_1050102,4380_52 -4380_78013,287,4380_56990,Westbury,90020-00012-1,0,4380_7778208_3010404,4380_940 -4380_78013,286,4380_56991,Westbury,90024-00010-1,0,4380_7778208_3010404,4380_940 -4380_78013,289,4380_56992,Westbury,90026-00014-1,0,4380_7778208_3010404,4380_940 -4380_78013,292,4380_56993,Westbury,90025-00016-1,0,4380_7778208_3010404,4380_940 -4380_78013,290,4380_56994,Westbury,90023-00015-1,0,4380_7778208_3010404,4380_940 -4380_78013,294,4380_56995,Westbury,90021-00018-1,0,4380_7778208_3010404,4380_940 -4380_78013,295,4380_56996,Westbury,90027-00019-1,0,4380_7778208_3010404,4380_940 -4380_78013,293,4380_56997,Westbury,90019-00017-1,0,4380_7778208_3010404,4380_940 -4380_78013,291,4380_56999,Westbury,89563-00013-1,0,4380_7778208_3010402,4380_937 -4380_77946,290,4380_57,Dundalk,114778-00015-1,0,4380_7778208_10088802,4380_4 -4380_78113,291,4380_570,Dundalk,49746-00013-1,0,4380_7778208_1000904,4380_13 -4380_77950,290,4380_5700,Ashbourne,54107-00015-1,0,4380_7778208_1050102,4380_52 -4380_78013,296,4380_57000,Westbury,89564-00021-1,0,4380_7778208_3010402,4380_937 -4380_78013,297,4380_57007,Westbury,89377-00008-1,0,4380_7778208_3010401,4380_937 -4380_78013,285,4380_57008,Westbury,89815-00009-1,0,4380_7778208_3010403,4380_940 -4380_78013,288,4380_57009,Westbury,89813-00011-1,0,4380_7778208_3010403,4380_940 -4380_77950,291,4380_5701,Emerald Park,54104-00013-1,0,4380_7778208_1050102,4380_56 -4380_78013,287,4380_57010,Westbury,89817-00012-1,0,4380_7778208_3010403,4380_940 -4380_78013,286,4380_57011,Westbury,89819-00010-1,0,4380_7778208_3010403,4380_940 -4380_78013,289,4380_57012,Westbury,89811-00014-1,0,4380_7778208_3010403,4380_940 -4380_78013,292,4380_57013,Westbury,89820-00016-1,0,4380_7778208_3010403,4380_940 -4380_78013,290,4380_57014,Westbury,89816-00015-1,0,4380_7778208_3010403,4380_940 -4380_78013,294,4380_57015,Westbury,89818-00018-1,0,4380_7778208_3010403,4380_940 -4380_78013,295,4380_57016,Westbury,89812-00019-1,0,4380_7778208_3010403,4380_940 -4380_78013,293,4380_57017,Westbury,89814-00017-1,0,4380_7778208_3010403,4380_940 -4380_78013,291,4380_57019,Westbury,89821-00013-1,0,4380_7778208_3010403,4380_937 -4380_77950,292,4380_5702,Ashbourne,54106-00016-1,0,4380_7778208_1050102,4380_52 -4380_78013,296,4380_57020,Westbury,89822-00021-1,0,4380_7778208_3010403,4380_937 -4380_78013,297,4380_57027,Westbury,89823-00008-1,0,4380_7778208_3010403,4380_937 -4380_78013,285,4380_57028,Westbury,89382-00009-1,0,4380_7778208_3010401,4380_940 -4380_78013,288,4380_57029,Westbury,89386-00011-1,0,4380_7778208_3010401,4380_940 -4380_77950,293,4380_5703,Ashbourne,54105-00017-1,0,4380_7778208_1050102,4380_52 -4380_78013,287,4380_57030,Westbury,89384-00012-1,0,4380_7778208_3010401,4380_940 -4380_78013,286,4380_57031,Westbury,89388-00010-1,0,4380_7778208_3010401,4380_940 -4380_78013,289,4380_57032,Westbury,89380-00014-1,0,4380_7778208_3010401,4380_940 -4380_78013,292,4380_57033,Westbury,89389-00016-1,0,4380_7778208_3010401,4380_940 -4380_78013,290,4380_57034,Westbury,89383-00015-1,0,4380_7778208_3010401,4380_940 -4380_78013,294,4380_57035,Westbury,89385-00018-1,0,4380_7778208_3010401,4380_940 -4380_78013,295,4380_57036,Westbury,89381-00019-1,0,4380_7778208_3010401,4380_940 -4380_78013,293,4380_57037,Westbury,89387-00017-1,0,4380_7778208_3010401,4380_940 -4380_78013,291,4380_57039,Westbury,89391-00013-1,0,4380_7778208_3010401,4380_937 -4380_77950,294,4380_5704,Ashbourne,54103-00018-1,0,4380_7778208_1050102,4380_52 -4380_78013,296,4380_57040,Westbury,89392-00021-1,0,4380_7778208_3010401,4380_937 -4380_78013,297,4380_57047,Westbury,89578-00008-1,0,4380_7778208_3010402,4380_937 -4380_78013,285,4380_57048,Westbury,89576-00009-1,0,4380_7778208_3010402,4380_940 -4380_78013,288,4380_57049,Westbury,89574-00011-1,0,4380_7778208_3010402,4380_940 -4380_77950,295,4380_5705,Emerald Park,4610-00019-1,0,4380_7778208_1050102,4380_58 -4380_78013,287,4380_57050,Westbury,89572-00012-1,0,4380_7778208_3010402,4380_940 -4380_78013,286,4380_57051,Westbury,89568-00010-1,0,4380_7778208_3010402,4380_940 -4380_78013,289,4380_57052,Westbury,89570-00014-1,0,4380_7778208_3010402,4380_940 -4380_78013,292,4380_57053,Westbury,89569-00016-1,0,4380_7778208_3010402,4380_940 -4380_78013,290,4380_57054,Westbury,89577-00015-1,0,4380_7778208_3010402,4380_940 -4380_78013,294,4380_57055,Westbury,89573-00018-1,0,4380_7778208_3010402,4380_940 -4380_78013,295,4380_57056,Westbury,89571-00019-1,0,4380_7778208_3010402,4380_940 -4380_78013,293,4380_57057,Westbury,89575-00017-1,0,4380_7778208_3010402,4380_940 -4380_78013,291,4380_57059,Westbury,89579-00013-1,0,4380_7778208_3010402,4380_937 -4380_77950,296,4380_5706,Ashbourne,4750-00021-1,0,4380_7778208_1050102,4380_59 -4380_78013,296,4380_57060,Westbury,89580-00021-1,0,4380_7778208_3010402,4380_937 -4380_78013,297,4380_57067,Westbury,89395-00008-1,0,4380_7778208_3010401,4380_937 -4380_78013,285,4380_57068,Westbury,90092-00009-1,0,4380_7778208_3010405,4380_940 -4380_78013,288,4380_57069,Westbury,90090-00011-1,0,4380_7778208_3010405,4380_940 -4380_78013,287,4380_57070,Westbury,90094-00012-1,0,4380_7778208_3010405,4380_940 -4380_78013,286,4380_57071,Westbury,90088-00010-1,0,4380_7778208_3010405,4380_940 -4380_78013,289,4380_57072,Westbury,90096-00014-1,0,4380_7778208_3010405,4380_940 -4380_78013,292,4380_57073,Westbury,90089-00016-1,0,4380_7778208_3010405,4380_940 -4380_78013,290,4380_57074,Westbury,90093-00015-1,0,4380_7778208_3010405,4380_940 -4380_78013,294,4380_57075,Westbury,90095-00018-1,0,4380_7778208_3010405,4380_940 -4380_78013,295,4380_57076,Westbury,90097-00019-1,0,4380_7778208_3010405,4380_940 -4380_78013,293,4380_57077,Westbury,90091-00017-1,0,4380_7778208_3010405,4380_940 -4380_78013,291,4380_57079,Westbury,89837-00013-1,0,4380_7778208_3010403,4380_938 -4380_78013,296,4380_57080,Westbury,89838-00021-1,0,4380_7778208_3010403,4380_938 -4380_78013,285,4380_57086,Westbury,90044-00009-1,0,4380_7778208_3010404,4380_941 -4380_78013,288,4380_57087,Westbury,90038-00011-1,0,4380_7778208_3010404,4380_941 -4380_78013,287,4380_57088,Westbury,90042-00012-1,0,4380_7778208_3010404,4380_941 -4380_78013,286,4380_57089,Westbury,90040-00010-1,0,4380_7778208_3010404,4380_941 -4380_78013,289,4380_57090,Westbury,90046-00014-1,0,4380_7778208_3010404,4380_941 -4380_78013,292,4380_57091,Westbury,90041-00016-1,0,4380_7778208_3010404,4380_941 -4380_78013,290,4380_57092,Westbury,90045-00015-1,0,4380_7778208_3010404,4380_941 -4380_78013,294,4380_57093,Westbury,90043-00018-1,0,4380_7778208_3010404,4380_941 -4380_78013,295,4380_57094,Westbury,90047-00019-1,0,4380_7778208_3010404,4380_941 -4380_78013,293,4380_57095,Westbury,90039-00017-1,0,4380_7778208_3010404,4380_941 -4380_78013,297,4380_57097,Westbury,89839-00008-1,0,4380_7778208_3010403,4380_938 -4380_78113,292,4380_571,Dundalk,49745-00016-1,0,4380_7778208_1000904,4380_10 -4380_78013,285,4380_57103,Westbury,89846-00009-1,0,4380_7778208_3010403,4380_941 -4380_78013,288,4380_57104,Westbury,89840-00011-1,0,4380_7778208_3010403,4380_941 -4380_78013,287,4380_57105,Westbury,89842-00012-1,0,4380_7778208_3010403,4380_941 -4380_78013,286,4380_57106,Westbury,89848-00010-1,0,4380_7778208_3010403,4380_941 -4380_78013,289,4380_57107,Westbury,89844-00014-1,0,4380_7778208_3010403,4380_941 -4380_78013,292,4380_57108,Westbury,89849-00016-1,0,4380_7778208_3010403,4380_941 -4380_78013,290,4380_57109,Westbury,89847-00015-1,0,4380_7778208_3010403,4380_941 -4380_78013,294,4380_57110,Westbury,89843-00018-1,0,4380_7778208_3010403,4380_941 -4380_78013,295,4380_57111,Westbury,89845-00019-1,0,4380_7778208_3010403,4380_941 -4380_78013,293,4380_57112,Westbury,89841-00017-1,0,4380_7778208_3010403,4380_941 -4380_78013,291,4380_57114,Westbury,89407-00013-1,0,4380_7778208_3010401,4380_938 -4380_78013,296,4380_57115,Westbury,89408-00021-1,0,4380_7778208_3010401,4380_938 -4380_78013,297,4380_57117,Westbury,89594-00008-1,0,4380_7778208_3010402,4380_938 -4380_78013,285,4380_57123,Westbury,89601-00009-1,0,4380_7778208_3010402,4380_938 -4380_78013,288,4380_57124,Westbury,89597-00011-1,0,4380_7778208_3010402,4380_938 -4380_78013,287,4380_57125,Westbury,89599-00012-1,0,4380_7778208_3010402,4380_938 -4380_78013,286,4380_57126,Westbury,89603-00010-1,0,4380_7778208_3010402,4380_938 -4380_78013,289,4380_57127,Westbury,89595-00014-1,0,4380_7778208_3010402,4380_938 -4380_78013,292,4380_57128,Westbury,89604-00016-1,0,4380_7778208_3010402,4380_938 -4380_78013,290,4380_57129,Westbury,89602-00015-1,0,4380_7778208_3010402,4380_938 -4380_77950,285,4380_5713,Drogheda,54435-00009-1,0,4380_7778208_1051103,4380_54 -4380_78013,294,4380_57130,Westbury,89600-00018-1,0,4380_7778208_3010402,4380_938 -4380_78013,295,4380_57131,Westbury,89596-00019-1,0,4380_7778208_3010402,4380_938 -4380_78013,293,4380_57132,Westbury,89598-00017-1,0,4380_7778208_3010402,4380_938 -4380_78013,291,4380_57134,Westbury,89605-00013-1,0,4380_7778208_3010402,4380_938 -4380_78013,296,4380_57135,Westbury,89606-00021-1,0,4380_7778208_3010402,4380_938 -4380_78013,297,4380_57137,Westbury,89409-00008-1,0,4380_7778208_3010401,4380_938 -4380_77950,286,4380_5714,Drogheda,54433-00010-1,0,4380_7778208_1051103,4380_54 -4380_78013,285,4380_57143,Westbury,90110-00009-1,0,4380_7778208_3010405,4380_938 -4380_78013,288,4380_57144,Westbury,90114-00011-1,0,4380_7778208_3010405,4380_938 -4380_78013,287,4380_57145,Westbury,90112-00012-1,0,4380_7778208_3010405,4380_938 -4380_78013,286,4380_57146,Westbury,90116-00010-1,0,4380_7778208_3010405,4380_938 -4380_78013,289,4380_57147,Westbury,90108-00014-1,0,4380_7778208_3010405,4380_938 -4380_78013,292,4380_57148,Westbury,90117-00016-1,0,4380_7778208_3010405,4380_938 -4380_78013,290,4380_57149,Westbury,90111-00015-1,0,4380_7778208_3010405,4380_938 -4380_77950,288,4380_5715,Drogheda,54429-00011-1,0,4380_7778208_1051103,4380_54 -4380_78013,294,4380_57150,Westbury,90113-00018-1,0,4380_7778208_3010405,4380_938 -4380_78013,295,4380_57151,Westbury,90109-00019-1,0,4380_7778208_3010405,4380_938 -4380_78013,293,4380_57152,Westbury,90115-00017-1,0,4380_7778208_3010405,4380_938 -4380_78013,291,4380_57154,Westbury,89863-00013-1,0,4380_7778208_3010403,4380_938 -4380_78013,296,4380_57155,Westbury,89864-00021-1,0,4380_7778208_3010403,4380_938 -4380_78013,297,4380_57157,Westbury,89865-00008-1,0,4380_7778208_3010403,4380_938 -4380_77950,287,4380_5716,Drogheda,54437-00012-1,0,4380_7778208_1051103,4380_54 -4380_78013,285,4380_57163,Westbury,89868-00009-1,0,4380_7778208_3010403,4380_938 -4380_78013,288,4380_57164,Westbury,89866-00011-1,0,4380_7778208_3010403,4380_938 -4380_78013,287,4380_57165,Westbury,89870-00012-1,0,4380_7778208_3010403,4380_938 -4380_78013,286,4380_57166,Westbury,89872-00010-1,0,4380_7778208_3010403,4380_938 -4380_78013,289,4380_57167,Westbury,89874-00014-1,0,4380_7778208_3010403,4380_938 -4380_78013,292,4380_57168,Westbury,89873-00016-1,0,4380_7778208_3010403,4380_938 -4380_78013,290,4380_57169,Westbury,89869-00015-1,0,4380_7778208_3010403,4380_938 -4380_77950,289,4380_5717,Drogheda,54431-00014-1,0,4380_7778208_1051103,4380_54 -4380_78013,294,4380_57170,Westbury,89871-00018-1,0,4380_7778208_3010403,4380_938 -4380_78013,295,4380_57171,Westbury,89875-00019-1,0,4380_7778208_3010403,4380_938 -4380_78013,293,4380_57172,Westbury,89867-00017-1,0,4380_7778208_3010403,4380_938 -4380_78013,291,4380_57174,Westbury,89413-00013-1,0,4380_7778208_3010401,4380_938 -4380_78013,296,4380_57175,Westbury,89414-00021-1,0,4380_7778208_3010401,4380_938 -4380_78013,297,4380_57177,Westbury,89620-00008-1,0,4380_7778208_3010402,4380_938 -4380_77950,290,4380_5718,Drogheda,54436-00015-1,0,4380_7778208_1051103,4380_54 -4380_78013,285,4380_57183,Westbury,89627-00009-1,0,4380_7778208_3010402,4380_938 -4380_78013,288,4380_57184,Westbury,89621-00011-1,0,4380_7778208_3010402,4380_938 -4380_78013,287,4380_57185,Westbury,89623-00012-1,0,4380_7778208_3010402,4380_938 -4380_78013,286,4380_57186,Westbury,89625-00010-1,0,4380_7778208_3010402,4380_938 -4380_78013,289,4380_57187,Westbury,89629-00014-1,0,4380_7778208_3010402,4380_938 -4380_78013,292,4380_57188,Westbury,89626-00016-1,0,4380_7778208_3010402,4380_938 -4380_78013,290,4380_57189,Westbury,89628-00015-1,0,4380_7778208_3010402,4380_938 -4380_77950,291,4380_5719,Drogheda,54545-00013-1,0,4380_7778208_1051105,4380_55 -4380_78013,294,4380_57190,Westbury,89624-00018-1,0,4380_7778208_3010402,4380_938 -4380_78013,295,4380_57191,Westbury,89630-00019-1,0,4380_7778208_3010402,4380_938 -4380_78013,293,4380_57192,Westbury,89622-00017-1,0,4380_7778208_3010402,4380_938 -4380_78013,291,4380_57194,Westbury,89631-00013-1,0,4380_7778208_3010402,4380_938 -4380_78013,296,4380_57195,Westbury,89632-00021-1,0,4380_7778208_3010402,4380_938 -4380_78013,297,4380_57197,Westbury,89415-00008-1,0,4380_7778208_3010401,4380_938 -4380_78113,293,4380_572,Dundalk,49751-00017-1,0,4380_7778208_1000904,4380_10 -4380_77950,292,4380_5720,Drogheda,54434-00016-1,0,4380_7778208_1051103,4380_54 -4380_78013,285,4380_57203,Westbury,90136-00009-1,0,4380_7778208_3010405,4380_938 -4380_78013,288,4380_57204,Westbury,90130-00011-1,0,4380_7778208_3010405,4380_938 -4380_78013,287,4380_57205,Westbury,90134-00012-1,0,4380_7778208_3010405,4380_938 -4380_78013,286,4380_57206,Westbury,90132-00010-1,0,4380_7778208_3010405,4380_938 -4380_78013,289,4380_57207,Westbury,90128-00014-1,0,4380_7778208_3010405,4380_938 -4380_78013,292,4380_57208,Westbury,90133-00016-1,0,4380_7778208_3010405,4380_938 -4380_78013,290,4380_57209,Westbury,90137-00015-1,0,4380_7778208_3010405,4380_938 -4380_77950,293,4380_5721,Drogheda,54430-00017-1,0,4380_7778208_1051103,4380_54 -4380_78013,294,4380_57210,Westbury,90135-00018-1,0,4380_7778208_3010405,4380_938 -4380_78013,295,4380_57211,Westbury,90129-00019-1,0,4380_7778208_3010405,4380_938 -4380_78013,293,4380_57212,Westbury,90131-00017-1,0,4380_7778208_3010405,4380_938 -4380_78013,291,4380_57214,Westbury,89889-00013-1,0,4380_7778208_3010403,4380_938 -4380_78013,296,4380_57215,Westbury,89890-00021-1,0,4380_7778208_3010403,4380_938 -4380_78013,297,4380_57217,Westbury,89891-00008-1,0,4380_7778208_3010403,4380_938 -4380_77950,294,4380_5722,Drogheda,54438-00018-1,0,4380_7778208_1051103,4380_54 -4380_78013,285,4380_57223,Westbury,89892-00009-1,0,4380_7778208_3010403,4380_938 -4380_78013,288,4380_57224,Westbury,89898-00011-1,0,4380_7778208_3010403,4380_938 -4380_78013,287,4380_57225,Westbury,89894-00012-1,0,4380_7778208_3010403,4380_938 -4380_78013,286,4380_57226,Westbury,89896-00010-1,0,4380_7778208_3010403,4380_938 -4380_78013,289,4380_57227,Westbury,89900-00014-1,0,4380_7778208_3010403,4380_938 -4380_78013,292,4380_57228,Westbury,89897-00016-1,0,4380_7778208_3010403,4380_938 -4380_78013,290,4380_57229,Westbury,89893-00015-1,0,4380_7778208_3010403,4380_938 -4380_77950,295,4380_5723,Drogheda,54432-00019-1,0,4380_7778208_1051103,4380_54 -4380_78013,294,4380_57230,Westbury,89895-00018-1,0,4380_7778208_3010403,4380_938 -4380_78013,295,4380_57231,Westbury,89901-00019-1,0,4380_7778208_3010403,4380_938 -4380_78013,293,4380_57232,Westbury,89899-00017-1,0,4380_7778208_3010403,4380_938 -4380_78013,291,4380_57234,Westbury,89419-00013-1,0,4380_7778208_3010401,4380_938 -4380_78013,296,4380_57235,Westbury,89420-00021-1,0,4380_7778208_3010401,4380_938 -4380_78013,297,4380_57237,Westbury,89646-00008-1,0,4380_7778208_3010402,4380_938 -4380_77950,296,4380_5724,Drogheda,54546-00021-1,0,4380_7778208_1051105,4380_55 -4380_78013,285,4380_57243,Westbury,89651-00009-1,0,4380_7778208_3010402,4380_938 -4380_78013,288,4380_57244,Westbury,89653-00011-1,0,4380_7778208_3010402,4380_938 -4380_78013,287,4380_57245,Westbury,89655-00012-1,0,4380_7778208_3010402,4380_938 -4380_78013,286,4380_57246,Westbury,89647-00010-1,0,4380_7778208_3010402,4380_938 -4380_78013,289,4380_57247,Westbury,89649-00014-1,0,4380_7778208_3010402,4380_938 -4380_78013,292,4380_57248,Westbury,89648-00016-1,0,4380_7778208_3010402,4380_938 -4380_78013,290,4380_57249,Westbury,89652-00015-1,0,4380_7778208_3010402,4380_938 -4380_78013,294,4380_57250,Westbury,89656-00018-1,0,4380_7778208_3010402,4380_938 -4380_78013,295,4380_57251,Westbury,89650-00019-1,0,4380_7778208_3010402,4380_938 -4380_78013,293,4380_57252,Westbury,89654-00017-1,0,4380_7778208_3010402,4380_938 -4380_78013,291,4380_57254,Westbury,89657-00013-1,0,4380_7778208_3010402,4380_938 -4380_78013,296,4380_57255,Westbury,89658-00021-1,0,4380_7778208_3010402,4380_938 -4380_78013,297,4380_57257,Westbury,89421-00008-1,0,4380_7778208_3010401,4380_938 -4380_78013,285,4380_57263,Westbury,90148-00009-1,0,4380_7778208_3010405,4380_938 -4380_78013,288,4380_57264,Westbury,90154-00011-1,0,4380_7778208_3010405,4380_938 -4380_78013,287,4380_57265,Westbury,90156-00012-1,0,4380_7778208_3010405,4380_938 -4380_78013,286,4380_57266,Westbury,90150-00010-1,0,4380_7778208_3010405,4380_938 -4380_78013,289,4380_57267,Westbury,90152-00014-1,0,4380_7778208_3010405,4380_938 -4380_78013,292,4380_57268,Westbury,90151-00016-1,0,4380_7778208_3010405,4380_938 -4380_78013,290,4380_57269,Westbury,90149-00015-1,0,4380_7778208_3010405,4380_938 -4380_78013,294,4380_57270,Westbury,90157-00018-1,0,4380_7778208_3010405,4380_938 -4380_78013,295,4380_57271,Westbury,90153-00019-1,0,4380_7778208_3010405,4380_938 -4380_78013,293,4380_57272,Westbury,90155-00017-1,0,4380_7778208_3010405,4380_938 -4380_78013,291,4380_57274,City Centre,89915-00013-1,0,4380_7778208_3010403,4380_939 -4380_78013,296,4380_57275,City Centre,89916-00021-1,0,4380_7778208_3010403,4380_939 -4380_78013,297,4380_57277,City Centre,89917-00008-1,0,4380_7778208_3010403,4380_939 -4380_78013,285,4380_57283,City Centre,89922-00009-1,0,4380_7778208_3010403,4380_939 -4380_78013,288,4380_57284,City Centre,89926-00011-1,0,4380_7778208_3010403,4380_939 -4380_78013,287,4380_57285,City Centre,89918-00012-1,0,4380_7778208_3010403,4380_939 -4380_78013,286,4380_57286,City Centre,89920-00010-1,0,4380_7778208_3010403,4380_939 -4380_78013,289,4380_57287,City Centre,89924-00014-1,0,4380_7778208_3010403,4380_939 -4380_78013,292,4380_57288,City Centre,89921-00016-1,0,4380_7778208_3010403,4380_939 -4380_78013,290,4380_57289,City Centre,89923-00015-1,0,4380_7778208_3010403,4380_939 -4380_78013,294,4380_57290,City Centre,89919-00018-1,0,4380_7778208_3010403,4380_939 -4380_78013,295,4380_57291,City Centre,89925-00019-1,0,4380_7778208_3010403,4380_939 -4380_78013,293,4380_57292,City Centre,89927-00017-1,0,4380_7778208_3010403,4380_939 -4380_78013,291,4380_57294,City Centre,89425-00013-1,0,4380_7778208_3010401,4380_939 -4380_78013,296,4380_57295,City Centre,89426-00021-1,0,4380_7778208_3010401,4380_939 -4380_78013,297,4380_57297,City Centre,89672-00008-1,0,4380_7778208_3010402,4380_939 -4380_78113,294,4380_573,Dundalk,49755-00018-1,0,4380_7778208_1000904,4380_10 -4380_78013,285,4380_57303,Father Russell Road,89229-00009-1,1,4380_7778208_3010401,4380_946 -4380_78013,288,4380_57304,Father Russell Road,89237-00011-1,1,4380_7778208_3010401,4380_946 -4380_78013,287,4380_57305,Father Russell Road,89233-00012-1,1,4380_7778208_3010401,4380_946 -4380_78013,286,4380_57306,Father Russell Road,89231-00010-1,1,4380_7778208_3010401,4380_946 -4380_78013,289,4380_57307,Father Russell Road,89235-00014-1,1,4380_7778208_3010401,4380_946 -4380_78013,292,4380_57308,Father Russell Road,89232-00016-1,1,4380_7778208_3010401,4380_946 -4380_78013,290,4380_57309,Father Russell Road,89230-00015-1,1,4380_7778208_3010401,4380_946 -4380_78013,294,4380_57310,Father Russell Road,89234-00018-1,1,4380_7778208_3010401,4380_946 -4380_78013,295,4380_57311,Father Russell Road,89236-00019-1,1,4380_7778208_3010401,4380_946 -4380_78013,293,4380_57312,Father Russell Road,89238-00017-1,1,4380_7778208_3010401,4380_946 -4380_78013,285,4380_57318,Father Russell Road,89433-00009-1,1,4380_7778208_3010402,4380_947 -4380_78013,288,4380_57319,Father Russell Road,89427-00011-1,1,4380_7778208_3010402,4380_947 -4380_77950,285,4380_5732,Drogheda,54537-00009-1,0,4380_7778208_1051104,4380_54 -4380_78013,287,4380_57320,Father Russell Road,89429-00012-1,1,4380_7778208_3010402,4380_947 -4380_78013,286,4380_57321,Father Russell Road,89431-00010-1,1,4380_7778208_3010402,4380_947 -4380_78013,289,4380_57322,Father Russell Road,89435-00014-1,1,4380_7778208_3010402,4380_947 -4380_78013,292,4380_57323,Father Russell Road,89432-00016-1,1,4380_7778208_3010402,4380_947 -4380_78013,290,4380_57324,Father Russell Road,89434-00015-1,1,4380_7778208_3010402,4380_947 -4380_78013,294,4380_57325,Father Russell Road,89430-00018-1,1,4380_7778208_3010402,4380_947 -4380_78013,295,4380_57326,Father Russell Road,89436-00019-1,1,4380_7778208_3010402,4380_947 -4380_78013,293,4380_57327,Father Russell Road,89428-00017-1,1,4380_7778208_3010402,4380_947 -4380_78013,291,4380_57329,Father Russell Road,89239-00013-1,1,4380_7778208_3010401,4380_945 -4380_77950,286,4380_5733,Drogheda,54528-00010-1,0,4380_7778208_1051104,4380_54 -4380_78013,296,4380_57330,Father Russell Road,89240-00021-1,1,4380_7778208_3010401,4380_945 -4380_78013,291,4380_57332,Father Russell Road,89437-00013-1,1,4380_7778208_3010402,4380_942 -4380_78013,296,4380_57333,Father Russell Road,89438-00021-1,1,4380_7778208_3010402,4380_942 -4380_78013,285,4380_57339,Father Russell Road,89687-00009-1,1,4380_7778208_3010403,4380_947 -4380_77950,297,4380_5734,Drogheda,54532-00008-1,0,4380_7778208_1051104,4380_55 -4380_78013,288,4380_57340,Father Russell Road,89689-00011-1,1,4380_7778208_3010403,4380_947 -4380_78013,287,4380_57341,Father Russell Road,89693-00012-1,1,4380_7778208_3010403,4380_947 -4380_78013,286,4380_57342,Father Russell Road,89691-00010-1,1,4380_7778208_3010403,4380_947 -4380_78013,289,4380_57343,Father Russell Road,89685-00014-1,1,4380_7778208_3010403,4380_947 -4380_78013,292,4380_57344,Father Russell Road,89692-00016-1,1,4380_7778208_3010403,4380_947 -4380_78013,290,4380_57345,Father Russell Road,89688-00015-1,1,4380_7778208_3010403,4380_947 -4380_78013,294,4380_57346,Father Russell Road,89694-00018-1,1,4380_7778208_3010403,4380_947 -4380_78013,295,4380_57347,Father Russell Road,89686-00019-1,1,4380_7778208_3010403,4380_947 -4380_78013,293,4380_57348,Father Russell Road,89690-00017-1,1,4380_7778208_3010403,4380_947 -4380_77950,288,4380_5735,Drogheda,54530-00011-1,0,4380_7778208_1051104,4380_54 -4380_78013,291,4380_57350,Father Russell Road,89695-00013-1,1,4380_7778208_3010403,4380_942 -4380_78013,296,4380_57351,Father Russell Road,89696-00021-1,1,4380_7778208_3010403,4380_942 -4380_78013,285,4380_57357,Father Russell Road,89932-00009-1,1,4380_7778208_3010404,4380_946 -4380_78013,288,4380_57358,Father Russell Road,89928-00011-1,1,4380_7778208_3010404,4380_946 -4380_78013,287,4380_57359,Father Russell Road,89936-00012-1,1,4380_7778208_3010404,4380_946 -4380_77950,287,4380_5736,Drogheda,54533-00012-1,0,4380_7778208_1051104,4380_54 -4380_78013,286,4380_57360,Father Russell Road,89934-00010-1,1,4380_7778208_3010404,4380_946 -4380_78013,289,4380_57361,Father Russell Road,89930-00014-1,1,4380_7778208_3010404,4380_946 -4380_78013,292,4380_57362,Father Russell Road,89935-00016-1,1,4380_7778208_3010404,4380_946 -4380_78013,290,4380_57363,Father Russell Road,89933-00015-1,1,4380_7778208_3010404,4380_946 -4380_78013,294,4380_57364,Father Russell Road,89937-00018-1,1,4380_7778208_3010404,4380_946 -4380_78013,295,4380_57365,Father Russell Road,89931-00019-1,1,4380_7778208_3010404,4380_946 -4380_78013,293,4380_57366,Father Russell Road,89929-00017-1,1,4380_7778208_3010404,4380_946 -4380_77950,289,4380_5737,Drogheda,54535-00014-1,0,4380_7778208_1051104,4380_54 -4380_78013,285,4380_57372,Father Russell Road,89261-00009-1,1,4380_7778208_3010401,4380_947 -4380_78013,288,4380_57373,Father Russell Road,89253-00011-1,1,4380_7778208_3010401,4380_947 -4380_78013,287,4380_57374,Father Russell Road,89257-00012-1,1,4380_7778208_3010401,4380_947 -4380_78013,286,4380_57375,Father Russell Road,89259-00010-1,1,4380_7778208_3010401,4380_947 -4380_78013,289,4380_57376,Father Russell Road,89255-00014-1,1,4380_7778208_3010401,4380_947 -4380_78013,292,4380_57377,Father Russell Road,89260-00016-1,1,4380_7778208_3010401,4380_947 -4380_78013,290,4380_57378,Father Russell Road,89262-00015-1,1,4380_7778208_3010401,4380_947 -4380_78013,294,4380_57379,Father Russell Road,89258-00018-1,1,4380_7778208_3010401,4380_947 -4380_77950,290,4380_5738,Drogheda,54538-00015-1,0,4380_7778208_1051104,4380_54 -4380_78013,295,4380_57380,Father Russell Road,89256-00019-1,1,4380_7778208_3010401,4380_947 -4380_78013,293,4380_57381,Father Russell Road,89254-00017-1,1,4380_7778208_3010401,4380_947 -4380_78013,291,4380_57383,Father Russell Road,89263-00013-1,1,4380_7778208_3010401,4380_942 -4380_78013,296,4380_57384,Father Russell Road,89264-00021-1,1,4380_7778208_3010401,4380_942 -4380_77950,291,4380_5739,Drogheda,54439-00013-1,0,4380_7778208_1051103,4380_57 -4380_78013,285,4380_57390,Father Russell Road,89457-00009-1,1,4380_7778208_3010402,4380_947 -4380_78013,288,4380_57391,Father Russell Road,89459-00011-1,1,4380_7778208_3010402,4380_947 -4380_78013,287,4380_57392,Father Russell Road,89451-00012-1,1,4380_7778208_3010402,4380_947 -4380_78013,286,4380_57393,Father Russell Road,89453-00010-1,1,4380_7778208_3010402,4380_947 -4380_78013,289,4380_57394,Father Russell Road,89455-00014-1,1,4380_7778208_3010402,4380_947 -4380_78013,292,4380_57395,Father Russell Road,89454-00016-1,1,4380_7778208_3010402,4380_947 -4380_78013,290,4380_57396,Father Russell Road,89458-00015-1,1,4380_7778208_3010402,4380_947 -4380_78013,294,4380_57397,Father Russell Road,89452-00018-1,1,4380_7778208_3010402,4380_947 -4380_78013,295,4380_57398,Father Russell Road,89456-00019-1,1,4380_7778208_3010402,4380_947 -4380_78013,293,4380_57399,Father Russell Road,89460-00017-1,1,4380_7778208_3010402,4380_947 -4380_78113,295,4380_574,Dundalk,49753-00019-1,0,4380_7778208_1000904,4380_10 -4380_77950,292,4380_5740,Drogheda,54529-00016-1,0,4380_7778208_1051104,4380_54 -4380_78013,291,4380_57401,Father Russell Road,89461-00013-1,1,4380_7778208_3010402,4380_942 -4380_78013,296,4380_57402,Father Russell Road,89462-00021-1,1,4380_7778208_3010402,4380_942 -4380_78013,291,4380_57404,Father Russell Road,89709-00013-1,1,4380_7778208_3010403,4380_942 -4380_78013,296,4380_57405,Father Russell Road,89710-00021-1,1,4380_7778208_3010403,4380_942 -4380_77950,293,4380_5741,Drogheda,54531-00017-1,0,4380_7778208_1051104,4380_54 -4380_78013,285,4380_57411,Father Russell Road,89954-00009-1,1,4380_7778208_3010404,4380_942 -4380_78013,288,4380_57412,Father Russell Road,89948-00011-1,1,4380_7778208_3010404,4380_942 -4380_78013,287,4380_57413,Father Russell Road,89956-00012-1,1,4380_7778208_3010404,4380_942 -4380_78013,286,4380_57414,Father Russell Road,89952-00010-1,1,4380_7778208_3010404,4380_942 -4380_78013,289,4380_57415,Father Russell Road,89950-00014-1,1,4380_7778208_3010404,4380_942 -4380_78013,292,4380_57416,Father Russell Road,89953-00016-1,1,4380_7778208_3010404,4380_942 -4380_78013,290,4380_57417,Father Russell Road,89955-00015-1,1,4380_7778208_3010404,4380_942 -4380_78013,294,4380_57418,Father Russell Road,89957-00018-1,1,4380_7778208_3010404,4380_942 -4380_78013,295,4380_57419,Father Russell Road,89951-00019-1,1,4380_7778208_3010404,4380_942 -4380_77950,294,4380_5742,Drogheda,54534-00018-1,0,4380_7778208_1051104,4380_54 -4380_78013,293,4380_57420,Father Russell Road,89949-00017-1,1,4380_7778208_3010404,4380_942 -4380_78013,285,4380_57426,Father Russell Road,90066-00009-1,1,4380_7778208_3010405,4380_942 -4380_78013,288,4380_57427,Father Russell Road,90062-00011-1,1,4380_7778208_3010405,4380_942 -4380_78013,287,4380_57428,Father Russell Road,90058-00012-1,1,4380_7778208_3010405,4380_942 -4380_78013,286,4380_57429,Father Russell Road,90064-00010-1,1,4380_7778208_3010405,4380_942 -4380_77950,295,4380_5743,Drogheda,54536-00019-1,0,4380_7778208_1051104,4380_54 -4380_78013,289,4380_57430,Father Russell Road,90060-00014-1,1,4380_7778208_3010405,4380_942 -4380_78013,292,4380_57431,Father Russell Road,90065-00016-1,1,4380_7778208_3010405,4380_942 -4380_78013,290,4380_57432,Father Russell Road,90067-00015-1,1,4380_7778208_3010405,4380_942 -4380_78013,294,4380_57433,Father Russell Road,90059-00018-1,1,4380_7778208_3010405,4380_942 -4380_78013,295,4380_57434,Father Russell Road,90061-00019-1,1,4380_7778208_3010405,4380_942 -4380_78013,293,4380_57435,Father Russell Road,90063-00017-1,1,4380_7778208_3010405,4380_942 -4380_78013,291,4380_57437,Father Russell Road,89277-00013-1,1,4380_7778208_3010401,4380_942 -4380_78013,296,4380_57438,Father Russell Road,89278-00021-1,1,4380_7778208_3010401,4380_942 -4380_77950,296,4380_5744,Drogheda,54440-00021-1,0,4380_7778208_1051103,4380_57 -4380_78013,285,4380_57444,Father Russell Road,89721-00009-1,1,4380_7778208_3010403,4380_942 -4380_78013,288,4380_57445,Father Russell Road,89719-00011-1,1,4380_7778208_3010403,4380_942 -4380_78013,287,4380_57446,Father Russell Road,89713-00012-1,1,4380_7778208_3010403,4380_942 -4380_78013,286,4380_57447,Father Russell Road,89717-00010-1,1,4380_7778208_3010403,4380_942 -4380_78013,289,4380_57448,Father Russell Road,89715-00014-1,1,4380_7778208_3010403,4380_942 -4380_78013,292,4380_57449,Father Russell Road,89718-00016-1,1,4380_7778208_3010403,4380_942 -4380_78013,290,4380_57450,Father Russell Road,89722-00015-1,1,4380_7778208_3010403,4380_942 -4380_78013,294,4380_57451,Father Russell Road,89714-00018-1,1,4380_7778208_3010403,4380_942 -4380_78013,295,4380_57452,Father Russell Road,89716-00019-1,1,4380_7778208_3010403,4380_942 -4380_78013,293,4380_57453,Father Russell Road,89720-00017-1,1,4380_7778208_3010403,4380_942 -4380_78013,297,4380_57455,Father Russell Road,89475-00008-1,1,4380_7778208_3010402,4380_945 -4380_78013,297,4380_57457,Father Russell Road,89280-00008-1,1,4380_7778208_3010401,4380_942 -4380_78013,291,4380_57459,Father Russell Road,89476-00013-1,1,4380_7778208_3010402,4380_948 -4380_78013,296,4380_57460,Father Russell Road,89477-00021-1,1,4380_7778208_3010402,4380_948 -4380_78013,285,4380_57466,Father Russell Road,89289-00009-1,1,4380_7778208_3010401,4380_942 -4380_78013,288,4380_57467,Father Russell Road,89283-00011-1,1,4380_7778208_3010401,4380_942 -4380_78013,287,4380_57468,Father Russell Road,89287-00012-1,1,4380_7778208_3010401,4380_942 -4380_78013,286,4380_57469,Father Russell Road,89285-00010-1,1,4380_7778208_3010401,4380_942 -4380_78013,289,4380_57470,Father Russell Road,89291-00014-1,1,4380_7778208_3010401,4380_942 -4380_78013,292,4380_57471,Father Russell Road,89286-00016-1,1,4380_7778208_3010401,4380_942 -4380_78013,290,4380_57472,Father Russell Road,89290-00015-1,1,4380_7778208_3010401,4380_942 -4380_78013,294,4380_57473,Father Russell Road,89288-00018-1,1,4380_7778208_3010401,4380_942 -4380_78013,295,4380_57474,Father Russell Road,89292-00019-1,1,4380_7778208_3010401,4380_942 -4380_78013,293,4380_57475,Father Russell Road,89284-00017-1,1,4380_7778208_3010401,4380_942 -4380_78013,297,4380_57477,Father Russell Road,89724-00008-1,1,4380_7778208_3010403,4380_942 -4380_78013,291,4380_57479,Father Russell Road,89725-00013-1,1,4380_7778208_3010403,4380_948 -4380_78013,296,4380_57480,Father Russell Road,89726-00021-1,1,4380_7778208_3010403,4380_948 -4380_78013,285,4380_57486,Father Russell Road,89968-00009-1,1,4380_7778208_3010404,4380_942 -4380_78013,288,4380_57487,Father Russell Road,89974-00011-1,1,4380_7778208_3010404,4380_942 -4380_78013,287,4380_57488,Father Russell Road,89970-00012-1,1,4380_7778208_3010404,4380_942 -4380_78013,286,4380_57489,Father Russell Road,89976-00010-1,1,4380_7778208_3010404,4380_942 -4380_78013,289,4380_57490,Father Russell Road,89972-00014-1,1,4380_7778208_3010404,4380_942 -4380_78013,292,4380_57491,Father Russell Road,89977-00016-1,1,4380_7778208_3010404,4380_942 -4380_78013,290,4380_57492,Father Russell Road,89969-00015-1,1,4380_7778208_3010404,4380_942 -4380_78013,294,4380_57493,Father Russell Road,89971-00018-1,1,4380_7778208_3010404,4380_942 -4380_78013,295,4380_57494,Father Russell Road,89973-00019-1,1,4380_7778208_3010404,4380_942 -4380_78013,293,4380_57495,Father Russell Road,89975-00017-1,1,4380_7778208_3010404,4380_942 -4380_78013,297,4380_57497,Father Russell Road,89481-00008-1,1,4380_7778208_3010402,4380_942 -4380_78013,291,4380_57499,Father Russell Road,89294-00013-1,1,4380_7778208_3010401,4380_948 -4380_78113,296,4380_575,Dundalk,49747-00021-1,0,4380_7778208_1000904,4380_13 -4380_78013,296,4380_57500,Father Russell Road,89295-00021-1,1,4380_7778208_3010401,4380_948 -4380_78013,285,4380_57506,Father Russell Road,89743-00009-1,1,4380_7778208_3010403,4380_942 -4380_78013,288,4380_57507,Father Russell Road,89741-00011-1,1,4380_7778208_3010403,4380_942 -4380_78013,287,4380_57508,Father Russell Road,89745-00012-1,1,4380_7778208_3010403,4380_942 -4380_78013,286,4380_57509,Father Russell Road,89748-00010-1,1,4380_7778208_3010403,4380_942 -4380_77950,285,4380_5751,Blanchardstown,54143-00009-1,1,4380_7778208_1051101,4380_62 -4380_78013,289,4380_57510,Father Russell Road,89739-00014-1,1,4380_7778208_3010403,4380_942 -4380_78013,292,4380_57511,Father Russell Road,89749-00016-1,1,4380_7778208_3010403,4380_942 -4380_78013,290,4380_57512,Father Russell Road,89744-00015-1,1,4380_7778208_3010403,4380_942 -4380_78013,294,4380_57513,Father Russell Road,89746-00018-1,1,4380_7778208_3010403,4380_942 -4380_78013,295,4380_57514,Father Russell Road,89740-00019-1,1,4380_7778208_3010403,4380_942 -4380_78013,293,4380_57515,Father Russell Road,89742-00017-1,1,4380_7778208_3010403,4380_942 -4380_78013,297,4380_57517,Father Russell Road,89306-00008-1,1,4380_7778208_3010401,4380_942 -4380_78013,291,4380_57519,Father Russell Road,89482-00013-1,1,4380_7778208_3010402,4380_948 -4380_77950,286,4380_5752,Blanchardstown,54147-00010-1,1,4380_7778208_1051101,4380_62 -4380_78013,296,4380_57520,Father Russell Road,89483-00021-1,1,4380_7778208_3010402,4380_948 -4380_78013,285,4380_57526,Father Russell Road,89311-00009-1,1,4380_7778208_3010401,4380_942 -4380_78013,288,4380_57527,Father Russell Road,89313-00011-1,1,4380_7778208_3010401,4380_942 -4380_78013,287,4380_57528,Father Russell Road,89315-00012-1,1,4380_7778208_3010401,4380_942 -4380_78013,286,4380_57529,Father Russell Road,89317-00010-1,1,4380_7778208_3010401,4380_942 -4380_77950,288,4380_5753,Blanchardstown,54149-00011-1,1,4380_7778208_1051101,4380_62 -4380_78013,289,4380_57530,Father Russell Road,89309-00014-1,1,4380_7778208_3010401,4380_942 -4380_78013,292,4380_57531,Father Russell Road,89318-00016-1,1,4380_7778208_3010401,4380_942 -4380_78013,290,4380_57532,Father Russell Road,89312-00015-1,1,4380_7778208_3010401,4380_942 -4380_78013,294,4380_57533,Father Russell Road,89316-00018-1,1,4380_7778208_3010401,4380_942 -4380_78013,295,4380_57534,Father Russell Road,89310-00019-1,1,4380_7778208_3010401,4380_942 -4380_78013,293,4380_57535,Father Russell Road,89314-00017-1,1,4380_7778208_3010401,4380_942 -4380_78013,297,4380_57537,Father Russell Road,89750-00008-1,1,4380_7778208_3010403,4380_942 -4380_78013,291,4380_57539,Father Russell Road,89751-00013-1,1,4380_7778208_3010403,4380_948 -4380_77950,287,4380_5754,Blanchardstown,54141-00012-1,1,4380_7778208_1051101,4380_62 -4380_78013,296,4380_57540,Father Russell Road,89752-00021-1,1,4380_7778208_3010403,4380_948 -4380_78013,285,4380_57546,Father Russell Road,89505-00009-1,1,4380_7778208_3010402,4380_942 -4380_78013,288,4380_57547,Father Russell Road,89503-00011-1,1,4380_7778208_3010402,4380_942 -4380_78013,287,4380_57548,Father Russell Road,89499-00012-1,1,4380_7778208_3010402,4380_942 -4380_78013,286,4380_57549,Father Russell Road,89501-00010-1,1,4380_7778208_3010402,4380_942 -4380_77950,289,4380_5755,Blanchardstown,54139-00014-1,1,4380_7778208_1051101,4380_62 -4380_78013,289,4380_57550,Father Russell Road,89497-00014-1,1,4380_7778208_3010402,4380_942 -4380_78013,292,4380_57551,Father Russell Road,89502-00016-1,1,4380_7778208_3010402,4380_942 -4380_78013,290,4380_57552,Father Russell Road,89506-00015-1,1,4380_7778208_3010402,4380_942 -4380_78013,294,4380_57553,Father Russell Road,89500-00018-1,1,4380_7778208_3010402,4380_942 -4380_78013,295,4380_57554,Father Russell Road,89498-00019-1,1,4380_7778208_3010402,4380_942 -4380_78013,293,4380_57555,Father Russell Road,89504-00017-1,1,4380_7778208_3010402,4380_942 -4380_78013,297,4380_57557,Father Russell Road,89507-00008-1,1,4380_7778208_3010402,4380_942 -4380_78013,291,4380_57559,Father Russell Road,89320-00013-1,1,4380_7778208_3010401,4380_948 -4380_77950,290,4380_5756,Blanchardstown,54144-00015-1,1,4380_7778208_1051101,4380_62 -4380_78013,296,4380_57560,Father Russell Road,89321-00021-1,1,4380_7778208_3010401,4380_948 -4380_78013,285,4380_57566,Father Russell Road,89996-00009-1,1,4380_7778208_3010404,4380_942 -4380_78013,288,4380_57567,Father Russell Road,89994-00011-1,1,4380_7778208_3010404,4380_942 -4380_78013,287,4380_57568,Father Russell Road,89988-00012-1,1,4380_7778208_3010404,4380_942 -4380_78013,286,4380_57569,Father Russell Road,89990-00010-1,1,4380_7778208_3010404,4380_942 -4380_77950,291,4380_5757,Blanchardstown,54145-00013-1,1,4380_7778208_1051101,4380_66 -4380_78013,289,4380_57570,Father Russell Road,89992-00014-1,1,4380_7778208_3010404,4380_942 -4380_78013,292,4380_57571,Father Russell Road,89991-00016-1,1,4380_7778208_3010404,4380_942 -4380_78013,290,4380_57572,Father Russell Road,89997-00015-1,1,4380_7778208_3010404,4380_942 -4380_78013,294,4380_57573,Father Russell Road,89989-00018-1,1,4380_7778208_3010404,4380_942 -4380_78013,295,4380_57574,Father Russell Road,89993-00019-1,1,4380_7778208_3010404,4380_942 -4380_78013,293,4380_57575,Father Russell Road,89995-00017-1,1,4380_7778208_3010404,4380_942 -4380_78013,297,4380_57577,Father Russell Road,89322-00008-1,1,4380_7778208_3010401,4380_942 -4380_78013,291,4380_57579,Father Russell Road,89508-00013-1,1,4380_7778208_3010402,4380_948 -4380_77950,292,4380_5758,Blanchardstown,54148-00016-1,1,4380_7778208_1051101,4380_62 -4380_78013,296,4380_57580,Father Russell Road,89509-00021-1,1,4380_7778208_3010402,4380_948 -4380_78013,285,4380_57586,Father Russell Road,89768-00009-1,1,4380_7778208_3010403,4380_942 -4380_78013,288,4380_57587,Father Russell Road,89772-00011-1,1,4380_7778208_3010403,4380_942 -4380_78013,287,4380_57588,Father Russell Road,89770-00012-1,1,4380_7778208_3010403,4380_942 -4380_78013,286,4380_57589,Father Russell Road,89774-00010-1,1,4380_7778208_3010403,4380_942 -4380_77950,293,4380_5759,Blanchardstown,54150-00017-1,1,4380_7778208_1051101,4380_62 -4380_78013,289,4380_57590,Father Russell Road,89766-00014-1,1,4380_7778208_3010403,4380_942 -4380_78013,292,4380_57591,Father Russell Road,89775-00016-1,1,4380_7778208_3010403,4380_942 -4380_78013,290,4380_57592,Father Russell Road,89769-00015-1,1,4380_7778208_3010403,4380_942 -4380_78013,294,4380_57593,Father Russell Road,89771-00018-1,1,4380_7778208_3010403,4380_942 -4380_78013,295,4380_57594,Father Russell Road,89767-00019-1,1,4380_7778208_3010403,4380_942 -4380_78013,293,4380_57595,Father Russell Road,89773-00017-1,1,4380_7778208_3010403,4380_942 -4380_78013,297,4380_57597,Father Russell Road,89778-00008-1,1,4380_7778208_3010403,4380_942 -4380_78013,291,4380_57599,Father Russell Road,89776-00013-1,1,4380_7778208_3010403,4380_948 -4380_77950,294,4380_5760,Blanchardstown,54142-00018-1,1,4380_7778208_1051101,4380_62 -4380_78013,296,4380_57600,Father Russell Road,89777-00021-1,1,4380_7778208_3010403,4380_948 -4380_78013,285,4380_57606,Father Russell Road,89342-00009-1,1,4380_7778208_3010401,4380_942 -4380_78013,288,4380_57607,Father Russell Road,89340-00011-1,1,4380_7778208_3010401,4380_942 -4380_78013,287,4380_57608,Father Russell Road,89344-00012-1,1,4380_7778208_3010401,4380_942 -4380_78013,286,4380_57609,Father Russell Road,89338-00010-1,1,4380_7778208_3010401,4380_942 -4380_77950,295,4380_5761,Blanchardstown,54140-00019-1,1,4380_7778208_1051101,4380_62 -4380_78013,289,4380_57610,Father Russell Road,89335-00014-1,1,4380_7778208_3010401,4380_942 -4380_78013,292,4380_57611,Father Russell Road,89339-00016-1,1,4380_7778208_3010401,4380_942 -4380_78013,290,4380_57612,Father Russell Road,89343-00015-1,1,4380_7778208_3010401,4380_942 -4380_78013,294,4380_57613,Father Russell Road,89345-00018-1,1,4380_7778208_3010401,4380_942 -4380_78013,295,4380_57614,Father Russell Road,89336-00019-1,1,4380_7778208_3010401,4380_942 -4380_78013,293,4380_57615,Father Russell Road,89341-00017-1,1,4380_7778208_3010401,4380_942 -4380_78013,297,4380_57617,Father Russell Road,89523-00008-1,1,4380_7778208_3010402,4380_942 -4380_78013,291,4380_57619,Father Russell Road,89346-00013-1,1,4380_7778208_3010401,4380_948 -4380_77950,296,4380_5762,Blanchardstown,54146-00021-1,1,4380_7778208_1051101,4380_66 -4380_78013,296,4380_57620,Father Russell Road,89347-00021-1,1,4380_7778208_3010401,4380_948 -4380_78013,285,4380_57626,Father Russell Road,89524-00009-1,1,4380_7778208_3010402,4380_942 -4380_78013,288,4380_57627,Father Russell Road,89530-00011-1,1,4380_7778208_3010402,4380_942 -4380_78013,287,4380_57628,Father Russell Road,89528-00012-1,1,4380_7778208_3010402,4380_942 -4380_78013,286,4380_57629,Father Russell Road,89532-00010-1,1,4380_7778208_3010402,4380_942 -4380_78013,289,4380_57630,Father Russell Road,89526-00014-1,1,4380_7778208_3010402,4380_942 -4380_78013,292,4380_57631,Father Russell Road,89533-00016-1,1,4380_7778208_3010402,4380_942 -4380_78013,290,4380_57632,Father Russell Road,89525-00015-1,1,4380_7778208_3010402,4380_942 -4380_78013,294,4380_57633,Father Russell Road,89529-00018-1,1,4380_7778208_3010402,4380_942 -4380_78013,295,4380_57634,Father Russell Road,89527-00019-1,1,4380_7778208_3010402,4380_942 -4380_78013,293,4380_57635,Father Russell Road,89531-00017-1,1,4380_7778208_3010402,4380_942 -4380_78013,297,4380_57637,Father Russell Road,89348-00008-1,1,4380_7778208_3010401,4380_942 -4380_78013,291,4380_57639,Father Russell Road,89534-00013-1,1,4380_7778208_3010402,4380_948 -4380_78013,296,4380_57640,Father Russell Road,89535-00021-1,1,4380_7778208_3010402,4380_948 -4380_78013,285,4380_57646,Father Russell Road,90016-00009-1,1,4380_7778208_3010404,4380_947 -4380_78013,288,4380_57647,Father Russell Road,90014-00011-1,1,4380_7778208_3010404,4380_947 -4380_78013,287,4380_57648,Father Russell Road,90010-00012-1,1,4380_7778208_3010404,4380_947 -4380_78013,286,4380_57649,Father Russell Road,90008-00010-1,1,4380_7778208_3010404,4380_947 -4380_78013,289,4380_57650,Father Russell Road,90012-00014-1,1,4380_7778208_3010404,4380_947 -4380_78013,292,4380_57651,Father Russell Road,90009-00016-1,1,4380_7778208_3010404,4380_947 -4380_78013,290,4380_57652,Father Russell Road,90017-00015-1,1,4380_7778208_3010404,4380_947 -4380_78013,294,4380_57653,Father Russell Road,90011-00018-1,1,4380_7778208_3010404,4380_947 -4380_78013,295,4380_57654,Father Russell Road,90013-00019-1,1,4380_7778208_3010404,4380_947 -4380_78013,293,4380_57655,Father Russell Road,90015-00017-1,1,4380_7778208_3010404,4380_947 -4380_78013,297,4380_57657,Father Russell Road,89792-00008-1,1,4380_7778208_3010403,4380_942 -4380_78013,291,4380_57659,Father Russell Road,89793-00013-1,1,4380_7778208_3010403,4380_948 -4380_78013,296,4380_57660,Father Russell Road,89794-00021-1,1,4380_7778208_3010403,4380_948 -4380_78013,285,4380_57666,Father Russell Road,89795-00009-1,1,4380_7778208_3010403,4380_947 -4380_78013,288,4380_57667,Father Russell Road,89801-00011-1,1,4380_7778208_3010403,4380_947 -4380_78013,287,4380_57668,Father Russell Road,89797-00012-1,1,4380_7778208_3010403,4380_947 -4380_78013,286,4380_57669,Father Russell Road,89799-00010-1,1,4380_7778208_3010403,4380_947 -4380_78013,289,4380_57670,Father Russell Road,89803-00014-1,1,4380_7778208_3010403,4380_947 -4380_78013,292,4380_57671,Father Russell Road,89800-00016-1,1,4380_7778208_3010403,4380_947 -4380_78013,290,4380_57672,Father Russell Road,89796-00015-1,1,4380_7778208_3010403,4380_947 -4380_78013,294,4380_57673,Father Russell Road,89798-00018-1,1,4380_7778208_3010403,4380_947 -4380_78013,295,4380_57674,Father Russell Road,89804-00019-1,1,4380_7778208_3010403,4380_947 -4380_78013,293,4380_57675,Father Russell Road,89802-00017-1,1,4380_7778208_3010403,4380_947 -4380_78013,297,4380_57677,Father Russell Road,89549-00008-1,1,4380_7778208_3010402,4380_942 -4380_78013,291,4380_57679,Father Russell Road,89362-00013-1,1,4380_7778208_3010401,4380_948 -4380_78013,296,4380_57680,Father Russell Road,89363-00021-1,1,4380_7778208_3010401,4380_948 -4380_78013,285,4380_57686,Father Russell Road,89364-00009-1,1,4380_7778208_3010401,4380_947 -4380_78013,288,4380_57687,Father Russell Road,89370-00011-1,1,4380_7778208_3010401,4380_947 -4380_78013,287,4380_57688,Father Russell Road,89368-00012-1,1,4380_7778208_3010401,4380_947 -4380_78013,286,4380_57689,Father Russell Road,89372-00010-1,1,4380_7778208_3010401,4380_947 -4380_77950,285,4380_5769,Blanchardstown,54241-00009-1,1,4380_7778208_1051102,4380_63 -4380_78013,289,4380_57690,Father Russell Road,89366-00014-1,1,4380_7778208_3010401,4380_947 -4380_78013,292,4380_57691,Father Russell Road,89373-00016-1,1,4380_7778208_3010401,4380_947 -4380_78013,290,4380_57692,Father Russell Road,89365-00015-1,1,4380_7778208_3010401,4380_947 -4380_78013,294,4380_57693,Father Russell Road,89369-00018-1,1,4380_7778208_3010401,4380_947 -4380_78013,295,4380_57694,Father Russell Road,89367-00019-1,1,4380_7778208_3010401,4380_947 -4380_78013,293,4380_57695,Father Russell Road,89371-00017-1,1,4380_7778208_3010401,4380_947 -4380_78013,297,4380_57697,Father Russell Road,89374-00008-1,1,4380_7778208_3010401,4380_942 -4380_78013,291,4380_57699,Father Russell Road,89550-00013-1,1,4380_7778208_3010402,4380_942 -4380_77950,286,4380_5770,Blanchardstown,54249-00010-1,1,4380_7778208_1051102,4380_63 -4380_78013,296,4380_57700,Father Russell Road,89551-00021-1,1,4380_7778208_3010402,4380_942 -4380_78013,285,4380_57706,Father Russell Road,89555-00009-1,1,4380_7778208_3010402,4380_947 -4380_78013,288,4380_57707,Father Russell Road,89557-00011-1,1,4380_7778208_3010402,4380_947 -4380_78013,287,4380_57708,Father Russell Road,89559-00012-1,1,4380_7778208_3010402,4380_947 -4380_78013,286,4380_57709,Father Russell Road,89552-00010-1,1,4380_7778208_3010402,4380_947 -4380_77950,288,4380_5771,Blanchardstown,54243-00011-1,1,4380_7778208_1051102,4380_63 -4380_78013,289,4380_57710,Father Russell Road,89561-00014-1,1,4380_7778208_3010402,4380_947 -4380_78013,292,4380_57711,Father Russell Road,89553-00016-1,1,4380_7778208_3010402,4380_947 -4380_78013,290,4380_57712,Father Russell Road,89556-00015-1,1,4380_7778208_3010402,4380_947 -4380_78013,294,4380_57713,Father Russell Road,89560-00018-1,1,4380_7778208_3010402,4380_947 -4380_78013,295,4380_57714,Father Russell Road,89562-00019-1,1,4380_7778208_3010402,4380_947 -4380_78013,293,4380_57715,Father Russell Road,89558-00017-1,1,4380_7778208_3010402,4380_947 -4380_78013,297,4380_57717,Father Russell Road,89810-00008-1,1,4380_7778208_3010403,4380_942 -4380_78013,291,4380_57719,Father Russell Road,89808-00013-1,1,4380_7778208_3010403,4380_948 -4380_77950,287,4380_5772,Blanchardstown,54251-00012-1,1,4380_7778208_1051102,4380_63 -4380_78013,296,4380_57720,Father Russell Road,89809-00021-1,1,4380_7778208_3010403,4380_948 -4380_78013,285,4380_57726,Father Russell Road,90078-00009-1,1,4380_7778208_3010405,4380_947 -4380_78013,288,4380_57727,Father Russell Road,90082-00011-1,1,4380_7778208_3010405,4380_947 -4380_78013,287,4380_57728,Father Russell Road,90084-00012-1,1,4380_7778208_3010405,4380_947 -4380_78013,286,4380_57729,Father Russell Road,90080-00010-1,1,4380_7778208_3010405,4380_947 -4380_77950,289,4380_5773,Blanchardstown,54247-00014-1,1,4380_7778208_1051102,4380_63 -4380_78013,289,4380_57730,Father Russell Road,90086-00014-1,1,4380_7778208_3010405,4380_947 -4380_78013,292,4380_57731,Father Russell Road,90081-00016-1,1,4380_7778208_3010405,4380_947 -4380_78013,290,4380_57732,Father Russell Road,90079-00015-1,1,4380_7778208_3010405,4380_947 -4380_78013,294,4380_57733,Father Russell Road,90085-00018-1,1,4380_7778208_3010405,4380_947 -4380_78013,295,4380_57734,Father Russell Road,90087-00019-1,1,4380_7778208_3010405,4380_947 -4380_78013,293,4380_57735,Father Russell Road,90083-00017-1,1,4380_7778208_3010405,4380_947 -4380_78013,297,4380_57737,Father Russell Road,89565-00008-1,1,4380_7778208_3010402,4380_942 -4380_78013,291,4380_57739,Father Russell Road,89378-00013-1,1,4380_7778208_3010401,4380_948 -4380_77950,290,4380_5774,Blanchardstown,54242-00015-1,1,4380_7778208_1051102,4380_63 -4380_78013,296,4380_57740,Father Russell Road,89379-00021-1,1,4380_7778208_3010401,4380_948 -4380_78013,285,4380_57746,Father Russell Road,90030-00009-1,1,4380_7778208_3010404,4380_947 -4380_78013,288,4380_57747,Father Russell Road,90028-00011-1,1,4380_7778208_3010404,4380_947 -4380_78013,287,4380_57748,Father Russell Road,90034-00012-1,1,4380_7778208_3010404,4380_947 -4380_78013,286,4380_57749,Father Russell Road,90032-00010-1,1,4380_7778208_3010404,4380_947 -4380_77950,291,4380_5775,Blanchardstown,54245-00013-1,1,4380_7778208_1051102,4380_64 -4380_78013,289,4380_57750,Father Russell Road,90036-00014-1,1,4380_7778208_3010404,4380_947 -4380_78013,292,4380_57751,Father Russell Road,90033-00016-1,1,4380_7778208_3010404,4380_947 -4380_78013,290,4380_57752,Father Russell Road,90031-00015-1,1,4380_7778208_3010404,4380_947 -4380_78013,294,4380_57753,Father Russell Road,90035-00018-1,1,4380_7778208_3010404,4380_947 -4380_78013,295,4380_57754,Father Russell Road,90037-00019-1,1,4380_7778208_3010404,4380_947 -4380_78013,293,4380_57755,Father Russell Road,90029-00017-1,1,4380_7778208_3010404,4380_947 -4380_78013,297,4380_57757,Father Russell Road,89390-00008-1,1,4380_7778208_3010401,4380_942 -4380_78013,291,4380_57759,Father Russell Road,89566-00013-1,1,4380_7778208_3010402,4380_948 -4380_77950,292,4380_5776,Blanchardstown,54250-00016-1,1,4380_7778208_1051102,4380_63 -4380_78013,296,4380_57760,Father Russell Road,89567-00021-1,1,4380_7778208_3010402,4380_948 -4380_78013,285,4380_57766,Father Russell Road,89826-00009-1,1,4380_7778208_3010403,4380_947 -4380_78013,288,4380_57767,Father Russell Road,89824-00011-1,1,4380_7778208_3010403,4380_947 -4380_78013,287,4380_57768,Father Russell Road,89832-00012-1,1,4380_7778208_3010403,4380_947 -4380_78013,286,4380_57769,Father Russell Road,89828-00010-1,1,4380_7778208_3010403,4380_947 -4380_77950,293,4380_5777,Blanchardstown,54244-00017-1,1,4380_7778208_1051102,4380_63 -4380_78013,289,4380_57770,Father Russell Road,89830-00014-1,1,4380_7778208_3010403,4380_947 -4380_78013,292,4380_57771,Father Russell Road,89829-00016-1,1,4380_7778208_3010403,4380_947 -4380_78013,290,4380_57772,Father Russell Road,89827-00015-1,1,4380_7778208_3010403,4380_947 -4380_78013,294,4380_57773,Father Russell Road,89833-00018-1,1,4380_7778208_3010403,4380_947 -4380_78013,295,4380_57774,Father Russell Road,89831-00019-1,1,4380_7778208_3010403,4380_947 -4380_78013,293,4380_57775,Father Russell Road,89825-00017-1,1,4380_7778208_3010403,4380_947 -4380_78013,297,4380_57777,Father Russell Road,89834-00008-1,1,4380_7778208_3010403,4380_942 -4380_78013,291,4380_57779,Father Russell Road,89835-00013-1,1,4380_7778208_3010403,4380_948 -4380_77950,294,4380_5778,Blanchardstown,54252-00018-1,1,4380_7778208_1051102,4380_63 -4380_78013,296,4380_57780,Father Russell Road,89836-00021-1,1,4380_7778208_3010403,4380_948 -4380_78013,285,4380_57786,Father Russell Road,89400-00009-1,1,4380_7778208_3010401,4380_947 -4380_78013,288,4380_57787,Father Russell Road,89396-00011-1,1,4380_7778208_3010401,4380_947 -4380_78013,287,4380_57788,Father Russell Road,89393-00012-1,1,4380_7778208_3010401,4380_947 -4380_78013,286,4380_57789,Father Russell Road,89402-00010-1,1,4380_7778208_3010401,4380_947 -4380_77950,295,4380_5779,Blanchardstown,54248-00019-1,1,4380_7778208_1051102,4380_63 -4380_78013,289,4380_57790,Father Russell Road,89398-00014-1,1,4380_7778208_3010401,4380_947 -4380_78013,292,4380_57791,Father Russell Road,89403-00016-1,1,4380_7778208_3010401,4380_947 -4380_78013,290,4380_57792,Father Russell Road,89401-00015-1,1,4380_7778208_3010401,4380_947 -4380_78013,294,4380_57793,Father Russell Road,89394-00018-1,1,4380_7778208_3010401,4380_947 -4380_78013,295,4380_57794,Father Russell Road,89399-00019-1,1,4380_7778208_3010401,4380_947 -4380_78013,293,4380_57795,Father Russell Road,89397-00017-1,1,4380_7778208_3010401,4380_947 -4380_78013,297,4380_57797,Father Russell Road,89581-00008-1,1,4380_7778208_3010402,4380_943 -4380_78013,291,4380_57799,Father Russell Road,89404-00013-1,1,4380_7778208_3010401,4380_949 -4380_77950,296,4380_5780,Blanchardstown,54246-00021-1,1,4380_7778208_1051102,4380_64 -4380_78013,296,4380_57800,Father Russell Road,89405-00021-1,1,4380_7778208_3010401,4380_949 -4380_78013,285,4380_57806,Father Russell Road,89586-00009-1,1,4380_7778208_3010402,4380_943 -4380_78013,288,4380_57807,Father Russell Road,89590-00011-1,1,4380_7778208_3010402,4380_943 -4380_78013,287,4380_57808,Father Russell Road,89588-00012-1,1,4380_7778208_3010402,4380_943 -4380_78013,286,4380_57809,Father Russell Road,89584-00010-1,1,4380_7778208_3010402,4380_943 -4380_78013,289,4380_57810,Father Russell Road,89582-00014-1,1,4380_7778208_3010402,4380_943 -4380_78013,292,4380_57811,Father Russell Road,89585-00016-1,1,4380_7778208_3010402,4380_943 -4380_78013,290,4380_57812,Father Russell Road,89587-00015-1,1,4380_7778208_3010402,4380_943 -4380_78013,294,4380_57813,Father Russell Road,89589-00018-1,1,4380_7778208_3010402,4380_943 -4380_78013,295,4380_57814,Father Russell Road,89583-00019-1,1,4380_7778208_3010402,4380_943 -4380_78013,293,4380_57815,Father Russell Road,89591-00017-1,1,4380_7778208_3010402,4380_943 -4380_78013,297,4380_57817,Father Russell Road,89406-00008-1,1,4380_7778208_3010401,4380_943 -4380_78013,291,4380_57819,Father Russell Road,89592-00013-1,1,4380_7778208_3010402,4380_949 -4380_78013,296,4380_57820,Father Russell Road,89593-00021-1,1,4380_7778208_3010402,4380_949 -4380_78013,285,4380_57826,Father Russell Road,90098-00009-1,1,4380_7778208_3010405,4380_943 -4380_78013,288,4380_57827,Father Russell Road,90106-00011-1,1,4380_7778208_3010405,4380_943 -4380_78013,287,4380_57828,Father Russell Road,90100-00012-1,1,4380_7778208_3010405,4380_943 -4380_78013,286,4380_57829,Father Russell Road,90102-00010-1,1,4380_7778208_3010405,4380_943 -4380_78013,289,4380_57830,Father Russell Road,90104-00014-1,1,4380_7778208_3010405,4380_943 -4380_78013,292,4380_57831,Father Russell Road,90103-00016-1,1,4380_7778208_3010405,4380_943 -4380_78013,290,4380_57832,Father Russell Road,90099-00015-1,1,4380_7778208_3010405,4380_943 -4380_78013,294,4380_57833,Father Russell Road,90101-00018-1,1,4380_7778208_3010405,4380_943 -4380_78013,295,4380_57834,Father Russell Road,90105-00019-1,1,4380_7778208_3010405,4380_943 -4380_78013,293,4380_57835,Father Russell Road,90107-00017-1,1,4380_7778208_3010405,4380_943 -4380_78013,297,4380_57837,Father Russell Road,89852-00008-1,1,4380_7778208_3010403,4380_943 -4380_78013,291,4380_57839,Father Russell Road,89850-00013-1,1,4380_7778208_3010403,4380_949 -4380_78013,296,4380_57840,Father Russell Road,89851-00021-1,1,4380_7778208_3010403,4380_949 -4380_78013,285,4380_57846,Father Russell Road,89861-00009-1,1,4380_7778208_3010403,4380_943 -4380_78013,288,4380_57847,Father Russell Road,89855-00011-1,1,4380_7778208_3010403,4380_943 -4380_78013,287,4380_57848,Father Russell Road,89859-00012-1,1,4380_7778208_3010403,4380_943 -4380_78013,286,4380_57849,Father Russell Road,89853-00010-1,1,4380_7778208_3010403,4380_943 -4380_78013,289,4380_57850,Father Russell Road,89857-00014-1,1,4380_7778208_3010403,4380_943 -4380_78013,292,4380_57851,Father Russell Road,89854-00016-1,1,4380_7778208_3010403,4380_943 -4380_78013,290,4380_57852,Father Russell Road,89862-00015-1,1,4380_7778208_3010403,4380_943 -4380_78013,294,4380_57853,Father Russell Road,89860-00018-1,1,4380_7778208_3010403,4380_943 -4380_78013,295,4380_57854,Father Russell Road,89858-00019-1,1,4380_7778208_3010403,4380_943 -4380_78013,293,4380_57855,Father Russell Road,89856-00017-1,1,4380_7778208_3010403,4380_943 -4380_78013,297,4380_57857,Father Russell Road,89607-00008-1,1,4380_7778208_3010402,4380_943 -4380_78013,291,4380_57859,Father Russell Road,89410-00013-1,1,4380_7778208_3010401,4380_943 -4380_77950,285,4380_5786,Blanchardstown,4471-00009-1,1,4380_7778208_1050101,4380_60 -4380_78013,296,4380_57860,Father Russell Road,89411-00021-1,1,4380_7778208_3010401,4380_943 -4380_78013,285,4380_57866,Father Russell Road,89614-00009-1,1,4380_7778208_3010402,4380_943 -4380_78013,288,4380_57867,Father Russell Road,89608-00011-1,1,4380_7778208_3010402,4380_943 -4380_78013,287,4380_57868,Father Russell Road,89610-00012-1,1,4380_7778208_3010402,4380_943 -4380_78013,286,4380_57869,Father Russell Road,89612-00010-1,1,4380_7778208_3010402,4380_943 -4380_77950,286,4380_5787,Blanchardstown,4485-00010-1,1,4380_7778208_1050101,4380_60 -4380_78013,289,4380_57870,Father Russell Road,89616-00014-1,1,4380_7778208_3010402,4380_943 -4380_78013,292,4380_57871,Father Russell Road,89613-00016-1,1,4380_7778208_3010402,4380_943 -4380_78013,290,4380_57872,Father Russell Road,89615-00015-1,1,4380_7778208_3010402,4380_943 -4380_78013,294,4380_57873,Father Russell Road,89611-00018-1,1,4380_7778208_3010402,4380_943 -4380_78013,295,4380_57874,Father Russell Road,89617-00019-1,1,4380_7778208_3010402,4380_943 -4380_78013,293,4380_57875,Father Russell Road,89609-00017-1,1,4380_7778208_3010402,4380_943 -4380_78013,297,4380_57877,Father Russell Road,89412-00008-1,1,4380_7778208_3010401,4380_943 -4380_78013,291,4380_57879,Father Russell Road,89618-00013-1,1,4380_7778208_3010402,4380_943 -4380_77950,288,4380_5788,Blanchardstown,4527-00011-1,1,4380_7778208_1050101,4380_60 -4380_78013,296,4380_57880,Father Russell Road,89619-00021-1,1,4380_7778208_3010402,4380_943 -4380_78013,285,4380_57886,Father Russell Road,90120-00009-1,1,4380_7778208_3010405,4380_943 -4380_78013,288,4380_57887,Father Russell Road,90118-00011-1,1,4380_7778208_3010405,4380_943 -4380_78013,287,4380_57888,Father Russell Road,90126-00012-1,1,4380_7778208_3010405,4380_943 -4380_78013,286,4380_57889,Father Russell Road,90122-00010-1,1,4380_7778208_3010405,4380_943 -4380_77950,287,4380_5789,Blanchardstown,4555-00012-1,1,4380_7778208_1050101,4380_60 -4380_78013,289,4380_57890,Father Russell Road,90124-00014-1,1,4380_7778208_3010405,4380_943 -4380_78013,292,4380_57891,Father Russell Road,90123-00016-1,1,4380_7778208_3010405,4380_943 -4380_78013,290,4380_57892,Father Russell Road,90121-00015-1,1,4380_7778208_3010405,4380_943 -4380_78013,294,4380_57893,Father Russell Road,90127-00018-1,1,4380_7778208_3010405,4380_943 -4380_78013,295,4380_57894,Father Russell Road,90125-00019-1,1,4380_7778208_3010405,4380_943 -4380_78013,293,4380_57895,Father Russell Road,90119-00017-1,1,4380_7778208_3010405,4380_943 -4380_78013,297,4380_57897,Father Russell Road,89878-00008-1,1,4380_7778208_3010403,4380_943 -4380_78013,291,4380_57899,Father Russell Road,89876-00013-1,1,4380_7778208_3010403,4380_943 -4380_77950,289,4380_5790,Blanchardstown,53945-00014-1,1,4380_7778208_1050101,4380_60 -4380_78013,296,4380_57900,Father Russell Road,89877-00021-1,1,4380_7778208_3010403,4380_943 -4380_78013,285,4380_57906,Father Russell Road,89885-00009-1,1,4380_7778208_3010403,4380_943 -4380_78013,288,4380_57907,Father Russell Road,89883-00011-1,1,4380_7778208_3010403,4380_943 -4380_78013,287,4380_57908,Father Russell Road,89879-00012-1,1,4380_7778208_3010403,4380_943 -4380_78013,286,4380_57909,Father Russell Road,89881-00010-1,1,4380_7778208_3010403,4380_943 -4380_77950,290,4380_5791,Blanchardstown,53941-00015-1,1,4380_7778208_1050101,4380_60 -4380_78013,289,4380_57910,Father Russell Road,89887-00014-1,1,4380_7778208_3010403,4380_943 -4380_78013,292,4380_57911,Father Russell Road,89882-00016-1,1,4380_7778208_3010403,4380_943 -4380_78013,290,4380_57912,Father Russell Road,89886-00015-1,1,4380_7778208_3010403,4380_943 -4380_78013,294,4380_57913,Father Russell Road,89880-00018-1,1,4380_7778208_3010403,4380_943 -4380_78013,295,4380_57914,Father Russell Road,89888-00019-1,1,4380_7778208_3010403,4380_943 -4380_78013,293,4380_57915,Father Russell Road,89884-00017-1,1,4380_7778208_3010403,4380_943 -4380_78013,297,4380_57917,Father Russell Road,89633-00008-1,1,4380_7778208_3010402,4380_943 -4380_78013,291,4380_57919,Father Russell Road,89416-00013-1,1,4380_7778208_3010401,4380_949 -4380_77950,292,4380_5792,Blanchardstown,53942-00016-1,1,4380_7778208_1050101,4380_60 -4380_78013,296,4380_57920,Father Russell Road,89417-00021-1,1,4380_7778208_3010401,4380_949 -4380_78013,285,4380_57926,Father Russell Road,89636-00009-1,1,4380_7778208_3010402,4380_943 -4380_78013,288,4380_57927,Father Russell Road,89634-00011-1,1,4380_7778208_3010402,4380_943 -4380_78013,287,4380_57928,Father Russell Road,89640-00012-1,1,4380_7778208_3010402,4380_943 -4380_78013,286,4380_57929,Father Russell Road,89638-00010-1,1,4380_7778208_3010402,4380_943 -4380_77950,293,4380_5793,Blanchardstown,53943-00017-1,1,4380_7778208_1050101,4380_60 -4380_78013,289,4380_57930,Father Russell Road,89642-00014-1,1,4380_7778208_3010402,4380_943 -4380_78013,292,4380_57931,Father Russell Road,89639-00016-1,1,4380_7778208_3010402,4380_943 -4380_78013,290,4380_57932,Father Russell Road,89637-00015-1,1,4380_7778208_3010402,4380_943 -4380_78013,294,4380_57933,Father Russell Road,89641-00018-1,1,4380_7778208_3010402,4380_943 -4380_78013,295,4380_57934,Father Russell Road,89643-00019-1,1,4380_7778208_3010402,4380_943 -4380_78013,293,4380_57935,Father Russell Road,89635-00017-1,1,4380_7778208_3010402,4380_943 -4380_78013,297,4380_57937,Father Russell Road,89418-00008-1,1,4380_7778208_3010401,4380_943 -4380_78013,291,4380_57939,Father Russell Road,89644-00013-1,1,4380_7778208_3010402,4380_949 -4380_77950,294,4380_5794,Blanchardstown,53944-00018-1,1,4380_7778208_1050101,4380_60 -4380_78013,296,4380_57940,Father Russell Road,89645-00021-1,1,4380_7778208_3010402,4380_949 -4380_78013,285,4380_57946,Father Russell Road,90146-00009-1,1,4380_7778208_3010405,4380_943 -4380_78013,288,4380_57947,Father Russell Road,90140-00011-1,1,4380_7778208_3010405,4380_943 -4380_78013,287,4380_57948,Father Russell Road,90138-00012-1,1,4380_7778208_3010405,4380_943 -4380_78013,286,4380_57949,Father Russell Road,90144-00010-1,1,4380_7778208_3010405,4380_943 -4380_77950,295,4380_5795,Blanchardstown,4443-00019-1,1,4380_7778208_1050101,4380_60 -4380_78013,289,4380_57950,Father Russell Road,90142-00014-1,1,4380_7778208_3010405,4380_943 -4380_78013,292,4380_57951,Father Russell Road,90145-00016-1,1,4380_7778208_3010405,4380_943 -4380_78013,290,4380_57952,Father Russell Road,90147-00015-1,1,4380_7778208_3010405,4380_943 -4380_78013,294,4380_57953,Father Russell Road,90139-00018-1,1,4380_7778208_3010405,4380_943 -4380_78013,295,4380_57954,Father Russell Road,90143-00019-1,1,4380_7778208_3010405,4380_943 -4380_78013,293,4380_57955,Father Russell Road,90141-00017-1,1,4380_7778208_3010405,4380_943 -4380_78013,297,4380_57957,Father Russell Road,89902-00008-1,1,4380_7778208_3010403,4380_943 -4380_78013,291,4380_57959,Father Russell Road,89903-00013-1,1,4380_7778208_3010403,4380_949 -4380_78013,296,4380_57960,Father Russell Road,89904-00021-1,1,4380_7778208_3010403,4380_949 -4380_78013,285,4380_57966,Father Russell Road,89905-00009-1,1,4380_7778208_3010403,4380_943 -4380_78013,288,4380_57967,Father Russell Road,89913-00011-1,1,4380_7778208_3010403,4380_943 -4380_78013,287,4380_57968,Father Russell Road,89907-00012-1,1,4380_7778208_3010403,4380_943 -4380_78013,286,4380_57969,Father Russell Road,89909-00010-1,1,4380_7778208_3010403,4380_943 -4380_77950,291,4380_5797,Blanchardstown,53946-00013-1,1,4380_7778208_1050101,4380_60 -4380_78013,289,4380_57970,Father Russell Road,89911-00014-1,1,4380_7778208_3010403,4380_943 -4380_78013,292,4380_57971,Father Russell Road,89910-00016-1,1,4380_7778208_3010403,4380_943 -4380_78013,290,4380_57972,Father Russell Road,89906-00015-1,1,4380_7778208_3010403,4380_943 -4380_78013,294,4380_57973,Father Russell Road,89908-00018-1,1,4380_7778208_3010403,4380_943 -4380_78013,295,4380_57974,Father Russell Road,89912-00019-1,1,4380_7778208_3010403,4380_943 -4380_78013,293,4380_57975,Father Russell Road,89914-00017-1,1,4380_7778208_3010403,4380_943 -4380_78013,297,4380_57977,Father Russell Road,89659-00008-1,1,4380_7778208_3010402,4380_943 -4380_78013,291,4380_57979,Father Russell Road,89422-00013-1,1,4380_7778208_3010401,4380_949 -4380_77950,296,4380_5798,Blanchardstown,4569-00021-1,1,4380_7778208_1050101,4380_60 -4380_78013,296,4380_57980,Father Russell Road,89423-00021-1,1,4380_7778208_3010401,4380_949 -4380_78013,285,4380_57986,O'Connell Street,89666-00009-1,1,4380_7778208_3010402,4380_944 -4380_78013,288,4380_57987,O'Connell Street,89660-00011-1,1,4380_7778208_3010402,4380_944 -4380_78013,287,4380_57988,O'Connell Street,89668-00012-1,1,4380_7778208_3010402,4380_944 -4380_78013,286,4380_57989,O'Connell Street,89664-00010-1,1,4380_7778208_3010402,4380_944 -4380_78013,289,4380_57990,O'Connell Street,89662-00014-1,1,4380_7778208_3010402,4380_944 -4380_78013,292,4380_57991,O'Connell Street,89665-00016-1,1,4380_7778208_3010402,4380_944 -4380_78013,290,4380_57992,O'Connell Street,89667-00015-1,1,4380_7778208_3010402,4380_944 -4380_78013,294,4380_57993,O'Connell Street,89669-00018-1,1,4380_7778208_3010402,4380_944 -4380_78013,295,4380_57994,O'Connell Street,89663-00019-1,1,4380_7778208_3010402,4380_944 -4380_78013,293,4380_57995,O'Connell Street,89661-00017-1,1,4380_7778208_3010402,4380_944 -4380_78013,297,4380_57997,O'Connell Street,89424-00008-1,1,4380_7778208_3010401,4380_944 -4380_78013,291,4380_57999,O'Connell Street,89670-00013-1,1,4380_7778208_3010402,4380_950 -4380_77946,292,4380_58,Dundalk,50300-00016-1,0,4380_7778208_1000913,4380_1 -4380_78013,296,4380_58000,O'Connell Street,89671-00021-1,1,4380_7778208_3010402,4380_950 -4380_78013,285,4380_58006,O'Connell Street,90164-00009-1,1,4380_7778208_3010405,4380_944 -4380_78013,288,4380_58007,O'Connell Street,90162-00011-1,1,4380_7778208_3010405,4380_944 -4380_78013,287,4380_58008,O'Connell Street,90158-00012-1,1,4380_7778208_3010405,4380_944 -4380_78013,286,4380_58009,O'Connell Street,90166-00010-1,1,4380_7778208_3010405,4380_944 -4380_78013,289,4380_58010,O'Connell Street,90160-00014-1,1,4380_7778208_3010405,4380_944 -4380_78013,292,4380_58011,O'Connell Street,90167-00016-1,1,4380_7778208_3010405,4380_944 -4380_78013,290,4380_58012,O'Connell Street,90165-00015-1,1,4380_7778208_3010405,4380_944 -4380_78013,294,4380_58013,O'Connell Street,90159-00018-1,1,4380_7778208_3010405,4380_944 -4380_78013,295,4380_58014,O'Connell Street,90161-00019-1,1,4380_7778208_3010405,4380_944 -4380_78013,293,4380_58015,O'Connell Street,90163-00017-1,1,4380_7778208_3010405,4380_944 -4380_78014,285,4380_58021,City Centre,90168-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58022,City Centre,90176-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58023,City Centre,90172-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58024,City Centre,90174-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,289,4380_58025,City Centre,90170-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58026,City Centre,90175-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58027,City Centre,90169-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58028,City Centre,90173-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58029,City Centre,90171-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58030,City Centre,90177-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58036,City Centre,90188-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58038,City Centre,90180-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58039,City Centre,90182-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58040,City Centre,90178-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58041,City Centre,90186-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58042,City Centre,90184-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58043,City Centre,90179-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58044,City Centre,90189-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58045,City Centre,90183-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58046,City Centre,90185-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58047,City Centre,90181-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58048,City Centre,90187-00021-1,0,4380_7778208_3020401,4380_952 -4380_77950,285,4380_5805,Blanchardstown,54349-00009-1,1,4380_7778208_1051103,4380_63 -4380_78014,285,4380_58054,City Centre,90413-00009-1,0,4380_7778208_3020402,4380_951 -4380_78014,288,4380_58056,City Centre,90403-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58057,City Centre,90409-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58058,City Centre,90411-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58059,City Centre,90405-00013-1,0,4380_7778208_3020402,4380_952 -4380_77950,286,4380_5806,Blanchardstown,54345-00010-1,1,4380_7778208_1051103,4380_63 -4380_78014,289,4380_58060,City Centre,90407-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58061,City Centre,90412-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58062,City Centre,90414-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58063,City Centre,90410-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58064,City Centre,90408-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58065,City Centre,90404-00017-1,0,4380_7778208_3020402,4380_951 -4380_78014,296,4380_58066,City Centre,90406-00021-1,0,4380_7778208_3020402,4380_952 -4380_77950,288,4380_5807,Blanchardstown,54341-00011-1,1,4380_7778208_1051103,4380_63 -4380_78014,285,4380_58072,City Centre,90194-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58074,City Centre,90190-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58075,City Centre,90192-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58076,City Centre,90200-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58077,City Centre,90196-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58078,City Centre,90198-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58079,City Centre,90201-00016-1,0,4380_7778208_3020401,4380_951 -4380_77950,287,4380_5808,Blanchardstown,54343-00012-1,1,4380_7778208_1051103,4380_63 -4380_78014,290,4380_58080,City Centre,90195-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58081,City Centre,90193-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58082,City Centre,90199-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58083,City Centre,90191-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58084,City Centre,90197-00021-1,0,4380_7778208_3020401,4380_952 -4380_77950,289,4380_5809,Blanchardstown,54339-00014-1,1,4380_7778208_1051103,4380_63 -4380_78014,285,4380_58090,City Centre,90608-00009-1,0,4380_7778208_3020403,4380_951 -4380_78014,288,4380_58092,City Centre,90612-00011-1,0,4380_7778208_3020403,4380_951 -4380_78014,287,4380_58093,City Centre,90610-00012-1,0,4380_7778208_3020403,4380_951 -4380_78014,286,4380_58094,City Centre,90606-00010-1,0,4380_7778208_3020403,4380_951 -4380_78014,291,4380_58095,City Centre,90415-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58096,City Centre,90614-00014-1,0,4380_7778208_3020403,4380_951 -4380_78014,292,4380_58097,City Centre,90607-00016-1,0,4380_7778208_3020403,4380_951 -4380_78014,290,4380_58098,City Centre,90609-00015-1,0,4380_7778208_3020403,4380_951 -4380_78014,294,4380_58099,City Centre,90611-00018-1,0,4380_7778208_3020403,4380_951 -4380_77950,290,4380_5810,Blanchardstown,54350-00015-1,1,4380_7778208_1051103,4380_63 -4380_78014,295,4380_58100,City Centre,90615-00019-1,0,4380_7778208_3020403,4380_951 -4380_78014,293,4380_58101,City Centre,90613-00017-1,0,4380_7778208_3020403,4380_951 -4380_78014,296,4380_58102,City Centre,90416-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,285,4380_58108,City Centre,90425-00009-1,0,4380_7778208_3020402,4380_951 -4380_77950,291,4380_5811,Blanchardstown,54347-00013-1,1,4380_7778208_1051103,4380_64 -4380_78014,288,4380_58110,City Centre,90421-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58111,City Centre,90417-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58112,City Centre,90419-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58113,City Centre,90202-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58114,City Centre,90423-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58115,City Centre,90420-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58116,City Centre,90426-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58117,City Centre,90418-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58118,City Centre,90424-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58119,City Centre,90422-00017-1,0,4380_7778208_3020402,4380_951 -4380_77950,292,4380_5812,Blanchardstown,54346-00016-1,1,4380_7778208_1051103,4380_63 -4380_78014,296,4380_58120,City Centre,90203-00021-1,0,4380_7778208_3020401,4380_952 -4380_78014,285,4380_58126,City Centre,90206-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58128,City Centre,90208-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58129,City Centre,90210-00012-1,0,4380_7778208_3020401,4380_951 -4380_77950,293,4380_5813,Blanchardstown,54342-00017-1,1,4380_7778208_1051103,4380_63 -4380_78014,286,4380_58130,City Centre,90212-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58131,City Centre,90427-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58132,City Centre,90204-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58133,City Centre,90213-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58134,City Centre,90207-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58135,City Centre,90211-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58136,City Centre,90205-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58137,City Centre,90209-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58138,City Centre,90428-00021-1,0,4380_7778208_3020402,4380_952 -4380_77950,294,4380_5814,Blanchardstown,54344-00018-1,1,4380_7778208_1051103,4380_63 -4380_78014,285,4380_58144,City Centre,90620-00009-1,0,4380_7778208_3020403,4380_951 -4380_78014,288,4380_58146,City Centre,90618-00011-1,0,4380_7778208_3020403,4380_951 -4380_78014,287,4380_58147,City Centre,90622-00012-1,0,4380_7778208_3020403,4380_951 -4380_78014,286,4380_58148,City Centre,90624-00010-1,0,4380_7778208_3020403,4380_951 -4380_78014,291,4380_58149,City Centre,90214-00013-1,0,4380_7778208_3020401,4380_952 -4380_77950,295,4380_5815,Blanchardstown,54340-00019-1,1,4380_7778208_1051103,4380_63 -4380_78014,289,4380_58150,City Centre,90616-00014-1,0,4380_7778208_3020403,4380_951 -4380_78014,292,4380_58151,City Centre,90625-00016-1,0,4380_7778208_3020403,4380_951 -4380_78014,290,4380_58152,City Centre,90621-00015-1,0,4380_7778208_3020403,4380_951 -4380_78014,294,4380_58153,City Centre,90623-00018-1,0,4380_7778208_3020403,4380_951 -4380_78014,295,4380_58154,City Centre,90617-00019-1,0,4380_7778208_3020403,4380_951 -4380_78014,293,4380_58155,City Centre,90619-00017-1,0,4380_7778208_3020403,4380_951 -4380_78014,296,4380_58156,City Centre,90215-00021-1,0,4380_7778208_3020401,4380_952 -4380_77950,296,4380_5816,Blanchardstown,54348-00021-1,1,4380_7778208_1051103,4380_64 -4380_78014,285,4380_58162,City Centre,90429-00009-1,0,4380_7778208_3020402,4380_951 -4380_78014,288,4380_58164,City Centre,90437-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58165,City Centre,90439-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58166,City Centre,90435-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58167,City Centre,90431-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58168,City Centre,90433-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58169,City Centre,90436-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58170,City Centre,90430-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58171,City Centre,90440-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58172,City Centre,90434-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58173,City Centre,90438-00017-1,0,4380_7778208_3020402,4380_951 -4380_78014,296,4380_58174,City Centre,90432-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58181,City Centre,90218-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58182,City Centre,90223-00009-1,0,4380_7778208_3020401,4380_952 -4380_78014,288,4380_58184,City Centre,90221-00011-1,0,4380_7778208_3020401,4380_952 -4380_78014,287,4380_58185,City Centre,90225-00012-1,0,4380_7778208_3020401,4380_952 -4380_78014,286,4380_58186,City Centre,90219-00010-1,0,4380_7778208_3020401,4380_952 -4380_78014,291,4380_58187,City Centre,90227-00013-1,0,4380_7778208_3020401,4380_953 -4380_78014,289,4380_58188,City Centre,90216-00014-1,0,4380_7778208_3020401,4380_952 -4380_78014,292,4380_58189,City Centre,90220-00016-1,0,4380_7778208_3020401,4380_952 -4380_78014,290,4380_58190,City Centre,90224-00015-1,0,4380_7778208_3020401,4380_952 -4380_78014,294,4380_58191,City Centre,90226-00018-1,0,4380_7778208_3020401,4380_952 -4380_78014,295,4380_58192,City Centre,90217-00019-1,0,4380_7778208_3020401,4380_952 -4380_78014,293,4380_58193,City Centre,90222-00017-1,0,4380_7778208_3020401,4380_952 -4380_78014,296,4380_58194,City Centre,90228-00021-1,0,4380_7778208_3020401,4380_953 -4380_78113,285,4380_582,Dundalk,49850-00009-1,0,4380_7778208_1000905,4380_10 -4380_78014,285,4380_58200,City Centre,90628-00009-1,0,4380_7778208_3020403,4380_951 -4380_78014,288,4380_58202,City Centre,90634-00011-1,0,4380_7778208_3020403,4380_951 -4380_78014,287,4380_58203,City Centre,90632-00012-1,0,4380_7778208_3020403,4380_951 -4380_78014,286,4380_58204,City Centre,90630-00010-1,0,4380_7778208_3020403,4380_951 -4380_78014,291,4380_58205,City Centre,90441-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58206,City Centre,90626-00014-1,0,4380_7778208_3020403,4380_951 -4380_78014,292,4380_58207,City Centre,90631-00016-1,0,4380_7778208_3020403,4380_951 -4380_78014,290,4380_58208,City Centre,90629-00015-1,0,4380_7778208_3020403,4380_951 -4380_78014,294,4380_58209,City Centre,90633-00018-1,0,4380_7778208_3020403,4380_951 -4380_78014,295,4380_58210,City Centre,90627-00019-1,0,4380_7778208_3020403,4380_951 -4380_78014,293,4380_58211,City Centre,90635-00017-1,0,4380_7778208_3020403,4380_951 -4380_78014,296,4380_58212,City Centre,90442-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58214,City Centre,90229-00008-1,0,4380_7778208_3020401,4380_951 -4380_77950,285,4380_5822,Blanchardstown,4625-00009-1,1,4380_7778208_1050102,4380_60 -4380_78014,285,4380_58220,City Centre,90445-00009-1,0,4380_7778208_3020402,4380_951 -4380_78014,288,4380_58222,City Centre,90447-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58223,City Centre,90451-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58224,City Centre,90443-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58225,City Centre,90230-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58226,City Centre,90449-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58227,City Centre,90444-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58228,City Centre,90446-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58229,City Centre,90452-00018-1,0,4380_7778208_3020402,4380_951 -4380_77950,286,4380_5823,Blanchardstown,4667-00010-1,1,4380_7778208_1050102,4380_60 -4380_78014,295,4380_58230,City Centre,90450-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58231,City Centre,90448-00017-1,0,4380_7778208_3020402,4380_951 -4380_78014,296,4380_58232,City Centre,90231-00021-1,0,4380_7778208_3020401,4380_952 -4380_78014,297,4380_58239,City Centre,90232-00008-1,0,4380_7778208_3020401,4380_951 -4380_77950,288,4380_5824,Blanchardstown,4681-00011-1,1,4380_7778208_1050102,4380_60 -4380_78014,285,4380_58240,City Centre,90644-00009-1,0,4380_7778208_3020403,4380_952 -4380_78014,288,4380_58242,City Centre,90640-00011-1,0,4380_7778208_3020403,4380_952 -4380_78014,287,4380_58243,City Centre,90636-00012-1,0,4380_7778208_3020403,4380_952 -4380_78014,286,4380_58244,City Centre,90642-00010-1,0,4380_7778208_3020403,4380_952 -4380_78014,291,4380_58245,City Centre,90453-00013-1,0,4380_7778208_3020402,4380_953 -4380_78014,289,4380_58246,City Centre,90638-00014-1,0,4380_7778208_3020403,4380_952 -4380_78014,292,4380_58247,City Centre,90643-00016-1,0,4380_7778208_3020403,4380_952 -4380_78014,290,4380_58248,City Centre,90645-00015-1,0,4380_7778208_3020403,4380_952 -4380_78014,294,4380_58249,City Centre,90637-00018-1,0,4380_7778208_3020403,4380_952 -4380_77950,287,4380_5825,Blanchardstown,4709-00012-1,1,4380_7778208_1050102,4380_60 -4380_78014,295,4380_58250,City Centre,90639-00019-1,0,4380_7778208_3020403,4380_952 -4380_78014,293,4380_58251,City Centre,90641-00017-1,0,4380_7778208_3020403,4380_952 -4380_78014,296,4380_58252,City Centre,90454-00021-1,0,4380_7778208_3020402,4380_953 -4380_78014,285,4380_58258,City Centre,90463-00009-1,0,4380_7778208_3020402,4380_951 -4380_77950,289,4380_5826,Blanchardstown,54027-00014-1,1,4380_7778208_1050102,4380_60 -4380_78014,288,4380_58260,City Centre,90457-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58261,City Centre,90455-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58262,City Centre,90461-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58263,City Centre,90233-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58264,City Centre,90459-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58265,City Centre,90462-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58266,City Centre,90464-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58267,City Centre,90456-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58268,City Centre,90460-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58269,City Centre,90458-00017-1,0,4380_7778208_3020402,4380_951 -4380_77950,290,4380_5827,Blanchardstown,54028-00015-1,1,4380_7778208_1050102,4380_60 -4380_78014,296,4380_58270,City Centre,90234-00021-1,0,4380_7778208_3020401,4380_952 -4380_78014,297,4380_58272,City Centre,90235-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58278,City Centre,90648-00009-1,0,4380_7778208_3020403,4380_951 -4380_77950,292,4380_5828,Blanchardstown,54026-00016-1,1,4380_7778208_1050102,4380_60 -4380_78014,288,4380_58280,City Centre,90646-00011-1,0,4380_7778208_3020403,4380_951 -4380_78014,287,4380_58281,City Centre,90650-00012-1,0,4380_7778208_3020403,4380_951 -4380_78014,286,4380_58282,City Centre,90652-00010-1,0,4380_7778208_3020403,4380_951 -4380_78014,291,4380_58283,City Centre,90465-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58284,City Centre,90654-00014-1,0,4380_7778208_3020403,4380_951 -4380_78014,292,4380_58285,City Centre,90653-00016-1,0,4380_7778208_3020403,4380_951 -4380_78014,290,4380_58286,City Centre,90649-00015-1,0,4380_7778208_3020403,4380_951 -4380_78014,294,4380_58287,City Centre,90651-00018-1,0,4380_7778208_3020403,4380_951 -4380_78014,295,4380_58288,City Centre,90655-00019-1,0,4380_7778208_3020403,4380_951 -4380_78014,293,4380_58289,City Centre,90647-00017-1,0,4380_7778208_3020403,4380_951 -4380_77950,293,4380_5829,Blanchardstown,54025-00017-1,1,4380_7778208_1050102,4380_60 -4380_78014,296,4380_58290,City Centre,90466-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58297,City Centre,90236-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58298,City Centre,90473-00009-1,0,4380_7778208_3020402,4380_952 -4380_78113,286,4380_583,Dundalk,49856-00010-1,0,4380_7778208_1000905,4380_10 -4380_77950,294,4380_5830,Blanchardstown,54029-00018-1,1,4380_7778208_1050102,4380_60 -4380_78014,288,4380_58300,City Centre,90469-00011-1,0,4380_7778208_3020402,4380_952 -4380_78014,287,4380_58301,City Centre,90471-00012-1,0,4380_7778208_3020402,4380_952 -4380_78014,286,4380_58302,City Centre,90475-00010-1,0,4380_7778208_3020402,4380_952 -4380_78014,291,4380_58303,City Centre,90237-00013-1,0,4380_7778208_3020401,4380_953 -4380_78014,289,4380_58304,City Centre,90467-00014-1,0,4380_7778208_3020402,4380_952 -4380_78014,292,4380_58305,City Centre,90476-00016-1,0,4380_7778208_3020402,4380_952 -4380_78014,290,4380_58306,City Centre,90474-00015-1,0,4380_7778208_3020402,4380_952 -4380_78014,294,4380_58307,City Centre,90472-00018-1,0,4380_7778208_3020402,4380_952 -4380_78014,295,4380_58308,City Centre,90468-00019-1,0,4380_7778208_3020402,4380_952 -4380_78014,293,4380_58309,City Centre,90470-00017-1,0,4380_7778208_3020402,4380_952 -4380_77950,295,4380_5831,Blanchardstown,4597-00019-1,1,4380_7778208_1050102,4380_60 -4380_78014,296,4380_58310,City Centre,90238-00021-1,0,4380_7778208_3020401,4380_953 -4380_78014,285,4380_58316,City Centre,90656-00009-1,0,4380_7778208_3020403,4380_951 -4380_78014,288,4380_58318,City Centre,90658-00011-1,0,4380_7778208_3020403,4380_951 -4380_78014,287,4380_58319,City Centre,90662-00012-1,0,4380_7778208_3020403,4380_951 -4380_78014,286,4380_58320,City Centre,90660-00010-1,0,4380_7778208_3020403,4380_951 -4380_78014,291,4380_58321,City Centre,90477-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58322,City Centre,90664-00014-1,0,4380_7778208_3020403,4380_951 -4380_78014,292,4380_58323,City Centre,90661-00016-1,0,4380_7778208_3020403,4380_951 -4380_78014,290,4380_58324,City Centre,90657-00015-1,0,4380_7778208_3020403,4380_951 -4380_78014,294,4380_58325,City Centre,90663-00018-1,0,4380_7778208_3020403,4380_951 -4380_78014,295,4380_58326,City Centre,90665-00019-1,0,4380_7778208_3020403,4380_951 -4380_78014,293,4380_58327,City Centre,90659-00017-1,0,4380_7778208_3020403,4380_951 -4380_78014,296,4380_58328,City Centre,90478-00021-1,0,4380_7778208_3020402,4380_952 -4380_77950,291,4380_5833,Blanchardstown,54030-00013-1,1,4380_7778208_1050102,4380_60 -4380_78014,297,4380_58330,City Centre,90239-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58336,City Centre,90487-00009-1,0,4380_7778208_3020402,4380_951 -4380_78014,288,4380_58338,City Centre,90483-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58339,City Centre,90479-00012-1,0,4380_7778208_3020402,4380_951 -4380_77950,296,4380_5834,Blanchardstown,4737-00021-1,1,4380_7778208_1050102,4380_60 -4380_78014,286,4380_58340,City Centre,90485-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58341,City Centre,90240-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58342,City Centre,90481-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58343,City Centre,90486-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58344,City Centre,90488-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58345,City Centre,90480-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58346,City Centre,90482-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58347,City Centre,90484-00017-1,0,4380_7778208_3020402,4380_951 -4380_78014,296,4380_58348,City Centre,90241-00021-1,0,4380_7778208_3020401,4380_952 -4380_78014,297,4380_58355,City Centre,90242-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58356,City Centre,90670-00009-1,0,4380_7778208_3020403,4380_952 -4380_78014,288,4380_58358,City Centre,90668-00011-1,0,4380_7778208_3020403,4380_952 -4380_78014,287,4380_58359,City Centre,90674-00012-1,0,4380_7778208_3020403,4380_952 -4380_78014,286,4380_58360,City Centre,90666-00010-1,0,4380_7778208_3020403,4380_952 -4380_78014,291,4380_58361,City Centre,90489-00013-1,0,4380_7778208_3020402,4380_953 -4380_78014,289,4380_58362,City Centre,90672-00014-1,0,4380_7778208_3020403,4380_952 -4380_78014,292,4380_58363,City Centre,90667-00016-1,0,4380_7778208_3020403,4380_952 -4380_78014,290,4380_58364,City Centre,90671-00015-1,0,4380_7778208_3020403,4380_952 -4380_78014,294,4380_58365,City Centre,90675-00018-1,0,4380_7778208_3020403,4380_952 -4380_78014,295,4380_58366,City Centre,90673-00019-1,0,4380_7778208_3020403,4380_952 -4380_78014,293,4380_58367,City Centre,90669-00017-1,0,4380_7778208_3020403,4380_952 -4380_78014,296,4380_58368,City Centre,90490-00021-1,0,4380_7778208_3020402,4380_953 -4380_78014,285,4380_58374,City Centre,90493-00009-1,0,4380_7778208_3020402,4380_951 -4380_78014,288,4380_58376,City Centre,90495-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58377,City Centre,90497-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58378,City Centre,90499-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58379,City Centre,90243-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58380,City Centre,90491-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58381,City Centre,90500-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58382,City Centre,90494-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58383,City Centre,90498-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58384,City Centre,90492-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58385,City Centre,90496-00017-1,0,4380_7778208_3020402,4380_951 -4380_78014,296,4380_58386,City Centre,90244-00021-1,0,4380_7778208_3020401,4380_952 -4380_78014,297,4380_58388,City Centre,90501-00008-1,0,4380_7778208_3020402,4380_951 -4380_78014,285,4380_58394,City Centre,90678-00009-1,0,4380_7778208_3020403,4380_951 -4380_78014,288,4380_58396,City Centre,90680-00011-1,0,4380_7778208_3020403,4380_951 -4380_78014,287,4380_58397,City Centre,90684-00012-1,0,4380_7778208_3020403,4380_951 -4380_78014,286,4380_58398,City Centre,90676-00010-1,0,4380_7778208_3020403,4380_951 -4380_78014,291,4380_58399,City Centre,90502-00013-1,0,4380_7778208_3020402,4380_952 -4380_78113,287,4380_584,Dundalk,49858-00012-1,0,4380_7778208_1000905,4380_10 -4380_78014,289,4380_58400,City Centre,90682-00014-1,0,4380_7778208_3020403,4380_951 -4380_78014,292,4380_58401,City Centre,90677-00016-1,0,4380_7778208_3020403,4380_951 -4380_78014,290,4380_58402,City Centre,90679-00015-1,0,4380_7778208_3020403,4380_951 -4380_78014,294,4380_58403,City Centre,90685-00018-1,0,4380_7778208_3020403,4380_951 -4380_78014,295,4380_58404,City Centre,90683-00019-1,0,4380_7778208_3020403,4380_951 -4380_78014,293,4380_58405,City Centre,90681-00017-1,0,4380_7778208_3020403,4380_951 -4380_78014,296,4380_58406,City Centre,90503-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58413,City Centre,90245-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58414,City Centre,90506-00009-1,0,4380_7778208_3020402,4380_952 -4380_78014,288,4380_58416,City Centre,90504-00011-1,0,4380_7778208_3020402,4380_952 -4380_78014,287,4380_58417,City Centre,90508-00012-1,0,4380_7778208_3020402,4380_952 -4380_78014,286,4380_58418,City Centre,90510-00010-1,0,4380_7778208_3020402,4380_952 -4380_78014,291,4380_58419,City Centre,90246-00013-1,0,4380_7778208_3020401,4380_953 -4380_77950,285,4380_5842,Blanchardstown,54447-00009-1,1,4380_7778208_1051104,4380_63 -4380_78014,289,4380_58420,City Centre,90512-00014-1,0,4380_7778208_3020402,4380_952 -4380_78014,292,4380_58421,City Centre,90511-00016-1,0,4380_7778208_3020402,4380_952 -4380_78014,290,4380_58422,City Centre,90507-00015-1,0,4380_7778208_3020402,4380_952 -4380_78014,294,4380_58423,City Centre,90509-00018-1,0,4380_7778208_3020402,4380_952 -4380_78014,295,4380_58424,City Centre,90513-00019-1,0,4380_7778208_3020402,4380_952 -4380_78014,293,4380_58425,City Centre,90505-00017-1,0,4380_7778208_3020402,4380_952 -4380_78014,296,4380_58426,City Centre,90247-00021-1,0,4380_7778208_3020401,4380_953 -4380_77950,286,4380_5843,Blanchardstown,54449-00010-1,1,4380_7778208_1051104,4380_63 -4380_78014,285,4380_58432,City Centre,90248-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58434,City Centre,90250-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58435,City Centre,90252-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58436,City Centre,90256-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58437,City Centre,90514-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58438,City Centre,90254-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58439,City Centre,90257-00016-1,0,4380_7778208_3020401,4380_951 -4380_77950,297,4380_5844,Blanchardstown,54163-00008-1,1,4380_7778208_1051101,4380_64 -4380_78014,290,4380_58440,City Centre,90249-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58441,City Centre,90253-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58442,City Centre,90255-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58443,City Centre,90251-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58444,City Centre,90515-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58446,City Centre,90516-00008-1,0,4380_7778208_3020402,4380_951 -4380_77950,288,4380_5845,Blanchardstown,54445-00011-1,1,4380_7778208_1051104,4380_63 -4380_78014,285,4380_58452,City Centre,90523-00009-1,0,4380_7778208_3020402,4380_951 -4380_78014,288,4380_58454,City Centre,90519-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58455,City Centre,90517-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58456,City Centre,90521-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58457,City Centre,90258-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58458,City Centre,90525-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58459,City Centre,90522-00016-1,0,4380_7778208_3020402,4380_951 -4380_77950,287,4380_5846,Blanchardstown,54443-00012-1,1,4380_7778208_1051104,4380_63 -4380_78014,290,4380_58460,City Centre,90524-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58461,City Centre,90518-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58462,City Centre,90526-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58463,City Centre,90520-00017-1,0,4380_7778208_3020402,4380_951 -4380_78014,296,4380_58464,City Centre,90259-00021-1,0,4380_7778208_3020401,4380_952 -4380_77950,289,4380_5847,Blanchardstown,54441-00014-1,1,4380_7778208_1051104,4380_63 -4380_78014,297,4380_58471,City Centre,90260-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58472,City Centre,90694-00009-1,0,4380_7778208_3020403,4380_952 -4380_78014,288,4380_58474,City Centre,90688-00011-1,0,4380_7778208_3020403,4380_952 -4380_78014,287,4380_58475,City Centre,90692-00012-1,0,4380_7778208_3020403,4380_952 -4380_78014,286,4380_58476,City Centre,90690-00010-1,0,4380_7778208_3020403,4380_952 -4380_78014,291,4380_58477,City Centre,90527-00013-1,0,4380_7778208_3020402,4380_953 -4380_78014,289,4380_58478,City Centre,90686-00014-1,0,4380_7778208_3020403,4380_952 -4380_78014,292,4380_58479,City Centre,90691-00016-1,0,4380_7778208_3020403,4380_952 -4380_77950,290,4380_5848,Blanchardstown,54448-00015-1,1,4380_7778208_1051104,4380_63 -4380_78014,290,4380_58480,City Centre,90695-00015-1,0,4380_7778208_3020403,4380_952 -4380_78014,294,4380_58481,City Centre,90693-00018-1,0,4380_7778208_3020403,4380_952 -4380_78014,295,4380_58482,City Centre,90687-00019-1,0,4380_7778208_3020403,4380_952 -4380_78014,293,4380_58483,City Centre,90689-00017-1,0,4380_7778208_3020403,4380_952 -4380_78014,296,4380_58484,City Centre,90528-00021-1,0,4380_7778208_3020402,4380_953 -4380_77950,291,4380_5849,Blanchardstown,54451-00013-1,1,4380_7778208_1051104,4380_67 -4380_78014,285,4380_58490,City Centre,90263-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58492,City Centre,90265-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58493,City Centre,90267-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58494,City Centre,90269-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58495,City Centre,90261-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58496,City Centre,90271-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58497,City Centre,90270-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58498,City Centre,90264-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58499,City Centre,90268-00018-1,0,4380_7778208_3020401,4380_951 -4380_78113,288,4380_585,Dundalk,49848-00011-1,0,4380_7778208_1000905,4380_10 -4380_77950,292,4380_5850,Blanchardstown,54450-00016-1,1,4380_7778208_1051104,4380_63 -4380_78014,295,4380_58500,City Centre,90272-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58501,City Centre,90266-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58502,City Centre,90262-00021-1,0,4380_7778208_3020401,4380_952 -4380_78014,297,4380_58504,City Centre,90529-00008-1,0,4380_7778208_3020402,4380_951 -4380_77950,293,4380_5851,Blanchardstown,54446-00017-1,1,4380_7778208_1051104,4380_63 -4380_78014,285,4380_58510,City Centre,90536-00009-1,0,4380_7778208_3020402,4380_951 -4380_78014,288,4380_58512,City Centre,90530-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58513,City Centre,90540-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58514,City Centre,90538-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58515,City Centre,90532-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58516,City Centre,90534-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58517,City Centre,90539-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58518,City Centre,90537-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58519,City Centre,90541-00018-1,0,4380_7778208_3020402,4380_951 -4380_77950,294,4380_5852,Blanchardstown,54444-00018-1,1,4380_7778208_1051104,4380_63 -4380_78014,295,4380_58520,City Centre,90535-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58521,City Centre,90531-00017-1,0,4380_7778208_3020402,4380_951 -4380_78014,296,4380_58522,City Centre,90533-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58529,City Centre,90275-00008-1,0,4380_7778208_3020401,4380_951 -4380_77950,295,4380_5853,Blanchardstown,54442-00019-1,1,4380_7778208_1051104,4380_63 -4380_78014,285,4380_58530,City Centre,90704-00009-1,0,4380_7778208_3020403,4380_952 -4380_78014,288,4380_58532,City Centre,90702-00011-1,0,4380_7778208_3020403,4380_952 -4380_78014,287,4380_58533,City Centre,90700-00012-1,0,4380_7778208_3020403,4380_952 -4380_78014,286,4380_58534,City Centre,90696-00010-1,0,4380_7778208_3020403,4380_952 -4380_78014,291,4380_58535,City Centre,90273-00013-1,0,4380_7778208_3020401,4380_953 -4380_78014,289,4380_58536,City Centre,90698-00014-1,0,4380_7778208_3020403,4380_952 -4380_78014,292,4380_58537,City Centre,90697-00016-1,0,4380_7778208_3020403,4380_952 -4380_78014,290,4380_58538,City Centre,90705-00015-1,0,4380_7778208_3020403,4380_952 -4380_78014,294,4380_58539,City Centre,90701-00018-1,0,4380_7778208_3020403,4380_952 -4380_77950,296,4380_5854,Blanchardstown,54452-00021-1,1,4380_7778208_1051104,4380_67 -4380_78014,295,4380_58540,City Centre,90699-00019-1,0,4380_7778208_3020403,4380_952 -4380_78014,293,4380_58541,City Centre,90703-00017-1,0,4380_7778208_3020403,4380_952 -4380_78014,296,4380_58542,City Centre,90274-00021-1,0,4380_7778208_3020401,4380_953 -4380_78014,285,4380_58548,City Centre,90282-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58550,City Centre,90278-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58551,City Centre,90276-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58552,City Centre,90284-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58553,City Centre,90542-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58554,City Centre,90280-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58555,City Centre,90285-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58556,City Centre,90283-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58557,City Centre,90277-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58558,City Centre,90281-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58559,City Centre,90279-00017-1,0,4380_7778208_3020401,4380_951 -4380_77950,285,4380_5856,Blanchardstown,4473-00009-1,1,4380_7778208_1050101,4380_68 -4380_78014,296,4380_58560,City Centre,90543-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58562,City Centre,90544-00008-1,0,4380_7778208_3020402,4380_951 -4380_78014,285,4380_58568,City Centre,90551-00009-1,0,4380_7778208_3020402,4380_951 -4380_77950,286,4380_5857,Blanchardstown,4487-00010-1,1,4380_7778208_1050101,4380_68 -4380_78014,288,4380_58570,City Centre,90553-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58571,City Centre,90549-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58572,City Centre,90545-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58573,City Centre,90286-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58574,City Centre,90547-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58575,City Centre,90546-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58576,City Centre,90552-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58577,City Centre,90550-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58578,City Centre,90548-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58579,City Centre,90554-00017-1,0,4380_7778208_3020402,4380_951 -4380_77950,288,4380_5858,Blanchardstown,4529-00011-1,1,4380_7778208_1050101,4380_68 -4380_78014,296,4380_58580,City Centre,90287-00021-1,0,4380_7778208_3020401,4380_952 -4380_78014,297,4380_58587,City Centre,90288-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58588,City Centre,90706-00009-1,0,4380_7778208_3020403,4380_952 -4380_77950,287,4380_5859,Blanchardstown,4557-00012-1,1,4380_7778208_1050101,4380_68 -4380_78014,288,4380_58590,City Centre,90714-00011-1,0,4380_7778208_3020403,4380_952 -4380_78014,287,4380_58591,City Centre,90712-00012-1,0,4380_7778208_3020403,4380_952 -4380_78014,286,4380_58592,City Centre,90710-00010-1,0,4380_7778208_3020403,4380_952 -4380_78014,291,4380_58593,City Centre,90555-00013-1,0,4380_7778208_3020402,4380_953 -4380_78014,289,4380_58594,City Centre,90708-00014-1,0,4380_7778208_3020403,4380_952 -4380_78014,292,4380_58595,City Centre,90711-00016-1,0,4380_7778208_3020403,4380_952 -4380_78014,290,4380_58596,City Centre,90707-00015-1,0,4380_7778208_3020403,4380_952 -4380_78014,294,4380_58597,City Centre,90713-00018-1,0,4380_7778208_3020403,4380_952 -4380_78014,295,4380_58598,City Centre,90709-00019-1,0,4380_7778208_3020403,4380_952 -4380_78014,293,4380_58599,City Centre,90715-00017-1,0,4380_7778208_3020403,4380_952 -4380_78113,289,4380_586,Dundalk,49852-00014-1,0,4380_7778208_1000905,4380_10 -4380_77950,291,4380_5860,Blanchardstown,53953-00013-1,1,4380_7778208_1050101,4380_65 -4380_78014,296,4380_58600,City Centre,90556-00021-1,0,4380_7778208_3020402,4380_953 -4380_78014,285,4380_58606,City Centre,90297-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58608,City Centre,90289-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58609,City Centre,90293-00012-1,0,4380_7778208_3020401,4380_951 -4380_77950,295,4380_5861,Blanchardstown,4445-00019-1,1,4380_7778208_1050101,4380_68 -4380_78014,286,4380_58610,City Centre,90291-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58611,City Centre,90295-00013-1,0,4380_7778208_3020401,4380_952 -4380_78014,289,4380_58612,City Centre,90299-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58613,City Centre,90292-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58614,City Centre,90298-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58615,City Centre,90294-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58616,City Centre,90300-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58617,City Centre,90290-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58618,City Centre,90296-00021-1,0,4380_7778208_3020401,4380_952 -4380_78014,297,4380_58620,City Centre,90557-00008-1,0,4380_7778208_3020402,4380_951 -4380_78014,285,4380_58626,City Centre,90560-00009-1,0,4380_7778208_3020402,4380_951 -4380_78014,288,4380_58628,City Centre,90564-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58629,City Centre,90558-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58630,City Centre,90562-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58631,City Centre,90568-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58632,City Centre,90566-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58633,City Centre,90563-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58634,City Centre,90561-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58635,City Centre,90559-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58636,City Centre,90567-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58637,City Centre,90565-00017-1,0,4380_7778208_3020402,4380_951 -4380_78014,296,4380_58638,City Centre,90569-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58645,City Centre,90303-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58646,City Centre,90722-00009-1,0,4380_7778208_3020403,4380_952 -4380_78014,288,4380_58648,City Centre,90716-00011-1,0,4380_7778208_3020403,4380_952 -4380_78014,287,4380_58649,City Centre,90724-00012-1,0,4380_7778208_3020403,4380_952 -4380_78014,286,4380_58650,City Centre,90720-00010-1,0,4380_7778208_3020403,4380_952 -4380_78014,291,4380_58651,City Centre,90301-00013-1,0,4380_7778208_3020401,4380_953 -4380_78014,289,4380_58652,City Centre,90718-00014-1,0,4380_7778208_3020403,4380_952 -4380_78014,292,4380_58653,City Centre,90721-00016-1,0,4380_7778208_3020403,4380_952 -4380_78014,290,4380_58654,City Centre,90723-00015-1,0,4380_7778208_3020403,4380_952 -4380_78014,294,4380_58655,City Centre,90725-00018-1,0,4380_7778208_3020403,4380_952 -4380_78014,295,4380_58656,City Centre,90719-00019-1,0,4380_7778208_3020403,4380_952 -4380_78014,293,4380_58657,City Centre,90717-00017-1,0,4380_7778208_3020403,4380_952 -4380_78014,296,4380_58658,City Centre,90302-00021-1,0,4380_7778208_3020401,4380_953 -4380_78014,285,4380_58664,City Centre,90310-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58666,City Centre,90312-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58667,City Centre,90306-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58668,City Centre,90304-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58669,City Centre,90570-00013-1,0,4380_7778208_3020402,4380_952 -4380_77950,289,4380_5867,Blanchardstown,53957-00014-1,1,4380_7778208_1050101,4380_61 -4380_78014,289,4380_58670,City Centre,90308-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58671,City Centre,90305-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58672,City Centre,90311-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58673,City Centre,90307-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58674,City Centre,90309-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58675,City Centre,90313-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58676,City Centre,90571-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58678,City Centre,90572-00008-1,0,4380_7778208_3020402,4380_951 -4380_77950,290,4380_5868,Blanchardstown,53954-00015-1,1,4380_7778208_1050101,4380_61 -4380_78014,285,4380_58684,City Centre,90579-00009-1,0,4380_7778208_3020402,4380_951 -4380_78014,288,4380_58686,City Centre,90581-00011-1,0,4380_7778208_3020402,4380_951 -4380_78014,287,4380_58687,City Centre,90575-00012-1,0,4380_7778208_3020402,4380_951 -4380_78014,286,4380_58688,City Centre,90577-00010-1,0,4380_7778208_3020402,4380_951 -4380_78014,291,4380_58689,City Centre,90314-00013-1,0,4380_7778208_3020401,4380_952 -4380_77950,292,4380_5869,Blanchardstown,53956-00016-1,1,4380_7778208_1050101,4380_61 -4380_78014,289,4380_58690,City Centre,90573-00014-1,0,4380_7778208_3020402,4380_951 -4380_78014,292,4380_58691,City Centre,90578-00016-1,0,4380_7778208_3020402,4380_951 -4380_78014,290,4380_58692,City Centre,90580-00015-1,0,4380_7778208_3020402,4380_951 -4380_78014,294,4380_58693,City Centre,90576-00018-1,0,4380_7778208_3020402,4380_951 -4380_78014,295,4380_58694,City Centre,90574-00019-1,0,4380_7778208_3020402,4380_951 -4380_78014,293,4380_58695,City Centre,90582-00017-1,0,4380_7778208_3020402,4380_951 -4380_78014,296,4380_58696,City Centre,90315-00021-1,0,4380_7778208_3020401,4380_952 -4380_78113,290,4380_587,Dundalk,49851-00015-1,0,4380_7778208_1000905,4380_10 -4380_77950,293,4380_5870,Blanchardstown,53955-00017-1,1,4380_7778208_1050101,4380_61 -4380_78014,297,4380_58703,City Centre,90316-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58704,City Centre,90728-00009-1,0,4380_7778208_3020403,4380_952 -4380_78014,288,4380_58706,City Centre,90734-00011-1,0,4380_7778208_3020403,4380_952 -4380_78014,287,4380_58707,City Centre,90726-00012-1,0,4380_7778208_3020403,4380_952 -4380_78014,286,4380_58708,City Centre,90732-00010-1,0,4380_7778208_3020403,4380_952 -4380_78014,291,4380_58709,City Centre,90583-00013-1,0,4380_7778208_3020402,4380_951 -4380_77950,294,4380_5871,Blanchardstown,53958-00018-1,1,4380_7778208_1050101,4380_61 -4380_78014,289,4380_58710,City Centre,90730-00014-1,0,4380_7778208_3020403,4380_952 -4380_78014,292,4380_58711,City Centre,90733-00016-1,0,4380_7778208_3020403,4380_952 -4380_78014,290,4380_58712,City Centre,90729-00015-1,0,4380_7778208_3020403,4380_952 -4380_78014,294,4380_58713,City Centre,90727-00018-1,0,4380_7778208_3020403,4380_952 -4380_78014,295,4380_58714,City Centre,90731-00019-1,0,4380_7778208_3020403,4380_952 -4380_78014,293,4380_58715,City Centre,90735-00017-1,0,4380_7778208_3020403,4380_952 -4380_78014,296,4380_58716,City Centre,90584-00021-1,0,4380_7778208_3020402,4380_951 -4380_77950,296,4380_5872,Blanchardstown,4571-00021-1,1,4380_7778208_1050101,4380_69 -4380_78014,297,4380_58723,City Centre,90585-00008-1,0,4380_7778208_3020402,4380_951 -4380_78014,285,4380_58724,City Centre,90596-00009-1,0,4380_7778208_3020402,4380_952 -4380_78014,288,4380_58726,City Centre,90592-00011-1,0,4380_7778208_3020402,4380_952 -4380_78014,287,4380_58727,City Centre,90590-00012-1,0,4380_7778208_3020402,4380_952 -4380_78014,286,4380_58728,City Centre,90586-00010-1,0,4380_7778208_3020402,4380_952 -4380_78014,291,4380_58729,City Centre,90588-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58730,City Centre,90594-00014-1,0,4380_7778208_3020402,4380_952 -4380_78014,292,4380_58731,City Centre,90587-00016-1,0,4380_7778208_3020402,4380_952 -4380_78014,290,4380_58732,City Centre,90597-00015-1,0,4380_7778208_3020402,4380_952 -4380_78014,294,4380_58733,City Centre,90591-00018-1,0,4380_7778208_3020402,4380_952 -4380_78014,295,4380_58734,City Centre,90595-00019-1,0,4380_7778208_3020402,4380_952 -4380_78014,293,4380_58735,City Centre,90593-00017-1,0,4380_7778208_3020402,4380_952 -4380_78014,296,4380_58736,City Centre,90589-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58743,City Centre,90317-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58744,City Centre,90744-00009-1,0,4380_7778208_3020403,4380_952 -4380_78014,288,4380_58746,City Centre,90740-00011-1,0,4380_7778208_3020403,4380_952 -4380_78014,287,4380_58747,City Centre,90738-00012-1,0,4380_7778208_3020403,4380_952 -4380_78014,286,4380_58748,City Centre,90736-00010-1,0,4380_7778208_3020403,4380_952 -4380_78014,291,4380_58749,City Centre,90598-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58750,City Centre,90742-00014-1,0,4380_7778208_3020403,4380_952 -4380_78014,292,4380_58751,City Centre,90737-00016-1,0,4380_7778208_3020403,4380_952 -4380_78014,290,4380_58752,City Centre,90745-00015-1,0,4380_7778208_3020403,4380_952 -4380_78014,294,4380_58753,City Centre,90739-00018-1,0,4380_7778208_3020403,4380_952 -4380_78014,295,4380_58754,City Centre,90743-00019-1,0,4380_7778208_3020403,4380_952 -4380_78014,293,4380_58755,City Centre,90741-00017-1,0,4380_7778208_3020403,4380_952 -4380_78014,296,4380_58756,City Centre,90599-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58763,City Centre,90328-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58764,City Centre,90322-00009-1,0,4380_7778208_3020401,4380_952 -4380_78014,288,4380_58766,City Centre,90324-00011-1,0,4380_7778208_3020401,4380_952 -4380_78014,287,4380_58767,City Centre,90320-00012-1,0,4380_7778208_3020401,4380_952 -4380_78014,286,4380_58768,City Centre,90318-00010-1,0,4380_7778208_3020401,4380_952 -4380_78014,291,4380_58769,City Centre,90600-00013-1,0,4380_7778208_3020402,4380_952 -4380_78014,289,4380_58770,City Centre,90326-00014-1,0,4380_7778208_3020401,4380_952 -4380_78014,292,4380_58771,City Centre,90319-00016-1,0,4380_7778208_3020401,4380_952 -4380_78014,290,4380_58772,City Centre,90323-00015-1,0,4380_7778208_3020401,4380_952 -4380_78014,294,4380_58773,City Centre,90321-00018-1,0,4380_7778208_3020401,4380_952 -4380_78014,295,4380_58774,City Centre,90327-00019-1,0,4380_7778208_3020401,4380_952 -4380_78014,293,4380_58775,City Centre,90325-00017-1,0,4380_7778208_3020401,4380_952 -4380_78014,296,4380_58776,City Centre,90601-00021-1,0,4380_7778208_3020402,4380_952 -4380_78014,297,4380_58783,City Centre,90329-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58784,City Centre,90334-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58786,City Centre,90332-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58787,City Centre,90336-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58788,City Centre,90338-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58789,City Centre,90602-00013-1,0,4380_7778208_3020402,4380_951 -4380_78014,289,4380_58790,City Centre,90330-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58791,City Centre,90339-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58792,City Centre,90335-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58793,City Centre,90337-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58794,City Centre,90331-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58795,City Centre,90333-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58796,City Centre,90603-00021-1,0,4380_7778208_3020402,4380_951 -4380_78113,291,4380_588,Dundalk,49854-00013-1,0,4380_7778208_1000905,4380_13 -4380_77950,285,4380_5880,Blanchardstown,54166-00009-1,1,4380_7778208_1051101,4380_63 -4380_78014,297,4380_58803,City Centre,90340-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58804,City Centre,90347-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58806,City Centre,90341-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58807,City Centre,90349-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58808,City Centre,90343-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58809,City Centre,90604-00013-1,0,4380_7778208_3020402,4380_951 -4380_77950,286,4380_5881,Blanchardstown,54164-00010-1,1,4380_7778208_1051101,4380_63 -4380_78014,289,4380_58810,City Centre,90345-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58811,City Centre,90344-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58812,City Centre,90348-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58813,City Centre,90350-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58814,City Centre,90346-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58815,City Centre,90342-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58816,City Centre,90605-00021-1,0,4380_7778208_3020402,4380_951 -4380_77950,297,4380_5882,Blanchardstown,54265-00008-1,1,4380_7778208_1051102,4380_64 -4380_78014,297,4380_58823,City Centre,90359-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58824,City Centre,90360-00009-1,0,4380_7778208_3020401,4380_951 -4380_78014,288,4380_58826,City Centre,90353-00011-1,0,4380_7778208_3020401,4380_951 -4380_78014,287,4380_58827,City Centre,90357-00012-1,0,4380_7778208_3020401,4380_951 -4380_78014,286,4380_58828,City Centre,90362-00010-1,0,4380_7778208_3020401,4380_951 -4380_78014,291,4380_58829,City Centre,90355-00013-1,0,4380_7778208_3020401,4380_951 -4380_77950,288,4380_5883,Blanchardstown,54172-00011-1,1,4380_7778208_1051101,4380_63 -4380_78014,289,4380_58830,City Centre,90351-00014-1,0,4380_7778208_3020401,4380_951 -4380_78014,292,4380_58831,City Centre,90363-00016-1,0,4380_7778208_3020401,4380_951 -4380_78014,290,4380_58832,City Centre,90361-00015-1,0,4380_7778208_3020401,4380_951 -4380_78014,294,4380_58833,City Centre,90358-00018-1,0,4380_7778208_3020401,4380_951 -4380_78014,295,4380_58834,City Centre,90352-00019-1,0,4380_7778208_3020401,4380_951 -4380_78014,293,4380_58835,City Centre,90354-00017-1,0,4380_7778208_3020401,4380_951 -4380_78014,296,4380_58836,City Centre,90356-00021-1,0,4380_7778208_3020401,4380_951 -4380_77950,287,4380_5884,Blanchardstown,54168-00012-1,1,4380_7778208_1051101,4380_63 -4380_78014,297,4380_58843,City Centre,90366-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58844,City Centre,90367-00009-1,0,4380_7778208_3020401,4380_952 -4380_78014,288,4380_58846,City Centre,90364-00011-1,0,4380_7778208_3020401,4380_952 -4380_78014,287,4380_58847,City Centre,90369-00012-1,0,4380_7778208_3020401,4380_952 -4380_78014,286,4380_58848,City Centre,90375-00010-1,0,4380_7778208_3020401,4380_952 -4380_78014,291,4380_58849,City Centre,90371-00013-1,0,4380_7778208_3020401,4380_951 -4380_77950,289,4380_5885,Blanchardstown,54170-00014-1,1,4380_7778208_1051101,4380_63 -4380_78014,289,4380_58850,City Centre,90373-00014-1,0,4380_7778208_3020401,4380_952 -4380_78014,292,4380_58851,City Centre,90376-00016-1,0,4380_7778208_3020401,4380_952 -4380_78014,290,4380_58852,City Centre,90368-00015-1,0,4380_7778208_3020401,4380_952 -4380_78014,294,4380_58853,City Centre,90370-00018-1,0,4380_7778208_3020401,4380_952 -4380_78014,295,4380_58854,City Centre,90374-00019-1,0,4380_7778208_3020401,4380_952 -4380_78014,293,4380_58855,City Centre,90365-00017-1,0,4380_7778208_3020401,4380_952 -4380_78014,296,4380_58856,City Centre,90372-00021-1,0,4380_7778208_3020401,4380_951 -4380_77950,290,4380_5886,Blanchardstown,54167-00015-1,1,4380_7778208_1051101,4380_63 -4380_78014,297,4380_58863,City Centre,90389-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58864,City Centre,90377-00009-1,0,4380_7778208_3020401,4380_952 -4380_78014,288,4380_58866,City Centre,90385-00011-1,0,4380_7778208_3020401,4380_952 -4380_78014,287,4380_58867,City Centre,90383-00012-1,0,4380_7778208_3020401,4380_952 -4380_78014,286,4380_58868,City Centre,90381-00010-1,0,4380_7778208_3020401,4380_952 -4380_78014,291,4380_58869,City Centre,90379-00013-1,0,4380_7778208_3020401,4380_953 -4380_77950,291,4380_5887,Blanchardstown,54174-00013-1,1,4380_7778208_1051101,4380_67 -4380_78014,289,4380_58870,City Centre,90387-00014-1,0,4380_7778208_3020401,4380_952 -4380_78014,292,4380_58871,City Centre,90382-00016-1,0,4380_7778208_3020401,4380_952 -4380_78014,290,4380_58872,City Centre,90378-00015-1,0,4380_7778208_3020401,4380_952 -4380_78014,294,4380_58873,City Centre,90384-00018-1,0,4380_7778208_3020401,4380_952 -4380_78014,295,4380_58874,City Centre,90388-00019-1,0,4380_7778208_3020401,4380_952 -4380_78014,293,4380_58875,City Centre,90386-00017-1,0,4380_7778208_3020401,4380_952 -4380_78014,296,4380_58876,City Centre,90380-00021-1,0,4380_7778208_3020401,4380_953 -4380_77950,292,4380_5888,Blanchardstown,54165-00016-1,1,4380_7778208_1051101,4380_63 -4380_78014,297,4380_58883,City Centre,90400-00008-1,0,4380_7778208_3020401,4380_951 -4380_78014,285,4380_58884,City Centre,90390-00009-1,0,4380_7778208_3020401,4380_952 -4380_78014,288,4380_58886,City Centre,90401-00011-1,0,4380_7778208_3020401,4380_952 -4380_78014,287,4380_58887,City Centre,90392-00012-1,0,4380_7778208_3020401,4380_952 -4380_78014,286,4380_58888,City Centre,90394-00010-1,0,4380_7778208_3020401,4380_952 -4380_78014,291,4380_58889,City Centre,90398-00013-1,0,4380_7778208_3020401,4380_953 -4380_77950,293,4380_5889,Blanchardstown,54173-00017-1,1,4380_7778208_1051101,4380_63 -4380_78014,289,4380_58890,City Centre,90396-00014-1,0,4380_7778208_3020401,4380_952 -4380_78014,292,4380_58891,City Centre,90395-00016-1,0,4380_7778208_3020401,4380_952 -4380_78014,290,4380_58892,City Centre,90391-00015-1,0,4380_7778208_3020401,4380_952 -4380_78014,294,4380_58893,City Centre,90393-00018-1,0,4380_7778208_3020401,4380_952 -4380_78014,295,4380_58894,City Centre,90397-00019-1,0,4380_7778208_3020401,4380_952 -4380_78014,293,4380_58895,City Centre,90402-00017-1,0,4380_7778208_3020401,4380_952 -4380_78014,296,4380_58896,City Centre,90399-00021-1,0,4380_7778208_3020401,4380_953 -4380_78113,292,4380_589,Dundalk,49857-00016-1,0,4380_7778208_1000905,4380_10 -4380_77950,294,4380_5890,Blanchardstown,54169-00018-1,1,4380_7778208_1051101,4380_63 -4380_78015,285,4380_58902,Pineview,91008-00009-1,0,4380_7778208_3030402,4380_954 -4380_78015,288,4380_58904,Pineview,91010-00011-1,0,4380_7778208_3030402,4380_954 -4380_78015,287,4380_58905,Pineview,91002-00012-1,0,4380_7778208_3030402,4380_954 -4380_78015,286,4380_58906,Pineview,91012-00010-1,0,4380_7778208_3030402,4380_954 -4380_78015,291,4380_58907,Pineview,91006-00013-1,0,4380_7778208_3030402,4380_957 -4380_78015,289,4380_58908,Pineview,91004-00014-1,0,4380_7778208_3030402,4380_954 -4380_78015,292,4380_58909,Pineview,91013-00016-1,0,4380_7778208_3030402,4380_954 -4380_77950,295,4380_5891,Blanchardstown,54171-00019-1,1,4380_7778208_1051101,4380_63 -4380_78015,290,4380_58910,Pineview,91009-00015-1,0,4380_7778208_3030402,4380_954 -4380_78015,294,4380_58911,Pineview,91003-00018-1,0,4380_7778208_3030402,4380_954 -4380_78015,295,4380_58912,Pineview,91005-00019-1,0,4380_7778208_3030402,4380_954 -4380_78015,293,4380_58913,Pineview,91011-00017-1,0,4380_7778208_3030402,4380_954 -4380_78015,296,4380_58914,Pineview,91007-00021-1,0,4380_7778208_3030402,4380_957 -4380_77950,296,4380_5892,Blanchardstown,54175-00021-1,1,4380_7778208_1051101,4380_67 -4380_78015,285,4380_58920,Pineview,90762-00009-1,0,4380_7778208_3030401,4380_954 -4380_78015,288,4380_58922,Pineview,90760-00011-1,0,4380_7778208_3030401,4380_954 -4380_78015,287,4380_58923,Pineview,90758-00012-1,0,4380_7778208_3030401,4380_954 -4380_78015,286,4380_58924,Pineview,90764-00010-1,0,4380_7778208_3030401,4380_954 -4380_78015,291,4380_58925,Pineview,90766-00013-1,0,4380_7778208_3030401,4380_957 -4380_78015,289,4380_58926,Pineview,90768-00014-1,0,4380_7778208_3030401,4380_954 -4380_78015,292,4380_58927,Pineview,90765-00016-1,0,4380_7778208_3030401,4380_954 -4380_78015,290,4380_58928,Pineview,90763-00015-1,0,4380_7778208_3030401,4380_954 -4380_78015,294,4380_58929,Pineview,90759-00018-1,0,4380_7778208_3030401,4380_954 -4380_78015,295,4380_58930,Pineview,90769-00019-1,0,4380_7778208_3030401,4380_954 -4380_78015,293,4380_58931,Pineview,90761-00017-1,0,4380_7778208_3030401,4380_954 -4380_78015,296,4380_58932,Pineview,90767-00021-1,0,4380_7778208_3030401,4380_957 -4380_78015,285,4380_58938,Pineview,91544-00009-1,0,4380_7778208_3030404,4380_954 -4380_77950,285,4380_5894,Blanchardstown,4627-00009-1,1,4380_7778208_1050102,4380_68 -4380_78015,288,4380_58940,Pineview,91554-00011-1,0,4380_7778208_3030404,4380_954 -4380_78015,287,4380_58941,Pineview,91546-00012-1,0,4380_7778208_3030404,4380_954 -4380_78015,286,4380_58942,Pineview,91552-00010-1,0,4380_7778208_3030404,4380_954 -4380_78015,291,4380_58943,Pineview,91548-00013-1,0,4380_7778208_3030404,4380_957 -4380_78015,289,4380_58944,Pineview,91550-00014-1,0,4380_7778208_3030404,4380_954 -4380_78015,292,4380_58945,Pineview,91553-00016-1,0,4380_7778208_3030404,4380_954 -4380_78015,290,4380_58946,Pineview,91545-00015-1,0,4380_7778208_3030404,4380_954 -4380_78015,294,4380_58947,Pineview,91547-00018-1,0,4380_7778208_3030404,4380_954 -4380_78015,295,4380_58948,Pineview,91551-00019-1,0,4380_7778208_3030404,4380_954 -4380_78015,293,4380_58949,Pineview,91555-00017-1,0,4380_7778208_3030404,4380_954 -4380_77950,286,4380_5895,Blanchardstown,4669-00010-1,1,4380_7778208_1050102,4380_68 -4380_78015,296,4380_58950,Pineview,91549-00021-1,0,4380_7778208_3030404,4380_957 -4380_78015,297,4380_58957,Pineview,91034-00008-1,0,4380_7778208_3030402,4380_954 -4380_78015,285,4380_58958,Pineview,91035-00009-1,0,4380_7778208_3030402,4380_957 -4380_77950,288,4380_5896,Blanchardstown,4683-00011-1,1,4380_7778208_1050102,4380_68 -4380_78015,288,4380_58960,Pineview,91030-00011-1,0,4380_7778208_3030402,4380_957 -4380_78015,287,4380_58961,Pineview,91026-00012-1,0,4380_7778208_3030402,4380_957 -4380_78015,286,4380_58962,Pineview,91028-00010-1,0,4380_7778208_3030402,4380_957 -4380_78015,291,4380_58963,Pineview,91032-00013-1,0,4380_7778208_3030402,4380_954 -4380_78015,289,4380_58964,Pineview,91037-00014-1,0,4380_7778208_3030402,4380_957 -4380_78015,292,4380_58965,Pineview,91029-00016-1,0,4380_7778208_3030402,4380_957 -4380_78015,290,4380_58966,Pineview,91036-00015-1,0,4380_7778208_3030402,4380_957 -4380_78015,294,4380_58967,Pineview,91027-00018-1,0,4380_7778208_3030402,4380_957 -4380_78015,295,4380_58968,Pineview,91038-00019-1,0,4380_7778208_3030402,4380_957 -4380_78015,293,4380_58969,Pineview,91031-00017-1,0,4380_7778208_3030402,4380_957 -4380_77950,287,4380_5897,Blanchardstown,4711-00012-1,1,4380_7778208_1050102,4380_68 -4380_78015,296,4380_58970,Pineview,91033-00021-1,0,4380_7778208_3030402,4380_954 -4380_78015,285,4380_58976,Pineview,92024-00009-1,0,4380_7778208_3030406,4380_954 -4380_78015,288,4380_58978,Pineview,92028-00011-1,0,4380_7778208_3030406,4380_954 -4380_78015,287,4380_58979,Pineview,92032-00012-1,0,4380_7778208_3030406,4380_954 -4380_77950,291,4380_5898,Blanchardstown,54037-00013-1,1,4380_7778208_1050102,4380_65 -4380_78015,286,4380_58980,Pineview,92030-00010-1,0,4380_7778208_3030406,4380_954 -4380_78015,291,4380_58981,Pineview,91271-00013-1,0,4380_7778208_3030403,4380_957 -4380_78015,289,4380_58982,Pineview,92026-00014-1,0,4380_7778208_3030406,4380_954 -4380_78015,292,4380_58983,Pineview,92031-00016-1,0,4380_7778208_3030406,4380_954 -4380_78015,290,4380_58984,Pineview,92025-00015-1,0,4380_7778208_3030406,4380_954 -4380_78015,294,4380_58985,Pineview,92033-00018-1,0,4380_7778208_3030406,4380_954 -4380_78015,295,4380_58986,Pineview,92027-00019-1,0,4380_7778208_3030406,4380_954 -4380_78015,293,4380_58987,Pineview,92029-00017-1,0,4380_7778208_3030406,4380_954 -4380_78015,296,4380_58988,Pineview,91272-00021-1,0,4380_7778208_3030403,4380_957 -4380_77950,295,4380_5899,Blanchardstown,4599-00019-1,1,4380_7778208_1050102,4380_68 -4380_78015,297,4380_58995,Pineview,90783-00008-1,0,4380_7778208_3030401,4380_954 -4380_78015,285,4380_58996,Pineview,91277-00009-1,0,4380_7778208_3030403,4380_957 -4380_78015,288,4380_58998,Pineview,91273-00011-1,0,4380_7778208_3030403,4380_957 -4380_78015,287,4380_58999,Pineview,91275-00012-1,0,4380_7778208_3030403,4380_957 -4380_77946,292,4380_59,Dundalk,114780-00016-1,0,4380_7778208_10088802,4380_4 -4380_78113,293,4380_590,Dundalk,49849-00017-1,0,4380_7778208_1000905,4380_10 -4380_78015,286,4380_59000,Pineview,91281-00010-1,0,4380_7778208_3030403,4380_957 -4380_78015,291,4380_59001,Pineview,90784-00013-1,0,4380_7778208_3030401,4380_959 -4380_78015,289,4380_59002,Pineview,91279-00014-1,0,4380_7778208_3030403,4380_957 -4380_78015,292,4380_59003,Pineview,91282-00016-1,0,4380_7778208_3030403,4380_957 -4380_78015,290,4380_59004,Pineview,91278-00015-1,0,4380_7778208_3030403,4380_957 -4380_78015,294,4380_59005,Pineview,91276-00018-1,0,4380_7778208_3030403,4380_957 -4380_78015,295,4380_59006,Pineview,91280-00019-1,0,4380_7778208_3030403,4380_957 -4380_78015,293,4380_59007,Pineview,91274-00017-1,0,4380_7778208_3030403,4380_957 -4380_78015,296,4380_59008,Pineview,90785-00021-1,0,4380_7778208_3030401,4380_959 -4380_78015,285,4380_59014,Pineview,91832-00009-1,0,4380_7778208_3030405,4380_954 -4380_78015,288,4380_59016,Pineview,91838-00011-1,0,4380_7778208_3030405,4380_954 -4380_78015,287,4380_59017,Pineview,91840-00012-1,0,4380_7778208_3030405,4380_954 -4380_78015,286,4380_59018,Pineview,91836-00010-1,0,4380_7778208_3030405,4380_954 -4380_78015,291,4380_59019,Pineview,91568-00013-1,0,4380_7778208_3030404,4380_957 -4380_78015,289,4380_59020,Pineview,91834-00014-1,0,4380_7778208_3030405,4380_954 -4380_78015,292,4380_59021,Pineview,91837-00016-1,0,4380_7778208_3030405,4380_954 -4380_78015,290,4380_59022,Pineview,91833-00015-1,0,4380_7778208_3030405,4380_954 -4380_78015,294,4380_59023,Pineview,91841-00018-1,0,4380_7778208_3030405,4380_954 -4380_78015,295,4380_59024,Pineview,91835-00019-1,0,4380_7778208_3030405,4380_954 -4380_78015,293,4380_59025,Pineview,91839-00017-1,0,4380_7778208_3030405,4380_954 -4380_78015,296,4380_59026,Pineview,91569-00021-1,0,4380_7778208_3030404,4380_957 -4380_78015,297,4380_59033,Pineview,91054-00008-1,0,4380_7778208_3030402,4380_954 -4380_78015,285,4380_59034,Pineview,90787-00009-1,0,4380_7778208_3030401,4380_957 -4380_78015,288,4380_59036,Pineview,90789-00011-1,0,4380_7778208_3030401,4380_957 -4380_78015,287,4380_59037,Pineview,90795-00012-1,0,4380_7778208_3030401,4380_957 -4380_78015,286,4380_59038,Pineview,90793-00010-1,0,4380_7778208_3030401,4380_957 -4380_78015,291,4380_59039,Pineview,91052-00013-1,0,4380_7778208_3030402,4380_959 -4380_78015,289,4380_59040,Pineview,90791-00014-1,0,4380_7778208_3030401,4380_957 -4380_78015,292,4380_59041,Pineview,90794-00016-1,0,4380_7778208_3030401,4380_957 -4380_78015,290,4380_59042,Pineview,90788-00015-1,0,4380_7778208_3030401,4380_957 -4380_78015,294,4380_59043,Pineview,90796-00018-1,0,4380_7778208_3030401,4380_957 -4380_78015,295,4380_59044,Pineview,90792-00019-1,0,4380_7778208_3030401,4380_957 -4380_78015,293,4380_59045,Pineview,90790-00017-1,0,4380_7778208_3030401,4380_957 -4380_78015,296,4380_59046,Pineview,91053-00021-1,0,4380_7778208_3030402,4380_959 -4380_77950,289,4380_5905,Blanchardstown,54039-00014-1,1,4380_7778208_1050102,4380_61 -4380_78015,285,4380_59052,Pineview,91572-00009-1,0,4380_7778208_3030404,4380_954 -4380_78015,288,4380_59054,Pineview,91578-00011-1,0,4380_7778208_3030404,4380_954 -4380_78015,287,4380_59055,Pineview,91576-00012-1,0,4380_7778208_3030404,4380_954 -4380_78015,286,4380_59056,Pineview,91570-00010-1,0,4380_7778208_3030404,4380_954 -4380_78015,291,4380_59057,Pineview,91295-00013-1,0,4380_7778208_3030403,4380_957 -4380_78015,289,4380_59058,Pineview,91574-00014-1,0,4380_7778208_3030404,4380_954 -4380_78015,292,4380_59059,Pineview,91571-00016-1,0,4380_7778208_3030404,4380_954 -4380_77950,290,4380_5906,Blanchardstown,54038-00015-1,1,4380_7778208_1050102,4380_61 -4380_78015,290,4380_59060,Pineview,91573-00015-1,0,4380_7778208_3030404,4380_954 -4380_78015,294,4380_59061,Pineview,91577-00018-1,0,4380_7778208_3030404,4380_954 -4380_78015,295,4380_59062,Pineview,91575-00019-1,0,4380_7778208_3030404,4380_954 -4380_78015,293,4380_59063,Pineview,91579-00017-1,0,4380_7778208_3030404,4380_954 -4380_78015,296,4380_59064,Pineview,91296-00021-1,0,4380_7778208_3030403,4380_957 -4380_77950,292,4380_5907,Blanchardstown,54041-00016-1,1,4380_7778208_1050102,4380_61 -4380_78015,297,4380_59071,Pineview,90799-00008-1,0,4380_7778208_3030401,4380_954 -4380_78015,285,4380_59072,Pineview,91064-00009-1,0,4380_7778208_3030402,4380_957 -4380_78015,288,4380_59074,Pineview,91056-00011-1,0,4380_7778208_3030402,4380_957 -4380_78015,287,4380_59075,Pineview,91060-00012-1,0,4380_7778208_3030402,4380_957 -4380_78015,286,4380_59076,Pineview,91062-00010-1,0,4380_7778208_3030402,4380_957 -4380_78015,291,4380_59077,Pineview,91854-00013-1,0,4380_7778208_3030405,4380_959 -4380_78015,289,4380_59078,Pineview,91058-00014-1,0,4380_7778208_3030402,4380_957 -4380_78015,292,4380_59079,Pineview,91063-00016-1,0,4380_7778208_3030402,4380_957 -4380_77950,293,4380_5908,Blanchardstown,54042-00017-1,1,4380_7778208_1050102,4380_61 -4380_78015,290,4380_59080,Pineview,91065-00015-1,0,4380_7778208_3030402,4380_957 -4380_78015,294,4380_59081,Pineview,91061-00018-1,0,4380_7778208_3030402,4380_957 -4380_78015,295,4380_59082,Pineview,91059-00019-1,0,4380_7778208_3030402,4380_957 -4380_78015,293,4380_59083,Pineview,91057-00017-1,0,4380_7778208_3030402,4380_957 -4380_78015,296,4380_59084,Pineview,91855-00021-1,0,4380_7778208_3030405,4380_959 -4380_77950,294,4380_5909,Blanchardstown,54040-00018-1,1,4380_7778208_1050102,4380_61 -4380_78015,285,4380_59090,Pineview,92048-00009-1,0,4380_7778208_3030406,4380_954 -4380_78015,288,4380_59092,Pineview,92044-00011-1,0,4380_7778208_3030406,4380_954 -4380_78015,287,4380_59093,Pineview,92046-00012-1,0,4380_7778208_3030406,4380_954 -4380_78015,286,4380_59094,Pineview,92050-00010-1,0,4380_7778208_3030406,4380_954 -4380_78015,291,4380_59095,Pineview,90810-00013-1,0,4380_7778208_3030401,4380_957 -4380_78015,289,4380_59096,Pineview,92052-00014-1,0,4380_7778208_3030406,4380_954 -4380_78015,292,4380_59097,Pineview,92051-00016-1,0,4380_7778208_3030406,4380_954 -4380_78015,290,4380_59098,Pineview,92049-00015-1,0,4380_7778208_3030406,4380_954 -4380_78015,294,4380_59099,Pineview,92047-00018-1,0,4380_7778208_3030406,4380_954 -4380_78113,294,4380_591,Dundalk,49859-00018-1,0,4380_7778208_1000905,4380_10 -4380_77950,296,4380_5910,Blanchardstown,4739-00021-1,1,4380_7778208_1050102,4380_69 -4380_78015,295,4380_59100,Pineview,92053-00019-1,0,4380_7778208_3030406,4380_954 -4380_78015,293,4380_59101,Pineview,92045-00017-1,0,4380_7778208_3030406,4380_954 -4380_78015,296,4380_59102,Pineview,90811-00021-1,0,4380_7778208_3030401,4380_957 -4380_78015,297,4380_59109,Pineview,91068-00008-1,0,4380_7778208_3030402,4380_954 -4380_78015,285,4380_59110,Pineview,91301-00009-1,0,4380_7778208_3030403,4380_957 -4380_78015,288,4380_59112,Pineview,91303-00011-1,0,4380_7778208_3030403,4380_957 -4380_78015,287,4380_59113,Pineview,91299-00012-1,0,4380_7778208_3030403,4380_957 -4380_78015,286,4380_59114,Pineview,91305-00010-1,0,4380_7778208_3030403,4380_957 -4380_78015,291,4380_59115,Pineview,92054-00013-1,0,4380_7778208_3030406,4380_959 -4380_78015,289,4380_59116,Pineview,91307-00014-1,0,4380_7778208_3030403,4380_957 -4380_78015,292,4380_59117,Pineview,91306-00016-1,0,4380_7778208_3030403,4380_957 -4380_78015,290,4380_59118,Pineview,91302-00015-1,0,4380_7778208_3030403,4380_957 -4380_78015,294,4380_59119,Pineview,91300-00018-1,0,4380_7778208_3030403,4380_957 -4380_78015,295,4380_59120,Pineview,91308-00019-1,0,4380_7778208_3030403,4380_957 -4380_78015,293,4380_59121,Pineview,91304-00017-1,0,4380_7778208_3030403,4380_957 -4380_78015,296,4380_59122,Pineview,92055-00021-1,0,4380_7778208_3030406,4380_959 -4380_78015,285,4380_59128,Pineview,91862-00009-1,0,4380_7778208_3030405,4380_955 -4380_78015,288,4380_59130,Pineview,91864-00011-1,0,4380_7778208_3030405,4380_955 -4380_78015,287,4380_59131,Pineview,91860-00012-1,0,4380_7778208_3030405,4380_955 -4380_78015,286,4380_59132,Pineview,91858-00010-1,0,4380_7778208_3030405,4380_955 -4380_78015,291,4380_59133,Pineview,91592-00013-1,0,4380_7778208_3030404,4380_960 -4380_78015,289,4380_59134,Pineview,91866-00014-1,0,4380_7778208_3030405,4380_955 -4380_78015,292,4380_59135,Pineview,91859-00016-1,0,4380_7778208_3030405,4380_955 -4380_78015,290,4380_59136,Pineview,91863-00015-1,0,4380_7778208_3030405,4380_955 -4380_78015,294,4380_59137,Pineview,91861-00018-1,0,4380_7778208_3030405,4380_955 -4380_78015,295,4380_59138,Pineview,91867-00019-1,0,4380_7778208_3030405,4380_955 -4380_78015,293,4380_59139,Pineview,91865-00017-1,0,4380_7778208_3030405,4380_955 -4380_78015,296,4380_59140,Pineview,91593-00021-1,0,4380_7778208_3030404,4380_960 -4380_78015,297,4380_59147,Pineview,90819-00008-1,0,4380_7778208_3030401,4380_955 -4380_78015,285,4380_59148,Pineview,90817-00009-1,0,4380_7778208_3030401,4380_954 -4380_78015,288,4380_59150,Pineview,90815-00011-1,0,4380_7778208_3030401,4380_954 -4380_78015,287,4380_59151,Pineview,90822-00012-1,0,4380_7778208_3030401,4380_954 -4380_78015,286,4380_59152,Pineview,90820-00010-1,0,4380_7778208_3030401,4380_954 -4380_78015,291,4380_59153,Pineview,91080-00013-1,0,4380_7778208_3030402,4380_957 -4380_78015,289,4380_59154,Pineview,90824-00014-1,0,4380_7778208_3030401,4380_954 -4380_78015,292,4380_59155,Pineview,90821-00016-1,0,4380_7778208_3030401,4380_954 -4380_78015,290,4380_59156,Pineview,90818-00015-1,0,4380_7778208_3030401,4380_954 -4380_78015,294,4380_59157,Pineview,90823-00018-1,0,4380_7778208_3030401,4380_954 -4380_78015,295,4380_59158,Pineview,90825-00019-1,0,4380_7778208_3030401,4380_954 -4380_78015,293,4380_59159,Pineview,90816-00017-1,0,4380_7778208_3030401,4380_954 -4380_78015,296,4380_59160,Pineview,91081-00021-1,0,4380_7778208_3030402,4380_957 -4380_78015,285,4380_59166,Pineview,91602-00009-1,0,4380_7778208_3030404,4380_955 -4380_78015,288,4380_59168,Pineview,91600-00011-1,0,4380_7778208_3030404,4380_955 -4380_78015,287,4380_59169,Pineview,91594-00012-1,0,4380_7778208_3030404,4380_955 -4380_78015,286,4380_59170,Pineview,91598-00010-1,0,4380_7778208_3030404,4380_955 -4380_78015,291,4380_59171,Pineview,91319-00013-1,0,4380_7778208_3030403,4380_960 -4380_78015,289,4380_59172,Pineview,91596-00014-1,0,4380_7778208_3030404,4380_955 -4380_78015,292,4380_59173,Pineview,91599-00016-1,0,4380_7778208_3030404,4380_955 -4380_78015,290,4380_59174,Pineview,91603-00015-1,0,4380_7778208_3030404,4380_955 -4380_78015,294,4380_59175,Pineview,91595-00018-1,0,4380_7778208_3030404,4380_955 -4380_78015,295,4380_59176,Pineview,91597-00019-1,0,4380_7778208_3030404,4380_955 -4380_78015,293,4380_59177,Pineview,91601-00017-1,0,4380_7778208_3030404,4380_955 -4380_78015,296,4380_59178,Pineview,91320-00021-1,0,4380_7778208_3030403,4380_960 -4380_77950,285,4380_5918,Blanchardstown,54266-00009-1,1,4380_7778208_1051102,4380_63 -4380_78015,297,4380_59180,Pineview,91604-00008-1,0,4380_7778208_3030404,4380_954 -4380_78015,285,4380_59186,Pineview,91082-00009-1,0,4380_7778208_3030402,4380_954 -4380_78015,288,4380_59188,Pineview,91090-00011-1,0,4380_7778208_3030402,4380_954 -4380_78015,287,4380_59189,Pineview,91084-00012-1,0,4380_7778208_3030402,4380_954 -4380_77950,286,4380_5919,Blanchardstown,54268-00010-1,1,4380_7778208_1051102,4380_63 -4380_78015,286,4380_59190,Pineview,91088-00010-1,0,4380_7778208_3030402,4380_954 -4380_78015,291,4380_59191,Pineview,91878-00013-1,0,4380_7778208_3030405,4380_957 -4380_78015,289,4380_59192,Pineview,91086-00014-1,0,4380_7778208_3030402,4380_954 -4380_78015,292,4380_59193,Pineview,91089-00016-1,0,4380_7778208_3030402,4380_954 -4380_78015,290,4380_59194,Pineview,91083-00015-1,0,4380_7778208_3030402,4380_954 -4380_78015,294,4380_59195,Pineview,91085-00018-1,0,4380_7778208_3030402,4380_954 -4380_78015,295,4380_59196,Pineview,91087-00019-1,0,4380_7778208_3030402,4380_954 -4380_78015,293,4380_59197,Pineview,91091-00017-1,0,4380_7778208_3030402,4380_954 -4380_78015,296,4380_59198,Pineview,91879-00021-1,0,4380_7778208_3030405,4380_957 -4380_78113,295,4380_592,Dundalk,49853-00019-1,0,4380_7778208_1000905,4380_10 -4380_77950,297,4380_5920,Blanchardstown,54363-00008-1,1,4380_7778208_1051103,4380_64 -4380_78015,297,4380_59200,Pineview,91092-00008-1,0,4380_7778208_3030402,4380_955 -4380_78015,285,4380_59206,Pineview,92074-00009-1,0,4380_7778208_3030406,4380_955 -4380_78015,288,4380_59208,Pineview,92076-00011-1,0,4380_7778208_3030406,4380_955 -4380_78015,287,4380_59209,Pineview,92068-00012-1,0,4380_7778208_3030406,4380_955 -4380_77950,288,4380_5921,Blanchardstown,54272-00011-1,1,4380_7778208_1051102,4380_63 -4380_78015,286,4380_59210,Pineview,92070-00010-1,0,4380_7778208_3030406,4380_955 -4380_78015,291,4380_59211,Pineview,90837-00013-1,0,4380_7778208_3030401,4380_960 -4380_78015,289,4380_59212,Pineview,92072-00014-1,0,4380_7778208_3030406,4380_955 -4380_78015,292,4380_59213,Pineview,92071-00016-1,0,4380_7778208_3030406,4380_955 -4380_78015,290,4380_59214,Pineview,92075-00015-1,0,4380_7778208_3030406,4380_955 -4380_78015,294,4380_59215,Pineview,92069-00018-1,0,4380_7778208_3030406,4380_955 -4380_78015,295,4380_59216,Pineview,92073-00019-1,0,4380_7778208_3030406,4380_955 -4380_78015,293,4380_59217,Pineview,92077-00017-1,0,4380_7778208_3030406,4380_955 -4380_78015,296,4380_59218,Pineview,90838-00021-1,0,4380_7778208_3030401,4380_960 -4380_77950,287,4380_5922,Blanchardstown,54270-00012-1,1,4380_7778208_1051102,4380_63 -4380_78015,297,4380_59225,Pineview,91330-00008-1,0,4380_7778208_3030403,4380_954 -4380_78015,285,4380_59226,Pineview,91324-00009-1,0,4380_7778208_3030403,4380_957 -4380_78015,288,4380_59228,Pineview,91331-00011-1,0,4380_7778208_3030403,4380_957 -4380_78015,287,4380_59229,Pineview,91326-00012-1,0,4380_7778208_3030403,4380_957 -4380_77950,289,4380_5923,Blanchardstown,54276-00014-1,1,4380_7778208_1051102,4380_63 -4380_78015,286,4380_59230,Pineview,91328-00010-1,0,4380_7778208_3030403,4380_957 -4380_78015,291,4380_59231,Pineview,92078-00013-1,0,4380_7778208_3030406,4380_959 -4380_78015,289,4380_59232,Pineview,91333-00014-1,0,4380_7778208_3030403,4380_957 -4380_78015,292,4380_59233,Pineview,91329-00016-1,0,4380_7778208_3030403,4380_957 -4380_78015,290,4380_59234,Pineview,91325-00015-1,0,4380_7778208_3030403,4380_957 -4380_78015,294,4380_59235,Pineview,91327-00018-1,0,4380_7778208_3030403,4380_957 -4380_78015,295,4380_59236,Pineview,91334-00019-1,0,4380_7778208_3030403,4380_957 -4380_78015,293,4380_59237,Pineview,91332-00017-1,0,4380_7778208_3030403,4380_957 -4380_78015,296,4380_59238,Pineview,92079-00021-1,0,4380_7778208_3030406,4380_959 -4380_77950,290,4380_5924,Blanchardstown,54267-00015-1,1,4380_7778208_1051102,4380_63 -4380_78015,285,4380_59244,Pineview,91884-00009-1,0,4380_7778208_3030405,4380_955 -4380_78015,288,4380_59246,Pineview,91888-00011-1,0,4380_7778208_3030405,4380_955 -4380_78015,287,4380_59247,Pineview,91890-00012-1,0,4380_7778208_3030405,4380_955 -4380_78015,286,4380_59248,Pineview,91886-00010-1,0,4380_7778208_3030405,4380_955 -4380_78015,291,4380_59249,Pineview,91618-00013-1,0,4380_7778208_3030404,4380_960 -4380_77950,291,4380_5925,Blanchardstown,54274-00013-1,1,4380_7778208_1051102,4380_67 -4380_78015,289,4380_59250,Pineview,91882-00014-1,0,4380_7778208_3030405,4380_955 -4380_78015,292,4380_59251,Pineview,91887-00016-1,0,4380_7778208_3030405,4380_955 -4380_78015,290,4380_59252,Pineview,91885-00015-1,0,4380_7778208_3030405,4380_955 -4380_78015,294,4380_59253,Pineview,91891-00018-1,0,4380_7778208_3030405,4380_955 -4380_78015,295,4380_59254,Pineview,91883-00019-1,0,4380_7778208_3030405,4380_955 -4380_78015,293,4380_59255,Pineview,91889-00017-1,0,4380_7778208_3030405,4380_955 -4380_78015,296,4380_59256,Pineview,91619-00021-1,0,4380_7778208_3030404,4380_960 -4380_78015,297,4380_59258,Pineview,90839-00008-1,0,4380_7778208_3030401,4380_955 -4380_77950,292,4380_5926,Blanchardstown,54269-00016-1,1,4380_7778208_1051102,4380_63 -4380_78015,285,4380_59264,Pineview,90846-00009-1,0,4380_7778208_3030401,4380_954 -4380_78015,288,4380_59266,Pineview,90850-00011-1,0,4380_7778208_3030401,4380_954 -4380_78015,287,4380_59267,Pineview,90848-00012-1,0,4380_7778208_3030401,4380_954 -4380_78015,286,4380_59268,Pineview,90844-00010-1,0,4380_7778208_3030401,4380_954 -4380_78015,291,4380_59269,Pineview,91106-00013-1,0,4380_7778208_3030402,4380_957 -4380_77950,293,4380_5927,Blanchardstown,54273-00017-1,1,4380_7778208_1051102,4380_63 -4380_78015,289,4380_59270,Pineview,90842-00014-1,0,4380_7778208_3030401,4380_954 -4380_78015,292,4380_59271,Pineview,90845-00016-1,0,4380_7778208_3030401,4380_954 -4380_78015,290,4380_59272,Pineview,90847-00015-1,0,4380_7778208_3030401,4380_954 -4380_78015,294,4380_59273,Pineview,90849-00018-1,0,4380_7778208_3030401,4380_954 -4380_78015,295,4380_59274,Pineview,90843-00019-1,0,4380_7778208_3030401,4380_954 -4380_78015,293,4380_59275,Pineview,90851-00017-1,0,4380_7778208_3030401,4380_954 -4380_78015,296,4380_59276,Pineview,91107-00021-1,0,4380_7778208_3030402,4380_957 -4380_78015,297,4380_59278,Pineview,91620-00008-1,0,4380_7778208_3030404,4380_954 -4380_77950,294,4380_5928,Blanchardstown,54271-00018-1,1,4380_7778208_1051102,4380_63 -4380_78015,285,4380_59284,Pineview,91621-00009-1,0,4380_7778208_3030404,4380_955 -4380_78015,288,4380_59286,Pineview,91629-00011-1,0,4380_7778208_3030404,4380_955 -4380_78015,287,4380_59287,Pineview,91623-00012-1,0,4380_7778208_3030404,4380_955 -4380_78015,286,4380_59288,Pineview,91627-00010-1,0,4380_7778208_3030404,4380_955 -4380_78015,291,4380_59289,Pineview,91346-00013-1,0,4380_7778208_3030403,4380_960 -4380_77950,295,4380_5929,Blanchardstown,54277-00019-1,1,4380_7778208_1051102,4380_63 -4380_78015,289,4380_59290,Pineview,91625-00014-1,0,4380_7778208_3030404,4380_955 -4380_78015,292,4380_59291,Pineview,91628-00016-1,0,4380_7778208_3030404,4380_955 -4380_78015,290,4380_59292,Pineview,91622-00015-1,0,4380_7778208_3030404,4380_955 -4380_78015,294,4380_59293,Pineview,91624-00018-1,0,4380_7778208_3030404,4380_955 -4380_78015,295,4380_59294,Pineview,91626-00019-1,0,4380_7778208_3030404,4380_955 -4380_78015,293,4380_59295,Pineview,91630-00017-1,0,4380_7778208_3030404,4380_955 -4380_78015,296,4380_59296,Pineview,91347-00021-1,0,4380_7778208_3030403,4380_960 -4380_78113,296,4380_593,Dundalk,49855-00021-1,0,4380_7778208_1000905,4380_13 -4380_77950,296,4380_5930,Blanchardstown,54275-00021-1,1,4380_7778208_1051102,4380_67 -4380_78015,297,4380_59303,Pineview,91112-00008-1,0,4380_7778208_3030402,4380_955 -4380_78015,285,4380_59304,Pineview,91117-00009-1,0,4380_7778208_3030402,4380_954 -4380_78015,288,4380_59306,Pineview,91115-00011-1,0,4380_7778208_3030402,4380_954 -4380_78015,287,4380_59307,Pineview,91108-00012-1,0,4380_7778208_3030402,4380_954 -4380_78015,286,4380_59308,Pineview,91110-00010-1,0,4380_7778208_3030402,4380_954 -4380_78015,291,4380_59309,Pineview,91902-00013-1,0,4380_7778208_3030405,4380_957 -4380_78015,289,4380_59310,Pineview,91113-00014-1,0,4380_7778208_3030402,4380_954 -4380_78015,292,4380_59311,Pineview,91111-00016-1,0,4380_7778208_3030402,4380_954 -4380_78015,290,4380_59312,Pineview,91118-00015-1,0,4380_7778208_3030402,4380_954 -4380_78015,294,4380_59313,Pineview,91109-00018-1,0,4380_7778208_3030402,4380_954 -4380_78015,295,4380_59314,Pineview,91114-00019-1,0,4380_7778208_3030402,4380_954 -4380_78015,293,4380_59315,Pineview,91116-00017-1,0,4380_7778208_3030402,4380_954 -4380_78015,296,4380_59316,Pineview,91903-00021-1,0,4380_7778208_3030405,4380_957 -4380_77950,285,4380_5932,Blanchardstown,4475-00009-1,1,4380_7778208_1050101,4380_68 -4380_78015,285,4380_59322,Pineview,92096-00009-1,0,4380_7778208_3030406,4380_955 -4380_78015,288,4380_59324,Pineview,92094-00011-1,0,4380_7778208_3030406,4380_955 -4380_78015,287,4380_59325,Pineview,92098-00012-1,0,4380_7778208_3030406,4380_955 -4380_78015,286,4380_59326,Pineview,92092-00010-1,0,4380_7778208_3030406,4380_955 -4380_78015,291,4380_59327,Pineview,90863-00013-1,0,4380_7778208_3030401,4380_960 -4380_78015,289,4380_59328,Pineview,92100-00014-1,0,4380_7778208_3030406,4380_955 -4380_78015,292,4380_59329,Pineview,92093-00016-1,0,4380_7778208_3030406,4380_955 -4380_77950,286,4380_5933,Blanchardstown,4489-00010-1,1,4380_7778208_1050101,4380_68 -4380_78015,290,4380_59330,Pineview,92097-00015-1,0,4380_7778208_3030406,4380_955 -4380_78015,294,4380_59331,Pineview,92099-00018-1,0,4380_7778208_3030406,4380_955 -4380_78015,295,4380_59332,Pineview,92101-00019-1,0,4380_7778208_3030406,4380_955 -4380_78015,293,4380_59333,Pineview,92095-00017-1,0,4380_7778208_3030406,4380_955 -4380_78015,296,4380_59334,Pineview,90864-00021-1,0,4380_7778208_3030401,4380_960 -4380_78015,297,4380_59336,Pineview,91348-00008-1,0,4380_7778208_3030403,4380_954 -4380_77950,288,4380_5934,Blanchardstown,4531-00011-1,1,4380_7778208_1050101,4380_68 -4380_78015,285,4380_59342,Pineview,91353-00009-1,0,4380_7778208_3030403,4380_954 -4380_78015,288,4380_59344,Pineview,91359-00011-1,0,4380_7778208_3030403,4380_954 -4380_78015,287,4380_59345,Pineview,91357-00012-1,0,4380_7778208_3030403,4380_954 -4380_78015,286,4380_59346,Pineview,91355-00010-1,0,4380_7778208_3030403,4380_954 -4380_78015,291,4380_59347,Pineview,92102-00013-1,0,4380_7778208_3030406,4380_957 -4380_78015,289,4380_59348,Pineview,91351-00014-1,0,4380_7778208_3030403,4380_954 -4380_78015,292,4380_59349,Pineview,91356-00016-1,0,4380_7778208_3030403,4380_954 -4380_77950,287,4380_5935,Blanchardstown,4559-00012-1,1,4380_7778208_1050101,4380_68 -4380_78015,290,4380_59350,Pineview,91354-00015-1,0,4380_7778208_3030403,4380_954 -4380_78015,294,4380_59351,Pineview,91358-00018-1,0,4380_7778208_3030403,4380_954 -4380_78015,295,4380_59352,Pineview,91352-00019-1,0,4380_7778208_3030403,4380_954 -4380_78015,293,4380_59353,Pineview,91360-00017-1,0,4380_7778208_3030403,4380_954 -4380_78015,296,4380_59354,Pineview,92103-00021-1,0,4380_7778208_3030406,4380_957 -4380_78015,297,4380_59356,Pineview,90865-00008-1,0,4380_7778208_3030401,4380_955 -4380_77950,291,4380_5936,Blanchardstown,53965-00013-1,1,4380_7778208_1050101,4380_65 -4380_78015,285,4380_59362,Pineview,91910-00009-1,0,4380_7778208_3030405,4380_955 -4380_78015,288,4380_59364,Pineview,91908-00011-1,0,4380_7778208_3030405,4380_955 -4380_78015,287,4380_59365,Pineview,91906-00012-1,0,4380_7778208_3030405,4380_955 -4380_78015,286,4380_59366,Pineview,91912-00010-1,0,4380_7778208_3030405,4380_955 -4380_78015,291,4380_59367,Pineview,91644-00013-1,0,4380_7778208_3030404,4380_960 -4380_78015,289,4380_59368,Pineview,91914-00014-1,0,4380_7778208_3030405,4380_955 -4380_78015,292,4380_59369,Pineview,91913-00016-1,0,4380_7778208_3030405,4380_955 -4380_77950,295,4380_5937,Blanchardstown,4447-00019-1,1,4380_7778208_1050101,4380_68 -4380_78015,290,4380_59370,Pineview,91911-00015-1,0,4380_7778208_3030405,4380_955 -4380_78015,294,4380_59371,Pineview,91907-00018-1,0,4380_7778208_3030405,4380_955 -4380_78015,295,4380_59372,Pineview,91915-00019-1,0,4380_7778208_3030405,4380_955 -4380_78015,293,4380_59373,Pineview,91909-00017-1,0,4380_7778208_3030405,4380_955 -4380_78015,296,4380_59374,Pineview,91645-00021-1,0,4380_7778208_3030404,4380_960 -4380_78015,297,4380_59381,Pineview,91646-00008-1,0,4380_7778208_3030404,4380_954 -4380_78015,285,4380_59382,Pineview,90874-00009-1,0,4380_7778208_3030401,4380_957 -4380_78015,288,4380_59384,Pineview,90876-00011-1,0,4380_7778208_3030401,4380_957 -4380_78015,287,4380_59385,Pineview,90870-00012-1,0,4380_7778208_3030401,4380_957 -4380_78015,286,4380_59386,Pineview,90868-00010-1,0,4380_7778208_3030401,4380_957 -4380_78015,291,4380_59387,Pineview,91132-00013-1,0,4380_7778208_3030402,4380_959 -4380_78015,289,4380_59388,Pineview,90872-00014-1,0,4380_7778208_3030401,4380_957 -4380_78015,292,4380_59389,Pineview,90869-00016-1,0,4380_7778208_3030401,4380_957 -4380_78015,290,4380_59390,Pineview,90875-00015-1,0,4380_7778208_3030401,4380_957 -4380_78015,294,4380_59391,Pineview,90871-00018-1,0,4380_7778208_3030401,4380_957 -4380_78015,295,4380_59392,Pineview,90873-00019-1,0,4380_7778208_3030401,4380_957 -4380_78015,293,4380_59393,Pineview,90877-00017-1,0,4380_7778208_3030401,4380_957 -4380_78015,296,4380_59394,Pineview,91133-00021-1,0,4380_7778208_3030402,4380_959 -4380_78015,285,4380_59400,Pineview,91653-00009-1,0,4380_7778208_3030404,4380_955 -4380_78015,288,4380_59402,Pineview,91649-00011-1,0,4380_7778208_3030404,4380_955 -4380_78015,287,4380_59403,Pineview,91647-00012-1,0,4380_7778208_3030404,4380_955 -4380_78015,286,4380_59404,Pineview,91651-00010-1,0,4380_7778208_3030404,4380_955 -4380_78015,291,4380_59405,Pineview,91372-00013-1,0,4380_7778208_3030403,4380_960 -4380_78015,289,4380_59406,Pineview,91655-00014-1,0,4380_7778208_3030404,4380_955 -4380_78015,292,4380_59407,Pineview,91652-00016-1,0,4380_7778208_3030404,4380_955 -4380_78015,290,4380_59408,Pineview,91654-00015-1,0,4380_7778208_3030404,4380_955 -4380_78015,294,4380_59409,Pineview,91648-00018-1,0,4380_7778208_3030404,4380_955 -4380_78015,295,4380_59410,Pineview,91656-00019-1,0,4380_7778208_3030404,4380_955 -4380_78015,293,4380_59411,Pineview,91650-00017-1,0,4380_7778208_3030404,4380_955 -4380_78015,296,4380_59412,Pineview,91373-00021-1,0,4380_7778208_3030403,4380_960 -4380_78015,297,4380_59414,Pineview,91134-00008-1,0,4380_7778208_3030402,4380_955 -4380_78015,285,4380_59420,Pineview,91137-00009-1,0,4380_7778208_3030402,4380_954 -4380_78015,288,4380_59422,Pineview,91143-00011-1,0,4380_7778208_3030402,4380_954 -4380_78015,287,4380_59423,Pineview,91135-00012-1,0,4380_7778208_3030402,4380_954 -4380_78015,286,4380_59424,Pineview,91141-00010-1,0,4380_7778208_3030402,4380_954 -4380_78015,291,4380_59425,Pineview,91926-00013-1,0,4380_7778208_3030405,4380_957 -4380_78015,289,4380_59426,Pineview,91139-00014-1,0,4380_7778208_3030402,4380_954 -4380_78015,292,4380_59427,Pineview,91142-00016-1,0,4380_7778208_3030402,4380_954 -4380_78015,290,4380_59428,Pineview,91138-00015-1,0,4380_7778208_3030402,4380_954 -4380_78015,294,4380_59429,Pineview,91136-00018-1,0,4380_7778208_3030402,4380_954 -4380_77950,289,4380_5943,Blanchardstown,53969-00014-1,1,4380_7778208_1050101,4380_61 -4380_78015,295,4380_59430,Pineview,91140-00019-1,0,4380_7778208_3030402,4380_954 -4380_78015,293,4380_59431,Pineview,91144-00017-1,0,4380_7778208_3030402,4380_954 -4380_78015,296,4380_59432,Pineview,91927-00021-1,0,4380_7778208_3030405,4380_957 -4380_78015,297,4380_59434,Pineview,91374-00008-1,0,4380_7778208_3030403,4380_954 -4380_77950,290,4380_5944,Blanchardstown,53968-00015-1,1,4380_7778208_1050101,4380_61 -4380_78015,285,4380_59440,Pineview,92116-00009-1,0,4380_7778208_3030406,4380_955 -4380_78015,288,4380_59442,Pineview,92118-00011-1,0,4380_7778208_3030406,4380_955 -4380_78015,287,4380_59443,Pineview,92120-00012-1,0,4380_7778208_3030406,4380_955 -4380_78015,286,4380_59444,Pineview,92122-00010-1,0,4380_7778208_3030406,4380_955 -4380_78015,291,4380_59445,Pineview,90889-00013-1,0,4380_7778208_3030401,4380_960 -4380_78015,289,4380_59446,Pineview,92124-00014-1,0,4380_7778208_3030406,4380_955 -4380_78015,292,4380_59447,Pineview,92123-00016-1,0,4380_7778208_3030406,4380_955 -4380_78015,290,4380_59448,Pineview,92117-00015-1,0,4380_7778208_3030406,4380_955 -4380_78015,294,4380_59449,Pineview,92121-00018-1,0,4380_7778208_3030406,4380_955 -4380_77950,292,4380_5945,Blanchardstown,53970-00016-1,1,4380_7778208_1050101,4380_61 -4380_78015,295,4380_59450,Pineview,92125-00019-1,0,4380_7778208_3030406,4380_955 -4380_78015,293,4380_59451,Pineview,92119-00017-1,0,4380_7778208_3030406,4380_955 -4380_78015,296,4380_59452,Pineview,90890-00021-1,0,4380_7778208_3030401,4380_960 -4380_78015,297,4380_59459,Pineview,90891-00008-1,0,4380_7778208_3030401,4380_955 -4380_77950,293,4380_5946,Blanchardstown,53966-00017-1,1,4380_7778208_1050101,4380_61 -4380_78015,285,4380_59460,Pineview,91381-00009-1,0,4380_7778208_3030403,4380_954 -4380_78015,288,4380_59462,Pineview,91383-00011-1,0,4380_7778208_3030403,4380_954 -4380_78015,287,4380_59463,Pineview,91377-00012-1,0,4380_7778208_3030403,4380_954 -4380_78015,286,4380_59464,Pineview,91379-00010-1,0,4380_7778208_3030403,4380_954 -4380_78015,291,4380_59465,Pineview,92126-00013-1,0,4380_7778208_3030406,4380_957 -4380_78015,289,4380_59466,Pineview,91385-00014-1,0,4380_7778208_3030403,4380_954 -4380_78015,292,4380_59467,Pineview,91380-00016-1,0,4380_7778208_3030403,4380_954 -4380_78015,290,4380_59468,Pineview,91382-00015-1,0,4380_7778208_3030403,4380_954 -4380_78015,294,4380_59469,Pineview,91378-00018-1,0,4380_7778208_3030403,4380_954 -4380_77950,294,4380_5947,Blanchardstown,53967-00018-1,1,4380_7778208_1050101,4380_61 -4380_78015,295,4380_59470,Pineview,91386-00019-1,0,4380_7778208_3030403,4380_954 -4380_78015,293,4380_59471,Pineview,91384-00017-1,0,4380_7778208_3030403,4380_954 -4380_78015,296,4380_59472,Pineview,92127-00021-1,0,4380_7778208_3030406,4380_957 -4380_78015,285,4380_59478,Pineview,91930-00009-1,0,4380_7778208_3030405,4380_955 -4380_77950,296,4380_5948,Blanchardstown,4573-00021-1,1,4380_7778208_1050101,4380_69 -4380_78015,288,4380_59480,Pineview,91936-00011-1,0,4380_7778208_3030405,4380_955 -4380_78015,287,4380_59481,Pineview,91938-00012-1,0,4380_7778208_3030405,4380_955 -4380_78015,286,4380_59482,Pineview,91934-00010-1,0,4380_7778208_3030405,4380_955 -4380_78015,291,4380_59483,Pineview,91670-00013-1,0,4380_7778208_3030404,4380_960 -4380_78015,289,4380_59484,Pineview,91932-00014-1,0,4380_7778208_3030405,4380_955 -4380_78015,292,4380_59485,Pineview,91935-00016-1,0,4380_7778208_3030405,4380_955 -4380_78015,290,4380_59486,Pineview,91931-00015-1,0,4380_7778208_3030405,4380_955 -4380_78015,294,4380_59487,Pineview,91939-00018-1,0,4380_7778208_3030405,4380_955 -4380_78015,295,4380_59488,Pineview,91933-00019-1,0,4380_7778208_3030405,4380_955 -4380_78015,293,4380_59489,Pineview,91937-00017-1,0,4380_7778208_3030405,4380_955 -4380_78015,296,4380_59490,Pineview,91671-00021-1,0,4380_7778208_3030404,4380_960 -4380_78015,297,4380_59492,Pineview,91672-00008-1,0,4380_7778208_3030404,4380_954 -4380_78015,285,4380_59498,Pineview,90900-00009-1,0,4380_7778208_3030401,4380_954 -4380_78113,297,4380_595,Dundalk,49756-00008-1,0,4380_7778208_1000904,4380_10 -4380_78015,288,4380_59500,Pineview,90894-00011-1,0,4380_7778208_3030401,4380_954 -4380_78015,287,4380_59501,Pineview,90896-00012-1,0,4380_7778208_3030401,4380_954 -4380_78015,286,4380_59502,Pineview,90902-00010-1,0,4380_7778208_3030401,4380_954 -4380_78015,291,4380_59503,Pineview,91158-00013-1,0,4380_7778208_3030402,4380_957 -4380_78015,289,4380_59504,Pineview,90898-00014-1,0,4380_7778208_3030401,4380_954 -4380_78015,292,4380_59505,Pineview,90903-00016-1,0,4380_7778208_3030401,4380_954 -4380_78015,290,4380_59506,Pineview,90901-00015-1,0,4380_7778208_3030401,4380_954 -4380_78015,294,4380_59507,Pineview,90897-00018-1,0,4380_7778208_3030401,4380_954 -4380_78015,295,4380_59508,Pineview,90899-00019-1,0,4380_7778208_3030401,4380_954 -4380_78015,293,4380_59509,Pineview,90895-00017-1,0,4380_7778208_3030401,4380_954 -4380_78015,296,4380_59510,Pineview,91159-00021-1,0,4380_7778208_3030402,4380_957 -4380_78015,297,4380_59512,Pineview,91160-00008-1,0,4380_7778208_3030402,4380_955 -4380_78015,285,4380_59518,Pineview,91675-00009-1,0,4380_7778208_3030404,4380_955 -4380_78015,288,4380_59520,Pineview,91681-00011-1,0,4380_7778208_3030404,4380_955 -4380_78015,287,4380_59521,Pineview,91673-00012-1,0,4380_7778208_3030404,4380_955 -4380_78015,286,4380_59522,Pineview,91677-00010-1,0,4380_7778208_3030404,4380_955 -4380_78015,291,4380_59523,Pineview,91398-00013-1,0,4380_7778208_3030403,4380_960 -4380_78015,289,4380_59524,Pineview,91679-00014-1,0,4380_7778208_3030404,4380_955 -4380_78015,292,4380_59525,Pineview,91678-00016-1,0,4380_7778208_3030404,4380_955 -4380_78015,290,4380_59526,Pineview,91676-00015-1,0,4380_7778208_3030404,4380_955 -4380_78015,294,4380_59527,Pineview,91674-00018-1,0,4380_7778208_3030404,4380_955 -4380_78015,295,4380_59528,Pineview,91680-00019-1,0,4380_7778208_3030404,4380_955 -4380_78015,293,4380_59529,Pineview,91682-00017-1,0,4380_7778208_3030404,4380_955 -4380_78015,296,4380_59530,Pineview,91399-00021-1,0,4380_7778208_3030403,4380_960 -4380_78015,297,4380_59537,Pineview,91400-00008-1,0,4380_7778208_3030403,4380_954 -4380_78015,285,4380_59538,Pineview,91169-00009-1,0,4380_7778208_3030402,4380_957 -4380_78015,288,4380_59540,Pineview,91163-00011-1,0,4380_7778208_3030402,4380_957 -4380_78015,287,4380_59541,Pineview,91167-00012-1,0,4380_7778208_3030402,4380_957 -4380_78015,286,4380_59542,Pineview,91165-00010-1,0,4380_7778208_3030402,4380_957 -4380_78015,291,4380_59543,Pineview,91950-00013-1,0,4380_7778208_3030405,4380_959 -4380_78015,289,4380_59544,Pineview,91161-00014-1,0,4380_7778208_3030402,4380_957 -4380_78015,292,4380_59545,Pineview,91166-00016-1,0,4380_7778208_3030402,4380_957 -4380_78015,290,4380_59546,Pineview,91170-00015-1,0,4380_7778208_3030402,4380_957 -4380_78015,294,4380_59547,Pineview,91168-00018-1,0,4380_7778208_3030402,4380_957 -4380_78015,295,4380_59548,Pineview,91162-00019-1,0,4380_7778208_3030402,4380_957 -4380_78015,293,4380_59549,Pineview,91164-00017-1,0,4380_7778208_3030402,4380_957 -4380_78015,296,4380_59550,Pineview,91951-00021-1,0,4380_7778208_3030405,4380_959 -4380_78015,285,4380_59556,Pineview,92144-00009-1,0,4380_7778208_3030406,4380_955 -4380_78015,288,4380_59558,Pineview,92146-00011-1,0,4380_7778208_3030406,4380_955 -4380_78015,287,4380_59559,Pineview,92140-00012-1,0,4380_7778208_3030406,4380_955 -4380_77950,285,4380_5956,Blanchardstown,54368-00009-1,1,4380_7778208_1051103,4380_63 -4380_78015,286,4380_59560,Pineview,92142-00010-1,0,4380_7778208_3030406,4380_955 -4380_78015,291,4380_59561,Pineview,90915-00013-1,0,4380_7778208_3030401,4380_960 -4380_78015,289,4380_59562,Pineview,92148-00014-1,0,4380_7778208_3030406,4380_955 -4380_78015,292,4380_59563,Pineview,92143-00016-1,0,4380_7778208_3030406,4380_955 -4380_78015,290,4380_59564,Pineview,92145-00015-1,0,4380_7778208_3030406,4380_955 -4380_78015,294,4380_59565,Pineview,92141-00018-1,0,4380_7778208_3030406,4380_955 -4380_78015,295,4380_59566,Pineview,92149-00019-1,0,4380_7778208_3030406,4380_955 -4380_78015,293,4380_59567,Pineview,92147-00017-1,0,4380_7778208_3030406,4380_955 -4380_78015,296,4380_59568,Pineview,90916-00021-1,0,4380_7778208_3030401,4380_960 -4380_77950,286,4380_5957,Blanchardstown,54364-00010-1,1,4380_7778208_1051103,4380_63 -4380_78015,297,4380_59570,Pineview,90917-00008-1,0,4380_7778208_3030401,4380_955 -4380_78015,285,4380_59576,Pineview,91405-00009-1,0,4380_7778208_3030403,4380_954 -4380_78015,288,4380_59578,Pineview,91409-00011-1,0,4380_7778208_3030403,4380_954 -4380_78015,287,4380_59579,Pineview,91411-00012-1,0,4380_7778208_3030403,4380_954 -4380_77950,297,4380_5958,Blanchardstown,54465-00008-1,1,4380_7778208_1051104,4380_64 -4380_78015,286,4380_59580,Pineview,91407-00010-1,0,4380_7778208_3030403,4380_954 -4380_78015,291,4380_59581,Pineview,92150-00013-1,0,4380_7778208_3030406,4380_957 -4380_78015,289,4380_59582,Pineview,91403-00014-1,0,4380_7778208_3030403,4380_954 -4380_78015,292,4380_59583,Pineview,91408-00016-1,0,4380_7778208_3030403,4380_954 -4380_78015,290,4380_59584,Pineview,91406-00015-1,0,4380_7778208_3030403,4380_954 -4380_78015,294,4380_59585,Pineview,91412-00018-1,0,4380_7778208_3030403,4380_954 -4380_78015,295,4380_59586,Pineview,91404-00019-1,0,4380_7778208_3030403,4380_954 -4380_78015,293,4380_59587,Pineview,91410-00017-1,0,4380_7778208_3030403,4380_954 -4380_78015,296,4380_59588,Pineview,92151-00021-1,0,4380_7778208_3030406,4380_957 -4380_77950,288,4380_5959,Blanchardstown,54366-00011-1,1,4380_7778208_1051103,4380_63 -4380_78015,297,4380_59590,Pineview,91696-00008-1,0,4380_7778208_3030404,4380_954 -4380_78015,285,4380_59596,Pineview,91962-00009-1,0,4380_7778208_3030405,4380_955 -4380_78015,288,4380_59598,Pineview,91958-00011-1,0,4380_7778208_3030405,4380_955 -4380_78015,287,4380_59599,Pineview,91960-00012-1,0,4380_7778208_3030405,4380_955 -4380_77950,287,4380_5960,Blanchardstown,54374-00012-1,1,4380_7778208_1051103,4380_63 -4380_78015,286,4380_59600,Pineview,91956-00010-1,0,4380_7778208_3030405,4380_955 -4380_78015,291,4380_59601,Pineview,91697-00013-1,0,4380_7778208_3030404,4380_960 -4380_78015,289,4380_59602,Pineview,91954-00014-1,0,4380_7778208_3030405,4380_955 -4380_78015,292,4380_59603,Pineview,91957-00016-1,0,4380_7778208_3030405,4380_955 -4380_78015,290,4380_59604,Pineview,91963-00015-1,0,4380_7778208_3030405,4380_955 -4380_78015,294,4380_59605,Pineview,91961-00018-1,0,4380_7778208_3030405,4380_955 -4380_78015,295,4380_59606,Pineview,91955-00019-1,0,4380_7778208_3030405,4380_955 -4380_78015,293,4380_59607,Pineview,91959-00017-1,0,4380_7778208_3030405,4380_955 -4380_78015,296,4380_59608,Pineview,91698-00021-1,0,4380_7778208_3030404,4380_960 -4380_77950,289,4380_5961,Blanchardstown,54370-00014-1,1,4380_7778208_1051103,4380_63 -4380_78015,297,4380_59615,Pineview,91186-00008-1,0,4380_7778208_3030402,4380_954 -4380_78015,285,4380_59616,Pineview,90929-00009-1,0,4380_7778208_3030401,4380_957 -4380_78015,288,4380_59618,Pineview,90923-00011-1,0,4380_7778208_3030401,4380_957 -4380_78015,287,4380_59619,Pineview,90927-00012-1,0,4380_7778208_3030401,4380_957 -4380_77950,290,4380_5962,Blanchardstown,54369-00015-1,1,4380_7778208_1051103,4380_63 -4380_78015,286,4380_59620,Pineview,90921-00010-1,0,4380_7778208_3030401,4380_957 -4380_78015,291,4380_59621,Pineview,91184-00013-1,0,4380_7778208_3030402,4380_959 -4380_78015,289,4380_59622,Pineview,90925-00014-1,0,4380_7778208_3030401,4380_957 -4380_78015,292,4380_59623,Pineview,90922-00016-1,0,4380_7778208_3030401,4380_957 -4380_78015,290,4380_59624,Pineview,90930-00015-1,0,4380_7778208_3030401,4380_957 -4380_78015,294,4380_59625,Pineview,90928-00018-1,0,4380_7778208_3030401,4380_957 -4380_78015,295,4380_59626,Pineview,90926-00019-1,0,4380_7778208_3030401,4380_957 -4380_78015,293,4380_59627,Pineview,90924-00017-1,0,4380_7778208_3030401,4380_957 -4380_78015,296,4380_59628,Pineview,91185-00021-1,0,4380_7778208_3030402,4380_959 -4380_77950,291,4380_5963,Blanchardstown,54372-00013-1,1,4380_7778208_1051103,4380_67 -4380_78015,285,4380_59634,Pineview,91701-00009-1,0,4380_7778208_3030404,4380_954 -4380_78015,288,4380_59636,Pineview,91703-00011-1,0,4380_7778208_3030404,4380_954 -4380_78015,287,4380_59637,Pineview,91705-00012-1,0,4380_7778208_3030404,4380_954 -4380_78015,286,4380_59638,Pineview,91699-00010-1,0,4380_7778208_3030404,4380_954 -4380_78015,291,4380_59639,Pineview,91424-00013-1,0,4380_7778208_3030403,4380_957 -4380_77950,292,4380_5964,Blanchardstown,54365-00016-1,1,4380_7778208_1051103,4380_63 -4380_78015,289,4380_59640,Pineview,91707-00014-1,0,4380_7778208_3030404,4380_954 -4380_78015,292,4380_59641,Pineview,91700-00016-1,0,4380_7778208_3030404,4380_954 -4380_78015,290,4380_59642,Pineview,91702-00015-1,0,4380_7778208_3030404,4380_954 -4380_78015,294,4380_59643,Pineview,91706-00018-1,0,4380_7778208_3030404,4380_954 -4380_78015,295,4380_59644,Pineview,91708-00019-1,0,4380_7778208_3030404,4380_954 -4380_78015,293,4380_59645,Pineview,91704-00017-1,0,4380_7778208_3030404,4380_954 -4380_78015,296,4380_59646,Pineview,91425-00021-1,0,4380_7778208_3030403,4380_957 -4380_78015,297,4380_59648,Pineview,91426-00008-1,0,4380_7778208_3030403,4380_954 -4380_77950,293,4380_5965,Blanchardstown,54367-00017-1,1,4380_7778208_1051103,4380_63 -4380_78015,285,4380_59654,Pineview,91191-00009-1,0,4380_7778208_3030402,4380_954 -4380_78015,288,4380_59656,Pineview,91193-00011-1,0,4380_7778208_3030402,4380_954 -4380_78015,287,4380_59657,Pineview,91189-00012-1,0,4380_7778208_3030402,4380_954 -4380_78015,286,4380_59658,Pineview,91195-00010-1,0,4380_7778208_3030402,4380_954 -4380_78015,291,4380_59659,Pineview,91974-00013-1,0,4380_7778208_3030405,4380_957 -4380_77950,294,4380_5966,Blanchardstown,54375-00018-1,1,4380_7778208_1051103,4380_63 -4380_78015,289,4380_59660,Pineview,91187-00014-1,0,4380_7778208_3030402,4380_954 -4380_78015,292,4380_59661,Pineview,91196-00016-1,0,4380_7778208_3030402,4380_954 -4380_78015,290,4380_59662,Pineview,91192-00015-1,0,4380_7778208_3030402,4380_954 -4380_78015,294,4380_59663,Pineview,91190-00018-1,0,4380_7778208_3030402,4380_954 -4380_78015,295,4380_59664,Pineview,91188-00019-1,0,4380_7778208_3030402,4380_954 -4380_78015,293,4380_59665,Pineview,91194-00017-1,0,4380_7778208_3030402,4380_954 -4380_78015,296,4380_59666,Pineview,91975-00021-1,0,4380_7778208_3030405,4380_957 -4380_78015,297,4380_59668,Pineview,90931-00008-1,0,4380_7778208_3030401,4380_954 -4380_77950,295,4380_5967,Blanchardstown,54371-00019-1,1,4380_7778208_1051103,4380_63 -4380_78015,285,4380_59674,Pineview,92166-00009-1,0,4380_7778208_3030406,4380_954 -4380_78015,288,4380_59676,Pineview,92168-00011-1,0,4380_7778208_3030406,4380_954 -4380_78015,287,4380_59677,Pineview,92170-00012-1,0,4380_7778208_3030406,4380_954 -4380_78015,286,4380_59678,Pineview,92172-00010-1,0,4380_7778208_3030406,4380_954 -4380_78015,291,4380_59679,Pineview,90942-00013-1,0,4380_7778208_3030401,4380_957 -4380_77950,296,4380_5968,Blanchardstown,54373-00021-1,1,4380_7778208_1051103,4380_67 -4380_78015,289,4380_59680,Pineview,92164-00014-1,0,4380_7778208_3030406,4380_954 -4380_78015,292,4380_59681,Pineview,92173-00016-1,0,4380_7778208_3030406,4380_954 -4380_78015,290,4380_59682,Pineview,92167-00015-1,0,4380_7778208_3030406,4380_954 -4380_78015,294,4380_59683,Pineview,92171-00018-1,0,4380_7778208_3030406,4380_954 -4380_78015,295,4380_59684,Pineview,92165-00019-1,0,4380_7778208_3030406,4380_954 -4380_78015,293,4380_59685,Pineview,92169-00017-1,0,4380_7778208_3030406,4380_954 -4380_78015,296,4380_59686,Pineview,90943-00021-1,0,4380_7778208_3030401,4380_957 -4380_78015,297,4380_59693,Pineview,91722-00008-1,0,4380_7778208_3030404,4380_954 -4380_78015,285,4380_59694,Pineview,91436-00009-1,0,4380_7778208_3030403,4380_957 -4380_78015,288,4380_59696,Pineview,91434-00011-1,0,4380_7778208_3030403,4380_957 -4380_78015,287,4380_59697,Pineview,91430-00012-1,0,4380_7778208_3030403,4380_957 -4380_78015,286,4380_59698,Pineview,91438-00010-1,0,4380_7778208_3030403,4380_957 -4380_78015,291,4380_59699,Pineview,92174-00013-1,0,4380_7778208_3030406,4380_959 -4380_77950,285,4380_5970,Blanchardstown,4629-00009-1,1,4380_7778208_1050102,4380_68 -4380_78015,289,4380_59700,Pineview,91432-00014-1,0,4380_7778208_3030403,4380_957 -4380_78015,292,4380_59701,Pineview,91439-00016-1,0,4380_7778208_3030403,4380_957 -4380_78015,290,4380_59702,Pineview,91437-00015-1,0,4380_7778208_3030403,4380_957 -4380_78015,294,4380_59703,Pineview,91431-00018-1,0,4380_7778208_3030403,4380_957 -4380_78015,295,4380_59704,Pineview,91433-00019-1,0,4380_7778208_3030403,4380_957 -4380_78015,293,4380_59705,Pineview,91435-00017-1,0,4380_7778208_3030403,4380_957 -4380_78015,296,4380_59706,Pineview,92175-00021-1,0,4380_7778208_3030406,4380_959 -4380_77950,286,4380_5971,Blanchardstown,4671-00010-1,1,4380_7778208_1050102,4380_68 -4380_78015,285,4380_59712,Pineview,91984-00009-1,0,4380_7778208_3030405,4380_954 -4380_78015,288,4380_59714,Pineview,91980-00011-1,0,4380_7778208_3030405,4380_954 -4380_78015,287,4380_59715,Pineview,91982-00012-1,0,4380_7778208_3030405,4380_954 -4380_78015,286,4380_59716,Pineview,91986-00010-1,0,4380_7778208_3030405,4380_954 -4380_78015,291,4380_59717,Pineview,91723-00013-1,0,4380_7778208_3030404,4380_957 -4380_78015,289,4380_59718,Pineview,91978-00014-1,0,4380_7778208_3030405,4380_954 -4380_78015,292,4380_59719,Pineview,91987-00016-1,0,4380_7778208_3030405,4380_954 -4380_77950,288,4380_5972,Blanchardstown,4685-00011-1,1,4380_7778208_1050102,4380_68 -4380_78015,290,4380_59720,Pineview,91985-00015-1,0,4380_7778208_3030405,4380_954 -4380_78015,294,4380_59721,Pineview,91983-00018-1,0,4380_7778208_3030405,4380_954 -4380_78015,295,4380_59722,Pineview,91979-00019-1,0,4380_7778208_3030405,4380_954 -4380_78015,293,4380_59723,Pineview,91981-00017-1,0,4380_7778208_3030405,4380_954 -4380_78015,296,4380_59724,Pineview,91724-00021-1,0,4380_7778208_3030404,4380_957 -4380_78015,297,4380_59726,Pineview,91210-00008-1,0,4380_7778208_3030402,4380_954 -4380_77950,287,4380_5973,Blanchardstown,4713-00012-1,1,4380_7778208_1050102,4380_68 -4380_78015,285,4380_59732,Pineview,90953-00009-1,0,4380_7778208_3030401,4380_954 -4380_78015,288,4380_59734,Pineview,90951-00011-1,0,4380_7778208_3030401,4380_954 -4380_78015,287,4380_59735,Pineview,90955-00012-1,0,4380_7778208_3030401,4380_954 -4380_78015,286,4380_59736,Pineview,90949-00010-1,0,4380_7778208_3030401,4380_954 -4380_78015,291,4380_59737,Pineview,91211-00013-1,0,4380_7778208_3030402,4380_957 -4380_78015,289,4380_59738,Pineview,90947-00014-1,0,4380_7778208_3030401,4380_954 -4380_78015,292,4380_59739,Pineview,90950-00016-1,0,4380_7778208_3030401,4380_954 -4380_77950,291,4380_5974,Blanchardstown,54049-00013-1,1,4380_7778208_1050102,4380_65 -4380_78015,290,4380_59740,Pineview,90954-00015-1,0,4380_7778208_3030401,4380_954 -4380_78015,294,4380_59741,Pineview,90956-00018-1,0,4380_7778208_3030401,4380_954 -4380_78015,295,4380_59742,Pineview,90948-00019-1,0,4380_7778208_3030401,4380_954 -4380_78015,293,4380_59743,Pineview,90952-00017-1,0,4380_7778208_3030401,4380_954 -4380_78015,296,4380_59744,Pineview,91212-00021-1,0,4380_7778208_3030402,4380_957 -4380_78015,297,4380_59746,Pineview,91440-00008-1,0,4380_7778208_3030403,4380_954 -4380_77950,295,4380_5975,Blanchardstown,4601-00019-1,1,4380_7778208_1050102,4380_68 -4380_78015,285,4380_59752,Pineview,91732-00009-1,0,4380_7778208_3030404,4380_954 -4380_78015,288,4380_59754,Pineview,91734-00011-1,0,4380_7778208_3030404,4380_954 -4380_78015,287,4380_59755,Pineview,91730-00012-1,0,4380_7778208_3030404,4380_954 -4380_78015,286,4380_59756,Pineview,91728-00010-1,0,4380_7778208_3030404,4380_954 -4380_78015,291,4380_59757,Pineview,91451-00013-1,0,4380_7778208_3030403,4380_957 -4380_78015,289,4380_59758,Pineview,91726-00014-1,0,4380_7778208_3030404,4380_954 -4380_78015,292,4380_59759,Pineview,91729-00016-1,0,4380_7778208_3030404,4380_954 -4380_78015,290,4380_59760,Pineview,91733-00015-1,0,4380_7778208_3030404,4380_954 -4380_78015,294,4380_59761,Pineview,91731-00018-1,0,4380_7778208_3030404,4380_954 -4380_78015,295,4380_59762,Pineview,91727-00019-1,0,4380_7778208_3030404,4380_954 -4380_78015,293,4380_59763,Pineview,91735-00017-1,0,4380_7778208_3030404,4380_954 -4380_78015,296,4380_59764,Pineview,91452-00021-1,0,4380_7778208_3030403,4380_957 -4380_78015,297,4380_59771,Pineview,90957-00008-1,0,4380_7778208_3030401,4380_954 -4380_78015,285,4380_59772,Pineview,91216-00009-1,0,4380_7778208_3030402,4380_954 -4380_78015,288,4380_59774,Pineview,91222-00011-1,0,4380_7778208_3030402,4380_954 -4380_78015,287,4380_59775,Pineview,91218-00012-1,0,4380_7778208_3030402,4380_954 -4380_78015,286,4380_59776,Pineview,91214-00010-1,0,4380_7778208_3030402,4380_954 -4380_78015,291,4380_59777,Pineview,91998-00013-1,0,4380_7778208_3030405,4380_957 -4380_78015,289,4380_59778,Pineview,91220-00014-1,0,4380_7778208_3030402,4380_954 -4380_78015,292,4380_59779,Pineview,91215-00016-1,0,4380_7778208_3030402,4380_954 -4380_78015,290,4380_59780,Pineview,91217-00015-1,0,4380_7778208_3030402,4380_954 -4380_78015,294,4380_59781,Pineview,91219-00018-1,0,4380_7778208_3030402,4380_954 -4380_78015,295,4380_59782,Pineview,91221-00019-1,0,4380_7778208_3030402,4380_954 -4380_78015,293,4380_59783,Pineview,91223-00017-1,0,4380_7778208_3030402,4380_954 -4380_78015,296,4380_59784,Pineview,91999-00021-1,0,4380_7778208_3030405,4380_957 -4380_78015,285,4380_59790,Pineview,92196-00009-1,0,4380_7778208_3030406,4380_954 -4380_78015,288,4380_59792,Pineview,92190-00011-1,0,4380_7778208_3030406,4380_954 -4380_78015,287,4380_59793,Pineview,92188-00012-1,0,4380_7778208_3030406,4380_954 -4380_78015,286,4380_59794,Pineview,92192-00010-1,0,4380_7778208_3030406,4380_954 -4380_78015,291,4380_59795,Pineview,90968-00013-1,0,4380_7778208_3030401,4380_957 -4380_78015,289,4380_59796,Pineview,92194-00014-1,0,4380_7778208_3030406,4380_954 -4380_78015,292,4380_59797,Pineview,92193-00016-1,0,4380_7778208_3030406,4380_954 -4380_78015,290,4380_59798,Pineview,92197-00015-1,0,4380_7778208_3030406,4380_954 -4380_78015,294,4380_59799,Pineview,92189-00018-1,0,4380_7778208_3030406,4380_954 -4380_78015,295,4380_59800,Pineview,92195-00019-1,0,4380_7778208_3030406,4380_954 -4380_78015,293,4380_59801,Pineview,92191-00017-1,0,4380_7778208_3030406,4380_954 -4380_78015,296,4380_59802,Pineview,90969-00021-1,0,4380_7778208_3030401,4380_957 -4380_78015,297,4380_59804,Pineview,91738-00008-1,0,4380_7778208_3030404,4380_954 -4380_77950,289,4380_5981,Blanchardstown,54050-00014-1,1,4380_7778208_1050102,4380_61 -4380_78015,285,4380_59810,Pineview,91458-00009-1,0,4380_7778208_3030403,4380_954 -4380_78015,288,4380_59812,Pineview,91460-00011-1,0,4380_7778208_3030403,4380_954 -4380_78015,287,4380_59813,Pineview,91462-00012-1,0,4380_7778208_3030403,4380_954 -4380_78015,286,4380_59814,Pineview,91456-00010-1,0,4380_7778208_3030403,4380_954 -4380_78015,291,4380_59815,Pineview,92198-00013-1,0,4380_7778208_3030406,4380_957 -4380_78015,289,4380_59816,Pineview,91464-00014-1,0,4380_7778208_3030403,4380_954 -4380_78015,292,4380_59817,Pineview,91457-00016-1,0,4380_7778208_3030403,4380_954 -4380_78015,290,4380_59818,Pineview,91459-00015-1,0,4380_7778208_3030403,4380_954 -4380_78015,294,4380_59819,Pineview,91463-00018-1,0,4380_7778208_3030403,4380_954 -4380_77950,290,4380_5982,Blanchardstown,54051-00015-1,1,4380_7778208_1050102,4380_61 -4380_78015,295,4380_59820,Pineview,91465-00019-1,0,4380_7778208_3030403,4380_954 -4380_78015,293,4380_59821,Pineview,91461-00017-1,0,4380_7778208_3030403,4380_954 -4380_78015,296,4380_59822,Pineview,92199-00021-1,0,4380_7778208_3030406,4380_957 -4380_78015,297,4380_59824,Pineview,91226-00008-1,0,4380_7778208_3030402,4380_954 -4380_77950,292,4380_5983,Blanchardstown,54054-00016-1,1,4380_7778208_1050102,4380_61 -4380_78015,285,4380_59830,Pineview,92002-00009-1,0,4380_7778208_3030405,4380_954 -4380_78015,288,4380_59832,Pineview,92010-00011-1,0,4380_7778208_3030405,4380_954 -4380_78015,287,4380_59833,Pineview,92006-00012-1,0,4380_7778208_3030405,4380_954 -4380_78015,286,4380_59834,Pineview,92008-00010-1,0,4380_7778208_3030405,4380_954 -4380_78015,291,4380_59835,Pineview,91749-00013-1,0,4380_7778208_3030404,4380_957 -4380_78015,289,4380_59836,Pineview,92004-00014-1,0,4380_7778208_3030405,4380_954 -4380_78015,292,4380_59837,Pineview,92009-00016-1,0,4380_7778208_3030405,4380_954 -4380_78015,290,4380_59838,Pineview,92003-00015-1,0,4380_7778208_3030405,4380_954 -4380_78015,294,4380_59839,Pineview,92007-00018-1,0,4380_7778208_3030405,4380_954 -4380_77950,293,4380_5984,Blanchardstown,54053-00017-1,1,4380_7778208_1050102,4380_61 -4380_78015,295,4380_59840,Pineview,92005-00019-1,0,4380_7778208_3030405,4380_954 -4380_78015,293,4380_59841,Pineview,92011-00017-1,0,4380_7778208_3030405,4380_954 -4380_78015,296,4380_59842,Pineview,91750-00021-1,0,4380_7778208_3030404,4380_957 -4380_78015,297,4380_59849,Pineview,91466-00008-1,0,4380_7778208_3030403,4380_954 -4380_77950,294,4380_5985,Blanchardstown,54052-00018-1,1,4380_7778208_1050102,4380_61 -4380_78015,285,4380_59850,Pineview,90973-00009-1,0,4380_7778208_3030401,4380_957 -4380_78015,288,4380_59852,Pineview,90975-00011-1,0,4380_7778208_3030401,4380_957 -4380_78015,287,4380_59853,Pineview,90981-00012-1,0,4380_7778208_3030401,4380_957 -4380_78015,286,4380_59854,Pineview,90977-00010-1,0,4380_7778208_3030401,4380_957 -4380_78015,291,4380_59855,Pineview,91237-00013-1,0,4380_7778208_3030402,4380_959 -4380_78015,289,4380_59856,Pineview,90979-00014-1,0,4380_7778208_3030401,4380_957 -4380_78015,292,4380_59857,Pineview,90978-00016-1,0,4380_7778208_3030401,4380_957 -4380_78015,290,4380_59858,Pineview,90974-00015-1,0,4380_7778208_3030401,4380_957 -4380_78015,294,4380_59859,Pineview,90982-00018-1,0,4380_7778208_3030401,4380_957 -4380_77950,296,4380_5986,Blanchardstown,4741-00021-1,1,4380_7778208_1050102,4380_69 -4380_78015,295,4380_59860,Pineview,90980-00019-1,0,4380_7778208_3030401,4380_957 -4380_78015,293,4380_59861,Pineview,90976-00017-1,0,4380_7778208_3030401,4380_957 -4380_78015,296,4380_59862,Pineview,91238-00021-1,0,4380_7778208_3030402,4380_959 -4380_78015,285,4380_59868,Pineview,91756-00009-1,0,4380_7778208_3030404,4380_954 -4380_78015,288,4380_59870,Pineview,91760-00011-1,0,4380_7778208_3030404,4380_954 -4380_78015,287,4380_59871,Pineview,91758-00012-1,0,4380_7778208_3030404,4380_954 -4380_78015,286,4380_59872,Pineview,91752-00010-1,0,4380_7778208_3030404,4380_954 -4380_78015,291,4380_59873,Pineview,91477-00013-1,0,4380_7778208_3030403,4380_957 -4380_78015,289,4380_59874,Pineview,91754-00014-1,0,4380_7778208_3030404,4380_954 -4380_78015,292,4380_59875,Pineview,91753-00016-1,0,4380_7778208_3030404,4380_954 -4380_78015,290,4380_59876,Pineview,91757-00015-1,0,4380_7778208_3030404,4380_954 -4380_78015,294,4380_59877,Pineview,91759-00018-1,0,4380_7778208_3030404,4380_954 -4380_78015,295,4380_59878,Pineview,91755-00019-1,0,4380_7778208_3030404,4380_954 -4380_78015,293,4380_59879,Pineview,91761-00017-1,0,4380_7778208_3030404,4380_954 -4380_78015,296,4380_59880,Pineview,91478-00021-1,0,4380_7778208_3030403,4380_957 -4380_78015,297,4380_59882,Pineview,90983-00008-1,0,4380_7778208_3030401,4380_954 -4380_78015,285,4380_59888,Pineview,91244-00009-1,0,4380_7778208_3030402,4380_954 -4380_78015,288,4380_59890,Pineview,91240-00011-1,0,4380_7778208_3030402,4380_954 -4380_78015,287,4380_59891,Pineview,91248-00012-1,0,4380_7778208_3030402,4380_954 -4380_78015,286,4380_59892,Pineview,91242-00010-1,0,4380_7778208_3030402,4380_954 -4380_78015,291,4380_59893,Pineview,92022-00013-1,0,4380_7778208_3030405,4380_957 -4380_78015,289,4380_59894,Pineview,91246-00014-1,0,4380_7778208_3030402,4380_954 -4380_78015,292,4380_59895,Pineview,91243-00016-1,0,4380_7778208_3030402,4380_954 -4380_78015,290,4380_59896,Pineview,91245-00015-1,0,4380_7778208_3030402,4380_954 -4380_78015,294,4380_59897,Pineview,91249-00018-1,0,4380_7778208_3030402,4380_954 -4380_78015,295,4380_59898,Pineview,91247-00019-1,0,4380_7778208_3030402,4380_954 -4380_78015,293,4380_59899,Pineview,91241-00017-1,0,4380_7778208_3030402,4380_954 -4380_78015,296,4380_59900,Pineview,92023-00021-1,0,4380_7778208_3030405,4380_957 -4380_78015,297,4380_59902,Pineview,91764-00008-1,0,4380_7778208_3030404,4380_954 -4380_78015,285,4380_59908,Pineview,92214-00009-1,0,4380_7778208_3030406,4380_954 -4380_78015,288,4380_59910,Pineview,92212-00011-1,0,4380_7778208_3030406,4380_954 -4380_78015,287,4380_59911,Pineview,92218-00012-1,0,4380_7778208_3030406,4380_954 -4380_78015,286,4380_59912,Pineview,92216-00010-1,0,4380_7778208_3030406,4380_954 -4380_78015,291,4380_59913,Pineview,90994-00013-1,0,4380_7778208_3030401,4380_957 -4380_78015,289,4380_59914,Pineview,92220-00014-1,0,4380_7778208_3030406,4380_954 -4380_78015,292,4380_59915,Pineview,92217-00016-1,0,4380_7778208_3030406,4380_954 -4380_78015,290,4380_59916,Pineview,92215-00015-1,0,4380_7778208_3030406,4380_954 -4380_78015,294,4380_59917,Pineview,92219-00018-1,0,4380_7778208_3030406,4380_954 -4380_78015,295,4380_59918,Pineview,92221-00019-1,0,4380_7778208_3030406,4380_954 -4380_78015,293,4380_59919,Pineview,92213-00017-1,0,4380_7778208_3030406,4380_954 -4380_78015,296,4380_59920,Pineview,90995-00021-1,0,4380_7778208_3030401,4380_957 -4380_78015,297,4380_59927,Pineview,91252-00008-1,0,4380_7778208_3030402,4380_954 -4380_78015,285,4380_59928,Pineview,91482-00009-1,0,4380_7778208_3030403,4380_954 -4380_78015,288,4380_59930,Pineview,91484-00011-1,0,4380_7778208_3030403,4380_954 -4380_78015,287,4380_59931,Pineview,91486-00012-1,0,4380_7778208_3030403,4380_954 -4380_78015,286,4380_59932,Pineview,91490-00010-1,0,4380_7778208_3030403,4380_954 -4380_78015,291,4380_59933,Pineview,92222-00013-1,0,4380_7778208_3030406,4380_957 -4380_78015,289,4380_59934,Pineview,91488-00014-1,0,4380_7778208_3030403,4380_954 -4380_78015,292,4380_59935,Pineview,91491-00016-1,0,4380_7778208_3030403,4380_954 -4380_78015,290,4380_59936,Pineview,91483-00015-1,0,4380_7778208_3030403,4380_954 -4380_78015,294,4380_59937,Pineview,91487-00018-1,0,4380_7778208_3030403,4380_954 -4380_78015,295,4380_59938,Pineview,91489-00019-1,0,4380_7778208_3030403,4380_954 -4380_78015,293,4380_59939,Pineview,91485-00017-1,0,4380_7778208_3030403,4380_954 -4380_77950,285,4380_5994,Blanchardstown,54468-00009-1,1,4380_7778208_1051104,4380_63 -4380_78015,296,4380_59940,Pineview,92223-00021-1,0,4380_7778208_3030406,4380_957 -4380_78015,297,4380_59947,Pineview,90999-00008-1,0,4380_7778208_3030401,4380_954 -4380_78015,285,4380_59948,Pineview,91776-00009-1,0,4380_7778208_3030404,4380_954 -4380_77950,286,4380_5995,Blanchardstown,54472-00010-1,1,4380_7778208_1051104,4380_63 -4380_78015,288,4380_59950,Pineview,91782-00011-1,0,4380_7778208_3030404,4380_954 -4380_78015,287,4380_59951,Pineview,91780-00012-1,0,4380_7778208_3030404,4380_954 -4380_78015,286,4380_59952,Pineview,91784-00010-1,0,4380_7778208_3030404,4380_954 -4380_78015,291,4380_59953,Pineview,91492-00013-1,0,4380_7778208_3030403,4380_957 -4380_78015,289,4380_59954,Pineview,91778-00014-1,0,4380_7778208_3030404,4380_954 -4380_78015,292,4380_59955,Pineview,91785-00016-1,0,4380_7778208_3030404,4380_954 -4380_78015,290,4380_59956,Pineview,91777-00015-1,0,4380_7778208_3030404,4380_954 -4380_78015,294,4380_59957,Pineview,91781-00018-1,0,4380_7778208_3030404,4380_954 -4380_78015,295,4380_59958,Pineview,91779-00019-1,0,4380_7778208_3030404,4380_954 -4380_78015,293,4380_59959,Pineview,91783-00017-1,0,4380_7778208_3030404,4380_954 -4380_77950,297,4380_5996,Blanchardstown,54189-00008-1,1,4380_7778208_1051101,4380_64 -4380_78015,296,4380_59960,Pineview,91493-00021-1,0,4380_7778208_3030403,4380_957 -4380_78015,297,4380_59967,Pineview,91786-00008-1,0,4380_7778208_3030404,4380_954 -4380_78015,285,4380_59968,Pineview,92242-00009-1,0,4380_7778208_3030406,4380_957 -4380_77950,288,4380_5997,Blanchardstown,54476-00011-1,1,4380_7778208_1051104,4380_63 -4380_78015,288,4380_59970,Pineview,92236-00011-1,0,4380_7778208_3030406,4380_957 -4380_78015,287,4380_59971,Pineview,92238-00012-1,0,4380_7778208_3030406,4380_957 -4380_78015,286,4380_59972,Pineview,92240-00010-1,0,4380_7778208_3030406,4380_957 -4380_78015,291,4380_59973,Pineview,91000-00013-1,0,4380_7778208_3030401,4380_954 -4380_78015,289,4380_59974,Pineview,92244-00014-1,0,4380_7778208_3030406,4380_957 -4380_78015,292,4380_59975,Pineview,92241-00016-1,0,4380_7778208_3030406,4380_957 -4380_78015,290,4380_59976,Pineview,92243-00015-1,0,4380_7778208_3030406,4380_957 -4380_78015,294,4380_59977,Pineview,92239-00018-1,0,4380_7778208_3030406,4380_957 -4380_78015,295,4380_59978,Pineview,92245-00019-1,0,4380_7778208_3030406,4380_957 -4380_78015,293,4380_59979,Pineview,92237-00017-1,0,4380_7778208_3030406,4380_957 -4380_77950,287,4380_5998,Blanchardstown,54474-00012-1,1,4380_7778208_1051104,4380_63 -4380_78015,296,4380_59980,Pineview,91001-00021-1,0,4380_7778208_3030401,4380_954 -4380_78015,297,4380_59987,Pineview,91254-00008-1,0,4380_7778208_3030402,4380_954 -4380_78015,285,4380_59988,Pineview,91504-00009-1,0,4380_7778208_3030403,4380_957 -4380_77950,289,4380_5999,Blanchardstown,54466-00014-1,1,4380_7778208_1051104,4380_63 -4380_78015,288,4380_59990,Pineview,91510-00011-1,0,4380_7778208_3030403,4380_957 -4380_78015,287,4380_59991,Pineview,91512-00012-1,0,4380_7778208_3030403,4380_957 -4380_78015,286,4380_59992,Pineview,91506-00010-1,0,4380_7778208_3030403,4380_957 -4380_78015,291,4380_59993,Pineview,92246-00013-1,0,4380_7778208_3030406,4380_954 -4380_78015,289,4380_59994,Pineview,91508-00014-1,0,4380_7778208_3030403,4380_957 -4380_78015,292,4380_59995,Pineview,91507-00016-1,0,4380_7778208_3030403,4380_957 -4380_78015,290,4380_59996,Pineview,91505-00015-1,0,4380_7778208_3030403,4380_957 -4380_78015,294,4380_59997,Pineview,91513-00018-1,0,4380_7778208_3030403,4380_957 -4380_78015,295,4380_59998,Pineview,91509-00019-1,0,4380_7778208_3030403,4380_957 -4380_78015,293,4380_59999,Pineview,91511-00017-1,0,4380_7778208_3030403,4380_957 -4380_77946,293,4380_60,Dundalk,50302-00017-1,0,4380_7778208_1000913,4380_1 -4380_77950,290,4380_6000,Blanchardstown,54469-00015-1,1,4380_7778208_1051104,4380_63 -4380_78015,296,4380_60000,Pineview,92247-00021-1,0,4380_7778208_3030406,4380_954 -4380_78015,297,4380_60007,Pineview,91800-00008-1,0,4380_7778208_3030404,4380_954 -4380_78015,285,4380_60008,Pineview,91807-00009-1,0,4380_7778208_3030404,4380_957 -4380_77950,291,4380_6001,Blanchardstown,54470-00013-1,1,4380_7778208_1051104,4380_67 -4380_78015,288,4380_60010,Pineview,91805-00011-1,0,4380_7778208_3030404,4380_957 -4380_78015,287,4380_60011,Pineview,91811-00012-1,0,4380_7778208_3030404,4380_957 -4380_78015,286,4380_60012,Pineview,91803-00010-1,0,4380_7778208_3030404,4380_957 -4380_78015,291,4380_60013,Pineview,91809-00013-1,0,4380_7778208_3030404,4380_954 -4380_78015,289,4380_60014,Pineview,91801-00014-1,0,4380_7778208_3030404,4380_957 -4380_78015,292,4380_60015,Pineview,91804-00016-1,0,4380_7778208_3030404,4380_957 -4380_78015,290,4380_60016,Pineview,91808-00015-1,0,4380_7778208_3030404,4380_957 -4380_78015,294,4380_60017,Pineview,91812-00018-1,0,4380_7778208_3030404,4380_957 -4380_78015,295,4380_60018,Pineview,91802-00019-1,0,4380_7778208_3030404,4380_957 -4380_78015,293,4380_60019,Pineview,91806-00017-1,0,4380_7778208_3030404,4380_957 -4380_77950,292,4380_6002,Blanchardstown,54473-00016-1,1,4380_7778208_1051104,4380_63 -4380_78015,296,4380_60020,Pineview,91810-00021-1,0,4380_7778208_3030404,4380_954 -4380_78015,297,4380_60027,Pineview,91256-00008-1,0,4380_7778208_3030402,4380_954 -4380_78015,285,4380_60028,Pineview,92260-00009-1,0,4380_7778208_3030406,4380_957 -4380_77950,293,4380_6003,Blanchardstown,54477-00017-1,1,4380_7778208_1051104,4380_63 -4380_78015,288,4380_60030,Pineview,92268-00011-1,0,4380_7778208_3030406,4380_957 -4380_78015,287,4380_60031,Pineview,92266-00012-1,0,4380_7778208_3030406,4380_957 -4380_78015,286,4380_60032,Pineview,92264-00010-1,0,4380_7778208_3030406,4380_957 -4380_78015,291,4380_60033,Pineview,92262-00013-1,0,4380_7778208_3030406,4380_954 -4380_78015,289,4380_60034,Pineview,92270-00014-1,0,4380_7778208_3030406,4380_957 -4380_78015,292,4380_60035,Pineview,92265-00016-1,0,4380_7778208_3030406,4380_957 -4380_78015,290,4380_60036,Pineview,92261-00015-1,0,4380_7778208_3030406,4380_957 -4380_78015,294,4380_60037,Pineview,92267-00018-1,0,4380_7778208_3030406,4380_957 -4380_78015,295,4380_60038,Pineview,92271-00019-1,0,4380_7778208_3030406,4380_957 -4380_78015,293,4380_60039,Pineview,92269-00017-1,0,4380_7778208_3030406,4380_957 -4380_77950,294,4380_6004,Blanchardstown,54475-00018-1,1,4380_7778208_1051104,4380_63 -4380_78015,296,4380_60040,Pineview,92263-00021-1,0,4380_7778208_3030406,4380_954 -4380_78015,297,4380_60047,Pineview,91816-00008-1,0,4380_7778208_3030404,4380_954 -4380_78015,285,4380_60048,Pineview,91526-00009-1,0,4380_7778208_3030403,4380_957 -4380_77950,295,4380_6005,Blanchardstown,54467-00019-1,1,4380_7778208_1051104,4380_63 -4380_78015,288,4380_60050,Pineview,91528-00011-1,0,4380_7778208_3030403,4380_957 -4380_78015,287,4380_60051,Pineview,91530-00012-1,0,4380_7778208_3030403,4380_957 -4380_78015,286,4380_60052,Pineview,91524-00010-1,0,4380_7778208_3030403,4380_957 -4380_78015,291,4380_60053,Pineview,91817-00013-1,0,4380_7778208_3030404,4380_954 -4380_78015,289,4380_60054,Pineview,91532-00014-1,0,4380_7778208_3030403,4380_957 -4380_78015,292,4380_60055,Pineview,91525-00016-1,0,4380_7778208_3030403,4380_957 -4380_78015,290,4380_60056,Pineview,91527-00015-1,0,4380_7778208_3030403,4380_957 -4380_78015,294,4380_60057,Pineview,91531-00018-1,0,4380_7778208_3030403,4380_957 -4380_78015,295,4380_60058,Pineview,91533-00019-1,0,4380_7778208_3030403,4380_957 -4380_78015,293,4380_60059,Pineview,91529-00017-1,0,4380_7778208_3030403,4380_957 -4380_77950,296,4380_6006,Blanchardstown,54471-00021-1,1,4380_7778208_1051104,4380_67 -4380_78015,296,4380_60060,Pineview,91818-00021-1,0,4380_7778208_3030404,4380_954 -4380_78015,297,4380_60067,City Centre,91258-00008-1,0,4380_7778208_3030402,4380_956 -4380_78015,285,4380_60068,City Centre,92292-00009-1,0,4380_7778208_3030406,4380_958 -4380_78015,288,4380_60070,City Centre,92290-00011-1,0,4380_7778208_3030406,4380_958 -4380_78015,287,4380_60071,City Centre,92286-00012-1,0,4380_7778208_3030406,4380_958 -4380_78015,286,4380_60072,City Centre,92288-00010-1,0,4380_7778208_3030406,4380_958 -4380_78015,291,4380_60073,City Centre,92284-00013-1,0,4380_7778208_3030406,4380_956 -4380_78015,289,4380_60074,City Centre,92294-00014-1,0,4380_7778208_3030406,4380_958 -4380_78015,292,4380_60075,City Centre,92289-00016-1,0,4380_7778208_3030406,4380_958 -4380_78015,290,4380_60076,City Centre,92293-00015-1,0,4380_7778208_3030406,4380_958 -4380_78015,294,4380_60077,City Centre,92287-00018-1,0,4380_7778208_3030406,4380_958 -4380_78015,295,4380_60078,City Centre,92295-00019-1,0,4380_7778208_3030406,4380_958 -4380_78015,293,4380_60079,City Centre,92291-00017-1,0,4380_7778208_3030406,4380_958 -4380_77950,285,4380_6008,Blanchardstown,4477-00009-1,1,4380_7778208_1050101,4380_68 -4380_78015,296,4380_60080,City Centre,92285-00021-1,0,4380_7778208_3030406,4380_956 -4380_78015,285,4380_60086,Rathbane,90748-00009-1,1,4380_7778208_3030401,4380_961 -4380_78015,288,4380_60088,Rathbane,90750-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_60089,Rathbane,90756-00012-1,1,4380_7778208_3030401,4380_961 -4380_77950,286,4380_6009,Blanchardstown,4491-00010-1,1,4380_7778208_1050101,4380_68 -4380_78015,286,4380_60090,Rathbane,90746-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_60091,Rathbane,90752-00013-1,1,4380_7778208_3030401,4380_964 -4380_78015,289,4380_60092,Rathbane,90754-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_60093,Rathbane,90747-00016-1,1,4380_7778208_3030401,4380_961 -4380_78015,290,4380_60094,Rathbane,90749-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_60095,Rathbane,90757-00018-1,1,4380_7778208_3030401,4380_961 -4380_78015,295,4380_60096,Rathbane,90755-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_60097,Rathbane,90751-00017-1,1,4380_7778208_3030401,4380_961 -4380_78015,296,4380_60098,Rathbane,90753-00021-1,1,4380_7778208_3030401,4380_964 -4380_77950,288,4380_6010,Blanchardstown,4533-00011-1,1,4380_7778208_1050101,4380_68 -4380_78015,285,4380_60104,Rathbane,91014-00009-1,1,4380_7778208_3030402,4380_961 -4380_78015,288,4380_60106,Rathbane,91018-00011-1,1,4380_7778208_3030402,4380_961 -4380_78015,287,4380_60107,Rathbane,91024-00012-1,1,4380_7778208_3030402,4380_961 -4380_78015,286,4380_60108,Rathbane,91016-00010-1,1,4380_7778208_3030402,4380_961 -4380_78015,291,4380_60109,Rathbane,91020-00013-1,1,4380_7778208_3030402,4380_964 -4380_77950,287,4380_6011,Blanchardstown,4561-00012-1,1,4380_7778208_1050101,4380_68 -4380_78015,289,4380_60110,Rathbane,91022-00014-1,1,4380_7778208_3030402,4380_961 -4380_78015,292,4380_60111,Rathbane,91017-00016-1,1,4380_7778208_3030402,4380_961 -4380_78015,290,4380_60112,Rathbane,91015-00015-1,1,4380_7778208_3030402,4380_961 -4380_78015,294,4380_60113,Rathbane,91025-00018-1,1,4380_7778208_3030402,4380_961 -4380_78015,295,4380_60114,Rathbane,91023-00019-1,1,4380_7778208_3030402,4380_961 -4380_78015,293,4380_60115,Rathbane,91019-00017-1,1,4380_7778208_3030402,4380_961 -4380_78015,296,4380_60116,Rathbane,91021-00021-1,1,4380_7778208_3030402,4380_964 -4380_77950,291,4380_6012,Blanchardstown,53977-00013-1,1,4380_7778208_1050101,4380_65 -4380_78015,285,4380_60122,Rathbane,91259-00009-1,1,4380_7778208_3030403,4380_961 -4380_78015,288,4380_60124,Rathbane,91265-00011-1,1,4380_7778208_3030403,4380_961 -4380_78015,287,4380_60125,Rathbane,91263-00012-1,1,4380_7778208_3030403,4380_961 -4380_78015,286,4380_60126,Rathbane,91269-00010-1,1,4380_7778208_3030403,4380_961 -4380_78015,291,4380_60127,Rathbane,91267-00013-1,1,4380_7778208_3030403,4380_964 -4380_78015,289,4380_60128,Rathbane,91261-00014-1,1,4380_7778208_3030403,4380_961 -4380_78015,292,4380_60129,Rathbane,91270-00016-1,1,4380_7778208_3030403,4380_961 -4380_77950,295,4380_6013,Blanchardstown,4449-00019-1,1,4380_7778208_1050101,4380_68 -4380_78015,290,4380_60130,Rathbane,91260-00015-1,1,4380_7778208_3030403,4380_961 -4380_78015,294,4380_60131,Rathbane,91264-00018-1,1,4380_7778208_3030403,4380_961 -4380_78015,295,4380_60132,Rathbane,91262-00019-1,1,4380_7778208_3030403,4380_961 -4380_78015,293,4380_60133,Rathbane,91266-00017-1,1,4380_7778208_3030403,4380_961 -4380_78015,296,4380_60134,Rathbane,91268-00021-1,1,4380_7778208_3030403,4380_964 -4380_78015,297,4380_60141,Rathbane,90770-00008-1,1,4380_7778208_3030401,4380_961 -4380_78015,285,4380_60142,Rathbane,91830-00009-1,1,4380_7778208_3030405,4380_964 -4380_78015,288,4380_60144,Rathbane,91822-00011-1,1,4380_7778208_3030405,4380_964 -4380_78015,287,4380_60145,Rathbane,91828-00012-1,1,4380_7778208_3030405,4380_964 -4380_78015,286,4380_60146,Rathbane,91824-00010-1,1,4380_7778208_3030405,4380_964 -4380_78015,291,4380_60147,Rathbane,90771-00013-1,1,4380_7778208_3030401,4380_966 -4380_78015,289,4380_60148,Rathbane,91826-00014-1,1,4380_7778208_3030405,4380_964 -4380_78015,292,4380_60149,Rathbane,91825-00016-1,1,4380_7778208_3030405,4380_964 -4380_78015,290,4380_60150,Rathbane,91831-00015-1,1,4380_7778208_3030405,4380_964 -4380_78015,294,4380_60151,Rathbane,91829-00018-1,1,4380_7778208_3030405,4380_964 -4380_78015,295,4380_60152,Rathbane,91827-00019-1,1,4380_7778208_3030405,4380_964 -4380_78015,293,4380_60153,Rathbane,91823-00017-1,1,4380_7778208_3030405,4380_964 -4380_78015,296,4380_60154,Rathbane,90772-00021-1,1,4380_7778208_3030401,4380_966 -4380_78015,285,4380_60160,Rathbane,90779-00009-1,1,4380_7778208_3030401,4380_961 -4380_78015,288,4380_60162,Rathbane,90775-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_60163,Rathbane,90777-00012-1,1,4380_7778208_3030401,4380_961 -4380_78015,286,4380_60164,Rathbane,90781-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_60165,Rathbane,91556-00013-1,1,4380_7778208_3030404,4380_964 -4380_78015,289,4380_60166,Rathbane,90773-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_60167,Rathbane,90782-00016-1,1,4380_7778208_3030401,4380_961 -4380_78015,290,4380_60168,Rathbane,90780-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_60169,Rathbane,90778-00018-1,1,4380_7778208_3030401,4380_961 -4380_78015,295,4380_60170,Rathbane,90774-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_60171,Rathbane,90776-00017-1,1,4380_7778208_3030401,4380_961 -4380_78015,296,4380_60172,Rathbane,91557-00021-1,1,4380_7778208_3030404,4380_964 -4380_78015,297,4380_60179,Rathbane,91039-00008-1,1,4380_7778208_3030402,4380_961 -4380_78015,285,4380_60180,Rathbane,91560-00009-1,1,4380_7778208_3030404,4380_964 -4380_78015,288,4380_60182,Rathbane,91564-00011-1,1,4380_7778208_3030404,4380_964 -4380_78015,287,4380_60183,Rathbane,91566-00012-1,1,4380_7778208_3030404,4380_964 -4380_78015,286,4380_60184,Rathbane,91562-00010-1,1,4380_7778208_3030404,4380_964 -4380_78015,291,4380_60185,Rathbane,91040-00013-1,1,4380_7778208_3030402,4380_966 -4380_78015,289,4380_60186,Rathbane,91558-00014-1,1,4380_7778208_3030404,4380_964 -4380_78015,292,4380_60187,Rathbane,91563-00016-1,1,4380_7778208_3030404,4380_964 -4380_78015,290,4380_60188,Rathbane,91561-00015-1,1,4380_7778208_3030404,4380_964 -4380_78015,294,4380_60189,Rathbane,91567-00018-1,1,4380_7778208_3030404,4380_964 -4380_77950,289,4380_6019,Blanchardstown,53980-00014-1,1,4380_7778208_1050101,4380_61 -4380_78015,295,4380_60190,Rathbane,91559-00019-1,1,4380_7778208_3030404,4380_964 -4380_78015,293,4380_60191,Rathbane,91565-00017-1,1,4380_7778208_3030404,4380_964 -4380_78015,296,4380_60192,Rathbane,91041-00021-1,1,4380_7778208_3030402,4380_966 -4380_78015,285,4380_60198,Rathbane,91044-00009-1,1,4380_7778208_3030402,4380_961 -4380_78113,285,4380_602,Dundalk,49960-00009-1,0,4380_7778208_1000906,4380_10 -4380_77950,290,4380_6020,Blanchardstown,53978-00015-1,1,4380_7778208_1050101,4380_61 -4380_78015,288,4380_60200,Rathbane,91048-00011-1,1,4380_7778208_3030402,4380_961 -4380_78015,287,4380_60201,Rathbane,91042-00012-1,1,4380_7778208_3030402,4380_961 -4380_78015,286,4380_60202,Rathbane,91046-00010-1,1,4380_7778208_3030402,4380_961 -4380_78015,291,4380_60203,Rathbane,91283-00013-1,1,4380_7778208_3030403,4380_964 -4380_78015,289,4380_60204,Rathbane,91050-00014-1,1,4380_7778208_3030402,4380_961 -4380_78015,292,4380_60205,Rathbane,91047-00016-1,1,4380_7778208_3030402,4380_961 -4380_78015,290,4380_60206,Rathbane,91045-00015-1,1,4380_7778208_3030402,4380_961 -4380_78015,294,4380_60207,Rathbane,91043-00018-1,1,4380_7778208_3030402,4380_961 -4380_78015,295,4380_60208,Rathbane,91051-00019-1,1,4380_7778208_3030402,4380_961 -4380_78015,293,4380_60209,Rathbane,91049-00017-1,1,4380_7778208_3030402,4380_961 -4380_77950,292,4380_6021,Blanchardstown,53982-00016-1,1,4380_7778208_1050101,4380_61 -4380_78015,296,4380_60210,Rathbane,91284-00021-1,1,4380_7778208_3030403,4380_964 -4380_78015,297,4380_60217,Rathbane,90786-00008-1,1,4380_7778208_3030401,4380_961 -4380_78015,285,4380_60218,Rathbane,92036-00009-1,1,4380_7778208_3030406,4380_964 -4380_77950,293,4380_6022,Blanchardstown,53981-00017-1,1,4380_7778208_1050101,4380_61 -4380_78015,288,4380_60220,Rathbane,92040-00011-1,1,4380_7778208_3030406,4380_964 -4380_78015,287,4380_60221,Rathbane,92042-00012-1,1,4380_7778208_3030406,4380_964 -4380_78015,286,4380_60222,Rathbane,92034-00010-1,1,4380_7778208_3030406,4380_964 -4380_78015,291,4380_60223,Rathbane,91842-00013-1,1,4380_7778208_3030405,4380_966 -4380_78015,289,4380_60224,Rathbane,92038-00014-1,1,4380_7778208_3030406,4380_964 -4380_78015,292,4380_60225,Rathbane,92035-00016-1,1,4380_7778208_3030406,4380_964 -4380_78015,290,4380_60226,Rathbane,92037-00015-1,1,4380_7778208_3030406,4380_964 -4380_78015,294,4380_60227,Rathbane,92043-00018-1,1,4380_7778208_3030406,4380_964 -4380_78015,295,4380_60228,Rathbane,92039-00019-1,1,4380_7778208_3030406,4380_964 -4380_78015,293,4380_60229,Rathbane,92041-00017-1,1,4380_7778208_3030406,4380_964 -4380_77950,294,4380_6023,Blanchardstown,53979-00018-1,1,4380_7778208_1050101,4380_61 -4380_78015,296,4380_60230,Rathbane,91843-00021-1,1,4380_7778208_3030405,4380_966 -4380_78015,285,4380_60236,Rathbane,91287-00009-1,1,4380_7778208_3030403,4380_961 -4380_78015,288,4380_60238,Rathbane,91293-00011-1,1,4380_7778208_3030403,4380_961 -4380_78015,287,4380_60239,Rathbane,91289-00012-1,1,4380_7778208_3030403,4380_961 -4380_77950,296,4380_6024,Blanchardstown,4575-00021-1,1,4380_7778208_1050101,4380_69 -4380_78015,286,4380_60240,Rathbane,91291-00010-1,1,4380_7778208_3030403,4380_961 -4380_78015,291,4380_60241,Rathbane,90797-00013-1,1,4380_7778208_3030401,4380_964 -4380_78015,289,4380_60242,Rathbane,91285-00014-1,1,4380_7778208_3030403,4380_961 -4380_78015,292,4380_60243,Rathbane,91292-00016-1,1,4380_7778208_3030403,4380_961 -4380_78015,290,4380_60244,Rathbane,91288-00015-1,1,4380_7778208_3030403,4380_961 -4380_78015,294,4380_60245,Rathbane,91290-00018-1,1,4380_7778208_3030403,4380_961 -4380_78015,295,4380_60246,Rathbane,91286-00019-1,1,4380_7778208_3030403,4380_961 -4380_78015,293,4380_60247,Rathbane,91294-00017-1,1,4380_7778208_3030403,4380_961 -4380_78015,296,4380_60248,Rathbane,90798-00021-1,1,4380_7778208_3030401,4380_964 -4380_78015,297,4380_60255,Rathbane,91055-00008-1,1,4380_7778208_3030402,4380_961 -4380_78015,285,4380_60256,Rathbane,91846-00009-1,1,4380_7778208_3030405,4380_964 -4380_78015,288,4380_60258,Rathbane,91844-00011-1,1,4380_7778208_3030405,4380_964 -4380_78015,287,4380_60259,Rathbane,91848-00012-1,1,4380_7778208_3030405,4380_964 -4380_78015,286,4380_60260,Rathbane,91850-00010-1,1,4380_7778208_3030405,4380_964 -4380_78015,291,4380_60261,Rathbane,91580-00013-1,1,4380_7778208_3030404,4380_966 -4380_78015,289,4380_60262,Rathbane,91852-00014-1,1,4380_7778208_3030405,4380_964 -4380_78015,292,4380_60263,Rathbane,91851-00016-1,1,4380_7778208_3030405,4380_964 -4380_78015,290,4380_60264,Rathbane,91847-00015-1,1,4380_7778208_3030405,4380_964 -4380_78015,294,4380_60265,Rathbane,91849-00018-1,1,4380_7778208_3030405,4380_964 -4380_78015,295,4380_60266,Rathbane,91853-00019-1,1,4380_7778208_3030405,4380_964 -4380_78015,293,4380_60267,Rathbane,91845-00017-1,1,4380_7778208_3030405,4380_964 -4380_78015,296,4380_60268,Rathbane,91581-00021-1,1,4380_7778208_3030404,4380_966 -4380_78015,285,4380_60274,Rathbane,90808-00009-1,1,4380_7778208_3030401,4380_961 -4380_78015,288,4380_60276,Rathbane,90804-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_60277,Rathbane,90802-00012-1,1,4380_7778208_3030401,4380_961 -4380_78015,286,4380_60278,Rathbane,90800-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_60279,Rathbane,91066-00013-1,1,4380_7778208_3030402,4380_964 -4380_78015,289,4380_60280,Rathbane,90806-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_60281,Rathbane,90801-00016-1,1,4380_7778208_3030401,4380_961 -4380_78015,290,4380_60282,Rathbane,90809-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_60283,Rathbane,90803-00018-1,1,4380_7778208_3030401,4380_961 -4380_78015,295,4380_60284,Rathbane,90807-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_60285,Rathbane,90805-00017-1,1,4380_7778208_3030401,4380_961 -4380_78015,296,4380_60286,Rathbane,91067-00021-1,1,4380_7778208_3030402,4380_964 -4380_78015,297,4380_60293,Rathbane,90812-00008-1,1,4380_7778208_3030401,4380_961 -4380_78015,285,4380_60294,Rathbane,91582-00009-1,1,4380_7778208_3030404,4380_964 -4380_78015,288,4380_60296,Rathbane,91584-00011-1,1,4380_7778208_3030404,4380_964 -4380_78015,287,4380_60297,Rathbane,91590-00012-1,1,4380_7778208_3030404,4380_964 -4380_78015,286,4380_60298,Rathbane,91588-00010-1,1,4380_7778208_3030404,4380_964 -4380_78015,291,4380_60299,Rathbane,91297-00013-1,1,4380_7778208_3030403,4380_966 -4380_78113,286,4380_603,Dundalk,49952-00010-1,0,4380_7778208_1000906,4380_10 -4380_78015,289,4380_60300,Rathbane,91586-00014-1,1,4380_7778208_3030404,4380_964 -4380_78015,292,4380_60301,Rathbane,91589-00016-1,1,4380_7778208_3030404,4380_964 -4380_78015,290,4380_60302,Rathbane,91583-00015-1,1,4380_7778208_3030404,4380_964 -4380_78015,294,4380_60303,Rathbane,91591-00018-1,1,4380_7778208_3030404,4380_964 -4380_78015,295,4380_60304,Rathbane,91587-00019-1,1,4380_7778208_3030404,4380_964 -4380_78015,293,4380_60305,Rathbane,91585-00017-1,1,4380_7778208_3030404,4380_964 -4380_78015,296,4380_60306,Rathbane,91298-00021-1,1,4380_7778208_3030403,4380_966 -4380_78015,285,4380_60312,Rathbane,91075-00009-1,1,4380_7778208_3030402,4380_961 -4380_78015,288,4380_60314,Rathbane,91069-00011-1,1,4380_7778208_3030402,4380_961 -4380_78015,287,4380_60315,Rathbane,91077-00012-1,1,4380_7778208_3030402,4380_961 -4380_78015,286,4380_60316,Rathbane,91073-00010-1,1,4380_7778208_3030402,4380_961 -4380_78015,291,4380_60317,Rathbane,91856-00013-1,1,4380_7778208_3030405,4380_964 -4380_78015,289,4380_60318,Rathbane,91071-00014-1,1,4380_7778208_3030402,4380_961 -4380_78015,292,4380_60319,Rathbane,91074-00016-1,1,4380_7778208_3030402,4380_961 -4380_77950,285,4380_6032,Blanchardstown,54194-00009-1,1,4380_7778208_1051101,4380_63 -4380_78015,290,4380_60320,Rathbane,91076-00015-1,1,4380_7778208_3030402,4380_961 -4380_78015,294,4380_60321,Rathbane,91078-00018-1,1,4380_7778208_3030402,4380_961 -4380_78015,295,4380_60322,Rathbane,91072-00019-1,1,4380_7778208_3030402,4380_961 -4380_78015,293,4380_60323,Rathbane,91070-00017-1,1,4380_7778208_3030402,4380_961 -4380_78015,296,4380_60324,Rathbane,91857-00021-1,1,4380_7778208_3030405,4380_964 -4380_77950,286,4380_6033,Blanchardstown,54198-00010-1,1,4380_7778208_1051101,4380_63 -4380_78015,297,4380_60331,Rathbane,91079-00008-1,1,4380_7778208_3030402,4380_962 -4380_78015,285,4380_60332,Rathbane,92056-00009-1,1,4380_7778208_3030406,4380_965 -4380_78015,288,4380_60334,Rathbane,92064-00011-1,1,4380_7778208_3030406,4380_965 -4380_78015,287,4380_60335,Rathbane,92058-00012-1,1,4380_7778208_3030406,4380_965 -4380_78015,286,4380_60336,Rathbane,92060-00010-1,1,4380_7778208_3030406,4380_965 -4380_78015,291,4380_60337,Rathbane,90813-00013-1,1,4380_7778208_3030401,4380_967 -4380_78015,289,4380_60338,Rathbane,92062-00014-1,1,4380_7778208_3030406,4380_965 -4380_78015,292,4380_60339,Rathbane,92061-00016-1,1,4380_7778208_3030406,4380_965 -4380_77950,297,4380_6034,Blanchardstown,54291-00008-1,1,4380_7778208_1051102,4380_64 -4380_78015,290,4380_60340,Rathbane,92057-00015-1,1,4380_7778208_3030406,4380_965 -4380_78015,294,4380_60341,Rathbane,92059-00018-1,1,4380_7778208_3030406,4380_965 -4380_78015,295,4380_60342,Rathbane,92063-00019-1,1,4380_7778208_3030406,4380_965 -4380_78015,293,4380_60343,Rathbane,92065-00017-1,1,4380_7778208_3030406,4380_965 -4380_78015,296,4380_60344,Rathbane,90814-00021-1,1,4380_7778208_3030401,4380_967 -4380_77950,288,4380_6035,Blanchardstown,54200-00011-1,1,4380_7778208_1051101,4380_63 -4380_78015,285,4380_60350,Rathbane,91313-00009-1,1,4380_7778208_3030403,4380_961 -4380_78015,288,4380_60352,Rathbane,91315-00011-1,1,4380_7778208_3030403,4380_961 -4380_78015,287,4380_60353,Rathbane,91309-00012-1,1,4380_7778208_3030403,4380_961 -4380_78015,286,4380_60354,Rathbane,91311-00010-1,1,4380_7778208_3030403,4380_961 -4380_78015,291,4380_60355,Rathbane,92066-00013-1,1,4380_7778208_3030406,4380_964 -4380_78015,289,4380_60356,Rathbane,91317-00014-1,1,4380_7778208_3030403,4380_961 -4380_78015,292,4380_60357,Rathbane,91312-00016-1,1,4380_7778208_3030403,4380_961 -4380_78015,290,4380_60358,Rathbane,91314-00015-1,1,4380_7778208_3030403,4380_961 -4380_78015,294,4380_60359,Rathbane,91310-00018-1,1,4380_7778208_3030403,4380_961 -4380_77950,287,4380_6036,Blanchardstown,54196-00012-1,1,4380_7778208_1051101,4380_63 -4380_78015,295,4380_60360,Rathbane,91318-00019-1,1,4380_7778208_3030403,4380_961 -4380_78015,293,4380_60361,Rathbane,91316-00017-1,1,4380_7778208_3030403,4380_961 -4380_78015,296,4380_60362,Rathbane,92067-00021-1,1,4380_7778208_3030406,4380_964 -4380_78015,297,4380_60364,Rathbane,91321-00008-1,1,4380_7778208_3030403,4380_961 -4380_77950,289,4380_6037,Blanchardstown,54192-00014-1,1,4380_7778208_1051101,4380_63 -4380_78015,285,4380_60370,Rathbane,91876-00009-1,1,4380_7778208_3030405,4380_962 -4380_78015,288,4380_60372,Rathbane,91874-00011-1,1,4380_7778208_3030405,4380_962 -4380_78015,287,4380_60373,Rathbane,91872-00012-1,1,4380_7778208_3030405,4380_962 -4380_78015,286,4380_60374,Rathbane,91868-00010-1,1,4380_7778208_3030405,4380_962 -4380_78015,291,4380_60375,Rathbane,91605-00013-1,1,4380_7778208_3030404,4380_965 -4380_78015,289,4380_60376,Rathbane,91870-00014-1,1,4380_7778208_3030405,4380_962 -4380_78015,292,4380_60377,Rathbane,91869-00016-1,1,4380_7778208_3030405,4380_962 -4380_78015,290,4380_60378,Rathbane,91877-00015-1,1,4380_7778208_3030405,4380_962 -4380_78015,294,4380_60379,Rathbane,91873-00018-1,1,4380_7778208_3030405,4380_962 -4380_77950,290,4380_6038,Blanchardstown,54195-00015-1,1,4380_7778208_1051101,4380_63 -4380_78015,295,4380_60380,Rathbane,91871-00019-1,1,4380_7778208_3030405,4380_962 -4380_78015,293,4380_60381,Rathbane,91875-00017-1,1,4380_7778208_3030405,4380_962 -4380_78015,296,4380_60382,Rathbane,91606-00021-1,1,4380_7778208_3030404,4380_965 -4380_78015,297,4380_60384,Rathbane,90826-00008-1,1,4380_7778208_3030401,4380_962 -4380_77950,291,4380_6039,Blanchardstown,54190-00013-1,1,4380_7778208_1051101,4380_67 -4380_78015,285,4380_60390,Rathbane,90827-00009-1,1,4380_7778208_3030401,4380_961 -4380_78015,288,4380_60392,Rathbane,90829-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_60393,Rathbane,90833-00012-1,1,4380_7778208_3030401,4380_961 -4380_78015,286,4380_60394,Rathbane,90835-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_60395,Rathbane,91093-00013-1,1,4380_7778208_3030402,4380_964 -4380_78015,289,4380_60396,Rathbane,90831-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_60397,Rathbane,90836-00016-1,1,4380_7778208_3030401,4380_961 -4380_78015,290,4380_60398,Rathbane,90828-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_60399,Rathbane,90834-00018-1,1,4380_7778208_3030401,4380_961 -4380_78113,287,4380_604,Dundalk,49958-00012-1,0,4380_7778208_1000906,4380_10 -4380_77950,292,4380_6040,Blanchardstown,54199-00016-1,1,4380_7778208_1051101,4380_63 -4380_78015,295,4380_60400,Rathbane,90832-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_60401,Rathbane,90830-00017-1,1,4380_7778208_3030401,4380_961 -4380_78015,296,4380_60402,Rathbane,91094-00021-1,1,4380_7778208_3030402,4380_964 -4380_78015,297,4380_60409,Rathbane,91617-00008-1,1,4380_7778208_3030404,4380_961 -4380_77950,293,4380_6041,Blanchardstown,54201-00017-1,1,4380_7778208_1051101,4380_63 -4380_78015,285,4380_60410,Rathbane,91609-00009-1,1,4380_7778208_3030404,4380_962 -4380_78015,288,4380_60412,Rathbane,91615-00011-1,1,4380_7778208_3030404,4380_962 -4380_78015,287,4380_60413,Rathbane,91611-00012-1,1,4380_7778208_3030404,4380_962 -4380_78015,286,4380_60414,Rathbane,91607-00010-1,1,4380_7778208_3030404,4380_962 -4380_78015,291,4380_60415,Rathbane,91322-00013-1,1,4380_7778208_3030403,4380_965 -4380_78015,289,4380_60416,Rathbane,91613-00014-1,1,4380_7778208_3030404,4380_962 -4380_78015,292,4380_60417,Rathbane,91608-00016-1,1,4380_7778208_3030404,4380_962 -4380_78015,290,4380_60418,Rathbane,91610-00015-1,1,4380_7778208_3030404,4380_962 -4380_78015,294,4380_60419,Rathbane,91612-00018-1,1,4380_7778208_3030404,4380_962 -4380_77950,294,4380_6042,Blanchardstown,54197-00018-1,1,4380_7778208_1051101,4380_63 -4380_78015,295,4380_60420,Rathbane,91614-00019-1,1,4380_7778208_3030404,4380_962 -4380_78015,293,4380_60421,Rathbane,91616-00017-1,1,4380_7778208_3030404,4380_962 -4380_78015,296,4380_60422,Rathbane,91323-00021-1,1,4380_7778208_3030403,4380_965 -4380_78015,285,4380_60428,Rathbane,91101-00009-1,1,4380_7778208_3030402,4380_961 -4380_77950,295,4380_6043,Blanchardstown,54193-00019-1,1,4380_7778208_1051101,4380_63 -4380_78015,288,4380_60430,Rathbane,91097-00011-1,1,4380_7778208_3030402,4380_961 -4380_78015,287,4380_60431,Rathbane,91103-00012-1,1,4380_7778208_3030402,4380_961 -4380_78015,286,4380_60432,Rathbane,91099-00010-1,1,4380_7778208_3030402,4380_961 -4380_78015,291,4380_60433,Rathbane,91880-00013-1,1,4380_7778208_3030405,4380_964 -4380_78015,289,4380_60434,Rathbane,91095-00014-1,1,4380_7778208_3030402,4380_961 -4380_78015,292,4380_60435,Rathbane,91100-00016-1,1,4380_7778208_3030402,4380_961 -4380_78015,290,4380_60436,Rathbane,91102-00015-1,1,4380_7778208_3030402,4380_961 -4380_78015,294,4380_60437,Rathbane,91104-00018-1,1,4380_7778208_3030402,4380_961 -4380_78015,295,4380_60438,Rathbane,91096-00019-1,1,4380_7778208_3030402,4380_961 -4380_78015,293,4380_60439,Rathbane,91098-00017-1,1,4380_7778208_3030402,4380_961 -4380_77950,296,4380_6044,Blanchardstown,54191-00021-1,1,4380_7778208_1051101,4380_67 -4380_78015,296,4380_60440,Rathbane,91881-00021-1,1,4380_7778208_3030405,4380_964 -4380_78015,297,4380_60442,Rathbane,91105-00008-1,1,4380_7778208_3030402,4380_962 -4380_78015,285,4380_60448,Rathbane,92088-00009-1,1,4380_7778208_3030406,4380_962 -4380_78015,288,4380_60450,Rathbane,92086-00011-1,1,4380_7778208_3030406,4380_962 -4380_78015,287,4380_60451,Rathbane,92084-00012-1,1,4380_7778208_3030406,4380_962 -4380_78015,286,4380_60452,Rathbane,92080-00010-1,1,4380_7778208_3030406,4380_962 -4380_78015,291,4380_60453,Rathbane,90840-00013-1,1,4380_7778208_3030401,4380_965 -4380_78015,289,4380_60454,Rathbane,92082-00014-1,1,4380_7778208_3030406,4380_962 -4380_78015,292,4380_60455,Rathbane,92081-00016-1,1,4380_7778208_3030406,4380_962 -4380_78015,290,4380_60456,Rathbane,92089-00015-1,1,4380_7778208_3030406,4380_962 -4380_78015,294,4380_60457,Rathbane,92085-00018-1,1,4380_7778208_3030406,4380_962 -4380_78015,295,4380_60458,Rathbane,92083-00019-1,1,4380_7778208_3030406,4380_962 -4380_78015,293,4380_60459,Rathbane,92087-00017-1,1,4380_7778208_3030406,4380_962 -4380_77950,285,4380_6046,Blanchardstown,4631-00009-1,1,4380_7778208_1050102,4380_68 -4380_78015,296,4380_60460,Rathbane,90841-00021-1,1,4380_7778208_3030401,4380_965 -4380_78015,297,4380_60462,Rathbane,91335-00008-1,1,4380_7778208_3030403,4380_961 -4380_78015,285,4380_60468,Rathbane,91344-00009-1,1,4380_7778208_3030403,4380_961 -4380_77950,286,4380_6047,Blanchardstown,4673-00010-1,1,4380_7778208_1050102,4380_68 -4380_78015,288,4380_60470,Rathbane,91338-00011-1,1,4380_7778208_3030403,4380_961 -4380_78015,287,4380_60471,Rathbane,91336-00012-1,1,4380_7778208_3030403,4380_961 -4380_78015,286,4380_60472,Rathbane,91340-00010-1,1,4380_7778208_3030403,4380_961 -4380_78015,291,4380_60473,Rathbane,92090-00013-1,1,4380_7778208_3030406,4380_964 -4380_78015,289,4380_60474,Rathbane,91342-00014-1,1,4380_7778208_3030403,4380_961 -4380_78015,292,4380_60475,Rathbane,91341-00016-1,1,4380_7778208_3030403,4380_961 -4380_78015,290,4380_60476,Rathbane,91345-00015-1,1,4380_7778208_3030403,4380_961 -4380_78015,294,4380_60477,Rathbane,91337-00018-1,1,4380_7778208_3030403,4380_961 -4380_78015,295,4380_60478,Rathbane,91343-00019-1,1,4380_7778208_3030403,4380_961 -4380_78015,293,4380_60479,Rathbane,91339-00017-1,1,4380_7778208_3030403,4380_961 -4380_77950,288,4380_6048,Blanchardstown,4687-00011-1,1,4380_7778208_1050102,4380_68 -4380_78015,296,4380_60480,Rathbane,92091-00021-1,1,4380_7778208_3030406,4380_964 -4380_78015,297,4380_60487,Rathbane,90852-00008-1,1,4380_7778208_3030401,4380_962 -4380_78015,285,4380_60488,Rathbane,91898-00009-1,1,4380_7778208_3030405,4380_965 -4380_77950,287,4380_6049,Blanchardstown,4715-00012-1,1,4380_7778208_1050102,4380_68 -4380_78015,288,4380_60490,Rathbane,91900-00011-1,1,4380_7778208_3030405,4380_965 -4380_78015,287,4380_60491,Rathbane,91894-00012-1,1,4380_7778208_3030405,4380_965 -4380_78015,286,4380_60492,Rathbane,91892-00010-1,1,4380_7778208_3030405,4380_965 -4380_78015,291,4380_60493,Rathbane,91631-00013-1,1,4380_7778208_3030404,4380_967 -4380_78015,289,4380_60494,Rathbane,91896-00014-1,1,4380_7778208_3030405,4380_965 -4380_78015,292,4380_60495,Rathbane,91893-00016-1,1,4380_7778208_3030405,4380_965 -4380_78015,290,4380_60496,Rathbane,91899-00015-1,1,4380_7778208_3030405,4380_965 -4380_78015,294,4380_60497,Rathbane,91895-00018-1,1,4380_7778208_3030405,4380_965 -4380_78015,295,4380_60498,Rathbane,91897-00019-1,1,4380_7778208_3030405,4380_965 -4380_78015,293,4380_60499,Rathbane,91901-00017-1,1,4380_7778208_3030405,4380_965 -4380_78113,288,4380_605,Dundalk,49956-00011-1,0,4380_7778208_1000906,4380_10 -4380_77950,291,4380_6050,Blanchardstown,54061-00013-1,1,4380_7778208_1050102,4380_65 -4380_78015,296,4380_60500,Rathbane,91632-00021-1,1,4380_7778208_3030404,4380_967 -4380_78015,285,4380_60506,Rathbane,90855-00009-1,1,4380_7778208_3030401,4380_961 -4380_78015,288,4380_60508,Rathbane,90861-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_60509,Rathbane,90853-00012-1,1,4380_7778208_3030401,4380_961 -4380_77950,295,4380_6051,Blanchardstown,4603-00019-1,1,4380_7778208_1050102,4380_68 -4380_78015,286,4380_60510,Rathbane,90859-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_60511,Rathbane,91119-00013-1,1,4380_7778208_3030402,4380_964 -4380_78015,289,4380_60512,Rathbane,90857-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_60513,Rathbane,90860-00016-1,1,4380_7778208_3030401,4380_961 -4380_78015,290,4380_60514,Rathbane,90856-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_60515,Rathbane,90854-00018-1,1,4380_7778208_3030401,4380_961 -4380_78015,295,4380_60516,Rathbane,90858-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_60517,Rathbane,90862-00017-1,1,4380_7778208_3030401,4380_961 -4380_78015,296,4380_60518,Rathbane,91120-00021-1,1,4380_7778208_3030402,4380_964 -4380_78015,297,4380_60520,Rathbane,91633-00008-1,1,4380_7778208_3030404,4380_961 -4380_78015,285,4380_60526,Rathbane,91638-00009-1,1,4380_7778208_3030404,4380_962 -4380_78015,288,4380_60528,Rathbane,91640-00011-1,1,4380_7778208_3030404,4380_962 -4380_78015,287,4380_60529,Rathbane,91642-00012-1,1,4380_7778208_3030404,4380_962 -4380_78015,286,4380_60530,Rathbane,91634-00010-1,1,4380_7778208_3030404,4380_962 -4380_78015,291,4380_60531,Rathbane,91349-00013-1,1,4380_7778208_3030403,4380_965 -4380_78015,289,4380_60532,Rathbane,91636-00014-1,1,4380_7778208_3030404,4380_962 -4380_78015,292,4380_60533,Rathbane,91635-00016-1,1,4380_7778208_3030404,4380_962 -4380_78015,290,4380_60534,Rathbane,91639-00015-1,1,4380_7778208_3030404,4380_962 -4380_78015,294,4380_60535,Rathbane,91643-00018-1,1,4380_7778208_3030404,4380_962 -4380_78015,295,4380_60536,Rathbane,91637-00019-1,1,4380_7778208_3030404,4380_962 -4380_78015,293,4380_60537,Rathbane,91641-00017-1,1,4380_7778208_3030404,4380_962 -4380_78015,296,4380_60538,Rathbane,91350-00021-1,1,4380_7778208_3030403,4380_965 -4380_78015,297,4380_60540,Rathbane,91121-00008-1,1,4380_7778208_3030402,4380_962 -4380_78015,285,4380_60546,Rathbane,91130-00009-1,1,4380_7778208_3030402,4380_961 -4380_78015,288,4380_60548,Rathbane,91124-00011-1,1,4380_7778208_3030402,4380_961 -4380_78015,287,4380_60549,Rathbane,91122-00012-1,1,4380_7778208_3030402,4380_961 -4380_78015,286,4380_60550,Rathbane,91128-00010-1,1,4380_7778208_3030402,4380_961 -4380_78015,291,4380_60551,Rathbane,91904-00013-1,1,4380_7778208_3030405,4380_964 -4380_78015,289,4380_60552,Rathbane,91126-00014-1,1,4380_7778208_3030402,4380_961 -4380_78015,292,4380_60553,Rathbane,91129-00016-1,1,4380_7778208_3030402,4380_961 -4380_78015,290,4380_60554,Rathbane,91131-00015-1,1,4380_7778208_3030402,4380_961 -4380_78015,294,4380_60555,Rathbane,91123-00018-1,1,4380_7778208_3030402,4380_961 -4380_78015,295,4380_60556,Rathbane,91127-00019-1,1,4380_7778208_3030402,4380_961 -4380_78015,293,4380_60557,Rathbane,91125-00017-1,1,4380_7778208_3030402,4380_961 -4380_78015,296,4380_60558,Rathbane,91905-00021-1,1,4380_7778208_3030405,4380_964 -4380_78015,297,4380_60565,Rathbane,91361-00008-1,1,4380_7778208_3030403,4380_961 -4380_78015,285,4380_60566,Rathbane,92104-00009-1,1,4380_7778208_3030406,4380_962 -4380_78015,288,4380_60568,Rathbane,92106-00011-1,1,4380_7778208_3030406,4380_962 -4380_78015,287,4380_60569,Rathbane,92108-00012-1,1,4380_7778208_3030406,4380_962 -4380_77950,289,4380_6057,Blanchardstown,54062-00014-1,1,4380_7778208_1050102,4380_61 -4380_78015,286,4380_60570,Rathbane,92110-00010-1,1,4380_7778208_3030406,4380_962 -4380_78015,291,4380_60571,Rathbane,90866-00013-1,1,4380_7778208_3030401,4380_965 -4380_78015,289,4380_60572,Rathbane,92112-00014-1,1,4380_7778208_3030406,4380_962 -4380_78015,292,4380_60573,Rathbane,92111-00016-1,1,4380_7778208_3030406,4380_962 -4380_78015,290,4380_60574,Rathbane,92105-00015-1,1,4380_7778208_3030406,4380_962 -4380_78015,294,4380_60575,Rathbane,92109-00018-1,1,4380_7778208_3030406,4380_962 -4380_78015,295,4380_60576,Rathbane,92113-00019-1,1,4380_7778208_3030406,4380_962 -4380_78015,293,4380_60577,Rathbane,92107-00017-1,1,4380_7778208_3030406,4380_962 -4380_78015,296,4380_60578,Rathbane,90867-00021-1,1,4380_7778208_3030401,4380_965 -4380_77950,290,4380_6058,Blanchardstown,54065-00015-1,1,4380_7778208_1050102,4380_61 -4380_78015,285,4380_60584,Rathbane,91370-00009-1,1,4380_7778208_3030403,4380_961 -4380_78015,288,4380_60586,Rathbane,91364-00011-1,1,4380_7778208_3030403,4380_961 -4380_78015,287,4380_60587,Rathbane,91366-00012-1,1,4380_7778208_3030403,4380_961 -4380_78015,286,4380_60588,Rathbane,91362-00010-1,1,4380_7778208_3030403,4380_961 -4380_78015,291,4380_60589,Rathbane,92114-00013-1,1,4380_7778208_3030406,4380_964 -4380_77950,292,4380_6059,Blanchardstown,54066-00016-1,1,4380_7778208_1050102,4380_61 -4380_78015,289,4380_60590,Rathbane,91368-00014-1,1,4380_7778208_3030403,4380_961 -4380_78015,292,4380_60591,Rathbane,91363-00016-1,1,4380_7778208_3030403,4380_961 -4380_78015,290,4380_60592,Rathbane,91371-00015-1,1,4380_7778208_3030403,4380_961 -4380_78015,294,4380_60593,Rathbane,91367-00018-1,1,4380_7778208_3030403,4380_961 -4380_78015,295,4380_60594,Rathbane,91369-00019-1,1,4380_7778208_3030403,4380_961 -4380_78015,293,4380_60595,Rathbane,91365-00017-1,1,4380_7778208_3030403,4380_961 -4380_78015,296,4380_60596,Rathbane,92115-00021-1,1,4380_7778208_3030406,4380_964 -4380_78015,297,4380_60598,Rathbane,90878-00008-1,1,4380_7778208_3030401,4380_962 -4380_78113,289,4380_606,Dundalk,49954-00014-1,0,4380_7778208_1000906,4380_10 -4380_77950,293,4380_6060,Blanchardstown,54063-00017-1,1,4380_7778208_1050102,4380_61 -4380_78015,285,4380_60604,Rathbane,91918-00009-1,1,4380_7778208_3030405,4380_962 -4380_78015,288,4380_60606,Rathbane,91924-00011-1,1,4380_7778208_3030405,4380_962 -4380_78015,287,4380_60607,Rathbane,91920-00012-1,1,4380_7778208_3030405,4380_962 -4380_78015,286,4380_60608,Rathbane,91916-00010-1,1,4380_7778208_3030405,4380_962 -4380_78015,291,4380_60609,Rathbane,91657-00013-1,1,4380_7778208_3030404,4380_965 -4380_77950,294,4380_6061,Blanchardstown,54064-00018-1,1,4380_7778208_1050102,4380_61 -4380_78015,289,4380_60610,Rathbane,91922-00014-1,1,4380_7778208_3030405,4380_962 -4380_78015,292,4380_60611,Rathbane,91917-00016-1,1,4380_7778208_3030405,4380_962 -4380_78015,290,4380_60612,Rathbane,91919-00015-1,1,4380_7778208_3030405,4380_962 -4380_78015,294,4380_60613,Rathbane,91921-00018-1,1,4380_7778208_3030405,4380_962 -4380_78015,295,4380_60614,Rathbane,91923-00019-1,1,4380_7778208_3030405,4380_962 -4380_78015,293,4380_60615,Rathbane,91925-00017-1,1,4380_7778208_3030405,4380_962 -4380_78015,296,4380_60616,Rathbane,91658-00021-1,1,4380_7778208_3030404,4380_965 -4380_78015,297,4380_60618,Rathbane,91659-00008-1,1,4380_7778208_3030404,4380_961 -4380_77950,296,4380_6062,Blanchardstown,4743-00021-1,1,4380_7778208_1050102,4380_69 -4380_78015,285,4380_60624,Rathbane,90883-00009-1,1,4380_7778208_3030401,4380_961 -4380_78015,288,4380_60626,Rathbane,90885-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_60627,Rathbane,90887-00012-1,1,4380_7778208_3030401,4380_961 -4380_78015,286,4380_60628,Rathbane,90879-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_60629,Rathbane,91145-00013-1,1,4380_7778208_3030402,4380_964 -4380_78015,289,4380_60630,Rathbane,90881-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_60631,Rathbane,90880-00016-1,1,4380_7778208_3030401,4380_961 -4380_78015,290,4380_60632,Rathbane,90884-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_60633,Rathbane,90888-00018-1,1,4380_7778208_3030401,4380_961 -4380_78015,295,4380_60634,Rathbane,90882-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_60635,Rathbane,90886-00017-1,1,4380_7778208_3030401,4380_961 -4380_78015,296,4380_60636,Rathbane,91146-00021-1,1,4380_7778208_3030402,4380_964 -4380_78015,297,4380_60643,Rathbane,91147-00008-1,1,4380_7778208_3030402,4380_962 -4380_78015,285,4380_60644,Rathbane,91664-00009-1,1,4380_7778208_3030404,4380_965 -4380_78015,288,4380_60646,Rathbane,91662-00011-1,1,4380_7778208_3030404,4380_965 -4380_78015,287,4380_60647,Rathbane,91668-00012-1,1,4380_7778208_3030404,4380_965 -4380_78015,286,4380_60648,Rathbane,91660-00010-1,1,4380_7778208_3030404,4380_965 -4380_78015,291,4380_60649,Rathbane,91375-00013-1,1,4380_7778208_3030403,4380_965 -4380_78015,289,4380_60650,Rathbane,91666-00014-1,1,4380_7778208_3030404,4380_965 -4380_78015,292,4380_60651,Rathbane,91661-00016-1,1,4380_7778208_3030404,4380_965 -4380_78015,290,4380_60652,Rathbane,91665-00015-1,1,4380_7778208_3030404,4380_965 -4380_78015,294,4380_60653,Rathbane,91669-00018-1,1,4380_7778208_3030404,4380_965 -4380_78015,295,4380_60654,Rathbane,91667-00019-1,1,4380_7778208_3030404,4380_965 -4380_78015,293,4380_60655,Rathbane,91663-00017-1,1,4380_7778208_3030404,4380_965 -4380_78015,296,4380_60656,Rathbane,91376-00021-1,1,4380_7778208_3030403,4380_965 -4380_78015,285,4380_60662,Rathbane,91150-00009-1,1,4380_7778208_3030402,4380_961 -4380_78015,288,4380_60664,Rathbane,91154-00011-1,1,4380_7778208_3030402,4380_961 -4380_78015,287,4380_60665,Rathbane,91156-00012-1,1,4380_7778208_3030402,4380_961 -4380_78015,286,4380_60666,Rathbane,91152-00010-1,1,4380_7778208_3030402,4380_961 -4380_78015,291,4380_60667,Rathbane,91928-00013-1,1,4380_7778208_3030405,4380_961 -4380_78015,289,4380_60668,Rathbane,91148-00014-1,1,4380_7778208_3030402,4380_961 -4380_78015,292,4380_60669,Rathbane,91153-00016-1,1,4380_7778208_3030402,4380_961 -4380_78015,290,4380_60670,Rathbane,91151-00015-1,1,4380_7778208_3030402,4380_961 -4380_78015,294,4380_60671,Rathbane,91157-00018-1,1,4380_7778208_3030402,4380_961 -4380_78015,295,4380_60672,Rathbane,91149-00019-1,1,4380_7778208_3030402,4380_961 -4380_78015,293,4380_60673,Rathbane,91155-00017-1,1,4380_7778208_3030402,4380_961 -4380_78015,296,4380_60674,Rathbane,91929-00021-1,1,4380_7778208_3030405,4380_961 -4380_78015,297,4380_60676,Rathbane,91387-00008-1,1,4380_7778208_3030403,4380_961 -4380_78015,285,4380_60682,Rathbane,92136-00009-1,1,4380_7778208_3030406,4380_962 -4380_78015,288,4380_60684,Rathbane,92134-00011-1,1,4380_7778208_3030406,4380_962 -4380_78015,287,4380_60685,Rathbane,92130-00012-1,1,4380_7778208_3030406,4380_962 -4380_78015,286,4380_60686,Rathbane,92128-00010-1,1,4380_7778208_3030406,4380_962 -4380_78015,291,4380_60687,Rathbane,90892-00013-1,1,4380_7778208_3030401,4380_962 -4380_78015,289,4380_60688,Rathbane,92132-00014-1,1,4380_7778208_3030406,4380_962 -4380_78015,292,4380_60689,Rathbane,92129-00016-1,1,4380_7778208_3030406,4380_962 -4380_78015,290,4380_60690,Rathbane,92137-00015-1,1,4380_7778208_3030406,4380_962 -4380_78015,294,4380_60691,Rathbane,92131-00018-1,1,4380_7778208_3030406,4380_962 -4380_78015,295,4380_60692,Rathbane,92133-00019-1,1,4380_7778208_3030406,4380_962 -4380_78015,293,4380_60693,Rathbane,92135-00017-1,1,4380_7778208_3030406,4380_962 -4380_78015,296,4380_60694,Rathbane,90893-00021-1,1,4380_7778208_3030401,4380_962 -4380_78015,297,4380_60696,Rathbane,90904-00008-1,1,4380_7778208_3030401,4380_962 -4380_78113,290,4380_607,Dundalk,49961-00015-1,0,4380_7778208_1000906,4380_10 -4380_77950,285,4380_6070,Blanchardstown,54300-00009-1,1,4380_7778208_1051102,4380_63 -4380_78015,285,4380_60702,Rathbane,91392-00009-1,1,4380_7778208_3030403,4380_961 -4380_78015,288,4380_60704,Rathbane,91388-00011-1,1,4380_7778208_3030403,4380_961 -4380_78015,287,4380_60705,Rathbane,91396-00012-1,1,4380_7778208_3030403,4380_961 -4380_78015,286,4380_60706,Rathbane,91390-00010-1,1,4380_7778208_3030403,4380_961 -4380_78015,291,4380_60707,Rathbane,92138-00013-1,1,4380_7778208_3030406,4380_964 -4380_78015,289,4380_60708,Rathbane,91394-00014-1,1,4380_7778208_3030403,4380_961 -4380_78015,292,4380_60709,Rathbane,91391-00016-1,1,4380_7778208_3030403,4380_961 -4380_77950,286,4380_6071,Blanchardstown,54292-00010-1,1,4380_7778208_1051102,4380_63 -4380_78015,290,4380_60710,Rathbane,91393-00015-1,1,4380_7778208_3030403,4380_961 -4380_78015,294,4380_60711,Rathbane,91397-00018-1,1,4380_7778208_3030403,4380_961 -4380_78015,295,4380_60712,Rathbane,91395-00019-1,1,4380_7778208_3030403,4380_961 -4380_78015,293,4380_60713,Rathbane,91389-00017-1,1,4380_7778208_3030403,4380_961 -4380_78015,296,4380_60714,Rathbane,92139-00021-1,1,4380_7778208_3030406,4380_964 -4380_77950,297,4380_6072,Blanchardstown,54389-00008-1,1,4380_7778208_1051103,4380_64 -4380_78015,297,4380_60721,Rathbane,91683-00008-1,1,4380_7778208_3030404,4380_961 -4380_78015,285,4380_60722,Rathbane,91948-00009-1,1,4380_7778208_3030405,4380_962 -4380_78015,288,4380_60724,Rathbane,91942-00011-1,1,4380_7778208_3030405,4380_962 -4380_78015,287,4380_60725,Rathbane,91944-00012-1,1,4380_7778208_3030405,4380_962 -4380_78015,286,4380_60726,Rathbane,91940-00010-1,1,4380_7778208_3030405,4380_962 -4380_78015,291,4380_60727,Rathbane,91684-00013-1,1,4380_7778208_3030404,4380_965 -4380_78015,289,4380_60728,Rathbane,91946-00014-1,1,4380_7778208_3030405,4380_962 -4380_78015,292,4380_60729,Rathbane,91941-00016-1,1,4380_7778208_3030405,4380_962 -4380_77950,288,4380_6073,Blanchardstown,54296-00011-1,1,4380_7778208_1051102,4380_63 -4380_78015,290,4380_60730,Rathbane,91949-00015-1,1,4380_7778208_3030405,4380_962 -4380_78015,294,4380_60731,Rathbane,91945-00018-1,1,4380_7778208_3030405,4380_962 -4380_78015,295,4380_60732,Rathbane,91947-00019-1,1,4380_7778208_3030405,4380_962 -4380_78015,293,4380_60733,Rathbane,91943-00017-1,1,4380_7778208_3030405,4380_962 -4380_78015,296,4380_60734,Rathbane,91685-00021-1,1,4380_7778208_3030404,4380_965 -4380_77950,287,4380_6074,Blanchardstown,54294-00012-1,1,4380_7778208_1051102,4380_63 -4380_78015,285,4380_60740,Rathbane,90907-00009-1,1,4380_7778208_3030401,4380_961 -4380_78015,288,4380_60742,Rathbane,90911-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_60743,Rathbane,90905-00012-1,1,4380_7778208_3030401,4380_961 -4380_78015,286,4380_60744,Rathbane,90909-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_60745,Rathbane,91171-00013-1,1,4380_7778208_3030402,4380_964 -4380_78015,289,4380_60746,Rathbane,90913-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_60747,Rathbane,90910-00016-1,1,4380_7778208_3030401,4380_961 -4380_78015,290,4380_60748,Rathbane,90908-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_60749,Rathbane,90906-00018-1,1,4380_7778208_3030401,4380_961 -4380_77950,289,4380_6075,Blanchardstown,54298-00014-1,1,4380_7778208_1051102,4380_63 -4380_78015,295,4380_60750,Rathbane,90914-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_60751,Rathbane,90912-00017-1,1,4380_7778208_3030401,4380_961 -4380_78015,296,4380_60752,Rathbane,91172-00021-1,1,4380_7778208_3030402,4380_964 -4380_78015,297,4380_60754,Rathbane,91173-00008-1,1,4380_7778208_3030402,4380_962 -4380_77950,290,4380_6076,Blanchardstown,54301-00015-1,1,4380_7778208_1051102,4380_63 -4380_78015,285,4380_60760,Rathbane,91686-00009-1,1,4380_7778208_3030404,4380_962 -4380_78015,288,4380_60762,Rathbane,91692-00011-1,1,4380_7778208_3030404,4380_962 -4380_78015,287,4380_60763,Rathbane,91694-00012-1,1,4380_7778208_3030404,4380_962 -4380_78015,286,4380_60764,Rathbane,91690-00010-1,1,4380_7778208_3030404,4380_962 -4380_78015,291,4380_60765,Rathbane,91401-00013-1,1,4380_7778208_3030403,4380_965 -4380_78015,289,4380_60766,Rathbane,91688-00014-1,1,4380_7778208_3030404,4380_962 -4380_78015,292,4380_60767,Rathbane,91691-00016-1,1,4380_7778208_3030404,4380_962 -4380_78015,290,4380_60768,Rathbane,91687-00015-1,1,4380_7778208_3030404,4380_962 -4380_78015,294,4380_60769,Rathbane,91695-00018-1,1,4380_7778208_3030404,4380_962 -4380_77950,291,4380_6077,Blanchardstown,54539-00013-1,1,4380_7778208_1051105,4380_67 -4380_78015,295,4380_60770,Rathbane,91689-00019-1,1,4380_7778208_3030404,4380_962 -4380_78015,293,4380_60771,Rathbane,91693-00017-1,1,4380_7778208_3030404,4380_962 -4380_78015,296,4380_60772,Rathbane,91402-00021-1,1,4380_7778208_3030403,4380_965 -4380_78015,297,4380_60774,Rathbane,91413-00008-1,1,4380_7778208_3030403,4380_961 -4380_77950,292,4380_6078,Blanchardstown,54293-00016-1,1,4380_7778208_1051102,4380_63 -4380_78015,285,4380_60780,Rathbane,91176-00009-1,1,4380_7778208_3030402,4380_961 -4380_78015,288,4380_60782,Rathbane,91180-00011-1,1,4380_7778208_3030402,4380_961 -4380_78015,287,4380_60783,Rathbane,91178-00012-1,1,4380_7778208_3030402,4380_961 -4380_78015,286,4380_60784,Rathbane,91174-00010-1,1,4380_7778208_3030402,4380_961 -4380_78015,291,4380_60785,Rathbane,91952-00013-1,1,4380_7778208_3030405,4380_964 -4380_78015,289,4380_60786,Rathbane,91182-00014-1,1,4380_7778208_3030402,4380_961 -4380_78015,292,4380_60787,Rathbane,91175-00016-1,1,4380_7778208_3030402,4380_961 -4380_78015,290,4380_60788,Rathbane,91177-00015-1,1,4380_7778208_3030402,4380_961 -4380_78015,294,4380_60789,Rathbane,91179-00018-1,1,4380_7778208_3030402,4380_961 -4380_77950,293,4380_6079,Blanchardstown,54297-00017-1,1,4380_7778208_1051102,4380_63 -4380_78015,295,4380_60790,Rathbane,91183-00019-1,1,4380_7778208_3030402,4380_961 -4380_78015,293,4380_60791,Rathbane,91181-00017-1,1,4380_7778208_3030402,4380_961 -4380_78015,296,4380_60792,Rathbane,91953-00021-1,1,4380_7778208_3030405,4380_964 -4380_78015,297,4380_60799,Rathbane,90920-00008-1,1,4380_7778208_3030401,4380_962 -4380_78113,291,4380_608,Dundalk,49962-00013-1,0,4380_7778208_1000906,4380_13 -4380_77950,294,4380_6080,Blanchardstown,54295-00018-1,1,4380_7778208_1051102,4380_63 -4380_78015,285,4380_60800,Rathbane,92152-00009-1,1,4380_7778208_3030406,4380_965 -4380_78015,288,4380_60802,Rathbane,92158-00011-1,1,4380_7778208_3030406,4380_965 -4380_78015,287,4380_60803,Rathbane,92154-00012-1,1,4380_7778208_3030406,4380_965 -4380_78015,286,4380_60804,Rathbane,92160-00010-1,1,4380_7778208_3030406,4380_965 -4380_78015,291,4380_60805,Rathbane,90918-00013-1,1,4380_7778208_3030401,4380_967 -4380_78015,289,4380_60806,Rathbane,92156-00014-1,1,4380_7778208_3030406,4380_965 -4380_78015,292,4380_60807,Rathbane,92161-00016-1,1,4380_7778208_3030406,4380_965 -4380_78015,290,4380_60808,Rathbane,92153-00015-1,1,4380_7778208_3030406,4380_965 -4380_78015,294,4380_60809,Rathbane,92155-00018-1,1,4380_7778208_3030406,4380_965 -4380_77950,295,4380_6081,Blanchardstown,54299-00019-1,1,4380_7778208_1051102,4380_63 -4380_78015,295,4380_60810,Rathbane,92157-00019-1,1,4380_7778208_3030406,4380_965 -4380_78015,293,4380_60811,Rathbane,92159-00017-1,1,4380_7778208_3030406,4380_965 -4380_78015,296,4380_60812,Rathbane,90919-00021-1,1,4380_7778208_3030401,4380_967 -4380_78015,285,4380_60818,Rathbane,91422-00009-1,1,4380_7778208_3030403,4380_961 -4380_77950,296,4380_6082,Blanchardstown,54540-00021-1,1,4380_7778208_1051105,4380_67 -4380_78015,288,4380_60820,Rathbane,91414-00011-1,1,4380_7778208_3030403,4380_961 -4380_78015,287,4380_60821,Rathbane,91416-00012-1,1,4380_7778208_3030403,4380_961 -4380_78015,286,4380_60822,Rathbane,91420-00010-1,1,4380_7778208_3030403,4380_961 -4380_78015,291,4380_60823,Rathbane,92162-00013-1,1,4380_7778208_3030406,4380_964 -4380_78015,289,4380_60824,Rathbane,91418-00014-1,1,4380_7778208_3030403,4380_961 -4380_78015,292,4380_60825,Rathbane,91421-00016-1,1,4380_7778208_3030403,4380_961 -4380_78015,290,4380_60826,Rathbane,91423-00015-1,1,4380_7778208_3030403,4380_961 -4380_78015,294,4380_60827,Rathbane,91417-00018-1,1,4380_7778208_3030403,4380_961 -4380_78015,295,4380_60828,Rathbane,91419-00019-1,1,4380_7778208_3030403,4380_961 -4380_78015,293,4380_60829,Rathbane,91415-00017-1,1,4380_7778208_3030403,4380_961 -4380_78015,296,4380_60830,Rathbane,92163-00021-1,1,4380_7778208_3030406,4380_964 -4380_78015,297,4380_60832,Rathbane,91709-00008-1,1,4380_7778208_3030404,4380_961 -4380_78015,285,4380_60838,Rathbane,91972-00009-1,1,4380_7778208_3030405,4380_961 -4380_77950,285,4380_6084,Blanchardstown,4479-00009-1,1,4380_7778208_1050101,4380_68 -4380_78015,288,4380_60840,Rathbane,91968-00011-1,1,4380_7778208_3030405,4380_961 -4380_78015,287,4380_60841,Rathbane,91964-00012-1,1,4380_7778208_3030405,4380_961 -4380_78015,286,4380_60842,Rathbane,91966-00010-1,1,4380_7778208_3030405,4380_961 -4380_78015,291,4380_60843,Rathbane,91710-00013-1,1,4380_7778208_3030404,4380_964 -4380_78015,289,4380_60844,Rathbane,91970-00014-1,1,4380_7778208_3030405,4380_961 -4380_78015,292,4380_60845,Rathbane,91967-00016-1,1,4380_7778208_3030405,4380_961 -4380_78015,290,4380_60846,Rathbane,91973-00015-1,1,4380_7778208_3030405,4380_961 -4380_78015,294,4380_60847,Rathbane,91965-00018-1,1,4380_7778208_3030405,4380_961 -4380_78015,295,4380_60848,Rathbane,91971-00019-1,1,4380_7778208_3030405,4380_961 -4380_78015,293,4380_60849,Rathbane,91969-00017-1,1,4380_7778208_3030405,4380_961 -4380_77950,286,4380_6085,Blanchardstown,4493-00010-1,1,4380_7778208_1050101,4380_68 -4380_78015,296,4380_60850,Rathbane,91711-00021-1,1,4380_7778208_3030404,4380_964 -4380_78015,297,4380_60852,Rathbane,91197-00008-1,1,4380_7778208_3030402,4380_961 -4380_78015,285,4380_60858,Rathbane,90932-00009-1,1,4380_7778208_3030401,4380_961 -4380_77950,288,4380_6086,Blanchardstown,4535-00011-1,1,4380_7778208_1050101,4380_68 -4380_78015,288,4380_60860,Rathbane,90940-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_60861,Rathbane,90936-00012-1,1,4380_7778208_3030401,4380_961 -4380_78015,286,4380_60862,Rathbane,90934-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_60863,Rathbane,91198-00013-1,1,4380_7778208_3030402,4380_964 -4380_78015,289,4380_60864,Rathbane,90938-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_60865,Rathbane,90935-00016-1,1,4380_7778208_3030401,4380_961 -4380_78015,290,4380_60866,Rathbane,90933-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_60867,Rathbane,90937-00018-1,1,4380_7778208_3030401,4380_961 -4380_78015,295,4380_60868,Rathbane,90939-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_60869,Rathbane,90941-00017-1,1,4380_7778208_3030401,4380_961 -4380_77950,287,4380_6087,Blanchardstown,4563-00012-1,1,4380_7778208_1050101,4380_68 -4380_78015,296,4380_60870,Rathbane,91199-00021-1,1,4380_7778208_3030402,4380_964 -4380_78015,297,4380_60877,Rathbane,91427-00008-1,1,4380_7778208_3030403,4380_961 -4380_78015,285,4380_60878,Rathbane,91714-00009-1,1,4380_7778208_3030404,4380_964 -4380_77950,291,4380_6088,Blanchardstown,53989-00013-1,1,4380_7778208_1050101,4380_65 -4380_78015,288,4380_60880,Rathbane,91718-00011-1,1,4380_7778208_3030404,4380_964 -4380_78015,287,4380_60881,Rathbane,91720-00012-1,1,4380_7778208_3030404,4380_964 -4380_78015,286,4380_60882,Rathbane,91716-00010-1,1,4380_7778208_3030404,4380_964 -4380_78015,291,4380_60883,Rathbane,91428-00013-1,1,4380_7778208_3030403,4380_966 -4380_78015,289,4380_60884,Rathbane,91712-00014-1,1,4380_7778208_3030404,4380_964 -4380_78015,292,4380_60885,Rathbane,91717-00016-1,1,4380_7778208_3030404,4380_964 -4380_78015,290,4380_60886,Rathbane,91715-00015-1,1,4380_7778208_3030404,4380_964 -4380_78015,294,4380_60887,Rathbane,91721-00018-1,1,4380_7778208_3030404,4380_964 -4380_78015,295,4380_60888,Rathbane,91713-00019-1,1,4380_7778208_3030404,4380_964 -4380_78015,293,4380_60889,Rathbane,91719-00017-1,1,4380_7778208_3030404,4380_964 -4380_77950,295,4380_6089,Blanchardstown,4451-00019-1,1,4380_7778208_1050101,4380_68 -4380_78015,296,4380_60890,Rathbane,91429-00021-1,1,4380_7778208_3030403,4380_966 -4380_78015,285,4380_60896,Rathbane,91204-00009-1,1,4380_7778208_3030402,4380_961 -4380_78015,288,4380_60898,Rathbane,91202-00011-1,1,4380_7778208_3030402,4380_961 -4380_78015,287,4380_60899,Rathbane,91200-00012-1,1,4380_7778208_3030402,4380_961 -4380_78113,292,4380_609,Dundalk,49953-00016-1,0,4380_7778208_1000906,4380_10 -4380_78015,286,4380_60900,Rathbane,91208-00010-1,1,4380_7778208_3030402,4380_961 -4380_78015,291,4380_60901,Rathbane,91976-00013-1,1,4380_7778208_3030405,4380_964 -4380_78015,289,4380_60902,Rathbane,91206-00014-1,1,4380_7778208_3030402,4380_961 -4380_78015,292,4380_60903,Rathbane,91209-00016-1,1,4380_7778208_3030402,4380_961 -4380_78015,290,4380_60904,Rathbane,91205-00015-1,1,4380_7778208_3030402,4380_961 -4380_78015,294,4380_60905,Rathbane,91201-00018-1,1,4380_7778208_3030402,4380_961 -4380_78015,295,4380_60906,Rathbane,91207-00019-1,1,4380_7778208_3030402,4380_961 -4380_78015,293,4380_60907,Rathbane,91203-00017-1,1,4380_7778208_3030402,4380_961 -4380_78015,296,4380_60908,Rathbane,91977-00021-1,1,4380_7778208_3030405,4380_964 -4380_78015,297,4380_60910,Rathbane,90944-00008-1,1,4380_7778208_3030401,4380_961 -4380_78015,285,4380_60916,Rathbane,92178-00009-1,1,4380_7778208_3030406,4380_961 -4380_78015,288,4380_60918,Rathbane,92176-00011-1,1,4380_7778208_3030406,4380_961 -4380_78015,287,4380_60919,Rathbane,92180-00012-1,1,4380_7778208_3030406,4380_961 -4380_78015,286,4380_60920,Rathbane,92184-00010-1,1,4380_7778208_3030406,4380_961 -4380_78015,291,4380_60921,Rathbane,90945-00013-1,1,4380_7778208_3030401,4380_964 -4380_78015,289,4380_60922,Rathbane,92182-00014-1,1,4380_7778208_3030406,4380_961 -4380_78015,292,4380_60923,Rathbane,92185-00016-1,1,4380_7778208_3030406,4380_961 -4380_78015,290,4380_60924,Rathbane,92179-00015-1,1,4380_7778208_3030406,4380_961 -4380_78015,294,4380_60925,Rathbane,92181-00018-1,1,4380_7778208_3030406,4380_961 -4380_78015,295,4380_60926,Rathbane,92183-00019-1,1,4380_7778208_3030406,4380_961 -4380_78015,293,4380_60927,Rathbane,92177-00017-1,1,4380_7778208_3030406,4380_961 -4380_78015,296,4380_60928,Rathbane,90946-00021-1,1,4380_7778208_3030401,4380_964 -4380_78015,297,4380_60930,Rathbane,91725-00008-1,1,4380_7778208_3030404,4380_961 -4380_78015,285,4380_60936,Rathbane,91445-00009-1,1,4380_7778208_3030403,4380_961 -4380_78015,288,4380_60938,Rathbane,91441-00011-1,1,4380_7778208_3030403,4380_961 -4380_78015,287,4380_60939,Rathbane,91449-00012-1,1,4380_7778208_3030403,4380_961 -4380_78015,286,4380_60940,Rathbane,91443-00010-1,1,4380_7778208_3030403,4380_961 -4380_78015,291,4380_60941,Rathbane,92186-00013-1,1,4380_7778208_3030406,4380_964 -4380_78015,289,4380_60942,Rathbane,91447-00014-1,1,4380_7778208_3030403,4380_961 -4380_78015,292,4380_60943,Rathbane,91444-00016-1,1,4380_7778208_3030403,4380_961 -4380_78015,290,4380_60944,Rathbane,91446-00015-1,1,4380_7778208_3030403,4380_961 -4380_78015,294,4380_60945,Rathbane,91450-00018-1,1,4380_7778208_3030403,4380_961 -4380_78015,295,4380_60946,Rathbane,91448-00019-1,1,4380_7778208_3030403,4380_961 -4380_78015,293,4380_60947,Rathbane,91442-00017-1,1,4380_7778208_3030403,4380_961 -4380_78015,296,4380_60948,Rathbane,92187-00021-1,1,4380_7778208_3030406,4380_964 -4380_77950,289,4380_6095,Blanchardstown,53992-00014-1,1,4380_7778208_1050101,4380_61 -4380_78015,297,4380_60955,Rathbane,91213-00008-1,1,4380_7778208_3030402,4380_961 -4380_78015,285,4380_60956,Rathbane,91994-00009-1,1,4380_7778208_3030405,4380_964 -4380_78015,288,4380_60958,Rathbane,91990-00011-1,1,4380_7778208_3030405,4380_964 -4380_78015,287,4380_60959,Rathbane,91996-00012-1,1,4380_7778208_3030405,4380_964 -4380_77950,290,4380_6096,Blanchardstown,53993-00015-1,1,4380_7778208_1050101,4380_61 -4380_78015,286,4380_60960,Rathbane,91988-00010-1,1,4380_7778208_3030405,4380_964 -4380_78015,291,4380_60961,Rathbane,91736-00013-1,1,4380_7778208_3030404,4380_966 -4380_78015,289,4380_60962,Rathbane,91992-00014-1,1,4380_7778208_3030405,4380_964 -4380_78015,292,4380_60963,Rathbane,91989-00016-1,1,4380_7778208_3030405,4380_964 -4380_78015,290,4380_60964,Rathbane,91995-00015-1,1,4380_7778208_3030405,4380_964 -4380_78015,294,4380_60965,Rathbane,91997-00018-1,1,4380_7778208_3030405,4380_964 -4380_78015,295,4380_60966,Rathbane,91993-00019-1,1,4380_7778208_3030405,4380_964 -4380_78015,293,4380_60967,Rathbane,91991-00017-1,1,4380_7778208_3030405,4380_964 -4380_78015,296,4380_60968,Rathbane,91737-00021-1,1,4380_7778208_3030404,4380_966 -4380_77950,292,4380_6097,Blanchardstown,53991-00016-1,1,4380_7778208_1050101,4380_61 -4380_78015,285,4380_60974,Rathbane,90966-00009-1,1,4380_7778208_3030401,4380_961 -4380_78015,288,4380_60976,Rathbane,90964-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_60977,Rathbane,90958-00012-1,1,4380_7778208_3030401,4380_961 -4380_78015,286,4380_60978,Rathbane,90962-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_60979,Rathbane,91224-00013-1,1,4380_7778208_3030402,4380_964 -4380_77950,293,4380_6098,Blanchardstown,53994-00017-1,1,4380_7778208_1050101,4380_61 -4380_78015,289,4380_60980,Rathbane,90960-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_60981,Rathbane,90963-00016-1,1,4380_7778208_3030401,4380_961 -4380_78015,290,4380_60982,Rathbane,90967-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_60983,Rathbane,90959-00018-1,1,4380_7778208_3030401,4380_961 -4380_78015,295,4380_60984,Rathbane,90961-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_60985,Rathbane,90965-00017-1,1,4380_7778208_3030401,4380_961 -4380_78015,296,4380_60986,Rathbane,91225-00021-1,1,4380_7778208_3030402,4380_964 -4380_78015,297,4380_60988,Rathbane,91453-00008-1,1,4380_7778208_3030403,4380_961 -4380_77950,294,4380_6099,Blanchardstown,53990-00018-1,1,4380_7778208_1050101,4380_61 -4380_78015,285,4380_60994,Rathbane,91739-00009-1,1,4380_7778208_3030404,4380_961 -4380_78015,288,4380_60996,Rathbane,91741-00011-1,1,4380_7778208_3030404,4380_961 -4380_78015,287,4380_60997,Rathbane,91745-00012-1,1,4380_7778208_3030404,4380_961 -4380_78015,286,4380_60998,Rathbane,91743-00010-1,1,4380_7778208_3030404,4380_961 -4380_78015,291,4380_60999,Rathbane,91454-00013-1,1,4380_7778208_3030403,4380_964 -4380_77946,294,4380_61,Dundalk,50298-00018-1,0,4380_7778208_1000913,4380_1 -4380_78113,293,4380_610,Dundalk,49957-00017-1,0,4380_7778208_1000906,4380_10 -4380_77950,296,4380_6100,Blanchardstown,4577-00021-1,1,4380_7778208_1050101,4380_69 -4380_78015,289,4380_61000,Rathbane,91747-00014-1,1,4380_7778208_3030404,4380_961 -4380_78015,292,4380_61001,Rathbane,91744-00016-1,1,4380_7778208_3030404,4380_961 -4380_78015,290,4380_61002,Rathbane,91740-00015-1,1,4380_7778208_3030404,4380_961 -4380_78015,294,4380_61003,Rathbane,91746-00018-1,1,4380_7778208_3030404,4380_961 -4380_78015,295,4380_61004,Rathbane,91748-00019-1,1,4380_7778208_3030404,4380_961 -4380_78015,293,4380_61005,Rathbane,91742-00017-1,1,4380_7778208_3030404,4380_961 -4380_78015,296,4380_61006,Rathbane,91455-00021-1,1,4380_7778208_3030403,4380_964 -4380_78015,297,4380_61008,Rathbane,90970-00008-1,1,4380_7778208_3030401,4380_961 -4380_78015,285,4380_61014,Rathbane,91229-00009-1,1,4380_7778208_3030402,4380_961 -4380_78015,288,4380_61016,Rathbane,91231-00011-1,1,4380_7778208_3030402,4380_961 -4380_78015,287,4380_61017,Rathbane,91233-00012-1,1,4380_7778208_3030402,4380_961 -4380_78015,286,4380_61018,Rathbane,91227-00010-1,1,4380_7778208_3030402,4380_961 -4380_78015,291,4380_61019,Rathbane,92000-00013-1,1,4380_7778208_3030405,4380_964 -4380_78015,289,4380_61020,Rathbane,91235-00014-1,1,4380_7778208_3030402,4380_961 -4380_78015,292,4380_61021,Rathbane,91228-00016-1,1,4380_7778208_3030402,4380_961 -4380_78015,290,4380_61022,Rathbane,91230-00015-1,1,4380_7778208_3030402,4380_961 -4380_78015,294,4380_61023,Rathbane,91234-00018-1,1,4380_7778208_3030402,4380_961 -4380_78015,295,4380_61024,Rathbane,91236-00019-1,1,4380_7778208_3030402,4380_961 -4380_78015,293,4380_61025,Rathbane,91232-00017-1,1,4380_7778208_3030402,4380_961 -4380_78015,296,4380_61026,Rathbane,92001-00021-1,1,4380_7778208_3030405,4380_964 -4380_78015,297,4380_61033,Rathbane,91751-00008-1,1,4380_7778208_3030404,4380_961 -4380_78015,285,4380_61034,Rathbane,92206-00009-1,1,4380_7778208_3030406,4380_964 -4380_78015,288,4380_61036,Rathbane,92208-00011-1,1,4380_7778208_3030406,4380_964 -4380_78015,287,4380_61037,Rathbane,92202-00012-1,1,4380_7778208_3030406,4380_964 -4380_78015,286,4380_61038,Rathbane,92200-00010-1,1,4380_7778208_3030406,4380_964 -4380_78015,291,4380_61039,Rathbane,90971-00013-1,1,4380_7778208_3030401,4380_966 -4380_78015,289,4380_61040,Rathbane,92204-00014-1,1,4380_7778208_3030406,4380_964 -4380_78015,292,4380_61041,Rathbane,92201-00016-1,1,4380_7778208_3030406,4380_964 -4380_78015,290,4380_61042,Rathbane,92207-00015-1,1,4380_7778208_3030406,4380_964 -4380_78015,294,4380_61043,Rathbane,92203-00018-1,1,4380_7778208_3030406,4380_964 -4380_78015,295,4380_61044,Rathbane,92205-00019-1,1,4380_7778208_3030406,4380_964 -4380_78015,293,4380_61045,Rathbane,92209-00017-1,1,4380_7778208_3030406,4380_964 -4380_78015,296,4380_61046,Rathbane,90972-00021-1,1,4380_7778208_3030401,4380_966 -4380_78015,285,4380_61052,Rathbane,91469-00009-1,1,4380_7778208_3030403,4380_961 -4380_78015,288,4380_61054,Rathbane,91471-00011-1,1,4380_7778208_3030403,4380_961 -4380_78015,287,4380_61055,Rathbane,91475-00012-1,1,4380_7778208_3030403,4380_961 -4380_78015,286,4380_61056,Rathbane,91473-00010-1,1,4380_7778208_3030403,4380_961 -4380_78015,291,4380_61057,Rathbane,92210-00013-1,1,4380_7778208_3030406,4380_964 -4380_78015,289,4380_61058,Rathbane,91467-00014-1,1,4380_7778208_3030403,4380_961 -4380_78015,292,4380_61059,Rathbane,91474-00016-1,1,4380_7778208_3030403,4380_961 -4380_78015,290,4380_61060,Rathbane,91470-00015-1,1,4380_7778208_3030403,4380_961 -4380_78015,294,4380_61061,Rathbane,91476-00018-1,1,4380_7778208_3030403,4380_961 -4380_78015,295,4380_61062,Rathbane,91468-00019-1,1,4380_7778208_3030403,4380_961 -4380_78015,293,4380_61063,Rathbane,91472-00017-1,1,4380_7778208_3030403,4380_961 -4380_78015,296,4380_61064,Rathbane,92211-00021-1,1,4380_7778208_3030406,4380_964 -4380_78015,297,4380_61066,Rathbane,91239-00008-1,1,4380_7778208_3030402,4380_961 -4380_78015,285,4380_61072,Rathbane,92012-00009-1,1,4380_7778208_3030405,4380_961 -4380_78015,288,4380_61074,Rathbane,92016-00011-1,1,4380_7778208_3030405,4380_961 -4380_78015,287,4380_61075,Rathbane,92020-00012-1,1,4380_7778208_3030405,4380_961 -4380_78015,286,4380_61076,Rathbane,92018-00010-1,1,4380_7778208_3030405,4380_961 -4380_78015,291,4380_61077,Rathbane,91762-00013-1,1,4380_7778208_3030404,4380_964 -4380_78015,289,4380_61078,Rathbane,92014-00014-1,1,4380_7778208_3030405,4380_961 -4380_78015,292,4380_61079,Rathbane,92019-00016-1,1,4380_7778208_3030405,4380_961 -4380_77950,285,4380_6108,Blanchardstown,54394-00009-1,1,4380_7778208_1051103,4380_63 -4380_78015,290,4380_61080,Rathbane,92013-00015-1,1,4380_7778208_3030405,4380_961 -4380_78015,294,4380_61081,Rathbane,92021-00018-1,1,4380_7778208_3030405,4380_961 -4380_78015,295,4380_61082,Rathbane,92015-00019-1,1,4380_7778208_3030405,4380_961 -4380_78015,293,4380_61083,Rathbane,92017-00017-1,1,4380_7778208_3030405,4380_961 -4380_78015,296,4380_61084,Rathbane,91763-00021-1,1,4380_7778208_3030404,4380_964 -4380_78015,297,4380_61086,Rathbane,91479-00008-1,1,4380_7778208_3030403,4380_961 -4380_77950,286,4380_6109,Blanchardstown,54400-00010-1,1,4380_7778208_1051103,4380_63 -4380_78015,285,4380_61092,Rathbane,90984-00009-1,1,4380_7778208_3030401,4380_961 -4380_78015,288,4380_61094,Rathbane,90988-00011-1,1,4380_7778208_3030401,4380_961 -4380_78015,287,4380_61095,Rathbane,90990-00012-1,1,4380_7778208_3030401,4380_961 -4380_78015,286,4380_61096,Rathbane,90986-00010-1,1,4380_7778208_3030401,4380_961 -4380_78015,291,4380_61097,Rathbane,91250-00013-1,1,4380_7778208_3030402,4380_964 -4380_78015,289,4380_61098,Rathbane,90992-00014-1,1,4380_7778208_3030401,4380_961 -4380_78015,292,4380_61099,Rathbane,90987-00016-1,1,4380_7778208_3030401,4380_961 -4380_78113,294,4380_611,Dundalk,49959-00018-1,0,4380_7778208_1000906,4380_10 -4380_77950,297,4380_6110,Blanchardstown,54491-00008-1,1,4380_7778208_1051104,4380_64 -4380_78015,290,4380_61100,Rathbane,90985-00015-1,1,4380_7778208_3030401,4380_961 -4380_78015,294,4380_61101,Rathbane,90991-00018-1,1,4380_7778208_3030401,4380_961 -4380_78015,295,4380_61102,Rathbane,90993-00019-1,1,4380_7778208_3030401,4380_961 -4380_78015,293,4380_61103,Rathbane,90989-00017-1,1,4380_7778208_3030401,4380_961 -4380_78015,296,4380_61104,Rathbane,91251-00021-1,1,4380_7778208_3030402,4380_964 -4380_77950,288,4380_6111,Blanchardstown,54390-00011-1,1,4380_7778208_1051103,4380_63 -4380_78015,297,4380_61111,Rathbane,90996-00008-1,1,4380_7778208_3030401,4380_961 -4380_78015,285,4380_61112,Rathbane,91773-00009-1,1,4380_7778208_3030404,4380_964 -4380_78015,288,4380_61114,Rathbane,91765-00011-1,1,4380_7778208_3030404,4380_964 -4380_78015,287,4380_61115,Rathbane,91767-00012-1,1,4380_7778208_3030404,4380_964 -4380_78015,286,4380_61116,Rathbane,91771-00010-1,1,4380_7778208_3030404,4380_964 -4380_78015,291,4380_61117,Rathbane,91480-00013-1,1,4380_7778208_3030403,4380_961 -4380_78015,289,4380_61118,Rathbane,91769-00014-1,1,4380_7778208_3030404,4380_964 -4380_78015,292,4380_61119,Rathbane,91772-00016-1,1,4380_7778208_3030404,4380_964 -4380_77950,287,4380_6112,Blanchardstown,54392-00012-1,1,4380_7778208_1051103,4380_63 -4380_78015,290,4380_61120,Rathbane,91774-00015-1,1,4380_7778208_3030404,4380_964 -4380_78015,294,4380_61121,Rathbane,91768-00018-1,1,4380_7778208_3030404,4380_964 -4380_78015,295,4380_61122,Rathbane,91770-00019-1,1,4380_7778208_3030404,4380_964 -4380_78015,293,4380_61123,Rathbane,91766-00017-1,1,4380_7778208_3030404,4380_964 -4380_78015,296,4380_61124,Rathbane,91481-00021-1,1,4380_7778208_3030403,4380_961 -4380_77950,289,4380_6113,Blanchardstown,54398-00014-1,1,4380_7778208_1051103,4380_63 -4380_78015,297,4380_61131,Rathbane,91775-00008-1,1,4380_7778208_3030404,4380_961 -4380_78015,285,4380_61132,Rathbane,92232-00009-1,1,4380_7778208_3030406,4380_964 -4380_78015,288,4380_61134,Rathbane,92224-00011-1,1,4380_7778208_3030406,4380_964 -4380_78015,287,4380_61135,Rathbane,92230-00012-1,1,4380_7778208_3030406,4380_964 -4380_78015,286,4380_61136,Rathbane,92226-00010-1,1,4380_7778208_3030406,4380_964 -4380_78015,291,4380_61137,Rathbane,90997-00013-1,1,4380_7778208_3030401,4380_961 -4380_78015,289,4380_61138,Rathbane,92228-00014-1,1,4380_7778208_3030406,4380_964 -4380_78015,292,4380_61139,Rathbane,92227-00016-1,1,4380_7778208_3030406,4380_964 -4380_77950,290,4380_6114,Blanchardstown,54395-00015-1,1,4380_7778208_1051103,4380_63 -4380_78015,290,4380_61140,Rathbane,92233-00015-1,1,4380_7778208_3030406,4380_964 -4380_78015,294,4380_61141,Rathbane,92231-00018-1,1,4380_7778208_3030406,4380_964 -4380_78015,295,4380_61142,Rathbane,92229-00019-1,1,4380_7778208_3030406,4380_964 -4380_78015,293,4380_61143,Rathbane,92225-00017-1,1,4380_7778208_3030406,4380_964 -4380_78015,296,4380_61144,Rathbane,90998-00021-1,1,4380_7778208_3030401,4380_961 -4380_77950,291,4380_6115,Blanchardstown,54396-00013-1,1,4380_7778208_1051103,4380_67 -4380_78015,297,4380_61151,Rathbane,91253-00008-1,1,4380_7778208_3030402,4380_961 -4380_78015,285,4380_61152,Rathbane,91494-00009-1,1,4380_7778208_3030403,4380_964 -4380_78015,288,4380_61154,Rathbane,91498-00011-1,1,4380_7778208_3030403,4380_964 -4380_78015,287,4380_61155,Rathbane,91496-00012-1,1,4380_7778208_3030403,4380_964 -4380_78015,286,4380_61156,Rathbane,91500-00010-1,1,4380_7778208_3030403,4380_964 -4380_78015,291,4380_61157,Rathbane,92234-00013-1,1,4380_7778208_3030406,4380_966 -4380_78015,289,4380_61158,Rathbane,91502-00014-1,1,4380_7778208_3030403,4380_964 -4380_78015,292,4380_61159,Rathbane,91501-00016-1,1,4380_7778208_3030403,4380_964 -4380_77950,292,4380_6116,Blanchardstown,54401-00016-1,1,4380_7778208_1051103,4380_63 -4380_78015,290,4380_61160,Rathbane,91495-00015-1,1,4380_7778208_3030403,4380_964 -4380_78015,294,4380_61161,Rathbane,91497-00018-1,1,4380_7778208_3030403,4380_964 -4380_78015,295,4380_61162,Rathbane,91503-00019-1,1,4380_7778208_3030403,4380_964 -4380_78015,293,4380_61163,Rathbane,91499-00017-1,1,4380_7778208_3030403,4380_964 -4380_78015,296,4380_61164,Rathbane,92235-00021-1,1,4380_7778208_3030406,4380_966 -4380_77950,293,4380_6117,Blanchardstown,54391-00017-1,1,4380_7778208_1051103,4380_63 -4380_78015,297,4380_61171,Rathbane,91793-00008-1,1,4380_7778208_3030404,4380_961 -4380_78015,285,4380_61172,Rathbane,91787-00009-1,1,4380_7778208_3030404,4380_964 -4380_78015,288,4380_61174,Rathbane,91794-00011-1,1,4380_7778208_3030404,4380_964 -4380_78015,287,4380_61175,Rathbane,91798-00012-1,1,4380_7778208_3030404,4380_964 -4380_78015,286,4380_61176,Rathbane,91789-00010-1,1,4380_7778208_3030404,4380_964 -4380_78015,291,4380_61177,Rathbane,91796-00013-1,1,4380_7778208_3030404,4380_966 -4380_78015,289,4380_61178,Rathbane,91791-00014-1,1,4380_7778208_3030404,4380_964 -4380_78015,292,4380_61179,Rathbane,91790-00016-1,1,4380_7778208_3030404,4380_964 -4380_77950,294,4380_6118,Blanchardstown,54393-00018-1,1,4380_7778208_1051103,4380_63 -4380_78015,290,4380_61180,Rathbane,91788-00015-1,1,4380_7778208_3030404,4380_964 -4380_78015,294,4380_61181,Rathbane,91799-00018-1,1,4380_7778208_3030404,4380_964 -4380_78015,295,4380_61182,Rathbane,91792-00019-1,1,4380_7778208_3030404,4380_964 -4380_78015,293,4380_61183,Rathbane,91795-00017-1,1,4380_7778208_3030404,4380_964 -4380_78015,296,4380_61184,Rathbane,91797-00021-1,1,4380_7778208_3030404,4380_966 -4380_77950,295,4380_6119,Blanchardstown,54399-00019-1,1,4380_7778208_1051103,4380_63 -4380_78015,297,4380_61191,Rathbane,91255-00008-1,1,4380_7778208_3030402,4380_961 -4380_78015,285,4380_61192,Rathbane,92256-00009-1,1,4380_7778208_3030406,4380_964 -4380_78015,288,4380_61194,Rathbane,92252-00011-1,1,4380_7778208_3030406,4380_964 -4380_78015,287,4380_61195,Rathbane,92250-00012-1,1,4380_7778208_3030406,4380_964 -4380_78015,286,4380_61196,Rathbane,92258-00010-1,1,4380_7778208_3030406,4380_964 -4380_78015,291,4380_61197,Rathbane,92254-00013-1,1,4380_7778208_3030406,4380_966 -4380_78015,289,4380_61198,Rathbane,92248-00014-1,1,4380_7778208_3030406,4380_964 -4380_78015,292,4380_61199,Rathbane,92259-00016-1,1,4380_7778208_3030406,4380_964 -4380_78113,295,4380_612,Dundalk,49955-00019-1,0,4380_7778208_1000906,4380_10 -4380_77950,296,4380_6120,Blanchardstown,54397-00021-1,1,4380_7778208_1051103,4380_67 -4380_78015,290,4380_61200,Rathbane,92257-00015-1,1,4380_7778208_3030406,4380_964 -4380_78015,294,4380_61201,Rathbane,92251-00018-1,1,4380_7778208_3030406,4380_964 -4380_78015,295,4380_61202,Rathbane,92249-00019-1,1,4380_7778208_3030406,4380_964 -4380_78015,293,4380_61203,Rathbane,92253-00017-1,1,4380_7778208_3030406,4380_964 -4380_78015,296,4380_61204,Rathbane,92255-00021-1,1,4380_7778208_3030406,4380_966 -4380_78015,297,4380_61211,Rathbane,91813-00008-1,1,4380_7778208_3030404,4380_961 -4380_78015,285,4380_61212,Rathbane,91520-00009-1,1,4380_7778208_3030403,4380_964 -4380_78015,288,4380_61214,Rathbane,91514-00011-1,1,4380_7778208_3030403,4380_964 -4380_78015,287,4380_61215,Rathbane,91518-00012-1,1,4380_7778208_3030403,4380_964 -4380_78015,286,4380_61216,Rathbane,91516-00010-1,1,4380_7778208_3030403,4380_964 -4380_78015,291,4380_61217,Rathbane,91814-00013-1,1,4380_7778208_3030404,4380_966 -4380_78015,289,4380_61218,Rathbane,91522-00014-1,1,4380_7778208_3030403,4380_964 -4380_78015,292,4380_61219,Rathbane,91517-00016-1,1,4380_7778208_3030403,4380_964 -4380_77950,285,4380_6122,Blanchardstown,4633-00009-1,1,4380_7778208_1050102,4380_68 -4380_78015,290,4380_61220,Rathbane,91521-00015-1,1,4380_7778208_3030403,4380_964 -4380_78015,294,4380_61221,Rathbane,91519-00018-1,1,4380_7778208_3030403,4380_964 -4380_78015,295,4380_61222,Rathbane,91523-00019-1,1,4380_7778208_3030403,4380_964 -4380_78015,293,4380_61223,Rathbane,91515-00017-1,1,4380_7778208_3030403,4380_964 -4380_78015,296,4380_61224,Rathbane,91815-00021-1,1,4380_7778208_3030404,4380_966 -4380_77950,286,4380_6123,Blanchardstown,4675-00010-1,1,4380_7778208_1050102,4380_68 -4380_78015,297,4380_61231,Rathbane,91257-00008-1,1,4380_7778208_3030402,4380_961 -4380_78015,285,4380_61232,Rathbane,92278-00009-1,1,4380_7778208_3030406,4380_961 -4380_78015,288,4380_61234,Rathbane,92276-00011-1,1,4380_7778208_3030406,4380_961 -4380_78015,287,4380_61235,Rathbane,92272-00012-1,1,4380_7778208_3030406,4380_961 -4380_78015,286,4380_61236,Rathbane,92274-00010-1,1,4380_7778208_3030406,4380_961 -4380_78015,291,4380_61237,Rathbane,92280-00013-1,1,4380_7778208_3030406,4380_964 -4380_78015,289,4380_61238,Rathbane,92282-00014-1,1,4380_7778208_3030406,4380_961 -4380_78015,292,4380_61239,Rathbane,92275-00016-1,1,4380_7778208_3030406,4380_961 -4380_77950,288,4380_6124,Blanchardstown,4689-00011-1,1,4380_7778208_1050102,4380_68 -4380_78015,290,4380_61240,Rathbane,92279-00015-1,1,4380_7778208_3030406,4380_961 -4380_78015,294,4380_61241,Rathbane,92273-00018-1,1,4380_7778208_3030406,4380_961 -4380_78015,295,4380_61242,Rathbane,92283-00019-1,1,4380_7778208_3030406,4380_961 -4380_78015,293,4380_61243,Rathbane,92277-00017-1,1,4380_7778208_3030406,4380_961 -4380_78015,296,4380_61244,Rathbane,92281-00021-1,1,4380_7778208_3030406,4380_964 -4380_77950,287,4380_6125,Blanchardstown,4717-00012-1,1,4380_7778208_1050102,4380_68 -4380_78015,297,4380_61251,City Centre,91819-00008-1,1,4380_7778208_3030404,4380_963 -4380_78015,285,4380_61252,City Centre,91540-00009-1,1,4380_7778208_3030403,4380_963 -4380_78015,288,4380_61254,City Centre,91538-00011-1,1,4380_7778208_3030403,4380_963 -4380_78015,287,4380_61255,City Centre,91534-00012-1,1,4380_7778208_3030403,4380_963 -4380_78015,286,4380_61256,City Centre,91536-00010-1,1,4380_7778208_3030403,4380_963 -4380_78015,291,4380_61257,City Centre,91820-00013-1,1,4380_7778208_3030404,4380_963 -4380_78015,289,4380_61258,City Centre,91542-00014-1,1,4380_7778208_3030403,4380_963 -4380_78015,292,4380_61259,City Centre,91537-00016-1,1,4380_7778208_3030403,4380_963 -4380_77950,291,4380_6126,Blanchardstown,54073-00013-1,1,4380_7778208_1050102,4380_65 -4380_78015,290,4380_61260,City Centre,91541-00015-1,1,4380_7778208_3030403,4380_963 -4380_78015,294,4380_61261,City Centre,91535-00018-1,1,4380_7778208_3030403,4380_963 -4380_78015,295,4380_61262,City Centre,91543-00019-1,1,4380_7778208_3030403,4380_963 -4380_78015,293,4380_61263,City Centre,91539-00017-1,1,4380_7778208_3030403,4380_963 -4380_78015,296,4380_61264,City Centre,91821-00021-1,1,4380_7778208_3030404,4380_963 -4380_77950,295,4380_6127,Blanchardstown,4605-00019-1,1,4380_7778208_1050102,4380_68 -4380_78016,285,4380_61270,Raheen,92878-00009-1,0,4380_7778208_3040404,4380_973 -4380_78016,288,4380_61271,Raheen,92880-00011-1,0,4380_7778208_3040404,4380_973 -4380_78016,286,4380_61272,Raheen,92874-00010-1,0,4380_7778208_3040404,4380_973 -4380_78016,289,4380_61273,Raheen,92876-00014-1,0,4380_7778208_3040404,4380_973 -4380_78016,287,4380_61274,Raheen,92882-00012-1,0,4380_7778208_3040404,4380_973 -4380_78016,292,4380_61275,Raheen,92875-00016-1,0,4380_7778208_3040404,4380_973 -4380_78016,290,4380_61276,Raheen,92879-00015-1,0,4380_7778208_3040404,4380_973 -4380_78016,294,4380_61277,Raheen,92883-00018-1,0,4380_7778208_3040404,4380_973 -4380_78016,295,4380_61278,Raheen,92877-00019-1,0,4380_7778208_3040404,4380_973 -4380_78016,293,4380_61279,Raheen,92881-00017-1,0,4380_7778208_3040404,4380_973 -4380_78016,291,4380_61281,Raheen,92735-00013-1,0,4380_7778208_3040403,4380_973 -4380_78016,296,4380_61282,Raheen,92736-00021-1,0,4380_7778208_3040403,4380_973 -4380_78016,297,4380_61284,Annacotty Ind Est,92309-00008-1,0,4380_7778208_3040401,4380_968 -4380_78016,285,4380_61295,Raheen,92312-00009-1,0,4380_7778208_3040401,4380_969 -4380_78016,285,4380_61296,Raheen,93284-00009-1,0,4380_7778208_3040406,4380_973 -4380_78016,288,4380_61297,Raheen,92318-00011-1,0,4380_7778208_3040401,4380_969 -4380_78016,288,4380_61298,Raheen,93286-00011-1,0,4380_7778208_3040406,4380_973 -4380_78016,286,4380_61299,Raheen,92316-00010-1,0,4380_7778208_3040401,4380_969 -4380_78113,296,4380_613,Dundalk,49963-00021-1,0,4380_7778208_1000906,4380_13 -4380_78016,286,4380_61300,Raheen,93280-00010-1,0,4380_7778208_3040406,4380_973 -4380_78016,289,4380_61301,Raheen,92310-00014-1,0,4380_7778208_3040401,4380_969 -4380_78016,289,4380_61302,Raheen,93282-00014-1,0,4380_7778208_3040406,4380_973 -4380_78016,287,4380_61303,Raheen,92314-00012-1,0,4380_7778208_3040401,4380_969 -4380_78016,287,4380_61304,Raheen,93288-00012-1,0,4380_7778208_3040406,4380_973 -4380_78016,292,4380_61305,Raheen,92317-00016-1,0,4380_7778208_3040401,4380_969 -4380_78016,292,4380_61306,Raheen,93281-00016-1,0,4380_7778208_3040406,4380_973 -4380_78016,290,4380_61307,Raheen,92313-00015-1,0,4380_7778208_3040401,4380_969 -4380_78016,290,4380_61308,Raheen,93285-00015-1,0,4380_7778208_3040406,4380_973 -4380_78016,294,4380_61309,Raheen,92315-00018-1,0,4380_7778208_3040401,4380_969 -4380_78016,294,4380_61310,Raheen,93289-00018-1,0,4380_7778208_3040406,4380_973 -4380_78016,295,4380_61311,Raheen,92311-00019-1,0,4380_7778208_3040401,4380_969 -4380_78016,295,4380_61312,Raheen,93283-00019-1,0,4380_7778208_3040406,4380_973 -4380_78016,293,4380_61313,Raheen,92319-00017-1,0,4380_7778208_3040401,4380_969 -4380_78016,293,4380_61314,Raheen,93287-00017-1,0,4380_7778208_3040406,4380_973 -4380_78016,291,4380_61317,Raheen,92320-00013-1,0,4380_7778208_3040401,4380_969 -4380_78016,291,4380_61318,Raheen,93118-00013-1,0,4380_7778208_3040405,4380_973 -4380_78016,296,4380_61319,Raheen,92321-00021-1,0,4380_7778208_3040401,4380_969 -4380_78016,296,4380_61320,Raheen,93119-00021-1,0,4380_7778208_3040405,4380_973 -4380_77950,289,4380_6133,Blanchardstown,54077-00014-1,1,4380_7778208_1050102,4380_61 -4380_78016,285,4380_61331,Raheen,92549-00009-1,0,4380_7778208_3040402,4380_969 -4380_78016,285,4380_61332,Raheen,93463-00009-1,0,4380_7778208_3040407,4380_973 -4380_78016,288,4380_61333,Raheen,92553-00011-1,0,4380_7778208_3040402,4380_969 -4380_78016,288,4380_61334,Raheen,93457-00011-1,0,4380_7778208_3040407,4380_973 -4380_78016,286,4380_61335,Raheen,92555-00010-1,0,4380_7778208_3040402,4380_969 -4380_78016,286,4380_61336,Raheen,93461-00010-1,0,4380_7778208_3040407,4380_973 -4380_78016,289,4380_61337,Raheen,92551-00014-1,0,4380_7778208_3040402,4380_969 -4380_78016,289,4380_61338,Raheen,93459-00014-1,0,4380_7778208_3040407,4380_973 -4380_78016,287,4380_61339,Raheen,92547-00012-1,0,4380_7778208_3040402,4380_969 -4380_77950,290,4380_6134,Blanchardstown,54074-00015-1,1,4380_7778208_1050102,4380_61 -4380_78016,287,4380_61340,Raheen,93465-00012-1,0,4380_7778208_3040407,4380_973 -4380_78016,292,4380_61341,Raheen,92556-00016-1,0,4380_7778208_3040402,4380_969 -4380_78016,292,4380_61342,Raheen,93462-00016-1,0,4380_7778208_3040407,4380_973 -4380_78016,290,4380_61343,Raheen,92550-00015-1,0,4380_7778208_3040402,4380_969 -4380_78016,290,4380_61344,Raheen,93464-00015-1,0,4380_7778208_3040407,4380_973 -4380_78016,294,4380_61345,Raheen,92548-00018-1,0,4380_7778208_3040402,4380_969 -4380_78016,294,4380_61346,Raheen,93466-00018-1,0,4380_7778208_3040407,4380_973 -4380_78016,295,4380_61347,Raheen,92552-00019-1,0,4380_7778208_3040402,4380_969 -4380_78016,295,4380_61348,Raheen,93460-00019-1,0,4380_7778208_3040407,4380_973 -4380_78016,293,4380_61349,Raheen,92554-00017-1,0,4380_7778208_3040402,4380_969 -4380_77950,292,4380_6135,Blanchardstown,54075-00016-1,1,4380_7778208_1050102,4380_61 -4380_78016,293,4380_61350,Raheen,93458-00017-1,0,4380_7778208_3040407,4380_973 -4380_78016,291,4380_61352,Raheen,93290-00013-1,0,4380_7778208_3040406,4380_973 -4380_78016,296,4380_61353,Raheen,93291-00021-1,0,4380_7778208_3040406,4380_973 -4380_78016,291,4380_61355,Raheen,92557-00013-1,0,4380_7778208_3040402,4380_969 -4380_78016,296,4380_61356,Raheen,92558-00021-1,0,4380_7778208_3040402,4380_969 -4380_77950,293,4380_6136,Blanchardstown,54076-00017-1,1,4380_7778208_1050102,4380_61 -4380_78016,285,4380_61367,Raheen,92743-00009-1,0,4380_7778208_3040403,4380_969 -4380_78016,285,4380_61368,Raheen,93781-00009-1,0,4380_7778208_3040409,4380_973 -4380_78016,288,4380_61369,Raheen,92739-00011-1,0,4380_7778208_3040403,4380_969 -4380_77950,294,4380_6137,Blanchardstown,54078-00018-1,1,4380_7778208_1050102,4380_61 -4380_78016,288,4380_61370,Raheen,93775-00011-1,0,4380_7778208_3040409,4380_973 -4380_78016,286,4380_61371,Raheen,92741-00010-1,0,4380_7778208_3040403,4380_969 -4380_78016,286,4380_61372,Raheen,93777-00010-1,0,4380_7778208_3040409,4380_973 -4380_78016,289,4380_61373,Raheen,92745-00014-1,0,4380_7778208_3040403,4380_969 -4380_78016,289,4380_61374,Raheen,93773-00014-1,0,4380_7778208_3040409,4380_973 -4380_78016,287,4380_61375,Raheen,92747-00012-1,0,4380_7778208_3040403,4380_969 -4380_78016,287,4380_61376,Raheen,93779-00012-1,0,4380_7778208_3040409,4380_973 -4380_78016,292,4380_61377,Raheen,92742-00016-1,0,4380_7778208_3040403,4380_969 -4380_78016,292,4380_61378,Raheen,93778-00016-1,0,4380_7778208_3040409,4380_973 -4380_78016,290,4380_61379,Raheen,92744-00015-1,0,4380_7778208_3040403,4380_969 -4380_77950,296,4380_6138,Blanchardstown,4745-00021-1,1,4380_7778208_1050102,4380_69 -4380_78016,290,4380_61380,Raheen,93782-00015-1,0,4380_7778208_3040409,4380_973 -4380_78016,294,4380_61381,Raheen,92748-00018-1,0,4380_7778208_3040403,4380_969 -4380_78016,294,4380_61382,Raheen,93780-00018-1,0,4380_7778208_3040409,4380_973 -4380_78016,295,4380_61383,Raheen,92746-00019-1,0,4380_7778208_3040403,4380_969 -4380_78016,295,4380_61384,Raheen,93774-00019-1,0,4380_7778208_3040409,4380_973 -4380_78016,293,4380_61385,Raheen,92740-00017-1,0,4380_7778208_3040403,4380_969 -4380_78016,293,4380_61386,Raheen,93776-00017-1,0,4380_7778208_3040409,4380_973 -4380_78016,297,4380_61388,Raheen,92322-00008-1,0,4380_7778208_3040401,4380_969 -4380_78016,291,4380_61390,Raheen,92896-00013-1,0,4380_7778208_3040404,4380_969 -4380_78016,296,4380_61391,Raheen,92897-00021-1,0,4380_7778208_3040404,4380_969 -4380_78016,285,4380_61397,Raheen,93124-00009-1,0,4380_7778208_3040405,4380_969 -4380_78016,288,4380_61398,Raheen,93128-00011-1,0,4380_7778208_3040405,4380_969 -4380_78016,286,4380_61399,Raheen,93130-00010-1,0,4380_7778208_3040405,4380_969 -4380_78016,289,4380_61400,Raheen,93122-00014-1,0,4380_7778208_3040405,4380_969 -4380_78016,287,4380_61401,Raheen,93126-00012-1,0,4380_7778208_3040405,4380_969 -4380_78016,292,4380_61402,Raheen,93131-00016-1,0,4380_7778208_3040405,4380_969 -4380_78016,290,4380_61403,Raheen,93125-00015-1,0,4380_7778208_3040405,4380_969 -4380_78016,294,4380_61404,Raheen,93127-00018-1,0,4380_7778208_3040405,4380_969 -4380_78016,295,4380_61405,Raheen,93123-00019-1,0,4380_7778208_3040405,4380_969 -4380_78016,293,4380_61406,Raheen,93129-00017-1,0,4380_7778208_3040405,4380_969 -4380_78016,297,4380_61408,Raheen,92749-00008-1,0,4380_7778208_3040403,4380_970 -4380_78016,291,4380_61410,Raheen,92750-00013-1,0,4380_7778208_3040403,4380_974 -4380_78016,296,4380_61411,Raheen,92751-00021-1,0,4380_7778208_3040403,4380_974 -4380_78016,285,4380_61417,Raheen,92906-00009-1,0,4380_7778208_3040404,4380_972 -4380_78016,288,4380_61418,Raheen,92900-00011-1,0,4380_7778208_3040404,4380_972 -4380_78016,286,4380_61419,Raheen,92902-00010-1,0,4380_7778208_3040404,4380_972 -4380_78016,289,4380_61420,Raheen,92898-00014-1,0,4380_7778208_3040404,4380_972 -4380_78016,287,4380_61421,Raheen,92904-00012-1,0,4380_7778208_3040404,4380_972 -4380_78016,292,4380_61422,Raheen,92903-00016-1,0,4380_7778208_3040404,4380_972 -4380_78016,290,4380_61423,Raheen,92907-00015-1,0,4380_7778208_3040404,4380_972 -4380_78016,294,4380_61424,Raheen,92905-00018-1,0,4380_7778208_3040404,4380_972 -4380_78016,295,4380_61425,Raheen,92899-00019-1,0,4380_7778208_3040404,4380_972 -4380_78016,293,4380_61426,Raheen,92901-00017-1,0,4380_7778208_3040404,4380_972 -4380_78016,291,4380_61428,Raheen,93132-00013-1,0,4380_7778208_3040405,4380_970 -4380_78016,296,4380_61429,Raheen,93133-00021-1,0,4380_7778208_3040405,4380_970 -4380_78016,285,4380_61435,Raheen,93312-00009-1,0,4380_7778208_3040406,4380_972 -4380_78016,288,4380_61436,Raheen,93306-00011-1,0,4380_7778208_3040406,4380_972 -4380_78016,286,4380_61437,Raheen,93308-00010-1,0,4380_7778208_3040406,4380_972 -4380_78016,289,4380_61438,Raheen,93304-00014-1,0,4380_7778208_3040406,4380_972 -4380_78016,287,4380_61439,Raheen,93310-00012-1,0,4380_7778208_3040406,4380_972 -4380_78016,292,4380_61440,Raheen,93309-00016-1,0,4380_7778208_3040406,4380_972 -4380_78016,290,4380_61441,Raheen,93313-00015-1,0,4380_7778208_3040406,4380_972 -4380_78016,294,4380_61442,Raheen,93311-00018-1,0,4380_7778208_3040406,4380_972 -4380_78016,295,4380_61443,Raheen,93305-00019-1,0,4380_7778208_3040406,4380_972 -4380_78016,293,4380_61444,Raheen,93307-00017-1,0,4380_7778208_3040406,4380_972 -4380_78016,297,4380_61446,Raheen,92562-00008-1,0,4380_7778208_3040402,4380_970 -4380_78016,291,4380_61448,Raheen,93314-00013-1,0,4380_7778208_3040406,4380_974 -4380_78016,296,4380_61449,Raheen,93315-00021-1,0,4380_7778208_3040406,4380_974 -4380_78016,285,4380_61455,Raheen,93703-00009-1,0,4380_7778208_3040408,4380_972 -4380_78016,288,4380_61457,Raheen,93707-00011-1,0,4380_7778208_3040408,4380_972 -4380_78016,286,4380_61458,Raheen,93701-00010-1,0,4380_7778208_3040408,4380_972 -4380_78016,291,4380_61459,Raheen,92335-00013-1,0,4380_7778208_3040401,4380_970 -4380_77950,285,4380_6146,Blanchardstown,54496-00009-1,1,4380_7778208_1051104,4380_63 -4380_78016,289,4380_61460,Raheen,93709-00014-1,0,4380_7778208_3040408,4380_972 -4380_78016,287,4380_61461,Raheen,93705-00012-1,0,4380_7778208_3040408,4380_972 -4380_78016,292,4380_61462,Raheen,93702-00016-1,0,4380_7778208_3040408,4380_972 -4380_78016,290,4380_61463,Raheen,93704-00015-1,0,4380_7778208_3040408,4380_972 -4380_78016,294,4380_61464,Raheen,93706-00018-1,0,4380_7778208_3040408,4380_972 -4380_78016,295,4380_61465,Raheen,93710-00019-1,0,4380_7778208_3040408,4380_972 -4380_78016,293,4380_61466,Raheen,93708-00017-1,0,4380_7778208_3040408,4380_972 -4380_78016,296,4380_61467,Raheen,92336-00021-1,0,4380_7778208_3040401,4380_970 -4380_77950,286,4380_6147,Blanchardstown,54502-00010-1,1,4380_7778208_1051104,4380_63 -4380_78016,297,4380_61474,Raheen,92911-00008-1,0,4380_7778208_3040404,4380_970 -4380_78016,285,4380_61475,Raheen,93479-00009-1,0,4380_7778208_3040407,4380_972 -4380_78016,288,4380_61477,Raheen,93477-00011-1,0,4380_7778208_3040407,4380_972 -4380_78016,286,4380_61478,Raheen,93481-00010-1,0,4380_7778208_3040407,4380_972 -4380_78016,291,4380_61479,Raheen,92573-00013-1,0,4380_7778208_3040402,4380_974 -4380_77950,297,4380_6148,Blanchardstown,54215-00008-1,1,4380_7778208_1051101,4380_64 -4380_78016,289,4380_61480,Raheen,93485-00014-1,0,4380_7778208_3040407,4380_972 -4380_78016,287,4380_61481,Raheen,93483-00012-1,0,4380_7778208_3040407,4380_972 -4380_78016,292,4380_61482,Raheen,93482-00016-1,0,4380_7778208_3040407,4380_972 -4380_78016,290,4380_61483,Raheen,93480-00015-1,0,4380_7778208_3040407,4380_972 -4380_78016,294,4380_61484,Raheen,93484-00018-1,0,4380_7778208_3040407,4380_972 -4380_78016,295,4380_61485,Raheen,93486-00019-1,0,4380_7778208_3040407,4380_972 -4380_78016,293,4380_61486,Raheen,93478-00017-1,0,4380_7778208_3040407,4380_972 -4380_78016,296,4380_61487,Raheen,92574-00021-1,0,4380_7778208_3040402,4380_974 -4380_77950,288,4380_6149,Blanchardstown,54500-00011-1,1,4380_7778208_1051104,4380_63 -4380_78016,285,4380_61493,Raheen,93807-00009-1,0,4380_7778208_3040409,4380_972 -4380_78016,288,4380_61495,Raheen,93809-00011-1,0,4380_7778208_3040409,4380_972 -4380_78016,286,4380_61496,Raheen,93801-00010-1,0,4380_7778208_3040409,4380_972 -4380_78016,291,4380_61497,Raheen,92912-00013-1,0,4380_7778208_3040404,4380_970 -4380_78016,289,4380_61498,Raheen,93805-00014-1,0,4380_7778208_3040409,4380_972 -4380_78016,287,4380_61499,Raheen,93803-00012-1,0,4380_7778208_3040409,4380_972 -4380_78113,297,4380_615,Dundalk,49860-00008-1,0,4380_7778208_1000905,4380_10 -4380_77950,287,4380_6150,Blanchardstown,54494-00012-1,1,4380_7778208_1051104,4380_63 -4380_78016,292,4380_61500,Raheen,93802-00016-1,0,4380_7778208_3040409,4380_972 -4380_78016,290,4380_61501,Raheen,93808-00015-1,0,4380_7778208_3040409,4380_972 -4380_78016,294,4380_61502,Raheen,93804-00018-1,0,4380_7778208_3040409,4380_972 -4380_78016,295,4380_61503,Raheen,93806-00019-1,0,4380_7778208_3040409,4380_972 -4380_78016,293,4380_61504,Raheen,93810-00017-1,0,4380_7778208_3040409,4380_972 -4380_78016,296,4380_61505,Raheen,92913-00021-1,0,4380_7778208_3040404,4380_970 -4380_77950,289,4380_6151,Blanchardstown,54492-00014-1,1,4380_7778208_1051104,4380_63 -4380_78016,297,4380_61512,Raheen,92765-00008-1,0,4380_7778208_3040403,4380_970 -4380_78016,285,4380_61513,Raheen,93991-00009-1,0,4380_7778208_3040410,4380_972 -4380_78016,288,4380_61515,Raheen,93987-00011-1,0,4380_7778208_3040410,4380_972 -4380_78016,286,4380_61516,Raheen,93993-00010-1,0,4380_7778208_3040410,4380_972 -4380_78016,291,4380_61517,Raheen,92766-00013-1,0,4380_7778208_3040403,4380_974 -4380_78016,289,4380_61518,Raheen,93985-00014-1,0,4380_7778208_3040410,4380_972 -4380_78016,287,4380_61519,Raheen,93989-00012-1,0,4380_7778208_3040410,4380_972 -4380_77950,290,4380_6152,Blanchardstown,54497-00015-1,1,4380_7778208_1051104,4380_63 -4380_78016,292,4380_61520,Raheen,93994-00016-1,0,4380_7778208_3040410,4380_972 -4380_78016,290,4380_61521,Raheen,93992-00015-1,0,4380_7778208_3040410,4380_972 -4380_78016,294,4380_61522,Raheen,93990-00018-1,0,4380_7778208_3040410,4380_972 -4380_78016,295,4380_61523,Raheen,93986-00019-1,0,4380_7778208_3040410,4380_972 -4380_78016,293,4380_61524,Raheen,93988-00017-1,0,4380_7778208_3040410,4380_972 -4380_78016,296,4380_61525,Raheen,92767-00021-1,0,4380_7778208_3040403,4380_974 -4380_78016,291,4380_61527,Raheen,93489-00013-1,0,4380_7778208_3040407,4380_970 -4380_78016,296,4380_61528,Raheen,93490-00021-1,0,4380_7778208_3040407,4380_970 -4380_77950,291,4380_6153,Blanchardstown,54498-00013-1,1,4380_7778208_1051104,4380_67 -4380_78016,285,4380_61534,Raheen,92339-00009-1,0,4380_7778208_3040401,4380_970 -4380_78016,288,4380_61535,Raheen,92345-00011-1,0,4380_7778208_3040401,4380_970 -4380_78016,286,4380_61536,Raheen,92343-00010-1,0,4380_7778208_3040401,4380_970 -4380_78016,289,4380_61537,Raheen,92341-00014-1,0,4380_7778208_3040401,4380_970 -4380_78016,287,4380_61538,Raheen,92347-00012-1,0,4380_7778208_3040401,4380_970 -4380_78016,292,4380_61539,Raheen,92344-00016-1,0,4380_7778208_3040401,4380_970 -4380_77950,292,4380_6154,Blanchardstown,54503-00016-1,1,4380_7778208_1051104,4380_63 -4380_78016,290,4380_61540,Raheen,92340-00015-1,0,4380_7778208_3040401,4380_970 -4380_78016,294,4380_61541,Raheen,92348-00018-1,0,4380_7778208_3040401,4380_970 -4380_78016,295,4380_61542,Raheen,92342-00019-1,0,4380_7778208_3040401,4380_970 -4380_78016,293,4380_61543,Raheen,92346-00017-1,0,4380_7778208_3040401,4380_970 -4380_78016,285,4380_61549,Raheen,92576-00009-1,0,4380_7778208_3040402,4380_970 -4380_77950,293,4380_6155,Blanchardstown,54501-00017-1,1,4380_7778208_1051104,4380_63 -4380_78016,288,4380_61551,Raheen,92578-00011-1,0,4380_7778208_3040402,4380_970 -4380_78016,286,4380_61552,Raheen,92586-00010-1,0,4380_7778208_3040402,4380_970 -4380_78016,291,4380_61553,Raheen,93147-00013-1,0,4380_7778208_3040405,4380_974 -4380_78016,289,4380_61554,Raheen,92582-00014-1,0,4380_7778208_3040402,4380_970 -4380_78016,287,4380_61555,Raheen,92584-00012-1,0,4380_7778208_3040402,4380_970 -4380_78016,292,4380_61556,Raheen,92587-00016-1,0,4380_7778208_3040402,4380_970 -4380_78016,290,4380_61557,Raheen,92577-00015-1,0,4380_7778208_3040402,4380_970 -4380_78016,294,4380_61558,Raheen,92585-00018-1,0,4380_7778208_3040402,4380_970 -4380_78016,295,4380_61559,Raheen,92583-00019-1,0,4380_7778208_3040402,4380_970 -4380_77950,294,4380_6156,Blanchardstown,54495-00018-1,1,4380_7778208_1051104,4380_63 -4380_78016,293,4380_61560,Raheen,92579-00017-1,0,4380_7778208_3040402,4380_970 -4380_78016,296,4380_61561,Raheen,93148-00021-1,0,4380_7778208_3040405,4380_974 -4380_78016,297,4380_61563,Raheen,92588-00008-1,0,4380_7778208_3040402,4380_970 -4380_78016,285,4380_61569,Raheen,92770-00009-1,0,4380_7778208_3040403,4380_970 -4380_77950,295,4380_6157,Blanchardstown,54493-00019-1,1,4380_7778208_1051104,4380_63 -4380_78016,288,4380_61570,Raheen,92776-00011-1,0,4380_7778208_3040403,4380_970 -4380_78016,286,4380_61571,Raheen,92768-00010-1,0,4380_7778208_3040403,4380_970 -4380_78016,289,4380_61572,Raheen,92774-00014-1,0,4380_7778208_3040403,4380_970 -4380_78016,287,4380_61573,Raheen,92772-00012-1,0,4380_7778208_3040403,4380_970 -4380_78016,292,4380_61574,Raheen,92769-00016-1,0,4380_7778208_3040403,4380_970 -4380_78016,290,4380_61575,Raheen,92771-00015-1,0,4380_7778208_3040403,4380_970 -4380_78016,294,4380_61576,Raheen,92773-00018-1,0,4380_7778208_3040403,4380_970 -4380_78016,295,4380_61577,Raheen,92775-00019-1,0,4380_7778208_3040403,4380_970 -4380_78016,293,4380_61578,Raheen,92777-00017-1,0,4380_7778208_3040403,4380_970 -4380_77950,296,4380_6158,Blanchardstown,54499-00021-1,1,4380_7778208_1051104,4380_67 -4380_78016,291,4380_61580,Raheen,93329-00013-1,0,4380_7778208_3040406,4380_970 -4380_78016,296,4380_61581,Raheen,93330-00021-1,0,4380_7778208_3040406,4380_970 -4380_78016,285,4380_61587,Raheen,93154-00009-1,0,4380_7778208_3040405,4380_970 -4380_78016,288,4380_61588,Raheen,93150-00011-1,0,4380_7778208_3040405,4380_970 -4380_78016,286,4380_61589,Raheen,93158-00010-1,0,4380_7778208_3040405,4380_970 -4380_78016,289,4380_61590,Raheen,93152-00014-1,0,4380_7778208_3040405,4380_970 -4380_78016,287,4380_61591,Raheen,93156-00012-1,0,4380_7778208_3040405,4380_970 -4380_78016,292,4380_61592,Raheen,93159-00016-1,0,4380_7778208_3040405,4380_970 -4380_78016,290,4380_61593,Raheen,93155-00015-1,0,4380_7778208_3040405,4380_970 -4380_78016,294,4380_61594,Raheen,93157-00018-1,0,4380_7778208_3040405,4380_970 -4380_78016,295,4380_61595,Raheen,93153-00019-1,0,4380_7778208_3040405,4380_970 -4380_78016,293,4380_61596,Raheen,93151-00017-1,0,4380_7778208_3040405,4380_970 -4380_78016,291,4380_61598,Raheen,92349-00013-1,0,4380_7778208_3040401,4380_970 -4380_78016,296,4380_61599,Raheen,92350-00021-1,0,4380_7778208_3040401,4380_970 -4380_77950,285,4380_6160,Blanchardstown,4481-00009-1,1,4380_7778208_1050101,4380_68 -4380_78016,297,4380_61606,Raheen,92933-00008-1,0,4380_7778208_3040404,4380_970 -4380_78016,285,4380_61607,Raheen,92929-00009-1,0,4380_7778208_3040404,4380_974 -4380_78016,288,4380_61608,Raheen,92936-00011-1,0,4380_7778208_3040404,4380_974 -4380_78016,286,4380_61609,Raheen,92934-00010-1,0,4380_7778208_3040404,4380_974 -4380_77950,286,4380_6161,Blanchardstown,4495-00010-1,1,4380_7778208_1050101,4380_68 -4380_78016,289,4380_61610,Raheen,92931-00014-1,0,4380_7778208_3040404,4380_974 -4380_78016,287,4380_61611,Raheen,92927-00012-1,0,4380_7778208_3040404,4380_974 -4380_78016,292,4380_61612,Raheen,92935-00016-1,0,4380_7778208_3040404,4380_974 -4380_78016,290,4380_61613,Raheen,92930-00015-1,0,4380_7778208_3040404,4380_974 -4380_78016,294,4380_61614,Raheen,92928-00018-1,0,4380_7778208_3040404,4380_974 -4380_78016,295,4380_61615,Raheen,92932-00019-1,0,4380_7778208_3040404,4380_974 -4380_78016,293,4380_61616,Raheen,92937-00017-1,0,4380_7778208_3040404,4380_974 -4380_78016,291,4380_61618,Raheen,92589-00013-1,0,4380_7778208_3040402,4380_970 -4380_78016,296,4380_61619,Raheen,92590-00021-1,0,4380_7778208_3040402,4380_970 -4380_77950,288,4380_6162,Blanchardstown,4537-00011-1,1,4380_7778208_1050101,4380_68 -4380_78016,285,4380_61625,Raheen,93332-00009-1,0,4380_7778208_3040406,4380_970 -4380_78016,288,4380_61626,Raheen,93336-00011-1,0,4380_7778208_3040406,4380_970 -4380_78016,286,4380_61627,Raheen,93334-00010-1,0,4380_7778208_3040406,4380_970 -4380_78016,289,4380_61628,Raheen,93340-00014-1,0,4380_7778208_3040406,4380_970 -4380_78016,287,4380_61629,Raheen,93338-00012-1,0,4380_7778208_3040406,4380_970 -4380_77950,287,4380_6163,Blanchardstown,4565-00012-1,1,4380_7778208_1050101,4380_68 -4380_78016,292,4380_61630,Raheen,93335-00016-1,0,4380_7778208_3040406,4380_970 -4380_78016,290,4380_61631,Raheen,93333-00015-1,0,4380_7778208_3040406,4380_970 -4380_78016,294,4380_61632,Raheen,93339-00018-1,0,4380_7778208_3040406,4380_970 -4380_78016,295,4380_61633,Raheen,93341-00019-1,0,4380_7778208_3040406,4380_970 -4380_78016,293,4380_61634,Raheen,93337-00017-1,0,4380_7778208_3040406,4380_970 -4380_78016,291,4380_61636,Raheen,92938-00013-1,0,4380_7778208_3040404,4380_970 -4380_78016,296,4380_61637,Raheen,92939-00021-1,0,4380_7778208_3040404,4380_970 -4380_77950,291,4380_6164,Blanchardstown,54001-00013-1,1,4380_7778208_1050101,4380_65 -4380_78016,297,4380_61644,Raheen,92781-00008-1,0,4380_7778208_3040403,4380_970 -4380_78016,285,4380_61645,Raheen,93510-00009-1,0,4380_7778208_3040407,4380_974 -4380_78016,288,4380_61646,Raheen,93504-00011-1,0,4380_7778208_3040407,4380_974 -4380_78016,286,4380_61647,Raheen,93512-00010-1,0,4380_7778208_3040407,4380_974 -4380_78016,289,4380_61648,Raheen,93506-00014-1,0,4380_7778208_3040407,4380_974 -4380_78016,287,4380_61649,Raheen,93508-00012-1,0,4380_7778208_3040407,4380_974 -4380_77950,295,4380_6165,Blanchardstown,4453-00019-1,1,4380_7778208_1050101,4380_68 -4380_78016,292,4380_61650,Raheen,93513-00016-1,0,4380_7778208_3040407,4380_974 -4380_78016,290,4380_61651,Raheen,93511-00015-1,0,4380_7778208_3040407,4380_974 -4380_78016,294,4380_61652,Raheen,93509-00018-1,0,4380_7778208_3040407,4380_974 -4380_78016,295,4380_61653,Raheen,93507-00019-1,0,4380_7778208_3040407,4380_974 -4380_78016,293,4380_61654,Raheen,93505-00017-1,0,4380_7778208_3040407,4380_974 -4380_78016,291,4380_61656,Raheen,92782-00013-1,0,4380_7778208_3040403,4380_970 -4380_78016,296,4380_61657,Raheen,92783-00021-1,0,4380_7778208_3040403,4380_970 -4380_78016,285,4380_61663,Raheen,93835-00009-1,0,4380_7778208_3040409,4380_970 -4380_78016,288,4380_61664,Raheen,93833-00011-1,0,4380_7778208_3040409,4380_970 -4380_78016,286,4380_61665,Raheen,93829-00010-1,0,4380_7778208_3040409,4380_970 -4380_78016,289,4380_61666,Raheen,93831-00014-1,0,4380_7778208_3040409,4380_970 -4380_78016,287,4380_61667,Raheen,93827-00012-1,0,4380_7778208_3040409,4380_970 -4380_78016,292,4380_61668,Raheen,93830-00016-1,0,4380_7778208_3040409,4380_970 -4380_78016,290,4380_61669,Raheen,93836-00015-1,0,4380_7778208_3040409,4380_970 -4380_78016,294,4380_61670,Raheen,93828-00018-1,0,4380_7778208_3040409,4380_970 -4380_78016,295,4380_61671,Raheen,93832-00019-1,0,4380_7778208_3040409,4380_970 -4380_78016,293,4380_61672,Raheen,93834-00017-1,0,4380_7778208_3040409,4380_970 -4380_78016,291,4380_61674,Raheen,93515-00013-1,0,4380_7778208_3040407,4380_970 -4380_78016,296,4380_61675,Raheen,93516-00021-1,0,4380_7778208_3040407,4380_970 -4380_78016,297,4380_61682,Raheen,92602-00008-1,0,4380_7778208_3040402,4380_970 -4380_78016,285,4380_61683,Raheen,94015-00009-1,0,4380_7778208_3040410,4380_974 -4380_78016,288,4380_61684,Raheen,94017-00011-1,0,4380_7778208_3040410,4380_974 -4380_78016,286,4380_61685,Raheen,94011-00010-1,0,4380_7778208_3040410,4380_974 -4380_78016,289,4380_61686,Raheen,94013-00014-1,0,4380_7778208_3040410,4380_974 -4380_78016,287,4380_61687,Raheen,94019-00012-1,0,4380_7778208_3040410,4380_974 -4380_78016,292,4380_61688,Raheen,94012-00016-1,0,4380_7778208_3040410,4380_974 -4380_78016,290,4380_61689,Raheen,94016-00015-1,0,4380_7778208_3040410,4380_974 -4380_78016,294,4380_61690,Raheen,94020-00018-1,0,4380_7778208_3040410,4380_974 -4380_78016,295,4380_61691,Raheen,94014-00019-1,0,4380_7778208_3040410,4380_974 -4380_78016,293,4380_61692,Raheen,94018-00017-1,0,4380_7778208_3040410,4380_974 -4380_78016,291,4380_61694,Raheen,93174-00013-1,0,4380_7778208_3040405,4380_970 -4380_78016,296,4380_61695,Raheen,93175-00021-1,0,4380_7778208_3040405,4380_970 -4380_78016,285,4380_61701,Raheen,92371-00009-1,0,4380_7778208_3040401,4380_970 -4380_78016,288,4380_61702,Raheen,92363-00011-1,0,4380_7778208_3040401,4380_970 -4380_78016,286,4380_61703,Raheen,92365-00010-1,0,4380_7778208_3040401,4380_970 -4380_78016,289,4380_61704,Raheen,92369-00014-1,0,4380_7778208_3040401,4380_970 -4380_78016,287,4380_61705,Raheen,92367-00012-1,0,4380_7778208_3040401,4380_970 -4380_78016,292,4380_61706,Raheen,92366-00016-1,0,4380_7778208_3040401,4380_970 -4380_78016,290,4380_61707,Raheen,92372-00015-1,0,4380_7778208_3040401,4380_970 -4380_78016,294,4380_61708,Raheen,92368-00018-1,0,4380_7778208_3040401,4380_970 -4380_78016,295,4380_61709,Raheen,92370-00019-1,0,4380_7778208_3040401,4380_970 -4380_77950,289,4380_6171,Blanchardstown,54003-00014-1,1,4380_7778208_1050101,4380_61 -4380_78016,293,4380_61710,Raheen,92364-00017-1,0,4380_7778208_3040401,4380_970 -4380_78016,291,4380_61712,Raheen,93713-00013-1,0,4380_7778208_3040408,4380_970 -4380_78016,296,4380_61713,Raheen,93714-00021-1,0,4380_7778208_3040408,4380_970 -4380_78016,297,4380_61715,Raheen,92373-00008-1,0,4380_7778208_3040401,4380_970 -4380_77950,290,4380_6172,Blanchardstown,54006-00015-1,1,4380_7778208_1050101,4380_61 -4380_78016,285,4380_61721,Raheen,92609-00009-1,0,4380_7778208_3040402,4380_970 -4380_78016,288,4380_61722,Raheen,92613-00011-1,0,4380_7778208_3040402,4380_970 -4380_78016,286,4380_61723,Raheen,92611-00010-1,0,4380_7778208_3040402,4380_970 -4380_78016,289,4380_61724,Raheen,92605-00014-1,0,4380_7778208_3040402,4380_970 -4380_78016,287,4380_61725,Raheen,92607-00012-1,0,4380_7778208_3040402,4380_970 -4380_78016,292,4380_61726,Raheen,92612-00016-1,0,4380_7778208_3040402,4380_970 -4380_78016,290,4380_61727,Raheen,92610-00015-1,0,4380_7778208_3040402,4380_970 -4380_78016,294,4380_61728,Raheen,92608-00018-1,0,4380_7778208_3040402,4380_970 -4380_78016,295,4380_61729,Raheen,92606-00019-1,0,4380_7778208_3040402,4380_970 -4380_77950,292,4380_6173,Blanchardstown,54005-00016-1,1,4380_7778208_1050101,4380_61 -4380_78016,293,4380_61730,Raheen,92614-00017-1,0,4380_7778208_3040402,4380_970 -4380_78016,291,4380_61732,Raheen,93356-00013-1,0,4380_7778208_3040406,4380_970 -4380_78016,296,4380_61733,Raheen,93357-00021-1,0,4380_7778208_3040406,4380_970 -4380_78016,297,4380_61735,Raheen,92953-00008-1,0,4380_7778208_3040404,4380_970 -4380_77950,293,4380_6174,Blanchardstown,54002-00017-1,1,4380_7778208_1050101,4380_61 -4380_78016,285,4380_61741,Raheen,93185-00009-1,0,4380_7778208_3040405,4380_970 -4380_78016,288,4380_61742,Raheen,93183-00011-1,0,4380_7778208_3040405,4380_970 -4380_78016,286,4380_61743,Raheen,93177-00010-1,0,4380_7778208_3040405,4380_970 -4380_78016,289,4380_61744,Raheen,93181-00014-1,0,4380_7778208_3040405,4380_970 -4380_78016,287,4380_61745,Raheen,93179-00012-1,0,4380_7778208_3040405,4380_970 -4380_78016,292,4380_61746,Raheen,93178-00016-1,0,4380_7778208_3040405,4380_970 -4380_78016,290,4380_61747,Raheen,93186-00015-1,0,4380_7778208_3040405,4380_970 -4380_78016,294,4380_61748,Raheen,93180-00018-1,0,4380_7778208_3040405,4380_970 -4380_78016,295,4380_61749,Raheen,93182-00019-1,0,4380_7778208_3040405,4380_970 -4380_77950,294,4380_6175,Blanchardstown,54004-00018-1,1,4380_7778208_1050101,4380_61 -4380_78016,293,4380_61750,Raheen,93184-00017-1,0,4380_7778208_3040405,4380_970 -4380_78016,291,4380_61752,Raheen,92374-00013-1,0,4380_7778208_3040401,4380_970 -4380_78016,296,4380_61753,Raheen,92375-00021-1,0,4380_7778208_3040401,4380_970 -4380_78016,285,4380_61759,Raheen,92960-00009-1,0,4380_7778208_3040404,4380_970 -4380_77950,296,4380_6176,Blanchardstown,4579-00021-1,1,4380_7778208_1050101,4380_69 -4380_78016,288,4380_61760,Raheen,92956-00011-1,0,4380_7778208_3040404,4380_970 -4380_78016,286,4380_61761,Raheen,92962-00010-1,0,4380_7778208_3040404,4380_970 -4380_78016,289,4380_61762,Raheen,92954-00014-1,0,4380_7778208_3040404,4380_970 -4380_78016,287,4380_61763,Raheen,92958-00012-1,0,4380_7778208_3040404,4380_970 -4380_78016,292,4380_61764,Raheen,92963-00016-1,0,4380_7778208_3040404,4380_970 -4380_78016,290,4380_61765,Raheen,92961-00015-1,0,4380_7778208_3040404,4380_970 -4380_78016,294,4380_61766,Raheen,92959-00018-1,0,4380_7778208_3040404,4380_970 -4380_78016,295,4380_61767,Raheen,92955-00019-1,0,4380_7778208_3040404,4380_970 -4380_78016,293,4380_61768,Raheen,92957-00017-1,0,4380_7778208_3040404,4380_970 -4380_78016,291,4380_61770,Raheen,92616-00013-1,0,4380_7778208_3040402,4380_970 -4380_78016,296,4380_61771,Raheen,92617-00021-1,0,4380_7778208_3040402,4380_970 -4380_78016,297,4380_61773,Raheen,92787-00008-1,0,4380_7778208_3040403,4380_970 -4380_78016,285,4380_61779,Raheen,93365-00009-1,0,4380_7778208_3040406,4380_970 -4380_78016,288,4380_61780,Raheen,93367-00011-1,0,4380_7778208_3040406,4380_970 -4380_78016,286,4380_61781,Raheen,93359-00010-1,0,4380_7778208_3040406,4380_970 -4380_78016,289,4380_61782,Raheen,93361-00014-1,0,4380_7778208_3040406,4380_970 -4380_78016,287,4380_61783,Raheen,93363-00012-1,0,4380_7778208_3040406,4380_970 -4380_78016,292,4380_61784,Raheen,93360-00016-1,0,4380_7778208_3040406,4380_970 -4380_78016,290,4380_61785,Raheen,93366-00015-1,0,4380_7778208_3040406,4380_970 -4380_78016,294,4380_61786,Raheen,93364-00018-1,0,4380_7778208_3040406,4380_970 -4380_78016,295,4380_61787,Raheen,93362-00019-1,0,4380_7778208_3040406,4380_970 -4380_78016,293,4380_61788,Raheen,93368-00017-1,0,4380_7778208_3040406,4380_970 -4380_78016,291,4380_61790,Raheen,92964-00013-1,0,4380_7778208_3040404,4380_970 -4380_78016,296,4380_61791,Raheen,92965-00021-1,0,4380_7778208_3040404,4380_970 -4380_78016,285,4380_61797,Raheen,93531-00009-1,0,4380_7778208_3040407,4380_970 -4380_78016,288,4380_61798,Raheen,93533-00011-1,0,4380_7778208_3040407,4380_970 -4380_78016,286,4380_61799,Raheen,93539-00010-1,0,4380_7778208_3040407,4380_970 -4380_78016,289,4380_61800,Raheen,93535-00014-1,0,4380_7778208_3040407,4380_970 -4380_78016,287,4380_61801,Raheen,93537-00012-1,0,4380_7778208_3040407,4380_970 -4380_78016,292,4380_61802,Raheen,93540-00016-1,0,4380_7778208_3040407,4380_970 -4380_78016,290,4380_61803,Raheen,93532-00015-1,0,4380_7778208_3040407,4380_970 -4380_78016,294,4380_61804,Raheen,93538-00018-1,0,4380_7778208_3040407,4380_970 -4380_78016,295,4380_61805,Raheen,93536-00019-1,0,4380_7778208_3040407,4380_970 -4380_78016,293,4380_61806,Raheen,93534-00017-1,0,4380_7778208_3040407,4380_970 -4380_78016,291,4380_61808,Raheen,92788-00013-1,0,4380_7778208_3040403,4380_970 -4380_78016,296,4380_61809,Raheen,92789-00021-1,0,4380_7778208_3040403,4380_970 -4380_78016,297,4380_61811,Raheen,92618-00008-1,0,4380_7778208_3040402,4380_970 -4380_78016,285,4380_61817,Raheen,93859-00009-1,0,4380_7778208_3040409,4380_970 -4380_78016,288,4380_61818,Raheen,93855-00011-1,0,4380_7778208_3040409,4380_970 -4380_78016,286,4380_61819,Raheen,93853-00010-1,0,4380_7778208_3040409,4380_970 -4380_78016,289,4380_61820,Raheen,93851-00014-1,0,4380_7778208_3040409,4380_970 -4380_78016,287,4380_61821,Raheen,93857-00012-1,0,4380_7778208_3040409,4380_970 -4380_78016,292,4380_61822,Raheen,93854-00016-1,0,4380_7778208_3040409,4380_970 -4380_78016,290,4380_61823,Raheen,93860-00015-1,0,4380_7778208_3040409,4380_970 -4380_78016,294,4380_61824,Raheen,93858-00018-1,0,4380_7778208_3040409,4380_970 -4380_78016,295,4380_61825,Raheen,93852-00019-1,0,4380_7778208_3040409,4380_970 -4380_78016,293,4380_61826,Raheen,93856-00017-1,0,4380_7778208_3040409,4380_970 -4380_78016,291,4380_61828,Raheen,93541-00013-1,0,4380_7778208_3040407,4380_970 -4380_78016,296,4380_61829,Raheen,93542-00021-1,0,4380_7778208_3040407,4380_970 -4380_78016,285,4380_61835,Raheen,94035-00009-1,0,4380_7778208_3040410,4380_970 -4380_78016,288,4380_61836,Raheen,94039-00011-1,0,4380_7778208_3040410,4380_970 -4380_78016,286,4380_61837,Raheen,94043-00010-1,0,4380_7778208_3040410,4380_970 -4380_78016,289,4380_61838,Raheen,94037-00014-1,0,4380_7778208_3040410,4380_970 -4380_78016,287,4380_61839,Raheen,94041-00012-1,0,4380_7778208_3040410,4380_970 -4380_77950,285,4380_6184,Blanchardstown,54218-00009-1,1,4380_7778208_1051101,4380_63 -4380_78016,292,4380_61840,Raheen,94044-00016-1,0,4380_7778208_3040410,4380_970 -4380_78016,290,4380_61841,Raheen,94036-00015-1,0,4380_7778208_3040410,4380_970 -4380_78016,294,4380_61842,Raheen,94042-00018-1,0,4380_7778208_3040410,4380_970 -4380_78016,295,4380_61843,Raheen,94038-00019-1,0,4380_7778208_3040410,4380_970 -4380_78016,293,4380_61844,Raheen,94040-00017-1,0,4380_7778208_3040410,4380_970 -4380_78016,291,4380_61846,Raheen,93201-00013-1,0,4380_7778208_3040405,4380_970 -4380_78016,296,4380_61847,Raheen,93202-00021-1,0,4380_7778208_3040405,4380_970 -4380_78016,297,4380_61849,Raheen,92389-00008-1,0,4380_7778208_3040401,4380_970 -4380_77950,286,4380_6185,Blanchardstown,54224-00010-1,1,4380_7778208_1051101,4380_63 -4380_78016,285,4380_61855,Raheen,92392-00009-1,0,4380_7778208_3040401,4380_970 -4380_78016,288,4380_61856,Raheen,92398-00011-1,0,4380_7778208_3040401,4380_970 -4380_78016,286,4380_61857,Raheen,92390-00010-1,0,4380_7778208_3040401,4380_970 -4380_78016,289,4380_61858,Raheen,92396-00014-1,0,4380_7778208_3040401,4380_970 -4380_78016,287,4380_61859,Raheen,92394-00012-1,0,4380_7778208_3040401,4380_970 -4380_77950,297,4380_6186,Blanchardstown,54313-00008-1,1,4380_7778208_1051102,4380_64 -4380_78016,292,4380_61860,Raheen,92391-00016-1,0,4380_7778208_3040401,4380_970 -4380_78016,290,4380_61861,Raheen,92393-00015-1,0,4380_7778208_3040401,4380_970 -4380_78016,294,4380_61862,Raheen,92395-00018-1,0,4380_7778208_3040401,4380_970 -4380_78016,295,4380_61863,Raheen,92397-00019-1,0,4380_7778208_3040401,4380_970 -4380_78016,293,4380_61864,Raheen,92399-00017-1,0,4380_7778208_3040401,4380_970 -4380_78016,291,4380_61866,Raheen,93717-00013-1,0,4380_7778208_3040408,4380_970 -4380_78016,296,4380_61867,Raheen,93718-00021-1,0,4380_7778208_3040408,4380_970 -4380_77950,288,4380_6187,Blanchardstown,54220-00011-1,1,4380_7778208_1051101,4380_63 -4380_78016,285,4380_61873,Raheen,92635-00009-1,0,4380_7778208_3040402,4380_970 -4380_78016,288,4380_61874,Raheen,92639-00011-1,0,4380_7778208_3040402,4380_970 -4380_78016,286,4380_61875,Raheen,92637-00010-1,0,4380_7778208_3040402,4380_970 -4380_78016,289,4380_61876,Raheen,92631-00014-1,0,4380_7778208_3040402,4380_970 -4380_78016,287,4380_61877,Raheen,92633-00012-1,0,4380_7778208_3040402,4380_970 -4380_78016,292,4380_61878,Raheen,92638-00016-1,0,4380_7778208_3040402,4380_970 -4380_78016,290,4380_61879,Raheen,92636-00015-1,0,4380_7778208_3040402,4380_970 -4380_77950,287,4380_6188,Blanchardstown,54216-00012-1,1,4380_7778208_1051101,4380_63 -4380_78016,294,4380_61880,Raheen,92634-00018-1,0,4380_7778208_3040402,4380_970 -4380_78016,295,4380_61881,Raheen,92632-00019-1,0,4380_7778208_3040402,4380_970 -4380_78016,293,4380_61882,Raheen,92640-00017-1,0,4380_7778208_3040402,4380_970 -4380_78016,297,4380_61884,Raheen,92979-00008-1,0,4380_7778208_3040404,4380_970 -4380_78016,291,4380_61886,Raheen,93383-00013-1,0,4380_7778208_3040406,4380_970 -4380_78016,296,4380_61887,Raheen,93384-00021-1,0,4380_7778208_3040406,4380_970 -4380_77950,289,4380_6189,Blanchardstown,54226-00014-1,1,4380_7778208_1051101,4380_63 -4380_78016,285,4380_61893,Raheen,93210-00009-1,0,4380_7778208_3040405,4380_970 -4380_78016,288,4380_61894,Raheen,93208-00011-1,0,4380_7778208_3040405,4380_970 -4380_78016,286,4380_61895,Raheen,93206-00010-1,0,4380_7778208_3040405,4380_970 -4380_78016,289,4380_61896,Raheen,93204-00014-1,0,4380_7778208_3040405,4380_970 -4380_78016,287,4380_61897,Raheen,93212-00012-1,0,4380_7778208_3040405,4380_970 -4380_78016,292,4380_61898,Raheen,93207-00016-1,0,4380_7778208_3040405,4380_970 -4380_78016,290,4380_61899,Raheen,93211-00015-1,0,4380_7778208_3040405,4380_970 -4380_77950,290,4380_6190,Blanchardstown,54219-00015-1,1,4380_7778208_1051101,4380_63 -4380_78016,294,4380_61900,Raheen,93213-00018-1,0,4380_7778208_3040405,4380_970 -4380_78016,295,4380_61901,Raheen,93205-00019-1,0,4380_7778208_3040405,4380_970 -4380_78016,293,4380_61902,Raheen,93209-00017-1,0,4380_7778208_3040405,4380_970 -4380_78016,291,4380_61904,Raheen,92400-00013-1,0,4380_7778208_3040401,4380_970 -4380_78016,296,4380_61905,Raheen,92401-00021-1,0,4380_7778208_3040401,4380_970 -4380_77950,291,4380_6191,Blanchardstown,54222-00013-1,1,4380_7778208_1051101,4380_67 -4380_78016,285,4380_61911,Raheen,92980-00009-1,0,4380_7778208_3040404,4380_970 -4380_78016,288,4380_61912,Raheen,92984-00011-1,0,4380_7778208_3040404,4380_970 -4380_78016,286,4380_61913,Raheen,92982-00010-1,0,4380_7778208_3040404,4380_970 -4380_78016,289,4380_61914,Raheen,92988-00014-1,0,4380_7778208_3040404,4380_970 -4380_78016,287,4380_61915,Raheen,92986-00012-1,0,4380_7778208_3040404,4380_970 -4380_78016,292,4380_61916,Raheen,92983-00016-1,0,4380_7778208_3040404,4380_970 -4380_78016,290,4380_61917,Raheen,92981-00015-1,0,4380_7778208_3040404,4380_970 -4380_78016,294,4380_61918,Raheen,92987-00018-1,0,4380_7778208_3040404,4380_970 -4380_78016,295,4380_61919,Raheen,92989-00019-1,0,4380_7778208_3040404,4380_970 -4380_77950,292,4380_6192,Blanchardstown,54225-00016-1,1,4380_7778208_1051101,4380_63 -4380_78016,293,4380_61920,Raheen,92985-00017-1,0,4380_7778208_3040404,4380_970 -4380_78016,297,4380_61922,Raheen,92803-00008-1,0,4380_7778208_3040403,4380_970 -4380_78016,291,4380_61924,Raheen,92642-00013-1,0,4380_7778208_3040402,4380_970 -4380_78016,296,4380_61925,Raheen,92643-00021-1,0,4380_7778208_3040402,4380_970 -4380_77950,293,4380_6193,Blanchardstown,54221-00017-1,1,4380_7778208_1051101,4380_63 -4380_78016,285,4380_61931,Raheen,93388-00009-1,0,4380_7778208_3040406,4380_970 -4380_78016,288,4380_61932,Raheen,93386-00011-1,0,4380_7778208_3040406,4380_970 -4380_78016,286,4380_61933,Raheen,93392-00010-1,0,4380_7778208_3040406,4380_970 -4380_78016,289,4380_61934,Raheen,93390-00014-1,0,4380_7778208_3040406,4380_970 -4380_78016,287,4380_61935,Raheen,93394-00012-1,0,4380_7778208_3040406,4380_970 -4380_78016,292,4380_61936,Raheen,93393-00016-1,0,4380_7778208_3040406,4380_970 -4380_78016,290,4380_61937,Raheen,93389-00015-1,0,4380_7778208_3040406,4380_970 -4380_78016,294,4380_61938,Raheen,93395-00018-1,0,4380_7778208_3040406,4380_970 -4380_78016,295,4380_61939,Raheen,93391-00019-1,0,4380_7778208_3040406,4380_970 -4380_77950,294,4380_6194,Blanchardstown,54217-00018-1,1,4380_7778208_1051101,4380_63 -4380_78016,293,4380_61940,Raheen,93387-00017-1,0,4380_7778208_3040406,4380_970 -4380_78016,291,4380_61942,Raheen,92990-00013-1,0,4380_7778208_3040404,4380_970 -4380_78016,296,4380_61943,Raheen,92991-00021-1,0,4380_7778208_3040404,4380_970 -4380_78016,297,4380_61945,Raheen,92644-00008-1,0,4380_7778208_3040402,4380_970 -4380_78016,291,4380_61947,Raheen,92804-00013-1,0,4380_7778208_3040403,4380_970 -4380_78016,296,4380_61948,Raheen,92805-00021-1,0,4380_7778208_3040403,4380_970 -4380_77950,295,4380_6195,Blanchardstown,54227-00019-1,1,4380_7778208_1051101,4380_63 -4380_78016,285,4380_61954,Raheen,93564-00009-1,0,4380_7778208_3040407,4380_970 -4380_78016,288,4380_61955,Raheen,93558-00011-1,0,4380_7778208_3040407,4380_970 -4380_78016,286,4380_61956,Raheen,93562-00010-1,0,4380_7778208_3040407,4380_970 -4380_78016,289,4380_61957,Raheen,93560-00014-1,0,4380_7778208_3040407,4380_970 -4380_78016,287,4380_61958,Raheen,93566-00012-1,0,4380_7778208_3040407,4380_970 -4380_78016,292,4380_61959,Raheen,93563-00016-1,0,4380_7778208_3040407,4380_970 -4380_77950,296,4380_6196,Blanchardstown,54223-00021-1,1,4380_7778208_1051101,4380_67 -4380_78016,290,4380_61960,Raheen,93565-00015-1,0,4380_7778208_3040407,4380_970 -4380_78016,294,4380_61961,Raheen,93567-00018-1,0,4380_7778208_3040407,4380_970 -4380_78016,295,4380_61962,Raheen,93561-00019-1,0,4380_7778208_3040407,4380_970 -4380_78016,293,4380_61963,Raheen,93559-00017-1,0,4380_7778208_3040407,4380_970 -4380_78016,291,4380_61965,Raheen,93568-00013-1,0,4380_7778208_3040407,4380_970 -4380_78016,296,4380_61966,Raheen,93569-00021-1,0,4380_7778208_3040407,4380_970 -4380_78016,285,4380_61972,Raheen,92814-00009-1,0,4380_7778208_3040403,4380_970 -4380_78016,288,4380_61973,Raheen,92810-00011-1,0,4380_7778208_3040403,4380_970 -4380_78016,286,4380_61974,Raheen,92808-00010-1,0,4380_7778208_3040403,4380_970 -4380_78016,289,4380_61975,Raheen,92812-00014-1,0,4380_7778208_3040403,4380_970 -4380_78016,287,4380_61976,Raheen,92806-00012-1,0,4380_7778208_3040403,4380_970 -4380_78016,292,4380_61977,Raheen,92809-00016-1,0,4380_7778208_3040403,4380_970 -4380_78016,290,4380_61978,Raheen,92815-00015-1,0,4380_7778208_3040403,4380_970 -4380_78016,294,4380_61979,Raheen,92807-00018-1,0,4380_7778208_3040403,4380_970 -4380_77950,285,4380_6198,Blanchardstown,4635-00009-1,1,4380_7778208_1050102,4380_68 -4380_78016,295,4380_61980,Raheen,92813-00019-1,0,4380_7778208_3040403,4380_970 -4380_78016,293,4380_61981,Raheen,92811-00017-1,0,4380_7778208_3040403,4380_970 -4380_78016,285,4380_61987,Raheen,93881-00009-1,0,4380_7778208_3040409,4380_970 -4380_78016,288,4380_61988,Raheen,93883-00011-1,0,4380_7778208_3040409,4380_970 -4380_78016,286,4380_61989,Raheen,93879-00010-1,0,4380_7778208_3040409,4380_970 -4380_77950,286,4380_6199,Blanchardstown,4677-00010-1,1,4380_7778208_1050102,4380_68 -4380_78016,289,4380_61990,Raheen,93877-00014-1,0,4380_7778208_3040409,4380_970 -4380_78016,287,4380_61991,Raheen,93885-00012-1,0,4380_7778208_3040409,4380_970 -4380_78016,292,4380_61992,Raheen,93880-00016-1,0,4380_7778208_3040409,4380_970 -4380_78016,290,4380_61993,Raheen,93882-00015-1,0,4380_7778208_3040409,4380_970 -4380_78016,294,4380_61994,Raheen,93886-00018-1,0,4380_7778208_3040409,4380_970 -4380_78016,295,4380_61995,Raheen,93878-00019-1,0,4380_7778208_3040409,4380_970 -4380_78016,293,4380_61996,Raheen,93884-00017-1,0,4380_7778208_3040409,4380_970 -4380_78016,297,4380_61998,Raheen,92415-00008-1,0,4380_7778208_3040401,4380_970 -4380_77946,294,4380_62,Dundalk,114782-00018-1,0,4380_7778208_10088802,4380_4 -4380_77950,288,4380_6200,Blanchardstown,4691-00011-1,1,4380_7778208_1050102,4380_68 -4380_78016,291,4380_62000,Raheen,93226-00013-1,0,4380_7778208_3040405,4380_970 -4380_78016,296,4380_62001,Raheen,93227-00021-1,0,4380_7778208_3040405,4380_970 -4380_78016,285,4380_62007,Raheen,94061-00009-1,0,4380_7778208_3040410,4380_970 -4380_78016,288,4380_62008,Raheen,94069-00011-1,0,4380_7778208_3040410,4380_970 -4380_78016,286,4380_62009,Raheen,94063-00010-1,0,4380_7778208_3040410,4380_970 -4380_77950,287,4380_6201,Blanchardstown,4719-00012-1,1,4380_7778208_1050102,4380_68 -4380_78016,289,4380_62010,Raheen,94065-00014-1,0,4380_7778208_3040410,4380_970 -4380_78016,287,4380_62011,Raheen,94071-00012-1,0,4380_7778208_3040410,4380_970 -4380_78016,292,4380_62012,Raheen,94064-00016-1,0,4380_7778208_3040410,4380_970 -4380_78016,290,4380_62013,Raheen,94062-00015-1,0,4380_7778208_3040410,4380_970 -4380_78016,294,4380_62014,Raheen,94072-00018-1,0,4380_7778208_3040410,4380_970 -4380_78016,295,4380_62015,Raheen,94066-00019-1,0,4380_7778208_3040410,4380_970 -4380_78016,293,4380_62016,Raheen,94070-00017-1,0,4380_7778208_3040410,4380_970 -4380_78016,291,4380_62018,Raheen,93721-00013-1,0,4380_7778208_3040408,4380_970 -4380_78016,296,4380_62019,Raheen,93722-00021-1,0,4380_7778208_3040408,4380_970 -4380_77950,291,4380_6202,Blanchardstown,54085-00013-1,1,4380_7778208_1050102,4380_65 -4380_78016,285,4380_62025,Raheen,92424-00009-1,0,4380_7778208_3040401,4380_970 -4380_78016,288,4380_62026,Raheen,92422-00011-1,0,4380_7778208_3040401,4380_970 -4380_78016,286,4380_62027,Raheen,92420-00010-1,0,4380_7778208_3040401,4380_970 -4380_78016,289,4380_62028,Raheen,92416-00014-1,0,4380_7778208_3040401,4380_970 -4380_78016,287,4380_62029,Raheen,92418-00012-1,0,4380_7778208_3040401,4380_970 -4380_77950,295,4380_6203,Blanchardstown,4607-00019-1,1,4380_7778208_1050102,4380_68 -4380_78016,292,4380_62030,Raheen,92421-00016-1,0,4380_7778208_3040401,4380_970 -4380_78016,290,4380_62031,Raheen,92425-00015-1,0,4380_7778208_3040401,4380_970 -4380_78016,294,4380_62032,Raheen,92419-00018-1,0,4380_7778208_3040401,4380_970 -4380_78016,295,4380_62033,Raheen,92417-00019-1,0,4380_7778208_3040401,4380_970 -4380_78016,293,4380_62034,Raheen,92423-00017-1,0,4380_7778208_3040401,4380_970 -4380_78016,297,4380_62036,Raheen,93005-00008-1,0,4380_7778208_3040404,4380_970 -4380_78016,291,4380_62038,Raheen,93410-00013-1,0,4380_7778208_3040406,4380_970 -4380_78016,296,4380_62039,Raheen,93411-00021-1,0,4380_7778208_3040406,4380_970 -4380_78016,285,4380_62045,Raheen,92658-00009-1,0,4380_7778208_3040402,4380_970 -4380_78016,288,4380_62046,Raheen,92666-00011-1,0,4380_7778208_3040402,4380_970 -4380_78016,286,4380_62047,Raheen,92660-00010-1,0,4380_7778208_3040402,4380_970 -4380_78016,289,4380_62048,Raheen,92664-00014-1,0,4380_7778208_3040402,4380_970 -4380_78016,287,4380_62049,Raheen,92662-00012-1,0,4380_7778208_3040402,4380_970 -4380_78016,292,4380_62050,Raheen,92661-00016-1,0,4380_7778208_3040402,4380_970 -4380_78016,290,4380_62051,Raheen,92659-00015-1,0,4380_7778208_3040402,4380_970 -4380_78016,294,4380_62052,Raheen,92663-00018-1,0,4380_7778208_3040402,4380_970 -4380_78016,295,4380_62053,Raheen,92665-00019-1,0,4380_7778208_3040402,4380_970 -4380_78016,293,4380_62054,Raheen,92667-00017-1,0,4380_7778208_3040402,4380_970 -4380_78016,291,4380_62056,Raheen,92426-00013-1,0,4380_7778208_3040401,4380_970 -4380_78016,296,4380_62057,Raheen,92427-00021-1,0,4380_7778208_3040401,4380_970 -4380_78016,297,4380_62064,Raheen,92819-00008-1,0,4380_7778208_3040403,4380_970 -4380_78016,285,4380_62065,Raheen,93239-00009-1,0,4380_7778208_3040405,4380_972 -4380_78016,288,4380_62067,Raheen,93237-00011-1,0,4380_7778208_3040405,4380_972 -4380_78016,286,4380_62068,Raheen,93235-00010-1,0,4380_7778208_3040405,4380_972 -4380_78016,291,4380_62069,Raheen,92668-00013-1,0,4380_7778208_3040402,4380_970 -4380_78016,289,4380_62070,Raheen,93233-00014-1,0,4380_7778208_3040405,4380_972 -4380_78016,287,4380_62071,Raheen,93231-00012-1,0,4380_7778208_3040405,4380_972 -4380_78016,292,4380_62072,Raheen,93236-00016-1,0,4380_7778208_3040405,4380_972 -4380_78016,290,4380_62073,Raheen,93240-00015-1,0,4380_7778208_3040405,4380_972 -4380_78016,294,4380_62074,Raheen,93232-00018-1,0,4380_7778208_3040405,4380_972 -4380_78016,295,4380_62075,Raheen,93234-00019-1,0,4380_7778208_3040405,4380_972 -4380_78016,293,4380_62076,Raheen,93238-00017-1,0,4380_7778208_3040405,4380_972 -4380_78016,296,4380_62077,Raheen,92669-00021-1,0,4380_7778208_3040402,4380_970 -4380_78016,285,4380_62083,Raheen,93010-00009-1,0,4380_7778208_3040404,4380_972 -4380_78016,288,4380_62085,Raheen,93014-00011-1,0,4380_7778208_3040404,4380_972 -4380_78016,286,4380_62086,Raheen,93012-00010-1,0,4380_7778208_3040404,4380_972 -4380_78016,291,4380_62087,Raheen,93006-00013-1,0,4380_7778208_3040404,4380_970 -4380_78016,289,4380_62088,Raheen,93016-00014-1,0,4380_7778208_3040404,4380_972 -4380_78016,287,4380_62089,Raheen,93008-00012-1,0,4380_7778208_3040404,4380_972 -4380_77950,289,4380_6209,Blanchardstown,54090-00014-1,1,4380_7778208_1050102,4380_61 -4380_78016,292,4380_62090,Raheen,93013-00016-1,0,4380_7778208_3040404,4380_972 -4380_78016,290,4380_62091,Raheen,93011-00015-1,0,4380_7778208_3040404,4380_972 -4380_78016,294,4380_62092,Raheen,93009-00018-1,0,4380_7778208_3040404,4380_972 -4380_78016,295,4380_62093,Raheen,93017-00019-1,0,4380_7778208_3040404,4380_972 -4380_78016,293,4380_62094,Raheen,93015-00017-1,0,4380_7778208_3040404,4380_972 -4380_78016,296,4380_62095,Raheen,93007-00021-1,0,4380_7778208_3040404,4380_970 -4380_78016,291,4380_62097,Raheen,92830-00013-1,0,4380_7778208_3040403,4380_970 -4380_78016,296,4380_62098,Raheen,92831-00021-1,0,4380_7778208_3040403,4380_970 -4380_77950,290,4380_6210,Blanchardstown,54088-00015-1,1,4380_7778208_1050102,4380_61 -4380_78016,297,4380_62100,Raheen,92670-00008-1,0,4380_7778208_3040402,4380_970 -4380_78016,285,4380_62106,Raheen,93413-00009-1,0,4380_7778208_3040406,4380_972 -4380_78016,288,4380_62107,Raheen,93421-00011-1,0,4380_7778208_3040406,4380_972 -4380_78016,286,4380_62108,Raheen,93419-00010-1,0,4380_7778208_3040406,4380_972 -4380_78016,289,4380_62109,Raheen,93417-00014-1,0,4380_7778208_3040406,4380_972 -4380_77950,292,4380_6211,Blanchardstown,54089-00016-1,1,4380_7778208_1050102,4380_61 -4380_78016,287,4380_62110,Raheen,93415-00012-1,0,4380_7778208_3040406,4380_972 -4380_78016,292,4380_62111,Raheen,93420-00016-1,0,4380_7778208_3040406,4380_972 -4380_78016,290,4380_62112,Raheen,93414-00015-1,0,4380_7778208_3040406,4380_972 -4380_78016,294,4380_62113,Raheen,93416-00018-1,0,4380_7778208_3040406,4380_972 -4380_78016,295,4380_62114,Raheen,93418-00019-1,0,4380_7778208_3040406,4380_972 -4380_78016,293,4380_62115,Raheen,93422-00017-1,0,4380_7778208_3040406,4380_972 -4380_77950,293,4380_6212,Blanchardstown,54086-00017-1,1,4380_7778208_1050102,4380_61 -4380_78016,285,4380_62121,Raheen,93741-00009-1,0,4380_7778208_3040408,4380_972 -4380_78016,288,4380_62123,Raheen,93739-00011-1,0,4380_7778208_3040408,4380_972 -4380_78016,286,4380_62124,Raheen,93735-00010-1,0,4380_7778208_3040408,4380_972 -4380_78016,291,4380_62125,Raheen,93585-00013-1,0,4380_7778208_3040407,4380_970 -4380_78016,289,4380_62126,Raheen,93743-00014-1,0,4380_7778208_3040408,4380_972 -4380_78016,287,4380_62127,Raheen,93737-00012-1,0,4380_7778208_3040408,4380_972 -4380_78016,292,4380_62128,Raheen,93736-00016-1,0,4380_7778208_3040408,4380_972 -4380_78016,290,4380_62129,Raheen,93742-00015-1,0,4380_7778208_3040408,4380_972 -4380_77950,294,4380_6213,Blanchardstown,54087-00018-1,1,4380_7778208_1050102,4380_61 -4380_78016,294,4380_62130,Raheen,93738-00018-1,0,4380_7778208_3040408,4380_972 -4380_78016,295,4380_62131,Raheen,93744-00019-1,0,4380_7778208_3040408,4380_972 -4380_78016,293,4380_62132,Raheen,93740-00017-1,0,4380_7778208_3040408,4380_972 -4380_78016,296,4380_62133,Raheen,93586-00021-1,0,4380_7778208_3040407,4380_970 -4380_78016,285,4380_62139,Raheen,93591-00009-1,0,4380_7778208_3040407,4380_972 -4380_77950,296,4380_6214,Blanchardstown,4747-00021-1,1,4380_7778208_1050102,4380_69 -4380_78016,288,4380_62141,Raheen,93587-00011-1,0,4380_7778208_3040407,4380_972 -4380_78016,286,4380_62142,Raheen,93595-00010-1,0,4380_7778208_3040407,4380_972 -4380_78016,291,4380_62143,Raheen,93245-00013-1,0,4380_7778208_3040405,4380_970 -4380_78016,289,4380_62144,Raheen,93589-00014-1,0,4380_7778208_3040407,4380_972 -4380_78016,287,4380_62145,Raheen,93593-00012-1,0,4380_7778208_3040407,4380_972 -4380_78016,292,4380_62146,Raheen,93596-00016-1,0,4380_7778208_3040407,4380_972 -4380_78016,290,4380_62147,Raheen,93592-00015-1,0,4380_7778208_3040407,4380_972 -4380_78016,294,4380_62148,Raheen,93594-00018-1,0,4380_7778208_3040407,4380_972 -4380_78016,295,4380_62149,Raheen,93590-00019-1,0,4380_7778208_3040407,4380_972 -4380_78016,293,4380_62150,Raheen,93588-00017-1,0,4380_7778208_3040407,4380_972 -4380_78016,296,4380_62151,Raheen,93246-00021-1,0,4380_7778208_3040405,4380_970 -4380_78016,297,4380_62153,Raheen,92441-00008-1,0,4380_7778208_3040401,4380_970 -4380_78016,285,4380_62159,Raheen,92837-00009-1,0,4380_7778208_3040403,4380_972 -4380_78016,288,4380_62161,Raheen,92839-00011-1,0,4380_7778208_3040403,4380_972 -4380_78016,286,4380_62162,Raheen,92841-00010-1,0,4380_7778208_3040403,4380_972 -4380_78016,291,4380_62163,Raheen,93745-00013-1,0,4380_7778208_3040408,4380_970 -4380_78016,289,4380_62164,Raheen,92835-00014-1,0,4380_7778208_3040403,4380_972 -4380_78016,287,4380_62165,Raheen,92833-00012-1,0,4380_7778208_3040403,4380_972 -4380_78016,292,4380_62166,Raheen,92842-00016-1,0,4380_7778208_3040403,4380_972 -4380_78016,290,4380_62167,Raheen,92838-00015-1,0,4380_7778208_3040403,4380_972 -4380_78016,294,4380_62168,Raheen,92834-00018-1,0,4380_7778208_3040403,4380_972 -4380_78016,295,4380_62169,Raheen,92836-00019-1,0,4380_7778208_3040403,4380_972 -4380_78016,293,4380_62170,Raheen,92840-00017-1,0,4380_7778208_3040403,4380_972 -4380_78016,296,4380_62171,Raheen,93746-00021-1,0,4380_7778208_3040408,4380_970 -4380_78016,291,4380_62173,Raheen,93426-00013-1,0,4380_7778208_3040406,4380_970 -4380_78016,296,4380_62174,Raheen,93427-00021-1,0,4380_7778208_3040406,4380_970 -4380_78016,285,4380_62180,Raheen,93905-00009-1,0,4380_7778208_3040409,4380_972 -4380_78016,288,4380_62181,Raheen,93909-00011-1,0,4380_7778208_3040409,4380_972 -4380_78016,286,4380_62182,Raheen,93913-00010-1,0,4380_7778208_3040409,4380_972 -4380_78016,289,4380_62183,Raheen,93911-00014-1,0,4380_7778208_3040409,4380_972 -4380_78016,287,4380_62184,Raheen,93907-00012-1,0,4380_7778208_3040409,4380_972 -4380_78016,292,4380_62185,Raheen,93914-00016-1,0,4380_7778208_3040409,4380_972 -4380_78016,290,4380_62186,Raheen,93906-00015-1,0,4380_7778208_3040409,4380_972 -4380_78016,294,4380_62187,Raheen,93908-00018-1,0,4380_7778208_3040409,4380_972 -4380_78016,295,4380_62188,Raheen,93912-00019-1,0,4380_7778208_3040409,4380_972 -4380_78016,293,4380_62189,Raheen,93910-00017-1,0,4380_7778208_3040409,4380_972 -4380_78016,297,4380_62191,Raheen,93021-00008-1,0,4380_7778208_3040404,4380_970 -4380_78016,291,4380_62193,Raheen,92442-00013-1,0,4380_7778208_3040401,4380_970 -4380_78016,296,4380_62194,Raheen,92443-00021-1,0,4380_7778208_3040401,4380_970 -4380_78113,285,4380_622,Dundalk,50062-00009-1,0,4380_7778208_1000907,4380_10 -4380_78016,285,4380_62200,Raheen,94095-00009-1,0,4380_7778208_3040410,4380_972 -4380_78016,288,4380_62201,Raheen,94089-00011-1,0,4380_7778208_3040410,4380_972 -4380_78016,286,4380_62202,Raheen,94093-00010-1,0,4380_7778208_3040410,4380_972 -4380_78016,289,4380_62203,Raheen,94097-00014-1,0,4380_7778208_3040410,4380_972 -4380_78016,287,4380_62204,Raheen,94091-00012-1,0,4380_7778208_3040410,4380_972 -4380_78016,292,4380_62205,Raheen,94094-00016-1,0,4380_7778208_3040410,4380_972 -4380_78016,290,4380_62206,Raheen,94096-00015-1,0,4380_7778208_3040410,4380_972 -4380_78016,294,4380_62207,Raheen,94092-00018-1,0,4380_7778208_3040410,4380_972 -4380_78016,295,4380_62208,Raheen,94098-00019-1,0,4380_7778208_3040410,4380_972 -4380_78016,293,4380_62209,Raheen,94090-00017-1,0,4380_7778208_3040410,4380_972 -4380_78016,285,4380_62215,Raheen,92448-00009-1,0,4380_7778208_3040401,4380_972 -4380_78016,288,4380_62217,Raheen,92444-00011-1,0,4380_7778208_3040401,4380_972 -4380_78016,286,4380_62218,Raheen,92452-00010-1,0,4380_7778208_3040401,4380_972 -4380_78016,291,4380_62219,Raheen,92684-00013-1,0,4380_7778208_3040402,4380_970 -4380_77950,285,4380_6222,Blanchardstown,54318-00009-1,1,4380_7778208_1051102,4380_63 -4380_78016,289,4380_62220,Raheen,92446-00014-1,0,4380_7778208_3040401,4380_972 -4380_78016,287,4380_62221,Raheen,92450-00012-1,0,4380_7778208_3040401,4380_972 -4380_78016,292,4380_62222,Raheen,92453-00016-1,0,4380_7778208_3040401,4380_972 -4380_78016,290,4380_62223,Raheen,92449-00015-1,0,4380_7778208_3040401,4380_972 -4380_78016,294,4380_62224,Raheen,92451-00018-1,0,4380_7778208_3040401,4380_972 -4380_78016,295,4380_62225,Raheen,92447-00019-1,0,4380_7778208_3040401,4380_972 -4380_78016,293,4380_62226,Raheen,92445-00017-1,0,4380_7778208_3040401,4380_972 -4380_78016,296,4380_62227,Raheen,92685-00021-1,0,4380_7778208_3040402,4380_970 -4380_78016,297,4380_62229,Raheen,92845-00008-1,0,4380_7778208_3040403,4380_970 -4380_77950,286,4380_6223,Blanchardstown,54316-00010-1,1,4380_7778208_1051102,4380_63 -4380_78016,285,4380_62235,Raheen,92690-00009-1,0,4380_7778208_3040402,4380_972 -4380_78016,288,4380_62237,Raheen,92686-00011-1,0,4380_7778208_3040402,4380_972 -4380_78016,286,4380_62238,Raheen,92692-00010-1,0,4380_7778208_3040402,4380_972 -4380_78016,291,4380_62239,Raheen,93032-00013-1,0,4380_7778208_3040404,4380_970 -4380_77950,297,4380_6224,Blanchardstown,54415-00008-1,1,4380_7778208_1051103,4380_64 -4380_78016,289,4380_62240,Raheen,92694-00014-1,0,4380_7778208_3040402,4380_972 -4380_78016,287,4380_62241,Raheen,92688-00012-1,0,4380_7778208_3040402,4380_972 -4380_78016,292,4380_62242,Raheen,92693-00016-1,0,4380_7778208_3040402,4380_972 -4380_78016,290,4380_62243,Raheen,92691-00015-1,0,4380_7778208_3040402,4380_972 -4380_78016,294,4380_62244,Raheen,92689-00018-1,0,4380_7778208_3040402,4380_972 -4380_78016,295,4380_62245,Raheen,92695-00019-1,0,4380_7778208_3040402,4380_972 -4380_78016,293,4380_62246,Raheen,92687-00017-1,0,4380_7778208_3040402,4380_972 -4380_78016,296,4380_62247,Raheen,93033-00021-1,0,4380_7778208_3040404,4380_970 -4380_77950,288,4380_6225,Blanchardstown,54322-00011-1,1,4380_7778208_1051102,4380_63 -4380_78016,285,4380_62253,Raheen,93262-00009-1,0,4380_7778208_3040405,4380_972 -4380_78016,288,4380_62255,Raheen,93264-00011-1,0,4380_7778208_3040405,4380_972 -4380_78016,286,4380_62256,Raheen,93266-00010-1,0,4380_7778208_3040405,4380_972 -4380_78016,291,4380_62257,Raheen,92846-00013-1,0,4380_7778208_3040403,4380_969 -4380_78016,289,4380_62258,Raheen,93268-00014-1,0,4380_7778208_3040405,4380_972 -4380_78016,287,4380_62259,Raheen,93260-00012-1,0,4380_7778208_3040405,4380_972 -4380_77950,287,4380_6226,Blanchardstown,54320-00012-1,1,4380_7778208_1051102,4380_63 -4380_78016,292,4380_62260,Raheen,93267-00016-1,0,4380_7778208_3040405,4380_972 -4380_78016,290,4380_62261,Raheen,93263-00015-1,0,4380_7778208_3040405,4380_972 -4380_78016,294,4380_62262,Raheen,93261-00018-1,0,4380_7778208_3040405,4380_972 -4380_78016,295,4380_62263,Raheen,93269-00019-1,0,4380_7778208_3040405,4380_972 -4380_78016,293,4380_62264,Raheen,93265-00017-1,0,4380_7778208_3040405,4380_972 -4380_78016,296,4380_62265,Raheen,92847-00021-1,0,4380_7778208_3040403,4380_969 -4380_78016,297,4380_62267,Raheen,92696-00008-1,0,4380_7778208_3040402,4380_969 -4380_77950,289,4380_6227,Blanchardstown,54314-00014-1,1,4380_7778208_1051102,4380_63 -4380_78016,285,4380_62273,Raheen,93039-00009-1,0,4380_7778208_3040404,4380_969 -4380_78016,288,4380_62274,Raheen,93035-00011-1,0,4380_7778208_3040404,4380_969 -4380_78016,286,4380_62275,Raheen,93043-00010-1,0,4380_7778208_3040404,4380_969 -4380_78016,289,4380_62276,Raheen,93041-00014-1,0,4380_7778208_3040404,4380_969 -4380_78016,287,4380_62277,Raheen,93037-00012-1,0,4380_7778208_3040404,4380_969 -4380_78016,292,4380_62278,Raheen,93044-00016-1,0,4380_7778208_3040404,4380_969 -4380_78016,290,4380_62279,Raheen,93040-00015-1,0,4380_7778208_3040404,4380_969 -4380_77950,290,4380_6228,Blanchardstown,54319-00015-1,1,4380_7778208_1051102,4380_63 -4380_78016,294,4380_62280,Raheen,93038-00018-1,0,4380_7778208_3040404,4380_969 -4380_78016,295,4380_62281,Raheen,93042-00019-1,0,4380_7778208_3040404,4380_969 -4380_78016,293,4380_62282,Raheen,93036-00017-1,0,4380_7778208_3040404,4380_969 -4380_78016,291,4380_62284,Raheen,93611-00013-1,0,4380_7778208_3040407,4380_969 -4380_78016,296,4380_62285,Raheen,93612-00021-1,0,4380_7778208_3040407,4380_969 -4380_77950,291,4380_6229,Blanchardstown,54324-00013-1,1,4380_7778208_1051102,4380_67 -4380_78016,285,4380_62291,Raheen,93444-00009-1,0,4380_7778208_3040406,4380_969 -4380_78016,288,4380_62292,Raheen,93448-00011-1,0,4380_7778208_3040406,4380_969 -4380_78016,286,4380_62293,Raheen,93446-00010-1,0,4380_7778208_3040406,4380_969 -4380_78016,289,4380_62294,Raheen,93442-00014-1,0,4380_7778208_3040406,4380_969 -4380_78016,287,4380_62295,Raheen,93450-00012-1,0,4380_7778208_3040406,4380_969 -4380_78016,292,4380_62296,Raheen,93447-00016-1,0,4380_7778208_3040406,4380_969 -4380_78016,290,4380_62297,Raheen,93445-00015-1,0,4380_7778208_3040406,4380_969 -4380_78016,294,4380_62298,Raheen,93451-00018-1,0,4380_7778208_3040406,4380_969 -4380_78016,295,4380_62299,Raheen,93443-00019-1,0,4380_7778208_3040406,4380_969 -4380_78113,286,4380_623,Dundalk,50066-00010-1,0,4380_7778208_1000907,4380_10 -4380_77950,292,4380_6230,Blanchardstown,54317-00016-1,1,4380_7778208_1051102,4380_63 -4380_78016,293,4380_62300,Raheen,93449-00017-1,0,4380_7778208_3040406,4380_969 -4380_78016,291,4380_62302,Raheen,93271-00013-1,0,4380_7778208_3040405,4380_969 -4380_78016,296,4380_62303,Raheen,93272-00021-1,0,4380_7778208_3040405,4380_969 -4380_78016,297,4380_62305,Raheen,92457-00008-1,0,4380_7778208_3040401,4380_969 -4380_77950,293,4380_6231,Blanchardstown,54323-00017-1,1,4380_7778208_1051102,4380_63 -4380_78016,285,4380_62311,Raheen,93759-00009-1,0,4380_7778208_3040408,4380_969 -4380_78016,288,4380_62312,Raheen,93761-00011-1,0,4380_7778208_3040408,4380_969 -4380_78016,286,4380_62313,Raheen,93765-00010-1,0,4380_7778208_3040408,4380_969 -4380_78016,289,4380_62314,Raheen,93763-00014-1,0,4380_7778208_3040408,4380_969 -4380_78016,287,4380_62315,Raheen,93767-00012-1,0,4380_7778208_3040408,4380_969 -4380_78016,292,4380_62316,Raheen,93766-00016-1,0,4380_7778208_3040408,4380_969 -4380_78016,290,4380_62317,Raheen,93760-00015-1,0,4380_7778208_3040408,4380_969 -4380_78016,294,4380_62318,Raheen,93768-00018-1,0,4380_7778208_3040408,4380_969 -4380_78016,295,4380_62319,Raheen,93764-00019-1,0,4380_7778208_3040408,4380_969 -4380_77950,294,4380_6232,Blanchardstown,54321-00018-1,1,4380_7778208_1051102,4380_63 -4380_78016,293,4380_62320,Raheen,93762-00017-1,0,4380_7778208_3040408,4380_969 -4380_78016,291,4380_62322,Raheen,93769-00013-1,0,4380_7778208_3040408,4380_969 -4380_78016,296,4380_62323,Raheen,93770-00021-1,0,4380_7778208_3040408,4380_969 -4380_78016,297,4380_62325,Raheen,93045-00008-1,0,4380_7778208_3040404,4380_969 -4380_77950,295,4380_6233,Blanchardstown,54315-00019-1,1,4380_7778208_1051102,4380_63 -4380_78016,285,4380_62331,Raheen,93616-00009-1,0,4380_7778208_3040407,4380_969 -4380_78016,288,4380_62332,Raheen,93614-00011-1,0,4380_7778208_3040407,4380_969 -4380_78016,286,4380_62333,Raheen,93622-00010-1,0,4380_7778208_3040407,4380_969 -4380_78016,289,4380_62334,Raheen,93620-00014-1,0,4380_7778208_3040407,4380_969 -4380_78016,287,4380_62335,Raheen,93618-00012-1,0,4380_7778208_3040407,4380_969 -4380_78016,292,4380_62336,Raheen,93623-00016-1,0,4380_7778208_3040407,4380_969 -4380_78016,290,4380_62337,Raheen,93617-00015-1,0,4380_7778208_3040407,4380_969 -4380_78016,294,4380_62338,Raheen,93619-00018-1,0,4380_7778208_3040407,4380_969 -4380_78016,295,4380_62339,Raheen,93621-00019-1,0,4380_7778208_3040407,4380_969 -4380_77950,296,4380_6234,Blanchardstown,54325-00021-1,1,4380_7778208_1051102,4380_67 -4380_78016,293,4380_62340,Raheen,93615-00017-1,0,4380_7778208_3040407,4380_969 -4380_78016,285,4380_62346,City Centre,92865-00009-1,0,4380_7778208_3040403,4380_971 -4380_78016,288,4380_62347,City Centre,92859-00011-1,0,4380_7778208_3040403,4380_971 -4380_78016,286,4380_62348,City Centre,92863-00010-1,0,4380_7778208_3040403,4380_971 -4380_78016,289,4380_62349,City Centre,92867-00014-1,0,4380_7778208_3040403,4380_971 -4380_78016,287,4380_62350,City Centre,92861-00012-1,0,4380_7778208_3040403,4380_971 -4380_78016,292,4380_62351,City Centre,92864-00016-1,0,4380_7778208_3040403,4380_971 -4380_78016,290,4380_62352,City Centre,92866-00015-1,0,4380_7778208_3040403,4380_971 -4380_78016,294,4380_62353,City Centre,92862-00018-1,0,4380_7778208_3040403,4380_971 -4380_78016,295,4380_62354,City Centre,92868-00019-1,0,4380_7778208_3040403,4380_971 -4380_78016,293,4380_62355,City Centre,92860-00017-1,0,4380_7778208_3040403,4380_971 -4380_78016,291,4380_62357,Raheen,92468-00013-1,0,4380_7778208_3040401,4380_970 -4380_78016,296,4380_62358,Raheen,92469-00021-1,0,4380_7778208_3040401,4380_970 -4380_77950,285,4380_6236,Blanchardstown,4483-00009-1,1,4380_7778208_1050101,4380_68 -4380_78016,285,4380_62364,Raheen,94115-00009-1,0,4380_7778208_3040410,4380_970 -4380_78016,288,4380_62365,Raheen,94119-00011-1,0,4380_7778208_3040410,4380_970 -4380_78016,286,4380_62366,Raheen,94117-00010-1,0,4380_7778208_3040410,4380_970 -4380_78016,289,4380_62367,Raheen,94123-00014-1,0,4380_7778208_3040410,4380_970 -4380_78016,287,4380_62368,Raheen,94121-00012-1,0,4380_7778208_3040410,4380_970 -4380_78016,292,4380_62369,Raheen,94118-00016-1,0,4380_7778208_3040410,4380_970 -4380_77950,286,4380_6237,Blanchardstown,4497-00010-1,1,4380_7778208_1050101,4380_68 -4380_78016,290,4380_62370,Raheen,94116-00015-1,0,4380_7778208_3040410,4380_970 -4380_78016,294,4380_62371,Raheen,94122-00018-1,0,4380_7778208_3040410,4380_970 -4380_78016,295,4380_62372,Raheen,94124-00019-1,0,4380_7778208_3040410,4380_970 -4380_78016,293,4380_62373,Raheen,94120-00017-1,0,4380_7778208_3040410,4380_970 -4380_78016,297,4380_62375,Raheen,92869-00008-1,0,4380_7778208_3040403,4380_970 -4380_77950,288,4380_6238,Blanchardstown,4539-00011-1,1,4380_7778208_1050101,4380_68 -4380_78016,285,4380_62381,Raheen,92474-00009-1,0,4380_7778208_3040401,4380_970 -4380_78016,288,4380_62382,Raheen,92470-00011-1,0,4380_7778208_3040401,4380_970 -4380_78016,286,4380_62383,Raheen,92472-00010-1,0,4380_7778208_3040401,4380_970 -4380_78016,289,4380_62384,Raheen,92476-00014-1,0,4380_7778208_3040401,4380_970 -4380_78016,287,4380_62385,Raheen,92478-00012-1,0,4380_7778208_3040401,4380_970 -4380_78016,292,4380_62386,Raheen,92473-00016-1,0,4380_7778208_3040401,4380_970 -4380_78016,290,4380_62387,Raheen,92475-00015-1,0,4380_7778208_3040401,4380_970 -4380_78016,294,4380_62388,Raheen,92479-00018-1,0,4380_7778208_3040401,4380_970 -4380_78016,295,4380_62389,Raheen,92477-00019-1,0,4380_7778208_3040401,4380_970 -4380_77950,287,4380_6239,Blanchardstown,4567-00012-1,1,4380_7778208_1050101,4380_68 -4380_78016,293,4380_62390,Raheen,92471-00017-1,0,4380_7778208_3040401,4380_970 -4380_78016,291,4380_62392,Raheen,93058-00013-1,0,4380_7778208_3040404,4380_970 -4380_78016,296,4380_62393,Raheen,93059-00021-1,0,4380_7778208_3040404,4380_970 -4380_78016,297,4380_62395,Raheen,92710-00008-1,0,4380_7778208_3040402,4380_970 -4380_78113,287,4380_624,Dundalk,50060-00012-1,0,4380_7778208_1000907,4380_10 -4380_77950,291,4380_6240,Blanchardstown,54013-00013-1,1,4380_7778208_1050101,4380_65 -4380_78016,285,4380_62401,Raheen,92713-00009-1,0,4380_7778208_3040402,4380_970 -4380_78016,288,4380_62402,Raheen,92717-00011-1,0,4380_7778208_3040402,4380_970 -4380_78016,286,4380_62403,Raheen,92711-00010-1,0,4380_7778208_3040402,4380_970 -4380_78016,289,4380_62404,Raheen,92715-00014-1,0,4380_7778208_3040402,4380_970 -4380_78016,287,4380_62405,Raheen,92719-00012-1,0,4380_7778208_3040402,4380_970 -4380_78016,292,4380_62406,Raheen,92712-00016-1,0,4380_7778208_3040402,4380_970 -4380_78016,290,4380_62407,Raheen,92714-00015-1,0,4380_7778208_3040402,4380_970 -4380_78016,294,4380_62408,Raheen,92720-00018-1,0,4380_7778208_3040402,4380_970 -4380_78016,295,4380_62409,Raheen,92716-00019-1,0,4380_7778208_3040402,4380_970 -4380_77950,295,4380_6241,Blanchardstown,4455-00019-1,1,4380_7778208_1050101,4380_68 -4380_78016,293,4380_62410,Raheen,92718-00017-1,0,4380_7778208_3040402,4380_970 -4380_78016,291,4380_62412,Raheen,93638-00013-1,0,4380_7778208_3040407,4380_970 -4380_78016,296,4380_62413,Raheen,93639-00021-1,0,4380_7778208_3040407,4380_970 -4380_78016,285,4380_62419,Raheen,93068-00009-1,0,4380_7778208_3040404,4380_970 -4380_78016,288,4380_62420,Raheen,93066-00011-1,0,4380_7778208_3040404,4380_970 -4380_78016,286,4380_62421,Raheen,93060-00010-1,0,4380_7778208_3040404,4380_970 -4380_78016,289,4380_62422,Raheen,93064-00014-1,0,4380_7778208_3040404,4380_970 -4380_78016,287,4380_62423,Raheen,93062-00012-1,0,4380_7778208_3040404,4380_970 -4380_78016,292,4380_62424,Raheen,93061-00016-1,0,4380_7778208_3040404,4380_970 -4380_78016,290,4380_62425,Raheen,93069-00015-1,0,4380_7778208_3040404,4380_970 -4380_78016,294,4380_62426,Raheen,93063-00018-1,0,4380_7778208_3040404,4380_970 -4380_78016,295,4380_62427,Raheen,93065-00019-1,0,4380_7778208_3040404,4380_970 -4380_78016,293,4380_62428,Raheen,93067-00017-1,0,4380_7778208_3040404,4380_970 -4380_78016,297,4380_62430,Raheen,92483-00008-1,0,4380_7778208_3040401,4380_970 -4380_78016,291,4380_62432,Raheen,92494-00013-1,0,4380_7778208_3040401,4380_970 -4380_78016,296,4380_62433,Raheen,92495-00021-1,0,4380_7778208_3040401,4380_970 -4380_78016,285,4380_62439,Raheen,93649-00009-1,0,4380_7778208_3040407,4380_970 -4380_78016,288,4380_62440,Raheen,93641-00011-1,0,4380_7778208_3040407,4380_970 -4380_78016,286,4380_62441,Raheen,93645-00010-1,0,4380_7778208_3040407,4380_970 -4380_78016,289,4380_62442,Raheen,93647-00014-1,0,4380_7778208_3040407,4380_970 -4380_78016,287,4380_62443,Raheen,93643-00012-1,0,4380_7778208_3040407,4380_970 -4380_78016,292,4380_62444,Raheen,93646-00016-1,0,4380_7778208_3040407,4380_970 -4380_78016,290,4380_62445,Raheen,93650-00015-1,0,4380_7778208_3040407,4380_970 -4380_78016,294,4380_62446,Raheen,93644-00018-1,0,4380_7778208_3040407,4380_970 -4380_78016,295,4380_62447,Raheen,93648-00019-1,0,4380_7778208_3040407,4380_970 -4380_78016,293,4380_62448,Raheen,93642-00017-1,0,4380_7778208_3040407,4380_970 -4380_78016,297,4380_62450,Raheen,92871-00008-1,0,4380_7778208_3040403,4380_970 -4380_78016,285,4380_62456,Raheen,92496-00009-1,0,4380_7778208_3040401,4380_970 -4380_78016,288,4380_62457,Raheen,92504-00011-1,0,4380_7778208_3040401,4380_970 -4380_78016,286,4380_62458,Raheen,92500-00010-1,0,4380_7778208_3040401,4380_970 -4380_78016,289,4380_62459,Raheen,92502-00014-1,0,4380_7778208_3040401,4380_970 -4380_78016,287,4380_62460,Raheen,92498-00012-1,0,4380_7778208_3040401,4380_970 -4380_78016,292,4380_62461,Raheen,92501-00016-1,0,4380_7778208_3040401,4380_970 -4380_78016,290,4380_62462,Raheen,92497-00015-1,0,4380_7778208_3040401,4380_970 -4380_78016,294,4380_62463,Raheen,92499-00018-1,0,4380_7778208_3040401,4380_970 -4380_78016,295,4380_62464,Raheen,92503-00019-1,0,4380_7778208_3040401,4380_970 -4380_78016,293,4380_62465,Raheen,92505-00017-1,0,4380_7778208_3040401,4380_970 -4380_78016,291,4380_62467,Raheen,93082-00013-1,0,4380_7778208_3040404,4380_970 -4380_78016,296,4380_62468,Raheen,93083-00021-1,0,4380_7778208_3040404,4380_970 -4380_77950,289,4380_6247,Blanchardstown,54016-00014-1,1,4380_7778208_1050101,4380_61 -4380_78016,297,4380_62470,Raheen,92722-00008-1,0,4380_7778208_3040402,4380_970 -4380_78016,285,4380_62476,Raheen,93090-00009-1,0,4380_7778208_3040404,4380_970 -4380_78016,288,4380_62477,Raheen,93084-00011-1,0,4380_7778208_3040404,4380_970 -4380_78016,286,4380_62478,Raheen,93086-00010-1,0,4380_7778208_3040404,4380_970 -4380_78016,289,4380_62479,Raheen,93092-00014-1,0,4380_7778208_3040404,4380_970 -4380_77950,290,4380_6248,Blanchardstown,54017-00015-1,1,4380_7778208_1050101,4380_61 -4380_78016,287,4380_62480,Raheen,93088-00012-1,0,4380_7778208_3040404,4380_970 -4380_78016,292,4380_62481,Raheen,93087-00016-1,0,4380_7778208_3040404,4380_970 -4380_78016,290,4380_62482,Raheen,93091-00015-1,0,4380_7778208_3040404,4380_970 -4380_78016,294,4380_62483,Raheen,93089-00018-1,0,4380_7778208_3040404,4380_970 -4380_78016,295,4380_62484,Raheen,93093-00019-1,0,4380_7778208_3040404,4380_970 -4380_78016,293,4380_62485,Raheen,93085-00017-1,0,4380_7778208_3040404,4380_970 -4380_78016,291,4380_62487,Raheen,93663-00013-1,0,4380_7778208_3040407,4380_970 -4380_78016,296,4380_62488,Raheen,93664-00021-1,0,4380_7778208_3040407,4380_970 -4380_77950,292,4380_6249,Blanchardstown,54014-00016-1,1,4380_7778208_1050101,4380_61 -4380_78016,297,4380_62490,Raheen,92509-00008-1,0,4380_7778208_3040401,4380_970 -4380_78016,285,4380_62496,Raheen,93670-00009-1,0,4380_7778208_3040407,4380_970 -4380_78016,288,4380_62497,Raheen,93668-00011-1,0,4380_7778208_3040407,4380_970 -4380_78016,286,4380_62498,Raheen,93674-00010-1,0,4380_7778208_3040407,4380_970 -4380_78016,289,4380_62499,Raheen,93666-00014-1,0,4380_7778208_3040407,4380_970 -4380_78113,288,4380_625,Dundalk,50056-00011-1,0,4380_7778208_1000907,4380_10 -4380_77950,293,4380_6250,Blanchardstown,54018-00017-1,1,4380_7778208_1050101,4380_61 -4380_78016,287,4380_62500,Raheen,93672-00012-1,0,4380_7778208_3040407,4380_970 -4380_78016,292,4380_62501,Raheen,93675-00016-1,0,4380_7778208_3040407,4380_970 -4380_78016,290,4380_62502,Raheen,93671-00015-1,0,4380_7778208_3040407,4380_970 -4380_78016,294,4380_62503,Raheen,93673-00018-1,0,4380_7778208_3040407,4380_970 -4380_78016,295,4380_62504,Raheen,93667-00019-1,0,4380_7778208_3040407,4380_970 -4380_78016,293,4380_62505,Raheen,93669-00017-1,0,4380_7778208_3040407,4380_970 -4380_78016,291,4380_62507,Raheen,92520-00013-1,0,4380_7778208_3040401,4380_970 -4380_78016,296,4380_62508,Raheen,92521-00021-1,0,4380_7778208_3040401,4380_970 -4380_77950,294,4380_6251,Blanchardstown,54015-00018-1,1,4380_7778208_1050101,4380_61 -4380_78016,297,4380_62510,City Centre,92873-00008-1,0,4380_7778208_3040403,4380_971 -4380_78016,285,4380_62516,Raheen,92528-00009-1,0,4380_7778208_3040401,4380_970 -4380_78016,288,4380_62517,Raheen,92524-00011-1,0,4380_7778208_3040401,4380_970 -4380_78016,286,4380_62518,Raheen,92526-00010-1,0,4380_7778208_3040401,4380_970 -4380_78016,289,4380_62519,Raheen,92530-00014-1,0,4380_7778208_3040401,4380_970 -4380_77950,296,4380_6252,Blanchardstown,4581-00021-1,1,4380_7778208_1050101,4380_69 -4380_78016,287,4380_62520,Raheen,92522-00012-1,0,4380_7778208_3040401,4380_970 -4380_78016,292,4380_62521,Raheen,92527-00016-1,0,4380_7778208_3040401,4380_970 -4380_78016,290,4380_62522,Raheen,92529-00015-1,0,4380_7778208_3040401,4380_970 -4380_78016,294,4380_62523,Raheen,92523-00018-1,0,4380_7778208_3040401,4380_970 -4380_78016,295,4380_62524,Raheen,92531-00019-1,0,4380_7778208_3040401,4380_970 -4380_78016,293,4380_62525,Raheen,92525-00017-1,0,4380_7778208_3040401,4380_970 -4380_78016,291,4380_62527,City Centre,93106-00013-1,0,4380_7778208_3040404,4380_971 -4380_78016,296,4380_62528,City Centre,93107-00021-1,0,4380_7778208_3040404,4380_971 -4380_78016,297,4380_62530,City Centre,92724-00008-1,0,4380_7778208_3040402,4380_971 -4380_78016,297,4380_62537,University,92306-00008-1,1,4380_7778208_3040401,4380_975 -4380_78016,285,4380_62538,University,92302-00009-1,1,4380_7778208_3040401,4380_976 -4380_78016,288,4380_62539,University,92300-00011-1,1,4380_7778208_3040401,4380_976 -4380_78016,286,4380_62540,University,92296-00010-1,1,4380_7778208_3040401,4380_976 -4380_78016,289,4380_62541,University,92298-00014-1,1,4380_7778208_3040401,4380_976 -4380_78016,287,4380_62542,University,92304-00012-1,1,4380_7778208_3040401,4380_976 -4380_78016,292,4380_62543,University,92297-00016-1,1,4380_7778208_3040401,4380_976 -4380_78016,290,4380_62544,University,92303-00015-1,1,4380_7778208_3040401,4380_976 -4380_78016,294,4380_62545,University,92305-00018-1,1,4380_7778208_3040401,4380_976 -4380_78016,295,4380_62546,University,92299-00019-1,1,4380_7778208_3040401,4380_976 -4380_78016,293,4380_62547,University,92301-00017-1,1,4380_7778208_3040401,4380_976 -4380_78016,291,4380_62549,University,92307-00013-1,1,4380_7778208_3040401,4380_975 -4380_78016,296,4380_62550,University,92308-00021-1,1,4380_7778208_3040401,4380_975 -4380_78016,285,4380_62556,University,92543-00009-1,1,4380_7778208_3040402,4380_975 -4380_78016,288,4380_62557,University,92537-00011-1,1,4380_7778208_3040402,4380_975 -4380_78016,286,4380_62558,University,92541-00010-1,1,4380_7778208_3040402,4380_975 -4380_78016,289,4380_62559,University,92539-00014-1,1,4380_7778208_3040402,4380_975 -4380_78016,287,4380_62560,University,92535-00012-1,1,4380_7778208_3040402,4380_975 -4380_78016,292,4380_62561,University,92542-00016-1,1,4380_7778208_3040402,4380_975 -4380_78016,290,4380_62562,University,92544-00015-1,1,4380_7778208_3040402,4380_975 -4380_78016,294,4380_62563,University,92536-00018-1,1,4380_7778208_3040402,4380_975 -4380_78016,295,4380_62564,University,92540-00019-1,1,4380_7778208_3040402,4380_975 -4380_78016,293,4380_62565,University,92538-00017-1,1,4380_7778208_3040402,4380_975 -4380_78016,285,4380_62571,University,92731-00009-1,1,4380_7778208_3040403,4380_975 -4380_78016,288,4380_62573,University,92725-00011-1,1,4380_7778208_3040403,4380_975 -4380_78016,286,4380_62574,University,92729-00010-1,1,4380_7778208_3040403,4380_975 -4380_78016,291,4380_62575,University,92545-00013-1,1,4380_7778208_3040402,4380_976 -4380_78016,289,4380_62576,University,92727-00014-1,1,4380_7778208_3040403,4380_975 -4380_78016,287,4380_62577,University,92733-00012-1,1,4380_7778208_3040403,4380_975 -4380_78016,292,4380_62578,University,92730-00016-1,1,4380_7778208_3040403,4380_975 -4380_78016,290,4380_62579,University,92732-00015-1,1,4380_7778208_3040403,4380_975 -4380_78016,294,4380_62580,University,92734-00018-1,1,4380_7778208_3040403,4380_975 -4380_78016,295,4380_62581,University,92728-00019-1,1,4380_7778208_3040403,4380_975 -4380_78016,293,4380_62582,University,92726-00017-1,1,4380_7778208_3040403,4380_975 -4380_78016,296,4380_62583,University,92546-00021-1,1,4380_7778208_3040402,4380_976 -4380_78016,285,4380_62589,University,93112-00009-1,1,4380_7778208_3040405,4380_975 -4380_77950,285,4380_6259,Blanchardstown,54422-00009-1,1,4380_7778208_1051103,4380_63 -4380_78016,288,4380_62590,University,93116-00011-1,1,4380_7778208_3040405,4380_975 -4380_78016,286,4380_62591,University,93114-00010-1,1,4380_7778208_3040405,4380_975 -4380_78016,289,4380_62592,University,93110-00014-1,1,4380_7778208_3040405,4380_975 -4380_78016,287,4380_62593,University,93108-00012-1,1,4380_7778208_3040405,4380_975 -4380_78016,292,4380_62594,University,93115-00016-1,1,4380_7778208_3040405,4380_975 -4380_78016,290,4380_62595,University,93113-00015-1,1,4380_7778208_3040405,4380_975 -4380_78016,294,4380_62596,University,93109-00018-1,1,4380_7778208_3040405,4380_975 -4380_78016,295,4380_62597,University,93111-00019-1,1,4380_7778208_3040405,4380_975 -4380_78016,293,4380_62598,University,93117-00017-1,1,4380_7778208_3040405,4380_975 -4380_78113,289,4380_626,Dundalk,50058-00014-1,0,4380_7778208_1000907,4380_10 -4380_77950,286,4380_6260,Blanchardstown,54424-00010-1,1,4380_7778208_1051103,4380_63 -4380_78016,291,4380_62600,University,92884-00013-1,1,4380_7778208_3040404,4380_975 -4380_78016,296,4380_62601,University,92885-00021-1,1,4380_7778208_3040404,4380_975 -4380_78016,285,4380_62607,University,92892-00009-1,1,4380_7778208_3040404,4380_975 -4380_78016,288,4380_62608,University,92890-00011-1,1,4380_7778208_3040404,4380_975 -4380_78016,286,4380_62609,University,92888-00010-1,1,4380_7778208_3040404,4380_975 -4380_77950,288,4380_6261,Blanchardstown,54418-00011-1,1,4380_7778208_1051103,4380_63 -4380_78016,289,4380_62610,University,92886-00014-1,1,4380_7778208_3040404,4380_975 -4380_78016,287,4380_62611,University,92894-00012-1,1,4380_7778208_3040404,4380_975 -4380_78016,292,4380_62612,University,92889-00016-1,1,4380_7778208_3040404,4380_975 -4380_78016,290,4380_62613,University,92893-00015-1,1,4380_7778208_3040404,4380_975 -4380_78016,294,4380_62614,University,92895-00018-1,1,4380_7778208_3040404,4380_975 -4380_78016,295,4380_62615,University,92887-00019-1,1,4380_7778208_3040404,4380_975 -4380_78016,293,4380_62616,University,92891-00017-1,1,4380_7778208_3040404,4380_975 -4380_78016,291,4380_62618,University,92737-00013-1,1,4380_7778208_3040403,4380_975 -4380_78016,296,4380_62619,University,92738-00021-1,1,4380_7778208_3040403,4380_975 -4380_77950,287,4380_6262,Blanchardstown,54416-00012-1,1,4380_7778208_1051103,4380_63 -4380_78016,285,4380_62625,University,93300-00009-1,1,4380_7778208_3040406,4380_975 -4380_78016,288,4380_62626,University,93294-00011-1,1,4380_7778208_3040406,4380_975 -4380_78016,286,4380_62627,University,93296-00010-1,1,4380_7778208_3040406,4380_975 -4380_78016,289,4380_62628,University,93292-00014-1,1,4380_7778208_3040406,4380_975 -4380_78016,287,4380_62629,University,93298-00012-1,1,4380_7778208_3040406,4380_975 -4380_77950,289,4380_6263,Blanchardstown,54420-00014-1,1,4380_7778208_1051103,4380_63 -4380_78016,292,4380_62630,University,93297-00016-1,1,4380_7778208_3040406,4380_975 -4380_78016,290,4380_62631,University,93301-00015-1,1,4380_7778208_3040406,4380_975 -4380_78016,294,4380_62632,University,93299-00018-1,1,4380_7778208_3040406,4380_975 -4380_78016,295,4380_62633,University,93293-00019-1,1,4380_7778208_3040406,4380_975 -4380_78016,293,4380_62634,University,93295-00017-1,1,4380_7778208_3040406,4380_975 -4380_78016,291,4380_62636,University,93120-00013-1,1,4380_7778208_3040405,4380_975 -4380_78016,296,4380_62637,University,93121-00021-1,1,4380_7778208_3040405,4380_975 -4380_77950,290,4380_6264,Blanchardstown,54423-00015-1,1,4380_7778208_1051103,4380_63 -4380_78016,285,4380_62643,University,93693-00009-1,1,4380_7778208_3040408,4380_975 -4380_78016,288,4380_62644,University,93695-00011-1,1,4380_7778208_3040408,4380_975 -4380_78016,286,4380_62645,University,93697-00010-1,1,4380_7778208_3040408,4380_975 -4380_78016,289,4380_62646,University,93691-00014-1,1,4380_7778208_3040408,4380_975 -4380_78016,287,4380_62647,University,93699-00012-1,1,4380_7778208_3040408,4380_975 -4380_78016,292,4380_62648,University,93698-00016-1,1,4380_7778208_3040408,4380_975 -4380_78016,290,4380_62649,University,93694-00015-1,1,4380_7778208_3040408,4380_975 -4380_77950,291,4380_6265,Blanchardstown,54543-00013-1,1,4380_7778208_1051105,4380_64 -4380_78016,294,4380_62650,University,93700-00018-1,1,4380_7778208_3040408,4380_975 -4380_78016,295,4380_62651,University,93692-00019-1,1,4380_7778208_3040408,4380_975 -4380_78016,293,4380_62652,University,93696-00017-1,1,4380_7778208_3040408,4380_975 -4380_78016,297,4380_62659,University,92559-00008-1,1,4380_7778208_3040402,4380_975 -4380_77950,292,4380_6266,Blanchardstown,54425-00016-1,1,4380_7778208_1051103,4380_63 -4380_78016,285,4380_62660,University,93475-00009-1,1,4380_7778208_3040407,4380_976 -4380_78016,288,4380_62662,University,93473-00011-1,1,4380_7778208_3040407,4380_976 -4380_78016,286,4380_62663,University,93469-00010-1,1,4380_7778208_3040407,4380_976 -4380_78016,291,4380_62664,University,93302-00013-1,1,4380_7778208_3040406,4380_978 -4380_78016,289,4380_62665,University,93467-00014-1,1,4380_7778208_3040407,4380_976 -4380_78016,287,4380_62666,University,93471-00012-1,1,4380_7778208_3040407,4380_976 -4380_78016,292,4380_62667,University,93470-00016-1,1,4380_7778208_3040407,4380_976 -4380_78016,290,4380_62668,University,93476-00015-1,1,4380_7778208_3040407,4380_976 -4380_78016,294,4380_62669,University,93472-00018-1,1,4380_7778208_3040407,4380_976 -4380_77950,293,4380_6267,Blanchardstown,54419-00017-1,1,4380_7778208_1051103,4380_63 -4380_78016,295,4380_62670,University,93468-00019-1,1,4380_7778208_3040407,4380_976 -4380_78016,293,4380_62671,University,93474-00017-1,1,4380_7778208_3040407,4380_976 -4380_78016,296,4380_62672,University,93303-00021-1,1,4380_7778208_3040406,4380_978 -4380_78016,285,4380_62678,University,93785-00009-1,1,4380_7778208_3040409,4380_975 -4380_77950,294,4380_6268,Blanchardstown,54417-00018-1,1,4380_7778208_1051103,4380_63 -4380_78016,288,4380_62680,University,93791-00011-1,1,4380_7778208_3040409,4380_975 -4380_78016,286,4380_62681,University,93787-00010-1,1,4380_7778208_3040409,4380_975 -4380_78016,291,4380_62682,University,92323-00013-1,1,4380_7778208_3040401,4380_976 -4380_78016,289,4380_62683,University,93793-00014-1,1,4380_7778208_3040409,4380_975 -4380_78016,287,4380_62684,University,93789-00012-1,1,4380_7778208_3040409,4380_975 -4380_78016,292,4380_62685,University,93788-00016-1,1,4380_7778208_3040409,4380_975 -4380_78016,290,4380_62686,University,93786-00015-1,1,4380_7778208_3040409,4380_975 -4380_78016,294,4380_62687,University,93790-00018-1,1,4380_7778208_3040409,4380_975 -4380_78016,295,4380_62688,University,93794-00019-1,1,4380_7778208_3040409,4380_975 -4380_78016,293,4380_62689,University,93792-00017-1,1,4380_7778208_3040409,4380_975 -4380_77950,295,4380_6269,Blanchardstown,54421-00019-1,1,4380_7778208_1051103,4380_63 -4380_78016,296,4380_62690,University,92324-00021-1,1,4380_7778208_3040401,4380_976 -4380_78016,297,4380_62697,University,92908-00008-1,1,4380_7778208_3040404,4380_975 -4380_78016,285,4380_62698,University,93977-00009-1,1,4380_7778208_3040410,4380_976 -4380_78113,290,4380_627,Dundalk,50063-00015-1,0,4380_7778208_1000907,4380_10 -4380_77950,296,4380_6270,Blanchardstown,54544-00021-1,1,4380_7778208_1051105,4380_64 -4380_78016,288,4380_62700,University,93973-00011-1,1,4380_7778208_3040410,4380_976 -4380_78016,286,4380_62701,University,93979-00010-1,1,4380_7778208_3040410,4380_976 -4380_78016,291,4380_62702,University,92560-00013-1,1,4380_7778208_3040402,4380_978 -4380_78016,289,4380_62703,University,93971-00014-1,1,4380_7778208_3040410,4380_976 -4380_78016,287,4380_62704,University,93969-00012-1,1,4380_7778208_3040410,4380_976 -4380_78016,292,4380_62705,University,93980-00016-1,1,4380_7778208_3040410,4380_976 -4380_78016,290,4380_62706,University,93978-00015-1,1,4380_7778208_3040410,4380_976 -4380_78016,294,4380_62707,University,93970-00018-1,1,4380_7778208_3040410,4380_976 -4380_78016,295,4380_62708,University,93972-00019-1,1,4380_7778208_3040410,4380_976 -4380_78016,293,4380_62709,University,93974-00017-1,1,4380_7778208_3040410,4380_976 -4380_78016,296,4380_62710,University,92561-00021-1,1,4380_7778208_3040402,4380_978 -4380_78016,285,4380_62716,University,92327-00009-1,1,4380_7778208_3040401,4380_975 -4380_78016,288,4380_62718,University,92333-00011-1,1,4380_7778208_3040401,4380_975 -4380_78016,286,4380_62719,University,92325-00010-1,1,4380_7778208_3040401,4380_975 -4380_77950,285,4380_6272,Blanchardstown,4637-00009-1,1,4380_7778208_1050102,4380_68 -4380_78016,291,4380_62720,University,92909-00013-1,1,4380_7778208_3040404,4380_976 -4380_78016,289,4380_62721,University,92329-00014-1,1,4380_7778208_3040401,4380_975 -4380_78016,287,4380_62722,University,92331-00012-1,1,4380_7778208_3040401,4380_975 -4380_78016,292,4380_62723,University,92326-00016-1,1,4380_7778208_3040401,4380_975 -4380_78016,290,4380_62724,University,92328-00015-1,1,4380_7778208_3040401,4380_975 -4380_78016,294,4380_62725,University,92332-00018-1,1,4380_7778208_3040401,4380_975 -4380_78016,295,4380_62726,University,92330-00019-1,1,4380_7778208_3040401,4380_975 -4380_78016,293,4380_62727,University,92334-00017-1,1,4380_7778208_3040401,4380_975 -4380_78016,296,4380_62728,University,92910-00021-1,1,4380_7778208_3040404,4380_976 -4380_77950,286,4380_6273,Blanchardstown,4679-00010-1,1,4380_7778208_1050102,4380_68 -4380_78016,297,4380_62735,University,92752-00008-1,1,4380_7778208_3040403,4380_975 -4380_78016,285,4380_62736,University,92567-00009-1,1,4380_7778208_3040402,4380_976 -4380_78016,288,4380_62738,University,92569-00011-1,1,4380_7778208_3040402,4380_976 -4380_78016,286,4380_62739,University,92563-00010-1,1,4380_7778208_3040402,4380_976 -4380_77950,288,4380_6274,Blanchardstown,4693-00011-1,1,4380_7778208_1050102,4380_68 -4380_78016,291,4380_62740,University,92753-00013-1,1,4380_7778208_3040403,4380_978 -4380_78016,289,4380_62741,University,92565-00014-1,1,4380_7778208_3040402,4380_976 -4380_78016,287,4380_62742,University,92571-00012-1,1,4380_7778208_3040402,4380_976 -4380_78016,292,4380_62743,University,92564-00016-1,1,4380_7778208_3040402,4380_976 -4380_78016,290,4380_62744,University,92568-00015-1,1,4380_7778208_3040402,4380_976 -4380_78016,294,4380_62745,University,92572-00018-1,1,4380_7778208_3040402,4380_976 -4380_78016,295,4380_62746,University,92566-00019-1,1,4380_7778208_3040402,4380_976 -4380_78016,293,4380_62747,University,92570-00017-1,1,4380_7778208_3040402,4380_976 -4380_78016,296,4380_62748,University,92754-00021-1,1,4380_7778208_3040403,4380_978 -4380_77950,287,4380_6275,Blanchardstown,4721-00012-1,1,4380_7778208_1050102,4380_68 -4380_78016,285,4380_62754,University,92757-00009-1,1,4380_7778208_3040403,4380_975 -4380_78016,288,4380_62756,University,92761-00011-1,1,4380_7778208_3040403,4380_975 -4380_78016,286,4380_62757,University,92759-00010-1,1,4380_7778208_3040403,4380_975 -4380_78016,291,4380_62758,University,93134-00013-1,1,4380_7778208_3040405,4380_976 -4380_78016,289,4380_62759,University,92763-00014-1,1,4380_7778208_3040403,4380_975 -4380_77950,291,4380_6276,Blanchardstown,54097-00013-1,1,4380_7778208_1050102,4380_65 -4380_78016,287,4380_62760,University,92755-00012-1,1,4380_7778208_3040403,4380_975 -4380_78016,292,4380_62761,University,92760-00016-1,1,4380_7778208_3040403,4380_975 -4380_78016,290,4380_62762,University,92758-00015-1,1,4380_7778208_3040403,4380_975 -4380_78016,294,4380_62763,University,92756-00018-1,1,4380_7778208_3040403,4380_975 -4380_78016,295,4380_62764,University,92764-00019-1,1,4380_7778208_3040403,4380_975 -4380_78016,293,4380_62765,University,92762-00017-1,1,4380_7778208_3040403,4380_975 -4380_78016,296,4380_62766,University,93135-00021-1,1,4380_7778208_3040405,4380_976 -4380_77950,295,4380_6277,Blanchardstown,4609-00019-1,1,4380_7778208_1050102,4380_68 -4380_78016,297,4380_62773,University,92575-00008-1,1,4380_7778208_3040402,4380_975 -4380_78016,285,4380_62774,University,93136-00009-1,1,4380_7778208_3040405,4380_976 -4380_78016,288,4380_62776,University,93142-00011-1,1,4380_7778208_3040405,4380_976 -4380_78016,286,4380_62777,University,93140-00010-1,1,4380_7778208_3040405,4380_976 -4380_78016,291,4380_62778,University,93316-00013-1,1,4380_7778208_3040406,4380_978 -4380_78016,289,4380_62779,University,93138-00014-1,1,4380_7778208_3040405,4380_976 -4380_78016,287,4380_62780,University,93144-00012-1,1,4380_7778208_3040405,4380_976 -4380_78016,292,4380_62781,University,93141-00016-1,1,4380_7778208_3040405,4380_976 -4380_78016,290,4380_62782,University,93137-00015-1,1,4380_7778208_3040405,4380_976 -4380_78016,294,4380_62783,University,93145-00018-1,1,4380_7778208_3040405,4380_976 -4380_78016,295,4380_62784,University,93139-00019-1,1,4380_7778208_3040405,4380_976 -4380_78016,293,4380_62785,University,93143-00017-1,1,4380_7778208_3040405,4380_976 -4380_78016,296,4380_62786,University,93317-00021-1,1,4380_7778208_3040406,4380_978 -4380_78016,291,4380_62788,University,93487-00013-1,1,4380_7778208_3040407,4380_980 -4380_78016,296,4380_62789,University,93488-00021-1,1,4380_7778208_3040407,4380_980 -4380_78016,285,4380_62795,University,92922-00009-1,1,4380_7778208_3040404,4380_975 -4380_78016,288,4380_62797,University,92920-00011-1,1,4380_7778208_3040404,4380_975 -4380_78016,286,4380_62798,University,92916-00010-1,1,4380_7778208_3040404,4380_975 -4380_78016,291,4380_62799,University,92337-00013-1,1,4380_7778208_3040401,4380_976 -4380_78113,291,4380_628,Dundalk,50064-00013-1,0,4380_7778208_1000907,4380_13 -4380_78016,289,4380_62800,University,92914-00014-1,1,4380_7778208_3040404,4380_975 -4380_78016,287,4380_62801,University,92918-00012-1,1,4380_7778208_3040404,4380_975 -4380_78016,292,4380_62802,University,92917-00016-1,1,4380_7778208_3040404,4380_975 -4380_78016,290,4380_62803,University,92923-00015-1,1,4380_7778208_3040404,4380_975 -4380_78016,294,4380_62804,University,92919-00018-1,1,4380_7778208_3040404,4380_975 -4380_78016,295,4380_62805,University,92915-00019-1,1,4380_7778208_3040404,4380_975 -4380_78016,293,4380_62806,University,92921-00017-1,1,4380_7778208_3040404,4380_975 -4380_78016,296,4380_62807,University,92338-00021-1,1,4380_7778208_3040401,4380_976 -4380_78016,297,4380_62814,University,92924-00008-1,1,4380_7778208_3040404,4380_975 -4380_78016,285,4380_62815,University,93325-00009-1,1,4380_7778208_3040406,4380_976 -4380_78016,288,4380_62817,University,93321-00011-1,1,4380_7778208_3040406,4380_976 -4380_78016,286,4380_62818,University,93327-00010-1,1,4380_7778208_3040406,4380_976 -4380_78016,291,4380_62819,University,92580-00013-1,1,4380_7778208_3040402,4380_978 -4380_78016,289,4380_62820,University,93323-00014-1,1,4380_7778208_3040406,4380_976 -4380_78016,287,4380_62821,University,93319-00012-1,1,4380_7778208_3040406,4380_976 -4380_78016,292,4380_62822,University,93328-00016-1,1,4380_7778208_3040406,4380_976 -4380_78016,290,4380_62823,University,93326-00015-1,1,4380_7778208_3040406,4380_976 -4380_78016,294,4380_62824,University,93320-00018-1,1,4380_7778208_3040406,4380_976 -4380_78016,295,4380_62825,University,93324-00019-1,1,4380_7778208_3040406,4380_976 -4380_78016,293,4380_62826,University,93322-00017-1,1,4380_7778208_3040406,4380_976 -4380_78016,296,4380_62827,University,92581-00021-1,1,4380_7778208_3040402,4380_978 -4380_77950,289,4380_6283,Blanchardstown,54098-00014-1,1,4380_7778208_1050102,4380_61 -4380_78016,285,4380_62833,University,93499-00009-1,1,4380_7778208_3040407,4380_975 -4380_78016,288,4380_62835,University,93491-00011-1,1,4380_7778208_3040407,4380_975 -4380_78016,286,4380_62836,University,93495-00010-1,1,4380_7778208_3040407,4380_975 -4380_78016,291,4380_62837,University,92925-00013-1,1,4380_7778208_3040404,4380_976 -4380_78016,289,4380_62838,University,93497-00014-1,1,4380_7778208_3040407,4380_975 -4380_78016,287,4380_62839,University,93493-00012-1,1,4380_7778208_3040407,4380_975 -4380_77950,290,4380_6284,Blanchardstown,54102-00015-1,1,4380_7778208_1050102,4380_61 -4380_78016,292,4380_62840,University,93496-00016-1,1,4380_7778208_3040407,4380_975 -4380_78016,290,4380_62841,University,93500-00015-1,1,4380_7778208_3040407,4380_975 -4380_78016,294,4380_62842,University,93494-00018-1,1,4380_7778208_3040407,4380_975 -4380_78016,295,4380_62843,University,93498-00019-1,1,4380_7778208_3040407,4380_975 -4380_78016,293,4380_62844,University,93492-00017-1,1,4380_7778208_3040407,4380_975 -4380_78016,296,4380_62845,University,92926-00021-1,1,4380_7778208_3040404,4380_976 -4380_77950,292,4380_6285,Blanchardstown,54101-00016-1,1,4380_7778208_1050102,4380_61 -4380_78016,297,4380_62852,University,92780-00008-1,1,4380_7778208_3040403,4380_975 -4380_78016,285,4380_62853,University,93819-00009-1,1,4380_7778208_3040409,4380_976 -4380_78016,288,4380_62855,University,93823-00011-1,1,4380_7778208_3040409,4380_976 -4380_78016,286,4380_62856,University,93815-00010-1,1,4380_7778208_3040409,4380_976 -4380_78016,291,4380_62857,University,92778-00013-1,1,4380_7778208_3040403,4380_978 -4380_78016,289,4380_62858,University,93817-00014-1,1,4380_7778208_3040409,4380_976 -4380_78016,287,4380_62859,University,93821-00012-1,1,4380_7778208_3040409,4380_976 -4380_77950,293,4380_6286,Blanchardstown,54099-00017-1,1,4380_7778208_1050102,4380_61 -4380_78016,292,4380_62860,University,93816-00016-1,1,4380_7778208_3040409,4380_976 -4380_78016,290,4380_62861,University,93820-00015-1,1,4380_7778208_3040409,4380_976 -4380_78016,294,4380_62862,University,93822-00018-1,1,4380_7778208_3040409,4380_976 -4380_78016,295,4380_62863,University,93818-00019-1,1,4380_7778208_3040409,4380_976 -4380_78016,293,4380_62864,University,93824-00017-1,1,4380_7778208_3040409,4380_976 -4380_78016,296,4380_62865,University,92779-00021-1,1,4380_7778208_3040403,4380_978 -4380_77950,294,4380_6287,Blanchardstown,54100-00018-1,1,4380_7778208_1050102,4380_61 -4380_78016,285,4380_62871,University,94003-00009-1,1,4380_7778208_3040410,4380_975 -4380_78016,288,4380_62873,University,93999-00011-1,1,4380_7778208_3040410,4380_975 -4380_78016,286,4380_62874,University,94005-00010-1,1,4380_7778208_3040410,4380_975 -4380_78016,291,4380_62875,University,93501-00013-1,1,4380_7778208_3040407,4380_976 -4380_78016,289,4380_62876,University,93997-00014-1,1,4380_7778208_3040410,4380_975 -4380_78016,287,4380_62877,University,94001-00012-1,1,4380_7778208_3040410,4380_975 -4380_78016,292,4380_62878,University,94006-00016-1,1,4380_7778208_3040410,4380_975 -4380_78016,290,4380_62879,University,94004-00015-1,1,4380_7778208_3040410,4380_975 -4380_77950,296,4380_6288,Blanchardstown,4749-00021-1,1,4380_7778208_1050102,4380_69 -4380_78016,294,4380_62880,University,94002-00018-1,1,4380_7778208_3040410,4380_975 -4380_78016,295,4380_62881,University,93998-00019-1,1,4380_7778208_3040410,4380_975 -4380_78016,293,4380_62882,University,94000-00017-1,1,4380_7778208_3040410,4380_975 -4380_78016,296,4380_62883,University,93502-00021-1,1,4380_7778208_3040407,4380_976 -4380_78016,297,4380_62890,University,92591-00008-1,1,4380_7778208_3040402,4380_975 -4380_78016,285,4380_62891,University,92359-00009-1,1,4380_7778208_3040401,4380_976 -4380_78016,288,4380_62893,University,92353-00011-1,1,4380_7778208_3040401,4380_976 -4380_78016,286,4380_62894,University,92355-00010-1,1,4380_7778208_3040401,4380_976 -4380_78016,291,4380_62895,University,93161-00013-1,1,4380_7778208_3040405,4380_978 -4380_78016,289,4380_62896,University,92357-00014-1,1,4380_7778208_3040401,4380_976 -4380_78016,287,4380_62897,University,92351-00012-1,1,4380_7778208_3040401,4380_976 -4380_78016,292,4380_62898,University,92356-00016-1,1,4380_7778208_3040401,4380_976 -4380_78016,290,4380_62899,University,92360-00015-1,1,4380_7778208_3040401,4380_976 -4380_78113,292,4380_629,Dundalk,50067-00016-1,0,4380_7778208_1000907,4380_10 -4380_78016,294,4380_62900,University,92352-00018-1,1,4380_7778208_3040401,4380_976 -4380_78016,295,4380_62901,University,92358-00019-1,1,4380_7778208_3040401,4380_976 -4380_78016,293,4380_62902,University,92354-00017-1,1,4380_7778208_3040401,4380_976 -4380_78016,296,4380_62903,University,93162-00021-1,1,4380_7778208_3040405,4380_978 -4380_78016,285,4380_62909,University,92600-00009-1,1,4380_7778208_3040402,4380_975 -4380_78016,288,4380_62911,University,92598-00011-1,1,4380_7778208_3040402,4380_975 -4380_78016,286,4380_62912,University,92596-00010-1,1,4380_7778208_3040402,4380_975 -4380_78016,291,4380_62913,University,93343-00013-1,1,4380_7778208_3040406,4380_976 -4380_78016,289,4380_62914,University,92594-00014-1,1,4380_7778208_3040402,4380_975 -4380_78016,287,4380_62915,University,92592-00012-1,1,4380_7778208_3040402,4380_975 -4380_78016,292,4380_62916,University,92597-00016-1,1,4380_7778208_3040402,4380_975 -4380_78016,290,4380_62917,University,92601-00015-1,1,4380_7778208_3040402,4380_975 -4380_78016,294,4380_62918,University,92593-00018-1,1,4380_7778208_3040402,4380_975 -4380_78016,295,4380_62919,University,92595-00019-1,1,4380_7778208_3040402,4380_975 -4380_78016,293,4380_62920,University,92599-00017-1,1,4380_7778208_3040402,4380_975 -4380_78016,296,4380_62921,University,93344-00021-1,1,4380_7778208_3040406,4380_976 -4380_78016,297,4380_62928,University,92940-00008-1,1,4380_7778208_3040404,4380_975 -4380_78016,285,4380_62929,University,93168-00009-1,1,4380_7778208_3040405,4380_976 -4380_78016,288,4380_62931,University,93170-00011-1,1,4380_7778208_3040405,4380_976 -4380_78016,286,4380_62932,University,93172-00010-1,1,4380_7778208_3040405,4380_976 -4380_78016,291,4380_62933,University,92361-00013-1,1,4380_7778208_3040401,4380_978 -4380_78016,289,4380_62934,University,93164-00014-1,1,4380_7778208_3040405,4380_976 -4380_78016,287,4380_62935,University,93166-00012-1,1,4380_7778208_3040405,4380_976 -4380_78016,292,4380_62936,University,93173-00016-1,1,4380_7778208_3040405,4380_976 -4380_78016,290,4380_62937,University,93169-00015-1,1,4380_7778208_3040405,4380_976 -4380_78016,294,4380_62938,University,93167-00018-1,1,4380_7778208_3040405,4380_976 -4380_78016,295,4380_62939,University,93165-00019-1,1,4380_7778208_3040405,4380_976 -4380_78016,293,4380_62940,University,93171-00017-1,1,4380_7778208_3040405,4380_976 -4380_78016,296,4380_62941,University,92362-00021-1,1,4380_7778208_3040401,4380_978 -4380_78016,291,4380_62943,University,93711-00013-1,1,4380_7778208_3040408,4380_980 -4380_78016,296,4380_62944,University,93712-00021-1,1,4380_7778208_3040408,4380_980 -4380_78016,285,4380_62950,University,92945-00009-1,1,4380_7778208_3040404,4380_975 -4380_78016,288,4380_62952,University,92949-00011-1,1,4380_7778208_3040404,4380_975 -4380_78016,286,4380_62953,University,92947-00010-1,1,4380_7778208_3040404,4380_975 -4380_78016,291,4380_62954,University,92603-00013-1,1,4380_7778208_3040402,4380_976 -4380_78016,289,4380_62955,University,92941-00014-1,1,4380_7778208_3040404,4380_975 -4380_78016,287,4380_62956,University,92943-00012-1,1,4380_7778208_3040404,4380_975 -4380_78016,292,4380_62957,University,92948-00016-1,1,4380_7778208_3040404,4380_975 -4380_78016,290,4380_62958,University,92946-00015-1,1,4380_7778208_3040404,4380_975 -4380_78016,294,4380_62959,University,92944-00018-1,1,4380_7778208_3040404,4380_975 -4380_77950,285,4380_6296,Blanchardstown,54522-00009-1,1,4380_7778208_1051104,4380_63 -4380_78016,295,4380_62960,University,92942-00019-1,1,4380_7778208_3040404,4380_975 -4380_78016,293,4380_62961,University,92950-00017-1,1,4380_7778208_3040404,4380_975 -4380_78016,296,4380_62962,University,92604-00021-1,1,4380_7778208_3040402,4380_976 -4380_78016,297,4380_62969,University,92784-00008-1,1,4380_7778208_3040403,4380_975 -4380_77950,286,4380_6297,Blanchardstown,54518-00010-1,1,4380_7778208_1051104,4380_63 -4380_78016,285,4380_62970,University,93348-00009-1,1,4380_7778208_3040406,4380_976 -4380_78016,288,4380_62972,University,93354-00011-1,1,4380_7778208_3040406,4380_976 -4380_78016,286,4380_62973,University,93346-00010-1,1,4380_7778208_3040406,4380_976 -4380_78016,291,4380_62974,University,92951-00013-1,1,4380_7778208_3040404,4380_978 -4380_78016,289,4380_62975,University,93350-00014-1,1,4380_7778208_3040406,4380_976 -4380_78016,287,4380_62976,University,93352-00012-1,1,4380_7778208_3040406,4380_976 -4380_78016,292,4380_62977,University,93347-00016-1,1,4380_7778208_3040406,4380_976 -4380_78016,290,4380_62978,University,93349-00015-1,1,4380_7778208_3040406,4380_976 -4380_78016,294,4380_62979,University,93353-00018-1,1,4380_7778208_3040406,4380_976 -4380_77950,297,4380_6298,Blanchardstown,54517-00008-1,1,4380_7778208_1051104,4380_64 -4380_78016,295,4380_62980,University,93351-00019-1,1,4380_7778208_3040406,4380_976 -4380_78016,293,4380_62981,University,93355-00017-1,1,4380_7778208_3040406,4380_976 -4380_78016,296,4380_62982,University,92952-00021-1,1,4380_7778208_3040404,4380_978 -4380_78016,285,4380_62988,University,93520-00009-1,1,4380_7778208_3040407,4380_975 -4380_77950,288,4380_6299,Blanchardstown,54526-00011-1,1,4380_7778208_1051104,4380_63 -4380_78016,288,4380_62990,University,93522-00011-1,1,4380_7778208_3040407,4380_975 -4380_78016,286,4380_62991,University,93524-00010-1,1,4380_7778208_3040407,4380_975 -4380_78016,291,4380_62992,University,92785-00013-1,1,4380_7778208_3040403,4380_976 -4380_78016,289,4380_62993,University,93526-00014-1,1,4380_7778208_3040407,4380_975 -4380_78016,287,4380_62994,University,93518-00012-1,1,4380_7778208_3040407,4380_975 -4380_78016,292,4380_62995,University,93525-00016-1,1,4380_7778208_3040407,4380_975 -4380_78016,290,4380_62996,University,93521-00015-1,1,4380_7778208_3040407,4380_975 -4380_78016,294,4380_62997,University,93519-00018-1,1,4380_7778208_3040407,4380_975 -4380_78016,295,4380_62998,University,93527-00019-1,1,4380_7778208_3040407,4380_975 -4380_78016,293,4380_62999,University,93523-00017-1,1,4380_7778208_3040407,4380_975 -4380_77946,295,4380_63,Dundalk,50306-00019-1,0,4380_7778208_1000913,4380_1 -4380_78113,293,4380_630,Dundalk,50057-00017-1,0,4380_7778208_1000907,4380_10 -4380_77950,287,4380_6300,Blanchardstown,54524-00012-1,1,4380_7778208_1051104,4380_63 -4380_78016,296,4380_63000,University,92786-00021-1,1,4380_7778208_3040403,4380_976 -4380_78016,297,4380_63007,University,92615-00008-1,1,4380_7778208_3040402,4380_975 -4380_78016,285,4380_63008,University,93847-00009-1,1,4380_7778208_3040409,4380_976 -4380_77950,289,4380_6301,Blanchardstown,54520-00014-1,1,4380_7778208_1051104,4380_63 -4380_78016,288,4380_63010,University,93843-00011-1,1,4380_7778208_3040409,4380_976 -4380_78016,286,4380_63011,University,93841-00010-1,1,4380_7778208_3040409,4380_976 -4380_78016,291,4380_63012,University,93528-00013-1,1,4380_7778208_3040407,4380_978 -4380_78016,289,4380_63013,University,93839-00014-1,1,4380_7778208_3040409,4380_976 -4380_78016,287,4380_63014,University,93845-00012-1,1,4380_7778208_3040409,4380_976 -4380_78016,292,4380_63015,University,93842-00016-1,1,4380_7778208_3040409,4380_976 -4380_78016,290,4380_63016,University,93848-00015-1,1,4380_7778208_3040409,4380_976 -4380_78016,294,4380_63017,University,93846-00018-1,1,4380_7778208_3040409,4380_976 -4380_78016,295,4380_63018,University,93840-00019-1,1,4380_7778208_3040409,4380_976 -4380_78016,293,4380_63019,University,93844-00017-1,1,4380_7778208_3040409,4380_976 -4380_77950,290,4380_6302,Blanchardstown,54523-00015-1,1,4380_7778208_1051104,4380_63 -4380_78016,296,4380_63020,University,93529-00021-1,1,4380_7778208_3040407,4380_978 -4380_78016,285,4380_63026,University,94031-00009-1,1,4380_7778208_3040410,4380_975 -4380_78016,288,4380_63028,University,94029-00011-1,1,4380_7778208_3040410,4380_975 -4380_78016,286,4380_63029,University,94025-00010-1,1,4380_7778208_3040410,4380_975 -4380_77950,291,4380_6303,Blanchardstown,54427-00013-1,1,4380_7778208_1051103,4380_67 -4380_78016,291,4380_63030,University,93188-00013-1,1,4380_7778208_3040405,4380_976 -4380_78016,289,4380_63031,University,94027-00014-1,1,4380_7778208_3040410,4380_975 -4380_78016,287,4380_63032,University,94023-00012-1,1,4380_7778208_3040410,4380_975 -4380_78016,292,4380_63033,University,94026-00016-1,1,4380_7778208_3040410,4380_975 -4380_78016,290,4380_63034,University,94032-00015-1,1,4380_7778208_3040410,4380_975 -4380_78016,294,4380_63035,University,94024-00018-1,1,4380_7778208_3040410,4380_975 -4380_78016,295,4380_63036,University,94028-00019-1,1,4380_7778208_3040410,4380_975 -4380_78016,293,4380_63037,University,94030-00017-1,1,4380_7778208_3040410,4380_975 -4380_78016,296,4380_63038,University,93189-00021-1,1,4380_7778208_3040405,4380_976 -4380_77950,292,4380_6304,Blanchardstown,54519-00016-1,1,4380_7778208_1051104,4380_63 -4380_78016,297,4380_63045,University,92378-00008-1,1,4380_7778208_3040401,4380_975 -4380_78016,285,4380_63046,University,92376-00009-1,1,4380_7778208_3040401,4380_976 -4380_78016,288,4380_63048,University,92383-00011-1,1,4380_7778208_3040401,4380_976 -4380_78016,286,4380_63049,University,92381-00010-1,1,4380_7778208_3040401,4380_976 -4380_77950,293,4380_6305,Blanchardstown,54527-00017-1,1,4380_7778208_1051104,4380_63 -4380_78016,291,4380_63050,University,93715-00013-1,1,4380_7778208_3040408,4380_978 -4380_78016,289,4380_63051,University,92385-00014-1,1,4380_7778208_3040401,4380_976 -4380_78016,287,4380_63052,University,92379-00012-1,1,4380_7778208_3040401,4380_976 -4380_78016,292,4380_63053,University,92382-00016-1,1,4380_7778208_3040401,4380_976 -4380_78016,290,4380_63054,University,92377-00015-1,1,4380_7778208_3040401,4380_976 -4380_78016,294,4380_63055,University,92380-00018-1,1,4380_7778208_3040401,4380_976 -4380_78016,295,4380_63056,University,92386-00019-1,1,4380_7778208_3040401,4380_976 -4380_78016,293,4380_63057,University,92384-00017-1,1,4380_7778208_3040401,4380_976 -4380_78016,296,4380_63058,University,93716-00021-1,1,4380_7778208_3040408,4380_978 -4380_77950,294,4380_6306,Blanchardstown,54525-00018-1,1,4380_7778208_1051104,4380_63 -4380_78016,285,4380_63064,University,92621-00009-1,1,4380_7778208_3040402,4380_975 -4380_78016,288,4380_63066,University,92627-00011-1,1,4380_7778208_3040402,4380_975 -4380_78016,286,4380_63067,University,92623-00010-1,1,4380_7778208_3040402,4380_975 -4380_78016,291,4380_63068,University,93370-00013-1,1,4380_7778208_3040406,4380_976 -4380_78016,289,4380_63069,University,92619-00014-1,1,4380_7778208_3040402,4380_975 -4380_77950,295,4380_6307,Blanchardstown,54521-00019-1,1,4380_7778208_1051104,4380_63 -4380_78016,287,4380_63070,University,92625-00012-1,1,4380_7778208_3040402,4380_975 -4380_78016,292,4380_63071,University,92624-00016-1,1,4380_7778208_3040402,4380_975 -4380_78016,290,4380_63072,University,92622-00015-1,1,4380_7778208_3040402,4380_975 -4380_78016,294,4380_63073,University,92626-00018-1,1,4380_7778208_3040402,4380_975 -4380_78016,295,4380_63074,University,92620-00019-1,1,4380_7778208_3040402,4380_975 -4380_78016,293,4380_63075,University,92628-00017-1,1,4380_7778208_3040402,4380_975 -4380_78016,296,4380_63076,University,93371-00021-1,1,4380_7778208_3040406,4380_976 -4380_78016,297,4380_63078,University,92966-00008-1,1,4380_7778208_3040404,4380_975 -4380_77950,296,4380_6308,Blanchardstown,54428-00021-1,1,4380_7778208_1051103,4380_67 -4380_78016,285,4380_63084,University,93195-00009-1,1,4380_7778208_3040405,4380_975 -4380_78016,288,4380_63086,University,93197-00011-1,1,4380_7778208_3040405,4380_975 -4380_78016,286,4380_63087,University,93193-00010-1,1,4380_7778208_3040405,4380_975 -4380_78016,291,4380_63088,University,92387-00013-1,1,4380_7778208_3040401,4380_976 -4380_78016,289,4380_63089,University,93191-00014-1,1,4380_7778208_3040405,4380_975 -4380_78016,287,4380_63090,University,93199-00012-1,1,4380_7778208_3040405,4380_975 -4380_78016,292,4380_63091,University,93194-00016-1,1,4380_7778208_3040405,4380_975 -4380_78016,290,4380_63092,University,93196-00015-1,1,4380_7778208_3040405,4380_975 -4380_78016,294,4380_63093,University,93200-00018-1,1,4380_7778208_3040405,4380_975 -4380_78016,295,4380_63094,University,93192-00019-1,1,4380_7778208_3040405,4380_975 -4380_78016,293,4380_63095,University,93198-00017-1,1,4380_7778208_3040405,4380_975 -4380_78016,296,4380_63096,University,92388-00021-1,1,4380_7778208_3040401,4380_976 -4380_78113,294,4380_631,Dundalk,50061-00018-1,0,4380_7778208_1000907,4380_10 -4380_78016,285,4380_63102,University,92971-00009-1,1,4380_7778208_3040404,4380_975 -4380_78016,288,4380_63104,University,92975-00011-1,1,4380_7778208_3040404,4380_975 -4380_78016,286,4380_63105,University,92973-00010-1,1,4380_7778208_3040404,4380_975 -4380_78016,291,4380_63106,University,92629-00013-1,1,4380_7778208_3040402,4380_976 -4380_78016,289,4380_63107,University,92969-00014-1,1,4380_7778208_3040404,4380_975 -4380_78016,287,4380_63108,University,92967-00012-1,1,4380_7778208_3040404,4380_975 -4380_78016,292,4380_63109,University,92974-00016-1,1,4380_7778208_3040404,4380_975 -4380_78016,290,4380_63110,University,92972-00015-1,1,4380_7778208_3040404,4380_975 -4380_78016,294,4380_63111,University,92968-00018-1,1,4380_7778208_3040404,4380_975 -4380_78016,295,4380_63112,University,92970-00019-1,1,4380_7778208_3040404,4380_975 -4380_78016,293,4380_63113,University,92976-00017-1,1,4380_7778208_3040404,4380_975 -4380_78016,296,4380_63114,University,92630-00021-1,1,4380_7778208_3040402,4380_976 -4380_78016,297,4380_63116,University,92790-00008-1,1,4380_7778208_3040403,4380_975 -4380_78016,285,4380_63122,University,93373-00009-1,1,4380_7778208_3040406,4380_975 -4380_78016,288,4380_63124,University,93375-00011-1,1,4380_7778208_3040406,4380_975 -4380_78016,286,4380_63125,University,93377-00010-1,1,4380_7778208_3040406,4380_975 -4380_78016,291,4380_63126,University,92977-00013-1,1,4380_7778208_3040404,4380_976 -4380_78016,289,4380_63127,University,93381-00014-1,1,4380_7778208_3040406,4380_975 -4380_78016,287,4380_63128,University,93379-00012-1,1,4380_7778208_3040406,4380_975 -4380_78016,292,4380_63129,University,93378-00016-1,1,4380_7778208_3040406,4380_975 -4380_78016,290,4380_63130,University,93374-00015-1,1,4380_7778208_3040406,4380_975 -4380_78016,294,4380_63131,University,93380-00018-1,1,4380_7778208_3040406,4380_975 -4380_78016,295,4380_63132,University,93382-00019-1,1,4380_7778208_3040406,4380_975 -4380_78016,293,4380_63133,University,93376-00017-1,1,4380_7778208_3040406,4380_975 -4380_78016,296,4380_63134,University,92978-00021-1,1,4380_7778208_3040404,4380_976 -4380_78142,285,4380_6314,Ratoath,4772-00009-1,0,4380_7778208_1050106,4380_70 -4380_78016,285,4380_63140,University,93551-00009-1,1,4380_7778208_3040407,4380_975 -4380_78016,288,4380_63142,University,93545-00011-1,1,4380_7778208_3040407,4380_975 -4380_78016,286,4380_63143,University,93547-00010-1,1,4380_7778208_3040407,4380_975 -4380_78016,291,4380_63144,University,92791-00013-1,1,4380_7778208_3040403,4380_976 -4380_78016,289,4380_63145,University,93549-00014-1,1,4380_7778208_3040407,4380_975 -4380_78016,287,4380_63146,University,93553-00012-1,1,4380_7778208_3040407,4380_975 -4380_78016,292,4380_63147,University,93548-00016-1,1,4380_7778208_3040407,4380_975 -4380_78016,290,4380_63148,University,93552-00015-1,1,4380_7778208_3040407,4380_975 -4380_78016,294,4380_63149,University,93554-00018-1,1,4380_7778208_3040407,4380_975 -4380_78142,286,4380_6315,Ratoath,4776-00010-1,0,4380_7778208_1050106,4380_70 -4380_78016,295,4380_63150,University,93550-00019-1,1,4380_7778208_3040407,4380_975 -4380_78016,293,4380_63151,University,93546-00017-1,1,4380_7778208_3040407,4380_975 -4380_78016,296,4380_63152,University,92792-00021-1,1,4380_7778208_3040403,4380_976 -4380_78016,297,4380_63154,University,92641-00008-1,1,4380_7778208_3040402,4380_975 -4380_78142,288,4380_6316,Ratoath,4780-00011-1,0,4380_7778208_1050106,4380_70 -4380_78016,285,4380_63160,University,92793-00009-1,1,4380_7778208_3040403,4380_975 -4380_78016,288,4380_63162,University,92801-00011-1,1,4380_7778208_3040403,4380_975 -4380_78016,286,4380_63163,University,92797-00010-1,1,4380_7778208_3040403,4380_975 -4380_78016,291,4380_63164,University,93555-00013-1,1,4380_7778208_3040407,4380_976 -4380_78016,289,4380_63165,University,92799-00014-1,1,4380_7778208_3040403,4380_975 -4380_78016,287,4380_63166,University,92795-00012-1,1,4380_7778208_3040403,4380_975 -4380_78016,292,4380_63167,University,92798-00016-1,1,4380_7778208_3040403,4380_975 -4380_78016,290,4380_63168,University,92794-00015-1,1,4380_7778208_3040403,4380_975 -4380_78016,294,4380_63169,University,92796-00018-1,1,4380_7778208_3040403,4380_975 -4380_78142,287,4380_6317,Ratoath,4782-00012-1,0,4380_7778208_1050106,4380_70 -4380_78016,295,4380_63170,University,92800-00019-1,1,4380_7778208_3040403,4380_975 -4380_78016,293,4380_63171,University,92802-00017-1,1,4380_7778208_3040403,4380_975 -4380_78016,296,4380_63172,University,93556-00021-1,1,4380_7778208_3040407,4380_976 -4380_78016,285,4380_63178,University,93873-00009-1,1,4380_7778208_3040409,4380_975 -4380_78016,288,4380_63179,University,93869-00011-1,1,4380_7778208_3040409,4380_975 -4380_78142,289,4380_6318,Ratoath,4766-00014-1,0,4380_7778208_1050106,4380_70 -4380_78016,286,4380_63180,University,93871-00010-1,1,4380_7778208_3040409,4380_975 -4380_78016,289,4380_63181,University,93865-00014-1,1,4380_7778208_3040409,4380_975 -4380_78016,287,4380_63182,University,93867-00012-1,1,4380_7778208_3040409,4380_975 -4380_78016,292,4380_63183,University,93872-00016-1,1,4380_7778208_3040409,4380_975 -4380_78016,290,4380_63184,University,93874-00015-1,1,4380_7778208_3040409,4380_975 -4380_78016,294,4380_63185,University,93868-00018-1,1,4380_7778208_3040409,4380_975 -4380_78016,295,4380_63186,University,93866-00019-1,1,4380_7778208_3040409,4380_975 -4380_78016,293,4380_63187,University,93870-00017-1,1,4380_7778208_3040409,4380_975 -4380_78016,291,4380_63189,University,93215-00013-1,1,4380_7778208_3040405,4380_975 -4380_78142,290,4380_6319,Ratoath,54118-00015-1,0,4380_7778208_1050106,4380_70 -4380_78016,296,4380_63190,University,93216-00021-1,1,4380_7778208_3040405,4380_975 -4380_78016,297,4380_63192,University,92402-00008-1,1,4380_7778208_3040401,4380_975 -4380_78016,285,4380_63198,University,94053-00009-1,1,4380_7778208_3040410,4380_975 -4380_78016,288,4380_63199,University,94055-00011-1,1,4380_7778208_3040410,4380_975 -4380_78113,295,4380_632,Dundalk,50059-00019-1,0,4380_7778208_1000907,4380_10 -4380_78142,292,4380_6320,Ratoath,54114-00016-1,0,4380_7778208_1050106,4380_70 -4380_78016,286,4380_63200,University,94049-00010-1,1,4380_7778208_3040410,4380_975 -4380_78016,289,4380_63201,University,94051-00014-1,1,4380_7778208_3040410,4380_975 -4380_78016,287,4380_63202,University,94057-00012-1,1,4380_7778208_3040410,4380_975 -4380_78016,292,4380_63203,University,94050-00016-1,1,4380_7778208_3040410,4380_975 -4380_78016,290,4380_63204,University,94054-00015-1,1,4380_7778208_3040410,4380_975 -4380_78016,294,4380_63205,University,94058-00018-1,1,4380_7778208_3040410,4380_975 -4380_78016,295,4380_63206,University,94052-00019-1,1,4380_7778208_3040410,4380_975 -4380_78016,293,4380_63207,University,94056-00017-1,1,4380_7778208_3040410,4380_975 -4380_78016,291,4380_63209,University,93719-00013-1,1,4380_7778208_3040408,4380_975 -4380_78142,293,4380_6321,Ratoath,54116-00017-1,0,4380_7778208_1050106,4380_70 -4380_78016,296,4380_63210,University,93720-00021-1,1,4380_7778208_3040408,4380_975 -4380_78016,285,4380_63216,University,92403-00009-1,1,4380_7778208_3040401,4380_975 -4380_78016,288,4380_63217,University,92411-00011-1,1,4380_7778208_3040401,4380_975 -4380_78016,286,4380_63218,University,92405-00010-1,1,4380_7778208_3040401,4380_975 -4380_78016,289,4380_63219,University,92409-00014-1,1,4380_7778208_3040401,4380_975 -4380_78142,294,4380_6322,Ratoath,54117-00018-1,0,4380_7778208_1050106,4380_70 -4380_78016,287,4380_63220,University,92407-00012-1,1,4380_7778208_3040401,4380_975 -4380_78016,292,4380_63221,University,92406-00016-1,1,4380_7778208_3040401,4380_975 -4380_78016,290,4380_63222,University,92404-00015-1,1,4380_7778208_3040401,4380_975 -4380_78016,294,4380_63223,University,92408-00018-1,1,4380_7778208_3040401,4380_975 -4380_78016,295,4380_63224,University,92410-00019-1,1,4380_7778208_3040401,4380_975 -4380_78016,293,4380_63225,University,92412-00017-1,1,4380_7778208_3040401,4380_975 -4380_78016,291,4380_63227,University,93397-00013-1,1,4380_7778208_3040406,4380_975 -4380_78016,296,4380_63228,University,93398-00021-1,1,4380_7778208_3040406,4380_975 -4380_78142,295,4380_6323,Ratoath,54115-00019-1,0,4380_7778208_1050106,4380_70 -4380_78016,297,4380_63230,University,92992-00008-1,1,4380_7778208_3040404,4380_975 -4380_78016,285,4380_63236,University,92645-00009-1,1,4380_7778208_3040402,4380_975 -4380_78016,288,4380_63237,University,92651-00011-1,1,4380_7778208_3040402,4380_975 -4380_78016,286,4380_63238,University,92649-00010-1,1,4380_7778208_3040402,4380_975 -4380_78016,289,4380_63239,University,92653-00014-1,1,4380_7778208_3040402,4380_975 -4380_78016,287,4380_63240,University,92647-00012-1,1,4380_7778208_3040402,4380_975 -4380_78016,292,4380_63241,University,92650-00016-1,1,4380_7778208_3040402,4380_975 -4380_78016,290,4380_63242,University,92646-00015-1,1,4380_7778208_3040402,4380_975 -4380_78016,294,4380_63243,University,92648-00018-1,1,4380_7778208_3040402,4380_975 -4380_78016,295,4380_63244,University,92654-00019-1,1,4380_7778208_3040402,4380_975 -4380_78016,293,4380_63245,University,92652-00017-1,1,4380_7778208_3040402,4380_975 -4380_78016,291,4380_63247,University,92413-00013-1,1,4380_7778208_3040401,4380_975 -4380_78016,296,4380_63248,University,92414-00021-1,1,4380_7778208_3040401,4380_975 -4380_78016,285,4380_63254,University,93222-00009-1,1,4380_7778208_3040405,4380_975 -4380_78016,288,4380_63255,University,93220-00011-1,1,4380_7778208_3040405,4380_975 -4380_78016,286,4380_63256,University,93228-00010-1,1,4380_7778208_3040405,4380_975 -4380_78016,289,4380_63257,University,93218-00014-1,1,4380_7778208_3040405,4380_975 -4380_78016,287,4380_63258,University,93224-00012-1,1,4380_7778208_3040405,4380_975 -4380_78016,292,4380_63259,University,93229-00016-1,1,4380_7778208_3040405,4380_975 -4380_78016,290,4380_63260,University,93223-00015-1,1,4380_7778208_3040405,4380_975 -4380_78016,294,4380_63261,University,93225-00018-1,1,4380_7778208_3040405,4380_975 -4380_78016,295,4380_63262,University,93219-00019-1,1,4380_7778208_3040405,4380_975 -4380_78016,293,4380_63263,University,93221-00017-1,1,4380_7778208_3040405,4380_975 -4380_78016,291,4380_63265,University,92655-00013-1,1,4380_7778208_3040402,4380_975 -4380_78016,296,4380_63266,University,92656-00021-1,1,4380_7778208_3040402,4380_975 -4380_78016,297,4380_63268,University,92816-00008-1,1,4380_7778208_3040403,4380_975 -4380_78016,285,4380_63274,University,92999-00009-1,1,4380_7778208_3040404,4380_975 -4380_78016,288,4380_63275,University,92997-00011-1,1,4380_7778208_3040404,4380_975 -4380_78016,286,4380_63276,University,92993-00010-1,1,4380_7778208_3040404,4380_975 -4380_78016,289,4380_63277,University,93001-00014-1,1,4380_7778208_3040404,4380_975 -4380_78016,287,4380_63278,University,92995-00012-1,1,4380_7778208_3040404,4380_975 -4380_78016,292,4380_63279,University,92994-00016-1,1,4380_7778208_3040404,4380_975 -4380_78016,290,4380_63280,University,93000-00015-1,1,4380_7778208_3040404,4380_975 -4380_78016,294,4380_63281,University,92996-00018-1,1,4380_7778208_3040404,4380_975 -4380_78016,295,4380_63282,University,93002-00019-1,1,4380_7778208_3040404,4380_975 -4380_78016,293,4380_63283,University,92998-00017-1,1,4380_7778208_3040404,4380_975 -4380_78016,291,4380_63285,University,93003-00013-1,1,4380_7778208_3040404,4380_975 -4380_78016,296,4380_63286,University,93004-00021-1,1,4380_7778208_3040404,4380_975 -4380_78142,285,4380_6329,Ratoath,4790-00009-1,0,4380_7778208_1050107,4380_71 -4380_78016,285,4380_63292,University,93402-00009-1,1,4380_7778208_3040406,4380_975 -4380_78016,288,4380_63293,University,93400-00011-1,1,4380_7778208_3040406,4380_975 -4380_78016,286,4380_63294,University,93404-00010-1,1,4380_7778208_3040406,4380_975 -4380_78016,289,4380_63295,University,93408-00014-1,1,4380_7778208_3040406,4380_975 -4380_78016,287,4380_63296,University,93406-00012-1,1,4380_7778208_3040406,4380_975 -4380_78016,292,4380_63297,University,93405-00016-1,1,4380_7778208_3040406,4380_975 -4380_78016,290,4380_63298,University,93403-00015-1,1,4380_7778208_3040406,4380_975 -4380_78016,294,4380_63299,University,93407-00018-1,1,4380_7778208_3040406,4380_975 -4380_78113,296,4380_633,Dundalk,50065-00021-1,0,4380_7778208_1000907,4380_13 -4380_78142,286,4380_6330,Ratoath,4794-00010-1,0,4380_7778208_1050107,4380_71 -4380_78016,295,4380_63300,University,93409-00019-1,1,4380_7778208_3040406,4380_975 -4380_78016,293,4380_63301,University,93401-00017-1,1,4380_7778208_3040406,4380_975 -4380_78016,291,4380_63303,University,92817-00013-1,1,4380_7778208_3040403,4380_975 -4380_78016,296,4380_63304,University,92818-00021-1,1,4380_7778208_3040403,4380_975 -4380_78142,288,4380_6331,Ratoath,4800-00011-1,0,4380_7778208_1050107,4380_71 -4380_78016,297,4380_63311,University,92657-00008-1,1,4380_7778208_3040402,4380_975 -4380_78016,285,4380_63312,University,93731-00009-1,1,4380_7778208_3040408,4380_976 -4380_78016,288,4380_63313,University,93725-00011-1,1,4380_7778208_3040408,4380_976 -4380_78016,286,4380_63314,University,93727-00010-1,1,4380_7778208_3040408,4380_976 -4380_78016,289,4380_63315,University,93729-00014-1,1,4380_7778208_3040408,4380_976 -4380_78016,287,4380_63316,University,93723-00012-1,1,4380_7778208_3040408,4380_976 -4380_78016,292,4380_63317,University,93728-00016-1,1,4380_7778208_3040408,4380_976 -4380_78016,290,4380_63318,University,93732-00015-1,1,4380_7778208_3040408,4380_976 -4380_78016,294,4380_63319,University,93724-00018-1,1,4380_7778208_3040408,4380_976 -4380_78142,287,4380_6332,Ratoath,4804-00012-1,0,4380_7778208_1050107,4380_71 -4380_78016,295,4380_63320,University,93730-00019-1,1,4380_7778208_3040408,4380_976 -4380_78016,293,4380_63321,University,93726-00017-1,1,4380_7778208_3040408,4380_976 -4380_78016,291,4380_63323,University,93571-00013-1,1,4380_7778208_3040407,4380_975 -4380_78016,296,4380_63324,University,93572-00021-1,1,4380_7778208_3040407,4380_975 -4380_78142,289,4380_6333,Ratoath,4788-00014-1,0,4380_7778208_1050107,4380_71 -4380_78016,285,4380_63330,University,93581-00009-1,1,4380_7778208_3040407,4380_975 -4380_78016,288,4380_63331,University,93577-00011-1,1,4380_7778208_3040407,4380_975 -4380_78016,286,4380_63332,University,93573-00010-1,1,4380_7778208_3040407,4380_975 -4380_78016,289,4380_63333,University,93575-00014-1,1,4380_7778208_3040407,4380_975 -4380_78016,287,4380_63334,University,93579-00012-1,1,4380_7778208_3040407,4380_975 -4380_78016,292,4380_63335,University,93574-00016-1,1,4380_7778208_3040407,4380_975 -4380_78016,290,4380_63336,University,93582-00015-1,1,4380_7778208_3040407,4380_975 -4380_78016,294,4380_63337,University,93580-00018-1,1,4380_7778208_3040407,4380_975 -4380_78016,295,4380_63338,University,93576-00019-1,1,4380_7778208_3040407,4380_975 -4380_78016,293,4380_63339,University,93578-00017-1,1,4380_7778208_3040407,4380_975 -4380_78142,290,4380_6334,Ratoath,54126-00015-1,0,4380_7778208_1050107,4380_71 -4380_78016,291,4380_63341,University,93241-00013-1,1,4380_7778208_3040405,4380_975 -4380_78016,296,4380_63342,University,93242-00021-1,1,4380_7778208_3040405,4380_975 -4380_78016,297,4380_63349,University,92428-00008-1,1,4380_7778208_3040401,4380_975 -4380_78142,292,4380_6335,Ratoath,54125-00016-1,0,4380_7778208_1050107,4380_71 -4380_78016,285,4380_63350,University,92822-00009-1,1,4380_7778208_3040403,4380_976 -4380_78016,288,4380_63351,University,92820-00011-1,1,4380_7778208_3040403,4380_976 -4380_78016,286,4380_63352,University,92824-00010-1,1,4380_7778208_3040403,4380_976 -4380_78016,289,4380_63353,University,92828-00014-1,1,4380_7778208_3040403,4380_976 -4380_78016,287,4380_63354,University,92826-00012-1,1,4380_7778208_3040403,4380_976 -4380_78016,292,4380_63355,University,92825-00016-1,1,4380_7778208_3040403,4380_976 -4380_78016,290,4380_63356,University,92823-00015-1,1,4380_7778208_3040403,4380_976 -4380_78016,294,4380_63357,University,92827-00018-1,1,4380_7778208_3040403,4380_976 -4380_78016,295,4380_63358,University,92829-00019-1,1,4380_7778208_3040403,4380_976 -4380_78016,293,4380_63359,University,92821-00017-1,1,4380_7778208_3040403,4380_976 -4380_78142,293,4380_6336,Ratoath,54124-00017-1,0,4380_7778208_1050107,4380_71 -4380_78016,291,4380_63361,University,93733-00013-1,1,4380_7778208_3040408,4380_975 -4380_78016,296,4380_63362,University,93734-00021-1,1,4380_7778208_3040408,4380_975 -4380_78016,285,4380_63368,University,93897-00009-1,1,4380_7778208_3040409,4380_975 -4380_78016,288,4380_63369,University,93895-00011-1,1,4380_7778208_3040409,4380_975 -4380_78142,294,4380_6337,Ratoath,54127-00018-1,0,4380_7778208_1050107,4380_71 -4380_78016,286,4380_63370,University,93893-00010-1,1,4380_7778208_3040409,4380_975 -4380_78016,289,4380_63371,University,93899-00014-1,1,4380_7778208_3040409,4380_975 -4380_78016,287,4380_63372,University,93891-00012-1,1,4380_7778208_3040409,4380_975 -4380_78016,292,4380_63373,University,93894-00016-1,1,4380_7778208_3040409,4380_975 -4380_78016,290,4380_63374,University,93898-00015-1,1,4380_7778208_3040409,4380_975 -4380_78016,294,4380_63375,University,93892-00018-1,1,4380_7778208_3040409,4380_975 -4380_78016,295,4380_63376,University,93900-00019-1,1,4380_7778208_3040409,4380_975 -4380_78016,293,4380_63377,University,93896-00017-1,1,4380_7778208_3040409,4380_975 -4380_78016,291,4380_63379,University,93423-00013-1,1,4380_7778208_3040406,4380_975 -4380_78142,295,4380_6338,Ratoath,54128-00019-1,0,4380_7778208_1050107,4380_71 -4380_78016,296,4380_63380,University,93424-00021-1,1,4380_7778208_3040406,4380_975 -4380_78016,297,4380_63387,University,93018-00008-1,1,4380_7778208_3040404,4380_975 -4380_78016,285,4380_63388,University,94077-00009-1,1,4380_7778208_3040410,4380_976 -4380_78016,288,4380_63389,University,94075-00011-1,1,4380_7778208_3040410,4380_976 -4380_78016,286,4380_63390,University,94079-00010-1,1,4380_7778208_3040410,4380_976 -4380_78016,289,4380_63391,University,94083-00014-1,1,4380_7778208_3040410,4380_976 -4380_78016,287,4380_63392,University,94081-00012-1,1,4380_7778208_3040410,4380_976 -4380_78016,292,4380_63393,University,94080-00016-1,1,4380_7778208_3040410,4380_976 -4380_78016,290,4380_63394,University,94078-00015-1,1,4380_7778208_3040410,4380_976 -4380_78016,294,4380_63395,University,94082-00018-1,1,4380_7778208_3040410,4380_976 -4380_78016,295,4380_63396,University,94084-00019-1,1,4380_7778208_3040410,4380_976 -4380_78016,293,4380_63397,University,94076-00017-1,1,4380_7778208_3040410,4380_976 -4380_78016,291,4380_63399,University,92429-00013-1,1,4380_7778208_3040401,4380_975 -4380_78016,296,4380_63400,University,92430-00021-1,1,4380_7778208_3040401,4380_975 -4380_78016,285,4380_63406,University,92433-00009-1,1,4380_7778208_3040401,4380_975 -4380_78016,288,4380_63407,University,92435-00011-1,1,4380_7778208_3040401,4380_975 -4380_78016,286,4380_63408,University,92437-00010-1,1,4380_7778208_3040401,4380_975 -4380_78016,289,4380_63409,University,92431-00014-1,1,4380_7778208_3040401,4380_975 -4380_78016,287,4380_63410,University,92439-00012-1,1,4380_7778208_3040401,4380_975 -4380_78016,292,4380_63411,University,92438-00016-1,1,4380_7778208_3040401,4380_975 -4380_78016,290,4380_63412,University,92434-00015-1,1,4380_7778208_3040401,4380_975 -4380_78016,294,4380_63413,University,92440-00018-1,1,4380_7778208_3040401,4380_975 -4380_78016,295,4380_63414,University,92432-00019-1,1,4380_7778208_3040401,4380_975 -4380_78016,293,4380_63415,University,92436-00017-1,1,4380_7778208_3040401,4380_975 -4380_78016,291,4380_63417,University,92671-00013-1,1,4380_7778208_3040402,4380_975 -4380_78016,296,4380_63418,University,92672-00021-1,1,4380_7778208_3040402,4380_975 -4380_78016,297,4380_63425,University,92832-00008-1,1,4380_7778208_3040403,4380_975 -4380_78016,285,4380_63426,University,92673-00009-1,1,4380_7778208_3040402,4380_976 -4380_78016,288,4380_63427,University,92681-00011-1,1,4380_7778208_3040402,4380_976 -4380_78016,286,4380_63428,University,92677-00010-1,1,4380_7778208_3040402,4380_976 -4380_78016,289,4380_63429,University,92679-00014-1,1,4380_7778208_3040402,4380_976 -4380_78016,287,4380_63430,University,92675-00012-1,1,4380_7778208_3040402,4380_976 -4380_78016,292,4380_63431,University,92678-00016-1,1,4380_7778208_3040402,4380_976 -4380_78016,290,4380_63432,University,92674-00015-1,1,4380_7778208_3040402,4380_976 -4380_78016,294,4380_63433,University,92676-00018-1,1,4380_7778208_3040402,4380_976 -4380_78016,295,4380_63434,University,92680-00019-1,1,4380_7778208_3040402,4380_976 -4380_78016,293,4380_63435,University,92682-00017-1,1,4380_7778208_3040402,4380_976 -4380_78016,291,4380_63437,University,93019-00013-1,1,4380_7778208_3040404,4380_975 -4380_78016,296,4380_63438,University,93020-00021-1,1,4380_7778208_3040404,4380_975 -4380_78142,285,4380_6344,Ratoath,4810-00009-1,0,4380_7778208_1050108,4380_71 -4380_78016,285,4380_63444,University,93247-00009-1,1,4380_7778208_3040405,4380_975 -4380_78016,288,4380_63445,University,93249-00011-1,1,4380_7778208_3040405,4380_975 -4380_78016,286,4380_63446,University,93251-00010-1,1,4380_7778208_3040405,4380_975 -4380_78016,289,4380_63447,University,93255-00014-1,1,4380_7778208_3040405,4380_975 -4380_78016,287,4380_63448,University,93253-00012-1,1,4380_7778208_3040405,4380_975 -4380_78016,292,4380_63449,University,93252-00016-1,1,4380_7778208_3040405,4380_975 -4380_78142,286,4380_6345,Ratoath,4816-00010-1,0,4380_7778208_1050108,4380_71 -4380_78016,290,4380_63450,University,93248-00015-1,1,4380_7778208_3040405,4380_975 -4380_78016,294,4380_63451,University,93254-00018-1,1,4380_7778208_3040405,4380_975 -4380_78016,295,4380_63452,University,93256-00019-1,1,4380_7778208_3040405,4380_975 -4380_78016,293,4380_63453,University,93250-00017-1,1,4380_7778208_3040405,4380_975 -4380_78016,291,4380_63455,University,92843-00013-1,1,4380_7778208_3040403,4380_975 -4380_78016,296,4380_63456,University,92844-00021-1,1,4380_7778208_3040403,4380_975 -4380_78142,288,4380_6346,Ratoath,4820-00011-1,0,4380_7778208_1050108,4380_71 -4380_78016,297,4380_63463,University,92683-00008-1,1,4380_7778208_3040402,4380_975 -4380_78016,285,4380_63464,University,93024-00009-1,1,4380_7778208_3040404,4380_976 -4380_78016,288,4380_63465,University,93026-00011-1,1,4380_7778208_3040404,4380_976 -4380_78016,286,4380_63466,University,93022-00010-1,1,4380_7778208_3040404,4380_976 -4380_78016,289,4380_63467,University,93030-00014-1,1,4380_7778208_3040404,4380_976 -4380_78016,287,4380_63468,University,93028-00012-1,1,4380_7778208_3040404,4380_976 -4380_78016,292,4380_63469,University,93023-00016-1,1,4380_7778208_3040404,4380_976 -4380_78142,287,4380_6347,Ratoath,4824-00012-1,0,4380_7778208_1050108,4380_71 -4380_78016,290,4380_63470,University,93025-00015-1,1,4380_7778208_3040404,4380_976 -4380_78016,294,4380_63471,University,93029-00018-1,1,4380_7778208_3040404,4380_976 -4380_78016,295,4380_63472,University,93031-00019-1,1,4380_7778208_3040404,4380_976 -4380_78016,293,4380_63473,University,93027-00017-1,1,4380_7778208_3040404,4380_976 -4380_78016,291,4380_63475,University,93598-00013-1,1,4380_7778208_3040407,4380_975 -4380_78016,296,4380_63476,University,93599-00021-1,1,4380_7778208_3040407,4380_975 -4380_78142,289,4380_6348,Ratoath,4806-00014-1,0,4380_7778208_1050108,4380_71 -4380_78016,285,4380_63482,University,93431-00009-1,1,4380_7778208_3040406,4380_975 -4380_78016,288,4380_63483,University,93429-00011-1,1,4380_7778208_3040406,4380_975 -4380_78016,286,4380_63484,University,93437-00010-1,1,4380_7778208_3040406,4380_975 -4380_78016,289,4380_63485,University,93433-00014-1,1,4380_7778208_3040406,4380_975 -4380_78016,287,4380_63486,University,93435-00012-1,1,4380_7778208_3040406,4380_975 -4380_78016,292,4380_63487,University,93438-00016-1,1,4380_7778208_3040406,4380_975 -4380_78016,290,4380_63488,University,93432-00015-1,1,4380_7778208_3040406,4380_975 -4380_78016,294,4380_63489,University,93436-00018-1,1,4380_7778208_3040406,4380_975 -4380_78142,290,4380_6349,Ratoath,54137-00015-1,0,4380_7778208_1050108,4380_71 -4380_78016,295,4380_63490,University,93434-00019-1,1,4380_7778208_3040406,4380_975 -4380_78016,293,4380_63491,University,93430-00017-1,1,4380_7778208_3040406,4380_975 -4380_78016,291,4380_63493,University,93258-00013-1,1,4380_7778208_3040405,4380_975 -4380_78016,296,4380_63494,University,93259-00021-1,1,4380_7778208_3040405,4380_975 -4380_78113,297,4380_635,Dundalk,49964-00008-1,0,4380_7778208_1000906,4380_10 -4380_78142,292,4380_6350,Ratoath,54136-00016-1,0,4380_7778208_1050108,4380_71 -4380_78016,297,4380_63501,University,92454-00008-1,1,4380_7778208_3040401,4380_975 -4380_78016,285,4380_63502,University,93755-00009-1,1,4380_7778208_3040408,4380_976 -4380_78016,288,4380_63503,University,93747-00011-1,1,4380_7778208_3040408,4380_976 -4380_78016,286,4380_63504,University,93751-00010-1,1,4380_7778208_3040408,4380_976 -4380_78016,289,4380_63505,University,93753-00014-1,1,4380_7778208_3040408,4380_976 -4380_78016,287,4380_63506,University,93749-00012-1,1,4380_7778208_3040408,4380_976 -4380_78016,292,4380_63507,University,93752-00016-1,1,4380_7778208_3040408,4380_976 -4380_78016,290,4380_63508,University,93756-00015-1,1,4380_7778208_3040408,4380_976 -4380_78016,294,4380_63509,University,93750-00018-1,1,4380_7778208_3040408,4380_976 -4380_78142,293,4380_6351,Ratoath,54134-00017-1,0,4380_7778208_1050108,4380_71 -4380_78016,295,4380_63510,University,93754-00019-1,1,4380_7778208_3040408,4380_976 -4380_78016,293,4380_63511,University,93748-00017-1,1,4380_7778208_3040408,4380_976 -4380_78016,291,4380_63513,University,93757-00013-1,1,4380_7778208_3040408,4380_975 -4380_78016,296,4380_63514,University,93758-00021-1,1,4380_7778208_3040408,4380_975 -4380_78142,294,4380_6352,Ratoath,54135-00018-1,0,4380_7778208_1050108,4380_71 -4380_78016,285,4380_63520,University,93609-00009-1,1,4380_7778208_3040407,4380_975 -4380_78016,288,4380_63521,University,93603-00011-1,1,4380_7778208_3040407,4380_975 -4380_78016,286,4380_63522,University,93607-00010-1,1,4380_7778208_3040407,4380_975 -4380_78016,289,4380_63523,University,93605-00014-1,1,4380_7778208_3040407,4380_975 -4380_78016,287,4380_63524,University,93601-00012-1,1,4380_7778208_3040407,4380_975 -4380_78016,292,4380_63525,University,93608-00016-1,1,4380_7778208_3040407,4380_975 -4380_78016,290,4380_63526,University,93610-00015-1,1,4380_7778208_3040407,4380_975 -4380_78016,294,4380_63527,University,93602-00018-1,1,4380_7778208_3040407,4380_975 -4380_78016,295,4380_63528,University,93606-00019-1,1,4380_7778208_3040407,4380_975 -4380_78016,293,4380_63529,University,93604-00017-1,1,4380_7778208_3040407,4380_975 -4380_78142,295,4380_6353,Ratoath,54138-00019-1,0,4380_7778208_1050108,4380_71 -4380_78016,297,4380_63531,University,93034-00008-1,1,4380_7778208_3040404,4380_975 -4380_78016,291,4380_63533,City Centre,93440-00013-1,1,4380_7778208_3040406,4380_977 -4380_78016,296,4380_63534,City Centre,93441-00021-1,1,4380_7778208_3040406,4380_977 -4380_78016,285,4380_63540,University,92856-00009-1,1,4380_7778208_3040403,4380_975 -4380_78016,288,4380_63541,University,92848-00011-1,1,4380_7778208_3040403,4380_975 -4380_78016,286,4380_63542,University,92854-00010-1,1,4380_7778208_3040403,4380_975 -4380_78016,289,4380_63543,University,92852-00014-1,1,4380_7778208_3040403,4380_975 -4380_78016,287,4380_63544,University,92850-00012-1,1,4380_7778208_3040403,4380_975 -4380_78016,292,4380_63545,University,92855-00016-1,1,4380_7778208_3040403,4380_975 -4380_78016,290,4380_63546,University,92857-00015-1,1,4380_7778208_3040403,4380_975 -4380_78016,294,4380_63547,University,92851-00018-1,1,4380_7778208_3040403,4380_975 -4380_78016,295,4380_63548,University,92853-00019-1,1,4380_7778208_3040403,4380_975 -4380_78016,293,4380_63549,University,92849-00017-1,1,4380_7778208_3040403,4380_975 -4380_78016,291,4380_63551,University,92455-00013-1,1,4380_7778208_3040401,4380_975 -4380_78016,296,4380_63552,University,92456-00021-1,1,4380_7778208_3040401,4380_975 -4380_78016,285,4380_63558,University,94107-00009-1,1,4380_7778208_3040410,4380_975 -4380_78016,288,4380_63559,University,94101-00011-1,1,4380_7778208_3040410,4380_975 -4380_78016,286,4380_63560,University,94105-00010-1,1,4380_7778208_3040410,4380_975 -4380_78016,289,4380_63561,University,94109-00014-1,1,4380_7778208_3040410,4380_975 -4380_78016,287,4380_63562,University,94103-00012-1,1,4380_7778208_3040410,4380_975 -4380_78016,292,4380_63563,University,94106-00016-1,1,4380_7778208_3040410,4380_975 -4380_78016,290,4380_63564,University,94108-00015-1,1,4380_7778208_3040410,4380_975 -4380_78016,294,4380_63565,University,94104-00018-1,1,4380_7778208_3040410,4380_975 -4380_78016,295,4380_63566,University,94110-00019-1,1,4380_7778208_3040410,4380_975 -4380_78016,293,4380_63567,University,94102-00017-1,1,4380_7778208_3040410,4380_975 -4380_78016,297,4380_63569,University,92858-00008-1,1,4380_7778208_3040403,4380_975 -4380_78016,291,4380_63571,City Centre,92697-00013-1,1,4380_7778208_3040402,4380_977 -4380_78016,296,4380_63572,City Centre,92698-00021-1,1,4380_7778208_3040402,4380_977 -4380_78016,285,4380_63578,University,92460-00009-1,1,4380_7778208_3040401,4380_975 -4380_78016,288,4380_63579,University,92466-00011-1,1,4380_7778208_3040401,4380_975 -4380_78016,286,4380_63580,University,92464-00010-1,1,4380_7778208_3040401,4380_975 -4380_78016,289,4380_63581,University,92458-00014-1,1,4380_7778208_3040401,4380_975 -4380_78016,287,4380_63582,University,92462-00012-1,1,4380_7778208_3040401,4380_975 -4380_78016,292,4380_63583,University,92465-00016-1,1,4380_7778208_3040401,4380_975 -4380_78016,290,4380_63584,University,92461-00015-1,1,4380_7778208_3040401,4380_975 -4380_78016,294,4380_63585,University,92463-00018-1,1,4380_7778208_3040401,4380_975 -4380_78016,295,4380_63586,University,92459-00019-1,1,4380_7778208_3040401,4380_975 -4380_78016,293,4380_63587,University,92467-00017-1,1,4380_7778208_3040401,4380_975 -4380_78016,291,4380_63589,University,93046-00013-1,1,4380_7778208_3040404,4380_975 -4380_78142,285,4380_6359,U C D Belfield,4771-00009-1,1,4380_7778208_1050106,4380_72 -4380_78016,296,4380_63590,University,93047-00021-1,1,4380_7778208_3040404,4380_975 -4380_78016,285,4380_63596,University,92705-00009-1,1,4380_7778208_3040402,4380_975 -4380_78016,288,4380_63597,University,92703-00011-1,1,4380_7778208_3040402,4380_975 -4380_78016,286,4380_63598,University,92707-00010-1,1,4380_7778208_3040402,4380_975 -4380_78016,289,4380_63599,University,92701-00014-1,1,4380_7778208_3040402,4380_975 -4380_78142,286,4380_6360,U C D Belfield,4775-00010-1,1,4380_7778208_1050106,4380_72 -4380_78016,287,4380_63600,University,92699-00012-1,1,4380_7778208_3040402,4380_975 -4380_78016,292,4380_63601,University,92708-00016-1,1,4380_7778208_3040402,4380_975 -4380_78016,290,4380_63602,University,92706-00015-1,1,4380_7778208_3040402,4380_975 -4380_78016,294,4380_63603,University,92700-00018-1,1,4380_7778208_3040402,4380_975 -4380_78016,295,4380_63604,University,92702-00019-1,1,4380_7778208_3040402,4380_975 -4380_78016,293,4380_63605,University,92704-00017-1,1,4380_7778208_3040402,4380_975 -4380_78016,297,4380_63607,University,92709-00008-1,1,4380_7778208_3040402,4380_975 -4380_78142,288,4380_6361,U C D Belfield,4779-00011-1,1,4380_7778208_1050106,4380_72 -4380_78016,285,4380_63613,University,93054-00009-1,1,4380_7778208_3040404,4380_975 -4380_78016,288,4380_63615,University,93056-00011-1,1,4380_7778208_3040404,4380_975 -4380_78016,286,4380_63616,University,93048-00010-1,1,4380_7778208_3040404,4380_975 -4380_78016,291,4380_63617,University,93625-00013-1,1,4380_7778208_3040407,4380_976 -4380_78016,289,4380_63618,University,93052-00014-1,1,4380_7778208_3040404,4380_975 -4380_78016,287,4380_63619,University,93050-00012-1,1,4380_7778208_3040404,4380_975 -4380_78142,287,4380_6362,U C D Belfield,4781-00012-1,1,4380_7778208_1050106,4380_72 -4380_78016,292,4380_63620,University,93049-00016-1,1,4380_7778208_3040404,4380_975 -4380_78016,290,4380_63621,University,93055-00015-1,1,4380_7778208_3040404,4380_975 -4380_78016,294,4380_63622,University,93051-00018-1,1,4380_7778208_3040404,4380_975 -4380_78016,295,4380_63623,University,93053-00019-1,1,4380_7778208_3040404,4380_975 -4380_78016,293,4380_63624,University,93057-00017-1,1,4380_7778208_3040404,4380_975 -4380_78016,296,4380_63625,University,93626-00021-1,1,4380_7778208_3040407,4380_976 -4380_78016,297,4380_63627,University,92480-00008-1,1,4380_7778208_3040401,4380_975 -4380_78142,289,4380_6363,U C D Belfield,4765-00014-1,1,4380_7778208_1050106,4380_72 -4380_78016,285,4380_63633,University,93627-00009-1,1,4380_7778208_3040407,4380_975 -4380_78016,288,4380_63635,University,93629-00011-1,1,4380_7778208_3040407,4380_975 -4380_78016,286,4380_63636,University,93633-00010-1,1,4380_7778208_3040407,4380_975 -4380_78016,291,4380_63637,University,92481-00013-1,1,4380_7778208_3040401,4380_976 -4380_78016,289,4380_63638,University,93635-00014-1,1,4380_7778208_3040407,4380_975 -4380_78016,287,4380_63639,University,93631-00012-1,1,4380_7778208_3040407,4380_975 -4380_78142,290,4380_6364,U C D Belfield,54109-00015-1,1,4380_7778208_1050106,4380_72 -4380_78016,292,4380_63640,University,93634-00016-1,1,4380_7778208_3040407,4380_975 -4380_78016,290,4380_63641,University,93628-00015-1,1,4380_7778208_3040407,4380_975 -4380_78016,294,4380_63642,University,93632-00018-1,1,4380_7778208_3040407,4380_975 -4380_78016,295,4380_63643,University,93636-00019-1,1,4380_7778208_3040407,4380_975 -4380_78016,293,4380_63644,University,93630-00017-1,1,4380_7778208_3040407,4380_975 -4380_78016,296,4380_63645,University,92482-00021-1,1,4380_7778208_3040401,4380_976 -4380_78016,297,4380_63647,University,92870-00008-1,1,4380_7778208_3040403,4380_975 -4380_78142,292,4380_6365,U C D Belfield,54113-00016-1,1,4380_7778208_1050106,4380_72 -4380_78016,285,4380_63653,University,92490-00009-1,1,4380_7778208_3040401,4380_975 -4380_78016,288,4380_63655,University,92484-00011-1,1,4380_7778208_3040401,4380_975 -4380_78016,286,4380_63656,University,92488-00010-1,1,4380_7778208_3040401,4380_975 -4380_78016,291,4380_63657,University,93070-00013-1,1,4380_7778208_3040404,4380_976 -4380_78016,289,4380_63658,University,92486-00014-1,1,4380_7778208_3040401,4380_975 -4380_78016,287,4380_63659,University,92492-00012-1,1,4380_7778208_3040401,4380_975 -4380_78142,293,4380_6366,U C D Belfield,54111-00017-1,1,4380_7778208_1050106,4380_72 -4380_78016,292,4380_63660,University,92489-00016-1,1,4380_7778208_3040401,4380_975 -4380_78016,290,4380_63661,University,92491-00015-1,1,4380_7778208_3040401,4380_975 -4380_78016,294,4380_63662,University,92493-00018-1,1,4380_7778208_3040401,4380_975 -4380_78016,295,4380_63663,University,92487-00019-1,1,4380_7778208_3040401,4380_975 -4380_78016,293,4380_63664,University,92485-00017-1,1,4380_7778208_3040401,4380_975 -4380_78016,296,4380_63665,University,93071-00021-1,1,4380_7778208_3040404,4380_976 -4380_78016,297,4380_63667,University,92721-00008-1,1,4380_7778208_3040402,4380_975 -4380_78142,294,4380_6367,U C D Belfield,54110-00018-1,1,4380_7778208_1050106,4380_72 -4380_78016,285,4380_63673,University,93080-00009-1,1,4380_7778208_3040404,4380_975 -4380_78016,288,4380_63675,University,93072-00011-1,1,4380_7778208_3040404,4380_975 -4380_78016,286,4380_63676,University,93074-00010-1,1,4380_7778208_3040404,4380_975 -4380_78016,291,4380_63677,University,93651-00013-1,1,4380_7778208_3040407,4380_976 -4380_78016,289,4380_63678,University,93076-00014-1,1,4380_7778208_3040404,4380_975 -4380_78016,287,4380_63679,University,93078-00012-1,1,4380_7778208_3040404,4380_975 -4380_78142,295,4380_6368,U C D Belfield,54112-00019-1,1,4380_7778208_1050106,4380_72 -4380_78016,292,4380_63680,University,93075-00016-1,1,4380_7778208_3040404,4380_975 -4380_78016,290,4380_63681,University,93081-00015-1,1,4380_7778208_3040404,4380_975 -4380_78016,294,4380_63682,University,93079-00018-1,1,4380_7778208_3040404,4380_975 -4380_78016,295,4380_63683,University,93077-00019-1,1,4380_7778208_3040404,4380_975 -4380_78016,293,4380_63684,University,93073-00017-1,1,4380_7778208_3040404,4380_975 -4380_78016,296,4380_63685,University,93652-00021-1,1,4380_7778208_3040407,4380_976 -4380_78016,297,4380_63687,University,92506-00008-1,1,4380_7778208_3040401,4380_975 -4380_78016,285,4380_63693,University,93657-00009-1,1,4380_7778208_3040407,4380_975 -4380_78016,288,4380_63695,University,93655-00011-1,1,4380_7778208_3040407,4380_975 -4380_78016,286,4380_63696,University,93661-00010-1,1,4380_7778208_3040407,4380_975 -4380_78016,291,4380_63697,University,92507-00013-1,1,4380_7778208_3040401,4380_976 -4380_78016,289,4380_63698,University,93653-00014-1,1,4380_7778208_3040407,4380_975 -4380_78016,287,4380_63699,University,93659-00012-1,1,4380_7778208_3040407,4380_975 -4380_78016,292,4380_63700,University,93662-00016-1,1,4380_7778208_3040407,4380_975 -4380_78016,290,4380_63701,University,93658-00015-1,1,4380_7778208_3040407,4380_975 -4380_78016,294,4380_63702,University,93660-00018-1,1,4380_7778208_3040407,4380_975 -4380_78016,295,4380_63703,University,93654-00019-1,1,4380_7778208_3040407,4380_975 -4380_78016,293,4380_63704,University,93656-00017-1,1,4380_7778208_3040407,4380_975 -4380_78016,296,4380_63705,University,92508-00021-1,1,4380_7778208_3040401,4380_976 -4380_78016,297,4380_63707,University,92872-00008-1,1,4380_7778208_3040403,4380_975 -4380_78016,285,4380_63713,University,92516-00009-1,1,4380_7778208_3040401,4380_975 -4380_78016,288,4380_63715,University,92512-00011-1,1,4380_7778208_3040401,4380_975 -4380_78016,286,4380_63716,University,92518-00010-1,1,4380_7778208_3040401,4380_975 -4380_78016,291,4380_63717,University,93094-00013-1,1,4380_7778208_3040404,4380_976 -4380_78016,289,4380_63718,University,92514-00014-1,1,4380_7778208_3040401,4380_975 -4380_78016,287,4380_63719,University,92510-00012-1,1,4380_7778208_3040401,4380_975 -4380_78016,292,4380_63720,University,92519-00016-1,1,4380_7778208_3040401,4380_975 -4380_78016,290,4380_63721,University,92517-00015-1,1,4380_7778208_3040401,4380_975 -4380_78016,294,4380_63722,University,92511-00018-1,1,4380_7778208_3040401,4380_975 -4380_78016,295,4380_63723,University,92515-00019-1,1,4380_7778208_3040401,4380_975 -4380_78016,293,4380_63724,University,92513-00017-1,1,4380_7778208_3040401,4380_975 -4380_78016,296,4380_63725,University,93095-00021-1,1,4380_7778208_3040404,4380_976 -4380_78016,297,4380_63727,University,92723-00008-1,1,4380_7778208_3040402,4380_975 -4380_78016,285,4380_63733,University,93096-00009-1,1,4380_7778208_3040404,4380_975 -4380_78016,288,4380_63735,University,93100-00011-1,1,4380_7778208_3040404,4380_975 -4380_78016,286,4380_63736,University,93098-00010-1,1,4380_7778208_3040404,4380_975 -4380_78016,291,4380_63737,City Centre,93677-00013-1,1,4380_7778208_3040407,4380_977 -4380_78016,289,4380_63738,University,93104-00014-1,1,4380_7778208_3040404,4380_975 -4380_78016,287,4380_63739,University,93102-00012-1,1,4380_7778208_3040404,4380_975 -4380_78142,285,4380_6374,St. Stephen's Green,4789-00009-1,1,4380_7778208_1050107,4380_73 -4380_78016,292,4380_63740,University,93099-00016-1,1,4380_7778208_3040404,4380_975 -4380_78016,290,4380_63741,University,93097-00015-1,1,4380_7778208_3040404,4380_975 -4380_78016,294,4380_63742,University,93103-00018-1,1,4380_7778208_3040404,4380_975 -4380_78016,295,4380_63743,University,93105-00019-1,1,4380_7778208_3040404,4380_975 -4380_78016,293,4380_63744,University,93101-00017-1,1,4380_7778208_3040404,4380_975 -4380_78016,296,4380_63745,City Centre,93678-00021-1,1,4380_7778208_3040407,4380_977 -4380_78016,297,4380_63747,University,92532-00008-1,1,4380_7778208_3040401,4380_975 -4380_78142,286,4380_6375,St. Stephen's Green,4793-00010-1,1,4380_7778208_1050107,4380_73 -4380_78016,285,4380_63753,City Centre,93688-00009-1,1,4380_7778208_3040407,4380_977 -4380_78016,288,4380_63755,City Centre,93684-00011-1,1,4380_7778208_3040407,4380_977 -4380_78016,286,4380_63756,City Centre,93682-00010-1,1,4380_7778208_3040407,4380_977 -4380_78016,291,4380_63757,City Centre,92533-00013-1,1,4380_7778208_3040401,4380_979 -4380_78016,289,4380_63758,City Centre,93680-00014-1,1,4380_7778208_3040407,4380_977 -4380_78016,287,4380_63759,City Centre,93686-00012-1,1,4380_7778208_3040407,4380_977 -4380_78142,288,4380_6376,St. Stephen's Green,4799-00011-1,1,4380_7778208_1050107,4380_73 -4380_78016,292,4380_63760,City Centre,93683-00016-1,1,4380_7778208_3040407,4380_977 -4380_78016,290,4380_63761,City Centre,93689-00015-1,1,4380_7778208_3040407,4380_977 -4380_78016,294,4380_63762,City Centre,93687-00018-1,1,4380_7778208_3040407,4380_977 -4380_78016,295,4380_63763,City Centre,93681-00019-1,1,4380_7778208_3040407,4380_977 -4380_78016,293,4380_63764,City Centre,93685-00017-1,1,4380_7778208_3040407,4380_977 -4380_78016,296,4380_63765,City Centre,92534-00021-1,1,4380_7778208_3040401,4380_979 -4380_78142,287,4380_6377,St. Stephen's Green,4803-00012-1,1,4380_7778208_1050107,4380_73 -4380_78155,285,4380_63771,University of Limerick,94423-00009-1,0,4380_7778208_3040412,4380_981 -4380_78155,288,4380_63772,University of Limerick,94421-00011-1,0,4380_7778208_3040412,4380_981 -4380_78155,286,4380_63773,University of Limerick,94415-00010-1,0,4380_7778208_3040412,4380_981 -4380_78155,289,4380_63774,University of Limerick,94417-00014-1,0,4380_7778208_3040412,4380_981 -4380_78155,287,4380_63775,University of Limerick,94419-00012-1,0,4380_7778208_3040412,4380_981 -4380_78155,292,4380_63776,University of Limerick,94416-00016-1,0,4380_7778208_3040412,4380_981 -4380_78155,290,4380_63777,University of Limerick,94424-00015-1,0,4380_7778208_3040412,4380_981 -4380_78155,294,4380_63778,University of Limerick,94420-00018-1,0,4380_7778208_3040412,4380_981 -4380_78155,295,4380_63779,University of Limerick,94418-00019-1,0,4380_7778208_3040412,4380_981 -4380_78142,289,4380_6378,St. Stephen's Green,4787-00014-1,1,4380_7778208_1050107,4380_73 -4380_78155,293,4380_63780,University of Limerick,94422-00017-1,0,4380_7778208_3040412,4380_981 -4380_78155,285,4380_63786,University of Limerick,94545-00009-1,0,4380_7778208_3040413,4380_981 -4380_78155,288,4380_63788,University of Limerick,94553-00011-1,0,4380_7778208_3040413,4380_981 -4380_78155,286,4380_63789,University of Limerick,94547-00010-1,0,4380_7778208_3040413,4380_981 -4380_78142,290,4380_6379,St. Stephen's Green,54122-00015-1,1,4380_7778208_1050107,4380_73 -4380_78155,291,4380_63790,University of Limerick,93965-00013-1,0,4380_7778208_3040410,4380_983 -4380_78155,289,4380_63791,University of Limerick,94549-00014-1,0,4380_7778208_3040413,4380_981 -4380_78155,287,4380_63792,University of Limerick,94551-00012-1,0,4380_7778208_3040413,4380_981 -4380_78155,292,4380_63793,University of Limerick,94548-00016-1,0,4380_7778208_3040413,4380_981 -4380_78155,290,4380_63794,University of Limerick,94546-00015-1,0,4380_7778208_3040413,4380_981 -4380_78155,294,4380_63795,University of Limerick,94552-00018-1,0,4380_7778208_3040413,4380_981 -4380_78155,295,4380_63796,University of Limerick,94550-00019-1,0,4380_7778208_3040413,4380_981 -4380_78155,293,4380_63797,University of Limerick,94554-00017-1,0,4380_7778208_3040413,4380_981 -4380_78155,296,4380_63798,University of Limerick,93966-00021-1,0,4380_7778208_3040410,4380_983 -4380_78142,292,4380_6380,St. Stephen's Green,54123-00016-1,1,4380_7778208_1050107,4380_73 -4380_78155,285,4380_63804,University of Limerick,94157-00009-1,0,4380_7778208_3040411,4380_981 -4380_78155,288,4380_63806,University of Limerick,94149-00011-1,0,4380_7778208_3040411,4380_981 -4380_78155,286,4380_63807,University of Limerick,94155-00010-1,0,4380_7778208_3040411,4380_981 -4380_78155,291,4380_63808,University of Limerick,93783-00013-1,0,4380_7778208_3040409,4380_983 -4380_78155,289,4380_63809,University of Limerick,94151-00014-1,0,4380_7778208_3040411,4380_981 -4380_78142,293,4380_6381,St. Stephen's Green,54120-00017-1,1,4380_7778208_1050107,4380_73 -4380_78155,287,4380_63810,University of Limerick,94153-00012-1,0,4380_7778208_3040411,4380_981 -4380_78155,292,4380_63811,University of Limerick,94156-00016-1,0,4380_7778208_3040411,4380_981 -4380_78155,290,4380_63812,University of Limerick,94158-00015-1,0,4380_7778208_3040411,4380_981 -4380_78155,294,4380_63813,University of Limerick,94154-00018-1,0,4380_7778208_3040411,4380_981 -4380_78155,295,4380_63814,University of Limerick,94152-00019-1,0,4380_7778208_3040411,4380_981 -4380_78155,293,4380_63815,University of Limerick,94150-00017-1,0,4380_7778208_3040411,4380_981 -4380_78155,296,4380_63816,University of Limerick,93784-00021-1,0,4380_7778208_3040409,4380_983 -4380_78142,294,4380_6382,St. Stephen's Green,54119-00018-1,1,4380_7778208_1050107,4380_73 -4380_78155,285,4380_63822,University of Limerick,94759-00009-1,0,4380_7778208_3040414,4380_984 -4380_78155,288,4380_63823,University of Limerick,94763-00011-1,0,4380_7778208_3040414,4380_984 -4380_78155,286,4380_63824,University of Limerick,94755-00010-1,0,4380_7778208_3040414,4380_984 -4380_78155,289,4380_63825,University of Limerick,94761-00014-1,0,4380_7778208_3040414,4380_984 -4380_78155,287,4380_63826,University of Limerick,94757-00012-1,0,4380_7778208_3040414,4380_984 -4380_78155,292,4380_63827,University of Limerick,94756-00016-1,0,4380_7778208_3040414,4380_984 -4380_78155,290,4380_63828,University of Limerick,94760-00015-1,0,4380_7778208_3040414,4380_984 -4380_78155,294,4380_63829,University of Limerick,94758-00018-1,0,4380_7778208_3040414,4380_984 -4380_78142,295,4380_6383,St. Stephen's Green,54121-00019-1,1,4380_7778208_1050107,4380_73 -4380_78155,295,4380_63830,University of Limerick,94762-00019-1,0,4380_7778208_3040414,4380_984 -4380_78155,293,4380_63831,University of Limerick,94764-00017-1,0,4380_7778208_3040414,4380_984 -4380_78155,285,4380_63837,University of Limerick,94443-00009-1,0,4380_7778208_3040412,4380_981 -4380_78155,288,4380_63839,University of Limerick,94441-00011-1,0,4380_7778208_3040412,4380_981 -4380_78155,286,4380_63840,University of Limerick,94435-00010-1,0,4380_7778208_3040412,4380_981 -4380_78155,291,4380_63841,University of Limerick,93975-00013-1,0,4380_7778208_3040410,4380_983 -4380_78155,289,4380_63842,University of Limerick,94439-00014-1,0,4380_7778208_3040412,4380_981 -4380_78155,287,4380_63843,University of Limerick,94437-00012-1,0,4380_7778208_3040412,4380_981 -4380_78155,292,4380_63844,University of Limerick,94436-00016-1,0,4380_7778208_3040412,4380_981 -4380_78155,290,4380_63845,University of Limerick,94444-00015-1,0,4380_7778208_3040412,4380_981 -4380_78155,294,4380_63846,University of Limerick,94438-00018-1,0,4380_7778208_3040412,4380_981 -4380_78155,295,4380_63847,University of Limerick,94440-00019-1,0,4380_7778208_3040412,4380_981 -4380_78155,293,4380_63848,University of Limerick,94442-00017-1,0,4380_7778208_3040412,4380_981 -4380_78155,296,4380_63849,University of Limerick,93976-00021-1,0,4380_7778208_3040410,4380_983 -4380_78155,285,4380_63855,University of Limerick,94573-00009-1,0,4380_7778208_3040413,4380_981 -4380_78155,288,4380_63857,University of Limerick,94569-00011-1,0,4380_7778208_3040413,4380_981 -4380_78155,286,4380_63858,University of Limerick,94571-00010-1,0,4380_7778208_3040413,4380_981 -4380_78155,291,4380_63859,University of Limerick,93797-00013-1,0,4380_7778208_3040409,4380_983 -4380_78155,289,4380_63860,University of Limerick,94565-00014-1,0,4380_7778208_3040413,4380_981 -4380_78155,287,4380_63861,University of Limerick,94567-00012-1,0,4380_7778208_3040413,4380_981 -4380_78155,292,4380_63862,University of Limerick,94572-00016-1,0,4380_7778208_3040413,4380_981 -4380_78155,290,4380_63863,University of Limerick,94574-00015-1,0,4380_7778208_3040413,4380_981 -4380_78155,294,4380_63864,University of Limerick,94568-00018-1,0,4380_7778208_3040413,4380_981 -4380_78155,295,4380_63865,University of Limerick,94566-00019-1,0,4380_7778208_3040413,4380_981 -4380_78155,293,4380_63866,University of Limerick,94570-00017-1,0,4380_7778208_3040413,4380_981 -4380_78155,296,4380_63867,University of Limerick,93798-00021-1,0,4380_7778208_3040409,4380_983 -4380_78155,285,4380_63873,University of Limerick,94779-00009-1,0,4380_7778208_3040414,4380_981 -4380_78155,288,4380_63875,University of Limerick,94783-00011-1,0,4380_7778208_3040414,4380_981 -4380_78155,286,4380_63876,University of Limerick,94775-00010-1,0,4380_7778208_3040414,4380_981 -4380_78155,291,4380_63877,University of Limerick,93983-00013-1,0,4380_7778208_3040410,4380_983 -4380_78155,289,4380_63878,University of Limerick,94781-00014-1,0,4380_7778208_3040414,4380_981 -4380_78155,287,4380_63879,University of Limerick,94777-00012-1,0,4380_7778208_3040414,4380_981 -4380_78155,292,4380_63880,University of Limerick,94776-00016-1,0,4380_7778208_3040414,4380_981 -4380_78155,290,4380_63881,University of Limerick,94780-00015-1,0,4380_7778208_3040414,4380_981 -4380_78155,294,4380_63882,University of Limerick,94778-00018-1,0,4380_7778208_3040414,4380_981 -4380_78155,295,4380_63883,University of Limerick,94782-00019-1,0,4380_7778208_3040414,4380_981 -4380_78155,293,4380_63884,University of Limerick,94784-00017-1,0,4380_7778208_3040414,4380_981 -4380_78155,296,4380_63885,University of Limerick,93984-00021-1,0,4380_7778208_3040410,4380_983 -4380_78142,285,4380_6389,St. Stephen's Green,4809-00009-1,1,4380_7778208_1050108,4380_73 -4380_78155,297,4380_63892,University of Limerick,93149-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,285,4380_63893,University of Limerick,94175-00009-1,0,4380_7778208_3040411,4380_983 -4380_78155,288,4380_63895,University of Limerick,94173-00011-1,0,4380_7778208_3040411,4380_983 -4380_78155,286,4380_63896,University of Limerick,94177-00010-1,0,4380_7778208_3040411,4380_983 -4380_78155,291,4380_63897,University of Limerick,93811-00013-1,0,4380_7778208_3040409,4380_986 -4380_78155,289,4380_63898,University of Limerick,94179-00014-1,0,4380_7778208_3040411,4380_983 -4380_78155,287,4380_63899,University of Limerick,94171-00012-1,0,4380_7778208_3040411,4380_983 -4380_78142,286,4380_6390,St. Stephen's Green,4815-00010-1,1,4380_7778208_1050108,4380_73 -4380_78155,292,4380_63900,University of Limerick,94178-00016-1,0,4380_7778208_3040411,4380_983 -4380_78155,290,4380_63901,University of Limerick,94176-00015-1,0,4380_7778208_3040411,4380_983 -4380_78155,294,4380_63902,University of Limerick,94172-00018-1,0,4380_7778208_3040411,4380_983 -4380_78155,295,4380_63903,University of Limerick,94180-00019-1,0,4380_7778208_3040411,4380_983 -4380_78155,293,4380_63904,University of Limerick,94174-00017-1,0,4380_7778208_3040411,4380_983 -4380_78155,296,4380_63905,University of Limerick,93812-00021-1,0,4380_7778208_3040409,4380_986 -4380_78142,288,4380_6391,St. Stephen's Green,4819-00011-1,1,4380_7778208_1050108,4380_73 -4380_78155,297,4380_63912,University of Limerick,93331-00008-1,0,4380_7778208_3040406,4380_981 -4380_78155,285,4380_63913,University of Limerick,94593-00009-1,0,4380_7778208_3040413,4380_983 -4380_78155,288,4380_63915,University of Limerick,94587-00011-1,0,4380_7778208_3040413,4380_983 -4380_78155,286,4380_63916,University of Limerick,94589-00010-1,0,4380_7778208_3040413,4380_983 -4380_78155,291,4380_63917,University of Limerick,94181-00013-1,0,4380_7778208_3040411,4380_986 -4380_78155,289,4380_63918,University of Limerick,94591-00014-1,0,4380_7778208_3040413,4380_983 -4380_78155,287,4380_63919,University of Limerick,94585-00012-1,0,4380_7778208_3040413,4380_983 -4380_78142,287,4380_6392,St. Stephen's Green,4823-00012-1,1,4380_7778208_1050108,4380_73 -4380_78155,292,4380_63920,University of Limerick,94590-00016-1,0,4380_7778208_3040413,4380_983 -4380_78155,290,4380_63921,University of Limerick,94594-00015-1,0,4380_7778208_3040413,4380_983 -4380_78155,294,4380_63922,University of Limerick,94586-00018-1,0,4380_7778208_3040413,4380_983 -4380_78155,295,4380_63923,University of Limerick,94592-00019-1,0,4380_7778208_3040413,4380_983 -4380_78155,293,4380_63924,University of Limerick,94588-00017-1,0,4380_7778208_3040413,4380_983 -4380_78155,296,4380_63925,University of Limerick,94182-00021-1,0,4380_7778208_3040411,4380_986 -4380_78155,291,4380_63927,University of Limerick,94007-00013-1,0,4380_7778208_3040410,4380_981 -4380_78155,296,4380_63928,University of Limerick,94008-00021-1,0,4380_7778208_3040410,4380_981 -4380_78142,289,4380_6393,St. Stephen's Green,4805-00014-1,1,4380_7778208_1050108,4380_73 -4380_78155,297,4380_63935,University of Limerick,93503-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,285,4380_63936,University of Limerick,94795-00009-1,0,4380_7778208_3040414,4380_983 -4380_78155,288,4380_63937,University of Limerick,94803-00011-1,0,4380_7778208_3040414,4380_983 -4380_78155,286,4380_63938,University of Limerick,94801-00010-1,0,4380_7778208_3040414,4380_983 -4380_78155,289,4380_63939,University of Limerick,94799-00014-1,0,4380_7778208_3040414,4380_983 -4380_78142,290,4380_6394,St. Stephen's Green,54129-00015-1,1,4380_7778208_1050108,4380_73 -4380_78155,287,4380_63940,University of Limerick,94797-00012-1,0,4380_7778208_3040414,4380_983 -4380_78155,292,4380_63941,University of Limerick,94802-00016-1,0,4380_7778208_3040414,4380_983 -4380_78155,290,4380_63942,University of Limerick,94796-00015-1,0,4380_7778208_3040414,4380_983 -4380_78155,294,4380_63943,University of Limerick,94798-00018-1,0,4380_7778208_3040414,4380_983 -4380_78155,295,4380_63944,University of Limerick,94800-00019-1,0,4380_7778208_3040414,4380_983 -4380_78155,293,4380_63945,University of Limerick,94804-00017-1,0,4380_7778208_3040414,4380_983 -4380_78155,297,4380_63947,University of Limerick,93163-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,291,4380_63949,University of Limerick,93825-00013-1,0,4380_7778208_3040409,4380_983 -4380_78142,292,4380_6395,St. Stephen's Green,54131-00016-1,1,4380_7778208_1050108,4380_73 -4380_78155,296,4380_63950,University of Limerick,93826-00021-1,0,4380_7778208_3040409,4380_983 -4380_78155,285,4380_63956,University of Limerick,94199-00009-1,0,4380_7778208_3040411,4380_981 -4380_78155,288,4380_63957,University of Limerick,94195-00011-1,0,4380_7778208_3040411,4380_981 -4380_78155,286,4380_63958,University of Limerick,94201-00010-1,0,4380_7778208_3040411,4380_981 -4380_78155,289,4380_63959,University of Limerick,94197-00014-1,0,4380_7778208_3040411,4380_981 -4380_78142,293,4380_6396,St. Stephen's Green,54133-00017-1,1,4380_7778208_1050108,4380_73 -4380_78155,287,4380_63960,University of Limerick,94203-00012-1,0,4380_7778208_3040411,4380_981 -4380_78155,292,4380_63961,University of Limerick,94202-00016-1,0,4380_7778208_3040411,4380_981 -4380_78155,290,4380_63962,University of Limerick,94200-00015-1,0,4380_7778208_3040411,4380_981 -4380_78155,294,4380_63963,University of Limerick,94204-00018-1,0,4380_7778208_3040411,4380_981 -4380_78155,295,4380_63964,University of Limerick,94198-00019-1,0,4380_7778208_3040411,4380_981 -4380_78155,293,4380_63965,University of Limerick,94196-00017-1,0,4380_7778208_3040411,4380_981 -4380_78155,297,4380_63967,University of Limerick,93345-00008-1,0,4380_7778208_3040406,4380_981 -4380_78155,291,4380_63969,University of Limerick,94205-00013-1,0,4380_7778208_3040411,4380_981 -4380_78142,294,4380_6397,St. Stephen's Green,54132-00018-1,1,4380_7778208_1050108,4380_73 -4380_78155,296,4380_63970,University of Limerick,94206-00021-1,0,4380_7778208_3040411,4380_981 -4380_78155,285,4380_63976,University of Limerick,94609-00009-1,0,4380_7778208_3040413,4380_981 -4380_78155,288,4380_63977,University of Limerick,94607-00011-1,0,4380_7778208_3040413,4380_981 -4380_78155,286,4380_63978,University of Limerick,94611-00010-1,0,4380_7778208_3040413,4380_981 -4380_78155,289,4380_63979,University of Limerick,94605-00014-1,0,4380_7778208_3040413,4380_981 -4380_78142,295,4380_6398,St. Stephen's Green,54130-00019-1,1,4380_7778208_1050108,4380_73 -4380_78155,287,4380_63980,University of Limerick,94613-00012-1,0,4380_7778208_3040413,4380_981 -4380_78155,292,4380_63981,University of Limerick,94612-00016-1,0,4380_7778208_3040413,4380_981 -4380_78155,290,4380_63982,University of Limerick,94610-00015-1,0,4380_7778208_3040413,4380_981 -4380_78155,294,4380_63983,University of Limerick,94614-00018-1,0,4380_7778208_3040413,4380_981 -4380_78155,295,4380_63984,University of Limerick,94606-00019-1,0,4380_7778208_3040413,4380_981 -4380_78155,293,4380_63985,University of Limerick,94608-00017-1,0,4380_7778208_3040413,4380_981 -4380_78155,297,4380_63987,University of Limerick,93517-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,291,4380_63989,University of Limerick,94021-00013-1,0,4380_7778208_3040410,4380_981 -4380_78155,296,4380_63990,University of Limerick,94022-00021-1,0,4380_7778208_3040410,4380_981 -4380_78155,285,4380_63996,University of Limerick,94815-00009-1,0,4380_7778208_3040414,4380_981 -4380_78155,288,4380_63997,University of Limerick,94819-00011-1,0,4380_7778208_3040414,4380_981 -4380_78155,286,4380_63998,University of Limerick,94823-00010-1,0,4380_7778208_3040414,4380_981 -4380_78155,289,4380_63999,University of Limerick,94817-00014-1,0,4380_7778208_3040414,4380_981 -4380_77946,293,4380_64,Dundalk,114784-00017-1,0,4380_7778208_10088802,4380_4 -4380_78155,287,4380_64000,University of Limerick,94821-00012-1,0,4380_7778208_3040414,4380_981 -4380_78155,292,4380_64001,University of Limerick,94824-00016-1,0,4380_7778208_3040414,4380_981 -4380_78155,290,4380_64002,University of Limerick,94816-00015-1,0,4380_7778208_3040414,4380_981 -4380_78155,294,4380_64003,University of Limerick,94822-00018-1,0,4380_7778208_3040414,4380_981 -4380_78155,295,4380_64004,University of Limerick,94818-00019-1,0,4380_7778208_3040414,4380_981 -4380_78155,293,4380_64005,University of Limerick,94820-00017-1,0,4380_7778208_3040414,4380_981 -4380_78155,297,4380_64007,University of Limerick,93187-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,291,4380_64009,University of Limerick,93849-00013-1,0,4380_7778208_3040409,4380_981 -4380_78155,296,4380_64010,University of Limerick,93850-00021-1,0,4380_7778208_3040409,4380_981 -4380_78155,285,4380_64016,University of Limerick,94221-00009-1,0,4380_7778208_3040411,4380_981 -4380_78155,288,4380_64017,University of Limerick,94223-00011-1,0,4380_7778208_3040411,4380_981 -4380_78155,286,4380_64018,University of Limerick,94225-00010-1,0,4380_7778208_3040411,4380_981 -4380_78155,289,4380_64019,University of Limerick,94227-00014-1,0,4380_7778208_3040411,4380_981 -4380_78155,287,4380_64020,University of Limerick,94219-00012-1,0,4380_7778208_3040411,4380_981 -4380_78155,292,4380_64021,University of Limerick,94226-00016-1,0,4380_7778208_3040411,4380_981 -4380_78155,290,4380_64022,University of Limerick,94222-00015-1,0,4380_7778208_3040411,4380_981 -4380_78155,294,4380_64023,University of Limerick,94220-00018-1,0,4380_7778208_3040411,4380_981 -4380_78155,295,4380_64024,University of Limerick,94228-00019-1,0,4380_7778208_3040411,4380_981 -4380_78155,293,4380_64025,University of Limerick,94224-00017-1,0,4380_7778208_3040411,4380_981 -4380_78155,297,4380_64027,University of Limerick,93369-00008-1,0,4380_7778208_3040406,4380_981 -4380_78155,291,4380_64029,University of Limerick,94229-00013-1,0,4380_7778208_3040411,4380_981 -4380_78155,296,4380_64030,University of Limerick,94230-00021-1,0,4380_7778208_3040411,4380_981 -4380_78155,285,4380_64036,University of Limerick,94631-00009-1,0,4380_7778208_3040413,4380_981 -4380_78155,288,4380_64037,University of Limerick,94633-00011-1,0,4380_7778208_3040413,4380_981 -4380_78155,286,4380_64038,University of Limerick,94629-00010-1,0,4380_7778208_3040413,4380_981 -4380_78155,289,4380_64039,University of Limerick,94627-00014-1,0,4380_7778208_3040413,4380_981 -4380_78155,287,4380_64040,University of Limerick,94625-00012-1,0,4380_7778208_3040413,4380_981 -4380_78155,292,4380_64041,University of Limerick,94630-00016-1,0,4380_7778208_3040413,4380_981 -4380_78155,290,4380_64042,University of Limerick,94632-00015-1,0,4380_7778208_3040413,4380_981 -4380_78155,294,4380_64043,University of Limerick,94626-00018-1,0,4380_7778208_3040413,4380_981 -4380_78155,295,4380_64044,University of Limerick,94628-00019-1,0,4380_7778208_3040413,4380_981 -4380_78155,293,4380_64045,University of Limerick,94634-00017-1,0,4380_7778208_3040413,4380_981 -4380_77951,285,4380_6405,Kingscourt,5066-00009-1,0,4380_7778208_1070101,4380_74 -4380_78155,297,4380_64052,University of Limerick,93543-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,285,4380_64053,University of Limerick,94457-00009-1,0,4380_7778208_3040412,4380_984 -4380_78155,288,4380_64054,University of Limerick,94455-00011-1,0,4380_7778208_3040412,4380_984 -4380_78155,286,4380_64055,University of Limerick,94459-00010-1,0,4380_7778208_3040412,4380_984 -4380_78155,289,4380_64056,University of Limerick,94463-00014-1,0,4380_7778208_3040412,4380_984 -4380_78155,287,4380_64057,University of Limerick,94461-00012-1,0,4380_7778208_3040412,4380_984 -4380_78155,292,4380_64058,University of Limerick,94460-00016-1,0,4380_7778208_3040412,4380_984 -4380_78155,290,4380_64059,University of Limerick,94458-00015-1,0,4380_7778208_3040412,4380_984 -4380_77951,286,4380_6406,Kingscourt,5082-00010-1,0,4380_7778208_1070101,4380_74 -4380_78155,294,4380_64060,University of Limerick,94462-00018-1,0,4380_7778208_3040412,4380_984 -4380_78155,295,4380_64061,University of Limerick,94464-00019-1,0,4380_7778208_3040412,4380_984 -4380_78155,293,4380_64062,University of Limerick,94456-00017-1,0,4380_7778208_3040412,4380_984 -4380_78155,291,4380_64064,University of Limerick,94045-00013-1,0,4380_7778208_3040410,4380_981 -4380_78155,296,4380_64065,University of Limerick,94046-00021-1,0,4380_7778208_3040410,4380_981 -4380_77951,288,4380_6407,Kingscourt,5098-00011-1,0,4380_7778208_1070101,4380_74 -4380_78155,285,4380_64071,University of Limerick,94837-00009-1,0,4380_7778208_3040414,4380_981 -4380_78155,288,4380_64072,University of Limerick,94841-00011-1,0,4380_7778208_3040414,4380_981 -4380_78155,286,4380_64073,University of Limerick,94839-00010-1,0,4380_7778208_3040414,4380_981 -4380_78155,289,4380_64074,University of Limerick,94835-00014-1,0,4380_7778208_3040414,4380_981 -4380_78155,287,4380_64075,University of Limerick,94843-00012-1,0,4380_7778208_3040414,4380_981 -4380_78155,292,4380_64076,University of Limerick,94840-00016-1,0,4380_7778208_3040414,4380_981 -4380_78155,290,4380_64077,University of Limerick,94838-00015-1,0,4380_7778208_3040414,4380_981 -4380_78155,294,4380_64078,University of Limerick,94844-00018-1,0,4380_7778208_3040414,4380_981 -4380_78155,295,4380_64079,University of Limerick,94836-00019-1,0,4380_7778208_3040414,4380_981 -4380_77951,287,4380_6408,Kingscourt,5114-00012-1,0,4380_7778208_1070101,4380_74 -4380_78155,293,4380_64080,University of Limerick,94842-00017-1,0,4380_7778208_3040414,4380_981 -4380_78155,297,4380_64082,University of Limerick,93203-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,291,4380_64084,University of Limerick,93863-00013-1,0,4380_7778208_3040409,4380_981 -4380_78155,296,4380_64085,University of Limerick,93864-00021-1,0,4380_7778208_3040409,4380_981 -4380_77951,289,4380_6409,Kingscourt,5042-00014-1,0,4380_7778208_1070101,4380_74 -4380_78155,285,4380_64091,University of Limerick,94249-00009-1,0,4380_7778208_3040411,4380_981 -4380_78155,288,4380_64092,University of Limerick,94245-00011-1,0,4380_7778208_3040411,4380_981 -4380_78155,286,4380_64093,University of Limerick,94243-00010-1,0,4380_7778208_3040411,4380_981 -4380_78155,289,4380_64094,University of Limerick,94251-00014-1,0,4380_7778208_3040411,4380_981 -4380_78155,287,4380_64095,University of Limerick,94247-00012-1,0,4380_7778208_3040411,4380_981 -4380_78155,292,4380_64096,University of Limerick,94244-00016-1,0,4380_7778208_3040411,4380_981 -4380_78155,290,4380_64097,University of Limerick,94250-00015-1,0,4380_7778208_3040411,4380_981 -4380_78155,294,4380_64098,University of Limerick,94248-00018-1,0,4380_7778208_3040411,4380_981 -4380_78155,295,4380_64099,University of Limerick,94252-00019-1,0,4380_7778208_3040411,4380_981 -4380_77951,290,4380_6410,Kingscourt,54557-00015-1,0,4380_7778208_1070101,4380_74 -4380_78155,293,4380_64100,University of Limerick,94246-00017-1,0,4380_7778208_3040411,4380_981 -4380_78155,297,4380_64102,University of Limerick,93385-00008-1,0,4380_7778208_3040406,4380_981 -4380_78155,291,4380_64104,University of Limerick,94253-00013-1,0,4380_7778208_3040411,4380_981 -4380_78155,296,4380_64105,University of Limerick,94254-00021-1,0,4380_7778208_3040411,4380_981 -4380_77951,291,4380_6411,Kingscourt,5130-00013-1,0,4380_7778208_1070101,4380_76 -4380_78155,285,4380_64111,University of Limerick,94483-00009-1,0,4380_7778208_3040412,4380_981 -4380_78155,288,4380_64112,University of Limerick,94481-00011-1,0,4380_7778208_3040412,4380_981 -4380_78155,286,4380_64113,University of Limerick,94477-00010-1,0,4380_7778208_3040412,4380_981 -4380_78155,289,4380_64114,University of Limerick,94479-00014-1,0,4380_7778208_3040412,4380_981 -4380_78155,287,4380_64115,University of Limerick,94475-00012-1,0,4380_7778208_3040412,4380_981 -4380_78155,292,4380_64116,University of Limerick,94478-00016-1,0,4380_7778208_3040412,4380_981 -4380_78155,290,4380_64117,University of Limerick,94484-00015-1,0,4380_7778208_3040412,4380_981 -4380_78155,294,4380_64118,University of Limerick,94476-00018-1,0,4380_7778208_3040412,4380_981 -4380_78155,295,4380_64119,University of Limerick,94480-00019-1,0,4380_7778208_3040412,4380_981 -4380_77951,292,4380_6412,Kingscourt,54554-00016-1,0,4380_7778208_1070101,4380_74 -4380_78155,293,4380_64120,University of Limerick,94482-00017-1,0,4380_7778208_3040412,4380_981 -4380_78155,297,4380_64127,University of Limerick,93557-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,285,4380_64128,University of Limerick,94645-00009-1,0,4380_7778208_3040413,4380_983 -4380_78155,288,4380_64129,University of Limerick,94649-00011-1,0,4380_7778208_3040413,4380_983 -4380_77951,293,4380_6413,Kingscourt,54556-00017-1,0,4380_7778208_1070101,4380_74 -4380_78155,286,4380_64130,University of Limerick,94651-00010-1,0,4380_7778208_3040413,4380_983 -4380_78155,289,4380_64131,University of Limerick,94647-00014-1,0,4380_7778208_3040413,4380_983 -4380_78155,287,4380_64132,University of Limerick,94653-00012-1,0,4380_7778208_3040413,4380_983 -4380_78155,292,4380_64133,University of Limerick,94652-00016-1,0,4380_7778208_3040413,4380_983 -4380_78155,290,4380_64134,University of Limerick,94646-00015-1,0,4380_7778208_3040413,4380_983 -4380_78155,294,4380_64135,University of Limerick,94654-00018-1,0,4380_7778208_3040413,4380_983 -4380_78155,295,4380_64136,University of Limerick,94648-00019-1,0,4380_7778208_3040413,4380_983 -4380_78155,293,4380_64137,University of Limerick,94650-00017-1,0,4380_7778208_3040413,4380_983 -4380_78155,291,4380_64139,University of Limerick,94059-00013-1,0,4380_7778208_3040410,4380_981 -4380_77951,294,4380_6414,Kingscourt,54558-00018-1,0,4380_7778208_1070101,4380_74 -4380_78155,296,4380_64140,University of Limerick,94060-00021-1,0,4380_7778208_3040410,4380_981 -4380_78155,297,4380_64147,University of Limerick,93217-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,285,4380_64148,University of Limerick,94861-00009-1,0,4380_7778208_3040414,4380_983 -4380_78155,288,4380_64149,University of Limerick,94857-00011-1,0,4380_7778208_3040414,4380_983 -4380_77951,295,4380_6415,Kingscourt,54555-00019-1,0,4380_7778208_1070101,4380_74 -4380_78155,286,4380_64150,University of Limerick,94863-00010-1,0,4380_7778208_3040414,4380_983 -4380_78155,289,4380_64151,University of Limerick,94859-00014-1,0,4380_7778208_3040414,4380_983 -4380_78155,287,4380_64152,University of Limerick,94855-00012-1,0,4380_7778208_3040414,4380_983 -4380_78155,292,4380_64153,University of Limerick,94864-00016-1,0,4380_7778208_3040414,4380_983 -4380_78155,290,4380_64154,University of Limerick,94862-00015-1,0,4380_7778208_3040414,4380_983 -4380_78155,294,4380_64155,University of Limerick,94856-00018-1,0,4380_7778208_3040414,4380_983 -4380_78155,295,4380_64156,University of Limerick,94860-00019-1,0,4380_7778208_3040414,4380_983 -4380_78155,293,4380_64157,University of Limerick,94858-00017-1,0,4380_7778208_3040414,4380_983 -4380_78155,291,4380_64159,University of Limerick,93887-00013-1,0,4380_7778208_3040409,4380_981 -4380_77951,296,4380_6416,Kingscourt,54553-00021-1,0,4380_7778208_1070101,4380_76 -4380_78155,296,4380_64160,University of Limerick,93888-00021-1,0,4380_7778208_3040409,4380_981 -4380_78155,297,4380_64167,University of Limerick,93399-00008-1,0,4380_7778208_3040406,4380_981 -4380_78155,285,4380_64168,University of Limerick,94271-00009-1,0,4380_7778208_3040411,4380_983 -4380_78155,288,4380_64169,University of Limerick,94267-00011-1,0,4380_7778208_3040411,4380_983 -4380_78155,286,4380_64170,University of Limerick,94273-00010-1,0,4380_7778208_3040411,4380_983 -4380_78155,289,4380_64171,University of Limerick,94269-00014-1,0,4380_7778208_3040411,4380_983 -4380_78155,287,4380_64172,University of Limerick,94275-00012-1,0,4380_7778208_3040411,4380_983 -4380_78155,292,4380_64173,University of Limerick,94274-00016-1,0,4380_7778208_3040411,4380_983 -4380_78155,290,4380_64174,University of Limerick,94272-00015-1,0,4380_7778208_3040411,4380_983 -4380_78155,294,4380_64175,University of Limerick,94276-00018-1,0,4380_7778208_3040411,4380_983 -4380_78155,295,4380_64176,University of Limerick,94270-00019-1,0,4380_7778208_3040411,4380_983 -4380_78155,293,4380_64177,University of Limerick,94268-00017-1,0,4380_7778208_3040411,4380_983 -4380_78155,291,4380_64179,University of Limerick,94277-00013-1,0,4380_7778208_3040411,4380_981 -4380_78155,296,4380_64180,University of Limerick,94278-00021-1,0,4380_7778208_3040411,4380_981 -4380_78155,297,4380_64187,University of Limerick,93583-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,285,4380_64188,University of Limerick,94501-00009-1,0,4380_7778208_3040412,4380_983 -4380_78155,288,4380_64189,University of Limerick,94499-00011-1,0,4380_7778208_3040412,4380_983 -4380_78155,286,4380_64190,University of Limerick,94503-00010-1,0,4380_7778208_3040412,4380_983 -4380_78155,289,4380_64191,University of Limerick,94495-00014-1,0,4380_7778208_3040412,4380_983 -4380_78155,287,4380_64192,University of Limerick,94497-00012-1,0,4380_7778208_3040412,4380_983 -4380_78155,292,4380_64193,University of Limerick,94504-00016-1,0,4380_7778208_3040412,4380_983 -4380_78155,290,4380_64194,University of Limerick,94502-00015-1,0,4380_7778208_3040412,4380_983 -4380_78155,294,4380_64195,University of Limerick,94498-00018-1,0,4380_7778208_3040412,4380_983 -4380_78155,295,4380_64196,University of Limerick,94496-00019-1,0,4380_7778208_3040412,4380_983 -4380_78155,293,4380_64197,University of Limerick,94500-00017-1,0,4380_7778208_3040412,4380_983 -4380_78155,291,4380_64199,University of Limerick,94073-00013-1,0,4380_7778208_3040410,4380_981 -4380_78113,285,4380_642,Dundalk,50166-00009-1,0,4380_7778208_1000908,4380_10 -4380_78155,296,4380_64200,University of Limerick,94074-00021-1,0,4380_7778208_3040410,4380_981 -4380_78155,285,4380_64206,University of Limerick,94671-00009-1,0,4380_7778208_3040413,4380_981 -4380_78155,288,4380_64207,University of Limerick,94665-00011-1,0,4380_7778208_3040413,4380_981 -4380_78155,286,4380_64208,University of Limerick,94667-00010-1,0,4380_7778208_3040413,4380_981 -4380_78155,289,4380_64209,University of Limerick,94669-00014-1,0,4380_7778208_3040413,4380_981 -4380_78155,287,4380_64210,University of Limerick,94673-00012-1,0,4380_7778208_3040413,4380_981 -4380_78155,292,4380_64211,University of Limerick,94668-00016-1,0,4380_7778208_3040413,4380_981 -4380_78155,290,4380_64212,University of Limerick,94672-00015-1,0,4380_7778208_3040413,4380_981 -4380_78155,294,4380_64213,University of Limerick,94674-00018-1,0,4380_7778208_3040413,4380_981 -4380_78155,295,4380_64214,University of Limerick,94670-00019-1,0,4380_7778208_3040413,4380_981 -4380_78155,293,4380_64215,University of Limerick,94666-00017-1,0,4380_7778208_3040413,4380_981 -4380_78155,297,4380_64217,University of Limerick,93243-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,291,4380_64219,University of Limerick,93901-00013-1,0,4380_7778208_3040409,4380_981 -4380_78155,296,4380_64220,University of Limerick,93902-00021-1,0,4380_7778208_3040409,4380_981 -4380_78155,285,4380_64226,University of Limerick,94877-00009-1,0,4380_7778208_3040414,4380_981 -4380_78155,288,4380_64227,University of Limerick,94881-00011-1,0,4380_7778208_3040414,4380_981 -4380_78155,286,4380_64228,University of Limerick,94883-00010-1,0,4380_7778208_3040414,4380_981 -4380_78155,289,4380_64229,University of Limerick,94879-00014-1,0,4380_7778208_3040414,4380_981 -4380_77951,285,4380_6423,Kingscourt,5068-00009-1,0,4380_7778208_1070101,4380_74 -4380_78155,287,4380_64230,University of Limerick,94875-00012-1,0,4380_7778208_3040414,4380_981 -4380_78155,292,4380_64231,University of Limerick,94884-00016-1,0,4380_7778208_3040414,4380_981 -4380_78155,290,4380_64232,University of Limerick,94878-00015-1,0,4380_7778208_3040414,4380_981 -4380_78155,294,4380_64233,University of Limerick,94876-00018-1,0,4380_7778208_3040414,4380_981 -4380_78155,295,4380_64234,University of Limerick,94880-00019-1,0,4380_7778208_3040414,4380_981 -4380_78155,293,4380_64235,University of Limerick,94882-00017-1,0,4380_7778208_3040414,4380_981 -4380_78155,297,4380_64237,University of Limerick,93425-00008-1,0,4380_7778208_3040406,4380_981 -4380_78155,291,4380_64239,University of Limerick,94291-00013-1,0,4380_7778208_3040411,4380_981 -4380_77951,286,4380_6424,Kingscourt,5084-00010-1,0,4380_7778208_1070101,4380_74 -4380_78155,296,4380_64240,University of Limerick,94292-00021-1,0,4380_7778208_3040411,4380_981 -4380_78155,285,4380_64246,University of Limerick,94299-00009-1,0,4380_7778208_3040411,4380_981 -4380_78155,288,4380_64247,University of Limerick,94295-00011-1,0,4380_7778208_3040411,4380_981 -4380_78155,286,4380_64248,University of Limerick,94297-00010-1,0,4380_7778208_3040411,4380_981 -4380_78155,289,4380_64249,University of Limerick,94293-00014-1,0,4380_7778208_3040411,4380_981 -4380_77951,288,4380_6425,Kingscourt,5100-00011-1,0,4380_7778208_1070101,4380_74 -4380_78155,287,4380_64250,University of Limerick,94301-00012-1,0,4380_7778208_3040411,4380_981 -4380_78155,292,4380_64251,University of Limerick,94298-00016-1,0,4380_7778208_3040411,4380_981 -4380_78155,290,4380_64252,University of Limerick,94300-00015-1,0,4380_7778208_3040411,4380_981 -4380_78155,294,4380_64253,University of Limerick,94302-00018-1,0,4380_7778208_3040411,4380_981 -4380_78155,295,4380_64254,University of Limerick,94294-00019-1,0,4380_7778208_3040411,4380_981 -4380_78155,293,4380_64255,University of Limerick,94296-00017-1,0,4380_7778208_3040411,4380_981 -4380_78155,297,4380_64257,University of Limerick,93597-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,291,4380_64259,University of Limerick,94087-00013-1,0,4380_7778208_3040410,4380_981 -4380_77951,287,4380_6426,Kingscourt,5116-00012-1,0,4380_7778208_1070101,4380_74 -4380_78155,296,4380_64260,University of Limerick,94088-00021-1,0,4380_7778208_3040410,4380_981 -4380_78155,285,4380_64266,University of Limerick,94515-00009-1,0,4380_7778208_3040412,4380_981 -4380_78155,288,4380_64267,University of Limerick,94519-00011-1,0,4380_7778208_3040412,4380_981 -4380_78155,286,4380_64268,University of Limerick,94517-00010-1,0,4380_7778208_3040412,4380_981 -4380_78155,289,4380_64269,University of Limerick,94523-00014-1,0,4380_7778208_3040412,4380_981 -4380_77951,289,4380_6427,Kingscourt,5044-00014-1,0,4380_7778208_1070101,4380_74 -4380_78155,287,4380_64270,University of Limerick,94521-00012-1,0,4380_7778208_3040412,4380_981 -4380_78155,292,4380_64271,University of Limerick,94518-00016-1,0,4380_7778208_3040412,4380_981 -4380_78155,290,4380_64272,University of Limerick,94516-00015-1,0,4380_7778208_3040412,4380_981 -4380_78155,294,4380_64273,University of Limerick,94522-00018-1,0,4380_7778208_3040412,4380_981 -4380_78155,295,4380_64274,University of Limerick,94524-00019-1,0,4380_7778208_3040412,4380_981 -4380_78155,293,4380_64275,University of Limerick,94520-00017-1,0,4380_7778208_3040412,4380_981 -4380_78155,297,4380_64277,University of Limerick,93257-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,291,4380_64279,University of Limerick,93915-00013-1,0,4380_7778208_3040409,4380_981 -4380_77951,290,4380_6428,Kingscourt,54569-00015-1,0,4380_7778208_1070101,4380_74 -4380_78155,296,4380_64280,University of Limerick,93916-00021-1,0,4380_7778208_3040409,4380_981 -4380_78155,285,4380_64286,University of Limerick,94687-00009-1,0,4380_7778208_3040413,4380_981 -4380_78155,288,4380_64287,University of Limerick,94685-00011-1,0,4380_7778208_3040413,4380_981 -4380_78155,286,4380_64288,University of Limerick,94693-00010-1,0,4380_7778208_3040413,4380_981 -4380_78155,289,4380_64289,University of Limerick,94691-00014-1,0,4380_7778208_3040413,4380_981 -4380_77951,291,4380_6429,Kingscourt,5132-00013-1,0,4380_7778208_1070101,4380_76 -4380_78155,287,4380_64290,University of Limerick,94689-00012-1,0,4380_7778208_3040413,4380_981 -4380_78155,292,4380_64291,University of Limerick,94694-00016-1,0,4380_7778208_3040413,4380_981 -4380_78155,290,4380_64292,University of Limerick,94688-00015-1,0,4380_7778208_3040413,4380_981 -4380_78155,294,4380_64293,University of Limerick,94690-00018-1,0,4380_7778208_3040413,4380_981 -4380_78155,295,4380_64294,University of Limerick,94692-00019-1,0,4380_7778208_3040413,4380_981 -4380_78155,293,4380_64295,University of Limerick,94686-00017-1,0,4380_7778208_3040413,4380_981 -4380_78155,297,4380_64297,University of Limerick,93439-00008-1,0,4380_7778208_3040406,4380_981 -4380_78113,286,4380_643,Dundalk,50158-00010-1,0,4380_7778208_1000908,4380_10 -4380_77951,292,4380_6430,Kingscourt,54570-00016-1,0,4380_7778208_1070101,4380_74 -4380_78155,285,4380_64303,University of Limerick,94895-00009-1,0,4380_7778208_3040414,4380_981 -4380_78155,288,4380_64305,University of Limerick,94901-00011-1,0,4380_7778208_3040414,4380_981 -4380_78155,286,4380_64306,University of Limerick,94897-00010-1,0,4380_7778208_3040414,4380_981 -4380_78155,291,4380_64307,University of Limerick,94315-00013-1,0,4380_7778208_3040411,4380_983 -4380_78155,289,4380_64308,University of Limerick,94899-00014-1,0,4380_7778208_3040414,4380_981 -4380_78155,287,4380_64309,University of Limerick,94903-00012-1,0,4380_7778208_3040414,4380_981 -4380_77951,293,4380_6431,Kingscourt,54567-00017-1,0,4380_7778208_1070101,4380_74 -4380_78155,292,4380_64310,University of Limerick,94898-00016-1,0,4380_7778208_3040414,4380_981 -4380_78155,290,4380_64311,University of Limerick,94896-00015-1,0,4380_7778208_3040414,4380_981 -4380_78155,294,4380_64312,University of Limerick,94904-00018-1,0,4380_7778208_3040414,4380_981 -4380_78155,295,4380_64313,University of Limerick,94900-00019-1,0,4380_7778208_3040414,4380_981 -4380_78155,293,4380_64314,University of Limerick,94902-00017-1,0,4380_7778208_3040414,4380_981 -4380_78155,296,4380_64315,University of Limerick,94316-00021-1,0,4380_7778208_3040411,4380_983 -4380_77951,294,4380_6432,Kingscourt,54568-00018-1,0,4380_7778208_1070101,4380_74 -4380_78155,297,4380_64322,University of Limerick,93613-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,285,4380_64323,University of Limerick,94325-00009-1,0,4380_7778208_3040411,4380_983 -4380_78155,288,4380_64324,University of Limerick,94317-00011-1,0,4380_7778208_3040411,4380_983 -4380_78155,286,4380_64325,University of Limerick,94321-00010-1,0,4380_7778208_3040411,4380_983 -4380_78155,289,4380_64326,University of Limerick,94323-00014-1,0,4380_7778208_3040411,4380_983 -4380_78155,287,4380_64327,University of Limerick,94319-00012-1,0,4380_7778208_3040411,4380_983 -4380_78155,292,4380_64328,University of Limerick,94322-00016-1,0,4380_7778208_3040411,4380_983 -4380_78155,290,4380_64329,University of Limerick,94326-00015-1,0,4380_7778208_3040411,4380_983 -4380_77951,295,4380_6433,Kingscourt,54565-00019-1,0,4380_7778208_1070101,4380_74 -4380_78155,294,4380_64330,University of Limerick,94320-00018-1,0,4380_7778208_3040411,4380_983 -4380_78155,295,4380_64331,University of Limerick,94324-00019-1,0,4380_7778208_3040411,4380_983 -4380_78155,293,4380_64332,University of Limerick,94318-00017-1,0,4380_7778208_3040411,4380_983 -4380_78155,291,4380_64334,University of Limerick,94111-00013-1,0,4380_7778208_3040410,4380_981 -4380_78155,296,4380_64335,University of Limerick,94112-00021-1,0,4380_7778208_3040410,4380_981 -4380_77951,296,4380_6434,Kingscourt,54566-00021-1,0,4380_7778208_1070101,4380_76 -4380_78155,297,4380_64342,University of Limerick,93273-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,285,4380_64343,University of Limerick,93921-00009-1,0,4380_7778208_3040409,4380_983 -4380_78155,288,4380_64344,University of Limerick,93925-00011-1,0,4380_7778208_3040409,4380_983 -4380_78155,286,4380_64345,University of Limerick,93919-00010-1,0,4380_7778208_3040409,4380_983 -4380_78155,289,4380_64346,University of Limerick,93927-00014-1,0,4380_7778208_3040409,4380_983 -4380_78155,287,4380_64347,University of Limerick,93923-00012-1,0,4380_7778208_3040409,4380_983 -4380_78155,292,4380_64348,University of Limerick,93920-00016-1,0,4380_7778208_3040409,4380_983 -4380_78155,290,4380_64349,University of Limerick,93922-00015-1,0,4380_7778208_3040409,4380_983 -4380_78155,294,4380_64350,University of Limerick,93924-00018-1,0,4380_7778208_3040409,4380_983 -4380_78155,295,4380_64351,University of Limerick,93928-00019-1,0,4380_7778208_3040409,4380_983 -4380_78155,293,4380_64352,University of Limerick,93926-00017-1,0,4380_7778208_3040409,4380_983 -4380_78155,291,4380_64354,University of Limerick,93929-00013-1,0,4380_7778208_3040409,4380_981 -4380_78155,296,4380_64355,University of Limerick,93930-00021-1,0,4380_7778208_3040409,4380_981 -4380_77951,297,4380_6436,Kells,5137-00008-1,0,4380_7778208_1070101,4380_75 -4380_78155,297,4380_64362,University of Limerick,93453-00008-1,0,4380_7778208_3040406,4380_981 -4380_78155,285,4380_64363,University of Limerick,94919-00009-1,0,4380_7778208_3040414,4380_983 -4380_78155,288,4380_64364,University of Limerick,94923-00011-1,0,4380_7778208_3040414,4380_983 -4380_78155,286,4380_64365,University of Limerick,94915-00010-1,0,4380_7778208_3040414,4380_983 -4380_78155,289,4380_64366,University of Limerick,94921-00014-1,0,4380_7778208_3040414,4380_983 -4380_78155,287,4380_64367,University of Limerick,94917-00012-1,0,4380_7778208_3040414,4380_983 -4380_78155,292,4380_64368,University of Limerick,94916-00016-1,0,4380_7778208_3040414,4380_983 -4380_78155,290,4380_64369,University of Limerick,94920-00015-1,0,4380_7778208_3040414,4380_983 -4380_78155,294,4380_64370,University of Limerick,94918-00018-1,0,4380_7778208_3040414,4380_983 -4380_78155,295,4380_64371,University of Limerick,94922-00019-1,0,4380_7778208_3040414,4380_983 -4380_78155,293,4380_64372,University of Limerick,94924-00017-1,0,4380_7778208_3040414,4380_983 -4380_78155,291,4380_64374,University of Limerick,94339-00013-1,0,4380_7778208_3040411,4380_981 -4380_78155,296,4380_64375,University of Limerick,94340-00021-1,0,4380_7778208_3040411,4380_981 -4380_78155,297,4380_64382,University of Limerick,93637-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,285,4380_64383,University of Limerick,94343-00009-1,0,4380_7778208_3040411,4380_983 -4380_78155,288,4380_64384,University of Limerick,94345-00011-1,0,4380_7778208_3040411,4380_983 -4380_78155,286,4380_64385,University of Limerick,94341-00010-1,0,4380_7778208_3040411,4380_983 -4380_78155,289,4380_64386,University of Limerick,94347-00014-1,0,4380_7778208_3040411,4380_983 -4380_78155,287,4380_64387,University of Limerick,94349-00012-1,0,4380_7778208_3040411,4380_983 -4380_78155,292,4380_64388,University of Limerick,94342-00016-1,0,4380_7778208_3040411,4380_983 -4380_78155,290,4380_64389,University of Limerick,94344-00015-1,0,4380_7778208_3040411,4380_983 -4380_78155,294,4380_64390,University of Limerick,94350-00018-1,0,4380_7778208_3040411,4380_983 -4380_78155,295,4380_64391,University of Limerick,94348-00019-1,0,4380_7778208_3040411,4380_983 -4380_78155,293,4380_64392,University of Limerick,94346-00017-1,0,4380_7778208_3040411,4380_983 -4380_78155,291,4380_64394,University of Limerick,94125-00013-1,0,4380_7778208_3040410,4380_981 -4380_78155,296,4380_64395,University of Limerick,94126-00021-1,0,4380_7778208_3040410,4380_981 -4380_78113,287,4380_644,Dundalk,50162-00012-1,0,4380_7778208_1000908,4380_10 -4380_78155,297,4380_64402,University of Limerick,93275-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,285,4380_64403,University of Limerick,93951-00009-1,0,4380_7778208_3040409,4380_983 -4380_78155,288,4380_64404,University of Limerick,93945-00011-1,0,4380_7778208_3040409,4380_983 -4380_78155,286,4380_64405,University of Limerick,93943-00010-1,0,4380_7778208_3040409,4380_983 -4380_78155,289,4380_64406,University of Limerick,93949-00014-1,0,4380_7778208_3040409,4380_983 -4380_78155,287,4380_64407,University of Limerick,93947-00012-1,0,4380_7778208_3040409,4380_983 -4380_78155,292,4380_64408,University of Limerick,93944-00016-1,0,4380_7778208_3040409,4380_983 -4380_78155,290,4380_64409,University of Limerick,93952-00015-1,0,4380_7778208_3040409,4380_983 -4380_78155,294,4380_64410,University of Limerick,93948-00018-1,0,4380_7778208_3040409,4380_983 -4380_78155,295,4380_64411,University of Limerick,93950-00019-1,0,4380_7778208_3040409,4380_983 -4380_78155,293,4380_64412,University of Limerick,93946-00017-1,0,4380_7778208_3040409,4380_983 -4380_78155,291,4380_64414,University of Limerick,94363-00013-1,0,4380_7778208_3040411,4380_981 -4380_78155,296,4380_64415,University of Limerick,94364-00021-1,0,4380_7778208_3040411,4380_981 -4380_78155,297,4380_64422,University of Limerick,93455-00008-1,0,4380_7778208_3040406,4380_981 -4380_78155,285,4380_64423,University of Limerick,94713-00009-1,0,4380_7778208_3040413,4380_983 -4380_78155,288,4380_64424,University of Limerick,94709-00011-1,0,4380_7778208_3040413,4380_983 -4380_78155,286,4380_64425,University of Limerick,94705-00010-1,0,4380_7778208_3040413,4380_983 -4380_78155,289,4380_64426,University of Limerick,94711-00014-1,0,4380_7778208_3040413,4380_983 -4380_78155,287,4380_64427,University of Limerick,94707-00012-1,0,4380_7778208_3040413,4380_983 -4380_78155,292,4380_64428,University of Limerick,94706-00016-1,0,4380_7778208_3040413,4380_983 -4380_78155,290,4380_64429,University of Limerick,94714-00015-1,0,4380_7778208_3040413,4380_983 -4380_77951,285,4380_6443,Kingscourt,5070-00009-1,0,4380_7778208_1070101,4380_74 -4380_78155,294,4380_64430,University of Limerick,94708-00018-1,0,4380_7778208_3040413,4380_983 -4380_78155,295,4380_64431,University of Limerick,94712-00019-1,0,4380_7778208_3040413,4380_983 -4380_78155,293,4380_64432,University of Limerick,94710-00017-1,0,4380_7778208_3040413,4380_983 -4380_78155,291,4380_64434,University of Limerick,94129-00013-1,0,4380_7778208_3040410,4380_981 -4380_78155,296,4380_64435,University of Limerick,94130-00021-1,0,4380_7778208_3040410,4380_981 -4380_77951,286,4380_6444,Kingscourt,5086-00010-1,0,4380_7778208_1070101,4380_74 -4380_78155,297,4380_64442,University of Limerick,93665-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,285,4380_64443,University of Limerick,94371-00009-1,0,4380_7778208_3040411,4380_983 -4380_78155,288,4380_64444,University of Limerick,94373-00011-1,0,4380_7778208_3040411,4380_983 -4380_78155,286,4380_64445,University of Limerick,94369-00010-1,0,4380_7778208_3040411,4380_983 -4380_78155,289,4380_64446,University of Limerick,94367-00014-1,0,4380_7778208_3040411,4380_983 -4380_78155,287,4380_64447,University of Limerick,94375-00012-1,0,4380_7778208_3040411,4380_983 -4380_78155,292,4380_64448,University of Limerick,94370-00016-1,0,4380_7778208_3040411,4380_983 -4380_78155,290,4380_64449,University of Limerick,94372-00015-1,0,4380_7778208_3040411,4380_983 -4380_77951,288,4380_6445,Kingscourt,5102-00011-1,0,4380_7778208_1070101,4380_74 -4380_78155,294,4380_64450,University of Limerick,94376-00018-1,0,4380_7778208_3040411,4380_983 -4380_78155,295,4380_64451,University of Limerick,94368-00019-1,0,4380_7778208_3040411,4380_983 -4380_78155,293,4380_64452,University of Limerick,94374-00017-1,0,4380_7778208_3040411,4380_983 -4380_78155,291,4380_64454,University of Limerick,94377-00013-1,0,4380_7778208_3040411,4380_981 -4380_78155,296,4380_64455,University of Limerick,94378-00021-1,0,4380_7778208_3040411,4380_981 -4380_77951,287,4380_6446,Kingscourt,5118-00012-1,0,4380_7778208_1070101,4380_74 -4380_78155,297,4380_64462,University of Limerick,93277-00008-1,0,4380_7778208_3040405,4380_981 -4380_78155,285,4380_64463,University of Limerick,94733-00009-1,0,4380_7778208_3040413,4380_983 -4380_78155,288,4380_64464,University of Limerick,94729-00011-1,0,4380_7778208_3040413,4380_983 -4380_78155,286,4380_64465,University of Limerick,94731-00010-1,0,4380_7778208_3040413,4380_983 -4380_78155,289,4380_64466,University of Limerick,94725-00014-1,0,4380_7778208_3040413,4380_983 -4380_78155,287,4380_64467,University of Limerick,94727-00012-1,0,4380_7778208_3040413,4380_983 -4380_78155,292,4380_64468,University of Limerick,94732-00016-1,0,4380_7778208_3040413,4380_983 -4380_78155,290,4380_64469,University of Limerick,94734-00015-1,0,4380_7778208_3040413,4380_983 -4380_77951,289,4380_6447,Kingscourt,5046-00014-1,0,4380_7778208_1070101,4380_74 -4380_78155,294,4380_64470,University of Limerick,94728-00018-1,0,4380_7778208_3040413,4380_983 -4380_78155,295,4380_64471,University of Limerick,94726-00019-1,0,4380_7778208_3040413,4380_983 -4380_78155,293,4380_64472,University of Limerick,94730-00017-1,0,4380_7778208_3040413,4380_983 -4380_78155,291,4380_64474,University of Limerick,94133-00013-1,0,4380_7778208_3040410,4380_981 -4380_78155,296,4380_64475,University of Limerick,94134-00021-1,0,4380_7778208_3040410,4380_981 -4380_77951,290,4380_6448,Kingscourt,54582-00015-1,0,4380_7778208_1070101,4380_74 -4380_78155,297,4380_64482,University of Limerick,93679-00008-1,0,4380_7778208_3040407,4380_981 -4380_78155,285,4380_64483,University of Limerick,94391-00009-1,0,4380_7778208_3040411,4380_983 -4380_78155,288,4380_64484,University of Limerick,94397-00011-1,0,4380_7778208_3040411,4380_983 -4380_78155,286,4380_64485,University of Limerick,94399-00010-1,0,4380_7778208_3040411,4380_983 -4380_78155,289,4380_64486,University of Limerick,94393-00014-1,0,4380_7778208_3040411,4380_983 -4380_78155,287,4380_64487,University of Limerick,94395-00012-1,0,4380_7778208_3040411,4380_983 -4380_78155,292,4380_64488,University of Limerick,94400-00016-1,0,4380_7778208_3040411,4380_983 -4380_78155,290,4380_64489,University of Limerick,94392-00015-1,0,4380_7778208_3040411,4380_983 -4380_77951,291,4380_6449,Kingscourt,5134-00013-1,0,4380_7778208_1070101,4380_76 -4380_78155,294,4380_64490,University of Limerick,94396-00018-1,0,4380_7778208_3040411,4380_983 -4380_78155,295,4380_64491,University of Limerick,94394-00019-1,0,4380_7778208_3040411,4380_983 -4380_78155,293,4380_64492,University of Limerick,94398-00017-1,0,4380_7778208_3040411,4380_983 -4380_78155,291,4380_64494,University of Limerick,94401-00013-1,0,4380_7778208_3040411,4380_981 -4380_78155,296,4380_64495,University of Limerick,94402-00021-1,0,4380_7778208_3040411,4380_981 -4380_78113,288,4380_645,Dundalk,50160-00011-1,0,4380_7778208_1000908,4380_10 -4380_77951,292,4380_6450,Kingscourt,54579-00016-1,0,4380_7778208_1070101,4380_74 -4380_78155,297,4380_64502,Monaleen,93279-00008-1,0,4380_7778208_3040405,4380_982 -4380_78155,285,4380_64503,Monaleen,94747-00009-1,0,4380_7778208_3040413,4380_985 -4380_78155,288,4380_64504,Monaleen,94749-00011-1,0,4380_7778208_3040413,4380_985 -4380_78155,286,4380_64505,Monaleen,94753-00010-1,0,4380_7778208_3040413,4380_985 -4380_78155,289,4380_64506,Monaleen,94745-00014-1,0,4380_7778208_3040413,4380_985 -4380_78155,287,4380_64507,Monaleen,94751-00012-1,0,4380_7778208_3040413,4380_985 -4380_78155,292,4380_64508,Monaleen,94754-00016-1,0,4380_7778208_3040413,4380_985 -4380_78155,290,4380_64509,Monaleen,94748-00015-1,0,4380_7778208_3040413,4380_985 -4380_77951,293,4380_6451,Kingscourt,54581-00017-1,0,4380_7778208_1070101,4380_74 -4380_78155,294,4380_64510,Monaleen,94752-00018-1,0,4380_7778208_3040413,4380_985 -4380_78155,295,4380_64511,Monaleen,94746-00019-1,0,4380_7778208_3040413,4380_985 -4380_78155,293,4380_64512,Monaleen,94750-00017-1,0,4380_7778208_3040413,4380_985 -4380_78155,291,4380_64514,Monaleen,94137-00013-1,0,4380_7778208_3040410,4380_982 -4380_78155,296,4380_64515,Monaleen,94138-00021-1,0,4380_7778208_3040410,4380_982 -4380_77951,294,4380_6452,Kingscourt,54577-00018-1,0,4380_7778208_1070101,4380_74 -4380_78155,285,4380_64526,Raheen,94145-00009-1,1,4380_7778208_3040411,4380_988 -4380_78155,285,4380_64527,Raheen,94539-00009-1,1,4380_7778208_3040413,4380_987 -4380_78155,288,4380_64528,Raheen,94143-00011-1,1,4380_7778208_3040411,4380_988 -4380_78155,288,4380_64529,Raheen,94541-00011-1,1,4380_7778208_3040413,4380_987 -4380_77951,295,4380_6453,Kingscourt,54580-00019-1,0,4380_7778208_1070101,4380_74 -4380_78155,286,4380_64530,Raheen,94147-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,286,4380_64531,Raheen,94535-00010-1,1,4380_7778208_3040413,4380_987 -4380_78155,289,4380_64532,Raheen,94139-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_64533,Raheen,94537-00014-1,1,4380_7778208_3040413,4380_987 -4380_78155,287,4380_64534,Raheen,94141-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_64535,Raheen,94543-00012-1,1,4380_7778208_3040413,4380_987 -4380_78155,292,4380_64536,Raheen,94148-00016-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_64537,Raheen,94536-00016-1,1,4380_7778208_3040413,4380_987 -4380_78155,290,4380_64538,Raheen,94146-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,290,4380_64539,Raheen,94540-00015-1,1,4380_7778208_3040413,4380_987 -4380_77951,296,4380_6454,Kingscourt,54578-00021-1,0,4380_7778208_1070101,4380_76 -4380_78155,294,4380_64540,Raheen,94142-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_64541,Raheen,94544-00018-1,1,4380_7778208_3040413,4380_987 -4380_78155,295,4380_64542,Raheen,94140-00019-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_64543,Raheen,94538-00019-1,1,4380_7778208_3040413,4380_987 -4380_78155,293,4380_64544,Raheen,94144-00017-1,1,4380_7778208_3040411,4380_988 -4380_78155,293,4380_64545,Raheen,94542-00017-1,1,4380_7778208_3040413,4380_987 -4380_78155,291,4380_64547,Raheen,93963-00013-1,1,4380_7778208_3040410,4380_987 -4380_78155,296,4380_64548,Raheen,93964-00021-1,1,4380_7778208_3040410,4380_987 -4380_78155,291,4380_64550,Raheen,93771-00013-1,1,4380_7778208_3040409,4380_988 -4380_78155,296,4380_64551,Raheen,93772-00021-1,1,4380_7778208_3040409,4380_988 -4380_78155,285,4380_64557,Raheen,94429-00009-1,1,4380_7778208_3040412,4380_988 -4380_78155,288,4380_64558,Raheen,94425-00011-1,1,4380_7778208_3040412,4380_988 -4380_78155,286,4380_64559,Raheen,94431-00010-1,1,4380_7778208_3040412,4380_988 -4380_78155,289,4380_64560,Raheen,94427-00014-1,1,4380_7778208_3040412,4380_988 -4380_78155,287,4380_64561,Raheen,94433-00012-1,1,4380_7778208_3040412,4380_988 -4380_78155,292,4380_64562,Raheen,94432-00016-1,1,4380_7778208_3040412,4380_988 -4380_78155,290,4380_64563,Raheen,94430-00015-1,1,4380_7778208_3040412,4380_988 -4380_78155,294,4380_64564,Raheen,94434-00018-1,1,4380_7778208_3040412,4380_988 -4380_78155,295,4380_64565,Raheen,94428-00019-1,1,4380_7778208_3040412,4380_988 -4380_78155,293,4380_64566,Raheen,94426-00017-1,1,4380_7778208_3040412,4380_988 -4380_78155,291,4380_64568,Raheen,93967-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_64569,Raheen,93968-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,285,4380_64575,Raheen,94563-00009-1,1,4380_7778208_3040413,4380_988 -4380_78155,288,4380_64576,Raheen,94559-00011-1,1,4380_7778208_3040413,4380_988 -4380_78155,286,4380_64577,Raheen,94557-00010-1,1,4380_7778208_3040413,4380_988 -4380_78155,289,4380_64578,Raheen,94555-00014-1,1,4380_7778208_3040413,4380_988 -4380_78155,287,4380_64579,Raheen,94561-00012-1,1,4380_7778208_3040413,4380_988 -4380_78155,292,4380_64580,Raheen,94558-00016-1,1,4380_7778208_3040413,4380_988 -4380_78155,290,4380_64581,Raheen,94564-00015-1,1,4380_7778208_3040413,4380_988 -4380_78155,294,4380_64582,Raheen,94562-00018-1,1,4380_7778208_3040413,4380_988 -4380_78155,295,4380_64583,Raheen,94556-00019-1,1,4380_7778208_3040413,4380_988 -4380_78155,293,4380_64584,Raheen,94560-00017-1,1,4380_7778208_3040413,4380_988 -4380_78155,291,4380_64586,Raheen,93795-00013-1,1,4380_7778208_3040409,4380_988 -4380_78155,296,4380_64587,Raheen,93796-00021-1,1,4380_7778208_3040409,4380_988 -4380_78155,285,4380_64593,Raheen,94773-00009-1,1,4380_7778208_3040414,4380_988 -4380_78155,288,4380_64594,Raheen,94767-00011-1,1,4380_7778208_3040414,4380_988 -4380_78155,286,4380_64595,Raheen,94771-00010-1,1,4380_7778208_3040414,4380_988 -4380_78155,289,4380_64596,Raheen,94769-00014-1,1,4380_7778208_3040414,4380_988 -4380_78155,287,4380_64597,Raheen,94765-00012-1,1,4380_7778208_3040414,4380_988 -4380_78155,292,4380_64598,Raheen,94772-00016-1,1,4380_7778208_3040414,4380_988 -4380_78155,290,4380_64599,Raheen,94774-00015-1,1,4380_7778208_3040414,4380_988 -4380_78113,289,4380_646,Dundalk,50164-00014-1,0,4380_7778208_1000908,4380_10 -4380_78155,294,4380_64600,Raheen,94766-00018-1,1,4380_7778208_3040414,4380_988 -4380_78155,295,4380_64601,Raheen,94770-00019-1,1,4380_7778208_3040414,4380_988 -4380_78155,293,4380_64602,Raheen,94768-00017-1,1,4380_7778208_3040414,4380_988 -4380_78155,285,4380_64608,Raheen,94161-00009-1,1,4380_7778208_3040411,4380_988 -4380_78155,288,4380_64609,Raheen,94163-00011-1,1,4380_7778208_3040411,4380_988 -4380_77951,285,4380_6461,Kells,5072-00009-1,0,4380_7778208_1070101,4380_75 -4380_78155,286,4380_64610,Raheen,94165-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_64611,Raheen,94167-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_64612,Raheen,94159-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_64613,Raheen,94166-00016-1,1,4380_7778208_3040411,4380_988 -4380_78155,290,4380_64614,Raheen,94162-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_64615,Raheen,94160-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_64616,Raheen,94168-00019-1,1,4380_7778208_3040411,4380_988 -4380_78155,293,4380_64617,Raheen,94164-00017-1,1,4380_7778208_3040411,4380_988 -4380_78155,291,4380_64619,Raheen,93981-00013-1,1,4380_7778208_3040410,4380_988 -4380_77951,286,4380_6462,Kells,5088-00010-1,0,4380_7778208_1070101,4380_75 -4380_78155,296,4380_64620,Raheen,93982-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,285,4380_64626,Raheen,94445-00009-1,1,4380_7778208_3040412,4380_988 -4380_78155,288,4380_64628,Raheen,94451-00011-1,1,4380_7778208_3040412,4380_988 -4380_78155,286,4380_64629,Raheen,94449-00010-1,1,4380_7778208_3040412,4380_988 -4380_77951,288,4380_6463,Kells,5104-00011-1,0,4380_7778208_1070101,4380_75 -4380_78155,291,4380_64630,Raheen,93799-00013-1,1,4380_7778208_3040409,4380_990 -4380_78155,289,4380_64631,Raheen,94453-00014-1,1,4380_7778208_3040412,4380_988 -4380_78155,287,4380_64632,Raheen,94447-00012-1,1,4380_7778208_3040412,4380_988 -4380_78155,292,4380_64633,Raheen,94450-00016-1,1,4380_7778208_3040412,4380_988 -4380_78155,290,4380_64634,Raheen,94446-00015-1,1,4380_7778208_3040412,4380_988 -4380_78155,294,4380_64635,Raheen,94448-00018-1,1,4380_7778208_3040412,4380_988 -4380_78155,295,4380_64636,Raheen,94454-00019-1,1,4380_7778208_3040412,4380_988 -4380_78155,293,4380_64637,Raheen,94452-00017-1,1,4380_7778208_3040412,4380_988 -4380_78155,296,4380_64638,Raheen,93800-00021-1,1,4380_7778208_3040409,4380_990 -4380_77951,287,4380_6464,Kells,5120-00012-1,0,4380_7778208_1070101,4380_75 -4380_78155,291,4380_64640,Raheen,94169-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_64641,Raheen,94170-00021-1,1,4380_7778208_3040411,4380_988 -4380_78155,285,4380_64647,Raheen,94579-00009-1,1,4380_7778208_3040413,4380_988 -4380_78155,288,4380_64648,Raheen,94581-00011-1,1,4380_7778208_3040413,4380_988 -4380_78155,286,4380_64649,Raheen,94575-00010-1,1,4380_7778208_3040413,4380_988 -4380_77951,289,4380_6465,Kells,5048-00014-1,0,4380_7778208_1070101,4380_75 -4380_78155,289,4380_64650,Raheen,94583-00014-1,1,4380_7778208_3040413,4380_988 -4380_78155,287,4380_64651,Raheen,94577-00012-1,1,4380_7778208_3040413,4380_988 -4380_78155,292,4380_64652,Raheen,94576-00016-1,1,4380_7778208_3040413,4380_988 -4380_78155,290,4380_64653,Raheen,94580-00015-1,1,4380_7778208_3040413,4380_988 -4380_78155,294,4380_64654,Raheen,94578-00018-1,1,4380_7778208_3040413,4380_988 -4380_78155,295,4380_64655,Raheen,94584-00019-1,1,4380_7778208_3040413,4380_988 -4380_78155,293,4380_64656,Raheen,94582-00017-1,1,4380_7778208_3040413,4380_988 -4380_78155,297,4380_64658,Raheen,93146-00008-1,1,4380_7778208_3040405,4380_987 -4380_77951,290,4380_6466,Kells,54590-00015-1,0,4380_7778208_1070101,4380_75 -4380_78155,297,4380_64660,Raheen,93318-00008-1,1,4380_7778208_3040406,4380_988 -4380_78155,291,4380_64662,Raheen,93995-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_64663,Raheen,93996-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,285,4380_64669,Raheen,94791-00009-1,1,4380_7778208_3040414,4380_988 -4380_77951,291,4380_6467,Kells,5136-00013-1,0,4380_7778208_1070101,4380_77 -4380_78155,288,4380_64670,Raheen,94789-00011-1,1,4380_7778208_3040414,4380_988 -4380_78155,286,4380_64671,Raheen,94787-00010-1,1,4380_7778208_3040414,4380_988 -4380_78155,289,4380_64672,Raheen,94793-00014-1,1,4380_7778208_3040414,4380_988 -4380_78155,287,4380_64673,Raheen,94785-00012-1,1,4380_7778208_3040414,4380_988 -4380_78155,292,4380_64674,Raheen,94788-00016-1,1,4380_7778208_3040414,4380_988 -4380_78155,290,4380_64675,Raheen,94792-00015-1,1,4380_7778208_3040414,4380_988 -4380_78155,294,4380_64676,Raheen,94786-00018-1,1,4380_7778208_3040414,4380_988 -4380_78155,295,4380_64677,Raheen,94794-00019-1,1,4380_7778208_3040414,4380_988 -4380_78155,293,4380_64678,Raheen,94790-00017-1,1,4380_7778208_3040414,4380_988 -4380_77951,292,4380_6468,Kells,54591-00016-1,0,4380_7778208_1070101,4380_75 -4380_78155,297,4380_64680,Raheen,93160-00008-1,1,4380_7778208_3040405,4380_988 -4380_78155,291,4380_64682,Raheen,93813-00013-1,1,4380_7778208_3040409,4380_988 -4380_78155,296,4380_64683,Raheen,93814-00021-1,1,4380_7778208_3040409,4380_988 -4380_78155,285,4380_64689,Raheen,94185-00009-1,1,4380_7778208_3040411,4380_988 -4380_77951,293,4380_6469,Kells,54594-00017-1,0,4380_7778208_1070101,4380_75 -4380_78155,288,4380_64690,Raheen,94189-00011-1,1,4380_7778208_3040411,4380_988 -4380_78155,286,4380_64691,Raheen,94183-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_64692,Raheen,94191-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_64693,Raheen,94187-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_64694,Raheen,94184-00016-1,1,4380_7778208_3040411,4380_988 -4380_78155,290,4380_64695,Raheen,94186-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_64696,Raheen,94188-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_64697,Raheen,94192-00019-1,1,4380_7778208_3040411,4380_988 -4380_78155,293,4380_64698,Raheen,94190-00017-1,1,4380_7778208_3040411,4380_988 -4380_78113,290,4380_647,Dundalk,50167-00015-1,0,4380_7778208_1000908,4380_10 -4380_77951,294,4380_6470,Kells,54592-00018-1,0,4380_7778208_1070101,4380_75 -4380_78155,297,4380_64700,Raheen,93342-00008-1,1,4380_7778208_3040406,4380_988 -4380_78155,291,4380_64702,Raheen,94193-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_64703,Raheen,94194-00021-1,1,4380_7778208_3040411,4380_988 -4380_78155,285,4380_64709,Raheen,94599-00009-1,1,4380_7778208_3040413,4380_988 -4380_77951,295,4380_6471,Kells,54593-00019-1,0,4380_7778208_1070101,4380_75 -4380_78155,288,4380_64710,Raheen,94595-00011-1,1,4380_7778208_3040413,4380_988 -4380_78155,286,4380_64711,Raheen,94603-00010-1,1,4380_7778208_3040413,4380_988 -4380_78155,289,4380_64712,Raheen,94597-00014-1,1,4380_7778208_3040413,4380_988 -4380_78155,287,4380_64713,Raheen,94601-00012-1,1,4380_7778208_3040413,4380_988 -4380_78155,292,4380_64714,Raheen,94604-00016-1,1,4380_7778208_3040413,4380_988 -4380_78155,290,4380_64715,Raheen,94600-00015-1,1,4380_7778208_3040413,4380_988 -4380_78155,294,4380_64716,Raheen,94602-00018-1,1,4380_7778208_3040413,4380_988 -4380_78155,295,4380_64717,Raheen,94598-00019-1,1,4380_7778208_3040413,4380_988 -4380_78155,293,4380_64718,Raheen,94596-00017-1,1,4380_7778208_3040413,4380_988 -4380_77951,296,4380_6472,Kells,54589-00021-1,0,4380_7778208_1070101,4380_77 -4380_78155,291,4380_64720,Raheen,94009-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_64721,Raheen,94010-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,297,4380_64723,Raheen,93514-00008-1,1,4380_7778208_3040407,4380_988 -4380_78155,285,4380_64729,Raheen,94807-00009-1,1,4380_7778208_3040414,4380_988 -4380_78155,288,4380_64730,Raheen,94813-00011-1,1,4380_7778208_3040414,4380_988 -4380_78155,286,4380_64731,Raheen,94809-00010-1,1,4380_7778208_3040414,4380_988 -4380_78155,289,4380_64732,Raheen,94811-00014-1,1,4380_7778208_3040414,4380_988 -4380_78155,287,4380_64733,Raheen,94805-00012-1,1,4380_7778208_3040414,4380_988 -4380_78155,292,4380_64734,Raheen,94810-00016-1,1,4380_7778208_3040414,4380_988 -4380_78155,290,4380_64735,Raheen,94808-00015-1,1,4380_7778208_3040414,4380_988 -4380_78155,294,4380_64736,Raheen,94806-00018-1,1,4380_7778208_3040414,4380_988 -4380_78155,295,4380_64737,Raheen,94812-00019-1,1,4380_7778208_3040414,4380_988 -4380_78155,293,4380_64738,Raheen,94814-00017-1,1,4380_7778208_3040414,4380_988 -4380_78155,297,4380_64740,Raheen,93176-00008-1,1,4380_7778208_3040405,4380_988 -4380_78155,291,4380_64742,Raheen,93837-00013-1,1,4380_7778208_3040409,4380_990 -4380_78155,296,4380_64743,Raheen,93838-00021-1,1,4380_7778208_3040409,4380_990 -4380_78155,285,4380_64749,Raheen,94211-00009-1,1,4380_7778208_3040411,4380_988 -4380_78155,288,4380_64750,Raheen,94213-00011-1,1,4380_7778208_3040411,4380_988 -4380_78155,286,4380_64751,Raheen,94209-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_64752,Raheen,94215-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_64753,Raheen,94207-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_64754,Raheen,94210-00016-1,1,4380_7778208_3040411,4380_988 -4380_78155,290,4380_64755,Raheen,94212-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_64756,Raheen,94208-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_64757,Raheen,94216-00019-1,1,4380_7778208_3040411,4380_988 -4380_78155,293,4380_64758,Raheen,94214-00017-1,1,4380_7778208_3040411,4380_988 -4380_78155,297,4380_64760,Raheen,93358-00008-1,1,4380_7778208_3040406,4380_988 -4380_78155,291,4380_64762,Raheen,94217-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_64763,Raheen,94218-00021-1,1,4380_7778208_3040411,4380_988 -4380_78155,285,4380_64769,Raheen,94615-00009-1,1,4380_7778208_3040413,4380_988 -4380_78155,288,4380_64770,Raheen,94617-00011-1,1,4380_7778208_3040413,4380_988 -4380_78155,286,4380_64771,Raheen,94623-00010-1,1,4380_7778208_3040413,4380_988 -4380_78155,289,4380_64772,Raheen,94619-00014-1,1,4380_7778208_3040413,4380_988 -4380_78155,287,4380_64773,Raheen,94621-00012-1,1,4380_7778208_3040413,4380_988 -4380_78155,292,4380_64774,Raheen,94624-00016-1,1,4380_7778208_3040413,4380_988 -4380_78155,290,4380_64775,Raheen,94616-00015-1,1,4380_7778208_3040413,4380_988 -4380_78155,294,4380_64776,Raheen,94622-00018-1,1,4380_7778208_3040413,4380_988 -4380_78155,295,4380_64777,Raheen,94620-00019-1,1,4380_7778208_3040413,4380_988 -4380_78155,293,4380_64778,Raheen,94618-00017-1,1,4380_7778208_3040413,4380_988 -4380_78155,297,4380_64780,Raheen,93530-00008-1,1,4380_7778208_3040407,4380_988 -4380_78155,291,4380_64782,Raheen,94033-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_64783,Raheen,94034-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,285,4380_64789,Raheen,94825-00009-1,1,4380_7778208_3040414,4380_988 -4380_77951,285,4380_6479,Navan,5065-00009-1,1,4380_7778208_1070101,4380_78 -4380_78155,288,4380_64790,Raheen,94829-00011-1,1,4380_7778208_3040414,4380_988 -4380_78155,286,4380_64791,Raheen,94831-00010-1,1,4380_7778208_3040414,4380_988 -4380_78155,289,4380_64792,Raheen,94827-00014-1,1,4380_7778208_3040414,4380_988 -4380_78155,287,4380_64793,Raheen,94833-00012-1,1,4380_7778208_3040414,4380_988 -4380_78155,292,4380_64794,Raheen,94832-00016-1,1,4380_7778208_3040414,4380_988 -4380_78155,290,4380_64795,Raheen,94826-00015-1,1,4380_7778208_3040414,4380_988 -4380_78155,294,4380_64796,Raheen,94834-00018-1,1,4380_7778208_3040414,4380_988 -4380_78155,295,4380_64797,Raheen,94828-00019-1,1,4380_7778208_3040414,4380_988 -4380_78155,293,4380_64798,Raheen,94830-00017-1,1,4380_7778208_3040414,4380_988 -4380_78113,291,4380_648,Dundalk,50168-00013-1,0,4380_7778208_1000908,4380_13 -4380_77951,286,4380_6480,Navan,5081-00010-1,1,4380_7778208_1070101,4380_78 -4380_78155,297,4380_64800,Raheen,93190-00008-1,1,4380_7778208_3040405,4380_988 -4380_78155,291,4380_64802,Raheen,93861-00013-1,1,4380_7778208_3040409,4380_988 -4380_78155,296,4380_64803,Raheen,93862-00021-1,1,4380_7778208_3040409,4380_988 -4380_78155,285,4380_64809,Raheen,94235-00009-1,1,4380_7778208_3040411,4380_988 -4380_77951,288,4380_6481,Navan,5097-00011-1,1,4380_7778208_1070101,4380_78 -4380_78155,288,4380_64810,Raheen,94237-00011-1,1,4380_7778208_3040411,4380_988 -4380_78155,286,4380_64811,Raheen,94239-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_64812,Raheen,94233-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_64813,Raheen,94231-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_64814,Raheen,94240-00016-1,1,4380_7778208_3040411,4380_988 -4380_78155,290,4380_64815,Raheen,94236-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_64816,Raheen,94232-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_64817,Raheen,94234-00019-1,1,4380_7778208_3040411,4380_988 -4380_78155,293,4380_64818,Raheen,94238-00017-1,1,4380_7778208_3040411,4380_988 -4380_77951,287,4380_6482,Navan,5113-00012-1,1,4380_7778208_1070101,4380_78 -4380_78155,297,4380_64820,Raheen,93372-00008-1,1,4380_7778208_3040406,4380_988 -4380_78155,291,4380_64822,Raheen,94241-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_64823,Raheen,94242-00021-1,1,4380_7778208_3040411,4380_988 -4380_78155,285,4380_64829,Raheen,94467-00009-1,1,4380_7778208_3040412,4380_988 -4380_77951,289,4380_6483,Navan,5041-00014-1,1,4380_7778208_1070101,4380_78 -4380_78155,288,4380_64830,Raheen,94471-00011-1,1,4380_7778208_3040412,4380_988 -4380_78155,286,4380_64831,Raheen,94465-00010-1,1,4380_7778208_3040412,4380_988 -4380_78155,289,4380_64832,Raheen,94473-00014-1,1,4380_7778208_3040412,4380_988 -4380_78155,287,4380_64833,Raheen,94469-00012-1,1,4380_7778208_3040412,4380_988 -4380_78155,292,4380_64834,Raheen,94466-00016-1,1,4380_7778208_3040412,4380_988 -4380_78155,290,4380_64835,Raheen,94468-00015-1,1,4380_7778208_3040412,4380_988 -4380_78155,294,4380_64836,Raheen,94470-00018-1,1,4380_7778208_3040412,4380_988 -4380_78155,295,4380_64837,Raheen,94474-00019-1,1,4380_7778208_3040412,4380_988 -4380_78155,293,4380_64838,Raheen,94472-00017-1,1,4380_7778208_3040412,4380_988 -4380_77951,290,4380_6484,Navan,54548-00015-1,1,4380_7778208_1070101,4380_78 -4380_78155,297,4380_64845,Raheen,93544-00008-1,1,4380_7778208_3040407,4380_988 -4380_78155,285,4380_64846,Raheen,94643-00009-1,1,4380_7778208_3040413,4380_990 -4380_78155,288,4380_64847,Raheen,94637-00011-1,1,4380_7778208_3040413,4380_990 -4380_78155,286,4380_64848,Raheen,94641-00010-1,1,4380_7778208_3040413,4380_990 -4380_78155,289,4380_64849,Raheen,94635-00014-1,1,4380_7778208_3040413,4380_990 -4380_77951,291,4380_6485,Navan,5129-00013-1,1,4380_7778208_1070101,4380_80 -4380_78155,287,4380_64850,Raheen,94639-00012-1,1,4380_7778208_3040413,4380_990 -4380_78155,292,4380_64851,Raheen,94642-00016-1,1,4380_7778208_3040413,4380_990 -4380_78155,290,4380_64852,Raheen,94644-00015-1,1,4380_7778208_3040413,4380_990 -4380_78155,294,4380_64853,Raheen,94640-00018-1,1,4380_7778208_3040413,4380_990 -4380_78155,295,4380_64854,Raheen,94636-00019-1,1,4380_7778208_3040413,4380_990 -4380_78155,293,4380_64855,Raheen,94638-00017-1,1,4380_7778208_3040413,4380_990 -4380_78155,291,4380_64857,Raheen,94047-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_64858,Raheen,94048-00021-1,1,4380_7778208_3040410,4380_988 -4380_77951,292,4380_6486,Navan,54551-00016-1,1,4380_7778208_1070101,4380_78 -4380_78155,297,4380_64865,Raheen,93214-00008-1,1,4380_7778208_3040405,4380_988 -4380_78155,285,4380_64866,Raheen,94853-00009-1,1,4380_7778208_3040414,4380_990 -4380_78155,288,4380_64867,Raheen,94845-00011-1,1,4380_7778208_3040414,4380_990 -4380_78155,286,4380_64868,Raheen,94847-00010-1,1,4380_7778208_3040414,4380_990 -4380_78155,289,4380_64869,Raheen,94851-00014-1,1,4380_7778208_3040414,4380_990 -4380_77951,293,4380_6487,Navan,54547-00017-1,1,4380_7778208_1070101,4380_78 -4380_78155,287,4380_64870,Raheen,94849-00012-1,1,4380_7778208_3040414,4380_990 -4380_78155,292,4380_64871,Raheen,94848-00016-1,1,4380_7778208_3040414,4380_990 -4380_78155,290,4380_64872,Raheen,94854-00015-1,1,4380_7778208_3040414,4380_990 -4380_78155,294,4380_64873,Raheen,94850-00018-1,1,4380_7778208_3040414,4380_990 -4380_78155,295,4380_64874,Raheen,94852-00019-1,1,4380_7778208_3040414,4380_990 -4380_78155,293,4380_64875,Raheen,94846-00017-1,1,4380_7778208_3040414,4380_990 -4380_78155,291,4380_64877,Raheen,93875-00013-1,1,4380_7778208_3040409,4380_988 -4380_78155,296,4380_64878,Raheen,93876-00021-1,1,4380_7778208_3040409,4380_988 -4380_77951,294,4380_6488,Navan,54549-00018-1,1,4380_7778208_1070101,4380_78 -4380_78155,297,4380_64885,Raheen,93396-00008-1,1,4380_7778208_3040406,4380_988 -4380_78155,285,4380_64886,Raheen,94259-00009-1,1,4380_7778208_3040411,4380_990 -4380_78155,288,4380_64887,Raheen,94261-00011-1,1,4380_7778208_3040411,4380_990 -4380_78155,286,4380_64888,Raheen,94263-00010-1,1,4380_7778208_3040411,4380_990 -4380_78155,289,4380_64889,Raheen,94257-00014-1,1,4380_7778208_3040411,4380_990 -4380_77951,295,4380_6489,Navan,54550-00019-1,1,4380_7778208_1070101,4380_78 -4380_78155,287,4380_64890,Raheen,94255-00012-1,1,4380_7778208_3040411,4380_990 -4380_78155,292,4380_64891,Raheen,94264-00016-1,1,4380_7778208_3040411,4380_990 -4380_78155,290,4380_64892,Raheen,94260-00015-1,1,4380_7778208_3040411,4380_990 -4380_78155,294,4380_64893,Raheen,94256-00018-1,1,4380_7778208_3040411,4380_990 -4380_78155,295,4380_64894,Raheen,94258-00019-1,1,4380_7778208_3040411,4380_990 -4380_78155,293,4380_64895,Raheen,94262-00017-1,1,4380_7778208_3040411,4380_990 -4380_78155,291,4380_64897,Raheen,94265-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_64898,Raheen,94266-00021-1,1,4380_7778208_3040411,4380_988 -4380_78113,292,4380_649,Dundalk,50159-00016-1,0,4380_7778208_1000908,4380_10 -4380_77951,296,4380_6490,Navan,54552-00021-1,1,4380_7778208_1070101,4380_80 -4380_78155,297,4380_64905,Raheen,93570-00008-1,1,4380_7778208_3040407,4380_988 -4380_78155,285,4380_64906,Raheen,94485-00009-1,1,4380_7778208_3040412,4380_990 -4380_78155,288,4380_64907,Raheen,94493-00011-1,1,4380_7778208_3040412,4380_990 -4380_78155,286,4380_64908,Raheen,94487-00010-1,1,4380_7778208_3040412,4380_990 -4380_78155,289,4380_64909,Raheen,94489-00014-1,1,4380_7778208_3040412,4380_990 -4380_78155,287,4380_64910,Raheen,94491-00012-1,1,4380_7778208_3040412,4380_990 -4380_78155,292,4380_64911,Raheen,94488-00016-1,1,4380_7778208_3040412,4380_990 -4380_78155,290,4380_64912,Raheen,94486-00015-1,1,4380_7778208_3040412,4380_990 -4380_78155,294,4380_64913,Raheen,94492-00018-1,1,4380_7778208_3040412,4380_990 -4380_78155,295,4380_64914,Raheen,94490-00019-1,1,4380_7778208_3040412,4380_990 -4380_78155,293,4380_64915,Raheen,94494-00017-1,1,4380_7778208_3040412,4380_990 -4380_78155,285,4380_64921,Raheen,94655-00009-1,1,4380_7778208_3040413,4380_988 -4380_78155,288,4380_64922,Raheen,94663-00011-1,1,4380_7778208_3040413,4380_988 -4380_78155,286,4380_64923,Raheen,94661-00010-1,1,4380_7778208_3040413,4380_988 -4380_78155,289,4380_64924,Raheen,94659-00014-1,1,4380_7778208_3040413,4380_988 -4380_78155,287,4380_64925,Raheen,94657-00012-1,1,4380_7778208_3040413,4380_988 -4380_78155,292,4380_64926,Raheen,94662-00016-1,1,4380_7778208_3040413,4380_988 -4380_78155,290,4380_64927,Raheen,94656-00015-1,1,4380_7778208_3040413,4380_988 -4380_78155,294,4380_64928,Raheen,94658-00018-1,1,4380_7778208_3040413,4380_988 -4380_78155,295,4380_64929,Raheen,94660-00019-1,1,4380_7778208_3040413,4380_988 -4380_78155,293,4380_64930,Raheen,94664-00017-1,1,4380_7778208_3040413,4380_988 -4380_78155,291,4380_64932,Raheen,94067-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_64933,Raheen,94068-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,297,4380_64935,Raheen,93230-00008-1,1,4380_7778208_3040405,4380_988 -4380_78155,285,4380_64941,Raheen,94867-00009-1,1,4380_7778208_3040414,4380_988 -4380_78155,288,4380_64942,Raheen,94871-00011-1,1,4380_7778208_3040414,4380_988 -4380_78155,286,4380_64943,Raheen,94869-00010-1,1,4380_7778208_3040414,4380_988 -4380_78155,289,4380_64944,Raheen,94865-00014-1,1,4380_7778208_3040414,4380_988 -4380_78155,287,4380_64945,Raheen,94873-00012-1,1,4380_7778208_3040414,4380_988 -4380_78155,292,4380_64946,Raheen,94870-00016-1,1,4380_7778208_3040414,4380_988 -4380_78155,290,4380_64947,Raheen,94868-00015-1,1,4380_7778208_3040414,4380_988 -4380_78155,294,4380_64948,Raheen,94874-00018-1,1,4380_7778208_3040414,4380_988 -4380_78155,295,4380_64949,Raheen,94866-00019-1,1,4380_7778208_3040414,4380_988 -4380_78155,293,4380_64950,Raheen,94872-00017-1,1,4380_7778208_3040414,4380_988 -4380_78155,291,4380_64952,Raheen,93889-00013-1,1,4380_7778208_3040409,4380_988 -4380_78155,296,4380_64953,Raheen,93890-00021-1,1,4380_7778208_3040409,4380_988 -4380_78155,297,4380_64955,Raheen,93412-00008-1,1,4380_7778208_3040406,4380_988 -4380_78155,291,4380_64957,Raheen,94279-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_64958,Raheen,94280-00021-1,1,4380_7778208_3040411,4380_988 -4380_78155,285,4380_64964,Raheen,94287-00009-1,1,4380_7778208_3040411,4380_988 -4380_78155,288,4380_64965,Raheen,94283-00011-1,1,4380_7778208_3040411,4380_988 -4380_78155,286,4380_64966,Raheen,94281-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_64967,Raheen,94285-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_64968,Raheen,94289-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_64969,Raheen,94282-00016-1,1,4380_7778208_3040411,4380_988 -4380_77951,285,4380_6497,Navan,5067-00009-1,1,4380_7778208_1070101,4380_79 -4380_78155,290,4380_64970,Raheen,94288-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_64971,Raheen,94290-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_64972,Raheen,94286-00019-1,1,4380_7778208_3040411,4380_988 -4380_78155,293,4380_64973,Raheen,94284-00017-1,1,4380_7778208_3040411,4380_988 -4380_78155,297,4380_64975,Raheen,93584-00008-1,1,4380_7778208_3040407,4380_988 -4380_78155,291,4380_64977,Raheen,94085-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_64978,Raheen,94086-00021-1,1,4380_7778208_3040410,4380_988 -4380_77951,286,4380_6498,Navan,5083-00010-1,1,4380_7778208_1070101,4380_79 -4380_78155,285,4380_64984,Raheen,94511-00009-1,1,4380_7778208_3040412,4380_988 -4380_78155,288,4380_64985,Raheen,94507-00011-1,1,4380_7778208_3040412,4380_988 -4380_78155,286,4380_64986,Raheen,94509-00010-1,1,4380_7778208_3040412,4380_988 -4380_78155,289,4380_64987,Raheen,94505-00014-1,1,4380_7778208_3040412,4380_988 -4380_78155,287,4380_64988,Raheen,94513-00012-1,1,4380_7778208_3040412,4380_988 -4380_78155,292,4380_64989,Raheen,94510-00016-1,1,4380_7778208_3040412,4380_988 -4380_77951,288,4380_6499,Navan,5099-00011-1,1,4380_7778208_1070101,4380_79 -4380_78155,290,4380_64990,Raheen,94512-00015-1,1,4380_7778208_3040412,4380_988 -4380_78155,294,4380_64991,Raheen,94514-00018-1,1,4380_7778208_3040412,4380_988 -4380_78155,295,4380_64992,Raheen,94506-00019-1,1,4380_7778208_3040412,4380_988 -4380_78155,293,4380_64993,Raheen,94508-00017-1,1,4380_7778208_3040412,4380_988 -4380_78155,297,4380_64995,Raheen,93244-00008-1,1,4380_7778208_3040405,4380_988 -4380_77946,295,4380_65,Dundalk,114786-00019-1,0,4380_7778208_10088802,4380_4 -4380_78113,293,4380_650,Dundalk,50161-00017-1,0,4380_7778208_1000908,4380_10 -4380_77951,287,4380_6500,Navan,5115-00012-1,1,4380_7778208_1070101,4380_79 -4380_78155,285,4380_65001,Raheen,94681-00009-1,1,4380_7778208_3040413,4380_988 -4380_78155,288,4380_65002,Raheen,94679-00011-1,1,4380_7778208_3040413,4380_988 -4380_78155,286,4380_65003,Raheen,94677-00010-1,1,4380_7778208_3040413,4380_988 -4380_78155,289,4380_65004,Raheen,94675-00014-1,1,4380_7778208_3040413,4380_988 -4380_78155,287,4380_65005,Raheen,94683-00012-1,1,4380_7778208_3040413,4380_988 -4380_78155,292,4380_65006,Raheen,94678-00016-1,1,4380_7778208_3040413,4380_988 -4380_78155,290,4380_65007,Raheen,94682-00015-1,1,4380_7778208_3040413,4380_988 -4380_78155,294,4380_65008,Raheen,94684-00018-1,1,4380_7778208_3040413,4380_988 -4380_78155,295,4380_65009,Raheen,94676-00019-1,1,4380_7778208_3040413,4380_988 -4380_77951,289,4380_6501,Navan,5043-00014-1,1,4380_7778208_1070101,4380_79 -4380_78155,293,4380_65010,Raheen,94680-00017-1,1,4380_7778208_3040413,4380_988 -4380_78155,291,4380_65012,Raheen,93903-00013-1,1,4380_7778208_3040409,4380_988 -4380_78155,296,4380_65013,Raheen,93904-00021-1,1,4380_7778208_3040409,4380_988 -4380_78155,297,4380_65015,Raheen,93428-00008-1,1,4380_7778208_3040406,4380_988 -4380_77951,290,4380_6502,Navan,54560-00015-1,1,4380_7778208_1070101,4380_79 -4380_78155,285,4380_65021,Raheen,94889-00009-1,1,4380_7778208_3040414,4380_988 -4380_78155,288,4380_65022,Raheen,94885-00011-1,1,4380_7778208_3040414,4380_988 -4380_78155,286,4380_65023,Raheen,94891-00010-1,1,4380_7778208_3040414,4380_988 -4380_78155,289,4380_65024,Raheen,94887-00014-1,1,4380_7778208_3040414,4380_988 -4380_78155,287,4380_65025,Raheen,94893-00012-1,1,4380_7778208_3040414,4380_988 -4380_78155,292,4380_65026,Raheen,94892-00016-1,1,4380_7778208_3040414,4380_988 -4380_78155,290,4380_65027,Raheen,94890-00015-1,1,4380_7778208_3040414,4380_988 -4380_78155,294,4380_65028,Raheen,94894-00018-1,1,4380_7778208_3040414,4380_988 -4380_78155,295,4380_65029,Raheen,94888-00019-1,1,4380_7778208_3040414,4380_988 -4380_77951,291,4380_6503,Navan,5131-00013-1,1,4380_7778208_1070101,4380_81 -4380_78155,293,4380_65030,Raheen,94886-00017-1,1,4380_7778208_3040414,4380_988 -4380_78155,291,4380_65032,Raheen,94303-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_65033,Raheen,94304-00021-1,1,4380_7778208_3040411,4380_988 -4380_78155,297,4380_65035,Raheen,93600-00008-1,1,4380_7778208_3040407,4380_988 -4380_77951,292,4380_6504,Navan,54561-00016-1,1,4380_7778208_1070101,4380_79 -4380_78155,285,4380_65041,Raheen,94313-00009-1,1,4380_7778208_3040411,4380_988 -4380_78155,288,4380_65042,Raheen,94311-00011-1,1,4380_7778208_3040411,4380_988 -4380_78155,286,4380_65043,Raheen,94309-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_65044,Raheen,94307-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_65045,Raheen,94305-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_65046,Raheen,94310-00016-1,1,4380_7778208_3040411,4380_988 -4380_78155,290,4380_65047,Raheen,94314-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_65048,Raheen,94306-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_65049,Raheen,94308-00019-1,1,4380_7778208_3040411,4380_988 -4380_77951,293,4380_6505,Navan,54564-00017-1,1,4380_7778208_1070101,4380_79 -4380_78155,293,4380_65050,Raheen,94312-00017-1,1,4380_7778208_3040411,4380_988 -4380_78155,291,4380_65052,Raheen,94099-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_65053,Raheen,94100-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,285,4380_65059,Raheen,94527-00009-1,1,4380_7778208_3040412,4380_988 -4380_77951,294,4380_6506,Navan,54559-00018-1,1,4380_7778208_1070101,4380_79 -4380_78155,288,4380_65060,Raheen,94533-00011-1,1,4380_7778208_3040412,4380_988 -4380_78155,286,4380_65061,Raheen,94525-00010-1,1,4380_7778208_3040412,4380_988 -4380_78155,289,4380_65062,Raheen,94531-00014-1,1,4380_7778208_3040412,4380_988 -4380_78155,287,4380_65063,Raheen,94529-00012-1,1,4380_7778208_3040412,4380_988 -4380_78155,292,4380_65064,Raheen,94526-00016-1,1,4380_7778208_3040412,4380_988 -4380_78155,290,4380_65065,Raheen,94528-00015-1,1,4380_7778208_3040412,4380_988 -4380_78155,294,4380_65066,Raheen,94530-00018-1,1,4380_7778208_3040412,4380_988 -4380_78155,295,4380_65067,Raheen,94532-00019-1,1,4380_7778208_3040412,4380_988 -4380_78155,293,4380_65068,Raheen,94534-00017-1,1,4380_7778208_3040412,4380_988 -4380_77951,295,4380_6507,Navan,54562-00019-1,1,4380_7778208_1070101,4380_79 -4380_78155,297,4380_65070,Raheen,93270-00008-1,1,4380_7778208_3040405,4380_988 -4380_78155,291,4380_65072,Raheen,93917-00013-1,1,4380_7778208_3040409,4380_988 -4380_78155,296,4380_65073,Raheen,93918-00021-1,1,4380_7778208_3040409,4380_988 -4380_78155,285,4380_65079,Raheen,94701-00009-1,1,4380_7778208_3040413,4380_988 -4380_77951,296,4380_6508,Navan,54563-00021-1,1,4380_7778208_1070101,4380_81 -4380_78155,288,4380_65080,Raheen,94699-00011-1,1,4380_7778208_3040413,4380_988 -4380_78155,286,4380_65081,Raheen,94703-00010-1,1,4380_7778208_3040413,4380_988 -4380_78155,289,4380_65082,Raheen,94695-00014-1,1,4380_7778208_3040413,4380_988 -4380_78155,287,4380_65083,Raheen,94697-00012-1,1,4380_7778208_3040413,4380_988 -4380_78155,292,4380_65084,Raheen,94704-00016-1,1,4380_7778208_3040413,4380_988 -4380_78155,290,4380_65085,Raheen,94702-00015-1,1,4380_7778208_3040413,4380_988 -4380_78155,294,4380_65086,Raheen,94698-00018-1,1,4380_7778208_3040413,4380_988 -4380_78155,295,4380_65087,Raheen,94696-00019-1,1,4380_7778208_3040413,4380_988 -4380_78155,293,4380_65088,Raheen,94700-00017-1,1,4380_7778208_3040413,4380_988 -4380_78155,297,4380_65090,Raheen,93452-00008-1,1,4380_7778208_3040406,4380_988 -4380_78155,291,4380_65092,Raheen,94327-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_65093,Raheen,94328-00021-1,1,4380_7778208_3040411,4380_988 -4380_78155,285,4380_65099,Raheen,94909-00009-1,1,4380_7778208_3040414,4380_988 -4380_78113,294,4380_651,Dundalk,50163-00018-1,0,4380_7778208_1000908,4380_10 -4380_78155,288,4380_65100,Raheen,94913-00011-1,1,4380_7778208_3040414,4380_988 -4380_78155,286,4380_65101,Raheen,94911-00010-1,1,4380_7778208_3040414,4380_988 -4380_78155,289,4380_65102,Raheen,94905-00014-1,1,4380_7778208_3040414,4380_988 -4380_78155,287,4380_65103,Raheen,94907-00012-1,1,4380_7778208_3040414,4380_988 -4380_78155,292,4380_65104,Raheen,94912-00016-1,1,4380_7778208_3040414,4380_988 -4380_78155,290,4380_65105,Raheen,94910-00015-1,1,4380_7778208_3040414,4380_988 -4380_78155,294,4380_65106,Raheen,94908-00018-1,1,4380_7778208_3040414,4380_988 -4380_78155,295,4380_65107,Raheen,94906-00019-1,1,4380_7778208_3040414,4380_988 -4380_78155,293,4380_65108,Raheen,94914-00017-1,1,4380_7778208_3040414,4380_988 -4380_78155,297,4380_65110,Raheen,93624-00008-1,1,4380_7778208_3040407,4380_988 -4380_78155,285,4380_65116,Raheen,94333-00009-1,1,4380_7778208_3040411,4380_988 -4380_78155,288,4380_65117,Raheen,94337-00011-1,1,4380_7778208_3040411,4380_988 -4380_78155,286,4380_65118,Raheen,94331-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_65119,Raheen,94329-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_65120,Raheen,94335-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_65121,Raheen,94332-00016-1,1,4380_7778208_3040411,4380_988 -4380_78155,290,4380_65122,Raheen,94334-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_65123,Raheen,94336-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_65124,Raheen,94330-00019-1,1,4380_7778208_3040411,4380_988 -4380_78155,293,4380_65125,Raheen,94338-00017-1,1,4380_7778208_3040411,4380_988 -4380_78155,291,4380_65127,Raheen,94113-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_65128,Raheen,94114-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,297,4380_65130,Raheen,93274-00008-1,1,4380_7778208_3040405,4380_988 -4380_78155,285,4380_65136,Raheen,93933-00009-1,1,4380_7778208_3040409,4380_988 -4380_78155,288,4380_65137,Raheen,93939-00011-1,1,4380_7778208_3040409,4380_988 -4380_78155,286,4380_65138,Raheen,93931-00010-1,1,4380_7778208_3040409,4380_988 -4380_78155,289,4380_65139,Raheen,93935-00014-1,1,4380_7778208_3040409,4380_988 -4380_78155,287,4380_65140,Raheen,93937-00012-1,1,4380_7778208_3040409,4380_988 -4380_78155,292,4380_65141,Raheen,93932-00016-1,1,4380_7778208_3040409,4380_988 -4380_78155,290,4380_65142,Raheen,93934-00015-1,1,4380_7778208_3040409,4380_988 -4380_78155,294,4380_65143,Raheen,93938-00018-1,1,4380_7778208_3040409,4380_988 -4380_78155,295,4380_65144,Raheen,93936-00019-1,1,4380_7778208_3040409,4380_988 -4380_78155,293,4380_65145,Raheen,93940-00017-1,1,4380_7778208_3040409,4380_988 -4380_78155,291,4380_65147,Raheen,93941-00013-1,1,4380_7778208_3040409,4380_988 -4380_78155,296,4380_65148,Raheen,93942-00021-1,1,4380_7778208_3040409,4380_988 -4380_77951,285,4380_6515,Navan,5069-00009-1,1,4380_7778208_1070101,4380_79 -4380_78155,297,4380_65150,Raheen,93454-00008-1,1,4380_7778208_3040406,4380_988 -4380_78155,291,4380_65152,Raheen,94351-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_65153,Raheen,94352-00021-1,1,4380_7778208_3040411,4380_988 -4380_78155,285,4380_65159,Raheen,94931-00009-1,1,4380_7778208_3040414,4380_988 -4380_77951,286,4380_6516,Navan,5085-00010-1,1,4380_7778208_1070101,4380_79 -4380_78155,288,4380_65160,Raheen,94927-00011-1,1,4380_7778208_3040414,4380_988 -4380_78155,286,4380_65161,Raheen,94929-00010-1,1,4380_7778208_3040414,4380_988 -4380_78155,289,4380_65162,Raheen,94925-00014-1,1,4380_7778208_3040414,4380_988 -4380_78155,287,4380_65163,Raheen,94933-00012-1,1,4380_7778208_3040414,4380_988 -4380_78155,292,4380_65164,Raheen,94930-00016-1,1,4380_7778208_3040414,4380_988 -4380_78155,290,4380_65165,Raheen,94932-00015-1,1,4380_7778208_3040414,4380_988 -4380_78155,294,4380_65166,Raheen,94934-00018-1,1,4380_7778208_3040414,4380_988 -4380_78155,295,4380_65167,Raheen,94926-00019-1,1,4380_7778208_3040414,4380_988 -4380_78155,293,4380_65168,Raheen,94928-00017-1,1,4380_7778208_3040414,4380_988 -4380_77951,288,4380_6517,Navan,5101-00011-1,1,4380_7778208_1070101,4380_79 -4380_78155,297,4380_65170,Raheen,93640-00008-1,1,4380_7778208_3040407,4380_988 -4380_78155,291,4380_65172,Raheen,94127-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_65173,Raheen,94128-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,285,4380_65179,Raheen,94353-00009-1,1,4380_7778208_3040411,4380_988 -4380_77951,287,4380_6518,Navan,5117-00012-1,1,4380_7778208_1070101,4380_79 -4380_78155,288,4380_65180,Raheen,94361-00011-1,1,4380_7778208_3040411,4380_988 -4380_78155,286,4380_65181,Raheen,94359-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_65182,Raheen,94355-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_65183,Raheen,94357-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_65184,Raheen,94360-00016-1,1,4380_7778208_3040411,4380_988 -4380_78155,290,4380_65185,Raheen,94354-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_65186,Raheen,94358-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_65187,Raheen,94356-00019-1,1,4380_7778208_3040411,4380_988 -4380_78155,293,4380_65188,Raheen,94362-00017-1,1,4380_7778208_3040411,4380_988 -4380_77951,289,4380_6519,Navan,5045-00014-1,1,4380_7778208_1070101,4380_79 -4380_78155,297,4380_65190,Raheen,93276-00008-1,1,4380_7778208_3040405,4380_988 -4380_78155,285,4380_65196,Raheen,93953-00009-1,1,4380_7778208_3040409,4380_988 -4380_78155,288,4380_65197,Raheen,93955-00011-1,1,4380_7778208_3040409,4380_988 -4380_78155,286,4380_65198,Raheen,93961-00010-1,1,4380_7778208_3040409,4380_988 -4380_78155,289,4380_65199,Raheen,93959-00014-1,1,4380_7778208_3040409,4380_988 -4380_78113,295,4380_652,Dundalk,50165-00019-1,0,4380_7778208_1000908,4380_10 -4380_77951,290,4380_6520,Navan,54572-00015-1,1,4380_7778208_1070101,4380_79 -4380_78155,287,4380_65200,Raheen,93957-00012-1,1,4380_7778208_3040409,4380_988 -4380_78155,292,4380_65201,Raheen,93962-00016-1,1,4380_7778208_3040409,4380_988 -4380_78155,290,4380_65202,Raheen,93954-00015-1,1,4380_7778208_3040409,4380_988 -4380_78155,294,4380_65203,Raheen,93958-00018-1,1,4380_7778208_3040409,4380_988 -4380_78155,295,4380_65204,Raheen,93960-00019-1,1,4380_7778208_3040409,4380_988 -4380_78155,293,4380_65205,Raheen,93956-00017-1,1,4380_7778208_3040409,4380_988 -4380_78155,291,4380_65207,Raheen,94365-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_65208,Raheen,94366-00021-1,1,4380_7778208_3040411,4380_988 -4380_77951,291,4380_6521,Navan,5133-00013-1,1,4380_7778208_1070101,4380_81 -4380_78155,285,4380_65214,Raheen,94717-00009-1,1,4380_7778208_3040413,4380_988 -4380_78155,288,4380_65215,Raheen,94715-00011-1,1,4380_7778208_3040413,4380_988 -4380_78155,286,4380_65216,Raheen,94719-00010-1,1,4380_7778208_3040413,4380_988 -4380_78155,289,4380_65217,Raheen,94723-00014-1,1,4380_7778208_3040413,4380_988 -4380_78155,287,4380_65218,Raheen,94721-00012-1,1,4380_7778208_3040413,4380_988 -4380_78155,292,4380_65219,Raheen,94720-00016-1,1,4380_7778208_3040413,4380_988 -4380_77951,292,4380_6522,Navan,54575-00016-1,1,4380_7778208_1070101,4380_79 -4380_78155,290,4380_65220,Raheen,94718-00015-1,1,4380_7778208_3040413,4380_988 -4380_78155,294,4380_65221,Raheen,94722-00018-1,1,4380_7778208_3040413,4380_988 -4380_78155,295,4380_65222,Raheen,94724-00019-1,1,4380_7778208_3040413,4380_988 -4380_78155,293,4380_65223,Raheen,94716-00017-1,1,4380_7778208_3040413,4380_988 -4380_78155,297,4380_65225,Raheen,93456-00008-1,1,4380_7778208_3040406,4380_988 -4380_78155,291,4380_65227,Raheen,94131-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_65228,Raheen,94132-00021-1,1,4380_7778208_3040410,4380_988 -4380_77951,293,4380_6523,Navan,54571-00017-1,1,4380_7778208_1070101,4380_79 -4380_78155,285,4380_65234,Raheen,94383-00009-1,1,4380_7778208_3040411,4380_988 -4380_78155,288,4380_65235,Raheen,94385-00011-1,1,4380_7778208_3040411,4380_988 -4380_78155,286,4380_65236,Raheen,94379-00010-1,1,4380_7778208_3040411,4380_988 -4380_78155,289,4380_65237,Raheen,94381-00014-1,1,4380_7778208_3040411,4380_988 -4380_78155,287,4380_65238,Raheen,94387-00012-1,1,4380_7778208_3040411,4380_988 -4380_78155,292,4380_65239,Raheen,94380-00016-1,1,4380_7778208_3040411,4380_988 -4380_77951,294,4380_6524,Navan,54573-00018-1,1,4380_7778208_1070101,4380_79 -4380_78155,290,4380_65240,Raheen,94384-00015-1,1,4380_7778208_3040411,4380_988 -4380_78155,294,4380_65241,Raheen,94388-00018-1,1,4380_7778208_3040411,4380_988 -4380_78155,295,4380_65242,Raheen,94382-00019-1,1,4380_7778208_3040411,4380_988 -4380_78155,293,4380_65243,Raheen,94386-00017-1,1,4380_7778208_3040411,4380_988 -4380_78155,297,4380_65245,Raheen,93676-00008-1,1,4380_7778208_3040407,4380_988 -4380_78155,291,4380_65247,Raheen,94389-00013-1,1,4380_7778208_3040411,4380_988 -4380_78155,296,4380_65248,Raheen,94390-00021-1,1,4380_7778208_3040411,4380_988 -4380_77951,295,4380_6525,Navan,54576-00019-1,1,4380_7778208_1070101,4380_79 -4380_78155,285,4380_65254,Raheen,94739-00009-1,1,4380_7778208_3040413,4380_988 -4380_78155,288,4380_65255,Raheen,94735-00011-1,1,4380_7778208_3040413,4380_988 -4380_78155,286,4380_65256,Raheen,94743-00010-1,1,4380_7778208_3040413,4380_988 -4380_78155,289,4380_65257,Raheen,94737-00014-1,1,4380_7778208_3040413,4380_988 -4380_78155,287,4380_65258,Raheen,94741-00012-1,1,4380_7778208_3040413,4380_988 -4380_78155,292,4380_65259,Raheen,94744-00016-1,1,4380_7778208_3040413,4380_988 -4380_77951,296,4380_6526,Navan,54574-00021-1,1,4380_7778208_1070101,4380_81 -4380_78155,290,4380_65260,Raheen,94740-00015-1,1,4380_7778208_3040413,4380_988 -4380_78155,294,4380_65261,Raheen,94742-00018-1,1,4380_7778208_3040413,4380_988 -4380_78155,295,4380_65262,Raheen,94738-00019-1,1,4380_7778208_3040413,4380_988 -4380_78155,293,4380_65263,Raheen,94736-00017-1,1,4380_7778208_3040413,4380_988 -4380_78155,297,4380_65265,Raheen,93278-00008-1,1,4380_7778208_3040405,4380_988 -4380_78155,291,4380_65267,Raheen,94135-00013-1,1,4380_7778208_3040410,4380_988 -4380_78155,296,4380_65268,Raheen,94136-00021-1,1,4380_7778208_3040410,4380_988 -4380_78155,285,4380_65274,Raheen,94409-00009-1,1,4380_7778208_3040411,4380_989 -4380_78155,288,4380_65275,Raheen,94405-00011-1,1,4380_7778208_3040411,4380_989 -4380_78155,286,4380_65276,Raheen,94411-00010-1,1,4380_7778208_3040411,4380_989 -4380_78155,289,4380_65277,Raheen,94407-00014-1,1,4380_7778208_3040411,4380_989 -4380_78155,287,4380_65278,Raheen,94403-00012-1,1,4380_7778208_3040411,4380_989 -4380_78155,292,4380_65279,Raheen,94412-00016-1,1,4380_7778208_3040411,4380_989 -4380_78155,290,4380_65280,Raheen,94410-00015-1,1,4380_7778208_3040411,4380_989 -4380_78155,294,4380_65281,Raheen,94404-00018-1,1,4380_7778208_3040411,4380_989 -4380_78155,295,4380_65282,Raheen,94408-00019-1,1,4380_7778208_3040411,4380_989 -4380_78155,293,4380_65283,Raheen,94406-00017-1,1,4380_7778208_3040411,4380_989 -4380_78155,297,4380_65285,Raheen,93690-00008-1,1,4380_7778208_3040407,4380_989 -4380_78155,291,4380_65287,Raheen,94413-00013-1,1,4380_7778208_3040411,4380_989 -4380_78155,296,4380_65288,Raheen,94414-00021-1,1,4380_7778208_3040411,4380_989 -4380_78017,285,4380_65294,City Centre,94949-00009-1,0,4380_7778208_3050401,4380_991 -4380_78017,288,4380_65296,City Centre,94953-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65297,City Centre,94957-00010-1,0,4380_7778208_3050401,4380_991 -4380_78017,291,4380_65298,City Centre,94947-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65299,City Centre,94955-00014-1,0,4380_7778208_3050401,4380_991 -4380_78113,296,4380_653,Dundalk,50169-00021-1,0,4380_7778208_1000908,4380_13 -4380_78017,287,4380_65300,City Centre,94951-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65301,City Centre,94958-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65302,City Centre,94950-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65303,City Centre,94952-00018-1,0,4380_7778208_3050401,4380_991 -4380_78017,295,4380_65304,City Centre,94956-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65305,City Centre,94954-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65306,City Centre,94948-00021-1,0,4380_7778208_3050401,4380_992 -4380_78017,285,4380_65312,City Centre,94979-00009-1,0,4380_7778208_3050401,4380_991 -4380_78017,288,4380_65314,City Centre,94971-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65315,City Centre,94973-00010-1,0,4380_7778208_3050401,4380_991 -4380_78017,291,4380_65316,City Centre,94975-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65317,City Centre,94977-00014-1,0,4380_7778208_3050401,4380_991 -4380_78017,287,4380_65318,City Centre,94981-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65319,City Centre,94974-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65320,City Centre,94980-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65321,City Centre,94982-00018-1,0,4380_7778208_3050401,4380_991 -4380_78017,295,4380_65322,City Centre,94978-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65323,City Centre,94972-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65324,City Centre,94976-00021-1,0,4380_7778208_3050401,4380_992 -4380_77951,285,4380_6533,Navan,5071-00009-1,1,4380_7778208_1070101,4380_79 -4380_78017,285,4380_65330,City Centre,94999-00009-1,0,4380_7778208_3050401,4380_991 -4380_78017,288,4380_65332,City Centre,95005-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65333,City Centre,94995-00010-1,0,4380_7778208_3050401,4380_991 -4380_78017,291,4380_65334,City Centre,94997-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65335,City Centre,95001-00014-1,0,4380_7778208_3050401,4380_991 -4380_78017,287,4380_65336,City Centre,95003-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65337,City Centre,94996-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65338,City Centre,95000-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65339,City Centre,95004-00018-1,0,4380_7778208_3050401,4380_991 -4380_77951,286,4380_6534,Navan,5087-00010-1,1,4380_7778208_1070101,4380_79 -4380_78017,295,4380_65340,City Centre,95002-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65341,City Centre,95006-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65342,City Centre,94998-00021-1,0,4380_7778208_3050401,4380_992 -4380_78017,285,4380_65348,City Centre,95019-00009-1,0,4380_7778208_3050401,4380_991 -4380_77951,288,4380_6535,Navan,5103-00011-1,1,4380_7778208_1070101,4380_79 -4380_78017,288,4380_65350,City Centre,95027-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65351,City Centre,95029-00010-1,0,4380_7778208_3050401,4380_991 -4380_78017,291,4380_65352,City Centre,95021-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65353,City Centre,95023-00014-1,0,4380_7778208_3050401,4380_991 -4380_78017,287,4380_65354,City Centre,95025-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65355,City Centre,95030-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65356,City Centre,95020-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65357,City Centre,95026-00018-1,0,4380_7778208_3050401,4380_991 -4380_78017,295,4380_65358,City Centre,95024-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65359,City Centre,95028-00017-1,0,4380_7778208_3050401,4380_991 -4380_77951,287,4380_6536,Navan,5119-00012-1,1,4380_7778208_1070101,4380_79 -4380_78017,296,4380_65360,City Centre,95022-00021-1,0,4380_7778208_3050401,4380_992 -4380_78017,285,4380_65366,City Centre,95051-00009-1,0,4380_7778208_3050401,4380_991 -4380_78017,288,4380_65368,City Centre,95043-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65369,City Centre,95047-00010-1,0,4380_7778208_3050401,4380_991 -4380_77951,289,4380_6537,Navan,5047-00014-1,1,4380_7778208_1070101,4380_79 -4380_78017,291,4380_65370,City Centre,95049-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65371,City Centre,95045-00014-1,0,4380_7778208_3050401,4380_991 -4380_78017,287,4380_65372,City Centre,95053-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65373,City Centre,95048-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65374,City Centre,95052-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65375,City Centre,95054-00018-1,0,4380_7778208_3050401,4380_991 -4380_78017,295,4380_65376,City Centre,95046-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65377,City Centre,95044-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65378,City Centre,95050-00021-1,0,4380_7778208_3050401,4380_992 -4380_77951,290,4380_6538,Navan,54585-00015-1,1,4380_7778208_1070101,4380_79 -4380_78017,285,4380_65384,City Centre,95069-00009-1,0,4380_7778208_3050401,4380_991 -4380_78017,288,4380_65386,City Centre,95067-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65387,City Centre,95073-00010-1,0,4380_7778208_3050401,4380_991 -4380_78017,291,4380_65388,City Centre,95077-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65389,City Centre,95075-00014-1,0,4380_7778208_3050401,4380_991 -4380_77951,291,4380_6539,Navan,5135-00013-1,1,4380_7778208_1070101,4380_81 -4380_78017,287,4380_65390,City Centre,95071-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65391,City Centre,95074-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65392,City Centre,95070-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65393,City Centre,95072-00018-1,0,4380_7778208_3050401,4380_991 -4380_78017,295,4380_65394,City Centre,95076-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65395,City Centre,95068-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65396,City Centre,95078-00021-1,0,4380_7778208_3050401,4380_992 -4380_77951,292,4380_6540,Navan,54588-00016-1,1,4380_7778208_1070101,4380_79 -4380_78017,285,4380_65402,City Centre,95099-00009-1,0,4380_7778208_3050401,4380_991 -4380_78017,288,4380_65404,City Centre,95101-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65405,City Centre,95097-00010-1,0,4380_7778208_3050401,4380_991 -4380_78017,291,4380_65406,City Centre,95095-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65407,City Centre,95093-00014-1,0,4380_7778208_3050401,4380_991 -4380_78017,287,4380_65408,City Centre,95091-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65409,City Centre,95098-00016-1,0,4380_7778208_3050401,4380_991 -4380_77951,293,4380_6541,Navan,54584-00017-1,1,4380_7778208_1070101,4380_79 -4380_78017,290,4380_65410,City Centre,95100-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65411,City Centre,95092-00018-1,0,4380_7778208_3050401,4380_991 -4380_78017,295,4380_65412,City Centre,95094-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65413,City Centre,95102-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65414,City Centre,95096-00021-1,0,4380_7778208_3050401,4380_992 -4380_77951,294,4380_6542,Navan,54583-00018-1,1,4380_7778208_1070101,4380_79 -4380_78017,285,4380_65420,City Centre,95121-00009-1,0,4380_7778208_3050401,4380_991 -4380_78017,288,4380_65422,City Centre,95123-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65423,City Centre,95117-00010-1,0,4380_7778208_3050401,4380_991 -4380_78017,291,4380_65424,City Centre,95119-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65425,City Centre,95125-00014-1,0,4380_7778208_3050401,4380_991 -4380_78017,287,4380_65426,City Centre,95115-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65427,City Centre,95118-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65428,City Centre,95122-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65429,City Centre,95116-00018-1,0,4380_7778208_3050401,4380_991 -4380_77951,295,4380_6543,Navan,54587-00019-1,1,4380_7778208_1070101,4380_79 -4380_78017,295,4380_65430,City Centre,95126-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65431,City Centre,95124-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65432,City Centre,95120-00021-1,0,4380_7778208_3050401,4380_992 -4380_78017,285,4380_65438,City Centre,95149-00009-1,0,4380_7778208_3050401,4380_991 -4380_77951,296,4380_6544,Navan,54586-00021-1,1,4380_7778208_1070101,4380_81 -4380_78017,288,4380_65440,City Centre,95141-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65441,City Centre,95147-00010-1,0,4380_7778208_3050401,4380_991 -4380_78017,291,4380_65442,City Centre,95145-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65443,City Centre,95143-00014-1,0,4380_7778208_3050401,4380_991 -4380_78017,287,4380_65444,City Centre,95139-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65445,City Centre,95148-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65446,City Centre,95150-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65447,City Centre,95140-00018-1,0,4380_7778208_3050401,4380_991 -4380_78017,295,4380_65448,City Centre,95144-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65449,City Centre,95142-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65450,City Centre,95146-00021-1,0,4380_7778208_3050401,4380_992 -4380_78017,285,4380_65456,City Centre,95167-00009-1,0,4380_7778208_3050401,4380_991 -4380_78017,288,4380_65458,City Centre,95173-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65459,City Centre,95169-00010-1,0,4380_7778208_3050401,4380_991 -4380_77951,297,4380_6546,Navan,5138-00008-1,1,4380_7778208_1070101,4380_78 -4380_78017,291,4380_65460,City Centre,95163-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65461,City Centre,95165-00014-1,0,4380_7778208_3050401,4380_991 -4380_78017,287,4380_65462,City Centre,95171-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65463,City Centre,95170-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65464,City Centre,95168-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65465,City Centre,95172-00018-1,0,4380_7778208_3050401,4380_991 -4380_78017,295,4380_65466,City Centre,95166-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65467,City Centre,95174-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65468,City Centre,95164-00021-1,0,4380_7778208_3050401,4380_992 -4380_78017,285,4380_65474,City Centre,95195-00009-1,0,4380_7778208_3050401,4380_991 -4380_78017,288,4380_65476,City Centre,95197-00011-1,0,4380_7778208_3050401,4380_991 -4380_78017,286,4380_65477,City Centre,95189-00010-1,0,4380_7778208_3050401,4380_991 -4380_78017,291,4380_65478,City Centre,95191-00013-1,0,4380_7778208_3050401,4380_992 -4380_78017,289,4380_65479,City Centre,95187-00014-1,0,4380_7778208_3050401,4380_991 -4380_78017,287,4380_65480,City Centre,95193-00012-1,0,4380_7778208_3050401,4380_991 -4380_78017,292,4380_65481,City Centre,95190-00016-1,0,4380_7778208_3050401,4380_991 -4380_78017,290,4380_65482,City Centre,95196-00015-1,0,4380_7778208_3050401,4380_991 -4380_78017,294,4380_65483,City Centre,95194-00018-1,0,4380_7778208_3050401,4380_991 -4380_78017,295,4380_65484,City Centre,95188-00019-1,0,4380_7778208_3050401,4380_991 -4380_78017,293,4380_65485,City Centre,95198-00017-1,0,4380_7778208_3050401,4380_991 -4380_78017,296,4380_65486,City Centre,95192-00021-1,0,4380_7778208_3050401,4380_992 -4380_78135,285,4380_65492,City Centre,94939-00009-1,0,4380_7778208_3050401,4380_993 -4380_78135,288,4380_65494,City Centre,94943-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65495,City Centre,94941-00010-1,0,4380_7778208_3050401,4380_993 -4380_78135,291,4380_65496,City Centre,94935-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65497,City Centre,94945-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65498,City Centre,94937-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65499,City Centre,94942-00016-1,0,4380_7778208_3050401,4380_993 -4380_78113,297,4380_655,Dundalk,50068-00008-1,0,4380_7778208_1000907,4380_10 -4380_78135,290,4380_65500,City Centre,94940-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65501,City Centre,94938-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65502,City Centre,94946-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65503,City Centre,94944-00017-1,0,4380_7778208_3050401,4380_993 -4380_78135,296,4380_65504,City Centre,94936-00021-1,0,4380_7778208_3050401,4380_994 -4380_78135,285,4380_65510,City Centre,94969-00009-1,0,4380_7778208_3050401,4380_993 -4380_78135,288,4380_65512,City Centre,94963-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65513,City Centre,94959-00010-1,0,4380_7778208_3050401,4380_993 -4380_78135,291,4380_65514,City Centre,94965-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65515,City Centre,94961-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65516,City Centre,94967-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65517,City Centre,94960-00016-1,0,4380_7778208_3050401,4380_993 -4380_78135,290,4380_65518,City Centre,94970-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65519,City Centre,94968-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65520,City Centre,94962-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65521,City Centre,94964-00017-1,0,4380_7778208_3050401,4380_993 -4380_78135,296,4380_65522,City Centre,94966-00021-1,0,4380_7778208_3050401,4380_994 -4380_78135,285,4380_65528,City Centre,94983-00009-1,0,4380_7778208_3050401,4380_993 -4380_77952,285,4380_6553,Bailieboro,5159-00009-1,0,4380_7778208_1080101,4380_82 -4380_78135,288,4380_65530,City Centre,94993-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65531,City Centre,94989-00010-1,0,4380_7778208_3050401,4380_993 -4380_78135,291,4380_65532,City Centre,94987-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65533,City Centre,94985-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65534,City Centre,94991-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65535,City Centre,94990-00016-1,0,4380_7778208_3050401,4380_993 -4380_78135,290,4380_65536,City Centre,94984-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65537,City Centre,94992-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65538,City Centre,94986-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65539,City Centre,94994-00017-1,0,4380_7778208_3050401,4380_993 -4380_77952,286,4380_6554,Bailieboro,5172-00010-1,0,4380_7778208_1080101,4380_82 -4380_78135,296,4380_65540,City Centre,94988-00021-1,0,4380_7778208_3050401,4380_994 -4380_78135,285,4380_65546,City Centre,95013-00009-1,0,4380_7778208_3050401,4380_993 -4380_78135,288,4380_65548,City Centre,95007-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65549,City Centre,95017-00010-1,0,4380_7778208_3050401,4380_993 -4380_77952,288,4380_6555,Bailieboro,5180-00011-1,0,4380_7778208_1080101,4380_82 -4380_78135,291,4380_65550,City Centre,95011-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65551,City Centre,95009-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65552,City Centre,95015-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65553,City Centre,95018-00016-1,0,4380_7778208_3050401,4380_993 -4380_78135,290,4380_65554,City Centre,95014-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65555,City Centre,95016-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65556,City Centre,95010-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65557,City Centre,95008-00017-1,0,4380_7778208_3050401,4380_993 -4380_78135,296,4380_65558,City Centre,95012-00021-1,0,4380_7778208_3050401,4380_994 -4380_77952,287,4380_6556,Bailieboro,5198-00012-1,0,4380_7778208_1080101,4380_82 -4380_78135,285,4380_65564,City Centre,95041-00009-1,0,4380_7778208_3050401,4380_993 -4380_78135,288,4380_65566,City Centre,95039-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65567,City Centre,95031-00010-1,0,4380_7778208_3050401,4380_993 -4380_78135,291,4380_65568,City Centre,95033-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65569,City Centre,95037-00014-1,0,4380_7778208_3050401,4380_993 -4380_77952,289,4380_6557,Bailieboro,5141-00014-1,0,4380_7778208_1080101,4380_82 -4380_78135,287,4380_65570,City Centre,95035-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65571,City Centre,95032-00016-1,0,4380_7778208_3050401,4380_993 -4380_78135,290,4380_65572,City Centre,95042-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65573,City Centre,95036-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65574,City Centre,95038-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65575,City Centre,95040-00017-1,0,4380_7778208_3050401,4380_993 -4380_78135,296,4380_65576,City Centre,95034-00021-1,0,4380_7778208_3050401,4380_994 -4380_77952,290,4380_6558,Bailieboro,54598-00015-1,0,4380_7778208_1080101,4380_82 -4380_78135,285,4380_65582,City Centre,95055-00009-1,0,4380_7778208_3050401,4380_993 -4380_78135,288,4380_65584,City Centre,95059-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65585,City Centre,95063-00010-1,0,4380_7778208_3050401,4380_993 -4380_78135,291,4380_65586,City Centre,95065-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65587,City Centre,95061-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65588,City Centre,95057-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65589,City Centre,95064-00016-1,0,4380_7778208_3050401,4380_993 -4380_77952,291,4380_6559,Bailieboro,5213-00013-1,0,4380_7778208_1080101,4380_83 -4380_78135,290,4380_65590,City Centre,95056-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65591,City Centre,95058-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65592,City Centre,95062-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65593,City Centre,95060-00017-1,0,4380_7778208_3050401,4380_993 -4380_78135,296,4380_65594,City Centre,95066-00021-1,0,4380_7778208_3050401,4380_994 -4380_77952,292,4380_6560,Bailieboro,54596-00016-1,0,4380_7778208_1080101,4380_82 -4380_78135,285,4380_65600,City Centre,95087-00009-1,0,4380_7778208_3050401,4380_993 -4380_78135,288,4380_65602,City Centre,95083-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65603,City Centre,95081-00010-1,0,4380_7778208_3050401,4380_993 -4380_78135,291,4380_65604,City Centre,95079-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65605,City Centre,95085-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65606,City Centre,95089-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65607,City Centre,95082-00016-1,0,4380_7778208_3050401,4380_993 -4380_78135,290,4380_65608,City Centre,95088-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65609,City Centre,95090-00018-1,0,4380_7778208_3050401,4380_993 -4380_77952,293,4380_6561,Bailieboro,54595-00017-1,0,4380_7778208_1080101,4380_82 -4380_78135,295,4380_65610,City Centre,95086-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65611,City Centre,95084-00017-1,0,4380_7778208_3050401,4380_993 -4380_78135,296,4380_65612,City Centre,95080-00021-1,0,4380_7778208_3050401,4380_994 -4380_78135,285,4380_65618,City Centre,95109-00009-1,0,4380_7778208_3050401,4380_993 -4380_77952,294,4380_6562,Bailieboro,54597-00018-1,0,4380_7778208_1080101,4380_82 -4380_78135,288,4380_65620,City Centre,95113-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65621,City Centre,95111-00010-1,0,4380_7778208_3050401,4380_993 -4380_78135,291,4380_65622,City Centre,95107-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65623,City Centre,95105-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65624,City Centre,95103-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65625,City Centre,95112-00016-1,0,4380_7778208_3050401,4380_993 -4380_78135,290,4380_65626,City Centre,95110-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65627,City Centre,95104-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65628,City Centre,95106-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65629,City Centre,95114-00017-1,0,4380_7778208_3050401,4380_993 -4380_77952,295,4380_6563,Bailieboro,54600-00019-1,0,4380_7778208_1080101,4380_82 -4380_78135,296,4380_65630,City Centre,95108-00021-1,0,4380_7778208_3050401,4380_994 -4380_78135,285,4380_65636,City Centre,95135-00009-1,0,4380_7778208_3050401,4380_993 -4380_78135,288,4380_65638,City Centre,95131-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65639,City Centre,95129-00010-1,0,4380_7778208_3050401,4380_993 -4380_77952,296,4380_6564,Bailieboro,54599-00021-1,0,4380_7778208_1080101,4380_83 -4380_78135,291,4380_65640,City Centre,95127-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65641,City Centre,95137-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65642,City Centre,95133-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65643,City Centre,95130-00016-1,0,4380_7778208_3050401,4380_993 -4380_78135,290,4380_65644,City Centre,95136-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65645,City Centre,95134-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65646,City Centre,95138-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65647,City Centre,95132-00017-1,0,4380_7778208_3050401,4380_993 -4380_78135,296,4380_65648,City Centre,95128-00021-1,0,4380_7778208_3050401,4380_994 -4380_78135,285,4380_65654,City Centre,95153-00009-1,0,4380_7778208_3050401,4380_993 -4380_78135,288,4380_65656,City Centre,95151-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65657,City Centre,95157-00010-1,0,4380_7778208_3050401,4380_993 -4380_78135,291,4380_65658,City Centre,95155-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65659,City Centre,95161-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65660,City Centre,95159-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65661,City Centre,95158-00016-1,0,4380_7778208_3050401,4380_993 -4380_78135,290,4380_65662,City Centre,95154-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65663,City Centre,95160-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65664,City Centre,95162-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65665,City Centre,95152-00017-1,0,4380_7778208_3050401,4380_993 -4380_78135,296,4380_65666,City Centre,95156-00021-1,0,4380_7778208_3050401,4380_994 -4380_78135,285,4380_65672,City Centre,95177-00009-1,0,4380_7778208_3050401,4380_993 -4380_78135,288,4380_65674,City Centre,95179-00011-1,0,4380_7778208_3050401,4380_993 -4380_78135,286,4380_65675,City Centre,95181-00010-1,0,4380_7778208_3050401,4380_993 -4380_78135,291,4380_65676,City Centre,95183-00013-1,0,4380_7778208_3050401,4380_994 -4380_78135,289,4380_65677,City Centre,95185-00014-1,0,4380_7778208_3050401,4380_993 -4380_78135,287,4380_65678,City Centre,95175-00012-1,0,4380_7778208_3050401,4380_993 -4380_78135,292,4380_65679,City Centre,95182-00016-1,0,4380_7778208_3050401,4380_993 -4380_78135,290,4380_65680,City Centre,95178-00015-1,0,4380_7778208_3050401,4380_993 -4380_78135,294,4380_65681,City Centre,95176-00018-1,0,4380_7778208_3050401,4380_993 -4380_78135,295,4380_65682,City Centre,95186-00019-1,0,4380_7778208_3050401,4380_993 -4380_78135,293,4380_65683,City Centre,95180-00017-1,0,4380_7778208_3050401,4380_993 -4380_78135,296,4380_65684,City Centre,95184-00021-1,0,4380_7778208_3050401,4380_994 -4380_78135,297,4380_65686,St. Mary's Park,95284-00008-1,1,4380_7778208_3060401,4380_995 -4380_78135,297,4380_65688,City Centre,95285-00008-1,1,4380_7778208_3060401,4380_996 -4380_78135,297,4380_65690,St. Mary's Park,95311-00008-1,1,4380_7778208_3060401,4380_995 -4380_78135,297,4380_65692,City Centre,95312-00008-1,1,4380_7778208_3060401,4380_996 -4380_78135,297,4380_65694,St. Mary's Park,95338-00008-1,1,4380_7778208_3060401,4380_995 -4380_78135,297,4380_65696,City Centre,95339-00008-1,1,4380_7778208_3060401,4380_996 -4380_78135,297,4380_65698,St. Mary's Park,95365-00008-1,1,4380_7778208_3060401,4380_995 -4380_78135,297,4380_65700,City Centre,95366-00008-1,1,4380_7778208_3060401,4380_996 -4380_78135,297,4380_65702,St. Mary's Park,95392-00008-1,1,4380_7778208_3060401,4380_995 -4380_78135,297,4380_65704,City Centre,95393-00008-1,1,4380_7778208_3060401,4380_996 -4380_78135,297,4380_65706,St. Mary's Park,95419-00008-1,1,4380_7778208_3060401,4380_995 -4380_78135,297,4380_65708,City Centre,95420-00008-1,1,4380_7778208_3060401,4380_996 -4380_77952,285,4380_6571,Bailieboro,5161-00009-1,0,4380_7778208_1080101,4380_82 -4380_78135,297,4380_65710,St. Mary's Park,95446-00008-1,1,4380_7778208_3060401,4380_995 -4380_78135,297,4380_65712,City Centre,95447-00008-1,1,4380_7778208_3060401,4380_996 -4380_78135,297,4380_65714,St. Mary's Park,95473-00008-1,1,4380_7778208_3060401,4380_995 -4380_78135,297,4380_65716,City Centre,95474-00008-1,1,4380_7778208_3060401,4380_996 -4380_78018,291,4380_65718,Moyross,95199-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,296,4380_65719,Moyross,95200-00021-1,0,4380_7778208_3060401,4380_998 -4380_77952,286,4380_6572,Bailieboro,5174-00010-1,0,4380_7778208_1080101,4380_82 -4380_78018,285,4380_65725,Moyross,95201-00009-1,0,4380_7778208_3060401,4380_998 -4380_78018,288,4380_65726,Moyross,95207-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65727,Moyross,95205-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65728,Moyross,95209-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65729,Moyross,95203-00012-1,0,4380_7778208_3060401,4380_998 -4380_77952,288,4380_6573,Bailieboro,5182-00011-1,0,4380_7778208_1080101,4380_82 -4380_78018,292,4380_65730,Moyross,95206-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65731,Moyross,95202-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65732,Moyross,95204-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65733,Moyross,95210-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65734,Moyross,95208-00017-1,0,4380_7778208_3060401,4380_998 -4380_77952,287,4380_6574,Bailieboro,5200-00012-1,0,4380_7778208_1080101,4380_82 -4380_78018,285,4380_65740,Moyross,95223-00009-1,0,4380_7778208_3060401,4380_998 -4380_78018,288,4380_65742,Moyross,95233-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65743,Moyross,95229-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65744,Moyross,95227-00013-1,0,4380_7778208_3060401,4380_1000 -4380_78018,289,4380_65745,Moyross,95225-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65746,Moyross,95231-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65747,Moyross,95230-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65748,Moyross,95224-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65749,Moyross,95232-00018-1,0,4380_7778208_3060401,4380_998 -4380_77952,289,4380_6575,Bailieboro,5143-00014-1,0,4380_7778208_1080101,4380_82 -4380_78018,295,4380_65750,Moyross,95226-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65751,Moyross,95234-00017-1,0,4380_7778208_3060401,4380_998 -4380_78018,296,4380_65752,Moyross,95228-00021-1,0,4380_7778208_3060401,4380_1000 -4380_78018,285,4380_65758,Moyross,95255-00009-1,0,4380_7778208_3060401,4380_998 -4380_77952,290,4380_6576,Bailieboro,54611-00015-1,0,4380_7778208_1080101,4380_82 -4380_78018,288,4380_65760,Moyross,95247-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65761,Moyross,95257-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65762,Moyross,95249-00013-1,0,4380_7778208_3060401,4380_1000 -4380_78018,289,4380_65763,Moyross,95253-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65764,Moyross,95251-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65765,Moyross,95258-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65766,Moyross,95256-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65767,Moyross,95252-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65768,Moyross,95254-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65769,Moyross,95248-00017-1,0,4380_7778208_3060401,4380_998 -4380_77952,291,4380_6577,Bailieboro,5215-00013-1,0,4380_7778208_1080101,4380_83 -4380_78018,296,4380_65770,Moyross,95250-00021-1,0,4380_7778208_3060401,4380_1000 -4380_78018,297,4380_65772,City Centre,95271-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65778,Moyross,95276-00009-1,0,4380_7778208_3060401,4380_998 -4380_77952,292,4380_6578,Bailieboro,54608-00016-1,0,4380_7778208_1080101,4380_82 -4380_78018,288,4380_65780,Moyross,95274-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65781,Moyross,95280-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65782,Moyross,95282-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65783,Moyross,95278-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65784,Moyross,95272-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65785,Moyross,95281-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65786,Moyross,95277-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65787,Moyross,95273-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65788,Moyross,95279-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65789,Moyross,95275-00017-1,0,4380_7778208_3060401,4380_998 -4380_77952,293,4380_6579,Bailieboro,54609-00017-1,0,4380_7778208_1080101,4380_82 -4380_78018,296,4380_65790,Moyross,95283-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65792,City Centre,95298-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65798,Moyross,95299-00009-1,0,4380_7778208_3060401,4380_998 -4380_77952,294,4380_6580,Bailieboro,54607-00018-1,0,4380_7778208_1080101,4380_82 -4380_78018,288,4380_65800,Moyross,95301-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65801,Moyross,95303-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65802,Moyross,95305-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65803,Moyross,95307-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65804,Moyross,95309-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65805,Moyross,95304-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65806,Moyross,95300-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65807,Moyross,95310-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65808,Moyross,95308-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65809,Moyross,95302-00017-1,0,4380_7778208_3060401,4380_998 -4380_77952,295,4380_6581,Bailieboro,54612-00019-1,0,4380_7778208_1080101,4380_82 -4380_78018,296,4380_65810,Moyross,95306-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65812,City Centre,95325-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65818,Moyross,95336-00009-1,0,4380_7778208_3060401,4380_998 -4380_77952,296,4380_6582,Bailieboro,54610-00021-1,0,4380_7778208_1080101,4380_83 -4380_78018,288,4380_65820,Moyross,95328-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65821,Moyross,95332-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65822,Moyross,95334-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65823,Moyross,95326-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65824,Moyross,95330-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65825,Moyross,95333-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65826,Moyross,95337-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65827,Moyross,95331-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65828,Moyross,95327-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65829,Moyross,95329-00017-1,0,4380_7778208_3060401,4380_998 -4380_78018,296,4380_65830,Moyross,95335-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65832,City Centre,95352-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65838,Moyross,95355-00009-1,0,4380_7778208_3060401,4380_998 -4380_77952,297,4380_6584,Bailieboro,5221-00008-1,0,4380_7778208_1080101,4380_82 -4380_78018,288,4380_65840,Moyross,95353-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65841,Moyross,95363-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65842,Moyross,95359-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65843,Moyross,95361-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65844,Moyross,95357-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65845,Moyross,95364-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65846,Moyross,95356-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65847,Moyross,95358-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65848,Moyross,95362-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65849,Moyross,95354-00017-1,0,4380_7778208_3060401,4380_998 -4380_78018,296,4380_65850,Moyross,95360-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65852,City Centre,95379-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65858,Moyross,95390-00009-1,0,4380_7778208_3060401,4380_998 -4380_78018,288,4380_65860,Moyross,95382-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65861,Moyross,95386-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65862,Moyross,95384-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65863,Moyross,95380-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65864,Moyross,95388-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65865,Moyross,95387-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65866,Moyross,95391-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65867,Moyross,95389-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65868,Moyross,95381-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65869,Moyross,95383-00017-1,0,4380_7778208_3060401,4380_998 -4380_78018,296,4380_65870,Moyross,95385-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65872,City Centre,95406-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65878,Moyross,95407-00009-1,0,4380_7778208_3060401,4380_998 -4380_78018,288,4380_65880,Moyross,95413-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65881,Moyross,95409-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65882,Moyross,95417-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65883,Moyross,95411-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65884,Moyross,95415-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65885,Moyross,95410-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65886,Moyross,95408-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65887,Moyross,95416-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65888,Moyross,95412-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65889,Moyross,95414-00017-1,0,4380_7778208_3060401,4380_998 -4380_78018,296,4380_65890,Moyross,95418-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65892,City Centre,95433-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65898,Moyross,95444-00009-1,0,4380_7778208_3060401,4380_998 -4380_78018,288,4380_65900,Moyross,95440-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65901,Moyross,95436-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65902,Moyross,95438-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65903,Moyross,95434-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65904,Moyross,95442-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65905,Moyross,95437-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65906,Moyross,95445-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65907,Moyross,95443-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65908,Moyross,95435-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65909,Moyross,95441-00017-1,0,4380_7778208_3060401,4380_998 -4380_77952,285,4380_6591,Bailieboro,5165-00009-1,0,4380_7778208_1080101,4380_82 -4380_78018,296,4380_65910,Moyross,95439-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65912,City Centre,95460-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65918,Moyross,95467-00009-1,0,4380_7778208_3060401,4380_998 -4380_77952,286,4380_6592,Bailieboro,5178-00010-1,0,4380_7778208_1080101,4380_82 -4380_78018,288,4380_65920,Moyross,95463-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65921,Moyross,95461-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65922,Moyross,95469-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65923,Moyross,95471-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65924,Moyross,95465-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65925,Moyross,95462-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65926,Moyross,95468-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65927,Moyross,95466-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65928,Moyross,95472-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65929,Moyross,95464-00017-1,0,4380_7778208_3060401,4380_998 -4380_77952,288,4380_6593,Bailieboro,5186-00011-1,0,4380_7778208_1080101,4380_82 -4380_78018,296,4380_65930,Moyross,95470-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65932,City Centre,95487-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65938,Moyross,95496-00009-1,0,4380_7778208_3060401,4380_998 -4380_77952,287,4380_6594,Bailieboro,5204-00012-1,0,4380_7778208_1080101,4380_82 -4380_78018,288,4380_65940,Moyross,95494-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65941,Moyross,95488-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65942,Moyross,95498-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65943,Moyross,95492-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65944,Moyross,95490-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65945,Moyross,95489-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65946,Moyross,95497-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65947,Moyross,95491-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65948,Moyross,95493-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65949,Moyross,95495-00017-1,0,4380_7778208_3060401,4380_998 -4380_77952,289,4380_6595,Bailieboro,5147-00014-1,0,4380_7778208_1080101,4380_82 -4380_78018,296,4380_65950,Moyross,95499-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65952,City Centre,95512-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65958,Moyross,95521-00009-1,0,4380_7778208_3060401,4380_998 -4380_77952,290,4380_6596,Bailieboro,54632-00015-1,0,4380_7778208_1080101,4380_82 -4380_78018,288,4380_65960,Moyross,95519-00011-1,0,4380_7778208_3060401,4380_998 -4380_78018,286,4380_65961,Moyross,95523-00010-1,0,4380_7778208_3060401,4380_998 -4380_78018,291,4380_65962,Moyross,95513-00013-1,0,4380_7778208_3060401,4380_998 -4380_78018,289,4380_65963,Moyross,95517-00014-1,0,4380_7778208_3060401,4380_998 -4380_78018,287,4380_65964,Moyross,95515-00012-1,0,4380_7778208_3060401,4380_998 -4380_78018,292,4380_65965,Moyross,95524-00016-1,0,4380_7778208_3060401,4380_998 -4380_78018,290,4380_65966,Moyross,95522-00015-1,0,4380_7778208_3060401,4380_998 -4380_78018,294,4380_65967,Moyross,95516-00018-1,0,4380_7778208_3060401,4380_998 -4380_78018,295,4380_65968,Moyross,95518-00019-1,0,4380_7778208_3060401,4380_998 -4380_78018,293,4380_65969,Moyross,95520-00017-1,0,4380_7778208_3060401,4380_998 -4380_77952,291,4380_6597,Bailieboro,5217-00013-1,0,4380_7778208_1080101,4380_83 -4380_78018,296,4380_65970,Moyross,95514-00021-1,0,4380_7778208_3060401,4380_998 -4380_78018,297,4380_65972,City Centre,95537-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65978,Moyross,95546-00009-1,0,4380_7778208_3060401,4380_999 -4380_77952,292,4380_6598,Bailieboro,54634-00016-1,0,4380_7778208_1080101,4380_82 -4380_78018,288,4380_65980,Moyross,95540-00011-1,0,4380_7778208_3060401,4380_999 -4380_78018,286,4380_65981,Moyross,95544-00010-1,0,4380_7778208_3060401,4380_999 -4380_78018,291,4380_65982,Moyross,95542-00013-1,0,4380_7778208_3060401,4380_999 -4380_78018,289,4380_65983,Moyross,95538-00014-1,0,4380_7778208_3060401,4380_999 -4380_78018,287,4380_65984,Moyross,95548-00012-1,0,4380_7778208_3060401,4380_999 -4380_78018,292,4380_65985,Moyross,95545-00016-1,0,4380_7778208_3060401,4380_999 -4380_78018,290,4380_65986,Moyross,95547-00015-1,0,4380_7778208_3060401,4380_999 -4380_78018,294,4380_65987,Moyross,95549-00018-1,0,4380_7778208_3060401,4380_999 -4380_78018,295,4380_65988,Moyross,95539-00019-1,0,4380_7778208_3060401,4380_999 -4380_78018,293,4380_65989,Moyross,95541-00017-1,0,4380_7778208_3060401,4380_999 -4380_77952,293,4380_6599,Bailieboro,54633-00017-1,0,4380_7778208_1080101,4380_82 -4380_78018,296,4380_65990,Moyross,95543-00021-1,0,4380_7778208_3060401,4380_999 -4380_78018,297,4380_65992,City Centre,95562-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_65998,Moyross,95565-00009-1,0,4380_7778208_3060401,4380_999 -4380_77946,296,4380_66,Dundalk,50234-00021-1,0,4380_7778208_1000910,4380_2 -4380_77952,294,4380_6600,Bailieboro,54631-00018-1,0,4380_7778208_1080101,4380_82 -4380_78018,288,4380_66000,Moyross,95573-00011-1,0,4380_7778208_3060401,4380_999 -4380_78018,286,4380_66001,Moyross,95569-00010-1,0,4380_7778208_3060401,4380_999 -4380_78018,291,4380_66002,Moyross,95571-00013-1,0,4380_7778208_3060401,4380_999 -4380_78018,289,4380_66003,Moyross,95567-00014-1,0,4380_7778208_3060401,4380_999 -4380_78018,287,4380_66004,Moyross,95563-00012-1,0,4380_7778208_3060401,4380_999 -4380_78018,292,4380_66005,Moyross,95570-00016-1,0,4380_7778208_3060401,4380_999 -4380_78018,290,4380_66006,Moyross,95566-00015-1,0,4380_7778208_3060401,4380_999 -4380_78018,294,4380_66007,Moyross,95564-00018-1,0,4380_7778208_3060401,4380_999 -4380_78018,295,4380_66008,Moyross,95568-00019-1,0,4380_7778208_3060401,4380_999 -4380_78018,293,4380_66009,Moyross,95574-00017-1,0,4380_7778208_3060401,4380_999 -4380_77952,295,4380_6601,Bailieboro,54630-00019-1,0,4380_7778208_1080101,4380_82 -4380_78018,296,4380_66010,Moyross,95572-00021-1,0,4380_7778208_3060401,4380_999 -4380_78018,297,4380_66012,City Centre,95587-00008-1,0,4380_7778208_3060401,4380_997 -4380_78018,285,4380_66018,Moyross,95588-00009-1,0,4380_7778208_3060401,4380_999 -4380_77952,296,4380_6602,Bailieboro,54629-00021-1,0,4380_7778208_1080101,4380_83 -4380_78018,288,4380_66020,Moyross,95596-00011-1,0,4380_7778208_3060401,4380_999 -4380_78018,286,4380_66021,Moyross,95592-00010-1,0,4380_7778208_3060401,4380_999 -4380_78018,291,4380_66022,Moyross,95598-00013-1,0,4380_7778208_3060401,4380_999 -4380_78018,289,4380_66023,Moyross,95590-00014-1,0,4380_7778208_3060401,4380_999 -4380_78018,287,4380_66024,Moyross,95594-00012-1,0,4380_7778208_3060401,4380_999 -4380_78018,292,4380_66025,Moyross,95593-00016-1,0,4380_7778208_3060401,4380_999 -4380_78018,290,4380_66026,Moyross,95589-00015-1,0,4380_7778208_3060401,4380_999 -4380_78018,294,4380_66027,Moyross,95595-00018-1,0,4380_7778208_3060401,4380_999 -4380_78018,295,4380_66028,Moyross,95591-00019-1,0,4380_7778208_3060401,4380_999 -4380_78018,293,4380_66029,Moyross,95597-00017-1,0,4380_7778208_3060401,4380_999 -4380_78018,296,4380_66030,Moyross,95599-00021-1,0,4380_7778208_3060401,4380_999 -4380_78018,285,4380_66036,Moyross,95620-00009-1,0,4380_7778208_3060401,4380_999 -4380_78018,288,4380_66038,Moyross,95622-00011-1,0,4380_7778208_3060401,4380_999 -4380_78018,286,4380_66039,Moyross,95612-00010-1,0,4380_7778208_3060401,4380_999 -4380_78018,291,4380_66040,Moyross,95614-00013-1,0,4380_7778208_3060401,4380_999 -4380_78018,289,4380_66041,Moyross,95618-00014-1,0,4380_7778208_3060401,4380_999 -4380_78018,287,4380_66042,Moyross,95616-00012-1,0,4380_7778208_3060401,4380_999 -4380_78018,292,4380_66043,Moyross,95613-00016-1,0,4380_7778208_3060401,4380_999 -4380_78018,290,4380_66044,Moyross,95621-00015-1,0,4380_7778208_3060401,4380_999 -4380_78018,294,4380_66045,Moyross,95617-00018-1,0,4380_7778208_3060401,4380_999 -4380_78018,295,4380_66046,Moyross,95619-00019-1,0,4380_7778208_3060401,4380_999 -4380_78018,293,4380_66047,Moyross,95623-00017-1,0,4380_7778208_3060401,4380_999 -4380_78018,296,4380_66048,Moyross,95615-00021-1,0,4380_7778208_3060401,4380_999 -4380_78018,285,4380_66054,Edward St.,95219-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66056,Edward St.,95213-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66057,Edward St.,95217-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66058,Edward St.,95211-00013-1,1,4380_7778208_3060401,4380_1003 -4380_78018,289,4380_66059,Edward St.,95215-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66060,Edward St.,95221-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66061,Edward St.,95218-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66062,Edward St.,95220-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66063,Edward St.,95222-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66064,Edward St.,95216-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66065,Edward St.,95214-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66066,Edward St.,95212-00021-1,1,4380_7778208_3060401,4380_1003 -4380_78018,285,4380_66072,Edward St.,95239-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66074,Edward St.,95237-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66075,Edward St.,95245-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66076,Edward St.,95241-00013-1,1,4380_7778208_3060401,4380_1003 -4380_78018,289,4380_66077,Edward St.,95235-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66078,Edward St.,95243-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66079,Edward St.,95246-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66080,Edward St.,95240-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66081,Edward St.,95244-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66082,Edward St.,95236-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66083,Edward St.,95238-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66084,Edward St.,95242-00021-1,1,4380_7778208_3060401,4380_1003 -4380_77952,285,4380_6609,Kells,5160-00009-1,1,4380_7778208_1080101,4380_84 -4380_78018,285,4380_66090,Edward St.,95263-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66092,Edward St.,95265-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66093,Edward St.,95267-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66094,Edward St.,95269-00013-1,1,4380_7778208_3060401,4380_1003 -4380_78018,289,4380_66095,Edward St.,95261-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66096,Edward St.,95259-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66097,Edward St.,95268-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66098,Edward St.,95264-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66099,Edward St.,95260-00018-1,1,4380_7778208_3060401,4380_1001 -4380_77952,286,4380_6610,Kells,5173-00010-1,1,4380_7778208_1080101,4380_84 -4380_78018,295,4380_66100,Edward St.,95262-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66101,Edward St.,95266-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66102,Edward St.,95270-00021-1,1,4380_7778208_3060401,4380_1003 -4380_78018,285,4380_66108,Edward St.,95288-00009-1,1,4380_7778208_3060401,4380_1001 -4380_77952,288,4380_6611,Kells,5181-00011-1,1,4380_7778208_1080101,4380_84 -4380_78018,288,4380_66110,Edward St.,95292-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66111,Edward St.,95294-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66112,Edward St.,95296-00013-1,1,4380_7778208_3060401,4380_1003 -4380_78018,289,4380_66113,Edward St.,95286-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66114,Edward St.,95290-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66115,Edward St.,95295-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66116,Edward St.,95289-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66117,Edward St.,95291-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66118,Edward St.,95287-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66119,Edward St.,95293-00017-1,1,4380_7778208_3060401,4380_1001 -4380_77952,287,4380_6612,Kells,5199-00012-1,1,4380_7778208_1080101,4380_84 -4380_78018,296,4380_66120,Edward St.,95297-00021-1,1,4380_7778208_3060401,4380_1003 -4380_78018,285,4380_66126,Edward St.,95321-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66128,Edward St.,95319-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66129,Edward St.,95313-00010-1,1,4380_7778208_3060401,4380_1001 -4380_77952,289,4380_6613,Kells,5142-00014-1,1,4380_7778208_1080101,4380_84 -4380_78018,291,4380_66130,Edward St.,95315-00013-1,1,4380_7778208_3060401,4380_1001 -4380_78018,289,4380_66131,Edward St.,95317-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66132,Edward St.,95323-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66133,Edward St.,95314-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66134,Edward St.,95322-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66135,Edward St.,95324-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66136,Edward St.,95318-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66137,Edward St.,95320-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66138,Edward St.,95316-00021-1,1,4380_7778208_3060401,4380_1001 -4380_77952,290,4380_6614,Kells,54606-00015-1,1,4380_7778208_1080101,4380_84 -4380_78018,285,4380_66144,Edward St.,95344-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66146,Edward St.,95342-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66147,Edward St.,95350-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66148,Edward St.,95346-00013-1,1,4380_7778208_3060401,4380_1001 -4380_78018,289,4380_66149,Edward St.,95348-00014-1,1,4380_7778208_3060401,4380_1001 -4380_77952,291,4380_6615,Kells,5214-00013-1,1,4380_7778208_1080101,4380_85 -4380_78018,287,4380_66150,Edward St.,95340-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66151,Edward St.,95351-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66152,Edward St.,95345-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66153,Edward St.,95341-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66154,Edward St.,95349-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66155,Edward St.,95343-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66156,Edward St.,95347-00021-1,1,4380_7778208_3060401,4380_1001 -4380_77952,292,4380_6616,Kells,54604-00016-1,1,4380_7778208_1080101,4380_84 -4380_78018,285,4380_66162,Edward St.,95367-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66164,Edward St.,95369-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66165,Edward St.,95377-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66166,Edward St.,95371-00013-1,1,4380_7778208_3060401,4380_1001 -4380_78018,289,4380_66167,Edward St.,95375-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66168,Edward St.,95373-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66169,Edward St.,95378-00016-1,1,4380_7778208_3060401,4380_1001 -4380_77952,293,4380_6617,Kells,54603-00017-1,1,4380_7778208_1080101,4380_84 -4380_78018,290,4380_66170,Edward St.,95368-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66171,Edward St.,95374-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66172,Edward St.,95376-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66173,Edward St.,95370-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66174,Edward St.,95372-00021-1,1,4380_7778208_3060401,4380_1001 -4380_77952,294,4380_6618,Kells,54602-00018-1,1,4380_7778208_1080101,4380_84 -4380_78018,285,4380_66180,Edward St.,95396-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66182,Edward St.,95402-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66183,Edward St.,95398-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66184,Edward St.,95394-00013-1,1,4380_7778208_3060401,4380_1001 -4380_78018,289,4380_66185,Edward St.,95400-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66186,Edward St.,95404-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66187,Edward St.,95399-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66188,Edward St.,95397-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66189,Edward St.,95405-00018-1,1,4380_7778208_3060401,4380_1001 -4380_77952,295,4380_6619,Kells,54601-00019-1,1,4380_7778208_1080101,4380_84 -4380_78018,295,4380_66190,Edward St.,95401-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66191,Edward St.,95403-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66192,Edward St.,95395-00021-1,1,4380_7778208_3060401,4380_1001 -4380_78018,285,4380_66198,Edward St.,95427-00009-1,1,4380_7778208_3060401,4380_1001 -4380_77952,296,4380_6620,Kells,54605-00021-1,1,4380_7778208_1080101,4380_85 -4380_78018,288,4380_66200,Edward St.,95431-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66201,Edward St.,95423-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66202,Edward St.,95421-00013-1,1,4380_7778208_3060401,4380_1001 -4380_78018,289,4380_66203,Edward St.,95425-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66204,Edward St.,95429-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66205,Edward St.,95424-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66206,Edward St.,95428-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66207,Edward St.,95430-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66208,Edward St.,95426-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66209,Edward St.,95432-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66210,Edward St.,95422-00021-1,1,4380_7778208_3060401,4380_1001 -4380_78018,285,4380_66216,Edward St.,95452-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66218,Edward St.,95448-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66219,Edward St.,95458-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66220,Edward St.,95450-00013-1,1,4380_7778208_3060401,4380_1001 -4380_78018,289,4380_66221,Edward St.,95454-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66222,Edward St.,95456-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66223,Edward St.,95459-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66224,Edward St.,95453-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66225,Edward St.,95457-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66226,Edward St.,95455-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66227,Edward St.,95449-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66228,Edward St.,95451-00021-1,1,4380_7778208_3060401,4380_1001 -4380_78018,285,4380_66234,Edward St.,95485-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66236,Edward St.,95479-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66237,Edward St.,95481-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66238,Edward St.,95483-00013-1,1,4380_7778208_3060401,4380_1001 -4380_78018,289,4380_66239,Edward St.,95477-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66240,Edward St.,95475-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66241,Edward St.,95482-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66242,Edward St.,95486-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66243,Edward St.,95476-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66244,Edward St.,95478-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66245,Edward St.,95480-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66246,Edward St.,95484-00021-1,1,4380_7778208_3060401,4380_1001 -4380_78018,285,4380_66252,Edward St.,95504-00009-1,1,4380_7778208_3060401,4380_1001 -4380_78018,288,4380_66254,Edward St.,95506-00011-1,1,4380_7778208_3060401,4380_1001 -4380_78018,286,4380_66255,Edward St.,95510-00010-1,1,4380_7778208_3060401,4380_1001 -4380_78018,291,4380_66256,Edward St.,95500-00013-1,1,4380_7778208_3060401,4380_1003 -4380_78018,289,4380_66257,Edward St.,95508-00014-1,1,4380_7778208_3060401,4380_1001 -4380_78018,287,4380_66258,Edward St.,95502-00012-1,1,4380_7778208_3060401,4380_1001 -4380_78018,292,4380_66259,Edward St.,95511-00016-1,1,4380_7778208_3060401,4380_1001 -4380_78018,290,4380_66260,Edward St.,95505-00015-1,1,4380_7778208_3060401,4380_1001 -4380_78018,294,4380_66261,Edward St.,95503-00018-1,1,4380_7778208_3060401,4380_1001 -4380_78018,295,4380_66262,Edward St.,95509-00019-1,1,4380_7778208_3060401,4380_1001 -4380_78018,293,4380_66263,Edward St.,95507-00017-1,1,4380_7778208_3060401,4380_1001 -4380_78018,296,4380_66264,Edward St.,95501-00021-1,1,4380_7778208_3060401,4380_1003 -4380_77952,285,4380_6627,Kells,5162-00009-1,1,4380_7778208_1080101,4380_84 -4380_78018,285,4380_66270,City Centre,95531-00009-1,1,4380_7778208_3060401,4380_1002 -4380_78018,288,4380_66272,City Centre,95535-00011-1,1,4380_7778208_3060401,4380_1002 -4380_78018,286,4380_66273,City Centre,95525-00010-1,1,4380_7778208_3060401,4380_1002 -4380_78018,291,4380_66274,City Centre,95527-00013-1,1,4380_7778208_3060401,4380_1002 -4380_78018,289,4380_66275,City Centre,95533-00014-1,1,4380_7778208_3060401,4380_1002 -4380_78018,287,4380_66276,City Centre,95529-00012-1,1,4380_7778208_3060401,4380_1002 -4380_78018,292,4380_66277,City Centre,95526-00016-1,1,4380_7778208_3060401,4380_1002 -4380_78018,290,4380_66278,City Centre,95532-00015-1,1,4380_7778208_3060401,4380_1002 -4380_78018,294,4380_66279,City Centre,95530-00018-1,1,4380_7778208_3060401,4380_1002 -4380_77952,286,4380_6628,Kells,5175-00010-1,1,4380_7778208_1080101,4380_84 -4380_78018,295,4380_66280,City Centre,95534-00019-1,1,4380_7778208_3060401,4380_1002 -4380_78018,293,4380_66281,City Centre,95536-00017-1,1,4380_7778208_3060401,4380_1002 -4380_78018,296,4380_66282,City Centre,95528-00021-1,1,4380_7778208_3060401,4380_1002 -4380_78018,285,4380_66288,City Centre,95556-00009-1,1,4380_7778208_3060401,4380_1002 -4380_77952,288,4380_6629,Kells,5183-00011-1,1,4380_7778208_1080101,4380_84 -4380_78018,288,4380_66290,City Centre,95554-00011-1,1,4380_7778208_3060401,4380_1002 -4380_78018,286,4380_66291,City Centre,95550-00010-1,1,4380_7778208_3060401,4380_1002 -4380_78018,291,4380_66292,City Centre,95552-00013-1,1,4380_7778208_3060401,4380_1002 -4380_78018,289,4380_66293,City Centre,95560-00014-1,1,4380_7778208_3060401,4380_1002 -4380_78018,287,4380_66294,City Centre,95558-00012-1,1,4380_7778208_3060401,4380_1002 -4380_78018,292,4380_66295,City Centre,95551-00016-1,1,4380_7778208_3060401,4380_1002 -4380_78018,290,4380_66296,City Centre,95557-00015-1,1,4380_7778208_3060401,4380_1002 -4380_78018,294,4380_66297,City Centre,95559-00018-1,1,4380_7778208_3060401,4380_1002 -4380_78018,295,4380_66298,City Centre,95561-00019-1,1,4380_7778208_3060401,4380_1002 -4380_78018,293,4380_66299,City Centre,95555-00017-1,1,4380_7778208_3060401,4380_1002 -4380_78113,285,4380_663,Dundalk,49780-00009-1,0,4380_7778208_1000904,4380_10 -4380_77952,287,4380_6630,Kells,5201-00012-1,1,4380_7778208_1080101,4380_84 -4380_78018,296,4380_66300,City Centre,95553-00021-1,1,4380_7778208_3060401,4380_1002 -4380_78018,285,4380_66306,City Centre,95583-00009-1,1,4380_7778208_3060401,4380_1002 -4380_78018,288,4380_66308,City Centre,95575-00011-1,1,4380_7778208_3060401,4380_1002 -4380_78018,286,4380_66309,City Centre,95579-00010-1,1,4380_7778208_3060401,4380_1002 -4380_77952,289,4380_6631,Kells,5144-00014-1,1,4380_7778208_1080101,4380_84 -4380_78018,291,4380_66310,City Centre,95577-00013-1,1,4380_7778208_3060401,4380_1002 -4380_78018,289,4380_66311,City Centre,95581-00014-1,1,4380_7778208_3060401,4380_1002 -4380_78018,287,4380_66312,City Centre,95585-00012-1,1,4380_7778208_3060401,4380_1002 -4380_78018,292,4380_66313,City Centre,95580-00016-1,1,4380_7778208_3060401,4380_1002 -4380_78018,290,4380_66314,City Centre,95584-00015-1,1,4380_7778208_3060401,4380_1002 -4380_78018,294,4380_66315,City Centre,95586-00018-1,1,4380_7778208_3060401,4380_1002 -4380_78018,295,4380_66316,City Centre,95582-00019-1,1,4380_7778208_3060401,4380_1002 -4380_78018,293,4380_66317,City Centre,95576-00017-1,1,4380_7778208_3060401,4380_1002 -4380_78018,296,4380_66318,City Centre,95578-00021-1,1,4380_7778208_3060401,4380_1002 -4380_77952,290,4380_6632,Kells,54616-00015-1,1,4380_7778208_1080101,4380_84 -4380_78018,285,4380_66324,City Centre,95610-00009-1,1,4380_7778208_3060401,4380_1002 -4380_78018,288,4380_66326,City Centre,95606-00011-1,1,4380_7778208_3060401,4380_1002 -4380_78018,286,4380_66327,City Centre,95604-00010-1,1,4380_7778208_3060401,4380_1002 -4380_78018,291,4380_66328,City Centre,95602-00013-1,1,4380_7778208_3060401,4380_1002 -4380_78018,289,4380_66329,City Centre,95608-00014-1,1,4380_7778208_3060401,4380_1002 -4380_77952,291,4380_6633,Kells,5216-00013-1,1,4380_7778208_1080101,4380_85 -4380_78018,287,4380_66330,City Centre,95600-00012-1,1,4380_7778208_3060401,4380_1002 -4380_78018,292,4380_66331,City Centre,95605-00016-1,1,4380_7778208_3060401,4380_1002 -4380_78018,290,4380_66332,City Centre,95611-00015-1,1,4380_7778208_3060401,4380_1002 -4380_78018,294,4380_66333,City Centre,95601-00018-1,1,4380_7778208_3060401,4380_1002 -4380_78018,295,4380_66334,City Centre,95609-00019-1,1,4380_7778208_3060401,4380_1002 -4380_78018,293,4380_66335,City Centre,95607-00017-1,1,4380_7778208_3060401,4380_1002 -4380_78018,296,4380_66336,City Centre,95603-00021-1,1,4380_7778208_3060401,4380_1002 -4380_77952,292,4380_6634,Kells,54615-00016-1,1,4380_7778208_1080101,4380_84 -4380_78018,285,4380_66342,City Centre,95624-00009-1,1,4380_7778208_3060401,4380_1002 -4380_78018,288,4380_66344,City Centre,95626-00011-1,1,4380_7778208_3060401,4380_1002 -4380_78018,286,4380_66345,City Centre,95632-00010-1,1,4380_7778208_3060401,4380_1002 -4380_78018,291,4380_66346,City Centre,95628-00013-1,1,4380_7778208_3060401,4380_1002 -4380_78018,289,4380_66347,City Centre,95634-00014-1,1,4380_7778208_3060401,4380_1002 -4380_78018,287,4380_66348,City Centre,95630-00012-1,1,4380_7778208_3060401,4380_1002 -4380_78018,292,4380_66349,City Centre,95633-00016-1,1,4380_7778208_3060401,4380_1002 -4380_77952,293,4380_6635,Kells,54614-00017-1,1,4380_7778208_1080101,4380_84 -4380_78018,290,4380_66350,City Centre,95625-00015-1,1,4380_7778208_3060401,4380_1002 -4380_78018,294,4380_66351,City Centre,95631-00018-1,1,4380_7778208_3060401,4380_1002 -4380_78018,295,4380_66352,City Centre,95635-00019-1,1,4380_7778208_3060401,4380_1002 -4380_78018,293,4380_66353,City Centre,95627-00017-1,1,4380_7778208_3060401,4380_1002 -4380_78018,296,4380_66354,City Centre,95629-00021-1,1,4380_7778208_3060401,4380_1002 -4380_77952,294,4380_6636,Kells,54617-00018-1,1,4380_7778208_1080101,4380_84 -4380_78019,285,4380_66360,Ardnacrusha,95638-00009-1,0,4380_7778208_3130401,4380_1004 -4380_78019,288,4380_66362,Ardnacrusha,95640-00011-1,0,4380_7778208_3130401,4380_1004 -4380_78019,286,4380_66363,Ardnacrusha,95636-00010-1,0,4380_7778208_3130401,4380_1004 -4380_78019,291,4380_66364,Ardnacrusha,95646-00013-1,0,4380_7778208_3130401,4380_1006 -4380_78019,289,4380_66365,Ardnacrusha,95642-00014-1,0,4380_7778208_3130401,4380_1004 -4380_78019,287,4380_66366,Ardnacrusha,95644-00012-1,0,4380_7778208_3130401,4380_1004 -4380_78019,292,4380_66367,Ardnacrusha,95637-00016-1,0,4380_7778208_3130401,4380_1004 -4380_78019,290,4380_66368,Ardnacrusha,95639-00015-1,0,4380_7778208_3130401,4380_1004 -4380_78019,294,4380_66369,Ardnacrusha,95645-00018-1,0,4380_7778208_3130401,4380_1004 -4380_77952,295,4380_6637,Kells,54618-00019-1,1,4380_7778208_1080101,4380_84 -4380_78019,295,4380_66370,Ardnacrusha,95643-00019-1,0,4380_7778208_3130401,4380_1004 -4380_78019,293,4380_66371,Ardnacrusha,95641-00017-1,0,4380_7778208_3130401,4380_1004 -4380_78019,296,4380_66372,Ardnacrusha,95647-00021-1,0,4380_7778208_3130401,4380_1006 -4380_78019,285,4380_66378,Ardnacrusha,95666-00009-1,0,4380_7778208_3130401,4380_1004 -4380_78019,288,4380_66379,Ardnacrusha,95664-00011-1,0,4380_7778208_3130401,4380_1004 -4380_77952,296,4380_6638,Kells,54613-00021-1,1,4380_7778208_1080101,4380_85 -4380_78019,286,4380_66380,Ardnacrusha,95662-00010-1,0,4380_7778208_3130401,4380_1004 -4380_78019,289,4380_66381,Ardnacrusha,95660-00014-1,0,4380_7778208_3130401,4380_1004 -4380_78019,287,4380_66382,Ardnacrusha,95668-00012-1,0,4380_7778208_3130401,4380_1004 -4380_78019,292,4380_66383,Ardnacrusha,95663-00016-1,0,4380_7778208_3130401,4380_1004 -4380_78019,290,4380_66384,Ardnacrusha,95667-00015-1,0,4380_7778208_3130401,4380_1004 -4380_78019,294,4380_66385,Ardnacrusha,95669-00018-1,0,4380_7778208_3130401,4380_1004 -4380_78019,295,4380_66386,Ardnacrusha,95661-00019-1,0,4380_7778208_3130401,4380_1004 -4380_78019,293,4380_66387,Ardnacrusha,95665-00017-1,0,4380_7778208_3130401,4380_1004 -4380_78019,291,4380_66389,Ardnacrusha,95670-00013-1,0,4380_7778208_3130401,4380_1004 -4380_78019,296,4380_66390,Ardnacrusha,95671-00021-1,0,4380_7778208_3130401,4380_1004 -4380_78019,285,4380_66396,Ardnacrusha,95686-00009-1,0,4380_7778208_3130401,4380_1005 -4380_78019,288,4380_66397,Ardnacrusha,95692-00011-1,0,4380_7778208_3130401,4380_1005 -4380_78019,286,4380_66398,Ardnacrusha,95688-00010-1,0,4380_7778208_3130401,4380_1005 -4380_78019,289,4380_66399,Ardnacrusha,95694-00014-1,0,4380_7778208_3130401,4380_1005 -4380_78113,286,4380_664,Dundalk,49774-00010-1,0,4380_7778208_1000904,4380_10 -4380_77952,297,4380_6640,Kells,5222-00008-1,1,4380_7778208_1080101,4380_84 -4380_78019,287,4380_66400,Ardnacrusha,95690-00012-1,0,4380_7778208_3130401,4380_1005 -4380_78019,292,4380_66401,Ardnacrusha,95689-00016-1,0,4380_7778208_3130401,4380_1005 -4380_78019,290,4380_66402,Ardnacrusha,95687-00015-1,0,4380_7778208_3130401,4380_1005 -4380_78019,294,4380_66403,Ardnacrusha,95691-00018-1,0,4380_7778208_3130401,4380_1005 -4380_78019,295,4380_66404,Ardnacrusha,95695-00019-1,0,4380_7778208_3130401,4380_1005 -4380_78019,293,4380_66405,Ardnacrusha,95693-00017-1,0,4380_7778208_3130401,4380_1005 -4380_78019,285,4380_66411,Ardnacrusha,95708-00009-1,0,4380_7778208_3130401,4380_1004 -4380_78019,288,4380_66413,Ardnacrusha,95710-00011-1,0,4380_7778208_3130401,4380_1004 -4380_78019,286,4380_66414,Ardnacrusha,95716-00010-1,0,4380_7778208_3130401,4380_1004 -4380_78019,291,4380_66415,Ardnacrusha,95712-00013-1,0,4380_7778208_3130401,4380_1005 -4380_78019,289,4380_66416,Ardnacrusha,95714-00014-1,0,4380_7778208_3130401,4380_1004 -4380_78019,287,4380_66417,Ardnacrusha,95706-00012-1,0,4380_7778208_3130401,4380_1004 -4380_78019,292,4380_66418,Ardnacrusha,95717-00016-1,0,4380_7778208_3130401,4380_1004 -4380_78019,290,4380_66419,Ardnacrusha,95709-00015-1,0,4380_7778208_3130401,4380_1004 -4380_78019,294,4380_66420,Ardnacrusha,95707-00018-1,0,4380_7778208_3130401,4380_1004 -4380_78019,295,4380_66421,Ardnacrusha,95715-00019-1,0,4380_7778208_3130401,4380_1004 -4380_78019,293,4380_66422,Ardnacrusha,95711-00017-1,0,4380_7778208_3130401,4380_1004 -4380_78019,296,4380_66423,Ardnacrusha,95713-00021-1,0,4380_7778208_3130401,4380_1005 -4380_78019,285,4380_66429,Ardnacrusha,95740-00009-1,0,4380_7778208_3130401,4380_1004 -4380_78019,288,4380_66431,Ardnacrusha,95730-00011-1,0,4380_7778208_3130401,4380_1004 -4380_78019,286,4380_66432,Ardnacrusha,95738-00010-1,0,4380_7778208_3130401,4380_1004 -4380_78019,291,4380_66433,Ardnacrusha,95736-00013-1,0,4380_7778208_3130401,4380_1006 -4380_78019,289,4380_66434,Ardnacrusha,95732-00014-1,0,4380_7778208_3130401,4380_1004 -4380_78019,287,4380_66435,Ardnacrusha,95734-00012-1,0,4380_7778208_3130401,4380_1004 -4380_78019,292,4380_66436,Ardnacrusha,95739-00016-1,0,4380_7778208_3130401,4380_1004 -4380_78019,290,4380_66437,Ardnacrusha,95741-00015-1,0,4380_7778208_3130401,4380_1004 -4380_78019,294,4380_66438,Ardnacrusha,95735-00018-1,0,4380_7778208_3130401,4380_1004 -4380_78019,295,4380_66439,Ardnacrusha,95733-00019-1,0,4380_7778208_3130401,4380_1004 -4380_78019,293,4380_66440,Ardnacrusha,95731-00017-1,0,4380_7778208_3130401,4380_1004 -4380_78019,296,4380_66441,Ardnacrusha,95737-00021-1,0,4380_7778208_3130401,4380_1006 -4380_78019,285,4380_66447,City Centre,95648-00009-1,1,4380_7778208_3130401,4380_1007 -4380_78019,288,4380_66448,City Centre,95656-00011-1,1,4380_7778208_3130401,4380_1007 -4380_78019,286,4380_66449,City Centre,95650-00010-1,1,4380_7778208_3130401,4380_1007 -4380_78019,289,4380_66450,City Centre,95654-00014-1,1,4380_7778208_3130401,4380_1007 -4380_78019,287,4380_66451,City Centre,95652-00012-1,1,4380_7778208_3130401,4380_1007 -4380_78019,292,4380_66452,City Centre,95651-00016-1,1,4380_7778208_3130401,4380_1007 -4380_78019,290,4380_66453,City Centre,95649-00015-1,1,4380_7778208_3130401,4380_1007 -4380_78019,294,4380_66454,City Centre,95653-00018-1,1,4380_7778208_3130401,4380_1007 -4380_78019,295,4380_66455,City Centre,95655-00019-1,1,4380_7778208_3130401,4380_1007 -4380_78019,293,4380_66456,City Centre,95657-00017-1,1,4380_7778208_3130401,4380_1007 -4380_78019,291,4380_66458,City Centre,95658-00013-1,1,4380_7778208_3130401,4380_1007 -4380_78019,296,4380_66459,City Centre,95659-00021-1,1,4380_7778208_3130401,4380_1007 -4380_78019,291,4380_66461,City Centre,95672-00013-1,1,4380_7778208_3130401,4380_1007 -4380_78019,296,4380_66462,City Centre,95673-00021-1,1,4380_7778208_3130401,4380_1007 -4380_78019,285,4380_66468,City Centre,95682-00009-1,1,4380_7778208_3130401,4380_1008 -4380_78019,288,4380_66469,City Centre,95676-00011-1,1,4380_7778208_3130401,4380_1008 -4380_77952,285,4380_6647,Kells,5166-00009-1,1,4380_7778208_1080101,4380_84 -4380_78019,286,4380_66470,City Centre,95674-00010-1,1,4380_7778208_3130401,4380_1008 -4380_78019,289,4380_66471,City Centre,95680-00014-1,1,4380_7778208_3130401,4380_1008 -4380_78019,287,4380_66472,City Centre,95678-00012-1,1,4380_7778208_3130401,4380_1008 -4380_78019,292,4380_66473,City Centre,95675-00016-1,1,4380_7778208_3130401,4380_1008 -4380_78019,290,4380_66474,City Centre,95683-00015-1,1,4380_7778208_3130401,4380_1008 -4380_78019,294,4380_66475,City Centre,95679-00018-1,1,4380_7778208_3130401,4380_1008 -4380_78019,295,4380_66476,City Centre,95681-00019-1,1,4380_7778208_3130401,4380_1008 -4380_78019,293,4380_66477,City Centre,95677-00017-1,1,4380_7778208_3130401,4380_1008 -4380_78019,291,4380_66479,City Centre,95684-00013-1,1,4380_7778208_3130401,4380_1008 -4380_77952,286,4380_6648,Kells,5179-00010-1,1,4380_7778208_1080101,4380_84 -4380_78019,296,4380_66480,City Centre,95685-00021-1,1,4380_7778208_3130401,4380_1008 -4380_78019,285,4380_66486,City Centre,95698-00009-1,1,4380_7778208_3130401,4380_1007 -4380_78019,288,4380_66487,City Centre,95702-00011-1,1,4380_7778208_3130401,4380_1007 -4380_78019,286,4380_66488,City Centre,95704-00010-1,1,4380_7778208_3130401,4380_1007 -4380_78019,289,4380_66489,City Centre,95700-00014-1,1,4380_7778208_3130401,4380_1007 -4380_77952,288,4380_6649,Kells,5187-00011-1,1,4380_7778208_1080101,4380_84 -4380_78019,287,4380_66490,City Centre,95696-00012-1,1,4380_7778208_3130401,4380_1007 -4380_78019,292,4380_66491,City Centre,95705-00016-1,1,4380_7778208_3130401,4380_1007 -4380_78019,290,4380_66492,City Centre,95699-00015-1,1,4380_7778208_3130401,4380_1007 -4380_78019,294,4380_66493,City Centre,95697-00018-1,1,4380_7778208_3130401,4380_1007 -4380_78019,295,4380_66494,City Centre,95701-00019-1,1,4380_7778208_3130401,4380_1007 -4380_78019,293,4380_66495,City Centre,95703-00017-1,1,4380_7778208_3130401,4380_1007 -4380_78113,297,4380_665,Dundalk,49714-00008-1,0,4380_7778208_1000903,4380_13 -4380_77952,287,4380_6650,Kells,5205-00012-1,1,4380_7778208_1080101,4380_84 -4380_78019,285,4380_66501,City Centre,95726-00009-1,1,4380_7778208_3130401,4380_1007 -4380_78019,288,4380_66502,City Centre,95722-00011-1,1,4380_7778208_3130401,4380_1007 -4380_78019,286,4380_66503,City Centre,95720-00010-1,1,4380_7778208_3130401,4380_1007 -4380_78019,289,4380_66504,City Centre,95724-00014-1,1,4380_7778208_3130401,4380_1007 -4380_78019,287,4380_66505,City Centre,95718-00012-1,1,4380_7778208_3130401,4380_1007 -4380_78019,292,4380_66506,City Centre,95721-00016-1,1,4380_7778208_3130401,4380_1007 -4380_78019,290,4380_66507,City Centre,95727-00015-1,1,4380_7778208_3130401,4380_1007 -4380_78019,294,4380_66508,City Centre,95719-00018-1,1,4380_7778208_3130401,4380_1007 -4380_78019,295,4380_66509,City Centre,95725-00019-1,1,4380_7778208_3130401,4380_1007 -4380_77952,289,4380_6651,Kells,5148-00014-1,1,4380_7778208_1080101,4380_84 -4380_78019,293,4380_66510,City Centre,95723-00017-1,1,4380_7778208_3130401,4380_1007 -4380_78019,291,4380_66512,City Centre,95728-00013-1,1,4380_7778208_3130401,4380_1007 -4380_78019,296,4380_66513,City Centre,95729-00021-1,1,4380_7778208_3130401,4380_1007 -4380_78019,285,4380_66519,City Centre,95742-00009-1,1,4380_7778208_3130401,4380_1007 -4380_77952,290,4380_6652,Kells,54638-00015-1,1,4380_7778208_1080101,4380_84 -4380_78019,288,4380_66521,City Centre,95744-00011-1,1,4380_7778208_3130401,4380_1007 -4380_78019,286,4380_66522,City Centre,95752-00010-1,1,4380_7778208_3130401,4380_1007 -4380_78019,291,4380_66523,City Centre,95746-00013-1,1,4380_7778208_3130401,4380_1009 -4380_78019,289,4380_66524,City Centre,95748-00014-1,1,4380_7778208_3130401,4380_1007 -4380_78019,287,4380_66525,City Centre,95750-00012-1,1,4380_7778208_3130401,4380_1007 -4380_78019,292,4380_66526,City Centre,95753-00016-1,1,4380_7778208_3130401,4380_1007 -4380_78019,290,4380_66527,City Centre,95743-00015-1,1,4380_7778208_3130401,4380_1007 -4380_78019,294,4380_66528,City Centre,95751-00018-1,1,4380_7778208_3130401,4380_1007 -4380_78019,295,4380_66529,City Centre,95749-00019-1,1,4380_7778208_3130401,4380_1007 -4380_77952,291,4380_6653,Kells,5218-00013-1,1,4380_7778208_1080101,4380_85 -4380_78019,293,4380_66530,City Centre,95745-00017-1,1,4380_7778208_3130401,4380_1007 -4380_78019,296,4380_66531,City Centre,95747-00021-1,1,4380_7778208_3130401,4380_1009 -4380_78020,285,4380_66537,Ballybunion,95806-00009-1,0,4380_7778208_3140402,4380_1010 -4380_78020,288,4380_66539,Ballybunion,95810-00011-1,0,4380_7778208_3140402,4380_1010 -4380_77952,292,4380_6654,Kells,54640-00016-1,1,4380_7778208_1080101,4380_84 -4380_78020,286,4380_66540,Ballybunion,95816-00010-1,0,4380_7778208_3140402,4380_1010 -4380_78020,291,4380_66541,Ballybunion,95808-00013-1,0,4380_7778208_3140402,4380_1010 -4380_78020,289,4380_66542,Ballybunion,95814-00014-1,0,4380_7778208_3140402,4380_1010 -4380_78020,287,4380_66543,Ballybunion,95812-00012-1,0,4380_7778208_3140402,4380_1010 -4380_78020,292,4380_66544,Ballybunion,95817-00016-1,0,4380_7778208_3140402,4380_1010 -4380_78020,290,4380_66545,Ballybunion,95807-00015-1,0,4380_7778208_3140402,4380_1010 -4380_78020,294,4380_66546,Ballybunion,95813-00018-1,0,4380_7778208_3140402,4380_1010 -4380_78020,295,4380_66547,Ballybunion,95815-00019-1,0,4380_7778208_3140402,4380_1010 -4380_78020,293,4380_66548,Ballybunion,95811-00017-1,0,4380_7778208_3140402,4380_1010 -4380_78020,296,4380_66549,Ballybunion,95809-00021-1,0,4380_7778208_3140402,4380_1010 -4380_77952,293,4380_6655,Kells,54639-00017-1,1,4380_7778208_1080101,4380_84 -4380_78020,297,4380_66556,Ballybunion,95818-00008-1,0,4380_7778208_3140402,4380_1010 -4380_78020,285,4380_66557,Foynes,95862-00009-1,0,4380_7778208_3140403,4380_1012 -4380_78020,288,4380_66559,Foynes,95864-00011-1,0,4380_7778208_3140403,4380_1012 -4380_77952,294,4380_6656,Kells,54635-00018-1,1,4380_7778208_1080101,4380_84 -4380_78020,286,4380_66560,Foynes,95860-00010-1,0,4380_7778208_3140403,4380_1012 -4380_78020,291,4380_66561,Foynes,95866-00013-1,0,4380_7778208_3140403,4380_1014 -4380_78020,289,4380_66562,Foynes,95868-00014-1,0,4380_7778208_3140403,4380_1012 -4380_78020,287,4380_66563,Foynes,95858-00012-1,0,4380_7778208_3140403,4380_1012 -4380_78020,292,4380_66564,Foynes,95861-00016-1,0,4380_7778208_3140403,4380_1012 -4380_78020,290,4380_66565,Foynes,95863-00015-1,0,4380_7778208_3140403,4380_1012 -4380_78020,294,4380_66566,Foynes,95859-00018-1,0,4380_7778208_3140403,4380_1012 -4380_78020,295,4380_66567,Foynes,95869-00019-1,0,4380_7778208_3140403,4380_1012 -4380_78020,293,4380_66568,Foynes,95865-00017-1,0,4380_7778208_3140403,4380_1012 -4380_78020,296,4380_66569,Foynes,95867-00021-1,0,4380_7778208_3140403,4380_1014 -4380_77952,295,4380_6657,Kells,54636-00019-1,1,4380_7778208_1080101,4380_84 -4380_78020,285,4380_66575,Ballybunion,95767-00009-1,0,4380_7778208_3140401,4380_1010 -4380_78020,288,4380_66577,Ballybunion,95777-00011-1,0,4380_7778208_3140401,4380_1010 -4380_78020,286,4380_66578,Ballybunion,95769-00010-1,0,4380_7778208_3140401,4380_1010 -4380_78020,291,4380_66579,Ballybunion,95775-00013-1,0,4380_7778208_3140401,4380_1010 -4380_77952,296,4380_6658,Kells,54637-00021-1,1,4380_7778208_1080101,4380_85 -4380_78020,289,4380_66580,Ballybunion,95771-00014-1,0,4380_7778208_3140401,4380_1010 -4380_78020,287,4380_66581,Ballybunion,95773-00012-1,0,4380_7778208_3140401,4380_1010 -4380_78020,292,4380_66582,Ballybunion,95770-00016-1,0,4380_7778208_3140401,4380_1010 -4380_78020,290,4380_66583,Ballybunion,95768-00015-1,0,4380_7778208_3140401,4380_1010 -4380_78020,294,4380_66584,Ballybunion,95774-00018-1,0,4380_7778208_3140401,4380_1010 -4380_78020,295,4380_66585,Ballybunion,95772-00019-1,0,4380_7778208_3140401,4380_1010 -4380_78020,293,4380_66586,Ballybunion,95778-00017-1,0,4380_7778208_3140401,4380_1010 -4380_78020,296,4380_66587,Ballybunion,95776-00021-1,0,4380_7778208_3140401,4380_1010 -4380_78020,297,4380_66589,Ballybunion,95779-00008-1,0,4380_7778208_3140401,4380_1010 -4380_78020,285,4380_66595,Foynes,95888-00009-1,0,4380_7778208_3140403,4380_1012 -4380_78020,288,4380_66597,Foynes,95890-00011-1,0,4380_7778208_3140403,4380_1012 -4380_78020,286,4380_66598,Foynes,95884-00010-1,0,4380_7778208_3140403,4380_1012 -4380_78020,291,4380_66599,Foynes,95886-00013-1,0,4380_7778208_3140403,4380_1014 -4380_78113,287,4380_666,Dundalk,49776-00012-1,0,4380_7778208_1000904,4380_10 -4380_78020,289,4380_66600,Foynes,95882-00014-1,0,4380_7778208_3140403,4380_1012 -4380_78020,287,4380_66601,Foynes,95892-00012-1,0,4380_7778208_3140403,4380_1012 -4380_78020,292,4380_66602,Foynes,95885-00016-1,0,4380_7778208_3140403,4380_1012 -4380_78020,290,4380_66603,Foynes,95889-00015-1,0,4380_7778208_3140403,4380_1012 -4380_78020,294,4380_66604,Foynes,95893-00018-1,0,4380_7778208_3140403,4380_1012 -4380_78020,295,4380_66605,Foynes,95883-00019-1,0,4380_7778208_3140403,4380_1012 -4380_78020,293,4380_66606,Foynes,95891-00017-1,0,4380_7778208_3140403,4380_1012 -4380_78020,296,4380_66607,Foynes,95887-00021-1,0,4380_7778208_3140403,4380_1014 -4380_78020,285,4380_66613,Ballybunion,95842-00009-1,0,4380_7778208_3140402,4380_1010 -4380_78020,288,4380_66615,Ballybunion,95836-00011-1,0,4380_7778208_3140402,4380_1010 -4380_78020,286,4380_66616,Ballybunion,95838-00010-1,0,4380_7778208_3140402,4380_1010 -4380_78020,291,4380_66617,Ballybunion,95834-00013-1,0,4380_7778208_3140402,4380_1011 -4380_78020,289,4380_66618,Ballybunion,95840-00014-1,0,4380_7778208_3140402,4380_1010 -4380_78020,287,4380_66619,Ballybunion,95832-00012-1,0,4380_7778208_3140402,4380_1010 -4380_78020,292,4380_66620,Ballybunion,95839-00016-1,0,4380_7778208_3140402,4380_1010 -4380_78020,290,4380_66621,Ballybunion,95843-00015-1,0,4380_7778208_3140402,4380_1010 -4380_78020,294,4380_66622,Ballybunion,95833-00018-1,0,4380_7778208_3140402,4380_1010 -4380_78020,295,4380_66623,Ballybunion,95841-00019-1,0,4380_7778208_3140402,4380_1010 -4380_78020,293,4380_66624,Ballybunion,95837-00017-1,0,4380_7778208_3140402,4380_1010 -4380_78020,296,4380_66625,Ballybunion,95835-00021-1,0,4380_7778208_3140402,4380_1011 -4380_78020,297,4380_66627,Ballybunion,95844-00008-1,0,4380_7778208_3140402,4380_1010 -4380_78020,285,4380_66633,Foynes,95912-00009-1,0,4380_7778208_3140403,4380_1012 -4380_78020,288,4380_66635,Foynes,95906-00011-1,0,4380_7778208_3140403,4380_1012 -4380_78020,286,4380_66636,Foynes,95916-00010-1,0,4380_7778208_3140403,4380_1012 -4380_78020,291,4380_66637,Foynes,95910-00013-1,0,4380_7778208_3140403,4380_1014 -4380_78020,289,4380_66638,Foynes,95908-00014-1,0,4380_7778208_3140403,4380_1012 -4380_78020,287,4380_66639,Foynes,95914-00012-1,0,4380_7778208_3140403,4380_1012 -4380_78020,292,4380_66640,Foynes,95917-00016-1,0,4380_7778208_3140403,4380_1012 -4380_78020,290,4380_66641,Foynes,95913-00015-1,0,4380_7778208_3140403,4380_1012 -4380_78020,294,4380_66642,Foynes,95915-00018-1,0,4380_7778208_3140403,4380_1012 -4380_78020,295,4380_66643,Foynes,95909-00019-1,0,4380_7778208_3140403,4380_1012 -4380_78020,293,4380_66644,Foynes,95907-00017-1,0,4380_7778208_3140403,4380_1012 -4380_78020,296,4380_66645,Foynes,95911-00021-1,0,4380_7778208_3140403,4380_1014 -4380_77953,285,4380_6665,Kells,6029-00009-1,0,4380_7778208_1090115,4380_93 -4380_78020,297,4380_66652,Ballybunion,95797-00008-1,0,4380_7778208_3140401,4380_1010 -4380_78020,285,4380_66653,Ballybunion,95793-00009-1,0,4380_7778208_3140401,4380_1011 -4380_78020,288,4380_66655,Ballybunion,95798-00011-1,0,4380_7778208_3140401,4380_1011 -4380_78020,286,4380_66656,Ballybunion,95804-00010-1,0,4380_7778208_3140401,4380_1011 -4380_78020,291,4380_66657,Ballybunion,95795-00013-1,0,4380_7778208_3140401,4380_1013 -4380_78020,289,4380_66658,Ballybunion,95800-00014-1,0,4380_7778208_3140401,4380_1011 -4380_78020,287,4380_66659,Ballybunion,95802-00012-1,0,4380_7778208_3140401,4380_1011 -4380_77953,286,4380_6666,Kells,6034-00010-1,0,4380_7778208_1090115,4380_93 -4380_78020,292,4380_66660,Ballybunion,95805-00016-1,0,4380_7778208_3140401,4380_1011 -4380_78020,290,4380_66661,Ballybunion,95794-00015-1,0,4380_7778208_3140401,4380_1011 -4380_78020,294,4380_66662,Ballybunion,95803-00018-1,0,4380_7778208_3140401,4380_1011 -4380_78020,295,4380_66663,Ballybunion,95801-00019-1,0,4380_7778208_3140401,4380_1011 -4380_78020,293,4380_66664,Ballybunion,95799-00017-1,0,4380_7778208_3140401,4380_1011 -4380_78020,296,4380_66665,Ballybunion,95796-00021-1,0,4380_7778208_3140401,4380_1013 -4380_77953,288,4380_6667,Kells,6039-00011-1,0,4380_7778208_1090115,4380_93 -4380_78020,285,4380_66671,Foynes,95936-00009-1,0,4380_7778208_3140403,4380_1012 -4380_78020,288,4380_66673,Foynes,95938-00011-1,0,4380_7778208_3140403,4380_1012 -4380_78020,286,4380_66674,Foynes,95940-00010-1,0,4380_7778208_3140403,4380_1012 -4380_78020,291,4380_66675,Foynes,95934-00013-1,0,4380_7778208_3140403,4380_1012 -4380_78020,289,4380_66676,Foynes,95930-00014-1,0,4380_7778208_3140403,4380_1012 -4380_78020,287,4380_66677,Foynes,95932-00012-1,0,4380_7778208_3140403,4380_1012 -4380_78020,292,4380_66678,Foynes,95941-00016-1,0,4380_7778208_3140403,4380_1012 -4380_78020,290,4380_66679,Foynes,95937-00015-1,0,4380_7778208_3140403,4380_1012 -4380_77953,287,4380_6668,Kells,6044-00012-1,0,4380_7778208_1090115,4380_93 -4380_78020,294,4380_66680,Foynes,95933-00018-1,0,4380_7778208_3140403,4380_1012 -4380_78020,295,4380_66681,Foynes,95931-00019-1,0,4380_7778208_3140403,4380_1012 -4380_78020,293,4380_66682,Foynes,95939-00017-1,0,4380_7778208_3140403,4380_1012 -4380_78020,296,4380_66683,Foynes,95935-00021-1,0,4380_7778208_3140403,4380_1012 -4380_78020,285,4380_66689,Limerick Bus Station,95760-00009-1,1,4380_7778208_3140401,4380_1015 -4380_77953,289,4380_6669,Kells,6024-00014-1,0,4380_7778208_1090115,4380_93 -4380_78020,288,4380_66691,Limerick Bus Station,95756-00011-1,1,4380_7778208_3140401,4380_1015 -4380_78020,286,4380_66692,Limerick Bus Station,95762-00010-1,1,4380_7778208_3140401,4380_1015 -4380_78020,291,4380_66693,Limerick Bus Station,95764-00013-1,1,4380_7778208_3140401,4380_1017 -4380_78020,289,4380_66694,Limerick Bus Station,95754-00014-1,1,4380_7778208_3140401,4380_1015 -4380_78020,287,4380_66695,Limerick Bus Station,95758-00012-1,1,4380_7778208_3140401,4380_1015 -4380_78020,292,4380_66696,Limerick Bus Station,95763-00016-1,1,4380_7778208_3140401,4380_1015 -4380_78020,290,4380_66697,Limerick Bus Station,95761-00015-1,1,4380_7778208_3140401,4380_1015 -4380_78020,294,4380_66698,Limerick Bus Station,95759-00018-1,1,4380_7778208_3140401,4380_1015 -4380_78020,295,4380_66699,Limerick Bus Station,95755-00019-1,1,4380_7778208_3140401,4380_1015 -4380_78113,288,4380_667,Dundalk,49770-00011-1,0,4380_7778208_1000904,4380_10 -4380_77953,290,4380_6670,Kells,55240-00015-1,0,4380_7778208_1090115,4380_93 -4380_78020,293,4380_66700,Limerick Bus Station,95757-00017-1,1,4380_7778208_3140401,4380_1015 -4380_78020,296,4380_66701,Limerick Bus Station,95765-00021-1,1,4380_7778208_3140401,4380_1017 -4380_78020,297,4380_66703,Limerick Bus Station,95766-00008-1,1,4380_7778208_3140401,4380_1015 -4380_78020,285,4380_66709,Limerick Bus Station,95870-00009-1,1,4380_7778208_3140403,4380_1016 -4380_77953,291,4380_6671,Kells,5282-00013-1,0,4380_7778208_1090101,4380_95 -4380_78020,288,4380_66711,Limerick Bus Station,95876-00011-1,1,4380_7778208_3140403,4380_1016 -4380_78020,286,4380_66712,Limerick Bus Station,95880-00010-1,1,4380_7778208_3140403,4380_1016 -4380_78020,291,4380_66713,Limerick Bus Station,95874-00013-1,1,4380_7778208_3140403,4380_1016 -4380_78020,289,4380_66714,Limerick Bus Station,95872-00014-1,1,4380_7778208_3140403,4380_1016 -4380_78020,287,4380_66715,Limerick Bus Station,95878-00012-1,1,4380_7778208_3140403,4380_1016 -4380_78020,292,4380_66716,Limerick Bus Station,95881-00016-1,1,4380_7778208_3140403,4380_1016 -4380_78020,290,4380_66717,Limerick Bus Station,95871-00015-1,1,4380_7778208_3140403,4380_1016 -4380_78020,294,4380_66718,Limerick Bus Station,95879-00018-1,1,4380_7778208_3140403,4380_1016 -4380_78020,295,4380_66719,Limerick Bus Station,95873-00019-1,1,4380_7778208_3140403,4380_1016 -4380_77953,292,4380_6672,Kells,55236-00016-1,0,4380_7778208_1090115,4380_93 -4380_78020,293,4380_66720,Limerick Bus Station,95877-00017-1,1,4380_7778208_3140403,4380_1016 -4380_78020,296,4380_66721,Limerick Bus Station,95875-00021-1,1,4380_7778208_3140403,4380_1016 -4380_78020,285,4380_66727,Limerick Bus Station,95823-00009-1,1,4380_7778208_3140402,4380_1015 -4380_78020,288,4380_66729,Limerick Bus Station,95829-00011-1,1,4380_7778208_3140402,4380_1015 -4380_77953,293,4380_6673,Kells,55239-00017-1,0,4380_7778208_1090115,4380_93 -4380_78020,286,4380_66730,Limerick Bus Station,95825-00010-1,1,4380_7778208_3140402,4380_1015 -4380_78020,291,4380_66731,Limerick Bus Station,95821-00013-1,1,4380_7778208_3140402,4380_1015 -4380_78020,289,4380_66732,Limerick Bus Station,95827-00014-1,1,4380_7778208_3140402,4380_1015 -4380_78020,287,4380_66733,Limerick Bus Station,95819-00012-1,1,4380_7778208_3140402,4380_1015 -4380_78020,292,4380_66734,Limerick Bus Station,95826-00016-1,1,4380_7778208_3140402,4380_1015 -4380_78020,290,4380_66735,Limerick Bus Station,95824-00015-1,1,4380_7778208_3140402,4380_1015 -4380_78020,294,4380_66736,Limerick Bus Station,95820-00018-1,1,4380_7778208_3140402,4380_1015 -4380_78020,295,4380_66737,Limerick Bus Station,95828-00019-1,1,4380_7778208_3140402,4380_1015 -4380_78020,293,4380_66738,Limerick Bus Station,95830-00017-1,1,4380_7778208_3140402,4380_1015 -4380_78020,296,4380_66739,Limerick Bus Station,95822-00021-1,1,4380_7778208_3140402,4380_1015 -4380_77953,294,4380_6674,Kells,55237-00018-1,0,4380_7778208_1090115,4380_93 -4380_78020,297,4380_66741,Limerick Bus Station,95831-00008-1,1,4380_7778208_3140402,4380_1015 -4380_78020,285,4380_66747,Limerick Bus Station,95902-00009-1,1,4380_7778208_3140403,4380_1016 -4380_78020,288,4380_66749,Limerick Bus Station,95904-00011-1,1,4380_7778208_3140403,4380_1016 -4380_77953,295,4380_6675,Kells,55238-00019-1,0,4380_7778208_1090115,4380_93 -4380_78020,286,4380_66750,Limerick Bus Station,95898-00010-1,1,4380_7778208_3140403,4380_1016 -4380_78020,291,4380_66751,Limerick Bus Station,95896-00013-1,1,4380_7778208_3140403,4380_1016 -4380_78020,289,4380_66752,Limerick Bus Station,95894-00014-1,1,4380_7778208_3140403,4380_1016 -4380_78020,287,4380_66753,Limerick Bus Station,95900-00012-1,1,4380_7778208_3140403,4380_1016 -4380_78020,292,4380_66754,Limerick Bus Station,95899-00016-1,1,4380_7778208_3140403,4380_1016 -4380_78020,290,4380_66755,Limerick Bus Station,95903-00015-1,1,4380_7778208_3140403,4380_1016 -4380_78020,294,4380_66756,Limerick Bus Station,95901-00018-1,1,4380_7778208_3140403,4380_1016 -4380_78020,295,4380_66757,Limerick Bus Station,95895-00019-1,1,4380_7778208_3140403,4380_1016 -4380_78020,293,4380_66758,Limerick Bus Station,95905-00017-1,1,4380_7778208_3140403,4380_1016 -4380_78020,296,4380_66759,Limerick Bus Station,95897-00021-1,1,4380_7778208_3140403,4380_1016 -4380_77953,296,4380_6676,Kells,54647-00021-1,0,4380_7778208_1090101,4380_95 -4380_78020,297,4380_66761,Limerick Bus Station,95780-00008-1,1,4380_7778208_3140401,4380_1015 -4380_78020,285,4380_66767,Limerick Bus Station,95785-00009-1,1,4380_7778208_3140401,4380_1015 -4380_78020,288,4380_66769,Limerick Bus Station,95791-00011-1,1,4380_7778208_3140401,4380_1015 -4380_78020,286,4380_66770,Limerick Bus Station,95781-00010-1,1,4380_7778208_3140401,4380_1015 -4380_78020,291,4380_66771,Limerick Bus Station,95787-00013-1,1,4380_7778208_3140401,4380_1015 -4380_78020,289,4380_66772,Limerick Bus Station,95783-00014-1,1,4380_7778208_3140401,4380_1015 -4380_78020,287,4380_66773,Limerick Bus Station,95789-00012-1,1,4380_7778208_3140401,4380_1015 -4380_78020,292,4380_66774,Limerick Bus Station,95782-00016-1,1,4380_7778208_3140401,4380_1015 -4380_78020,290,4380_66775,Limerick Bus Station,95786-00015-1,1,4380_7778208_3140401,4380_1015 -4380_78020,294,4380_66776,Limerick Bus Station,95790-00018-1,1,4380_7778208_3140401,4380_1015 -4380_78020,295,4380_66777,Limerick Bus Station,95784-00019-1,1,4380_7778208_3140401,4380_1015 -4380_78020,293,4380_66778,Limerick Bus Station,95792-00017-1,1,4380_7778208_3140401,4380_1015 -4380_78020,296,4380_66779,Limerick Bus Station,95788-00021-1,1,4380_7778208_3140401,4380_1015 -4380_78020,297,4380_66781,Limerick Bus Station,95845-00008-1,1,4380_7778208_3140402,4380_1015 -4380_78020,285,4380_66787,Limerick Bus Station,95918-00009-1,1,4380_7778208_3140403,4380_1016 -4380_78020,288,4380_66789,Limerick Bus Station,95920-00011-1,1,4380_7778208_3140403,4380_1016 -4380_78020,286,4380_66790,Limerick Bus Station,95924-00010-1,1,4380_7778208_3140403,4380_1016 -4380_78020,291,4380_66791,Limerick Bus Station,95928-00013-1,1,4380_7778208_3140403,4380_1016 -4380_78020,289,4380_66792,Limerick Bus Station,95922-00014-1,1,4380_7778208_3140403,4380_1016 -4380_78020,287,4380_66793,Limerick Bus Station,95926-00012-1,1,4380_7778208_3140403,4380_1016 -4380_78020,292,4380_66794,Limerick Bus Station,95925-00016-1,1,4380_7778208_3140403,4380_1016 -4380_78020,290,4380_66795,Limerick Bus Station,95919-00015-1,1,4380_7778208_3140403,4380_1016 -4380_78020,294,4380_66796,Limerick Bus Station,95927-00018-1,1,4380_7778208_3140403,4380_1016 -4380_78020,295,4380_66797,Limerick Bus Station,95923-00019-1,1,4380_7778208_3140403,4380_1016 -4380_78020,293,4380_66798,Limerick Bus Station,95921-00017-1,1,4380_7778208_3140403,4380_1016 -4380_78020,296,4380_66799,Limerick Bus Station,95929-00021-1,1,4380_7778208_3140403,4380_1016 -4380_78113,289,4380_668,Dundalk,49772-00014-1,0,4380_7778208_1000904,4380_10 -4380_78020,285,4380_66805,Limerick Bus Station,95854-00009-1,1,4380_7778208_3140402,4380_1015 -4380_78020,288,4380_66807,Limerick Bus Station,95848-00011-1,1,4380_7778208_3140402,4380_1015 -4380_78020,286,4380_66808,Limerick Bus Station,95852-00010-1,1,4380_7778208_3140402,4380_1015 -4380_78020,291,4380_66809,Limerick Bus Station,95850-00013-1,1,4380_7778208_3140402,4380_1015 -4380_78020,289,4380_66810,Limerick Bus Station,95846-00014-1,1,4380_7778208_3140402,4380_1015 -4380_78020,287,4380_66811,Limerick Bus Station,95856-00012-1,1,4380_7778208_3140402,4380_1015 -4380_78020,292,4380_66812,Limerick Bus Station,95853-00016-1,1,4380_7778208_3140402,4380_1015 -4380_78020,290,4380_66813,Limerick Bus Station,95855-00015-1,1,4380_7778208_3140402,4380_1015 -4380_78020,294,4380_66814,Limerick Bus Station,95857-00018-1,1,4380_7778208_3140402,4380_1015 -4380_78020,295,4380_66815,Limerick Bus Station,95847-00019-1,1,4380_7778208_3140402,4380_1015 -4380_78020,293,4380_66816,Limerick Bus Station,95849-00017-1,1,4380_7778208_3140402,4380_1015 -4380_78020,296,4380_66817,Limerick Bus Station,95851-00021-1,1,4380_7778208_3140402,4380_1015 -4380_77953,285,4380_6682,Cavan Institute,7249-00009-1,0,4380_7778208_10988832,4380_92 -4380_78020,285,4380_66823,Limerick Bus Station,95942-00009-1,1,4380_7778208_3140403,4380_1016 -4380_78020,288,4380_66825,Limerick Bus Station,95952-00011-1,1,4380_7778208_3140403,4380_1016 -4380_78020,286,4380_66826,Limerick Bus Station,95946-00010-1,1,4380_7778208_3140403,4380_1016 -4380_78020,291,4380_66827,Limerick Bus Station,95944-00013-1,1,4380_7778208_3140403,4380_1016 -4380_78020,289,4380_66828,Limerick Bus Station,95948-00014-1,1,4380_7778208_3140403,4380_1016 -4380_78020,287,4380_66829,Limerick Bus Station,95950-00012-1,1,4380_7778208_3140403,4380_1016 -4380_77953,288,4380_6683,Cavan Institute,7255-00011-1,0,4380_7778208_10988832,4380_92 -4380_78020,292,4380_66830,Limerick Bus Station,95947-00016-1,1,4380_7778208_3140403,4380_1016 -4380_78020,290,4380_66831,Limerick Bus Station,95943-00015-1,1,4380_7778208_3140403,4380_1016 -4380_78020,294,4380_66832,Limerick Bus Station,95951-00018-1,1,4380_7778208_3140403,4380_1016 -4380_78020,295,4380_66833,Limerick Bus Station,95949-00019-1,1,4380_7778208_3140403,4380_1016 -4380_78020,293,4380_66834,Limerick Bus Station,95953-00017-1,1,4380_7778208_3140403,4380_1016 -4380_78020,296,4380_66835,Limerick Bus Station,95945-00021-1,1,4380_7778208_3140403,4380_1016 -4380_77953,286,4380_6684,Cavan Institute,7253-00010-1,0,4380_7778208_10988832,4380_92 -4380_78021,285,4380_66841,Shannon Ind. Estate,95968-00009-1,0,4380_7778208_3160401,4380_1019 -4380_78021,288,4380_66842,Shannon Ind. Estate,95972-00011-1,0,4380_7778208_3160401,4380_1019 -4380_78021,286,4380_66843,Shannon Ind. Estate,95966-00010-1,0,4380_7778208_3160401,4380_1019 -4380_78021,289,4380_66844,Shannon Ind. Estate,95964-00014-1,0,4380_7778208_3160401,4380_1019 -4380_78021,287,4380_66845,Shannon Ind. Estate,95970-00012-1,0,4380_7778208_3160401,4380_1019 -4380_78021,292,4380_66846,Shannon Ind. Estate,95967-00016-1,0,4380_7778208_3160401,4380_1019 -4380_78021,290,4380_66847,Shannon Ind. Estate,95969-00015-1,0,4380_7778208_3160401,4380_1019 -4380_78021,294,4380_66848,Shannon Ind. Estate,95971-00018-1,0,4380_7778208_3160401,4380_1019 -4380_78021,295,4380_66849,Shannon Ind. Estate,95965-00019-1,0,4380_7778208_3160401,4380_1019 -4380_77953,289,4380_6685,Cavan Institute,7243-00014-1,0,4380_7778208_10988832,4380_92 -4380_78021,293,4380_66850,Shannon Ind. Estate,95973-00017-1,0,4380_7778208_3160401,4380_1019 -4380_78021,285,4380_66856,Shannon,95974-00009-1,0,4380_7778208_3160401,4380_1020 -4380_78021,288,4380_66857,Shannon,95982-00011-1,0,4380_7778208_3160401,4380_1020 -4380_78021,286,4380_66858,Shannon,95978-00010-1,0,4380_7778208_3160401,4380_1020 -4380_78021,289,4380_66859,Shannon,95980-00014-1,0,4380_7778208_3160401,4380_1020 -4380_77953,287,4380_6686,Cavan Institute,7261-00012-1,0,4380_7778208_10988832,4380_92 -4380_78021,287,4380_66860,Shannon,95976-00012-1,0,4380_7778208_3160401,4380_1020 -4380_78021,292,4380_66861,Shannon,95979-00016-1,0,4380_7778208_3160401,4380_1020 -4380_78021,290,4380_66862,Shannon,95975-00015-1,0,4380_7778208_3160401,4380_1020 -4380_78021,294,4380_66863,Shannon,95977-00018-1,0,4380_7778208_3160401,4380_1020 -4380_78021,295,4380_66864,Shannon,95981-00019-1,0,4380_7778208_3160401,4380_1020 -4380_78021,293,4380_66865,Shannon,95983-00017-1,0,4380_7778208_3160401,4380_1020 -4380_77953,290,4380_6687,Cavan Institute,114812-00015-1,0,4380_7778208_10988832,4380_92 -4380_78021,285,4380_66876,Shannon Airport,114872-00009-1,0,4380_7778208_31688801,4380_1021 -4380_78021,285,4380_66877,Shannon,114882-00009-1,0,4380_7778208_31688802,4380_1022 -4380_78021,288,4380_66878,Shannon Airport,114876-00011-1,0,4380_7778208_31688801,4380_1021 -4380_78021,288,4380_66879,Shannon,114886-00011-1,0,4380_7778208_31688802,4380_1022 -4380_77953,292,4380_6688,Cavan Institute,114815-00016-1,0,4380_7778208_10988832,4380_92 -4380_78021,286,4380_66880,Shannon Airport,114874-00010-1,0,4380_7778208_31688801,4380_1021 -4380_78021,286,4380_66881,Shannon,114884-00010-1,0,4380_7778208_31688802,4380_1022 -4380_78021,289,4380_66882,Shannon Airport,114870-00014-1,0,4380_7778208_31688801,4380_1021 -4380_78021,289,4380_66883,Shannon,114880-00014-1,0,4380_7778208_31688802,4380_1022 -4380_78021,287,4380_66884,Shannon Airport,114878-00012-1,0,4380_7778208_31688801,4380_1021 -4380_78021,287,4380_66885,Shannon,114888-00012-1,0,4380_7778208_31688802,4380_1022 -4380_78021,290,4380_66886,Shannon Airport,114873-00015-1,0,4380_7778208_31688801,4380_1021 -4380_78021,290,4380_66887,Shannon,114883-00015-1,0,4380_7778208_31688802,4380_1022 -4380_78021,292,4380_66888,Shannon Airport,114875-00016-1,0,4380_7778208_31688801,4380_1021 -4380_78021,292,4380_66889,Shannon,114885-00016-1,0,4380_7778208_31688802,4380_1022 -4380_77953,294,4380_6689,Cavan Institute,114813-00018-1,0,4380_7778208_10988832,4380_92 -4380_78021,294,4380_66890,Shannon Airport,114879-00018-1,0,4380_7778208_31688801,4380_1021 -4380_78021,294,4380_66891,Shannon,114889-00018-1,0,4380_7778208_31688802,4380_1022 -4380_78021,293,4380_66892,Shannon Airport,114877-00017-1,0,4380_7778208_31688801,4380_1021 -4380_78021,293,4380_66893,Shannon,114887-00017-1,0,4380_7778208_31688802,4380_1022 -4380_78021,295,4380_66894,Shannon Airport,114871-00019-1,0,4380_7778208_31688801,4380_1021 -4380_78021,295,4380_66895,Shannon,114881-00019-1,0,4380_7778208_31688802,4380_1022 -4380_78113,290,4380_669,Dundalk,49781-00015-1,0,4380_7778208_1000904,4380_10 -4380_77953,293,4380_6690,Cavan Institute,114816-00017-1,0,4380_7778208_10988832,4380_92 -4380_78021,285,4380_66901,Shannon Airport,95990-00009-1,0,4380_7778208_3160401,4380_1018 -4380_78021,288,4380_66902,Shannon Airport,95984-00011-1,0,4380_7778208_3160401,4380_1018 -4380_78021,286,4380_66903,Shannon Airport,95986-00010-1,0,4380_7778208_3160401,4380_1018 -4380_78021,289,4380_66904,Shannon Airport,95988-00014-1,0,4380_7778208_3160401,4380_1018 -4380_78021,287,4380_66905,Shannon Airport,95992-00012-1,0,4380_7778208_3160401,4380_1018 -4380_78021,292,4380_66906,Shannon Airport,95987-00016-1,0,4380_7778208_3160401,4380_1018 -4380_78021,290,4380_66907,Shannon Airport,95991-00015-1,0,4380_7778208_3160401,4380_1018 -4380_78021,294,4380_66908,Shannon Airport,95993-00018-1,0,4380_7778208_3160401,4380_1018 -4380_78021,295,4380_66909,Shannon Airport,95989-00019-1,0,4380_7778208_3160401,4380_1018 -4380_77953,295,4380_6691,Cavan Institute,114814-00019-1,0,4380_7778208_10988832,4380_92 -4380_78021,293,4380_66910,Shannon Airport,95985-00017-1,0,4380_7778208_3160401,4380_1018 -4380_78021,297,4380_66912,Shannon Airport,95996-00008-1,0,4380_7778208_3160401,4380_1018 -4380_78021,291,4380_66914,Shannon Airport,95994-00013-1,0,4380_7778208_3160401,4380_1018 -4380_78021,296,4380_66915,Shannon Airport,95995-00021-1,0,4380_7778208_3160401,4380_1018 -4380_78021,285,4380_66921,Shannon Airport,96012-00009-1,0,4380_7778208_3160401,4380_1018 -4380_78021,288,4380_66922,Shannon Airport,96014-00011-1,0,4380_7778208_3160401,4380_1018 -4380_78021,286,4380_66923,Shannon Airport,96016-00010-1,0,4380_7778208_3160401,4380_1018 -4380_78021,289,4380_66924,Shannon Airport,96010-00014-1,0,4380_7778208_3160401,4380_1018 -4380_78021,287,4380_66925,Shannon Airport,96018-00012-1,0,4380_7778208_3160401,4380_1018 -4380_78021,292,4380_66926,Shannon Airport,96017-00016-1,0,4380_7778208_3160401,4380_1018 -4380_78021,290,4380_66927,Shannon Airport,96013-00015-1,0,4380_7778208_3160401,4380_1018 -4380_78021,294,4380_66928,Shannon Airport,96019-00018-1,0,4380_7778208_3160401,4380_1018 -4380_78021,295,4380_66929,Shannon Airport,96011-00019-1,0,4380_7778208_3160401,4380_1018 -4380_78021,293,4380_66930,Shannon Airport,96015-00017-1,0,4380_7778208_3160401,4380_1018 -4380_78021,297,4380_66932,Shannon Airport,96022-00008-1,0,4380_7778208_3160401,4380_1018 -4380_78021,291,4380_66934,Shannon Airport,96020-00013-1,0,4380_7778208_3160401,4380_1018 -4380_78021,296,4380_66935,Shannon Airport,96021-00021-1,0,4380_7778208_3160401,4380_1018 -4380_78021,297,4380_66937,Shannon Airport,96036-00008-1,0,4380_7778208_3160401,4380_1018 -4380_78021,291,4380_66939,Shannon Airport,96037-00013-1,0,4380_7778208_3160401,4380_1018 -4380_78021,296,4380_66940,Shannon Airport,96038-00021-1,0,4380_7778208_3160401,4380_1018 -4380_78021,285,4380_66946,Shannon Airport,96045-00009-1,0,4380_7778208_3160401,4380_1018 -4380_78021,288,4380_66947,Shannon Airport,96039-00011-1,0,4380_7778208_3160401,4380_1018 -4380_78021,286,4380_66948,Shannon Airport,96047-00010-1,0,4380_7778208_3160401,4380_1018 -4380_78021,289,4380_66949,Shannon Airport,96041-00014-1,0,4380_7778208_3160401,4380_1018 -4380_78021,287,4380_66950,Shannon Airport,96043-00012-1,0,4380_7778208_3160401,4380_1018 -4380_78021,292,4380_66951,Shannon Airport,96048-00016-1,0,4380_7778208_3160401,4380_1018 -4380_78021,290,4380_66952,Shannon Airport,96046-00015-1,0,4380_7778208_3160401,4380_1018 -4380_78021,294,4380_66953,Shannon Airport,96044-00018-1,0,4380_7778208_3160401,4380_1018 -4380_78021,295,4380_66954,Shannon Airport,96042-00019-1,0,4380_7778208_3160401,4380_1018 -4380_78021,293,4380_66955,Shannon Airport,96040-00017-1,0,4380_7778208_3160401,4380_1018 -4380_78021,285,4380_66961,Shannon Airport,96067-00009-1,0,4380_7778208_3160401,4380_1018 -4380_78021,288,4380_66962,Shannon Airport,96065-00011-1,0,4380_7778208_3160401,4380_1018 -4380_78021,286,4380_66963,Shannon Airport,96061-00010-1,0,4380_7778208_3160401,4380_1018 -4380_78021,289,4380_66964,Shannon Airport,96059-00014-1,0,4380_7778208_3160401,4380_1018 -4380_78021,287,4380_66965,Shannon Airport,96063-00012-1,0,4380_7778208_3160401,4380_1018 -4380_78021,292,4380_66966,Shannon Airport,96062-00016-1,0,4380_7778208_3160401,4380_1018 -4380_78021,290,4380_66967,Shannon Airport,96068-00015-1,0,4380_7778208_3160401,4380_1018 -4380_78021,294,4380_66968,Shannon Airport,96064-00018-1,0,4380_7778208_3160401,4380_1018 -4380_78021,295,4380_66969,Shannon Airport,96060-00019-1,0,4380_7778208_3160401,4380_1018 -4380_78021,293,4380_66970,Shannon Airport,96066-00017-1,0,4380_7778208_3160401,4380_1018 -4380_78021,297,4380_66972,Shannon Airport,96072-00008-1,0,4380_7778208_3160401,4380_1018 -4380_78021,291,4380_66974,Shannon Airport,96073-00013-1,0,4380_7778208_3160401,4380_1018 -4380_78021,296,4380_66975,Shannon Airport,96074-00021-1,0,4380_7778208_3160401,4380_1018 -4380_77953,285,4380_6698,Kells,5596-00009-1,0,4380_7778208_1090106,4380_93 -4380_78021,285,4380_66981,Shannon,114902-00009-1,0,4380_7778208_31688804,4380_1020 -4380_78021,288,4380_66982,Shannon,114906-00011-1,0,4380_7778208_31688804,4380_1020 -4380_78021,286,4380_66983,Shannon,114904-00010-1,0,4380_7778208_31688804,4380_1020 -4380_78021,289,4380_66984,Shannon,114900-00014-1,0,4380_7778208_31688804,4380_1020 -4380_78021,287,4380_66985,Shannon,114908-00012-1,0,4380_7778208_31688804,4380_1020 -4380_78021,290,4380_66986,Shannon,114903-00015-1,0,4380_7778208_31688804,4380_1020 -4380_78021,292,4380_66987,Shannon,114905-00016-1,0,4380_7778208_31688804,4380_1020 -4380_78021,294,4380_66988,Shannon,114909-00018-1,0,4380_7778208_31688804,4380_1020 -4380_78021,293,4380_66989,Shannon,114907-00017-1,0,4380_7778208_31688804,4380_1020 -4380_77953,286,4380_6699,Kells,5604-00010-1,0,4380_7778208_1090106,4380_93 -4380_78021,295,4380_66990,Shannon,114901-00019-1,0,4380_7778208_31688804,4380_1020 -4380_78021,285,4380_66996,Shannon Airport,96089-00009-1,0,4380_7778208_3160401,4380_1018 -4380_78021,288,4380_66997,Shannon Airport,96093-00011-1,0,4380_7778208_3160401,4380_1018 -4380_78021,286,4380_66998,Shannon Airport,96091-00010-1,0,4380_7778208_3160401,4380_1018 -4380_78021,289,4380_66999,Shannon Airport,96087-00014-1,0,4380_7778208_3160401,4380_1018 -4380_78113,291,4380_670,Dundalk,49778-00013-1,0,4380_7778208_1000904,4380_16 -4380_77953,288,4380_6700,Kells,5612-00011-1,0,4380_7778208_1090106,4380_93 -4380_78021,287,4380_67000,Shannon Airport,96085-00012-1,0,4380_7778208_3160401,4380_1018 -4380_78021,292,4380_67001,Shannon Airport,96092-00016-1,0,4380_7778208_3160401,4380_1018 -4380_78021,290,4380_67002,Shannon Airport,96090-00015-1,0,4380_7778208_3160401,4380_1018 -4380_78021,294,4380_67003,Shannon Airport,96086-00018-1,0,4380_7778208_3160401,4380_1018 -4380_78021,295,4380_67004,Shannon Airport,96088-00019-1,0,4380_7778208_3160401,4380_1018 -4380_78021,293,4380_67005,Shannon Airport,96094-00017-1,0,4380_7778208_3160401,4380_1018 -4380_78021,297,4380_67007,Shannon Airport,96110-00008-1,0,4380_7778208_3160401,4380_1018 -4380_78021,291,4380_67009,Shannon Airport,96108-00013-1,0,4380_7778208_3160401,4380_1023 -4380_77953,287,4380_6701,Kells,5620-00012-1,0,4380_7778208_1090106,4380_93 -4380_78021,296,4380_67010,Shannon Airport,96109-00021-1,0,4380_7778208_3160401,4380_1023 -4380_78021,285,4380_67016,Shannon Airport,96119-00009-1,0,4380_7778208_3160401,4380_1018 -4380_78021,288,4380_67017,Shannon Airport,96117-00011-1,0,4380_7778208_3160401,4380_1018 -4380_78021,286,4380_67018,Shannon Airport,96113-00010-1,0,4380_7778208_3160401,4380_1018 -4380_78021,289,4380_67019,Shannon Airport,96115-00014-1,0,4380_7778208_3160401,4380_1018 -4380_77953,289,4380_6702,Kells,5588-00014-1,0,4380_7778208_1090106,4380_93 -4380_78021,287,4380_67020,Shannon Airport,96111-00012-1,0,4380_7778208_3160401,4380_1018 -4380_78021,292,4380_67021,Shannon Airport,96114-00016-1,0,4380_7778208_3160401,4380_1018 -4380_78021,290,4380_67022,Shannon Airport,96120-00015-1,0,4380_7778208_3160401,4380_1018 -4380_78021,294,4380_67023,Shannon Airport,96112-00018-1,0,4380_7778208_3160401,4380_1018 -4380_78021,295,4380_67024,Shannon Airport,96116-00019-1,0,4380_7778208_3160401,4380_1018 -4380_78021,293,4380_67025,Shannon Airport,96118-00017-1,0,4380_7778208_3160401,4380_1018 -4380_77953,290,4380_6703,Kells,54918-00015-1,0,4380_7778208_1090106,4380_93 -4380_78021,285,4380_67031,Shannon Airport,96231-00009-1,0,4380_7778208_3170401,4380_1018 -4380_78021,288,4380_67032,Shannon Airport,96229-00011-1,0,4380_7778208_3170401,4380_1018 -4380_78021,286,4380_67033,Shannon Airport,96233-00010-1,0,4380_7778208_3170401,4380_1018 -4380_78021,289,4380_67034,Shannon Airport,96237-00014-1,0,4380_7778208_3170401,4380_1018 -4380_78021,287,4380_67035,Shannon Airport,96235-00012-1,0,4380_7778208_3170401,4380_1018 -4380_78021,292,4380_67036,Shannon Airport,96234-00016-1,0,4380_7778208_3170401,4380_1018 -4380_78021,290,4380_67037,Shannon Airport,96232-00015-1,0,4380_7778208_3170401,4380_1018 -4380_78021,294,4380_67038,Shannon Airport,96236-00018-1,0,4380_7778208_3170401,4380_1018 -4380_78021,295,4380_67039,Shannon Airport,96238-00019-1,0,4380_7778208_3170401,4380_1018 -4380_77953,291,4380_6704,Kells,5570-00013-1,0,4380_7778208_1090105,4380_95 -4380_78021,293,4380_67040,Shannon Airport,96230-00017-1,0,4380_7778208_3170401,4380_1018 -4380_78021,291,4380_67042,Shannon Airport,96132-00013-1,0,4380_7778208_3160401,4380_1018 -4380_78021,296,4380_67043,Shannon Airport,96133-00021-1,0,4380_7778208_3160401,4380_1018 -4380_78021,285,4380_67049,Shannon Airport,96146-00009-1,0,4380_7778208_3160401,4380_1018 -4380_77953,292,4380_6705,Kells,54922-00016-1,0,4380_7778208_1090106,4380_93 -4380_78021,288,4380_67050,Shannon Airport,96144-00011-1,0,4380_7778208_3160401,4380_1018 -4380_78021,286,4380_67051,Shannon Airport,96142-00010-1,0,4380_7778208_3160401,4380_1018 -4380_78021,289,4380_67052,Shannon Airport,96140-00014-1,0,4380_7778208_3160401,4380_1018 -4380_78021,287,4380_67053,Shannon Airport,96138-00012-1,0,4380_7778208_3160401,4380_1018 -4380_78021,292,4380_67054,Shannon Airport,96143-00016-1,0,4380_7778208_3160401,4380_1018 -4380_78021,290,4380_67055,Shannon Airport,96147-00015-1,0,4380_7778208_3160401,4380_1018 -4380_78021,294,4380_67056,Shannon Airport,96139-00018-1,0,4380_7778208_3160401,4380_1018 -4380_78021,295,4380_67057,Shannon Airport,96141-00019-1,0,4380_7778208_3160401,4380_1018 -4380_78021,293,4380_67058,Shannon Airport,96145-00017-1,0,4380_7778208_3160401,4380_1018 -4380_77953,293,4380_6706,Kells,54921-00017-1,0,4380_7778208_1090106,4380_93 -4380_78021,285,4380_67064,Sixmilebridge,95960-00009-1,1,4380_7778208_3160401,4380_1024 -4380_78021,288,4380_67065,Sixmilebridge,95956-00011-1,1,4380_7778208_3160401,4380_1024 -4380_78021,286,4380_67066,Sixmilebridge,95962-00010-1,1,4380_7778208_3160401,4380_1024 -4380_78021,289,4380_67067,Sixmilebridge,95958-00014-1,1,4380_7778208_3160401,4380_1024 -4380_78021,287,4380_67068,Sixmilebridge,95954-00012-1,1,4380_7778208_3160401,4380_1024 -4380_78021,292,4380_67069,Sixmilebridge,95963-00016-1,1,4380_7778208_3160401,4380_1024 -4380_77953,294,4380_6707,Kells,54919-00018-1,0,4380_7778208_1090106,4380_93 -4380_78021,290,4380_67070,Sixmilebridge,95961-00015-1,1,4380_7778208_3160401,4380_1024 -4380_78021,294,4380_67071,Sixmilebridge,95955-00018-1,1,4380_7778208_3160401,4380_1024 -4380_78021,295,4380_67072,Sixmilebridge,95959-00019-1,1,4380_7778208_3160401,4380_1024 -4380_78021,293,4380_67073,Sixmilebridge,95957-00017-1,1,4380_7778208_3160401,4380_1024 -4380_77953,295,4380_6708,Kells,54920-00019-1,0,4380_7778208_1090106,4380_93 -4380_78021,297,4380_67080,Sixmilebridge,95997-00008-1,1,4380_7778208_3160401,4380_1024 -4380_78021,285,4380_67081,Sixmilebridge,95998-00009-1,1,4380_7778208_3160401,4380_1024 -4380_78021,288,4380_67083,Sixmilebridge,96008-00011-1,1,4380_7778208_3160401,4380_1024 -4380_78021,286,4380_67084,Sixmilebridge,96000-00010-1,1,4380_7778208_3160401,4380_1024 -4380_78021,291,4380_67085,Sixmilebridge,96002-00013-1,1,4380_7778208_3160401,4380_1024 -4380_78021,289,4380_67086,Sixmilebridge,96004-00014-1,1,4380_7778208_3160401,4380_1024 -4380_78021,287,4380_67087,Sixmilebridge,96006-00012-1,1,4380_7778208_3160401,4380_1024 -4380_78021,292,4380_67088,Sixmilebridge,96001-00016-1,1,4380_7778208_3160401,4380_1024 -4380_78021,290,4380_67089,Sixmilebridge,95999-00015-1,1,4380_7778208_3160401,4380_1024 -4380_77953,296,4380_6709,Kells,54865-00021-1,0,4380_7778208_1090105,4380_95 -4380_78021,294,4380_67090,Sixmilebridge,96007-00018-1,1,4380_7778208_3160401,4380_1024 -4380_78021,295,4380_67091,Sixmilebridge,96005-00019-1,1,4380_7778208_3160401,4380_1024 -4380_78021,293,4380_67092,Sixmilebridge,96009-00017-1,1,4380_7778208_3160401,4380_1024 -4380_78021,296,4380_67093,Sixmilebridge,96003-00021-1,1,4380_7778208_3160401,4380_1024 -4380_78113,292,4380_671,Dundalk,49775-00016-1,0,4380_7778208_1000904,4380_10 -4380_78021,297,4380_67100,Sixmilebridge,96033-00008-1,1,4380_7778208_3160401,4380_1024 -4380_78021,285,4380_67101,Sixmilebridge,96027-00009-1,1,4380_7778208_3160401,4380_1024 -4380_78021,288,4380_67103,Sixmilebridge,96023-00011-1,1,4380_7778208_3160401,4380_1024 -4380_78021,286,4380_67104,Sixmilebridge,96031-00010-1,1,4380_7778208_3160401,4380_1024 -4380_78021,291,4380_67105,Sixmilebridge,96025-00013-1,1,4380_7778208_3160401,4380_1024 -4380_78021,289,4380_67106,Sixmilebridge,96029-00014-1,1,4380_7778208_3160401,4380_1024 -4380_78021,287,4380_67107,Sixmilebridge,96034-00012-1,1,4380_7778208_3160401,4380_1024 -4380_78021,292,4380_67108,Sixmilebridge,96032-00016-1,1,4380_7778208_3160401,4380_1024 -4380_78021,290,4380_67109,Sixmilebridge,96028-00015-1,1,4380_7778208_3160401,4380_1024 -4380_78021,294,4380_67110,Sixmilebridge,96035-00018-1,1,4380_7778208_3160401,4380_1024 -4380_78021,295,4380_67111,Sixmilebridge,96030-00019-1,1,4380_7778208_3160401,4380_1024 -4380_78021,293,4380_67112,Sixmilebridge,96024-00017-1,1,4380_7778208_3160401,4380_1024 -4380_78021,296,4380_67113,Sixmilebridge,96026-00021-1,1,4380_7778208_3160401,4380_1024 -4380_78021,285,4380_67119,Sixmilebridge,96051-00009-1,1,4380_7778208_3160401,4380_1024 -4380_78021,288,4380_67120,Sixmilebridge,96055-00011-1,1,4380_7778208_3160401,4380_1024 -4380_78021,286,4380_67121,Sixmilebridge,96057-00010-1,1,4380_7778208_3160401,4380_1024 -4380_78021,289,4380_67122,Sixmilebridge,96049-00014-1,1,4380_7778208_3160401,4380_1024 -4380_78021,287,4380_67123,Sixmilebridge,96053-00012-1,1,4380_7778208_3160401,4380_1024 -4380_78021,292,4380_67124,Sixmilebridge,96058-00016-1,1,4380_7778208_3160401,4380_1024 -4380_78021,290,4380_67125,Sixmilebridge,96052-00015-1,1,4380_7778208_3160401,4380_1024 -4380_78021,294,4380_67126,Sixmilebridge,96054-00018-1,1,4380_7778208_3160401,4380_1024 -4380_78021,295,4380_67127,Sixmilebridge,96050-00019-1,1,4380_7778208_3160401,4380_1024 -4380_78021,293,4380_67128,Sixmilebridge,96056-00017-1,1,4380_7778208_3160401,4380_1024 -4380_78021,297,4380_67130,Sixmilebridge,96071-00008-1,1,4380_7778208_3160401,4380_1024 -4380_78021,291,4380_67132,Sixmilebridge,96069-00013-1,1,4380_7778208_3160401,4380_1024 -4380_78021,296,4380_67133,Sixmilebridge,96070-00021-1,1,4380_7778208_3160401,4380_1024 -4380_78021,285,4380_67139,Sixmilebridge,99062-00009-1,1,4380_7778208_3500401,4380_1024 -4380_78021,288,4380_67140,Sixmilebridge,99064-00011-1,1,4380_7778208_3500401,4380_1024 -4380_78021,286,4380_67141,Sixmilebridge,99066-00010-1,1,4380_7778208_3500401,4380_1024 -4380_78021,289,4380_67142,Sixmilebridge,99058-00014-1,1,4380_7778208_3500401,4380_1024 -4380_78021,287,4380_67143,Sixmilebridge,99060-00012-1,1,4380_7778208_3500401,4380_1024 -4380_78021,292,4380_67144,Sixmilebridge,99067-00016-1,1,4380_7778208_3500401,4380_1024 -4380_78021,290,4380_67145,Sixmilebridge,99063-00015-1,1,4380_7778208_3500401,4380_1024 -4380_78021,294,4380_67146,Sixmilebridge,99061-00018-1,1,4380_7778208_3500401,4380_1024 -4380_78021,295,4380_67147,Sixmilebridge,99059-00019-1,1,4380_7778208_3500401,4380_1024 -4380_78021,293,4380_67148,Sixmilebridge,99065-00017-1,1,4380_7778208_3500401,4380_1024 -4380_78021,288,4380_67152,Sixmilebridge,114922-00011-1,1,4380_7778208_31688807,4380_1025 -4380_78021,286,4380_67153,Sixmilebridge,114924-00010-1,1,4380_7778208_31688807,4380_1025 -4380_78021,287,4380_67154,Sixmilebridge,114920-00012-1,1,4380_7778208_31688807,4380_1025 -4380_78021,292,4380_67155,Sixmilebridge,114925-00016-1,1,4380_7778208_31688807,4380_1025 -4380_78021,294,4380_67156,Sixmilebridge,114921-00018-1,1,4380_7778208_31688807,4380_1025 -4380_78021,293,4380_67157,Sixmilebridge,114923-00017-1,1,4380_7778208_31688807,4380_1025 -4380_77953,285,4380_6716,Dunshaughlin,5913-00009-1,0,4380_7778208_1090112,4380_94 -4380_78021,288,4380_67161,Sixmilebridge,114910-00011-1,1,4380_7778208_31688806,4380_1025 -4380_78021,286,4380_67162,Sixmilebridge,114912-00010-1,1,4380_7778208_31688806,4380_1025 -4380_78021,287,4380_67163,Sixmilebridge,114914-00012-1,1,4380_7778208_31688806,4380_1025 -4380_78021,292,4380_67164,Sixmilebridge,114913-00016-1,1,4380_7778208_31688806,4380_1025 -4380_78021,294,4380_67165,Sixmilebridge,114915-00018-1,1,4380_7778208_31688806,4380_1025 -4380_78021,293,4380_67166,Sixmilebridge,114911-00017-1,1,4380_7778208_31688806,4380_1025 -4380_77953,286,4380_6717,Dunshaughlin,5922-00010-1,0,4380_7778208_1090112,4380_94 -4380_78021,285,4380_67176,Sixmilebridge,96081-00009-1,1,4380_7778208_3160401,4380_1025 -4380_78021,285,4380_67177,Sixmilebridge,114916-00009-1,1,4380_7778208_31688806,4380_1025 -4380_78021,285,4380_67178,Sixmilebridge,114928-00009-1,1,4380_7778208_31688807,4380_1025 -4380_78021,288,4380_67179,Sixmilebridge,96077-00011-1,1,4380_7778208_3160401,4380_1025 -4380_77953,288,4380_6718,Dunshaughlin,5931-00011-1,0,4380_7778208_1090112,4380_94 -4380_78021,286,4380_67180,Sixmilebridge,96075-00010-1,1,4380_7778208_3160401,4380_1025 -4380_78021,289,4380_67181,Sixmilebridge,96079-00014-1,1,4380_7778208_3160401,4380_1025 -4380_78021,289,4380_67182,Sixmilebridge,114918-00014-1,1,4380_7778208_31688806,4380_1025 -4380_78021,289,4380_67183,Sixmilebridge,114926-00014-1,1,4380_7778208_31688807,4380_1025 -4380_78021,287,4380_67184,Sixmilebridge,96083-00012-1,1,4380_7778208_3160401,4380_1025 -4380_78021,290,4380_67185,Sixmilebridge,114917-00015-1,1,4380_7778208_31688806,4380_1025 -4380_78021,290,4380_67186,Sixmilebridge,114929-00015-1,1,4380_7778208_31688807,4380_1025 -4380_78021,292,4380_67187,Sixmilebridge,96076-00016-1,1,4380_7778208_3160401,4380_1025 -4380_78021,290,4380_67188,Sixmilebridge,96082-00015-1,1,4380_7778208_3160401,4380_1025 -4380_78021,294,4380_67189,Sixmilebridge,96084-00018-1,1,4380_7778208_3160401,4380_1025 -4380_77953,287,4380_6719,Dunshaughlin,5938-00012-1,0,4380_7778208_1090112,4380_94 -4380_78021,295,4380_67190,Sixmilebridge,96080-00019-1,1,4380_7778208_3160401,4380_1025 -4380_78021,293,4380_67191,Sixmilebridge,96078-00017-1,1,4380_7778208_3160401,4380_1025 -4380_78021,295,4380_67192,Sixmilebridge,114919-00019-1,1,4380_7778208_31688806,4380_1025 -4380_78021,295,4380_67193,Sixmilebridge,114927-00019-1,1,4380_7778208_31688807,4380_1025 -4380_78021,285,4380_67199,Sixmilebridge,114890-00009-1,1,4380_7778208_31688803,4380_1025 -4380_78113,293,4380_672,Dundalk,49771-00017-1,0,4380_7778208_1000904,4380_10 -4380_77953,289,4380_6720,Dunshaughlin,5902-00014-1,0,4380_7778208_1090112,4380_94 -4380_78021,288,4380_67200,Sixmilebridge,114894-00011-1,1,4380_7778208_31688803,4380_1025 -4380_78021,286,4380_67201,Sixmilebridge,114892-00010-1,1,4380_7778208_31688803,4380_1025 -4380_78021,289,4380_67202,Sixmilebridge,114898-00014-1,1,4380_7778208_31688803,4380_1025 -4380_78021,287,4380_67203,Sixmilebridge,114896-00012-1,1,4380_7778208_31688803,4380_1025 -4380_78021,290,4380_67204,Sixmilebridge,114891-00015-1,1,4380_7778208_31688803,4380_1025 -4380_78021,292,4380_67205,Sixmilebridge,114893-00016-1,1,4380_7778208_31688803,4380_1025 -4380_78021,294,4380_67206,Sixmilebridge,114897-00018-1,1,4380_7778208_31688803,4380_1025 -4380_78021,293,4380_67207,Sixmilebridge,114895-00017-1,1,4380_7778208_31688803,4380_1025 -4380_78021,295,4380_67208,Sixmilebridge,114899-00019-1,1,4380_7778208_31688803,4380_1025 -4380_77953,290,4380_6721,Dunshaughlin,55155-00015-1,0,4380_7778208_1090112,4380_94 -4380_78021,297,4380_67210,Sixmilebridge,96097-00008-1,1,4380_7778208_3160401,4380_1024 -4380_78021,291,4380_67212,Sixmilebridge,96095-00013-1,1,4380_7778208_3160401,4380_1024 -4380_78021,296,4380_67213,Sixmilebridge,96096-00021-1,1,4380_7778208_3160401,4380_1024 -4380_78021,285,4380_67219,Sixmilebridge,96102-00009-1,1,4380_7778208_3160401,4380_1024 -4380_77953,291,4380_6722,Dunshaughlin,6809-00013-1,0,4380_7778208_1090901,4380_96 -4380_78021,288,4380_67220,Sixmilebridge,96104-00011-1,1,4380_7778208_3160401,4380_1024 -4380_78021,286,4380_67221,Sixmilebridge,96106-00010-1,1,4380_7778208_3160401,4380_1024 -4380_78021,289,4380_67222,Sixmilebridge,96100-00014-1,1,4380_7778208_3160401,4380_1024 -4380_78021,287,4380_67223,Sixmilebridge,96098-00012-1,1,4380_7778208_3160401,4380_1024 -4380_78021,292,4380_67224,Sixmilebridge,96107-00016-1,1,4380_7778208_3160401,4380_1024 -4380_78021,290,4380_67225,Sixmilebridge,96103-00015-1,1,4380_7778208_3160401,4380_1024 -4380_78021,294,4380_67226,Sixmilebridge,96099-00018-1,1,4380_7778208_3160401,4380_1024 -4380_78021,295,4380_67227,Sixmilebridge,96101-00019-1,1,4380_7778208_3160401,4380_1024 -4380_78021,293,4380_67228,Sixmilebridge,96105-00017-1,1,4380_7778208_3160401,4380_1024 -4380_77953,292,4380_6723,Dunshaughlin,55156-00016-1,0,4380_7778208_1090112,4380_94 -4380_78021,285,4380_67234,Sixmilebridge,96225-00009-1,1,4380_7778208_3170401,4380_1024 -4380_78021,288,4380_67235,Sixmilebridge,96227-00011-1,1,4380_7778208_3170401,4380_1024 -4380_78021,286,4380_67236,Sixmilebridge,96223-00010-1,1,4380_7778208_3170401,4380_1024 -4380_78021,289,4380_67237,Sixmilebridge,96219-00014-1,1,4380_7778208_3170401,4380_1024 -4380_78021,287,4380_67238,Sixmilebridge,96221-00012-1,1,4380_7778208_3170401,4380_1024 -4380_78021,292,4380_67239,Sixmilebridge,96224-00016-1,1,4380_7778208_3170401,4380_1024 -4380_77953,293,4380_6724,Dunshaughlin,55157-00017-1,0,4380_7778208_1090112,4380_94 -4380_78021,290,4380_67240,Sixmilebridge,96226-00015-1,1,4380_7778208_3170401,4380_1024 -4380_78021,294,4380_67241,Sixmilebridge,96222-00018-1,1,4380_7778208_3170401,4380_1024 -4380_78021,295,4380_67242,Sixmilebridge,96220-00019-1,1,4380_7778208_3170401,4380_1024 -4380_78021,293,4380_67243,Sixmilebridge,96228-00017-1,1,4380_7778208_3170401,4380_1024 -4380_78021,297,4380_67245,Sixmilebridge,96121-00008-1,1,4380_7778208_3160401,4380_1024 -4380_78021,291,4380_67247,Sixmilebridge,96122-00013-1,1,4380_7778208_3160401,4380_1024 -4380_78021,296,4380_67248,Sixmilebridge,96123-00021-1,1,4380_7778208_3160401,4380_1024 -4380_77953,294,4380_6725,Dunshaughlin,55153-00018-1,0,4380_7778208_1090112,4380_94 -4380_78021,285,4380_67254,Sixmilebridge,96134-00009-1,1,4380_7778208_3160401,4380_1024 -4380_78021,288,4380_67255,Sixmilebridge,96126-00011-1,1,4380_7778208_3160401,4380_1024 -4380_78021,286,4380_67256,Sixmilebridge,96124-00010-1,1,4380_7778208_3160401,4380_1024 -4380_78021,289,4380_67257,Sixmilebridge,96130-00014-1,1,4380_7778208_3160401,4380_1024 -4380_78021,287,4380_67258,Sixmilebridge,96128-00012-1,1,4380_7778208_3160401,4380_1024 -4380_78021,292,4380_67259,Sixmilebridge,96125-00016-1,1,4380_7778208_3160401,4380_1024 -4380_77953,295,4380_6726,Dunshaughlin,55154-00019-1,0,4380_7778208_1090112,4380_94 -4380_78021,290,4380_67260,Sixmilebridge,96135-00015-1,1,4380_7778208_3160401,4380_1024 -4380_78021,294,4380_67261,Sixmilebridge,96129-00018-1,1,4380_7778208_3160401,4380_1024 -4380_78021,295,4380_67262,Sixmilebridge,96131-00019-1,1,4380_7778208_3160401,4380_1024 -4380_78021,293,4380_67263,Sixmilebridge,96127-00017-1,1,4380_7778208_3160401,4380_1024 -4380_78021,291,4380_67265,Sixmilebridge,96136-00013-1,1,4380_7778208_3160401,4380_1024 -4380_78021,296,4380_67266,Sixmilebridge,96137-00021-1,1,4380_7778208_3160401,4380_1024 -4380_77953,296,4380_6727,Dunshaughlin,55329-00021-1,0,4380_7778208_1090901,4380_96 -4380_78021,285,4380_67272,Sixmilebridge,97163-00009-1,1,4380_7778208_3300401,4380_1024 -4380_78021,288,4380_67273,Sixmilebridge,97171-00011-1,1,4380_7778208_3300401,4380_1024 -4380_78021,286,4380_67274,Sixmilebridge,97165-00010-1,1,4380_7778208_3300401,4380_1024 -4380_78021,289,4380_67275,Sixmilebridge,97167-00014-1,1,4380_7778208_3300401,4380_1024 -4380_78021,287,4380_67276,Sixmilebridge,97169-00012-1,1,4380_7778208_3300401,4380_1024 -4380_78021,292,4380_67277,Sixmilebridge,97166-00016-1,1,4380_7778208_3300401,4380_1024 -4380_78021,290,4380_67278,Sixmilebridge,97164-00015-1,1,4380_7778208_3300401,4380_1024 -4380_78021,294,4380_67279,Sixmilebridge,97170-00018-1,1,4380_7778208_3300401,4380_1024 -4380_78021,295,4380_67280,Sixmilebridge,97168-00019-1,1,4380_7778208_3300401,4380_1024 -4380_78021,293,4380_67281,Sixmilebridge,97172-00017-1,1,4380_7778208_3300401,4380_1024 -4380_78022,297,4380_67288,Ennis,96160-00008-1,0,4380_7778208_3170401,4380_1026 -4380_78022,285,4380_67289,Ennis,96152-00009-1,0,4380_7778208_3170401,4380_1026 -4380_78022,288,4380_67291,Ennis,96158-00011-1,0,4380_7778208_3170401,4380_1026 -4380_78022,286,4380_67292,Ennis,96148-00010-1,0,4380_7778208_3170401,4380_1026 -4380_78022,291,4380_67293,Ennis,96150-00013-1,0,4380_7778208_3170401,4380_1026 -4380_78022,289,4380_67294,Ennis,96156-00014-1,0,4380_7778208_3170401,4380_1026 -4380_78022,287,4380_67295,Ennis,96154-00012-1,0,4380_7778208_3170401,4380_1026 -4380_78022,292,4380_67296,Ennis,96149-00016-1,0,4380_7778208_3170401,4380_1026 -4380_78022,290,4380_67297,Ennis,96153-00015-1,0,4380_7778208_3170401,4380_1026 -4380_78022,294,4380_67298,Ennis,96155-00018-1,0,4380_7778208_3170401,4380_1026 -4380_78022,295,4380_67299,Ennis,96157-00019-1,0,4380_7778208_3170401,4380_1026 -4380_78113,294,4380_673,Dundalk,49777-00018-1,0,4380_7778208_1000904,4380_10 -4380_78022,293,4380_67300,Ennis,96159-00017-1,0,4380_7778208_3170401,4380_1026 -4380_78022,296,4380_67301,Ennis,96151-00021-1,0,4380_7778208_3170401,4380_1026 -4380_78022,297,4380_67308,Ennis,96178-00008-1,0,4380_7778208_3170401,4380_1026 -4380_78022,285,4380_67309,Ennis,96174-00009-1,0,4380_7778208_3170401,4380_1026 -4380_78022,288,4380_67311,Ennis,96181-00011-1,0,4380_7778208_3170401,4380_1026 -4380_78022,286,4380_67312,Ennis,96179-00010-1,0,4380_7778208_3170401,4380_1026 -4380_78022,291,4380_67313,Ennis,96185-00013-1,0,4380_7778208_3170401,4380_1026 -4380_78022,289,4380_67314,Ennis,96176-00014-1,0,4380_7778208_3170401,4380_1026 -4380_78022,287,4380_67315,Ennis,96183-00012-1,0,4380_7778208_3170401,4380_1026 -4380_78022,292,4380_67316,Ennis,96180-00016-1,0,4380_7778208_3170401,4380_1026 -4380_78022,290,4380_67317,Ennis,96175-00015-1,0,4380_7778208_3170401,4380_1026 -4380_78022,294,4380_67318,Ennis,96184-00018-1,0,4380_7778208_3170401,4380_1026 -4380_78022,295,4380_67319,Ennis,96177-00019-1,0,4380_7778208_3170401,4380_1026 -4380_78022,293,4380_67320,Ennis,96182-00017-1,0,4380_7778208_3170401,4380_1026 -4380_78022,296,4380_67321,Ennis,96186-00021-1,0,4380_7778208_3170401,4380_1026 -4380_78022,297,4380_67323,Ennis,96202-00008-1,0,4380_7778208_3170401,4380_1026 -4380_78022,291,4380_67325,Ennis,96200-00013-1,0,4380_7778208_3170401,4380_1026 -4380_78022,296,4380_67326,Ennis,96201-00021-1,0,4380_7778208_3170401,4380_1026 -4380_78022,285,4380_67332,Ennis,96209-00009-1,0,4380_7778208_3170401,4380_1026 -4380_78022,288,4380_67333,Ennis,96205-00011-1,0,4380_7778208_3170401,4380_1026 -4380_78022,286,4380_67334,Ennis,96207-00010-1,0,4380_7778208_3170401,4380_1026 -4380_78022,289,4380_67335,Ennis,96211-00014-1,0,4380_7778208_3170401,4380_1026 -4380_78022,287,4380_67336,Ennis,96203-00012-1,0,4380_7778208_3170401,4380_1026 -4380_78022,292,4380_67337,Ennis,96208-00016-1,0,4380_7778208_3170401,4380_1026 -4380_78022,290,4380_67338,Ennis,96210-00015-1,0,4380_7778208_3170401,4380_1026 -4380_78022,294,4380_67339,Ennis,96204-00018-1,0,4380_7778208_3170401,4380_1026 -4380_78022,295,4380_67340,Ennis,96212-00019-1,0,4380_7778208_3170401,4380_1026 -4380_78022,293,4380_67341,Ennis,96206-00017-1,0,4380_7778208_3170401,4380_1026 -4380_78022,285,4380_67347,Ennis,96276-00009-1,0,4380_7778208_3170402,4380_1026 -4380_78022,288,4380_67348,Ennis,96274-00011-1,0,4380_7778208_3170402,4380_1026 -4380_78022,286,4380_67349,Ennis,96280-00010-1,0,4380_7778208_3170402,4380_1026 -4380_77953,285,4380_6735,Kells,5659-00009-1,0,4380_7778208_1090107,4380_95 -4380_78022,289,4380_67350,Ennis,96272-00014-1,0,4380_7778208_3170402,4380_1026 -4380_78022,287,4380_67351,Ennis,96278-00012-1,0,4380_7778208_3170402,4380_1026 -4380_78022,292,4380_67352,Ennis,96281-00016-1,0,4380_7778208_3170402,4380_1026 -4380_78022,290,4380_67353,Ennis,96277-00015-1,0,4380_7778208_3170402,4380_1026 -4380_78022,294,4380_67354,Ennis,96279-00018-1,0,4380_7778208_3170402,4380_1026 -4380_78022,295,4380_67355,Ennis,96273-00019-1,0,4380_7778208_3170402,4380_1026 -4380_78022,293,4380_67356,Ennis,96275-00017-1,0,4380_7778208_3170402,4380_1026 -4380_78022,297,4380_67358,Ennis,96216-00008-1,0,4380_7778208_3170401,4380_1026 -4380_77953,286,4380_6736,Kells,5667-00010-1,0,4380_7778208_1090107,4380_95 -4380_78022,291,4380_67360,Ennis,96217-00013-1,0,4380_7778208_3170401,4380_1026 -4380_78022,296,4380_67361,Ennis,96218-00021-1,0,4380_7778208_3170401,4380_1026 -4380_78022,285,4380_67367,Limerick Bus Station,96161-00009-1,1,4380_7778208_3170401,4380_1027 -4380_78022,288,4380_67368,Limerick Bus Station,96163-00011-1,1,4380_7778208_3170401,4380_1027 -4380_78022,286,4380_67369,Limerick Bus Station,96167-00010-1,1,4380_7778208_3170401,4380_1027 -4380_77953,297,4380_6737,Kells,5577-00008-1,0,4380_7778208_1090105,4380_91 -4380_78022,289,4380_67370,Limerick Bus Station,96165-00014-1,1,4380_7778208_3170401,4380_1027 -4380_78022,287,4380_67371,Limerick Bus Station,96169-00012-1,1,4380_7778208_3170401,4380_1027 -4380_78022,292,4380_67372,Limerick Bus Station,96168-00016-1,1,4380_7778208_3170401,4380_1027 -4380_78022,290,4380_67373,Limerick Bus Station,96162-00015-1,1,4380_7778208_3170401,4380_1027 -4380_78022,294,4380_67374,Limerick Bus Station,96170-00018-1,1,4380_7778208_3170401,4380_1027 -4380_78022,295,4380_67375,Limerick Bus Station,96166-00019-1,1,4380_7778208_3170401,4380_1027 -4380_78022,293,4380_67376,Limerick Bus Station,96164-00017-1,1,4380_7778208_3170401,4380_1027 -4380_78022,297,4380_67378,Limerick Bus Station,96171-00008-1,1,4380_7778208_3170401,4380_1027 -4380_77953,288,4380_6738,Kells,5675-00011-1,0,4380_7778208_1090107,4380_95 -4380_78022,291,4380_67380,Limerick Bus Station,96172-00013-1,1,4380_7778208_3170401,4380_1027 -4380_78022,296,4380_67381,Limerick Bus Station,96173-00021-1,1,4380_7778208_3170401,4380_1027 -4380_78022,297,4380_67388,Limerick Bus Station,96191-00008-1,1,4380_7778208_3170401,4380_1027 -4380_78022,285,4380_67389,Limerick Bus Station,96196-00009-1,1,4380_7778208_3170401,4380_1028 -4380_77953,287,4380_6739,Kells,5683-00012-1,0,4380_7778208_1090107,4380_95 -4380_78022,288,4380_67391,Limerick Bus Station,96198-00011-1,1,4380_7778208_3170401,4380_1028 -4380_78022,286,4380_67392,Limerick Bus Station,96187-00010-1,1,4380_7778208_3170401,4380_1028 -4380_78022,291,4380_67393,Limerick Bus Station,96189-00013-1,1,4380_7778208_3170401,4380_1027 -4380_78022,289,4380_67394,Limerick Bus Station,96194-00014-1,1,4380_7778208_3170401,4380_1028 -4380_78022,287,4380_67395,Limerick Bus Station,96192-00012-1,1,4380_7778208_3170401,4380_1028 -4380_78022,292,4380_67396,Limerick Bus Station,96188-00016-1,1,4380_7778208_3170401,4380_1028 -4380_78022,290,4380_67397,Limerick Bus Station,96197-00015-1,1,4380_7778208_3170401,4380_1028 -4380_78022,294,4380_67398,Limerick Bus Station,96193-00018-1,1,4380_7778208_3170401,4380_1028 -4380_78022,295,4380_67399,Limerick Bus Station,96195-00019-1,1,4380_7778208_3170401,4380_1028 -4380_78113,295,4380_674,Dundalk,49773-00019-1,0,4380_7778208_1000904,4380_10 -4380_77953,289,4380_6740,Kells,5651-00014-1,0,4380_7778208_1090107,4380_95 -4380_78022,293,4380_67400,Limerick Bus Station,96199-00017-1,1,4380_7778208_3170401,4380_1028 -4380_78022,296,4380_67401,Limerick Bus Station,96190-00021-1,1,4380_7778208_3170401,4380_1027 -4380_78022,297,4380_67403,Limerick Bus Station,96213-00008-1,1,4380_7778208_3170401,4380_1027 -4380_78022,291,4380_67405,Limerick Bus Station,96214-00013-1,1,4380_7778208_3170401,4380_1027 -4380_78022,296,4380_67406,Limerick Bus Station,96215-00021-1,1,4380_7778208_3170401,4380_1027 -4380_77953,290,4380_6741,Kells,54963-00015-1,0,4380_7778208_1090107,4380_95 -4380_78022,285,4380_67412,Limerick Bus Station,96288-00009-1,1,4380_7778208_3170402,4380_1027 -4380_78022,288,4380_67413,Limerick Bus Station,96290-00011-1,1,4380_7778208_3170402,4380_1027 -4380_78022,286,4380_67414,Limerick Bus Station,96282-00010-1,1,4380_7778208_3170402,4380_1027 -4380_78022,289,4380_67415,Limerick Bus Station,96286-00014-1,1,4380_7778208_3170402,4380_1027 -4380_78022,287,4380_67416,Limerick Bus Station,96284-00012-1,1,4380_7778208_3170402,4380_1027 -4380_78022,292,4380_67417,Limerick Bus Station,96283-00016-1,1,4380_7778208_3170402,4380_1027 -4380_78022,290,4380_67418,Limerick Bus Station,96289-00015-1,1,4380_7778208_3170402,4380_1027 -4380_78022,294,4380_67419,Limerick Bus Station,96285-00018-1,1,4380_7778208_3170402,4380_1027 -4380_77953,291,4380_6742,Kells,5350-00013-1,0,4380_7778208_1090102,4380_99 -4380_78022,295,4380_67420,Limerick Bus Station,96287-00019-1,1,4380_7778208_3170402,4380_1027 -4380_78022,293,4380_67421,Limerick Bus Station,96291-00017-1,1,4380_7778208_3170402,4380_1027 -4380_78022,297,4380_67428,Limerick Bus Station,96251-00008-1,1,4380_7778208_3170401,4380_1027 -4380_78022,285,4380_67429,Limerick Bus Station,96247-00009-1,1,4380_7778208_3170401,4380_1028 -4380_77953,292,4380_6743,Kells,54967-00016-1,0,4380_7778208_1090107,4380_95 -4380_78022,288,4380_67431,Limerick Bus Station,96243-00011-1,1,4380_7778208_3170401,4380_1028 -4380_78022,286,4380_67432,Limerick Bus Station,96245-00010-1,1,4380_7778208_3170401,4380_1028 -4380_78022,291,4380_67433,Limerick Bus Station,96241-00013-1,1,4380_7778208_3170401,4380_1027 -4380_78022,289,4380_67434,Limerick Bus Station,96239-00014-1,1,4380_7778208_3170401,4380_1028 -4380_78022,287,4380_67435,Limerick Bus Station,96249-00012-1,1,4380_7778208_3170401,4380_1028 -4380_78022,292,4380_67436,Limerick Bus Station,96246-00016-1,1,4380_7778208_3170401,4380_1028 -4380_78022,290,4380_67437,Limerick Bus Station,96248-00015-1,1,4380_7778208_3170401,4380_1028 -4380_78022,294,4380_67438,Limerick Bus Station,96250-00018-1,1,4380_7778208_3170401,4380_1028 -4380_78022,295,4380_67439,Limerick Bus Station,96240-00019-1,1,4380_7778208_3170401,4380_1028 -4380_77953,293,4380_6744,Kells,54965-00017-1,0,4380_7778208_1090107,4380_95 -4380_78022,293,4380_67440,Limerick Bus Station,96244-00017-1,1,4380_7778208_3170401,4380_1028 -4380_78022,296,4380_67441,Limerick Bus Station,96242-00021-1,1,4380_7778208_3170401,4380_1027 -4380_78134,285,4380_67447,Ennis,96256-00009-1,0,4380_7778208_3170402,4380_1029 -4380_78134,288,4380_67448,Ennis,96258-00011-1,0,4380_7778208_3170402,4380_1029 -4380_78134,286,4380_67449,Ennis,96260-00010-1,0,4380_7778208_3170402,4380_1029 -4380_77953,294,4380_6745,Kells,54964-00018-1,0,4380_7778208_1090107,4380_95 -4380_78134,289,4380_67450,Ennis,96254-00014-1,0,4380_7778208_3170402,4380_1029 -4380_78134,287,4380_67451,Ennis,96252-00012-1,0,4380_7778208_3170402,4380_1029 -4380_78134,292,4380_67452,Ennis,96261-00016-1,0,4380_7778208_3170402,4380_1029 -4380_78134,290,4380_67453,Ennis,96257-00015-1,0,4380_7778208_3170402,4380_1029 -4380_78134,294,4380_67454,Ennis,96253-00018-1,0,4380_7778208_3170402,4380_1029 -4380_78134,295,4380_67455,Ennis,96255-00019-1,0,4380_7778208_3170402,4380_1029 -4380_78134,293,4380_67456,Ennis,96259-00017-1,0,4380_7778208_3170402,4380_1029 -4380_77953,295,4380_6746,Kells,54966-00019-1,0,4380_7778208_1090107,4380_95 -4380_78134,285,4380_67462,Limerick Bus Station,96270-00009-1,1,4380_7778208_3170402,4380_1030 -4380_78134,288,4380_67463,Limerick Bus Station,96262-00011-1,1,4380_7778208_3170402,4380_1030 -4380_78134,286,4380_67464,Limerick Bus Station,96266-00010-1,1,4380_7778208_3170402,4380_1030 -4380_78134,289,4380_67465,Limerick Bus Station,96264-00014-1,1,4380_7778208_3170402,4380_1030 -4380_78134,287,4380_67466,Limerick Bus Station,96268-00012-1,1,4380_7778208_3170402,4380_1030 -4380_78134,292,4380_67467,Limerick Bus Station,96267-00016-1,1,4380_7778208_3170402,4380_1030 -4380_78134,290,4380_67468,Limerick Bus Station,96271-00015-1,1,4380_7778208_3170402,4380_1030 -4380_78134,294,4380_67469,Limerick Bus Station,96269-00018-1,1,4380_7778208_3170402,4380_1030 -4380_77953,296,4380_6747,Kells,54710-00021-1,0,4380_7778208_1090102,4380_99 -4380_78134,295,4380_67470,Limerick Bus Station,96265-00019-1,1,4380_7778208_3170402,4380_1030 -4380_78134,293,4380_67471,Limerick Bus Station,96263-00017-1,1,4380_7778208_3170402,4380_1030 -4380_77936,285,4380_67479,Letterkenny,47124-00009-1,0,4380_7778208_320101,4380_1031 -4380_77936,286,4380_67480,Letterkenny,47128-00010-1,0,4380_7778208_320101,4380_1031 -4380_77936,297,4380_67481,Letterkenny,47117-00008-1,0,4380_7778208_320101,4380_1031 -4380_77936,287,4380_67482,Letterkenny,47122-00012-1,0,4380_7778208_320101,4380_1031 -4380_77936,288,4380_67483,Letterkenny,47126-00011-1,0,4380_7778208_320101,4380_1031 -4380_77936,289,4380_67484,Letterkenny,47118-00014-1,0,4380_7778208_320101,4380_1031 -4380_77936,290,4380_67485,Letterkenny,47125-00015-1,0,4380_7778208_320101,4380_1031 -4380_77936,291,4380_67486,Letterkenny,47120-00013-1,0,4380_7778208_320101,4380_1031 -4380_77936,292,4380_67487,Letterkenny,47129-00016-1,0,4380_7778208_320101,4380_1031 -4380_77936,293,4380_67488,Letterkenny,47127-00017-1,0,4380_7778208_320101,4380_1031 -4380_77936,295,4380_67489,Letterkenny,47119-00019-1,0,4380_7778208_320101,4380_1031 -4380_77936,294,4380_67490,Letterkenny,47123-00018-1,0,4380_7778208_320101,4380_1031 -4380_77936,296,4380_67491,Letterkenny,47121-00021-1,0,4380_7778208_320101,4380_1031 -4380_77936,285,4380_67499,Letterkenny,47163-00009-1,0,4380_7778208_320102,4380_1031 -4380_78113,296,4380_675,Dundalk,49779-00021-1,0,4380_7778208_1000904,4380_16 -4380_77936,286,4380_67500,Letterkenny,47156-00010-1,0,4380_7778208_320102,4380_1031 -4380_77936,297,4380_67501,Letterkenny,47162-00008-1,0,4380_7778208_320102,4380_1031 -4380_77936,287,4380_67502,Letterkenny,47167-00012-1,0,4380_7778208_320102,4380_1031 -4380_77936,288,4380_67503,Letterkenny,47160-00011-1,0,4380_7778208_320102,4380_1031 -4380_77936,289,4380_67504,Letterkenny,47158-00014-1,0,4380_7778208_320102,4380_1031 -4380_77936,290,4380_67505,Letterkenny,47164-00015-1,0,4380_7778208_320102,4380_1031 -4380_77936,291,4380_67506,Letterkenny,47165-00013-1,0,4380_7778208_320102,4380_1031 -4380_77936,292,4380_67507,Letterkenny,47157-00016-1,0,4380_7778208_320102,4380_1031 -4380_77936,293,4380_67508,Letterkenny,47161-00017-1,0,4380_7778208_320102,4380_1031 -4380_77936,295,4380_67509,Letterkenny,47159-00019-1,0,4380_7778208_320102,4380_1031 -4380_77936,294,4380_67510,Letterkenny,47168-00018-1,0,4380_7778208_320102,4380_1031 -4380_77936,296,4380_67511,Letterkenny,47166-00021-1,0,4380_7778208_320102,4380_1031 -4380_77936,285,4380_67519,Letterkenny,47215-00009-1,0,4380_7778208_320601,4380_1031 -4380_77936,286,4380_67520,Letterkenny,47217-00010-1,0,4380_7778208_320601,4380_1031 -4380_77936,297,4380_67521,Letterkenny,47212-00008-1,0,4380_7778208_320601,4380_1031 -4380_77936,287,4380_67522,Letterkenny,47210-00012-1,0,4380_7778208_320601,4380_1031 -4380_77936,288,4380_67523,Letterkenny,47208-00011-1,0,4380_7778208_320601,4380_1031 -4380_77936,289,4380_67524,Letterkenny,47213-00014-1,0,4380_7778208_320601,4380_1031 -4380_77936,290,4380_67525,Letterkenny,47216-00015-1,0,4380_7778208_320601,4380_1031 -4380_77936,291,4380_67526,Letterkenny,47219-00013-1,0,4380_7778208_320601,4380_1031 -4380_77936,292,4380_67527,Letterkenny,47218-00016-1,0,4380_7778208_320601,4380_1031 -4380_77936,293,4380_67528,Letterkenny,47209-00017-1,0,4380_7778208_320601,4380_1031 -4380_77936,295,4380_67529,Letterkenny,47214-00019-1,0,4380_7778208_320601,4380_1031 -4380_77936,294,4380_67530,Letterkenny,47211-00018-1,0,4380_7778208_320601,4380_1031 -4380_77936,296,4380_67531,Letterkenny,47220-00021-1,0,4380_7778208_320601,4380_1031 -4380_77936,285,4380_67539,Letterkenny,47284-00009-1,0,4380_7778208_320602,4380_1031 -4380_77936,286,4380_67540,Letterkenny,47277-00010-1,0,4380_7778208_320602,4380_1031 -4380_77936,297,4380_67541,Letterkenny,47279-00008-1,0,4380_7778208_320602,4380_1031 -4380_77936,287,4380_67542,Letterkenny,47273-00012-1,0,4380_7778208_320602,4380_1031 -4380_77936,288,4380_67543,Letterkenny,47280-00011-1,0,4380_7778208_320602,4380_1031 -4380_77936,289,4380_67544,Letterkenny,47275-00014-1,0,4380_7778208_320602,4380_1031 -4380_77936,290,4380_67545,Letterkenny,47285-00015-1,0,4380_7778208_320602,4380_1031 -4380_77936,291,4380_67546,Letterkenny,47282-00013-1,0,4380_7778208_320602,4380_1031 -4380_77936,292,4380_67547,Letterkenny,47278-00016-1,0,4380_7778208_320602,4380_1031 -4380_77936,293,4380_67548,Letterkenny,47281-00017-1,0,4380_7778208_320602,4380_1031 -4380_77936,295,4380_67549,Letterkenny,47276-00019-1,0,4380_7778208_320602,4380_1031 -4380_77953,285,4380_6755,Kells,5721-00009-1,0,4380_7778208_1090108,4380_95 -4380_77936,294,4380_67550,Letterkenny,47274-00018-1,0,4380_7778208_320602,4380_1031 -4380_77936,296,4380_67551,Letterkenny,47283-00021-1,0,4380_7778208_320602,4380_1031 -4380_77936,285,4380_67559,Letterkenny,47334-00009-1,0,4380_7778208_320603,4380_1031 -4380_77953,286,4380_6756,Kells,5729-00010-1,0,4380_7778208_1090108,4380_95 -4380_77936,286,4380_67560,Letterkenny,47325-00010-1,0,4380_7778208_320603,4380_1031 -4380_77936,297,4380_67561,Letterkenny,47327-00008-1,0,4380_7778208_320603,4380_1031 -4380_77936,287,4380_67562,Letterkenny,47332-00012-1,0,4380_7778208_320603,4380_1031 -4380_77936,288,4380_67563,Letterkenny,47330-00011-1,0,4380_7778208_320603,4380_1031 -4380_77936,289,4380_67564,Letterkenny,47328-00014-1,0,4380_7778208_320603,4380_1031 -4380_77936,290,4380_67565,Letterkenny,47335-00015-1,0,4380_7778208_320603,4380_1031 -4380_77936,291,4380_67566,Letterkenny,47336-00013-1,0,4380_7778208_320603,4380_1031 -4380_77936,292,4380_67567,Letterkenny,47326-00016-1,0,4380_7778208_320603,4380_1031 -4380_77936,293,4380_67568,Letterkenny,47331-00017-1,0,4380_7778208_320603,4380_1031 -4380_77936,295,4380_67569,Letterkenny,47329-00019-1,0,4380_7778208_320603,4380_1031 -4380_77953,297,4380_6757,Kells,5441-00008-1,0,4380_7778208_1090103,4380_91 -4380_77936,294,4380_67570,Letterkenny,47333-00018-1,0,4380_7778208_320603,4380_1031 -4380_77936,296,4380_67571,Letterkenny,47337-00021-1,0,4380_7778208_320603,4380_1031 -4380_77936,285,4380_67579,Letterkenny,47152-00009-1,0,4380_7778208_320101,4380_1031 -4380_77953,288,4380_6758,Kells,5737-00011-1,0,4380_7778208_1090108,4380_95 -4380_77936,286,4380_67580,Letterkenny,47147-00010-1,0,4380_7778208_320101,4380_1031 -4380_77936,297,4380_67581,Letterkenny,47151-00008-1,0,4380_7778208_320101,4380_1031 -4380_77936,287,4380_67582,Letterkenny,47143-00012-1,0,4380_7778208_320101,4380_1031 -4380_77936,288,4380_67583,Letterkenny,47145-00011-1,0,4380_7778208_320101,4380_1031 -4380_77936,289,4380_67584,Letterkenny,47154-00014-1,0,4380_7778208_320101,4380_1031 -4380_77936,290,4380_67585,Letterkenny,47153-00015-1,0,4380_7778208_320101,4380_1031 -4380_77936,291,4380_67586,Letterkenny,47149-00013-1,0,4380_7778208_320101,4380_1031 -4380_77936,292,4380_67587,Letterkenny,47148-00016-1,0,4380_7778208_320101,4380_1031 -4380_77936,293,4380_67588,Letterkenny,47146-00017-1,0,4380_7778208_320101,4380_1031 -4380_77936,295,4380_67589,Letterkenny,47155-00019-1,0,4380_7778208_320101,4380_1031 -4380_77953,287,4380_6759,Kells,5745-00012-1,0,4380_7778208_1090108,4380_95 -4380_77936,294,4380_67590,Letterkenny,47144-00018-1,0,4380_7778208_320101,4380_1031 -4380_77936,296,4380_67591,Letterkenny,47150-00021-1,0,4380_7778208_320101,4380_1031 -4380_77936,285,4380_67599,Letterkenny,47186-00009-1,0,4380_7778208_320102,4380_1031 -4380_77953,289,4380_6760,Kells,5713-00014-1,0,4380_7778208_1090108,4380_95 -4380_77936,286,4380_67600,Letterkenny,47184-00010-1,0,4380_7778208_320102,4380_1031 -4380_77936,297,4380_67601,Letterkenny,47192-00008-1,0,4380_7778208_320102,4380_1031 -4380_77936,287,4380_67602,Letterkenny,47182-00012-1,0,4380_7778208_320102,4380_1031 -4380_77936,288,4380_67603,Letterkenny,47193-00011-1,0,4380_7778208_320102,4380_1031 -4380_77936,289,4380_67604,Letterkenny,47190-00014-1,0,4380_7778208_320102,4380_1031 -4380_77936,290,4380_67605,Letterkenny,47187-00015-1,0,4380_7778208_320102,4380_1031 -4380_77936,291,4380_67606,Letterkenny,47188-00013-1,0,4380_7778208_320102,4380_1031 -4380_77936,292,4380_67607,Letterkenny,47185-00016-1,0,4380_7778208_320102,4380_1031 -4380_77936,293,4380_67608,Letterkenny,47194-00017-1,0,4380_7778208_320102,4380_1031 -4380_77936,295,4380_67609,Letterkenny,47191-00019-1,0,4380_7778208_320102,4380_1031 -4380_77953,290,4380_6761,Kells,55010-00015-1,0,4380_7778208_1090108,4380_95 -4380_77936,294,4380_67610,Letterkenny,47183-00018-1,0,4380_7778208_320102,4380_1031 -4380_77936,296,4380_67611,Letterkenny,47189-00021-1,0,4380_7778208_320102,4380_1031 -4380_77936,285,4380_67619,Letterkenny,47236-00009-1,0,4380_7778208_320601,4380_1031 -4380_77953,291,4380_6762,Kells,5695-00013-1,0,4380_7778208_1090107,4380_99 -4380_77936,286,4380_67620,Letterkenny,47240-00010-1,0,4380_7778208_320601,4380_1031 -4380_77936,297,4380_67621,Letterkenny,47242-00008-1,0,4380_7778208_320601,4380_1031 -4380_77936,287,4380_67622,Letterkenny,47238-00012-1,0,4380_7778208_320601,4380_1031 -4380_77936,288,4380_67623,Letterkenny,47234-00011-1,0,4380_7778208_320601,4380_1031 -4380_77936,289,4380_67624,Letterkenny,47245-00014-1,0,4380_7778208_320601,4380_1031 -4380_77936,290,4380_67625,Letterkenny,47237-00015-1,0,4380_7778208_320601,4380_1031 -4380_77936,291,4380_67626,Letterkenny,47243-00013-1,0,4380_7778208_320601,4380_1031 -4380_77936,292,4380_67627,Letterkenny,47241-00016-1,0,4380_7778208_320601,4380_1031 -4380_77936,293,4380_67628,Letterkenny,47235-00017-1,0,4380_7778208_320601,4380_1031 -4380_77936,295,4380_67629,Letterkenny,47246-00019-1,0,4380_7778208_320601,4380_1031 -4380_77953,292,4380_6763,Kells,55014-00016-1,0,4380_7778208_1090108,4380_95 -4380_77936,294,4380_67630,Letterkenny,47239-00018-1,0,4380_7778208_320601,4380_1031 -4380_77936,296,4380_67631,Letterkenny,47244-00021-1,0,4380_7778208_320601,4380_1031 -4380_77936,285,4380_67639,Letterkenny,47301-00009-1,0,4380_7778208_320602,4380_1031 -4380_77953,293,4380_6764,Kells,55013-00017-1,0,4380_7778208_1090108,4380_95 -4380_77936,286,4380_67640,Letterkenny,47308-00010-1,0,4380_7778208_320602,4380_1031 -4380_77936,297,4380_67641,Letterkenny,47307-00008-1,0,4380_7778208_320602,4380_1031 -4380_77936,287,4380_67642,Letterkenny,47310-00012-1,0,4380_7778208_320602,4380_1031 -4380_77936,288,4380_67643,Letterkenny,47305-00011-1,0,4380_7778208_320602,4380_1031 -4380_77936,289,4380_67644,Letterkenny,47299-00014-1,0,4380_7778208_320602,4380_1031 -4380_77936,290,4380_67645,Letterkenny,47302-00015-1,0,4380_7778208_320602,4380_1031 -4380_77936,291,4380_67646,Letterkenny,47303-00013-1,0,4380_7778208_320602,4380_1031 -4380_77936,292,4380_67647,Letterkenny,47309-00016-1,0,4380_7778208_320602,4380_1031 -4380_77936,293,4380_67648,Letterkenny,47306-00017-1,0,4380_7778208_320602,4380_1031 -4380_77936,295,4380_67649,Letterkenny,47300-00019-1,0,4380_7778208_320602,4380_1031 -4380_77953,294,4380_6765,Kells,55011-00018-1,0,4380_7778208_1090108,4380_95 -4380_77936,294,4380_67650,Letterkenny,47311-00018-1,0,4380_7778208_320602,4380_1031 -4380_77936,296,4380_67651,Letterkenny,47304-00021-1,0,4380_7778208_320602,4380_1031 -4380_77936,285,4380_67659,Dublin via Airport,47206-00009-1,1,4380_7778208_320601,4380_1032 -4380_77953,295,4380_6766,Kells,55012-00019-1,0,4380_7778208_1090108,4380_95 -4380_77936,286,4380_67660,Dublin via Airport,47199-00010-1,1,4380_7778208_320601,4380_1032 -4380_77936,297,4380_67661,Dublin via Airport,47201-00008-1,1,4380_7778208_320601,4380_1032 -4380_77936,287,4380_67662,Dublin via Airport,47202-00012-1,1,4380_7778208_320601,4380_1032 -4380_77936,288,4380_67663,Dublin via Airport,47204-00011-1,1,4380_7778208_320601,4380_1032 -4380_77936,289,4380_67664,Dublin via Airport,47197-00014-1,1,4380_7778208_320601,4380_1032 -4380_77936,290,4380_67665,Dublin via Airport,47207-00015-1,1,4380_7778208_320601,4380_1032 -4380_77936,291,4380_67666,Dublin via Airport,47195-00013-1,1,4380_7778208_320601,4380_1032 -4380_77936,292,4380_67667,Dublin via Airport,47200-00016-1,1,4380_7778208_320601,4380_1032 -4380_77936,293,4380_67668,Dublin via Airport,47205-00017-1,1,4380_7778208_320601,4380_1032 -4380_77936,295,4380_67669,Dublin via Airport,47198-00019-1,1,4380_7778208_320601,4380_1032 -4380_77953,296,4380_6767,Kells,54968-00021-1,0,4380_7778208_1090107,4380_99 -4380_77936,294,4380_67670,Dublin via Airport,47203-00018-1,1,4380_7778208_320601,4380_1032 -4380_77936,296,4380_67671,Dublin via Airport,47196-00021-1,1,4380_7778208_320601,4380_1032 -4380_77936,285,4380_67679,Dublin via Airport,47269-00009-1,1,4380_7778208_320602,4380_1032 -4380_77936,286,4380_67680,Dublin via Airport,47264-00010-1,1,4380_7778208_320602,4380_1032 -4380_77936,297,4380_67681,Dublin via Airport,47266-00008-1,1,4380_7778208_320602,4380_1032 -4380_77936,287,4380_67682,Dublin via Airport,47260-00012-1,1,4380_7778208_320602,4380_1032 -4380_77936,288,4380_67683,Dublin via Airport,47271-00011-1,1,4380_7778208_320602,4380_1032 -4380_77936,289,4380_67684,Dublin via Airport,47262-00014-1,1,4380_7778208_320602,4380_1032 -4380_77936,290,4380_67685,Dublin via Airport,47270-00015-1,1,4380_7778208_320602,4380_1032 -4380_77936,291,4380_67686,Dublin via Airport,47267-00013-1,1,4380_7778208_320602,4380_1032 -4380_77936,292,4380_67687,Dublin via Airport,47265-00016-1,1,4380_7778208_320602,4380_1032 -4380_77936,293,4380_67688,Dublin via Airport,47272-00017-1,1,4380_7778208_320602,4380_1032 -4380_77936,295,4380_67689,Dublin via Airport,47263-00019-1,1,4380_7778208_320602,4380_1032 -4380_77936,294,4380_67690,Dublin via Airport,47261-00018-1,1,4380_7778208_320602,4380_1032 -4380_77936,296,4380_67691,Dublin via Airport,47268-00021-1,1,4380_7778208_320602,4380_1032 -4380_77936,285,4380_67699,Dublin via Airport,47319-00009-1,1,4380_7778208_320603,4380_1032 -4380_77936,286,4380_67700,Dublin via Airport,47321-00010-1,1,4380_7778208_320603,4380_1032 -4380_77936,297,4380_67701,Dublin via Airport,47312-00008-1,1,4380_7778208_320603,4380_1032 -4380_77936,287,4380_67702,Dublin via Airport,47323-00012-1,1,4380_7778208_320603,4380_1032 -4380_77936,288,4380_67703,Dublin via Airport,47315-00011-1,1,4380_7778208_320603,4380_1032 -4380_77936,289,4380_67704,Dublin via Airport,47313-00014-1,1,4380_7778208_320603,4380_1032 -4380_77936,290,4380_67705,Dublin via Airport,47320-00015-1,1,4380_7778208_320603,4380_1032 -4380_77936,291,4380_67706,Dublin via Airport,47317-00013-1,1,4380_7778208_320603,4380_1032 -4380_77936,292,4380_67707,Dublin via Airport,47322-00016-1,1,4380_7778208_320603,4380_1032 -4380_77936,293,4380_67708,Dublin via Airport,47316-00017-1,1,4380_7778208_320603,4380_1032 -4380_77936,295,4380_67709,Dublin via Airport,47314-00019-1,1,4380_7778208_320603,4380_1032 -4380_77936,294,4380_67710,Dublin via Airport,47324-00018-1,1,4380_7778208_320603,4380_1032 -4380_77936,296,4380_67711,Dublin via Airport,47318-00021-1,1,4380_7778208_320603,4380_1032 -4380_77936,285,4380_67719,Dublin via Airport,47136-00009-1,1,4380_7778208_320101,4380_1032 -4380_77936,286,4380_67720,Dublin via Airport,47132-00010-1,1,4380_7778208_320101,4380_1032 -4380_77936,297,4380_67721,Dublin via Airport,47142-00008-1,1,4380_7778208_320101,4380_1032 -4380_77936,287,4380_67722,Dublin via Airport,47130-00012-1,1,4380_7778208_320101,4380_1032 -4380_77936,288,4380_67723,Dublin via Airport,47138-00011-1,1,4380_7778208_320101,4380_1032 -4380_77936,289,4380_67724,Dublin via Airport,47140-00014-1,1,4380_7778208_320101,4380_1032 -4380_77936,290,4380_67725,Dublin via Airport,47137-00015-1,1,4380_7778208_320101,4380_1032 -4380_77936,291,4380_67726,Dublin via Airport,47134-00013-1,1,4380_7778208_320101,4380_1032 -4380_77936,292,4380_67727,Dublin via Airport,47133-00016-1,1,4380_7778208_320101,4380_1032 -4380_77936,293,4380_67728,Dublin via Airport,47139-00017-1,1,4380_7778208_320101,4380_1032 -4380_77936,295,4380_67729,Dublin via Airport,47141-00019-1,1,4380_7778208_320101,4380_1032 -4380_77936,294,4380_67730,Dublin via Airport,47131-00018-1,1,4380_7778208_320101,4380_1032 -4380_77936,296,4380_67731,Dublin via Airport,47135-00021-1,1,4380_7778208_320101,4380_1032 -4380_77936,285,4380_67739,Dublin via Airport,47171-00009-1,1,4380_7778208_320102,4380_1032 -4380_77936,286,4380_67740,Dublin via Airport,47169-00010-1,1,4380_7778208_320102,4380_1032 -4380_77936,297,4380_67741,Dublin via Airport,47179-00008-1,1,4380_7778208_320102,4380_1032 -4380_77936,287,4380_67742,Dublin via Airport,47177-00012-1,1,4380_7778208_320102,4380_1032 -4380_77936,288,4380_67743,Dublin via Airport,47175-00011-1,1,4380_7778208_320102,4380_1032 -4380_77936,289,4380_67744,Dublin via Airport,47173-00014-1,1,4380_7778208_320102,4380_1032 -4380_77936,290,4380_67745,Dublin via Airport,47172-00015-1,1,4380_7778208_320102,4380_1032 -4380_77936,291,4380_67746,Dublin via Airport,47180-00013-1,1,4380_7778208_320102,4380_1032 -4380_77936,292,4380_67747,Dublin via Airport,47170-00016-1,1,4380_7778208_320102,4380_1032 -4380_77936,293,4380_67748,Dublin via Airport,47176-00017-1,1,4380_7778208_320102,4380_1032 -4380_77936,295,4380_67749,Dublin via Airport,47174-00019-1,1,4380_7778208_320102,4380_1032 -4380_77953,285,4380_6775,Dunshaughlin,5825-00009-1,0,4380_7778208_1090110,4380_96 -4380_77936,294,4380_67750,Dublin via Airport,47178-00018-1,1,4380_7778208_320102,4380_1032 -4380_77936,296,4380_67751,Dublin via Airport,47181-00021-1,1,4380_7778208_320102,4380_1032 -4380_77936,285,4380_67759,Dublin via Airport,47225-00009-1,1,4380_7778208_320601,4380_1032 -4380_77953,286,4380_6776,Dunshaughlin,5833-00010-1,0,4380_7778208_1090110,4380_96 -4380_77936,286,4380_67760,Dublin via Airport,47232-00010-1,1,4380_7778208_320601,4380_1032 -4380_77936,297,4380_67761,Dublin via Airport,47227-00008-1,1,4380_7778208_320601,4380_1032 -4380_77936,287,4380_67762,Dublin via Airport,47223-00012-1,1,4380_7778208_320601,4380_1032 -4380_77936,288,4380_67763,Dublin via Airport,47228-00011-1,1,4380_7778208_320601,4380_1032 -4380_77936,289,4380_67764,Dublin via Airport,47230-00014-1,1,4380_7778208_320601,4380_1032 -4380_77936,290,4380_67765,Dublin via Airport,47226-00015-1,1,4380_7778208_320601,4380_1032 -4380_77936,291,4380_67766,Dublin via Airport,47221-00013-1,1,4380_7778208_320601,4380_1032 -4380_77936,292,4380_67767,Dublin via Airport,47233-00016-1,1,4380_7778208_320601,4380_1032 -4380_77936,293,4380_67768,Dublin via Airport,47229-00017-1,1,4380_7778208_320601,4380_1032 -4380_77936,295,4380_67769,Dublin via Airport,47231-00019-1,1,4380_7778208_320601,4380_1032 -4380_77953,297,4380_6777,Dunshaughlin,5765-00008-1,0,4380_7778208_1090108,4380_90 -4380_77936,294,4380_67770,Dublin via Airport,47224-00018-1,1,4380_7778208_320601,4380_1032 -4380_77936,296,4380_67771,Dublin via Airport,47222-00021-1,1,4380_7778208_320601,4380_1032 -4380_77936,285,4380_67779,Dublin via Airport,47286-00009-1,1,4380_7778208_320602,4380_1032 -4380_77953,288,4380_6778,Dunshaughlin,5841-00011-1,0,4380_7778208_1090110,4380_96 -4380_77936,286,4380_67780,Dublin via Airport,47292-00010-1,1,4380_7778208_320602,4380_1032 -4380_77936,297,4380_67781,Dublin via Airport,47298-00008-1,1,4380_7778208_320602,4380_1032 -4380_77936,287,4380_67782,Dublin via Airport,47296-00012-1,1,4380_7778208_320602,4380_1032 -4380_77936,288,4380_67783,Dublin via Airport,47288-00011-1,1,4380_7778208_320602,4380_1032 -4380_77936,289,4380_67784,Dublin via Airport,47290-00014-1,1,4380_7778208_320602,4380_1032 -4380_77936,290,4380_67785,Dublin via Airport,47287-00015-1,1,4380_7778208_320602,4380_1032 -4380_77936,291,4380_67786,Dublin via Airport,47294-00013-1,1,4380_7778208_320602,4380_1032 -4380_77936,292,4380_67787,Dublin via Airport,47293-00016-1,1,4380_7778208_320602,4380_1032 -4380_77936,293,4380_67788,Dublin via Airport,47289-00017-1,1,4380_7778208_320602,4380_1032 -4380_77936,295,4380_67789,Dublin via Airport,47291-00019-1,1,4380_7778208_320602,4380_1032 -4380_77953,287,4380_6779,Dunshaughlin,5849-00012-1,0,4380_7778208_1090110,4380_96 -4380_77936,294,4380_67790,Dublin via Airport,47297-00018-1,1,4380_7778208_320602,4380_1032 -4380_77936,296,4380_67791,Dublin via Airport,47295-00021-1,1,4380_7778208_320602,4380_1032 -4380_77936,285,4380_67799,Dublin via Airport,47342-00009-1,1,4380_7778208_320603,4380_1032 -4380_77953,289,4380_6780,Dunshaughlin,5817-00014-1,0,4380_7778208_1090110,4380_96 -4380_77936,286,4380_67800,Dublin via Airport,47340-00010-1,1,4380_7778208_320603,4380_1032 -4380_77936,297,4380_67801,Dublin via Airport,47346-00008-1,1,4380_7778208_320603,4380_1032 -4380_77936,287,4380_67802,Dublin via Airport,47338-00012-1,1,4380_7778208_320603,4380_1032 -4380_77936,288,4380_67803,Dublin via Airport,47349-00011-1,1,4380_7778208_320603,4380_1032 -4380_77936,289,4380_67804,Dublin via Airport,47347-00014-1,1,4380_7778208_320603,4380_1032 -4380_77936,290,4380_67805,Dublin via Airport,47343-00015-1,1,4380_7778208_320603,4380_1032 -4380_77936,291,4380_67806,Dublin via Airport,47344-00013-1,1,4380_7778208_320603,4380_1032 -4380_77936,292,4380_67807,Dublin via Airport,47341-00016-1,1,4380_7778208_320603,4380_1032 -4380_77936,293,4380_67808,Dublin via Airport,47350-00017-1,1,4380_7778208_320603,4380_1032 -4380_77936,295,4380_67809,Dublin via Airport,47348-00019-1,1,4380_7778208_320603,4380_1032 -4380_77953,290,4380_6781,Dunshaughlin,55090-00015-1,0,4380_7778208_1090110,4380_96 -4380_77936,294,4380_67810,Dublin via Airport,47339-00018-1,1,4380_7778208_320603,4380_1032 -4380_77936,296,4380_67811,Dublin via Airport,47345-00021-1,1,4380_7778208_320603,4380_1032 -4380_77936,285,4380_67819,Dublin via Airport,47253-00009-1,1,4380_7778208_320601,4380_1032 -4380_77953,291,4380_6782,Dunshaughlin,5753-00013-1,0,4380_7778208_1090108,4380_100 -4380_77936,286,4380_67820,Dublin via Airport,47251-00010-1,1,4380_7778208_320601,4380_1032 -4380_77936,297,4380_67821,Dublin via Airport,47257-00008-1,1,4380_7778208_320601,4380_1032 -4380_77936,287,4380_67822,Dublin via Airport,47258-00012-1,1,4380_7778208_320601,4380_1032 -4380_77936,288,4380_67823,Dublin via Airport,47247-00011-1,1,4380_7778208_320601,4380_1032 -4380_77936,289,4380_67824,Dublin via Airport,47255-00014-1,1,4380_7778208_320601,4380_1032 -4380_77936,290,4380_67825,Dublin via Airport,47254-00015-1,1,4380_7778208_320601,4380_1032 -4380_77936,291,4380_67826,Dublin via Airport,47249-00013-1,1,4380_7778208_320601,4380_1032 -4380_77936,292,4380_67827,Dublin via Airport,47252-00016-1,1,4380_7778208_320601,4380_1032 -4380_77936,293,4380_67828,Dublin via Airport,47248-00017-1,1,4380_7778208_320601,4380_1032 -4380_77936,295,4380_67829,Dublin via Airport,47256-00019-1,1,4380_7778208_320601,4380_1032 -4380_77953,292,4380_6783,Dunshaughlin,55088-00016-1,0,4380_7778208_1090110,4380_96 -4380_77936,294,4380_67830,Dublin via Airport,47259-00018-1,1,4380_7778208_320601,4380_1032 -4380_77936,296,4380_67831,Dublin via Airport,47250-00021-1,1,4380_7778208_320601,4380_1032 -4380_78023,285,4380_67837,Charleville,96298-00009-1,0,4380_7778208_3200401,4380_1034 -4380_78023,288,4380_67838,Charleville,96300-00011-1,0,4380_7778208_3200401,4380_1034 -4380_78023,286,4380_67839,Charleville,96296-00010-1,0,4380_7778208_3200401,4380_1034 -4380_77953,293,4380_6784,Dunshaughlin,55091-00017-1,0,4380_7778208_1090110,4380_96 -4380_78023,289,4380_67840,Charleville,96294-00014-1,0,4380_7778208_3200401,4380_1034 -4380_78023,287,4380_67841,Charleville,96292-00012-1,0,4380_7778208_3200401,4380_1034 -4380_78023,292,4380_67842,Charleville,96297-00016-1,0,4380_7778208_3200401,4380_1034 -4380_78023,290,4380_67843,Charleville,96299-00015-1,0,4380_7778208_3200401,4380_1034 -4380_78023,294,4380_67844,Charleville,96293-00018-1,0,4380_7778208_3200401,4380_1034 -4380_78023,295,4380_67845,Charleville,96295-00019-1,0,4380_7778208_3200401,4380_1034 -4380_78023,293,4380_67846,Charleville,96301-00017-1,0,4380_7778208_3200401,4380_1034 -4380_78023,291,4380_67848,Croom,96312-00013-1,0,4380_7778208_3200401,4380_1033 -4380_78023,296,4380_67849,Croom,96313-00021-1,0,4380_7778208_3200401,4380_1033 -4380_77953,294,4380_6785,Dunshaughlin,55087-00018-1,0,4380_7778208_1090110,4380_96 -4380_78023,291,4380_67851,Croom,96316-00013-1,0,4380_7778208_3200401,4380_1033 -4380_78023,296,4380_67852,Croom,96317-00021-1,0,4380_7778208_3200401,4380_1033 -4380_78023,285,4380_67858,Charleville,96324-00009-1,0,4380_7778208_3200401,4380_1035 -4380_78023,288,4380_67859,Charleville,96320-00011-1,0,4380_7778208_3200401,4380_1035 -4380_77953,295,4380_6786,Dunshaughlin,55089-00019-1,0,4380_7778208_1090110,4380_96 -4380_78023,286,4380_67860,Charleville,96318-00010-1,0,4380_7778208_3200401,4380_1035 -4380_78023,289,4380_67861,Charleville,96326-00014-1,0,4380_7778208_3200401,4380_1035 -4380_78023,287,4380_67862,Charleville,96328-00012-1,0,4380_7778208_3200401,4380_1035 -4380_78023,292,4380_67863,Charleville,96319-00016-1,0,4380_7778208_3200401,4380_1035 -4380_78023,290,4380_67864,Charleville,96325-00015-1,0,4380_7778208_3200401,4380_1035 -4380_78023,294,4380_67865,Charleville,96329-00018-1,0,4380_7778208_3200401,4380_1035 -4380_78023,295,4380_67866,Charleville,96327-00019-1,0,4380_7778208_3200401,4380_1035 -4380_78023,293,4380_67867,Charleville,96321-00017-1,0,4380_7778208_3200401,4380_1035 -4380_78023,297,4380_67869,Croom,96330-00008-1,0,4380_7778208_3200401,4380_1033 -4380_77953,296,4380_6787,Dunshaughlin,55015-00021-1,0,4380_7778208_1090108,4380_100 -4380_78023,291,4380_67871,Croom,96342-00013-1,0,4380_7778208_3200401,4380_1033 -4380_78023,296,4380_67872,Croom,96343-00021-1,0,4380_7778208_3200401,4380_1033 -4380_78023,285,4380_67878,Charleville,96378-00009-1,0,4380_7778208_3200402,4380_1034 -4380_78023,288,4380_67879,Charleville,96376-00011-1,0,4380_7778208_3200402,4380_1034 -4380_78023,286,4380_67880,Charleville,96372-00010-1,0,4380_7778208_3200402,4380_1034 -4380_78023,289,4380_67881,Charleville,96380-00014-1,0,4380_7778208_3200402,4380_1034 -4380_78023,287,4380_67882,Charleville,96374-00012-1,0,4380_7778208_3200402,4380_1034 -4380_78023,292,4380_67883,Charleville,96373-00016-1,0,4380_7778208_3200402,4380_1034 -4380_78023,290,4380_67884,Charleville,96379-00015-1,0,4380_7778208_3200402,4380_1034 -4380_78023,294,4380_67885,Charleville,96375-00018-1,0,4380_7778208_3200402,4380_1034 -4380_78023,295,4380_67886,Charleville,96381-00019-1,0,4380_7778208_3200402,4380_1034 -4380_78023,293,4380_67887,Charleville,96377-00017-1,0,4380_7778208_3200402,4380_1034 -4380_78023,297,4380_67889,Croom,96346-00008-1,0,4380_7778208_3200401,4380_1033 -4380_78023,285,4380_67895,Charleville,96347-00009-1,0,4380_7778208_3200401,4380_1035 -4380_78023,288,4380_67896,Charleville,96351-00011-1,0,4380_7778208_3200401,4380_1035 -4380_78023,286,4380_67897,Charleville,96349-00010-1,0,4380_7778208_3200401,4380_1035 -4380_78023,289,4380_67898,Charleville,96355-00014-1,0,4380_7778208_3200401,4380_1035 -4380_78023,287,4380_67899,Charleville,96353-00012-1,0,4380_7778208_3200401,4380_1035 -4380_78023,292,4380_67900,Charleville,96350-00016-1,0,4380_7778208_3200401,4380_1035 -4380_78023,290,4380_67901,Charleville,96348-00015-1,0,4380_7778208_3200401,4380_1035 -4380_78023,294,4380_67902,Charleville,96354-00018-1,0,4380_7778208_3200401,4380_1035 -4380_78023,295,4380_67903,Charleville,96356-00019-1,0,4380_7778208_3200401,4380_1035 -4380_78023,293,4380_67904,Charleville,96352-00017-1,0,4380_7778208_3200401,4380_1035 -4380_78023,285,4380_67910,Charleville,96392-00009-1,0,4380_7778208_3200402,4380_1035 -4380_78023,288,4380_67912,Charleville,96400-00011-1,0,4380_7778208_3200402,4380_1035 -4380_78023,286,4380_67913,Charleville,96398-00010-1,0,4380_7778208_3200402,4380_1035 -4380_78023,291,4380_67914,Croom,96358-00013-1,0,4380_7778208_3200401,4380_1033 -4380_78023,289,4380_67915,Charleville,96396-00014-1,0,4380_7778208_3200402,4380_1035 -4380_78023,287,4380_67916,Charleville,96394-00012-1,0,4380_7778208_3200402,4380_1035 -4380_78023,292,4380_67917,Charleville,96399-00016-1,0,4380_7778208_3200402,4380_1035 -4380_78023,290,4380_67918,Charleville,96393-00015-1,0,4380_7778208_3200402,4380_1035 -4380_78023,294,4380_67919,Charleville,96395-00018-1,0,4380_7778208_3200402,4380_1035 -4380_78023,295,4380_67920,Charleville,96397-00019-1,0,4380_7778208_3200402,4380_1035 -4380_78023,293,4380_67921,Charleville,96401-00017-1,0,4380_7778208_3200402,4380_1035 -4380_78023,296,4380_67922,Croom,96359-00021-1,0,4380_7778208_3200401,4380_1033 -4380_78023,285,4380_67928,Limerick Bus Station,96368-00009-1,1,4380_7778208_3200402,4380_1039 -4380_78023,288,4380_67929,Limerick Bus Station,96364-00011-1,1,4380_7778208_3200402,4380_1039 -4380_78023,286,4380_67930,Limerick Bus Station,96370-00010-1,1,4380_7778208_3200402,4380_1039 -4380_78023,289,4380_67931,Limerick Bus Station,96366-00014-1,1,4380_7778208_3200402,4380_1039 -4380_78023,287,4380_67932,Limerick Bus Station,96362-00012-1,1,4380_7778208_3200402,4380_1039 -4380_78023,292,4380_67933,Limerick Bus Station,96371-00016-1,1,4380_7778208_3200402,4380_1039 -4380_78023,290,4380_67934,Limerick Bus Station,96369-00015-1,1,4380_7778208_3200402,4380_1039 -4380_78023,294,4380_67935,Limerick Bus Station,96363-00018-1,1,4380_7778208_3200402,4380_1039 -4380_78023,295,4380_67936,Limerick Bus Station,96367-00019-1,1,4380_7778208_3200402,4380_1039 -4380_78023,293,4380_67937,Limerick Bus Station,96365-00017-1,1,4380_7778208_3200402,4380_1039 -4380_78023,285,4380_67943,Limerick Bus Station,96308-00009-1,1,4380_7778208_3200401,4380_1037 -4380_78023,288,4380_67944,Limerick Bus Station,96310-00011-1,1,4380_7778208_3200401,4380_1037 -4380_78023,286,4380_67945,Limerick Bus Station,96304-00010-1,1,4380_7778208_3200401,4380_1037 -4380_78023,289,4380_67946,Limerick Bus Station,96306-00014-1,1,4380_7778208_3200401,4380_1037 -4380_78023,287,4380_67947,Limerick Bus Station,96302-00012-1,1,4380_7778208_3200401,4380_1037 -4380_78023,292,4380_67948,Limerick Bus Station,96305-00016-1,1,4380_7778208_3200401,4380_1037 -4380_78023,290,4380_67949,Limerick Bus Station,96309-00015-1,1,4380_7778208_3200401,4380_1037 -4380_77953,285,4380_6795,Kells,5781-00009-1,0,4380_7778208_1090109,4380_95 -4380_78023,294,4380_67950,Limerick Bus Station,96303-00018-1,1,4380_7778208_3200401,4380_1037 -4380_78023,295,4380_67951,Limerick Bus Station,96307-00019-1,1,4380_7778208_3200401,4380_1037 -4380_78023,293,4380_67952,Limerick Bus Station,96311-00017-1,1,4380_7778208_3200401,4380_1037 -4380_78023,291,4380_67954,Limerick Bus Station,96314-00013-1,1,4380_7778208_3200401,4380_1036 -4380_78023,296,4380_67955,Limerick Bus Station,96315-00021-1,1,4380_7778208_3200401,4380_1036 -4380_78023,291,4380_67957,Limerick Bus Station,96322-00013-1,1,4380_7778208_3200401,4380_1036 -4380_78023,296,4380_67958,Limerick Bus Station,96323-00021-1,1,4380_7778208_3200401,4380_1036 -4380_77953,286,4380_6796,Kells,5786-00010-1,0,4380_7778208_1090109,4380_95 -4380_78023,297,4380_67965,Limerick Bus Station,96333-00008-1,1,4380_7778208_3200401,4380_1036 -4380_78023,285,4380_67966,Limerick Bus Station,96331-00009-1,1,4380_7778208_3200401,4380_1038 -4380_78023,288,4380_67967,Limerick Bus Station,96338-00011-1,1,4380_7778208_3200401,4380_1038 -4380_78023,286,4380_67968,Limerick Bus Station,96334-00010-1,1,4380_7778208_3200401,4380_1038 -4380_78023,289,4380_67969,Limerick Bus Station,96340-00014-1,1,4380_7778208_3200401,4380_1038 -4380_77953,297,4380_6797,Kells,5517-00008-1,0,4380_7778208_1090104,4380_91 -4380_78023,287,4380_67970,Limerick Bus Station,96336-00012-1,1,4380_7778208_3200401,4380_1038 -4380_78023,292,4380_67971,Limerick Bus Station,96335-00016-1,1,4380_7778208_3200401,4380_1038 -4380_78023,290,4380_67972,Limerick Bus Station,96332-00015-1,1,4380_7778208_3200401,4380_1038 -4380_78023,294,4380_67973,Limerick Bus Station,96337-00018-1,1,4380_7778208_3200401,4380_1038 -4380_78023,295,4380_67974,Limerick Bus Station,96341-00019-1,1,4380_7778208_3200401,4380_1038 -4380_78023,293,4380_67975,Limerick Bus Station,96339-00017-1,1,4380_7778208_3200401,4380_1038 -4380_78023,291,4380_67977,Limerick Bus Station,96344-00013-1,1,4380_7778208_3200401,4380_1036 -4380_78023,296,4380_67978,Limerick Bus Station,96345-00021-1,1,4380_7778208_3200401,4380_1036 -4380_77953,288,4380_6798,Kells,5791-00011-1,0,4380_7778208_1090109,4380_95 -4380_78023,297,4380_67985,Limerick Bus Station,96357-00008-1,1,4380_7778208_3200401,4380_1036 -4380_78023,285,4380_67986,Limerick Bus Station,96390-00009-1,1,4380_7778208_3200402,4380_1037 -4380_78023,288,4380_67987,Limerick Bus Station,96388-00011-1,1,4380_7778208_3200402,4380_1037 -4380_78023,286,4380_67988,Limerick Bus Station,96382-00010-1,1,4380_7778208_3200402,4380_1037 -4380_78023,289,4380_67989,Limerick Bus Station,96384-00014-1,1,4380_7778208_3200402,4380_1037 -4380_77953,287,4380_6799,Kells,5796-00012-1,0,4380_7778208_1090109,4380_95 -4380_78023,287,4380_67990,Limerick Bus Station,96386-00012-1,1,4380_7778208_3200402,4380_1037 -4380_78023,292,4380_67991,Limerick Bus Station,96383-00016-1,1,4380_7778208_3200402,4380_1037 -4380_78023,290,4380_67992,Limerick Bus Station,96391-00015-1,1,4380_7778208_3200402,4380_1037 -4380_78023,294,4380_67993,Limerick Bus Station,96387-00018-1,1,4380_7778208_3200402,4380_1037 -4380_78023,295,4380_67994,Limerick Bus Station,96385-00019-1,1,4380_7778208_3200402,4380_1037 -4380_78023,293,4380_67995,Limerick Bus Station,96389-00017-1,1,4380_7778208_3200402,4380_1037 -4380_78023,291,4380_67997,Limerick,96360-00013-1,1,4380_7778208_3200401,4380_1040 -4380_78023,296,4380_67998,Limerick,96361-00021-1,1,4380_7778208_3200401,4380_1040 -4380_77953,289,4380_6800,Kells,5776-00014-1,0,4380_7778208_1090109,4380_95 -4380_78024,285,4380_68004,Newcastlewest,96420-00009-1,0,4380_7778208_3210401,4380_1041 -4380_78024,288,4380_68005,Newcastlewest,96416-00011-1,0,4380_7778208_3210401,4380_1041 -4380_78024,286,4380_68006,Newcastlewest,96414-00010-1,0,4380_7778208_3210401,4380_1041 -4380_78024,289,4380_68007,Newcastlewest,96418-00014-1,0,4380_7778208_3210401,4380_1041 -4380_78024,287,4380_68008,Newcastlewest,96412-00012-1,0,4380_7778208_3210401,4380_1041 -4380_78024,292,4380_68009,Newcastlewest,96415-00016-1,0,4380_7778208_3210401,4380_1041 -4380_77953,290,4380_6801,Kells,55058-00015-1,0,4380_7778208_1090109,4380_95 -4380_78024,290,4380_68010,Newcastlewest,96421-00015-1,0,4380_7778208_3210401,4380_1041 -4380_78024,294,4380_68011,Newcastlewest,96413-00018-1,0,4380_7778208_3210401,4380_1041 -4380_78024,295,4380_68012,Newcastlewest,96419-00019-1,0,4380_7778208_3210401,4380_1041 -4380_78024,293,4380_68013,Newcastlewest,96417-00017-1,0,4380_7778208_3210401,4380_1041 -4380_78024,285,4380_68019,Bus Station,96430-00009-1,1,4380_7778208_3210401,4380_1042 -4380_77953,291,4380_6802,Kells,5801-00013-1,0,4380_7778208_1090109,4380_99 -4380_78024,288,4380_68020,Bus Station,96426-00011-1,1,4380_7778208_3210401,4380_1042 -4380_78024,286,4380_68021,Bus Station,96422-00010-1,1,4380_7778208_3210401,4380_1042 -4380_78024,289,4380_68022,Bus Station,96424-00014-1,1,4380_7778208_3210401,4380_1042 -4380_78024,287,4380_68023,Bus Station,96428-00012-1,1,4380_7778208_3210401,4380_1042 -4380_78024,292,4380_68024,Bus Station,96423-00016-1,1,4380_7778208_3210401,4380_1042 -4380_78024,290,4380_68025,Bus Station,96431-00015-1,1,4380_7778208_3210401,4380_1042 -4380_78024,294,4380_68026,Bus Station,96429-00018-1,1,4380_7778208_3210401,4380_1042 -4380_78024,295,4380_68027,Bus Station,96425-00019-1,1,4380_7778208_3210401,4380_1042 -4380_78024,293,4380_68028,Bus Station,96427-00017-1,1,4380_7778208_3210401,4380_1042 -4380_77953,292,4380_6803,Kells,55059-00016-1,0,4380_7778208_1090109,4380_95 -4380_78025,285,4380_68034,Nenagh,96476-00009-1,0,4380_7778208_3230402,4380_1043 -4380_78025,288,4380_68036,Nenagh,96482-00011-1,0,4380_7778208_3230402,4380_1043 -4380_78025,286,4380_68037,Nenagh,96480-00010-1,0,4380_7778208_3230402,4380_1043 -4380_78025,291,4380_68038,Nenagh,96484-00013-1,0,4380_7778208_3230402,4380_1048 -4380_78025,289,4380_68039,Nenagh,96486-00014-1,0,4380_7778208_3230402,4380_1043 -4380_77953,293,4380_6804,Kells,55061-00017-1,0,4380_7778208_1090109,4380_95 -4380_78025,287,4380_68040,Nenagh,96478-00012-1,0,4380_7778208_3230402,4380_1043 -4380_78025,292,4380_68041,Nenagh,96481-00016-1,0,4380_7778208_3230402,4380_1043 -4380_78025,290,4380_68042,Nenagh,96477-00015-1,0,4380_7778208_3230402,4380_1043 -4380_78025,294,4380_68043,Nenagh,96479-00018-1,0,4380_7778208_3230402,4380_1043 -4380_78025,295,4380_68044,Nenagh,96487-00019-1,0,4380_7778208_3230402,4380_1043 -4380_78025,293,4380_68045,Nenagh,96483-00017-1,0,4380_7778208_3230402,4380_1043 -4380_78025,296,4380_68046,Nenagh,96485-00021-1,0,4380_7778208_3230402,4380_1048 -4380_77953,294,4380_6805,Kells,55057-00018-1,0,4380_7778208_1090109,4380_95 -4380_78025,285,4380_68052,Killaloe,96404-00009-1,0,4380_7778208_3210401,4380_1044 -4380_78025,288,4380_68053,Killaloe,96408-00011-1,0,4380_7778208_3210401,4380_1044 -4380_78025,286,4380_68054,Killaloe,96410-00010-1,0,4380_7778208_3210401,4380_1044 -4380_78025,289,4380_68055,Killaloe,96402-00014-1,0,4380_7778208_3210401,4380_1044 -4380_78025,287,4380_68056,Killaloe,96406-00012-1,0,4380_7778208_3210401,4380_1044 -4380_78025,292,4380_68057,Killaloe,96411-00016-1,0,4380_7778208_3210401,4380_1044 -4380_78025,290,4380_68058,Killaloe,96405-00015-1,0,4380_7778208_3210401,4380_1044 -4380_78025,294,4380_68059,Killaloe,96407-00018-1,0,4380_7778208_3210401,4380_1044 -4380_77953,295,4380_6806,Kells,55060-00019-1,0,4380_7778208_1090109,4380_95 -4380_78025,295,4380_68060,Killaloe,96403-00019-1,0,4380_7778208_3210401,4380_1044 -4380_78025,293,4380_68061,Killaloe,96409-00017-1,0,4380_7778208_3210401,4380_1044 -4380_78025,285,4380_68067,Nenagh,96554-00009-1,0,4380_7778208_3230403,4380_1043 -4380_78025,288,4380_68069,Nenagh,96550-00011-1,0,4380_7778208_3230403,4380_1043 -4380_77953,296,4380_6807,Kells,55056-00021-1,0,4380_7778208_1090109,4380_99 -4380_78025,286,4380_68070,Nenagh,96556-00010-1,0,4380_7778208_3230403,4380_1043 -4380_78025,291,4380_68071,Nenagh,96445-00013-1,0,4380_7778208_3230401,4380_1048 -4380_78025,289,4380_68072,Nenagh,96552-00014-1,0,4380_7778208_3230403,4380_1043 -4380_78025,287,4380_68073,Nenagh,96558-00012-1,0,4380_7778208_3230403,4380_1043 -4380_78025,292,4380_68074,Nenagh,96557-00016-1,0,4380_7778208_3230403,4380_1043 -4380_78025,290,4380_68075,Nenagh,96555-00015-1,0,4380_7778208_3230403,4380_1043 -4380_78025,294,4380_68076,Nenagh,96559-00018-1,0,4380_7778208_3230403,4380_1043 -4380_78025,295,4380_68077,Nenagh,96553-00019-1,0,4380_7778208_3230403,4380_1043 -4380_78025,293,4380_68078,Nenagh,96551-00017-1,0,4380_7778208_3230403,4380_1043 -4380_78025,296,4380_68079,Nenagh,96446-00021-1,0,4380_7778208_3230401,4380_1048 -4380_78025,287,4380_68081,Nenagh,96626-00012-1,0,4380_7778208_3230408,4380_1047 -4380_78025,294,4380_68082,Nenagh,96627-00018-1,0,4380_7778208_3230408,4380_1047 -4380_78025,297,4380_68084,Nenagh,96447-00008-1,0,4380_7778208_3230401,4380_1043 -4380_78025,285,4380_68090,Nenagh,96504-00009-1,0,4380_7778208_3230402,4380_1043 -4380_78025,288,4380_68092,Nenagh,96508-00011-1,0,4380_7778208_3230402,4380_1043 -4380_78025,286,4380_68093,Nenagh,96500-00010-1,0,4380_7778208_3230402,4380_1043 -4380_78025,291,4380_68094,Nenagh,96506-00013-1,0,4380_7778208_3230402,4380_1048 -4380_78025,289,4380_68095,Nenagh,96510-00014-1,0,4380_7778208_3230402,4380_1043 -4380_78025,287,4380_68096,Nenagh,96502-00012-1,0,4380_7778208_3230402,4380_1043 -4380_78025,292,4380_68097,Nenagh,96501-00016-1,0,4380_7778208_3230402,4380_1043 -4380_78025,290,4380_68098,Nenagh,96505-00015-1,0,4380_7778208_3230402,4380_1043 -4380_78025,294,4380_68099,Nenagh,96503-00018-1,0,4380_7778208_3230402,4380_1043 -4380_78025,295,4380_68100,Nenagh,96511-00019-1,0,4380_7778208_3230402,4380_1043 -4380_78025,293,4380_68101,Nenagh,96509-00017-1,0,4380_7778208_3230402,4380_1043 -4380_78025,296,4380_68102,Nenagh,96507-00021-1,0,4380_7778208_3230402,4380_1048 -4380_78025,297,4380_68109,Nenagh,96451-00008-1,0,4380_7778208_3230401,4380_1043 -4380_78025,285,4380_68110,Nenagh,96580-00009-1,0,4380_7778208_3230403,4380_1046 -4380_78025,288,4380_68112,Nenagh,96570-00011-1,0,4380_7778208_3230403,4380_1046 -4380_78025,286,4380_68113,Nenagh,96576-00010-1,0,4380_7778208_3230403,4380_1046 -4380_78025,291,4380_68114,Nenagh,96574-00013-1,0,4380_7778208_3230403,4380_1050 -4380_78025,289,4380_68115,Nenagh,96578-00014-1,0,4380_7778208_3230403,4380_1046 -4380_78025,287,4380_68116,Nenagh,96572-00012-1,0,4380_7778208_3230403,4380_1046 -4380_78025,292,4380_68117,Nenagh,96577-00016-1,0,4380_7778208_3230403,4380_1046 -4380_78025,290,4380_68118,Nenagh,96581-00015-1,0,4380_7778208_3230403,4380_1046 -4380_78025,294,4380_68119,Nenagh,96573-00018-1,0,4380_7778208_3230403,4380_1046 -4380_78025,295,4380_68120,Nenagh,96579-00019-1,0,4380_7778208_3230403,4380_1046 -4380_78025,293,4380_68121,Nenagh,96571-00017-1,0,4380_7778208_3230403,4380_1046 -4380_78025,296,4380_68122,Nenagh,96575-00021-1,0,4380_7778208_3230403,4380_1050 -4380_78025,285,4380_68128,Nenagh,96454-00009-1,0,4380_7778208_3230401,4380_1045 -4380_78025,288,4380_68130,Nenagh,96462-00011-1,0,4380_7778208_3230401,4380_1045 -4380_78025,286,4380_68131,Nenagh,96460-00010-1,0,4380_7778208_3230401,4380_1045 -4380_78025,291,4380_68132,Nenagh,96452-00013-1,0,4380_7778208_3230401,4380_1049 -4380_78025,289,4380_68133,Nenagh,96458-00014-1,0,4380_7778208_3230401,4380_1045 -4380_78025,287,4380_68134,Nenagh,96456-00012-1,0,4380_7778208_3230401,4380_1045 -4380_78025,292,4380_68135,Nenagh,96461-00016-1,0,4380_7778208_3230401,4380_1045 -4380_78025,290,4380_68136,Nenagh,96455-00015-1,0,4380_7778208_3230401,4380_1045 -4380_78025,294,4380_68137,Nenagh,96457-00018-1,0,4380_7778208_3230401,4380_1045 -4380_78025,295,4380_68138,Nenagh,96459-00019-1,0,4380_7778208_3230401,4380_1045 -4380_78025,293,4380_68139,Nenagh,96463-00017-1,0,4380_7778208_3230401,4380_1045 -4380_78025,296,4380_68140,Nenagh,96453-00021-1,0,4380_7778208_3230401,4380_1049 -4380_78025,285,4380_68146,Nenagh,96526-00009-1,0,4380_7778208_3230402,4380_1043 -4380_78025,288,4380_68148,Nenagh,96530-00011-1,0,4380_7778208_3230402,4380_1043 -4380_78025,286,4380_68149,Nenagh,96534-00010-1,0,4380_7778208_3230402,4380_1043 -4380_77953,285,4380_6815,Kells,5915-00009-1,0,4380_7778208_1090112,4380_95 -4380_78025,291,4380_68150,Nenagh,96524-00013-1,0,4380_7778208_3230402,4380_1048 -4380_78025,289,4380_68151,Nenagh,96532-00014-1,0,4380_7778208_3230402,4380_1043 -4380_78025,287,4380_68152,Nenagh,96528-00012-1,0,4380_7778208_3230402,4380_1043 -4380_78025,292,4380_68153,Nenagh,96535-00016-1,0,4380_7778208_3230402,4380_1043 -4380_78025,290,4380_68154,Nenagh,96527-00015-1,0,4380_7778208_3230402,4380_1043 -4380_78025,294,4380_68155,Nenagh,96529-00018-1,0,4380_7778208_3230402,4380_1043 -4380_78025,295,4380_68156,Nenagh,96533-00019-1,0,4380_7778208_3230402,4380_1043 -4380_78025,293,4380_68157,Nenagh,96531-00017-1,0,4380_7778208_3230402,4380_1043 -4380_78025,296,4380_68158,Nenagh,96525-00021-1,0,4380_7778208_3230402,4380_1048 -4380_77953,286,4380_6816,Kells,5924-00010-1,0,4380_7778208_1090112,4380_95 -4380_78025,285,4380_68164,Nenagh,96594-00009-1,0,4380_7778208_3230403,4380_1043 -4380_78025,288,4380_68166,Nenagh,96600-00011-1,0,4380_7778208_3230403,4380_1043 -4380_78025,286,4380_68167,Nenagh,96602-00010-1,0,4380_7778208_3230403,4380_1043 -4380_78025,291,4380_68168,Nenagh,96596-00013-1,0,4380_7778208_3230403,4380_1048 -4380_78025,289,4380_68169,Nenagh,96604-00014-1,0,4380_7778208_3230403,4380_1043 -4380_77953,297,4380_6817,Kells,5639-00008-1,0,4380_7778208_1090106,4380_91 -4380_78025,287,4380_68170,Nenagh,96598-00012-1,0,4380_7778208_3230403,4380_1043 -4380_78025,292,4380_68171,Nenagh,96603-00016-1,0,4380_7778208_3230403,4380_1043 -4380_78025,290,4380_68172,Nenagh,96595-00015-1,0,4380_7778208_3230403,4380_1043 -4380_78025,294,4380_68173,Nenagh,96599-00018-1,0,4380_7778208_3230403,4380_1043 -4380_78025,295,4380_68174,Nenagh,96605-00019-1,0,4380_7778208_3230403,4380_1043 -4380_78025,293,4380_68175,Nenagh,96601-00017-1,0,4380_7778208_3230403,4380_1043 -4380_78025,296,4380_68176,Nenagh,96597-00021-1,0,4380_7778208_3230403,4380_1048 -4380_78025,297,4380_68178,Nenagh,96475-00008-1,0,4380_7778208_3230401,4380_1043 -4380_77953,288,4380_6818,Kells,5933-00011-1,0,4380_7778208_1090112,4380_95 -4380_78025,285,4380_68184,Limerick Bus Station,96434-00009-1,1,4380_7778208_3230401,4380_1051 -4380_78025,288,4380_68186,Limerick Bus Station,96438-00011-1,1,4380_7778208_3230401,4380_1051 -4380_78025,286,4380_68187,Limerick Bus Station,96436-00010-1,1,4380_7778208_3230401,4380_1051 -4380_78025,291,4380_68188,Limerick Bus Station,96442-00013-1,1,4380_7778208_3230401,4380_1054 -4380_78025,289,4380_68189,Limerick Bus Station,96440-00014-1,1,4380_7778208_3230401,4380_1051 -4380_77953,287,4380_6819,Kells,5940-00012-1,0,4380_7778208_1090112,4380_95 -4380_78025,287,4380_68190,Limerick Bus Station,96432-00012-1,1,4380_7778208_3230401,4380_1051 -4380_78025,292,4380_68191,Limerick Bus Station,96437-00016-1,1,4380_7778208_3230401,4380_1051 -4380_78025,290,4380_68192,Limerick Bus Station,96435-00015-1,1,4380_7778208_3230401,4380_1051 -4380_78025,294,4380_68193,Limerick Bus Station,96433-00018-1,1,4380_7778208_3230401,4380_1051 -4380_78025,295,4380_68194,Limerick Bus Station,96441-00019-1,1,4380_7778208_3230401,4380_1051 -4380_78025,293,4380_68195,Limerick Bus Station,96439-00017-1,1,4380_7778208_3230401,4380_1051 -4380_78025,296,4380_68196,Limerick Bus Station,96443-00021-1,1,4380_7778208_3230401,4380_1054 -4380_77953,289,4380_6820,Kells,5904-00014-1,0,4380_7778208_1090112,4380_95 -4380_78025,285,4380_68202,Limerick Bus Station,96542-00009-1,1,4380_7778208_3230403,4380_1051 -4380_78025,288,4380_68204,Limerick Bus Station,96544-00011-1,1,4380_7778208_3230403,4380_1051 -4380_78025,286,4380_68205,Limerick Bus Station,96546-00010-1,1,4380_7778208_3230403,4380_1051 -4380_78025,291,4380_68206,Limerick Bus Station,96548-00013-1,1,4380_7778208_3230403,4380_1054 -4380_78025,289,4380_68207,Limerick Bus Station,96538-00014-1,1,4380_7778208_3230403,4380_1051 -4380_78025,287,4380_68208,Limerick Bus Station,96540-00012-1,1,4380_7778208_3230403,4380_1051 -4380_78025,292,4380_68209,Limerick Bus Station,96547-00016-1,1,4380_7778208_3230403,4380_1051 -4380_77953,290,4380_6821,Kells,55167-00015-1,0,4380_7778208_1090112,4380_95 -4380_78025,290,4380_68210,Limerick Bus Station,96543-00015-1,1,4380_7778208_3230403,4380_1051 -4380_78025,294,4380_68211,Limerick Bus Station,96541-00018-1,1,4380_7778208_3230403,4380_1051 -4380_78025,295,4380_68212,Limerick Bus Station,96539-00019-1,1,4380_7778208_3230403,4380_1051 -4380_78025,293,4380_68213,Limerick Bus Station,96545-00017-1,1,4380_7778208_3230403,4380_1051 -4380_78025,296,4380_68214,Limerick Bus Station,96549-00021-1,1,4380_7778208_3230403,4380_1054 -4380_77953,291,4380_6822,Kells,5284-00013-1,0,4380_7778208_1090101,4380_99 -4380_78025,297,4380_68221,Limerick Bus Station,96444-00008-1,1,4380_7778208_3230401,4380_1051 -4380_78025,285,4380_68222,Limerick Bus Station,96494-00009-1,1,4380_7778208_3230402,4380_1052 -4380_78025,288,4380_68224,Limerick Bus Station,96488-00011-1,1,4380_7778208_3230402,4380_1052 -4380_78025,286,4380_68225,Limerick Bus Station,96490-00010-1,1,4380_7778208_3230402,4380_1052 -4380_78025,291,4380_68226,Limerick Bus Station,96492-00013-1,1,4380_7778208_3230402,4380_1055 -4380_78025,289,4380_68227,Limerick Bus Station,96496-00014-1,1,4380_7778208_3230402,4380_1052 -4380_78025,287,4380_68228,Limerick Bus Station,96498-00012-1,1,4380_7778208_3230402,4380_1052 -4380_78025,292,4380_68229,Limerick Bus Station,96491-00016-1,1,4380_7778208_3230402,4380_1052 -4380_77953,292,4380_6823,Kells,55168-00016-1,0,4380_7778208_1090112,4380_95 -4380_78025,290,4380_68230,Limerick Bus Station,96495-00015-1,1,4380_7778208_3230402,4380_1052 -4380_78025,294,4380_68231,Limerick Bus Station,96499-00018-1,1,4380_7778208_3230402,4380_1052 -4380_78025,295,4380_68232,Limerick Bus Station,96497-00019-1,1,4380_7778208_3230402,4380_1052 -4380_78025,293,4380_68233,Limerick Bus Station,96489-00017-1,1,4380_7778208_3230402,4380_1052 -4380_78025,296,4380_68234,Limerick Bus Station,96493-00021-1,1,4380_7778208_3230402,4380_1055 -4380_77953,293,4380_6824,Kells,55164-00017-1,0,4380_7778208_1090112,4380_95 -4380_78025,285,4380_68240,Limerick Bus Station,96562-00009-1,1,4380_7778208_3230403,4380_1051 -4380_78025,288,4380_68242,Limerick Bus Station,96560-00011-1,1,4380_7778208_3230403,4380_1051 -4380_78025,286,4380_68243,Limerick Bus Station,96564-00010-1,1,4380_7778208_3230403,4380_1051 -4380_78025,291,4380_68244,Limerick Bus Station,96448-00013-1,1,4380_7778208_3230401,4380_1054 -4380_78025,289,4380_68245,Limerick Bus Station,96568-00014-1,1,4380_7778208_3230403,4380_1051 -4380_78025,287,4380_68246,Limerick Bus Station,96566-00012-1,1,4380_7778208_3230403,4380_1051 -4380_78025,292,4380_68247,Limerick Bus Station,96565-00016-1,1,4380_7778208_3230403,4380_1051 -4380_78025,290,4380_68248,Limerick Bus Station,96563-00015-1,1,4380_7778208_3230403,4380_1051 -4380_78025,294,4380_68249,Limerick Bus Station,96567-00018-1,1,4380_7778208_3230403,4380_1051 -4380_77953,294,4380_6825,Kells,55166-00018-1,0,4380_7778208_1090112,4380_95 -4380_78025,295,4380_68250,Limerick Bus Station,96569-00019-1,1,4380_7778208_3230403,4380_1051 -4380_78025,293,4380_68251,Limerick Bus Station,96561-00017-1,1,4380_7778208_3230403,4380_1051 -4380_78025,296,4380_68252,Limerick Bus Station,96449-00021-1,1,4380_7778208_3230401,4380_1054 -4380_78025,297,4380_68254,Limerick Bus Station,96450-00008-1,1,4380_7778208_3230401,4380_1051 -4380_78025,287,4380_68256,Newport,96628-00012-1,1,4380_7778208_3230408,4380_1053 -4380_78025,294,4380_68257,Newport,96629-00018-1,1,4380_7778208_3230408,4380_1053 -4380_77953,295,4380_6826,Kells,55165-00019-1,0,4380_7778208_1090112,4380_95 -4380_78025,285,4380_68263,Limerick Bus Station,96516-00009-1,1,4380_7778208_3230402,4380_1051 -4380_78025,288,4380_68265,Limerick Bus Station,96512-00011-1,1,4380_7778208_3230402,4380_1051 -4380_78025,286,4380_68266,Limerick Bus Station,96520-00010-1,1,4380_7778208_3230402,4380_1051 -4380_78025,291,4380_68267,Limerick Bus Station,96514-00013-1,1,4380_7778208_3230402,4380_1054 -4380_78025,289,4380_68268,Limerick Bus Station,96522-00014-1,1,4380_7778208_3230402,4380_1051 -4380_78025,287,4380_68269,Limerick Bus Station,96518-00012-1,1,4380_7778208_3230402,4380_1051 -4380_77953,296,4380_6827,Kells,54664-00021-1,0,4380_7778208_1090101,4380_99 -4380_78025,292,4380_68270,Limerick Bus Station,96521-00016-1,1,4380_7778208_3230402,4380_1051 -4380_78025,290,4380_68271,Limerick Bus Station,96517-00015-1,1,4380_7778208_3230402,4380_1051 -4380_78025,294,4380_68272,Limerick Bus Station,96519-00018-1,1,4380_7778208_3230402,4380_1051 -4380_78025,295,4380_68273,Limerick Bus Station,96523-00019-1,1,4380_7778208_3230402,4380_1051 -4380_78025,293,4380_68274,Limerick Bus Station,96513-00017-1,1,4380_7778208_3230402,4380_1051 -4380_78025,296,4380_68275,Limerick Bus Station,96515-00021-1,1,4380_7778208_3230402,4380_1054 -4380_78025,285,4380_68281,Limerick Bus Station,96592-00009-1,1,4380_7778208_3230403,4380_1051 -4380_78025,288,4380_68283,Limerick Bus Station,96584-00011-1,1,4380_7778208_3230403,4380_1051 -4380_78025,286,4380_68284,Limerick Bus Station,96588-00010-1,1,4380_7778208_3230403,4380_1051 -4380_78025,291,4380_68285,Limerick Bus Station,96582-00013-1,1,4380_7778208_3230403,4380_1054 -4380_78025,289,4380_68286,Limerick Bus Station,96590-00014-1,1,4380_7778208_3230403,4380_1051 -4380_78025,287,4380_68287,Limerick Bus Station,96586-00012-1,1,4380_7778208_3230403,4380_1051 -4380_78025,292,4380_68288,Limerick Bus Station,96589-00016-1,1,4380_7778208_3230403,4380_1051 -4380_78025,290,4380_68289,Limerick Bus Station,96593-00015-1,1,4380_7778208_3230403,4380_1051 -4380_78025,294,4380_68290,Limerick Bus Station,96587-00018-1,1,4380_7778208_3230403,4380_1051 -4380_78025,295,4380_68291,Limerick Bus Station,96591-00019-1,1,4380_7778208_3230403,4380_1051 -4380_78025,293,4380_68292,Limerick Bus Station,96585-00017-1,1,4380_7778208_3230403,4380_1051 -4380_78025,296,4380_68293,Limerick Bus Station,96583-00021-1,1,4380_7778208_3230403,4380_1054 -4380_78025,297,4380_68295,Limerick Bus Station,96464-00008-1,1,4380_7778208_3230401,4380_1051 -4380_78113,285,4380_683,Dundalk,49882-00009-1,0,4380_7778208_1000905,4380_10 -4380_78025,285,4380_68301,Limerick Bus Station,96469-00009-1,1,4380_7778208_3230401,4380_1051 -4380_78025,288,4380_68303,Limerick Bus Station,96465-00011-1,1,4380_7778208_3230401,4380_1051 -4380_78025,286,4380_68304,Limerick Bus Station,96471-00010-1,1,4380_7778208_3230401,4380_1051 -4380_78025,291,4380_68305,Limerick Bus Station,96536-00013-1,1,4380_7778208_3230402,4380_1054 -4380_78025,289,4380_68306,Limerick Bus Station,96467-00014-1,1,4380_7778208_3230401,4380_1051 -4380_78025,287,4380_68307,Limerick Bus Station,96473-00012-1,1,4380_7778208_3230401,4380_1051 -4380_78025,292,4380_68308,Limerick Bus Station,96472-00016-1,1,4380_7778208_3230401,4380_1051 -4380_78025,290,4380_68309,Limerick Bus Station,96470-00015-1,1,4380_7778208_3230401,4380_1051 -4380_78025,294,4380_68310,Limerick Bus Station,96474-00018-1,1,4380_7778208_3230401,4380_1051 -4380_78025,295,4380_68311,Limerick Bus Station,96468-00019-1,1,4380_7778208_3230401,4380_1051 -4380_78025,293,4380_68312,Limerick Bus Station,96466-00017-1,1,4380_7778208_3230401,4380_1051 -4380_78025,296,4380_68313,Limerick Bus Station,96537-00021-1,1,4380_7778208_3230402,4380_1054 -4380_78132,285,4380_68319,Birr,96622-00009-1,0,4380_7778208_3230404,4380_1056 -4380_78132,288,4380_68320,Birr,96616-00011-1,0,4380_7778208_3230404,4380_1056 -4380_78132,286,4380_68321,Birr,96618-00010-1,0,4380_7778208_3230404,4380_1056 -4380_78132,289,4380_68322,Birr,96624-00014-1,0,4380_7778208_3230404,4380_1056 -4380_78132,287,4380_68323,Birr,96620-00012-1,0,4380_7778208_3230404,4380_1056 -4380_78132,292,4380_68324,Birr,96619-00016-1,0,4380_7778208_3230404,4380_1056 -4380_78132,290,4380_68325,Birr,96623-00015-1,0,4380_7778208_3230404,4380_1056 -4380_78132,294,4380_68326,Birr,96621-00018-1,0,4380_7778208_3230404,4380_1056 -4380_78132,295,4380_68327,Birr,96625-00019-1,0,4380_7778208_3230404,4380_1056 -4380_78132,293,4380_68328,Birr,96617-00017-1,0,4380_7778208_3230404,4380_1056 -4380_78132,285,4380_68334,Limerick Bus Station,96612-00009-1,1,4380_7778208_3230404,4380_1057 -4380_78132,288,4380_68335,Limerick Bus Station,96610-00011-1,1,4380_7778208_3230404,4380_1057 -4380_78132,286,4380_68336,Limerick Bus Station,96614-00010-1,1,4380_7778208_3230404,4380_1057 -4380_78132,289,4380_68337,Limerick Bus Station,96606-00014-1,1,4380_7778208_3230404,4380_1057 -4380_78132,287,4380_68338,Limerick Bus Station,96608-00012-1,1,4380_7778208_3230404,4380_1057 -4380_78132,292,4380_68339,Limerick Bus Station,96615-00016-1,1,4380_7778208_3230404,4380_1057 -4380_78132,290,4380_68340,Limerick Bus Station,96613-00015-1,1,4380_7778208_3230404,4380_1057 -4380_78132,294,4380_68341,Limerick Bus Station,96609-00018-1,1,4380_7778208_3230404,4380_1057 -4380_78132,295,4380_68342,Limerick Bus Station,96607-00019-1,1,4380_7778208_3230404,4380_1057 -4380_78132,293,4380_68343,Limerick Bus Station,96611-00017-1,1,4380_7778208_3230404,4380_1057 -4380_78026,288,4380_68345,Borrisokane,114932-00011-1,0,4380_7778208_32488801,4380_1058 -4380_78026,293,4380_68346,Borrisokane,114933-00017-1,0,4380_7778208_32488801,4380_1058 -4380_78026,288,4380_68348,Nenagh,114930-00011-1,1,4380_7778208_32488801,4380_1059 -4380_78026,293,4380_68349,Nenagh,114931-00017-1,1,4380_7778208_32488801,4380_1059 -4380_77953,285,4380_6835,Dunshaughlin,7014-00009-1,0,4380_7778208_1090906,4380_96 -4380_78027,297,4380_68356,Mitchelstown,96716-00008-1,0,4380_7778208_3280402,4380_1060 -4380_78027,285,4380_68357,Mitchelstown,96712-00009-1,0,4380_7778208_3280402,4380_1062 -4380_78027,288,4380_68359,Mitchelstown,96719-00011-1,0,4380_7778208_3280402,4380_1062 -4380_77953,286,4380_6836,Dunshaughlin,7020-00010-1,0,4380_7778208_1090906,4380_96 -4380_78027,286,4380_68360,Mitchelstown,96710-00010-1,0,4380_7778208_3280402,4380_1062 -4380_78027,291,4380_68361,Mitchelstown,96717-00013-1,0,4380_7778208_3280402,4380_1064 -4380_78027,289,4380_68362,Mitchelstown,96714-00014-1,0,4380_7778208_3280402,4380_1062 -4380_78027,287,4380_68363,Mitchelstown,96708-00012-1,0,4380_7778208_3280402,4380_1062 -4380_78027,292,4380_68364,Mitchelstown,96711-00016-1,0,4380_7778208_3280402,4380_1062 -4380_78027,290,4380_68365,Mitchelstown,96713-00015-1,0,4380_7778208_3280402,4380_1062 -4380_78027,294,4380_68366,Mitchelstown,96709-00018-1,0,4380_7778208_3280402,4380_1062 -4380_78027,295,4380_68367,Mitchelstown,96715-00019-1,0,4380_7778208_3280402,4380_1062 -4380_78027,293,4380_68368,Mitchelstown,96720-00017-1,0,4380_7778208_3280402,4380_1062 -4380_78027,296,4380_68369,Mitchelstown,96718-00021-1,0,4380_7778208_3280402,4380_1064 -4380_77953,297,4380_6837,Dunshaughlin,5366-00008-1,0,4380_7778208_1090102,4380_90 -4380_78027,297,4380_68376,Mitchelstown,96645-00008-1,0,4380_7778208_3280401,4380_1060 -4380_78027,285,4380_68377,Mitchelstown,96643-00009-1,0,4380_7778208_3280401,4380_1062 -4380_78027,288,4380_68379,Mitchelstown,96646-00011-1,0,4380_7778208_3280401,4380_1062 -4380_77953,288,4380_6838,Dunshaughlin,7026-00011-1,0,4380_7778208_1090906,4380_96 -4380_78027,286,4380_68380,Mitchelstown,96652-00010-1,0,4380_7778208_3280401,4380_1062 -4380_78027,291,4380_68381,Mitchelstown,96650-00013-1,0,4380_7778208_3280401,4380_1064 -4380_78027,289,4380_68382,Mitchelstown,96654-00014-1,0,4380_7778208_3280401,4380_1062 -4380_78027,287,4380_68383,Mitchelstown,96648-00012-1,0,4380_7778208_3280401,4380_1062 -4380_78027,292,4380_68384,Mitchelstown,96653-00016-1,0,4380_7778208_3280401,4380_1062 -4380_78027,290,4380_68385,Mitchelstown,96644-00015-1,0,4380_7778208_3280401,4380_1062 -4380_78027,294,4380_68386,Mitchelstown,96649-00018-1,0,4380_7778208_3280401,4380_1062 -4380_78027,295,4380_68387,Mitchelstown,96655-00019-1,0,4380_7778208_3280401,4380_1062 -4380_78027,293,4380_68388,Mitchelstown,96647-00017-1,0,4380_7778208_3280401,4380_1062 -4380_78027,296,4380_68389,Mitchelstown,96651-00021-1,0,4380_7778208_3280401,4380_1064 -4380_77953,287,4380_6839,Dunshaughlin,7032-00012-1,0,4380_7778208_1090906,4380_96 -4380_78027,297,4380_68396,Mitchelstown,96742-00008-1,0,4380_7778208_3280402,4380_1060 -4380_78027,285,4380_68397,Mitchelstown,96745-00009-1,0,4380_7778208_3280402,4380_1062 -4380_78027,288,4380_68399,Mitchelstown,96738-00011-1,0,4380_7778208_3280402,4380_1062 -4380_78113,286,4380_684,Dundalk,49884-00010-1,0,4380_7778208_1000905,4380_10 -4380_77953,289,4380_6840,Dunshaughlin,7008-00014-1,0,4380_7778208_1090906,4380_96 -4380_78027,286,4380_68400,Mitchelstown,96740-00010-1,0,4380_7778208_3280402,4380_1062 -4380_78027,291,4380_68401,Mitchelstown,96734-00013-1,0,4380_7778208_3280402,4380_1064 -4380_78027,289,4380_68402,Mitchelstown,96743-00014-1,0,4380_7778208_3280402,4380_1062 -4380_78027,287,4380_68403,Mitchelstown,96736-00012-1,0,4380_7778208_3280402,4380_1062 -4380_78027,292,4380_68404,Mitchelstown,96741-00016-1,0,4380_7778208_3280402,4380_1062 -4380_78027,290,4380_68405,Mitchelstown,96746-00015-1,0,4380_7778208_3280402,4380_1062 -4380_78027,294,4380_68406,Mitchelstown,96737-00018-1,0,4380_7778208_3280402,4380_1062 -4380_78027,295,4380_68407,Mitchelstown,96744-00019-1,0,4380_7778208_3280402,4380_1062 -4380_78027,293,4380_68408,Mitchelstown,96739-00017-1,0,4380_7778208_3280402,4380_1062 -4380_78027,296,4380_68409,Mitchelstown,96735-00021-1,0,4380_7778208_3280402,4380_1064 -4380_77953,290,4380_6841,Dunshaughlin,55480-00015-1,0,4380_7778208_1090906,4380_96 -4380_78027,297,4380_68416,Mitchelstown,96673-00008-1,0,4380_7778208_3280401,4380_1060 -4380_78027,285,4380_68417,Mitchelstown,96678-00009-1,0,4380_7778208_3280401,4380_1062 -4380_78027,288,4380_68419,Mitchelstown,96676-00011-1,0,4380_7778208_3280401,4380_1062 -4380_77953,291,4380_6842,Dunshaughlin,6811-00013-1,0,4380_7778208_1090901,4380_100 -4380_78027,286,4380_68420,Mitchelstown,96680-00010-1,0,4380_7778208_3280401,4380_1062 -4380_78027,291,4380_68421,Mitchelstown,96669-00013-1,0,4380_7778208_3280401,4380_1064 -4380_78027,289,4380_68422,Mitchelstown,96674-00014-1,0,4380_7778208_3280401,4380_1062 -4380_78027,287,4380_68423,Mitchelstown,96671-00012-1,0,4380_7778208_3280401,4380_1062 -4380_78027,292,4380_68424,Mitchelstown,96681-00016-1,0,4380_7778208_3280401,4380_1062 -4380_78027,290,4380_68425,Mitchelstown,96679-00015-1,0,4380_7778208_3280401,4380_1062 -4380_78027,294,4380_68426,Mitchelstown,96672-00018-1,0,4380_7778208_3280401,4380_1062 -4380_78027,295,4380_68427,Mitchelstown,96675-00019-1,0,4380_7778208_3280401,4380_1062 -4380_78027,293,4380_68428,Mitchelstown,96677-00017-1,0,4380_7778208_3280401,4380_1062 -4380_78027,296,4380_68429,Mitchelstown,96670-00021-1,0,4380_7778208_3280401,4380_1064 -4380_77953,292,4380_6843,Dunshaughlin,55482-00016-1,0,4380_7778208_1090906,4380_96 -4380_78027,297,4380_68436,Mitchelstown,96766-00008-1,0,4380_7778208_3280402,4380_1061 -4380_78027,285,4380_68437,Mitchelstown,96771-00009-1,0,4380_7778208_3280402,4380_1063 -4380_78027,288,4380_68439,Mitchelstown,96762-00011-1,0,4380_7778208_3280402,4380_1063 -4380_77953,293,4380_6844,Dunshaughlin,55478-00017-1,0,4380_7778208_1090906,4380_96 -4380_78027,286,4380_68440,Mitchelstown,96767-00010-1,0,4380_7778208_3280402,4380_1063 -4380_78027,291,4380_68441,Mitchelstown,96769-00013-1,0,4380_7778208_3280402,4380_1065 -4380_78027,289,4380_68442,Mitchelstown,96760-00014-1,0,4380_7778208_3280402,4380_1063 -4380_78027,287,4380_68443,Mitchelstown,96764-00012-1,0,4380_7778208_3280402,4380_1063 -4380_78027,292,4380_68444,Mitchelstown,96768-00016-1,0,4380_7778208_3280402,4380_1063 -4380_78027,290,4380_68445,Mitchelstown,96772-00015-1,0,4380_7778208_3280402,4380_1063 -4380_78027,294,4380_68446,Mitchelstown,96765-00018-1,0,4380_7778208_3280402,4380_1063 -4380_78027,295,4380_68447,Mitchelstown,96761-00019-1,0,4380_7778208_3280402,4380_1063 -4380_78027,293,4380_68448,Mitchelstown,96763-00017-1,0,4380_7778208_3280402,4380_1063 -4380_78027,296,4380_68449,Mitchelstown,96770-00021-1,0,4380_7778208_3280402,4380_1065 -4380_77953,294,4380_6845,Dunshaughlin,55481-00018-1,0,4380_7778208_1090906,4380_96 -4380_78027,297,4380_68456,Mitchelstown,96707-00008-1,0,4380_7778208_3280401,4380_1060 -4380_78027,285,4380_68457,Mitchelstown,96697-00009-1,0,4380_7778208_3280401,4380_1062 -4380_78027,288,4380_68459,Mitchelstown,96703-00011-1,0,4380_7778208_3280401,4380_1062 -4380_77953,295,4380_6846,Dunshaughlin,55479-00019-1,0,4380_7778208_1090906,4380_96 -4380_78027,286,4380_68460,Mitchelstown,96705-00010-1,0,4380_7778208_3280401,4380_1062 -4380_78027,291,4380_68461,Mitchelstown,96699-00013-1,0,4380_7778208_3280401,4380_1064 -4380_78027,289,4380_68462,Mitchelstown,96701-00014-1,0,4380_7778208_3280401,4380_1062 -4380_78027,287,4380_68463,Mitchelstown,96695-00012-1,0,4380_7778208_3280401,4380_1062 -4380_78027,292,4380_68464,Mitchelstown,96706-00016-1,0,4380_7778208_3280401,4380_1062 -4380_78027,290,4380_68465,Mitchelstown,96698-00015-1,0,4380_7778208_3280401,4380_1062 -4380_78027,294,4380_68466,Mitchelstown,96696-00018-1,0,4380_7778208_3280401,4380_1062 -4380_78027,295,4380_68467,Mitchelstown,96702-00019-1,0,4380_7778208_3280401,4380_1062 -4380_78027,293,4380_68468,Mitchelstown,96704-00017-1,0,4380_7778208_3280401,4380_1062 -4380_78027,296,4380_68469,Mitchelstown,96700-00021-1,0,4380_7778208_3280401,4380_1064 -4380_77953,296,4380_6847,Dunshaughlin,55337-00021-1,0,4380_7778208_1090901,4380_100 -4380_78027,297,4380_68476,Limerick Bus Station,96630-00008-1,1,4380_7778208_3280401,4380_1066 -4380_78027,285,4380_68477,Limerick Bus Station,96637-00009-1,1,4380_7778208_3280401,4380_1068 -4380_78027,288,4380_68479,Limerick Bus Station,96631-00011-1,1,4380_7778208_3280401,4380_1068 -4380_78027,286,4380_68480,Limerick Bus Station,96635-00010-1,1,4380_7778208_3280401,4380_1068 -4380_78027,291,4380_68481,Limerick Bus Station,96639-00013-1,1,4380_7778208_3280401,4380_1070 -4380_78027,289,4380_68482,Limerick Bus Station,96641-00014-1,1,4380_7778208_3280401,4380_1068 -4380_78027,287,4380_68483,Limerick Bus Station,96633-00012-1,1,4380_7778208_3280401,4380_1068 -4380_78027,292,4380_68484,Limerick Bus Station,96636-00016-1,1,4380_7778208_3280401,4380_1068 -4380_78027,290,4380_68485,Limerick Bus Station,96638-00015-1,1,4380_7778208_3280401,4380_1068 -4380_78027,294,4380_68486,Limerick Bus Station,96634-00018-1,1,4380_7778208_3280401,4380_1068 -4380_78027,295,4380_68487,Limerick Bus Station,96642-00019-1,1,4380_7778208_3280401,4380_1068 -4380_78027,293,4380_68488,Limerick Bus Station,96632-00017-1,1,4380_7778208_3280401,4380_1068 -4380_78027,296,4380_68489,Limerick Bus Station,96640-00021-1,1,4380_7778208_3280401,4380_1070 -4380_78027,297,4380_68496,Limerick Bus Station,96731-00008-1,1,4380_7778208_3280402,4380_1067 -4380_78027,285,4380_68497,Limerick Bus Station,96725-00009-1,1,4380_7778208_3280402,4380_1069 -4380_78027,288,4380_68499,Limerick Bus Station,96727-00011-1,1,4380_7778208_3280402,4380_1069 -4380_78113,297,4380_685,Dundalk,49782-00008-1,0,4380_7778208_1000904,4380_13 -4380_78027,286,4380_68500,Limerick Bus Station,96721-00010-1,1,4380_7778208_3280402,4380_1069 -4380_78027,291,4380_68501,Limerick Bus Station,96729-00013-1,1,4380_7778208_3280402,4380_1071 -4380_78027,289,4380_68502,Limerick Bus Station,96732-00014-1,1,4380_7778208_3280402,4380_1069 -4380_78027,287,4380_68503,Limerick Bus Station,96723-00012-1,1,4380_7778208_3280402,4380_1069 -4380_78027,292,4380_68504,Limerick Bus Station,96722-00016-1,1,4380_7778208_3280402,4380_1069 -4380_78027,290,4380_68505,Limerick Bus Station,96726-00015-1,1,4380_7778208_3280402,4380_1069 -4380_78027,294,4380_68506,Limerick Bus Station,96724-00018-1,1,4380_7778208_3280402,4380_1069 -4380_78027,295,4380_68507,Limerick Bus Station,96733-00019-1,1,4380_7778208_3280402,4380_1069 -4380_78027,293,4380_68508,Limerick Bus Station,96728-00017-1,1,4380_7778208_3280402,4380_1069 -4380_78027,296,4380_68509,Limerick Bus Station,96730-00021-1,1,4380_7778208_3280402,4380_1071 -4380_78027,297,4380_68516,Limerick Bus Station,96660-00008-1,1,4380_7778208_3280401,4380_1067 -4380_78027,285,4380_68517,Limerick Bus Station,96656-00009-1,1,4380_7778208_3280401,4380_1069 -4380_78027,288,4380_68519,Limerick Bus Station,96658-00011-1,1,4380_7778208_3280401,4380_1069 -4380_78027,286,4380_68520,Limerick Bus Station,96661-00010-1,1,4380_7778208_3280401,4380_1069 -4380_78027,291,4380_68521,Limerick Bus Station,96663-00013-1,1,4380_7778208_3280401,4380_1071 -4380_78027,289,4380_68522,Limerick Bus Station,96665-00014-1,1,4380_7778208_3280401,4380_1069 -4380_78027,287,4380_68523,Limerick Bus Station,96667-00012-1,1,4380_7778208_3280401,4380_1069 -4380_78027,292,4380_68524,Limerick Bus Station,96662-00016-1,1,4380_7778208_3280401,4380_1069 -4380_78027,290,4380_68525,Limerick Bus Station,96657-00015-1,1,4380_7778208_3280401,4380_1069 -4380_78027,294,4380_68526,Limerick Bus Station,96668-00018-1,1,4380_7778208_3280401,4380_1069 -4380_78027,295,4380_68527,Limerick Bus Station,96666-00019-1,1,4380_7778208_3280401,4380_1069 -4380_78027,293,4380_68528,Limerick Bus Station,96659-00017-1,1,4380_7778208_3280401,4380_1069 -4380_78027,296,4380_68529,Limerick Bus Station,96664-00021-1,1,4380_7778208_3280401,4380_1071 -4380_78027,297,4380_68536,Limerick Bus Station,96753-00008-1,1,4380_7778208_3280402,4380_1067 -4380_78027,285,4380_68537,Limerick Bus Station,96756-00009-1,1,4380_7778208_3280402,4380_1069 -4380_78027,288,4380_68539,Limerick Bus Station,96747-00011-1,1,4380_7778208_3280402,4380_1069 -4380_78027,286,4380_68540,Limerick Bus Station,96754-00010-1,1,4380_7778208_3280402,4380_1069 -4380_78027,291,4380_68541,Limerick Bus Station,96758-00013-1,1,4380_7778208_3280402,4380_1071 -4380_78027,289,4380_68542,Limerick Bus Station,96751-00014-1,1,4380_7778208_3280402,4380_1069 -4380_78027,287,4380_68543,Limerick Bus Station,96749-00012-1,1,4380_7778208_3280402,4380_1069 -4380_78027,292,4380_68544,Limerick Bus Station,96755-00016-1,1,4380_7778208_3280402,4380_1069 -4380_78027,290,4380_68545,Limerick Bus Station,96757-00015-1,1,4380_7778208_3280402,4380_1069 -4380_78027,294,4380_68546,Limerick Bus Station,96750-00018-1,1,4380_7778208_3280402,4380_1069 -4380_78027,295,4380_68547,Limerick Bus Station,96752-00019-1,1,4380_7778208_3280402,4380_1069 -4380_78027,293,4380_68548,Limerick Bus Station,96748-00017-1,1,4380_7778208_3280402,4380_1069 -4380_78027,296,4380_68549,Limerick Bus Station,96759-00021-1,1,4380_7778208_3280402,4380_1071 -4380_77953,285,4380_6855,Kells,5598-00009-1,0,4380_7778208_1090106,4380_95 -4380_78027,297,4380_68556,Limerick Bus Station,96682-00008-1,1,4380_7778208_3280401,4380_1067 -4380_78027,285,4380_68557,Limerick Bus Station,96687-00009-1,1,4380_7778208_3280401,4380_1069 -4380_78027,288,4380_68559,Limerick Bus Station,96689-00011-1,1,4380_7778208_3280401,4380_1069 -4380_77953,286,4380_6856,Kells,5606-00010-1,0,4380_7778208_1090106,4380_95 -4380_78027,286,4380_68560,Limerick Bus Station,96691-00010-1,1,4380_7778208_3280401,4380_1069 -4380_78027,291,4380_68561,Limerick Bus Station,96683-00013-1,1,4380_7778208_3280401,4380_1071 -4380_78027,289,4380_68562,Limerick Bus Station,96685-00014-1,1,4380_7778208_3280401,4380_1069 -4380_78027,287,4380_68563,Limerick Bus Station,96693-00012-1,1,4380_7778208_3280401,4380_1069 -4380_78027,292,4380_68564,Limerick Bus Station,96692-00016-1,1,4380_7778208_3280401,4380_1069 -4380_78027,290,4380_68565,Limerick Bus Station,96688-00015-1,1,4380_7778208_3280401,4380_1069 -4380_78027,294,4380_68566,Limerick Bus Station,96694-00018-1,1,4380_7778208_3280401,4380_1069 -4380_78027,295,4380_68567,Limerick Bus Station,96686-00019-1,1,4380_7778208_3280401,4380_1069 -4380_78027,293,4380_68568,Limerick Bus Station,96690-00017-1,1,4380_7778208_3280401,4380_1069 -4380_78027,296,4380_68569,Limerick Bus Station,96684-00021-1,1,4380_7778208_3280401,4380_1071 -4380_77953,297,4380_6857,Kells,5707-00008-1,0,4380_7778208_1090107,4380_91 -4380_78027,297,4380_68576,Limerick Bus Station,96775-00008-1,1,4380_7778208_3280402,4380_1067 -4380_78027,285,4380_68577,Limerick Bus Station,96782-00009-1,1,4380_7778208_3280402,4380_1069 -4380_78027,288,4380_68579,Limerick Bus Station,96780-00011-1,1,4380_7778208_3280402,4380_1069 -4380_77953,288,4380_6858,Kells,5614-00011-1,0,4380_7778208_1090106,4380_95 -4380_78027,286,4380_68580,Limerick Bus Station,96784-00010-1,1,4380_7778208_3280402,4380_1069 -4380_78027,291,4380_68581,Limerick Bus Station,96776-00013-1,1,4380_7778208_3280402,4380_1071 -4380_78027,289,4380_68582,Limerick Bus Station,96773-00014-1,1,4380_7778208_3280402,4380_1069 -4380_78027,287,4380_68583,Limerick Bus Station,96778-00012-1,1,4380_7778208_3280402,4380_1069 -4380_78027,292,4380_68584,Limerick Bus Station,96785-00016-1,1,4380_7778208_3280402,4380_1069 -4380_78027,290,4380_68585,Limerick Bus Station,96783-00015-1,1,4380_7778208_3280402,4380_1069 -4380_78027,294,4380_68586,Limerick Bus Station,96779-00018-1,1,4380_7778208_3280402,4380_1069 -4380_78027,295,4380_68587,Limerick Bus Station,96774-00019-1,1,4380_7778208_3280402,4380_1069 -4380_78027,293,4380_68588,Limerick Bus Station,96781-00017-1,1,4380_7778208_3280402,4380_1069 -4380_78027,296,4380_68589,Limerick Bus Station,96777-00021-1,1,4380_7778208_3280402,4380_1071 -4380_77953,287,4380_6859,Kells,5622-00012-1,0,4380_7778208_1090106,4380_95 -4380_78028,285,4380_68595,Kilfinane,96818-00009-1,0,4380_7778208_3290401,4380_1072 -4380_78028,288,4380_68597,Kilfinane,96820-00011-1,0,4380_7778208_3290401,4380_1072 -4380_78028,286,4380_68598,Kilfinane,96822-00010-1,0,4380_7778208_3290401,4380_1072 -4380_78028,291,4380_68599,Kilfinane,96814-00013-1,0,4380_7778208_3290401,4380_1072 -4380_78113,287,4380_686,Dundalk,49878-00012-1,0,4380_7778208_1000905,4380_10 -4380_77953,289,4380_6860,Kells,5590-00014-1,0,4380_7778208_1090106,4380_95 -4380_78028,289,4380_68600,Kilfinane,96816-00014-1,0,4380_7778208_3290401,4380_1072 -4380_78028,287,4380_68601,Kilfinane,96812-00012-1,0,4380_7778208_3290401,4380_1072 -4380_78028,292,4380_68602,Kilfinane,96823-00016-1,0,4380_7778208_3290401,4380_1072 -4380_78028,290,4380_68603,Kilfinane,96819-00015-1,0,4380_7778208_3290401,4380_1072 -4380_78028,294,4380_68604,Kilfinane,96813-00018-1,0,4380_7778208_3290401,4380_1072 -4380_78028,295,4380_68605,Kilfinane,96817-00019-1,0,4380_7778208_3290401,4380_1072 -4380_78028,293,4380_68606,Kilfinane,96821-00017-1,0,4380_7778208_3290401,4380_1072 -4380_78028,296,4380_68607,Kilfinane,96815-00021-1,0,4380_7778208_3290401,4380_1072 -4380_77953,290,4380_6861,Kells,54931-00015-1,0,4380_7778208_1090106,4380_95 -4380_78028,285,4380_68613,Kilfinane,96934-00009-1,0,4380_7778208_3290402,4380_1072 -4380_78028,288,4380_68615,Kilfinane,96926-00011-1,0,4380_7778208_3290402,4380_1072 -4380_78028,286,4380_68616,Kilfinane,96932-00010-1,0,4380_7778208_3290402,4380_1072 -4380_78028,291,4380_68617,Kilfinane,96930-00013-1,0,4380_7778208_3290402,4380_1072 -4380_78028,289,4380_68618,Kilfinane,96928-00014-1,0,4380_7778208_3290402,4380_1072 -4380_78028,287,4380_68619,Kilfinane,96936-00012-1,0,4380_7778208_3290402,4380_1072 -4380_77953,291,4380_6862,Kells,5572-00013-1,0,4380_7778208_1090105,4380_99 -4380_78028,292,4380_68620,Kilfinane,96933-00016-1,0,4380_7778208_3290402,4380_1072 -4380_78028,290,4380_68621,Kilfinane,96935-00015-1,0,4380_7778208_3290402,4380_1072 -4380_78028,294,4380_68622,Kilfinane,96937-00018-1,0,4380_7778208_3290402,4380_1072 -4380_78028,295,4380_68623,Kilfinane,96929-00019-1,0,4380_7778208_3290402,4380_1072 -4380_78028,293,4380_68624,Kilfinane,96927-00017-1,0,4380_7778208_3290402,4380_1072 -4380_78028,296,4380_68625,Kilfinane,96931-00021-1,0,4380_7778208_3290402,4380_1072 -4380_78028,297,4380_68627,Kilfinane,96837-00008-1,0,4380_7778208_3290401,4380_1072 -4380_77953,292,4380_6863,Kells,54929-00016-1,0,4380_7778208_1090106,4380_95 -4380_78028,285,4380_68633,Kilfinane,96842-00009-1,0,4380_7778208_3290401,4380_1072 -4380_78028,288,4380_68635,Kilfinane,96840-00011-1,0,4380_7778208_3290401,4380_1072 -4380_78028,286,4380_68636,Kilfinane,96849-00010-1,0,4380_7778208_3290401,4380_1072 -4380_78028,291,4380_68637,Kilfinane,96838-00013-1,0,4380_7778208_3290401,4380_1072 -4380_78028,289,4380_68638,Kilfinane,96846-00014-1,0,4380_7778208_3290401,4380_1072 -4380_78028,287,4380_68639,Kilfinane,96844-00012-1,0,4380_7778208_3290401,4380_1072 -4380_77953,293,4380_6864,Kells,54933-00017-1,0,4380_7778208_1090106,4380_95 -4380_78028,292,4380_68640,Kilfinane,96850-00016-1,0,4380_7778208_3290401,4380_1072 -4380_78028,290,4380_68641,Kilfinane,96843-00015-1,0,4380_7778208_3290401,4380_1072 -4380_78028,294,4380_68642,Kilfinane,96845-00018-1,0,4380_7778208_3290401,4380_1072 -4380_78028,295,4380_68643,Kilfinane,96847-00019-1,0,4380_7778208_3290401,4380_1072 -4380_78028,293,4380_68644,Kilfinane,96841-00017-1,0,4380_7778208_3290401,4380_1072 -4380_78028,296,4380_68645,Kilfinane,96839-00021-1,0,4380_7778208_3290401,4380_1072 -4380_77953,294,4380_6865,Kells,54932-00018-1,0,4380_7778208_1090106,4380_95 -4380_78028,297,4380_68652,Kilfinane,96863-00008-1,0,4380_7778208_3290401,4380_1072 -4380_78028,285,4380_68653,Kilfinane,96960-00009-1,0,4380_7778208_3290402,4380_1072 -4380_78028,288,4380_68655,Kilfinane,96954-00011-1,0,4380_7778208_3290402,4380_1072 -4380_78028,286,4380_68656,Kilfinane,96956-00010-1,0,4380_7778208_3290402,4380_1072 -4380_78028,291,4380_68657,Kilfinane,96958-00013-1,0,4380_7778208_3290402,4380_1072 -4380_78028,289,4380_68658,Kilfinane,96952-00014-1,0,4380_7778208_3290402,4380_1072 -4380_78028,287,4380_68659,Kilfinane,96950-00012-1,0,4380_7778208_3290402,4380_1072 -4380_77953,295,4380_6866,Kells,54930-00019-1,0,4380_7778208_1090106,4380_95 -4380_78028,292,4380_68660,Kilfinane,96957-00016-1,0,4380_7778208_3290402,4380_1072 -4380_78028,290,4380_68661,Kilfinane,96961-00015-1,0,4380_7778208_3290402,4380_1072 -4380_78028,294,4380_68662,Kilfinane,96951-00018-1,0,4380_7778208_3290402,4380_1072 -4380_78028,295,4380_68663,Kilfinane,96953-00019-1,0,4380_7778208_3290402,4380_1072 -4380_78028,293,4380_68664,Kilfinane,96955-00017-1,0,4380_7778208_3290402,4380_1072 -4380_78028,296,4380_68665,Kilfinane,96959-00021-1,0,4380_7778208_3290402,4380_1072 -4380_77953,296,4380_6867,Kells,54877-00021-1,0,4380_7778208_1090105,4380_99 -4380_78028,285,4380_68671,Kilfinane,96871-00009-1,0,4380_7778208_3290401,4380_1072 -4380_78028,288,4380_68673,Kilfinane,96867-00011-1,0,4380_7778208_3290401,4380_1072 -4380_78028,286,4380_68674,Kilfinane,96865-00010-1,0,4380_7778208_3290401,4380_1072 -4380_78028,291,4380_68675,Kilfinane,96869-00013-1,0,4380_7778208_3290401,4380_1072 -4380_78028,289,4380_68676,Kilfinane,96875-00014-1,0,4380_7778208_3290401,4380_1072 -4380_78028,287,4380_68677,Kilfinane,96873-00012-1,0,4380_7778208_3290401,4380_1072 -4380_78028,292,4380_68678,Kilfinane,96866-00016-1,0,4380_7778208_3290401,4380_1072 -4380_78028,290,4380_68679,Kilfinane,96872-00015-1,0,4380_7778208_3290401,4380_1072 -4380_78028,294,4380_68680,Kilfinane,96874-00018-1,0,4380_7778208_3290401,4380_1072 -4380_78028,295,4380_68681,Kilfinane,96876-00019-1,0,4380_7778208_3290401,4380_1072 -4380_78028,293,4380_68682,Kilfinane,96868-00017-1,0,4380_7778208_3290401,4380_1072 -4380_78028,296,4380_68683,Kilfinane,96870-00021-1,0,4380_7778208_3290401,4380_1072 -4380_78028,297,4380_68685,Kilfinane,96877-00008-1,0,4380_7778208_3290401,4380_1072 -4380_78028,285,4380_68691,Kilfinane,96984-00009-1,0,4380_7778208_3290402,4380_1072 -4380_78028,288,4380_68693,Kilfinane,96976-00011-1,0,4380_7778208_3290402,4380_1072 -4380_78028,286,4380_68694,Kilfinane,96980-00010-1,0,4380_7778208_3290402,4380_1072 -4380_78028,291,4380_68695,Kilfinane,96978-00013-1,0,4380_7778208_3290402,4380_1072 -4380_78028,289,4380_68696,Kilfinane,96974-00014-1,0,4380_7778208_3290402,4380_1072 -4380_78028,287,4380_68697,Kilfinane,96982-00012-1,0,4380_7778208_3290402,4380_1072 -4380_78028,292,4380_68698,Kilfinane,96981-00016-1,0,4380_7778208_3290402,4380_1072 -4380_78028,290,4380_68699,Kilfinane,96985-00015-1,0,4380_7778208_3290402,4380_1072 -4380_78113,288,4380_687,Dundalk,49876-00011-1,0,4380_7778208_1000905,4380_10 -4380_78028,294,4380_68700,Kilfinane,96983-00018-1,0,4380_7778208_3290402,4380_1072 -4380_78028,295,4380_68701,Kilfinane,96975-00019-1,0,4380_7778208_3290402,4380_1072 -4380_78028,293,4380_68702,Kilfinane,96977-00017-1,0,4380_7778208_3290402,4380_1072 -4380_78028,296,4380_68703,Kilfinane,96979-00021-1,0,4380_7778208_3290402,4380_1072 -4380_78028,285,4380_68709,Kilfinane,96892-00009-1,0,4380_7778208_3290401,4380_1072 -4380_78028,288,4380_68711,Kilfinane,96900-00011-1,0,4380_7778208_3290401,4380_1072 -4380_78028,286,4380_68712,Kilfinane,96894-00010-1,0,4380_7778208_3290401,4380_1072 -4380_78028,291,4380_68713,Kilfinane,97000-00013-1,0,4380_7778208_3290403,4380_1072 -4380_78028,289,4380_68714,Kilfinane,96898-00014-1,0,4380_7778208_3290401,4380_1072 -4380_78028,287,4380_68715,Kilfinane,96896-00012-1,0,4380_7778208_3290401,4380_1072 -4380_78028,292,4380_68716,Kilfinane,96895-00016-1,0,4380_7778208_3290401,4380_1072 -4380_78028,290,4380_68717,Kilfinane,96893-00015-1,0,4380_7778208_3290401,4380_1072 -4380_78028,294,4380_68718,Kilfinane,96897-00018-1,0,4380_7778208_3290401,4380_1072 -4380_78028,295,4380_68719,Kilfinane,96899-00019-1,0,4380_7778208_3290401,4380_1072 -4380_78028,293,4380_68720,Kilfinane,96901-00017-1,0,4380_7778208_3290401,4380_1072 -4380_78028,296,4380_68721,Kilfinane,97001-00021-1,0,4380_7778208_3290403,4380_1072 -4380_78028,297,4380_68723,Kilfinane,96987-00008-1,0,4380_7778208_3290402,4380_1072 -4380_78028,285,4380_68729,Kilfinane,97012-00009-1,0,4380_7778208_3290403,4380_1072 -4380_78028,288,4380_68731,Kilfinane,97006-00011-1,0,4380_7778208_3290403,4380_1072 -4380_78028,286,4380_68732,Kilfinane,97004-00010-1,0,4380_7778208_3290403,4380_1072 -4380_78028,291,4380_68733,Kilfinane,96912-00013-1,0,4380_7778208_3290401,4380_1072 -4380_78028,289,4380_68734,Kilfinane,97008-00014-1,0,4380_7778208_3290403,4380_1072 -4380_78028,287,4380_68735,Kilfinane,97010-00012-1,0,4380_7778208_3290403,4380_1072 -4380_78028,292,4380_68736,Kilfinane,97005-00016-1,0,4380_7778208_3290403,4380_1072 -4380_78028,290,4380_68737,Kilfinane,97013-00015-1,0,4380_7778208_3290403,4380_1072 -4380_78028,294,4380_68738,Kilfinane,97011-00018-1,0,4380_7778208_3290403,4380_1072 -4380_78028,295,4380_68739,Kilfinane,97009-00019-1,0,4380_7778208_3290403,4380_1072 -4380_78028,293,4380_68740,Kilfinane,97007-00017-1,0,4380_7778208_3290403,4380_1072 -4380_78028,296,4380_68741,Kilfinane,96913-00021-1,0,4380_7778208_3290401,4380_1072 -4380_78028,297,4380_68743,Kilfinane,96989-00008-1,0,4380_7778208_3290402,4380_1072 -4380_78028,285,4380_68749,Limerick Bus Station,96924-00009-1,1,4380_7778208_3290402,4380_1073 -4380_77953,285,4380_6875,Kells,5661-00009-1,0,4380_7778208_1090107,4380_95 -4380_78028,288,4380_68751,Limerick Bus Station,96914-00011-1,1,4380_7778208_3290402,4380_1073 -4380_78028,286,4380_68752,Limerick Bus Station,96922-00010-1,1,4380_7778208_3290402,4380_1073 -4380_78028,291,4380_68753,Limerick Bus Station,96918-00013-1,1,4380_7778208_3290402,4380_1073 -4380_78028,289,4380_68754,Limerick Bus Station,96920-00014-1,1,4380_7778208_3290402,4380_1073 -4380_78028,287,4380_68755,Limerick Bus Station,96916-00012-1,1,4380_7778208_3290402,4380_1073 -4380_78028,292,4380_68756,Limerick Bus Station,96923-00016-1,1,4380_7778208_3290402,4380_1073 -4380_78028,290,4380_68757,Limerick Bus Station,96925-00015-1,1,4380_7778208_3290402,4380_1073 -4380_78028,294,4380_68758,Limerick Bus Station,96917-00018-1,1,4380_7778208_3290402,4380_1073 -4380_78028,295,4380_68759,Limerick Bus Station,96921-00019-1,1,4380_7778208_3290402,4380_1073 -4380_77953,286,4380_6876,Kells,5669-00010-1,0,4380_7778208_1090107,4380_95 -4380_78028,293,4380_68760,Limerick Bus Station,96915-00017-1,1,4380_7778208_3290402,4380_1073 -4380_78028,296,4380_68761,Limerick Bus Station,96919-00021-1,1,4380_7778208_3290402,4380_1073 -4380_78028,297,4380_68763,Limerick Bus Station,96824-00008-1,1,4380_7778208_3290401,4380_1073 -4380_78028,285,4380_68769,Limerick Bus Station,96833-00009-1,1,4380_7778208_3290401,4380_1073 -4380_77953,297,4380_6877,Kells,5579-00008-1,0,4380_7778208_1090105,4380_91 -4380_78028,288,4380_68771,Limerick Bus Station,96831-00011-1,1,4380_7778208_3290401,4380_1073 -4380_78028,286,4380_68772,Limerick Bus Station,96835-00010-1,1,4380_7778208_3290401,4380_1073 -4380_78028,291,4380_68773,Limerick Bus Station,96829-00013-1,1,4380_7778208_3290401,4380_1074 -4380_78028,289,4380_68774,Limerick Bus Station,96825-00014-1,1,4380_7778208_3290401,4380_1073 -4380_78028,287,4380_68775,Limerick Bus Station,96827-00012-1,1,4380_7778208_3290401,4380_1073 -4380_78028,292,4380_68776,Limerick Bus Station,96836-00016-1,1,4380_7778208_3290401,4380_1073 -4380_78028,290,4380_68777,Limerick Bus Station,96834-00015-1,1,4380_7778208_3290401,4380_1073 -4380_78028,294,4380_68778,Limerick Bus Station,96828-00018-1,1,4380_7778208_3290401,4380_1073 -4380_78028,295,4380_68779,Limerick Bus Station,96826-00019-1,1,4380_7778208_3290401,4380_1073 -4380_77953,288,4380_6878,Kells,5677-00011-1,0,4380_7778208_1090107,4380_95 -4380_78028,293,4380_68780,Limerick Bus Station,96832-00017-1,1,4380_7778208_3290401,4380_1073 -4380_78028,296,4380_68781,Limerick Bus Station,96830-00021-1,1,4380_7778208_3290401,4380_1074 -4380_78028,285,4380_68787,Limerick Bus Station,96948-00009-1,1,4380_7778208_3290402,4380_1073 -4380_78028,288,4380_68789,Limerick Bus Station,96940-00011-1,1,4380_7778208_3290402,4380_1073 -4380_77953,287,4380_6879,Kells,5685-00012-1,0,4380_7778208_1090107,4380_95 -4380_78028,286,4380_68790,Limerick Bus Station,96946-00010-1,1,4380_7778208_3290402,4380_1073 -4380_78028,291,4380_68791,Limerick Bus Station,96944-00013-1,1,4380_7778208_3290402,4380_1073 -4380_78028,289,4380_68792,Limerick Bus Station,96942-00014-1,1,4380_7778208_3290402,4380_1073 -4380_78028,287,4380_68793,Limerick Bus Station,96938-00012-1,1,4380_7778208_3290402,4380_1073 -4380_78028,292,4380_68794,Limerick Bus Station,96947-00016-1,1,4380_7778208_3290402,4380_1073 -4380_78028,290,4380_68795,Limerick Bus Station,96949-00015-1,1,4380_7778208_3290402,4380_1073 -4380_78028,294,4380_68796,Limerick Bus Station,96939-00018-1,1,4380_7778208_3290402,4380_1073 -4380_78028,295,4380_68797,Limerick Bus Station,96943-00019-1,1,4380_7778208_3290402,4380_1073 -4380_78028,293,4380_68798,Limerick Bus Station,96941-00017-1,1,4380_7778208_3290402,4380_1073 -4380_78028,296,4380_68799,Limerick Bus Station,96945-00021-1,1,4380_7778208_3290402,4380_1073 -4380_78113,289,4380_688,Dundalk,49880-00014-1,0,4380_7778208_1000905,4380_10 -4380_77953,289,4380_6880,Kells,5653-00014-1,0,4380_7778208_1090107,4380_95 -4380_78028,297,4380_68801,Limerick Bus Station,96848-00008-1,1,4380_7778208_3290401,4380_1073 -4380_78028,285,4380_68807,Limerick Bus Station,96857-00009-1,1,4380_7778208_3290401,4380_1073 -4380_78028,288,4380_68809,Limerick Bus Station,96851-00011-1,1,4380_7778208_3290401,4380_1073 -4380_77953,290,4380_6881,Kells,54974-00015-1,0,4380_7778208_1090107,4380_95 -4380_78028,286,4380_68810,Limerick Bus Station,96855-00010-1,1,4380_7778208_3290401,4380_1073 -4380_78028,291,4380_68811,Limerick Bus Station,96853-00013-1,1,4380_7778208_3290401,4380_1073 -4380_78028,289,4380_68812,Limerick Bus Station,96859-00014-1,1,4380_7778208_3290401,4380_1073 -4380_78028,287,4380_68813,Limerick Bus Station,96861-00012-1,1,4380_7778208_3290401,4380_1073 -4380_78028,292,4380_68814,Limerick Bus Station,96856-00016-1,1,4380_7778208_3290401,4380_1073 -4380_78028,290,4380_68815,Limerick Bus Station,96858-00015-1,1,4380_7778208_3290401,4380_1073 -4380_78028,294,4380_68816,Limerick Bus Station,96862-00018-1,1,4380_7778208_3290401,4380_1073 -4380_78028,295,4380_68817,Limerick Bus Station,96860-00019-1,1,4380_7778208_3290401,4380_1073 -4380_78028,293,4380_68818,Limerick Bus Station,96852-00017-1,1,4380_7778208_3290401,4380_1073 -4380_78028,296,4380_68819,Limerick Bus Station,96854-00021-1,1,4380_7778208_3290401,4380_1073 -4380_77953,291,4380_6882,Kells,5696-00013-1,0,4380_7778208_1090107,4380_99 -4380_78028,285,4380_68825,Limerick Bus Station,96968-00009-1,1,4380_7778208_3290402,4380_1073 -4380_78028,288,4380_68827,Limerick Bus Station,96970-00011-1,1,4380_7778208_3290402,4380_1073 -4380_78028,286,4380_68828,Limerick Bus Station,96966-00010-1,1,4380_7778208_3290402,4380_1073 -4380_78028,291,4380_68829,Limerick Bus Station,96972-00013-1,1,4380_7778208_3290402,4380_1073 -4380_77953,292,4380_6883,Kells,54979-00016-1,0,4380_7778208_1090107,4380_95 -4380_78028,289,4380_68830,Limerick Bus Station,96964-00014-1,1,4380_7778208_3290402,4380_1073 -4380_78028,287,4380_68831,Limerick Bus Station,96962-00012-1,1,4380_7778208_3290402,4380_1073 -4380_78028,292,4380_68832,Limerick Bus Station,96967-00016-1,1,4380_7778208_3290402,4380_1073 -4380_78028,290,4380_68833,Limerick Bus Station,96969-00015-1,1,4380_7778208_3290402,4380_1073 -4380_78028,294,4380_68834,Limerick Bus Station,96963-00018-1,1,4380_7778208_3290402,4380_1073 -4380_78028,295,4380_68835,Limerick Bus Station,96965-00019-1,1,4380_7778208_3290402,4380_1073 -4380_78028,293,4380_68836,Limerick Bus Station,96971-00017-1,1,4380_7778208_3290402,4380_1073 -4380_78028,296,4380_68837,Limerick Bus Station,96973-00021-1,1,4380_7778208_3290402,4380_1073 -4380_78028,297,4380_68839,Limerick Bus Station,96864-00008-1,1,4380_7778208_3290401,4380_1073 -4380_77953,293,4380_6884,Kells,54978-00017-1,0,4380_7778208_1090107,4380_95 -4380_78028,285,4380_68845,Limerick Bus Station,96878-00009-1,1,4380_7778208_3290401,4380_1073 -4380_78028,288,4380_68847,Limerick Bus Station,96888-00011-1,1,4380_7778208_3290401,4380_1073 -4380_78028,286,4380_68848,Limerick Bus Station,96882-00010-1,1,4380_7778208_3290401,4380_1073 -4380_78028,291,4380_68849,Limerick Bus Station,96886-00013-1,1,4380_7778208_3290401,4380_1073 -4380_77953,294,4380_6885,Kells,54975-00018-1,0,4380_7778208_1090107,4380_95 -4380_78028,289,4380_68850,Limerick Bus Station,96884-00014-1,1,4380_7778208_3290401,4380_1073 -4380_78028,287,4380_68851,Limerick Bus Station,96880-00012-1,1,4380_7778208_3290401,4380_1073 -4380_78028,292,4380_68852,Limerick Bus Station,96883-00016-1,1,4380_7778208_3290401,4380_1073 -4380_78028,290,4380_68853,Limerick Bus Station,96879-00015-1,1,4380_7778208_3290401,4380_1073 -4380_78028,294,4380_68854,Limerick Bus Station,96881-00018-1,1,4380_7778208_3290401,4380_1073 -4380_78028,295,4380_68855,Limerick Bus Station,96885-00019-1,1,4380_7778208_3290401,4380_1073 -4380_78028,293,4380_68856,Limerick Bus Station,96889-00017-1,1,4380_7778208_3290401,4380_1073 -4380_78028,296,4380_68857,Limerick Bus Station,96887-00021-1,1,4380_7778208_3290401,4380_1073 -4380_78028,297,4380_68859,Limerick Bus Station,96986-00008-1,1,4380_7778208_3290402,4380_1073 -4380_77953,295,4380_6886,Kells,54977-00019-1,0,4380_7778208_1090107,4380_95 -4380_78028,285,4380_68865,Limerick Bus Station,96994-00009-1,1,4380_7778208_3290403,4380_1073 -4380_78028,288,4380_68867,Limerick Bus Station,96990-00011-1,1,4380_7778208_3290403,4380_1073 -4380_78028,286,4380_68868,Limerick Bus Station,96998-00010-1,1,4380_7778208_3290403,4380_1073 -4380_78028,291,4380_68869,Limerick Bus Station,96890-00013-1,1,4380_7778208_3290401,4380_1073 -4380_77953,296,4380_6887,Kells,54976-00021-1,0,4380_7778208_1090107,4380_99 -4380_78028,289,4380_68870,Limerick Bus Station,96996-00014-1,1,4380_7778208_3290403,4380_1073 -4380_78028,287,4380_68871,Limerick Bus Station,96992-00012-1,1,4380_7778208_3290403,4380_1073 -4380_78028,292,4380_68872,Limerick Bus Station,96999-00016-1,1,4380_7778208_3290403,4380_1073 -4380_78028,290,4380_68873,Limerick Bus Station,96995-00015-1,1,4380_7778208_3290403,4380_1073 -4380_78028,294,4380_68874,Limerick Bus Station,96993-00018-1,1,4380_7778208_3290403,4380_1073 -4380_78028,295,4380_68875,Limerick Bus Station,96997-00019-1,1,4380_7778208_3290403,4380_1073 -4380_78028,293,4380_68876,Limerick Bus Station,96991-00017-1,1,4380_7778208_3290403,4380_1073 -4380_78028,296,4380_68877,Limerick Bus Station,96891-00021-1,1,4380_7778208_3290401,4380_1073 -4380_78028,285,4380_68883,Limerick Bus Station,96904-00009-1,1,4380_7778208_3290401,4380_1073 -4380_78028,288,4380_68885,Limerick Bus Station,96902-00011-1,1,4380_7778208_3290401,4380_1073 -4380_78028,286,4380_68886,Limerick Bus Station,96910-00010-1,1,4380_7778208_3290401,4380_1073 -4380_78028,291,4380_68887,Limerick Bus Station,97002-00013-1,1,4380_7778208_3290403,4380_1073 -4380_78028,289,4380_68888,Limerick Bus Station,96908-00014-1,1,4380_7778208_3290401,4380_1073 -4380_78028,287,4380_68889,Limerick Bus Station,96906-00012-1,1,4380_7778208_3290401,4380_1073 -4380_78028,292,4380_68890,Limerick Bus Station,96911-00016-1,1,4380_7778208_3290401,4380_1073 -4380_78028,290,4380_68891,Limerick Bus Station,96905-00015-1,1,4380_7778208_3290401,4380_1073 -4380_78028,294,4380_68892,Limerick Bus Station,96907-00018-1,1,4380_7778208_3290401,4380_1073 -4380_78028,295,4380_68893,Limerick Bus Station,96909-00019-1,1,4380_7778208_3290401,4380_1073 -4380_78028,293,4380_68894,Limerick Bus Station,96903-00017-1,1,4380_7778208_3290401,4380_1073 -4380_78028,296,4380_68895,Limerick Bus Station,97003-00021-1,1,4380_7778208_3290403,4380_1073 -4380_78028,297,4380_68897,Limerick Bus Station,96988-00008-1,1,4380_7778208_3290402,4380_1073 -4380_78113,290,4380_689,Dundalk,49883-00015-1,0,4380_7778208_1000905,4380_10 -4380_78029,297,4380_68904,Shannon Airport,97018-00008-1,0,4380_7778208_3300401,4380_1075 -4380_78029,285,4380_68905,Shannon Airport,97021-00009-1,0,4380_7778208_3300401,4380_1075 -4380_78029,288,4380_68907,Shannon Airport,97014-00011-1,0,4380_7778208_3300401,4380_1075 -4380_78029,286,4380_68908,Shannon Airport,97023-00010-1,0,4380_7778208_3300401,4380_1075 -4380_78029,291,4380_68909,Shannon Airport,97019-00013-1,0,4380_7778208_3300401,4380_1075 -4380_78029,289,4380_68910,Shannon Airport,97016-00014-1,0,4380_7778208_3300401,4380_1075 -4380_78029,287,4380_68911,Shannon Airport,97025-00012-1,0,4380_7778208_3300401,4380_1075 -4380_78029,292,4380_68912,Shannon Airport,97024-00016-1,0,4380_7778208_3300401,4380_1075 -4380_78029,290,4380_68913,Shannon Airport,97022-00015-1,0,4380_7778208_3300401,4380_1075 -4380_78029,294,4380_68914,Shannon Airport,97026-00018-1,0,4380_7778208_3300401,4380_1075 -4380_78029,295,4380_68915,Shannon Airport,97017-00019-1,0,4380_7778208_3300401,4380_1075 -4380_78029,293,4380_68916,Shannon Airport,97015-00017-1,0,4380_7778208_3300401,4380_1075 -4380_78029,296,4380_68917,Shannon Airport,97020-00021-1,0,4380_7778208_3300401,4380_1075 -4380_78029,297,4380_68924,Shannon Airport,97196-00008-1,0,4380_7778208_3300402,4380_1075 -4380_78029,285,4380_68925,Shannon Airport,97190-00009-1,0,4380_7778208_3300402,4380_1075 -4380_78029,288,4380_68927,Shannon Airport,97197-00011-1,0,4380_7778208_3300402,4380_1075 -4380_78029,286,4380_68928,Shannon Airport,97188-00010-1,0,4380_7778208_3300402,4380_1075 -4380_78029,291,4380_68929,Shannon Airport,97194-00013-1,0,4380_7778208_3300402,4380_1075 -4380_78029,289,4380_68930,Shannon Airport,97186-00014-1,0,4380_7778208_3300402,4380_1075 -4380_78029,287,4380_68931,Shannon Airport,97192-00012-1,0,4380_7778208_3300402,4380_1075 -4380_78029,292,4380_68932,Shannon Airport,97189-00016-1,0,4380_7778208_3300402,4380_1075 -4380_78029,290,4380_68933,Shannon Airport,97191-00015-1,0,4380_7778208_3300402,4380_1075 -4380_78029,294,4380_68934,Shannon Airport,97193-00018-1,0,4380_7778208_3300402,4380_1075 -4380_78029,295,4380_68935,Shannon Airport,97187-00019-1,0,4380_7778208_3300402,4380_1075 -4380_78029,293,4380_68936,Shannon Airport,97198-00017-1,0,4380_7778208_3300402,4380_1075 -4380_78029,296,4380_68937,Shannon Airport,97195-00021-1,0,4380_7778208_3300402,4380_1075 -4380_78029,285,4380_68943,Shannon Airport,97046-00009-1,0,4380_7778208_3300401,4380_1075 -4380_78029,288,4380_68944,Shannon Airport,97042-00011-1,0,4380_7778208_3300401,4380_1075 -4380_78029,286,4380_68945,Shannon Airport,97040-00010-1,0,4380_7778208_3300401,4380_1075 -4380_78029,289,4380_68946,Shannon Airport,97048-00014-1,0,4380_7778208_3300401,4380_1075 -4380_78029,287,4380_68947,Shannon Airport,97044-00012-1,0,4380_7778208_3300401,4380_1075 -4380_78029,292,4380_68948,Shannon Airport,97041-00016-1,0,4380_7778208_3300401,4380_1075 -4380_78029,290,4380_68949,Shannon Airport,97047-00015-1,0,4380_7778208_3300401,4380_1075 -4380_77953,285,4380_6895,Dunshaughlin,5827-00009-1,0,4380_7778208_1090110,4380_96 -4380_78029,294,4380_68950,Shannon Airport,97045-00018-1,0,4380_7778208_3300401,4380_1075 -4380_78029,295,4380_68951,Shannon Airport,97049-00019-1,0,4380_7778208_3300401,4380_1075 -4380_78029,293,4380_68952,Shannon Airport,97043-00017-1,0,4380_7778208_3300401,4380_1075 -4380_78029,297,4380_68954,Shannon Airport,97052-00008-1,0,4380_7778208_3300401,4380_1075 -4380_78029,291,4380_68956,Shannon Airport,97050-00013-1,0,4380_7778208_3300401,4380_1076 -4380_78029,296,4380_68957,Shannon Airport,97051-00021-1,0,4380_7778208_3300401,4380_1076 -4380_77953,286,4380_6896,Dunshaughlin,5835-00010-1,0,4380_7778208_1090110,4380_96 -4380_78029,285,4380_68963,Shannon Airport,97345-00009-1,0,4380_7778208_3300403,4380_1075 -4380_78029,288,4380_68964,Shannon Airport,97353-00011-1,0,4380_7778208_3300403,4380_1075 -4380_78029,286,4380_68965,Shannon Airport,97349-00010-1,0,4380_7778208_3300403,4380_1075 -4380_78029,289,4380_68966,Shannon Airport,97347-00014-1,0,4380_7778208_3300403,4380_1075 -4380_78029,287,4380_68967,Shannon Airport,97351-00012-1,0,4380_7778208_3300403,4380_1075 -4380_78029,292,4380_68968,Shannon Airport,97350-00016-1,0,4380_7778208_3300403,4380_1075 -4380_78029,290,4380_68969,Shannon Airport,97346-00015-1,0,4380_7778208_3300403,4380_1075 -4380_77953,297,4380_6897,Dunshaughlin,5295-00008-1,0,4380_7778208_1090101,4380_90 -4380_78029,294,4380_68970,Shannon Airport,97352-00018-1,0,4380_7778208_3300403,4380_1075 -4380_78029,295,4380_68971,Shannon Airport,97348-00019-1,0,4380_7778208_3300403,4380_1075 -4380_78029,293,4380_68972,Shannon Airport,97354-00017-1,0,4380_7778208_3300403,4380_1075 -4380_78029,285,4380_68978,Shannon Airport,97484-00009-1,0,4380_7778208_3300404,4380_1075 -4380_78029,288,4380_68979,Shannon Airport,97482-00011-1,0,4380_7778208_3300404,4380_1075 -4380_77953,288,4380_6898,Dunshaughlin,5843-00011-1,0,4380_7778208_1090110,4380_96 -4380_78029,286,4380_68980,Shannon Airport,97480-00010-1,0,4380_7778208_3300404,4380_1075 -4380_78029,289,4380_68981,Shannon Airport,97486-00014-1,0,4380_7778208_3300404,4380_1075 -4380_78029,287,4380_68982,Shannon Airport,97478-00012-1,0,4380_7778208_3300404,4380_1075 -4380_78029,292,4380_68983,Shannon Airport,97481-00016-1,0,4380_7778208_3300404,4380_1075 -4380_78029,290,4380_68984,Shannon Airport,97485-00015-1,0,4380_7778208_3300404,4380_1075 -4380_78029,294,4380_68985,Shannon Airport,97479-00018-1,0,4380_7778208_3300404,4380_1075 -4380_78029,295,4380_68986,Shannon Airport,97487-00019-1,0,4380_7778208_3300404,4380_1075 -4380_78029,293,4380_68987,Shannon Airport,97483-00017-1,0,4380_7778208_3300404,4380_1075 -4380_77953,287,4380_6899,Dunshaughlin,5851-00012-1,0,4380_7778208_1090110,4380_96 -4380_78029,297,4380_68994,Shannon Airport,97216-00008-1,0,4380_7778208_3300402,4380_1075 -4380_78029,285,4380_68995,Shannon Airport,97214-00009-1,0,4380_7778208_3300402,4380_1076 -4380_78029,288,4380_68997,Shannon Airport,97219-00011-1,0,4380_7778208_3300402,4380_1076 -4380_78029,286,4380_68998,Shannon Airport,97212-00010-1,0,4380_7778208_3300402,4380_1076 -4380_78029,291,4380_68999,Shannon Airport,97217-00013-1,0,4380_7778208_3300402,4380_1077 -4380_78113,291,4380_690,Dundalk,49874-00013-1,0,4380_7778208_1000905,4380_16 -4380_77953,289,4380_6900,Dunshaughlin,5819-00014-1,0,4380_7778208_1090110,4380_96 -4380_78029,289,4380_69000,Shannon Airport,97221-00014-1,0,4380_7778208_3300402,4380_1076 -4380_78029,287,4380_69001,Shannon Airport,97223-00012-1,0,4380_7778208_3300402,4380_1076 -4380_78029,292,4380_69002,Shannon Airport,97213-00016-1,0,4380_7778208_3300402,4380_1076 -4380_78029,290,4380_69003,Shannon Airport,97215-00015-1,0,4380_7778208_3300402,4380_1076 -4380_78029,294,4380_69004,Shannon Airport,97224-00018-1,0,4380_7778208_3300402,4380_1076 -4380_78029,295,4380_69005,Shannon Airport,97222-00019-1,0,4380_7778208_3300402,4380_1076 -4380_78029,293,4380_69006,Shannon Airport,97220-00017-1,0,4380_7778208_3300402,4380_1076 -4380_78029,296,4380_69007,Shannon Airport,97218-00021-1,0,4380_7778208_3300402,4380_1077 -4380_77953,290,4380_6901,Dunshaughlin,55102-00015-1,0,4380_7778208_1090110,4380_96 -4380_78029,297,4380_69014,Shannon Airport,97368-00008-1,0,4380_7778208_3300403,4380_1075 -4380_78029,285,4380_69015,Shannon Airport,97490-00009-1,0,4380_7778208_3300404,4380_1076 -4380_78029,288,4380_69017,Shannon Airport,97492-00011-1,0,4380_7778208_3300404,4380_1076 -4380_78029,286,4380_69018,Shannon Airport,97494-00010-1,0,4380_7778208_3300404,4380_1076 -4380_78029,291,4380_69019,Shannon Airport,97369-00013-1,0,4380_7778208_3300403,4380_1075 -4380_77953,291,4380_6902,Dunshaughlin,6992-00013-1,0,4380_7778208_1090905,4380_100 -4380_78029,289,4380_69020,Shannon Airport,97488-00014-1,0,4380_7778208_3300404,4380_1076 -4380_78029,287,4380_69021,Shannon Airport,97496-00012-1,0,4380_7778208_3300404,4380_1076 -4380_78029,292,4380_69022,Shannon Airport,97495-00016-1,0,4380_7778208_3300404,4380_1076 -4380_78029,290,4380_69023,Shannon Airport,97491-00015-1,0,4380_7778208_3300404,4380_1076 -4380_78029,294,4380_69024,Shannon Airport,97497-00018-1,0,4380_7778208_3300404,4380_1076 -4380_78029,295,4380_69025,Shannon Airport,97489-00019-1,0,4380_7778208_3300404,4380_1076 -4380_78029,293,4380_69026,Shannon Airport,97493-00017-1,0,4380_7778208_3300404,4380_1076 -4380_78029,296,4380_69027,Shannon Airport,97370-00021-1,0,4380_7778208_3300403,4380_1075 -4380_77953,292,4380_6903,Dunshaughlin,55100-00016-1,0,4380_7778208_1090110,4380_96 -4380_78029,297,4380_69034,Shannon Airport,97068-00008-1,0,4380_7778208_3300401,4380_1075 -4380_78029,285,4380_69035,Shannon Airport,97377-00009-1,0,4380_7778208_3300403,4380_1076 -4380_78029,288,4380_69037,Shannon Airport,97371-00011-1,0,4380_7778208_3300403,4380_1076 -4380_78029,286,4380_69038,Shannon Airport,97379-00010-1,0,4380_7778208_3300403,4380_1076 -4380_78029,291,4380_69039,Shannon Airport,97066-00013-1,0,4380_7778208_3300401,4380_1075 -4380_77953,293,4380_6904,Dunshaughlin,55099-00017-1,0,4380_7778208_1090110,4380_96 -4380_78029,289,4380_69040,Shannon Airport,97375-00014-1,0,4380_7778208_3300403,4380_1076 -4380_78029,287,4380_69041,Shannon Airport,97373-00012-1,0,4380_7778208_3300403,4380_1076 -4380_78029,292,4380_69042,Shannon Airport,97380-00016-1,0,4380_7778208_3300403,4380_1076 -4380_78029,290,4380_69043,Shannon Airport,97378-00015-1,0,4380_7778208_3300403,4380_1076 -4380_78029,294,4380_69044,Shannon Airport,97374-00018-1,0,4380_7778208_3300403,4380_1076 -4380_78029,295,4380_69045,Shannon Airport,97376-00019-1,0,4380_7778208_3300403,4380_1076 -4380_78029,293,4380_69046,Shannon Airport,97372-00017-1,0,4380_7778208_3300403,4380_1076 -4380_78029,296,4380_69047,Shannon Airport,97067-00021-1,0,4380_7778208_3300401,4380_1075 -4380_77953,294,4380_6905,Dunshaughlin,55098-00018-1,0,4380_7778208_1090110,4380_96 -4380_78029,297,4380_69054,Shannon Airport,97244-00008-1,0,4380_7778208_3300402,4380_1075 -4380_78029,285,4380_69055,Shannon Airport,97247-00009-1,0,4380_7778208_3300402,4380_1076 -4380_78029,288,4380_69057,Shannon Airport,97249-00011-1,0,4380_7778208_3300402,4380_1076 -4380_78029,286,4380_69058,Shannon Airport,97238-00010-1,0,4380_7778208_3300402,4380_1076 -4380_78029,291,4380_69059,Shannon Airport,97245-00013-1,0,4380_7778208_3300402,4380_1077 -4380_77953,295,4380_6906,Dunshaughlin,55101-00019-1,0,4380_7778208_1090110,4380_96 -4380_78029,289,4380_69060,Shannon Airport,97240-00014-1,0,4380_7778208_3300402,4380_1076 -4380_78029,287,4380_69061,Shannon Airport,97242-00012-1,0,4380_7778208_3300402,4380_1076 -4380_78029,292,4380_69062,Shannon Airport,97239-00016-1,0,4380_7778208_3300402,4380_1076 -4380_78029,290,4380_69063,Shannon Airport,97248-00015-1,0,4380_7778208_3300402,4380_1076 -4380_78029,294,4380_69064,Shannon Airport,97243-00018-1,0,4380_7778208_3300402,4380_1076 -4380_78029,295,4380_69065,Shannon Airport,97241-00019-1,0,4380_7778208_3300402,4380_1076 -4380_78029,293,4380_69066,Shannon Airport,97250-00017-1,0,4380_7778208_3300402,4380_1076 -4380_78029,296,4380_69067,Shannon Airport,97246-00021-1,0,4380_7778208_3300402,4380_1077 -4380_77953,296,4380_6907,Dunshaughlin,55458-00021-1,0,4380_7778208_1090905,4380_100 -4380_78029,297,4380_69074,Shannon Airport,97394-00008-1,0,4380_7778208_3300403,4380_1075 -4380_78029,285,4380_69075,Shannon Airport,97076-00009-1,0,4380_7778208_3300401,4380_1076 -4380_78029,288,4380_69077,Shannon Airport,97078-00011-1,0,4380_7778208_3300401,4380_1076 -4380_78029,286,4380_69078,Shannon Airport,97072-00010-1,0,4380_7778208_3300401,4380_1076 -4380_78029,291,4380_69079,Shannon Airport,97395-00013-1,0,4380_7778208_3300403,4380_1077 -4380_78029,289,4380_69080,Shannon Airport,97080-00014-1,0,4380_7778208_3300401,4380_1076 -4380_78029,287,4380_69081,Shannon Airport,97074-00012-1,0,4380_7778208_3300401,4380_1076 -4380_78029,292,4380_69082,Shannon Airport,97073-00016-1,0,4380_7778208_3300401,4380_1076 -4380_78029,290,4380_69083,Shannon Airport,97077-00015-1,0,4380_7778208_3300401,4380_1076 -4380_78029,294,4380_69084,Shannon Airport,97075-00018-1,0,4380_7778208_3300401,4380_1076 -4380_78029,295,4380_69085,Shannon Airport,97081-00019-1,0,4380_7778208_3300401,4380_1076 -4380_78029,293,4380_69086,Shannon Airport,97079-00017-1,0,4380_7778208_3300401,4380_1076 -4380_78029,296,4380_69087,Shannon Airport,97396-00021-1,0,4380_7778208_3300403,4380_1077 -4380_78029,297,4380_69094,Shannon Airport,97084-00008-1,0,4380_7778208_3300401,4380_1075 -4380_78029,285,4380_69095,Shannon Airport,97397-00009-1,0,4380_7778208_3300403,4380_1076 -4380_78029,288,4380_69097,Shannon Airport,97403-00011-1,0,4380_7778208_3300403,4380_1076 -4380_78029,286,4380_69098,Shannon Airport,97405-00010-1,0,4380_7778208_3300403,4380_1076 -4380_78029,291,4380_69099,Shannon Airport,97082-00013-1,0,4380_7778208_3300401,4380_1077 -4380_78113,292,4380_691,Dundalk,49885-00016-1,0,4380_7778208_1000905,4380_10 -4380_78029,289,4380_69100,Shannon Airport,97401-00014-1,0,4380_7778208_3300403,4380_1076 -4380_78029,287,4380_69101,Shannon Airport,97399-00012-1,0,4380_7778208_3300403,4380_1076 -4380_78029,292,4380_69102,Shannon Airport,97406-00016-1,0,4380_7778208_3300403,4380_1076 -4380_78029,290,4380_69103,Shannon Airport,97398-00015-1,0,4380_7778208_3300403,4380_1076 -4380_78029,294,4380_69104,Shannon Airport,97400-00018-1,0,4380_7778208_3300403,4380_1076 -4380_78029,295,4380_69105,Shannon Airport,97402-00019-1,0,4380_7778208_3300403,4380_1076 -4380_78029,293,4380_69106,Shannon Airport,97404-00017-1,0,4380_7778208_3300403,4380_1076 -4380_78029,296,4380_69107,Shannon Airport,97083-00021-1,0,4380_7778208_3300401,4380_1077 -4380_78029,285,4380_69113,Shannon Airport,97266-00009-1,0,4380_7778208_3300402,4380_1075 -4380_78029,288,4380_69114,Shannon Airport,97268-00011-1,0,4380_7778208_3300402,4380_1075 -4380_78029,286,4380_69115,Shannon Airport,97264-00010-1,0,4380_7778208_3300402,4380_1075 -4380_78029,289,4380_69116,Shannon Airport,97272-00014-1,0,4380_7778208_3300402,4380_1075 -4380_78029,287,4380_69117,Shannon Airport,97270-00012-1,0,4380_7778208_3300402,4380_1075 -4380_78029,292,4380_69118,Shannon Airport,97265-00016-1,0,4380_7778208_3300402,4380_1075 -4380_78029,290,4380_69119,Shannon Airport,97267-00015-1,0,4380_7778208_3300402,4380_1075 -4380_78029,294,4380_69120,Shannon Airport,97271-00018-1,0,4380_7778208_3300402,4380_1075 -4380_78029,295,4380_69121,Shannon Airport,97273-00019-1,0,4380_7778208_3300402,4380_1075 -4380_78029,293,4380_69122,Shannon Airport,97269-00017-1,0,4380_7778208_3300402,4380_1075 -4380_78029,297,4380_69124,Shannon Airport,97274-00008-1,0,4380_7778208_3300402,4380_1075 -4380_78029,291,4380_69126,Shannon Airport,97275-00013-1,0,4380_7778208_3300402,4380_1076 -4380_78029,296,4380_69127,Shannon Airport,97276-00021-1,0,4380_7778208_3300402,4380_1076 -4380_78029,285,4380_69133,Shannon Airport,97102-00009-1,0,4380_7778208_3300401,4380_1075 -4380_78029,288,4380_69134,Shannon Airport,97106-00011-1,0,4380_7778208_3300401,4380_1075 -4380_78029,286,4380_69135,Shannon Airport,97104-00010-1,0,4380_7778208_3300401,4380_1075 -4380_78029,289,4380_69136,Shannon Airport,97100-00014-1,0,4380_7778208_3300401,4380_1075 -4380_78029,287,4380_69137,Shannon Airport,97098-00012-1,0,4380_7778208_3300401,4380_1075 -4380_78029,292,4380_69138,Shannon Airport,97105-00016-1,0,4380_7778208_3300401,4380_1075 -4380_78029,290,4380_69139,Shannon Airport,97103-00015-1,0,4380_7778208_3300401,4380_1075 -4380_78029,294,4380_69140,Shannon Airport,97099-00018-1,0,4380_7778208_3300401,4380_1075 -4380_78029,295,4380_69141,Shannon Airport,97101-00019-1,0,4380_7778208_3300401,4380_1075 -4380_78029,293,4380_69142,Shannon Airport,97107-00017-1,0,4380_7778208_3300401,4380_1075 -4380_78029,297,4380_69144,Shannon Airport,97422-00008-1,0,4380_7778208_3300403,4380_1075 -4380_78029,291,4380_69146,Shannon Airport,97420-00013-1,0,4380_7778208_3300403,4380_1076 -4380_78029,296,4380_69147,Shannon Airport,97421-00021-1,0,4380_7778208_3300403,4380_1076 -4380_77953,285,4380_6915,Kells,5723-00009-1,0,4380_7778208_1090108,4380_95 -4380_78029,285,4380_69153,Shannon Airport,97425-00009-1,0,4380_7778208_3300403,4380_1075 -4380_78029,288,4380_69154,Shannon Airport,97427-00011-1,0,4380_7778208_3300403,4380_1075 -4380_78029,286,4380_69155,Shannon Airport,97423-00010-1,0,4380_7778208_3300403,4380_1075 -4380_78029,289,4380_69156,Shannon Airport,97431-00014-1,0,4380_7778208_3300403,4380_1075 -4380_78029,287,4380_69157,Shannon Airport,97429-00012-1,0,4380_7778208_3300403,4380_1075 -4380_78029,292,4380_69158,Shannon Airport,97424-00016-1,0,4380_7778208_3300403,4380_1075 -4380_78029,290,4380_69159,Shannon Airport,97426-00015-1,0,4380_7778208_3300403,4380_1075 -4380_77953,286,4380_6916,Kells,5731-00010-1,0,4380_7778208_1090108,4380_95 -4380_78029,294,4380_69160,Shannon Airport,97430-00018-1,0,4380_7778208_3300403,4380_1075 -4380_78029,295,4380_69161,Shannon Airport,97432-00019-1,0,4380_7778208_3300403,4380_1075 -4380_78029,293,4380_69162,Shannon Airport,97428-00017-1,0,4380_7778208_3300403,4380_1075 -4380_78029,297,4380_69164,Shannon Airport,97108-00008-1,0,4380_7778208_3300401,4380_1075 -4380_78029,291,4380_69166,Shannon Airport,97109-00013-1,0,4380_7778208_3300401,4380_1076 -4380_78029,296,4380_69167,Shannon Airport,97110-00021-1,0,4380_7778208_3300401,4380_1076 -4380_77953,297,4380_6917,Kells,5767-00008-1,0,4380_7778208_1090108,4380_91 -4380_78029,285,4380_69173,Shannon Airport,97292-00009-1,0,4380_7778208_3300402,4380_1075 -4380_78029,288,4380_69174,Shannon Airport,97296-00011-1,0,4380_7778208_3300402,4380_1075 -4380_78029,286,4380_69175,Shannon Airport,97298-00010-1,0,4380_7778208_3300402,4380_1075 -4380_78029,289,4380_69176,Shannon Airport,97290-00014-1,0,4380_7778208_3300402,4380_1075 -4380_78029,287,4380_69177,Shannon Airport,97294-00012-1,0,4380_7778208_3300402,4380_1075 -4380_78029,292,4380_69178,Shannon Airport,97299-00016-1,0,4380_7778208_3300402,4380_1075 -4380_78029,290,4380_69179,Shannon Airport,97293-00015-1,0,4380_7778208_3300402,4380_1075 -4380_77953,288,4380_6918,Kells,5739-00011-1,0,4380_7778208_1090108,4380_95 -4380_78029,294,4380_69180,Shannon Airport,97295-00018-1,0,4380_7778208_3300402,4380_1075 -4380_78029,295,4380_69181,Shannon Airport,97291-00019-1,0,4380_7778208_3300402,4380_1075 -4380_78029,293,4380_69182,Shannon Airport,97297-00017-1,0,4380_7778208_3300402,4380_1075 -4380_78029,297,4380_69184,Shannon Airport,97302-00008-1,0,4380_7778208_3300402,4380_1075 -4380_78029,291,4380_69186,Shannon Airport,97300-00013-1,0,4380_7778208_3300402,4380_1075 -4380_78029,296,4380_69187,Shannon Airport,97301-00021-1,0,4380_7778208_3300402,4380_1075 -4380_77953,287,4380_6919,Kells,5747-00012-1,0,4380_7778208_1090108,4380_95 -4380_78029,285,4380_69193,Shannon Airport,97124-00009-1,0,4380_7778208_3300401,4380_1075 -4380_78029,288,4380_69194,Shannon Airport,97130-00011-1,0,4380_7778208_3300401,4380_1075 -4380_78029,286,4380_69195,Shannon Airport,97126-00010-1,0,4380_7778208_3300401,4380_1075 -4380_78029,289,4380_69196,Shannon Airport,97132-00014-1,0,4380_7778208_3300401,4380_1075 -4380_78029,287,4380_69197,Shannon Airport,97128-00012-1,0,4380_7778208_3300401,4380_1075 -4380_78029,292,4380_69198,Shannon Airport,97127-00016-1,0,4380_7778208_3300401,4380_1075 -4380_78029,290,4380_69199,Shannon Airport,97125-00015-1,0,4380_7778208_3300401,4380_1075 -4380_78113,293,4380_692,Dundalk,49877-00017-1,0,4380_7778208_1000905,4380_10 -4380_77953,289,4380_6920,Kells,5715-00014-1,0,4380_7778208_1090108,4380_95 -4380_78029,294,4380_69200,Shannon Airport,97129-00018-1,0,4380_7778208_3300401,4380_1075 -4380_78029,295,4380_69201,Shannon Airport,97133-00019-1,0,4380_7778208_3300401,4380_1075 -4380_78029,293,4380_69202,Shannon Airport,97131-00017-1,0,4380_7778208_3300401,4380_1075 -4380_78029,297,4380_69204,Shannon Airport,97446-00008-1,0,4380_7778208_3300403,4380_1075 -4380_78029,291,4380_69206,Shannon Airport,97447-00013-1,0,4380_7778208_3300403,4380_1076 -4380_78029,296,4380_69207,Shannon Airport,97448-00021-1,0,4380_7778208_3300403,4380_1076 -4380_77953,290,4380_6921,Kells,55027-00015-1,0,4380_7778208_1090108,4380_95 -4380_78029,285,4380_69213,Shannon Airport,97455-00009-1,0,4380_7778208_3300403,4380_1075 -4380_78029,288,4380_69214,Shannon Airport,97449-00011-1,0,4380_7778208_3300403,4380_1075 -4380_78029,286,4380_69215,Shannon Airport,97451-00010-1,0,4380_7778208_3300403,4380_1075 -4380_78029,289,4380_69216,Shannon Airport,97457-00014-1,0,4380_7778208_3300403,4380_1075 -4380_78029,287,4380_69217,Shannon Airport,97453-00012-1,0,4380_7778208_3300403,4380_1075 -4380_78029,292,4380_69218,Shannon Airport,97452-00016-1,0,4380_7778208_3300403,4380_1075 -4380_78029,290,4380_69219,Shannon Airport,97456-00015-1,0,4380_7778208_3300403,4380_1075 -4380_77953,291,4380_6922,Kells,5424-00013-1,0,4380_7778208_1090103,4380_99 -4380_78029,294,4380_69220,Shannon Airport,97454-00018-1,0,4380_7778208_3300403,4380_1075 -4380_78029,295,4380_69221,Shannon Airport,97458-00019-1,0,4380_7778208_3300403,4380_1075 -4380_78029,293,4380_69222,Shannon Airport,97450-00017-1,0,4380_7778208_3300403,4380_1075 -4380_78029,297,4380_69224,Shannon Airport,97134-00008-1,0,4380_7778208_3300401,4380_1075 -4380_78029,291,4380_69226,Shannon Airport,97135-00013-1,0,4380_7778208_3300401,4380_1075 -4380_78029,296,4380_69227,Shannon Airport,97136-00021-1,0,4380_7778208_3300401,4380_1075 -4380_77953,292,4380_6923,Kells,55023-00016-1,0,4380_7778208_1090108,4380_95 -4380_78029,285,4380_69233,Shannon Airport,97532-00009-1,0,4380_7778208_3300404,4380_1075 -4380_78029,288,4380_69234,Shannon Airport,97536-00011-1,0,4380_7778208_3300404,4380_1075 -4380_78029,286,4380_69235,Shannon Airport,97528-00010-1,0,4380_7778208_3300404,4380_1075 -4380_78029,289,4380_69236,Shannon Airport,97534-00014-1,0,4380_7778208_3300404,4380_1075 -4380_78029,287,4380_69237,Shannon Airport,97530-00012-1,0,4380_7778208_3300404,4380_1075 -4380_78029,292,4380_69238,Shannon Airport,97529-00016-1,0,4380_7778208_3300404,4380_1075 -4380_78029,290,4380_69239,Shannon Airport,97533-00015-1,0,4380_7778208_3300404,4380_1075 -4380_77953,293,4380_6924,Kells,55026-00017-1,0,4380_7778208_1090108,4380_95 -4380_78029,294,4380_69240,Shannon Airport,97531-00018-1,0,4380_7778208_3300404,4380_1075 -4380_78029,295,4380_69241,Shannon Airport,97535-00019-1,0,4380_7778208_3300404,4380_1075 -4380_78029,293,4380_69242,Shannon Airport,97537-00017-1,0,4380_7778208_3300404,4380_1075 -4380_78029,297,4380_69244,Shannon Airport,97318-00008-1,0,4380_7778208_3300402,4380_1075 -4380_78029,291,4380_69246,Shannon Airport,97316-00013-1,0,4380_7778208_3300402,4380_1075 -4380_78029,296,4380_69247,Shannon Airport,97317-00021-1,0,4380_7778208_3300402,4380_1075 -4380_77953,294,4380_6925,Kells,55024-00018-1,0,4380_7778208_1090108,4380_95 -4380_78029,297,4380_69254,Shannon Airport,97472-00008-1,0,4380_7778208_3300403,4380_1075 -4380_78029,285,4380_69255,Shannon Airport,97325-00009-1,0,4380_7778208_3300402,4380_1075 -4380_78029,288,4380_69257,Shannon Airport,97323-00011-1,0,4380_7778208_3300402,4380_1075 -4380_78029,286,4380_69258,Shannon Airport,97321-00010-1,0,4380_7778208_3300402,4380_1075 -4380_78029,291,4380_69259,Shannon Airport,97473-00013-1,0,4380_7778208_3300403,4380_1075 -4380_77953,295,4380_6926,Kells,55025-00019-1,0,4380_7778208_1090108,4380_95 -4380_78029,289,4380_69260,Shannon Airport,97319-00014-1,0,4380_7778208_3300402,4380_1075 -4380_78029,287,4380_69261,Shannon Airport,97327-00012-1,0,4380_7778208_3300402,4380_1075 -4380_78029,292,4380_69262,Shannon Airport,97322-00016-1,0,4380_7778208_3300402,4380_1075 -4380_78029,290,4380_69263,Shannon Airport,97326-00015-1,0,4380_7778208_3300402,4380_1075 -4380_78029,294,4380_69264,Shannon Airport,97328-00018-1,0,4380_7778208_3300402,4380_1075 -4380_78029,295,4380_69265,Shannon Airport,97320-00019-1,0,4380_7778208_3300402,4380_1075 -4380_78029,293,4380_69266,Shannon Airport,97324-00017-1,0,4380_7778208_3300402,4380_1075 -4380_78029,296,4380_69267,Shannon Airport,97474-00021-1,0,4380_7778208_3300403,4380_1075 -4380_77953,296,4380_6927,Kells,54775-00021-1,0,4380_7778208_1090103,4380_99 -4380_78029,297,4380_69274,Shannon Airport,97162-00008-1,0,4380_7778208_3300401,4380_1075 -4380_78029,285,4380_69275,Shannon Airport,97152-00009-1,0,4380_7778208_3300401,4380_1075 -4380_78029,288,4380_69277,Shannon Airport,97154-00011-1,0,4380_7778208_3300401,4380_1075 -4380_78029,286,4380_69278,Shannon Airport,97150-00010-1,0,4380_7778208_3300401,4380_1075 -4380_78029,291,4380_69279,Shannon Airport,97156-00013-1,0,4380_7778208_3300401,4380_1076 -4380_78029,289,4380_69280,Shannon Airport,97158-00014-1,0,4380_7778208_3300401,4380_1075 -4380_78029,287,4380_69281,Shannon Airport,97160-00012-1,0,4380_7778208_3300401,4380_1075 -4380_78029,292,4380_69282,Shannon Airport,97151-00016-1,0,4380_7778208_3300401,4380_1075 -4380_78029,290,4380_69283,Shannon Airport,97153-00015-1,0,4380_7778208_3300401,4380_1075 -4380_78029,294,4380_69284,Shannon Airport,97161-00018-1,0,4380_7778208_3300401,4380_1075 -4380_78029,295,4380_69285,Shannon Airport,97159-00019-1,0,4380_7778208_3300401,4380_1075 -4380_78029,293,4380_69286,Shannon Airport,97155-00017-1,0,4380_7778208_3300401,4380_1075 -4380_78029,296,4380_69287,Shannon Airport,97157-00021-1,0,4380_7778208_3300401,4380_1076 -4380_78029,297,4380_69294,Shannon Airport,97344-00008-1,0,4380_7778208_3300402,4380_1075 -4380_78029,285,4380_69295,Shannon Airport,97552-00009-1,0,4380_7778208_3300404,4380_1075 -4380_78029,288,4380_69297,Shannon Airport,97556-00011-1,0,4380_7778208_3300404,4380_1075 -4380_78029,286,4380_69298,Shannon Airport,97548-00010-1,0,4380_7778208_3300404,4380_1075 -4380_78029,291,4380_69299,Shannon Airport,97342-00013-1,0,4380_7778208_3300402,4380_1076 -4380_78113,294,4380_693,Dundalk,49879-00018-1,0,4380_7778208_1000905,4380_10 -4380_78029,289,4380_69300,Shannon Airport,97554-00014-1,0,4380_7778208_3300404,4380_1075 -4380_78029,287,4380_69301,Shannon Airport,97550-00012-1,0,4380_7778208_3300404,4380_1075 -4380_78029,292,4380_69302,Shannon Airport,97549-00016-1,0,4380_7778208_3300404,4380_1075 -4380_78029,290,4380_69303,Shannon Airport,97553-00015-1,0,4380_7778208_3300404,4380_1075 -4380_78029,294,4380_69304,Shannon Airport,97551-00018-1,0,4380_7778208_3300404,4380_1075 -4380_78029,295,4380_69305,Shannon Airport,97555-00019-1,0,4380_7778208_3300404,4380_1075 -4380_78029,293,4380_69306,Shannon Airport,97557-00017-1,0,4380_7778208_3300404,4380_1075 -4380_78029,296,4380_69307,Shannon Airport,97343-00021-1,0,4380_7778208_3300402,4380_1076 -4380_78029,297,4380_69309,Ennis,97027-00008-1,1,4380_7778208_3300401,4380_1078 -4380_78029,291,4380_69311,Ennis,97028-00013-1,1,4380_7778208_3300401,4380_1078 -4380_78029,296,4380_69312,Ennis,97029-00021-1,1,4380_7778208_3300401,4380_1078 -4380_78029,285,4380_69318,Ennis,97038-00009-1,1,4380_7778208_3300401,4380_1078 -4380_78029,288,4380_69319,Ennis,97034-00011-1,1,4380_7778208_3300401,4380_1078 -4380_78029,286,4380_69320,Ennis,97030-00010-1,1,4380_7778208_3300401,4380_1078 -4380_78029,289,4380_69321,Ennis,97036-00014-1,1,4380_7778208_3300401,4380_1078 -4380_78029,287,4380_69322,Ennis,97032-00012-1,1,4380_7778208_3300401,4380_1078 -4380_78029,292,4380_69323,Ennis,97031-00016-1,1,4380_7778208_3300401,4380_1078 -4380_78029,290,4380_69324,Ennis,97039-00015-1,1,4380_7778208_3300401,4380_1078 -4380_78029,294,4380_69325,Ennis,97033-00018-1,1,4380_7778208_3300401,4380_1078 -4380_78029,295,4380_69326,Ennis,97037-00019-1,1,4380_7778208_3300401,4380_1078 -4380_78029,293,4380_69327,Ennis,97035-00017-1,1,4380_7778208_3300401,4380_1078 -4380_77953,285,4380_6933,Kells,5969-00009-1,0,4380_7778208_1090113,4380_98 -4380_78029,297,4380_69334,Ennis,97209-00008-1,1,4380_7778208_3300402,4380_1078 -4380_78029,285,4380_69335,Ennis,97210-00009-1,1,4380_7778208_3300402,4380_1079 -4380_78029,288,4380_69337,Ennis,97201-00011-1,1,4380_7778208_3300402,4380_1079 -4380_78029,286,4380_69338,Ennis,97203-00010-1,1,4380_7778208_3300402,4380_1079 -4380_78029,291,4380_69339,Ennis,97207-00013-1,1,4380_7778208_3300402,4380_1078 -4380_77953,286,4380_6934,Kells,5971-00010-1,0,4380_7778208_1090113,4380_98 -4380_78029,289,4380_69340,Ennis,97199-00014-1,1,4380_7778208_3300402,4380_1079 -4380_78029,287,4380_69341,Ennis,97205-00012-1,1,4380_7778208_3300402,4380_1079 -4380_78029,292,4380_69342,Ennis,97204-00016-1,1,4380_7778208_3300402,4380_1079 -4380_78029,290,4380_69343,Ennis,97211-00015-1,1,4380_7778208_3300402,4380_1079 -4380_78029,294,4380_69344,Ennis,97206-00018-1,1,4380_7778208_3300402,4380_1079 -4380_78029,295,4380_69345,Ennis,97200-00019-1,1,4380_7778208_3300402,4380_1079 -4380_78029,293,4380_69346,Ennis,97202-00017-1,1,4380_7778208_3300402,4380_1079 -4380_78029,296,4380_69347,Ennis,97208-00021-1,1,4380_7778208_3300402,4380_1078 -4380_77953,288,4380_6935,Kells,5973-00011-1,0,4380_7778208_1090113,4380_98 -4380_78029,297,4380_69354,Ennis,97357-00008-1,1,4380_7778208_3300403,4380_1078 -4380_78029,285,4380_69355,Ennis,97061-00009-1,1,4380_7778208_3300401,4380_1079 -4380_78029,288,4380_69357,Ennis,97059-00011-1,1,4380_7778208_3300401,4380_1079 -4380_78029,286,4380_69358,Ennis,97055-00010-1,1,4380_7778208_3300401,4380_1079 -4380_78029,291,4380_69359,Ennis,97355-00013-1,1,4380_7778208_3300403,4380_1078 -4380_77953,287,4380_6936,Kells,5975-00012-1,0,4380_7778208_1090113,4380_98 -4380_78029,289,4380_69360,Ennis,97053-00014-1,1,4380_7778208_3300401,4380_1079 -4380_78029,287,4380_69361,Ennis,97057-00012-1,1,4380_7778208_3300401,4380_1079 -4380_78029,292,4380_69362,Ennis,97056-00016-1,1,4380_7778208_3300401,4380_1079 -4380_78029,290,4380_69363,Ennis,97062-00015-1,1,4380_7778208_3300401,4380_1079 -4380_78029,294,4380_69364,Ennis,97058-00018-1,1,4380_7778208_3300401,4380_1079 -4380_78029,295,4380_69365,Ennis,97054-00019-1,1,4380_7778208_3300401,4380_1079 -4380_78029,293,4380_69366,Ennis,97060-00017-1,1,4380_7778208_3300401,4380_1079 -4380_78029,296,4380_69367,Ennis,97356-00021-1,1,4380_7778208_3300403,4380_1078 -4380_77953,289,4380_6937,Kells,5967-00014-1,0,4380_7778208_1090113,4380_98 -4380_78029,297,4380_69374,Ennis,97065-00008-1,1,4380_7778208_3300401,4380_1078 -4380_78029,285,4380_69375,Ennis,97364-00009-1,1,4380_7778208_3300403,4380_1079 -4380_78029,288,4380_69377,Ennis,97358-00011-1,1,4380_7778208_3300403,4380_1079 -4380_78029,286,4380_69378,Ennis,97366-00010-1,1,4380_7778208_3300403,4380_1079 -4380_78029,291,4380_69379,Ennis,97063-00013-1,1,4380_7778208_3300401,4380_1078 -4380_77953,290,4380_6938,Kells,55202-00015-1,0,4380_7778208_1090113,4380_98 -4380_78029,289,4380_69380,Ennis,97360-00014-1,1,4380_7778208_3300403,4380_1079 -4380_78029,287,4380_69381,Ennis,97362-00012-1,1,4380_7778208_3300403,4380_1079 -4380_78029,292,4380_69382,Ennis,97367-00016-1,1,4380_7778208_3300403,4380_1079 -4380_78029,290,4380_69383,Ennis,97365-00015-1,1,4380_7778208_3300403,4380_1079 -4380_78029,294,4380_69384,Ennis,97363-00018-1,1,4380_7778208_3300403,4380_1079 -4380_78029,295,4380_69385,Ennis,97361-00019-1,1,4380_7778208_3300403,4380_1079 -4380_78029,293,4380_69386,Ennis,97359-00017-1,1,4380_7778208_3300403,4380_1079 -4380_78029,296,4380_69387,Ennis,97064-00021-1,1,4380_7778208_3300401,4380_1078 -4380_77953,292,4380_6939,Kells,55200-00016-1,0,4380_7778208_1090113,4380_98 -4380_78029,297,4380_69394,Ennis,97233-00008-1,1,4380_7778208_3300402,4380_1078 -4380_78029,285,4380_69395,Ennis,97234-00009-1,1,4380_7778208_3300402,4380_1079 -4380_78029,288,4380_69397,Ennis,97227-00011-1,1,4380_7778208_3300402,4380_1079 -4380_78029,286,4380_69398,Ennis,97231-00010-1,1,4380_7778208_3300402,4380_1079 -4380_78029,291,4380_69399,Ennis,97229-00013-1,1,4380_7778208_3300402,4380_1078 -4380_78113,295,4380_694,Dundalk,49881-00019-1,0,4380_7778208_1000905,4380_10 -4380_77953,293,4380_6940,Kells,55203-00017-1,0,4380_7778208_1090113,4380_98 -4380_78029,289,4380_69400,Ennis,97236-00014-1,1,4380_7778208_3300402,4380_1079 -4380_78029,287,4380_69401,Ennis,97225-00012-1,1,4380_7778208_3300402,4380_1079 -4380_78029,292,4380_69402,Ennis,97232-00016-1,1,4380_7778208_3300402,4380_1079 -4380_78029,290,4380_69403,Ennis,97235-00015-1,1,4380_7778208_3300402,4380_1079 -4380_78029,294,4380_69404,Ennis,97226-00018-1,1,4380_7778208_3300402,4380_1079 -4380_78029,295,4380_69405,Ennis,97237-00019-1,1,4380_7778208_3300402,4380_1079 -4380_78029,293,4380_69406,Ennis,97228-00017-1,1,4380_7778208_3300402,4380_1079 -4380_78029,296,4380_69407,Ennis,97230-00021-1,1,4380_7778208_3300402,4380_1078 -4380_77953,294,4380_6941,Kells,55201-00018-1,0,4380_7778208_1090113,4380_98 -4380_78029,297,4380_69414,Ennis,97381-00008-1,1,4380_7778208_3300403,4380_1078 -4380_78029,285,4380_69415,Ennis,97504-00009-1,1,4380_7778208_3300404,4380_1079 -4380_78029,288,4380_69417,Ennis,97498-00011-1,1,4380_7778208_3300404,4380_1079 -4380_78029,286,4380_69418,Ennis,97502-00010-1,1,4380_7778208_3300404,4380_1079 -4380_78029,291,4380_69419,Ennis,97382-00013-1,1,4380_7778208_3300403,4380_1078 -4380_77953,295,4380_6942,Kells,55204-00019-1,0,4380_7778208_1090113,4380_98 -4380_78029,289,4380_69420,Ennis,97506-00014-1,1,4380_7778208_3300404,4380_1079 -4380_78029,287,4380_69421,Ennis,97500-00012-1,1,4380_7778208_3300404,4380_1079 -4380_78029,292,4380_69422,Ennis,97503-00016-1,1,4380_7778208_3300404,4380_1079 -4380_78029,290,4380_69423,Ennis,97505-00015-1,1,4380_7778208_3300404,4380_1079 -4380_78029,294,4380_69424,Ennis,97501-00018-1,1,4380_7778208_3300404,4380_1079 -4380_78029,295,4380_69425,Ennis,97507-00019-1,1,4380_7778208_3300404,4380_1079 -4380_78029,293,4380_69426,Ennis,97499-00017-1,1,4380_7778208_3300404,4380_1079 -4380_78029,296,4380_69427,Ennis,97383-00021-1,1,4380_7778208_3300403,4380_1078 -4380_78029,297,4380_69434,Ennis,97069-00008-1,1,4380_7778208_3300401,4380_1078 -4380_78029,285,4380_69435,Ennis,97390-00009-1,1,4380_7778208_3300403,4380_1079 -4380_78029,288,4380_69437,Ennis,97388-00011-1,1,4380_7778208_3300403,4380_1079 -4380_78029,286,4380_69438,Ennis,97386-00010-1,1,4380_7778208_3300403,4380_1079 -4380_78029,291,4380_69439,Ennis,97070-00013-1,1,4380_7778208_3300401,4380_1078 -4380_78029,289,4380_69440,Ennis,97384-00014-1,1,4380_7778208_3300403,4380_1079 -4380_78029,287,4380_69441,Ennis,97392-00012-1,1,4380_7778208_3300403,4380_1079 -4380_78029,292,4380_69442,Ennis,97387-00016-1,1,4380_7778208_3300403,4380_1079 -4380_78029,290,4380_69443,Ennis,97391-00015-1,1,4380_7778208_3300403,4380_1079 -4380_78029,294,4380_69444,Ennis,97393-00018-1,1,4380_7778208_3300403,4380_1079 -4380_78029,295,4380_69445,Ennis,97385-00019-1,1,4380_7778208_3300403,4380_1079 -4380_78029,293,4380_69446,Ennis,97389-00017-1,1,4380_7778208_3300403,4380_1079 -4380_78029,296,4380_69447,Ennis,97071-00021-1,1,4380_7778208_3300401,4380_1078 -4380_78029,297,4380_69454,Ennis,97251-00008-1,1,4380_7778208_3300402,4380_1078 -4380_78029,285,4380_69455,Ennis,97260-00009-1,1,4380_7778208_3300402,4380_1079 -4380_78029,288,4380_69457,Ennis,97252-00011-1,1,4380_7778208_3300402,4380_1079 -4380_78029,286,4380_69458,Ennis,97262-00010-1,1,4380_7778208_3300402,4380_1079 -4380_78029,291,4380_69459,Ennis,97256-00013-1,1,4380_7778208_3300402,4380_1078 -4380_78029,289,4380_69460,Ennis,97258-00014-1,1,4380_7778208_3300402,4380_1079 -4380_78029,287,4380_69461,Ennis,97254-00012-1,1,4380_7778208_3300402,4380_1079 -4380_78029,292,4380_69462,Ennis,97263-00016-1,1,4380_7778208_3300402,4380_1079 -4380_78029,290,4380_69463,Ennis,97261-00015-1,1,4380_7778208_3300402,4380_1079 -4380_78029,294,4380_69464,Ennis,97255-00018-1,1,4380_7778208_3300402,4380_1079 -4380_78029,295,4380_69465,Ennis,97259-00019-1,1,4380_7778208_3300402,4380_1079 -4380_78029,293,4380_69466,Ennis,97253-00017-1,1,4380_7778208_3300402,4380_1079 -4380_78029,296,4380_69467,Ennis,97257-00021-1,1,4380_7778208_3300402,4380_1078 -4380_78029,297,4380_69474,Ennis,97409-00008-1,1,4380_7778208_3300403,4380_1078 -4380_78029,285,4380_69475,Ennis,97087-00009-1,1,4380_7778208_3300401,4380_1079 -4380_78029,288,4380_69477,Ennis,97091-00011-1,1,4380_7778208_3300401,4380_1079 -4380_78029,286,4380_69478,Ennis,97093-00010-1,1,4380_7778208_3300401,4380_1079 -4380_78029,291,4380_69479,Ennis,97407-00013-1,1,4380_7778208_3300403,4380_1078 -4380_78029,289,4380_69480,Ennis,97089-00014-1,1,4380_7778208_3300401,4380_1079 -4380_78029,287,4380_69481,Ennis,97085-00012-1,1,4380_7778208_3300401,4380_1079 -4380_78029,292,4380_69482,Ennis,97094-00016-1,1,4380_7778208_3300401,4380_1079 -4380_78029,290,4380_69483,Ennis,97088-00015-1,1,4380_7778208_3300401,4380_1079 -4380_78029,294,4380_69484,Ennis,97086-00018-1,1,4380_7778208_3300401,4380_1079 -4380_78029,295,4380_69485,Ennis,97090-00019-1,1,4380_7778208_3300401,4380_1079 -4380_78029,293,4380_69486,Ennis,97092-00017-1,1,4380_7778208_3300401,4380_1079 -4380_78029,296,4380_69487,Ennis,97408-00021-1,1,4380_7778208_3300403,4380_1078 -4380_78029,285,4380_69493,Ennis,97412-00009-1,1,4380_7778208_3300403,4380_1078 -4380_78029,288,4380_69494,Ennis,97418-00011-1,1,4380_7778208_3300403,4380_1078 -4380_78029,286,4380_69495,Ennis,97410-00010-1,1,4380_7778208_3300403,4380_1078 -4380_78029,289,4380_69496,Ennis,97416-00014-1,1,4380_7778208_3300403,4380_1078 -4380_78029,287,4380_69497,Ennis,97414-00012-1,1,4380_7778208_3300403,4380_1078 -4380_78029,292,4380_69498,Ennis,97411-00016-1,1,4380_7778208_3300403,4380_1078 -4380_78029,290,4380_69499,Ennis,97413-00015-1,1,4380_7778208_3300403,4380_1078 -4380_78113,296,4380_695,Dundalk,49875-00021-1,0,4380_7778208_1000905,4380_16 -4380_77953,285,4380_6950,Kells,5783-00009-1,0,4380_7778208_1090109,4380_95 -4380_78029,294,4380_69500,Ennis,97415-00018-1,1,4380_7778208_3300403,4380_1078 -4380_78029,295,4380_69501,Ennis,97417-00019-1,1,4380_7778208_3300403,4380_1078 -4380_78029,293,4380_69502,Ennis,97419-00017-1,1,4380_7778208_3300403,4380_1078 -4380_78029,297,4380_69504,Ennis,97095-00008-1,1,4380_7778208_3300401,4380_1078 -4380_78029,291,4380_69506,Ennis,97096-00013-1,1,4380_7778208_3300401,4380_1078 -4380_78029,296,4380_69507,Ennis,97097-00021-1,1,4380_7778208_3300401,4380_1078 -4380_77953,286,4380_6951,Kells,5788-00010-1,0,4380_7778208_1090109,4380_95 -4380_78029,285,4380_69513,Ennis,97279-00009-1,1,4380_7778208_3300402,4380_1078 -4380_78029,288,4380_69514,Ennis,97277-00011-1,1,4380_7778208_3300402,4380_1078 -4380_78029,286,4380_69515,Ennis,97283-00010-1,1,4380_7778208_3300402,4380_1078 -4380_78029,289,4380_69516,Ennis,97281-00014-1,1,4380_7778208_3300402,4380_1078 -4380_78029,287,4380_69517,Ennis,97285-00012-1,1,4380_7778208_3300402,4380_1078 -4380_78029,292,4380_69518,Ennis,97284-00016-1,1,4380_7778208_3300402,4380_1078 -4380_78029,290,4380_69519,Ennis,97280-00015-1,1,4380_7778208_3300402,4380_1078 -4380_77953,297,4380_6952,Kells,5443-00008-1,0,4380_7778208_1090103,4380_91 -4380_78029,294,4380_69520,Ennis,97286-00018-1,1,4380_7778208_3300402,4380_1078 -4380_78029,295,4380_69521,Ennis,97282-00019-1,1,4380_7778208_3300402,4380_1078 -4380_78029,293,4380_69522,Ennis,97278-00017-1,1,4380_7778208_3300402,4380_1078 -4380_78029,288,4380_69526,Newmarket-on-Fer,114946-00011-1,1,4380_7778208_33088803,4380_1080 -4380_78029,286,4380_69527,Newmarket-on-Fer,114948-00010-1,1,4380_7778208_33088803,4380_1080 -4380_78029,287,4380_69528,Newmarket-on-Fer,114944-00012-1,1,4380_7778208_33088803,4380_1080 -4380_78029,292,4380_69529,Newmarket-on-Fer,114949-00016-1,1,4380_7778208_33088803,4380_1080 -4380_77953,288,4380_6953,Kells,5793-00011-1,0,4380_7778208_1090109,4380_95 -4380_78029,294,4380_69530,Newmarket-on-Fer,114945-00018-1,1,4380_7778208_33088803,4380_1080 -4380_78029,293,4380_69531,Newmarket-on-Fer,114947-00017-1,1,4380_7778208_33088803,4380_1080 -4380_78029,297,4380_69538,Ennis,97287-00008-1,1,4380_7778208_3300402,4380_1078 -4380_78029,285,4380_69539,Ennis,97512-00009-1,1,4380_7778208_3300404,4380_1079 -4380_77953,287,4380_6954,Kells,5798-00012-1,0,4380_7778208_1090109,4380_95 -4380_78029,288,4380_69541,Ennis,97510-00011-1,1,4380_7778208_3300404,4380_1079 -4380_78029,286,4380_69542,Ennis,97516-00010-1,1,4380_7778208_3300404,4380_1079 -4380_78029,291,4380_69543,Ennis,97288-00013-1,1,4380_7778208_3300402,4380_1078 -4380_78029,289,4380_69544,Ennis,97508-00014-1,1,4380_7778208_3300404,4380_1079 -4380_78029,287,4380_69545,Ennis,97514-00012-1,1,4380_7778208_3300404,4380_1079 -4380_78029,292,4380_69546,Ennis,97517-00016-1,1,4380_7778208_3300404,4380_1079 -4380_78029,290,4380_69547,Ennis,97513-00015-1,1,4380_7778208_3300404,4380_1079 -4380_78029,294,4380_69548,Ennis,97515-00018-1,1,4380_7778208_3300404,4380_1079 -4380_78029,295,4380_69549,Ennis,97509-00019-1,1,4380_7778208_3300404,4380_1079 -4380_77953,289,4380_6955,Kells,5778-00014-1,0,4380_7778208_1090109,4380_95 -4380_78029,293,4380_69550,Ennis,97511-00017-1,1,4380_7778208_3300404,4380_1079 -4380_78029,296,4380_69551,Ennis,97289-00021-1,1,4380_7778208_3300402,4380_1078 -4380_78029,285,4380_69554,Newmarket-on-Fer,114952-00009-1,1,4380_7778208_33088803,4380_1080 -4380_78029,289,4380_69555,Newmarket-on-Fer,114950-00014-1,1,4380_7778208_33088803,4380_1080 -4380_78029,290,4380_69556,Newmarket-on-Fer,114953-00015-1,1,4380_7778208_33088803,4380_1080 -4380_78029,295,4380_69557,Newmarket-on-Fer,114951-00019-1,1,4380_7778208_33088803,4380_1080 -4380_77953,290,4380_6956,Kells,55073-00015-1,0,4380_7778208_1090109,4380_95 -4380_78029,285,4380_69563,Ennis,97111-00009-1,1,4380_7778208_3300401,4380_1078 -4380_78029,288,4380_69564,Ennis,97113-00011-1,1,4380_7778208_3300401,4380_1078 -4380_78029,286,4380_69565,Ennis,97115-00010-1,1,4380_7778208_3300401,4380_1078 -4380_78029,289,4380_69566,Ennis,97119-00014-1,1,4380_7778208_3300401,4380_1078 -4380_78029,287,4380_69567,Ennis,97117-00012-1,1,4380_7778208_3300401,4380_1078 -4380_78029,292,4380_69568,Ennis,97116-00016-1,1,4380_7778208_3300401,4380_1078 -4380_78029,290,4380_69569,Ennis,97112-00015-1,1,4380_7778208_3300401,4380_1078 -4380_77953,291,4380_6957,Kells,5803-00013-1,0,4380_7778208_1090109,4380_99 -4380_78029,294,4380_69570,Ennis,97118-00018-1,1,4380_7778208_3300401,4380_1078 -4380_78029,295,4380_69571,Ennis,97120-00019-1,1,4380_7778208_3300401,4380_1078 -4380_78029,293,4380_69572,Ennis,97114-00017-1,1,4380_7778208_3300401,4380_1078 -4380_78029,297,4380_69574,Ennis,97435-00008-1,1,4380_7778208_3300403,4380_1078 -4380_78029,291,4380_69576,Ennis,97433-00013-1,1,4380_7778208_3300403,4380_1078 -4380_78029,296,4380_69577,Ennis,97434-00021-1,1,4380_7778208_3300403,4380_1078 -4380_77953,292,4380_6958,Kells,55070-00016-1,0,4380_7778208_1090109,4380_95 -4380_78029,285,4380_69583,Ennis,114936-00009-1,1,4380_7778208_33088802,4380_1078 -4380_78029,288,4380_69584,Ennis,114940-00011-1,1,4380_7778208_33088802,4380_1078 -4380_78029,286,4380_69585,Ennis,114938-00010-1,1,4380_7778208_33088802,4380_1078 -4380_78029,289,4380_69586,Ennis,114934-00014-1,1,4380_7778208_33088802,4380_1078 -4380_78029,287,4380_69587,Ennis,114942-00012-1,1,4380_7778208_33088802,4380_1078 -4380_78029,290,4380_69588,Ennis,114937-00015-1,1,4380_7778208_33088802,4380_1078 -4380_78029,292,4380_69589,Ennis,114939-00016-1,1,4380_7778208_33088802,4380_1078 -4380_77953,293,4380_6959,Kells,55071-00017-1,0,4380_7778208_1090109,4380_95 -4380_78029,294,4380_69590,Ennis,114943-00018-1,1,4380_7778208_33088802,4380_1078 -4380_78029,293,4380_69591,Ennis,114941-00017-1,1,4380_7778208_33088802,4380_1078 -4380_78029,295,4380_69592,Ennis,114935-00019-1,1,4380_7778208_33088802,4380_1078 -4380_78029,285,4380_69598,Ennis,97440-00009-1,1,4380_7778208_3300403,4380_1078 -4380_78029,288,4380_69599,Ennis,97436-00011-1,1,4380_7778208_3300403,4380_1078 -4380_77953,294,4380_6960,Kells,55068-00018-1,0,4380_7778208_1090109,4380_95 -4380_78029,286,4380_69600,Ennis,97444-00010-1,1,4380_7778208_3300403,4380_1078 -4380_78029,289,4380_69601,Ennis,97442-00014-1,1,4380_7778208_3300403,4380_1078 -4380_78029,287,4380_69602,Ennis,97438-00012-1,1,4380_7778208_3300403,4380_1078 -4380_78029,292,4380_69603,Ennis,97445-00016-1,1,4380_7778208_3300403,4380_1078 -4380_78029,290,4380_69604,Ennis,97441-00015-1,1,4380_7778208_3300403,4380_1078 -4380_78029,294,4380_69605,Ennis,97439-00018-1,1,4380_7778208_3300403,4380_1078 -4380_78029,295,4380_69606,Ennis,97443-00019-1,1,4380_7778208_3300403,4380_1078 -4380_78029,293,4380_69607,Ennis,97437-00017-1,1,4380_7778208_3300403,4380_1078 -4380_77953,295,4380_6961,Kells,55069-00019-1,0,4380_7778208_1090109,4380_95 -4380_78029,297,4380_69614,Ennis,97121-00008-1,1,4380_7778208_3300401,4380_1078 -4380_78029,285,4380_69615,Ennis,97524-00009-1,1,4380_7778208_3300404,4380_1079 -4380_78029,288,4380_69617,Ennis,97526-00011-1,1,4380_7778208_3300404,4380_1079 -4380_78029,286,4380_69618,Ennis,97520-00010-1,1,4380_7778208_3300404,4380_1079 -4380_78029,291,4380_69619,Ennis,97122-00013-1,1,4380_7778208_3300401,4380_1078 -4380_77953,296,4380_6962,Kells,55072-00021-1,0,4380_7778208_1090109,4380_99 -4380_78029,289,4380_69620,Ennis,97522-00014-1,1,4380_7778208_3300404,4380_1079 -4380_78029,287,4380_69621,Ennis,97518-00012-1,1,4380_7778208_3300404,4380_1079 -4380_78029,292,4380_69622,Ennis,97521-00016-1,1,4380_7778208_3300404,4380_1079 -4380_78029,290,4380_69623,Ennis,97525-00015-1,1,4380_7778208_3300404,4380_1079 -4380_78029,294,4380_69624,Ennis,97519-00018-1,1,4380_7778208_3300404,4380_1079 -4380_78029,295,4380_69625,Ennis,97523-00019-1,1,4380_7778208_3300404,4380_1079 -4380_78029,293,4380_69626,Ennis,97527-00017-1,1,4380_7778208_3300404,4380_1079 -4380_78029,296,4380_69627,Ennis,97123-00021-1,1,4380_7778208_3300401,4380_1078 -4380_78029,297,4380_69634,Ennis,97305-00008-1,1,4380_7778208_3300402,4380_1078 -4380_78029,285,4380_69635,Ennis,97314-00009-1,1,4380_7778208_3300402,4380_1079 -4380_78029,288,4380_69637,Ennis,97310-00011-1,1,4380_7778208_3300402,4380_1079 -4380_78029,286,4380_69638,Ennis,97308-00010-1,1,4380_7778208_3300402,4380_1079 -4380_78029,291,4380_69639,Ennis,97312-00013-1,1,4380_7778208_3300402,4380_1078 -4380_78029,289,4380_69640,Ennis,97303-00014-1,1,4380_7778208_3300402,4380_1079 -4380_78029,287,4380_69641,Ennis,97306-00012-1,1,4380_7778208_3300402,4380_1079 -4380_78029,292,4380_69642,Ennis,97309-00016-1,1,4380_7778208_3300402,4380_1079 -4380_78029,290,4380_69643,Ennis,97315-00015-1,1,4380_7778208_3300402,4380_1079 -4380_78029,294,4380_69644,Ennis,97307-00018-1,1,4380_7778208_3300402,4380_1079 -4380_78029,295,4380_69645,Ennis,97304-00019-1,1,4380_7778208_3300402,4380_1079 -4380_78029,293,4380_69646,Ennis,97311-00017-1,1,4380_7778208_3300402,4380_1079 -4380_78029,296,4380_69647,Ennis,97313-00021-1,1,4380_7778208_3300402,4380_1078 -4380_78029,297,4380_69654,Ennis,97461-00008-1,1,4380_7778208_3300403,4380_1078 -4380_78029,285,4380_69655,Ennis,97137-00009-1,1,4380_7778208_3300401,4380_1079 -4380_78029,288,4380_69657,Ennis,97143-00011-1,1,4380_7778208_3300401,4380_1079 -4380_78029,286,4380_69658,Ennis,97139-00010-1,1,4380_7778208_3300401,4380_1079 -4380_78029,291,4380_69659,Ennis,97459-00013-1,1,4380_7778208_3300403,4380_1078 -4380_78029,289,4380_69660,Ennis,97145-00014-1,1,4380_7778208_3300401,4380_1079 -4380_78029,287,4380_69661,Ennis,97141-00012-1,1,4380_7778208_3300401,4380_1079 -4380_78029,292,4380_69662,Ennis,97140-00016-1,1,4380_7778208_3300401,4380_1079 -4380_78029,290,4380_69663,Ennis,97138-00015-1,1,4380_7778208_3300401,4380_1079 -4380_78029,294,4380_69664,Ennis,97142-00018-1,1,4380_7778208_3300401,4380_1079 -4380_78029,295,4380_69665,Ennis,97146-00019-1,1,4380_7778208_3300401,4380_1079 -4380_78029,293,4380_69666,Ennis,97144-00017-1,1,4380_7778208_3300401,4380_1079 -4380_78029,296,4380_69667,Ennis,97460-00021-1,1,4380_7778208_3300403,4380_1078 -4380_78029,297,4380_69674,Ennis,97149-00008-1,1,4380_7778208_3300401,4380_1078 -4380_78029,285,4380_69675,Ennis,97470-00009-1,1,4380_7778208_3300403,4380_1078 -4380_78029,288,4380_69677,Ennis,97462-00011-1,1,4380_7778208_3300403,4380_1078 -4380_78029,286,4380_69678,Ennis,97464-00010-1,1,4380_7778208_3300403,4380_1078 -4380_78029,291,4380_69679,Ennis,97147-00013-1,1,4380_7778208_3300401,4380_1078 -4380_78029,289,4380_69680,Ennis,97468-00014-1,1,4380_7778208_3300403,4380_1078 -4380_78029,287,4380_69681,Ennis,97466-00012-1,1,4380_7778208_3300403,4380_1078 -4380_78029,292,4380_69682,Ennis,97465-00016-1,1,4380_7778208_3300403,4380_1078 -4380_78029,290,4380_69683,Ennis,97471-00015-1,1,4380_7778208_3300403,4380_1078 -4380_78029,294,4380_69684,Ennis,97467-00018-1,1,4380_7778208_3300403,4380_1078 -4380_78029,295,4380_69685,Ennis,97469-00019-1,1,4380_7778208_3300403,4380_1078 -4380_78029,293,4380_69686,Ennis,97463-00017-1,1,4380_7778208_3300403,4380_1078 -4380_78029,296,4380_69687,Ennis,97148-00021-1,1,4380_7778208_3300401,4380_1078 -4380_78029,297,4380_69694,Ennis,97329-00008-1,1,4380_7778208_3300402,4380_1078 -4380_78029,285,4380_69695,Ennis,97544-00009-1,1,4380_7778208_3300404,4380_1078 -4380_78029,288,4380_69697,Ennis,97546-00011-1,1,4380_7778208_3300404,4380_1078 -4380_78029,286,4380_69698,Ennis,97542-00010-1,1,4380_7778208_3300404,4380_1078 -4380_78029,291,4380_69699,Ennis,97330-00013-1,1,4380_7778208_3300402,4380_1078 -4380_77953,285,4380_6970,Dunshaughlin,7016-00009-1,0,4380_7778208_1090906,4380_96 -4380_78029,289,4380_69700,Ennis,97538-00014-1,1,4380_7778208_3300404,4380_1078 -4380_78029,287,4380_69701,Ennis,97540-00012-1,1,4380_7778208_3300404,4380_1078 -4380_78029,292,4380_69702,Ennis,97543-00016-1,1,4380_7778208_3300404,4380_1078 -4380_78029,290,4380_69703,Ennis,97545-00015-1,1,4380_7778208_3300404,4380_1078 -4380_78029,294,4380_69704,Ennis,97541-00018-1,1,4380_7778208_3300404,4380_1078 -4380_78029,295,4380_69705,Ennis,97539-00019-1,1,4380_7778208_3300404,4380_1078 -4380_78029,293,4380_69706,Ennis,97547-00017-1,1,4380_7778208_3300404,4380_1078 -4380_78029,296,4380_69707,Ennis,97331-00021-1,1,4380_7778208_3300402,4380_1078 -4380_77953,286,4380_6971,Dunshaughlin,7022-00010-1,0,4380_7778208_1090906,4380_96 -4380_78029,297,4380_69714,Ennis,97475-00008-1,1,4380_7778208_3300403,4380_1078 -4380_78029,285,4380_69715,Ennis,97340-00009-1,1,4380_7778208_3300402,4380_1079 -4380_78029,288,4380_69717,Ennis,97336-00011-1,1,4380_7778208_3300402,4380_1079 -4380_78029,286,4380_69718,Ennis,97332-00010-1,1,4380_7778208_3300402,4380_1079 -4380_78029,291,4380_69719,Ennis,97476-00013-1,1,4380_7778208_3300403,4380_1079 -4380_77953,297,4380_6972,Dunshaughlin,5519-00008-1,0,4380_7778208_1090104,4380_90 -4380_78029,289,4380_69720,Ennis,97334-00014-1,1,4380_7778208_3300402,4380_1079 -4380_78029,287,4380_69721,Ennis,97338-00012-1,1,4380_7778208_3300402,4380_1079 -4380_78029,292,4380_69722,Ennis,97333-00016-1,1,4380_7778208_3300402,4380_1079 -4380_78029,290,4380_69723,Ennis,97341-00015-1,1,4380_7778208_3300402,4380_1079 -4380_78029,294,4380_69724,Ennis,97339-00018-1,1,4380_7778208_3300402,4380_1079 -4380_78029,295,4380_69725,Ennis,97335-00019-1,1,4380_7778208_3300402,4380_1079 -4380_78029,293,4380_69726,Ennis,97337-00017-1,1,4380_7778208_3300402,4380_1079 -4380_78029,296,4380_69727,Ennis,97477-00021-1,1,4380_7778208_3300403,4380_1079 -4380_77953,288,4380_6973,Dunshaughlin,7028-00011-1,0,4380_7778208_1090906,4380_96 -4380_78029,297,4380_69734,Ennis,97183-00008-1,1,4380_7778208_3300401,4380_1078 -4380_78029,285,4380_69735,Ennis,97177-00009-1,1,4380_7778208_3300401,4380_1078 -4380_78029,288,4380_69737,Ennis,97181-00011-1,1,4380_7778208_3300401,4380_1078 -4380_78029,286,4380_69738,Ennis,97179-00010-1,1,4380_7778208_3300401,4380_1078 -4380_78029,291,4380_69739,Ennis,97184-00013-1,1,4380_7778208_3300401,4380_1078 -4380_77953,287,4380_6974,Dunshaughlin,7034-00012-1,0,4380_7778208_1090906,4380_96 -4380_78029,289,4380_69740,Ennis,97175-00014-1,1,4380_7778208_3300401,4380_1078 -4380_78029,287,4380_69741,Ennis,97173-00012-1,1,4380_7778208_3300401,4380_1078 -4380_78029,292,4380_69742,Ennis,97180-00016-1,1,4380_7778208_3300401,4380_1078 -4380_78029,290,4380_69743,Ennis,97178-00015-1,1,4380_7778208_3300401,4380_1078 -4380_78029,294,4380_69744,Ennis,97174-00018-1,1,4380_7778208_3300401,4380_1078 -4380_78029,295,4380_69745,Ennis,97176-00019-1,1,4380_7778208_3300401,4380_1078 -4380_78029,293,4380_69746,Ennis,97182-00017-1,1,4380_7778208_3300401,4380_1078 -4380_78029,296,4380_69747,Ennis,97185-00021-1,1,4380_7778208_3300401,4380_1078 -4380_77953,289,4380_6975,Dunshaughlin,7010-00014-1,0,4380_7778208_1090906,4380_96 -4380_78133,285,4380_69753,Ennis,99070-00009-1,0,4380_7778208_3500401,4380_1081 -4380_78133,288,4380_69754,Ennis,99076-00011-1,0,4380_7778208_3500401,4380_1081 -4380_78133,286,4380_69755,Ennis,99072-00010-1,0,4380_7778208_3500401,4380_1081 -4380_78133,289,4380_69756,Ennis,99074-00014-1,0,4380_7778208_3500401,4380_1081 -4380_78133,287,4380_69757,Ennis,99068-00012-1,0,4380_7778208_3500401,4380_1081 -4380_78133,292,4380_69758,Ennis,99073-00016-1,0,4380_7778208_3500401,4380_1081 -4380_78133,290,4380_69759,Ennis,99071-00015-1,0,4380_7778208_3500401,4380_1081 -4380_77953,290,4380_6976,Dunshaughlin,55491-00015-1,0,4380_7778208_1090906,4380_96 -4380_78133,294,4380_69760,Ennis,99069-00018-1,0,4380_7778208_3500401,4380_1081 -4380_78133,295,4380_69761,Ennis,99075-00019-1,0,4380_7778208_3500401,4380_1081 -4380_78133,293,4380_69762,Ennis,99077-00017-1,0,4380_7778208_3500401,4380_1081 -4380_78133,285,4380_69768,Limerick Bus Station,99097-00009-1,1,4380_7778208_3500402,4380_1082 -4380_78133,288,4380_69769,Limerick Bus Station,99093-00011-1,1,4380_7778208_3500402,4380_1082 -4380_77953,291,4380_6977,Dunshaughlin,6813-00013-1,0,4380_7778208_1090901,4380_100 -4380_78133,286,4380_69770,Limerick Bus Station,99095-00010-1,1,4380_7778208_3500402,4380_1082 -4380_78133,289,4380_69771,Limerick Bus Station,99091-00014-1,1,4380_7778208_3500402,4380_1082 -4380_78133,287,4380_69772,Limerick Bus Station,99099-00012-1,1,4380_7778208_3500402,4380_1082 -4380_78133,292,4380_69773,Limerick Bus Station,99096-00016-1,1,4380_7778208_3500402,4380_1082 -4380_78133,290,4380_69774,Limerick Bus Station,99098-00015-1,1,4380_7778208_3500402,4380_1082 -4380_78133,294,4380_69775,Limerick Bus Station,99100-00018-1,1,4380_7778208_3500402,4380_1082 -4380_78133,295,4380_69776,Limerick Bus Station,99092-00019-1,1,4380_7778208_3500402,4380_1082 -4380_78133,293,4380_69777,Limerick Bus Station,99094-00017-1,1,4380_7778208_3500402,4380_1082 -4380_77953,292,4380_6978,Dunshaughlin,55492-00016-1,0,4380_7778208_1090906,4380_96 -4380_78030,297,4380_69784,Cashel,97642-00008-1,0,4380_7778208_3320402,4380_1083 -4380_78030,285,4380_69785,Cashel,97643-00009-1,0,4380_7778208_3320402,4380_1084 -4380_78030,288,4380_69787,Cashel,97647-00011-1,0,4380_7778208_3320402,4380_1084 -4380_78030,286,4380_69788,Cashel,97638-00010-1,0,4380_7778208_3320402,4380_1084 -4380_78030,291,4380_69789,Cashel,97640-00013-1,0,4380_7778208_3320402,4380_1083 -4380_77953,293,4380_6979,Dunshaughlin,55489-00017-1,0,4380_7778208_1090906,4380_96 -4380_78030,289,4380_69790,Cashel,97636-00014-1,0,4380_7778208_3320402,4380_1084 -4380_78030,287,4380_69791,Cashel,97645-00012-1,0,4380_7778208_3320402,4380_1084 -4380_78030,292,4380_69792,Cashel,97639-00016-1,0,4380_7778208_3320402,4380_1084 -4380_78030,290,4380_69793,Cashel,97644-00015-1,0,4380_7778208_3320402,4380_1084 -4380_78030,294,4380_69794,Cashel,97646-00018-1,0,4380_7778208_3320402,4380_1084 -4380_78030,295,4380_69795,Cashel,97637-00019-1,0,4380_7778208_3320402,4380_1084 -4380_78030,293,4380_69796,Cashel,97648-00017-1,0,4380_7778208_3320402,4380_1084 -4380_78030,296,4380_69797,Cashel,97641-00021-1,0,4380_7778208_3320402,4380_1083 -4380_77953,294,4380_6980,Dunshaughlin,55490-00018-1,0,4380_7778208_1090906,4380_96 -4380_78030,297,4380_69804,Cashel,97583-00008-1,0,4380_7778208_3320401,4380_1083 -4380_78030,285,4380_69805,Cashel,97581-00009-1,0,4380_7778208_3320401,4380_1084 -4380_78030,288,4380_69807,Cashel,97571-00011-1,0,4380_7778208_3320401,4380_1084 -4380_78030,286,4380_69808,Cashel,97577-00010-1,0,4380_7778208_3320401,4380_1084 -4380_78030,291,4380_69809,Cashel,97575-00013-1,0,4380_7778208_3320401,4380_1086 -4380_77953,295,4380_6981,Dunshaughlin,55488-00019-1,0,4380_7778208_1090906,4380_96 -4380_78030,289,4380_69810,Cashel,97579-00014-1,0,4380_7778208_3320401,4380_1084 -4380_78030,287,4380_69811,Cashel,97573-00012-1,0,4380_7778208_3320401,4380_1084 -4380_78030,292,4380_69812,Cashel,97578-00016-1,0,4380_7778208_3320401,4380_1084 -4380_78030,290,4380_69813,Cashel,97582-00015-1,0,4380_7778208_3320401,4380_1084 -4380_78030,294,4380_69814,Cashel,97574-00018-1,0,4380_7778208_3320401,4380_1084 -4380_78030,295,4380_69815,Cashel,97580-00019-1,0,4380_7778208_3320401,4380_1084 -4380_78030,293,4380_69816,Cashel,97572-00017-1,0,4380_7778208_3320401,4380_1084 -4380_78030,296,4380_69817,Cashel,97576-00021-1,0,4380_7778208_3320401,4380_1086 -4380_77953,296,4380_6982,Dunshaughlin,55344-00021-1,0,4380_7778208_1090901,4380_100 -4380_78030,297,4380_69824,Cashel,97666-00008-1,0,4380_7778208_3320402,4380_1083 -4380_78030,285,4380_69825,Cashel,97664-00009-1,0,4380_7778208_3320402,4380_1084 -4380_78030,288,4380_69827,Cashel,97662-00011-1,0,4380_7778208_3320402,4380_1084 -4380_78030,286,4380_69828,Cashel,97671-00010-1,0,4380_7778208_3320402,4380_1084 -4380_78030,291,4380_69829,Cashel,97667-00013-1,0,4380_7778208_3320402,4380_1086 -4380_78030,289,4380_69830,Cashel,97673-00014-1,0,4380_7778208_3320402,4380_1084 -4380_78030,287,4380_69831,Cashel,97669-00012-1,0,4380_7778208_3320402,4380_1084 -4380_78030,292,4380_69832,Cashel,97672-00016-1,0,4380_7778208_3320402,4380_1084 -4380_78030,290,4380_69833,Cashel,97665-00015-1,0,4380_7778208_3320402,4380_1084 -4380_78030,294,4380_69834,Cashel,97670-00018-1,0,4380_7778208_3320402,4380_1084 -4380_78030,295,4380_69835,Cashel,97674-00019-1,0,4380_7778208_3320402,4380_1084 -4380_78030,293,4380_69836,Cashel,97663-00017-1,0,4380_7778208_3320402,4380_1084 -4380_78030,296,4380_69837,Cashel,97668-00021-1,0,4380_7778208_3320402,4380_1086 -4380_78030,297,4380_69844,Cashel,97605-00008-1,0,4380_7778208_3320401,4380_1083 -4380_78030,285,4380_69845,Cashel,97606-00009-1,0,4380_7778208_3320401,4380_1084 -4380_78030,288,4380_69847,Cashel,97597-00011-1,0,4380_7778208_3320401,4380_1084 -4380_78030,286,4380_69848,Cashel,97608-00010-1,0,4380_7778208_3320401,4380_1084 -4380_78030,291,4380_69849,Cashel,97603-00013-1,0,4380_7778208_3320401,4380_1086 -4380_78030,289,4380_69850,Cashel,97601-00014-1,0,4380_7778208_3320401,4380_1084 -4380_78030,287,4380_69851,Cashel,97599-00012-1,0,4380_7778208_3320401,4380_1084 -4380_78030,292,4380_69852,Cashel,97609-00016-1,0,4380_7778208_3320401,4380_1084 -4380_78030,290,4380_69853,Cashel,97607-00015-1,0,4380_7778208_3320401,4380_1084 -4380_78030,294,4380_69854,Cashel,97600-00018-1,0,4380_7778208_3320401,4380_1084 -4380_78030,295,4380_69855,Cashel,97602-00019-1,0,4380_7778208_3320401,4380_1084 -4380_78030,293,4380_69856,Cashel,97598-00017-1,0,4380_7778208_3320401,4380_1084 -4380_78030,296,4380_69857,Cashel,97604-00021-1,0,4380_7778208_3320401,4380_1086 -4380_78030,285,4380_69863,Cappamore,97756-00009-1,0,4380_7778208_3320403,4380_1085 -4380_78030,288,4380_69864,Cappamore,97762-00011-1,0,4380_7778208_3320403,4380_1085 -4380_78030,286,4380_69865,Cappamore,97754-00010-1,0,4380_7778208_3320403,4380_1085 -4380_78030,289,4380_69866,Cappamore,97758-00014-1,0,4380_7778208_3320403,4380_1085 -4380_78030,287,4380_69867,Cappamore,97760-00012-1,0,4380_7778208_3320403,4380_1085 -4380_78030,292,4380_69868,Cappamore,97755-00016-1,0,4380_7778208_3320403,4380_1085 -4380_78030,290,4380_69869,Cappamore,97757-00015-1,0,4380_7778208_3320403,4380_1085 -4380_78030,294,4380_69870,Cappamore,97761-00018-1,0,4380_7778208_3320403,4380_1085 -4380_78030,295,4380_69871,Cappamore,97759-00019-1,0,4380_7778208_3320403,4380_1085 -4380_78030,293,4380_69872,Cappamore,97763-00017-1,0,4380_7778208_3320403,4380_1085 -4380_78030,297,4380_69879,Cashel,97694-00008-1,0,4380_7778208_3320402,4380_1083 -4380_77953,285,4380_6988,Kells,6103-00009-1,0,4380_7778208_1090118,4380_91 -4380_78030,285,4380_69880,Cashel,97695-00009-1,0,4380_7778208_3320402,4380_1084 -4380_78030,288,4380_69882,Cashel,97690-00011-1,0,4380_7778208_3320402,4380_1084 -4380_78030,286,4380_69883,Cashel,97697-00010-1,0,4380_7778208_3320402,4380_1084 -4380_78030,291,4380_69884,Cashel,97692-00013-1,0,4380_7778208_3320402,4380_1083 -4380_78030,289,4380_69885,Cashel,97699-00014-1,0,4380_7778208_3320402,4380_1084 -4380_78030,287,4380_69886,Cashel,97688-00012-1,0,4380_7778208_3320402,4380_1084 -4380_78030,292,4380_69887,Cashel,97698-00016-1,0,4380_7778208_3320402,4380_1084 -4380_78030,290,4380_69888,Cashel,97696-00015-1,0,4380_7778208_3320402,4380_1084 -4380_78030,294,4380_69889,Cashel,97689-00018-1,0,4380_7778208_3320402,4380_1084 -4380_77953,286,4380_6989,Kells,6106-00010-1,0,4380_7778208_1090118,4380_91 -4380_78030,295,4380_69890,Cashel,97700-00019-1,0,4380_7778208_3320402,4380_1084 -4380_78030,293,4380_69891,Cashel,97691-00017-1,0,4380_7778208_3320402,4380_1084 -4380_78030,296,4380_69892,Cashel,97693-00021-1,0,4380_7778208_3320402,4380_1083 -4380_78030,297,4380_69899,Cashel,97629-00008-1,0,4380_7778208_3320401,4380_1083 -4380_77953,288,4380_6990,Kells,6109-00011-1,0,4380_7778208_1090118,4380_91 -4380_78030,285,4380_69900,Cashel,97634-00009-1,0,4380_7778208_3320401,4380_1083 -4380_78030,288,4380_69902,Cashel,97630-00011-1,0,4380_7778208_3320401,4380_1083 -4380_78030,286,4380_69903,Cashel,97625-00010-1,0,4380_7778208_3320401,4380_1083 -4380_78030,291,4380_69904,Cashel,97623-00013-1,0,4380_7778208_3320401,4380_1083 -4380_78030,289,4380_69905,Cashel,97627-00014-1,0,4380_7778208_3320401,4380_1083 -4380_78030,287,4380_69906,Cashel,97632-00012-1,0,4380_7778208_3320401,4380_1083 -4380_78030,292,4380_69907,Cashel,97626-00016-1,0,4380_7778208_3320401,4380_1083 -4380_78030,290,4380_69908,Cashel,97635-00015-1,0,4380_7778208_3320401,4380_1083 -4380_78030,294,4380_69909,Cashel,97633-00018-1,0,4380_7778208_3320401,4380_1083 -4380_77953,287,4380_6991,Kells,6112-00012-1,0,4380_7778208_1090118,4380_91 -4380_78030,295,4380_69910,Cashel,97628-00019-1,0,4380_7778208_3320401,4380_1083 -4380_78030,293,4380_69911,Cashel,97631-00017-1,0,4380_7778208_3320401,4380_1083 -4380_78030,296,4380_69912,Cashel,97624-00021-1,0,4380_7778208_3320401,4380_1083 -4380_77953,289,4380_6992,Kells,6100-00014-1,0,4380_7778208_1090118,4380_91 -4380_78030,297,4380_69924,Limerick Bus Station,97570-00008-1,1,4380_7778208_3320401,4380_1087 -4380_78030,285,4380_69925,Limerick Bus Station,97564-00009-1,1,4380_7778208_3320401,4380_1088 -4380_78030,285,4380_69926,Limerick Bus Station,97716-00009-1,1,4380_7778208_3320403,4380_1089 -4380_78030,288,4380_69928,Limerick Bus Station,97560-00011-1,1,4380_7778208_3320401,4380_1088 -4380_78030,288,4380_69929,Limerick Bus Station,97718-00011-1,1,4380_7778208_3320403,4380_1089 -4380_77953,290,4380_6993,Kells,55313-00015-1,0,4380_7778208_1090118,4380_91 -4380_78030,286,4380_69930,Limerick Bus Station,97566-00010-1,1,4380_7778208_3320401,4380_1088 -4380_78030,286,4380_69931,Limerick Bus Station,97720-00010-1,1,4380_7778208_3320403,4380_1089 -4380_78030,291,4380_69932,Limerick Bus Station,97558-00013-1,1,4380_7778208_3320401,4380_1090 -4380_78030,289,4380_69933,Limerick Bus Station,97568-00014-1,1,4380_7778208_3320401,4380_1088 -4380_78030,289,4380_69934,Limerick Bus Station,97714-00014-1,1,4380_7778208_3320403,4380_1089 -4380_78030,287,4380_69935,Limerick Bus Station,97562-00012-1,1,4380_7778208_3320401,4380_1088 -4380_78030,287,4380_69936,Limerick Bus Station,97722-00012-1,1,4380_7778208_3320403,4380_1089 -4380_78030,292,4380_69937,Limerick Bus Station,97567-00016-1,1,4380_7778208_3320401,4380_1088 -4380_78030,292,4380_69938,Limerick Bus Station,97721-00016-1,1,4380_7778208_3320403,4380_1089 -4380_78030,290,4380_69939,Limerick Bus Station,97565-00015-1,1,4380_7778208_3320401,4380_1088 -4380_77953,292,4380_6994,Kells,55309-00016-1,0,4380_7778208_1090118,4380_91 -4380_78030,290,4380_69940,Limerick Bus Station,97717-00015-1,1,4380_7778208_3320403,4380_1089 -4380_78030,294,4380_69941,Limerick Bus Station,97563-00018-1,1,4380_7778208_3320401,4380_1088 -4380_78030,294,4380_69942,Limerick Bus Station,97723-00018-1,1,4380_7778208_3320403,4380_1089 -4380_78030,295,4380_69943,Limerick Bus Station,97569-00019-1,1,4380_7778208_3320401,4380_1088 -4380_78030,295,4380_69944,Limerick Bus Station,97715-00019-1,1,4380_7778208_3320403,4380_1089 -4380_78030,293,4380_69945,Limerick Bus Station,97561-00017-1,1,4380_7778208_3320401,4380_1088 -4380_78030,293,4380_69946,Limerick Bus Station,97719-00017-1,1,4380_7778208_3320403,4380_1089 -4380_78030,296,4380_69947,Limerick Bus Station,97559-00021-1,1,4380_7778208_3320401,4380_1090 -4380_77953,293,4380_6995,Kells,55312-00017-1,0,4380_7778208_1090118,4380_91 -4380_78030,297,4380_69954,Limerick Bus Station,97649-00008-1,1,4380_7778208_3320402,4380_1087 -4380_78030,285,4380_69955,Limerick Bus Station,97654-00009-1,1,4380_7778208_3320402,4380_1088 -4380_78030,288,4380_69957,Limerick Bus Station,97656-00011-1,1,4380_7778208_3320402,4380_1088 -4380_78030,286,4380_69958,Limerick Bus Station,97660-00010-1,1,4380_7778208_3320402,4380_1088 -4380_78030,291,4380_69959,Limerick Bus Station,97658-00013-1,1,4380_7778208_3320402,4380_1090 -4380_77953,294,4380_6996,Kells,55311-00018-1,0,4380_7778208_1090118,4380_91 -4380_78030,289,4380_69960,Limerick Bus Station,97652-00014-1,1,4380_7778208_3320402,4380_1088 -4380_78030,287,4380_69961,Limerick Bus Station,97650-00012-1,1,4380_7778208_3320402,4380_1088 -4380_78030,292,4380_69962,Limerick Bus Station,97661-00016-1,1,4380_7778208_3320402,4380_1088 -4380_78030,290,4380_69963,Limerick Bus Station,97655-00015-1,1,4380_7778208_3320402,4380_1088 -4380_78030,294,4380_69964,Limerick Bus Station,97651-00018-1,1,4380_7778208_3320402,4380_1088 -4380_78030,295,4380_69965,Limerick Bus Station,97653-00019-1,1,4380_7778208_3320402,4380_1088 -4380_78030,293,4380_69966,Limerick Bus Station,97657-00017-1,1,4380_7778208_3320402,4380_1088 -4380_78030,296,4380_69967,Limerick Bus Station,97659-00021-1,1,4380_7778208_3320402,4380_1090 -4380_77953,295,4380_6997,Kells,55310-00019-1,0,4380_7778208_1090118,4380_91 -4380_78030,297,4380_69974,Limerick Bus Station,97596-00008-1,1,4380_7778208_3320401,4380_1087 -4380_78030,285,4380_69975,Limerick Bus Station,97594-00009-1,1,4380_7778208_3320401,4380_1088 -4380_78030,288,4380_69977,Limerick Bus Station,97584-00011-1,1,4380_7778208_3320401,4380_1088 -4380_78030,286,4380_69978,Limerick Bus Station,97588-00010-1,1,4380_7778208_3320401,4380_1088 -4380_78030,291,4380_69979,Limerick Bus Station,97592-00013-1,1,4380_7778208_3320401,4380_1090 -4380_78030,289,4380_69980,Limerick Bus Station,97590-00014-1,1,4380_7778208_3320401,4380_1088 -4380_78030,287,4380_69981,Limerick Bus Station,97586-00012-1,1,4380_7778208_3320401,4380_1088 -4380_78030,292,4380_69982,Limerick Bus Station,97589-00016-1,1,4380_7778208_3320401,4380_1088 -4380_78030,290,4380_69983,Limerick Bus Station,97595-00015-1,1,4380_7778208_3320401,4380_1088 -4380_78030,294,4380_69984,Limerick Bus Station,97587-00018-1,1,4380_7778208_3320401,4380_1088 -4380_78030,295,4380_69985,Limerick Bus Station,97591-00019-1,1,4380_7778208_3320401,4380_1088 -4380_78030,293,4380_69986,Limerick Bus Station,97585-00017-1,1,4380_7778208_3320401,4380_1088 -4380_78030,296,4380_69987,Limerick Bus Station,97593-00021-1,1,4380_7778208_3320401,4380_1090 -4380_78030,297,4380_69994,Limerick Bus Station,97675-00008-1,1,4380_7778208_3320402,4380_1087 -4380_78030,285,4380_69995,Limerick Bus Station,97682-00009-1,1,4380_7778208_3320402,4380_1088 -4380_78030,288,4380_69997,Limerick Bus Station,97676-00011-1,1,4380_7778208_3320402,4380_1088 -4380_78030,286,4380_69998,Limerick Bus Station,97678-00010-1,1,4380_7778208_3320402,4380_1088 -4380_78030,291,4380_69999,Limerick Bus Station,97680-00013-1,1,4380_7778208_3320402,4380_1090 -4380_77946,285,4380_7,Dundalk,50451-00009-1,0,4380_7778208_1000915,4380_1 -4380_77953,297,4380_7000,Kells,5368-00008-1,0,4380_7778208_1090102,4380_88 -4380_78030,289,4380_70000,Limerick Bus Station,97686-00014-1,1,4380_7778208_3320402,4380_1088 -4380_78030,287,4380_70001,Limerick Bus Station,97684-00012-1,1,4380_7778208_3320402,4380_1088 -4380_78030,292,4380_70002,Limerick Bus Station,97679-00016-1,1,4380_7778208_3320402,4380_1088 -4380_78030,290,4380_70003,Limerick Bus Station,97683-00015-1,1,4380_7778208_3320402,4380_1088 -4380_78030,294,4380_70004,Limerick Bus Station,97685-00018-1,1,4380_7778208_3320402,4380_1088 -4380_78030,295,4380_70005,Limerick Bus Station,97687-00019-1,1,4380_7778208_3320402,4380_1088 -4380_78030,293,4380_70006,Limerick Bus Station,97677-00017-1,1,4380_7778208_3320402,4380_1088 -4380_78030,296,4380_70007,Limerick Bus Station,97681-00021-1,1,4380_7778208_3320402,4380_1090 -4380_77953,291,4380_7001,Kells,5286-00013-1,0,4380_7778208_1090101,4380_93 -4380_78030,297,4380_70014,Limerick Bus Station,97622-00008-1,1,4380_7778208_3320401,4380_1087 -4380_78030,285,4380_70015,Limerick Bus Station,97618-00009-1,1,4380_7778208_3320401,4380_1088 -4380_78030,288,4380_70017,Limerick Bus Station,97610-00011-1,1,4380_7778208_3320401,4380_1088 -4380_78030,286,4380_70018,Limerick Bus Station,97614-00010-1,1,4380_7778208_3320401,4380_1088 -4380_78030,291,4380_70019,Limerick Bus Station,97616-00013-1,1,4380_7778208_3320401,4380_1087 -4380_77953,296,4380_7002,Kells,54676-00021-1,0,4380_7778208_1090101,4380_93 -4380_78030,289,4380_70020,Limerick Bus Station,97612-00014-1,1,4380_7778208_3320401,4380_1088 -4380_78030,287,4380_70021,Limerick Bus Station,97620-00012-1,1,4380_7778208_3320401,4380_1088 -4380_78030,292,4380_70022,Limerick Bus Station,97615-00016-1,1,4380_7778208_3320401,4380_1088 -4380_78030,290,4380_70023,Limerick Bus Station,97619-00015-1,1,4380_7778208_3320401,4380_1088 -4380_78030,294,4380_70024,Limerick Bus Station,97621-00018-1,1,4380_7778208_3320401,4380_1088 -4380_78030,295,4380_70025,Limerick Bus Station,97613-00019-1,1,4380_7778208_3320401,4380_1088 -4380_78030,293,4380_70026,Limerick Bus Station,97611-00017-1,1,4380_7778208_3320401,4380_1088 -4380_78030,296,4380_70027,Limerick Bus Station,97617-00021-1,1,4380_7778208_3320401,4380_1087 -4380_78030,297,4380_70034,Limerick Bus Station,97713-00008-1,1,4380_7778208_3320402,4380_1087 -4380_78030,285,4380_70035,Limerick Bus Station,97703-00009-1,1,4380_7778208_3320402,4380_1087 -4380_78030,288,4380_70037,Limerick Bus Station,97709-00011-1,1,4380_7778208_3320402,4380_1087 -4380_78030,286,4380_70038,Limerick Bus Station,97701-00010-1,1,4380_7778208_3320402,4380_1087 -4380_78030,291,4380_70039,Limerick Bus Station,97707-00013-1,1,4380_7778208_3320402,4380_1087 -4380_78030,289,4380_70040,Limerick Bus Station,97705-00014-1,1,4380_7778208_3320402,4380_1087 -4380_78030,287,4380_70041,Limerick Bus Station,97711-00012-1,1,4380_7778208_3320402,4380_1087 -4380_78030,292,4380_70042,Limerick Bus Station,97702-00016-1,1,4380_7778208_3320402,4380_1087 -4380_78030,290,4380_70043,Limerick Bus Station,97704-00015-1,1,4380_7778208_3320402,4380_1087 -4380_78030,294,4380_70044,Limerick Bus Station,97712-00018-1,1,4380_7778208_3320402,4380_1087 -4380_78030,295,4380_70045,Limerick Bus Station,97706-00019-1,1,4380_7778208_3320402,4380_1087 -4380_78030,293,4380_70046,Limerick Bus Station,97710-00017-1,1,4380_7778208_3320402,4380_1087 -4380_78030,296,4380_70047,Limerick Bus Station,97708-00021-1,1,4380_7778208_3320402,4380_1087 -4380_78031,285,4380_70053,Kilkee,97866-00009-1,0,4380_7778208_3360401,4380_1091 -4380_78031,288,4380_70055,Kilkee,97860-00011-1,0,4380_7778208_3360401,4380_1091 -4380_78031,286,4380_70056,Kilkee,97862-00010-1,0,4380_7778208_3360401,4380_1091 -4380_78031,291,4380_70057,Kilkee,97839-00013-1,0,4380_7778208_3330402,4380_1094 -4380_78031,289,4380_70058,Kilkee,97868-00014-1,0,4380_7778208_3360401,4380_1091 -4380_78031,287,4380_70059,Kilkee,97864-00012-1,0,4380_7778208_3360401,4380_1091 -4380_78031,292,4380_70060,Kilkee,97863-00016-1,0,4380_7778208_3360401,4380_1091 -4380_78031,290,4380_70061,Kilkee,97867-00015-1,0,4380_7778208_3360401,4380_1091 -4380_78031,294,4380_70062,Kilkee,97865-00018-1,0,4380_7778208_3360401,4380_1091 -4380_78031,295,4380_70063,Kilkee,97869-00019-1,0,4380_7778208_3360401,4380_1091 -4380_78031,293,4380_70064,Kilkee,97861-00017-1,0,4380_7778208_3360401,4380_1091 -4380_78031,296,4380_70065,Kilkee,97840-00021-1,0,4380_7778208_3330402,4380_1094 -4380_78031,297,4380_70067,Kilkee,97776-00008-1,0,4380_7778208_3330401,4380_1091 -4380_78031,285,4380_70073,Kilkee,97779-00009-1,0,4380_7778208_3330401,4380_1091 -4380_78031,288,4380_70075,Kilkee,97777-00011-1,0,4380_7778208_3330401,4380_1091 -4380_78031,286,4380_70076,Kilkee,97787-00010-1,0,4380_7778208_3330401,4380_1091 -4380_78031,291,4380_70077,Kilkee,97783-00013-1,0,4380_7778208_3330401,4380_1094 -4380_78031,289,4380_70078,Kilkee,97781-00014-1,0,4380_7778208_3330401,4380_1091 -4380_78031,287,4380_70079,Kilkee,97785-00012-1,0,4380_7778208_3330401,4380_1091 -4380_77953,285,4380_7008,Kells,5917-00009-1,0,4380_7778208_1090112,4380_91 -4380_78031,292,4380_70080,Kilkee,97788-00016-1,0,4380_7778208_3330401,4380_1091 -4380_78031,290,4380_70081,Kilkee,97780-00015-1,0,4380_7778208_3330401,4380_1091 -4380_78031,294,4380_70082,Kilkee,97786-00018-1,0,4380_7778208_3330401,4380_1091 -4380_78031,295,4380_70083,Kilkee,97782-00019-1,0,4380_7778208_3330401,4380_1091 -4380_78031,293,4380_70084,Kilkee,97778-00017-1,0,4380_7778208_3330401,4380_1091 -4380_78031,296,4380_70085,Kilkee,97784-00021-1,0,4380_7778208_3330401,4380_1094 -4380_77953,286,4380_7009,Kells,5926-00010-1,0,4380_7778208_1090112,4380_91 -4380_78031,285,4380_70091,Kilkee,97990-00009-1,0,4380_7778208_3360402,4380_1091 -4380_78031,288,4380_70093,Kilkee,97982-00011-1,0,4380_7778208_3360402,4380_1091 -4380_78031,286,4380_70094,Kilkee,97988-00010-1,0,4380_7778208_3360402,4380_1091 -4380_78031,291,4380_70095,Kilkee,97843-00013-1,0,4380_7778208_3330402,4380_1094 -4380_78031,289,4380_70096,Kilkee,97984-00014-1,0,4380_7778208_3360402,4380_1091 -4380_78031,287,4380_70097,Kilkee,97986-00012-1,0,4380_7778208_3360402,4380_1091 -4380_78031,292,4380_70098,Kilkee,97989-00016-1,0,4380_7778208_3360402,4380_1091 -4380_78031,290,4380_70099,Kilkee,97991-00015-1,0,4380_7778208_3360402,4380_1091 -4380_77953,288,4380_7010,Kells,5935-00011-1,0,4380_7778208_1090112,4380_91 -4380_78031,294,4380_70100,Kilkee,97987-00018-1,0,4380_7778208_3360402,4380_1091 -4380_78031,295,4380_70101,Kilkee,97985-00019-1,0,4380_7778208_3360402,4380_1091 -4380_78031,293,4380_70102,Kilkee,97983-00017-1,0,4380_7778208_3360402,4380_1091 -4380_78031,296,4380_70103,Kilkee,97844-00021-1,0,4380_7778208_3330402,4380_1094 -4380_77953,287,4380_7011,Kells,5942-00012-1,0,4380_7778208_1090112,4380_91 -4380_78031,297,4380_70110,Kilkee,97814-00008-1,0,4380_7778208_3330401,4380_1091 -4380_78031,285,4380_70111,Doonbeg,114954-00009-1,0,4380_7778208_33388801,4380_1093 -4380_78031,288,4380_70112,Doonbeg,114958-00011-1,0,4380_7778208_33388801,4380_1093 -4380_78031,286,4380_70113,Doonbeg,114956-00010-1,0,4380_7778208_33388801,4380_1093 -4380_78031,289,4380_70114,Doonbeg,114962-00014-1,0,4380_7778208_33388801,4380_1093 -4380_78031,287,4380_70115,Doonbeg,114960-00012-1,0,4380_7778208_33388801,4380_1093 -4380_78031,290,4380_70116,Doonbeg,114955-00015-1,0,4380_7778208_33388801,4380_1093 -4380_78031,292,4380_70117,Doonbeg,114957-00016-1,0,4380_7778208_33388801,4380_1093 -4380_78031,294,4380_70118,Doonbeg,114961-00018-1,0,4380_7778208_33388801,4380_1093 -4380_78031,293,4380_70119,Doonbeg,114959-00017-1,0,4380_7778208_33388801,4380_1093 -4380_77953,289,4380_7012,Kells,5906-00014-1,0,4380_7778208_1090112,4380_91 -4380_78031,295,4380_70120,Doonbeg,114963-00019-1,0,4380_7778208_33388801,4380_1093 -4380_78031,285,4380_70126,Doonbeg,97911-00009-1,0,4380_7778208_3360401,4380_1092 -4380_78031,288,4380_70128,Doonbeg,97918-00011-1,0,4380_7778208_3360401,4380_1092 -4380_78031,286,4380_70129,Doonbeg,97909-00010-1,0,4380_7778208_3360401,4380_1092 -4380_77953,290,4380_7013,Kells,55179-00015-1,0,4380_7778208_1090112,4380_91 -4380_78031,291,4380_70130,Doonbeg,97907-00013-1,0,4380_7778208_3360401,4380_1095 -4380_78031,289,4380_70131,Doonbeg,97916-00014-1,0,4380_7778208_3360401,4380_1092 -4380_78031,287,4380_70132,Doonbeg,97914-00012-1,0,4380_7778208_3360401,4380_1092 -4380_78031,292,4380_70133,Doonbeg,97910-00016-1,0,4380_7778208_3360401,4380_1092 -4380_78031,290,4380_70134,Doonbeg,97912-00015-1,0,4380_7778208_3360401,4380_1092 -4380_78031,294,4380_70135,Doonbeg,97915-00018-1,0,4380_7778208_3360401,4380_1092 -4380_78031,295,4380_70136,Doonbeg,97917-00019-1,0,4380_7778208_3360401,4380_1092 -4380_78031,293,4380_70137,Doonbeg,97919-00017-1,0,4380_7778208_3360401,4380_1092 -4380_78031,296,4380_70138,Doonbeg,97908-00021-1,0,4380_7778208_3360401,4380_1095 -4380_77953,292,4380_7014,Kells,55176-00016-1,0,4380_7778208_1090112,4380_91 -4380_78031,285,4380_70144,Ennis,97774-00009-1,1,4380_7778208_3330401,4380_1096 -4380_78031,288,4380_70146,Ennis,97768-00011-1,1,4380_7778208_3330401,4380_1096 -4380_78031,286,4380_70147,Ennis,97772-00010-1,1,4380_7778208_3330401,4380_1096 -4380_78031,291,4380_70148,Ennis,97770-00013-1,1,4380_7778208_3330401,4380_1096 -4380_78031,289,4380_70149,Ennis,97766-00014-1,1,4380_7778208_3330401,4380_1096 -4380_77953,293,4380_7015,Kells,55178-00017-1,0,4380_7778208_1090112,4380_91 -4380_78031,287,4380_70150,Ennis,97764-00012-1,1,4380_7778208_3330401,4380_1096 -4380_78031,292,4380_70151,Ennis,97773-00016-1,1,4380_7778208_3330401,4380_1096 -4380_78031,290,4380_70152,Ennis,97775-00015-1,1,4380_7778208_3330401,4380_1096 -4380_78031,294,4380_70153,Ennis,97765-00018-1,1,4380_7778208_3330401,4380_1096 -4380_78031,295,4380_70154,Ennis,97767-00019-1,1,4380_7778208_3330401,4380_1096 -4380_78031,293,4380_70155,Ennis,97769-00017-1,1,4380_7778208_3330401,4380_1096 -4380_78031,296,4380_70156,Ennis,97771-00021-1,1,4380_7778208_3330401,4380_1096 -4380_77953,294,4380_7016,Kells,55177-00018-1,0,4380_7778208_1090112,4380_91 -4380_78031,285,4380_70162,Ennis,97972-00009-1,1,4380_7778208_3360402,4380_1096 -4380_78031,288,4380_70164,Ennis,97976-00011-1,1,4380_7778208_3360402,4380_1096 -4380_78031,286,4380_70165,Ennis,97980-00010-1,1,4380_7778208_3360402,4380_1096 -4380_78031,291,4380_70166,Ennis,97974-00013-1,1,4380_7778208_3360402,4380_1098 -4380_78031,289,4380_70167,Ennis,97978-00014-1,1,4380_7778208_3360402,4380_1096 -4380_78031,287,4380_70168,Ennis,97970-00012-1,1,4380_7778208_3360402,4380_1096 -4380_78031,292,4380_70169,Ennis,97981-00016-1,1,4380_7778208_3360402,4380_1096 -4380_77953,295,4380_7017,Kells,55180-00019-1,0,4380_7778208_1090112,4380_91 -4380_78031,290,4380_70170,Ennis,97973-00015-1,1,4380_7778208_3360402,4380_1096 -4380_78031,294,4380_70171,Ennis,97971-00018-1,1,4380_7778208_3360402,4380_1096 -4380_78031,295,4380_70172,Ennis,97979-00019-1,1,4380_7778208_3360402,4380_1096 -4380_78031,293,4380_70173,Ennis,97977-00017-1,1,4380_7778208_3360402,4380_1096 -4380_78031,296,4380_70174,Ennis,97975-00021-1,1,4380_7778208_3360402,4380_1098 -4380_78031,297,4380_70176,Ennis,97894-00008-1,1,4380_7778208_3360401,4380_1096 -4380_78031,285,4380_70182,Ennis,97895-00009-1,1,4380_7778208_3360401,4380_1096 -4380_78031,288,4380_70184,Ennis,97903-00011-1,1,4380_7778208_3360401,4380_1096 -4380_78031,286,4380_70185,Ennis,97899-00010-1,1,4380_7778208_3360401,4380_1096 -4380_78031,291,4380_70186,Ennis,97897-00013-1,1,4380_7778208_3360401,4380_1098 -4380_78031,289,4380_70187,Ennis,97901-00014-1,1,4380_7778208_3360401,4380_1096 -4380_78031,287,4380_70188,Ennis,97905-00012-1,1,4380_7778208_3360401,4380_1096 -4380_78031,292,4380_70189,Ennis,97900-00016-1,1,4380_7778208_3360401,4380_1096 -4380_78031,290,4380_70190,Ennis,97896-00015-1,1,4380_7778208_3360401,4380_1096 -4380_78031,294,4380_70191,Ennis,97906-00018-1,1,4380_7778208_3360401,4380_1096 -4380_78031,295,4380_70192,Ennis,97902-00019-1,1,4380_7778208_3360401,4380_1096 -4380_78031,293,4380_70193,Ennis,97904-00017-1,1,4380_7778208_3360401,4380_1096 -4380_78031,296,4380_70194,Ennis,97898-00021-1,1,4380_7778208_3360401,4380_1098 -4380_78031,285,4380_70200,Ennis,97823-00009-1,1,4380_7778208_3330401,4380_1096 -4380_78031,288,4380_70202,Ennis,97815-00011-1,1,4380_7778208_3330401,4380_1096 -4380_78031,286,4380_70203,Ennis,97817-00010-1,1,4380_7778208_3330401,4380_1096 -4380_78031,291,4380_70204,Ennis,97821-00013-1,1,4380_7778208_3330401,4380_1098 -4380_78031,289,4380_70205,Ennis,97825-00014-1,1,4380_7778208_3330401,4380_1096 -4380_78031,287,4380_70206,Ennis,97819-00012-1,1,4380_7778208_3330401,4380_1096 -4380_78031,292,4380_70207,Ennis,97818-00016-1,1,4380_7778208_3330401,4380_1096 -4380_78031,290,4380_70208,Ennis,97824-00015-1,1,4380_7778208_3330401,4380_1096 -4380_78031,294,4380_70209,Ennis,97820-00018-1,1,4380_7778208_3330401,4380_1096 -4380_78031,295,4380_70210,Ennis,97826-00019-1,1,4380_7778208_3330401,4380_1096 -4380_78031,293,4380_70211,Ennis,97816-00017-1,1,4380_7778208_3330401,4380_1096 -4380_78031,296,4380_70212,Ennis,97822-00021-1,1,4380_7778208_3330401,4380_1098 -4380_78031,297,4380_70214,Ennis,97847-00008-1,1,4380_7778208_3330402,4380_1096 -4380_78031,285,4380_70220,Ennis,98022-00009-1,1,4380_7778208_3360402,4380_1097 -4380_78031,288,4380_70222,Ennis,98020-00011-1,1,4380_7778208_3360402,4380_1097 -4380_78031,286,4380_70223,Ennis,98026-00010-1,1,4380_7778208_3360402,4380_1097 -4380_78031,291,4380_70224,Ennis,98018-00013-1,1,4380_7778208_3360402,4380_1097 -4380_78031,289,4380_70225,Ennis,98016-00014-1,1,4380_7778208_3360402,4380_1097 -4380_78031,287,4380_70226,Ennis,98024-00012-1,1,4380_7778208_3360402,4380_1097 -4380_78031,292,4380_70227,Ennis,98027-00016-1,1,4380_7778208_3360402,4380_1097 -4380_78031,290,4380_70228,Ennis,98023-00015-1,1,4380_7778208_3360402,4380_1097 -4380_78031,294,4380_70229,Ennis,98025-00018-1,1,4380_7778208_3360402,4380_1097 -4380_77953,285,4380_7023,Virginia,5874-00009-1,0,4380_7778208_1090111,4380_97 -4380_78031,295,4380_70230,Ennis,98017-00019-1,1,4380_7778208_3360402,4380_1097 -4380_78031,293,4380_70231,Ennis,98021-00017-1,1,4380_7778208_3360402,4380_1097 -4380_78031,296,4380_70232,Ennis,98019-00021-1,1,4380_7778208_3360402,4380_1097 -4380_78032,285,4380_70238,Kilkee,97964-00009-1,0,4380_7778208_3360402,4380_1099 -4380_77953,286,4380_7024,Virginia,5876-00010-1,0,4380_7778208_1090111,4380_97 -4380_78032,288,4380_70240,Kilkee,97968-00011-1,0,4380_7778208_3360402,4380_1099 -4380_78032,286,4380_70241,Kilkee,97962-00010-1,0,4380_7778208_3360402,4380_1099 -4380_78032,291,4380_70242,Kilkee,97960-00013-1,0,4380_7778208_3360402,4380_1099 -4380_78032,289,4380_70243,Kilkee,97958-00014-1,0,4380_7778208_3360402,4380_1099 -4380_78032,287,4380_70244,Kilkee,97966-00012-1,0,4380_7778208_3360402,4380_1099 -4380_78032,292,4380_70245,Kilkee,97963-00016-1,0,4380_7778208_3360402,4380_1099 -4380_78032,290,4380_70246,Kilkee,97965-00015-1,0,4380_7778208_3360402,4380_1099 -4380_78032,294,4380_70247,Kilkee,97967-00018-1,0,4380_7778208_3360402,4380_1099 -4380_78032,295,4380_70248,Kilkee,97959-00019-1,0,4380_7778208_3360402,4380_1099 -4380_78032,293,4380_70249,Kilkee,97969-00017-1,0,4380_7778208_3360402,4380_1099 -4380_77953,288,4380_7025,Virginia,5878-00011-1,0,4380_7778208_1090111,4380_97 -4380_78032,296,4380_70250,Kilkee,97961-00021-1,0,4380_7778208_3360402,4380_1099 -4380_78032,297,4380_70252,Kilkee,97881-00008-1,0,4380_7778208_3360401,4380_1099 -4380_78032,285,4380_70258,Kilkee,97892-00009-1,0,4380_7778208_3360401,4380_1099 -4380_77953,287,4380_7026,Virginia,5880-00012-1,0,4380_7778208_1090111,4380_97 -4380_78032,288,4380_70260,Kilkee,97882-00011-1,0,4380_7778208_3360401,4380_1099 -4380_78032,286,4380_70261,Kilkee,97884-00010-1,0,4380_7778208_3360401,4380_1099 -4380_78032,291,4380_70262,Kilkee,97888-00013-1,0,4380_7778208_3360401,4380_1099 -4380_78032,289,4380_70263,Kilkee,97886-00014-1,0,4380_7778208_3360401,4380_1099 -4380_78032,287,4380_70264,Kilkee,97890-00012-1,0,4380_7778208_3360401,4380_1099 -4380_78032,292,4380_70265,Kilkee,97885-00016-1,0,4380_7778208_3360401,4380_1099 -4380_78032,290,4380_70266,Kilkee,97893-00015-1,0,4380_7778208_3360401,4380_1099 -4380_78032,294,4380_70267,Kilkee,97891-00018-1,0,4380_7778208_3360401,4380_1099 -4380_78032,295,4380_70268,Kilkee,97887-00019-1,0,4380_7778208_3360401,4380_1099 -4380_78032,293,4380_70269,Kilkee,97883-00017-1,0,4380_7778208_3360401,4380_1099 -4380_77953,289,4380_7027,Virginia,5872-00014-1,0,4380_7778208_1090111,4380_97 -4380_78032,296,4380_70270,Kilkee,97889-00021-1,0,4380_7778208_3360401,4380_1099 -4380_78032,297,4380_70272,Kilkee,97845-00008-1,0,4380_7778208_3330402,4380_1099 -4380_78032,285,4380_70278,Kilkee,97810-00009-1,0,4380_7778208_3330401,4380_1099 -4380_77953,290,4380_7028,Virginia,55139-00015-1,0,4380_7778208_1090111,4380_97 -4380_78032,288,4380_70280,Kilkee,97812-00011-1,0,4380_7778208_3330401,4380_1099 -4380_78032,286,4380_70281,Kilkee,97802-00010-1,0,4380_7778208_3330401,4380_1099 -4380_78032,291,4380_70282,Kilkee,97806-00013-1,0,4380_7778208_3330401,4380_1099 -4380_78032,289,4380_70283,Kilkee,97808-00014-1,0,4380_7778208_3330401,4380_1099 -4380_78032,287,4380_70284,Kilkee,97804-00012-1,0,4380_7778208_3330401,4380_1099 -4380_78032,292,4380_70285,Kilkee,97803-00016-1,0,4380_7778208_3330401,4380_1099 -4380_78032,290,4380_70286,Kilkee,97811-00015-1,0,4380_7778208_3330401,4380_1099 -4380_78032,294,4380_70287,Kilkee,97805-00018-1,0,4380_7778208_3330401,4380_1099 -4380_78032,295,4380_70288,Kilkee,97809-00019-1,0,4380_7778208_3330401,4380_1099 -4380_78032,293,4380_70289,Kilkee,97813-00017-1,0,4380_7778208_3330401,4380_1099 -4380_77953,292,4380_7029,Virginia,55138-00016-1,0,4380_7778208_1090111,4380_97 -4380_78032,296,4380_70290,Kilkee,97807-00021-1,0,4380_7778208_3330401,4380_1099 -4380_78032,297,4380_70292,Kilkee,97913-00008-1,0,4380_7778208_3360401,4380_1099 -4380_78032,285,4380_70298,Doonbeg,98006-00009-1,0,4380_7778208_3360402,4380_1100 -4380_78113,285,4380_703,Dundalk,49986-00009-1,0,4380_7778208_1000906,4380_10 -4380_77953,293,4380_7030,Virginia,55137-00017-1,0,4380_7778208_1090111,4380_97 -4380_78032,288,4380_70300,Doonbeg,98012-00011-1,0,4380_7778208_3360402,4380_1100 -4380_78032,286,4380_70301,Doonbeg,98008-00010-1,0,4380_7778208_3360402,4380_1100 -4380_78032,291,4380_70302,Doonbeg,98014-00013-1,0,4380_7778208_3360402,4380_1100 -4380_78032,289,4380_70303,Doonbeg,98010-00014-1,0,4380_7778208_3360402,4380_1100 -4380_78032,287,4380_70304,Doonbeg,98004-00012-1,0,4380_7778208_3360402,4380_1100 -4380_78032,292,4380_70305,Doonbeg,98009-00016-1,0,4380_7778208_3360402,4380_1100 -4380_78032,290,4380_70306,Doonbeg,98007-00015-1,0,4380_7778208_3360402,4380_1100 -4380_78032,294,4380_70307,Doonbeg,98005-00018-1,0,4380_7778208_3360402,4380_1100 -4380_78032,295,4380_70308,Doonbeg,98011-00019-1,0,4380_7778208_3360402,4380_1100 -4380_78032,293,4380_70309,Doonbeg,98013-00017-1,0,4380_7778208_3360402,4380_1100 -4380_77953,294,4380_7031,Virginia,55141-00018-1,0,4380_7778208_1090111,4380_97 -4380_78032,296,4380_70310,Doonbeg,98015-00021-1,0,4380_7778208_3360402,4380_1100 -4380_78032,285,4380_70316,Doonbeg,97837-00009-1,0,4380_7778208_3330401,4380_1100 -4380_78032,288,4380_70318,Doonbeg,97835-00011-1,0,4380_7778208_3330401,4380_1100 -4380_78032,286,4380_70319,Doonbeg,97827-00010-1,0,4380_7778208_3330401,4380_1100 -4380_77953,295,4380_7032,Virginia,55140-00019-1,0,4380_7778208_1090111,4380_97 -4380_78032,291,4380_70320,Doonbeg,97831-00013-1,0,4380_7778208_3330401,4380_1100 -4380_78032,289,4380_70321,Doonbeg,97833-00014-1,0,4380_7778208_3330401,4380_1100 -4380_78032,287,4380_70322,Doonbeg,97829-00012-1,0,4380_7778208_3330401,4380_1100 -4380_78032,292,4380_70323,Doonbeg,97828-00016-1,0,4380_7778208_3330401,4380_1100 -4380_78032,290,4380_70324,Doonbeg,97838-00015-1,0,4380_7778208_3330401,4380_1100 -4380_78032,294,4380_70325,Doonbeg,97830-00018-1,0,4380_7778208_3330401,4380_1100 -4380_78032,295,4380_70326,Doonbeg,97834-00019-1,0,4380_7778208_3330401,4380_1100 -4380_78032,293,4380_70327,Doonbeg,97836-00017-1,0,4380_7778208_3330401,4380_1100 -4380_78032,296,4380_70328,Doonbeg,97832-00021-1,0,4380_7778208_3330401,4380_1100 -4380_78032,297,4380_70330,Doonbeg,97933-00008-1,0,4380_7778208_3360401,4380_1100 -4380_78032,285,4380_70336,Doonbeg,97936-00009-1,0,4380_7778208_3360401,4380_1100 -4380_78032,288,4380_70338,Doonbeg,97944-00011-1,0,4380_7778208_3360401,4380_1100 -4380_78032,286,4380_70339,Doonbeg,97938-00010-1,0,4380_7778208_3360401,4380_1100 -4380_78032,291,4380_70340,Doonbeg,97942-00013-1,0,4380_7778208_3360401,4380_1100 -4380_78032,289,4380_70341,Doonbeg,97934-00014-1,0,4380_7778208_3360401,4380_1100 -4380_78032,287,4380_70342,Doonbeg,97940-00012-1,0,4380_7778208_3360401,4380_1100 -4380_78032,292,4380_70343,Doonbeg,97939-00016-1,0,4380_7778208_3360401,4380_1100 -4380_78032,290,4380_70344,Doonbeg,97937-00015-1,0,4380_7778208_3360401,4380_1100 -4380_78032,294,4380_70345,Doonbeg,97941-00018-1,0,4380_7778208_3360401,4380_1100 -4380_78032,295,4380_70346,Doonbeg,97935-00019-1,0,4380_7778208_3360401,4380_1100 -4380_78032,293,4380_70347,Doonbeg,97945-00017-1,0,4380_7778208_3360401,4380_1100 -4380_78032,296,4380_70348,Doonbeg,97943-00021-1,0,4380_7778208_3360401,4380_1100 -4380_77953,297,4380_7035,Kells,5709-00008-1,0,4380_7778208_1090107,4380_88 -4380_78032,285,4380_70354,Ennis,97856-00009-1,1,4380_7778208_3360401,4380_1102 -4380_78032,288,4380_70356,Ennis,97848-00011-1,1,4380_7778208_3360401,4380_1102 -4380_78032,286,4380_70357,Ennis,97852-00010-1,1,4380_7778208_3360401,4380_1102 -4380_78032,291,4380_70358,Ennis,97858-00013-1,1,4380_7778208_3360401,4380_1102 -4380_78032,289,4380_70359,Ennis,97850-00014-1,1,4380_7778208_3360401,4380_1102 -4380_77953,291,4380_7036,Kells,5574-00013-1,0,4380_7778208_1090105,4380_93 -4380_78032,287,4380_70360,Ennis,97854-00012-1,1,4380_7778208_3360401,4380_1102 -4380_78032,292,4380_70361,Ennis,97853-00016-1,1,4380_7778208_3360401,4380_1102 -4380_78032,290,4380_70362,Ennis,97857-00015-1,1,4380_7778208_3360401,4380_1102 -4380_78032,294,4380_70363,Ennis,97855-00018-1,1,4380_7778208_3360401,4380_1102 -4380_78032,295,4380_70364,Ennis,97851-00019-1,1,4380_7778208_3360401,4380_1102 -4380_78032,293,4380_70365,Ennis,97849-00017-1,1,4380_7778208_3360401,4380_1102 -4380_78032,296,4380_70366,Ennis,97859-00021-1,1,4380_7778208_3360401,4380_1102 -4380_77953,296,4380_7037,Kells,54889-00021-1,0,4380_7778208_1090105,4380_93 -4380_78032,285,4380_70372,Ennis,97956-00009-1,1,4380_7778208_3360402,4380_1102 -4380_78032,288,4380_70374,Ennis,97946-00011-1,1,4380_7778208_3360402,4380_1102 -4380_78032,286,4380_70375,Ennis,97954-00010-1,1,4380_7778208_3360402,4380_1102 -4380_78032,291,4380_70376,Ennis,97950-00013-1,1,4380_7778208_3360402,4380_1102 -4380_78032,289,4380_70377,Ennis,97948-00014-1,1,4380_7778208_3360402,4380_1102 -4380_78032,287,4380_70378,Ennis,97952-00012-1,1,4380_7778208_3360402,4380_1102 -4380_78032,292,4380_70379,Ennis,97955-00016-1,1,4380_7778208_3360402,4380_1102 -4380_78032,290,4380_70380,Ennis,97957-00015-1,1,4380_7778208_3360402,4380_1102 -4380_78032,294,4380_70381,Ennis,97953-00018-1,1,4380_7778208_3360402,4380_1102 -4380_78032,295,4380_70382,Ennis,97949-00019-1,1,4380_7778208_3360402,4380_1102 -4380_78032,293,4380_70383,Ennis,97947-00017-1,1,4380_7778208_3360402,4380_1102 -4380_78032,296,4380_70384,Ennis,97951-00021-1,1,4380_7778208_3360402,4380_1102 -4380_78032,297,4380_70386,Ennis,97870-00008-1,1,4380_7778208_3360401,4380_1102 -4380_78032,285,4380_70392,Ennis,97873-00009-1,1,4380_7778208_3360401,4380_1101 -4380_78032,288,4380_70394,Ennis,97875-00011-1,1,4380_7778208_3360401,4380_1101 -4380_78032,286,4380_70395,Ennis,97877-00010-1,1,4380_7778208_3360401,4380_1101 -4380_78032,291,4380_70396,Ennis,97841-00013-1,1,4380_7778208_3330402,4380_1101 -4380_78032,289,4380_70397,Ennis,97879-00014-1,1,4380_7778208_3360401,4380_1101 -4380_78032,287,4380_70398,Ennis,97871-00012-1,1,4380_7778208_3360401,4380_1101 -4380_78032,292,4380_70399,Ennis,97878-00016-1,1,4380_7778208_3360401,4380_1101 -4380_78113,286,4380_704,Dundalk,49984-00010-1,0,4380_7778208_1000906,4380_10 -4380_78032,290,4380_70400,Ennis,97874-00015-1,1,4380_7778208_3360401,4380_1101 -4380_78032,294,4380_70401,Ennis,97872-00018-1,1,4380_7778208_3360401,4380_1101 -4380_78032,295,4380_70402,Ennis,97880-00019-1,1,4380_7778208_3360401,4380_1101 -4380_78032,293,4380_70403,Ennis,97876-00017-1,1,4380_7778208_3360401,4380_1101 -4380_78032,296,4380_70404,Ennis,97842-00021-1,1,4380_7778208_3330402,4380_1101 -4380_78032,297,4380_70406,Ennis,97789-00008-1,1,4380_7778208_3330401,4380_1101 -4380_78032,285,4380_70412,Ennis,97796-00009-1,1,4380_7778208_3330401,4380_1101 -4380_78032,288,4380_70414,Ennis,97792-00011-1,1,4380_7778208_3330401,4380_1101 -4380_78032,286,4380_70415,Ennis,97800-00010-1,1,4380_7778208_3330401,4380_1101 -4380_78032,291,4380_70416,Ennis,97794-00013-1,1,4380_7778208_3330401,4380_1101 -4380_78032,289,4380_70417,Ennis,97798-00014-1,1,4380_7778208_3330401,4380_1101 -4380_78032,287,4380_70418,Ennis,97790-00012-1,1,4380_7778208_3330401,4380_1101 -4380_78032,292,4380_70419,Ennis,97801-00016-1,1,4380_7778208_3330401,4380_1101 -4380_78032,290,4380_70420,Ennis,97797-00015-1,1,4380_7778208_3330401,4380_1101 -4380_78032,294,4380_70421,Ennis,97791-00018-1,1,4380_7778208_3330401,4380_1101 -4380_78032,295,4380_70422,Ennis,97799-00019-1,1,4380_7778208_3330401,4380_1101 -4380_78032,293,4380_70423,Ennis,97793-00017-1,1,4380_7778208_3330401,4380_1101 -4380_78032,296,4380_70424,Ennis,97795-00021-1,1,4380_7778208_3330401,4380_1101 -4380_78032,297,4380_70426,Ennis,97846-00008-1,1,4380_7778208_3330402,4380_1101 -4380_77953,285,4380_7043,Kells,5600-00009-1,0,4380_7778208_1090106,4380_91 -4380_78032,285,4380_70432,Ennis,97992-00009-1,1,4380_7778208_3360402,4380_1101 -4380_78032,288,4380_70434,Ennis,97998-00011-1,1,4380_7778208_3360402,4380_1101 -4380_78032,286,4380_70435,Ennis,97996-00010-1,1,4380_7778208_3360402,4380_1101 -4380_78032,291,4380_70436,Ennis,98002-00013-1,1,4380_7778208_3360402,4380_1101 -4380_78032,289,4380_70437,Ennis,97994-00014-1,1,4380_7778208_3360402,4380_1101 -4380_78032,287,4380_70438,Ennis,98000-00012-1,1,4380_7778208_3360402,4380_1101 -4380_78032,292,4380_70439,Ennis,97997-00016-1,1,4380_7778208_3360402,4380_1101 -4380_77953,286,4380_7044,Kells,5608-00010-1,0,4380_7778208_1090106,4380_91 -4380_78032,290,4380_70440,Ennis,97993-00015-1,1,4380_7778208_3360402,4380_1101 -4380_78032,294,4380_70441,Ennis,98001-00018-1,1,4380_7778208_3360402,4380_1101 -4380_78032,295,4380_70442,Ennis,97995-00019-1,1,4380_7778208_3360402,4380_1101 -4380_78032,293,4380_70443,Ennis,97999-00017-1,1,4380_7778208_3360402,4380_1101 -4380_78032,296,4380_70444,Ennis,98003-00021-1,1,4380_7778208_3360402,4380_1101 -4380_78032,297,4380_70446,Ennis,97920-00008-1,1,4380_7778208_3360401,4380_1101 -4380_77953,288,4380_7045,Kells,5616-00011-1,0,4380_7778208_1090106,4380_91 -4380_78032,285,4380_70452,Ennis,97929-00009-1,1,4380_7778208_3360401,4380_1102 -4380_78032,288,4380_70454,Ennis,97925-00011-1,1,4380_7778208_3360401,4380_1102 -4380_78032,286,4380_70455,Ennis,97923-00010-1,1,4380_7778208_3360401,4380_1102 -4380_78032,291,4380_70456,Ennis,97931-00013-1,1,4380_7778208_3360401,4380_1103 -4380_78032,289,4380_70457,Ennis,97927-00014-1,1,4380_7778208_3360401,4380_1102 -4380_78032,287,4380_70458,Ennis,97921-00012-1,1,4380_7778208_3360401,4380_1102 -4380_78032,292,4380_70459,Ennis,97924-00016-1,1,4380_7778208_3360401,4380_1102 -4380_77953,287,4380_7046,Kells,5624-00012-1,0,4380_7778208_1090106,4380_91 -4380_78032,290,4380_70460,Ennis,97930-00015-1,1,4380_7778208_3360401,4380_1102 -4380_78032,294,4380_70461,Ennis,97922-00018-1,1,4380_7778208_3360401,4380_1102 -4380_78032,295,4380_70462,Ennis,97928-00019-1,1,4380_7778208_3360401,4380_1102 -4380_78032,293,4380_70463,Ennis,97926-00017-1,1,4380_7778208_3360401,4380_1102 -4380_78032,296,4380_70464,Ennis,97932-00021-1,1,4380_7778208_3360401,4380_1103 -4380_77953,289,4380_7047,Kells,5592-00014-1,0,4380_7778208_1090106,4380_91 -4380_78033,297,4380_70471,Shannon Airport,32943-00008-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_70472,Shannon Airport,32819-00009-1,0,4380_7778208_3430401,4380_1104 -4380_78033,288,4380_70474,Shannon Airport,32851-00011-1,0,4380_7778208_3430401,4380_1104 -4380_78033,286,4380_70475,Shannon Airport,32841-00010-1,0,4380_7778208_3430401,4380_1104 -4380_78033,291,4380_70476,Shannon Airport,32910-00013-1,0,4380_7778208_3430401,4380_1104 -4380_78033,289,4380_70477,Shannon Airport,32797-00014-1,0,4380_7778208_3430401,4380_1104 -4380_78033,287,4380_70478,Shannon Airport,32885-00012-1,0,4380_7778208_3430401,4380_1104 -4380_78033,292,4380_70479,Shannon Airport,98028-00016-1,0,4380_7778208_3430401,4380_1104 -4380_77953,290,4380_7048,Kells,54944-00015-1,0,4380_7778208_1090106,4380_91 -4380_78033,290,4380_70480,Shannon Airport,98032-00015-1,0,4380_7778208_3430401,4380_1104 -4380_78033,294,4380_70481,Shannon Airport,98029-00018-1,0,4380_7778208_3430401,4380_1104 -4380_78033,295,4380_70482,Shannon Airport,98033-00019-1,0,4380_7778208_3430401,4380_1104 -4380_78033,293,4380_70483,Shannon Airport,98031-00017-1,0,4380_7778208_3430401,4380_1104 -4380_78033,296,4380_70484,Shannon Airport,98030-00021-1,0,4380_7778208_3430401,4380_1104 -4380_77953,292,4380_7049,Kells,54943-00016-1,0,4380_7778208_1090106,4380_91 -4380_78033,285,4380_70490,Shannon Airport,98098-00009-1,0,4380_7778208_3430402,4380_1104 -4380_78033,288,4380_70492,Shannon Airport,98100-00011-1,0,4380_7778208_3430402,4380_1104 -4380_78033,286,4380_70493,Shannon Airport,98102-00010-1,0,4380_7778208_3430402,4380_1104 -4380_78033,291,4380_70494,Shannon Airport,33083-00013-1,0,4380_7778208_3430403,4380_1104 -4380_78033,289,4380_70495,Shannon Airport,98095-00014-1,0,4380_7778208_3430402,4380_1104 -4380_78033,287,4380_70496,Shannon Airport,98093-00012-1,0,4380_7778208_3430402,4380_1104 -4380_78033,292,4380_70497,Shannon Airport,98103-00016-1,0,4380_7778208_3430402,4380_1104 -4380_78033,290,4380_70498,Shannon Airport,98099-00015-1,0,4380_7778208_3430402,4380_1104 -4380_78033,294,4380_70499,Shannon Airport,98094-00018-1,0,4380_7778208_3430402,4380_1104 -4380_78113,297,4380_705,Dundalk,49886-00008-1,0,4380_7778208_1000905,4380_13 -4380_77953,293,4380_7050,Kells,54942-00017-1,0,4380_7778208_1090106,4380_91 -4380_78033,295,4380_70500,Shannon Airport,98096-00019-1,0,4380_7778208_3430402,4380_1104 -4380_78033,293,4380_70501,Shannon Airport,98101-00017-1,0,4380_7778208_3430402,4380_1104 -4380_78033,296,4380_70502,Shannon Airport,98152-00021-1,0,4380_7778208_3430403,4380_1104 -4380_78033,297,4380_70509,Shannon Airport,98104-00008-1,0,4380_7778208_3430402,4380_1104 -4380_77953,294,4380_7051,Kells,54941-00018-1,0,4380_7778208_1090106,4380_91 -4380_78033,285,4380_70510,Shannon Airport,33149-00009-1,0,4380_7778208_3430404,4380_1104 -4380_78033,288,4380_70512,Shannon Airport,33205-00011-1,0,4380_7778208_3430404,4380_1104 -4380_78033,286,4380_70513,Shannon Airport,33177-00010-1,0,4380_7778208_3430404,4380_1104 -4380_78033,291,4380_70514,Shannon Airport,98277-00013-1,0,4380_7778208_3430404,4380_1104 -4380_78033,289,4380_70515,Shannon Airport,33121-00014-1,0,4380_7778208_3430404,4380_1104 -4380_78033,287,4380_70516,Shannon Airport,33247-00012-1,0,4380_7778208_3430404,4380_1104 -4380_78033,292,4380_70517,Shannon Airport,98273-00016-1,0,4380_7778208_3430404,4380_1104 -4380_78033,290,4380_70518,Shannon Airport,98276-00015-1,0,4380_7778208_3430404,4380_1104 -4380_78033,294,4380_70519,Shannon Airport,98272-00018-1,0,4380_7778208_3430404,4380_1104 -4380_77953,295,4380_7052,Kells,54945-00019-1,0,4380_7778208_1090106,4380_91 -4380_78033,295,4380_70520,Shannon Airport,98274-00019-1,0,4380_7778208_3430404,4380_1104 -4380_78033,293,4380_70521,Shannon Airport,98275-00017-1,0,4380_7778208_3430404,4380_1104 -4380_78033,296,4380_70522,Shannon Airport,98278-00021-1,0,4380_7778208_3430404,4380_1104 -4380_78033,285,4380_70528,Shannon Airport,98370-00009-1,0,4380_7778208_3430405,4380_1104 -4380_78033,288,4380_70529,Shannon Airport,98372-00011-1,0,4380_7778208_3430405,4380_1104 -4380_78033,286,4380_70530,Shannon Airport,98366-00010-1,0,4380_7778208_3430405,4380_1104 -4380_78033,289,4380_70531,Shannon Airport,98368-00014-1,0,4380_7778208_3430405,4380_1104 -4380_78033,287,4380_70532,Shannon Airport,98374-00012-1,0,4380_7778208_3430405,4380_1104 -4380_78033,292,4380_70533,Shannon Airport,98367-00016-1,0,4380_7778208_3430405,4380_1104 -4380_78033,290,4380_70534,Shannon Airport,98371-00015-1,0,4380_7778208_3430405,4380_1104 -4380_78033,294,4380_70535,Shannon Airport,98375-00018-1,0,4380_7778208_3430405,4380_1104 -4380_78033,295,4380_70536,Shannon Airport,98369-00019-1,0,4380_7778208_3430405,4380_1104 -4380_78033,293,4380_70537,Shannon Airport,98373-00017-1,0,4380_7778208_3430405,4380_1104 -4380_78033,291,4380_70539,Shannon Airport,32973-00013-1,0,4380_7778208_3430402,4380_1104 -4380_78033,296,4380_70540,Shannon Airport,98105-00021-1,0,4380_7778208_3430402,4380_1104 -4380_78033,285,4380_70546,Shannon Airport,33374-00009-1,0,4380_7778208_3430406,4380_1104 -4380_78033,288,4380_70547,Shannon Airport,33418-00011-1,0,4380_7778208_3430406,4380_1104 -4380_78033,286,4380_70548,Shannon Airport,33396-00010-1,0,4380_7778208_3430406,4380_1104 -4380_78033,289,4380_70549,Shannon Airport,33362-00014-1,0,4380_7778208_3430406,4380_1104 -4380_78033,287,4380_70550,Shannon Airport,33440-00012-1,0,4380_7778208_3430406,4380_1104 -4380_78033,292,4380_70551,Shannon Airport,98492-00016-1,0,4380_7778208_3430406,4380_1104 -4380_78033,290,4380_70552,Shannon Airport,98488-00015-1,0,4380_7778208_3430406,4380_1104 -4380_78033,294,4380_70553,Shannon Airport,98490-00018-1,0,4380_7778208_3430406,4380_1104 -4380_78033,295,4380_70554,Shannon Airport,98491-00019-1,0,4380_7778208_3430406,4380_1104 -4380_78033,293,4380_70555,Shannon Airport,98489-00017-1,0,4380_7778208_3430406,4380_1104 -4380_78033,297,4380_70562,Shannon Airport,32945-00008-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_70563,Shannon Airport,32821-00009-1,0,4380_7778208_3430401,4380_1105 -4380_78033,288,4380_70565,Shannon Airport,32853-00011-1,0,4380_7778208_3430401,4380_1105 -4380_78033,286,4380_70566,Shannon Airport,32843-00010-1,0,4380_7778208_3430401,4380_1105 -4380_78033,291,4380_70567,Shannon Airport,32912-00013-1,0,4380_7778208_3430401,4380_1104 -4380_78033,289,4380_70568,Shannon Airport,32799-00014-1,0,4380_7778208_3430401,4380_1105 -4380_78033,287,4380_70569,Shannon Airport,32887-00012-1,0,4380_7778208_3430401,4380_1105 -4380_78033,292,4380_70570,Shannon Airport,98042-00016-1,0,4380_7778208_3430401,4380_1105 -4380_78033,290,4380_70571,Shannon Airport,98044-00015-1,0,4380_7778208_3430401,4380_1105 -4380_78033,294,4380_70572,Shannon Airport,98045-00018-1,0,4380_7778208_3430401,4380_1105 -4380_78033,295,4380_70573,Shannon Airport,98043-00019-1,0,4380_7778208_3430401,4380_1105 -4380_78033,293,4380_70574,Shannon Airport,98040-00017-1,0,4380_7778208_3430401,4380_1105 -4380_78033,296,4380_70575,Shannon Airport,98041-00021-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_70581,Shannon Airport,33528-00009-1,0,4380_7778208_3430407,4380_1104 -4380_78033,288,4380_70582,Shannon Airport,33584-00011-1,0,4380_7778208_3430407,4380_1104 -4380_78033,286,4380_70583,Shannon Airport,33556-00010-1,0,4380_7778208_3430407,4380_1104 -4380_78033,289,4380_70584,Shannon Airport,33486-00014-1,0,4380_7778208_3430407,4380_1104 -4380_78033,287,4380_70585,Shannon Airport,33612-00012-1,0,4380_7778208_3430407,4380_1104 -4380_78033,292,4380_70586,Shannon Airport,98563-00016-1,0,4380_7778208_3430407,4380_1104 -4380_78033,290,4380_70587,Shannon Airport,98561-00015-1,0,4380_7778208_3430407,4380_1104 -4380_78033,294,4380_70588,Shannon Airport,98564-00018-1,0,4380_7778208_3430407,4380_1104 -4380_78033,295,4380_70589,Shannon Airport,98560-00019-1,0,4380_7778208_3430407,4380_1104 -4380_78033,293,4380_70590,Shannon Airport,98562-00017-1,0,4380_7778208_3430407,4380_1104 -4380_78033,291,4380_70592,Shannon Airport,33085-00013-1,0,4380_7778208_3430403,4380_1104 -4380_78033,296,4380_70593,Shannon Airport,98164-00021-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_70599,Shannon Airport,98173-00009-1,0,4380_7778208_3430403,4380_1104 -4380_78113,287,4380_706,Dundalk,49988-00012-1,0,4380_7778208_1000906,4380_10 -4380_77953,285,4380_7060,Dunshaughlin,5829-00009-1,0,4380_7778208_1090110,4380_96 -4380_78033,288,4380_70600,Shannon Airport,98167-00011-1,0,4380_7778208_3430403,4380_1104 -4380_78033,286,4380_70601,Shannon Airport,98171-00010-1,0,4380_7778208_3430403,4380_1104 -4380_78033,289,4380_70602,Shannon Airport,98169-00014-1,0,4380_7778208_3430403,4380_1104 -4380_78033,287,4380_70603,Shannon Airport,98165-00012-1,0,4380_7778208_3430403,4380_1104 -4380_78033,292,4380_70604,Shannon Airport,98172-00016-1,0,4380_7778208_3430403,4380_1104 -4380_78033,290,4380_70605,Shannon Airport,98174-00015-1,0,4380_7778208_3430403,4380_1104 -4380_78033,294,4380_70606,Shannon Airport,98166-00018-1,0,4380_7778208_3430403,4380_1104 -4380_78033,295,4380_70607,Shannon Airport,98170-00019-1,0,4380_7778208_3430403,4380_1104 -4380_78033,293,4380_70608,Shannon Airport,98168-00017-1,0,4380_7778208_3430403,4380_1104 -4380_77953,286,4380_7061,Dunshaughlin,5837-00010-1,0,4380_7778208_1090110,4380_96 -4380_78033,297,4380_70615,Shannon Airport,33093-00008-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_70616,Shannon Airport,98126-00009-1,0,4380_7778208_3430402,4380_1105 -4380_78033,288,4380_70618,Shannon Airport,98120-00011-1,0,4380_7778208_3430402,4380_1105 -4380_78033,286,4380_70619,Shannon Airport,98122-00010-1,0,4380_7778208_3430402,4380_1105 -4380_77953,297,4380_7062,Dunshaughlin,6911-00008-1,0,4380_7778208_1090903,4380_90 -4380_78033,291,4380_70620,Shannon Airport,33332-00013-1,0,4380_7778208_3430405,4380_1104 -4380_78033,289,4380_70621,Shannon Airport,98118-00014-1,0,4380_7778208_3430402,4380_1105 -4380_78033,287,4380_70622,Shannon Airport,98124-00012-1,0,4380_7778208_3430402,4380_1105 -4380_78033,292,4380_70623,Shannon Airport,98123-00016-1,0,4380_7778208_3430402,4380_1105 -4380_78033,290,4380_70624,Shannon Airport,98127-00015-1,0,4380_7778208_3430402,4380_1105 -4380_78033,294,4380_70625,Shannon Airport,98125-00018-1,0,4380_7778208_3430402,4380_1105 -4380_78033,295,4380_70626,Shannon Airport,98119-00019-1,0,4380_7778208_3430402,4380_1105 -4380_78033,293,4380_70627,Shannon Airport,98121-00017-1,0,4380_7778208_3430402,4380_1105 -4380_78033,296,4380_70628,Shannon Airport,98386-00021-1,0,4380_7778208_3430405,4380_1104 -4380_77953,288,4380_7063,Dunshaughlin,5845-00011-1,0,4380_7778208_1090110,4380_96 -4380_78033,285,4380_70634,Shannon Airport,33660-00009-1,0,4380_7778208_3430408,4380_1104 -4380_78033,288,4380_70635,Shannon Airport,33704-00011-1,0,4380_7778208_3430408,4380_1104 -4380_78033,286,4380_70636,Shannon Airport,33693-00010-1,0,4380_7778208_3430408,4380_1104 -4380_78033,289,4380_70637,Shannon Airport,33649-00014-1,0,4380_7778208_3430408,4380_1104 -4380_78033,287,4380_70638,Shannon Airport,33726-00012-1,0,4380_7778208_3430408,4380_1104 -4380_78033,292,4380_70639,Shannon Airport,98654-00016-1,0,4380_7778208_3430408,4380_1104 -4380_77953,287,4380_7064,Dunshaughlin,5853-00012-1,0,4380_7778208_1090110,4380_96 -4380_78033,290,4380_70640,Shannon Airport,98657-00015-1,0,4380_7778208_3430408,4380_1104 -4380_78033,294,4380_70641,Shannon Airport,98658-00018-1,0,4380_7778208_3430408,4380_1104 -4380_78033,295,4380_70642,Shannon Airport,98656-00019-1,0,4380_7778208_3430408,4380_1104 -4380_78033,293,4380_70643,Shannon Airport,98655-00017-1,0,4380_7778208_3430408,4380_1104 -4380_78033,291,4380_70645,Shannon Airport,33474-00013-1,0,4380_7778208_3430406,4380_1104 -4380_78033,296,4380_70646,Shannon Airport,98498-00021-1,0,4380_7778208_3430406,4380_1104 -4380_77953,289,4380_7065,Dunshaughlin,5821-00014-1,0,4380_7778208_1090110,4380_96 -4380_78033,285,4380_70652,Shannon Airport,33151-00009-1,0,4380_7778208_3430404,4380_1104 -4380_78033,288,4380_70653,Shannon Airport,33207-00011-1,0,4380_7778208_3430404,4380_1104 -4380_78033,286,4380_70654,Shannon Airport,33179-00010-1,0,4380_7778208_3430404,4380_1104 -4380_78033,289,4380_70655,Shannon Airport,33123-00014-1,0,4380_7778208_3430404,4380_1104 -4380_78033,287,4380_70656,Shannon Airport,33249-00012-1,0,4380_7778208_3430404,4380_1104 -4380_78033,292,4380_70657,Shannon Airport,98287-00016-1,0,4380_7778208_3430404,4380_1104 -4380_78033,290,4380_70658,Shannon Airport,98288-00015-1,0,4380_7778208_3430404,4380_1104 -4380_78033,294,4380_70659,Shannon Airport,98290-00018-1,0,4380_7778208_3430404,4380_1104 -4380_77953,290,4380_7066,Dunshaughlin,55109-00015-1,0,4380_7778208_1090110,4380_96 -4380_78033,295,4380_70660,Shannon Airport,98286-00019-1,0,4380_7778208_3430404,4380_1104 -4380_78033,293,4380_70661,Shannon Airport,98289-00017-1,0,4380_7778208_3430404,4380_1104 -4380_78033,297,4380_70668,Shannon Airport,98128-00008-1,0,4380_7778208_3430402,4380_1104 -4380_78033,285,4380_70669,Shannon Airport,98391-00009-1,0,4380_7778208_3430405,4380_1105 -4380_77953,291,4380_7067,Dunshaughlin,6994-00013-1,0,4380_7778208_1090905,4380_100 -4380_78033,288,4380_70671,Shannon Airport,98395-00011-1,0,4380_7778208_3430405,4380_1105 -4380_78033,286,4380_70672,Shannon Airport,98389-00010-1,0,4380_7778208_3430405,4380_1105 -4380_78033,291,4380_70673,Shannon Airport,98291-00013-1,0,4380_7778208_3430404,4380_1106 -4380_78033,289,4380_70674,Shannon Airport,98387-00014-1,0,4380_7778208_3430405,4380_1105 -4380_78033,287,4380_70675,Shannon Airport,98393-00012-1,0,4380_7778208_3430405,4380_1105 -4380_78033,292,4380_70676,Shannon Airport,98390-00016-1,0,4380_7778208_3430405,4380_1105 -4380_78033,290,4380_70677,Shannon Airport,98392-00015-1,0,4380_7778208_3430405,4380_1105 -4380_78033,294,4380_70678,Shannon Airport,98394-00018-1,0,4380_7778208_3430405,4380_1105 -4380_78033,295,4380_70679,Shannon Airport,98388-00019-1,0,4380_7778208_3430405,4380_1105 -4380_77953,292,4380_7068,Dunshaughlin,55112-00016-1,0,4380_7778208_1090110,4380_96 -4380_78033,293,4380_70680,Shannon Airport,98396-00017-1,0,4380_7778208_3430405,4380_1105 -4380_78033,296,4380_70681,Shannon Airport,98292-00021-1,0,4380_7778208_3430404,4380_1106 -4380_78033,285,4380_70687,Shannon Airport,33772-00009-1,0,4380_7778208_3430409,4380_1104 -4380_78033,288,4380_70689,Shannon Airport,33820-00011-1,0,4380_7778208_3430409,4380_1104 -4380_77953,293,4380_7069,Dunshaughlin,55111-00017-1,0,4380_7778208_1090110,4380_96 -4380_78033,286,4380_70690,Shannon Airport,33808-00010-1,0,4380_7778208_3430409,4380_1104 -4380_78033,291,4380_70691,Shannon Airport,98570-00013-1,0,4380_7778208_3430407,4380_1105 -4380_78033,289,4380_70692,Shannon Airport,33748-00014-1,0,4380_7778208_3430409,4380_1104 -4380_78033,287,4380_70693,Shannon Airport,33856-00012-1,0,4380_7778208_3430409,4380_1104 -4380_78033,292,4380_70694,Shannon Airport,98713-00016-1,0,4380_7778208_3430409,4380_1104 -4380_78033,290,4380_70695,Shannon Airport,98712-00015-1,0,4380_7778208_3430409,4380_1104 -4380_78033,294,4380_70696,Shannon Airport,98711-00018-1,0,4380_7778208_3430409,4380_1104 -4380_78033,295,4380_70697,Shannon Airport,98710-00019-1,0,4380_7778208_3430409,4380_1104 -4380_78033,293,4380_70698,Shannon Airport,98709-00017-1,0,4380_7778208_3430409,4380_1104 -4380_78033,296,4380_70699,Shannon Airport,98571-00021-1,0,4380_7778208_3430407,4380_1105 -4380_78113,288,4380_707,Dundalk,49980-00011-1,0,4380_7778208_1000906,4380_10 -4380_77953,294,4380_7070,Dunshaughlin,55110-00018-1,0,4380_7778208_1090110,4380_96 -4380_78033,297,4380_70706,Shannon Airport,32947-00008-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_70707,Shannon Airport,33376-00009-1,0,4380_7778208_3430406,4380_1105 -4380_78033,288,4380_70709,Shannon Airport,33420-00011-1,0,4380_7778208_3430406,4380_1105 -4380_77953,295,4380_7071,Dunshaughlin,55113-00019-1,0,4380_7778208_1090110,4380_96 -4380_78033,286,4380_70710,Shannon Airport,33398-00010-1,0,4380_7778208_3430406,4380_1105 -4380_78033,291,4380_70711,Shannon Airport,32975-00013-1,0,4380_7778208_3430402,4380_1106 -4380_78033,289,4380_70712,Shannon Airport,33364-00014-1,0,4380_7778208_3430406,4380_1105 -4380_78033,287,4380_70713,Shannon Airport,33442-00012-1,0,4380_7778208_3430406,4380_1105 -4380_78033,292,4380_70714,Shannon Airport,98503-00016-1,0,4380_7778208_3430406,4380_1105 -4380_78033,290,4380_70715,Shannon Airport,98500-00015-1,0,4380_7778208_3430406,4380_1105 -4380_78033,294,4380_70716,Shannon Airport,98502-00018-1,0,4380_7778208_3430406,4380_1105 -4380_78033,295,4380_70717,Shannon Airport,98501-00019-1,0,4380_7778208_3430406,4380_1105 -4380_78033,293,4380_70718,Shannon Airport,98504-00017-1,0,4380_7778208_3430406,4380_1105 -4380_78033,296,4380_70719,Shannon Airport,98129-00021-1,0,4380_7778208_3430402,4380_1106 -4380_77953,296,4380_7072,Dunshaughlin,55465-00021-1,0,4380_7778208_1090905,4380_100 -4380_78033,285,4380_70725,Shannon Airport,32823-00009-1,0,4380_7778208_3430401,4380_1104 -4380_78033,288,4380_70727,Shannon Airport,32855-00011-1,0,4380_7778208_3430401,4380_1104 -4380_78033,286,4380_70728,Shannon Airport,32845-00010-1,0,4380_7778208_3430401,4380_1104 -4380_78033,291,4380_70729,Shannon Airport,32914-00013-1,0,4380_7778208_3430401,4380_1105 -4380_78033,289,4380_70730,Shannon Airport,32801-00014-1,0,4380_7778208_3430401,4380_1104 -4380_78033,287,4380_70731,Shannon Airport,32889-00012-1,0,4380_7778208_3430401,4380_1104 -4380_78033,292,4380_70732,Shannon Airport,98052-00016-1,0,4380_7778208_3430401,4380_1104 -4380_78033,290,4380_70733,Shannon Airport,98056-00015-1,0,4380_7778208_3430401,4380_1104 -4380_78033,294,4380_70734,Shannon Airport,98053-00018-1,0,4380_7778208_3430401,4380_1104 -4380_78033,295,4380_70735,Shannon Airport,98055-00019-1,0,4380_7778208_3430401,4380_1104 -4380_78033,293,4380_70736,Shannon Airport,98057-00017-1,0,4380_7778208_3430401,4380_1104 -4380_78033,296,4380_70737,Shannon Airport,98054-00021-1,0,4380_7778208_3430401,4380_1105 -4380_78033,297,4380_70744,Shannon Airport,33095-00008-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_70745,Shannon Airport,33530-00009-1,0,4380_7778208_3430407,4380_1105 -4380_78033,288,4380_70747,Shannon Airport,33586-00011-1,0,4380_7778208_3430407,4380_1105 -4380_78033,286,4380_70748,Shannon Airport,33558-00010-1,0,4380_7778208_3430407,4380_1105 -4380_78033,291,4380_70749,Shannon Airport,33087-00013-1,0,4380_7778208_3430403,4380_1104 -4380_78033,289,4380_70750,Shannon Airport,33488-00014-1,0,4380_7778208_3430407,4380_1105 -4380_78033,287,4380_70751,Shannon Airport,33614-00012-1,0,4380_7778208_3430407,4380_1105 -4380_78033,292,4380_70752,Shannon Airport,98576-00016-1,0,4380_7778208_3430407,4380_1105 -4380_78033,290,4380_70753,Shannon Airport,98574-00015-1,0,4380_7778208_3430407,4380_1105 -4380_78033,294,4380_70754,Shannon Airport,98578-00018-1,0,4380_7778208_3430407,4380_1105 -4380_78033,295,4380_70755,Shannon Airport,98575-00019-1,0,4380_7778208_3430407,4380_1105 -4380_78033,293,4380_70756,Shannon Airport,98577-00017-1,0,4380_7778208_3430407,4380_1105 -4380_78033,296,4380_70757,Shannon Airport,98186-00021-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_70763,Shannon Airport,33662-00009-1,0,4380_7778208_3430408,4380_1104 -4380_78033,288,4380_70765,Shannon Airport,33706-00011-1,0,4380_7778208_3430408,4380_1104 -4380_78033,286,4380_70766,Shannon Airport,33695-00010-1,0,4380_7778208_3430408,4380_1104 -4380_78033,291,4380_70767,Shannon Airport,33334-00013-1,0,4380_7778208_3430405,4380_1105 -4380_78033,289,4380_70768,Shannon Airport,33651-00014-1,0,4380_7778208_3430408,4380_1104 -4380_78033,287,4380_70769,Shannon Airport,33728-00012-1,0,4380_7778208_3430408,4380_1104 -4380_78033,292,4380_70770,Shannon Airport,98665-00016-1,0,4380_7778208_3430408,4380_1104 -4380_78033,290,4380_70771,Shannon Airport,98666-00015-1,0,4380_7778208_3430408,4380_1104 -4380_78033,294,4380_70772,Shannon Airport,98668-00018-1,0,4380_7778208_3430408,4380_1104 -4380_78033,295,4380_70773,Shannon Airport,98667-00019-1,0,4380_7778208_3430408,4380_1104 -4380_78033,293,4380_70774,Shannon Airport,98664-00017-1,0,4380_7778208_3430408,4380_1104 -4380_78033,296,4380_70775,Shannon Airport,98408-00021-1,0,4380_7778208_3430405,4380_1105 -4380_77953,285,4380_7078,Kells,5663-00009-1,0,4380_7778208_1090107,4380_91 -4380_78033,297,4380_70782,Shannon Airport,98132-00008-1,0,4380_7778208_3430402,4380_1104 -4380_78033,285,4380_70783,Shannon Airport,98189-00009-1,0,4380_7778208_3430403,4380_1105 -4380_78033,288,4380_70785,Shannon Airport,98187-00011-1,0,4380_7778208_3430403,4380_1105 -4380_78033,286,4380_70786,Shannon Airport,98193-00010-1,0,4380_7778208_3430403,4380_1105 -4380_78033,291,4380_70787,Shannon Airport,33476-00013-1,0,4380_7778208_3430406,4380_1105 -4380_78033,289,4380_70788,Shannon Airport,98191-00014-1,0,4380_7778208_3430403,4380_1105 -4380_78033,287,4380_70789,Shannon Airport,98195-00012-1,0,4380_7778208_3430403,4380_1105 -4380_77953,286,4380_7079,Kells,5671-00010-1,0,4380_7778208_1090107,4380_91 -4380_78033,292,4380_70790,Shannon Airport,98194-00016-1,0,4380_7778208_3430403,4380_1105 -4380_78033,290,4380_70791,Shannon Airport,98190-00015-1,0,4380_7778208_3430403,4380_1105 -4380_78033,294,4380_70792,Shannon Airport,98196-00018-1,0,4380_7778208_3430403,4380_1105 -4380_78033,295,4380_70793,Shannon Airport,98192-00019-1,0,4380_7778208_3430403,4380_1105 -4380_78033,293,4380_70794,Shannon Airport,98188-00017-1,0,4380_7778208_3430403,4380_1105 -4380_78033,296,4380_70795,Shannon Airport,98510-00021-1,0,4380_7778208_3430406,4380_1105 -4380_78113,289,4380_708,Dundalk,49978-00014-1,0,4380_7778208_1000906,4380_10 -4380_77953,288,4380_7080,Kells,5679-00011-1,0,4380_7778208_1090107,4380_91 -4380_78033,285,4380_70801,Shannon Airport,97740-00009-1,0,4380_7778208_3320403,4380_1104 -4380_78033,288,4380_70803,Shannon Airport,97742-00011-1,0,4380_7778208_3320403,4380_1104 -4380_78033,286,4380_70804,Shannon Airport,97738-00010-1,0,4380_7778208_3320403,4380_1104 -4380_78033,291,4380_70805,Shannon Airport,32977-00013-1,0,4380_7778208_3430402,4380_1105 -4380_78033,289,4380_70806,Shannon Airport,97736-00014-1,0,4380_7778208_3320403,4380_1104 -4380_78033,287,4380_70807,Shannon Airport,97734-00012-1,0,4380_7778208_3320403,4380_1104 -4380_78033,292,4380_70808,Shannon Airport,97739-00016-1,0,4380_7778208_3320403,4380_1104 -4380_78033,290,4380_70809,Shannon Airport,97741-00015-1,0,4380_7778208_3320403,4380_1104 -4380_77953,287,4380_7081,Kells,5687-00012-1,0,4380_7778208_1090107,4380_91 -4380_78033,294,4380_70810,Shannon Airport,97735-00018-1,0,4380_7778208_3320403,4380_1104 -4380_78033,295,4380_70811,Shannon Airport,97737-00019-1,0,4380_7778208_3320403,4380_1104 -4380_78033,293,4380_70812,Shannon Airport,97743-00017-1,0,4380_7778208_3320403,4380_1104 -4380_78033,296,4380_70813,Shannon Airport,98133-00021-1,0,4380_7778208_3430402,4380_1105 -4380_77953,289,4380_7082,Kells,5655-00014-1,0,4380_7778208_1090107,4380_91 -4380_78033,297,4380_70820,Shannon Airport,32949-00008-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_70821,Shannon Airport,33153-00009-1,0,4380_7778208_3430404,4380_1105 -4380_78033,288,4380_70823,Shannon Airport,33209-00011-1,0,4380_7778208_3430404,4380_1105 -4380_78033,286,4380_70824,Shannon Airport,33181-00010-1,0,4380_7778208_3430404,4380_1105 -4380_78033,291,4380_70825,Shannon Airport,32916-00013-1,0,4380_7778208_3430401,4380_1106 -4380_78033,289,4380_70826,Shannon Airport,33125-00014-1,0,4380_7778208_3430404,4380_1105 -4380_78033,287,4380_70827,Shannon Airport,33251-00012-1,0,4380_7778208_3430404,4380_1105 -4380_78033,292,4380_70828,Shannon Airport,98300-00016-1,0,4380_7778208_3430404,4380_1105 -4380_78033,290,4380_70829,Shannon Airport,98304-00015-1,0,4380_7778208_3430404,4380_1105 -4380_77953,290,4380_7083,Kells,54986-00015-1,0,4380_7778208_1090107,4380_91 -4380_78033,294,4380_70830,Shannon Airport,98301-00018-1,0,4380_7778208_3430404,4380_1105 -4380_78033,295,4380_70831,Shannon Airport,98302-00019-1,0,4380_7778208_3430404,4380_1105 -4380_78033,293,4380_70832,Shannon Airport,98303-00017-1,0,4380_7778208_3430404,4380_1105 -4380_78033,296,4380_70833,Shannon Airport,98059-00021-1,0,4380_7778208_3430401,4380_1106 -4380_78033,285,4380_70839,Shannon Airport,33774-00009-1,0,4380_7778208_3430409,4380_1104 -4380_77953,292,4380_7084,Kells,54990-00016-1,0,4380_7778208_1090107,4380_91 -4380_78033,288,4380_70841,Shannon Airport,33822-00011-1,0,4380_7778208_3430409,4380_1104 -4380_78033,286,4380_70842,Shannon Airport,33810-00010-1,0,4380_7778208_3430409,4380_1104 -4380_78033,291,4380_70843,Shannon Airport,98305-00013-1,0,4380_7778208_3430404,4380_1105 -4380_78033,289,4380_70844,Shannon Airport,33750-00014-1,0,4380_7778208_3430409,4380_1104 -4380_78033,287,4380_70845,Shannon Airport,33858-00012-1,0,4380_7778208_3430409,4380_1104 -4380_78033,292,4380_70846,Shannon Airport,98722-00016-1,0,4380_7778208_3430409,4380_1104 -4380_78033,290,4380_70847,Shannon Airport,98723-00015-1,0,4380_7778208_3430409,4380_1104 -4380_78033,294,4380_70848,Shannon Airport,98720-00018-1,0,4380_7778208_3430409,4380_1104 -4380_78033,295,4380_70849,Shannon Airport,98719-00019-1,0,4380_7778208_3430409,4380_1104 -4380_77953,293,4380_7085,Kells,54987-00017-1,0,4380_7778208_1090107,4380_91 -4380_78033,293,4380_70850,Shannon Airport,98721-00017-1,0,4380_7778208_3430409,4380_1104 -4380_78033,296,4380_70851,Shannon Airport,98306-00021-1,0,4380_7778208_3430404,4380_1105 -4380_78033,297,4380_70858,Shannon Airport,33097-00008-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_70859,Shannon Airport,33532-00009-1,0,4380_7778208_3430407,4380_1105 -4380_77953,294,4380_7086,Kells,54989-00018-1,0,4380_7778208_1090107,4380_91 -4380_78033,288,4380_70861,Shannon Airport,33588-00011-1,0,4380_7778208_3430407,4380_1105 -4380_78033,286,4380_70862,Shannon Airport,33560-00010-1,0,4380_7778208_3430407,4380_1105 -4380_78033,291,4380_70863,Shannon Airport,33089-00013-1,0,4380_7778208_3430403,4380_1106 -4380_78033,289,4380_70864,Shannon Airport,33490-00014-1,0,4380_7778208_3430407,4380_1105 -4380_78033,287,4380_70865,Shannon Airport,33616-00012-1,0,4380_7778208_3430407,4380_1105 -4380_78033,292,4380_70866,Shannon Airport,98584-00016-1,0,4380_7778208_3430407,4380_1105 -4380_78033,290,4380_70867,Shannon Airport,98585-00015-1,0,4380_7778208_3430407,4380_1105 -4380_78033,294,4380_70868,Shannon Airport,98587-00018-1,0,4380_7778208_3430407,4380_1105 -4380_78033,295,4380_70869,Shannon Airport,98588-00019-1,0,4380_7778208_3430407,4380_1105 -4380_77953,295,4380_7087,Kells,54988-00019-1,0,4380_7778208_1090107,4380_91 -4380_78033,293,4380_70870,Shannon Airport,98586-00017-1,0,4380_7778208_3430407,4380_1105 -4380_78033,296,4380_70871,Shannon Airport,98208-00021-1,0,4380_7778208_3430403,4380_1106 -4380_78033,285,4380_70877,Shannon Airport,32824-00009-1,0,4380_7778208_3430401,4380_1104 -4380_78033,288,4380_70879,Shannon Airport,32856-00011-1,0,4380_7778208_3430401,4380_1104 -4380_78033,286,4380_70880,Shannon Airport,32846-00010-1,0,4380_7778208_3430401,4380_1104 -4380_78033,291,4380_70881,Shannon Airport,33478-00013-1,0,4380_7778208_3430406,4380_1105 -4380_78033,289,4380_70882,Shannon Airport,32802-00014-1,0,4380_7778208_3430401,4380_1104 -4380_78033,287,4380_70883,Shannon Airport,32890-00012-1,0,4380_7778208_3430401,4380_1104 -4380_78033,292,4380_70884,Shannon Airport,98064-00016-1,0,4380_7778208_3430401,4380_1104 -4380_78033,290,4380_70885,Shannon Airport,98061-00015-1,0,4380_7778208_3430401,4380_1104 -4380_78033,294,4380_70886,Shannon Airport,98063-00018-1,0,4380_7778208_3430401,4380_1104 -4380_78033,295,4380_70887,Shannon Airport,98062-00019-1,0,4380_7778208_3430401,4380_1104 -4380_78033,293,4380_70888,Shannon Airport,98065-00017-1,0,4380_7778208_3430401,4380_1104 -4380_78033,296,4380_70889,Shannon Airport,98512-00021-1,0,4380_7778208_3430406,4380_1105 -4380_78033,297,4380_70896,Shannon Airport,98136-00008-1,0,4380_7778208_3430402,4380_1104 -4380_78033,285,4380_70897,Shannon Airport,98422-00009-1,0,4380_7778208_3430405,4380_1105 -4380_78033,288,4380_70899,Shannon Airport,98429-00011-1,0,4380_7778208_3430405,4380_1105 -4380_78113,290,4380_709,Dundalk,49987-00015-1,0,4380_7778208_1000906,4380_10 -4380_78033,286,4380_70900,Shannon Airport,98427-00010-1,0,4380_7778208_3430405,4380_1105 -4380_78033,291,4380_70901,Shannon Airport,33336-00013-1,0,4380_7778208_3430405,4380_1106 -4380_78033,289,4380_70902,Shannon Airport,98425-00014-1,0,4380_7778208_3430405,4380_1105 -4380_78033,287,4380_70903,Shannon Airport,98420-00012-1,0,4380_7778208_3430405,4380_1105 -4380_78033,292,4380_70904,Shannon Airport,98428-00016-1,0,4380_7778208_3430405,4380_1105 -4380_78033,290,4380_70905,Shannon Airport,98423-00015-1,0,4380_7778208_3430405,4380_1105 -4380_78033,294,4380_70906,Shannon Airport,98421-00018-1,0,4380_7778208_3430405,4380_1105 -4380_78033,295,4380_70907,Shannon Airport,98426-00019-1,0,4380_7778208_3430405,4380_1105 -4380_78033,293,4380_70908,Shannon Airport,98430-00017-1,0,4380_7778208_3430405,4380_1105 -4380_78033,296,4380_70909,Shannon Airport,98424-00021-1,0,4380_7778208_3430405,4380_1106 -4380_78033,285,4380_70915,Shannon Airport,33378-00009-1,0,4380_7778208_3430406,4380_1104 -4380_78033,288,4380_70916,Shannon Airport,33422-00011-1,0,4380_7778208_3430406,4380_1104 -4380_78033,286,4380_70917,Shannon Airport,33400-00010-1,0,4380_7778208_3430406,4380_1104 -4380_78033,289,4380_70918,Shannon Airport,33366-00014-1,0,4380_7778208_3430406,4380_1104 -4380_78033,287,4380_70919,Shannon Airport,33444-00012-1,0,4380_7778208_3430406,4380_1104 -4380_78033,292,4380_70920,Shannon Airport,98514-00016-1,0,4380_7778208_3430406,4380_1104 -4380_78033,290,4380_70921,Shannon Airport,98516-00015-1,0,4380_7778208_3430406,4380_1104 -4380_78033,294,4380_70922,Shannon Airport,98515-00018-1,0,4380_7778208_3430406,4380_1104 -4380_78033,295,4380_70923,Shannon Airport,98513-00019-1,0,4380_7778208_3430406,4380_1104 -4380_78033,293,4380_70924,Shannon Airport,98517-00017-1,0,4380_7778208_3430406,4380_1104 -4380_78033,291,4380_70926,Shannon Airport,98594-00013-1,0,4380_7778208_3430407,4380_1104 -4380_78033,296,4380_70927,Shannon Airport,98595-00021-1,0,4380_7778208_3430407,4380_1104 -4380_78033,285,4380_70933,Shannon Airport,98210-00009-1,0,4380_7778208_3430403,4380_1104 -4380_78033,288,4380_70934,Shannon Airport,98218-00011-1,0,4380_7778208_3430403,4380_1104 -4380_78033,286,4380_70935,Shannon Airport,98212-00010-1,0,4380_7778208_3430403,4380_1104 -4380_78033,289,4380_70936,Shannon Airport,98216-00014-1,0,4380_7778208_3430403,4380_1104 -4380_78033,287,4380_70937,Shannon Airport,98214-00012-1,0,4380_7778208_3430403,4380_1104 -4380_78033,292,4380_70938,Shannon Airport,98213-00016-1,0,4380_7778208_3430403,4380_1104 -4380_78033,290,4380_70939,Shannon Airport,98211-00015-1,0,4380_7778208_3430403,4380_1104 -4380_78033,294,4380_70940,Shannon Airport,98215-00018-1,0,4380_7778208_3430403,4380_1104 -4380_78033,295,4380_70941,Shannon Airport,98217-00019-1,0,4380_7778208_3430403,4380_1104 -4380_78033,293,4380_70942,Shannon Airport,98219-00017-1,0,4380_7778208_3430403,4380_1104 -4380_78033,297,4380_70949,Shannon Airport,32951-00008-1,0,4380_7778208_3430401,4380_1104 -4380_77953,285,4380_7095,Kells,6065-00009-1,0,4380_7778208_1090116,4380_95 -4380_78033,285,4380_70950,Shannon Airport,33155-00009-1,0,4380_7778208_3430404,4380_1105 -4380_78033,288,4380_70952,Shannon Airport,33211-00011-1,0,4380_7778208_3430404,4380_1105 -4380_78033,286,4380_70953,Shannon Airport,33183-00010-1,0,4380_7778208_3430404,4380_1105 -4380_78033,291,4380_70954,Shannon Airport,32979-00013-1,0,4380_7778208_3430402,4380_1106 -4380_78033,289,4380_70955,Shannon Airport,33127-00014-1,0,4380_7778208_3430404,4380_1105 -4380_78033,287,4380_70956,Shannon Airport,33253-00012-1,0,4380_7778208_3430404,4380_1105 -4380_78033,292,4380_70957,Shannon Airport,98314-00016-1,0,4380_7778208_3430404,4380_1105 -4380_78033,290,4380_70958,Shannon Airport,98317-00015-1,0,4380_7778208_3430404,4380_1105 -4380_78033,294,4380_70959,Shannon Airport,98318-00018-1,0,4380_7778208_3430404,4380_1105 -4380_77953,286,4380_7096,Kells,6067-00010-1,0,4380_7778208_1090116,4380_95 -4380_78033,295,4380_70960,Shannon Airport,98315-00019-1,0,4380_7778208_3430404,4380_1105 -4380_78033,293,4380_70961,Shannon Airport,98316-00017-1,0,4380_7778208_3430404,4380_1105 -4380_78033,296,4380_70962,Shannon Airport,98137-00021-1,0,4380_7778208_3430402,4380_1106 -4380_78033,285,4380_70968,Shannon Airport,33776-00009-1,0,4380_7778208_3430409,4380_1104 -4380_78033,288,4380_70969,Shannon Airport,33824-00011-1,0,4380_7778208_3430409,4380_1104 -4380_77953,297,4380_7097,Kells,5641-00008-1,0,4380_7778208_1090106,4380_91 -4380_78033,286,4380_70970,Shannon Airport,33812-00010-1,0,4380_7778208_3430409,4380_1104 -4380_78033,289,4380_70971,Shannon Airport,33752-00014-1,0,4380_7778208_3430409,4380_1104 -4380_78033,287,4380_70972,Shannon Airport,33860-00012-1,0,4380_7778208_3430409,4380_1104 -4380_78033,292,4380_70973,Shannon Airport,98733-00016-1,0,4380_7778208_3430409,4380_1104 -4380_78033,290,4380_70974,Shannon Airport,98731-00015-1,0,4380_7778208_3430409,4380_1104 -4380_78033,294,4380_70975,Shannon Airport,98729-00018-1,0,4380_7778208_3430409,4380_1104 -4380_78033,295,4380_70976,Shannon Airport,98732-00019-1,0,4380_7778208_3430409,4380_1104 -4380_78033,293,4380_70977,Shannon Airport,98730-00017-1,0,4380_7778208_3430409,4380_1104 -4380_78033,291,4380_70979,Shannon Airport,32918-00013-1,0,4380_7778208_3430401,4380_1104 -4380_77953,288,4380_7098,Kells,6069-00011-1,0,4380_7778208_1090116,4380_95 -4380_78033,296,4380_70980,Shannon Airport,98071-00021-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_70986,Shannon Airport,33534-00009-1,0,4380_7778208_3430407,4380_1104 -4380_78033,288,4380_70987,Shannon Airport,33590-00011-1,0,4380_7778208_3430407,4380_1104 -4380_78033,286,4380_70988,Shannon Airport,33562-00010-1,0,4380_7778208_3430407,4380_1104 -4380_78033,289,4380_70989,Shannon Airport,33492-00014-1,0,4380_7778208_3430407,4380_1104 -4380_77953,287,4380_7099,Kells,6071-00012-1,0,4380_7778208_1090116,4380_95 -4380_78033,287,4380_70990,Shannon Airport,33618-00012-1,0,4380_7778208_3430407,4380_1104 -4380_78033,292,4380_70991,Shannon Airport,98602-00016-1,0,4380_7778208_3430407,4380_1104 -4380_78033,290,4380_70992,Shannon Airport,98598-00015-1,0,4380_7778208_3430407,4380_1104 -4380_78033,294,4380_70993,Shannon Airport,98601-00018-1,0,4380_7778208_3430407,4380_1104 -4380_78033,295,4380_70994,Shannon Airport,98597-00019-1,0,4380_7778208_3430407,4380_1104 -4380_78033,293,4380_70995,Shannon Airport,98596-00017-1,0,4380_7778208_3430407,4380_1104 -4380_78113,291,4380_710,Dundalk,49982-00013-1,0,4380_7778208_1000906,4380_16 -4380_77953,289,4380_7100,Kells,6063-00014-1,0,4380_7778208_1090116,4380_95 -4380_78033,297,4380_71002,Shannon Airport,33099-00008-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_71003,Shannon Airport,33665-00009-1,0,4380_7778208_3430408,4380_1105 -4380_78033,288,4380_71005,Shannon Airport,33709-00011-1,0,4380_7778208_3430408,4380_1105 -4380_78033,286,4380_71006,Shannon Airport,33698-00010-1,0,4380_7778208_3430408,4380_1105 -4380_78033,291,4380_71007,Shannon Airport,98319-00013-1,0,4380_7778208_3430404,4380_1106 -4380_78033,289,4380_71008,Shannon Airport,33654-00014-1,0,4380_7778208_3430408,4380_1105 -4380_78033,287,4380_71009,Shannon Airport,33731-00012-1,0,4380_7778208_3430408,4380_1105 -4380_77953,290,4380_7101,Kells,55276-00015-1,0,4380_7778208_1090116,4380_95 -4380_78033,292,4380_71010,Shannon Airport,98681-00016-1,0,4380_7778208_3430408,4380_1105 -4380_78033,290,4380_71011,Shannon Airport,98680-00015-1,0,4380_7778208_3430408,4380_1105 -4380_78033,294,4380_71012,Shannon Airport,98679-00018-1,0,4380_7778208_3430408,4380_1105 -4380_78033,295,4380_71013,Shannon Airport,98683-00019-1,0,4380_7778208_3430408,4380_1105 -4380_78033,293,4380_71014,Shannon Airport,98682-00017-1,0,4380_7778208_3430408,4380_1105 -4380_78033,296,4380_71015,Shannon Airport,98320-00021-1,0,4380_7778208_3430404,4380_1106 -4380_77953,291,4380_7102,Kells,5698-00013-1,0,4380_7778208_1090107,4380_99 -4380_78033,285,4380_71021,Shannon Airport,32826-00009-1,0,4380_7778208_3430401,4380_1104 -4380_78033,288,4380_71022,Shannon Airport,32858-00011-1,0,4380_7778208_3430401,4380_1104 -4380_78033,286,4380_71023,Shannon Airport,32848-00010-1,0,4380_7778208_3430401,4380_1104 -4380_78033,289,4380_71024,Shannon Airport,32804-00014-1,0,4380_7778208_3430401,4380_1104 -4380_78033,287,4380_71025,Shannon Airport,32892-00012-1,0,4380_7778208_3430401,4380_1104 -4380_78033,292,4380_71026,Shannon Airport,98075-00016-1,0,4380_7778208_3430401,4380_1104 -4380_78033,290,4380_71027,Shannon Airport,98076-00015-1,0,4380_7778208_3430401,4380_1104 -4380_78033,294,4380_71028,Shannon Airport,98072-00018-1,0,4380_7778208_3430401,4380_1104 -4380_78033,295,4380_71029,Shannon Airport,98074-00019-1,0,4380_7778208_3430401,4380_1104 -4380_77953,292,4380_7103,Kells,55277-00016-1,0,4380_7778208_1090116,4380_95 -4380_78033,293,4380_71030,Shannon Airport,98073-00017-1,0,4380_7778208_3430401,4380_1104 -4380_78033,291,4380_71032,Shannon Airport,33091-00013-1,0,4380_7778208_3430403,4380_1104 -4380_78033,296,4380_71033,Shannon Airport,98230-00021-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_71039,Shannon Airport,98450-00009-1,0,4380_7778208_3430405,4380_1104 -4380_77953,293,4380_7104,Kells,55275-00017-1,0,4380_7778208_1090116,4380_95 -4380_78033,288,4380_71040,Shannon Airport,98448-00011-1,0,4380_7778208_3430405,4380_1104 -4380_78033,286,4380_71041,Shannon Airport,98442-00010-1,0,4380_7778208_3430405,4380_1104 -4380_78033,289,4380_71042,Shannon Airport,98444-00014-1,0,4380_7778208_3430405,4380_1104 -4380_78033,287,4380_71043,Shannon Airport,98446-00012-1,0,4380_7778208_3430405,4380_1104 -4380_78033,292,4380_71044,Shannon Airport,98443-00016-1,0,4380_7778208_3430405,4380_1104 -4380_78033,290,4380_71045,Shannon Airport,98451-00015-1,0,4380_7778208_3430405,4380_1104 -4380_78033,294,4380_71046,Shannon Airport,98447-00018-1,0,4380_7778208_3430405,4380_1104 -4380_78033,295,4380_71047,Shannon Airport,98445-00019-1,0,4380_7778208_3430405,4380_1104 -4380_78033,293,4380_71048,Shannon Airport,98449-00017-1,0,4380_7778208_3430405,4380_1104 -4380_77953,294,4380_7105,Kells,55278-00018-1,0,4380_7778208_1090116,4380_95 -4380_78033,297,4380_71055,Shannon Airport,98140-00008-1,0,4380_7778208_3430402,4380_1104 -4380_78033,285,4380_71056,Shannon Airport,33380-00009-1,0,4380_7778208_3430406,4380_1105 -4380_78033,288,4380_71058,Shannon Airport,33424-00011-1,0,4380_7778208_3430406,4380_1105 -4380_78033,286,4380_71059,Shannon Airport,33402-00010-1,0,4380_7778208_3430406,4380_1105 -4380_77953,295,4380_7106,Kells,55274-00019-1,0,4380_7778208_1090116,4380_95 -4380_78033,291,4380_71060,Shannon Airport,33338-00013-1,0,4380_7778208_3430405,4380_1104 -4380_78033,289,4380_71061,Shannon Airport,33368-00014-1,0,4380_7778208_3430406,4380_1105 -4380_78033,287,4380_71062,Shannon Airport,33446-00012-1,0,4380_7778208_3430406,4380_1105 -4380_78033,292,4380_71063,Shannon Airport,98526-00016-1,0,4380_7778208_3430406,4380_1105 -4380_78033,290,4380_71064,Shannon Airport,98525-00015-1,0,4380_7778208_3430406,4380_1105 -4380_78033,294,4380_71065,Shannon Airport,98527-00018-1,0,4380_7778208_3430406,4380_1105 -4380_78033,295,4380_71066,Shannon Airport,98528-00019-1,0,4380_7778208_3430406,4380_1105 -4380_78033,293,4380_71067,Shannon Airport,98524-00017-1,0,4380_7778208_3430406,4380_1105 -4380_78033,296,4380_71068,Shannon Airport,98452-00021-1,0,4380_7778208_3430405,4380_1104 -4380_77953,296,4380_7107,Kells,54991-00021-1,0,4380_7778208_1090107,4380_99 -4380_78033,285,4380_71074,Shannon Airport,98231-00009-1,0,4380_7778208_3430403,4380_1104 -4380_78033,288,4380_71076,Shannon Airport,98235-00011-1,0,4380_7778208_3430403,4380_1104 -4380_78033,286,4380_71077,Shannon Airport,98237-00010-1,0,4380_7778208_3430403,4380_1104 -4380_78033,291,4380_71078,Shannon Airport,32981-00013-1,0,4380_7778208_3430402,4380_1104 -4380_78033,289,4380_71079,Shannon Airport,98239-00014-1,0,4380_7778208_3430403,4380_1104 -4380_78033,287,4380_71080,Shannon Airport,98233-00012-1,0,4380_7778208_3430403,4380_1104 -4380_78033,292,4380_71081,Shannon Airport,98238-00016-1,0,4380_7778208_3430403,4380_1104 -4380_78033,290,4380_71082,Shannon Airport,98232-00015-1,0,4380_7778208_3430403,4380_1104 -4380_78033,294,4380_71083,Shannon Airport,98234-00018-1,0,4380_7778208_3430403,4380_1104 -4380_78033,295,4380_71084,Shannon Airport,98240-00019-1,0,4380_7778208_3430403,4380_1104 -4380_78033,293,4380_71085,Shannon Airport,98236-00017-1,0,4380_7778208_3430403,4380_1104 -4380_78033,296,4380_71086,Shannon Airport,98141-00021-1,0,4380_7778208_3430402,4380_1104 -4380_78033,297,4380_71093,Shannon Airport,32953-00008-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_71094,Shannon Airport,33157-00009-1,0,4380_7778208_3430404,4380_1104 -4380_78033,288,4380_71096,Shannon Airport,33213-00011-1,0,4380_7778208_3430404,4380_1104 -4380_78033,286,4380_71097,Shannon Airport,33185-00010-1,0,4380_7778208_3430404,4380_1104 -4380_78033,291,4380_71098,Shannon Airport,32920-00013-1,0,4380_7778208_3430401,4380_1104 -4380_78033,289,4380_71099,Shannon Airport,33129-00014-1,0,4380_7778208_3430404,4380_1104 -4380_78113,292,4380_711,Dundalk,49985-00016-1,0,4380_7778208_1000906,4380_10 -4380_78033,287,4380_71100,Shannon Airport,33255-00012-1,0,4380_7778208_3430404,4380_1104 -4380_78033,292,4380_71101,Shannon Airport,98332-00016-1,0,4380_7778208_3430404,4380_1104 -4380_78033,290,4380_71102,Shannon Airport,98331-00015-1,0,4380_7778208_3430404,4380_1104 -4380_78033,294,4380_71103,Shannon Airport,98328-00018-1,0,4380_7778208_3430404,4380_1104 -4380_78033,295,4380_71104,Shannon Airport,98329-00019-1,0,4380_7778208_3430404,4380_1104 -4380_78033,293,4380_71105,Shannon Airport,98330-00017-1,0,4380_7778208_3430404,4380_1104 -4380_78033,296,4380_71106,Shannon Airport,98083-00021-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_71112,Shannon Airport,33536-00009-1,0,4380_7778208_3430407,4380_1104 -4380_78033,288,4380_71114,Shannon Airport,33592-00011-1,0,4380_7778208_3430407,4380_1104 -4380_78033,286,4380_71115,Shannon Airport,33564-00010-1,0,4380_7778208_3430407,4380_1104 -4380_78033,291,4380_71116,Shannon Airport,98613-00013-1,0,4380_7778208_3430407,4380_1104 -4380_78033,289,4380_71117,Shannon Airport,33494-00014-1,0,4380_7778208_3430407,4380_1104 -4380_78033,287,4380_71118,Shannon Airport,33620-00012-1,0,4380_7778208_3430407,4380_1104 -4380_78033,292,4380_71119,Shannon Airport,98611-00016-1,0,4380_7778208_3430407,4380_1104 -4380_78033,290,4380_71120,Shannon Airport,98612-00015-1,0,4380_7778208_3430407,4380_1104 -4380_78033,294,4380_71121,Shannon Airport,98610-00018-1,0,4380_7778208_3430407,4380_1104 -4380_78033,295,4380_71122,Shannon Airport,98609-00019-1,0,4380_7778208_3430407,4380_1104 -4380_78033,293,4380_71123,Shannon Airport,98608-00017-1,0,4380_7778208_3430407,4380_1104 -4380_78033,296,4380_71124,Shannon Airport,98614-00021-1,0,4380_7778208_3430407,4380_1104 -4380_78033,297,4380_71131,Shannon Airport,33101-00008-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_71132,Shannon Airport,33778-00009-1,0,4380_7778208_3430409,4380_1105 -4380_78033,288,4380_71134,Shannon Airport,33826-00011-1,0,4380_7778208_3430409,4380_1105 -4380_78033,286,4380_71135,Shannon Airport,33814-00010-1,0,4380_7778208_3430409,4380_1105 -4380_78033,291,4380_71136,Shannon Airport,33480-00013-1,0,4380_7778208_3430406,4380_1105 -4380_78033,289,4380_71137,Shannon Airport,33754-00014-1,0,4380_7778208_3430409,4380_1105 -4380_78033,287,4380_71138,Shannon Airport,33862-00012-1,0,4380_7778208_3430409,4380_1105 -4380_78033,292,4380_71139,Shannon Airport,98742-00016-1,0,4380_7778208_3430409,4380_1105 -4380_78033,290,4380_71140,Shannon Airport,98741-00015-1,0,4380_7778208_3430409,4380_1105 -4380_78033,294,4380_71141,Shannon Airport,98739-00018-1,0,4380_7778208_3430409,4380_1105 -4380_78033,295,4380_71142,Shannon Airport,98743-00019-1,0,4380_7778208_3430409,4380_1105 -4380_78033,293,4380_71143,Shannon Airport,98740-00017-1,0,4380_7778208_3430409,4380_1105 -4380_78033,296,4380_71144,Shannon Airport,98534-00021-1,0,4380_7778208_3430406,4380_1105 -4380_77953,285,4380_7115,Kells,5725-00009-1,0,4380_7778208_1090108,4380_95 -4380_78033,285,4380_71150,Shannon Airport,33667-00009-1,0,4380_7778208_3430408,4380_1104 -4380_78033,288,4380_71152,Shannon Airport,33711-00011-1,0,4380_7778208_3430408,4380_1104 -4380_78033,286,4380_71153,Shannon Airport,33700-00010-1,0,4380_7778208_3430408,4380_1104 -4380_78033,291,4380_71154,Shannon Airport,98338-00013-1,0,4380_7778208_3430404,4380_1104 -4380_78033,289,4380_71155,Shannon Airport,33656-00014-1,0,4380_7778208_3430408,4380_1104 -4380_78033,287,4380_71156,Shannon Airport,33733-00012-1,0,4380_7778208_3430408,4380_1104 -4380_78033,292,4380_71157,Shannon Airport,98689-00016-1,0,4380_7778208_3430408,4380_1104 -4380_78033,290,4380_71158,Shannon Airport,98693-00015-1,0,4380_7778208_3430408,4380_1104 -4380_78033,294,4380_71159,Shannon Airport,98691-00018-1,0,4380_7778208_3430408,4380_1104 -4380_77953,286,4380_7116,Kells,5733-00010-1,0,4380_7778208_1090108,4380_95 -4380_78033,295,4380_71160,Shannon Airport,98690-00019-1,0,4380_7778208_3430408,4380_1104 -4380_78033,293,4380_71161,Shannon Airport,98692-00017-1,0,4380_7778208_3430408,4380_1104 -4380_78033,296,4380_71162,Shannon Airport,98339-00021-1,0,4380_7778208_3430404,4380_1104 -4380_78033,297,4380_71169,Shannon Airport,98145-00008-1,0,4380_7778208_3430402,4380_1104 -4380_77953,297,4380_7117,Kells,5521-00008-1,0,4380_7778208_1090104,4380_91 -4380_78033,285,4380_71170,Shannon Airport,98466-00009-1,0,4380_7778208_3430405,4380_1104 -4380_78033,288,4380_71172,Shannon Airport,98470-00011-1,0,4380_7778208_3430405,4380_1104 -4380_78033,286,4380_71173,Shannon Airport,98464-00010-1,0,4380_7778208_3430405,4380_1104 -4380_78033,291,4380_71174,Shannon Airport,32983-00013-1,0,4380_7778208_3430402,4380_1104 -4380_78033,289,4380_71175,Shannon Airport,98472-00014-1,0,4380_7778208_3430405,4380_1104 -4380_78033,287,4380_71176,Shannon Airport,98468-00012-1,0,4380_7778208_3430405,4380_1104 -4380_78033,292,4380_71177,Shannon Airport,98465-00016-1,0,4380_7778208_3430405,4380_1104 -4380_78033,290,4380_71178,Shannon Airport,98467-00015-1,0,4380_7778208_3430405,4380_1104 -4380_78033,294,4380_71179,Shannon Airport,98469-00018-1,0,4380_7778208_3430405,4380_1104 -4380_77953,288,4380_7118,Kells,5741-00011-1,0,4380_7778208_1090108,4380_95 -4380_78033,295,4380_71180,Shannon Airport,98473-00019-1,0,4380_7778208_3430405,4380_1104 -4380_78033,293,4380_71181,Shannon Airport,98471-00017-1,0,4380_7778208_3430405,4380_1104 -4380_78033,296,4380_71182,Shannon Airport,98144-00021-1,0,4380_7778208_3430402,4380_1104 -4380_78033,285,4380_71188,Shannon Airport,98254-00009-1,0,4380_7778208_3430403,4380_1104 -4380_77953,287,4380_7119,Kells,5749-00012-1,0,4380_7778208_1090108,4380_95 -4380_78033,288,4380_71190,Shannon Airport,98252-00011-1,0,4380_7778208_3430403,4380_1104 -4380_78033,286,4380_71191,Shannon Airport,98258-00010-1,0,4380_7778208_3430403,4380_1104 -4380_78033,291,4380_71192,Shannon Airport,98622-00013-1,0,4380_7778208_3430407,4380_1104 -4380_78033,289,4380_71193,Shannon Airport,98256-00014-1,0,4380_7778208_3430403,4380_1104 -4380_78033,287,4380_71194,Shannon Airport,98260-00012-1,0,4380_7778208_3430403,4380_1104 -4380_78033,292,4380_71195,Shannon Airport,98259-00016-1,0,4380_7778208_3430403,4380_1104 -4380_78033,290,4380_71196,Shannon Airport,98255-00015-1,0,4380_7778208_3430403,4380_1104 -4380_78033,294,4380_71197,Shannon Airport,98261-00018-1,0,4380_7778208_3430403,4380_1104 -4380_78033,295,4380_71198,Shannon Airport,98257-00019-1,0,4380_7778208_3430403,4380_1104 -4380_78033,293,4380_71199,Shannon Airport,98253-00017-1,0,4380_7778208_3430403,4380_1104 -4380_78113,293,4380_712,Dundalk,49981-00017-1,0,4380_7778208_1000906,4380_10 -4380_77953,289,4380_7120,Kells,5717-00014-1,0,4380_7778208_1090108,4380_95 -4380_78033,296,4380_71200,Shannon Airport,98623-00021-1,0,4380_7778208_3430407,4380_1104 -4380_78033,297,4380_71207,Shannon Airport,32955-00008-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_71208,Shannon Airport,33382-00009-1,0,4380_7778208_3430406,4380_1104 -4380_77953,290,4380_7121,Kells,55034-00015-1,0,4380_7778208_1090108,4380_95 -4380_78033,288,4380_71210,Shannon Airport,33426-00011-1,0,4380_7778208_3430406,4380_1104 -4380_78033,286,4380_71211,Shannon Airport,33404-00010-1,0,4380_7778208_3430406,4380_1104 -4380_78033,291,4380_71212,Shannon Airport,32922-00013-1,0,4380_7778208_3430401,4380_1104 -4380_78033,289,4380_71213,Shannon Airport,33370-00014-1,0,4380_7778208_3430406,4380_1104 -4380_78033,287,4380_71214,Shannon Airport,33448-00012-1,0,4380_7778208_3430406,4380_1104 -4380_78033,292,4380_71215,Shannon Airport,98539-00016-1,0,4380_7778208_3430406,4380_1104 -4380_78033,290,4380_71216,Shannon Airport,98540-00015-1,0,4380_7778208_3430406,4380_1104 -4380_78033,294,4380_71217,Shannon Airport,98536-00018-1,0,4380_7778208_3430406,4380_1104 -4380_78033,295,4380_71218,Shannon Airport,98537-00019-1,0,4380_7778208_3430406,4380_1104 -4380_78033,293,4380_71219,Shannon Airport,98538-00017-1,0,4380_7778208_3430406,4380_1104 -4380_77953,291,4380_7122,Kells,6815-00013-1,0,4380_7778208_1090901,4380_99 -4380_78033,296,4380_71220,Shannon Airport,98085-00021-1,0,4380_7778208_3430401,4380_1104 -4380_78033,285,4380_71226,Shannon Airport,33669-00009-1,0,4380_7778208_3430408,4380_1104 -4380_78033,288,4380_71228,Shannon Airport,33713-00011-1,0,4380_7778208_3430408,4380_1104 -4380_78033,286,4380_71229,Shannon Airport,33702-00010-1,0,4380_7778208_3430408,4380_1104 -4380_77953,292,4380_7123,Kells,55036-00016-1,0,4380_7778208_1090108,4380_95 -4380_78033,291,4380_71230,Shannon Airport,98342-00013-1,0,4380_7778208_3430404,4380_1104 -4380_78033,289,4380_71231,Shannon Airport,33658-00014-1,0,4380_7778208_3430408,4380_1104 -4380_78033,287,4380_71232,Shannon Airport,33735-00012-1,0,4380_7778208_3430408,4380_1104 -4380_78033,292,4380_71233,Shannon Airport,98702-00016-1,0,4380_7778208_3430408,4380_1104 -4380_78033,290,4380_71234,Shannon Airport,98701-00015-1,0,4380_7778208_3430408,4380_1104 -4380_78033,294,4380_71235,Shannon Airport,98703-00018-1,0,4380_7778208_3430408,4380_1104 -4380_78033,295,4380_71236,Shannon Airport,98699-00019-1,0,4380_7778208_3430408,4380_1104 -4380_78033,293,4380_71237,Shannon Airport,98700-00017-1,0,4380_7778208_3430408,4380_1104 -4380_78033,296,4380_71238,Shannon Airport,98343-00021-1,0,4380_7778208_3430404,4380_1104 -4380_77953,293,4380_7124,Kells,55038-00017-1,0,4380_7778208_1090108,4380_95 -4380_78033,297,4380_71245,Shannon Airport,98148-00008-1,0,4380_7778208_3430402,4380_1104 -4380_78033,285,4380_71246,Shannon Airport,33538-00009-1,0,4380_7778208_3430407,4380_1104 -4380_78033,288,4380_71248,Shannon Airport,33594-00011-1,0,4380_7778208_3430407,4380_1104 -4380_78033,286,4380_71249,Shannon Airport,33566-00010-1,0,4380_7778208_3430407,4380_1104 -4380_77953,294,4380_7125,Kells,55037-00018-1,0,4380_7778208_1090108,4380_95 -4380_78033,291,4380_71250,Shannon Airport,33340-00013-1,0,4380_7778208_3430405,4380_1105 -4380_78033,289,4380_71251,Shannon Airport,33496-00014-1,0,4380_7778208_3430407,4380_1104 -4380_78033,287,4380_71252,Shannon Airport,33622-00012-1,0,4380_7778208_3430407,4380_1104 -4380_78033,292,4380_71253,Shannon Airport,98627-00016-1,0,4380_7778208_3430407,4380_1104 -4380_78033,290,4380_71254,Shannon Airport,98628-00015-1,0,4380_7778208_3430407,4380_1104 -4380_78033,294,4380_71255,Shannon Airport,98626-00018-1,0,4380_7778208_3430407,4380_1104 -4380_78033,295,4380_71256,Shannon Airport,98629-00019-1,0,4380_7778208_3430407,4380_1104 -4380_78033,293,4380_71257,Shannon Airport,98630-00017-1,0,4380_7778208_3430407,4380_1104 -4380_78033,296,4380_71258,Shannon Airport,98484-00021-1,0,4380_7778208_3430405,4380_1105 -4380_77953,295,4380_7126,Kells,55035-00019-1,0,4380_7778208_1090108,4380_95 -4380_78033,285,4380_71264,Shannon Airport,32828-00009-1,0,4380_7778208_3430401,4380_1104 -4380_78033,288,4380_71266,Shannon Airport,32860-00011-1,0,4380_7778208_3430401,4380_1104 -4380_78033,286,4380_71267,Shannon Airport,32850-00010-1,0,4380_7778208_3430401,4380_1104 -4380_78033,291,4380_71268,Shannon Airport,33482-00013-1,0,4380_7778208_3430406,4380_1105 -4380_78033,289,4380_71269,Shannon Airport,32806-00014-1,0,4380_7778208_3430401,4380_1104 -4380_77953,296,4380_7127,Kells,55351-00021-1,0,4380_7778208_1090901,4380_99 -4380_78033,287,4380_71270,Shannon Airport,32894-00012-1,0,4380_7778208_3430401,4380_1104 -4380_78033,292,4380_71271,Shannon Airport,98088-00016-1,0,4380_7778208_3430401,4380_1104 -4380_78033,290,4380_71272,Shannon Airport,98087-00015-1,0,4380_7778208_3430401,4380_1104 -4380_78033,294,4380_71273,Shannon Airport,98090-00018-1,0,4380_7778208_3430401,4380_1104 -4380_78033,295,4380_71274,Shannon Airport,98091-00019-1,0,4380_7778208_3430401,4380_1104 -4380_78033,293,4380_71275,Shannon Airport,98089-00017-1,0,4380_7778208_3430401,4380_1104 -4380_78033,296,4380_71276,Shannon Airport,98546-00021-1,0,4380_7778208_3430406,4380_1105 -4380_78033,297,4380_71283,Shannon Airport,33103-00008-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_71284,Shannon Airport,33159-00009-1,0,4380_7778208_3430404,4380_1104 -4380_78033,288,4380_71286,Shannon Airport,33215-00011-1,0,4380_7778208_3430404,4380_1104 -4380_78033,286,4380_71287,Shannon Airport,33187-00010-1,0,4380_7778208_3430404,4380_1104 -4380_78033,291,4380_71288,Shannon Airport,32924-00013-1,0,4380_7778208_3430401,4380_1104 -4380_78033,289,4380_71289,Shannon Airport,33131-00014-1,0,4380_7778208_3430404,4380_1104 -4380_78033,287,4380_71290,Shannon Airport,33257-00012-1,0,4380_7778208_3430404,4380_1104 -4380_78033,292,4380_71291,Shannon Airport,98348-00016-1,0,4380_7778208_3430404,4380_1104 -4380_78033,290,4380_71292,Shannon Airport,98350-00015-1,0,4380_7778208_3430404,4380_1104 -4380_78033,294,4380_71293,Shannon Airport,98347-00018-1,0,4380_7778208_3430404,4380_1104 -4380_78033,295,4380_71294,Shannon Airport,98346-00019-1,0,4380_7778208_3430404,4380_1104 -4380_78033,293,4380_71295,Shannon Airport,98349-00017-1,0,4380_7778208_3430404,4380_1104 -4380_78033,296,4380_71296,Shannon Airport,98092-00021-1,0,4380_7778208_3430401,4380_1104 -4380_78113,294,4380_713,Dundalk,49989-00018-1,0,4380_7778208_1000906,4380_10 -4380_78033,297,4380_71303,Shannon Airport,33273-00008-1,0,4380_7778208_3430404,4380_1104 -4380_78033,285,4380_71304,Shannon Airport,33780-00009-1,0,4380_7778208_3430409,4380_1104 -4380_78033,288,4380_71306,Shannon Airport,33828-00011-1,0,4380_7778208_3430409,4380_1104 -4380_78033,286,4380_71307,Shannon Airport,33816-00010-1,0,4380_7778208_3430409,4380_1104 -4380_78033,291,4380_71308,Shannon Airport,98636-00013-1,0,4380_7778208_3430407,4380_1104 -4380_78033,289,4380_71309,Shannon Airport,33756-00014-1,0,4380_7778208_3430409,4380_1104 -4380_78033,287,4380_71310,Shannon Airport,33864-00012-1,0,4380_7778208_3430409,4380_1104 -4380_78033,292,4380_71311,Shannon Airport,98753-00016-1,0,4380_7778208_3430409,4380_1104 -4380_78033,290,4380_71312,Shannon Airport,98752-00015-1,0,4380_7778208_3430409,4380_1104 -4380_78033,294,4380_71313,Shannon Airport,98751-00018-1,0,4380_7778208_3430409,4380_1104 -4380_78033,295,4380_71314,Shannon Airport,98750-00019-1,0,4380_7778208_3430409,4380_1104 -4380_78033,293,4380_71315,Shannon Airport,98749-00017-1,0,4380_7778208_3430409,4380_1104 -4380_78033,296,4380_71316,Shannon Airport,98637-00021-1,0,4380_7778208_3430407,4380_1104 -4380_78033,297,4380_71323,Shannon Airport,98150-00008-1,0,4380_7778208_3430402,4380_1104 -4380_78033,285,4380_71324,Shannon Airport,33161-00009-1,0,4380_7778208_3430404,4380_1104 -4380_78033,288,4380_71326,Shannon Airport,33217-00011-1,0,4380_7778208_3430404,4380_1104 -4380_78033,286,4380_71327,Shannon Airport,33189-00010-1,0,4380_7778208_3430404,4380_1104 -4380_78033,291,4380_71328,Shannon Airport,33484-00013-1,0,4380_7778208_3430406,4380_1104 -4380_78033,289,4380_71329,Shannon Airport,33133-00014-1,0,4380_7778208_3430404,4380_1104 -4380_78033,287,4380_71330,Shannon Airport,33259-00012-1,0,4380_7778208_3430404,4380_1104 -4380_78033,292,4380_71331,Shannon Airport,98359-00016-1,0,4380_7778208_3430404,4380_1104 -4380_78033,290,4380_71332,Shannon Airport,98360-00015-1,0,4380_7778208_3430404,4380_1104 -4380_78033,294,4380_71333,Shannon Airport,98357-00018-1,0,4380_7778208_3430404,4380_1104 -4380_78033,295,4380_71334,Shannon Airport,98358-00019-1,0,4380_7778208_3430404,4380_1104 -4380_78033,293,4380_71335,Shannon Airport,98356-00017-1,0,4380_7778208_3430404,4380_1104 -4380_78033,296,4380_71336,Shannon Airport,98548-00021-1,0,4380_7778208_3430406,4380_1104 -4380_78033,297,4380_71343,Shannon Airport,33275-00008-1,0,4380_7778208_3430404,4380_1104 -4380_78033,285,4380_71344,Shannon Airport,33782-00009-1,0,4380_7778208_3430409,4380_1104 -4380_78033,288,4380_71346,Shannon Airport,33830-00011-1,0,4380_7778208_3430409,4380_1104 -4380_78033,286,4380_71347,Shannon Airport,33818-00010-1,0,4380_7778208_3430409,4380_1104 -4380_78033,291,4380_71348,Shannon Airport,98640-00013-1,0,4380_7778208_3430407,4380_1104 -4380_78033,289,4380_71349,Shannon Airport,33758-00014-1,0,4380_7778208_3430409,4380_1104 -4380_77953,285,4380_7135,Dunshaughlin,7018-00009-1,0,4380_7778208_1090906,4380_96 -4380_78033,287,4380_71350,Shannon Airport,33866-00012-1,0,4380_7778208_3430409,4380_1104 -4380_78033,292,4380_71351,Shannon Airport,98760-00016-1,0,4380_7778208_3430409,4380_1104 -4380_78033,290,4380_71352,Shannon Airport,98762-00015-1,0,4380_7778208_3430409,4380_1104 -4380_78033,294,4380_71353,Shannon Airport,98763-00018-1,0,4380_7778208_3430409,4380_1104 -4380_78033,295,4380_71354,Shannon Airport,98759-00019-1,0,4380_7778208_3430409,4380_1104 -4380_78033,293,4380_71355,Shannon Airport,98761-00017-1,0,4380_7778208_3430409,4380_1104 -4380_78033,296,4380_71356,Shannon Airport,98641-00021-1,0,4380_7778208_3430407,4380_1104 -4380_77953,286,4380_7136,Dunshaughlin,7024-00010-1,0,4380_7778208_1090906,4380_96 -4380_78033,297,4380_71363,Shannon Airport,33105-00008-1,0,4380_7778208_3430403,4380_1104 -4380_78033,285,4380_71364,Shannon Airport,33384-00009-1,0,4380_7778208_3430406,4380_1104 -4380_78033,288,4380_71366,Shannon Airport,33428-00011-1,0,4380_7778208_3430406,4380_1104 -4380_78033,286,4380_71367,Shannon Airport,33406-00010-1,0,4380_7778208_3430406,4380_1104 -4380_78033,291,4380_71368,Shannon Airport,33342-00013-1,0,4380_7778208_3430405,4380_1104 -4380_78033,289,4380_71369,Shannon Airport,33372-00014-1,0,4380_7778208_3430406,4380_1104 -4380_77953,297,4380_7137,Dunshaughlin,5444-00008-1,0,4380_7778208_1090103,4380_90 -4380_78033,287,4380_71370,Shannon Airport,33450-00012-1,0,4380_7778208_3430406,4380_1104 -4380_78033,292,4380_71371,Shannon Airport,98553-00016-1,0,4380_7778208_3430406,4380_1104 -4380_78033,290,4380_71372,Shannon Airport,98554-00015-1,0,4380_7778208_3430406,4380_1104 -4380_78033,294,4380_71373,Shannon Airport,98552-00018-1,0,4380_7778208_3430406,4380_1104 -4380_78033,295,4380_71374,Shannon Airport,98550-00019-1,0,4380_7778208_3430406,4380_1104 -4380_78033,293,4380_71375,Shannon Airport,98551-00017-1,0,4380_7778208_3430406,4380_1104 -4380_78033,296,4380_71376,Shannon Airport,98486-00021-1,0,4380_7778208_3430405,4380_1104 -4380_77953,288,4380_7138,Dunshaughlin,7030-00011-1,0,4380_7778208_1090906,4380_96 -4380_78033,285,4380_71382,Shannon Airport,33540-00009-1,0,4380_7778208_3430407,4380_1104 -4380_78033,288,4380_71383,Shannon Airport,33596-00011-1,0,4380_7778208_3430407,4380_1104 -4380_78033,286,4380_71384,Shannon Airport,33568-00010-1,0,4380_7778208_3430407,4380_1104 -4380_78033,289,4380_71385,Shannon Airport,33498-00014-1,0,4380_7778208_3430407,4380_1104 -4380_78033,287,4380_71386,Shannon Airport,33624-00012-1,0,4380_7778208_3430407,4380_1104 -4380_78033,292,4380_71387,Shannon Airport,98644-00016-1,0,4380_7778208_3430407,4380_1104 -4380_78033,290,4380_71388,Shannon Airport,98645-00015-1,0,4380_7778208_3430407,4380_1104 -4380_78033,294,4380_71389,Shannon Airport,98646-00018-1,0,4380_7778208_3430407,4380_1104 -4380_77953,287,4380_7139,Dunshaughlin,7036-00012-1,0,4380_7778208_1090906,4380_96 -4380_78033,295,4380_71390,Shannon Airport,98648-00019-1,0,4380_7778208_3430407,4380_1104 -4380_78033,293,4380_71391,Shannon Airport,98647-00017-1,0,4380_7778208_3430407,4380_1104 -4380_78033,291,4380_71393,Limerick Bus Station,32972-00013-1,1,4380_7778208_3430402,4380_1107 -4380_78033,296,4380_71394,Limerick Bus Station,98097-00021-1,1,4380_7778208_3430402,4380_1107 -4380_78113,295,4380_714,Dundalk,49979-00019-1,0,4380_7778208_1000906,4380_10 -4380_77953,289,4380_7140,Dunshaughlin,7012-00014-1,0,4380_7778208_1090906,4380_96 -4380_78033,285,4380_71400,Limerick Bus Station,32820-00009-1,1,4380_7778208_3430401,4380_1107 -4380_78033,288,4380_71402,Limerick Bus Station,32852-00011-1,1,4380_7778208_3430401,4380_1107 -4380_78033,286,4380_71403,Limerick Bus Station,32842-00010-1,1,4380_7778208_3430401,4380_1107 -4380_78033,291,4380_71404,Limerick Bus Station,32911-00013-1,1,4380_7778208_3430401,4380_1107 -4380_78033,289,4380_71405,Limerick Bus Station,32798-00014-1,1,4380_7778208_3430401,4380_1107 -4380_78033,287,4380_71406,Limerick Bus Station,32886-00012-1,1,4380_7778208_3430401,4380_1107 -4380_78033,292,4380_71407,Limerick Bus Station,98037-00016-1,1,4380_7778208_3430401,4380_1107 -4380_78033,290,4380_71408,Limerick Bus Station,98035-00015-1,1,4380_7778208_3430401,4380_1107 -4380_78033,294,4380_71409,Limerick Bus Station,98036-00018-1,1,4380_7778208_3430401,4380_1107 -4380_77953,290,4380_7141,Dunshaughlin,55499-00015-1,0,4380_7778208_1090906,4380_96 -4380_78033,295,4380_71410,Limerick Bus Station,98034-00019-1,1,4380_7778208_3430401,4380_1107 -4380_78033,293,4380_71411,Limerick Bus Station,98038-00017-1,1,4380_7778208_3430401,4380_1107 -4380_78033,296,4380_71412,Limerick Bus Station,98039-00021-1,1,4380_7778208_3430401,4380_1107 -4380_78033,297,4380_71414,Limerick Bus Station,32944-00008-1,1,4380_7778208_3430401,4380_1107 -4380_77953,291,4380_7142,Dunshaughlin,5426-00013-1,0,4380_7778208_1090103,4380_96 -4380_78033,285,4380_71420,Limerick Bus Station,98153-00009-1,1,4380_7778208_3430403,4380_1107 -4380_78033,288,4380_71421,Limerick Bus Station,98157-00011-1,1,4380_7778208_3430403,4380_1107 -4380_78033,286,4380_71422,Limerick Bus Station,98155-00010-1,1,4380_7778208_3430403,4380_1107 -4380_78033,289,4380_71423,Limerick Bus Station,98159-00014-1,1,4380_7778208_3430403,4380_1107 -4380_78033,287,4380_71424,Limerick Bus Station,98161-00012-1,1,4380_7778208_3430403,4380_1107 -4380_78033,292,4380_71425,Limerick Bus Station,98156-00016-1,1,4380_7778208_3430403,4380_1107 -4380_78033,290,4380_71426,Limerick Bus Station,98154-00015-1,1,4380_7778208_3430403,4380_1107 -4380_78033,294,4380_71427,Limerick Bus Station,98162-00018-1,1,4380_7778208_3430403,4380_1107 -4380_78033,295,4380_71428,Limerick Bus Station,98160-00019-1,1,4380_7778208_3430403,4380_1107 -4380_78033,293,4380_71429,Limerick Bus Station,98158-00017-1,1,4380_7778208_3430403,4380_1107 -4380_77953,292,4380_7143,Dunshaughlin,55498-00016-1,0,4380_7778208_1090906,4380_96 -4380_78033,291,4380_71431,Limerick Bus Station,33084-00013-1,1,4380_7778208_3430403,4380_1107 -4380_78033,296,4380_71432,Limerick Bus Station,98163-00021-1,1,4380_7778208_3430403,4380_1107 -4380_78033,285,4380_71438,Limerick Bus Station,98110-00009-1,1,4380_7778208_3430402,4380_1107 -4380_78033,288,4380_71439,Limerick Bus Station,98106-00011-1,1,4380_7778208_3430402,4380_1107 -4380_77953,293,4380_7144,Dunshaughlin,55501-00017-1,0,4380_7778208_1090906,4380_96 -4380_78033,286,4380_71440,Limerick Bus Station,98112-00010-1,1,4380_7778208_3430402,4380_1107 -4380_78033,289,4380_71441,Limerick Bus Station,98108-00014-1,1,4380_7778208_3430402,4380_1107 -4380_78033,287,4380_71442,Limerick Bus Station,98114-00012-1,1,4380_7778208_3430402,4380_1107 -4380_78033,292,4380_71443,Limerick Bus Station,98113-00016-1,1,4380_7778208_3430402,4380_1107 -4380_78033,290,4380_71444,Limerick Bus Station,98111-00015-1,1,4380_7778208_3430402,4380_1107 -4380_78033,294,4380_71445,Limerick Bus Station,98115-00018-1,1,4380_7778208_3430402,4380_1107 -4380_78033,295,4380_71446,Limerick Bus Station,98109-00019-1,1,4380_7778208_3430402,4380_1107 -4380_78033,293,4380_71447,Limerick Bus Station,98107-00017-1,1,4380_7778208_3430402,4380_1107 -4380_77953,294,4380_7145,Dunshaughlin,55502-00018-1,0,4380_7778208_1090906,4380_96 -4380_78033,285,4380_71453,Limerick Bus Station,33150-00009-1,1,4380_7778208_3430404,4380_1107 -4380_78033,288,4380_71455,Limerick Bus Station,33206-00011-1,1,4380_7778208_3430404,4380_1107 -4380_78033,286,4380_71456,Limerick Bus Station,33178-00010-1,1,4380_7778208_3430404,4380_1107 -4380_78033,291,4380_71457,Limerick Bus Station,98282-00013-1,1,4380_7778208_3430404,4380_1108 -4380_78033,289,4380_71458,Limerick Bus Station,33122-00014-1,1,4380_7778208_3430404,4380_1107 -4380_78033,287,4380_71459,Limerick Bus Station,33248-00012-1,1,4380_7778208_3430404,4380_1107 -4380_77953,295,4380_7146,Dunshaughlin,55500-00019-1,0,4380_7778208_1090906,4380_96 -4380_78033,292,4380_71460,Limerick Bus Station,98284-00016-1,1,4380_7778208_3430404,4380_1107 -4380_78033,290,4380_71461,Limerick Bus Station,98280-00015-1,1,4380_7778208_3430404,4380_1107 -4380_78033,294,4380_71462,Limerick Bus Station,98285-00018-1,1,4380_7778208_3430404,4380_1107 -4380_78033,295,4380_71463,Limerick Bus Station,98281-00019-1,1,4380_7778208_3430404,4380_1107 -4380_78033,293,4380_71464,Limerick Bus Station,98279-00017-1,1,4380_7778208_3430404,4380_1107 -4380_78033,296,4380_71465,Limerick Bus Station,98283-00021-1,1,4380_7778208_3430404,4380_1108 -4380_78033,297,4380_71467,Limerick Bus Station,98116-00008-1,1,4380_7778208_3430402,4380_1107 -4380_77953,296,4380_7147,Dunshaughlin,54787-00021-1,0,4380_7778208_1090103,4380_96 -4380_78033,285,4380_71473,Limerick Bus Station,98376-00009-1,1,4380_7778208_3430405,4380_1107 -4380_78033,288,4380_71474,Limerick Bus Station,98380-00011-1,1,4380_7778208_3430405,4380_1107 -4380_78033,286,4380_71475,Limerick Bus Station,98382-00010-1,1,4380_7778208_3430405,4380_1107 -4380_78033,289,4380_71476,Limerick Bus Station,98378-00014-1,1,4380_7778208_3430405,4380_1107 -4380_78033,287,4380_71477,Limerick Bus Station,98384-00012-1,1,4380_7778208_3430405,4380_1107 -4380_78033,292,4380_71478,Limerick Bus Station,98383-00016-1,1,4380_7778208_3430405,4380_1107 -4380_78033,290,4380_71479,Limerick Bus Station,98377-00015-1,1,4380_7778208_3430405,4380_1107 -4380_78033,294,4380_71480,Limerick Bus Station,98385-00018-1,1,4380_7778208_3430405,4380_1107 -4380_78033,295,4380_71481,Limerick Bus Station,98379-00019-1,1,4380_7778208_3430405,4380_1107 -4380_78033,293,4380_71482,Limerick Bus Station,98381-00017-1,1,4380_7778208_3430405,4380_1107 -4380_78033,291,4380_71484,Limerick Bus Station,32974-00013-1,1,4380_7778208_3430402,4380_1107 -4380_78033,296,4380_71485,Limerick Bus Station,98117-00021-1,1,4380_7778208_3430402,4380_1107 -4380_78033,285,4380_71491,Limerick Bus Station,33375-00009-1,1,4380_7778208_3430406,4380_1107 -4380_78033,288,4380_71492,Limerick Bus Station,33419-00011-1,1,4380_7778208_3430406,4380_1107 -4380_78033,286,4380_71493,Limerick Bus Station,33397-00010-1,1,4380_7778208_3430406,4380_1107 -4380_78033,289,4380_71494,Limerick Bus Station,33363-00014-1,1,4380_7778208_3430406,4380_1107 -4380_78033,287,4380_71495,Limerick Bus Station,33441-00012-1,1,4380_7778208_3430406,4380_1107 -4380_78033,292,4380_71496,Limerick Bus Station,98495-00016-1,1,4380_7778208_3430406,4380_1107 -4380_78033,290,4380_71497,Limerick Bus Station,98496-00015-1,1,4380_7778208_3430406,4380_1107 -4380_78033,294,4380_71498,Limerick Bus Station,98497-00018-1,1,4380_7778208_3430406,4380_1107 -4380_78033,295,4380_71499,Limerick Bus Station,98494-00019-1,1,4380_7778208_3430406,4380_1107 -4380_78113,296,4380_715,Dundalk,49983-00021-1,0,4380_7778208_1000906,4380_16 -4380_78033,293,4380_71500,Limerick Bus Station,98493-00017-1,1,4380_7778208_3430406,4380_1107 -4380_78033,285,4380_71506,Limerick Bus Station,32822-00009-1,1,4380_7778208_3430401,4380_1107 -4380_78033,288,4380_71507,Limerick Bus Station,32854-00011-1,1,4380_7778208_3430401,4380_1107 -4380_78033,286,4380_71508,Limerick Bus Station,32844-00010-1,1,4380_7778208_3430401,4380_1107 -4380_78033,289,4380_71509,Limerick Bus Station,32800-00014-1,1,4380_7778208_3430401,4380_1107 -4380_78033,287,4380_71510,Limerick Bus Station,32888-00012-1,1,4380_7778208_3430401,4380_1107 -4380_78033,292,4380_71511,Limerick Bus Station,98048-00016-1,1,4380_7778208_3430401,4380_1107 -4380_78033,290,4380_71512,Limerick Bus Station,98047-00015-1,1,4380_7778208_3430401,4380_1107 -4380_78033,294,4380_71513,Limerick Bus Station,98049-00018-1,1,4380_7778208_3430401,4380_1107 -4380_78033,295,4380_71514,Limerick Bus Station,98050-00019-1,1,4380_7778208_3430401,4380_1107 -4380_78033,293,4380_71515,Limerick Bus Station,98046-00017-1,1,4380_7778208_3430401,4380_1107 -4380_78033,297,4380_71517,Limerick Bus Station,32946-00008-1,1,4380_7778208_3430401,4380_1107 -4380_78033,291,4380_71519,Limerick Bus Station,32913-00013-1,1,4380_7778208_3430401,4380_1108 -4380_78033,296,4380_71520,Limerick Bus Station,98051-00021-1,1,4380_7778208_3430401,4380_1108 -4380_78033,285,4380_71526,Limerick Bus Station,97728-00009-1,1,4380_7778208_3320403,4380_1107 -4380_78033,288,4380_71527,Limerick Bus Station,97724-00011-1,1,4380_7778208_3320403,4380_1107 -4380_78033,286,4380_71528,Limerick Bus Station,97732-00010-1,1,4380_7778208_3320403,4380_1107 -4380_78033,289,4380_71529,Limerick Bus Station,97726-00014-1,1,4380_7778208_3320403,4380_1107 -4380_78033,287,4380_71530,Limerick Bus Station,97730-00012-1,1,4380_7778208_3320403,4380_1107 -4380_78033,292,4380_71531,Limerick Bus Station,97733-00016-1,1,4380_7778208_3320403,4380_1107 -4380_78033,290,4380_71532,Limerick Bus Station,97729-00015-1,1,4380_7778208_3320403,4380_1107 -4380_78033,294,4380_71533,Limerick Bus Station,97731-00018-1,1,4380_7778208_3320403,4380_1107 -4380_78033,295,4380_71534,Limerick Bus Station,97727-00019-1,1,4380_7778208_3320403,4380_1107 -4380_78033,293,4380_71535,Limerick Bus Station,97725-00017-1,1,4380_7778208_3320403,4380_1107 -4380_78033,285,4380_71541,Limerick Bus Station,33529-00009-1,1,4380_7778208_3430407,4380_1107 -4380_78033,288,4380_71543,Limerick Bus Station,33585-00011-1,1,4380_7778208_3430407,4380_1107 -4380_78033,286,4380_71544,Limerick Bus Station,33557-00010-1,1,4380_7778208_3430407,4380_1107 -4380_78033,291,4380_71545,Limerick Bus Station,33086-00013-1,1,4380_7778208_3430403,4380_1108 -4380_78033,289,4380_71546,Limerick Bus Station,33487-00014-1,1,4380_7778208_3430407,4380_1107 -4380_78033,287,4380_71547,Limerick Bus Station,33613-00012-1,1,4380_7778208_3430407,4380_1107 -4380_78033,292,4380_71548,Limerick Bus Station,98569-00016-1,1,4380_7778208_3430407,4380_1107 -4380_78033,290,4380_71549,Limerick Bus Station,98566-00015-1,1,4380_7778208_3430407,4380_1107 -4380_77953,285,4380_7155,Kells,5918-00009-1,0,4380_7778208_1090112,4380_95 -4380_78033,294,4380_71550,Limerick Bus Station,98565-00018-1,1,4380_7778208_3430407,4380_1107 -4380_78033,295,4380_71551,Limerick Bus Station,98568-00019-1,1,4380_7778208_3430407,4380_1107 -4380_78033,293,4380_71552,Limerick Bus Station,98567-00017-1,1,4380_7778208_3430407,4380_1107 -4380_78033,296,4380_71553,Limerick Bus Station,98175-00021-1,1,4380_7778208_3430403,4380_1108 -4380_77953,286,4380_7156,Kells,5927-00010-1,0,4380_7778208_1090112,4380_95 -4380_78033,297,4380_71560,Limerick Bus Station,33094-00008-1,1,4380_7778208_3430403,4380_1107 -4380_78033,285,4380_71561,Limerick Bus Station,98176-00009-1,1,4380_7778208_3430403,4380_1108 -4380_78033,288,4380_71563,Limerick Bus Station,98184-00011-1,1,4380_7778208_3430403,4380_1108 -4380_78033,286,4380_71564,Limerick Bus Station,98178-00010-1,1,4380_7778208_3430403,4380_1108 -4380_78033,291,4380_71565,Limerick Bus Station,33333-00013-1,1,4380_7778208_3430405,4380_1107 -4380_78033,289,4380_71566,Limerick Bus Station,98180-00014-1,1,4380_7778208_3430403,4380_1108 -4380_78033,287,4380_71567,Limerick Bus Station,98182-00012-1,1,4380_7778208_3430403,4380_1108 -4380_78033,292,4380_71568,Limerick Bus Station,98179-00016-1,1,4380_7778208_3430403,4380_1108 -4380_78033,290,4380_71569,Limerick Bus Station,98177-00015-1,1,4380_7778208_3430403,4380_1108 -4380_77953,297,4380_7157,Kells,6073-00008-1,0,4380_7778208_1090116,4380_91 -4380_78033,294,4380_71570,Limerick Bus Station,98183-00018-1,1,4380_7778208_3430403,4380_1108 -4380_78033,295,4380_71571,Limerick Bus Station,98181-00019-1,1,4380_7778208_3430403,4380_1108 -4380_78033,293,4380_71572,Limerick Bus Station,98185-00017-1,1,4380_7778208_3430403,4380_1108 -4380_78033,296,4380_71573,Limerick Bus Station,98397-00021-1,1,4380_7778208_3430405,4380_1107 -4380_78033,285,4380_71579,Limerick Bus Station,33661-00009-1,1,4380_7778208_3430408,4380_1107 -4380_77953,288,4380_7158,Kells,5936-00011-1,0,4380_7778208_1090112,4380_95 -4380_78033,288,4380_71581,Limerick Bus Station,33705-00011-1,1,4380_7778208_3430408,4380_1107 -4380_78033,286,4380_71582,Limerick Bus Station,33694-00010-1,1,4380_7778208_3430408,4380_1107 -4380_78033,291,4380_71583,Limerick Bus Station,33475-00013-1,1,4380_7778208_3430406,4380_1108 -4380_78033,289,4380_71584,Limerick Bus Station,33650-00014-1,1,4380_7778208_3430408,4380_1107 -4380_78033,287,4380_71585,Limerick Bus Station,33727-00012-1,1,4380_7778208_3430408,4380_1107 -4380_78033,292,4380_71586,Limerick Bus Station,98660-00016-1,1,4380_7778208_3430408,4380_1107 -4380_78033,290,4380_71587,Limerick Bus Station,98659-00015-1,1,4380_7778208_3430408,4380_1107 -4380_78033,294,4380_71588,Limerick Bus Station,98663-00018-1,1,4380_7778208_3430408,4380_1107 -4380_78033,295,4380_71589,Limerick Bus Station,98661-00019-1,1,4380_7778208_3430408,4380_1107 -4380_77953,287,4380_7159,Kells,5943-00012-1,0,4380_7778208_1090112,4380_95 -4380_78033,293,4380_71590,Limerick Bus Station,98662-00017-1,1,4380_7778208_3430408,4380_1107 -4380_78033,296,4380_71591,Limerick Bus Station,98499-00021-1,1,4380_7778208_3430406,4380_1108 -4380_78033,297,4380_71598,Limerick Bus Station,98130-00008-1,1,4380_7778208_3430402,4380_1107 -4380_78033,285,4380_71599,Limerick Bus Station,33152-00009-1,1,4380_7778208_3430404,4380_1107 -4380_77953,289,4380_7160,Kells,5907-00014-1,0,4380_7778208_1090112,4380_95 -4380_78033,288,4380_71601,Limerick Bus Station,33208-00011-1,1,4380_7778208_3430404,4380_1107 -4380_78033,286,4380_71602,Limerick Bus Station,33180-00010-1,1,4380_7778208_3430404,4380_1107 -4380_78033,291,4380_71603,Limerick Bus Station,98298-00013-1,1,4380_7778208_3430404,4380_1107 -4380_78033,289,4380_71604,Limerick Bus Station,33124-00014-1,1,4380_7778208_3430404,4380_1107 -4380_78033,287,4380_71605,Limerick Bus Station,33250-00012-1,1,4380_7778208_3430404,4380_1107 -4380_78033,292,4380_71606,Limerick Bus Station,98296-00016-1,1,4380_7778208_3430404,4380_1107 -4380_78033,290,4380_71607,Limerick Bus Station,98295-00015-1,1,4380_7778208_3430404,4380_1107 -4380_78033,294,4380_71608,Limerick Bus Station,98294-00018-1,1,4380_7778208_3430404,4380_1107 -4380_78033,295,4380_71609,Limerick Bus Station,98293-00019-1,1,4380_7778208_3430404,4380_1107 -4380_77953,290,4380_7161,Kells,55186-00015-1,0,4380_7778208_1090112,4380_95 -4380_78033,293,4380_71610,Limerick Bus Station,98297-00017-1,1,4380_7778208_3430404,4380_1107 -4380_78033,296,4380_71611,Limerick Bus Station,98299-00021-1,1,4380_7778208_3430404,4380_1107 -4380_78033,285,4380_71617,Limerick Bus Station,98404-00009-1,1,4380_7778208_3430405,4380_1107 -4380_78033,288,4380_71619,Limerick Bus Station,98402-00011-1,1,4380_7778208_3430405,4380_1107 -4380_77953,291,4380_7162,Kells,5805-00013-1,0,4380_7778208_1090109,4380_99 -4380_78033,286,4380_71620,Limerick Bus Station,98406-00010-1,1,4380_7778208_3430405,4380_1107 -4380_78033,291,4380_71621,Limerick Bus Station,98572-00013-1,1,4380_7778208_3430407,4380_1107 -4380_78033,289,4380_71622,Limerick Bus Station,98398-00014-1,1,4380_7778208_3430405,4380_1107 -4380_78033,287,4380_71623,Limerick Bus Station,98400-00012-1,1,4380_7778208_3430405,4380_1107 -4380_78033,292,4380_71624,Limerick Bus Station,98407-00016-1,1,4380_7778208_3430405,4380_1107 -4380_78033,290,4380_71625,Limerick Bus Station,98405-00015-1,1,4380_7778208_3430405,4380_1107 -4380_78033,294,4380_71626,Limerick Bus Station,98401-00018-1,1,4380_7778208_3430405,4380_1107 -4380_78033,295,4380_71627,Limerick Bus Station,98399-00019-1,1,4380_7778208_3430405,4380_1107 -4380_78033,293,4380_71628,Limerick Bus Station,98403-00017-1,1,4380_7778208_3430405,4380_1107 -4380_78033,296,4380_71629,Limerick Bus Station,98573-00021-1,1,4380_7778208_3430407,4380_1107 -4380_77953,292,4380_7163,Kells,55185-00016-1,0,4380_7778208_1090112,4380_95 -4380_78033,297,4380_71636,Limerick Bus Station,32948-00008-1,1,4380_7778208_3430401,4380_1107 -4380_78033,285,4380_71637,Limerick Bus Station,33773-00009-1,1,4380_7778208_3430409,4380_1107 -4380_78033,288,4380_71639,Limerick Bus Station,33821-00011-1,1,4380_7778208_3430409,4380_1107 -4380_77953,293,4380_7164,Kells,55184-00017-1,0,4380_7778208_1090112,4380_95 -4380_78033,286,4380_71640,Limerick Bus Station,33809-00010-1,1,4380_7778208_3430409,4380_1107 -4380_78033,291,4380_71641,Limerick Bus Station,32976-00013-1,1,4380_7778208_3430402,4380_1107 -4380_78033,289,4380_71642,Limerick Bus Station,33749-00014-1,1,4380_7778208_3430409,4380_1107 -4380_78033,287,4380_71643,Limerick Bus Station,33857-00012-1,1,4380_7778208_3430409,4380_1107 -4380_78033,292,4380_71644,Limerick Bus Station,98717-00016-1,1,4380_7778208_3430409,4380_1107 -4380_78033,290,4380_71645,Limerick Bus Station,98714-00015-1,1,4380_7778208_3430409,4380_1107 -4380_78033,294,4380_71646,Limerick Bus Station,98716-00018-1,1,4380_7778208_3430409,4380_1107 -4380_78033,295,4380_71647,Limerick Bus Station,98715-00019-1,1,4380_7778208_3430409,4380_1107 -4380_78033,293,4380_71648,Limerick Bus Station,98718-00017-1,1,4380_7778208_3430409,4380_1107 -4380_78033,296,4380_71649,Limerick Bus Station,98131-00021-1,1,4380_7778208_3430402,4380_1107 -4380_77953,294,4380_7165,Kells,55183-00018-1,0,4380_7778208_1090112,4380_95 -4380_78033,285,4380_71655,Limerick Bus Station,33377-00009-1,1,4380_7778208_3430406,4380_1107 -4380_78033,288,4380_71657,Limerick Bus Station,33421-00011-1,1,4380_7778208_3430406,4380_1107 -4380_78033,286,4380_71658,Limerick Bus Station,33399-00010-1,1,4380_7778208_3430406,4380_1107 -4380_78033,291,4380_71659,Limerick Bus Station,32915-00013-1,1,4380_7778208_3430401,4380_1107 -4380_77953,295,4380_7166,Kells,55187-00019-1,0,4380_7778208_1090112,4380_95 -4380_78033,289,4380_71660,Limerick Bus Station,33365-00014-1,1,4380_7778208_3430406,4380_1107 -4380_78033,287,4380_71661,Limerick Bus Station,33443-00012-1,1,4380_7778208_3430406,4380_1107 -4380_78033,292,4380_71662,Limerick Bus Station,98507-00016-1,1,4380_7778208_3430406,4380_1107 -4380_78033,290,4380_71663,Limerick Bus Station,98505-00015-1,1,4380_7778208_3430406,4380_1107 -4380_78033,294,4380_71664,Limerick Bus Station,98509-00018-1,1,4380_7778208_3430406,4380_1107 -4380_78033,295,4380_71665,Limerick Bus Station,98508-00019-1,1,4380_7778208_3430406,4380_1107 -4380_78033,293,4380_71666,Limerick Bus Station,98506-00017-1,1,4380_7778208_3430406,4380_1107 -4380_78033,296,4380_71667,Limerick Bus Station,98058-00021-1,1,4380_7778208_3430401,4380_1107 -4380_77953,296,4380_7167,Kells,55080-00021-1,0,4380_7778208_1090109,4380_99 -4380_78033,297,4380_71674,Limerick Bus Station,33096-00008-1,1,4380_7778208_3430403,4380_1107 -4380_78033,285,4380_71675,Limerick Bus Station,33531-00009-1,1,4380_7778208_3430407,4380_1107 -4380_78033,288,4380_71677,Limerick Bus Station,33587-00011-1,1,4380_7778208_3430407,4380_1107 -4380_78033,286,4380_71678,Limerick Bus Station,33559-00010-1,1,4380_7778208_3430407,4380_1107 -4380_78033,291,4380_71679,Limerick Bus Station,33088-00013-1,1,4380_7778208_3430403,4380_1107 -4380_78033,289,4380_71680,Limerick Bus Station,33489-00014-1,1,4380_7778208_3430407,4380_1107 -4380_78033,287,4380_71681,Limerick Bus Station,33615-00012-1,1,4380_7778208_3430407,4380_1107 -4380_78033,292,4380_71682,Limerick Bus Station,98582-00016-1,1,4380_7778208_3430407,4380_1107 -4380_78033,290,4380_71683,Limerick Bus Station,98581-00015-1,1,4380_7778208_3430407,4380_1107 -4380_78033,294,4380_71684,Limerick Bus Station,98580-00018-1,1,4380_7778208_3430407,4380_1107 -4380_78033,295,4380_71685,Limerick Bus Station,98583-00019-1,1,4380_7778208_3430407,4380_1107 -4380_78033,293,4380_71686,Limerick Bus Station,98579-00017-1,1,4380_7778208_3430407,4380_1107 -4380_78033,296,4380_71687,Limerick Bus Station,98197-00021-1,1,4380_7778208_3430403,4380_1107 -4380_78033,285,4380_71693,Limerick Bus Station,33663-00009-1,1,4380_7778208_3430408,4380_1107 -4380_78033,288,4380_71695,Limerick Bus Station,33707-00011-1,1,4380_7778208_3430408,4380_1107 -4380_78033,286,4380_71696,Limerick Bus Station,33696-00010-1,1,4380_7778208_3430408,4380_1107 -4380_78033,291,4380_71697,Limerick Bus Station,33335-00013-1,1,4380_7778208_3430405,4380_1107 -4380_78033,289,4380_71698,Limerick Bus Station,33652-00014-1,1,4380_7778208_3430408,4380_1107 -4380_78033,287,4380_71699,Limerick Bus Station,33729-00012-1,1,4380_7778208_3430408,4380_1107 -4380_78033,292,4380_71700,Limerick Bus Station,98673-00016-1,1,4380_7778208_3430408,4380_1107 -4380_78033,290,4380_71701,Limerick Bus Station,98672-00015-1,1,4380_7778208_3430408,4380_1107 -4380_78033,294,4380_71702,Limerick Bus Station,98671-00018-1,1,4380_7778208_3430408,4380_1107 -4380_78033,295,4380_71703,Limerick Bus Station,98670-00019-1,1,4380_7778208_3430408,4380_1107 -4380_78033,293,4380_71704,Limerick Bus Station,98669-00017-1,1,4380_7778208_3430408,4380_1107 -4380_78033,296,4380_71705,Limerick Bus Station,98409-00021-1,1,4380_7778208_3430405,4380_1107 -4380_78033,297,4380_71712,Limerick Bus Station,98134-00008-1,1,4380_7778208_3430402,4380_1107 -4380_78033,285,4380_71713,Limerick Bus Station,98206-00009-1,1,4380_7778208_3430403,4380_1107 -4380_78033,288,4380_71715,Limerick Bus Station,98200-00011-1,1,4380_7778208_3430403,4380_1107 -4380_78033,286,4380_71716,Limerick Bus Station,98204-00010-1,1,4380_7778208_3430403,4380_1107 -4380_78033,291,4380_71717,Limerick Bus Station,33477-00013-1,1,4380_7778208_3430406,4380_1107 -4380_78033,289,4380_71718,Limerick Bus Station,98198-00014-1,1,4380_7778208_3430403,4380_1107 -4380_78033,287,4380_71719,Limerick Bus Station,98202-00012-1,1,4380_7778208_3430403,4380_1107 -4380_78033,292,4380_71720,Limerick Bus Station,98205-00016-1,1,4380_7778208_3430403,4380_1107 -4380_78033,290,4380_71721,Limerick Bus Station,98207-00015-1,1,4380_7778208_3430403,4380_1107 -4380_78033,294,4380_71722,Limerick Bus Station,98203-00018-1,1,4380_7778208_3430403,4380_1107 -4380_78033,295,4380_71723,Limerick Bus Station,98199-00019-1,1,4380_7778208_3430403,4380_1107 -4380_78033,293,4380_71724,Limerick Bus Station,98201-00017-1,1,4380_7778208_3430403,4380_1107 -4380_78033,296,4380_71725,Limerick Bus Station,98511-00021-1,1,4380_7778208_3430406,4380_1107 -4380_78033,285,4380_71731,Limerick Bus Station,98418-00009-1,1,4380_7778208_3430405,4380_1107 -4380_78033,288,4380_71733,Limerick Bus Station,98412-00011-1,1,4380_7778208_3430405,4380_1107 -4380_78033,286,4380_71734,Limerick Bus Station,98416-00010-1,1,4380_7778208_3430405,4380_1107 -4380_78033,291,4380_71735,Limerick Bus Station,32978-00013-1,1,4380_7778208_3430402,4380_1107 -4380_78033,289,4380_71736,Limerick Bus Station,98414-00014-1,1,4380_7778208_3430405,4380_1107 -4380_78033,287,4380_71737,Limerick Bus Station,98410-00012-1,1,4380_7778208_3430405,4380_1107 -4380_78033,292,4380_71738,Limerick Bus Station,98417-00016-1,1,4380_7778208_3430405,4380_1107 -4380_78033,290,4380_71739,Limerick Bus Station,98419-00015-1,1,4380_7778208_3430405,4380_1107 -4380_78033,294,4380_71740,Limerick Bus Station,98411-00018-1,1,4380_7778208_3430405,4380_1107 -4380_78033,295,4380_71741,Limerick Bus Station,98415-00019-1,1,4380_7778208_3430405,4380_1107 -4380_78033,293,4380_71742,Limerick Bus Station,98413-00017-1,1,4380_7778208_3430405,4380_1107 -4380_78033,296,4380_71743,Limerick Bus Station,98135-00021-1,1,4380_7778208_3430402,4380_1107 -4380_77953,285,4380_7175,Kells,5602-00009-1,0,4380_7778208_1090106,4380_95 -4380_78033,297,4380_71750,Limerick Bus Station,32950-00008-1,1,4380_7778208_3430401,4380_1107 -4380_78033,285,4380_71751,Limerick Bus Station,97748-00009-1,1,4380_7778208_3320403,4380_1107 -4380_78033,288,4380_71753,Limerick Bus Station,97752-00011-1,1,4380_7778208_3320403,4380_1107 -4380_78033,286,4380_71754,Limerick Bus Station,97750-00010-1,1,4380_7778208_3320403,4380_1107 -4380_78033,291,4380_71755,Limerick Bus Station,32917-00013-1,1,4380_7778208_3430401,4380_1107 -4380_78033,289,4380_71756,Limerick Bus Station,97746-00014-1,1,4380_7778208_3320403,4380_1107 -4380_78033,287,4380_71757,Limerick Bus Station,97744-00012-1,1,4380_7778208_3320403,4380_1107 -4380_78033,292,4380_71758,Limerick Bus Station,97751-00016-1,1,4380_7778208_3320403,4380_1107 -4380_78033,290,4380_71759,Limerick Bus Station,97749-00015-1,1,4380_7778208_3320403,4380_1107 -4380_77953,286,4380_7176,Kells,5610-00010-1,0,4380_7778208_1090106,4380_95 -4380_78033,294,4380_71760,Limerick Bus Station,97745-00018-1,1,4380_7778208_3320403,4380_1107 -4380_78033,295,4380_71761,Limerick Bus Station,97747-00019-1,1,4380_7778208_3320403,4380_1107 -4380_78033,293,4380_71762,Limerick Bus Station,97753-00017-1,1,4380_7778208_3320403,4380_1107 -4380_78033,296,4380_71763,Limerick Bus Station,98060-00021-1,1,4380_7778208_3430401,4380_1107 -4380_78033,285,4380_71769,Limerick Bus Station,33154-00009-1,1,4380_7778208_3430404,4380_1107 -4380_77953,297,4380_7177,Kells,5370-00008-1,0,4380_7778208_1090102,4380_91 -4380_78033,288,4380_71771,Limerick Bus Station,33210-00011-1,1,4380_7778208_3430404,4380_1107 -4380_78033,286,4380_71772,Limerick Bus Station,33182-00010-1,1,4380_7778208_3430404,4380_1107 -4380_78033,291,4380_71773,Limerick Bus Station,98307-00013-1,1,4380_7778208_3430404,4380_1107 -4380_78033,289,4380_71774,Limerick Bus Station,33126-00014-1,1,4380_7778208_3430404,4380_1107 -4380_78033,287,4380_71775,Limerick Bus Station,33252-00012-1,1,4380_7778208_3430404,4380_1107 -4380_78033,292,4380_71776,Limerick Bus Station,98309-00016-1,1,4380_7778208_3430404,4380_1107 -4380_78033,290,4380_71777,Limerick Bus Station,98313-00015-1,1,4380_7778208_3430404,4380_1107 -4380_78033,294,4380_71778,Limerick Bus Station,98311-00018-1,1,4380_7778208_3430404,4380_1107 -4380_78033,295,4380_71779,Limerick Bus Station,98310-00019-1,1,4380_7778208_3430404,4380_1107 -4380_77953,288,4380_7178,Kells,5618-00011-1,0,4380_7778208_1090106,4380_95 -4380_78033,293,4380_71780,Limerick Bus Station,98312-00017-1,1,4380_7778208_3430404,4380_1107 -4380_78033,296,4380_71781,Limerick Bus Station,98308-00021-1,1,4380_7778208_3430404,4380_1107 -4380_78033,285,4380_71787,Limerick Bus Station,33775-00009-1,1,4380_7778208_3430409,4380_1107 -4380_78033,288,4380_71788,Limerick Bus Station,33823-00011-1,1,4380_7778208_3430409,4380_1107 -4380_78033,286,4380_71789,Limerick Bus Station,33811-00010-1,1,4380_7778208_3430409,4380_1107 -4380_77953,287,4380_7179,Kells,5626-00012-1,0,4380_7778208_1090106,4380_95 -4380_78033,289,4380_71790,Limerick Bus Station,33751-00014-1,1,4380_7778208_3430409,4380_1107 -4380_78033,287,4380_71791,Limerick Bus Station,33859-00012-1,1,4380_7778208_3430409,4380_1107 -4380_78033,292,4380_71792,Limerick Bus Station,98728-00016-1,1,4380_7778208_3430409,4380_1107 -4380_78033,290,4380_71793,Limerick Bus Station,98726-00015-1,1,4380_7778208_3430409,4380_1107 -4380_78033,294,4380_71794,Limerick Bus Station,98727-00018-1,1,4380_7778208_3430409,4380_1107 -4380_78033,295,4380_71795,Limerick Bus Station,98725-00019-1,1,4380_7778208_3430409,4380_1107 -4380_78033,293,4380_71796,Limerick Bus Station,98724-00017-1,1,4380_7778208_3430409,4380_1107 -4380_78033,297,4380_71798,Limerick Bus Station,33098-00008-1,1,4380_7778208_3430403,4380_1107 -4380_77953,289,4380_7180,Kells,5594-00014-1,0,4380_7778208_1090106,4380_95 -4380_78033,291,4380_71800,Limerick Bus Station,33090-00013-1,1,4380_7778208_3430403,4380_1107 -4380_78033,296,4380_71801,Limerick Bus Station,98209-00021-1,1,4380_7778208_3430403,4380_1107 -4380_78033,285,4380_71807,Limerick Bus Station,33533-00009-1,1,4380_7778208_3430407,4380_1107 -4380_78033,288,4380_71808,Limerick Bus Station,33589-00011-1,1,4380_7778208_3430407,4380_1107 -4380_78033,286,4380_71809,Limerick Bus Station,33561-00010-1,1,4380_7778208_3430407,4380_1107 -4380_77953,290,4380_7181,Kells,54952-00015-1,0,4380_7778208_1090106,4380_95 -4380_78033,289,4380_71810,Limerick Bus Station,33491-00014-1,1,4380_7778208_3430407,4380_1107 -4380_78033,287,4380_71811,Limerick Bus Station,33617-00012-1,1,4380_7778208_3430407,4380_1107 -4380_78033,292,4380_71812,Limerick Bus Station,98593-00016-1,1,4380_7778208_3430407,4380_1107 -4380_78033,290,4380_71813,Limerick Bus Station,98591-00015-1,1,4380_7778208_3430407,4380_1107 -4380_78033,294,4380_71814,Limerick Bus Station,98590-00018-1,1,4380_7778208_3430407,4380_1107 -4380_78033,295,4380_71815,Limerick Bus Station,98592-00019-1,1,4380_7778208_3430407,4380_1107 -4380_78033,293,4380_71816,Limerick Bus Station,98589-00017-1,1,4380_7778208_3430407,4380_1107 -4380_77953,291,4380_7182,Kells,5288-00013-1,0,4380_7778208_1090101,4380_99 -4380_78033,285,4380_71822,Limerick Bus Station,33664-00009-1,1,4380_7778208_3430408,4380_1107 -4380_78033,288,4380_71824,Limerick Bus Station,33708-00011-1,1,4380_7778208_3430408,4380_1107 -4380_78033,286,4380_71825,Limerick Bus Station,33697-00010-1,1,4380_7778208_3430408,4380_1107 -4380_78033,291,4380_71826,Limerick Bus Station,33479-00013-1,1,4380_7778208_3430406,4380_1108 -4380_78033,289,4380_71827,Limerick Bus Station,33653-00014-1,1,4380_7778208_3430408,4380_1107 -4380_78033,287,4380_71828,Limerick Bus Station,33730-00012-1,1,4380_7778208_3430408,4380_1107 -4380_78033,292,4380_71829,Limerick Bus Station,98675-00016-1,1,4380_7778208_3430408,4380_1107 -4380_77953,292,4380_7183,Kells,54953-00016-1,0,4380_7778208_1090106,4380_95 -4380_78033,290,4380_71830,Limerick Bus Station,98674-00015-1,1,4380_7778208_3430408,4380_1107 -4380_78033,294,4380_71831,Limerick Bus Station,98677-00018-1,1,4380_7778208_3430408,4380_1107 -4380_78033,295,4380_71832,Limerick Bus Station,98678-00019-1,1,4380_7778208_3430408,4380_1107 -4380_78033,293,4380_71833,Limerick Bus Station,98676-00017-1,1,4380_7778208_3430408,4380_1107 -4380_78033,296,4380_71834,Limerick Bus Station,98518-00021-1,1,4380_7778208_3430406,4380_1108 -4380_77953,293,4380_7184,Kells,54955-00017-1,0,4380_7778208_1090106,4380_95 -4380_78033,285,4380_71840,Limerick Bus Station,32825-00009-1,1,4380_7778208_3430401,4380_1107 -4380_78033,288,4380_71841,Limerick Bus Station,32857-00011-1,1,4380_7778208_3430401,4380_1107 -4380_78033,286,4380_71842,Limerick Bus Station,32847-00010-1,1,4380_7778208_3430401,4380_1107 -4380_78033,289,4380_71843,Limerick Bus Station,32803-00014-1,1,4380_7778208_3430401,4380_1107 -4380_78033,287,4380_71844,Limerick Bus Station,32891-00012-1,1,4380_7778208_3430401,4380_1107 -4380_78033,292,4380_71845,Limerick Bus Station,98068-00016-1,1,4380_7778208_3430401,4380_1107 -4380_78033,290,4380_71846,Limerick Bus Station,98070-00015-1,1,4380_7778208_3430401,4380_1107 -4380_78033,294,4380_71847,Limerick Bus Station,98067-00018-1,1,4380_7778208_3430401,4380_1107 -4380_78033,295,4380_71848,Limerick Bus Station,98066-00019-1,1,4380_7778208_3430401,4380_1107 -4380_78033,293,4380_71849,Limerick Bus Station,98069-00017-1,1,4380_7778208_3430401,4380_1107 -4380_77953,294,4380_7185,Kells,54954-00018-1,0,4380_7778208_1090106,4380_95 -4380_78033,297,4380_71851,Limerick Bus Station,98138-00008-1,1,4380_7778208_3430402,4380_1107 -4380_78033,291,4380_71853,Limerick Bus Station,33337-00013-1,1,4380_7778208_3430405,4380_1107 -4380_78033,296,4380_71854,Limerick Bus Station,98431-00021-1,1,4380_7778208_3430405,4380_1107 -4380_77953,295,4380_7186,Kells,54956-00019-1,0,4380_7778208_1090106,4380_95 -4380_78033,285,4380_71860,Limerick Bus Station,98432-00009-1,1,4380_7778208_3430405,4380_1107 -4380_78033,288,4380_71861,Limerick Bus Station,98440-00011-1,1,4380_7778208_3430405,4380_1107 -4380_78033,286,4380_71862,Limerick Bus Station,98438-00010-1,1,4380_7778208_3430405,4380_1107 -4380_78033,289,4380_71863,Limerick Bus Station,98436-00014-1,1,4380_7778208_3430405,4380_1107 -4380_78033,287,4380_71864,Limerick Bus Station,98434-00012-1,1,4380_7778208_3430405,4380_1107 -4380_78033,292,4380_71865,Limerick Bus Station,98439-00016-1,1,4380_7778208_3430405,4380_1107 -4380_78033,290,4380_71866,Limerick Bus Station,98433-00015-1,1,4380_7778208_3430405,4380_1107 -4380_78033,294,4380_71867,Limerick Bus Station,98435-00018-1,1,4380_7778208_3430405,4380_1107 -4380_78033,295,4380_71868,Limerick Bus Station,98437-00019-1,1,4380_7778208_3430405,4380_1107 -4380_78033,293,4380_71869,Limerick Bus Station,98441-00017-1,1,4380_7778208_3430405,4380_1107 -4380_77953,296,4380_7187,Kells,54688-00021-1,0,4380_7778208_1090101,4380_99 -4380_78033,285,4380_71875,Limerick Bus Station,33379-00009-1,1,4380_7778208_3430406,4380_1107 -4380_78033,288,4380_71877,Limerick Bus Station,33423-00011-1,1,4380_7778208_3430406,4380_1107 -4380_78033,286,4380_71878,Limerick Bus Station,33401-00010-1,1,4380_7778208_3430406,4380_1107 -4380_78033,291,4380_71879,Limerick Bus Station,98599-00013-1,1,4380_7778208_3430407,4380_1108 -4380_78033,289,4380_71880,Limerick Bus Station,33367-00014-1,1,4380_7778208_3430406,4380_1107 -4380_78033,287,4380_71881,Limerick Bus Station,33445-00012-1,1,4380_7778208_3430406,4380_1107 -4380_78033,292,4380_71882,Limerick Bus Station,98521-00016-1,1,4380_7778208_3430406,4380_1107 -4380_78033,290,4380_71883,Limerick Bus Station,98519-00015-1,1,4380_7778208_3430406,4380_1107 -4380_78033,294,4380_71884,Limerick Bus Station,98523-00018-1,1,4380_7778208_3430406,4380_1107 -4380_78033,295,4380_71885,Limerick Bus Station,98522-00019-1,1,4380_7778208_3430406,4380_1107 -4380_78033,293,4380_71886,Limerick Bus Station,98520-00017-1,1,4380_7778208_3430406,4380_1107 -4380_78033,296,4380_71887,Limerick Bus Station,98600-00021-1,1,4380_7778208_3430407,4380_1108 -4380_78033,285,4380_71893,Limerick Bus Station,98228-00009-1,1,4380_7778208_3430403,4380_1107 -4380_78033,288,4380_71894,Limerick Bus Station,98220-00011-1,1,4380_7778208_3430403,4380_1107 -4380_78033,286,4380_71895,Limerick Bus Station,98224-00010-1,1,4380_7778208_3430403,4380_1107 -4380_78033,289,4380_71896,Limerick Bus Station,98222-00014-1,1,4380_7778208_3430403,4380_1107 -4380_78033,287,4380_71897,Limerick Bus Station,98226-00012-1,1,4380_7778208_3430403,4380_1107 -4380_78033,292,4380_71898,Limerick Bus Station,98225-00016-1,1,4380_7778208_3430403,4380_1107 -4380_78033,290,4380_71899,Limerick Bus Station,98229-00015-1,1,4380_7778208_3430403,4380_1107 -4380_78033,294,4380_71900,Limerick Bus Station,98227-00018-1,1,4380_7778208_3430403,4380_1107 -4380_78033,295,4380_71901,Limerick Bus Station,98223-00019-1,1,4380_7778208_3430403,4380_1107 -4380_78033,293,4380_71902,Limerick Bus Station,98221-00017-1,1,4380_7778208_3430403,4380_1107 -4380_78033,297,4380_71904,Limerick Bus Station,32952-00008-1,1,4380_7778208_3430401,4380_1107 -4380_78033,291,4380_71906,Limerick Bus Station,32980-00013-1,1,4380_7778208_3430402,4380_1107 -4380_78033,296,4380_71907,Limerick Bus Station,98139-00021-1,1,4380_7778208_3430402,4380_1107 -4380_78033,285,4380_71913,Limerick Bus Station,33156-00009-1,1,4380_7778208_3430404,4380_1107 -4380_78033,288,4380_71914,Limerick Bus Station,33212-00011-1,1,4380_7778208_3430404,4380_1107 -4380_78033,286,4380_71915,Limerick Bus Station,33184-00010-1,1,4380_7778208_3430404,4380_1107 -4380_78033,289,4380_71916,Limerick Bus Station,33128-00014-1,1,4380_7778208_3430404,4380_1107 -4380_78033,287,4380_71917,Limerick Bus Station,33254-00012-1,1,4380_7778208_3430404,4380_1107 -4380_78033,292,4380_71918,Limerick Bus Station,98323-00016-1,1,4380_7778208_3430404,4380_1107 -4380_78033,290,4380_71919,Limerick Bus Station,98325-00015-1,1,4380_7778208_3430404,4380_1107 -4380_78033,294,4380_71920,Limerick Bus Station,98321-00018-1,1,4380_7778208_3430404,4380_1107 -4380_78033,295,4380_71921,Limerick Bus Station,98322-00019-1,1,4380_7778208_3430404,4380_1107 -4380_78033,293,4380_71922,Limerick Bus Station,98324-00017-1,1,4380_7778208_3430404,4380_1107 -4380_78033,285,4380_71928,Limerick Bus Station,33777-00009-1,1,4380_7778208_3430409,4380_1107 -4380_78033,288,4380_71930,Limerick Bus Station,33825-00011-1,1,4380_7778208_3430409,4380_1107 -4380_78033,286,4380_71931,Limerick Bus Station,33813-00010-1,1,4380_7778208_3430409,4380_1107 -4380_78033,291,4380_71932,Limerick Bus Station,32919-00013-1,1,4380_7778208_3430401,4380_1108 -4380_78033,289,4380_71933,Limerick Bus Station,33753-00014-1,1,4380_7778208_3430409,4380_1107 -4380_78033,287,4380_71934,Limerick Bus Station,33861-00012-1,1,4380_7778208_3430409,4380_1107 -4380_78033,292,4380_71935,Limerick Bus Station,98736-00016-1,1,4380_7778208_3430409,4380_1107 -4380_78033,290,4380_71936,Limerick Bus Station,98737-00015-1,1,4380_7778208_3430409,4380_1107 -4380_78033,294,4380_71937,Limerick Bus Station,98734-00018-1,1,4380_7778208_3430409,4380_1107 -4380_78033,295,4380_71938,Limerick Bus Station,98738-00019-1,1,4380_7778208_3430409,4380_1107 -4380_78033,293,4380_71939,Limerick Bus Station,98735-00017-1,1,4380_7778208_3430409,4380_1107 -4380_78033,296,4380_71940,Limerick Bus Station,98077-00021-1,1,4380_7778208_3430401,4380_1108 -4380_78033,285,4380_71946,Limerick Bus Station,33535-00009-1,1,4380_7778208_3430407,4380_1107 -4380_78033,288,4380_71947,Limerick Bus Station,33591-00011-1,1,4380_7778208_3430407,4380_1107 -4380_78033,286,4380_71948,Limerick Bus Station,33563-00010-1,1,4380_7778208_3430407,4380_1107 -4380_78033,289,4380_71949,Limerick Bus Station,33493-00014-1,1,4380_7778208_3430407,4380_1107 -4380_77953,285,4380_7195,Kells,5665-00009-1,0,4380_7778208_1090107,4380_95 -4380_78033,287,4380_71950,Limerick Bus Station,33619-00012-1,1,4380_7778208_3430407,4380_1107 -4380_78033,292,4380_71951,Limerick Bus Station,98606-00016-1,1,4380_7778208_3430407,4380_1107 -4380_78033,290,4380_71952,Limerick Bus Station,98605-00015-1,1,4380_7778208_3430407,4380_1107 -4380_78033,294,4380_71953,Limerick Bus Station,98604-00018-1,1,4380_7778208_3430407,4380_1107 -4380_78033,295,4380_71954,Limerick Bus Station,98607-00019-1,1,4380_7778208_3430407,4380_1107 -4380_78033,293,4380_71955,Limerick Bus Station,98603-00017-1,1,4380_7778208_3430407,4380_1107 -4380_78033,297,4380_71957,Limerick Bus Station,33100-00008-1,1,4380_7778208_3430403,4380_1107 -4380_78033,291,4380_71959,Limerick Bus Station,98326-00013-1,1,4380_7778208_3430404,4380_1107 -4380_77953,286,4380_7196,Kells,5673-00010-1,0,4380_7778208_1090107,4380_95 -4380_78033,296,4380_71960,Limerick Bus Station,98327-00021-1,1,4380_7778208_3430404,4380_1107 -4380_78033,285,4380_71966,Limerick Bus Station,33666-00009-1,1,4380_7778208_3430408,4380_1107 -4380_78033,288,4380_71967,Limerick Bus Station,33710-00011-1,1,4380_7778208_3430408,4380_1107 -4380_78033,286,4380_71968,Limerick Bus Station,33699-00010-1,1,4380_7778208_3430408,4380_1107 -4380_78033,289,4380_71969,Limerick Bus Station,33655-00014-1,1,4380_7778208_3430408,4380_1107 -4380_77953,297,4380_7197,Kells,5711-00008-1,0,4380_7778208_1090107,4380_91 -4380_78033,287,4380_71970,Limerick Bus Station,33732-00012-1,1,4380_7778208_3430408,4380_1107 -4380_78033,292,4380_71971,Limerick Bus Station,98684-00016-1,1,4380_7778208_3430408,4380_1107 -4380_78033,290,4380_71972,Limerick Bus Station,98685-00015-1,1,4380_7778208_3430408,4380_1107 -4380_78033,294,4380_71973,Limerick Bus Station,98686-00018-1,1,4380_7778208_3430408,4380_1107 -4380_78033,295,4380_71974,Limerick Bus Station,98687-00019-1,1,4380_7778208_3430408,4380_1107 -4380_78033,293,4380_71975,Limerick Bus Station,98688-00017-1,1,4380_7778208_3430408,4380_1107 -4380_77953,288,4380_7198,Kells,5681-00011-1,0,4380_7778208_1090107,4380_95 -4380_78033,285,4380_71981,Limerick Bus Station,32827-00009-1,1,4380_7778208_3430401,4380_1107 -4380_78033,288,4380_71983,Limerick Bus Station,32859-00011-1,1,4380_7778208_3430401,4380_1107 -4380_78033,286,4380_71984,Limerick Bus Station,32849-00010-1,1,4380_7778208_3430401,4380_1107 -4380_78033,291,4380_71985,Limerick Bus Station,33092-00013-1,1,4380_7778208_3430403,4380_1107 -4380_78033,289,4380_71986,Limerick Bus Station,32805-00014-1,1,4380_7778208_3430401,4380_1107 -4380_78033,287,4380_71987,Limerick Bus Station,32893-00012-1,1,4380_7778208_3430401,4380_1107 -4380_78033,292,4380_71988,Limerick Bus Station,98078-00016-1,1,4380_7778208_3430401,4380_1107 -4380_78033,290,4380_71989,Limerick Bus Station,98082-00015-1,1,4380_7778208_3430401,4380_1107 -4380_77953,287,4380_7199,Kells,5689-00012-1,0,4380_7778208_1090107,4380_95 -4380_78033,294,4380_71990,Limerick Bus Station,98080-00018-1,1,4380_7778208_3430401,4380_1107 -4380_78033,295,4380_71991,Limerick Bus Station,98079-00019-1,1,4380_7778208_3430401,4380_1107 -4380_78033,293,4380_71992,Limerick Bus Station,98081-00017-1,1,4380_7778208_3430401,4380_1107 -4380_78033,296,4380_71993,Limerick Bus Station,98241-00021-1,1,4380_7778208_3430403,4380_1107 -4380_78033,285,4380_71999,Limerick Bus Station,98456-00009-1,1,4380_7778208_3430405,4380_1107 -4380_77953,289,4380_7200,Kells,5657-00014-1,0,4380_7778208_1090107,4380_95 -4380_78033,288,4380_72001,Limerick Bus Station,98453-00011-1,1,4380_7778208_3430405,4380_1107 -4380_78033,286,4380_72002,Limerick Bus Station,98462-00010-1,1,4380_7778208_3430405,4380_1107 -4380_78033,291,4380_72003,Limerick Bus Station,33339-00013-1,1,4380_7778208_3430405,4380_1107 -4380_78033,289,4380_72004,Limerick Bus Station,98460-00014-1,1,4380_7778208_3430405,4380_1107 -4380_78033,287,4380_72005,Limerick Bus Station,98458-00012-1,1,4380_7778208_3430405,4380_1107 -4380_78033,292,4380_72006,Limerick Bus Station,98463-00016-1,1,4380_7778208_3430405,4380_1107 -4380_78033,290,4380_72007,Limerick Bus Station,98457-00015-1,1,4380_7778208_3430405,4380_1107 -4380_78033,294,4380_72008,Limerick Bus Station,98459-00018-1,1,4380_7778208_3430405,4380_1107 -4380_78033,295,4380_72009,Limerick Bus Station,98461-00019-1,1,4380_7778208_3430405,4380_1107 -4380_77953,290,4380_7201,Kells,55002-00015-1,0,4380_7778208_1090107,4380_95 -4380_78033,293,4380_72010,Limerick Bus Station,98454-00017-1,1,4380_7778208_3430405,4380_1107 -4380_78033,296,4380_72011,Limerick Bus Station,98455-00021-1,1,4380_7778208_3430405,4380_1107 -4380_78033,297,4380_72013,Limerick Bus Station,98142-00008-1,1,4380_7778208_3430402,4380_1107 -4380_78033,285,4380_72019,Limerick Bus Station,33381-00009-1,1,4380_7778208_3430406,4380_1107 -4380_77953,291,4380_7202,Kells,5576-00013-1,0,4380_7778208_1090105,4380_99 -4380_78033,288,4380_72020,Limerick Bus Station,33425-00011-1,1,4380_7778208_3430406,4380_1107 -4380_78033,286,4380_72021,Limerick Bus Station,33403-00010-1,1,4380_7778208_3430406,4380_1107 -4380_78033,289,4380_72022,Limerick Bus Station,33369-00014-1,1,4380_7778208_3430406,4380_1107 -4380_78033,287,4380_72023,Limerick Bus Station,33447-00012-1,1,4380_7778208_3430406,4380_1107 -4380_78033,292,4380_72024,Limerick Bus Station,98529-00016-1,1,4380_7778208_3430406,4380_1107 -4380_78033,290,4380_72025,Limerick Bus Station,98533-00015-1,1,4380_7778208_3430406,4380_1107 -4380_78033,294,4380_72026,Limerick Bus Station,98530-00018-1,1,4380_7778208_3430406,4380_1107 -4380_78033,295,4380_72027,Limerick Bus Station,98532-00019-1,1,4380_7778208_3430406,4380_1107 -4380_78033,293,4380_72028,Limerick Bus Station,98531-00017-1,1,4380_7778208_3430406,4380_1107 -4380_77953,292,4380_7203,Kells,54998-00016-1,0,4380_7778208_1090107,4380_95 -4380_78033,291,4380_72030,Limerick Bus Station,32982-00013-1,1,4380_7778208_3430402,4380_1107 -4380_78033,296,4380_72031,Limerick Bus Station,98143-00021-1,1,4380_7778208_3430402,4380_1107 -4380_78033,285,4380_72037,Limerick Bus Station,98246-00009-1,1,4380_7778208_3430403,4380_1107 -4380_78033,288,4380_72038,Limerick Bus Station,98244-00011-1,1,4380_7778208_3430403,4380_1107 -4380_78033,286,4380_72039,Limerick Bus Station,98242-00010-1,1,4380_7778208_3430403,4380_1107 -4380_77953,293,4380_7204,Kells,55001-00017-1,0,4380_7778208_1090107,4380_95 -4380_78033,289,4380_72040,Limerick Bus Station,98250-00014-1,1,4380_7778208_3430403,4380_1107 -4380_78033,287,4380_72041,Limerick Bus Station,98248-00012-1,1,4380_7778208_3430403,4380_1107 -4380_78033,292,4380_72042,Limerick Bus Station,98243-00016-1,1,4380_7778208_3430403,4380_1107 -4380_78033,290,4380_72043,Limerick Bus Station,98247-00015-1,1,4380_7778208_3430403,4380_1107 -4380_78033,294,4380_72044,Limerick Bus Station,98249-00018-1,1,4380_7778208_3430403,4380_1107 -4380_78033,295,4380_72045,Limerick Bus Station,98251-00019-1,1,4380_7778208_3430403,4380_1107 -4380_78033,293,4380_72046,Limerick Bus Station,98245-00017-1,1,4380_7778208_3430403,4380_1107 -4380_77953,294,4380_7205,Kells,55000-00018-1,0,4380_7778208_1090107,4380_95 -4380_78033,285,4380_72052,Limerick Bus Station,33158-00009-1,1,4380_7778208_3430404,4380_1107 -4380_78033,288,4380_72054,Limerick Bus Station,33214-00011-1,1,4380_7778208_3430404,4380_1107 -4380_78033,286,4380_72055,Limerick Bus Station,33186-00010-1,1,4380_7778208_3430404,4380_1107 -4380_78033,291,4380_72056,Limerick Bus Station,32921-00013-1,1,4380_7778208_3430401,4380_1108 -4380_78033,289,4380_72057,Limerick Bus Station,33130-00014-1,1,4380_7778208_3430404,4380_1107 -4380_78033,287,4380_72058,Limerick Bus Station,33256-00012-1,1,4380_7778208_3430404,4380_1107 -4380_78033,292,4380_72059,Limerick Bus Station,98333-00016-1,1,4380_7778208_3430404,4380_1107 -4380_77953,295,4380_7206,Kells,54999-00019-1,0,4380_7778208_1090107,4380_95 -4380_78033,290,4380_72060,Limerick Bus Station,98334-00015-1,1,4380_7778208_3430404,4380_1107 -4380_78033,294,4380_72061,Limerick Bus Station,98337-00018-1,1,4380_7778208_3430404,4380_1107 -4380_78033,295,4380_72062,Limerick Bus Station,98336-00019-1,1,4380_7778208_3430404,4380_1107 -4380_78033,293,4380_72063,Limerick Bus Station,98335-00017-1,1,4380_7778208_3430404,4380_1107 -4380_78033,296,4380_72064,Limerick Bus Station,98084-00021-1,1,4380_7778208_3430401,4380_1108 -4380_78033,297,4380_72066,Limerick Bus Station,32954-00008-1,1,4380_7778208_3430401,4380_1107 -4380_77953,296,4380_7207,Kells,54901-00021-1,0,4380_7778208_1090105,4380_99 -4380_78033,285,4380_72072,Limerick Bus Station,33537-00009-1,1,4380_7778208_3430407,4380_1107 -4380_78033,288,4380_72074,Limerick Bus Station,33593-00011-1,1,4380_7778208_3430407,4380_1107 -4380_78033,286,4380_72075,Limerick Bus Station,33565-00010-1,1,4380_7778208_3430407,4380_1107 -4380_78033,291,4380_72076,Limerick Bus Station,98615-00013-1,1,4380_7778208_3430407,4380_1108 -4380_78033,289,4380_72077,Limerick Bus Station,33495-00014-1,1,4380_7778208_3430407,4380_1107 -4380_78033,287,4380_72078,Limerick Bus Station,33621-00012-1,1,4380_7778208_3430407,4380_1107 -4380_78033,292,4380_72079,Limerick Bus Station,98621-00016-1,1,4380_7778208_3430407,4380_1107 -4380_78033,290,4380_72080,Limerick Bus Station,98619-00015-1,1,4380_7778208_3430407,4380_1107 -4380_78033,294,4380_72081,Limerick Bus Station,98620-00018-1,1,4380_7778208_3430407,4380_1107 -4380_78033,295,4380_72082,Limerick Bus Station,98617-00019-1,1,4380_7778208_3430407,4380_1107 -4380_78033,293,4380_72083,Limerick Bus Station,98618-00017-1,1,4380_7778208_3430407,4380_1107 -4380_78033,296,4380_72084,Limerick Bus Station,98616-00021-1,1,4380_7778208_3430407,4380_1108 -4380_78033,285,4380_72090,Limerick Bus Station,33779-00009-1,1,4380_7778208_3430409,4380_1107 -4380_78033,288,4380_72092,Limerick Bus Station,33827-00011-1,1,4380_7778208_3430409,4380_1107 -4380_78033,286,4380_72093,Limerick Bus Station,33815-00010-1,1,4380_7778208_3430409,4380_1107 -4380_78033,291,4380_72094,Limerick Bus Station,33481-00013-1,1,4380_7778208_3430406,4380_1107 -4380_78033,289,4380_72095,Limerick Bus Station,33755-00014-1,1,4380_7778208_3430409,4380_1107 -4380_78033,287,4380_72096,Limerick Bus Station,33863-00012-1,1,4380_7778208_3430409,4380_1107 -4380_78033,292,4380_72097,Limerick Bus Station,98744-00016-1,1,4380_7778208_3430409,4380_1107 -4380_78033,290,4380_72098,Limerick Bus Station,98745-00015-1,1,4380_7778208_3430409,4380_1107 -4380_78033,294,4380_72099,Limerick Bus Station,98747-00018-1,1,4380_7778208_3430409,4380_1107 -4380_78033,295,4380_72100,Limerick Bus Station,98746-00019-1,1,4380_7778208_3430409,4380_1107 -4380_78033,293,4380_72101,Limerick Bus Station,98748-00017-1,1,4380_7778208_3430409,4380_1107 -4380_78033,296,4380_72102,Limerick Bus Station,98535-00021-1,1,4380_7778208_3430406,4380_1107 -4380_78033,297,4380_72104,Limerick Bus Station,33102-00008-1,1,4380_7778208_3430403,4380_1107 -4380_78033,285,4380_72110,Limerick Bus Station,33668-00009-1,1,4380_7778208_3430408,4380_1107 -4380_78033,288,4380_72112,Limerick Bus Station,33712-00011-1,1,4380_7778208_3430408,4380_1107 -4380_78033,286,4380_72113,Limerick Bus Station,33701-00010-1,1,4380_7778208_3430408,4380_1107 -4380_78033,291,4380_72114,Limerick Bus Station,98340-00013-1,1,4380_7778208_3430404,4380_1107 -4380_78033,289,4380_72115,Limerick Bus Station,33657-00014-1,1,4380_7778208_3430408,4380_1107 -4380_78033,287,4380_72116,Limerick Bus Station,33734-00012-1,1,4380_7778208_3430408,4380_1107 -4380_78033,292,4380_72117,Limerick Bus Station,98696-00016-1,1,4380_7778208_3430408,4380_1107 -4380_78033,290,4380_72118,Limerick Bus Station,98695-00015-1,1,4380_7778208_3430408,4380_1107 -4380_78033,294,4380_72119,Limerick Bus Station,98694-00018-1,1,4380_7778208_3430408,4380_1107 -4380_78033,295,4380_72120,Limerick Bus Station,98697-00019-1,1,4380_7778208_3430408,4380_1107 -4380_78033,293,4380_72121,Limerick Bus Station,98698-00017-1,1,4380_7778208_3430408,4380_1107 -4380_78033,296,4380_72122,Limerick Bus Station,98341-00021-1,1,4380_7778208_3430404,4380_1107 -4380_78033,285,4380_72128,Limerick Bus Station,98476-00009-1,1,4380_7778208_3430405,4380_1107 -4380_78033,288,4380_72130,Limerick Bus Station,98474-00011-1,1,4380_7778208_3430405,4380_1107 -4380_78033,286,4380_72131,Limerick Bus Station,98482-00010-1,1,4380_7778208_3430405,4380_1107 -4380_78033,291,4380_72132,Limerick Bus Station,32984-00013-1,1,4380_7778208_3430402,4380_1107 -4380_78033,289,4380_72133,Limerick Bus Station,98478-00014-1,1,4380_7778208_3430405,4380_1107 -4380_78033,287,4380_72134,Limerick Bus Station,98480-00012-1,1,4380_7778208_3430405,4380_1107 -4380_78033,292,4380_72135,Limerick Bus Station,98483-00016-1,1,4380_7778208_3430405,4380_1107 -4380_78033,290,4380_72136,Limerick Bus Station,98477-00015-1,1,4380_7778208_3430405,4380_1107 -4380_78033,294,4380_72137,Limerick Bus Station,98481-00018-1,1,4380_7778208_3430405,4380_1107 -4380_78033,295,4380_72138,Limerick Bus Station,98479-00019-1,1,4380_7778208_3430405,4380_1107 -4380_78033,293,4380_72139,Limerick Bus Station,98475-00017-1,1,4380_7778208_3430405,4380_1107 -4380_78033,296,4380_72140,Limerick Bus Station,98146-00021-1,1,4380_7778208_3430402,4380_1107 -4380_78033,297,4380_72142,Limerick Bus Station,98147-00008-1,1,4380_7778208_3430402,4380_1107 -4380_78033,285,4380_72148,Limerick Bus Station,98262-00009-1,1,4380_7778208_3430403,4380_1107 -4380_77953,285,4380_7215,Kells,5727-00009-1,0,4380_7778208_1090108,4380_95 -4380_78033,288,4380_72150,Limerick Bus Station,98266-00011-1,1,4380_7778208_3430403,4380_1107 -4380_78033,286,4380_72151,Limerick Bus Station,98268-00010-1,1,4380_7778208_3430403,4380_1107 -4380_78033,291,4380_72152,Limerick Bus Station,98624-00013-1,1,4380_7778208_3430407,4380_1107 -4380_78033,289,4380_72153,Limerick Bus Station,98270-00014-1,1,4380_7778208_3430403,4380_1107 -4380_78033,287,4380_72154,Limerick Bus Station,98264-00012-1,1,4380_7778208_3430403,4380_1107 -4380_78033,292,4380_72155,Limerick Bus Station,98269-00016-1,1,4380_7778208_3430403,4380_1107 -4380_78033,290,4380_72156,Limerick Bus Station,98263-00015-1,1,4380_7778208_3430403,4380_1107 -4380_78033,294,4380_72157,Limerick Bus Station,98265-00018-1,1,4380_7778208_3430403,4380_1107 -4380_78033,295,4380_72158,Limerick Bus Station,98271-00019-1,1,4380_7778208_3430403,4380_1107 -4380_78033,293,4380_72159,Limerick Bus Station,98267-00017-1,1,4380_7778208_3430403,4380_1107 -4380_77953,286,4380_7216,Kells,5735-00010-1,0,4380_7778208_1090108,4380_95 -4380_78033,296,4380_72160,Limerick Bus Station,98625-00021-1,1,4380_7778208_3430407,4380_1107 -4380_78033,285,4380_72166,Limerick Bus Station,33383-00009-1,1,4380_7778208_3430406,4380_1107 -4380_78033,288,4380_72168,Limerick Bus Station,33427-00011-1,1,4380_7778208_3430406,4380_1107 -4380_78033,286,4380_72169,Limerick Bus Station,33405-00010-1,1,4380_7778208_3430406,4380_1107 -4380_77953,297,4380_7217,Kells,5643-00008-1,0,4380_7778208_1090106,4380_91 -4380_78033,291,4380_72170,Limerick Bus Station,32923-00013-1,1,4380_7778208_3430401,4380_1108 -4380_78033,289,4380_72171,Limerick Bus Station,33371-00014-1,1,4380_7778208_3430406,4380_1107 -4380_78033,287,4380_72172,Limerick Bus Station,33449-00012-1,1,4380_7778208_3430406,4380_1107 -4380_78033,292,4380_72173,Limerick Bus Station,98543-00016-1,1,4380_7778208_3430406,4380_1107 -4380_78033,290,4380_72174,Limerick Bus Station,98544-00015-1,1,4380_7778208_3430406,4380_1107 -4380_78033,294,4380_72175,Limerick Bus Station,98541-00018-1,1,4380_7778208_3430406,4380_1107 -4380_78033,295,4380_72176,Limerick Bus Station,98545-00019-1,1,4380_7778208_3430406,4380_1107 -4380_78033,293,4380_72177,Limerick Bus Station,98542-00017-1,1,4380_7778208_3430406,4380_1107 -4380_78033,296,4380_72178,Limerick Bus Station,98086-00021-1,1,4380_7778208_3430401,4380_1108 -4380_77953,288,4380_7218,Kells,5743-00011-1,0,4380_7778208_1090108,4380_95 -4380_78033,297,4380_72180,Limerick Bus Station,32956-00008-1,1,4380_7778208_3430401,4380_1107 -4380_78033,285,4380_72186,Limerick Bus Station,33670-00009-1,1,4380_7778208_3430408,4380_1107 -4380_78033,288,4380_72188,Limerick Bus Station,33714-00011-1,1,4380_7778208_3430408,4380_1107 -4380_78033,286,4380_72189,Limerick Bus Station,33703-00010-1,1,4380_7778208_3430408,4380_1107 -4380_77953,287,4380_7219,Kells,5751-00012-1,0,4380_7778208_1090108,4380_95 -4380_78033,291,4380_72190,Limerick Bus Station,98344-00013-1,1,4380_7778208_3430404,4380_1108 -4380_78033,289,4380_72191,Limerick Bus Station,33659-00014-1,1,4380_7778208_3430408,4380_1107 -4380_78033,287,4380_72192,Limerick Bus Station,33736-00012-1,1,4380_7778208_3430408,4380_1107 -4380_78033,292,4380_72193,Limerick Bus Station,98705-00016-1,1,4380_7778208_3430408,4380_1107 -4380_78033,290,4380_72194,Limerick Bus Station,98706-00015-1,1,4380_7778208_3430408,4380_1107 -4380_78033,294,4380_72195,Limerick Bus Station,98707-00018-1,1,4380_7778208_3430408,4380_1107 -4380_78033,295,4380_72196,Limerick Bus Station,98704-00019-1,1,4380_7778208_3430408,4380_1107 -4380_78033,293,4380_72197,Limerick Bus Station,98708-00017-1,1,4380_7778208_3430408,4380_1107 -4380_78033,296,4380_72198,Limerick Bus Station,98345-00021-1,1,4380_7778208_3430404,4380_1108 -4380_77953,289,4380_7220,Kells,5719-00014-1,0,4380_7778208_1090108,4380_95 -4380_78033,285,4380_72204,Limerick Bus Station,33539-00009-1,1,4380_7778208_3430407,4380_1107 -4380_78033,288,4380_72206,Limerick Bus Station,33595-00011-1,1,4380_7778208_3430407,4380_1107 -4380_78033,286,4380_72207,Limerick Bus Station,33567-00010-1,1,4380_7778208_3430407,4380_1107 -4380_78033,291,4380_72208,Limerick Bus Station,33341-00013-1,1,4380_7778208_3430405,4380_1107 -4380_78033,289,4380_72209,Limerick Bus Station,33497-00014-1,1,4380_7778208_3430407,4380_1107 -4380_77953,290,4380_7221,Kells,55049-00015-1,0,4380_7778208_1090108,4380_95 -4380_78033,287,4380_72210,Limerick Bus Station,33623-00012-1,1,4380_7778208_3430407,4380_1107 -4380_78033,292,4380_72211,Limerick Bus Station,98633-00016-1,1,4380_7778208_3430407,4380_1107 -4380_78033,290,4380_72212,Limerick Bus Station,98635-00015-1,1,4380_7778208_3430407,4380_1107 -4380_78033,294,4380_72213,Limerick Bus Station,98634-00018-1,1,4380_7778208_3430407,4380_1107 -4380_78033,295,4380_72214,Limerick Bus Station,98631-00019-1,1,4380_7778208_3430407,4380_1107 -4380_78033,293,4380_72215,Limerick Bus Station,98632-00017-1,1,4380_7778208_3430407,4380_1107 -4380_78033,296,4380_72216,Limerick Bus Station,98485-00021-1,1,4380_7778208_3430405,4380_1107 -4380_78033,297,4380_72218,Limerick Bus Station,98149-00008-1,1,4380_7778208_3430402,4380_1107 -4380_77953,291,4380_7222,Kells,5700-00013-1,0,4380_7778208_1090107,4380_99 -4380_78033,285,4380_72224,Limerick Bus Station,33160-00009-1,1,4380_7778208_3430404,4380_1107 -4380_78033,288,4380_72226,Limerick Bus Station,33216-00011-1,1,4380_7778208_3430404,4380_1107 -4380_78033,286,4380_72227,Limerick Bus Station,33188-00010-1,1,4380_7778208_3430404,4380_1107 -4380_78033,291,4380_72228,Limerick Bus Station,33483-00013-1,1,4380_7778208_3430406,4380_1107 -4380_78033,289,4380_72229,Limerick Bus Station,33132-00014-1,1,4380_7778208_3430404,4380_1107 -4380_77953,292,4380_7223,Kells,55046-00016-1,0,4380_7778208_1090108,4380_95 -4380_78033,287,4380_72230,Limerick Bus Station,33258-00012-1,1,4380_7778208_3430404,4380_1107 -4380_78033,292,4380_72231,Limerick Bus Station,98352-00016-1,1,4380_7778208_3430404,4380_1107 -4380_78033,290,4380_72232,Limerick Bus Station,98355-00015-1,1,4380_7778208_3430404,4380_1107 -4380_78033,294,4380_72233,Limerick Bus Station,98351-00018-1,1,4380_7778208_3430404,4380_1107 -4380_78033,295,4380_72234,Limerick Bus Station,98353-00019-1,1,4380_7778208_3430404,4380_1107 -4380_78033,293,4380_72235,Limerick Bus Station,98354-00017-1,1,4380_7778208_3430404,4380_1107 -4380_78033,296,4380_72236,Limerick Bus Station,98547-00021-1,1,4380_7778208_3430406,4380_1107 -4380_78033,297,4380_72238,Limerick Bus Station,33104-00008-1,1,4380_7778208_3430403,4380_1107 -4380_77953,293,4380_7224,Kells,55048-00017-1,0,4380_7778208_1090108,4380_95 -4380_78033,285,4380_72244,Limerick Bus Station,33781-00009-1,1,4380_7778208_3430409,4380_1107 -4380_78033,288,4380_72246,Limerick Bus Station,33829-00011-1,1,4380_7778208_3430409,4380_1107 -4380_78033,286,4380_72247,Limerick Bus Station,33817-00010-1,1,4380_7778208_3430409,4380_1107 -4380_78033,291,4380_72248,Limerick Bus Station,98638-00013-1,1,4380_7778208_3430407,4380_1107 -4380_78033,289,4380_72249,Limerick Bus Station,33757-00014-1,1,4380_7778208_3430409,4380_1107 -4380_77953,294,4380_7225,Kells,55047-00018-1,0,4380_7778208_1090108,4380_95 -4380_78033,287,4380_72250,Limerick Bus Station,33865-00012-1,1,4380_7778208_3430409,4380_1107 -4380_78033,292,4380_72251,Limerick Bus Station,98757-00016-1,1,4380_7778208_3430409,4380_1107 -4380_78033,290,4380_72252,Limerick Bus Station,98755-00015-1,1,4380_7778208_3430409,4380_1107 -4380_78033,294,4380_72253,Limerick Bus Station,98754-00018-1,1,4380_7778208_3430409,4380_1107 -4380_78033,295,4380_72254,Limerick Bus Station,98758-00019-1,1,4380_7778208_3430409,4380_1107 -4380_78033,293,4380_72255,Limerick Bus Station,98756-00017-1,1,4380_7778208_3430409,4380_1107 -4380_78033,296,4380_72256,Limerick Bus Station,98639-00021-1,1,4380_7778208_3430407,4380_1107 -4380_78033,297,4380_72258,Limerick Bus Station,33274-00008-1,1,4380_7778208_3430404,4380_1107 -4380_77953,295,4380_7226,Kells,55045-00019-1,0,4380_7778208_1090108,4380_95 -4380_78033,285,4380_72264,Limerick Bus Station,33162-00009-1,1,4380_7778208_3430404,4380_1107 -4380_78033,288,4380_72266,Limerick Bus Station,33218-00011-1,1,4380_7778208_3430404,4380_1107 -4380_78033,286,4380_72267,Limerick Bus Station,33190-00010-1,1,4380_7778208_3430404,4380_1107 -4380_78033,291,4380_72268,Limerick Bus Station,33485-00013-1,1,4380_7778208_3430406,4380_1107 -4380_78033,289,4380_72269,Limerick Bus Station,33134-00014-1,1,4380_7778208_3430404,4380_1107 -4380_77953,296,4380_7227,Kells,55003-00021-1,0,4380_7778208_1090107,4380_99 -4380_78033,287,4380_72270,Limerick Bus Station,33260-00012-1,1,4380_7778208_3430404,4380_1107 -4380_78033,292,4380_72271,Limerick Bus Station,98364-00016-1,1,4380_7778208_3430404,4380_1107 -4380_78033,290,4380_72272,Limerick Bus Station,98365-00015-1,1,4380_7778208_3430404,4380_1107 -4380_78033,294,4380_72273,Limerick Bus Station,98362-00018-1,1,4380_7778208_3430404,4380_1107 -4380_78033,295,4380_72274,Limerick Bus Station,98361-00019-1,1,4380_7778208_3430404,4380_1107 -4380_78033,293,4380_72275,Limerick Bus Station,98363-00017-1,1,4380_7778208_3430404,4380_1107 -4380_78033,296,4380_72276,Limerick Bus Station,98549-00021-1,1,4380_7778208_3430406,4380_1107 -4380_78033,297,4380_72278,Limerick Bus Station,98151-00008-1,1,4380_7778208_3430402,4380_1107 -4380_78033,285,4380_72284,Limerick Bus Station,33783-00009-1,1,4380_7778208_3430409,4380_1107 -4380_78033,288,4380_72286,Limerick Bus Station,33831-00011-1,1,4380_7778208_3430409,4380_1107 -4380_78033,286,4380_72287,Limerick Bus Station,33819-00010-1,1,4380_7778208_3430409,4380_1107 -4380_78033,291,4380_72288,Limerick Bus Station,98642-00013-1,1,4380_7778208_3430407,4380_1107 -4380_78033,289,4380_72289,Limerick Bus Station,33759-00014-1,1,4380_7778208_3430409,4380_1107 -4380_78033,287,4380_72290,Limerick Bus Station,33867-00012-1,1,4380_7778208_3430409,4380_1107 -4380_78033,292,4380_72291,Limerick Bus Station,98767-00016-1,1,4380_7778208_3430409,4380_1107 -4380_78033,290,4380_72292,Limerick Bus Station,98768-00015-1,1,4380_7778208_3430409,4380_1107 -4380_78033,294,4380_72293,Limerick Bus Station,98766-00018-1,1,4380_7778208_3430409,4380_1107 -4380_78033,295,4380_72294,Limerick Bus Station,98765-00019-1,1,4380_7778208_3430409,4380_1107 -4380_78033,293,4380_72295,Limerick Bus Station,98764-00017-1,1,4380_7778208_3430409,4380_1107 -4380_78033,296,4380_72296,Limerick Bus Station,98643-00021-1,1,4380_7778208_3430407,4380_1107 -4380_78033,297,4380_72298,Limerick Bus Station,33276-00008-1,1,4380_7778208_3430404,4380_1107 -4380_78113,285,4380_723,Dundalk,50090-00009-1,0,4380_7778208_1000907,4380_10 -4380_78033,285,4380_72304,Limerick Bus Station,33385-00009-1,1,4380_7778208_3430406,4380_1107 -4380_78033,288,4380_72306,Limerick Bus Station,33429-00011-1,1,4380_7778208_3430406,4380_1107 -4380_78033,286,4380_72307,Limerick Bus Station,33407-00010-1,1,4380_7778208_3430406,4380_1107 -4380_78033,291,4380_72308,Limerick Bus Station,33343-00013-1,1,4380_7778208_3430405,4380_1107 -4380_78033,289,4380_72309,Limerick Bus Station,33373-00014-1,1,4380_7778208_3430406,4380_1107 -4380_78033,287,4380_72310,Limerick Bus Station,33451-00012-1,1,4380_7778208_3430406,4380_1107 -4380_78033,292,4380_72311,Limerick Bus Station,98559-00016-1,1,4380_7778208_3430406,4380_1107 -4380_78033,290,4380_72312,Limerick Bus Station,98556-00015-1,1,4380_7778208_3430406,4380_1107 -4380_78033,294,4380_72313,Limerick Bus Station,98555-00018-1,1,4380_7778208_3430406,4380_1107 -4380_78033,295,4380_72314,Limerick Bus Station,98557-00019-1,1,4380_7778208_3430406,4380_1107 -4380_78033,293,4380_72315,Limerick Bus Station,98558-00017-1,1,4380_7778208_3430406,4380_1107 -4380_78033,296,4380_72316,Limerick Bus Station,98487-00021-1,1,4380_7778208_3430405,4380_1107 -4380_78033,297,4380_72318,Limerick Bus Station,33106-00008-1,1,4380_7778208_3430403,4380_1107 -4380_78033,285,4380_72324,Limerick Bus Station,33541-00009-1,1,4380_7778208_3430407,4380_1107 -4380_78033,288,4380_72325,Limerick Bus Station,33597-00011-1,1,4380_7778208_3430407,4380_1107 -4380_78033,286,4380_72326,Limerick Bus Station,33569-00010-1,1,4380_7778208_3430407,4380_1107 -4380_78033,289,4380_72327,Limerick Bus Station,33499-00014-1,1,4380_7778208_3430407,4380_1107 -4380_78033,287,4380_72328,Limerick Bus Station,33625-00012-1,1,4380_7778208_3430407,4380_1107 -4380_78033,292,4380_72329,Limerick Bus Station,98650-00016-1,1,4380_7778208_3430407,4380_1107 -4380_78033,290,4380_72330,Limerick Bus Station,98651-00015-1,1,4380_7778208_3430407,4380_1107 -4380_78033,294,4380_72331,Limerick Bus Station,98649-00018-1,1,4380_7778208_3430407,4380_1107 -4380_78033,295,4380_72332,Limerick Bus Station,98652-00019-1,1,4380_7778208_3430407,4380_1107 -4380_78033,293,4380_72333,Limerick Bus Station,98653-00017-1,1,4380_7778208_3430407,4380_1107 -4380_78034,297,4380_72335,Scarrif,98782-00008-1,0,4380_7778208_3450401,4380_1109 -4380_77953,285,4380_7234,Dublin,5595-00009-1,1,4380_7778208_1090106,4380_108 -4380_78034,285,4380_72341,Scarrif,98783-00009-1,0,4380_7778208_3450401,4380_1109 -4380_78034,288,4380_72343,Scarrif,98791-00011-1,0,4380_7778208_3450401,4380_1109 -4380_78034,286,4380_72344,Scarrif,98789-00010-1,0,4380_7778208_3450401,4380_1109 -4380_78034,291,4380_72345,Scarrif,98793-00013-1,0,4380_7778208_3450401,4380_1112 -4380_78034,289,4380_72346,Scarrif,98787-00014-1,0,4380_7778208_3450401,4380_1109 -4380_78034,287,4380_72347,Scarrif,98785-00012-1,0,4380_7778208_3450401,4380_1109 -4380_78034,292,4380_72348,Scarrif,98790-00016-1,0,4380_7778208_3450401,4380_1109 -4380_78034,290,4380_72349,Scarrif,98784-00015-1,0,4380_7778208_3450401,4380_1109 -4380_77953,286,4380_7235,Dublin,5603-00010-1,1,4380_7778208_1090106,4380_108 -4380_78034,294,4380_72350,Scarrif,98786-00018-1,0,4380_7778208_3450401,4380_1109 -4380_78034,295,4380_72351,Scarrif,98788-00019-1,0,4380_7778208_3450401,4380_1109 -4380_78034,293,4380_72352,Scarrif,98792-00017-1,0,4380_7778208_3450401,4380_1109 -4380_78034,296,4380_72353,Scarrif,98794-00021-1,0,4380_7778208_3450401,4380_1112 -4380_78034,297,4380_72355,Scarrif,98808-00008-1,0,4380_7778208_3450401,4380_1109 -4380_77953,288,4380_7236,Dublin,5611-00011-1,1,4380_7778208_1090106,4380_108 -4380_78034,285,4380_72361,Scarrif,98809-00009-1,0,4380_7778208_3450401,4380_1109 -4380_78034,288,4380_72363,Scarrif,98811-00011-1,0,4380_7778208_3450401,4380_1109 -4380_78034,286,4380_72364,Scarrif,98815-00010-1,0,4380_7778208_3450401,4380_1109 -4380_78034,291,4380_72365,Scarrif,98819-00013-1,0,4380_7778208_3450401,4380_1112 -4380_78034,289,4380_72366,Scarrif,98817-00014-1,0,4380_7778208_3450401,4380_1109 -4380_78034,287,4380_72367,Scarrif,98813-00012-1,0,4380_7778208_3450401,4380_1109 -4380_78034,292,4380_72368,Scarrif,98816-00016-1,0,4380_7778208_3450401,4380_1109 -4380_78034,290,4380_72369,Scarrif,98810-00015-1,0,4380_7778208_3450401,4380_1109 -4380_77953,287,4380_7237,Dublin,5619-00012-1,1,4380_7778208_1090106,4380_108 -4380_78034,294,4380_72370,Scarrif,98814-00018-1,0,4380_7778208_3450401,4380_1109 -4380_78034,295,4380_72371,Scarrif,98818-00019-1,0,4380_7778208_3450401,4380_1109 -4380_78034,293,4380_72372,Scarrif,98812-00017-1,0,4380_7778208_3450401,4380_1109 -4380_78034,296,4380_72373,Scarrif,98820-00021-1,0,4380_7778208_3450401,4380_1112 -4380_77953,289,4380_7238,Dublin,5587-00014-1,1,4380_7778208_1090106,4380_108 -4380_78034,297,4380_72380,Scarrif,98840-00008-1,0,4380_7778208_3450401,4380_1110 -4380_78034,285,4380_72381,Scarrif,98838-00009-1,0,4380_7778208_3450401,4380_1111 -4380_78034,288,4380_72383,Scarrif,98841-00011-1,0,4380_7778208_3450401,4380_1111 -4380_78034,286,4380_72384,Scarrif,98845-00010-1,0,4380_7778208_3450401,4380_1111 -4380_78034,291,4380_72385,Scarrif,98843-00013-1,0,4380_7778208_3450401,4380_1113 -4380_78034,289,4380_72386,Scarrif,98836-00014-1,0,4380_7778208_3450401,4380_1111 -4380_78034,287,4380_72387,Scarrif,98834-00012-1,0,4380_7778208_3450401,4380_1111 -4380_78034,292,4380_72388,Scarrif,98846-00016-1,0,4380_7778208_3450401,4380_1111 -4380_78034,290,4380_72389,Scarrif,98839-00015-1,0,4380_7778208_3450401,4380_1111 -4380_77953,290,4380_7239,Dublin,54913-00015-1,1,4380_7778208_1090106,4380_108 -4380_78034,294,4380_72390,Scarrif,98835-00018-1,0,4380_7778208_3450401,4380_1111 -4380_78034,295,4380_72391,Scarrif,98837-00019-1,0,4380_7778208_3450401,4380_1111 -4380_78034,293,4380_72392,Scarrif,98842-00017-1,0,4380_7778208_3450401,4380_1111 -4380_78034,296,4380_72393,Scarrif,98844-00021-1,0,4380_7778208_3450401,4380_1113 -4380_78034,285,4380_72399,Scarrif,98863-00009-1,0,4380_7778208_3450401,4380_1109 -4380_78113,286,4380_724,Dundalk,50084-00010-1,0,4380_7778208_1000907,4380_10 -4380_77953,291,4380_7240,Dublin,5281-00013-1,1,4380_7778208_1090101,4380_110 -4380_78034,288,4380_72401,Scarrif,98865-00011-1,0,4380_7778208_3450401,4380_1109 -4380_78034,286,4380_72402,Scarrif,98867-00010-1,0,4380_7778208_3450401,4380_1109 -4380_78034,291,4380_72403,Scarrif,98861-00013-1,0,4380_7778208_3450401,4380_1112 -4380_78034,289,4380_72404,Scarrif,98859-00014-1,0,4380_7778208_3450401,4380_1109 -4380_78034,287,4380_72405,Scarrif,98869-00012-1,0,4380_7778208_3450401,4380_1109 -4380_78034,292,4380_72406,Scarrif,98868-00016-1,0,4380_7778208_3450401,4380_1109 -4380_78034,290,4380_72407,Scarrif,98864-00015-1,0,4380_7778208_3450401,4380_1109 -4380_78034,294,4380_72408,Scarrif,98870-00018-1,0,4380_7778208_3450401,4380_1109 -4380_78034,295,4380_72409,Scarrif,98860-00019-1,0,4380_7778208_3450401,4380_1109 -4380_77953,292,4380_7241,Dublin,54912-00016-1,1,4380_7778208_1090106,4380_108 -4380_78034,293,4380_72410,Scarrif,98866-00017-1,0,4380_7778208_3450401,4380_1109 -4380_78034,296,4380_72411,Scarrif,98862-00021-1,0,4380_7778208_3450401,4380_1112 -4380_78034,297,4380_72413,Scarrif,98896-00008-1,0,4380_7778208_3450402,4380_1109 -4380_78034,285,4380_72419,Scarrif,98889-00009-1,0,4380_7778208_3450401,4380_1109 -4380_77953,293,4380_7242,Dublin,54914-00017-1,1,4380_7778208_1090106,4380_108 -4380_78034,288,4380_72421,Scarrif,98887-00011-1,0,4380_7778208_3450401,4380_1109 -4380_78034,286,4380_72422,Scarrif,98883-00010-1,0,4380_7778208_3450401,4380_1109 -4380_78034,291,4380_72423,Scarrif,98893-00013-1,0,4380_7778208_3450401,4380_1112 -4380_78034,289,4380_72424,Scarrif,98885-00014-1,0,4380_7778208_3450401,4380_1109 -4380_78034,287,4380_72425,Scarrif,98891-00012-1,0,4380_7778208_3450401,4380_1109 -4380_78034,292,4380_72426,Scarrif,98884-00016-1,0,4380_7778208_3450401,4380_1109 -4380_78034,290,4380_72427,Scarrif,98890-00015-1,0,4380_7778208_3450401,4380_1109 -4380_78034,294,4380_72428,Scarrif,98892-00018-1,0,4380_7778208_3450401,4380_1109 -4380_78034,295,4380_72429,Scarrif,98886-00019-1,0,4380_7778208_3450401,4380_1109 -4380_77953,294,4380_7243,Dublin,54915-00018-1,1,4380_7778208_1090106,4380_108 -4380_78034,293,4380_72430,Scarrif,98888-00017-1,0,4380_7778208_3450401,4380_1109 -4380_78034,296,4380_72431,Scarrif,98894-00021-1,0,4380_7778208_3450401,4380_1112 -4380_78034,297,4380_72438,Limerick Bus Station,98769-00008-1,1,4380_7778208_3450401,4380_1114 -4380_78034,285,4380_72439,Limerick Bus Station,98772-00009-1,1,4380_7778208_3450401,4380_1116 -4380_77953,295,4380_7244,Dublin,54916-00019-1,1,4380_7778208_1090106,4380_108 -4380_78034,288,4380_72440,Limerick Bus Station,98778-00011-1,1,4380_7778208_3450401,4380_1116 -4380_78034,286,4380_72441,Limerick Bus Station,98774-00010-1,1,4380_7778208_3450401,4380_1116 -4380_78034,289,4380_72442,Limerick Bus Station,98770-00014-1,1,4380_7778208_3450401,4380_1116 -4380_78034,287,4380_72443,Limerick Bus Station,98776-00012-1,1,4380_7778208_3450401,4380_1116 -4380_78034,292,4380_72444,Limerick Bus Station,98775-00016-1,1,4380_7778208_3450401,4380_1116 -4380_78034,290,4380_72445,Limerick Bus Station,98773-00015-1,1,4380_7778208_3450401,4380_1116 -4380_78034,294,4380_72446,Limerick Bus Station,98777-00018-1,1,4380_7778208_3450401,4380_1116 -4380_78034,295,4380_72447,Limerick Bus Station,98771-00019-1,1,4380_7778208_3450401,4380_1116 -4380_78034,293,4380_72448,Limerick Bus Station,98779-00017-1,1,4380_7778208_3450401,4380_1116 -4380_77953,296,4380_7245,Dublin,54646-00021-1,1,4380_7778208_1090101,4380_110 -4380_78034,291,4380_72450,Limerick Bus Station,98780-00013-1,1,4380_7778208_3450401,4380_1114 -4380_78034,296,4380_72451,Limerick Bus Station,98781-00021-1,1,4380_7778208_3450401,4380_1114 -4380_78034,297,4380_72453,Limerick Bus Station,98795-00008-1,1,4380_7778208_3450401,4380_1115 -4380_78034,285,4380_72459,Limerick Bus Station,98804-00009-1,1,4380_7778208_3450401,4380_1115 -4380_78034,288,4380_72461,Limerick Bus Station,98806-00011-1,1,4380_7778208_3450401,4380_1115 -4380_78034,286,4380_72462,Limerick Bus Station,98802-00010-1,1,4380_7778208_3450401,4380_1115 -4380_78034,291,4380_72463,Limerick Bus Station,98800-00013-1,1,4380_7778208_3450401,4380_1117 -4380_78034,289,4380_72464,Limerick Bus Station,98796-00014-1,1,4380_7778208_3450401,4380_1115 -4380_78034,287,4380_72465,Limerick Bus Station,98798-00012-1,1,4380_7778208_3450401,4380_1115 -4380_78034,292,4380_72466,Limerick Bus Station,98803-00016-1,1,4380_7778208_3450401,4380_1115 -4380_78034,290,4380_72467,Limerick Bus Station,98805-00015-1,1,4380_7778208_3450401,4380_1115 -4380_78034,294,4380_72468,Limerick Bus Station,98799-00018-1,1,4380_7778208_3450401,4380_1115 -4380_78034,295,4380_72469,Limerick Bus Station,98797-00019-1,1,4380_7778208_3450401,4380_1115 -4380_78034,293,4380_72470,Limerick Bus Station,98807-00017-1,1,4380_7778208_3450401,4380_1115 -4380_78034,296,4380_72471,Limerick Bus Station,98801-00021-1,1,4380_7778208_3450401,4380_1117 -4380_78034,285,4380_72477,Limerick Bus Station,98821-00009-1,1,4380_7778208_3450401,4380_1114 -4380_78034,288,4380_72479,Limerick Bus Station,98831-00011-1,1,4380_7778208_3450401,4380_1114 -4380_78034,286,4380_72480,Limerick Bus Station,98823-00010-1,1,4380_7778208_3450401,4380_1114 -4380_78034,291,4380_72481,Limerick Bus Station,98825-00013-1,1,4380_7778208_3450401,4380_1116 -4380_78034,289,4380_72482,Limerick Bus Station,98827-00014-1,1,4380_7778208_3450401,4380_1114 -4380_78034,287,4380_72483,Limerick Bus Station,98829-00012-1,1,4380_7778208_3450401,4380_1114 -4380_78034,292,4380_72484,Limerick Bus Station,98824-00016-1,1,4380_7778208_3450401,4380_1114 -4380_78034,290,4380_72485,Limerick Bus Station,98822-00015-1,1,4380_7778208_3450401,4380_1114 -4380_78034,294,4380_72486,Limerick Bus Station,98830-00018-1,1,4380_7778208_3450401,4380_1114 -4380_78034,295,4380_72487,Limerick Bus Station,98828-00019-1,1,4380_7778208_3450401,4380_1114 -4380_78034,293,4380_72488,Limerick Bus Station,98832-00017-1,1,4380_7778208_3450401,4380_1114 -4380_78034,296,4380_72489,Limerick Bus Station,98826-00021-1,1,4380_7778208_3450401,4380_1116 -4380_78034,297,4380_72491,Limerick Bus Station,98833-00008-1,1,4380_7778208_3450401,4380_1114 -4380_78034,285,4380_72497,Limerick Bus Station,98851-00009-1,1,4380_7778208_3450401,4380_1114 -4380_78034,288,4380_72499,Limerick Bus Station,98849-00011-1,1,4380_7778208_3450401,4380_1114 -4380_78113,297,4380_725,Dundalk,49990-00008-1,0,4380_7778208_1000906,4380_13 -4380_78034,286,4380_72500,Limerick Bus Station,98847-00010-1,1,4380_7778208_3450401,4380_1114 -4380_78034,291,4380_72501,Limerick Bus Station,98853-00013-1,1,4380_7778208_3450401,4380_1116 -4380_78034,289,4380_72502,Limerick Bus Station,98857-00014-1,1,4380_7778208_3450401,4380_1114 -4380_78034,287,4380_72503,Limerick Bus Station,98855-00012-1,1,4380_7778208_3450401,4380_1114 -4380_78034,292,4380_72504,Limerick Bus Station,98848-00016-1,1,4380_7778208_3450401,4380_1114 -4380_78034,290,4380_72505,Limerick Bus Station,98852-00015-1,1,4380_7778208_3450401,4380_1114 -4380_78034,294,4380_72506,Limerick Bus Station,98856-00018-1,1,4380_7778208_3450401,4380_1114 -4380_78034,295,4380_72507,Limerick Bus Station,98858-00019-1,1,4380_7778208_3450401,4380_1114 -4380_78034,293,4380_72508,Limerick Bus Station,98850-00017-1,1,4380_7778208_3450401,4380_1114 -4380_78034,296,4380_72509,Limerick Bus Station,98854-00021-1,1,4380_7778208_3450401,4380_1116 -4380_77953,285,4380_7251,Dublin,5658-00009-1,1,4380_7778208_1090107,4380_105 -4380_78034,297,4380_72511,Limerick Bus Station,98895-00008-1,1,4380_7778208_3450402,4380_1114 -4380_78034,285,4380_72517,Limerick Bus Station,98875-00009-1,1,4380_7778208_3450401,4380_1114 -4380_78034,288,4380_72519,Limerick Bus Station,98881-00011-1,1,4380_7778208_3450401,4380_1114 -4380_77953,286,4380_7252,Dublin,5666-00010-1,1,4380_7778208_1090107,4380_105 -4380_78034,286,4380_72520,Limerick Bus Station,98873-00010-1,1,4380_7778208_3450401,4380_1114 -4380_78034,291,4380_72521,Limerick Bus Station,98877-00013-1,1,4380_7778208_3450401,4380_1116 -4380_78034,289,4380_72522,Limerick Bus Station,98871-00014-1,1,4380_7778208_3450401,4380_1114 -4380_78034,287,4380_72523,Limerick Bus Station,98879-00012-1,1,4380_7778208_3450401,4380_1114 -4380_78034,292,4380_72524,Limerick Bus Station,98874-00016-1,1,4380_7778208_3450401,4380_1114 -4380_78034,290,4380_72525,Limerick Bus Station,98876-00015-1,1,4380_7778208_3450401,4380_1114 -4380_78034,294,4380_72526,Limerick Bus Station,98880-00018-1,1,4380_7778208_3450401,4380_1114 -4380_78034,295,4380_72527,Limerick Bus Station,98872-00019-1,1,4380_7778208_3450401,4380_1114 -4380_78034,293,4380_72528,Limerick Bus Station,98882-00017-1,1,4380_7778208_3450401,4380_1114 -4380_78034,296,4380_72529,Limerick Bus Station,98878-00021-1,1,4380_7778208_3450401,4380_1116 -4380_77953,288,4380_7253,Dublin,5674-00011-1,1,4380_7778208_1090107,4380_105 -4380_78035,285,4380_72535,Tipperary,49421-00009-1,0,4380_7778208_720401,4380_1120 -4380_78035,286,4380_72536,Tipperary,49417-00010-1,0,4380_7778208_720401,4380_1120 -4380_78035,287,4380_72537,Tipperary,49419-00012-1,0,4380_7778208_720401,4380_1120 -4380_78035,288,4380_72538,Tipperary,49413-00011-1,0,4380_7778208_720401,4380_1120 -4380_78035,289,4380_72539,Tipperary,49415-00014-1,0,4380_7778208_720401,4380_1120 -4380_77953,287,4380_7254,Dublin,5682-00012-1,1,4380_7778208_1090107,4380_105 -4380_78035,290,4380_72540,Tipperary,49422-00015-1,0,4380_7778208_720401,4380_1120 -4380_78035,292,4380_72541,Tipperary,49418-00016-1,0,4380_7778208_720401,4380_1120 -4380_78035,293,4380_72542,Tipperary,49414-00017-1,0,4380_7778208_720401,4380_1120 -4380_78035,294,4380_72543,Tipperary,49420-00018-1,0,4380_7778208_720401,4380_1120 -4380_78035,295,4380_72544,Tipperary,49416-00019-1,0,4380_7778208_720401,4380_1120 -4380_77953,289,4380_7255,Dublin,5650-00014-1,1,4380_7778208_1090107,4380_105 -4380_78035,285,4380_72550,Caherconlish,98907-00009-1,0,4380_7778208_3470401,4380_1118 -4380_78035,288,4380_72551,Caherconlish,98909-00011-1,0,4380_7778208_3470401,4380_1118 -4380_78035,286,4380_72552,Caherconlish,98913-00010-1,0,4380_7778208_3470401,4380_1118 -4380_78035,289,4380_72553,Caherconlish,98911-00014-1,0,4380_7778208_3470401,4380_1118 -4380_78035,287,4380_72554,Caherconlish,98915-00012-1,0,4380_7778208_3470401,4380_1118 -4380_78035,292,4380_72555,Caherconlish,98914-00016-1,0,4380_7778208_3470401,4380_1118 -4380_78035,290,4380_72556,Caherconlish,98908-00015-1,0,4380_7778208_3470401,4380_1118 -4380_78035,294,4380_72557,Caherconlish,98916-00018-1,0,4380_7778208_3470401,4380_1118 -4380_78035,295,4380_72558,Caherconlish,98912-00019-1,0,4380_7778208_3470401,4380_1118 -4380_78035,293,4380_72559,Caherconlish,98910-00017-1,0,4380_7778208_3470401,4380_1118 -4380_77953,290,4380_7256,Dublin,54958-00015-1,1,4380_7778208_1090107,4380_105 -4380_78035,285,4380_72565,Tipperary,98931-00009-1,0,4380_7778208_3470401,4380_1119 -4380_78035,288,4380_72566,Tipperary,98933-00011-1,0,4380_7778208_3470401,4380_1119 -4380_78035,286,4380_72567,Tipperary,98927-00010-1,0,4380_7778208_3470401,4380_1119 -4380_78035,289,4380_72568,Tipperary,98929-00014-1,0,4380_7778208_3470401,4380_1119 -4380_78035,287,4380_72569,Tipperary,98935-00012-1,0,4380_7778208_3470401,4380_1119 -4380_77953,292,4380_7257,Dublin,54960-00016-1,1,4380_7778208_1090107,4380_105 -4380_78035,292,4380_72570,Tipperary,98928-00016-1,0,4380_7778208_3470401,4380_1119 -4380_78035,290,4380_72571,Tipperary,98932-00015-1,0,4380_7778208_3470401,4380_1119 -4380_78035,294,4380_72572,Tipperary,98936-00018-1,0,4380_7778208_3470401,4380_1119 -4380_78035,295,4380_72573,Tipperary,98930-00019-1,0,4380_7778208_3470401,4380_1119 -4380_78035,293,4380_72574,Tipperary,98934-00017-1,0,4380_7778208_3470401,4380_1119 -4380_77953,293,4380_7258,Dublin,54957-00017-1,1,4380_7778208_1090107,4380_105 -4380_78035,285,4380_72580,Limerick Bus Station,98901-00009-1,1,4380_7778208_3470401,4380_1121 -4380_78035,288,4380_72581,Limerick Bus Station,98905-00011-1,1,4380_7778208_3470401,4380_1121 -4380_78035,286,4380_72582,Limerick Bus Station,98897-00010-1,1,4380_7778208_3470401,4380_1121 -4380_78035,289,4380_72583,Limerick Bus Station,98899-00014-1,1,4380_7778208_3470401,4380_1121 -4380_78035,287,4380_72584,Limerick Bus Station,98903-00012-1,1,4380_7778208_3470401,4380_1121 -4380_78035,292,4380_72585,Limerick Bus Station,98898-00016-1,1,4380_7778208_3470401,4380_1121 -4380_78035,290,4380_72586,Limerick Bus Station,98902-00015-1,1,4380_7778208_3470401,4380_1121 -4380_78035,294,4380_72587,Limerick Bus Station,98904-00018-1,1,4380_7778208_3470401,4380_1121 -4380_78035,295,4380_72588,Limerick Bus Station,98900-00019-1,1,4380_7778208_3470401,4380_1121 -4380_78035,293,4380_72589,Limerick Bus Station,98906-00017-1,1,4380_7778208_3470401,4380_1121 -4380_77953,294,4380_7259,Dublin,54959-00018-1,1,4380_7778208_1090107,4380_105 -4380_78035,285,4380_72595,Limerick Bus Station,98921-00009-1,1,4380_7778208_3470401,4380_1122 -4380_78035,288,4380_72596,Limerick Bus Station,98917-00011-1,1,4380_7778208_3470401,4380_1122 -4380_78035,286,4380_72597,Limerick Bus Station,98925-00010-1,1,4380_7778208_3470401,4380_1122 -4380_78035,289,4380_72598,Limerick Bus Station,98919-00014-1,1,4380_7778208_3470401,4380_1122 -4380_78035,287,4380_72599,Limerick Bus Station,98923-00012-1,1,4380_7778208_3470401,4380_1122 -4380_78113,287,4380_726,Dundalk,50086-00012-1,0,4380_7778208_1000907,4380_10 -4380_77953,295,4380_7260,Dublin,54961-00019-1,1,4380_7778208_1090107,4380_105 -4380_78035,292,4380_72600,Limerick Bus Station,98926-00016-1,1,4380_7778208_3470401,4380_1122 -4380_78035,290,4380_72601,Limerick Bus Station,98922-00015-1,1,4380_7778208_3470401,4380_1122 -4380_78035,294,4380_72602,Limerick Bus Station,98924-00018-1,1,4380_7778208_3470401,4380_1122 -4380_78035,295,4380_72603,Limerick Bus Station,98920-00019-1,1,4380_7778208_3470401,4380_1122 -4380_78035,293,4380_72604,Limerick Bus Station,98918-00017-1,1,4380_7778208_3470401,4380_1122 -4380_78036,288,4380_72606,Scarrif,114966-00011-1,0,4380_7778208_34888801,4380_1123 -4380_78036,293,4380_72607,Scarrif,114967-00017-1,0,4380_7778208_34888801,4380_1123 -4380_78036,288,4380_72609,Ennis,114964-00011-1,1,4380_7778208_34888801,4380_1124 -4380_78036,293,4380_72610,Ennis,114965-00017-1,1,4380_7778208_34888801,4380_1124 -4380_78037,287,4380_72612,Scarrif,114970-00012-1,0,4380_7778208_34988801,4380_1125 -4380_78037,294,4380_72613,Scarrif,114971-00018-1,0,4380_7778208_34988801,4380_1125 -4380_78037,287,4380_72615,Gort,114968-00012-1,1,4380_7778208_34988801,4380_1126 -4380_78037,294,4380_72616,Gort,114969-00018-1,1,4380_7778208_34988801,4380_1126 -4380_77953,291,4380_7262,Dublin,5569-00013-1,1,4380_7778208_1090105,4380_105 -4380_78038,297,4380_72623,Ennis,99047-00008-1,0,4380_7778208_3500401,4380_1129 -4380_78038,285,4380_72624,Ennis,99045-00009-1,0,4380_7778208_3500401,4380_1133 -4380_78038,288,4380_72626,Ennis,99054-00011-1,0,4380_7778208_3500401,4380_1133 -4380_78038,286,4380_72627,Ennis,99050-00010-1,0,4380_7778208_3500401,4380_1133 -4380_78038,291,4380_72628,Ennis,99048-00013-1,0,4380_7778208_3500401,4380_1136 -4380_78038,289,4380_72629,Ennis,99056-00014-1,0,4380_7778208_3500401,4380_1133 -4380_77953,296,4380_7263,Dublin,54864-00021-1,1,4380_7778208_1090105,4380_105 -4380_78038,287,4380_72630,Ennis,99052-00012-1,0,4380_7778208_3500401,4380_1133 -4380_78038,292,4380_72631,Ennis,99051-00016-1,0,4380_7778208_3500401,4380_1133 -4380_78038,290,4380_72632,Ennis,99046-00015-1,0,4380_7778208_3500401,4380_1133 -4380_78038,294,4380_72633,Ennis,99053-00018-1,0,4380_7778208_3500401,4380_1133 -4380_78038,295,4380_72634,Ennis,99057-00019-1,0,4380_7778208_3500401,4380_1133 -4380_78038,293,4380_72635,Ennis,99055-00017-1,0,4380_7778208_3500401,4380_1133 -4380_78038,296,4380_72636,Ennis,99049-00021-1,0,4380_7778208_3500401,4380_1136 -4380_78038,297,4380_72643,Ennis,98983-00008-1,0,4380_7778208_3500303,4380_1127 -4380_78038,285,4380_72644,Ennis,99001-00009-1,0,4380_7778208_3500304,4380_1132 -4380_78038,288,4380_72646,Ennis,98999-00011-1,0,4380_7778208_3500304,4380_1132 -4380_78038,286,4380_72647,Ennis,98997-00010-1,0,4380_7778208_3500304,4380_1132 -4380_78038,291,4380_72648,Ennis,99003-00013-1,0,4380_7778208_3500304,4380_1134 -4380_78038,289,4380_72649,Ennis,98995-00014-1,0,4380_7778208_3500304,4380_1132 -4380_78038,287,4380_72650,Ennis,99005-00012-1,0,4380_7778208_3500304,4380_1132 -4380_78038,292,4380_72651,Ennis,98998-00016-1,0,4380_7778208_3500304,4380_1132 -4380_78038,290,4380_72652,Ennis,99002-00015-1,0,4380_7778208_3500304,4380_1132 -4380_78038,294,4380_72653,Ennis,99006-00018-1,0,4380_7778208_3500304,4380_1132 -4380_78038,295,4380_72654,Ennis,98996-00019-1,0,4380_7778208_3500304,4380_1132 -4380_78038,293,4380_72655,Ennis,99000-00017-1,0,4380_7778208_3500304,4380_1132 -4380_78038,296,4380_72656,Ennis,99004-00021-1,0,4380_7778208_3500304,4380_1134 -4380_78038,297,4380_72663,Ennis,98937-00008-1,0,4380_7778208_3500301,4380_1127 -4380_78038,285,4380_72664,Ennis,108738-00009-1,0,4380_7778208_4170301,4380_1132 -4380_78038,288,4380_72666,Ennis,108744-00011-1,0,4380_7778208_4170301,4380_1132 -4380_78038,286,4380_72667,Ennis,108742-00010-1,0,4380_7778208_4170301,4380_1132 -4380_78038,291,4380_72668,Ennis,98938-00013-1,0,4380_7778208_3500301,4380_1134 -4380_78038,289,4380_72669,Ennis,108740-00014-1,0,4380_7778208_4170301,4380_1132 -4380_78038,287,4380_72670,Ennis,108736-00012-1,0,4380_7778208_4170301,4380_1132 -4380_78038,292,4380_72671,Ennis,108743-00016-1,0,4380_7778208_4170301,4380_1132 -4380_78038,290,4380_72672,Ennis,108739-00015-1,0,4380_7778208_4170301,4380_1132 -4380_78038,294,4380_72673,Ennis,108737-00018-1,0,4380_7778208_4170301,4380_1132 -4380_78038,295,4380_72674,Ennis,108741-00019-1,0,4380_7778208_4170301,4380_1132 -4380_78038,293,4380_72675,Ennis,108745-00017-1,0,4380_7778208_4170301,4380_1132 -4380_78038,296,4380_72676,Ennis,98939-00021-1,0,4380_7778208_3500301,4380_1134 -4380_78038,297,4380_72683,Ennis,99019-00008-1,0,4380_7778208_3500304,4380_1127 -4380_78038,285,4380_72684,Ennis,99023-00009-1,0,4380_7778208_3500305,4380_1132 -4380_78038,288,4380_72686,Ennis,99027-00011-1,0,4380_7778208_3500305,4380_1132 -4380_78038,286,4380_72687,Ennis,99025-00010-1,0,4380_7778208_3500305,4380_1132 -4380_78038,291,4380_72688,Ennis,99029-00013-1,0,4380_7778208_3500305,4380_1134 -4380_78038,289,4380_72689,Ennis,99031-00014-1,0,4380_7778208_3500305,4380_1132 -4380_77953,285,4380_7269,Dublin,5720-00009-1,1,4380_7778208_1090108,4380_105 -4380_78038,287,4380_72690,Ennis,99021-00012-1,0,4380_7778208_3500305,4380_1132 -4380_78038,292,4380_72691,Ennis,99026-00016-1,0,4380_7778208_3500305,4380_1132 -4380_78038,290,4380_72692,Ennis,99024-00015-1,0,4380_7778208_3500305,4380_1132 -4380_78038,294,4380_72693,Ennis,99022-00018-1,0,4380_7778208_3500305,4380_1132 -4380_78038,295,4380_72694,Ennis,99032-00019-1,0,4380_7778208_3500305,4380_1132 -4380_78038,293,4380_72695,Ennis,99028-00017-1,0,4380_7778208_3500305,4380_1132 -4380_78038,296,4380_72696,Ennis,99030-00021-1,0,4380_7778208_3500305,4380_1134 -4380_78113,288,4380_727,Dundalk,50088-00011-1,0,4380_7778208_1000907,4380_10 -4380_77953,286,4380_7270,Dublin,5728-00010-1,1,4380_7778208_1090108,4380_105 -4380_78038,297,4380_72703,Ennis,99124-00008-1,0,4380_7778208_3500402,4380_1127 -4380_78038,285,4380_72704,Ennis,99122-00009-1,0,4380_7778208_3500402,4380_1132 -4380_78038,288,4380_72706,Ennis,99118-00011-1,0,4380_7778208_3500402,4380_1132 -4380_78038,286,4380_72707,Ennis,99120-00010-1,0,4380_7778208_3500402,4380_1132 -4380_78038,291,4380_72708,Ennis,99125-00013-1,0,4380_7778208_3500402,4380_1134 -4380_78038,289,4380_72709,Ennis,99116-00014-1,0,4380_7778208_3500402,4380_1132 -4380_77953,288,4380_7271,Dublin,5736-00011-1,1,4380_7778208_1090108,4380_105 -4380_78038,287,4380_72710,Ennis,99114-00012-1,0,4380_7778208_3500402,4380_1132 -4380_78038,292,4380_72711,Ennis,99121-00016-1,0,4380_7778208_3500402,4380_1132 -4380_78038,290,4380_72712,Ennis,99123-00015-1,0,4380_7778208_3500402,4380_1132 -4380_78038,294,4380_72713,Ennis,99115-00018-1,0,4380_7778208_3500402,4380_1132 -4380_78038,295,4380_72714,Ennis,99117-00019-1,0,4380_7778208_3500402,4380_1132 -4380_78038,293,4380_72715,Ennis,99119-00017-1,0,4380_7778208_3500402,4380_1132 -4380_78038,296,4380_72716,Ennis,99126-00021-1,0,4380_7778208_3500402,4380_1134 -4380_77953,287,4380_7272,Dublin,5744-00012-1,1,4380_7778208_1090108,4380_105 -4380_78038,285,4380_72722,Nogra via Kinvarra,98985-00009-1,0,4380_7778208_3500303,4380_1131 -4380_78038,288,4380_72723,Nogra via Kinvarra,98989-00011-1,0,4380_7778208_3500303,4380_1131 -4380_78038,286,4380_72724,Nogra via Kinvarra,98991-00010-1,0,4380_7778208_3500303,4380_1131 -4380_78038,289,4380_72725,Nogra via Kinvarra,98987-00014-1,0,4380_7778208_3500303,4380_1131 -4380_78038,287,4380_72726,Nogra via Kinvarra,98993-00012-1,0,4380_7778208_3500303,4380_1131 -4380_78038,292,4380_72727,Nogra via Kinvarra,98992-00016-1,0,4380_7778208_3500303,4380_1131 -4380_78038,290,4380_72728,Nogra via Kinvarra,98986-00015-1,0,4380_7778208_3500303,4380_1131 -4380_78038,294,4380_72729,Nogra via Kinvarra,98994-00018-1,0,4380_7778208_3500303,4380_1131 -4380_77953,289,4380_7273,Dublin,5712-00014-1,1,4380_7778208_1090108,4380_105 -4380_78038,295,4380_72730,Nogra via Kinvarra,98988-00019-1,0,4380_7778208_3500303,4380_1131 -4380_78038,293,4380_72731,Nogra via Kinvarra,98990-00017-1,0,4380_7778208_3500303,4380_1131 -4380_78038,297,4380_72738,Doolin,98972-00008-1,0,4380_7778208_3500302,4380_1128 -4380_78038,285,4380_72739,Doolin,98966-00009-1,0,4380_7778208_3500302,4380_1130 -4380_77953,290,4380_7274,Dublin,55007-00015-1,1,4380_7778208_1090108,4380_105 -4380_78038,288,4380_72741,Doolin,98968-00011-1,0,4380_7778208_3500302,4380_1130 -4380_78038,286,4380_72742,Doolin,98970-00010-1,0,4380_7778208_3500302,4380_1130 -4380_78038,291,4380_72743,Doolin,98960-00013-1,0,4380_7778208_3500302,4380_1135 -4380_78038,289,4380_72744,Doolin,98962-00014-1,0,4380_7778208_3500302,4380_1130 -4380_78038,287,4380_72745,Doolin,98964-00012-1,0,4380_7778208_3500302,4380_1130 -4380_78038,292,4380_72746,Doolin,98971-00016-1,0,4380_7778208_3500302,4380_1130 -4380_78038,290,4380_72747,Doolin,98967-00015-1,0,4380_7778208_3500302,4380_1130 -4380_78038,294,4380_72748,Doolin,98965-00018-1,0,4380_7778208_3500302,4380_1130 -4380_78038,295,4380_72749,Doolin,98963-00019-1,0,4380_7778208_3500302,4380_1130 -4380_77953,292,4380_7275,Dublin,55004-00016-1,1,4380_7778208_1090108,4380_105 -4380_78038,293,4380_72750,Doolin,98969-00017-1,0,4380_7778208_3500302,4380_1130 -4380_78038,296,4380_72751,Doolin,98961-00021-1,0,4380_7778208_3500302,4380_1135 -4380_78038,285,4380_72757,Galway,98973-00009-1,1,4380_7778208_3500303,4380_1141 -4380_78038,288,4380_72758,Galway,98977-00011-1,1,4380_7778208_3500303,4380_1141 -4380_78038,286,4380_72759,Galway,98979-00010-1,1,4380_7778208_3500303,4380_1141 -4380_77953,293,4380_7276,Dublin,55008-00017-1,1,4380_7778208_1090108,4380_105 -4380_78038,289,4380_72760,Galway,98975-00014-1,1,4380_7778208_3500303,4380_1141 -4380_78038,287,4380_72761,Galway,98981-00012-1,1,4380_7778208_3500303,4380_1141 -4380_78038,292,4380_72762,Galway,98980-00016-1,1,4380_7778208_3500303,4380_1141 -4380_78038,290,4380_72763,Galway,98974-00015-1,1,4380_7778208_3500303,4380_1141 -4380_78038,294,4380_72764,Galway,98982-00018-1,1,4380_7778208_3500303,4380_1141 -4380_78038,295,4380_72765,Galway,98976-00019-1,1,4380_7778208_3500303,4380_1141 -4380_78038,293,4380_72766,Galway,98978-00017-1,1,4380_7778208_3500303,4380_1141 -4380_77953,294,4380_7277,Dublin,55005-00018-1,1,4380_7778208_1090108,4380_105 -4380_78038,297,4380_72773,Galway,98953-00008-1,1,4380_7778208_3500302,4380_1138 -4380_78038,285,4380_72774,Galway,98943-00009-1,1,4380_7778208_3500302,4380_1140 -4380_78038,288,4380_72776,Galway,98947-00011-1,1,4380_7778208_3500302,4380_1140 -4380_78038,286,4380_72777,Galway,98945-00010-1,1,4380_7778208_3500302,4380_1140 -4380_78038,291,4380_72778,Galway,98951-00013-1,1,4380_7778208_3500302,4380_1138 -4380_78038,289,4380_72779,Galway,98954-00014-1,1,4380_7778208_3500302,4380_1140 -4380_77953,295,4380_7278,Dublin,55006-00019-1,1,4380_7778208_1090108,4380_105 -4380_78038,287,4380_72780,Galway,98949-00012-1,1,4380_7778208_3500302,4380_1140 -4380_78038,292,4380_72781,Galway,98946-00016-1,1,4380_7778208_3500302,4380_1140 -4380_78038,290,4380_72782,Galway,98944-00015-1,1,4380_7778208_3500302,4380_1140 -4380_78038,294,4380_72783,Galway,98950-00018-1,1,4380_7778208_3500302,4380_1140 -4380_78038,295,4380_72784,Galway,98955-00019-1,1,4380_7778208_3500302,4380_1140 -4380_78038,293,4380_72785,Galway,98948-00017-1,1,4380_7778208_3500302,4380_1140 -4380_78038,296,4380_72786,Galway,98952-00021-1,1,4380_7778208_3500302,4380_1138 -4380_78038,297,4380_72793,Galway,99101-00008-1,1,4380_7778208_3500402,4380_1137 -4380_78038,285,4380_72794,Galway,99110-00009-1,1,4380_7778208_3500402,4380_1142 -4380_78038,288,4380_72796,Galway,99108-00011-1,1,4380_7778208_3500402,4380_1142 -4380_78038,286,4380_72797,Galway,99102-00010-1,1,4380_7778208_3500402,4380_1142 -4380_78038,291,4380_72798,Galway,99112-00013-1,1,4380_7778208_3500402,4380_1144 -4380_78038,289,4380_72799,Galway,99106-00014-1,1,4380_7778208_3500402,4380_1142 -4380_78113,289,4380_728,Dundalk,50082-00014-1,0,4380_7778208_1000907,4380_10 -4380_78038,287,4380_72800,Galway,99104-00012-1,1,4380_7778208_3500402,4380_1142 -4380_78038,292,4380_72801,Galway,99103-00016-1,1,4380_7778208_3500402,4380_1142 -4380_78038,290,4380_72802,Galway,99111-00015-1,1,4380_7778208_3500402,4380_1142 -4380_78038,294,4380_72803,Galway,99105-00018-1,1,4380_7778208_3500402,4380_1142 -4380_78038,295,4380_72804,Galway,99107-00019-1,1,4380_7778208_3500402,4380_1142 -4380_78038,293,4380_72805,Galway,99109-00017-1,1,4380_7778208_3500402,4380_1142 -4380_78038,296,4380_72806,Galway,99113-00021-1,1,4380_7778208_3500402,4380_1144 -4380_78038,297,4380_72813,Galway,98984-00008-1,1,4380_7778208_3500303,4380_1137 -4380_78038,285,4380_72814,Galway,99011-00009-1,1,4380_7778208_3500304,4380_1142 -4380_78038,288,4380_72816,Galway,99015-00011-1,1,4380_7778208_3500304,4380_1142 -4380_78038,286,4380_72817,Galway,99013-00010-1,1,4380_7778208_3500304,4380_1142 -4380_78038,291,4380_72818,Galway,99009-00013-1,1,4380_7778208_3500304,4380_1144 -4380_78038,289,4380_72819,Galway,99007-00014-1,1,4380_7778208_3500304,4380_1142 -4380_78038,287,4380_72820,Galway,99017-00012-1,1,4380_7778208_3500304,4380_1142 -4380_78038,292,4380_72821,Galway,99014-00016-1,1,4380_7778208_3500304,4380_1142 -4380_78038,290,4380_72822,Galway,99012-00015-1,1,4380_7778208_3500304,4380_1142 -4380_78038,294,4380_72823,Galway,99018-00018-1,1,4380_7778208_3500304,4380_1142 -4380_78038,295,4380_72824,Galway,99008-00019-1,1,4380_7778208_3500304,4380_1142 -4380_78038,293,4380_72825,Galway,99016-00017-1,1,4380_7778208_3500304,4380_1142 -4380_78038,296,4380_72826,Galway,99010-00021-1,1,4380_7778208_3500304,4380_1144 -4380_78038,297,4380_72833,Galway,98940-00008-1,1,4380_7778208_3500301,4380_1137 -4380_78038,285,4380_72834,Galway,108750-00009-1,1,4380_7778208_4170301,4380_1142 -4380_78038,288,4380_72836,Galway,108752-00011-1,1,4380_7778208_4170301,4380_1142 -4380_78038,286,4380_72837,Galway,108746-00010-1,1,4380_7778208_4170301,4380_1142 -4380_78038,291,4380_72838,Galway,98941-00013-1,1,4380_7778208_3500301,4380_1144 -4380_78038,289,4380_72839,Galway,108754-00014-1,1,4380_7778208_4170301,4380_1142 -4380_78038,287,4380_72840,Galway,108748-00012-1,1,4380_7778208_4170301,4380_1142 -4380_78038,292,4380_72841,Galway,108747-00016-1,1,4380_7778208_4170301,4380_1142 -4380_78038,290,4380_72842,Galway,108751-00015-1,1,4380_7778208_4170301,4380_1142 -4380_78038,294,4380_72843,Galway,108749-00018-1,1,4380_7778208_4170301,4380_1142 -4380_78038,295,4380_72844,Galway,108755-00019-1,1,4380_7778208_4170301,4380_1142 -4380_78038,293,4380_72845,Galway,108753-00017-1,1,4380_7778208_4170301,4380_1142 -4380_78038,296,4380_72846,Galway,98942-00021-1,1,4380_7778208_3500301,4380_1144 -4380_77953,285,4380_7285,Dublin,5912-00009-1,1,4380_7778208_1090112,4380_109 -4380_78038,297,4380_72853,Galway,99020-00008-1,1,4380_7778208_3500304,4380_1137 -4380_78038,285,4380_72854,Galway,99037-00009-1,1,4380_7778208_3500305,4380_1142 -4380_78038,288,4380_72856,Galway,99033-00011-1,1,4380_7778208_3500305,4380_1142 -4380_78038,286,4380_72857,Galway,99039-00010-1,1,4380_7778208_3500305,4380_1142 -4380_78038,291,4380_72858,Galway,99043-00013-1,1,4380_7778208_3500305,4380_1144 -4380_78038,289,4380_72859,Galway,99041-00014-1,1,4380_7778208_3500305,4380_1142 -4380_77953,286,4380_7286,Dublin,5921-00010-1,1,4380_7778208_1090112,4380_109 -4380_78038,287,4380_72860,Galway,99035-00012-1,1,4380_7778208_3500305,4380_1142 -4380_78038,292,4380_72861,Galway,99040-00016-1,1,4380_7778208_3500305,4380_1142 -4380_78038,290,4380_72862,Galway,99038-00015-1,1,4380_7778208_3500305,4380_1142 -4380_78038,294,4380_72863,Galway,99036-00018-1,1,4380_7778208_3500305,4380_1142 -4380_78038,295,4380_72864,Galway,99042-00019-1,1,4380_7778208_3500305,4380_1142 -4380_78038,293,4380_72865,Galway,99034-00017-1,1,4380_7778208_3500305,4380_1142 -4380_78038,296,4380_72866,Galway,99044-00021-1,1,4380_7778208_3500305,4380_1144 -4380_77953,288,4380_7287,Dublin,5930-00011-1,1,4380_7778208_1090112,4380_109 -4380_78038,297,4380_72873,Lisdoonvarna,99088-00008-1,1,4380_7778208_3500401,4380_1139 -4380_78038,285,4380_72874,Lisdoonvarna,99089-00009-1,1,4380_7778208_3500401,4380_1143 -4380_78038,288,4380_72876,Lisdoonvarna,99084-00011-1,1,4380_7778208_3500401,4380_1143 -4380_78038,286,4380_72877,Lisdoonvarna,99086-00010-1,1,4380_7778208_3500401,4380_1143 -4380_78038,291,4380_72878,Lisdoonvarna,99082-00013-1,1,4380_7778208_3500401,4380_1145 -4380_78038,289,4380_72879,Lisdoonvarna,99078-00014-1,1,4380_7778208_3500401,4380_1143 -4380_77953,287,4380_7288,Dublin,5937-00012-1,1,4380_7778208_1090112,4380_109 -4380_78038,287,4380_72880,Lisdoonvarna,99080-00012-1,1,4380_7778208_3500401,4380_1143 -4380_78038,292,4380_72881,Lisdoonvarna,99087-00016-1,1,4380_7778208_3500401,4380_1143 -4380_78038,290,4380_72882,Lisdoonvarna,99090-00015-1,1,4380_7778208_3500401,4380_1143 -4380_78038,294,4380_72883,Lisdoonvarna,99081-00018-1,1,4380_7778208_3500401,4380_1143 -4380_78038,295,4380_72884,Lisdoonvarna,99079-00019-1,1,4380_7778208_3500401,4380_1143 -4380_78038,293,4380_72885,Lisdoonvarna,99085-00017-1,1,4380_7778208_3500401,4380_1143 -4380_78038,296,4380_72886,Lisdoonvarna,99083-00021-1,1,4380_7778208_3500401,4380_1145 -4380_77953,289,4380_7289,Dublin,5901-00014-1,1,4380_7778208_1090112,4380_109 -4380_78039,297,4380_72893,Dunmore,99127-00008-1,0,4380_7778208_3540801,4380_1146 -4380_78039,285,4380_72894,Dunmore,99138-00009-1,0,4380_7778208_3540801,4380_1149 -4380_78039,288,4380_72896,Dunmore,99128-00011-1,0,4380_7778208_3540801,4380_1149 -4380_78039,286,4380_72897,Dunmore,99136-00010-1,0,4380_7778208_3540801,4380_1149 -4380_78039,291,4380_72898,Dunmore,99132-00013-1,0,4380_7778208_3540801,4380_1149 -4380_78039,289,4380_72899,Dunmore,99134-00014-1,0,4380_7778208_3540801,4380_1149 -4380_78113,290,4380_729,Dundalk,50091-00015-1,0,4380_7778208_1000907,4380_10 -4380_77953,290,4380_7290,Dublin,55151-00015-1,1,4380_7778208_1090112,4380_109 -4380_78039,287,4380_72900,Dunmore,99130-00012-1,0,4380_7778208_3540801,4380_1149 -4380_78039,292,4380_72901,Dunmore,99137-00016-1,0,4380_7778208_3540801,4380_1149 -4380_78039,290,4380_72902,Dunmore,99139-00015-1,0,4380_7778208_3540801,4380_1149 -4380_78039,294,4380_72903,Dunmore,99131-00018-1,0,4380_7778208_3540801,4380_1149 -4380_78039,295,4380_72904,Dunmore,99135-00019-1,0,4380_7778208_3540801,4380_1149 -4380_78039,293,4380_72905,Dunmore,99129-00017-1,0,4380_7778208_3540801,4380_1149 -4380_78039,296,4380_72906,Dunmore,99133-00021-1,0,4380_7778208_3540801,4380_1149 -4380_77953,291,4380_7291,Dublin,5349-00013-1,1,4380_7778208_1090102,4380_111 -4380_78039,297,4380_72913,Dunmore,99222-00008-1,0,4380_7778208_3540802,4380_1146 -4380_78039,285,4380_72914,Dunmore,99220-00009-1,0,4380_7778208_3540802,4380_1149 -4380_78039,288,4380_72916,Dunmore,99225-00011-1,0,4380_7778208_3540802,4380_1149 -4380_78039,286,4380_72917,Dunmore,99227-00010-1,0,4380_7778208_3540802,4380_1149 -4380_78039,291,4380_72918,Dunmore,99223-00013-1,0,4380_7778208_3540802,4380_1149 -4380_78039,289,4380_72919,Dunmore,99218-00014-1,0,4380_7778208_3540802,4380_1149 -4380_77953,292,4380_7292,Dublin,55150-00016-1,1,4380_7778208_1090112,4380_109 -4380_78039,287,4380_72920,Dunmore,99229-00012-1,0,4380_7778208_3540802,4380_1149 -4380_78039,292,4380_72921,Dunmore,99228-00016-1,0,4380_7778208_3540802,4380_1149 -4380_78039,290,4380_72922,Dunmore,99221-00015-1,0,4380_7778208_3540802,4380_1149 -4380_78039,294,4380_72923,Dunmore,99230-00018-1,0,4380_7778208_3540802,4380_1149 -4380_78039,295,4380_72924,Dunmore,99219-00019-1,0,4380_7778208_3540802,4380_1149 -4380_78039,293,4380_72925,Dunmore,99226-00017-1,0,4380_7778208_3540802,4380_1149 -4380_78039,296,4380_72926,Dunmore,99224-00021-1,0,4380_7778208_3540802,4380_1149 -4380_77953,293,4380_7293,Dublin,55148-00017-1,1,4380_7778208_1090112,4380_109 -4380_78039,297,4380_72933,Dunmore,99306-00008-1,0,4380_7778208_3540803,4380_1147 -4380_78039,285,4380_72934,Dunmore,99296-00009-1,0,4380_7778208_3540803,4380_1147 -4380_78039,288,4380_72936,Dunmore,99302-00011-1,0,4380_7778208_3540803,4380_1147 -4380_78039,286,4380_72937,Dunmore,99298-00010-1,0,4380_7778208_3540803,4380_1147 -4380_78039,291,4380_72938,Dunmore,99300-00013-1,0,4380_7778208_3540803,4380_1147 -4380_78039,289,4380_72939,Dunmore,99304-00014-1,0,4380_7778208_3540803,4380_1147 -4380_77953,294,4380_7294,Dublin,55149-00018-1,1,4380_7778208_1090112,4380_109 -4380_78039,287,4380_72940,Dunmore,99307-00012-1,0,4380_7778208_3540803,4380_1147 -4380_78039,292,4380_72941,Dunmore,99299-00016-1,0,4380_7778208_3540803,4380_1147 -4380_78039,290,4380_72942,Dunmore,99297-00015-1,0,4380_7778208_3540803,4380_1147 -4380_78039,294,4380_72943,Dunmore,99308-00018-1,0,4380_7778208_3540803,4380_1147 -4380_78039,295,4380_72944,Dunmore,99305-00019-1,0,4380_7778208_3540803,4380_1147 -4380_78039,293,4380_72945,Dunmore,99303-00017-1,0,4380_7778208_3540803,4380_1147 -4380_78039,296,4380_72946,Dunmore,99301-00021-1,0,4380_7778208_3540803,4380_1147 -4380_77953,295,4380_7295,Dublin,55147-00019-1,1,4380_7778208_1090112,4380_109 -4380_78039,297,4380_72953,Dunmore,99163-00008-1,0,4380_7778208_3540801,4380_1146 -4380_78039,285,4380_72954,Dunmore,99155-00009-1,0,4380_7778208_3540801,4380_1149 -4380_78039,288,4380_72956,Dunmore,99161-00011-1,0,4380_7778208_3540801,4380_1149 -4380_78039,286,4380_72957,Dunmore,99157-00010-1,0,4380_7778208_3540801,4380_1149 -4380_78039,291,4380_72958,Dunmore,99153-00013-1,0,4380_7778208_3540801,4380_1149 -4380_78039,289,4380_72959,Dunmore,99164-00014-1,0,4380_7778208_3540801,4380_1149 -4380_77953,296,4380_7296,Dublin,54704-00021-1,1,4380_7778208_1090102,4380_111 -4380_78039,287,4380_72960,Dunmore,99159-00012-1,0,4380_7778208_3540801,4380_1149 -4380_78039,292,4380_72961,Dunmore,99158-00016-1,0,4380_7778208_3540801,4380_1149 -4380_78039,290,4380_72962,Dunmore,99156-00015-1,0,4380_7778208_3540801,4380_1149 -4380_78039,294,4380_72963,Dunmore,99160-00018-1,0,4380_7778208_3540801,4380_1149 -4380_78039,295,4380_72964,Dunmore,99165-00019-1,0,4380_7778208_3540801,4380_1149 -4380_78039,293,4380_72965,Dunmore,99162-00017-1,0,4380_7778208_3540801,4380_1149 -4380_78039,296,4380_72966,Dunmore,99154-00021-1,0,4380_7778208_3540801,4380_1149 -4380_78039,297,4380_72973,Dunmore,99330-00008-1,0,4380_7778208_3540803,4380_1147 -4380_78039,285,4380_72974,Dunmore,99331-00009-1,0,4380_7778208_3540803,4380_1147 -4380_78039,288,4380_72976,Dunmore,99326-00011-1,0,4380_7778208_3540803,4380_1147 -4380_78039,286,4380_72977,Dunmore,99328-00010-1,0,4380_7778208_3540803,4380_1147 -4380_78039,291,4380_72978,Dunmore,99322-00013-1,0,4380_7778208_3540803,4380_1147 -4380_78039,289,4380_72979,Dunmore,99324-00014-1,0,4380_7778208_3540803,4380_1147 -4380_78039,287,4380_72980,Dunmore,99333-00012-1,0,4380_7778208_3540803,4380_1147 -4380_78039,292,4380_72981,Dunmore,99329-00016-1,0,4380_7778208_3540803,4380_1147 -4380_78039,290,4380_72982,Dunmore,99332-00015-1,0,4380_7778208_3540803,4380_1147 -4380_78039,294,4380_72983,Dunmore,99334-00018-1,0,4380_7778208_3540803,4380_1147 -4380_78039,295,4380_72984,Dunmore,99325-00019-1,0,4380_7778208_3540803,4380_1147 -4380_78039,293,4380_72985,Dunmore,99327-00017-1,0,4380_7778208_3540803,4380_1147 -4380_78039,296,4380_72986,Dunmore,99323-00021-1,0,4380_7778208_3540803,4380_1147 -4380_78039,297,4380_72993,Dunmore,99250-00008-1,0,4380_7778208_3540802,4380_1146 -4380_78039,285,4380_72994,Dunmore,99251-00009-1,0,4380_7778208_3540802,4380_1149 -4380_78039,288,4380_72996,Dunmore,99244-00011-1,0,4380_7778208_3540802,4380_1149 -4380_78039,286,4380_72997,Dunmore,99253-00010-1,0,4380_7778208_3540802,4380_1149 -4380_78039,291,4380_72998,Dunmore,99248-00013-1,0,4380_7778208_3540802,4380_1149 -4380_78039,289,4380_72999,Dunmore,99255-00014-1,0,4380_7778208_3540802,4380_1149 -4380_77946,285,4380_73,Dundalk,50381-00009-1,0,4380_7778208_1000914,4380_1 -4380_78113,291,4380_730,Dundalk,50092-00013-1,0,4380_7778208_1000907,4380_16 -4380_78039,287,4380_73000,Dunmore,99246-00012-1,0,4380_7778208_3540802,4380_1149 -4380_78039,292,4380_73001,Dunmore,99254-00016-1,0,4380_7778208_3540802,4380_1149 -4380_78039,290,4380_73002,Dunmore,99252-00015-1,0,4380_7778208_3540802,4380_1149 -4380_78039,294,4380_73003,Dunmore,99247-00018-1,0,4380_7778208_3540802,4380_1149 -4380_78039,295,4380_73004,Dunmore,99256-00019-1,0,4380_7778208_3540802,4380_1149 -4380_78039,293,4380_73005,Dunmore,99245-00017-1,0,4380_7778208_3540802,4380_1149 -4380_78039,296,4380_73006,Dunmore,99249-00021-1,0,4380_7778208_3540802,4380_1149 -4380_78039,297,4380_73013,Dunmore,99350-00008-1,0,4380_7778208_3540803,4380_1147 -4380_78039,285,4380_73014,Dunmore,99355-00009-1,0,4380_7778208_3540803,4380_1147 -4380_78039,288,4380_73016,Dunmore,99359-00011-1,0,4380_7778208_3540803,4380_1147 -4380_78039,286,4380_73017,Dunmore,99357-00010-1,0,4380_7778208_3540803,4380_1147 -4380_78039,291,4380_73018,Dunmore,99353-00013-1,0,4380_7778208_3540803,4380_1147 -4380_78039,289,4380_73019,Dunmore,99351-00014-1,0,4380_7778208_3540803,4380_1147 -4380_77953,285,4380_7302,Dublin,5780-00009-1,1,4380_7778208_1090109,4380_105 -4380_78039,287,4380_73020,Dunmore,99348-00012-1,0,4380_7778208_3540803,4380_1147 -4380_78039,292,4380_73021,Dunmore,99358-00016-1,0,4380_7778208_3540803,4380_1147 -4380_78039,290,4380_73022,Dunmore,99356-00015-1,0,4380_7778208_3540803,4380_1147 -4380_78039,294,4380_73023,Dunmore,99349-00018-1,0,4380_7778208_3540803,4380_1147 -4380_78039,295,4380_73024,Dunmore,99352-00019-1,0,4380_7778208_3540803,4380_1147 -4380_78039,293,4380_73025,Dunmore,99360-00017-1,0,4380_7778208_3540803,4380_1147 -4380_78039,296,4380_73026,Dunmore,99354-00021-1,0,4380_7778208_3540803,4380_1147 -4380_77953,286,4380_7303,Dublin,5785-00010-1,1,4380_7778208_1090109,4380_105 -4380_78039,297,4380_73033,Dunmore,99187-00008-1,0,4380_7778208_3540801,4380_1146 -4380_78039,285,4380_73034,Dunmore,99185-00009-1,0,4380_7778208_3540801,4380_1149 -4380_78039,288,4380_73036,Dunmore,99181-00011-1,0,4380_7778208_3540801,4380_1149 -4380_78039,286,4380_73037,Dunmore,99190-00010-1,0,4380_7778208_3540801,4380_1149 -4380_78039,291,4380_73038,Dunmore,99183-00013-1,0,4380_7778208_3540801,4380_1149 -4380_78039,289,4380_73039,Dunmore,99179-00014-1,0,4380_7778208_3540801,4380_1149 -4380_77953,288,4380_7304,Dublin,5790-00011-1,1,4380_7778208_1090109,4380_105 -4380_78039,287,4380_73040,Dunmore,99188-00012-1,0,4380_7778208_3540801,4380_1149 -4380_78039,292,4380_73041,Dunmore,99191-00016-1,0,4380_7778208_3540801,4380_1149 -4380_78039,290,4380_73042,Dunmore,99186-00015-1,0,4380_7778208_3540801,4380_1149 -4380_78039,294,4380_73043,Dunmore,99189-00018-1,0,4380_7778208_3540801,4380_1149 -4380_78039,295,4380_73044,Dunmore,99180-00019-1,0,4380_7778208_3540801,4380_1149 -4380_78039,293,4380_73045,Dunmore,99182-00017-1,0,4380_7778208_3540801,4380_1149 -4380_78039,296,4380_73046,Dunmore,99184-00021-1,0,4380_7778208_3540801,4380_1149 -4380_77953,287,4380_7305,Dublin,5795-00012-1,1,4380_7778208_1090109,4380_105 -4380_78039,297,4380_73053,Dunmore,99382-00008-1,0,4380_7778208_3540803,4380_1146 -4380_78039,285,4380_73054,Dunmore,99385-00009-1,0,4380_7778208_3540803,4380_1149 -4380_78039,288,4380_73056,Dunmore,99374-00011-1,0,4380_7778208_3540803,4380_1149 -4380_78039,286,4380_73057,Dunmore,99378-00010-1,0,4380_7778208_3540803,4380_1149 -4380_78039,291,4380_73058,Dunmore,99383-00013-1,0,4380_7778208_3540803,4380_1149 -4380_78039,289,4380_73059,Dunmore,99380-00014-1,0,4380_7778208_3540803,4380_1149 -4380_77953,289,4380_7306,Dublin,5775-00014-1,1,4380_7778208_1090109,4380_105 -4380_78039,287,4380_73060,Dunmore,99376-00012-1,0,4380_7778208_3540803,4380_1149 -4380_78039,292,4380_73061,Dunmore,99379-00016-1,0,4380_7778208_3540803,4380_1149 -4380_78039,290,4380_73062,Dunmore,99386-00015-1,0,4380_7778208_3540803,4380_1149 -4380_78039,294,4380_73063,Dunmore,99377-00018-1,0,4380_7778208_3540803,4380_1149 -4380_78039,295,4380_73064,Dunmore,99381-00019-1,0,4380_7778208_3540803,4380_1149 -4380_78039,293,4380_73065,Dunmore,99375-00017-1,0,4380_7778208_3540803,4380_1149 -4380_78039,296,4380_73066,Dunmore,99384-00021-1,0,4380_7778208_3540803,4380_1149 -4380_77953,290,4380_7307,Dublin,55050-00015-1,1,4380_7778208_1090109,4380_105 -4380_78039,297,4380_73073,Dunmore,99282-00008-1,0,4380_7778208_3540802,4380_1146 -4380_78039,285,4380_73074,Dunmore,99278-00009-1,0,4380_7778208_3540802,4380_1149 -4380_78039,288,4380_73076,Dunmore,99276-00011-1,0,4380_7778208_3540802,4380_1149 -4380_78039,286,4380_73077,Dunmore,99272-00010-1,0,4380_7778208_3540802,4380_1149 -4380_78039,291,4380_73078,Dunmore,99274-00013-1,0,4380_7778208_3540802,4380_1149 -4380_78039,289,4380_73079,Dunmore,99280-00014-1,0,4380_7778208_3540802,4380_1149 -4380_77953,292,4380_7308,Dublin,55054-00016-1,1,4380_7778208_1090109,4380_105 -4380_78039,287,4380_73080,Dunmore,99270-00012-1,0,4380_7778208_3540802,4380_1149 -4380_78039,292,4380_73081,Dunmore,99273-00016-1,0,4380_7778208_3540802,4380_1149 -4380_78039,290,4380_73082,Dunmore,99279-00015-1,0,4380_7778208_3540802,4380_1149 -4380_78039,294,4380_73083,Dunmore,99271-00018-1,0,4380_7778208_3540802,4380_1149 -4380_78039,295,4380_73084,Dunmore,99281-00019-1,0,4380_7778208_3540802,4380_1149 -4380_78039,293,4380_73085,Dunmore,99277-00017-1,0,4380_7778208_3540802,4380_1149 -4380_78039,296,4380_73086,Dunmore,99275-00021-1,0,4380_7778208_3540802,4380_1149 -4380_77953,293,4380_7309,Dublin,55052-00017-1,1,4380_7778208_1090109,4380_105 -4380_78039,297,4380_73093,Dunmore,99412-00008-1,0,4380_7778208_3540803,4380_1148 -4380_78039,285,4380_73094,Dunmore,99408-00009-1,0,4380_7778208_3540803,4380_1150 -4380_78039,288,4380_73096,Dunmore,99406-00011-1,0,4380_7778208_3540803,4380_1150 -4380_78039,286,4380_73097,Dunmore,99402-00010-1,0,4380_7778208_3540803,4380_1150 -4380_78039,291,4380_73098,Dunmore,99404-00013-1,0,4380_7778208_3540803,4380_1150 -4380_78039,289,4380_73099,Dunmore,99410-00014-1,0,4380_7778208_3540803,4380_1150 -4380_78113,292,4380_731,Dundalk,50085-00016-1,0,4380_7778208_1000907,4380_10 -4380_77953,294,4380_7310,Dublin,55051-00018-1,1,4380_7778208_1090109,4380_105 -4380_78039,287,4380_73100,Dunmore,99400-00012-1,0,4380_7778208_3540803,4380_1150 -4380_78039,292,4380_73101,Dunmore,99403-00016-1,0,4380_7778208_3540803,4380_1150 -4380_78039,290,4380_73102,Dunmore,99409-00015-1,0,4380_7778208_3540803,4380_1150 -4380_78039,294,4380_73103,Dunmore,99401-00018-1,0,4380_7778208_3540803,4380_1150 -4380_78039,295,4380_73104,Dunmore,99411-00019-1,0,4380_7778208_3540803,4380_1150 -4380_78039,293,4380_73105,Dunmore,99407-00017-1,0,4380_7778208_3540803,4380_1150 -4380_78039,296,4380_73106,Dunmore,99405-00021-1,0,4380_7778208_3540803,4380_1150 -4380_77953,295,4380_7311,Dublin,55053-00019-1,1,4380_7778208_1090109,4380_105 -4380_78039,297,4380_73119,Carrick-on-Suir,99209-00008-1,1,4380_7778208_3540802,4380_1152 -4380_78039,297,4380_73120,The Quay,99285-00008-1,1,4380_7778208_3540803,4380_1153 -4380_78039,285,4380_73121,Carrick-on-Suir,99210-00009-1,1,4380_7778208_3540802,4380_1156 -4380_78039,285,4380_73122,The Quay,99283-00009-1,1,4380_7778208_3540803,4380_1157 -4380_78039,288,4380_73125,Carrick-on-Suir,99207-00011-1,1,4380_7778208_3540802,4380_1156 -4380_78039,288,4380_73126,The Quay,99288-00011-1,1,4380_7778208_3540803,4380_1157 -4380_78039,286,4380_73127,Carrick-on-Suir,99205-00010-1,1,4380_7778208_3540802,4380_1156 -4380_78039,286,4380_73128,The Quay,99294-00010-1,1,4380_7778208_3540803,4380_1157 -4380_78039,291,4380_73129,Carrick-on-Suir,99214-00013-1,1,4380_7778208_3540802,4380_1156 -4380_78039,291,4380_73130,The Quay,99286-00013-1,1,4380_7778208_3540803,4380_1157 -4380_78039,289,4380_73131,Carrick-on-Suir,99216-00014-1,1,4380_7778208_3540802,4380_1156 -4380_78039,289,4380_73132,The Quay,99292-00014-1,1,4380_7778208_3540803,4380_1157 -4380_78039,287,4380_73133,Carrick-on-Suir,99212-00012-1,1,4380_7778208_3540802,4380_1156 -4380_78039,287,4380_73134,The Quay,99290-00012-1,1,4380_7778208_3540803,4380_1157 -4380_78039,292,4380_73135,Carrick-on-Suir,99206-00016-1,1,4380_7778208_3540802,4380_1156 -4380_78039,292,4380_73136,The Quay,99295-00016-1,1,4380_7778208_3540803,4380_1157 -4380_78039,290,4380_73137,Carrick-on-Suir,99211-00015-1,1,4380_7778208_3540802,4380_1156 -4380_78039,290,4380_73138,The Quay,99284-00015-1,1,4380_7778208_3540803,4380_1157 -4380_78039,294,4380_73139,Carrick-on-Suir,99213-00018-1,1,4380_7778208_3540802,4380_1156 -4380_78039,294,4380_73140,The Quay,99291-00018-1,1,4380_7778208_3540803,4380_1157 -4380_78039,295,4380_73141,Carrick-on-Suir,99217-00019-1,1,4380_7778208_3540802,4380_1156 -4380_78039,295,4380_73142,The Quay,99293-00019-1,1,4380_7778208_3540803,4380_1157 -4380_78039,293,4380_73143,Carrick-on-Suir,99208-00017-1,1,4380_7778208_3540802,4380_1156 -4380_78039,293,4380_73144,The Quay,99289-00017-1,1,4380_7778208_3540803,4380_1157 -4380_78039,296,4380_73145,Carrick-on-Suir,99215-00021-1,1,4380_7778208_3540802,4380_1156 -4380_78039,296,4380_73146,The Quay,99287-00021-1,1,4380_7778208_3540803,4380_1157 -4380_78039,297,4380_73153,Carrick-on-Suir,99150-00008-1,1,4380_7778208_3540801,4380_1151 -4380_78039,285,4380_73154,Carrick-on-Suir,99151-00009-1,1,4380_7778208_3540801,4380_1155 -4380_78039,288,4380_73156,Carrick-on-Suir,99148-00011-1,1,4380_7778208_3540801,4380_1155 -4380_78039,286,4380_73157,Carrick-on-Suir,99142-00010-1,1,4380_7778208_3540801,4380_1155 -4380_78039,291,4380_73158,Carrick-on-Suir,99146-00013-1,1,4380_7778208_3540801,4380_1155 -4380_78039,289,4380_73159,Carrick-on-Suir,99140-00014-1,1,4380_7778208_3540801,4380_1155 -4380_78039,287,4380_73160,Carrick-on-Suir,99144-00012-1,1,4380_7778208_3540801,4380_1155 -4380_78039,292,4380_73161,Carrick-on-Suir,99143-00016-1,1,4380_7778208_3540801,4380_1155 -4380_78039,290,4380_73162,Carrick-on-Suir,99152-00015-1,1,4380_7778208_3540801,4380_1155 -4380_78039,294,4380_73163,Carrick-on-Suir,99145-00018-1,1,4380_7778208_3540801,4380_1155 -4380_78039,295,4380_73164,Carrick-on-Suir,99141-00019-1,1,4380_7778208_3540801,4380_1155 -4380_78039,293,4380_73165,Carrick-on-Suir,99149-00017-1,1,4380_7778208_3540801,4380_1155 -4380_78039,296,4380_73166,Carrick-on-Suir,99147-00021-1,1,4380_7778208_3540801,4380_1155 -4380_78039,297,4380_73173,The Quay,99309-00008-1,1,4380_7778208_3540803,4380_1153 -4380_78039,285,4380_73174,The Quay,99310-00009-1,1,4380_7778208_3540803,4380_1157 -4380_78039,288,4380_73176,The Quay,99314-00011-1,1,4380_7778208_3540803,4380_1157 -4380_78039,286,4380_73177,The Quay,99312-00010-1,1,4380_7778208_3540803,4380_1157 -4380_78039,291,4380_73178,The Quay,99320-00013-1,1,4380_7778208_3540803,4380_1157 -4380_78039,289,4380_73179,The Quay,99316-00014-1,1,4380_7778208_3540803,4380_1157 -4380_78039,287,4380_73180,The Quay,99318-00012-1,1,4380_7778208_3540803,4380_1157 -4380_78039,292,4380_73181,The Quay,99313-00016-1,1,4380_7778208_3540803,4380_1157 -4380_78039,290,4380_73182,The Quay,99311-00015-1,1,4380_7778208_3540803,4380_1157 -4380_78039,294,4380_73183,The Quay,99319-00018-1,1,4380_7778208_3540803,4380_1157 -4380_78039,295,4380_73184,The Quay,99317-00019-1,1,4380_7778208_3540803,4380_1157 -4380_78039,293,4380_73185,The Quay,99315-00017-1,1,4380_7778208_3540803,4380_1157 -4380_78039,296,4380_73186,The Quay,99321-00021-1,1,4380_7778208_3540803,4380_1157 -4380_77953,285,4380_7319,U C D Belfield,5873-00009-1,1,4380_7778208_1090111,4380_112 -4380_78039,297,4380_73193,Carrick-on-Suir,99235-00008-1,1,4380_7778208_3540802,4380_1151 -4380_78039,285,4380_73194,Carrick-on-Suir,99236-00009-1,1,4380_7778208_3540802,4380_1155 -4380_78039,288,4380_73196,Carrick-on-Suir,99233-00011-1,1,4380_7778208_3540802,4380_1155 -4380_78039,286,4380_73197,Carrick-on-Suir,99238-00010-1,1,4380_7778208_3540802,4380_1155 -4380_78039,291,4380_73198,Carrick-on-Suir,99231-00013-1,1,4380_7778208_3540802,4380_1155 -4380_78039,289,4380_73199,Carrick-on-Suir,99242-00014-1,1,4380_7778208_3540802,4380_1155 -4380_78113,293,4380_732,Dundalk,50089-00017-1,0,4380_7778208_1000907,4380_10 -4380_77953,286,4380_7320,U C D Belfield,5875-00010-1,1,4380_7778208_1090111,4380_112 -4380_78039,287,4380_73200,Carrick-on-Suir,99240-00012-1,1,4380_7778208_3540802,4380_1155 -4380_78039,292,4380_73201,Carrick-on-Suir,99239-00016-1,1,4380_7778208_3540802,4380_1155 -4380_78039,290,4380_73202,Carrick-on-Suir,99237-00015-1,1,4380_7778208_3540802,4380_1155 -4380_78039,294,4380_73203,Carrick-on-Suir,99241-00018-1,1,4380_7778208_3540802,4380_1155 -4380_78039,295,4380_73204,Carrick-on-Suir,99243-00019-1,1,4380_7778208_3540802,4380_1155 -4380_78039,293,4380_73205,Carrick-on-Suir,99234-00017-1,1,4380_7778208_3540802,4380_1155 -4380_78039,296,4380_73206,Carrick-on-Suir,99232-00021-1,1,4380_7778208_3540802,4380_1155 -4380_77953,297,4380_7321,Dublin,5440-00008-1,1,4380_7778208_1090103,4380_101 -4380_78039,297,4380_73213,The Quay,99347-00008-1,1,4380_7778208_3540803,4380_1153 -4380_78039,285,4380_73214,The Quay,99345-00009-1,1,4380_7778208_3540803,4380_1157 -4380_78039,288,4380_73216,The Quay,99335-00011-1,1,4380_7778208_3540803,4380_1157 -4380_78039,286,4380_73217,The Quay,99343-00010-1,1,4380_7778208_3540803,4380_1157 -4380_78039,291,4380_73218,The Quay,99339-00013-1,1,4380_7778208_3540803,4380_1157 -4380_78039,289,4380_73219,The Quay,99337-00014-1,1,4380_7778208_3540803,4380_1157 -4380_77953,288,4380_7322,U C D Belfield,5877-00011-1,1,4380_7778208_1090111,4380_112 -4380_78039,287,4380_73220,The Quay,99341-00012-1,1,4380_7778208_3540803,4380_1157 -4380_78039,292,4380_73221,The Quay,99344-00016-1,1,4380_7778208_3540803,4380_1157 -4380_78039,290,4380_73222,The Quay,99346-00015-1,1,4380_7778208_3540803,4380_1157 -4380_78039,294,4380_73223,The Quay,99342-00018-1,1,4380_7778208_3540803,4380_1157 -4380_78039,295,4380_73224,The Quay,99338-00019-1,1,4380_7778208_3540803,4380_1157 -4380_78039,293,4380_73225,The Quay,99336-00017-1,1,4380_7778208_3540803,4380_1157 -4380_78039,296,4380_73226,The Quay,99340-00021-1,1,4380_7778208_3540803,4380_1157 -4380_77953,287,4380_7323,U C D Belfield,5879-00012-1,1,4380_7778208_1090111,4380_112 -4380_78039,297,4380_73233,Carrick-on-Suir,99166-00008-1,1,4380_7778208_3540801,4380_1151 -4380_78039,285,4380_73234,Carrick-on-Suir,99177-00009-1,1,4380_7778208_3540801,4380_1155 -4380_78039,288,4380_73236,Carrick-on-Suir,99167-00011-1,1,4380_7778208_3540801,4380_1155 -4380_78039,286,4380_73237,Carrick-on-Suir,99173-00010-1,1,4380_7778208_3540801,4380_1155 -4380_78039,291,4380_73238,Carrick-on-Suir,99175-00013-1,1,4380_7778208_3540801,4380_1155 -4380_78039,289,4380_73239,Carrick-on-Suir,99169-00014-1,1,4380_7778208_3540801,4380_1155 -4380_77953,289,4380_7324,U C D Belfield,5871-00014-1,1,4380_7778208_1090111,4380_112 -4380_78039,287,4380_73240,Carrick-on-Suir,99171-00012-1,1,4380_7778208_3540801,4380_1155 -4380_78039,292,4380_73241,Carrick-on-Suir,99174-00016-1,1,4380_7778208_3540801,4380_1155 -4380_78039,290,4380_73242,Carrick-on-Suir,99178-00015-1,1,4380_7778208_3540801,4380_1155 -4380_78039,294,4380_73243,Carrick-on-Suir,99172-00018-1,1,4380_7778208_3540801,4380_1155 -4380_78039,295,4380_73244,Carrick-on-Suir,99170-00019-1,1,4380_7778208_3540801,4380_1155 -4380_78039,293,4380_73245,Carrick-on-Suir,99168-00017-1,1,4380_7778208_3540801,4380_1155 -4380_78039,296,4380_73246,Carrick-on-Suir,99176-00021-1,1,4380_7778208_3540801,4380_1155 -4380_77953,290,4380_7325,U C D Belfield,55131-00015-1,1,4380_7778208_1090111,4380_112 -4380_78039,297,4380_73253,Carrick-on-Suir,99367-00008-1,1,4380_7778208_3540803,4380_1151 -4380_78039,285,4380_73254,Carrick-on-Suir,99365-00009-1,1,4380_7778208_3540803,4380_1155 -4380_78039,288,4380_73256,Carrick-on-Suir,99361-00011-1,1,4380_7778208_3540803,4380_1155 -4380_78039,286,4380_73257,Carrick-on-Suir,99372-00010-1,1,4380_7778208_3540803,4380_1155 -4380_78039,291,4380_73258,Carrick-on-Suir,99370-00013-1,1,4380_7778208_3540803,4380_1155 -4380_78039,289,4380_73259,Carrick-on-Suir,99368-00014-1,1,4380_7778208_3540803,4380_1155 -4380_77953,291,4380_7326,Dublin,5694-00013-1,1,4380_7778208_1090107,4380_108 -4380_78039,287,4380_73260,Carrick-on-Suir,99363-00012-1,1,4380_7778208_3540803,4380_1155 -4380_78039,292,4380_73261,Carrick-on-Suir,99373-00016-1,1,4380_7778208_3540803,4380_1155 -4380_78039,290,4380_73262,Carrick-on-Suir,99366-00015-1,1,4380_7778208_3540803,4380_1155 -4380_78039,294,4380_73263,Carrick-on-Suir,99364-00018-1,1,4380_7778208_3540803,4380_1155 -4380_78039,295,4380_73264,Carrick-on-Suir,99369-00019-1,1,4380_7778208_3540803,4380_1155 -4380_78039,293,4380_73265,Carrick-on-Suir,99362-00017-1,1,4380_7778208_3540803,4380_1155 -4380_78039,296,4380_73266,Carrick-on-Suir,99371-00021-1,1,4380_7778208_3540803,4380_1155 -4380_77953,292,4380_7327,U C D Belfield,55132-00016-1,1,4380_7778208_1090111,4380_112 -4380_78039,297,4380_73273,Carrick-on-Suir,99269-00008-1,1,4380_7778208_3540802,4380_1151 -4380_78039,285,4380_73274,Carrick-on-Suir,99261-00009-1,1,4380_7778208_3540802,4380_1155 -4380_78039,288,4380_73276,Carrick-on-Suir,99259-00011-1,1,4380_7778208_3540802,4380_1155 -4380_78039,286,4380_73277,Carrick-on-Suir,99263-00010-1,1,4380_7778208_3540802,4380_1155 -4380_78039,291,4380_73278,Carrick-on-Suir,99257-00013-1,1,4380_7778208_3540802,4380_1155 -4380_78039,289,4380_73279,Carrick-on-Suir,99267-00014-1,1,4380_7778208_3540802,4380_1155 -4380_77953,293,4380_7328,U C D Belfield,55130-00017-1,1,4380_7778208_1090111,4380_112 -4380_78039,287,4380_73280,Carrick-on-Suir,99265-00012-1,1,4380_7778208_3540802,4380_1155 -4380_78039,292,4380_73281,Carrick-on-Suir,99264-00016-1,1,4380_7778208_3540802,4380_1155 -4380_78039,290,4380_73282,Carrick-on-Suir,99262-00015-1,1,4380_7778208_3540802,4380_1155 -4380_78039,294,4380_73283,Carrick-on-Suir,99266-00018-1,1,4380_7778208_3540802,4380_1155 -4380_78039,295,4380_73284,Carrick-on-Suir,99268-00019-1,1,4380_7778208_3540802,4380_1155 -4380_78039,293,4380_73285,Carrick-on-Suir,99260-00017-1,1,4380_7778208_3540802,4380_1155 -4380_78039,296,4380_73286,Carrick-on-Suir,99258-00021-1,1,4380_7778208_3540802,4380_1155 -4380_77953,294,4380_7329,U C D Belfield,55129-00018-1,1,4380_7778208_1090111,4380_112 -4380_78039,297,4380_73293,Carrick-on-Suir,99202-00008-1,1,4380_7778208_3540801,4380_1151 -4380_78039,285,4380_73294,Carrick-on-Suir,99200-00009-1,1,4380_7778208_3540801,4380_1155 -4380_78039,288,4380_73296,Carrick-on-Suir,99192-00011-1,1,4380_7778208_3540801,4380_1155 -4380_78039,286,4380_73297,Carrick-on-Suir,99194-00010-1,1,4380_7778208_3540801,4380_1155 -4380_78039,291,4380_73298,Carrick-on-Suir,99196-00013-1,1,4380_7778208_3540801,4380_1155 -4380_78039,289,4380_73299,Carrick-on-Suir,99198-00014-1,1,4380_7778208_3540801,4380_1155 -4380_78113,294,4380_733,Dundalk,50087-00018-1,0,4380_7778208_1000907,4380_10 -4380_77953,295,4380_7330,U C D Belfield,55128-00019-1,1,4380_7778208_1090111,4380_112 -4380_78039,287,4380_73300,Carrick-on-Suir,99203-00012-1,1,4380_7778208_3540801,4380_1155 -4380_78039,292,4380_73301,Carrick-on-Suir,99195-00016-1,1,4380_7778208_3540801,4380_1155 -4380_78039,290,4380_73302,Carrick-on-Suir,99201-00015-1,1,4380_7778208_3540801,4380_1155 -4380_78039,294,4380_73303,Carrick-on-Suir,99204-00018-1,1,4380_7778208_3540801,4380_1155 -4380_78039,295,4380_73304,Carrick-on-Suir,99199-00019-1,1,4380_7778208_3540801,4380_1155 -4380_78039,293,4380_73305,Carrick-on-Suir,99193-00017-1,1,4380_7778208_3540801,4380_1155 -4380_78039,296,4380_73306,Carrick-on-Suir,99197-00021-1,1,4380_7778208_3540801,4380_1155 -4380_77953,296,4380_7331,Dublin,54962-00021-1,1,4380_7778208_1090107,4380_108 -4380_78039,297,4380_73313,Portlaw Town Centre,99399-00008-1,1,4380_7778208_3540803,4380_1154 -4380_78039,285,4380_73314,Portlaw Town Centre,99397-00009-1,1,4380_7778208_3540803,4380_1158 -4380_78039,288,4380_73316,Portlaw Town Centre,99389-00011-1,1,4380_7778208_3540803,4380_1158 -4380_78039,286,4380_73317,Portlaw Town Centre,99393-00010-1,1,4380_7778208_3540803,4380_1158 -4380_78039,291,4380_73318,Portlaw Town Centre,99387-00013-1,1,4380_7778208_3540803,4380_1158 -4380_78039,289,4380_73319,Portlaw Town Centre,99391-00014-1,1,4380_7778208_3540803,4380_1158 -4380_78039,287,4380_73320,Portlaw Town Centre,99395-00012-1,1,4380_7778208_3540803,4380_1158 -4380_78039,292,4380_73321,Portlaw Town Centre,99394-00016-1,1,4380_7778208_3540803,4380_1158 -4380_78039,290,4380_73322,Portlaw Town Centre,99398-00015-1,1,4380_7778208_3540803,4380_1158 -4380_78039,294,4380_73323,Portlaw Town Centre,99396-00018-1,1,4380_7778208_3540803,4380_1158 -4380_78039,295,4380_73324,Portlaw Town Centre,99392-00019-1,1,4380_7778208_3540803,4380_1158 -4380_78039,293,4380_73325,Portlaw Town Centre,99390-00017-1,1,4380_7778208_3540803,4380_1158 -4380_78039,296,4380_73326,Portlaw Town Centre,99388-00021-1,1,4380_7778208_3540803,4380_1158 -4380_78039,297,4380_73333,The Quay,99425-00008-1,1,4380_7778208_3540803,4380_1153 -4380_78039,285,4380_73334,The Quay,99417-00009-1,1,4380_7778208_3540803,4380_1157 -4380_78039,288,4380_73336,The Quay,99413-00011-1,1,4380_7778208_3540803,4380_1157 -4380_78039,286,4380_73337,The Quay,99421-00010-1,1,4380_7778208_3540803,4380_1157 -4380_78039,291,4380_73338,The Quay,99419-00013-1,1,4380_7778208_3540803,4380_1157 -4380_78039,289,4380_73339,The Quay,99415-00014-1,1,4380_7778208_3540803,4380_1157 -4380_78039,287,4380_73340,The Quay,99423-00012-1,1,4380_7778208_3540803,4380_1157 -4380_78039,292,4380_73341,The Quay,99422-00016-1,1,4380_7778208_3540803,4380_1157 -4380_78039,290,4380_73342,The Quay,99418-00015-1,1,4380_7778208_3540803,4380_1157 -4380_78039,294,4380_73343,The Quay,99424-00018-1,1,4380_7778208_3540803,4380_1157 -4380_78039,295,4380_73344,The Quay,99416-00019-1,1,4380_7778208_3540803,4380_1157 -4380_78039,293,4380_73345,The Quay,99414-00017-1,1,4380_7778208_3540803,4380_1157 -4380_78039,296,4380_73346,The Quay,99420-00021-1,1,4380_7778208_3540803,4380_1157 -4380_78040,285,4380_73352,Cahir,99430-00009-1,0,4380_7778208_3550801,4380_1159 -4380_78040,288,4380_73354,Cahir,99432-00011-1,0,4380_7778208_3550801,4380_1159 -4380_78040,286,4380_73355,Cahir,99434-00010-1,0,4380_7778208_3550801,4380_1159 -4380_78040,291,4380_73356,Cahir,99508-00013-1,0,4380_7778208_3550802,4380_1159 -4380_78040,289,4380_73357,Cahir,99426-00014-1,0,4380_7778208_3550801,4380_1159 -4380_78040,287,4380_73358,Cahir,99428-00012-1,0,4380_7778208_3550801,4380_1159 -4380_78040,292,4380_73359,Cahir,99435-00016-1,0,4380_7778208_3550801,4380_1159 -4380_78040,290,4380_73360,Cahir,99431-00015-1,0,4380_7778208_3550801,4380_1159 -4380_78040,294,4380_73361,Cahir,99429-00018-1,0,4380_7778208_3550801,4380_1159 -4380_78040,295,4380_73362,Cahir,99427-00019-1,0,4380_7778208_3550801,4380_1159 -4380_78040,293,4380_73363,Cahir,99433-00017-1,0,4380_7778208_3550801,4380_1159 -4380_78040,296,4380_73364,Cahir,99509-00021-1,0,4380_7778208_3550802,4380_1159 -4380_77953,285,4380_7337,Dublin,5968-00009-1,1,4380_7778208_1090113,4380_105 -4380_78040,297,4380_73371,Cahir,99449-00008-1,0,4380_7778208_3550801,4380_1159 -4380_78040,285,4380_73372,Cahir,99530-00009-1,0,4380_7778208_3550802,4380_1162 -4380_78040,288,4380_73374,Cahir,99526-00011-1,0,4380_7778208_3550802,4380_1162 -4380_78040,286,4380_73375,Cahir,99528-00010-1,0,4380_7778208_3550802,4380_1162 -4380_78040,291,4380_73376,Cahir,99450-00013-1,0,4380_7778208_3550801,4380_1162 -4380_78040,289,4380_73377,Cahir,99522-00014-1,0,4380_7778208_3550802,4380_1162 -4380_78040,287,4380_73378,Cahir,99524-00012-1,0,4380_7778208_3550802,4380_1162 -4380_78040,292,4380_73379,Cahir,99529-00016-1,0,4380_7778208_3550802,4380_1162 -4380_77953,286,4380_7338,Dublin,5970-00010-1,1,4380_7778208_1090113,4380_105 -4380_78040,290,4380_73380,Cahir,99531-00015-1,0,4380_7778208_3550802,4380_1162 -4380_78040,294,4380_73381,Cahir,99525-00018-1,0,4380_7778208_3550802,4380_1162 -4380_78040,295,4380_73382,Cahir,99523-00019-1,0,4380_7778208_3550802,4380_1162 -4380_78040,293,4380_73383,Cahir,99527-00017-1,0,4380_7778208_3550802,4380_1162 -4380_78040,296,4380_73384,Cahir,99451-00021-1,0,4380_7778208_3550801,4380_1162 -4380_77953,288,4380_7339,Dublin,5972-00011-1,1,4380_7778208_1090113,4380_105 -4380_78040,285,4380_73390,Clonmel,99455-00009-1,0,4380_7778208_3550801,4380_1160 -4380_78040,288,4380_73392,Clonmel,99457-00011-1,0,4380_7778208_3550801,4380_1160 -4380_78040,286,4380_73393,Clonmel,99463-00010-1,0,4380_7778208_3550801,4380_1160 -4380_78040,291,4380_73394,Clonmel,99542-00013-1,0,4380_7778208_3550802,4380_1161 -4380_78040,289,4380_73395,Clonmel,99461-00014-1,0,4380_7778208_3550801,4380_1160 -4380_78040,287,4380_73396,Clonmel,99459-00012-1,0,4380_7778208_3550801,4380_1160 -4380_78040,292,4380_73397,Clonmel,99464-00016-1,0,4380_7778208_3550801,4380_1160 -4380_78040,290,4380_73398,Clonmel,99456-00015-1,0,4380_7778208_3550801,4380_1160 -4380_78040,294,4380_73399,Clonmel,99460-00018-1,0,4380_7778208_3550801,4380_1160 -4380_78113,295,4380_734,Dundalk,50083-00019-1,0,4380_7778208_1000907,4380_10 -4380_77953,287,4380_7340,Dublin,5974-00012-1,1,4380_7778208_1090113,4380_105 -4380_78040,295,4380_73400,Clonmel,99462-00019-1,0,4380_7778208_3550801,4380_1160 -4380_78040,293,4380_73401,Clonmel,99458-00017-1,0,4380_7778208_3550801,4380_1160 -4380_78040,296,4380_73402,Clonmel,99543-00021-1,0,4380_7778208_3550802,4380_1161 -4380_78040,297,4380_73409,Clonmel,99477-00008-1,0,4380_7778208_3550801,4380_1160 -4380_77953,289,4380_7341,Dublin,5966-00014-1,1,4380_7778208_1090113,4380_105 -4380_78040,285,4380_73410,Clonmel,99554-00009-1,0,4380_7778208_3550802,4380_1161 -4380_78040,288,4380_73412,Clonmel,99548-00011-1,0,4380_7778208_3550802,4380_1161 -4380_78040,286,4380_73413,Clonmel,99552-00010-1,0,4380_7778208_3550802,4380_1161 -4380_78040,291,4380_73414,Clonmel,99475-00013-1,0,4380_7778208_3550801,4380_1164 -4380_78040,289,4380_73415,Clonmel,99550-00014-1,0,4380_7778208_3550802,4380_1161 -4380_78040,287,4380_73416,Clonmel,99546-00012-1,0,4380_7778208_3550802,4380_1161 -4380_78040,292,4380_73417,Clonmel,99553-00016-1,0,4380_7778208_3550802,4380_1161 -4380_78040,290,4380_73418,Clonmel,99555-00015-1,0,4380_7778208_3550802,4380_1161 -4380_78040,294,4380_73419,Clonmel,99547-00018-1,0,4380_7778208_3550802,4380_1161 -4380_77953,290,4380_7342,Dublin,55196-00015-1,1,4380_7778208_1090113,4380_105 -4380_78040,295,4380_73420,Clonmel,99551-00019-1,0,4380_7778208_3550802,4380_1161 -4380_78040,293,4380_73421,Clonmel,99549-00017-1,0,4380_7778208_3550802,4380_1161 -4380_78040,296,4380_73422,Clonmel,99476-00021-1,0,4380_7778208_3550801,4380_1164 -4380_78040,297,4380_73429,Clonmel,99485-00008-1,0,4380_7778208_3550801,4380_1160 -4380_77953,292,4380_7343,Dublin,55194-00016-1,1,4380_7778208_1090113,4380_105 -4380_78040,285,4380_73430,Clonmel,99488-00009-1,0,4380_7778208_3550801,4380_1161 -4380_78040,288,4380_73432,Clonmel,99481-00011-1,0,4380_7778208_3550801,4380_1161 -4380_78040,286,4380_73433,Clonmel,99490-00010-1,0,4380_7778208_3550801,4380_1161 -4380_78040,291,4380_73434,Clonmel,99566-00013-1,0,4380_7778208_3550802,4380_1164 -4380_78040,289,4380_73435,Clonmel,99483-00014-1,0,4380_7778208_3550801,4380_1161 -4380_78040,287,4380_73436,Clonmel,99486-00012-1,0,4380_7778208_3550801,4380_1161 -4380_78040,292,4380_73437,Clonmel,99491-00016-1,0,4380_7778208_3550801,4380_1161 -4380_78040,290,4380_73438,Clonmel,99489-00015-1,0,4380_7778208_3550801,4380_1161 -4380_78040,294,4380_73439,Clonmel,99487-00018-1,0,4380_7778208_3550801,4380_1161 -4380_77953,293,4380_7344,Dublin,55193-00017-1,1,4380_7778208_1090113,4380_105 -4380_78040,295,4380_73440,Clonmel,99484-00019-1,0,4380_7778208_3550801,4380_1161 -4380_78040,293,4380_73441,Clonmel,99482-00017-1,0,4380_7778208_3550801,4380_1161 -4380_78040,296,4380_73442,Clonmel,99567-00021-1,0,4380_7778208_3550802,4380_1164 -4380_78040,285,4380_73448,Carrick-on-Suir,99576-00009-1,0,4380_7778208_3550802,4380_1163 -4380_77953,294,4380_7345,Dublin,55192-00018-1,1,4380_7778208_1090113,4380_105 -4380_78040,288,4380_73450,Carrick-on-Suir,99570-00011-1,0,4380_7778208_3550802,4380_1163 -4380_78040,286,4380_73451,Carrick-on-Suir,99572-00010-1,0,4380_7778208_3550802,4380_1163 -4380_78040,291,4380_73452,Carrick-on-Suir,99502-00013-1,0,4380_7778208_3550801,4380_1165 -4380_78040,289,4380_73453,Carrick-on-Suir,99568-00014-1,0,4380_7778208_3550802,4380_1163 -4380_78040,287,4380_73454,Carrick-on-Suir,99578-00012-1,0,4380_7778208_3550802,4380_1163 -4380_78040,292,4380_73455,Carrick-on-Suir,99573-00016-1,0,4380_7778208_3550802,4380_1163 -4380_78040,290,4380_73456,Carrick-on-Suir,99577-00015-1,0,4380_7778208_3550802,4380_1163 -4380_78040,294,4380_73457,Carrick-on-Suir,99579-00018-1,0,4380_7778208_3550802,4380_1163 -4380_78040,295,4380_73458,Carrick-on-Suir,99569-00019-1,0,4380_7778208_3550802,4380_1163 -4380_78040,293,4380_73459,Carrick-on-Suir,99571-00017-1,0,4380_7778208_3550802,4380_1163 -4380_77953,295,4380_7346,Dublin,55195-00019-1,1,4380_7778208_1090113,4380_105 -4380_78040,296,4380_73460,Carrick-on-Suir,99503-00021-1,0,4380_7778208_3550801,4380_1165 -4380_78040,297,4380_73462,Cahir,101231-00008-1,0,4380_7778208_3660801,4380_1159 -4380_78040,285,4380_73468,Cahir,99588-00009-1,0,4380_7778208_3550802,4380_1159 -4380_78040,288,4380_73470,Cahir,99582-00011-1,0,4380_7778208_3550802,4380_1159 -4380_78040,286,4380_73471,Cahir,99580-00010-1,0,4380_7778208_3550802,4380_1159 -4380_78040,291,4380_73472,Cahir,99504-00013-1,0,4380_7778208_3550801,4380_1159 -4380_78040,289,4380_73473,Cahir,99584-00014-1,0,4380_7778208_3550802,4380_1159 -4380_78040,287,4380_73474,Cahir,99586-00012-1,0,4380_7778208_3550802,4380_1159 -4380_78040,292,4380_73475,Cahir,99581-00016-1,0,4380_7778208_3550802,4380_1159 -4380_78040,290,4380_73476,Cahir,99589-00015-1,0,4380_7778208_3550802,4380_1159 -4380_78040,294,4380_73477,Cahir,99587-00018-1,0,4380_7778208_3550802,4380_1159 -4380_78040,295,4380_73478,Cahir,99585-00019-1,0,4380_7778208_3550802,4380_1159 -4380_78040,293,4380_73479,Cahir,99583-00017-1,0,4380_7778208_3550802,4380_1159 -4380_78040,296,4380_73480,Cahir,99505-00021-1,0,4380_7778208_3550801,4380_1159 -4380_78040,285,4380_73486,WIT - Special,99518-00009-1,1,4380_7778208_3550802,4380_1168 -4380_78040,288,4380_73487,WIT - Special,99510-00011-1,1,4380_7778208_3550802,4380_1168 -4380_78040,286,4380_73488,WIT - Special,99512-00010-1,1,4380_7778208_3550802,4380_1168 -4380_78040,289,4380_73489,WIT - Special,99514-00014-1,1,4380_7778208_3550802,4380_1168 -4380_78040,287,4380_73490,WIT - Special,99516-00012-1,1,4380_7778208_3550802,4380_1168 -4380_78040,292,4380_73491,WIT - Special,99513-00016-1,1,4380_7778208_3550802,4380_1168 -4380_78040,290,4380_73492,WIT - Special,99519-00015-1,1,4380_7778208_3550802,4380_1168 -4380_78040,294,4380_73493,WIT - Special,99517-00018-1,1,4380_7778208_3550802,4380_1168 -4380_78040,295,4380_73494,WIT - Special,99515-00019-1,1,4380_7778208_3550802,4380_1168 -4380_78040,293,4380_73495,WIT - Special,99511-00017-1,1,4380_7778208_3550802,4380_1168 -4380_78040,291,4380_73497,WIT - Special,99436-00013-1,1,4380_7778208_3550801,4380_1168 -4380_78040,296,4380_73498,WIT - Special,99437-00021-1,1,4380_7778208_3550801,4380_1168 -4380_78113,296,4380_735,Dundalk,50093-00021-1,0,4380_7778208_1000907,4380_16 -4380_78040,297,4380_73500,Waterford,99438-00008-1,1,4380_7778208_3550801,4380_1166 -4380_78040,285,4380_73506,WIT - Special,99441-00009-1,1,4380_7778208_3550801,4380_1168 -4380_78040,288,4380_73508,WIT - Special,99445-00011-1,1,4380_7778208_3550801,4380_1168 -4380_78040,286,4380_73509,WIT - Special,99447-00010-1,1,4380_7778208_3550801,4380_1168 -4380_78040,291,4380_73510,WIT - Special,99520-00013-1,1,4380_7778208_3550802,4380_1170 -4380_78040,289,4380_73511,WIT - Special,99443-00014-1,1,4380_7778208_3550801,4380_1168 -4380_78040,287,4380_73512,WIT - Special,99439-00012-1,1,4380_7778208_3550801,4380_1168 -4380_78040,292,4380_73513,WIT - Special,99448-00016-1,1,4380_7778208_3550801,4380_1168 -4380_78040,290,4380_73514,WIT - Special,99442-00015-1,1,4380_7778208_3550801,4380_1168 -4380_78040,294,4380_73515,WIT - Special,99440-00018-1,1,4380_7778208_3550801,4380_1168 -4380_78040,295,4380_73516,WIT - Special,99444-00019-1,1,4380_7778208_3550801,4380_1168 -4380_78040,293,4380_73517,WIT - Special,99446-00017-1,1,4380_7778208_3550801,4380_1168 -4380_78040,296,4380_73518,WIT - Special,99521-00021-1,1,4380_7778208_3550802,4380_1170 -4380_77953,285,4380_7352,Dublin,5824-00009-1,1,4380_7778208_1090110,4380_104 -4380_78040,297,4380_73525,Waterford,99454-00008-1,1,4380_7778208_3550801,4380_1167 -4380_78040,285,4380_73526,Waterford,99536-00009-1,1,4380_7778208_3550802,4380_1167 -4380_78040,288,4380_73528,Waterford,99534-00011-1,1,4380_7778208_3550802,4380_1167 -4380_78040,286,4380_73529,Waterford,99538-00010-1,1,4380_7778208_3550802,4380_1167 -4380_77953,286,4380_7353,Dublin,5832-00010-1,1,4380_7778208_1090110,4380_104 -4380_78040,291,4380_73530,Waterford,99452-00013-1,1,4380_7778208_3550801,4380_1167 -4380_78040,289,4380_73531,Waterford,99532-00014-1,1,4380_7778208_3550802,4380_1167 -4380_78040,287,4380_73532,Waterford,99540-00012-1,1,4380_7778208_3550802,4380_1167 -4380_78040,292,4380_73533,Waterford,99539-00016-1,1,4380_7778208_3550802,4380_1167 -4380_78040,290,4380_73534,Waterford,99537-00015-1,1,4380_7778208_3550802,4380_1167 -4380_78040,294,4380_73535,Waterford,99541-00018-1,1,4380_7778208_3550802,4380_1167 -4380_78040,295,4380_73536,Waterford,99533-00019-1,1,4380_7778208_3550802,4380_1167 -4380_78040,293,4380_73537,Waterford,99535-00017-1,1,4380_7778208_3550802,4380_1167 -4380_78040,296,4380_73538,Waterford,99453-00021-1,1,4380_7778208_3550801,4380_1167 -4380_77953,288,4380_7354,Dublin,5840-00011-1,1,4380_7778208_1090110,4380_104 -4380_78040,285,4380_73544,Waterford,99473-00009-1,1,4380_7778208_3550801,4380_1166 -4380_78040,288,4380_73546,Waterford,99469-00011-1,1,4380_7778208_3550801,4380_1166 -4380_78040,286,4380_73547,Waterford,99471-00010-1,1,4380_7778208_3550801,4380_1166 -4380_78040,291,4380_73548,Waterford,99544-00013-1,1,4380_7778208_3550802,4380_1166 -4380_78040,289,4380_73549,Waterford,99467-00014-1,1,4380_7778208_3550801,4380_1166 -4380_77953,287,4380_7355,Dublin,5848-00012-1,1,4380_7778208_1090110,4380_104 -4380_78040,287,4380_73550,Waterford,99465-00012-1,1,4380_7778208_3550801,4380_1166 -4380_78040,292,4380_73551,Waterford,99472-00016-1,1,4380_7778208_3550801,4380_1166 -4380_78040,290,4380_73552,Waterford,99474-00015-1,1,4380_7778208_3550801,4380_1166 -4380_78040,294,4380_73553,Waterford,99466-00018-1,1,4380_7778208_3550801,4380_1166 -4380_78040,295,4380_73554,Waterford,99468-00019-1,1,4380_7778208_3550801,4380_1166 -4380_78040,293,4380_73555,Waterford,99470-00017-1,1,4380_7778208_3550801,4380_1166 -4380_78040,296,4380_73556,Waterford,99545-00021-1,1,4380_7778208_3550802,4380_1166 -4380_77953,289,4380_7356,Dublin,5816-00014-1,1,4380_7778208_1090110,4380_104 -4380_78040,297,4380_73563,Waterford,99478-00008-1,1,4380_7778208_3550801,4380_1166 -4380_78040,285,4380_73564,Waterford,99558-00009-1,1,4380_7778208_3550802,4380_1166 -4380_78040,288,4380_73566,Waterford,99556-00011-1,1,4380_7778208_3550802,4380_1166 -4380_78040,286,4380_73567,Waterford,99564-00010-1,1,4380_7778208_3550802,4380_1166 -4380_78040,291,4380_73568,Waterford,99479-00013-1,1,4380_7778208_3550801,4380_1166 -4380_78040,289,4380_73569,Waterford,99560-00014-1,1,4380_7778208_3550802,4380_1166 -4380_77953,290,4380_7357,Dublin,55083-00015-1,1,4380_7778208_1090110,4380_104 -4380_78040,287,4380_73570,Waterford,99562-00012-1,1,4380_7778208_3550802,4380_1166 -4380_78040,292,4380_73571,Waterford,99565-00016-1,1,4380_7778208_3550802,4380_1166 -4380_78040,290,4380_73572,Waterford,99559-00015-1,1,4380_7778208_3550802,4380_1166 -4380_78040,294,4380_73573,Waterford,99563-00018-1,1,4380_7778208_3550802,4380_1166 -4380_78040,295,4380_73574,Waterford,99561-00019-1,1,4380_7778208_3550802,4380_1166 -4380_78040,293,4380_73575,Waterford,99557-00017-1,1,4380_7778208_3550802,4380_1166 -4380_78040,296,4380_73576,Waterford,99480-00021-1,1,4380_7778208_3550801,4380_1166 -4380_77953,292,4380_7358,Dublin,55082-00016-1,1,4380_7778208_1090110,4380_104 -4380_78040,285,4380_73582,Waterford,99500-00009-1,1,4380_7778208_3550801,4380_1166 -4380_78040,288,4380_73584,Waterford,99494-00011-1,1,4380_7778208_3550801,4380_1166 -4380_78040,286,4380_73585,Waterford,99496-00010-1,1,4380_7778208_3550801,4380_1166 -4380_78040,291,4380_73586,Waterford,99574-00013-1,1,4380_7778208_3550802,4380_1166 -4380_78040,289,4380_73587,Waterford,99498-00014-1,1,4380_7778208_3550801,4380_1166 -4380_78040,287,4380_73588,Waterford,99492-00012-1,1,4380_7778208_3550801,4380_1166 -4380_78040,292,4380_73589,Waterford,99497-00016-1,1,4380_7778208_3550801,4380_1166 -4380_77953,293,4380_7359,Dublin,55081-00017-1,1,4380_7778208_1090110,4380_104 -4380_78040,290,4380_73590,Waterford,99501-00015-1,1,4380_7778208_3550801,4380_1166 -4380_78040,294,4380_73591,Waterford,99493-00018-1,1,4380_7778208_3550801,4380_1166 -4380_78040,295,4380_73592,Waterford,99499-00019-1,1,4380_7778208_3550801,4380_1166 -4380_78040,293,4380_73593,Waterford,99495-00017-1,1,4380_7778208_3550801,4380_1166 -4380_78040,296,4380_73594,Waterford,99575-00021-1,1,4380_7778208_3550802,4380_1166 -4380_77953,294,4380_7360,Dublin,55084-00018-1,1,4380_7778208_1090110,4380_104 -4380_78040,297,4380_73601,Waterford,101232-00008-1,1,4380_7778208_3660801,4380_1167 -4380_78040,285,4380_73602,Waterford,99590-00009-1,1,4380_7778208_3550802,4380_1169 -4380_78040,288,4380_73604,Waterford,99596-00011-1,1,4380_7778208_3550802,4380_1169 -4380_78040,286,4380_73605,Waterford,99592-00010-1,1,4380_7778208_3550802,4380_1169 -4380_78040,291,4380_73606,Waterford,99506-00013-1,1,4380_7778208_3550801,4380_1169 -4380_78040,289,4380_73607,Waterford,99594-00014-1,1,4380_7778208_3550802,4380_1169 -4380_78040,287,4380_73608,Waterford,99598-00012-1,1,4380_7778208_3550802,4380_1169 -4380_78040,292,4380_73609,Waterford,99593-00016-1,1,4380_7778208_3550802,4380_1169 -4380_77953,295,4380_7361,Dublin,55085-00019-1,1,4380_7778208_1090110,4380_104 -4380_78040,290,4380_73610,Waterford,99591-00015-1,1,4380_7778208_3550802,4380_1169 -4380_78040,294,4380_73611,Waterford,99599-00018-1,1,4380_7778208_3550802,4380_1169 -4380_78040,295,4380_73612,Waterford,99595-00019-1,1,4380_7778208_3550802,4380_1169 -4380_78040,293,4380_73613,Waterford,99597-00017-1,1,4380_7778208_3550802,4380_1169 -4380_78040,296,4380_73614,Waterford,99507-00021-1,1,4380_7778208_3550801,4380_1169 -4380_78041,285,4380_73620,Crobally Heights,100248-00009-1,0,4380_7778208_3600804,4380_1171 -4380_78041,288,4380_73622,Crobally Heights,100252-00011-1,0,4380_7778208_3600804,4380_1171 -4380_78041,286,4380_73623,Crobally Heights,100246-00010-1,0,4380_7778208_3600804,4380_1171 -4380_78041,291,4380_73624,Crobally Heights,99632-00013-1,0,4380_7778208_3600801,4380_1172 -4380_78041,289,4380_73625,Crobally Heights,100244-00014-1,0,4380_7778208_3600804,4380_1171 -4380_78041,287,4380_73626,Crobally Heights,100250-00012-1,0,4380_7778208_3600804,4380_1171 -4380_78041,292,4380_73627,Crobally Heights,100247-00016-1,0,4380_7778208_3600804,4380_1171 -4380_78041,290,4380_73628,Crobally Heights,100249-00015-1,0,4380_7778208_3600804,4380_1171 -4380_78041,294,4380_73629,Crobally Heights,100251-00018-1,0,4380_7778208_3600804,4380_1171 -4380_78041,295,4380_73630,Crobally Heights,100245-00019-1,0,4380_7778208_3600804,4380_1171 -4380_78041,293,4380_73631,Crobally Heights,100253-00017-1,0,4380_7778208_3600804,4380_1171 -4380_78041,296,4380_73632,Crobally Heights,99633-00021-1,0,4380_7778208_3600801,4380_1172 -4380_78041,285,4380_73638,Crobally Heights,99642-00009-1,0,4380_7778208_3600801,4380_1171 -4380_78041,288,4380_73640,Crobally Heights,99638-00011-1,0,4380_7778208_3600801,4380_1171 -4380_78041,286,4380_73641,Crobally Heights,99640-00010-1,0,4380_7778208_3600801,4380_1171 -4380_78041,291,4380_73642,Crobally Heights,100254-00013-1,0,4380_7778208_3600804,4380_1172 -4380_78041,289,4380_73643,Crobally Heights,99636-00014-1,0,4380_7778208_3600801,4380_1171 -4380_78041,287,4380_73644,Crobally Heights,99634-00012-1,0,4380_7778208_3600801,4380_1171 -4380_78041,292,4380_73645,Crobally Heights,99641-00016-1,0,4380_7778208_3600801,4380_1171 -4380_78041,290,4380_73646,Crobally Heights,99643-00015-1,0,4380_7778208_3600801,4380_1171 -4380_78041,294,4380_73647,Crobally Heights,99635-00018-1,0,4380_7778208_3600801,4380_1171 -4380_78041,295,4380_73648,Crobally Heights,99637-00019-1,0,4380_7778208_3600801,4380_1171 -4380_78041,293,4380_73649,Crobally Heights,99639-00017-1,0,4380_7778208_3600801,4380_1171 -4380_78041,296,4380_73650,Crobally Heights,100255-00021-1,0,4380_7778208_3600804,4380_1172 -4380_78041,285,4380_73656,Crobally Heights,99868-00009-1,0,4380_7778208_3600802,4380_1171 -4380_78041,288,4380_73657,Crobally Heights,99866-00011-1,0,4380_7778208_3600802,4380_1171 -4380_78041,286,4380_73658,Crobally Heights,99870-00010-1,0,4380_7778208_3600802,4380_1171 -4380_78041,289,4380_73659,Crobally Heights,99862-00014-1,0,4380_7778208_3600802,4380_1171 -4380_78041,287,4380_73660,Crobally Heights,99864-00012-1,0,4380_7778208_3600802,4380_1171 -4380_78041,292,4380_73661,Crobally Heights,99871-00016-1,0,4380_7778208_3600802,4380_1171 -4380_78041,290,4380_73662,Crobally Heights,99869-00015-1,0,4380_7778208_3600802,4380_1171 -4380_78041,294,4380_73663,Crobally Heights,99865-00018-1,0,4380_7778208_3600802,4380_1171 -4380_78041,295,4380_73664,Crobally Heights,99863-00019-1,0,4380_7778208_3600802,4380_1171 -4380_78041,293,4380_73665,Crobally Heights,99867-00017-1,0,4380_7778208_3600802,4380_1171 -4380_78041,297,4380_73667,Crobally Heights,100069-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,291,4380_73669,Crobally Heights,99872-00013-1,0,4380_7778208_3600802,4380_1172 -4380_78041,296,4380_73670,Crobally Heights,99873-00021-1,0,4380_7778208_3600802,4380_1172 -4380_78041,285,4380_73676,Crobally Heights,100070-00009-1,0,4380_7778208_3600803,4380_1171 -4380_78041,288,4380_73677,Crobally Heights,100078-00011-1,0,4380_7778208_3600803,4380_1171 -4380_78041,286,4380_73678,Crobally Heights,100074-00010-1,0,4380_7778208_3600803,4380_1171 -4380_78041,289,4380_73679,Crobally Heights,100076-00014-1,0,4380_7778208_3600803,4380_1171 -4380_78041,287,4380_73680,Crobally Heights,100072-00012-1,0,4380_7778208_3600803,4380_1171 -4380_78041,292,4380_73681,Crobally Heights,100075-00016-1,0,4380_7778208_3600803,4380_1171 -4380_78041,290,4380_73682,Crobally Heights,100071-00015-1,0,4380_7778208_3600803,4380_1171 -4380_78041,294,4380_73683,Crobally Heights,100073-00018-1,0,4380_7778208_3600803,4380_1171 -4380_78041,295,4380_73684,Crobally Heights,100077-00019-1,0,4380_7778208_3600803,4380_1171 -4380_78041,293,4380_73685,Crobally Heights,100079-00017-1,0,4380_7778208_3600803,4380_1171 -4380_77953,285,4380_7369,Dublin,6064-00009-1,1,4380_7778208_1090116,4380_110 -4380_78041,297,4380_73692,Crobally Heights,99657-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_73693,Crobally Heights,101070-00009-1,0,4380_7778208_3600808,4380_1172 -4380_78041,288,4380_73695,Crobally Heights,101066-00011-1,0,4380_7778208_3600808,4380_1172 -4380_78041,286,4380_73696,Crobally Heights,101072-00010-1,0,4380_7778208_3600808,4380_1172 -4380_78041,291,4380_73697,Crobally Heights,99658-00013-1,0,4380_7778208_3600801,4380_1173 -4380_78041,289,4380_73698,Crobally Heights,101074-00014-1,0,4380_7778208_3600808,4380_1172 -4380_78041,287,4380_73699,Crobally Heights,101068-00012-1,0,4380_7778208_3600808,4380_1172 -4380_77953,286,4380_7370,Dublin,6066-00010-1,1,4380_7778208_1090116,4380_110 -4380_78041,292,4380_73700,Crobally Heights,101073-00016-1,0,4380_7778208_3600808,4380_1172 -4380_78041,290,4380_73701,Crobally Heights,101071-00015-1,0,4380_7778208_3600808,4380_1172 -4380_78041,294,4380_73702,Crobally Heights,101069-00018-1,0,4380_7778208_3600808,4380_1172 -4380_78041,295,4380_73703,Crobally Heights,101075-00019-1,0,4380_7778208_3600808,4380_1172 -4380_78041,293,4380_73704,Crobally Heights,101067-00017-1,0,4380_7778208_3600808,4380_1172 -4380_78041,296,4380_73705,Crobally Heights,99659-00021-1,0,4380_7778208_3600801,4380_1173 -4380_77953,297,4380_7371,Dublin,5516-00008-1,1,4380_7778208_1090104,4380_105 -4380_78041,285,4380_73711,Crobally Heights,100522-00009-1,0,4380_7778208_3600805,4380_1171 -4380_78041,288,4380_73712,Crobally Heights,100518-00011-1,0,4380_7778208_3600805,4380_1171 -4380_78041,286,4380_73713,Crobally Heights,100516-00010-1,0,4380_7778208_3600805,4380_1171 -4380_78041,289,4380_73714,Crobally Heights,100520-00014-1,0,4380_7778208_3600805,4380_1171 -4380_78041,287,4380_73715,Crobally Heights,100514-00012-1,0,4380_7778208_3600805,4380_1171 -4380_78041,292,4380_73716,Crobally Heights,100517-00016-1,0,4380_7778208_3600805,4380_1171 -4380_78041,290,4380_73717,Crobally Heights,100523-00015-1,0,4380_7778208_3600805,4380_1171 -4380_78041,294,4380_73718,Crobally Heights,100515-00018-1,0,4380_7778208_3600805,4380_1171 -4380_78041,295,4380_73719,Crobally Heights,100521-00019-1,0,4380_7778208_3600805,4380_1171 -4380_77953,288,4380_7372,Dublin,6068-00011-1,1,4380_7778208_1090116,4380_110 -4380_78041,293,4380_73720,Crobally Heights,100519-00017-1,0,4380_7778208_3600805,4380_1171 -4380_78041,297,4380_73722,Crobally Heights,100524-00008-1,0,4380_7778208_3600805,4380_1171 -4380_78041,291,4380_73724,Crobally Heights,100271-00013-1,0,4380_7778208_3600804,4380_1172 -4380_78041,296,4380_73725,Crobally Heights,100272-00021-1,0,4380_7778208_3600804,4380_1172 -4380_77953,287,4380_7373,Dublin,6070-00012-1,1,4380_7778208_1090116,4380_110 -4380_78041,285,4380_73731,Crobally Heights,99665-00009-1,0,4380_7778208_3600801,4380_1171 -4380_78041,288,4380_73732,Crobally Heights,99661-00011-1,0,4380_7778208_3600801,4380_1171 -4380_78041,286,4380_73733,Crobally Heights,99671-00010-1,0,4380_7778208_3600801,4380_1171 -4380_78041,289,4380_73734,Crobally Heights,99663-00014-1,0,4380_7778208_3600801,4380_1171 -4380_78041,287,4380_73735,Crobally Heights,99667-00012-1,0,4380_7778208_3600801,4380_1171 -4380_78041,292,4380_73736,Crobally Heights,99672-00016-1,0,4380_7778208_3600801,4380_1171 -4380_78041,290,4380_73737,Crobally Heights,99666-00015-1,0,4380_7778208_3600801,4380_1171 -4380_78041,294,4380_73738,Crobally Heights,99668-00018-1,0,4380_7778208_3600801,4380_1171 -4380_78041,295,4380_73739,Crobally Heights,99664-00019-1,0,4380_7778208_3600801,4380_1171 -4380_77953,289,4380_7374,Dublin,6062-00014-1,1,4380_7778208_1090116,4380_110 -4380_78041,293,4380_73740,Crobally Heights,99662-00017-1,0,4380_7778208_3600801,4380_1171 -4380_78041,297,4380_73747,Crobally Heights,100093-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_73748,Crobally Heights,99890-00009-1,0,4380_7778208_3600802,4380_1172 -4380_77953,290,4380_7375,Dublin,55270-00015-1,1,4380_7778208_1090116,4380_110 -4380_78041,288,4380_73750,Crobally Heights,99888-00011-1,0,4380_7778208_3600802,4380_1172 -4380_78041,286,4380_73751,Crobally Heights,99894-00010-1,0,4380_7778208_3600802,4380_1172 -4380_78041,291,4380_73752,Crobally Heights,99892-00013-1,0,4380_7778208_3600802,4380_1171 -4380_78041,289,4380_73753,Crobally Heights,99898-00014-1,0,4380_7778208_3600802,4380_1172 -4380_78041,287,4380_73754,Crobally Heights,99896-00012-1,0,4380_7778208_3600802,4380_1172 -4380_78041,292,4380_73755,Crobally Heights,99895-00016-1,0,4380_7778208_3600802,4380_1172 -4380_78041,290,4380_73756,Crobally Heights,99891-00015-1,0,4380_7778208_3600802,4380_1172 -4380_78041,294,4380_73757,Crobally Heights,99897-00018-1,0,4380_7778208_3600802,4380_1172 -4380_78041,295,4380_73758,Crobally Heights,99899-00019-1,0,4380_7778208_3600802,4380_1172 -4380_78041,293,4380_73759,Crobally Heights,99889-00017-1,0,4380_7778208_3600802,4380_1172 -4380_77953,291,4380_7376,Dublin,5800-00013-1,1,4380_7778208_1090109,4380_113 -4380_78041,296,4380_73760,Crobally Heights,99893-00021-1,0,4380_7778208_3600802,4380_1171 -4380_78041,285,4380_73766,Crobally Heights,100102-00009-1,0,4380_7778208_3600803,4380_1171 -4380_78041,288,4380_73768,Crobally Heights,100098-00011-1,0,4380_7778208_3600803,4380_1171 -4380_78041,286,4380_73769,Crobally Heights,100100-00010-1,0,4380_7778208_3600803,4380_1171 -4380_77953,292,4380_7377,Dublin,55273-00016-1,1,4380_7778208_1090116,4380_110 -4380_78041,291,4380_73770,Crobally Heights,99673-00013-1,0,4380_7778208_3600801,4380_1172 -4380_78041,289,4380_73771,Crobally Heights,100104-00014-1,0,4380_7778208_3600803,4380_1171 -4380_78041,287,4380_73772,Crobally Heights,100094-00012-1,0,4380_7778208_3600803,4380_1171 -4380_78041,292,4380_73773,Crobally Heights,100101-00016-1,0,4380_7778208_3600803,4380_1171 -4380_78041,290,4380_73774,Crobally Heights,100103-00015-1,0,4380_7778208_3600803,4380_1171 -4380_78041,294,4380_73775,Crobally Heights,100095-00018-1,0,4380_7778208_3600803,4380_1171 -4380_78041,295,4380_73776,Crobally Heights,100105-00019-1,0,4380_7778208_3600803,4380_1171 -4380_78041,293,4380_73777,Crobally Heights,100099-00017-1,0,4380_7778208_3600803,4380_1171 -4380_78041,296,4380_73778,Crobally Heights,99674-00021-1,0,4380_7778208_3600801,4380_1172 -4380_77953,293,4380_7378,Dublin,55272-00017-1,1,4380_7778208_1090116,4380_110 -4380_78041,297,4380_73780,Crobally Heights,99679-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_73786,Crobally Heights,101092-00009-1,0,4380_7778208_3600808,4380_1171 -4380_78041,288,4380_73788,Crobally Heights,101090-00011-1,0,4380_7778208_3600808,4380_1171 -4380_78041,286,4380_73789,Crobally Heights,101094-00010-1,0,4380_7778208_3600808,4380_1171 -4380_77953,294,4380_7379,Dublin,55269-00018-1,1,4380_7778208_1090116,4380_110 -4380_78041,291,4380_73790,Crobally Heights,100920-00013-1,0,4380_7778208_3600807,4380_1172 -4380_78041,289,4380_73791,Crobally Heights,101086-00014-1,0,4380_7778208_3600808,4380_1171 -4380_78041,287,4380_73792,Crobally Heights,101088-00012-1,0,4380_7778208_3600808,4380_1171 -4380_78041,292,4380_73793,Crobally Heights,101095-00016-1,0,4380_7778208_3600808,4380_1171 -4380_78041,290,4380_73794,Crobally Heights,101093-00015-1,0,4380_7778208_3600808,4380_1171 -4380_78041,294,4380_73795,Crobally Heights,101089-00018-1,0,4380_7778208_3600808,4380_1171 -4380_78041,295,4380_73796,Crobally Heights,101087-00019-1,0,4380_7778208_3600808,4380_1171 -4380_78041,293,4380_73797,Crobally Heights,101091-00017-1,0,4380_7778208_3600808,4380_1171 -4380_78041,296,4380_73798,Crobally Heights,100921-00021-1,0,4380_7778208_3600807,4380_1172 -4380_77953,295,4380_7380,Dublin,55271-00019-1,1,4380_7778208_1090116,4380_110 -4380_78041,297,4380_73805,Crobally Heights,100544-00008-1,0,4380_7778208_3600805,4380_1171 -4380_78041,285,4380_73806,Crobally Heights,100542-00009-1,0,4380_7778208_3600805,4380_1172 -4380_78041,288,4380_73808,Crobally Heights,100538-00011-1,0,4380_7778208_3600805,4380_1172 -4380_78041,286,4380_73809,Crobally Heights,100545-00010-1,0,4380_7778208_3600805,4380_1172 -4380_77953,296,4380_7381,Dublin,55055-00021-1,1,4380_7778208_1090109,4380_113 -4380_78041,291,4380_73810,Crobally Heights,100294-00013-1,0,4380_7778208_3600804,4380_1173 -4380_78041,289,4380_73811,Crobally Heights,100540-00014-1,0,4380_7778208_3600805,4380_1172 -4380_78041,287,4380_73812,Crobally Heights,100547-00012-1,0,4380_7778208_3600805,4380_1172 -4380_78041,292,4380_73813,Crobally Heights,100546-00016-1,0,4380_7778208_3600805,4380_1172 -4380_78041,290,4380_73814,Crobally Heights,100543-00015-1,0,4380_7778208_3600805,4380_1172 -4380_78041,294,4380_73815,Crobally Heights,100548-00018-1,0,4380_7778208_3600805,4380_1172 -4380_78041,295,4380_73816,Crobally Heights,100541-00019-1,0,4380_7778208_3600805,4380_1172 -4380_78041,293,4380_73817,Crobally Heights,100539-00017-1,0,4380_7778208_3600805,4380_1172 -4380_78041,296,4380_73818,Crobally Heights,100295-00021-1,0,4380_7778208_3600804,4380_1173 -4380_78041,297,4380_73825,Crobally Heights,100117-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_73826,Crobally Heights,99689-00009-1,0,4380_7778208_3600801,4380_1172 -4380_78041,288,4380_73828,Crobally Heights,99691-00011-1,0,4380_7778208_3600801,4380_1172 -4380_78041,286,4380_73829,Crobally Heights,99693-00010-1,0,4380_7778208_3600801,4380_1172 -4380_78041,291,4380_73830,Crobally Heights,100782-00013-1,0,4380_7778208_3600806,4380_1173 -4380_78041,289,4380_73831,Crobally Heights,99697-00014-1,0,4380_7778208_3600801,4380_1172 -4380_78041,287,4380_73832,Crobally Heights,99695-00012-1,0,4380_7778208_3600801,4380_1172 -4380_78041,292,4380_73833,Crobally Heights,99694-00016-1,0,4380_7778208_3600801,4380_1172 -4380_78041,290,4380_73834,Crobally Heights,99690-00015-1,0,4380_7778208_3600801,4380_1172 -4380_78041,294,4380_73835,Crobally Heights,99696-00018-1,0,4380_7778208_3600801,4380_1172 -4380_78041,295,4380_73836,Crobally Heights,99698-00019-1,0,4380_7778208_3600801,4380_1172 -4380_78041,293,4380_73837,Crobally Heights,99692-00017-1,0,4380_7778208_3600801,4380_1172 -4380_78041,296,4380_73838,Crobally Heights,100783-00021-1,0,4380_7778208_3600806,4380_1173 -4380_78041,297,4380_73845,Crobally Heights,100924-00008-1,0,4380_7778208_3600807,4380_1171 -4380_78041,285,4380_73846,Crobally Heights,99916-00009-1,0,4380_7778208_3600802,4380_1172 -4380_78041,288,4380_73848,Crobally Heights,99922-00011-1,0,4380_7778208_3600802,4380_1172 -4380_78041,286,4380_73849,Crobally Heights,99914-00010-1,0,4380_7778208_3600802,4380_1172 -4380_78041,291,4380_73850,Crobally Heights,99918-00013-1,0,4380_7778208_3600802,4380_1173 -4380_78041,289,4380_73851,Crobally Heights,99924-00014-1,0,4380_7778208_3600802,4380_1172 -4380_78041,287,4380_73852,Crobally Heights,99920-00012-1,0,4380_7778208_3600802,4380_1172 -4380_78041,292,4380_73853,Crobally Heights,99915-00016-1,0,4380_7778208_3600802,4380_1172 -4380_78041,290,4380_73854,Crobally Heights,99917-00015-1,0,4380_7778208_3600802,4380_1172 -4380_78041,294,4380_73855,Crobally Heights,99921-00018-1,0,4380_7778208_3600802,4380_1172 -4380_78041,295,4380_73856,Crobally Heights,99925-00019-1,0,4380_7778208_3600802,4380_1172 -4380_78041,293,4380_73857,Crobally Heights,99923-00017-1,0,4380_7778208_3600802,4380_1172 -4380_78041,296,4380_73858,Crobally Heights,99919-00021-1,0,4380_7778208_3600802,4380_1173 -4380_78041,297,4380_73865,Crobally Heights,99701-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_73866,Crobally Heights,100126-00009-1,0,4380_7778208_3600803,4380_1172 -4380_78041,288,4380_73868,Crobally Heights,100122-00011-1,0,4380_7778208_3600803,4380_1172 -4380_78041,286,4380_73869,Crobally Heights,100124-00010-1,0,4380_7778208_3600803,4380_1172 -4380_78041,291,4380_73870,Crobally Heights,99699-00013-1,0,4380_7778208_3600801,4380_1173 -4380_78041,289,4380_73871,Crobally Heights,100128-00014-1,0,4380_7778208_3600803,4380_1172 -4380_78041,287,4380_73872,Crobally Heights,100120-00012-1,0,4380_7778208_3600803,4380_1172 -4380_78041,292,4380_73873,Crobally Heights,100125-00016-1,0,4380_7778208_3600803,4380_1172 -4380_78041,290,4380_73874,Crobally Heights,100127-00015-1,0,4380_7778208_3600803,4380_1172 -4380_78041,294,4380_73875,Crobally Heights,100121-00018-1,0,4380_7778208_3600803,4380_1172 -4380_78041,295,4380_73876,Crobally Heights,100129-00019-1,0,4380_7778208_3600803,4380_1172 -4380_78041,293,4380_73877,Crobally Heights,100123-00017-1,0,4380_7778208_3600803,4380_1172 -4380_78041,296,4380_73878,Crobally Heights,99700-00021-1,0,4380_7778208_3600801,4380_1173 -4380_78041,297,4380_73885,Crobally Heights,100787-00008-1,0,4380_7778208_3600806,4380_1171 -4380_78041,285,4380_73886,Crobally Heights,101114-00009-1,0,4380_7778208_3600808,4380_1172 -4380_78041,288,4380_73888,Crobally Heights,101108-00011-1,0,4380_7778208_3600808,4380_1172 -4380_78041,286,4380_73889,Crobally Heights,101106-00010-1,0,4380_7778208_3600808,4380_1172 -4380_77953,285,4380_7389,Dublin,6102-00009-1,1,4380_7778208_1090118,4380_111 -4380_78041,291,4380_73890,Crobally Heights,100925-00013-1,0,4380_7778208_3600807,4380_1173 -4380_78041,289,4380_73891,Crobally Heights,101110-00014-1,0,4380_7778208_3600808,4380_1172 -4380_78041,287,4380_73892,Crobally Heights,101112-00012-1,0,4380_7778208_3600808,4380_1172 -4380_78041,292,4380_73893,Crobally Heights,101107-00016-1,0,4380_7778208_3600808,4380_1172 -4380_78041,290,4380_73894,Crobally Heights,101115-00015-1,0,4380_7778208_3600808,4380_1172 -4380_78041,294,4380_73895,Crobally Heights,101113-00018-1,0,4380_7778208_3600808,4380_1172 -4380_78041,295,4380_73896,Crobally Heights,101111-00019-1,0,4380_7778208_3600808,4380_1172 -4380_78041,293,4380_73897,Crobally Heights,101109-00017-1,0,4380_7778208_3600808,4380_1172 -4380_78041,296,4380_73898,Crobally Heights,100926-00021-1,0,4380_7778208_3600807,4380_1173 -4380_77953,286,4380_7390,Dublin,6105-00010-1,1,4380_7778208_1090118,4380_111 -4380_78041,297,4380_73905,Crobally Heights,100574-00008-1,0,4380_7778208_3600805,4380_1171 -4380_78041,285,4380_73906,Crobally Heights,100570-00009-1,0,4380_7778208_3600805,4380_1172 -4380_78041,288,4380_73908,Crobally Heights,100572-00011-1,0,4380_7778208_3600805,4380_1172 -4380_78041,286,4380_73909,Crobally Heights,100566-00010-1,0,4380_7778208_3600805,4380_1172 -4380_77953,297,4380_7391,Dublin,6057-00008-1,1,4380_7778208_1090115,4380_104 -4380_78041,291,4380_73910,Crobally Heights,100320-00013-1,0,4380_7778208_3600804,4380_1173 -4380_78041,289,4380_73911,Crobally Heights,100564-00014-1,0,4380_7778208_3600805,4380_1172 -4380_78041,287,4380_73912,Crobally Heights,100568-00012-1,0,4380_7778208_3600805,4380_1172 -4380_78041,292,4380_73913,Crobally Heights,100567-00016-1,0,4380_7778208_3600805,4380_1172 -4380_78041,290,4380_73914,Crobally Heights,100571-00015-1,0,4380_7778208_3600805,4380_1172 -4380_78041,294,4380_73915,Crobally Heights,100569-00018-1,0,4380_7778208_3600805,4380_1172 -4380_78041,295,4380_73916,Crobally Heights,100565-00019-1,0,4380_7778208_3600805,4380_1172 -4380_78041,293,4380_73917,Crobally Heights,100573-00017-1,0,4380_7778208_3600805,4380_1172 -4380_78041,296,4380_73918,Crobally Heights,100321-00021-1,0,4380_7778208_3600804,4380_1173 -4380_77953,288,4380_7392,Dublin,6108-00011-1,1,4380_7778208_1090118,4380_111 -4380_78041,297,4380_73925,Crobally Heights,100143-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_73926,Crobally Heights,99721-00009-1,0,4380_7778208_3600801,4380_1172 -4380_78041,288,4380_73928,Crobally Heights,99723-00011-1,0,4380_7778208_3600801,4380_1172 -4380_78041,286,4380_73929,Crobally Heights,99715-00010-1,0,4380_7778208_3600801,4380_1172 -4380_77953,287,4380_7393,Dublin,6111-00012-1,1,4380_7778208_1090118,4380_111 -4380_78041,291,4380_73930,Crobally Heights,100798-00013-1,0,4380_7778208_3600806,4380_1173 -4380_78041,289,4380_73931,Crobally Heights,99717-00014-1,0,4380_7778208_3600801,4380_1172 -4380_78041,287,4380_73932,Crobally Heights,99719-00012-1,0,4380_7778208_3600801,4380_1172 -4380_78041,292,4380_73933,Crobally Heights,99716-00016-1,0,4380_7778208_3600801,4380_1172 -4380_78041,290,4380_73934,Crobally Heights,99722-00015-1,0,4380_7778208_3600801,4380_1172 -4380_78041,294,4380_73935,Crobally Heights,99720-00018-1,0,4380_7778208_3600801,4380_1172 -4380_78041,295,4380_73936,Crobally Heights,99718-00019-1,0,4380_7778208_3600801,4380_1172 -4380_78041,293,4380_73937,Crobally Heights,99724-00017-1,0,4380_7778208_3600801,4380_1172 -4380_78041,296,4380_73938,Crobally Heights,100799-00021-1,0,4380_7778208_3600806,4380_1173 -4380_77953,289,4380_7394,Dublin,6099-00014-1,1,4380_7778208_1090118,4380_111 -4380_78041,297,4380_73945,Crobally Heights,100930-00008-1,0,4380_7778208_3600807,4380_1171 -4380_78041,285,4380_73946,Crobally Heights,99941-00009-1,0,4380_7778208_3600802,4380_1172 -4380_78041,288,4380_73948,Crobally Heights,99945-00011-1,0,4380_7778208_3600802,4380_1172 -4380_78041,286,4380_73949,Crobally Heights,99947-00010-1,0,4380_7778208_3600802,4380_1172 -4380_77953,290,4380_7395,Dublin,55307-00015-1,1,4380_7778208_1090118,4380_111 -4380_78041,291,4380_73950,Crobally Heights,99943-00013-1,0,4380_7778208_3600802,4380_1173 -4380_78041,289,4380_73951,Crobally Heights,99939-00014-1,0,4380_7778208_3600802,4380_1172 -4380_78041,287,4380_73952,Crobally Heights,99949-00012-1,0,4380_7778208_3600802,4380_1172 -4380_78041,292,4380_73953,Crobally Heights,99948-00016-1,0,4380_7778208_3600802,4380_1172 -4380_78041,290,4380_73954,Crobally Heights,99942-00015-1,0,4380_7778208_3600802,4380_1172 -4380_78041,294,4380_73955,Crobally Heights,99950-00018-1,0,4380_7778208_3600802,4380_1172 -4380_78041,295,4380_73956,Crobally Heights,99940-00019-1,0,4380_7778208_3600802,4380_1172 -4380_78041,293,4380_73957,Crobally Heights,99946-00017-1,0,4380_7778208_3600802,4380_1172 -4380_78041,296,4380_73958,Crobally Heights,99944-00021-1,0,4380_7778208_3600802,4380_1173 -4380_77953,291,4380_7396,Dublin,5752-00013-1,1,4380_7778208_1090108,4380_114 -4380_78041,297,4380_73965,Crobally Heights,99725-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_73966,Crobally Heights,100152-00009-1,0,4380_7778208_3600803,4380_1172 -4380_78041,288,4380_73968,Crobally Heights,100150-00011-1,0,4380_7778208_3600803,4380_1172 -4380_78041,286,4380_73969,Crobally Heights,100154-00010-1,0,4380_7778208_3600803,4380_1172 -4380_77953,292,4380_7397,Dublin,55306-00016-1,1,4380_7778208_1090118,4380_111 -4380_78041,291,4380_73970,Crobally Heights,99726-00013-1,0,4380_7778208_3600801,4380_1173 -4380_78041,289,4380_73971,Crobally Heights,100148-00014-1,0,4380_7778208_3600803,4380_1172 -4380_78041,287,4380_73972,Crobally Heights,100146-00012-1,0,4380_7778208_3600803,4380_1172 -4380_78041,292,4380_73973,Crobally Heights,100155-00016-1,0,4380_7778208_3600803,4380_1172 -4380_78041,290,4380_73974,Crobally Heights,100153-00015-1,0,4380_7778208_3600803,4380_1172 -4380_78041,294,4380_73975,Crobally Heights,100147-00018-1,0,4380_7778208_3600803,4380_1172 -4380_78041,295,4380_73976,Crobally Heights,100149-00019-1,0,4380_7778208_3600803,4380_1172 -4380_78041,293,4380_73977,Crobally Heights,100151-00017-1,0,4380_7778208_3600803,4380_1172 -4380_78041,296,4380_73978,Crobally Heights,99727-00021-1,0,4380_7778208_3600801,4380_1173 -4380_77953,293,4380_7398,Dublin,55304-00017-1,1,4380_7778208_1090118,4380_111 -4380_78041,297,4380_73985,Crobally Heights,100813-00008-1,0,4380_7778208_3600806,4380_1171 -4380_78041,285,4380_73986,Crobally Heights,101134-00009-1,0,4380_7778208_3600808,4380_1172 -4380_78041,288,4380_73988,Crobally Heights,101126-00011-1,0,4380_7778208_3600808,4380_1172 -4380_78041,286,4380_73989,Crobally Heights,101130-00010-1,0,4380_7778208_3600808,4380_1172 -4380_77953,294,4380_7399,Dublin,55305-00018-1,1,4380_7778208_1090118,4380_111 -4380_78041,291,4380_73990,Crobally Heights,100931-00013-1,0,4380_7778208_3600807,4380_1173 -4380_78041,289,4380_73991,Crobally Heights,101128-00014-1,0,4380_7778208_3600808,4380_1172 -4380_78041,287,4380_73992,Crobally Heights,101132-00012-1,0,4380_7778208_3600808,4380_1172 -4380_78041,292,4380_73993,Crobally Heights,101131-00016-1,0,4380_7778208_3600808,4380_1172 -4380_78041,290,4380_73994,Crobally Heights,101135-00015-1,0,4380_7778208_3600808,4380_1172 -4380_78041,294,4380_73995,Crobally Heights,101133-00018-1,0,4380_7778208_3600808,4380_1172 -4380_78041,295,4380_73996,Crobally Heights,101129-00019-1,0,4380_7778208_3600808,4380_1172 -4380_78041,293,4380_73997,Crobally Heights,101127-00017-1,0,4380_7778208_3600808,4380_1172 -4380_78041,296,4380_73998,Crobally Heights,100932-00021-1,0,4380_7778208_3600807,4380_1173 -4380_77946,286,4380_74,Dundalk,50377-00010-1,0,4380_7778208_1000914,4380_1 -4380_77953,295,4380_7400,Dublin,55308-00019-1,1,4380_7778208_1090118,4380_111 -4380_78041,297,4380_74005,Crobally Heights,100592-00008-1,0,4380_7778208_3600805,4380_1171 -4380_78041,285,4380_74006,Crobally Heights,100590-00009-1,0,4380_7778208_3600805,4380_1172 -4380_78041,288,4380_74008,Crobally Heights,100593-00011-1,0,4380_7778208_3600805,4380_1172 -4380_78041,286,4380_74009,Crobally Heights,100595-00010-1,0,4380_7778208_3600805,4380_1172 -4380_77953,296,4380_7401,Dublin,55009-00021-1,1,4380_7778208_1090108,4380_114 -4380_78041,291,4380_74010,Crobally Heights,100345-00013-1,0,4380_7778208_3600804,4380_1173 -4380_78041,289,4380_74011,Crobally Heights,100597-00014-1,0,4380_7778208_3600805,4380_1172 -4380_78041,287,4380_74012,Crobally Heights,100588-00012-1,0,4380_7778208_3600805,4380_1172 -4380_78041,292,4380_74013,Crobally Heights,100596-00016-1,0,4380_7778208_3600805,4380_1172 -4380_78041,290,4380_74014,Crobally Heights,100591-00015-1,0,4380_7778208_3600805,4380_1172 -4380_78041,294,4380_74015,Crobally Heights,100589-00018-1,0,4380_7778208_3600805,4380_1172 -4380_78041,295,4380_74016,Crobally Heights,100598-00019-1,0,4380_7778208_3600805,4380_1172 -4380_78041,293,4380_74017,Crobally Heights,100594-00017-1,0,4380_7778208_3600805,4380_1172 -4380_78041,296,4380_74018,Crobally Heights,100346-00021-1,0,4380_7778208_3600804,4380_1173 -4380_78041,297,4380_74025,Crobally Heights,100169-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_74026,Crobally Heights,99747-00009-1,0,4380_7778208_3600801,4380_1172 -4380_78041,288,4380_74028,Crobally Heights,99743-00011-1,0,4380_7778208_3600801,4380_1172 -4380_78041,286,4380_74029,Crobally Heights,99745-00010-1,0,4380_7778208_3600801,4380_1172 -4380_78041,291,4380_74030,Crobally Heights,100824-00013-1,0,4380_7778208_3600806,4380_1173 -4380_78041,289,4380_74031,Crobally Heights,99741-00014-1,0,4380_7778208_3600801,4380_1172 -4380_78041,287,4380_74032,Crobally Heights,99749-00012-1,0,4380_7778208_3600801,4380_1172 -4380_78041,292,4380_74033,Crobally Heights,99746-00016-1,0,4380_7778208_3600801,4380_1172 -4380_78041,290,4380_74034,Crobally Heights,99748-00015-1,0,4380_7778208_3600801,4380_1172 -4380_78041,294,4380_74035,Crobally Heights,99750-00018-1,0,4380_7778208_3600801,4380_1172 -4380_78041,295,4380_74036,Crobally Heights,99742-00019-1,0,4380_7778208_3600801,4380_1172 -4380_78041,293,4380_74037,Crobally Heights,99744-00017-1,0,4380_7778208_3600801,4380_1172 -4380_78041,296,4380_74038,Crobally Heights,100825-00021-1,0,4380_7778208_3600806,4380_1173 -4380_78041,297,4380_74045,Crobally Heights,100936-00008-1,0,4380_7778208_3600807,4380_1171 -4380_78041,285,4380_74046,Crobally Heights,99975-00009-1,0,4380_7778208_3600802,4380_1172 -4380_78041,288,4380_74048,Crobally Heights,99965-00011-1,0,4380_7778208_3600802,4380_1172 -4380_78041,286,4380_74049,Crobally Heights,99973-00010-1,0,4380_7778208_3600802,4380_1172 -4380_78041,291,4380_74050,Crobally Heights,99969-00013-1,0,4380_7778208_3600802,4380_1173 -4380_78041,289,4380_74051,Crobally Heights,99971-00014-1,0,4380_7778208_3600802,4380_1172 -4380_78041,287,4380_74052,Crobally Heights,99967-00012-1,0,4380_7778208_3600802,4380_1172 -4380_78041,292,4380_74053,Crobally Heights,99974-00016-1,0,4380_7778208_3600802,4380_1172 -4380_78041,290,4380_74054,Crobally Heights,99976-00015-1,0,4380_7778208_3600802,4380_1172 -4380_78041,294,4380_74055,Crobally Heights,99968-00018-1,0,4380_7778208_3600802,4380_1172 -4380_78041,295,4380_74056,Crobally Heights,99972-00019-1,0,4380_7778208_3600802,4380_1172 -4380_78041,293,4380_74057,Crobally Heights,99966-00017-1,0,4380_7778208_3600802,4380_1172 -4380_78041,296,4380_74058,Crobally Heights,99970-00021-1,0,4380_7778208_3600802,4380_1173 -4380_78041,297,4380_74065,Crobally Heights,99751-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_74066,Crobally Heights,100174-00009-1,0,4380_7778208_3600803,4380_1172 -4380_78041,288,4380_74068,Crobally Heights,100176-00011-1,0,4380_7778208_3600803,4380_1172 -4380_78041,286,4380_74069,Crobally Heights,100178-00010-1,0,4380_7778208_3600803,4380_1172 -4380_78041,291,4380_74070,Crobally Heights,99752-00013-1,0,4380_7778208_3600801,4380_1173 -4380_78041,289,4380_74071,Crobally Heights,100172-00014-1,0,4380_7778208_3600803,4380_1172 -4380_78041,287,4380_74072,Crobally Heights,100170-00012-1,0,4380_7778208_3600803,4380_1172 -4380_78041,292,4380_74073,Crobally Heights,100179-00016-1,0,4380_7778208_3600803,4380_1172 -4380_78041,290,4380_74074,Crobally Heights,100175-00015-1,0,4380_7778208_3600803,4380_1172 -4380_78041,294,4380_74075,Crobally Heights,100171-00018-1,0,4380_7778208_3600803,4380_1172 -4380_78041,295,4380_74076,Crobally Heights,100173-00019-1,0,4380_7778208_3600803,4380_1172 -4380_78041,293,4380_74077,Crobally Heights,100177-00017-1,0,4380_7778208_3600803,4380_1172 -4380_78041,296,4380_74078,Crobally Heights,99753-00021-1,0,4380_7778208_3600801,4380_1173 -4380_78041,297,4380_74085,Crobally Heights,100839-00008-1,0,4380_7778208_3600806,4380_1171 -4380_78041,285,4380_74086,Crobally Heights,101146-00009-1,0,4380_7778208_3600808,4380_1172 -4380_78041,288,4380_74088,Crobally Heights,101150-00011-1,0,4380_7778208_3600808,4380_1172 -4380_78041,286,4380_74089,Crobally Heights,101152-00010-1,0,4380_7778208_3600808,4380_1172 -4380_77953,285,4380_7409,Dublin,6030-00009-1,1,4380_7778208_1090115,4380_110 -4380_78041,291,4380_74090,Crobally Heights,100947-00013-1,0,4380_7778208_3600807,4380_1173 -4380_78041,289,4380_74091,Crobally Heights,101154-00014-1,0,4380_7778208_3600808,4380_1172 -4380_78041,287,4380_74092,Crobally Heights,101148-00012-1,0,4380_7778208_3600808,4380_1172 -4380_78041,292,4380_74093,Crobally Heights,101153-00016-1,0,4380_7778208_3600808,4380_1172 -4380_78041,290,4380_74094,Crobally Heights,101147-00015-1,0,4380_7778208_3600808,4380_1172 -4380_78041,294,4380_74095,Crobally Heights,101149-00018-1,0,4380_7778208_3600808,4380_1172 -4380_78041,295,4380_74096,Crobally Heights,101155-00019-1,0,4380_7778208_3600808,4380_1172 -4380_78041,293,4380_74097,Crobally Heights,101151-00017-1,0,4380_7778208_3600808,4380_1172 -4380_78041,296,4380_74098,Crobally Heights,100948-00021-1,0,4380_7778208_3600807,4380_1173 -4380_77953,286,4380_7410,Dublin,6035-00010-1,1,4380_7778208_1090115,4380_110 -4380_78041,297,4380_74105,Crobally Heights,100614-00008-1,0,4380_7778208_3600805,4380_1171 -4380_78041,285,4380_74106,Crobally Heights,100956-00009-1,0,4380_7778208_3600807,4380_1172 -4380_78041,288,4380_74108,Crobally Heights,100952-00011-1,0,4380_7778208_3600807,4380_1172 -4380_78041,286,4380_74109,Crobally Heights,100958-00010-1,0,4380_7778208_3600807,4380_1172 -4380_77953,297,4380_7411,Dublin,5638-00008-1,1,4380_7778208_1090106,4380_105 -4380_78041,291,4380_74110,Crobally Heights,100361-00013-1,0,4380_7778208_3600804,4380_1173 -4380_78041,289,4380_74111,Crobally Heights,100954-00014-1,0,4380_7778208_3600807,4380_1172 -4380_78041,287,4380_74112,Crobally Heights,100950-00012-1,0,4380_7778208_3600807,4380_1172 -4380_78041,292,4380_74113,Crobally Heights,100959-00016-1,0,4380_7778208_3600807,4380_1172 -4380_78041,290,4380_74114,Crobally Heights,100957-00015-1,0,4380_7778208_3600807,4380_1172 -4380_78041,294,4380_74115,Crobally Heights,100951-00018-1,0,4380_7778208_3600807,4380_1172 -4380_78041,295,4380_74116,Crobally Heights,100955-00019-1,0,4380_7778208_3600807,4380_1172 -4380_78041,293,4380_74117,Crobally Heights,100953-00017-1,0,4380_7778208_3600807,4380_1172 -4380_78041,296,4380_74118,Crobally Heights,100362-00021-1,0,4380_7778208_3600804,4380_1173 -4380_77953,288,4380_7412,Dublin,6040-00011-1,1,4380_7778208_1090115,4380_110 -4380_78041,297,4380_74125,Crobally Heights,100185-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_74126,Crobally Heights,100615-00009-1,0,4380_7778208_3600805,4380_1172 -4380_78041,288,4380_74128,Crobally Heights,100623-00011-1,0,4380_7778208_3600805,4380_1172 -4380_78041,286,4380_74129,Crobally Heights,100619-00010-1,0,4380_7778208_3600805,4380_1172 -4380_77953,287,4380_7413,Dublin,6045-00012-1,1,4380_7778208_1090115,4380_110 -4380_78041,291,4380_74130,Crobally Heights,100840-00013-1,0,4380_7778208_3600806,4380_1173 -4380_78041,289,4380_74131,Crobally Heights,100617-00014-1,0,4380_7778208_3600805,4380_1172 -4380_78041,287,4380_74132,Crobally Heights,100621-00012-1,0,4380_7778208_3600805,4380_1172 -4380_78041,292,4380_74133,Crobally Heights,100620-00016-1,0,4380_7778208_3600805,4380_1172 -4380_78041,290,4380_74134,Crobally Heights,100616-00015-1,0,4380_7778208_3600805,4380_1172 -4380_78041,294,4380_74135,Crobally Heights,100622-00018-1,0,4380_7778208_3600805,4380_1172 -4380_78041,295,4380_74136,Crobally Heights,100618-00019-1,0,4380_7778208_3600805,4380_1172 -4380_78041,293,4380_74137,Crobally Heights,100624-00017-1,0,4380_7778208_3600805,4380_1172 -4380_78041,296,4380_74138,Crobally Heights,100841-00021-1,0,4380_7778208_3600806,4380_1173 -4380_77953,289,4380_7414,Dublin,6025-00014-1,1,4380_7778208_1090115,4380_110 -4380_78041,297,4380_74145,Crobally Heights,100962-00008-1,0,4380_7778208_3600807,4380_1171 -4380_78041,285,4380_74146,Crobally Heights,99773-00009-1,0,4380_7778208_3600801,4380_1172 -4380_78041,288,4380_74148,Crobally Heights,99769-00011-1,0,4380_7778208_3600801,4380_1172 -4380_78041,286,4380_74149,Crobally Heights,99775-00010-1,0,4380_7778208_3600801,4380_1172 -4380_77953,290,4380_7415,Dublin,55245-00015-1,1,4380_7778208_1090115,4380_110 -4380_78041,291,4380_74150,Crobally Heights,99991-00013-1,0,4380_7778208_3600802,4380_1173 -4380_78041,289,4380_74151,Crobally Heights,99767-00014-1,0,4380_7778208_3600801,4380_1172 -4380_78041,287,4380_74152,Crobally Heights,99771-00012-1,0,4380_7778208_3600801,4380_1172 -4380_78041,292,4380_74153,Crobally Heights,99776-00016-1,0,4380_7778208_3600801,4380_1172 -4380_78041,290,4380_74154,Crobally Heights,99774-00015-1,0,4380_7778208_3600801,4380_1172 -4380_78041,294,4380_74155,Crobally Heights,99772-00018-1,0,4380_7778208_3600801,4380_1172 -4380_78041,295,4380_74156,Crobally Heights,99768-00019-1,0,4380_7778208_3600801,4380_1172 -4380_78041,293,4380_74157,Crobally Heights,99770-00017-1,0,4380_7778208_3600801,4380_1172 -4380_78041,296,4380_74158,Crobally Heights,99992-00021-1,0,4380_7778208_3600802,4380_1173 -4380_77953,291,4380_7416,Dublin,5283-00013-1,1,4380_7778208_1090101,4380_113 -4380_78041,297,4380_74165,Crobally Heights,99779-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_74166,Crobally Heights,100001-00009-1,0,4380_7778208_3600802,4380_1172 -4380_78041,288,4380_74168,Crobally Heights,99995-00011-1,0,4380_7778208_3600802,4380_1172 -4380_78041,286,4380_74169,Crobally Heights,99999-00010-1,0,4380_7778208_3600802,4380_1172 -4380_77953,292,4380_7417,Dublin,55246-00016-1,1,4380_7778208_1090115,4380_110 -4380_78041,291,4380_74170,Crobally Heights,99777-00013-1,0,4380_7778208_3600801,4380_1173 -4380_78041,289,4380_74171,Crobally Heights,99993-00014-1,0,4380_7778208_3600802,4380_1172 -4380_78041,287,4380_74172,Crobally Heights,99997-00012-1,0,4380_7778208_3600802,4380_1172 -4380_78041,292,4380_74173,Crobally Heights,100000-00016-1,0,4380_7778208_3600802,4380_1172 -4380_78041,290,4380_74174,Crobally Heights,100002-00015-1,0,4380_7778208_3600802,4380_1172 -4380_78041,294,4380_74175,Crobally Heights,99998-00018-1,0,4380_7778208_3600802,4380_1172 -4380_78041,295,4380_74176,Crobally Heights,99994-00019-1,0,4380_7778208_3600802,4380_1172 -4380_78041,293,4380_74177,Crobally Heights,99996-00017-1,0,4380_7778208_3600802,4380_1172 -4380_78041,296,4380_74178,Crobally Heights,99778-00021-1,0,4380_7778208_3600801,4380_1173 -4380_77953,293,4380_7418,Dublin,55242-00017-1,1,4380_7778208_1090115,4380_110 -4380_78041,297,4380_74185,Crobally Heights,100859-00008-1,0,4380_7778208_3600806,4380_1171 -4380_78041,285,4380_74186,Crobally Heights,100205-00009-1,0,4380_7778208_3600803,4380_1172 -4380_78041,288,4380_74188,Crobally Heights,100199-00011-1,0,4380_7778208_3600803,4380_1172 -4380_78041,286,4380_74189,Crobally Heights,100201-00010-1,0,4380_7778208_3600803,4380_1172 -4380_77953,294,4380_7419,Dublin,55243-00018-1,1,4380_7778208_1090115,4380_110 -4380_78041,291,4380_74190,Crobally Heights,100963-00013-1,0,4380_7778208_3600807,4380_1173 -4380_78041,289,4380_74191,Crobally Heights,100203-00014-1,0,4380_7778208_3600803,4380_1172 -4380_78041,287,4380_74192,Crobally Heights,100197-00012-1,0,4380_7778208_3600803,4380_1172 -4380_78041,292,4380_74193,Crobally Heights,100202-00016-1,0,4380_7778208_3600803,4380_1172 -4380_78041,290,4380_74194,Crobally Heights,100206-00015-1,0,4380_7778208_3600803,4380_1172 -4380_78041,294,4380_74195,Crobally Heights,100198-00018-1,0,4380_7778208_3600803,4380_1172 -4380_78041,295,4380_74196,Crobally Heights,100204-00019-1,0,4380_7778208_3600803,4380_1172 -4380_78041,293,4380_74197,Crobally Heights,100200-00017-1,0,4380_7778208_3600803,4380_1172 -4380_78041,296,4380_74198,Crobally Heights,100964-00021-1,0,4380_7778208_3600807,4380_1173 -4380_77953,295,4380_7420,Dublin,55244-00019-1,1,4380_7778208_1090115,4380_110 -4380_78041,297,4380_74205,Crobally Heights,100640-00008-1,0,4380_7778208_3600805,4380_1171 -4380_78041,285,4380_74206,Crobally Heights,100968-00009-1,0,4380_7778208_3600807,4380_1172 -4380_78041,288,4380_74208,Crobally Heights,100972-00011-1,0,4380_7778208_3600807,4380_1172 -4380_78041,286,4380_74209,Crobally Heights,100966-00010-1,0,4380_7778208_3600807,4380_1172 -4380_77953,296,4380_7421,Dublin,54653-00021-1,1,4380_7778208_1090101,4380_113 -4380_78041,291,4380_74210,Crobally Heights,100387-00013-1,0,4380_7778208_3600804,4380_1173 -4380_78041,289,4380_74211,Crobally Heights,100970-00014-1,0,4380_7778208_3600807,4380_1172 -4380_78041,287,4380_74212,Crobally Heights,100974-00012-1,0,4380_7778208_3600807,4380_1172 -4380_78041,292,4380_74213,Crobally Heights,100967-00016-1,0,4380_7778208_3600807,4380_1172 -4380_78041,290,4380_74214,Crobally Heights,100969-00015-1,0,4380_7778208_3600807,4380_1172 -4380_78041,294,4380_74215,Crobally Heights,100975-00018-1,0,4380_7778208_3600807,4380_1172 -4380_78041,295,4380_74216,Crobally Heights,100971-00019-1,0,4380_7778208_3600807,4380_1172 -4380_78041,293,4380_74217,Crobally Heights,100973-00017-1,0,4380_7778208_3600807,4380_1172 -4380_78041,296,4380_74218,Crobally Heights,100388-00021-1,0,4380_7778208_3600804,4380_1173 -4380_78041,297,4380_74225,Crobally Heights,100209-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_74226,Crobally Heights,101174-00009-1,0,4380_7778208_3600808,4380_1172 -4380_78041,288,4380_74228,Crobally Heights,101168-00011-1,0,4380_7778208_3600808,4380_1172 -4380_78041,286,4380_74229,Crobally Heights,101172-00010-1,0,4380_7778208_3600808,4380_1172 -4380_78041,291,4380_74230,Crobally Heights,100866-00013-1,0,4380_7778208_3600806,4380_1173 -4380_78041,289,4380_74231,Crobally Heights,101170-00014-1,0,4380_7778208_3600808,4380_1172 -4380_78041,287,4380_74232,Crobally Heights,101166-00012-1,0,4380_7778208_3600808,4380_1172 -4380_78041,292,4380_74233,Crobally Heights,101173-00016-1,0,4380_7778208_3600808,4380_1172 -4380_78041,290,4380_74234,Crobally Heights,101175-00015-1,0,4380_7778208_3600808,4380_1172 -4380_78041,294,4380_74235,Crobally Heights,101167-00018-1,0,4380_7778208_3600808,4380_1172 -4380_78041,295,4380_74236,Crobally Heights,101171-00019-1,0,4380_7778208_3600808,4380_1172 -4380_78041,293,4380_74237,Crobally Heights,101169-00017-1,0,4380_7778208_3600808,4380_1172 -4380_78041,296,4380_74238,Crobally Heights,100867-00021-1,0,4380_7778208_3600806,4380_1173 -4380_78041,297,4380_74245,Crobally Heights,100978-00008-1,0,4380_7778208_3600807,4380_1171 -4380_78041,285,4380_74246,Crobally Heights,100647-00009-1,0,4380_7778208_3600805,4380_1172 -4380_78041,288,4380_74248,Crobally Heights,100641-00011-1,0,4380_7778208_3600805,4380_1172 -4380_78041,286,4380_74249,Crobally Heights,100645-00010-1,0,4380_7778208_3600805,4380_1172 -4380_78041,291,4380_74250,Crobally Heights,100017-00013-1,0,4380_7778208_3600802,4380_1173 -4380_78041,289,4380_74251,Crobally Heights,100643-00014-1,0,4380_7778208_3600805,4380_1172 -4380_78041,287,4380_74252,Crobally Heights,100649-00012-1,0,4380_7778208_3600805,4380_1172 -4380_78041,292,4380_74253,Crobally Heights,100646-00016-1,0,4380_7778208_3600805,4380_1172 -4380_78041,290,4380_74254,Crobally Heights,100648-00015-1,0,4380_7778208_3600805,4380_1172 -4380_78041,294,4380_74255,Crobally Heights,100650-00018-1,0,4380_7778208_3600805,4380_1172 -4380_78041,295,4380_74256,Crobally Heights,100644-00019-1,0,4380_7778208_3600805,4380_1172 -4380_78041,293,4380_74257,Crobally Heights,100642-00017-1,0,4380_7778208_3600805,4380_1172 -4380_78041,296,4380_74258,Crobally Heights,100018-00021-1,0,4380_7778208_3600802,4380_1173 -4380_78041,297,4380_74265,Crobally Heights,99805-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_74266,Crobally Heights,99793-00009-1,0,4380_7778208_3600801,4380_1172 -4380_78041,288,4380_74268,Crobally Heights,99795-00011-1,0,4380_7778208_3600801,4380_1172 -4380_78041,286,4380_74269,Crobally Heights,99797-00010-1,0,4380_7778208_3600801,4380_1172 -4380_78041,291,4380_74270,Crobally Heights,99799-00013-1,0,4380_7778208_3600801,4380_1173 -4380_78041,289,4380_74271,Crobally Heights,99803-00014-1,0,4380_7778208_3600801,4380_1172 -4380_78041,287,4380_74272,Crobally Heights,99801-00012-1,0,4380_7778208_3600801,4380_1172 -4380_78041,292,4380_74273,Crobally Heights,99798-00016-1,0,4380_7778208_3600801,4380_1172 -4380_78041,290,4380_74274,Crobally Heights,99794-00015-1,0,4380_7778208_3600801,4380_1172 -4380_78041,294,4380_74275,Crobally Heights,99802-00018-1,0,4380_7778208_3600801,4380_1172 -4380_78041,295,4380_74276,Crobally Heights,99804-00019-1,0,4380_7778208_3600801,4380_1172 -4380_78041,293,4380_74277,Crobally Heights,99796-00017-1,0,4380_7778208_3600801,4380_1172 -4380_78041,296,4380_74278,Crobally Heights,99800-00021-1,0,4380_7778208_3600801,4380_1173 -4380_78041,297,4380_74285,Crobally Heights,100881-00008-1,0,4380_7778208_3600806,4380_1171 -4380_78041,285,4380_74286,Crobally Heights,100025-00009-1,0,4380_7778208_3600802,4380_1172 -4380_78041,288,4380_74288,Crobally Heights,100023-00011-1,0,4380_7778208_3600802,4380_1172 -4380_78041,286,4380_74289,Crobally Heights,100027-00010-1,0,4380_7778208_3600802,4380_1172 -4380_77953,285,4380_7429,Dublin,5597-00009-1,1,4380_7778208_1090106,4380_110 -4380_78041,291,4380_74290,Crobally Heights,100989-00013-1,0,4380_7778208_3600807,4380_1173 -4380_78041,289,4380_74291,Crobally Heights,100019-00014-1,0,4380_7778208_3600802,4380_1172 -4380_78041,287,4380_74292,Crobally Heights,100021-00012-1,0,4380_7778208_3600802,4380_1172 -4380_78041,292,4380_74293,Crobally Heights,100028-00016-1,0,4380_7778208_3600802,4380_1172 -4380_78041,290,4380_74294,Crobally Heights,100026-00015-1,0,4380_7778208_3600802,4380_1172 -4380_78041,294,4380_74295,Crobally Heights,100022-00018-1,0,4380_7778208_3600802,4380_1172 -4380_78041,295,4380_74296,Crobally Heights,100020-00019-1,0,4380_7778208_3600802,4380_1172 -4380_78041,293,4380_74297,Crobally Heights,100024-00017-1,0,4380_7778208_3600802,4380_1172 -4380_78041,296,4380_74298,Crobally Heights,100990-00021-1,0,4380_7778208_3600807,4380_1173 -4380_78113,285,4380_743,Dundalk,50196-00009-1,0,4380_7778208_1000908,4380_10 -4380_77953,286,4380_7430,Dublin,5605-00010-1,1,4380_7778208_1090106,4380_110 -4380_78041,297,4380_74305,Crobally Heights,100664-00008-1,0,4380_7778208_3600805,4380_1171 -4380_78041,285,4380_74306,Crobally Heights,100402-00009-1,0,4380_7778208_3600804,4380_1172 -4380_78041,288,4380_74308,Crobally Heights,100411-00011-1,0,4380_7778208_3600804,4380_1172 -4380_78041,286,4380_74309,Crobally Heights,100406-00010-1,0,4380_7778208_3600804,4380_1172 -4380_77953,297,4380_7431,Dublin,5706-00008-1,1,4380_7778208_1090107,4380_105 -4380_78041,291,4380_74310,Crobally Heights,100413-00013-1,0,4380_7778208_3600804,4380_1173 -4380_78041,289,4380_74311,Crobally Heights,100404-00014-1,0,4380_7778208_3600804,4380_1172 -4380_78041,287,4380_74312,Crobally Heights,100408-00012-1,0,4380_7778208_3600804,4380_1172 -4380_78041,292,4380_74313,Crobally Heights,100407-00016-1,0,4380_7778208_3600804,4380_1172 -4380_78041,290,4380_74314,Crobally Heights,100403-00015-1,0,4380_7778208_3600804,4380_1172 -4380_78041,294,4380_74315,Crobally Heights,100409-00018-1,0,4380_7778208_3600804,4380_1172 -4380_78041,295,4380_74316,Crobally Heights,100405-00019-1,0,4380_7778208_3600804,4380_1172 -4380_78041,293,4380_74317,Crobally Heights,100412-00017-1,0,4380_7778208_3600804,4380_1172 -4380_78041,296,4380_74318,Crobally Heights,100414-00021-1,0,4380_7778208_3600804,4380_1173 -4380_77953,288,4380_7432,Dublin,5613-00011-1,1,4380_7778208_1090106,4380_110 -4380_78041,297,4380_74325,Crobally Heights,100225-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_74326,Crobally Heights,101186-00009-1,0,4380_7778208_3600808,4380_1172 -4380_78041,288,4380_74328,Crobally Heights,101192-00011-1,0,4380_7778208_3600808,4380_1172 -4380_78041,286,4380_74329,Crobally Heights,101190-00010-1,0,4380_7778208_3600808,4380_1172 -4380_77953,287,4380_7433,Dublin,5621-00012-1,1,4380_7778208_1090106,4380_110 -4380_78041,291,4380_74330,Crobally Heights,100892-00013-1,0,4380_7778208_3600806,4380_1173 -4380_78041,289,4380_74331,Crobally Heights,101188-00014-1,0,4380_7778208_3600808,4380_1172 -4380_78041,287,4380_74332,Crobally Heights,101194-00012-1,0,4380_7778208_3600808,4380_1172 -4380_78041,292,4380_74333,Crobally Heights,101191-00016-1,0,4380_7778208_3600808,4380_1172 -4380_78041,290,4380_74334,Crobally Heights,101187-00015-1,0,4380_7778208_3600808,4380_1172 -4380_78041,294,4380_74335,Crobally Heights,101195-00018-1,0,4380_7778208_3600808,4380_1172 -4380_78041,295,4380_74336,Crobally Heights,101189-00019-1,0,4380_7778208_3600808,4380_1172 -4380_78041,293,4380_74337,Crobally Heights,101193-00017-1,0,4380_7778208_3600808,4380_1172 -4380_78041,296,4380_74338,Crobally Heights,100893-00021-1,0,4380_7778208_3600806,4380_1173 -4380_77953,289,4380_7434,Dublin,5589-00014-1,1,4380_7778208_1090106,4380_110 -4380_78041,297,4380_74345,Crobally Heights,101004-00008-1,0,4380_7778208_3600807,4380_1171 -4380_78041,285,4380_74346,Crobally Heights,100673-00009-1,0,4380_7778208_3600805,4380_1172 -4380_78041,288,4380_74348,Crobally Heights,100667-00011-1,0,4380_7778208_3600805,4380_1172 -4380_78041,286,4380_74349,Crobally Heights,100675-00010-1,0,4380_7778208_3600805,4380_1172 -4380_77953,290,4380_7435,Dublin,54926-00015-1,1,4380_7778208_1090106,4380_110 -4380_78041,291,4380_74350,Crobally Heights,100042-00013-1,0,4380_7778208_3600802,4380_1173 -4380_78041,289,4380_74351,Crobally Heights,100671-00014-1,0,4380_7778208_3600805,4380_1172 -4380_78041,287,4380_74352,Crobally Heights,100669-00012-1,0,4380_7778208_3600805,4380_1172 -4380_78041,292,4380_74353,Crobally Heights,100676-00016-1,0,4380_7778208_3600805,4380_1172 -4380_78041,290,4380_74354,Crobally Heights,100674-00015-1,0,4380_7778208_3600805,4380_1172 -4380_78041,294,4380_74355,Crobally Heights,100670-00018-1,0,4380_7778208_3600805,4380_1172 -4380_78041,295,4380_74356,Crobally Heights,100672-00019-1,0,4380_7778208_3600805,4380_1172 -4380_78041,293,4380_74357,Crobally Heights,100668-00017-1,0,4380_7778208_3600805,4380_1172 -4380_78041,296,4380_74358,Crobally Heights,100043-00021-1,0,4380_7778208_3600802,4380_1173 -4380_77953,291,4380_7436,Dublin,5571-00013-1,1,4380_7778208_1090105,4380_113 -4380_78041,297,4380_74365,Crobally Heights,99823-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_74366,Crobally Heights,99819-00009-1,0,4380_7778208_3600801,4380_1172 -4380_78041,288,4380_74368,Crobally Heights,99821-00011-1,0,4380_7778208_3600801,4380_1172 -4380_78041,286,4380_74369,Crobally Heights,99824-00010-1,0,4380_7778208_3600801,4380_1172 -4380_77953,292,4380_7437,Dublin,54927-00016-1,1,4380_7778208_1090106,4380_110 -4380_78041,291,4380_74370,Crobally Heights,99826-00013-1,0,4380_7778208_3600801,4380_1173 -4380_78041,289,4380_74371,Crobally Heights,99830-00014-1,0,4380_7778208_3600801,4380_1172 -4380_78041,287,4380_74372,Crobally Heights,99828-00012-1,0,4380_7778208_3600801,4380_1172 -4380_78041,292,4380_74373,Crobally Heights,99825-00016-1,0,4380_7778208_3600801,4380_1172 -4380_78041,290,4380_74374,Crobally Heights,99820-00015-1,0,4380_7778208_3600801,4380_1172 -4380_78041,294,4380_74375,Crobally Heights,99829-00018-1,0,4380_7778208_3600801,4380_1172 -4380_78041,295,4380_74376,Crobally Heights,99831-00019-1,0,4380_7778208_3600801,4380_1172 -4380_78041,293,4380_74377,Crobally Heights,99822-00017-1,0,4380_7778208_3600801,4380_1172 -4380_78041,296,4380_74378,Crobally Heights,99827-00021-1,0,4380_7778208_3600801,4380_1173 -4380_77953,293,4380_7438,Dublin,54924-00017-1,1,4380_7778208_1090106,4380_110 -4380_78041,297,4380_74385,Crobally Heights,100228-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_74386,Crobally Heights,100432-00009-1,0,4380_7778208_3600804,4380_1172 -4380_78041,288,4380_74388,Crobally Heights,100436-00011-1,0,4380_7778208_3600804,4380_1172 -4380_78041,286,4380_74389,Crobally Heights,100430-00010-1,0,4380_7778208_3600804,4380_1172 -4380_77953,294,4380_7439,Dublin,54925-00018-1,1,4380_7778208_1090106,4380_110 -4380_78041,291,4380_74390,Crobally Heights,100434-00013-1,0,4380_7778208_3600804,4380_1173 -4380_78041,289,4380_74391,Crobally Heights,100428-00014-1,0,4380_7778208_3600804,4380_1172 -4380_78041,287,4380_74392,Crobally Heights,100438-00012-1,0,4380_7778208_3600804,4380_1172 -4380_78041,292,4380_74393,Crobally Heights,100431-00016-1,0,4380_7778208_3600804,4380_1172 -4380_78041,290,4380_74394,Crobally Heights,100433-00015-1,0,4380_7778208_3600804,4380_1172 -4380_78041,294,4380_74395,Crobally Heights,100439-00018-1,0,4380_7778208_3600804,4380_1172 -4380_78041,295,4380_74396,Crobally Heights,100429-00019-1,0,4380_7778208_3600804,4380_1172 -4380_78041,293,4380_74397,Crobally Heights,100437-00017-1,0,4380_7778208_3600804,4380_1172 -4380_78041,296,4380_74398,Crobally Heights,100435-00021-1,0,4380_7778208_3600804,4380_1173 -4380_78113,286,4380_744,Dundalk,50188-00010-1,0,4380_7778208_1000908,4380_10 -4380_77953,295,4380_7440,Dublin,54928-00019-1,1,4380_7778208_1090106,4380_110 -4380_78041,297,4380_74405,Crobally Heights,100905-00008-1,0,4380_7778208_3600806,4380_1171 -4380_78041,285,4380_74406,Crobally Heights,100692-00009-1,0,4380_7778208_3600805,4380_1172 -4380_78041,288,4380_74408,Crobally Heights,100696-00011-1,0,4380_7778208_3600805,4380_1172 -4380_78041,286,4380_74409,Crobally Heights,100694-00010-1,0,4380_7778208_3600805,4380_1172 -4380_77953,296,4380_7441,Dublin,54871-00021-1,1,4380_7778208_1090105,4380_113 -4380_78041,291,4380_74410,Crobally Heights,100047-00013-1,0,4380_7778208_3600802,4380_1173 -4380_78041,289,4380_74411,Crobally Heights,100698-00014-1,0,4380_7778208_3600805,4380_1172 -4380_78041,287,4380_74412,Crobally Heights,100690-00012-1,0,4380_7778208_3600805,4380_1172 -4380_78041,292,4380_74413,Crobally Heights,100695-00016-1,0,4380_7778208_3600805,4380_1172 -4380_78041,290,4380_74414,Crobally Heights,100693-00015-1,0,4380_7778208_3600805,4380_1172 -4380_78041,294,4380_74415,Crobally Heights,100691-00018-1,0,4380_7778208_3600805,4380_1172 -4380_78041,295,4380_74416,Crobally Heights,100699-00019-1,0,4380_7778208_3600805,4380_1172 -4380_78041,293,4380_74417,Crobally Heights,100697-00017-1,0,4380_7778208_3600805,4380_1172 -4380_78041,296,4380_74418,Crobally Heights,100048-00021-1,0,4380_7778208_3600802,4380_1173 -4380_78041,297,4380_74425,Crobally Heights,99845-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_74426,Crobally Heights,101018-00009-1,0,4380_7778208_3600807,4380_1172 -4380_78041,288,4380_74428,Crobally Heights,101016-00011-1,0,4380_7778208_3600807,4380_1172 -4380_78041,286,4380_74429,Crobally Heights,101024-00010-1,0,4380_7778208_3600807,4380_1172 -4380_78041,291,4380_74430,Crobally Heights,100230-00013-1,0,4380_7778208_3600803,4380_1173 -4380_78041,289,4380_74431,Crobally Heights,101020-00014-1,0,4380_7778208_3600807,4380_1172 -4380_78041,287,4380_74432,Crobally Heights,101022-00012-1,0,4380_7778208_3600807,4380_1172 -4380_78041,292,4380_74433,Crobally Heights,101025-00016-1,0,4380_7778208_3600807,4380_1172 -4380_78041,290,4380_74434,Crobally Heights,101019-00015-1,0,4380_7778208_3600807,4380_1172 -4380_78041,294,4380_74435,Crobally Heights,101023-00018-1,0,4380_7778208_3600807,4380_1172 -4380_78041,295,4380_74436,Crobally Heights,101021-00019-1,0,4380_7778208_3600807,4380_1172 -4380_78041,293,4380_74437,Crobally Heights,101017-00017-1,0,4380_7778208_3600807,4380_1172 -4380_78041,296,4380_74438,Crobally Heights,100231-00021-1,0,4380_7778208_3600803,4380_1173 -4380_78041,297,4380_74445,Crobally Heights,100232-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_74446,Crobally Heights,100460-00009-1,0,4380_7778208_3600804,4380_1172 -4380_78041,288,4380_74448,Crobally Heights,100458-00011-1,0,4380_7778208_3600804,4380_1172 -4380_78041,286,4380_74449,Crobally Heights,100454-00010-1,0,4380_7778208_3600804,4380_1172 -4380_78041,291,4380_74450,Crobally Heights,100462-00013-1,0,4380_7778208_3600804,4380_1173 -4380_78041,289,4380_74451,Crobally Heights,100456-00014-1,0,4380_7778208_3600804,4380_1172 -4380_78041,287,4380_74452,Crobally Heights,100452-00012-1,0,4380_7778208_3600804,4380_1172 -4380_78041,292,4380_74453,Crobally Heights,100455-00016-1,0,4380_7778208_3600804,4380_1172 -4380_78041,290,4380_74454,Crobally Heights,100461-00015-1,0,4380_7778208_3600804,4380_1172 -4380_78041,294,4380_74455,Crobally Heights,100453-00018-1,0,4380_7778208_3600804,4380_1172 -4380_78041,295,4380_74456,Crobally Heights,100457-00019-1,0,4380_7778208_3600804,4380_1172 -4380_78041,293,4380_74457,Crobally Heights,100459-00017-1,0,4380_7778208_3600804,4380_1172 -4380_78041,296,4380_74458,Crobally Heights,100463-00021-1,0,4380_7778208_3600804,4380_1173 -4380_78041,297,4380_74465,Crobally Heights,100907-00008-1,0,4380_7778208_3600806,4380_1171 -4380_78041,285,4380_74466,Crobally Heights,100716-00009-1,0,4380_7778208_3600805,4380_1172 -4380_78041,288,4380_74468,Crobally Heights,100710-00011-1,0,4380_7778208_3600805,4380_1172 -4380_78041,286,4380_74469,Crobally Heights,100714-00010-1,0,4380_7778208_3600805,4380_1172 -4380_78041,291,4380_74470,Crobally Heights,100051-00013-1,0,4380_7778208_3600802,4380_1173 -4380_78041,289,4380_74471,Crobally Heights,100712-00014-1,0,4380_7778208_3600805,4380_1172 -4380_78041,287,4380_74472,Crobally Heights,100718-00012-1,0,4380_7778208_3600805,4380_1172 -4380_78041,292,4380_74473,Crobally Heights,100715-00016-1,0,4380_7778208_3600805,4380_1172 -4380_78041,290,4380_74474,Crobally Heights,100717-00015-1,0,4380_7778208_3600805,4380_1172 -4380_78041,294,4380_74475,Crobally Heights,100719-00018-1,0,4380_7778208_3600805,4380_1172 -4380_78041,295,4380_74476,Crobally Heights,100713-00019-1,0,4380_7778208_3600805,4380_1172 -4380_78041,293,4380_74477,Crobally Heights,100711-00017-1,0,4380_7778208_3600805,4380_1172 -4380_78041,296,4380_74478,Crobally Heights,100052-00021-1,0,4380_7778208_3600802,4380_1173 -4380_78041,297,4380_74485,Crobally Heights,99847-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_74486,Crobally Heights,101042-00009-1,0,4380_7778208_3600807,4380_1172 -4380_78041,288,4380_74488,Crobally Heights,101038-00011-1,0,4380_7778208_3600807,4380_1172 -4380_78041,286,4380_74489,Crobally Heights,101036-00010-1,0,4380_7778208_3600807,4380_1172 -4380_77953,285,4380_7449,Dublin,5914-00009-1,1,4380_7778208_1090112,4380_111 -4380_78041,291,4380_74490,Crobally Heights,100236-00013-1,0,4380_7778208_3600803,4380_1173 -4380_78041,289,4380_74491,Crobally Heights,101044-00014-1,0,4380_7778208_3600807,4380_1172 -4380_78041,287,4380_74492,Crobally Heights,101040-00012-1,0,4380_7778208_3600807,4380_1172 -4380_78041,292,4380_74493,Crobally Heights,101037-00016-1,0,4380_7778208_3600807,4380_1172 -4380_78041,290,4380_74494,Crobally Heights,101043-00015-1,0,4380_7778208_3600807,4380_1172 -4380_78041,294,4380_74495,Crobally Heights,101041-00018-1,0,4380_7778208_3600807,4380_1172 -4380_78041,295,4380_74496,Crobally Heights,101045-00019-1,0,4380_7778208_3600807,4380_1172 -4380_78041,293,4380_74497,Crobally Heights,101039-00017-1,0,4380_7778208_3600807,4380_1172 -4380_78041,296,4380_74498,Crobally Heights,100237-00021-1,0,4380_7778208_3600803,4380_1173 -4380_78113,297,4380_745,Dundalk,50094-00008-1,0,4380_7778208_1000907,4380_13 -4380_77953,286,4380_7450,Dublin,5923-00010-1,1,4380_7778208_1090112,4380_111 -4380_78041,297,4380_74505,Crobally Heights,100238-00008-1,0,4380_7778208_3600803,4380_1171 -4380_78041,285,4380_74506,Crobally Heights,100476-00009-1,0,4380_7778208_3600804,4380_1172 -4380_78041,288,4380_74508,Crobally Heights,100486-00011-1,0,4380_7778208_3600804,4380_1172 -4380_78041,286,4380_74509,Crobally Heights,100478-00010-1,0,4380_7778208_3600804,4380_1172 -4380_77953,297,4380_7451,Dublin,6019-00008-1,1,4380_7778208_1090114,4380_104 -4380_78041,291,4380_74510,Crobally Heights,100480-00013-1,0,4380_7778208_3600804,4380_1173 -4380_78041,289,4380_74511,Crobally Heights,100484-00014-1,0,4380_7778208_3600804,4380_1172 -4380_78041,287,4380_74512,Crobally Heights,100482-00012-1,0,4380_7778208_3600804,4380_1172 -4380_78041,292,4380_74513,Crobally Heights,100479-00016-1,0,4380_7778208_3600804,4380_1172 -4380_78041,290,4380_74514,Crobally Heights,100477-00015-1,0,4380_7778208_3600804,4380_1172 -4380_78041,294,4380_74515,Crobally Heights,100483-00018-1,0,4380_7778208_3600804,4380_1172 -4380_78041,295,4380_74516,Crobally Heights,100485-00019-1,0,4380_7778208_3600804,4380_1172 -4380_78041,293,4380_74517,Crobally Heights,100487-00017-1,0,4380_7778208_3600804,4380_1172 -4380_78041,296,4380_74518,Crobally Heights,100481-00021-1,0,4380_7778208_3600804,4380_1173 -4380_77953,288,4380_7452,Dublin,5932-00011-1,1,4380_7778208_1090112,4380_111 -4380_78041,297,4380_74525,Crobally Heights,100909-00008-1,0,4380_7778208_3600806,4380_1171 -4380_78041,285,4380_74526,Crobally Heights,100734-00009-1,0,4380_7778208_3600805,4380_1172 -4380_78041,288,4380_74528,Crobally Heights,100730-00011-1,0,4380_7778208_3600805,4380_1172 -4380_78041,286,4380_74529,Crobally Heights,100736-00010-1,0,4380_7778208_3600805,4380_1172 -4380_77953,287,4380_7453,Dublin,5939-00012-1,1,4380_7778208_1090112,4380_111 -4380_78041,291,4380_74530,Crobally Heights,100055-00013-1,0,4380_7778208_3600802,4380_1173 -4380_78041,289,4380_74531,Crobally Heights,100738-00014-1,0,4380_7778208_3600805,4380_1172 -4380_78041,287,4380_74532,Crobally Heights,100732-00012-1,0,4380_7778208_3600805,4380_1172 -4380_78041,292,4380_74533,Crobally Heights,100737-00016-1,0,4380_7778208_3600805,4380_1172 -4380_78041,290,4380_74534,Crobally Heights,100735-00015-1,0,4380_7778208_3600805,4380_1172 -4380_78041,294,4380_74535,Crobally Heights,100733-00018-1,0,4380_7778208_3600805,4380_1172 -4380_78041,295,4380_74536,Crobally Heights,100739-00019-1,0,4380_7778208_3600805,4380_1172 -4380_78041,293,4380_74537,Crobally Heights,100731-00017-1,0,4380_7778208_3600805,4380_1172 -4380_78041,296,4380_74538,Crobally Heights,100056-00021-1,0,4380_7778208_3600802,4380_1173 -4380_77953,289,4380_7454,Dublin,5903-00014-1,1,4380_7778208_1090112,4380_111 -4380_78041,297,4380_74545,Crobally Heights,99849-00008-1,0,4380_7778208_3600801,4380_1171 -4380_78041,285,4380_74546,Crobally Heights,101058-00009-1,0,4380_7778208_3600807,4380_1172 -4380_78041,288,4380_74548,Crobally Heights,101062-00011-1,0,4380_7778208_3600807,4380_1172 -4380_78041,286,4380_74549,Crobally Heights,101056-00010-1,0,4380_7778208_3600807,4380_1172 -4380_77953,290,4380_7455,Dublin,55160-00015-1,1,4380_7778208_1090112,4380_111 -4380_78041,291,4380_74550,Crobally Heights,100242-00013-1,0,4380_7778208_3600803,4380_1173 -4380_78041,289,4380_74551,Crobally Heights,101064-00014-1,0,4380_7778208_3600807,4380_1172 -4380_78041,287,4380_74552,Crobally Heights,101060-00012-1,0,4380_7778208_3600807,4380_1172 -4380_78041,292,4380_74553,Crobally Heights,101057-00016-1,0,4380_7778208_3600807,4380_1172 -4380_78041,290,4380_74554,Crobally Heights,101059-00015-1,0,4380_7778208_3600807,4380_1172 -4380_78041,294,4380_74555,Crobally Heights,101061-00018-1,0,4380_7778208_3600807,4380_1172 -4380_78041,295,4380_74556,Crobally Heights,101065-00019-1,0,4380_7778208_3600807,4380_1172 -4380_78041,293,4380_74557,Crobally Heights,101063-00017-1,0,4380_7778208_3600807,4380_1172 -4380_78041,296,4380_74558,Crobally Heights,100243-00021-1,0,4380_7778208_3600803,4380_1173 -4380_77953,291,4380_7456,Dublin,6810-00013-1,1,4380_7778208_1090901,4380_114 -4380_78041,285,4380_74564,Waterford,99624-00009-1,1,4380_7778208_3600801,4380_1174 -4380_78041,288,4380_74566,Waterford,99626-00011-1,1,4380_7778208_3600801,4380_1174 -4380_78041,286,4380_74567,Waterford,99630-00010-1,1,4380_7778208_3600801,4380_1174 -4380_78041,291,4380_74568,Waterford,99620-00013-1,1,4380_7778208_3600801,4380_1175 -4380_78041,289,4380_74569,Waterford,99622-00014-1,1,4380_7778208_3600801,4380_1174 -4380_77953,292,4380_7457,Dublin,55162-00016-1,1,4380_7778208_1090112,4380_111 -4380_78041,287,4380_74570,Waterford,99628-00012-1,1,4380_7778208_3600801,4380_1174 -4380_78041,292,4380_74571,Waterford,99631-00016-1,1,4380_7778208_3600801,4380_1174 -4380_78041,290,4380_74572,Waterford,99625-00015-1,1,4380_7778208_3600801,4380_1174 -4380_78041,294,4380_74573,Waterford,99629-00018-1,1,4380_7778208_3600801,4380_1174 -4380_78041,295,4380_74574,Waterford,99623-00019-1,1,4380_7778208_3600801,4380_1174 -4380_78041,293,4380_74575,Waterford,99627-00017-1,1,4380_7778208_3600801,4380_1174 -4380_78041,296,4380_74576,Waterford,99621-00021-1,1,4380_7778208_3600801,4380_1175 -4380_77953,293,4380_7458,Dublin,55159-00017-1,1,4380_7778208_1090112,4380_111 -4380_78041,285,4380_74582,Waterford,99858-00009-1,1,4380_7778208_3600802,4380_1174 -4380_78041,288,4380_74583,Waterford,99850-00011-1,1,4380_7778208_3600802,4380_1174 -4380_78041,286,4380_74584,Waterford,99852-00010-1,1,4380_7778208_3600802,4380_1174 -4380_78041,289,4380_74585,Waterford,99854-00014-1,1,4380_7778208_3600802,4380_1174 -4380_78041,287,4380_74586,Waterford,99856-00012-1,1,4380_7778208_3600802,4380_1174 -4380_78041,292,4380_74587,Waterford,99853-00016-1,1,4380_7778208_3600802,4380_1174 -4380_78041,290,4380_74588,Waterford,99859-00015-1,1,4380_7778208_3600802,4380_1174 -4380_78041,294,4380_74589,Waterford,99857-00018-1,1,4380_7778208_3600802,4380_1174 -4380_77953,294,4380_7459,Dublin,55161-00018-1,1,4380_7778208_1090112,4380_111 -4380_78041,295,4380_74590,Waterford,99855-00019-1,1,4380_7778208_3600802,4380_1174 -4380_78041,293,4380_74591,Waterford,99851-00017-1,1,4380_7778208_3600802,4380_1174 -4380_78041,291,4380_74593,Waterford,99860-00013-1,1,4380_7778208_3600802,4380_1174 -4380_78041,296,4380_74594,Waterford,99861-00021-1,1,4380_7778208_3600802,4380_1174 -4380_78113,287,4380_746,Dundalk,50190-00012-1,0,4380_7778208_1000908,4380_10 -4380_77953,295,4380_7460,Dublin,55158-00019-1,1,4380_7778208_1090112,4380_111 -4380_78041,285,4380_74600,Waterford,100063-00009-1,1,4380_7778208_3600803,4380_1174 -4380_78041,288,4380_74601,Waterford,100059-00011-1,1,4380_7778208_3600803,4380_1174 -4380_78041,286,4380_74602,Waterford,100061-00010-1,1,4380_7778208_3600803,4380_1174 -4380_78041,289,4380_74603,Waterford,100065-00014-1,1,4380_7778208_3600803,4380_1174 -4380_78041,287,4380_74604,Waterford,100057-00012-1,1,4380_7778208_3600803,4380_1174 -4380_78041,292,4380_74605,Waterford,100062-00016-1,1,4380_7778208_3600803,4380_1174 -4380_78041,290,4380_74606,Waterford,100064-00015-1,1,4380_7778208_3600803,4380_1174 -4380_78041,294,4380_74607,Waterford,100058-00018-1,1,4380_7778208_3600803,4380_1174 -4380_78041,295,4380_74608,Waterford,100066-00019-1,1,4380_7778208_3600803,4380_1174 -4380_78041,293,4380_74609,Waterford,100060-00017-1,1,4380_7778208_3600803,4380_1174 -4380_77953,296,4380_7461,Dublin,55331-00021-1,1,4380_7778208_1090901,4380_114 -4380_78041,297,4380_74611,Waterford,99646-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,291,4380_74613,Waterford,99644-00013-1,1,4380_7778208_3600801,4380_1175 -4380_78041,296,4380_74614,Waterford,99645-00021-1,1,4380_7778208_3600801,4380_1175 -4380_78041,285,4380_74620,Waterford,100506-00009-1,1,4380_7778208_3600805,4380_1174 -4380_78041,288,4380_74621,Waterford,100502-00011-1,1,4380_7778208_3600805,4380_1174 -4380_78041,286,4380_74622,Waterford,100508-00010-1,1,4380_7778208_3600805,4380_1174 -4380_78041,289,4380_74623,Waterford,100500-00014-1,1,4380_7778208_3600805,4380_1174 -4380_78041,287,4380_74624,Waterford,100504-00012-1,1,4380_7778208_3600805,4380_1174 -4380_78041,292,4380_74625,Waterford,100509-00016-1,1,4380_7778208_3600805,4380_1174 -4380_78041,290,4380_74626,Waterford,100507-00015-1,1,4380_7778208_3600805,4380_1174 -4380_78041,294,4380_74627,Waterford,100505-00018-1,1,4380_7778208_3600805,4380_1174 -4380_78041,295,4380_74628,Waterford,100501-00019-1,1,4380_7778208_3600805,4380_1174 -4380_78041,293,4380_74629,Waterford,100503-00017-1,1,4380_7778208_3600805,4380_1174 -4380_78041,285,4380_74635,Waterford,99653-00009-1,1,4380_7778208_3600801,4380_1174 -4380_78041,288,4380_74636,Waterford,99647-00011-1,1,4380_7778208_3600801,4380_1174 -4380_78041,286,4380_74637,Waterford,99649-00010-1,1,4380_7778208_3600801,4380_1174 -4380_78041,289,4380_74638,Waterford,99651-00014-1,1,4380_7778208_3600801,4380_1174 -4380_78041,287,4380_74639,Waterford,99655-00012-1,1,4380_7778208_3600801,4380_1174 -4380_78041,292,4380_74640,Waterford,99650-00016-1,1,4380_7778208_3600801,4380_1174 -4380_78041,290,4380_74641,Waterford,99654-00015-1,1,4380_7778208_3600801,4380_1174 -4380_78041,294,4380_74642,Waterford,99656-00018-1,1,4380_7778208_3600801,4380_1174 -4380_78041,295,4380_74643,Waterford,99652-00019-1,1,4380_7778208_3600801,4380_1174 -4380_78041,293,4380_74644,Waterford,99648-00017-1,1,4380_7778208_3600801,4380_1174 -4380_78041,297,4380_74646,Waterford,99874-00008-1,1,4380_7778208_3600802,4380_1174 -4380_78041,291,4380_74648,Waterford,100266-00013-1,1,4380_7778208_3600804,4380_1175 -4380_78041,296,4380_74649,Waterford,100267-00021-1,1,4380_7778208_3600804,4380_1175 -4380_78041,285,4380_74655,Waterford,100918-00009-1,1,4380_7778208_3600807,4380_1174 -4380_78041,288,4380_74656,Waterford,100914-00011-1,1,4380_7778208_3600807,4380_1174 -4380_78041,286,4380_74657,Waterford,100916-00010-1,1,4380_7778208_3600807,4380_1174 -4380_78041,289,4380_74658,Waterford,100910-00014-1,1,4380_7778208_3600807,4380_1174 -4380_78041,287,4380_74659,Waterford,100912-00012-1,1,4380_7778208_3600807,4380_1174 -4380_78041,292,4380_74660,Waterford,100917-00016-1,1,4380_7778208_3600807,4380_1174 -4380_78041,290,4380_74661,Waterford,100919-00015-1,1,4380_7778208_3600807,4380_1174 -4380_78041,294,4380_74662,Waterford,100913-00018-1,1,4380_7778208_3600807,4380_1174 -4380_78041,295,4380_74663,Waterford,100911-00019-1,1,4380_7778208_3600807,4380_1174 -4380_78041,293,4380_74664,Waterford,100915-00017-1,1,4380_7778208_3600807,4380_1174 -4380_78041,297,4380_74671,Waterford,100080-00008-1,1,4380_7778208_3600803,4380_1174 -4380_78041,285,4380_74672,Waterford,99881-00009-1,1,4380_7778208_3600802,4380_1175 -4380_78041,288,4380_74674,Waterford,99885-00011-1,1,4380_7778208_3600802,4380_1175 -4380_78041,286,4380_74675,Waterford,99883-00010-1,1,4380_7778208_3600802,4380_1175 -4380_78041,291,4380_74676,Waterford,99875-00013-1,1,4380_7778208_3600802,4380_1176 -4380_78041,289,4380_74677,Waterford,99879-00014-1,1,4380_7778208_3600802,4380_1175 -4380_78041,287,4380_74678,Waterford,99877-00012-1,1,4380_7778208_3600802,4380_1175 -4380_78041,292,4380_74679,Waterford,99884-00016-1,1,4380_7778208_3600802,4380_1175 -4380_78041,290,4380_74680,Waterford,99882-00015-1,1,4380_7778208_3600802,4380_1175 -4380_78041,294,4380_74681,Waterford,99878-00018-1,1,4380_7778208_3600802,4380_1175 -4380_78041,295,4380_74682,Waterford,99880-00019-1,1,4380_7778208_3600802,4380_1175 -4380_78041,293,4380_74683,Waterford,99886-00017-1,1,4380_7778208_3600802,4380_1175 -4380_78041,296,4380_74684,Waterford,99876-00021-1,1,4380_7778208_3600802,4380_1176 -4380_77953,285,4380_7469,Dublin,5660-00009-1,1,4380_7778208_1090107,4380_110 -4380_78041,285,4380_74690,Waterford,100083-00009-1,1,4380_7778208_3600803,4380_1174 -4380_78041,288,4380_74691,Waterford,100091-00011-1,1,4380_7778208_3600803,4380_1174 -4380_78041,286,4380_74692,Waterford,100081-00010-1,1,4380_7778208_3600803,4380_1174 -4380_78041,289,4380_74693,Waterford,100089-00014-1,1,4380_7778208_3600803,4380_1174 -4380_78041,287,4380_74694,Waterford,100087-00012-1,1,4380_7778208_3600803,4380_1174 -4380_78041,292,4380_74695,Waterford,100082-00016-1,1,4380_7778208_3600803,4380_1174 -4380_78041,290,4380_74696,Waterford,100084-00015-1,1,4380_7778208_3600803,4380_1174 -4380_78041,294,4380_74697,Waterford,100088-00018-1,1,4380_7778208_3600803,4380_1174 -4380_78041,295,4380_74698,Waterford,100090-00019-1,1,4380_7778208_3600803,4380_1174 -4380_78041,293,4380_74699,Waterford,100092-00017-1,1,4380_7778208_3600803,4380_1174 -4380_78113,288,4380_747,Dundalk,50194-00011-1,0,4380_7778208_1000908,4380_10 -4380_77953,286,4380_7470,Dublin,5668-00010-1,1,4380_7778208_1090107,4380_110 -4380_78041,297,4380_74701,Waterford,99660-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,291,4380_74703,Waterford,99669-00013-1,1,4380_7778208_3600801,4380_1175 -4380_78041,296,4380_74704,Waterford,99670-00021-1,1,4380_7778208_3600801,4380_1175 -4380_77953,297,4380_7471,Dublin,5578-00008-1,1,4380_7778208_1090105,4380_105 -4380_78041,285,4380_74710,Waterford,101084-00009-1,1,4380_7778208_3600808,4380_1174 -4380_78041,288,4380_74711,Waterford,101076-00011-1,1,4380_7778208_3600808,4380_1174 -4380_78041,286,4380_74712,Waterford,101080-00010-1,1,4380_7778208_3600808,4380_1174 -4380_78041,289,4380_74713,Waterford,101078-00014-1,1,4380_7778208_3600808,4380_1174 -4380_78041,287,4380_74714,Waterford,101082-00012-1,1,4380_7778208_3600808,4380_1174 -4380_78041,292,4380_74715,Waterford,101081-00016-1,1,4380_7778208_3600808,4380_1174 -4380_78041,290,4380_74716,Waterford,101085-00015-1,1,4380_7778208_3600808,4380_1174 -4380_78041,294,4380_74717,Waterford,101083-00018-1,1,4380_7778208_3600808,4380_1174 -4380_78041,295,4380_74718,Waterford,101079-00019-1,1,4380_7778208_3600808,4380_1174 -4380_78041,293,4380_74719,Waterford,101077-00017-1,1,4380_7778208_3600808,4380_1174 -4380_77953,288,4380_7472,Dublin,5676-00011-1,1,4380_7778208_1090107,4380_110 -4380_78041,297,4380_74726,Waterford,100527-00008-1,1,4380_7778208_3600805,4380_1174 -4380_78041,285,4380_74727,Waterford,100530-00009-1,1,4380_7778208_3600805,4380_1175 -4380_78041,288,4380_74729,Waterford,100528-00011-1,1,4380_7778208_3600805,4380_1175 -4380_77953,287,4380_7473,Dublin,5684-00012-1,1,4380_7778208_1090107,4380_110 -4380_78041,286,4380_74730,Waterford,100525-00010-1,1,4380_7778208_3600805,4380_1175 -4380_78041,291,4380_74731,Waterford,100281-00013-1,1,4380_7778208_3600804,4380_1176 -4380_78041,289,4380_74732,Waterford,100532-00014-1,1,4380_7778208_3600805,4380_1175 -4380_78041,287,4380_74733,Waterford,100534-00012-1,1,4380_7778208_3600805,4380_1175 -4380_78041,292,4380_74734,Waterford,100526-00016-1,1,4380_7778208_3600805,4380_1175 -4380_78041,290,4380_74735,Waterford,100531-00015-1,1,4380_7778208_3600805,4380_1175 -4380_78041,294,4380_74736,Waterford,100535-00018-1,1,4380_7778208_3600805,4380_1175 -4380_78041,295,4380_74737,Waterford,100533-00019-1,1,4380_7778208_3600805,4380_1175 -4380_78041,293,4380_74738,Waterford,100529-00017-1,1,4380_7778208_3600805,4380_1175 -4380_78041,296,4380_74739,Waterford,100282-00021-1,1,4380_7778208_3600804,4380_1176 -4380_77953,289,4380_7474,Dublin,5652-00014-1,1,4380_7778208_1090107,4380_110 -4380_78041,285,4380_74745,Waterford,99675-00009-1,1,4380_7778208_3600801,4380_1174 -4380_78041,288,4380_74747,Waterford,99684-00011-1,1,4380_7778208_3600801,4380_1174 -4380_78041,286,4380_74748,Waterford,99682-00010-1,1,4380_7778208_3600801,4380_1174 -4380_78041,291,4380_74749,Waterford,100764-00013-1,1,4380_7778208_3600806,4380_1175 -4380_77953,290,4380_7475,Dublin,54971-00015-1,1,4380_7778208_1090107,4380_110 -4380_78041,289,4380_74750,Waterford,99677-00014-1,1,4380_7778208_3600801,4380_1174 -4380_78041,287,4380_74751,Waterford,99680-00012-1,1,4380_7778208_3600801,4380_1174 -4380_78041,292,4380_74752,Waterford,99683-00016-1,1,4380_7778208_3600801,4380_1174 -4380_78041,290,4380_74753,Waterford,99676-00015-1,1,4380_7778208_3600801,4380_1174 -4380_78041,294,4380_74754,Waterford,99681-00018-1,1,4380_7778208_3600801,4380_1174 -4380_78041,295,4380_74755,Waterford,99678-00019-1,1,4380_7778208_3600801,4380_1174 -4380_78041,293,4380_74756,Waterford,99685-00017-1,1,4380_7778208_3600801,4380_1174 -4380_78041,296,4380_74757,Waterford,100765-00021-1,1,4380_7778208_3600806,4380_1175 -4380_78041,297,4380_74759,Waterford,100106-00008-1,1,4380_7778208_3600803,4380_1174 -4380_77953,291,4380_7476,Dublin,5351-00013-1,1,4380_7778208_1090102,4380_113 -4380_78041,285,4380_74765,Waterford,99907-00009-1,1,4380_7778208_3600802,4380_1174 -4380_78041,288,4380_74767,Waterford,99911-00011-1,1,4380_7778208_3600802,4380_1174 -4380_78041,286,4380_74768,Waterford,99901-00010-1,1,4380_7778208_3600802,4380_1174 -4380_78041,291,4380_74769,Waterford,99903-00013-1,1,4380_7778208_3600802,4380_1175 -4380_77953,292,4380_7477,Dublin,54969-00016-1,1,4380_7778208_1090107,4380_110 -4380_78041,289,4380_74770,Waterford,99909-00014-1,1,4380_7778208_3600802,4380_1174 -4380_78041,287,4380_74771,Waterford,99905-00012-1,1,4380_7778208_3600802,4380_1174 -4380_78041,292,4380_74772,Waterford,99902-00016-1,1,4380_7778208_3600802,4380_1174 -4380_78041,290,4380_74773,Waterford,99908-00015-1,1,4380_7778208_3600802,4380_1174 -4380_78041,294,4380_74774,Waterford,99906-00018-1,1,4380_7778208_3600802,4380_1174 -4380_78041,295,4380_74775,Waterford,99910-00019-1,1,4380_7778208_3600802,4380_1174 -4380_78041,293,4380_74776,Waterford,99912-00017-1,1,4380_7778208_3600802,4380_1174 -4380_78041,296,4380_74777,Waterford,99904-00021-1,1,4380_7778208_3600802,4380_1175 -4380_77953,293,4380_7478,Dublin,54972-00017-1,1,4380_7778208_1090107,4380_110 -4380_78041,297,4380_74784,Waterford,99686-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,285,4380_74785,Waterford,100113-00009-1,1,4380_7778208_3600803,4380_1175 -4380_78041,288,4380_74787,Waterford,100107-00011-1,1,4380_7778208_3600803,4380_1175 -4380_78041,286,4380_74788,Waterford,100111-00010-1,1,4380_7778208_3600803,4380_1175 -4380_78041,291,4380_74789,Waterford,99687-00013-1,1,4380_7778208_3600801,4380_1176 -4380_77953,294,4380_7479,Dublin,54973-00018-1,1,4380_7778208_1090107,4380_110 -4380_78041,289,4380_74790,Waterford,100115-00014-1,1,4380_7778208_3600803,4380_1175 -4380_78041,287,4380_74791,Waterford,100109-00012-1,1,4380_7778208_3600803,4380_1175 -4380_78041,292,4380_74792,Waterford,100112-00016-1,1,4380_7778208_3600803,4380_1175 -4380_78041,290,4380_74793,Waterford,100114-00015-1,1,4380_7778208_3600803,4380_1175 -4380_78041,294,4380_74794,Waterford,100110-00018-1,1,4380_7778208_3600803,4380_1175 -4380_78041,295,4380_74795,Waterford,100116-00019-1,1,4380_7778208_3600803,4380_1175 -4380_78041,293,4380_74796,Waterford,100108-00017-1,1,4380_7778208_3600803,4380_1175 -4380_78041,296,4380_74797,Waterford,99688-00021-1,1,4380_7778208_3600801,4380_1176 -4380_78113,289,4380_748,Dundalk,50186-00014-1,0,4380_7778208_1000908,4380_10 -4380_77953,295,4380_7480,Dublin,54970-00019-1,1,4380_7778208_1090107,4380_110 -4380_78041,297,4380_74804,Waterford,100784-00008-1,1,4380_7778208_3600806,4380_1174 -4380_78041,285,4380_74805,Waterford,101102-00009-1,1,4380_7778208_3600808,4380_1175 -4380_78041,288,4380_74807,Waterford,101100-00011-1,1,4380_7778208_3600808,4380_1175 -4380_78041,286,4380_74808,Waterford,101104-00010-1,1,4380_7778208_3600808,4380_1175 -4380_78041,291,4380_74809,Waterford,100922-00013-1,1,4380_7778208_3600807,4380_1176 -4380_77953,296,4380_7481,Dublin,54716-00021-1,1,4380_7778208_1090102,4380_113 -4380_78041,289,4380_74810,Waterford,101098-00014-1,1,4380_7778208_3600808,4380_1175 -4380_78041,287,4380_74811,Waterford,101096-00012-1,1,4380_7778208_3600808,4380_1175 -4380_78041,292,4380_74812,Waterford,101105-00016-1,1,4380_7778208_3600808,4380_1175 -4380_78041,290,4380_74813,Waterford,101103-00015-1,1,4380_7778208_3600808,4380_1175 -4380_78041,294,4380_74814,Waterford,101097-00018-1,1,4380_7778208_3600808,4380_1175 -4380_78041,295,4380_74815,Waterford,101099-00019-1,1,4380_7778208_3600808,4380_1175 -4380_78041,293,4380_74816,Waterford,101101-00017-1,1,4380_7778208_3600808,4380_1175 -4380_78041,296,4380_74817,Waterford,100923-00021-1,1,4380_7778208_3600807,4380_1176 -4380_78041,297,4380_74824,Waterford,100555-00008-1,1,4380_7778208_3600805,4380_1174 -4380_78041,285,4380_74825,Waterford,100551-00009-1,1,4380_7778208_3600805,4380_1175 -4380_78041,288,4380_74827,Waterford,100556-00011-1,1,4380_7778208_3600805,4380_1175 -4380_78041,286,4380_74828,Waterford,100560-00010-1,1,4380_7778208_3600805,4380_1175 -4380_78041,291,4380_74829,Waterford,100307-00013-1,1,4380_7778208_3600804,4380_1176 -4380_78041,289,4380_74830,Waterford,100553-00014-1,1,4380_7778208_3600805,4380_1175 -4380_78041,287,4380_74831,Waterford,100558-00012-1,1,4380_7778208_3600805,4380_1175 -4380_78041,292,4380_74832,Waterford,100561-00016-1,1,4380_7778208_3600805,4380_1175 -4380_78041,290,4380_74833,Waterford,100552-00015-1,1,4380_7778208_3600805,4380_1175 -4380_78041,294,4380_74834,Waterford,100559-00018-1,1,4380_7778208_3600805,4380_1175 -4380_78041,295,4380_74835,Waterford,100554-00019-1,1,4380_7778208_3600805,4380_1175 -4380_78041,293,4380_74836,Waterford,100557-00017-1,1,4380_7778208_3600805,4380_1175 -4380_78041,296,4380_74837,Waterford,100308-00021-1,1,4380_7778208_3600804,4380_1176 -4380_78041,297,4380_74844,Waterford,100130-00008-1,1,4380_7778208_3600803,4380_1174 -4380_78041,285,4380_74845,Waterford,99708-00009-1,1,4380_7778208_3600801,4380_1175 -4380_78041,288,4380_74847,Waterford,99710-00011-1,1,4380_7778208_3600801,4380_1175 -4380_78041,286,4380_74848,Waterford,99706-00010-1,1,4380_7778208_3600801,4380_1175 -4380_78041,291,4380_74849,Waterford,100785-00013-1,1,4380_7778208_3600806,4380_1176 -4380_78041,289,4380_74850,Waterford,99702-00014-1,1,4380_7778208_3600801,4380_1175 -4380_78041,287,4380_74851,Waterford,99704-00012-1,1,4380_7778208_3600801,4380_1175 -4380_78041,292,4380_74852,Waterford,99707-00016-1,1,4380_7778208_3600801,4380_1175 -4380_78041,290,4380_74853,Waterford,99709-00015-1,1,4380_7778208_3600801,4380_1175 -4380_78041,294,4380_74854,Waterford,99705-00018-1,1,4380_7778208_3600801,4380_1175 -4380_78041,295,4380_74855,Waterford,99703-00019-1,1,4380_7778208_3600801,4380_1175 -4380_78041,293,4380_74856,Waterford,99711-00017-1,1,4380_7778208_3600801,4380_1175 -4380_78041,296,4380_74857,Waterford,100786-00021-1,1,4380_7778208_3600806,4380_1176 -4380_78041,297,4380_74864,Waterford,100927-00008-1,1,4380_7778208_3600807,4380_1174 -4380_78041,285,4380_74865,Waterford,99933-00009-1,1,4380_7778208_3600802,4380_1175 -4380_78041,288,4380_74867,Waterford,99929-00011-1,1,4380_7778208_3600802,4380_1175 -4380_78041,286,4380_74868,Waterford,99935-00010-1,1,4380_7778208_3600802,4380_1175 -4380_78041,291,4380_74869,Waterford,99937-00013-1,1,4380_7778208_3600802,4380_1176 -4380_78041,289,4380_74870,Waterford,99931-00014-1,1,4380_7778208_3600802,4380_1175 -4380_78041,287,4380_74871,Waterford,99927-00012-1,1,4380_7778208_3600802,4380_1175 -4380_78041,292,4380_74872,Waterford,99936-00016-1,1,4380_7778208_3600802,4380_1175 -4380_78041,290,4380_74873,Waterford,99934-00015-1,1,4380_7778208_3600802,4380_1175 -4380_78041,294,4380_74874,Waterford,99928-00018-1,1,4380_7778208_3600802,4380_1175 -4380_78041,295,4380_74875,Waterford,99932-00019-1,1,4380_7778208_3600802,4380_1175 -4380_78041,293,4380_74876,Waterford,99930-00017-1,1,4380_7778208_3600802,4380_1175 -4380_78041,296,4380_74877,Waterford,99938-00021-1,1,4380_7778208_3600802,4380_1176 -4380_78041,297,4380_74884,Waterford,99714-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,285,4380_74885,Waterford,100135-00009-1,1,4380_7778208_3600803,4380_1175 -4380_78041,288,4380_74887,Waterford,100141-00011-1,1,4380_7778208_3600803,4380_1175 -4380_78041,286,4380_74888,Waterford,100133-00010-1,1,4380_7778208_3600803,4380_1175 -4380_78041,291,4380_74889,Waterford,99712-00013-1,1,4380_7778208_3600801,4380_1176 -4380_77953,285,4380_7489,Dublin,5722-00009-1,1,4380_7778208_1090108,4380_110 -4380_78041,289,4380_74890,Waterford,100137-00014-1,1,4380_7778208_3600803,4380_1175 -4380_78041,287,4380_74891,Waterford,100139-00012-1,1,4380_7778208_3600803,4380_1175 -4380_78041,292,4380_74892,Waterford,100134-00016-1,1,4380_7778208_3600803,4380_1175 -4380_78041,290,4380_74893,Waterford,100136-00015-1,1,4380_7778208_3600803,4380_1175 -4380_78041,294,4380_74894,Waterford,100140-00018-1,1,4380_7778208_3600803,4380_1175 -4380_78041,295,4380_74895,Waterford,100138-00019-1,1,4380_7778208_3600803,4380_1175 -4380_78041,293,4380_74896,Waterford,100142-00017-1,1,4380_7778208_3600803,4380_1175 -4380_78041,296,4380_74897,Waterford,99713-00021-1,1,4380_7778208_3600801,4380_1176 -4380_78113,290,4380_749,Dundalk,50197-00015-1,0,4380_7778208_1000908,4380_10 -4380_77953,286,4380_7490,Dublin,5730-00010-1,1,4380_7778208_1090108,4380_110 -4380_78041,297,4380_74904,Waterford,100800-00008-1,1,4380_7778208_3600806,4380_1174 -4380_78041,285,4380_74905,Waterford,101124-00009-1,1,4380_7778208_3600808,4380_1175 -4380_78041,288,4380_74907,Waterford,101116-00011-1,1,4380_7778208_3600808,4380_1175 -4380_78041,286,4380_74908,Waterford,101118-00010-1,1,4380_7778208_3600808,4380_1175 -4380_78041,291,4380_74909,Waterford,100928-00013-1,1,4380_7778208_3600807,4380_1176 -4380_77953,297,4380_7491,Dublin,5442-00008-1,1,4380_7778208_1090103,4380_105 -4380_78041,289,4380_74910,Waterford,101122-00014-1,1,4380_7778208_3600808,4380_1175 -4380_78041,287,4380_74911,Waterford,101120-00012-1,1,4380_7778208_3600808,4380_1175 -4380_78041,292,4380_74912,Waterford,101119-00016-1,1,4380_7778208_3600808,4380_1175 -4380_78041,290,4380_74913,Waterford,101125-00015-1,1,4380_7778208_3600808,4380_1175 -4380_78041,294,4380_74914,Waterford,101121-00018-1,1,4380_7778208_3600808,4380_1175 -4380_78041,295,4380_74915,Waterford,101123-00019-1,1,4380_7778208_3600808,4380_1175 -4380_78041,293,4380_74916,Waterford,101117-00017-1,1,4380_7778208_3600808,4380_1175 -4380_78041,296,4380_74917,Waterford,100929-00021-1,1,4380_7778208_3600807,4380_1176 -4380_77953,288,4380_7492,Dublin,5738-00011-1,1,4380_7778208_1090108,4380_110 -4380_78041,297,4380_74924,Waterford,100587-00008-1,1,4380_7778208_3600805,4380_1174 -4380_78041,285,4380_74925,Waterford,100577-00009-1,1,4380_7778208_3600805,4380_1175 -4380_78041,288,4380_74927,Waterford,100585-00011-1,1,4380_7778208_3600805,4380_1175 -4380_78041,286,4380_74928,Waterford,100581-00010-1,1,4380_7778208_3600805,4380_1175 -4380_78041,291,4380_74929,Waterford,100323-00013-1,1,4380_7778208_3600804,4380_1176 -4380_77953,287,4380_7493,Dublin,5746-00012-1,1,4380_7778208_1090108,4380_110 -4380_78041,289,4380_74930,Waterford,100579-00014-1,1,4380_7778208_3600805,4380_1175 -4380_78041,287,4380_74931,Waterford,100583-00012-1,1,4380_7778208_3600805,4380_1175 -4380_78041,292,4380_74932,Waterford,100582-00016-1,1,4380_7778208_3600805,4380_1175 -4380_78041,290,4380_74933,Waterford,100578-00015-1,1,4380_7778208_3600805,4380_1175 -4380_78041,294,4380_74934,Waterford,100584-00018-1,1,4380_7778208_3600805,4380_1175 -4380_78041,295,4380_74935,Waterford,100580-00019-1,1,4380_7778208_3600805,4380_1175 -4380_78041,293,4380_74936,Waterford,100586-00017-1,1,4380_7778208_3600805,4380_1175 -4380_78041,296,4380_74937,Waterford,100324-00021-1,1,4380_7778208_3600804,4380_1176 -4380_77953,289,4380_7494,Dublin,5714-00014-1,1,4380_7778208_1090108,4380_110 -4380_78041,297,4380_74944,Waterford,100156-00008-1,1,4380_7778208_3600803,4380_1174 -4380_78041,285,4380_74945,Waterford,99736-00009-1,1,4380_7778208_3600801,4380_1175 -4380_78041,288,4380_74947,Waterford,99730-00011-1,1,4380_7778208_3600801,4380_1175 -4380_78041,286,4380_74948,Waterford,99734-00010-1,1,4380_7778208_3600801,4380_1175 -4380_78041,291,4380_74949,Waterford,100811-00013-1,1,4380_7778208_3600806,4380_1176 -4380_77953,290,4380_7495,Dublin,55018-00015-1,1,4380_7778208_1090108,4380_110 -4380_78041,289,4380_74950,Waterford,99728-00014-1,1,4380_7778208_3600801,4380_1175 -4380_78041,287,4380_74951,Waterford,99732-00012-1,1,4380_7778208_3600801,4380_1175 -4380_78041,292,4380_74952,Waterford,99735-00016-1,1,4380_7778208_3600801,4380_1175 -4380_78041,290,4380_74953,Waterford,99737-00015-1,1,4380_7778208_3600801,4380_1175 -4380_78041,294,4380_74954,Waterford,99733-00018-1,1,4380_7778208_3600801,4380_1175 -4380_78041,295,4380_74955,Waterford,99729-00019-1,1,4380_7778208_3600801,4380_1175 -4380_78041,293,4380_74956,Waterford,99731-00017-1,1,4380_7778208_3600801,4380_1175 -4380_78041,296,4380_74957,Waterford,100812-00021-1,1,4380_7778208_3600806,4380_1176 -4380_77953,291,4380_7496,Dublin,5423-00013-1,1,4380_7778208_1090103,4380_113 -4380_78041,297,4380_74964,Waterford,100933-00008-1,1,4380_7778208_3600807,4380_1174 -4380_78041,285,4380_74965,Waterford,99958-00009-1,1,4380_7778208_3600802,4380_1175 -4380_78041,288,4380_74967,Waterford,99954-00011-1,1,4380_7778208_3600802,4380_1175 -4380_78041,286,4380_74968,Waterford,99956-00010-1,1,4380_7778208_3600802,4380_1175 -4380_78041,291,4380_74969,Waterford,99952-00013-1,1,4380_7778208_3600802,4380_1176 -4380_77953,292,4380_7497,Dublin,55020-00016-1,1,4380_7778208_1090108,4380_110 -4380_78041,289,4380_74970,Waterford,99960-00014-1,1,4380_7778208_3600802,4380_1175 -4380_78041,287,4380_74971,Waterford,99962-00012-1,1,4380_7778208_3600802,4380_1175 -4380_78041,292,4380_74972,Waterford,99957-00016-1,1,4380_7778208_3600802,4380_1175 -4380_78041,290,4380_74973,Waterford,99959-00015-1,1,4380_7778208_3600802,4380_1175 -4380_78041,294,4380_74974,Waterford,99963-00018-1,1,4380_7778208_3600802,4380_1175 -4380_78041,295,4380_74975,Waterford,99961-00019-1,1,4380_7778208_3600802,4380_1175 -4380_78041,293,4380_74976,Waterford,99955-00017-1,1,4380_7778208_3600802,4380_1175 -4380_78041,296,4380_74977,Waterford,99953-00021-1,1,4380_7778208_3600802,4380_1176 -4380_77953,293,4380_7498,Dublin,55019-00017-1,1,4380_7778208_1090108,4380_110 -4380_78041,297,4380_74984,Waterford,99740-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,285,4380_74985,Waterford,100161-00009-1,1,4380_7778208_3600803,4380_1175 -4380_78041,288,4380_74987,Waterford,100163-00011-1,1,4380_7778208_3600803,4380_1175 -4380_78041,286,4380_74988,Waterford,100165-00010-1,1,4380_7778208_3600803,4380_1175 -4380_78041,291,4380_74989,Waterford,99738-00013-1,1,4380_7778208_3600801,4380_1176 -4380_77953,294,4380_7499,Dublin,55016-00018-1,1,4380_7778208_1090108,4380_110 -4380_78041,289,4380_74990,Waterford,100167-00014-1,1,4380_7778208_3600803,4380_1175 -4380_78041,287,4380_74991,Waterford,100159-00012-1,1,4380_7778208_3600803,4380_1175 -4380_78041,292,4380_74992,Waterford,100166-00016-1,1,4380_7778208_3600803,4380_1175 -4380_78041,290,4380_74993,Waterford,100162-00015-1,1,4380_7778208_3600803,4380_1175 -4380_78041,294,4380_74994,Waterford,100160-00018-1,1,4380_7778208_3600803,4380_1175 -4380_78041,295,4380_74995,Waterford,100168-00019-1,1,4380_7778208_3600803,4380_1175 -4380_78041,293,4380_74996,Waterford,100164-00017-1,1,4380_7778208_3600803,4380_1175 -4380_78041,296,4380_74997,Waterford,99739-00021-1,1,4380_7778208_3600801,4380_1176 -4380_77946,287,4380_75,Dundalk,50383-00012-1,0,4380_7778208_1000914,4380_1 -4380_78113,291,4380_750,Dundalk,50192-00013-1,0,4380_7778208_1000908,4380_16 -4380_77953,295,4380_7500,Dublin,55017-00019-1,1,4380_7778208_1090108,4380_110 -4380_78041,297,4380_75004,Waterford,100826-00008-1,1,4380_7778208_3600806,4380_1174 -4380_78041,285,4380_75005,Waterford,101136-00009-1,1,4380_7778208_3600808,4380_1175 -4380_78041,288,4380_75007,Waterford,101144-00011-1,1,4380_7778208_3600808,4380_1175 -4380_78041,286,4380_75008,Waterford,101142-00010-1,1,4380_7778208_3600808,4380_1175 -4380_78041,291,4380_75009,Waterford,100934-00013-1,1,4380_7778208_3600807,4380_1176 -4380_77953,296,4380_7501,Dublin,54769-00021-1,1,4380_7778208_1090103,4380_113 -4380_78041,289,4380_75010,Waterford,101140-00014-1,1,4380_7778208_3600808,4380_1175 -4380_78041,287,4380_75011,Waterford,101138-00012-1,1,4380_7778208_3600808,4380_1175 -4380_78041,292,4380_75012,Waterford,101143-00016-1,1,4380_7778208_3600808,4380_1175 -4380_78041,290,4380_75013,Waterford,101137-00015-1,1,4380_7778208_3600808,4380_1175 -4380_78041,294,4380_75014,Waterford,101139-00018-1,1,4380_7778208_3600808,4380_1175 -4380_78041,295,4380_75015,Waterford,101141-00019-1,1,4380_7778208_3600808,4380_1175 -4380_78041,293,4380_75016,Waterford,101145-00017-1,1,4380_7778208_3600808,4380_1175 -4380_78041,296,4380_75017,Waterford,100935-00021-1,1,4380_7778208_3600807,4380_1176 -4380_78041,297,4380_75024,Waterford,100601-00008-1,1,4380_7778208_3600805,4380_1174 -4380_78041,285,4380_75025,Waterford,100941-00009-1,1,4380_7778208_3600807,4380_1175 -4380_78041,288,4380_75027,Waterford,100943-00011-1,1,4380_7778208_3600807,4380_1175 -4380_78041,286,4380_75028,Waterford,100945-00010-1,1,4380_7778208_3600807,4380_1175 -4380_78041,291,4380_75029,Waterford,100348-00013-1,1,4380_7778208_3600804,4380_1176 -4380_78041,289,4380_75030,Waterford,100939-00014-1,1,4380_7778208_3600807,4380_1175 -4380_78041,287,4380_75031,Waterford,100937-00012-1,1,4380_7778208_3600807,4380_1175 -4380_78041,292,4380_75032,Waterford,100946-00016-1,1,4380_7778208_3600807,4380_1175 -4380_78041,290,4380_75033,Waterford,100942-00015-1,1,4380_7778208_3600807,4380_1175 -4380_78041,294,4380_75034,Waterford,100938-00018-1,1,4380_7778208_3600807,4380_1175 -4380_78041,295,4380_75035,Waterford,100940-00019-1,1,4380_7778208_3600807,4380_1175 -4380_78041,293,4380_75036,Waterford,100944-00017-1,1,4380_7778208_3600807,4380_1175 -4380_78041,296,4380_75037,Waterford,100349-00021-1,1,4380_7778208_3600804,4380_1176 -4380_78041,297,4380_75044,Waterford,100182-00008-1,1,4380_7778208_3600803,4380_1174 -4380_78041,285,4380_75045,Waterford,100612-00009-1,1,4380_7778208_3600805,4380_1175 -4380_78041,288,4380_75047,Waterford,100610-00011-1,1,4380_7778208_3600805,4380_1175 -4380_78041,286,4380_75048,Waterford,100604-00010-1,1,4380_7778208_3600805,4380_1175 -4380_78041,291,4380_75049,Waterford,100837-00013-1,1,4380_7778208_3600806,4380_1176 -4380_78041,289,4380_75050,Waterford,100608-00014-1,1,4380_7778208_3600805,4380_1175 -4380_78041,287,4380_75051,Waterford,100606-00012-1,1,4380_7778208_3600805,4380_1175 -4380_78041,292,4380_75052,Waterford,100605-00016-1,1,4380_7778208_3600805,4380_1175 -4380_78041,290,4380_75053,Waterford,100613-00015-1,1,4380_7778208_3600805,4380_1175 -4380_78041,294,4380_75054,Waterford,100607-00018-1,1,4380_7778208_3600805,4380_1175 -4380_78041,295,4380_75055,Waterford,100609-00019-1,1,4380_7778208_3600805,4380_1175 -4380_78041,293,4380_75056,Waterford,100611-00017-1,1,4380_7778208_3600805,4380_1175 -4380_78041,296,4380_75057,Waterford,100838-00021-1,1,4380_7778208_3600806,4380_1176 -4380_78041,297,4380_75064,Waterford,100949-00008-1,1,4380_7778208_3600807,4380_1174 -4380_78041,285,4380_75065,Waterford,99754-00009-1,1,4380_7778208_3600801,4380_1175 -4380_78041,288,4380_75067,Waterford,99762-00011-1,1,4380_7778208_3600801,4380_1175 -4380_78041,286,4380_75068,Waterford,99760-00010-1,1,4380_7778208_3600801,4380_1175 -4380_78041,291,4380_75069,Waterford,99978-00013-1,1,4380_7778208_3600802,4380_1176 -4380_78041,289,4380_75070,Waterford,99756-00014-1,1,4380_7778208_3600801,4380_1175 -4380_78041,287,4380_75071,Waterford,99758-00012-1,1,4380_7778208_3600801,4380_1175 -4380_78041,292,4380_75072,Waterford,99761-00016-1,1,4380_7778208_3600801,4380_1175 -4380_78041,290,4380_75073,Waterford,99755-00015-1,1,4380_7778208_3600801,4380_1175 -4380_78041,294,4380_75074,Waterford,99759-00018-1,1,4380_7778208_3600801,4380_1175 -4380_78041,295,4380_75075,Waterford,99757-00019-1,1,4380_7778208_3600801,4380_1175 -4380_78041,293,4380_75076,Waterford,99763-00017-1,1,4380_7778208_3600801,4380_1175 -4380_78041,296,4380_75077,Waterford,99979-00021-1,1,4380_7778208_3600802,4380_1176 -4380_78041,297,4380_75084,Waterford,99766-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,285,4380_75085,Waterford,99982-00009-1,1,4380_7778208_3600802,4380_1175 -4380_78041,288,4380_75087,Waterford,99988-00011-1,1,4380_7778208_3600802,4380_1175 -4380_78041,286,4380_75088,Waterford,99986-00010-1,1,4380_7778208_3600802,4380_1175 -4380_78041,291,4380_75089,Waterford,99764-00013-1,1,4380_7778208_3600801,4380_1176 -4380_77953,285,4380_7509,Dublin,5826-00009-1,1,4380_7778208_1090110,4380_111 -4380_78041,289,4380_75090,Waterford,99980-00014-1,1,4380_7778208_3600802,4380_1175 -4380_78041,287,4380_75091,Waterford,99984-00012-1,1,4380_7778208_3600802,4380_1175 -4380_78041,292,4380_75092,Waterford,99987-00016-1,1,4380_7778208_3600802,4380_1175 -4380_78041,290,4380_75093,Waterford,99983-00015-1,1,4380_7778208_3600802,4380_1175 -4380_78041,294,4380_75094,Waterford,99985-00018-1,1,4380_7778208_3600802,4380_1175 -4380_78041,295,4380_75095,Waterford,99981-00019-1,1,4380_7778208_3600802,4380_1175 -4380_78041,293,4380_75096,Waterford,99989-00017-1,1,4380_7778208_3600802,4380_1175 -4380_78041,296,4380_75097,Waterford,99765-00021-1,1,4380_7778208_3600801,4380_1176 -4380_78113,292,4380_751,Dundalk,50189-00016-1,0,4380_7778208_1000908,4380_10 -4380_77953,286,4380_7510,Dublin,5834-00010-1,1,4380_7778208_1090110,4380_111 -4380_78041,297,4380_75104,Waterford,100850-00008-1,1,4380_7778208_3600806,4380_1174 -4380_78041,285,4380_75105,Waterford,100192-00009-1,1,4380_7778208_3600803,4380_1175 -4380_78041,288,4380_75107,Waterford,100186-00011-1,1,4380_7778208_3600803,4380_1175 -4380_78041,286,4380_75108,Waterford,100194-00010-1,1,4380_7778208_3600803,4380_1175 -4380_78041,291,4380_75109,Waterford,100960-00013-1,1,4380_7778208_3600807,4380_1176 -4380_77953,297,4380_7511,Dublin,5766-00008-1,1,4380_7778208_1090108,4380_104 -4380_78041,289,4380_75110,Waterford,100188-00014-1,1,4380_7778208_3600803,4380_1175 -4380_78041,287,4380_75111,Waterford,100190-00012-1,1,4380_7778208_3600803,4380_1175 -4380_78041,292,4380_75112,Waterford,100195-00016-1,1,4380_7778208_3600803,4380_1175 -4380_78041,290,4380_75113,Waterford,100193-00015-1,1,4380_7778208_3600803,4380_1175 -4380_78041,294,4380_75114,Waterford,100191-00018-1,1,4380_7778208_3600803,4380_1175 -4380_78041,295,4380_75115,Waterford,100189-00019-1,1,4380_7778208_3600803,4380_1175 -4380_78041,293,4380_75116,Waterford,100187-00017-1,1,4380_7778208_3600803,4380_1175 -4380_78041,296,4380_75117,Waterford,100961-00021-1,1,4380_7778208_3600807,4380_1176 -4380_77953,288,4380_7512,Dublin,5842-00011-1,1,4380_7778208_1090110,4380_111 -4380_78041,297,4380_75124,Waterford,100627-00008-1,1,4380_7778208_3600805,4380_1174 -4380_78041,285,4380_75125,Waterford,101164-00009-1,1,4380_7778208_3600808,4380_1175 -4380_78041,288,4380_75127,Waterford,101162-00011-1,1,4380_7778208_3600808,4380_1175 -4380_78041,286,4380_75128,Waterford,101158-00010-1,1,4380_7778208_3600808,4380_1175 -4380_78041,291,4380_75129,Waterford,100374-00013-1,1,4380_7778208_3600804,4380_1176 -4380_77953,287,4380_7513,Dublin,5850-00012-1,1,4380_7778208_1090110,4380_111 -4380_78041,289,4380_75130,Waterford,101160-00014-1,1,4380_7778208_3600808,4380_1175 -4380_78041,287,4380_75131,Waterford,101156-00012-1,1,4380_7778208_3600808,4380_1175 -4380_78041,292,4380_75132,Waterford,101159-00016-1,1,4380_7778208_3600808,4380_1175 -4380_78041,290,4380_75133,Waterford,101165-00015-1,1,4380_7778208_3600808,4380_1175 -4380_78041,294,4380_75134,Waterford,101157-00018-1,1,4380_7778208_3600808,4380_1175 -4380_78041,295,4380_75135,Waterford,101161-00019-1,1,4380_7778208_3600808,4380_1175 -4380_78041,293,4380_75136,Waterford,101163-00017-1,1,4380_7778208_3600808,4380_1175 -4380_78041,296,4380_75137,Waterford,100375-00021-1,1,4380_7778208_3600804,4380_1176 -4380_77953,289,4380_7514,Dublin,5818-00014-1,1,4380_7778208_1090110,4380_111 -4380_78041,297,4380_75144,Waterford,100196-00008-1,1,4380_7778208_3600803,4380_1174 -4380_78041,285,4380_75145,Waterford,100632-00009-1,1,4380_7778208_3600805,4380_1175 -4380_78041,288,4380_75147,Waterford,100628-00011-1,1,4380_7778208_3600805,4380_1175 -4380_78041,286,4380_75148,Waterford,100634-00010-1,1,4380_7778208_3600805,4380_1175 -4380_78041,291,4380_75149,Waterford,100853-00013-1,1,4380_7778208_3600806,4380_1176 -4380_77953,290,4380_7515,Dublin,55094-00015-1,1,4380_7778208_1090110,4380_111 -4380_78041,289,4380_75150,Waterford,100630-00014-1,1,4380_7778208_3600805,4380_1175 -4380_78041,287,4380_75151,Waterford,100636-00012-1,1,4380_7778208_3600805,4380_1175 -4380_78041,292,4380_75152,Waterford,100635-00016-1,1,4380_7778208_3600805,4380_1175 -4380_78041,290,4380_75153,Waterford,100633-00015-1,1,4380_7778208_3600805,4380_1175 -4380_78041,294,4380_75154,Waterford,100637-00018-1,1,4380_7778208_3600805,4380_1175 -4380_78041,295,4380_75155,Waterford,100631-00019-1,1,4380_7778208_3600805,4380_1175 -4380_78041,293,4380_75156,Waterford,100629-00017-1,1,4380_7778208_3600805,4380_1175 -4380_78041,296,4380_75157,Waterford,100854-00021-1,1,4380_7778208_3600806,4380_1176 -4380_77953,291,4380_7516,Dublin,5754-00013-1,1,4380_7778208_1090108,4380_114 -4380_78041,297,4380_75164,Waterford,100965-00008-1,1,4380_7778208_3600807,4380_1174 -4380_78041,285,4380_75165,Waterford,99786-00009-1,1,4380_7778208_3600801,4380_1175 -4380_78041,288,4380_75167,Waterford,99784-00011-1,1,4380_7778208_3600801,4380_1175 -4380_78041,286,4380_75168,Waterford,99780-00010-1,1,4380_7778208_3600801,4380_1175 -4380_78041,291,4380_75169,Waterford,100004-00013-1,1,4380_7778208_3600802,4380_1176 -4380_77953,292,4380_7517,Dublin,55096-00016-1,1,4380_7778208_1090110,4380_111 -4380_78041,289,4380_75170,Waterford,99788-00014-1,1,4380_7778208_3600801,4380_1175 -4380_78041,287,4380_75171,Waterford,99782-00012-1,1,4380_7778208_3600801,4380_1175 -4380_78041,292,4380_75172,Waterford,99781-00016-1,1,4380_7778208_3600801,4380_1175 -4380_78041,290,4380_75173,Waterford,99787-00015-1,1,4380_7778208_3600801,4380_1175 -4380_78041,294,4380_75174,Waterford,99783-00018-1,1,4380_7778208_3600801,4380_1175 -4380_78041,295,4380_75175,Waterford,99789-00019-1,1,4380_7778208_3600801,4380_1175 -4380_78041,293,4380_75176,Waterford,99785-00017-1,1,4380_7778208_3600801,4380_1175 -4380_78041,296,4380_75177,Waterford,100005-00021-1,1,4380_7778208_3600802,4380_1176 -4380_77953,293,4380_7518,Dublin,55093-00017-1,1,4380_7778208_1090110,4380_111 -4380_78041,297,4380_75184,Waterford,99790-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,285,4380_75185,Waterford,100012-00009-1,1,4380_7778208_3600802,4380_1175 -4380_78041,288,4380_75187,Waterford,100008-00011-1,1,4380_7778208_3600802,4380_1175 -4380_78041,286,4380_75188,Waterford,100014-00010-1,1,4380_7778208_3600802,4380_1175 -4380_78041,291,4380_75189,Waterford,99791-00013-1,1,4380_7778208_3600801,4380_1176 -4380_77953,294,4380_7519,Dublin,55095-00018-1,1,4380_7778208_1090110,4380_111 -4380_78041,289,4380_75190,Waterford,100006-00014-1,1,4380_7778208_3600802,4380_1175 -4380_78041,287,4380_75191,Waterford,100010-00012-1,1,4380_7778208_3600802,4380_1175 -4380_78041,292,4380_75192,Waterford,100015-00016-1,1,4380_7778208_3600802,4380_1175 -4380_78041,290,4380_75193,Waterford,100013-00015-1,1,4380_7778208_3600802,4380_1175 -4380_78041,294,4380_75194,Waterford,100011-00018-1,1,4380_7778208_3600802,4380_1175 -4380_78041,295,4380_75195,Waterford,100007-00019-1,1,4380_7778208_3600802,4380_1175 -4380_78041,293,4380_75196,Waterford,100009-00017-1,1,4380_7778208_3600802,4380_1175 -4380_78041,296,4380_75197,Waterford,99792-00021-1,1,4380_7778208_3600801,4380_1176 -4380_78113,293,4380_752,Dundalk,50195-00017-1,0,4380_7778208_1000908,4380_10 -4380_77953,295,4380_7520,Dublin,55092-00019-1,1,4380_7778208_1090110,4380_111 -4380_78041,297,4380_75204,Waterford,100868-00008-1,1,4380_7778208_3600806,4380_1174 -4380_78041,285,4380_75205,Waterford,100214-00009-1,1,4380_7778208_3600803,4380_1175 -4380_78041,288,4380_75207,Waterford,100210-00011-1,1,4380_7778208_3600803,4380_1175 -4380_78041,286,4380_75208,Waterford,100218-00010-1,1,4380_7778208_3600803,4380_1175 -4380_78041,291,4380_75209,Waterford,100976-00013-1,1,4380_7778208_3600807,4380_1176 -4380_77953,296,4380_7521,Dublin,55021-00021-1,1,4380_7778208_1090108,4380_114 -4380_78041,289,4380_75210,Waterford,100216-00014-1,1,4380_7778208_3600803,4380_1175 -4380_78041,287,4380_75211,Waterford,100212-00012-1,1,4380_7778208_3600803,4380_1175 -4380_78041,292,4380_75212,Waterford,100219-00016-1,1,4380_7778208_3600803,4380_1175 -4380_78041,290,4380_75213,Waterford,100215-00015-1,1,4380_7778208_3600803,4380_1175 -4380_78041,294,4380_75214,Waterford,100213-00018-1,1,4380_7778208_3600803,4380_1175 -4380_78041,295,4380_75215,Waterford,100217-00019-1,1,4380_7778208_3600803,4380_1175 -4380_78041,293,4380_75216,Waterford,100211-00017-1,1,4380_7778208_3600803,4380_1175 -4380_78041,296,4380_75217,Waterford,100977-00021-1,1,4380_7778208_3600807,4380_1176 -4380_78041,297,4380_75224,Waterford,100651-00008-1,1,4380_7778208_3600805,4380_1174 -4380_78041,285,4380_75225,Waterford,100985-00009-1,1,4380_7778208_3600807,4380_1175 -4380_78041,288,4380_75227,Waterford,100983-00011-1,1,4380_7778208_3600807,4380_1175 -4380_78041,286,4380_75228,Waterford,100987-00010-1,1,4380_7778208_3600807,4380_1175 -4380_78041,291,4380_75229,Waterford,100400-00013-1,1,4380_7778208_3600804,4380_1176 -4380_78041,289,4380_75230,Waterford,100981-00014-1,1,4380_7778208_3600807,4380_1175 -4380_78041,287,4380_75231,Waterford,100979-00012-1,1,4380_7778208_3600807,4380_1175 -4380_78041,292,4380_75232,Waterford,100988-00016-1,1,4380_7778208_3600807,4380_1175 -4380_78041,290,4380_75233,Waterford,100986-00015-1,1,4380_7778208_3600807,4380_1175 -4380_78041,294,4380_75234,Waterford,100980-00018-1,1,4380_7778208_3600807,4380_1175 -4380_78041,295,4380_75235,Waterford,100982-00019-1,1,4380_7778208_3600807,4380_1175 -4380_78041,293,4380_75236,Waterford,100984-00017-1,1,4380_7778208_3600807,4380_1175 -4380_78041,296,4380_75237,Waterford,100401-00021-1,1,4380_7778208_3600804,4380_1176 -4380_78041,297,4380_75244,Waterford,100222-00008-1,1,4380_7778208_3600803,4380_1174 -4380_78041,285,4380_75245,Waterford,101182-00009-1,1,4380_7778208_3600808,4380_1175 -4380_78041,288,4380_75247,Waterford,101178-00011-1,1,4380_7778208_3600808,4380_1175 -4380_78041,286,4380_75248,Waterford,101176-00010-1,1,4380_7778208_3600808,4380_1175 -4380_78041,291,4380_75249,Waterford,100879-00013-1,1,4380_7778208_3600806,4380_1176 -4380_78041,289,4380_75250,Waterford,101180-00014-1,1,4380_7778208_3600808,4380_1175 -4380_78041,287,4380_75251,Waterford,101184-00012-1,1,4380_7778208_3600808,4380_1175 -4380_78041,292,4380_75252,Waterford,101177-00016-1,1,4380_7778208_3600808,4380_1175 -4380_78041,290,4380_75253,Waterford,101183-00015-1,1,4380_7778208_3600808,4380_1175 -4380_78041,294,4380_75254,Waterford,101185-00018-1,1,4380_7778208_3600808,4380_1175 -4380_78041,295,4380_75255,Waterford,101181-00019-1,1,4380_7778208_3600808,4380_1175 -4380_78041,293,4380_75256,Waterford,101179-00017-1,1,4380_7778208_3600808,4380_1175 -4380_78041,296,4380_75257,Waterford,100880-00021-1,1,4380_7778208_3600806,4380_1176 -4380_78041,297,4380_75264,Waterford,100991-00008-1,1,4380_7778208_3600807,4380_1174 -4380_78041,285,4380_75265,Waterford,100660-00009-1,1,4380_7778208_3600805,4380_1175 -4380_78041,288,4380_75267,Waterford,100654-00011-1,1,4380_7778208_3600805,4380_1175 -4380_78041,286,4380_75268,Waterford,100662-00010-1,1,4380_7778208_3600805,4380_1175 -4380_78041,291,4380_75269,Waterford,100029-00013-1,1,4380_7778208_3600802,4380_1176 -4380_78041,289,4380_75270,Waterford,100656-00014-1,1,4380_7778208_3600805,4380_1175 -4380_78041,287,4380_75271,Waterford,100658-00012-1,1,4380_7778208_3600805,4380_1175 -4380_78041,292,4380_75272,Waterford,100663-00016-1,1,4380_7778208_3600805,4380_1175 -4380_78041,290,4380_75273,Waterford,100661-00015-1,1,4380_7778208_3600805,4380_1175 -4380_78041,294,4380_75274,Waterford,100659-00018-1,1,4380_7778208_3600805,4380_1175 -4380_78041,295,4380_75275,Waterford,100657-00019-1,1,4380_7778208_3600805,4380_1175 -4380_78041,293,4380_75276,Waterford,100655-00017-1,1,4380_7778208_3600805,4380_1175 -4380_78041,296,4380_75277,Waterford,100030-00021-1,1,4380_7778208_3600802,4380_1176 -4380_78041,297,4380_75284,Waterford,99818-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,285,4380_75285,Waterford,99816-00009-1,1,4380_7778208_3600801,4380_1175 -4380_78041,288,4380_75287,Waterford,99806-00011-1,1,4380_7778208_3600801,4380_1175 -4380_78041,286,4380_75288,Waterford,99812-00010-1,1,4380_7778208_3600801,4380_1175 -4380_78041,291,4380_75289,Waterford,99814-00013-1,1,4380_7778208_3600801,4380_1176 -4380_77953,285,4380_7529,Dublin,5782-00009-1,1,4380_7778208_1090109,4380_110 -4380_78041,289,4380_75290,Waterford,99808-00014-1,1,4380_7778208_3600801,4380_1175 -4380_78041,287,4380_75291,Waterford,99810-00012-1,1,4380_7778208_3600801,4380_1175 -4380_78041,292,4380_75292,Waterford,99813-00016-1,1,4380_7778208_3600801,4380_1175 -4380_78041,290,4380_75293,Waterford,99817-00015-1,1,4380_7778208_3600801,4380_1175 -4380_78041,294,4380_75294,Waterford,99811-00018-1,1,4380_7778208_3600801,4380_1175 -4380_78041,295,4380_75295,Waterford,99809-00019-1,1,4380_7778208_3600801,4380_1175 -4380_78041,293,4380_75296,Waterford,99807-00017-1,1,4380_7778208_3600801,4380_1175 -4380_78041,296,4380_75297,Waterford,99815-00021-1,1,4380_7778208_3600801,4380_1176 -4380_78113,294,4380_753,Dundalk,50191-00018-1,0,4380_7778208_1000908,4380_10 -4380_77953,286,4380_7530,Dublin,5787-00010-1,1,4380_7778208_1090109,4380_110 -4380_78041,297,4380_75304,Waterford,100894-00008-1,1,4380_7778208_3600806,4380_1174 -4380_78041,285,4380_75305,Waterford,100034-00009-1,1,4380_7778208_3600802,4380_1175 -4380_78041,288,4380_75307,Waterford,100032-00011-1,1,4380_7778208_3600802,4380_1175 -4380_78041,286,4380_75308,Waterford,100036-00010-1,1,4380_7778208_3600802,4380_1175 -4380_78041,291,4380_75309,Waterford,101002-00013-1,1,4380_7778208_3600807,4380_1176 -4380_77953,297,4380_7531,Dublin,5518-00008-1,1,4380_7778208_1090104,4380_105 -4380_78041,289,4380_75310,Waterford,100040-00014-1,1,4380_7778208_3600802,4380_1175 -4380_78041,287,4380_75311,Waterford,100038-00012-1,1,4380_7778208_3600802,4380_1175 -4380_78041,292,4380_75312,Waterford,100037-00016-1,1,4380_7778208_3600802,4380_1175 -4380_78041,290,4380_75313,Waterford,100035-00015-1,1,4380_7778208_3600802,4380_1175 -4380_78041,294,4380_75314,Waterford,100039-00018-1,1,4380_7778208_3600802,4380_1175 -4380_78041,295,4380_75315,Waterford,100041-00019-1,1,4380_7778208_3600802,4380_1175 -4380_78041,293,4380_75316,Waterford,100033-00017-1,1,4380_7778208_3600802,4380_1175 -4380_78041,296,4380_75317,Waterford,101003-00021-1,1,4380_7778208_3600807,4380_1176 -4380_77953,288,4380_7532,Dublin,5792-00011-1,1,4380_7778208_1090109,4380_110 -4380_78041,297,4380_75324,Waterford,100677-00008-1,1,4380_7778208_3600805,4380_1174 -4380_78041,285,4380_75325,Waterford,100421-00009-1,1,4380_7778208_3600804,4380_1175 -4380_78041,288,4380_75327,Waterford,100415-00011-1,1,4380_7778208_3600804,4380_1175 -4380_78041,286,4380_75328,Waterford,100423-00010-1,1,4380_7778208_3600804,4380_1175 -4380_78041,291,4380_75329,Waterford,100417-00013-1,1,4380_7778208_3600804,4380_1176 -4380_77953,287,4380_7533,Dublin,5797-00012-1,1,4380_7778208_1090109,4380_110 -4380_78041,289,4380_75330,Waterford,100425-00014-1,1,4380_7778208_3600804,4380_1175 -4380_78041,287,4380_75331,Waterford,100419-00012-1,1,4380_7778208_3600804,4380_1175 -4380_78041,292,4380_75332,Waterford,100424-00016-1,1,4380_7778208_3600804,4380_1175 -4380_78041,290,4380_75333,Waterford,100422-00015-1,1,4380_7778208_3600804,4380_1175 -4380_78041,294,4380_75334,Waterford,100420-00018-1,1,4380_7778208_3600804,4380_1175 -4380_78041,295,4380_75335,Waterford,100426-00019-1,1,4380_7778208_3600804,4380_1175 -4380_78041,293,4380_75336,Waterford,100416-00017-1,1,4380_7778208_3600804,4380_1175 -4380_78041,296,4380_75337,Waterford,100418-00021-1,1,4380_7778208_3600804,4380_1176 -4380_77953,289,4380_7534,Dublin,5777-00014-1,1,4380_7778208_1090109,4380_110 -4380_78041,297,4380_75344,Waterford,101015-00008-1,1,4380_7778208_3600807,4380_1174 -4380_78041,285,4380_75345,Waterford,100684-00009-1,1,4380_7778208_3600805,4380_1175 -4380_78041,288,4380_75347,Waterford,100686-00011-1,1,4380_7778208_3600805,4380_1175 -4380_78041,286,4380_75348,Waterford,100688-00010-1,1,4380_7778208_3600805,4380_1175 -4380_78041,291,4380_75349,Waterford,100045-00013-1,1,4380_7778208_3600802,4380_1176 -4380_77953,290,4380_7535,Dublin,55062-00015-1,1,4380_7778208_1090109,4380_110 -4380_78041,289,4380_75350,Waterford,100682-00014-1,1,4380_7778208_3600805,4380_1175 -4380_78041,287,4380_75351,Waterford,100680-00012-1,1,4380_7778208_3600805,4380_1175 -4380_78041,292,4380_75352,Waterford,100689-00016-1,1,4380_7778208_3600805,4380_1175 -4380_78041,290,4380_75353,Waterford,100685-00015-1,1,4380_7778208_3600805,4380_1175 -4380_78041,294,4380_75354,Waterford,100681-00018-1,1,4380_7778208_3600805,4380_1175 -4380_78041,295,4380_75355,Waterford,100683-00019-1,1,4380_7778208_3600805,4380_1175 -4380_78041,293,4380_75356,Waterford,100687-00017-1,1,4380_7778208_3600805,4380_1175 -4380_78041,296,4380_75357,Waterford,100046-00021-1,1,4380_7778208_3600802,4380_1176 -4380_77953,291,4380_7536,Dublin,5802-00013-1,1,4380_7778208_1090109,4380_113 -4380_78041,297,4380_75364,Waterford,99840-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,285,4380_75365,Waterford,99843-00009-1,1,4380_7778208_3600801,4380_1175 -4380_78041,288,4380_75367,Waterford,99838-00011-1,1,4380_7778208_3600801,4380_1175 -4380_78041,286,4380_75368,Waterford,99836-00010-1,1,4380_7778208_3600801,4380_1175 -4380_78041,291,4380_75369,Waterford,99832-00013-1,1,4380_7778208_3600801,4380_1176 -4380_77953,292,4380_7537,Dublin,55064-00016-1,1,4380_7778208_1090109,4380_110 -4380_78041,289,4380_75370,Waterford,99834-00014-1,1,4380_7778208_3600801,4380_1175 -4380_78041,287,4380_75371,Waterford,99841-00012-1,1,4380_7778208_3600801,4380_1175 -4380_78041,292,4380_75372,Waterford,99837-00016-1,1,4380_7778208_3600801,4380_1175 -4380_78041,290,4380_75373,Waterford,99844-00015-1,1,4380_7778208_3600801,4380_1175 -4380_78041,294,4380_75374,Waterford,99842-00018-1,1,4380_7778208_3600801,4380_1175 -4380_78041,295,4380_75375,Waterford,99835-00019-1,1,4380_7778208_3600801,4380_1175 -4380_78041,293,4380_75376,Waterford,99839-00017-1,1,4380_7778208_3600801,4380_1175 -4380_78041,296,4380_75377,Waterford,99833-00021-1,1,4380_7778208_3600801,4380_1176 -4380_77953,293,4380_7538,Dublin,55063-00017-1,1,4380_7778208_1090109,4380_110 -4380_78041,297,4380_75384,Waterford,100229-00008-1,1,4380_7778208_3600803,4380_1174 -4380_78041,285,4380_75385,Waterford,100440-00009-1,1,4380_7778208_3600804,4380_1175 -4380_78041,288,4380_75387,Waterford,100446-00011-1,1,4380_7778208_3600804,4380_1175 -4380_78041,286,4380_75388,Waterford,100450-00010-1,1,4380_7778208_3600804,4380_1175 -4380_78041,291,4380_75389,Waterford,100442-00013-1,1,4380_7778208_3600804,4380_1176 -4380_77953,294,4380_7539,Dublin,55065-00018-1,1,4380_7778208_1090109,4380_110 -4380_78041,289,4380_75390,Waterford,100444-00014-1,1,4380_7778208_3600804,4380_1175 -4380_78041,287,4380_75391,Waterford,100448-00012-1,1,4380_7778208_3600804,4380_1175 -4380_78041,292,4380_75392,Waterford,100451-00016-1,1,4380_7778208_3600804,4380_1175 -4380_78041,290,4380_75393,Waterford,100441-00015-1,1,4380_7778208_3600804,4380_1175 -4380_78041,294,4380_75394,Waterford,100449-00018-1,1,4380_7778208_3600804,4380_1175 -4380_78041,295,4380_75395,Waterford,100445-00019-1,1,4380_7778208_3600804,4380_1175 -4380_78041,293,4380_75396,Waterford,100447-00017-1,1,4380_7778208_3600804,4380_1175 -4380_78041,296,4380_75397,Waterford,100443-00021-1,1,4380_7778208_3600804,4380_1176 -4380_78113,295,4380_754,Dundalk,50187-00019-1,0,4380_7778208_1000908,4380_10 -4380_77953,295,4380_7540,Dublin,55066-00019-1,1,4380_7778208_1090109,4380_110 -4380_78041,297,4380_75404,Waterford,100906-00008-1,1,4380_7778208_3600806,4380_1174 -4380_78041,285,4380_75405,Waterford,100706-00009-1,1,4380_7778208_3600805,4380_1175 -4380_78041,288,4380_75407,Waterford,100700-00011-1,1,4380_7778208_3600805,4380_1175 -4380_78041,286,4380_75408,Waterford,100704-00010-1,1,4380_7778208_3600805,4380_1175 -4380_78041,291,4380_75409,Waterford,100049-00013-1,1,4380_7778208_3600802,4380_1176 -4380_77953,296,4380_7541,Dublin,55067-00021-1,1,4380_7778208_1090109,4380_113 -4380_78041,289,4380_75410,Waterford,100702-00014-1,1,4380_7778208_3600805,4380_1175 -4380_78041,287,4380_75411,Waterford,100708-00012-1,1,4380_7778208_3600805,4380_1175 -4380_78041,292,4380_75412,Waterford,100705-00016-1,1,4380_7778208_3600805,4380_1175 -4380_78041,290,4380_75413,Waterford,100707-00015-1,1,4380_7778208_3600805,4380_1175 -4380_78041,294,4380_75414,Waterford,100709-00018-1,1,4380_7778208_3600805,4380_1175 -4380_78041,295,4380_75415,Waterford,100703-00019-1,1,4380_7778208_3600805,4380_1175 -4380_78041,293,4380_75416,Waterford,100701-00017-1,1,4380_7778208_3600805,4380_1175 -4380_78041,296,4380_75417,Waterford,100050-00021-1,1,4380_7778208_3600802,4380_1176 -4380_78041,297,4380_75424,Waterford,99846-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,285,4380_75425,Waterford,101028-00009-1,1,4380_7778208_3600807,4380_1175 -4380_78041,288,4380_75427,Waterford,101032-00011-1,1,4380_7778208_3600807,4380_1175 -4380_78041,286,4380_75428,Waterford,101030-00010-1,1,4380_7778208_3600807,4380_1175 -4380_78041,291,4380_75429,Waterford,100233-00013-1,1,4380_7778208_3600803,4380_1176 -4380_77953,287,4380_7543,Kells,7262-00012-1,1,4380_7778208_10988832,4380_107 -4380_78041,289,4380_75430,Waterford,101026-00014-1,1,4380_7778208_3600807,4380_1175 -4380_78041,287,4380_75431,Waterford,101034-00012-1,1,4380_7778208_3600807,4380_1175 -4380_78041,292,4380_75432,Waterford,101031-00016-1,1,4380_7778208_3600807,4380_1175 -4380_78041,290,4380_75433,Waterford,101029-00015-1,1,4380_7778208_3600807,4380_1175 -4380_78041,294,4380_75434,Waterford,101035-00018-1,1,4380_7778208_3600807,4380_1175 -4380_78041,295,4380_75435,Waterford,101027-00019-1,1,4380_7778208_3600807,4380_1175 -4380_78041,293,4380_75436,Waterford,101033-00017-1,1,4380_7778208_3600807,4380_1175 -4380_78041,296,4380_75437,Waterford,100234-00021-1,1,4380_7778208_3600803,4380_1176 -4380_77953,294,4380_7544,Kells,114817-00018-1,1,4380_7778208_10988832,4380_107 -4380_78041,297,4380_75444,Waterford,100235-00008-1,1,4380_7778208_3600803,4380_1174 -4380_78041,285,4380_75445,Waterford,100472-00009-1,1,4380_7778208_3600804,4380_1175 -4380_78041,288,4380_75447,Waterford,100470-00011-1,1,4380_7778208_3600804,4380_1175 -4380_78041,286,4380_75448,Waterford,100466-00010-1,1,4380_7778208_3600804,4380_1175 -4380_78041,291,4380_75449,Waterford,100464-00013-1,1,4380_7778208_3600804,4380_1176 -4380_78041,289,4380_75450,Waterford,100468-00014-1,1,4380_7778208_3600804,4380_1175 -4380_78041,287,4380_75451,Waterford,100474-00012-1,1,4380_7778208_3600804,4380_1175 -4380_78041,292,4380_75452,Waterford,100467-00016-1,1,4380_7778208_3600804,4380_1175 -4380_78041,290,4380_75453,Waterford,100473-00015-1,1,4380_7778208_3600804,4380_1175 -4380_78041,294,4380_75454,Waterford,100475-00018-1,1,4380_7778208_3600804,4380_1175 -4380_78041,295,4380_75455,Waterford,100469-00019-1,1,4380_7778208_3600804,4380_1175 -4380_78041,293,4380_75456,Waterford,100471-00017-1,1,4380_7778208_3600804,4380_1175 -4380_78041,296,4380_75457,Waterford,100465-00021-1,1,4380_7778208_3600804,4380_1176 -4380_78041,297,4380_75464,Waterford,100908-00008-1,1,4380_7778208_3600806,4380_1174 -4380_78041,285,4380_75465,Waterford,100726-00009-1,1,4380_7778208_3600805,4380_1175 -4380_78041,288,4380_75467,Waterford,100722-00011-1,1,4380_7778208_3600805,4380_1175 -4380_78041,286,4380_75468,Waterford,100728-00010-1,1,4380_7778208_3600805,4380_1175 -4380_78041,291,4380_75469,Waterford,100053-00013-1,1,4380_7778208_3600802,4380_1176 -4380_78041,289,4380_75470,Waterford,100724-00014-1,1,4380_7778208_3600805,4380_1175 -4380_78041,287,4380_75471,Waterford,100720-00012-1,1,4380_7778208_3600805,4380_1175 -4380_78041,292,4380_75472,Waterford,100729-00016-1,1,4380_7778208_3600805,4380_1175 -4380_78041,290,4380_75473,Waterford,100727-00015-1,1,4380_7778208_3600805,4380_1175 -4380_78041,294,4380_75474,Waterford,100721-00018-1,1,4380_7778208_3600805,4380_1175 -4380_78041,295,4380_75475,Waterford,100725-00019-1,1,4380_7778208_3600805,4380_1175 -4380_78041,293,4380_75476,Waterford,100723-00017-1,1,4380_7778208_3600805,4380_1175 -4380_78041,296,4380_75477,Waterford,100054-00021-1,1,4380_7778208_3600802,4380_1176 -4380_78041,297,4380_75484,Waterford,99848-00008-1,1,4380_7778208_3600801,4380_1174 -4380_78041,285,4380_75485,Waterford,101052-00009-1,1,4380_7778208_3600807,4380_1175 -4380_78041,288,4380_75487,Waterford,101046-00011-1,1,4380_7778208_3600807,4380_1175 -4380_78041,286,4380_75488,Waterford,101050-00010-1,1,4380_7778208_3600807,4380_1175 -4380_78041,291,4380_75489,Waterford,100239-00013-1,1,4380_7778208_3600803,4380_1176 -4380_78041,289,4380_75490,Waterford,101054-00014-1,1,4380_7778208_3600807,4380_1175 -4380_78041,287,4380_75491,Waterford,101048-00012-1,1,4380_7778208_3600807,4380_1175 -4380_78041,292,4380_75492,Waterford,101051-00016-1,1,4380_7778208_3600807,4380_1175 -4380_78041,290,4380_75493,Waterford,101053-00015-1,1,4380_7778208_3600807,4380_1175 -4380_78041,294,4380_75494,Waterford,101049-00018-1,1,4380_7778208_3600807,4380_1175 -4380_78041,295,4380_75495,Waterford,101055-00019-1,1,4380_7778208_3600807,4380_1175 -4380_78041,293,4380_75496,Waterford,101047-00017-1,1,4380_7778208_3600807,4380_1175 -4380_78041,296,4380_75497,Waterford,100240-00021-1,1,4380_7778208_3600803,4380_1176 -4380_78113,296,4380_755,Dundalk,50193-00021-1,0,4380_7778208_1000908,4380_16 -4380_78041,297,4380_75504,Waterford,100241-00008-1,1,4380_7778208_3600803,4380_1174 -4380_78041,285,4380_75505,Waterford,100490-00009-1,1,4380_7778208_3600804,4380_1175 -4380_78041,288,4380_75507,Waterford,100492-00011-1,1,4380_7778208_3600804,4380_1175 -4380_78041,286,4380_75508,Waterford,100496-00010-1,1,4380_7778208_3600804,4380_1175 -4380_78041,291,4380_75509,Waterford,100494-00013-1,1,4380_7778208_3600804,4380_1176 -4380_78041,289,4380_75510,Waterford,100498-00014-1,1,4380_7778208_3600804,4380_1175 -4380_78041,287,4380_75511,Waterford,100488-00012-1,1,4380_7778208_3600804,4380_1175 -4380_78041,292,4380_75512,Waterford,100497-00016-1,1,4380_7778208_3600804,4380_1175 -4380_78041,290,4380_75513,Waterford,100491-00015-1,1,4380_7778208_3600804,4380_1175 -4380_78041,294,4380_75514,Waterford,100489-00018-1,1,4380_7778208_3600804,4380_1175 -4380_78041,295,4380_75515,Waterford,100499-00019-1,1,4380_7778208_3600804,4380_1175 -4380_78041,293,4380_75516,Waterford,100493-00017-1,1,4380_7778208_3600804,4380_1175 -4380_78041,296,4380_75517,Waterford,100495-00021-1,1,4380_7778208_3600804,4380_1176 -4380_77953,285,4380_7552,Dublin,5916-00009-1,1,4380_7778208_1090112,4380_110 -4380_78139,285,4380_75523,St. Otterans Terrace,100748-00009-1,0,4380_7778208_3600806,4380_1177 -4380_78139,288,4380_75525,St. Otterans Terrace,100744-00011-1,0,4380_7778208_3600806,4380_1177 -4380_78139,286,4380_75526,St. Otterans Terrace,100742-00010-1,0,4380_7778208_3600806,4380_1177 -4380_78139,291,4380_75527,St. Otterans Terrace,100510-00013-1,0,4380_7778208_3600805,4380_1178 -4380_78139,289,4380_75528,St. Otterans Terrace,100740-00014-1,0,4380_7778208_3600806,4380_1177 -4380_78139,287,4380_75529,St. Otterans Terrace,100746-00012-1,0,4380_7778208_3600806,4380_1177 -4380_77953,286,4380_7553,Dublin,5925-00010-1,1,4380_7778208_1090112,4380_110 -4380_78139,292,4380_75530,St. Otterans Terrace,100743-00016-1,0,4380_7778208_3600806,4380_1177 -4380_78139,290,4380_75531,St. Otterans Terrace,100749-00015-1,0,4380_7778208_3600806,4380_1177 -4380_78139,294,4380_75532,St. Otterans Terrace,100747-00018-1,0,4380_7778208_3600806,4380_1177 -4380_78139,295,4380_75533,St. Otterans Terrace,100741-00019-1,0,4380_7778208_3600806,4380_1177 -4380_78139,293,4380_75534,St. Otterans Terrace,100745-00017-1,0,4380_7778208_3600806,4380_1177 -4380_78139,296,4380_75535,St. Otterans Terrace,100511-00021-1,0,4380_7778208_3600805,4380_1178 -4380_78139,297,4380_75537,St. Otterans Terrace,99887-00008-1,0,4380_7778208_3600802,4380_1177 -4380_77953,297,4380_7554,Dublin,5640-00008-1,1,4380_7778208_1090106,4380_105 -4380_78139,285,4380_75543,St. Otterans Terrace,100275-00009-1,0,4380_7778208_3600804,4380_1177 -4380_78139,288,4380_75545,St. Otterans Terrace,100269-00011-1,0,4380_7778208_3600804,4380_1177 -4380_78139,286,4380_75546,St. Otterans Terrace,100277-00010-1,0,4380_7778208_3600804,4380_1177 -4380_78139,291,4380_75547,St. Otterans Terrace,100085-00013-1,0,4380_7778208_3600803,4380_1178 -4380_78139,289,4380_75548,St. Otterans Terrace,100279-00014-1,0,4380_7778208_3600804,4380_1177 -4380_78139,287,4380_75549,St. Otterans Terrace,100273-00012-1,0,4380_7778208_3600804,4380_1177 -4380_77953,288,4380_7555,Dublin,5934-00011-1,1,4380_7778208_1090112,4380_110 -4380_78139,292,4380_75550,St. Otterans Terrace,100278-00016-1,0,4380_7778208_3600804,4380_1177 -4380_78139,290,4380_75551,St. Otterans Terrace,100276-00015-1,0,4380_7778208_3600804,4380_1177 -4380_78139,294,4380_75552,St. Otterans Terrace,100274-00018-1,0,4380_7778208_3600804,4380_1177 -4380_78139,295,4380_75553,St. Otterans Terrace,100280-00019-1,0,4380_7778208_3600804,4380_1177 -4380_78139,293,4380_75554,St. Otterans Terrace,100270-00017-1,0,4380_7778208_3600804,4380_1177 -4380_78139,296,4380_75555,St. Otterans Terrace,100086-00021-1,0,4380_7778208_3600803,4380_1178 -4380_78139,297,4380_75557,St. Otterans Terrace,100287-00008-1,0,4380_7778208_3600804,4380_1177 -4380_77953,287,4380_7556,Dublin,5941-00012-1,1,4380_7778208_1090112,4380_110 -4380_78139,285,4380_75563,St. Otterans Terrace,100768-00009-1,0,4380_7778208_3600806,4380_1177 -4380_78139,288,4380_75565,St. Otterans Terrace,100762-00011-1,0,4380_7778208_3600806,4380_1177 -4380_78139,286,4380_75566,St. Otterans Terrace,100760-00010-1,0,4380_7778208_3600806,4380_1177 -4380_78139,291,4380_75567,St. Otterans Terrace,100536-00013-1,0,4380_7778208_3600805,4380_1178 -4380_78139,289,4380_75568,St. Otterans Terrace,100766-00014-1,0,4380_7778208_3600806,4380_1177 -4380_78139,287,4380_75569,St. Otterans Terrace,100770-00012-1,0,4380_7778208_3600806,4380_1177 -4380_77953,289,4380_7557,Dublin,5905-00014-1,1,4380_7778208_1090112,4380_110 -4380_78139,292,4380_75570,St. Otterans Terrace,100761-00016-1,0,4380_7778208_3600806,4380_1177 -4380_78139,290,4380_75571,St. Otterans Terrace,100769-00015-1,0,4380_7778208_3600806,4380_1177 -4380_78139,294,4380_75572,St. Otterans Terrace,100771-00018-1,0,4380_7778208_3600806,4380_1177 -4380_78139,295,4380_75573,St. Otterans Terrace,100767-00019-1,0,4380_7778208_3600806,4380_1177 -4380_78139,293,4380_75574,St. Otterans Terrace,100763-00017-1,0,4380_7778208_3600806,4380_1177 -4380_78139,296,4380_75575,St. Otterans Terrace,100537-00021-1,0,4380_7778208_3600805,4380_1178 -4380_77953,290,4380_7558,Dublin,55172-00015-1,1,4380_7778208_1090112,4380_110 -4380_78139,297,4380_75582,St. Otterans Terrace,99913-00008-1,0,4380_7778208_3600802,4380_1177 -4380_78139,285,4380_75583,St. Otterans Terrace,100303-00009-1,0,4380_7778208_3600804,4380_1178 -4380_78139,288,4380_75585,St. Otterans Terrace,100299-00011-1,0,4380_7778208_3600804,4380_1178 -4380_78139,286,4380_75586,St. Otterans Terrace,100301-00010-1,0,4380_7778208_3600804,4380_1178 -4380_78139,291,4380_75587,St. Otterans Terrace,100118-00013-1,0,4380_7778208_3600803,4380_1179 -4380_78139,289,4380_75588,St. Otterans Terrace,100305-00014-1,0,4380_7778208_3600804,4380_1178 -4380_78139,287,4380_75589,St. Otterans Terrace,100297-00012-1,0,4380_7778208_3600804,4380_1178 -4380_77953,291,4380_7559,Dublin,5285-00013-1,1,4380_7778208_1090101,4380_113 -4380_78139,292,4380_75590,St. Otterans Terrace,100302-00016-1,0,4380_7778208_3600804,4380_1178 -4380_78139,290,4380_75591,St. Otterans Terrace,100304-00015-1,0,4380_7778208_3600804,4380_1178 -4380_78139,294,4380_75592,St. Otterans Terrace,100298-00018-1,0,4380_7778208_3600804,4380_1178 -4380_78139,295,4380_75593,St. Otterans Terrace,100306-00019-1,0,4380_7778208_3600804,4380_1178 -4380_78139,293,4380_75594,St. Otterans Terrace,100300-00017-1,0,4380_7778208_3600804,4380_1178 -4380_78139,296,4380_75595,St. Otterans Terrace,100119-00021-1,0,4380_7778208_3600803,4380_1179 -4380_77953,292,4380_7560,Dublin,55173-00016-1,1,4380_7778208_1090112,4380_110 -4380_78139,297,4380_75602,St. Otterans Terrace,100319-00008-1,0,4380_7778208_3600804,4380_1177 -4380_78139,285,4380_75603,St. Otterans Terrace,100796-00009-1,0,4380_7778208_3600806,4380_1178 -4380_78139,288,4380_75605,St. Otterans Terrace,100792-00011-1,0,4380_7778208_3600806,4380_1178 -4380_78139,286,4380_75606,St. Otterans Terrace,100790-00010-1,0,4380_7778208_3600806,4380_1178 -4380_78139,291,4380_75607,St. Otterans Terrace,100562-00013-1,0,4380_7778208_3600805,4380_1179 -4380_78139,289,4380_75608,St. Otterans Terrace,100788-00014-1,0,4380_7778208_3600806,4380_1178 -4380_78139,287,4380_75609,St. Otterans Terrace,100794-00012-1,0,4380_7778208_3600806,4380_1178 -4380_77953,293,4380_7561,Dublin,55171-00017-1,1,4380_7778208_1090112,4380_110 -4380_78139,292,4380_75610,St. Otterans Terrace,100791-00016-1,0,4380_7778208_3600806,4380_1178 -4380_78139,290,4380_75611,St. Otterans Terrace,100797-00015-1,0,4380_7778208_3600806,4380_1178 -4380_78139,294,4380_75612,St. Otterans Terrace,100795-00018-1,0,4380_7778208_3600806,4380_1178 -4380_78139,295,4380_75613,St. Otterans Terrace,100789-00019-1,0,4380_7778208_3600806,4380_1178 -4380_78139,293,4380_75614,St. Otterans Terrace,100793-00017-1,0,4380_7778208_3600806,4380_1178 -4380_78139,296,4380_75615,St. Otterans Terrace,100563-00021-1,0,4380_7778208_3600805,4380_1179 -4380_77953,294,4380_7562,Dublin,55170-00018-1,1,4380_7778208_1090112,4380_110 -4380_78139,297,4380_75622,St. Otterans Terrace,99951-00008-1,0,4380_7778208_3600802,4380_1177 -4380_78139,285,4380_75623,St. Otterans Terrace,100333-00009-1,0,4380_7778208_3600804,4380_1178 -4380_78139,288,4380_75625,St. Otterans Terrace,100325-00011-1,0,4380_7778208_3600804,4380_1178 -4380_78139,286,4380_75626,St. Otterans Terrace,100327-00010-1,0,4380_7778208_3600804,4380_1178 -4380_78139,291,4380_75627,St. Otterans Terrace,100144-00013-1,0,4380_7778208_3600803,4380_1179 -4380_78139,289,4380_75628,St. Otterans Terrace,100329-00014-1,0,4380_7778208_3600804,4380_1178 -4380_78139,287,4380_75629,St. Otterans Terrace,100331-00012-1,0,4380_7778208_3600804,4380_1178 -4380_77953,295,4380_7563,Dublin,55174-00019-1,1,4380_7778208_1090112,4380_110 -4380_78139,292,4380_75630,St. Otterans Terrace,100328-00016-1,0,4380_7778208_3600804,4380_1178 -4380_78139,290,4380_75631,St. Otterans Terrace,100334-00015-1,0,4380_7778208_3600804,4380_1178 -4380_78139,294,4380_75632,St. Otterans Terrace,100332-00018-1,0,4380_7778208_3600804,4380_1178 -4380_78139,295,4380_75633,St. Otterans Terrace,100330-00019-1,0,4380_7778208_3600804,4380_1178 -4380_78139,293,4380_75634,St. Otterans Terrace,100326-00017-1,0,4380_7778208_3600804,4380_1178 -4380_78139,296,4380_75635,St. Otterans Terrace,100145-00021-1,0,4380_7778208_3600803,4380_1179 -4380_77953,296,4380_7564,Dublin,54665-00021-1,1,4380_7778208_1090101,4380_113 -4380_78139,297,4380_75642,St. Otterans Terrace,100347-00008-1,0,4380_7778208_3600804,4380_1177 -4380_78139,285,4380_75643,St. Otterans Terrace,100822-00009-1,0,4380_7778208_3600806,4380_1178 -4380_78139,288,4380_75645,St. Otterans Terrace,100816-00011-1,0,4380_7778208_3600806,4380_1178 -4380_78139,286,4380_75646,St. Otterans Terrace,100818-00010-1,0,4380_7778208_3600806,4380_1178 -4380_78139,291,4380_75647,St. Otterans Terrace,100599-00013-1,0,4380_7778208_3600805,4380_1179 -4380_78139,289,4380_75648,St. Otterans Terrace,100820-00014-1,0,4380_7778208_3600806,4380_1178 -4380_78139,287,4380_75649,St. Otterans Terrace,100814-00012-1,0,4380_7778208_3600806,4380_1178 -4380_78139,292,4380_75650,St. Otterans Terrace,100819-00016-1,0,4380_7778208_3600806,4380_1178 -4380_78139,290,4380_75651,St. Otterans Terrace,100823-00015-1,0,4380_7778208_3600806,4380_1178 -4380_78139,294,4380_75652,St. Otterans Terrace,100815-00018-1,0,4380_7778208_3600806,4380_1178 -4380_78139,295,4380_75653,St. Otterans Terrace,100821-00019-1,0,4380_7778208_3600806,4380_1178 -4380_78139,293,4380_75654,St. Otterans Terrace,100817-00017-1,0,4380_7778208_3600806,4380_1178 -4380_78139,296,4380_75655,St. Otterans Terrace,100600-00021-1,0,4380_7778208_3600805,4380_1179 -4380_78139,297,4380_75662,St. Otterans Terrace,99977-00008-1,0,4380_7778208_3600802,4380_1177 -4380_78139,285,4380_75663,St. Otterans Terrace,100351-00009-1,0,4380_7778208_3600804,4380_1178 -4380_78139,288,4380_75665,St. Otterans Terrace,100353-00011-1,0,4380_7778208_3600804,4380_1178 -4380_78139,286,4380_75666,St. Otterans Terrace,100357-00010-1,0,4380_7778208_3600804,4380_1178 -4380_78139,291,4380_75667,St. Otterans Terrace,100180-00013-1,0,4380_7778208_3600803,4380_1179 -4380_78139,289,4380_75668,St. Otterans Terrace,100355-00014-1,0,4380_7778208_3600804,4380_1178 -4380_78139,287,4380_75669,St. Otterans Terrace,100359-00012-1,0,4380_7778208_3600804,4380_1178 -4380_78139,292,4380_75670,St. Otterans Terrace,100358-00016-1,0,4380_7778208_3600804,4380_1178 -4380_78139,290,4380_75671,St. Otterans Terrace,100352-00015-1,0,4380_7778208_3600804,4380_1178 -4380_78139,294,4380_75672,St. Otterans Terrace,100360-00018-1,0,4380_7778208_3600804,4380_1178 -4380_78139,295,4380_75673,St. Otterans Terrace,100356-00019-1,0,4380_7778208_3600804,4380_1178 -4380_78139,293,4380_75674,St. Otterans Terrace,100354-00017-1,0,4380_7778208_3600804,4380_1178 -4380_78139,296,4380_75675,St. Otterans Terrace,100181-00021-1,0,4380_7778208_3600803,4380_1179 -4380_78139,297,4380_75682,St. Otterans Terrace,100373-00008-1,0,4380_7778208_3600804,4380_1177 -4380_78139,285,4380_75683,St. Otterans Terrace,100844-00009-1,0,4380_7778208_3600806,4380_1178 -4380_78139,288,4380_75685,St. Otterans Terrace,100842-00011-1,0,4380_7778208_3600806,4380_1178 -4380_78139,286,4380_75686,St. Otterans Terrace,100848-00010-1,0,4380_7778208_3600806,4380_1178 -4380_78139,291,4380_75687,St. Otterans Terrace,100625-00013-1,0,4380_7778208_3600805,4380_1179 -4380_78139,289,4380_75688,St. Otterans Terrace,100846-00014-1,0,4380_7778208_3600806,4380_1178 -4380_78139,287,4380_75689,St. Otterans Terrace,100851-00012-1,0,4380_7778208_3600806,4380_1178 -4380_78139,292,4380_75690,St. Otterans Terrace,100849-00016-1,0,4380_7778208_3600806,4380_1178 -4380_78139,290,4380_75691,St. Otterans Terrace,100845-00015-1,0,4380_7778208_3600806,4380_1178 -4380_78139,294,4380_75692,St. Otterans Terrace,100852-00018-1,0,4380_7778208_3600806,4380_1178 -4380_78139,295,4380_75693,St. Otterans Terrace,100847-00019-1,0,4380_7778208_3600806,4380_1178 -4380_78139,293,4380_75694,St. Otterans Terrace,100843-00017-1,0,4380_7778208_3600806,4380_1178 -4380_78139,296,4380_75695,St. Otterans Terrace,100626-00021-1,0,4380_7778208_3600805,4380_1179 -4380_78139,297,4380_75702,St. Otterans Terrace,100003-00008-1,0,4380_7778208_3600802,4380_1177 -4380_78139,285,4380_75703,St. Otterans Terrace,100377-00009-1,0,4380_7778208_3600804,4380_1178 -4380_78139,288,4380_75705,St. Otterans Terrace,100385-00011-1,0,4380_7778208_3600804,4380_1178 -4380_78139,286,4380_75706,St. Otterans Terrace,100379-00010-1,0,4380_7778208_3600804,4380_1178 -4380_78139,291,4380_75707,St. Otterans Terrace,100207-00013-1,0,4380_7778208_3600803,4380_1179 -4380_78139,289,4380_75708,St. Otterans Terrace,100381-00014-1,0,4380_7778208_3600804,4380_1178 -4380_78139,287,4380_75709,St. Otterans Terrace,100383-00012-1,0,4380_7778208_3600804,4380_1178 -4380_78139,292,4380_75710,St. Otterans Terrace,100380-00016-1,0,4380_7778208_3600804,4380_1178 -4380_78139,290,4380_75711,St. Otterans Terrace,100378-00015-1,0,4380_7778208_3600804,4380_1178 -4380_78139,294,4380_75712,St. Otterans Terrace,100384-00018-1,0,4380_7778208_3600804,4380_1178 -4380_78139,295,4380_75713,St. Otterans Terrace,100382-00019-1,0,4380_7778208_3600804,4380_1178 -4380_78139,293,4380_75714,St. Otterans Terrace,100386-00017-1,0,4380_7778208_3600804,4380_1178 -4380_78139,296,4380_75715,St. Otterans Terrace,100208-00021-1,0,4380_7778208_3600803,4380_1179 -4380_77953,285,4380_7572,Dublin,7015-00009-1,1,4380_7778208_1090906,4380_111 -4380_78139,297,4380_75722,St. Otterans Terrace,100399-00008-1,0,4380_7778208_3600804,4380_1177 -4380_78139,285,4380_75723,St. Otterans Terrace,100875-00009-1,0,4380_7778208_3600806,4380_1178 -4380_78139,288,4380_75725,St. Otterans Terrace,100869-00011-1,0,4380_7778208_3600806,4380_1178 -4380_78139,286,4380_75726,St. Otterans Terrace,100871-00010-1,0,4380_7778208_3600806,4380_1178 -4380_78139,291,4380_75727,St. Otterans Terrace,100652-00013-1,0,4380_7778208_3600805,4380_1179 -4380_78139,289,4380_75728,St. Otterans Terrace,100877-00014-1,0,4380_7778208_3600806,4380_1178 -4380_78139,287,4380_75729,St. Otterans Terrace,100873-00012-1,0,4380_7778208_3600806,4380_1178 -4380_77953,286,4380_7573,Dublin,7021-00010-1,1,4380_7778208_1090906,4380_111 -4380_78139,292,4380_75730,St. Otterans Terrace,100872-00016-1,0,4380_7778208_3600806,4380_1178 -4380_78139,290,4380_75731,St. Otterans Terrace,100876-00015-1,0,4380_7778208_3600806,4380_1178 -4380_78139,294,4380_75732,St. Otterans Terrace,100874-00018-1,0,4380_7778208_3600806,4380_1178 -4380_78139,295,4380_75733,St. Otterans Terrace,100878-00019-1,0,4380_7778208_3600806,4380_1178 -4380_78139,293,4380_75734,St. Otterans Terrace,100870-00017-1,0,4380_7778208_3600806,4380_1178 -4380_78139,296,4380_75735,St. Otterans Terrace,100653-00021-1,0,4380_7778208_3600805,4380_1179 -4380_77953,297,4380_7574,Dublin,5367-00008-1,1,4380_7778208_1090102,4380_104 -4380_78139,297,4380_75742,St. Otterans Terrace,100031-00008-1,0,4380_7778208_3600802,4380_1177 -4380_78139,285,4380_75743,St. Otterans Terrace,100998-00009-1,0,4380_7778208_3600807,4380_1178 -4380_78139,288,4380_75745,St. Otterans Terrace,101000-00011-1,0,4380_7778208_3600807,4380_1178 -4380_78139,286,4380_75746,St. Otterans Terrace,100994-00010-1,0,4380_7778208_3600807,4380_1178 -4380_78139,291,4380_75747,St. Otterans Terrace,100223-00013-1,0,4380_7778208_3600803,4380_1179 -4380_78139,289,4380_75748,St. Otterans Terrace,100992-00014-1,0,4380_7778208_3600807,4380_1178 -4380_78139,287,4380_75749,St. Otterans Terrace,100996-00012-1,0,4380_7778208_3600807,4380_1178 -4380_77953,288,4380_7575,Dublin,7027-00011-1,1,4380_7778208_1090906,4380_111 -4380_78139,292,4380_75750,St. Otterans Terrace,100995-00016-1,0,4380_7778208_3600807,4380_1178 -4380_78139,290,4380_75751,St. Otterans Terrace,100999-00015-1,0,4380_7778208_3600807,4380_1178 -4380_78139,294,4380_75752,St. Otterans Terrace,100997-00018-1,0,4380_7778208_3600807,4380_1178 -4380_78139,295,4380_75753,St. Otterans Terrace,100993-00019-1,0,4380_7778208_3600807,4380_1178 -4380_78139,293,4380_75754,St. Otterans Terrace,101001-00017-1,0,4380_7778208_3600807,4380_1178 -4380_78139,296,4380_75755,St. Otterans Terrace,100224-00021-1,0,4380_7778208_3600803,4380_1179 -4380_77953,287,4380_7576,Dublin,7033-00012-1,1,4380_7778208_1090906,4380_111 -4380_78139,297,4380_75762,St. Otterans Terrace,100427-00008-1,0,4380_7778208_3600804,4380_1177 -4380_78139,285,4380_75763,St. Otterans Terrace,100895-00009-1,0,4380_7778208_3600806,4380_1178 -4380_78139,288,4380_75765,St. Otterans Terrace,100897-00011-1,0,4380_7778208_3600806,4380_1178 -4380_78139,286,4380_75766,St. Otterans Terrace,100903-00010-1,0,4380_7778208_3600806,4380_1178 -4380_78139,291,4380_75767,St. Otterans Terrace,100678-00013-1,0,4380_7778208_3600805,4380_1179 -4380_78139,289,4380_75768,St. Otterans Terrace,100899-00014-1,0,4380_7778208_3600806,4380_1178 -4380_78139,287,4380_75769,St. Otterans Terrace,100901-00012-1,0,4380_7778208_3600806,4380_1178 -4380_77953,289,4380_7577,Dublin,7009-00014-1,1,4380_7778208_1090906,4380_111 -4380_78139,292,4380_75770,St. Otterans Terrace,100904-00016-1,0,4380_7778208_3600806,4380_1178 -4380_78139,290,4380_75771,St. Otterans Terrace,100896-00015-1,0,4380_7778208_3600806,4380_1178 -4380_78139,294,4380_75772,St. Otterans Terrace,100902-00018-1,0,4380_7778208_3600806,4380_1178 -4380_78139,295,4380_75773,St. Otterans Terrace,100900-00019-1,0,4380_7778208_3600806,4380_1178 -4380_78139,293,4380_75774,St. Otterans Terrace,100898-00017-1,0,4380_7778208_3600806,4380_1178 -4380_78139,296,4380_75775,St. Otterans Terrace,100679-00021-1,0,4380_7778208_3600805,4380_1179 -4380_77953,290,4380_7578,Dublin,55487-00015-1,1,4380_7778208_1090906,4380_111 -4380_78139,285,4380_75781,Waterford,100262-00009-1,1,4380_7778208_3600804,4380_1180 -4380_78139,288,4380_75783,Waterford,100258-00011-1,1,4380_7778208_3600804,4380_1180 -4380_78139,286,4380_75784,Waterford,100256-00010-1,1,4380_7778208_3600804,4380_1180 -4380_78139,291,4380_75785,Waterford,100067-00013-1,1,4380_7778208_3600803,4380_1181 -4380_78139,289,4380_75786,Waterford,100264-00014-1,1,4380_7778208_3600804,4380_1180 -4380_78139,287,4380_75787,Waterford,100260-00012-1,1,4380_7778208_3600804,4380_1180 -4380_78139,292,4380_75788,Waterford,100257-00016-1,1,4380_7778208_3600804,4380_1180 -4380_78139,290,4380_75789,Waterford,100263-00015-1,1,4380_7778208_3600804,4380_1180 -4380_77953,291,4380_7579,Dublin,6812-00013-1,1,4380_7778208_1090901,4380_114 -4380_78139,294,4380_75790,Waterford,100261-00018-1,1,4380_7778208_3600804,4380_1180 -4380_78139,295,4380_75791,Waterford,100265-00019-1,1,4380_7778208_3600804,4380_1180 -4380_78139,293,4380_75792,Waterford,100259-00017-1,1,4380_7778208_3600804,4380_1180 -4380_78139,296,4380_75793,Waterford,100068-00021-1,1,4380_7778208_3600803,4380_1181 -4380_78139,297,4380_75795,Waterford,100268-00008-1,1,4380_7778208_3600804,4380_1180 -4380_77953,292,4380_7580,Dublin,55485-00016-1,1,4380_7778208_1090906,4380_111 -4380_78139,285,4380_75801,Waterford,100754-00009-1,1,4380_7778208_3600806,4380_1180 -4380_78139,288,4380_75803,Waterford,100758-00011-1,1,4380_7778208_3600806,4380_1180 -4380_78139,286,4380_75804,Waterford,100750-00010-1,1,4380_7778208_3600806,4380_1180 -4380_78139,291,4380_75805,Waterford,100512-00013-1,1,4380_7778208_3600805,4380_1181 -4380_78139,289,4380_75806,Waterford,100752-00014-1,1,4380_7778208_3600806,4380_1180 -4380_78139,287,4380_75807,Waterford,100756-00012-1,1,4380_7778208_3600806,4380_1180 -4380_78139,292,4380_75808,Waterford,100751-00016-1,1,4380_7778208_3600806,4380_1180 -4380_78139,290,4380_75809,Waterford,100755-00015-1,1,4380_7778208_3600806,4380_1180 -4380_77953,293,4380_7581,Dublin,55483-00017-1,1,4380_7778208_1090906,4380_111 -4380_78139,294,4380_75810,Waterford,100757-00018-1,1,4380_7778208_3600806,4380_1180 -4380_78139,295,4380_75811,Waterford,100753-00019-1,1,4380_7778208_3600806,4380_1180 -4380_78139,293,4380_75812,Waterford,100759-00017-1,1,4380_7778208_3600806,4380_1180 -4380_78139,296,4380_75813,Waterford,100513-00021-1,1,4380_7778208_3600805,4380_1181 -4380_77953,294,4380_7582,Dublin,55484-00018-1,1,4380_7778208_1090906,4380_111 -4380_78139,297,4380_75820,Waterford,99900-00008-1,1,4380_7778208_3600802,4380_1180 -4380_78139,285,4380_75821,Waterford,100285-00009-1,1,4380_7778208_3600804,4380_1181 -4380_78139,288,4380_75823,Waterford,100290-00011-1,1,4380_7778208_3600804,4380_1181 -4380_78139,286,4380_75824,Waterford,100292-00010-1,1,4380_7778208_3600804,4380_1181 -4380_78139,291,4380_75825,Waterford,100096-00013-1,1,4380_7778208_3600803,4380_1182 -4380_78139,289,4380_75826,Waterford,100288-00014-1,1,4380_7778208_3600804,4380_1181 -4380_78139,287,4380_75827,Waterford,100283-00012-1,1,4380_7778208_3600804,4380_1181 -4380_78139,292,4380_75828,Waterford,100293-00016-1,1,4380_7778208_3600804,4380_1181 -4380_78139,290,4380_75829,Waterford,100286-00015-1,1,4380_7778208_3600804,4380_1181 -4380_77953,295,4380_7583,Dublin,55486-00019-1,1,4380_7778208_1090906,4380_111 -4380_78139,294,4380_75830,Waterford,100284-00018-1,1,4380_7778208_3600804,4380_1181 -4380_78139,295,4380_75831,Waterford,100289-00019-1,1,4380_7778208_3600804,4380_1181 -4380_78139,293,4380_75832,Waterford,100291-00017-1,1,4380_7778208_3600804,4380_1181 -4380_78139,296,4380_75833,Waterford,100097-00021-1,1,4380_7778208_3600803,4380_1182 -4380_78139,285,4380_75839,Waterford,100772-00009-1,1,4380_7778208_3600806,4380_1180 -4380_77953,296,4380_7584,Dublin,55338-00021-1,1,4380_7778208_1090901,4380_114 -4380_78139,288,4380_75840,Waterford,100776-00011-1,1,4380_7778208_3600806,4380_1180 -4380_78139,286,4380_75841,Waterford,100780-00010-1,1,4380_7778208_3600806,4380_1180 -4380_78139,289,4380_75842,Waterford,100774-00014-1,1,4380_7778208_3600806,4380_1180 -4380_78139,287,4380_75843,Waterford,100778-00012-1,1,4380_7778208_3600806,4380_1180 -4380_78139,292,4380_75844,Waterford,100781-00016-1,1,4380_7778208_3600806,4380_1180 -4380_78139,290,4380_75845,Waterford,100773-00015-1,1,4380_7778208_3600806,4380_1180 -4380_78139,294,4380_75846,Waterford,100779-00018-1,1,4380_7778208_3600806,4380_1180 -4380_78139,295,4380_75847,Waterford,100775-00019-1,1,4380_7778208_3600806,4380_1180 -4380_78139,293,4380_75848,Waterford,100777-00017-1,1,4380_7778208_3600806,4380_1180 -4380_78139,297,4380_75850,Waterford,100296-00008-1,1,4380_7778208_3600804,4380_1180 -4380_78139,291,4380_75852,Waterford,100549-00013-1,1,4380_7778208_3600805,4380_1181 -4380_78139,296,4380_75853,Waterford,100550-00021-1,1,4380_7778208_3600805,4380_1181 -4380_78139,285,4380_75859,Waterford,100313-00009-1,1,4380_7778208_3600804,4380_1180 -4380_78139,288,4380_75860,Waterford,100317-00011-1,1,4380_7778208_3600804,4380_1180 -4380_78139,286,4380_75861,Waterford,100315-00010-1,1,4380_7778208_3600804,4380_1180 -4380_78139,289,4380_75862,Waterford,100311-00014-1,1,4380_7778208_3600804,4380_1180 -4380_78139,287,4380_75863,Waterford,100309-00012-1,1,4380_7778208_3600804,4380_1180 -4380_78139,292,4380_75864,Waterford,100316-00016-1,1,4380_7778208_3600804,4380_1180 -4380_78139,290,4380_75865,Waterford,100314-00015-1,1,4380_7778208_3600804,4380_1180 -4380_78139,294,4380_75866,Waterford,100310-00018-1,1,4380_7778208_3600804,4380_1180 -4380_78139,295,4380_75867,Waterford,100312-00019-1,1,4380_7778208_3600804,4380_1180 -4380_78139,293,4380_75868,Waterford,100318-00017-1,1,4380_7778208_3600804,4380_1180 -4380_78139,297,4380_75870,Waterford,99926-00008-1,1,4380_7778208_3600802,4380_1180 -4380_78139,291,4380_75872,Waterford,100131-00013-1,1,4380_7778208_3600803,4380_1181 -4380_78139,296,4380_75873,Waterford,100132-00021-1,1,4380_7778208_3600803,4380_1181 -4380_78139,285,4380_75879,Waterford,100807-00009-1,1,4380_7778208_3600806,4380_1180 -4380_78139,288,4380_75880,Waterford,100801-00011-1,1,4380_7778208_3600806,4380_1180 -4380_78139,286,4380_75881,Waterford,100809-00010-1,1,4380_7778208_3600806,4380_1180 -4380_78139,289,4380_75882,Waterford,100805-00014-1,1,4380_7778208_3600806,4380_1180 -4380_78139,287,4380_75883,Waterford,100803-00012-1,1,4380_7778208_3600806,4380_1180 -4380_78139,292,4380_75884,Waterford,100810-00016-1,1,4380_7778208_3600806,4380_1180 -4380_78139,290,4380_75885,Waterford,100808-00015-1,1,4380_7778208_3600806,4380_1180 -4380_78139,294,4380_75886,Waterford,100804-00018-1,1,4380_7778208_3600806,4380_1180 -4380_78139,295,4380_75887,Waterford,100806-00019-1,1,4380_7778208_3600806,4380_1180 -4380_78139,293,4380_75888,Waterford,100802-00017-1,1,4380_7778208_3600806,4380_1180 -4380_78139,297,4380_75890,Waterford,100322-00008-1,1,4380_7778208_3600804,4380_1180 -4380_78139,291,4380_75892,Waterford,100575-00013-1,1,4380_7778208_3600805,4380_1181 -4380_78139,296,4380_75893,Waterford,100576-00021-1,1,4380_7778208_3600805,4380_1181 -4380_78139,285,4380_75899,Waterford,100341-00009-1,1,4380_7778208_3600804,4380_1180 -4380_78139,288,4380_75900,Waterford,100337-00011-1,1,4380_7778208_3600804,4380_1180 -4380_78139,286,4380_75901,Waterford,100339-00010-1,1,4380_7778208_3600804,4380_1180 -4380_78139,289,4380_75902,Waterford,100343-00014-1,1,4380_7778208_3600804,4380_1180 -4380_78139,287,4380_75903,Waterford,100335-00012-1,1,4380_7778208_3600804,4380_1180 -4380_78139,292,4380_75904,Waterford,100340-00016-1,1,4380_7778208_3600804,4380_1180 -4380_78139,290,4380_75905,Waterford,100342-00015-1,1,4380_7778208_3600804,4380_1180 -4380_78139,294,4380_75906,Waterford,100336-00018-1,1,4380_7778208_3600804,4380_1180 -4380_78139,295,4380_75907,Waterford,100344-00019-1,1,4380_7778208_3600804,4380_1180 -4380_78139,293,4380_75908,Waterford,100338-00017-1,1,4380_7778208_3600804,4380_1180 -4380_78139,297,4380_75910,Waterford,99964-00008-1,1,4380_7778208_3600802,4380_1180 -4380_78139,291,4380_75912,Waterford,100157-00013-1,1,4380_7778208_3600803,4380_1181 -4380_78139,296,4380_75913,Waterford,100158-00021-1,1,4380_7778208_3600803,4380_1181 -4380_78139,285,4380_75919,Waterford,100827-00009-1,1,4380_7778208_3600806,4380_1180 -4380_77953,285,4380_7592,Dublin,5599-00009-1,1,4380_7778208_1090106,4380_110 -4380_78139,288,4380_75920,Waterford,100833-00011-1,1,4380_7778208_3600806,4380_1180 -4380_78139,286,4380_75921,Waterford,100835-00010-1,1,4380_7778208_3600806,4380_1180 -4380_78139,289,4380_75922,Waterford,100829-00014-1,1,4380_7778208_3600806,4380_1180 -4380_78139,287,4380_75923,Waterford,100831-00012-1,1,4380_7778208_3600806,4380_1180 -4380_78139,292,4380_75924,Waterford,100836-00016-1,1,4380_7778208_3600806,4380_1180 -4380_78139,290,4380_75925,Waterford,100828-00015-1,1,4380_7778208_3600806,4380_1180 -4380_78139,294,4380_75926,Waterford,100832-00018-1,1,4380_7778208_3600806,4380_1180 -4380_78139,295,4380_75927,Waterford,100830-00019-1,1,4380_7778208_3600806,4380_1180 -4380_78139,293,4380_75928,Waterford,100834-00017-1,1,4380_7778208_3600806,4380_1180 -4380_77953,286,4380_7593,Dublin,5607-00010-1,1,4380_7778208_1090106,4380_110 -4380_78139,297,4380_75930,Waterford,100350-00008-1,1,4380_7778208_3600804,4380_1180 -4380_78139,291,4380_75932,Waterford,100602-00013-1,1,4380_7778208_3600805,4380_1181 -4380_78139,296,4380_75933,Waterford,100603-00021-1,1,4380_7778208_3600805,4380_1181 -4380_77953,297,4380_7594,Dublin,5708-00008-1,1,4380_7778208_1090107,4380_105 -4380_78139,297,4380_75940,Waterford,99990-00008-1,1,4380_7778208_3600802,4380_1180 -4380_78139,285,4380_75941,Waterford,100371-00009-1,1,4380_7778208_3600804,4380_1181 -4380_78139,288,4380_75943,Waterford,100367-00011-1,1,4380_7778208_3600804,4380_1181 -4380_78139,286,4380_75944,Waterford,100369-00010-1,1,4380_7778208_3600804,4380_1181 -4380_78139,291,4380_75945,Waterford,100183-00013-1,1,4380_7778208_3600803,4380_1182 -4380_78139,289,4380_75946,Waterford,100363-00014-1,1,4380_7778208_3600804,4380_1181 -4380_78139,287,4380_75947,Waterford,100365-00012-1,1,4380_7778208_3600804,4380_1181 -4380_78139,292,4380_75948,Waterford,100370-00016-1,1,4380_7778208_3600804,4380_1181 -4380_78139,290,4380_75949,Waterford,100372-00015-1,1,4380_7778208_3600804,4380_1181 -4380_77953,288,4380_7595,Dublin,5615-00011-1,1,4380_7778208_1090106,4380_110 -4380_78139,294,4380_75950,Waterford,100366-00018-1,1,4380_7778208_3600804,4380_1181 -4380_78139,295,4380_75951,Waterford,100364-00019-1,1,4380_7778208_3600804,4380_1181 -4380_78139,293,4380_75952,Waterford,100368-00017-1,1,4380_7778208_3600804,4380_1181 -4380_78139,296,4380_75953,Waterford,100184-00021-1,1,4380_7778208_3600803,4380_1182 -4380_77953,287,4380_7596,Dublin,5623-00012-1,1,4380_7778208_1090106,4380_110 -4380_78139,297,4380_75960,Waterford,100376-00008-1,1,4380_7778208_3600804,4380_1180 -4380_78139,285,4380_75961,Waterford,100857-00009-1,1,4380_7778208_3600806,4380_1181 -4380_78139,288,4380_75963,Waterford,100862-00011-1,1,4380_7778208_3600806,4380_1181 -4380_78139,286,4380_75964,Waterford,100855-00010-1,1,4380_7778208_3600806,4380_1181 -4380_78139,291,4380_75965,Waterford,100638-00013-1,1,4380_7778208_3600805,4380_1182 -4380_78139,289,4380_75966,Waterford,100860-00014-1,1,4380_7778208_3600806,4380_1181 -4380_78139,287,4380_75967,Waterford,100864-00012-1,1,4380_7778208_3600806,4380_1181 -4380_78139,292,4380_75968,Waterford,100856-00016-1,1,4380_7778208_3600806,4380_1181 -4380_78139,290,4380_75969,Waterford,100858-00015-1,1,4380_7778208_3600806,4380_1181 -4380_77953,289,4380_7597,Dublin,5591-00014-1,1,4380_7778208_1090106,4380_110 -4380_78139,294,4380_75970,Waterford,100865-00018-1,1,4380_7778208_3600806,4380_1181 -4380_78139,295,4380_75971,Waterford,100861-00019-1,1,4380_7778208_3600806,4380_1181 -4380_78139,293,4380_75972,Waterford,100863-00017-1,1,4380_7778208_3600806,4380_1181 -4380_78139,296,4380_75973,Waterford,100639-00021-1,1,4380_7778208_3600805,4380_1182 -4380_77953,290,4380_7598,Dublin,54937-00015-1,1,4380_7778208_1090106,4380_110 -4380_78139,297,4380_75980,Waterford,100016-00008-1,1,4380_7778208_3600802,4380_1180 -4380_78139,285,4380_75981,Waterford,100393-00009-1,1,4380_7778208_3600804,4380_1181 -4380_78139,288,4380_75983,Waterford,100397-00011-1,1,4380_7778208_3600804,4380_1181 -4380_78139,286,4380_75984,Waterford,100391-00010-1,1,4380_7778208_3600804,4380_1181 -4380_78139,291,4380_75985,Waterford,100220-00013-1,1,4380_7778208_3600803,4380_1182 -4380_78139,289,4380_75986,Waterford,100389-00014-1,1,4380_7778208_3600804,4380_1181 -4380_78139,287,4380_75987,Waterford,100395-00012-1,1,4380_7778208_3600804,4380_1181 -4380_78139,292,4380_75988,Waterford,100392-00016-1,1,4380_7778208_3600804,4380_1181 -4380_78139,290,4380_75989,Waterford,100394-00015-1,1,4380_7778208_3600804,4380_1181 -4380_77953,291,4380_7599,Dublin,5573-00013-1,1,4380_7778208_1090105,4380_113 -4380_78139,294,4380_75990,Waterford,100396-00018-1,1,4380_7778208_3600804,4380_1181 -4380_78139,295,4380_75991,Waterford,100390-00019-1,1,4380_7778208_3600804,4380_1181 -4380_78139,293,4380_75992,Waterford,100398-00017-1,1,4380_7778208_3600804,4380_1181 -4380_78139,296,4380_75993,Waterford,100221-00021-1,1,4380_7778208_3600803,4380_1182 -4380_77946,288,4380_76,Dundalk,50385-00011-1,0,4380_7778208_1000914,4380_1 -4380_77953,292,4380_7600,Dublin,54939-00016-1,1,4380_7778208_1090106,4380_110 -4380_78139,297,4380_76000,Waterford,100410-00008-1,1,4380_7778208_3600804,4380_1180 -4380_78139,285,4380_76001,Waterford,100890-00009-1,1,4380_7778208_3600806,4380_1181 -4380_78139,288,4380_76003,Waterford,100888-00011-1,1,4380_7778208_3600806,4380_1181 -4380_78139,286,4380_76004,Waterford,100886-00010-1,1,4380_7778208_3600806,4380_1181 -4380_78139,291,4380_76005,Waterford,100665-00013-1,1,4380_7778208_3600805,4380_1182 -4380_78139,289,4380_76006,Waterford,100882-00014-1,1,4380_7778208_3600806,4380_1181 -4380_78139,287,4380_76007,Waterford,100884-00012-1,1,4380_7778208_3600806,4380_1181 -4380_78139,292,4380_76008,Waterford,100887-00016-1,1,4380_7778208_3600806,4380_1181 -4380_78139,290,4380_76009,Waterford,100891-00015-1,1,4380_7778208_3600806,4380_1181 -4380_77953,293,4380_7601,Dublin,54936-00017-1,1,4380_7778208_1090106,4380_110 -4380_78139,294,4380_76010,Waterford,100885-00018-1,1,4380_7778208_3600806,4380_1181 -4380_78139,295,4380_76011,Waterford,100883-00019-1,1,4380_7778208_3600806,4380_1181 -4380_78139,293,4380_76012,Waterford,100889-00017-1,1,4380_7778208_3600806,4380_1181 -4380_78139,296,4380_76013,Waterford,100666-00021-1,1,4380_7778208_3600805,4380_1182 -4380_77953,294,4380_7602,Dublin,54935-00018-1,1,4380_7778208_1090106,4380_110 -4380_78139,297,4380_76020,Waterford,100044-00008-1,1,4380_7778208_3600802,4380_1180 -4380_78139,285,4380_76021,Waterford,101005-00009-1,1,4380_7778208_3600807,4380_1181 -4380_78139,288,4380_76023,Waterford,101013-00011-1,1,4380_7778208_3600807,4380_1181 -4380_78139,286,4380_76024,Waterford,101011-00010-1,1,4380_7778208_3600807,4380_1181 -4380_78139,291,4380_76025,Waterford,100226-00013-1,1,4380_7778208_3600803,4380_1182 -4380_78139,289,4380_76026,Waterford,101007-00014-1,1,4380_7778208_3600807,4380_1181 -4380_78139,287,4380_76027,Waterford,101009-00012-1,1,4380_7778208_3600807,4380_1181 -4380_78139,292,4380_76028,Waterford,101012-00016-1,1,4380_7778208_3600807,4380_1181 -4380_78139,290,4380_76029,Waterford,101006-00015-1,1,4380_7778208_3600807,4380_1181 -4380_77953,295,4380_7603,Dublin,54938-00019-1,1,4380_7778208_1090106,4380_110 -4380_78139,294,4380_76030,Waterford,101010-00018-1,1,4380_7778208_3600807,4380_1181 -4380_78139,295,4380_76031,Waterford,101008-00019-1,1,4380_7778208_3600807,4380_1181 -4380_78139,293,4380_76032,Waterford,101014-00017-1,1,4380_7778208_3600807,4380_1181 -4380_78139,296,4380_76033,Waterford,100227-00021-1,1,4380_7778208_3600803,4380_1182 -4380_77953,296,4380_7604,Dublin,54883-00021-1,1,4380_7778208_1090105,4380_113 -4380_78042,297,4380_76040,Dungarvan,101219-00008-1,0,4380_7778208_3620801,4380_1183 -4380_78042,285,4380_76041,Dungarvan,101209-00009-1,0,4380_7778208_3620801,4380_1184 -4380_78042,288,4380_76043,Dungarvan,101217-00011-1,0,4380_7778208_3620801,4380_1184 -4380_78042,286,4380_76044,Dungarvan,101220-00010-1,0,4380_7778208_3620801,4380_1184 -4380_78042,291,4380_76045,Dungarvan,101215-00013-1,0,4380_7778208_3620801,4380_1185 -4380_78042,289,4380_76046,Dungarvan,101213-00014-1,0,4380_7778208_3620801,4380_1184 -4380_78042,287,4380_76047,Dungarvan,101211-00012-1,0,4380_7778208_3620801,4380_1184 -4380_78042,292,4380_76048,Dungarvan,101221-00016-1,0,4380_7778208_3620801,4380_1184 -4380_78042,290,4380_76049,Dungarvan,101210-00015-1,0,4380_7778208_3620801,4380_1184 -4380_78042,294,4380_76050,Dungarvan,101212-00018-1,0,4380_7778208_3620801,4380_1184 -4380_78042,295,4380_76051,Dungarvan,101214-00019-1,0,4380_7778208_3620801,4380_1184 -4380_78042,293,4380_76052,Dungarvan,101218-00017-1,0,4380_7778208_3620801,4380_1184 -4380_78042,296,4380_76053,Dungarvan,101216-00021-1,0,4380_7778208_3620801,4380_1185 -4380_78042,285,4380_76059,Waterford,101200-00009-1,1,4380_7778208_3620801,4380_1187 -4380_78042,288,4380_76061,Waterford,101206-00011-1,1,4380_7778208_3620801,4380_1187 -4380_78042,286,4380_76062,Waterford,101204-00010-1,1,4380_7778208_3620801,4380_1187 -4380_78042,291,4380_76063,Waterford,101198-00013-1,1,4380_7778208_3620801,4380_1188 -4380_78042,289,4380_76064,Waterford,101196-00014-1,1,4380_7778208_3620801,4380_1187 -4380_78042,287,4380_76065,Waterford,101202-00012-1,1,4380_7778208_3620801,4380_1187 -4380_78042,292,4380_76066,Waterford,101205-00016-1,1,4380_7778208_3620801,4380_1187 -4380_78042,290,4380_76067,Waterford,101201-00015-1,1,4380_7778208_3620801,4380_1187 -4380_78042,294,4380_76068,Waterford,101203-00018-1,1,4380_7778208_3620801,4380_1187 -4380_78042,295,4380_76069,Waterford,101197-00019-1,1,4380_7778208_3620801,4380_1187 -4380_78042,293,4380_76070,Waterford,101207-00017-1,1,4380_7778208_3620801,4380_1187 -4380_78042,296,4380_76071,Waterford,101199-00021-1,1,4380_7778208_3620801,4380_1188 -4380_78042,297,4380_76073,Waterford,101208-00008-1,1,4380_7778208_3620801,4380_1186 -4380_78043,288,4380_76075,Thomastown,101222-00011-1,0,4380_7778208_3650801,4380_1189 -4380_78043,293,4380_76076,Thomastown,101223-00017-1,0,4380_7778208_3650801,4380_1189 -4380_78043,288,4380_76078,Thomastown,101226-00011-1,0,4380_7778208_3650801,4380_1189 -4380_78043,293,4380_76079,Thomastown,101227-00017-1,0,4380_7778208_3650801,4380_1189 -4380_78043,288,4380_76081,Waterford,101224-00011-1,1,4380_7778208_3650801,4380_1190 -4380_78043,293,4380_76082,Waterford,101225-00017-1,1,4380_7778208_3650801,4380_1190 -4380_78043,288,4380_76084,Waterford,101228-00011-1,1,4380_7778208_3650801,4380_1190 -4380_78043,293,4380_76085,Waterford,101229-00017-1,1,4380_7778208_3650801,4380_1190 -4380_78044,297,4380_76087,Waterford,101230-00008-1,1,4380_7778208_3660801,4380_1191 -4380_77953,285,4380_7609,Kells,7250-00009-1,1,4380_7778208_10988832,4380_106 -4380_78045,285,4380_76093,Rosslare Harbour,101327-00009-1,0,4380_7778208_3700802,4380_1194 -4380_78045,288,4380_76095,Rosslare Harbour,101319-00011-1,0,4380_7778208_3700802,4380_1194 -4380_78045,286,4380_76096,Rosslare Harbour,101321-00010-1,0,4380_7778208_3700802,4380_1194 -4380_78045,291,4380_76097,Rosslare Harbour,101325-00013-1,0,4380_7778208_3700802,4380_1198 -4380_78045,289,4380_76098,Rosslare Harbour,101323-00014-1,0,4380_7778208_3700802,4380_1194 -4380_78045,287,4380_76099,Rosslare Harbour,101317-00012-1,0,4380_7778208_3700802,4380_1194 -4380_77953,288,4380_7610,Kells,7256-00011-1,1,4380_7778208_10988832,4380_106 -4380_78045,292,4380_76100,Rosslare Harbour,101322-00016-1,0,4380_7778208_3700802,4380_1194 -4380_78045,290,4380_76101,Rosslare Harbour,101328-00015-1,0,4380_7778208_3700802,4380_1194 -4380_78045,294,4380_76102,Rosslare Harbour,101318-00018-1,0,4380_7778208_3700802,4380_1194 -4380_78045,295,4380_76103,Rosslare Harbour,101324-00019-1,0,4380_7778208_3700802,4380_1194 -4380_78045,293,4380_76104,Rosslare Harbour,101320-00017-1,0,4380_7778208_3700802,4380_1194 -4380_78045,296,4380_76105,Rosslare Harbour,101326-00021-1,0,4380_7778208_3700802,4380_1198 -4380_77953,286,4380_7611,Kells,7254-00010-1,1,4380_7778208_10988832,4380_106 -4380_78045,285,4380_76111,Wellingtonbridge,101247-00009-1,0,4380_7778208_3700801,4380_1192 -4380_78045,288,4380_76113,Wellingtonbridge,101245-00011-1,0,4380_7778208_3700801,4380_1192 -4380_78045,286,4380_76114,Wellingtonbridge,101249-00010-1,0,4380_7778208_3700801,4380_1192 -4380_78045,291,4380_76115,Wellingtonbridge,101255-00013-1,0,4380_7778208_3700801,4380_1196 -4380_78045,289,4380_76116,Wellingtonbridge,101251-00014-1,0,4380_7778208_3700801,4380_1192 -4380_78045,287,4380_76117,Wellingtonbridge,101253-00012-1,0,4380_7778208_3700801,4380_1192 -4380_78045,292,4380_76118,Wellingtonbridge,101250-00016-1,0,4380_7778208_3700801,4380_1192 -4380_78045,290,4380_76119,Wellingtonbridge,101248-00015-1,0,4380_7778208_3700801,4380_1192 -4380_77953,289,4380_7612,Kells,7244-00014-1,1,4380_7778208_10988832,4380_106 -4380_78045,294,4380_76120,Wellingtonbridge,101254-00018-1,0,4380_7778208_3700801,4380_1192 -4380_78045,295,4380_76121,Wellingtonbridge,101252-00019-1,0,4380_7778208_3700801,4380_1192 -4380_78045,293,4380_76122,Wellingtonbridge,101246-00017-1,0,4380_7778208_3700801,4380_1192 -4380_78045,296,4380_76123,Wellingtonbridge,101256-00021-1,0,4380_7778208_3700801,4380_1196 -4380_78045,285,4380_76129,Wellingtonbridge,101279-00009-1,0,4380_7778208_3700801,4380_1192 -4380_77953,290,4380_7613,Kells,114820-00015-1,1,4380_7778208_10988832,4380_106 -4380_78045,288,4380_76131,Wellingtonbridge,101275-00011-1,0,4380_7778208_3700801,4380_1192 -4380_78045,286,4380_76132,Wellingtonbridge,101273-00010-1,0,4380_7778208_3700801,4380_1192 -4380_78045,291,4380_76133,Wellingtonbridge,101269-00013-1,0,4380_7778208_3700801,4380_1192 -4380_78045,289,4380_76134,Wellingtonbridge,101271-00014-1,0,4380_7778208_3700801,4380_1192 -4380_78045,287,4380_76135,Wellingtonbridge,101277-00012-1,0,4380_7778208_3700801,4380_1192 -4380_78045,292,4380_76136,Wellingtonbridge,101274-00016-1,0,4380_7778208_3700801,4380_1192 -4380_78045,290,4380_76137,Wellingtonbridge,101280-00015-1,0,4380_7778208_3700801,4380_1192 -4380_78045,294,4380_76138,Wellingtonbridge,101278-00018-1,0,4380_7778208_3700801,4380_1192 -4380_78045,295,4380_76139,Wellingtonbridge,101272-00019-1,0,4380_7778208_3700801,4380_1192 -4380_77953,292,4380_7614,Kells,114821-00016-1,1,4380_7778208_10988832,4380_106 -4380_78045,293,4380_76140,Wellingtonbridge,101276-00017-1,0,4380_7778208_3700801,4380_1192 -4380_78045,296,4380_76141,Wellingtonbridge,101270-00021-1,0,4380_7778208_3700801,4380_1192 -4380_78045,285,4380_76147,Rosslare Harbour,101347-00009-1,0,4380_7778208_3700802,4380_1195 -4380_78045,288,4380_76149,Rosslare Harbour,101343-00011-1,0,4380_7778208_3700802,4380_1195 -4380_77953,293,4380_7615,Kells,114818-00017-1,1,4380_7778208_10988832,4380_106 -4380_78045,286,4380_76150,Rosslare Harbour,101349-00010-1,0,4380_7778208_3700802,4380_1195 -4380_78045,291,4380_76151,Rosslare Harbour,101351-00013-1,0,4380_7778208_3700802,4380_1199 -4380_78045,289,4380_76152,Rosslare Harbour,101345-00014-1,0,4380_7778208_3700802,4380_1195 -4380_78045,287,4380_76153,Rosslare Harbour,101341-00012-1,0,4380_7778208_3700802,4380_1195 -4380_78045,292,4380_76154,Rosslare Harbour,101350-00016-1,0,4380_7778208_3700802,4380_1195 -4380_78045,290,4380_76155,Rosslare Harbour,101348-00015-1,0,4380_7778208_3700802,4380_1195 -4380_78045,294,4380_76156,Rosslare Harbour,101342-00018-1,0,4380_7778208_3700802,4380_1195 -4380_78045,295,4380_76157,Rosslare Harbour,101346-00019-1,0,4380_7778208_3700802,4380_1195 -4380_78045,293,4380_76158,Rosslare Harbour,101344-00017-1,0,4380_7778208_3700802,4380_1195 -4380_78045,296,4380_76159,Rosslare Harbour,101352-00021-1,0,4380_7778208_3700802,4380_1199 -4380_77953,295,4380_7616,Kells,114819-00019-1,1,4380_7778208_10988832,4380_106 -4380_78045,285,4380_76165,Duncannon,101301-00009-1,0,4380_7778208_3700801,4380_1193 -4380_78045,288,4380_76167,Duncannon,101293-00011-1,0,4380_7778208_3700801,4380_1193 -4380_78045,286,4380_76168,Duncannon,101299-00010-1,0,4380_7778208_3700801,4380_1193 -4380_78045,291,4380_76169,Duncannon,101303-00013-1,0,4380_7778208_3700801,4380_1197 -4380_78045,289,4380_76170,Duncannon,101295-00014-1,0,4380_7778208_3700801,4380_1193 -4380_78045,287,4380_76171,Duncannon,101297-00012-1,0,4380_7778208_3700801,4380_1193 -4380_78045,292,4380_76172,Duncannon,101300-00016-1,0,4380_7778208_3700801,4380_1193 -4380_78045,290,4380_76173,Duncannon,101302-00015-1,0,4380_7778208_3700801,4380_1193 -4380_78045,294,4380_76174,Duncannon,101298-00018-1,0,4380_7778208_3700801,4380_1193 -4380_78045,295,4380_76175,Duncannon,101296-00019-1,0,4380_7778208_3700801,4380_1193 -4380_78045,293,4380_76176,Duncannon,101294-00017-1,0,4380_7778208_3700801,4380_1193 -4380_78045,296,4380_76177,Duncannon,101304-00021-1,0,4380_7778208_3700801,4380_1197 -4380_78045,285,4380_76183,University Hospital,101313-00009-1,1,4380_7778208_3700802,4380_1202 -4380_78045,288,4380_76185,University Hospital,101315-00011-1,1,4380_7778208_3700802,4380_1202 -4380_78045,286,4380_76186,University Hospital,101309-00010-1,1,4380_7778208_3700802,4380_1202 -4380_78045,291,4380_76187,University Hospital,101311-00013-1,1,4380_7778208_3700802,4380_1206 -4380_78045,289,4380_76188,University Hospital,101305-00014-1,1,4380_7778208_3700802,4380_1202 -4380_78045,287,4380_76189,University Hospital,101307-00012-1,1,4380_7778208_3700802,4380_1202 -4380_78045,292,4380_76190,University Hospital,101310-00016-1,1,4380_7778208_3700802,4380_1202 -4380_78045,290,4380_76191,University Hospital,101314-00015-1,1,4380_7778208_3700802,4380_1202 -4380_78045,294,4380_76192,University Hospital,101308-00018-1,1,4380_7778208_3700802,4380_1202 -4380_78045,295,4380_76193,University Hospital,101306-00019-1,1,4380_7778208_3700802,4380_1202 -4380_78045,293,4380_76194,University Hospital,101316-00017-1,1,4380_7778208_3700802,4380_1202 -4380_78045,296,4380_76195,University Hospital,101312-00021-1,1,4380_7778208_3700802,4380_1206 -4380_78045,285,4380_76201,University Hospital,101239-00009-1,1,4380_7778208_3700801,4380_1200 -4380_78045,288,4380_76203,University Hospital,101243-00011-1,1,4380_7778208_3700801,4380_1200 -4380_78045,286,4380_76204,University Hospital,101235-00010-1,1,4380_7778208_3700801,4380_1200 -4380_78045,291,4380_76205,University Hospital,101241-00013-1,1,4380_7778208_3700801,4380_1204 -4380_78045,289,4380_76206,University Hospital,101233-00014-1,1,4380_7778208_3700801,4380_1200 -4380_78045,287,4380_76207,University Hospital,101237-00012-1,1,4380_7778208_3700801,4380_1200 -4380_78045,292,4380_76208,University Hospital,101236-00016-1,1,4380_7778208_3700801,4380_1200 -4380_78045,290,4380_76209,University Hospital,101240-00015-1,1,4380_7778208_3700801,4380_1200 -4380_78045,294,4380_76210,University Hospital,101238-00018-1,1,4380_7778208_3700801,4380_1200 -4380_78045,295,4380_76211,University Hospital,101234-00019-1,1,4380_7778208_3700801,4380_1200 -4380_78045,293,4380_76212,University Hospital,101244-00017-1,1,4380_7778208_3700801,4380_1200 -4380_78045,296,4380_76213,University Hospital,101242-00021-1,1,4380_7778208_3700801,4380_1204 -4380_78045,285,4380_76219,Waterford,101257-00009-1,1,4380_7778208_3700801,4380_1201 -4380_78045,288,4380_76221,Waterford,101261-00011-1,1,4380_7778208_3700801,4380_1201 -4380_78045,286,4380_76222,Waterford,101259-00010-1,1,4380_7778208_3700801,4380_1201 -4380_78045,291,4380_76223,Waterford,101263-00013-1,1,4380_7778208_3700801,4380_1205 -4380_78045,289,4380_76224,Waterford,101265-00014-1,1,4380_7778208_3700801,4380_1201 -4380_78045,287,4380_76225,Waterford,101267-00012-1,1,4380_7778208_3700801,4380_1201 -4380_78045,292,4380_76226,Waterford,101260-00016-1,1,4380_7778208_3700801,4380_1201 -4380_78045,290,4380_76227,Waterford,101258-00015-1,1,4380_7778208_3700801,4380_1201 -4380_78045,294,4380_76228,Waterford,101268-00018-1,1,4380_7778208_3700801,4380_1201 -4380_78045,295,4380_76229,Waterford,101266-00019-1,1,4380_7778208_3700801,4380_1201 -4380_78045,293,4380_76230,Waterford,101262-00017-1,1,4380_7778208_3700801,4380_1201 -4380_78045,296,4380_76231,Waterford,101264-00021-1,1,4380_7778208_3700801,4380_1205 -4380_78045,285,4380_76237,Waterford,101335-00009-1,1,4380_7778208_3700802,4380_1203 -4380_78045,288,4380_76239,Waterford,101333-00011-1,1,4380_7778208_3700802,4380_1203 -4380_77953,285,4380_7624,Dublin,5662-00009-1,1,4380_7778208_1090107,4380_110 -4380_78045,286,4380_76240,Waterford,101337-00010-1,1,4380_7778208_3700802,4380_1203 -4380_78045,291,4380_76241,Waterford,101339-00013-1,1,4380_7778208_3700802,4380_1207 -4380_78045,289,4380_76242,Waterford,101331-00014-1,1,4380_7778208_3700802,4380_1203 -4380_78045,287,4380_76243,Waterford,101329-00012-1,1,4380_7778208_3700802,4380_1203 -4380_78045,292,4380_76244,Waterford,101338-00016-1,1,4380_7778208_3700802,4380_1203 -4380_78045,290,4380_76245,Waterford,101336-00015-1,1,4380_7778208_3700802,4380_1203 -4380_78045,294,4380_76246,Waterford,101330-00018-1,1,4380_7778208_3700802,4380_1203 -4380_78045,295,4380_76247,Waterford,101332-00019-1,1,4380_7778208_3700802,4380_1203 -4380_78045,293,4380_76248,Waterford,101334-00017-1,1,4380_7778208_3700802,4380_1203 -4380_78045,296,4380_76249,Waterford,101340-00021-1,1,4380_7778208_3700802,4380_1207 -4380_77953,286,4380_7625,Dublin,5670-00010-1,1,4380_7778208_1090107,4380_110 -4380_78045,285,4380_76255,Waterford,101283-00009-1,1,4380_7778208_3700801,4380_1201 -4380_78045,288,4380_76257,Waterford,101287-00011-1,1,4380_7778208_3700801,4380_1201 -4380_78045,286,4380_76258,Waterford,101291-00010-1,1,4380_7778208_3700801,4380_1201 -4380_78045,291,4380_76259,Waterford,101281-00013-1,1,4380_7778208_3700801,4380_1205 -4380_77953,297,4380_7626,Dublin,5580-00008-1,1,4380_7778208_1090105,4380_105 -4380_78045,289,4380_76260,Waterford,101285-00014-1,1,4380_7778208_3700801,4380_1201 -4380_78045,287,4380_76261,Waterford,101289-00012-1,1,4380_7778208_3700801,4380_1201 -4380_78045,292,4380_76262,Waterford,101292-00016-1,1,4380_7778208_3700801,4380_1201 -4380_78045,290,4380_76263,Waterford,101284-00015-1,1,4380_7778208_3700801,4380_1201 -4380_78045,294,4380_76264,Waterford,101290-00018-1,1,4380_7778208_3700801,4380_1201 -4380_78045,295,4380_76265,Waterford,101286-00019-1,1,4380_7778208_3700801,4380_1201 -4380_78045,293,4380_76266,Waterford,101288-00017-1,1,4380_7778208_3700801,4380_1201 -4380_78045,296,4380_76267,Waterford,101282-00021-1,1,4380_7778208_3700801,4380_1205 -4380_78046,287,4380_76269,Wexford,101353-00012-1,0,4380_7778208_3710801,4380_1208 -4380_77953,288,4380_7627,Dublin,5678-00011-1,1,4380_7778208_1090107,4380_110 -4380_78046,294,4380_76270,Wexford,101354-00018-1,0,4380_7778208_3710801,4380_1208 -4380_78046,287,4380_76272,New Ross,101355-00012-1,1,4380_7778208_3710801,4380_1209 -4380_78046,294,4380_76273,New Ross,101356-00018-1,1,4380_7778208_3710801,4380_1209 -4380_78047,289,4380_76275,Wexford,101357-00014-1,0,4380_7778208_3720801,4380_1211 -4380_78047,295,4380_76276,Wexford,101358-00019-1,0,4380_7778208_3720801,4380_1211 -4380_77953,287,4380_7628,Dublin,5686-00012-1,1,4380_7778208_1090107,4380_110 -4380_78047,285,4380_76282,Wexford,99606-00009-1,0,4380_7778208_3550803,4380_1210 -4380_78047,288,4380_76283,Wexford,99604-00011-1,0,4380_7778208_3550803,4380_1210 -4380_78047,286,4380_76284,Wexford,99600-00010-1,0,4380_7778208_3550803,4380_1210 -4380_78047,289,4380_76285,Wexford,99602-00014-1,0,4380_7778208_3550803,4380_1210 -4380_78047,287,4380_76286,Wexford,99608-00012-1,0,4380_7778208_3550803,4380_1210 -4380_78047,292,4380_76287,Wexford,99601-00016-1,0,4380_7778208_3550803,4380_1210 -4380_78047,290,4380_76288,Wexford,99607-00015-1,0,4380_7778208_3550803,4380_1210 -4380_78047,294,4380_76289,Wexford,99609-00018-1,0,4380_7778208_3550803,4380_1210 -4380_77953,289,4380_7629,Dublin,5654-00014-1,1,4380_7778208_1090107,4380_110 -4380_78047,295,4380_76290,Wexford,99603-00019-1,0,4380_7778208_3550803,4380_1210 -4380_78047,293,4380_76291,Wexford,99605-00017-1,0,4380_7778208_3550803,4380_1210 -4380_78047,289,4380_76293,New Ross,101359-00014-1,1,4380_7778208_3720801,4380_1213 -4380_78047,295,4380_76294,New Ross,101360-00019-1,1,4380_7778208_3720801,4380_1213 -4380_78113,285,4380_763,Dundalk,49804-00009-1,0,4380_7778208_1000904,4380_11 -4380_77953,290,4380_7630,Dublin,54982-00015-1,1,4380_7778208_1090107,4380_110 -4380_78047,285,4380_76300,Waterford,99618-00009-1,1,4380_7778208_3550803,4380_1212 -4380_78047,288,4380_76301,Waterford,99614-00011-1,1,4380_7778208_3550803,4380_1212 -4380_78047,286,4380_76302,Waterford,99610-00010-1,1,4380_7778208_3550803,4380_1212 -4380_78047,289,4380_76303,Waterford,99612-00014-1,1,4380_7778208_3550803,4380_1212 -4380_78047,287,4380_76304,Waterford,99616-00012-1,1,4380_7778208_3550803,4380_1212 -4380_78047,292,4380_76305,Waterford,99611-00016-1,1,4380_7778208_3550803,4380_1212 -4380_78047,290,4380_76306,Waterford,99619-00015-1,1,4380_7778208_3550803,4380_1212 -4380_78047,294,4380_76307,Waterford,99617-00018-1,1,4380_7778208_3550803,4380_1212 -4380_78047,295,4380_76308,Waterford,99613-00019-1,1,4380_7778208_3550803,4380_1212 -4380_78047,293,4380_76309,Waterford,99615-00017-1,1,4380_7778208_3550803,4380_1212 -4380_77953,291,4380_7631,Dublin,5697-00013-1,1,4380_7778208_1090107,4380_113 -4380_78048,285,4380_76311,Wexford,101361-00009-1,0,4380_7778208_3730801,4380_1214 -4380_78048,290,4380_76312,Wexford,101362-00015-1,0,4380_7778208_3730801,4380_1214 -4380_78048,285,4380_76314,New Ross,101363-00009-1,1,4380_7778208_3730801,4380_1215 -4380_78048,290,4380_76315,New Ross,101364-00015-1,1,4380_7778208_3730801,4380_1215 -4380_78049,288,4380_76317,Kilkenny,101365-00011-1,0,4380_7778208_3740801,4380_1216 -4380_78049,293,4380_76318,Kilkenny,101366-00017-1,0,4380_7778208_3740801,4380_1216 -4380_77953,292,4380_7632,Dublin,54980-00016-1,1,4380_7778208_1090107,4380_110 -4380_78049,288,4380_76320,New Ross,101367-00011-1,1,4380_7778208_3740801,4380_1217 -4380_78049,293,4380_76321,New Ross,101368-00017-1,1,4380_7778208_3740801,4380_1217 -4380_78050,286,4380_76323,Enniscorthy,101369-00010-1,0,4380_7778208_3750801,4380_1218 -4380_78050,292,4380_76324,Enniscorthy,101370-00016-1,0,4380_7778208_3750801,4380_1218 -4380_78050,286,4380_76326,New Ross,101371-00010-1,1,4380_7778208_3750801,4380_1219 -4380_78050,292,4380_76327,New Ross,101372-00016-1,1,4380_7778208_3750801,4380_1219 -4380_78051,286,4380_76329,Enniscorthy,48119-00010-1,0,4380_7778208_400807,4380_1220 -4380_77953,293,4380_7633,Dublin,54981-00017-1,1,4380_7778208_1090107,4380_110 -4380_78051,292,4380_76330,Enniscorthy,48120-00016-1,0,4380_7778208_400807,4380_1220 -4380_78051,287,4380_76332,Enniscorthy,48131-00012-1,0,4380_7778208_400807,4380_1220 -4380_78051,294,4380_76333,Enniscorthy,48132-00018-1,0,4380_7778208_400807,4380_1220 -4380_78051,286,4380_76335,Enniscorthy,48137-00010-1,0,4380_7778208_400807,4380_1220 -4380_78051,292,4380_76336,Enniscorthy,48138-00016-1,0,4380_7778208_400807,4380_1220 -4380_78051,286,4380_76338,Wexford,48125-00010-1,1,4380_7778208_400807,4380_1221 -4380_78051,292,4380_76339,Wexford,48126-00016-1,1,4380_7778208_400807,4380_1221 -4380_77953,294,4380_7634,Dublin,54983-00018-1,1,4380_7778208_1090107,4380_110 -4380_78051,287,4380_76341,Wexford,48133-00012-1,1,4380_7778208_400807,4380_1221 -4380_78051,294,4380_76342,Wexford,48134-00018-1,1,4380_7778208_400807,4380_1221 -4380_78051,286,4380_76344,Wexford,48143-00010-1,1,4380_7778208_400807,4380_1221 -4380_78051,292,4380_76345,Wexford,48144-00016-1,1,4380_7778208_400807,4380_1221 -4380_78052,287,4380_76347,Carna,101373-00012-1,0,4380_7778208_3780801,4380_1222 -4380_78052,294,4380_76348,Carna,101374-00018-1,0,4380_7778208_3780801,4380_1222 -4380_77953,295,4380_7635,Dublin,54984-00019-1,1,4380_7778208_1090107,4380_110 -4380_78052,287,4380_76350,Carna,101381-00012-1,0,4380_7778208_3780801,4380_1223 -4380_78052,294,4380_76351,Carna,101382-00018-1,0,4380_7778208_3780801,4380_1223 -4380_78052,287,4380_76353,Wexford,101375-00012-1,1,4380_7778208_3780801,4380_1224 -4380_78052,294,4380_76354,Wexford,101376-00018-1,1,4380_7778208_3780801,4380_1224 -4380_78052,287,4380_76356,Carna,101383-00012-1,1,4380_7778208_3780801,4380_1225 -4380_78052,294,4380_76357,Carna,101384-00018-1,1,4380_7778208_3780801,4380_1225 -4380_78053,291,4380_76359,Gorey,101385-00013-1,0,4380_7778208_3790801,4380_1229 -4380_77953,296,4380_7636,Dublin,54985-00021-1,1,4380_7778208_1090107,4380_113 -4380_78053,296,4380_76360,Gorey,101386-00021-1,0,4380_7778208_3790801,4380_1229 -4380_78053,289,4380_76362,Gorey,48113-00014-1,0,4380_7778208_400807,4380_1226 -4380_78053,295,4380_76363,Gorey,48114-00019-1,0,4380_7778208_400807,4380_1226 -4380_78053,289,4380_76365,Cork,48123-00014-1,0,4380_7778208_400807,4380_1227 -4380_78053,295,4380_76366,Cork,48124-00019-1,0,4380_7778208_400807,4380_1227 -4380_78053,289,4380_76368,Cork,48141-00014-1,0,4380_7778208_400807,4380_1227 -4380_78053,295,4380_76369,Cork,48142-00019-1,0,4380_7778208_400807,4380_1227 -4380_78053,291,4380_76371,Wexford,48059-00013-1,0,4380_7778208_400806,4380_1228 -4380_78053,296,4380_76372,Wexford,48060-00021-1,0,4380_7778208_400806,4380_1228 -4380_78053,289,4380_76374,Gorey,48127-00014-1,1,4380_7778208_400807,4380_1230 -4380_78053,295,4380_76375,Gorey,48128-00019-1,1,4380_7778208_400807,4380_1230 -4380_78053,291,4380_76377,Wexford,101387-00013-1,1,4380_7778208_3790801,4380_1233 -4380_78053,296,4380_76378,Wexford,101388-00021-1,1,4380_7778208_3790801,4380_1233 -4380_78053,289,4380_76380,Wexford,48150-00014-1,1,4380_7778208_400807,4380_1231 -4380_78053,295,4380_76381,Wexford,48151-00019-1,1,4380_7778208_400807,4380_1231 -4380_78053,291,4380_76383,Wexford,48061-00013-1,1,4380_7778208_400806,4380_1232 -4380_78053,296,4380_76384,Wexford,48062-00021-1,1,4380_7778208_400806,4380_1232 -4380_78054,287,4380_76386,Wexford,101377-00012-1,0,4380_7778208_3780801,4380_1235 -4380_78054,294,4380_76387,Wexford,101378-00018-1,0,4380_7778208_3780801,4380_1235 -4380_78054,287,4380_76389,Wexford,48135-00012-1,0,4380_7778208_400807,4380_1234 -4380_78054,294,4380_76390,Wexford,48136-00018-1,0,4380_7778208_400807,4380_1234 -4380_78054,287,4380_76392,Wexford,101379-00012-1,1,4380_7778208_3780801,4380_1237 -4380_78054,294,4380_76393,Wexford,101380-00018-1,1,4380_7778208_3780801,4380_1237 -4380_78054,287,4380_76395,Wexford,48139-00012-1,1,4380_7778208_400807,4380_1236 -4380_78054,294,4380_76396,Wexford,48140-00018-1,1,4380_7778208_400807,4380_1236 -4380_78055,285,4380_76398,Wexford,48049-00009-1,0,4380_7778208_400806,4380_1238 -4380_78055,290,4380_76399,Wexford,48050-00015-1,0,4380_7778208_400806,4380_1238 -4380_78113,286,4380_764,Dundalk,49800-00010-1,0,4380_7778208_1000904,4380_11 -4380_78055,285,4380_76401,Cork,48148-00009-1,0,4380_7778208_400807,4380_1239 -4380_78055,290,4380_76402,Cork,48149-00015-1,0,4380_7778208_400807,4380_1239 -4380_78055,285,4380_76404,Wexford,48053-00009-1,1,4380_7778208_400806,4380_1240 -4380_78055,290,4380_76405,Wexford,48054-00015-1,1,4380_7778208_400806,4380_1240 -4380_78055,285,4380_76407,Wexford,48156-00009-1,1,4380_7778208_400807,4380_1241 -4380_78055,290,4380_76408,Wexford,48157-00015-1,1,4380_7778208_400807,4380_1241 -4380_78056,287,4380_76410,Adamstown,48109-00012-1,0,4380_7778208_400807,4380_1242 -4380_78056,294,4380_76411,Adamstown,48110-00018-1,0,4380_7778208_400807,4380_1242 -4380_78056,287,4380_76413,Wexford,48117-00012-1,0,4380_7778208_400807,4380_1243 -4380_78056,294,4380_76414,Wexford,48118-00018-1,0,4380_7778208_400807,4380_1243 -4380_78056,287,4380_76416,Wexford,48145-00012-1,1,4380_7778208_400807,4380_1244 -4380_78056,294,4380_76417,Wexford,48146-00018-1,1,4380_7778208_400807,4380_1244 -4380_78056,287,4380_76419,Wexford,48158-00012-1,1,4380_7778208_400807,4380_1245 -4380_78056,294,4380_76420,Wexford,48159-00018-1,1,4380_7778208_400807,4380_1245 -4380_78057,286,4380_76422,Wexford,48111-00010-1,0,4380_7778208_400807,4380_1246 -4380_78057,292,4380_76423,Wexford,48112-00016-1,0,4380_7778208_400807,4380_1246 -4380_78057,291,4380_76425,Wexford,48051-00013-1,0,4380_7778208_400806,4380_1246 -4380_78057,296,4380_76426,Wexford,48052-00021-1,0,4380_7778208_400806,4380_1246 -4380_78057,286,4380_76428,Wexford,48152-00010-1,0,4380_7778208_400807,4380_1247 -4380_78057,292,4380_76429,Wexford,48153-00016-1,0,4380_7778208_400807,4380_1247 -4380_78057,291,4380_76431,Wexford,101389-00013-1,0,4380_7778208_3790801,4380_1247 -4380_78057,296,4380_76432,Wexford,101390-00021-1,0,4380_7778208_3790801,4380_1247 -4380_78057,286,4380_76434,Wexford,48115-00010-1,1,4380_7778208_400807,4380_1248 -4380_78057,292,4380_76435,Wexford,48116-00016-1,1,4380_7778208_400807,4380_1248 -4380_78057,291,4380_76437,Wexford,48055-00013-1,1,4380_7778208_400806,4380_1249 -4380_78057,296,4380_76438,Wexford,48056-00021-1,1,4380_7778208_400806,4380_1249 -4380_77953,285,4380_7644,Dublin,5828-00009-1,1,4380_7778208_1090110,4380_111 -4380_78057,286,4380_76440,Wexford,48154-00010-1,1,4380_7778208_400807,4380_1248 -4380_78057,292,4380_76441,Wexford,48155-00016-1,1,4380_7778208_400807,4380_1248 -4380_78057,291,4380_76443,Wexford,101391-00013-1,1,4380_7778208_3790801,4380_1249 -4380_78057,296,4380_76444,Wexford,101392-00021-1,1,4380_7778208_3790801,4380_1249 -4380_77953,286,4380_7645,Dublin,5836-00010-1,1,4380_7778208_1090110,4380_111 -4380_78058,285,4380_76451,Rosslare Harbour,48017-00009-1,0,4380_7778208_400805,4380_1250 -4380_78058,286,4380_76452,Rosslare Harbour,48023-00010-1,0,4380_7778208_400805,4380_1250 -4380_78058,287,4380_76453,Rosslare Harbour,48025-00012-1,0,4380_7778208_400805,4380_1250 -4380_78058,288,4380_76454,Rosslare Harbour,48021-00011-1,0,4380_7778208_400805,4380_1250 -4380_78058,289,4380_76455,Rosslare Harbour,48027-00014-1,0,4380_7778208_400805,4380_1250 -4380_78058,290,4380_76456,Rosslare Harbour,48018-00015-1,0,4380_7778208_400805,4380_1250 -4380_78058,291,4380_76457,Rosslare Harbour,48019-00013-1,0,4380_7778208_400805,4380_1250 -4380_78058,292,4380_76458,Rosslare Harbour,48024-00016-1,0,4380_7778208_400805,4380_1250 -4380_78058,293,4380_76459,Rosslare Harbour,48022-00017-1,0,4380_7778208_400805,4380_1250 -4380_77953,297,4380_7646,Dublin,5296-00008-1,1,4380_7778208_1090101,4380_104 -4380_78058,294,4380_76460,Rosslare Harbour,48026-00018-1,0,4380_7778208_400805,4380_1250 -4380_78058,295,4380_76461,Rosslare Harbour,48028-00019-1,0,4380_7778208_400805,4380_1250 -4380_78058,296,4380_76462,Rosslare Harbour,48020-00021-1,0,4380_7778208_400805,4380_1250 -4380_77953,288,4380_7647,Dublin,5844-00011-1,1,4380_7778208_1090110,4380_111 -4380_77930,285,4380_76470,Waterford,44067-00009-1,0,4380_7778208_40802,4380_1251 -4380_77930,286,4380_76471,Waterford,44069-00010-1,0,4380_7778208_40802,4380_1251 -4380_77930,297,4380_76472,Waterford,44066-00008-1,0,4380_7778208_40802,4380_1251 -4380_77930,287,4380_76473,Waterford,44064-00012-1,0,4380_7778208_40802,4380_1251 -4380_77930,288,4380_76474,Waterford,44058-00011-1,0,4380_7778208_40802,4380_1251 -4380_77930,289,4380_76475,Waterford,44060-00014-1,0,4380_7778208_40802,4380_1251 -4380_77930,290,4380_76476,Waterford,44068-00015-1,0,4380_7778208_40802,4380_1251 -4380_77930,291,4380_76477,Waterford,44062-00013-1,0,4380_7778208_40802,4380_1251 -4380_77930,292,4380_76478,Waterford,44070-00016-1,0,4380_7778208_40802,4380_1251 -4380_77930,293,4380_76479,Waterford,44059-00017-1,0,4380_7778208_40802,4380_1251 -4380_77953,287,4380_7648,Dublin,5852-00012-1,1,4380_7778208_1090110,4380_111 -4380_77930,295,4380_76480,Waterford,44061-00019-1,0,4380_7778208_40802,4380_1251 -4380_77930,294,4380_76481,Waterford,44065-00018-1,0,4380_7778208_40802,4380_1251 -4380_77930,296,4380_76482,Waterford,44063-00021-1,0,4380_7778208_40802,4380_1251 -4380_77953,289,4380_7649,Dublin,5820-00014-1,1,4380_7778208_1090110,4380_111 -4380_77930,285,4380_76490,Waterford,44119-00009-1,0,4380_7778208_40804,4380_1251 -4380_77930,286,4380_76491,Waterford,44114-00010-1,0,4380_7778208_40804,4380_1251 -4380_77930,297,4380_76492,Waterford,44118-00008-1,0,4380_7778208_40804,4380_1251 -4380_77930,287,4380_76493,Waterford,44116-00012-1,0,4380_7778208_40804,4380_1251 -4380_77930,288,4380_76494,Waterford,44121-00011-1,0,4380_7778208_40804,4380_1251 -4380_77930,289,4380_76495,Waterford,44112-00014-1,0,4380_7778208_40804,4380_1251 -4380_77930,290,4380_76496,Waterford,44120-00015-1,0,4380_7778208_40804,4380_1251 -4380_77930,291,4380_76497,Waterford,44110-00013-1,0,4380_7778208_40804,4380_1251 -4380_77930,292,4380_76498,Waterford,44115-00016-1,0,4380_7778208_40804,4380_1251 -4380_77930,293,4380_76499,Waterford,44122-00017-1,0,4380_7778208_40804,4380_1251 -4380_78113,297,4380_765,Dundalk,49726-00008-1,0,4380_7778208_1000903,4380_14 -4380_77953,290,4380_7650,Dublin,55107-00015-1,1,4380_7778208_1090110,4380_111 -4380_77930,295,4380_76500,Waterford,44113-00019-1,0,4380_7778208_40804,4380_1251 -4380_77930,294,4380_76501,Waterford,44117-00018-1,0,4380_7778208_40804,4380_1251 -4380_77930,296,4380_76502,Waterford,44111-00021-1,0,4380_7778208_40804,4380_1251 -4380_77953,291,4380_7651,Dublin,6993-00013-1,1,4380_7778208_1090905,4380_114 -4380_77930,285,4380_76510,Waterford,44171-00009-1,0,4380_7778208_40805,4380_1251 -4380_77930,286,4380_76511,Waterford,44173-00010-1,0,4380_7778208_40805,4380_1251 -4380_77930,297,4380_76512,Waterford,44166-00008-1,0,4380_7778208_40805,4380_1251 -4380_77930,287,4380_76513,Waterford,44167-00012-1,0,4380_7778208_40805,4380_1251 -4380_77930,288,4380_76514,Waterford,44169-00011-1,0,4380_7778208_40805,4380_1251 -4380_77930,289,4380_76515,Waterford,44164-00014-1,0,4380_7778208_40805,4380_1251 -4380_77930,290,4380_76516,Waterford,44172-00015-1,0,4380_7778208_40805,4380_1251 -4380_77930,291,4380_76517,Waterford,44162-00013-1,0,4380_7778208_40805,4380_1251 -4380_77930,292,4380_76518,Waterford,44174-00016-1,0,4380_7778208_40805,4380_1251 -4380_77930,293,4380_76519,Waterford,44170-00017-1,0,4380_7778208_40805,4380_1251 -4380_77953,292,4380_7652,Dublin,55106-00016-1,1,4380_7778208_1090110,4380_111 -4380_77930,295,4380_76520,Waterford,44165-00019-1,0,4380_7778208_40805,4380_1251 -4380_77930,294,4380_76521,Waterford,44168-00018-1,0,4380_7778208_40805,4380_1251 -4380_77930,296,4380_76522,Waterford,44163-00021-1,0,4380_7778208_40805,4380_1251 -4380_77953,293,4380_7653,Dublin,55105-00017-1,1,4380_7778208_1090110,4380_111 -4380_77930,285,4380_76530,Waterford,44041-00009-1,0,4380_7778208_40801,4380_1251 -4380_77930,286,4380_76531,Waterford,44039-00010-1,0,4380_7778208_40801,4380_1251 -4380_77930,297,4380_76532,Waterford,44036-00008-1,0,4380_7778208_40801,4380_1251 -4380_77930,287,4380_76533,Waterford,44034-00012-1,0,4380_7778208_40801,4380_1251 -4380_77930,288,4380_76534,Waterford,44043-00011-1,0,4380_7778208_40801,4380_1251 -4380_77930,289,4380_76535,Waterford,44032-00014-1,0,4380_7778208_40801,4380_1251 -4380_77930,290,4380_76536,Waterford,44042-00015-1,0,4380_7778208_40801,4380_1251 -4380_77930,291,4380_76537,Waterford,44037-00013-1,0,4380_7778208_40801,4380_1251 -4380_77930,292,4380_76538,Waterford,44040-00016-1,0,4380_7778208_40801,4380_1251 -4380_77930,293,4380_76539,Waterford,44044-00017-1,0,4380_7778208_40801,4380_1251 -4380_77953,294,4380_7654,Dublin,55108-00018-1,1,4380_7778208_1090110,4380_111 -4380_77930,295,4380_76540,Waterford,44033-00019-1,0,4380_7778208_40801,4380_1251 -4380_77930,294,4380_76541,Waterford,44035-00018-1,0,4380_7778208_40801,4380_1251 -4380_77930,296,4380_76542,Waterford,44038-00021-1,0,4380_7778208_40801,4380_1251 -4380_77953,295,4380_7655,Dublin,55104-00019-1,1,4380_7778208_1090110,4380_111 -4380_77930,285,4380_76550,Waterford,44088-00009-1,0,4380_7778208_40802,4380_1251 -4380_77930,286,4380_76551,Waterford,44084-00010-1,0,4380_7778208_40802,4380_1251 -4380_77930,297,4380_76552,Waterford,44092-00008-1,0,4380_7778208_40802,4380_1251 -4380_77930,287,4380_76553,Waterford,44093-00012-1,0,4380_7778208_40802,4380_1251 -4380_77930,288,4380_76554,Waterford,44086-00011-1,0,4380_7778208_40802,4380_1251 -4380_77930,289,4380_76555,Waterford,44090-00014-1,0,4380_7778208_40802,4380_1251 -4380_77930,290,4380_76556,Waterford,44089-00015-1,0,4380_7778208_40802,4380_1251 -4380_77930,291,4380_76557,Waterford,44095-00013-1,0,4380_7778208_40802,4380_1251 -4380_77930,292,4380_76558,Waterford,44085-00016-1,0,4380_7778208_40802,4380_1251 -4380_77930,293,4380_76559,Waterford,44087-00017-1,0,4380_7778208_40802,4380_1251 -4380_77953,296,4380_7656,Dublin,55464-00021-1,1,4380_7778208_1090905,4380_114 -4380_77930,295,4380_76560,Waterford,44091-00019-1,0,4380_7778208_40802,4380_1251 -4380_77930,294,4380_76561,Waterford,44094-00018-1,0,4380_7778208_40802,4380_1251 -4380_77930,296,4380_76562,Waterford,44096-00021-1,0,4380_7778208_40802,4380_1251 -4380_77930,285,4380_76570,Waterford,44142-00009-1,0,4380_7778208_40804,4380_1251 -4380_77930,286,4380_76571,Waterford,44144-00010-1,0,4380_7778208_40804,4380_1251 -4380_77930,297,4380_76572,Waterford,44148-00008-1,0,4380_7778208_40804,4380_1251 -4380_77930,287,4380_76573,Waterford,44146-00012-1,0,4380_7778208_40804,4380_1251 -4380_77930,288,4380_76574,Waterford,44136-00011-1,0,4380_7778208_40804,4380_1251 -4380_77930,289,4380_76575,Waterford,44138-00014-1,0,4380_7778208_40804,4380_1251 -4380_77930,290,4380_76576,Waterford,44143-00015-1,0,4380_7778208_40804,4380_1251 -4380_77930,291,4380_76577,Waterford,44140-00013-1,0,4380_7778208_40804,4380_1251 -4380_77930,292,4380_76578,Waterford,44145-00016-1,0,4380_7778208_40804,4380_1251 -4380_77930,293,4380_76579,Waterford,44137-00017-1,0,4380_7778208_40804,4380_1251 -4380_77930,295,4380_76580,Waterford,44139-00019-1,0,4380_7778208_40804,4380_1251 -4380_77930,294,4380_76581,Waterford,44147-00018-1,0,4380_7778208_40804,4380_1251 -4380_77930,296,4380_76582,Waterford,44141-00021-1,0,4380_7778208_40804,4380_1251 -4380_77930,285,4380_76590,Waterford,44196-00009-1,0,4380_7778208_40805,4380_1251 -4380_77930,286,4380_76591,Waterford,44190-00010-1,0,4380_7778208_40805,4380_1251 -4380_77930,297,4380_76592,Waterford,44200-00008-1,0,4380_7778208_40805,4380_1251 -4380_77930,287,4380_76593,Waterford,44198-00012-1,0,4380_7778208_40805,4380_1251 -4380_77930,288,4380_76594,Waterford,44188-00011-1,0,4380_7778208_40805,4380_1251 -4380_77930,289,4380_76595,Waterford,44194-00014-1,0,4380_7778208_40805,4380_1251 -4380_77930,290,4380_76596,Waterford,44197-00015-1,0,4380_7778208_40805,4380_1251 -4380_77930,291,4380_76597,Waterford,44192-00013-1,0,4380_7778208_40805,4380_1251 -4380_77930,292,4380_76598,Waterford,44191-00016-1,0,4380_7778208_40805,4380_1251 -4380_77930,293,4380_76599,Waterford,44189-00017-1,0,4380_7778208_40805,4380_1251 -4380_78113,287,4380_766,Dundalk,49798-00012-1,0,4380_7778208_1000904,4380_11 -4380_77930,295,4380_76600,Waterford,44195-00019-1,0,4380_7778208_40805,4380_1251 -4380_77930,294,4380_76601,Waterford,44199-00018-1,0,4380_7778208_40805,4380_1251 -4380_77930,296,4380_76602,Waterford,44193-00021-1,0,4380_7778208_40805,4380_1251 -4380_77930,285,4380_76610,Waterford,44218-00009-1,0,4380_7778208_40806,4380_1252 -4380_77930,286,4380_76611,Waterford,44222-00010-1,0,4380_7778208_40806,4380_1252 -4380_77930,297,4380_76612,Waterford,44224-00008-1,0,4380_7778208_40806,4380_1252 -4380_77930,287,4380_76613,Waterford,44216-00012-1,0,4380_7778208_40806,4380_1252 -4380_77930,288,4380_76614,Waterford,44225-00011-1,0,4380_7778208_40806,4380_1252 -4380_77930,289,4380_76615,Waterford,44214-00014-1,0,4380_7778208_40806,4380_1252 -4380_77930,290,4380_76616,Waterford,44219-00015-1,0,4380_7778208_40806,4380_1252 -4380_77930,291,4380_76617,Waterford,44220-00013-1,0,4380_7778208_40806,4380_1252 -4380_77930,292,4380_76618,Waterford,44223-00016-1,0,4380_7778208_40806,4380_1252 -4380_77930,293,4380_76619,Waterford,44226-00017-1,0,4380_7778208_40806,4380_1252 -4380_77930,295,4380_76620,Waterford,44215-00019-1,0,4380_7778208_40806,4380_1252 -4380_77930,294,4380_76621,Waterford,44217-00018-1,0,4380_7778208_40806,4380_1252 -4380_77930,296,4380_76622,Waterford,44221-00021-1,0,4380_7778208_40806,4380_1252 -4380_77930,285,4380_76630,Dublin Airport,44049-00009-1,1,4380_7778208_40802,4380_1254 -4380_77930,286,4380_76631,Dublin Airport,44051-00010-1,1,4380_7778208_40802,4380_1254 -4380_77930,297,4380_76632,Dublin Airport,44053-00008-1,1,4380_7778208_40802,4380_1254 -4380_77930,287,4380_76633,Dublin Airport,44054-00012-1,1,4380_7778208_40802,4380_1254 -4380_77930,288,4380_76634,Dublin Airport,44056-00011-1,1,4380_7778208_40802,4380_1254 -4380_77930,289,4380_76635,Dublin Airport,44045-00014-1,1,4380_7778208_40802,4380_1254 -4380_77930,290,4380_76636,Dublin Airport,44050-00015-1,1,4380_7778208_40802,4380_1254 -4380_77930,291,4380_76637,Dublin Airport,44047-00013-1,1,4380_7778208_40802,4380_1254 -4380_77930,292,4380_76638,Dublin Airport,44052-00016-1,1,4380_7778208_40802,4380_1254 -4380_77930,293,4380_76639,Dublin Airport,44057-00017-1,1,4380_7778208_40802,4380_1254 -4380_77953,285,4380_7664,Dublin,5724-00009-1,1,4380_7778208_1090108,4380_110 -4380_77930,295,4380_76640,Dublin Airport,44046-00019-1,1,4380_7778208_40802,4380_1254 -4380_77930,294,4380_76641,Dublin Airport,44055-00018-1,1,4380_7778208_40802,4380_1254 -4380_77930,296,4380_76642,Dublin Airport,44048-00021-1,1,4380_7778208_40802,4380_1254 -4380_77953,286,4380_7665,Dublin,5732-00010-1,1,4380_7778208_1090108,4380_110 -4380_77930,285,4380_76650,Dublin Airport,44100-00009-1,1,4380_7778208_40804,4380_1253 -4380_77930,286,4380_76651,Dublin Airport,44098-00010-1,1,4380_7778208_40804,4380_1253 -4380_77930,297,4380_76652,Dublin Airport,44097-00008-1,1,4380_7778208_40804,4380_1253 -4380_77930,287,4380_76653,Dublin Airport,44102-00012-1,1,4380_7778208_40804,4380_1253 -4380_77930,288,4380_76654,Dublin Airport,44108-00011-1,1,4380_7778208_40804,4380_1253 -4380_77930,289,4380_76655,Dublin Airport,44104-00014-1,1,4380_7778208_40804,4380_1253 -4380_77930,290,4380_76656,Dublin Airport,44101-00015-1,1,4380_7778208_40804,4380_1253 -4380_77930,291,4380_76657,Dublin Airport,44106-00013-1,1,4380_7778208_40804,4380_1253 -4380_77930,292,4380_76658,Dublin Airport,44099-00016-1,1,4380_7778208_40804,4380_1253 -4380_77930,293,4380_76659,Dublin Airport,44109-00017-1,1,4380_7778208_40804,4380_1253 -4380_77953,297,4380_7666,Dublin,5768-00008-1,1,4380_7778208_1090108,4380_105 -4380_77930,295,4380_76660,Dublin Airport,44105-00019-1,1,4380_7778208_40804,4380_1253 -4380_77930,294,4380_76661,Dublin Airport,44103-00018-1,1,4380_7778208_40804,4380_1253 -4380_77930,296,4380_76662,Dublin Airport,44107-00021-1,1,4380_7778208_40804,4380_1253 -4380_77953,288,4380_7667,Dublin,5740-00011-1,1,4380_7778208_1090108,4380_110 -4380_77930,285,4380_76670,Dublin Airport,44158-00009-1,1,4380_7778208_40805,4380_1253 -4380_77930,286,4380_76671,Dublin Airport,44149-00010-1,1,4380_7778208_40805,4380_1253 -4380_77930,297,4380_76672,Dublin Airport,44157-00008-1,1,4380_7778208_40805,4380_1253 -4380_77930,287,4380_76673,Dublin Airport,44153-00012-1,1,4380_7778208_40805,4380_1253 -4380_77930,288,4380_76674,Dublin Airport,44151-00011-1,1,4380_7778208_40805,4380_1253 -4380_77930,289,4380_76675,Dublin Airport,44160-00014-1,1,4380_7778208_40805,4380_1253 -4380_77930,290,4380_76676,Dublin Airport,44159-00015-1,1,4380_7778208_40805,4380_1253 -4380_77930,291,4380_76677,Dublin Airport,44155-00013-1,1,4380_7778208_40805,4380_1253 -4380_77930,292,4380_76678,Dublin Airport,44150-00016-1,1,4380_7778208_40805,4380_1253 -4380_77930,293,4380_76679,Dublin Airport,44152-00017-1,1,4380_7778208_40805,4380_1253 -4380_77953,287,4380_7668,Dublin,5748-00012-1,1,4380_7778208_1090108,4380_110 -4380_77930,295,4380_76680,Dublin Airport,44161-00019-1,1,4380_7778208_40805,4380_1253 -4380_77930,294,4380_76681,Dublin Airport,44154-00018-1,1,4380_7778208_40805,4380_1253 -4380_77930,296,4380_76682,Dublin Airport,44156-00021-1,1,4380_7778208_40805,4380_1253 -4380_77953,289,4380_7669,Dublin,5716-00014-1,1,4380_7778208_1090108,4380_110 -4380_77930,285,4380_76690,Dublin Airport,44026-00009-1,1,4380_7778208_40801,4380_1253 -4380_77930,286,4380_76691,Dublin Airport,44022-00010-1,1,4380_7778208_40801,4380_1253 -4380_77930,297,4380_76692,Dublin Airport,44021-00008-1,1,4380_7778208_40801,4380_1253 -4380_77930,287,4380_76693,Dublin Airport,44028-00012-1,1,4380_7778208_40801,4380_1253 -4380_77930,288,4380_76694,Dublin Airport,44030-00011-1,1,4380_7778208_40801,4380_1253 -4380_77930,289,4380_76695,Dublin Airport,44019-00014-1,1,4380_7778208_40801,4380_1253 -4380_77930,290,4380_76696,Dublin Airport,44027-00015-1,1,4380_7778208_40801,4380_1253 -4380_77930,291,4380_76697,Dublin Airport,44024-00013-1,1,4380_7778208_40801,4380_1253 -4380_77930,292,4380_76698,Dublin Airport,44023-00016-1,1,4380_7778208_40801,4380_1253 -4380_77930,293,4380_76699,Dublin Airport,44031-00017-1,1,4380_7778208_40801,4380_1253 -4380_78113,288,4380_767,Dundalk,49796-00011-1,0,4380_7778208_1000904,4380_11 -4380_77953,290,4380_7670,Dublin,55028-00015-1,1,4380_7778208_1090108,4380_110 -4380_77930,295,4380_76700,Dublin Airport,44020-00019-1,1,4380_7778208_40801,4380_1253 -4380_77930,294,4380_76701,Dublin Airport,44029-00018-1,1,4380_7778208_40801,4380_1253 -4380_77930,296,4380_76702,Dublin Airport,44025-00021-1,1,4380_7778208_40801,4380_1253 -4380_77953,291,4380_7671,Dublin,5425-00013-1,1,4380_7778208_1090103,4380_113 -4380_77930,285,4380_76710,Dublin Airport,44075-00009-1,1,4380_7778208_40802,4380_1253 -4380_77930,286,4380_76711,Dublin Airport,44077-00010-1,1,4380_7778208_40802,4380_1253 -4380_77930,297,4380_76712,Dublin Airport,44083-00008-1,1,4380_7778208_40802,4380_1253 -4380_77930,287,4380_76713,Dublin Airport,44071-00012-1,1,4380_7778208_40802,4380_1253 -4380_77930,288,4380_76714,Dublin Airport,44079-00011-1,1,4380_7778208_40802,4380_1253 -4380_77930,289,4380_76715,Dublin Airport,44081-00014-1,1,4380_7778208_40802,4380_1253 -4380_77930,290,4380_76716,Dublin Airport,44076-00015-1,1,4380_7778208_40802,4380_1253 -4380_77930,291,4380_76717,Dublin Airport,44073-00013-1,1,4380_7778208_40802,4380_1253 -4380_77930,292,4380_76718,Dublin Airport,44078-00016-1,1,4380_7778208_40802,4380_1253 -4380_77930,293,4380_76719,Dublin Airport,44080-00017-1,1,4380_7778208_40802,4380_1253 -4380_77953,292,4380_7672,Dublin,55030-00016-1,1,4380_7778208_1090108,4380_110 -4380_77930,295,4380_76720,Dublin Airport,44082-00019-1,1,4380_7778208_40802,4380_1253 -4380_77930,294,4380_76721,Dublin Airport,44072-00018-1,1,4380_7778208_40802,4380_1253 -4380_77930,296,4380_76722,Dublin Airport,44074-00021-1,1,4380_7778208_40802,4380_1253 -4380_77953,293,4380_7673,Dublin,55032-00017-1,1,4380_7778208_1090108,4380_110 -4380_77930,285,4380_76730,Dublin Airport,44131-00009-1,1,4380_7778208_40804,4380_1253 -4380_77930,286,4380_76731,Dublin Airport,44127-00010-1,1,4380_7778208_40804,4380_1253 -4380_77930,297,4380_76732,Dublin Airport,44133-00008-1,1,4380_7778208_40804,4380_1253 -4380_77930,287,4380_76733,Dublin Airport,44134-00012-1,1,4380_7778208_40804,4380_1253 -4380_77930,288,4380_76734,Dublin Airport,44129-00011-1,1,4380_7778208_40804,4380_1253 -4380_77930,289,4380_76735,Dublin Airport,44125-00014-1,1,4380_7778208_40804,4380_1253 -4380_77930,290,4380_76736,Dublin Airport,44132-00015-1,1,4380_7778208_40804,4380_1253 -4380_77930,291,4380_76737,Dublin Airport,44123-00013-1,1,4380_7778208_40804,4380_1253 -4380_77930,292,4380_76738,Dublin Airport,44128-00016-1,1,4380_7778208_40804,4380_1253 -4380_77930,293,4380_76739,Dublin Airport,44130-00017-1,1,4380_7778208_40804,4380_1253 -4380_77953,294,4380_7674,Dublin,55029-00018-1,1,4380_7778208_1090108,4380_110 -4380_77930,295,4380_76740,Dublin Airport,44126-00019-1,1,4380_7778208_40804,4380_1253 -4380_77930,294,4380_76741,Dublin Airport,44135-00018-1,1,4380_7778208_40804,4380_1253 -4380_77930,296,4380_76742,Dublin Airport,44124-00021-1,1,4380_7778208_40804,4380_1253 -4380_77953,295,4380_7675,Dublin,55031-00019-1,1,4380_7778208_1090108,4380_110 -4380_77930,285,4380_76750,Dublin Airport,44178-00009-1,1,4380_7778208_40805,4380_1253 -4380_77930,286,4380_76751,Dublin Airport,44180-00010-1,1,4380_7778208_40805,4380_1253 -4380_77930,297,4380_76752,Dublin Airport,44177-00008-1,1,4380_7778208_40805,4380_1253 -4380_77930,287,4380_76753,Dublin Airport,44175-00012-1,1,4380_7778208_40805,4380_1253 -4380_77930,288,4380_76754,Dublin Airport,44182-00011-1,1,4380_7778208_40805,4380_1253 -4380_77930,289,4380_76755,Dublin Airport,44184-00014-1,1,4380_7778208_40805,4380_1253 -4380_77930,290,4380_76756,Dublin Airport,44179-00015-1,1,4380_7778208_40805,4380_1253 -4380_77930,291,4380_76757,Dublin Airport,44186-00013-1,1,4380_7778208_40805,4380_1253 -4380_77930,292,4380_76758,Dublin Airport,44181-00016-1,1,4380_7778208_40805,4380_1253 -4380_77930,293,4380_76759,Dublin Airport,44183-00017-1,1,4380_7778208_40805,4380_1253 -4380_77953,296,4380_7676,Dublin,54781-00021-1,1,4380_7778208_1090103,4380_113 -4380_77930,295,4380_76760,Dublin Airport,44185-00019-1,1,4380_7778208_40805,4380_1253 -4380_77930,294,4380_76761,Dublin Airport,44176-00018-1,1,4380_7778208_40805,4380_1253 -4380_77930,296,4380_76762,Dublin Airport,44187-00021-1,1,4380_7778208_40805,4380_1253 -4380_77930,285,4380_76770,Dublin,44201-00009-1,1,4380_7778208_40806,4380_1255 -4380_77930,286,4380_76771,Dublin,44208-00010-1,1,4380_7778208_40806,4380_1255 -4380_77930,297,4380_76772,Dublin,44203-00008-1,1,4380_7778208_40806,4380_1255 -4380_77930,287,4380_76773,Dublin,44212-00012-1,1,4380_7778208_40806,4380_1255 -4380_77930,288,4380_76774,Dublin,44210-00011-1,1,4380_7778208_40806,4380_1255 -4380_77930,289,4380_76775,Dublin,44204-00014-1,1,4380_7778208_40806,4380_1255 -4380_77930,290,4380_76776,Dublin,44202-00015-1,1,4380_7778208_40806,4380_1255 -4380_77930,291,4380_76777,Dublin,44206-00013-1,1,4380_7778208_40806,4380_1255 -4380_77930,292,4380_76778,Dublin,44209-00016-1,1,4380_7778208_40806,4380_1255 -4380_77930,293,4380_76779,Dublin,44211-00017-1,1,4380_7778208_40806,4380_1255 -4380_77930,295,4380_76780,Dublin,44205-00019-1,1,4380_7778208_40806,4380_1255 -4380_77930,294,4380_76781,Dublin,44213-00018-1,1,4380_7778208_40806,4380_1255 -4380_77930,296,4380_76782,Dublin,44207-00021-1,1,4380_7778208_40806,4380_1255 -4380_77937,285,4380_76789,Cork,47530-00009-1,0,4380_7778208_400701,4380_1256 -4380_77937,286,4380_76790,Cork,47526-00010-1,0,4380_7778208_400701,4380_1256 -4380_77937,287,4380_76791,Cork,47524-00012-1,0,4380_7778208_400701,4380_1256 -4380_77937,288,4380_76792,Cork,47532-00011-1,0,4380_7778208_400701,4380_1256 -4380_77937,289,4380_76793,Cork,47522-00014-1,0,4380_7778208_400701,4380_1256 -4380_77937,290,4380_76794,Cork,47531-00015-1,0,4380_7778208_400701,4380_1256 -4380_77937,291,4380_76795,Cork,47528-00013-1,0,4380_7778208_400701,4380_1256 -4380_77937,292,4380_76796,Cork,47527-00016-1,0,4380_7778208_400701,4380_1256 -4380_77937,293,4380_76797,Cork,47533-00017-1,0,4380_7778208_400701,4380_1256 -4380_77937,295,4380_76798,Cork,47523-00019-1,0,4380_7778208_400701,4380_1256 -4380_77937,294,4380_76799,Cork,47525-00018-1,0,4380_7778208_400701,4380_1256 -4380_78113,289,4380_768,Dundalk,49806-00014-1,0,4380_7778208_1000904,4380_11 -4380_77937,296,4380_76800,Cork,47529-00021-1,0,4380_7778208_400701,4380_1256 -4380_77937,285,4380_76808,Rosslare Harbour,48170-00009-1,0,4380_7778208_400808,4380_1260 -4380_77937,286,4380_76809,Rosslare Harbour,48168-00010-1,0,4380_7778208_400808,4380_1260 -4380_77937,297,4380_76810,Rosslare Harbour,47778-00008-1,0,4380_7778208_400801,4380_1260 -4380_77937,287,4380_76811,Rosslare Harbour,48162-00012-1,0,4380_7778208_400808,4380_1260 -4380_77937,288,4380_76812,Rosslare Harbour,48166-00011-1,0,4380_7778208_400808,4380_1260 -4380_77937,289,4380_76813,Rosslare Harbour,48164-00014-1,0,4380_7778208_400808,4380_1260 -4380_77937,290,4380_76814,Rosslare Harbour,48171-00015-1,0,4380_7778208_400808,4380_1260 -4380_77937,291,4380_76815,Rosslare Harbour,48089-00013-1,0,4380_7778208_400807,4380_1260 -4380_77937,292,4380_76816,Rosslare Harbour,48169-00016-1,0,4380_7778208_400808,4380_1260 -4380_77937,293,4380_76817,Rosslare Harbour,48167-00017-1,0,4380_7778208_400808,4380_1260 -4380_77937,294,4380_76818,Rosslare Harbour,48163-00018-1,0,4380_7778208_400808,4380_1260 -4380_77937,295,4380_76819,Rosslare Harbour,48165-00019-1,0,4380_7778208_400808,4380_1260 -4380_77937,296,4380_76820,Rosslare Harbour,48090-00021-1,0,4380_7778208_400807,4380_1260 -4380_77937,285,4380_76827,Cork,47584-00009-1,0,4380_7778208_400702,4380_1256 -4380_77937,286,4380_76828,Cork,47578-00010-1,0,4380_7778208_400702,4380_1256 -4380_77937,287,4380_76829,Cork,47574-00012-1,0,4380_7778208_400702,4380_1256 -4380_77937,288,4380_76830,Cork,47580-00011-1,0,4380_7778208_400702,4380_1256 -4380_77937,289,4380_76831,Cork,47576-00014-1,0,4380_7778208_400702,4380_1256 -4380_77937,290,4380_76832,Cork,47585-00015-1,0,4380_7778208_400702,4380_1256 -4380_77937,291,4380_76833,Cork,47582-00013-1,0,4380_7778208_400702,4380_1256 -4380_77937,292,4380_76834,Cork,47579-00016-1,0,4380_7778208_400702,4380_1256 -4380_77937,293,4380_76835,Cork,47581-00017-1,0,4380_7778208_400702,4380_1256 -4380_77937,295,4380_76836,Cork,47577-00019-1,0,4380_7778208_400702,4380_1256 -4380_77937,294,4380_76837,Cork,47575-00018-1,0,4380_7778208_400702,4380_1256 -4380_77937,296,4380_76838,Cork,47583-00021-1,0,4380_7778208_400702,4380_1256 -4380_77953,285,4380_7684,Dublin,5784-00009-1,1,4380_7778208_1090109,4380_110 -4380_77937,285,4380_76845,Waterford,47361-00009-1,0,4380_7778208_400201,4380_1257 -4380_77937,286,4380_76846,Waterford,47359-00010-1,0,4380_7778208_400201,4380_1257 -4380_77937,287,4380_76847,Waterford,47357-00012-1,0,4380_7778208_400201,4380_1257 -4380_77937,288,4380_76848,Waterford,47355-00011-1,0,4380_7778208_400201,4380_1257 -4380_77937,289,4380_76849,Waterford,47353-00014-1,0,4380_7778208_400201,4380_1257 -4380_77953,286,4380_7685,Dublin,5789-00010-1,1,4380_7778208_1090109,4380_110 -4380_77937,290,4380_76850,Waterford,47362-00015-1,0,4380_7778208_400201,4380_1257 -4380_77937,291,4380_76851,Waterford,47351-00013-1,0,4380_7778208_400201,4380_1257 -4380_77937,292,4380_76852,Waterford,47360-00016-1,0,4380_7778208_400201,4380_1257 -4380_77937,293,4380_76853,Waterford,47356-00017-1,0,4380_7778208_400201,4380_1257 -4380_77937,295,4380_76854,Waterford,47354-00019-1,0,4380_7778208_400201,4380_1257 -4380_77937,294,4380_76855,Waterford,47358-00018-1,0,4380_7778208_400201,4380_1257 -4380_77937,296,4380_76856,Waterford,47352-00021-1,0,4380_7778208_400201,4380_1257 -4380_77953,297,4380_7686,Dublin,6072-00008-1,1,4380_7778208_1090116,4380_105 -4380_77937,285,4380_76864,Cork,47630-00009-1,0,4380_7778208_400703,4380_1256 -4380_77937,286,4380_76865,Cork,47624-00010-1,0,4380_7778208_400703,4380_1256 -4380_77937,297,4380_76866,Cork,47534-00008-1,0,4380_7778208_400701,4380_1256 -4380_77937,287,4380_76867,Cork,47620-00012-1,0,4380_7778208_400703,4380_1256 -4380_77937,288,4380_76868,Cork,47628-00011-1,0,4380_7778208_400703,4380_1256 -4380_77937,289,4380_76869,Cork,47622-00014-1,0,4380_7778208_400703,4380_1256 -4380_77953,288,4380_7687,Dublin,5794-00011-1,1,4380_7778208_1090109,4380_110 -4380_77937,290,4380_76870,Cork,47631-00015-1,0,4380_7778208_400703,4380_1256 -4380_77937,291,4380_76871,Cork,47626-00013-1,0,4380_7778208_400703,4380_1256 -4380_77937,292,4380_76872,Cork,47625-00016-1,0,4380_7778208_400703,4380_1256 -4380_77937,293,4380_76873,Cork,47629-00017-1,0,4380_7778208_400703,4380_1256 -4380_77937,295,4380_76874,Cork,47623-00019-1,0,4380_7778208_400703,4380_1256 -4380_77937,294,4380_76875,Cork,47621-00018-1,0,4380_7778208_400703,4380_1256 -4380_77937,296,4380_76876,Cork,47627-00021-1,0,4380_7778208_400703,4380_1256 -4380_77953,287,4380_7688,Dublin,5799-00012-1,1,4380_7778208_1090109,4380_110 -4380_77937,285,4380_76883,Wexford,48105-00009-1,0,4380_7778208_400807,4380_1261 -4380_77937,286,4380_76884,Wexford,48099-00010-1,0,4380_7778208_400807,4380_1261 -4380_77937,287,4380_76885,Wexford,48101-00012-1,0,4380_7778208_400807,4380_1261 -4380_77937,288,4380_76886,Wexford,48045-00011-1,0,4380_7778208_400806,4380_1261 -4380_77937,289,4380_76887,Wexford,48103-00014-1,0,4380_7778208_400807,4380_1261 -4380_77937,290,4380_76888,Wexford,48106-00015-1,0,4380_7778208_400807,4380_1261 -4380_77937,291,4380_76889,Wexford,48047-00013-1,0,4380_7778208_400806,4380_1261 -4380_77953,289,4380_7689,Dublin,5779-00014-1,1,4380_7778208_1090109,4380_110 -4380_77937,292,4380_76890,Wexford,48100-00016-1,0,4380_7778208_400807,4380_1261 -4380_77937,293,4380_76891,Wexford,48046-00017-1,0,4380_7778208_400806,4380_1261 -4380_77937,294,4380_76892,Wexford,48102-00018-1,0,4380_7778208_400807,4380_1261 -4380_77937,295,4380_76893,Wexford,48104-00019-1,0,4380_7778208_400807,4380_1261 -4380_77937,296,4380_76894,Wexford,48048-00021-1,0,4380_7778208_400806,4380_1261 -4380_78113,290,4380_769,Dundalk,49805-00015-1,0,4380_7778208_1000904,4380_11 -4380_77953,290,4380_7690,Dublin,55078-00015-1,1,4380_7778208_1090109,4380_110 -4380_77937,285,4380_76902,Waterford,47486-00009-1,0,4380_7778208_400204,4380_1258 -4380_77937,286,4380_76903,Waterford,47484-00010-1,0,4380_7778208_400204,4380_1258 -4380_77937,297,4380_76904,Waterford,47363-00008-1,0,4380_7778208_400201,4380_1258 -4380_77937,287,4380_76905,Waterford,47478-00012-1,0,4380_7778208_400204,4380_1258 -4380_77937,288,4380_76906,Waterford,47482-00011-1,0,4380_7778208_400204,4380_1258 -4380_77937,289,4380_76907,Waterford,47480-00014-1,0,4380_7778208_400204,4380_1258 -4380_77937,290,4380_76908,Waterford,47487-00015-1,0,4380_7778208_400204,4380_1258 -4380_77937,291,4380_76909,Waterford,47425-00013-1,0,4380_7778208_400202,4380_1258 -4380_77953,291,4380_7691,Dublin,5804-00013-1,1,4380_7778208_1090109,4380_113 -4380_77937,292,4380_76910,Waterford,47485-00016-1,0,4380_7778208_400204,4380_1258 -4380_77937,293,4380_76911,Waterford,47483-00017-1,0,4380_7778208_400204,4380_1258 -4380_77937,295,4380_76912,Waterford,47481-00019-1,0,4380_7778208_400204,4380_1258 -4380_77937,294,4380_76913,Waterford,47479-00018-1,0,4380_7778208_400204,4380_1258 -4380_77937,296,4380_76914,Waterford,47426-00021-1,0,4380_7778208_400202,4380_1258 -4380_77953,292,4380_7692,Dublin,55075-00016-1,1,4380_7778208_1090109,4380_110 -4380_77937,285,4380_76921,Cork,47688-00009-1,0,4380_7778208_400704,4380_1256 -4380_77937,286,4380_76922,Cork,47684-00010-1,0,4380_7778208_400704,4380_1256 -4380_77937,287,4380_76923,Cork,47690-00012-1,0,4380_7778208_400704,4380_1256 -4380_77937,288,4380_76924,Cork,47680-00011-1,0,4380_7778208_400704,4380_1256 -4380_77937,289,4380_76925,Cork,47682-00014-1,0,4380_7778208_400704,4380_1256 -4380_77937,290,4380_76926,Cork,47689-00015-1,0,4380_7778208_400704,4380_1256 -4380_77937,291,4380_76927,Cork,47686-00013-1,0,4380_7778208_400704,4380_1256 -4380_77937,292,4380_76928,Cork,47685-00016-1,0,4380_7778208_400704,4380_1256 -4380_77937,293,4380_76929,Cork,47681-00017-1,0,4380_7778208_400704,4380_1256 -4380_77953,293,4380_7693,Dublin,55074-00017-1,1,4380_7778208_1090109,4380_110 -4380_77937,295,4380_76930,Cork,47683-00019-1,0,4380_7778208_400704,4380_1256 -4380_77937,294,4380_76931,Cork,47691-00018-1,0,4380_7778208_400704,4380_1256 -4380_77937,296,4380_76932,Cork,47687-00021-1,0,4380_7778208_400704,4380_1256 -4380_77953,294,4380_7694,Dublin,55077-00018-1,1,4380_7778208_1090109,4380_110 -4380_77937,285,4380_76940,Waterford,47594-00009-1,0,4380_7778208_400702,4380_1257 -4380_77937,286,4380_76941,Waterford,47592-00010-1,0,4380_7778208_400702,4380_1257 -4380_77937,297,4380_76942,Waterford,47469-00008-1,0,4380_7778208_400203,4380_1257 -4380_77937,287,4380_76943,Waterford,47588-00012-1,0,4380_7778208_400702,4380_1257 -4380_77937,288,4380_76944,Waterford,47586-00011-1,0,4380_7778208_400702,4380_1257 -4380_77937,289,4380_76945,Waterford,47590-00014-1,0,4380_7778208_400702,4380_1257 -4380_77937,290,4380_76946,Waterford,47595-00015-1,0,4380_7778208_400702,4380_1257 -4380_77937,291,4380_76947,Waterford,47791-00013-1,0,4380_7778208_400801,4380_1257 -4380_77937,292,4380_76948,Waterford,47593-00016-1,0,4380_7778208_400702,4380_1257 -4380_77937,293,4380_76949,Waterford,47587-00017-1,0,4380_7778208_400702,4380_1257 -4380_77953,295,4380_7695,Dublin,55076-00019-1,1,4380_7778208_1090109,4380_110 -4380_77937,295,4380_76950,Waterford,47591-00019-1,0,4380_7778208_400702,4380_1257 -4380_77937,294,4380_76951,Waterford,47589-00018-1,0,4380_7778208_400702,4380_1257 -4380_77937,296,4380_76952,Waterford,47792-00021-1,0,4380_7778208_400801,4380_1257 -4380_77953,296,4380_7696,Dublin,55079-00021-1,1,4380_7778208_1090109,4380_113 -4380_77937,285,4380_76960,Cork,47736-00009-1,0,4380_7778208_400705,4380_1256 -4380_77937,286,4380_76961,Cork,47730-00010-1,0,4380_7778208_400705,4380_1256 -4380_77937,297,4380_76962,Cork,47596-00008-1,0,4380_7778208_400702,4380_1256 -4380_77937,287,4380_76963,Cork,47734-00012-1,0,4380_7778208_400705,4380_1256 -4380_77937,288,4380_76964,Cork,47740-00011-1,0,4380_7778208_400705,4380_1256 -4380_77937,289,4380_76965,Cork,47732-00014-1,0,4380_7778208_400705,4380_1256 -4380_77937,290,4380_76966,Cork,47737-00015-1,0,4380_7778208_400705,4380_1256 -4380_77937,291,4380_76967,Cork,47738-00013-1,0,4380_7778208_400705,4380_1256 -4380_77937,292,4380_76968,Cork,47731-00016-1,0,4380_7778208_400705,4380_1256 -4380_77937,293,4380_76969,Cork,47741-00017-1,0,4380_7778208_400705,4380_1256 -4380_77937,295,4380_76970,Cork,47733-00019-1,0,4380_7778208_400705,4380_1256 -4380_77937,294,4380_76971,Cork,47735-00018-1,0,4380_7778208_400705,4380_1256 -4380_77937,296,4380_76972,Cork,47739-00021-1,0,4380_7778208_400705,4380_1256 -4380_77937,285,4380_76979,Rosslare Harbour,48188-00009-1,0,4380_7778208_400808,4380_1260 -4380_77937,286,4380_76980,Rosslare Harbour,48184-00010-1,0,4380_7778208_400808,4380_1260 -4380_77937,287,4380_76981,Rosslare Harbour,48190-00012-1,0,4380_7778208_400808,4380_1260 -4380_77937,288,4380_76982,Rosslare Harbour,48186-00011-1,0,4380_7778208_400808,4380_1260 -4380_77937,289,4380_76983,Rosslare Harbour,48182-00014-1,0,4380_7778208_400808,4380_1260 -4380_77937,290,4380_76984,Rosslare Harbour,48189-00015-1,0,4380_7778208_400808,4380_1260 -4380_77937,291,4380_76985,Rosslare Harbour,48121-00013-1,0,4380_7778208_400807,4380_1260 -4380_77937,292,4380_76986,Rosslare Harbour,48185-00016-1,0,4380_7778208_400808,4380_1260 -4380_77937,293,4380_76987,Rosslare Harbour,48187-00017-1,0,4380_7778208_400808,4380_1260 -4380_77937,294,4380_76988,Rosslare Harbour,48191-00018-1,0,4380_7778208_400808,4380_1260 -4380_77937,295,4380_76989,Rosslare Harbour,48183-00019-1,0,4380_7778208_400808,4380_1260 -4380_77937,296,4380_76990,Rosslare Harbour,48122-00021-1,0,4380_7778208_400807,4380_1260 -4380_77937,285,4380_76997,Waterford,47830-00009-1,0,4380_7778208_400802,4380_1258 -4380_77937,286,4380_76998,Waterford,47834-00010-1,0,4380_7778208_400802,4380_1258 -4380_77937,287,4380_76999,Waterford,47832-00012-1,0,4380_7778208_400802,4380_1258 -4380_77946,289,4380_77,Dundalk,50379-00014-1,0,4380_7778208_1000914,4380_1 -4380_78113,291,4380_770,Dundalk,49802-00013-1,0,4380_7778208_1000904,4380_17 -4380_77937,288,4380_77000,Waterford,47826-00011-1,0,4380_7778208_400802,4380_1258 -4380_77937,289,4380_77001,Waterford,47828-00014-1,0,4380_7778208_400802,4380_1258 -4380_77937,290,4380_77002,Waterford,47831-00015-1,0,4380_7778208_400802,4380_1258 -4380_77937,291,4380_77003,Waterford,47824-00013-1,0,4380_7778208_400802,4380_1258 -4380_77937,292,4380_77004,Waterford,47835-00016-1,0,4380_7778208_400802,4380_1258 -4380_77937,293,4380_77005,Waterford,47827-00017-1,0,4380_7778208_400802,4380_1258 -4380_77937,295,4380_77006,Waterford,47829-00019-1,0,4380_7778208_400802,4380_1258 -4380_77937,294,4380_77007,Waterford,47833-00018-1,0,4380_7778208_400802,4380_1258 -4380_77937,296,4380_77008,Waterford,47825-00021-1,0,4380_7778208_400802,4380_1258 -4380_77937,285,4380_77015,Cork,47428-00009-1,0,4380_7778208_400202,4380_1256 -4380_77937,286,4380_77016,Cork,47434-00010-1,0,4380_7778208_400202,4380_1256 -4380_77937,287,4380_77017,Cork,47436-00012-1,0,4380_7778208_400202,4380_1256 -4380_77937,288,4380_77018,Cork,47430-00011-1,0,4380_7778208_400202,4380_1256 -4380_77937,289,4380_77019,Cork,47432-00014-1,0,4380_7778208_400202,4380_1256 -4380_77937,290,4380_77020,Cork,47429-00015-1,0,4380_7778208_400202,4380_1256 -4380_77937,291,4380_77021,Cork,47470-00013-1,0,4380_7778208_400203,4380_1256 -4380_77937,292,4380_77022,Cork,47435-00016-1,0,4380_7778208_400202,4380_1256 -4380_77937,293,4380_77023,Cork,47431-00017-1,0,4380_7778208_400202,4380_1256 -4380_77937,295,4380_77024,Cork,47433-00019-1,0,4380_7778208_400202,4380_1256 -4380_77937,294,4380_77025,Cork,47437-00018-1,0,4380_7778208_400202,4380_1256 -4380_77937,296,4380_77026,Cork,47471-00021-1,0,4380_7778208_400203,4380_1256 -4380_77937,285,4380_77034,Waterford,47896-00009-1,0,4380_7778208_400803,4380_1258 -4380_77937,286,4380_77035,Waterford,47892-00010-1,0,4380_7778208_400803,4380_1258 -4380_77937,297,4380_77036,Waterford,47940-00008-1,0,4380_7778208_400804,4380_1258 -4380_77937,287,4380_77037,Waterford,47898-00012-1,0,4380_7778208_400803,4380_1258 -4380_77937,288,4380_77038,Waterford,47894-00011-1,0,4380_7778208_400803,4380_1258 -4380_77937,289,4380_77039,Waterford,47890-00014-1,0,4380_7778208_400803,4380_1258 -4380_77953,285,4380_7704,Dublin,7017-00009-1,1,4380_7778208_1090906,4380_111 -4380_77937,290,4380_77040,Waterford,47897-00015-1,0,4380_7778208_400803,4380_1258 -4380_77937,291,4380_77041,Waterford,47888-00013-1,0,4380_7778208_400803,4380_1258 -4380_77937,292,4380_77042,Waterford,47893-00016-1,0,4380_7778208_400803,4380_1258 -4380_77937,293,4380_77043,Waterford,47895-00017-1,0,4380_7778208_400803,4380_1258 -4380_77937,295,4380_77044,Waterford,47891-00019-1,0,4380_7778208_400803,4380_1258 -4380_77937,294,4380_77045,Waterford,47899-00018-1,0,4380_7778208_400803,4380_1258 -4380_77937,296,4380_77046,Waterford,47889-00021-1,0,4380_7778208_400803,4380_1258 -4380_77953,286,4380_7705,Dublin,7023-00010-1,1,4380_7778208_1090906,4380_111 -4380_77937,285,4380_77054,Cork,47556-00009-1,0,4380_7778208_400701,4380_1256 -4380_77937,286,4380_77055,Cork,47554-00010-1,0,4380_7778208_400701,4380_1256 -4380_77937,297,4380_77056,Cork,47644-00008-1,0,4380_7778208_400703,4380_1256 -4380_77937,287,4380_77057,Cork,47548-00012-1,0,4380_7778208_400701,4380_1256 -4380_77937,288,4380_77058,Cork,47550-00011-1,0,4380_7778208_400701,4380_1256 -4380_77937,289,4380_77059,Cork,47552-00014-1,0,4380_7778208_400701,4380_1256 -4380_77953,297,4380_7706,Dublin,5520-00008-1,1,4380_7778208_1090104,4380_104 -4380_77937,290,4380_77060,Cork,47557-00015-1,0,4380_7778208_400701,4380_1256 -4380_77937,291,4380_77061,Cork,47558-00013-1,0,4380_7778208_400701,4380_1256 -4380_77937,292,4380_77062,Cork,47555-00016-1,0,4380_7778208_400701,4380_1256 -4380_77937,293,4380_77063,Cork,47551-00017-1,0,4380_7778208_400701,4380_1256 -4380_77937,295,4380_77064,Cork,47553-00019-1,0,4380_7778208_400701,4380_1256 -4380_77937,294,4380_77065,Cork,47549-00018-1,0,4380_7778208_400701,4380_1256 -4380_77937,296,4380_77066,Cork,47559-00021-1,0,4380_7778208_400701,4380_1256 -4380_77953,288,4380_7707,Dublin,7029-00011-1,1,4380_7778208_1090906,4380_111 -4380_77937,285,4380_77074,Rosslare Harbour,47984-00009-1,0,4380_7778208_400805,4380_1260 -4380_77937,286,4380_77075,Rosslare Harbour,47982-00010-1,0,4380_7778208_400805,4380_1260 -4380_77937,297,4380_77076,Rosslare Harbour,48057-00008-1,0,4380_7778208_400806,4380_1260 -4380_77937,287,4380_77077,Rosslare Harbour,47988-00012-1,0,4380_7778208_400805,4380_1260 -4380_77937,288,4380_77078,Rosslare Harbour,47980-00011-1,0,4380_7778208_400805,4380_1260 -4380_77937,289,4380_77079,Rosslare Harbour,47986-00014-1,0,4380_7778208_400805,4380_1260 -4380_77953,287,4380_7708,Dublin,7035-00012-1,1,4380_7778208_1090906,4380_111 -4380_77937,290,4380_77080,Rosslare Harbour,47985-00015-1,0,4380_7778208_400805,4380_1260 -4380_77937,291,4380_77081,Rosslare Harbour,47990-00013-1,0,4380_7778208_400805,4380_1260 -4380_77937,292,4380_77082,Rosslare Harbour,47983-00016-1,0,4380_7778208_400805,4380_1260 -4380_77937,293,4380_77083,Rosslare Harbour,47981-00017-1,0,4380_7778208_400805,4380_1260 -4380_77937,294,4380_77084,Rosslare Harbour,47989-00018-1,0,4380_7778208_400805,4380_1260 -4380_77937,295,4380_77085,Rosslare Harbour,47987-00019-1,0,4380_7778208_400805,4380_1260 -4380_77937,296,4380_77086,Rosslare Harbour,47991-00021-1,0,4380_7778208_400805,4380_1260 -4380_77953,289,4380_7709,Dublin,7011-00014-1,1,4380_7778208_1090906,4380_111 -4380_77937,285,4380_77094,Waterford,47949-00009-1,0,4380_7778208_400804,4380_1257 -4380_77937,286,4380_77095,Waterford,47943-00010-1,0,4380_7778208_400804,4380_1257 -4380_77937,297,4380_77096,Waterford,47992-00008-1,0,4380_7778208_400805,4380_1257 -4380_77937,287,4380_77097,Waterford,47951-00012-1,0,4380_7778208_400804,4380_1257 -4380_77937,288,4380_77098,Waterford,47947-00011-1,0,4380_7778208_400804,4380_1257 -4380_77937,289,4380_77099,Waterford,47945-00014-1,0,4380_7778208_400804,4380_1257 -4380_78113,292,4380_771,Dundalk,49801-00016-1,0,4380_7778208_1000904,4380_11 -4380_77953,290,4380_7710,Dublin,55497-00015-1,1,4380_7778208_1090906,4380_111 -4380_77937,290,4380_77100,Waterford,47950-00015-1,0,4380_7778208_400804,4380_1257 -4380_77937,291,4380_77101,Waterford,47941-00013-1,0,4380_7778208_400804,4380_1257 -4380_77937,292,4380_77102,Waterford,47944-00016-1,0,4380_7778208_400804,4380_1257 -4380_77937,293,4380_77103,Waterford,47948-00017-1,0,4380_7778208_400804,4380_1257 -4380_77937,295,4380_77104,Waterford,47946-00019-1,0,4380_7778208_400804,4380_1257 -4380_77937,294,4380_77105,Waterford,47952-00018-1,0,4380_7778208_400804,4380_1257 -4380_77937,296,4380_77106,Waterford,47942-00021-1,0,4380_7778208_400804,4380_1257 -4380_77953,291,4380_7711,Dublin,6814-00013-1,1,4380_7778208_1090901,4380_114 -4380_77937,285,4380_77114,Cork,44283-00009-1,0,4380_7778208_130701,4380_1256 -4380_77937,286,4380_77115,Cork,44291-00010-1,0,4380_7778208_130701,4380_1256 -4380_77937,297,4380_77116,Cork,47440-00008-1,0,4380_7778208_400202,4380_1256 -4380_77937,287,4380_77117,Cork,44289-00012-1,0,4380_7778208_130701,4380_1256 -4380_77937,288,4380_77118,Cork,44287-00011-1,0,4380_7778208_130701,4380_1256 -4380_77937,289,4380_77119,Cork,44285-00014-1,0,4380_7778208_130701,4380_1256 -4380_77953,292,4380_7712,Dublin,55496-00016-1,1,4380_7778208_1090906,4380_111 -4380_77937,290,4380_77120,Cork,44284-00015-1,0,4380_7778208_130701,4380_1256 -4380_77937,291,4380_77121,Cork,47774-00013-1,0,4380_7778208_400706,4380_1256 -4380_77937,292,4380_77122,Cork,44292-00016-1,0,4380_7778208_130701,4380_1256 -4380_77937,293,4380_77123,Cork,44288-00017-1,0,4380_7778208_130701,4380_1256 -4380_77937,295,4380_77124,Cork,44286-00019-1,0,4380_7778208_130701,4380_1256 -4380_77937,294,4380_77125,Cork,44290-00018-1,0,4380_7778208_130701,4380_1256 -4380_77937,296,4380_77126,Cork,47775-00021-1,0,4380_7778208_400706,4380_1256 -4380_77953,293,4380_7713,Dublin,55494-00017-1,1,4380_7778208_1090906,4380_111 -4380_77937,285,4380_77134,Waterford,47379-00009-1,0,4380_7778208_400201,4380_1258 -4380_77937,286,4380_77135,Waterford,47383-00010-1,0,4380_7778208_400201,4380_1258 -4380_77937,297,4380_77136,Waterford,47900-00008-1,0,4380_7778208_400803,4380_1258 -4380_77937,287,4380_77137,Waterford,47387-00012-1,0,4380_7778208_400201,4380_1258 -4380_77937,288,4380_77138,Waterford,47385-00011-1,0,4380_7778208_400201,4380_1258 -4380_77937,289,4380_77139,Waterford,47377-00014-1,0,4380_7778208_400201,4380_1258 -4380_77953,294,4380_7714,Dublin,55495-00018-1,1,4380_7778208_1090906,4380_111 -4380_77937,290,4380_77140,Waterford,47380-00015-1,0,4380_7778208_400201,4380_1258 -4380_77937,291,4380_77141,Waterford,47381-00013-1,0,4380_7778208_400201,4380_1258 -4380_77937,292,4380_77142,Waterford,47384-00016-1,0,4380_7778208_400201,4380_1258 -4380_77937,293,4380_77143,Waterford,47386-00017-1,0,4380_7778208_400201,4380_1258 -4380_77937,295,4380_77144,Waterford,47378-00019-1,0,4380_7778208_400201,4380_1258 -4380_77937,294,4380_77145,Waterford,47388-00018-1,0,4380_7778208_400201,4380_1258 -4380_77937,296,4380_77146,Waterford,47382-00021-1,0,4380_7778208_400201,4380_1258 -4380_77937,297,4380_77148,Rosslare Harbour,47838-00008-1,0,4380_7778208_400802,4380_1260 -4380_77953,295,4380_7715,Dublin,55493-00019-1,1,4380_7778208_1090906,4380_111 -4380_77937,297,4380_77150,Cork,47570-00008-1,0,4380_7778208_400701,4380_1256 -4380_77937,285,4380_77158,Waterford,47501-00009-1,0,4380_7778208_400204,4380_1258 -4380_77937,286,4380_77159,Waterford,47503-00010-1,0,4380_7778208_400204,4380_1258 -4380_77953,296,4380_7716,Dublin,55345-00021-1,1,4380_7778208_1090901,4380_114 -4380_77937,297,4380_77160,Waterford,47389-00008-1,0,4380_7778208_400201,4380_1258 -4380_77937,287,4380_77161,Waterford,47499-00012-1,0,4380_7778208_400204,4380_1258 -4380_77937,288,4380_77162,Waterford,47507-00011-1,0,4380_7778208_400204,4380_1258 -4380_77937,289,4380_77163,Waterford,47505-00014-1,0,4380_7778208_400204,4380_1258 -4380_77937,290,4380_77164,Waterford,47502-00015-1,0,4380_7778208_400204,4380_1258 -4380_77937,291,4380_77165,Waterford,47451-00013-1,0,4380_7778208_400202,4380_1258 -4380_77937,292,4380_77166,Waterford,47504-00016-1,0,4380_7778208_400204,4380_1258 -4380_77937,293,4380_77167,Waterford,47508-00017-1,0,4380_7778208_400204,4380_1258 -4380_77937,295,4380_77168,Waterford,47506-00019-1,0,4380_7778208_400204,4380_1258 -4380_77937,294,4380_77169,Waterford,47500-00018-1,0,4380_7778208_400204,4380_1258 -4380_77937,296,4380_77170,Waterford,47452-00021-1,0,4380_7778208_400202,4380_1258 -4380_77937,285,4380_77177,Cork,47706-00009-1,0,4380_7778208_400704,4380_1256 -4380_77937,286,4380_77178,Cork,47710-00010-1,0,4380_7778208_400704,4380_1256 -4380_77937,287,4380_77179,Cork,47704-00012-1,0,4380_7778208_400704,4380_1256 -4380_77937,288,4380_77180,Cork,47708-00011-1,0,4380_7778208_400704,4380_1256 -4380_77937,289,4380_77181,Cork,47712-00014-1,0,4380_7778208_400704,4380_1256 -4380_77937,290,4380_77182,Cork,47707-00015-1,0,4380_7778208_400704,4380_1256 -4380_77937,291,4380_77183,Cork,47645-00013-1,0,4380_7778208_400703,4380_1256 -4380_77937,292,4380_77184,Cork,47711-00016-1,0,4380_7778208_400704,4380_1256 -4380_77937,293,4380_77185,Cork,47709-00017-1,0,4380_7778208_400704,4380_1256 -4380_77937,295,4380_77186,Cork,47713-00019-1,0,4380_7778208_400704,4380_1256 -4380_77937,294,4380_77187,Cork,47705-00018-1,0,4380_7778208_400704,4380_1256 -4380_77937,296,4380_77188,Cork,47646-00021-1,0,4380_7778208_400703,4380_1256 -4380_77937,285,4380_77196,Wexford,48015-00009-1,0,4380_7778208_400805,4380_1261 -4380_77937,286,4380_77197,Wexford,48009-00010-1,0,4380_7778208_400805,4380_1261 -4380_77937,297,4380_77198,Wexford,47796-00008-1,0,4380_7778208_400801,4380_1261 -4380_77937,287,4380_77199,Wexford,48005-00012-1,0,4380_7778208_400805,4380_1261 -4380_78113,293,4380_772,Dundalk,49797-00017-1,0,4380_7778208_1000904,4380_11 -4380_77937,288,4380_77200,Wexford,48013-00011-1,0,4380_7778208_400805,4380_1261 -4380_77937,289,4380_77201,Wexford,48011-00014-1,0,4380_7778208_400805,4380_1261 -4380_77937,290,4380_77202,Wexford,48016-00015-1,0,4380_7778208_400805,4380_1261 -4380_77937,291,4380_77203,Wexford,48007-00013-1,0,4380_7778208_400805,4380_1261 -4380_77937,292,4380_77204,Wexford,48010-00016-1,0,4380_7778208_400805,4380_1261 -4380_77937,293,4380_77205,Wexford,48014-00017-1,0,4380_7778208_400805,4380_1261 -4380_77937,294,4380_77206,Wexford,48006-00018-1,0,4380_7778208_400805,4380_1261 -4380_77937,295,4380_77207,Wexford,48012-00019-1,0,4380_7778208_400805,4380_1261 -4380_77937,296,4380_77208,Wexford,48008-00021-1,0,4380_7778208_400805,4380_1261 -4380_77937,285,4380_77216,Waterford,47797-00009-1,0,4380_7778208_400801,4380_1257 -4380_77937,286,4380_77217,Waterford,47799-00010-1,0,4380_7778208_400801,4380_1257 -4380_77937,297,4380_77218,Waterford,47475-00008-1,0,4380_7778208_400203,4380_1257 -4380_77937,287,4380_77219,Waterford,47803-00012-1,0,4380_7778208_400801,4380_1257 -4380_77937,288,4380_77220,Waterford,47807-00011-1,0,4380_7778208_400801,4380_1257 -4380_77937,289,4380_77221,Waterford,47805-00014-1,0,4380_7778208_400801,4380_1257 -4380_77937,290,4380_77222,Waterford,47798-00015-1,0,4380_7778208_400801,4380_1257 -4380_77937,291,4380_77223,Waterford,47801-00013-1,0,4380_7778208_400801,4380_1257 -4380_77937,292,4380_77224,Waterford,47800-00016-1,0,4380_7778208_400801,4380_1257 -4380_77937,293,4380_77225,Waterford,47808-00017-1,0,4380_7778208_400801,4380_1257 -4380_77937,295,4380_77226,Waterford,47806-00019-1,0,4380_7778208_400801,4380_1257 -4380_77937,294,4380_77227,Waterford,47804-00018-1,0,4380_7778208_400801,4380_1257 -4380_77937,296,4380_77228,Waterford,47802-00021-1,0,4380_7778208_400801,4380_1257 -4380_77937,285,4380_77236,Cork,47760-00009-1,0,4380_7778208_400705,4380_1259 -4380_77937,286,4380_77237,Cork,47754-00010-1,0,4380_7778208_400705,4380_1259 -4380_77937,297,4380_77238,Cork,47714-00008-1,0,4380_7778208_400704,4380_1256 -4380_77937,287,4380_77239,Cork,47756-00012-1,0,4380_7778208_400705,4380_1259 -4380_77953,285,4380_7724,Dublin,6104-00009-1,1,4380_7778208_1090118,4380_110 -4380_77937,288,4380_77240,Cork,47758-00011-1,0,4380_7778208_400705,4380_1259 -4380_77937,289,4380_77241,Cork,47762-00014-1,0,4380_7778208_400705,4380_1259 -4380_77937,290,4380_77242,Cork,47761-00015-1,0,4380_7778208_400705,4380_1259 -4380_77937,291,4380_77243,Cork,47715-00013-1,0,4380_7778208_400704,4380_1263 -4380_77937,292,4380_77244,Cork,47755-00016-1,0,4380_7778208_400705,4380_1259 -4380_77937,293,4380_77245,Cork,47759-00017-1,0,4380_7778208_400705,4380_1259 -4380_77937,295,4380_77246,Cork,47763-00019-1,0,4380_7778208_400705,4380_1259 -4380_77937,294,4380_77247,Cork,47757-00018-1,0,4380_7778208_400705,4380_1259 -4380_77937,296,4380_77248,Cork,47716-00021-1,0,4380_7778208_400704,4380_1263 -4380_77953,286,4380_7725,Dublin,6107-00010-1,1,4380_7778208_1090118,4380_110 -4380_77937,285,4380_77256,Waterford,47854-00009-1,0,4380_7778208_400802,4380_1258 -4380_77937,286,4380_77257,Waterford,47860-00010-1,0,4380_7778208_400802,4380_1258 -4380_77937,297,4380_77258,Waterford,48160-00008-1,0,4380_7778208_400807,4380_1258 -4380_77937,287,4380_77259,Waterford,47856-00012-1,0,4380_7778208_400802,4380_1258 -4380_77953,297,4380_7726,Dublin,5369-00008-1,1,4380_7778208_1090102,4380_105 -4380_77937,288,4380_77260,Waterford,47850-00011-1,0,4380_7778208_400802,4380_1258 -4380_77937,289,4380_77261,Waterford,47858-00014-1,0,4380_7778208_400802,4380_1258 -4380_77937,290,4380_77262,Waterford,47855-00015-1,0,4380_7778208_400802,4380_1258 -4380_77937,291,4380_77263,Waterford,47852-00013-1,0,4380_7778208_400802,4380_1258 -4380_77937,292,4380_77264,Waterford,47861-00016-1,0,4380_7778208_400802,4380_1258 -4380_77937,293,4380_77265,Waterford,47851-00017-1,0,4380_7778208_400802,4380_1258 -4380_77937,295,4380_77266,Waterford,47859-00019-1,0,4380_7778208_400802,4380_1258 -4380_77937,294,4380_77267,Waterford,47857-00018-1,0,4380_7778208_400802,4380_1258 -4380_77937,296,4380_77268,Waterford,47853-00021-1,0,4380_7778208_400802,4380_1258 -4380_77953,288,4380_7727,Dublin,6110-00011-1,1,4380_7778208_1090118,4380_110 -4380_77937,285,4380_77277,Cork,47458-00009-1,0,4380_7778208_400202,4380_1256 -4380_77937,286,4380_77278,Cork,47454-00010-1,0,4380_7778208_400202,4380_1256 -4380_77937,297,4380_77279,Cork,47521-00008-1,0,4380_7778208_400205,4380_1256 -4380_77953,287,4380_7728,Dublin,6113-00012-1,1,4380_7778208_1090118,4380_110 -4380_77937,297,4380_77280,Rosslare Harbour,47809-00008-1,0,4380_7778208_400801,4380_1262 -4380_77937,287,4380_77281,Cork,47460-00012-1,0,4380_7778208_400202,4380_1256 -4380_77937,288,4380_77282,Cork,47456-00011-1,0,4380_7778208_400202,4380_1256 -4380_77937,289,4380_77283,Cork,47462-00014-1,0,4380_7778208_400202,4380_1256 -4380_77937,290,4380_77284,Cork,47459-00015-1,0,4380_7778208_400202,4380_1256 -4380_77937,291,4380_77285,Cork,47476-00013-1,0,4380_7778208_400203,4380_1256 -4380_77937,292,4380_77286,Cork,47455-00016-1,0,4380_7778208_400202,4380_1256 -4380_77937,293,4380_77287,Cork,47457-00017-1,0,4380_7778208_400202,4380_1256 -4380_77937,295,4380_77288,Cork,47463-00019-1,0,4380_7778208_400202,4380_1256 -4380_77937,294,4380_77289,Cork,47461-00018-1,0,4380_7778208_400202,4380_1256 -4380_77953,289,4380_7729,Dublin,6101-00014-1,1,4380_7778208_1090118,4380_110 -4380_77937,296,4380_77290,Cork,47477-00021-1,0,4380_7778208_400203,4380_1256 -4380_77937,285,4380_77298,Waterford,47914-00009-1,0,4380_7778208_400803,4380_1257 -4380_77937,286,4380_77299,Waterford,47920-00010-1,0,4380_7778208_400803,4380_1257 -4380_78113,294,4380_773,Dundalk,49799-00018-1,0,4380_7778208_1000904,4380_11 -4380_77953,290,4380_7730,Dublin,55318-00015-1,1,4380_7778208_1090118,4380_110 -4380_77937,297,4380_77300,Waterford,47966-00008-1,0,4380_7778208_400804,4380_1257 -4380_77937,287,4380_77301,Waterford,47922-00012-1,0,4380_7778208_400803,4380_1257 -4380_77937,288,4380_77302,Waterford,47916-00011-1,0,4380_7778208_400803,4380_1257 -4380_77937,289,4380_77303,Waterford,47924-00014-1,0,4380_7778208_400803,4380_1257 -4380_77937,290,4380_77304,Waterford,47915-00015-1,0,4380_7778208_400803,4380_1257 -4380_77937,291,4380_77305,Waterford,47918-00013-1,0,4380_7778208_400803,4380_1257 -4380_77937,292,4380_77306,Waterford,47921-00016-1,0,4380_7778208_400803,4380_1257 -4380_77937,293,4380_77307,Waterford,47917-00017-1,0,4380_7778208_400803,4380_1257 -4380_77937,295,4380_77308,Waterford,47925-00019-1,0,4380_7778208_400803,4380_1257 -4380_77937,294,4380_77309,Waterford,47923-00018-1,0,4380_7778208_400803,4380_1257 -4380_77953,291,4380_7731,Dublin,5287-00013-1,1,4380_7778208_1090101,4380_113 -4380_77937,296,4380_77310,Waterford,47919-00021-1,0,4380_7778208_400803,4380_1257 -4380_77937,297,4380_77312,Cork,47509-00008-1,0,4380_7778208_400204,4380_1256 -4380_77953,292,4380_7732,Dublin,55315-00016-1,1,4380_7778208_1090118,4380_110 -4380_77937,285,4380_77320,Rosslare Harbour,48080-00009-1,0,4380_7778208_400806,4380_1260 -4380_77937,286,4380_77321,Rosslare Harbour,48084-00010-1,0,4380_7778208_400806,4380_1260 -4380_77937,297,4380_77322,Rosslare Harbour,47862-00008-1,0,4380_7778208_400802,4380_1260 -4380_77937,287,4380_77323,Rosslare Harbour,48078-00012-1,0,4380_7778208_400806,4380_1260 -4380_77937,288,4380_77324,Rosslare Harbour,48076-00011-1,0,4380_7778208_400806,4380_1260 -4380_77937,289,4380_77325,Rosslare Harbour,48082-00014-1,0,4380_7778208_400806,4380_1260 -4380_77937,290,4380_77326,Rosslare Harbour,48081-00015-1,0,4380_7778208_400806,4380_1260 -4380_77937,291,4380_77327,Rosslare Harbour,48086-00013-1,0,4380_7778208_400806,4380_1260 -4380_77937,292,4380_77328,Rosslare Harbour,48085-00016-1,0,4380_7778208_400806,4380_1260 -4380_77937,293,4380_77329,Rosslare Harbour,48077-00017-1,0,4380_7778208_400806,4380_1260 -4380_77953,293,4380_7733,Dublin,55317-00017-1,1,4380_7778208_1090118,4380_110 -4380_77937,294,4380_77330,Rosslare Harbour,48079-00018-1,0,4380_7778208_400806,4380_1260 -4380_77937,295,4380_77331,Rosslare Harbour,48083-00019-1,0,4380_7778208_400806,4380_1260 -4380_77937,296,4380_77332,Rosslare Harbour,48087-00021-1,0,4380_7778208_400806,4380_1260 -4380_77953,294,4380_7734,Dublin,55316-00018-1,1,4380_7778208_1090118,4380_110 -4380_77937,285,4380_77340,Waterford,47967-00009-1,0,4380_7778208_400804,4380_1258 -4380_77937,286,4380_77341,Waterford,47975-00010-1,0,4380_7778208_400804,4380_1258 -4380_77937,297,4380_77342,Waterford,48088-00008-1,0,4380_7778208_400806,4380_1258 -4380_77937,287,4380_77343,Waterford,47977-00012-1,0,4380_7778208_400804,4380_1258 -4380_77937,288,4380_77344,Waterford,47971-00011-1,0,4380_7778208_400804,4380_1258 -4380_77937,289,4380_77345,Waterford,47973-00014-1,0,4380_7778208_400804,4380_1258 -4380_77937,290,4380_77346,Waterford,47968-00015-1,0,4380_7778208_400804,4380_1258 -4380_77937,291,4380_77347,Waterford,47969-00013-1,0,4380_7778208_400804,4380_1258 -4380_77937,292,4380_77348,Waterford,47976-00016-1,0,4380_7778208_400804,4380_1258 -4380_77937,293,4380_77349,Waterford,47972-00017-1,0,4380_7778208_400804,4380_1258 -4380_77953,295,4380_7735,Dublin,55314-00019-1,1,4380_7778208_1090118,4380_110 -4380_77937,295,4380_77350,Waterford,47974-00019-1,0,4380_7778208_400804,4380_1258 -4380_77937,294,4380_77351,Waterford,47978-00018-1,0,4380_7778208_400804,4380_1258 -4380_77937,296,4380_77352,Waterford,47970-00021-1,0,4380_7778208_400804,4380_1258 -4380_77937,297,4380_77354,Cork,47466-00008-1,0,4380_7778208_400202,4380_1256 -4380_77953,296,4380_7736,Dublin,54677-00021-1,1,4380_7778208_1090101,4380_113 -4380_77937,285,4380_77362,Waterford,47409-00009-1,0,4380_7778208_400201,4380_1258 -4380_77937,286,4380_77363,Waterford,47407-00010-1,0,4380_7778208_400201,4380_1258 -4380_77937,297,4380_77364,Waterford,47926-00008-1,0,4380_7778208_400803,4380_1258 -4380_77937,287,4380_77365,Waterford,47413-00012-1,0,4380_7778208_400201,4380_1258 -4380_77937,288,4380_77366,Waterford,47403-00011-1,0,4380_7778208_400201,4380_1258 -4380_77937,289,4380_77367,Waterford,47411-00014-1,0,4380_7778208_400201,4380_1258 -4380_77937,290,4380_77368,Waterford,47410-00015-1,0,4380_7778208_400201,4380_1258 -4380_77937,291,4380_77369,Waterford,47405-00013-1,0,4380_7778208_400201,4380_1258 -4380_77937,292,4380_77370,Waterford,47408-00016-1,0,4380_7778208_400201,4380_1258 -4380_77937,293,4380_77371,Waterford,47404-00017-1,0,4380_7778208_400201,4380_1258 -4380_77937,295,4380_77372,Waterford,47412-00019-1,0,4380_7778208_400201,4380_1258 -4380_77937,294,4380_77373,Waterford,47414-00018-1,0,4380_7778208_400201,4380_1258 -4380_77937,296,4380_77374,Waterford,47406-00021-1,0,4380_7778208_400201,4380_1258 -4380_77937,285,4380_77381,Waterford,48097-00009-1,1,4380_7778208_400807,4380_1268 -4380_77937,286,4380_77382,Waterford,48095-00010-1,1,4380_7778208_400807,4380_1268 -4380_77937,287,4380_77383,Waterford,48093-00012-1,1,4380_7778208_400807,4380_1268 -4380_77937,288,4380_77384,Waterford,48043-00011-1,1,4380_7778208_400806,4380_1268 -4380_77937,289,4380_77385,Waterford,48091-00014-1,1,4380_7778208_400807,4380_1268 -4380_77937,290,4380_77386,Waterford,48098-00015-1,1,4380_7778208_400807,4380_1268 -4380_77937,291,4380_77387,Waterford,48041-00013-1,1,4380_7778208_400806,4380_1268 -4380_77937,292,4380_77388,Waterford,48096-00016-1,1,4380_7778208_400807,4380_1268 -4380_77937,293,4380_77389,Waterford,48044-00017-1,1,4380_7778208_400806,4380_1268 -4380_77937,294,4380_77390,Waterford,48094-00018-1,1,4380_7778208_400807,4380_1268 -4380_77937,295,4380_77391,Waterford,48092-00019-1,1,4380_7778208_400807,4380_1268 -4380_77937,296,4380_77392,Waterford,48042-00021-1,1,4380_7778208_400806,4380_1268 -4380_77937,297,4380_77394,Waterford,47811-00008-1,1,4380_7778208_400802,4380_1268 -4380_78113,295,4380_774,Dundalk,49807-00019-1,0,4380_7778208_1000904,4380_11 -4380_77937,285,4380_77407,Tralee,47423-00009-1,1,4380_7778208_400202,4380_1266 -4380_77937,285,4380_77408,Cork,47783-00009-1,1,4380_7778208_400801,4380_1267 -4380_77937,286,4380_77409,Tralee,47421-00010-1,1,4380_7778208_400202,4380_1266 -4380_77937,286,4380_77410,Cork,47787-00010-1,1,4380_7778208_400801,4380_1267 -4380_77937,287,4380_77411,Tralee,47415-00012-1,1,4380_7778208_400202,4380_1266 -4380_77937,287,4380_77412,Cork,47789-00012-1,1,4380_7778208_400801,4380_1267 -4380_77937,288,4380_77413,Tralee,47419-00011-1,1,4380_7778208_400202,4380_1266 -4380_77937,288,4380_77414,Cork,47781-00011-1,1,4380_7778208_400801,4380_1267 -4380_77937,289,4380_77415,Tralee,47417-00014-1,1,4380_7778208_400202,4380_1266 -4380_77937,289,4380_77416,Cork,47779-00014-1,1,4380_7778208_400801,4380_1267 -4380_77937,290,4380_77417,Tralee,47424-00015-1,1,4380_7778208_400202,4380_1266 -4380_77937,290,4380_77418,Cork,47784-00015-1,1,4380_7778208_400801,4380_1267 -4380_77937,291,4380_77419,Tralee,47467-00013-1,1,4380_7778208_400203,4380_1266 -4380_77937,291,4380_77420,Cork,47785-00013-1,1,4380_7778208_400801,4380_1267 -4380_77937,292,4380_77421,Tralee,47422-00016-1,1,4380_7778208_400202,4380_1266 -4380_77937,292,4380_77422,Cork,47788-00016-1,1,4380_7778208_400801,4380_1267 -4380_77937,293,4380_77423,Tralee,47420-00017-1,1,4380_7778208_400202,4380_1266 -4380_77937,293,4380_77424,Cork,47782-00017-1,1,4380_7778208_400801,4380_1267 -4380_77937,295,4380_77425,Tralee,47418-00019-1,1,4380_7778208_400202,4380_1266 -4380_77937,295,4380_77426,Cork,47780-00019-1,1,4380_7778208_400801,4380_1267 -4380_77937,294,4380_77427,Tralee,47416-00018-1,1,4380_7778208_400202,4380_1266 -4380_77937,294,4380_77428,Cork,47790-00018-1,1,4380_7778208_400801,4380_1267 -4380_77937,296,4380_77429,Tralee,47468-00021-1,1,4380_7778208_400203,4380_1266 -4380_77937,296,4380_77430,Cork,47786-00021-1,1,4380_7778208_400801,4380_1267 -4380_77937,285,4380_77438,Cork,47820-00009-1,1,4380_7778208_400802,4380_1265 -4380_77937,286,4380_77439,Cork,47822-00010-1,1,4380_7778208_400802,4380_1265 -4380_77953,285,4380_7744,Dublin,5601-00009-1,1,4380_7778208_1090106,4380_110 -4380_77937,297,4380_77440,Cork,47875-00008-1,1,4380_7778208_400803,4380_1265 -4380_77937,287,4380_77441,Cork,47816-00012-1,1,4380_7778208_400802,4380_1265 -4380_77937,288,4380_77442,Cork,47814-00011-1,1,4380_7778208_400802,4380_1265 -4380_77937,289,4380_77443,Cork,47812-00014-1,1,4380_7778208_400802,4380_1265 -4380_77937,290,4380_77444,Cork,47821-00015-1,1,4380_7778208_400802,4380_1265 -4380_77937,291,4380_77445,Cork,47818-00013-1,1,4380_7778208_400802,4380_1265 -4380_77937,292,4380_77446,Cork,47823-00016-1,1,4380_7778208_400802,4380_1265 -4380_77937,293,4380_77447,Cork,47815-00017-1,1,4380_7778208_400802,4380_1265 -4380_77937,295,4380_77448,Cork,47813-00019-1,1,4380_7778208_400802,4380_1265 -4380_77937,294,4380_77449,Cork,47817-00018-1,1,4380_7778208_400802,4380_1265 -4380_77953,286,4380_7745,Dublin,5609-00010-1,1,4380_7778208_1090106,4380_110 -4380_77937,296,4380_77450,Cork,47819-00021-1,1,4380_7778208_400802,4380_1265 -4380_77937,285,4380_77457,Waterford,48172-00009-1,1,4380_7778208_400808,4380_1268 -4380_77937,286,4380_77458,Waterford,48176-00010-1,1,4380_7778208_400808,4380_1268 -4380_77937,287,4380_77459,Waterford,48178-00012-1,1,4380_7778208_400808,4380_1268 -4380_77953,297,4380_7746,Dublin,5710-00008-1,1,4380_7778208_1090107,4380_105 -4380_77937,288,4380_77460,Waterford,48180-00011-1,1,4380_7778208_400808,4380_1268 -4380_77937,289,4380_77461,Waterford,48174-00014-1,1,4380_7778208_400808,4380_1268 -4380_77937,290,4380_77462,Waterford,48173-00015-1,1,4380_7778208_400808,4380_1268 -4380_77937,291,4380_77463,Waterford,48107-00013-1,1,4380_7778208_400807,4380_1268 -4380_77937,292,4380_77464,Waterford,48177-00016-1,1,4380_7778208_400808,4380_1268 -4380_77937,293,4380_77465,Waterford,48181-00017-1,1,4380_7778208_400808,4380_1268 -4380_77937,294,4380_77466,Waterford,48179-00018-1,1,4380_7778208_400808,4380_1268 -4380_77937,295,4380_77467,Waterford,48175-00019-1,1,4380_7778208_400808,4380_1268 -4380_77937,296,4380_77468,Waterford,48108-00021-1,1,4380_7778208_400807,4380_1268 -4380_77953,288,4380_7747,Dublin,5617-00011-1,1,4380_7778208_1090106,4380_110 -4380_77953,287,4380_7748,Dublin,5625-00012-1,1,4380_7778208_1090106,4380_110 -4380_77937,285,4380_77482,Tralee,47545-00009-1,1,4380_7778208_400701,4380_1266 -4380_77937,285,4380_77483,Cork,47884-00009-1,1,4380_7778208_400803,4380_1265 -4380_77937,286,4380_77484,Tralee,47539-00010-1,1,4380_7778208_400701,4380_1266 -4380_77937,286,4380_77485,Cork,47878-00010-1,1,4380_7778208_400803,4380_1265 -4380_77937,297,4380_77486,Cork,47927-00008-1,1,4380_7778208_400804,4380_1265 -4380_77937,287,4380_77487,Tralee,47535-00012-1,1,4380_7778208_400701,4380_1266 -4380_77937,287,4380_77488,Cork,47880-00012-1,1,4380_7778208_400803,4380_1265 -4380_77937,288,4380_77489,Tralee,47543-00011-1,1,4380_7778208_400701,4380_1266 -4380_77953,289,4380_7749,Dublin,5593-00014-1,1,4380_7778208_1090106,4380_110 -4380_77937,288,4380_77490,Cork,47886-00011-1,1,4380_7778208_400803,4380_1265 -4380_77937,289,4380_77491,Tralee,47541-00014-1,1,4380_7778208_400701,4380_1266 -4380_77937,289,4380_77492,Cork,47876-00014-1,1,4380_7778208_400803,4380_1265 -4380_77937,290,4380_77493,Tralee,47546-00015-1,1,4380_7778208_400701,4380_1266 -4380_77937,290,4380_77494,Cork,47885-00015-1,1,4380_7778208_400803,4380_1265 -4380_77937,291,4380_77495,Tralee,47537-00013-1,1,4380_7778208_400701,4380_1266 -4380_77937,291,4380_77496,Cork,47882-00013-1,1,4380_7778208_400803,4380_1265 -4380_77937,292,4380_77497,Tralee,47540-00016-1,1,4380_7778208_400701,4380_1266 -4380_77937,292,4380_77498,Cork,47879-00016-1,1,4380_7778208_400803,4380_1265 -4380_77937,293,4380_77499,Tralee,47544-00017-1,1,4380_7778208_400701,4380_1266 -4380_78113,296,4380_775,Dundalk,49803-00021-1,0,4380_7778208_1000904,4380_17 -4380_77953,290,4380_7750,Dublin,54947-00015-1,1,4380_7778208_1090106,4380_110 -4380_77937,293,4380_77500,Cork,47887-00017-1,1,4380_7778208_400803,4380_1265 -4380_77937,295,4380_77501,Tralee,47542-00019-1,1,4380_7778208_400701,4380_1266 -4380_77937,295,4380_77502,Cork,47877-00019-1,1,4380_7778208_400803,4380_1265 -4380_77937,294,4380_77503,Tralee,47536-00018-1,1,4380_7778208_400701,4380_1266 -4380_77937,294,4380_77504,Cork,47881-00018-1,1,4380_7778208_400803,4380_1265 -4380_77937,296,4380_77505,Tralee,47538-00021-1,1,4380_7778208_400701,4380_1266 -4380_77937,296,4380_77506,Cork,47883-00021-1,1,4380_7778208_400803,4380_1265 -4380_77937,297,4380_77508,Tralee,47427-00008-1,1,4380_7778208_400202,4380_1266 -4380_77953,291,4380_7751,Dublin,5575-00013-1,1,4380_7778208_1090105,4380_113 -4380_77937,285,4380_77516,Cork,47936-00009-1,1,4380_7778208_400804,4380_1267 -4380_77937,286,4380_77517,Cork,47934-00010-1,1,4380_7778208_400804,4380_1267 -4380_77937,297,4380_77518,Cork,47979-00008-1,1,4380_7778208_400805,4380_1267 -4380_77937,287,4380_77519,Cork,47930-00012-1,1,4380_7778208_400804,4380_1267 -4380_77953,292,4380_7752,Dublin,54946-00016-1,1,4380_7778208_1090106,4380_110 -4380_77937,288,4380_77520,Cork,47932-00011-1,1,4380_7778208_400804,4380_1267 -4380_77937,289,4380_77521,Cork,47928-00014-1,1,4380_7778208_400804,4380_1267 -4380_77937,290,4380_77522,Cork,47937-00015-1,1,4380_7778208_400804,4380_1267 -4380_77937,291,4380_77523,Cork,47938-00013-1,1,4380_7778208_400804,4380_1267 -4380_77937,292,4380_77524,Cork,47935-00016-1,1,4380_7778208_400804,4380_1267 -4380_77937,293,4380_77525,Cork,47933-00017-1,1,4380_7778208_400804,4380_1267 -4380_77937,295,4380_77526,Cork,47929-00019-1,1,4380_7778208_400804,4380_1267 -4380_77937,294,4380_77527,Cork,47931-00018-1,1,4380_7778208_400804,4380_1267 -4380_77937,296,4380_77528,Cork,47939-00021-1,1,4380_7778208_400804,4380_1267 -4380_77953,293,4380_7753,Dublin,54949-00017-1,1,4380_7778208_1090106,4380_110 -4380_77937,285,4380_77535,Tralee,47632-00009-1,1,4380_7778208_400703,4380_1264 -4380_77937,286,4380_77536,Tralee,47638-00010-1,1,4380_7778208_400703,4380_1264 -4380_77937,287,4380_77537,Tralee,47634-00012-1,1,4380_7778208_400703,4380_1264 -4380_77937,288,4380_77538,Tralee,47636-00011-1,1,4380_7778208_400703,4380_1264 -4380_77937,289,4380_77539,Tralee,47640-00014-1,1,4380_7778208_400703,4380_1264 -4380_77953,294,4380_7754,Dublin,54950-00018-1,1,4380_7778208_1090106,4380_110 -4380_77937,290,4380_77540,Tralee,47633-00015-1,1,4380_7778208_400703,4380_1264 -4380_77937,291,4380_77541,Tralee,47642-00013-1,1,4380_7778208_400703,4380_1264 -4380_77937,292,4380_77542,Tralee,47639-00016-1,1,4380_7778208_400703,4380_1264 -4380_77937,293,4380_77543,Tralee,47637-00017-1,1,4380_7778208_400703,4380_1264 -4380_77937,295,4380_77544,Tralee,47641-00019-1,1,4380_7778208_400703,4380_1264 -4380_77937,294,4380_77545,Tralee,47635-00018-1,1,4380_7778208_400703,4380_1264 -4380_77937,296,4380_77546,Tralee,47643-00021-1,1,4380_7778208_400703,4380_1264 -4380_77953,295,4380_7755,Dublin,54948-00019-1,1,4380_7778208_1090106,4380_110 -4380_77937,285,4380_77553,Cork,47368-00009-1,1,4380_7778208_400201,4380_1265 -4380_77937,286,4380_77554,Cork,47370-00010-1,1,4380_7778208_400201,4380_1265 -4380_77937,287,4380_77555,Cork,47366-00012-1,1,4380_7778208_400201,4380_1265 -4380_77937,288,4380_77556,Cork,47374-00011-1,1,4380_7778208_400201,4380_1265 -4380_77937,289,4380_77557,Cork,47364-00014-1,1,4380_7778208_400201,4380_1265 -4380_77937,290,4380_77558,Cork,47369-00015-1,1,4380_7778208_400201,4380_1265 -4380_77937,291,4380_77559,Cork,47372-00013-1,1,4380_7778208_400201,4380_1265 -4380_77953,296,4380_7756,Dublin,54895-00021-1,1,4380_7778208_1090105,4380_113 -4380_77937,292,4380_77560,Cork,47371-00016-1,1,4380_7778208_400201,4380_1265 -4380_77937,293,4380_77561,Cork,47375-00017-1,1,4380_7778208_400201,4380_1265 -4380_77937,295,4380_77562,Cork,47365-00019-1,1,4380_7778208_400201,4380_1265 -4380_77937,294,4380_77563,Cork,47367-00018-1,1,4380_7778208_400201,4380_1265 -4380_77937,296,4380_77564,Cork,47373-00021-1,1,4380_7778208_400201,4380_1265 -4380_77937,285,4380_77572,Tralee,47692-00009-1,1,4380_7778208_400704,4380_1264 -4380_77937,286,4380_77573,Tralee,47700-00010-1,1,4380_7778208_400704,4380_1264 -4380_77937,297,4380_77574,Tralee,47547-00008-1,1,4380_7778208_400701,4380_1264 -4380_77937,287,4380_77575,Tralee,47696-00012-1,1,4380_7778208_400704,4380_1264 -4380_77937,288,4380_77576,Tralee,47694-00011-1,1,4380_7778208_400704,4380_1264 -4380_77937,289,4380_77577,Tralee,47698-00014-1,1,4380_7778208_400704,4380_1264 -4380_77937,290,4380_77578,Tralee,47693-00015-1,1,4380_7778208_400704,4380_1264 -4380_77937,291,4380_77579,Tralee,47702-00013-1,1,4380_7778208_400704,4380_1264 -4380_77937,292,4380_77580,Tralee,47701-00016-1,1,4380_7778208_400704,4380_1264 -4380_77937,293,4380_77581,Tralee,47695-00017-1,1,4380_7778208_400704,4380_1264 -4380_77937,295,4380_77582,Tralee,47699-00019-1,1,4380_7778208_400704,4380_1264 -4380_77937,294,4380_77583,Tralee,47697-00018-1,1,4380_7778208_400704,4380_1264 -4380_77937,296,4380_77584,Tralee,47703-00021-1,1,4380_7778208_400704,4380_1264 -4380_77937,285,4380_77599,Cork,47490-00009-1,1,4380_7778208_400204,4380_1267 -4380_77937,285,4380_77600,Waterford,48194-00009-1,1,4380_7778208_400808,4380_1268 -4380_77937,286,4380_77601,Cork,47488-00010-1,1,4380_7778208_400204,4380_1267 -4380_77937,286,4380_77602,Waterford,48198-00010-1,1,4380_7778208_400808,4380_1268 -4380_77937,297,4380_77603,Cork,47376-00008-1,1,4380_7778208_400201,4380_1267 -4380_77937,297,4380_77604,Waterford,47793-00008-1,1,4380_7778208_400801,4380_1268 -4380_77937,287,4380_77605,Cork,47494-00012-1,1,4380_7778208_400204,4380_1267 -4380_77937,287,4380_77606,Waterford,48196-00012-1,1,4380_7778208_400808,4380_1268 -4380_77937,288,4380_77607,Cork,47496-00011-1,1,4380_7778208_400204,4380_1267 -4380_77937,288,4380_77608,Waterford,48192-00011-1,1,4380_7778208_400808,4380_1268 -4380_77937,289,4380_77609,Cork,47492-00014-1,1,4380_7778208_400204,4380_1267 -4380_77937,289,4380_77610,Waterford,48200-00014-1,1,4380_7778208_400808,4380_1268 -4380_77937,290,4380_77611,Cork,47491-00015-1,1,4380_7778208_400204,4380_1267 -4380_77937,290,4380_77612,Waterford,48195-00015-1,1,4380_7778208_400808,4380_1268 -4380_77937,291,4380_77613,Cork,47438-00013-1,1,4380_7778208_400202,4380_1267 -4380_77937,291,4380_77614,Waterford,48129-00013-1,1,4380_7778208_400807,4380_1268 -4380_77937,292,4380_77615,Cork,47489-00016-1,1,4380_7778208_400204,4380_1267 -4380_77937,292,4380_77616,Waterford,48199-00016-1,1,4380_7778208_400808,4380_1268 -4380_77937,293,4380_77617,Cork,47497-00017-1,1,4380_7778208_400204,4380_1267 -4380_77937,293,4380_77618,Waterford,48193-00017-1,1,4380_7778208_400808,4380_1268 -4380_77937,294,4380_77619,Waterford,48197-00018-1,1,4380_7778208_400808,4380_1268 -4380_77937,295,4380_77620,Cork,47493-00019-1,1,4380_7778208_400204,4380_1267 -4380_77937,295,4380_77621,Waterford,48201-00019-1,1,4380_7778208_400808,4380_1268 -4380_77937,294,4380_77622,Cork,47495-00018-1,1,4380_7778208_400204,4380_1267 -4380_77937,296,4380_77623,Cork,47439-00021-1,1,4380_7778208_400202,4380_1267 -4380_77937,296,4380_77624,Waterford,48130-00021-1,1,4380_7778208_400807,4380_1268 -4380_77937,285,4380_77632,Tralee,47750-00009-1,1,4380_7778208_400705,4380_1264 -4380_77937,286,4380_77633,Tralee,47748-00010-1,1,4380_7778208_400705,4380_1264 -4380_77937,297,4380_77634,Tralee,47520-00008-1,1,4380_7778208_400205,4380_1264 -4380_77937,287,4380_77635,Tralee,47742-00012-1,1,4380_7778208_400705,4380_1264 -4380_77937,288,4380_77636,Tralee,47746-00011-1,1,4380_7778208_400705,4380_1264 -4380_77937,289,4380_77637,Tralee,47744-00014-1,1,4380_7778208_400705,4380_1264 -4380_77937,290,4380_77638,Tralee,47751-00015-1,1,4380_7778208_400705,4380_1264 -4380_77937,291,4380_77639,Tralee,47752-00013-1,1,4380_7778208_400705,4380_1264 -4380_77953,285,4380_7764,Dublin,5830-00009-1,1,4380_7778208_1090110,4380_111 -4380_77937,292,4380_77640,Tralee,47749-00016-1,1,4380_7778208_400705,4380_1264 -4380_77937,293,4380_77641,Tralee,47747-00017-1,1,4380_7778208_400705,4380_1264 -4380_77937,295,4380_77642,Tralee,47745-00019-1,1,4380_7778208_400705,4380_1264 -4380_77937,294,4380_77643,Tralee,47743-00018-1,1,4380_7778208_400705,4380_1264 -4380_77937,296,4380_77644,Tralee,47753-00021-1,1,4380_7778208_400705,4380_1264 -4380_77953,286,4380_7765,Dublin,5838-00010-1,1,4380_7778208_1090110,4380_111 -4380_77937,285,4380_77652,Cork,47597-00009-1,1,4380_7778208_400702,4380_1265 -4380_77937,286,4380_77653,Cork,47605-00010-1,1,4380_7778208_400702,4380_1265 -4380_77937,297,4380_77654,Cork,47472-00008-1,1,4380_7778208_400203,4380_1265 -4380_77937,287,4380_77655,Cork,47603-00012-1,1,4380_7778208_400702,4380_1265 -4380_77937,288,4380_77656,Cork,47601-00011-1,1,4380_7778208_400702,4380_1265 -4380_77937,289,4380_77657,Cork,47599-00014-1,1,4380_7778208_400702,4380_1265 -4380_77937,290,4380_77658,Cork,47598-00015-1,1,4380_7778208_400702,4380_1265 -4380_77937,291,4380_77659,Cork,47794-00013-1,1,4380_7778208_400801,4380_1265 -4380_77953,297,4380_7766,Dublin,6912-00008-1,1,4380_7778208_1090903,4380_104 -4380_77937,292,4380_77660,Cork,47606-00016-1,1,4380_7778208_400702,4380_1265 -4380_77937,293,4380_77661,Cork,47602-00017-1,1,4380_7778208_400702,4380_1265 -4380_77937,295,4380_77662,Cork,47600-00019-1,1,4380_7778208_400702,4380_1265 -4380_77937,294,4380_77663,Cork,47604-00018-1,1,4380_7778208_400702,4380_1265 -4380_77937,296,4380_77664,Cork,47795-00021-1,1,4380_7778208_400801,4380_1265 -4380_77953,288,4380_7767,Dublin,5846-00011-1,1,4380_7778208_1090110,4380_111 -4380_77937,285,4380_77672,Tralee,47443-00009-1,1,4380_7778208_400202,4380_1264 -4380_77937,286,4380_77673,Tralee,47445-00010-1,1,4380_7778208_400202,4380_1264 -4380_77937,297,4380_77674,Tralee,47607-00008-1,1,4380_7778208_400702,4380_1264 -4380_77937,287,4380_77675,Tralee,47449-00012-1,1,4380_7778208_400202,4380_1264 -4380_77937,288,4380_77676,Tralee,47441-00011-1,1,4380_7778208_400202,4380_1264 -4380_77937,289,4380_77677,Tralee,47447-00014-1,1,4380_7778208_400202,4380_1264 -4380_77937,290,4380_77678,Tralee,47444-00015-1,1,4380_7778208_400202,4380_1264 -4380_77937,291,4380_77679,Tralee,47473-00013-1,1,4380_7778208_400203,4380_1264 -4380_77953,287,4380_7768,Dublin,5854-00012-1,1,4380_7778208_1090110,4380_111 -4380_77937,292,4380_77680,Tralee,47446-00016-1,1,4380_7778208_400202,4380_1264 -4380_77937,293,4380_77681,Tralee,47442-00017-1,1,4380_7778208_400202,4380_1264 -4380_77937,295,4380_77682,Tralee,47448-00019-1,1,4380_7778208_400202,4380_1264 -4380_77937,294,4380_77683,Tralee,47450-00018-1,1,4380_7778208_400202,4380_1264 -4380_77937,296,4380_77684,Tralee,47474-00021-1,1,4380_7778208_400203,4380_1264 -4380_77953,289,4380_7769,Dublin,5822-00014-1,1,4380_7778208_1090110,4380_111 -4380_77937,285,4380_77692,Waterford,47995-00009-1,1,4380_7778208_400805,4380_1268 -4380_77937,286,4380_77693,Waterford,48001-00010-1,1,4380_7778208_400805,4380_1268 -4380_77937,297,4380_77694,Waterford,48058-00008-1,1,4380_7778208_400806,4380_1268 -4380_77937,287,4380_77695,Waterford,47993-00012-1,1,4380_7778208_400805,4380_1268 -4380_77937,288,4380_77696,Waterford,47999-00011-1,1,4380_7778208_400805,4380_1268 -4380_77937,289,4380_77697,Waterford,48003-00014-1,1,4380_7778208_400805,4380_1268 -4380_77937,290,4380_77698,Waterford,47996-00015-1,1,4380_7778208_400805,4380_1268 -4380_77937,291,4380_77699,Waterford,47997-00013-1,1,4380_7778208_400805,4380_1268 -4380_77953,290,4380_7770,Dublin,55116-00015-1,1,4380_7778208_1090110,4380_111 -4380_77937,292,4380_77700,Waterford,48002-00016-1,1,4380_7778208_400805,4380_1268 -4380_77937,293,4380_77701,Waterford,48000-00017-1,1,4380_7778208_400805,4380_1268 -4380_77937,294,4380_77702,Waterford,47994-00018-1,1,4380_7778208_400805,4380_1268 -4380_77937,295,4380_77703,Waterford,48004-00019-1,1,4380_7778208_400805,4380_1268 -4380_77937,296,4380_77704,Waterford,47998-00021-1,1,4380_7778208_400805,4380_1268 -4380_77953,291,4380_7771,Dublin,6995-00013-1,1,4380_7778208_1090905,4380_114 -4380_77937,285,4380_77712,Cork,47847-00009-1,1,4380_7778208_400802,4380_1265 -4380_77937,286,4380_77713,Cork,47836-00010-1,1,4380_7778208_400802,4380_1265 -4380_77937,297,4380_77714,Cork,48147-00008-1,1,4380_7778208_400807,4380_1265 -4380_77937,287,4380_77715,Cork,47843-00012-1,1,4380_7778208_400802,4380_1265 -4380_77937,288,4380_77716,Cork,47845-00011-1,1,4380_7778208_400802,4380_1265 -4380_77937,289,4380_77717,Cork,47841-00014-1,1,4380_7778208_400802,4380_1265 -4380_77937,290,4380_77718,Cork,47848-00015-1,1,4380_7778208_400802,4380_1265 -4380_77937,291,4380_77719,Cork,47839-00013-1,1,4380_7778208_400802,4380_1265 -4380_77953,292,4380_7772,Dublin,55119-00016-1,1,4380_7778208_1090110,4380_111 -4380_77937,292,4380_77720,Cork,47837-00016-1,1,4380_7778208_400802,4380_1265 -4380_77937,293,4380_77721,Cork,47846-00017-1,1,4380_7778208_400802,4380_1265 -4380_77937,295,4380_77722,Cork,47842-00019-1,1,4380_7778208_400802,4380_1265 -4380_77937,294,4380_77723,Cork,47844-00018-1,1,4380_7778208_400802,4380_1265 -4380_77937,296,4380_77724,Cork,47840-00021-1,1,4380_7778208_400802,4380_1265 -4380_77953,293,4380_7773,Dublin,55115-00017-1,1,4380_7778208_1090110,4380_111 -4380_77937,285,4380_77732,Tralee,47560-00009-1,1,4380_7778208_400701,4380_1264 -4380_77937,286,4380_77733,Tralee,47564-00010-1,1,4380_7778208_400701,4380_1264 -4380_77937,297,4380_77734,Tralee,47498-00008-1,1,4380_7778208_400204,4380_1264 -4380_77937,287,4380_77735,Tralee,47566-00012-1,1,4380_7778208_400701,4380_1264 -4380_77937,288,4380_77736,Tralee,47562-00011-1,1,4380_7778208_400701,4380_1264 -4380_77937,289,4380_77737,Tralee,47571-00014-1,1,4380_7778208_400701,4380_1264 -4380_77937,290,4380_77738,Tralee,47561-00015-1,1,4380_7778208_400701,4380_1264 -4380_77937,291,4380_77739,Tralee,47568-00013-1,1,4380_7778208_400701,4380_1264 -4380_77953,294,4380_7774,Dublin,55117-00018-1,1,4380_7778208_1090110,4380_111 -4380_77937,292,4380_77740,Tralee,47565-00016-1,1,4380_7778208_400701,4380_1264 -4380_77937,293,4380_77741,Tralee,47563-00017-1,1,4380_7778208_400701,4380_1264 -4380_77937,295,4380_77742,Tralee,47572-00019-1,1,4380_7778208_400701,4380_1264 -4380_77937,294,4380_77743,Tralee,47567-00018-1,1,4380_7778208_400701,4380_1264 -4380_77937,296,4380_77744,Tralee,47569-00021-1,1,4380_7778208_400701,4380_1264 -4380_77953,295,4380_7775,Dublin,55118-00019-1,1,4380_7778208_1090110,4380_111 -4380_77937,285,4380_77752,Cork,47907-00009-1,1,4380_7778208_400803,4380_1265 -4380_77937,286,4380_77753,Cork,47911-00010-1,1,4380_7778208_400803,4380_1265 -4380_77937,297,4380_77754,Cork,47953-00008-1,1,4380_7778208_400804,4380_1265 -4380_77937,287,4380_77755,Cork,47909-00012-1,1,4380_7778208_400803,4380_1265 -4380_77937,288,4380_77756,Cork,47901-00011-1,1,4380_7778208_400803,4380_1265 -4380_77937,289,4380_77757,Cork,47905-00014-1,1,4380_7778208_400803,4380_1265 -4380_77937,290,4380_77758,Cork,47908-00015-1,1,4380_7778208_400803,4380_1265 -4380_77937,291,4380_77759,Cork,47903-00013-1,1,4380_7778208_400803,4380_1265 -4380_77953,296,4380_7776,Dublin,55471-00021-1,1,4380_7778208_1090905,4380_114 -4380_77937,292,4380_77760,Cork,47912-00016-1,1,4380_7778208_400803,4380_1265 -4380_77937,293,4380_77761,Cork,47902-00017-1,1,4380_7778208_400803,4380_1265 -4380_77937,295,4380_77762,Cork,47906-00019-1,1,4380_7778208_400803,4380_1265 -4380_77937,294,4380_77763,Cork,47910-00018-1,1,4380_7778208_400803,4380_1265 -4380_77937,296,4380_77764,Cork,47904-00021-1,1,4380_7778208_400803,4380_1265 -4380_77937,285,4380_77772,Tralee,44299-00009-1,1,4380_7778208_130701,4380_1264 -4380_77937,286,4380_77773,Tralee,44297-00010-1,1,4380_7778208_130701,4380_1264 -4380_77937,297,4380_77774,Tralee,47453-00008-1,1,4380_7778208_400202,4380_1264 -4380_77937,287,4380_77775,Tralee,44295-00012-1,1,4380_7778208_130701,4380_1264 -4380_77937,288,4380_77776,Tralee,44301-00011-1,1,4380_7778208_130701,4380_1264 -4380_77937,289,4380_77777,Tralee,44303-00014-1,1,4380_7778208_130701,4380_1264 -4380_77937,290,4380_77778,Tralee,44300-00015-1,1,4380_7778208_130701,4380_1264 -4380_77937,291,4380_77779,Tralee,47776-00013-1,1,4380_7778208_400706,4380_1264 -4380_77937,292,4380_77780,Tralee,44298-00016-1,1,4380_7778208_130701,4380_1264 -4380_77937,293,4380_77781,Tralee,44302-00017-1,1,4380_7778208_130701,4380_1264 -4380_77937,295,4380_77782,Tralee,44304-00019-1,1,4380_7778208_130701,4380_1264 -4380_77937,294,4380_77783,Tralee,44296-00018-1,1,4380_7778208_130701,4380_1264 -4380_77937,296,4380_77784,Tralee,47777-00021-1,1,4380_7778208_400706,4380_1264 -4380_77937,285,4380_77798,Cork,47964-00009-1,1,4380_7778208_400804,4380_1267 -4380_77937,285,4380_77799,Waterford,48070-00009-1,1,4380_7778208_400806,4380_1268 -4380_77937,286,4380_77800,Cork,47958-00010-1,1,4380_7778208_400804,4380_1267 -4380_77937,286,4380_77801,Waterford,48068-00010-1,1,4380_7778208_400806,4380_1268 -4380_77937,297,4380_77802,Waterford,47849-00008-1,1,4380_7778208_400802,4380_1269 -4380_77937,297,4380_77803,Cork,48065-00008-1,1,4380_7778208_400806,4380_1267 -4380_77937,287,4380_77804,Cork,47962-00012-1,1,4380_7778208_400804,4380_1267 -4380_77937,287,4380_77805,Waterford,48063-00012-1,1,4380_7778208_400806,4380_1268 -4380_77937,288,4380_77806,Cork,47954-00011-1,1,4380_7778208_400804,4380_1267 -4380_77937,288,4380_77807,Waterford,48072-00011-1,1,4380_7778208_400806,4380_1268 -4380_77937,289,4380_77808,Cork,47956-00014-1,1,4380_7778208_400804,4380_1267 -4380_77937,289,4380_77809,Waterford,48066-00014-1,1,4380_7778208_400806,4380_1268 -4380_77937,290,4380_77810,Cork,47965-00015-1,1,4380_7778208_400804,4380_1267 -4380_77937,290,4380_77811,Waterford,48071-00015-1,1,4380_7778208_400806,4380_1268 -4380_77937,291,4380_77812,Cork,47960-00013-1,1,4380_7778208_400804,4380_1267 -4380_77937,292,4380_77813,Cork,47959-00016-1,1,4380_7778208_400804,4380_1267 -4380_77937,292,4380_77814,Waterford,48069-00016-1,1,4380_7778208_400806,4380_1268 -4380_77937,293,4380_77815,Cork,47955-00017-1,1,4380_7778208_400804,4380_1267 -4380_77937,293,4380_77816,Waterford,48073-00017-1,1,4380_7778208_400806,4380_1268 -4380_77937,294,4380_77817,Waterford,48064-00018-1,1,4380_7778208_400806,4380_1268 -4380_77937,295,4380_77818,Cork,47957-00019-1,1,4380_7778208_400804,4380_1267 -4380_77937,295,4380_77819,Waterford,48067-00019-1,1,4380_7778208_400806,4380_1268 -4380_77937,294,4380_77820,Cork,47963-00018-1,1,4380_7778208_400804,4380_1267 -4380_77937,296,4380_77821,Cork,47961-00021-1,1,4380_7778208_400804,4380_1267 -4380_77937,291,4380_77823,Waterford,48074-00013-1,1,4380_7778208_400806,4380_1270 -4380_77937,296,4380_77824,Waterford,48075-00021-1,1,4380_7778208_400806,4380_1270 -4380_77937,285,4380_77832,Tralee,47608-00009-1,1,4380_7778208_400702,4380_1264 -4380_77937,286,4380_77833,Tralee,47616-00010-1,1,4380_7778208_400702,4380_1264 -4380_77937,297,4380_77834,Tralee,47657-00008-1,1,4380_7778208_400703,4380_1264 -4380_77937,287,4380_77835,Tralee,47610-00012-1,1,4380_7778208_400702,4380_1264 -4380_77937,288,4380_77836,Tralee,47618-00011-1,1,4380_7778208_400702,4380_1264 -4380_77937,289,4380_77837,Tralee,47612-00014-1,1,4380_7778208_400702,4380_1264 -4380_77937,290,4380_77838,Tralee,47609-00015-1,1,4380_7778208_400702,4380_1264 -4380_77937,291,4380_77839,Tralee,47614-00013-1,1,4380_7778208_400702,4380_1264 -4380_77953,285,4380_7784,Dublin,5664-00009-1,1,4380_7778208_1090107,4380_110 -4380_77937,292,4380_77840,Tralee,47617-00016-1,1,4380_7778208_400702,4380_1264 -4380_77937,293,4380_77841,Tralee,47619-00017-1,1,4380_7778208_400702,4380_1264 -4380_77937,295,4380_77842,Tralee,47613-00019-1,1,4380_7778208_400702,4380_1264 -4380_77937,294,4380_77843,Tralee,47611-00018-1,1,4380_7778208_400702,4380_1264 -4380_77937,296,4380_77844,Tralee,47615-00021-1,1,4380_7778208_400702,4380_1264 -4380_77953,286,4380_7785,Dublin,5672-00010-1,1,4380_7778208_1090107,4380_110 -4380_77937,285,4380_77852,Cork,47390-00009-1,1,4380_7778208_400201,4380_1265 -4380_77937,286,4380_77853,Cork,47394-00010-1,1,4380_7778208_400201,4380_1265 -4380_77937,297,4380_77854,Cork,47913-00008-1,1,4380_7778208_400803,4380_1265 -4380_77937,287,4380_77855,Cork,47392-00012-1,1,4380_7778208_400201,4380_1265 -4380_77937,288,4380_77856,Cork,47400-00011-1,1,4380_7778208_400201,4380_1265 -4380_77937,289,4380_77857,Cork,47396-00014-1,1,4380_7778208_400201,4380_1265 -4380_77937,290,4380_77858,Cork,47391-00015-1,1,4380_7778208_400201,4380_1265 -4380_77937,291,4380_77859,Cork,47398-00013-1,1,4380_7778208_400201,4380_1265 -4380_77953,297,4380_7786,Dublin,5642-00008-1,1,4380_7778208_1090106,4380_105 -4380_77937,292,4380_77860,Cork,47395-00016-1,1,4380_7778208_400201,4380_1265 -4380_77937,293,4380_77861,Cork,47401-00017-1,1,4380_7778208_400201,4380_1265 -4380_77937,295,4380_77862,Cork,47397-00019-1,1,4380_7778208_400201,4380_1265 -4380_77937,294,4380_77863,Cork,47393-00018-1,1,4380_7778208_400201,4380_1265 -4380_77937,296,4380_77864,Cork,47399-00021-1,1,4380_7778208_400201,4380_1265 -4380_77953,288,4380_7787,Dublin,5680-00011-1,1,4380_7778208_1090107,4380_110 -4380_77937,285,4380_77879,Tralee,47719-00009-1,1,4380_7778208_400704,4380_1264 -4380_77953,287,4380_7788,Dublin,5688-00012-1,1,4380_7778208_1090107,4380_110 -4380_77937,285,4380_77880,Waterford,48035-00009-1,1,4380_7778208_400805,4380_1268 -4380_77937,286,4380_77881,Tralee,47723-00010-1,1,4380_7778208_400704,4380_1264 -4380_77937,286,4380_77882,Waterford,48033-00010-1,1,4380_7778208_400805,4380_1268 -4380_77937,297,4380_77883,Tralee,47573-00008-1,1,4380_7778208_400701,4380_1264 -4380_77937,297,4380_77884,Waterford,47810-00008-1,1,4380_7778208_400801,4380_1269 -4380_77937,287,4380_77885,Tralee,47717-00012-1,1,4380_7778208_400704,4380_1264 -4380_77937,287,4380_77886,Waterford,48029-00012-1,1,4380_7778208_400805,4380_1268 -4380_77937,288,4380_77887,Tralee,47725-00011-1,1,4380_7778208_400704,4380_1264 -4380_77937,288,4380_77888,Waterford,48031-00011-1,1,4380_7778208_400805,4380_1268 -4380_77937,289,4380_77889,Tralee,47721-00014-1,1,4380_7778208_400704,4380_1264 -4380_77953,289,4380_7789,Dublin,5656-00014-1,1,4380_7778208_1090107,4380_110 -4380_77937,289,4380_77890,Waterford,48039-00014-1,1,4380_7778208_400805,4380_1268 -4380_77937,290,4380_77891,Tralee,47720-00015-1,1,4380_7778208_400704,4380_1264 -4380_77937,290,4380_77892,Waterford,48036-00015-1,1,4380_7778208_400805,4380_1268 -4380_77937,291,4380_77893,Tralee,47658-00013-1,1,4380_7778208_400703,4380_1264 -4380_77937,291,4380_77894,Waterford,48037-00013-1,1,4380_7778208_400805,4380_1268 -4380_77937,292,4380_77895,Tralee,47724-00016-1,1,4380_7778208_400704,4380_1264 -4380_77937,292,4380_77896,Waterford,48034-00016-1,1,4380_7778208_400805,4380_1268 -4380_77937,293,4380_77897,Tralee,47726-00017-1,1,4380_7778208_400704,4380_1264 -4380_77937,293,4380_77898,Waterford,48032-00017-1,1,4380_7778208_400805,4380_1268 -4380_77937,294,4380_77899,Waterford,48030-00018-1,1,4380_7778208_400805,4380_1268 -4380_77953,290,4380_7790,Dublin,54997-00015-1,1,4380_7778208_1090107,4380_110 -4380_77937,295,4380_77900,Tralee,47722-00019-1,1,4380_7778208_400704,4380_1264 -4380_77937,295,4380_77901,Waterford,48040-00019-1,1,4380_7778208_400805,4380_1268 -4380_77937,294,4380_77902,Tralee,47718-00018-1,1,4380_7778208_400704,4380_1264 -4380_77937,296,4380_77903,Tralee,47659-00021-1,1,4380_7778208_400703,4380_1264 -4380_77937,296,4380_77904,Waterford,48038-00021-1,1,4380_7778208_400805,4380_1268 -4380_77953,291,4380_7791,Dublin,5699-00013-1,1,4380_7778208_1090107,4380_113 -4380_77937,285,4380_77912,Cork,47510-00009-1,1,4380_7778208_400204,4380_1267 -4380_77937,286,4380_77913,Cork,47512-00010-1,1,4380_7778208_400204,4380_1267 -4380_77937,297,4380_77914,Cork,47402-00008-1,1,4380_7778208_400201,4380_1267 -4380_77937,287,4380_77915,Cork,47516-00012-1,1,4380_7778208_400204,4380_1267 -4380_77937,288,4380_77916,Cork,47514-00011-1,1,4380_7778208_400204,4380_1267 -4380_77937,289,4380_77917,Cork,47518-00014-1,1,4380_7778208_400204,4380_1267 -4380_77937,290,4380_77918,Cork,47511-00015-1,1,4380_7778208_400204,4380_1267 -4380_77937,291,4380_77919,Cork,47464-00013-1,1,4380_7778208_400202,4380_1267 -4380_77953,292,4380_7792,Dublin,54996-00016-1,1,4380_7778208_1090107,4380_110 -4380_77937,292,4380_77920,Cork,47513-00016-1,1,4380_7778208_400204,4380_1267 -4380_77937,293,4380_77921,Cork,47515-00017-1,1,4380_7778208_400204,4380_1267 -4380_77937,295,4380_77922,Cork,47519-00019-1,1,4380_7778208_400204,4380_1267 -4380_77937,294,4380_77923,Cork,47517-00018-1,1,4380_7778208_400204,4380_1267 -4380_77937,296,4380_77924,Cork,47465-00021-1,1,4380_7778208_400202,4380_1267 -4380_77953,293,4380_7793,Dublin,54992-00017-1,1,4380_7778208_1090107,4380_110 -4380_77937,285,4380_77932,Tralee,47764-00009-1,1,4380_7778208_400705,4380_1264 -4380_77937,286,4380_77933,Tralee,47768-00010-1,1,4380_7778208_400705,4380_1264 -4380_77937,297,4380_77934,Tralee,47727-00008-1,1,4380_7778208_400704,4380_1264 -4380_77937,287,4380_77935,Tralee,47770-00012-1,1,4380_7778208_400705,4380_1264 -4380_77937,288,4380_77936,Tralee,47766-00011-1,1,4380_7778208_400705,4380_1264 -4380_77937,289,4380_77937,Tralee,47772-00014-1,1,4380_7778208_400705,4380_1264 -4380_77937,290,4380_77938,Tralee,47765-00015-1,1,4380_7778208_400705,4380_1264 -4380_77937,291,4380_77939,Tralee,47728-00013-1,1,4380_7778208_400704,4380_1264 -4380_77953,294,4380_7794,Dublin,54995-00018-1,1,4380_7778208_1090107,4380_110 -4380_77937,292,4380_77940,Tralee,47769-00016-1,1,4380_7778208_400705,4380_1264 -4380_77937,293,4380_77941,Tralee,47767-00017-1,1,4380_7778208_400705,4380_1264 -4380_77937,295,4380_77942,Tralee,47773-00019-1,1,4380_7778208_400705,4380_1264 -4380_77937,294,4380_77943,Tralee,47771-00018-1,1,4380_7778208_400705,4380_1264 -4380_77937,296,4380_77944,Tralee,47729-00021-1,1,4380_7778208_400704,4380_1264 -4380_77953,295,4380_7795,Dublin,54993-00019-1,1,4380_7778208_1090107,4380_110 -4380_77937,285,4380_77952,Cork,47869-00009-1,1,4380_7778208_400802,4380_1267 -4380_77937,286,4380_77953,Cork,47867-00010-1,1,4380_7778208_400802,4380_1267 -4380_77937,297,4380_77954,Cork,48161-00008-1,1,4380_7778208_400807,4380_1267 -4380_77937,287,4380_77955,Cork,47871-00012-1,1,4380_7778208_400802,4380_1267 -4380_77937,288,4380_77956,Cork,47873-00011-1,1,4380_7778208_400802,4380_1267 -4380_77937,289,4380_77957,Cork,47863-00014-1,1,4380_7778208_400802,4380_1267 -4380_77937,290,4380_77958,Cork,47870-00015-1,1,4380_7778208_400802,4380_1267 -4380_77937,291,4380_77959,Cork,47865-00013-1,1,4380_7778208_400802,4380_1267 -4380_77953,296,4380_7796,Dublin,54994-00021-1,1,4380_7778208_1090107,4380_113 -4380_77937,292,4380_77960,Cork,47868-00016-1,1,4380_7778208_400802,4380_1267 -4380_77937,293,4380_77961,Cork,47874-00017-1,1,4380_7778208_400802,4380_1267 -4380_77937,295,4380_77962,Cork,47864-00019-1,1,4380_7778208_400802,4380_1267 -4380_77937,294,4380_77963,Cork,47872-00018-1,1,4380_7778208_400802,4380_1267 -4380_77937,296,4380_77964,Cork,47866-00021-1,1,4380_7778208_400802,4380_1267 -4380_78059,285,4380_77970,Dr. Mannix Road,101662-00009-1,0,4380_7778208_4010302,4380_1271 -4380_78059,288,4380_77972,Dr. Mannix Road,101660-00011-1,0,4380_7778208_4010302,4380_1271 -4380_78059,286,4380_77973,Dr. Mannix Road,101654-00010-1,0,4380_7778208_4010302,4380_1271 -4380_78059,291,4380_77974,Dr. Mannix Road,101656-00013-1,0,4380_7778208_4010302,4380_1273 -4380_78059,289,4380_77975,Dr. Mannix Road,101664-00014-1,0,4380_7778208_4010302,4380_1271 -4380_78059,287,4380_77976,Dr. Mannix Road,101658-00012-1,0,4380_7778208_4010302,4380_1271 -4380_78059,292,4380_77977,Dr. Mannix Road,101655-00016-1,0,4380_7778208_4010302,4380_1271 -4380_78059,290,4380_77978,Dr. Mannix Road,101663-00015-1,0,4380_7778208_4010302,4380_1271 -4380_78059,294,4380_77979,Dr. Mannix Road,101659-00018-1,0,4380_7778208_4010302,4380_1271 -4380_78059,295,4380_77980,Dr. Mannix Road,101665-00019-1,0,4380_7778208_4010302,4380_1271 -4380_78059,293,4380_77981,Dr. Mannix Road,101661-00017-1,0,4380_7778208_4010302,4380_1271 -4380_78059,296,4380_77982,Dr. Mannix Road,101657-00021-1,0,4380_7778208_4010302,4380_1273 -4380_78059,285,4380_77988,Dr. Mannix Road,102159-00009-1,0,4380_7778208_4010304,4380_1271 -4380_78059,288,4380_77990,Dr. Mannix Road,102161-00011-1,0,4380_7778208_4010304,4380_1271 -4380_78059,286,4380_77991,Dr. Mannix Road,102163-00010-1,0,4380_7778208_4010304,4380_1271 -4380_78059,291,4380_77992,Dr. Mannix Road,102167-00013-1,0,4380_7778208_4010304,4380_1273 -4380_78059,289,4380_77993,Dr. Mannix Road,102157-00014-1,0,4380_7778208_4010304,4380_1271 -4380_78059,287,4380_77994,Dr. Mannix Road,102165-00012-1,0,4380_7778208_4010304,4380_1271 -4380_78059,292,4380_77995,Dr. Mannix Road,102164-00016-1,0,4380_7778208_4010304,4380_1271 -4380_78059,290,4380_77996,Dr. Mannix Road,102160-00015-1,0,4380_7778208_4010304,4380_1271 -4380_78059,294,4380_77997,Dr. Mannix Road,102166-00018-1,0,4380_7778208_4010304,4380_1271 -4380_78059,295,4380_77998,Dr. Mannix Road,102158-00019-1,0,4380_7778208_4010304,4380_1271 -4380_78059,293,4380_77999,Dr. Mannix Road,102162-00017-1,0,4380_7778208_4010304,4380_1271 -4380_77946,290,4380_78,Dundalk,50382-00015-1,0,4380_7778208_1000914,4380_1 -4380_78059,296,4380_78000,Dr. Mannix Road,102168-00021-1,0,4380_7778208_4010304,4380_1273 -4380_78059,285,4380_78006,Dr. Mannix Road,102649-00009-1,0,4380_7778208_4010306,4380_1271 -4380_78059,288,4380_78008,Dr. Mannix Road,102645-00011-1,0,4380_7778208_4010306,4380_1271 -4380_78059,286,4380_78009,Dr. Mannix Road,102647-00010-1,0,4380_7778208_4010306,4380_1271 -4380_78059,291,4380_78010,Dr. Mannix Road,101405-00013-1,0,4380_7778208_4010301,4380_1273 -4380_78059,289,4380_78011,Dr. Mannix Road,102641-00014-1,0,4380_7778208_4010306,4380_1271 -4380_78059,287,4380_78012,Dr. Mannix Road,102643-00012-1,0,4380_7778208_4010306,4380_1271 -4380_78059,292,4380_78013,Dr. Mannix Road,102648-00016-1,0,4380_7778208_4010306,4380_1271 -4380_78059,290,4380_78014,Dr. Mannix Road,102650-00015-1,0,4380_7778208_4010306,4380_1271 -4380_78059,294,4380_78015,Dr. Mannix Road,102644-00018-1,0,4380_7778208_4010306,4380_1271 -4380_78059,295,4380_78016,Dr. Mannix Road,102642-00019-1,0,4380_7778208_4010306,4380_1271 -4380_78059,293,4380_78017,Dr. Mannix Road,102646-00017-1,0,4380_7778208_4010306,4380_1271 -4380_78059,296,4380_78018,Dr. Mannix Road,101406-00021-1,0,4380_7778208_4010301,4380_1273 -4380_78059,285,4380_78024,Dr. Mannix Road,101415-00009-1,0,4380_7778208_4010301,4380_1271 -4380_78059,288,4380_78026,Dr. Mannix Road,101409-00011-1,0,4380_7778208_4010301,4380_1271 -4380_78059,286,4380_78027,Dr. Mannix Road,101407-00010-1,0,4380_7778208_4010301,4380_1271 -4380_78059,291,4380_78028,Dr. Mannix Road,101919-00013-1,0,4380_7778208_4010303,4380_1273 -4380_78059,289,4380_78029,Dr. Mannix Road,101413-00014-1,0,4380_7778208_4010301,4380_1271 -4380_78059,287,4380_78030,Dr. Mannix Road,101411-00012-1,0,4380_7778208_4010301,4380_1271 -4380_78059,292,4380_78031,Dr. Mannix Road,101408-00016-1,0,4380_7778208_4010301,4380_1271 -4380_78059,290,4380_78032,Dr. Mannix Road,101416-00015-1,0,4380_7778208_4010301,4380_1271 -4380_78059,294,4380_78033,Dr. Mannix Road,101412-00018-1,0,4380_7778208_4010301,4380_1271 -4380_78059,295,4380_78034,Dr. Mannix Road,101414-00019-1,0,4380_7778208_4010301,4380_1271 -4380_78059,293,4380_78035,Dr. Mannix Road,101410-00017-1,0,4380_7778208_4010301,4380_1271 -4380_78059,296,4380_78036,Dr. Mannix Road,101920-00021-1,0,4380_7778208_4010303,4380_1273 -4380_77953,285,4380_7804,Dublin,5726-00009-1,1,4380_7778208_1090108,4380_110 -4380_78059,297,4380_78043,Dr. Mannix Road,101678-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78044,Dr. Mannix Road,101923-00009-1,0,4380_7778208_4010303,4380_1273 -4380_78059,288,4380_78046,Dr. Mannix Road,101925-00011-1,0,4380_7778208_4010303,4380_1273 -4380_78059,286,4380_78047,Dr. Mannix Road,101929-00010-1,0,4380_7778208_4010303,4380_1273 -4380_78059,291,4380_78048,Dr. Mannix Road,102419-00013-1,0,4380_7778208_4010305,4380_1275 -4380_78059,289,4380_78049,Dr. Mannix Road,101927-00014-1,0,4380_7778208_4010303,4380_1273 -4380_77953,286,4380_7805,Dublin,5734-00010-1,1,4380_7778208_1090108,4380_110 -4380_78059,287,4380_78050,Dr. Mannix Road,101921-00012-1,0,4380_7778208_4010303,4380_1273 -4380_78059,292,4380_78051,Dr. Mannix Road,101930-00016-1,0,4380_7778208_4010303,4380_1273 -4380_78059,290,4380_78052,Dr. Mannix Road,101924-00015-1,0,4380_7778208_4010303,4380_1273 -4380_78059,294,4380_78053,Dr. Mannix Road,101922-00018-1,0,4380_7778208_4010303,4380_1273 -4380_78059,295,4380_78054,Dr. Mannix Road,101928-00019-1,0,4380_7778208_4010303,4380_1273 -4380_78059,293,4380_78055,Dr. Mannix Road,101926-00017-1,0,4380_7778208_4010303,4380_1273 -4380_78059,296,4380_78056,Dr. Mannix Road,102420-00021-1,0,4380_7778208_4010305,4380_1275 -4380_77953,297,4380_7806,Dublin,5445-00008-1,1,4380_7778208_1090103,4380_105 -4380_78059,297,4380_78063,Dr. Mannix Road,102181-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78064,Dr. Mannix Road,102429-00009-1,0,4380_7778208_4010305,4380_1273 -4380_78059,288,4380_78066,Dr. Mannix Road,102425-00011-1,0,4380_7778208_4010305,4380_1273 -4380_78059,286,4380_78067,Dr. Mannix Road,102427-00010-1,0,4380_7778208_4010305,4380_1273 -4380_78059,291,4380_78068,Dr. Mannix Road,101679-00013-1,0,4380_7778208_4010302,4380_1275 -4380_78059,289,4380_78069,Dr. Mannix Road,102421-00014-1,0,4380_7778208_4010305,4380_1273 -4380_77953,288,4380_7807,Dublin,5742-00011-1,1,4380_7778208_1090108,4380_110 -4380_78059,287,4380_78070,Dr. Mannix Road,102423-00012-1,0,4380_7778208_4010305,4380_1273 -4380_78059,292,4380_78071,Dr. Mannix Road,102428-00016-1,0,4380_7778208_4010305,4380_1273 -4380_78059,290,4380_78072,Dr. Mannix Road,102430-00015-1,0,4380_7778208_4010305,4380_1273 -4380_78059,294,4380_78073,Dr. Mannix Road,102424-00018-1,0,4380_7778208_4010305,4380_1273 -4380_78059,295,4380_78074,Dr. Mannix Road,102422-00019-1,0,4380_7778208_4010305,4380_1273 -4380_78059,293,4380_78075,Dr. Mannix Road,102426-00017-1,0,4380_7778208_4010305,4380_1273 -4380_78059,296,4380_78076,Dr. Mannix Road,101680-00021-1,0,4380_7778208_4010302,4380_1275 -4380_77953,287,4380_7808,Dublin,5750-00012-1,1,4380_7778208_1090108,4380_110 -4380_78059,297,4380_78083,Dr. Mannix Road,101430-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78084,Dr. Mannix Road,101687-00009-1,0,4380_7778208_4010302,4380_1273 -4380_78059,288,4380_78086,Dr. Mannix Road,101689-00011-1,0,4380_7778208_4010302,4380_1273 -4380_78059,286,4380_78087,Dr. Mannix Road,101681-00010-1,0,4380_7778208_4010302,4380_1273 -4380_78059,291,4380_78088,Dr. Mannix Road,102182-00013-1,0,4380_7778208_4010304,4380_1275 -4380_78059,289,4380_78089,Dr. Mannix Road,101683-00014-1,0,4380_7778208_4010302,4380_1273 -4380_77953,289,4380_7809,Dublin,5718-00014-1,1,4380_7778208_1090108,4380_110 -4380_78059,287,4380_78090,Dr. Mannix Road,101685-00012-1,0,4380_7778208_4010302,4380_1273 -4380_78059,292,4380_78091,Dr. Mannix Road,101682-00016-1,0,4380_7778208_4010302,4380_1273 -4380_78059,290,4380_78092,Dr. Mannix Road,101688-00015-1,0,4380_7778208_4010302,4380_1273 -4380_78059,294,4380_78093,Dr. Mannix Road,101686-00018-1,0,4380_7778208_4010302,4380_1273 -4380_78059,295,4380_78094,Dr. Mannix Road,101684-00019-1,0,4380_7778208_4010302,4380_1273 -4380_78059,293,4380_78095,Dr. Mannix Road,101690-00017-1,0,4380_7778208_4010302,4380_1273 -4380_78059,296,4380_78096,Dr. Mannix Road,102183-00021-1,0,4380_7778208_4010304,4380_1275 -4380_77953,290,4380_7810,Dublin,55044-00015-1,1,4380_7778208_1090108,4380_110 -4380_78059,297,4380_78103,Dr. Mannix Road,101944-00008-1,0,4380_7778208_4010303,4380_1271 -4380_78059,285,4380_78104,Dr. Mannix Road,102184-00009-1,0,4380_7778208_4010304,4380_1273 -4380_78059,288,4380_78106,Dr. Mannix Road,102188-00011-1,0,4380_7778208_4010304,4380_1273 -4380_78059,286,4380_78107,Dr. Mannix Road,102186-00010-1,0,4380_7778208_4010304,4380_1273 -4380_78059,291,4380_78108,Dr. Mannix Road,101431-00013-1,0,4380_7778208_4010301,4380_1275 -4380_78059,289,4380_78109,Dr. Mannix Road,102192-00014-1,0,4380_7778208_4010304,4380_1273 -4380_77953,291,4380_7811,Dublin,6816-00013-1,1,4380_7778208_1090901,4380_113 -4380_78059,287,4380_78110,Dr. Mannix Road,102190-00012-1,0,4380_7778208_4010304,4380_1273 -4380_78059,292,4380_78111,Dr. Mannix Road,102187-00016-1,0,4380_7778208_4010304,4380_1273 -4380_78059,290,4380_78112,Dr. Mannix Road,102185-00015-1,0,4380_7778208_4010304,4380_1273 -4380_78059,294,4380_78113,Dr. Mannix Road,102191-00018-1,0,4380_7778208_4010304,4380_1273 -4380_78059,295,4380_78114,Dr. Mannix Road,102193-00019-1,0,4380_7778208_4010304,4380_1273 -4380_78059,293,4380_78115,Dr. Mannix Road,102189-00017-1,0,4380_7778208_4010304,4380_1273 -4380_78059,296,4380_78116,Dr. Mannix Road,101432-00021-1,0,4380_7778208_4010301,4380_1275 -4380_77953,292,4380_7812,Dublin,55042-00016-1,1,4380_7778208_1090108,4380_110 -4380_78059,297,4380_78123,Dr. Mannix Road,102444-00008-1,0,4380_7778208_4010305,4380_1271 -4380_78059,285,4380_78124,Dr. Mannix Road,102667-00009-1,0,4380_7778208_4010306,4380_1273 -4380_78059,288,4380_78126,Dr. Mannix Road,102665-00011-1,0,4380_7778208_4010306,4380_1273 -4380_78059,286,4380_78127,Dr. Mannix Road,102663-00010-1,0,4380_7778208_4010306,4380_1273 -4380_78059,291,4380_78128,Dr. Mannix Road,101945-00013-1,0,4380_7778208_4010303,4380_1275 -4380_78059,289,4380_78129,Dr. Mannix Road,102669-00014-1,0,4380_7778208_4010306,4380_1273 -4380_77953,293,4380_7813,Dublin,55040-00017-1,1,4380_7778208_1090108,4380_110 -4380_78059,287,4380_78130,Dr. Mannix Road,102661-00012-1,0,4380_7778208_4010306,4380_1273 -4380_78059,292,4380_78131,Dr. Mannix Road,102664-00016-1,0,4380_7778208_4010306,4380_1273 -4380_78059,290,4380_78132,Dr. Mannix Road,102668-00015-1,0,4380_7778208_4010306,4380_1273 -4380_78059,294,4380_78133,Dr. Mannix Road,102662-00018-1,0,4380_7778208_4010306,4380_1273 -4380_78059,295,4380_78134,Dr. Mannix Road,102670-00019-1,0,4380_7778208_4010306,4380_1273 -4380_78059,293,4380_78135,Dr. Mannix Road,102666-00017-1,0,4380_7778208_4010306,4380_1273 -4380_78059,296,4380_78136,Dr. Mannix Road,101946-00021-1,0,4380_7778208_4010303,4380_1275 -4380_77953,294,4380_7814,Dublin,55041-00018-1,1,4380_7778208_1090108,4380_110 -4380_78059,297,4380_78143,Dr. Mannix Road,101704-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78144,Dr. Mannix Road,101434-00009-1,0,4380_7778208_4010301,4380_1273 -4380_78059,288,4380_78146,Dr. Mannix Road,101436-00011-1,0,4380_7778208_4010301,4380_1273 -4380_78059,286,4380_78147,Dr. Mannix Road,101442-00010-1,0,4380_7778208_4010301,4380_1273 -4380_78059,291,4380_78148,Dr. Mannix Road,102445-00013-1,0,4380_7778208_4010305,4380_1275 -4380_78059,289,4380_78149,Dr. Mannix Road,101438-00014-1,0,4380_7778208_4010301,4380_1273 -4380_77953,295,4380_7815,Dublin,55043-00019-1,1,4380_7778208_1090108,4380_110 -4380_78059,287,4380_78150,Dr. Mannix Road,101440-00012-1,0,4380_7778208_4010301,4380_1273 -4380_78059,292,4380_78151,Dr. Mannix Road,101443-00016-1,0,4380_7778208_4010301,4380_1273 -4380_78059,290,4380_78152,Dr. Mannix Road,101435-00015-1,0,4380_7778208_4010301,4380_1273 -4380_78059,294,4380_78153,Dr. Mannix Road,101441-00018-1,0,4380_7778208_4010301,4380_1273 -4380_78059,295,4380_78154,Dr. Mannix Road,101439-00019-1,0,4380_7778208_4010301,4380_1273 -4380_78059,293,4380_78155,Dr. Mannix Road,101437-00017-1,0,4380_7778208_4010301,4380_1273 -4380_78059,296,4380_78156,Dr. Mannix Road,102446-00021-1,0,4380_7778208_4010305,4380_1275 -4380_77953,296,4380_7816,Dublin,55352-00021-1,1,4380_7778208_1090901,4380_113 -4380_78059,297,4380_78163,Dr. Mannix Road,102207-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78164,Dr. Mannix Road,101948-00009-1,0,4380_7778208_4010303,4380_1273 -4380_78059,288,4380_78166,Dr. Mannix Road,101952-00011-1,0,4380_7778208_4010303,4380_1273 -4380_78059,286,4380_78167,Dr. Mannix Road,101950-00010-1,0,4380_7778208_4010303,4380_1273 -4380_78059,291,4380_78168,Dr. Mannix Road,101705-00013-1,0,4380_7778208_4010302,4380_1275 -4380_78059,289,4380_78169,Dr. Mannix Road,101956-00014-1,0,4380_7778208_4010303,4380_1273 -4380_78059,287,4380_78170,Dr. Mannix Road,101954-00012-1,0,4380_7778208_4010303,4380_1273 -4380_78059,292,4380_78171,Dr. Mannix Road,101951-00016-1,0,4380_7778208_4010303,4380_1273 -4380_78059,290,4380_78172,Dr. Mannix Road,101949-00015-1,0,4380_7778208_4010303,4380_1273 -4380_78059,294,4380_78173,Dr. Mannix Road,101955-00018-1,0,4380_7778208_4010303,4380_1273 -4380_78059,295,4380_78174,Dr. Mannix Road,101957-00019-1,0,4380_7778208_4010303,4380_1273 -4380_78059,293,4380_78175,Dr. Mannix Road,101953-00017-1,0,4380_7778208_4010303,4380_1273 -4380_78059,296,4380_78176,Dr. Mannix Road,101706-00021-1,0,4380_7778208_4010302,4380_1275 -4380_78059,297,4380_78183,Dr. Mannix Road,101446-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78184,Dr. Mannix Road,102456-00009-1,0,4380_7778208_4010305,4380_1273 -4380_78059,288,4380_78186,Dr. Mannix Road,102448-00011-1,0,4380_7778208_4010305,4380_1273 -4380_78059,286,4380_78187,Dr. Mannix Road,102454-00010-1,0,4380_7778208_4010305,4380_1273 -4380_78059,291,4380_78188,Dr. Mannix Road,102208-00013-1,0,4380_7778208_4010304,4380_1275 -4380_78059,289,4380_78189,Dr. Mannix Road,102452-00014-1,0,4380_7778208_4010305,4380_1273 -4380_78114,297,4380_7819,Kells via Navan,5807-00008-1,0,4380_7778208_1090109,4380_121 -4380_78059,287,4380_78190,Dr. Mannix Road,102450-00012-1,0,4380_7778208_4010305,4380_1273 -4380_78059,292,4380_78191,Dr. Mannix Road,102455-00016-1,0,4380_7778208_4010305,4380_1273 -4380_78059,290,4380_78192,Dr. Mannix Road,102457-00015-1,0,4380_7778208_4010305,4380_1273 -4380_78059,294,4380_78193,Dr. Mannix Road,102451-00018-1,0,4380_7778208_4010305,4380_1273 -4380_78059,295,4380_78194,Dr. Mannix Road,102453-00019-1,0,4380_7778208_4010305,4380_1273 -4380_78059,293,4380_78195,Dr. Mannix Road,102449-00017-1,0,4380_7778208_4010305,4380_1273 -4380_78059,296,4380_78196,Dr. Mannix Road,102209-00021-1,0,4380_7778208_4010304,4380_1275 -4380_78114,291,4380_7820,Kells via Navan,5882-00013-1,0,4380_7778208_1090111,4380_123 -4380_78059,297,4380_78203,Dr. Mannix Road,101960-00008-1,0,4380_7778208_4010303,4380_1271 -4380_78059,285,4380_78204,Dr. Mannix Road,101714-00009-1,0,4380_7778208_4010302,4380_1273 -4380_78059,288,4380_78206,Dr. Mannix Road,101710-00011-1,0,4380_7778208_4010302,4380_1273 -4380_78059,286,4380_78207,Dr. Mannix Road,101708-00010-1,0,4380_7778208_4010302,4380_1273 -4380_78059,291,4380_78208,Dr. Mannix Road,101457-00013-1,0,4380_7778208_4010301,4380_1275 -4380_78059,289,4380_78209,Dr. Mannix Road,101712-00014-1,0,4380_7778208_4010302,4380_1273 -4380_78114,296,4380_7821,Kells via Navan,55127-00021-1,0,4380_7778208_1090111,4380_123 -4380_78059,287,4380_78210,Dr. Mannix Road,101716-00012-1,0,4380_7778208_4010302,4380_1273 -4380_78059,292,4380_78211,Dr. Mannix Road,101709-00016-1,0,4380_7778208_4010302,4380_1273 -4380_78059,290,4380_78212,Dr. Mannix Road,101715-00015-1,0,4380_7778208_4010302,4380_1273 -4380_78059,294,4380_78213,Dr. Mannix Road,101717-00018-1,0,4380_7778208_4010302,4380_1273 -4380_78059,295,4380_78214,Dr. Mannix Road,101713-00019-1,0,4380_7778208_4010302,4380_1273 -4380_78059,293,4380_78215,Dr. Mannix Road,101711-00017-1,0,4380_7778208_4010302,4380_1273 -4380_78059,296,4380_78216,Dr. Mannix Road,101458-00021-1,0,4380_7778208_4010301,4380_1275 -4380_78059,297,4380_78223,Dr. Mannix Road,102460-00008-1,0,4380_7778208_4010305,4380_1271 -4380_78059,285,4380_78224,Dr. Mannix Road,102213-00009-1,0,4380_7778208_4010304,4380_1273 -4380_78059,288,4380_78226,Dr. Mannix Road,102211-00011-1,0,4380_7778208_4010304,4380_1273 -4380_78059,286,4380_78227,Dr. Mannix Road,102217-00010-1,0,4380_7778208_4010304,4380_1273 -4380_78059,291,4380_78228,Dr. Mannix Road,101971-00013-1,0,4380_7778208_4010303,4380_1275 -4380_78059,289,4380_78229,Dr. Mannix Road,102219-00014-1,0,4380_7778208_4010304,4380_1273 -4380_78059,287,4380_78230,Dr. Mannix Road,102215-00012-1,0,4380_7778208_4010304,4380_1273 -4380_78059,292,4380_78231,Dr. Mannix Road,102218-00016-1,0,4380_7778208_4010304,4380_1273 -4380_78059,290,4380_78232,Dr. Mannix Road,102214-00015-1,0,4380_7778208_4010304,4380_1273 -4380_78059,294,4380_78233,Dr. Mannix Road,102216-00018-1,0,4380_7778208_4010304,4380_1273 -4380_78059,295,4380_78234,Dr. Mannix Road,102220-00019-1,0,4380_7778208_4010304,4380_1273 -4380_78059,293,4380_78235,Dr. Mannix Road,102212-00017-1,0,4380_7778208_4010304,4380_1273 -4380_78059,296,4380_78236,Dr. Mannix Road,101972-00021-1,0,4380_7778208_4010303,4380_1275 -4380_78059,297,4380_78243,Dr. Mannix Road,101720-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78244,Dr. Mannix Road,102685-00009-1,0,4380_7778208_4010306,4380_1273 -4380_78059,288,4380_78246,Dr. Mannix Road,102687-00011-1,0,4380_7778208_4010306,4380_1273 -4380_78059,286,4380_78247,Dr. Mannix Road,102689-00010-1,0,4380_7778208_4010306,4380_1273 -4380_78059,291,4380_78248,Dr. Mannix Road,102471-00013-1,0,4380_7778208_4010305,4380_1275 -4380_78059,289,4380_78249,Dr. Mannix Road,102681-00014-1,0,4380_7778208_4010306,4380_1273 -4380_78059,287,4380_78250,Dr. Mannix Road,102683-00012-1,0,4380_7778208_4010306,4380_1273 -4380_78059,292,4380_78251,Dr. Mannix Road,102690-00016-1,0,4380_7778208_4010306,4380_1273 -4380_78059,290,4380_78252,Dr. Mannix Road,102686-00015-1,0,4380_7778208_4010306,4380_1273 -4380_78059,294,4380_78253,Dr. Mannix Road,102684-00018-1,0,4380_7778208_4010306,4380_1273 -4380_78059,295,4380_78254,Dr. Mannix Road,102682-00019-1,0,4380_7778208_4010306,4380_1273 -4380_78059,293,4380_78255,Dr. Mannix Road,102688-00017-1,0,4380_7778208_4010306,4380_1273 -4380_78059,296,4380_78256,Dr. Mannix Road,102472-00021-1,0,4380_7778208_4010305,4380_1275 -4380_78059,297,4380_78263,Dr. Mannix Road,102223-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78264,Dr. Mannix Road,101468-00009-1,0,4380_7778208_4010301,4380_1273 -4380_78059,288,4380_78266,Dr. Mannix Road,101470-00011-1,0,4380_7778208_4010301,4380_1273 -4380_78059,286,4380_78267,Dr. Mannix Road,101462-00010-1,0,4380_7778208_4010301,4380_1273 -4380_78059,291,4380_78268,Dr. Mannix Road,101731-00013-1,0,4380_7778208_4010302,4380_1275 -4380_78059,289,4380_78269,Dr. Mannix Road,101464-00014-1,0,4380_7778208_4010301,4380_1273 -4380_78114,285,4380_7827,Kells via Navan,5234-00009-1,0,4380_7778208_1090101,4380_117 -4380_78059,287,4380_78270,Dr. Mannix Road,101466-00012-1,0,4380_7778208_4010301,4380_1273 -4380_78059,292,4380_78271,Dr. Mannix Road,101463-00016-1,0,4380_7778208_4010301,4380_1273 -4380_78059,290,4380_78272,Dr. Mannix Road,101469-00015-1,0,4380_7778208_4010301,4380_1273 -4380_78059,294,4380_78273,Dr. Mannix Road,101467-00018-1,0,4380_7778208_4010301,4380_1273 -4380_78059,295,4380_78274,Dr. Mannix Road,101465-00019-1,0,4380_7778208_4010301,4380_1273 -4380_78059,293,4380_78275,Dr. Mannix Road,101471-00017-1,0,4380_7778208_4010301,4380_1273 -4380_78059,296,4380_78276,Dr. Mannix Road,101732-00021-1,0,4380_7778208_4010302,4380_1275 -4380_78114,286,4380_7828,Kells via Navan,5244-00010-1,0,4380_7778208_1090101,4380_117 -4380_78059,297,4380_78283,Dr. Mannix Road,101472-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78284,Dr. Mannix Road,101980-00009-1,0,4380_7778208_4010303,4380_1273 -4380_78059,288,4380_78286,Dr. Mannix Road,101976-00011-1,0,4380_7778208_4010303,4380_1273 -4380_78059,286,4380_78287,Dr. Mannix Road,101982-00010-1,0,4380_7778208_4010303,4380_1273 -4380_78059,291,4380_78288,Dr. Mannix Road,102234-00013-1,0,4380_7778208_4010304,4380_1275 -4380_78059,289,4380_78289,Dr. Mannix Road,101984-00014-1,0,4380_7778208_4010303,4380_1273 -4380_78114,288,4380_7829,Kells via Navan,5254-00011-1,0,4380_7778208_1090101,4380_117 -4380_78059,287,4380_78290,Dr. Mannix Road,101978-00012-1,0,4380_7778208_4010303,4380_1273 -4380_78059,292,4380_78291,Dr. Mannix Road,101983-00016-1,0,4380_7778208_4010303,4380_1273 -4380_78059,290,4380_78292,Dr. Mannix Road,101981-00015-1,0,4380_7778208_4010303,4380_1273 -4380_78059,294,4380_78293,Dr. Mannix Road,101979-00018-1,0,4380_7778208_4010303,4380_1273 -4380_78059,295,4380_78294,Dr. Mannix Road,101985-00019-1,0,4380_7778208_4010303,4380_1273 -4380_78059,293,4380_78295,Dr. Mannix Road,101977-00017-1,0,4380_7778208_4010303,4380_1273 -4380_78059,296,4380_78296,Dr. Mannix Road,102235-00021-1,0,4380_7778208_4010304,4380_1275 -4380_78113,285,4380_783,Dundalk,49908-00009-1,0,4380_7778208_1000905,4380_11 -4380_78114,287,4380_7830,Kells via Navan,5264-00012-1,0,4380_7778208_1090101,4380_117 -4380_78059,297,4380_78303,Dr. Mannix Road,101986-00008-1,0,4380_7778208_4010303,4380_1271 -4380_78059,285,4380_78304,Dr. Mannix Road,102480-00009-1,0,4380_7778208_4010305,4380_1273 -4380_78059,288,4380_78306,Dr. Mannix Road,102478-00011-1,0,4380_7778208_4010305,4380_1273 -4380_78059,286,4380_78307,Dr. Mannix Road,102482-00010-1,0,4380_7778208_4010305,4380_1273 -4380_78059,291,4380_78308,Dr. Mannix Road,102701-00013-1,0,4380_7778208_4010306,4380_1275 -4380_78059,289,4380_78309,Dr. Mannix Road,102484-00014-1,0,4380_7778208_4010305,4380_1273 -4380_78114,289,4380_7831,Kells via Navan,5224-00014-1,0,4380_7778208_1090101,4380_117 -4380_78059,287,4380_78310,Dr. Mannix Road,102476-00012-1,0,4380_7778208_4010305,4380_1273 -4380_78059,292,4380_78311,Dr. Mannix Road,102483-00016-1,0,4380_7778208_4010305,4380_1273 -4380_78059,290,4380_78312,Dr. Mannix Road,102481-00015-1,0,4380_7778208_4010305,4380_1273 -4380_78059,294,4380_78313,Dr. Mannix Road,102477-00018-1,0,4380_7778208_4010305,4380_1273 -4380_78059,295,4380_78314,Dr. Mannix Road,102485-00019-1,0,4380_7778208_4010305,4380_1273 -4380_78059,293,4380_78315,Dr. Mannix Road,102479-00017-1,0,4380_7778208_4010305,4380_1273 -4380_78059,296,4380_78316,Dr. Mannix Road,102702-00021-1,0,4380_7778208_4010306,4380_1275 -4380_78114,290,4380_7832,Kells via Navan,54651-00015-1,0,4380_7778208_1090101,4380_117 -4380_78059,297,4380_78323,Dr. Mannix Road,102486-00008-1,0,4380_7778208_4010305,4380_1271 -4380_78059,285,4380_78324,Dr. Mannix Road,101740-00009-1,0,4380_7778208_4010302,4380_1273 -4380_78059,288,4380_78326,Dr. Mannix Road,101744-00011-1,0,4380_7778208_4010302,4380_1273 -4380_78059,286,4380_78327,Dr. Mannix Road,101736-00010-1,0,4380_7778208_4010302,4380_1273 -4380_78059,291,4380_78328,Dr. Mannix Road,101483-00013-1,0,4380_7778208_4010301,4380_1275 -4380_78059,289,4380_78329,Dr. Mannix Road,101742-00014-1,0,4380_7778208_4010302,4380_1273 -4380_78114,292,4380_7833,Kells via Navan,54652-00016-1,0,4380_7778208_1090101,4380_117 -4380_78059,287,4380_78330,Dr. Mannix Road,101738-00012-1,0,4380_7778208_4010302,4380_1273 -4380_78059,292,4380_78331,Dr. Mannix Road,101737-00016-1,0,4380_7778208_4010302,4380_1273 -4380_78059,290,4380_78332,Dr. Mannix Road,101741-00015-1,0,4380_7778208_4010302,4380_1273 -4380_78059,294,4380_78333,Dr. Mannix Road,101739-00018-1,0,4380_7778208_4010302,4380_1273 -4380_78059,295,4380_78334,Dr. Mannix Road,101743-00019-1,0,4380_7778208_4010302,4380_1273 -4380_78059,293,4380_78335,Dr. Mannix Road,101745-00017-1,0,4380_7778208_4010302,4380_1273 -4380_78059,296,4380_78336,Dr. Mannix Road,101484-00021-1,0,4380_7778208_4010301,4380_1275 -4380_78114,293,4380_7834,Kells via Navan,54650-00017-1,0,4380_7778208_1090101,4380_117 -4380_78059,297,4380_78343,Dr. Mannix Road,101746-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78344,Dr. Mannix Road,102239-00009-1,0,4380_7778208_4010304,4380_1273 -4380_78059,288,4380_78346,Dr. Mannix Road,102245-00011-1,0,4380_7778208_4010304,4380_1273 -4380_78059,286,4380_78347,Dr. Mannix Road,102247-00010-1,0,4380_7778208_4010304,4380_1273 -4380_78059,291,4380_78348,Dr. Mannix Road,101997-00013-1,0,4380_7778208_4010303,4380_1275 -4380_78059,289,4380_78349,Dr. Mannix Road,102241-00014-1,0,4380_7778208_4010304,4380_1273 -4380_78114,294,4380_7835,Kells via Navan,54649-00018-1,0,4380_7778208_1090101,4380_117 -4380_78059,287,4380_78350,Dr. Mannix Road,102243-00012-1,0,4380_7778208_4010304,4380_1273 -4380_78059,292,4380_78351,Dr. Mannix Road,102248-00016-1,0,4380_7778208_4010304,4380_1273 -4380_78059,290,4380_78352,Dr. Mannix Road,102240-00015-1,0,4380_7778208_4010304,4380_1273 -4380_78059,294,4380_78353,Dr. Mannix Road,102244-00018-1,0,4380_7778208_4010304,4380_1273 -4380_78059,295,4380_78354,Dr. Mannix Road,102242-00019-1,0,4380_7778208_4010304,4380_1273 -4380_78059,293,4380_78355,Dr. Mannix Road,102246-00017-1,0,4380_7778208_4010304,4380_1273 -4380_78059,296,4380_78356,Dr. Mannix Road,101998-00021-1,0,4380_7778208_4010303,4380_1275 -4380_78114,295,4380_7836,Kells via Navan,54648-00019-1,0,4380_7778208_1090101,4380_117 -4380_78059,297,4380_78363,Dr. Mannix Road,102249-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78364,Dr. Mannix Road,102707-00009-1,0,4380_7778208_4010306,4380_1273 -4380_78059,288,4380_78366,Dr. Mannix Road,102709-00011-1,0,4380_7778208_4010306,4380_1273 -4380_78059,286,4380_78367,Dr. Mannix Road,102711-00010-1,0,4380_7778208_4010306,4380_1273 -4380_78059,291,4380_78368,Dr. Mannix Road,102497-00013-1,0,4380_7778208_4010305,4380_1275 -4380_78059,289,4380_78369,Dr. Mannix Road,102705-00014-1,0,4380_7778208_4010306,4380_1273 -4380_78059,287,4380_78370,Dr. Mannix Road,102713-00012-1,0,4380_7778208_4010306,4380_1273 -4380_78059,292,4380_78371,Dr. Mannix Road,102712-00016-1,0,4380_7778208_4010306,4380_1273 -4380_78059,290,4380_78372,Dr. Mannix Road,102708-00015-1,0,4380_7778208_4010306,4380_1273 -4380_78059,294,4380_78373,Dr. Mannix Road,102714-00018-1,0,4380_7778208_4010306,4380_1273 -4380_78059,295,4380_78374,Dr. Mannix Road,102706-00019-1,0,4380_7778208_4010306,4380_1273 -4380_78059,293,4380_78375,Dr. Mannix Road,102710-00017-1,0,4380_7778208_4010306,4380_1273 -4380_78059,296,4380_78376,Dr. Mannix Road,102498-00021-1,0,4380_7778208_4010305,4380_1275 -4380_78059,297,4380_78383,Dr. Mannix Road,101498-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78384,Dr. Mannix Road,101488-00009-1,0,4380_7778208_4010301,4380_1273 -4380_78059,288,4380_78386,Dr. Mannix Road,101494-00011-1,0,4380_7778208_4010301,4380_1273 -4380_78059,286,4380_78387,Dr. Mannix Road,101492-00010-1,0,4380_7778208_4010301,4380_1273 -4380_78059,291,4380_78388,Dr. Mannix Road,101757-00013-1,0,4380_7778208_4010302,4380_1275 -4380_78059,289,4380_78389,Dr. Mannix Road,101490-00014-1,0,4380_7778208_4010301,4380_1273 -4380_78059,287,4380_78390,Dr. Mannix Road,101496-00012-1,0,4380_7778208_4010301,4380_1273 -4380_78059,292,4380_78391,Dr. Mannix Road,101493-00016-1,0,4380_7778208_4010301,4380_1273 -4380_78059,290,4380_78392,Dr. Mannix Road,101489-00015-1,0,4380_7778208_4010301,4380_1273 -4380_78059,294,4380_78393,Dr. Mannix Road,101497-00018-1,0,4380_7778208_4010301,4380_1273 -4380_78059,295,4380_78394,Dr. Mannix Road,101491-00019-1,0,4380_7778208_4010301,4380_1273 -4380_78059,293,4380_78395,Dr. Mannix Road,101495-00017-1,0,4380_7778208_4010301,4380_1273 -4380_78059,296,4380_78396,Dr. Mannix Road,101758-00021-1,0,4380_7778208_4010302,4380_1275 -4380_78113,286,4380_784,Dundalk,49906-00010-1,0,4380_7778208_1000905,4380_11 -4380_78059,297,4380_78403,Dr. Mannix Road,102002-00008-1,0,4380_7778208_4010303,4380_1271 -4380_78059,285,4380_78404,Dr. Mannix Road,102009-00009-1,0,4380_7778208_4010303,4380_1273 -4380_78059,288,4380_78406,Dr. Mannix Road,102011-00011-1,0,4380_7778208_4010303,4380_1273 -4380_78059,286,4380_78407,Dr. Mannix Road,102005-00010-1,0,4380_7778208_4010303,4380_1273 -4380_78059,291,4380_78408,Dr. Mannix Road,102260-00013-1,0,4380_7778208_4010304,4380_1275 -4380_78059,289,4380_78409,Dr. Mannix Road,102003-00014-1,0,4380_7778208_4010303,4380_1273 -4380_78059,287,4380_78410,Dr. Mannix Road,102007-00012-1,0,4380_7778208_4010303,4380_1273 -4380_78059,292,4380_78411,Dr. Mannix Road,102006-00016-1,0,4380_7778208_4010303,4380_1273 -4380_78059,290,4380_78412,Dr. Mannix Road,102010-00015-1,0,4380_7778208_4010303,4380_1273 -4380_78059,294,4380_78413,Dr. Mannix Road,102008-00018-1,0,4380_7778208_4010303,4380_1273 -4380_78059,295,4380_78414,Dr. Mannix Road,102004-00019-1,0,4380_7778208_4010303,4380_1273 -4380_78059,293,4380_78415,Dr. Mannix Road,102012-00017-1,0,4380_7778208_4010303,4380_1273 -4380_78059,296,4380_78416,Dr. Mannix Road,102261-00021-1,0,4380_7778208_4010304,4380_1275 -4380_78059,297,4380_78423,Dr. Mannix Road,102504-00008-1,0,4380_7778208_4010305,4380_1271 -4380_78059,285,4380_78424,Dr. Mannix Road,102511-00009-1,0,4380_7778208_4010305,4380_1273 -4380_78059,288,4380_78426,Dr. Mannix Road,102509-00011-1,0,4380_7778208_4010305,4380_1273 -4380_78059,286,4380_78427,Dr. Mannix Road,102502-00010-1,0,4380_7778208_4010305,4380_1273 -4380_78059,291,4380_78428,Dr. Mannix Road,102725-00013-1,0,4380_7778208_4010306,4380_1275 -4380_78059,289,4380_78429,Dr. Mannix Road,102505-00014-1,0,4380_7778208_4010305,4380_1273 -4380_78059,287,4380_78430,Dr. Mannix Road,102507-00012-1,0,4380_7778208_4010305,4380_1273 -4380_78059,292,4380_78431,Dr. Mannix Road,102503-00016-1,0,4380_7778208_4010305,4380_1273 -4380_78059,290,4380_78432,Dr. Mannix Road,102512-00015-1,0,4380_7778208_4010305,4380_1273 -4380_78059,294,4380_78433,Dr. Mannix Road,102508-00018-1,0,4380_7778208_4010305,4380_1273 -4380_78059,295,4380_78434,Dr. Mannix Road,102506-00019-1,0,4380_7778208_4010305,4380_1273 -4380_78059,293,4380_78435,Dr. Mannix Road,102510-00017-1,0,4380_7778208_4010305,4380_1273 -4380_78059,296,4380_78436,Dr. Mannix Road,102726-00021-1,0,4380_7778208_4010306,4380_1275 -4380_78114,285,4380_7844,Kells via Navan,5310-00009-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_78443,Dr. Mannix Road,101762-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78444,Dr. Mannix Road,101763-00009-1,0,4380_7778208_4010302,4380_1273 -4380_78059,288,4380_78446,Dr. Mannix Road,101767-00011-1,0,4380_7778208_4010302,4380_1273 -4380_78059,286,4380_78447,Dr. Mannix Road,101765-00010-1,0,4380_7778208_4010302,4380_1273 -4380_78059,291,4380_78448,Dr. Mannix Road,101510-00013-1,0,4380_7778208_4010301,4380_1275 -4380_78059,289,4380_78449,Dr. Mannix Road,101771-00014-1,0,4380_7778208_4010302,4380_1273 -4380_78114,286,4380_7845,Kells via Navan,5320-00010-1,0,4380_7778208_1090102,4380_123 -4380_78059,287,4380_78450,Dr. Mannix Road,101769-00012-1,0,4380_7778208_4010302,4380_1273 -4380_78059,292,4380_78451,Dr. Mannix Road,101766-00016-1,0,4380_7778208_4010302,4380_1273 -4380_78059,290,4380_78452,Dr. Mannix Road,101764-00015-1,0,4380_7778208_4010302,4380_1273 -4380_78059,294,4380_78453,Dr. Mannix Road,101770-00018-1,0,4380_7778208_4010302,4380_1273 -4380_78059,295,4380_78454,Dr. Mannix Road,101772-00019-1,0,4380_7778208_4010302,4380_1273 -4380_78059,293,4380_78455,Dr. Mannix Road,101768-00017-1,0,4380_7778208_4010302,4380_1273 -4380_78059,296,4380_78456,Dr. Mannix Road,101511-00021-1,0,4380_7778208_4010301,4380_1275 -4380_78114,297,4380_7846,Kells via Navan,5862-00008-1,0,4380_7778208_1090110,4380_125 -4380_78059,297,4380_78463,Dr. Mannix Road,102275-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78464,Dr. Mannix Road,102269-00009-1,0,4380_7778208_4010304,4380_1273 -4380_78059,288,4380_78466,Dr. Mannix Road,102273-00011-1,0,4380_7778208_4010304,4380_1273 -4380_78059,286,4380_78467,Dr. Mannix Road,102265-00010-1,0,4380_7778208_4010304,4380_1273 -4380_78059,291,4380_78468,Dr. Mannix Road,102024-00013-1,0,4380_7778208_4010303,4380_1275 -4380_78059,289,4380_78469,Dr. Mannix Road,102271-00014-1,0,4380_7778208_4010304,4380_1273 -4380_78114,288,4380_7847,Kells via Navan,5330-00011-1,0,4380_7778208_1090102,4380_123 -4380_78059,287,4380_78470,Dr. Mannix Road,102267-00012-1,0,4380_7778208_4010304,4380_1273 -4380_78059,292,4380_78471,Dr. Mannix Road,102266-00016-1,0,4380_7778208_4010304,4380_1273 -4380_78059,290,4380_78472,Dr. Mannix Road,102270-00015-1,0,4380_7778208_4010304,4380_1273 -4380_78059,294,4380_78473,Dr. Mannix Road,102268-00018-1,0,4380_7778208_4010304,4380_1273 -4380_78059,295,4380_78474,Dr. Mannix Road,102272-00019-1,0,4380_7778208_4010304,4380_1273 -4380_78059,293,4380_78475,Dr. Mannix Road,102274-00017-1,0,4380_7778208_4010304,4380_1273 -4380_78059,296,4380_78476,Dr. Mannix Road,102025-00021-1,0,4380_7778208_4010303,4380_1275 -4380_78114,287,4380_7848,Kells via Navan,5340-00012-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_78483,Dr. Mannix Road,101512-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78484,Dr. Mannix Road,102737-00009-1,0,4380_7778208_4010306,4380_1273 -4380_78059,288,4380_78486,Dr. Mannix Road,102735-00011-1,0,4380_7778208_4010306,4380_1273 -4380_78059,286,4380_78487,Dr. Mannix Road,102731-00010-1,0,4380_7778208_4010306,4380_1273 -4380_78059,291,4380_78488,Dr. Mannix Road,102524-00013-1,0,4380_7778208_4010305,4380_1275 -4380_78059,289,4380_78489,Dr. Mannix Road,102729-00014-1,0,4380_7778208_4010306,4380_1273 -4380_78114,289,4380_7849,Kells via Navan,5300-00014-1,0,4380_7778208_1090102,4380_123 -4380_78059,287,4380_78490,Dr. Mannix Road,102733-00012-1,0,4380_7778208_4010306,4380_1273 -4380_78059,292,4380_78491,Dr. Mannix Road,102732-00016-1,0,4380_7778208_4010306,4380_1273 -4380_78059,290,4380_78492,Dr. Mannix Road,102738-00015-1,0,4380_7778208_4010306,4380_1273 -4380_78059,294,4380_78493,Dr. Mannix Road,102734-00018-1,0,4380_7778208_4010306,4380_1273 -4380_78059,295,4380_78494,Dr. Mannix Road,102730-00019-1,0,4380_7778208_4010306,4380_1273 -4380_78059,293,4380_78495,Dr. Mannix Road,102736-00017-1,0,4380_7778208_4010306,4380_1273 -4380_78059,296,4380_78496,Dr. Mannix Road,102525-00021-1,0,4380_7778208_4010305,4380_1275 -4380_78113,297,4380_785,Dundalk,49808-00008-1,0,4380_7778208_1000904,4380_14 -4380_78114,290,4380_7850,Kells via Navan,54705-00015-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_78503,Dr. Mannix Road,102026-00008-1,0,4380_7778208_4010303,4380_1271 -4380_78059,285,4380_78504,Dr. Mannix Road,101521-00009-1,0,4380_7778208_4010301,4380_1273 -4380_78059,288,4380_78506,Dr. Mannix Road,101523-00011-1,0,4380_7778208_4010301,4380_1273 -4380_78059,286,4380_78507,Dr. Mannix Road,101517-00010-1,0,4380_7778208_4010301,4380_1273 -4380_78059,291,4380_78508,Dr. Mannix Road,101784-00013-1,0,4380_7778208_4010302,4380_1275 -4380_78059,289,4380_78509,Dr. Mannix Road,101519-00014-1,0,4380_7778208_4010301,4380_1273 -4380_78114,291,4380_7851,Kells via Navan,5947-00013-1,0,4380_7778208_1090112,4380_127 -4380_78059,287,4380_78510,Dr. Mannix Road,101515-00012-1,0,4380_7778208_4010301,4380_1273 -4380_78059,292,4380_78511,Dr. Mannix Road,101518-00016-1,0,4380_7778208_4010301,4380_1273 -4380_78059,290,4380_78512,Dr. Mannix Road,101522-00015-1,0,4380_7778208_4010301,4380_1273 -4380_78059,294,4380_78513,Dr. Mannix Road,101516-00018-1,0,4380_7778208_4010301,4380_1273 -4380_78059,295,4380_78514,Dr. Mannix Road,101520-00019-1,0,4380_7778208_4010301,4380_1273 -4380_78059,293,4380_78515,Dr. Mannix Road,101524-00017-1,0,4380_7778208_4010301,4380_1273 -4380_78059,296,4380_78516,Dr. Mannix Road,101785-00021-1,0,4380_7778208_4010302,4380_1275 -4380_78114,292,4380_7852,Kells via Navan,54707-00016-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_78523,Dr. Mannix Road,102526-00008-1,0,4380_7778208_4010305,4380_1271 -4380_78059,285,4380_78524,Dr. Mannix Road,102033-00009-1,0,4380_7778208_4010303,4380_1273 -4380_78059,288,4380_78526,Dr. Mannix Road,102037-00011-1,0,4380_7778208_4010303,4380_1273 -4380_78059,286,4380_78527,Dr. Mannix Road,102035-00010-1,0,4380_7778208_4010303,4380_1273 -4380_78059,291,4380_78528,Dr. Mannix Road,102287-00013-1,0,4380_7778208_4010304,4380_1275 -4380_78059,289,4380_78529,Dr. Mannix Road,102031-00014-1,0,4380_7778208_4010303,4380_1273 -4380_78114,293,4380_7853,Kells via Navan,54708-00017-1,0,4380_7778208_1090102,4380_123 -4380_78059,287,4380_78530,Dr. Mannix Road,102029-00012-1,0,4380_7778208_4010303,4380_1273 -4380_78059,292,4380_78531,Dr. Mannix Road,102036-00016-1,0,4380_7778208_4010303,4380_1273 -4380_78059,290,4380_78532,Dr. Mannix Road,102034-00015-1,0,4380_7778208_4010303,4380_1273 -4380_78059,294,4380_78533,Dr. Mannix Road,102030-00018-1,0,4380_7778208_4010303,4380_1273 -4380_78059,295,4380_78534,Dr. Mannix Road,102032-00019-1,0,4380_7778208_4010303,4380_1273 -4380_78059,293,4380_78535,Dr. Mannix Road,102038-00017-1,0,4380_7778208_4010303,4380_1273 -4380_78059,296,4380_78536,Dr. Mannix Road,102288-00021-1,0,4380_7778208_4010304,4380_1275 -4380_78114,294,4380_7854,Kells via Navan,54706-00018-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_78543,Dr. Mannix Road,101786-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78544,Dr. Mannix Road,102537-00009-1,0,4380_7778208_4010305,4380_1273 -4380_78059,288,4380_78546,Dr. Mannix Road,102535-00011-1,0,4380_7778208_4010305,4380_1273 -4380_78059,286,4380_78547,Dr. Mannix Road,102531-00010-1,0,4380_7778208_4010305,4380_1273 -4380_78059,291,4380_78548,Dr. Mannix Road,102749-00013-1,0,4380_7778208_4010306,4380_1275 -4380_78059,289,4380_78549,Dr. Mannix Road,102529-00014-1,0,4380_7778208_4010305,4380_1273 -4380_78114,295,4380_7855,Kells via Navan,54709-00019-1,0,4380_7778208_1090102,4380_123 -4380_78059,287,4380_78550,Dr. Mannix Road,102533-00012-1,0,4380_7778208_4010305,4380_1273 -4380_78059,292,4380_78551,Dr. Mannix Road,102532-00016-1,0,4380_7778208_4010305,4380_1273 -4380_78059,290,4380_78552,Dr. Mannix Road,102538-00015-1,0,4380_7778208_4010305,4380_1273 -4380_78059,294,4380_78553,Dr. Mannix Road,102534-00018-1,0,4380_7778208_4010305,4380_1273 -4380_78059,295,4380_78554,Dr. Mannix Road,102530-00019-1,0,4380_7778208_4010305,4380_1273 -4380_78059,293,4380_78555,Dr. Mannix Road,102536-00017-1,0,4380_7778208_4010305,4380_1273 -4380_78059,296,4380_78556,Dr. Mannix Road,102750-00021-1,0,4380_7778208_4010306,4380_1275 -4380_78114,296,4380_7856,Kells via Navan,55152-00021-1,0,4380_7778208_1090112,4380_127 -4380_78059,297,4380_78563,Dr. Mannix Road,102289-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78564,Dr. Mannix Road,101793-00009-1,0,4380_7778208_4010302,4380_1273 -4380_78059,288,4380_78566,Dr. Mannix Road,101795-00011-1,0,4380_7778208_4010302,4380_1273 -4380_78059,286,4380_78567,Dr. Mannix Road,101789-00010-1,0,4380_7778208_4010302,4380_1273 -4380_78059,291,4380_78568,Dr. Mannix Road,101536-00013-1,0,4380_7778208_4010301,4380_1275 -4380_78059,289,4380_78569,Dr. Mannix Road,101797-00014-1,0,4380_7778208_4010302,4380_1273 -4380_78059,287,4380_78570,Dr. Mannix Road,101791-00012-1,0,4380_7778208_4010302,4380_1273 -4380_78059,292,4380_78571,Dr. Mannix Road,101790-00016-1,0,4380_7778208_4010302,4380_1273 -4380_78059,290,4380_78572,Dr. Mannix Road,101794-00015-1,0,4380_7778208_4010302,4380_1273 -4380_78059,294,4380_78573,Dr. Mannix Road,101792-00018-1,0,4380_7778208_4010302,4380_1273 -4380_78059,295,4380_78574,Dr. Mannix Road,101798-00019-1,0,4380_7778208_4010302,4380_1273 -4380_78059,293,4380_78575,Dr. Mannix Road,101796-00017-1,0,4380_7778208_4010302,4380_1273 -4380_78059,296,4380_78576,Dr. Mannix Road,101537-00021-1,0,4380_7778208_4010301,4380_1275 -4380_78059,297,4380_78583,Dr. Mannix Road,101538-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78584,Dr. Mannix Road,102294-00009-1,0,4380_7778208_4010304,4380_1273 -4380_78059,288,4380_78586,Dr. Mannix Road,102298-00011-1,0,4380_7778208_4010304,4380_1273 -4380_78059,286,4380_78587,Dr. Mannix Road,102296-00010-1,0,4380_7778208_4010304,4380_1273 -4380_78059,291,4380_78588,Dr. Mannix Road,102050-00013-1,0,4380_7778208_4010303,4380_1275 -4380_78059,289,4380_78589,Dr. Mannix Road,102300-00014-1,0,4380_7778208_4010304,4380_1273 -4380_78059,287,4380_78590,Dr. Mannix Road,102292-00012-1,0,4380_7778208_4010304,4380_1273 -4380_78059,292,4380_78591,Dr. Mannix Road,102297-00016-1,0,4380_7778208_4010304,4380_1273 -4380_78059,290,4380_78592,Dr. Mannix Road,102295-00015-1,0,4380_7778208_4010304,4380_1273 -4380_78059,294,4380_78593,Dr. Mannix Road,102293-00018-1,0,4380_7778208_4010304,4380_1273 -4380_78059,295,4380_78594,Dr. Mannix Road,102301-00019-1,0,4380_7778208_4010304,4380_1273 -4380_78059,293,4380_78595,Dr. Mannix Road,102299-00017-1,0,4380_7778208_4010304,4380_1273 -4380_78059,296,4380_78596,Dr. Mannix Road,102051-00021-1,0,4380_7778208_4010303,4380_1275 -4380_78113,287,4380_786,Dundalk,49904-00012-1,0,4380_7778208_1000905,4380_11 -4380_78059,297,4380_78603,Dr. Mannix Road,102052-00008-1,0,4380_7778208_4010303,4380_1271 -4380_78059,285,4380_78604,Dr. Mannix Road,102755-00009-1,0,4380_7778208_4010306,4380_1273 -4380_78059,288,4380_78606,Dr. Mannix Road,102761-00011-1,0,4380_7778208_4010306,4380_1273 -4380_78059,286,4380_78607,Dr. Mannix Road,102757-00010-1,0,4380_7778208_4010306,4380_1273 -4380_78059,291,4380_78608,Dr. Mannix Road,102550-00013-1,0,4380_7778208_4010305,4380_1275 -4380_78059,289,4380_78609,Dr. Mannix Road,102759-00014-1,0,4380_7778208_4010306,4380_1273 -4380_78059,287,4380_78610,Dr. Mannix Road,102753-00012-1,0,4380_7778208_4010306,4380_1273 -4380_78059,292,4380_78611,Dr. Mannix Road,102758-00016-1,0,4380_7778208_4010306,4380_1273 -4380_78059,290,4380_78612,Dr. Mannix Road,102756-00015-1,0,4380_7778208_4010306,4380_1273 -4380_78059,294,4380_78613,Dr. Mannix Road,102754-00018-1,0,4380_7778208_4010306,4380_1273 -4380_78059,295,4380_78614,Dr. Mannix Road,102760-00019-1,0,4380_7778208_4010306,4380_1273 -4380_78059,293,4380_78615,Dr. Mannix Road,102762-00017-1,0,4380_7778208_4010306,4380_1273 -4380_78059,296,4380_78616,Dr. Mannix Road,102551-00021-1,0,4380_7778208_4010305,4380_1275 -4380_78059,297,4380_78623,Dr. Mannix Road,102552-00008-1,0,4380_7778208_4010305,4380_1271 -4380_78059,285,4380_78624,Dr. Mannix Road,101549-00009-1,0,4380_7778208_4010301,4380_1273 -4380_78059,288,4380_78626,Dr. Mannix Road,101541-00011-1,0,4380_7778208_4010301,4380_1273 -4380_78059,286,4380_78627,Dr. Mannix Road,101545-00010-1,0,4380_7778208_4010301,4380_1273 -4380_78059,291,4380_78628,Dr. Mannix Road,101810-00013-1,0,4380_7778208_4010302,4380_1275 -4380_78059,289,4380_78629,Dr. Mannix Road,101547-00014-1,0,4380_7778208_4010301,4380_1273 -4380_78059,287,4380_78630,Dr. Mannix Road,101543-00012-1,0,4380_7778208_4010301,4380_1273 -4380_78059,292,4380_78631,Dr. Mannix Road,101546-00016-1,0,4380_7778208_4010301,4380_1273 -4380_78059,290,4380_78632,Dr. Mannix Road,101550-00015-1,0,4380_7778208_4010301,4380_1273 -4380_78059,294,4380_78633,Dr. Mannix Road,101544-00018-1,0,4380_7778208_4010301,4380_1273 -4380_78059,295,4380_78634,Dr. Mannix Road,101548-00019-1,0,4380_7778208_4010301,4380_1273 -4380_78059,293,4380_78635,Dr. Mannix Road,101542-00017-1,0,4380_7778208_4010301,4380_1273 -4380_78059,296,4380_78636,Dr. Mannix Road,101811-00021-1,0,4380_7778208_4010302,4380_1275 -4380_78114,285,4380_7864,Kells via Navan,5382-00009-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_78643,Dr. Mannix Road,101812-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78644,Dr. Mannix Road,102055-00009-1,0,4380_7778208_4010303,4380_1273 -4380_78059,288,4380_78646,Dr. Mannix Road,102057-00011-1,0,4380_7778208_4010303,4380_1273 -4380_78059,286,4380_78647,Dr. Mannix Road,102063-00010-1,0,4380_7778208_4010303,4380_1273 -4380_78059,291,4380_78648,Dr. Mannix Road,102313-00013-1,0,4380_7778208_4010304,4380_1275 -4380_78059,289,4380_78649,Dr. Mannix Road,102061-00014-1,0,4380_7778208_4010303,4380_1273 -4380_78114,286,4380_7865,Kells via Navan,5392-00010-1,0,4380_7778208_1090103,4380_123 -4380_78059,287,4380_78650,Dr. Mannix Road,102059-00012-1,0,4380_7778208_4010303,4380_1273 -4380_78059,292,4380_78651,Dr. Mannix Road,102064-00016-1,0,4380_7778208_4010303,4380_1273 -4380_78059,290,4380_78652,Dr. Mannix Road,102056-00015-1,0,4380_7778208_4010303,4380_1273 -4380_78059,294,4380_78653,Dr. Mannix Road,102060-00018-1,0,4380_7778208_4010303,4380_1273 -4380_78059,295,4380_78654,Dr. Mannix Road,102062-00019-1,0,4380_7778208_4010303,4380_1273 -4380_78059,293,4380_78655,Dr. Mannix Road,102058-00017-1,0,4380_7778208_4010303,4380_1273 -4380_78059,296,4380_78656,Dr. Mannix Road,102314-00021-1,0,4380_7778208_4010304,4380_1275 -4380_78114,297,4380_7866,Kells via Navan,5892-00008-1,0,4380_7778208_1090111,4380_125 -4380_78059,297,4380_78663,Dr. Mannix Road,102315-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78664,Dr. Mannix Road,102557-00009-1,0,4380_7778208_4010305,4380_1273 -4380_78059,288,4380_78666,Dr. Mannix Road,102559-00011-1,0,4380_7778208_4010305,4380_1273 -4380_78059,286,4380_78667,Dr. Mannix Road,102555-00010-1,0,4380_7778208_4010305,4380_1273 -4380_78059,291,4380_78668,Dr. Mannix Road,102773-00013-1,0,4380_7778208_4010306,4380_1275 -4380_78059,289,4380_78669,Dr. Mannix Road,102561-00014-1,0,4380_7778208_4010305,4380_1273 -4380_78114,288,4380_7867,Kells via Navan,5402-00011-1,0,4380_7778208_1090103,4380_123 -4380_78059,287,4380_78670,Dr. Mannix Road,102563-00012-1,0,4380_7778208_4010305,4380_1273 -4380_78059,292,4380_78671,Dr. Mannix Road,102556-00016-1,0,4380_7778208_4010305,4380_1273 -4380_78059,290,4380_78672,Dr. Mannix Road,102558-00015-1,0,4380_7778208_4010305,4380_1273 -4380_78059,294,4380_78673,Dr. Mannix Road,102564-00018-1,0,4380_7778208_4010305,4380_1273 -4380_78059,295,4380_78674,Dr. Mannix Road,102562-00019-1,0,4380_7778208_4010305,4380_1273 -4380_78059,293,4380_78675,Dr. Mannix Road,102560-00017-1,0,4380_7778208_4010305,4380_1273 -4380_78059,296,4380_78676,Dr. Mannix Road,102774-00021-1,0,4380_7778208_4010306,4380_1275 -4380_78114,287,4380_7868,Kells via Navan,5412-00012-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_78683,Dr. Mannix Road,101564-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78684,Dr. Mannix Road,101823-00009-1,0,4380_7778208_4010302,4380_1273 -4380_78059,288,4380_78686,Dr. Mannix Road,101821-00011-1,0,4380_7778208_4010302,4380_1273 -4380_78059,286,4380_78687,Dr. Mannix Road,101817-00010-1,0,4380_7778208_4010302,4380_1273 -4380_78059,291,4380_78688,Dr. Mannix Road,101562-00013-1,0,4380_7778208_4010301,4380_1275 -4380_78059,289,4380_78689,Dr. Mannix Road,101815-00014-1,0,4380_7778208_4010302,4380_1273 -4380_78114,289,4380_7869,Kells via Navan,5372-00014-1,0,4380_7778208_1090103,4380_123 -4380_78059,287,4380_78690,Dr. Mannix Road,101819-00012-1,0,4380_7778208_4010302,4380_1273 -4380_78059,292,4380_78691,Dr. Mannix Road,101818-00016-1,0,4380_7778208_4010302,4380_1273 -4380_78059,290,4380_78692,Dr. Mannix Road,101824-00015-1,0,4380_7778208_4010302,4380_1273 -4380_78059,294,4380_78693,Dr. Mannix Road,101820-00018-1,0,4380_7778208_4010302,4380_1273 -4380_78059,295,4380_78694,Dr. Mannix Road,101816-00019-1,0,4380_7778208_4010302,4380_1273 -4380_78059,293,4380_78695,Dr. Mannix Road,101822-00017-1,0,4380_7778208_4010302,4380_1273 -4380_78059,296,4380_78696,Dr. Mannix Road,101563-00021-1,0,4380_7778208_4010301,4380_1275 -4380_78113,288,4380_787,Dundalk,49902-00011-1,0,4380_7778208_1000905,4380_11 -4380_78114,290,4380_7870,Kells via Navan,54761-00015-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_78703,Dr. Mannix Road,102078-00008-1,0,4380_7778208_4010303,4380_1271 -4380_78059,285,4380_78704,Dr. Mannix Road,102326-00009-1,0,4380_7778208_4010304,4380_1273 -4380_78059,288,4380_78706,Dr. Mannix Road,102318-00011-1,0,4380_7778208_4010304,4380_1273 -4380_78059,286,4380_78707,Dr. Mannix Road,102324-00010-1,0,4380_7778208_4010304,4380_1273 -4380_78059,291,4380_78708,Dr. Mannix Road,102076-00013-1,0,4380_7778208_4010303,4380_1275 -4380_78059,289,4380_78709,Dr. Mannix Road,102320-00014-1,0,4380_7778208_4010304,4380_1273 -4380_78114,291,4380_7871,Kells via Navan,5977-00013-1,0,4380_7778208_1090113,4380_127 -4380_78059,287,4380_78710,Dr. Mannix Road,102322-00012-1,0,4380_7778208_4010304,4380_1273 -4380_78059,292,4380_78711,Dr. Mannix Road,102325-00016-1,0,4380_7778208_4010304,4380_1273 -4380_78059,290,4380_78712,Dr. Mannix Road,102327-00015-1,0,4380_7778208_4010304,4380_1273 -4380_78059,294,4380_78713,Dr. Mannix Road,102323-00018-1,0,4380_7778208_4010304,4380_1273 -4380_78059,295,4380_78714,Dr. Mannix Road,102321-00019-1,0,4380_7778208_4010304,4380_1273 -4380_78059,293,4380_78715,Dr. Mannix Road,102319-00017-1,0,4380_7778208_4010304,4380_1273 -4380_78059,296,4380_78716,Dr. Mannix Road,102077-00021-1,0,4380_7778208_4010303,4380_1275 -4380_78114,292,4380_7872,Kells via Navan,54760-00016-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_78723,Dr. Mannix Road,102576-00008-1,0,4380_7778208_4010305,4380_1271 -4380_78059,285,4380_78724,Dr. Mannix Road,101567-00009-1,0,4380_7778208_4010301,4380_1273 -4380_78059,288,4380_78726,Dr. Mannix Road,101569-00011-1,0,4380_7778208_4010301,4380_1273 -4380_78059,286,4380_78727,Dr. Mannix Road,101565-00010-1,0,4380_7778208_4010301,4380_1273 -4380_78059,291,4380_78728,Dr. Mannix Road,101826-00013-1,0,4380_7778208_4010302,4380_1275 -4380_78059,289,4380_78729,Dr. Mannix Road,101571-00014-1,0,4380_7778208_4010301,4380_1273 -4380_78114,293,4380_7873,Kells via Navan,54762-00017-1,0,4380_7778208_1090103,4380_123 -4380_78059,287,4380_78730,Dr. Mannix Road,101573-00012-1,0,4380_7778208_4010301,4380_1273 -4380_78059,292,4380_78731,Dr. Mannix Road,101566-00016-1,0,4380_7778208_4010301,4380_1273 -4380_78059,290,4380_78732,Dr. Mannix Road,101568-00015-1,0,4380_7778208_4010301,4380_1273 -4380_78059,294,4380_78733,Dr. Mannix Road,101574-00018-1,0,4380_7778208_4010301,4380_1273 -4380_78059,295,4380_78734,Dr. Mannix Road,101572-00019-1,0,4380_7778208_4010301,4380_1273 -4380_78059,293,4380_78735,Dr. Mannix Road,101570-00017-1,0,4380_7778208_4010301,4380_1273 -4380_78059,296,4380_78736,Dr. Mannix Road,101827-00021-1,0,4380_7778208_4010302,4380_1275 -4380_78114,294,4380_7874,Kells via Navan,54759-00018-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_78743,Dr. Mannix Road,101838-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78744,Dr. Mannix Road,102081-00009-1,0,4380_7778208_4010303,4380_1273 -4380_78059,288,4380_78746,Dr. Mannix Road,102087-00011-1,0,4380_7778208_4010303,4380_1273 -4380_78059,286,4380_78747,Dr. Mannix Road,102083-00010-1,0,4380_7778208_4010303,4380_1273 -4380_78059,291,4380_78748,Dr. Mannix Road,102329-00013-1,0,4380_7778208_4010304,4380_1275 -4380_78059,289,4380_78749,Dr. Mannix Road,102085-00014-1,0,4380_7778208_4010303,4380_1273 -4380_78114,295,4380_7875,Kells via Navan,54763-00019-1,0,4380_7778208_1090103,4380_123 -4380_78059,287,4380_78750,Dr. Mannix Road,102079-00012-1,0,4380_7778208_4010303,4380_1273 -4380_78059,292,4380_78751,Dr. Mannix Road,102084-00016-1,0,4380_7778208_4010303,4380_1273 -4380_78059,290,4380_78752,Dr. Mannix Road,102082-00015-1,0,4380_7778208_4010303,4380_1273 -4380_78059,294,4380_78753,Dr. Mannix Road,102080-00018-1,0,4380_7778208_4010303,4380_1273 -4380_78059,295,4380_78754,Dr. Mannix Road,102086-00019-1,0,4380_7778208_4010303,4380_1273 -4380_78059,293,4380_78755,Dr. Mannix Road,102088-00017-1,0,4380_7778208_4010303,4380_1273 -4380_78059,296,4380_78756,Dr. Mannix Road,102330-00021-1,0,4380_7778208_4010304,4380_1275 -4380_78114,296,4380_7876,Kells via Navan,55197-00021-1,0,4380_7778208_1090113,4380_127 -4380_78059,297,4380_78763,Dr. Mannix Road,102341-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78764,Dr. Mannix Road,102581-00009-1,0,4380_7778208_4010305,4380_1273 -4380_78059,288,4380_78766,Dr. Mannix Road,102585-00011-1,0,4380_7778208_4010305,4380_1273 -4380_78059,286,4380_78767,Dr. Mannix Road,102579-00010-1,0,4380_7778208_4010305,4380_1273 -4380_78059,291,4380_78768,Dr. Mannix Road,102777-00013-1,0,4380_7778208_4010306,4380_1275 -4380_78059,289,4380_78769,Dr. Mannix Road,102577-00014-1,0,4380_7778208_4010305,4380_1273 -4380_78059,287,4380_78770,Dr. Mannix Road,102583-00012-1,0,4380_7778208_4010305,4380_1273 -4380_78059,292,4380_78771,Dr. Mannix Road,102580-00016-1,0,4380_7778208_4010305,4380_1273 -4380_78059,290,4380_78772,Dr. Mannix Road,102582-00015-1,0,4380_7778208_4010305,4380_1273 -4380_78059,294,4380_78773,Dr. Mannix Road,102584-00018-1,0,4380_7778208_4010305,4380_1273 -4380_78059,295,4380_78774,Dr. Mannix Road,102578-00019-1,0,4380_7778208_4010305,4380_1273 -4380_78059,293,4380_78775,Dr. Mannix Road,102586-00017-1,0,4380_7778208_4010305,4380_1273 -4380_78059,296,4380_78776,Dr. Mannix Road,102778-00021-1,0,4380_7778208_4010306,4380_1275 -4380_78059,297,4380_78783,Dr. Mannix Road,101588-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78784,Dr. Mannix Road,101841-00009-1,0,4380_7778208_4010302,4380_1273 -4380_78059,288,4380_78786,Dr. Mannix Road,101843-00011-1,0,4380_7778208_4010302,4380_1273 -4380_78059,286,4380_78787,Dr. Mannix Road,101845-00010-1,0,4380_7778208_4010302,4380_1273 -4380_78059,291,4380_78788,Dr. Mannix Road,101589-00013-1,0,4380_7778208_4010301,4380_1275 -4380_78059,289,4380_78789,Dr. Mannix Road,101847-00014-1,0,4380_7778208_4010302,4380_1273 -4380_78059,287,4380_78790,Dr. Mannix Road,101849-00012-1,0,4380_7778208_4010302,4380_1273 -4380_78059,292,4380_78791,Dr. Mannix Road,101846-00016-1,0,4380_7778208_4010302,4380_1273 -4380_78059,290,4380_78792,Dr. Mannix Road,101842-00015-1,0,4380_7778208_4010302,4380_1273 -4380_78059,294,4380_78793,Dr. Mannix Road,101850-00018-1,0,4380_7778208_4010302,4380_1273 -4380_78059,295,4380_78794,Dr. Mannix Road,101848-00019-1,0,4380_7778208_4010302,4380_1273 -4380_78059,293,4380_78795,Dr. Mannix Road,101844-00017-1,0,4380_7778208_4010302,4380_1273 -4380_78059,296,4380_78796,Dr. Mannix Road,101590-00021-1,0,4380_7778208_4010301,4380_1275 -4380_78113,289,4380_788,Dundalk,49900-00014-1,0,4380_7778208_1000905,4380_11 -4380_78059,297,4380_78803,Dr. Mannix Road,102102-00008-1,0,4380_7778208_4010303,4380_1271 -4380_78059,285,4380_78804,Dr. Mannix Road,102346-00009-1,0,4380_7778208_4010304,4380_1273 -4380_78059,288,4380_78806,Dr. Mannix Road,102348-00011-1,0,4380_7778208_4010304,4380_1273 -4380_78059,286,4380_78807,Dr. Mannix Road,102350-00010-1,0,4380_7778208_4010304,4380_1273 -4380_78059,291,4380_78808,Dr. Mannix Road,102103-00013-1,0,4380_7778208_4010303,4380_1273 -4380_78059,289,4380_78809,Dr. Mannix Road,102352-00014-1,0,4380_7778208_4010304,4380_1273 -4380_78059,287,4380_78810,Dr. Mannix Road,102344-00012-1,0,4380_7778208_4010304,4380_1273 -4380_78059,292,4380_78811,Dr. Mannix Road,102351-00016-1,0,4380_7778208_4010304,4380_1273 -4380_78059,290,4380_78812,Dr. Mannix Road,102347-00015-1,0,4380_7778208_4010304,4380_1273 -4380_78059,294,4380_78813,Dr. Mannix Road,102345-00018-1,0,4380_7778208_4010304,4380_1273 -4380_78059,295,4380_78814,Dr. Mannix Road,102353-00019-1,0,4380_7778208_4010304,4380_1273 -4380_78059,293,4380_78815,Dr. Mannix Road,102349-00017-1,0,4380_7778208_4010304,4380_1273 -4380_78059,296,4380_78816,Dr. Mannix Road,102104-00021-1,0,4380_7778208_4010303,4380_1273 -4380_78059,297,4380_78823,Dr. Mannix Road,102598-00008-1,0,4380_7778208_4010305,4380_1271 -4380_78059,285,4380_78824,Dr. Mannix Road,101595-00009-1,0,4380_7778208_4010301,4380_1273 -4380_78059,288,4380_78826,Dr. Mannix Road,101591-00011-1,0,4380_7778208_4010301,4380_1273 -4380_78059,286,4380_78827,Dr. Mannix Road,101597-00010-1,0,4380_7778208_4010301,4380_1273 -4380_78059,291,4380_78828,Dr. Mannix Road,101852-00013-1,0,4380_7778208_4010302,4380_1273 -4380_78059,289,4380_78829,Dr. Mannix Road,101593-00014-1,0,4380_7778208_4010301,4380_1273 -4380_78059,287,4380_78830,Dr. Mannix Road,101599-00012-1,0,4380_7778208_4010301,4380_1273 -4380_78059,292,4380_78831,Dr. Mannix Road,101598-00016-1,0,4380_7778208_4010301,4380_1273 -4380_78059,290,4380_78832,Dr. Mannix Road,101596-00015-1,0,4380_7778208_4010301,4380_1273 -4380_78059,294,4380_78833,Dr. Mannix Road,101600-00018-1,0,4380_7778208_4010301,4380_1273 -4380_78059,295,4380_78834,Dr. Mannix Road,101594-00019-1,0,4380_7778208_4010301,4380_1273 -4380_78059,293,4380_78835,Dr. Mannix Road,101592-00017-1,0,4380_7778208_4010301,4380_1273 -4380_78059,296,4380_78836,Dr. Mannix Road,101853-00021-1,0,4380_7778208_4010302,4380_1273 -4380_78114,285,4380_7884,Kells via Navan,5457-00009-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_78843,Dr. Mannix Road,101864-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78844,Dr. Mannix Road,102109-00009-1,0,4380_7778208_4010303,4380_1273 -4380_78059,288,4380_78846,Dr. Mannix Road,102111-00011-1,0,4380_7778208_4010303,4380_1273 -4380_78059,286,4380_78847,Dr. Mannix Road,102113-00010-1,0,4380_7778208_4010303,4380_1273 -4380_78059,291,4380_78848,Dr. Mannix Road,102355-00013-1,0,4380_7778208_4010304,4380_1273 -4380_78059,289,4380_78849,Dr. Mannix Road,102107-00014-1,0,4380_7778208_4010303,4380_1273 -4380_78114,286,4380_7885,Kells via Navan,5467-00010-1,0,4380_7778208_1090104,4380_123 -4380_78059,287,4380_78850,Dr. Mannix Road,102105-00012-1,0,4380_7778208_4010303,4380_1273 -4380_78059,292,4380_78851,Dr. Mannix Road,102114-00016-1,0,4380_7778208_4010303,4380_1273 -4380_78059,290,4380_78852,Dr. Mannix Road,102110-00015-1,0,4380_7778208_4010303,4380_1273 -4380_78059,294,4380_78853,Dr. Mannix Road,102106-00018-1,0,4380_7778208_4010303,4380_1273 -4380_78059,295,4380_78854,Dr. Mannix Road,102108-00019-1,0,4380_7778208_4010303,4380_1273 -4380_78059,293,4380_78855,Dr. Mannix Road,102112-00017-1,0,4380_7778208_4010303,4380_1273 -4380_78059,296,4380_78856,Dr. Mannix Road,102356-00021-1,0,4380_7778208_4010304,4380_1273 -4380_78114,297,4380_7886,Kells via Navan,5957-00008-1,0,4380_7778208_1090112,4380_125 -4380_78059,297,4380_78863,Dr. Mannix Road,102367-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78864,Dr. Mannix Road,102605-00009-1,0,4380_7778208_4010305,4380_1273 -4380_78059,288,4380_78866,Dr. Mannix Road,102607-00011-1,0,4380_7778208_4010305,4380_1273 -4380_78059,286,4380_78867,Dr. Mannix Road,102603-00010-1,0,4380_7778208_4010305,4380_1273 -4380_78059,291,4380_78868,Dr. Mannix Road,102781-00013-1,0,4380_7778208_4010306,4380_1273 -4380_78059,289,4380_78869,Dr. Mannix Road,102599-00014-1,0,4380_7778208_4010305,4380_1273 -4380_78114,288,4380_7887,Kells via Navan,5477-00011-1,0,4380_7778208_1090104,4380_123 -4380_78059,287,4380_78870,Dr. Mannix Road,102601-00012-1,0,4380_7778208_4010305,4380_1273 -4380_78059,292,4380_78871,Dr. Mannix Road,102604-00016-1,0,4380_7778208_4010305,4380_1273 -4380_78059,290,4380_78872,Dr. Mannix Road,102606-00015-1,0,4380_7778208_4010305,4380_1273 -4380_78059,294,4380_78873,Dr. Mannix Road,102602-00018-1,0,4380_7778208_4010305,4380_1273 -4380_78059,295,4380_78874,Dr. Mannix Road,102600-00019-1,0,4380_7778208_4010305,4380_1273 -4380_78059,293,4380_78875,Dr. Mannix Road,102608-00017-1,0,4380_7778208_4010305,4380_1273 -4380_78059,296,4380_78876,Dr. Mannix Road,102782-00021-1,0,4380_7778208_4010306,4380_1273 -4380_78114,287,4380_7888,Kells via Navan,5487-00012-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_78883,Dr. Mannix Road,101614-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78884,Dr. Mannix Road,101873-00009-1,0,4380_7778208_4010302,4380_1273 -4380_78059,288,4380_78886,Dr. Mannix Road,101871-00011-1,0,4380_7778208_4010302,4380_1273 -4380_78059,286,4380_78887,Dr. Mannix Road,101869-00010-1,0,4380_7778208_4010302,4380_1273 -4380_78059,291,4380_78888,Dr. Mannix Road,101615-00013-1,0,4380_7778208_4010301,4380_1273 -4380_78059,289,4380_78889,Dr. Mannix Road,101875-00014-1,0,4380_7778208_4010302,4380_1273 -4380_78114,289,4380_7889,Kells via Navan,5447-00014-1,0,4380_7778208_1090104,4380_123 -4380_78059,287,4380_78890,Dr. Mannix Road,101867-00012-1,0,4380_7778208_4010302,4380_1273 -4380_78059,292,4380_78891,Dr. Mannix Road,101870-00016-1,0,4380_7778208_4010302,4380_1273 -4380_78059,290,4380_78892,Dr. Mannix Road,101874-00015-1,0,4380_7778208_4010302,4380_1273 -4380_78059,294,4380_78893,Dr. Mannix Road,101868-00018-1,0,4380_7778208_4010302,4380_1273 -4380_78059,295,4380_78894,Dr. Mannix Road,101876-00019-1,0,4380_7778208_4010302,4380_1273 -4380_78059,293,4380_78895,Dr. Mannix Road,101872-00017-1,0,4380_7778208_4010302,4380_1273 -4380_78059,296,4380_78896,Dr. Mannix Road,101616-00021-1,0,4380_7778208_4010301,4380_1273 -4380_78113,290,4380_789,Dundalk,49909-00015-1,0,4380_7778208_1000905,4380_11 -4380_78114,290,4380_7890,Kells via Navan,54819-00015-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_78903,Dr. Mannix Road,102128-00008-1,0,4380_7778208_4010303,4380_1271 -4380_78059,285,4380_78904,Dr. Mannix Road,102372-00009-1,0,4380_7778208_4010304,4380_1273 -4380_78059,288,4380_78906,Dr. Mannix Road,102376-00011-1,0,4380_7778208_4010304,4380_1273 -4380_78059,286,4380_78907,Dr. Mannix Road,102378-00010-1,0,4380_7778208_4010304,4380_1273 -4380_78059,291,4380_78908,Dr. Mannix Road,102129-00013-1,0,4380_7778208_4010303,4380_1273 -4380_78059,289,4380_78909,Dr. Mannix Road,102374-00014-1,0,4380_7778208_4010304,4380_1273 -4380_78114,291,4380_7891,Kells via Navan,6010-00013-1,0,4380_7778208_1090114,4380_127 -4380_78059,287,4380_78910,Dr. Mannix Road,102370-00012-1,0,4380_7778208_4010304,4380_1273 -4380_78059,292,4380_78911,Dr. Mannix Road,102379-00016-1,0,4380_7778208_4010304,4380_1273 -4380_78059,290,4380_78912,Dr. Mannix Road,102373-00015-1,0,4380_7778208_4010304,4380_1273 -4380_78059,294,4380_78913,Dr. Mannix Road,102371-00018-1,0,4380_7778208_4010304,4380_1273 -4380_78059,295,4380_78914,Dr. Mannix Road,102375-00019-1,0,4380_7778208_4010304,4380_1273 -4380_78059,293,4380_78915,Dr. Mannix Road,102377-00017-1,0,4380_7778208_4010304,4380_1273 -4380_78059,296,4380_78916,Dr. Mannix Road,102130-00021-1,0,4380_7778208_4010303,4380_1273 -4380_78114,292,4380_7892,Kells via Navan,54816-00016-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_78923,Dr. Mannix Road,102620-00008-1,0,4380_7778208_4010305,4380_1271 -4380_78059,285,4380_78924,Dr. Mannix Road,101625-00009-1,0,4380_7778208_4010301,4380_1273 -4380_78059,288,4380_78926,Dr. Mannix Road,101617-00011-1,0,4380_7778208_4010301,4380_1273 -4380_78059,286,4380_78927,Dr. Mannix Road,101621-00010-1,0,4380_7778208_4010301,4380_1273 -4380_78059,291,4380_78928,Dr. Mannix Road,101878-00013-1,0,4380_7778208_4010302,4380_1273 -4380_78059,289,4380_78929,Dr. Mannix Road,101623-00014-1,0,4380_7778208_4010301,4380_1273 -4380_78114,293,4380_7893,Kells via Navan,54815-00017-1,0,4380_7778208_1090104,4380_123 -4380_78059,287,4380_78930,Dr. Mannix Road,101619-00012-1,0,4380_7778208_4010301,4380_1273 -4380_78059,292,4380_78931,Dr. Mannix Road,101622-00016-1,0,4380_7778208_4010301,4380_1273 -4380_78059,290,4380_78932,Dr. Mannix Road,101626-00015-1,0,4380_7778208_4010301,4380_1273 -4380_78059,294,4380_78933,Dr. Mannix Road,101620-00018-1,0,4380_7778208_4010301,4380_1273 -4380_78059,295,4380_78934,Dr. Mannix Road,101624-00019-1,0,4380_7778208_4010301,4380_1273 -4380_78059,293,4380_78935,Dr. Mannix Road,101618-00017-1,0,4380_7778208_4010301,4380_1273 -4380_78059,296,4380_78936,Dr. Mannix Road,101879-00021-1,0,4380_7778208_4010302,4380_1273 -4380_78114,294,4380_7894,Kells via Navan,54817-00018-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_78943,Dr. Mannix Road,101890-00008-1,0,4380_7778208_4010302,4380_1271 -4380_78059,285,4380_78944,Dr. Mannix Road,102139-00009-1,0,4380_7778208_4010303,4380_1273 -4380_78059,288,4380_78946,Dr. Mannix Road,102131-00011-1,0,4380_7778208_4010303,4380_1273 -4380_78059,286,4380_78947,Dr. Mannix Road,102135-00010-1,0,4380_7778208_4010303,4380_1273 -4380_78059,291,4380_78948,Dr. Mannix Road,102381-00013-1,0,4380_7778208_4010304,4380_1273 -4380_78059,289,4380_78949,Dr. Mannix Road,102133-00014-1,0,4380_7778208_4010303,4380_1273 -4380_78114,295,4380_7895,Kells via Navan,54818-00019-1,0,4380_7778208_1090104,4380_123 -4380_78059,287,4380_78950,Dr. Mannix Road,102137-00012-1,0,4380_7778208_4010303,4380_1273 -4380_78059,292,4380_78951,Dr. Mannix Road,102136-00016-1,0,4380_7778208_4010303,4380_1273 -4380_78059,290,4380_78952,Dr. Mannix Road,102140-00015-1,0,4380_7778208_4010303,4380_1273 -4380_78059,294,4380_78953,Dr. Mannix Road,102138-00018-1,0,4380_7778208_4010303,4380_1273 -4380_78059,295,4380_78954,Dr. Mannix Road,102134-00019-1,0,4380_7778208_4010303,4380_1273 -4380_78059,293,4380_78955,Dr. Mannix Road,102132-00017-1,0,4380_7778208_4010303,4380_1273 -4380_78059,296,4380_78956,Dr. Mannix Road,102382-00021-1,0,4380_7778208_4010304,4380_1273 -4380_78114,296,4380_7896,Kells via Navan,55217-00021-1,0,4380_7778208_1090114,4380_127 -4380_78059,297,4380_78963,Dr. Mannix Road,102393-00008-1,0,4380_7778208_4010304,4380_1271 -4380_78059,285,4380_78964,Dr. Mannix Road,102623-00009-1,0,4380_7778208_4010305,4380_1273 -4380_78059,288,4380_78966,Dr. Mannix Road,102621-00011-1,0,4380_7778208_4010305,4380_1273 -4380_78059,286,4380_78967,Dr. Mannix Road,102629-00010-1,0,4380_7778208_4010305,4380_1273 -4380_78059,291,4380_78968,Dr. Mannix Road,102785-00013-1,0,4380_7778208_4010306,4380_1273 -4380_78059,289,4380_78969,Dr. Mannix Road,102627-00014-1,0,4380_7778208_4010305,4380_1273 -4380_78059,287,4380_78970,Dr. Mannix Road,102625-00012-1,0,4380_7778208_4010305,4380_1273 -4380_78059,292,4380_78971,Dr. Mannix Road,102630-00016-1,0,4380_7778208_4010305,4380_1273 -4380_78059,290,4380_78972,Dr. Mannix Road,102624-00015-1,0,4380_7778208_4010305,4380_1273 -4380_78059,294,4380_78973,Dr. Mannix Road,102626-00018-1,0,4380_7778208_4010305,4380_1273 -4380_78059,295,4380_78974,Dr. Mannix Road,102628-00019-1,0,4380_7778208_4010305,4380_1273 -4380_78059,293,4380_78975,Dr. Mannix Road,102622-00017-1,0,4380_7778208_4010305,4380_1273 -4380_78059,296,4380_78976,Dr. Mannix Road,102786-00021-1,0,4380_7778208_4010306,4380_1273 -4380_78059,297,4380_78983,Dr. Mannix Road,101642-00008-1,0,4380_7778208_4010301,4380_1271 -4380_78059,285,4380_78984,Dr. Mannix Road,101900-00009-1,0,4380_7778208_4010302,4380_1273 -4380_78059,288,4380_78986,Dr. Mannix Road,101896-00011-1,0,4380_7778208_4010302,4380_1273 -4380_78059,286,4380_78987,Dr. Mannix Road,101902-00010-1,0,4380_7778208_4010302,4380_1273 -4380_78059,291,4380_78988,Dr. Mannix Road,101640-00013-1,0,4380_7778208_4010301,4380_1273 -4380_78059,289,4380_78989,Dr. Mannix Road,101894-00014-1,0,4380_7778208_4010302,4380_1273 -4380_78059,287,4380_78990,Dr. Mannix Road,101898-00012-1,0,4380_7778208_4010302,4380_1273 -4380_78059,292,4380_78991,Dr. Mannix Road,101903-00016-1,0,4380_7778208_4010302,4380_1273 -4380_78059,290,4380_78992,Dr. Mannix Road,101901-00015-1,0,4380_7778208_4010302,4380_1273 -4380_78059,294,4380_78993,Dr. Mannix Road,101899-00018-1,0,4380_7778208_4010302,4380_1273 -4380_78059,295,4380_78994,Dr. Mannix Road,101895-00019-1,0,4380_7778208_4010302,4380_1273 -4380_78059,293,4380_78995,Dr. Mannix Road,101897-00017-1,0,4380_7778208_4010302,4380_1273 -4380_78059,296,4380_78996,Dr. Mannix Road,101641-00021-1,0,4380_7778208_4010301,4380_1273 -4380_77946,291,4380_79,Dundalk,50255-00013-1,0,4380_7778208_1000911,4380_2 -4380_78113,291,4380_790,Dundalk,49910-00013-1,0,4380_7778208_1000905,4380_17 -4380_78059,297,4380_79003,Eyre Square,102156-00008-1,0,4380_7778208_4010303,4380_1272 -4380_78059,285,4380_79004,Eyre Square,102405-00009-1,0,4380_7778208_4010304,4380_1274 -4380_78059,288,4380_79006,Eyre Square,102397-00011-1,0,4380_7778208_4010304,4380_1274 -4380_78059,286,4380_79007,Eyre Square,102401-00010-1,0,4380_7778208_4010304,4380_1274 -4380_78059,291,4380_79008,Eyre Square,102154-00013-1,0,4380_7778208_4010303,4380_1274 -4380_78059,289,4380_79009,Eyre Square,102403-00014-1,0,4380_7778208_4010304,4380_1274 -4380_78059,287,4380_79010,Eyre Square,102399-00012-1,0,4380_7778208_4010304,4380_1274 -4380_78059,292,4380_79011,Eyre Square,102402-00016-1,0,4380_7778208_4010304,4380_1274 -4380_78059,290,4380_79012,Eyre Square,102406-00015-1,0,4380_7778208_4010304,4380_1274 -4380_78059,294,4380_79013,Eyre Square,102400-00018-1,0,4380_7778208_4010304,4380_1274 -4380_78059,295,4380_79014,Eyre Square,102404-00019-1,0,4380_7778208_4010304,4380_1274 -4380_78059,293,4380_79015,Eyre Square,102398-00017-1,0,4380_7778208_4010304,4380_1274 -4380_78059,296,4380_79016,Eyre Square,102155-00021-1,0,4380_7778208_4010303,4380_1274 -4380_78059,297,4380_79023,Eyre Square,101904-00008-1,0,4380_7778208_4010302,4380_1272 -4380_78059,285,4380_79024,Eyre Square,101650-00009-1,0,4380_7778208_4010301,4380_1274 -4380_78059,288,4380_79026,Eyre Square,101648-00011-1,0,4380_7778208_4010301,4380_1274 -4380_78059,286,4380_79027,Eyre Square,101644-00010-1,0,4380_7778208_4010301,4380_1274 -4380_78059,291,4380_79028,Eyre Square,101905-00013-1,0,4380_7778208_4010302,4380_1274 -4380_78059,289,4380_79029,Eyre Square,101652-00014-1,0,4380_7778208_4010301,4380_1274 -4380_78059,287,4380_79030,Eyre Square,101646-00012-1,0,4380_7778208_4010301,4380_1274 -4380_78059,292,4380_79031,Eyre Square,101645-00016-1,0,4380_7778208_4010301,4380_1274 -4380_78059,290,4380_79032,Eyre Square,101651-00015-1,0,4380_7778208_4010301,4380_1274 -4380_78059,294,4380_79033,Eyre Square,101647-00018-1,0,4380_7778208_4010301,4380_1274 -4380_78059,295,4380_79034,Eyre Square,101653-00019-1,0,4380_7778208_4010301,4380_1274 -4380_78059,293,4380_79035,Eyre Square,101649-00017-1,0,4380_7778208_4010301,4380_1274 -4380_78059,296,4380_79036,Eyre Square,101906-00021-1,0,4380_7778208_4010302,4380_1274 -4380_78114,285,4380_7904,Kells via Navan,5531-00009-1,0,4380_7778208_1090105,4380_123 -4380_78059,285,4380_79042,Parkmore Ind.,101397-00009-1,1,4380_7778208_4010301,4380_1276 -4380_78059,288,4380_79044,Parkmore Ind.,101399-00011-1,1,4380_7778208_4010301,4380_1276 -4380_78059,286,4380_79045,Parkmore Ind.,101403-00010-1,1,4380_7778208_4010301,4380_1276 -4380_78059,291,4380_79046,Parkmore Ind.,101395-00013-1,1,4380_7778208_4010301,4380_1278 -4380_78059,289,4380_79047,Parkmore Ind.,101393-00014-1,1,4380_7778208_4010301,4380_1276 -4380_78059,287,4380_79048,Parkmore Ind.,101401-00012-1,1,4380_7778208_4010301,4380_1276 -4380_78059,292,4380_79049,Parkmore Ind.,101404-00016-1,1,4380_7778208_4010301,4380_1276 -4380_78114,286,4380_7905,Kells via Navan,5539-00010-1,0,4380_7778208_1090105,4380_123 -4380_78059,290,4380_79050,Parkmore Ind.,101398-00015-1,1,4380_7778208_4010301,4380_1276 -4380_78059,294,4380_79051,Parkmore Ind.,101402-00018-1,1,4380_7778208_4010301,4380_1276 -4380_78059,295,4380_79052,Parkmore Ind.,101394-00019-1,1,4380_7778208_4010301,4380_1276 -4380_78059,293,4380_79053,Parkmore Ind.,101400-00017-1,1,4380_7778208_4010301,4380_1276 -4380_78059,296,4380_79054,Parkmore Ind.,101396-00021-1,1,4380_7778208_4010301,4380_1278 -4380_78114,297,4380_7906,Kells via Navan,5987-00008-1,0,4380_7778208_1090113,4380_125 -4380_78059,285,4380_79060,Parkmore Ind.,101911-00009-1,1,4380_7778208_4010303,4380_1276 -4380_78059,288,4380_79062,Parkmore Ind.,101917-00011-1,1,4380_7778208_4010303,4380_1276 -4380_78059,286,4380_79063,Parkmore Ind.,101909-00010-1,1,4380_7778208_4010303,4380_1276 -4380_78059,291,4380_79064,Parkmore Ind.,101915-00013-1,1,4380_7778208_4010303,4380_1278 -4380_78059,289,4380_79065,Parkmore Ind.,101907-00014-1,1,4380_7778208_4010303,4380_1276 -4380_78059,287,4380_79066,Parkmore Ind.,101913-00012-1,1,4380_7778208_4010303,4380_1276 -4380_78059,292,4380_79067,Parkmore Ind.,101910-00016-1,1,4380_7778208_4010303,4380_1276 -4380_78059,290,4380_79068,Parkmore Ind.,101912-00015-1,1,4380_7778208_4010303,4380_1276 -4380_78059,294,4380_79069,Parkmore Ind.,101914-00018-1,1,4380_7778208_4010303,4380_1276 -4380_78114,288,4380_7907,Kells via Navan,5547-00011-1,0,4380_7778208_1090105,4380_123 -4380_78059,295,4380_79070,Parkmore Ind.,101908-00019-1,1,4380_7778208_4010303,4380_1276 -4380_78059,293,4380_79071,Parkmore Ind.,101918-00017-1,1,4380_7778208_4010303,4380_1276 -4380_78059,296,4380_79072,Parkmore Ind.,101916-00021-1,1,4380_7778208_4010303,4380_1278 -4380_78059,285,4380_79078,Parkmore Ind.,102407-00009-1,1,4380_7778208_4010305,4380_1276 -4380_78114,287,4380_7908,Kells via Navan,5555-00012-1,0,4380_7778208_1090105,4380_123 -4380_78059,288,4380_79080,Parkmore Ind.,102409-00011-1,1,4380_7778208_4010305,4380_1276 -4380_78059,286,4380_79081,Parkmore Ind.,102413-00010-1,1,4380_7778208_4010305,4380_1276 -4380_78059,291,4380_79082,Parkmore Ind.,102411-00013-1,1,4380_7778208_4010305,4380_1278 -4380_78059,289,4380_79083,Parkmore Ind.,102415-00014-1,1,4380_7778208_4010305,4380_1276 -4380_78059,287,4380_79084,Parkmore Ind.,102417-00012-1,1,4380_7778208_4010305,4380_1276 -4380_78059,292,4380_79085,Parkmore Ind.,102414-00016-1,1,4380_7778208_4010305,4380_1276 -4380_78059,290,4380_79086,Parkmore Ind.,102408-00015-1,1,4380_7778208_4010305,4380_1276 -4380_78059,294,4380_79087,Parkmore Ind.,102418-00018-1,1,4380_7778208_4010305,4380_1276 -4380_78059,295,4380_79088,Parkmore Ind.,102416-00019-1,1,4380_7778208_4010305,4380_1276 -4380_78059,293,4380_79089,Parkmore Ind.,102410-00017-1,1,4380_7778208_4010305,4380_1276 -4380_78114,289,4380_7909,Kells via Navan,5523-00014-1,0,4380_7778208_1090105,4380_123 -4380_78059,296,4380_79090,Parkmore Ind.,102412-00021-1,1,4380_7778208_4010305,4380_1278 -4380_78059,285,4380_79096,Parkmore Ind.,101674-00009-1,1,4380_7778208_4010302,4380_1276 -4380_78059,288,4380_79098,Parkmore Ind.,101672-00011-1,1,4380_7778208_4010302,4380_1276 -4380_78059,286,4380_79099,Parkmore Ind.,101666-00010-1,1,4380_7778208_4010302,4380_1276 -4380_78113,292,4380_791,Dundalk,49907-00016-1,0,4380_7778208_1000905,4380_11 -4380_78114,290,4380_7910,Kells via Navan,54872-00015-1,0,4380_7778208_1090105,4380_123 -4380_78059,291,4380_79100,Parkmore Ind.,101668-00013-1,1,4380_7778208_4010302,4380_1278 -4380_78059,289,4380_79101,Parkmore Ind.,101670-00014-1,1,4380_7778208_4010302,4380_1276 -4380_78059,287,4380_79102,Parkmore Ind.,101676-00012-1,1,4380_7778208_4010302,4380_1276 -4380_78059,292,4380_79103,Parkmore Ind.,101667-00016-1,1,4380_7778208_4010302,4380_1276 -4380_78059,290,4380_79104,Parkmore Ind.,101675-00015-1,1,4380_7778208_4010302,4380_1276 -4380_78059,294,4380_79105,Parkmore Ind.,101677-00018-1,1,4380_7778208_4010302,4380_1276 -4380_78059,295,4380_79106,Parkmore Ind.,101671-00019-1,1,4380_7778208_4010302,4380_1276 -4380_78059,293,4380_79107,Parkmore Ind.,101673-00017-1,1,4380_7778208_4010302,4380_1276 -4380_78059,296,4380_79108,Parkmore Ind.,101669-00021-1,1,4380_7778208_4010302,4380_1278 -4380_78114,291,4380_7911,Kells via Navan,6050-00013-1,0,4380_7778208_1090115,4380_127 -4380_78059,297,4380_79115,Parkmore Ind.,101417-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_79116,Parkmore Ind.,102169-00009-1,1,4380_7778208_4010304,4380_1278 -4380_78059,288,4380_79118,Parkmore Ind.,102179-00011-1,1,4380_7778208_4010304,4380_1278 -4380_78059,286,4380_79119,Parkmore Ind.,102177-00010-1,1,4380_7778208_4010304,4380_1278 -4380_78114,292,4380_7912,Kells via Navan,54875-00016-1,0,4380_7778208_1090105,4380_123 -4380_78059,291,4380_79120,Parkmore Ind.,102173-00013-1,1,4380_7778208_4010304,4380_1280 -4380_78059,289,4380_79121,Parkmore Ind.,102171-00014-1,1,4380_7778208_4010304,4380_1278 -4380_78059,287,4380_79122,Parkmore Ind.,102175-00012-1,1,4380_7778208_4010304,4380_1278 -4380_78059,292,4380_79123,Parkmore Ind.,102178-00016-1,1,4380_7778208_4010304,4380_1278 -4380_78059,290,4380_79124,Parkmore Ind.,102170-00015-1,1,4380_7778208_4010304,4380_1278 -4380_78059,294,4380_79125,Parkmore Ind.,102176-00018-1,1,4380_7778208_4010304,4380_1278 -4380_78059,295,4380_79126,Parkmore Ind.,102172-00019-1,1,4380_7778208_4010304,4380_1278 -4380_78059,293,4380_79127,Parkmore Ind.,102180-00017-1,1,4380_7778208_4010304,4380_1278 -4380_78059,296,4380_79128,Parkmore Ind.,102174-00021-1,1,4380_7778208_4010304,4380_1280 -4380_78114,293,4380_7913,Kells via Navan,54873-00017-1,0,4380_7778208_1090105,4380_123 -4380_78059,297,4380_79135,Parkmore Ind.,101931-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_79136,Parkmore Ind.,102653-00009-1,1,4380_7778208_4010306,4380_1278 -4380_78059,288,4380_79138,Parkmore Ind.,102657-00011-1,1,4380_7778208_4010306,4380_1278 -4380_78059,286,4380_79139,Parkmore Ind.,102655-00010-1,1,4380_7778208_4010306,4380_1278 -4380_78114,294,4380_7914,Kells via Navan,54874-00018-1,0,4380_7778208_1090105,4380_123 -4380_78059,291,4380_79140,Parkmore Ind.,101418-00013-1,1,4380_7778208_4010301,4380_1280 -4380_78059,289,4380_79141,Parkmore Ind.,102651-00014-1,1,4380_7778208_4010306,4380_1278 -4380_78059,287,4380_79142,Parkmore Ind.,102659-00012-1,1,4380_7778208_4010306,4380_1278 -4380_78059,292,4380_79143,Parkmore Ind.,102656-00016-1,1,4380_7778208_4010306,4380_1278 -4380_78059,290,4380_79144,Parkmore Ind.,102654-00015-1,1,4380_7778208_4010306,4380_1278 -4380_78059,294,4380_79145,Parkmore Ind.,102660-00018-1,1,4380_7778208_4010306,4380_1278 -4380_78059,295,4380_79146,Parkmore Ind.,102652-00019-1,1,4380_7778208_4010306,4380_1278 -4380_78059,293,4380_79147,Parkmore Ind.,102658-00017-1,1,4380_7778208_4010306,4380_1278 -4380_78059,296,4380_79148,Parkmore Ind.,101419-00021-1,1,4380_7778208_4010301,4380_1280 -4380_78114,295,4380_7915,Kells via Navan,54876-00019-1,0,4380_7778208_1090105,4380_123 -4380_78059,297,4380_79155,Parkmore Ind.,102431-00008-1,1,4380_7778208_4010305,4380_1276 -4380_78059,285,4380_79156,Parkmore Ind.,101428-00009-1,1,4380_7778208_4010301,4380_1278 -4380_78059,288,4380_79158,Parkmore Ind.,101424-00011-1,1,4380_7778208_4010301,4380_1278 -4380_78059,286,4380_79159,Parkmore Ind.,101422-00010-1,1,4380_7778208_4010301,4380_1278 -4380_78114,296,4380_7916,Kells via Navan,55247-00021-1,0,4380_7778208_1090115,4380_127 -4380_78059,291,4380_79160,Parkmore Ind.,101932-00013-1,1,4380_7778208_4010303,4380_1280 -4380_78059,289,4380_79161,Parkmore Ind.,101426-00014-1,1,4380_7778208_4010301,4380_1278 -4380_78059,287,4380_79162,Parkmore Ind.,101420-00012-1,1,4380_7778208_4010301,4380_1278 -4380_78059,292,4380_79163,Parkmore Ind.,101423-00016-1,1,4380_7778208_4010301,4380_1278 -4380_78059,290,4380_79164,Parkmore Ind.,101429-00015-1,1,4380_7778208_4010301,4380_1278 -4380_78059,294,4380_79165,Parkmore Ind.,101421-00018-1,1,4380_7778208_4010301,4380_1278 -4380_78059,295,4380_79166,Parkmore Ind.,101427-00019-1,1,4380_7778208_4010301,4380_1278 -4380_78059,293,4380_79167,Parkmore Ind.,101425-00017-1,1,4380_7778208_4010301,4380_1278 -4380_78059,296,4380_79168,Parkmore Ind.,101933-00021-1,1,4380_7778208_4010303,4380_1280 -4380_78059,297,4380_79175,Parkmore Ind.,101691-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_79176,Parkmore Ind.,101936-00009-1,1,4380_7778208_4010303,4380_1278 -4380_78059,288,4380_79178,Parkmore Ind.,101940-00011-1,1,4380_7778208_4010303,4380_1278 -4380_78059,286,4380_79179,Parkmore Ind.,101934-00010-1,1,4380_7778208_4010303,4380_1278 -4380_78059,291,4380_79180,Parkmore Ind.,102432-00013-1,1,4380_7778208_4010305,4380_1280 -4380_78059,289,4380_79181,Parkmore Ind.,101942-00014-1,1,4380_7778208_4010303,4380_1278 -4380_78059,287,4380_79182,Parkmore Ind.,101938-00012-1,1,4380_7778208_4010303,4380_1278 -4380_78059,292,4380_79183,Parkmore Ind.,101935-00016-1,1,4380_7778208_4010303,4380_1278 -4380_78059,290,4380_79184,Parkmore Ind.,101937-00015-1,1,4380_7778208_4010303,4380_1278 -4380_78059,294,4380_79185,Parkmore Ind.,101939-00018-1,1,4380_7778208_4010303,4380_1278 -4380_78059,295,4380_79186,Parkmore Ind.,101943-00019-1,1,4380_7778208_4010303,4380_1278 -4380_78059,293,4380_79187,Parkmore Ind.,101941-00017-1,1,4380_7778208_4010303,4380_1278 -4380_78059,296,4380_79188,Parkmore Ind.,102433-00021-1,1,4380_7778208_4010305,4380_1280 -4380_78059,297,4380_79195,Parkmore Ind.,102194-00008-1,1,4380_7778208_4010304,4380_1276 -4380_78059,285,4380_79196,Parkmore Ind.,102442-00009-1,1,4380_7778208_4010305,4380_1278 -4380_78059,288,4380_79198,Parkmore Ind.,102436-00011-1,1,4380_7778208_4010305,4380_1278 -4380_78059,286,4380_79199,Parkmore Ind.,102440-00010-1,1,4380_7778208_4010305,4380_1278 -4380_78113,293,4380_792,Dundalk,49903-00017-1,0,4380_7778208_1000905,4380_11 -4380_78059,291,4380_79200,Parkmore Ind.,101692-00013-1,1,4380_7778208_4010302,4380_1280 -4380_78059,289,4380_79201,Parkmore Ind.,102434-00014-1,1,4380_7778208_4010305,4380_1278 -4380_78059,287,4380_79202,Parkmore Ind.,102438-00012-1,1,4380_7778208_4010305,4380_1278 -4380_78059,292,4380_79203,Parkmore Ind.,102441-00016-1,1,4380_7778208_4010305,4380_1278 -4380_78059,290,4380_79204,Parkmore Ind.,102443-00015-1,1,4380_7778208_4010305,4380_1278 -4380_78059,294,4380_79205,Parkmore Ind.,102439-00018-1,1,4380_7778208_4010305,4380_1278 -4380_78059,295,4380_79206,Parkmore Ind.,102435-00019-1,1,4380_7778208_4010305,4380_1278 -4380_78059,293,4380_79207,Parkmore Ind.,102437-00017-1,1,4380_7778208_4010305,4380_1278 -4380_78059,296,4380_79208,Parkmore Ind.,101693-00021-1,1,4380_7778208_4010302,4380_1280 -4380_78059,297,4380_79215,Parkmore Ind.,101433-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_79216,Parkmore Ind.,101694-00009-1,1,4380_7778208_4010302,4380_1278 -4380_78059,288,4380_79218,Parkmore Ind.,101702-00011-1,1,4380_7778208_4010302,4380_1278 -4380_78059,286,4380_79219,Parkmore Ind.,101700-00010-1,1,4380_7778208_4010302,4380_1278 -4380_78059,291,4380_79220,Parkmore Ind.,102195-00013-1,1,4380_7778208_4010304,4380_1280 -4380_78059,289,4380_79221,Parkmore Ind.,101696-00014-1,1,4380_7778208_4010302,4380_1278 -4380_78059,287,4380_79222,Parkmore Ind.,101698-00012-1,1,4380_7778208_4010302,4380_1278 -4380_78059,292,4380_79223,Parkmore Ind.,101701-00016-1,1,4380_7778208_4010302,4380_1278 -4380_78059,290,4380_79224,Parkmore Ind.,101695-00015-1,1,4380_7778208_4010302,4380_1278 -4380_78059,294,4380_79225,Parkmore Ind.,101699-00018-1,1,4380_7778208_4010302,4380_1278 -4380_78059,295,4380_79226,Parkmore Ind.,101697-00019-1,1,4380_7778208_4010302,4380_1278 -4380_78059,293,4380_79227,Parkmore Ind.,101703-00017-1,1,4380_7778208_4010302,4380_1278 -4380_78059,296,4380_79228,Parkmore Ind.,102196-00021-1,1,4380_7778208_4010304,4380_1280 -4380_78059,297,4380_79235,Parkmore Ind.,101947-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_79236,Parkmore Ind.,102197-00009-1,1,4380_7778208_4010304,4380_1278 -4380_78059,288,4380_79238,Parkmore Ind.,102205-00011-1,1,4380_7778208_4010304,4380_1278 -4380_78059,286,4380_79239,Parkmore Ind.,102199-00010-1,1,4380_7778208_4010304,4380_1278 -4380_78114,285,4380_7924,Kells via Navan,5236-00009-1,0,4380_7778208_1090101,4380_123 -4380_78059,291,4380_79240,Parkmore Ind.,101444-00013-1,1,4380_7778208_4010301,4380_1280 -4380_78059,289,4380_79241,Parkmore Ind.,102201-00014-1,1,4380_7778208_4010304,4380_1278 -4380_78059,287,4380_79242,Parkmore Ind.,102203-00012-1,1,4380_7778208_4010304,4380_1278 -4380_78059,292,4380_79243,Parkmore Ind.,102200-00016-1,1,4380_7778208_4010304,4380_1278 -4380_78059,290,4380_79244,Parkmore Ind.,102198-00015-1,1,4380_7778208_4010304,4380_1278 -4380_78059,294,4380_79245,Parkmore Ind.,102204-00018-1,1,4380_7778208_4010304,4380_1278 -4380_78059,295,4380_79246,Parkmore Ind.,102202-00019-1,1,4380_7778208_4010304,4380_1278 -4380_78059,293,4380_79247,Parkmore Ind.,102206-00017-1,1,4380_7778208_4010304,4380_1278 -4380_78059,296,4380_79248,Parkmore Ind.,101445-00021-1,1,4380_7778208_4010301,4380_1280 -4380_78114,286,4380_7925,Kells via Navan,5246-00010-1,0,4380_7778208_1090101,4380_123 -4380_78059,297,4380_79255,Parkmore Ind.,102447-00008-1,1,4380_7778208_4010305,4380_1276 -4380_78059,285,4380_79256,Parkmore Ind.,102675-00009-1,1,4380_7778208_4010306,4380_1278 -4380_78059,288,4380_79258,Parkmore Ind.,102677-00011-1,1,4380_7778208_4010306,4380_1278 -4380_78059,286,4380_79259,Parkmore Ind.,102671-00010-1,1,4380_7778208_4010306,4380_1278 -4380_78114,297,4380_7926,Kells via Navan,5809-00008-1,0,4380_7778208_1090109,4380_125 -4380_78059,291,4380_79260,Parkmore Ind.,101958-00013-1,1,4380_7778208_4010303,4380_1280 -4380_78059,289,4380_79261,Parkmore Ind.,102679-00014-1,1,4380_7778208_4010306,4380_1278 -4380_78059,287,4380_79262,Parkmore Ind.,102673-00012-1,1,4380_7778208_4010306,4380_1278 -4380_78059,292,4380_79263,Parkmore Ind.,102672-00016-1,1,4380_7778208_4010306,4380_1278 -4380_78059,290,4380_79264,Parkmore Ind.,102676-00015-1,1,4380_7778208_4010306,4380_1278 -4380_78059,294,4380_79265,Parkmore Ind.,102674-00018-1,1,4380_7778208_4010306,4380_1278 -4380_78059,295,4380_79266,Parkmore Ind.,102680-00019-1,1,4380_7778208_4010306,4380_1278 -4380_78059,293,4380_79267,Parkmore Ind.,102678-00017-1,1,4380_7778208_4010306,4380_1278 -4380_78059,296,4380_79268,Parkmore Ind.,101959-00021-1,1,4380_7778208_4010303,4380_1280 -4380_78114,288,4380_7927,Kells via Navan,5256-00011-1,0,4380_7778208_1090101,4380_123 -4380_78059,297,4380_79275,Parkmore Ind.,101707-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_79276,Parkmore Ind.,101447-00009-1,1,4380_7778208_4010301,4380_1278 -4380_78059,288,4380_79278,Parkmore Ind.,101449-00011-1,1,4380_7778208_4010301,4380_1278 -4380_78059,286,4380_79279,Parkmore Ind.,101451-00010-1,1,4380_7778208_4010301,4380_1278 -4380_78114,287,4380_7928,Kells via Navan,5266-00012-1,0,4380_7778208_1090101,4380_123 -4380_78059,291,4380_79280,Parkmore Ind.,102458-00013-1,1,4380_7778208_4010305,4380_1280 -4380_78059,289,4380_79281,Parkmore Ind.,101455-00014-1,1,4380_7778208_4010301,4380_1278 -4380_78059,287,4380_79282,Parkmore Ind.,101453-00012-1,1,4380_7778208_4010301,4380_1278 -4380_78059,292,4380_79283,Parkmore Ind.,101452-00016-1,1,4380_7778208_4010301,4380_1278 -4380_78059,290,4380_79284,Parkmore Ind.,101448-00015-1,1,4380_7778208_4010301,4380_1278 -4380_78059,294,4380_79285,Parkmore Ind.,101454-00018-1,1,4380_7778208_4010301,4380_1278 -4380_78059,295,4380_79286,Parkmore Ind.,101456-00019-1,1,4380_7778208_4010301,4380_1278 -4380_78059,293,4380_79287,Parkmore Ind.,101450-00017-1,1,4380_7778208_4010301,4380_1278 -4380_78059,296,4380_79288,Parkmore Ind.,102459-00021-1,1,4380_7778208_4010305,4380_1280 -4380_78114,289,4380_7929,Kells via Navan,5226-00014-1,0,4380_7778208_1090101,4380_123 -4380_78059,297,4380_79295,Parkmore Ind.,102210-00008-1,1,4380_7778208_4010304,4380_1276 -4380_78059,285,4380_79296,Parkmore Ind.,101961-00009-1,1,4380_7778208_4010303,4380_1278 -4380_78059,288,4380_79298,Parkmore Ind.,101963-00011-1,1,4380_7778208_4010303,4380_1278 -4380_78059,286,4380_79299,Parkmore Ind.,101969-00010-1,1,4380_7778208_4010303,4380_1278 -4380_78113,294,4380_793,Dundalk,49905-00018-1,0,4380_7778208_1000905,4380_11 -4380_78114,290,4380_7930,Kells via Navan,54663-00015-1,0,4380_7778208_1090101,4380_123 -4380_78059,291,4380_79300,Parkmore Ind.,101718-00013-1,1,4380_7778208_4010302,4380_1280 -4380_78059,289,4380_79301,Parkmore Ind.,101967-00014-1,1,4380_7778208_4010303,4380_1278 -4380_78059,287,4380_79302,Parkmore Ind.,101965-00012-1,1,4380_7778208_4010303,4380_1278 -4380_78059,292,4380_79303,Parkmore Ind.,101970-00016-1,1,4380_7778208_4010303,4380_1278 -4380_78059,290,4380_79304,Parkmore Ind.,101962-00015-1,1,4380_7778208_4010303,4380_1278 -4380_78059,294,4380_79305,Parkmore Ind.,101966-00018-1,1,4380_7778208_4010303,4380_1278 -4380_78059,295,4380_79306,Parkmore Ind.,101968-00019-1,1,4380_7778208_4010303,4380_1278 -4380_78059,293,4380_79307,Parkmore Ind.,101964-00017-1,1,4380_7778208_4010303,4380_1278 -4380_78059,296,4380_79308,Parkmore Ind.,101719-00021-1,1,4380_7778208_4010302,4380_1280 -4380_78114,291,4380_7931,Kells via Navan,5884-00013-1,0,4380_7778208_1090111,4380_127 -4380_78059,297,4380_79315,Parkmore Ind.,101459-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_79316,Parkmore Ind.,102465-00009-1,1,4380_7778208_4010305,4380_1278 -4380_78059,288,4380_79318,Parkmore Ind.,102463-00011-1,1,4380_7778208_4010305,4380_1278 -4380_78059,286,4380_79319,Parkmore Ind.,102461-00010-1,1,4380_7778208_4010305,4380_1278 -4380_78114,292,4380_7932,Kells via Navan,54662-00016-1,0,4380_7778208_1090101,4380_123 -4380_78059,291,4380_79320,Parkmore Ind.,102221-00013-1,1,4380_7778208_4010304,4380_1280 -4380_78059,289,4380_79321,Parkmore Ind.,102467-00014-1,1,4380_7778208_4010305,4380_1278 -4380_78059,287,4380_79322,Parkmore Ind.,102469-00012-1,1,4380_7778208_4010305,4380_1278 -4380_78059,292,4380_79323,Parkmore Ind.,102462-00016-1,1,4380_7778208_4010305,4380_1278 -4380_78059,290,4380_79324,Parkmore Ind.,102466-00015-1,1,4380_7778208_4010305,4380_1278 -4380_78059,294,4380_79325,Parkmore Ind.,102470-00018-1,1,4380_7778208_4010305,4380_1278 -4380_78059,295,4380_79326,Parkmore Ind.,102468-00019-1,1,4380_7778208_4010305,4380_1278 -4380_78059,293,4380_79327,Parkmore Ind.,102464-00017-1,1,4380_7778208_4010305,4380_1278 -4380_78059,296,4380_79328,Parkmore Ind.,102222-00021-1,1,4380_7778208_4010304,4380_1280 -4380_78114,293,4380_7933,Kells via Navan,54659-00017-1,0,4380_7778208_1090101,4380_123 -4380_78059,297,4380_79335,Parkmore Ind.,101973-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_79336,Parkmore Ind.,101721-00009-1,1,4380_7778208_4010302,4380_1278 -4380_78059,288,4380_79338,Parkmore Ind.,101729-00011-1,1,4380_7778208_4010302,4380_1278 -4380_78059,286,4380_79339,Parkmore Ind.,101723-00010-1,1,4380_7778208_4010302,4380_1278 -4380_78114,294,4380_7934,Kells via Navan,54661-00018-1,0,4380_7778208_1090101,4380_123 -4380_78059,291,4380_79340,Parkmore Ind.,101460-00013-1,1,4380_7778208_4010301,4380_1280 -4380_78059,289,4380_79341,Parkmore Ind.,101725-00014-1,1,4380_7778208_4010302,4380_1278 -4380_78059,287,4380_79342,Parkmore Ind.,101727-00012-1,1,4380_7778208_4010302,4380_1278 -4380_78059,292,4380_79343,Parkmore Ind.,101724-00016-1,1,4380_7778208_4010302,4380_1278 -4380_78059,290,4380_79344,Parkmore Ind.,101722-00015-1,1,4380_7778208_4010302,4380_1278 -4380_78059,294,4380_79345,Parkmore Ind.,101728-00018-1,1,4380_7778208_4010302,4380_1278 -4380_78059,295,4380_79346,Parkmore Ind.,101726-00019-1,1,4380_7778208_4010302,4380_1278 -4380_78059,293,4380_79347,Parkmore Ind.,101730-00017-1,1,4380_7778208_4010302,4380_1278 -4380_78059,296,4380_79348,Parkmore Ind.,101461-00021-1,1,4380_7778208_4010301,4380_1280 -4380_78114,295,4380_7935,Kells via Navan,54660-00019-1,0,4380_7778208_1090101,4380_123 -4380_78059,297,4380_79355,Parkmore Ind.,102473-00008-1,1,4380_7778208_4010305,4380_1276 -4380_78059,285,4380_79356,Parkmore Ind.,102230-00009-1,1,4380_7778208_4010304,4380_1278 -4380_78059,288,4380_79358,Parkmore Ind.,102226-00011-1,1,4380_7778208_4010304,4380_1278 -4380_78059,286,4380_79359,Parkmore Ind.,102224-00010-1,1,4380_7778208_4010304,4380_1278 -4380_78114,296,4380_7936,Kells via Navan,55134-00021-1,0,4380_7778208_1090111,4380_127 -4380_78059,291,4380_79360,Parkmore Ind.,101974-00013-1,1,4380_7778208_4010303,4380_1280 -4380_78059,289,4380_79361,Parkmore Ind.,102232-00014-1,1,4380_7778208_4010304,4380_1278 -4380_78059,287,4380_79362,Parkmore Ind.,102228-00012-1,1,4380_7778208_4010304,4380_1278 -4380_78059,292,4380_79363,Parkmore Ind.,102225-00016-1,1,4380_7778208_4010304,4380_1278 -4380_78059,290,4380_79364,Parkmore Ind.,102231-00015-1,1,4380_7778208_4010304,4380_1278 -4380_78059,294,4380_79365,Parkmore Ind.,102229-00018-1,1,4380_7778208_4010304,4380_1278 -4380_78059,295,4380_79366,Parkmore Ind.,102233-00019-1,1,4380_7778208_4010304,4380_1278 -4380_78059,293,4380_79367,Parkmore Ind.,102227-00017-1,1,4380_7778208_4010304,4380_1278 -4380_78059,296,4380_79368,Parkmore Ind.,101975-00021-1,1,4380_7778208_4010303,4380_1280 -4380_78059,297,4380_79375,Parkmore Ind.,101733-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_79376,Parkmore Ind.,102691-00009-1,1,4380_7778208_4010306,4380_1278 -4380_78059,288,4380_79378,Parkmore Ind.,102697-00011-1,1,4380_7778208_4010306,4380_1278 -4380_78059,286,4380_79379,Parkmore Ind.,102699-00010-1,1,4380_7778208_4010306,4380_1278 -4380_78059,291,4380_79380,Parkmore Ind.,102474-00013-1,1,4380_7778208_4010305,4380_1280 -4380_78059,289,4380_79381,Parkmore Ind.,102695-00014-1,1,4380_7778208_4010306,4380_1278 -4380_78059,287,4380_79382,Parkmore Ind.,102693-00012-1,1,4380_7778208_4010306,4380_1278 -4380_78059,292,4380_79383,Parkmore Ind.,102700-00016-1,1,4380_7778208_4010306,4380_1278 -4380_78059,290,4380_79384,Parkmore Ind.,102692-00015-1,1,4380_7778208_4010306,4380_1278 -4380_78059,294,4380_79385,Parkmore Ind.,102694-00018-1,1,4380_7778208_4010306,4380_1278 -4380_78059,295,4380_79386,Parkmore Ind.,102696-00019-1,1,4380_7778208_4010306,4380_1278 -4380_78059,293,4380_79387,Parkmore Ind.,102698-00017-1,1,4380_7778208_4010306,4380_1278 -4380_78059,296,4380_79388,Parkmore Ind.,102475-00021-1,1,4380_7778208_4010305,4380_1280 -4380_78059,297,4380_79395,Parkmore Ind.,102236-00008-1,1,4380_7778208_4010304,4380_1276 -4380_78059,285,4380_79396,Parkmore Ind.,101477-00009-1,1,4380_7778208_4010301,4380_1278 -4380_78059,288,4380_79398,Parkmore Ind.,101473-00011-1,1,4380_7778208_4010301,4380_1278 -4380_78059,286,4380_79399,Parkmore Ind.,101479-00010-1,1,4380_7778208_4010301,4380_1278 -4380_78113,295,4380_794,Dundalk,49901-00019-1,0,4380_7778208_1000905,4380_11 -4380_78059,291,4380_79400,Parkmore Ind.,101734-00013-1,1,4380_7778208_4010302,4380_1280 -4380_78059,289,4380_79401,Parkmore Ind.,101481-00014-1,1,4380_7778208_4010301,4380_1278 -4380_78059,287,4380_79402,Parkmore Ind.,101475-00012-1,1,4380_7778208_4010301,4380_1278 -4380_78059,292,4380_79403,Parkmore Ind.,101480-00016-1,1,4380_7778208_4010301,4380_1278 -4380_78059,290,4380_79404,Parkmore Ind.,101478-00015-1,1,4380_7778208_4010301,4380_1278 -4380_78059,294,4380_79405,Parkmore Ind.,101476-00018-1,1,4380_7778208_4010301,4380_1278 -4380_78059,295,4380_79406,Parkmore Ind.,101482-00019-1,1,4380_7778208_4010301,4380_1278 -4380_78059,293,4380_79407,Parkmore Ind.,101474-00017-1,1,4380_7778208_4010301,4380_1278 -4380_78059,296,4380_79408,Parkmore Ind.,101735-00021-1,1,4380_7778208_4010302,4380_1280 -4380_78059,297,4380_79415,Parkmore Ind.,101485-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_79416,Parkmore Ind.,101987-00009-1,1,4380_7778208_4010303,4380_1278 -4380_78059,288,4380_79418,Parkmore Ind.,101991-00011-1,1,4380_7778208_4010303,4380_1278 -4380_78059,286,4380_79419,Parkmore Ind.,101989-00010-1,1,4380_7778208_4010303,4380_1278 -4380_78059,291,4380_79420,Parkmore Ind.,102237-00013-1,1,4380_7778208_4010304,4380_1280 -4380_78059,289,4380_79421,Parkmore Ind.,101995-00014-1,1,4380_7778208_4010303,4380_1278 -4380_78059,287,4380_79422,Parkmore Ind.,101993-00012-1,1,4380_7778208_4010303,4380_1278 -4380_78059,292,4380_79423,Parkmore Ind.,101990-00016-1,1,4380_7778208_4010303,4380_1278 -4380_78059,290,4380_79424,Parkmore Ind.,101988-00015-1,1,4380_7778208_4010303,4380_1278 -4380_78059,294,4380_79425,Parkmore Ind.,101994-00018-1,1,4380_7778208_4010303,4380_1278 -4380_78059,295,4380_79426,Parkmore Ind.,101996-00019-1,1,4380_7778208_4010303,4380_1278 -4380_78059,293,4380_79427,Parkmore Ind.,101992-00017-1,1,4380_7778208_4010303,4380_1278 -4380_78059,296,4380_79428,Parkmore Ind.,102238-00021-1,1,4380_7778208_4010304,4380_1280 -4380_78059,297,4380_79435,Parkmore Ind.,101999-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_79436,Parkmore Ind.,102493-00009-1,1,4380_7778208_4010305,4380_1278 -4380_78059,288,4380_79438,Parkmore Ind.,102495-00011-1,1,4380_7778208_4010305,4380_1278 -4380_78059,286,4380_79439,Parkmore Ind.,102487-00010-1,1,4380_7778208_4010305,4380_1278 -4380_78114,285,4380_7944,Kells via Navan,5312-00009-1,0,4380_7778208_1090102,4380_123 -4380_78059,291,4380_79440,Parkmore Ind.,102703-00013-1,1,4380_7778208_4010306,4380_1280 -4380_78059,289,4380_79441,Parkmore Ind.,102489-00014-1,1,4380_7778208_4010305,4380_1278 -4380_78059,287,4380_79442,Parkmore Ind.,102491-00012-1,1,4380_7778208_4010305,4380_1278 -4380_78059,292,4380_79443,Parkmore Ind.,102488-00016-1,1,4380_7778208_4010305,4380_1278 -4380_78059,290,4380_79444,Parkmore Ind.,102494-00015-1,1,4380_7778208_4010305,4380_1278 -4380_78059,294,4380_79445,Parkmore Ind.,102492-00018-1,1,4380_7778208_4010305,4380_1278 -4380_78059,295,4380_79446,Parkmore Ind.,102490-00019-1,1,4380_7778208_4010305,4380_1278 -4380_78059,293,4380_79447,Parkmore Ind.,102496-00017-1,1,4380_7778208_4010305,4380_1278 -4380_78059,296,4380_79448,Parkmore Ind.,102704-00021-1,1,4380_7778208_4010306,4380_1280 -4380_78114,286,4380_7945,Kells via Navan,5322-00010-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_79455,Parkmore Ind.,102499-00008-1,1,4380_7778208_4010305,4380_1276 -4380_78059,285,4380_79456,Parkmore Ind.,101751-00009-1,1,4380_7778208_4010302,4380_1278 -4380_78059,288,4380_79458,Parkmore Ind.,101755-00011-1,1,4380_7778208_4010302,4380_1278 -4380_78059,286,4380_79459,Parkmore Ind.,101749-00010-1,1,4380_7778208_4010302,4380_1278 -4380_78114,297,4380_7946,Kells via Navan,5864-00008-1,0,4380_7778208_1090110,4380_125 -4380_78059,291,4380_79460,Parkmore Ind.,101486-00013-1,1,4380_7778208_4010301,4380_1280 -4380_78059,289,4380_79461,Parkmore Ind.,101753-00014-1,1,4380_7778208_4010302,4380_1278 -4380_78059,287,4380_79462,Parkmore Ind.,101747-00012-1,1,4380_7778208_4010302,4380_1278 -4380_78059,292,4380_79463,Parkmore Ind.,101750-00016-1,1,4380_7778208_4010302,4380_1278 -4380_78059,290,4380_79464,Parkmore Ind.,101752-00015-1,1,4380_7778208_4010302,4380_1278 -4380_78059,294,4380_79465,Parkmore Ind.,101748-00018-1,1,4380_7778208_4010302,4380_1278 -4380_78059,295,4380_79466,Parkmore Ind.,101754-00019-1,1,4380_7778208_4010302,4380_1278 -4380_78059,293,4380_79467,Parkmore Ind.,101756-00017-1,1,4380_7778208_4010302,4380_1278 -4380_78059,296,4380_79468,Parkmore Ind.,101487-00021-1,1,4380_7778208_4010301,4380_1280 -4380_78114,288,4380_7947,Kells via Navan,5332-00011-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_79475,Parkmore Ind.,101759-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_79476,Parkmore Ind.,102250-00009-1,1,4380_7778208_4010304,4380_1278 -4380_78059,288,4380_79478,Parkmore Ind.,102254-00011-1,1,4380_7778208_4010304,4380_1278 -4380_78059,286,4380_79479,Parkmore Ind.,102258-00010-1,1,4380_7778208_4010304,4380_1278 -4380_78114,287,4380_7948,Kells via Navan,5342-00012-1,0,4380_7778208_1090102,4380_123 -4380_78059,291,4380_79480,Parkmore Ind.,102000-00013-1,1,4380_7778208_4010303,4380_1280 -4380_78059,289,4380_79481,Parkmore Ind.,102256-00014-1,1,4380_7778208_4010304,4380_1278 -4380_78059,287,4380_79482,Parkmore Ind.,102252-00012-1,1,4380_7778208_4010304,4380_1278 -4380_78059,292,4380_79483,Parkmore Ind.,102259-00016-1,1,4380_7778208_4010304,4380_1278 -4380_78059,290,4380_79484,Parkmore Ind.,102251-00015-1,1,4380_7778208_4010304,4380_1278 -4380_78059,294,4380_79485,Parkmore Ind.,102253-00018-1,1,4380_7778208_4010304,4380_1278 -4380_78059,295,4380_79486,Parkmore Ind.,102257-00019-1,1,4380_7778208_4010304,4380_1278 -4380_78059,293,4380_79487,Parkmore Ind.,102255-00017-1,1,4380_7778208_4010304,4380_1278 -4380_78059,296,4380_79488,Parkmore Ind.,102001-00021-1,1,4380_7778208_4010303,4380_1280 -4380_78114,289,4380_7949,Kells via Navan,5302-00014-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_79495,Parkmore Ind.,102262-00008-1,1,4380_7778208_4010304,4380_1276 -4380_78059,285,4380_79496,Parkmore Ind.,102721-00009-1,1,4380_7778208_4010306,4380_1278 -4380_78059,288,4380_79498,Parkmore Ind.,102717-00011-1,1,4380_7778208_4010306,4380_1278 -4380_78059,286,4380_79499,Parkmore Ind.,102723-00010-1,1,4380_7778208_4010306,4380_1278 -4380_78113,296,4380_795,Dundalk,49911-00021-1,0,4380_7778208_1000905,4380_17 -4380_78114,290,4380_7950,Kells via Navan,54721-00015-1,0,4380_7778208_1090102,4380_123 -4380_78059,291,4380_79500,Parkmore Ind.,102500-00013-1,1,4380_7778208_4010305,4380_1280 -4380_78059,289,4380_79501,Parkmore Ind.,102715-00014-1,1,4380_7778208_4010306,4380_1278 -4380_78059,287,4380_79502,Parkmore Ind.,102719-00012-1,1,4380_7778208_4010306,4380_1278 -4380_78059,292,4380_79503,Parkmore Ind.,102724-00016-1,1,4380_7778208_4010306,4380_1278 -4380_78059,290,4380_79504,Parkmore Ind.,102722-00015-1,1,4380_7778208_4010306,4380_1278 -4380_78059,294,4380_79505,Parkmore Ind.,102720-00018-1,1,4380_7778208_4010306,4380_1278 -4380_78059,295,4380_79506,Parkmore Ind.,102716-00019-1,1,4380_7778208_4010306,4380_1278 -4380_78059,293,4380_79507,Parkmore Ind.,102718-00017-1,1,4380_7778208_4010306,4380_1278 -4380_78059,296,4380_79508,Parkmore Ind.,102501-00021-1,1,4380_7778208_4010305,4380_1280 -4380_78114,291,4380_7951,Kells via Navan,5949-00013-1,0,4380_7778208_1090112,4380_127 -4380_78059,297,4380_79515,Parkmore Ind.,101499-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_79516,Parkmore Ind.,101504-00009-1,1,4380_7778208_4010301,4380_1278 -4380_78059,288,4380_79518,Parkmore Ind.,101508-00011-1,1,4380_7778208_4010301,4380_1278 -4380_78059,286,4380_79519,Parkmore Ind.,101500-00010-1,1,4380_7778208_4010301,4380_1278 -4380_78114,292,4380_7952,Kells via Navan,54718-00016-1,0,4380_7778208_1090102,4380_123 -4380_78059,291,4380_79520,Parkmore Ind.,101760-00013-1,1,4380_7778208_4010302,4380_1280 -4380_78059,289,4380_79521,Parkmore Ind.,101506-00014-1,1,4380_7778208_4010301,4380_1278 -4380_78059,287,4380_79522,Parkmore Ind.,101502-00012-1,1,4380_7778208_4010301,4380_1278 -4380_78059,292,4380_79523,Parkmore Ind.,101501-00016-1,1,4380_7778208_4010301,4380_1278 -4380_78059,290,4380_79524,Parkmore Ind.,101505-00015-1,1,4380_7778208_4010301,4380_1278 -4380_78059,294,4380_79525,Parkmore Ind.,101503-00018-1,1,4380_7778208_4010301,4380_1278 -4380_78059,295,4380_79526,Parkmore Ind.,101507-00019-1,1,4380_7778208_4010301,4380_1278 -4380_78059,293,4380_79527,Parkmore Ind.,101509-00017-1,1,4380_7778208_4010301,4380_1278 -4380_78059,296,4380_79528,Parkmore Ind.,101761-00021-1,1,4380_7778208_4010302,4380_1280 -4380_78114,293,4380_7953,Kells via Navan,54717-00017-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_79535,Parkmore Ind.,102015-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_79536,Parkmore Ind.,102013-00009-1,1,4380_7778208_4010303,4380_1278 -4380_78059,288,4380_79538,Parkmore Ind.,102016-00011-1,1,4380_7778208_4010303,4380_1278 -4380_78059,286,4380_79539,Parkmore Ind.,102022-00010-1,1,4380_7778208_4010303,4380_1278 -4380_78114,294,4380_7954,Kells via Navan,54719-00018-1,0,4380_7778208_1090102,4380_123 -4380_78059,291,4380_79540,Parkmore Ind.,102263-00013-1,1,4380_7778208_4010304,4380_1280 -4380_78059,289,4380_79541,Parkmore Ind.,102020-00014-1,1,4380_7778208_4010303,4380_1278 -4380_78059,287,4380_79542,Parkmore Ind.,102018-00012-1,1,4380_7778208_4010303,4380_1278 -4380_78059,292,4380_79543,Parkmore Ind.,102023-00016-1,1,4380_7778208_4010303,4380_1278 -4380_78059,290,4380_79544,Parkmore Ind.,102014-00015-1,1,4380_7778208_4010303,4380_1278 -4380_78059,294,4380_79545,Parkmore Ind.,102019-00018-1,1,4380_7778208_4010303,4380_1278 -4380_78059,295,4380_79546,Parkmore Ind.,102021-00019-1,1,4380_7778208_4010303,4380_1278 -4380_78059,293,4380_79547,Parkmore Ind.,102017-00017-1,1,4380_7778208_4010303,4380_1278 -4380_78059,296,4380_79548,Parkmore Ind.,102264-00021-1,1,4380_7778208_4010304,4380_1280 -4380_78114,295,4380_7955,Kells via Navan,54720-00019-1,0,4380_7778208_1090102,4380_123 -4380_78059,297,4380_79555,Parkmore Ind.,102523-00008-1,1,4380_7778208_4010305,4380_1276 -4380_78059,285,4380_79556,Parkmore Ind.,102517-00009-1,1,4380_7778208_4010305,4380_1278 -4380_78059,288,4380_79558,Parkmore Ind.,102519-00011-1,1,4380_7778208_4010305,4380_1278 -4380_78059,286,4380_79559,Parkmore Ind.,102521-00010-1,1,4380_7778208_4010305,4380_1278 -4380_78114,296,4380_7956,Kells via Navan,55169-00021-1,0,4380_7778208_1090112,4380_127 -4380_78059,291,4380_79560,Parkmore Ind.,102727-00013-1,1,4380_7778208_4010306,4380_1280 -4380_78059,289,4380_79561,Parkmore Ind.,102515-00014-1,1,4380_7778208_4010305,4380_1278 -4380_78059,287,4380_79562,Parkmore Ind.,102513-00012-1,1,4380_7778208_4010305,4380_1278 -4380_78059,292,4380_79563,Parkmore Ind.,102522-00016-1,1,4380_7778208_4010305,4380_1278 -4380_78059,290,4380_79564,Parkmore Ind.,102518-00015-1,1,4380_7778208_4010305,4380_1278 -4380_78059,294,4380_79565,Parkmore Ind.,102514-00018-1,1,4380_7778208_4010305,4380_1278 -4380_78059,295,4380_79566,Parkmore Ind.,102516-00019-1,1,4380_7778208_4010305,4380_1278 -4380_78059,293,4380_79567,Parkmore Ind.,102520-00017-1,1,4380_7778208_4010305,4380_1278 -4380_78059,296,4380_79568,Parkmore Ind.,102728-00021-1,1,4380_7778208_4010306,4380_1280 -4380_78059,297,4380_79575,Parkmore Ind.,101773-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_79576,Parkmore Ind.,101774-00009-1,1,4380_7778208_4010302,4380_1278 -4380_78059,288,4380_79578,Parkmore Ind.,101780-00011-1,1,4380_7778208_4010302,4380_1278 -4380_78059,286,4380_79579,Parkmore Ind.,101782-00010-1,1,4380_7778208_4010302,4380_1278 -4380_78059,291,4380_79580,Parkmore Ind.,101513-00013-1,1,4380_7778208_4010301,4380_1280 -4380_78059,289,4380_79581,Parkmore Ind.,101776-00014-1,1,4380_7778208_4010302,4380_1278 -4380_78059,287,4380_79582,Parkmore Ind.,101778-00012-1,1,4380_7778208_4010302,4380_1278 -4380_78059,292,4380_79583,Parkmore Ind.,101783-00016-1,1,4380_7778208_4010302,4380_1278 -4380_78059,290,4380_79584,Parkmore Ind.,101775-00015-1,1,4380_7778208_4010302,4380_1278 -4380_78059,294,4380_79585,Parkmore Ind.,101779-00018-1,1,4380_7778208_4010302,4380_1278 -4380_78059,295,4380_79586,Parkmore Ind.,101777-00019-1,1,4380_7778208_4010302,4380_1278 -4380_78059,293,4380_79587,Parkmore Ind.,101781-00017-1,1,4380_7778208_4010302,4380_1278 -4380_78059,296,4380_79588,Parkmore Ind.,101514-00021-1,1,4380_7778208_4010301,4380_1280 -4380_78059,297,4380_79595,Parkmore Ind.,102282-00008-1,1,4380_7778208_4010304,4380_1276 -4380_78059,285,4380_79596,Parkmore Ind.,102276-00009-1,1,4380_7778208_4010304,4380_1278 -4380_78059,288,4380_79598,Parkmore Ind.,102278-00011-1,1,4380_7778208_4010304,4380_1278 -4380_78059,286,4380_79599,Parkmore Ind.,102280-00010-1,1,4380_7778208_4010304,4380_1278 -4380_78059,291,4380_79600,Parkmore Ind.,102027-00013-1,1,4380_7778208_4010303,4380_1280 -4380_78059,289,4380_79601,Parkmore Ind.,102285-00014-1,1,4380_7778208_4010304,4380_1278 -4380_78059,287,4380_79602,Parkmore Ind.,102283-00012-1,1,4380_7778208_4010304,4380_1278 -4380_78059,292,4380_79603,Parkmore Ind.,102281-00016-1,1,4380_7778208_4010304,4380_1278 -4380_78059,290,4380_79604,Parkmore Ind.,102277-00015-1,1,4380_7778208_4010304,4380_1278 -4380_78059,294,4380_79605,Parkmore Ind.,102284-00018-1,1,4380_7778208_4010304,4380_1278 -4380_78059,295,4380_79606,Parkmore Ind.,102286-00019-1,1,4380_7778208_4010304,4380_1278 -4380_78059,293,4380_79607,Parkmore Ind.,102279-00017-1,1,4380_7778208_4010304,4380_1278 -4380_78059,296,4380_79608,Parkmore Ind.,102028-00021-1,1,4380_7778208_4010303,4380_1280 -4380_78059,297,4380_79615,Parkmore Ind.,101525-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_79616,Parkmore Ind.,102741-00009-1,1,4380_7778208_4010306,4380_1278 -4380_78059,288,4380_79618,Parkmore Ind.,102739-00011-1,1,4380_7778208_4010306,4380_1278 -4380_78059,286,4380_79619,Parkmore Ind.,102747-00010-1,1,4380_7778208_4010306,4380_1278 -4380_78059,291,4380_79620,Parkmore Ind.,102527-00013-1,1,4380_7778208_4010305,4380_1280 -4380_78059,289,4380_79621,Parkmore Ind.,102743-00014-1,1,4380_7778208_4010306,4380_1278 -4380_78059,287,4380_79622,Parkmore Ind.,102745-00012-1,1,4380_7778208_4010306,4380_1278 -4380_78059,292,4380_79623,Parkmore Ind.,102748-00016-1,1,4380_7778208_4010306,4380_1278 -4380_78059,290,4380_79624,Parkmore Ind.,102742-00015-1,1,4380_7778208_4010306,4380_1278 -4380_78059,294,4380_79625,Parkmore Ind.,102746-00018-1,1,4380_7778208_4010306,4380_1278 -4380_78059,295,4380_79626,Parkmore Ind.,102744-00019-1,1,4380_7778208_4010306,4380_1278 -4380_78059,293,4380_79627,Parkmore Ind.,102740-00017-1,1,4380_7778208_4010306,4380_1278 -4380_78059,296,4380_79628,Parkmore Ind.,102528-00021-1,1,4380_7778208_4010305,4380_1280 -4380_78059,297,4380_79635,Parkmore Ind.,102039-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_79636,Parkmore Ind.,101534-00009-1,1,4380_7778208_4010301,4380_1278 -4380_78059,288,4380_79638,Parkmore Ind.,101530-00011-1,1,4380_7778208_4010301,4380_1278 -4380_78059,286,4380_79639,Parkmore Ind.,101526-00010-1,1,4380_7778208_4010301,4380_1278 -4380_78114,285,4380_7964,Kells via Navan,5384-00009-1,0,4380_7778208_1090103,4380_123 -4380_78059,291,4380_79640,Parkmore Ind.,101787-00013-1,1,4380_7778208_4010302,4380_1280 -4380_78059,289,4380_79641,Parkmore Ind.,101532-00014-1,1,4380_7778208_4010301,4380_1278 -4380_78059,287,4380_79642,Parkmore Ind.,101528-00012-1,1,4380_7778208_4010301,4380_1278 -4380_78059,292,4380_79643,Parkmore Ind.,101527-00016-1,1,4380_7778208_4010301,4380_1278 -4380_78059,290,4380_79644,Parkmore Ind.,101535-00015-1,1,4380_7778208_4010301,4380_1278 -4380_78059,294,4380_79645,Parkmore Ind.,101529-00018-1,1,4380_7778208_4010301,4380_1278 -4380_78059,295,4380_79646,Parkmore Ind.,101533-00019-1,1,4380_7778208_4010301,4380_1278 -4380_78059,293,4380_79647,Parkmore Ind.,101531-00017-1,1,4380_7778208_4010301,4380_1278 -4380_78059,296,4380_79648,Parkmore Ind.,101788-00021-1,1,4380_7778208_4010302,4380_1280 -4380_78114,286,4380_7965,Kells via Navan,5394-00010-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_79655,Parkmore Ind.,102539-00008-1,1,4380_7778208_4010305,4380_1276 -4380_78059,285,4380_79656,Parkmore Ind.,102044-00009-1,1,4380_7778208_4010303,4380_1278 -4380_78059,288,4380_79658,Parkmore Ind.,102048-00011-1,1,4380_7778208_4010303,4380_1278 -4380_78059,286,4380_79659,Parkmore Ind.,102040-00010-1,1,4380_7778208_4010303,4380_1278 -4380_78114,297,4380_7966,Kells via Navan,5894-00008-1,0,4380_7778208_1090111,4380_125 -4380_78059,291,4380_79660,Parkmore Ind.,102290-00013-1,1,4380_7778208_4010304,4380_1280 -4380_78059,289,4380_79661,Parkmore Ind.,102042-00014-1,1,4380_7778208_4010303,4380_1278 -4380_78059,287,4380_79662,Parkmore Ind.,102046-00012-1,1,4380_7778208_4010303,4380_1278 -4380_78059,292,4380_79663,Parkmore Ind.,102041-00016-1,1,4380_7778208_4010303,4380_1278 -4380_78059,290,4380_79664,Parkmore Ind.,102045-00015-1,1,4380_7778208_4010303,4380_1278 -4380_78059,294,4380_79665,Parkmore Ind.,102047-00018-1,1,4380_7778208_4010303,4380_1278 -4380_78059,295,4380_79666,Parkmore Ind.,102043-00019-1,1,4380_7778208_4010303,4380_1278 -4380_78059,293,4380_79667,Parkmore Ind.,102049-00017-1,1,4380_7778208_4010303,4380_1278 -4380_78059,296,4380_79668,Parkmore Ind.,102291-00021-1,1,4380_7778208_4010304,4380_1280 -4380_78114,288,4380_7967,Kells via Navan,5404-00011-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_79675,Parkmore Ind.,101799-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_79676,Parkmore Ind.,102542-00009-1,1,4380_7778208_4010305,4380_1278 -4380_78059,288,4380_79678,Parkmore Ind.,102540-00011-1,1,4380_7778208_4010305,4380_1278 -4380_78059,286,4380_79679,Parkmore Ind.,102546-00010-1,1,4380_7778208_4010305,4380_1278 -4380_78114,287,4380_7968,Kells via Navan,5414-00012-1,0,4380_7778208_1090103,4380_123 -4380_78059,291,4380_79680,Parkmore Ind.,102751-00013-1,1,4380_7778208_4010306,4380_1280 -4380_78059,289,4380_79681,Parkmore Ind.,102544-00014-1,1,4380_7778208_4010305,4380_1278 -4380_78059,287,4380_79682,Parkmore Ind.,102548-00012-1,1,4380_7778208_4010305,4380_1278 -4380_78059,292,4380_79683,Parkmore Ind.,102547-00016-1,1,4380_7778208_4010305,4380_1278 -4380_78059,290,4380_79684,Parkmore Ind.,102543-00015-1,1,4380_7778208_4010305,4380_1278 -4380_78059,294,4380_79685,Parkmore Ind.,102549-00018-1,1,4380_7778208_4010305,4380_1278 -4380_78059,295,4380_79686,Parkmore Ind.,102545-00019-1,1,4380_7778208_4010305,4380_1278 -4380_78059,293,4380_79687,Parkmore Ind.,102541-00017-1,1,4380_7778208_4010305,4380_1278 -4380_78059,296,4380_79688,Parkmore Ind.,102752-00021-1,1,4380_7778208_4010306,4380_1280 -4380_78114,289,4380_7969,Kells via Navan,5374-00014-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_79695,Parkmore Ind.,102302-00008-1,1,4380_7778208_4010304,4380_1276 -4380_78059,285,4380_79696,Parkmore Ind.,101808-00009-1,1,4380_7778208_4010302,4380_1278 -4380_78059,288,4380_79698,Parkmore Ind.,101806-00011-1,1,4380_7778208_4010302,4380_1278 -4380_78059,286,4380_79699,Parkmore Ind.,101802-00010-1,1,4380_7778208_4010302,4380_1278 -4380_78113,297,4380_797,Dundalk,49912-00008-1,0,4380_7778208_1000905,4380_11 -4380_78114,290,4380_7970,Kells via Navan,54771-00015-1,0,4380_7778208_1090103,4380_123 -4380_78059,291,4380_79700,Parkmore Ind.,101539-00013-1,1,4380_7778208_4010301,4380_1280 -4380_78059,289,4380_79701,Parkmore Ind.,101804-00014-1,1,4380_7778208_4010302,4380_1278 -4380_78059,287,4380_79702,Parkmore Ind.,101800-00012-1,1,4380_7778208_4010302,4380_1278 -4380_78059,292,4380_79703,Parkmore Ind.,101803-00016-1,1,4380_7778208_4010302,4380_1278 -4380_78059,290,4380_79704,Parkmore Ind.,101809-00015-1,1,4380_7778208_4010302,4380_1278 -4380_78059,294,4380_79705,Parkmore Ind.,101801-00018-1,1,4380_7778208_4010302,4380_1278 -4380_78059,295,4380_79706,Parkmore Ind.,101805-00019-1,1,4380_7778208_4010302,4380_1278 -4380_78059,293,4380_79707,Parkmore Ind.,101807-00017-1,1,4380_7778208_4010302,4380_1278 -4380_78059,296,4380_79708,Parkmore Ind.,101540-00021-1,1,4380_7778208_4010301,4380_1280 -4380_78114,291,4380_7971,Kells via Navan,5979-00013-1,0,4380_7778208_1090113,4380_127 -4380_78059,297,4380_79715,Parkmore Ind.,101551-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_79716,Parkmore Ind.,102309-00009-1,1,4380_7778208_4010304,4380_1278 -4380_78059,288,4380_79718,Parkmore Ind.,102307-00011-1,1,4380_7778208_4010304,4380_1278 -4380_78059,286,4380_79719,Parkmore Ind.,102311-00010-1,1,4380_7778208_4010304,4380_1278 -4380_78114,292,4380_7972,Kells via Navan,54770-00016-1,0,4380_7778208_1090103,4380_123 -4380_78059,291,4380_79720,Parkmore Ind.,102053-00013-1,1,4380_7778208_4010303,4380_1280 -4380_78059,289,4380_79721,Parkmore Ind.,102303-00014-1,1,4380_7778208_4010304,4380_1278 -4380_78059,287,4380_79722,Parkmore Ind.,102305-00012-1,1,4380_7778208_4010304,4380_1278 -4380_78059,292,4380_79723,Parkmore Ind.,102312-00016-1,1,4380_7778208_4010304,4380_1278 -4380_78059,290,4380_79724,Parkmore Ind.,102310-00015-1,1,4380_7778208_4010304,4380_1278 -4380_78059,294,4380_79725,Parkmore Ind.,102306-00018-1,1,4380_7778208_4010304,4380_1278 -4380_78059,295,4380_79726,Parkmore Ind.,102304-00019-1,1,4380_7778208_4010304,4380_1278 -4380_78059,293,4380_79727,Parkmore Ind.,102308-00017-1,1,4380_7778208_4010304,4380_1278 -4380_78059,296,4380_79728,Parkmore Ind.,102054-00021-1,1,4380_7778208_4010303,4380_1280 -4380_78114,293,4380_7973,Kells via Navan,54773-00017-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_79735,Parkmore Ind.,102065-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_79736,Parkmore Ind.,102767-00009-1,1,4380_7778208_4010306,4380_1278 -4380_78059,288,4380_79738,Parkmore Ind.,102763-00011-1,1,4380_7778208_4010306,4380_1278 -4380_78059,286,4380_79739,Parkmore Ind.,102769-00010-1,1,4380_7778208_4010306,4380_1278 -4380_78114,294,4380_7974,Kells via Navan,54772-00018-1,0,4380_7778208_1090103,4380_123 -4380_78059,291,4380_79740,Parkmore Ind.,102553-00013-1,1,4380_7778208_4010305,4380_1280 -4380_78059,289,4380_79741,Parkmore Ind.,102771-00014-1,1,4380_7778208_4010306,4380_1278 -4380_78059,287,4380_79742,Parkmore Ind.,102765-00012-1,1,4380_7778208_4010306,4380_1278 -4380_78059,292,4380_79743,Parkmore Ind.,102770-00016-1,1,4380_7778208_4010306,4380_1278 -4380_78059,290,4380_79744,Parkmore Ind.,102768-00015-1,1,4380_7778208_4010306,4380_1278 -4380_78059,294,4380_79745,Parkmore Ind.,102766-00018-1,1,4380_7778208_4010306,4380_1278 -4380_78059,295,4380_79746,Parkmore Ind.,102772-00019-1,1,4380_7778208_4010306,4380_1278 -4380_78059,293,4380_79747,Parkmore Ind.,102764-00017-1,1,4380_7778208_4010306,4380_1278 -4380_78059,296,4380_79748,Parkmore Ind.,102554-00021-1,1,4380_7778208_4010305,4380_1280 -4380_78114,295,4380_7975,Kells via Navan,54774-00019-1,0,4380_7778208_1090103,4380_123 -4380_78059,297,4380_79755,Parkmore Ind.,102565-00008-1,1,4380_7778208_4010305,4380_1276 -4380_78059,285,4380_79756,Parkmore Ind.,101558-00009-1,1,4380_7778208_4010301,4380_1278 -4380_78059,288,4380_79758,Parkmore Ind.,101560-00011-1,1,4380_7778208_4010301,4380_1278 -4380_78059,286,4380_79759,Parkmore Ind.,101552-00010-1,1,4380_7778208_4010301,4380_1278 -4380_78114,296,4380_7976,Kells via Navan,55199-00021-1,0,4380_7778208_1090113,4380_127 -4380_78059,291,4380_79760,Parkmore Ind.,101813-00013-1,1,4380_7778208_4010302,4380_1280 -4380_78059,289,4380_79761,Parkmore Ind.,101556-00014-1,1,4380_7778208_4010301,4380_1278 -4380_78059,287,4380_79762,Parkmore Ind.,101554-00012-1,1,4380_7778208_4010301,4380_1278 -4380_78059,292,4380_79763,Parkmore Ind.,101553-00016-1,1,4380_7778208_4010301,4380_1278 -4380_78059,290,4380_79764,Parkmore Ind.,101559-00015-1,1,4380_7778208_4010301,4380_1278 -4380_78059,294,4380_79765,Parkmore Ind.,101555-00018-1,1,4380_7778208_4010301,4380_1278 -4380_78059,295,4380_79766,Parkmore Ind.,101557-00019-1,1,4380_7778208_4010301,4380_1278 -4380_78059,293,4380_79767,Parkmore Ind.,101561-00017-1,1,4380_7778208_4010301,4380_1278 -4380_78059,296,4380_79768,Parkmore Ind.,101814-00021-1,1,4380_7778208_4010302,4380_1280 -4380_78059,297,4380_79775,Parkmore Ind.,101825-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_79776,Parkmore Ind.,102068-00009-1,1,4380_7778208_4010303,4380_1278 -4380_78059,288,4380_79778,Parkmore Ind.,102070-00011-1,1,4380_7778208_4010303,4380_1278 -4380_78059,286,4380_79779,Parkmore Ind.,102066-00010-1,1,4380_7778208_4010303,4380_1278 -4380_78059,291,4380_79780,Parkmore Ind.,102316-00013-1,1,4380_7778208_4010304,4380_1280 -4380_78059,289,4380_79781,Parkmore Ind.,102072-00014-1,1,4380_7778208_4010303,4380_1278 -4380_78059,287,4380_79782,Parkmore Ind.,102074-00012-1,1,4380_7778208_4010303,4380_1278 -4380_78059,292,4380_79783,Parkmore Ind.,102067-00016-1,1,4380_7778208_4010303,4380_1278 -4380_78059,290,4380_79784,Parkmore Ind.,102069-00015-1,1,4380_7778208_4010303,4380_1278 -4380_78059,294,4380_79785,Parkmore Ind.,102075-00018-1,1,4380_7778208_4010303,4380_1278 -4380_78059,295,4380_79786,Parkmore Ind.,102073-00019-1,1,4380_7778208_4010303,4380_1278 -4380_78059,293,4380_79787,Parkmore Ind.,102071-00017-1,1,4380_7778208_4010303,4380_1278 -4380_78059,296,4380_79788,Parkmore Ind.,102317-00021-1,1,4380_7778208_4010304,4380_1280 -4380_78059,297,4380_79795,Parkmore Ind.,102328-00008-1,1,4380_7778208_4010304,4380_1276 -4380_78059,285,4380_79796,Parkmore Ind.,102566-00009-1,1,4380_7778208_4010305,4380_1278 -4380_78059,288,4380_79798,Parkmore Ind.,102574-00011-1,1,4380_7778208_4010305,4380_1278 -4380_78059,286,4380_79799,Parkmore Ind.,102570-00010-1,1,4380_7778208_4010305,4380_1278 -4380_78059,291,4380_79800,Parkmore Ind.,102775-00013-1,1,4380_7778208_4010306,4380_1280 -4380_78059,289,4380_79801,Parkmore Ind.,102568-00014-1,1,4380_7778208_4010305,4380_1278 -4380_78059,287,4380_79802,Parkmore Ind.,102572-00012-1,1,4380_7778208_4010305,4380_1278 -4380_78059,292,4380_79803,Parkmore Ind.,102571-00016-1,1,4380_7778208_4010305,4380_1278 -4380_78059,290,4380_79804,Parkmore Ind.,102567-00015-1,1,4380_7778208_4010305,4380_1278 -4380_78059,294,4380_79805,Parkmore Ind.,102573-00018-1,1,4380_7778208_4010305,4380_1278 -4380_78059,295,4380_79806,Parkmore Ind.,102569-00019-1,1,4380_7778208_4010305,4380_1278 -4380_78059,293,4380_79807,Parkmore Ind.,102575-00017-1,1,4380_7778208_4010305,4380_1278 -4380_78059,296,4380_79808,Parkmore Ind.,102776-00021-1,1,4380_7778208_4010306,4380_1280 -4380_78059,297,4380_79815,Parkmore Ind.,101575-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_79816,Parkmore Ind.,101836-00009-1,1,4380_7778208_4010302,4380_1278 -4380_78059,288,4380_79818,Parkmore Ind.,101830-00011-1,1,4380_7778208_4010302,4380_1278 -4380_78059,286,4380_79819,Parkmore Ind.,101834-00010-1,1,4380_7778208_4010302,4380_1278 -4380_78059,291,4380_79820,Parkmore Ind.,101576-00013-1,1,4380_7778208_4010301,4380_1280 -4380_78059,289,4380_79821,Parkmore Ind.,101828-00014-1,1,4380_7778208_4010302,4380_1278 -4380_78059,287,4380_79822,Parkmore Ind.,101832-00012-1,1,4380_7778208_4010302,4380_1278 -4380_78059,292,4380_79823,Parkmore Ind.,101835-00016-1,1,4380_7778208_4010302,4380_1278 -4380_78059,290,4380_79824,Parkmore Ind.,101837-00015-1,1,4380_7778208_4010302,4380_1278 -4380_78059,294,4380_79825,Parkmore Ind.,101833-00018-1,1,4380_7778208_4010302,4380_1278 -4380_78059,295,4380_79826,Parkmore Ind.,101829-00019-1,1,4380_7778208_4010302,4380_1278 -4380_78059,293,4380_79827,Parkmore Ind.,101831-00017-1,1,4380_7778208_4010302,4380_1278 -4380_78059,296,4380_79828,Parkmore Ind.,101577-00021-1,1,4380_7778208_4010301,4380_1280 -4380_78059,297,4380_79835,Parkmore Ind.,102091-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_79836,Parkmore Ind.,102337-00009-1,1,4380_7778208_4010304,4380_1278 -4380_78059,288,4380_79838,Parkmore Ind.,102339-00011-1,1,4380_7778208_4010304,4380_1278 -4380_78059,286,4380_79839,Parkmore Ind.,102335-00010-1,1,4380_7778208_4010304,4380_1278 -4380_78114,285,4380_7984,Kells via Navan,5459-00009-1,0,4380_7778208_1090104,4380_123 -4380_78059,291,4380_79840,Parkmore Ind.,102089-00013-1,1,4380_7778208_4010303,4380_1280 -4380_78059,289,4380_79841,Parkmore Ind.,102331-00014-1,1,4380_7778208_4010304,4380_1278 -4380_78059,287,4380_79842,Parkmore Ind.,102333-00012-1,1,4380_7778208_4010304,4380_1278 -4380_78059,292,4380_79843,Parkmore Ind.,102336-00016-1,1,4380_7778208_4010304,4380_1278 -4380_78059,290,4380_79844,Parkmore Ind.,102338-00015-1,1,4380_7778208_4010304,4380_1278 -4380_78059,294,4380_79845,Parkmore Ind.,102334-00018-1,1,4380_7778208_4010304,4380_1278 -4380_78059,295,4380_79846,Parkmore Ind.,102332-00019-1,1,4380_7778208_4010304,4380_1278 -4380_78059,293,4380_79847,Parkmore Ind.,102340-00017-1,1,4380_7778208_4010304,4380_1278 -4380_78059,296,4380_79848,Parkmore Ind.,102090-00021-1,1,4380_7778208_4010303,4380_1280 -4380_78114,286,4380_7985,Kells via Navan,5469-00010-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_79855,Parkmore Ind.,102587-00008-1,1,4380_7778208_4010305,4380_1276 -4380_78059,285,4380_79856,Parkmore Ind.,101582-00009-1,1,4380_7778208_4010301,4380_1278 -4380_78059,288,4380_79858,Parkmore Ind.,101584-00011-1,1,4380_7778208_4010301,4380_1278 -4380_78059,286,4380_79859,Parkmore Ind.,101578-00010-1,1,4380_7778208_4010301,4380_1278 -4380_78114,297,4380_7986,Kells via Navan,5959-00008-1,0,4380_7778208_1090112,4380_125 -4380_78059,291,4380_79860,Parkmore Ind.,101839-00013-1,1,4380_7778208_4010302,4380_1280 -4380_78059,289,4380_79861,Parkmore Ind.,101586-00014-1,1,4380_7778208_4010301,4380_1278 -4380_78059,287,4380_79862,Parkmore Ind.,101580-00012-1,1,4380_7778208_4010301,4380_1278 -4380_78059,292,4380_79863,Parkmore Ind.,101579-00016-1,1,4380_7778208_4010301,4380_1278 -4380_78059,290,4380_79864,Parkmore Ind.,101583-00015-1,1,4380_7778208_4010301,4380_1278 -4380_78059,294,4380_79865,Parkmore Ind.,101581-00018-1,1,4380_7778208_4010301,4380_1278 -4380_78059,295,4380_79866,Parkmore Ind.,101587-00019-1,1,4380_7778208_4010301,4380_1278 -4380_78059,293,4380_79867,Parkmore Ind.,101585-00017-1,1,4380_7778208_4010301,4380_1278 -4380_78059,296,4380_79868,Parkmore Ind.,101840-00021-1,1,4380_7778208_4010302,4380_1280 -4380_78114,288,4380_7987,Kells via Navan,5479-00011-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_79875,Parkmore Ind.,101851-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_79876,Parkmore Ind.,102100-00009-1,1,4380_7778208_4010303,4380_1278 -4380_78059,288,4380_79878,Parkmore Ind.,102092-00011-1,1,4380_7778208_4010303,4380_1278 -4380_78059,286,4380_79879,Parkmore Ind.,102096-00010-1,1,4380_7778208_4010303,4380_1278 -4380_78114,287,4380_7988,Kells via Navan,5489-00012-1,0,4380_7778208_1090104,4380_123 -4380_78059,291,4380_79880,Parkmore Ind.,102342-00013-1,1,4380_7778208_4010304,4380_1280 -4380_78059,289,4380_79881,Parkmore Ind.,102098-00014-1,1,4380_7778208_4010303,4380_1278 -4380_78059,287,4380_79882,Parkmore Ind.,102094-00012-1,1,4380_7778208_4010303,4380_1278 -4380_78059,292,4380_79883,Parkmore Ind.,102097-00016-1,1,4380_7778208_4010303,4380_1278 -4380_78059,290,4380_79884,Parkmore Ind.,102101-00015-1,1,4380_7778208_4010303,4380_1278 -4380_78059,294,4380_79885,Parkmore Ind.,102095-00018-1,1,4380_7778208_4010303,4380_1278 -4380_78059,295,4380_79886,Parkmore Ind.,102099-00019-1,1,4380_7778208_4010303,4380_1278 -4380_78059,293,4380_79887,Parkmore Ind.,102093-00017-1,1,4380_7778208_4010303,4380_1278 -4380_78059,296,4380_79888,Parkmore Ind.,102343-00021-1,1,4380_7778208_4010304,4380_1280 -4380_78114,289,4380_7989,Kells via Navan,5449-00014-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_79895,Parkmore Ind.,102354-00008-1,1,4380_7778208_4010304,4380_1276 -4380_78059,285,4380_79896,Parkmore Ind.,102590-00009-1,1,4380_7778208_4010305,4380_1278 -4380_78059,288,4380_79898,Parkmore Ind.,102596-00011-1,1,4380_7778208_4010305,4380_1278 -4380_78059,286,4380_79899,Parkmore Ind.,102592-00010-1,1,4380_7778208_4010305,4380_1278 -4380_78114,290,4380_7990,Kells via Navan,54829-00015-1,0,4380_7778208_1090104,4380_123 -4380_78059,291,4380_79900,Parkmore Ind.,102779-00013-1,1,4380_7778208_4010306,4380_1280 -4380_78059,289,4380_79901,Parkmore Ind.,102594-00014-1,1,4380_7778208_4010305,4380_1278 -4380_78059,287,4380_79902,Parkmore Ind.,102588-00012-1,1,4380_7778208_4010305,4380_1278 -4380_78059,292,4380_79903,Parkmore Ind.,102593-00016-1,1,4380_7778208_4010305,4380_1278 -4380_78059,290,4380_79904,Parkmore Ind.,102591-00015-1,1,4380_7778208_4010305,4380_1278 -4380_78059,294,4380_79905,Parkmore Ind.,102589-00018-1,1,4380_7778208_4010305,4380_1278 -4380_78059,295,4380_79906,Parkmore Ind.,102595-00019-1,1,4380_7778208_4010305,4380_1278 -4380_78059,293,4380_79907,Parkmore Ind.,102597-00017-1,1,4380_7778208_4010305,4380_1278 -4380_78059,296,4380_79908,Parkmore Ind.,102780-00021-1,1,4380_7778208_4010306,4380_1280 -4380_78114,291,4380_7991,Kells via Navan,6012-00013-1,0,4380_7778208_1090114,4380_127 -4380_78059,297,4380_79915,Parkmore Ind.,101601-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_79916,Parkmore Ind.,101860-00009-1,1,4380_7778208_4010302,4380_1278 -4380_78059,288,4380_79918,Parkmore Ind.,101854-00011-1,1,4380_7778208_4010302,4380_1278 -4380_78059,286,4380_79919,Parkmore Ind.,101856-00010-1,1,4380_7778208_4010302,4380_1278 -4380_78114,292,4380_7992,Kells via Navan,54826-00016-1,0,4380_7778208_1090104,4380_123 -4380_78059,291,4380_79920,Parkmore Ind.,101602-00013-1,1,4380_7778208_4010301,4380_1280 -4380_78059,289,4380_79921,Parkmore Ind.,101858-00014-1,1,4380_7778208_4010302,4380_1278 -4380_78059,287,4380_79922,Parkmore Ind.,101862-00012-1,1,4380_7778208_4010302,4380_1278 -4380_78059,292,4380_79923,Parkmore Ind.,101857-00016-1,1,4380_7778208_4010302,4380_1278 -4380_78059,290,4380_79924,Parkmore Ind.,101861-00015-1,1,4380_7778208_4010302,4380_1278 -4380_78059,294,4380_79925,Parkmore Ind.,101863-00018-1,1,4380_7778208_4010302,4380_1278 -4380_78059,295,4380_79926,Parkmore Ind.,101859-00019-1,1,4380_7778208_4010302,4380_1278 -4380_78059,293,4380_79927,Parkmore Ind.,101855-00017-1,1,4380_7778208_4010302,4380_1278 -4380_78059,296,4380_79928,Parkmore Ind.,101603-00021-1,1,4380_7778208_4010301,4380_1280 -4380_78114,293,4380_7993,Kells via Navan,54828-00017-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_79935,Parkmore Ind.,102115-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_79936,Parkmore Ind.,102357-00009-1,1,4380_7778208_4010304,4380_1278 -4380_78059,288,4380_79938,Parkmore Ind.,102363-00011-1,1,4380_7778208_4010304,4380_1278 -4380_78059,286,4380_79939,Parkmore Ind.,102361-00010-1,1,4380_7778208_4010304,4380_1278 -4380_78114,294,4380_7994,Kells via Navan,54827-00018-1,0,4380_7778208_1090104,4380_123 -4380_78059,291,4380_79940,Parkmore Ind.,102116-00013-1,1,4380_7778208_4010303,4380_1280 -4380_78059,289,4380_79941,Parkmore Ind.,102365-00014-1,1,4380_7778208_4010304,4380_1278 -4380_78059,287,4380_79942,Parkmore Ind.,102359-00012-1,1,4380_7778208_4010304,4380_1278 -4380_78059,292,4380_79943,Parkmore Ind.,102362-00016-1,1,4380_7778208_4010304,4380_1278 -4380_78059,290,4380_79944,Parkmore Ind.,102358-00015-1,1,4380_7778208_4010304,4380_1278 -4380_78059,294,4380_79945,Parkmore Ind.,102360-00018-1,1,4380_7778208_4010304,4380_1278 -4380_78059,295,4380_79946,Parkmore Ind.,102366-00019-1,1,4380_7778208_4010304,4380_1278 -4380_78059,293,4380_79947,Parkmore Ind.,102364-00017-1,1,4380_7778208_4010304,4380_1278 -4380_78059,296,4380_79948,Parkmore Ind.,102117-00021-1,1,4380_7778208_4010303,4380_1280 -4380_78114,295,4380_7995,Kells via Navan,54830-00019-1,0,4380_7778208_1090104,4380_123 -4380_78059,297,4380_79955,Parkmore Ind.,102609-00008-1,1,4380_7778208_4010305,4380_1276 -4380_78059,285,4380_79956,Parkmore Ind.,101606-00009-1,1,4380_7778208_4010301,4380_1278 -4380_78059,288,4380_79958,Parkmore Ind.,101604-00011-1,1,4380_7778208_4010301,4380_1278 -4380_78059,286,4380_79959,Parkmore Ind.,101612-00010-1,1,4380_7778208_4010301,4380_1278 -4380_78114,296,4380_7996,Kells via Navan,55224-00021-1,0,4380_7778208_1090114,4380_127 -4380_78059,291,4380_79960,Parkmore Ind.,101865-00013-1,1,4380_7778208_4010302,4380_1280 -4380_78059,289,4380_79961,Parkmore Ind.,101608-00014-1,1,4380_7778208_4010301,4380_1278 -4380_78059,287,4380_79962,Parkmore Ind.,101610-00012-1,1,4380_7778208_4010301,4380_1278 -4380_78059,292,4380_79963,Parkmore Ind.,101613-00016-1,1,4380_7778208_4010301,4380_1278 -4380_78059,290,4380_79964,Parkmore Ind.,101607-00015-1,1,4380_7778208_4010301,4380_1278 -4380_78059,294,4380_79965,Parkmore Ind.,101611-00018-1,1,4380_7778208_4010301,4380_1278 -4380_78059,295,4380_79966,Parkmore Ind.,101609-00019-1,1,4380_7778208_4010301,4380_1278 -4380_78059,293,4380_79967,Parkmore Ind.,101605-00017-1,1,4380_7778208_4010301,4380_1278 -4380_78059,296,4380_79968,Parkmore Ind.,101866-00021-1,1,4380_7778208_4010302,4380_1280 -4380_78059,297,4380_79975,Parkmore Ind.,101877-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_79976,Parkmore Ind.,102120-00009-1,1,4380_7778208_4010303,4380_1278 -4380_78059,288,4380_79978,Parkmore Ind.,102122-00011-1,1,4380_7778208_4010303,4380_1278 -4380_78059,286,4380_79979,Parkmore Ind.,102126-00010-1,1,4380_7778208_4010303,4380_1278 -4380_78059,291,4380_79980,Parkmore Ind.,102368-00013-1,1,4380_7778208_4010304,4380_1280 -4380_78059,289,4380_79981,Parkmore Ind.,102124-00014-1,1,4380_7778208_4010303,4380_1278 -4380_78059,287,4380_79982,Parkmore Ind.,102118-00012-1,1,4380_7778208_4010303,4380_1278 -4380_78059,292,4380_79983,Parkmore Ind.,102127-00016-1,1,4380_7778208_4010303,4380_1278 -4380_78059,290,4380_79984,Parkmore Ind.,102121-00015-1,1,4380_7778208_4010303,4380_1278 -4380_78059,294,4380_79985,Parkmore Ind.,102119-00018-1,1,4380_7778208_4010303,4380_1278 -4380_78059,295,4380_79986,Parkmore Ind.,102125-00019-1,1,4380_7778208_4010303,4380_1278 -4380_78059,293,4380_79987,Parkmore Ind.,102123-00017-1,1,4380_7778208_4010303,4380_1278 -4380_78059,296,4380_79988,Parkmore Ind.,102369-00021-1,1,4380_7778208_4010304,4380_1280 -4380_78059,297,4380_79995,Parkmore Ind.,102380-00008-1,1,4380_7778208_4010304,4380_1276 -4380_78059,285,4380_79996,Parkmore Ind.,102610-00009-1,1,4380_7778208_4010305,4380_1278 -4380_78059,288,4380_79998,Parkmore Ind.,102618-00011-1,1,4380_7778208_4010305,4380_1278 -4380_78059,286,4380_79999,Parkmore Ind.,102614-00010-1,1,4380_7778208_4010305,4380_1278 -4380_77946,286,4380_8,Dundalk,50447-00010-1,0,4380_7778208_1000915,4380_1 -4380_77946,292,4380_80,Dundalk,50378-00016-1,0,4380_7778208_1000914,4380_1 -4380_78059,291,4380_80000,Parkmore Ind.,102783-00013-1,1,4380_7778208_4010306,4380_1280 -4380_78059,289,4380_80001,Parkmore Ind.,102616-00014-1,1,4380_7778208_4010305,4380_1278 -4380_78059,287,4380_80002,Parkmore Ind.,102612-00012-1,1,4380_7778208_4010305,4380_1278 -4380_78059,292,4380_80003,Parkmore Ind.,102615-00016-1,1,4380_7778208_4010305,4380_1278 -4380_78059,290,4380_80004,Parkmore Ind.,102611-00015-1,1,4380_7778208_4010305,4380_1278 -4380_78059,294,4380_80005,Parkmore Ind.,102613-00018-1,1,4380_7778208_4010305,4380_1278 -4380_78059,295,4380_80006,Parkmore Ind.,102617-00019-1,1,4380_7778208_4010305,4380_1278 -4380_78059,293,4380_80007,Parkmore Ind.,102619-00017-1,1,4380_7778208_4010305,4380_1278 -4380_78059,296,4380_80008,Parkmore Ind.,102784-00021-1,1,4380_7778208_4010306,4380_1280 -4380_78059,297,4380_80015,Parkmore Ind.,101627-00008-1,1,4380_7778208_4010301,4380_1276 -4380_78059,285,4380_80016,Parkmore Ind.,101882-00009-1,1,4380_7778208_4010302,4380_1278 -4380_78059,288,4380_80018,Parkmore Ind.,101888-00011-1,1,4380_7778208_4010302,4380_1278 -4380_78059,286,4380_80019,Parkmore Ind.,101886-00010-1,1,4380_7778208_4010302,4380_1278 -4380_78059,291,4380_80020,Parkmore Ind.,101628-00013-1,1,4380_7778208_4010301,4380_1280 -4380_78059,289,4380_80021,Parkmore Ind.,101884-00014-1,1,4380_7778208_4010302,4380_1278 -4380_78059,287,4380_80022,Parkmore Ind.,101880-00012-1,1,4380_7778208_4010302,4380_1278 -4380_78059,292,4380_80023,Parkmore Ind.,101887-00016-1,1,4380_7778208_4010302,4380_1278 -4380_78059,290,4380_80024,Parkmore Ind.,101883-00015-1,1,4380_7778208_4010302,4380_1278 -4380_78059,294,4380_80025,Parkmore Ind.,101881-00018-1,1,4380_7778208_4010302,4380_1278 -4380_78059,295,4380_80026,Parkmore Ind.,101885-00019-1,1,4380_7778208_4010302,4380_1278 -4380_78059,293,4380_80027,Parkmore Ind.,101889-00017-1,1,4380_7778208_4010302,4380_1278 -4380_78059,296,4380_80028,Parkmore Ind.,101629-00021-1,1,4380_7778208_4010301,4380_1280 -4380_78059,297,4380_80035,Parkmore Ind.,102143-00008-1,1,4380_7778208_4010303,4380_1276 -4380_78059,285,4380_80036,Parkmore Ind.,102385-00009-1,1,4380_7778208_4010304,4380_1278 -4380_78059,288,4380_80038,Parkmore Ind.,102389-00011-1,1,4380_7778208_4010304,4380_1278 -4380_78059,286,4380_80039,Parkmore Ind.,102387-00010-1,1,4380_7778208_4010304,4380_1278 -4380_78114,285,4380_8004,Kells via Navan,5533-00009-1,0,4380_7778208_1090105,4380_123 -4380_78059,291,4380_80040,Parkmore Ind.,102141-00013-1,1,4380_7778208_4010303,4380_1280 -4380_78059,289,4380_80041,Parkmore Ind.,102391-00014-1,1,4380_7778208_4010304,4380_1278 -4380_78059,287,4380_80042,Parkmore Ind.,102383-00012-1,1,4380_7778208_4010304,4380_1278 -4380_78059,292,4380_80043,Parkmore Ind.,102388-00016-1,1,4380_7778208_4010304,4380_1278 -4380_78059,290,4380_80044,Parkmore Ind.,102386-00015-1,1,4380_7778208_4010304,4380_1278 -4380_78059,294,4380_80045,Parkmore Ind.,102384-00018-1,1,4380_7778208_4010304,4380_1278 -4380_78059,295,4380_80046,Parkmore Ind.,102392-00019-1,1,4380_7778208_4010304,4380_1278 -4380_78059,293,4380_80047,Parkmore Ind.,102390-00017-1,1,4380_7778208_4010304,4380_1278 -4380_78059,296,4380_80048,Parkmore Ind.,102142-00021-1,1,4380_7778208_4010303,4380_1280 -4380_78114,286,4380_8005,Kells via Navan,5541-00010-1,0,4380_7778208_1090105,4380_123 -4380_78059,297,4380_80055,Parkmore Ind.,101891-00008-1,1,4380_7778208_4010302,4380_1276 -4380_78059,285,4380_80056,Parkmore Ind.,101636-00009-1,1,4380_7778208_4010301,4380_1278 -4380_78059,288,4380_80058,Parkmore Ind.,101630-00011-1,1,4380_7778208_4010301,4380_1278 -4380_78059,286,4380_80059,Parkmore Ind.,101634-00010-1,1,4380_7778208_4010301,4380_1278 -4380_78114,297,4380_8006,Kells via Navan,5989-00008-1,0,4380_7778208_1090113,4380_125 -4380_78059,291,4380_80060,Parkmore Ind.,101892-00013-1,1,4380_7778208_4010302,4380_1280 -4380_78059,289,4380_80061,Parkmore Ind.,101632-00014-1,1,4380_7778208_4010301,4380_1278 -4380_78059,287,4380_80062,Parkmore Ind.,101638-00012-1,1,4380_7778208_4010301,4380_1278 -4380_78059,292,4380_80063,Parkmore Ind.,101635-00016-1,1,4380_7778208_4010301,4380_1278 -4380_78059,290,4380_80064,Parkmore Ind.,101637-00015-1,1,4380_7778208_4010301,4380_1278 -4380_78059,294,4380_80065,Parkmore Ind.,101639-00018-1,1,4380_7778208_4010301,4380_1278 -4380_78059,295,4380_80066,Parkmore Ind.,101633-00019-1,1,4380_7778208_4010301,4380_1278 -4380_78059,293,4380_80067,Parkmore Ind.,101631-00017-1,1,4380_7778208_4010301,4380_1278 -4380_78059,296,4380_80068,Parkmore Ind.,101893-00021-1,1,4380_7778208_4010302,4380_1280 -4380_78114,288,4380_8007,Kells via Navan,5549-00011-1,0,4380_7778208_1090105,4380_123 -4380_78059,297,4380_80075,Eyre Square,102394-00008-1,1,4380_7778208_4010304,4380_1277 -4380_78059,285,4380_80076,Eyre Square,102152-00009-1,1,4380_7778208_4010303,4380_1279 -4380_78059,288,4380_80078,Eyre Square,102148-00011-1,1,4380_7778208_4010303,4380_1279 -4380_78059,286,4380_80079,Eyre Square,102146-00010-1,1,4380_7778208_4010303,4380_1279 -4380_78114,287,4380_8008,Kells via Navan,5557-00012-1,0,4380_7778208_1090105,4380_123 -4380_78059,291,4380_80080,Parkmore Ind.,102395-00013-1,1,4380_7778208_4010304,4380_1276 -4380_78059,289,4380_80081,Eyre Square,102144-00014-1,1,4380_7778208_4010303,4380_1279 -4380_78059,287,4380_80082,Eyre Square,102150-00012-1,1,4380_7778208_4010303,4380_1279 -4380_78059,292,4380_80083,Eyre Square,102147-00016-1,1,4380_7778208_4010303,4380_1279 -4380_78059,290,4380_80084,Eyre Square,102153-00015-1,1,4380_7778208_4010303,4380_1279 -4380_78059,294,4380_80085,Eyre Square,102151-00018-1,1,4380_7778208_4010303,4380_1279 -4380_78059,295,4380_80086,Eyre Square,102145-00019-1,1,4380_7778208_4010303,4380_1279 -4380_78059,293,4380_80087,Eyre Square,102149-00017-1,1,4380_7778208_4010303,4380_1279 -4380_78059,296,4380_80088,Parkmore Ind.,102396-00021-1,1,4380_7778208_4010304,4380_1276 -4380_78114,289,4380_8009,Kells via Navan,5525-00014-1,0,4380_7778208_1090105,4380_123 -4380_78059,297,4380_80095,Eyre Square,101643-00008-1,1,4380_7778208_4010301,4380_1277 -4380_78059,285,4380_80096,Eyre Square,102633-00009-1,1,4380_7778208_4010305,4380_1279 -4380_78059,288,4380_80098,Eyre Square,102635-00011-1,1,4380_7778208_4010305,4380_1279 -4380_78059,286,4380_80099,Eyre Square,102637-00010-1,1,4380_7778208_4010305,4380_1279 -4380_78114,290,4380_8010,Kells via Navan,54885-00015-1,0,4380_7778208_1090105,4380_123 -4380_78059,291,4380_80100,Eyre Square,102787-00013-1,1,4380_7778208_4010306,4380_1281 -4380_78059,289,4380_80101,Eyre Square,102631-00014-1,1,4380_7778208_4010305,4380_1279 -4380_78059,287,4380_80102,Eyre Square,102639-00012-1,1,4380_7778208_4010305,4380_1279 -4380_78059,292,4380_80103,Eyre Square,102638-00016-1,1,4380_7778208_4010305,4380_1279 -4380_78059,290,4380_80104,Eyre Square,102634-00015-1,1,4380_7778208_4010305,4380_1279 -4380_78059,294,4380_80105,Eyre Square,102640-00018-1,1,4380_7778208_4010305,4380_1279 -4380_78059,295,4380_80106,Eyre Square,102632-00019-1,1,4380_7778208_4010305,4380_1279 -4380_78059,293,4380_80107,Eyre Square,102636-00017-1,1,4380_7778208_4010305,4380_1279 -4380_78059,296,4380_80108,Eyre Square,102788-00021-1,1,4380_7778208_4010306,4380_1281 -4380_78114,291,4380_8011,Kells via Navan,6052-00013-1,0,4380_7778208_1090115,4380_127 -4380_78060,285,4380_80114,Merlin Park,102969-00009-1,0,4380_7778208_4020302,4380_1282 -4380_78060,288,4380_80115,Merlin Park,102973-00011-1,0,4380_7778208_4020302,4380_1282 -4380_78060,286,4380_80116,Merlin Park,102975-00010-1,0,4380_7778208_4020302,4380_1282 -4380_78060,289,4380_80117,Merlin Park,102971-00014-1,0,4380_7778208_4020302,4380_1282 -4380_78060,287,4380_80118,Merlin Park,102977-00012-1,0,4380_7778208_4020302,4380_1282 -4380_78060,292,4380_80119,Merlin Park,102976-00016-1,0,4380_7778208_4020302,4380_1282 -4380_78114,292,4380_8012,Kells via Navan,54888-00016-1,0,4380_7778208_1090105,4380_123 -4380_78060,290,4380_80120,Merlin Park,102970-00015-1,0,4380_7778208_4020302,4380_1282 -4380_78060,294,4380_80121,Merlin Park,102978-00018-1,0,4380_7778208_4020302,4380_1282 -4380_78060,295,4380_80122,Merlin Park,102972-00019-1,0,4380_7778208_4020302,4380_1282 -4380_78060,293,4380_80123,Merlin Park,102974-00017-1,0,4380_7778208_4020302,4380_1282 -4380_78060,285,4380_80129,Merlin Park,103155-00009-1,0,4380_7778208_4020303,4380_1282 -4380_78114,293,4380_8013,Kells via Navan,54884-00017-1,0,4380_7778208_1090105,4380_123 -4380_78060,288,4380_80131,Merlin Park,103149-00011-1,0,4380_7778208_4020303,4380_1282 -4380_78060,286,4380_80132,Merlin Park,103153-00010-1,0,4380_7778208_4020303,4380_1282 -4380_78060,291,4380_80133,Merlin Park,102979-00013-1,0,4380_7778208_4020302,4380_1283 -4380_78060,289,4380_80134,Merlin Park,103157-00014-1,0,4380_7778208_4020303,4380_1282 -4380_78060,287,4380_80135,Merlin Park,103151-00012-1,0,4380_7778208_4020303,4380_1282 -4380_78060,292,4380_80136,Merlin Park,103154-00016-1,0,4380_7778208_4020303,4380_1282 -4380_78060,290,4380_80137,Merlin Park,103156-00015-1,0,4380_7778208_4020303,4380_1282 -4380_78060,294,4380_80138,Merlin Park,103152-00018-1,0,4380_7778208_4020303,4380_1282 -4380_78060,295,4380_80139,Merlin Park,103158-00019-1,0,4380_7778208_4020303,4380_1282 -4380_78114,294,4380_8014,Kells via Navan,54886-00018-1,0,4380_7778208_1090105,4380_123 -4380_78060,293,4380_80140,Merlin Park,103150-00017-1,0,4380_7778208_4020303,4380_1282 -4380_78060,296,4380_80141,Merlin Park,102980-00021-1,0,4380_7778208_4020302,4380_1283 -4380_78060,285,4380_80147,Merlin Park,102809-00009-1,0,4380_7778208_4020301,4380_1282 -4380_78060,288,4380_80148,Merlin Park,102803-00011-1,0,4380_7778208_4020301,4380_1282 -4380_78060,286,4380_80149,Merlin Park,102805-00010-1,0,4380_7778208_4020301,4380_1282 -4380_78114,295,4380_8015,Kells via Navan,54887-00019-1,0,4380_7778208_1090105,4380_123 -4380_78060,289,4380_80150,Merlin Park,102807-00014-1,0,4380_7778208_4020301,4380_1282 -4380_78060,287,4380_80151,Merlin Park,102801-00012-1,0,4380_7778208_4020301,4380_1282 -4380_78060,292,4380_80152,Merlin Park,102806-00016-1,0,4380_7778208_4020301,4380_1282 -4380_78060,290,4380_80153,Merlin Park,102810-00015-1,0,4380_7778208_4020301,4380_1282 -4380_78060,294,4380_80154,Merlin Park,102802-00018-1,0,4380_7778208_4020301,4380_1282 -4380_78060,295,4380_80155,Merlin Park,102808-00019-1,0,4380_7778208_4020301,4380_1282 -4380_78060,293,4380_80156,Merlin Park,102804-00017-1,0,4380_7778208_4020301,4380_1282 -4380_78114,296,4380_8016,Kells via Navan,55254-00021-1,0,4380_7778208_1090115,4380_127 -4380_78060,297,4380_80163,Merlin Park,102991-00008-1,0,4380_7778208_4020302,4380_1282 -4380_78060,285,4380_80164,Merlin Park,103357-00009-1,0,4380_7778208_4020304,4380_1283 -4380_78060,288,4380_80166,Merlin Park,103359-00011-1,0,4380_7778208_4020304,4380_1283 -4380_78060,286,4380_80167,Merlin Park,103355-00010-1,0,4380_7778208_4020304,4380_1283 -4380_78060,291,4380_80168,Merlin Park,102812-00013-1,0,4380_7778208_4020301,4380_1284 -4380_78060,289,4380_80169,Merlin Park,103353-00014-1,0,4380_7778208_4020304,4380_1283 -4380_78060,287,4380_80170,Merlin Park,103351-00012-1,0,4380_7778208_4020304,4380_1283 -4380_78060,292,4380_80171,Merlin Park,103356-00016-1,0,4380_7778208_4020304,4380_1283 -4380_78060,290,4380_80172,Merlin Park,103358-00015-1,0,4380_7778208_4020304,4380_1283 -4380_78060,294,4380_80173,Merlin Park,103352-00018-1,0,4380_7778208_4020304,4380_1283 -4380_78060,295,4380_80174,Merlin Park,103354-00019-1,0,4380_7778208_4020304,4380_1283 -4380_78060,293,4380_80175,Merlin Park,103360-00017-1,0,4380_7778208_4020304,4380_1283 -4380_78060,296,4380_80176,Merlin Park,102813-00021-1,0,4380_7778208_4020301,4380_1284 -4380_78060,285,4380_80182,Merlin Park,103000-00009-1,0,4380_7778208_4020302,4380_1282 -4380_78060,288,4380_80184,Merlin Park,102996-00011-1,0,4380_7778208_4020302,4380_1282 -4380_78060,286,4380_80185,Merlin Park,102994-00010-1,0,4380_7778208_4020302,4380_1282 -4380_78060,291,4380_80186,Merlin Park,103361-00013-1,0,4380_7778208_4020304,4380_1283 -4380_78060,289,4380_80187,Merlin Park,102998-00014-1,0,4380_7778208_4020302,4380_1282 -4380_78060,287,4380_80188,Merlin Park,103002-00012-1,0,4380_7778208_4020302,4380_1282 -4380_78060,292,4380_80189,Merlin Park,102995-00016-1,0,4380_7778208_4020302,4380_1282 -4380_78060,290,4380_80190,Merlin Park,103001-00015-1,0,4380_7778208_4020302,4380_1282 -4380_78060,294,4380_80191,Merlin Park,103003-00018-1,0,4380_7778208_4020302,4380_1282 -4380_78060,295,4380_80192,Merlin Park,102999-00019-1,0,4380_7778208_4020302,4380_1282 -4380_78060,293,4380_80193,Merlin Park,102997-00017-1,0,4380_7778208_4020302,4380_1282 -4380_78060,296,4380_80194,Merlin Park,103362-00021-1,0,4380_7778208_4020304,4380_1283 -4380_78060,297,4380_80201,Merlin Park,102826-00008-1,0,4380_7778208_4020301,4380_1282 -4380_78060,285,4380_80202,Merlin Park,103171-00009-1,0,4380_7778208_4020303,4380_1283 -4380_78060,288,4380_80204,Merlin Park,103173-00011-1,0,4380_7778208_4020303,4380_1283 -4380_78060,286,4380_80205,Merlin Park,103179-00010-1,0,4380_7778208_4020303,4380_1283 -4380_78060,291,4380_80206,Merlin Park,103005-00013-1,0,4380_7778208_4020302,4380_1284 -4380_78060,289,4380_80207,Merlin Park,103175-00014-1,0,4380_7778208_4020303,4380_1283 -4380_78060,287,4380_80208,Merlin Park,103177-00012-1,0,4380_7778208_4020303,4380_1283 -4380_78060,292,4380_80209,Merlin Park,103180-00016-1,0,4380_7778208_4020303,4380_1283 -4380_78060,290,4380_80210,Merlin Park,103172-00015-1,0,4380_7778208_4020303,4380_1283 -4380_78060,294,4380_80211,Merlin Park,103178-00018-1,0,4380_7778208_4020303,4380_1283 -4380_78060,295,4380_80212,Merlin Park,103176-00019-1,0,4380_7778208_4020303,4380_1283 -4380_78060,293,4380_80213,Merlin Park,103174-00017-1,0,4380_7778208_4020303,4380_1283 -4380_78060,296,4380_80214,Merlin Park,103006-00021-1,0,4380_7778208_4020302,4380_1284 -4380_78060,285,4380_80220,Merlin Park,102827-00009-1,0,4380_7778208_4020301,4380_1282 -4380_78060,288,4380_80222,Merlin Park,102833-00011-1,0,4380_7778208_4020301,4380_1282 -4380_78060,286,4380_80223,Merlin Park,102835-00010-1,0,4380_7778208_4020301,4380_1282 -4380_78060,291,4380_80224,Merlin Park,103181-00013-1,0,4380_7778208_4020303,4380_1283 -4380_78060,289,4380_80225,Merlin Park,102831-00014-1,0,4380_7778208_4020301,4380_1282 -4380_78060,287,4380_80226,Merlin Park,102829-00012-1,0,4380_7778208_4020301,4380_1282 -4380_78060,292,4380_80227,Merlin Park,102836-00016-1,0,4380_7778208_4020301,4380_1282 -4380_78060,290,4380_80228,Merlin Park,102828-00015-1,0,4380_7778208_4020301,4380_1282 -4380_78060,294,4380_80229,Merlin Park,102830-00018-1,0,4380_7778208_4020301,4380_1282 -4380_78060,295,4380_80230,Merlin Park,102832-00019-1,0,4380_7778208_4020301,4380_1282 -4380_78060,293,4380_80231,Merlin Park,102834-00017-1,0,4380_7778208_4020301,4380_1282 -4380_78060,296,4380_80232,Merlin Park,103182-00021-1,0,4380_7778208_4020303,4380_1283 -4380_78060,297,4380_80239,Merlin Park,103019-00008-1,0,4380_7778208_4020302,4380_1282 -4380_78114,285,4380_8024,Kells via Navan,5238-00009-1,0,4380_7778208_1090101,4380_123 -4380_78060,285,4380_80240,Merlin Park,103375-00009-1,0,4380_7778208_4020304,4380_1283 -4380_78060,288,4380_80242,Merlin Park,103377-00011-1,0,4380_7778208_4020304,4380_1283 -4380_78060,286,4380_80243,Merlin Park,103383-00010-1,0,4380_7778208_4020304,4380_1283 -4380_78060,291,4380_80244,Merlin Park,102837-00013-1,0,4380_7778208_4020301,4380_1284 -4380_78060,289,4380_80245,Merlin Park,103381-00014-1,0,4380_7778208_4020304,4380_1283 -4380_78060,287,4380_80246,Merlin Park,103379-00012-1,0,4380_7778208_4020304,4380_1283 -4380_78060,292,4380_80247,Merlin Park,103384-00016-1,0,4380_7778208_4020304,4380_1283 -4380_78060,290,4380_80248,Merlin Park,103376-00015-1,0,4380_7778208_4020304,4380_1283 -4380_78060,294,4380_80249,Merlin Park,103380-00018-1,0,4380_7778208_4020304,4380_1283 -4380_78114,286,4380_8025,Kells via Navan,5248-00010-1,0,4380_7778208_1090101,4380_123 -4380_78060,295,4380_80250,Merlin Park,103382-00019-1,0,4380_7778208_4020304,4380_1283 -4380_78060,293,4380_80251,Merlin Park,103378-00017-1,0,4380_7778208_4020304,4380_1283 -4380_78060,296,4380_80252,Merlin Park,102838-00021-1,0,4380_7778208_4020301,4380_1284 -4380_78060,285,4380_80258,Merlin Park,103028-00009-1,0,4380_7778208_4020302,4380_1282 -4380_78114,297,4380_8026,Kells via Navan,5811-00008-1,0,4380_7778208_1090109,4380_125 -4380_78060,288,4380_80260,Merlin Park,103026-00011-1,0,4380_7778208_4020302,4380_1282 -4380_78060,286,4380_80261,Merlin Park,103020-00010-1,0,4380_7778208_4020302,4380_1282 -4380_78060,291,4380_80262,Merlin Park,103385-00013-1,0,4380_7778208_4020304,4380_1283 -4380_78060,289,4380_80263,Merlin Park,103024-00014-1,0,4380_7778208_4020302,4380_1282 -4380_78060,287,4380_80264,Merlin Park,103022-00012-1,0,4380_7778208_4020302,4380_1282 -4380_78060,292,4380_80265,Merlin Park,103021-00016-1,0,4380_7778208_4020302,4380_1282 -4380_78060,290,4380_80266,Merlin Park,103029-00015-1,0,4380_7778208_4020302,4380_1282 -4380_78060,294,4380_80267,Merlin Park,103023-00018-1,0,4380_7778208_4020302,4380_1282 -4380_78060,295,4380_80268,Merlin Park,103025-00019-1,0,4380_7778208_4020302,4380_1282 -4380_78060,293,4380_80269,Merlin Park,103027-00017-1,0,4380_7778208_4020302,4380_1282 -4380_78114,288,4380_8027,Kells via Navan,5258-00011-1,0,4380_7778208_1090101,4380_123 -4380_78060,296,4380_80270,Merlin Park,103386-00021-1,0,4380_7778208_4020304,4380_1283 -4380_78060,297,4380_80277,Merlin Park,102852-00008-1,0,4380_7778208_4020301,4380_1282 -4380_78060,285,4380_80278,Merlin Park,103203-00009-1,0,4380_7778208_4020303,4380_1283 -4380_78114,287,4380_8028,Kells via Navan,5268-00012-1,0,4380_7778208_1090101,4380_123 -4380_78060,288,4380_80280,Merlin Park,103199-00011-1,0,4380_7778208_4020303,4380_1283 -4380_78060,286,4380_80281,Merlin Park,103201-00010-1,0,4380_7778208_4020303,4380_1283 -4380_78060,291,4380_80282,Merlin Park,103031-00013-1,0,4380_7778208_4020302,4380_1284 -4380_78060,289,4380_80283,Merlin Park,103197-00014-1,0,4380_7778208_4020303,4380_1283 -4380_78060,287,4380_80284,Merlin Park,103195-00012-1,0,4380_7778208_4020303,4380_1283 -4380_78060,292,4380_80285,Merlin Park,103202-00016-1,0,4380_7778208_4020303,4380_1283 -4380_78060,290,4380_80286,Merlin Park,103204-00015-1,0,4380_7778208_4020303,4380_1283 -4380_78060,294,4380_80287,Merlin Park,103196-00018-1,0,4380_7778208_4020303,4380_1283 -4380_78060,295,4380_80288,Merlin Park,103198-00019-1,0,4380_7778208_4020303,4380_1283 -4380_78060,293,4380_80289,Merlin Park,103200-00017-1,0,4380_7778208_4020303,4380_1283 -4380_78114,289,4380_8029,Kells via Navan,5228-00014-1,0,4380_7778208_1090101,4380_123 -4380_78060,296,4380_80290,Merlin Park,103032-00021-1,0,4380_7778208_4020302,4380_1284 -4380_78060,285,4380_80296,Merlin Park,102855-00009-1,0,4380_7778208_4020301,4380_1282 -4380_78060,288,4380_80298,Merlin Park,102861-00011-1,0,4380_7778208_4020301,4380_1282 -4380_78060,286,4380_80299,Merlin Park,102853-00010-1,0,4380_7778208_4020301,4380_1282 -4380_78114,290,4380_8030,Kells via Navan,54671-00015-1,0,4380_7778208_1090101,4380_123 -4380_78060,291,4380_80300,Merlin Park,103205-00013-1,0,4380_7778208_4020303,4380_1283 -4380_78060,289,4380_80301,Merlin Park,102859-00014-1,0,4380_7778208_4020301,4380_1282 -4380_78060,287,4380_80302,Merlin Park,102857-00012-1,0,4380_7778208_4020301,4380_1282 -4380_78060,292,4380_80303,Merlin Park,102854-00016-1,0,4380_7778208_4020301,4380_1282 -4380_78060,290,4380_80304,Merlin Park,102856-00015-1,0,4380_7778208_4020301,4380_1282 -4380_78060,294,4380_80305,Merlin Park,102858-00018-1,0,4380_7778208_4020301,4380_1282 -4380_78060,295,4380_80306,Merlin Park,102860-00019-1,0,4380_7778208_4020301,4380_1282 -4380_78060,293,4380_80307,Merlin Park,102862-00017-1,0,4380_7778208_4020301,4380_1282 -4380_78060,296,4380_80308,Merlin Park,103206-00021-1,0,4380_7778208_4020303,4380_1283 -4380_78114,291,4380_8031,Kells via Navan,5886-00013-1,0,4380_7778208_1090111,4380_127 -4380_78060,297,4380_80315,Merlin Park,103043-00008-1,0,4380_7778208_4020302,4380_1282 -4380_78060,285,4380_80316,Merlin Park,103403-00009-1,0,4380_7778208_4020304,4380_1283 -4380_78060,288,4380_80318,Merlin Park,103401-00011-1,0,4380_7778208_4020304,4380_1283 -4380_78060,286,4380_80319,Merlin Park,103407-00010-1,0,4380_7778208_4020304,4380_1283 -4380_78114,292,4380_8032,Kells via Navan,54672-00016-1,0,4380_7778208_1090101,4380_123 -4380_78060,291,4380_80320,Merlin Park,102863-00013-1,0,4380_7778208_4020301,4380_1284 -4380_78060,289,4380_80321,Merlin Park,103405-00014-1,0,4380_7778208_4020304,4380_1283 -4380_78060,287,4380_80322,Merlin Park,103399-00012-1,0,4380_7778208_4020304,4380_1283 -4380_78060,292,4380_80323,Merlin Park,103408-00016-1,0,4380_7778208_4020304,4380_1283 -4380_78060,290,4380_80324,Merlin Park,103404-00015-1,0,4380_7778208_4020304,4380_1283 -4380_78060,294,4380_80325,Merlin Park,103400-00018-1,0,4380_7778208_4020304,4380_1283 -4380_78060,295,4380_80326,Merlin Park,103406-00019-1,0,4380_7778208_4020304,4380_1283 -4380_78060,293,4380_80327,Merlin Park,103402-00017-1,0,4380_7778208_4020304,4380_1283 -4380_78060,296,4380_80328,Merlin Park,102864-00021-1,0,4380_7778208_4020301,4380_1284 -4380_78114,293,4380_8033,Kells via Navan,54673-00017-1,0,4380_7778208_1090101,4380_123 -4380_78060,285,4380_80334,Merlin Park,103052-00009-1,0,4380_7778208_4020302,4380_1282 -4380_78060,288,4380_80336,Merlin Park,103046-00011-1,0,4380_7778208_4020302,4380_1282 -4380_78060,286,4380_80337,Merlin Park,103048-00010-1,0,4380_7778208_4020302,4380_1282 -4380_78060,291,4380_80338,Merlin Park,103409-00013-1,0,4380_7778208_4020304,4380_1283 -4380_78060,289,4380_80339,Merlin Park,103050-00014-1,0,4380_7778208_4020302,4380_1282 -4380_78114,294,4380_8034,Kells via Navan,54674-00018-1,0,4380_7778208_1090101,4380_123 -4380_78060,287,4380_80340,Merlin Park,103054-00012-1,0,4380_7778208_4020302,4380_1282 -4380_78060,292,4380_80341,Merlin Park,103049-00016-1,0,4380_7778208_4020302,4380_1282 -4380_78060,290,4380_80342,Merlin Park,103053-00015-1,0,4380_7778208_4020302,4380_1282 -4380_78060,294,4380_80343,Merlin Park,103055-00018-1,0,4380_7778208_4020302,4380_1282 -4380_78060,295,4380_80344,Merlin Park,103051-00019-1,0,4380_7778208_4020302,4380_1282 -4380_78060,293,4380_80345,Merlin Park,103047-00017-1,0,4380_7778208_4020302,4380_1282 -4380_78060,296,4380_80346,Merlin Park,103410-00021-1,0,4380_7778208_4020304,4380_1283 -4380_78114,295,4380_8035,Kells via Navan,54675-00019-1,0,4380_7778208_1090101,4380_123 -4380_78060,297,4380_80353,Merlin Park,102878-00008-1,0,4380_7778208_4020301,4380_1282 -4380_78060,285,4380_80354,Merlin Park,103225-00009-1,0,4380_7778208_4020303,4380_1283 -4380_78060,288,4380_80356,Merlin Park,103219-00011-1,0,4380_7778208_4020303,4380_1283 -4380_78060,286,4380_80357,Merlin Park,103227-00010-1,0,4380_7778208_4020303,4380_1283 -4380_78060,291,4380_80358,Merlin Park,103057-00013-1,0,4380_7778208_4020302,4380_1284 -4380_78060,289,4380_80359,Merlin Park,103223-00014-1,0,4380_7778208_4020303,4380_1283 -4380_78114,296,4380_8036,Kells via Navan,55136-00021-1,0,4380_7778208_1090111,4380_127 -4380_78060,287,4380_80360,Merlin Park,103221-00012-1,0,4380_7778208_4020303,4380_1283 -4380_78060,292,4380_80361,Merlin Park,103228-00016-1,0,4380_7778208_4020303,4380_1283 -4380_78060,290,4380_80362,Merlin Park,103226-00015-1,0,4380_7778208_4020303,4380_1283 -4380_78060,294,4380_80363,Merlin Park,103222-00018-1,0,4380_7778208_4020303,4380_1283 -4380_78060,295,4380_80364,Merlin Park,103224-00019-1,0,4380_7778208_4020303,4380_1283 -4380_78060,293,4380_80365,Merlin Park,103220-00017-1,0,4380_7778208_4020303,4380_1283 -4380_78060,296,4380_80366,Merlin Park,103058-00021-1,0,4380_7778208_4020302,4380_1284 -4380_78060,285,4380_80372,Merlin Park,102883-00009-1,0,4380_7778208_4020301,4380_1282 -4380_78060,288,4380_80374,Merlin Park,102879-00011-1,0,4380_7778208_4020301,4380_1282 -4380_78060,286,4380_80375,Merlin Park,102885-00010-1,0,4380_7778208_4020301,4380_1282 -4380_78060,291,4380_80376,Merlin Park,103229-00013-1,0,4380_7778208_4020303,4380_1283 -4380_78060,289,4380_80377,Merlin Park,102881-00014-1,0,4380_7778208_4020301,4380_1282 -4380_78060,287,4380_80378,Merlin Park,102887-00012-1,0,4380_7778208_4020301,4380_1282 -4380_78060,292,4380_80379,Merlin Park,102886-00016-1,0,4380_7778208_4020301,4380_1282 -4380_78060,290,4380_80380,Merlin Park,102884-00015-1,0,4380_7778208_4020301,4380_1282 -4380_78060,294,4380_80381,Merlin Park,102888-00018-1,0,4380_7778208_4020301,4380_1282 -4380_78060,295,4380_80382,Merlin Park,102882-00019-1,0,4380_7778208_4020301,4380_1282 -4380_78060,293,4380_80383,Merlin Park,102880-00017-1,0,4380_7778208_4020301,4380_1282 -4380_78060,296,4380_80384,Merlin Park,103230-00021-1,0,4380_7778208_4020303,4380_1283 -4380_78060,297,4380_80391,Merlin Park,103069-00008-1,0,4380_7778208_4020302,4380_1282 -4380_78060,285,4380_80392,Merlin Park,103431-00009-1,0,4380_7778208_4020304,4380_1283 -4380_78060,288,4380_80394,Merlin Park,103427-00011-1,0,4380_7778208_4020304,4380_1283 -4380_78060,286,4380_80395,Merlin Park,103423-00010-1,0,4380_7778208_4020304,4380_1283 -4380_78060,291,4380_80396,Merlin Park,102889-00013-1,0,4380_7778208_4020301,4380_1284 -4380_78060,289,4380_80397,Merlin Park,103425-00014-1,0,4380_7778208_4020304,4380_1283 -4380_78060,287,4380_80398,Merlin Park,103429-00012-1,0,4380_7778208_4020304,4380_1283 -4380_78060,292,4380_80399,Merlin Park,103424-00016-1,0,4380_7778208_4020304,4380_1283 -4380_78113,285,4380_804,Dundalk,50014-00009-1,0,4380_7778208_1000906,4380_11 -4380_78060,290,4380_80400,Merlin Park,103432-00015-1,0,4380_7778208_4020304,4380_1283 -4380_78060,294,4380_80401,Merlin Park,103430-00018-1,0,4380_7778208_4020304,4380_1283 -4380_78060,295,4380_80402,Merlin Park,103426-00019-1,0,4380_7778208_4020304,4380_1283 -4380_78060,293,4380_80403,Merlin Park,103428-00017-1,0,4380_7778208_4020304,4380_1283 -4380_78060,296,4380_80404,Merlin Park,102890-00021-1,0,4380_7778208_4020301,4380_1284 -4380_78060,285,4380_80410,Merlin Park,103072-00009-1,0,4380_7778208_4020302,4380_1282 -4380_78060,288,4380_80412,Merlin Park,103076-00011-1,0,4380_7778208_4020302,4380_1282 -4380_78060,286,4380_80413,Merlin Park,103074-00010-1,0,4380_7778208_4020302,4380_1282 -4380_78060,291,4380_80414,Merlin Park,103433-00013-1,0,4380_7778208_4020304,4380_1283 -4380_78060,289,4380_80415,Merlin Park,103078-00014-1,0,4380_7778208_4020302,4380_1282 -4380_78060,287,4380_80416,Merlin Park,103080-00012-1,0,4380_7778208_4020302,4380_1282 -4380_78060,292,4380_80417,Merlin Park,103075-00016-1,0,4380_7778208_4020302,4380_1282 -4380_78060,290,4380_80418,Merlin Park,103073-00015-1,0,4380_7778208_4020302,4380_1282 -4380_78060,294,4380_80419,Merlin Park,103081-00018-1,0,4380_7778208_4020302,4380_1282 -4380_78060,295,4380_80420,Merlin Park,103079-00019-1,0,4380_7778208_4020302,4380_1282 -4380_78060,293,4380_80421,Merlin Park,103077-00017-1,0,4380_7778208_4020302,4380_1282 -4380_78060,296,4380_80422,Merlin Park,103434-00021-1,0,4380_7778208_4020304,4380_1283 -4380_78060,297,4380_80429,Merlin Park,102904-00008-1,0,4380_7778208_4020301,4380_1282 -4380_78060,285,4380_80430,Merlin Park,103245-00009-1,0,4380_7778208_4020303,4380_1283 -4380_78060,288,4380_80432,Merlin Park,103247-00011-1,0,4380_7778208_4020303,4380_1283 -4380_78060,286,4380_80433,Merlin Park,103249-00010-1,0,4380_7778208_4020303,4380_1283 -4380_78060,291,4380_80434,Merlin Park,103082-00013-1,0,4380_7778208_4020302,4380_1284 -4380_78060,289,4380_80435,Merlin Park,103243-00014-1,0,4380_7778208_4020303,4380_1283 -4380_78060,287,4380_80436,Merlin Park,103251-00012-1,0,4380_7778208_4020303,4380_1283 -4380_78060,292,4380_80437,Merlin Park,103250-00016-1,0,4380_7778208_4020303,4380_1283 -4380_78060,290,4380_80438,Merlin Park,103246-00015-1,0,4380_7778208_4020303,4380_1283 -4380_78060,294,4380_80439,Merlin Park,103252-00018-1,0,4380_7778208_4020303,4380_1283 -4380_78060,295,4380_80440,Merlin Park,103244-00019-1,0,4380_7778208_4020303,4380_1283 -4380_78060,293,4380_80441,Merlin Park,103248-00017-1,0,4380_7778208_4020303,4380_1283 -4380_78060,296,4380_80442,Merlin Park,103083-00021-1,0,4380_7778208_4020302,4380_1284 -4380_78060,285,4380_80448,Merlin Park,102907-00009-1,0,4380_7778208_4020301,4380_1282 -4380_78060,288,4380_80450,Merlin Park,102909-00011-1,0,4380_7778208_4020301,4380_1282 -4380_78060,286,4380_80451,Merlin Park,102911-00010-1,0,4380_7778208_4020301,4380_1282 -4380_78060,291,4380_80452,Merlin Park,103253-00013-1,0,4380_7778208_4020303,4380_1283 -4380_78060,289,4380_80453,Merlin Park,102905-00014-1,0,4380_7778208_4020301,4380_1282 -4380_78060,287,4380_80454,Merlin Park,102913-00012-1,0,4380_7778208_4020301,4380_1282 -4380_78060,292,4380_80455,Merlin Park,102912-00016-1,0,4380_7778208_4020301,4380_1282 -4380_78060,290,4380_80456,Merlin Park,102908-00015-1,0,4380_7778208_4020301,4380_1282 -4380_78060,294,4380_80457,Merlin Park,102914-00018-1,0,4380_7778208_4020301,4380_1282 -4380_78060,295,4380_80458,Merlin Park,102906-00019-1,0,4380_7778208_4020301,4380_1282 -4380_78060,293,4380_80459,Merlin Park,102910-00017-1,0,4380_7778208_4020301,4380_1282 -4380_78060,296,4380_80460,Merlin Park,103254-00021-1,0,4380_7778208_4020303,4380_1283 -4380_78060,297,4380_80467,Merlin Park,103097-00008-1,0,4380_7778208_4020302,4380_1282 -4380_78060,285,4380_80468,Merlin Park,103455-00009-1,0,4380_7778208_4020304,4380_1283 -4380_78114,285,4380_8047,Trim,7226-00009-1,0,4380_7778208_10988830,4380_120 -4380_78060,288,4380_80470,Merlin Park,103453-00011-1,0,4380_7778208_4020304,4380_1283 -4380_78060,286,4380_80471,Merlin Park,103451-00010-1,0,4380_7778208_4020304,4380_1283 -4380_78060,291,4380_80472,Merlin Park,102916-00013-1,0,4380_7778208_4020301,4380_1284 -4380_78060,289,4380_80473,Merlin Park,103449-00014-1,0,4380_7778208_4020304,4380_1283 -4380_78060,287,4380_80474,Merlin Park,103447-00012-1,0,4380_7778208_4020304,4380_1283 -4380_78060,292,4380_80475,Merlin Park,103452-00016-1,0,4380_7778208_4020304,4380_1283 -4380_78060,290,4380_80476,Merlin Park,103456-00015-1,0,4380_7778208_4020304,4380_1283 -4380_78060,294,4380_80477,Merlin Park,103448-00018-1,0,4380_7778208_4020304,4380_1283 -4380_78060,295,4380_80478,Merlin Park,103450-00019-1,0,4380_7778208_4020304,4380_1283 -4380_78060,293,4380_80479,Merlin Park,103454-00017-1,0,4380_7778208_4020304,4380_1283 -4380_78114,285,4380_8048,Navan,7236-00009-1,0,4380_7778208_10988831,4380_119 -4380_78060,296,4380_80480,Merlin Park,102917-00021-1,0,4380_7778208_4020301,4380_1284 -4380_78060,285,4380_80486,Merlin Park,103106-00009-1,0,4380_7778208_4020302,4380_1282 -4380_78060,288,4380_80488,Merlin Park,103104-00011-1,0,4380_7778208_4020302,4380_1282 -4380_78060,286,4380_80489,Merlin Park,103102-00010-1,0,4380_7778208_4020302,4380_1282 -4380_78114,288,4380_8049,Trim,7230-00011-1,0,4380_7778208_10988830,4380_120 -4380_78060,291,4380_80490,Merlin Park,103457-00013-1,0,4380_7778208_4020304,4380_1283 -4380_78060,289,4380_80491,Merlin Park,103100-00014-1,0,4380_7778208_4020302,4380_1282 -4380_78060,287,4380_80492,Merlin Park,103098-00012-1,0,4380_7778208_4020302,4380_1282 -4380_78060,292,4380_80493,Merlin Park,103103-00016-1,0,4380_7778208_4020302,4380_1282 -4380_78060,290,4380_80494,Merlin Park,103107-00015-1,0,4380_7778208_4020302,4380_1282 -4380_78060,294,4380_80495,Merlin Park,103099-00018-1,0,4380_7778208_4020302,4380_1282 -4380_78060,295,4380_80496,Merlin Park,103101-00019-1,0,4380_7778208_4020302,4380_1282 -4380_78060,293,4380_80497,Merlin Park,103105-00017-1,0,4380_7778208_4020302,4380_1282 -4380_78060,296,4380_80498,Merlin Park,103458-00021-1,0,4380_7778208_4020304,4380_1283 -4380_78113,286,4380_805,Dundalk,50006-00010-1,0,4380_7778208_1000906,4380_11 -4380_78114,288,4380_8050,Navan,7240-00011-1,0,4380_7778208_10988831,4380_119 -4380_78060,297,4380_80505,Merlin Park,102930-00008-1,0,4380_7778208_4020301,4380_1282 -4380_78060,285,4380_80506,Merlin Park,103275-00009-1,0,4380_7778208_4020303,4380_1283 -4380_78060,288,4380_80508,Merlin Park,103271-00011-1,0,4380_7778208_4020303,4380_1283 -4380_78060,286,4380_80509,Merlin Park,103267-00010-1,0,4380_7778208_4020303,4380_1283 -4380_78114,286,4380_8051,Trim,7228-00010-1,0,4380_7778208_10988830,4380_120 -4380_78060,291,4380_80510,Merlin Park,103108-00013-1,0,4380_7778208_4020302,4380_1284 -4380_78060,289,4380_80511,Merlin Park,103273-00014-1,0,4380_7778208_4020303,4380_1283 -4380_78060,287,4380_80512,Merlin Park,103269-00012-1,0,4380_7778208_4020303,4380_1283 -4380_78060,292,4380_80513,Merlin Park,103268-00016-1,0,4380_7778208_4020303,4380_1283 -4380_78060,290,4380_80514,Merlin Park,103276-00015-1,0,4380_7778208_4020303,4380_1283 -4380_78060,294,4380_80515,Merlin Park,103270-00018-1,0,4380_7778208_4020303,4380_1283 -4380_78060,295,4380_80516,Merlin Park,103274-00019-1,0,4380_7778208_4020303,4380_1283 -4380_78060,293,4380_80517,Merlin Park,103272-00017-1,0,4380_7778208_4020303,4380_1283 -4380_78060,296,4380_80518,Merlin Park,103109-00021-1,0,4380_7778208_4020302,4380_1284 -4380_78114,286,4380_8052,Navan,7238-00010-1,0,4380_7778208_10988831,4380_119 -4380_78060,285,4380_80524,Merlin Park,102939-00009-1,0,4380_7778208_4020301,4380_1282 -4380_78060,288,4380_80526,Merlin Park,102931-00011-1,0,4380_7778208_4020301,4380_1282 -4380_78060,286,4380_80527,Merlin Park,102937-00010-1,0,4380_7778208_4020301,4380_1282 -4380_78060,291,4380_80528,Merlin Park,103277-00013-1,0,4380_7778208_4020303,4380_1283 -4380_78060,289,4380_80529,Merlin Park,102933-00014-1,0,4380_7778208_4020301,4380_1282 -4380_78114,289,4380_8053,Trim,7224-00014-1,0,4380_7778208_10988830,4380_120 -4380_78060,287,4380_80530,Merlin Park,102935-00012-1,0,4380_7778208_4020301,4380_1282 -4380_78060,292,4380_80531,Merlin Park,102938-00016-1,0,4380_7778208_4020301,4380_1282 -4380_78060,290,4380_80532,Merlin Park,102940-00015-1,0,4380_7778208_4020301,4380_1282 -4380_78060,294,4380_80533,Merlin Park,102936-00018-1,0,4380_7778208_4020301,4380_1282 -4380_78060,295,4380_80534,Merlin Park,102934-00019-1,0,4380_7778208_4020301,4380_1282 -4380_78060,293,4380_80535,Merlin Park,102932-00017-1,0,4380_7778208_4020301,4380_1282 -4380_78060,296,4380_80536,Merlin Park,103278-00021-1,0,4380_7778208_4020303,4380_1283 -4380_78114,289,4380_8054,Navan,7234-00014-1,0,4380_7778208_10988831,4380_119 -4380_78060,297,4380_80543,Merlin Park,103123-00008-1,0,4380_7778208_4020302,4380_1282 -4380_78060,285,4380_80544,Merlin Park,103471-00009-1,0,4380_7778208_4020304,4380_1283 -4380_78060,288,4380_80546,Merlin Park,103479-00011-1,0,4380_7778208_4020304,4380_1283 -4380_78060,286,4380_80547,Merlin Park,103475-00010-1,0,4380_7778208_4020304,4380_1283 -4380_78060,291,4380_80548,Merlin Park,102941-00013-1,0,4380_7778208_4020301,4380_1284 -4380_78060,289,4380_80549,Merlin Park,103473-00014-1,0,4380_7778208_4020304,4380_1283 -4380_78114,287,4380_8055,Trim,7232-00012-1,0,4380_7778208_10988830,4380_120 -4380_78060,287,4380_80550,Merlin Park,103477-00012-1,0,4380_7778208_4020304,4380_1283 -4380_78060,292,4380_80551,Merlin Park,103476-00016-1,0,4380_7778208_4020304,4380_1283 -4380_78060,290,4380_80552,Merlin Park,103472-00015-1,0,4380_7778208_4020304,4380_1283 -4380_78060,294,4380_80553,Merlin Park,103478-00018-1,0,4380_7778208_4020304,4380_1283 -4380_78060,295,4380_80554,Merlin Park,103474-00019-1,0,4380_7778208_4020304,4380_1283 -4380_78060,293,4380_80555,Merlin Park,103480-00017-1,0,4380_7778208_4020304,4380_1283 -4380_78060,296,4380_80556,Merlin Park,102942-00021-1,0,4380_7778208_4020301,4380_1284 -4380_78114,287,4380_8056,Navan,7242-00012-1,0,4380_7778208_10988831,4380_119 -4380_78060,285,4380_80562,Merlin Park,103128-00009-1,0,4380_7778208_4020302,4380_1282 -4380_78060,288,4380_80564,Merlin Park,103130-00011-1,0,4380_7778208_4020302,4380_1282 -4380_78060,286,4380_80565,Merlin Park,103124-00010-1,0,4380_7778208_4020302,4380_1282 -4380_78060,291,4380_80566,Merlin Park,103481-00013-1,0,4380_7778208_4020304,4380_1283 -4380_78060,289,4380_80567,Merlin Park,103132-00014-1,0,4380_7778208_4020302,4380_1282 -4380_78060,287,4380_80568,Merlin Park,103126-00012-1,0,4380_7778208_4020302,4380_1282 -4380_78060,292,4380_80569,Merlin Park,103125-00016-1,0,4380_7778208_4020302,4380_1282 -4380_78114,290,4380_8057,Trim,114800-00015-1,0,4380_7778208_10988830,4380_120 -4380_78060,290,4380_80570,Merlin Park,103129-00015-1,0,4380_7778208_4020302,4380_1282 -4380_78060,294,4380_80571,Merlin Park,103127-00018-1,0,4380_7778208_4020302,4380_1282 -4380_78060,295,4380_80572,Merlin Park,103133-00019-1,0,4380_7778208_4020302,4380_1282 -4380_78060,293,4380_80573,Merlin Park,103131-00017-1,0,4380_7778208_4020302,4380_1282 -4380_78060,296,4380_80574,Merlin Park,103482-00021-1,0,4380_7778208_4020304,4380_1283 -4380_78114,290,4380_8058,Navan,114810-00015-1,0,4380_7778208_10988831,4380_119 -4380_78060,297,4380_80581,Merlin Park,102956-00008-1,0,4380_7778208_4020301,4380_1282 -4380_78060,285,4380_80582,Merlin Park,103291-00009-1,0,4380_7778208_4020303,4380_1283 -4380_78060,288,4380_80584,Merlin Park,103297-00011-1,0,4380_7778208_4020303,4380_1283 -4380_78060,286,4380_80585,Merlin Park,103295-00010-1,0,4380_7778208_4020303,4380_1283 -4380_78060,291,4380_80586,Merlin Park,103134-00013-1,0,4380_7778208_4020302,4380_1284 -4380_78060,289,4380_80587,Merlin Park,103299-00014-1,0,4380_7778208_4020303,4380_1283 -4380_78060,287,4380_80588,Merlin Park,103293-00012-1,0,4380_7778208_4020303,4380_1283 -4380_78060,292,4380_80589,Merlin Park,103296-00016-1,0,4380_7778208_4020303,4380_1283 -4380_78114,292,4380_8059,Trim,114799-00016-1,0,4380_7778208_10988830,4380_120 -4380_78060,290,4380_80590,Merlin Park,103292-00015-1,0,4380_7778208_4020303,4380_1283 -4380_78060,294,4380_80591,Merlin Park,103294-00018-1,0,4380_7778208_4020303,4380_1283 -4380_78060,295,4380_80592,Merlin Park,103300-00019-1,0,4380_7778208_4020303,4380_1283 -4380_78060,293,4380_80593,Merlin Park,103298-00017-1,0,4380_7778208_4020303,4380_1283 -4380_78060,296,4380_80594,Merlin Park,103135-00021-1,0,4380_7778208_4020302,4380_1284 -4380_78113,287,4380_806,Dundalk,50012-00012-1,0,4380_7778208_1000906,4380_11 -4380_78114,292,4380_8060,Navan,114809-00016-1,0,4380_7778208_10988831,4380_119 -4380_78060,297,4380_80601,Merlin Park,103137-00008-1,0,4380_7778208_4020302,4380_1282 -4380_78060,285,4380_80602,Merlin Park,103497-00009-1,0,4380_7778208_4020304,4380_1283 -4380_78060,288,4380_80604,Merlin Park,103499-00011-1,0,4380_7778208_4020304,4380_1283 -4380_78060,286,4380_80605,Merlin Park,103501-00010-1,0,4380_7778208_4020304,4380_1283 -4380_78060,291,4380_80606,Merlin Park,102957-00013-1,0,4380_7778208_4020301,4380_1284 -4380_78060,289,4380_80607,Merlin Park,103495-00014-1,0,4380_7778208_4020304,4380_1283 -4380_78060,287,4380_80608,Merlin Park,103493-00012-1,0,4380_7778208_4020304,4380_1283 -4380_78060,292,4380_80609,Merlin Park,103502-00016-1,0,4380_7778208_4020304,4380_1283 -4380_78114,294,4380_8061,Trim,114801-00018-1,0,4380_7778208_10988830,4380_120 -4380_78060,290,4380_80610,Merlin Park,103498-00015-1,0,4380_7778208_4020304,4380_1283 -4380_78060,294,4380_80611,Merlin Park,103494-00018-1,0,4380_7778208_4020304,4380_1283 -4380_78060,295,4380_80612,Merlin Park,103496-00019-1,0,4380_7778208_4020304,4380_1283 -4380_78060,293,4380_80613,Merlin Park,103500-00017-1,0,4380_7778208_4020304,4380_1283 -4380_78060,296,4380_80614,Merlin Park,102958-00021-1,0,4380_7778208_4020301,4380_1284 -4380_78114,294,4380_8062,Navan,114811-00018-1,0,4380_7778208_10988831,4380_119 -4380_78060,297,4380_80621,Merlin Park,102960-00008-1,0,4380_7778208_4020301,4380_1282 -4380_78060,285,4380_80622,Merlin Park,103313-00009-1,0,4380_7778208_4020303,4380_1283 -4380_78060,288,4380_80624,Merlin Park,103319-00011-1,0,4380_7778208_4020303,4380_1283 -4380_78060,286,4380_80625,Merlin Park,103315-00010-1,0,4380_7778208_4020303,4380_1283 -4380_78060,291,4380_80626,Merlin Park,103141-00013-1,0,4380_7778208_4020302,4380_1284 -4380_78060,289,4380_80627,Merlin Park,103311-00014-1,0,4380_7778208_4020303,4380_1283 -4380_78060,287,4380_80628,Merlin Park,103317-00012-1,0,4380_7778208_4020303,4380_1283 -4380_78060,292,4380_80629,Merlin Park,103316-00016-1,0,4380_7778208_4020303,4380_1283 -4380_78114,293,4380_8063,Trim,114798-00017-1,0,4380_7778208_10988830,4380_120 -4380_78060,290,4380_80630,Merlin Park,103314-00015-1,0,4380_7778208_4020303,4380_1283 -4380_78060,294,4380_80631,Merlin Park,103318-00018-1,0,4380_7778208_4020303,4380_1283 -4380_78060,295,4380_80632,Merlin Park,103312-00019-1,0,4380_7778208_4020303,4380_1283 -4380_78060,293,4380_80633,Merlin Park,103320-00017-1,0,4380_7778208_4020303,4380_1283 -4380_78060,296,4380_80634,Merlin Park,103142-00021-1,0,4380_7778208_4020302,4380_1284 -4380_78114,293,4380_8064,Navan,114808-00017-1,0,4380_7778208_10988831,4380_119 -4380_78060,297,4380_80641,Merlin Park,103143-00008-1,0,4380_7778208_4020302,4380_1282 -4380_78060,285,4380_80642,Merlin Park,103519-00009-1,0,4380_7778208_4020304,4380_1283 -4380_78060,288,4380_80644,Merlin Park,103517-00011-1,0,4380_7778208_4020304,4380_1283 -4380_78060,286,4380_80645,Merlin Park,103515-00010-1,0,4380_7778208_4020304,4380_1283 -4380_78060,291,4380_80646,Merlin Park,102963-00013-1,0,4380_7778208_4020301,4380_1284 -4380_78060,289,4380_80647,Merlin Park,103513-00014-1,0,4380_7778208_4020304,4380_1283 -4380_78060,287,4380_80648,Merlin Park,103521-00012-1,0,4380_7778208_4020304,4380_1283 -4380_78060,292,4380_80649,Merlin Park,103516-00016-1,0,4380_7778208_4020304,4380_1283 -4380_78114,295,4380_8065,Trim,114797-00019-1,0,4380_7778208_10988830,4380_120 -4380_78060,290,4380_80650,Merlin Park,103520-00015-1,0,4380_7778208_4020304,4380_1283 -4380_78060,294,4380_80651,Merlin Park,103522-00018-1,0,4380_7778208_4020304,4380_1283 -4380_78060,295,4380_80652,Merlin Park,103514-00019-1,0,4380_7778208_4020304,4380_1283 -4380_78060,293,4380_80653,Merlin Park,103518-00017-1,0,4380_7778208_4020304,4380_1283 -4380_78060,296,4380_80654,Merlin Park,102964-00021-1,0,4380_7778208_4020301,4380_1284 -4380_78114,295,4380_8066,Navan,114807-00019-1,0,4380_7778208_10988831,4380_119 -4380_78060,297,4380_80661,Merlin Park,102966-00008-1,0,4380_7778208_4020301,4380_1282 -4380_78060,285,4380_80662,Merlin Park,103335-00009-1,0,4380_7778208_4020303,4380_1283 -4380_78060,288,4380_80664,Merlin Park,103333-00011-1,0,4380_7778208_4020303,4380_1283 -4380_78060,286,4380_80665,Merlin Park,103337-00010-1,0,4380_7778208_4020303,4380_1283 -4380_78060,291,4380_80666,Merlin Park,103147-00013-1,0,4380_7778208_4020302,4380_1284 -4380_78060,289,4380_80667,Merlin Park,103331-00014-1,0,4380_7778208_4020303,4380_1283 -4380_78060,287,4380_80668,Merlin Park,103339-00012-1,0,4380_7778208_4020303,4380_1283 -4380_78060,292,4380_80669,Merlin Park,103338-00016-1,0,4380_7778208_4020303,4380_1283 -4380_78060,290,4380_80670,Merlin Park,103336-00015-1,0,4380_7778208_4020303,4380_1283 -4380_78060,294,4380_80671,Merlin Park,103340-00018-1,0,4380_7778208_4020303,4380_1283 -4380_78060,295,4380_80672,Merlin Park,103332-00019-1,0,4380_7778208_4020303,4380_1283 -4380_78060,293,4380_80673,Merlin Park,103334-00017-1,0,4380_7778208_4020303,4380_1283 -4380_78060,296,4380_80674,Merlin Park,103148-00021-1,0,4380_7778208_4020302,4380_1284 -4380_78060,285,4380_80680,Seacrest,102797-00009-1,1,4380_7778208_4020301,4380_1285 -4380_78060,288,4380_80681,Seacrest,102793-00011-1,1,4380_7778208_4020301,4380_1285 -4380_78060,286,4380_80682,Seacrest,102791-00010-1,1,4380_7778208_4020301,4380_1285 -4380_78060,289,4380_80683,Seacrest,102795-00014-1,1,4380_7778208_4020301,4380_1285 -4380_78060,287,4380_80684,Seacrest,102789-00012-1,1,4380_7778208_4020301,4380_1285 -4380_78060,292,4380_80685,Seacrest,102792-00016-1,1,4380_7778208_4020301,4380_1285 -4380_78060,290,4380_80686,Seacrest,102798-00015-1,1,4380_7778208_4020301,4380_1285 -4380_78060,294,4380_80687,Seacrest,102790-00018-1,1,4380_7778208_4020301,4380_1285 -4380_78060,295,4380_80688,Seacrest,102796-00019-1,1,4380_7778208_4020301,4380_1285 -4380_78060,293,4380_80689,Seacrest,102794-00017-1,1,4380_7778208_4020301,4380_1285 -4380_78060,285,4380_80695,Seacrest,103341-00009-1,1,4380_7778208_4020304,4380_1285 -4380_78060,288,4380_80697,Seacrest,103345-00011-1,1,4380_7778208_4020304,4380_1285 -4380_78060,286,4380_80698,Seacrest,103343-00010-1,1,4380_7778208_4020304,4380_1285 -4380_78060,291,4380_80699,Seacrest,102799-00013-1,1,4380_7778208_4020301,4380_1286 -4380_78113,288,4380_807,Dundalk,50010-00011-1,0,4380_7778208_1000906,4380_11 -4380_78060,289,4380_80700,Seacrest,103349-00014-1,1,4380_7778208_4020304,4380_1285 -4380_78060,287,4380_80701,Seacrest,103347-00012-1,1,4380_7778208_4020304,4380_1285 -4380_78060,292,4380_80702,Seacrest,103344-00016-1,1,4380_7778208_4020304,4380_1285 -4380_78060,290,4380_80703,Seacrest,103342-00015-1,1,4380_7778208_4020304,4380_1285 -4380_78060,294,4380_80704,Seacrest,103348-00018-1,1,4380_7778208_4020304,4380_1285 -4380_78060,295,4380_80705,Seacrest,103350-00019-1,1,4380_7778208_4020304,4380_1285 -4380_78060,293,4380_80706,Seacrest,103346-00017-1,1,4380_7778208_4020304,4380_1285 -4380_78060,296,4380_80707,Seacrest,102800-00021-1,1,4380_7778208_4020301,4380_1286 -4380_78060,285,4380_80713,Seacrest,102981-00009-1,1,4380_7778208_4020302,4380_1285 -4380_78060,288,4380_80714,Seacrest,102985-00011-1,1,4380_7778208_4020302,4380_1285 -4380_78060,286,4380_80715,Seacrest,102983-00010-1,1,4380_7778208_4020302,4380_1285 -4380_78060,289,4380_80716,Seacrest,102989-00014-1,1,4380_7778208_4020302,4380_1285 -4380_78060,287,4380_80717,Seacrest,102987-00012-1,1,4380_7778208_4020302,4380_1285 -4380_78060,292,4380_80718,Seacrest,102984-00016-1,1,4380_7778208_4020302,4380_1285 -4380_78060,290,4380_80719,Seacrest,102982-00015-1,1,4380_7778208_4020302,4380_1285 -4380_78060,294,4380_80720,Seacrest,102988-00018-1,1,4380_7778208_4020302,4380_1285 -4380_78060,295,4380_80721,Seacrest,102990-00019-1,1,4380_7778208_4020302,4380_1285 -4380_78060,293,4380_80722,Seacrest,102986-00017-1,1,4380_7778208_4020302,4380_1285 -4380_78060,297,4380_80729,Seacrest,102811-00008-1,1,4380_7778208_4020301,4380_1285 -4380_78060,285,4380_80730,Seacrest,103161-00009-1,1,4380_7778208_4020303,4380_1286 -4380_78060,288,4380_80732,Seacrest,103159-00011-1,1,4380_7778208_4020303,4380_1286 -4380_78060,286,4380_80733,Seacrest,103163-00010-1,1,4380_7778208_4020303,4380_1286 -4380_78060,291,4380_80734,Seacrest,102992-00013-1,1,4380_7778208_4020302,4380_1287 -4380_78060,289,4380_80735,Seacrest,103165-00014-1,1,4380_7778208_4020303,4380_1286 -4380_78060,287,4380_80736,Seacrest,103167-00012-1,1,4380_7778208_4020303,4380_1286 -4380_78060,292,4380_80737,Seacrest,103164-00016-1,1,4380_7778208_4020303,4380_1286 -4380_78060,290,4380_80738,Seacrest,103162-00015-1,1,4380_7778208_4020303,4380_1286 -4380_78060,294,4380_80739,Seacrest,103168-00018-1,1,4380_7778208_4020303,4380_1286 -4380_78114,285,4380_8074,Kells via Navan,5314-00009-1,0,4380_7778208_1090102,4380_123 -4380_78060,295,4380_80740,Seacrest,103166-00019-1,1,4380_7778208_4020303,4380_1286 -4380_78060,293,4380_80741,Seacrest,103160-00017-1,1,4380_7778208_4020303,4380_1286 -4380_78060,296,4380_80742,Seacrest,102993-00021-1,1,4380_7778208_4020302,4380_1287 -4380_78060,285,4380_80748,Seacrest,102822-00009-1,1,4380_7778208_4020301,4380_1285 -4380_78114,286,4380_8075,Kells via Navan,5324-00010-1,0,4380_7778208_1090102,4380_123 -4380_78060,288,4380_80750,Seacrest,102820-00011-1,1,4380_7778208_4020301,4380_1285 -4380_78060,286,4380_80751,Seacrest,102816-00010-1,1,4380_7778208_4020301,4380_1285 -4380_78060,291,4380_80752,Seacrest,103169-00013-1,1,4380_7778208_4020303,4380_1286 -4380_78060,289,4380_80753,Seacrest,102814-00014-1,1,4380_7778208_4020301,4380_1285 -4380_78060,287,4380_80754,Seacrest,102818-00012-1,1,4380_7778208_4020301,4380_1285 -4380_78060,292,4380_80755,Seacrest,102817-00016-1,1,4380_7778208_4020301,4380_1285 -4380_78060,290,4380_80756,Seacrest,102823-00015-1,1,4380_7778208_4020301,4380_1285 -4380_78060,294,4380_80757,Seacrest,102819-00018-1,1,4380_7778208_4020301,4380_1285 -4380_78060,295,4380_80758,Seacrest,102815-00019-1,1,4380_7778208_4020301,4380_1285 -4380_78060,293,4380_80759,Seacrest,102821-00017-1,1,4380_7778208_4020301,4380_1285 -4380_78114,297,4380_8076,Kells via Navan,5866-00008-1,0,4380_7778208_1090110,4380_125 -4380_78060,296,4380_80760,Seacrest,103170-00021-1,1,4380_7778208_4020303,4380_1286 -4380_78060,297,4380_80767,Seacrest,103004-00008-1,1,4380_7778208_4020302,4380_1285 -4380_78060,285,4380_80768,Seacrest,103367-00009-1,1,4380_7778208_4020304,4380_1286 -4380_78114,288,4380_8077,Kells via Navan,5334-00011-1,0,4380_7778208_1090102,4380_123 -4380_78060,288,4380_80770,Seacrest,103365-00011-1,1,4380_7778208_4020304,4380_1286 -4380_78060,286,4380_80771,Seacrest,103369-00010-1,1,4380_7778208_4020304,4380_1286 -4380_78060,291,4380_80772,Seacrest,102824-00013-1,1,4380_7778208_4020301,4380_1287 -4380_78060,289,4380_80773,Seacrest,103363-00014-1,1,4380_7778208_4020304,4380_1286 -4380_78060,287,4380_80774,Seacrest,103371-00012-1,1,4380_7778208_4020304,4380_1286 -4380_78060,292,4380_80775,Seacrest,103370-00016-1,1,4380_7778208_4020304,4380_1286 -4380_78060,290,4380_80776,Seacrest,103368-00015-1,1,4380_7778208_4020304,4380_1286 -4380_78060,294,4380_80777,Seacrest,103372-00018-1,1,4380_7778208_4020304,4380_1286 -4380_78060,295,4380_80778,Seacrest,103364-00019-1,1,4380_7778208_4020304,4380_1286 -4380_78060,293,4380_80779,Seacrest,103366-00017-1,1,4380_7778208_4020304,4380_1286 -4380_78114,287,4380_8078,Kells via Navan,5344-00012-1,0,4380_7778208_1090102,4380_123 -4380_78060,296,4380_80780,Seacrest,102825-00021-1,1,4380_7778208_4020301,4380_1287 -4380_78060,285,4380_80786,Seacrest,103015-00009-1,1,4380_7778208_4020302,4380_1285 -4380_78060,288,4380_80788,Seacrest,103013-00011-1,1,4380_7778208_4020302,4380_1285 -4380_78060,286,4380_80789,Seacrest,103007-00010-1,1,4380_7778208_4020302,4380_1285 -4380_78114,289,4380_8079,Kells via Navan,5304-00014-1,0,4380_7778208_1090102,4380_123 -4380_78060,291,4380_80790,Seacrest,103373-00013-1,1,4380_7778208_4020304,4380_1286 -4380_78060,289,4380_80791,Seacrest,103009-00014-1,1,4380_7778208_4020302,4380_1285 -4380_78060,287,4380_80792,Seacrest,103011-00012-1,1,4380_7778208_4020302,4380_1285 -4380_78060,292,4380_80793,Seacrest,103008-00016-1,1,4380_7778208_4020302,4380_1285 -4380_78060,290,4380_80794,Seacrest,103016-00015-1,1,4380_7778208_4020302,4380_1285 -4380_78060,294,4380_80795,Seacrest,103012-00018-1,1,4380_7778208_4020302,4380_1285 -4380_78060,295,4380_80796,Seacrest,103010-00019-1,1,4380_7778208_4020302,4380_1285 -4380_78060,293,4380_80797,Seacrest,103014-00017-1,1,4380_7778208_4020302,4380_1285 -4380_78060,296,4380_80798,Seacrest,103374-00021-1,1,4380_7778208_4020304,4380_1286 -4380_78113,289,4380_808,Dundalk,50008-00014-1,0,4380_7778208_1000906,4380_11 -4380_78114,290,4380_8080,Kells via Navan,54727-00015-1,0,4380_7778208_1090102,4380_123 -4380_78060,297,4380_80805,Seacrest,102839-00008-1,1,4380_7778208_4020301,4380_1285 -4380_78060,285,4380_80806,Seacrest,103187-00009-1,1,4380_7778208_4020303,4380_1286 -4380_78060,288,4380_80808,Seacrest,103189-00011-1,1,4380_7778208_4020303,4380_1286 -4380_78060,286,4380_80809,Seacrest,103191-00010-1,1,4380_7778208_4020303,4380_1286 -4380_78114,291,4380_8081,Kells via Navan,5951-00013-1,0,4380_7778208_1090112,4380_127 -4380_78060,291,4380_80810,Seacrest,103017-00013-1,1,4380_7778208_4020302,4380_1287 -4380_78060,289,4380_80811,Seacrest,103185-00014-1,1,4380_7778208_4020303,4380_1286 -4380_78060,287,4380_80812,Seacrest,103183-00012-1,1,4380_7778208_4020303,4380_1286 -4380_78060,292,4380_80813,Seacrest,103192-00016-1,1,4380_7778208_4020303,4380_1286 -4380_78060,290,4380_80814,Seacrest,103188-00015-1,1,4380_7778208_4020303,4380_1286 -4380_78060,294,4380_80815,Seacrest,103184-00018-1,1,4380_7778208_4020303,4380_1286 -4380_78060,295,4380_80816,Seacrest,103186-00019-1,1,4380_7778208_4020303,4380_1286 -4380_78060,293,4380_80817,Seacrest,103190-00017-1,1,4380_7778208_4020303,4380_1286 -4380_78060,296,4380_80818,Seacrest,103018-00021-1,1,4380_7778208_4020302,4380_1287 -4380_78114,292,4380_8082,Kells via Navan,54731-00016-1,0,4380_7778208_1090102,4380_123 -4380_78060,285,4380_80824,Seacrest,102846-00009-1,1,4380_7778208_4020301,4380_1285 -4380_78060,288,4380_80826,Seacrest,102844-00011-1,1,4380_7778208_4020301,4380_1285 -4380_78060,286,4380_80827,Seacrest,102842-00010-1,1,4380_7778208_4020301,4380_1285 -4380_78060,291,4380_80828,Seacrest,103193-00013-1,1,4380_7778208_4020303,4380_1286 -4380_78060,289,4380_80829,Seacrest,102840-00014-1,1,4380_7778208_4020301,4380_1285 -4380_78114,293,4380_8083,Kells via Navan,54730-00017-1,0,4380_7778208_1090102,4380_123 -4380_78060,287,4380_80830,Seacrest,102848-00012-1,1,4380_7778208_4020301,4380_1285 -4380_78060,292,4380_80831,Seacrest,102843-00016-1,1,4380_7778208_4020301,4380_1285 -4380_78060,290,4380_80832,Seacrest,102847-00015-1,1,4380_7778208_4020301,4380_1285 -4380_78060,294,4380_80833,Seacrest,102849-00018-1,1,4380_7778208_4020301,4380_1285 -4380_78060,295,4380_80834,Seacrest,102841-00019-1,1,4380_7778208_4020301,4380_1285 -4380_78060,293,4380_80835,Seacrest,102845-00017-1,1,4380_7778208_4020301,4380_1285 -4380_78060,296,4380_80836,Seacrest,103194-00021-1,1,4380_7778208_4020303,4380_1286 -4380_78114,294,4380_8084,Kells via Navan,54729-00018-1,0,4380_7778208_1090102,4380_123 -4380_78060,297,4380_80843,Seacrest,103030-00008-1,1,4380_7778208_4020302,4380_1285 -4380_78060,285,4380_80844,Seacrest,103395-00009-1,1,4380_7778208_4020304,4380_1286 -4380_78060,288,4380_80846,Seacrest,103389-00011-1,1,4380_7778208_4020304,4380_1286 -4380_78060,286,4380_80847,Seacrest,103387-00010-1,1,4380_7778208_4020304,4380_1286 -4380_78060,291,4380_80848,Seacrest,102850-00013-1,1,4380_7778208_4020301,4380_1287 -4380_78060,289,4380_80849,Seacrest,103393-00014-1,1,4380_7778208_4020304,4380_1286 -4380_78114,295,4380_8085,Kells via Navan,54728-00019-1,0,4380_7778208_1090102,4380_123 -4380_78060,287,4380_80850,Seacrest,103391-00012-1,1,4380_7778208_4020304,4380_1286 -4380_78060,292,4380_80851,Seacrest,103388-00016-1,1,4380_7778208_4020304,4380_1286 -4380_78060,290,4380_80852,Seacrest,103396-00015-1,1,4380_7778208_4020304,4380_1286 -4380_78060,294,4380_80853,Seacrest,103392-00018-1,1,4380_7778208_4020304,4380_1286 -4380_78060,295,4380_80854,Seacrest,103394-00019-1,1,4380_7778208_4020304,4380_1286 -4380_78060,293,4380_80855,Seacrest,103390-00017-1,1,4380_7778208_4020304,4380_1286 -4380_78060,296,4380_80856,Seacrest,102851-00021-1,1,4380_7778208_4020301,4380_1287 -4380_78114,296,4380_8086,Kells via Navan,55181-00021-1,0,4380_7778208_1090112,4380_127 -4380_78060,285,4380_80862,Seacrest,103039-00009-1,1,4380_7778208_4020302,4380_1285 -4380_78060,288,4380_80864,Seacrest,103035-00011-1,1,4380_7778208_4020302,4380_1285 -4380_78060,286,4380_80865,Seacrest,103041-00010-1,1,4380_7778208_4020302,4380_1285 -4380_78060,291,4380_80866,Seacrest,103397-00013-1,1,4380_7778208_4020304,4380_1286 -4380_78060,289,4380_80867,Seacrest,103037-00014-1,1,4380_7778208_4020302,4380_1285 -4380_78060,287,4380_80868,Seacrest,103033-00012-1,1,4380_7778208_4020302,4380_1285 -4380_78060,292,4380_80869,Seacrest,103042-00016-1,1,4380_7778208_4020302,4380_1285 -4380_78060,290,4380_80870,Seacrest,103040-00015-1,1,4380_7778208_4020302,4380_1285 -4380_78060,294,4380_80871,Seacrest,103034-00018-1,1,4380_7778208_4020302,4380_1285 -4380_78060,295,4380_80872,Seacrest,103038-00019-1,1,4380_7778208_4020302,4380_1285 -4380_78060,293,4380_80873,Seacrest,103036-00017-1,1,4380_7778208_4020302,4380_1285 -4380_78060,296,4380_80874,Seacrest,103398-00021-1,1,4380_7778208_4020304,4380_1286 -4380_78060,297,4380_80881,Seacrest,102865-00008-1,1,4380_7778208_4020301,4380_1285 -4380_78060,285,4380_80882,Seacrest,103207-00009-1,1,4380_7778208_4020303,4380_1286 -4380_78060,288,4380_80884,Seacrest,103215-00011-1,1,4380_7778208_4020303,4380_1286 -4380_78060,286,4380_80885,Seacrest,103211-00010-1,1,4380_7778208_4020303,4380_1286 -4380_78060,291,4380_80886,Seacrest,103044-00013-1,1,4380_7778208_4020302,4380_1287 -4380_78060,289,4380_80887,Seacrest,103213-00014-1,1,4380_7778208_4020303,4380_1286 -4380_78060,287,4380_80888,Seacrest,103209-00012-1,1,4380_7778208_4020303,4380_1286 -4380_78060,292,4380_80889,Seacrest,103212-00016-1,1,4380_7778208_4020303,4380_1286 -4380_78060,290,4380_80890,Seacrest,103208-00015-1,1,4380_7778208_4020303,4380_1286 -4380_78060,294,4380_80891,Seacrest,103210-00018-1,1,4380_7778208_4020303,4380_1286 -4380_78060,295,4380_80892,Seacrest,103214-00019-1,1,4380_7778208_4020303,4380_1286 -4380_78060,293,4380_80893,Seacrest,103216-00017-1,1,4380_7778208_4020303,4380_1286 -4380_78060,296,4380_80894,Seacrest,103045-00021-1,1,4380_7778208_4020302,4380_1287 -4380_78113,290,4380_809,Dundalk,50015-00015-1,0,4380_7778208_1000906,4380_11 -4380_78060,285,4380_80900,Seacrest,102872-00009-1,1,4380_7778208_4020301,4380_1285 -4380_78060,288,4380_80902,Seacrest,102870-00011-1,1,4380_7778208_4020301,4380_1285 -4380_78060,286,4380_80903,Seacrest,102866-00010-1,1,4380_7778208_4020301,4380_1285 -4380_78060,291,4380_80904,Seacrest,103217-00013-1,1,4380_7778208_4020303,4380_1286 -4380_78060,289,4380_80905,Seacrest,102874-00014-1,1,4380_7778208_4020301,4380_1285 -4380_78060,287,4380_80906,Seacrest,102868-00012-1,1,4380_7778208_4020301,4380_1285 -4380_78060,292,4380_80907,Seacrest,102867-00016-1,1,4380_7778208_4020301,4380_1285 -4380_78060,290,4380_80908,Seacrest,102873-00015-1,1,4380_7778208_4020301,4380_1285 -4380_78060,294,4380_80909,Seacrest,102869-00018-1,1,4380_7778208_4020301,4380_1285 -4380_78060,295,4380_80910,Seacrest,102875-00019-1,1,4380_7778208_4020301,4380_1285 -4380_78060,293,4380_80911,Seacrest,102871-00017-1,1,4380_7778208_4020301,4380_1285 -4380_78060,296,4380_80912,Seacrest,103218-00021-1,1,4380_7778208_4020303,4380_1286 -4380_78060,297,4380_80919,Seacrest,103056-00008-1,1,4380_7778208_4020302,4380_1285 -4380_78060,285,4380_80920,Seacrest,103413-00009-1,1,4380_7778208_4020304,4380_1286 -4380_78060,288,4380_80922,Seacrest,103411-00011-1,1,4380_7778208_4020304,4380_1286 -4380_78060,286,4380_80923,Seacrest,103415-00010-1,1,4380_7778208_4020304,4380_1286 -4380_78060,291,4380_80924,Seacrest,102876-00013-1,1,4380_7778208_4020301,4380_1287 -4380_78060,289,4380_80925,Seacrest,103417-00014-1,1,4380_7778208_4020304,4380_1286 -4380_78060,287,4380_80926,Seacrest,103419-00012-1,1,4380_7778208_4020304,4380_1286 -4380_78060,292,4380_80927,Seacrest,103416-00016-1,1,4380_7778208_4020304,4380_1286 -4380_78060,290,4380_80928,Seacrest,103414-00015-1,1,4380_7778208_4020304,4380_1286 -4380_78060,294,4380_80929,Seacrest,103420-00018-1,1,4380_7778208_4020304,4380_1286 -4380_78060,295,4380_80930,Seacrest,103418-00019-1,1,4380_7778208_4020304,4380_1286 -4380_78060,293,4380_80931,Seacrest,103412-00017-1,1,4380_7778208_4020304,4380_1286 -4380_78060,296,4380_80932,Seacrest,102877-00021-1,1,4380_7778208_4020301,4380_1287 -4380_78060,285,4380_80938,Seacrest,103065-00009-1,1,4380_7778208_4020302,4380_1285 -4380_78114,285,4380_8094,Kells via Navan,5386-00009-1,0,4380_7778208_1090103,4380_123 -4380_78060,288,4380_80940,Seacrest,103061-00011-1,1,4380_7778208_4020302,4380_1285 -4380_78060,286,4380_80941,Seacrest,103063-00010-1,1,4380_7778208_4020302,4380_1285 -4380_78060,291,4380_80942,Seacrest,103421-00013-1,1,4380_7778208_4020304,4380_1286 -4380_78060,289,4380_80943,Seacrest,103059-00014-1,1,4380_7778208_4020302,4380_1285 -4380_78060,287,4380_80944,Seacrest,103067-00012-1,1,4380_7778208_4020302,4380_1285 -4380_78060,292,4380_80945,Seacrest,103064-00016-1,1,4380_7778208_4020302,4380_1285 -4380_78060,290,4380_80946,Seacrest,103066-00015-1,1,4380_7778208_4020302,4380_1285 -4380_78060,294,4380_80947,Seacrest,103068-00018-1,1,4380_7778208_4020302,4380_1285 -4380_78060,295,4380_80948,Seacrest,103060-00019-1,1,4380_7778208_4020302,4380_1285 -4380_78060,293,4380_80949,Seacrest,103062-00017-1,1,4380_7778208_4020302,4380_1285 -4380_78114,286,4380_8095,Kells via Navan,5396-00010-1,0,4380_7778208_1090103,4380_123 -4380_78060,296,4380_80950,Seacrest,103422-00021-1,1,4380_7778208_4020304,4380_1286 -4380_78060,297,4380_80957,Seacrest,102891-00008-1,1,4380_7778208_4020301,4380_1285 -4380_78060,285,4380_80958,Seacrest,103237-00009-1,1,4380_7778208_4020303,4380_1286 -4380_78114,297,4380_8096,Kells via Navan,5896-00008-1,0,4380_7778208_1090111,4380_125 -4380_78060,288,4380_80960,Seacrest,103235-00011-1,1,4380_7778208_4020303,4380_1286 -4380_78060,286,4380_80961,Seacrest,103239-00010-1,1,4380_7778208_4020303,4380_1286 -4380_78060,291,4380_80962,Seacrest,103070-00013-1,1,4380_7778208_4020302,4380_1287 -4380_78060,289,4380_80963,Seacrest,103231-00014-1,1,4380_7778208_4020303,4380_1286 -4380_78060,287,4380_80964,Seacrest,103233-00012-1,1,4380_7778208_4020303,4380_1286 -4380_78060,292,4380_80965,Seacrest,103240-00016-1,1,4380_7778208_4020303,4380_1286 -4380_78060,290,4380_80966,Seacrest,103238-00015-1,1,4380_7778208_4020303,4380_1286 -4380_78060,294,4380_80967,Seacrest,103234-00018-1,1,4380_7778208_4020303,4380_1286 -4380_78060,295,4380_80968,Seacrest,103232-00019-1,1,4380_7778208_4020303,4380_1286 -4380_78060,293,4380_80969,Seacrest,103236-00017-1,1,4380_7778208_4020303,4380_1286 -4380_78114,288,4380_8097,Kells via Navan,5406-00011-1,0,4380_7778208_1090103,4380_123 -4380_78060,296,4380_80970,Seacrest,103071-00021-1,1,4380_7778208_4020302,4380_1287 -4380_78060,285,4380_80976,Seacrest,102896-00009-1,1,4380_7778208_4020301,4380_1285 -4380_78060,288,4380_80978,Seacrest,102894-00011-1,1,4380_7778208_4020301,4380_1285 -4380_78060,286,4380_80979,Seacrest,102892-00010-1,1,4380_7778208_4020301,4380_1285 -4380_78114,287,4380_8098,Kells via Navan,5416-00012-1,0,4380_7778208_1090103,4380_123 -4380_78060,291,4380_80980,Seacrest,103241-00013-1,1,4380_7778208_4020303,4380_1286 -4380_78060,289,4380_80981,Seacrest,102898-00014-1,1,4380_7778208_4020301,4380_1285 -4380_78060,287,4380_80982,Seacrest,102900-00012-1,1,4380_7778208_4020301,4380_1285 -4380_78060,292,4380_80983,Seacrest,102893-00016-1,1,4380_7778208_4020301,4380_1285 -4380_78060,290,4380_80984,Seacrest,102897-00015-1,1,4380_7778208_4020301,4380_1285 -4380_78060,294,4380_80985,Seacrest,102901-00018-1,1,4380_7778208_4020301,4380_1285 -4380_78060,295,4380_80986,Seacrest,102899-00019-1,1,4380_7778208_4020301,4380_1285 -4380_78060,293,4380_80987,Seacrest,102895-00017-1,1,4380_7778208_4020301,4380_1285 -4380_78060,296,4380_80988,Seacrest,103242-00021-1,1,4380_7778208_4020303,4380_1286 -4380_78114,289,4380_8099,Kells via Navan,5376-00014-1,0,4380_7778208_1090103,4380_123 -4380_78060,297,4380_80995,Seacrest,103084-00008-1,1,4380_7778208_4020302,4380_1285 -4380_78060,285,4380_80996,Seacrest,103437-00009-1,1,4380_7778208_4020304,4380_1286 -4380_78060,288,4380_80998,Seacrest,103435-00011-1,1,4380_7778208_4020304,4380_1286 -4380_78060,286,4380_80999,Seacrest,103439-00010-1,1,4380_7778208_4020304,4380_1286 -4380_77946,293,4380_81,Dundalk,50386-00017-1,0,4380_7778208_1000914,4380_1 -4380_78113,291,4380_810,Dundalk,50004-00013-1,0,4380_7778208_1000906,4380_14 -4380_78114,290,4380_8100,Kells via Navan,54786-00015-1,0,4380_7778208_1090103,4380_123 -4380_78060,291,4380_81000,Seacrest,102902-00013-1,1,4380_7778208_4020301,4380_1287 -4380_78060,289,4380_81001,Seacrest,103441-00014-1,1,4380_7778208_4020304,4380_1286 -4380_78060,287,4380_81002,Seacrest,103443-00012-1,1,4380_7778208_4020304,4380_1286 -4380_78060,292,4380_81003,Seacrest,103440-00016-1,1,4380_7778208_4020304,4380_1286 -4380_78060,290,4380_81004,Seacrest,103438-00015-1,1,4380_7778208_4020304,4380_1286 -4380_78060,294,4380_81005,Seacrest,103444-00018-1,1,4380_7778208_4020304,4380_1286 -4380_78060,295,4380_81006,Seacrest,103442-00019-1,1,4380_7778208_4020304,4380_1286 -4380_78060,293,4380_81007,Seacrest,103436-00017-1,1,4380_7778208_4020304,4380_1286 -4380_78060,296,4380_81008,Seacrest,102903-00021-1,1,4380_7778208_4020301,4380_1287 -4380_78114,291,4380_8101,Kells via Navan,5981-00013-1,0,4380_7778208_1090113,4380_127 -4380_78060,285,4380_81014,Seacrest,103089-00009-1,1,4380_7778208_4020302,4380_1285 -4380_78060,288,4380_81016,Seacrest,103091-00011-1,1,4380_7778208_4020302,4380_1285 -4380_78060,286,4380_81017,Seacrest,103085-00010-1,1,4380_7778208_4020302,4380_1285 -4380_78060,291,4380_81018,Seacrest,103445-00013-1,1,4380_7778208_4020304,4380_1286 -4380_78060,289,4380_81019,Seacrest,103087-00014-1,1,4380_7778208_4020302,4380_1285 -4380_78114,292,4380_8102,Kells via Navan,54784-00016-1,0,4380_7778208_1090103,4380_123 -4380_78060,287,4380_81020,Seacrest,103093-00012-1,1,4380_7778208_4020302,4380_1285 -4380_78060,292,4380_81021,Seacrest,103086-00016-1,1,4380_7778208_4020302,4380_1285 -4380_78060,290,4380_81022,Seacrest,103090-00015-1,1,4380_7778208_4020302,4380_1285 -4380_78060,294,4380_81023,Seacrest,103094-00018-1,1,4380_7778208_4020302,4380_1285 -4380_78060,295,4380_81024,Seacrest,103088-00019-1,1,4380_7778208_4020302,4380_1285 -4380_78060,293,4380_81025,Seacrest,103092-00017-1,1,4380_7778208_4020302,4380_1285 -4380_78060,296,4380_81026,Seacrest,103446-00021-1,1,4380_7778208_4020304,4380_1286 -4380_78114,293,4380_8103,Kells via Navan,54782-00017-1,0,4380_7778208_1090103,4380_123 -4380_78060,297,4380_81033,Seacrest,102915-00008-1,1,4380_7778208_4020301,4380_1285 -4380_78060,285,4380_81034,Seacrest,103257-00009-1,1,4380_7778208_4020303,4380_1286 -4380_78060,288,4380_81036,Seacrest,103261-00011-1,1,4380_7778208_4020303,4380_1286 -4380_78060,286,4380_81037,Seacrest,103263-00010-1,1,4380_7778208_4020303,4380_1286 -4380_78060,291,4380_81038,Seacrest,103095-00013-1,1,4380_7778208_4020302,4380_1287 -4380_78060,289,4380_81039,Seacrest,103259-00014-1,1,4380_7778208_4020303,4380_1286 -4380_78114,294,4380_8104,Kells via Navan,54783-00018-1,0,4380_7778208_1090103,4380_123 -4380_78060,287,4380_81040,Seacrest,103255-00012-1,1,4380_7778208_4020303,4380_1286 -4380_78060,292,4380_81041,Seacrest,103264-00016-1,1,4380_7778208_4020303,4380_1286 -4380_78060,290,4380_81042,Seacrest,103258-00015-1,1,4380_7778208_4020303,4380_1286 -4380_78060,294,4380_81043,Seacrest,103256-00018-1,1,4380_7778208_4020303,4380_1286 -4380_78060,295,4380_81044,Seacrest,103260-00019-1,1,4380_7778208_4020303,4380_1286 -4380_78060,293,4380_81045,Seacrest,103262-00017-1,1,4380_7778208_4020303,4380_1286 -4380_78060,296,4380_81046,Seacrest,103096-00021-1,1,4380_7778208_4020302,4380_1287 -4380_78114,295,4380_8105,Kells via Navan,54785-00019-1,0,4380_7778208_1090103,4380_123 -4380_78060,285,4380_81052,Seacrest,102918-00009-1,1,4380_7778208_4020301,4380_1285 -4380_78060,288,4380_81054,Seacrest,102924-00011-1,1,4380_7778208_4020301,4380_1285 -4380_78060,286,4380_81055,Seacrest,102926-00010-1,1,4380_7778208_4020301,4380_1285 -4380_78060,291,4380_81056,Seacrest,103265-00013-1,1,4380_7778208_4020303,4380_1286 -4380_78060,289,4380_81057,Seacrest,102922-00014-1,1,4380_7778208_4020301,4380_1285 -4380_78060,287,4380_81058,Seacrest,102920-00012-1,1,4380_7778208_4020301,4380_1285 -4380_78060,292,4380_81059,Seacrest,102927-00016-1,1,4380_7778208_4020301,4380_1285 -4380_78114,296,4380_8106,Kells via Navan,55206-00021-1,0,4380_7778208_1090113,4380_127 -4380_78060,290,4380_81060,Seacrest,102919-00015-1,1,4380_7778208_4020301,4380_1285 -4380_78060,294,4380_81061,Seacrest,102921-00018-1,1,4380_7778208_4020301,4380_1285 -4380_78060,295,4380_81062,Seacrest,102923-00019-1,1,4380_7778208_4020301,4380_1285 -4380_78060,293,4380_81063,Seacrest,102925-00017-1,1,4380_7778208_4020301,4380_1285 -4380_78060,296,4380_81064,Seacrest,103266-00021-1,1,4380_7778208_4020303,4380_1286 -4380_78060,297,4380_81071,Seacrest,103110-00008-1,1,4380_7778208_4020302,4380_1285 -4380_78060,285,4380_81072,Seacrest,103459-00009-1,1,4380_7778208_4020304,4380_1286 -4380_78060,288,4380_81074,Seacrest,103467-00011-1,1,4380_7778208_4020304,4380_1286 -4380_78060,286,4380_81075,Seacrest,103465-00010-1,1,4380_7778208_4020304,4380_1286 -4380_78060,291,4380_81076,Seacrest,102928-00013-1,1,4380_7778208_4020301,4380_1287 -4380_78060,289,4380_81077,Seacrest,103461-00014-1,1,4380_7778208_4020304,4380_1286 -4380_78060,287,4380_81078,Seacrest,103463-00012-1,1,4380_7778208_4020304,4380_1286 -4380_78060,292,4380_81079,Seacrest,103466-00016-1,1,4380_7778208_4020304,4380_1286 -4380_78060,290,4380_81080,Seacrest,103460-00015-1,1,4380_7778208_4020304,4380_1286 -4380_78060,294,4380_81081,Seacrest,103464-00018-1,1,4380_7778208_4020304,4380_1286 -4380_78060,295,4380_81082,Seacrest,103462-00019-1,1,4380_7778208_4020304,4380_1286 -4380_78060,293,4380_81083,Seacrest,103468-00017-1,1,4380_7778208_4020304,4380_1286 -4380_78060,296,4380_81084,Seacrest,102929-00021-1,1,4380_7778208_4020301,4380_1287 -4380_78060,285,4380_81090,Seacrest,103117-00009-1,1,4380_7778208_4020302,4380_1285 -4380_78060,288,4380_81092,Seacrest,103111-00011-1,1,4380_7778208_4020302,4380_1285 -4380_78060,286,4380_81093,Seacrest,103113-00010-1,1,4380_7778208_4020302,4380_1285 -4380_78060,291,4380_81094,Seacrest,103469-00013-1,1,4380_7778208_4020304,4380_1286 -4380_78060,289,4380_81095,Seacrest,103119-00014-1,1,4380_7778208_4020302,4380_1285 -4380_78060,287,4380_81096,Seacrest,103115-00012-1,1,4380_7778208_4020302,4380_1285 -4380_78060,292,4380_81097,Seacrest,103114-00016-1,1,4380_7778208_4020302,4380_1285 -4380_78060,290,4380_81098,Seacrest,103118-00015-1,1,4380_7778208_4020302,4380_1285 -4380_78060,294,4380_81099,Seacrest,103116-00018-1,1,4380_7778208_4020302,4380_1285 -4380_78113,292,4380_811,Dundalk,50007-00016-1,0,4380_7778208_1000906,4380_11 -4380_78060,295,4380_81100,Seacrest,103120-00019-1,1,4380_7778208_4020302,4380_1285 -4380_78060,293,4380_81101,Seacrest,103112-00017-1,1,4380_7778208_4020302,4380_1285 -4380_78060,296,4380_81102,Seacrest,103470-00021-1,1,4380_7778208_4020304,4380_1286 -4380_78060,297,4380_81109,Seacrest,102943-00008-1,1,4380_7778208_4020301,4380_1285 -4380_78060,285,4380_81110,Seacrest,103281-00009-1,1,4380_7778208_4020303,4380_1286 -4380_78060,288,4380_81112,Seacrest,103285-00011-1,1,4380_7778208_4020303,4380_1286 -4380_78060,286,4380_81113,Seacrest,103287-00010-1,1,4380_7778208_4020303,4380_1286 -4380_78060,291,4380_81114,Seacrest,103121-00013-1,1,4380_7778208_4020302,4380_1287 -4380_78060,289,4380_81115,Seacrest,103283-00014-1,1,4380_7778208_4020303,4380_1286 -4380_78060,287,4380_81116,Seacrest,103279-00012-1,1,4380_7778208_4020303,4380_1286 -4380_78060,292,4380_81117,Seacrest,103288-00016-1,1,4380_7778208_4020303,4380_1286 -4380_78060,290,4380_81118,Seacrest,103282-00015-1,1,4380_7778208_4020303,4380_1286 -4380_78060,294,4380_81119,Seacrest,103280-00018-1,1,4380_7778208_4020303,4380_1286 -4380_78060,295,4380_81120,Seacrest,103284-00019-1,1,4380_7778208_4020303,4380_1286 -4380_78060,293,4380_81121,Seacrest,103286-00017-1,1,4380_7778208_4020303,4380_1286 -4380_78060,296,4380_81122,Seacrest,103122-00021-1,1,4380_7778208_4020302,4380_1287 -4380_78060,285,4380_81128,Seacrest,102946-00009-1,1,4380_7778208_4020301,4380_1285 -4380_78060,288,4380_81130,Seacrest,102944-00011-1,1,4380_7778208_4020301,4380_1285 -4380_78060,286,4380_81131,Seacrest,102952-00010-1,1,4380_7778208_4020301,4380_1285 -4380_78060,291,4380_81132,Seacrest,103289-00013-1,1,4380_7778208_4020303,4380_1286 -4380_78060,289,4380_81133,Seacrest,102950-00014-1,1,4380_7778208_4020301,4380_1285 -4380_78060,287,4380_81134,Seacrest,102948-00012-1,1,4380_7778208_4020301,4380_1285 -4380_78060,292,4380_81135,Seacrest,102953-00016-1,1,4380_7778208_4020301,4380_1285 -4380_78060,290,4380_81136,Seacrest,102947-00015-1,1,4380_7778208_4020301,4380_1285 -4380_78060,294,4380_81137,Seacrest,102949-00018-1,1,4380_7778208_4020301,4380_1285 -4380_78060,295,4380_81138,Seacrest,102951-00019-1,1,4380_7778208_4020301,4380_1285 -4380_78060,293,4380_81139,Seacrest,102945-00017-1,1,4380_7778208_4020301,4380_1285 -4380_78114,285,4380_8114,Kells via Navan,5461-00009-1,0,4380_7778208_1090104,4380_123 -4380_78060,296,4380_81140,Seacrest,103290-00021-1,1,4380_7778208_4020303,4380_1286 -4380_78060,297,4380_81147,Seacrest,103136-00008-1,1,4380_7778208_4020302,4380_1285 -4380_78060,285,4380_81148,Seacrest,103489-00009-1,1,4380_7778208_4020304,4380_1286 -4380_78114,286,4380_8115,Kells via Navan,5471-00010-1,0,4380_7778208_1090104,4380_123 -4380_78060,288,4380_81150,Seacrest,103491-00011-1,1,4380_7778208_4020304,4380_1286 -4380_78060,286,4380_81151,Seacrest,103487-00010-1,1,4380_7778208_4020304,4380_1286 -4380_78060,291,4380_81152,Seacrest,102954-00013-1,1,4380_7778208_4020301,4380_1287 -4380_78060,289,4380_81153,Seacrest,103483-00014-1,1,4380_7778208_4020304,4380_1286 -4380_78060,287,4380_81154,Seacrest,103485-00012-1,1,4380_7778208_4020304,4380_1286 -4380_78060,292,4380_81155,Seacrest,103488-00016-1,1,4380_7778208_4020304,4380_1286 -4380_78060,290,4380_81156,Seacrest,103490-00015-1,1,4380_7778208_4020304,4380_1286 -4380_78060,294,4380_81157,Seacrest,103486-00018-1,1,4380_7778208_4020304,4380_1286 -4380_78060,295,4380_81158,Seacrest,103484-00019-1,1,4380_7778208_4020304,4380_1286 -4380_78060,293,4380_81159,Seacrest,103492-00017-1,1,4380_7778208_4020304,4380_1286 -4380_78114,297,4380_8116,Kells via Navan,5961-00008-1,0,4380_7778208_1090112,4380_125 -4380_78060,296,4380_81160,Seacrest,102955-00021-1,1,4380_7778208_4020301,4380_1287 -4380_78060,297,4380_81167,Seacrest,102959-00008-1,1,4380_7778208_4020301,4380_1285 -4380_78060,285,4380_81168,Seacrest,103301-00009-1,1,4380_7778208_4020303,4380_1286 -4380_78114,288,4380_8117,Kells via Navan,5481-00011-1,0,4380_7778208_1090104,4380_123 -4380_78060,288,4380_81170,Seacrest,103307-00011-1,1,4380_7778208_4020303,4380_1286 -4380_78060,286,4380_81171,Seacrest,103303-00010-1,1,4380_7778208_4020303,4380_1286 -4380_78060,291,4380_81172,Seacrest,103138-00013-1,1,4380_7778208_4020302,4380_1287 -4380_78060,289,4380_81173,Seacrest,103309-00014-1,1,4380_7778208_4020303,4380_1286 -4380_78060,287,4380_81174,Seacrest,103305-00012-1,1,4380_7778208_4020303,4380_1286 -4380_78060,292,4380_81175,Seacrest,103304-00016-1,1,4380_7778208_4020303,4380_1286 -4380_78060,290,4380_81176,Seacrest,103302-00015-1,1,4380_7778208_4020303,4380_1286 -4380_78060,294,4380_81177,Seacrest,103306-00018-1,1,4380_7778208_4020303,4380_1286 -4380_78060,295,4380_81178,Seacrest,103310-00019-1,1,4380_7778208_4020303,4380_1286 -4380_78060,293,4380_81179,Seacrest,103308-00017-1,1,4380_7778208_4020303,4380_1286 -4380_78114,287,4380_8118,Kells via Navan,5491-00012-1,0,4380_7778208_1090104,4380_123 -4380_78060,296,4380_81180,Seacrest,103139-00021-1,1,4380_7778208_4020302,4380_1287 -4380_78060,297,4380_81187,Seacrest,103140-00008-1,1,4380_7778208_4020302,4380_1285 -4380_78060,285,4380_81188,Seacrest,103503-00009-1,1,4380_7778208_4020304,4380_1286 -4380_78114,289,4380_8119,Kells via Navan,5451-00014-1,0,4380_7778208_1090104,4380_123 -4380_78060,288,4380_81190,Seacrest,103505-00011-1,1,4380_7778208_4020304,4380_1286 -4380_78060,286,4380_81191,Seacrest,103509-00010-1,1,4380_7778208_4020304,4380_1286 -4380_78060,291,4380_81192,Seacrest,102961-00013-1,1,4380_7778208_4020301,4380_1287 -4380_78060,289,4380_81193,Seacrest,103507-00014-1,1,4380_7778208_4020304,4380_1286 -4380_78060,287,4380_81194,Seacrest,103511-00012-1,1,4380_7778208_4020304,4380_1286 -4380_78060,292,4380_81195,Seacrest,103510-00016-1,1,4380_7778208_4020304,4380_1286 -4380_78060,290,4380_81196,Seacrest,103504-00015-1,1,4380_7778208_4020304,4380_1286 -4380_78060,294,4380_81197,Seacrest,103512-00018-1,1,4380_7778208_4020304,4380_1286 -4380_78060,295,4380_81198,Seacrest,103508-00019-1,1,4380_7778208_4020304,4380_1286 -4380_78060,293,4380_81199,Seacrest,103506-00017-1,1,4380_7778208_4020304,4380_1286 -4380_78113,293,4380_812,Dundalk,50011-00017-1,0,4380_7778208_1000906,4380_11 -4380_78114,290,4380_8120,Kells via Navan,54838-00015-1,0,4380_7778208_1090104,4380_123 -4380_78060,296,4380_81200,Seacrest,102962-00021-1,1,4380_7778208_4020301,4380_1287 -4380_78060,297,4380_81207,Seacrest,102965-00008-1,1,4380_7778208_4020301,4380_1285 -4380_78060,285,4380_81208,Seacrest,103321-00009-1,1,4380_7778208_4020303,4380_1286 -4380_78114,291,4380_8121,Kells via Navan,6014-00013-1,0,4380_7778208_1090114,4380_127 -4380_78060,288,4380_81210,Seacrest,103325-00011-1,1,4380_7778208_4020303,4380_1286 -4380_78060,286,4380_81211,Seacrest,103329-00010-1,1,4380_7778208_4020303,4380_1286 -4380_78060,291,4380_81212,Seacrest,103144-00013-1,1,4380_7778208_4020302,4380_1287 -4380_78060,289,4380_81213,Seacrest,103323-00014-1,1,4380_7778208_4020303,4380_1286 -4380_78060,287,4380_81214,Seacrest,103327-00012-1,1,4380_7778208_4020303,4380_1286 -4380_78060,292,4380_81215,Seacrest,103330-00016-1,1,4380_7778208_4020303,4380_1286 -4380_78060,290,4380_81216,Seacrest,103322-00015-1,1,4380_7778208_4020303,4380_1286 -4380_78060,294,4380_81217,Seacrest,103328-00018-1,1,4380_7778208_4020303,4380_1286 -4380_78060,295,4380_81218,Seacrest,103324-00019-1,1,4380_7778208_4020303,4380_1286 -4380_78060,293,4380_81219,Seacrest,103326-00017-1,1,4380_7778208_4020303,4380_1286 -4380_78114,292,4380_8122,Kells via Navan,54841-00016-1,0,4380_7778208_1090104,4380_123 -4380_78060,296,4380_81220,Seacrest,103145-00021-1,1,4380_7778208_4020302,4380_1287 -4380_78060,297,4380_81227,Seacrest,103146-00008-1,1,4380_7778208_4020302,4380_1285 -4380_78060,285,4380_81228,Seacrest,103525-00009-1,1,4380_7778208_4020304,4380_1286 -4380_78114,293,4380_8123,Kells via Navan,54842-00017-1,0,4380_7778208_1090104,4380_123 -4380_78060,288,4380_81230,Seacrest,103531-00011-1,1,4380_7778208_4020304,4380_1286 -4380_78060,286,4380_81231,Seacrest,103523-00010-1,1,4380_7778208_4020304,4380_1286 -4380_78060,291,4380_81232,Seacrest,102967-00013-1,1,4380_7778208_4020301,4380_1286 -4380_78060,289,4380_81233,Seacrest,103527-00014-1,1,4380_7778208_4020304,4380_1286 -4380_78060,287,4380_81234,Seacrest,103529-00012-1,1,4380_7778208_4020304,4380_1286 -4380_78060,292,4380_81235,Seacrest,103524-00016-1,1,4380_7778208_4020304,4380_1286 -4380_78060,290,4380_81236,Seacrest,103526-00015-1,1,4380_7778208_4020304,4380_1286 -4380_78060,294,4380_81237,Seacrest,103530-00018-1,1,4380_7778208_4020304,4380_1286 -4380_78060,295,4380_81238,Seacrest,103528-00019-1,1,4380_7778208_4020304,4380_1286 -4380_78060,293,4380_81239,Seacrest,103532-00017-1,1,4380_7778208_4020304,4380_1286 -4380_78114,294,4380_8124,Kells via Navan,54839-00018-1,0,4380_7778208_1090104,4380_123 -4380_78060,296,4380_81240,Seacrest,102968-00021-1,1,4380_7778208_4020301,4380_1286 -4380_78061,285,4380_81246,Newcastle,103769-00009-1,0,4380_7778208_4040302,4380_1291 -4380_78061,288,4380_81248,Newcastle,103775-00011-1,0,4380_7778208_4040302,4380_1291 -4380_78061,286,4380_81249,Newcastle,103777-00010-1,0,4380_7778208_4040302,4380_1291 -4380_78114,295,4380_8125,Kells via Navan,54840-00019-1,0,4380_7778208_1090104,4380_123 -4380_78061,291,4380_81250,Newcastle,103773-00013-1,0,4380_7778208_4040302,4380_1294 -4380_78061,289,4380_81251,Newcastle,103767-00014-1,0,4380_7778208_4040302,4380_1291 -4380_78061,287,4380_81252,Newcastle,103771-00012-1,0,4380_7778208_4040302,4380_1291 -4380_78061,292,4380_81253,Newcastle,103778-00016-1,0,4380_7778208_4040302,4380_1291 -4380_78061,290,4380_81254,Newcastle,103770-00015-1,0,4380_7778208_4040302,4380_1291 -4380_78061,294,4380_81255,Newcastle,103772-00018-1,0,4380_7778208_4040302,4380_1291 -4380_78061,295,4380_81256,Newcastle,103768-00019-1,0,4380_7778208_4040302,4380_1291 -4380_78061,293,4380_81257,Newcastle,103776-00017-1,0,4380_7778208_4040302,4380_1291 -4380_78061,296,4380_81258,Newcastle,103774-00021-1,0,4380_7778208_4040302,4380_1294 -4380_78114,296,4380_8126,Kells via Navan,55231-00021-1,0,4380_7778208_1090114,4380_127 -4380_78061,285,4380_81264,Newcastle,103555-00009-1,0,4380_7778208_4040301,4380_1288 -4380_78061,288,4380_81266,Newcastle,103553-00011-1,0,4380_7778208_4040301,4380_1288 -4380_78061,286,4380_81267,Newcastle,103547-00010-1,0,4380_7778208_4040301,4380_1288 -4380_78061,291,4380_81268,Newcastle,103551-00013-1,0,4380_7778208_4040301,4380_1290 -4380_78061,289,4380_81269,Newcastle,103549-00014-1,0,4380_7778208_4040301,4380_1288 -4380_78061,287,4380_81270,Newcastle,103545-00012-1,0,4380_7778208_4040301,4380_1288 -4380_78061,292,4380_81271,Newcastle,103548-00016-1,0,4380_7778208_4040301,4380_1288 -4380_78061,290,4380_81272,Newcastle,103556-00015-1,0,4380_7778208_4040301,4380_1288 -4380_78061,294,4380_81273,Newcastle,103546-00018-1,0,4380_7778208_4040301,4380_1288 -4380_78061,295,4380_81274,Newcastle,103550-00019-1,0,4380_7778208_4040301,4380_1288 -4380_78061,293,4380_81275,Newcastle,103554-00017-1,0,4380_7778208_4040301,4380_1288 -4380_78061,296,4380_81276,Newcastle,103552-00021-1,0,4380_7778208_4040301,4380_1290 -4380_78061,285,4380_81282,Newcastle,104233-00009-1,0,4380_7778208_4040304,4380_1291 -4380_78061,288,4380_81284,Newcastle,104235-00011-1,0,4380_7778208_4040304,4380_1291 -4380_78061,286,4380_81285,Newcastle,104239-00010-1,0,4380_7778208_4040304,4380_1291 -4380_78061,291,4380_81286,Newcastle,104243-00013-1,0,4380_7778208_4040304,4380_1294 -4380_78061,289,4380_81287,Newcastle,104241-00014-1,0,4380_7778208_4040304,4380_1291 -4380_78061,287,4380_81288,Newcastle,104237-00012-1,0,4380_7778208_4040304,4380_1291 -4380_78061,292,4380_81289,Newcastle,104240-00016-1,0,4380_7778208_4040304,4380_1291 -4380_78061,290,4380_81290,Newcastle,104234-00015-1,0,4380_7778208_4040304,4380_1291 -4380_78061,294,4380_81291,Newcastle,104238-00018-1,0,4380_7778208_4040304,4380_1291 -4380_78061,295,4380_81292,Newcastle,104242-00019-1,0,4380_7778208_4040304,4380_1291 -4380_78061,293,4380_81293,Newcastle,104236-00017-1,0,4380_7778208_4040304,4380_1291 -4380_78061,296,4380_81294,Newcastle,104244-00021-1,0,4380_7778208_4040304,4380_1294 -4380_78113,294,4380_813,Dundalk,50013-00018-1,0,4380_7778208_1000906,4380_11 -4380_78061,285,4380_81300,Newcastle,104023-00009-1,0,4380_7778208_4040303,4380_1288 -4380_78061,288,4380_81302,Newcastle,104015-00011-1,0,4380_7778208_4040303,4380_1288 -4380_78061,286,4380_81303,Newcastle,104017-00010-1,0,4380_7778208_4040303,4380_1288 -4380_78061,291,4380_81304,Newcastle,104021-00013-1,0,4380_7778208_4040303,4380_1290 -4380_78061,289,4380_81305,Newcastle,104019-00014-1,0,4380_7778208_4040303,4380_1288 -4380_78061,287,4380_81306,Newcastle,104013-00012-1,0,4380_7778208_4040303,4380_1288 -4380_78061,292,4380_81307,Newcastle,104018-00016-1,0,4380_7778208_4040303,4380_1288 -4380_78061,290,4380_81308,Newcastle,104024-00015-1,0,4380_7778208_4040303,4380_1288 -4380_78061,294,4380_81309,Newcastle,104014-00018-1,0,4380_7778208_4040303,4380_1288 -4380_78061,295,4380_81310,Newcastle,104020-00019-1,0,4380_7778208_4040303,4380_1288 -4380_78061,293,4380_81311,Newcastle,104016-00017-1,0,4380_7778208_4040303,4380_1288 -4380_78061,296,4380_81312,Newcastle,104022-00021-1,0,4380_7778208_4040303,4380_1290 -4380_78061,285,4380_81318,Newcastle,103797-00009-1,0,4380_7778208_4040302,4380_1288 -4380_78061,288,4380_81320,Newcastle,103799-00011-1,0,4380_7778208_4040302,4380_1288 -4380_78061,286,4380_81321,Newcastle,103791-00010-1,0,4380_7778208_4040302,4380_1288 -4380_78061,291,4380_81322,Newcastle,103795-00013-1,0,4380_7778208_4040302,4380_1290 -4380_78061,289,4380_81323,Newcastle,103801-00014-1,0,4380_7778208_4040302,4380_1288 -4380_78061,287,4380_81324,Newcastle,103793-00012-1,0,4380_7778208_4040302,4380_1288 -4380_78061,292,4380_81325,Newcastle,103792-00016-1,0,4380_7778208_4040302,4380_1288 -4380_78061,290,4380_81326,Newcastle,103798-00015-1,0,4380_7778208_4040302,4380_1288 -4380_78061,294,4380_81327,Newcastle,103794-00018-1,0,4380_7778208_4040302,4380_1288 -4380_78061,295,4380_81328,Newcastle,103802-00019-1,0,4380_7778208_4040302,4380_1288 -4380_78061,293,4380_81329,Newcastle,103800-00017-1,0,4380_7778208_4040302,4380_1288 -4380_78061,296,4380_81330,Newcastle,103796-00021-1,0,4380_7778208_4040302,4380_1290 -4380_78061,297,4380_81337,Newcastle,103803-00008-1,0,4380_7778208_4040302,4380_1288 -4380_78061,285,4380_81338,Newcastle,104261-00009-1,0,4380_7778208_4040304,4380_1290 -4380_78114,285,4380_8134,Kells via Navan,5535-00009-1,0,4380_7778208_1090105,4380_123 -4380_78061,288,4380_81340,Newcastle,104265-00011-1,0,4380_7778208_4040304,4380_1290 -4380_78061,286,4380_81341,Newcastle,104259-00010-1,0,4380_7778208_4040304,4380_1290 -4380_78061,291,4380_81342,Newcastle,104267-00013-1,0,4380_7778208_4040304,4380_1293 -4380_78061,289,4380_81343,Newcastle,104263-00014-1,0,4380_7778208_4040304,4380_1290 -4380_78061,287,4380_81344,Newcastle,104257-00012-1,0,4380_7778208_4040304,4380_1290 -4380_78061,292,4380_81345,Newcastle,104260-00016-1,0,4380_7778208_4040304,4380_1290 -4380_78061,290,4380_81346,Newcastle,104262-00015-1,0,4380_7778208_4040304,4380_1290 -4380_78061,294,4380_81347,Newcastle,104258-00018-1,0,4380_7778208_4040304,4380_1290 -4380_78061,295,4380_81348,Newcastle,104264-00019-1,0,4380_7778208_4040304,4380_1290 -4380_78061,293,4380_81349,Newcastle,104266-00017-1,0,4380_7778208_4040304,4380_1290 -4380_78114,286,4380_8135,Kells via Navan,5543-00010-1,0,4380_7778208_1090105,4380_123 -4380_78061,296,4380_81350,Newcastle,104268-00021-1,0,4380_7778208_4040304,4380_1293 -4380_78061,297,4380_81357,Newcastle,104269-00008-1,0,4380_7778208_4040304,4380_1288 -4380_78061,285,4380_81358,Newcastle,103580-00009-1,0,4380_7778208_4040301,4380_1290 -4380_78114,297,4380_8136,Kells via Navan,5991-00008-1,0,4380_7778208_1090113,4380_125 -4380_78061,288,4380_81360,Newcastle,103572-00011-1,0,4380_7778208_4040301,4380_1290 -4380_78061,286,4380_81361,Newcastle,103576-00010-1,0,4380_7778208_4040301,4380_1290 -4380_78061,291,4380_81362,Newcastle,103574-00013-1,0,4380_7778208_4040301,4380_1293 -4380_78061,289,4380_81363,Newcastle,103570-00014-1,0,4380_7778208_4040301,4380_1290 -4380_78061,287,4380_81364,Newcastle,103578-00012-1,0,4380_7778208_4040301,4380_1290 -4380_78061,292,4380_81365,Newcastle,103577-00016-1,0,4380_7778208_4040301,4380_1290 -4380_78061,290,4380_81366,Newcastle,103581-00015-1,0,4380_7778208_4040301,4380_1290 -4380_78061,294,4380_81367,Newcastle,103579-00018-1,0,4380_7778208_4040301,4380_1290 -4380_78061,295,4380_81368,Newcastle,103571-00019-1,0,4380_7778208_4040301,4380_1290 -4380_78061,293,4380_81369,Newcastle,103573-00017-1,0,4380_7778208_4040301,4380_1290 -4380_78114,288,4380_8137,Kells via Navan,5551-00011-1,0,4380_7778208_1090105,4380_123 -4380_78061,296,4380_81370,Newcastle,103575-00021-1,0,4380_7778208_4040301,4380_1293 -4380_78061,297,4380_81377,Newcastle,103582-00008-1,0,4380_7778208_4040301,4380_1288 -4380_78061,285,4380_81378,Newcastle,104038-00009-1,0,4380_7778208_4040303,4380_1290 -4380_78114,287,4380_8138,Kells via Navan,5559-00012-1,0,4380_7778208_1090105,4380_123 -4380_78061,288,4380_81380,Newcastle,104046-00011-1,0,4380_7778208_4040303,4380_1290 -4380_78061,286,4380_81381,Newcastle,104044-00010-1,0,4380_7778208_4040303,4380_1290 -4380_78061,291,4380_81382,Newcastle,104040-00013-1,0,4380_7778208_4040303,4380_1293 -4380_78061,289,4380_81383,Newcastle,104048-00014-1,0,4380_7778208_4040303,4380_1290 -4380_78061,287,4380_81384,Newcastle,104042-00012-1,0,4380_7778208_4040303,4380_1290 -4380_78061,292,4380_81385,Newcastle,104045-00016-1,0,4380_7778208_4040303,4380_1290 -4380_78061,290,4380_81386,Newcastle,104039-00015-1,0,4380_7778208_4040303,4380_1290 -4380_78061,294,4380_81387,Newcastle,104043-00018-1,0,4380_7778208_4040303,4380_1290 -4380_78061,295,4380_81388,Newcastle,104049-00019-1,0,4380_7778208_4040303,4380_1290 -4380_78061,293,4380_81389,Newcastle,104047-00017-1,0,4380_7778208_4040303,4380_1290 -4380_78114,289,4380_8139,Kells via Navan,5527-00014-1,0,4380_7778208_1090105,4380_123 -4380_78061,296,4380_81390,Newcastle,104041-00021-1,0,4380_7778208_4040303,4380_1293 -4380_78061,297,4380_81397,Newcastle,104050-00008-1,0,4380_7778208_4040303,4380_1288 -4380_78061,285,4380_81398,Newcastle,103825-00009-1,0,4380_7778208_4040302,4380_1290 -4380_78113,295,4380_814,Dundalk,50009-00019-1,0,4380_7778208_1000906,4380_11 -4380_78114,290,4380_8140,Kells via Navan,54898-00015-1,0,4380_7778208_1090105,4380_123 -4380_78061,288,4380_81400,Newcastle,103821-00011-1,0,4380_7778208_4040302,4380_1290 -4380_78061,286,4380_81401,Newcastle,103827-00010-1,0,4380_7778208_4040302,4380_1290 -4380_78061,291,4380_81402,Newcastle,103817-00013-1,0,4380_7778208_4040302,4380_1293 -4380_78061,289,4380_81403,Newcastle,103823-00014-1,0,4380_7778208_4040302,4380_1290 -4380_78061,287,4380_81404,Newcastle,103819-00012-1,0,4380_7778208_4040302,4380_1290 -4380_78061,292,4380_81405,Newcastle,103828-00016-1,0,4380_7778208_4040302,4380_1290 -4380_78061,290,4380_81406,Newcastle,103826-00015-1,0,4380_7778208_4040302,4380_1290 -4380_78061,294,4380_81407,Newcastle,103820-00018-1,0,4380_7778208_4040302,4380_1290 -4380_78061,295,4380_81408,Newcastle,103824-00019-1,0,4380_7778208_4040302,4380_1290 -4380_78061,293,4380_81409,Newcastle,103822-00017-1,0,4380_7778208_4040302,4380_1290 -4380_78114,291,4380_8141,Kells via Navan,6054-00013-1,0,4380_7778208_1090115,4380_127 -4380_78061,296,4380_81410,Newcastle,103818-00021-1,0,4380_7778208_4040302,4380_1293 -4380_78061,297,4380_81417,Newcastle,103829-00008-1,0,4380_7778208_4040302,4380_1288 -4380_78061,285,4380_81418,Newcastle,104293-00009-1,0,4380_7778208_4040304,4380_1290 -4380_78114,292,4380_8142,Kells via Navan,54896-00016-1,0,4380_7778208_1090105,4380_123 -4380_78061,288,4380_81420,Newcastle,104287-00011-1,0,4380_7778208_4040304,4380_1290 -4380_78061,286,4380_81421,Newcastle,104291-00010-1,0,4380_7778208_4040304,4380_1290 -4380_78061,291,4380_81422,Newcastle,104285-00013-1,0,4380_7778208_4040304,4380_1293 -4380_78061,289,4380_81423,Newcastle,104283-00014-1,0,4380_7778208_4040304,4380_1290 -4380_78061,287,4380_81424,Newcastle,104289-00012-1,0,4380_7778208_4040304,4380_1290 -4380_78061,292,4380_81425,Newcastle,104292-00016-1,0,4380_7778208_4040304,4380_1290 -4380_78061,290,4380_81426,Newcastle,104294-00015-1,0,4380_7778208_4040304,4380_1290 -4380_78061,294,4380_81427,Newcastle,104290-00018-1,0,4380_7778208_4040304,4380_1290 -4380_78061,295,4380_81428,Newcastle,104284-00019-1,0,4380_7778208_4040304,4380_1290 -4380_78061,293,4380_81429,Newcastle,104288-00017-1,0,4380_7778208_4040304,4380_1290 -4380_78114,293,4380_8143,Kells via Navan,54897-00017-1,0,4380_7778208_1090105,4380_123 -4380_78061,296,4380_81430,Newcastle,104286-00021-1,0,4380_7778208_4040304,4380_1293 -4380_78061,297,4380_81437,Newcastle,104295-00008-1,0,4380_7778208_4040304,4380_1288 -4380_78061,285,4380_81438,Newcastle,103602-00009-1,0,4380_7778208_4040301,4380_1290 -4380_78114,294,4380_8144,Kells via Navan,54899-00018-1,0,4380_7778208_1090105,4380_123 -4380_78061,288,4380_81440,Newcastle,103600-00011-1,0,4380_7778208_4040301,4380_1290 -4380_78061,286,4380_81441,Newcastle,103604-00010-1,0,4380_7778208_4040301,4380_1290 -4380_78061,291,4380_81442,Newcastle,103598-00013-1,0,4380_7778208_4040301,4380_1293 -4380_78061,289,4380_81443,Newcastle,103606-00014-1,0,4380_7778208_4040301,4380_1290 -4380_78061,287,4380_81444,Newcastle,103596-00012-1,0,4380_7778208_4040301,4380_1290 -4380_78061,292,4380_81445,Newcastle,103605-00016-1,0,4380_7778208_4040301,4380_1290 -4380_78061,290,4380_81446,Newcastle,103603-00015-1,0,4380_7778208_4040301,4380_1290 -4380_78061,294,4380_81447,Newcastle,103597-00018-1,0,4380_7778208_4040301,4380_1290 -4380_78061,295,4380_81448,Newcastle,103607-00019-1,0,4380_7778208_4040301,4380_1290 -4380_78061,293,4380_81449,Newcastle,103601-00017-1,0,4380_7778208_4040301,4380_1290 -4380_78114,295,4380_8145,Kells via Navan,54900-00019-1,0,4380_7778208_1090105,4380_123 -4380_78061,296,4380_81450,Newcastle,103599-00021-1,0,4380_7778208_4040301,4380_1293 -4380_78061,297,4380_81457,Newcastle,103608-00008-1,0,4380_7778208_4040301,4380_1288 -4380_78061,285,4380_81458,Newcastle,104070-00009-1,0,4380_7778208_4040303,4380_1290 -4380_78114,296,4380_8146,Kells via Navan,55266-00021-1,0,4380_7778208_1090115,4380_127 -4380_78061,288,4380_81460,Newcastle,104064-00011-1,0,4380_7778208_4040303,4380_1290 -4380_78061,286,4380_81461,Newcastle,104068-00010-1,0,4380_7778208_4040303,4380_1290 -4380_78061,291,4380_81462,Newcastle,104074-00013-1,0,4380_7778208_4040303,4380_1293 -4380_78061,289,4380_81463,Newcastle,104066-00014-1,0,4380_7778208_4040303,4380_1290 -4380_78061,287,4380_81464,Newcastle,104072-00012-1,0,4380_7778208_4040303,4380_1290 -4380_78061,292,4380_81465,Newcastle,104069-00016-1,0,4380_7778208_4040303,4380_1290 -4380_78061,290,4380_81466,Newcastle,104071-00015-1,0,4380_7778208_4040303,4380_1290 -4380_78061,294,4380_81467,Newcastle,104073-00018-1,0,4380_7778208_4040303,4380_1290 -4380_78061,295,4380_81468,Newcastle,104067-00019-1,0,4380_7778208_4040303,4380_1290 -4380_78061,293,4380_81469,Newcastle,104065-00017-1,0,4380_7778208_4040303,4380_1290 -4380_78061,296,4380_81470,Newcastle,104075-00021-1,0,4380_7778208_4040303,4380_1293 -4380_78061,297,4380_81477,Newcastle,104076-00008-1,0,4380_7778208_4040303,4380_1288 -4380_78061,285,4380_81478,Newcastle,103849-00009-1,0,4380_7778208_4040302,4380_1290 -4380_78061,288,4380_81480,Newcastle,103851-00011-1,0,4380_7778208_4040302,4380_1290 -4380_78061,286,4380_81481,Newcastle,103845-00010-1,0,4380_7778208_4040302,4380_1290 -4380_78061,291,4380_81482,Newcastle,103847-00013-1,0,4380_7778208_4040302,4380_1293 -4380_78061,289,4380_81483,Newcastle,103853-00014-1,0,4380_7778208_4040302,4380_1290 -4380_78061,287,4380_81484,Newcastle,103843-00012-1,0,4380_7778208_4040302,4380_1290 -4380_78061,292,4380_81485,Newcastle,103846-00016-1,0,4380_7778208_4040302,4380_1290 -4380_78061,290,4380_81486,Newcastle,103850-00015-1,0,4380_7778208_4040302,4380_1290 -4380_78061,294,4380_81487,Newcastle,103844-00018-1,0,4380_7778208_4040302,4380_1290 -4380_78061,295,4380_81488,Newcastle,103854-00019-1,0,4380_7778208_4040302,4380_1290 -4380_78061,293,4380_81489,Newcastle,103852-00017-1,0,4380_7778208_4040302,4380_1290 -4380_78061,296,4380_81490,Newcastle,103848-00021-1,0,4380_7778208_4040302,4380_1293 -4380_78061,297,4380_81497,Newcastle,103855-00008-1,0,4380_7778208_4040302,4380_1288 -4380_78061,285,4380_81498,Newcastle,104319-00009-1,0,4380_7778208_4040304,4380_1290 -4380_78113,296,4380_815,Dundalk,50005-00021-1,0,4380_7778208_1000906,4380_14 -4380_78061,288,4380_81500,Newcastle,104309-00011-1,0,4380_7778208_4040304,4380_1290 -4380_78061,286,4380_81501,Newcastle,104313-00010-1,0,4380_7778208_4040304,4380_1290 -4380_78061,291,4380_81502,Newcastle,104311-00013-1,0,4380_7778208_4040304,4380_1293 -4380_78061,289,4380_81503,Newcastle,104317-00014-1,0,4380_7778208_4040304,4380_1290 -4380_78061,287,4380_81504,Newcastle,104315-00012-1,0,4380_7778208_4040304,4380_1290 -4380_78061,292,4380_81505,Newcastle,104314-00016-1,0,4380_7778208_4040304,4380_1290 -4380_78061,290,4380_81506,Newcastle,104320-00015-1,0,4380_7778208_4040304,4380_1290 -4380_78061,294,4380_81507,Newcastle,104316-00018-1,0,4380_7778208_4040304,4380_1290 -4380_78061,295,4380_81508,Newcastle,104318-00019-1,0,4380_7778208_4040304,4380_1290 -4380_78061,293,4380_81509,Newcastle,104310-00017-1,0,4380_7778208_4040304,4380_1290 -4380_78061,296,4380_81510,Newcastle,104312-00021-1,0,4380_7778208_4040304,4380_1293 -4380_78061,297,4380_81517,Newcastle,104321-00008-1,0,4380_7778208_4040304,4380_1288 -4380_78061,285,4380_81518,Newcastle,103630-00009-1,0,4380_7778208_4040301,4380_1290 -4380_78061,288,4380_81520,Newcastle,103624-00011-1,0,4380_7778208_4040301,4380_1290 -4380_78061,286,4380_81521,Newcastle,103628-00010-1,0,4380_7778208_4040301,4380_1290 -4380_78061,291,4380_81522,Newcastle,103626-00013-1,0,4380_7778208_4040301,4380_1293 -4380_78061,289,4380_81523,Newcastle,103622-00014-1,0,4380_7778208_4040301,4380_1290 -4380_78061,287,4380_81524,Newcastle,103632-00012-1,0,4380_7778208_4040301,4380_1290 -4380_78061,292,4380_81525,Newcastle,103629-00016-1,0,4380_7778208_4040301,4380_1290 -4380_78061,290,4380_81526,Newcastle,103631-00015-1,0,4380_7778208_4040301,4380_1290 -4380_78061,294,4380_81527,Newcastle,103633-00018-1,0,4380_7778208_4040301,4380_1290 -4380_78061,295,4380_81528,Newcastle,103623-00019-1,0,4380_7778208_4040301,4380_1290 -4380_78061,293,4380_81529,Newcastle,103625-00017-1,0,4380_7778208_4040301,4380_1290 -4380_78061,296,4380_81530,Newcastle,103627-00021-1,0,4380_7778208_4040301,4380_1293 -4380_78061,297,4380_81537,Newcastle,103634-00008-1,0,4380_7778208_4040301,4380_1288 -4380_78061,285,4380_81538,Newcastle,104092-00009-1,0,4380_7778208_4040303,4380_1290 -4380_78114,285,4380_8154,Kells via Navan,5240-00009-1,0,4380_7778208_1090101,4380_123 -4380_78061,288,4380_81540,Newcastle,104096-00011-1,0,4380_7778208_4040303,4380_1290 -4380_78061,286,4380_81541,Newcastle,104100-00010-1,0,4380_7778208_4040303,4380_1290 -4380_78061,291,4380_81542,Newcastle,104094-00013-1,0,4380_7778208_4040303,4380_1293 -4380_78061,289,4380_81543,Newcastle,104098-00014-1,0,4380_7778208_4040303,4380_1290 -4380_78061,287,4380_81544,Newcastle,104090-00012-1,0,4380_7778208_4040303,4380_1290 -4380_78061,292,4380_81545,Newcastle,104101-00016-1,0,4380_7778208_4040303,4380_1290 -4380_78061,290,4380_81546,Newcastle,104093-00015-1,0,4380_7778208_4040303,4380_1290 -4380_78061,294,4380_81547,Newcastle,104091-00018-1,0,4380_7778208_4040303,4380_1290 -4380_78061,295,4380_81548,Newcastle,104099-00019-1,0,4380_7778208_4040303,4380_1290 -4380_78061,293,4380_81549,Newcastle,104097-00017-1,0,4380_7778208_4040303,4380_1290 -4380_78114,286,4380_8155,Kells via Navan,5250-00010-1,0,4380_7778208_1090101,4380_123 -4380_78061,296,4380_81550,Newcastle,104095-00021-1,0,4380_7778208_4040303,4380_1293 -4380_78061,297,4380_81557,Newcastle,104102-00008-1,0,4380_7778208_4040303,4380_1288 -4380_78061,285,4380_81558,Newcastle,103869-00009-1,0,4380_7778208_4040302,4380_1290 -4380_78114,297,4380_8156,Kells via Navan,5813-00008-1,0,4380_7778208_1090109,4380_125 -4380_78061,288,4380_81560,Newcastle,103879-00011-1,0,4380_7778208_4040302,4380_1290 -4380_78061,286,4380_81561,Newcastle,103873-00010-1,0,4380_7778208_4040302,4380_1290 -4380_78061,291,4380_81562,Newcastle,103871-00013-1,0,4380_7778208_4040302,4380_1293 -4380_78061,289,4380_81563,Newcastle,103875-00014-1,0,4380_7778208_4040302,4380_1290 -4380_78061,287,4380_81564,Newcastle,103877-00012-1,0,4380_7778208_4040302,4380_1290 -4380_78061,292,4380_81565,Newcastle,103874-00016-1,0,4380_7778208_4040302,4380_1290 -4380_78061,290,4380_81566,Newcastle,103870-00015-1,0,4380_7778208_4040302,4380_1290 -4380_78061,294,4380_81567,Newcastle,103878-00018-1,0,4380_7778208_4040302,4380_1290 -4380_78061,295,4380_81568,Newcastle,103876-00019-1,0,4380_7778208_4040302,4380_1290 -4380_78061,293,4380_81569,Newcastle,103880-00017-1,0,4380_7778208_4040302,4380_1290 -4380_78114,288,4380_8157,Kells via Navan,5260-00011-1,0,4380_7778208_1090101,4380_123 -4380_78061,296,4380_81570,Newcastle,103872-00021-1,0,4380_7778208_4040302,4380_1293 -4380_78061,297,4380_81577,Newcastle,103881-00008-1,0,4380_7778208_4040302,4380_1288 -4380_78061,285,4380_81578,Newcastle,104339-00009-1,0,4380_7778208_4040304,4380_1290 -4380_78114,287,4380_8158,Kells via Navan,5270-00012-1,0,4380_7778208_1090101,4380_123 -4380_78061,288,4380_81580,Newcastle,104343-00011-1,0,4380_7778208_4040304,4380_1290 -4380_78061,286,4380_81581,Newcastle,104337-00010-1,0,4380_7778208_4040304,4380_1290 -4380_78061,291,4380_81582,Newcastle,104335-00013-1,0,4380_7778208_4040304,4380_1293 -4380_78061,289,4380_81583,Newcastle,104341-00014-1,0,4380_7778208_4040304,4380_1290 -4380_78061,287,4380_81584,Newcastle,104345-00012-1,0,4380_7778208_4040304,4380_1290 -4380_78061,292,4380_81585,Newcastle,104338-00016-1,0,4380_7778208_4040304,4380_1290 -4380_78061,290,4380_81586,Newcastle,104340-00015-1,0,4380_7778208_4040304,4380_1290 -4380_78061,294,4380_81587,Newcastle,104346-00018-1,0,4380_7778208_4040304,4380_1290 -4380_78061,295,4380_81588,Newcastle,104342-00019-1,0,4380_7778208_4040304,4380_1290 -4380_78061,293,4380_81589,Newcastle,104344-00017-1,0,4380_7778208_4040304,4380_1290 -4380_78114,289,4380_8159,Kells via Navan,5230-00014-1,0,4380_7778208_1090101,4380_123 -4380_78061,296,4380_81590,Newcastle,104336-00021-1,0,4380_7778208_4040304,4380_1293 -4380_78061,297,4380_81597,Newcastle,104347-00008-1,0,4380_7778208_4040304,4380_1288 -4380_78061,285,4380_81598,Newcastle,103652-00009-1,0,4380_7778208_4040301,4380_1290 -4380_78114,290,4380_8160,Kells via Navan,54684-00015-1,0,4380_7778208_1090101,4380_123 -4380_78061,288,4380_81600,Newcastle,103650-00011-1,0,4380_7778208_4040301,4380_1290 -4380_78061,286,4380_81601,Newcastle,103658-00010-1,0,4380_7778208_4040301,4380_1290 -4380_78061,291,4380_81602,Newcastle,103656-00013-1,0,4380_7778208_4040301,4380_1293 -4380_78061,289,4380_81603,Newcastle,103648-00014-1,0,4380_7778208_4040301,4380_1290 -4380_78061,287,4380_81604,Newcastle,103654-00012-1,0,4380_7778208_4040301,4380_1290 -4380_78061,292,4380_81605,Newcastle,103659-00016-1,0,4380_7778208_4040301,4380_1290 -4380_78061,290,4380_81606,Newcastle,103653-00015-1,0,4380_7778208_4040301,4380_1290 -4380_78061,294,4380_81607,Newcastle,103655-00018-1,0,4380_7778208_4040301,4380_1290 -4380_78061,295,4380_81608,Newcastle,103649-00019-1,0,4380_7778208_4040301,4380_1290 -4380_78061,293,4380_81609,Newcastle,103651-00017-1,0,4380_7778208_4040301,4380_1290 -4380_78114,291,4380_8161,Kells via Navan,5888-00013-1,0,4380_7778208_1090111,4380_127 -4380_78061,296,4380_81610,Newcastle,103657-00021-1,0,4380_7778208_4040301,4380_1293 -4380_78061,297,4380_81617,Newcastle,103660-00008-1,0,4380_7778208_4040301,4380_1288 -4380_78061,285,4380_81618,Newcastle,104120-00009-1,0,4380_7778208_4040303,4380_1290 -4380_78114,292,4380_8162,Kells via Navan,54687-00016-1,0,4380_7778208_1090101,4380_123 -4380_78061,288,4380_81620,Newcastle,104126-00011-1,0,4380_7778208_4040303,4380_1290 -4380_78061,286,4380_81621,Newcastle,104116-00010-1,0,4380_7778208_4040303,4380_1290 -4380_78061,291,4380_81622,Newcastle,104122-00013-1,0,4380_7778208_4040303,4380_1293 -4380_78061,289,4380_81623,Newcastle,104124-00014-1,0,4380_7778208_4040303,4380_1290 -4380_78061,287,4380_81624,Newcastle,104118-00012-1,0,4380_7778208_4040303,4380_1290 -4380_78061,292,4380_81625,Newcastle,104117-00016-1,0,4380_7778208_4040303,4380_1290 -4380_78061,290,4380_81626,Newcastle,104121-00015-1,0,4380_7778208_4040303,4380_1290 -4380_78061,294,4380_81627,Newcastle,104119-00018-1,0,4380_7778208_4040303,4380_1290 -4380_78061,295,4380_81628,Newcastle,104125-00019-1,0,4380_7778208_4040303,4380_1290 -4380_78061,293,4380_81629,Newcastle,104127-00017-1,0,4380_7778208_4040303,4380_1290 -4380_78114,293,4380_8163,Kells via Navan,54686-00017-1,0,4380_7778208_1090101,4380_123 -4380_78061,296,4380_81630,Newcastle,104123-00021-1,0,4380_7778208_4040303,4380_1293 -4380_78061,297,4380_81637,Newcastle,104128-00008-1,0,4380_7778208_4040303,4380_1288 -4380_78061,285,4380_81638,Newcastle,103901-00009-1,0,4380_7778208_4040302,4380_1290 -4380_78114,294,4380_8164,Kells via Navan,54685-00018-1,0,4380_7778208_1090101,4380_123 -4380_78061,288,4380_81640,Newcastle,103903-00011-1,0,4380_7778208_4040302,4380_1290 -4380_78061,286,4380_81641,Newcastle,103895-00010-1,0,4380_7778208_4040302,4380_1290 -4380_78061,291,4380_81642,Newcastle,103899-00013-1,0,4380_7778208_4040302,4380_1293 -4380_78061,289,4380_81643,Newcastle,103905-00014-1,0,4380_7778208_4040302,4380_1290 -4380_78061,287,4380_81644,Newcastle,103897-00012-1,0,4380_7778208_4040302,4380_1290 -4380_78061,292,4380_81645,Newcastle,103896-00016-1,0,4380_7778208_4040302,4380_1290 -4380_78061,290,4380_81646,Newcastle,103902-00015-1,0,4380_7778208_4040302,4380_1290 -4380_78061,294,4380_81647,Newcastle,103898-00018-1,0,4380_7778208_4040302,4380_1290 -4380_78061,295,4380_81648,Newcastle,103906-00019-1,0,4380_7778208_4040302,4380_1290 -4380_78061,293,4380_81649,Newcastle,103904-00017-1,0,4380_7778208_4040302,4380_1290 -4380_78114,295,4380_8165,Kells via Navan,54683-00019-1,0,4380_7778208_1090101,4380_123 -4380_78061,296,4380_81650,Newcastle,103900-00021-1,0,4380_7778208_4040302,4380_1293 -4380_78061,297,4380_81657,Newcastle,103907-00008-1,0,4380_7778208_4040302,4380_1288 -4380_78061,285,4380_81658,Newcastle,104471-00009-1,0,4380_7778208_4040305,4380_1290 -4380_78114,296,4380_8166,Kells via Navan,55143-00021-1,0,4380_7778208_1090111,4380_127 -4380_78061,288,4380_81660,Newcastle,104473-00011-1,0,4380_7778208_4040305,4380_1290 -4380_78061,286,4380_81661,Newcastle,104469-00010-1,0,4380_7778208_4040305,4380_1290 -4380_78061,291,4380_81662,Newcastle,104361-00013-1,0,4380_7778208_4040304,4380_1293 -4380_78061,289,4380_81663,Newcastle,104467-00014-1,0,4380_7778208_4040305,4380_1290 -4380_78061,287,4380_81664,Newcastle,104465-00012-1,0,4380_7778208_4040305,4380_1290 -4380_78061,292,4380_81665,Newcastle,104470-00016-1,0,4380_7778208_4040305,4380_1290 -4380_78061,290,4380_81666,Newcastle,104472-00015-1,0,4380_7778208_4040305,4380_1290 -4380_78061,294,4380_81667,Newcastle,104466-00018-1,0,4380_7778208_4040305,4380_1290 -4380_78061,295,4380_81668,Newcastle,104468-00019-1,0,4380_7778208_4040305,4380_1290 -4380_78061,293,4380_81669,Newcastle,104474-00017-1,0,4380_7778208_4040305,4380_1290 -4380_78061,296,4380_81670,Newcastle,104362-00021-1,0,4380_7778208_4040304,4380_1293 -4380_78061,297,4380_81677,Newcastle,104373-00008-1,0,4380_7778208_4040304,4380_1288 -4380_78061,285,4380_81678,Newcastle,104371-00009-1,0,4380_7778208_4040304,4380_1290 -4380_78061,288,4380_81680,Newcastle,104365-00011-1,0,4380_7778208_4040304,4380_1290 -4380_78061,286,4380_81681,Newcastle,104363-00010-1,0,4380_7778208_4040304,4380_1290 -4380_78061,291,4380_81682,Newcastle,103674-00013-1,0,4380_7778208_4040301,4380_1293 -4380_78061,289,4380_81683,Newcastle,104369-00014-1,0,4380_7778208_4040304,4380_1290 -4380_78061,287,4380_81684,Newcastle,104367-00012-1,0,4380_7778208_4040304,4380_1290 -4380_78061,292,4380_81685,Newcastle,104364-00016-1,0,4380_7778208_4040304,4380_1290 -4380_78061,290,4380_81686,Newcastle,104372-00015-1,0,4380_7778208_4040304,4380_1290 -4380_78061,294,4380_81687,Newcastle,104368-00018-1,0,4380_7778208_4040304,4380_1290 -4380_78061,295,4380_81688,Newcastle,104370-00019-1,0,4380_7778208_4040304,4380_1290 -4380_78061,293,4380_81689,Newcastle,104366-00017-1,0,4380_7778208_4040304,4380_1290 -4380_78061,296,4380_81690,Newcastle,103675-00021-1,0,4380_7778208_4040301,4380_1293 -4380_78061,297,4380_81697,Newcastle,103676-00008-1,0,4380_7778208_4040301,4380_1288 -4380_78061,285,4380_81698,Newcastle,103683-00009-1,0,4380_7778208_4040301,4380_1290 -4380_78061,288,4380_81700,Newcastle,103681-00011-1,0,4380_7778208_4040301,4380_1290 -4380_78061,286,4380_81701,Newcastle,103685-00010-1,0,4380_7778208_4040301,4380_1290 -4380_78061,291,4380_81702,Newcastle,104142-00013-1,0,4380_7778208_4040303,4380_1293 -4380_78061,289,4380_81703,Newcastle,103679-00014-1,0,4380_7778208_4040301,4380_1290 -4380_78061,287,4380_81704,Newcastle,103677-00012-1,0,4380_7778208_4040301,4380_1290 -4380_78061,292,4380_81705,Newcastle,103686-00016-1,0,4380_7778208_4040301,4380_1290 -4380_78061,290,4380_81706,Newcastle,103684-00015-1,0,4380_7778208_4040301,4380_1290 -4380_78061,294,4380_81707,Newcastle,103678-00018-1,0,4380_7778208_4040301,4380_1290 -4380_78061,295,4380_81708,Newcastle,103680-00019-1,0,4380_7778208_4040301,4380_1290 -4380_78061,293,4380_81709,Newcastle,103682-00017-1,0,4380_7778208_4040301,4380_1290 -4380_78061,296,4380_81710,Newcastle,104143-00021-1,0,4380_7778208_4040303,4380_1293 -4380_78061,297,4380_81717,Newcastle,104144-00008-1,0,4380_7778208_4040303,4380_1288 -4380_78061,285,4380_81718,Newcastle,104151-00009-1,0,4380_7778208_4040303,4380_1290 -4380_78061,288,4380_81720,Newcastle,104145-00011-1,0,4380_7778208_4040303,4380_1290 -4380_78061,286,4380_81721,Newcastle,104147-00010-1,0,4380_7778208_4040303,4380_1290 -4380_78061,291,4380_81722,Newcastle,103921-00013-1,0,4380_7778208_4040302,4380_1293 -4380_78061,289,4380_81723,Newcastle,104153-00014-1,0,4380_7778208_4040303,4380_1290 -4380_78061,287,4380_81724,Newcastle,104149-00012-1,0,4380_7778208_4040303,4380_1290 -4380_78061,292,4380_81725,Newcastle,104148-00016-1,0,4380_7778208_4040303,4380_1290 -4380_78061,290,4380_81726,Newcastle,104152-00015-1,0,4380_7778208_4040303,4380_1290 -4380_78061,294,4380_81727,Newcastle,104150-00018-1,0,4380_7778208_4040303,4380_1290 -4380_78061,295,4380_81728,Newcastle,104154-00019-1,0,4380_7778208_4040303,4380_1290 -4380_78061,293,4380_81729,Newcastle,104146-00017-1,0,4380_7778208_4040303,4380_1290 -4380_78061,296,4380_81730,Newcastle,103922-00021-1,0,4380_7778208_4040302,4380_1293 -4380_78061,297,4380_81737,Newcastle,103933-00008-1,0,4380_7778208_4040302,4380_1288 -4380_78061,285,4380_81738,Newcastle,103925-00009-1,0,4380_7778208_4040302,4380_1290 -4380_78114,285,4380_8174,Kells via Navan,5316-00009-1,0,4380_7778208_1090102,4380_123 -4380_78061,288,4380_81740,Newcastle,103923-00011-1,0,4380_7778208_4040302,4380_1290 -4380_78061,286,4380_81741,Newcastle,103931-00010-1,0,4380_7778208_4040302,4380_1290 -4380_78061,291,4380_81742,Newcastle,104387-00013-1,0,4380_7778208_4040304,4380_1293 -4380_78061,289,4380_81743,Newcastle,103929-00014-1,0,4380_7778208_4040302,4380_1290 -4380_78061,287,4380_81744,Newcastle,103927-00012-1,0,4380_7778208_4040302,4380_1290 -4380_78061,292,4380_81745,Newcastle,103932-00016-1,0,4380_7778208_4040302,4380_1290 -4380_78061,290,4380_81746,Newcastle,103926-00015-1,0,4380_7778208_4040302,4380_1290 -4380_78061,294,4380_81747,Newcastle,103928-00018-1,0,4380_7778208_4040302,4380_1290 -4380_78061,295,4380_81748,Newcastle,103930-00019-1,0,4380_7778208_4040302,4380_1290 -4380_78061,293,4380_81749,Newcastle,103924-00017-1,0,4380_7778208_4040302,4380_1290 -4380_78114,286,4380_8175,Kells via Navan,5326-00010-1,0,4380_7778208_1090102,4380_123 -4380_78061,296,4380_81750,Newcastle,104388-00021-1,0,4380_7778208_4040304,4380_1293 -4380_78061,297,4380_81757,Newcastle,104395-00008-1,0,4380_7778208_4040304,4380_1288 -4380_78061,285,4380_81758,Newcastle,104389-00009-1,0,4380_7778208_4040304,4380_1290 -4380_78114,297,4380_8176,Kells via Navan,5868-00008-1,0,4380_7778208_1090110,4380_125 -4380_78061,288,4380_81760,Newcastle,104393-00011-1,0,4380_7778208_4040304,4380_1290 -4380_78061,286,4380_81761,Newcastle,104396-00010-1,0,4380_7778208_4040304,4380_1290 -4380_78061,291,4380_81762,Newcastle,103700-00013-1,0,4380_7778208_4040301,4380_1293 -4380_78061,289,4380_81763,Newcastle,104391-00014-1,0,4380_7778208_4040304,4380_1290 -4380_78061,287,4380_81764,Newcastle,104398-00012-1,0,4380_7778208_4040304,4380_1290 -4380_78061,292,4380_81765,Newcastle,104397-00016-1,0,4380_7778208_4040304,4380_1290 -4380_78061,290,4380_81766,Newcastle,104390-00015-1,0,4380_7778208_4040304,4380_1290 -4380_78061,294,4380_81767,Newcastle,104399-00018-1,0,4380_7778208_4040304,4380_1290 -4380_78061,295,4380_81768,Newcastle,104392-00019-1,0,4380_7778208_4040304,4380_1290 -4380_78061,293,4380_81769,Newcastle,104394-00017-1,0,4380_7778208_4040304,4380_1290 -4380_78114,288,4380_8177,Kells via Navan,5336-00011-1,0,4380_7778208_1090102,4380_123 -4380_78061,296,4380_81770,Newcastle,103701-00021-1,0,4380_7778208_4040301,4380_1293 -4380_78061,297,4380_81777,Newcastle,103710-00008-1,0,4380_7778208_4040301,4380_1288 -4380_78061,285,4380_81778,Newcastle,103702-00009-1,0,4380_7778208_4040301,4380_1290 -4380_78114,287,4380_8178,Kells via Navan,5346-00012-1,0,4380_7778208_1090102,4380_123 -4380_78061,288,4380_81780,Newcastle,103704-00011-1,0,4380_7778208_4040301,4380_1290 -4380_78061,286,4380_81781,Newcastle,103711-00010-1,0,4380_7778208_4040301,4380_1290 -4380_78061,291,4380_81782,Newcastle,104168-00013-1,0,4380_7778208_4040303,4380_1293 -4380_78061,289,4380_81783,Newcastle,103708-00014-1,0,4380_7778208_4040301,4380_1290 -4380_78061,287,4380_81784,Newcastle,103706-00012-1,0,4380_7778208_4040301,4380_1290 -4380_78061,292,4380_81785,Newcastle,103712-00016-1,0,4380_7778208_4040301,4380_1290 -4380_78061,290,4380_81786,Newcastle,103703-00015-1,0,4380_7778208_4040301,4380_1290 -4380_78061,294,4380_81787,Newcastle,103707-00018-1,0,4380_7778208_4040301,4380_1290 -4380_78061,295,4380_81788,Newcastle,103709-00019-1,0,4380_7778208_4040301,4380_1290 -4380_78061,293,4380_81789,Newcastle,103705-00017-1,0,4380_7778208_4040301,4380_1290 -4380_78114,289,4380_8179,Kells via Navan,5306-00014-1,0,4380_7778208_1090102,4380_123 -4380_78061,296,4380_81790,Newcastle,104169-00021-1,0,4380_7778208_4040303,4380_1293 -4380_78061,297,4380_81797,Newcastle,104180-00008-1,0,4380_7778208_4040303,4380_1288 -4380_78061,285,4380_81798,Newcastle,104178-00009-1,0,4380_7778208_4040303,4380_1290 -4380_78114,290,4380_8180,Kells via Navan,54740-00015-1,0,4380_7778208_1090102,4380_123 -4380_78061,288,4380_81800,Newcastle,104174-00011-1,0,4380_7778208_4040303,4380_1290 -4380_78061,286,4380_81801,Newcastle,104176-00010-1,0,4380_7778208_4040303,4380_1290 -4380_78061,291,4380_81802,Newcastle,103947-00013-1,0,4380_7778208_4040302,4380_1293 -4380_78061,289,4380_81803,Newcastle,104172-00014-1,0,4380_7778208_4040303,4380_1290 -4380_78061,287,4380_81804,Newcastle,104170-00012-1,0,4380_7778208_4040303,4380_1290 -4380_78061,292,4380_81805,Newcastle,104177-00016-1,0,4380_7778208_4040303,4380_1290 -4380_78061,290,4380_81806,Newcastle,104179-00015-1,0,4380_7778208_4040303,4380_1290 -4380_78061,294,4380_81807,Newcastle,104171-00018-1,0,4380_7778208_4040303,4380_1290 -4380_78061,295,4380_81808,Newcastle,104173-00019-1,0,4380_7778208_4040303,4380_1290 -4380_78061,293,4380_81809,Newcastle,104175-00017-1,0,4380_7778208_4040303,4380_1290 -4380_78114,291,4380_8181,Kells via Navan,5953-00013-1,0,4380_7778208_1090112,4380_127 -4380_78061,296,4380_81810,Newcastle,103948-00021-1,0,4380_7778208_4040302,4380_1293 -4380_78061,297,4380_81817,Newcastle,103949-00008-1,0,4380_7778208_4040302,4380_1288 -4380_78061,285,4380_81818,Newcastle,103958-00009-1,0,4380_7778208_4040302,4380_1290 -4380_78114,292,4380_8182,Kells via Navan,54737-00016-1,0,4380_7778208_1090102,4380_123 -4380_78061,288,4380_81820,Newcastle,103950-00011-1,0,4380_7778208_4040302,4380_1290 -4380_78061,286,4380_81821,Newcastle,103952-00010-1,0,4380_7778208_4040302,4380_1290 -4380_78061,291,4380_81822,Newcastle,104413-00013-1,0,4380_7778208_4040304,4380_1293 -4380_78061,289,4380_81823,Newcastle,103956-00014-1,0,4380_7778208_4040302,4380_1290 -4380_78061,287,4380_81824,Newcastle,103954-00012-1,0,4380_7778208_4040302,4380_1290 -4380_78061,292,4380_81825,Newcastle,103953-00016-1,0,4380_7778208_4040302,4380_1290 -4380_78061,290,4380_81826,Newcastle,103959-00015-1,0,4380_7778208_4040302,4380_1290 -4380_78061,294,4380_81827,Newcastle,103955-00018-1,0,4380_7778208_4040302,4380_1290 -4380_78061,295,4380_81828,Newcastle,103957-00019-1,0,4380_7778208_4040302,4380_1290 -4380_78061,293,4380_81829,Newcastle,103951-00017-1,0,4380_7778208_4040302,4380_1290 -4380_78114,293,4380_8183,Kells via Navan,54741-00017-1,0,4380_7778208_1090102,4380_123 -4380_78061,296,4380_81830,Newcastle,104414-00021-1,0,4380_7778208_4040304,4380_1293 -4380_78061,297,4380_81837,Newcastle,104421-00008-1,0,4380_7778208_4040304,4380_1288 -4380_78061,285,4380_81838,Newcastle,104415-00009-1,0,4380_7778208_4040304,4380_1290 -4380_78114,294,4380_8184,Kells via Navan,54739-00018-1,0,4380_7778208_1090102,4380_123 -4380_78061,288,4380_81840,Newcastle,104417-00011-1,0,4380_7778208_4040304,4380_1290 -4380_78061,286,4380_81841,Newcastle,104419-00010-1,0,4380_7778208_4040304,4380_1290 -4380_78061,291,4380_81842,Newcastle,103726-00013-1,0,4380_7778208_4040301,4380_1293 -4380_78061,289,4380_81843,Newcastle,104422-00014-1,0,4380_7778208_4040304,4380_1290 -4380_78061,287,4380_81844,Newcastle,104424-00012-1,0,4380_7778208_4040304,4380_1290 -4380_78061,292,4380_81845,Newcastle,104420-00016-1,0,4380_7778208_4040304,4380_1290 -4380_78061,290,4380_81846,Newcastle,104416-00015-1,0,4380_7778208_4040304,4380_1290 -4380_78061,294,4380_81847,Newcastle,104425-00018-1,0,4380_7778208_4040304,4380_1290 -4380_78061,295,4380_81848,Newcastle,104423-00019-1,0,4380_7778208_4040304,4380_1290 -4380_78061,293,4380_81849,Newcastle,104418-00017-1,0,4380_7778208_4040304,4380_1290 -4380_78114,295,4380_8185,Kells via Navan,54738-00019-1,0,4380_7778208_1090102,4380_123 -4380_78061,296,4380_81850,Newcastle,103727-00021-1,0,4380_7778208_4040301,4380_1293 -4380_78061,297,4380_81857,Newcastle,103730-00008-1,0,4380_7778208_4040301,4380_1288 -4380_78061,285,4380_81858,Newcastle,103733-00009-1,0,4380_7778208_4040301,4380_1290 -4380_78114,296,4380_8186,Kells via Navan,55188-00021-1,0,4380_7778208_1090112,4380_127 -4380_78061,288,4380_81860,Newcastle,103731-00011-1,0,4380_7778208_4040301,4380_1290 -4380_78061,286,4380_81861,Newcastle,103735-00010-1,0,4380_7778208_4040301,4380_1290 -4380_78061,291,4380_81862,Newcastle,104194-00013-1,0,4380_7778208_4040303,4380_1293 -4380_78061,289,4380_81863,Newcastle,103728-00014-1,0,4380_7778208_4040301,4380_1290 -4380_78061,287,4380_81864,Newcastle,103737-00012-1,0,4380_7778208_4040301,4380_1290 -4380_78061,292,4380_81865,Newcastle,103736-00016-1,0,4380_7778208_4040301,4380_1290 -4380_78061,290,4380_81866,Newcastle,103734-00015-1,0,4380_7778208_4040301,4380_1290 -4380_78061,294,4380_81867,Newcastle,103738-00018-1,0,4380_7778208_4040301,4380_1290 -4380_78061,295,4380_81868,Newcastle,103729-00019-1,0,4380_7778208_4040301,4380_1290 -4380_78061,293,4380_81869,Newcastle,103732-00017-1,0,4380_7778208_4040301,4380_1290 -4380_78061,296,4380_81870,Newcastle,104195-00021-1,0,4380_7778208_4040303,4380_1293 -4380_78061,297,4380_81877,Newcastle,104198-00008-1,0,4380_7778208_4040303,4380_1288 -4380_78061,285,4380_81878,Newcastle,104196-00009-1,0,4380_7778208_4040303,4380_1290 -4380_78061,288,4380_81880,Newcastle,104199-00011-1,0,4380_7778208_4040303,4380_1290 -4380_78061,286,4380_81881,Newcastle,104201-00010-1,0,4380_7778208_4040303,4380_1290 -4380_78061,291,4380_81882,Newcastle,103973-00013-1,0,4380_7778208_4040302,4380_1293 -4380_78061,289,4380_81883,Newcastle,104205-00014-1,0,4380_7778208_4040303,4380_1290 -4380_78061,287,4380_81884,Newcastle,104203-00012-1,0,4380_7778208_4040303,4380_1290 -4380_78061,292,4380_81885,Newcastle,104202-00016-1,0,4380_7778208_4040303,4380_1290 -4380_78061,290,4380_81886,Newcastle,104197-00015-1,0,4380_7778208_4040303,4380_1290 -4380_78061,294,4380_81887,Newcastle,104204-00018-1,0,4380_7778208_4040303,4380_1290 -4380_78061,295,4380_81888,Newcastle,104206-00019-1,0,4380_7778208_4040303,4380_1290 -4380_78061,293,4380_81889,Newcastle,104200-00017-1,0,4380_7778208_4040303,4380_1290 -4380_78061,296,4380_81890,Newcastle,103974-00021-1,0,4380_7778208_4040302,4380_1293 -4380_78061,297,4380_81897,Newcastle,103977-00008-1,0,4380_7778208_4040302,4380_1288 -4380_78061,285,4380_81898,Newcastle,103984-00009-1,0,4380_7778208_4040302,4380_1290 -4380_78061,288,4380_81900,Newcastle,103980-00011-1,0,4380_7778208_4040302,4380_1290 -4380_78061,286,4380_81901,Newcastle,103975-00010-1,0,4380_7778208_4040302,4380_1290 -4380_78061,291,4380_81902,Newcastle,104439-00013-1,0,4380_7778208_4040304,4380_1293 -4380_78061,289,4380_81903,Newcastle,103982-00014-1,0,4380_7778208_4040302,4380_1290 -4380_78061,287,4380_81904,Newcastle,103978-00012-1,0,4380_7778208_4040302,4380_1290 -4380_78061,292,4380_81905,Newcastle,103976-00016-1,0,4380_7778208_4040302,4380_1290 -4380_78061,290,4380_81906,Newcastle,103985-00015-1,0,4380_7778208_4040302,4380_1290 -4380_78061,294,4380_81907,Newcastle,103979-00018-1,0,4380_7778208_4040302,4380_1290 -4380_78061,295,4380_81908,Newcastle,103983-00019-1,0,4380_7778208_4040302,4380_1290 -4380_78061,293,4380_81909,Newcastle,103981-00017-1,0,4380_7778208_4040302,4380_1290 -4380_78061,296,4380_81910,Newcastle,104440-00021-1,0,4380_7778208_4040304,4380_1293 -4380_78061,297,4380_81917,Newcastle,104441-00008-1,0,4380_7778208_4040304,4380_1288 -4380_78061,285,4380_81918,Newcastle,104446-00009-1,0,4380_7778208_4040304,4380_1290 -4380_78061,288,4380_81920,Newcastle,104448-00011-1,0,4380_7778208_4040304,4380_1290 -4380_78061,286,4380_81921,Newcastle,104442-00010-1,0,4380_7778208_4040304,4380_1290 -4380_78061,291,4380_81922,Newcastle,103752-00013-1,0,4380_7778208_4040301,4380_1293 -4380_78061,289,4380_81923,Newcastle,104450-00014-1,0,4380_7778208_4040304,4380_1290 -4380_78061,287,4380_81924,Newcastle,104444-00012-1,0,4380_7778208_4040304,4380_1290 -4380_78061,292,4380_81925,Newcastle,104443-00016-1,0,4380_7778208_4040304,4380_1290 -4380_78061,290,4380_81926,Newcastle,104447-00015-1,0,4380_7778208_4040304,4380_1290 -4380_78061,294,4380_81927,Newcastle,104445-00018-1,0,4380_7778208_4040304,4380_1290 -4380_78061,295,4380_81928,Newcastle,104451-00019-1,0,4380_7778208_4040304,4380_1290 -4380_78061,293,4380_81929,Newcastle,104449-00017-1,0,4380_7778208_4040304,4380_1290 -4380_78061,296,4380_81930,Newcastle,103753-00021-1,0,4380_7778208_4040301,4380_1293 -4380_78061,297,4380_81937,Newcastle,103758-00008-1,0,4380_7778208_4040301,4380_1288 -4380_78061,285,4380_81938,Newcastle,103756-00009-1,0,4380_7778208_4040301,4380_1290 -4380_78114,285,4380_8194,Kells via Navan,5388-00009-1,0,4380_7778208_1090103,4380_123 -4380_78061,288,4380_81940,Newcastle,103754-00011-1,0,4380_7778208_4040301,4380_1290 -4380_78061,286,4380_81941,Newcastle,103759-00010-1,0,4380_7778208_4040301,4380_1290 -4380_78061,291,4380_81942,Newcastle,104220-00013-1,0,4380_7778208_4040303,4380_1293 -4380_78061,289,4380_81943,Newcastle,103761-00014-1,0,4380_7778208_4040301,4380_1290 -4380_78061,287,4380_81944,Newcastle,103763-00012-1,0,4380_7778208_4040301,4380_1290 -4380_78061,292,4380_81945,Newcastle,103760-00016-1,0,4380_7778208_4040301,4380_1290 -4380_78061,290,4380_81946,Newcastle,103757-00015-1,0,4380_7778208_4040301,4380_1290 -4380_78061,294,4380_81947,Newcastle,103764-00018-1,0,4380_7778208_4040301,4380_1290 -4380_78061,295,4380_81948,Newcastle,103762-00019-1,0,4380_7778208_4040301,4380_1290 -4380_78061,293,4380_81949,Newcastle,103755-00017-1,0,4380_7778208_4040301,4380_1290 -4380_78114,286,4380_8195,Kells via Navan,5398-00010-1,0,4380_7778208_1090103,4380_123 -4380_78061,296,4380_81950,Newcastle,104221-00021-1,0,4380_7778208_4040303,4380_1293 -4380_78061,297,4380_81957,Eyre Square,104226-00008-1,0,4380_7778208_4040303,4380_1289 -4380_78061,285,4380_81958,Eyre Square,104227-00009-1,0,4380_7778208_4040303,4380_1292 -4380_78114,297,4380_8196,Kells via Navan,5898-00008-1,0,4380_7778208_1090111,4380_125 -4380_78061,288,4380_81960,Eyre Square,104222-00011-1,0,4380_7778208_4040303,4380_1292 -4380_78061,286,4380_81961,Eyre Square,104231-00010-1,0,4380_7778208_4040303,4380_1292 -4380_78061,291,4380_81962,Eyre Square,103999-00013-1,0,4380_7778208_4040302,4380_1295 -4380_78061,289,4380_81963,Eyre Square,104224-00014-1,0,4380_7778208_4040303,4380_1292 -4380_78061,287,4380_81964,Eyre Square,104229-00012-1,0,4380_7778208_4040303,4380_1292 -4380_78061,292,4380_81965,Eyre Square,104232-00016-1,0,4380_7778208_4040303,4380_1292 -4380_78061,290,4380_81966,Eyre Square,104228-00015-1,0,4380_7778208_4040303,4380_1292 -4380_78061,294,4380_81967,Eyre Square,104230-00018-1,0,4380_7778208_4040303,4380_1292 -4380_78061,295,4380_81968,Eyre Square,104225-00019-1,0,4380_7778208_4040303,4380_1292 -4380_78061,293,4380_81969,Eyre Square,104223-00017-1,0,4380_7778208_4040303,4380_1292 -4380_78114,288,4380_8197,Kells via Navan,5408-00011-1,0,4380_7778208_1090103,4380_123 -4380_78061,296,4380_81970,Eyre Square,104000-00021-1,0,4380_7778208_4040302,4380_1295 -4380_78061,285,4380_81976,Oranmore,103535-00009-1,1,4380_7778208_4040301,4380_1298 -4380_78061,288,4380_81978,Oranmore,103533-00011-1,1,4380_7778208_4040301,4380_1298 -4380_78061,286,4380_81979,Oranmore,103541-00010-1,1,4380_7778208_4040301,4380_1298 -4380_78114,287,4380_8198,Kells via Navan,5418-00012-1,0,4380_7778208_1090103,4380_123 -4380_78061,291,4380_81980,Oranmore,103539-00013-1,1,4380_7778208_4040301,4380_1301 -4380_78061,289,4380_81981,Oranmore,103543-00014-1,1,4380_7778208_4040301,4380_1298 -4380_78061,287,4380_81982,Oranmore,103537-00012-1,1,4380_7778208_4040301,4380_1298 -4380_78061,292,4380_81983,Oranmore,103542-00016-1,1,4380_7778208_4040301,4380_1298 -4380_78061,290,4380_81984,Oranmore,103536-00015-1,1,4380_7778208_4040301,4380_1298 -4380_78061,294,4380_81985,Oranmore,103538-00018-1,1,4380_7778208_4040301,4380_1298 -4380_78061,295,4380_81986,Oranmore,103544-00019-1,1,4380_7778208_4040301,4380_1298 -4380_78061,293,4380_81987,Oranmore,103534-00017-1,1,4380_7778208_4040301,4380_1298 -4380_78061,296,4380_81988,Oranmore,103540-00021-1,1,4380_7778208_4040301,4380_1301 -4380_78114,289,4380_8199,Kells via Navan,5378-00014-1,0,4380_7778208_1090103,4380_123 -4380_78061,285,4380_81994,Oranmore,104001-00009-1,1,4380_7778208_4040303,4380_1298 -4380_78061,288,4380_81996,Oranmore,104007-00011-1,1,4380_7778208_4040303,4380_1298 -4380_78061,286,4380_81997,Oranmore,104005-00010-1,1,4380_7778208_4040303,4380_1298 -4380_78061,291,4380_81998,Oranmore,104009-00013-1,1,4380_7778208_4040303,4380_1301 -4380_78061,289,4380_81999,Oranmore,104003-00014-1,1,4380_7778208_4040303,4380_1298 -4380_77946,294,4380_82,Dundalk,50384-00018-1,0,4380_7778208_1000914,4380_1 -4380_78114,290,4380_8200,Kells via Navan,54794-00015-1,0,4380_7778208_1090103,4380_123 -4380_78061,287,4380_82000,Oranmore,104011-00012-1,1,4380_7778208_4040303,4380_1298 -4380_78061,292,4380_82001,Oranmore,104006-00016-1,1,4380_7778208_4040303,4380_1298 -4380_78061,290,4380_82002,Oranmore,104002-00015-1,1,4380_7778208_4040303,4380_1298 -4380_78061,294,4380_82003,Oranmore,104012-00018-1,1,4380_7778208_4040303,4380_1298 -4380_78061,295,4380_82004,Oranmore,104004-00019-1,1,4380_7778208_4040303,4380_1298 -4380_78061,293,4380_82005,Oranmore,104008-00017-1,1,4380_7778208_4040303,4380_1298 -4380_78061,296,4380_82006,Oranmore,104010-00021-1,1,4380_7778208_4040303,4380_1301 -4380_78114,291,4380_8201,Kells via Navan,5983-00013-1,0,4380_7778208_1090113,4380_127 -4380_78061,285,4380_82012,Oranmore,103781-00009-1,1,4380_7778208_4040302,4380_1296 -4380_78061,288,4380_82014,Oranmore,103779-00011-1,1,4380_7778208_4040302,4380_1296 -4380_78061,286,4380_82015,Oranmore,103783-00010-1,1,4380_7778208_4040302,4380_1296 -4380_78061,291,4380_82016,Oranmore,103789-00013-1,1,4380_7778208_4040302,4380_1299 -4380_78061,289,4380_82017,Oranmore,103785-00014-1,1,4380_7778208_4040302,4380_1296 -4380_78061,287,4380_82018,Oranmore,103787-00012-1,1,4380_7778208_4040302,4380_1296 -4380_78061,292,4380_82019,Oranmore,103784-00016-1,1,4380_7778208_4040302,4380_1296 -4380_78114,292,4380_8202,Kells via Navan,54793-00016-1,0,4380_7778208_1090103,4380_123 -4380_78061,290,4380_82020,Oranmore,103782-00015-1,1,4380_7778208_4040302,4380_1296 -4380_78061,294,4380_82021,Oranmore,103788-00018-1,1,4380_7778208_4040302,4380_1296 -4380_78061,295,4380_82022,Oranmore,103786-00019-1,1,4380_7778208_4040302,4380_1296 -4380_78061,293,4380_82023,Oranmore,103780-00017-1,1,4380_7778208_4040302,4380_1296 -4380_78061,296,4380_82024,Oranmore,103790-00021-1,1,4380_7778208_4040302,4380_1299 -4380_78114,293,4380_8203,Kells via Navan,54796-00017-1,0,4380_7778208_1090103,4380_123 -4380_78061,285,4380_82030,Oranmore,104253-00009-1,1,4380_7778208_4040304,4380_1296 -4380_78061,288,4380_82032,Oranmore,104247-00011-1,1,4380_7778208_4040304,4380_1296 -4380_78061,286,4380_82033,Oranmore,104245-00010-1,1,4380_7778208_4040304,4380_1296 -4380_78061,291,4380_82034,Oranmore,104251-00013-1,1,4380_7778208_4040304,4380_1299 -4380_78061,289,4380_82035,Oranmore,104249-00014-1,1,4380_7778208_4040304,4380_1296 -4380_78061,287,4380_82036,Oranmore,104255-00012-1,1,4380_7778208_4040304,4380_1296 -4380_78061,292,4380_82037,Oranmore,104246-00016-1,1,4380_7778208_4040304,4380_1296 -4380_78061,290,4380_82038,Oranmore,104254-00015-1,1,4380_7778208_4040304,4380_1296 -4380_78061,294,4380_82039,Oranmore,104256-00018-1,1,4380_7778208_4040304,4380_1296 -4380_78114,294,4380_8204,Kells via Navan,54795-00018-1,0,4380_7778208_1090103,4380_123 -4380_78061,295,4380_82040,Oranmore,104250-00019-1,1,4380_7778208_4040304,4380_1296 -4380_78061,293,4380_82041,Oranmore,104248-00017-1,1,4380_7778208_4040304,4380_1296 -4380_78061,296,4380_82042,Oranmore,104252-00021-1,1,4380_7778208_4040304,4380_1299 -4380_78061,285,4380_82048,Oranmore,103565-00009-1,1,4380_7778208_4040301,4380_1296 -4380_78114,295,4380_8205,Kells via Navan,54797-00019-1,0,4380_7778208_1090103,4380_123 -4380_78061,288,4380_82050,Oranmore,103557-00011-1,1,4380_7778208_4040301,4380_1296 -4380_78061,286,4380_82051,Oranmore,103559-00010-1,1,4380_7778208_4040301,4380_1296 -4380_78061,291,4380_82052,Oranmore,103563-00013-1,1,4380_7778208_4040301,4380_1299 -4380_78061,289,4380_82053,Oranmore,103567-00014-1,1,4380_7778208_4040301,4380_1296 -4380_78061,287,4380_82054,Oranmore,103561-00012-1,1,4380_7778208_4040301,4380_1296 -4380_78061,292,4380_82055,Oranmore,103560-00016-1,1,4380_7778208_4040301,4380_1296 -4380_78061,290,4380_82056,Oranmore,103566-00015-1,1,4380_7778208_4040301,4380_1296 -4380_78061,294,4380_82057,Oranmore,103562-00018-1,1,4380_7778208_4040301,4380_1296 -4380_78061,295,4380_82058,Oranmore,103568-00019-1,1,4380_7778208_4040301,4380_1296 -4380_78061,293,4380_82059,Oranmore,103558-00017-1,1,4380_7778208_4040301,4380_1296 -4380_78114,296,4380_8206,Kells via Navan,55208-00021-1,0,4380_7778208_1090113,4380_127 -4380_78061,296,4380_82060,Oranmore,103564-00021-1,1,4380_7778208_4040301,4380_1299 -4380_78061,297,4380_82067,Oranmore,103569-00008-1,1,4380_7778208_4040301,4380_1296 -4380_78061,285,4380_82068,Oranmore,104029-00009-1,1,4380_7778208_4040303,4380_1299 -4380_78061,288,4380_82070,Oranmore,104031-00011-1,1,4380_7778208_4040303,4380_1299 -4380_78061,286,4380_82071,Oranmore,104035-00010-1,1,4380_7778208_4040303,4380_1299 -4380_78061,291,4380_82072,Oranmore,104025-00013-1,1,4380_7778208_4040303,4380_1302 -4380_78061,289,4380_82073,Oranmore,104027-00014-1,1,4380_7778208_4040303,4380_1299 -4380_78061,287,4380_82074,Oranmore,104033-00012-1,1,4380_7778208_4040303,4380_1299 -4380_78061,292,4380_82075,Oranmore,104036-00016-1,1,4380_7778208_4040303,4380_1299 -4380_78061,290,4380_82076,Oranmore,104030-00015-1,1,4380_7778208_4040303,4380_1299 -4380_78061,294,4380_82077,Oranmore,104034-00018-1,1,4380_7778208_4040303,4380_1299 -4380_78061,295,4380_82078,Oranmore,104028-00019-1,1,4380_7778208_4040303,4380_1299 -4380_78061,293,4380_82079,Oranmore,104032-00017-1,1,4380_7778208_4040303,4380_1299 -4380_78061,296,4380_82080,Oranmore,104026-00021-1,1,4380_7778208_4040303,4380_1302 -4380_78061,297,4380_82087,Oranmore,104037-00008-1,1,4380_7778208_4040303,4380_1296 -4380_78061,285,4380_82088,Oranmore,103808-00009-1,1,4380_7778208_4040302,4380_1299 -4380_78061,288,4380_82090,Oranmore,103812-00011-1,1,4380_7778208_4040302,4380_1299 -4380_78061,286,4380_82091,Oranmore,103806-00010-1,1,4380_7778208_4040302,4380_1299 -4380_78061,291,4380_82092,Oranmore,103814-00013-1,1,4380_7778208_4040302,4380_1302 -4380_78061,289,4380_82093,Oranmore,103810-00014-1,1,4380_7778208_4040302,4380_1299 -4380_78061,287,4380_82094,Oranmore,103804-00012-1,1,4380_7778208_4040302,4380_1299 -4380_78061,292,4380_82095,Oranmore,103807-00016-1,1,4380_7778208_4040302,4380_1299 -4380_78061,290,4380_82096,Oranmore,103809-00015-1,1,4380_7778208_4040302,4380_1299 -4380_78061,294,4380_82097,Oranmore,103805-00018-1,1,4380_7778208_4040302,4380_1299 -4380_78061,295,4380_82098,Oranmore,103811-00019-1,1,4380_7778208_4040302,4380_1299 -4380_78061,293,4380_82099,Oranmore,103813-00017-1,1,4380_7778208_4040302,4380_1299 -4380_78061,296,4380_82100,Oranmore,103815-00021-1,1,4380_7778208_4040302,4380_1302 -4380_78061,297,4380_82107,Oranmore,103816-00008-1,1,4380_7778208_4040302,4380_1296 -4380_78061,285,4380_82108,Oranmore,104280-00009-1,1,4380_7778208_4040304,4380_1299 -4380_78061,288,4380_82110,Oranmore,104270-00011-1,1,4380_7778208_4040304,4380_1299 -4380_78061,286,4380_82111,Oranmore,104276-00010-1,1,4380_7778208_4040304,4380_1299 -4380_78061,291,4380_82112,Oranmore,104278-00013-1,1,4380_7778208_4040304,4380_1302 -4380_78061,289,4380_82113,Oranmore,104272-00014-1,1,4380_7778208_4040304,4380_1299 -4380_78061,287,4380_82114,Oranmore,104274-00012-1,1,4380_7778208_4040304,4380_1299 -4380_78061,292,4380_82115,Oranmore,104277-00016-1,1,4380_7778208_4040304,4380_1299 -4380_78061,290,4380_82116,Oranmore,104281-00015-1,1,4380_7778208_4040304,4380_1299 -4380_78061,294,4380_82117,Oranmore,104275-00018-1,1,4380_7778208_4040304,4380_1299 -4380_78061,295,4380_82118,Oranmore,104273-00019-1,1,4380_7778208_4040304,4380_1299 -4380_78061,293,4380_82119,Oranmore,104271-00017-1,1,4380_7778208_4040304,4380_1299 -4380_78061,296,4380_82120,Oranmore,104279-00021-1,1,4380_7778208_4040304,4380_1302 -4380_78061,297,4380_82127,Oranmore,104282-00008-1,1,4380_7778208_4040304,4380_1296 -4380_78061,285,4380_82128,Oranmore,103591-00009-1,1,4380_7778208_4040301,4380_1299 -4380_78061,288,4380_82130,Oranmore,103583-00011-1,1,4380_7778208_4040301,4380_1299 -4380_78061,286,4380_82131,Oranmore,103585-00010-1,1,4380_7778208_4040301,4380_1299 -4380_78061,291,4380_82132,Oranmore,103593-00013-1,1,4380_7778208_4040301,4380_1302 -4380_78061,289,4380_82133,Oranmore,103587-00014-1,1,4380_7778208_4040301,4380_1299 -4380_78061,287,4380_82134,Oranmore,103589-00012-1,1,4380_7778208_4040301,4380_1299 -4380_78061,292,4380_82135,Oranmore,103586-00016-1,1,4380_7778208_4040301,4380_1299 -4380_78061,290,4380_82136,Oranmore,103592-00015-1,1,4380_7778208_4040301,4380_1299 -4380_78061,294,4380_82137,Oranmore,103590-00018-1,1,4380_7778208_4040301,4380_1299 -4380_78061,295,4380_82138,Oranmore,103588-00019-1,1,4380_7778208_4040301,4380_1299 -4380_78061,293,4380_82139,Oranmore,103584-00017-1,1,4380_7778208_4040301,4380_1299 -4380_78114,285,4380_8214,Kells via Navan,5463-00009-1,0,4380_7778208_1090104,4380_124 -4380_78061,296,4380_82140,Oranmore,103594-00021-1,1,4380_7778208_4040301,4380_1302 -4380_78061,297,4380_82147,Oranmore,103595-00008-1,1,4380_7778208_4040301,4380_1296 -4380_78061,285,4380_82148,Oranmore,104059-00009-1,1,4380_7778208_4040303,4380_1299 -4380_78114,286,4380_8215,Kells via Navan,5473-00010-1,0,4380_7778208_1090104,4380_124 -4380_78061,288,4380_82150,Oranmore,104051-00011-1,1,4380_7778208_4040303,4380_1299 -4380_78061,286,4380_82151,Oranmore,104057-00010-1,1,4380_7778208_4040303,4380_1299 -4380_78061,291,4380_82152,Oranmore,104061-00013-1,1,4380_7778208_4040303,4380_1302 -4380_78061,289,4380_82153,Oranmore,104053-00014-1,1,4380_7778208_4040303,4380_1299 -4380_78061,287,4380_82154,Oranmore,104055-00012-1,1,4380_7778208_4040303,4380_1299 -4380_78061,292,4380_82155,Oranmore,104058-00016-1,1,4380_7778208_4040303,4380_1299 -4380_78061,290,4380_82156,Oranmore,104060-00015-1,1,4380_7778208_4040303,4380_1299 -4380_78061,294,4380_82157,Oranmore,104056-00018-1,1,4380_7778208_4040303,4380_1299 -4380_78061,295,4380_82158,Oranmore,104054-00019-1,1,4380_7778208_4040303,4380_1299 -4380_78061,293,4380_82159,Oranmore,104052-00017-1,1,4380_7778208_4040303,4380_1299 -4380_78114,297,4380_8216,Kells via Navan,5963-00008-1,0,4380_7778208_1090112,4380_126 -4380_78061,296,4380_82160,Oranmore,104062-00021-1,1,4380_7778208_4040303,4380_1302 -4380_78061,297,4380_82167,Oranmore,104063-00008-1,1,4380_7778208_4040303,4380_1296 -4380_78061,285,4380_82168,Oranmore,103840-00009-1,1,4380_7778208_4040302,4380_1299 -4380_78114,288,4380_8217,Kells via Navan,5483-00011-1,0,4380_7778208_1090104,4380_124 -4380_78061,288,4380_82170,Oranmore,103834-00011-1,1,4380_7778208_4040302,4380_1299 -4380_78061,286,4380_82171,Oranmore,103836-00010-1,1,4380_7778208_4040302,4380_1299 -4380_78061,291,4380_82172,Oranmore,103832-00013-1,1,4380_7778208_4040302,4380_1302 -4380_78061,289,4380_82173,Oranmore,103838-00014-1,1,4380_7778208_4040302,4380_1299 -4380_78061,287,4380_82174,Oranmore,103830-00012-1,1,4380_7778208_4040302,4380_1299 -4380_78061,292,4380_82175,Oranmore,103837-00016-1,1,4380_7778208_4040302,4380_1299 -4380_78061,290,4380_82176,Oranmore,103841-00015-1,1,4380_7778208_4040302,4380_1299 -4380_78061,294,4380_82177,Oranmore,103831-00018-1,1,4380_7778208_4040302,4380_1299 -4380_78061,295,4380_82178,Oranmore,103839-00019-1,1,4380_7778208_4040302,4380_1299 -4380_78061,293,4380_82179,Oranmore,103835-00017-1,1,4380_7778208_4040302,4380_1299 -4380_78114,287,4380_8218,Kells via Navan,5493-00012-1,0,4380_7778208_1090104,4380_124 -4380_78061,296,4380_82180,Oranmore,103833-00021-1,1,4380_7778208_4040302,4380_1302 -4380_78061,297,4380_82187,Oranmore,103842-00008-1,1,4380_7778208_4040302,4380_1296 -4380_78061,285,4380_82188,Oranmore,104306-00009-1,1,4380_7778208_4040304,4380_1299 -4380_78114,289,4380_8219,Kells via Navan,5453-00014-1,0,4380_7778208_1090104,4380_124 -4380_78061,288,4380_82190,Oranmore,104298-00011-1,1,4380_7778208_4040304,4380_1299 -4380_78061,286,4380_82191,Oranmore,104302-00010-1,1,4380_7778208_4040304,4380_1299 -4380_78061,291,4380_82192,Oranmore,104300-00013-1,1,4380_7778208_4040304,4380_1302 -4380_78061,289,4380_82193,Oranmore,104296-00014-1,1,4380_7778208_4040304,4380_1299 -4380_78061,287,4380_82194,Oranmore,104304-00012-1,1,4380_7778208_4040304,4380_1299 -4380_78061,292,4380_82195,Oranmore,104303-00016-1,1,4380_7778208_4040304,4380_1299 -4380_78061,290,4380_82196,Oranmore,104307-00015-1,1,4380_7778208_4040304,4380_1299 -4380_78061,294,4380_82197,Oranmore,104305-00018-1,1,4380_7778208_4040304,4380_1299 -4380_78061,295,4380_82198,Oranmore,104297-00019-1,1,4380_7778208_4040304,4380_1299 -4380_78061,293,4380_82199,Oranmore,104299-00017-1,1,4380_7778208_4040304,4380_1299 -4380_78114,290,4380_8220,Kells via Navan,54851-00015-1,0,4380_7778208_1090104,4380_124 -4380_78061,296,4380_82200,Oranmore,104301-00021-1,1,4380_7778208_4040304,4380_1302 -4380_78061,297,4380_82207,Oranmore,104308-00008-1,1,4380_7778208_4040304,4380_1296 -4380_78061,285,4380_82208,Oranmore,103609-00009-1,1,4380_7778208_4040301,4380_1299 -4380_78114,291,4380_8221,Kells via Navan,6016-00013-1,0,4380_7778208_1090114,4380_128 -4380_78061,288,4380_82210,Oranmore,103611-00011-1,1,4380_7778208_4040301,4380_1299 -4380_78061,286,4380_82211,Oranmore,103613-00010-1,1,4380_7778208_4040301,4380_1299 -4380_78061,291,4380_82212,Oranmore,103615-00013-1,1,4380_7778208_4040301,4380_1302 -4380_78061,289,4380_82213,Oranmore,103619-00014-1,1,4380_7778208_4040301,4380_1299 -4380_78061,287,4380_82214,Oranmore,103617-00012-1,1,4380_7778208_4040301,4380_1299 -4380_78061,292,4380_82215,Oranmore,103614-00016-1,1,4380_7778208_4040301,4380_1299 -4380_78061,290,4380_82216,Oranmore,103610-00015-1,1,4380_7778208_4040301,4380_1299 -4380_78061,294,4380_82217,Oranmore,103618-00018-1,1,4380_7778208_4040301,4380_1299 -4380_78061,295,4380_82218,Oranmore,103620-00019-1,1,4380_7778208_4040301,4380_1299 -4380_78061,293,4380_82219,Oranmore,103612-00017-1,1,4380_7778208_4040301,4380_1299 -4380_78114,292,4380_8222,Kells via Navan,54850-00016-1,0,4380_7778208_1090104,4380_124 -4380_78061,296,4380_82220,Oranmore,103616-00021-1,1,4380_7778208_4040301,4380_1302 -4380_78061,297,4380_82227,Oranmore,103621-00008-1,1,4380_7778208_4040301,4380_1296 -4380_78061,285,4380_82228,Oranmore,104079-00009-1,1,4380_7778208_4040303,4380_1299 -4380_78114,293,4380_8223,Kells via Navan,54849-00017-1,0,4380_7778208_1090104,4380_124 -4380_78061,288,4380_82230,Oranmore,104077-00011-1,1,4380_7778208_4040303,4380_1299 -4380_78061,286,4380_82231,Oranmore,104083-00010-1,1,4380_7778208_4040303,4380_1299 -4380_78061,291,4380_82232,Oranmore,104085-00013-1,1,4380_7778208_4040303,4380_1302 -4380_78061,289,4380_82233,Oranmore,104081-00014-1,1,4380_7778208_4040303,4380_1299 -4380_78061,287,4380_82234,Oranmore,104087-00012-1,1,4380_7778208_4040303,4380_1299 -4380_78061,292,4380_82235,Oranmore,104084-00016-1,1,4380_7778208_4040303,4380_1299 -4380_78061,290,4380_82236,Oranmore,104080-00015-1,1,4380_7778208_4040303,4380_1299 -4380_78061,294,4380_82237,Oranmore,104088-00018-1,1,4380_7778208_4040303,4380_1299 -4380_78061,295,4380_82238,Oranmore,104082-00019-1,1,4380_7778208_4040303,4380_1299 -4380_78061,293,4380_82239,Oranmore,104078-00017-1,1,4380_7778208_4040303,4380_1299 -4380_78114,294,4380_8224,Kells via Navan,54853-00018-1,0,4380_7778208_1090104,4380_124 -4380_78061,296,4380_82240,Oranmore,104086-00021-1,1,4380_7778208_4040303,4380_1302 -4380_78061,297,4380_82247,Oranmore,104089-00008-1,1,4380_7778208_4040303,4380_1296 -4380_78061,285,4380_82248,Oranmore,103858-00009-1,1,4380_7778208_4040302,4380_1299 -4380_78114,295,4380_8225,Kells via Navan,54852-00019-1,0,4380_7778208_1090104,4380_124 -4380_78061,288,4380_82250,Oranmore,103856-00011-1,1,4380_7778208_4040302,4380_1299 -4380_78061,286,4380_82251,Oranmore,103864-00010-1,1,4380_7778208_4040302,4380_1299 -4380_78061,291,4380_82252,Oranmore,103862-00013-1,1,4380_7778208_4040302,4380_1302 -4380_78061,289,4380_82253,Oranmore,103866-00014-1,1,4380_7778208_4040302,4380_1299 -4380_78061,287,4380_82254,Oranmore,103860-00012-1,1,4380_7778208_4040302,4380_1299 -4380_78061,292,4380_82255,Oranmore,103865-00016-1,1,4380_7778208_4040302,4380_1299 -4380_78061,290,4380_82256,Oranmore,103859-00015-1,1,4380_7778208_4040302,4380_1299 -4380_78061,294,4380_82257,Oranmore,103861-00018-1,1,4380_7778208_4040302,4380_1299 -4380_78061,295,4380_82258,Oranmore,103867-00019-1,1,4380_7778208_4040302,4380_1299 -4380_78061,293,4380_82259,Oranmore,103857-00017-1,1,4380_7778208_4040302,4380_1299 -4380_78114,296,4380_8226,Kells via Navan,55233-00021-1,0,4380_7778208_1090114,4380_128 -4380_78061,296,4380_82260,Oranmore,103863-00021-1,1,4380_7778208_4040302,4380_1302 -4380_78061,297,4380_82267,Oranmore,103868-00008-1,1,4380_7778208_4040302,4380_1296 -4380_78061,285,4380_82268,Oranmore,104324-00009-1,1,4380_7778208_4040304,4380_1299 -4380_78061,288,4380_82270,Oranmore,104330-00011-1,1,4380_7778208_4040304,4380_1299 -4380_78061,286,4380_82271,Oranmore,104326-00010-1,1,4380_7778208_4040304,4380_1299 -4380_78061,291,4380_82272,Oranmore,104332-00013-1,1,4380_7778208_4040304,4380_1302 -4380_78061,289,4380_82273,Oranmore,104322-00014-1,1,4380_7778208_4040304,4380_1299 -4380_78061,287,4380_82274,Oranmore,104328-00012-1,1,4380_7778208_4040304,4380_1299 -4380_78061,292,4380_82275,Oranmore,104327-00016-1,1,4380_7778208_4040304,4380_1299 -4380_78061,290,4380_82276,Oranmore,104325-00015-1,1,4380_7778208_4040304,4380_1299 -4380_78061,294,4380_82277,Oranmore,104329-00018-1,1,4380_7778208_4040304,4380_1299 -4380_78061,295,4380_82278,Oranmore,104323-00019-1,1,4380_7778208_4040304,4380_1299 -4380_78061,293,4380_82279,Oranmore,104331-00017-1,1,4380_7778208_4040304,4380_1299 -4380_78061,296,4380_82280,Oranmore,104333-00021-1,1,4380_7778208_4040304,4380_1302 -4380_78061,297,4380_82287,Oranmore,104334-00008-1,1,4380_7778208_4040304,4380_1296 -4380_78061,285,4380_82288,Oranmore,103639-00009-1,1,4380_7778208_4040301,4380_1299 -4380_78061,288,4380_82290,Oranmore,103641-00011-1,1,4380_7778208_4040301,4380_1299 -4380_78061,286,4380_82291,Oranmore,103645-00010-1,1,4380_7778208_4040301,4380_1299 -4380_78061,291,4380_82292,Oranmore,103635-00013-1,1,4380_7778208_4040301,4380_1302 -4380_78061,289,4380_82293,Oranmore,103637-00014-1,1,4380_7778208_4040301,4380_1299 -4380_78061,287,4380_82294,Oranmore,103643-00012-1,1,4380_7778208_4040301,4380_1299 -4380_78061,292,4380_82295,Oranmore,103646-00016-1,1,4380_7778208_4040301,4380_1299 -4380_78061,290,4380_82296,Oranmore,103640-00015-1,1,4380_7778208_4040301,4380_1299 -4380_78061,294,4380_82297,Oranmore,103644-00018-1,1,4380_7778208_4040301,4380_1299 -4380_78061,295,4380_82298,Oranmore,103638-00019-1,1,4380_7778208_4040301,4380_1299 -4380_78061,293,4380_82299,Oranmore,103642-00017-1,1,4380_7778208_4040301,4380_1299 -4380_78113,285,4380_823,Dundalk,50114-00009-1,0,4380_7778208_1000907,4380_11 -4380_78061,296,4380_82300,Oranmore,103636-00021-1,1,4380_7778208_4040301,4380_1302 -4380_78061,297,4380_82307,Oranmore,103647-00008-1,1,4380_7778208_4040301,4380_1296 -4380_78061,285,4380_82308,Oranmore,104105-00009-1,1,4380_7778208_4040303,4380_1299 -4380_78061,288,4380_82310,Oranmore,104109-00011-1,1,4380_7778208_4040303,4380_1299 -4380_78061,286,4380_82311,Oranmore,104103-00010-1,1,4380_7778208_4040303,4380_1299 -4380_78061,291,4380_82312,Oranmore,104111-00013-1,1,4380_7778208_4040303,4380_1302 -4380_78061,289,4380_82313,Oranmore,104107-00014-1,1,4380_7778208_4040303,4380_1299 -4380_78061,287,4380_82314,Oranmore,104113-00012-1,1,4380_7778208_4040303,4380_1299 -4380_78061,292,4380_82315,Oranmore,104104-00016-1,1,4380_7778208_4040303,4380_1299 -4380_78061,290,4380_82316,Oranmore,104106-00015-1,1,4380_7778208_4040303,4380_1299 -4380_78061,294,4380_82317,Oranmore,104114-00018-1,1,4380_7778208_4040303,4380_1299 -4380_78061,295,4380_82318,Oranmore,104108-00019-1,1,4380_7778208_4040303,4380_1299 -4380_78061,293,4380_82319,Oranmore,104110-00017-1,1,4380_7778208_4040303,4380_1299 -4380_78061,296,4380_82320,Oranmore,104112-00021-1,1,4380_7778208_4040303,4380_1302 -4380_78061,297,4380_82327,Oranmore,104115-00008-1,1,4380_7778208_4040303,4380_1296 -4380_78061,285,4380_82328,Oranmore,103886-00009-1,1,4380_7778208_4040302,4380_1299 -4380_78061,288,4380_82330,Oranmore,103888-00011-1,1,4380_7778208_4040302,4380_1299 -4380_78061,286,4380_82331,Oranmore,103884-00010-1,1,4380_7778208_4040302,4380_1299 -4380_78061,291,4380_82332,Oranmore,103882-00013-1,1,4380_7778208_4040302,4380_1302 -4380_78061,289,4380_82333,Oranmore,103892-00014-1,1,4380_7778208_4040302,4380_1299 -4380_78061,287,4380_82334,Oranmore,103890-00012-1,1,4380_7778208_4040302,4380_1299 -4380_78061,292,4380_82335,Oranmore,103885-00016-1,1,4380_7778208_4040302,4380_1299 -4380_78061,290,4380_82336,Oranmore,103887-00015-1,1,4380_7778208_4040302,4380_1299 -4380_78061,294,4380_82337,Oranmore,103891-00018-1,1,4380_7778208_4040302,4380_1299 -4380_78061,295,4380_82338,Oranmore,103893-00019-1,1,4380_7778208_4040302,4380_1299 -4380_78061,293,4380_82339,Oranmore,103889-00017-1,1,4380_7778208_4040302,4380_1299 -4380_78114,285,4380_8234,Kells via Navan,5537-00009-1,0,4380_7778208_1090105,4380_124 -4380_78061,296,4380_82340,Oranmore,103883-00021-1,1,4380_7778208_4040302,4380_1302 -4380_78061,297,4380_82347,Oranmore,103894-00008-1,1,4380_7778208_4040302,4380_1296 -4380_78061,285,4380_82348,Oranmore,104358-00009-1,1,4380_7778208_4040304,4380_1299 -4380_78114,286,4380_8235,Kells via Navan,5545-00010-1,0,4380_7778208_1090105,4380_124 -4380_78061,288,4380_82350,Oranmore,104352-00011-1,1,4380_7778208_4040304,4380_1299 -4380_78061,286,4380_82351,Oranmore,104354-00010-1,1,4380_7778208_4040304,4380_1299 -4380_78061,291,4380_82352,Oranmore,104350-00013-1,1,4380_7778208_4040304,4380_1302 -4380_78061,289,4380_82353,Oranmore,104356-00014-1,1,4380_7778208_4040304,4380_1299 -4380_78061,287,4380_82354,Oranmore,104348-00012-1,1,4380_7778208_4040304,4380_1299 -4380_78061,292,4380_82355,Oranmore,104355-00016-1,1,4380_7778208_4040304,4380_1299 -4380_78061,290,4380_82356,Oranmore,104359-00015-1,1,4380_7778208_4040304,4380_1299 -4380_78061,294,4380_82357,Oranmore,104349-00018-1,1,4380_7778208_4040304,4380_1299 -4380_78061,295,4380_82358,Oranmore,104357-00019-1,1,4380_7778208_4040304,4380_1299 -4380_78061,293,4380_82359,Oranmore,104353-00017-1,1,4380_7778208_4040304,4380_1299 -4380_78114,297,4380_8236,Kells via Navan,5993-00008-1,0,4380_7778208_1090113,4380_126 -4380_78061,296,4380_82360,Oranmore,104351-00021-1,1,4380_7778208_4040304,4380_1302 -4380_78061,297,4380_82367,Oranmore,104360-00008-1,1,4380_7778208_4040304,4380_1296 -4380_78061,285,4380_82368,Oranmore,103671-00009-1,1,4380_7778208_4040301,4380_1299 -4380_78114,288,4380_8237,Kells via Navan,5553-00011-1,0,4380_7778208_1090105,4380_124 -4380_78061,288,4380_82370,Oranmore,103669-00011-1,1,4380_7778208_4040301,4380_1299 -4380_78061,286,4380_82371,Oranmore,103661-00010-1,1,4380_7778208_4040301,4380_1299 -4380_78061,291,4380_82372,Oranmore,103663-00013-1,1,4380_7778208_4040301,4380_1302 -4380_78061,289,4380_82373,Oranmore,103667-00014-1,1,4380_7778208_4040301,4380_1299 -4380_78061,287,4380_82374,Oranmore,103665-00012-1,1,4380_7778208_4040301,4380_1299 -4380_78061,292,4380_82375,Oranmore,103662-00016-1,1,4380_7778208_4040301,4380_1299 -4380_78061,290,4380_82376,Oranmore,103672-00015-1,1,4380_7778208_4040301,4380_1299 -4380_78061,294,4380_82377,Oranmore,103666-00018-1,1,4380_7778208_4040301,4380_1299 -4380_78061,295,4380_82378,Oranmore,103668-00019-1,1,4380_7778208_4040301,4380_1299 -4380_78061,293,4380_82379,Oranmore,103670-00017-1,1,4380_7778208_4040301,4380_1299 -4380_78114,287,4380_8238,Kells via Navan,5561-00012-1,0,4380_7778208_1090105,4380_124 -4380_78061,296,4380_82380,Oranmore,103664-00021-1,1,4380_7778208_4040301,4380_1302 -4380_78061,297,4380_82387,Oranmore,103673-00008-1,1,4380_7778208_4040301,4380_1296 -4380_78061,285,4380_82388,Oranmore,104129-00009-1,1,4380_7778208_4040303,4380_1299 -4380_78114,289,4380_8239,Kells via Navan,5529-00014-1,0,4380_7778208_1090105,4380_124 -4380_78061,288,4380_82390,Oranmore,104137-00011-1,1,4380_7778208_4040303,4380_1299 -4380_78061,286,4380_82391,Oranmore,104133-00010-1,1,4380_7778208_4040303,4380_1299 -4380_78061,291,4380_82392,Oranmore,104139-00013-1,1,4380_7778208_4040303,4380_1302 -4380_78061,289,4380_82393,Oranmore,104135-00014-1,1,4380_7778208_4040303,4380_1299 -4380_78061,287,4380_82394,Oranmore,104131-00012-1,1,4380_7778208_4040303,4380_1299 -4380_78061,292,4380_82395,Oranmore,104134-00016-1,1,4380_7778208_4040303,4380_1299 -4380_78061,290,4380_82396,Oranmore,104130-00015-1,1,4380_7778208_4040303,4380_1299 -4380_78061,294,4380_82397,Oranmore,104132-00018-1,1,4380_7778208_4040303,4380_1299 -4380_78061,295,4380_82398,Oranmore,104136-00019-1,1,4380_7778208_4040303,4380_1299 -4380_78061,293,4380_82399,Oranmore,104138-00017-1,1,4380_7778208_4040303,4380_1299 -4380_78113,286,4380_824,Dundalk,50112-00010-1,0,4380_7778208_1000907,4380_11 -4380_78114,290,4380_8240,Kells via Navan,54910-00015-1,0,4380_7778208_1090105,4380_124 -4380_78061,296,4380_82400,Oranmore,104140-00021-1,1,4380_7778208_4040303,4380_1302 -4380_78061,297,4380_82407,Oranmore,104141-00008-1,1,4380_7778208_4040303,4380_1296 -4380_78061,285,4380_82408,Oranmore,103914-00009-1,1,4380_7778208_4040302,4380_1299 -4380_78114,291,4380_8241,Kells via Navan,6056-00013-1,0,4380_7778208_1090115,4380_128 -4380_78061,288,4380_82410,Oranmore,103918-00011-1,1,4380_7778208_4040302,4380_1299 -4380_78061,286,4380_82411,Oranmore,103910-00010-1,1,4380_7778208_4040302,4380_1299 -4380_78061,291,4380_82412,Oranmore,103916-00013-1,1,4380_7778208_4040302,4380_1302 -4380_78061,289,4380_82413,Oranmore,103912-00014-1,1,4380_7778208_4040302,4380_1299 -4380_78061,287,4380_82414,Oranmore,103908-00012-1,1,4380_7778208_4040302,4380_1299 -4380_78061,292,4380_82415,Oranmore,103911-00016-1,1,4380_7778208_4040302,4380_1299 -4380_78061,290,4380_82416,Oranmore,103915-00015-1,1,4380_7778208_4040302,4380_1299 -4380_78061,294,4380_82417,Oranmore,103909-00018-1,1,4380_7778208_4040302,4380_1299 -4380_78061,295,4380_82418,Oranmore,103913-00019-1,1,4380_7778208_4040302,4380_1299 -4380_78061,293,4380_82419,Oranmore,103919-00017-1,1,4380_7778208_4040302,4380_1299 -4380_78114,292,4380_8242,Kells via Navan,54911-00016-1,0,4380_7778208_1090105,4380_124 -4380_78061,296,4380_82420,Oranmore,103917-00021-1,1,4380_7778208_4040302,4380_1302 -4380_78061,297,4380_82427,Oranmore,103920-00008-1,1,4380_7778208_4040302,4380_1296 -4380_78061,285,4380_82428,Oranmore,104479-00009-1,1,4380_7778208_4040305,4380_1299 -4380_78114,293,4380_8243,Kells via Navan,54909-00017-1,0,4380_7778208_1090105,4380_124 -4380_78061,288,4380_82430,Oranmore,104481-00011-1,1,4380_7778208_4040305,4380_1299 -4380_78061,286,4380_82431,Oranmore,104475-00010-1,1,4380_7778208_4040305,4380_1299 -4380_78061,291,4380_82432,Oranmore,104374-00013-1,1,4380_7778208_4040304,4380_1302 -4380_78061,289,4380_82433,Oranmore,104477-00014-1,1,4380_7778208_4040305,4380_1299 -4380_78061,287,4380_82434,Oranmore,104483-00012-1,1,4380_7778208_4040305,4380_1299 -4380_78061,292,4380_82435,Oranmore,104476-00016-1,1,4380_7778208_4040305,4380_1299 -4380_78061,290,4380_82436,Oranmore,104480-00015-1,1,4380_7778208_4040305,4380_1299 -4380_78061,294,4380_82437,Oranmore,104484-00018-1,1,4380_7778208_4040305,4380_1299 -4380_78061,295,4380_82438,Oranmore,104478-00019-1,1,4380_7778208_4040305,4380_1299 -4380_78061,293,4380_82439,Oranmore,104482-00017-1,1,4380_7778208_4040305,4380_1299 -4380_78114,294,4380_8244,Kells via Navan,54907-00018-1,0,4380_7778208_1090105,4380_124 -4380_78061,296,4380_82440,Oranmore,104375-00021-1,1,4380_7778208_4040304,4380_1302 -4380_78061,297,4380_82447,Oranmore,104384-00008-1,1,4380_7778208_4040304,4380_1296 -4380_78061,285,4380_82448,Oranmore,104376-00009-1,1,4380_7778208_4040304,4380_1299 -4380_78114,295,4380_8245,Kells via Navan,54908-00019-1,0,4380_7778208_1090105,4380_124 -4380_78061,288,4380_82450,Oranmore,104385-00011-1,1,4380_7778208_4040304,4380_1299 -4380_78061,286,4380_82451,Oranmore,104382-00010-1,1,4380_7778208_4040304,4380_1299 -4380_78061,291,4380_82452,Oranmore,103687-00013-1,1,4380_7778208_4040301,4380_1302 -4380_78061,289,4380_82453,Oranmore,104378-00014-1,1,4380_7778208_4040304,4380_1299 -4380_78061,287,4380_82454,Oranmore,104380-00012-1,1,4380_7778208_4040304,4380_1299 -4380_78061,292,4380_82455,Oranmore,104383-00016-1,1,4380_7778208_4040304,4380_1299 -4380_78061,290,4380_82456,Oranmore,104377-00015-1,1,4380_7778208_4040304,4380_1299 -4380_78061,294,4380_82457,Oranmore,104381-00018-1,1,4380_7778208_4040304,4380_1299 -4380_78061,295,4380_82458,Oranmore,104379-00019-1,1,4380_7778208_4040304,4380_1299 -4380_78061,293,4380_82459,Oranmore,104386-00017-1,1,4380_7778208_4040304,4380_1299 -4380_78114,296,4380_8246,Kells via Navan,55268-00021-1,0,4380_7778208_1090115,4380_128 -4380_78061,296,4380_82460,Oranmore,103688-00021-1,1,4380_7778208_4040301,4380_1302 -4380_78061,297,4380_82467,Oranmore,103689-00008-1,1,4380_7778208_4040301,4380_1296 -4380_78061,285,4380_82468,Oranmore,103694-00009-1,1,4380_7778208_4040301,4380_1299 -4380_78061,288,4380_82470,Oranmore,103696-00011-1,1,4380_7778208_4040301,4380_1299 -4380_78061,286,4380_82471,Oranmore,103692-00010-1,1,4380_7778208_4040301,4380_1299 -4380_78061,291,4380_82472,Oranmore,104155-00013-1,1,4380_7778208_4040303,4380_1302 -4380_78061,289,4380_82473,Oranmore,103698-00014-1,1,4380_7778208_4040301,4380_1299 -4380_78061,287,4380_82474,Oranmore,103690-00012-1,1,4380_7778208_4040301,4380_1299 -4380_78061,292,4380_82475,Oranmore,103693-00016-1,1,4380_7778208_4040301,4380_1299 -4380_78061,290,4380_82476,Oranmore,103695-00015-1,1,4380_7778208_4040301,4380_1299 -4380_78061,294,4380_82477,Oranmore,103691-00018-1,1,4380_7778208_4040301,4380_1299 -4380_78061,295,4380_82478,Oranmore,103699-00019-1,1,4380_7778208_4040301,4380_1299 -4380_78061,293,4380_82479,Oranmore,103697-00017-1,1,4380_7778208_4040301,4380_1299 -4380_78061,296,4380_82480,Oranmore,104156-00021-1,1,4380_7778208_4040303,4380_1302 -4380_78061,297,4380_82487,Oranmore,104165-00008-1,1,4380_7778208_4040303,4380_1296 -4380_78061,285,4380_82488,Oranmore,104163-00009-1,1,4380_7778208_4040303,4380_1299 -4380_78061,288,4380_82490,Oranmore,104159-00011-1,1,4380_7778208_4040303,4380_1299 -4380_78061,286,4380_82491,Oranmore,104161-00010-1,1,4380_7778208_4040303,4380_1299 -4380_78061,291,4380_82492,Oranmore,103934-00013-1,1,4380_7778208_4040302,4380_1302 -4380_78061,289,4380_82493,Oranmore,104166-00014-1,1,4380_7778208_4040303,4380_1299 -4380_78061,287,4380_82494,Oranmore,104157-00012-1,1,4380_7778208_4040303,4380_1299 -4380_78061,292,4380_82495,Oranmore,104162-00016-1,1,4380_7778208_4040303,4380_1299 -4380_78061,290,4380_82496,Oranmore,104164-00015-1,1,4380_7778208_4040303,4380_1299 -4380_78061,294,4380_82497,Oranmore,104158-00018-1,1,4380_7778208_4040303,4380_1299 -4380_78061,295,4380_82498,Oranmore,104167-00019-1,1,4380_7778208_4040303,4380_1299 -4380_78061,293,4380_82499,Oranmore,104160-00017-1,1,4380_7778208_4040303,4380_1299 -4380_78113,297,4380_825,Dundalk,50016-00008-1,0,4380_7778208_1000906,4380_14 -4380_78061,296,4380_82500,Oranmore,103935-00021-1,1,4380_7778208_4040302,4380_1302 -4380_78061,297,4380_82507,Oranmore,103936-00008-1,1,4380_7778208_4040302,4380_1296 -4380_78061,285,4380_82508,Oranmore,103937-00009-1,1,4380_7778208_4040302,4380_1299 -4380_78061,288,4380_82510,Oranmore,103939-00011-1,1,4380_7778208_4040302,4380_1299 -4380_78061,286,4380_82511,Oranmore,103943-00010-1,1,4380_7778208_4040302,4380_1299 -4380_78061,291,4380_82512,Oranmore,104400-00013-1,1,4380_7778208_4040304,4380_1302 -4380_78061,289,4380_82513,Oranmore,103945-00014-1,1,4380_7778208_4040302,4380_1299 -4380_78061,287,4380_82514,Oranmore,103941-00012-1,1,4380_7778208_4040302,4380_1299 -4380_78061,292,4380_82515,Oranmore,103944-00016-1,1,4380_7778208_4040302,4380_1299 -4380_78061,290,4380_82516,Oranmore,103938-00015-1,1,4380_7778208_4040302,4380_1299 -4380_78061,294,4380_82517,Oranmore,103942-00018-1,1,4380_7778208_4040302,4380_1299 -4380_78061,295,4380_82518,Oranmore,103946-00019-1,1,4380_7778208_4040302,4380_1299 -4380_78061,293,4380_82519,Oranmore,103940-00017-1,1,4380_7778208_4040302,4380_1299 -4380_78061,296,4380_82520,Oranmore,104401-00021-1,1,4380_7778208_4040304,4380_1302 -4380_78061,297,4380_82527,Oranmore,104408-00008-1,1,4380_7778208_4040304,4380_1296 -4380_78061,285,4380_82528,Oranmore,104409-00009-1,1,4380_7778208_4040304,4380_1299 -4380_78061,288,4380_82530,Oranmore,104411-00011-1,1,4380_7778208_4040304,4380_1299 -4380_78061,286,4380_82531,Oranmore,104406-00010-1,1,4380_7778208_4040304,4380_1299 -4380_78061,291,4380_82532,Oranmore,103713-00013-1,1,4380_7778208_4040301,4380_1302 -4380_78061,289,4380_82533,Oranmore,104402-00014-1,1,4380_7778208_4040304,4380_1299 -4380_78061,287,4380_82534,Oranmore,104404-00012-1,1,4380_7778208_4040304,4380_1299 -4380_78061,292,4380_82535,Oranmore,104407-00016-1,1,4380_7778208_4040304,4380_1299 -4380_78061,290,4380_82536,Oranmore,104410-00015-1,1,4380_7778208_4040304,4380_1299 -4380_78061,294,4380_82537,Oranmore,104405-00018-1,1,4380_7778208_4040304,4380_1299 -4380_78061,295,4380_82538,Oranmore,104403-00019-1,1,4380_7778208_4040304,4380_1299 -4380_78061,293,4380_82539,Oranmore,104412-00017-1,1,4380_7778208_4040304,4380_1299 -4380_78114,285,4380_8254,Kells via Navan,5242-00009-1,0,4380_7778208_1090101,4380_124 -4380_78061,296,4380_82540,Oranmore,103714-00021-1,1,4380_7778208_4040301,4380_1302 -4380_78061,297,4380_82547,Oranmore,103715-00008-1,1,4380_7778208_4040301,4380_1296 -4380_78061,285,4380_82548,Oranmore,103718-00009-1,1,4380_7778208_4040301,4380_1299 -4380_78114,286,4380_8255,Kells via Navan,5252-00010-1,0,4380_7778208_1090101,4380_124 -4380_78061,288,4380_82550,Oranmore,103724-00011-1,1,4380_7778208_4040301,4380_1299 -4380_78061,286,4380_82551,Oranmore,103722-00010-1,1,4380_7778208_4040301,4380_1299 -4380_78061,291,4380_82552,Oranmore,104181-00013-1,1,4380_7778208_4040303,4380_1302 -4380_78061,289,4380_82553,Oranmore,103716-00014-1,1,4380_7778208_4040301,4380_1299 -4380_78061,287,4380_82554,Oranmore,103720-00012-1,1,4380_7778208_4040301,4380_1299 -4380_78061,292,4380_82555,Oranmore,103723-00016-1,1,4380_7778208_4040301,4380_1299 -4380_78061,290,4380_82556,Oranmore,103719-00015-1,1,4380_7778208_4040301,4380_1299 -4380_78061,294,4380_82557,Oranmore,103721-00018-1,1,4380_7778208_4040301,4380_1299 -4380_78061,295,4380_82558,Oranmore,103717-00019-1,1,4380_7778208_4040301,4380_1299 -4380_78061,293,4380_82559,Oranmore,103725-00017-1,1,4380_7778208_4040301,4380_1299 -4380_78114,297,4380_8256,Kells via Navan,5815-00008-1,0,4380_7778208_1090109,4380_126 -4380_78061,296,4380_82560,Oranmore,104182-00021-1,1,4380_7778208_4040303,4380_1302 -4380_78061,297,4380_82567,Oranmore,104189-00008-1,1,4380_7778208_4040303,4380_1296 -4380_78061,285,4380_82568,Oranmore,104190-00009-1,1,4380_7778208_4040303,4380_1299 -4380_78114,288,4380_8257,Kells via Navan,5262-00011-1,0,4380_7778208_1090101,4380_124 -4380_78061,288,4380_82570,Oranmore,104192-00011-1,1,4380_7778208_4040303,4380_1299 -4380_78061,286,4380_82571,Oranmore,104185-00010-1,1,4380_7778208_4040303,4380_1299 -4380_78061,291,4380_82572,Oranmore,103960-00013-1,1,4380_7778208_4040302,4380_1302 -4380_78061,289,4380_82573,Oranmore,104187-00014-1,1,4380_7778208_4040303,4380_1299 -4380_78061,287,4380_82574,Oranmore,104183-00012-1,1,4380_7778208_4040303,4380_1299 -4380_78061,292,4380_82575,Oranmore,104186-00016-1,1,4380_7778208_4040303,4380_1299 -4380_78061,290,4380_82576,Oranmore,104191-00015-1,1,4380_7778208_4040303,4380_1299 -4380_78061,294,4380_82577,Oranmore,104184-00018-1,1,4380_7778208_4040303,4380_1299 -4380_78061,295,4380_82578,Oranmore,104188-00019-1,1,4380_7778208_4040303,4380_1299 -4380_78061,293,4380_82579,Oranmore,104193-00017-1,1,4380_7778208_4040303,4380_1299 -4380_78114,287,4380_8258,Kells via Navan,5272-00012-1,0,4380_7778208_1090101,4380_124 -4380_78061,296,4380_82580,Oranmore,103961-00021-1,1,4380_7778208_4040302,4380_1302 -4380_78061,297,4380_82587,Oranmore,103968-00008-1,1,4380_7778208_4040302,4380_1296 -4380_78061,285,4380_82588,Oranmore,103964-00009-1,1,4380_7778208_4040302,4380_1299 -4380_78114,289,4380_8259,Kells via Navan,5232-00014-1,0,4380_7778208_1090101,4380_124 -4380_78061,288,4380_82590,Oranmore,103966-00011-1,1,4380_7778208_4040302,4380_1299 -4380_78061,286,4380_82591,Oranmore,103962-00010-1,1,4380_7778208_4040302,4380_1299 -4380_78061,291,4380_82592,Oranmore,104426-00013-1,1,4380_7778208_4040304,4380_1302 -4380_78061,289,4380_82593,Oranmore,103971-00014-1,1,4380_7778208_4040302,4380_1299 -4380_78061,287,4380_82594,Oranmore,103969-00012-1,1,4380_7778208_4040302,4380_1299 -4380_78061,292,4380_82595,Oranmore,103963-00016-1,1,4380_7778208_4040302,4380_1299 -4380_78061,290,4380_82596,Oranmore,103965-00015-1,1,4380_7778208_4040302,4380_1299 -4380_78061,294,4380_82597,Oranmore,103970-00018-1,1,4380_7778208_4040302,4380_1299 -4380_78061,295,4380_82598,Oranmore,103972-00019-1,1,4380_7778208_4040302,4380_1299 -4380_78061,293,4380_82599,Oranmore,103967-00017-1,1,4380_7778208_4040302,4380_1299 -4380_78113,287,4380_826,Dundalk,50108-00012-1,0,4380_7778208_1000907,4380_11 -4380_78114,290,4380_8260,Kells via Navan,54697-00015-1,0,4380_7778208_1090101,4380_124 -4380_78061,296,4380_82600,Oranmore,104427-00021-1,1,4380_7778208_4040304,4380_1302 -4380_78061,297,4380_82607,Oranmore,104434-00008-1,1,4380_7778208_4040304,4380_1296 -4380_78061,285,4380_82608,Oranmore,104435-00009-1,1,4380_7778208_4040304,4380_1299 -4380_78114,291,4380_8261,Kells via Navan,5890-00013-1,0,4380_7778208_1090111,4380_128 -4380_78061,288,4380_82610,Oranmore,104437-00011-1,1,4380_7778208_4040304,4380_1299 -4380_78061,286,4380_82611,Oranmore,104428-00010-1,1,4380_7778208_4040304,4380_1299 -4380_78061,291,4380_82612,Oranmore,103739-00013-1,1,4380_7778208_4040301,4380_1302 -4380_78061,289,4380_82613,Oranmore,104432-00014-1,1,4380_7778208_4040304,4380_1299 -4380_78061,287,4380_82614,Oranmore,104430-00012-1,1,4380_7778208_4040304,4380_1299 -4380_78061,292,4380_82615,Oranmore,104429-00016-1,1,4380_7778208_4040304,4380_1299 -4380_78061,290,4380_82616,Oranmore,104436-00015-1,1,4380_7778208_4040304,4380_1299 -4380_78061,294,4380_82617,Oranmore,104431-00018-1,1,4380_7778208_4040304,4380_1299 -4380_78061,295,4380_82618,Oranmore,104433-00019-1,1,4380_7778208_4040304,4380_1299 -4380_78061,293,4380_82619,Oranmore,104438-00017-1,1,4380_7778208_4040304,4380_1299 -4380_78114,292,4380_8262,Kells via Navan,54695-00016-1,0,4380_7778208_1090101,4380_124 -4380_78061,296,4380_82620,Oranmore,103740-00021-1,1,4380_7778208_4040301,4380_1302 -4380_78061,297,4380_82627,Oranmore,103747-00008-1,1,4380_7778208_4040301,4380_1296 -4380_78061,285,4380_82628,Oranmore,103750-00009-1,1,4380_7778208_4040301,4380_1299 -4380_78114,293,4380_8263,Kells via Navan,54694-00017-1,0,4380_7778208_1090101,4380_124 -4380_78061,288,4380_82630,Oranmore,103743-00011-1,1,4380_7778208_4040301,4380_1299 -4380_78061,286,4380_82631,Oranmore,103741-00010-1,1,4380_7778208_4040301,4380_1299 -4380_78061,291,4380_82632,Oranmore,104207-00013-1,1,4380_7778208_4040303,4380_1302 -4380_78061,289,4380_82633,Oranmore,103748-00014-1,1,4380_7778208_4040301,4380_1299 -4380_78061,287,4380_82634,Oranmore,103745-00012-1,1,4380_7778208_4040301,4380_1299 -4380_78061,292,4380_82635,Oranmore,103742-00016-1,1,4380_7778208_4040301,4380_1299 -4380_78061,290,4380_82636,Oranmore,103751-00015-1,1,4380_7778208_4040301,4380_1299 -4380_78061,294,4380_82637,Oranmore,103746-00018-1,1,4380_7778208_4040301,4380_1299 -4380_78061,295,4380_82638,Oranmore,103749-00019-1,1,4380_7778208_4040301,4380_1299 -4380_78061,293,4380_82639,Oranmore,103744-00017-1,1,4380_7778208_4040301,4380_1299 -4380_78114,294,4380_8264,Kells via Navan,54696-00018-1,0,4380_7778208_1090101,4380_124 -4380_78061,296,4380_82640,Oranmore,104208-00021-1,1,4380_7778208_4040303,4380_1302 -4380_78061,297,4380_82647,Oranmore,104219-00008-1,1,4380_7778208_4040303,4380_1296 -4380_78061,285,4380_82648,Oranmore,104213-00009-1,1,4380_7778208_4040303,4380_1299 -4380_78114,295,4380_8265,Kells via Navan,54698-00019-1,0,4380_7778208_1090101,4380_124 -4380_78061,288,4380_82650,Oranmore,104215-00011-1,1,4380_7778208_4040303,4380_1299 -4380_78061,286,4380_82651,Oranmore,104217-00010-1,1,4380_7778208_4040303,4380_1299 -4380_78061,291,4380_82652,Oranmore,103986-00013-1,1,4380_7778208_4040302,4380_1302 -4380_78061,289,4380_82653,Oranmore,104211-00014-1,1,4380_7778208_4040303,4380_1299 -4380_78061,287,4380_82654,Oranmore,104209-00012-1,1,4380_7778208_4040303,4380_1299 -4380_78061,292,4380_82655,Oranmore,104218-00016-1,1,4380_7778208_4040303,4380_1299 -4380_78061,290,4380_82656,Oranmore,104214-00015-1,1,4380_7778208_4040303,4380_1299 -4380_78061,294,4380_82657,Oranmore,104210-00018-1,1,4380_7778208_4040303,4380_1299 -4380_78061,295,4380_82658,Oranmore,104212-00019-1,1,4380_7778208_4040303,4380_1299 -4380_78061,293,4380_82659,Oranmore,104216-00017-1,1,4380_7778208_4040303,4380_1299 -4380_78114,296,4380_8266,Kells via Navan,55145-00021-1,0,4380_7778208_1090111,4380_128 -4380_78061,296,4380_82660,Oranmore,103987-00021-1,1,4380_7778208_4040302,4380_1302 -4380_78061,297,4380_82667,Oranmore,103998-00008-1,1,4380_7778208_4040302,4380_1296 -4380_78061,285,4380_82668,Oranmore,103994-00009-1,1,4380_7778208_4040302,4380_1299 -4380_78061,288,4380_82670,Oranmore,103990-00011-1,1,4380_7778208_4040302,4380_1299 -4380_78061,286,4380_82671,Oranmore,103992-00010-1,1,4380_7778208_4040302,4380_1299 -4380_78061,291,4380_82672,Oranmore,104452-00013-1,1,4380_7778208_4040304,4380_1302 -4380_78061,289,4380_82673,Oranmore,103996-00014-1,1,4380_7778208_4040302,4380_1299 -4380_78061,287,4380_82674,Oranmore,103988-00012-1,1,4380_7778208_4040302,4380_1299 -4380_78061,292,4380_82675,Oranmore,103993-00016-1,1,4380_7778208_4040302,4380_1299 -4380_78061,290,4380_82676,Oranmore,103995-00015-1,1,4380_7778208_4040302,4380_1299 -4380_78061,294,4380_82677,Oranmore,103989-00018-1,1,4380_7778208_4040302,4380_1299 -4380_78061,295,4380_82678,Oranmore,103997-00019-1,1,4380_7778208_4040302,4380_1299 -4380_78061,293,4380_82679,Oranmore,103991-00017-1,1,4380_7778208_4040302,4380_1299 -4380_78061,296,4380_82680,Oranmore,104453-00021-1,1,4380_7778208_4040304,4380_1302 -4380_78061,297,4380_82687,Eyre Square,104462-00008-1,1,4380_7778208_4040304,4380_1297 -4380_78061,285,4380_82688,Eyre Square,104454-00009-1,1,4380_7778208_4040304,4380_1300 -4380_78061,288,4380_82690,Eyre Square,104456-00011-1,1,4380_7778208_4040304,4380_1300 -4380_78061,286,4380_82691,Eyre Square,104463-00010-1,1,4380_7778208_4040304,4380_1300 -4380_78061,291,4380_82692,Eyre Square,103765-00013-1,1,4380_7778208_4040301,4380_1303 -4380_78061,289,4380_82693,Eyre Square,104458-00014-1,1,4380_7778208_4040304,4380_1300 -4380_78061,287,4380_82694,Eyre Square,104460-00012-1,1,4380_7778208_4040304,4380_1300 -4380_78061,292,4380_82695,Eyre Square,104464-00016-1,1,4380_7778208_4040304,4380_1300 -4380_78061,290,4380_82696,Eyre Square,104455-00015-1,1,4380_7778208_4040304,4380_1300 -4380_78061,294,4380_82697,Eyre Square,104461-00018-1,1,4380_7778208_4040304,4380_1300 -4380_78061,295,4380_82698,Eyre Square,104459-00019-1,1,4380_7778208_4040304,4380_1300 -4380_78061,293,4380_82699,Eyre Square,104457-00017-1,1,4380_7778208_4040304,4380_1300 -4380_78113,288,4380_827,Dundalk,50110-00011-1,0,4380_7778208_1000907,4380_11 -4380_78061,296,4380_82700,Eyre Square,103766-00021-1,1,4380_7778208_4040301,4380_1303 -4380_78062,285,4380_82706,Ballybane,104493-00009-1,0,4380_7778208_4050301,4380_1304 -4380_78062,288,4380_82707,Ballybane,104489-00011-1,0,4380_7778208_4050301,4380_1304 -4380_78062,286,4380_82708,Ballybane,104491-00010-1,0,4380_7778208_4050301,4380_1304 -4380_78062,289,4380_82709,Ballybane,104487-00014-1,0,4380_7778208_4050301,4380_1304 -4380_78062,287,4380_82710,Ballybane,104485-00012-1,0,4380_7778208_4050301,4380_1304 -4380_78062,292,4380_82711,Ballybane,104492-00016-1,0,4380_7778208_4050301,4380_1304 -4380_78062,290,4380_82712,Ballybane,104494-00015-1,0,4380_7778208_4050301,4380_1304 -4380_78062,294,4380_82713,Ballybane,104486-00018-1,0,4380_7778208_4050301,4380_1304 -4380_78062,295,4380_82714,Ballybane,104488-00019-1,0,4380_7778208_4050301,4380_1304 -4380_78062,293,4380_82715,Ballybane,104490-00017-1,0,4380_7778208_4050301,4380_1304 -4380_78062,285,4380_82721,Ballybane,104715-00009-1,0,4380_7778208_4050302,4380_1304 -4380_78062,288,4380_82722,Ballybane,104713-00011-1,0,4380_7778208_4050302,4380_1304 -4380_78062,286,4380_82723,Ballybane,104711-00010-1,0,4380_7778208_4050302,4380_1304 -4380_78062,289,4380_82724,Ballybane,104709-00014-1,0,4380_7778208_4050302,4380_1304 -4380_78062,287,4380_82725,Ballybane,104707-00012-1,0,4380_7778208_4050302,4380_1304 -4380_78062,292,4380_82726,Ballybane,104712-00016-1,0,4380_7778208_4050302,4380_1304 -4380_78062,290,4380_82727,Ballybane,104716-00015-1,0,4380_7778208_4050302,4380_1304 -4380_78062,294,4380_82728,Ballybane,104708-00018-1,0,4380_7778208_4050302,4380_1304 -4380_78062,295,4380_82729,Ballybane,104710-00019-1,0,4380_7778208_4050302,4380_1304 -4380_78062,293,4380_82730,Ballybane,104714-00017-1,0,4380_7778208_4050302,4380_1304 -4380_78062,285,4380_82736,Ballybane,105209-00009-1,0,4380_7778208_4050304,4380_1304 -4380_78062,288,4380_82737,Ballybane,105203-00011-1,0,4380_7778208_4050304,4380_1304 -4380_78062,286,4380_82738,Ballybane,105207-00010-1,0,4380_7778208_4050304,4380_1304 -4380_78062,289,4380_82739,Ballybane,105205-00014-1,0,4380_7778208_4050304,4380_1304 -4380_78114,285,4380_8274,Kells via Navan,5318-00009-1,0,4380_7778208_1090102,4380_124 -4380_78062,287,4380_82740,Ballybane,105211-00012-1,0,4380_7778208_4050304,4380_1304 -4380_78062,292,4380_82741,Ballybane,105208-00016-1,0,4380_7778208_4050304,4380_1304 -4380_78062,290,4380_82742,Ballybane,105210-00015-1,0,4380_7778208_4050304,4380_1304 -4380_78062,294,4380_82743,Ballybane,105212-00018-1,0,4380_7778208_4050304,4380_1304 -4380_78062,295,4380_82744,Ballybane,105206-00019-1,0,4380_7778208_4050304,4380_1304 -4380_78062,293,4380_82745,Ballybane,105204-00017-1,0,4380_7778208_4050304,4380_1304 -4380_78114,286,4380_8275,Kells via Navan,5328-00010-1,0,4380_7778208_1090102,4380_124 -4380_78062,285,4380_82751,Ballybane,104955-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78062,288,4380_82752,Ballybane,104949-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78062,286,4380_82753,Ballybane,104957-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,289,4380_82754,Ballybane,104951-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78062,287,4380_82755,Ballybane,104953-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_82756,Ballybane,104958-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_82757,Ballybane,104956-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_82758,Ballybane,104954-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78062,295,4380_82759,Ballybane,104952-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78114,297,4380_8276,Kells via Navan,5870-00008-1,0,4380_7778208_1090110,4380_126 -4380_78062,293,4380_82760,Ballybane,104950-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78062,285,4380_82766,Ballybane,105393-00009-1,0,4380_7778208_4050305,4380_1304 -4380_78062,288,4380_82767,Ballybane,105391-00011-1,0,4380_7778208_4050305,4380_1304 -4380_78062,286,4380_82768,Ballybane,105395-00010-1,0,4380_7778208_4050305,4380_1304 -4380_78062,289,4380_82769,Ballybane,105389-00014-1,0,4380_7778208_4050305,4380_1304 -4380_78114,288,4380_8277,Kells via Navan,5338-00011-1,0,4380_7778208_1090102,4380_124 -4380_78062,287,4380_82770,Ballybane,105387-00012-1,0,4380_7778208_4050305,4380_1304 -4380_78062,292,4380_82771,Ballybane,105396-00016-1,0,4380_7778208_4050305,4380_1304 -4380_78062,290,4380_82772,Ballybane,105394-00015-1,0,4380_7778208_4050305,4380_1304 -4380_78062,294,4380_82773,Ballybane,105388-00018-1,0,4380_7778208_4050305,4380_1304 -4380_78062,295,4380_82774,Ballybane,105390-00019-1,0,4380_7778208_4050305,4380_1304 -4380_78062,293,4380_82775,Ballybane,105392-00017-1,0,4380_7778208_4050305,4380_1304 -4380_78062,297,4380_82777,Ballybane,104727-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,291,4380_82779,Ballybane,104959-00013-1,0,4380_7778208_4050303,4380_1306 -4380_78114,287,4380_8278,Kells via Navan,5348-00012-1,0,4380_7778208_1090102,4380_124 -4380_78062,296,4380_82780,Ballybane,104960-00021-1,0,4380_7778208_4050303,4380_1306 -4380_78062,285,4380_82786,Ballybane,104514-00009-1,0,4380_7778208_4050301,4380_1304 -4380_78062,288,4380_82787,Ballybane,104512-00011-1,0,4380_7778208_4050301,4380_1304 -4380_78062,286,4380_82788,Ballybane,104508-00010-1,0,4380_7778208_4050301,4380_1304 -4380_78062,289,4380_82789,Ballybane,104510-00014-1,0,4380_7778208_4050301,4380_1304 -4380_78114,289,4380_8279,Kells via Navan,5308-00014-1,0,4380_7778208_1090102,4380_124 -4380_78062,287,4380_82790,Ballybane,104506-00012-1,0,4380_7778208_4050301,4380_1304 -4380_78062,292,4380_82791,Ballybane,104509-00016-1,0,4380_7778208_4050301,4380_1304 -4380_78062,290,4380_82792,Ballybane,104515-00015-1,0,4380_7778208_4050301,4380_1304 -4380_78062,294,4380_82793,Ballybane,104507-00018-1,0,4380_7778208_4050301,4380_1304 -4380_78062,295,4380_82794,Ballybane,104511-00019-1,0,4380_7778208_4050301,4380_1304 -4380_78062,293,4380_82795,Ballybane,104513-00017-1,0,4380_7778208_4050301,4380_1304 -4380_78062,291,4380_82797,Ballybane,104516-00013-1,0,4380_7778208_4050301,4380_1304 -4380_78062,296,4380_82798,Ballybane,104517-00021-1,0,4380_7778208_4050301,4380_1304 -4380_78113,289,4380_828,Dundalk,50116-00014-1,0,4380_7778208_1000907,4380_11 -4380_78114,290,4380_8280,Kells via Navan,54751-00015-1,0,4380_7778208_1090102,4380_124 -4380_78062,285,4380_82804,Ballybane,104734-00009-1,0,4380_7778208_4050302,4380_1304 -4380_78062,288,4380_82805,Ballybane,104732-00011-1,0,4380_7778208_4050302,4380_1304 -4380_78062,286,4380_82806,Ballybane,104730-00010-1,0,4380_7778208_4050302,4380_1304 -4380_78062,289,4380_82807,Ballybane,104738-00014-1,0,4380_7778208_4050302,4380_1304 -4380_78062,287,4380_82808,Ballybane,104736-00012-1,0,4380_7778208_4050302,4380_1304 -4380_78062,292,4380_82809,Ballybane,104731-00016-1,0,4380_7778208_4050302,4380_1304 -4380_78114,291,4380_8281,Kells via Navan,5955-00013-1,0,4380_7778208_1090112,4380_128 -4380_78062,290,4380_82810,Ballybane,104735-00015-1,0,4380_7778208_4050302,4380_1304 -4380_78062,294,4380_82811,Ballybane,104737-00018-1,0,4380_7778208_4050302,4380_1304 -4380_78062,295,4380_82812,Ballybane,104739-00019-1,0,4380_7778208_4050302,4380_1304 -4380_78062,293,4380_82813,Ballybane,104733-00017-1,0,4380_7778208_4050302,4380_1304 -4380_78062,297,4380_82815,Ballybane,104518-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78062,291,4380_82817,Ballybane,105225-00013-1,0,4380_7778208_4050304,4380_1306 -4380_78062,296,4380_82818,Ballybane,105226-00021-1,0,4380_7778208_4050304,4380_1306 -4380_78114,292,4380_8282,Kells via Navan,54748-00016-1,0,4380_7778208_1090102,4380_124 -4380_78062,285,4380_82824,Ballybane,105229-00009-1,0,4380_7778208_4050304,4380_1304 -4380_78062,288,4380_82825,Ballybane,105233-00011-1,0,4380_7778208_4050304,4380_1304 -4380_78062,286,4380_82826,Ballybane,105227-00010-1,0,4380_7778208_4050304,4380_1304 -4380_78062,289,4380_82827,Ballybane,105231-00014-1,0,4380_7778208_4050304,4380_1304 -4380_78062,287,4380_82828,Ballybane,105235-00012-1,0,4380_7778208_4050304,4380_1304 -4380_78062,292,4380_82829,Ballybane,105228-00016-1,0,4380_7778208_4050304,4380_1304 -4380_78114,293,4380_8283,Kells via Navan,54749-00017-1,0,4380_7778208_1090102,4380_124 -4380_78062,290,4380_82830,Ballybane,105230-00015-1,0,4380_7778208_4050304,4380_1304 -4380_78062,294,4380_82831,Ballybane,105236-00018-1,0,4380_7778208_4050304,4380_1304 -4380_78062,295,4380_82832,Ballybane,105232-00019-1,0,4380_7778208_4050304,4380_1304 -4380_78062,293,4380_82833,Ballybane,105234-00017-1,0,4380_7778208_4050304,4380_1304 -4380_78062,291,4380_82835,Ballybane,104741-00013-1,0,4380_7778208_4050302,4380_1304 -4380_78062,296,4380_82836,Ballybane,104742-00021-1,0,4380_7778208_4050302,4380_1304 -4380_78114,294,4380_8284,Kells via Navan,54750-00018-1,0,4380_7778208_1090102,4380_124 -4380_78062,285,4380_82842,Ballybane,104981-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78062,288,4380_82843,Ballybane,104973-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78062,286,4380_82844,Ballybane,104979-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,289,4380_82845,Ballybane,104975-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78062,287,4380_82846,Ballybane,104977-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_82847,Ballybane,104980-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_82848,Ballybane,104982-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_82849,Ballybane,104978-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78114,295,4380_8285,Kells via Navan,54747-00019-1,0,4380_7778208_1090102,4380_124 -4380_78062,295,4380_82850,Ballybane,104976-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78062,293,4380_82851,Ballybane,104974-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78062,297,4380_82853,Ballybane,104743-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,291,4380_82855,Ballybane,104983-00013-1,0,4380_7778208_4050303,4380_1306 -4380_78062,296,4380_82856,Ballybane,104984-00021-1,0,4380_7778208_4050303,4380_1306 -4380_78114,296,4380_8286,Kells via Navan,55190-00021-1,0,4380_7778208_1090112,4380_128 -4380_78062,285,4380_82862,Ballybane,105413-00009-1,0,4380_7778208_4050305,4380_1304 -4380_78062,288,4380_82864,Ballybane,105415-00011-1,0,4380_7778208_4050305,4380_1304 -4380_78062,286,4380_82865,Ballybane,105411-00010-1,0,4380_7778208_4050305,4380_1304 -4380_78062,291,4380_82866,Ballybane,104532-00013-1,0,4380_7778208_4050301,4380_1306 -4380_78062,289,4380_82867,Ballybane,105409-00014-1,0,4380_7778208_4050305,4380_1304 -4380_78062,287,4380_82868,Ballybane,105407-00012-1,0,4380_7778208_4050305,4380_1304 -4380_78062,292,4380_82869,Ballybane,105412-00016-1,0,4380_7778208_4050305,4380_1304 -4380_78062,290,4380_82870,Ballybane,105414-00015-1,0,4380_7778208_4050305,4380_1304 -4380_78062,294,4380_82871,Ballybane,105408-00018-1,0,4380_7778208_4050305,4380_1304 -4380_78062,295,4380_82872,Ballybane,105410-00019-1,0,4380_7778208_4050305,4380_1304 -4380_78062,293,4380_82873,Ballybane,105416-00017-1,0,4380_7778208_4050305,4380_1304 -4380_78062,296,4380_82874,Ballybane,104533-00021-1,0,4380_7778208_4050301,4380_1306 -4380_78062,297,4380_82881,Ballybane,104538-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78062,285,4380_82882,Ballybane,104534-00009-1,0,4380_7778208_4050301,4380_1306 -4380_78062,288,4380_82884,Ballybane,104536-00011-1,0,4380_7778208_4050301,4380_1306 -4380_78062,286,4380_82885,Ballybane,104539-00010-1,0,4380_7778208_4050301,4380_1306 -4380_78062,291,4380_82886,Ballybane,105249-00013-1,0,4380_7778208_4050304,4380_1308 -4380_78062,289,4380_82887,Ballybane,104541-00014-1,0,4380_7778208_4050301,4380_1306 -4380_78062,287,4380_82888,Ballybane,104543-00012-1,0,4380_7778208_4050301,4380_1306 -4380_78062,292,4380_82889,Ballybane,104540-00016-1,0,4380_7778208_4050301,4380_1306 -4380_78062,290,4380_82890,Ballybane,104535-00015-1,0,4380_7778208_4050301,4380_1306 -4380_78062,294,4380_82891,Ballybane,104544-00018-1,0,4380_7778208_4050301,4380_1306 -4380_78062,295,4380_82892,Ballybane,104542-00019-1,0,4380_7778208_4050301,4380_1306 -4380_78062,293,4380_82893,Ballybane,104537-00017-1,0,4380_7778208_4050301,4380_1306 -4380_78062,296,4380_82894,Ballybane,105250-00021-1,0,4380_7778208_4050304,4380_1308 -4380_78113,290,4380_829,Dundalk,50115-00015-1,0,4380_7778208_1000907,4380_11 -4380_78062,285,4380_82900,Ballybane,104767-00009-1,0,4380_7778208_4050302,4380_1304 -4380_78062,288,4380_82902,Ballybane,104765-00011-1,0,4380_7778208_4050302,4380_1304 -4380_78062,286,4380_82903,Ballybane,104761-00010-1,0,4380_7778208_4050302,4380_1304 -4380_78062,291,4380_82904,Ballybane,104757-00013-1,0,4380_7778208_4050302,4380_1306 -4380_78062,289,4380_82905,Ballybane,104759-00014-1,0,4380_7778208_4050302,4380_1304 -4380_78062,287,4380_82906,Ballybane,104763-00012-1,0,4380_7778208_4050302,4380_1304 -4380_78062,292,4380_82907,Ballybane,104762-00016-1,0,4380_7778208_4050302,4380_1304 -4380_78062,290,4380_82908,Ballybane,104768-00015-1,0,4380_7778208_4050302,4380_1304 -4380_78062,294,4380_82909,Ballybane,104764-00018-1,0,4380_7778208_4050302,4380_1304 -4380_78062,295,4380_82910,Ballybane,104760-00019-1,0,4380_7778208_4050302,4380_1304 -4380_78062,293,4380_82911,Ballybane,104766-00017-1,0,4380_7778208_4050302,4380_1304 -4380_78062,296,4380_82912,Ballybane,104758-00021-1,0,4380_7778208_4050302,4380_1306 -4380_78062,297,4380_82919,Ballybane,104769-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,285,4380_82920,Ballybane,105255-00009-1,0,4380_7778208_4050304,4380_1306 -4380_78062,288,4380_82922,Ballybane,105253-00011-1,0,4380_7778208_4050304,4380_1306 -4380_78062,286,4380_82923,Ballybane,105251-00010-1,0,4380_7778208_4050304,4380_1306 -4380_78062,291,4380_82924,Ballybane,104997-00013-1,0,4380_7778208_4050303,4380_1308 -4380_78062,289,4380_82925,Ballybane,105261-00014-1,0,4380_7778208_4050304,4380_1306 -4380_78062,287,4380_82926,Ballybane,105257-00012-1,0,4380_7778208_4050304,4380_1306 -4380_78062,292,4380_82927,Ballybane,105252-00016-1,0,4380_7778208_4050304,4380_1306 -4380_78062,290,4380_82928,Ballybane,105256-00015-1,0,4380_7778208_4050304,4380_1306 -4380_78062,294,4380_82929,Ballybane,105258-00018-1,0,4380_7778208_4050304,4380_1306 -4380_78062,295,4380_82930,Ballybane,105262-00019-1,0,4380_7778208_4050304,4380_1306 -4380_78062,293,4380_82931,Ballybane,105254-00017-1,0,4380_7778208_4050304,4380_1306 -4380_78062,296,4380_82932,Ballybane,104998-00021-1,0,4380_7778208_4050303,4380_1308 -4380_78062,285,4380_82938,Ballybane,105007-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78114,285,4380_8294,Kells via Navan,5390-00009-1,0,4380_7778208_1090103,4380_124 -4380_78062,288,4380_82940,Ballybane,104999-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78062,286,4380_82941,Ballybane,105005-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,291,4380_82942,Ballybane,104558-00013-1,0,4380_7778208_4050301,4380_1306 -4380_78062,289,4380_82943,Ballybane,105003-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78062,287,4380_82944,Ballybane,105001-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_82945,Ballybane,105006-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_82946,Ballybane,105008-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_82947,Ballybane,105002-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78062,295,4380_82948,Ballybane,105004-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78062,293,4380_82949,Ballybane,105000-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78114,286,4380_8295,Kells via Navan,5400-00010-1,0,4380_7778208_1090103,4380_124 -4380_78062,296,4380_82950,Ballybane,104559-00021-1,0,4380_7778208_4050301,4380_1306 -4380_78062,297,4380_82957,Ballybane,104560-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78062,285,4380_82958,Ballybane,105429-00009-1,0,4380_7778208_4050305,4380_1306 -4380_78114,297,4380_8296,Kells via Navan,5900-00008-1,0,4380_7778208_1090111,4380_126 -4380_78062,288,4380_82960,Ballybane,105433-00011-1,0,4380_7778208_4050305,4380_1306 -4380_78062,286,4380_82961,Ballybane,105431-00010-1,0,4380_7778208_4050305,4380_1306 -4380_78062,291,4380_82962,Ballybane,105263-00013-1,0,4380_7778208_4050304,4380_1308 -4380_78062,289,4380_82963,Ballybane,105435-00014-1,0,4380_7778208_4050305,4380_1306 -4380_78062,287,4380_82964,Ballybane,105427-00012-1,0,4380_7778208_4050305,4380_1306 -4380_78062,292,4380_82965,Ballybane,105432-00016-1,0,4380_7778208_4050305,4380_1306 -4380_78062,290,4380_82966,Ballybane,105430-00015-1,0,4380_7778208_4050305,4380_1306 -4380_78062,294,4380_82967,Ballybane,105428-00018-1,0,4380_7778208_4050305,4380_1306 -4380_78062,295,4380_82968,Ballybane,105436-00019-1,0,4380_7778208_4050305,4380_1306 -4380_78062,293,4380_82969,Ballybane,105434-00017-1,0,4380_7778208_4050305,4380_1306 -4380_78114,288,4380_8297,Kells via Navan,5410-00011-1,0,4380_7778208_1090103,4380_124 -4380_78062,296,4380_82970,Ballybane,105264-00021-1,0,4380_7778208_4050304,4380_1308 -4380_78062,285,4380_82976,Ballybane,104785-00009-1,0,4380_7778208_4050302,4380_1304 -4380_78062,288,4380_82978,Ballybane,104791-00011-1,0,4380_7778208_4050302,4380_1304 -4380_78062,286,4380_82979,Ballybane,104783-00010-1,0,4380_7778208_4050302,4380_1304 -4380_78114,287,4380_8298,Kells via Navan,5420-00012-1,0,4380_7778208_1090103,4380_124 -4380_78062,291,4380_82980,Ballybane,104793-00013-1,0,4380_7778208_4050302,4380_1306 -4380_78062,289,4380_82981,Ballybane,104789-00014-1,0,4380_7778208_4050302,4380_1304 -4380_78062,287,4380_82982,Ballybane,104787-00012-1,0,4380_7778208_4050302,4380_1304 -4380_78062,292,4380_82983,Ballybane,104784-00016-1,0,4380_7778208_4050302,4380_1304 -4380_78062,290,4380_82984,Ballybane,104786-00015-1,0,4380_7778208_4050302,4380_1304 -4380_78062,294,4380_82985,Ballybane,104788-00018-1,0,4380_7778208_4050302,4380_1304 -4380_78062,295,4380_82986,Ballybane,104790-00019-1,0,4380_7778208_4050302,4380_1304 -4380_78062,293,4380_82987,Ballybane,104792-00017-1,0,4380_7778208_4050302,4380_1304 -4380_78062,296,4380_82988,Ballybane,104794-00021-1,0,4380_7778208_4050302,4380_1306 -4380_78114,289,4380_8299,Kells via Navan,5380-00014-1,0,4380_7778208_1090103,4380_124 -4380_78062,297,4380_82995,Ballybane,104795-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,285,4380_82996,Ballybane,104572-00009-1,0,4380_7778208_4050301,4380_1306 -4380_78062,288,4380_82998,Ballybane,104569-00011-1,0,4380_7778208_4050301,4380_1306 -4380_78062,286,4380_82999,Ballybane,104565-00010-1,0,4380_7778208_4050301,4380_1306 -4380_77946,295,4380_83,Dundalk,50380-00019-1,0,4380_7778208_1000914,4380_1 -4380_78113,291,4380_830,Dundalk,50118-00013-1,0,4380_7778208_1000907,4380_17 -4380_78114,290,4380_8300,Kells via Navan,54807-00015-1,0,4380_7778208_1090103,4380_124 -4380_78062,291,4380_83000,Ballybane,105021-00013-1,0,4380_7778208_4050303,4380_1308 -4380_78062,289,4380_83001,Ballybane,104563-00014-1,0,4380_7778208_4050301,4380_1306 -4380_78062,287,4380_83002,Ballybane,104567-00012-1,0,4380_7778208_4050301,4380_1306 -4380_78062,292,4380_83003,Ballybane,104566-00016-1,0,4380_7778208_4050301,4380_1306 -4380_78062,290,4380_83004,Ballybane,104573-00015-1,0,4380_7778208_4050301,4380_1306 -4380_78062,294,4380_83005,Ballybane,104568-00018-1,0,4380_7778208_4050301,4380_1306 -4380_78062,295,4380_83006,Ballybane,104564-00019-1,0,4380_7778208_4050301,4380_1306 -4380_78062,293,4380_83007,Ballybane,104570-00017-1,0,4380_7778208_4050301,4380_1306 -4380_78062,296,4380_83008,Ballybane,105022-00021-1,0,4380_7778208_4050303,4380_1308 -4380_78114,291,4380_8301,Kells via Navan,5985-00013-1,0,4380_7778208_1090113,4380_128 -4380_78062,285,4380_83014,Ballybane,105025-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78062,288,4380_83016,Ballybane,105027-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78062,286,4380_83017,Ballybane,105029-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,291,4380_83018,Ballybane,104574-00013-1,0,4380_7778208_4050301,4380_1306 -4380_78062,289,4380_83019,Ballybane,105023-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78114,292,4380_8302,Kells via Navan,54803-00016-1,0,4380_7778208_1090103,4380_124 -4380_78062,287,4380_83020,Ballybane,105031-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_83021,Ballybane,105030-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_83022,Ballybane,105026-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_83023,Ballybane,105032-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78062,295,4380_83024,Ballybane,105024-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78062,293,4380_83025,Ballybane,105028-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78062,296,4380_83026,Ballybane,104575-00021-1,0,4380_7778208_4050301,4380_1306 -4380_78114,293,4380_8303,Kells via Navan,54804-00017-1,0,4380_7778208_1090103,4380_124 -4380_78062,297,4380_83033,Ballybane,104584-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78062,285,4380_83034,Ballybane,105285-00009-1,0,4380_7778208_4050304,4380_1306 -4380_78062,288,4380_83036,Ballybane,105283-00011-1,0,4380_7778208_4050304,4380_1306 -4380_78062,286,4380_83037,Ballybane,105281-00010-1,0,4380_7778208_4050304,4380_1306 -4380_78062,291,4380_83038,Ballybane,105287-00013-1,0,4380_7778208_4050304,4380_1308 -4380_78062,289,4380_83039,Ballybane,105279-00014-1,0,4380_7778208_4050304,4380_1306 -4380_78114,294,4380_8304,Kells via Navan,54806-00018-1,0,4380_7778208_1090103,4380_124 -4380_78062,287,4380_83040,Ballybane,105277-00012-1,0,4380_7778208_4050304,4380_1306 -4380_78062,292,4380_83041,Ballybane,105282-00016-1,0,4380_7778208_4050304,4380_1306 -4380_78062,290,4380_83042,Ballybane,105286-00015-1,0,4380_7778208_4050304,4380_1306 -4380_78062,294,4380_83043,Ballybane,105278-00018-1,0,4380_7778208_4050304,4380_1306 -4380_78062,295,4380_83044,Ballybane,105280-00019-1,0,4380_7778208_4050304,4380_1306 -4380_78062,293,4380_83045,Ballybane,105284-00017-1,0,4380_7778208_4050304,4380_1306 -4380_78062,296,4380_83046,Ballybane,105288-00021-1,0,4380_7778208_4050304,4380_1308 -4380_78114,295,4380_8305,Kells via Navan,54805-00019-1,0,4380_7778208_1090103,4380_124 -4380_78062,285,4380_83052,Ballybane,105451-00009-1,0,4380_7778208_4050305,4380_1304 -4380_78062,288,4380_83054,Ballybane,105453-00011-1,0,4380_7778208_4050305,4380_1304 -4380_78062,286,4380_83055,Ballybane,105449-00010-1,0,4380_7778208_4050305,4380_1304 -4380_78062,291,4380_83056,Ballybane,104809-00013-1,0,4380_7778208_4050302,4380_1306 -4380_78062,289,4380_83057,Ballybane,105455-00014-1,0,4380_7778208_4050305,4380_1304 -4380_78062,287,4380_83058,Ballybane,105447-00012-1,0,4380_7778208_4050305,4380_1304 -4380_78062,292,4380_83059,Ballybane,105450-00016-1,0,4380_7778208_4050305,4380_1304 -4380_78114,296,4380_8306,Kells via Navan,55210-00021-1,0,4380_7778208_1090113,4380_128 -4380_78062,290,4380_83060,Ballybane,105452-00015-1,0,4380_7778208_4050305,4380_1304 -4380_78062,294,4380_83061,Ballybane,105448-00018-1,0,4380_7778208_4050305,4380_1304 -4380_78062,295,4380_83062,Ballybane,105456-00019-1,0,4380_7778208_4050305,4380_1304 -4380_78062,293,4380_83063,Ballybane,105454-00017-1,0,4380_7778208_4050305,4380_1304 -4380_78062,296,4380_83064,Ballybane,104810-00021-1,0,4380_7778208_4050302,4380_1306 -4380_78062,297,4380_83071,Ballybane,104811-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,285,4380_83072,Ballybane,104816-00009-1,0,4380_7778208_4050302,4380_1306 -4380_78062,288,4380_83074,Ballybane,104818-00011-1,0,4380_7778208_4050302,4380_1306 -4380_78062,286,4380_83075,Ballybane,104820-00010-1,0,4380_7778208_4050302,4380_1306 -4380_78062,291,4380_83076,Ballybane,105045-00013-1,0,4380_7778208_4050303,4380_1308 -4380_78062,289,4380_83077,Ballybane,104814-00014-1,0,4380_7778208_4050302,4380_1306 -4380_78062,287,4380_83078,Ballybane,104812-00012-1,0,4380_7778208_4050302,4380_1306 -4380_78062,292,4380_83079,Ballybane,104821-00016-1,0,4380_7778208_4050302,4380_1306 -4380_78062,290,4380_83080,Ballybane,104817-00015-1,0,4380_7778208_4050302,4380_1306 -4380_78062,294,4380_83081,Ballybane,104813-00018-1,0,4380_7778208_4050302,4380_1306 -4380_78062,295,4380_83082,Ballybane,104815-00019-1,0,4380_7778208_4050302,4380_1306 -4380_78062,293,4380_83083,Ballybane,104819-00017-1,0,4380_7778208_4050302,4380_1306 -4380_78062,296,4380_83084,Ballybane,105046-00021-1,0,4380_7778208_4050303,4380_1308 -4380_78062,285,4380_83090,Ballybane,104596-00009-1,0,4380_7778208_4050301,4380_1304 -4380_78062,288,4380_83092,Ballybane,104598-00011-1,0,4380_7778208_4050301,4380_1304 -4380_78062,286,4380_83093,Ballybane,104592-00010-1,0,4380_7778208_4050301,4380_1304 -4380_78062,291,4380_83094,Ballybane,104594-00013-1,0,4380_7778208_4050301,4380_1306 -4380_78062,289,4380_83095,Ballybane,104590-00014-1,0,4380_7778208_4050301,4380_1304 -4380_78062,287,4380_83096,Ballybane,104600-00012-1,0,4380_7778208_4050301,4380_1304 -4380_78062,292,4380_83097,Ballybane,104593-00016-1,0,4380_7778208_4050301,4380_1304 -4380_78062,290,4380_83098,Ballybane,104597-00015-1,0,4380_7778208_4050301,4380_1304 -4380_78062,294,4380_83099,Ballybane,104601-00018-1,0,4380_7778208_4050301,4380_1304 -4380_78113,292,4380_831,Dundalk,50113-00016-1,0,4380_7778208_1000907,4380_11 -4380_78062,295,4380_83100,Ballybane,104591-00019-1,0,4380_7778208_4050301,4380_1304 -4380_78062,293,4380_83101,Ballybane,104599-00017-1,0,4380_7778208_4050301,4380_1304 -4380_78062,296,4380_83102,Ballybane,104595-00021-1,0,4380_7778208_4050301,4380_1306 -4380_78062,297,4380_83109,Ballybane,104602-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78062,285,4380_83110,Ballybane,105057-00009-1,0,4380_7778208_4050303,4380_1306 -4380_78062,288,4380_83112,Ballybane,105047-00011-1,0,4380_7778208_4050303,4380_1306 -4380_78062,286,4380_83113,Ballybane,105049-00010-1,0,4380_7778208_4050303,4380_1306 -4380_78062,291,4380_83114,Ballybane,105301-00013-1,0,4380_7778208_4050304,4380_1308 -4380_78062,289,4380_83115,Ballybane,105051-00014-1,0,4380_7778208_4050303,4380_1306 -4380_78062,287,4380_83116,Ballybane,105055-00012-1,0,4380_7778208_4050303,4380_1306 -4380_78062,292,4380_83117,Ballybane,105050-00016-1,0,4380_7778208_4050303,4380_1306 -4380_78062,290,4380_83118,Ballybane,105058-00015-1,0,4380_7778208_4050303,4380_1306 -4380_78062,294,4380_83119,Ballybane,105056-00018-1,0,4380_7778208_4050303,4380_1306 -4380_78062,295,4380_83120,Ballybane,105052-00019-1,0,4380_7778208_4050303,4380_1306 -4380_78062,293,4380_83121,Ballybane,105048-00017-1,0,4380_7778208_4050303,4380_1306 -4380_78062,296,4380_83122,Ballybane,105302-00021-1,0,4380_7778208_4050304,4380_1308 -4380_78062,285,4380_83128,Ballybane,105305-00009-1,0,4380_7778208_4050304,4380_1304 -4380_78062,288,4380_83130,Ballybane,105303-00011-1,0,4380_7778208_4050304,4380_1304 -4380_78062,286,4380_83131,Ballybane,105307-00010-1,0,4380_7778208_4050304,4380_1304 -4380_78062,291,4380_83132,Ballybane,104835-00013-1,0,4380_7778208_4050302,4380_1306 -4380_78062,289,4380_83133,Ballybane,105311-00014-1,0,4380_7778208_4050304,4380_1304 -4380_78062,287,4380_83134,Ballybane,105309-00012-1,0,4380_7778208_4050304,4380_1304 -4380_78062,292,4380_83135,Ballybane,105308-00016-1,0,4380_7778208_4050304,4380_1304 -4380_78062,290,4380_83136,Ballybane,105306-00015-1,0,4380_7778208_4050304,4380_1304 -4380_78062,294,4380_83137,Ballybane,105310-00018-1,0,4380_7778208_4050304,4380_1304 -4380_78062,295,4380_83138,Ballybane,105312-00019-1,0,4380_7778208_4050304,4380_1304 -4380_78062,293,4380_83139,Ballybane,105304-00017-1,0,4380_7778208_4050304,4380_1304 -4380_78114,285,4380_8314,Kells via Navan,5465-00009-1,0,4380_7778208_1090104,4380_124 -4380_78062,296,4380_83140,Ballybane,104836-00021-1,0,4380_7778208_4050302,4380_1306 -4380_78062,297,4380_83147,Ballybane,104837-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,285,4380_83148,Ballybane,105475-00009-1,0,4380_7778208_4050305,4380_1306 -4380_78114,286,4380_8315,Kells via Navan,5475-00010-1,0,4380_7778208_1090104,4380_124 -4380_78062,288,4380_83150,Ballybane,105467-00011-1,0,4380_7778208_4050305,4380_1306 -4380_78062,286,4380_83151,Ballybane,105469-00010-1,0,4380_7778208_4050305,4380_1306 -4380_78062,291,4380_83152,Ballybane,105063-00013-1,0,4380_7778208_4050303,4380_1308 -4380_78062,289,4380_83153,Ballybane,105471-00014-1,0,4380_7778208_4050305,4380_1306 -4380_78062,287,4380_83154,Ballybane,105473-00012-1,0,4380_7778208_4050305,4380_1306 -4380_78062,292,4380_83155,Ballybane,105470-00016-1,0,4380_7778208_4050305,4380_1306 -4380_78062,290,4380_83156,Ballybane,105476-00015-1,0,4380_7778208_4050305,4380_1306 -4380_78062,294,4380_83157,Ballybane,105474-00018-1,0,4380_7778208_4050305,4380_1306 -4380_78062,295,4380_83158,Ballybane,105472-00019-1,0,4380_7778208_4050305,4380_1306 -4380_78062,293,4380_83159,Ballybane,105468-00017-1,0,4380_7778208_4050305,4380_1306 -4380_78114,297,4380_8316,Kells via Navan,5965-00008-1,0,4380_7778208_1090112,4380_126 -4380_78062,296,4380_83160,Ballybane,105064-00021-1,0,4380_7778208_4050303,4380_1308 -4380_78062,285,4380_83166,Ballybane,104844-00009-1,0,4380_7778208_4050302,4380_1304 -4380_78062,288,4380_83168,Ballybane,104840-00011-1,0,4380_7778208_4050302,4380_1304 -4380_78062,286,4380_83169,Ballybane,104838-00010-1,0,4380_7778208_4050302,4380_1304 -4380_78114,288,4380_8317,Kells via Navan,5485-00011-1,0,4380_7778208_1090104,4380_124 -4380_78062,291,4380_83170,Ballybane,104616-00013-1,0,4380_7778208_4050301,4380_1306 -4380_78062,289,4380_83171,Ballybane,104846-00014-1,0,4380_7778208_4050302,4380_1304 -4380_78062,287,4380_83172,Ballybane,104848-00012-1,0,4380_7778208_4050302,4380_1304 -4380_78062,292,4380_83173,Ballybane,104839-00016-1,0,4380_7778208_4050302,4380_1304 -4380_78062,290,4380_83174,Ballybane,104845-00015-1,0,4380_7778208_4050302,4380_1304 -4380_78062,294,4380_83175,Ballybane,104849-00018-1,0,4380_7778208_4050302,4380_1304 -4380_78062,295,4380_83176,Ballybane,104847-00019-1,0,4380_7778208_4050302,4380_1304 -4380_78062,293,4380_83177,Ballybane,104841-00017-1,0,4380_7778208_4050302,4380_1304 -4380_78062,296,4380_83178,Ballybane,104617-00021-1,0,4380_7778208_4050301,4380_1306 -4380_78114,287,4380_8318,Kells via Navan,5495-00012-1,0,4380_7778208_1090104,4380_124 -4380_78062,297,4380_83185,Ballybane,104618-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78062,285,4380_83186,Ballybane,104627-00009-1,0,4380_7778208_4050301,4380_1306 -4380_78062,288,4380_83188,Ballybane,104619-00011-1,0,4380_7778208_4050301,4380_1306 -4380_78062,286,4380_83189,Ballybane,104625-00010-1,0,4380_7778208_4050301,4380_1306 -4380_78114,289,4380_8319,Kells via Navan,5455-00014-1,0,4380_7778208_1090104,4380_124 -4380_78062,291,4380_83190,Ballybane,105325-00013-1,0,4380_7778208_4050304,4380_1308 -4380_78062,289,4380_83191,Ballybane,104621-00014-1,0,4380_7778208_4050301,4380_1306 -4380_78062,287,4380_83192,Ballybane,104623-00012-1,0,4380_7778208_4050301,4380_1306 -4380_78062,292,4380_83193,Ballybane,104626-00016-1,0,4380_7778208_4050301,4380_1306 -4380_78062,290,4380_83194,Ballybane,104628-00015-1,0,4380_7778208_4050301,4380_1306 -4380_78062,294,4380_83195,Ballybane,104624-00018-1,0,4380_7778208_4050301,4380_1306 -4380_78062,295,4380_83196,Ballybane,104622-00019-1,0,4380_7778208_4050301,4380_1306 -4380_78062,293,4380_83197,Ballybane,104620-00017-1,0,4380_7778208_4050301,4380_1306 -4380_78062,296,4380_83198,Ballybane,105326-00021-1,0,4380_7778208_4050304,4380_1308 -4380_78113,293,4380_832,Dundalk,50111-00017-1,0,4380_7778208_1000907,4380_11 -4380_78114,290,4380_8320,Kells via Navan,54863-00015-1,0,4380_7778208_1090104,4380_124 -4380_78062,285,4380_83204,Ballybane,105081-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78062,288,4380_83206,Ballybane,105073-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78062,286,4380_83207,Ballybane,105077-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,291,4380_83208,Ballybane,104851-00013-1,0,4380_7778208_4050302,4380_1306 -4380_78062,289,4380_83209,Ballybane,105075-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78114,291,4380_8321,Kells via Navan,6018-00013-1,0,4380_7778208_1090114,4380_128 -4380_78062,287,4380_83210,Ballybane,105079-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_83211,Ballybane,105078-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_83212,Ballybane,105082-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_83213,Ballybane,105080-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78062,295,4380_83214,Ballybane,105076-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78062,293,4380_83215,Ballybane,105074-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78062,296,4380_83216,Ballybane,104852-00021-1,0,4380_7778208_4050302,4380_1306 -4380_78114,292,4380_8322,Kells via Navan,54862-00016-1,0,4380_7778208_1090104,4380_124 -4380_78062,285,4380_83222,Ballybane,105333-00009-1,0,4380_7778208_4050304,4380_1304 -4380_78062,288,4380_83223,Ballybane,105329-00011-1,0,4380_7778208_4050304,4380_1304 -4380_78062,286,4380_83224,Ballybane,105331-00010-1,0,4380_7778208_4050304,4380_1304 -4380_78062,289,4380_83225,Ballybane,105335-00014-1,0,4380_7778208_4050304,4380_1304 -4380_78062,287,4380_83226,Ballybane,105327-00012-1,0,4380_7778208_4050304,4380_1304 -4380_78062,292,4380_83227,Ballybane,105332-00016-1,0,4380_7778208_4050304,4380_1304 -4380_78062,290,4380_83228,Ballybane,105334-00015-1,0,4380_7778208_4050304,4380_1304 -4380_78062,294,4380_83229,Ballybane,105328-00018-1,0,4380_7778208_4050304,4380_1304 -4380_78114,293,4380_8323,Kells via Navan,54860-00017-1,0,4380_7778208_1090104,4380_124 -4380_78062,295,4380_83230,Ballybane,105336-00019-1,0,4380_7778208_4050304,4380_1304 -4380_78062,293,4380_83231,Ballybane,105330-00017-1,0,4380_7778208_4050304,4380_1304 -4380_78062,297,4380_83233,Ballybane,104863-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,291,4380_83235,Ballybane,105083-00013-1,0,4380_7778208_4050303,4380_1306 -4380_78062,296,4380_83236,Ballybane,105084-00021-1,0,4380_7778208_4050303,4380_1306 -4380_78114,294,4380_8324,Kells via Navan,54861-00018-1,0,4380_7778208_1090104,4380_124 -4380_78062,285,4380_83242,Ballybane,105491-00009-1,0,4380_7778208_4050305,4380_1304 -4380_78062,288,4380_83243,Ballybane,105493-00011-1,0,4380_7778208_4050305,4380_1304 -4380_78062,286,4380_83244,Ballybane,105487-00010-1,0,4380_7778208_4050305,4380_1304 -4380_78062,289,4380_83245,Ballybane,105489-00014-1,0,4380_7778208_4050305,4380_1304 -4380_78062,287,4380_83246,Ballybane,105495-00012-1,0,4380_7778208_4050305,4380_1304 -4380_78062,292,4380_83247,Ballybane,105488-00016-1,0,4380_7778208_4050305,4380_1304 -4380_78062,290,4380_83248,Ballybane,105492-00015-1,0,4380_7778208_4050305,4380_1304 -4380_78062,294,4380_83249,Ballybane,105496-00018-1,0,4380_7778208_4050305,4380_1304 -4380_78114,295,4380_8325,Kells via Navan,54859-00019-1,0,4380_7778208_1090104,4380_124 -4380_78062,295,4380_83250,Ballybane,105490-00019-1,0,4380_7778208_4050305,4380_1304 -4380_78062,293,4380_83251,Ballybane,105494-00017-1,0,4380_7778208_4050305,4380_1304 -4380_78062,291,4380_83253,Ballybane,104642-00013-1,0,4380_7778208_4050301,4380_1304 -4380_78062,296,4380_83254,Ballybane,104643-00021-1,0,4380_7778208_4050301,4380_1304 -4380_78114,296,4380_8326,Kells via Navan,55235-00021-1,0,4380_7778208_1090114,4380_128 -4380_78062,285,4380_83260,Ballybane,104870-00009-1,0,4380_7778208_4050302,4380_1304 -4380_78062,288,4380_83261,Ballybane,104874-00011-1,0,4380_7778208_4050302,4380_1304 -4380_78062,286,4380_83262,Ballybane,104868-00010-1,0,4380_7778208_4050302,4380_1304 -4380_78062,289,4380_83263,Ballybane,104872-00014-1,0,4380_7778208_4050302,4380_1304 -4380_78062,287,4380_83264,Ballybane,104866-00012-1,0,4380_7778208_4050302,4380_1304 -4380_78062,292,4380_83265,Ballybane,104869-00016-1,0,4380_7778208_4050302,4380_1304 -4380_78062,290,4380_83266,Ballybane,104871-00015-1,0,4380_7778208_4050302,4380_1304 -4380_78062,294,4380_83267,Ballybane,104867-00018-1,0,4380_7778208_4050302,4380_1304 -4380_78062,295,4380_83268,Ballybane,104873-00019-1,0,4380_7778208_4050302,4380_1304 -4380_78062,293,4380_83269,Ballybane,104875-00017-1,0,4380_7778208_4050302,4380_1304 -4380_78062,297,4380_83271,Ballybane,104644-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78062,291,4380_83273,Ballybane,105339-00013-1,0,4380_7778208_4050304,4380_1306 -4380_78062,296,4380_83274,Ballybane,105340-00021-1,0,4380_7778208_4050304,4380_1306 -4380_78062,285,4380_83280,Ballybane,104649-00009-1,0,4380_7778208_4050301,4380_1304 -4380_78062,288,4380_83281,Ballybane,104651-00011-1,0,4380_7778208_4050301,4380_1304 -4380_78062,286,4380_83282,Ballybane,104653-00010-1,0,4380_7778208_4050301,4380_1304 -4380_78062,289,4380_83283,Ballybane,104645-00014-1,0,4380_7778208_4050301,4380_1304 -4380_78062,287,4380_83284,Ballybane,104647-00012-1,0,4380_7778208_4050301,4380_1304 -4380_78062,292,4380_83285,Ballybane,104654-00016-1,0,4380_7778208_4050301,4380_1304 -4380_78062,290,4380_83286,Ballybane,104650-00015-1,0,4380_7778208_4050301,4380_1304 -4380_78062,294,4380_83287,Ballybane,104648-00018-1,0,4380_7778208_4050301,4380_1304 -4380_78062,295,4380_83288,Ballybane,104646-00019-1,0,4380_7778208_4050301,4380_1304 -4380_78062,293,4380_83289,Ballybane,104652-00017-1,0,4380_7778208_4050301,4380_1304 -4380_78062,291,4380_83291,Ballybane,104877-00013-1,0,4380_7778208_4050302,4380_1304 -4380_78062,296,4380_83292,Ballybane,104878-00021-1,0,4380_7778208_4050302,4380_1304 -4380_78062,285,4380_83298,Ballybane,105101-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78062,288,4380_83299,Ballybane,105105-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78113,294,4380_833,Dundalk,50109-00018-1,0,4380_7778208_1000907,4380_11 -4380_78062,286,4380_83300,Ballybane,105103-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,289,4380_83301,Ballybane,105099-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78062,287,4380_83302,Ballybane,105097-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_83303,Ballybane,105104-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_83304,Ballybane,105102-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_83305,Ballybane,105098-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78062,295,4380_83306,Ballybane,105100-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78062,293,4380_83307,Ballybane,105106-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78062,297,4380_83309,Ballybane,104879-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,291,4380_83311,Ballybane,105107-00013-1,0,4380_7778208_4050303,4380_1306 -4380_78062,296,4380_83312,Ballybane,105108-00021-1,0,4380_7778208_4050303,4380_1306 -4380_78062,285,4380_83318,Ballybane,105353-00009-1,0,4380_7778208_4050304,4380_1304 -4380_78062,288,4380_83319,Ballybane,105359-00011-1,0,4380_7778208_4050304,4380_1304 -4380_78062,286,4380_83320,Ballybane,105357-00010-1,0,4380_7778208_4050304,4380_1304 -4380_78062,289,4380_83321,Ballybane,105361-00014-1,0,4380_7778208_4050304,4380_1304 -4380_78062,287,4380_83322,Ballybane,105355-00012-1,0,4380_7778208_4050304,4380_1304 -4380_78062,292,4380_83323,Ballybane,105358-00016-1,0,4380_7778208_4050304,4380_1304 -4380_78062,290,4380_83324,Ballybane,105354-00015-1,0,4380_7778208_4050304,4380_1304 -4380_78062,294,4380_83325,Ballybane,105356-00018-1,0,4380_7778208_4050304,4380_1304 -4380_78062,295,4380_83326,Ballybane,105362-00019-1,0,4380_7778208_4050304,4380_1304 -4380_78062,293,4380_83327,Ballybane,105360-00017-1,0,4380_7778208_4050304,4380_1304 -4380_78062,291,4380_83329,Ballybane,104658-00013-1,0,4380_7778208_4050301,4380_1304 -4380_78062,296,4380_83330,Ballybane,104659-00021-1,0,4380_7778208_4050301,4380_1304 -4380_78062,285,4380_83336,Ballybane,105515-00009-1,0,4380_7778208_4050305,4380_1304 -4380_78062,288,4380_83337,Ballybane,105513-00011-1,0,4380_7778208_4050305,4380_1304 -4380_78062,286,4380_83338,Ballybane,105507-00010-1,0,4380_7778208_4050305,4380_1304 -4380_78062,289,4380_83339,Ballybane,105511-00014-1,0,4380_7778208_4050305,4380_1304 -4380_78114,285,4380_8334,Dublin Airport,5233-00009-1,1,4380_7778208_1090101,4380_137 -4380_78062,287,4380_83340,Ballybane,105509-00012-1,0,4380_7778208_4050305,4380_1304 -4380_78062,292,4380_83341,Ballybane,105508-00016-1,0,4380_7778208_4050305,4380_1304 -4380_78062,290,4380_83342,Ballybane,105516-00015-1,0,4380_7778208_4050305,4380_1304 -4380_78062,294,4380_83343,Ballybane,105510-00018-1,0,4380_7778208_4050305,4380_1304 -4380_78062,295,4380_83344,Ballybane,105512-00019-1,0,4380_7778208_4050305,4380_1304 -4380_78062,293,4380_83345,Ballybane,105514-00017-1,0,4380_7778208_4050305,4380_1304 -4380_78062,297,4380_83347,Ballybane,104670-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78062,291,4380_83349,Ballybane,105363-00013-1,0,4380_7778208_4050304,4380_1306 -4380_78114,286,4380_8335,Dublin Airport,5243-00010-1,1,4380_7778208_1090101,4380_137 -4380_78062,296,4380_83350,Ballybane,105364-00021-1,0,4380_7778208_4050304,4380_1306 -4380_78062,285,4380_83356,Ballybane,104893-00009-1,0,4380_7778208_4050302,4380_1304 -4380_78062,288,4380_83357,Ballybane,104897-00011-1,0,4380_7778208_4050302,4380_1304 -4380_78062,286,4380_83358,Ballybane,104899-00010-1,0,4380_7778208_4050302,4380_1304 -4380_78062,289,4380_83359,Ballybane,104895-00014-1,0,4380_7778208_4050302,4380_1304 -4380_78114,297,4380_8336,Dublin Airport,5806-00008-1,1,4380_7778208_1090109,4380_139 -4380_78062,287,4380_83360,Ballybane,104901-00012-1,0,4380_7778208_4050302,4380_1304 -4380_78062,292,4380_83361,Ballybane,104900-00016-1,0,4380_7778208_4050302,4380_1304 -4380_78062,290,4380_83362,Ballybane,104894-00015-1,0,4380_7778208_4050302,4380_1304 -4380_78062,294,4380_83363,Ballybane,104902-00018-1,0,4380_7778208_4050302,4380_1304 -4380_78062,295,4380_83364,Ballybane,104896-00019-1,0,4380_7778208_4050302,4380_1304 -4380_78062,293,4380_83365,Ballybane,104898-00017-1,0,4380_7778208_4050302,4380_1304 -4380_78062,291,4380_83367,Ballybane,104903-00013-1,0,4380_7778208_4050302,4380_1304 -4380_78062,296,4380_83368,Ballybane,104904-00021-1,0,4380_7778208_4050302,4380_1304 -4380_78114,288,4380_8337,Dublin Airport,5253-00011-1,1,4380_7778208_1090101,4380_137 -4380_78062,285,4380_83374,Ballybane,104679-00009-1,0,4380_7778208_4050301,4380_1304 -4380_78062,288,4380_83375,Ballybane,104673-00011-1,0,4380_7778208_4050301,4380_1304 -4380_78062,286,4380_83376,Ballybane,104675-00010-1,0,4380_7778208_4050301,4380_1304 -4380_78062,289,4380_83377,Ballybane,104681-00014-1,0,4380_7778208_4050301,4380_1304 -4380_78062,287,4380_83378,Ballybane,104677-00012-1,0,4380_7778208_4050301,4380_1304 -4380_78062,292,4380_83379,Ballybane,104676-00016-1,0,4380_7778208_4050301,4380_1304 -4380_78114,287,4380_8338,Dublin Airport,5263-00012-1,1,4380_7778208_1090101,4380_137 -4380_78062,290,4380_83380,Ballybane,104680-00015-1,0,4380_7778208_4050301,4380_1304 -4380_78062,294,4380_83381,Ballybane,104678-00018-1,0,4380_7778208_4050301,4380_1304 -4380_78062,295,4380_83382,Ballybane,104682-00019-1,0,4380_7778208_4050301,4380_1304 -4380_78062,293,4380_83383,Ballybane,104674-00017-1,0,4380_7778208_4050301,4380_1304 -4380_78062,297,4380_83385,Ballybane,104905-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,291,4380_83387,Ballybane,105121-00013-1,0,4380_7778208_4050303,4380_1306 -4380_78062,296,4380_83388,Ballybane,105122-00021-1,0,4380_7778208_4050303,4380_1306 -4380_78114,289,4380_8339,Dublin Airport,5223-00014-1,1,4380_7778208_1090101,4380_137 -4380_78062,285,4380_83394,Ballybane,105123-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78062,288,4380_83396,Ballybane,105127-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78062,286,4380_83397,Ballybane,105125-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,291,4380_83398,Ballybane,104684-00013-1,0,4380_7778208_4050301,4380_1306 -4380_78062,289,4380_83399,Ballybane,105131-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78113,295,4380_834,Dundalk,50117-00019-1,0,4380_7778208_1000907,4380_11 -4380_78114,290,4380_8340,Dublin Airport,54642-00015-1,1,4380_7778208_1090101,4380_137 -4380_78062,287,4380_83400,Ballybane,105129-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_83401,Ballybane,105126-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_83402,Ballybane,105124-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_83403,Ballybane,105130-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78062,295,4380_83404,Ballybane,105132-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78062,293,4380_83405,Ballybane,105128-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78062,296,4380_83406,Ballybane,104685-00021-1,0,4380_7778208_4050301,4380_1306 -4380_78062,297,4380_83408,Ballybane,104686-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78114,291,4380_8341,Dublin Airport,5881-00013-1,1,4380_7778208_1090111,4380_141 -4380_78062,285,4380_83414,Ballybane,105535-00009-1,0,4380_7778208_4050305,4380_1304 -4380_78062,288,4380_83416,Ballybane,105533-00011-1,0,4380_7778208_4050305,4380_1304 -4380_78062,286,4380_83417,Ballybane,105527-00010-1,0,4380_7778208_4050305,4380_1304 -4380_78062,291,4380_83418,Ballybane,104919-00013-1,0,4380_7778208_4050302,4380_1306 -4380_78062,289,4380_83419,Ballybane,105529-00014-1,0,4380_7778208_4050305,4380_1304 -4380_78114,292,4380_8342,Dublin Airport,54643-00016-1,1,4380_7778208_1090101,4380_137 -4380_78062,287,4380_83420,Ballybane,105531-00012-1,0,4380_7778208_4050305,4380_1304 -4380_78062,292,4380_83421,Ballybane,105528-00016-1,0,4380_7778208_4050305,4380_1304 -4380_78062,290,4380_83422,Ballybane,105536-00015-1,0,4380_7778208_4050305,4380_1304 -4380_78062,294,4380_83423,Ballybane,105532-00018-1,0,4380_7778208_4050305,4380_1304 -4380_78062,295,4380_83424,Ballybane,105530-00019-1,0,4380_7778208_4050305,4380_1304 -4380_78062,293,4380_83425,Ballybane,105534-00017-1,0,4380_7778208_4050305,4380_1304 -4380_78062,296,4380_83426,Ballybane,104920-00021-1,0,4380_7778208_4050302,4380_1306 -4380_78062,297,4380_83428,Ballybane,104921-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78114,293,4380_8343,Dublin Airport,54644-00017-1,1,4380_7778208_1090101,4380_137 -4380_78062,285,4380_83434,Ballybane,105151-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78062,288,4380_83436,Ballybane,105147-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78062,286,4380_83437,Ballybane,105149-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,291,4380_83438,Ballybane,104690-00013-1,0,4380_7778208_4050301,4380_1306 -4380_78062,289,4380_83439,Ballybane,105143-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78114,294,4380_8344,Dublin Airport,54645-00018-1,1,4380_7778208_1090101,4380_137 -4380_78062,287,4380_83440,Ballybane,105145-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_83441,Ballybane,105150-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_83442,Ballybane,105152-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_83443,Ballybane,105146-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78062,295,4380_83444,Ballybane,105144-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78062,293,4380_83445,Ballybane,105148-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78062,296,4380_83446,Ballybane,104691-00021-1,0,4380_7778208_4050301,4380_1306 -4380_78062,297,4380_83448,Ballybane,104692-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78114,295,4380_8345,Dublin Airport,54641-00019-1,1,4380_7778208_1090101,4380_137 -4380_78062,285,4380_83454,Ballybane,105549-00009-1,0,4380_7778208_4050305,4380_1304 -4380_78062,288,4380_83456,Ballybane,105547-00011-1,0,4380_7778208_4050305,4380_1304 -4380_78062,286,4380_83457,Ballybane,105553-00010-1,0,4380_7778208_4050305,4380_1304 -4380_78062,291,4380_83458,Ballybane,104925-00013-1,0,4380_7778208_4050302,4380_1306 -4380_78062,289,4380_83459,Ballybane,105551-00014-1,0,4380_7778208_4050305,4380_1304 -4380_78114,296,4380_8346,Dublin Airport,55126-00021-1,1,4380_7778208_1090111,4380_141 -4380_78062,287,4380_83460,Ballybane,105555-00012-1,0,4380_7778208_4050305,4380_1304 -4380_78062,292,4380_83461,Ballybane,105554-00016-1,0,4380_7778208_4050305,4380_1304 -4380_78062,290,4380_83462,Ballybane,105550-00015-1,0,4380_7778208_4050305,4380_1304 -4380_78062,294,4380_83463,Ballybane,105556-00018-1,0,4380_7778208_4050305,4380_1304 -4380_78062,295,4380_83464,Ballybane,105552-00019-1,0,4380_7778208_4050305,4380_1304 -4380_78062,293,4380_83465,Ballybane,105548-00017-1,0,4380_7778208_4050305,4380_1304 -4380_78062,296,4380_83466,Ballybane,104926-00021-1,0,4380_7778208_4050302,4380_1306 -4380_78062,297,4380_83468,Ballybane,104927-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,285,4380_83474,Ballybane,105169-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78062,288,4380_83476,Ballybane,105167-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78062,286,4380_83477,Ballybane,105165-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,291,4380_83478,Ballybane,104696-00013-1,0,4380_7778208_4050301,4380_1306 -4380_78062,289,4380_83479,Ballybane,105171-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78062,287,4380_83480,Ballybane,105163-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_83481,Ballybane,105166-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_83482,Ballybane,105170-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_83483,Ballybane,105164-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78062,295,4380_83484,Ballybane,105172-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78062,293,4380_83485,Ballybane,105168-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78062,296,4380_83486,Ballybane,104697-00021-1,0,4380_7778208_4050301,4380_1306 -4380_78062,297,4380_83488,Ballybane,104698-00008-1,0,4380_7778208_4050301,4380_1304 -4380_78062,285,4380_83494,Ballybane,105573-00009-1,0,4380_7778208_4050305,4380_1304 -4380_78062,288,4380_83496,Ballybane,105575-00011-1,0,4380_7778208_4050305,4380_1304 -4380_78062,286,4380_83497,Ballybane,105567-00010-1,0,4380_7778208_4050305,4380_1304 -4380_78062,291,4380_83498,Ballybane,104931-00013-1,0,4380_7778208_4050302,4380_1306 -4380_78062,289,4380_83499,Ballybane,105569-00014-1,0,4380_7778208_4050305,4380_1304 -4380_78113,296,4380_835,Dundalk,50119-00021-1,0,4380_7778208_1000907,4380_17 -4380_78062,287,4380_83500,Ballybane,105571-00012-1,0,4380_7778208_4050305,4380_1304 -4380_78062,292,4380_83501,Ballybane,105568-00016-1,0,4380_7778208_4050305,4380_1304 -4380_78062,290,4380_83502,Ballybane,105574-00015-1,0,4380_7778208_4050305,4380_1304 -4380_78062,294,4380_83503,Ballybane,105572-00018-1,0,4380_7778208_4050305,4380_1304 -4380_78062,295,4380_83504,Ballybane,105570-00019-1,0,4380_7778208_4050305,4380_1304 -4380_78062,293,4380_83505,Ballybane,105576-00017-1,0,4380_7778208_4050305,4380_1304 -4380_78062,296,4380_83506,Ballybane,104932-00021-1,0,4380_7778208_4050302,4380_1306 -4380_78062,297,4380_83508,Ballybane,104933-00008-1,0,4380_7778208_4050302,4380_1304 -4380_78062,285,4380_83514,Ballybane,105183-00009-1,0,4380_7778208_4050303,4380_1304 -4380_78062,288,4380_83516,Ballybane,105191-00011-1,0,4380_7778208_4050303,4380_1304 -4380_78062,286,4380_83517,Ballybane,105185-00010-1,0,4380_7778208_4050303,4380_1304 -4380_78062,291,4380_83518,Ballybane,104702-00013-1,0,4380_7778208_4050301,4380_1306 -4380_78062,289,4380_83519,Ballybane,105189-00014-1,0,4380_7778208_4050303,4380_1304 -4380_78062,287,4380_83520,Ballybane,105187-00012-1,0,4380_7778208_4050303,4380_1304 -4380_78062,292,4380_83521,Ballybane,105186-00016-1,0,4380_7778208_4050303,4380_1304 -4380_78062,290,4380_83522,Ballybane,105184-00015-1,0,4380_7778208_4050303,4380_1304 -4380_78062,294,4380_83523,Ballybane,105188-00018-1,0,4380_7778208_4050303,4380_1304 -4380_78062,295,4380_83524,Ballybane,105190-00019-1,0,4380_7778208_4050303,4380_1304 -4380_78062,293,4380_83525,Ballybane,105192-00017-1,0,4380_7778208_4050303,4380_1304 -4380_78062,296,4380_83526,Ballybane,104703-00021-1,0,4380_7778208_4050301,4380_1306 -4380_78062,297,4380_83528,Eyre Square,104704-00008-1,0,4380_7778208_4050301,4380_1305 -4380_78062,285,4380_83534,Eyre Square,105589-00009-1,0,4380_7778208_4050305,4380_1305 -4380_78062,288,4380_83536,Eyre Square,105591-00011-1,0,4380_7778208_4050305,4380_1305 -4380_78062,286,4380_83537,Eyre Square,105593-00010-1,0,4380_7778208_4050305,4380_1305 -4380_78062,291,4380_83538,Eyre Square,104937-00013-1,0,4380_7778208_4050302,4380_1307 -4380_78062,289,4380_83539,Eyre Square,105587-00014-1,0,4380_7778208_4050305,4380_1305 -4380_78114,285,4380_8354,Dublin Airport,5309-00009-1,1,4380_7778208_1090102,4380_137 -4380_78062,287,4380_83540,Eyre Square,105595-00012-1,0,4380_7778208_4050305,4380_1305 -4380_78062,292,4380_83541,Eyre Square,105594-00016-1,0,4380_7778208_4050305,4380_1305 -4380_78062,290,4380_83542,Eyre Square,105590-00015-1,0,4380_7778208_4050305,4380_1305 -4380_78062,294,4380_83543,Eyre Square,105596-00018-1,0,4380_7778208_4050305,4380_1305 -4380_78062,295,4380_83544,Eyre Square,105588-00019-1,0,4380_7778208_4050305,4380_1305 -4380_78062,293,4380_83545,Eyre Square,105592-00017-1,0,4380_7778208_4050305,4380_1305 -4380_78062,296,4380_83546,Eyre Square,104938-00021-1,0,4380_7778208_4050302,4380_1307 -4380_78114,286,4380_8355,Dublin Airport,5319-00010-1,1,4380_7778208_1090102,4380_137 -4380_78062,285,4380_83552,Rahoon,104941-00009-1,1,4380_7778208_4050303,4380_1309 -4380_78062,288,4380_83553,Rahoon,104943-00011-1,1,4380_7778208_4050303,4380_1309 -4380_78062,286,4380_83554,Rahoon,104945-00010-1,1,4380_7778208_4050303,4380_1309 -4380_78062,289,4380_83555,Rahoon,104939-00014-1,1,4380_7778208_4050303,4380_1309 -4380_78062,287,4380_83556,Rahoon,104947-00012-1,1,4380_7778208_4050303,4380_1309 -4380_78062,292,4380_83557,Rahoon,104946-00016-1,1,4380_7778208_4050303,4380_1309 -4380_78062,290,4380_83558,Rahoon,104942-00015-1,1,4380_7778208_4050303,4380_1309 -4380_78062,294,4380_83559,Rahoon,104948-00018-1,1,4380_7778208_4050303,4380_1309 -4380_78114,297,4380_8356,Dublin Airport,5861-00008-1,1,4380_7778208_1090110,4380_139 -4380_78062,295,4380_83560,Rahoon,104940-00019-1,1,4380_7778208_4050303,4380_1309 -4380_78062,293,4380_83561,Rahoon,104944-00017-1,1,4380_7778208_4050303,4380_1309 -4380_78062,285,4380_83567,Rahoon,105385-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78062,288,4380_83568,Rahoon,105381-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_83569,Rahoon,105379-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78114,288,4380_8357,Dublin Airport,5329-00011-1,1,4380_7778208_1090102,4380_137 -4380_78062,289,4380_83570,Rahoon,105377-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_83571,Rahoon,105383-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78062,292,4380_83572,Rahoon,105380-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_83573,Rahoon,105386-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_83574,Rahoon,105384-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78062,295,4380_83575,Rahoon,105378-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_83576,Rahoon,105382-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78114,287,4380_8358,Dublin Airport,5339-00012-1,1,4380_7778208_1090102,4380_137 -4380_78062,285,4380_83582,Rahoon,104495-00009-1,1,4380_7778208_4050301,4380_1309 -4380_78062,288,4380_83583,Rahoon,104503-00011-1,1,4380_7778208_4050301,4380_1309 -4380_78062,286,4380_83584,Rahoon,104499-00010-1,1,4380_7778208_4050301,4380_1309 -4380_78062,289,4380_83585,Rahoon,104501-00014-1,1,4380_7778208_4050301,4380_1309 -4380_78062,287,4380_83586,Rahoon,104497-00012-1,1,4380_7778208_4050301,4380_1309 -4380_78062,292,4380_83587,Rahoon,104500-00016-1,1,4380_7778208_4050301,4380_1309 -4380_78062,290,4380_83588,Rahoon,104496-00015-1,1,4380_7778208_4050301,4380_1309 -4380_78062,294,4380_83589,Rahoon,104498-00018-1,1,4380_7778208_4050301,4380_1309 -4380_78114,289,4380_8359,Dublin Airport,5299-00014-1,1,4380_7778208_1090102,4380_137 -4380_78062,295,4380_83590,Rahoon,104502-00019-1,1,4380_7778208_4050301,4380_1309 -4380_78062,293,4380_83591,Rahoon,104504-00017-1,1,4380_7778208_4050301,4380_1309 -4380_78062,285,4380_83597,Rahoon,104721-00009-1,1,4380_7778208_4050302,4380_1309 -4380_78062,288,4380_83598,Rahoon,104725-00011-1,1,4380_7778208_4050302,4380_1309 -4380_78062,286,4380_83599,Rahoon,104723-00010-1,1,4380_7778208_4050302,4380_1309 -4380_78114,290,4380_8360,Dublin Airport,54702-00015-1,1,4380_7778208_1090102,4380_137 -4380_78062,289,4380_83600,Rahoon,104719-00014-1,1,4380_7778208_4050302,4380_1309 -4380_78062,287,4380_83601,Rahoon,104717-00012-1,1,4380_7778208_4050302,4380_1309 -4380_78062,292,4380_83602,Rahoon,104724-00016-1,1,4380_7778208_4050302,4380_1309 -4380_78062,290,4380_83603,Rahoon,104722-00015-1,1,4380_7778208_4050302,4380_1309 -4380_78062,294,4380_83604,Rahoon,104718-00018-1,1,4380_7778208_4050302,4380_1309 -4380_78062,295,4380_83605,Rahoon,104720-00019-1,1,4380_7778208_4050302,4380_1309 -4380_78062,293,4380_83606,Rahoon,104726-00017-1,1,4380_7778208_4050302,4380_1309 -4380_78062,297,4380_83608,Rahoon,104505-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78114,291,4380_8361,Dublin Airport,5946-00013-1,1,4380_7778208_1090112,4380_141 -4380_78062,291,4380_83610,Rahoon,105213-00013-1,1,4380_7778208_4050304,4380_1311 -4380_78062,296,4380_83611,Rahoon,105214-00021-1,1,4380_7778208_4050304,4380_1311 -4380_78062,285,4380_83617,Rahoon,105217-00009-1,1,4380_7778208_4050304,4380_1309 -4380_78062,288,4380_83618,Rahoon,105223-00011-1,1,4380_7778208_4050304,4380_1309 -4380_78062,286,4380_83619,Rahoon,105219-00010-1,1,4380_7778208_4050304,4380_1309 -4380_78114,292,4380_8362,Dublin Airport,54700-00016-1,1,4380_7778208_1090102,4380_137 -4380_78062,289,4380_83620,Rahoon,105221-00014-1,1,4380_7778208_4050304,4380_1309 -4380_78062,287,4380_83621,Rahoon,105215-00012-1,1,4380_7778208_4050304,4380_1309 -4380_78062,292,4380_83622,Rahoon,105220-00016-1,1,4380_7778208_4050304,4380_1309 -4380_78062,290,4380_83623,Rahoon,105218-00015-1,1,4380_7778208_4050304,4380_1309 -4380_78062,294,4380_83624,Rahoon,105216-00018-1,1,4380_7778208_4050304,4380_1309 -4380_78062,295,4380_83625,Rahoon,105222-00019-1,1,4380_7778208_4050304,4380_1309 -4380_78062,293,4380_83626,Rahoon,105224-00017-1,1,4380_7778208_4050304,4380_1309 -4380_78062,291,4380_83628,Rahoon,104728-00013-1,1,4380_7778208_4050302,4380_1309 -4380_78062,296,4380_83629,Rahoon,104729-00021-1,1,4380_7778208_4050302,4380_1309 -4380_78114,293,4380_8363,Dublin Airport,54699-00017-1,1,4380_7778208_1090102,4380_137 -4380_78062,285,4380_83635,Rahoon,104967-00009-1,1,4380_7778208_4050303,4380_1309 -4380_78062,288,4380_83636,Rahoon,104965-00011-1,1,4380_7778208_4050303,4380_1309 -4380_78062,286,4380_83637,Rahoon,104969-00010-1,1,4380_7778208_4050303,4380_1309 -4380_78062,289,4380_83638,Rahoon,104963-00014-1,1,4380_7778208_4050303,4380_1309 -4380_78062,287,4380_83639,Rahoon,104961-00012-1,1,4380_7778208_4050303,4380_1309 -4380_78114,294,4380_8364,Dublin Airport,54701-00018-1,1,4380_7778208_1090102,4380_137 -4380_78062,292,4380_83640,Rahoon,104970-00016-1,1,4380_7778208_4050303,4380_1309 -4380_78062,290,4380_83641,Rahoon,104968-00015-1,1,4380_7778208_4050303,4380_1309 -4380_78062,294,4380_83642,Rahoon,104962-00018-1,1,4380_7778208_4050303,4380_1309 -4380_78062,295,4380_83643,Rahoon,104964-00019-1,1,4380_7778208_4050303,4380_1309 -4380_78062,293,4380_83644,Rahoon,104966-00017-1,1,4380_7778208_4050303,4380_1309 -4380_78062,297,4380_83646,Rahoon,104740-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78062,291,4380_83648,Rahoon,104971-00013-1,1,4380_7778208_4050303,4380_1311 -4380_78062,296,4380_83649,Rahoon,104972-00021-1,1,4380_7778208_4050303,4380_1311 -4380_78114,295,4380_8365,Dublin Airport,54703-00019-1,1,4380_7778208_1090102,4380_137 -4380_78062,285,4380_83655,Rahoon,105405-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78062,288,4380_83656,Rahoon,105399-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_83657,Rahoon,105403-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78062,289,4380_83658,Rahoon,105401-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_83659,Rahoon,105397-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78114,296,4380_8366,Dublin Airport,55146-00021-1,1,4380_7778208_1090112,4380_141 -4380_78062,292,4380_83660,Rahoon,105404-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_83661,Rahoon,105406-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_83662,Rahoon,105398-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78062,295,4380_83663,Rahoon,105402-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_83664,Rahoon,105400-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78062,291,4380_83666,Rahoon,104519-00013-1,1,4380_7778208_4050301,4380_1309 -4380_78062,296,4380_83667,Rahoon,104520-00021-1,1,4380_7778208_4050301,4380_1309 -4380_78062,285,4380_83673,Rahoon,104529-00009-1,1,4380_7778208_4050301,4380_1309 -4380_78062,288,4380_83674,Rahoon,104521-00011-1,1,4380_7778208_4050301,4380_1309 -4380_78062,286,4380_83675,Rahoon,104527-00010-1,1,4380_7778208_4050301,4380_1309 -4380_78062,289,4380_83676,Rahoon,104525-00014-1,1,4380_7778208_4050301,4380_1309 -4380_78062,287,4380_83677,Rahoon,104523-00012-1,1,4380_7778208_4050301,4380_1309 -4380_78062,292,4380_83678,Rahoon,104528-00016-1,1,4380_7778208_4050301,4380_1309 -4380_78062,290,4380_83679,Rahoon,104530-00015-1,1,4380_7778208_4050301,4380_1309 -4380_78062,294,4380_83680,Rahoon,104524-00018-1,1,4380_7778208_4050301,4380_1309 -4380_78062,295,4380_83681,Rahoon,104526-00019-1,1,4380_7778208_4050301,4380_1309 -4380_78062,293,4380_83682,Rahoon,104522-00017-1,1,4380_7778208_4050301,4380_1309 -4380_78062,297,4380_83684,Rahoon,104531-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78062,291,4380_83686,Rahoon,105237-00013-1,1,4380_7778208_4050304,4380_1311 -4380_78062,296,4380_83687,Rahoon,105238-00021-1,1,4380_7778208_4050304,4380_1311 -4380_78062,285,4380_83693,Rahoon,104746-00009-1,1,4380_7778208_4050302,4380_1309 -4380_78062,288,4380_83694,Rahoon,104744-00011-1,1,4380_7778208_4050302,4380_1309 -4380_78062,286,4380_83695,Rahoon,104750-00010-1,1,4380_7778208_4050302,4380_1309 -4380_78062,289,4380_83696,Rahoon,104748-00014-1,1,4380_7778208_4050302,4380_1309 -4380_78062,287,4380_83697,Rahoon,104752-00012-1,1,4380_7778208_4050302,4380_1309 -4380_78062,292,4380_83698,Rahoon,104751-00016-1,1,4380_7778208_4050302,4380_1309 -4380_78062,290,4380_83699,Rahoon,104747-00015-1,1,4380_7778208_4050302,4380_1309 -4380_78062,294,4380_83700,Rahoon,104753-00018-1,1,4380_7778208_4050302,4380_1309 -4380_78062,295,4380_83701,Rahoon,104749-00019-1,1,4380_7778208_4050302,4380_1309 -4380_78062,293,4380_83702,Rahoon,104745-00017-1,1,4380_7778208_4050302,4380_1309 -4380_78062,291,4380_83704,Rahoon,104754-00013-1,1,4380_7778208_4050302,4380_1309 -4380_78062,296,4380_83705,Rahoon,104755-00021-1,1,4380_7778208_4050302,4380_1309 -4380_78062,285,4380_83711,Rahoon,105239-00009-1,1,4380_7778208_4050304,4380_1309 -4380_78062,288,4380_83712,Rahoon,105243-00011-1,1,4380_7778208_4050304,4380_1309 -4380_78062,286,4380_83713,Rahoon,105241-00010-1,1,4380_7778208_4050304,4380_1309 -4380_78062,289,4380_83714,Rahoon,105247-00014-1,1,4380_7778208_4050304,4380_1309 -4380_78062,287,4380_83715,Rahoon,105245-00012-1,1,4380_7778208_4050304,4380_1309 -4380_78062,292,4380_83716,Rahoon,105242-00016-1,1,4380_7778208_4050304,4380_1309 -4380_78062,290,4380_83717,Rahoon,105240-00015-1,1,4380_7778208_4050304,4380_1309 -4380_78062,294,4380_83718,Rahoon,105246-00018-1,1,4380_7778208_4050304,4380_1309 -4380_78062,295,4380_83719,Rahoon,105248-00019-1,1,4380_7778208_4050304,4380_1309 -4380_78062,293,4380_83720,Rahoon,105244-00017-1,1,4380_7778208_4050304,4380_1309 -4380_78062,297,4380_83727,Rahoon,104756-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78062,285,4380_83728,Rahoon,104995-00009-1,1,4380_7778208_4050303,4380_1311 -4380_78062,288,4380_83730,Rahoon,104985-00011-1,1,4380_7778208_4050303,4380_1311 -4380_78062,286,4380_83731,Rahoon,104993-00010-1,1,4380_7778208_4050303,4380_1311 -4380_78062,291,4380_83732,Rahoon,104991-00013-1,1,4380_7778208_4050303,4380_1312 -4380_78062,289,4380_83733,Rahoon,104989-00014-1,1,4380_7778208_4050303,4380_1311 -4380_78062,287,4380_83734,Rahoon,104987-00012-1,1,4380_7778208_4050303,4380_1311 -4380_78062,292,4380_83735,Rahoon,104994-00016-1,1,4380_7778208_4050303,4380_1311 -4380_78062,290,4380_83736,Rahoon,104996-00015-1,1,4380_7778208_4050303,4380_1311 -4380_78062,294,4380_83737,Rahoon,104988-00018-1,1,4380_7778208_4050303,4380_1311 -4380_78062,295,4380_83738,Rahoon,104990-00019-1,1,4380_7778208_4050303,4380_1311 -4380_78062,293,4380_83739,Rahoon,104986-00017-1,1,4380_7778208_4050303,4380_1311 -4380_78114,285,4380_8374,Dublin Airport,5381-00009-1,1,4380_7778208_1090103,4380_137 -4380_78062,296,4380_83740,Rahoon,104992-00021-1,1,4380_7778208_4050303,4380_1312 -4380_78062,285,4380_83746,Rahoon,105421-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78062,288,4380_83748,Rahoon,105417-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_83749,Rahoon,105419-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78114,286,4380_8375,Dublin Airport,5391-00010-1,1,4380_7778208_1090103,4380_137 -4380_78062,291,4380_83750,Rahoon,104545-00013-1,1,4380_7778208_4050301,4380_1311 -4380_78062,289,4380_83751,Rahoon,105425-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_83752,Rahoon,105423-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78062,292,4380_83753,Rahoon,105420-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_83754,Rahoon,105422-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_83755,Rahoon,105424-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78062,295,4380_83756,Rahoon,105426-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_83757,Rahoon,105418-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78062,296,4380_83758,Rahoon,104546-00021-1,1,4380_7778208_4050301,4380_1311 -4380_78114,297,4380_8376,Dublin Airport,5891-00008-1,1,4380_7778208_1090111,4380_139 -4380_78062,297,4380_83765,Rahoon,104547-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78062,285,4380_83766,Rahoon,104554-00009-1,1,4380_7778208_4050301,4380_1311 -4380_78062,288,4380_83768,Rahoon,104548-00011-1,1,4380_7778208_4050301,4380_1311 -4380_78062,286,4380_83769,Rahoon,104552-00010-1,1,4380_7778208_4050301,4380_1311 -4380_78114,288,4380_8377,Dublin Airport,5401-00011-1,1,4380_7778208_1090103,4380_137 -4380_78062,291,4380_83770,Rahoon,105259-00013-1,1,4380_7778208_4050304,4380_1312 -4380_78062,289,4380_83771,Rahoon,104550-00014-1,1,4380_7778208_4050301,4380_1311 -4380_78062,287,4380_83772,Rahoon,104556-00012-1,1,4380_7778208_4050301,4380_1311 -4380_78062,292,4380_83773,Rahoon,104553-00016-1,1,4380_7778208_4050301,4380_1311 -4380_78062,290,4380_83774,Rahoon,104555-00015-1,1,4380_7778208_4050301,4380_1311 -4380_78062,294,4380_83775,Rahoon,104557-00018-1,1,4380_7778208_4050301,4380_1311 -4380_78062,295,4380_83776,Rahoon,104551-00019-1,1,4380_7778208_4050301,4380_1311 -4380_78062,293,4380_83777,Rahoon,104549-00017-1,1,4380_7778208_4050301,4380_1311 -4380_78062,296,4380_83778,Rahoon,105260-00021-1,1,4380_7778208_4050304,4380_1312 -4380_78114,287,4380_8378,Dublin Airport,5411-00012-1,1,4380_7778208_1090103,4380_137 -4380_78062,285,4380_83784,Rahoon,104778-00009-1,1,4380_7778208_4050302,4380_1309 -4380_78062,288,4380_83786,Rahoon,104776-00011-1,1,4380_7778208_4050302,4380_1309 -4380_78062,286,4380_83787,Rahoon,104772-00010-1,1,4380_7778208_4050302,4380_1309 -4380_78062,291,4380_83788,Rahoon,104774-00013-1,1,4380_7778208_4050302,4380_1311 -4380_78062,289,4380_83789,Rahoon,104770-00014-1,1,4380_7778208_4050302,4380_1309 -4380_78114,289,4380_8379,Dublin Airport,5371-00014-1,1,4380_7778208_1090103,4380_137 -4380_78062,287,4380_83790,Rahoon,104780-00012-1,1,4380_7778208_4050302,4380_1309 -4380_78062,292,4380_83791,Rahoon,104773-00016-1,1,4380_7778208_4050302,4380_1309 -4380_78062,290,4380_83792,Rahoon,104779-00015-1,1,4380_7778208_4050302,4380_1309 -4380_78062,294,4380_83793,Rahoon,104781-00018-1,1,4380_7778208_4050302,4380_1309 -4380_78062,295,4380_83794,Rahoon,104771-00019-1,1,4380_7778208_4050302,4380_1309 -4380_78062,293,4380_83795,Rahoon,104777-00017-1,1,4380_7778208_4050302,4380_1309 -4380_78062,296,4380_83796,Rahoon,104775-00021-1,1,4380_7778208_4050302,4380_1311 -4380_78114,290,4380_8380,Dublin Airport,54754-00015-1,1,4380_7778208_1090103,4380_137 -4380_78062,297,4380_83803,Rahoon,104782-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78062,285,4380_83804,Rahoon,105267-00009-1,1,4380_7778208_4050304,4380_1311 -4380_78062,288,4380_83806,Rahoon,105271-00011-1,1,4380_7778208_4050304,4380_1311 -4380_78062,286,4380_83807,Rahoon,105269-00010-1,1,4380_7778208_4050304,4380_1311 -4380_78062,291,4380_83808,Rahoon,105009-00013-1,1,4380_7778208_4050303,4380_1312 -4380_78062,289,4380_83809,Rahoon,105273-00014-1,1,4380_7778208_4050304,4380_1311 -4380_78114,291,4380_8381,Dublin Airport,5976-00013-1,1,4380_7778208_1090113,4380_141 -4380_78062,287,4380_83810,Rahoon,105265-00012-1,1,4380_7778208_4050304,4380_1311 -4380_78062,292,4380_83811,Rahoon,105270-00016-1,1,4380_7778208_4050304,4380_1311 -4380_78062,290,4380_83812,Rahoon,105268-00015-1,1,4380_7778208_4050304,4380_1311 -4380_78062,294,4380_83813,Rahoon,105266-00018-1,1,4380_7778208_4050304,4380_1311 -4380_78062,295,4380_83814,Rahoon,105274-00019-1,1,4380_7778208_4050304,4380_1311 -4380_78062,293,4380_83815,Rahoon,105272-00017-1,1,4380_7778208_4050304,4380_1311 -4380_78062,296,4380_83816,Rahoon,105010-00021-1,1,4380_7778208_4050303,4380_1312 -4380_78114,292,4380_8382,Dublin Airport,54753-00016-1,1,4380_7778208_1090103,4380_137 -4380_78062,285,4380_83822,Rahoon,105013-00009-1,1,4380_7778208_4050303,4380_1309 -4380_78062,288,4380_83824,Rahoon,105011-00011-1,1,4380_7778208_4050303,4380_1309 -4380_78062,286,4380_83825,Rahoon,105017-00010-1,1,4380_7778208_4050303,4380_1309 -4380_78062,291,4380_83826,Rahoon,104561-00013-1,1,4380_7778208_4050301,4380_1311 -4380_78062,289,4380_83827,Rahoon,105015-00014-1,1,4380_7778208_4050303,4380_1309 -4380_78062,287,4380_83828,Rahoon,105019-00012-1,1,4380_7778208_4050303,4380_1309 -4380_78062,292,4380_83829,Rahoon,105018-00016-1,1,4380_7778208_4050303,4380_1309 -4380_78114,293,4380_8383,Dublin Airport,54756-00017-1,1,4380_7778208_1090103,4380_137 -4380_78062,290,4380_83830,Rahoon,105014-00015-1,1,4380_7778208_4050303,4380_1309 -4380_78062,294,4380_83831,Rahoon,105020-00018-1,1,4380_7778208_4050303,4380_1309 -4380_78062,295,4380_83832,Rahoon,105016-00019-1,1,4380_7778208_4050303,4380_1309 -4380_78062,293,4380_83833,Rahoon,105012-00017-1,1,4380_7778208_4050303,4380_1309 -4380_78062,296,4380_83834,Rahoon,104562-00021-1,1,4380_7778208_4050301,4380_1311 -4380_78114,294,4380_8384,Dublin Airport,54757-00018-1,1,4380_7778208_1090103,4380_137 -4380_78062,297,4380_83841,Rahoon,104571-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78062,285,4380_83842,Rahoon,105441-00009-1,1,4380_7778208_4050305,4380_1311 -4380_78062,288,4380_83844,Rahoon,105439-00011-1,1,4380_7778208_4050305,4380_1311 -4380_78062,286,4380_83845,Rahoon,105437-00010-1,1,4380_7778208_4050305,4380_1311 -4380_78062,291,4380_83846,Rahoon,105275-00013-1,1,4380_7778208_4050304,4380_1312 -4380_78062,289,4380_83847,Rahoon,105445-00014-1,1,4380_7778208_4050305,4380_1311 -4380_78062,287,4380_83848,Rahoon,105443-00012-1,1,4380_7778208_4050305,4380_1311 -4380_78062,292,4380_83849,Rahoon,105438-00016-1,1,4380_7778208_4050305,4380_1311 -4380_78114,295,4380_8385,Dublin Airport,54755-00019-1,1,4380_7778208_1090103,4380_137 -4380_78062,290,4380_83850,Rahoon,105442-00015-1,1,4380_7778208_4050305,4380_1311 -4380_78062,294,4380_83851,Rahoon,105444-00018-1,1,4380_7778208_4050305,4380_1311 -4380_78062,295,4380_83852,Rahoon,105446-00019-1,1,4380_7778208_4050305,4380_1311 -4380_78062,293,4380_83853,Rahoon,105440-00017-1,1,4380_7778208_4050305,4380_1311 -4380_78062,296,4380_83854,Rahoon,105276-00021-1,1,4380_7778208_4050304,4380_1312 -4380_78114,296,4380_8386,Dublin Airport,55191-00021-1,1,4380_7778208_1090113,4380_141 -4380_78062,285,4380_83860,Rahoon,104802-00009-1,1,4380_7778208_4050302,4380_1309 -4380_78062,288,4380_83862,Rahoon,104800-00011-1,1,4380_7778208_4050302,4380_1309 -4380_78062,286,4380_83863,Rahoon,104806-00010-1,1,4380_7778208_4050302,4380_1309 -4380_78062,291,4380_83864,Rahoon,104796-00013-1,1,4380_7778208_4050302,4380_1311 -4380_78062,289,4380_83865,Rahoon,104798-00014-1,1,4380_7778208_4050302,4380_1309 -4380_78062,287,4380_83866,Rahoon,104804-00012-1,1,4380_7778208_4050302,4380_1309 -4380_78062,292,4380_83867,Rahoon,104807-00016-1,1,4380_7778208_4050302,4380_1309 -4380_78062,290,4380_83868,Rahoon,104803-00015-1,1,4380_7778208_4050302,4380_1309 -4380_78062,294,4380_83869,Rahoon,104805-00018-1,1,4380_7778208_4050302,4380_1309 -4380_78062,295,4380_83870,Rahoon,104799-00019-1,1,4380_7778208_4050302,4380_1309 -4380_78062,293,4380_83871,Rahoon,104801-00017-1,1,4380_7778208_4050302,4380_1309 -4380_78062,296,4380_83872,Rahoon,104797-00021-1,1,4380_7778208_4050302,4380_1311 -4380_78062,297,4380_83879,Rahoon,104808-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78062,285,4380_83880,Rahoon,104576-00009-1,1,4380_7778208_4050301,4380_1311 -4380_78062,288,4380_83882,Rahoon,104582-00011-1,1,4380_7778208_4050301,4380_1311 -4380_78062,286,4380_83883,Rahoon,104578-00010-1,1,4380_7778208_4050301,4380_1311 -4380_78062,291,4380_83884,Rahoon,105033-00013-1,1,4380_7778208_4050303,4380_1312 -4380_78062,289,4380_83885,Rahoon,104585-00014-1,1,4380_7778208_4050301,4380_1311 -4380_78062,287,4380_83886,Rahoon,104580-00012-1,1,4380_7778208_4050301,4380_1311 -4380_78062,292,4380_83887,Rahoon,104579-00016-1,1,4380_7778208_4050301,4380_1311 -4380_78062,290,4380_83888,Rahoon,104577-00015-1,1,4380_7778208_4050301,4380_1311 -4380_78062,294,4380_83889,Rahoon,104581-00018-1,1,4380_7778208_4050301,4380_1311 -4380_78062,295,4380_83890,Rahoon,104586-00019-1,1,4380_7778208_4050301,4380_1311 -4380_78062,293,4380_83891,Rahoon,104583-00017-1,1,4380_7778208_4050301,4380_1311 -4380_78062,296,4380_83892,Rahoon,105034-00021-1,1,4380_7778208_4050303,4380_1312 -4380_78062,285,4380_83898,Rahoon,105041-00009-1,1,4380_7778208_4050303,4380_1309 -4380_78062,288,4380_83900,Rahoon,105035-00011-1,1,4380_7778208_4050303,4380_1309 -4380_78062,286,4380_83901,Rahoon,105037-00010-1,1,4380_7778208_4050303,4380_1309 -4380_78062,291,4380_83902,Rahoon,104587-00013-1,1,4380_7778208_4050301,4380_1311 -4380_78062,289,4380_83903,Rahoon,105039-00014-1,1,4380_7778208_4050303,4380_1309 -4380_78062,287,4380_83904,Rahoon,105043-00012-1,1,4380_7778208_4050303,4380_1309 -4380_78062,292,4380_83905,Rahoon,105038-00016-1,1,4380_7778208_4050303,4380_1309 -4380_78062,290,4380_83906,Rahoon,105042-00015-1,1,4380_7778208_4050303,4380_1309 -4380_78062,294,4380_83907,Rahoon,105044-00018-1,1,4380_7778208_4050303,4380_1309 -4380_78062,295,4380_83908,Rahoon,105040-00019-1,1,4380_7778208_4050303,4380_1309 -4380_78062,293,4380_83909,Rahoon,105036-00017-1,1,4380_7778208_4050303,4380_1309 -4380_78062,296,4380_83910,Rahoon,104588-00021-1,1,4380_7778208_4050301,4380_1311 -4380_78062,297,4380_83917,Rahoon,104589-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78062,285,4380_83918,Rahoon,105289-00009-1,1,4380_7778208_4050304,4380_1311 -4380_78114,285,4380_8392,Dublin,7225-00009-1,1,4380_7778208_10988830,4380_134 -4380_78062,288,4380_83920,Rahoon,105291-00011-1,1,4380_7778208_4050304,4380_1311 -4380_78062,286,4380_83921,Rahoon,105293-00010-1,1,4380_7778208_4050304,4380_1311 -4380_78062,291,4380_83922,Rahoon,105297-00013-1,1,4380_7778208_4050304,4380_1312 -4380_78062,289,4380_83923,Rahoon,105295-00014-1,1,4380_7778208_4050304,4380_1311 -4380_78062,287,4380_83924,Rahoon,105299-00012-1,1,4380_7778208_4050304,4380_1311 -4380_78062,292,4380_83925,Rahoon,105294-00016-1,1,4380_7778208_4050304,4380_1311 -4380_78062,290,4380_83926,Rahoon,105290-00015-1,1,4380_7778208_4050304,4380_1311 -4380_78062,294,4380_83927,Rahoon,105300-00018-1,1,4380_7778208_4050304,4380_1311 -4380_78062,295,4380_83928,Rahoon,105296-00019-1,1,4380_7778208_4050304,4380_1311 -4380_78062,293,4380_83929,Rahoon,105292-00017-1,1,4380_7778208_4050304,4380_1311 -4380_78114,288,4380_8393,Dublin,7229-00011-1,1,4380_7778208_10988830,4380_134 -4380_78062,296,4380_83930,Rahoon,105298-00021-1,1,4380_7778208_4050304,4380_1312 -4380_78062,285,4380_83936,Rahoon,105459-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78062,288,4380_83938,Rahoon,105465-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_83939,Rahoon,105457-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78114,286,4380_8394,Dublin,7227-00010-1,1,4380_7778208_10988830,4380_134 -4380_78062,291,4380_83940,Rahoon,104822-00013-1,1,4380_7778208_4050302,4380_1311 -4380_78062,289,4380_83941,Rahoon,105463-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_83942,Rahoon,105461-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78062,292,4380_83943,Rahoon,105458-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_83944,Rahoon,105460-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_83945,Rahoon,105462-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78062,295,4380_83946,Rahoon,105464-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_83947,Rahoon,105466-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78062,296,4380_83948,Rahoon,104823-00021-1,1,4380_7778208_4050302,4380_1311 -4380_78114,289,4380_8395,Dublin,7223-00014-1,1,4380_7778208_10988830,4380_134 -4380_78062,297,4380_83955,Rahoon,104828-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78062,285,4380_83956,Rahoon,104833-00009-1,1,4380_7778208_4050302,4380_1311 -4380_78062,288,4380_83958,Rahoon,104824-00011-1,1,4380_7778208_4050302,4380_1311 -4380_78062,286,4380_83959,Rahoon,104831-00010-1,1,4380_7778208_4050302,4380_1311 -4380_78114,287,4380_8396,Dublin,7231-00012-1,1,4380_7778208_10988830,4380_134 -4380_78062,291,4380_83960,Rahoon,105053-00013-1,1,4380_7778208_4050303,4380_1312 -4380_78062,289,4380_83961,Rahoon,104829-00014-1,1,4380_7778208_4050302,4380_1311 -4380_78062,287,4380_83962,Rahoon,104826-00012-1,1,4380_7778208_4050302,4380_1311 -4380_78062,292,4380_83963,Rahoon,104832-00016-1,1,4380_7778208_4050302,4380_1311 -4380_78062,290,4380_83964,Rahoon,104834-00015-1,1,4380_7778208_4050302,4380_1311 -4380_78062,294,4380_83965,Rahoon,104827-00018-1,1,4380_7778208_4050302,4380_1311 -4380_78062,295,4380_83966,Rahoon,104830-00019-1,1,4380_7778208_4050302,4380_1311 -4380_78062,293,4380_83967,Rahoon,104825-00017-1,1,4380_7778208_4050302,4380_1311 -4380_78062,296,4380_83968,Rahoon,105054-00021-1,1,4380_7778208_4050303,4380_1312 -4380_78114,290,4380_8397,Dublin,114794-00015-1,1,4380_7778208_10988830,4380_134 -4380_78062,285,4380_83974,Rahoon,104603-00009-1,1,4380_7778208_4050301,4380_1309 -4380_78062,288,4380_83976,Rahoon,104613-00011-1,1,4380_7778208_4050301,4380_1309 -4380_78062,286,4380_83977,Rahoon,104609-00010-1,1,4380_7778208_4050301,4380_1309 -4380_78062,291,4380_83978,Rahoon,104611-00013-1,1,4380_7778208_4050301,4380_1311 -4380_78062,289,4380_83979,Rahoon,104605-00014-1,1,4380_7778208_4050301,4380_1309 -4380_78114,292,4380_8398,Dublin,114795-00016-1,1,4380_7778208_10988830,4380_134 -4380_78062,287,4380_83980,Rahoon,104607-00012-1,1,4380_7778208_4050301,4380_1309 -4380_78062,292,4380_83981,Rahoon,104610-00016-1,1,4380_7778208_4050301,4380_1309 -4380_78062,290,4380_83982,Rahoon,104604-00015-1,1,4380_7778208_4050301,4380_1309 -4380_78062,294,4380_83983,Rahoon,104608-00018-1,1,4380_7778208_4050301,4380_1309 -4380_78062,295,4380_83984,Rahoon,104606-00019-1,1,4380_7778208_4050301,4380_1309 -4380_78062,293,4380_83985,Rahoon,104614-00017-1,1,4380_7778208_4050301,4380_1309 -4380_78062,296,4380_83986,Rahoon,104612-00021-1,1,4380_7778208_4050301,4380_1311 -4380_78114,294,4380_8399,Dublin,114796-00018-1,1,4380_7778208_10988830,4380_134 -4380_78062,297,4380_83993,Rahoon,104615-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78062,285,4380_83994,Rahoon,105059-00009-1,1,4380_7778208_4050303,4380_1311 -4380_78062,288,4380_83996,Rahoon,105067-00011-1,1,4380_7778208_4050303,4380_1311 -4380_78062,286,4380_83997,Rahoon,105065-00010-1,1,4380_7778208_4050303,4380_1311 -4380_78062,291,4380_83998,Rahoon,105313-00013-1,1,4380_7778208_4050304,4380_1312 -4380_78062,289,4380_83999,Rahoon,105061-00014-1,1,4380_7778208_4050303,4380_1311 -4380_77946,296,4380_84,Dundalk,50256-00021-1,0,4380_7778208_1000911,4380_2 -4380_78114,293,4380_8400,Dublin,114793-00017-1,1,4380_7778208_10988830,4380_134 -4380_78062,287,4380_84000,Rahoon,105069-00012-1,1,4380_7778208_4050303,4380_1311 -4380_78062,292,4380_84001,Rahoon,105066-00016-1,1,4380_7778208_4050303,4380_1311 -4380_78062,290,4380_84002,Rahoon,105060-00015-1,1,4380_7778208_4050303,4380_1311 -4380_78062,294,4380_84003,Rahoon,105070-00018-1,1,4380_7778208_4050303,4380_1311 -4380_78062,295,4380_84004,Rahoon,105062-00019-1,1,4380_7778208_4050303,4380_1311 -4380_78062,293,4380_84005,Rahoon,105068-00017-1,1,4380_7778208_4050303,4380_1311 -4380_78062,296,4380_84006,Rahoon,105314-00021-1,1,4380_7778208_4050304,4380_1312 -4380_78062,291,4380_84008,Rahoon,104842-00013-1,1,4380_7778208_4050302,4380_1309 -4380_78062,296,4380_84009,Rahoon,104843-00021-1,1,4380_7778208_4050302,4380_1309 -4380_78114,295,4380_8401,Dublin,114792-00019-1,1,4380_7778208_10988830,4380_134 -4380_78062,285,4380_84015,Rahoon,105319-00009-1,1,4380_7778208_4050304,4380_1309 -4380_78062,288,4380_84016,Rahoon,105321-00011-1,1,4380_7778208_4050304,4380_1309 -4380_78062,286,4380_84017,Rahoon,105315-00010-1,1,4380_7778208_4050304,4380_1309 -4380_78062,289,4380_84018,Rahoon,105323-00014-1,1,4380_7778208_4050304,4380_1309 -4380_78062,287,4380_84019,Rahoon,105317-00012-1,1,4380_7778208_4050304,4380_1309 -4380_78062,292,4380_84020,Rahoon,105316-00016-1,1,4380_7778208_4050304,4380_1309 -4380_78062,290,4380_84021,Rahoon,105320-00015-1,1,4380_7778208_4050304,4380_1309 -4380_78062,294,4380_84022,Rahoon,105318-00018-1,1,4380_7778208_4050304,4380_1309 -4380_78062,295,4380_84023,Rahoon,105324-00019-1,1,4380_7778208_4050304,4380_1309 -4380_78062,293,4380_84024,Rahoon,105322-00017-1,1,4380_7778208_4050304,4380_1309 -4380_78062,297,4380_84026,Rahoon,104850-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78062,291,4380_84028,Rahoon,105071-00013-1,1,4380_7778208_4050303,4380_1311 -4380_78062,296,4380_84029,Rahoon,105072-00021-1,1,4380_7778208_4050303,4380_1311 -4380_78062,285,4380_84035,Rahoon,105483-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78062,288,4380_84036,Rahoon,105477-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_84037,Rahoon,105481-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78062,289,4380_84038,Rahoon,105485-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_84039,Rahoon,105479-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78062,292,4380_84040,Rahoon,105482-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_84041,Rahoon,105484-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_84042,Rahoon,105480-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78062,295,4380_84043,Rahoon,105486-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_84044,Rahoon,105478-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78062,291,4380_84046,Rahoon,104629-00013-1,1,4380_7778208_4050301,4380_1309 -4380_78062,296,4380_84047,Rahoon,104630-00021-1,1,4380_7778208_4050301,4380_1309 -4380_78062,285,4380_84053,Rahoon,104853-00009-1,1,4380_7778208_4050302,4380_1309 -4380_78062,288,4380_84054,Rahoon,104855-00011-1,1,4380_7778208_4050302,4380_1309 -4380_78062,286,4380_84055,Rahoon,104861-00010-1,1,4380_7778208_4050302,4380_1309 -4380_78062,289,4380_84056,Rahoon,104859-00014-1,1,4380_7778208_4050302,4380_1309 -4380_78062,287,4380_84057,Rahoon,104857-00012-1,1,4380_7778208_4050302,4380_1309 -4380_78062,292,4380_84058,Rahoon,104862-00016-1,1,4380_7778208_4050302,4380_1309 -4380_78062,290,4380_84059,Rahoon,104854-00015-1,1,4380_7778208_4050302,4380_1309 -4380_78062,294,4380_84060,Rahoon,104858-00018-1,1,4380_7778208_4050302,4380_1309 -4380_78062,295,4380_84061,Rahoon,104860-00019-1,1,4380_7778208_4050302,4380_1309 -4380_78062,293,4380_84062,Rahoon,104856-00017-1,1,4380_7778208_4050302,4380_1309 -4380_78062,297,4380_84064,Rahoon,104631-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78062,291,4380_84066,Rahoon,105337-00013-1,1,4380_7778208_4050304,4380_1311 -4380_78062,296,4380_84067,Rahoon,105338-00021-1,1,4380_7778208_4050304,4380_1311 -4380_78114,285,4380_8407,Dublin,7235-00009-1,1,4380_7778208_10988831,4380_133 -4380_78062,285,4380_84073,Rahoon,104632-00009-1,1,4380_7778208_4050301,4380_1309 -4380_78062,288,4380_84074,Rahoon,104638-00011-1,1,4380_7778208_4050301,4380_1309 -4380_78062,286,4380_84075,Rahoon,104640-00010-1,1,4380_7778208_4050301,4380_1309 -4380_78062,289,4380_84076,Rahoon,104634-00014-1,1,4380_7778208_4050301,4380_1309 -4380_78062,287,4380_84077,Rahoon,104636-00012-1,1,4380_7778208_4050301,4380_1309 -4380_78062,292,4380_84078,Rahoon,104641-00016-1,1,4380_7778208_4050301,4380_1309 -4380_78062,290,4380_84079,Rahoon,104633-00015-1,1,4380_7778208_4050301,4380_1309 -4380_78114,288,4380_8408,Dublin,7239-00011-1,1,4380_7778208_10988831,4380_133 -4380_78062,294,4380_84080,Rahoon,104637-00018-1,1,4380_7778208_4050301,4380_1309 -4380_78062,295,4380_84081,Rahoon,104635-00019-1,1,4380_7778208_4050301,4380_1309 -4380_78062,293,4380_84082,Rahoon,104639-00017-1,1,4380_7778208_4050301,4380_1309 -4380_78062,291,4380_84084,Rahoon,104864-00013-1,1,4380_7778208_4050302,4380_1309 -4380_78062,296,4380_84085,Rahoon,104865-00021-1,1,4380_7778208_4050302,4380_1309 -4380_78114,286,4380_8409,Dublin,7237-00010-1,1,4380_7778208_10988831,4380_133 -4380_78062,285,4380_84091,Rahoon,105093-00009-1,1,4380_7778208_4050303,4380_1309 -4380_78062,288,4380_84092,Rahoon,105091-00011-1,1,4380_7778208_4050303,4380_1309 -4380_78062,286,4380_84093,Rahoon,105085-00010-1,1,4380_7778208_4050303,4380_1309 -4380_78062,289,4380_84094,Rahoon,105089-00014-1,1,4380_7778208_4050303,4380_1309 -4380_78062,287,4380_84095,Rahoon,105087-00012-1,1,4380_7778208_4050303,4380_1309 -4380_78062,292,4380_84096,Rahoon,105086-00016-1,1,4380_7778208_4050303,4380_1309 -4380_78062,290,4380_84097,Rahoon,105094-00015-1,1,4380_7778208_4050303,4380_1309 -4380_78062,294,4380_84098,Rahoon,105088-00018-1,1,4380_7778208_4050303,4380_1309 -4380_78062,295,4380_84099,Rahoon,105090-00019-1,1,4380_7778208_4050303,4380_1309 -4380_78114,289,4380_8410,Dublin,7233-00014-1,1,4380_7778208_10988831,4380_133 -4380_78062,293,4380_84100,Rahoon,105092-00017-1,1,4380_7778208_4050303,4380_1309 -4380_78062,297,4380_84102,Rahoon,104876-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78062,291,4380_84104,Rahoon,105095-00013-1,1,4380_7778208_4050303,4380_1311 -4380_78062,296,4380_84105,Rahoon,105096-00021-1,1,4380_7778208_4050303,4380_1311 -4380_78114,287,4380_8411,Dublin,7241-00012-1,1,4380_7778208_10988831,4380_133 -4380_78062,285,4380_84111,Rahoon,105345-00009-1,1,4380_7778208_4050304,4380_1309 -4380_78062,288,4380_84112,Rahoon,105341-00011-1,1,4380_7778208_4050304,4380_1309 -4380_78062,286,4380_84113,Rahoon,105347-00010-1,1,4380_7778208_4050304,4380_1309 -4380_78062,289,4380_84114,Rahoon,105343-00014-1,1,4380_7778208_4050304,4380_1309 -4380_78062,287,4380_84115,Rahoon,105349-00012-1,1,4380_7778208_4050304,4380_1309 -4380_78062,292,4380_84116,Rahoon,105348-00016-1,1,4380_7778208_4050304,4380_1309 -4380_78062,290,4380_84117,Rahoon,105346-00015-1,1,4380_7778208_4050304,4380_1309 -4380_78062,294,4380_84118,Rahoon,105350-00018-1,1,4380_7778208_4050304,4380_1309 -4380_78062,295,4380_84119,Rahoon,105344-00019-1,1,4380_7778208_4050304,4380_1309 -4380_78114,290,4380_8412,Dublin,114804-00015-1,1,4380_7778208_10988831,4380_133 -4380_78062,293,4380_84120,Rahoon,105342-00017-1,1,4380_7778208_4050304,4380_1309 -4380_78062,291,4380_84122,Rahoon,104655-00013-1,1,4380_7778208_4050301,4380_1309 -4380_78062,296,4380_84123,Rahoon,104656-00021-1,1,4380_7778208_4050301,4380_1309 -4380_78062,285,4380_84129,Rahoon,105499-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78114,292,4380_8413,Dublin,114805-00016-1,1,4380_7778208_10988831,4380_133 -4380_78062,288,4380_84130,Rahoon,105501-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_84131,Rahoon,105505-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78062,289,4380_84132,Rahoon,105503-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_84133,Rahoon,105497-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78062,292,4380_84134,Rahoon,105506-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_84135,Rahoon,105500-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_84136,Rahoon,105498-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78062,295,4380_84137,Rahoon,105504-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_84138,Rahoon,105502-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78114,294,4380_8414,Dublin,114806-00018-1,1,4380_7778208_10988831,4380_133 -4380_78062,297,4380_84140,Rahoon,104657-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78062,291,4380_84142,Rahoon,105351-00013-1,1,4380_7778208_4050304,4380_1311 -4380_78062,296,4380_84143,Rahoon,105352-00021-1,1,4380_7778208_4050304,4380_1311 -4380_78062,285,4380_84149,Rahoon,104888-00009-1,1,4380_7778208_4050302,4380_1309 -4380_78114,293,4380_8415,Dublin,114803-00017-1,1,4380_7778208_10988831,4380_133 -4380_78062,288,4380_84150,Rahoon,104882-00011-1,1,4380_7778208_4050302,4380_1309 -4380_78062,286,4380_84151,Rahoon,104884-00010-1,1,4380_7778208_4050302,4380_1309 -4380_78062,289,4380_84152,Rahoon,104880-00014-1,1,4380_7778208_4050302,4380_1309 -4380_78062,287,4380_84153,Rahoon,104886-00012-1,1,4380_7778208_4050302,4380_1309 -4380_78062,292,4380_84154,Rahoon,104885-00016-1,1,4380_7778208_4050302,4380_1309 -4380_78062,290,4380_84155,Rahoon,104889-00015-1,1,4380_7778208_4050302,4380_1309 -4380_78062,294,4380_84156,Rahoon,104887-00018-1,1,4380_7778208_4050302,4380_1309 -4380_78062,295,4380_84157,Rahoon,104881-00019-1,1,4380_7778208_4050302,4380_1309 -4380_78062,293,4380_84158,Rahoon,104883-00017-1,1,4380_7778208_4050302,4380_1309 -4380_78114,295,4380_8416,Dublin,114802-00019-1,1,4380_7778208_10988831,4380_133 -4380_78062,291,4380_84160,Rahoon,104890-00013-1,1,4380_7778208_4050302,4380_1309 -4380_78062,296,4380_84161,Rahoon,104891-00021-1,1,4380_7778208_4050302,4380_1309 -4380_78062,285,4380_84167,Rahoon,104660-00009-1,1,4380_7778208_4050301,4380_1309 -4380_78062,288,4380_84168,Rahoon,104664-00011-1,1,4380_7778208_4050301,4380_1309 -4380_78062,286,4380_84169,Rahoon,104666-00010-1,1,4380_7778208_4050301,4380_1309 -4380_78062,289,4380_84170,Rahoon,104662-00014-1,1,4380_7778208_4050301,4380_1309 -4380_78062,287,4380_84171,Rahoon,104668-00012-1,1,4380_7778208_4050301,4380_1309 -4380_78062,292,4380_84172,Rahoon,104667-00016-1,1,4380_7778208_4050301,4380_1309 -4380_78062,290,4380_84173,Rahoon,104661-00015-1,1,4380_7778208_4050301,4380_1309 -4380_78062,294,4380_84174,Rahoon,104669-00018-1,1,4380_7778208_4050301,4380_1309 -4380_78062,295,4380_84175,Rahoon,104663-00019-1,1,4380_7778208_4050301,4380_1309 -4380_78062,293,4380_84176,Rahoon,104665-00017-1,1,4380_7778208_4050301,4380_1309 -4380_78062,297,4380_84178,Rahoon,104892-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78062,291,4380_84180,Rahoon,105109-00013-1,1,4380_7778208_4050303,4380_1311 -4380_78062,296,4380_84181,Rahoon,105110-00021-1,1,4380_7778208_4050303,4380_1311 -4380_78062,285,4380_84187,Rahoon,105113-00009-1,1,4380_7778208_4050303,4380_1309 -4380_78062,288,4380_84188,Rahoon,105117-00011-1,1,4380_7778208_4050303,4380_1309 -4380_78062,286,4380_84189,Rahoon,105111-00010-1,1,4380_7778208_4050303,4380_1309 -4380_78062,289,4380_84190,Rahoon,105115-00014-1,1,4380_7778208_4050303,4380_1309 -4380_78062,287,4380_84191,Rahoon,105119-00012-1,1,4380_7778208_4050303,4380_1309 -4380_78062,292,4380_84192,Rahoon,105112-00016-1,1,4380_7778208_4050303,4380_1309 -4380_78062,290,4380_84193,Rahoon,105114-00015-1,1,4380_7778208_4050303,4380_1309 -4380_78062,294,4380_84194,Rahoon,105120-00018-1,1,4380_7778208_4050303,4380_1309 -4380_78062,295,4380_84195,Rahoon,105116-00019-1,1,4380_7778208_4050303,4380_1309 -4380_78062,293,4380_84196,Rahoon,105118-00017-1,1,4380_7778208_4050303,4380_1309 -4380_78062,291,4380_84198,Rahoon,104671-00013-1,1,4380_7778208_4050301,4380_1309 -4380_78062,296,4380_84199,Rahoon,104672-00021-1,1,4380_7778208_4050301,4380_1309 -4380_78062,285,4380_84205,Rahoon,105367-00009-1,1,4380_7778208_4050304,4380_1309 -4380_78062,288,4380_84206,Rahoon,105371-00011-1,1,4380_7778208_4050304,4380_1309 -4380_78062,286,4380_84207,Rahoon,105365-00010-1,1,4380_7778208_4050304,4380_1309 -4380_78062,289,4380_84208,Rahoon,105373-00014-1,1,4380_7778208_4050304,4380_1309 -4380_78062,287,4380_84209,Rahoon,105369-00012-1,1,4380_7778208_4050304,4380_1309 -4380_78062,292,4380_84210,Rahoon,105366-00016-1,1,4380_7778208_4050304,4380_1309 -4380_78062,290,4380_84211,Rahoon,105368-00015-1,1,4380_7778208_4050304,4380_1309 -4380_78062,294,4380_84212,Rahoon,105370-00018-1,1,4380_7778208_4050304,4380_1309 -4380_78062,295,4380_84213,Rahoon,105374-00019-1,1,4380_7778208_4050304,4380_1309 -4380_78062,293,4380_84214,Rahoon,105372-00017-1,1,4380_7778208_4050304,4380_1309 -4380_78062,297,4380_84216,Rahoon,104683-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78062,291,4380_84218,Rahoon,105375-00013-1,1,4380_7778208_4050304,4380_1311 -4380_78062,296,4380_84219,Rahoon,105376-00021-1,1,4380_7778208_4050304,4380_1311 -4380_78062,285,4380_84225,Rahoon,105525-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78062,288,4380_84226,Rahoon,105517-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_84227,Rahoon,105519-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78062,289,4380_84228,Rahoon,105521-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_84229,Rahoon,105523-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78062,292,4380_84230,Rahoon,105520-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_84231,Rahoon,105526-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_84232,Rahoon,105524-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78062,295,4380_84233,Rahoon,105522-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_84234,Rahoon,105518-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78114,285,4380_8424,Dublin Airport,5456-00009-1,1,4380_7778208_1090104,4380_137 -4380_78062,285,4380_84240,Rahoon,104906-00009-1,1,4380_7778208_4050302,4380_1309 -4380_78062,288,4380_84242,Rahoon,104914-00011-1,1,4380_7778208_4050302,4380_1309 -4380_78062,286,4380_84243,Rahoon,104908-00010-1,1,4380_7778208_4050302,4380_1309 -4380_78062,291,4380_84244,Rahoon,104912-00013-1,1,4380_7778208_4050302,4380_1311 -4380_78062,289,4380_84245,Rahoon,104916-00014-1,1,4380_7778208_4050302,4380_1309 -4380_78062,287,4380_84246,Rahoon,104910-00012-1,1,4380_7778208_4050302,4380_1309 -4380_78062,292,4380_84247,Rahoon,104909-00016-1,1,4380_7778208_4050302,4380_1309 -4380_78062,290,4380_84248,Rahoon,104907-00015-1,1,4380_7778208_4050302,4380_1309 -4380_78062,294,4380_84249,Rahoon,104911-00018-1,1,4380_7778208_4050302,4380_1309 -4380_78114,286,4380_8425,Dublin Airport,5466-00010-1,1,4380_7778208_1090104,4380_137 -4380_78062,295,4380_84250,Rahoon,104917-00019-1,1,4380_7778208_4050302,4380_1309 -4380_78062,293,4380_84251,Rahoon,104915-00017-1,1,4380_7778208_4050302,4380_1309 -4380_78062,296,4380_84252,Rahoon,104913-00021-1,1,4380_7778208_4050302,4380_1311 -4380_78062,297,4380_84254,Rahoon,104918-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78114,297,4380_8426,Dublin Airport,5956-00008-1,1,4380_7778208_1090112,4380_139 -4380_78062,285,4380_84260,Rahoon,105133-00009-1,1,4380_7778208_4050303,4380_1309 -4380_78062,288,4380_84262,Rahoon,105135-00011-1,1,4380_7778208_4050303,4380_1309 -4380_78062,286,4380_84263,Rahoon,105139-00010-1,1,4380_7778208_4050303,4380_1309 -4380_78062,291,4380_84264,Rahoon,104687-00013-1,1,4380_7778208_4050301,4380_1311 -4380_78062,289,4380_84265,Rahoon,105141-00014-1,1,4380_7778208_4050303,4380_1309 -4380_78062,287,4380_84266,Rahoon,105137-00012-1,1,4380_7778208_4050303,4380_1309 -4380_78062,292,4380_84267,Rahoon,105140-00016-1,1,4380_7778208_4050303,4380_1309 -4380_78062,290,4380_84268,Rahoon,105134-00015-1,1,4380_7778208_4050303,4380_1309 -4380_78062,294,4380_84269,Rahoon,105138-00018-1,1,4380_7778208_4050303,4380_1309 -4380_78114,288,4380_8427,Dublin Airport,5476-00011-1,1,4380_7778208_1090104,4380_137 -4380_78062,295,4380_84270,Rahoon,105142-00019-1,1,4380_7778208_4050303,4380_1309 -4380_78062,293,4380_84271,Rahoon,105136-00017-1,1,4380_7778208_4050303,4380_1309 -4380_78062,296,4380_84272,Rahoon,104688-00021-1,1,4380_7778208_4050301,4380_1311 -4380_78062,297,4380_84274,Rahoon,104689-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78114,287,4380_8428,Dublin Airport,5486-00012-1,1,4380_7778208_1090104,4380_137 -4380_78062,285,4380_84280,Rahoon,105545-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78062,288,4380_84282,Rahoon,105537-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_84283,Rahoon,105539-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78062,291,4380_84284,Rahoon,104922-00013-1,1,4380_7778208_4050302,4380_1311 -4380_78062,289,4380_84285,Rahoon,105541-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_84286,Rahoon,105543-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78062,292,4380_84287,Rahoon,105540-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_84288,Rahoon,105546-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_84289,Rahoon,105544-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78114,289,4380_8429,Dublin Airport,5446-00014-1,1,4380_7778208_1090104,4380_137 -4380_78062,295,4380_84290,Rahoon,105542-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_84291,Rahoon,105538-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78062,296,4380_84292,Rahoon,104923-00021-1,1,4380_7778208_4050302,4380_1311 -4380_78062,297,4380_84294,Rahoon,104924-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78113,285,4380_843,Dundalk,50217-00009-1,0,4380_7778208_1000908,4380_11 -4380_78114,290,4380_8430,Dublin Airport,54813-00015-1,1,4380_7778208_1090104,4380_137 -4380_78062,285,4380_84300,Rahoon,105157-00009-1,1,4380_7778208_4050303,4380_1309 -4380_78062,288,4380_84302,Rahoon,105155-00011-1,1,4380_7778208_4050303,4380_1309 -4380_78062,286,4380_84303,Rahoon,105159-00010-1,1,4380_7778208_4050303,4380_1309 -4380_78062,291,4380_84304,Rahoon,104693-00013-1,1,4380_7778208_4050301,4380_1311 -4380_78062,289,4380_84305,Rahoon,105153-00014-1,1,4380_7778208_4050303,4380_1309 -4380_78062,287,4380_84306,Rahoon,105161-00012-1,1,4380_7778208_4050303,4380_1309 -4380_78062,292,4380_84307,Rahoon,105160-00016-1,1,4380_7778208_4050303,4380_1309 -4380_78062,290,4380_84308,Rahoon,105158-00015-1,1,4380_7778208_4050303,4380_1309 -4380_78062,294,4380_84309,Rahoon,105162-00018-1,1,4380_7778208_4050303,4380_1309 -4380_78114,291,4380_8431,Dublin Airport,6009-00013-1,1,4380_7778208_1090114,4380_141 -4380_78062,295,4380_84310,Rahoon,105154-00019-1,1,4380_7778208_4050303,4380_1309 -4380_78062,293,4380_84311,Rahoon,105156-00017-1,1,4380_7778208_4050303,4380_1309 -4380_78062,296,4380_84312,Rahoon,104694-00021-1,1,4380_7778208_4050301,4380_1311 -4380_78062,297,4380_84314,Rahoon,104695-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78114,292,4380_8432,Dublin Airport,54812-00016-1,1,4380_7778208_1090104,4380_137 -4380_78062,285,4380_84320,Rahoon,105565-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78062,288,4380_84322,Rahoon,105563-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_84323,Rahoon,105557-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78062,291,4380_84324,Rahoon,104928-00013-1,1,4380_7778208_4050302,4380_1311 -4380_78062,289,4380_84325,Rahoon,105559-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_84326,Rahoon,105561-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78062,292,4380_84327,Rahoon,105558-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_84328,Rahoon,105566-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_84329,Rahoon,105562-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78114,293,4380_8433,Dublin Airport,54811-00017-1,1,4380_7778208_1090104,4380_137 -4380_78062,295,4380_84330,Rahoon,105560-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_84331,Rahoon,105564-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78062,296,4380_84332,Rahoon,104929-00021-1,1,4380_7778208_4050302,4380_1311 -4380_78062,297,4380_84334,Rahoon,104930-00008-1,1,4380_7778208_4050302,4380_1309 -4380_78114,294,4380_8434,Dublin Airport,54809-00018-1,1,4380_7778208_1090104,4380_137 -4380_78062,285,4380_84340,Rahoon,105173-00009-1,1,4380_7778208_4050303,4380_1309 -4380_78062,288,4380_84342,Rahoon,105181-00011-1,1,4380_7778208_4050303,4380_1309 -4380_78062,286,4380_84343,Rahoon,105175-00010-1,1,4380_7778208_4050303,4380_1309 -4380_78062,291,4380_84344,Rahoon,104699-00013-1,1,4380_7778208_4050301,4380_1311 -4380_78062,289,4380_84345,Rahoon,105179-00014-1,1,4380_7778208_4050303,4380_1309 -4380_78062,287,4380_84346,Rahoon,105177-00012-1,1,4380_7778208_4050303,4380_1309 -4380_78062,292,4380_84347,Rahoon,105176-00016-1,1,4380_7778208_4050303,4380_1309 -4380_78062,290,4380_84348,Rahoon,105174-00015-1,1,4380_7778208_4050303,4380_1309 -4380_78062,294,4380_84349,Rahoon,105178-00018-1,1,4380_7778208_4050303,4380_1309 -4380_78114,295,4380_8435,Dublin Airport,54810-00019-1,1,4380_7778208_1090104,4380_137 -4380_78062,295,4380_84350,Rahoon,105180-00019-1,1,4380_7778208_4050303,4380_1309 -4380_78062,293,4380_84351,Rahoon,105182-00017-1,1,4380_7778208_4050303,4380_1309 -4380_78062,296,4380_84352,Rahoon,104700-00021-1,1,4380_7778208_4050301,4380_1311 -4380_78062,297,4380_84354,Rahoon,104701-00008-1,1,4380_7778208_4050301,4380_1309 -4380_78114,296,4380_8436,Dublin Airport,55216-00021-1,1,4380_7778208_1090114,4380_141 -4380_78062,285,4380_84360,Rahoon,105579-00009-1,1,4380_7778208_4050305,4380_1309 -4380_78062,288,4380_84362,Rahoon,105583-00011-1,1,4380_7778208_4050305,4380_1309 -4380_78062,286,4380_84363,Rahoon,105577-00010-1,1,4380_7778208_4050305,4380_1309 -4380_78062,291,4380_84364,Rahoon,104934-00013-1,1,4380_7778208_4050302,4380_1311 -4380_78062,289,4380_84365,Rahoon,105581-00014-1,1,4380_7778208_4050305,4380_1309 -4380_78062,287,4380_84366,Rahoon,105585-00012-1,1,4380_7778208_4050305,4380_1309 -4380_78062,292,4380_84367,Rahoon,105578-00016-1,1,4380_7778208_4050305,4380_1309 -4380_78062,290,4380_84368,Rahoon,105580-00015-1,1,4380_7778208_4050305,4380_1309 -4380_78062,294,4380_84369,Rahoon,105586-00018-1,1,4380_7778208_4050305,4380_1309 -4380_78062,295,4380_84370,Rahoon,105582-00019-1,1,4380_7778208_4050305,4380_1309 -4380_78062,293,4380_84371,Rahoon,105584-00017-1,1,4380_7778208_4050305,4380_1309 -4380_78062,296,4380_84372,Rahoon,104935-00021-1,1,4380_7778208_4050302,4380_1311 -4380_78062,297,4380_84374,Eyre Square,104936-00008-1,1,4380_7778208_4050302,4380_1310 -4380_78062,285,4380_84380,Eyre Square,105199-00009-1,1,4380_7778208_4050303,4380_1310 -4380_78062,288,4380_84381,Eyre Square,105201-00011-1,1,4380_7778208_4050303,4380_1310 -4380_78062,286,4380_84382,Eyre Square,105197-00010-1,1,4380_7778208_4050303,4380_1310 -4380_78062,289,4380_84383,Eyre Square,105193-00014-1,1,4380_7778208_4050303,4380_1310 -4380_78062,287,4380_84384,Eyre Square,105195-00012-1,1,4380_7778208_4050303,4380_1310 -4380_78062,292,4380_84385,Eyre Square,105198-00016-1,1,4380_7778208_4050303,4380_1310 -4380_78062,290,4380_84386,Eyre Square,105200-00015-1,1,4380_7778208_4050303,4380_1310 -4380_78062,294,4380_84387,Eyre Square,105196-00018-1,1,4380_7778208_4050303,4380_1310 -4380_78062,295,4380_84388,Eyre Square,105194-00019-1,1,4380_7778208_4050303,4380_1310 -4380_78062,293,4380_84389,Eyre Square,105202-00017-1,1,4380_7778208_4050303,4380_1310 -4380_78062,291,4380_84391,Eyre Square,104705-00013-1,1,4380_7778208_4050301,4380_1310 -4380_78062,296,4380_84392,Eyre Square,104706-00021-1,1,4380_7778208_4050301,4380_1310 -4380_78063,285,4380_84398,Bothar an Choiste,105601-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84399,Bothar an Choiste,105603-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78113,286,4380_844,Dundalk,50215-00010-1,0,4380_7778208_1000908,4380_11 -4380_78063,286,4380_84400,Bothar an Choiste,105605-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,289,4380_84401,Bothar an Choiste,105597-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84402,Bothar an Choiste,105599-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84403,Bothar an Choiste,105606-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84404,Bothar an Choiste,105602-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84405,Bothar an Choiste,105600-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84406,Bothar an Choiste,105598-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84407,Bothar an Choiste,105604-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84413,Bothar an Choiste,105957-00009-1,0,4380_7778208_4070302,4380_1313 -4380_78063,288,4380_84415,Bothar an Choiste,105961-00011-1,0,4380_7778208_4070302,4380_1313 -4380_78063,286,4380_84416,Bothar an Choiste,105959-00010-1,0,4380_7778208_4070302,4380_1313 -4380_78063,291,4380_84417,Bothar an Choiste,105615-00013-1,0,4380_7778208_4070301,4380_1314 -4380_78063,289,4380_84418,Bothar an Choiste,105963-00014-1,0,4380_7778208_4070302,4380_1313 -4380_78063,287,4380_84419,Bothar an Choiste,105965-00012-1,0,4380_7778208_4070302,4380_1313 -4380_78063,292,4380_84420,Bothar an Choiste,105960-00016-1,0,4380_7778208_4070302,4380_1313 -4380_78063,290,4380_84421,Bothar an Choiste,105958-00015-1,0,4380_7778208_4070302,4380_1313 -4380_78063,294,4380_84422,Bothar an Choiste,105966-00018-1,0,4380_7778208_4070302,4380_1313 -4380_78063,295,4380_84423,Bothar an Choiste,105964-00019-1,0,4380_7778208_4070302,4380_1313 -4380_78063,293,4380_84424,Bothar an Choiste,105962-00017-1,0,4380_7778208_4070302,4380_1313 -4380_78063,296,4380_84425,Bothar an Choiste,105616-00021-1,0,4380_7778208_4070301,4380_1314 -4380_78063,285,4380_84431,Bothar an Choiste,105619-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84433,Bothar an Choiste,105623-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84434,Bothar an Choiste,105625-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84435,Bothar an Choiste,105973-00013-1,0,4380_7778208_4070302,4380_1314 -4380_78063,289,4380_84436,Bothar an Choiste,105627-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84437,Bothar an Choiste,105621-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84438,Bothar an Choiste,105626-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84439,Bothar an Choiste,105620-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78114,285,4380_8444,Dublin Airport,5530-00009-1,1,4380_7778208_1090105,4380_137 -4380_78063,294,4380_84440,Bothar an Choiste,105622-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84441,Bothar an Choiste,105628-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84442,Bothar an Choiste,105624-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84443,Bothar an Choiste,105974-00021-1,0,4380_7778208_4070302,4380_1314 -4380_78114,286,4380_8445,Dublin Airport,5538-00010-1,1,4380_7778208_1090105,4380_137 -4380_78063,297,4380_84450,Bothar an Choiste,105639-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84451,Bothar an Choiste,105979-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78063,288,4380_84453,Bothar an Choiste,105983-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84454,Bothar an Choiste,105981-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84455,Bothar an Choiste,105640-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84456,Bothar an Choiste,105989-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84457,Bothar an Choiste,105987-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84458,Bothar an Choiste,105982-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84459,Bothar an Choiste,105980-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78114,297,4380_8446,Dublin Airport,5986-00008-1,1,4380_7778208_1090113,4380_139 -4380_78063,294,4380_84460,Bothar an Choiste,105988-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84461,Bothar an Choiste,105990-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78063,293,4380_84462,Bothar an Choiste,105984-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84463,Bothar an Choiste,105641-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,285,4380_84469,Bothar an Choiste,105655-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78114,288,4380_8447,Dublin Airport,5546-00011-1,1,4380_7778208_1090105,4380_137 -4380_78063,288,4380_84471,Bothar an Choiste,105646-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84472,Bothar an Choiste,105653-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84473,Bothar an Choiste,106001-00013-1,0,4380_7778208_4070302,4380_1314 -4380_78063,289,4380_84474,Bothar an Choiste,105648-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84475,Bothar an Choiste,105650-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84476,Bothar an Choiste,105654-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84477,Bothar an Choiste,105656-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84478,Bothar an Choiste,105651-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84479,Bothar an Choiste,105649-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78114,287,4380_8448,Dublin Airport,5554-00012-1,1,4380_7778208_1090105,4380_137 -4380_78063,293,4380_84480,Bothar an Choiste,105647-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84481,Bothar an Choiste,106002-00021-1,0,4380_7778208_4070302,4380_1314 -4380_78063,297,4380_84488,Bothar an Choiste,105667-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84489,Bothar an Choiste,106011-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78114,289,4380_8449,Dublin Airport,5522-00014-1,1,4380_7778208_1090105,4380_137 -4380_78063,288,4380_84491,Bothar an Choiste,106003-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84492,Bothar an Choiste,106009-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84493,Bothar an Choiste,105663-00013-1,0,4380_7778208_4070301,4380_1314 -4380_78063,289,4380_84494,Bothar an Choiste,106005-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84495,Bothar an Choiste,106007-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84496,Bothar an Choiste,106010-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84497,Bothar an Choiste,106012-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84498,Bothar an Choiste,106008-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84499,Bothar an Choiste,106006-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78113,297,4380_845,Dundalk,50120-00008-1,0,4380_7778208_1000907,4380_14 -4380_78114,290,4380_8450,Dublin Airport,54866-00015-1,1,4380_7778208_1090105,4380_137 -4380_78063,293,4380_84500,Bothar an Choiste,106004-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84501,Bothar an Choiste,105664-00021-1,0,4380_7778208_4070301,4380_1314 -4380_78063,285,4380_84507,Bothar an Choiste,105677-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84509,Bothar an Choiste,105681-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78114,291,4380_8451,Dublin Airport,6049-00013-1,1,4380_7778208_1090115,4380_141 -4380_78063,286,4380_84510,Bothar an Choiste,105672-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84511,Bothar an Choiste,106015-00013-1,0,4380_7778208_4070302,4380_1313 -4380_78063,289,4380_84512,Bothar an Choiste,105679-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84513,Bothar an Choiste,105670-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84514,Bothar an Choiste,105673-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84515,Bothar an Choiste,105678-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84516,Bothar an Choiste,105671-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84517,Bothar an Choiste,105680-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84518,Bothar an Choiste,105682-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84519,Bothar an Choiste,106016-00021-1,0,4380_7778208_4070302,4380_1313 -4380_78114,292,4380_8452,Dublin Airport,54870-00016-1,1,4380_7778208_1090105,4380_137 -4380_78063,297,4380_84526,Bothar an Choiste,105693-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84527,Bothar an Choiste,106029-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78063,288,4380_84529,Bothar an Choiste,106033-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78114,293,4380_8453,Dublin Airport,54869-00017-1,1,4380_7778208_1090105,4380_137 -4380_78063,286,4380_84530,Bothar an Choiste,106035-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84531,Bothar an Choiste,105687-00013-1,0,4380_7778208_4070301,4380_1314 -4380_78063,289,4380_84532,Bothar an Choiste,106031-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84533,Bothar an Choiste,106037-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84534,Bothar an Choiste,106036-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84535,Bothar an Choiste,106030-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84536,Bothar an Choiste,106038-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84537,Bothar an Choiste,106032-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78063,293,4380_84538,Bothar an Choiste,106034-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84539,Bothar an Choiste,105688-00021-1,0,4380_7778208_4070301,4380_1314 -4380_78114,294,4380_8454,Dublin Airport,54867-00018-1,1,4380_7778208_1090105,4380_137 -4380_78063,285,4380_84545,Bothar an Choiste,105696-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84547,Bothar an Choiste,105702-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84548,Bothar an Choiste,105704-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84549,Bothar an Choiste,106047-00013-1,0,4380_7778208_4070302,4380_1313 -4380_78114,295,4380_8455,Dublin Airport,54868-00019-1,1,4380_7778208_1090105,4380_137 -4380_78063,289,4380_84550,Bothar an Choiste,105707-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84551,Bothar an Choiste,105698-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84552,Bothar an Choiste,105705-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84553,Bothar an Choiste,105697-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84554,Bothar an Choiste,105699-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84555,Bothar an Choiste,105708-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84556,Bothar an Choiste,105703-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84557,Bothar an Choiste,106048-00021-1,0,4380_7778208_4070302,4380_1313 -4380_78114,296,4380_8456,Dublin Airport,55241-00021-1,1,4380_7778208_1090115,4380_141 -4380_78063,297,4380_84564,Bothar an Choiste,105717-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84565,Bothar an Choiste,106057-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78063,288,4380_84567,Bothar an Choiste,106053-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84568,Bothar an Choiste,106051-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84569,Bothar an Choiste,105720-00013-1,0,4380_7778208_4070301,4380_1314 -4380_78063,289,4380_84570,Bothar an Choiste,106061-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84571,Bothar an Choiste,106055-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84572,Bothar an Choiste,106052-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84573,Bothar an Choiste,106058-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84574,Bothar an Choiste,106056-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84575,Bothar an Choiste,106062-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78063,293,4380_84576,Bothar an Choiste,106054-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84577,Bothar an Choiste,105721-00021-1,0,4380_7778208_4070301,4380_1314 -4380_78063,285,4380_84583,Bothar an Choiste,105724-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84585,Bothar an Choiste,105728-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84586,Bothar an Choiste,105730-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84587,Bothar an Choiste,106067-00013-1,0,4380_7778208_4070302,4380_1313 -4380_78063,289,4380_84588,Bothar an Choiste,105726-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84589,Bothar an Choiste,105733-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84590,Bothar an Choiste,105731-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84591,Bothar an Choiste,105725-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84592,Bothar an Choiste,105734-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84593,Bothar an Choiste,105727-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84594,Bothar an Choiste,105729-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84595,Bothar an Choiste,106068-00021-1,0,4380_7778208_4070302,4380_1313 -4380_78113,287,4380_846,Dundalk,50211-00012-1,0,4380_7778208_1000908,4380_11 -4380_78063,297,4380_84602,Bothar an Choiste,105739-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84603,Bothar an Choiste,106083-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78063,288,4380_84605,Bothar an Choiste,106079-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84606,Bothar an Choiste,106081-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84607,Bothar an Choiste,105737-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84608,Bothar an Choiste,106077-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84609,Bothar an Choiste,106085-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84610,Bothar an Choiste,106082-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84611,Bothar an Choiste,106084-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84612,Bothar an Choiste,106086-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84613,Bothar an Choiste,106078-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78063,293,4380_84614,Bothar an Choiste,106080-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84615,Bothar an Choiste,105738-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,285,4380_84621,Bothar an Choiste,105750-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84623,Bothar an Choiste,105757-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84624,Bothar an Choiste,105752-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84625,Bothar an Choiste,106093-00013-1,0,4380_7778208_4070302,4380_1314 -4380_78063,289,4380_84626,Bothar an Choiste,105748-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84627,Bothar an Choiste,105759-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84628,Bothar an Choiste,105753-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84629,Bothar an Choiste,105751-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84630,Bothar an Choiste,105760-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84631,Bothar an Choiste,105749-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84632,Bothar an Choiste,105758-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84633,Bothar an Choiste,106094-00021-1,0,4380_7778208_4070302,4380_1314 -4380_78114,285,4380_8464,Dublin Airport,5235-00009-1,1,4380_7778208_1090101,4380_137 -4380_78063,297,4380_84640,Bothar an Choiste,105761-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84641,Bothar an Choiste,106099-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78063,288,4380_84643,Bothar an Choiste,106105-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84644,Bothar an Choiste,106107-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84645,Bothar an Choiste,105772-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84646,Bothar an Choiste,106103-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84647,Bothar an Choiste,106109-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84648,Bothar an Choiste,106108-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84649,Bothar an Choiste,106100-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78114,286,4380_8465,Dublin Airport,5245-00010-1,1,4380_7778208_1090101,4380_137 -4380_78063,294,4380_84650,Bothar an Choiste,106110-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84651,Bothar an Choiste,106104-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78063,293,4380_84652,Bothar an Choiste,106106-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84653,Bothar an Choiste,105773-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,285,4380_84659,Bothar an Choiste,105781-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78114,297,4380_8466,Dublin Airport,5808-00008-1,1,4380_7778208_1090109,4380_139 -4380_78063,288,4380_84661,Bothar an Choiste,105779-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84662,Bothar an Choiste,105775-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84663,Bothar an Choiste,106119-00013-1,0,4380_7778208_4070302,4380_1314 -4380_78063,289,4380_84664,Bothar an Choiste,105777-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84665,Bothar an Choiste,105783-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84666,Bothar an Choiste,105776-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84667,Bothar an Choiste,105782-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84668,Bothar an Choiste,105784-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84669,Bothar an Choiste,105778-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78114,288,4380_8467,Dublin Airport,5255-00011-1,1,4380_7778208_1090101,4380_137 -4380_78063,293,4380_84670,Bothar an Choiste,105780-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84671,Bothar an Choiste,106120-00021-1,0,4380_7778208_4070302,4380_1314 -4380_78063,297,4380_84678,Bothar an Choiste,105791-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84679,Bothar an Choiste,106125-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78114,287,4380_8468,Dublin Airport,5265-00012-1,1,4380_7778208_1090101,4380_137 -4380_78063,288,4380_84681,Bothar an Choiste,106131-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84682,Bothar an Choiste,106129-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84683,Bothar an Choiste,105787-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84684,Bothar an Choiste,106123-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84685,Bothar an Choiste,106133-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84686,Bothar an Choiste,106130-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84687,Bothar an Choiste,106126-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84688,Bothar an Choiste,106134-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84689,Bothar an Choiste,106124-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78114,289,4380_8469,Dublin Airport,5225-00014-1,1,4380_7778208_1090101,4380_137 -4380_78063,293,4380_84690,Bothar an Choiste,106132-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84691,Bothar an Choiste,105788-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,285,4380_84697,Bothar an Choiste,105804-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84699,Bothar an Choiste,105800-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78113,288,4380_847,Dundalk,50213-00011-1,0,4380_7778208_1000908,4380_11 -4380_78114,290,4380_8470,Dublin Airport,54658-00015-1,1,4380_7778208_1090101,4380_137 -4380_78063,286,4380_84700,Bothar an Choiste,105802-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84701,Bothar an Choiste,106143-00013-1,0,4380_7778208_4070302,4380_1314 -4380_78063,289,4380_84702,Bothar an Choiste,105811-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84703,Bothar an Choiste,105806-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84704,Bothar an Choiste,105803-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84705,Bothar an Choiste,105805-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84706,Bothar an Choiste,105807-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84707,Bothar an Choiste,105812-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84708,Bothar an Choiste,105801-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84709,Bothar an Choiste,106144-00021-1,0,4380_7778208_4070302,4380_1314 -4380_78114,291,4380_8471,Dublin Airport,5883-00013-1,1,4380_7778208_1090111,4380_141 -4380_78063,297,4380_84716,Bothar an Choiste,105825-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84717,Bothar an Choiste,106147-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78063,288,4380_84719,Bothar an Choiste,106153-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78114,292,4380_8472,Dublin Airport,54655-00016-1,1,4380_7778208_1090101,4380_137 -4380_78063,286,4380_84720,Bothar an Choiste,106157-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84721,Bothar an Choiste,105823-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84722,Bothar an Choiste,106149-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84723,Bothar an Choiste,106151-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84724,Bothar an Choiste,106158-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84725,Bothar an Choiste,106148-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84726,Bothar an Choiste,106152-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84727,Bothar an Choiste,106150-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78063,293,4380_84728,Bothar an Choiste,106154-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84729,Bothar an Choiste,105824-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78114,293,4380_8473,Dublin Airport,54656-00017-1,1,4380_7778208_1090101,4380_137 -4380_78063,285,4380_84735,Bothar an Choiste,105835-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84737,Bothar an Choiste,105837-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84738,Bothar an Choiste,105829-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84739,Bothar an Choiste,106169-00013-1,0,4380_7778208_4070302,4380_1314 -4380_78114,294,4380_8474,Dublin Airport,54654-00018-1,1,4380_7778208_1090101,4380_137 -4380_78063,289,4380_84740,Bothar an Choiste,105826-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84741,Bothar an Choiste,105833-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84742,Bothar an Choiste,105830-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84743,Bothar an Choiste,105836-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84744,Bothar an Choiste,105834-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84745,Bothar an Choiste,105827-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84746,Bothar an Choiste,105838-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84747,Bothar an Choiste,106170-00021-1,0,4380_7778208_4070302,4380_1314 -4380_78114,295,4380_8475,Dublin Airport,54657-00019-1,1,4380_7778208_1090101,4380_137 -4380_78063,297,4380_84754,Bothar an Choiste,105841-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84755,Bothar an Choiste,106179-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78063,288,4380_84757,Bothar an Choiste,106173-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84758,Bothar an Choiste,106175-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84759,Bothar an Choiste,105848-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78114,296,4380_8476,Dublin Airport,55133-00021-1,1,4380_7778208_1090111,4380_141 -4380_78063,289,4380_84760,Bothar an Choiste,106171-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84761,Bothar an Choiste,106181-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84762,Bothar an Choiste,106176-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84763,Bothar an Choiste,106180-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84764,Bothar an Choiste,106182-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84765,Bothar an Choiste,106172-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78063,293,4380_84766,Bothar an Choiste,106174-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84767,Bothar an Choiste,105849-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,285,4380_84773,Bothar an Choiste,105863-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84775,Bothar an Choiste,105857-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84776,Bothar an Choiste,105854-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84777,Bothar an Choiste,106185-00013-1,0,4380_7778208_4070302,4380_1314 -4380_78063,289,4380_84778,Bothar an Choiste,105861-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84779,Bothar an Choiste,105859-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84780,Bothar an Choiste,105855-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84781,Bothar an Choiste,105864-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84782,Bothar an Choiste,105860-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84783,Bothar an Choiste,105862-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84784,Bothar an Choiste,105858-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84785,Bothar an Choiste,106186-00021-1,0,4380_7778208_4070302,4380_1314 -4380_78063,297,4380_84792,Bothar an Choiste,105871-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84793,Bothar an Choiste,106195-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78063,288,4380_84795,Bothar an Choiste,106205-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84796,Bothar an Choiste,106199-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84797,Bothar an Choiste,105865-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84798,Bothar an Choiste,106197-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84799,Bothar an Choiste,106201-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78113,289,4380_848,Dundalk,50219-00014-1,0,4380_7778208_1000908,4380_11 -4380_78063,292,4380_84800,Bothar an Choiste,106200-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84801,Bothar an Choiste,106196-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84802,Bothar an Choiste,106202-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84803,Bothar an Choiste,106198-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78063,293,4380_84804,Bothar an Choiste,106206-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84805,Bothar an Choiste,105866-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,285,4380_84811,Bothar an Choiste,105889-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78063,288,4380_84813,Bothar an Choiste,105887-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84814,Bothar an Choiste,105883-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84815,Bothar an Choiste,106217-00013-1,0,4380_7778208_4070302,4380_1314 -4380_78063,289,4380_84816,Bothar an Choiste,105885-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84817,Bothar an Choiste,105878-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84818,Bothar an Choiste,105884-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84819,Bothar an Choiste,105890-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84820,Bothar an Choiste,105879-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84821,Bothar an Choiste,105886-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78063,293,4380_84822,Bothar an Choiste,105888-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84823,Bothar an Choiste,106218-00021-1,0,4380_7778208_4070302,4380_1314 -4380_78063,297,4380_84830,Bothar an Choiste,105897-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84831,Bothar an Choiste,106221-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78063,288,4380_84833,Bothar an Choiste,106223-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84834,Bothar an Choiste,106227-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84835,Bothar an Choiste,105891-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84836,Bothar an Choiste,106225-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84837,Bothar an Choiste,106229-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84838,Bothar an Choiste,106228-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84839,Bothar an Choiste,106222-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78114,285,4380_8484,Dublin Airport,5311-00009-1,1,4380_7778208_1090102,4380_137 -4380_78063,294,4380_84840,Bothar an Choiste,106230-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84841,Bothar an Choiste,106226-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78063,293,4380_84842,Bothar an Choiste,106224-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84843,Bothar an Choiste,105892-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,285,4380_84849,Bothar an Choiste,105915-00009-1,0,4380_7778208_4070301,4380_1313 -4380_78114,286,4380_8485,Dublin Airport,5321-00010-1,1,4380_7778208_1090102,4380_137 -4380_78063,288,4380_84851,Bothar an Choiste,105913-00011-1,0,4380_7778208_4070301,4380_1313 -4380_78063,286,4380_84852,Bothar an Choiste,105909-00010-1,0,4380_7778208_4070301,4380_1313 -4380_78063,291,4380_84853,Bothar an Choiste,106241-00013-1,0,4380_7778208_4070302,4380_1314 -4380_78063,289,4380_84854,Bothar an Choiste,105911-00014-1,0,4380_7778208_4070301,4380_1313 -4380_78063,287,4380_84855,Bothar an Choiste,105906-00012-1,0,4380_7778208_4070301,4380_1313 -4380_78063,292,4380_84856,Bothar an Choiste,105910-00016-1,0,4380_7778208_4070301,4380_1313 -4380_78063,290,4380_84857,Bothar an Choiste,105916-00015-1,0,4380_7778208_4070301,4380_1313 -4380_78063,294,4380_84858,Bothar an Choiste,105907-00018-1,0,4380_7778208_4070301,4380_1313 -4380_78063,295,4380_84859,Bothar an Choiste,105912-00019-1,0,4380_7778208_4070301,4380_1313 -4380_78114,297,4380_8486,Dublin Airport,5863-00008-1,1,4380_7778208_1090110,4380_139 -4380_78063,293,4380_84860,Bothar an Choiste,105914-00017-1,0,4380_7778208_4070301,4380_1313 -4380_78063,296,4380_84861,Bothar an Choiste,106242-00021-1,0,4380_7778208_4070302,4380_1314 -4380_78063,297,4380_84868,Bothar an Choiste,105917-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84869,Bothar an Choiste,106253-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78114,288,4380_8487,Dublin Airport,5331-00011-1,1,4380_7778208_1090102,4380_137 -4380_78063,288,4380_84871,Bothar an Choiste,106243-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84872,Bothar an Choiste,106247-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84873,Bothar an Choiste,105918-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84874,Bothar an Choiste,106249-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84875,Bothar an Choiste,106245-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84876,Bothar an Choiste,106248-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84877,Bothar an Choiste,106254-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84878,Bothar an Choiste,106246-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84879,Bothar an Choiste,106250-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78114,287,4380_8488,Dublin Airport,5341-00012-1,1,4380_7778208_1090102,4380_137 -4380_78063,293,4380_84880,Bothar an Choiste,106244-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84881,Bothar an Choiste,105919-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,297,4380_84888,Bothar an Choiste,105935-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84889,Bothar an Choiste,106271-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78114,289,4380_8489,Dublin Airport,5301-00014-1,1,4380_7778208_1090102,4380_137 -4380_78063,288,4380_84891,Bothar an Choiste,106269-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84892,Bothar an Choiste,106267-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84893,Bothar an Choiste,105933-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84894,Bothar an Choiste,106273-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84895,Bothar an Choiste,106265-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84896,Bothar an Choiste,106268-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84897,Bothar an Choiste,106272-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84898,Bothar an Choiste,106266-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84899,Bothar an Choiste,106274-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78113,290,4380_849,Dundalk,50218-00015-1,0,4380_7778208_1000908,4380_11 -4380_78114,290,4380_8490,Dublin Airport,54715-00015-1,1,4380_7778208_1090102,4380_137 -4380_78063,293,4380_84900,Bothar an Choiste,106270-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84901,Bothar an Choiste,105934-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,297,4380_84908,Bothar an Choiste,105941-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84909,Bothar an Choiste,106293-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78114,291,4380_8491,Dublin Airport,5948-00013-1,1,4380_7778208_1090112,4380_141 -4380_78063,288,4380_84911,Bothar an Choiste,106291-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84912,Bothar an Choiste,106287-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84913,Bothar an Choiste,105939-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84914,Bothar an Choiste,106289-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84915,Bothar an Choiste,106285-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84916,Bothar an Choiste,106288-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84917,Bothar an Choiste,106294-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84918,Bothar an Choiste,106286-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84919,Bothar an Choiste,106290-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78114,292,4380_8492,Dublin Airport,54711-00016-1,1,4380_7778208_1090102,4380_137 -4380_78063,293,4380_84920,Bothar an Choiste,106292-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84921,Bothar an Choiste,105940-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,297,4380_84928,Bothar an Choiste,105947-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84929,Bothar an Choiste,106313-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78114,293,4380_8493,Dublin Airport,54713-00017-1,1,4380_7778208_1090102,4380_137 -4380_78063,288,4380_84931,Bothar an Choiste,106305-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84932,Bothar an Choiste,106311-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84933,Bothar an Choiste,105945-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84934,Bothar an Choiste,106307-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84935,Bothar an Choiste,106309-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84936,Bothar an Choiste,106312-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84937,Bothar an Choiste,106314-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84938,Bothar an Choiste,106310-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84939,Bothar an Choiste,106308-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78114,294,4380_8494,Dublin Airport,54714-00018-1,1,4380_7778208_1090102,4380_137 -4380_78063,293,4380_84940,Bothar an Choiste,106306-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84941,Bothar an Choiste,105946-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,297,4380_84948,Bothar an Choiste,105953-00008-1,0,4380_7778208_4070301,4380_1313 -4380_78063,285,4380_84949,Bothar an Choiste,106327-00009-1,0,4380_7778208_4070302,4380_1314 -4380_78114,295,4380_8495,Dublin Airport,54712-00019-1,1,4380_7778208_1090102,4380_137 -4380_78063,288,4380_84951,Bothar an Choiste,106329-00011-1,0,4380_7778208_4070302,4380_1314 -4380_78063,286,4380_84952,Bothar an Choiste,106333-00010-1,0,4380_7778208_4070302,4380_1314 -4380_78063,291,4380_84953,Bothar an Choiste,105951-00013-1,0,4380_7778208_4070301,4380_1315 -4380_78063,289,4380_84954,Bothar an Choiste,106325-00014-1,0,4380_7778208_4070302,4380_1314 -4380_78063,287,4380_84955,Bothar an Choiste,106331-00012-1,0,4380_7778208_4070302,4380_1314 -4380_78063,292,4380_84956,Bothar an Choiste,106334-00016-1,0,4380_7778208_4070302,4380_1314 -4380_78063,290,4380_84957,Bothar an Choiste,106328-00015-1,0,4380_7778208_4070302,4380_1314 -4380_78063,294,4380_84958,Bothar an Choiste,106332-00018-1,0,4380_7778208_4070302,4380_1314 -4380_78063,295,4380_84959,Bothar an Choiste,106326-00019-1,0,4380_7778208_4070302,4380_1314 -4380_78114,296,4380_8496,Dublin Airport,55163-00021-1,1,4380_7778208_1090112,4380_141 -4380_78063,293,4380_84960,Bothar an Choiste,106330-00017-1,0,4380_7778208_4070302,4380_1314 -4380_78063,296,4380_84961,Bothar an Choiste,105952-00021-1,0,4380_7778208_4070301,4380_1315 -4380_78063,285,4380_84967,Eyre Square,105607-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_84968,Eyre Square,105609-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_84969,Eyre Square,105617-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,289,4380_84970,Eyre Square,105611-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_84971,Eyre Square,105613-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_84972,Eyre Square,105618-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_84973,Eyre Square,105608-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_84974,Eyre Square,105614-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_84975,Eyre Square,105612-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_84976,Eyre Square,105610-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_84982,Eyre Square,105967-00009-1,1,4380_7778208_4070302,4380_1316 -4380_78063,288,4380_84984,Eyre Square,105977-00011-1,1,4380_7778208_4070302,4380_1316 -4380_78063,286,4380_84985,Eyre Square,105975-00010-1,1,4380_7778208_4070302,4380_1316 -4380_78063,291,4380_84986,Eyre Square,105629-00013-1,1,4380_7778208_4070301,4380_1317 -4380_78063,289,4380_84987,Eyre Square,105969-00014-1,1,4380_7778208_4070302,4380_1316 -4380_78063,287,4380_84988,Eyre Square,105971-00012-1,1,4380_7778208_4070302,4380_1316 -4380_78063,292,4380_84989,Eyre Square,105976-00016-1,1,4380_7778208_4070302,4380_1316 -4380_78063,290,4380_84990,Eyre Square,105968-00015-1,1,4380_7778208_4070302,4380_1316 -4380_78063,294,4380_84991,Eyre Square,105972-00018-1,1,4380_7778208_4070302,4380_1316 -4380_78063,295,4380_84992,Eyre Square,105970-00019-1,1,4380_7778208_4070302,4380_1316 -4380_78063,293,4380_84993,Eyre Square,105978-00017-1,1,4380_7778208_4070302,4380_1316 -4380_78063,296,4380_84994,Eyre Square,105630-00021-1,1,4380_7778208_4070301,4380_1317 -4380_78113,291,4380_850,Dundalk,50221-00013-1,0,4380_7778208_1000908,4380_17 -4380_78063,285,4380_85000,Eyre Square,105635-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85002,Eyre Square,105633-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85003,Eyre Square,105631-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85004,Eyre Square,105985-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85005,Eyre Square,105642-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85006,Eyre Square,105637-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85007,Eyre Square,105632-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85008,Eyre Square,105636-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85009,Eyre Square,105638-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85010,Eyre Square,105643-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85011,Eyre Square,105634-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85012,Eyre Square,105986-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78063,297,4380_85019,Eyre Square,105652-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85020,Eyre Square,105997-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78063,288,4380_85022,Eyre Square,105995-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85023,Eyre Square,105991-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85024,Eyre Square,105644-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85025,Eyre Square,105999-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85026,Eyre Square,105993-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85027,Eyre Square,105992-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85028,Eyre Square,105998-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85029,Eyre Square,105994-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85030,Eyre Square,106000-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85031,Eyre Square,105996-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78063,296,4380_85032,Eyre Square,105645-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,285,4380_85038,Eyre Square,105668-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78114,285,4380_8504,Dublin Airport,5383-00009-1,1,4380_7778208_1090103,4380_137 -4380_78063,288,4380_85040,Eyre Square,105661-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85041,Eyre Square,105657-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85042,Eyre Square,106013-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85043,Eyre Square,105665-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85044,Eyre Square,105659-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85045,Eyre Square,105658-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85046,Eyre Square,105669-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85047,Eyre Square,105660-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85048,Eyre Square,105666-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85049,Eyre Square,105662-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78114,286,4380_8505,Dublin Airport,5393-00010-1,1,4380_7778208_1090103,4380_137 -4380_78063,296,4380_85050,Eyre Square,106014-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78063,297,4380_85057,Eyre Square,105674-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85058,Eyre Square,106025-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78114,297,4380_8506,Dublin Airport,5893-00008-1,1,4380_7778208_1090111,4380_139 -4380_78063,288,4380_85060,Eyre Square,106021-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85061,Eyre Square,106019-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85062,Eyre Square,105675-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85063,Eyre Square,106023-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85064,Eyre Square,106017-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85065,Eyre Square,106020-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85066,Eyre Square,106026-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85067,Eyre Square,106018-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85068,Eyre Square,106024-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85069,Eyre Square,106022-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78114,288,4380_8507,Dublin Airport,5403-00011-1,1,4380_7778208_1090103,4380_137 -4380_78063,296,4380_85070,Eyre Square,105676-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,285,4380_85076,Eyre Square,105691-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85078,Eyre Square,105694-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85079,Eyre Square,105685-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78114,287,4380_8508,Dublin Airport,5413-00012-1,1,4380_7778208_1090103,4380_137 -4380_78063,291,4380_85080,Eyre Square,106027-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85081,Eyre Square,105689-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85082,Eyre Square,105683-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85083,Eyre Square,105686-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85084,Eyre Square,105692-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85085,Eyre Square,105684-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85086,Eyre Square,105690-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85087,Eyre Square,105695-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85088,Eyre Square,106028-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78114,289,4380_8509,Dublin Airport,5373-00014-1,1,4380_7778208_1090103,4380_137 -4380_78063,297,4380_85095,Eyre Square,105706-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85096,Eyre Square,106043-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78063,288,4380_85098,Eyre Square,106045-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85099,Eyre Square,106041-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78113,292,4380_851,Dundalk,50216-00016-1,0,4380_7778208_1000908,4380_11 -4380_78114,290,4380_8510,Dublin Airport,54767-00015-1,1,4380_7778208_1090103,4380_137 -4380_78063,291,4380_85100,Eyre Square,105700-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85101,Eyre Square,106039-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85102,Eyre Square,106049-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85103,Eyre Square,106042-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85104,Eyre Square,106044-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85105,Eyre Square,106050-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85106,Eyre Square,106040-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85107,Eyre Square,106046-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78063,296,4380_85108,Eyre Square,105701-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78114,291,4380_8511,Dublin Airport,5978-00013-1,1,4380_7778208_1090113,4380_141 -4380_78063,285,4380_85114,Eyre Square,105718-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85116,Eyre Square,105711-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85117,Eyre Square,105713-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85118,Eyre Square,106059-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85119,Eyre Square,105709-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78114,292,4380_8512,Dublin Airport,54764-00016-1,1,4380_7778208_1090103,4380_137 -4380_78063,287,4380_85120,Eyre Square,105715-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85121,Eyre Square,105714-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85122,Eyre Square,105719-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85123,Eyre Square,105716-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85124,Eyre Square,105710-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85125,Eyre Square,105712-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85126,Eyre Square,106060-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78114,293,4380_8513,Dublin Airport,54768-00017-1,1,4380_7778208_1090103,4380_137 -4380_78063,297,4380_85133,Eyre Square,105732-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85134,Eyre Square,106071-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78063,288,4380_85136,Eyre Square,106073-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85137,Eyre Square,106063-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85138,Eyre Square,105722-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85139,Eyre Square,106065-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78114,294,4380_8514,Dublin Airport,54765-00018-1,1,4380_7778208_1090103,4380_137 -4380_78063,287,4380_85140,Eyre Square,106069-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85141,Eyre Square,106064-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85142,Eyre Square,106072-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85143,Eyre Square,106070-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85144,Eyre Square,106066-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85145,Eyre Square,106074-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78063,296,4380_85146,Eyre Square,105723-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78114,295,4380_8515,Dublin Airport,54766-00019-1,1,4380_7778208_1090103,4380_137 -4380_78063,285,4380_85152,Eyre Square,105746-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85154,Eyre Square,105740-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85155,Eyre Square,105735-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85156,Eyre Square,106075-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85157,Eyre Square,105742-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85158,Eyre Square,105744-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85159,Eyre Square,105736-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78114,296,4380_8516,Dublin Airport,55198-00021-1,1,4380_7778208_1090113,4380_141 -4380_78063,290,4380_85160,Eyre Square,105747-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85161,Eyre Square,105745-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85162,Eyre Square,105743-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85163,Eyre Square,105741-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85164,Eyre Square,106076-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78063,297,4380_85171,Eyre Square,105756-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85172,Eyre Square,106095-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78063,288,4380_85174,Eyre Square,106097-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85175,Eyre Square,106091-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85176,Eyre Square,105754-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85177,Eyre Square,106087-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85178,Eyre Square,106089-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85179,Eyre Square,106092-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85180,Eyre Square,106096-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85181,Eyre Square,106090-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85182,Eyre Square,106088-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85183,Eyre Square,106098-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78063,296,4380_85184,Eyre Square,105755-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,285,4380_85190,Eyre Square,105768-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85192,Eyre Square,105770-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85193,Eyre Square,105764-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85194,Eyre Square,106101-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85195,Eyre Square,105762-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85196,Eyre Square,105766-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85197,Eyre Square,105765-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85198,Eyre Square,105769-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85199,Eyre Square,105767-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78113,293,4380_852,Dundalk,50214-00017-1,0,4380_7778208_1000908,4380_11 -4380_78063,295,4380_85200,Eyre Square,105763-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85201,Eyre Square,105771-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85202,Eyre Square,106102-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78063,297,4380_85209,Eyre Square,105774-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85210,Eyre Square,106117-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78063,288,4380_85212,Eyre Square,106113-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85213,Eyre Square,106111-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85214,Eyre Square,105785-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85215,Eyre Square,106115-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85216,Eyre Square,106121-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85217,Eyre Square,106112-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85218,Eyre Square,106118-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85219,Eyre Square,106122-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85220,Eyre Square,106116-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85221,Eyre Square,106114-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78063,296,4380_85222,Eyre Square,105786-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,285,4380_85228,Eyre Square,105789-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85230,Eyre Square,105798-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85231,Eyre Square,105796-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85232,Eyre Square,106127-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85233,Eyre Square,105794-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85234,Eyre Square,105792-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85235,Eyre Square,105797-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85236,Eyre Square,105790-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85237,Eyre Square,105793-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85238,Eyre Square,105795-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85239,Eyre Square,105799-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78114,285,4380_8524,Dublin Airport,5458-00009-1,1,4380_7778208_1090104,4380_137 -4380_78063,296,4380_85240,Eyre Square,106128-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78063,297,4380_85247,Eyre Square,105810-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85248,Eyre Square,106145-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78114,286,4380_8525,Dublin Airport,5468-00010-1,1,4380_7778208_1090104,4380_137 -4380_78063,288,4380_85250,Eyre Square,106135-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85251,Eyre Square,106141-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85252,Eyre Square,105808-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85253,Eyre Square,106137-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85254,Eyre Square,106139-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85255,Eyre Square,106142-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85256,Eyre Square,106146-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85257,Eyre Square,106140-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85258,Eyre Square,106138-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85259,Eyre Square,106136-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78114,297,4380_8526,Dublin Airport,5958-00008-1,1,4380_7778208_1090112,4380_139 -4380_78063,296,4380_85260,Eyre Square,105809-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,285,4380_85266,Eyre Square,105817-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85268,Eyre Square,105821-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85269,Eyre Square,105819-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78114,288,4380_8527,Dublin Airport,5478-00011-1,1,4380_7778208_1090104,4380_137 -4380_78063,291,4380_85270,Eyre Square,106155-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85271,Eyre Square,105815-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85272,Eyre Square,105813-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85273,Eyre Square,105820-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85274,Eyre Square,105818-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85275,Eyre Square,105814-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85276,Eyre Square,105816-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85277,Eyre Square,105822-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85278,Eyre Square,106156-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78114,287,4380_8528,Dublin Airport,5488-00012-1,1,4380_7778208_1090104,4380_137 -4380_78063,297,4380_85285,Eyre Square,105828-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85286,Eyre Square,106167-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78063,288,4380_85288,Eyre Square,106159-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85289,Eyre Square,106163-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78114,289,4380_8529,Dublin Airport,5448-00014-1,1,4380_7778208_1090104,4380_137 -4380_78063,291,4380_85290,Eyre Square,105831-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85291,Eyre Square,106165-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85292,Eyre Square,106161-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85293,Eyre Square,106164-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85294,Eyre Square,106168-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85295,Eyre Square,106162-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85296,Eyre Square,106166-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85297,Eyre Square,106160-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78063,296,4380_85298,Eyre Square,105832-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78113,294,4380_853,Dundalk,50212-00018-1,0,4380_7778208_1000908,4380_11 -4380_78114,290,4380_8530,Dublin Airport,54821-00015-1,1,4380_7778208_1090104,4380_137 -4380_78063,285,4380_85304,Eyre Square,105844-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85306,Eyre Square,105842-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85307,Eyre Square,105839-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85308,Eyre Square,106177-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85309,Eyre Square,105850-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78114,291,4380_8531,Dublin Airport,6011-00013-1,1,4380_7778208_1090114,4380_141 -4380_78063,287,4380_85310,Eyre Square,105846-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85311,Eyre Square,105840-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85312,Eyre Square,105845-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85313,Eyre Square,105847-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85314,Eyre Square,105851-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85315,Eyre Square,105843-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85316,Eyre Square,106178-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78114,292,4380_8532,Dublin Airport,54822-00016-1,1,4380_7778208_1090104,4380_137 -4380_78063,297,4380_85323,Eyre Square,105856-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85324,Eyre Square,106187-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78063,288,4380_85326,Eyre Square,106183-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85327,Eyre Square,106193-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85328,Eyre Square,105852-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85329,Eyre Square,106189-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78114,293,4380_8533,Dublin Airport,54823-00017-1,1,4380_7778208_1090104,4380_137 -4380_78063,287,4380_85330,Eyre Square,106191-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85331,Eyre Square,106194-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85332,Eyre Square,106188-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85333,Eyre Square,106192-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85334,Eyre Square,106190-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85335,Eyre Square,106184-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78063,296,4380_85336,Eyre Square,105853-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78114,294,4380_8534,Dublin Airport,54824-00018-1,1,4380_7778208_1090104,4380_137 -4380_78063,285,4380_85342,Eyre Square,105874-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85344,Eyre Square,105867-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85345,Eyre Square,105872-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85346,Eyre Square,106203-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85347,Eyre Square,105876-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85348,Eyre Square,105869-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85349,Eyre Square,105873-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78114,295,4380_8535,Dublin Airport,54825-00019-1,1,4380_7778208_1090104,4380_137 -4380_78063,290,4380_85350,Eyre Square,105875-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85351,Eyre Square,105870-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85352,Eyre Square,105877-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85353,Eyre Square,105868-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85354,Eyre Square,106204-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78114,296,4380_8536,Dublin Airport,55223-00021-1,1,4380_7778208_1090114,4380_141 -4380_78063,297,4380_85361,Eyre Square,105882-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85362,Eyre Square,106213-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78063,288,4380_85364,Eyre Square,106209-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85365,Eyre Square,106207-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85366,Eyre Square,105880-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85367,Eyre Square,106211-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85368,Eyre Square,106215-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85369,Eyre Square,106208-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85370,Eyre Square,106214-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85371,Eyre Square,106216-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85372,Eyre Square,106212-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85373,Eyre Square,106210-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78063,296,4380_85374,Eyre Square,105881-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,285,4380_85380,Eyre Square,105900-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85382,Eyre Square,105893-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85383,Eyre Square,105895-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85384,Eyre Square,106219-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85385,Eyre Square,105902-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85386,Eyre Square,105898-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85387,Eyre Square,105896-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85388,Eyre Square,105901-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85389,Eyre Square,105899-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85390,Eyre Square,105903-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85391,Eyre Square,105894-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85392,Eyre Square,106220-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78063,297,4380_85399,Eyre Square,105908-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78113,295,4380_854,Dundalk,50220-00019-1,0,4380_7778208_1000908,4380_11 -4380_78063,285,4380_85400,Eyre Square,106237-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78063,288,4380_85402,Eyre Square,106233-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85403,Eyre Square,106231-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85404,Eyre Square,105904-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85405,Eyre Square,106239-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85406,Eyre Square,106235-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85407,Eyre Square,106232-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85408,Eyre Square,106238-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85409,Eyre Square,106236-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85410,Eyre Square,106240-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85411,Eyre Square,106234-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78063,296,4380_85412,Eyre Square,105905-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,285,4380_85418,Eyre Square,105926-00009-1,1,4380_7778208_4070301,4380_1316 -4380_78063,288,4380_85420,Eyre Square,105920-00011-1,1,4380_7778208_4070301,4380_1316 -4380_78063,286,4380_85421,Eyre Square,105924-00010-1,1,4380_7778208_4070301,4380_1316 -4380_78063,291,4380_85422,Eyre Square,106251-00013-1,1,4380_7778208_4070302,4380_1317 -4380_78063,289,4380_85423,Eyre Square,105928-00014-1,1,4380_7778208_4070301,4380_1316 -4380_78063,287,4380_85424,Eyre Square,105922-00012-1,1,4380_7778208_4070301,4380_1316 -4380_78063,292,4380_85425,Eyre Square,105925-00016-1,1,4380_7778208_4070301,4380_1316 -4380_78063,290,4380_85426,Eyre Square,105927-00015-1,1,4380_7778208_4070301,4380_1316 -4380_78063,294,4380_85427,Eyre Square,105923-00018-1,1,4380_7778208_4070301,4380_1316 -4380_78063,295,4380_85428,Eyre Square,105929-00019-1,1,4380_7778208_4070301,4380_1316 -4380_78063,293,4380_85429,Eyre Square,105921-00017-1,1,4380_7778208_4070301,4380_1316 -4380_78063,296,4380_85430,Eyre Square,106252-00021-1,1,4380_7778208_4070302,4380_1317 -4380_78063,297,4380_85437,Eyre Square,105932-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85438,Eyre Square,106263-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78114,285,4380_8544,Dublin Airport,5532-00009-1,1,4380_7778208_1090105,4380_137 -4380_78063,288,4380_85440,Eyre Square,106259-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85441,Eyre Square,106257-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85442,Eyre Square,105930-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85443,Eyre Square,106261-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85444,Eyre Square,106255-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85445,Eyre Square,106258-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85446,Eyre Square,106264-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85447,Eyre Square,106256-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85448,Eyre Square,106262-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85449,Eyre Square,106260-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78114,286,4380_8545,Dublin Airport,5540-00010-1,1,4380_7778208_1090105,4380_137 -4380_78063,296,4380_85450,Eyre Square,105931-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,297,4380_85457,Eyre Square,105936-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85458,Eyre Square,106281-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78114,297,4380_8546,Dublin Airport,5988-00008-1,1,4380_7778208_1090113,4380_139 -4380_78063,288,4380_85460,Eyre Square,106277-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85461,Eyre Square,106279-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85462,Eyre Square,105937-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85463,Eyre Square,106275-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85464,Eyre Square,106283-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85465,Eyre Square,106280-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85466,Eyre Square,106282-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85467,Eyre Square,106284-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85468,Eyre Square,106276-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85469,Eyre Square,106278-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78114,288,4380_8547,Dublin Airport,5548-00011-1,1,4380_7778208_1090105,4380_137 -4380_78063,296,4380_85470,Eyre Square,105938-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,297,4380_85477,Eyre Square,105942-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85478,Eyre Square,106301-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78114,287,4380_8548,Dublin Airport,5556-00012-1,1,4380_7778208_1090105,4380_137 -4380_78063,288,4380_85480,Eyre Square,106297-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85481,Eyre Square,106299-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85482,Eyre Square,105943-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85483,Eyre Square,106303-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85484,Eyre Square,106295-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85485,Eyre Square,106300-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85486,Eyre Square,106302-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85487,Eyre Square,106296-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85488,Eyre Square,106304-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85489,Eyre Square,106298-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78114,289,4380_8549,Dublin Airport,5524-00014-1,1,4380_7778208_1090105,4380_137 -4380_78063,296,4380_85490,Eyre Square,105944-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,297,4380_85497,Eyre Square,105948-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85498,Eyre Square,106315-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78113,296,4380_855,Dundalk,50222-00021-1,0,4380_7778208_1000908,4380_17 -4380_78114,290,4380_8550,Dublin Airport,54882-00015-1,1,4380_7778208_1090105,4380_137 -4380_78063,288,4380_85500,Eyre Square,106317-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85501,Eyre Square,106319-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85502,Eyre Square,105949-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85503,Eyre Square,106323-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85504,Eyre Square,106321-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85505,Eyre Square,106320-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85506,Eyre Square,106316-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85507,Eyre Square,106322-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85508,Eyre Square,106324-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85509,Eyre Square,106318-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78114,291,4380_8551,Dublin Airport,6051-00013-1,1,4380_7778208_1090115,4380_141 -4380_78063,296,4380_85510,Eyre Square,105950-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78063,297,4380_85517,Eyre Square,105956-00008-1,1,4380_7778208_4070301,4380_1316 -4380_78063,285,4380_85518,Eyre Square,106335-00009-1,1,4380_7778208_4070302,4380_1317 -4380_78114,292,4380_8552,Dublin Airport,54881-00016-1,1,4380_7778208_1090105,4380_137 -4380_78063,288,4380_85520,Eyre Square,106337-00011-1,1,4380_7778208_4070302,4380_1317 -4380_78063,286,4380_85521,Eyre Square,106339-00010-1,1,4380_7778208_4070302,4380_1317 -4380_78063,291,4380_85522,Eyre Square,105954-00013-1,1,4380_7778208_4070301,4380_1318 -4380_78063,289,4380_85523,Eyre Square,106343-00014-1,1,4380_7778208_4070302,4380_1317 -4380_78063,287,4380_85524,Eyre Square,106341-00012-1,1,4380_7778208_4070302,4380_1317 -4380_78063,292,4380_85525,Eyre Square,106340-00016-1,1,4380_7778208_4070302,4380_1317 -4380_78063,290,4380_85526,Eyre Square,106336-00015-1,1,4380_7778208_4070302,4380_1317 -4380_78063,294,4380_85527,Eyre Square,106342-00018-1,1,4380_7778208_4070302,4380_1317 -4380_78063,295,4380_85528,Eyre Square,106344-00019-1,1,4380_7778208_4070302,4380_1317 -4380_78063,293,4380_85529,Eyre Square,106338-00017-1,1,4380_7778208_4070302,4380_1317 -4380_78114,293,4380_8553,Dublin Airport,54878-00017-1,1,4380_7778208_1090105,4380_137 -4380_78063,296,4380_85530,Eyre Square,105955-00021-1,1,4380_7778208_4070301,4380_1318 -4380_78064,285,4380_85536,Parkmore Ind.,106751-00009-1,0,4380_7778208_4090302,4380_1319 -4380_78064,288,4380_85538,Parkmore Ind.,106743-00011-1,0,4380_7778208_4090302,4380_1319 -4380_78064,286,4380_85539,Parkmore Ind.,106753-00010-1,0,4380_7778208_4090302,4380_1319 -4380_78114,294,4380_8554,Dublin Airport,54879-00018-1,1,4380_7778208_1090105,4380_137 -4380_78064,291,4380_85540,Parkmore Ind.,106749-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_85541,Parkmore Ind.,106745-00014-1,0,4380_7778208_4090302,4380_1319 -4380_78064,287,4380_85542,Parkmore Ind.,106747-00012-1,0,4380_7778208_4090302,4380_1319 -4380_78064,292,4380_85543,Parkmore Ind.,106754-00016-1,0,4380_7778208_4090302,4380_1319 -4380_78064,290,4380_85544,Parkmore Ind.,106752-00015-1,0,4380_7778208_4090302,4380_1319 -4380_78064,294,4380_85545,Parkmore Ind.,106748-00018-1,0,4380_7778208_4090302,4380_1319 -4380_78064,295,4380_85546,Parkmore Ind.,106746-00019-1,0,4380_7778208_4090302,4380_1319 -4380_78064,293,4380_85547,Parkmore Ind.,106744-00017-1,0,4380_7778208_4090302,4380_1319 -4380_78064,296,4380_85548,Parkmore Ind.,106750-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78114,295,4380_8555,Dublin Airport,54880-00019-1,1,4380_7778208_1090105,4380_137 -4380_78064,285,4380_85554,Parkmore Ind.,107499-00009-1,0,4380_7778208_4090304,4380_1319 -4380_78064,288,4380_85555,Parkmore Ind.,107505-00011-1,0,4380_7778208_4090304,4380_1319 -4380_78064,286,4380_85556,Parkmore Ind.,107501-00010-1,0,4380_7778208_4090304,4380_1319 -4380_78064,289,4380_85557,Parkmore Ind.,107497-00014-1,0,4380_7778208_4090304,4380_1319 -4380_78064,287,4380_85558,Parkmore Ind.,107503-00012-1,0,4380_7778208_4090304,4380_1319 -4380_78064,292,4380_85559,Parkmore Ind.,107502-00016-1,0,4380_7778208_4090304,4380_1319 -4380_78114,296,4380_8556,Dublin Airport,55253-00021-1,1,4380_7778208_1090115,4380_141 -4380_78064,290,4380_85560,Parkmore Ind.,107500-00015-1,0,4380_7778208_4090304,4380_1319 -4380_78064,294,4380_85561,Parkmore Ind.,107504-00018-1,0,4380_7778208_4090304,4380_1319 -4380_78064,295,4380_85562,Parkmore Ind.,107498-00019-1,0,4380_7778208_4090304,4380_1319 -4380_78064,293,4380_85563,Parkmore Ind.,107506-00017-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_85569,Parkmore Ind.,106361-00009-1,0,4380_7778208_4090301,4380_1319 -4380_78064,288,4380_85571,Parkmore Ind.,106359-00011-1,0,4380_7778208_4090301,4380_1319 -4380_78064,286,4380_85572,Parkmore Ind.,106365-00010-1,0,4380_7778208_4090301,4380_1319 -4380_78064,291,4380_85573,Parkmore Ind.,106363-00013-1,0,4380_7778208_4090301,4380_1320 -4380_78064,289,4380_85574,Parkmore Ind.,106357-00014-1,0,4380_7778208_4090301,4380_1319 -4380_78064,287,4380_85575,Parkmore Ind.,106367-00012-1,0,4380_7778208_4090301,4380_1319 -4380_78064,292,4380_85576,Parkmore Ind.,106366-00016-1,0,4380_7778208_4090301,4380_1319 -4380_78064,290,4380_85577,Parkmore Ind.,106362-00015-1,0,4380_7778208_4090301,4380_1319 -4380_78064,294,4380_85578,Parkmore Ind.,106368-00018-1,0,4380_7778208_4090301,4380_1319 -4380_78064,295,4380_85579,Parkmore Ind.,106358-00019-1,0,4380_7778208_4090301,4380_1319 -4380_78064,293,4380_85580,Parkmore Ind.,106360-00017-1,0,4380_7778208_4090301,4380_1319 -4380_78064,296,4380_85581,Parkmore Ind.,106364-00021-1,0,4380_7778208_4090301,4380_1320 -4380_78064,285,4380_85587,Parkmore Ind.,107834-00009-1,0,4380_7778208_4090305,4380_1319 -4380_78064,288,4380_85588,Parkmore Ind.,107832-00011-1,0,4380_7778208_4090305,4380_1319 -4380_78064,286,4380_85589,Parkmore Ind.,107828-00010-1,0,4380_7778208_4090305,4380_1319 -4380_78064,289,4380_85590,Parkmore Ind.,107830-00014-1,0,4380_7778208_4090305,4380_1319 -4380_78064,287,4380_85591,Parkmore Ind.,107836-00012-1,0,4380_7778208_4090305,4380_1319 -4380_78064,292,4380_85592,Parkmore Ind.,107829-00016-1,0,4380_7778208_4090305,4380_1319 -4380_78064,290,4380_85593,Parkmore Ind.,107835-00015-1,0,4380_7778208_4090305,4380_1319 -4380_78064,294,4380_85594,Parkmore Ind.,107837-00018-1,0,4380_7778208_4090305,4380_1319 -4380_78064,295,4380_85595,Parkmore Ind.,107831-00019-1,0,4380_7778208_4090305,4380_1319 -4380_78064,293,4380_85596,Parkmore Ind.,107833-00017-1,0,4380_7778208_4090305,4380_1319 -4380_78064,291,4380_85598,Parkmore Ind.,107141-00013-1,0,4380_7778208_4090303,4380_1319 -4380_78064,296,4380_85599,Parkmore Ind.,107142-00021-1,0,4380_7778208_4090303,4380_1319 -4380_78064,297,4380_85606,Parkmore Ind.,106379-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_85607,Parkmore Ind.,106767-00009-1,0,4380_7778208_4090302,4380_1320 -4380_78064,288,4380_85608,Parkmore Ind.,106769-00011-1,0,4380_7778208_4090302,4380_1320 -4380_78064,286,4380_85609,Parkmore Ind.,106771-00010-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_85610,Parkmore Ind.,106773-00014-1,0,4380_7778208_4090302,4380_1320 -4380_78064,287,4380_85611,Parkmore Ind.,106775-00012-1,0,4380_7778208_4090302,4380_1320 -4380_78064,292,4380_85612,Parkmore Ind.,106772-00016-1,0,4380_7778208_4090302,4380_1320 -4380_78064,290,4380_85613,Parkmore Ind.,106768-00015-1,0,4380_7778208_4090302,4380_1320 -4380_78064,294,4380_85614,Parkmore Ind.,106776-00018-1,0,4380_7778208_4090302,4380_1320 -4380_78064,295,4380_85615,Parkmore Ind.,106774-00019-1,0,4380_7778208_4090302,4380_1320 -4380_78064,293,4380_85616,Parkmore Ind.,106770-00017-1,0,4380_7778208_4090302,4380_1320 -4380_78064,285,4380_85622,Parkmore Ind.,107145-00009-1,0,4380_7778208_4090303,4380_1319 -4380_78064,288,4380_85624,Parkmore Ind.,107147-00011-1,0,4380_7778208_4090303,4380_1319 -4380_78064,286,4380_85625,Parkmore Ind.,107143-00010-1,0,4380_7778208_4090303,4380_1319 -4380_78064,291,4380_85626,Parkmore Ind.,106777-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_85627,Parkmore Ind.,107149-00014-1,0,4380_7778208_4090303,4380_1319 -4380_78064,287,4380_85628,Parkmore Ind.,107151-00012-1,0,4380_7778208_4090303,4380_1319 -4380_78064,292,4380_85629,Parkmore Ind.,107144-00016-1,0,4380_7778208_4090303,4380_1319 -4380_78064,290,4380_85630,Parkmore Ind.,107146-00015-1,0,4380_7778208_4090303,4380_1319 -4380_78064,294,4380_85631,Parkmore Ind.,107152-00018-1,0,4380_7778208_4090303,4380_1319 -4380_78064,295,4380_85632,Parkmore Ind.,107150-00019-1,0,4380_7778208_4090303,4380_1319 -4380_78064,293,4380_85633,Parkmore Ind.,107148-00017-1,0,4380_7778208_4090303,4380_1319 -4380_78064,296,4380_85634,Parkmore Ind.,106778-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78114,285,4380_8564,Dublin Airport,5237-00009-1,1,4380_7778208_1090101,4380_137 -4380_78064,285,4380_85640,Parkmore Ind.,107521-00009-1,0,4380_7778208_4090304,4380_1319 -4380_78064,288,4380_85641,Parkmore Ind.,107525-00011-1,0,4380_7778208_4090304,4380_1319 -4380_78064,286,4380_85642,Parkmore Ind.,107517-00010-1,0,4380_7778208_4090304,4380_1319 -4380_78064,289,4380_85643,Parkmore Ind.,107519-00014-1,0,4380_7778208_4090304,4380_1319 -4380_78064,287,4380_85644,Parkmore Ind.,107523-00012-1,0,4380_7778208_4090304,4380_1319 -4380_78064,292,4380_85645,Parkmore Ind.,107518-00016-1,0,4380_7778208_4090304,4380_1319 -4380_78064,290,4380_85646,Parkmore Ind.,107522-00015-1,0,4380_7778208_4090304,4380_1319 -4380_78064,294,4380_85647,Parkmore Ind.,107524-00018-1,0,4380_7778208_4090304,4380_1319 -4380_78064,295,4380_85648,Parkmore Ind.,107520-00019-1,0,4380_7778208_4090304,4380_1319 -4380_78064,293,4380_85649,Parkmore Ind.,107526-00017-1,0,4380_7778208_4090304,4380_1319 -4380_78114,286,4380_8565,Dublin Airport,5247-00010-1,1,4380_7778208_1090101,4380_137 -4380_78064,297,4380_85656,Parkmore Ind.,106779-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_85657,Parkmore Ind.,108344-00009-1,0,4380_7778208_4090307,4380_1320 -4380_78064,288,4380_85659,Parkmore Ind.,108342-00011-1,0,4380_7778208_4090307,4380_1320 -4380_78114,297,4380_8566,Dublin Airport,5810-00008-1,1,4380_7778208_1090109,4380_139 -4380_78064,286,4380_85660,Parkmore Ind.,108340-00010-1,0,4380_7778208_4090307,4380_1320 -4380_78064,291,4380_85661,Parkmore Ind.,106383-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_85662,Parkmore Ind.,108338-00014-1,0,4380_7778208_4090307,4380_1320 -4380_78064,287,4380_85663,Parkmore Ind.,108336-00012-1,0,4380_7778208_4090307,4380_1320 -4380_78064,292,4380_85664,Parkmore Ind.,108341-00016-1,0,4380_7778208_4090307,4380_1320 -4380_78064,290,4380_85665,Parkmore Ind.,108345-00015-1,0,4380_7778208_4090307,4380_1320 -4380_78064,294,4380_85666,Parkmore Ind.,108337-00018-1,0,4380_7778208_4090307,4380_1320 -4380_78064,295,4380_85667,Parkmore Ind.,108339-00019-1,0,4380_7778208_4090307,4380_1320 -4380_78064,293,4380_85668,Parkmore Ind.,108343-00017-1,0,4380_7778208_4090307,4380_1320 -4380_78064,296,4380_85669,Parkmore Ind.,106384-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,288,4380_8567,Dublin Airport,5257-00011-1,1,4380_7778208_1090101,4380_137 -4380_78064,285,4380_85675,Parkmore Ind.,106391-00009-1,0,4380_7778208_4090301,4380_1319 -4380_78064,288,4380_85676,Parkmore Ind.,106385-00011-1,0,4380_7778208_4090301,4380_1319 -4380_78064,286,4380_85677,Parkmore Ind.,106387-00010-1,0,4380_7778208_4090301,4380_1319 -4380_78064,289,4380_85678,Parkmore Ind.,106393-00014-1,0,4380_7778208_4090301,4380_1319 -4380_78064,287,4380_85679,Parkmore Ind.,106389-00012-1,0,4380_7778208_4090301,4380_1319 -4380_78114,287,4380_8568,Dublin Airport,5267-00012-1,1,4380_7778208_1090101,4380_137 -4380_78064,292,4380_85680,Parkmore Ind.,106388-00016-1,0,4380_7778208_4090301,4380_1319 -4380_78064,290,4380_85681,Parkmore Ind.,106392-00015-1,0,4380_7778208_4090301,4380_1319 -4380_78064,294,4380_85682,Parkmore Ind.,106390-00018-1,0,4380_7778208_4090301,4380_1319 -4380_78064,295,4380_85683,Parkmore Ind.,106394-00019-1,0,4380_7778208_4090301,4380_1319 -4380_78064,293,4380_85684,Parkmore Ind.,106386-00017-1,0,4380_7778208_4090301,4380_1319 -4380_78114,289,4380_8569,Dublin Airport,5227-00014-1,1,4380_7778208_1090101,4380_137 -4380_78064,285,4380_85690,Parkmore Ind.,107854-00009-1,0,4380_7778208_4090305,4380_1319 -4380_78064,288,4380_85692,Parkmore Ind.,107848-00011-1,0,4380_7778208_4090305,4380_1319 -4380_78064,286,4380_85693,Parkmore Ind.,107852-00010-1,0,4380_7778208_4090305,4380_1319 -4380_78064,291,4380_85694,Parkmore Ind.,107163-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_85695,Parkmore Ind.,107856-00014-1,0,4380_7778208_4090305,4380_1319 -4380_78064,287,4380_85696,Parkmore Ind.,107850-00012-1,0,4380_7778208_4090305,4380_1319 -4380_78064,292,4380_85697,Parkmore Ind.,107853-00016-1,0,4380_7778208_4090305,4380_1319 -4380_78064,290,4380_85698,Parkmore Ind.,107855-00015-1,0,4380_7778208_4090305,4380_1319 -4380_78064,294,4380_85699,Parkmore Ind.,107851-00018-1,0,4380_7778208_4090305,4380_1319 -4380_78114,290,4380_8570,Dublin Airport,54666-00015-1,1,4380_7778208_1090101,4380_137 -4380_78064,295,4380_85700,Parkmore Ind.,107857-00019-1,0,4380_7778208_4090305,4380_1319 -4380_78064,293,4380_85701,Parkmore Ind.,107849-00017-1,0,4380_7778208_4090305,4380_1319 -4380_78064,296,4380_85702,Parkmore Ind.,107164-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78064,297,4380_85709,Parkmore Ind.,106395-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78114,291,4380_8571,Dublin Airport,5885-00013-1,1,4380_7778208_1090111,4380_141 -4380_78064,285,4380_85710,Parkmore Ind.,108116-00009-1,0,4380_7778208_4090306,4380_1320 -4380_78064,288,4380_85711,Parkmore Ind.,108114-00011-1,0,4380_7778208_4090306,4380_1320 -4380_78064,286,4380_85712,Parkmore Ind.,108120-00010-1,0,4380_7778208_4090306,4380_1320 -4380_78064,289,4380_85713,Parkmore Ind.,108112-00014-1,0,4380_7778208_4090306,4380_1320 -4380_78064,287,4380_85714,Parkmore Ind.,108118-00012-1,0,4380_7778208_4090306,4380_1320 -4380_78064,292,4380_85715,Parkmore Ind.,108121-00016-1,0,4380_7778208_4090306,4380_1320 -4380_78064,290,4380_85716,Parkmore Ind.,108117-00015-1,0,4380_7778208_4090306,4380_1320 -4380_78064,294,4380_85717,Parkmore Ind.,108119-00018-1,0,4380_7778208_4090306,4380_1320 -4380_78064,295,4380_85718,Parkmore Ind.,108113-00019-1,0,4380_7778208_4090306,4380_1320 -4380_78064,293,4380_85719,Parkmore Ind.,108115-00017-1,0,4380_7778208_4090306,4380_1320 -4380_78114,292,4380_8572,Dublin Airport,54668-00016-1,1,4380_7778208_1090101,4380_137 -4380_78064,285,4380_85725,Parkmore Ind.,108552-00009-1,0,4380_7778208_4090308,4380_1319 -4380_78064,288,4380_85727,Parkmore Ind.,108550-00011-1,0,4380_7778208_4090308,4380_1319 -4380_78064,286,4380_85728,Parkmore Ind.,108546-00010-1,0,4380_7778208_4090308,4380_1319 -4380_78064,291,4380_85729,Parkmore Ind.,106793-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78114,293,4380_8573,Dublin Airport,54670-00017-1,1,4380_7778208_1090101,4380_137 -4380_78064,289,4380_85730,Parkmore Ind.,108548-00014-1,0,4380_7778208_4090308,4380_1319 -4380_78064,287,4380_85731,Parkmore Ind.,108554-00012-1,0,4380_7778208_4090308,4380_1319 -4380_78064,292,4380_85732,Parkmore Ind.,108547-00016-1,0,4380_7778208_4090308,4380_1319 -4380_78064,290,4380_85733,Parkmore Ind.,108553-00015-1,0,4380_7778208_4090308,4380_1319 -4380_78064,294,4380_85734,Parkmore Ind.,108555-00018-1,0,4380_7778208_4090308,4380_1319 -4380_78064,295,4380_85735,Parkmore Ind.,108549-00019-1,0,4380_7778208_4090308,4380_1319 -4380_78064,293,4380_85736,Parkmore Ind.,108551-00017-1,0,4380_7778208_4090308,4380_1319 -4380_78064,296,4380_85737,Parkmore Ind.,106794-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78114,294,4380_8574,Dublin Airport,54667-00018-1,1,4380_7778208_1090101,4380_137 -4380_78064,285,4380_85743,Parkmore Ind.,106795-00009-1,0,4380_7778208_4090302,4380_1319 -4380_78064,288,4380_85744,Parkmore Ind.,106799-00011-1,0,4380_7778208_4090302,4380_1319 -4380_78064,286,4380_85745,Parkmore Ind.,106803-00010-1,0,4380_7778208_4090302,4380_1319 -4380_78064,289,4380_85746,Parkmore Ind.,106797-00014-1,0,4380_7778208_4090302,4380_1319 -4380_78064,287,4380_85747,Parkmore Ind.,106801-00012-1,0,4380_7778208_4090302,4380_1319 -4380_78064,292,4380_85748,Parkmore Ind.,106804-00016-1,0,4380_7778208_4090302,4380_1319 -4380_78064,290,4380_85749,Parkmore Ind.,106796-00015-1,0,4380_7778208_4090302,4380_1319 -4380_78114,295,4380_8575,Dublin Airport,54669-00019-1,1,4380_7778208_1090101,4380_137 -4380_78064,294,4380_85750,Parkmore Ind.,106802-00018-1,0,4380_7778208_4090302,4380_1319 -4380_78064,295,4380_85751,Parkmore Ind.,106798-00019-1,0,4380_7778208_4090302,4380_1319 -4380_78064,293,4380_85752,Parkmore Ind.,106800-00017-1,0,4380_7778208_4090302,4380_1319 -4380_78064,297,4380_85759,Parkmore Ind.,106805-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78114,296,4380_8576,Dublin Airport,55135-00021-1,1,4380_7778208_1090111,4380_141 -4380_78064,285,4380_85760,Parkmore Ind.,107177-00009-1,0,4380_7778208_4090303,4380_1320 -4380_78064,288,4380_85762,Parkmore Ind.,107169-00011-1,0,4380_7778208_4090303,4380_1320 -4380_78064,286,4380_85763,Parkmore Ind.,107173-00010-1,0,4380_7778208_4090303,4380_1320 -4380_78064,291,4380_85764,Parkmore Ind.,106409-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_85765,Parkmore Ind.,107171-00014-1,0,4380_7778208_4090303,4380_1320 -4380_78064,287,4380_85766,Parkmore Ind.,107175-00012-1,0,4380_7778208_4090303,4380_1320 -4380_78064,292,4380_85767,Parkmore Ind.,107174-00016-1,0,4380_7778208_4090303,4380_1320 -4380_78064,290,4380_85768,Parkmore Ind.,107178-00015-1,0,4380_7778208_4090303,4380_1320 -4380_78064,294,4380_85769,Parkmore Ind.,107176-00018-1,0,4380_7778208_4090303,4380_1320 -4380_78064,295,4380_85770,Parkmore Ind.,107172-00019-1,0,4380_7778208_4090303,4380_1320 -4380_78064,293,4380_85771,Parkmore Ind.,107170-00017-1,0,4380_7778208_4090303,4380_1320 -4380_78064,296,4380_85772,Parkmore Ind.,106410-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78064,285,4380_85778,Parkmore Ind.,107543-00009-1,0,4380_7778208_4090304,4380_1319 -4380_78064,288,4380_85779,Parkmore Ind.,107541-00011-1,0,4380_7778208_4090304,4380_1319 -4380_78064,286,4380_85780,Parkmore Ind.,107545-00010-1,0,4380_7778208_4090304,4380_1319 -4380_78064,289,4380_85781,Parkmore Ind.,107537-00014-1,0,4380_7778208_4090304,4380_1319 -4380_78064,287,4380_85782,Parkmore Ind.,107539-00012-1,0,4380_7778208_4090304,4380_1319 -4380_78064,292,4380_85783,Parkmore Ind.,107546-00016-1,0,4380_7778208_4090304,4380_1319 -4380_78064,290,4380_85784,Parkmore Ind.,107544-00015-1,0,4380_7778208_4090304,4380_1319 -4380_78064,294,4380_85785,Parkmore Ind.,107540-00018-1,0,4380_7778208_4090304,4380_1319 -4380_78064,295,4380_85786,Parkmore Ind.,107538-00019-1,0,4380_7778208_4090304,4380_1319 -4380_78064,293,4380_85787,Parkmore Ind.,107542-00017-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_85793,Parkmore Ind.,108356-00009-1,0,4380_7778208_4090307,4380_1319 -4380_78064,288,4380_85795,Parkmore Ind.,108360-00011-1,0,4380_7778208_4090307,4380_1319 -4380_78064,286,4380_85796,Parkmore Ind.,108362-00010-1,0,4380_7778208_4090307,4380_1319 -4380_78064,291,4380_85797,Parkmore Ind.,107179-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_85798,Parkmore Ind.,108358-00014-1,0,4380_7778208_4090307,4380_1319 -4380_78064,287,4380_85799,Parkmore Ind.,108364-00012-1,0,4380_7778208_4090307,4380_1319 -4380_78064,292,4380_85800,Parkmore Ind.,108363-00016-1,0,4380_7778208_4090307,4380_1319 -4380_78064,290,4380_85801,Parkmore Ind.,108357-00015-1,0,4380_7778208_4090307,4380_1319 -4380_78064,294,4380_85802,Parkmore Ind.,108365-00018-1,0,4380_7778208_4090307,4380_1319 -4380_78064,295,4380_85803,Parkmore Ind.,108359-00019-1,0,4380_7778208_4090307,4380_1319 -4380_78064,293,4380_85804,Parkmore Ind.,108361-00017-1,0,4380_7778208_4090307,4380_1319 -4380_78064,296,4380_85805,Parkmore Ind.,107180-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78064,297,4380_85812,Parkmore Ind.,106421-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_85813,Parkmore Ind.,106422-00009-1,0,4380_7778208_4090301,4380_1320 -4380_78064,288,4380_85814,Parkmore Ind.,106419-00011-1,0,4380_7778208_4090301,4380_1320 -4380_78064,286,4380_85815,Parkmore Ind.,106411-00010-1,0,4380_7778208_4090301,4380_1320 -4380_78064,289,4380_85816,Parkmore Ind.,106415-00014-1,0,4380_7778208_4090301,4380_1320 -4380_78064,287,4380_85817,Parkmore Ind.,106417-00012-1,0,4380_7778208_4090301,4380_1320 -4380_78064,292,4380_85818,Parkmore Ind.,106412-00016-1,0,4380_7778208_4090301,4380_1320 -4380_78064,290,4380_85819,Parkmore Ind.,106423-00015-1,0,4380_7778208_4090301,4380_1320 -4380_78064,294,4380_85820,Parkmore Ind.,106418-00018-1,0,4380_7778208_4090301,4380_1320 -4380_78064,295,4380_85821,Parkmore Ind.,106416-00019-1,0,4380_7778208_4090301,4380_1320 -4380_78064,293,4380_85822,Parkmore Ind.,106420-00017-1,0,4380_7778208_4090301,4380_1320 -4380_78064,285,4380_85828,Parkmore Ind.,107868-00009-1,0,4380_7778208_4090305,4380_1319 -4380_78064,288,4380_85830,Parkmore Ind.,107872-00011-1,0,4380_7778208_4090305,4380_1319 -4380_78064,286,4380_85831,Parkmore Ind.,107876-00010-1,0,4380_7778208_4090305,4380_1319 -4380_78064,291,4380_85832,Parkmore Ind.,106819-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_85833,Parkmore Ind.,107874-00014-1,0,4380_7778208_4090305,4380_1319 -4380_78064,287,4380_85834,Parkmore Ind.,107870-00012-1,0,4380_7778208_4090305,4380_1319 -4380_78064,292,4380_85835,Parkmore Ind.,107877-00016-1,0,4380_7778208_4090305,4380_1319 -4380_78064,290,4380_85836,Parkmore Ind.,107869-00015-1,0,4380_7778208_4090305,4380_1319 -4380_78064,294,4380_85837,Parkmore Ind.,107871-00018-1,0,4380_7778208_4090305,4380_1319 -4380_78064,295,4380_85838,Parkmore Ind.,107875-00019-1,0,4380_7778208_4090305,4380_1319 -4380_78064,293,4380_85839,Parkmore Ind.,107873-00017-1,0,4380_7778208_4090305,4380_1319 -4380_78114,285,4380_8584,Dublin Airport,5313-00009-1,1,4380_7778208_1090102,4380_137 -4380_78064,296,4380_85840,Parkmore Ind.,106820-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78064,285,4380_85846,Parkmore Ind.,108138-00009-1,0,4380_7778208_4090306,4380_1319 -4380_78064,288,4380_85847,Parkmore Ind.,108136-00011-1,0,4380_7778208_4090306,4380_1319 -4380_78064,286,4380_85848,Parkmore Ind.,108134-00010-1,0,4380_7778208_4090306,4380_1319 -4380_78064,289,4380_85849,Parkmore Ind.,108140-00014-1,0,4380_7778208_4090306,4380_1319 -4380_78114,286,4380_8585,Dublin Airport,5323-00010-1,1,4380_7778208_1090102,4380_137 -4380_78064,287,4380_85850,Parkmore Ind.,108132-00012-1,0,4380_7778208_4090306,4380_1319 -4380_78064,292,4380_85851,Parkmore Ind.,108135-00016-1,0,4380_7778208_4090306,4380_1319 -4380_78064,290,4380_85852,Parkmore Ind.,108139-00015-1,0,4380_7778208_4090306,4380_1319 -4380_78064,294,4380_85853,Parkmore Ind.,108133-00018-1,0,4380_7778208_4090306,4380_1319 -4380_78064,295,4380_85854,Parkmore Ind.,108141-00019-1,0,4380_7778208_4090306,4380_1319 -4380_78064,293,4380_85855,Parkmore Ind.,108137-00017-1,0,4380_7778208_4090306,4380_1319 -4380_78114,297,4380_8586,Dublin Airport,5865-00008-1,1,4380_7778208_1090110,4380_139 -4380_78064,297,4380_85862,Parkmore Ind.,106821-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_85863,Parkmore Ind.,108568-00009-1,0,4380_7778208_4090308,4380_1320 -4380_78064,288,4380_85865,Parkmore Ind.,108574-00011-1,0,4380_7778208_4090308,4380_1320 -4380_78064,286,4380_85866,Parkmore Ind.,108566-00010-1,0,4380_7778208_4090308,4380_1320 -4380_78064,291,4380_85867,Parkmore Ind.,106428-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_85868,Parkmore Ind.,108570-00014-1,0,4380_7778208_4090308,4380_1320 -4380_78064,287,4380_85869,Parkmore Ind.,108572-00012-1,0,4380_7778208_4090308,4380_1320 -4380_78114,288,4380_8587,Dublin Airport,5333-00011-1,1,4380_7778208_1090102,4380_137 -4380_78064,292,4380_85870,Parkmore Ind.,108567-00016-1,0,4380_7778208_4090308,4380_1320 -4380_78064,290,4380_85871,Parkmore Ind.,108569-00015-1,0,4380_7778208_4090308,4380_1320 -4380_78064,294,4380_85872,Parkmore Ind.,108573-00018-1,0,4380_7778208_4090308,4380_1320 -4380_78064,295,4380_85873,Parkmore Ind.,108571-00019-1,0,4380_7778208_4090308,4380_1320 -4380_78064,293,4380_85874,Parkmore Ind.,108575-00017-1,0,4380_7778208_4090308,4380_1320 -4380_78064,296,4380_85875,Parkmore Ind.,106429-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,287,4380_8588,Dublin Airport,5343-00012-1,1,4380_7778208_1090102,4380_137 -4380_78064,285,4380_85881,Parkmore Ind.,106830-00009-1,0,4380_7778208_4090302,4380_1319 -4380_78064,288,4380_85882,Parkmore Ind.,106832-00011-1,0,4380_7778208_4090302,4380_1319 -4380_78064,286,4380_85883,Parkmore Ind.,106824-00010-1,0,4380_7778208_4090302,4380_1319 -4380_78064,289,4380_85884,Parkmore Ind.,106822-00014-1,0,4380_7778208_4090302,4380_1319 -4380_78064,287,4380_85885,Parkmore Ind.,106828-00012-1,0,4380_7778208_4090302,4380_1319 -4380_78064,292,4380_85886,Parkmore Ind.,106825-00016-1,0,4380_7778208_4090302,4380_1319 -4380_78064,290,4380_85887,Parkmore Ind.,106831-00015-1,0,4380_7778208_4090302,4380_1319 -4380_78064,294,4380_85888,Parkmore Ind.,106829-00018-1,0,4380_7778208_4090302,4380_1319 -4380_78064,295,4380_85889,Parkmore Ind.,106823-00019-1,0,4380_7778208_4090302,4380_1319 -4380_78114,289,4380_8589,Dublin Airport,5303-00014-1,1,4380_7778208_1090102,4380_137 -4380_78064,293,4380_85890,Parkmore Ind.,106833-00017-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_85896,Parkmore Ind.,107193-00009-1,0,4380_7778208_4090303,4380_1319 -4380_78064,288,4380_85898,Parkmore Ind.,107203-00011-1,0,4380_7778208_4090303,4380_1319 -4380_78064,286,4380_85899,Parkmore Ind.,107201-00010-1,0,4380_7778208_4090303,4380_1319 -4380_78114,290,4380_8590,Dublin Airport,54725-00015-1,1,4380_7778208_1090102,4380_137 -4380_78064,291,4380_85900,Parkmore Ind.,107197-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_85901,Parkmore Ind.,107195-00014-1,0,4380_7778208_4090303,4380_1319 -4380_78064,287,4380_85902,Parkmore Ind.,107199-00012-1,0,4380_7778208_4090303,4380_1319 -4380_78064,292,4380_85903,Parkmore Ind.,107202-00016-1,0,4380_7778208_4090303,4380_1319 -4380_78064,290,4380_85904,Parkmore Ind.,107194-00015-1,0,4380_7778208_4090303,4380_1319 -4380_78064,294,4380_85905,Parkmore Ind.,107200-00018-1,0,4380_7778208_4090303,4380_1319 -4380_78064,295,4380_85906,Parkmore Ind.,107196-00019-1,0,4380_7778208_4090303,4380_1319 -4380_78064,293,4380_85907,Parkmore Ind.,107204-00017-1,0,4380_7778208_4090303,4380_1319 -4380_78064,296,4380_85908,Parkmore Ind.,107198-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78114,291,4380_8591,Dublin Airport,5950-00013-1,1,4380_7778208_1090112,4380_141 -4380_78064,297,4380_85915,Parkmore Ind.,106439-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_85916,Parkmore Ind.,107559-00009-1,0,4380_7778208_4090304,4380_1320 -4380_78064,288,4380_85917,Parkmore Ind.,107563-00011-1,0,4380_7778208_4090304,4380_1320 -4380_78064,286,4380_85918,Parkmore Ind.,107557-00010-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_85919,Parkmore Ind.,107561-00014-1,0,4380_7778208_4090304,4380_1320 -4380_78114,292,4380_8592,Dublin Airport,54723-00016-1,1,4380_7778208_1090102,4380_137 -4380_78064,287,4380_85920,Parkmore Ind.,107565-00012-1,0,4380_7778208_4090304,4380_1320 -4380_78064,292,4380_85921,Parkmore Ind.,107558-00016-1,0,4380_7778208_4090304,4380_1320 -4380_78064,290,4380_85922,Parkmore Ind.,107560-00015-1,0,4380_7778208_4090304,4380_1320 -4380_78064,294,4380_85923,Parkmore Ind.,107566-00018-1,0,4380_7778208_4090304,4380_1320 -4380_78064,295,4380_85924,Parkmore Ind.,107562-00019-1,0,4380_7778208_4090304,4380_1320 -4380_78064,293,4380_85925,Parkmore Ind.,107564-00017-1,0,4380_7778208_4090304,4380_1320 -4380_78114,293,4380_8593,Dublin Airport,54724-00017-1,1,4380_7778208_1090102,4380_137 -4380_78064,285,4380_85931,Parkmore Ind.,106446-00009-1,0,4380_7778208_4090301,4380_1319 -4380_78064,288,4380_85933,Parkmore Ind.,106444-00011-1,0,4380_7778208_4090301,4380_1319 -4380_78064,286,4380_85934,Parkmore Ind.,106448-00010-1,0,4380_7778208_4090301,4380_1319 -4380_78064,291,4380_85935,Parkmore Ind.,106835-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_85936,Parkmore Ind.,106440-00014-1,0,4380_7778208_4090301,4380_1319 -4380_78064,287,4380_85937,Parkmore Ind.,106442-00012-1,0,4380_7778208_4090301,4380_1319 -4380_78064,292,4380_85938,Parkmore Ind.,106449-00016-1,0,4380_7778208_4090301,4380_1319 -4380_78064,290,4380_85939,Parkmore Ind.,106447-00015-1,0,4380_7778208_4090301,4380_1319 -4380_78114,294,4380_8594,Dublin Airport,54726-00018-1,1,4380_7778208_1090102,4380_137 -4380_78064,294,4380_85940,Parkmore Ind.,106443-00018-1,0,4380_7778208_4090301,4380_1319 -4380_78064,295,4380_85941,Parkmore Ind.,106441-00019-1,0,4380_7778208_4090301,4380_1319 -4380_78064,293,4380_85942,Parkmore Ind.,106445-00017-1,0,4380_7778208_4090301,4380_1319 -4380_78064,296,4380_85943,Parkmore Ind.,106836-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78064,285,4380_85949,Parkmore Ind.,107896-00009-1,0,4380_7778208_4090305,4380_1319 -4380_78114,295,4380_8595,Dublin Airport,54722-00019-1,1,4380_7778208_1090102,4380_137 -4380_78064,288,4380_85950,Parkmore Ind.,107888-00011-1,0,4380_7778208_4090305,4380_1319 -4380_78064,286,4380_85951,Parkmore Ind.,107894-00010-1,0,4380_7778208_4090305,4380_1319 -4380_78064,289,4380_85952,Parkmore Ind.,107890-00014-1,0,4380_7778208_4090305,4380_1319 -4380_78064,287,4380_85953,Parkmore Ind.,107892-00012-1,0,4380_7778208_4090305,4380_1319 -4380_78064,292,4380_85954,Parkmore Ind.,107895-00016-1,0,4380_7778208_4090305,4380_1319 -4380_78064,290,4380_85955,Parkmore Ind.,107897-00015-1,0,4380_7778208_4090305,4380_1319 -4380_78064,294,4380_85956,Parkmore Ind.,107893-00018-1,0,4380_7778208_4090305,4380_1319 -4380_78064,295,4380_85957,Parkmore Ind.,107891-00019-1,0,4380_7778208_4090305,4380_1319 -4380_78064,293,4380_85958,Parkmore Ind.,107889-00017-1,0,4380_7778208_4090305,4380_1319 -4380_78114,296,4380_8596,Dublin Airport,55175-00021-1,1,4380_7778208_1090112,4380_141 -4380_78064,297,4380_85965,Parkmore Ind.,106847-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_85966,Parkmore Ind.,108154-00009-1,0,4380_7778208_4090306,4380_1320 -4380_78064,288,4380_85968,Parkmore Ind.,108158-00011-1,0,4380_7778208_4090306,4380_1320 -4380_78064,286,4380_85969,Parkmore Ind.,108156-00010-1,0,4380_7778208_4090306,4380_1320 -4380_78064,291,4380_85970,Parkmore Ind.,106450-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_85971,Parkmore Ind.,108152-00014-1,0,4380_7778208_4090306,4380_1320 -4380_78064,287,4380_85972,Parkmore Ind.,108160-00012-1,0,4380_7778208_4090306,4380_1320 -4380_78064,292,4380_85973,Parkmore Ind.,108157-00016-1,0,4380_7778208_4090306,4380_1320 -4380_78064,290,4380_85974,Parkmore Ind.,108155-00015-1,0,4380_7778208_4090306,4380_1320 -4380_78064,294,4380_85975,Parkmore Ind.,108161-00018-1,0,4380_7778208_4090306,4380_1320 -4380_78064,295,4380_85976,Parkmore Ind.,108153-00019-1,0,4380_7778208_4090306,4380_1320 -4380_78064,293,4380_85977,Parkmore Ind.,108159-00017-1,0,4380_7778208_4090306,4380_1320 -4380_78064,296,4380_85978,Parkmore Ind.,106451-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78064,285,4380_85984,Parkmore Ind.,108586-00009-1,0,4380_7778208_4090308,4380_1319 -4380_78064,288,4380_85986,Parkmore Ind.,108590-00011-1,0,4380_7778208_4090308,4380_1319 -4380_78064,286,4380_85987,Parkmore Ind.,108592-00010-1,0,4380_7778208_4090308,4380_1319 -4380_78064,291,4380_85988,Parkmore Ind.,107579-00013-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_85989,Parkmore Ind.,108594-00014-1,0,4380_7778208_4090308,4380_1319 -4380_78064,287,4380_85990,Parkmore Ind.,108588-00012-1,0,4380_7778208_4090308,4380_1319 -4380_78064,292,4380_85991,Parkmore Ind.,108593-00016-1,0,4380_7778208_4090308,4380_1319 -4380_78064,290,4380_85992,Parkmore Ind.,108587-00015-1,0,4380_7778208_4090308,4380_1319 -4380_78064,294,4380_85993,Parkmore Ind.,108589-00018-1,0,4380_7778208_4090308,4380_1319 -4380_78064,295,4380_85994,Parkmore Ind.,108595-00019-1,0,4380_7778208_4090308,4380_1319 -4380_78064,293,4380_85995,Parkmore Ind.,108591-00017-1,0,4380_7778208_4090308,4380_1319 -4380_78064,296,4380_85996,Parkmore Ind.,107580-00021-1,0,4380_7778208_4090304,4380_1320 -4380_78064,297,4380_85998,Parkmore Ind.,107217-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78064,285,4380_86004,Parkmore Ind.,108384-00009-1,0,4380_7778208_4090307,4380_1319 -4380_78064,288,4380_86006,Parkmore Ind.,108378-00011-1,0,4380_7778208_4090307,4380_1319 -4380_78064,286,4380_86007,Parkmore Ind.,108376-00010-1,0,4380_7778208_4090307,4380_1319 -4380_78064,291,4380_86008,Parkmore Ind.,107218-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_86009,Parkmore Ind.,108380-00014-1,0,4380_7778208_4090307,4380_1319 -4380_78064,287,4380_86010,Parkmore Ind.,108382-00012-1,0,4380_7778208_4090307,4380_1319 -4380_78064,292,4380_86011,Parkmore Ind.,108377-00016-1,0,4380_7778208_4090307,4380_1319 -4380_78064,290,4380_86012,Parkmore Ind.,108385-00015-1,0,4380_7778208_4090307,4380_1319 -4380_78064,294,4380_86013,Parkmore Ind.,108383-00018-1,0,4380_7778208_4090307,4380_1319 -4380_78064,295,4380_86014,Parkmore Ind.,108381-00019-1,0,4380_7778208_4090307,4380_1319 -4380_78064,293,4380_86015,Parkmore Ind.,108379-00017-1,0,4380_7778208_4090307,4380_1319 -4380_78064,296,4380_86016,Parkmore Ind.,107219-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78064,297,4380_86023,Parkmore Ind.,106455-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_86024,Parkmore Ind.,106850-00009-1,0,4380_7778208_4090302,4380_1320 -4380_78064,288,4380_86026,Parkmore Ind.,106857-00011-1,0,4380_7778208_4090302,4380_1320 -4380_78064,286,4380_86027,Parkmore Ind.,106859-00010-1,0,4380_7778208_4090302,4380_1320 -4380_78064,291,4380_86028,Parkmore Ind.,107910-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_86029,Parkmore Ind.,106853-00014-1,0,4380_7778208_4090302,4380_1320 -4380_78064,287,4380_86030,Parkmore Ind.,106855-00012-1,0,4380_7778208_4090302,4380_1320 -4380_78064,292,4380_86031,Parkmore Ind.,106860-00016-1,0,4380_7778208_4090302,4380_1320 -4380_78064,290,4380_86032,Parkmore Ind.,106851-00015-1,0,4380_7778208_4090302,4380_1320 -4380_78064,294,4380_86033,Parkmore Ind.,106856-00018-1,0,4380_7778208_4090302,4380_1320 -4380_78064,295,4380_86034,Parkmore Ind.,106854-00019-1,0,4380_7778208_4090302,4380_1320 -4380_78064,293,4380_86035,Parkmore Ind.,106858-00017-1,0,4380_7778208_4090302,4380_1320 -4380_78064,296,4380_86036,Parkmore Ind.,107911-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78114,285,4380_8604,Dublin Airport,5385-00009-1,1,4380_7778208_1090103,4380_137 -4380_78064,285,4380_86042,Parkmore Ind.,107222-00009-1,0,4380_7778208_4090303,4380_1319 -4380_78064,288,4380_86044,Parkmore Ind.,107226-00011-1,0,4380_7778208_4090303,4380_1319 -4380_78064,286,4380_86045,Parkmore Ind.,107220-00010-1,0,4380_7778208_4090303,4380_1319 -4380_78064,291,4380_86046,Parkmore Ind.,106861-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_86047,Parkmore Ind.,107224-00014-1,0,4380_7778208_4090303,4380_1319 -4380_78064,287,4380_86048,Parkmore Ind.,107228-00012-1,0,4380_7778208_4090303,4380_1319 -4380_78064,292,4380_86049,Parkmore Ind.,107221-00016-1,0,4380_7778208_4090303,4380_1319 -4380_78114,286,4380_8605,Dublin Airport,5395-00010-1,1,4380_7778208_1090103,4380_137 -4380_78064,290,4380_86050,Parkmore Ind.,107223-00015-1,0,4380_7778208_4090303,4380_1319 -4380_78064,294,4380_86051,Parkmore Ind.,107229-00018-1,0,4380_7778208_4090303,4380_1319 -4380_78064,295,4380_86052,Parkmore Ind.,107225-00019-1,0,4380_7778208_4090303,4380_1319 -4380_78064,293,4380_86053,Parkmore Ind.,107227-00017-1,0,4380_7778208_4090303,4380_1319 -4380_78064,296,4380_86054,Parkmore Ind.,106862-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78064,297,4380_86056,Parkmore Ind.,107584-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78114,297,4380_8606,Dublin Airport,5895-00008-1,1,4380_7778208_1090111,4380_139 -4380_78064,285,4380_86062,Parkmore Ind.,107585-00009-1,0,4380_7778208_4090304,4380_1319 -4380_78064,288,4380_86064,Parkmore Ind.,107587-00011-1,0,4380_7778208_4090304,4380_1319 -4380_78064,286,4380_86065,Parkmore Ind.,107593-00010-1,0,4380_7778208_4090304,4380_1319 -4380_78064,291,4380_86066,Parkmore Ind.,108174-00013-1,0,4380_7778208_4090306,4380_1320 -4380_78064,289,4380_86067,Parkmore Ind.,107589-00014-1,0,4380_7778208_4090304,4380_1319 -4380_78064,287,4380_86068,Parkmore Ind.,107591-00012-1,0,4380_7778208_4090304,4380_1319 -4380_78064,292,4380_86069,Parkmore Ind.,107594-00016-1,0,4380_7778208_4090304,4380_1319 -4380_78114,288,4380_8607,Dublin Airport,5405-00011-1,1,4380_7778208_1090103,4380_137 -4380_78064,290,4380_86070,Parkmore Ind.,107586-00015-1,0,4380_7778208_4090304,4380_1319 -4380_78064,294,4380_86071,Parkmore Ind.,107592-00018-1,0,4380_7778208_4090304,4380_1319 -4380_78064,295,4380_86072,Parkmore Ind.,107590-00019-1,0,4380_7778208_4090304,4380_1319 -4380_78064,293,4380_86073,Parkmore Ind.,107588-00017-1,0,4380_7778208_4090304,4380_1319 -4380_78064,296,4380_86074,Parkmore Ind.,108175-00021-1,0,4380_7778208_4090306,4380_1320 -4380_78114,287,4380_8608,Dublin Airport,5415-00012-1,1,4380_7778208_1090103,4380_137 -4380_78064,297,4380_86081,Parkmore Ind.,106867-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_86082,Parkmore Ind.,107922-00009-1,0,4380_7778208_4090305,4380_1320 -4380_78064,288,4380_86084,Parkmore Ind.,107916-00011-1,0,4380_7778208_4090305,4380_1320 -4380_78064,286,4380_86085,Parkmore Ind.,107914-00010-1,0,4380_7778208_4090305,4380_1320 -4380_78064,291,4380_86086,Parkmore Ind.,106467-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_86087,Parkmore Ind.,107920-00014-1,0,4380_7778208_4090305,4380_1320 -4380_78064,287,4380_86088,Parkmore Ind.,107912-00012-1,0,4380_7778208_4090305,4380_1320 -4380_78064,292,4380_86089,Parkmore Ind.,107915-00016-1,0,4380_7778208_4090305,4380_1320 -4380_78114,289,4380_8609,Dublin Airport,5375-00014-1,1,4380_7778208_1090103,4380_137 -4380_78064,290,4380_86090,Parkmore Ind.,107923-00015-1,0,4380_7778208_4090305,4380_1320 -4380_78064,294,4380_86091,Parkmore Ind.,107913-00018-1,0,4380_7778208_4090305,4380_1320 -4380_78064,295,4380_86092,Parkmore Ind.,107921-00019-1,0,4380_7778208_4090305,4380_1320 -4380_78064,293,4380_86093,Parkmore Ind.,107917-00017-1,0,4380_7778208_4090305,4380_1320 -4380_78064,296,4380_86094,Parkmore Ind.,106468-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,290,4380_8610,Dublin Airport,54779-00015-1,1,4380_7778208_1090103,4380_137 -4380_78064,285,4380_86100,Parkmore Ind.,108182-00009-1,0,4380_7778208_4090306,4380_1319 -4380_78064,288,4380_86102,Parkmore Ind.,108184-00011-1,0,4380_7778208_4090306,4380_1319 -4380_78064,286,4380_86103,Parkmore Ind.,108176-00010-1,0,4380_7778208_4090306,4380_1319 -4380_78064,291,4380_86104,Parkmore Ind.,107595-00013-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_86105,Parkmore Ind.,108180-00014-1,0,4380_7778208_4090306,4380_1319 -4380_78064,287,4380_86106,Parkmore Ind.,108178-00012-1,0,4380_7778208_4090306,4380_1319 -4380_78064,292,4380_86107,Parkmore Ind.,108177-00016-1,0,4380_7778208_4090306,4380_1319 -4380_78064,290,4380_86108,Parkmore Ind.,108183-00015-1,0,4380_7778208_4090306,4380_1319 -4380_78064,294,4380_86109,Parkmore Ind.,108179-00018-1,0,4380_7778208_4090306,4380_1319 -4380_78114,291,4380_8611,Dublin Airport,5980-00013-1,1,4380_7778208_1090113,4380_141 -4380_78064,295,4380_86110,Parkmore Ind.,108181-00019-1,0,4380_7778208_4090306,4380_1319 -4380_78064,293,4380_86111,Parkmore Ind.,108185-00017-1,0,4380_7778208_4090306,4380_1319 -4380_78064,296,4380_86112,Parkmore Ind.,107596-00021-1,0,4380_7778208_4090304,4380_1320 -4380_78064,297,4380_86114,Parkmore Ind.,107243-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78114,292,4380_8612,Dublin Airport,54778-00016-1,1,4380_7778208_1090103,4380_137 -4380_78064,285,4380_86120,Parkmore Ind.,106475-00009-1,0,4380_7778208_4090301,4380_1319 -4380_78064,288,4380_86122,Parkmore Ind.,106473-00011-1,0,4380_7778208_4090301,4380_1319 -4380_78064,286,4380_86123,Parkmore Ind.,106469-00010-1,0,4380_7778208_4090301,4380_1319 -4380_78064,291,4380_86124,Parkmore Ind.,107244-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_86125,Parkmore Ind.,106471-00014-1,0,4380_7778208_4090301,4380_1319 -4380_78064,287,4380_86126,Parkmore Ind.,106477-00012-1,0,4380_7778208_4090301,4380_1319 -4380_78064,292,4380_86127,Parkmore Ind.,106470-00016-1,0,4380_7778208_4090301,4380_1319 -4380_78064,290,4380_86128,Parkmore Ind.,106476-00015-1,0,4380_7778208_4090301,4380_1319 -4380_78064,294,4380_86129,Parkmore Ind.,106478-00018-1,0,4380_7778208_4090301,4380_1319 -4380_78114,293,4380_8613,Dublin Airport,54776-00017-1,1,4380_7778208_1090103,4380_137 -4380_78064,295,4380_86130,Parkmore Ind.,106472-00019-1,0,4380_7778208_4090301,4380_1319 -4380_78064,293,4380_86131,Parkmore Ind.,106474-00017-1,0,4380_7778208_4090301,4380_1319 -4380_78064,296,4380_86132,Parkmore Ind.,107245-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78064,297,4380_86139,Parkmore Ind.,106479-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78114,294,4380_8614,Dublin Airport,54780-00018-1,1,4380_7778208_1090103,4380_137 -4380_78064,285,4380_86140,Parkmore Ind.,108608-00009-1,0,4380_7778208_4090308,4380_1320 -4380_78064,288,4380_86142,Parkmore Ind.,108606-00011-1,0,4380_7778208_4090308,4380_1320 -4380_78064,286,4380_86143,Parkmore Ind.,108614-00010-1,0,4380_7778208_4090308,4380_1320 -4380_78064,291,4380_86144,Parkmore Ind.,107932-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_86145,Parkmore Ind.,108612-00014-1,0,4380_7778208_4090308,4380_1320 -4380_78064,287,4380_86146,Parkmore Ind.,108610-00012-1,0,4380_7778208_4090308,4380_1320 -4380_78064,292,4380_86147,Parkmore Ind.,108615-00016-1,0,4380_7778208_4090308,4380_1320 -4380_78064,290,4380_86148,Parkmore Ind.,108609-00015-1,0,4380_7778208_4090308,4380_1320 -4380_78064,294,4380_86149,Parkmore Ind.,108611-00018-1,0,4380_7778208_4090308,4380_1320 -4380_78114,295,4380_8615,Dublin Airport,54777-00019-1,1,4380_7778208_1090103,4380_137 -4380_78064,295,4380_86150,Parkmore Ind.,108613-00019-1,0,4380_7778208_4090308,4380_1320 -4380_78064,293,4380_86151,Parkmore Ind.,108607-00017-1,0,4380_7778208_4090308,4380_1320 -4380_78064,296,4380_86152,Parkmore Ind.,107933-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78064,285,4380_86158,Parkmore Ind.,106887-00009-1,0,4380_7778208_4090302,4380_1319 -4380_78114,296,4380_8616,Dublin Airport,55205-00021-1,1,4380_7778208_1090113,4380_141 -4380_78064,288,4380_86160,Parkmore Ind.,106885-00011-1,0,4380_7778208_4090302,4380_1319 -4380_78064,286,4380_86161,Parkmore Ind.,106879-00010-1,0,4380_7778208_4090302,4380_1319 -4380_78064,291,4380_86162,Parkmore Ind.,106883-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_86163,Parkmore Ind.,106881-00014-1,0,4380_7778208_4090302,4380_1319 -4380_78064,287,4380_86164,Parkmore Ind.,106877-00012-1,0,4380_7778208_4090302,4380_1319 -4380_78064,292,4380_86165,Parkmore Ind.,106880-00016-1,0,4380_7778208_4090302,4380_1319 -4380_78064,290,4380_86166,Parkmore Ind.,106888-00015-1,0,4380_7778208_4090302,4380_1319 -4380_78064,294,4380_86167,Parkmore Ind.,106878-00018-1,0,4380_7778208_4090302,4380_1319 -4380_78064,295,4380_86168,Parkmore Ind.,106882-00019-1,0,4380_7778208_4090302,4380_1319 -4380_78064,293,4380_86169,Parkmore Ind.,106886-00017-1,0,4380_7778208_4090302,4380_1319 -4380_78064,296,4380_86170,Parkmore Ind.,106884-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78064,297,4380_86172,Parkmore Ind.,107610-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_86178,Parkmore Ind.,107251-00009-1,0,4380_7778208_4090303,4380_1319 -4380_78064,288,4380_86180,Parkmore Ind.,107253-00011-1,0,4380_7778208_4090303,4380_1319 -4380_78064,286,4380_86181,Parkmore Ind.,107249-00010-1,0,4380_7778208_4090303,4380_1319 -4380_78064,291,4380_86182,Parkmore Ind.,108198-00013-1,0,4380_7778208_4090306,4380_1320 -4380_78064,289,4380_86183,Parkmore Ind.,107255-00014-1,0,4380_7778208_4090303,4380_1319 -4380_78064,287,4380_86184,Parkmore Ind.,107247-00012-1,0,4380_7778208_4090303,4380_1319 -4380_78064,292,4380_86185,Parkmore Ind.,107250-00016-1,0,4380_7778208_4090303,4380_1319 -4380_78064,290,4380_86186,Parkmore Ind.,107252-00015-1,0,4380_7778208_4090303,4380_1319 -4380_78064,294,4380_86187,Parkmore Ind.,107248-00018-1,0,4380_7778208_4090303,4380_1319 -4380_78064,295,4380_86188,Parkmore Ind.,107256-00019-1,0,4380_7778208_4090303,4380_1319 -4380_78064,293,4380_86189,Parkmore Ind.,107254-00017-1,0,4380_7778208_4090303,4380_1319 -4380_78064,296,4380_86190,Parkmore Ind.,108199-00021-1,0,4380_7778208_4090306,4380_1320 -4380_78064,297,4380_86197,Parkmore Ind.,106889-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_86198,Parkmore Ind.,107615-00009-1,0,4380_7778208_4090304,4380_1320 -4380_78113,285,4380_862,Dundalk,49822-00009-1,0,4380_7778208_1000904,4380_11 -4380_78064,288,4380_86200,Parkmore Ind.,107611-00011-1,0,4380_7778208_4090304,4380_1320 -4380_78064,286,4380_86201,Parkmore Ind.,107613-00010-1,0,4380_7778208_4090304,4380_1320 -4380_78064,291,4380_86202,Parkmore Ind.,106493-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_86203,Parkmore Ind.,107617-00014-1,0,4380_7778208_4090304,4380_1320 -4380_78064,287,4380_86204,Parkmore Ind.,107619-00012-1,0,4380_7778208_4090304,4380_1320 -4380_78064,292,4380_86205,Parkmore Ind.,107614-00016-1,0,4380_7778208_4090304,4380_1320 -4380_78064,290,4380_86206,Parkmore Ind.,107616-00015-1,0,4380_7778208_4090304,4380_1320 -4380_78064,294,4380_86207,Parkmore Ind.,107620-00018-1,0,4380_7778208_4090304,4380_1320 -4380_78064,295,4380_86208,Parkmore Ind.,107618-00019-1,0,4380_7778208_4090304,4380_1320 -4380_78064,293,4380_86209,Parkmore Ind.,107612-00017-1,0,4380_7778208_4090304,4380_1320 -4380_78064,296,4380_86210,Parkmore Ind.,106494-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78064,285,4380_86216,Parkmore Ind.,107940-00009-1,0,4380_7778208_4090305,4380_1319 -4380_78064,288,4380_86218,Parkmore Ind.,107946-00011-1,0,4380_7778208_4090305,4380_1319 -4380_78064,286,4380_86219,Parkmore Ind.,107944-00010-1,0,4380_7778208_4090305,4380_1319 -4380_78064,291,4380_86220,Parkmore Ind.,107621-00013-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_86221,Parkmore Ind.,107938-00014-1,0,4380_7778208_4090305,4380_1319 -4380_78064,287,4380_86222,Parkmore Ind.,107942-00012-1,0,4380_7778208_4090305,4380_1319 -4380_78064,292,4380_86223,Parkmore Ind.,107945-00016-1,0,4380_7778208_4090305,4380_1319 -4380_78064,290,4380_86224,Parkmore Ind.,107941-00015-1,0,4380_7778208_4090305,4380_1319 -4380_78064,294,4380_86225,Parkmore Ind.,107943-00018-1,0,4380_7778208_4090305,4380_1319 -4380_78064,295,4380_86226,Parkmore Ind.,107939-00019-1,0,4380_7778208_4090305,4380_1319 -4380_78064,293,4380_86227,Parkmore Ind.,107947-00017-1,0,4380_7778208_4090305,4380_1319 -4380_78064,296,4380_86228,Parkmore Ind.,107622-00021-1,0,4380_7778208_4090304,4380_1320 -4380_78064,297,4380_86230,Parkmore Ind.,107259-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78064,285,4380_86236,Parkmore Ind.,108210-00009-1,0,4380_7778208_4090306,4380_1319 -4380_78064,288,4380_86238,Parkmore Ind.,108200-00011-1,0,4380_7778208_4090306,4380_1319 -4380_78064,286,4380_86239,Parkmore Ind.,108202-00010-1,0,4380_7778208_4090306,4380_1319 -4380_78114,285,4380_8624,Dublin Airport,5460-00009-1,1,4380_7778208_1090104,4380_137 -4380_78064,291,4380_86240,Parkmore Ind.,107270-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_86241,Parkmore Ind.,108204-00014-1,0,4380_7778208_4090306,4380_1319 -4380_78064,287,4380_86242,Parkmore Ind.,108206-00012-1,0,4380_7778208_4090306,4380_1319 -4380_78064,292,4380_86243,Parkmore Ind.,108203-00016-1,0,4380_7778208_4090306,4380_1319 -4380_78064,290,4380_86244,Parkmore Ind.,108211-00015-1,0,4380_7778208_4090306,4380_1319 -4380_78064,294,4380_86245,Parkmore Ind.,108207-00018-1,0,4380_7778208_4090306,4380_1319 -4380_78064,295,4380_86246,Parkmore Ind.,108205-00019-1,0,4380_7778208_4090306,4380_1319 -4380_78064,293,4380_86247,Parkmore Ind.,108201-00017-1,0,4380_7778208_4090306,4380_1319 -4380_78064,296,4380_86248,Parkmore Ind.,107271-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78114,286,4380_8625,Dublin Airport,5470-00010-1,1,4380_7778208_1090104,4380_137 -4380_78064,297,4380_86255,Parkmore Ind.,106495-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_86256,Parkmore Ind.,106496-00009-1,0,4380_7778208_4090301,4380_1320 -4380_78064,288,4380_86258,Parkmore Ind.,106498-00011-1,0,4380_7778208_4090301,4380_1320 -4380_78064,286,4380_86259,Parkmore Ind.,106504-00010-1,0,4380_7778208_4090301,4380_1320 -4380_78114,297,4380_8626,Dublin Airport,5960-00008-1,1,4380_7778208_1090112,4380_139 -4380_78064,291,4380_86260,Parkmore Ind.,107948-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_86261,Parkmore Ind.,106502-00014-1,0,4380_7778208_4090301,4380_1320 -4380_78064,287,4380_86262,Parkmore Ind.,106506-00012-1,0,4380_7778208_4090301,4380_1320 -4380_78064,292,4380_86263,Parkmore Ind.,106505-00016-1,0,4380_7778208_4090301,4380_1320 -4380_78064,290,4380_86264,Parkmore Ind.,106497-00015-1,0,4380_7778208_4090301,4380_1320 -4380_78064,294,4380_86265,Parkmore Ind.,106507-00018-1,0,4380_7778208_4090301,4380_1320 -4380_78064,295,4380_86266,Parkmore Ind.,106503-00019-1,0,4380_7778208_4090301,4380_1320 -4380_78064,293,4380_86267,Parkmore Ind.,106499-00017-1,0,4380_7778208_4090301,4380_1320 -4380_78064,296,4380_86268,Parkmore Ind.,107949-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78114,288,4380_8627,Dublin Airport,5480-00011-1,1,4380_7778208_1090104,4380_137 -4380_78064,285,4380_86274,Parkmore Ind.,108400-00009-1,0,4380_7778208_4090307,4380_1319 -4380_78064,288,4380_86276,Parkmore Ind.,108402-00011-1,0,4380_7778208_4090307,4380_1319 -4380_78064,286,4380_86277,Parkmore Ind.,108396-00010-1,0,4380_7778208_4090307,4380_1319 -4380_78064,291,4380_86278,Parkmore Ind.,106903-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_86279,Parkmore Ind.,108398-00014-1,0,4380_7778208_4090307,4380_1319 -4380_78114,287,4380_8628,Dublin Airport,5490-00012-1,1,4380_7778208_1090104,4380_137 -4380_78064,287,4380_86280,Parkmore Ind.,108404-00012-1,0,4380_7778208_4090307,4380_1319 -4380_78064,292,4380_86281,Parkmore Ind.,108397-00016-1,0,4380_7778208_4090307,4380_1319 -4380_78064,290,4380_86282,Parkmore Ind.,108401-00015-1,0,4380_7778208_4090307,4380_1319 -4380_78064,294,4380_86283,Parkmore Ind.,108405-00018-1,0,4380_7778208_4090307,4380_1319 -4380_78064,295,4380_86284,Parkmore Ind.,108399-00019-1,0,4380_7778208_4090307,4380_1319 -4380_78064,293,4380_86285,Parkmore Ind.,108403-00017-1,0,4380_7778208_4090307,4380_1319 -4380_78064,296,4380_86286,Parkmore Ind.,106904-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78064,297,4380_86288,Parkmore Ind.,107636-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78114,289,4380_8629,Dublin Airport,5450-00014-1,1,4380_7778208_1090104,4380_137 -4380_78064,285,4380_86294,Parkmore Ind.,106913-00009-1,0,4380_7778208_4090302,4380_1319 -4380_78064,288,4380_86296,Parkmore Ind.,106905-00011-1,0,4380_7778208_4090302,4380_1319 -4380_78064,286,4380_86297,Parkmore Ind.,106907-00010-1,0,4380_7778208_4090302,4380_1319 -4380_78064,291,4380_86298,Parkmore Ind.,108220-00013-1,0,4380_7778208_4090306,4380_1320 -4380_78064,289,4380_86299,Parkmore Ind.,106911-00014-1,0,4380_7778208_4090302,4380_1319 -4380_78113,286,4380_863,Dundalk,49824-00010-1,0,4380_7778208_1000904,4380_11 -4380_78114,290,4380_8630,Dublin Airport,54836-00015-1,1,4380_7778208_1090104,4380_137 -4380_78064,287,4380_86300,Parkmore Ind.,106909-00012-1,0,4380_7778208_4090302,4380_1319 -4380_78064,292,4380_86301,Parkmore Ind.,106908-00016-1,0,4380_7778208_4090302,4380_1319 -4380_78064,290,4380_86302,Parkmore Ind.,106914-00015-1,0,4380_7778208_4090302,4380_1319 -4380_78064,294,4380_86303,Parkmore Ind.,106910-00018-1,0,4380_7778208_4090302,4380_1319 -4380_78064,295,4380_86304,Parkmore Ind.,106912-00019-1,0,4380_7778208_4090302,4380_1319 -4380_78064,293,4380_86305,Parkmore Ind.,106906-00017-1,0,4380_7778208_4090302,4380_1319 -4380_78064,296,4380_86306,Parkmore Ind.,108221-00021-1,0,4380_7778208_4090306,4380_1320 -4380_78114,291,4380_8631,Dublin Airport,6013-00013-1,1,4380_7778208_1090114,4380_141 -4380_78064,297,4380_86313,Parkmore Ind.,106915-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_86314,Parkmore Ind.,107279-00009-1,0,4380_7778208_4090303,4380_1320 -4380_78064,288,4380_86316,Parkmore Ind.,107281-00011-1,0,4380_7778208_4090303,4380_1320 -4380_78064,286,4380_86317,Parkmore Ind.,107277-00010-1,0,4380_7778208_4090303,4380_1320 -4380_78064,291,4380_86318,Parkmore Ind.,106512-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_86319,Parkmore Ind.,107275-00014-1,0,4380_7778208_4090303,4380_1320 -4380_78114,292,4380_8632,Dublin Airport,54832-00016-1,1,4380_7778208_1090104,4380_137 -4380_78064,287,4380_86320,Parkmore Ind.,107283-00012-1,0,4380_7778208_4090303,4380_1320 -4380_78064,292,4380_86321,Parkmore Ind.,107278-00016-1,0,4380_7778208_4090303,4380_1320 -4380_78064,290,4380_86322,Parkmore Ind.,107280-00015-1,0,4380_7778208_4090303,4380_1320 -4380_78064,294,4380_86323,Parkmore Ind.,107284-00018-1,0,4380_7778208_4090303,4380_1320 -4380_78064,295,4380_86324,Parkmore Ind.,107276-00019-1,0,4380_7778208_4090303,4380_1320 -4380_78064,293,4380_86325,Parkmore Ind.,107282-00017-1,0,4380_7778208_4090303,4380_1320 -4380_78064,296,4380_86326,Parkmore Ind.,106513-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,293,4380_8633,Dublin Airport,54833-00017-1,1,4380_7778208_1090104,4380_137 -4380_78064,285,4380_86332,Parkmore Ind.,107637-00009-1,0,4380_7778208_4090304,4380_1319 -4380_78064,288,4380_86334,Parkmore Ind.,107647-00011-1,0,4380_7778208_4090304,4380_1319 -4380_78064,286,4380_86335,Parkmore Ind.,107645-00010-1,0,4380_7778208_4090304,4380_1319 -4380_78064,291,4380_86336,Parkmore Ind.,107641-00013-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_86337,Parkmore Ind.,107639-00014-1,0,4380_7778208_4090304,4380_1319 -4380_78064,287,4380_86338,Parkmore Ind.,107643-00012-1,0,4380_7778208_4090304,4380_1319 -4380_78064,292,4380_86339,Parkmore Ind.,107646-00016-1,0,4380_7778208_4090304,4380_1319 -4380_78114,294,4380_8634,Dublin Airport,54835-00018-1,1,4380_7778208_1090104,4380_137 -4380_78064,290,4380_86340,Parkmore Ind.,107638-00015-1,0,4380_7778208_4090304,4380_1319 -4380_78064,294,4380_86341,Parkmore Ind.,107644-00018-1,0,4380_7778208_4090304,4380_1319 -4380_78064,295,4380_86342,Parkmore Ind.,107640-00019-1,0,4380_7778208_4090304,4380_1319 -4380_78064,293,4380_86343,Parkmore Ind.,107648-00017-1,0,4380_7778208_4090304,4380_1319 -4380_78064,296,4380_86344,Parkmore Ind.,107642-00021-1,0,4380_7778208_4090304,4380_1320 -4380_78064,297,4380_86346,Parkmore Ind.,107285-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78114,295,4380_8635,Dublin Airport,54834-00019-1,1,4380_7778208_1090104,4380_137 -4380_78064,285,4380_86352,Parkmore Ind.,107962-00009-1,0,4380_7778208_4090305,4380_1319 -4380_78064,288,4380_86354,Parkmore Ind.,107964-00011-1,0,4380_7778208_4090305,4380_1319 -4380_78064,286,4380_86355,Parkmore Ind.,107966-00010-1,0,4380_7778208_4090305,4380_1319 -4380_78064,291,4380_86356,Parkmore Ind.,107286-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_86357,Parkmore Ind.,107968-00014-1,0,4380_7778208_4090305,4380_1319 -4380_78064,287,4380_86358,Parkmore Ind.,107970-00012-1,0,4380_7778208_4090305,4380_1319 -4380_78064,292,4380_86359,Parkmore Ind.,107967-00016-1,0,4380_7778208_4090305,4380_1319 -4380_78114,296,4380_8636,Dublin Airport,55225-00021-1,1,4380_7778208_1090114,4380_141 -4380_78064,290,4380_86360,Parkmore Ind.,107963-00015-1,0,4380_7778208_4090305,4380_1319 -4380_78064,294,4380_86361,Parkmore Ind.,107971-00018-1,0,4380_7778208_4090305,4380_1319 -4380_78064,295,4380_86362,Parkmore Ind.,107969-00019-1,0,4380_7778208_4090305,4380_1319 -4380_78064,293,4380_86363,Parkmore Ind.,107965-00017-1,0,4380_7778208_4090305,4380_1319 -4380_78064,296,4380_86364,Parkmore Ind.,107287-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78064,297,4380_86371,Parkmore Ind.,106521-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_86372,Parkmore Ind.,108234-00009-1,0,4380_7778208_4090306,4380_1320 -4380_78064,288,4380_86374,Parkmore Ind.,108226-00011-1,0,4380_7778208_4090306,4380_1320 -4380_78064,286,4380_86375,Parkmore Ind.,108230-00010-1,0,4380_7778208_4090306,4380_1320 -4380_78064,291,4380_86376,Parkmore Ind.,107972-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_86377,Parkmore Ind.,108232-00014-1,0,4380_7778208_4090306,4380_1320 -4380_78064,287,4380_86378,Parkmore Ind.,108228-00012-1,0,4380_7778208_4090306,4380_1320 -4380_78064,292,4380_86379,Parkmore Ind.,108231-00016-1,0,4380_7778208_4090306,4380_1320 -4380_78064,290,4380_86380,Parkmore Ind.,108235-00015-1,0,4380_7778208_4090306,4380_1320 -4380_78064,294,4380_86381,Parkmore Ind.,108229-00018-1,0,4380_7778208_4090306,4380_1320 -4380_78064,295,4380_86382,Parkmore Ind.,108233-00019-1,0,4380_7778208_4090306,4380_1320 -4380_78064,293,4380_86383,Parkmore Ind.,108227-00017-1,0,4380_7778208_4090306,4380_1320 -4380_78064,296,4380_86384,Parkmore Ind.,107973-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78064,285,4380_86390,Parkmore Ind.,106528-00009-1,0,4380_7778208_4090301,4380_1319 -4380_78064,288,4380_86392,Parkmore Ind.,106526-00011-1,0,4380_7778208_4090301,4380_1319 -4380_78064,286,4380_86393,Parkmore Ind.,106524-00010-1,0,4380_7778208_4090301,4380_1319 -4380_78064,291,4380_86394,Parkmore Ind.,106929-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_86395,Parkmore Ind.,106532-00014-1,0,4380_7778208_4090301,4380_1319 -4380_78064,287,4380_86396,Parkmore Ind.,106530-00012-1,0,4380_7778208_4090301,4380_1319 -4380_78064,292,4380_86397,Parkmore Ind.,106525-00016-1,0,4380_7778208_4090301,4380_1319 -4380_78064,290,4380_86398,Parkmore Ind.,106529-00015-1,0,4380_7778208_4090301,4380_1319 -4380_78064,294,4380_86399,Parkmore Ind.,106531-00018-1,0,4380_7778208_4090301,4380_1319 -4380_78113,297,4380_864,Dundalk,49730-00008-1,0,4380_7778208_1000903,4380_14 -4380_78064,295,4380_86400,Parkmore Ind.,106533-00019-1,0,4380_7778208_4090301,4380_1319 -4380_78064,293,4380_86401,Parkmore Ind.,106527-00017-1,0,4380_7778208_4090301,4380_1319 -4380_78064,296,4380_86402,Parkmore Ind.,106930-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78064,297,4380_86404,Parkmore Ind.,107662-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_86410,Parkmore Ind.,108418-00009-1,0,4380_7778208_4090307,4380_1319 -4380_78064,288,4380_86412,Parkmore Ind.,108424-00011-1,0,4380_7778208_4090307,4380_1319 -4380_78064,286,4380_86413,Parkmore Ind.,108416-00010-1,0,4380_7778208_4090307,4380_1319 -4380_78064,291,4380_86414,Parkmore Ind.,108236-00013-1,0,4380_7778208_4090306,4380_1320 -4380_78064,289,4380_86415,Parkmore Ind.,108420-00014-1,0,4380_7778208_4090307,4380_1319 -4380_78064,287,4380_86416,Parkmore Ind.,108422-00012-1,0,4380_7778208_4090307,4380_1319 -4380_78064,292,4380_86417,Parkmore Ind.,108417-00016-1,0,4380_7778208_4090307,4380_1319 -4380_78064,290,4380_86418,Parkmore Ind.,108419-00015-1,0,4380_7778208_4090307,4380_1319 -4380_78064,294,4380_86419,Parkmore Ind.,108423-00018-1,0,4380_7778208_4090307,4380_1319 -4380_78064,295,4380_86420,Parkmore Ind.,108421-00019-1,0,4380_7778208_4090307,4380_1319 -4380_78064,293,4380_86421,Parkmore Ind.,108425-00017-1,0,4380_7778208_4090307,4380_1319 -4380_78064,296,4380_86422,Parkmore Ind.,108237-00021-1,0,4380_7778208_4090306,4380_1320 -4380_78064,297,4380_86429,Parkmore Ind.,106939-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_86430,Parkmore Ind.,106933-00009-1,0,4380_7778208_4090302,4380_1320 -4380_78064,288,4380_86432,Parkmore Ind.,106937-00011-1,0,4380_7778208_4090302,4380_1320 -4380_78064,286,4380_86433,Parkmore Ind.,106935-00010-1,0,4380_7778208_4090302,4380_1320 -4380_78064,291,4380_86434,Parkmore Ind.,106534-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_86435,Parkmore Ind.,106940-00014-1,0,4380_7778208_4090302,4380_1320 -4380_78064,287,4380_86436,Parkmore Ind.,106931-00012-1,0,4380_7778208_4090302,4380_1320 -4380_78064,292,4380_86437,Parkmore Ind.,106936-00016-1,0,4380_7778208_4090302,4380_1320 -4380_78064,290,4380_86438,Parkmore Ind.,106934-00015-1,0,4380_7778208_4090302,4380_1320 -4380_78064,294,4380_86439,Parkmore Ind.,106932-00018-1,0,4380_7778208_4090302,4380_1320 -4380_78114,285,4380_8644,Dublin Airport,5534-00009-1,1,4380_7778208_1090105,4380_137 -4380_78064,295,4380_86440,Parkmore Ind.,106941-00019-1,0,4380_7778208_4090302,4380_1320 -4380_78064,293,4380_86441,Parkmore Ind.,106938-00017-1,0,4380_7778208_4090302,4380_1320 -4380_78064,296,4380_86442,Parkmore Ind.,106535-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78064,285,4380_86448,Parkmore Ind.,107301-00009-1,0,4380_7778208_4090303,4380_1319 -4380_78114,286,4380_8645,Dublin Airport,5542-00010-1,1,4380_7778208_1090105,4380_137 -4380_78064,288,4380_86450,Parkmore Ind.,107303-00011-1,0,4380_7778208_4090303,4380_1319 -4380_78064,286,4380_86451,Parkmore Ind.,107307-00010-1,0,4380_7778208_4090303,4380_1319 -4380_78064,291,4380_86452,Parkmore Ind.,107663-00013-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_86453,Parkmore Ind.,107309-00014-1,0,4380_7778208_4090303,4380_1319 -4380_78064,287,4380_86454,Parkmore Ind.,107305-00012-1,0,4380_7778208_4090303,4380_1319 -4380_78064,292,4380_86455,Parkmore Ind.,107308-00016-1,0,4380_7778208_4090303,4380_1319 -4380_78064,290,4380_86456,Parkmore Ind.,107302-00015-1,0,4380_7778208_4090303,4380_1319 -4380_78064,294,4380_86457,Parkmore Ind.,107306-00018-1,0,4380_7778208_4090303,4380_1319 -4380_78064,295,4380_86458,Parkmore Ind.,107310-00019-1,0,4380_7778208_4090303,4380_1319 -4380_78064,293,4380_86459,Parkmore Ind.,107304-00017-1,0,4380_7778208_4090303,4380_1319 -4380_78114,297,4380_8646,Dublin Airport,5990-00008-1,1,4380_7778208_1090113,4380_139 -4380_78064,296,4380_86460,Parkmore Ind.,107664-00021-1,0,4380_7778208_4090304,4380_1320 -4380_78064,297,4380_86462,Parkmore Ind.,107311-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78064,285,4380_86468,Parkmore Ind.,107672-00009-1,0,4380_7778208_4090304,4380_1319 -4380_78114,288,4380_8647,Dublin Airport,5550-00011-1,1,4380_7778208_1090105,4380_137 -4380_78064,288,4380_86470,Parkmore Ind.,107666-00011-1,0,4380_7778208_4090304,4380_1319 -4380_78064,286,4380_86471,Parkmore Ind.,107670-00010-1,0,4380_7778208_4090304,4380_1319 -4380_78064,291,4380_86472,Parkmore Ind.,107312-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_86473,Parkmore Ind.,107674-00014-1,0,4380_7778208_4090304,4380_1319 -4380_78064,287,4380_86474,Parkmore Ind.,107668-00012-1,0,4380_7778208_4090304,4380_1319 -4380_78064,292,4380_86475,Parkmore Ind.,107671-00016-1,0,4380_7778208_4090304,4380_1319 -4380_78064,290,4380_86476,Parkmore Ind.,107673-00015-1,0,4380_7778208_4090304,4380_1319 -4380_78064,294,4380_86477,Parkmore Ind.,107669-00018-1,0,4380_7778208_4090304,4380_1319 -4380_78064,295,4380_86478,Parkmore Ind.,107675-00019-1,0,4380_7778208_4090304,4380_1319 -4380_78064,293,4380_86479,Parkmore Ind.,107667-00017-1,0,4380_7778208_4090304,4380_1319 -4380_78114,287,4380_8648,Dublin Airport,5558-00012-1,1,4380_7778208_1090105,4380_137 -4380_78064,296,4380_86480,Parkmore Ind.,107313-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78064,297,4380_86487,Parkmore Ind.,106547-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_86488,Parkmore Ind.,107996-00009-1,0,4380_7778208_4090305,4380_1320 -4380_78114,289,4380_8649,Dublin Airport,5526-00014-1,1,4380_7778208_1090105,4380_137 -4380_78064,288,4380_86490,Parkmore Ind.,107988-00011-1,0,4380_7778208_4090305,4380_1320 -4380_78064,286,4380_86491,Parkmore Ind.,107994-00010-1,0,4380_7778208_4090305,4380_1320 -4380_78064,291,4380_86492,Parkmore Ind.,107990-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_86493,Parkmore Ind.,107992-00014-1,0,4380_7778208_4090305,4380_1320 -4380_78064,287,4380_86494,Parkmore Ind.,107986-00012-1,0,4380_7778208_4090305,4380_1320 -4380_78064,292,4380_86495,Parkmore Ind.,107995-00016-1,0,4380_7778208_4090305,4380_1320 -4380_78064,290,4380_86496,Parkmore Ind.,107997-00015-1,0,4380_7778208_4090305,4380_1320 -4380_78064,294,4380_86497,Parkmore Ind.,107987-00018-1,0,4380_7778208_4090305,4380_1320 -4380_78064,295,4380_86498,Parkmore Ind.,107993-00019-1,0,4380_7778208_4090305,4380_1320 -4380_78064,293,4380_86499,Parkmore Ind.,107989-00017-1,0,4380_7778208_4090305,4380_1320 -4380_78113,287,4380_865,Dundalk,49826-00012-1,0,4380_7778208_1000904,4380_11 -4380_78114,290,4380_8650,Dublin Airport,54891-00015-1,1,4380_7778208_1090105,4380_137 -4380_78064,296,4380_86500,Parkmore Ind.,107991-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78064,285,4380_86506,Parkmore Ind.,108630-00009-1,0,4380_7778208_4090308,4380_1319 -4380_78064,288,4380_86508,Parkmore Ind.,108628-00011-1,0,4380_7778208_4090308,4380_1319 -4380_78064,286,4380_86509,Parkmore Ind.,108626-00010-1,0,4380_7778208_4090308,4380_1319 -4380_78114,291,4380_8651,Dublin Airport,6053-00013-1,1,4380_7778208_1090115,4380_141 -4380_78064,291,4380_86510,Parkmore Ind.,106951-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_86511,Parkmore Ind.,108632-00014-1,0,4380_7778208_4090308,4380_1319 -4380_78064,287,4380_86512,Parkmore Ind.,108634-00012-1,0,4380_7778208_4090308,4380_1319 -4380_78064,292,4380_86513,Parkmore Ind.,108627-00016-1,0,4380_7778208_4090308,4380_1319 -4380_78064,290,4380_86514,Parkmore Ind.,108631-00015-1,0,4380_7778208_4090308,4380_1319 -4380_78064,294,4380_86515,Parkmore Ind.,108635-00018-1,0,4380_7778208_4090308,4380_1319 -4380_78064,295,4380_86516,Parkmore Ind.,108633-00019-1,0,4380_7778208_4090308,4380_1319 -4380_78064,293,4380_86517,Parkmore Ind.,108629-00017-1,0,4380_7778208_4090308,4380_1319 -4380_78064,296,4380_86518,Parkmore Ind.,106952-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78114,292,4380_8652,Dublin Airport,54893-00016-1,1,4380_7778208_1090105,4380_137 -4380_78064,297,4380_86520,Parkmore Ind.,107678-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_86526,Parkmore Ind.,108252-00009-1,0,4380_7778208_4090306,4380_1319 -4380_78064,288,4380_86528,Parkmore Ind.,108254-00011-1,0,4380_7778208_4090306,4380_1319 -4380_78064,286,4380_86529,Parkmore Ind.,108256-00010-1,0,4380_7778208_4090306,4380_1319 -4380_78114,293,4380_8653,Dublin Airport,54892-00017-1,1,4380_7778208_1090105,4380_137 -4380_78064,291,4380_86530,Parkmore Ind.,108260-00013-1,0,4380_7778208_4090306,4380_1320 -4380_78064,289,4380_86531,Parkmore Ind.,108250-00014-1,0,4380_7778208_4090306,4380_1319 -4380_78064,287,4380_86532,Parkmore Ind.,108258-00012-1,0,4380_7778208_4090306,4380_1319 -4380_78064,292,4380_86533,Parkmore Ind.,108257-00016-1,0,4380_7778208_4090306,4380_1319 -4380_78064,290,4380_86534,Parkmore Ind.,108253-00015-1,0,4380_7778208_4090306,4380_1319 -4380_78064,294,4380_86535,Parkmore Ind.,108259-00018-1,0,4380_7778208_4090306,4380_1319 -4380_78064,295,4380_86536,Parkmore Ind.,108251-00019-1,0,4380_7778208_4090306,4380_1319 -4380_78064,293,4380_86537,Parkmore Ind.,108255-00017-1,0,4380_7778208_4090306,4380_1319 -4380_78064,296,4380_86538,Parkmore Ind.,108261-00021-1,0,4380_7778208_4090306,4380_1320 -4380_78114,294,4380_8654,Dublin Airport,54894-00018-1,1,4380_7778208_1090105,4380_137 -4380_78064,297,4380_86545,Parkmore Ind.,106957-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_86546,Parkmore Ind.,106550-00009-1,0,4380_7778208_4090301,4380_1320 -4380_78064,288,4380_86548,Parkmore Ind.,106557-00011-1,0,4380_7778208_4090301,4380_1320 -4380_78064,286,4380_86549,Parkmore Ind.,106559-00010-1,0,4380_7778208_4090301,4380_1320 -4380_78114,295,4380_8655,Dublin Airport,54890-00019-1,1,4380_7778208_1090105,4380_137 -4380_78064,291,4380_86550,Parkmore Ind.,106554-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_86551,Parkmore Ind.,106552-00014-1,0,4380_7778208_4090301,4380_1320 -4380_78064,287,4380_86552,Parkmore Ind.,106561-00012-1,0,4380_7778208_4090301,4380_1320 -4380_78064,292,4380_86553,Parkmore Ind.,106560-00016-1,0,4380_7778208_4090301,4380_1320 -4380_78064,290,4380_86554,Parkmore Ind.,106551-00015-1,0,4380_7778208_4090301,4380_1320 -4380_78064,294,4380_86555,Parkmore Ind.,106562-00018-1,0,4380_7778208_4090301,4380_1320 -4380_78064,295,4380_86556,Parkmore Ind.,106553-00019-1,0,4380_7778208_4090301,4380_1320 -4380_78064,293,4380_86557,Parkmore Ind.,106558-00017-1,0,4380_7778208_4090301,4380_1320 -4380_78064,296,4380_86558,Parkmore Ind.,106555-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,296,4380_8656,Dublin Airport,55260-00021-1,1,4380_7778208_1090115,4380_141 -4380_78064,285,4380_86564,Parkmore Ind.,108436-00009-1,0,4380_7778208_4090307,4380_1319 -4380_78064,288,4380_86566,Parkmore Ind.,108444-00011-1,0,4380_7778208_4090307,4380_1319 -4380_78064,286,4380_86567,Parkmore Ind.,108438-00010-1,0,4380_7778208_4090307,4380_1319 -4380_78064,291,4380_86568,Parkmore Ind.,107689-00013-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_86569,Parkmore Ind.,108442-00014-1,0,4380_7778208_4090307,4380_1319 -4380_78064,287,4380_86570,Parkmore Ind.,108440-00012-1,0,4380_7778208_4090307,4380_1319 -4380_78064,292,4380_86571,Parkmore Ind.,108439-00016-1,0,4380_7778208_4090307,4380_1319 -4380_78064,290,4380_86572,Parkmore Ind.,108437-00015-1,0,4380_7778208_4090307,4380_1319 -4380_78064,294,4380_86573,Parkmore Ind.,108441-00018-1,0,4380_7778208_4090307,4380_1319 -4380_78064,295,4380_86574,Parkmore Ind.,108443-00019-1,0,4380_7778208_4090307,4380_1319 -4380_78064,293,4380_86575,Parkmore Ind.,108445-00017-1,0,4380_7778208_4090307,4380_1319 -4380_78064,296,4380_86576,Parkmore Ind.,107690-00021-1,0,4380_7778208_4090304,4380_1320 -4380_78064,297,4380_86578,Parkmore Ind.,107327-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78064,285,4380_86584,Parkmore Ind.,106960-00009-1,0,4380_7778208_4090302,4380_1319 -4380_78064,288,4380_86586,Parkmore Ind.,106962-00011-1,0,4380_7778208_4090302,4380_1319 -4380_78064,286,4380_86587,Parkmore Ind.,106964-00010-1,0,4380_7778208_4090302,4380_1319 -4380_78064,291,4380_86588,Parkmore Ind.,107328-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_86589,Parkmore Ind.,106968-00014-1,0,4380_7778208_4090302,4380_1319 -4380_78064,287,4380_86590,Parkmore Ind.,106966-00012-1,0,4380_7778208_4090302,4380_1319 -4380_78064,292,4380_86591,Parkmore Ind.,106965-00016-1,0,4380_7778208_4090302,4380_1319 -4380_78064,290,4380_86592,Parkmore Ind.,106961-00015-1,0,4380_7778208_4090302,4380_1319 -4380_78064,294,4380_86593,Parkmore Ind.,106967-00018-1,0,4380_7778208_4090302,4380_1319 -4380_78064,295,4380_86594,Parkmore Ind.,106969-00019-1,0,4380_7778208_4090302,4380_1319 -4380_78064,293,4380_86595,Parkmore Ind.,106963-00017-1,0,4380_7778208_4090302,4380_1319 -4380_78064,296,4380_86596,Parkmore Ind.,107329-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78113,288,4380_866,Dundalk,49830-00011-1,0,4380_7778208_1000904,4380_11 -4380_78064,297,4380_86603,Parkmore Ind.,106565-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_86604,Parkmore Ind.,107330-00009-1,0,4380_7778208_4090303,4380_1320 -4380_78064,288,4380_86606,Parkmore Ind.,107336-00011-1,0,4380_7778208_4090303,4380_1320 -4380_78064,286,4380_86607,Parkmore Ind.,107332-00010-1,0,4380_7778208_4090303,4380_1320 -4380_78064,291,4380_86608,Parkmore Ind.,108010-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_86609,Parkmore Ind.,107338-00014-1,0,4380_7778208_4090303,4380_1320 -4380_78064,287,4380_86610,Parkmore Ind.,107334-00012-1,0,4380_7778208_4090303,4380_1320 -4380_78064,292,4380_86611,Parkmore Ind.,107333-00016-1,0,4380_7778208_4090303,4380_1320 -4380_78064,290,4380_86612,Parkmore Ind.,107331-00015-1,0,4380_7778208_4090303,4380_1320 -4380_78064,294,4380_86613,Parkmore Ind.,107335-00018-1,0,4380_7778208_4090303,4380_1320 -4380_78064,295,4380_86614,Parkmore Ind.,107339-00019-1,0,4380_7778208_4090303,4380_1320 -4380_78064,293,4380_86615,Parkmore Ind.,107337-00017-1,0,4380_7778208_4090303,4380_1320 -4380_78064,296,4380_86616,Parkmore Ind.,108011-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78064,285,4380_86622,Parkmore Ind.,107698-00009-1,0,4380_7778208_4090304,4380_1319 -4380_78064,288,4380_86624,Parkmore Ind.,107702-00011-1,0,4380_7778208_4090304,4380_1319 -4380_78064,286,4380_86625,Parkmore Ind.,107700-00010-1,0,4380_7778208_4090304,4380_1319 -4380_78064,291,4380_86626,Parkmore Ind.,106971-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_86627,Parkmore Ind.,107696-00014-1,0,4380_7778208_4090304,4380_1319 -4380_78064,287,4380_86628,Parkmore Ind.,107694-00012-1,0,4380_7778208_4090304,4380_1319 -4380_78064,292,4380_86629,Parkmore Ind.,107701-00016-1,0,4380_7778208_4090304,4380_1319 -4380_78064,290,4380_86630,Parkmore Ind.,107699-00015-1,0,4380_7778208_4090304,4380_1319 -4380_78064,294,4380_86631,Parkmore Ind.,107695-00018-1,0,4380_7778208_4090304,4380_1319 -4380_78064,295,4380_86632,Parkmore Ind.,107697-00019-1,0,4380_7778208_4090304,4380_1319 -4380_78064,293,4380_86633,Parkmore Ind.,107703-00017-1,0,4380_7778208_4090304,4380_1319 -4380_78064,296,4380_86634,Parkmore Ind.,106972-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78064,297,4380_86636,Parkmore Ind.,107704-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78114,285,4380_8664,Dublin Airport,5239-00009-1,1,4380_7778208_1090101,4380_137 -4380_78064,285,4380_86642,Parkmore Ind.,108014-00009-1,0,4380_7778208_4090305,4380_1319 -4380_78064,288,4380_86644,Parkmore Ind.,108018-00011-1,0,4380_7778208_4090305,4380_1319 -4380_78064,286,4380_86645,Parkmore Ind.,108012-00010-1,0,4380_7778208_4090305,4380_1319 -4380_78064,291,4380_86646,Parkmore Ind.,108274-00013-1,0,4380_7778208_4090306,4380_1320 -4380_78064,289,4380_86647,Parkmore Ind.,108016-00014-1,0,4380_7778208_4090305,4380_1319 -4380_78064,287,4380_86648,Parkmore Ind.,108020-00012-1,0,4380_7778208_4090305,4380_1319 -4380_78064,292,4380_86649,Parkmore Ind.,108013-00016-1,0,4380_7778208_4090305,4380_1319 -4380_78114,286,4380_8665,Dublin Airport,5249-00010-1,1,4380_7778208_1090101,4380_137 -4380_78064,290,4380_86650,Parkmore Ind.,108015-00015-1,0,4380_7778208_4090305,4380_1319 -4380_78064,294,4380_86651,Parkmore Ind.,108021-00018-1,0,4380_7778208_4090305,4380_1319 -4380_78064,295,4380_86652,Parkmore Ind.,108017-00019-1,0,4380_7778208_4090305,4380_1319 -4380_78064,293,4380_86653,Parkmore Ind.,108019-00017-1,0,4380_7778208_4090305,4380_1319 -4380_78064,296,4380_86654,Parkmore Ind.,108275-00021-1,0,4380_7778208_4090306,4380_1320 -4380_78114,297,4380_8666,Dublin Airport,5812-00008-1,1,4380_7778208_1090109,4380_139 -4380_78064,297,4380_86661,Parkmore Ind.,106973-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_86662,Parkmore Ind.,108648-00009-1,0,4380_7778208_4090308,4380_1320 -4380_78064,288,4380_86664,Parkmore Ind.,108654-00011-1,0,4380_7778208_4090308,4380_1320 -4380_78064,286,4380_86665,Parkmore Ind.,108650-00010-1,0,4380_7778208_4090308,4380_1320 -4380_78064,291,4380_86666,Parkmore Ind.,106576-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_86667,Parkmore Ind.,108646-00014-1,0,4380_7778208_4090308,4380_1320 -4380_78064,287,4380_86668,Parkmore Ind.,108652-00012-1,0,4380_7778208_4090308,4380_1320 -4380_78064,292,4380_86669,Parkmore Ind.,108651-00016-1,0,4380_7778208_4090308,4380_1320 -4380_78114,288,4380_8667,Dublin Airport,5259-00011-1,1,4380_7778208_1090101,4380_137 -4380_78064,290,4380_86670,Parkmore Ind.,108649-00015-1,0,4380_7778208_4090308,4380_1320 -4380_78064,294,4380_86671,Parkmore Ind.,108653-00018-1,0,4380_7778208_4090308,4380_1320 -4380_78064,295,4380_86672,Parkmore Ind.,108647-00019-1,0,4380_7778208_4090308,4380_1320 -4380_78064,293,4380_86673,Parkmore Ind.,108655-00017-1,0,4380_7778208_4090308,4380_1320 -4380_78064,296,4380_86674,Parkmore Ind.,106577-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,287,4380_8668,Dublin Airport,5269-00012-1,1,4380_7778208_1090101,4380_137 -4380_78064,285,4380_86680,Parkmore Ind.,108280-00009-1,0,4380_7778208_4090306,4380_1319 -4380_78064,288,4380_86682,Parkmore Ind.,108278-00011-1,0,4380_7778208_4090306,4380_1319 -4380_78064,286,4380_86683,Parkmore Ind.,108284-00010-1,0,4380_7778208_4090306,4380_1319 -4380_78064,291,4380_86684,Parkmore Ind.,107705-00013-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_86685,Parkmore Ind.,108282-00014-1,0,4380_7778208_4090306,4380_1319 -4380_78064,287,4380_86686,Parkmore Ind.,108276-00012-1,0,4380_7778208_4090306,4380_1319 -4380_78064,292,4380_86687,Parkmore Ind.,108285-00016-1,0,4380_7778208_4090306,4380_1319 -4380_78064,290,4380_86688,Parkmore Ind.,108281-00015-1,0,4380_7778208_4090306,4380_1319 -4380_78064,294,4380_86689,Parkmore Ind.,108277-00018-1,0,4380_7778208_4090306,4380_1319 -4380_78114,289,4380_8669,Dublin Airport,5229-00014-1,1,4380_7778208_1090101,4380_137 -4380_78064,295,4380_86690,Parkmore Ind.,108283-00019-1,0,4380_7778208_4090306,4380_1319 -4380_78064,293,4380_86691,Parkmore Ind.,108279-00017-1,0,4380_7778208_4090306,4380_1319 -4380_78064,296,4380_86692,Parkmore Ind.,107706-00021-1,0,4380_7778208_4090304,4380_1320 -4380_78064,297,4380_86694,Parkmore Ind.,107343-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78113,289,4380_867,Dundalk,49828-00014-1,0,4380_7778208_1000904,4380_11 -4380_78114,290,4380_8670,Dublin Airport,54678-00015-1,1,4380_7778208_1090101,4380_137 -4380_78064,285,4380_86700,Parkmore Ind.,108724-00009-1,0,4380_7778208_4090309,4380_1319 -4380_78064,288,4380_86702,Parkmore Ind.,108720-00011-1,0,4380_7778208_4090309,4380_1319 -4380_78064,286,4380_86703,Parkmore Ind.,108716-00010-1,0,4380_7778208_4090309,4380_1319 -4380_78064,291,4380_86704,Parkmore Ind.,107352-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_86705,Parkmore Ind.,108718-00014-1,0,4380_7778208_4090309,4380_1319 -4380_78064,287,4380_86706,Parkmore Ind.,108722-00012-1,0,4380_7778208_4090309,4380_1319 -4380_78064,292,4380_86707,Parkmore Ind.,108717-00016-1,0,4380_7778208_4090309,4380_1319 -4380_78064,290,4380_86708,Parkmore Ind.,108725-00015-1,0,4380_7778208_4090309,4380_1319 -4380_78064,294,4380_86709,Parkmore Ind.,108723-00018-1,0,4380_7778208_4090309,4380_1319 -4380_78114,291,4380_8671,Dublin Airport,5887-00013-1,1,4380_7778208_1090111,4380_141 -4380_78064,295,4380_86710,Parkmore Ind.,108719-00019-1,0,4380_7778208_4090309,4380_1319 -4380_78064,293,4380_86711,Parkmore Ind.,108721-00017-1,0,4380_7778208_4090309,4380_1319 -4380_78064,296,4380_86712,Parkmore Ind.,107353-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78064,297,4380_86719,Parkmore Ind.,106587-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78114,292,4380_8672,Dublin Airport,54680-00016-1,1,4380_7778208_1090101,4380_137 -4380_78064,285,4380_86720,Parkmore Ind.,106583-00009-1,0,4380_7778208_4090301,4380_1320 -4380_78064,288,4380_86722,Parkmore Ind.,106590-00011-1,0,4380_7778208_4090301,4380_1320 -4380_78064,286,4380_86723,Parkmore Ind.,106585-00010-1,0,4380_7778208_4090301,4380_1320 -4380_78064,291,4380_86724,Parkmore Ind.,108024-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_86725,Parkmore Ind.,106581-00014-1,0,4380_7778208_4090301,4380_1320 -4380_78064,287,4380_86726,Parkmore Ind.,106579-00012-1,0,4380_7778208_4090301,4380_1320 -4380_78064,292,4380_86727,Parkmore Ind.,106586-00016-1,0,4380_7778208_4090301,4380_1320 -4380_78064,290,4380_86728,Parkmore Ind.,106584-00015-1,0,4380_7778208_4090301,4380_1320 -4380_78064,294,4380_86729,Parkmore Ind.,106580-00018-1,0,4380_7778208_4090301,4380_1320 -4380_78114,293,4380_8673,Dublin Airport,54682-00017-1,1,4380_7778208_1090101,4380_137 -4380_78064,295,4380_86730,Parkmore Ind.,106582-00019-1,0,4380_7778208_4090301,4380_1320 -4380_78064,293,4380_86731,Parkmore Ind.,106591-00017-1,0,4380_7778208_4090301,4380_1320 -4380_78064,296,4380_86732,Parkmore Ind.,108025-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78064,285,4380_86738,Parkmore Ind.,108464-00009-1,0,4380_7778208_4090307,4380_1319 -4380_78114,294,4380_8674,Dublin Airport,54679-00018-1,1,4380_7778208_1090101,4380_137 -4380_78064,288,4380_86740,Parkmore Ind.,108460-00011-1,0,4380_7778208_4090307,4380_1319 -4380_78064,286,4380_86741,Parkmore Ind.,108458-00010-1,0,4380_7778208_4090307,4380_1319 -4380_78064,291,4380_86742,Parkmore Ind.,106987-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_86743,Parkmore Ind.,108462-00014-1,0,4380_7778208_4090307,4380_1319 -4380_78064,287,4380_86744,Parkmore Ind.,108456-00012-1,0,4380_7778208_4090307,4380_1319 -4380_78064,292,4380_86745,Parkmore Ind.,108459-00016-1,0,4380_7778208_4090307,4380_1319 -4380_78064,290,4380_86746,Parkmore Ind.,108465-00015-1,0,4380_7778208_4090307,4380_1319 -4380_78064,294,4380_86747,Parkmore Ind.,108457-00018-1,0,4380_7778208_4090307,4380_1319 -4380_78064,295,4380_86748,Parkmore Ind.,108463-00019-1,0,4380_7778208_4090307,4380_1319 -4380_78064,293,4380_86749,Parkmore Ind.,108461-00017-1,0,4380_7778208_4090307,4380_1319 -4380_78114,295,4380_8675,Dublin Airport,54681-00019-1,1,4380_7778208_1090101,4380_137 -4380_78064,296,4380_86750,Parkmore Ind.,106988-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78064,297,4380_86752,Parkmore Ind.,107720-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_86758,Parkmore Ind.,106991-00009-1,0,4380_7778208_4090302,4380_1319 -4380_78114,296,4380_8676,Dublin Airport,55142-00021-1,1,4380_7778208_1090111,4380_141 -4380_78064,288,4380_86760,Parkmore Ind.,106993-00011-1,0,4380_7778208_4090302,4380_1319 -4380_78064,286,4380_86761,Parkmore Ind.,106997-00010-1,0,4380_7778208_4090302,4380_1319 -4380_78064,291,4380_86762,Parkmore Ind.,108288-00013-1,0,4380_7778208_4090306,4380_1320 -4380_78064,289,4380_86763,Parkmore Ind.,106995-00014-1,0,4380_7778208_4090302,4380_1319 -4380_78064,287,4380_86764,Parkmore Ind.,106989-00012-1,0,4380_7778208_4090302,4380_1319 -4380_78064,292,4380_86765,Parkmore Ind.,106998-00016-1,0,4380_7778208_4090302,4380_1319 -4380_78064,290,4380_86766,Parkmore Ind.,106992-00015-1,0,4380_7778208_4090302,4380_1319 -4380_78064,294,4380_86767,Parkmore Ind.,106990-00018-1,0,4380_7778208_4090302,4380_1319 -4380_78064,295,4380_86768,Parkmore Ind.,106996-00019-1,0,4380_7778208_4090302,4380_1319 -4380_78064,293,4380_86769,Parkmore Ind.,106994-00017-1,0,4380_7778208_4090302,4380_1319 -4380_78064,296,4380_86770,Parkmore Ind.,108289-00021-1,0,4380_7778208_4090306,4380_1320 -4380_78064,297,4380_86777,Parkmore Ind.,106999-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_86778,Parkmore Ind.,107365-00009-1,0,4380_7778208_4090303,4380_1320 -4380_78064,288,4380_86780,Parkmore Ind.,107359-00011-1,0,4380_7778208_4090303,4380_1320 -4380_78064,286,4380_86781,Parkmore Ind.,107367-00010-1,0,4380_7778208_4090303,4380_1320 -4380_78064,291,4380_86782,Parkmore Ind.,106592-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_86783,Parkmore Ind.,107363-00014-1,0,4380_7778208_4090303,4380_1320 -4380_78064,287,4380_86784,Parkmore Ind.,107361-00012-1,0,4380_7778208_4090303,4380_1320 -4380_78064,292,4380_86785,Parkmore Ind.,107368-00016-1,0,4380_7778208_4090303,4380_1320 -4380_78064,290,4380_86786,Parkmore Ind.,107366-00015-1,0,4380_7778208_4090303,4380_1320 -4380_78064,294,4380_86787,Parkmore Ind.,107362-00018-1,0,4380_7778208_4090303,4380_1320 -4380_78064,295,4380_86788,Parkmore Ind.,107364-00019-1,0,4380_7778208_4090303,4380_1320 -4380_78064,293,4380_86789,Parkmore Ind.,107360-00017-1,0,4380_7778208_4090303,4380_1320 -4380_78064,296,4380_86790,Parkmore Ind.,106593-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78064,285,4380_86796,Parkmore Ind.,107729-00009-1,0,4380_7778208_4090304,4380_1319 -4380_78064,288,4380_86798,Parkmore Ind.,107731-00011-1,0,4380_7778208_4090304,4380_1319 -4380_78064,286,4380_86799,Parkmore Ind.,107721-00010-1,0,4380_7778208_4090304,4380_1319 -4380_78113,290,4380_868,Dundalk,49823-00015-1,0,4380_7778208_1000904,4380_11 -4380_78064,291,4380_86800,Parkmore Ind.,107723-00013-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_86801,Parkmore Ind.,107727-00014-1,0,4380_7778208_4090304,4380_1319 -4380_78064,287,4380_86802,Parkmore Ind.,107725-00012-1,0,4380_7778208_4090304,4380_1319 -4380_78064,292,4380_86803,Parkmore Ind.,107722-00016-1,0,4380_7778208_4090304,4380_1319 -4380_78064,290,4380_86804,Parkmore Ind.,107730-00015-1,0,4380_7778208_4090304,4380_1319 -4380_78064,294,4380_86805,Parkmore Ind.,107726-00018-1,0,4380_7778208_4090304,4380_1319 -4380_78064,295,4380_86806,Parkmore Ind.,107728-00019-1,0,4380_7778208_4090304,4380_1319 -4380_78064,293,4380_86807,Parkmore Ind.,107732-00017-1,0,4380_7778208_4090304,4380_1319 -4380_78064,296,4380_86808,Parkmore Ind.,107724-00021-1,0,4380_7778208_4090304,4380_1320 -4380_78064,297,4380_86810,Parkmore Ind.,107369-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78064,285,4380_86816,Parkmore Ind.,108038-00009-1,0,4380_7778208_4090305,4380_1319 -4380_78064,288,4380_86818,Parkmore Ind.,108046-00011-1,0,4380_7778208_4090305,4380_1319 -4380_78064,286,4380_86819,Parkmore Ind.,108044-00010-1,0,4380_7778208_4090305,4380_1319 -4380_78064,291,4380_86820,Parkmore Ind.,107370-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_86821,Parkmore Ind.,108040-00014-1,0,4380_7778208_4090305,4380_1319 -4380_78064,287,4380_86822,Parkmore Ind.,108042-00012-1,0,4380_7778208_4090305,4380_1319 -4380_78064,292,4380_86823,Parkmore Ind.,108045-00016-1,0,4380_7778208_4090305,4380_1319 -4380_78064,290,4380_86824,Parkmore Ind.,108039-00015-1,0,4380_7778208_4090305,4380_1319 -4380_78064,294,4380_86825,Parkmore Ind.,108043-00018-1,0,4380_7778208_4090305,4380_1319 -4380_78064,295,4380_86826,Parkmore Ind.,108041-00019-1,0,4380_7778208_4090305,4380_1319 -4380_78064,293,4380_86827,Parkmore Ind.,108047-00017-1,0,4380_7778208_4090305,4380_1319 -4380_78064,296,4380_86828,Parkmore Ind.,107371-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78064,297,4380_86835,Parkmore Ind.,106607-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_86836,Parkmore Ind.,108670-00009-1,0,4380_7778208_4090308,4380_1320 -4380_78064,288,4380_86838,Parkmore Ind.,108668-00011-1,0,4380_7778208_4090308,4380_1320 -4380_78064,286,4380_86839,Parkmore Ind.,108672-00010-1,0,4380_7778208_4090308,4380_1320 -4380_78114,285,4380_8684,Dublin Airport,5315-00009-1,1,4380_7778208_1090102,4380_137 -4380_78064,291,4380_86840,Parkmore Ind.,108048-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_86841,Parkmore Ind.,108674-00014-1,0,4380_7778208_4090308,4380_1320 -4380_78064,287,4380_86842,Parkmore Ind.,108666-00012-1,0,4380_7778208_4090308,4380_1320 -4380_78064,292,4380_86843,Parkmore Ind.,108673-00016-1,0,4380_7778208_4090308,4380_1320 -4380_78064,290,4380_86844,Parkmore Ind.,108671-00015-1,0,4380_7778208_4090308,4380_1320 -4380_78064,294,4380_86845,Parkmore Ind.,108667-00018-1,0,4380_7778208_4090308,4380_1320 -4380_78064,295,4380_86846,Parkmore Ind.,108675-00019-1,0,4380_7778208_4090308,4380_1320 -4380_78064,293,4380_86847,Parkmore Ind.,108669-00017-1,0,4380_7778208_4090308,4380_1320 -4380_78064,296,4380_86848,Parkmore Ind.,108049-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78114,286,4380_8685,Dublin Airport,5325-00010-1,1,4380_7778208_1090102,4380_137 -4380_78064,285,4380_86854,Parkmore Ind.,108306-00009-1,0,4380_7778208_4090306,4380_1319 -4380_78064,288,4380_86856,Parkmore Ind.,108304-00011-1,0,4380_7778208_4090306,4380_1319 -4380_78064,286,4380_86857,Parkmore Ind.,108302-00010-1,0,4380_7778208_4090306,4380_1319 -4380_78064,291,4380_86858,Parkmore Ind.,107013-00013-1,0,4380_7778208_4090302,4380_1320 -4380_78064,289,4380_86859,Parkmore Ind.,108308-00014-1,0,4380_7778208_4090306,4380_1319 -4380_78114,297,4380_8686,Dublin Airport,5867-00008-1,1,4380_7778208_1090110,4380_139 -4380_78064,287,4380_86860,Parkmore Ind.,108310-00012-1,0,4380_7778208_4090306,4380_1319 -4380_78064,292,4380_86861,Parkmore Ind.,108303-00016-1,0,4380_7778208_4090306,4380_1319 -4380_78064,290,4380_86862,Parkmore Ind.,108307-00015-1,0,4380_7778208_4090306,4380_1319 -4380_78064,294,4380_86863,Parkmore Ind.,108311-00018-1,0,4380_7778208_4090306,4380_1319 -4380_78064,295,4380_86864,Parkmore Ind.,108309-00019-1,0,4380_7778208_4090306,4380_1319 -4380_78064,293,4380_86865,Parkmore Ind.,108305-00017-1,0,4380_7778208_4090306,4380_1319 -4380_78064,296,4380_86866,Parkmore Ind.,107014-00021-1,0,4380_7778208_4090302,4380_1320 -4380_78064,297,4380_86868,Parkmore Ind.,107736-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78114,288,4380_8687,Dublin Airport,5335-00011-1,1,4380_7778208_1090102,4380_137 -4380_78064,285,4380_86874,Parkmore Ind.,106616-00009-1,0,4380_7778208_4090301,4380_1319 -4380_78064,288,4380_86876,Parkmore Ind.,106610-00011-1,0,4380_7778208_4090301,4380_1319 -4380_78064,286,4380_86877,Parkmore Ind.,106614-00010-1,0,4380_7778208_4090301,4380_1319 -4380_78064,291,4380_86878,Parkmore Ind.,108312-00013-1,0,4380_7778208_4090306,4380_1320 -4380_78064,289,4380_86879,Parkmore Ind.,106608-00014-1,0,4380_7778208_4090301,4380_1319 -4380_78114,287,4380_8688,Dublin Airport,5345-00012-1,1,4380_7778208_1090102,4380_137 -4380_78064,287,4380_86880,Parkmore Ind.,106612-00012-1,0,4380_7778208_4090301,4380_1319 -4380_78064,292,4380_86881,Parkmore Ind.,106615-00016-1,0,4380_7778208_4090301,4380_1319 -4380_78064,290,4380_86882,Parkmore Ind.,106617-00015-1,0,4380_7778208_4090301,4380_1319 -4380_78064,294,4380_86883,Parkmore Ind.,106613-00018-1,0,4380_7778208_4090301,4380_1319 -4380_78064,295,4380_86884,Parkmore Ind.,106609-00019-1,0,4380_7778208_4090301,4380_1319 -4380_78064,293,4380_86885,Parkmore Ind.,106611-00017-1,0,4380_7778208_4090301,4380_1319 -4380_78064,296,4380_86886,Parkmore Ind.,108313-00021-1,0,4380_7778208_4090306,4380_1320 -4380_78114,289,4380_8689,Dublin Airport,5305-00014-1,1,4380_7778208_1090102,4380_137 -4380_78064,297,4380_86893,Parkmore Ind.,107015-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_86894,Parkmore Ind.,107020-00009-1,0,4380_7778208_4090302,4380_1320 -4380_78064,288,4380_86896,Parkmore Ind.,107022-00011-1,0,4380_7778208_4090302,4380_1320 -4380_78064,286,4380_86897,Parkmore Ind.,107018-00010-1,0,4380_7778208_4090302,4380_1320 -4380_78064,291,4380_86898,Parkmore Ind.,106618-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_86899,Parkmore Ind.,107024-00014-1,0,4380_7778208_4090302,4380_1320 -4380_78113,292,4380_869,Dundalk,49825-00016-1,0,4380_7778208_1000904,4380_11 -4380_78114,290,4380_8690,Dublin Airport,54733-00015-1,1,4380_7778208_1090102,4380_137 -4380_78064,287,4380_86900,Parkmore Ind.,107016-00012-1,0,4380_7778208_4090302,4380_1320 -4380_78064,292,4380_86901,Parkmore Ind.,107019-00016-1,0,4380_7778208_4090302,4380_1320 -4380_78064,290,4380_86902,Parkmore Ind.,107021-00015-1,0,4380_7778208_4090302,4380_1320 -4380_78064,294,4380_86903,Parkmore Ind.,107017-00018-1,0,4380_7778208_4090302,4380_1320 -4380_78064,295,4380_86904,Parkmore Ind.,107025-00019-1,0,4380_7778208_4090302,4380_1320 -4380_78064,293,4380_86905,Parkmore Ind.,107023-00017-1,0,4380_7778208_4090302,4380_1320 -4380_78064,296,4380_86906,Parkmore Ind.,106619-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,291,4380_8691,Dublin Airport,5952-00013-1,1,4380_7778208_1090112,4380_141 -4380_78064,285,4380_86912,Parkmore Ind.,107389-00009-1,0,4380_7778208_4090303,4380_1319 -4380_78064,288,4380_86914,Parkmore Ind.,107387-00011-1,0,4380_7778208_4090303,4380_1319 -4380_78064,286,4380_86915,Parkmore Ind.,107393-00010-1,0,4380_7778208_4090303,4380_1319 -4380_78064,291,4380_86916,Parkmore Ind.,107747-00013-1,0,4380_7778208_4090304,4380_1320 -4380_78064,289,4380_86917,Parkmore Ind.,107385-00014-1,0,4380_7778208_4090303,4380_1319 -4380_78064,287,4380_86918,Parkmore Ind.,107391-00012-1,0,4380_7778208_4090303,4380_1319 -4380_78064,292,4380_86919,Parkmore Ind.,107394-00016-1,0,4380_7778208_4090303,4380_1319 -4380_78114,292,4380_8692,Dublin Airport,54736-00016-1,1,4380_7778208_1090102,4380_137 -4380_78064,290,4380_86920,Parkmore Ind.,107390-00015-1,0,4380_7778208_4090303,4380_1319 -4380_78064,294,4380_86921,Parkmore Ind.,107392-00018-1,0,4380_7778208_4090303,4380_1319 -4380_78064,295,4380_86922,Parkmore Ind.,107386-00019-1,0,4380_7778208_4090303,4380_1319 -4380_78064,293,4380_86923,Parkmore Ind.,107388-00017-1,0,4380_7778208_4090303,4380_1319 -4380_78064,296,4380_86924,Parkmore Ind.,107748-00021-1,0,4380_7778208_4090304,4380_1320 -4380_78064,297,4380_86926,Parkmore Ind.,107395-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78114,293,4380_8693,Dublin Airport,54734-00017-1,1,4380_7778208_1090102,4380_137 -4380_78064,285,4380_86932,Parkmore Ind.,107750-00009-1,0,4380_7778208_4090304,4380_1319 -4380_78064,288,4380_86934,Parkmore Ind.,107756-00011-1,0,4380_7778208_4090304,4380_1319 -4380_78064,286,4380_86935,Parkmore Ind.,107752-00010-1,0,4380_7778208_4090304,4380_1319 -4380_78064,291,4380_86936,Parkmore Ind.,107396-00013-1,0,4380_7778208_4090303,4380_1320 -4380_78064,289,4380_86937,Parkmore Ind.,107758-00014-1,0,4380_7778208_4090304,4380_1319 -4380_78064,287,4380_86938,Parkmore Ind.,107754-00012-1,0,4380_7778208_4090304,4380_1319 -4380_78064,292,4380_86939,Parkmore Ind.,107753-00016-1,0,4380_7778208_4090304,4380_1319 -4380_78114,294,4380_8694,Dublin Airport,54732-00018-1,1,4380_7778208_1090102,4380_137 -4380_78064,290,4380_86940,Parkmore Ind.,107751-00015-1,0,4380_7778208_4090304,4380_1319 -4380_78064,294,4380_86941,Parkmore Ind.,107755-00018-1,0,4380_7778208_4090304,4380_1319 -4380_78064,295,4380_86942,Parkmore Ind.,107759-00019-1,0,4380_7778208_4090304,4380_1319 -4380_78064,293,4380_86943,Parkmore Ind.,107757-00017-1,0,4380_7778208_4090304,4380_1319 -4380_78064,296,4380_86944,Parkmore Ind.,107397-00021-1,0,4380_7778208_4090303,4380_1320 -4380_78114,295,4380_8695,Dublin Airport,54735-00019-1,1,4380_7778208_1090102,4380_137 -4380_78064,297,4380_86951,Parkmore Ind.,106633-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_86952,Parkmore Ind.,108068-00009-1,0,4380_7778208_4090305,4380_1320 -4380_78064,288,4380_86954,Parkmore Ind.,108066-00011-1,0,4380_7778208_4090305,4380_1320 -4380_78064,286,4380_86955,Parkmore Ind.,108064-00010-1,0,4380_7778208_4090305,4380_1320 -4380_78064,291,4380_86956,Parkmore Ind.,108072-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_86957,Parkmore Ind.,108070-00014-1,0,4380_7778208_4090305,4380_1320 -4380_78064,287,4380_86958,Parkmore Ind.,108062-00012-1,0,4380_7778208_4090305,4380_1320 -4380_78064,292,4380_86959,Parkmore Ind.,108065-00016-1,0,4380_7778208_4090305,4380_1320 -4380_78114,296,4380_8696,Dublin Airport,55182-00021-1,1,4380_7778208_1090112,4380_141 -4380_78064,290,4380_86960,Parkmore Ind.,108069-00015-1,0,4380_7778208_4090305,4380_1320 -4380_78064,294,4380_86961,Parkmore Ind.,108063-00018-1,0,4380_7778208_4090305,4380_1320 -4380_78064,295,4380_86962,Parkmore Ind.,108071-00019-1,0,4380_7778208_4090305,4380_1320 -4380_78064,293,4380_86963,Parkmore Ind.,108067-00017-1,0,4380_7778208_4090305,4380_1320 -4380_78064,296,4380_86964,Parkmore Ind.,108073-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78064,297,4380_86971,Parkmore Ind.,107762-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_86972,Parkmore Ind.,108694-00009-1,0,4380_7778208_4090308,4380_1320 -4380_78064,288,4380_86974,Parkmore Ind.,108686-00011-1,0,4380_7778208_4090308,4380_1320 -4380_78064,286,4380_86975,Parkmore Ind.,108690-00010-1,0,4380_7778208_4090308,4380_1320 -4380_78064,291,4380_86976,Parkmore Ind.,108316-00013-1,0,4380_7778208_4090306,4380_1321 -4380_78064,289,4380_86977,Parkmore Ind.,108692-00014-1,0,4380_7778208_4090308,4380_1320 -4380_78064,287,4380_86978,Parkmore Ind.,108688-00012-1,0,4380_7778208_4090308,4380_1320 -4380_78064,292,4380_86979,Parkmore Ind.,108691-00016-1,0,4380_7778208_4090308,4380_1320 -4380_78064,290,4380_86980,Parkmore Ind.,108695-00015-1,0,4380_7778208_4090308,4380_1320 -4380_78064,294,4380_86981,Parkmore Ind.,108689-00018-1,0,4380_7778208_4090308,4380_1320 -4380_78064,295,4380_86982,Parkmore Ind.,108693-00019-1,0,4380_7778208_4090308,4380_1320 -4380_78064,293,4380_86983,Parkmore Ind.,108687-00017-1,0,4380_7778208_4090308,4380_1320 -4380_78064,296,4380_86984,Parkmore Ind.,108317-00021-1,0,4380_7778208_4090306,4380_1321 -4380_78064,297,4380_86991,Parkmore Ind.,107045-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_86992,Parkmore Ind.,107043-00009-1,0,4380_7778208_4090302,4380_1320 -4380_78064,288,4380_86994,Parkmore Ind.,107048-00011-1,0,4380_7778208_4090302,4380_1320 -4380_78064,286,4380_86995,Parkmore Ind.,107039-00010-1,0,4380_7778208_4090302,4380_1320 -4380_78064,291,4380_86996,Parkmore Ind.,106634-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_86997,Parkmore Ind.,107041-00014-1,0,4380_7778208_4090302,4380_1320 -4380_78064,287,4380_86998,Parkmore Ind.,107046-00012-1,0,4380_7778208_4090302,4380_1320 -4380_78064,292,4380_86999,Parkmore Ind.,107040-00016-1,0,4380_7778208_4090302,4380_1320 -4380_78113,293,4380_870,Dundalk,49831-00017-1,0,4380_7778208_1000904,4380_11 -4380_78064,290,4380_87000,Parkmore Ind.,107044-00015-1,0,4380_7778208_4090302,4380_1320 -4380_78064,294,4380_87001,Parkmore Ind.,107047-00018-1,0,4380_7778208_4090302,4380_1320 -4380_78064,295,4380_87002,Parkmore Ind.,107042-00019-1,0,4380_7778208_4090302,4380_1320 -4380_78064,293,4380_87003,Parkmore Ind.,107049-00017-1,0,4380_7778208_4090302,4380_1320 -4380_78064,296,4380_87004,Parkmore Ind.,106635-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78064,297,4380_87011,Parkmore Ind.,107409-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78064,285,4380_87012,Parkmore Ind.,108480-00009-1,0,4380_7778208_4090307,4380_1320 -4380_78064,288,4380_87014,Parkmore Ind.,108484-00011-1,0,4380_7778208_4090307,4380_1320 -4380_78064,286,4380_87015,Parkmore Ind.,108476-00010-1,0,4380_7778208_4090307,4380_1320 -4380_78064,291,4380_87016,Parkmore Ind.,107764-00013-1,0,4380_7778208_4090304,4380_1321 -4380_78064,289,4380_87017,Parkmore Ind.,108478-00014-1,0,4380_7778208_4090307,4380_1320 -4380_78064,287,4380_87018,Parkmore Ind.,108482-00012-1,0,4380_7778208_4090307,4380_1320 -4380_78064,292,4380_87019,Parkmore Ind.,108477-00016-1,0,4380_7778208_4090307,4380_1320 -4380_78064,290,4380_87020,Parkmore Ind.,108481-00015-1,0,4380_7778208_4090307,4380_1320 -4380_78064,294,4380_87021,Parkmore Ind.,108483-00018-1,0,4380_7778208_4090307,4380_1320 -4380_78064,295,4380_87022,Parkmore Ind.,108479-00019-1,0,4380_7778208_4090307,4380_1320 -4380_78064,293,4380_87023,Parkmore Ind.,108485-00017-1,0,4380_7778208_4090307,4380_1320 -4380_78064,296,4380_87024,Parkmore Ind.,107765-00021-1,0,4380_7778208_4090304,4380_1321 -4380_78064,297,4380_87031,Parkmore Ind.,106639-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_87032,Parkmore Ind.,107410-00009-1,0,4380_7778208_4090303,4380_1320 -4380_78064,288,4380_87034,Parkmore Ind.,107416-00011-1,0,4380_7778208_4090303,4380_1320 -4380_78064,286,4380_87035,Parkmore Ind.,107412-00010-1,0,4380_7778208_4090303,4380_1320 -4380_78064,291,4380_87036,Parkmore Ind.,108086-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_87037,Parkmore Ind.,107414-00014-1,0,4380_7778208_4090303,4380_1320 -4380_78064,287,4380_87038,Parkmore Ind.,107418-00012-1,0,4380_7778208_4090303,4380_1320 -4380_78064,292,4380_87039,Parkmore Ind.,107413-00016-1,0,4380_7778208_4090303,4380_1320 -4380_78114,285,4380_8704,Dublin Airport,5387-00009-1,1,4380_7778208_1090103,4380_137 -4380_78064,290,4380_87040,Parkmore Ind.,107411-00015-1,0,4380_7778208_4090303,4380_1320 -4380_78064,294,4380_87041,Parkmore Ind.,107419-00018-1,0,4380_7778208_4090303,4380_1320 -4380_78064,295,4380_87042,Parkmore Ind.,107415-00019-1,0,4380_7778208_4090303,4380_1320 -4380_78064,293,4380_87043,Parkmore Ind.,107417-00017-1,0,4380_7778208_4090303,4380_1320 -4380_78064,296,4380_87044,Parkmore Ind.,108087-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78114,286,4380_8705,Dublin Airport,5397-00010-1,1,4380_7778208_1090103,4380_137 -4380_78064,297,4380_87051,Parkmore Ind.,107776-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_87052,Parkmore Ind.,106642-00009-1,0,4380_7778208_4090301,4380_1320 -4380_78064,288,4380_87054,Parkmore Ind.,106644-00011-1,0,4380_7778208_4090301,4380_1320 -4380_78064,286,4380_87055,Parkmore Ind.,106648-00010-1,0,4380_7778208_4090301,4380_1320 -4380_78064,291,4380_87056,Parkmore Ind.,108320-00013-1,0,4380_7778208_4090306,4380_1321 -4380_78064,289,4380_87057,Parkmore Ind.,106646-00014-1,0,4380_7778208_4090301,4380_1320 -4380_78064,287,4380_87058,Parkmore Ind.,106640-00012-1,0,4380_7778208_4090301,4380_1320 -4380_78064,292,4380_87059,Parkmore Ind.,106649-00016-1,0,4380_7778208_4090301,4380_1320 -4380_78114,297,4380_8706,Dublin Airport,5897-00008-1,1,4380_7778208_1090111,4380_139 -4380_78064,290,4380_87060,Parkmore Ind.,106643-00015-1,0,4380_7778208_4090301,4380_1320 -4380_78064,294,4380_87061,Parkmore Ind.,106641-00018-1,0,4380_7778208_4090301,4380_1320 -4380_78064,295,4380_87062,Parkmore Ind.,106647-00019-1,0,4380_7778208_4090301,4380_1320 -4380_78064,293,4380_87063,Parkmore Ind.,106645-00017-1,0,4380_7778208_4090301,4380_1320 -4380_78064,296,4380_87064,Parkmore Ind.,108321-00021-1,0,4380_7778208_4090306,4380_1321 -4380_78114,288,4380_8707,Dublin Airport,5407-00011-1,1,4380_7778208_1090103,4380_137 -4380_78064,297,4380_87071,Parkmore Ind.,107061-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_87072,Parkmore Ind.,107783-00009-1,0,4380_7778208_4090304,4380_1320 -4380_78064,288,4380_87074,Parkmore Ind.,107781-00011-1,0,4380_7778208_4090304,4380_1320 -4380_78064,286,4380_87075,Parkmore Ind.,107779-00010-1,0,4380_7778208_4090304,4380_1320 -4380_78064,291,4380_87076,Parkmore Ind.,106651-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_87077,Parkmore Ind.,107787-00014-1,0,4380_7778208_4090304,4380_1320 -4380_78064,287,4380_87078,Parkmore Ind.,107785-00012-1,0,4380_7778208_4090304,4380_1320 -4380_78064,292,4380_87079,Parkmore Ind.,107780-00016-1,0,4380_7778208_4090304,4380_1320 -4380_78114,287,4380_8708,Dublin Airport,5417-00012-1,1,4380_7778208_1090103,4380_137 -4380_78064,290,4380_87080,Parkmore Ind.,107784-00015-1,0,4380_7778208_4090304,4380_1320 -4380_78064,294,4380_87081,Parkmore Ind.,107786-00018-1,0,4380_7778208_4090304,4380_1320 -4380_78064,295,4380_87082,Parkmore Ind.,107788-00019-1,0,4380_7778208_4090304,4380_1320 -4380_78064,293,4380_87083,Parkmore Ind.,107782-00017-1,0,4380_7778208_4090304,4380_1320 -4380_78064,296,4380_87084,Parkmore Ind.,106652-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,289,4380_8709,Dublin Airport,5377-00014-1,1,4380_7778208_1090103,4380_137 -4380_78064,297,4380_87091,Parkmore Ind.,107421-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78064,285,4380_87092,Parkmore Ind.,107068-00009-1,0,4380_7778208_4090302,4380_1320 -4380_78064,288,4380_87094,Parkmore Ind.,107066-00011-1,0,4380_7778208_4090302,4380_1320 -4380_78064,286,4380_87095,Parkmore Ind.,107062-00010-1,0,4380_7778208_4090302,4380_1320 -4380_78064,291,4380_87096,Parkmore Ind.,107790-00013-1,0,4380_7778208_4090304,4380_1321 -4380_78064,289,4380_87097,Parkmore Ind.,107064-00014-1,0,4380_7778208_4090302,4380_1320 -4380_78064,287,4380_87098,Parkmore Ind.,107070-00012-1,0,4380_7778208_4090302,4380_1320 -4380_78064,292,4380_87099,Parkmore Ind.,107063-00016-1,0,4380_7778208_4090302,4380_1320 -4380_78113,294,4380_871,Dundalk,49827-00018-1,0,4380_7778208_1000904,4380_11 -4380_78114,290,4380_8710,Dublin Airport,54790-00015-1,1,4380_7778208_1090103,4380_137 -4380_78064,290,4380_87100,Parkmore Ind.,107069-00015-1,0,4380_7778208_4090302,4380_1320 -4380_78064,294,4380_87101,Parkmore Ind.,107071-00018-1,0,4380_7778208_4090302,4380_1320 -4380_78064,295,4380_87102,Parkmore Ind.,107065-00019-1,0,4380_7778208_4090302,4380_1320 -4380_78064,293,4380_87103,Parkmore Ind.,107067-00017-1,0,4380_7778208_4090302,4380_1320 -4380_78064,296,4380_87104,Parkmore Ind.,107791-00021-1,0,4380_7778208_4090304,4380_1321 -4380_78114,291,4380_8711,Dublin Airport,5982-00013-1,1,4380_7778208_1090113,4380_141 -4380_78064,297,4380_87111,Parkmore Ind.,106663-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_87112,Parkmore Ind.,108504-00009-1,0,4380_7778208_4090307,4380_1320 -4380_78064,288,4380_87114,Parkmore Ind.,108498-00011-1,0,4380_7778208_4090307,4380_1320 -4380_78064,286,4380_87115,Parkmore Ind.,108500-00010-1,0,4380_7778208_4090307,4380_1320 -4380_78064,291,4380_87116,Parkmore Ind.,108090-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_87117,Parkmore Ind.,108502-00014-1,0,4380_7778208_4090307,4380_1320 -4380_78064,287,4380_87118,Parkmore Ind.,108496-00012-1,0,4380_7778208_4090307,4380_1320 -4380_78064,292,4380_87119,Parkmore Ind.,108501-00016-1,0,4380_7778208_4090307,4380_1320 -4380_78114,292,4380_8712,Dublin Airport,54788-00016-1,1,4380_7778208_1090103,4380_137 -4380_78064,290,4380_87120,Parkmore Ind.,108505-00015-1,0,4380_7778208_4090307,4380_1320 -4380_78064,294,4380_87121,Parkmore Ind.,108497-00018-1,0,4380_7778208_4090307,4380_1320 -4380_78064,295,4380_87122,Parkmore Ind.,108503-00019-1,0,4380_7778208_4090307,4380_1320 -4380_78064,293,4380_87123,Parkmore Ind.,108499-00017-1,0,4380_7778208_4090307,4380_1320 -4380_78064,296,4380_87124,Parkmore Ind.,108091-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78114,293,4380_8713,Dublin Airport,54789-00017-1,1,4380_7778208_1090103,4380_137 -4380_78064,297,4380_87131,Parkmore Ind.,107800-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_87132,Parkmore Ind.,106666-00009-1,0,4380_7778208_4090301,4380_1320 -4380_78064,288,4380_87134,Parkmore Ind.,106672-00011-1,0,4380_7778208_4090301,4380_1320 -4380_78064,286,4380_87135,Parkmore Ind.,106668-00010-1,0,4380_7778208_4090301,4380_1320 -4380_78064,291,4380_87136,Parkmore Ind.,108324-00013-1,0,4380_7778208_4090306,4380_1321 -4380_78064,289,4380_87137,Parkmore Ind.,106674-00014-1,0,4380_7778208_4090301,4380_1320 -4380_78064,287,4380_87138,Parkmore Ind.,106670-00012-1,0,4380_7778208_4090301,4380_1320 -4380_78064,292,4380_87139,Parkmore Ind.,106669-00016-1,0,4380_7778208_4090301,4380_1320 -4380_78114,294,4380_8714,Dublin Airport,54792-00018-1,1,4380_7778208_1090103,4380_137 -4380_78064,290,4380_87140,Parkmore Ind.,106667-00015-1,0,4380_7778208_4090301,4380_1320 -4380_78064,294,4380_87141,Parkmore Ind.,106671-00018-1,0,4380_7778208_4090301,4380_1320 -4380_78064,295,4380_87142,Parkmore Ind.,106675-00019-1,0,4380_7778208_4090301,4380_1320 -4380_78064,293,4380_87143,Parkmore Ind.,106673-00017-1,0,4380_7778208_4090301,4380_1320 -4380_78064,296,4380_87144,Parkmore Ind.,108325-00021-1,0,4380_7778208_4090306,4380_1321 -4380_78114,295,4380_8715,Dublin Airport,54791-00019-1,1,4380_7778208_1090103,4380_137 -4380_78064,297,4380_87151,Parkmore Ind.,107083-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_87152,Parkmore Ind.,107433-00009-1,0,4380_7778208_4090303,4380_1320 -4380_78064,288,4380_87154,Parkmore Ind.,107439-00011-1,0,4380_7778208_4090303,4380_1320 -4380_78064,286,4380_87155,Parkmore Ind.,107437-00010-1,0,4380_7778208_4090303,4380_1320 -4380_78064,291,4380_87156,Parkmore Ind.,106677-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_87157,Parkmore Ind.,107441-00014-1,0,4380_7778208_4090303,4380_1320 -4380_78064,287,4380_87158,Parkmore Ind.,107435-00012-1,0,4380_7778208_4090303,4380_1320 -4380_78064,292,4380_87159,Parkmore Ind.,107438-00016-1,0,4380_7778208_4090303,4380_1320 -4380_78114,296,4380_8716,Dublin Airport,55207-00021-1,1,4380_7778208_1090113,4380_141 -4380_78064,290,4380_87160,Parkmore Ind.,107434-00015-1,0,4380_7778208_4090303,4380_1320 -4380_78064,294,4380_87161,Parkmore Ind.,107436-00018-1,0,4380_7778208_4090303,4380_1320 -4380_78064,295,4380_87162,Parkmore Ind.,107442-00019-1,0,4380_7778208_4090303,4380_1320 -4380_78064,293,4380_87163,Parkmore Ind.,107440-00017-1,0,4380_7778208_4090303,4380_1320 -4380_78064,296,4380_87164,Parkmore Ind.,106678-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78064,297,4380_87171,Parkmore Ind.,107443-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78064,285,4380_87172,Parkmore Ind.,107811-00009-1,0,4380_7778208_4090304,4380_1320 -4380_78064,288,4380_87174,Parkmore Ind.,107805-00011-1,0,4380_7778208_4090304,4380_1320 -4380_78064,286,4380_87175,Parkmore Ind.,107807-00010-1,0,4380_7778208_4090304,4380_1320 -4380_78064,291,4380_87176,Parkmore Ind.,107809-00013-1,0,4380_7778208_4090304,4380_1321 -4380_78064,289,4380_87177,Parkmore Ind.,107813-00014-1,0,4380_7778208_4090304,4380_1320 -4380_78064,287,4380_87178,Parkmore Ind.,107815-00012-1,0,4380_7778208_4090304,4380_1320 -4380_78064,292,4380_87179,Parkmore Ind.,107808-00016-1,0,4380_7778208_4090304,4380_1320 -4380_78064,290,4380_87180,Parkmore Ind.,107812-00015-1,0,4380_7778208_4090304,4380_1320 -4380_78064,294,4380_87181,Parkmore Ind.,107816-00018-1,0,4380_7778208_4090304,4380_1320 -4380_78064,295,4380_87182,Parkmore Ind.,107814-00019-1,0,4380_7778208_4090304,4380_1320 -4380_78064,293,4380_87183,Parkmore Ind.,107806-00017-1,0,4380_7778208_4090304,4380_1320 -4380_78064,296,4380_87184,Parkmore Ind.,107810-00021-1,0,4380_7778208_4090304,4380_1321 -4380_78064,297,4380_87191,Parkmore Ind.,106691-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_87192,Parkmore Ind.,107091-00009-1,0,4380_7778208_4090302,4380_1320 -4380_78064,288,4380_87194,Parkmore Ind.,107085-00011-1,0,4380_7778208_4090302,4380_1320 -4380_78064,286,4380_87195,Parkmore Ind.,107087-00010-1,0,4380_7778208_4090302,4380_1320 -4380_78064,291,4380_87196,Parkmore Ind.,108094-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_87197,Parkmore Ind.,107089-00014-1,0,4380_7778208_4090302,4380_1320 -4380_78064,287,4380_87198,Parkmore Ind.,107093-00012-1,0,4380_7778208_4090302,4380_1320 -4380_78064,292,4380_87199,Parkmore Ind.,107088-00016-1,0,4380_7778208_4090302,4380_1320 -4380_78113,295,4380_872,Dundalk,49829-00019-1,0,4380_7778208_1000904,4380_11 -4380_78064,290,4380_87200,Parkmore Ind.,107092-00015-1,0,4380_7778208_4090302,4380_1320 -4380_78064,294,4380_87201,Parkmore Ind.,107094-00018-1,0,4380_7778208_4090302,4380_1320 -4380_78064,295,4380_87202,Parkmore Ind.,107090-00019-1,0,4380_7778208_4090302,4380_1320 -4380_78064,293,4380_87203,Parkmore Ind.,107086-00017-1,0,4380_7778208_4090302,4380_1320 -4380_78064,296,4380_87204,Parkmore Ind.,108095-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78064,297,4380_87211,Parkmore Ind.,107820-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_87212,Parkmore Ind.,106698-00009-1,0,4380_7778208_4090301,4380_1320 -4380_78064,288,4380_87214,Parkmore Ind.,106694-00011-1,0,4380_7778208_4090301,4380_1320 -4380_78064,286,4380_87215,Parkmore Ind.,106692-00010-1,0,4380_7778208_4090301,4380_1320 -4380_78064,291,4380_87216,Parkmore Ind.,108328-00013-1,0,4380_7778208_4090306,4380_1321 -4380_78064,289,4380_87217,Parkmore Ind.,106700-00014-1,0,4380_7778208_4090301,4380_1320 -4380_78064,287,4380_87218,Parkmore Ind.,106696-00012-1,0,4380_7778208_4090301,4380_1320 -4380_78064,292,4380_87219,Parkmore Ind.,106693-00016-1,0,4380_7778208_4090301,4380_1320 -4380_78064,290,4380_87220,Parkmore Ind.,106699-00015-1,0,4380_7778208_4090301,4380_1320 -4380_78064,294,4380_87221,Parkmore Ind.,106697-00018-1,0,4380_7778208_4090301,4380_1320 -4380_78064,295,4380_87222,Parkmore Ind.,106701-00019-1,0,4380_7778208_4090301,4380_1320 -4380_78064,293,4380_87223,Parkmore Ind.,106695-00017-1,0,4380_7778208_4090301,4380_1320 -4380_78064,296,4380_87224,Parkmore Ind.,108329-00021-1,0,4380_7778208_4090306,4380_1321 -4380_78064,297,4380_87231,Parkmore Ind.,107105-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_87232,Parkmore Ind.,107461-00009-1,0,4380_7778208_4090303,4380_1320 -4380_78064,288,4380_87234,Parkmore Ind.,107455-00011-1,0,4380_7778208_4090303,4380_1320 -4380_78064,286,4380_87235,Parkmore Ind.,107463-00010-1,0,4380_7778208_4090303,4380_1320 -4380_78064,291,4380_87236,Parkmore Ind.,106703-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_87237,Parkmore Ind.,107457-00014-1,0,4380_7778208_4090303,4380_1320 -4380_78064,287,4380_87238,Parkmore Ind.,107459-00012-1,0,4380_7778208_4090303,4380_1320 -4380_78064,292,4380_87239,Parkmore Ind.,107464-00016-1,0,4380_7778208_4090303,4380_1320 -4380_78114,285,4380_8724,Dublin via Airport,5462-00009-1,1,4380_7778208_1090104,4380_138 -4380_78064,290,4380_87240,Parkmore Ind.,107462-00015-1,0,4380_7778208_4090303,4380_1320 -4380_78064,294,4380_87241,Parkmore Ind.,107460-00018-1,0,4380_7778208_4090303,4380_1320 -4380_78064,295,4380_87242,Parkmore Ind.,107458-00019-1,0,4380_7778208_4090303,4380_1320 -4380_78064,293,4380_87243,Parkmore Ind.,107456-00017-1,0,4380_7778208_4090303,4380_1320 -4380_78064,296,4380_87244,Parkmore Ind.,106704-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,286,4380_8725,Dublin via Airport,5472-00010-1,1,4380_7778208_1090104,4380_138 -4380_78064,297,4380_87251,Parkmore Ind.,107465-00008-1,0,4380_7778208_4090303,4380_1319 -4380_78064,285,4380_87252,Parkmore Ind.,108516-00009-1,0,4380_7778208_4090307,4380_1320 -4380_78064,288,4380_87254,Parkmore Ind.,108518-00011-1,0,4380_7778208_4090307,4380_1320 -4380_78064,286,4380_87255,Parkmore Ind.,108520-00010-1,0,4380_7778208_4090307,4380_1320 -4380_78064,291,4380_87256,Parkmore Ind.,107821-00013-1,0,4380_7778208_4090304,4380_1321 -4380_78064,289,4380_87257,Parkmore Ind.,108524-00014-1,0,4380_7778208_4090307,4380_1320 -4380_78064,287,4380_87258,Parkmore Ind.,108522-00012-1,0,4380_7778208_4090307,4380_1320 -4380_78064,292,4380_87259,Parkmore Ind.,108521-00016-1,0,4380_7778208_4090307,4380_1320 -4380_78114,297,4380_8726,Dublin via Airport,5962-00008-1,1,4380_7778208_1090112,4380_140 -4380_78064,290,4380_87260,Parkmore Ind.,108517-00015-1,0,4380_7778208_4090307,4380_1320 -4380_78064,294,4380_87261,Parkmore Ind.,108523-00018-1,0,4380_7778208_4090307,4380_1320 -4380_78064,295,4380_87262,Parkmore Ind.,108525-00019-1,0,4380_7778208_4090307,4380_1320 -4380_78064,293,4380_87263,Parkmore Ind.,108519-00017-1,0,4380_7778208_4090307,4380_1320 -4380_78064,296,4380_87264,Parkmore Ind.,107822-00021-1,0,4380_7778208_4090304,4380_1321 -4380_78114,288,4380_8727,Dublin via Airport,5482-00011-1,1,4380_7778208_1090104,4380_138 -4380_78064,297,4380_87271,Parkmore Ind.,106715-00008-1,0,4380_7778208_4090301,4380_1319 -4380_78064,285,4380_87272,Parkmore Ind.,107112-00009-1,0,4380_7778208_4090302,4380_1320 -4380_78064,288,4380_87274,Parkmore Ind.,107110-00011-1,0,4380_7778208_4090302,4380_1320 -4380_78064,286,4380_87275,Parkmore Ind.,107108-00010-1,0,4380_7778208_4090302,4380_1320 -4380_78064,291,4380_87276,Parkmore Ind.,108098-00013-1,0,4380_7778208_4090305,4380_1321 -4380_78064,289,4380_87277,Parkmore Ind.,107114-00014-1,0,4380_7778208_4090302,4380_1320 -4380_78064,287,4380_87278,Parkmore Ind.,107106-00012-1,0,4380_7778208_4090302,4380_1320 -4380_78064,292,4380_87279,Parkmore Ind.,107109-00016-1,0,4380_7778208_4090302,4380_1320 -4380_78114,287,4380_8728,Dublin via Airport,5492-00012-1,1,4380_7778208_1090104,4380_138 -4380_78064,290,4380_87280,Parkmore Ind.,107113-00015-1,0,4380_7778208_4090302,4380_1320 -4380_78064,294,4380_87281,Parkmore Ind.,107107-00018-1,0,4380_7778208_4090302,4380_1320 -4380_78064,295,4380_87282,Parkmore Ind.,107115-00019-1,0,4380_7778208_4090302,4380_1320 -4380_78064,293,4380_87283,Parkmore Ind.,107111-00017-1,0,4380_7778208_4090302,4380_1320 -4380_78064,296,4380_87284,Parkmore Ind.,108099-00021-1,0,4380_7778208_4090305,4380_1321 -4380_78114,289,4380_8729,Dublin via Airport,5452-00014-1,1,4380_7778208_1090104,4380_138 -4380_78064,297,4380_87291,Parkmore Ind.,107826-00008-1,0,4380_7778208_4090304,4380_1319 -4380_78064,285,4380_87292,Parkmore Ind.,106722-00009-1,0,4380_7778208_4090301,4380_1320 -4380_78064,288,4380_87294,Parkmore Ind.,106726-00011-1,0,4380_7778208_4090301,4380_1320 -4380_78064,286,4380_87295,Parkmore Ind.,106720-00010-1,0,4380_7778208_4090301,4380_1320 -4380_78064,291,4380_87296,Parkmore Ind.,108332-00013-1,0,4380_7778208_4090306,4380_1321 -4380_78064,289,4380_87297,Parkmore Ind.,106724-00014-1,0,4380_7778208_4090301,4380_1320 -4380_78064,287,4380_87298,Parkmore Ind.,106718-00012-1,0,4380_7778208_4090301,4380_1320 -4380_78064,292,4380_87299,Parkmore Ind.,106721-00016-1,0,4380_7778208_4090301,4380_1320 -4380_78114,290,4380_8730,Dublin via Airport,54845-00015-1,1,4380_7778208_1090104,4380_138 -4380_78064,290,4380_87300,Parkmore Ind.,106723-00015-1,0,4380_7778208_4090301,4380_1320 -4380_78064,294,4380_87301,Parkmore Ind.,106719-00018-1,0,4380_7778208_4090301,4380_1320 -4380_78064,295,4380_87302,Parkmore Ind.,106725-00019-1,0,4380_7778208_4090301,4380_1320 -4380_78064,293,4380_87303,Parkmore Ind.,106727-00017-1,0,4380_7778208_4090301,4380_1320 -4380_78064,296,4380_87304,Parkmore Ind.,108333-00021-1,0,4380_7778208_4090306,4380_1321 -4380_78114,291,4380_8731,Dublin via Airport,6015-00013-1,1,4380_7778208_1090114,4380_142 -4380_78064,297,4380_87311,Parkmore Ind.,107123-00008-1,0,4380_7778208_4090302,4380_1319 -4380_78064,285,4380_87312,Parkmore Ind.,107481-00009-1,0,4380_7778208_4090303,4380_1320 -4380_78064,288,4380_87314,Parkmore Ind.,107483-00011-1,0,4380_7778208_4090303,4380_1320 -4380_78064,286,4380_87315,Parkmore Ind.,107479-00010-1,0,4380_7778208_4090303,4380_1320 -4380_78064,291,4380_87316,Parkmore Ind.,106729-00013-1,0,4380_7778208_4090301,4380_1321 -4380_78064,289,4380_87317,Parkmore Ind.,107477-00014-1,0,4380_7778208_4090303,4380_1320 -4380_78064,287,4380_87318,Parkmore Ind.,107485-00012-1,0,4380_7778208_4090303,4380_1320 -4380_78064,292,4380_87319,Parkmore Ind.,107480-00016-1,0,4380_7778208_4090303,4380_1320 -4380_78114,292,4380_8732,Dublin via Airport,54847-00016-1,1,4380_7778208_1090104,4380_138 -4380_78064,290,4380_87320,Parkmore Ind.,107482-00015-1,0,4380_7778208_4090303,4380_1320 -4380_78064,294,4380_87321,Parkmore Ind.,107486-00018-1,0,4380_7778208_4090303,4380_1320 -4380_78064,295,4380_87322,Parkmore Ind.,107478-00019-1,0,4380_7778208_4090303,4380_1320 -4380_78064,293,4380_87323,Parkmore Ind.,107484-00017-1,0,4380_7778208_4090303,4380_1320 -4380_78064,296,4380_87324,Parkmore Ind.,106730-00021-1,0,4380_7778208_4090301,4380_1321 -4380_78114,293,4380_8733,Dublin via Airport,54848-00017-1,1,4380_7778208_1090104,4380_138 -4380_78064,285,4380_87330,Eyre Square,106353-00009-1,1,4380_7778208_4090301,4380_1322 -4380_78064,288,4380_87332,Eyre Square,106345-00011-1,1,4380_7778208_4090301,4380_1322 -4380_78064,286,4380_87333,Eyre Square,106355-00010-1,1,4380_7778208_4090301,4380_1322 -4380_78064,291,4380_87334,Eyre Square,106349-00013-1,1,4380_7778208_4090301,4380_1323 -4380_78064,289,4380_87335,Eyre Square,106351-00014-1,1,4380_7778208_4090301,4380_1322 -4380_78064,287,4380_87336,Eyre Square,106347-00012-1,1,4380_7778208_4090301,4380_1322 -4380_78064,292,4380_87337,Eyre Square,106356-00016-1,1,4380_7778208_4090301,4380_1322 -4380_78064,290,4380_87338,Eyre Square,106354-00015-1,1,4380_7778208_4090301,4380_1322 -4380_78064,294,4380_87339,Eyre Square,106348-00018-1,1,4380_7778208_4090301,4380_1322 -4380_78114,294,4380_8734,Dublin via Airport,54846-00018-1,1,4380_7778208_1090104,4380_138 -4380_78064,295,4380_87340,Eyre Square,106352-00019-1,1,4380_7778208_4090301,4380_1322 -4380_78064,293,4380_87341,Eyre Square,106346-00017-1,1,4380_7778208_4090301,4380_1322 -4380_78064,296,4380_87342,Eyre Square,106350-00021-1,1,4380_7778208_4090301,4380_1323 -4380_78064,285,4380_87348,Eyre Square,107133-00009-1,1,4380_7778208_4090303,4380_1322 -4380_78064,288,4380_87349,Eyre Square,107135-00011-1,1,4380_7778208_4090303,4380_1322 -4380_78114,295,4380_8735,Dublin via Airport,54844-00019-1,1,4380_7778208_1090104,4380_138 -4380_78064,286,4380_87350,Eyre Square,107129-00010-1,1,4380_7778208_4090303,4380_1322 -4380_78064,289,4380_87351,Eyre Square,107131-00014-1,1,4380_7778208_4090303,4380_1322 -4380_78064,287,4380_87352,Eyre Square,107137-00012-1,1,4380_7778208_4090303,4380_1322 -4380_78064,292,4380_87353,Eyre Square,107130-00016-1,1,4380_7778208_4090303,4380_1322 -4380_78064,290,4380_87354,Eyre Square,107134-00015-1,1,4380_7778208_4090303,4380_1322 -4380_78064,294,4380_87355,Eyre Square,107138-00018-1,1,4380_7778208_4090303,4380_1322 -4380_78064,295,4380_87356,Eyre Square,107132-00019-1,1,4380_7778208_4090303,4380_1322 -4380_78064,293,4380_87357,Eyre Square,107136-00017-1,1,4380_7778208_4090303,4380_1322 -4380_78064,291,4380_87359,Eyre Square,107139-00013-1,1,4380_7778208_4090303,4380_1322 -4380_78114,296,4380_8736,Dublin via Airport,55232-00021-1,1,4380_7778208_1090114,4380_142 -4380_78064,296,4380_87360,Eyre Square,107140-00021-1,1,4380_7778208_4090303,4380_1322 -4380_78064,285,4380_87366,Eyre Square,106759-00009-1,1,4380_7778208_4090302,4380_1322 -4380_78064,288,4380_87367,Eyre Square,106755-00011-1,1,4380_7778208_4090302,4380_1322 -4380_78064,286,4380_87368,Eyre Square,106761-00010-1,1,4380_7778208_4090302,4380_1322 -4380_78064,289,4380_87369,Eyre Square,106763-00014-1,1,4380_7778208_4090302,4380_1322 -4380_78064,287,4380_87370,Eyre Square,106757-00012-1,1,4380_7778208_4090302,4380_1322 -4380_78064,292,4380_87371,Eyre Square,106762-00016-1,1,4380_7778208_4090302,4380_1322 -4380_78064,290,4380_87372,Eyre Square,106760-00015-1,1,4380_7778208_4090302,4380_1322 -4380_78064,294,4380_87373,Eyre Square,106758-00018-1,1,4380_7778208_4090302,4380_1322 -4380_78064,295,4380_87374,Eyre Square,106764-00019-1,1,4380_7778208_4090302,4380_1322 -4380_78064,293,4380_87375,Eyre Square,106756-00017-1,1,4380_7778208_4090302,4380_1322 -4380_78064,291,4380_87377,Eyre Square,106765-00013-1,1,4380_7778208_4090302,4380_1322 -4380_78064,296,4380_87378,Eyre Square,106766-00021-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_87384,Eyre Square,107507-00009-1,1,4380_7778208_4090304,4380_1322 -4380_78064,288,4380_87385,Eyre Square,107515-00011-1,1,4380_7778208_4090304,4380_1322 -4380_78064,286,4380_87386,Eyre Square,107511-00010-1,1,4380_7778208_4090304,4380_1322 -4380_78064,289,4380_87387,Eyre Square,107509-00014-1,1,4380_7778208_4090304,4380_1322 -4380_78064,287,4380_87388,Eyre Square,107513-00012-1,1,4380_7778208_4090304,4380_1322 -4380_78064,292,4380_87389,Eyre Square,107512-00016-1,1,4380_7778208_4090304,4380_1322 -4380_78064,290,4380_87390,Eyre Square,107508-00015-1,1,4380_7778208_4090304,4380_1322 -4380_78064,294,4380_87391,Eyre Square,107514-00018-1,1,4380_7778208_4090304,4380_1322 -4380_78064,295,4380_87392,Eyre Square,107510-00019-1,1,4380_7778208_4090304,4380_1322 -4380_78064,293,4380_87393,Eyre Square,107516-00017-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_87399,Eyre Square,106373-00009-1,1,4380_7778208_4090301,4380_1322 -4380_78113,291,4380_874,Dundalk,49832-00013-1,0,4380_7778208_1000904,4380_11 -4380_78064,288,4380_87401,Eyre Square,106371-00011-1,1,4380_7778208_4090301,4380_1322 -4380_78064,286,4380_87402,Eyre Square,106375-00010-1,1,4380_7778208_4090301,4380_1322 -4380_78064,291,4380_87403,Eyre Square,106377-00013-1,1,4380_7778208_4090301,4380_1323 -4380_78064,289,4380_87404,Eyre Square,106369-00014-1,1,4380_7778208_4090301,4380_1322 -4380_78064,287,4380_87405,Eyre Square,106380-00012-1,1,4380_7778208_4090301,4380_1322 -4380_78064,292,4380_87406,Eyre Square,106376-00016-1,1,4380_7778208_4090301,4380_1322 -4380_78064,290,4380_87407,Eyre Square,106374-00015-1,1,4380_7778208_4090301,4380_1322 -4380_78064,294,4380_87408,Eyre Square,106381-00018-1,1,4380_7778208_4090301,4380_1322 -4380_78064,295,4380_87409,Eyre Square,106370-00019-1,1,4380_7778208_4090301,4380_1322 -4380_78064,293,4380_87410,Eyre Square,106372-00017-1,1,4380_7778208_4090301,4380_1322 -4380_78064,296,4380_87411,Eyre Square,106378-00021-1,1,4380_7778208_4090301,4380_1323 -4380_78064,285,4380_87417,Eyre Square,107842-00009-1,1,4380_7778208_4090305,4380_1322 -4380_78064,288,4380_87418,Eyre Square,107840-00011-1,1,4380_7778208_4090305,4380_1322 -4380_78064,286,4380_87419,Eyre Square,107846-00010-1,1,4380_7778208_4090305,4380_1322 -4380_78064,289,4380_87420,Eyre Square,107844-00014-1,1,4380_7778208_4090305,4380_1322 -4380_78064,287,4380_87421,Eyre Square,107838-00012-1,1,4380_7778208_4090305,4380_1322 -4380_78064,292,4380_87422,Eyre Square,107847-00016-1,1,4380_7778208_4090305,4380_1322 -4380_78064,290,4380_87423,Eyre Square,107843-00015-1,1,4380_7778208_4090305,4380_1322 -4380_78064,294,4380_87424,Eyre Square,107839-00018-1,1,4380_7778208_4090305,4380_1322 -4380_78064,295,4380_87425,Eyre Square,107845-00019-1,1,4380_7778208_4090305,4380_1322 -4380_78064,293,4380_87426,Eyre Square,107841-00017-1,1,4380_7778208_4090305,4380_1322 -4380_78064,285,4380_87432,Eyre Square,108110-00009-1,1,4380_7778208_4090306,4380_1322 -4380_78064,288,4380_87434,Eyre Square,108106-00011-1,1,4380_7778208_4090306,4380_1322 -4380_78064,286,4380_87435,Eyre Square,108108-00010-1,1,4380_7778208_4090306,4380_1322 -4380_78064,291,4380_87436,Eyre Square,107153-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_87437,Eyre Square,108104-00014-1,1,4380_7778208_4090306,4380_1322 -4380_78064,287,4380_87438,Eyre Square,108102-00012-1,1,4380_7778208_4090306,4380_1322 -4380_78064,292,4380_87439,Eyre Square,108109-00016-1,1,4380_7778208_4090306,4380_1322 -4380_78114,285,4380_8744,Dublin via Airport,5536-00009-1,1,4380_7778208_1090105,4380_138 -4380_78064,290,4380_87440,Eyre Square,108111-00015-1,1,4380_7778208_4090306,4380_1322 -4380_78064,294,4380_87441,Eyre Square,108103-00018-1,1,4380_7778208_4090306,4380_1322 -4380_78064,295,4380_87442,Eyre Square,108105-00019-1,1,4380_7778208_4090306,4380_1322 -4380_78064,293,4380_87443,Eyre Square,108107-00017-1,1,4380_7778208_4090306,4380_1322 -4380_78064,296,4380_87444,Eyre Square,107154-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78114,286,4380_8745,Dublin via Airport,5544-00010-1,1,4380_7778208_1090105,4380_138 -4380_78064,297,4380_87451,Eyre Square,106382-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_87452,Eyre Square,108542-00009-1,1,4380_7778208_4090308,4380_1323 -4380_78064,288,4380_87453,Eyre Square,108540-00011-1,1,4380_7778208_4090308,4380_1323 -4380_78064,286,4380_87454,Eyre Square,108536-00010-1,1,4380_7778208_4090308,4380_1323 -4380_78064,289,4380_87455,Eyre Square,108538-00014-1,1,4380_7778208_4090308,4380_1323 -4380_78064,287,4380_87456,Eyre Square,108544-00012-1,1,4380_7778208_4090308,4380_1323 -4380_78064,292,4380_87457,Eyre Square,108537-00016-1,1,4380_7778208_4090308,4380_1323 -4380_78064,290,4380_87458,Eyre Square,108543-00015-1,1,4380_7778208_4090308,4380_1323 -4380_78064,294,4380_87459,Eyre Square,108545-00018-1,1,4380_7778208_4090308,4380_1323 -4380_78114,297,4380_8746,Dublin via Airport,5992-00008-1,1,4380_7778208_1090113,4380_140 -4380_78064,295,4380_87460,Eyre Square,108539-00019-1,1,4380_7778208_4090308,4380_1323 -4380_78064,293,4380_87461,Eyre Square,108541-00017-1,1,4380_7778208_4090308,4380_1323 -4380_78064,285,4380_87467,Eyre Square,106790-00009-1,1,4380_7778208_4090302,4380_1322 -4380_78064,288,4380_87469,Eyre Square,106784-00011-1,1,4380_7778208_4090302,4380_1322 -4380_78114,288,4380_8747,Dublin via Airport,5552-00011-1,1,4380_7778208_1090105,4380_138 -4380_78064,286,4380_87470,Eyre Square,106782-00010-1,1,4380_7778208_4090302,4380_1322 -4380_78064,291,4380_87471,Eyre Square,106786-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_87472,Eyre Square,106788-00014-1,1,4380_7778208_4090302,4380_1322 -4380_78064,287,4380_87473,Eyre Square,106780-00012-1,1,4380_7778208_4090302,4380_1322 -4380_78064,292,4380_87474,Eyre Square,106783-00016-1,1,4380_7778208_4090302,4380_1322 -4380_78064,290,4380_87475,Eyre Square,106791-00015-1,1,4380_7778208_4090302,4380_1322 -4380_78064,294,4380_87476,Eyre Square,106781-00018-1,1,4380_7778208_4090302,4380_1322 -4380_78064,295,4380_87477,Eyre Square,106789-00019-1,1,4380_7778208_4090302,4380_1322 -4380_78064,293,4380_87478,Eyre Square,106785-00017-1,1,4380_7778208_4090302,4380_1322 -4380_78064,296,4380_87479,Eyre Square,106787-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78114,287,4380_8748,Dublin via Airport,5560-00012-1,1,4380_7778208_1090105,4380_138 -4380_78064,285,4380_87485,Eyre Square,107155-00009-1,1,4380_7778208_4090303,4380_1322 -4380_78064,288,4380_87486,Eyre Square,107165-00011-1,1,4380_7778208_4090303,4380_1322 -4380_78064,286,4380_87487,Eyre Square,107157-00010-1,1,4380_7778208_4090303,4380_1322 -4380_78064,289,4380_87488,Eyre Square,107159-00014-1,1,4380_7778208_4090303,4380_1322 -4380_78064,287,4380_87489,Eyre Square,107161-00012-1,1,4380_7778208_4090303,4380_1322 -4380_78114,289,4380_8749,Dublin via Airport,5528-00014-1,1,4380_7778208_1090105,4380_138 -4380_78064,292,4380_87490,Eyre Square,107158-00016-1,1,4380_7778208_4090303,4380_1322 -4380_78064,290,4380_87491,Eyre Square,107156-00015-1,1,4380_7778208_4090303,4380_1322 -4380_78064,294,4380_87492,Eyre Square,107162-00018-1,1,4380_7778208_4090303,4380_1322 -4380_78064,295,4380_87493,Eyre Square,107160-00019-1,1,4380_7778208_4090303,4380_1322 -4380_78064,293,4380_87494,Eyre Square,107166-00017-1,1,4380_7778208_4090303,4380_1322 -4380_78113,296,4380_875,Dundalk,49833-00021-1,0,4380_7778208_1000904,4380_11 -4380_78114,290,4380_8750,Dublin via Airport,54905-00015-1,1,4380_7778208_1090105,4380_138 -4380_78064,297,4380_87501,Eyre Square,106792-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_87502,Eyre Square,107527-00009-1,1,4380_7778208_4090304,4380_1323 -4380_78064,288,4380_87504,Eyre Square,107533-00011-1,1,4380_7778208_4090304,4380_1323 -4380_78064,286,4380_87505,Eyre Square,107535-00010-1,1,4380_7778208_4090304,4380_1323 -4380_78064,291,4380_87506,Eyre Square,106396-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_87507,Eyre Square,107529-00014-1,1,4380_7778208_4090304,4380_1323 -4380_78064,287,4380_87508,Eyre Square,107531-00012-1,1,4380_7778208_4090304,4380_1323 -4380_78064,292,4380_87509,Eyre Square,107536-00016-1,1,4380_7778208_4090304,4380_1323 -4380_78114,291,4380_8751,Dublin via Airport,6055-00013-1,1,4380_7778208_1090115,4380_142 -4380_78064,290,4380_87510,Eyre Square,107528-00015-1,1,4380_7778208_4090304,4380_1323 -4380_78064,294,4380_87511,Eyre Square,107532-00018-1,1,4380_7778208_4090304,4380_1323 -4380_78064,295,4380_87512,Eyre Square,107530-00019-1,1,4380_7778208_4090304,4380_1323 -4380_78064,293,4380_87513,Eyre Square,107534-00017-1,1,4380_7778208_4090304,4380_1323 -4380_78064,296,4380_87514,Eyre Square,106397-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78114,292,4380_8752,Dublin via Airport,54906-00016-1,1,4380_7778208_1090105,4380_138 -4380_78064,285,4380_87520,Eyre Square,108346-00009-1,1,4380_7778208_4090307,4380_1322 -4380_78064,288,4380_87521,Eyre Square,108348-00011-1,1,4380_7778208_4090307,4380_1322 -4380_78064,286,4380_87522,Eyre Square,108354-00010-1,1,4380_7778208_4090307,4380_1322 -4380_78064,289,4380_87523,Eyre Square,108352-00014-1,1,4380_7778208_4090307,4380_1322 -4380_78064,287,4380_87524,Eyre Square,108350-00012-1,1,4380_7778208_4090307,4380_1322 -4380_78064,292,4380_87525,Eyre Square,108355-00016-1,1,4380_7778208_4090307,4380_1322 -4380_78064,290,4380_87526,Eyre Square,108347-00015-1,1,4380_7778208_4090307,4380_1322 -4380_78064,294,4380_87527,Eyre Square,108351-00018-1,1,4380_7778208_4090307,4380_1322 -4380_78064,295,4380_87528,Eyre Square,108353-00019-1,1,4380_7778208_4090307,4380_1322 -4380_78064,293,4380_87529,Eyre Square,108349-00017-1,1,4380_7778208_4090307,4380_1322 -4380_78114,293,4380_8753,Dublin via Airport,54903-00017-1,1,4380_7778208_1090105,4380_138 -4380_78064,285,4380_87535,Eyre Square,106398-00009-1,1,4380_7778208_4090301,4380_1322 -4380_78064,288,4380_87537,Eyre Square,106400-00011-1,1,4380_7778208_4090301,4380_1322 -4380_78064,286,4380_87538,Eyre Square,106404-00010-1,1,4380_7778208_4090301,4380_1322 -4380_78064,291,4380_87539,Eyre Square,107167-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78114,294,4380_8754,Dublin via Airport,54904-00018-1,1,4380_7778208_1090105,4380_138 -4380_78064,289,4380_87540,Eyre Square,106406-00014-1,1,4380_7778208_4090301,4380_1322 -4380_78064,287,4380_87541,Eyre Square,106402-00012-1,1,4380_7778208_4090301,4380_1322 -4380_78064,292,4380_87542,Eyre Square,106405-00016-1,1,4380_7778208_4090301,4380_1322 -4380_78064,290,4380_87543,Eyre Square,106399-00015-1,1,4380_7778208_4090301,4380_1322 -4380_78064,294,4380_87544,Eyre Square,106403-00018-1,1,4380_7778208_4090301,4380_1322 -4380_78064,295,4380_87545,Eyre Square,106407-00019-1,1,4380_7778208_4090301,4380_1322 -4380_78064,293,4380_87546,Eyre Square,106401-00017-1,1,4380_7778208_4090301,4380_1322 -4380_78064,296,4380_87547,Eyre Square,107168-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78114,295,4380_8755,Dublin via Airport,54902-00019-1,1,4380_7778208_1090105,4380_138 -4380_78064,297,4380_87554,Eyre Square,106408-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_87555,Eyre Square,107858-00009-1,1,4380_7778208_4090305,4380_1323 -4380_78064,288,4380_87556,Eyre Square,107862-00011-1,1,4380_7778208_4090305,4380_1323 -4380_78064,286,4380_87557,Eyre Square,107866-00010-1,1,4380_7778208_4090305,4380_1323 -4380_78064,289,4380_87558,Eyre Square,107860-00014-1,1,4380_7778208_4090305,4380_1323 -4380_78064,287,4380_87559,Eyre Square,107864-00012-1,1,4380_7778208_4090305,4380_1323 -4380_78114,296,4380_8756,Dublin via Airport,55267-00021-1,1,4380_7778208_1090115,4380_142 -4380_78064,292,4380_87560,Eyre Square,107867-00016-1,1,4380_7778208_4090305,4380_1323 -4380_78064,290,4380_87561,Eyre Square,107859-00015-1,1,4380_7778208_4090305,4380_1323 -4380_78064,294,4380_87562,Eyre Square,107865-00018-1,1,4380_7778208_4090305,4380_1323 -4380_78064,295,4380_87563,Eyre Square,107861-00019-1,1,4380_7778208_4090305,4380_1323 -4380_78064,293,4380_87564,Eyre Square,107863-00017-1,1,4380_7778208_4090305,4380_1323 -4380_78064,285,4380_87570,Eyre Square,108128-00009-1,1,4380_7778208_4090306,4380_1322 -4380_78064,288,4380_87572,Eyre Square,108124-00011-1,1,4380_7778208_4090306,4380_1322 -4380_78064,286,4380_87573,Eyre Square,108122-00010-1,1,4380_7778208_4090306,4380_1322 -4380_78064,291,4380_87574,Eyre Square,106806-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_87575,Eyre Square,108130-00014-1,1,4380_7778208_4090306,4380_1322 -4380_78064,287,4380_87576,Eyre Square,108126-00012-1,1,4380_7778208_4090306,4380_1322 -4380_78064,292,4380_87577,Eyre Square,108123-00016-1,1,4380_7778208_4090306,4380_1322 -4380_78064,290,4380_87578,Eyre Square,108129-00015-1,1,4380_7778208_4090306,4380_1322 -4380_78064,294,4380_87579,Eyre Square,108127-00018-1,1,4380_7778208_4090306,4380_1322 -4380_78064,295,4380_87580,Eyre Square,108131-00019-1,1,4380_7778208_4090306,4380_1322 -4380_78064,293,4380_87581,Eyre Square,108125-00017-1,1,4380_7778208_4090306,4380_1322 -4380_78064,296,4380_87582,Eyre Square,106807-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78064,285,4380_87588,Eyre Square,108562-00009-1,1,4380_7778208_4090308,4380_1322 -4380_78064,288,4380_87589,Eyre Square,108558-00011-1,1,4380_7778208_4090308,4380_1322 -4380_78064,286,4380_87590,Eyre Square,108556-00010-1,1,4380_7778208_4090308,4380_1322 -4380_78064,289,4380_87591,Eyre Square,108564-00014-1,1,4380_7778208_4090308,4380_1322 -4380_78064,287,4380_87592,Eyre Square,108560-00012-1,1,4380_7778208_4090308,4380_1322 -4380_78064,292,4380_87593,Eyre Square,108557-00016-1,1,4380_7778208_4090308,4380_1322 -4380_78064,290,4380_87594,Eyre Square,108563-00015-1,1,4380_7778208_4090308,4380_1322 -4380_78064,294,4380_87595,Eyre Square,108561-00018-1,1,4380_7778208_4090308,4380_1322 -4380_78064,295,4380_87596,Eyre Square,108565-00019-1,1,4380_7778208_4090308,4380_1322 -4380_78064,293,4380_87597,Eyre Square,108559-00017-1,1,4380_7778208_4090308,4380_1322 -4380_78064,297,4380_87604,Eyre Square,106816-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_87605,Eyre Square,106808-00009-1,1,4380_7778208_4090302,4380_1323 -4380_78064,288,4380_87607,Eyre Square,106817-00011-1,1,4380_7778208_4090302,4380_1323 -4380_78064,286,4380_87608,Eyre Square,106812-00010-1,1,4380_7778208_4090302,4380_1323 -4380_78064,291,4380_87609,Eyre Square,106413-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_87610,Eyre Square,106810-00014-1,1,4380_7778208_4090302,4380_1323 -4380_78064,287,4380_87611,Eyre Square,106814-00012-1,1,4380_7778208_4090302,4380_1323 -4380_78064,292,4380_87612,Eyre Square,106813-00016-1,1,4380_7778208_4090302,4380_1323 -4380_78064,290,4380_87613,Eyre Square,106809-00015-1,1,4380_7778208_4090302,4380_1323 -4380_78064,294,4380_87614,Eyre Square,106815-00018-1,1,4380_7778208_4090302,4380_1323 -4380_78064,295,4380_87615,Eyre Square,106811-00019-1,1,4380_7778208_4090302,4380_1323 -4380_78064,293,4380_87616,Eyre Square,106818-00017-1,1,4380_7778208_4090302,4380_1323 -4380_78064,296,4380_87617,Eyre Square,106414-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,285,4380_87623,Eyre Square,107189-00009-1,1,4380_7778208_4090303,4380_1322 -4380_78064,288,4380_87624,Eyre Square,107187-00011-1,1,4380_7778208_4090303,4380_1322 -4380_78064,286,4380_87625,Eyre Square,107181-00010-1,1,4380_7778208_4090303,4380_1322 -4380_78064,289,4380_87626,Eyre Square,107183-00014-1,1,4380_7778208_4090303,4380_1322 -4380_78064,287,4380_87627,Eyre Square,107185-00012-1,1,4380_7778208_4090303,4380_1322 -4380_78064,292,4380_87628,Eyre Square,107182-00016-1,1,4380_7778208_4090303,4380_1322 -4380_78064,290,4380_87629,Eyre Square,107190-00015-1,1,4380_7778208_4090303,4380_1322 -4380_78064,294,4380_87630,Eyre Square,107186-00018-1,1,4380_7778208_4090303,4380_1322 -4380_78064,295,4380_87631,Eyre Square,107184-00019-1,1,4380_7778208_4090303,4380_1322 -4380_78064,293,4380_87632,Eyre Square,107188-00017-1,1,4380_7778208_4090303,4380_1322 -4380_78064,285,4380_87638,Eyre Square,107551-00009-1,1,4380_7778208_4090304,4380_1322 -4380_78114,285,4380_8764,Dublin via Airport,5241-00009-1,1,4380_7778208_1090101,4380_138 -4380_78064,288,4380_87640,Eyre Square,107549-00011-1,1,4380_7778208_4090304,4380_1322 -4380_78064,286,4380_87641,Eyre Square,107553-00010-1,1,4380_7778208_4090304,4380_1322 -4380_78064,291,4380_87642,Eyre Square,107191-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_87643,Eyre Square,107547-00014-1,1,4380_7778208_4090304,4380_1322 -4380_78064,287,4380_87644,Eyre Square,107555-00012-1,1,4380_7778208_4090304,4380_1322 -4380_78064,292,4380_87645,Eyre Square,107554-00016-1,1,4380_7778208_4090304,4380_1322 -4380_78064,290,4380_87646,Eyre Square,107552-00015-1,1,4380_7778208_4090304,4380_1322 -4380_78064,294,4380_87647,Eyre Square,107556-00018-1,1,4380_7778208_4090304,4380_1322 -4380_78064,295,4380_87648,Eyre Square,107548-00019-1,1,4380_7778208_4090304,4380_1322 -4380_78064,293,4380_87649,Eyre Square,107550-00017-1,1,4380_7778208_4090304,4380_1322 -4380_78114,286,4380_8765,Dublin via Airport,5251-00010-1,1,4380_7778208_1090101,4380_138 -4380_78064,296,4380_87650,Eyre Square,107192-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78064,297,4380_87657,Eyre Square,106432-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_87658,Eyre Square,106426-00009-1,1,4380_7778208_4090301,4380_1323 -4380_78064,288,4380_87659,Eyre Square,106430-00011-1,1,4380_7778208_4090301,4380_1323 -4380_78114,297,4380_8766,Dublin via Airport,5814-00008-1,1,4380_7778208_1090109,4380_140 -4380_78064,286,4380_87660,Eyre Square,106424-00010-1,1,4380_7778208_4090301,4380_1323 -4380_78064,289,4380_87661,Eyre Square,106435-00014-1,1,4380_7778208_4090301,4380_1323 -4380_78064,287,4380_87662,Eyre Square,106433-00012-1,1,4380_7778208_4090301,4380_1323 -4380_78064,292,4380_87663,Eyre Square,106425-00016-1,1,4380_7778208_4090301,4380_1323 -4380_78064,290,4380_87664,Eyre Square,106427-00015-1,1,4380_7778208_4090301,4380_1323 -4380_78064,294,4380_87665,Eyre Square,106434-00018-1,1,4380_7778208_4090301,4380_1323 -4380_78064,295,4380_87666,Eyre Square,106436-00019-1,1,4380_7778208_4090301,4380_1323 -4380_78064,293,4380_87667,Eyre Square,106431-00017-1,1,4380_7778208_4090301,4380_1323 -4380_78114,288,4380_8767,Dublin via Airport,5261-00011-1,1,4380_7778208_1090101,4380_138 -4380_78064,285,4380_87673,Eyre Square,107884-00009-1,1,4380_7778208_4090305,4380_1322 -4380_78064,288,4380_87675,Eyre Square,107878-00011-1,1,4380_7778208_4090305,4380_1322 -4380_78064,286,4380_87676,Eyre Square,107886-00010-1,1,4380_7778208_4090305,4380_1322 -4380_78064,291,4380_87677,Eyre Square,106826-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_87678,Eyre Square,107882-00014-1,1,4380_7778208_4090305,4380_1322 -4380_78064,287,4380_87679,Eyre Square,107880-00012-1,1,4380_7778208_4090305,4380_1322 -4380_78114,287,4380_8768,Dublin via Airport,5271-00012-1,1,4380_7778208_1090101,4380_138 -4380_78064,292,4380_87680,Eyre Square,107887-00016-1,1,4380_7778208_4090305,4380_1322 -4380_78064,290,4380_87681,Eyre Square,107885-00015-1,1,4380_7778208_4090305,4380_1322 -4380_78064,294,4380_87682,Eyre Square,107881-00018-1,1,4380_7778208_4090305,4380_1322 -4380_78064,295,4380_87683,Eyre Square,107883-00019-1,1,4380_7778208_4090305,4380_1322 -4380_78064,293,4380_87684,Eyre Square,107879-00017-1,1,4380_7778208_4090305,4380_1322 -4380_78064,296,4380_87685,Eyre Square,106827-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78114,289,4380_8769,Dublin via Airport,5231-00014-1,1,4380_7778208_1090101,4380_138 -4380_78064,285,4380_87691,Eyre Square,108146-00009-1,1,4380_7778208_4090306,4380_1322 -4380_78064,288,4380_87692,Eyre Square,108142-00011-1,1,4380_7778208_4090306,4380_1322 -4380_78064,286,4380_87693,Eyre Square,108150-00010-1,1,4380_7778208_4090306,4380_1322 -4380_78064,289,4380_87694,Eyre Square,108144-00014-1,1,4380_7778208_4090306,4380_1322 -4380_78064,287,4380_87695,Eyre Square,108148-00012-1,1,4380_7778208_4090306,4380_1322 -4380_78064,292,4380_87696,Eyre Square,108151-00016-1,1,4380_7778208_4090306,4380_1322 -4380_78064,290,4380_87697,Eyre Square,108147-00015-1,1,4380_7778208_4090306,4380_1322 -4380_78064,294,4380_87698,Eyre Square,108149-00018-1,1,4380_7778208_4090306,4380_1322 -4380_78064,295,4380_87699,Eyre Square,108145-00019-1,1,4380_7778208_4090306,4380_1322 -4380_78114,290,4380_8770,Dublin via Airport,54693-00015-1,1,4380_7778208_1090101,4380_138 -4380_78064,293,4380_87700,Eyre Square,108143-00017-1,1,4380_7778208_4090306,4380_1322 -4380_78064,297,4380_87707,Eyre Square,106834-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_87708,Eyre Square,108580-00009-1,1,4380_7778208_4090308,4380_1323 -4380_78114,291,4380_8771,Dublin via Airport,5889-00013-1,1,4380_7778208_1090111,4380_142 -4380_78064,288,4380_87710,Eyre Square,108578-00011-1,1,4380_7778208_4090308,4380_1323 -4380_78064,286,4380_87711,Eyre Square,108582-00010-1,1,4380_7778208_4090308,4380_1323 -4380_78064,291,4380_87712,Eyre Square,106437-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_87713,Eyre Square,108584-00014-1,1,4380_7778208_4090308,4380_1323 -4380_78064,287,4380_87714,Eyre Square,108576-00012-1,1,4380_7778208_4090308,4380_1323 -4380_78064,292,4380_87715,Eyre Square,108583-00016-1,1,4380_7778208_4090308,4380_1323 -4380_78064,290,4380_87716,Eyre Square,108581-00015-1,1,4380_7778208_4090308,4380_1323 -4380_78064,294,4380_87717,Eyre Square,108577-00018-1,1,4380_7778208_4090308,4380_1323 -4380_78064,295,4380_87718,Eyre Square,108585-00019-1,1,4380_7778208_4090308,4380_1323 -4380_78064,293,4380_87719,Eyre Square,108579-00017-1,1,4380_7778208_4090308,4380_1323 -4380_78114,292,4380_8772,Dublin via Airport,54689-00016-1,1,4380_7778208_1090101,4380_138 -4380_78064,296,4380_87720,Eyre Square,106438-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,285,4380_87726,Eyre Square,108374-00009-1,1,4380_7778208_4090307,4380_1322 -4380_78064,288,4380_87728,Eyre Square,108366-00011-1,1,4380_7778208_4090307,4380_1322 -4380_78064,286,4380_87729,Eyre Square,108370-00010-1,1,4380_7778208_4090307,4380_1322 -4380_78114,293,4380_8773,Dublin via Airport,54690-00017-1,1,4380_7778208_1090101,4380_138 -4380_78064,291,4380_87730,Eyre Square,107567-00013-1,1,4380_7778208_4090304,4380_1323 -4380_78064,289,4380_87731,Eyre Square,108368-00014-1,1,4380_7778208_4090307,4380_1322 -4380_78064,287,4380_87732,Eyre Square,108372-00012-1,1,4380_7778208_4090307,4380_1322 -4380_78064,292,4380_87733,Eyre Square,108371-00016-1,1,4380_7778208_4090307,4380_1322 -4380_78064,290,4380_87734,Eyre Square,108375-00015-1,1,4380_7778208_4090307,4380_1322 -4380_78064,294,4380_87735,Eyre Square,108373-00018-1,1,4380_7778208_4090307,4380_1322 -4380_78064,295,4380_87736,Eyre Square,108369-00019-1,1,4380_7778208_4090307,4380_1322 -4380_78064,293,4380_87737,Eyre Square,108367-00017-1,1,4380_7778208_4090307,4380_1322 -4380_78064,296,4380_87738,Eyre Square,107568-00021-1,1,4380_7778208_4090304,4380_1323 -4380_78114,294,4380_8774,Dublin via Airport,54691-00018-1,1,4380_7778208_1090101,4380_138 -4380_78064,285,4380_87744,Eyre Square,106839-00009-1,1,4380_7778208_4090302,4380_1322 -4380_78064,288,4380_87746,Eyre Square,106843-00011-1,1,4380_7778208_4090302,4380_1322 -4380_78064,286,4380_87747,Eyre Square,106837-00010-1,1,4380_7778208_4090302,4380_1322 -4380_78064,291,4380_87748,Eyre Square,107205-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_87749,Eyre Square,106845-00014-1,1,4380_7778208_4090302,4380_1322 -4380_78114,295,4380_8775,Dublin via Airport,54692-00019-1,1,4380_7778208_1090101,4380_138 -4380_78064,287,4380_87750,Eyre Square,106841-00012-1,1,4380_7778208_4090302,4380_1322 -4380_78064,292,4380_87751,Eyre Square,106838-00016-1,1,4380_7778208_4090302,4380_1322 -4380_78064,290,4380_87752,Eyre Square,106840-00015-1,1,4380_7778208_4090302,4380_1322 -4380_78064,294,4380_87753,Eyre Square,106842-00018-1,1,4380_7778208_4090302,4380_1322 -4380_78064,295,4380_87754,Eyre Square,106846-00019-1,1,4380_7778208_4090302,4380_1322 -4380_78064,293,4380_87755,Eyre Square,106844-00017-1,1,4380_7778208_4090302,4380_1322 -4380_78064,296,4380_87756,Eyre Square,107206-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78114,296,4380_8776,Dublin via Airport,55144-00021-1,1,4380_7778208_1090111,4380_142 -4380_78064,297,4380_87763,Eyre Square,106452-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_87764,Eyre Square,107211-00009-1,1,4380_7778208_4090303,4380_1323 -4380_78064,288,4380_87766,Eyre Square,107215-00011-1,1,4380_7778208_4090303,4380_1323 -4380_78064,286,4380_87767,Eyre Square,107209-00010-1,1,4380_7778208_4090303,4380_1323 -4380_78064,291,4380_87768,Eyre Square,107898-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_87769,Eyre Square,107213-00014-1,1,4380_7778208_4090303,4380_1323 -4380_78064,287,4380_87770,Eyre Square,107207-00012-1,1,4380_7778208_4090303,4380_1323 -4380_78064,292,4380_87771,Eyre Square,107210-00016-1,1,4380_7778208_4090303,4380_1323 -4380_78064,290,4380_87772,Eyre Square,107212-00015-1,1,4380_7778208_4090303,4380_1323 -4380_78064,294,4380_87773,Eyre Square,107208-00018-1,1,4380_7778208_4090303,4380_1323 -4380_78064,295,4380_87774,Eyre Square,107214-00019-1,1,4380_7778208_4090303,4380_1323 -4380_78064,293,4380_87775,Eyre Square,107216-00017-1,1,4380_7778208_4090303,4380_1323 -4380_78064,296,4380_87776,Eyre Square,107899-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,285,4380_87782,Eyre Square,107571-00009-1,1,4380_7778208_4090304,4380_1322 -4380_78064,288,4380_87784,Eyre Square,107569-00011-1,1,4380_7778208_4090304,4380_1322 -4380_78064,286,4380_87785,Eyre Square,107575-00010-1,1,4380_7778208_4090304,4380_1322 -4380_78064,291,4380_87786,Eyre Square,106848-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_87787,Eyre Square,107577-00014-1,1,4380_7778208_4090304,4380_1322 -4380_78064,287,4380_87788,Eyre Square,107573-00012-1,1,4380_7778208_4090304,4380_1322 -4380_78064,292,4380_87789,Eyre Square,107576-00016-1,1,4380_7778208_4090304,4380_1322 -4380_78064,290,4380_87790,Eyre Square,107572-00015-1,1,4380_7778208_4090304,4380_1322 -4380_78064,294,4380_87791,Eyre Square,107574-00018-1,1,4380_7778208_4090304,4380_1322 -4380_78064,295,4380_87792,Eyre Square,107578-00019-1,1,4380_7778208_4090304,4380_1322 -4380_78064,293,4380_87793,Eyre Square,107570-00017-1,1,4380_7778208_4090304,4380_1322 -4380_78064,296,4380_87794,Eyre Square,106849-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78064,297,4380_87796,Eyre Square,107581-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_87802,Eyre Square,107908-00009-1,1,4380_7778208_4090305,4380_1322 -4380_78064,288,4380_87804,Eyre Square,107902-00011-1,1,4380_7778208_4090305,4380_1322 -4380_78064,286,4380_87805,Eyre Square,107904-00010-1,1,4380_7778208_4090305,4380_1322 -4380_78064,291,4380_87806,Eyre Square,108162-00013-1,1,4380_7778208_4090306,4380_1323 -4380_78064,289,4380_87807,Eyre Square,107900-00014-1,1,4380_7778208_4090305,4380_1322 -4380_78064,287,4380_87808,Eyre Square,107906-00012-1,1,4380_7778208_4090305,4380_1322 -4380_78064,292,4380_87809,Eyre Square,107905-00016-1,1,4380_7778208_4090305,4380_1322 -4380_78064,290,4380_87810,Eyre Square,107909-00015-1,1,4380_7778208_4090305,4380_1322 -4380_78064,294,4380_87811,Eyre Square,107907-00018-1,1,4380_7778208_4090305,4380_1322 -4380_78064,295,4380_87812,Eyre Square,107901-00019-1,1,4380_7778208_4090305,4380_1322 -4380_78064,293,4380_87813,Eyre Square,107903-00017-1,1,4380_7778208_4090305,4380_1322 -4380_78064,296,4380_87814,Eyre Square,108163-00021-1,1,4380_7778208_4090306,4380_1323 -4380_78064,297,4380_87821,Eyre Square,106852-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_87822,Eyre Square,108172-00009-1,1,4380_7778208_4090306,4380_1323 -4380_78064,288,4380_87824,Eyre Square,108166-00011-1,1,4380_7778208_4090306,4380_1323 -4380_78064,286,4380_87825,Eyre Square,108168-00010-1,1,4380_7778208_4090306,4380_1323 -4380_78064,291,4380_87826,Eyre Square,106453-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_87827,Eyre Square,108164-00014-1,1,4380_7778208_4090306,4380_1323 -4380_78064,287,4380_87828,Eyre Square,108170-00012-1,1,4380_7778208_4090306,4380_1323 -4380_78064,292,4380_87829,Eyre Square,108169-00016-1,1,4380_7778208_4090306,4380_1323 -4380_78064,290,4380_87830,Eyre Square,108173-00015-1,1,4380_7778208_4090306,4380_1323 -4380_78064,294,4380_87831,Eyre Square,108171-00018-1,1,4380_7778208_4090306,4380_1323 -4380_78064,295,4380_87832,Eyre Square,108165-00019-1,1,4380_7778208_4090306,4380_1323 -4380_78064,293,4380_87833,Eyre Square,108167-00017-1,1,4380_7778208_4090306,4380_1323 -4380_78064,296,4380_87834,Eyre Square,106454-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78114,285,4380_8784,Dublin via Airport,5317-00009-1,1,4380_7778208_1090102,4380_138 -4380_78064,285,4380_87840,Eyre Square,106458-00009-1,1,4380_7778208_4090301,4380_1322 -4380_78064,288,4380_87842,Eyre Square,106460-00011-1,1,4380_7778208_4090301,4380_1322 -4380_78064,286,4380_87843,Eyre Square,106462-00010-1,1,4380_7778208_4090301,4380_1322 -4380_78064,291,4380_87844,Eyre Square,107582-00013-1,1,4380_7778208_4090304,4380_1323 -4380_78064,289,4380_87845,Eyre Square,106464-00014-1,1,4380_7778208_4090301,4380_1322 -4380_78064,287,4380_87846,Eyre Square,106456-00012-1,1,4380_7778208_4090301,4380_1322 -4380_78064,292,4380_87847,Eyre Square,106463-00016-1,1,4380_7778208_4090301,4380_1322 -4380_78064,290,4380_87848,Eyre Square,106459-00015-1,1,4380_7778208_4090301,4380_1322 -4380_78064,294,4380_87849,Eyre Square,106457-00018-1,1,4380_7778208_4090301,4380_1322 -4380_78114,286,4380_8785,Dublin via Airport,5327-00010-1,1,4380_7778208_1090102,4380_138 -4380_78064,295,4380_87850,Eyre Square,106465-00019-1,1,4380_7778208_4090301,4380_1322 -4380_78064,293,4380_87851,Eyre Square,106461-00017-1,1,4380_7778208_4090301,4380_1322 -4380_78064,296,4380_87852,Eyre Square,107583-00021-1,1,4380_7778208_4090304,4380_1323 -4380_78064,297,4380_87854,Eyre Square,107230-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78114,297,4380_8786,Dublin via Airport,5869-00008-1,1,4380_7778208_1090110,4380_140 -4380_78064,285,4380_87860,Eyre Square,108600-00009-1,1,4380_7778208_4090308,4380_1322 -4380_78064,288,4380_87862,Eyre Square,108604-00011-1,1,4380_7778208_4090308,4380_1322 -4380_78064,286,4380_87863,Eyre Square,108598-00010-1,1,4380_7778208_4090308,4380_1322 -4380_78064,291,4380_87864,Eyre Square,107231-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_87865,Eyre Square,108602-00014-1,1,4380_7778208_4090308,4380_1322 -4380_78064,287,4380_87866,Eyre Square,108596-00012-1,1,4380_7778208_4090308,4380_1322 -4380_78064,292,4380_87867,Eyre Square,108599-00016-1,1,4380_7778208_4090308,4380_1322 -4380_78064,290,4380_87868,Eyre Square,108601-00015-1,1,4380_7778208_4090308,4380_1322 -4380_78064,294,4380_87869,Eyre Square,108597-00018-1,1,4380_7778208_4090308,4380_1322 -4380_78114,288,4380_8787,Dublin via Airport,5337-00011-1,1,4380_7778208_1090102,4380_138 -4380_78064,295,4380_87870,Eyre Square,108603-00019-1,1,4380_7778208_4090308,4380_1322 -4380_78064,293,4380_87871,Eyre Square,108605-00017-1,1,4380_7778208_4090308,4380_1322 -4380_78064,296,4380_87872,Eyre Square,107232-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78064,297,4380_87879,Eyre Square,106466-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78114,287,4380_8788,Dublin via Airport,5347-00012-1,1,4380_7778208_1090102,4380_138 -4380_78064,285,4380_87880,Eyre Square,106872-00009-1,1,4380_7778208_4090302,4380_1323 -4380_78064,288,4380_87882,Eyre Square,106863-00011-1,1,4380_7778208_4090302,4380_1323 -4380_78064,286,4380_87883,Eyre Square,106865-00010-1,1,4380_7778208_4090302,4380_1323 -4380_78064,291,4380_87884,Eyre Square,107918-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_87885,Eyre Square,106870-00014-1,1,4380_7778208_4090302,4380_1323 -4380_78064,287,4380_87886,Eyre Square,106868-00012-1,1,4380_7778208_4090302,4380_1323 -4380_78064,292,4380_87887,Eyre Square,106866-00016-1,1,4380_7778208_4090302,4380_1323 -4380_78064,290,4380_87888,Eyre Square,106873-00015-1,1,4380_7778208_4090302,4380_1323 -4380_78064,294,4380_87889,Eyre Square,106869-00018-1,1,4380_7778208_4090302,4380_1323 -4380_78114,289,4380_8789,Dublin via Airport,5307-00014-1,1,4380_7778208_1090102,4380_138 -4380_78064,295,4380_87890,Eyre Square,106871-00019-1,1,4380_7778208_4090302,4380_1323 -4380_78064,293,4380_87891,Eyre Square,106864-00017-1,1,4380_7778208_4090302,4380_1323 -4380_78064,296,4380_87892,Eyre Square,107919-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,285,4380_87898,Eyre Square,107241-00009-1,1,4380_7778208_4090303,4380_1322 -4380_78114,290,4380_8790,Dublin via Airport,54744-00015-1,1,4380_7778208_1090102,4380_138 -4380_78064,288,4380_87900,Eyre Square,107237-00011-1,1,4380_7778208_4090303,4380_1322 -4380_78064,286,4380_87901,Eyre Square,107233-00010-1,1,4380_7778208_4090303,4380_1322 -4380_78064,291,4380_87902,Eyre Square,106874-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_87903,Eyre Square,107239-00014-1,1,4380_7778208_4090303,4380_1322 -4380_78064,287,4380_87904,Eyre Square,107235-00012-1,1,4380_7778208_4090303,4380_1322 -4380_78064,292,4380_87905,Eyre Square,107234-00016-1,1,4380_7778208_4090303,4380_1322 -4380_78064,290,4380_87906,Eyre Square,107242-00015-1,1,4380_7778208_4090303,4380_1322 -4380_78064,294,4380_87907,Eyre Square,107236-00018-1,1,4380_7778208_4090303,4380_1322 -4380_78064,295,4380_87908,Eyre Square,107240-00019-1,1,4380_7778208_4090303,4380_1322 -4380_78064,293,4380_87909,Eyre Square,107238-00017-1,1,4380_7778208_4090303,4380_1322 -4380_78114,291,4380_8791,Dublin via Airport,5954-00013-1,1,4380_7778208_1090112,4380_142 -4380_78064,296,4380_87910,Eyre Square,106875-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78064,297,4380_87912,Eyre Square,107597-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_87918,Eyre Square,107604-00009-1,1,4380_7778208_4090304,4380_1322 -4380_78114,292,4380_8792,Dublin via Airport,54743-00016-1,1,4380_7778208_1090102,4380_138 -4380_78064,288,4380_87920,Eyre Square,107598-00011-1,1,4380_7778208_4090304,4380_1322 -4380_78064,286,4380_87921,Eyre Square,107606-00010-1,1,4380_7778208_4090304,4380_1322 -4380_78064,291,4380_87922,Eyre Square,108186-00013-1,1,4380_7778208_4090306,4380_1323 -4380_78064,289,4380_87923,Eyre Square,107600-00014-1,1,4380_7778208_4090304,4380_1322 -4380_78064,287,4380_87924,Eyre Square,107602-00012-1,1,4380_7778208_4090304,4380_1322 -4380_78064,292,4380_87925,Eyre Square,107607-00016-1,1,4380_7778208_4090304,4380_1322 -4380_78064,290,4380_87926,Eyre Square,107605-00015-1,1,4380_7778208_4090304,4380_1322 -4380_78064,294,4380_87927,Eyre Square,107603-00018-1,1,4380_7778208_4090304,4380_1322 -4380_78064,295,4380_87928,Eyre Square,107601-00019-1,1,4380_7778208_4090304,4380_1322 -4380_78064,293,4380_87929,Eyre Square,107599-00017-1,1,4380_7778208_4090304,4380_1322 -4380_78114,293,4380_8793,Dublin via Airport,54745-00017-1,1,4380_7778208_1090102,4380_138 -4380_78064,296,4380_87930,Eyre Square,108187-00021-1,1,4380_7778208_4090306,4380_1323 -4380_78064,297,4380_87937,Eyre Square,106876-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_87938,Eyre Square,107924-00009-1,1,4380_7778208_4090305,4380_1323 -4380_78114,294,4380_8794,Dublin via Airport,54746-00018-1,1,4380_7778208_1090102,4380_138 -4380_78064,288,4380_87940,Eyre Square,107928-00011-1,1,4380_7778208_4090305,4380_1323 -4380_78064,286,4380_87941,Eyre Square,107934-00010-1,1,4380_7778208_4090305,4380_1323 -4380_78064,291,4380_87942,Eyre Square,106480-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_87943,Eyre Square,107930-00014-1,1,4380_7778208_4090305,4380_1323 -4380_78064,287,4380_87944,Eyre Square,107926-00012-1,1,4380_7778208_4090305,4380_1323 -4380_78064,292,4380_87945,Eyre Square,107935-00016-1,1,4380_7778208_4090305,4380_1323 -4380_78064,290,4380_87946,Eyre Square,107925-00015-1,1,4380_7778208_4090305,4380_1323 -4380_78064,294,4380_87947,Eyre Square,107927-00018-1,1,4380_7778208_4090305,4380_1323 -4380_78064,295,4380_87948,Eyre Square,107931-00019-1,1,4380_7778208_4090305,4380_1323 -4380_78064,293,4380_87949,Eyre Square,107929-00017-1,1,4380_7778208_4090305,4380_1323 -4380_78114,295,4380_8795,Dublin via Airport,54742-00019-1,1,4380_7778208_1090102,4380_138 -4380_78064,296,4380_87950,Eyre Square,106481-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,285,4380_87956,Eyre Square,108194-00009-1,1,4380_7778208_4090306,4380_1322 -4380_78064,288,4380_87958,Eyre Square,108196-00011-1,1,4380_7778208_4090306,4380_1322 -4380_78064,286,4380_87959,Eyre Square,108190-00010-1,1,4380_7778208_4090306,4380_1322 -4380_78114,296,4380_8796,Dublin via Airport,55189-00021-1,1,4380_7778208_1090112,4380_142 -4380_78064,291,4380_87960,Eyre Square,107608-00013-1,1,4380_7778208_4090304,4380_1323 -4380_78064,289,4380_87961,Eyre Square,108192-00014-1,1,4380_7778208_4090306,4380_1322 -4380_78064,287,4380_87962,Eyre Square,108188-00012-1,1,4380_7778208_4090306,4380_1322 -4380_78064,292,4380_87963,Eyre Square,108191-00016-1,1,4380_7778208_4090306,4380_1322 -4380_78064,290,4380_87964,Eyre Square,108195-00015-1,1,4380_7778208_4090306,4380_1322 -4380_78064,294,4380_87965,Eyre Square,108189-00018-1,1,4380_7778208_4090306,4380_1322 -4380_78064,295,4380_87966,Eyre Square,108193-00019-1,1,4380_7778208_4090306,4380_1322 -4380_78064,293,4380_87967,Eyre Square,108197-00017-1,1,4380_7778208_4090306,4380_1322 -4380_78064,296,4380_87968,Eyre Square,107609-00021-1,1,4380_7778208_4090304,4380_1323 -4380_78064,297,4380_87970,Eyre Square,107246-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78064,285,4380_87976,Eyre Square,106486-00009-1,1,4380_7778208_4090301,4380_1322 -4380_78064,288,4380_87978,Eyre Square,106482-00011-1,1,4380_7778208_4090301,4380_1322 -4380_78064,286,4380_87979,Eyre Square,106488-00010-1,1,4380_7778208_4090301,4380_1322 -4380_78064,291,4380_87980,Eyre Square,107257-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_87981,Eyre Square,106490-00014-1,1,4380_7778208_4090301,4380_1322 -4380_78064,287,4380_87982,Eyre Square,106484-00012-1,1,4380_7778208_4090301,4380_1322 -4380_78064,292,4380_87983,Eyre Square,106489-00016-1,1,4380_7778208_4090301,4380_1322 -4380_78064,290,4380_87984,Eyre Square,106487-00015-1,1,4380_7778208_4090301,4380_1322 -4380_78064,294,4380_87985,Eyre Square,106485-00018-1,1,4380_7778208_4090301,4380_1322 -4380_78064,295,4380_87986,Eyre Square,106491-00019-1,1,4380_7778208_4090301,4380_1322 -4380_78064,293,4380_87987,Eyre Square,106483-00017-1,1,4380_7778208_4090301,4380_1322 -4380_78064,296,4380_87988,Eyre Square,107258-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78064,297,4380_87995,Eyre Square,106492-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_87996,Eyre Square,108388-00009-1,1,4380_7778208_4090307,4380_1323 -4380_78064,288,4380_87998,Eyre Square,108394-00011-1,1,4380_7778208_4090307,4380_1323 -4380_78064,286,4380_87999,Eyre Square,108386-00010-1,1,4380_7778208_4090307,4380_1323 -4380_78064,291,4380_88000,Eyre Square,107936-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88001,Eyre Square,108390-00014-1,1,4380_7778208_4090307,4380_1323 -4380_78064,287,4380_88002,Eyre Square,108392-00012-1,1,4380_7778208_4090307,4380_1323 -4380_78064,292,4380_88003,Eyre Square,108387-00016-1,1,4380_7778208_4090307,4380_1323 -4380_78064,290,4380_88004,Eyre Square,108389-00015-1,1,4380_7778208_4090307,4380_1323 -4380_78064,294,4380_88005,Eyre Square,108393-00018-1,1,4380_7778208_4090307,4380_1323 -4380_78064,295,4380_88006,Eyre Square,108391-00019-1,1,4380_7778208_4090307,4380_1323 -4380_78064,293,4380_88007,Eyre Square,108395-00017-1,1,4380_7778208_4090307,4380_1323 -4380_78064,296,4380_88008,Eyre Square,107937-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,285,4380_88014,Eyre Square,106898-00009-1,1,4380_7778208_4090302,4380_1322 -4380_78064,288,4380_88016,Eyre Square,106892-00011-1,1,4380_7778208_4090302,4380_1322 -4380_78064,286,4380_88017,Eyre Square,106900-00010-1,1,4380_7778208_4090302,4380_1322 -4380_78064,291,4380_88018,Eyre Square,106896-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_88019,Eyre Square,106890-00014-1,1,4380_7778208_4090302,4380_1322 -4380_78064,287,4380_88020,Eyre Square,106894-00012-1,1,4380_7778208_4090302,4380_1322 -4380_78064,292,4380_88021,Eyre Square,106901-00016-1,1,4380_7778208_4090302,4380_1322 -4380_78064,290,4380_88022,Eyre Square,106899-00015-1,1,4380_7778208_4090302,4380_1322 -4380_78064,294,4380_88023,Eyre Square,106895-00018-1,1,4380_7778208_4090302,4380_1322 -4380_78064,295,4380_88024,Eyre Square,106891-00019-1,1,4380_7778208_4090302,4380_1322 -4380_78064,293,4380_88025,Eyre Square,106893-00017-1,1,4380_7778208_4090302,4380_1322 -4380_78064,296,4380_88026,Eyre Square,106897-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78064,297,4380_88028,Eyre Square,107623-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_88034,Eyre Square,107264-00009-1,1,4380_7778208_4090303,4380_1322 -4380_78064,288,4380_88036,Eyre Square,107268-00011-1,1,4380_7778208_4090303,4380_1322 -4380_78064,286,4380_88037,Eyre Square,107262-00010-1,1,4380_7778208_4090303,4380_1322 -4380_78064,291,4380_88038,Eyre Square,108208-00013-1,1,4380_7778208_4090306,4380_1323 -4380_78064,289,4380_88039,Eyre Square,107266-00014-1,1,4380_7778208_4090303,4380_1322 -4380_78114,285,4380_8804,Dublin via Airport,5389-00009-1,1,4380_7778208_1090103,4380_138 -4380_78064,287,4380_88040,Eyre Square,107260-00012-1,1,4380_7778208_4090303,4380_1322 -4380_78064,292,4380_88041,Eyre Square,107263-00016-1,1,4380_7778208_4090303,4380_1322 -4380_78064,290,4380_88042,Eyre Square,107265-00015-1,1,4380_7778208_4090303,4380_1322 -4380_78064,294,4380_88043,Eyre Square,107261-00018-1,1,4380_7778208_4090303,4380_1322 -4380_78064,295,4380_88044,Eyre Square,107267-00019-1,1,4380_7778208_4090303,4380_1322 -4380_78064,293,4380_88045,Eyre Square,107269-00017-1,1,4380_7778208_4090303,4380_1322 -4380_78064,296,4380_88046,Eyre Square,108209-00021-1,1,4380_7778208_4090306,4380_1323 -4380_78114,286,4380_8805,Dublin via Airport,5399-00010-1,1,4380_7778208_1090103,4380_138 -4380_78064,297,4380_88053,Eyre Square,106902-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_88054,Eyre Square,107632-00009-1,1,4380_7778208_4090304,4380_1323 -4380_78064,288,4380_88056,Eyre Square,107624-00011-1,1,4380_7778208_4090304,4380_1323 -4380_78064,286,4380_88057,Eyre Square,107626-00010-1,1,4380_7778208_4090304,4380_1323 -4380_78064,291,4380_88058,Eyre Square,106500-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88059,Eyre Square,107630-00014-1,1,4380_7778208_4090304,4380_1323 -4380_78114,297,4380_8806,Dublin via Airport,5899-00008-1,1,4380_7778208_1090111,4380_140 -4380_78064,287,4380_88060,Eyre Square,107628-00012-1,1,4380_7778208_4090304,4380_1323 -4380_78064,292,4380_88061,Eyre Square,107627-00016-1,1,4380_7778208_4090304,4380_1323 -4380_78064,290,4380_88062,Eyre Square,107633-00015-1,1,4380_7778208_4090304,4380_1323 -4380_78064,294,4380_88063,Eyre Square,107629-00018-1,1,4380_7778208_4090304,4380_1323 -4380_78064,295,4380_88064,Eyre Square,107631-00019-1,1,4380_7778208_4090304,4380_1323 -4380_78064,293,4380_88065,Eyre Square,107625-00017-1,1,4380_7778208_4090304,4380_1323 -4380_78064,296,4380_88066,Eyre Square,106501-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78114,288,4380_8807,Dublin via Airport,5409-00011-1,1,4380_7778208_1090103,4380_138 -4380_78064,285,4380_88072,Eyre Square,107954-00009-1,1,4380_7778208_4090305,4380_1322 -4380_78064,288,4380_88074,Eyre Square,107950-00011-1,1,4380_7778208_4090305,4380_1322 -4380_78064,286,4380_88075,Eyre Square,107956-00010-1,1,4380_7778208_4090305,4380_1322 -4380_78064,291,4380_88076,Eyre Square,107634-00013-1,1,4380_7778208_4090304,4380_1323 -4380_78064,289,4380_88077,Eyre Square,107952-00014-1,1,4380_7778208_4090305,4380_1322 -4380_78064,287,4380_88078,Eyre Square,107958-00012-1,1,4380_7778208_4090305,4380_1322 -4380_78064,292,4380_88079,Eyre Square,107957-00016-1,1,4380_7778208_4090305,4380_1322 -4380_78114,287,4380_8808,Dublin via Airport,5419-00012-1,1,4380_7778208_1090103,4380_138 -4380_78064,290,4380_88080,Eyre Square,107955-00015-1,1,4380_7778208_4090305,4380_1322 -4380_78064,294,4380_88081,Eyre Square,107959-00018-1,1,4380_7778208_4090305,4380_1322 -4380_78064,295,4380_88082,Eyre Square,107953-00019-1,1,4380_7778208_4090305,4380_1322 -4380_78064,293,4380_88083,Eyre Square,107951-00017-1,1,4380_7778208_4090305,4380_1322 -4380_78064,296,4380_88084,Eyre Square,107635-00021-1,1,4380_7778208_4090304,4380_1323 -4380_78064,297,4380_88086,Eyre Square,107272-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78114,289,4380_8809,Dublin via Airport,5379-00014-1,1,4380_7778208_1090103,4380_138 -4380_78064,285,4380_88092,Eyre Square,108212-00009-1,1,4380_7778208_4090306,4380_1322 -4380_78064,288,4380_88094,Eyre Square,108222-00011-1,1,4380_7778208_4090306,4380_1322 -4380_78064,286,4380_88095,Eyre Square,108214-00010-1,1,4380_7778208_4090306,4380_1322 -4380_78064,291,4380_88096,Eyre Square,107273-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_88097,Eyre Square,108218-00014-1,1,4380_7778208_4090306,4380_1322 -4380_78064,287,4380_88098,Eyre Square,108216-00012-1,1,4380_7778208_4090306,4380_1322 -4380_78064,292,4380_88099,Eyre Square,108215-00016-1,1,4380_7778208_4090306,4380_1322 -4380_78114,290,4380_8810,Dublin via Airport,54798-00015-1,1,4380_7778208_1090103,4380_138 -4380_78064,290,4380_88100,Eyre Square,108213-00015-1,1,4380_7778208_4090306,4380_1322 -4380_78064,294,4380_88101,Eyre Square,108217-00018-1,1,4380_7778208_4090306,4380_1322 -4380_78064,295,4380_88102,Eyre Square,108219-00019-1,1,4380_7778208_4090306,4380_1322 -4380_78064,293,4380_88103,Eyre Square,108223-00017-1,1,4380_7778208_4090306,4380_1322 -4380_78064,296,4380_88104,Eyre Square,107274-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78114,291,4380_8811,Dublin via Airport,5984-00013-1,1,4380_7778208_1090113,4380_142 -4380_78064,297,4380_88111,Eyre Square,106516-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_88112,Eyre Square,106517-00009-1,1,4380_7778208_4090301,4380_1323 -4380_78064,288,4380_88114,Eyre Square,106519-00011-1,1,4380_7778208_4090301,4380_1323 -4380_78064,286,4380_88115,Eyre Square,106510-00010-1,1,4380_7778208_4090301,4380_1323 -4380_78064,291,4380_88116,Eyre Square,107960-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88117,Eyre Square,106508-00014-1,1,4380_7778208_4090301,4380_1323 -4380_78064,287,4380_88118,Eyre Square,106514-00012-1,1,4380_7778208_4090301,4380_1323 -4380_78064,292,4380_88119,Eyre Square,106511-00016-1,1,4380_7778208_4090301,4380_1323 -4380_78114,292,4380_8812,Dublin via Airport,54800-00016-1,1,4380_7778208_1090103,4380_138 -4380_78064,290,4380_88120,Eyre Square,106518-00015-1,1,4380_7778208_4090301,4380_1323 -4380_78064,294,4380_88121,Eyre Square,106515-00018-1,1,4380_7778208_4090301,4380_1323 -4380_78064,295,4380_88122,Eyre Square,106509-00019-1,1,4380_7778208_4090301,4380_1323 -4380_78064,293,4380_88123,Eyre Square,106520-00017-1,1,4380_7778208_4090301,4380_1323 -4380_78064,296,4380_88124,Eyre Square,107961-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78114,293,4380_8813,Dublin via Airport,54799-00017-1,1,4380_7778208_1090103,4380_138 -4380_78064,285,4380_88130,Eyre Square,108414-00009-1,1,4380_7778208_4090307,4380_1322 -4380_78064,288,4380_88132,Eyre Square,108406-00011-1,1,4380_7778208_4090307,4380_1322 -4380_78064,286,4380_88133,Eyre Square,108408-00010-1,1,4380_7778208_4090307,4380_1322 -4380_78064,291,4380_88134,Eyre Square,106916-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_88135,Eyre Square,108410-00014-1,1,4380_7778208_4090307,4380_1322 -4380_78064,287,4380_88136,Eyre Square,108412-00012-1,1,4380_7778208_4090307,4380_1322 -4380_78064,292,4380_88137,Eyre Square,108409-00016-1,1,4380_7778208_4090307,4380_1322 -4380_78064,290,4380_88138,Eyre Square,108415-00015-1,1,4380_7778208_4090307,4380_1322 -4380_78064,294,4380_88139,Eyre Square,108413-00018-1,1,4380_7778208_4090307,4380_1322 -4380_78114,294,4380_8814,Dublin via Airport,54801-00018-1,1,4380_7778208_1090103,4380_138 -4380_78064,295,4380_88140,Eyre Square,108411-00019-1,1,4380_7778208_4090307,4380_1322 -4380_78064,293,4380_88141,Eyre Square,108407-00017-1,1,4380_7778208_4090307,4380_1322 -4380_78064,296,4380_88142,Eyre Square,106917-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78064,297,4380_88144,Eyre Square,107649-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78114,295,4380_8815,Dublin via Airport,54802-00019-1,1,4380_7778208_1090103,4380_138 -4380_78064,285,4380_88150,Eyre Square,106920-00009-1,1,4380_7778208_4090302,4380_1322 -4380_78064,288,4380_88152,Eyre Square,106924-00011-1,1,4380_7778208_4090302,4380_1322 -4380_78064,286,4380_88153,Eyre Square,106922-00010-1,1,4380_7778208_4090302,4380_1322 -4380_78064,291,4380_88154,Eyre Square,108224-00013-1,1,4380_7778208_4090306,4380_1323 -4380_78064,289,4380_88155,Eyre Square,106918-00014-1,1,4380_7778208_4090302,4380_1322 -4380_78064,287,4380_88156,Eyre Square,106926-00012-1,1,4380_7778208_4090302,4380_1322 -4380_78064,292,4380_88157,Eyre Square,106923-00016-1,1,4380_7778208_4090302,4380_1322 -4380_78064,290,4380_88158,Eyre Square,106921-00015-1,1,4380_7778208_4090302,4380_1322 -4380_78064,294,4380_88159,Eyre Square,106927-00018-1,1,4380_7778208_4090302,4380_1322 -4380_78114,296,4380_8816,Dublin via Airport,55209-00021-1,1,4380_7778208_1090113,4380_142 -4380_78064,295,4380_88160,Eyre Square,106919-00019-1,1,4380_7778208_4090302,4380_1322 -4380_78064,293,4380_88161,Eyre Square,106925-00017-1,1,4380_7778208_4090302,4380_1322 -4380_78064,296,4380_88162,Eyre Square,108225-00021-1,1,4380_7778208_4090306,4380_1323 -4380_78064,297,4380_88169,Eyre Square,106928-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_88170,Eyre Square,107292-00009-1,1,4380_7778208_4090303,4380_1323 -4380_78064,288,4380_88172,Eyre Square,107288-00011-1,1,4380_7778208_4090303,4380_1323 -4380_78064,286,4380_88173,Eyre Square,107290-00010-1,1,4380_7778208_4090303,4380_1323 -4380_78064,291,4380_88174,Eyre Square,106522-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88175,Eyre Square,107294-00014-1,1,4380_7778208_4090303,4380_1323 -4380_78064,287,4380_88176,Eyre Square,107296-00012-1,1,4380_7778208_4090303,4380_1323 -4380_78064,292,4380_88177,Eyre Square,107291-00016-1,1,4380_7778208_4090303,4380_1323 -4380_78064,290,4380_88178,Eyre Square,107293-00015-1,1,4380_7778208_4090303,4380_1323 -4380_78064,294,4380_88179,Eyre Square,107297-00018-1,1,4380_7778208_4090303,4380_1323 -4380_78064,295,4380_88180,Eyre Square,107295-00019-1,1,4380_7778208_4090303,4380_1323 -4380_78064,293,4380_88181,Eyre Square,107289-00017-1,1,4380_7778208_4090303,4380_1323 -4380_78064,296,4380_88182,Eyre Square,106523-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,285,4380_88188,Eyre Square,107656-00009-1,1,4380_7778208_4090304,4380_1322 -4380_78064,288,4380_88190,Eyre Square,107658-00011-1,1,4380_7778208_4090304,4380_1322 -4380_78064,286,4380_88191,Eyre Square,107654-00010-1,1,4380_7778208_4090304,4380_1322 -4380_78064,291,4380_88192,Eyre Square,107650-00013-1,1,4380_7778208_4090304,4380_1323 -4380_78064,289,4380_88193,Eyre Square,107652-00014-1,1,4380_7778208_4090304,4380_1322 -4380_78064,287,4380_88194,Eyre Square,107660-00012-1,1,4380_7778208_4090304,4380_1322 -4380_78064,292,4380_88195,Eyre Square,107655-00016-1,1,4380_7778208_4090304,4380_1322 -4380_78064,290,4380_88196,Eyre Square,107657-00015-1,1,4380_7778208_4090304,4380_1322 -4380_78064,294,4380_88197,Eyre Square,107661-00018-1,1,4380_7778208_4090304,4380_1322 -4380_78064,295,4380_88198,Eyre Square,107653-00019-1,1,4380_7778208_4090304,4380_1322 -4380_78064,293,4380_88199,Eyre Square,107659-00017-1,1,4380_7778208_4090304,4380_1322 -4380_78064,296,4380_88200,Eyre Square,107651-00021-1,1,4380_7778208_4090304,4380_1323 -4380_78064,297,4380_88202,Eyre Square,107298-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78064,285,4380_88208,Eyre Square,107982-00009-1,1,4380_7778208_4090305,4380_1322 -4380_78064,288,4380_88210,Eyre Square,107976-00011-1,1,4380_7778208_4090305,4380_1322 -4380_78064,286,4380_88211,Eyre Square,107980-00010-1,1,4380_7778208_4090305,4380_1322 -4380_78064,291,4380_88212,Eyre Square,107299-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_88213,Eyre Square,107978-00014-1,1,4380_7778208_4090305,4380_1322 -4380_78064,287,4380_88214,Eyre Square,107974-00012-1,1,4380_7778208_4090305,4380_1322 -4380_78064,292,4380_88215,Eyre Square,107981-00016-1,1,4380_7778208_4090305,4380_1322 -4380_78064,290,4380_88216,Eyre Square,107983-00015-1,1,4380_7778208_4090305,4380_1322 -4380_78064,294,4380_88217,Eyre Square,107975-00018-1,1,4380_7778208_4090305,4380_1322 -4380_78064,295,4380_88218,Eyre Square,107979-00019-1,1,4380_7778208_4090305,4380_1322 -4380_78064,293,4380_88219,Eyre Square,107977-00017-1,1,4380_7778208_4090305,4380_1322 -4380_78064,296,4380_88220,Eyre Square,107300-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78064,297,4380_88227,Eyre Square,106536-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_88228,Eyre Square,108624-00009-1,1,4380_7778208_4090308,4380_1323 -4380_78064,288,4380_88230,Eyre Square,108620-00011-1,1,4380_7778208_4090308,4380_1323 -4380_78064,286,4380_88231,Eyre Square,108622-00010-1,1,4380_7778208_4090308,4380_1323 -4380_78064,291,4380_88232,Eyre Square,107984-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88233,Eyre Square,108616-00014-1,1,4380_7778208_4090308,4380_1323 -4380_78064,287,4380_88234,Eyre Square,108618-00012-1,1,4380_7778208_4090308,4380_1323 -4380_78064,292,4380_88235,Eyre Square,108623-00016-1,1,4380_7778208_4090308,4380_1323 -4380_78064,290,4380_88236,Eyre Square,108625-00015-1,1,4380_7778208_4090308,4380_1323 -4380_78064,294,4380_88237,Eyre Square,108619-00018-1,1,4380_7778208_4090308,4380_1323 -4380_78064,295,4380_88238,Eyre Square,108617-00019-1,1,4380_7778208_4090308,4380_1323 -4380_78064,293,4380_88239,Eyre Square,108621-00017-1,1,4380_7778208_4090308,4380_1323 -4380_78114,285,4380_8824,Dublin via Airport,5464-00009-1,1,4380_7778208_1090104,4380_138 -4380_78064,296,4380_88240,Eyre Square,107985-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,285,4380_88246,Eyre Square,108240-00009-1,1,4380_7778208_4090306,4380_1322 -4380_78064,288,4380_88248,Eyre Square,108246-00011-1,1,4380_7778208_4090306,4380_1322 -4380_78064,286,4380_88249,Eyre Square,108244-00010-1,1,4380_7778208_4090306,4380_1322 -4380_78114,286,4380_8825,Dublin via Airport,5474-00010-1,1,4380_7778208_1090104,4380_138 -4380_78064,291,4380_88250,Eyre Square,106942-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_88251,Eyre Square,108242-00014-1,1,4380_7778208_4090306,4380_1322 -4380_78064,287,4380_88252,Eyre Square,108238-00012-1,1,4380_7778208_4090306,4380_1322 -4380_78064,292,4380_88253,Eyre Square,108245-00016-1,1,4380_7778208_4090306,4380_1322 -4380_78064,290,4380_88254,Eyre Square,108241-00015-1,1,4380_7778208_4090306,4380_1322 -4380_78064,294,4380_88255,Eyre Square,108239-00018-1,1,4380_7778208_4090306,4380_1322 -4380_78064,295,4380_88256,Eyre Square,108243-00019-1,1,4380_7778208_4090306,4380_1322 -4380_78064,293,4380_88257,Eyre Square,108247-00017-1,1,4380_7778208_4090306,4380_1322 -4380_78064,296,4380_88258,Eyre Square,106943-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78114,297,4380_8826,Dublin via Airport,5964-00008-1,1,4380_7778208_1090112,4380_140 -4380_78064,297,4380_88260,Eyre Square,107665-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_88266,Eyre Square,106539-00009-1,1,4380_7778208_4090301,4380_1322 -4380_78064,288,4380_88268,Eyre Square,106545-00011-1,1,4380_7778208_4090301,4380_1322 -4380_78064,286,4380_88269,Eyre Square,106541-00010-1,1,4380_7778208_4090301,4380_1322 -4380_78114,288,4380_8827,Dublin via Airport,5484-00011-1,1,4380_7778208_1090104,4380_138 -4380_78064,291,4380_88270,Eyre Square,108248-00013-1,1,4380_7778208_4090306,4380_1323 -4380_78064,289,4380_88271,Eyre Square,106537-00014-1,1,4380_7778208_4090301,4380_1322 -4380_78064,287,4380_88272,Eyre Square,106543-00012-1,1,4380_7778208_4090301,4380_1322 -4380_78064,292,4380_88273,Eyre Square,106542-00016-1,1,4380_7778208_4090301,4380_1322 -4380_78064,290,4380_88274,Eyre Square,106540-00015-1,1,4380_7778208_4090301,4380_1322 -4380_78064,294,4380_88275,Eyre Square,106544-00018-1,1,4380_7778208_4090301,4380_1322 -4380_78064,295,4380_88276,Eyre Square,106538-00019-1,1,4380_7778208_4090301,4380_1322 -4380_78064,293,4380_88277,Eyre Square,106546-00017-1,1,4380_7778208_4090301,4380_1322 -4380_78064,296,4380_88278,Eyre Square,108249-00021-1,1,4380_7778208_4090306,4380_1323 -4380_78114,287,4380_8828,Dublin via Airport,5494-00012-1,1,4380_7778208_1090104,4380_138 -4380_78064,297,4380_88285,Eyre Square,106944-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_88286,Eyre Square,108426-00009-1,1,4380_7778208_4090307,4380_1323 -4380_78064,288,4380_88288,Eyre Square,108428-00011-1,1,4380_7778208_4090307,4380_1323 -4380_78064,286,4380_88289,Eyre Square,108434-00010-1,1,4380_7778208_4090307,4380_1323 -4380_78114,289,4380_8829,Dublin via Airport,5454-00014-1,1,4380_7778208_1090104,4380_138 -4380_78064,291,4380_88290,Eyre Square,106548-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88291,Eyre Square,108432-00014-1,1,4380_7778208_4090307,4380_1323 -4380_78064,287,4380_88292,Eyre Square,108430-00012-1,1,4380_7778208_4090307,4380_1323 -4380_78064,292,4380_88293,Eyre Square,108435-00016-1,1,4380_7778208_4090307,4380_1323 -4380_78064,290,4380_88294,Eyre Square,108427-00015-1,1,4380_7778208_4090307,4380_1323 -4380_78064,294,4380_88295,Eyre Square,108431-00018-1,1,4380_7778208_4090307,4380_1323 -4380_78064,295,4380_88296,Eyre Square,108433-00019-1,1,4380_7778208_4090307,4380_1323 -4380_78064,293,4380_88297,Eyre Square,108429-00017-1,1,4380_7778208_4090307,4380_1323 -4380_78064,296,4380_88298,Eyre Square,106549-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78113,285,4380_883,Dundalk,49928-00009-1,0,4380_7778208_1000905,4380_12 -4380_78114,290,4380_8830,Dublin via Airport,54857-00015-1,1,4380_7778208_1090104,4380_138 -4380_78064,285,4380_88304,Eyre Square,106945-00009-1,1,4380_7778208_4090302,4380_1322 -4380_78064,288,4380_88306,Eyre Square,106949-00011-1,1,4380_7778208_4090302,4380_1322 -4380_78064,286,4380_88307,Eyre Square,106947-00010-1,1,4380_7778208_4090302,4380_1322 -4380_78064,291,4380_88308,Eyre Square,107676-00013-1,1,4380_7778208_4090304,4380_1323 -4380_78064,289,4380_88309,Eyre Square,106955-00014-1,1,4380_7778208_4090302,4380_1322 -4380_78114,291,4380_8831,Dublin via Airport,6017-00013-1,1,4380_7778208_1090114,4380_142 -4380_78064,287,4380_88310,Eyre Square,106953-00012-1,1,4380_7778208_4090302,4380_1322 -4380_78064,292,4380_88311,Eyre Square,106948-00016-1,1,4380_7778208_4090302,4380_1322 -4380_78064,290,4380_88312,Eyre Square,106946-00015-1,1,4380_7778208_4090302,4380_1322 -4380_78064,294,4380_88313,Eyre Square,106954-00018-1,1,4380_7778208_4090302,4380_1322 -4380_78064,295,4380_88314,Eyre Square,106956-00019-1,1,4380_7778208_4090302,4380_1322 -4380_78064,293,4380_88315,Eyre Square,106950-00017-1,1,4380_7778208_4090302,4380_1322 -4380_78064,296,4380_88316,Eyre Square,107677-00021-1,1,4380_7778208_4090304,4380_1323 -4380_78064,297,4380_88318,Eyre Square,107314-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78114,292,4380_8832,Dublin via Airport,54855-00016-1,1,4380_7778208_1090104,4380_138 -4380_78064,285,4380_88324,Eyre Square,107323-00009-1,1,4380_7778208_4090303,4380_1322 -4380_78064,288,4380_88326,Eyre Square,107315-00011-1,1,4380_7778208_4090303,4380_1322 -4380_78064,286,4380_88327,Eyre Square,107317-00010-1,1,4380_7778208_4090303,4380_1322 -4380_78064,291,4380_88328,Eyre Square,107319-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_88329,Eyre Square,107321-00014-1,1,4380_7778208_4090303,4380_1322 -4380_78114,293,4380_8833,Dublin via Airport,54856-00017-1,1,4380_7778208_1090104,4380_138 -4380_78064,287,4380_88330,Eyre Square,107325-00012-1,1,4380_7778208_4090303,4380_1322 -4380_78064,292,4380_88331,Eyre Square,107318-00016-1,1,4380_7778208_4090303,4380_1322 -4380_78064,290,4380_88332,Eyre Square,107324-00015-1,1,4380_7778208_4090303,4380_1322 -4380_78064,294,4380_88333,Eyre Square,107326-00018-1,1,4380_7778208_4090303,4380_1322 -4380_78064,295,4380_88334,Eyre Square,107322-00019-1,1,4380_7778208_4090303,4380_1322 -4380_78064,293,4380_88335,Eyre Square,107316-00017-1,1,4380_7778208_4090303,4380_1322 -4380_78064,296,4380_88336,Eyre Square,107320-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78114,294,4380_8834,Dublin via Airport,54858-00018-1,1,4380_7778208_1090104,4380_138 -4380_78064,297,4380_88343,Eyre Square,106556-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_88344,Eyre Square,107687-00009-1,1,4380_7778208_4090304,4380_1323 -4380_78064,288,4380_88346,Eyre Square,107679-00011-1,1,4380_7778208_4090304,4380_1323 -4380_78064,286,4380_88347,Eyre Square,107685-00010-1,1,4380_7778208_4090304,4380_1323 -4380_78064,291,4380_88348,Eyre Square,107998-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88349,Eyre Square,107683-00014-1,1,4380_7778208_4090304,4380_1323 -4380_78114,295,4380_8835,Dublin via Airport,54854-00019-1,1,4380_7778208_1090104,4380_138 -4380_78064,287,4380_88350,Eyre Square,107681-00012-1,1,4380_7778208_4090304,4380_1323 -4380_78064,292,4380_88351,Eyre Square,107686-00016-1,1,4380_7778208_4090304,4380_1323 -4380_78064,290,4380_88352,Eyre Square,107688-00015-1,1,4380_7778208_4090304,4380_1323 -4380_78064,294,4380_88353,Eyre Square,107682-00018-1,1,4380_7778208_4090304,4380_1323 -4380_78064,295,4380_88354,Eyre Square,107684-00019-1,1,4380_7778208_4090304,4380_1323 -4380_78064,293,4380_88355,Eyre Square,107680-00017-1,1,4380_7778208_4090304,4380_1323 -4380_78064,296,4380_88356,Eyre Square,107999-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78114,296,4380_8836,Dublin via Airport,55234-00021-1,1,4380_7778208_1090114,4380_142 -4380_78064,285,4380_88362,Eyre Square,108000-00009-1,1,4380_7778208_4090305,4380_1322 -4380_78064,288,4380_88364,Eyre Square,108008-00011-1,1,4380_7778208_4090305,4380_1322 -4380_78064,286,4380_88365,Eyre Square,108002-00010-1,1,4380_7778208_4090305,4380_1322 -4380_78064,291,4380_88366,Eyre Square,106958-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_88367,Eyre Square,108006-00014-1,1,4380_7778208_4090305,4380_1322 -4380_78064,287,4380_88368,Eyre Square,108004-00012-1,1,4380_7778208_4090305,4380_1322 -4380_78064,292,4380_88369,Eyre Square,108003-00016-1,1,4380_7778208_4090305,4380_1322 -4380_78064,290,4380_88370,Eyre Square,108001-00015-1,1,4380_7778208_4090305,4380_1322 -4380_78064,294,4380_88371,Eyre Square,108005-00018-1,1,4380_7778208_4090305,4380_1322 -4380_78064,295,4380_88372,Eyre Square,108007-00019-1,1,4380_7778208_4090305,4380_1322 -4380_78064,293,4380_88373,Eyre Square,108009-00017-1,1,4380_7778208_4090305,4380_1322 -4380_78064,296,4380_88374,Eyre Square,106959-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78064,297,4380_88376,Eyre Square,107691-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_88382,Eyre Square,108638-00009-1,1,4380_7778208_4090308,4380_1322 -4380_78064,288,4380_88384,Eyre Square,108640-00011-1,1,4380_7778208_4090308,4380_1322 -4380_78064,286,4380_88385,Eyre Square,108642-00010-1,1,4380_7778208_4090308,4380_1322 -4380_78064,291,4380_88386,Eyre Square,108262-00013-1,1,4380_7778208_4090306,4380_1323 -4380_78064,289,4380_88387,Eyre Square,108636-00014-1,1,4380_7778208_4090308,4380_1322 -4380_78064,287,4380_88388,Eyre Square,108644-00012-1,1,4380_7778208_4090308,4380_1322 -4380_78064,292,4380_88389,Eyre Square,108643-00016-1,1,4380_7778208_4090308,4380_1322 -4380_78064,290,4380_88390,Eyre Square,108639-00015-1,1,4380_7778208_4090308,4380_1322 -4380_78064,294,4380_88391,Eyre Square,108645-00018-1,1,4380_7778208_4090308,4380_1322 -4380_78064,295,4380_88392,Eyre Square,108637-00019-1,1,4380_7778208_4090308,4380_1322 -4380_78064,293,4380_88393,Eyre Square,108641-00017-1,1,4380_7778208_4090308,4380_1322 -4380_78064,296,4380_88394,Eyre Square,108263-00021-1,1,4380_7778208_4090306,4380_1323 -4380_78113,286,4380_884,Dundalk,49930-00010-1,0,4380_7778208_1000905,4380_12 -4380_78064,297,4380_88401,Eyre Square,106970-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_88402,Eyre Square,108266-00009-1,1,4380_7778208_4090306,4380_1323 -4380_78064,288,4380_88404,Eyre Square,108268-00011-1,1,4380_7778208_4090306,4380_1323 -4380_78064,286,4380_88405,Eyre Square,108270-00010-1,1,4380_7778208_4090306,4380_1323 -4380_78064,291,4380_88406,Eyre Square,106563-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88407,Eyre Square,108272-00014-1,1,4380_7778208_4090306,4380_1323 -4380_78064,287,4380_88408,Eyre Square,108264-00012-1,1,4380_7778208_4090306,4380_1323 -4380_78064,292,4380_88409,Eyre Square,108271-00016-1,1,4380_7778208_4090306,4380_1323 -4380_78064,290,4380_88410,Eyre Square,108267-00015-1,1,4380_7778208_4090306,4380_1323 -4380_78064,294,4380_88411,Eyre Square,108265-00018-1,1,4380_7778208_4090306,4380_1323 -4380_78064,295,4380_88412,Eyre Square,108273-00019-1,1,4380_7778208_4090306,4380_1323 -4380_78064,293,4380_88413,Eyre Square,108269-00017-1,1,4380_7778208_4090306,4380_1323 -4380_78064,296,4380_88414,Eyre Square,106564-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,285,4380_88420,Eyre Square,108712-00009-1,1,4380_7778208_4090309,4380_1322 -4380_78064,288,4380_88422,Eyre Square,108710-00011-1,1,4380_7778208_4090309,4380_1322 -4380_78064,286,4380_88423,Eyre Square,108706-00010-1,1,4380_7778208_4090309,4380_1322 -4380_78064,291,4380_88424,Eyre Square,107692-00013-1,1,4380_7778208_4090304,4380_1323 -4380_78064,289,4380_88425,Eyre Square,108708-00014-1,1,4380_7778208_4090309,4380_1322 -4380_78064,287,4380_88426,Eyre Square,108714-00012-1,1,4380_7778208_4090309,4380_1322 -4380_78064,292,4380_88427,Eyre Square,108707-00016-1,1,4380_7778208_4090309,4380_1322 -4380_78064,290,4380_88428,Eyre Square,108713-00015-1,1,4380_7778208_4090309,4380_1322 -4380_78064,294,4380_88429,Eyre Square,108715-00018-1,1,4380_7778208_4090309,4380_1322 -4380_78145,285,4380_8843,Athboy,8832-00009-1,0,4380_7778208_1110121,4380_146 -4380_78064,295,4380_88430,Eyre Square,108709-00019-1,1,4380_7778208_4090309,4380_1322 -4380_78064,293,4380_88431,Eyre Square,108711-00017-1,1,4380_7778208_4090309,4380_1322 -4380_78064,296,4380_88432,Eyre Square,107693-00021-1,1,4380_7778208_4090304,4380_1323 -4380_78064,297,4380_88434,Eyre Square,107340-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78145,286,4380_8844,Athboy,8837-00010-1,0,4380_7778208_1110121,4380_146 -4380_78064,285,4380_88440,Eyre Square,106570-00009-1,1,4380_7778208_4090301,4380_1322 -4380_78064,288,4380_88442,Eyre Square,106568-00011-1,1,4380_7778208_4090301,4380_1322 -4380_78064,286,4380_88443,Eyre Square,106566-00010-1,1,4380_7778208_4090301,4380_1322 -4380_78064,291,4380_88444,Eyre Square,107341-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_88445,Eyre Square,106572-00014-1,1,4380_7778208_4090301,4380_1322 -4380_78064,287,4380_88446,Eyre Square,106574-00012-1,1,4380_7778208_4090301,4380_1322 -4380_78064,292,4380_88447,Eyre Square,106567-00016-1,1,4380_7778208_4090301,4380_1322 -4380_78064,290,4380_88448,Eyre Square,106571-00015-1,1,4380_7778208_4090301,4380_1322 -4380_78064,294,4380_88449,Eyre Square,106575-00018-1,1,4380_7778208_4090301,4380_1322 -4380_78145,297,4380_8845,Athboy,7829-00008-1,0,4380_7778208_1110108,4380_147 -4380_78064,295,4380_88450,Eyre Square,106573-00019-1,1,4380_7778208_4090301,4380_1322 -4380_78064,293,4380_88451,Eyre Square,106569-00017-1,1,4380_7778208_4090301,4380_1322 -4380_78064,296,4380_88452,Eyre Square,107342-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78064,297,4380_88459,Eyre Square,106578-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78145,288,4380_8846,Athboy,8842-00011-1,0,4380_7778208_1110121,4380_146 -4380_78064,285,4380_88460,Eyre Square,108448-00009-1,1,4380_7778208_4090307,4380_1323 -4380_78064,288,4380_88462,Eyre Square,108454-00011-1,1,4380_7778208_4090307,4380_1323 -4380_78064,286,4380_88463,Eyre Square,108450-00010-1,1,4380_7778208_4090307,4380_1323 -4380_78064,291,4380_88464,Eyre Square,108022-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88465,Eyre Square,108446-00014-1,1,4380_7778208_4090307,4380_1323 -4380_78064,287,4380_88466,Eyre Square,108452-00012-1,1,4380_7778208_4090307,4380_1323 -4380_78064,292,4380_88467,Eyre Square,108451-00016-1,1,4380_7778208_4090307,4380_1323 -4380_78064,290,4380_88468,Eyre Square,108449-00015-1,1,4380_7778208_4090307,4380_1323 -4380_78064,294,4380_88469,Eyre Square,108453-00018-1,1,4380_7778208_4090307,4380_1323 -4380_78145,287,4380_8847,Athboy,8847-00012-1,0,4380_7778208_1110121,4380_146 -4380_78064,295,4380_88470,Eyre Square,108447-00019-1,1,4380_7778208_4090307,4380_1323 -4380_78064,293,4380_88471,Eyre Square,108455-00017-1,1,4380_7778208_4090307,4380_1323 -4380_78064,296,4380_88472,Eyre Square,108023-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,285,4380_88478,Eyre Square,106984-00009-1,1,4380_7778208_4090302,4380_1322 -4380_78145,289,4380_8848,Athboy,8827-00014-1,0,4380_7778208_1110121,4380_146 -4380_78064,288,4380_88480,Eyre Square,106976-00011-1,1,4380_7778208_4090302,4380_1322 -4380_78064,286,4380_88481,Eyre Square,106974-00010-1,1,4380_7778208_4090302,4380_1322 -4380_78064,291,4380_88482,Eyre Square,106980-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_88483,Eyre Square,106978-00014-1,1,4380_7778208_4090302,4380_1322 -4380_78064,287,4380_88484,Eyre Square,106982-00012-1,1,4380_7778208_4090302,4380_1322 -4380_78064,292,4380_88485,Eyre Square,106975-00016-1,1,4380_7778208_4090302,4380_1322 -4380_78064,290,4380_88486,Eyre Square,106985-00015-1,1,4380_7778208_4090302,4380_1322 -4380_78064,294,4380_88487,Eyre Square,106983-00018-1,1,4380_7778208_4090302,4380_1322 -4380_78064,295,4380_88488,Eyre Square,106979-00019-1,1,4380_7778208_4090302,4380_1322 -4380_78064,293,4380_88489,Eyre Square,106977-00017-1,1,4380_7778208_4090302,4380_1322 -4380_78145,290,4380_8849,Athboy,57475-00015-1,0,4380_7778208_1110121,4380_146 -4380_78064,296,4380_88490,Eyre Square,106981-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78064,297,4380_88492,Eyre Square,107707-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_88498,Eyre Square,107354-00009-1,1,4380_7778208_4090303,4380_1322 -4380_78113,297,4380_885,Dundalk,49834-00008-1,0,4380_7778208_1000904,4380_15 -4380_78145,291,4380_8850,Athboy,7771-00013-1,0,4380_7778208_1110107,4380_148 -4380_78064,288,4380_88500,Eyre Square,107350-00011-1,1,4380_7778208_4090303,4380_1322 -4380_78064,286,4380_88501,Eyre Square,107348-00010-1,1,4380_7778208_4090303,4380_1322 -4380_78064,291,4380_88502,Eyre Square,108286-00013-1,1,4380_7778208_4090306,4380_1323 -4380_78064,289,4380_88503,Eyre Square,107344-00014-1,1,4380_7778208_4090303,4380_1322 -4380_78064,287,4380_88504,Eyre Square,107346-00012-1,1,4380_7778208_4090303,4380_1322 -4380_78064,292,4380_88505,Eyre Square,107349-00016-1,1,4380_7778208_4090303,4380_1322 -4380_78064,290,4380_88506,Eyre Square,107355-00015-1,1,4380_7778208_4090303,4380_1322 -4380_78064,294,4380_88507,Eyre Square,107347-00018-1,1,4380_7778208_4090303,4380_1322 -4380_78064,295,4380_88508,Eyre Square,107345-00019-1,1,4380_7778208_4090303,4380_1322 -4380_78064,293,4380_88509,Eyre Square,107351-00017-1,1,4380_7778208_4090303,4380_1322 -4380_78145,292,4380_8851,Athboy,57472-00016-1,0,4380_7778208_1110121,4380_146 -4380_78064,296,4380_88510,Eyre Square,108287-00021-1,1,4380_7778208_4090306,4380_1323 -4380_78064,297,4380_88517,Eyre Square,106986-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_88518,Eyre Square,107708-00009-1,1,4380_7778208_4090304,4380_1323 -4380_78145,293,4380_8852,Athboy,57474-00017-1,0,4380_7778208_1110121,4380_146 -4380_78064,288,4380_88520,Eyre Square,107716-00011-1,1,4380_7778208_4090304,4380_1323 -4380_78064,286,4380_88521,Eyre Square,107714-00010-1,1,4380_7778208_4090304,4380_1323 -4380_78064,291,4380_88522,Eyre Square,106588-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88523,Eyre Square,107710-00014-1,1,4380_7778208_4090304,4380_1323 -4380_78064,287,4380_88524,Eyre Square,107712-00012-1,1,4380_7778208_4090304,4380_1323 -4380_78064,292,4380_88525,Eyre Square,107715-00016-1,1,4380_7778208_4090304,4380_1323 -4380_78064,290,4380_88526,Eyre Square,107709-00015-1,1,4380_7778208_4090304,4380_1323 -4380_78064,294,4380_88527,Eyre Square,107713-00018-1,1,4380_7778208_4090304,4380_1323 -4380_78064,295,4380_88528,Eyre Square,107711-00019-1,1,4380_7778208_4090304,4380_1323 -4380_78064,293,4380_88529,Eyre Square,107717-00017-1,1,4380_7778208_4090304,4380_1323 -4380_78145,294,4380_8853,Athboy,57473-00018-1,0,4380_7778208_1110121,4380_146 -4380_78064,296,4380_88530,Eyre Square,106589-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,285,4380_88536,Eyre Square,108028-00009-1,1,4380_7778208_4090305,4380_1322 -4380_78064,288,4380_88538,Eyre Square,108034-00011-1,1,4380_7778208_4090305,4380_1322 -4380_78064,286,4380_88539,Eyre Square,108026-00010-1,1,4380_7778208_4090305,4380_1322 -4380_78145,295,4380_8854,Athboy,57471-00019-1,0,4380_7778208_1110121,4380_146 -4380_78064,291,4380_88540,Eyre Square,107718-00013-1,1,4380_7778208_4090304,4380_1323 -4380_78064,289,4380_88541,Eyre Square,108032-00014-1,1,4380_7778208_4090305,4380_1322 -4380_78064,287,4380_88542,Eyre Square,108030-00012-1,1,4380_7778208_4090305,4380_1322 -4380_78064,292,4380_88543,Eyre Square,108027-00016-1,1,4380_7778208_4090305,4380_1322 -4380_78064,290,4380_88544,Eyre Square,108029-00015-1,1,4380_7778208_4090305,4380_1322 -4380_78064,294,4380_88545,Eyre Square,108031-00018-1,1,4380_7778208_4090305,4380_1322 -4380_78064,295,4380_88546,Eyre Square,108033-00019-1,1,4380_7778208_4090305,4380_1322 -4380_78064,293,4380_88547,Eyre Square,108035-00017-1,1,4380_7778208_4090305,4380_1322 -4380_78064,296,4380_88548,Eyre Square,107719-00021-1,1,4380_7778208_4090304,4380_1323 -4380_78145,296,4380_8855,Athboy,55712-00021-1,0,4380_7778208_1110107,4380_148 -4380_78064,297,4380_88550,Eyre Square,107356-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78064,285,4380_88556,Eyre Square,108656-00009-1,1,4380_7778208_4090308,4380_1322 -4380_78064,288,4380_88558,Eyre Square,108658-00011-1,1,4380_7778208_4090308,4380_1322 -4380_78064,286,4380_88559,Eyre Square,108662-00010-1,1,4380_7778208_4090308,4380_1322 -4380_78064,291,4380_88560,Eyre Square,107357-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_88561,Eyre Square,108664-00014-1,1,4380_7778208_4090308,4380_1322 -4380_78064,287,4380_88562,Eyre Square,108660-00012-1,1,4380_7778208_4090308,4380_1322 -4380_78064,292,4380_88563,Eyre Square,108663-00016-1,1,4380_7778208_4090308,4380_1322 -4380_78064,290,4380_88564,Eyre Square,108657-00015-1,1,4380_7778208_4090308,4380_1322 -4380_78064,294,4380_88565,Eyre Square,108661-00018-1,1,4380_7778208_4090308,4380_1322 -4380_78064,295,4380_88566,Eyre Square,108665-00019-1,1,4380_7778208_4090308,4380_1322 -4380_78064,293,4380_88567,Eyre Square,108659-00017-1,1,4380_7778208_4090308,4380_1322 -4380_78064,296,4380_88568,Eyre Square,107358-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78064,297,4380_88575,Eyre Square,106594-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_88576,Eyre Square,108294-00009-1,1,4380_7778208_4090306,4380_1323 -4380_78064,288,4380_88578,Eyre Square,108292-00011-1,1,4380_7778208_4090306,4380_1323 -4380_78064,286,4380_88579,Eyre Square,108298-00010-1,1,4380_7778208_4090306,4380_1323 -4380_78064,291,4380_88580,Eyre Square,108036-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88581,Eyre Square,108296-00014-1,1,4380_7778208_4090306,4380_1323 -4380_78064,287,4380_88582,Eyre Square,108290-00012-1,1,4380_7778208_4090306,4380_1323 -4380_78064,292,4380_88583,Eyre Square,108299-00016-1,1,4380_7778208_4090306,4380_1323 -4380_78064,290,4380_88584,Eyre Square,108295-00015-1,1,4380_7778208_4090306,4380_1323 -4380_78064,294,4380_88585,Eyre Square,108291-00018-1,1,4380_7778208_4090306,4380_1323 -4380_78064,295,4380_88586,Eyre Square,108297-00019-1,1,4380_7778208_4090306,4380_1323 -4380_78064,293,4380_88587,Eyre Square,108293-00017-1,1,4380_7778208_4090306,4380_1323 -4380_78064,296,4380_88588,Eyre Square,108037-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,285,4380_88594,Eyre Square,106603-00009-1,1,4380_7778208_4090301,4380_1322 -4380_78064,288,4380_88596,Eyre Square,106599-00011-1,1,4380_7778208_4090301,4380_1322 -4380_78064,286,4380_88597,Eyre Square,106595-00010-1,1,4380_7778208_4090301,4380_1322 -4380_78064,291,4380_88598,Eyre Square,107000-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_88599,Eyre Square,106597-00014-1,1,4380_7778208_4090301,4380_1322 -4380_78113,287,4380_886,Dundalk,49932-00012-1,0,4380_7778208_1000905,4380_12 -4380_78064,287,4380_88600,Eyre Square,106601-00012-1,1,4380_7778208_4090301,4380_1322 -4380_78064,292,4380_88601,Eyre Square,106596-00016-1,1,4380_7778208_4090301,4380_1322 -4380_78064,290,4380_88602,Eyre Square,106604-00015-1,1,4380_7778208_4090301,4380_1322 -4380_78064,294,4380_88603,Eyre Square,106602-00018-1,1,4380_7778208_4090301,4380_1322 -4380_78064,295,4380_88604,Eyre Square,106598-00019-1,1,4380_7778208_4090301,4380_1322 -4380_78064,293,4380_88605,Eyre Square,106600-00017-1,1,4380_7778208_4090301,4380_1322 -4380_78064,296,4380_88606,Eyre Square,107001-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78064,297,4380_88608,Eyre Square,107733-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_88614,Eyre Square,108468-00009-1,1,4380_7778208_4090307,4380_1322 -4380_78064,288,4380_88616,Eyre Square,108474-00011-1,1,4380_7778208_4090307,4380_1322 -4380_78064,286,4380_88617,Eyre Square,108470-00010-1,1,4380_7778208_4090307,4380_1322 -4380_78064,291,4380_88618,Eyre Square,108300-00013-1,1,4380_7778208_4090306,4380_1323 -4380_78064,289,4380_88619,Eyre Square,108472-00014-1,1,4380_7778208_4090307,4380_1322 -4380_78145,285,4380_8862,Athboy,8808-00009-1,0,4380_7778208_1110120,4380_146 -4380_78064,287,4380_88620,Eyre Square,108466-00012-1,1,4380_7778208_4090307,4380_1322 -4380_78064,292,4380_88621,Eyre Square,108471-00016-1,1,4380_7778208_4090307,4380_1322 -4380_78064,290,4380_88622,Eyre Square,108469-00015-1,1,4380_7778208_4090307,4380_1322 -4380_78064,294,4380_88623,Eyre Square,108467-00018-1,1,4380_7778208_4090307,4380_1322 -4380_78064,295,4380_88624,Eyre Square,108473-00019-1,1,4380_7778208_4090307,4380_1322 -4380_78064,293,4380_88625,Eyre Square,108475-00017-1,1,4380_7778208_4090307,4380_1322 -4380_78064,296,4380_88626,Eyre Square,108301-00021-1,1,4380_7778208_4090306,4380_1323 -4380_78145,286,4380_8863,Athboy,8813-00010-1,0,4380_7778208_1110120,4380_146 -4380_78064,297,4380_88633,Eyre Square,107002-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_88634,Eyre Square,107005-00009-1,1,4380_7778208_4090302,4380_1323 -4380_78064,288,4380_88636,Eyre Square,107003-00011-1,1,4380_7778208_4090302,4380_1323 -4380_78064,286,4380_88637,Eyre Square,107011-00010-1,1,4380_7778208_4090302,4380_1323 -4380_78064,291,4380_88638,Eyre Square,106605-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88639,Eyre Square,107009-00014-1,1,4380_7778208_4090302,4380_1323 -4380_78145,297,4380_8864,Athboy,7784-00008-1,0,4380_7778208_1110107,4380_147 -4380_78064,287,4380_88640,Eyre Square,107007-00012-1,1,4380_7778208_4090302,4380_1323 -4380_78064,292,4380_88641,Eyre Square,107012-00016-1,1,4380_7778208_4090302,4380_1323 -4380_78064,290,4380_88642,Eyre Square,107006-00015-1,1,4380_7778208_4090302,4380_1323 -4380_78064,294,4380_88643,Eyre Square,107008-00018-1,1,4380_7778208_4090302,4380_1323 -4380_78064,295,4380_88644,Eyre Square,107010-00019-1,1,4380_7778208_4090302,4380_1323 -4380_78064,293,4380_88645,Eyre Square,107004-00017-1,1,4380_7778208_4090302,4380_1323 -4380_78064,296,4380_88646,Eyre Square,106606-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78145,288,4380_8865,Athboy,8818-00011-1,0,4380_7778208_1110120,4380_146 -4380_78064,285,4380_88652,Eyre Square,107378-00009-1,1,4380_7778208_4090303,4380_1322 -4380_78064,288,4380_88654,Eyre Square,107372-00011-1,1,4380_7778208_4090303,4380_1322 -4380_78064,286,4380_88655,Eyre Square,107380-00010-1,1,4380_7778208_4090303,4380_1322 -4380_78064,291,4380_88656,Eyre Square,107734-00013-1,1,4380_7778208_4090304,4380_1323 -4380_78064,289,4380_88657,Eyre Square,107376-00014-1,1,4380_7778208_4090303,4380_1322 -4380_78064,287,4380_88658,Eyre Square,107374-00012-1,1,4380_7778208_4090303,4380_1322 -4380_78064,292,4380_88659,Eyre Square,107381-00016-1,1,4380_7778208_4090303,4380_1322 -4380_78145,287,4380_8866,Athboy,8823-00012-1,0,4380_7778208_1110120,4380_146 -4380_78064,290,4380_88660,Eyre Square,107379-00015-1,1,4380_7778208_4090303,4380_1322 -4380_78064,294,4380_88661,Eyre Square,107375-00018-1,1,4380_7778208_4090303,4380_1322 -4380_78064,295,4380_88662,Eyre Square,107377-00019-1,1,4380_7778208_4090303,4380_1322 -4380_78064,293,4380_88663,Eyre Square,107373-00017-1,1,4380_7778208_4090303,4380_1322 -4380_78064,296,4380_88664,Eyre Square,107735-00021-1,1,4380_7778208_4090304,4380_1323 -4380_78064,297,4380_88666,Eyre Square,107382-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78145,289,4380_8867,Athboy,8803-00014-1,0,4380_7778208_1110120,4380_146 -4380_78064,285,4380_88672,Eyre Square,107739-00009-1,1,4380_7778208_4090304,4380_1322 -4380_78064,288,4380_88674,Eyre Square,107745-00011-1,1,4380_7778208_4090304,4380_1322 -4380_78064,286,4380_88675,Eyre Square,107737-00010-1,1,4380_7778208_4090304,4380_1322 -4380_78064,291,4380_88676,Eyre Square,107383-00013-1,1,4380_7778208_4090303,4380_1323 -4380_78064,289,4380_88677,Eyre Square,107743-00014-1,1,4380_7778208_4090304,4380_1322 -4380_78064,287,4380_88678,Eyre Square,107741-00012-1,1,4380_7778208_4090304,4380_1322 -4380_78064,292,4380_88679,Eyre Square,107738-00016-1,1,4380_7778208_4090304,4380_1322 -4380_78145,290,4380_8868,Athboy,57451-00015-1,0,4380_7778208_1110120,4380_146 -4380_78064,290,4380_88680,Eyre Square,107740-00015-1,1,4380_7778208_4090304,4380_1322 -4380_78064,294,4380_88681,Eyre Square,107742-00018-1,1,4380_7778208_4090304,4380_1322 -4380_78064,295,4380_88682,Eyre Square,107744-00019-1,1,4380_7778208_4090304,4380_1322 -4380_78064,293,4380_88683,Eyre Square,107746-00017-1,1,4380_7778208_4090304,4380_1322 -4380_78064,296,4380_88684,Eyre Square,107384-00021-1,1,4380_7778208_4090303,4380_1323 -4380_78145,291,4380_8869,Athboy,7718-00013-1,0,4380_7778208_1110106,4380_148 -4380_78064,297,4380_88691,Eyre Square,106620-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_88692,Eyre Square,108058-00009-1,1,4380_7778208_4090305,4380_1323 -4380_78064,288,4380_88694,Eyre Square,108054-00011-1,1,4380_7778208_4090305,4380_1323 -4380_78064,286,4380_88695,Eyre Square,108056-00010-1,1,4380_7778208_4090305,4380_1323 -4380_78064,291,4380_88696,Eyre Square,108060-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88697,Eyre Square,108052-00014-1,1,4380_7778208_4090305,4380_1323 -4380_78064,287,4380_88698,Eyre Square,108050-00012-1,1,4380_7778208_4090305,4380_1323 -4380_78064,292,4380_88699,Eyre Square,108057-00016-1,1,4380_7778208_4090305,4380_1323 -4380_78113,288,4380_887,Dundalk,49934-00011-1,0,4380_7778208_1000905,4380_12 -4380_78145,292,4380_8870,Athboy,57452-00016-1,0,4380_7778208_1110120,4380_146 -4380_78064,290,4380_88700,Eyre Square,108059-00015-1,1,4380_7778208_4090305,4380_1323 -4380_78064,294,4380_88701,Eyre Square,108051-00018-1,1,4380_7778208_4090305,4380_1323 -4380_78064,295,4380_88702,Eyre Square,108053-00019-1,1,4380_7778208_4090305,4380_1323 -4380_78064,293,4380_88703,Eyre Square,108055-00017-1,1,4380_7778208_4090305,4380_1323 -4380_78064,296,4380_88704,Eyre Square,108061-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78145,293,4380_8871,Athboy,57453-00017-1,0,4380_7778208_1110120,4380_146 -4380_78064,285,4380_88710,Eyre Square,108678-00009-1,1,4380_7778208_4090308,4380_1322 -4380_78064,288,4380_88712,Eyre Square,108680-00011-1,1,4380_7778208_4090308,4380_1322 -4380_78064,286,4380_88713,Eyre Square,108682-00010-1,1,4380_7778208_4090308,4380_1322 -4380_78064,291,4380_88714,Eyre Square,107026-00013-1,1,4380_7778208_4090302,4380_1323 -4380_78064,289,4380_88715,Eyre Square,108684-00014-1,1,4380_7778208_4090308,4380_1322 -4380_78064,287,4380_88716,Eyre Square,108676-00012-1,1,4380_7778208_4090308,4380_1322 -4380_78064,292,4380_88717,Eyre Square,108683-00016-1,1,4380_7778208_4090308,4380_1322 -4380_78064,290,4380_88718,Eyre Square,108679-00015-1,1,4380_7778208_4090308,4380_1322 -4380_78064,294,4380_88719,Eyre Square,108677-00018-1,1,4380_7778208_4090308,4380_1322 -4380_78145,294,4380_8872,Athboy,57454-00018-1,0,4380_7778208_1110120,4380_146 -4380_78064,295,4380_88720,Eyre Square,108685-00019-1,1,4380_7778208_4090308,4380_1322 -4380_78064,293,4380_88721,Eyre Square,108681-00017-1,1,4380_7778208_4090308,4380_1322 -4380_78064,296,4380_88722,Eyre Square,107027-00021-1,1,4380_7778208_4090302,4380_1323 -4380_78064,297,4380_88724,Eyre Square,107749-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78145,295,4380_8873,Athboy,57455-00019-1,0,4380_7778208_1110120,4380_146 -4380_78064,285,4380_88730,Eyre Square,106625-00009-1,1,4380_7778208_4090301,4380_1322 -4380_78064,288,4380_88732,Eyre Square,106623-00011-1,1,4380_7778208_4090301,4380_1322 -4380_78064,286,4380_88733,Eyre Square,106621-00010-1,1,4380_7778208_4090301,4380_1322 -4380_78064,291,4380_88734,Eyre Square,108314-00013-1,1,4380_7778208_4090306,4380_1323 -4380_78064,289,4380_88735,Eyre Square,106627-00014-1,1,4380_7778208_4090301,4380_1322 -4380_78064,287,4380_88736,Eyre Square,106629-00012-1,1,4380_7778208_4090301,4380_1322 -4380_78064,292,4380_88737,Eyre Square,106622-00016-1,1,4380_7778208_4090301,4380_1322 -4380_78064,290,4380_88738,Eyre Square,106626-00015-1,1,4380_7778208_4090301,4380_1322 -4380_78064,294,4380_88739,Eyre Square,106630-00018-1,1,4380_7778208_4090301,4380_1322 -4380_78145,296,4380_8874,Athboy,55682-00021-1,0,4380_7778208_1110106,4380_148 -4380_78064,295,4380_88740,Eyre Square,106628-00019-1,1,4380_7778208_4090301,4380_1322 -4380_78064,293,4380_88741,Eyre Square,106624-00017-1,1,4380_7778208_4090301,4380_1322 -4380_78064,296,4380_88742,Eyre Square,108315-00021-1,1,4380_7778208_4090306,4380_1323 -4380_78064,297,4380_88749,Eyre Square,107028-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_88750,Eyre Square,107029-00009-1,1,4380_7778208_4090302,4380_1323 -4380_78064,288,4380_88752,Eyre Square,107031-00011-1,1,4380_7778208_4090302,4380_1323 -4380_78064,286,4380_88753,Eyre Square,107035-00010-1,1,4380_7778208_4090302,4380_1323 -4380_78064,291,4380_88754,Eyre Square,106631-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88755,Eyre Square,107033-00014-1,1,4380_7778208_4090302,4380_1323 -4380_78064,287,4380_88756,Eyre Square,107037-00012-1,1,4380_7778208_4090302,4380_1323 -4380_78064,292,4380_88757,Eyre Square,107036-00016-1,1,4380_7778208_4090302,4380_1323 -4380_78064,290,4380_88758,Eyre Square,107030-00015-1,1,4380_7778208_4090302,4380_1323 -4380_78064,294,4380_88759,Eyre Square,107038-00018-1,1,4380_7778208_4090302,4380_1323 -4380_78064,295,4380_88760,Eyre Square,107034-00019-1,1,4380_7778208_4090302,4380_1323 -4380_78064,293,4380_88761,Eyre Square,107032-00017-1,1,4380_7778208_4090302,4380_1323 -4380_78064,296,4380_88762,Eyre Square,106632-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,297,4380_88769,Eyre Square,107408-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78064,285,4380_88770,Eyre Square,107398-00009-1,1,4380_7778208_4090303,4380_1323 -4380_78064,288,4380_88772,Eyre Square,107406-00011-1,1,4380_7778208_4090303,4380_1323 -4380_78064,286,4380_88773,Eyre Square,107400-00010-1,1,4380_7778208_4090303,4380_1323 -4380_78064,291,4380_88774,Eyre Square,107760-00013-1,1,4380_7778208_4090304,4380_1324 -4380_78064,289,4380_88775,Eyre Square,107402-00014-1,1,4380_7778208_4090303,4380_1323 -4380_78064,287,4380_88776,Eyre Square,107404-00012-1,1,4380_7778208_4090303,4380_1323 -4380_78064,292,4380_88777,Eyre Square,107401-00016-1,1,4380_7778208_4090303,4380_1323 -4380_78064,290,4380_88778,Eyre Square,107399-00015-1,1,4380_7778208_4090303,4380_1323 -4380_78064,294,4380_88779,Eyre Square,107405-00018-1,1,4380_7778208_4090303,4380_1323 -4380_78064,295,4380_88780,Eyre Square,107403-00019-1,1,4380_7778208_4090303,4380_1323 -4380_78064,293,4380_88781,Eyre Square,107407-00017-1,1,4380_7778208_4090303,4380_1323 -4380_78064,296,4380_88782,Eyre Square,107761-00021-1,1,4380_7778208_4090304,4380_1324 -4380_78064,297,4380_88789,Eyre Square,106636-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_88790,Eyre Square,108082-00009-1,1,4380_7778208_4090305,4380_1323 -4380_78064,288,4380_88792,Eyre Square,108084-00011-1,1,4380_7778208_4090305,4380_1323 -4380_78064,286,4380_88793,Eyre Square,108078-00010-1,1,4380_7778208_4090305,4380_1323 -4380_78064,291,4380_88794,Eyre Square,108074-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88795,Eyre Square,108080-00014-1,1,4380_7778208_4090305,4380_1323 -4380_78064,287,4380_88796,Eyre Square,108076-00012-1,1,4380_7778208_4090305,4380_1323 -4380_78064,292,4380_88797,Eyre Square,108079-00016-1,1,4380_7778208_4090305,4380_1323 -4380_78064,290,4380_88798,Eyre Square,108083-00015-1,1,4380_7778208_4090305,4380_1323 -4380_78064,294,4380_88799,Eyre Square,108077-00018-1,1,4380_7778208_4090305,4380_1323 -4380_78113,289,4380_888,Dundalk,49936-00014-1,0,4380_7778208_1000905,4380_12 -4380_78064,295,4380_88800,Eyre Square,108081-00019-1,1,4380_7778208_4090305,4380_1323 -4380_78064,293,4380_88801,Eyre Square,108085-00017-1,1,4380_7778208_4090305,4380_1323 -4380_78064,296,4380_88802,Eyre Square,108075-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,297,4380_88809,Eyre Square,107763-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_88810,Eyre Square,108698-00009-1,1,4380_7778208_4090308,4380_1323 -4380_78064,288,4380_88812,Eyre Square,108704-00011-1,1,4380_7778208_4090308,4380_1323 -4380_78064,286,4380_88813,Eyre Square,108700-00010-1,1,4380_7778208_4090308,4380_1323 -4380_78064,291,4380_88814,Eyre Square,108318-00013-1,1,4380_7778208_4090306,4380_1324 -4380_78064,289,4380_88815,Eyre Square,108696-00014-1,1,4380_7778208_4090308,4380_1323 -4380_78064,287,4380_88816,Eyre Square,108702-00012-1,1,4380_7778208_4090308,4380_1323 -4380_78064,292,4380_88817,Eyre Square,108701-00016-1,1,4380_7778208_4090308,4380_1323 -4380_78064,290,4380_88818,Eyre Square,108699-00015-1,1,4380_7778208_4090308,4380_1323 -4380_78064,294,4380_88819,Eyre Square,108703-00018-1,1,4380_7778208_4090308,4380_1323 -4380_78145,285,4380_8882,Athboy,8857-00009-1,0,4380_7778208_1110122,4380_146 -4380_78064,295,4380_88820,Eyre Square,108697-00019-1,1,4380_7778208_4090308,4380_1323 -4380_78064,293,4380_88821,Eyre Square,108705-00017-1,1,4380_7778208_4090308,4380_1323 -4380_78064,296,4380_88822,Eyre Square,108319-00021-1,1,4380_7778208_4090306,4380_1324 -4380_78064,297,4380_88829,Eyre Square,107050-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78145,286,4380_8883,Athboy,8861-00010-1,0,4380_7778208_1110122,4380_146 -4380_78064,285,4380_88830,Eyre Square,107768-00009-1,1,4380_7778208_4090304,4380_1323 -4380_78064,288,4380_88832,Eyre Square,107770-00011-1,1,4380_7778208_4090304,4380_1323 -4380_78064,286,4380_88833,Eyre Square,107772-00010-1,1,4380_7778208_4090304,4380_1323 -4380_78064,291,4380_88834,Eyre Square,106637-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88835,Eyre Square,107766-00014-1,1,4380_7778208_4090304,4380_1323 -4380_78064,287,4380_88836,Eyre Square,107774-00012-1,1,4380_7778208_4090304,4380_1323 -4380_78064,292,4380_88837,Eyre Square,107773-00016-1,1,4380_7778208_4090304,4380_1323 -4380_78064,290,4380_88838,Eyre Square,107769-00015-1,1,4380_7778208_4090304,4380_1323 -4380_78064,294,4380_88839,Eyre Square,107775-00018-1,1,4380_7778208_4090304,4380_1323 -4380_78145,297,4380_8884,Athboy,7870-00008-1,0,4380_7778208_1110109,4380_147 -4380_78064,295,4380_88840,Eyre Square,107767-00019-1,1,4380_7778208_4090304,4380_1323 -4380_78064,293,4380_88841,Eyre Square,107771-00017-1,1,4380_7778208_4090304,4380_1323 -4380_78064,296,4380_88842,Eyre Square,106638-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,297,4380_88849,Eyre Square,107420-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78145,288,4380_8885,Athboy,8865-00011-1,0,4380_7778208_1110122,4380_146 -4380_78064,285,4380_88850,Eyre Square,107053-00009-1,1,4380_7778208_4090302,4380_1323 -4380_78064,288,4380_88852,Eyre Square,107055-00011-1,1,4380_7778208_4090302,4380_1323 -4380_78064,286,4380_88853,Eyre Square,107051-00010-1,1,4380_7778208_4090302,4380_1323 -4380_78064,291,4380_88854,Eyre Square,107777-00013-1,1,4380_7778208_4090304,4380_1324 -4380_78064,289,4380_88855,Eyre Square,107059-00014-1,1,4380_7778208_4090302,4380_1323 -4380_78064,287,4380_88856,Eyre Square,107057-00012-1,1,4380_7778208_4090302,4380_1323 -4380_78064,292,4380_88857,Eyre Square,107052-00016-1,1,4380_7778208_4090302,4380_1323 -4380_78064,290,4380_88858,Eyre Square,107054-00015-1,1,4380_7778208_4090302,4380_1323 -4380_78064,294,4380_88859,Eyre Square,107058-00018-1,1,4380_7778208_4090302,4380_1323 -4380_78145,287,4380_8886,Athboy,8869-00012-1,0,4380_7778208_1110122,4380_146 -4380_78064,295,4380_88860,Eyre Square,107060-00019-1,1,4380_7778208_4090302,4380_1323 -4380_78064,293,4380_88861,Eyre Square,107056-00017-1,1,4380_7778208_4090302,4380_1323 -4380_78064,296,4380_88862,Eyre Square,107778-00021-1,1,4380_7778208_4090304,4380_1324 -4380_78064,297,4380_88869,Eyre Square,106650-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78145,289,4380_8887,Athboy,8853-00014-1,0,4380_7778208_1110122,4380_146 -4380_78064,285,4380_88870,Eyre Square,108494-00009-1,1,4380_7778208_4090307,4380_1323 -4380_78064,288,4380_88872,Eyre Square,108486-00011-1,1,4380_7778208_4090307,4380_1323 -4380_78064,286,4380_88873,Eyre Square,108488-00010-1,1,4380_7778208_4090307,4380_1323 -4380_78064,291,4380_88874,Eyre Square,108088-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88875,Eyre Square,108490-00014-1,1,4380_7778208_4090307,4380_1323 -4380_78064,287,4380_88876,Eyre Square,108492-00012-1,1,4380_7778208_4090307,4380_1323 -4380_78064,292,4380_88877,Eyre Square,108489-00016-1,1,4380_7778208_4090307,4380_1323 -4380_78064,290,4380_88878,Eyre Square,108495-00015-1,1,4380_7778208_4090307,4380_1323 -4380_78064,294,4380_88879,Eyre Square,108493-00018-1,1,4380_7778208_4090307,4380_1323 -4380_78145,290,4380_8888,Athboy,57503-00015-1,0,4380_7778208_1110122,4380_146 -4380_78064,295,4380_88880,Eyre Square,108491-00019-1,1,4380_7778208_4090307,4380_1323 -4380_78064,293,4380_88881,Eyre Square,108487-00017-1,1,4380_7778208_4090307,4380_1323 -4380_78064,296,4380_88882,Eyre Square,108089-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,297,4380_88889,Eyre Square,107789-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78145,291,4380_8889,Athboy,7820-00013-1,0,4380_7778208_1110108,4380_148 -4380_78064,285,4380_88890,Eyre Square,106659-00009-1,1,4380_7778208_4090301,4380_1323 -4380_78064,288,4380_88892,Eyre Square,106657-00011-1,1,4380_7778208_4090301,4380_1323 -4380_78064,286,4380_88893,Eyre Square,106653-00010-1,1,4380_7778208_4090301,4380_1323 -4380_78064,291,4380_88894,Eyre Square,108322-00013-1,1,4380_7778208_4090306,4380_1324 -4380_78064,289,4380_88895,Eyre Square,106655-00014-1,1,4380_7778208_4090301,4380_1323 -4380_78064,287,4380_88896,Eyre Square,106661-00012-1,1,4380_7778208_4090301,4380_1323 -4380_78064,292,4380_88897,Eyre Square,106654-00016-1,1,4380_7778208_4090301,4380_1323 -4380_78064,290,4380_88898,Eyre Square,106660-00015-1,1,4380_7778208_4090301,4380_1323 -4380_78064,294,4380_88899,Eyre Square,106662-00018-1,1,4380_7778208_4090301,4380_1323 -4380_78113,290,4380_889,Dundalk,49929-00015-1,0,4380_7778208_1000905,4380_12 -4380_78145,292,4380_8890,Athboy,57505-00016-1,0,4380_7778208_1110122,4380_146 -4380_78064,295,4380_88900,Eyre Square,106656-00019-1,1,4380_7778208_4090301,4380_1323 -4380_78064,293,4380_88901,Eyre Square,106658-00017-1,1,4380_7778208_4090301,4380_1323 -4380_78064,296,4380_88902,Eyre Square,108323-00021-1,1,4380_7778208_4090306,4380_1324 -4380_78064,297,4380_88909,Eyre Square,107072-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78145,293,4380_8891,Athboy,57501-00017-1,0,4380_7778208_1110122,4380_146 -4380_78064,285,4380_88910,Eyre Square,107424-00009-1,1,4380_7778208_4090303,4380_1323 -4380_78064,288,4380_88912,Eyre Square,107430-00011-1,1,4380_7778208_4090303,4380_1323 -4380_78064,286,4380_88913,Eyre Square,107426-00010-1,1,4380_7778208_4090303,4380_1323 -4380_78064,291,4380_88914,Eyre Square,106664-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88915,Eyre Square,107428-00014-1,1,4380_7778208_4090303,4380_1323 -4380_78064,287,4380_88916,Eyre Square,107422-00012-1,1,4380_7778208_4090303,4380_1323 -4380_78064,292,4380_88917,Eyre Square,107427-00016-1,1,4380_7778208_4090303,4380_1323 -4380_78064,290,4380_88918,Eyre Square,107425-00015-1,1,4380_7778208_4090303,4380_1323 -4380_78064,294,4380_88919,Eyre Square,107423-00018-1,1,4380_7778208_4090303,4380_1323 -4380_78145,294,4380_8892,Athboy,57504-00018-1,0,4380_7778208_1110122,4380_146 -4380_78064,295,4380_88920,Eyre Square,107429-00019-1,1,4380_7778208_4090303,4380_1323 -4380_78064,293,4380_88921,Eyre Square,107431-00017-1,1,4380_7778208_4090303,4380_1323 -4380_78064,296,4380_88922,Eyre Square,106665-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,297,4380_88929,Eyre Square,107432-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78145,295,4380_8893,Athboy,57502-00019-1,0,4380_7778208_1110122,4380_146 -4380_78064,285,4380_88930,Eyre Square,107796-00009-1,1,4380_7778208_4090304,4380_1323 -4380_78064,288,4380_88932,Eyre Square,107794-00011-1,1,4380_7778208_4090304,4380_1323 -4380_78064,286,4380_88933,Eyre Square,107798-00010-1,1,4380_7778208_4090304,4380_1323 -4380_78064,291,4380_88934,Eyre Square,107792-00013-1,1,4380_7778208_4090304,4380_1324 -4380_78064,289,4380_88935,Eyre Square,107801-00014-1,1,4380_7778208_4090304,4380_1323 -4380_78064,287,4380_88936,Eyre Square,107803-00012-1,1,4380_7778208_4090304,4380_1323 -4380_78064,292,4380_88937,Eyre Square,107799-00016-1,1,4380_7778208_4090304,4380_1323 -4380_78064,290,4380_88938,Eyre Square,107797-00015-1,1,4380_7778208_4090304,4380_1323 -4380_78064,294,4380_88939,Eyre Square,107804-00018-1,1,4380_7778208_4090304,4380_1323 -4380_78145,296,4380_8894,Athboy,55738-00021-1,0,4380_7778208_1110108,4380_148 -4380_78064,295,4380_88940,Eyre Square,107802-00019-1,1,4380_7778208_4090304,4380_1323 -4380_78064,293,4380_88941,Eyre Square,107795-00017-1,1,4380_7778208_4090304,4380_1323 -4380_78064,296,4380_88942,Eyre Square,107793-00021-1,1,4380_7778208_4090304,4380_1324 -4380_78064,297,4380_88949,Eyre Square,106676-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78064,285,4380_88950,Eyre Square,107077-00009-1,1,4380_7778208_4090302,4380_1323 -4380_78064,288,4380_88952,Eyre Square,107081-00011-1,1,4380_7778208_4090302,4380_1323 -4380_78064,286,4380_88953,Eyre Square,107073-00010-1,1,4380_7778208_4090302,4380_1323 -4380_78064,291,4380_88954,Eyre Square,108092-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_88955,Eyre Square,107079-00014-1,1,4380_7778208_4090302,4380_1323 -4380_78064,287,4380_88956,Eyre Square,107075-00012-1,1,4380_7778208_4090302,4380_1323 -4380_78064,292,4380_88957,Eyre Square,107074-00016-1,1,4380_7778208_4090302,4380_1323 -4380_78064,290,4380_88958,Eyre Square,107078-00015-1,1,4380_7778208_4090302,4380_1323 -4380_78064,294,4380_88959,Eyre Square,107076-00018-1,1,4380_7778208_4090302,4380_1323 -4380_78064,295,4380_88960,Eyre Square,107080-00019-1,1,4380_7778208_4090302,4380_1323 -4380_78064,293,4380_88961,Eyre Square,107082-00017-1,1,4380_7778208_4090302,4380_1323 -4380_78064,296,4380_88962,Eyre Square,108093-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,297,4380_88969,Eyre Square,107817-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78064,285,4380_88970,Eyre Square,106679-00009-1,1,4380_7778208_4090301,4380_1323 -4380_78064,288,4380_88972,Eyre Square,106681-00011-1,1,4380_7778208_4090301,4380_1323 -4380_78064,286,4380_88973,Eyre Square,106687-00010-1,1,4380_7778208_4090301,4380_1323 -4380_78064,291,4380_88974,Eyre Square,108326-00013-1,1,4380_7778208_4090306,4380_1324 -4380_78064,289,4380_88975,Eyre Square,106683-00014-1,1,4380_7778208_4090301,4380_1323 -4380_78064,287,4380_88976,Eyre Square,106685-00012-1,1,4380_7778208_4090301,4380_1323 -4380_78064,292,4380_88977,Eyre Square,106688-00016-1,1,4380_7778208_4090301,4380_1323 -4380_78064,290,4380_88978,Eyre Square,106680-00015-1,1,4380_7778208_4090301,4380_1323 -4380_78064,294,4380_88979,Eyre Square,106686-00018-1,1,4380_7778208_4090301,4380_1323 -4380_78064,295,4380_88980,Eyre Square,106684-00019-1,1,4380_7778208_4090301,4380_1323 -4380_78064,293,4380_88981,Eyre Square,106682-00017-1,1,4380_7778208_4090301,4380_1323 -4380_78064,296,4380_88982,Eyre Square,108327-00021-1,1,4380_7778208_4090306,4380_1324 -4380_78064,297,4380_88989,Eyre Square,107084-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_88990,Eyre Square,107444-00009-1,1,4380_7778208_4090303,4380_1323 -4380_78064,288,4380_88992,Eyre Square,107450-00011-1,1,4380_7778208_4090303,4380_1323 -4380_78064,286,4380_88993,Eyre Square,107446-00010-1,1,4380_7778208_4090303,4380_1323 -4380_78064,291,4380_88994,Eyre Square,106689-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_88995,Eyre Square,107452-00014-1,1,4380_7778208_4090303,4380_1323 -4380_78064,287,4380_88996,Eyre Square,107448-00012-1,1,4380_7778208_4090303,4380_1323 -4380_78064,292,4380_88997,Eyre Square,107447-00016-1,1,4380_7778208_4090303,4380_1323 -4380_78064,290,4380_88998,Eyre Square,107445-00015-1,1,4380_7778208_4090303,4380_1323 -4380_78064,294,4380_88999,Eyre Square,107449-00018-1,1,4380_7778208_4090303,4380_1323 -4380_78113,291,4380_890,Dundalk,49926-00013-1,0,4380_7778208_1000905,4380_15 -4380_78064,295,4380_89000,Eyre Square,107453-00019-1,1,4380_7778208_4090303,4380_1323 -4380_78064,293,4380_89001,Eyre Square,107451-00017-1,1,4380_7778208_4090303,4380_1323 -4380_78064,296,4380_89002,Eyre Square,106690-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,297,4380_89009,Eyre Square,107454-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78145,285,4380_8901,Athboy,8834-00009-1,0,4380_7778208_1110121,4380_146 -4380_78064,285,4380_89010,Eyre Square,108514-00009-1,1,4380_7778208_4090307,4380_1323 -4380_78064,288,4380_89012,Eyre Square,108510-00011-1,1,4380_7778208_4090307,4380_1323 -4380_78064,286,4380_89013,Eyre Square,108506-00010-1,1,4380_7778208_4090307,4380_1323 -4380_78064,291,4380_89014,Eyre Square,107818-00013-1,1,4380_7778208_4090304,4380_1324 -4380_78064,289,4380_89015,Eyre Square,108512-00014-1,1,4380_7778208_4090307,4380_1323 -4380_78064,287,4380_89016,Eyre Square,108508-00012-1,1,4380_7778208_4090307,4380_1323 -4380_78064,292,4380_89017,Eyre Square,108507-00016-1,1,4380_7778208_4090307,4380_1323 -4380_78064,290,4380_89018,Eyre Square,108515-00015-1,1,4380_7778208_4090307,4380_1323 -4380_78064,294,4380_89019,Eyre Square,108509-00018-1,1,4380_7778208_4090307,4380_1323 -4380_78145,286,4380_8902,Athboy,8839-00010-1,0,4380_7778208_1110121,4380_146 -4380_78064,295,4380_89020,Eyre Square,108513-00019-1,1,4380_7778208_4090307,4380_1323 -4380_78064,293,4380_89021,Eyre Square,108511-00017-1,1,4380_7778208_4090307,4380_1323 -4380_78064,296,4380_89022,Eyre Square,107819-00021-1,1,4380_7778208_4090304,4380_1324 -4380_78064,297,4380_89029,Eyre Square,106702-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78145,297,4380_8903,Athboy,7831-00008-1,0,4380_7778208_1110108,4380_147 -4380_78064,285,4380_89030,Eyre Square,107103-00009-1,1,4380_7778208_4090302,4380_1323 -4380_78064,288,4380_89032,Eyre Square,107097-00011-1,1,4380_7778208_4090302,4380_1323 -4380_78064,286,4380_89033,Eyre Square,107095-00010-1,1,4380_7778208_4090302,4380_1323 -4380_78064,291,4380_89034,Eyre Square,108096-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_89035,Eyre Square,107099-00014-1,1,4380_7778208_4090302,4380_1323 -4380_78064,287,4380_89036,Eyre Square,107101-00012-1,1,4380_7778208_4090302,4380_1323 -4380_78064,292,4380_89037,Eyre Square,107096-00016-1,1,4380_7778208_4090302,4380_1323 -4380_78064,290,4380_89038,Eyre Square,107104-00015-1,1,4380_7778208_4090302,4380_1323 -4380_78064,294,4380_89039,Eyre Square,107102-00018-1,1,4380_7778208_4090302,4380_1323 -4380_78145,288,4380_8904,Athboy,8844-00011-1,0,4380_7778208_1110121,4380_146 -4380_78064,295,4380_89040,Eyre Square,107100-00019-1,1,4380_7778208_4090302,4380_1323 -4380_78064,293,4380_89041,Eyre Square,107098-00017-1,1,4380_7778208_4090302,4380_1323 -4380_78064,296,4380_89042,Eyre Square,108097-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,297,4380_89049,Eyre Square,107823-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78145,287,4380_8905,Athboy,8849-00012-1,0,4380_7778208_1110121,4380_146 -4380_78064,285,4380_89050,Eyre Square,106709-00009-1,1,4380_7778208_4090301,4380_1323 -4380_78064,288,4380_89052,Eyre Square,106711-00011-1,1,4380_7778208_4090301,4380_1323 -4380_78064,286,4380_89053,Eyre Square,106705-00010-1,1,4380_7778208_4090301,4380_1323 -4380_78064,291,4380_89054,Eyre Square,108330-00013-1,1,4380_7778208_4090306,4380_1324 -4380_78064,289,4380_89055,Eyre Square,106707-00014-1,1,4380_7778208_4090301,4380_1323 -4380_78064,287,4380_89056,Eyre Square,106713-00012-1,1,4380_7778208_4090301,4380_1323 -4380_78064,292,4380_89057,Eyre Square,106706-00016-1,1,4380_7778208_4090301,4380_1323 -4380_78064,290,4380_89058,Eyre Square,106710-00015-1,1,4380_7778208_4090301,4380_1323 -4380_78064,294,4380_89059,Eyre Square,106714-00018-1,1,4380_7778208_4090301,4380_1323 -4380_78145,289,4380_8906,Athboy,8829-00014-1,0,4380_7778208_1110121,4380_146 -4380_78064,295,4380_89060,Eyre Square,106708-00019-1,1,4380_7778208_4090301,4380_1323 -4380_78064,293,4380_89061,Eyre Square,106712-00017-1,1,4380_7778208_4090301,4380_1323 -4380_78064,296,4380_89062,Eyre Square,108331-00021-1,1,4380_7778208_4090306,4380_1324 -4380_78064,297,4380_89069,Eyre Square,107116-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78145,290,4380_8907,Athboy,57484-00015-1,0,4380_7778208_1110121,4380_146 -4380_78064,285,4380_89070,Eyre Square,107472-00009-1,1,4380_7778208_4090303,4380_1323 -4380_78064,288,4380_89072,Eyre Square,107466-00011-1,1,4380_7778208_4090303,4380_1323 -4380_78064,286,4380_89073,Eyre Square,107474-00010-1,1,4380_7778208_4090303,4380_1323 -4380_78064,291,4380_89074,Eyre Square,106716-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_89075,Eyre Square,107468-00014-1,1,4380_7778208_4090303,4380_1323 -4380_78064,287,4380_89076,Eyre Square,107470-00012-1,1,4380_7778208_4090303,4380_1323 -4380_78064,292,4380_89077,Eyre Square,107475-00016-1,1,4380_7778208_4090303,4380_1323 -4380_78064,290,4380_89078,Eyre Square,107473-00015-1,1,4380_7778208_4090303,4380_1323 -4380_78064,294,4380_89079,Eyre Square,107471-00018-1,1,4380_7778208_4090303,4380_1323 -4380_78145,291,4380_8908,Athboy,7773-00013-1,0,4380_7778208_1110107,4380_148 -4380_78064,295,4380_89080,Eyre Square,107469-00019-1,1,4380_7778208_4090303,4380_1323 -4380_78064,293,4380_89081,Eyre Square,107467-00017-1,1,4380_7778208_4090303,4380_1323 -4380_78064,296,4380_89082,Eyre Square,106717-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78064,297,4380_89089,Eyre Square,107476-00008-1,1,4380_7778208_4090303,4380_1322 -4380_78145,292,4380_8909,Athboy,57482-00016-1,0,4380_7778208_1110121,4380_146 -4380_78064,285,4380_89090,Eyre Square,108530-00009-1,1,4380_7778208_4090307,4380_1323 -4380_78064,288,4380_89092,Eyre Square,108526-00011-1,1,4380_7778208_4090307,4380_1323 -4380_78064,286,4380_89093,Eyre Square,108528-00010-1,1,4380_7778208_4090307,4380_1323 -4380_78064,291,4380_89094,Eyre Square,107824-00013-1,1,4380_7778208_4090304,4380_1324 -4380_78064,289,4380_89095,Eyre Square,108532-00014-1,1,4380_7778208_4090307,4380_1323 -4380_78064,287,4380_89096,Eyre Square,108534-00012-1,1,4380_7778208_4090307,4380_1323 -4380_78064,292,4380_89097,Eyre Square,108529-00016-1,1,4380_7778208_4090307,4380_1323 -4380_78064,290,4380_89098,Eyre Square,108531-00015-1,1,4380_7778208_4090307,4380_1323 -4380_78064,294,4380_89099,Eyre Square,108535-00018-1,1,4380_7778208_4090307,4380_1323 -4380_78113,292,4380_891,Dundalk,49931-00016-1,0,4380_7778208_1000905,4380_12 -4380_78145,293,4380_8910,Athboy,57485-00017-1,0,4380_7778208_1110121,4380_146 -4380_78064,295,4380_89100,Eyre Square,108533-00019-1,1,4380_7778208_4090307,4380_1323 -4380_78064,293,4380_89101,Eyre Square,108527-00017-1,1,4380_7778208_4090307,4380_1323 -4380_78064,296,4380_89102,Eyre Square,107825-00021-1,1,4380_7778208_4090304,4380_1324 -4380_78064,297,4380_89109,Eyre Square,106728-00008-1,1,4380_7778208_4090301,4380_1322 -4380_78145,294,4380_8911,Athboy,57483-00018-1,0,4380_7778208_1110121,4380_146 -4380_78064,285,4380_89110,Eyre Square,107126-00009-1,1,4380_7778208_4090302,4380_1323 -4380_78064,288,4380_89112,Eyre Square,107117-00011-1,1,4380_7778208_4090302,4380_1323 -4380_78064,286,4380_89113,Eyre Square,107124-00010-1,1,4380_7778208_4090302,4380_1323 -4380_78064,291,4380_89114,Eyre Square,108100-00013-1,1,4380_7778208_4090305,4380_1324 -4380_78064,289,4380_89115,Eyre Square,107121-00014-1,1,4380_7778208_4090302,4380_1323 -4380_78064,287,4380_89116,Eyre Square,107119-00012-1,1,4380_7778208_4090302,4380_1323 -4380_78064,292,4380_89117,Eyre Square,107125-00016-1,1,4380_7778208_4090302,4380_1323 -4380_78064,290,4380_89118,Eyre Square,107127-00015-1,1,4380_7778208_4090302,4380_1323 -4380_78064,294,4380_89119,Eyre Square,107120-00018-1,1,4380_7778208_4090302,4380_1323 -4380_78145,295,4380_8912,Athboy,57481-00019-1,0,4380_7778208_1110121,4380_146 -4380_78064,295,4380_89120,Eyre Square,107122-00019-1,1,4380_7778208_4090302,4380_1323 -4380_78064,293,4380_89121,Eyre Square,107118-00017-1,1,4380_7778208_4090302,4380_1323 -4380_78064,296,4380_89122,Eyre Square,108101-00021-1,1,4380_7778208_4090305,4380_1324 -4380_78064,297,4380_89129,Eyre Square,107827-00008-1,1,4380_7778208_4090304,4380_1322 -4380_78145,296,4380_8913,Athboy,55719-00021-1,0,4380_7778208_1110107,4380_148 -4380_78064,285,4380_89130,Eyre Square,106739-00009-1,1,4380_7778208_4090301,4380_1323 -4380_78064,288,4380_89132,Eyre Square,106735-00011-1,1,4380_7778208_4090301,4380_1323 -4380_78064,286,4380_89133,Eyre Square,106737-00010-1,1,4380_7778208_4090301,4380_1323 -4380_78064,291,4380_89134,Eyre Square,108334-00013-1,1,4380_7778208_4090306,4380_1324 -4380_78064,289,4380_89135,Eyre Square,106733-00014-1,1,4380_7778208_4090301,4380_1323 -4380_78064,287,4380_89136,Eyre Square,106731-00012-1,1,4380_7778208_4090301,4380_1323 -4380_78064,292,4380_89137,Eyre Square,106738-00016-1,1,4380_7778208_4090301,4380_1323 -4380_78064,290,4380_89138,Eyre Square,106740-00015-1,1,4380_7778208_4090301,4380_1323 -4380_78064,294,4380_89139,Eyre Square,106732-00018-1,1,4380_7778208_4090301,4380_1323 -4380_78064,295,4380_89140,Eyre Square,106734-00019-1,1,4380_7778208_4090301,4380_1323 -4380_78064,293,4380_89141,Eyre Square,106736-00017-1,1,4380_7778208_4090301,4380_1323 -4380_78064,296,4380_89142,Eyre Square,108335-00021-1,1,4380_7778208_4090306,4380_1324 -4380_78064,297,4380_89149,Eyre Square,107128-00008-1,1,4380_7778208_4090302,4380_1322 -4380_78064,285,4380_89150,Eyre Square,107489-00009-1,1,4380_7778208_4090303,4380_1323 -4380_78064,288,4380_89152,Eyre Square,107495-00011-1,1,4380_7778208_4090303,4380_1323 -4380_78064,286,4380_89153,Eyre Square,107491-00010-1,1,4380_7778208_4090303,4380_1323 -4380_78064,291,4380_89154,Eyre Square,106741-00013-1,1,4380_7778208_4090301,4380_1324 -4380_78064,289,4380_89155,Eyre Square,107493-00014-1,1,4380_7778208_4090303,4380_1323 -4380_78064,287,4380_89156,Eyre Square,107487-00012-1,1,4380_7778208_4090303,4380_1323 -4380_78064,292,4380_89157,Eyre Square,107492-00016-1,1,4380_7778208_4090303,4380_1323 -4380_78064,290,4380_89158,Eyre Square,107490-00015-1,1,4380_7778208_4090303,4380_1323 -4380_78064,294,4380_89159,Eyre Square,107488-00018-1,1,4380_7778208_4090303,4380_1323 -4380_78064,295,4380_89160,Eyre Square,107494-00019-1,1,4380_7778208_4090303,4380_1323 -4380_78064,293,4380_89161,Eyre Square,107496-00017-1,1,4380_7778208_4090303,4380_1323 -4380_78064,296,4380_89162,Eyre Square,106742-00021-1,1,4380_7778208_4090301,4380_1324 -4380_78065,285,4380_89168,Claregalway,108762-00009-1,0,4380_7778208_4170301,4380_1325 -4380_78065,288,4380_89169,Claregalway,108756-00011-1,0,4380_7778208_4170301,4380_1325 -4380_78065,286,4380_89170,Claregalway,108760-00010-1,0,4380_7778208_4170301,4380_1325 -4380_78065,289,4380_89171,Claregalway,108764-00014-1,0,4380_7778208_4170301,4380_1325 -4380_78065,287,4380_89172,Claregalway,108758-00012-1,0,4380_7778208_4170301,4380_1325 -4380_78065,292,4380_89173,Claregalway,108761-00016-1,0,4380_7778208_4170301,4380_1325 -4380_78065,290,4380_89174,Claregalway,108763-00015-1,0,4380_7778208_4170301,4380_1325 -4380_78065,294,4380_89175,Claregalway,108759-00018-1,0,4380_7778208_4170301,4380_1325 -4380_78065,295,4380_89176,Claregalway,108765-00019-1,0,4380_7778208_4170301,4380_1325 -4380_78065,293,4380_89177,Claregalway,108757-00017-1,0,4380_7778208_4170301,4380_1325 -4380_78065,285,4380_89183,Galway,108734-00009-1,1,4380_7778208_4170301,4380_1326 -4380_78065,288,4380_89184,Galway,108730-00011-1,1,4380_7778208_4170301,4380_1326 -4380_78065,286,4380_89185,Galway,108732-00010-1,1,4380_7778208_4170301,4380_1326 -4380_78065,289,4380_89186,Galway,108728-00014-1,1,4380_7778208_4170301,4380_1326 -4380_78065,287,4380_89187,Galway,108726-00012-1,1,4380_7778208_4170301,4380_1326 -4380_78065,292,4380_89188,Galway,108733-00016-1,1,4380_7778208_4170301,4380_1326 -4380_78065,290,4380_89189,Galway,108735-00015-1,1,4380_7778208_4170301,4380_1326 -4380_78065,294,4380_89190,Galway,108727-00018-1,1,4380_7778208_4170301,4380_1326 -4380_78065,295,4380_89191,Galway,108729-00019-1,1,4380_7778208_4170301,4380_1326 -4380_78065,293,4380_89192,Galway,108731-00017-1,1,4380_7778208_4170301,4380_1326 -4380_78066,297,4380_89199,Oughterard,108770-00008-1,0,4380_7778208_4190301,4380_1327 -4380_78113,293,4380_892,Dundalk,49935-00017-1,0,4380_7778208_1000905,4380_12 -4380_78066,285,4380_89200,Oughterard,108766-00009-1,0,4380_7778208_4190301,4380_1327 -4380_78066,288,4380_89202,Oughterard,108775-00011-1,0,4380_7778208_4190301,4380_1327 -4380_78066,286,4380_89203,Oughterard,108777-00010-1,0,4380_7778208_4190301,4380_1327 -4380_78066,291,4380_89204,Oughterard,108773-00013-1,0,4380_7778208_4190301,4380_1327 -4380_78066,289,4380_89205,Oughterard,108768-00014-1,0,4380_7778208_4190301,4380_1327 -4380_78066,287,4380_89206,Oughterard,108771-00012-1,0,4380_7778208_4190301,4380_1327 -4380_78066,292,4380_89207,Oughterard,108778-00016-1,0,4380_7778208_4190301,4380_1327 -4380_78066,290,4380_89208,Oughterard,108767-00015-1,0,4380_7778208_4190301,4380_1327 -4380_78066,294,4380_89209,Oughterard,108772-00018-1,0,4380_7778208_4190301,4380_1327 -4380_78145,285,4380_8921,Athboy,8810-00009-1,0,4380_7778208_1110120,4380_146 -4380_78066,295,4380_89210,Oughterard,108769-00019-1,0,4380_7778208_4190301,4380_1327 -4380_78066,293,4380_89211,Oughterard,108776-00017-1,0,4380_7778208_4190301,4380_1327 -4380_78066,296,4380_89212,Oughterard,108774-00021-1,0,4380_7778208_4190301,4380_1327 -4380_78066,297,4380_89219,Clifden,108804-00008-1,0,4380_7778208_4190301,4380_1328 -4380_78145,286,4380_8922,Athboy,8815-00010-1,0,4380_7778208_1110120,4380_146 -4380_78066,285,4380_89220,Clifden,108802-00009-1,0,4380_7778208_4190301,4380_1328 -4380_78066,288,4380_89222,Clifden,108792-00011-1,0,4380_7778208_4190301,4380_1328 -4380_78066,286,4380_89223,Clifden,108794-00010-1,0,4380_7778208_4190301,4380_1328 -4380_78066,291,4380_89224,Clifden,108798-00013-1,0,4380_7778208_4190301,4380_1328 -4380_78066,289,4380_89225,Clifden,108796-00014-1,0,4380_7778208_4190301,4380_1328 -4380_78066,287,4380_89226,Clifden,108800-00012-1,0,4380_7778208_4190301,4380_1328 -4380_78066,292,4380_89227,Clifden,108795-00016-1,0,4380_7778208_4190301,4380_1328 -4380_78066,290,4380_89228,Clifden,108803-00015-1,0,4380_7778208_4190301,4380_1328 -4380_78066,294,4380_89229,Clifden,108801-00018-1,0,4380_7778208_4190301,4380_1328 -4380_78145,297,4380_8923,Athboy,7786-00008-1,0,4380_7778208_1110107,4380_147 -4380_78066,295,4380_89230,Clifden,108797-00019-1,0,4380_7778208_4190301,4380_1328 -4380_78066,293,4380_89231,Clifden,108793-00017-1,0,4380_7778208_4190301,4380_1328 -4380_78066,296,4380_89232,Clifden,108799-00021-1,0,4380_7778208_4190301,4380_1328 -4380_78066,297,4380_89239,Oughterard,108904-00008-1,0,4380_7778208_4190303,4380_1327 -4380_78145,288,4380_8924,Athboy,8820-00011-1,0,4380_7778208_1110120,4380_146 -4380_78066,285,4380_89240,Oughterard,108856-00009-1,0,4380_7778208_4190302,4380_1327 -4380_78066,288,4380_89242,Oughterard,108854-00011-1,0,4380_7778208_4190302,4380_1327 -4380_78066,286,4380_89243,Oughterard,108860-00010-1,0,4380_7778208_4190302,4380_1327 -4380_78066,291,4380_89244,Oughterard,108902-00013-1,0,4380_7778208_4190303,4380_1327 -4380_78066,289,4380_89245,Oughterard,108862-00014-1,0,4380_7778208_4190302,4380_1327 -4380_78066,287,4380_89246,Oughterard,108858-00012-1,0,4380_7778208_4190302,4380_1327 -4380_78066,292,4380_89247,Oughterard,108861-00016-1,0,4380_7778208_4190302,4380_1327 -4380_78066,290,4380_89248,Oughterard,108857-00015-1,0,4380_7778208_4190302,4380_1327 -4380_78066,294,4380_89249,Oughterard,108859-00018-1,0,4380_7778208_4190302,4380_1327 -4380_78145,287,4380_8925,Athboy,8825-00012-1,0,4380_7778208_1110120,4380_146 -4380_78066,295,4380_89250,Oughterard,108863-00019-1,0,4380_7778208_4190302,4380_1327 -4380_78066,293,4380_89251,Oughterard,108855-00017-1,0,4380_7778208_4190302,4380_1327 -4380_78066,296,4380_89252,Oughterard,108903-00021-1,0,4380_7778208_4190303,4380_1327 -4380_78066,297,4380_89259,Oughterard,108905-00008-1,0,4380_7778208_4190303,4380_1327 -4380_78145,289,4380_8926,Athboy,8805-00014-1,0,4380_7778208_1110120,4380_146 -4380_78066,285,4380_89260,Oughterard,108866-00009-1,0,4380_7778208_4190302,4380_1327 -4380_78066,288,4380_89262,Oughterard,108868-00011-1,0,4380_7778208_4190302,4380_1327 -4380_78066,286,4380_89263,Oughterard,108864-00010-1,0,4380_7778208_4190302,4380_1327 -4380_78066,291,4380_89264,Oughterard,108906-00013-1,0,4380_7778208_4190303,4380_1327 -4380_78066,289,4380_89265,Oughterard,108870-00014-1,0,4380_7778208_4190302,4380_1327 -4380_78066,287,4380_89266,Oughterard,108872-00012-1,0,4380_7778208_4190302,4380_1327 -4380_78066,292,4380_89267,Oughterard,108865-00016-1,0,4380_7778208_4190302,4380_1327 -4380_78066,290,4380_89268,Oughterard,108867-00015-1,0,4380_7778208_4190302,4380_1327 -4380_78066,294,4380_89269,Oughterard,108873-00018-1,0,4380_7778208_4190302,4380_1327 -4380_78145,290,4380_8927,Athboy,57462-00015-1,0,4380_7778208_1110120,4380_146 -4380_78066,295,4380_89270,Oughterard,108871-00019-1,0,4380_7778208_4190302,4380_1327 -4380_78066,293,4380_89271,Oughterard,108869-00017-1,0,4380_7778208_4190302,4380_1327 -4380_78066,296,4380_89272,Oughterard,108907-00021-1,0,4380_7778208_4190303,4380_1327 -4380_78066,297,4380_89279,Oughterard,108830-00008-1,0,4380_7778208_4190301,4380_1327 -4380_78145,291,4380_8928,Athboy,7720-00013-1,0,4380_7778208_1110106,4380_148 -4380_78066,285,4380_89280,Oughterard,108826-00009-1,0,4380_7778208_4190301,4380_1327 -4380_78066,288,4380_89282,Oughterard,108824-00011-1,0,4380_7778208_4190301,4380_1327 -4380_78066,286,4380_89283,Oughterard,108828-00010-1,0,4380_7778208_4190301,4380_1327 -4380_78066,291,4380_89284,Oughterard,108818-00013-1,0,4380_7778208_4190301,4380_1327 -4380_78066,289,4380_89285,Oughterard,108822-00014-1,0,4380_7778208_4190301,4380_1327 -4380_78066,287,4380_89286,Oughterard,108820-00012-1,0,4380_7778208_4190301,4380_1327 -4380_78066,292,4380_89287,Oughterard,108829-00016-1,0,4380_7778208_4190301,4380_1327 -4380_78066,290,4380_89288,Oughterard,108827-00015-1,0,4380_7778208_4190301,4380_1327 -4380_78066,294,4380_89289,Oughterard,108821-00018-1,0,4380_7778208_4190301,4380_1327 -4380_78145,292,4380_8929,Athboy,57464-00016-1,0,4380_7778208_1110120,4380_146 -4380_78066,295,4380_89290,Oughterard,108823-00019-1,0,4380_7778208_4190301,4380_1327 -4380_78066,293,4380_89291,Oughterard,108825-00017-1,0,4380_7778208_4190301,4380_1327 -4380_78066,296,4380_89292,Oughterard,108819-00021-1,0,4380_7778208_4190301,4380_1327 -4380_78066,297,4380_89299,Clifden,108920-00008-1,0,4380_7778208_4190303,4380_1328 -4380_78113,294,4380_893,Dundalk,49933-00018-1,0,4380_7778208_1000905,4380_12 -4380_78145,293,4380_8930,Athboy,57463-00017-1,0,4380_7778208_1110120,4380_146 -4380_78066,285,4380_89300,Clifden,108879-00009-1,0,4380_7778208_4190302,4380_1328 -4380_78066,288,4380_89302,Clifden,108885-00011-1,0,4380_7778208_4190302,4380_1328 -4380_78066,286,4380_89303,Clifden,108877-00010-1,0,4380_7778208_4190302,4380_1328 -4380_78066,291,4380_89304,Clifden,108918-00013-1,0,4380_7778208_4190303,4380_1328 -4380_78066,289,4380_89305,Clifden,108883-00014-1,0,4380_7778208_4190302,4380_1328 -4380_78066,287,4380_89306,Clifden,108881-00012-1,0,4380_7778208_4190302,4380_1328 -4380_78066,292,4380_89307,Clifden,108878-00016-1,0,4380_7778208_4190302,4380_1328 -4380_78066,290,4380_89308,Clifden,108880-00015-1,0,4380_7778208_4190302,4380_1328 -4380_78066,294,4380_89309,Clifden,108882-00018-1,0,4380_7778208_4190302,4380_1328 -4380_78145,294,4380_8931,Athboy,57465-00018-1,0,4380_7778208_1110120,4380_146 -4380_78066,295,4380_89310,Clifden,108884-00019-1,0,4380_7778208_4190302,4380_1328 -4380_78066,293,4380_89311,Clifden,108886-00017-1,0,4380_7778208_4190302,4380_1328 -4380_78066,296,4380_89312,Clifden,108919-00021-1,0,4380_7778208_4190303,4380_1328 -4380_78066,297,4380_89319,Oughterard,108887-00008-1,0,4380_7778208_4190302,4380_1327 -4380_78145,295,4380_8932,Athboy,57461-00019-1,0,4380_7778208_1110120,4380_146 -4380_78066,285,4380_89320,Oughterard,108925-00009-1,0,4380_7778208_4190303,4380_1327 -4380_78066,288,4380_89322,Oughterard,108927-00011-1,0,4380_7778208_4190303,4380_1327 -4380_78066,286,4380_89323,Oughterard,108921-00010-1,0,4380_7778208_4190303,4380_1327 -4380_78066,291,4380_89324,Oughterard,108888-00013-1,0,4380_7778208_4190302,4380_1327 -4380_78066,289,4380_89325,Oughterard,108923-00014-1,0,4380_7778208_4190303,4380_1327 -4380_78066,287,4380_89326,Oughterard,108929-00012-1,0,4380_7778208_4190303,4380_1327 -4380_78066,292,4380_89327,Oughterard,108922-00016-1,0,4380_7778208_4190303,4380_1327 -4380_78066,290,4380_89328,Oughterard,108926-00015-1,0,4380_7778208_4190303,4380_1327 -4380_78066,294,4380_89329,Oughterard,108930-00018-1,0,4380_7778208_4190303,4380_1327 -4380_78145,296,4380_8933,Athboy,55697-00021-1,0,4380_7778208_1110106,4380_148 -4380_78066,295,4380_89330,Oughterard,108924-00019-1,0,4380_7778208_4190303,4380_1327 -4380_78066,293,4380_89331,Oughterard,108928-00017-1,0,4380_7778208_4190303,4380_1327 -4380_78066,296,4380_89332,Oughterard,108889-00021-1,0,4380_7778208_4190302,4380_1327 -4380_78066,297,4380_89339,Oughterard,108895-00008-1,0,4380_7778208_4190302,4380_1327 -4380_78066,285,4380_89340,Oughterard,108945-00009-1,0,4380_7778208_4190303,4380_1327 -4380_78066,288,4380_89342,Oughterard,108943-00011-1,0,4380_7778208_4190303,4380_1327 -4380_78066,286,4380_89343,Oughterard,108947-00010-1,0,4380_7778208_4190303,4380_1327 -4380_78066,291,4380_89344,Oughterard,108893-00013-1,0,4380_7778208_4190302,4380_1327 -4380_78066,289,4380_89345,Oughterard,108949-00014-1,0,4380_7778208_4190303,4380_1327 -4380_78066,287,4380_89346,Oughterard,108941-00012-1,0,4380_7778208_4190303,4380_1327 -4380_78066,292,4380_89347,Oughterard,108948-00016-1,0,4380_7778208_4190303,4380_1327 -4380_78066,290,4380_89348,Oughterard,108946-00015-1,0,4380_7778208_4190303,4380_1327 -4380_78066,294,4380_89349,Oughterard,108942-00018-1,0,4380_7778208_4190303,4380_1327 -4380_78066,295,4380_89350,Oughterard,108950-00019-1,0,4380_7778208_4190303,4380_1327 -4380_78066,293,4380_89351,Oughterard,108944-00017-1,0,4380_7778208_4190303,4380_1327 -4380_78066,296,4380_89352,Oughterard,108894-00021-1,0,4380_7778208_4190302,4380_1327 -4380_78066,297,4380_89359,Eyre Square,108791-00008-1,1,4380_7778208_4190301,4380_1329 -4380_78066,285,4380_89360,Eyre Square,108779-00009-1,1,4380_7778208_4190301,4380_1329 -4380_78066,288,4380_89362,Eyre Square,108781-00011-1,1,4380_7778208_4190301,4380_1329 -4380_78066,286,4380_89363,Eyre Square,108787-00010-1,1,4380_7778208_4190301,4380_1329 -4380_78066,291,4380_89364,Eyre Square,108783-00013-1,1,4380_7778208_4190301,4380_1329 -4380_78066,289,4380_89365,Eyre Square,108785-00014-1,1,4380_7778208_4190301,4380_1329 -4380_78066,287,4380_89366,Eyre Square,108789-00012-1,1,4380_7778208_4190301,4380_1329 -4380_78066,292,4380_89367,Eyre Square,108788-00016-1,1,4380_7778208_4190301,4380_1329 -4380_78066,290,4380_89368,Eyre Square,108780-00015-1,1,4380_7778208_4190301,4380_1329 -4380_78066,294,4380_89369,Eyre Square,108790-00018-1,1,4380_7778208_4190301,4380_1329 -4380_78066,295,4380_89370,Eyre Square,108786-00019-1,1,4380_7778208_4190301,4380_1329 -4380_78066,293,4380_89371,Eyre Square,108782-00017-1,1,4380_7778208_4190301,4380_1329 -4380_78066,296,4380_89372,Eyre Square,108784-00021-1,1,4380_7778208_4190301,4380_1329 -4380_78066,297,4380_89379,Galway,108899-00008-1,1,4380_7778208_4190303,4380_1331 -4380_78066,285,4380_89380,Galway,108850-00009-1,1,4380_7778208_4190302,4380_1331 -4380_78066,288,4380_89382,Galway,108844-00011-1,1,4380_7778208_4190302,4380_1331 -4380_78066,286,4380_89383,Galway,108848-00010-1,1,4380_7778208_4190302,4380_1331 -4380_78066,291,4380_89384,Galway,108900-00013-1,1,4380_7778208_4190303,4380_1331 -4380_78066,289,4380_89385,Galway,108846-00014-1,1,4380_7778208_4190302,4380_1331 -4380_78066,287,4380_89386,Galway,108852-00012-1,1,4380_7778208_4190302,4380_1331 -4380_78066,292,4380_89387,Galway,108849-00016-1,1,4380_7778208_4190302,4380_1331 -4380_78066,290,4380_89388,Galway,108851-00015-1,1,4380_7778208_4190302,4380_1331 -4380_78066,294,4380_89389,Galway,108853-00018-1,1,4380_7778208_4190302,4380_1331 -4380_78066,295,4380_89390,Galway,108847-00019-1,1,4380_7778208_4190302,4380_1331 -4380_78066,293,4380_89391,Galway,108845-00017-1,1,4380_7778208_4190302,4380_1331 -4380_78066,296,4380_89392,Galway,108901-00021-1,1,4380_7778208_4190303,4380_1331 -4380_78066,297,4380_89399,Galway,108813-00008-1,1,4380_7778208_4190301,4380_1330 -4380_78113,295,4380_894,Dundalk,49937-00019-1,0,4380_7778208_1000905,4380_12 -4380_78145,285,4380_8940,Athboy,8859-00009-1,0,4380_7778208_1110122,4380_146 -4380_78066,285,4380_89400,Galway,108816-00009-1,1,4380_7778208_4190301,4380_1330 -4380_78066,288,4380_89402,Galway,108805-00011-1,1,4380_7778208_4190301,4380_1330 -4380_78066,286,4380_89403,Galway,108811-00010-1,1,4380_7778208_4190301,4380_1330 -4380_78066,291,4380_89404,Galway,108814-00013-1,1,4380_7778208_4190301,4380_1330 -4380_78066,289,4380_89405,Galway,108807-00014-1,1,4380_7778208_4190301,4380_1330 -4380_78066,287,4380_89406,Galway,108809-00012-1,1,4380_7778208_4190301,4380_1330 -4380_78066,292,4380_89407,Galway,108812-00016-1,1,4380_7778208_4190301,4380_1330 -4380_78066,290,4380_89408,Galway,108817-00015-1,1,4380_7778208_4190301,4380_1330 -4380_78066,294,4380_89409,Galway,108810-00018-1,1,4380_7778208_4190301,4380_1330 -4380_78145,286,4380_8941,Athboy,8863-00010-1,0,4380_7778208_1110122,4380_146 -4380_78066,295,4380_89410,Galway,108808-00019-1,1,4380_7778208_4190301,4380_1330 -4380_78066,293,4380_89411,Galway,108806-00017-1,1,4380_7778208_4190301,4380_1330 -4380_78066,296,4380_89412,Galway,108815-00021-1,1,4380_7778208_4190301,4380_1330 -4380_78066,297,4380_89419,Galway,108876-00008-1,1,4380_7778208_4190302,4380_1331 -4380_78145,297,4380_8942,Athboy,7872-00008-1,0,4380_7778208_1110109,4380_147 -4380_78066,285,4380_89420,Galway,108910-00009-1,1,4380_7778208_4190303,4380_1331 -4380_78066,288,4380_89422,Galway,108914-00011-1,1,4380_7778208_4190303,4380_1331 -4380_78066,286,4380_89423,Galway,108916-00010-1,1,4380_7778208_4190303,4380_1331 -4380_78066,291,4380_89424,Galway,108874-00013-1,1,4380_7778208_4190302,4380_1331 -4380_78066,289,4380_89425,Galway,108912-00014-1,1,4380_7778208_4190303,4380_1331 -4380_78066,287,4380_89426,Galway,108908-00012-1,1,4380_7778208_4190303,4380_1331 -4380_78066,292,4380_89427,Galway,108917-00016-1,1,4380_7778208_4190303,4380_1331 -4380_78066,290,4380_89428,Galway,108911-00015-1,1,4380_7778208_4190303,4380_1331 -4380_78066,294,4380_89429,Galway,108909-00018-1,1,4380_7778208_4190303,4380_1331 -4380_78145,288,4380_8943,Athboy,8867-00011-1,0,4380_7778208_1110122,4380_146 -4380_78066,295,4380_89430,Galway,108913-00019-1,1,4380_7778208_4190303,4380_1331 -4380_78066,293,4380_89431,Galway,108915-00017-1,1,4380_7778208_4190303,4380_1331 -4380_78066,296,4380_89432,Galway,108875-00021-1,1,4380_7778208_4190302,4380_1331 -4380_78066,297,4380_89439,Galway,108843-00008-1,1,4380_7778208_4190301,4380_1330 -4380_78145,287,4380_8944,Athboy,8871-00012-1,0,4380_7778208_1110122,4380_146 -4380_78066,285,4380_89440,Galway,108839-00009-1,1,4380_7778208_4190301,4380_1330 -4380_78066,288,4380_89442,Galway,108841-00011-1,1,4380_7778208_4190301,4380_1330 -4380_78066,286,4380_89443,Galway,108833-00010-1,1,4380_7778208_4190301,4380_1330 -4380_78066,291,4380_89444,Galway,108831-00013-1,1,4380_7778208_4190301,4380_1330 -4380_78066,289,4380_89445,Galway,108835-00014-1,1,4380_7778208_4190301,4380_1330 -4380_78066,287,4380_89446,Galway,108837-00012-1,1,4380_7778208_4190301,4380_1330 -4380_78066,292,4380_89447,Galway,108834-00016-1,1,4380_7778208_4190301,4380_1330 -4380_78066,290,4380_89448,Galway,108840-00015-1,1,4380_7778208_4190301,4380_1330 -4380_78066,294,4380_89449,Galway,108838-00018-1,1,4380_7778208_4190301,4380_1330 -4380_78145,289,4380_8945,Athboy,8855-00014-1,0,4380_7778208_1110122,4380_146 -4380_78066,295,4380_89450,Galway,108836-00019-1,1,4380_7778208_4190301,4380_1330 -4380_78066,293,4380_89451,Galway,108842-00017-1,1,4380_7778208_4190301,4380_1330 -4380_78066,296,4380_89452,Galway,108832-00021-1,1,4380_7778208_4190301,4380_1330 -4380_78066,297,4380_89459,Galway,108892-00008-1,1,4380_7778208_4190302,4380_1330 -4380_78145,290,4380_8946,Athboy,57514-00015-1,0,4380_7778208_1110122,4380_146 -4380_78066,285,4380_89460,Galway,108939-00009-1,1,4380_7778208_4190303,4380_1330 -4380_78066,288,4380_89462,Galway,108931-00011-1,1,4380_7778208_4190303,4380_1330 -4380_78066,286,4380_89463,Galway,108937-00010-1,1,4380_7778208_4190303,4380_1330 -4380_78066,291,4380_89464,Galway,108890-00013-1,1,4380_7778208_4190302,4380_1330 -4380_78066,289,4380_89465,Galway,108933-00014-1,1,4380_7778208_4190303,4380_1330 -4380_78066,287,4380_89466,Galway,108935-00012-1,1,4380_7778208_4190303,4380_1330 -4380_78066,292,4380_89467,Galway,108938-00016-1,1,4380_7778208_4190303,4380_1330 -4380_78066,290,4380_89468,Galway,108940-00015-1,1,4380_7778208_4190303,4380_1330 -4380_78066,294,4380_89469,Galway,108936-00018-1,1,4380_7778208_4190303,4380_1330 -4380_78145,291,4380_8947,Athboy,7822-00013-1,0,4380_7778208_1110108,4380_148 -4380_78066,295,4380_89470,Galway,108934-00019-1,1,4380_7778208_4190303,4380_1330 -4380_78066,293,4380_89471,Galway,108932-00017-1,1,4380_7778208_4190303,4380_1330 -4380_78066,296,4380_89472,Galway,108891-00021-1,1,4380_7778208_4190302,4380_1330 -4380_78066,297,4380_89479,Galway,108898-00008-1,1,4380_7778208_4190302,4380_1330 -4380_78145,292,4380_8948,Athboy,57512-00016-1,0,4380_7778208_1110122,4380_146 -4380_78066,285,4380_89480,Galway,108953-00009-1,1,4380_7778208_4190303,4380_1330 -4380_78066,288,4380_89482,Galway,108957-00011-1,1,4380_7778208_4190303,4380_1330 -4380_78066,286,4380_89483,Galway,108955-00010-1,1,4380_7778208_4190303,4380_1330 -4380_78066,291,4380_89484,Galway,108896-00013-1,1,4380_7778208_4190302,4380_1330 -4380_78066,289,4380_89485,Galway,108959-00014-1,1,4380_7778208_4190303,4380_1330 -4380_78066,287,4380_89486,Galway,108951-00012-1,1,4380_7778208_4190303,4380_1330 -4380_78066,292,4380_89487,Galway,108956-00016-1,1,4380_7778208_4190303,4380_1330 -4380_78066,290,4380_89488,Galway,108954-00015-1,1,4380_7778208_4190303,4380_1330 -4380_78066,294,4380_89489,Galway,108952-00018-1,1,4380_7778208_4190303,4380_1330 -4380_78145,293,4380_8949,Athboy,57513-00017-1,0,4380_7778208_1110122,4380_146 -4380_78066,295,4380_89490,Galway,108960-00019-1,1,4380_7778208_4190303,4380_1330 -4380_78066,293,4380_89491,Galway,108958-00017-1,1,4380_7778208_4190303,4380_1330 -4380_78066,296,4380_89492,Galway,108897-00021-1,1,4380_7778208_4190302,4380_1330 -4380_78067,297,4380_89499,Ballina,108971-00008-1,0,4380_7778208_4201001,4380_1332 -4380_78113,296,4380_895,Dundalk,49927-00021-1,0,4380_7778208_1000905,4380_15 -4380_78145,294,4380_8950,Athboy,57515-00018-1,0,4380_7778208_1110122,4380_146 -4380_78067,285,4380_89500,Ballina,108969-00009-1,0,4380_7778208_4201001,4380_1333 -4380_78067,288,4380_89502,Ballina,108965-00011-1,0,4380_7778208_4201001,4380_1333 -4380_78067,286,4380_89503,Ballina,108967-00010-1,0,4380_7778208_4201001,4380_1333 -4380_78067,291,4380_89504,Ballina,108963-00013-1,0,4380_7778208_4201001,4380_1334 -4380_78067,289,4380_89505,Ballina,108961-00014-1,0,4380_7778208_4201001,4380_1333 -4380_78067,287,4380_89506,Ballina,108972-00012-1,0,4380_7778208_4201001,4380_1333 -4380_78067,292,4380_89507,Ballina,108968-00016-1,0,4380_7778208_4201001,4380_1333 -4380_78067,290,4380_89508,Ballina,108970-00015-1,0,4380_7778208_4201001,4380_1333 -4380_78067,294,4380_89509,Ballina,108973-00018-1,0,4380_7778208_4201001,4380_1333 -4380_78145,295,4380_8951,Athboy,57511-00019-1,0,4380_7778208_1110122,4380_146 -4380_78067,295,4380_89510,Ballina,108962-00019-1,0,4380_7778208_4201001,4380_1333 -4380_78067,293,4380_89511,Ballina,108966-00017-1,0,4380_7778208_4201001,4380_1333 -4380_78067,296,4380_89512,Ballina,108964-00021-1,0,4380_7778208_4201001,4380_1334 -4380_78067,297,4380_89519,Ballina,109250-00008-1,0,4380_7778208_4221001,4380_1332 -4380_78145,296,4380_8952,Athboy,55740-00021-1,0,4380_7778208_1110108,4380_148 -4380_78067,285,4380_89520,Ballina,109246-00009-1,0,4380_7778208_4221001,4380_1333 -4380_78067,288,4380_89522,Ballina,109251-00011-1,0,4380_7778208_4221001,4380_1333 -4380_78067,286,4380_89523,Ballina,109255-00010-1,0,4380_7778208_4221001,4380_1333 -4380_78067,291,4380_89524,Ballina,109257-00013-1,0,4380_7778208_4221001,4380_1334 -4380_78067,289,4380_89525,Ballina,109253-00014-1,0,4380_7778208_4221001,4380_1333 -4380_78067,287,4380_89526,Ballina,109248-00012-1,0,4380_7778208_4221001,4380_1333 -4380_78067,292,4380_89527,Ballina,109256-00016-1,0,4380_7778208_4221001,4380_1333 -4380_78067,290,4380_89528,Ballina,109247-00015-1,0,4380_7778208_4221001,4380_1333 -4380_78067,294,4380_89529,Ballina,109249-00018-1,0,4380_7778208_4221001,4380_1333 -4380_78067,293,4380_89530,Ballina,109252-00017-1,0,4380_7778208_4221001,4380_1333 -4380_78067,296,4380_89531,Ballina,109258-00021-1,0,4380_7778208_4221001,4380_1334 -4380_78067,295,4380_89532,Ballina,109254-00019-1,0,4380_7778208_4221001,4380_1333 -4380_78067,297,4380_89539,Ballina,109025-00008-1,0,4380_7778208_4201001,4380_1332 -4380_78067,285,4380_89540,Ballina,109023-00009-1,0,4380_7778208_4201001,4380_1333 -4380_78067,288,4380_89542,Ballina,109019-00011-1,0,4380_7778208_4201001,4380_1333 -4380_78067,286,4380_89543,Ballina,109015-00010-1,0,4380_7778208_4201001,4380_1333 -4380_78067,291,4380_89544,Ballina,109017-00013-1,0,4380_7778208_4201001,4380_1334 -4380_78067,289,4380_89545,Ballina,109021-00014-1,0,4380_7778208_4201001,4380_1333 -4380_78067,287,4380_89546,Ballina,109013-00012-1,0,4380_7778208_4201001,4380_1333 -4380_78067,292,4380_89547,Ballina,109016-00016-1,0,4380_7778208_4201001,4380_1333 -4380_78067,290,4380_89548,Ballina,109024-00015-1,0,4380_7778208_4201001,4380_1333 -4380_78067,294,4380_89549,Ballina,109014-00018-1,0,4380_7778208_4201001,4380_1333 -4380_78067,295,4380_89550,Ballina,109022-00019-1,0,4380_7778208_4201001,4380_1333 -4380_78067,293,4380_89551,Ballina,109020-00017-1,0,4380_7778208_4201001,4380_1333 -4380_78067,296,4380_89552,Ballina,109018-00021-1,0,4380_7778208_4201001,4380_1334 -4380_78067,297,4380_89559,Ballina,109235-00008-1,1,4380_7778208_4221001,4380_1335 -4380_78067,285,4380_89560,Ballina,109236-00009-1,1,4380_7778208_4221001,4380_1336 -4380_78067,288,4380_89562,Ballina,109244-00011-1,1,4380_7778208_4221001,4380_1336 -4380_78067,286,4380_89563,Ballina,109242-00010-1,1,4380_7778208_4221001,4380_1336 -4380_78067,291,4380_89564,Ballina,109233-00013-1,1,4380_7778208_4221001,4380_1337 -4380_78067,289,4380_89565,Ballina,109240-00014-1,1,4380_7778208_4221001,4380_1336 -4380_78067,287,4380_89566,Ballina,109238-00012-1,1,4380_7778208_4221001,4380_1336 -4380_78067,292,4380_89567,Ballina,109243-00016-1,1,4380_7778208_4221001,4380_1336 -4380_78067,290,4380_89568,Ballina,109237-00015-1,1,4380_7778208_4221001,4380_1336 -4380_78067,294,4380_89569,Ballina,109239-00018-1,1,4380_7778208_4221001,4380_1336 -4380_78067,293,4380_89570,Ballina,109245-00017-1,1,4380_7778208_4221001,4380_1336 -4380_78067,296,4380_89571,Ballina,109234-00021-1,1,4380_7778208_4221001,4380_1337 -4380_78067,295,4380_89572,Ballina,109241-00019-1,1,4380_7778208_4221001,4380_1336 -4380_78067,297,4380_89579,Ballina,109010-00008-1,1,4380_7778208_4201001,4380_1335 -4380_78067,285,4380_89580,Ballina,109011-00009-1,1,4380_7778208_4201001,4380_1336 -4380_78067,288,4380_89582,Ballina,109006-00011-1,1,4380_7778208_4201001,4380_1336 -4380_78067,286,4380_89583,Ballina,109008-00010-1,1,4380_7778208_4201001,4380_1336 -4380_78067,291,4380_89584,Ballina,109002-00013-1,1,4380_7778208_4201001,4380_1336 -4380_78067,289,4380_89585,Ballina,109004-00014-1,1,4380_7778208_4201001,4380_1336 -4380_78067,287,4380_89586,Ballina,109000-00012-1,1,4380_7778208_4201001,4380_1336 -4380_78067,292,4380_89587,Ballina,109009-00016-1,1,4380_7778208_4201001,4380_1336 -4380_78067,290,4380_89588,Ballina,109012-00015-1,1,4380_7778208_4201001,4380_1336 -4380_78067,294,4380_89589,Ballina,109001-00018-1,1,4380_7778208_4201001,4380_1336 -4380_78067,295,4380_89590,Ballina,109005-00019-1,1,4380_7778208_4201001,4380_1336 -4380_78067,293,4380_89591,Ballina,109007-00017-1,1,4380_7778208_4201001,4380_1336 -4380_78067,296,4380_89592,Ballina,109003-00021-1,1,4380_7778208_4201001,4380_1336 -4380_78067,297,4380_89599,Ballina,109054-00008-1,1,4380_7778208_4201001,4380_1335 -4380_78145,285,4380_8960,Athboy,8836-00009-1,0,4380_7778208_1110121,4380_146 -4380_78067,285,4380_89600,Ballina,109061-00009-1,1,4380_7778208_4201001,4380_1336 -4380_78067,288,4380_89602,Ballina,109052-00011-1,1,4380_7778208_4201001,4380_1336 -4380_78067,286,4380_89603,Ballina,109063-00010-1,1,4380_7778208_4201001,4380_1336 -4380_78067,291,4380_89604,Ballina,109059-00013-1,1,4380_7778208_4201001,4380_1337 -4380_78067,289,4380_89605,Ballina,109055-00014-1,1,4380_7778208_4201001,4380_1336 -4380_78067,287,4380_89606,Ballina,109057-00012-1,1,4380_7778208_4201001,4380_1336 -4380_78067,292,4380_89607,Ballina,109064-00016-1,1,4380_7778208_4201001,4380_1336 -4380_78067,290,4380_89608,Ballina,109062-00015-1,1,4380_7778208_4201001,4380_1336 -4380_78067,294,4380_89609,Ballina,109058-00018-1,1,4380_7778208_4201001,4380_1336 -4380_78145,286,4380_8961,Athboy,8841-00010-1,0,4380_7778208_1110121,4380_146 -4380_78067,295,4380_89610,Ballina,109056-00019-1,1,4380_7778208_4201001,4380_1336 -4380_78067,293,4380_89611,Ballina,109053-00017-1,1,4380_7778208_4201001,4380_1336 -4380_78067,296,4380_89612,Ballina,109060-00021-1,1,4380_7778208_4201001,4380_1337 -4380_78068,285,4380_89618,Claremorris,109073-00009-1,0,4380_7778208_4211001,4380_1341 -4380_78145,297,4380_8962,Athboy,7833-00008-1,0,4380_7778208_1110108,4380_147 -4380_78068,288,4380_89620,Claremorris,109071-00011-1,0,4380_7778208_4211001,4380_1341 -4380_78068,286,4380_89621,Claremorris,109075-00010-1,0,4380_7778208_4211001,4380_1341 -4380_78068,291,4380_89622,Claremorris,109065-00013-1,0,4380_7778208_4211001,4380_1344 -4380_78068,289,4380_89623,Claremorris,109069-00014-1,0,4380_7778208_4211001,4380_1341 -4380_78068,287,4380_89624,Claremorris,109067-00012-1,0,4380_7778208_4211001,4380_1341 -4380_78068,292,4380_89625,Claremorris,109076-00016-1,0,4380_7778208_4211001,4380_1341 -4380_78068,290,4380_89626,Claremorris,109074-00015-1,0,4380_7778208_4211001,4380_1341 -4380_78068,294,4380_89627,Claremorris,109068-00018-1,0,4380_7778208_4211001,4380_1341 -4380_78068,295,4380_89628,Claremorris,109070-00019-1,0,4380_7778208_4211001,4380_1341 -4380_78068,293,4380_89629,Claremorris,109072-00017-1,0,4380_7778208_4211001,4380_1341 -4380_78145,288,4380_8963,Athboy,8846-00011-1,0,4380_7778208_1110121,4380_146 -4380_78068,296,4380_89630,Claremorris,109066-00021-1,0,4380_7778208_4211001,4380_1344 -4380_78068,297,4380_89632,Knock Shrine,109089-00008-1,0,4380_7778208_4211001,4380_1338 -4380_78068,297,4380_89639,Claremorris,109094-00008-1,0,4380_7778208_4211001,4380_1339 -4380_78145,287,4380_8964,Athboy,8851-00012-1,0,4380_7778208_1110121,4380_146 -4380_78068,285,4380_89640,Claremorris,109099-00009-1,0,4380_7778208_4211001,4380_1342 -4380_78068,288,4380_89642,Claremorris,109101-00011-1,0,4380_7778208_4211001,4380_1342 -4380_78068,286,4380_89643,Claremorris,109092-00010-1,0,4380_7778208_4211001,4380_1342 -4380_78068,291,4380_89644,Claremorris,109090-00013-1,0,4380_7778208_4211001,4380_1345 -4380_78068,289,4380_89645,Claremorris,109097-00014-1,0,4380_7778208_4211001,4380_1342 -4380_78068,287,4380_89646,Claremorris,109095-00012-1,0,4380_7778208_4211001,4380_1342 -4380_78068,292,4380_89647,Claremorris,109093-00016-1,0,4380_7778208_4211001,4380_1342 -4380_78068,290,4380_89648,Claremorris,109100-00015-1,0,4380_7778208_4211001,4380_1342 -4380_78068,294,4380_89649,Claremorris,109096-00018-1,0,4380_7778208_4211001,4380_1342 -4380_78145,289,4380_8965,Athboy,8831-00014-1,0,4380_7778208_1110121,4380_146 -4380_78068,295,4380_89650,Claremorris,109098-00019-1,0,4380_7778208_4211001,4380_1342 -4380_78068,293,4380_89651,Claremorris,109102-00017-1,0,4380_7778208_4211001,4380_1342 -4380_78068,296,4380_89652,Claremorris,109091-00021-1,0,4380_7778208_4211001,4380_1345 -4380_78068,297,4380_89659,Claremorris,109120-00008-1,0,4380_7778208_4211001,4380_1339 -4380_78145,290,4380_8966,Athboy,57493-00015-1,0,4380_7778208_1110121,4380_146 -4380_78068,285,4380_89660,Claremorris,109121-00009-1,0,4380_7778208_4211001,4380_1342 -4380_78068,288,4380_89662,Claremorris,109125-00011-1,0,4380_7778208_4211001,4380_1342 -4380_78068,286,4380_89663,Claremorris,109118-00010-1,0,4380_7778208_4211001,4380_1342 -4380_78068,291,4380_89664,Claremorris,109123-00013-1,0,4380_7778208_4211001,4380_1345 -4380_78068,289,4380_89665,Claremorris,109127-00014-1,0,4380_7778208_4211001,4380_1342 -4380_78068,287,4380_89666,Claremorris,109116-00012-1,0,4380_7778208_4211001,4380_1342 -4380_78068,292,4380_89667,Claremorris,109119-00016-1,0,4380_7778208_4211001,4380_1342 -4380_78068,290,4380_89668,Claremorris,109122-00015-1,0,4380_7778208_4211001,4380_1342 -4380_78068,294,4380_89669,Claremorris,109117-00018-1,0,4380_7778208_4211001,4380_1342 -4380_78145,291,4380_8967,Athboy,7775-00013-1,0,4380_7778208_1110107,4380_147 -4380_78068,295,4380_89670,Claremorris,109128-00019-1,0,4380_7778208_4211001,4380_1342 -4380_78068,293,4380_89671,Claremorris,109126-00017-1,0,4380_7778208_4211001,4380_1342 -4380_78068,296,4380_89672,Claremorris,109124-00021-1,0,4380_7778208_4211001,4380_1345 -4380_78068,297,4380_89679,Claremorris,109150-00008-1,0,4380_7778208_4211001,4380_1340 -4380_78145,292,4380_8968,Athboy,57494-00016-1,0,4380_7778208_1110121,4380_146 -4380_78068,285,4380_89680,Claremorris,109148-00009-1,0,4380_7778208_4211001,4380_1343 -4380_78068,288,4380_89682,Claremorris,109142-00011-1,0,4380_7778208_4211001,4380_1343 -4380_78068,286,4380_89683,Claremorris,109153-00010-1,0,4380_7778208_4211001,4380_1343 -4380_78068,291,4380_89684,Claremorris,109151-00013-1,0,4380_7778208_4211001,4380_1343 -4380_78068,289,4380_89685,Claremorris,109146-00014-1,0,4380_7778208_4211001,4380_1343 -4380_78068,287,4380_89686,Claremorris,109144-00012-1,0,4380_7778208_4211001,4380_1343 -4380_78068,292,4380_89687,Claremorris,109154-00016-1,0,4380_7778208_4211001,4380_1343 -4380_78068,290,4380_89688,Claremorris,109149-00015-1,0,4380_7778208_4211001,4380_1343 -4380_78068,294,4380_89689,Claremorris,109145-00018-1,0,4380_7778208_4211001,4380_1343 -4380_78145,293,4380_8969,Athboy,57492-00017-1,0,4380_7778208_1110121,4380_146 -4380_78068,295,4380_89690,Claremorris,109147-00019-1,0,4380_7778208_4211001,4380_1343 -4380_78068,293,4380_89691,Claremorris,109143-00017-1,0,4380_7778208_4211001,4380_1343 -4380_78068,296,4380_89692,Claremorris,109152-00021-1,0,4380_7778208_4211001,4380_1343 -4380_78068,297,4380_89699,Claremorris,109176-00008-1,0,4380_7778208_4211001,4380_1339 -4380_78145,294,4380_8970,Athboy,57495-00018-1,0,4380_7778208_1110121,4380_146 -4380_78068,285,4380_89700,Claremorris,109177-00009-1,0,4380_7778208_4211001,4380_1342 -4380_78068,288,4380_89702,Claremorris,109172-00011-1,0,4380_7778208_4211001,4380_1342 -4380_78068,286,4380_89703,Claremorris,109170-00010-1,0,4380_7778208_4211001,4380_1342 -4380_78068,291,4380_89704,Claremorris,109174-00013-1,0,4380_7778208_4211001,4380_1345 -4380_78068,289,4380_89705,Claremorris,109168-00014-1,0,4380_7778208_4211001,4380_1342 -4380_78068,287,4380_89706,Claremorris,109179-00012-1,0,4380_7778208_4211001,4380_1342 -4380_78068,292,4380_89707,Claremorris,109171-00016-1,0,4380_7778208_4211001,4380_1342 -4380_78068,290,4380_89708,Claremorris,109178-00015-1,0,4380_7778208_4211001,4380_1342 -4380_78068,294,4380_89709,Claremorris,109180-00018-1,0,4380_7778208_4211001,4380_1342 -4380_78145,295,4380_8971,Athboy,57491-00019-1,0,4380_7778208_1110121,4380_146 -4380_78068,295,4380_89710,Claremorris,109169-00019-1,0,4380_7778208_4211001,4380_1342 -4380_78068,293,4380_89711,Claremorris,109173-00017-1,0,4380_7778208_4211001,4380_1342 -4380_78068,296,4380_89712,Claremorris,109175-00021-1,0,4380_7778208_4211001,4380_1345 -4380_78068,285,4380_89718,Knock Shrine,109077-00009-1,1,4380_7778208_4211001,4380_1346 -4380_78145,296,4380_8972,Athboy,55731-00021-1,0,4380_7778208_1110107,4380_147 -4380_78068,288,4380_89720,Knock Shrine,109087-00011-1,1,4380_7778208_4211001,4380_1346 -4380_78068,286,4380_89721,Knock Shrine,109083-00010-1,1,4380_7778208_4211001,4380_1346 -4380_78068,291,4380_89722,Knock Shrine,109081-00013-1,1,4380_7778208_4211001,4380_1350 -4380_78068,289,4380_89723,Knock Shrine,109085-00014-1,1,4380_7778208_4211001,4380_1346 -4380_78068,287,4380_89724,Knock Shrine,109079-00012-1,1,4380_7778208_4211001,4380_1346 -4380_78068,292,4380_89725,Knock Shrine,109084-00016-1,1,4380_7778208_4211001,4380_1346 -4380_78068,290,4380_89726,Knock Shrine,109078-00015-1,1,4380_7778208_4211001,4380_1346 -4380_78068,294,4380_89727,Knock Shrine,109080-00018-1,1,4380_7778208_4211001,4380_1346 -4380_78068,295,4380_89728,Knock Shrine,109086-00019-1,1,4380_7778208_4211001,4380_1346 -4380_78068,293,4380_89729,Knock Shrine,109088-00017-1,1,4380_7778208_4211001,4380_1346 -4380_78145,285,4380_8973,St. Stephen's Green,8807-00009-1,1,4380_7778208_1110120,4380_153 -4380_78068,296,4380_89730,Knock Shrine,109082-00021-1,1,4380_7778208_4211001,4380_1350 -4380_78068,297,4380_89737,Knock Shrine,109111-00008-1,1,4380_7778208_4211001,4380_1346 -4380_78068,285,4380_89738,Knock Shrine,109114-00009-1,1,4380_7778208_4211001,4380_1350 -4380_78145,286,4380_8974,St. Stephen's Green,8812-00010-1,1,4380_7778208_1110120,4380_153 -4380_78068,288,4380_89740,Knock Shrine,109109-00011-1,1,4380_7778208_4211001,4380_1350 -4380_78068,286,4380_89741,Knock Shrine,109107-00010-1,1,4380_7778208_4211001,4380_1350 -4380_78068,291,4380_89742,Knock Shrine,109112-00013-1,1,4380_7778208_4211001,4380_1354 -4380_78068,289,4380_89743,Knock Shrine,109103-00014-1,1,4380_7778208_4211001,4380_1350 -4380_78068,287,4380_89744,Knock Shrine,109105-00012-1,1,4380_7778208_4211001,4380_1350 -4380_78068,292,4380_89745,Knock Shrine,109108-00016-1,1,4380_7778208_4211001,4380_1350 -4380_78068,290,4380_89746,Knock Shrine,109115-00015-1,1,4380_7778208_4211001,4380_1350 -4380_78068,294,4380_89747,Knock Shrine,109106-00018-1,1,4380_7778208_4211001,4380_1350 -4380_78068,295,4380_89748,Knock Shrine,109104-00019-1,1,4380_7778208_4211001,4380_1350 -4380_78068,293,4380_89749,Knock Shrine,109110-00017-1,1,4380_7778208_4211001,4380_1350 -4380_78145,297,4380_8975,Dublin,7783-00008-1,1,4380_7778208_1110107,4380_154 -4380_78068,296,4380_89750,Knock Shrine,109113-00021-1,1,4380_7778208_4211001,4380_1354 -4380_78068,297,4380_89757,Claremorris,109129-00008-1,1,4380_7778208_4211001,4380_1347 -4380_78068,285,4380_89758,Claremorris,109130-00009-1,1,4380_7778208_4211001,4380_1351 -4380_78145,288,4380_8976,St. Stephen's Green,8817-00011-1,1,4380_7778208_1110120,4380_153 -4380_78068,288,4380_89760,Claremorris,109138-00011-1,1,4380_7778208_4211001,4380_1351 -4380_78068,286,4380_89761,Claremorris,109136-00010-1,1,4380_7778208_4211001,4380_1351 -4380_78068,291,4380_89762,Claremorris,109140-00013-1,1,4380_7778208_4211001,4380_1351 -4380_78068,289,4380_89763,Claremorris,109134-00014-1,1,4380_7778208_4211001,4380_1351 -4380_78068,287,4380_89764,Claremorris,109132-00012-1,1,4380_7778208_4211001,4380_1351 -4380_78068,292,4380_89765,Claremorris,109137-00016-1,1,4380_7778208_4211001,4380_1351 -4380_78068,290,4380_89766,Claremorris,109131-00015-1,1,4380_7778208_4211001,4380_1351 -4380_78068,294,4380_89767,Claremorris,109133-00018-1,1,4380_7778208_4211001,4380_1351 -4380_78068,295,4380_89768,Claremorris,109135-00019-1,1,4380_7778208_4211001,4380_1351 -4380_78068,293,4380_89769,Claremorris,109139-00017-1,1,4380_7778208_4211001,4380_1351 -4380_78145,287,4380_8977,St. Stephen's Green,8822-00012-1,1,4380_7778208_1110120,4380_153 -4380_78068,296,4380_89770,Claremorris,109141-00021-1,1,4380_7778208_4211001,4380_1351 -4380_78068,297,4380_89777,Knock Shrine,109159-00008-1,1,4380_7778208_4211001,4380_1346 -4380_78068,285,4380_89778,Knock Shrine,109155-00009-1,1,4380_7778208_4211001,4380_1350 -4380_78145,289,4380_8978,St. Stephen's Green,8802-00014-1,1,4380_7778208_1110120,4380_153 -4380_78068,288,4380_89780,Knock Shrine,109166-00011-1,1,4380_7778208_4211001,4380_1350 -4380_78068,286,4380_89781,Knock Shrine,109160-00010-1,1,4380_7778208_4211001,4380_1350 -4380_78068,291,4380_89782,Knock Shrine,109157-00013-1,1,4380_7778208_4211001,4380_1350 -4380_78068,289,4380_89783,Knock Shrine,109164-00014-1,1,4380_7778208_4211001,4380_1350 -4380_78068,287,4380_89784,Knock Shrine,109162-00012-1,1,4380_7778208_4211001,4380_1350 -4380_78068,292,4380_89785,Knock Shrine,109161-00016-1,1,4380_7778208_4211001,4380_1350 -4380_78068,290,4380_89786,Knock Shrine,109156-00015-1,1,4380_7778208_4211001,4380_1350 -4380_78068,294,4380_89787,Knock Shrine,109163-00018-1,1,4380_7778208_4211001,4380_1350 -4380_78068,295,4380_89788,Knock Shrine,109165-00019-1,1,4380_7778208_4211001,4380_1350 -4380_78068,293,4380_89789,Knock Shrine,109167-00017-1,1,4380_7778208_4211001,4380_1350 -4380_78145,290,4380_8979,St. Stephen's Green,57450-00015-1,1,4380_7778208_1110120,4380_153 -4380_78068,296,4380_89790,Knock Shrine,109158-00021-1,1,4380_7778208_4211001,4380_1350 -4380_78068,297,4380_89797,Claremorris,109181-00008-1,1,4380_7778208_4211001,4380_1348 -4380_78068,285,4380_89798,Claremorris,109192-00009-1,1,4380_7778208_4211001,4380_1352 -4380_78145,291,4380_8980,Dublin,7717-00013-1,1,4380_7778208_1110106,4380_155 -4380_78068,288,4380_89800,Claremorris,109184-00011-1,1,4380_7778208_4211001,4380_1352 -4380_78068,286,4380_89801,Claremorris,109182-00010-1,1,4380_7778208_4211001,4380_1352 -4380_78068,291,4380_89802,Claremorris,109188-00013-1,1,4380_7778208_4211001,4380_1352 -4380_78068,289,4380_89803,Claremorris,109190-00014-1,1,4380_7778208_4211001,4380_1352 -4380_78068,287,4380_89804,Claremorris,109186-00012-1,1,4380_7778208_4211001,4380_1352 -4380_78068,292,4380_89805,Claremorris,109183-00016-1,1,4380_7778208_4211001,4380_1352 -4380_78068,290,4380_89806,Claremorris,109193-00015-1,1,4380_7778208_4211001,4380_1352 -4380_78068,294,4380_89807,Claremorris,109187-00018-1,1,4380_7778208_4211001,4380_1352 -4380_78068,295,4380_89808,Claremorris,109191-00019-1,1,4380_7778208_4211001,4380_1352 -4380_78068,293,4380_89809,Claremorris,109185-00017-1,1,4380_7778208_4211001,4380_1352 -4380_78145,292,4380_8981,St. Stephen's Green,57449-00016-1,1,4380_7778208_1110120,4380_153 -4380_78068,296,4380_89810,Claremorris,109189-00021-1,1,4380_7778208_4211001,4380_1352 -4380_78068,297,4380_89817,Ballina,109204-00008-1,1,4380_7778208_4211001,4380_1349 -4380_78068,285,4380_89818,Ballina,109200-00009-1,1,4380_7778208_4211001,4380_1353 -4380_78145,293,4380_8982,St. Stephen's Green,57448-00017-1,1,4380_7778208_1110120,4380_153 -4380_78068,288,4380_89820,Ballina,109198-00011-1,1,4380_7778208_4211001,4380_1353 -4380_78068,286,4380_89821,Ballina,109196-00010-1,1,4380_7778208_4211001,4380_1353 -4380_78068,291,4380_89822,Ballina,109202-00013-1,1,4380_7778208_4211001,4380_1355 -4380_78068,289,4380_89823,Ballina,109205-00014-1,1,4380_7778208_4211001,4380_1353 -4380_78068,287,4380_89824,Ballina,109194-00012-1,1,4380_7778208_4211001,4380_1353 -4380_78068,292,4380_89825,Ballina,109197-00016-1,1,4380_7778208_4211001,4380_1353 -4380_78068,290,4380_89826,Ballina,109201-00015-1,1,4380_7778208_4211001,4380_1353 -4380_78068,294,4380_89827,Ballina,109195-00018-1,1,4380_7778208_4211001,4380_1353 -4380_78068,295,4380_89828,Ballina,109206-00019-1,1,4380_7778208_4211001,4380_1353 -4380_78068,293,4380_89829,Ballina,109199-00017-1,1,4380_7778208_4211001,4380_1353 -4380_78145,294,4380_8983,St. Stephen's Green,57447-00018-1,1,4380_7778208_1110120,4380_153 -4380_78068,296,4380_89830,Ballina,109203-00021-1,1,4380_7778208_4211001,4380_1355 -4380_78069,297,4380_89837,Cong,109215-00008-1,0,4380_7778208_4221001,4380_1356 -4380_78069,285,4380_89838,Cong,109216-00009-1,0,4380_7778208_4221001,4380_1357 -4380_78145,295,4380_8984,St. Stephen's Green,57446-00019-1,1,4380_7778208_1110120,4380_153 -4380_78069,288,4380_89840,Cong,109218-00011-1,0,4380_7778208_4221001,4380_1357 -4380_78069,286,4380_89841,Cong,109213-00010-1,0,4380_7778208_4221001,4380_1357 -4380_78069,291,4380_89842,Cong,109207-00013-1,0,4380_7778208_4221001,4380_1356 -4380_78069,289,4380_89843,Cong,109209-00014-1,0,4380_7778208_4221001,4380_1357 -4380_78069,287,4380_89844,Cong,109211-00012-1,0,4380_7778208_4221001,4380_1357 -4380_78069,292,4380_89845,Cong,109214-00016-1,0,4380_7778208_4221001,4380_1357 -4380_78069,290,4380_89846,Cong,109217-00015-1,0,4380_7778208_4221001,4380_1357 -4380_78069,294,4380_89847,Cong,109212-00018-1,0,4380_7778208_4221001,4380_1357 -4380_78069,293,4380_89848,Cong,109219-00017-1,0,4380_7778208_4221001,4380_1357 -4380_78069,296,4380_89849,Cong,109208-00021-1,0,4380_7778208_4221001,4380_1356 -4380_78145,296,4380_8985,Dublin,55676-00021-1,1,4380_7778208_1110106,4380_155 -4380_78069,295,4380_89850,Cong,109210-00019-1,0,4380_7778208_4221001,4380_1357 -4380_78069,297,4380_89857,Cong,109269-00008-1,0,4380_7778208_4221001,4380_1356 -4380_78069,285,4380_89858,Cong,109265-00009-1,0,4380_7778208_4221001,4380_1357 -4380_78069,288,4380_89860,Cong,109261-00011-1,0,4380_7778208_4221001,4380_1357 -4380_78069,286,4380_89861,Cong,109270-00010-1,0,4380_7778208_4221001,4380_1357 -4380_78069,291,4380_89862,Cong,109259-00013-1,0,4380_7778208_4221001,4380_1358 -4380_78069,289,4380_89863,Cong,109263-00014-1,0,4380_7778208_4221001,4380_1357 -4380_78069,287,4380_89864,Cong,109267-00012-1,0,4380_7778208_4221001,4380_1357 -4380_78069,292,4380_89865,Cong,109271-00016-1,0,4380_7778208_4221001,4380_1357 -4380_78069,290,4380_89866,Cong,109266-00015-1,0,4380_7778208_4221001,4380_1357 -4380_78069,294,4380_89867,Cong,109268-00018-1,0,4380_7778208_4221001,4380_1357 -4380_78069,293,4380_89868,Cong,109262-00017-1,0,4380_7778208_4221001,4380_1357 -4380_78069,296,4380_89869,Cong,109260-00021-1,0,4380_7778208_4221001,4380_1358 -4380_78069,295,4380_89870,Cong,109264-00019-1,0,4380_7778208_4221001,4380_1357 -4380_78069,297,4380_89877,Cong,109036-00008-1,0,4380_7778208_4201001,4380_1356 -4380_78069,285,4380_89878,Cong,109034-00009-1,0,4380_7778208_4201001,4380_1357 -4380_78069,288,4380_89880,Cong,109028-00011-1,0,4380_7778208_4201001,4380_1357 -4380_78069,286,4380_89881,Cong,109037-00010-1,0,4380_7778208_4201001,4380_1357 -4380_78069,291,4380_89882,Cong,109030-00013-1,0,4380_7778208_4201001,4380_1358 -4380_78069,289,4380_89883,Cong,109026-00014-1,0,4380_7778208_4201001,4380_1357 -4380_78069,287,4380_89884,Cong,109032-00012-1,0,4380_7778208_4201001,4380_1357 -4380_78069,292,4380_89885,Cong,109038-00016-1,0,4380_7778208_4201001,4380_1357 -4380_78069,290,4380_89886,Cong,109035-00015-1,0,4380_7778208_4201001,4380_1357 -4380_78069,294,4380_89887,Cong,109033-00018-1,0,4380_7778208_4201001,4380_1357 -4380_78069,295,4380_89888,Cong,109027-00019-1,0,4380_7778208_4201001,4380_1357 -4380_78069,293,4380_89889,Cong,109029-00017-1,0,4380_7778208_4201001,4380_1357 -4380_78069,296,4380_89890,Cong,109031-00021-1,0,4380_7778208_4201001,4380_1358 -4380_78069,297,4380_89897,Castlebar,109226-00008-1,1,4380_7778208_4221001,4380_1359 -4380_78069,285,4380_89898,Castlebar,109224-00009-1,1,4380_7778208_4221001,4380_1360 -4380_78069,288,4380_89900,Castlebar,109229-00011-1,1,4380_7778208_4221001,4380_1360 -4380_78069,286,4380_89901,Castlebar,109227-00010-1,1,4380_7778208_4221001,4380_1360 -4380_78069,291,4380_89902,Castlebar,109220-00013-1,1,4380_7778208_4221001,4380_1361 -4380_78069,289,4380_89903,Castlebar,109222-00014-1,1,4380_7778208_4221001,4380_1360 -4380_78069,287,4380_89904,Castlebar,109231-00012-1,1,4380_7778208_4221001,4380_1360 -4380_78069,292,4380_89905,Castlebar,109228-00016-1,1,4380_7778208_4221001,4380_1360 -4380_78069,290,4380_89906,Castlebar,109225-00015-1,1,4380_7778208_4221001,4380_1360 -4380_78069,294,4380_89907,Castlebar,109232-00018-1,1,4380_7778208_4221001,4380_1360 -4380_78069,293,4380_89908,Castlebar,109230-00017-1,1,4380_7778208_4221001,4380_1360 -4380_78069,296,4380_89909,Castlebar,109221-00021-1,1,4380_7778208_4221001,4380_1361 -4380_78069,295,4380_89910,Castlebar,109223-00019-1,1,4380_7778208_4221001,4380_1360 -4380_78069,297,4380_89917,Castlebar,109278-00008-1,1,4380_7778208_4221001,4380_1359 -4380_78069,285,4380_89918,Castlebar,109279-00009-1,1,4380_7778208_4221001,4380_1360 -4380_78145,285,4380_8992,St. Stephen's Green,8856-00009-1,1,4380_7778208_1110122,4380_153 -4380_78069,288,4380_89920,Castlebar,109281-00011-1,1,4380_7778208_4221001,4380_1360 -4380_78069,286,4380_89921,Castlebar,109272-00010-1,1,4380_7778208_4221001,4380_1360 -4380_78069,291,4380_89922,Castlebar,109276-00013-1,1,4380_7778208_4221001,4380_1361 -4380_78069,289,4380_89923,Castlebar,109283-00014-1,1,4380_7778208_4221001,4380_1360 -4380_78069,287,4380_89924,Castlebar,109274-00012-1,1,4380_7778208_4221001,4380_1360 -4380_78069,292,4380_89925,Castlebar,109273-00016-1,1,4380_7778208_4221001,4380_1360 -4380_78069,290,4380_89926,Castlebar,109280-00015-1,1,4380_7778208_4221001,4380_1360 -4380_78069,294,4380_89927,Castlebar,109275-00018-1,1,4380_7778208_4221001,4380_1360 -4380_78069,293,4380_89928,Castlebar,109282-00017-1,1,4380_7778208_4221001,4380_1360 -4380_78069,296,4380_89929,Castlebar,109277-00021-1,1,4380_7778208_4221001,4380_1361 -4380_78145,286,4380_8993,St. Stephen's Green,8860-00010-1,1,4380_7778208_1110122,4380_153 -4380_78069,295,4380_89930,Castlebar,109284-00019-1,1,4380_7778208_4221001,4380_1360 -4380_78069,297,4380_89937,Castlebar,109051-00008-1,1,4380_7778208_4201001,4380_1359 -4380_78069,285,4380_89938,Castlebar,109041-00009-1,1,4380_7778208_4201001,4380_1360 -4380_78145,297,4380_8994,Dublin,7869-00008-1,1,4380_7778208_1110109,4380_154 -4380_78069,288,4380_89940,Castlebar,109043-00011-1,1,4380_7778208_4201001,4380_1360 -4380_78069,286,4380_89941,Castlebar,109047-00010-1,1,4380_7778208_4201001,4380_1360 -4380_78069,291,4380_89942,Castlebar,109045-00013-1,1,4380_7778208_4201001,4380_1360 -4380_78069,289,4380_89943,Castlebar,109039-00014-1,1,4380_7778208_4201001,4380_1360 -4380_78069,287,4380_89944,Castlebar,109049-00012-1,1,4380_7778208_4201001,4380_1360 -4380_78069,292,4380_89945,Castlebar,109048-00016-1,1,4380_7778208_4201001,4380_1360 -4380_78069,290,4380_89946,Castlebar,109042-00015-1,1,4380_7778208_4201001,4380_1360 -4380_78069,294,4380_89947,Castlebar,109050-00018-1,1,4380_7778208_4201001,4380_1360 -4380_78069,295,4380_89948,Castlebar,109040-00019-1,1,4380_7778208_4201001,4380_1360 -4380_78069,293,4380_89949,Castlebar,109044-00017-1,1,4380_7778208_4201001,4380_1360 -4380_78145,288,4380_8995,St. Stephen's Green,8864-00011-1,1,4380_7778208_1110122,4380_153 -4380_78069,296,4380_89950,Castlebar,109046-00021-1,1,4380_7778208_4201001,4380_1360 -4380_78070,297,4380_89957,Westport,109311-00008-1,0,4380_7778208_4230301,4380_1362 -4380_78070,285,4380_89958,Westport,109312-00009-1,0,4380_7778208_4230301,4380_1362 -4380_78145,287,4380_8996,St. Stephen's Green,8868-00012-1,1,4380_7778208_1110122,4380_153 -4380_78070,288,4380_89960,Westport,109318-00011-1,0,4380_7778208_4230301,4380_1362 -4380_78070,286,4380_89961,Westport,109316-00010-1,0,4380_7778208_4230301,4380_1362 -4380_78070,291,4380_89962,Westport,109314-00013-1,0,4380_7778208_4230301,4380_1362 -4380_78070,289,4380_89963,Westport,109320-00014-1,0,4380_7778208_4230301,4380_1362 -4380_78070,287,4380_89964,Westport,109322-00012-1,0,4380_7778208_4230301,4380_1362 -4380_78070,292,4380_89965,Westport,109317-00016-1,0,4380_7778208_4230301,4380_1362 -4380_78070,290,4380_89966,Westport,109313-00015-1,0,4380_7778208_4230301,4380_1362 -4380_78070,294,4380_89967,Westport,109323-00018-1,0,4380_7778208_4230301,4380_1362 -4380_78070,293,4380_89968,Westport,109319-00017-1,0,4380_7778208_4230301,4380_1362 -4380_78070,296,4380_89969,Westport,109315-00021-1,0,4380_7778208_4230301,4380_1362 -4380_78145,289,4380_8997,St. Stephen's Green,8852-00014-1,1,4380_7778208_1110122,4380_153 -4380_78070,295,4380_89970,Westport,109321-00019-1,0,4380_7778208_4230301,4380_1362 -4380_78070,297,4380_89977,Westport,109404-00008-1,0,4380_7778208_4231002,4380_1362 -4380_78070,285,4380_89978,Westport,109405-00009-1,0,4380_7778208_4231002,4380_1362 -4380_78145,290,4380_8998,St. Stephen's Green,57498-00015-1,1,4380_7778208_1110122,4380_153 -4380_78070,288,4380_89980,Westport,109411-00011-1,0,4380_7778208_4231002,4380_1362 -4380_78070,286,4380_89981,Westport,109402-00010-1,0,4380_7778208_4231002,4380_1362 -4380_78070,291,4380_89982,Westport,109413-00013-1,0,4380_7778208_4231002,4380_1362 -4380_78070,289,4380_89983,Westport,109409-00014-1,0,4380_7778208_4231002,4380_1362 -4380_78070,287,4380_89984,Westport,109407-00012-1,0,4380_7778208_4231002,4380_1362 -4380_78070,292,4380_89985,Westport,109403-00016-1,0,4380_7778208_4231002,4380_1362 -4380_78070,290,4380_89986,Westport,109406-00015-1,0,4380_7778208_4231002,4380_1362 -4380_78070,294,4380_89987,Westport,109408-00018-1,0,4380_7778208_4231002,4380_1362 -4380_78070,293,4380_89988,Westport,109412-00017-1,0,4380_7778208_4231002,4380_1362 -4380_78070,296,4380_89989,Westport,109414-00021-1,0,4380_7778208_4231002,4380_1362 -4380_78145,291,4380_8999,Dublin,7819-00013-1,1,4380_7778208_1110108,4380_155 -4380_78070,295,4380_89990,Westport,109410-00019-1,0,4380_7778208_4231002,4380_1362 -4380_78070,297,4380_89997,Westport,109349-00008-1,0,4380_7778208_4230301,4380_1362 -4380_78070,285,4380_89998,Westport,109341-00009-1,0,4380_7778208_4230301,4380_1362 -4380_77946,287,4380_9,Dundalk,50453-00012-1,0,4380_7778208_1000915,4380_1 -4380_78145,292,4380_9000,St. Stephen's Green,57500-00016-1,1,4380_7778208_1110122,4380_153 -4380_78070,288,4380_90000,Westport,109345-00011-1,0,4380_7778208_4230301,4380_1362 -4380_78070,286,4380_90001,Westport,109339-00010-1,0,4380_7778208_4230301,4380_1362 -4380_78070,291,4380_90002,Westport,109347-00013-1,0,4380_7778208_4230301,4380_1362 -4380_78070,289,4380_90003,Westport,109337-00014-1,0,4380_7778208_4230301,4380_1362 -4380_78070,287,4380_90004,Westport,109343-00012-1,0,4380_7778208_4230301,4380_1362 -4380_78070,292,4380_90005,Westport,109340-00016-1,0,4380_7778208_4230301,4380_1362 -4380_78070,290,4380_90006,Westport,109342-00015-1,0,4380_7778208_4230301,4380_1362 -4380_78070,294,4380_90007,Westport,109344-00018-1,0,4380_7778208_4230301,4380_1362 -4380_78070,293,4380_90008,Westport,109346-00017-1,0,4380_7778208_4230301,4380_1362 -4380_78070,296,4380_90009,Westport,109348-00021-1,0,4380_7778208_4230301,4380_1362 -4380_78145,293,4380_9001,St. Stephen's Green,57497-00017-1,1,4380_7778208_1110122,4380_153 -4380_78070,295,4380_90010,Westport,109338-00019-1,0,4380_7778208_4230301,4380_1362 -4380_78070,297,4380_90017,Westport,109436-00008-1,0,4380_7778208_4231002,4380_1362 -4380_78070,285,4380_90018,Westport,109439-00009-1,0,4380_7778208_4231002,4380_1362 -4380_78145,294,4380_9002,St. Stephen's Green,57499-00018-1,1,4380_7778208_1110122,4380_153 -4380_78070,288,4380_90020,Westport,109437-00011-1,0,4380_7778208_4231002,4380_1362 -4380_78070,286,4380_90021,Westport,109428-00010-1,0,4380_7778208_4231002,4380_1362 -4380_78070,291,4380_90022,Westport,109434-00013-1,0,4380_7778208_4231002,4380_1362 -4380_78070,289,4380_90023,Westport,109432-00014-1,0,4380_7778208_4231002,4380_1362 -4380_78070,287,4380_90024,Westport,109430-00012-1,0,4380_7778208_4231002,4380_1362 -4380_78070,292,4380_90025,Westport,109429-00016-1,0,4380_7778208_4231002,4380_1362 -4380_78070,290,4380_90026,Westport,109440-00015-1,0,4380_7778208_4231002,4380_1362 -4380_78070,294,4380_90027,Westport,109431-00018-1,0,4380_7778208_4231002,4380_1362 -4380_78070,293,4380_90028,Westport,109438-00017-1,0,4380_7778208_4231002,4380_1362 -4380_78070,296,4380_90029,Westport,109435-00021-1,0,4380_7778208_4231002,4380_1362 -4380_78145,295,4380_9003,St. Stephen's Green,57496-00019-1,1,4380_7778208_1110122,4380_153 -4380_78070,295,4380_90030,Westport,109433-00019-1,0,4380_7778208_4231002,4380_1362 -4380_78070,297,4380_90037,Westport,109367-00008-1,0,4380_7778208_4230301,4380_1362 -4380_78070,285,4380_90038,Westport,109368-00009-1,0,4380_7778208_4230301,4380_1362 -4380_78145,296,4380_9004,Dublin,55737-00021-1,1,4380_7778208_1110108,4380_155 -4380_78070,288,4380_90040,Westport,109370-00011-1,0,4380_7778208_4230301,4380_1362 -4380_78070,286,4380_90041,Westport,109374-00010-1,0,4380_7778208_4230301,4380_1362 -4380_78070,291,4380_90042,Westport,109372-00013-1,0,4380_7778208_4230301,4380_1362 -4380_78070,289,4380_90043,Westport,109363-00014-1,0,4380_7778208_4230301,4380_1362 -4380_78070,287,4380_90044,Westport,109365-00012-1,0,4380_7778208_4230301,4380_1362 -4380_78070,292,4380_90045,Westport,109375-00016-1,0,4380_7778208_4230301,4380_1362 -4380_78070,290,4380_90046,Westport,109369-00015-1,0,4380_7778208_4230301,4380_1362 -4380_78070,294,4380_90047,Westport,109366-00018-1,0,4380_7778208_4230301,4380_1362 -4380_78070,293,4380_90048,Westport,109371-00017-1,0,4380_7778208_4230301,4380_1362 -4380_78070,296,4380_90049,Westport,109373-00021-1,0,4380_7778208_4230301,4380_1362 -4380_78070,295,4380_90050,Westport,109364-00019-1,0,4380_7778208_4230301,4380_1362 -4380_78070,297,4380_90057,Westport,109462-00008-1,0,4380_7778208_4231002,4380_1362 -4380_78070,285,4380_90058,Westport,109456-00009-1,0,4380_7778208_4231002,4380_1362 -4380_78070,288,4380_90060,Westport,109460-00011-1,0,4380_7778208_4231002,4380_1362 -4380_78070,286,4380_90061,Westport,109458-00010-1,0,4380_7778208_4231002,4380_1362 -4380_78070,291,4380_90062,Westport,109454-00013-1,0,4380_7778208_4231002,4380_1362 -4380_78070,289,4380_90063,Westport,109463-00014-1,0,4380_7778208_4231002,4380_1362 -4380_78070,287,4380_90064,Westport,109465-00012-1,0,4380_7778208_4231002,4380_1362 -4380_78070,292,4380_90065,Westport,109459-00016-1,0,4380_7778208_4231002,4380_1362 -4380_78070,290,4380_90066,Westport,109457-00015-1,0,4380_7778208_4231002,4380_1362 -4380_78070,294,4380_90067,Westport,109466-00018-1,0,4380_7778208_4231002,4380_1362 -4380_78070,293,4380_90068,Westport,109461-00017-1,0,4380_7778208_4231002,4380_1362 -4380_78070,296,4380_90069,Westport,109455-00021-1,0,4380_7778208_4231002,4380_1362 -4380_78070,295,4380_90070,Westport,109464-00019-1,0,4380_7778208_4231002,4380_1362 -4380_78070,297,4380_90077,Clifden,109397-00008-1,1,4380_7778208_4231002,4380_1363 -4380_78070,285,4380_90078,Clifden,109398-00009-1,1,4380_7778208_4231002,4380_1363 -4380_78070,288,4380_90080,Clifden,109391-00011-1,1,4380_7778208_4231002,4380_1363 -4380_78070,286,4380_90081,Clifden,109395-00010-1,1,4380_7778208_4231002,4380_1363 -4380_78070,291,4380_90082,Clifden,109389-00013-1,1,4380_7778208_4231002,4380_1363 -4380_78070,289,4380_90083,Clifden,109400-00014-1,1,4380_7778208_4231002,4380_1363 -4380_78070,287,4380_90084,Clifden,109393-00012-1,1,4380_7778208_4231002,4380_1363 -4380_78070,292,4380_90085,Clifden,109396-00016-1,1,4380_7778208_4231002,4380_1363 -4380_78070,290,4380_90086,Clifden,109399-00015-1,1,4380_7778208_4231002,4380_1363 -4380_78070,294,4380_90087,Clifden,109394-00018-1,1,4380_7778208_4231002,4380_1363 -4380_78070,293,4380_90088,Clifden,109392-00017-1,1,4380_7778208_4231002,4380_1363 -4380_78070,296,4380_90089,Clifden,109390-00021-1,1,4380_7778208_4231002,4380_1363 -4380_78070,295,4380_90090,Clifden,109401-00019-1,1,4380_7778208_4231002,4380_1363 -4380_78070,297,4380_90097,Clifden,109336-00008-1,1,4380_7778208_4230301,4380_1363 -4380_78070,285,4380_90098,Clifden,109334-00009-1,1,4380_7778208_4230301,4380_1363 -4380_78070,288,4380_90100,Clifden,109328-00011-1,1,4380_7778208_4230301,4380_1363 -4380_78070,286,4380_90101,Clifden,109326-00010-1,1,4380_7778208_4230301,4380_1363 -4380_78070,291,4380_90102,Clifden,109324-00013-1,1,4380_7778208_4230301,4380_1363 -4380_78070,289,4380_90103,Clifden,109330-00014-1,1,4380_7778208_4230301,4380_1363 -4380_78070,287,4380_90104,Clifden,109332-00012-1,1,4380_7778208_4230301,4380_1363 -4380_78070,292,4380_90105,Clifden,109327-00016-1,1,4380_7778208_4230301,4380_1363 -4380_78070,290,4380_90106,Clifden,109335-00015-1,1,4380_7778208_4230301,4380_1363 -4380_78070,294,4380_90107,Clifden,109333-00018-1,1,4380_7778208_4230301,4380_1363 -4380_78070,293,4380_90108,Clifden,109329-00017-1,1,4380_7778208_4230301,4380_1363 -4380_78070,296,4380_90109,Clifden,109325-00021-1,1,4380_7778208_4230301,4380_1363 -4380_78145,285,4380_9011,Dublin,8833-00009-1,1,4380_7778208_1110121,4380_154 -4380_78070,295,4380_90110,Clifden,109331-00019-1,1,4380_7778208_4230301,4380_1363 -4380_78070,297,4380_90117,Clifden,109425-00008-1,1,4380_7778208_4231002,4380_1363 -4380_78070,285,4380_90118,Clifden,109419-00009-1,1,4380_7778208_4231002,4380_1363 -4380_78145,286,4380_9012,Dublin,8838-00010-1,1,4380_7778208_1110121,4380_154 -4380_78070,288,4380_90120,Clifden,109423-00011-1,1,4380_7778208_4231002,4380_1363 -4380_78070,286,4380_90121,Clifden,109421-00010-1,1,4380_7778208_4231002,4380_1363 -4380_78070,291,4380_90122,Clifden,109415-00013-1,1,4380_7778208_4231002,4380_1363 -4380_78070,289,4380_90123,Clifden,109417-00014-1,1,4380_7778208_4231002,4380_1363 -4380_78070,287,4380_90124,Clifden,109426-00012-1,1,4380_7778208_4231002,4380_1363 -4380_78070,292,4380_90125,Clifden,109422-00016-1,1,4380_7778208_4231002,4380_1363 -4380_78070,290,4380_90126,Clifden,109420-00015-1,1,4380_7778208_4231002,4380_1363 -4380_78070,294,4380_90127,Clifden,109427-00018-1,1,4380_7778208_4231002,4380_1363 -4380_78070,293,4380_90128,Clifden,109424-00017-1,1,4380_7778208_4231002,4380_1363 -4380_78070,296,4380_90129,Clifden,109416-00021-1,1,4380_7778208_4231002,4380_1363 -4380_78145,297,4380_9013,Dublin,7830-00008-1,1,4380_7778208_1110108,4380_155 -4380_78070,295,4380_90130,Clifden,109418-00019-1,1,4380_7778208_4231002,4380_1363 -4380_78070,297,4380_90137,Clifden,109352-00008-1,1,4380_7778208_4230301,4380_1363 -4380_78070,285,4380_90138,Clifden,109359-00009-1,1,4380_7778208_4230301,4380_1363 -4380_78145,288,4380_9014,Dublin,8843-00011-1,1,4380_7778208_1110121,4380_154 -4380_78070,288,4380_90140,Clifden,109350-00011-1,1,4380_7778208_4230301,4380_1363 -4380_78070,286,4380_90141,Clifden,109357-00010-1,1,4380_7778208_4230301,4380_1363 -4380_78070,291,4380_90142,Clifden,109355-00013-1,1,4380_7778208_4230301,4380_1363 -4380_78070,289,4380_90143,Clifden,109361-00014-1,1,4380_7778208_4230301,4380_1363 -4380_78070,287,4380_90144,Clifden,109353-00012-1,1,4380_7778208_4230301,4380_1363 -4380_78070,292,4380_90145,Clifden,109358-00016-1,1,4380_7778208_4230301,4380_1363 -4380_78070,290,4380_90146,Clifden,109360-00015-1,1,4380_7778208_4230301,4380_1363 -4380_78070,294,4380_90147,Clifden,109354-00018-1,1,4380_7778208_4230301,4380_1363 -4380_78070,293,4380_90148,Clifden,109351-00017-1,1,4380_7778208_4230301,4380_1363 -4380_78070,296,4380_90149,Clifden,109356-00021-1,1,4380_7778208_4230301,4380_1363 -4380_78145,287,4380_9015,Dublin,8848-00012-1,1,4380_7778208_1110121,4380_154 -4380_78070,295,4380_90150,Clifden,109362-00019-1,1,4380_7778208_4230301,4380_1363 -4380_78070,297,4380_90157,Clifden,109443-00008-1,1,4380_7778208_4231002,4380_1363 -4380_78070,285,4380_90158,Clifden,109452-00009-1,1,4380_7778208_4231002,4380_1363 -4380_78145,289,4380_9016,Dublin,8828-00014-1,1,4380_7778208_1110121,4380_154 -4380_78070,288,4380_90160,Clifden,109444-00011-1,1,4380_7778208_4231002,4380_1363 -4380_78070,286,4380_90161,Clifden,109441-00010-1,1,4380_7778208_4231002,4380_1363 -4380_78070,291,4380_90162,Clifden,109450-00013-1,1,4380_7778208_4231002,4380_1363 -4380_78070,289,4380_90163,Clifden,109448-00014-1,1,4380_7778208_4231002,4380_1363 -4380_78070,287,4380_90164,Clifden,109446-00012-1,1,4380_7778208_4231002,4380_1363 -4380_78070,292,4380_90165,Clifden,109442-00016-1,1,4380_7778208_4231002,4380_1363 -4380_78070,290,4380_90166,Clifden,109453-00015-1,1,4380_7778208_4231002,4380_1363 -4380_78070,294,4380_90167,Clifden,109447-00018-1,1,4380_7778208_4231002,4380_1363 -4380_78070,293,4380_90168,Clifden,109445-00017-1,1,4380_7778208_4231002,4380_1363 -4380_78070,296,4380_90169,Clifden,109451-00021-1,1,4380_7778208_4231002,4380_1363 -4380_78145,290,4380_9017,Dublin,57477-00015-1,1,4380_7778208_1110121,4380_154 -4380_78070,295,4380_90170,Clifden,109449-00019-1,1,4380_7778208_4231002,4380_1363 -4380_78070,297,4380_90177,Clifden,109386-00008-1,1,4380_7778208_4230301,4380_1363 -4380_78070,285,4380_90178,Clifden,109376-00009-1,1,4380_7778208_4230301,4380_1363 -4380_78145,291,4380_9018,Dublin,7772-00013-1,1,4380_7778208_1110107,4380_156 -4380_78070,288,4380_90180,Clifden,109387-00011-1,1,4380_7778208_4230301,4380_1363 -4380_78070,286,4380_90181,Clifden,109382-00010-1,1,4380_7778208_4230301,4380_1363 -4380_78070,291,4380_90182,Clifden,109384-00013-1,1,4380_7778208_4230301,4380_1363 -4380_78070,289,4380_90183,Clifden,109380-00014-1,1,4380_7778208_4230301,4380_1363 -4380_78070,287,4380_90184,Clifden,109378-00012-1,1,4380_7778208_4230301,4380_1363 -4380_78070,292,4380_90185,Clifden,109383-00016-1,1,4380_7778208_4230301,4380_1363 -4380_78070,290,4380_90186,Clifden,109377-00015-1,1,4380_7778208_4230301,4380_1363 -4380_78070,294,4380_90187,Clifden,109379-00018-1,1,4380_7778208_4230301,4380_1363 -4380_78070,293,4380_90188,Clifden,109388-00017-1,1,4380_7778208_4230301,4380_1363 -4380_78070,296,4380_90189,Clifden,109385-00021-1,1,4380_7778208_4230301,4380_1363 -4380_78145,292,4380_9019,Dublin,57479-00016-1,1,4380_7778208_1110121,4380_154 -4380_78070,295,4380_90190,Clifden,109381-00019-1,1,4380_7778208_4230301,4380_1363 -4380_78071,285,4380_90196,Lettermullen,109469-00009-1,0,4380_7778208_4240301,4380_1365 -4380_78071,288,4380_90198,Lettermullen,109475-00011-1,0,4380_7778208_4240301,4380_1365 -4380_78071,286,4380_90199,Lettermullen,109471-00010-1,0,4380_7778208_4240301,4380_1365 -4380_78113,285,4380_902,Dundalk,50033-00009-1,0,4380_7778208_1000906,4380_11 -4380_78145,293,4380_9020,Dublin,57478-00017-1,1,4380_7778208_1110121,4380_154 -4380_78071,291,4380_90200,Lettermullen,109473-00013-1,0,4380_7778208_4240301,4380_1365 -4380_78071,289,4380_90201,Lettermullen,109477-00014-1,0,4380_7778208_4240301,4380_1365 -4380_78071,287,4380_90202,Lettermullen,109467-00012-1,0,4380_7778208_4240301,4380_1365 -4380_78071,292,4380_90203,Lettermullen,109472-00016-1,0,4380_7778208_4240301,4380_1365 -4380_78071,290,4380_90204,Lettermullen,109470-00015-1,0,4380_7778208_4240301,4380_1365 -4380_78071,294,4380_90205,Lettermullen,109468-00018-1,0,4380_7778208_4240301,4380_1365 -4380_78071,293,4380_90206,Lettermullen,109476-00017-1,0,4380_7778208_4240301,4380_1365 -4380_78071,296,4380_90207,Lettermullen,109474-00021-1,0,4380_7778208_4240301,4380_1365 -4380_78071,295,4380_90208,Lettermullen,109478-00019-1,0,4380_7778208_4240301,4380_1365 -4380_78145,294,4380_9021,Dublin,57476-00018-1,1,4380_7778208_1110121,4380_154 -4380_78071,297,4380_90210,Carraroe,109683-00008-1,0,4380_7778208_4240303,4380_1364 -4380_78071,285,4380_90216,Carraroe,109815-00009-1,0,4380_7778208_4240305,4380_1364 -4380_78071,288,4380_90218,Carraroe,109817-00011-1,0,4380_7778208_4240305,4380_1364 -4380_78071,286,4380_90219,Carraroe,109813-00010-1,0,4380_7778208_4240305,4380_1364 -4380_78145,295,4380_9022,Dublin,57480-00019-1,1,4380_7778208_1110121,4380_154 -4380_78071,291,4380_90220,Carraroe,109821-00013-1,0,4380_7778208_4240305,4380_1364 -4380_78071,289,4380_90221,Carraroe,109811-00014-1,0,4380_7778208_4240305,4380_1364 -4380_78071,287,4380_90222,Carraroe,109819-00012-1,0,4380_7778208_4240305,4380_1364 -4380_78071,292,4380_90223,Carraroe,109814-00016-1,0,4380_7778208_4240305,4380_1364 -4380_78071,290,4380_90224,Carraroe,109816-00015-1,0,4380_7778208_4240305,4380_1364 -4380_78071,294,4380_90225,Carraroe,109820-00018-1,0,4380_7778208_4240305,4380_1364 -4380_78071,293,4380_90226,Carraroe,109818-00017-1,0,4380_7778208_4240305,4380_1364 -4380_78071,296,4380_90227,Carraroe,109822-00021-1,0,4380_7778208_4240305,4380_1364 -4380_78071,295,4380_90228,Carraroe,109812-00019-1,0,4380_7778208_4240305,4380_1364 -4380_78145,296,4380_9023,Dublin,55718-00021-1,1,4380_7778208_1110107,4380_156 -4380_78071,297,4380_90230,Lettermullen,109569-00008-1,0,4380_7778208_4240302,4380_1365 -4380_78071,285,4380_90236,Carraroe,109915-00009-1,0,4380_7778208_4240306,4380_1364 -4380_78071,288,4380_90238,Carraroe,109913-00011-1,0,4380_7778208_4240306,4380_1364 -4380_78071,286,4380_90239,Carraroe,109919-00010-1,0,4380_7778208_4240306,4380_1364 -4380_78071,291,4380_90240,Carraroe,109570-00013-1,0,4380_7778208_4240302,4380_1364 -4380_78071,289,4380_90241,Carraroe,109911-00014-1,0,4380_7778208_4240306,4380_1364 -4380_78071,287,4380_90242,Carraroe,109917-00012-1,0,4380_7778208_4240306,4380_1364 -4380_78071,292,4380_90243,Carraroe,109920-00016-1,0,4380_7778208_4240306,4380_1364 -4380_78071,290,4380_90244,Carraroe,109916-00015-1,0,4380_7778208_4240306,4380_1364 -4380_78071,294,4380_90245,Carraroe,109918-00018-1,0,4380_7778208_4240306,4380_1364 -4380_78071,293,4380_90246,Carraroe,109914-00017-1,0,4380_7778208_4240306,4380_1364 -4380_78071,296,4380_90247,Carraroe,109571-00021-1,0,4380_7778208_4240302,4380_1364 -4380_78071,295,4380_90248,Carraroe,109912-00019-1,0,4380_7778208_4240306,4380_1364 -4380_78071,297,4380_90250,Carraroe,109492-00008-1,0,4380_7778208_4240301,4380_1364 -4380_78071,285,4380_90256,Carraroe,109722-00009-1,0,4380_7778208_4240304,4380_1364 -4380_78071,288,4380_90258,Carraroe,109720-00011-1,0,4380_7778208_4240304,4380_1364 -4380_78071,286,4380_90259,Carraroe,109726-00010-1,0,4380_7778208_4240304,4380_1364 -4380_78071,291,4380_90260,Carraroe,109728-00013-1,0,4380_7778208_4240304,4380_1364 -4380_78071,289,4380_90261,Carraroe,109724-00014-1,0,4380_7778208_4240304,4380_1364 -4380_78071,287,4380_90262,Carraroe,109730-00012-1,0,4380_7778208_4240304,4380_1364 -4380_78071,292,4380_90263,Carraroe,109727-00016-1,0,4380_7778208_4240304,4380_1364 -4380_78071,290,4380_90264,Carraroe,109723-00015-1,0,4380_7778208_4240304,4380_1364 -4380_78071,294,4380_90265,Carraroe,109731-00018-1,0,4380_7778208_4240304,4380_1364 -4380_78071,293,4380_90266,Carraroe,109721-00017-1,0,4380_7778208_4240304,4380_1364 -4380_78071,296,4380_90267,Carraroe,109729-00021-1,0,4380_7778208_4240304,4380_1364 -4380_78071,295,4380_90268,Carraroe,109725-00019-1,0,4380_7778208_4240304,4380_1364 -4380_78071,285,4380_90274,Carraroe,109576-00009-1,0,4380_7778208_4240302,4380_1364 -4380_78071,288,4380_90276,Carraroe,109572-00011-1,0,4380_7778208_4240302,4380_1364 -4380_78071,286,4380_90277,Carraroe,109574-00010-1,0,4380_7778208_4240302,4380_1364 -4380_78071,291,4380_90278,Carraroe,109685-00013-1,0,4380_7778208_4240303,4380_1364 -4380_78071,289,4380_90279,Carraroe,109578-00014-1,0,4380_7778208_4240302,4380_1364 -4380_78071,287,4380_90280,Carraroe,109580-00012-1,0,4380_7778208_4240302,4380_1364 -4380_78071,292,4380_90281,Carraroe,109575-00016-1,0,4380_7778208_4240302,4380_1364 -4380_78071,290,4380_90282,Carraroe,109577-00015-1,0,4380_7778208_4240302,4380_1364 -4380_78071,294,4380_90283,Carraroe,109581-00018-1,0,4380_7778208_4240302,4380_1364 -4380_78071,293,4380_90284,Carraroe,109573-00017-1,0,4380_7778208_4240302,4380_1364 -4380_78071,296,4380_90285,Carraroe,109686-00021-1,0,4380_7778208_4240303,4380_1364 -4380_78071,295,4380_90286,Carraroe,109579-00019-1,0,4380_7778208_4240302,4380_1364 -4380_78071,297,4380_90288,Carraroe,109835-00008-1,0,4380_7778208_4240305,4380_1364 -4380_78071,297,4380_90295,Lettermullen,109687-00008-1,0,4380_7778208_4240303,4380_1365 -4380_78071,285,4380_90296,Carraroe,109493-00009-1,0,4380_7778208_4240301,4380_1364 -4380_78071,288,4380_90298,Carraroe,109497-00011-1,0,4380_7778208_4240301,4380_1364 -4380_78071,286,4380_90299,Carraroe,109495-00010-1,0,4380_7778208_4240301,4380_1364 -4380_78113,286,4380_903,Dundalk,50031-00010-1,0,4380_7778208_1000906,4380_11 -4380_78071,291,4380_90300,Carraroe,109501-00013-1,0,4380_7778208_4240301,4380_1364 -4380_78071,289,4380_90301,Carraroe,109503-00014-1,0,4380_7778208_4240301,4380_1364 -4380_78071,287,4380_90302,Carraroe,109499-00012-1,0,4380_7778208_4240301,4380_1364 -4380_78071,292,4380_90303,Carraroe,109496-00016-1,0,4380_7778208_4240301,4380_1364 -4380_78071,290,4380_90304,Carraroe,109494-00015-1,0,4380_7778208_4240301,4380_1364 -4380_78071,294,4380_90305,Carraroe,109500-00018-1,0,4380_7778208_4240301,4380_1364 -4380_78071,293,4380_90306,Carraroe,109498-00017-1,0,4380_7778208_4240301,4380_1364 -4380_78071,296,4380_90307,Carraroe,109502-00021-1,0,4380_7778208_4240301,4380_1364 -4380_78071,295,4380_90308,Carraroe,109504-00019-1,0,4380_7778208_4240301,4380_1364 -4380_78145,285,4380_9031,Dublin,8809-00009-1,1,4380_7778208_1110120,4380_154 -4380_78071,297,4380_90310,Carraroe,109732-00008-1,0,4380_7778208_4240304,4380_1364 -4380_78071,285,4380_90316,Carraroe,109842-00009-1,0,4380_7778208_4240305,4380_1364 -4380_78071,288,4380_90318,Carraroe,109846-00011-1,0,4380_7778208_4240305,4380_1364 -4380_78071,286,4380_90319,Carraroe,109844-00010-1,0,4380_7778208_4240305,4380_1364 -4380_78145,286,4380_9032,Dublin,8814-00010-1,1,4380_7778208_1110120,4380_154 -4380_78071,291,4380_90320,Carraroe,109836-00013-1,0,4380_7778208_4240305,4380_1364 -4380_78071,289,4380_90321,Carraroe,109838-00014-1,0,4380_7778208_4240305,4380_1364 -4380_78071,287,4380_90322,Carraroe,109840-00012-1,0,4380_7778208_4240305,4380_1364 -4380_78071,292,4380_90323,Carraroe,109845-00016-1,0,4380_7778208_4240305,4380_1364 -4380_78071,290,4380_90324,Carraroe,109843-00015-1,0,4380_7778208_4240305,4380_1364 -4380_78071,294,4380_90325,Carraroe,109841-00018-1,0,4380_7778208_4240305,4380_1364 -4380_78071,293,4380_90326,Carraroe,109847-00017-1,0,4380_7778208_4240305,4380_1364 -4380_78071,296,4380_90327,Carraroe,109837-00021-1,0,4380_7778208_4240305,4380_1364 -4380_78071,295,4380_90328,Carraroe,109839-00019-1,0,4380_7778208_4240305,4380_1364 -4380_78145,297,4380_9033,Dublin,7785-00008-1,1,4380_7778208_1110107,4380_155 -4380_78071,285,4380_90334,Lettermullen,110121-00009-1,0,4380_7778208_4340301,4380_1365 -4380_78071,288,4380_90336,Lettermullen,110113-00011-1,0,4380_7778208_4340301,4380_1365 -4380_78071,286,4380_90337,Lettermullen,110119-00010-1,0,4380_7778208_4340301,4380_1365 -4380_78071,291,4380_90338,Lettermullen,98956-00013-1,0,4380_7778208_3500302,4380_1365 -4380_78071,289,4380_90339,Lettermullen,110115-00014-1,0,4380_7778208_4340301,4380_1365 -4380_78145,288,4380_9034,Dublin,8819-00011-1,1,4380_7778208_1110120,4380_154 -4380_78071,287,4380_90340,Lettermullen,110117-00012-1,0,4380_7778208_4340301,4380_1365 -4380_78071,292,4380_90341,Lettermullen,110120-00016-1,0,4380_7778208_4340301,4380_1365 -4380_78071,290,4380_90342,Lettermullen,110122-00015-1,0,4380_7778208_4340301,4380_1365 -4380_78071,294,4380_90343,Lettermullen,110118-00018-1,0,4380_7778208_4340301,4380_1365 -4380_78071,293,4380_90344,Lettermullen,110114-00017-1,0,4380_7778208_4340301,4380_1365 -4380_78071,296,4380_90345,Lettermullen,98957-00021-1,0,4380_7778208_3500302,4380_1365 -4380_78071,295,4380_90346,Lettermullen,110116-00019-1,0,4380_7778208_4340301,4380_1365 -4380_78071,297,4380_90348,Carraroe,109595-00008-1,0,4380_7778208_4240302,4380_1364 -4380_78145,287,4380_9035,Dublin,8824-00012-1,1,4380_7778208_1110120,4380_154 -4380_78071,297,4380_90355,Carraroe,109853-00008-1,0,4380_7778208_4240305,4380_1364 -4380_78071,285,4380_90356,Carraroe,109600-00009-1,0,4380_7778208_4240302,4380_1366 -4380_78071,288,4380_90358,Carraroe,109596-00011-1,0,4380_7778208_4240302,4380_1366 -4380_78071,286,4380_90359,Carraroe,109598-00010-1,0,4380_7778208_4240302,4380_1366 -4380_78145,289,4380_9036,Dublin,8804-00014-1,1,4380_7778208_1110120,4380_154 -4380_78071,291,4380_90360,Carraroe,109604-00013-1,0,4380_7778208_4240302,4380_1366 -4380_78071,289,4380_90361,Carraroe,109606-00014-1,0,4380_7778208_4240302,4380_1366 -4380_78071,287,4380_90362,Carraroe,109602-00012-1,0,4380_7778208_4240302,4380_1366 -4380_78071,292,4380_90363,Carraroe,109599-00016-1,0,4380_7778208_4240302,4380_1366 -4380_78071,290,4380_90364,Carraroe,109601-00015-1,0,4380_7778208_4240302,4380_1366 -4380_78071,294,4380_90365,Carraroe,109603-00018-1,0,4380_7778208_4240302,4380_1366 -4380_78071,293,4380_90366,Carraroe,109597-00017-1,0,4380_7778208_4240302,4380_1366 -4380_78071,296,4380_90367,Carraroe,109605-00021-1,0,4380_7778208_4240302,4380_1366 -4380_78071,295,4380_90368,Carraroe,109607-00019-1,0,4380_7778208_4240302,4380_1366 -4380_78145,290,4380_9037,Dublin,57457-00015-1,1,4380_7778208_1110120,4380_154 -4380_78071,297,4380_90370,Carraroe,109746-00008-1,0,4380_7778208_4240304,4380_1364 -4380_78071,285,4380_90376,Carraroe,109753-00009-1,0,4380_7778208_4240304,4380_1364 -4380_78071,288,4380_90378,Carraroe,109747-00011-1,0,4380_7778208_4240304,4380_1364 -4380_78071,286,4380_90379,Carraroe,109755-00010-1,0,4380_7778208_4240304,4380_1364 -4380_78145,291,4380_9038,Dublin,7719-00013-1,1,4380_7778208_1110106,4380_156 -4380_78071,291,4380_90380,Carraroe,109751-00013-1,0,4380_7778208_4240304,4380_1364 -4380_78071,289,4380_90381,Carraroe,109757-00014-1,0,4380_7778208_4240304,4380_1364 -4380_78071,287,4380_90382,Carraroe,109749-00012-1,0,4380_7778208_4240304,4380_1364 -4380_78071,292,4380_90383,Carraroe,109756-00016-1,0,4380_7778208_4240304,4380_1364 -4380_78071,290,4380_90384,Carraroe,109754-00015-1,0,4380_7778208_4240304,4380_1364 -4380_78071,294,4380_90385,Carraroe,109750-00018-1,0,4380_7778208_4240304,4380_1364 -4380_78071,293,4380_90386,Carraroe,109748-00017-1,0,4380_7778208_4240304,4380_1364 -4380_78071,296,4380_90387,Carraroe,109752-00021-1,0,4380_7778208_4240304,4380_1364 -4380_78071,295,4380_90388,Carraroe,109758-00019-1,0,4380_7778208_4240304,4380_1364 -4380_78145,292,4380_9039,Dublin,57458-00016-1,1,4380_7778208_1110120,4380_154 -4380_78071,297,4380_90395,Carraroe,109691-00008-1,0,4380_7778208_4240303,4380_1364 -4380_78071,285,4380_90396,Carraroe,109522-00009-1,0,4380_7778208_4240301,4380_1364 -4380_78071,288,4380_90398,Carraroe,109520-00011-1,0,4380_7778208_4240301,4380_1364 -4380_78071,286,4380_90399,Carraroe,109524-00010-1,0,4380_7778208_4240301,4380_1364 -4380_78113,297,4380_904,Dundalk,49938-00008-1,0,4380_7778208_1000905,4380_14 -4380_78145,293,4380_9040,Dublin,57456-00017-1,1,4380_7778208_1110120,4380_154 -4380_78071,291,4380_90400,Carraroe,109518-00013-1,0,4380_7778208_4240301,4380_1364 -4380_78071,289,4380_90401,Carraroe,109526-00014-1,0,4380_7778208_4240301,4380_1364 -4380_78071,287,4380_90402,Carraroe,109528-00012-1,0,4380_7778208_4240301,4380_1364 -4380_78071,292,4380_90403,Carraroe,109525-00016-1,0,4380_7778208_4240301,4380_1364 -4380_78071,290,4380_90404,Carraroe,109523-00015-1,0,4380_7778208_4240301,4380_1364 -4380_78071,294,4380_90405,Carraroe,109529-00018-1,0,4380_7778208_4240301,4380_1364 -4380_78071,293,4380_90406,Carraroe,109521-00017-1,0,4380_7778208_4240301,4380_1364 -4380_78071,296,4380_90407,Carraroe,109519-00021-1,0,4380_7778208_4240301,4380_1364 -4380_78071,295,4380_90408,Carraroe,109527-00019-1,0,4380_7778208_4240301,4380_1364 -4380_78145,294,4380_9041,Dublin,57460-00018-1,1,4380_7778208_1110120,4380_154 -4380_78071,297,4380_90415,Lettermullen,109530-00008-1,0,4380_7778208_4240301,4380_1365 -4380_78071,285,4380_90416,Carraroe,109867-00009-1,0,4380_7778208_4240305,4380_1364 -4380_78071,288,4380_90418,Carraroe,109863-00011-1,0,4380_7778208_4240305,4380_1364 -4380_78071,286,4380_90419,Carraroe,109873-00010-1,0,4380_7778208_4240305,4380_1364 -4380_78145,295,4380_9042,Dublin,57459-00019-1,1,4380_7778208_1110120,4380_154 -4380_78071,291,4380_90420,Carraroe,109869-00013-1,0,4380_7778208_4240305,4380_1364 -4380_78071,289,4380_90421,Carraroe,109865-00014-1,0,4380_7778208_4240305,4380_1364 -4380_78071,287,4380_90422,Carraroe,109871-00012-1,0,4380_7778208_4240305,4380_1364 -4380_78071,292,4380_90423,Carraroe,109874-00016-1,0,4380_7778208_4240305,4380_1364 -4380_78071,290,4380_90424,Carraroe,109868-00015-1,0,4380_7778208_4240305,4380_1364 -4380_78071,294,4380_90425,Carraroe,109872-00018-1,0,4380_7778208_4240305,4380_1364 -4380_78071,293,4380_90426,Carraroe,109864-00017-1,0,4380_7778208_4240305,4380_1364 -4380_78071,296,4380_90427,Carraroe,109870-00021-1,0,4380_7778208_4240305,4380_1364 -4380_78071,295,4380_90428,Carraroe,109866-00019-1,0,4380_7778208_4240305,4380_1364 -4380_78145,296,4380_9043,Dublin,55688-00021-1,1,4380_7778208_1110106,4380_156 -4380_78071,285,4380_90434,Lettermullen,109937-00009-1,0,4380_7778208_4240306,4380_1365 -4380_78071,288,4380_90436,Lettermullen,109939-00011-1,0,4380_7778208_4240306,4380_1365 -4380_78071,286,4380_90437,Lettermullen,109931-00010-1,0,4380_7778208_4240306,4380_1365 -4380_78071,291,4380_90438,Lettermullen,109933-00013-1,0,4380_7778208_4240306,4380_1365 -4380_78071,289,4380_90439,Lettermullen,109941-00014-1,0,4380_7778208_4240306,4380_1365 -4380_78071,287,4380_90440,Lettermullen,109935-00012-1,0,4380_7778208_4240306,4380_1365 -4380_78071,292,4380_90441,Lettermullen,109932-00016-1,0,4380_7778208_4240306,4380_1365 -4380_78071,290,4380_90442,Lettermullen,109938-00015-1,0,4380_7778208_4240306,4380_1365 -4380_78071,294,4380_90443,Lettermullen,109936-00018-1,0,4380_7778208_4240306,4380_1365 -4380_78071,293,4380_90444,Lettermullen,109940-00017-1,0,4380_7778208_4240306,4380_1365 -4380_78071,296,4380_90445,Lettermullen,109934-00021-1,0,4380_7778208_4240306,4380_1365 -4380_78071,295,4380_90446,Lettermullen,109942-00019-1,0,4380_7778208_4240306,4380_1365 -4380_78071,297,4380_90453,Carraroe,109621-00008-1,0,4380_7778208_4240302,4380_1364 -4380_78071,285,4380_90454,Carna,109696-00009-1,0,4380_7778208_4240303,4380_1367 -4380_78071,288,4380_90456,Carna,109698-00011-1,0,4380_7778208_4240303,4380_1367 -4380_78071,286,4380_90457,Carna,109700-00010-1,0,4380_7778208_4240303,4380_1367 -4380_78071,291,4380_90458,Carna,109702-00013-1,0,4380_7778208_4240303,4380_1367 -4380_78071,289,4380_90459,Carna,109692-00014-1,0,4380_7778208_4240303,4380_1367 -4380_78071,287,4380_90460,Carna,109694-00012-1,0,4380_7778208_4240303,4380_1367 -4380_78071,292,4380_90461,Carna,109701-00016-1,0,4380_7778208_4240303,4380_1367 -4380_78071,290,4380_90462,Carna,109697-00015-1,0,4380_7778208_4240303,4380_1367 -4380_78071,294,4380_90463,Carna,109695-00018-1,0,4380_7778208_4240303,4380_1367 -4380_78071,293,4380_90464,Carna,109699-00017-1,0,4380_7778208_4240303,4380_1367 -4380_78071,296,4380_90465,Carna,109703-00021-1,0,4380_7778208_4240303,4380_1367 -4380_78071,295,4380_90466,Carna,109693-00019-1,0,4380_7778208_4240303,4380_1367 -4380_78071,285,4380_90472,Carraroe,109622-00009-1,0,4380_7778208_4240302,4380_1364 -4380_78071,288,4380_90474,Carraroe,109624-00011-1,0,4380_7778208_4240302,4380_1364 -4380_78071,286,4380_90475,Carraroe,109630-00010-1,0,4380_7778208_4240302,4380_1364 -4380_78071,291,4380_90476,Carraroe,109628-00013-1,0,4380_7778208_4240302,4380_1364 -4380_78071,289,4380_90477,Carraroe,109626-00014-1,0,4380_7778208_4240302,4380_1364 -4380_78071,287,4380_90478,Carraroe,109632-00012-1,0,4380_7778208_4240302,4380_1364 -4380_78071,292,4380_90479,Carraroe,109631-00016-1,0,4380_7778208_4240302,4380_1364 -4380_78071,290,4380_90480,Carraroe,109623-00015-1,0,4380_7778208_4240302,4380_1364 -4380_78071,294,4380_90481,Carraroe,109633-00018-1,0,4380_7778208_4240302,4380_1364 -4380_78071,293,4380_90482,Carraroe,109625-00017-1,0,4380_7778208_4240302,4380_1364 -4380_78071,296,4380_90483,Carraroe,109629-00021-1,0,4380_7778208_4240302,4380_1364 -4380_78071,295,4380_90484,Carraroe,109627-00019-1,0,4380_7778208_4240302,4380_1364 -4380_78071,297,4380_90486,Carraroe,109772-00008-1,0,4380_7778208_4240304,4380_1364 -4380_78071,285,4380_90492,Carraroe,109775-00009-1,0,4380_7778208_4240304,4380_1364 -4380_78071,288,4380_90494,Carraroe,109779-00011-1,0,4380_7778208_4240304,4380_1364 -4380_78071,286,4380_90495,Carraroe,109781-00010-1,0,4380_7778208_4240304,4380_1364 -4380_78071,291,4380_90496,Carraroe,109777-00013-1,0,4380_7778208_4240304,4380_1364 -4380_78071,289,4380_90497,Carraroe,109783-00014-1,0,4380_7778208_4240304,4380_1364 -4380_78071,287,4380_90498,Carraroe,109773-00012-1,0,4380_7778208_4240304,4380_1364 -4380_78071,292,4380_90499,Carraroe,109782-00016-1,0,4380_7778208_4240304,4380_1364 -4380_78113,287,4380_905,Dundalk,50029-00012-1,0,4380_7778208_1000906,4380_11 -4380_78145,285,4380_9050,Dublin,8858-00009-1,1,4380_7778208_1110122,4380_154 -4380_78071,290,4380_90500,Carraroe,109776-00015-1,0,4380_7778208_4240304,4380_1364 -4380_78071,294,4380_90501,Carraroe,109774-00018-1,0,4380_7778208_4240304,4380_1364 -4380_78071,293,4380_90502,Carraroe,109780-00017-1,0,4380_7778208_4240304,4380_1364 -4380_78071,296,4380_90503,Carraroe,109778-00021-1,0,4380_7778208_4240304,4380_1364 -4380_78071,295,4380_90504,Carraroe,109784-00019-1,0,4380_7778208_4240304,4380_1364 -4380_78145,286,4380_9051,Dublin,8862-00010-1,1,4380_7778208_1110122,4380_154 -4380_78071,285,4380_90510,Carraroe,109887-00009-1,0,4380_7778208_4240305,4380_1364 -4380_78071,288,4380_90512,Carraroe,109897-00011-1,0,4380_7778208_4240305,4380_1364 -4380_78071,286,4380_90513,Carraroe,109895-00010-1,0,4380_7778208_4240305,4380_1364 -4380_78071,291,4380_90514,Carraroe,109893-00013-1,0,4380_7778208_4240305,4380_1364 -4380_78071,289,4380_90515,Carraroe,109889-00014-1,0,4380_7778208_4240305,4380_1364 -4380_78071,287,4380_90516,Carraroe,109891-00012-1,0,4380_7778208_4240305,4380_1364 -4380_78071,292,4380_90517,Carraroe,109896-00016-1,0,4380_7778208_4240305,4380_1364 -4380_78071,290,4380_90518,Carraroe,109888-00015-1,0,4380_7778208_4240305,4380_1364 -4380_78071,294,4380_90519,Carraroe,109892-00018-1,0,4380_7778208_4240305,4380_1364 -4380_78145,297,4380_9052,Dublin,7871-00008-1,1,4380_7778208_1110109,4380_155 -4380_78071,293,4380_90520,Carraroe,109898-00017-1,0,4380_7778208_4240305,4380_1364 -4380_78071,296,4380_90521,Carraroe,109894-00021-1,0,4380_7778208_4240305,4380_1364 -4380_78071,295,4380_90522,Carraroe,109890-00019-1,0,4380_7778208_4240305,4380_1364 -4380_78071,297,4380_90524,Carraroe,109705-00008-1,0,4380_7778208_4240303,4380_1364 -4380_78145,288,4380_9053,Dublin,8866-00011-1,1,4380_7778208_1110122,4380_154 -4380_78071,285,4380_90530,Lettermullen,109548-00009-1,0,4380_7778208_4240301,4380_1365 -4380_78071,288,4380_90532,Lettermullen,109544-00011-1,0,4380_7778208_4240301,4380_1365 -4380_78071,286,4380_90533,Lettermullen,109546-00010-1,0,4380_7778208_4240301,4380_1365 -4380_78071,291,4380_90534,Lettermullen,109552-00013-1,0,4380_7778208_4240301,4380_1365 -4380_78071,289,4380_90535,Lettermullen,109550-00014-1,0,4380_7778208_4240301,4380_1365 -4380_78071,287,4380_90536,Lettermullen,109554-00012-1,0,4380_7778208_4240301,4380_1365 -4380_78071,292,4380_90537,Lettermullen,109547-00016-1,0,4380_7778208_4240301,4380_1365 -4380_78071,290,4380_90538,Lettermullen,109549-00015-1,0,4380_7778208_4240301,4380_1365 -4380_78071,294,4380_90539,Lettermullen,109555-00018-1,0,4380_7778208_4240301,4380_1365 -4380_78145,287,4380_9054,Dublin,8870-00012-1,1,4380_7778208_1110122,4380_154 -4380_78071,293,4380_90540,Lettermullen,109545-00017-1,0,4380_7778208_4240301,4380_1365 -4380_78071,296,4380_90541,Lettermullen,109553-00021-1,0,4380_7778208_4240301,4380_1365 -4380_78071,295,4380_90542,Lettermullen,109551-00019-1,0,4380_7778208_4240301,4380_1365 -4380_78071,297,4380_90544,Carraroe,109798-00008-1,0,4380_7778208_4240304,4380_1364 -4380_78071,297,4380_90546,Lettermullen,109556-00008-1,0,4380_7778208_4240301,4380_1365 -4380_78145,289,4380_9055,Dublin,8854-00014-1,1,4380_7778208_1110122,4380_154 -4380_78071,285,4380_90552,Carraroe,109657-00009-1,0,4380_7778208_4240302,4380_1364 -4380_78071,288,4380_90554,Carraroe,109649-00011-1,0,4380_7778208_4240302,4380_1364 -4380_78071,286,4380_90555,Carraroe,109647-00010-1,0,4380_7778208_4240302,4380_1364 -4380_78071,291,4380_90556,Carraroe,109655-00013-1,0,4380_7778208_4240302,4380_1364 -4380_78071,289,4380_90557,Carraroe,109653-00014-1,0,4380_7778208_4240302,4380_1364 -4380_78071,287,4380_90558,Carraroe,109651-00012-1,0,4380_7778208_4240302,4380_1364 -4380_78071,292,4380_90559,Carraroe,109648-00016-1,0,4380_7778208_4240302,4380_1364 -4380_78145,290,4380_9056,Dublin,57509-00015-1,1,4380_7778208_1110122,4380_154 -4380_78071,290,4380_90560,Carraroe,109658-00015-1,0,4380_7778208_4240302,4380_1364 -4380_78071,294,4380_90561,Carraroe,109652-00018-1,0,4380_7778208_4240302,4380_1364 -4380_78071,293,4380_90562,Carraroe,109650-00017-1,0,4380_7778208_4240302,4380_1364 -4380_78071,296,4380_90563,Carraroe,109656-00021-1,0,4380_7778208_4240302,4380_1364 -4380_78071,295,4380_90564,Carraroe,109654-00019-1,0,4380_7778208_4240302,4380_1364 -4380_78145,291,4380_9057,Dublin,7821-00013-1,1,4380_7778208_1110108,4380_156 -4380_78071,285,4380_90570,Carraroe,109801-00009-1,0,4380_7778208_4240304,4380_1364 -4380_78071,288,4380_90572,Carraroe,109803-00011-1,0,4380_7778208_4240304,4380_1364 -4380_78071,286,4380_90573,Carraroe,109805-00010-1,0,4380_7778208_4240304,4380_1364 -4380_78071,291,4380_90574,Carraroe,109799-00013-1,0,4380_7778208_4240304,4380_1364 -4380_78071,289,4380_90575,Carraroe,109807-00014-1,0,4380_7778208_4240304,4380_1364 -4380_78071,287,4380_90576,Carraroe,109809-00012-1,0,4380_7778208_4240304,4380_1364 -4380_78071,292,4380_90577,Carraroe,109806-00016-1,0,4380_7778208_4240304,4380_1364 -4380_78071,290,4380_90578,Carraroe,109802-00015-1,0,4380_7778208_4240304,4380_1364 -4380_78071,294,4380_90579,Carraroe,109810-00018-1,0,4380_7778208_4240304,4380_1364 -4380_78145,292,4380_9058,Dublin,57506-00016-1,1,4380_7778208_1110122,4380_154 -4380_78071,293,4380_90580,Carraroe,109804-00017-1,0,4380_7778208_4240304,4380_1364 -4380_78071,296,4380_90581,Carraroe,109800-00021-1,0,4380_7778208_4240304,4380_1364 -4380_78071,295,4380_90582,Carraroe,109808-00019-1,0,4380_7778208_4240304,4380_1364 -4380_78071,285,4380_90588,Galway,109565-00009-1,1,4380_7778208_4240302,4380_1368 -4380_78145,293,4380_9059,Dublin,57508-00017-1,1,4380_7778208_1110122,4380_154 -4380_78071,288,4380_90590,Galway,109561-00011-1,1,4380_7778208_4240302,4380_1368 -4380_78071,286,4380_90591,Galway,109563-00010-1,1,4380_7778208_4240302,4380_1368 -4380_78071,291,4380_90592,Galway,109559-00013-1,1,4380_7778208_4240302,4380_1368 -4380_78071,289,4380_90593,Galway,109567-00014-1,1,4380_7778208_4240302,4380_1368 -4380_78071,287,4380_90594,Galway,109557-00012-1,1,4380_7778208_4240302,4380_1368 -4380_78071,292,4380_90595,Galway,109564-00016-1,1,4380_7778208_4240302,4380_1368 -4380_78071,290,4380_90596,Galway,109566-00015-1,1,4380_7778208_4240302,4380_1368 -4380_78071,294,4380_90597,Galway,109558-00018-1,1,4380_7778208_4240302,4380_1368 -4380_78071,293,4380_90598,Galway,109562-00017-1,1,4380_7778208_4240302,4380_1368 -4380_78071,296,4380_90599,Galway,109560-00021-1,1,4380_7778208_4240302,4380_1368 -4380_78113,288,4380_906,Dundalk,50035-00011-1,0,4380_7778208_1000906,4380_11 -4380_78145,294,4380_9060,Dublin,57510-00018-1,1,4380_7778208_1110122,4380_154 -4380_78071,295,4380_90600,Galway,109568-00019-1,1,4380_7778208_4240302,4380_1368 -4380_78071,297,4380_90602,Galway,109479-00008-1,1,4380_7778208_4240301,4380_1368 -4380_78071,285,4380_90608,Galway,109675-00009-1,1,4380_7778208_4240303,4380_1370 -4380_78145,295,4380_9061,Dublin,57507-00019-1,1,4380_7778208_1110122,4380_154 -4380_78071,288,4380_90610,Galway,109681-00011-1,1,4380_7778208_4240303,4380_1370 -4380_78071,286,4380_90611,Galway,109679-00010-1,1,4380_7778208_4240303,4380_1370 -4380_78071,291,4380_90612,Galway,109673-00013-1,1,4380_7778208_4240303,4380_1370 -4380_78071,289,4380_90613,Galway,109671-00014-1,1,4380_7778208_4240303,4380_1370 -4380_78071,287,4380_90614,Galway,109677-00012-1,1,4380_7778208_4240303,4380_1370 -4380_78071,292,4380_90615,Galway,109680-00016-1,1,4380_7778208_4240303,4380_1370 -4380_78071,290,4380_90616,Galway,109676-00015-1,1,4380_7778208_4240303,4380_1370 -4380_78071,294,4380_90617,Galway,109678-00018-1,1,4380_7778208_4240303,4380_1370 -4380_78071,293,4380_90618,Galway,109682-00017-1,1,4380_7778208_4240303,4380_1370 -4380_78071,296,4380_90619,Galway,109674-00021-1,1,4380_7778208_4240303,4380_1370 -4380_78145,296,4380_9062,Dublin,55739-00021-1,1,4380_7778208_1110108,4380_156 -4380_78071,295,4380_90620,Galway,109672-00019-1,1,4380_7778208_4240303,4380_1370 -4380_78071,285,4380_90626,Galway,109711-00009-1,1,4380_7778208_4240304,4380_1369 -4380_78071,288,4380_90628,Galway,109709-00011-1,1,4380_7778208_4240304,4380_1369 -4380_78071,286,4380_90629,Galway,109717-00010-1,1,4380_7778208_4240304,4380_1369 -4380_78071,291,4380_90630,Galway,109715-00013-1,1,4380_7778208_4240304,4380_1369 -4380_78071,289,4380_90631,Galway,109707-00014-1,1,4380_7778208_4240304,4380_1369 -4380_78071,287,4380_90632,Galway,109713-00012-1,1,4380_7778208_4240304,4380_1369 -4380_78071,292,4380_90633,Galway,109718-00016-1,1,4380_7778208_4240304,4380_1369 -4380_78071,290,4380_90634,Galway,109712-00015-1,1,4380_7778208_4240304,4380_1369 -4380_78071,294,4380_90635,Galway,109714-00018-1,1,4380_7778208_4240304,4380_1369 -4380_78071,293,4380_90636,Galway,109710-00017-1,1,4380_7778208_4240304,4380_1369 -4380_78071,296,4380_90637,Galway,109716-00021-1,1,4380_7778208_4240304,4380_1369 -4380_78071,295,4380_90638,Galway,109708-00019-1,1,4380_7778208_4240304,4380_1369 -4380_78071,285,4380_90644,Galway,109490-00009-1,1,4380_7778208_4240301,4380_1368 -4380_78071,288,4380_90646,Galway,109488-00011-1,1,4380_7778208_4240301,4380_1368 -4380_78071,286,4380_90647,Galway,109480-00010-1,1,4380_7778208_4240301,4380_1368 -4380_78071,291,4380_90648,Galway,109482-00013-1,1,4380_7778208_4240301,4380_1368 -4380_78071,289,4380_90649,Galway,109484-00014-1,1,4380_7778208_4240301,4380_1368 -4380_78071,287,4380_90650,Galway,109486-00012-1,1,4380_7778208_4240301,4380_1368 -4380_78071,292,4380_90651,Galway,109481-00016-1,1,4380_7778208_4240301,4380_1368 -4380_78071,290,4380_90652,Galway,109491-00015-1,1,4380_7778208_4240301,4380_1368 -4380_78071,294,4380_90653,Galway,109487-00018-1,1,4380_7778208_4240301,4380_1368 -4380_78071,293,4380_90654,Galway,109489-00017-1,1,4380_7778208_4240301,4380_1368 -4380_78071,296,4380_90655,Galway,109483-00021-1,1,4380_7778208_4240301,4380_1368 -4380_78071,295,4380_90656,Galway,109485-00019-1,1,4380_7778208_4240301,4380_1368 -4380_78071,297,4380_90658,Galway,109719-00008-1,1,4380_7778208_4240304,4380_1369 -4380_78071,285,4380_90664,Galway,109827-00009-1,1,4380_7778208_4240305,4380_1369 -4380_78071,288,4380_90666,Galway,109825-00011-1,1,4380_7778208_4240305,4380_1369 -4380_78071,286,4380_90667,Galway,109823-00010-1,1,4380_7778208_4240305,4380_1369 -4380_78071,291,4380_90668,Galway,109831-00013-1,1,4380_7778208_4240305,4380_1369 -4380_78071,289,4380_90669,Galway,109829-00014-1,1,4380_7778208_4240305,4380_1369 -4380_78071,287,4380_90670,Galway,109833-00012-1,1,4380_7778208_4240305,4380_1369 -4380_78071,292,4380_90671,Galway,109824-00016-1,1,4380_7778208_4240305,4380_1369 -4380_78071,290,4380_90672,Galway,109828-00015-1,1,4380_7778208_4240305,4380_1369 -4380_78071,294,4380_90673,Galway,109834-00018-1,1,4380_7778208_4240305,4380_1369 -4380_78071,293,4380_90674,Galway,109826-00017-1,1,4380_7778208_4240305,4380_1369 -4380_78071,296,4380_90675,Galway,109832-00021-1,1,4380_7778208_4240305,4380_1369 -4380_78071,295,4380_90676,Galway,109830-00019-1,1,4380_7778208_4240305,4380_1369 -4380_78071,297,4380_90678,Galway,109684-00008-1,1,4380_7778208_4240303,4380_1369 -4380_78071,297,4380_90680,Galway,109582-00008-1,1,4380_7778208_4240302,4380_1368 -4380_78071,285,4380_90686,Galway,109925-00009-1,1,4380_7778208_4240306,4380_1369 -4380_78071,288,4380_90688,Galway,109921-00011-1,1,4380_7778208_4240306,4380_1369 -4380_78071,286,4380_90689,Galway,109929-00010-1,1,4380_7778208_4240306,4380_1369 -4380_78071,291,4380_90690,Galway,109583-00013-1,1,4380_7778208_4240302,4380_1369 -4380_78071,289,4380_90691,Galway,109923-00014-1,1,4380_7778208_4240306,4380_1369 -4380_78071,287,4380_90692,Galway,109927-00012-1,1,4380_7778208_4240306,4380_1369 -4380_78071,292,4380_90693,Galway,109930-00016-1,1,4380_7778208_4240306,4380_1369 -4380_78071,290,4380_90694,Galway,109926-00015-1,1,4380_7778208_4240306,4380_1369 -4380_78071,294,4380_90695,Galway,109928-00018-1,1,4380_7778208_4240306,4380_1369 -4380_78071,293,4380_90696,Galway,109922-00017-1,1,4380_7778208_4240306,4380_1369 -4380_78071,296,4380_90697,Galway,109584-00021-1,1,4380_7778208_4240302,4380_1369 -4380_78071,295,4380_90698,Galway,109924-00019-1,1,4380_7778208_4240306,4380_1369 -4380_78113,289,4380_907,Dundalk,50037-00014-1,0,4380_7778208_1000906,4380_11 -4380_78145,285,4380_9070,Dublin,8835-00009-1,1,4380_7778208_1110121,4380_154 -4380_78071,285,4380_90704,Galway,109589-00009-1,1,4380_7778208_4240302,4380_1369 -4380_78071,288,4380_90706,Galway,109593-00011-1,1,4380_7778208_4240302,4380_1369 -4380_78071,286,4380_90707,Galway,109591-00010-1,1,4380_7778208_4240302,4380_1369 -4380_78071,291,4380_90708,Galway,109688-00013-1,1,4380_7778208_4240303,4380_1369 -4380_78071,289,4380_90709,Galway,109585-00014-1,1,4380_7778208_4240302,4380_1369 -4380_78145,286,4380_9071,Dublin,8840-00010-1,1,4380_7778208_1110121,4380_154 -4380_78071,287,4380_90710,Galway,109587-00012-1,1,4380_7778208_4240302,4380_1369 -4380_78071,292,4380_90711,Galway,109592-00016-1,1,4380_7778208_4240302,4380_1369 -4380_78071,290,4380_90712,Galway,109590-00015-1,1,4380_7778208_4240302,4380_1369 -4380_78071,294,4380_90713,Galway,109588-00018-1,1,4380_7778208_4240302,4380_1369 -4380_78071,293,4380_90714,Galway,109594-00017-1,1,4380_7778208_4240302,4380_1369 -4380_78071,296,4380_90715,Galway,109689-00021-1,1,4380_7778208_4240303,4380_1369 -4380_78071,295,4380_90716,Galway,109586-00019-1,1,4380_7778208_4240302,4380_1369 -4380_78071,297,4380_90718,Galway,109505-00008-1,1,4380_7778208_4240301,4380_1369 -4380_78145,297,4380_9072,Dublin,7832-00008-1,1,4380_7778208_1110108,4380_155 -4380_78071,297,4380_90725,Galway,109848-00008-1,1,4380_7778208_4240305,4380_1369 -4380_78071,285,4380_90726,Galway,109737-00009-1,1,4380_7778208_4240304,4380_1371 -4380_78071,288,4380_90728,Galway,109743-00011-1,1,4380_7778208_4240304,4380_1371 -4380_78071,286,4380_90729,Galway,109741-00010-1,1,4380_7778208_4240304,4380_1371 -4380_78145,288,4380_9073,Dublin,8845-00011-1,1,4380_7778208_1110121,4380_154 -4380_78071,291,4380_90730,Galway,109733-00013-1,1,4380_7778208_4240304,4380_1371 -4380_78071,289,4380_90731,Galway,109735-00014-1,1,4380_7778208_4240304,4380_1371 -4380_78071,287,4380_90732,Galway,109739-00012-1,1,4380_7778208_4240304,4380_1371 -4380_78071,292,4380_90733,Galway,109742-00016-1,1,4380_7778208_4240304,4380_1371 -4380_78071,290,4380_90734,Galway,109738-00015-1,1,4380_7778208_4240304,4380_1371 -4380_78071,294,4380_90735,Galway,109740-00018-1,1,4380_7778208_4240304,4380_1371 -4380_78071,293,4380_90736,Galway,109744-00017-1,1,4380_7778208_4240304,4380_1371 -4380_78071,296,4380_90737,Galway,109734-00021-1,1,4380_7778208_4240304,4380_1371 -4380_78071,295,4380_90738,Galway,109736-00019-1,1,4380_7778208_4240304,4380_1371 -4380_78145,287,4380_9074,Dublin,8850-00012-1,1,4380_7778208_1110121,4380_154 -4380_78071,285,4380_90744,Galway,109506-00009-1,1,4380_7778208_4240301,4380_1369 -4380_78071,288,4380_90746,Galway,109510-00011-1,1,4380_7778208_4240301,4380_1369 -4380_78071,286,4380_90747,Galway,109508-00010-1,1,4380_7778208_4240301,4380_1369 -4380_78071,291,4380_90748,Galway,109516-00013-1,1,4380_7778208_4240301,4380_1369 -4380_78071,289,4380_90749,Galway,109512-00014-1,1,4380_7778208_4240301,4380_1369 -4380_78145,289,4380_9075,Dublin,8830-00014-1,1,4380_7778208_1110121,4380_154 -4380_78071,287,4380_90750,Galway,109514-00012-1,1,4380_7778208_4240301,4380_1369 -4380_78071,292,4380_90751,Galway,109509-00016-1,1,4380_7778208_4240301,4380_1369 -4380_78071,290,4380_90752,Galway,109507-00015-1,1,4380_7778208_4240301,4380_1369 -4380_78071,294,4380_90753,Galway,109515-00018-1,1,4380_7778208_4240301,4380_1369 -4380_78071,293,4380_90754,Galway,109511-00017-1,1,4380_7778208_4240301,4380_1369 -4380_78071,296,4380_90755,Galway,109517-00021-1,1,4380_7778208_4240301,4380_1369 -4380_78071,295,4380_90756,Galway,109513-00019-1,1,4380_7778208_4240301,4380_1369 -4380_78071,297,4380_90758,Galway,109745-00008-1,1,4380_7778208_4240304,4380_1369 -4380_78145,290,4380_9076,Dublin,57489-00015-1,1,4380_7778208_1110121,4380_154 -4380_78071,297,4380_90765,Galway,109690-00008-1,1,4380_7778208_4240303,4380_1368 -4380_78071,285,4380_90766,Galway,109858-00009-1,1,4380_7778208_4240305,4380_1369 -4380_78071,288,4380_90768,Galway,109854-00011-1,1,4380_7778208_4240305,4380_1369 -4380_78071,286,4380_90769,Galway,109851-00010-1,1,4380_7778208_4240305,4380_1369 -4380_78145,291,4380_9077,Dublin,7774-00013-1,1,4380_7778208_1110107,4380_156 -4380_78071,291,4380_90770,Galway,109860-00013-1,1,4380_7778208_4240305,4380_1369 -4380_78071,289,4380_90771,Galway,109856-00014-1,1,4380_7778208_4240305,4380_1369 -4380_78071,287,4380_90772,Galway,109849-00012-1,1,4380_7778208_4240305,4380_1369 -4380_78071,292,4380_90773,Galway,109852-00016-1,1,4380_7778208_4240305,4380_1369 -4380_78071,290,4380_90774,Galway,109859-00015-1,1,4380_7778208_4240305,4380_1369 -4380_78071,294,4380_90775,Galway,109850-00018-1,1,4380_7778208_4240305,4380_1369 -4380_78071,293,4380_90776,Galway,109855-00017-1,1,4380_7778208_4240305,4380_1369 -4380_78071,296,4380_90777,Galway,109861-00021-1,1,4380_7778208_4240305,4380_1369 -4380_78071,295,4380_90778,Galway,109857-00019-1,1,4380_7778208_4240305,4380_1369 -4380_78145,292,4380_9078,Dublin,57486-00016-1,1,4380_7778208_1110121,4380_154 -4380_78071,285,4380_90784,Galway,110123-00009-1,1,4380_7778208_4340301,4380_1368 -4380_78071,288,4380_90786,Galway,110127-00011-1,1,4380_7778208_4340301,4380_1368 -4380_78071,286,4380_90787,Galway,110129-00010-1,1,4380_7778208_4340301,4380_1368 -4380_78071,291,4380_90788,Galway,98958-00013-1,1,4380_7778208_3500302,4380_1368 -4380_78071,289,4380_90789,Galway,110125-00014-1,1,4380_7778208_4340301,4380_1368 -4380_78145,293,4380_9079,Dublin,57488-00017-1,1,4380_7778208_1110121,4380_154 -4380_78071,287,4380_90790,Galway,110131-00012-1,1,4380_7778208_4340301,4380_1368 -4380_78071,292,4380_90791,Galway,110130-00016-1,1,4380_7778208_4340301,4380_1368 -4380_78071,290,4380_90792,Galway,110124-00015-1,1,4380_7778208_4340301,4380_1368 -4380_78071,294,4380_90793,Galway,110132-00018-1,1,4380_7778208_4340301,4380_1368 -4380_78071,293,4380_90794,Galway,110128-00017-1,1,4380_7778208_4340301,4380_1368 -4380_78071,296,4380_90795,Galway,98959-00021-1,1,4380_7778208_3500302,4380_1368 -4380_78071,295,4380_90796,Galway,110126-00019-1,1,4380_7778208_4340301,4380_1368 -4380_78071,297,4380_90798,Galway,109608-00008-1,1,4380_7778208_4240302,4380_1369 -4380_78113,290,4380_908,Dundalk,50034-00015-1,0,4380_7778208_1000906,4380_11 -4380_78145,294,4380_9080,Dublin,57490-00018-1,1,4380_7778208_1110121,4380_154 -4380_78071,297,4380_90800,Galway,109862-00008-1,1,4380_7778208_4240305,4380_1369 -4380_78071,285,4380_90806,Galway,109617-00009-1,1,4380_7778208_4240302,4380_1369 -4380_78071,288,4380_90808,Galway,109615-00011-1,1,4380_7778208_4240302,4380_1369 -4380_78071,286,4380_90809,Galway,109613-00010-1,1,4380_7778208_4240302,4380_1369 -4380_78145,295,4380_9081,Dublin,57487-00019-1,1,4380_7778208_1110121,4380_154 -4380_78071,291,4380_90810,Galway,109611-00013-1,1,4380_7778208_4240302,4380_1369 -4380_78071,289,4380_90811,Galway,109619-00014-1,1,4380_7778208_4240302,4380_1369 -4380_78071,287,4380_90812,Galway,109609-00012-1,1,4380_7778208_4240302,4380_1369 -4380_78071,292,4380_90813,Galway,109614-00016-1,1,4380_7778208_4240302,4380_1369 -4380_78071,290,4380_90814,Galway,109618-00015-1,1,4380_7778208_4240302,4380_1369 -4380_78071,294,4380_90815,Galway,109610-00018-1,1,4380_7778208_4240302,4380_1369 -4380_78071,293,4380_90816,Galway,109616-00017-1,1,4380_7778208_4240302,4380_1369 -4380_78071,296,4380_90817,Galway,109612-00021-1,1,4380_7778208_4240302,4380_1369 -4380_78071,295,4380_90818,Galway,109620-00019-1,1,4380_7778208_4240302,4380_1369 -4380_78145,296,4380_9082,Dublin,55720-00021-1,1,4380_7778208_1110107,4380_156 -4380_78071,297,4380_90820,Galway,109759-00008-1,1,4380_7778208_4240304,4380_1369 -4380_78071,285,4380_90826,Galway,109768-00009-1,1,4380_7778208_4240304,4380_1369 -4380_78071,288,4380_90828,Galway,109762-00011-1,1,4380_7778208_4240304,4380_1369 -4380_78071,286,4380_90829,Galway,109770-00010-1,1,4380_7778208_4240304,4380_1369 -4380_78071,291,4380_90830,Galway,109766-00013-1,1,4380_7778208_4240304,4380_1369 -4380_78071,289,4380_90831,Galway,109760-00014-1,1,4380_7778208_4240304,4380_1369 -4380_78071,287,4380_90832,Galway,109764-00012-1,1,4380_7778208_4240304,4380_1369 -4380_78071,292,4380_90833,Galway,109771-00016-1,1,4380_7778208_4240304,4380_1369 -4380_78071,290,4380_90834,Galway,109769-00015-1,1,4380_7778208_4240304,4380_1369 -4380_78071,294,4380_90835,Galway,109765-00018-1,1,4380_7778208_4240304,4380_1369 -4380_78071,293,4380_90836,Galway,109763-00017-1,1,4380_7778208_4240304,4380_1369 -4380_78071,296,4380_90837,Galway,109767-00021-1,1,4380_7778208_4240304,4380_1369 -4380_78071,295,4380_90838,Galway,109761-00019-1,1,4380_7778208_4240304,4380_1369 -4380_78071,285,4380_90844,Galway,109539-00009-1,1,4380_7778208_4240301,4380_1369 -4380_78071,288,4380_90846,Galway,109541-00011-1,1,4380_7778208_4240301,4380_1369 -4380_78071,286,4380_90847,Galway,109531-00010-1,1,4380_7778208_4240301,4380_1369 -4380_78071,291,4380_90848,Galway,109533-00013-1,1,4380_7778208_4240301,4380_1369 -4380_78071,289,4380_90849,Galway,109535-00014-1,1,4380_7778208_4240301,4380_1369 -4380_78071,287,4380_90850,Galway,109537-00012-1,1,4380_7778208_4240301,4380_1369 -4380_78071,292,4380_90851,Galway,109532-00016-1,1,4380_7778208_4240301,4380_1369 -4380_78071,290,4380_90852,Galway,109540-00015-1,1,4380_7778208_4240301,4380_1369 -4380_78071,294,4380_90853,Galway,109538-00018-1,1,4380_7778208_4240301,4380_1369 -4380_78071,293,4380_90854,Galway,109542-00017-1,1,4380_7778208_4240301,4380_1369 -4380_78071,296,4380_90855,Galway,109534-00021-1,1,4380_7778208_4240301,4380_1369 -4380_78071,295,4380_90856,Galway,109536-00019-1,1,4380_7778208_4240301,4380_1369 -4380_78071,297,4380_90858,Galway,109704-00008-1,1,4380_7778208_4240303,4380_1369 -4380_78071,297,4380_90865,Galway,109543-00008-1,1,4380_7778208_4240301,4380_1368 -4380_78071,285,4380_90866,Galway,109885-00009-1,1,4380_7778208_4240305,4380_1369 -4380_78071,288,4380_90868,Galway,109883-00011-1,1,4380_7778208_4240305,4380_1369 -4380_78071,286,4380_90869,Galway,109875-00010-1,1,4380_7778208_4240305,4380_1369 -4380_78071,291,4380_90870,Galway,109879-00013-1,1,4380_7778208_4240305,4380_1369 -4380_78071,289,4380_90871,Galway,109877-00014-1,1,4380_7778208_4240305,4380_1369 -4380_78071,287,4380_90872,Galway,109881-00012-1,1,4380_7778208_4240305,4380_1369 -4380_78071,292,4380_90873,Galway,109876-00016-1,1,4380_7778208_4240305,4380_1369 -4380_78071,290,4380_90874,Galway,109886-00015-1,1,4380_7778208_4240305,4380_1369 -4380_78071,294,4380_90875,Galway,109882-00018-1,1,4380_7778208_4240305,4380_1369 -4380_78071,293,4380_90876,Galway,109884-00017-1,1,4380_7778208_4240305,4380_1369 -4380_78071,296,4380_90877,Galway,109880-00021-1,1,4380_7778208_4240305,4380_1369 -4380_78071,295,4380_90878,Galway,109878-00019-1,1,4380_7778208_4240305,4380_1369 -4380_78071,297,4380_90885,Galway,109634-00008-1,1,4380_7778208_4240302,4380_1369 -4380_78071,285,4380_90886,Galway,109947-00009-1,1,4380_7778208_4240306,4380_1368 -4380_78071,288,4380_90888,Galway,109945-00011-1,1,4380_7778208_4240306,4380_1368 -4380_78071,286,4380_90889,Galway,109949-00010-1,1,4380_7778208_4240306,4380_1368 -4380_78145,285,4380_9089,Dublin,8811-00009-1,1,4380_7778208_1110120,4380_154 -4380_78071,291,4380_90890,Galway,109953-00013-1,1,4380_7778208_4240306,4380_1368 -4380_78071,289,4380_90891,Galway,109943-00014-1,1,4380_7778208_4240306,4380_1368 -4380_78071,287,4380_90892,Galway,109951-00012-1,1,4380_7778208_4240306,4380_1368 -4380_78071,292,4380_90893,Galway,109950-00016-1,1,4380_7778208_4240306,4380_1368 -4380_78071,290,4380_90894,Galway,109948-00015-1,1,4380_7778208_4240306,4380_1368 -4380_78071,294,4380_90895,Galway,109952-00018-1,1,4380_7778208_4240306,4380_1368 -4380_78071,293,4380_90896,Galway,109946-00017-1,1,4380_7778208_4240306,4380_1368 -4380_78071,296,4380_90897,Galway,109954-00021-1,1,4380_7778208_4240306,4380_1368 -4380_78071,295,4380_90898,Galway,109944-00019-1,1,4380_7778208_4240306,4380_1368 -4380_78113,292,4380_909,Dundalk,50032-00016-1,0,4380_7778208_1000906,4380_11 -4380_78145,286,4380_9090,Dublin,8816-00010-1,1,4380_7778208_1110120,4380_154 -4380_78071,297,4380_90900,Galway,109785-00008-1,1,4380_7778208_4240304,4380_1369 -4380_78071,285,4380_90906,Galway,109639-00009-1,1,4380_7778208_4240302,4380_1369 -4380_78071,288,4380_90908,Galway,109645-00011-1,1,4380_7778208_4240302,4380_1369 -4380_78071,286,4380_90909,Galway,109643-00010-1,1,4380_7778208_4240302,4380_1369 -4380_78145,297,4380_9091,Dublin,7787-00008-1,1,4380_7778208_1110107,4380_155 -4380_78071,291,4380_90910,Galway,109641-00013-1,1,4380_7778208_4240302,4380_1369 -4380_78071,289,4380_90911,Galway,109637-00014-1,1,4380_7778208_4240302,4380_1369 -4380_78071,287,4380_90912,Galway,109635-00012-1,1,4380_7778208_4240302,4380_1369 -4380_78071,292,4380_90913,Galway,109644-00016-1,1,4380_7778208_4240302,4380_1369 -4380_78071,290,4380_90914,Galway,109640-00015-1,1,4380_7778208_4240302,4380_1369 -4380_78071,294,4380_90915,Galway,109636-00018-1,1,4380_7778208_4240302,4380_1369 -4380_78071,293,4380_90916,Galway,109646-00017-1,1,4380_7778208_4240302,4380_1369 -4380_78071,296,4380_90917,Galway,109642-00021-1,1,4380_7778208_4240302,4380_1369 -4380_78071,295,4380_90918,Galway,109638-00019-1,1,4380_7778208_4240302,4380_1369 -4380_78145,288,4380_9092,Dublin,8821-00011-1,1,4380_7778208_1110120,4380_154 -4380_78071,285,4380_90924,Galway,109790-00009-1,1,4380_7778208_4240304,4380_1369 -4380_78071,288,4380_90926,Galway,109796-00011-1,1,4380_7778208_4240304,4380_1369 -4380_78071,286,4380_90927,Galway,109794-00010-1,1,4380_7778208_4240304,4380_1369 -4380_78071,291,4380_90928,Galway,109792-00013-1,1,4380_7778208_4240304,4380_1369 -4380_78071,289,4380_90929,Galway,109788-00014-1,1,4380_7778208_4240304,4380_1369 -4380_78145,287,4380_9093,Dublin,8826-00012-1,1,4380_7778208_1110120,4380_154 -4380_78071,287,4380_90930,Galway,109786-00012-1,1,4380_7778208_4240304,4380_1369 -4380_78071,292,4380_90931,Galway,109795-00016-1,1,4380_7778208_4240304,4380_1369 -4380_78071,290,4380_90932,Galway,109791-00015-1,1,4380_7778208_4240304,4380_1369 -4380_78071,294,4380_90933,Galway,109787-00018-1,1,4380_7778208_4240304,4380_1369 -4380_78071,293,4380_90934,Galway,109797-00017-1,1,4380_7778208_4240304,4380_1369 -4380_78071,296,4380_90935,Galway,109793-00021-1,1,4380_7778208_4240304,4380_1369 -4380_78071,295,4380_90936,Galway,109789-00019-1,1,4380_7778208_4240304,4380_1369 -4380_78145,289,4380_9094,Dublin,8806-00014-1,1,4380_7778208_1110120,4380_154 -4380_78071,297,4380_90943,Galway,109706-00008-1,1,4380_7778208_4240303,4380_1369 -4380_78071,285,4380_90944,Galway,109903-00009-1,1,4380_7778208_4240305,4380_1371 -4380_78071,288,4380_90946,Galway,109901-00011-1,1,4380_7778208_4240305,4380_1371 -4380_78071,286,4380_90947,Galway,109907-00010-1,1,4380_7778208_4240305,4380_1371 -4380_78071,291,4380_90948,Galway,109899-00013-1,1,4380_7778208_4240305,4380_1371 -4380_78071,289,4380_90949,Galway,109905-00014-1,1,4380_7778208_4240305,4380_1371 -4380_78145,290,4380_9095,Dublin,57466-00015-1,1,4380_7778208_1110120,4380_154 -4380_78071,287,4380_90950,Galway,109909-00012-1,1,4380_7778208_4240305,4380_1371 -4380_78071,292,4380_90951,Galway,109908-00016-1,1,4380_7778208_4240305,4380_1371 -4380_78071,290,4380_90952,Galway,109904-00015-1,1,4380_7778208_4240305,4380_1371 -4380_78071,294,4380_90953,Galway,109910-00018-1,1,4380_7778208_4240305,4380_1371 -4380_78071,293,4380_90954,Galway,109902-00017-1,1,4380_7778208_4240305,4380_1371 -4380_78071,296,4380_90955,Galway,109900-00021-1,1,4380_7778208_4240305,4380_1371 -4380_78071,295,4380_90956,Galway,109906-00019-1,1,4380_7778208_4240305,4380_1371 -4380_78145,291,4380_9096,Dublin,7721-00013-1,1,4380_7778208_1110106,4380_156 -4380_78071,285,4380_90962,Galway,109665-00009-1,1,4380_7778208_4240302,4380_1369 -4380_78071,288,4380_90964,Galway,109663-00011-1,1,4380_7778208_4240302,4380_1369 -4380_78071,286,4380_90965,Galway,109667-00010-1,1,4380_7778208_4240302,4380_1369 -4380_78071,291,4380_90966,Galway,109669-00013-1,1,4380_7778208_4240302,4380_1369 -4380_78071,289,4380_90967,Galway,109661-00014-1,1,4380_7778208_4240302,4380_1369 -4380_78071,287,4380_90968,Galway,109659-00012-1,1,4380_7778208_4240302,4380_1369 -4380_78071,292,4380_90969,Galway,109668-00016-1,1,4380_7778208_4240302,4380_1369 -4380_78145,292,4380_9097,Dublin,57468-00016-1,1,4380_7778208_1110120,4380_154 -4380_78071,290,4380_90970,Galway,109666-00015-1,1,4380_7778208_4240302,4380_1369 -4380_78071,294,4380_90971,Galway,109660-00018-1,1,4380_7778208_4240302,4380_1369 -4380_78071,293,4380_90972,Galway,109664-00017-1,1,4380_7778208_4240302,4380_1369 -4380_78071,296,4380_90973,Galway,109670-00021-1,1,4380_7778208_4240302,4380_1369 -4380_78071,295,4380_90974,Galway,109662-00019-1,1,4380_7778208_4240302,4380_1369 -4380_78145,293,4380_9098,Dublin,57469-00017-1,1,4380_7778208_1110120,4380_154 -4380_78072,285,4380_90980,Longford,109977-00009-1,0,4380_7778208_4250301,4380_1372 -4380_78072,288,4380_90982,Longford,109969-00011-1,0,4380_7778208_4250301,4380_1372 -4380_78072,286,4380_90983,Longford,109967-00010-1,0,4380_7778208_4250301,4380_1372 -4380_78072,291,4380_90984,Longford,109975-00013-1,0,4380_7778208_4250301,4380_1372 -4380_78072,289,4380_90985,Longford,109973-00014-1,0,4380_7778208_4250301,4380_1372 -4380_78072,287,4380_90986,Longford,109971-00012-1,0,4380_7778208_4250301,4380_1372 -4380_78072,292,4380_90987,Longford,109968-00016-1,0,4380_7778208_4250301,4380_1372 -4380_78072,290,4380_90988,Longford,109978-00015-1,0,4380_7778208_4250301,4380_1372 -4380_78072,294,4380_90989,Longford,109972-00018-1,0,4380_7778208_4250301,4380_1372 -4380_78145,294,4380_9099,Dublin,57470-00018-1,1,4380_7778208_1110120,4380_154 -4380_78072,293,4380_90990,Longford,109970-00017-1,0,4380_7778208_4250301,4380_1372 -4380_78072,296,4380_90991,Longford,109976-00021-1,0,4380_7778208_4250301,4380_1372 -4380_78072,295,4380_90992,Longford,109974-00019-1,0,4380_7778208_4250301,4380_1372 -4380_78072,285,4380_90998,Galway,109963-00009-1,1,4380_7778208_4250301,4380_1373 -4380_78113,293,4380_910,Dundalk,50036-00017-1,0,4380_7778208_1000906,4380_11 -4380_78145,295,4380_9100,Dublin,57467-00019-1,1,4380_7778208_1110120,4380_154 -4380_78072,288,4380_91000,Galway,109961-00011-1,1,4380_7778208_4250301,4380_1373 -4380_78072,286,4380_91001,Galway,109957-00010-1,1,4380_7778208_4250301,4380_1373 -4380_78072,291,4380_91002,Galway,109955-00013-1,1,4380_7778208_4250301,4380_1373 -4380_78072,289,4380_91003,Galway,109965-00014-1,1,4380_7778208_4250301,4380_1373 -4380_78072,287,4380_91004,Galway,109959-00012-1,1,4380_7778208_4250301,4380_1373 -4380_78072,292,4380_91005,Galway,109958-00016-1,1,4380_7778208_4250301,4380_1373 -4380_78072,290,4380_91006,Galway,109964-00015-1,1,4380_7778208_4250301,4380_1373 -4380_78072,294,4380_91007,Galway,109960-00018-1,1,4380_7778208_4250301,4380_1373 -4380_78072,293,4380_91008,Galway,109962-00017-1,1,4380_7778208_4250301,4380_1373 -4380_78072,296,4380_91009,Galway,109956-00021-1,1,4380_7778208_4250301,4380_1373 -4380_78145,296,4380_9101,Dublin,55705-00021-1,1,4380_7778208_1110106,4380_156 -4380_78072,295,4380_91010,Galway,109966-00019-1,1,4380_7778208_4250301,4380_1373 -4380_78138,297,4380_91017,Mountbellew,109996-00008-1,0,4380_7778208_4250302,4380_1374 -4380_78138,285,4380_91018,Mountbellew,109994-00009-1,0,4380_7778208_4250302,4380_1375 -4380_78138,288,4380_91020,Mountbellew,110001-00011-1,0,4380_7778208_4250302,4380_1375 -4380_78138,286,4380_91021,Mountbellew,109999-00010-1,0,4380_7778208_4250302,4380_1375 -4380_78138,291,4380_91022,Mountbellew,109992-00013-1,0,4380_7778208_4250302,4380_1376 -4380_78138,289,4380_91023,Mountbellew,109997-00014-1,0,4380_7778208_4250302,4380_1375 -4380_78138,287,4380_91024,Mountbellew,110003-00012-1,0,4380_7778208_4250302,4380_1375 -4380_78138,292,4380_91025,Mountbellew,110000-00016-1,0,4380_7778208_4250302,4380_1375 -4380_78138,290,4380_91026,Mountbellew,109995-00015-1,0,4380_7778208_4250302,4380_1375 -4380_78138,294,4380_91027,Mountbellew,110004-00018-1,0,4380_7778208_4250302,4380_1375 -4380_78138,293,4380_91028,Mountbellew,110002-00017-1,0,4380_7778208_4250302,4380_1375 -4380_78138,296,4380_91029,Mountbellew,109993-00021-1,0,4380_7778208_4250302,4380_1376 -4380_78138,295,4380_91030,Mountbellew,109998-00019-1,0,4380_7778208_4250302,4380_1375 -4380_78138,297,4380_91037,Mountbellew,110026-00008-1,0,4380_7778208_4250302,4380_1374 -4380_78138,285,4380_91038,Mountbellew,110027-00009-1,0,4380_7778208_4250302,4380_1375 -4380_78138,288,4380_91040,Mountbellew,110029-00011-1,0,4380_7778208_4250302,4380_1375 -4380_78138,286,4380_91041,Mountbellew,110018-00010-1,0,4380_7778208_4250302,4380_1375 -4380_78138,291,4380_91042,Mountbellew,110020-00013-1,0,4380_7778208_4250302,4380_1376 -4380_78138,289,4380_91043,Mountbellew,110024-00014-1,0,4380_7778208_4250302,4380_1375 -4380_78138,287,4380_91044,Mountbellew,110022-00012-1,0,4380_7778208_4250302,4380_1375 -4380_78138,292,4380_91045,Mountbellew,110019-00016-1,0,4380_7778208_4250302,4380_1375 -4380_78138,290,4380_91046,Mountbellew,110028-00015-1,0,4380_7778208_4250302,4380_1375 -4380_78138,294,4380_91047,Mountbellew,110023-00018-1,0,4380_7778208_4250302,4380_1375 -4380_78138,293,4380_91048,Mountbellew,110030-00017-1,0,4380_7778208_4250302,4380_1375 -4380_78138,296,4380_91049,Mountbellew,110021-00021-1,0,4380_7778208_4250302,4380_1376 -4380_78138,295,4380_91050,Mountbellew,110025-00019-1,0,4380_7778208_4250302,4380_1375 -4380_78138,297,4380_91057,Mountbellew,110050-00008-1,0,4380_7778208_4250302,4380_1374 -4380_78138,285,4380_91058,Mountbellew,110048-00009-1,0,4380_7778208_4250302,4380_1375 -4380_78138,288,4380_91060,Mountbellew,110051-00011-1,0,4380_7778208_4250302,4380_1375 -4380_78138,286,4380_91061,Mountbellew,110044-00010-1,0,4380_7778208_4250302,4380_1375 -4380_78138,291,4380_91062,Mountbellew,110053-00013-1,0,4380_7778208_4250302,4380_1376 -4380_78138,289,4380_91063,Mountbellew,110055-00014-1,0,4380_7778208_4250302,4380_1375 -4380_78138,287,4380_91064,Mountbellew,110046-00012-1,0,4380_7778208_4250302,4380_1375 -4380_78138,292,4380_91065,Mountbellew,110045-00016-1,0,4380_7778208_4250302,4380_1375 -4380_78138,290,4380_91066,Mountbellew,110049-00015-1,0,4380_7778208_4250302,4380_1375 -4380_78138,294,4380_91067,Mountbellew,110047-00018-1,0,4380_7778208_4250302,4380_1375 -4380_78138,293,4380_91068,Mountbellew,110052-00017-1,0,4380_7778208_4250302,4380_1375 -4380_78138,296,4380_91069,Mountbellew,110054-00021-1,0,4380_7778208_4250302,4380_1376 -4380_78138,295,4380_91070,Mountbellew,110056-00019-1,0,4380_7778208_4250302,4380_1375 -4380_78138,297,4380_91077,Mountbellew,110082-00008-1,0,4380_7778208_4250302,4380_1374 -4380_78138,285,4380_91078,Mountbellew,110078-00009-1,0,4380_7778208_4250302,4380_1375 -4380_78138,288,4380_91080,Mountbellew,110074-00011-1,0,4380_7778208_4250302,4380_1375 -4380_78138,286,4380_91081,Mountbellew,110076-00010-1,0,4380_7778208_4250302,4380_1375 -4380_78138,291,4380_91082,Mountbellew,110070-00013-1,0,4380_7778208_4250302,4380_1376 -4380_78138,289,4380_91083,Mountbellew,110080-00014-1,0,4380_7778208_4250302,4380_1375 -4380_78138,287,4380_91084,Mountbellew,110072-00012-1,0,4380_7778208_4250302,4380_1375 -4380_78138,292,4380_91085,Mountbellew,110077-00016-1,0,4380_7778208_4250302,4380_1375 -4380_78138,290,4380_91086,Mountbellew,110079-00015-1,0,4380_7778208_4250302,4380_1375 -4380_78138,294,4380_91087,Mountbellew,110073-00018-1,0,4380_7778208_4250302,4380_1375 -4380_78138,293,4380_91088,Mountbellew,110075-00017-1,0,4380_7778208_4250302,4380_1375 -4380_78138,296,4380_91089,Mountbellew,110071-00021-1,0,4380_7778208_4250302,4380_1376 -4380_78138,295,4380_91090,Mountbellew,110081-00019-1,0,4380_7778208_4250302,4380_1375 -4380_78138,297,4380_91097,Galway,109985-00008-1,1,4380_7778208_4250302,4380_1377 -4380_78138,285,4380_91098,Galway,109981-00009-1,1,4380_7778208_4250302,4380_1378 -4380_78113,294,4380_911,Dundalk,50030-00018-1,0,4380_7778208_1000906,4380_11 -4380_78138,288,4380_91100,Galway,109983-00011-1,1,4380_7778208_4250302,4380_1378 -4380_78138,286,4380_91101,Galway,109990-00010-1,1,4380_7778208_4250302,4380_1378 -4380_78138,291,4380_91102,Galway,109979-00013-1,1,4380_7778208_4250302,4380_1379 -4380_78138,289,4380_91103,Galway,109986-00014-1,1,4380_7778208_4250302,4380_1378 -4380_78138,287,4380_91104,Galway,109988-00012-1,1,4380_7778208_4250302,4380_1378 -4380_78138,292,4380_91105,Galway,109991-00016-1,1,4380_7778208_4250302,4380_1378 -4380_78138,290,4380_91106,Galway,109982-00015-1,1,4380_7778208_4250302,4380_1378 -4380_78138,294,4380_91107,Galway,109989-00018-1,1,4380_7778208_4250302,4380_1378 -4380_78138,293,4380_91108,Galway,109984-00017-1,1,4380_7778208_4250302,4380_1378 -4380_78138,296,4380_91109,Galway,109980-00021-1,1,4380_7778208_4250302,4380_1379 -4380_78138,295,4380_91110,Galway,109987-00019-1,1,4380_7778208_4250302,4380_1378 -4380_78138,297,4380_91117,Galway,110007-00008-1,1,4380_7778208_4250302,4380_1377 -4380_78138,285,4380_91118,Galway,110010-00009-1,1,4380_7778208_4250302,4380_1378 -4380_78138,288,4380_91120,Galway,110016-00011-1,1,4380_7778208_4250302,4380_1378 -4380_78138,286,4380_91121,Galway,110012-00010-1,1,4380_7778208_4250302,4380_1378 -4380_78138,291,4380_91122,Galway,110008-00013-1,1,4380_7778208_4250302,4380_1379 -4380_78138,289,4380_91123,Galway,110014-00014-1,1,4380_7778208_4250302,4380_1378 -4380_78138,287,4380_91124,Galway,110005-00012-1,1,4380_7778208_4250302,4380_1378 -4380_78138,292,4380_91125,Galway,110013-00016-1,1,4380_7778208_4250302,4380_1378 -4380_78138,290,4380_91126,Galway,110011-00015-1,1,4380_7778208_4250302,4380_1378 -4380_78138,294,4380_91127,Galway,110006-00018-1,1,4380_7778208_4250302,4380_1378 -4380_78138,293,4380_91128,Galway,110017-00017-1,1,4380_7778208_4250302,4380_1378 -4380_78138,296,4380_91129,Galway,110009-00021-1,1,4380_7778208_4250302,4380_1379 -4380_78138,295,4380_91130,Galway,110015-00019-1,1,4380_7778208_4250302,4380_1378 -4380_78138,297,4380_91137,Galway,110039-00008-1,1,4380_7778208_4250302,4380_1377 -4380_78138,285,4380_91138,Galway,110031-00009-1,1,4380_7778208_4250302,4380_1378 -4380_78138,288,4380_91140,Galway,110040-00011-1,1,4380_7778208_4250302,4380_1378 -4380_78138,286,4380_91141,Galway,110042-00010-1,1,4380_7778208_4250302,4380_1378 -4380_78138,291,4380_91142,Galway,110035-00013-1,1,4380_7778208_4250302,4380_1379 -4380_78138,289,4380_91143,Galway,110033-00014-1,1,4380_7778208_4250302,4380_1378 -4380_78138,287,4380_91144,Galway,110037-00012-1,1,4380_7778208_4250302,4380_1378 -4380_78138,292,4380_91145,Galway,110043-00016-1,1,4380_7778208_4250302,4380_1378 -4380_78138,290,4380_91146,Galway,110032-00015-1,1,4380_7778208_4250302,4380_1378 -4380_78138,294,4380_91147,Galway,110038-00018-1,1,4380_7778208_4250302,4380_1378 -4380_78138,293,4380_91148,Galway,110041-00017-1,1,4380_7778208_4250302,4380_1378 -4380_78138,296,4380_91149,Galway,110036-00021-1,1,4380_7778208_4250302,4380_1379 -4380_78138,295,4380_91150,Galway,110034-00019-1,1,4380_7778208_4250302,4380_1378 -4380_78138,297,4380_91157,Galway,110061-00008-1,1,4380_7778208_4250302,4380_1377 -4380_78138,285,4380_91158,Galway,110066-00009-1,1,4380_7778208_4250302,4380_1378 -4380_78147,285,4380_9116,Cavan,5997-00009-1,0,4380_7778208_1090114,4380_164 -4380_78138,288,4380_91160,Galway,110059-00011-1,1,4380_7778208_4250302,4380_1378 -4380_78138,286,4380_91161,Galway,110064-00010-1,1,4380_7778208_4250302,4380_1378 -4380_78138,291,4380_91162,Galway,110062-00013-1,1,4380_7778208_4250302,4380_1379 -4380_78138,289,4380_91163,Galway,110057-00014-1,1,4380_7778208_4250302,4380_1378 -4380_78138,287,4380_91164,Galway,110068-00012-1,1,4380_7778208_4250302,4380_1378 -4380_78138,292,4380_91165,Galway,110065-00016-1,1,4380_7778208_4250302,4380_1378 -4380_78138,290,4380_91166,Galway,110067-00015-1,1,4380_7778208_4250302,4380_1378 -4380_78138,294,4380_91167,Galway,110069-00018-1,1,4380_7778208_4250302,4380_1378 -4380_78138,293,4380_91168,Galway,110060-00017-1,1,4380_7778208_4250302,4380_1378 -4380_78138,296,4380_91169,Galway,110063-00021-1,1,4380_7778208_4250302,4380_1379 -4380_78147,286,4380_9117,Cavan,6000-00010-1,0,4380_7778208_1090114,4380_164 -4380_78138,295,4380_91170,Galway,110058-00019-1,1,4380_7778208_4250302,4380_1378 -4380_78073,285,4380_91175,Castlerea,110097-00009-1,0,4380_7778208_4290301,4380_1380 -4380_78073,288,4380_91177,Castlerea,110099-00011-1,0,4380_7778208_4290301,4380_1380 -4380_78073,286,4380_91178,Castlerea,110093-00010-1,0,4380_7778208_4290301,4380_1381 -4380_78073,291,4380_91179,Castlerea,110101-00013-1,0,4380_7778208_4290301,4380_1380 -4380_78147,297,4380_9118,Cavan,5364-00008-1,0,4380_7778208_1090102,4380_166 -4380_78073,287,4380_91180,Ballaghadereen,110095-00012-1,0,4380_7778208_4290301,4380_1382 -4380_78073,292,4380_91181,Castlerea,110094-00016-1,0,4380_7778208_4290301,4380_1381 -4380_78073,290,4380_91182,Castlerea,110098-00015-1,0,4380_7778208_4290301,4380_1380 -4380_78073,294,4380_91183,Ballaghadereen,110096-00018-1,0,4380_7778208_4290301,4380_1382 -4380_78073,293,4380_91184,Castlerea,110100-00017-1,0,4380_7778208_4290301,4380_1380 -4380_78073,296,4380_91185,Castlerea,110102-00021-1,0,4380_7778208_4290301,4380_1380 -4380_78073,287,4380_91187,Galway,110083-00012-1,1,4380_7778208_4290301,4380_1385 -4380_78073,294,4380_91188,Galway,110084-00018-1,1,4380_7778208_4290301,4380_1385 -4380_78147,288,4380_9119,Cavan,6003-00011-1,0,4380_7778208_1090114,4380_164 -4380_78073,285,4380_91192,Galway,110089-00009-1,1,4380_7778208_4290301,4380_1383 -4380_78073,288,4380_91194,Galway,110091-00011-1,1,4380_7778208_4290301,4380_1383 -4380_78073,286,4380_91195,Galway,110085-00010-1,1,4380_7778208_4290301,4380_1384 -4380_78073,291,4380_91196,Galway,110087-00013-1,1,4380_7778208_4290301,4380_1383 -4380_78073,292,4380_91197,Galway,110086-00016-1,1,4380_7778208_4290301,4380_1384 -4380_78073,290,4380_91198,Galway,110090-00015-1,1,4380_7778208_4290301,4380_1383 -4380_78073,293,4380_91199,Galway,110092-00017-1,1,4380_7778208_4290301,4380_1383 -4380_78113,295,4380_912,Dundalk,50038-00019-1,0,4380_7778208_1000906,4380_11 -4380_78147,287,4380_9120,Cavan,6006-00012-1,0,4380_7778208_1090114,4380_164 -4380_78073,296,4380_91200,Galway,110088-00021-1,1,4380_7778208_4290301,4380_1383 -4380_78074,285,4380_91206,Gort,110137-00009-1,0,4380_7778208_4340301,4380_1386 -4380_78074,288,4380_91207,Gort,110135-00011-1,0,4380_7778208_4340301,4380_1386 -4380_78074,286,4380_91208,Gort,110141-00010-1,0,4380_7778208_4340301,4380_1386 -4380_78074,289,4380_91209,Gort,110133-00014-1,0,4380_7778208_4340301,4380_1386 -4380_78147,289,4380_9121,Cavan,5994-00014-1,0,4380_7778208_1090114,4380_164 -4380_78074,287,4380_91210,Gort,110139-00012-1,0,4380_7778208_4340301,4380_1386 -4380_78074,292,4380_91211,Gort,110142-00016-1,0,4380_7778208_4340301,4380_1386 -4380_78074,290,4380_91212,Gort,110138-00015-1,0,4380_7778208_4340301,4380_1386 -4380_78074,294,4380_91213,Gort,110140-00018-1,0,4380_7778208_4340301,4380_1386 -4380_78074,293,4380_91214,Gort,110136-00017-1,0,4380_7778208_4340301,4380_1386 -4380_78074,295,4380_91215,Gort,110134-00019-1,0,4380_7778208_4340301,4380_1386 -4380_78147,290,4380_9122,Cavan,55211-00015-1,0,4380_7778208_1090114,4380_164 -4380_78074,285,4380_91221,Galway,110105-00009-1,1,4380_7778208_4340301,4380_1387 -4380_78074,288,4380_91222,Galway,110107-00011-1,1,4380_7778208_4340301,4380_1387 -4380_78074,286,4380_91223,Galway,110111-00010-1,1,4380_7778208_4340301,4380_1387 -4380_78074,289,4380_91224,Galway,110103-00014-1,1,4380_7778208_4340301,4380_1387 -4380_78074,287,4380_91225,Galway,110109-00012-1,1,4380_7778208_4340301,4380_1387 -4380_78074,292,4380_91226,Galway,110112-00016-1,1,4380_7778208_4340301,4380_1387 -4380_78074,290,4380_91227,Galway,110106-00015-1,1,4380_7778208_4340301,4380_1387 -4380_78074,294,4380_91228,Galway,110110-00018-1,1,4380_7778208_4340301,4380_1387 -4380_78074,293,4380_91229,Galway,110108-00017-1,1,4380_7778208_4340301,4380_1387 -4380_78147,291,4380_9123,Cavan,5496-00013-1,0,4380_7778208_1090104,4380_168 -4380_78074,295,4380_91230,Galway,110104-00019-1,1,4380_7778208_4340301,4380_1387 -4380_78075,285,4380_91236,Westport,110275-00009-1,0,4380_7778208_4401201,4380_1389 -4380_78075,288,4380_91237,Westport,110273-00011-1,0,4380_7778208_4401201,4380_1389 -4380_78075,286,4380_91238,Westport,110277-00010-1,0,4380_7778208_4401201,4380_1389 -4380_78075,289,4380_91239,Westport,110271-00014-1,0,4380_7778208_4401201,4380_1389 -4380_78147,292,4380_9124,Cavan,55215-00016-1,0,4380_7778208_1090114,4380_164 -4380_78075,287,4380_91240,Westport,110279-00012-1,0,4380_7778208_4401201,4380_1389 -4380_78075,292,4380_91241,Westport,110278-00016-1,0,4380_7778208_4401201,4380_1389 -4380_78075,290,4380_91242,Westport,110276-00015-1,0,4380_7778208_4401201,4380_1389 -4380_78075,294,4380_91243,Westport,110280-00018-1,0,4380_7778208_4401201,4380_1389 -4380_78075,293,4380_91244,Westport,110274-00017-1,0,4380_7778208_4401201,4380_1389 -4380_78075,295,4380_91245,Westport,110272-00019-1,0,4380_7778208_4401201,4380_1389 -4380_78075,291,4380_91247,Westport,110281-00013-1,0,4380_7778208_4401201,4380_1389 -4380_78075,296,4380_91248,Westport,110282-00021-1,0,4380_7778208_4401201,4380_1389 -4380_78147,293,4380_9125,Cavan,55213-00017-1,0,4380_7778208_1090114,4380_164 -4380_78075,285,4380_91254,Westport,110215-00009-1,0,4380_7778208_4401003,4380_1392 -4380_78075,288,4380_91256,Westport,110211-00011-1,0,4380_7778208_4401003,4380_1392 -4380_78075,286,4380_91257,Westport,110217-00010-1,0,4380_7778208_4401003,4380_1392 -4380_78075,291,4380_91258,Westport,110221-00013-1,0,4380_7778208_4401003,4380_1395 -4380_78075,289,4380_91259,Westport,110219-00014-1,0,4380_7778208_4401003,4380_1392 -4380_78147,294,4380_9126,Cavan,55214-00018-1,0,4380_7778208_1090114,4380_164 -4380_78075,287,4380_91260,Westport,110213-00012-1,0,4380_7778208_4401003,4380_1392 -4380_78075,292,4380_91261,Westport,110218-00016-1,0,4380_7778208_4401003,4380_1392 -4380_78075,290,4380_91262,Westport,110216-00015-1,0,4380_7778208_4401003,4380_1392 -4380_78075,294,4380_91263,Westport,110214-00018-1,0,4380_7778208_4401003,4380_1392 -4380_78075,293,4380_91264,Westport,110212-00017-1,0,4380_7778208_4401003,4380_1392 -4380_78075,296,4380_91265,Westport,110222-00021-1,0,4380_7778208_4401003,4380_1395 -4380_78075,295,4380_91266,Westport,110220-00019-1,0,4380_7778208_4401003,4380_1392 -4380_78075,297,4380_91268,Claremorris,110283-00008-1,0,4380_7778208_4401201,4380_1390 -4380_78147,295,4380_9127,Cavan,55212-00019-1,0,4380_7778208_1090114,4380_164 -4380_78075,297,4380_91275,Westport,110144-00008-1,0,4380_7778208_4401001,4380_1388 -4380_78075,285,4380_91276,Westport,110237-00009-1,0,4380_7778208_4401003,4380_1391 -4380_78075,288,4380_91278,Westport,110243-00011-1,0,4380_7778208_4401003,4380_1391 -4380_78075,286,4380_91279,Westport,110235-00010-1,0,4380_7778208_4401003,4380_1391 -4380_78147,296,4380_9128,Cavan,54808-00021-1,0,4380_7778208_1090104,4380_168 -4380_78075,291,4380_91280,Westport,110245-00013-1,0,4380_7778208_4401003,4380_1394 -4380_78075,289,4380_91281,Westport,110239-00014-1,0,4380_7778208_4401003,4380_1391 -4380_78075,287,4380_91282,Westport,110241-00012-1,0,4380_7778208_4401003,4380_1391 -4380_78075,292,4380_91283,Westport,110236-00016-1,0,4380_7778208_4401003,4380_1391 -4380_78075,290,4380_91284,Westport,110238-00015-1,0,4380_7778208_4401003,4380_1391 -4380_78075,294,4380_91285,Westport,110242-00018-1,0,4380_7778208_4401003,4380_1391 -4380_78075,293,4380_91286,Westport,110244-00017-1,0,4380_7778208_4401003,4380_1391 -4380_78075,296,4380_91287,Westport,110246-00021-1,0,4380_7778208_4401003,4380_1394 -4380_78075,295,4380_91288,Westport,110240-00019-1,0,4380_7778208_4401003,4380_1391 -4380_78075,285,4380_91294,Westport,110167-00009-1,0,4380_7778208_4401002,4380_1389 -4380_78075,288,4380_91296,Westport,110165-00011-1,0,4380_7778208_4401002,4380_1389 -4380_78075,286,4380_91297,Westport,110169-00010-1,0,4380_7778208_4401002,4380_1389 -4380_78075,291,4380_91298,Westport,110163-00013-1,0,4380_7778208_4401002,4380_1393 -4380_78075,289,4380_91299,Westport,110161-00014-1,0,4380_7778208_4401002,4380_1389 -4380_78075,287,4380_91300,Westport,110171-00012-1,0,4380_7778208_4401002,4380_1389 -4380_78075,292,4380_91301,Westport,110170-00016-1,0,4380_7778208_4401002,4380_1389 -4380_78075,290,4380_91302,Westport,110168-00015-1,0,4380_7778208_4401002,4380_1389 -4380_78075,294,4380_91303,Westport,110172-00018-1,0,4380_7778208_4401002,4380_1389 -4380_78075,293,4380_91304,Westport,110166-00017-1,0,4380_7778208_4401002,4380_1389 -4380_78075,296,4380_91305,Westport,110164-00021-1,0,4380_7778208_4401002,4380_1393 -4380_78075,295,4380_91306,Westport,110162-00019-1,0,4380_7778208_4401002,4380_1389 -4380_78075,297,4380_91313,Westport,110307-00008-1,0,4380_7778208_4401201,4380_1389 -4380_78075,285,4380_91314,Westport,110299-00009-1,0,4380_7778208_4401201,4380_1393 -4380_78075,288,4380_91316,Westport,110308-00011-1,0,4380_7778208_4401201,4380_1393 -4380_78075,286,4380_91317,Westport,110303-00010-1,0,4380_7778208_4401201,4380_1393 -4380_78075,291,4380_91318,Westport,110297-00013-1,0,4380_7778208_4401201,4380_1396 -4380_78075,289,4380_91319,Westport,110305-00014-1,0,4380_7778208_4401201,4380_1393 -4380_78075,287,4380_91320,Westport,110301-00012-1,0,4380_7778208_4401201,4380_1393 -4380_78075,292,4380_91321,Westport,110304-00016-1,0,4380_7778208_4401201,4380_1393 -4380_78075,290,4380_91322,Westport,110300-00015-1,0,4380_7778208_4401201,4380_1393 -4380_78075,294,4380_91323,Westport,110302-00018-1,0,4380_7778208_4401201,4380_1393 -4380_78075,293,4380_91324,Westport,110309-00017-1,0,4380_7778208_4401201,4380_1393 -4380_78075,296,4380_91325,Westport,110298-00021-1,0,4380_7778208_4401201,4380_1396 -4380_78075,295,4380_91326,Westport,110306-00019-1,0,4380_7778208_4401201,4380_1393 -4380_78075,297,4380_91333,Westport,110186-00008-1,0,4380_7778208_4401002,4380_1389 -4380_78075,285,4380_91334,Westport,110259-00009-1,0,4380_7778208_4401003,4380_1393 -4380_78075,288,4380_91336,Westport,110269-00011-1,0,4380_7778208_4401003,4380_1393 -4380_78075,286,4380_91337,Westport,110261-00010-1,0,4380_7778208_4401003,4380_1393 -4380_78075,291,4380_91338,Westport,110267-00013-1,0,4380_7778208_4401003,4380_1396 -4380_78075,289,4380_91339,Westport,110263-00014-1,0,4380_7778208_4401003,4380_1393 -4380_78075,287,4380_91340,Westport,110265-00012-1,0,4380_7778208_4401003,4380_1393 -4380_78075,292,4380_91341,Westport,110262-00016-1,0,4380_7778208_4401003,4380_1393 -4380_78075,290,4380_91342,Westport,110260-00015-1,0,4380_7778208_4401003,4380_1393 -4380_78075,294,4380_91343,Westport,110266-00018-1,0,4380_7778208_4401003,4380_1393 -4380_78075,293,4380_91344,Westport,110270-00017-1,0,4380_7778208_4401003,4380_1393 -4380_78075,296,4380_91345,Westport,110268-00021-1,0,4380_7778208_4401003,4380_1396 -4380_78075,295,4380_91346,Westport,110264-00019-1,0,4380_7778208_4401003,4380_1393 -4380_78147,285,4380_9135,Cavan,6079-00009-1,0,4380_7778208_1090117,4380_163 -4380_78075,297,4380_91353,Westport,110148-00008-1,0,4380_7778208_4401001,4380_1388 -4380_78075,285,4380_91354,Westport,110191-00009-1,0,4380_7778208_4401002,4380_1391 -4380_78075,288,4380_91356,Westport,110197-00011-1,0,4380_7778208_4401002,4380_1391 -4380_78075,286,4380_91357,Westport,110189-00010-1,0,4380_7778208_4401002,4380_1391 -4380_78075,291,4380_91358,Westport,110193-00013-1,0,4380_7778208_4401002,4380_1394 -4380_78075,289,4380_91359,Westport,110195-00014-1,0,4380_7778208_4401002,4380_1391 -4380_78147,286,4380_9136,Cavan,6084-00010-1,0,4380_7778208_1090117,4380_163 -4380_78075,287,4380_91360,Westport,110187-00012-1,0,4380_7778208_4401002,4380_1391 -4380_78075,292,4380_91361,Westport,110190-00016-1,0,4380_7778208_4401002,4380_1391 -4380_78075,290,4380_91362,Westport,110192-00015-1,0,4380_7778208_4401002,4380_1391 -4380_78075,294,4380_91363,Westport,110188-00018-1,0,4380_7778208_4401002,4380_1391 -4380_78075,293,4380_91364,Westport,110198-00017-1,0,4380_7778208_4401002,4380_1391 -4380_78075,296,4380_91365,Westport,110194-00021-1,0,4380_7778208_4401002,4380_1394 -4380_78075,295,4380_91366,Westport,110196-00019-1,0,4380_7778208_4401002,4380_1391 -4380_78147,288,4380_9137,Cavan,6089-00011-1,0,4380_7778208_1090117,4380_163 -4380_78075,285,4380_91372,Athlone,110159-00009-1,1,4380_7778208_4401002,4380_1398 -4380_78075,288,4380_91374,Athlone,110153-00011-1,1,4380_7778208_4401002,4380_1398 -4380_78075,286,4380_91375,Athlone,110157-00010-1,1,4380_7778208_4401002,4380_1398 -4380_78075,291,4380_91376,Athlone,110149-00013-1,1,4380_7778208_4401002,4380_1402 -4380_78075,289,4380_91377,Athlone,110151-00014-1,1,4380_7778208_4401002,4380_1398 -4380_78075,287,4380_91378,Athlone,110155-00012-1,1,4380_7778208_4401002,4380_1398 -4380_78075,292,4380_91379,Athlone,110158-00016-1,1,4380_7778208_4401002,4380_1398 -4380_78147,287,4380_9138,Cavan,6094-00012-1,0,4380_7778208_1090117,4380_163 -4380_78075,290,4380_91380,Athlone,110160-00015-1,1,4380_7778208_4401002,4380_1398 -4380_78075,294,4380_91381,Athlone,110156-00018-1,1,4380_7778208_4401002,4380_1398 -4380_78075,293,4380_91382,Athlone,110154-00017-1,1,4380_7778208_4401002,4380_1398 -4380_78075,296,4380_91383,Athlone,110150-00021-1,1,4380_7778208_4401002,4380_1402 -4380_78075,295,4380_91384,Athlone,110152-00019-1,1,4380_7778208_4401002,4380_1398 -4380_78147,289,4380_9139,Cavan,6074-00014-1,0,4380_7778208_1090117,4380_163 -4380_78075,285,4380_91390,Castlebar,110207-00009-1,1,4380_7778208_4401003,4380_1401 -4380_78075,288,4380_91392,Castlebar,110201-00011-1,1,4380_7778208_4401003,4380_1401 -4380_78075,286,4380_91393,Castlebar,110203-00010-1,1,4380_7778208_4401003,4380_1401 -4380_78075,291,4380_91394,Castlebar,110205-00013-1,1,4380_7778208_4401003,4380_1404 -4380_78075,289,4380_91395,Castlebar,110199-00014-1,1,4380_7778208_4401003,4380_1401 -4380_78075,287,4380_91396,Castlebar,110209-00012-1,1,4380_7778208_4401003,4380_1401 -4380_78075,292,4380_91397,Castlebar,110204-00016-1,1,4380_7778208_4401003,4380_1401 -4380_78075,290,4380_91398,Castlebar,110208-00015-1,1,4380_7778208_4401003,4380_1401 -4380_78075,294,4380_91399,Castlebar,110210-00018-1,1,4380_7778208_4401003,4380_1401 -4380_78113,291,4380_914,Dundalk,50039-00013-1,0,4380_7778208_1000906,4380_11 -4380_78147,290,4380_9140,Cavan,55283-00015-1,0,4380_7778208_1090117,4380_163 -4380_78075,293,4380_91400,Castlebar,110202-00017-1,1,4380_7778208_4401003,4380_1401 -4380_78075,296,4380_91401,Castlebar,110206-00021-1,1,4380_7778208_4401003,4380_1404 -4380_78075,295,4380_91402,Castlebar,110200-00019-1,1,4380_7778208_4401003,4380_1401 -4380_78075,285,4380_91408,Knock Airport,110227-00009-1,1,4380_7778208_4401003,4380_1397 -4380_78147,291,4380_9141,Cavan,5633-00013-1,0,4380_7778208_1090106,4380_165 -4380_78075,288,4380_91410,Knock Airport,110233-00011-1,1,4380_7778208_4401003,4380_1397 -4380_78075,286,4380_91411,Knock Airport,110229-00010-1,1,4380_7778208_4401003,4380_1397 -4380_78075,291,4380_91412,Knock Airport,110225-00013-1,1,4380_7778208_4401003,4380_1400 -4380_78075,289,4380_91413,Knock Airport,110223-00014-1,1,4380_7778208_4401003,4380_1397 -4380_78075,287,4380_91414,Knock Airport,110231-00012-1,1,4380_7778208_4401003,4380_1397 -4380_78075,292,4380_91415,Knock Airport,110230-00016-1,1,4380_7778208_4401003,4380_1397 -4380_78075,290,4380_91416,Knock Airport,110228-00015-1,1,4380_7778208_4401003,4380_1397 -4380_78075,294,4380_91417,Knock Airport,110232-00018-1,1,4380_7778208_4401003,4380_1397 -4380_78075,293,4380_91418,Knock Airport,110234-00017-1,1,4380_7778208_4401003,4380_1397 -4380_78075,296,4380_91419,Knock Airport,110226-00021-1,1,4380_7778208_4401003,4380_1400 -4380_78147,292,4380_9142,Cavan,55281-00016-1,0,4380_7778208_1090117,4380_163 -4380_78075,295,4380_91420,Knock Airport,110224-00019-1,1,4380_7778208_4401003,4380_1397 -4380_78075,297,4380_91422,Knock Airport,110143-00008-1,1,4380_7778208_4401001,4380_1397 -4380_78075,297,4380_91424,Athlone,110284-00008-1,1,4380_7778208_4401201,4380_1399 -4380_78147,293,4380_9143,Cavan,55280-00017-1,0,4380_7778208_1090117,4380_163 -4380_78075,285,4380_91430,Athlone,110291-00009-1,1,4380_7778208_4401201,4380_1398 -4380_78075,288,4380_91432,Athlone,110285-00011-1,1,4380_7778208_4401201,4380_1398 -4380_78075,286,4380_91433,Athlone,110289-00010-1,1,4380_7778208_4401201,4380_1398 -4380_78075,291,4380_91434,Athlone,110295-00013-1,1,4380_7778208_4401201,4380_1402 -4380_78075,289,4380_91435,Athlone,110287-00014-1,1,4380_7778208_4401201,4380_1398 -4380_78075,287,4380_91436,Athlone,110293-00012-1,1,4380_7778208_4401201,4380_1398 -4380_78075,292,4380_91437,Athlone,110290-00016-1,1,4380_7778208_4401201,4380_1398 -4380_78075,290,4380_91438,Athlone,110292-00015-1,1,4380_7778208_4401201,4380_1398 -4380_78075,294,4380_91439,Athlone,110294-00018-1,1,4380_7778208_4401201,4380_1398 -4380_78147,294,4380_9144,Cavan,55279-00018-1,0,4380_7778208_1090117,4380_163 -4380_78075,293,4380_91440,Athlone,110286-00017-1,1,4380_7778208_4401201,4380_1398 -4380_78075,296,4380_91441,Athlone,110296-00021-1,1,4380_7778208_4401201,4380_1402 -4380_78075,295,4380_91442,Athlone,110288-00019-1,1,4380_7778208_4401201,4380_1398 -4380_78075,297,4380_91449,Athlone,110173-00008-1,1,4380_7778208_4401002,4380_1398 -4380_78147,295,4380_9145,Cavan,55282-00019-1,0,4380_7778208_1090117,4380_163 -4380_78075,285,4380_91450,Athlone,110251-00009-1,1,4380_7778208_4401003,4380_1402 -4380_78075,288,4380_91452,Athlone,110249-00011-1,1,4380_7778208_4401003,4380_1402 -4380_78075,286,4380_91453,Athlone,110253-00010-1,1,4380_7778208_4401003,4380_1402 -4380_78075,291,4380_91454,Athlone,110247-00013-1,1,4380_7778208_4401003,4380_1405 -4380_78075,289,4380_91455,Athlone,110257-00014-1,1,4380_7778208_4401003,4380_1402 -4380_78075,287,4380_91456,Athlone,110255-00012-1,1,4380_7778208_4401003,4380_1402 -4380_78075,292,4380_91457,Athlone,110254-00016-1,1,4380_7778208_4401003,4380_1402 -4380_78075,290,4380_91458,Athlone,110252-00015-1,1,4380_7778208_4401003,4380_1402 -4380_78075,294,4380_91459,Athlone,110256-00018-1,1,4380_7778208_4401003,4380_1402 -4380_78147,296,4380_9146,Cavan,54917-00021-1,0,4380_7778208_1090106,4380_165 -4380_78075,293,4380_91460,Athlone,110250-00017-1,1,4380_7778208_4401003,4380_1402 -4380_78075,296,4380_91461,Athlone,110248-00021-1,1,4380_7778208_4401003,4380_1405 -4380_78075,295,4380_91462,Athlone,110258-00019-1,1,4380_7778208_4401003,4380_1402 -4380_78075,297,4380_91469,Knock Airport,110147-00008-1,1,4380_7778208_4401001,4380_1397 -4380_78075,285,4380_91470,Knock Airport,110174-00009-1,1,4380_7778208_4401002,4380_1400 -4380_78075,288,4380_91472,Knock Airport,110176-00011-1,1,4380_7778208_4401002,4380_1400 -4380_78075,286,4380_91473,Knock Airport,110184-00010-1,1,4380_7778208_4401002,4380_1400 -4380_78075,291,4380_91474,Knock Airport,110182-00013-1,1,4380_7778208_4401002,4380_1403 -4380_78075,289,4380_91475,Knock Airport,110180-00014-1,1,4380_7778208_4401002,4380_1400 -4380_78075,287,4380_91476,Knock Airport,110178-00012-1,1,4380_7778208_4401002,4380_1400 -4380_78075,292,4380_91477,Knock Airport,110185-00016-1,1,4380_7778208_4401002,4380_1400 -4380_78075,290,4380_91478,Knock Airport,110175-00015-1,1,4380_7778208_4401002,4380_1400 -4380_78075,294,4380_91479,Knock Airport,110179-00018-1,1,4380_7778208_4401002,4380_1400 -4380_78075,293,4380_91480,Knock Airport,110177-00017-1,1,4380_7778208_4401002,4380_1400 -4380_78075,296,4380_91481,Knock Airport,110183-00021-1,1,4380_7778208_4401002,4380_1403 -4380_78075,295,4380_91482,Knock Airport,110181-00019-1,1,4380_7778208_4401002,4380_1400 -4380_78075,297,4380_91484,Athlone,110310-00008-1,1,4380_7778208_4401201,4380_1398 -4380_78075,291,4380_91486,Athlone,110311-00013-1,1,4380_7778208_4401201,4380_1406 -4380_78075,296,4380_91487,Athlone,110312-00021-1,1,4380_7778208_4401201,4380_1406 -4380_78075,285,4380_91493,Athlone,110319-00009-1,1,4380_7778208_4401201,4380_1398 -4380_78075,288,4380_91494,Athlone,110313-00011-1,1,4380_7778208_4401201,4380_1398 -4380_78075,286,4380_91495,Athlone,110321-00010-1,1,4380_7778208_4401201,4380_1398 -4380_78075,289,4380_91496,Athlone,110315-00014-1,1,4380_7778208_4401201,4380_1398 -4380_78075,287,4380_91497,Athlone,110317-00012-1,1,4380_7778208_4401201,4380_1398 -4380_78075,292,4380_91498,Athlone,110322-00016-1,1,4380_7778208_4401201,4380_1398 -4380_78075,290,4380_91499,Athlone,110320-00015-1,1,4380_7778208_4401201,4380_1398 -4380_78113,296,4380_915,Dundalk,50040-00021-1,0,4380_7778208_1000906,4380_11 -4380_78075,294,4380_91500,Athlone,110318-00018-1,1,4380_7778208_4401201,4380_1398 -4380_78075,293,4380_91501,Athlone,110314-00017-1,1,4380_7778208_4401201,4380_1398 -4380_78075,295,4380_91502,Athlone,110316-00019-1,1,4380_7778208_4401201,4380_1398 -4380_78076,285,4380_91504,Castlebar,110325-00009-1,0,4380_7778208_4421001,4380_1407 -4380_78076,290,4380_91505,Castlebar,110326-00015-1,0,4380_7778208_4421001,4380_1407 -4380_78076,285,4380_91507,Castlebar,110327-00009-1,0,4380_7778208_4421001,4380_1408 -4380_78076,290,4380_91508,Castlebar,110328-00015-1,0,4380_7778208_4421001,4380_1408 -4380_78076,285,4380_91510,Castlebar,110331-00009-1,0,4380_7778208_4421001,4380_1408 -4380_78076,290,4380_91511,Castlebar,110332-00015-1,0,4380_7778208_4421001,4380_1408 -4380_78076,285,4380_91513,Castlebar,110329-00009-1,1,4380_7778208_4421001,4380_1409 -4380_78076,290,4380_91514,Castlebar,110330-00015-1,1,4380_7778208_4421001,4380_1409 -4380_78076,285,4380_91516,Castlebar,110333-00009-1,1,4380_7778208_4421001,4380_1409 -4380_78076,290,4380_91517,Castlebar,110334-00015-1,1,4380_7778208_4421001,4380_1409 -4380_78076,285,4380_91519,Castlebar,110335-00009-1,1,4380_7778208_4421001,4380_1410 -4380_78076,290,4380_91520,Castlebar,110336-00015-1,1,4380_7778208_4421001,4380_1410 -4380_78077,287,4380_91522,Bus Eireann,114978-00012-1,0,4380_7778208_44388801,4380_1411 -4380_78077,294,4380_91523,Bus Eireann,114979-00018-1,0,4380_7778208_44388801,4380_1411 -4380_78077,287,4380_91525,Ballina,114972-00012-1,1,4380_7778208_44388801,4380_1412 -4380_78077,294,4380_91526,Ballina,114973-00018-1,1,4380_7778208_44388801,4380_1412 -4380_78078,287,4380_91528,Monaghan,110359-00012-1,0,4380_7778208_4451001,4380_1415 -4380_78078,294,4380_91529,Monaghan,110360-00018-1,0,4380_7778208_4451001,4380_1415 -4380_78078,289,4380_91531,Ballina,110363-00014-1,0,4380_7778208_4451001,4380_1413 -4380_78078,295,4380_91532,Ballina,110364-00019-1,0,4380_7778208_4451001,4380_1413 -4380_78078,287,4380_91534,Monaghan,110369-00012-1,0,4380_7778208_4451001,4380_1416 -4380_78078,294,4380_91535,Monaghan,110370-00018-1,0,4380_7778208_4451001,4380_1416 -4380_78078,289,4380_91537,Ballina,110692-00014-1,0,4380_7778208_4511001,4380_1414 -4380_78078,295,4380_91538,Ballina,110693-00019-1,0,4380_7778208_4511001,4380_1414 -4380_78147,285,4380_9154,Cavan,6777-00009-1,0,4380_7778208_1090901,4380_164 -4380_78078,287,4380_91540,Ballina,110361-00012-1,1,4380_7778208_4451001,4380_1419 -4380_78078,294,4380_91541,Ballina,110362-00018-1,1,4380_7778208_4451001,4380_1419 -4380_78078,289,4380_91543,Ballina,110365-00014-1,1,4380_7778208_4451001,4380_1417 -4380_78078,295,4380_91544,Ballina,110366-00019-1,1,4380_7778208_4451001,4380_1417 -4380_78078,289,4380_91546,Ballina,110694-00014-1,1,4380_7778208_4511001,4380_1418 -4380_78078,295,4380_91547,Ballina,110695-00019-1,1,4380_7778208_4511001,4380_1418 -4380_78078,287,4380_91549,Ballina,110377-00012-1,1,4380_7778208_4451001,4380_1420 -4380_78147,286,4380_9155,Cavan,6783-00010-1,0,4380_7778208_1090901,4380_164 -4380_78078,294,4380_91550,Ballina,110378-00018-1,1,4380_7778208_4451001,4380_1420 -4380_78079,285,4380_91556,Ballycastle,110345-00009-1,0,4380_7778208_4451001,4380_1421 -4380_78079,288,4380_91557,Ballycastle,110347-00011-1,0,4380_7778208_4451001,4380_1421 -4380_78079,286,4380_91558,Ballycastle,110339-00010-1,0,4380_7778208_4451001,4380_1421 -4380_78079,289,4380_91559,Ballycastle,110341-00014-1,0,4380_7778208_4451001,4380_1421 -4380_78147,297,4380_9156,Cavan,6818-00008-1,0,4380_7778208_1090901,4380_166 -4380_78079,287,4380_91560,Ballycastle,110343-00012-1,0,4380_7778208_4451001,4380_1421 -4380_78079,292,4380_91561,Ballycastle,110340-00016-1,0,4380_7778208_4451001,4380_1421 -4380_78079,290,4380_91562,Ballycastle,110346-00015-1,0,4380_7778208_4451001,4380_1421 -4380_78079,294,4380_91563,Ballycastle,110344-00018-1,0,4380_7778208_4451001,4380_1421 -4380_78079,293,4380_91564,Ballycastle,110348-00017-1,0,4380_7778208_4451001,4380_1421 -4380_78079,295,4380_91565,Ballycastle,110342-00019-1,0,4380_7778208_4451001,4380_1421 -4380_78079,287,4380_91567,Ballycastle,114974-00012-1,0,4380_7778208_44388801,4380_1425 -4380_78079,294,4380_91568,Ballycastle,114975-00018-1,0,4380_7778208_44388801,4380_1425 -4380_78147,288,4380_9157,Cavan,6789-00011-1,0,4380_7778208_1090901,4380_164 -4380_78079,285,4380_91574,Ballycastle,110391-00009-1,0,4380_7778208_4451001,4380_1422 -4380_78079,288,4380_91575,Ballycastle,110393-00011-1,0,4380_7778208_4451001,4380_1422 -4380_78079,286,4380_91576,Ballycastle,110387-00010-1,0,4380_7778208_4451001,4380_1422 -4380_78079,289,4380_91577,Ballycastle,110395-00014-1,0,4380_7778208_4451001,4380_1422 -4380_78079,287,4380_91578,Ballycastle,110389-00012-1,0,4380_7778208_4451001,4380_1424 -4380_78079,292,4380_91579,Ballycastle,110388-00016-1,0,4380_7778208_4451001,4380_1422 -4380_78147,287,4380_9158,Cavan,6795-00012-1,0,4380_7778208_1090901,4380_164 -4380_78079,290,4380_91580,Ballycastle,110392-00015-1,0,4380_7778208_4451001,4380_1422 -4380_78079,294,4380_91581,Ballycastle,110390-00018-1,0,4380_7778208_4451001,4380_1424 -4380_78079,293,4380_91582,Ballycastle,110394-00017-1,0,4380_7778208_4451001,4380_1422 -4380_78079,295,4380_91583,Ballycastle,110396-00019-1,0,4380_7778208_4451001,4380_1422 -4380_78079,285,4380_91589,Ballycastle,110724-00009-1,0,4380_7778208_4551001,4380_1423 -4380_78147,289,4380_9159,Cavan,6771-00014-1,0,4380_7778208_1090901,4380_164 -4380_78079,288,4380_91590,Ballycastle,110712-00011-1,0,4380_7778208_4511004,4380_1423 -4380_78079,286,4380_91591,Ballycastle,110696-00010-1,0,4380_7778208_4511001,4380_1423 -4380_78079,289,4380_91592,Ballycastle,110700-00014-1,0,4380_7778208_4511001,4380_1423 -4380_78079,287,4380_91593,Ballycastle,110698-00012-1,0,4380_7778208_4511001,4380_1423 -4380_78079,292,4380_91594,Ballycastle,110697-00016-1,0,4380_7778208_4511001,4380_1423 -4380_78079,290,4380_91595,Ballycastle,110725-00015-1,0,4380_7778208_4551001,4380_1423 -4380_78079,294,4380_91596,Ballycastle,110699-00018-1,0,4380_7778208_4511001,4380_1423 -4380_78079,293,4380_91597,Ballycastle,110713-00017-1,0,4380_7778208_4511004,4380_1423 -4380_78079,295,4380_91598,Ballycastle,110701-00019-1,0,4380_7778208_4511001,4380_1423 -4380_78147,290,4380_9160,Cavan,55326-00015-1,0,4380_7778208_1090901,4380_164 -4380_78079,285,4380_91604,Ballina,110349-00009-1,1,4380_7778208_4451001,4380_1426 -4380_78079,288,4380_91605,Ballina,110357-00011-1,1,4380_7778208_4451001,4380_1426 -4380_78079,286,4380_91606,Ballina,110351-00010-1,1,4380_7778208_4451001,4380_1426 -4380_78079,289,4380_91607,Ballina,110353-00014-1,1,4380_7778208_4451001,4380_1426 -4380_78079,287,4380_91608,Ballina,110355-00012-1,1,4380_7778208_4451001,4380_1426 -4380_78079,292,4380_91609,Ballina,110352-00016-1,1,4380_7778208_4451001,4380_1426 -4380_78147,291,4380_9161,Cavan,6849-00013-1,0,4380_7778208_1090902,4380_168 -4380_78079,290,4380_91610,Ballina,110350-00015-1,1,4380_7778208_4451001,4380_1426 -4380_78079,294,4380_91611,Ballina,110356-00018-1,1,4380_7778208_4451001,4380_1426 -4380_78079,293,4380_91612,Ballina,110358-00017-1,1,4380_7778208_4451001,4380_1426 -4380_78079,295,4380_91613,Ballina,110354-00019-1,1,4380_7778208_4451001,4380_1426 -4380_78079,287,4380_91615,Ballina,114976-00012-1,1,4380_7778208_44388801,4380_1428 -4380_78079,294,4380_91616,Ballina,114977-00018-1,1,4380_7778208_44388801,4380_1428 -4380_78147,292,4380_9162,Cavan,55327-00016-1,0,4380_7778208_1090901,4380_164 -4380_78079,285,4380_91621,Ballina,110397-00009-1,1,4380_7778208_4451001,4380_1426 -4380_78079,288,4380_91622,Ballina,110399-00011-1,1,4380_7778208_4451001,4380_1426 -4380_78079,286,4380_91623,Ballina,110403-00010-1,1,4380_7778208_4451001,4380_1426 -4380_78079,289,4380_91624,Ballina,110401-00014-1,1,4380_7778208_4451001,4380_1426 -4380_78079,292,4380_91625,Ballina,110404-00016-1,1,4380_7778208_4451001,4380_1426 -4380_78079,290,4380_91626,Ballina,110398-00015-1,1,4380_7778208_4451001,4380_1426 -4380_78079,293,4380_91627,Ballina,110400-00017-1,1,4380_7778208_4451001,4380_1426 -4380_78079,295,4380_91628,Ballina,110402-00019-1,1,4380_7778208_4451001,4380_1426 -4380_78147,293,4380_9163,Cavan,55325-00017-1,0,4380_7778208_1090901,4380_164 -4380_78079,287,4380_91630,Ballina,110405-00012-1,1,4380_7778208_4451001,4380_1426 -4380_78079,294,4380_91631,Ballina,110406-00018-1,1,4380_7778208_4451001,4380_1426 -4380_78079,285,4380_91637,Ballina,110726-00009-1,1,4380_7778208_4551001,4380_1427 -4380_78079,288,4380_91638,Ballina,110714-00011-1,1,4380_7778208_4511004,4380_1427 -4380_78079,286,4380_91639,Ballina,110706-00010-1,1,4380_7778208_4511001,4380_1427 -4380_78147,294,4380_9164,Cavan,55328-00018-1,0,4380_7778208_1090901,4380_164 -4380_78079,289,4380_91640,Ballina,110704-00014-1,1,4380_7778208_4511001,4380_1427 -4380_78079,287,4380_91641,Ballina,110702-00012-1,1,4380_7778208_4511001,4380_1427 -4380_78079,292,4380_91642,Ballina,110707-00016-1,1,4380_7778208_4511001,4380_1427 -4380_78079,290,4380_91643,Ballina,110727-00015-1,1,4380_7778208_4551001,4380_1427 -4380_78079,294,4380_91644,Ballina,110703-00018-1,1,4380_7778208_4511001,4380_1427 -4380_78079,293,4380_91645,Ballina,110715-00017-1,1,4380_7778208_4511004,4380_1427 -4380_78079,295,4380_91646,Ballina,110705-00019-1,1,4380_7778208_4511001,4380_1427 -4380_78147,295,4380_9165,Cavan,55330-00019-1,0,4380_7778208_1090901,4380_164 -4380_78080,297,4380_91653,Belmullet,110490-00008-1,0,4380_7778208_4461002,4380_1429 -4380_78080,285,4380_91654,Belmullet,110423-00009-1,0,4380_7778208_4461001,4380_1431 -4380_78080,288,4380_91656,Belmullet,110421-00011-1,0,4380_7778208_4461001,4380_1431 -4380_78080,286,4380_91657,Belmullet,110417-00010-1,0,4380_7778208_4461001,4380_1431 -4380_78080,291,4380_91658,Belmullet,110491-00013-1,0,4380_7778208_4461002,4380_1431 -4380_78080,289,4380_91659,Belmullet,110419-00014-1,0,4380_7778208_4461001,4380_1431 -4380_78147,296,4380_9166,Cavan,55364-00021-1,0,4380_7778208_1090902,4380_168 -4380_78080,287,4380_91660,Belmullet,110425-00012-1,0,4380_7778208_4461001,4380_1431 -4380_78080,292,4380_91661,Belmullet,110418-00016-1,0,4380_7778208_4461001,4380_1431 -4380_78080,290,4380_91662,Belmullet,110424-00015-1,0,4380_7778208_4461001,4380_1431 -4380_78080,294,4380_91663,Belmullet,110426-00018-1,0,4380_7778208_4461001,4380_1431 -4380_78080,293,4380_91664,Belmullet,110422-00017-1,0,4380_7778208_4461001,4380_1431 -4380_78080,296,4380_91665,Belmullet,110492-00021-1,0,4380_7778208_4461002,4380_1431 -4380_78080,295,4380_91666,Belmullet,110420-00019-1,0,4380_7778208_4461001,4380_1431 -4380_78080,297,4380_91673,Blacksod,110498-00008-1,0,4380_7778208_4461002,4380_1430 -4380_78080,285,4380_91674,Blacksod,110443-00009-1,0,4380_7778208_4461001,4380_1432 -4380_78080,288,4380_91676,Blacksod,110439-00011-1,0,4380_7778208_4461001,4380_1432 -4380_78080,286,4380_91677,Blacksod,110441-00010-1,0,4380_7778208_4461001,4380_1432 -4380_78080,291,4380_91678,Blacksod,110496-00013-1,0,4380_7778208_4461002,4380_1433 -4380_78080,289,4380_91679,Blacksod,110445-00014-1,0,4380_7778208_4461001,4380_1432 -4380_78080,287,4380_91680,Blacksod,110437-00012-1,0,4380_7778208_4461001,4380_1432 -4380_78080,292,4380_91681,Blacksod,110442-00016-1,0,4380_7778208_4461001,4380_1432 -4380_78080,290,4380_91682,Blacksod,110444-00015-1,0,4380_7778208_4461001,4380_1432 -4380_78080,294,4380_91683,Blacksod,110438-00018-1,0,4380_7778208_4461001,4380_1432 -4380_78080,293,4380_91684,Blacksod,110440-00017-1,0,4380_7778208_4461001,4380_1432 -4380_78080,296,4380_91685,Blacksod,110497-00021-1,0,4380_7778208_4461002,4380_1433 -4380_78080,295,4380_91686,Blacksod,110446-00019-1,0,4380_7778208_4461001,4380_1432 -4380_78080,297,4380_91688,Blacksod,110502-00008-1,0,4380_7778208_4461002,4380_1430 -4380_78080,285,4380_91694,Blacksod,110459-00009-1,0,4380_7778208_4461001,4380_1430 -4380_78080,288,4380_91695,Blacksod,110461-00011-1,0,4380_7778208_4461001,4380_1430 -4380_78080,286,4380_91696,Blacksod,110463-00010-1,0,4380_7778208_4461001,4380_1430 -4380_78080,289,4380_91697,Blacksod,110465-00014-1,0,4380_7778208_4461001,4380_1430 -4380_78080,287,4380_91698,Blacksod,110457-00012-1,0,4380_7778208_4461001,4380_1430 -4380_78080,292,4380_91699,Blacksod,110464-00016-1,0,4380_7778208_4461001,4380_1430 -4380_78080,290,4380_91700,Blacksod,110460-00015-1,0,4380_7778208_4461001,4380_1430 -4380_78080,294,4380_91701,Blacksod,110458-00018-1,0,4380_7778208_4461001,4380_1430 -4380_78080,293,4380_91702,Blacksod,110462-00017-1,0,4380_7778208_4461001,4380_1430 -4380_78080,295,4380_91703,Blacksod,110466-00019-1,0,4380_7778208_4461001,4380_1430 -4380_78080,291,4380_91705,Blacksod,110503-00013-1,0,4380_7778208_4461002,4380_1430 -4380_78080,296,4380_91706,Blacksod,110504-00021-1,0,4380_7778208_4461002,4380_1430 -4380_78080,285,4380_91712,Blacksod,110477-00009-1,0,4380_7778208_4461001,4380_1430 -4380_78080,288,4380_91713,Blacksod,110483-00011-1,0,4380_7778208_4461001,4380_1430 -4380_78080,286,4380_91714,Blacksod,110485-00010-1,0,4380_7778208_4461001,4380_1430 -4380_78080,289,4380_91715,Blacksod,110481-00014-1,0,4380_7778208_4461001,4380_1430 -4380_78080,287,4380_91716,Blacksod,110479-00012-1,0,4380_7778208_4461001,4380_1430 -4380_78080,292,4380_91717,Blacksod,110486-00016-1,0,4380_7778208_4461001,4380_1430 -4380_78080,290,4380_91718,Blacksod,110478-00015-1,0,4380_7778208_4461001,4380_1430 -4380_78080,294,4380_91719,Blacksod,110480-00018-1,0,4380_7778208_4461001,4380_1430 -4380_78080,293,4380_91720,Blacksod,110484-00017-1,0,4380_7778208_4461001,4380_1430 -4380_78080,295,4380_91721,Blacksod,110482-00019-1,0,4380_7778208_4461001,4380_1430 -4380_78080,285,4380_91727,Ballina,110407-00009-1,1,4380_7778208_4461001,4380_1434 -4380_78080,288,4380_91729,Ballina,110411-00011-1,1,4380_7778208_4461001,4380_1434 -4380_78080,286,4380_91730,Ballina,110415-00010-1,1,4380_7778208_4461001,4380_1434 -4380_78080,291,4380_91731,Ballina,110487-00013-1,1,4380_7778208_4461002,4380_1438 -4380_78080,289,4380_91732,Ballina,110409-00014-1,1,4380_7778208_4461001,4380_1434 -4380_78080,287,4380_91733,Ballina,110413-00012-1,1,4380_7778208_4461001,4380_1434 -4380_78080,292,4380_91734,Ballina,110416-00016-1,1,4380_7778208_4461001,4380_1434 -4380_78080,290,4380_91735,Ballina,110408-00015-1,1,4380_7778208_4461001,4380_1434 -4380_78080,294,4380_91736,Ballina,110414-00018-1,1,4380_7778208_4461001,4380_1434 -4380_78080,293,4380_91737,Ballina,110412-00017-1,1,4380_7778208_4461001,4380_1434 -4380_78080,296,4380_91738,Ballina,110488-00021-1,1,4380_7778208_4461002,4380_1438 -4380_78080,295,4380_91739,Ballina,110410-00019-1,1,4380_7778208_4461001,4380_1434 -4380_78147,285,4380_9174,Cavan,6829-00009-1,0,4380_7778208_1090902,4380_165 -4380_78080,297,4380_91741,Ballina,110489-00008-1,1,4380_7778208_4461002,4380_1434 -4380_78080,285,4380_91747,Belmullet,117925-00009-1,1,4380_7778208_44688801,4380_1437 -4380_78080,288,4380_91748,Belmullet,117941-00011-1,1,4380_7778208_44688801,4380_1437 -4380_78080,286,4380_91749,Belmullet,114988-00010-1,1,4380_7778208_44688801,4380_1437 -4380_78147,286,4380_9175,Cavan,6834-00010-1,0,4380_7778208_1090902,4380_165 -4380_78080,289,4380_91750,Belmullet,114982-00014-1,1,4380_7778208_44688801,4380_1437 -4380_78080,287,4380_91751,Belmullet,114984-00012-1,1,4380_7778208_44688801,4380_1437 -4380_78080,290,4380_91752,Belmullet,117938-00015-1,1,4380_7778208_44688801,4380_1437 -4380_78080,292,4380_91753,Belmullet,114989-00016-1,1,4380_7778208_44688801,4380_1437 -4380_78080,294,4380_91754,Belmullet,114985-00018-1,1,4380_7778208_44688801,4380_1437 -4380_78080,293,4380_91755,Belmullet,114987-00017-1,1,4380_7778208_44688801,4380_1437 -4380_78080,295,4380_91756,Belmullet,114983-00019-1,1,4380_7778208_44688801,4380_1437 -4380_78147,297,4380_9176,Cavan,6862-00008-1,0,4380_7778208_1090902,4380_167 -4380_78080,297,4380_91763,Ballina,110495-00008-1,1,4380_7778208_4461002,4380_1435 -4380_78080,285,4380_91764,Ballina,110429-00009-1,1,4380_7778208_4461001,4380_1436 -4380_78080,288,4380_91766,Ballina,110427-00011-1,1,4380_7778208_4461001,4380_1436 -4380_78080,286,4380_91767,Ballina,110431-00010-1,1,4380_7778208_4461001,4380_1436 -4380_78080,291,4380_91768,Ballina,110493-00013-1,1,4380_7778208_4461002,4380_1439 -4380_78080,289,4380_91769,Ballina,110433-00014-1,1,4380_7778208_4461001,4380_1436 -4380_78147,288,4380_9177,Cavan,6839-00011-1,0,4380_7778208_1090902,4380_165 -4380_78080,287,4380_91770,Ballina,110435-00012-1,1,4380_7778208_4461001,4380_1436 -4380_78080,292,4380_91771,Ballina,110432-00016-1,1,4380_7778208_4461001,4380_1436 -4380_78080,290,4380_91772,Ballina,110430-00015-1,1,4380_7778208_4461001,4380_1436 -4380_78080,294,4380_91773,Ballina,110436-00018-1,1,4380_7778208_4461001,4380_1436 -4380_78080,293,4380_91774,Ballina,110428-00017-1,1,4380_7778208_4461001,4380_1436 -4380_78080,296,4380_91775,Ballina,110494-00021-1,1,4380_7778208_4461002,4380_1439 -4380_78080,295,4380_91776,Ballina,110434-00019-1,1,4380_7778208_4461001,4380_1436 -4380_78147,287,4380_9178,Cavan,6844-00012-1,0,4380_7778208_1090902,4380_165 -4380_78080,285,4380_91782,Ballina,110451-00009-1,1,4380_7778208_4461001,4380_1434 -4380_78080,288,4380_91783,Ballina,110453-00011-1,1,4380_7778208_4461001,4380_1434 -4380_78080,286,4380_91784,Ballina,110447-00010-1,1,4380_7778208_4461001,4380_1434 -4380_78080,289,4380_91785,Ballina,110455-00014-1,1,4380_7778208_4461001,4380_1434 -4380_78080,287,4380_91786,Ballina,110449-00012-1,1,4380_7778208_4461001,4380_1434 -4380_78080,292,4380_91787,Ballina,110448-00016-1,1,4380_7778208_4461001,4380_1434 -4380_78080,290,4380_91788,Ballina,110452-00015-1,1,4380_7778208_4461001,4380_1434 -4380_78080,294,4380_91789,Ballina,110450-00018-1,1,4380_7778208_4461001,4380_1434 -4380_78147,289,4380_9179,Cavan,6824-00014-1,0,4380_7778208_1090902,4380_165 -4380_78080,293,4380_91790,Ballina,110454-00017-1,1,4380_7778208_4461001,4380_1434 -4380_78080,295,4380_91791,Ballina,110456-00019-1,1,4380_7778208_4461001,4380_1434 -4380_78080,297,4380_91793,Ballina,110499-00008-1,1,4380_7778208_4461002,4380_1434 -4380_78080,291,4380_91795,Ballina,110500-00013-1,1,4380_7778208_4461002,4380_1434 -4380_78080,296,4380_91796,Ballina,110501-00021-1,1,4380_7778208_4461002,4380_1434 -4380_78147,290,4380_9180,Cavan,55366-00015-1,0,4380_7778208_1090902,4380_165 -4380_78080,285,4380_91802,Ballina,110475-00009-1,1,4380_7778208_4461001,4380_1434 -4380_78080,288,4380_91803,Ballina,110467-00011-1,1,4380_7778208_4461001,4380_1434 -4380_78080,286,4380_91804,Ballina,110469-00010-1,1,4380_7778208_4461001,4380_1434 -4380_78080,289,4380_91805,Ballina,110471-00014-1,1,4380_7778208_4461001,4380_1434 -4380_78080,287,4380_91806,Ballina,110473-00012-1,1,4380_7778208_4461001,4380_1434 -4380_78080,292,4380_91807,Ballina,110470-00016-1,1,4380_7778208_4461001,4380_1434 -4380_78080,290,4380_91808,Ballina,110476-00015-1,1,4380_7778208_4461001,4380_1434 -4380_78080,294,4380_91809,Ballina,110474-00018-1,1,4380_7778208_4461001,4380_1434 -4380_78147,291,4380_9181,Cavan,5856-00013-1,0,4380_7778208_1090110,4380_169 -4380_78080,293,4380_91810,Ballina,110468-00017-1,1,4380_7778208_4461001,4380_1434 -4380_78080,295,4380_91811,Ballina,110472-00019-1,1,4380_7778208_4461001,4380_1434 -4380_78081,288,4380_91813,Mullingar,40650-00011-1,0,4380_7778208_44788801,4380_1440 -4380_78081,293,4380_91814,Mullingar,114990-00017-1,0,4380_7778208_44788801,4380_1440 -4380_78081,288,4380_91816,Mullingar,40651-00011-1,1,4380_7778208_44788801,4380_1441 -4380_78081,293,4380_91817,Mullingar,117962-00017-1,1,4380_7778208_44788801,4380_1441 -4380_78082,287,4380_91819,Mullingar,114992-00012-1,0,4380_7778208_44888801,4380_1442 -4380_78147,292,4380_9182,Cavan,55365-00016-1,0,4380_7778208_1090902,4380_165 -4380_78082,294,4380_91820,Mullingar,114993-00018-1,0,4380_7778208_44888801,4380_1442 -4380_78082,287,4380_91822,Mullingar,114994-00012-1,1,4380_7778208_44888801,4380_1443 -4380_78082,294,4380_91823,Mullingar,114995-00018-1,1,4380_7778208_44888801,4380_1443 -4380_78083,285,4380_91829,Bus Eireann,110521-00009-1,0,4380_7778208_4501001,4380_1445 -4380_78147,293,4380_9183,Cavan,55367-00017-1,0,4380_7778208_1090902,4380_165 -4380_78083,288,4380_91831,Bus Eireann,110525-00011-1,0,4380_7778208_4501001,4380_1445 -4380_78083,286,4380_91832,Bus Eireann,110523-00010-1,0,4380_7778208_4501001,4380_1445 -4380_78083,291,4380_91833,Bus Eireann,110517-00013-1,0,4380_7778208_4501001,4380_1449 -4380_78083,289,4380_91834,Bus Eireann,110519-00014-1,0,4380_7778208_4501001,4380_1445 -4380_78083,287,4380_91835,Bus Eireann,110527-00012-1,0,4380_7778208_4501001,4380_1445 -4380_78083,292,4380_91836,Bus Eireann,110524-00016-1,0,4380_7778208_4501001,4380_1445 -4380_78083,290,4380_91837,Bus Eireann,110522-00015-1,0,4380_7778208_4501001,4380_1445 -4380_78083,294,4380_91838,Bus Eireann,110528-00018-1,0,4380_7778208_4501001,4380_1445 -4380_78083,293,4380_91839,Bus Eireann,110526-00017-1,0,4380_7778208_4501001,4380_1445 -4380_78147,294,4380_9184,Cavan,55369-00018-1,0,4380_7778208_1090902,4380_165 -4380_78083,296,4380_91840,Bus Eireann,110518-00021-1,0,4380_7778208_4501001,4380_1449 -4380_78083,295,4380_91841,Bus Eireann,110520-00019-1,0,4380_7778208_4501001,4380_1445 -4380_78083,285,4380_91847,Bus Eireann,110601-00009-1,0,4380_7778208_4501002,4380_1444 -4380_78083,288,4380_91849,Bus Eireann,110599-00011-1,0,4380_7778208_4501002,4380_1444 -4380_78147,295,4380_9185,Cavan,55368-00019-1,0,4380_7778208_1090902,4380_165 -4380_78083,286,4380_91850,Bus Eireann,110603-00010-1,0,4380_7778208_4501002,4380_1444 -4380_78083,291,4380_91851,Bus Eireann,110595-00013-1,0,4380_7778208_4501002,4380_1450 -4380_78083,289,4380_91852,Bus Eireann,110593-00014-1,0,4380_7778208_4501002,4380_1444 -4380_78083,287,4380_91853,Bus Eireann,110597-00012-1,0,4380_7778208_4501002,4380_1444 -4380_78083,292,4380_91854,Bus Eireann,110604-00016-1,0,4380_7778208_4501002,4380_1444 -4380_78083,290,4380_91855,Bus Eireann,110602-00015-1,0,4380_7778208_4501002,4380_1444 -4380_78083,294,4380_91856,Bus Eireann,110598-00018-1,0,4380_7778208_4501002,4380_1444 -4380_78083,293,4380_91857,Bus Eireann,110600-00017-1,0,4380_7778208_4501002,4380_1444 -4380_78083,296,4380_91858,Bus Eireann,110596-00021-1,0,4380_7778208_4501002,4380_1450 -4380_78083,295,4380_91859,Bus Eireann,110594-00019-1,0,4380_7778208_4501002,4380_1444 -4380_78147,296,4380_9186,Cavan,55086-00021-1,0,4380_7778208_1090110,4380_169 -4380_78083,297,4380_91861,Bus Eireann,110530-00008-1,0,4380_7778208_4501001,4380_1445 -4380_78083,285,4380_91867,Bus Eireann,110621-00009-1,0,4380_7778208_4501002,4380_1445 -4380_78083,288,4380_91869,Bus Eireann,110619-00011-1,0,4380_7778208_4501002,4380_1445 -4380_78083,286,4380_91870,Bus Eireann,110617-00010-1,0,4380_7778208_4501002,4380_1445 -4380_78083,291,4380_91871,Bus Eireann,110627-00013-1,0,4380_7778208_4501002,4380_1449 -4380_78083,289,4380_91872,Bus Eireann,110625-00014-1,0,4380_7778208_4501002,4380_1445 -4380_78083,287,4380_91873,Bus Eireann,110623-00012-1,0,4380_7778208_4501002,4380_1445 -4380_78083,292,4380_91874,Bus Eireann,110618-00016-1,0,4380_7778208_4501002,4380_1445 -4380_78083,290,4380_91875,Bus Eireann,110622-00015-1,0,4380_7778208_4501002,4380_1445 -4380_78083,294,4380_91876,Bus Eireann,110624-00018-1,0,4380_7778208_4501002,4380_1445 -4380_78083,293,4380_91877,Bus Eireann,110620-00017-1,0,4380_7778208_4501002,4380_1445 -4380_78083,296,4380_91878,Bus Eireann,110628-00021-1,0,4380_7778208_4501002,4380_1449 -4380_78083,295,4380_91879,Bus Eireann,110626-00019-1,0,4380_7778208_4501002,4380_1445 -4380_78083,285,4380_91885,Bus Eireann,110544-00009-1,0,4380_7778208_4501001,4380_1445 -4380_78083,288,4380_91887,Bus Eireann,110548-00011-1,0,4380_7778208_4501001,4380_1445 -4380_78083,286,4380_91888,Bus Eireann,110554-00010-1,0,4380_7778208_4501001,4380_1445 -4380_78083,291,4380_91889,Bus Eireann,110552-00013-1,0,4380_7778208_4501001,4380_1449 -4380_78083,289,4380_91890,Bus Eireann,110550-00014-1,0,4380_7778208_4501001,4380_1445 -4380_78083,287,4380_91891,Bus Eireann,110546-00012-1,0,4380_7778208_4501001,4380_1445 -4380_78083,292,4380_91892,Bus Eireann,110555-00016-1,0,4380_7778208_4501001,4380_1445 -4380_78083,290,4380_91893,Bus Eireann,110545-00015-1,0,4380_7778208_4501001,4380_1445 -4380_78083,294,4380_91894,Bus Eireann,110547-00018-1,0,4380_7778208_4501001,4380_1445 -4380_78083,293,4380_91895,Bus Eireann,110549-00017-1,0,4380_7778208_4501001,4380_1445 -4380_78083,296,4380_91896,Bus Eireann,110553-00021-1,0,4380_7778208_4501001,4380_1449 -4380_78083,295,4380_91897,Bus Eireann,110551-00019-1,0,4380_7778208_4501001,4380_1445 -4380_78083,297,4380_91899,Bus Eireann,110145-00008-1,0,4380_7778208_4401001,4380_1444 -4380_78083,285,4380_91905,Bus Eireann,110649-00009-1,0,4380_7778208_4501002,4380_1445 -4380_78083,288,4380_91907,Bus Eireann,110647-00011-1,0,4380_7778208_4501002,4380_1445 -4380_78083,286,4380_91908,Bus Eireann,110641-00010-1,0,4380_7778208_4501002,4380_1445 -4380_78083,291,4380_91909,Bus Eireann,110643-00013-1,0,4380_7778208_4501002,4380_1449 -4380_78083,289,4380_91910,Bus Eireann,110651-00014-1,0,4380_7778208_4501002,4380_1445 -4380_78083,287,4380_91911,Bus Eireann,110645-00012-1,0,4380_7778208_4501002,4380_1445 -4380_78083,292,4380_91912,Bus Eireann,110642-00016-1,0,4380_7778208_4501002,4380_1445 -4380_78083,290,4380_91913,Bus Eireann,110650-00015-1,0,4380_7778208_4501002,4380_1445 -4380_78083,294,4380_91914,Bus Eireann,110646-00018-1,0,4380_7778208_4501002,4380_1445 -4380_78083,293,4380_91915,Bus Eireann,110648-00017-1,0,4380_7778208_4501002,4380_1445 -4380_78083,296,4380_91916,Bus Eireann,110644-00021-1,0,4380_7778208_4501002,4380_1449 -4380_78083,295,4380_91917,Bus Eireann,110652-00019-1,0,4380_7778208_4501002,4380_1445 -4380_78083,297,4380_91919,Achill,110568-00008-1,0,4380_7778208_4501001,4380_1446 -4380_78083,285,4380_91925,Bus Eireann,110571-00009-1,0,4380_7778208_4501001,4380_1445 -4380_78083,288,4380_91927,Bus Eireann,110575-00011-1,0,4380_7778208_4501001,4380_1445 -4380_78083,286,4380_91928,Bus Eireann,110577-00010-1,0,4380_7778208_4501001,4380_1445 -4380_78083,291,4380_91929,Bus Eireann,110573-00013-1,0,4380_7778208_4501001,4380_1445 -4380_78083,289,4380_91930,Bus Eireann,110569-00014-1,0,4380_7778208_4501001,4380_1445 -4380_78083,287,4380_91931,Bus Eireann,110579-00012-1,0,4380_7778208_4501001,4380_1445 -4380_78083,292,4380_91932,Bus Eireann,110578-00016-1,0,4380_7778208_4501001,4380_1445 -4380_78083,290,4380_91933,Bus Eireann,110572-00015-1,0,4380_7778208_4501001,4380_1445 -4380_78083,294,4380_91934,Bus Eireann,110580-00018-1,0,4380_7778208_4501001,4380_1445 -4380_78083,293,4380_91935,Bus Eireann,110576-00017-1,0,4380_7778208_4501001,4380_1445 -4380_78083,296,4380_91936,Bus Eireann,110574-00021-1,0,4380_7778208_4501001,4380_1445 -4380_78083,295,4380_91937,Bus Eireann,110570-00019-1,0,4380_7778208_4501001,4380_1445 -4380_78083,297,4380_91939,Bus Eireann,110665-00008-1,0,4380_7778208_4501002,4380_1447 -4380_78147,285,4380_9194,Cavan,6877-00009-1,0,4380_7778208_1090903,4380_164 -4380_78083,285,4380_91945,Westport,110669-00009-1,0,4380_7778208_4501002,4380_1448 -4380_78083,288,4380_91947,Westport,110673-00011-1,0,4380_7778208_4501002,4380_1448 -4380_78083,286,4380_91948,Westport,110677-00010-1,0,4380_7778208_4501002,4380_1448 -4380_78083,291,4380_91949,Westport,110667-00013-1,0,4380_7778208_4501002,4380_1451 -4380_78147,286,4380_9195,Cavan,6882-00010-1,0,4380_7778208_1090903,4380_164 -4380_78083,289,4380_91950,Westport,110671-00014-1,0,4380_7778208_4501002,4380_1448 -4380_78083,287,4380_91951,Westport,110675-00012-1,0,4380_7778208_4501002,4380_1448 -4380_78083,292,4380_91952,Westport,110678-00016-1,0,4380_7778208_4501002,4380_1448 -4380_78083,290,4380_91953,Westport,110670-00015-1,0,4380_7778208_4501002,4380_1448 -4380_78083,294,4380_91954,Westport,110676-00018-1,0,4380_7778208_4501002,4380_1448 -4380_78083,293,4380_91955,Westport,110674-00017-1,0,4380_7778208_4501002,4380_1448 -4380_78083,296,4380_91956,Westport,110668-00021-1,0,4380_7778208_4501002,4380_1451 -4380_78083,295,4380_91957,Westport,110672-00019-1,0,4380_7778208_4501002,4380_1448 -4380_78083,297,4380_91959,Westport,110679-00008-1,0,4380_7778208_4501002,4380_1448 -4380_78147,297,4380_9196,Cavan,6058-00008-1,0,4380_7778208_1090115,4380_166 -4380_78083,285,4380_91965,Dooagh (Opp The Pub),110511-00009-1,1,4380_7778208_4501001,4380_1453 -4380_78083,288,4380_91967,Dooagh (Opp The Pub),110515-00011-1,1,4380_7778208_4501001,4380_1453 -4380_78083,286,4380_91968,Dooagh (Opp The Pub),110513-00010-1,1,4380_7778208_4501001,4380_1453 -4380_78083,291,4380_91969,Dooagh (Opp The Pub),110505-00013-1,1,4380_7778208_4501001,4380_1455 -4380_78147,288,4380_9197,Cavan,6887-00011-1,0,4380_7778208_1090903,4380_164 -4380_78083,289,4380_91970,Dooagh (Opp The Pub),110507-00014-1,1,4380_7778208_4501001,4380_1453 -4380_78083,287,4380_91971,Dooagh (Opp The Pub),110509-00012-1,1,4380_7778208_4501001,4380_1453 -4380_78083,292,4380_91972,Dooagh (Opp The Pub),110514-00016-1,1,4380_7778208_4501001,4380_1453 -4380_78083,290,4380_91973,Dooagh (Opp The Pub),110512-00015-1,1,4380_7778208_4501001,4380_1453 -4380_78083,294,4380_91974,Dooagh (Opp The Pub),110510-00018-1,1,4380_7778208_4501001,4380_1453 -4380_78083,293,4380_91975,Dooagh (Opp The Pub),110516-00017-1,1,4380_7778208_4501001,4380_1453 -4380_78083,296,4380_91976,Dooagh (Opp The Pub),110506-00021-1,1,4380_7778208_4501001,4380_1455 -4380_78083,295,4380_91977,Dooagh (Opp The Pub),110508-00019-1,1,4380_7778208_4501001,4380_1453 -4380_78083,297,4380_91979,Dooagh (Opp The Pub),110529-00008-1,1,4380_7778208_4501001,4380_1453 -4380_78147,287,4380_9198,Cavan,6892-00012-1,0,4380_7778208_1090903,4380_164 -4380_78083,285,4380_91985,Dooagh (Opp The Pub),110609-00009-1,1,4380_7778208_4501002,4380_1454 -4380_78083,288,4380_91987,Dooagh (Opp The Pub),110613-00011-1,1,4380_7778208_4501002,4380_1454 -4380_78083,286,4380_91988,Dooagh (Opp The Pub),110611-00010-1,1,4380_7778208_4501002,4380_1454 -4380_78083,291,4380_91989,Dooagh (Opp The Pub),110607-00013-1,1,4380_7778208_4501002,4380_1456 -4380_78147,289,4380_9199,Cavan,6872-00014-1,0,4380_7778208_1090903,4380_164 -4380_78083,289,4380_91990,Dooagh (Opp The Pub),110605-00014-1,1,4380_7778208_4501002,4380_1454 -4380_78083,287,4380_91991,Dooagh (Opp The Pub),110615-00012-1,1,4380_7778208_4501002,4380_1454 -4380_78083,292,4380_91992,Dooagh (Opp The Pub),110612-00016-1,1,4380_7778208_4501002,4380_1454 -4380_78083,290,4380_91993,Dooagh (Opp The Pub),110610-00015-1,1,4380_7778208_4501002,4380_1454 -4380_78083,294,4380_91994,Dooagh (Opp The Pub),110616-00018-1,1,4380_7778208_4501002,4380_1454 -4380_78083,293,4380_91995,Dooagh (Opp The Pub),110614-00017-1,1,4380_7778208_4501002,4380_1454 -4380_78083,296,4380_91996,Dooagh (Opp The Pub),110608-00021-1,1,4380_7778208_4501002,4380_1456 -4380_78083,295,4380_91997,Dooagh (Opp The Pub),110606-00019-1,1,4380_7778208_4501002,4380_1454 -4380_77946,285,4380_92,Dundalk,50471-00009-1,0,4380_7778208_1000915,4380_1 -4380_78147,290,4380_9200,Cavan,55395-00015-1,0,4380_7778208_1090903,4380_164 -4380_78083,285,4380_92003,Dooagh (Opp The Pub),110539-00009-1,1,4380_7778208_4501001,4380_1454 -4380_78083,288,4380_92005,Dooagh (Opp The Pub),110531-00011-1,1,4380_7778208_4501001,4380_1454 -4380_78083,286,4380_92006,Dooagh (Opp The Pub),110533-00010-1,1,4380_7778208_4501001,4380_1454 -4380_78083,291,4380_92007,Dooagh (Opp The Pub),110541-00013-1,1,4380_7778208_4501001,4380_1456 -4380_78083,289,4380_92008,Dooagh (Opp The Pub),110535-00014-1,1,4380_7778208_4501001,4380_1454 -4380_78083,287,4380_92009,Dooagh (Opp The Pub),110537-00012-1,1,4380_7778208_4501001,4380_1454 -4380_78147,291,4380_9201,Cavan,6897-00013-1,0,4380_7778208_1090903,4380_168 -4380_78083,292,4380_92010,Dooagh (Opp The Pub),110534-00016-1,1,4380_7778208_4501001,4380_1454 -4380_78083,290,4380_92011,Dooagh (Opp The Pub),110540-00015-1,1,4380_7778208_4501001,4380_1454 -4380_78083,294,4380_92012,Dooagh (Opp The Pub),110538-00018-1,1,4380_7778208_4501001,4380_1454 -4380_78083,293,4380_92013,Dooagh (Opp The Pub),110532-00017-1,1,4380_7778208_4501001,4380_1454 -4380_78083,296,4380_92014,Dooagh (Opp The Pub),110542-00021-1,1,4380_7778208_4501001,4380_1456 -4380_78083,295,4380_92015,Dooagh (Opp The Pub),110536-00019-1,1,4380_7778208_4501001,4380_1454 -4380_78083,297,4380_92017,Dooagh (Opp The Pub),110543-00008-1,1,4380_7778208_4501001,4380_1454 -4380_78147,292,4380_9202,Cavan,55399-00016-1,0,4380_7778208_1090903,4380_164 -4380_78083,285,4380_92023,Dooagh (Opp The Pub),110633-00009-1,1,4380_7778208_4501002,4380_1454 -4380_78083,288,4380_92025,Dooagh (Opp The Pub),110637-00011-1,1,4380_7778208_4501002,4380_1454 -4380_78083,286,4380_92026,Dooagh (Opp The Pub),110631-00010-1,1,4380_7778208_4501002,4380_1454 -4380_78083,291,4380_92027,Dooagh (Opp The Pub),110639-00013-1,1,4380_7778208_4501002,4380_1456 -4380_78083,289,4380_92028,Dooagh (Opp The Pub),110635-00014-1,1,4380_7778208_4501002,4380_1454 -4380_78083,287,4380_92029,Dooagh (Opp The Pub),110629-00012-1,1,4380_7778208_4501002,4380_1454 -4380_78147,293,4380_9203,Cavan,55394-00017-1,0,4380_7778208_1090903,4380_164 -4380_78083,292,4380_92030,Dooagh (Opp The Pub),110632-00016-1,1,4380_7778208_4501002,4380_1454 -4380_78083,290,4380_92031,Dooagh (Opp The Pub),110634-00015-1,1,4380_7778208_4501002,4380_1454 -4380_78083,294,4380_92032,Dooagh (Opp The Pub),110630-00018-1,1,4380_7778208_4501002,4380_1454 -4380_78083,293,4380_92033,Dooagh (Opp The Pub),110638-00017-1,1,4380_7778208_4501002,4380_1454 -4380_78083,296,4380_92034,Dooagh (Opp The Pub),110640-00021-1,1,4380_7778208_4501002,4380_1456 -4380_78083,295,4380_92035,Dooagh (Opp The Pub),110636-00019-1,1,4380_7778208_4501002,4380_1454 -4380_78147,294,4380_9204,Cavan,55397-00018-1,0,4380_7778208_1090903,4380_164 -4380_78083,285,4380_92041,Dooagh (Opp The Pub),110562-00009-1,1,4380_7778208_4501001,4380_1454 -4380_78083,288,4380_92043,Dooagh (Opp The Pub),110564-00011-1,1,4380_7778208_4501001,4380_1454 -4380_78083,286,4380_92044,Dooagh (Opp The Pub),110558-00010-1,1,4380_7778208_4501001,4380_1454 -4380_78083,291,4380_92045,Dooagh (Opp The Pub),110556-00013-1,1,4380_7778208_4501001,4380_1456 -4380_78083,289,4380_92046,Dooagh (Opp The Pub),110560-00014-1,1,4380_7778208_4501001,4380_1454 -4380_78083,287,4380_92047,Dooagh (Opp The Pub),110566-00012-1,1,4380_7778208_4501001,4380_1454 -4380_78083,292,4380_92048,Dooagh (Opp The Pub),110559-00016-1,1,4380_7778208_4501001,4380_1454 -4380_78083,290,4380_92049,Dooagh (Opp The Pub),110563-00015-1,1,4380_7778208_4501001,4380_1454 -4380_78147,295,4380_9205,Cavan,55396-00019-1,0,4380_7778208_1090903,4380_164 -4380_78083,294,4380_92050,Dooagh (Opp The Pub),110567-00018-1,1,4380_7778208_4501001,4380_1454 -4380_78083,293,4380_92051,Dooagh (Opp The Pub),110565-00017-1,1,4380_7778208_4501001,4380_1454 -4380_78083,296,4380_92052,Dooagh (Opp The Pub),110557-00021-1,1,4380_7778208_4501001,4380_1456 -4380_78083,295,4380_92053,Dooagh (Opp The Pub),110561-00019-1,1,4380_7778208_4501001,4380_1454 -4380_78083,297,4380_92055,Westport,110146-00008-1,1,4380_7778208_4401001,4380_1452 -4380_78147,296,4380_9206,Cavan,55398-00021-1,0,4380_7778208_1090903,4380_168 -4380_78083,285,4380_92061,Dooagh (Opp The Pub),110657-00009-1,1,4380_7778208_4501002,4380_1454 -4380_78083,288,4380_92063,Dooagh (Opp The Pub),110661-00011-1,1,4380_7778208_4501002,4380_1454 -4380_78083,286,4380_92064,Dooagh (Opp The Pub),110663-00010-1,1,4380_7778208_4501002,4380_1454 -4380_78083,291,4380_92065,Dooagh (Opp The Pub),110653-00013-1,1,4380_7778208_4501002,4380_1454 -4380_78083,289,4380_92066,Dooagh (Opp The Pub),110659-00014-1,1,4380_7778208_4501002,4380_1454 -4380_78083,287,4380_92067,Dooagh (Opp The Pub),110655-00012-1,1,4380_7778208_4501002,4380_1454 -4380_78083,292,4380_92068,Dooagh (Opp The Pub),110664-00016-1,1,4380_7778208_4501002,4380_1454 -4380_78083,290,4380_92069,Dooagh (Opp The Pub),110658-00015-1,1,4380_7778208_4501002,4380_1454 -4380_78083,294,4380_92070,Dooagh (Opp The Pub),110656-00018-1,1,4380_7778208_4501002,4380_1454 -4380_78083,293,4380_92071,Dooagh (Opp The Pub),110662-00017-1,1,4380_7778208_4501002,4380_1454 -4380_78083,296,4380_92072,Dooagh (Opp The Pub),110654-00021-1,1,4380_7778208_4501002,4380_1454 -4380_78083,295,4380_92073,Dooagh (Opp The Pub),110660-00019-1,1,4380_7778208_4501002,4380_1454 -4380_78083,297,4380_92075,Dooagh (Opp The Pub),110666-00008-1,1,4380_7778208_4501002,4380_1454 -4380_78083,285,4380_92081,Westport,110583-00009-1,1,4380_7778208_4501001,4380_1452 -4380_78083,288,4380_92083,Westport,110589-00011-1,1,4380_7778208_4501001,4380_1452 -4380_78083,286,4380_92084,Westport,110591-00010-1,1,4380_7778208_4501001,4380_1452 -4380_78083,291,4380_92085,Westport,110581-00013-1,1,4380_7778208_4501001,4380_1457 -4380_78083,289,4380_92086,Westport,110585-00014-1,1,4380_7778208_4501001,4380_1452 -4380_78083,287,4380_92087,Westport,110587-00012-1,1,4380_7778208_4501001,4380_1452 -4380_78083,292,4380_92088,Westport,110592-00016-1,1,4380_7778208_4501001,4380_1452 -4380_78083,290,4380_92089,Westport,110584-00015-1,1,4380_7778208_4501001,4380_1452 -4380_78083,294,4380_92090,Westport,110588-00018-1,1,4380_7778208_4501001,4380_1452 -4380_78083,293,4380_92091,Westport,110590-00017-1,1,4380_7778208_4501001,4380_1452 -4380_78083,296,4380_92092,Westport,110582-00021-1,1,4380_7778208_4501001,4380_1457 -4380_78083,295,4380_92093,Westport,110586-00019-1,1,4380_7778208_4501001,4380_1452 -4380_78084,285,4380_92099,Ballina,110323-00009-1,0,4380_7778208_4421001,4380_1459 -4380_78084,288,4380_92100,Ballina,110708-00011-1,0,4380_7778208_4511004,4380_1459 -4380_78084,286,4380_92101,Ballina,110684-00010-1,0,4380_7778208_4511001,4380_1459 -4380_78084,289,4380_92102,Ballina,110680-00014-1,0,4380_7778208_4511001,4380_1459 -4380_78084,287,4380_92103,Longford,110682-00012-1,0,4380_7778208_4511001,4380_1461 -4380_78084,292,4380_92104,Ballina,110685-00016-1,0,4380_7778208_4511001,4380_1459 -4380_78084,290,4380_92105,Ballina,110324-00015-1,0,4380_7778208_4421001,4380_1459 -4380_78084,294,4380_92106,Longford,110683-00018-1,0,4380_7778208_4511001,4380_1461 -4380_78084,293,4380_92107,Ballina,110709-00017-1,0,4380_7778208_4511004,4380_1459 -4380_78084,295,4380_92108,Ballina,110681-00019-1,0,4380_7778208_4511001,4380_1459 -4380_78084,286,4380_92110,Longford,110367-00010-1,0,4380_7778208_4451001,4380_1460 -4380_78084,292,4380_92111,Longford,110368-00016-1,0,4380_7778208_4451001,4380_1460 -4380_78084,285,4380_92115,Ballina,110720-00009-1,0,4380_7778208_4551001,4380_1458 -4380_78084,288,4380_92116,Ballina,110373-00011-1,0,4380_7778208_4451001,4380_1458 -4380_78084,289,4380_92117,Ballina,110375-00014-1,0,4380_7778208_4451001,4380_1458 -4380_78084,290,4380_92118,Ballina,110721-00015-1,0,4380_7778208_4551001,4380_1458 -4380_78084,293,4380_92119,Ballina,110374-00017-1,0,4380_7778208_4451001,4380_1458 -4380_78084,295,4380_92120,Ballina,110376-00019-1,0,4380_7778208_4451001,4380_1458 -4380_78084,286,4380_92122,Ballina,110686-00010-1,1,4380_7778208_4511001,4380_1465 -4380_78084,292,4380_92123,Ballina,110687-00016-1,1,4380_7778208_4511001,4380_1465 -4380_78084,288,4380_92126,Ballina,110710-00011-1,1,4380_7778208_4511004,4380_1463 -4380_78084,289,4380_92127,Ballina,110688-00014-1,1,4380_7778208_4511001,4380_1463 -4380_78084,293,4380_92128,Ballina,110711-00017-1,1,4380_7778208_4511004,4380_1463 -4380_78084,295,4380_92129,Ballina,110689-00019-1,1,4380_7778208_4511001,4380_1463 -4380_78084,287,4380_92131,Ballina,110690-00012-1,1,4380_7778208_4511001,4380_1466 -4380_78084,294,4380_92132,Ballina,110691-00018-1,1,4380_7778208_4511001,4380_1466 -4380_78084,286,4380_92134,Ballina,110379-00010-1,1,4380_7778208_4451001,4380_1464 -4380_78084,292,4380_92135,Ballina,110380-00016-1,1,4380_7778208_4451001,4380_1464 -4380_78084,285,4380_92139,Ballina,110722-00009-1,1,4380_7778208_4551001,4380_1462 -4380_78147,285,4380_9214,Cavan,6928-00009-1,0,4380_7778208_1090904,4380_165 -4380_78084,288,4380_92140,Ballina,110383-00011-1,1,4380_7778208_4451001,4380_1462 -4380_78084,289,4380_92141,Ballina,110385-00014-1,1,4380_7778208_4451001,4380_1462 -4380_78084,290,4380_92142,Ballina,110723-00015-1,1,4380_7778208_4551001,4380_1462 -4380_78084,293,4380_92143,Ballina,110384-00017-1,1,4380_7778208_4451001,4380_1462 -4380_78084,295,4380_92144,Ballina,110386-00019-1,1,4380_7778208_4451001,4380_1462 -4380_78084,285,4380_92146,Ballina,110337-00009-1,1,4380_7778208_4421001,4380_1463 -4380_78084,290,4380_92147,Ballina,110338-00015-1,1,4380_7778208_4421001,4380_1463 -4380_78085,285,4380_92149,Ballina,110716-00009-1,0,4380_7778208_4551001,4380_1467 -4380_78147,286,4380_9215,Cavan,6933-00010-1,0,4380_7778208_1090904,4380_165 -4380_78085,290,4380_92150,Ballina,110717-00015-1,0,4380_7778208_4551001,4380_1467 -4380_78085,285,4380_92152,Ballina,110718-00009-1,0,4380_7778208_4551001,4380_1468 -4380_78085,290,4380_92153,Ballina,110719-00015-1,0,4380_7778208_4551001,4380_1468 -4380_78085,285,4380_92155,Ballina,110371-00009-1,1,4380_7778208_4451001,4380_1469 -4380_78085,290,4380_92156,Ballina,110372-00015-1,1,4380_7778208_4451001,4380_1469 -4380_78085,285,4380_92158,Ballina,110381-00009-1,1,4380_7778208_4451001,4380_1470 -4380_78085,290,4380_92159,Ballina,110382-00015-1,1,4380_7778208_4451001,4380_1470 -4380_78147,297,4380_9216,Cavan,6909-00008-1,0,4380_7778208_1090903,4380_167 -4380_78086,297,4380_92166,Galway,110732-00008-1,0,4380_7778208_4561001,4380_1471 -4380_78086,285,4380_92167,Galway,110730-00009-1,0,4380_7778208_4561001,4380_1472 -4380_78086,288,4380_92169,Galway,110737-00011-1,0,4380_7778208_4561001,4380_1472 -4380_78147,288,4380_9217,Cavan,6938-00011-1,0,4380_7778208_1090904,4380_165 -4380_78086,286,4380_92170,Galway,110728-00010-1,0,4380_7778208_4561001,4380_1472 -4380_78086,291,4380_92171,Galway,110735-00013-1,0,4380_7778208_4561001,4380_1473 -4380_78086,289,4380_92172,Galway,110733-00014-1,0,4380_7778208_4561001,4380_1472 -4380_78086,287,4380_92173,Galway,110739-00012-1,0,4380_7778208_4561001,4380_1472 -4380_78086,292,4380_92174,Galway,110729-00016-1,0,4380_7778208_4561001,4380_1472 -4380_78086,290,4380_92175,Galway,110731-00015-1,0,4380_7778208_4561001,4380_1472 -4380_78086,294,4380_92176,Galway,110740-00018-1,0,4380_7778208_4561001,4380_1472 -4380_78086,293,4380_92177,Galway,110738-00017-1,0,4380_7778208_4561001,4380_1472 -4380_78086,296,4380_92178,Galway,110736-00021-1,0,4380_7778208_4561001,4380_1473 -4380_78086,295,4380_92179,Galway,110734-00019-1,0,4380_7778208_4561001,4380_1472 -4380_78147,287,4380_9218,Cavan,6943-00012-1,0,4380_7778208_1090904,4380_165 -4380_78086,297,4380_92186,Galway,108978-00008-1,0,4380_7778208_4201001,4380_1471 -4380_78086,285,4380_92187,Galway,108974-00009-1,0,4380_7778208_4201001,4380_1472 -4380_78086,288,4380_92189,Galway,108981-00011-1,0,4380_7778208_4201001,4380_1472 -4380_78147,289,4380_9219,Cavan,6923-00014-1,0,4380_7778208_1090904,4380_165 -4380_78086,286,4380_92190,Galway,108976-00010-1,0,4380_7778208_4201001,4380_1472 -4380_78086,291,4380_92191,Galway,108979-00013-1,0,4380_7778208_4201001,4380_1473 -4380_78086,289,4380_92192,Galway,108983-00014-1,0,4380_7778208_4201001,4380_1472 -4380_78086,287,4380_92193,Galway,108985-00012-1,0,4380_7778208_4201001,4380_1472 -4380_78086,292,4380_92194,Galway,108977-00016-1,0,4380_7778208_4201001,4380_1472 -4380_78086,290,4380_92195,Galway,108975-00015-1,0,4380_7778208_4201001,4380_1472 -4380_78086,294,4380_92196,Galway,108986-00018-1,0,4380_7778208_4201001,4380_1472 -4380_78086,295,4380_92197,Galway,108984-00019-1,0,4380_7778208_4201001,4380_1472 -4380_78086,293,4380_92198,Galway,108982-00017-1,0,4380_7778208_4201001,4380_1472 -4380_78086,296,4380_92199,Galway,108980-00021-1,0,4380_7778208_4201001,4380_1473 -4380_78147,290,4380_9220,Cavan,55428-00015-1,0,4380_7778208_1090904,4380_165 -4380_78086,297,4380_92206,Galway,110754-00008-1,0,4380_7778208_4561001,4380_1471 -4380_78086,285,4380_92207,Galway,110757-00009-1,0,4380_7778208_4561001,4380_1472 -4380_78086,288,4380_92209,Galway,110761-00011-1,0,4380_7778208_4561001,4380_1472 -4380_78147,291,4380_9221,Cavan,6954-00013-1,0,4380_7778208_1090904,4380_169 -4380_78086,286,4380_92210,Galway,110765-00010-1,0,4380_7778208_4561001,4380_1472 -4380_78086,291,4380_92211,Galway,110763-00013-1,0,4380_7778208_4561001,4380_1473 -4380_78086,289,4380_92212,Galway,110755-00014-1,0,4380_7778208_4561001,4380_1472 -4380_78086,287,4380_92213,Galway,110759-00012-1,0,4380_7778208_4561001,4380_1472 -4380_78086,292,4380_92214,Galway,110766-00016-1,0,4380_7778208_4561001,4380_1472 -4380_78086,290,4380_92215,Galway,110758-00015-1,0,4380_7778208_4561001,4380_1472 -4380_78086,294,4380_92216,Galway,110760-00018-1,0,4380_7778208_4561001,4380_1472 -4380_78086,293,4380_92217,Galway,110762-00017-1,0,4380_7778208_4561001,4380_1472 -4380_78086,296,4380_92218,Galway,110764-00021-1,0,4380_7778208_4561001,4380_1473 -4380_78086,295,4380_92219,Galway,110756-00019-1,0,4380_7778208_4561001,4380_1472 -4380_78147,292,4380_9222,Cavan,55427-00016-1,0,4380_7778208_1090904,4380_165 -4380_78086,297,4380_92226,Galway,109297-00008-1,0,4380_7778208_4221001,4380_1471 -4380_78086,285,4380_92227,Galway,109293-00009-1,0,4380_7778208_4221001,4380_1472 -4380_78086,288,4380_92229,Galway,109289-00011-1,0,4380_7778208_4221001,4380_1472 -4380_78147,293,4380_9223,Cavan,55424-00017-1,0,4380_7778208_1090904,4380_165 -4380_78086,286,4380_92230,Galway,109295-00010-1,0,4380_7778208_4221001,4380_1472 -4380_78086,291,4380_92231,Galway,109285-00013-1,0,4380_7778208_4221001,4380_1473 -4380_78086,289,4380_92232,Galway,109287-00014-1,0,4380_7778208_4221001,4380_1472 -4380_78086,287,4380_92233,Galway,109291-00012-1,0,4380_7778208_4221001,4380_1472 -4380_78086,292,4380_92234,Galway,109296-00016-1,0,4380_7778208_4221001,4380_1472 -4380_78086,290,4380_92235,Galway,109294-00015-1,0,4380_7778208_4221001,4380_1472 -4380_78086,294,4380_92236,Galway,109292-00018-1,0,4380_7778208_4221001,4380_1472 -4380_78086,293,4380_92237,Galway,109290-00017-1,0,4380_7778208_4221001,4380_1472 -4380_78086,296,4380_92238,Galway,109286-00021-1,0,4380_7778208_4221001,4380_1473 -4380_78086,295,4380_92239,Galway,109288-00019-1,0,4380_7778208_4221001,4380_1472 -4380_78147,294,4380_9224,Cavan,55426-00018-1,0,4380_7778208_1090904,4380_165 -4380_78086,297,4380_92246,Galway,110784-00008-1,0,4380_7778208_4561001,4380_1471 -4380_78086,285,4380_92247,Galway,110785-00009-1,0,4380_7778208_4561001,4380_1472 -4380_78086,288,4380_92249,Galway,110787-00011-1,0,4380_7778208_4561001,4380_1472 -4380_78147,295,4380_9225,Cavan,55429-00019-1,0,4380_7778208_1090904,4380_165 -4380_78086,286,4380_92250,Galway,110789-00010-1,0,4380_7778208_4561001,4380_1472 -4380_78086,291,4380_92251,Galway,110780-00013-1,0,4380_7778208_4561001,4380_1473 -4380_78086,289,4380_92252,Galway,110782-00014-1,0,4380_7778208_4561001,4380_1472 -4380_78086,287,4380_92253,Galway,110791-00012-1,0,4380_7778208_4561001,4380_1472 -4380_78086,292,4380_92254,Galway,110790-00016-1,0,4380_7778208_4561001,4380_1472 -4380_78086,290,4380_92255,Galway,110786-00015-1,0,4380_7778208_4561001,4380_1472 -4380_78086,294,4380_92256,Galway,110792-00018-1,0,4380_7778208_4561001,4380_1472 -4380_78086,293,4380_92257,Galway,110788-00017-1,0,4380_7778208_4561001,4380_1472 -4380_78086,296,4380_92258,Galway,110781-00021-1,0,4380_7778208_4561001,4380_1473 -4380_78086,295,4380_92259,Galway,110783-00019-1,0,4380_7778208_4561001,4380_1472 -4380_78147,296,4380_9226,Cavan,55425-00021-1,0,4380_7778208_1090904,4380_169 -4380_78086,297,4380_92266,Castlebar,110747-00008-1,1,4380_7778208_4561001,4380_1474 -4380_78086,285,4380_92267,Castlebar,110748-00009-1,1,4380_7778208_4561001,4380_1475 -4380_78086,288,4380_92269,Castlebar,110743-00011-1,1,4380_7778208_4561001,4380_1475 -4380_78086,286,4380_92270,Castlebar,110745-00010-1,1,4380_7778208_4561001,4380_1475 -4380_78086,291,4380_92271,Castlebar,110741-00013-1,1,4380_7778208_4561001,4380_1476 -4380_78086,289,4380_92272,Castlebar,110752-00014-1,1,4380_7778208_4561001,4380_1475 -4380_78086,287,4380_92273,Castlebar,110750-00012-1,1,4380_7778208_4561001,4380_1475 -4380_78086,292,4380_92274,Castlebar,110746-00016-1,1,4380_7778208_4561001,4380_1475 -4380_78086,290,4380_92275,Castlebar,110749-00015-1,1,4380_7778208_4561001,4380_1475 -4380_78086,294,4380_92276,Castlebar,110751-00018-1,1,4380_7778208_4561001,4380_1475 -4380_78086,293,4380_92277,Castlebar,110744-00017-1,1,4380_7778208_4561001,4380_1475 -4380_78086,296,4380_92278,Castlebar,110742-00021-1,1,4380_7778208_4561001,4380_1476 -4380_78086,295,4380_92279,Castlebar,110753-00019-1,1,4380_7778208_4561001,4380_1475 -4380_78086,297,4380_92286,Castlebar,108989-00008-1,1,4380_7778208_4201001,4380_1474 -4380_78086,285,4380_92287,Castlebar,108998-00009-1,1,4380_7778208_4201001,4380_1475 -4380_78086,288,4380_92289,Castlebar,108990-00011-1,1,4380_7778208_4201001,4380_1475 -4380_78086,286,4380_92290,Castlebar,108987-00010-1,1,4380_7778208_4201001,4380_1475 -4380_78086,291,4380_92291,Castlebar,108994-00013-1,1,4380_7778208_4201001,4380_1476 -4380_78086,289,4380_92292,Castlebar,108992-00014-1,1,4380_7778208_4201001,4380_1475 -4380_78086,287,4380_92293,Castlebar,108996-00012-1,1,4380_7778208_4201001,4380_1475 -4380_78086,292,4380_92294,Castlebar,108988-00016-1,1,4380_7778208_4201001,4380_1475 -4380_78086,290,4380_92295,Castlebar,108999-00015-1,1,4380_7778208_4201001,4380_1475 -4380_78086,294,4380_92296,Castlebar,108997-00018-1,1,4380_7778208_4201001,4380_1475 -4380_78086,295,4380_92297,Castlebar,108993-00019-1,1,4380_7778208_4201001,4380_1475 -4380_78086,293,4380_92298,Castlebar,108991-00017-1,1,4380_7778208_4201001,4380_1475 -4380_78086,296,4380_92299,Castlebar,108995-00021-1,1,4380_7778208_4201001,4380_1476 -4380_78113,285,4380_923,Dublin via Airport,50129-00009-1,1,4380_7778208_1000908,4380_18 -4380_78086,297,4380_92306,Castlebar,110775-00008-1,1,4380_7778208_4561001,4380_1474 -4380_78086,285,4380_92307,Castlebar,110771-00009-1,1,4380_7778208_4561001,4380_1475 -4380_78086,288,4380_92309,Castlebar,110767-00011-1,1,4380_7778208_4561001,4380_1475 -4380_78086,286,4380_92310,Castlebar,110769-00010-1,1,4380_7778208_4561001,4380_1475 -4380_78086,291,4380_92311,Castlebar,110778-00013-1,1,4380_7778208_4561001,4380_1476 -4380_78086,289,4380_92312,Castlebar,110773-00014-1,1,4380_7778208_4561001,4380_1475 -4380_78086,287,4380_92313,Castlebar,110776-00012-1,1,4380_7778208_4561001,4380_1475 -4380_78086,292,4380_92314,Castlebar,110770-00016-1,1,4380_7778208_4561001,4380_1475 -4380_78086,290,4380_92315,Castlebar,110772-00015-1,1,4380_7778208_4561001,4380_1475 -4380_78086,294,4380_92316,Castlebar,110777-00018-1,1,4380_7778208_4561001,4380_1475 -4380_78086,293,4380_92317,Castlebar,110768-00017-1,1,4380_7778208_4561001,4380_1475 -4380_78086,296,4380_92318,Castlebar,110779-00021-1,1,4380_7778208_4561001,4380_1476 -4380_78086,295,4380_92319,Castlebar,110774-00019-1,1,4380_7778208_4561001,4380_1475 -4380_78086,297,4380_92326,Castlebar,109308-00008-1,1,4380_7778208_4221001,4380_1474 -4380_78086,285,4380_92327,Castlebar,109300-00009-1,1,4380_7778208_4221001,4380_1475 -4380_78086,288,4380_92329,Castlebar,109298-00011-1,1,4380_7778208_4221001,4380_1475 -4380_78086,286,4380_92330,Castlebar,109302-00010-1,1,4380_7778208_4221001,4380_1475 -4380_78086,291,4380_92331,Castlebar,109306-00013-1,1,4380_7778208_4221001,4380_1476 -4380_78086,289,4380_92332,Castlebar,109309-00014-1,1,4380_7778208_4221001,4380_1475 -4380_78086,287,4380_92333,Castlebar,109304-00012-1,1,4380_7778208_4221001,4380_1475 -4380_78086,292,4380_92334,Castlebar,109303-00016-1,1,4380_7778208_4221001,4380_1475 -4380_78086,290,4380_92335,Castlebar,109301-00015-1,1,4380_7778208_4221001,4380_1475 -4380_78086,294,4380_92336,Castlebar,109305-00018-1,1,4380_7778208_4221001,4380_1475 -4380_78086,293,4380_92337,Castlebar,109299-00017-1,1,4380_7778208_4221001,4380_1475 -4380_78086,296,4380_92338,Castlebar,109307-00021-1,1,4380_7778208_4221001,4380_1476 -4380_78086,295,4380_92339,Castlebar,109310-00019-1,1,4380_7778208_4221001,4380_1475 -4380_78147,285,4380_9234,Cavan,6972-00009-1,0,4380_7778208_1090905,4380_164 -4380_78086,297,4380_92346,Castlebar,110803-00008-1,1,4380_7778208_4561001,4380_1474 -4380_78086,285,4380_92347,Castlebar,110797-00009-1,1,4380_7778208_4561001,4380_1475 -4380_78086,288,4380_92349,Castlebar,110795-00011-1,1,4380_7778208_4561001,4380_1475 -4380_78147,286,4380_9235,Cavan,6976-00010-1,0,4380_7778208_1090905,4380_164 -4380_78086,286,4380_92350,Castlebar,110799-00010-1,1,4380_7778208_4561001,4380_1475 -4380_78086,291,4380_92351,Castlebar,110804-00013-1,1,4380_7778208_4561001,4380_1476 -4380_78086,289,4380_92352,Castlebar,110793-00014-1,1,4380_7778208_4561001,4380_1475 -4380_78086,287,4380_92353,Castlebar,110801-00012-1,1,4380_7778208_4561001,4380_1475 -4380_78086,292,4380_92354,Castlebar,110800-00016-1,1,4380_7778208_4561001,4380_1475 -4380_78086,290,4380_92355,Castlebar,110798-00015-1,1,4380_7778208_4561001,4380_1475 -4380_78086,294,4380_92356,Castlebar,110802-00018-1,1,4380_7778208_4561001,4380_1475 -4380_78086,293,4380_92357,Castlebar,110796-00017-1,1,4380_7778208_4561001,4380_1475 -4380_78086,296,4380_92358,Castlebar,110805-00021-1,1,4380_7778208_4561001,4380_1476 -4380_78086,295,4380_92359,Castlebar,110794-00019-1,1,4380_7778208_4561001,4380_1475 -4380_78147,297,4380_9236,Cavan,6020-00008-1,0,4380_7778208_1090114,4380_166 -4380_78087,287,4380_92361,Roscommon,110806-00012-1,0,4380_7778208_4571201,4380_1477 -4380_78087,294,4380_92362,Roscommon,110807-00018-1,0,4380_7778208_4571201,4380_1477 -4380_78087,287,4380_92364,Castlerea,110808-00012-1,1,4380_7778208_4571201,4380_1478 -4380_78087,294,4380_92365,Castlerea,110809-00018-1,1,4380_7778208_4571201,4380_1478 -4380_78147,288,4380_9237,Cavan,6980-00011-1,0,4380_7778208_1090905,4380_164 -4380_78088,285,4380_92371,Ballina,110890-00009-1,0,4380_7778208_4580502,4380_1479 -4380_78088,288,4380_92373,Ballina,110898-00011-1,0,4380_7778208_4580502,4380_1479 -4380_78088,286,4380_92374,Ballina,110894-00010-1,0,4380_7778208_4580502,4380_1479 -4380_78088,291,4380_92375,Ballina,110888-00013-1,0,4380_7778208_4580502,4380_1479 -4380_78088,289,4380_92376,Ballina,110896-00014-1,0,4380_7778208_4580502,4380_1479 -4380_78088,287,4380_92377,Ballina,110892-00012-1,0,4380_7778208_4580502,4380_1479 -4380_78088,292,4380_92378,Ballina,110895-00016-1,0,4380_7778208_4580502,4380_1479 -4380_78088,290,4380_92379,Ballina,110891-00015-1,0,4380_7778208_4580502,4380_1479 -4380_78147,287,4380_9238,Cavan,6984-00012-1,0,4380_7778208_1090905,4380_164 -4380_78088,294,4380_92380,Ballina,110893-00018-1,0,4380_7778208_4580502,4380_1479 -4380_78088,293,4380_92381,Ballina,110899-00017-1,0,4380_7778208_4580502,4380_1479 -4380_78088,296,4380_92382,Ballina,110889-00021-1,0,4380_7778208_4580502,4380_1479 -4380_78088,295,4380_92383,Ballina,110897-00019-1,0,4380_7778208_4580502,4380_1479 -4380_78088,285,4380_92389,Ballina,110830-00009-1,0,4380_7778208_4580501,4380_1480 -4380_78147,289,4380_9239,Cavan,6968-00014-1,0,4380_7778208_1090905,4380_164 -4380_78088,288,4380_92391,Ballina,110822-00011-1,0,4380_7778208_4580501,4380_1480 -4380_78088,286,4380_92392,Ballina,110826-00010-1,0,4380_7778208_4580501,4380_1480 -4380_78088,291,4380_92393,Ballina,110832-00013-1,0,4380_7778208_4580501,4380_1480 -4380_78088,289,4380_92394,Ballina,110824-00014-1,0,4380_7778208_4580501,4380_1480 -4380_78088,287,4380_92395,Ballina,110828-00012-1,0,4380_7778208_4580501,4380_1480 -4380_78088,292,4380_92396,Ballina,110827-00016-1,0,4380_7778208_4580501,4380_1480 -4380_78088,290,4380_92397,Ballina,110831-00015-1,0,4380_7778208_4580501,4380_1480 -4380_78088,294,4380_92398,Ballina,110829-00018-1,0,4380_7778208_4580501,4380_1480 -4380_78088,293,4380_92399,Ballina,110823-00017-1,0,4380_7778208_4580501,4380_1480 -4380_78113,286,4380_924,Dublin via Airport,50125-00010-1,1,4380_7778208_1000908,4380_18 -4380_78147,290,4380_9240,Cavan,55453-00015-1,0,4380_7778208_1090905,4380_164 -4380_78088,296,4380_92400,Ballina,110833-00021-1,0,4380_7778208_4580501,4380_1480 -4380_78088,295,4380_92401,Ballina,110825-00019-1,0,4380_7778208_4580501,4380_1480 -4380_78088,297,4380_92403,Ballina,110834-00008-1,0,4380_7778208_4580501,4380_1479 -4380_78088,285,4380_92409,Ballina,110976-00009-1,0,4380_7778208_4580503,4380_1480 -4380_78147,291,4380_9241,Cavan,5498-00013-1,0,4380_7778208_1090104,4380_168 -4380_78088,288,4380_92411,Ballina,110982-00011-1,0,4380_7778208_4580503,4380_1480 -4380_78088,286,4380_92412,Ballina,110984-00010-1,0,4380_7778208_4580503,4380_1480 -4380_78088,291,4380_92413,Ballina,111033-00013-1,0,4380_7778208_4580504,4380_1480 -4380_78088,289,4380_92414,Ballina,110980-00014-1,0,4380_7778208_4580503,4380_1480 -4380_78088,287,4380_92415,Ballina,110978-00012-1,0,4380_7778208_4580503,4380_1480 -4380_78088,292,4380_92416,Ballina,110985-00016-1,0,4380_7778208_4580503,4380_1480 -4380_78088,290,4380_92417,Ballina,110977-00015-1,0,4380_7778208_4580503,4380_1480 -4380_78088,294,4380_92418,Ballina,110979-00018-1,0,4380_7778208_4580503,4380_1480 -4380_78088,293,4380_92419,Ballina,110983-00017-1,0,4380_7778208_4580503,4380_1480 -4380_78147,292,4380_9242,Cavan,55454-00016-1,0,4380_7778208_1090905,4380_164 -4380_78088,296,4380_92420,Ballina,111034-00021-1,0,4380_7778208_4580504,4380_1480 -4380_78088,295,4380_92421,Ballina,110981-00019-1,0,4380_7778208_4580503,4380_1480 -4380_78088,297,4380_92423,Ballina,110986-00008-1,0,4380_7778208_4580503,4380_1479 -4380_78088,297,4380_92425,Ballina,110913-00008-1,0,4380_7778208_4580502,4380_1480 -4380_78147,293,4380_9243,Cavan,55457-00017-1,0,4380_7778208_1090905,4380_164 -4380_78088,297,4380_92432,Ballina,111064-00008-1,0,4380_7778208_4581001,4380_1480 -4380_78088,285,4380_92433,Ballina,111065-00009-1,0,4380_7778208_4581001,4380_1483 -4380_78088,288,4380_92435,Ballina,111062-00011-1,0,4380_7778208_4581001,4380_1483 -4380_78088,286,4380_92436,Ballina,111060-00010-1,0,4380_7778208_4581001,4380_1483 -4380_78088,291,4380_92437,Ballina,111067-00013-1,0,4380_7778208_4581001,4380_1483 -4380_78088,289,4380_92438,Ballina,111058-00014-1,0,4380_7778208_4581001,4380_1483 -4380_78088,287,4380_92439,Ballina,111056-00012-1,0,4380_7778208_4581001,4380_1483 -4380_78147,294,4380_9244,Cavan,55455-00018-1,0,4380_7778208_1090905,4380_164 -4380_78088,292,4380_92440,Ballina,111061-00016-1,0,4380_7778208_4581001,4380_1483 -4380_78088,290,4380_92441,Ballina,111066-00015-1,0,4380_7778208_4581001,4380_1483 -4380_78088,294,4380_92442,Ballina,111057-00018-1,0,4380_7778208_4581001,4380_1483 -4380_78088,293,4380_92443,Ballina,111063-00017-1,0,4380_7778208_4581001,4380_1483 -4380_78088,296,4380_92444,Ballina,111068-00021-1,0,4380_7778208_4581001,4380_1483 -4380_78088,295,4380_92445,Ballina,111059-00019-1,0,4380_7778208_4581001,4380_1483 -4380_78147,295,4380_9245,Cavan,55456-00019-1,0,4380_7778208_1090905,4380_164 -4380_78088,285,4380_92451,Ballina,110916-00009-1,0,4380_7778208_4580502,4380_1480 -4380_78088,288,4380_92453,Ballina,110918-00011-1,0,4380_7778208_4580502,4380_1480 -4380_78088,286,4380_92454,Ballina,110922-00010-1,0,4380_7778208_4580502,4380_1480 -4380_78088,291,4380_92455,Ballina,110924-00013-1,0,4380_7778208_4580502,4380_1480 -4380_78088,289,4380_92456,Ballina,110914-00014-1,0,4380_7778208_4580502,4380_1480 -4380_78088,287,4380_92457,Ballina,110920-00012-1,0,4380_7778208_4580502,4380_1480 -4380_78088,292,4380_92458,Ballina,110923-00016-1,0,4380_7778208_4580502,4380_1480 -4380_78088,290,4380_92459,Ballina,110917-00015-1,0,4380_7778208_4580502,4380_1480 -4380_78147,296,4380_9246,Cavan,54820-00021-1,0,4380_7778208_1090104,4380_168 -4380_78088,294,4380_92460,Ballina,110921-00018-1,0,4380_7778208_4580502,4380_1480 -4380_78088,293,4380_92461,Ballina,110919-00017-1,0,4380_7778208_4580502,4380_1480 -4380_78088,296,4380_92462,Ballina,110925-00021-1,0,4380_7778208_4580502,4380_1480 -4380_78088,295,4380_92463,Ballina,110915-00019-1,0,4380_7778208_4580502,4380_1480 -4380_78088,297,4380_92465,Ballina,110848-00008-1,0,4380_7778208_4580501,4380_1480 -4380_78088,285,4380_92471,Ballina,110849-00009-1,0,4380_7778208_4580501,4380_1480 -4380_78088,288,4380_92473,Ballina,110855-00011-1,0,4380_7778208_4580501,4380_1480 -4380_78088,286,4380_92474,Ballina,110851-00010-1,0,4380_7778208_4580501,4380_1480 -4380_78088,291,4380_92475,Ballina,110859-00013-1,0,4380_7778208_4580501,4380_1480 -4380_78088,289,4380_92476,Ballina,110857-00014-1,0,4380_7778208_4580501,4380_1480 -4380_78088,287,4380_92477,Ballina,110853-00012-1,0,4380_7778208_4580501,4380_1480 -4380_78088,292,4380_92478,Ballina,110852-00016-1,0,4380_7778208_4580501,4380_1480 -4380_78088,290,4380_92479,Ballina,110850-00015-1,0,4380_7778208_4580501,4380_1480 -4380_78088,294,4380_92480,Ballina,110854-00018-1,0,4380_7778208_4580501,4380_1480 -4380_78088,293,4380_92481,Ballina,110856-00017-1,0,4380_7778208_4580501,4380_1480 -4380_78088,296,4380_92482,Ballina,110860-00021-1,0,4380_7778208_4580501,4380_1480 -4380_78088,295,4380_92483,Ballina,110858-00019-1,0,4380_7778208_4580501,4380_1480 -4380_78088,297,4380_92485,Ballina,110998-00008-1,0,4380_7778208_4580503,4380_1480 -4380_78088,297,4380_92492,Ballina,110937-00008-1,0,4380_7778208_4580502,4380_1480 -4380_78088,285,4380_92493,Ballina,111005-00009-1,0,4380_7778208_4580503,4380_1483 -4380_78088,288,4380_92495,Ballina,111003-00011-1,0,4380_7778208_4580503,4380_1483 -4380_78088,286,4380_92496,Ballina,110999-00010-1,0,4380_7778208_4580503,4380_1483 -4380_78088,291,4380_92497,Ballina,111037-00013-1,0,4380_7778208_4580504,4380_1483 -4380_78088,289,4380_92498,Ballina,111007-00014-1,0,4380_7778208_4580503,4380_1483 -4380_78088,287,4380_92499,Ballina,111001-00012-1,0,4380_7778208_4580503,4380_1483 -4380_78113,297,4380_925,Dublin via Airport,50041-00008-1,1,4380_7778208_1000907,4380_18 -4380_78088,292,4380_92500,Ballina,111000-00016-1,0,4380_7778208_4580503,4380_1483 -4380_78088,290,4380_92501,Ballina,111006-00015-1,0,4380_7778208_4580503,4380_1483 -4380_78088,294,4380_92502,Ballina,111002-00018-1,0,4380_7778208_4580503,4380_1483 -4380_78088,293,4380_92503,Ballina,111004-00017-1,0,4380_7778208_4580503,4380_1483 -4380_78088,296,4380_92504,Ballina,111038-00021-1,0,4380_7778208_4580504,4380_1483 -4380_78088,295,4380_92505,Ballina,111008-00019-1,0,4380_7778208_4580503,4380_1483 -4380_78088,285,4380_92511,Ballina,111090-00009-1,0,4380_7778208_4581001,4380_1480 -4380_78088,288,4380_92513,Ballina,111086-00011-1,0,4380_7778208_4581001,4380_1480 -4380_78088,286,4380_92514,Ballina,111088-00010-1,0,4380_7778208_4581001,4380_1480 -4380_78088,291,4380_92515,Ballina,111084-00013-1,0,4380_7778208_4581001,4380_1480 -4380_78088,289,4380_92516,Ballina,111082-00014-1,0,4380_7778208_4581001,4380_1480 -4380_78088,287,4380_92517,Ballina,111092-00012-1,0,4380_7778208_4581001,4380_1480 -4380_78088,292,4380_92518,Ballina,111089-00016-1,0,4380_7778208_4581001,4380_1480 -4380_78088,290,4380_92519,Ballina,111091-00015-1,0,4380_7778208_4581001,4380_1480 -4380_78088,294,4380_92520,Ballina,111093-00018-1,0,4380_7778208_4581001,4380_1480 -4380_78088,293,4380_92521,Ballina,111087-00017-1,0,4380_7778208_4581001,4380_1480 -4380_78088,296,4380_92522,Ballina,111085-00021-1,0,4380_7778208_4581001,4380_1480 -4380_78088,295,4380_92523,Ballina,111083-00019-1,0,4380_7778208_4581001,4380_1480 -4380_78088,297,4380_92525,Ballina,111094-00008-1,0,4380_7778208_4581001,4380_1480 -4380_78088,285,4380_92531,Ballina,110944-00009-1,0,4380_7778208_4580502,4380_1480 -4380_78088,288,4380_92533,Ballina,110948-00011-1,0,4380_7778208_4580502,4380_1480 -4380_78088,286,4380_92534,Ballina,110950-00010-1,0,4380_7778208_4580502,4380_1480 -4380_78088,291,4380_92535,Ballina,110946-00013-1,0,4380_7778208_4580502,4380_1480 -4380_78088,289,4380_92536,Ballina,110942-00014-1,0,4380_7778208_4580502,4380_1480 -4380_78088,287,4380_92537,Ballina,110940-00012-1,0,4380_7778208_4580502,4380_1480 -4380_78088,292,4380_92538,Ballina,110951-00016-1,0,4380_7778208_4580502,4380_1480 -4380_78088,290,4380_92539,Ballina,110945-00015-1,0,4380_7778208_4580502,4380_1480 -4380_78147,285,4380_9254,Cavan,6031-00009-1,0,4380_7778208_1090115,4380_165 -4380_78088,294,4380_92540,Ballina,110941-00018-1,0,4380_7778208_4580502,4380_1480 -4380_78088,293,4380_92541,Ballina,110949-00017-1,0,4380_7778208_4580502,4380_1480 -4380_78088,296,4380_92542,Ballina,110947-00021-1,0,4380_7778208_4580502,4380_1480 -4380_78088,295,4380_92543,Ballina,110943-00019-1,0,4380_7778208_4580502,4380_1480 -4380_78088,297,4380_92545,Ballina,110874-00008-1,0,4380_7778208_4580501,4380_1480 -4380_78147,286,4380_9255,Cavan,6036-00010-1,0,4380_7778208_1090115,4380_165 -4380_78088,297,4380_92552,Sligo,111020-00008-1,0,4380_7778208_4580503,4380_1481 -4380_78088,285,4380_92553,Sligo,110885-00009-1,0,4380_7778208_4580501,4380_1482 -4380_78088,288,4380_92555,Sligo,110879-00011-1,0,4380_7778208_4580501,4380_1482 -4380_78088,286,4380_92556,Sligo,110875-00010-1,0,4380_7778208_4580501,4380_1482 -4380_78088,291,4380_92557,Sligo,110881-00013-1,0,4380_7778208_4580501,4380_1482 -4380_78088,289,4380_92558,Sligo,110877-00014-1,0,4380_7778208_4580501,4380_1482 -4380_78088,287,4380_92559,Sligo,110883-00012-1,0,4380_7778208_4580501,4380_1482 -4380_78147,297,4380_9256,Cavan,6958-00008-1,0,4380_7778208_1090904,4380_167 -4380_78088,292,4380_92560,Sligo,110876-00016-1,0,4380_7778208_4580501,4380_1482 -4380_78088,290,4380_92561,Sligo,110886-00015-1,0,4380_7778208_4580501,4380_1482 -4380_78088,294,4380_92562,Sligo,110884-00018-1,0,4380_7778208_4580501,4380_1482 -4380_78088,293,4380_92563,Sligo,110880-00017-1,0,4380_7778208_4580501,4380_1482 -4380_78088,296,4380_92564,Sligo,110882-00021-1,0,4380_7778208_4580501,4380_1482 -4380_78088,295,4380_92565,Sligo,110878-00019-1,0,4380_7778208_4580501,4380_1482 -4380_78147,288,4380_9257,Cavan,6041-00011-1,0,4380_7778208_1090115,4380_165 -4380_78088,297,4380_92572,Sligo,110965-00008-1,0,4380_7778208_4580502,4380_1481 -4380_78088,285,4380_92573,Sligo,111027-00009-1,0,4380_7778208_4580503,4380_1482 -4380_78088,288,4380_92575,Sligo,111025-00011-1,0,4380_7778208_4580503,4380_1482 -4380_78088,286,4380_92576,Sligo,111029-00010-1,0,4380_7778208_4580503,4380_1482 -4380_78088,291,4380_92577,Sligo,111041-00013-1,0,4380_7778208_4580504,4380_1482 -4380_78088,289,4380_92578,Sligo,111021-00014-1,0,4380_7778208_4580503,4380_1482 -4380_78088,287,4380_92579,Sligo,111023-00012-1,0,4380_7778208_4580503,4380_1482 -4380_78147,287,4380_9258,Cavan,6046-00012-1,0,4380_7778208_1090115,4380_165 -4380_78088,292,4380_92580,Sligo,111030-00016-1,0,4380_7778208_4580503,4380_1482 -4380_78088,290,4380_92581,Sligo,111028-00015-1,0,4380_7778208_4580503,4380_1482 -4380_78088,294,4380_92582,Sligo,111024-00018-1,0,4380_7778208_4580503,4380_1482 -4380_78088,293,4380_92583,Sligo,111026-00017-1,0,4380_7778208_4580503,4380_1482 -4380_78088,296,4380_92584,Sligo,111042-00021-1,0,4380_7778208_4580504,4380_1482 -4380_78088,295,4380_92585,Sligo,111022-00019-1,0,4380_7778208_4580503,4380_1482 -4380_78147,289,4380_9259,Cavan,6026-00014-1,0,4380_7778208_1090115,4380_165 -4380_78088,285,4380_92591,Enniskillen,110816-00009-1,1,4380_7778208_4580501,4380_1486 -4380_78088,288,4380_92593,Enniskillen,110820-00011-1,1,4380_7778208_4580501,4380_1486 -4380_78088,286,4380_92594,Enniskillen,110810-00010-1,1,4380_7778208_4580501,4380_1486 -4380_78088,291,4380_92595,Enniskillen,110814-00013-1,1,4380_7778208_4580501,4380_1486 -4380_78088,289,4380_92596,Enniskillen,110812-00014-1,1,4380_7778208_4580501,4380_1486 -4380_78088,287,4380_92597,Enniskillen,110818-00012-1,1,4380_7778208_4580501,4380_1486 -4380_78088,292,4380_92598,Enniskillen,110811-00016-1,1,4380_7778208_4580501,4380_1486 -4380_78088,290,4380_92599,Enniskillen,110817-00015-1,1,4380_7778208_4580501,4380_1486 -4380_78113,287,4380_926,Dublin via Airport,50127-00012-1,1,4380_7778208_1000908,4380_18 -4380_78147,290,4380_9260,Cavan,55249-00015-1,0,4380_7778208_1090115,4380_165 -4380_78088,294,4380_92600,Enniskillen,110819-00018-1,1,4380_7778208_4580501,4380_1486 -4380_78088,293,4380_92601,Enniskillen,110821-00017-1,1,4380_7778208_4580501,4380_1486 -4380_78088,296,4380_92602,Enniskillen,110815-00021-1,1,4380_7778208_4580501,4380_1486 -4380_78088,295,4380_92603,Enniskillen,110813-00019-1,1,4380_7778208_4580501,4380_1486 -4380_78088,285,4380_92609,Enniskillen,110966-00009-1,1,4380_7778208_4580503,4380_1486 -4380_78147,291,4380_9261,Cavan,5635-00013-1,0,4380_7778208_1090106,4380_169 -4380_78088,288,4380_92611,Enniskillen,110974-00011-1,1,4380_7778208_4580503,4380_1486 -4380_78088,286,4380_92612,Enniskillen,110970-00010-1,1,4380_7778208_4580503,4380_1486 -4380_78088,291,4380_92613,Enniskillen,111031-00013-1,1,4380_7778208_4580504,4380_1486 -4380_78088,289,4380_92614,Enniskillen,110972-00014-1,1,4380_7778208_4580503,4380_1486 -4380_78088,287,4380_92615,Enniskillen,110968-00012-1,1,4380_7778208_4580503,4380_1486 -4380_78088,292,4380_92616,Enniskillen,110971-00016-1,1,4380_7778208_4580503,4380_1486 -4380_78088,290,4380_92617,Enniskillen,110967-00015-1,1,4380_7778208_4580503,4380_1486 -4380_78088,294,4380_92618,Enniskillen,110969-00018-1,1,4380_7778208_4580503,4380_1486 -4380_78088,293,4380_92619,Enniskillen,110975-00017-1,1,4380_7778208_4580503,4380_1486 -4380_78147,292,4380_9262,Cavan,55252-00016-1,0,4380_7778208_1090115,4380_165 -4380_78088,296,4380_92620,Enniskillen,111032-00021-1,1,4380_7778208_4580504,4380_1486 -4380_78088,295,4380_92621,Enniskillen,110973-00019-1,1,4380_7778208_4580503,4380_1486 -4380_78088,297,4380_92623,Enniskillen,111043-00008-1,1,4380_7778208_4581001,4380_1484 -4380_78088,285,4380_92629,Enniskillen,111054-00009-1,1,4380_7778208_4581001,4380_1484 -4380_78147,293,4380_9263,Cavan,55248-00017-1,0,4380_7778208_1090115,4380_165 -4380_78088,288,4380_92631,Enniskillen,111044-00011-1,1,4380_7778208_4581001,4380_1484 -4380_78088,286,4380_92632,Enniskillen,111050-00010-1,1,4380_7778208_4581001,4380_1484 -4380_78088,291,4380_92633,Enniskillen,111046-00013-1,1,4380_7778208_4581001,4380_1484 -4380_78088,289,4380_92634,Enniskillen,111052-00014-1,1,4380_7778208_4581001,4380_1484 -4380_78088,287,4380_92635,Enniskillen,111048-00012-1,1,4380_7778208_4581001,4380_1484 -4380_78088,292,4380_92636,Enniskillen,111051-00016-1,1,4380_7778208_4581001,4380_1484 -4380_78088,290,4380_92637,Enniskillen,111055-00015-1,1,4380_7778208_4581001,4380_1484 -4380_78088,294,4380_92638,Enniskillen,111049-00018-1,1,4380_7778208_4581001,4380_1484 -4380_78088,293,4380_92639,Enniskillen,111045-00017-1,1,4380_7778208_4581001,4380_1484 -4380_78147,294,4380_9264,Cavan,55250-00018-1,0,4380_7778208_1090115,4380_165 -4380_78088,296,4380_92640,Enniskillen,111047-00021-1,1,4380_7778208_4581001,4380_1484 -4380_78088,295,4380_92641,Enniskillen,111053-00019-1,1,4380_7778208_4581001,4380_1484 -4380_78088,297,4380_92643,Enniskillen,110900-00008-1,1,4380_7778208_4580502,4380_1486 -4380_78088,285,4380_92649,Enniskillen,110901-00009-1,1,4380_7778208_4580502,4380_1484 -4380_78147,295,4380_9265,Cavan,55251-00019-1,0,4380_7778208_1090115,4380_165 -4380_78088,288,4380_92651,Enniskillen,110903-00011-1,1,4380_7778208_4580502,4380_1484 -4380_78088,286,4380_92652,Enniskillen,110909-00010-1,1,4380_7778208_4580502,4380_1484 -4380_78088,291,4380_92653,Enniskillen,110911-00013-1,1,4380_7778208_4580502,4380_1484 -4380_78088,289,4380_92654,Enniskillen,110907-00014-1,1,4380_7778208_4580502,4380_1484 -4380_78088,287,4380_92655,Enniskillen,110905-00012-1,1,4380_7778208_4580502,4380_1484 -4380_78088,292,4380_92656,Enniskillen,110910-00016-1,1,4380_7778208_4580502,4380_1484 -4380_78088,290,4380_92657,Enniskillen,110902-00015-1,1,4380_7778208_4580502,4380_1484 -4380_78088,294,4380_92658,Enniskillen,110906-00018-1,1,4380_7778208_4580502,4380_1484 -4380_78088,293,4380_92659,Enniskillen,110904-00017-1,1,4380_7778208_4580502,4380_1484 -4380_78147,296,4380_9266,Cavan,54934-00021-1,0,4380_7778208_1090106,4380_169 -4380_78088,296,4380_92660,Enniskillen,110912-00021-1,1,4380_7778208_4580502,4380_1484 -4380_78088,295,4380_92661,Enniskillen,110908-00019-1,1,4380_7778208_4580502,4380_1484 -4380_78088,297,4380_92663,Enniskillen,110835-00008-1,1,4380_7778208_4580501,4380_1484 -4380_78088,297,4380_92665,Enniskillen,110987-00008-1,1,4380_7778208_4580503,4380_1484 -4380_78088,285,4380_92671,Enniskillen,110842-00009-1,1,4380_7778208_4580501,4380_1484 -4380_78088,288,4380_92673,Enniskillen,110838-00011-1,1,4380_7778208_4580501,4380_1484 -4380_78088,286,4380_92674,Enniskillen,110844-00010-1,1,4380_7778208_4580501,4380_1484 -4380_78088,291,4380_92675,Enniskillen,110846-00013-1,1,4380_7778208_4580501,4380_1484 -4380_78088,289,4380_92676,Enniskillen,110836-00014-1,1,4380_7778208_4580501,4380_1484 -4380_78088,287,4380_92677,Enniskillen,110840-00012-1,1,4380_7778208_4580501,4380_1484 -4380_78088,292,4380_92678,Enniskillen,110845-00016-1,1,4380_7778208_4580501,4380_1484 -4380_78088,290,4380_92679,Enniskillen,110843-00015-1,1,4380_7778208_4580501,4380_1484 -4380_78088,294,4380_92680,Enniskillen,110841-00018-1,1,4380_7778208_4580501,4380_1484 -4380_78088,293,4380_92681,Enniskillen,110839-00017-1,1,4380_7778208_4580501,4380_1484 -4380_78088,296,4380_92682,Enniskillen,110847-00021-1,1,4380_7778208_4580501,4380_1484 -4380_78088,295,4380_92683,Enniskillen,110837-00019-1,1,4380_7778208_4580501,4380_1484 -4380_78088,285,4380_92689,Enniskillen,110996-00009-1,1,4380_7778208_4580503,4380_1484 -4380_78088,288,4380_92691,Enniskillen,110990-00011-1,1,4380_7778208_4580503,4380_1484 -4380_78088,286,4380_92692,Enniskillen,110988-00010-1,1,4380_7778208_4580503,4380_1484 -4380_78088,291,4380_92693,Enniskillen,111035-00013-1,1,4380_7778208_4580504,4380_1484 -4380_78088,289,4380_92694,Enniskillen,110994-00014-1,1,4380_7778208_4580503,4380_1484 -4380_78088,287,4380_92695,Enniskillen,110992-00012-1,1,4380_7778208_4580503,4380_1484 -4380_78088,292,4380_92696,Enniskillen,110989-00016-1,1,4380_7778208_4580503,4380_1484 -4380_78088,290,4380_92697,Enniskillen,110997-00015-1,1,4380_7778208_4580503,4380_1484 -4380_78088,294,4380_92698,Enniskillen,110993-00018-1,1,4380_7778208_4580503,4380_1484 -4380_78088,293,4380_92699,Enniskillen,110991-00017-1,1,4380_7778208_4580503,4380_1484 -4380_78113,288,4380_927,Dublin via Airport,50121-00011-1,1,4380_7778208_1000908,4380_18 -4380_78088,296,4380_92700,Enniskillen,111036-00021-1,1,4380_7778208_4580504,4380_1484 -4380_78088,295,4380_92701,Enniskillen,110995-00019-1,1,4380_7778208_4580503,4380_1484 -4380_78088,297,4380_92703,Enniskillen,110926-00008-1,1,4380_7778208_4580502,4380_1484 -4380_78088,285,4380_92709,Enniskillen,111069-00009-1,1,4380_7778208_4581001,4380_1484 -4380_78088,288,4380_92711,Enniskillen,111073-00011-1,1,4380_7778208_4581001,4380_1484 -4380_78088,286,4380_92712,Enniskillen,111075-00010-1,1,4380_7778208_4581001,4380_1484 -4380_78088,291,4380_92713,Enniskillen,111071-00013-1,1,4380_7778208_4581001,4380_1484 -4380_78088,289,4380_92714,Enniskillen,111079-00014-1,1,4380_7778208_4581001,4380_1484 -4380_78088,287,4380_92715,Enniskillen,111077-00012-1,1,4380_7778208_4581001,4380_1484 -4380_78088,292,4380_92716,Enniskillen,111076-00016-1,1,4380_7778208_4581001,4380_1484 -4380_78088,290,4380_92717,Enniskillen,111070-00015-1,1,4380_7778208_4581001,4380_1484 -4380_78088,294,4380_92718,Enniskillen,111078-00018-1,1,4380_7778208_4581001,4380_1484 -4380_78088,293,4380_92719,Enniskillen,111074-00017-1,1,4380_7778208_4581001,4380_1484 -4380_78088,296,4380_92720,Enniskillen,111072-00021-1,1,4380_7778208_4581001,4380_1484 -4380_78088,295,4380_92721,Enniskillen,111080-00019-1,1,4380_7778208_4581001,4380_1484 -4380_78088,297,4380_92723,Enniskillen,111081-00008-1,1,4380_7778208_4581001,4380_1484 -4380_78088,297,4380_92730,Enniskillen,110861-00008-1,1,4380_7778208_4580501,4380_1484 -4380_78088,285,4380_92731,Enniskillen,110933-00009-1,1,4380_7778208_4580502,4380_1487 -4380_78088,288,4380_92733,Enniskillen,110938-00011-1,1,4380_7778208_4580502,4380_1487 -4380_78088,286,4380_92734,Enniskillen,110929-00010-1,1,4380_7778208_4580502,4380_1487 -4380_78088,291,4380_92735,Enniskillen,110935-00013-1,1,4380_7778208_4580502,4380_1487 -4380_78088,289,4380_92736,Enniskillen,110927-00014-1,1,4380_7778208_4580502,4380_1487 -4380_78088,287,4380_92737,Enniskillen,110931-00012-1,1,4380_7778208_4580502,4380_1487 -4380_78088,292,4380_92738,Enniskillen,110930-00016-1,1,4380_7778208_4580502,4380_1487 -4380_78088,290,4380_92739,Enniskillen,110934-00015-1,1,4380_7778208_4580502,4380_1487 -4380_78147,285,4380_9274,Cavan,6081-00009-1,0,4380_7778208_1090117,4380_164 -4380_78088,294,4380_92740,Enniskillen,110932-00018-1,1,4380_7778208_4580502,4380_1487 -4380_78088,293,4380_92741,Enniskillen,110939-00017-1,1,4380_7778208_4580502,4380_1487 -4380_78088,296,4380_92742,Enniskillen,110936-00021-1,1,4380_7778208_4580502,4380_1487 -4380_78088,295,4380_92743,Enniskillen,110928-00019-1,1,4380_7778208_4580502,4380_1487 -4380_78088,285,4380_92749,Enniskillen,110862-00009-1,1,4380_7778208_4580501,4380_1484 -4380_78147,286,4380_9275,Cavan,6086-00010-1,0,4380_7778208_1090117,4380_164 -4380_78088,288,4380_92751,Enniskillen,110872-00011-1,1,4380_7778208_4580501,4380_1484 -4380_78088,286,4380_92752,Enniskillen,110870-00010-1,1,4380_7778208_4580501,4380_1484 -4380_78088,291,4380_92753,Enniskillen,110866-00013-1,1,4380_7778208_4580501,4380_1484 -4380_78088,289,4380_92754,Enniskillen,110864-00014-1,1,4380_7778208_4580501,4380_1484 -4380_78088,287,4380_92755,Enniskillen,110868-00012-1,1,4380_7778208_4580501,4380_1484 -4380_78088,292,4380_92756,Enniskillen,110871-00016-1,1,4380_7778208_4580501,4380_1484 -4380_78088,290,4380_92757,Enniskillen,110863-00015-1,1,4380_7778208_4580501,4380_1484 -4380_78088,294,4380_92758,Enniskillen,110869-00018-1,1,4380_7778208_4580501,4380_1484 -4380_78088,293,4380_92759,Enniskillen,110873-00017-1,1,4380_7778208_4580501,4380_1484 -4380_78147,297,4380_9276,Cavan,6998-00008-1,0,4380_7778208_1090905,4380_166 -4380_78088,296,4380_92760,Enniskillen,110867-00021-1,1,4380_7778208_4580501,4380_1484 -4380_78088,295,4380_92761,Enniskillen,110865-00019-1,1,4380_7778208_4580501,4380_1484 -4380_78088,297,4380_92763,Enniskillen,111009-00008-1,1,4380_7778208_4580503,4380_1484 -4380_78147,288,4380_9277,Cavan,6091-00011-1,0,4380_7778208_1090117,4380_164 -4380_78088,297,4380_92770,Enniskillen,110952-00008-1,1,4380_7778208_4580502,4380_1484 -4380_78088,285,4380_92771,Enniskillen,111014-00009-1,1,4380_7778208_4580503,4380_1487 -4380_78088,288,4380_92773,Enniskillen,111012-00011-1,1,4380_7778208_4580503,4380_1487 -4380_78088,286,4380_92774,Enniskillen,111018-00010-1,1,4380_7778208_4580503,4380_1487 -4380_78088,291,4380_92775,Enniskillen,111039-00013-1,1,4380_7778208_4580504,4380_1487 -4380_78088,289,4380_92776,Enniskillen,111010-00014-1,1,4380_7778208_4580503,4380_1487 -4380_78088,287,4380_92777,Enniskillen,111016-00012-1,1,4380_7778208_4580503,4380_1487 -4380_78088,292,4380_92778,Enniskillen,111019-00016-1,1,4380_7778208_4580503,4380_1487 -4380_78088,290,4380_92779,Enniskillen,111015-00015-1,1,4380_7778208_4580503,4380_1487 -4380_78147,287,4380_9278,Cavan,6096-00012-1,0,4380_7778208_1090117,4380_164 -4380_78088,294,4380_92780,Enniskillen,111017-00018-1,1,4380_7778208_4580503,4380_1487 -4380_78088,293,4380_92781,Enniskillen,111013-00017-1,1,4380_7778208_4580503,4380_1487 -4380_78088,296,4380_92782,Enniskillen,111040-00021-1,1,4380_7778208_4580504,4380_1487 -4380_78088,295,4380_92783,Enniskillen,111011-00019-1,1,4380_7778208_4580503,4380_1487 -4380_78088,285,4380_92789,Sligo,110959-00009-1,1,4380_7778208_4580502,4380_1485 -4380_78147,289,4380_9279,Cavan,6076-00014-1,0,4380_7778208_1090117,4380_164 -4380_78088,288,4380_92791,Sligo,110955-00011-1,1,4380_7778208_4580502,4380_1485 -4380_78088,286,4380_92792,Sligo,110957-00010-1,1,4380_7778208_4580502,4380_1485 -4380_78088,291,4380_92793,Sligo,110953-00013-1,1,4380_7778208_4580502,4380_1485 -4380_78088,289,4380_92794,Sligo,110963-00014-1,1,4380_7778208_4580502,4380_1485 -4380_78088,287,4380_92795,Sligo,110961-00012-1,1,4380_7778208_4580502,4380_1485 -4380_78088,292,4380_92796,Sligo,110958-00016-1,1,4380_7778208_4580502,4380_1485 -4380_78088,290,4380_92797,Sligo,110960-00015-1,1,4380_7778208_4580502,4380_1485 -4380_78088,294,4380_92798,Sligo,110962-00018-1,1,4380_7778208_4580502,4380_1485 -4380_78088,293,4380_92799,Sligo,110956-00017-1,1,4380_7778208_4580502,4380_1485 -4380_78113,289,4380_928,Dublin via Airport,50123-00014-1,1,4380_7778208_1000908,4380_18 -4380_78147,290,4380_9280,Cavan,55289-00015-1,0,4380_7778208_1090117,4380_164 -4380_78088,296,4380_92800,Sligo,110954-00021-1,1,4380_7778208_4580502,4380_1485 -4380_78088,295,4380_92801,Sligo,110964-00019-1,1,4380_7778208_4580502,4380_1485 -4380_78088,297,4380_92803,Sligo,110887-00008-1,1,4380_7778208_4580501,4380_1485 -4380_78089,285,4380_92809,Roscommon,49533-00009-1,0,4380_7778208_731201,4380_1488 -4380_78147,291,4380_9281,Cavan,5755-00013-1,0,4380_7778208_1090108,4380_168 -4380_78089,286,4380_92810,Roscommon,49529-00010-1,0,4380_7778208_731201,4380_1488 -4380_78089,287,4380_92811,Roscommon,49527-00012-1,0,4380_7778208_731201,4380_1488 -4380_78089,288,4380_92812,Roscommon,49525-00011-1,0,4380_7778208_731201,4380_1488 -4380_78089,289,4380_92813,Roscommon,49531-00014-1,0,4380_7778208_731201,4380_1488 -4380_78089,290,4380_92814,Roscommon,49534-00015-1,0,4380_7778208_731201,4380_1488 -4380_78089,292,4380_92815,Roscommon,49530-00016-1,0,4380_7778208_731201,4380_1488 -4380_78089,293,4380_92816,Roscommon,49526-00017-1,0,4380_7778208_731201,4380_1488 -4380_78089,294,4380_92817,Roscommon,49528-00018-1,0,4380_7778208_731201,4380_1488 -4380_78089,295,4380_92818,Roscommon,49532-00019-1,0,4380_7778208_731201,4380_1488 -4380_78147,292,4380_9282,Cavan,55293-00016-1,0,4380_7778208_1090117,4380_164 -4380_78089,285,4380_92824,Athlone,49543-00009-1,1,4380_7778208_731201,4380_1489 -4380_78089,286,4380_92825,Athlone,49535-00010-1,1,4380_7778208_731201,4380_1489 -4380_78089,287,4380_92826,Athlone,49539-00012-1,1,4380_7778208_731201,4380_1489 -4380_78089,288,4380_92827,Athlone,49537-00011-1,1,4380_7778208_731201,4380_1489 -4380_78089,289,4380_92828,Athlone,49541-00014-1,1,4380_7778208_731201,4380_1489 -4380_78089,290,4380_92829,Athlone,49544-00015-1,1,4380_7778208_731201,4380_1489 -4380_78147,293,4380_9283,Cavan,55292-00017-1,0,4380_7778208_1090117,4380_164 -4380_78089,292,4380_92830,Athlone,49536-00016-1,1,4380_7778208_731201,4380_1489 -4380_78089,293,4380_92831,Athlone,49538-00017-1,1,4380_7778208_731201,4380_1489 -4380_78089,294,4380_92832,Athlone,49540-00018-1,1,4380_7778208_731201,4380_1489 -4380_78089,295,4380_92833,Athlone,49542-00019-1,1,4380_7778208_731201,4380_1489 -4380_78090,285,4380_92839,Sligo,112426-00009-1,0,4380_7778208_4620501,4380_1490 -4380_78147,294,4380_9284,Cavan,55290-00018-1,0,4380_7778208_1090117,4380_164 -4380_78090,288,4380_92840,Sligo,112428-00011-1,0,4380_7778208_4620501,4380_1490 -4380_78090,286,4380_92841,Sligo,112424-00010-1,0,4380_7778208_4620501,4380_1490 -4380_78090,289,4380_92842,Sligo,112422-00014-1,0,4380_7778208_4620501,4380_1490 -4380_78090,287,4380_92843,Sligo,112456-00012-1,0,4380_7778208_4620502,4380_1490 -4380_78090,292,4380_92844,Sligo,112425-00016-1,0,4380_7778208_4620501,4380_1490 -4380_78090,290,4380_92845,Sligo,112427-00015-1,0,4380_7778208_4620501,4380_1490 -4380_78090,294,4380_92846,Sligo,112457-00018-1,0,4380_7778208_4620502,4380_1490 -4380_78090,293,4380_92847,Sligo,112429-00017-1,0,4380_7778208_4620501,4380_1490 -4380_78090,295,4380_92848,Sligo,112423-00019-1,0,4380_7778208_4620501,4380_1490 -4380_78147,295,4380_9285,Cavan,55291-00019-1,0,4380_7778208_1090117,4380_164 -4380_78090,291,4380_92850,Sligo,112430-00013-1,0,4380_7778208_4620501,4380_1493 -4380_78090,296,4380_92851,Sligo,112431-00021-1,0,4380_7778208_4620501,4380_1493 -4380_78090,287,4380_92853,Sligo,112432-00012-1,0,4380_7778208_4620501,4380_1492 -4380_78090,294,4380_92854,Sligo,112433-00018-1,0,4380_7778208_4620501,4380_1492 -4380_78147,296,4380_9286,Cavan,55022-00021-1,0,4380_7778208_1090108,4380_168 -4380_78090,285,4380_92860,Sligo,112446-00009-1,0,4380_7778208_4620501,4380_1491 -4380_78090,288,4380_92861,Sligo,112450-00011-1,0,4380_7778208_4620501,4380_1491 -4380_78090,286,4380_92862,Sligo,112452-00010-1,0,4380_7778208_4620501,4380_1491 -4380_78090,289,4380_92863,Sligo,112448-00014-1,0,4380_7778208_4620501,4380_1491 -4380_78090,287,4380_92864,Sligo,112460-00012-1,0,4380_7778208_4620502,4380_1491 -4380_78090,292,4380_92865,Sligo,112453-00016-1,0,4380_7778208_4620501,4380_1491 -4380_78090,290,4380_92866,Sligo,112447-00015-1,0,4380_7778208_4620501,4380_1491 -4380_78090,294,4380_92867,Sligo,112461-00018-1,0,4380_7778208_4620502,4380_1491 -4380_78090,293,4380_92868,Sligo,112451-00017-1,0,4380_7778208_4620501,4380_1491 -4380_78090,295,4380_92869,Sligo,112449-00019-1,0,4380_7778208_4620501,4380_1491 -4380_78090,285,4380_92875,Dromahair,112420-00009-1,1,4380_7778208_4620501,4380_1494 -4380_78090,288,4380_92876,Dromahair,112414-00011-1,1,4380_7778208_4620501,4380_1494 -4380_78090,286,4380_92877,Dromahair,112418-00010-1,1,4380_7778208_4620501,4380_1494 -4380_78090,289,4380_92878,Dromahair,112416-00014-1,1,4380_7778208_4620501,4380_1494 -4380_78090,287,4380_92879,Dromahair,112454-00012-1,1,4380_7778208_4620502,4380_1494 -4380_78090,292,4380_92880,Dromahair,112419-00016-1,1,4380_7778208_4620501,4380_1494 -4380_78090,290,4380_92881,Dromahair,112421-00015-1,1,4380_7778208_4620501,4380_1494 -4380_78090,294,4380_92882,Dromahair,112455-00018-1,1,4380_7778208_4620502,4380_1494 -4380_78090,293,4380_92883,Dromahair,112415-00017-1,1,4380_7778208_4620501,4380_1494 -4380_78090,295,4380_92884,Dromahair,112417-00019-1,1,4380_7778208_4620501,4380_1494 -4380_78090,287,4380_92886,Carrigallen,112434-00012-1,1,4380_7778208_4620501,4380_1496 -4380_78090,294,4380_92887,Carrigallen,112435-00018-1,1,4380_7778208_4620501,4380_1496 -4380_78090,285,4380_92893,Dromahair,112442-00009-1,1,4380_7778208_4620501,4380_1495 -4380_78090,288,4380_92894,Dromahair,112436-00011-1,1,4380_7778208_4620501,4380_1495 -4380_78090,286,4380_92895,Dromahair,112438-00010-1,1,4380_7778208_4620501,4380_1495 -4380_78090,289,4380_92896,Dromahair,112440-00014-1,1,4380_7778208_4620501,4380_1495 -4380_78090,287,4380_92897,Dromahair,112458-00012-1,1,4380_7778208_4620502,4380_1495 -4380_78090,292,4380_92898,Dromahair,112439-00016-1,1,4380_7778208_4620501,4380_1495 -4380_78090,290,4380_92899,Dromahair,112443-00015-1,1,4380_7778208_4620501,4380_1495 -4380_78113,290,4380_929,Dublin via Airport,50130-00015-1,1,4380_7778208_1000908,4380_18 -4380_78090,294,4380_92900,Dromahair,112459-00018-1,1,4380_7778208_4620502,4380_1495 -4380_78090,293,4380_92901,Dromahair,112437-00017-1,1,4380_7778208_4620501,4380_1495 -4380_78090,295,4380_92902,Dromahair,112441-00019-1,1,4380_7778208_4620501,4380_1495 -4380_78090,291,4380_92904,Carrigallen,112444-00013-1,1,4380_7778208_4620501,4380_1497 -4380_78090,296,4380_92905,Carrigallen,112445-00021-1,1,4380_7778208_4620501,4380_1497 -4380_78091,289,4380_92907,Longford,112462-00014-1,0,4380_7778208_4630501,4380_1499 -4380_78091,295,4380_92908,Longford,112463-00019-1,0,4380_7778208_4630501,4380_1499 -4380_78091,286,4380_92910,Longford,112464-00010-1,0,4380_7778208_4630501,4380_1498 -4380_78091,292,4380_92911,Longford,112465-00016-1,0,4380_7778208_4630501,4380_1498 -4380_78091,289,4380_92913,Carrigallen,112474-00014-1,1,4380_7778208_4630501,4380_1501 -4380_78091,295,4380_92914,Carrigallen,112475-00019-1,1,4380_7778208_4630501,4380_1501 -4380_78091,286,4380_92916,Carrigallen,112476-00010-1,1,4380_7778208_4630501,4380_1500 -4380_78091,292,4380_92917,Carrigallen,112477-00016-1,1,4380_7778208_4630501,4380_1500 -4380_78092,288,4380_92919,Enniskillen,112478-00011-1,0,4380_7778208_4640501,4380_1502 -4380_78092,293,4380_92920,Enniskillen,112479-00017-1,0,4380_7778208_4640501,4380_1502 -4380_78092,288,4380_92922,Carrigallen,112480-00011-1,1,4380_7778208_4640501,4380_1503 -4380_78092,293,4380_92923,Carrigallen,112481-00017-1,1,4380_7778208_4640501,4380_1503 -4380_78093,285,4380_92925,Cavan,112482-00009-1,0,4380_7778208_4650501,4380_1504 -4380_78093,290,4380_92926,Cavan,112483-00015-1,0,4380_7778208_4650501,4380_1504 -4380_78093,285,4380_92928,Carrigallen,112484-00009-1,1,4380_7778208_4650501,4380_1505 -4380_78093,290,4380_92929,Carrigallen,112485-00015-1,1,4380_7778208_4650501,4380_1505 -4380_78094,297,4380_92936,Cavan,112576-00008-1,0,4380_7778208_4661201,4380_1506 -4380_78094,285,4380_92937,Cavan,112574-00009-1,0,4380_7778208_4661201,4380_1507 -4380_78094,288,4380_92939,Cavan,112564-00011-1,0,4380_7778208_4661201,4380_1507 -4380_78147,285,4380_9294,Cavan,6779-00009-1,0,4380_7778208_1090901,4380_165 -4380_78094,286,4380_92940,Cavan,112570-00010-1,0,4380_7778208_4661201,4380_1507 -4380_78094,291,4380_92941,Cavan,112572-00013-1,0,4380_7778208_4661201,4380_1508 -4380_78094,289,4380_92942,Cavan,112566-00014-1,0,4380_7778208_4661201,4380_1507 -4380_78094,287,4380_92943,Cavan,112568-00012-1,0,4380_7778208_4661201,4380_1507 -4380_78094,292,4380_92944,Cavan,112571-00016-1,0,4380_7778208_4661201,4380_1507 -4380_78094,290,4380_92945,Cavan,112575-00015-1,0,4380_7778208_4661201,4380_1507 -4380_78094,294,4380_92946,Cavan,112569-00018-1,0,4380_7778208_4661201,4380_1507 -4380_78094,293,4380_92947,Cavan,112565-00017-1,0,4380_7778208_4661201,4380_1507 -4380_78094,296,4380_92948,Cavan,112573-00021-1,0,4380_7778208_4661201,4380_1508 -4380_78094,295,4380_92949,Cavan,112567-00019-1,0,4380_7778208_4661201,4380_1507 -4380_78147,286,4380_9295,Cavan,6785-00010-1,0,4380_7778208_1090901,4380_165 -4380_78094,297,4380_92956,Cavan,112505-00008-1,0,4380_7778208_4660901,4380_1506 -4380_78094,285,4380_92957,Cavan,112510-00009-1,0,4380_7778208_4660901,4380_1507 -4380_78094,288,4380_92959,Cavan,112506-00011-1,0,4380_7778208_4660901,4380_1507 -4380_78147,297,4380_9296,Cavan,6820-00008-1,0,4380_7778208_1090901,4380_167 -4380_78094,286,4380_92960,Cavan,112503-00010-1,0,4380_7778208_4660901,4380_1507 -4380_78094,291,4380_92961,Cavan,112508-00013-1,0,4380_7778208_4660901,4380_1508 -4380_78094,289,4380_92962,Cavan,112501-00014-1,0,4380_7778208_4660901,4380_1507 -4380_78094,287,4380_92963,Cavan,112499-00012-1,0,4380_7778208_4660901,4380_1507 -4380_78094,292,4380_92964,Cavan,112504-00016-1,0,4380_7778208_4660901,4380_1507 -4380_78094,290,4380_92965,Cavan,112511-00015-1,0,4380_7778208_4660901,4380_1507 -4380_78094,294,4380_92966,Cavan,112500-00018-1,0,4380_7778208_4660901,4380_1507 -4380_78094,293,4380_92967,Cavan,112507-00017-1,0,4380_7778208_4660901,4380_1507 -4380_78094,296,4380_92968,Cavan,112509-00021-1,0,4380_7778208_4660901,4380_1508 -4380_78094,295,4380_92969,Cavan,112502-00019-1,0,4380_7778208_4660901,4380_1507 -4380_78147,288,4380_9297,Cavan,6791-00011-1,0,4380_7778208_1090901,4380_165 -4380_78094,297,4380_92976,Cavan,112600-00008-1,0,4380_7778208_4661201,4380_1506 -4380_78094,285,4380_92977,Cavan,112596-00009-1,0,4380_7778208_4661201,4380_1507 -4380_78094,288,4380_92979,Cavan,112601-00011-1,0,4380_7778208_4661201,4380_1507 -4380_78147,287,4380_9298,Cavan,6797-00012-1,0,4380_7778208_1090901,4380_165 -4380_78094,286,4380_92980,Cavan,112590-00010-1,0,4380_7778208_4661201,4380_1507 -4380_78094,291,4380_92981,Cavan,112594-00013-1,0,4380_7778208_4661201,4380_1508 -4380_78094,289,4380_92982,Cavan,112598-00014-1,0,4380_7778208_4661201,4380_1507 -4380_78094,287,4380_92983,Cavan,112592-00012-1,0,4380_7778208_4661201,4380_1507 -4380_78094,292,4380_92984,Cavan,112591-00016-1,0,4380_7778208_4661201,4380_1507 -4380_78094,290,4380_92985,Cavan,112597-00015-1,0,4380_7778208_4661201,4380_1507 -4380_78094,294,4380_92986,Cavan,112593-00018-1,0,4380_7778208_4661201,4380_1507 -4380_78094,293,4380_92987,Cavan,112602-00017-1,0,4380_7778208_4661201,4380_1507 -4380_78094,296,4380_92988,Cavan,112595-00021-1,0,4380_7778208_4661201,4380_1508 -4380_78094,295,4380_92989,Cavan,112599-00019-1,0,4380_7778208_4661201,4380_1507 -4380_78147,289,4380_9299,Cavan,6773-00014-1,0,4380_7778208_1090901,4380_165 -4380_78094,297,4380_92996,Cavan,112529-00008-1,0,4380_7778208_4660901,4380_1506 -4380_78094,285,4380_92997,Cavan,112527-00009-1,0,4380_7778208_4660901,4380_1507 -4380_78094,288,4380_92999,Cavan,112530-00011-1,0,4380_7778208_4660901,4380_1507 -4380_77946,286,4380_93,Dundalk,50475-00010-1,0,4380_7778208_1000915,4380_1 -4380_78113,291,4380_930,Dublin via Airport,50131-00013-1,1,4380_7778208_1000908,4380_18 -4380_78147,290,4380_9300,Cavan,55339-00015-1,0,4380_7778208_1090901,4380_165 -4380_78094,286,4380_93000,Cavan,112536-00010-1,0,4380_7778208_4660901,4380_1507 -4380_78094,291,4380_93001,Cavan,112534-00013-1,0,4380_7778208_4660901,4380_1508 -4380_78094,289,4380_93002,Cavan,112532-00014-1,0,4380_7778208_4660901,4380_1507 -4380_78094,287,4380_93003,Cavan,112525-00012-1,0,4380_7778208_4660901,4380_1507 -4380_78094,292,4380_93004,Cavan,112537-00016-1,0,4380_7778208_4660901,4380_1507 -4380_78094,290,4380_93005,Cavan,112528-00015-1,0,4380_7778208_4660901,4380_1507 -4380_78094,294,4380_93006,Cavan,112526-00018-1,0,4380_7778208_4660901,4380_1507 -4380_78094,293,4380_93007,Cavan,112531-00017-1,0,4380_7778208_4660901,4380_1507 -4380_78094,296,4380_93008,Cavan,112535-00021-1,0,4380_7778208_4660901,4380_1508 -4380_78094,295,4380_93009,Cavan,112533-00019-1,0,4380_7778208_4660901,4380_1507 -4380_78147,291,4380_9301,Cavan,6851-00013-1,0,4380_7778208_1090902,4380_169 -4380_78094,297,4380_93016,Cavan,112620-00008-1,0,4380_7778208_4661201,4380_1506 -4380_78094,285,4380_93017,Cavan,112621-00009-1,0,4380_7778208_4661201,4380_1507 -4380_78094,288,4380_93019,Cavan,112623-00011-1,0,4380_7778208_4661201,4380_1507 -4380_78147,292,4380_9302,Cavan,55342-00016-1,0,4380_7778208_1090901,4380_165 -4380_78094,286,4380_93020,Cavan,112627-00010-1,0,4380_7778208_4661201,4380_1507 -4380_78094,291,4380_93021,Cavan,112618-00013-1,0,4380_7778208_4661201,4380_1508 -4380_78094,289,4380_93022,Cavan,112625-00014-1,0,4380_7778208_4661201,4380_1507 -4380_78094,287,4380_93023,Cavan,112616-00012-1,0,4380_7778208_4661201,4380_1507 -4380_78094,292,4380_93024,Cavan,112628-00016-1,0,4380_7778208_4661201,4380_1507 -4380_78094,290,4380_93025,Cavan,112622-00015-1,0,4380_7778208_4661201,4380_1507 -4380_78094,294,4380_93026,Cavan,112617-00018-1,0,4380_7778208_4661201,4380_1507 -4380_78094,293,4380_93027,Cavan,112624-00017-1,0,4380_7778208_4661201,4380_1507 -4380_78094,296,4380_93028,Cavan,112619-00021-1,0,4380_7778208_4661201,4380_1508 -4380_78094,295,4380_93029,Cavan,112626-00019-1,0,4380_7778208_4661201,4380_1507 -4380_78147,293,4380_9303,Cavan,55341-00017-1,0,4380_7778208_1090901,4380_165 -4380_78094,297,4380_93036,Cavan,112563-00008-1,0,4380_7778208_4660901,4380_1506 -4380_78094,285,4380_93037,Cavan,112561-00009-1,0,4380_7778208_4660901,4380_1507 -4380_78094,288,4380_93039,Cavan,112559-00011-1,0,4380_7778208_4660901,4380_1507 -4380_78147,294,4380_9304,Cavan,55343-00018-1,0,4380_7778208_1090901,4380_165 -4380_78094,286,4380_93040,Cavan,112555-00010-1,0,4380_7778208_4660901,4380_1507 -4380_78094,291,4380_93041,Cavan,112553-00013-1,0,4380_7778208_4660901,4380_1508 -4380_78094,289,4380_93042,Cavan,112557-00014-1,0,4380_7778208_4660901,4380_1507 -4380_78094,287,4380_93043,Cavan,112551-00012-1,0,4380_7778208_4660901,4380_1507 -4380_78094,292,4380_93044,Cavan,112556-00016-1,0,4380_7778208_4660901,4380_1507 -4380_78094,290,4380_93045,Cavan,112562-00015-1,0,4380_7778208_4660901,4380_1507 -4380_78094,294,4380_93046,Cavan,112552-00018-1,0,4380_7778208_4660901,4380_1507 -4380_78094,293,4380_93047,Cavan,112560-00017-1,0,4380_7778208_4660901,4380_1507 -4380_78094,296,4380_93048,Cavan,112554-00021-1,0,4380_7778208_4660901,4380_1508 -4380_78094,295,4380_93049,Cavan,112558-00019-1,0,4380_7778208_4660901,4380_1507 -4380_78147,295,4380_9305,Cavan,55340-00019-1,0,4380_7778208_1090901,4380_165 -4380_78094,297,4380_93056,Athlone,112496-00008-1,1,4380_7778208_4660901,4380_1509 -4380_78094,285,4380_93057,Athlone,112488-00009-1,1,4380_7778208_4660901,4380_1510 -4380_78094,288,4380_93059,Athlone,112492-00011-1,1,4380_7778208_4660901,4380_1510 -4380_78147,296,4380_9306,Cavan,55376-00021-1,0,4380_7778208_1090902,4380_169 -4380_78094,286,4380_93060,Athlone,112490-00010-1,1,4380_7778208_4660901,4380_1510 -4380_78094,291,4380_93061,Athlone,112494-00013-1,1,4380_7778208_4660901,4380_1511 -4380_78094,289,4380_93062,Athlone,112486-00014-1,1,4380_7778208_4660901,4380_1510 -4380_78094,287,4380_93063,Athlone,112497-00012-1,1,4380_7778208_4660901,4380_1510 -4380_78094,292,4380_93064,Athlone,112491-00016-1,1,4380_7778208_4660901,4380_1510 -4380_78094,290,4380_93065,Athlone,112489-00015-1,1,4380_7778208_4660901,4380_1510 -4380_78094,294,4380_93066,Athlone,112498-00018-1,1,4380_7778208_4660901,4380_1510 -4380_78094,293,4380_93067,Athlone,112493-00017-1,1,4380_7778208_4660901,4380_1510 -4380_78094,296,4380_93068,Athlone,112495-00021-1,1,4380_7778208_4660901,4380_1511 -4380_78094,295,4380_93069,Athlone,112487-00019-1,1,4380_7778208_4660901,4380_1510 -4380_78094,297,4380_93076,Athlone,112577-00008-1,1,4380_7778208_4661201,4380_1509 -4380_78094,285,4380_93077,Athlone,112578-00009-1,1,4380_7778208_4661201,4380_1510 -4380_78094,288,4380_93079,Athlone,112588-00011-1,1,4380_7778208_4661201,4380_1510 -4380_78094,286,4380_93080,Athlone,112586-00010-1,1,4380_7778208_4661201,4380_1510 -4380_78094,291,4380_93081,Athlone,112584-00013-1,1,4380_7778208_4661201,4380_1511 -4380_78094,289,4380_93082,Athlone,112580-00014-1,1,4380_7778208_4661201,4380_1510 -4380_78094,287,4380_93083,Athlone,112582-00012-1,1,4380_7778208_4661201,4380_1510 -4380_78094,292,4380_93084,Athlone,112587-00016-1,1,4380_7778208_4661201,4380_1510 -4380_78094,290,4380_93085,Athlone,112579-00015-1,1,4380_7778208_4661201,4380_1510 -4380_78094,294,4380_93086,Athlone,112583-00018-1,1,4380_7778208_4661201,4380_1510 -4380_78094,293,4380_93087,Athlone,112589-00017-1,1,4380_7778208_4661201,4380_1510 -4380_78094,296,4380_93088,Athlone,112585-00021-1,1,4380_7778208_4661201,4380_1511 -4380_78094,295,4380_93089,Athlone,112581-00019-1,1,4380_7778208_4661201,4380_1510 -4380_78094,297,4380_93096,Athlone,112524-00008-1,1,4380_7778208_4660901,4380_1509 -4380_78094,285,4380_93097,Athlone,112522-00009-1,1,4380_7778208_4660901,4380_1510 -4380_78094,288,4380_93099,Athlone,112512-00011-1,1,4380_7778208_4660901,4380_1510 -4380_78113,292,4380_931,Dublin via Airport,50126-00016-1,1,4380_7778208_1000908,4380_18 -4380_78094,286,4380_93100,Athlone,112520-00010-1,1,4380_7778208_4660901,4380_1510 -4380_78094,291,4380_93101,Athlone,112516-00013-1,1,4380_7778208_4660901,4380_1511 -4380_78094,289,4380_93102,Athlone,112518-00014-1,1,4380_7778208_4660901,4380_1510 -4380_78094,287,4380_93103,Athlone,112514-00012-1,1,4380_7778208_4660901,4380_1510 -4380_78094,292,4380_93104,Athlone,112521-00016-1,1,4380_7778208_4660901,4380_1510 -4380_78094,290,4380_93105,Athlone,112523-00015-1,1,4380_7778208_4660901,4380_1510 -4380_78094,294,4380_93106,Athlone,112515-00018-1,1,4380_7778208_4660901,4380_1510 -4380_78094,293,4380_93107,Athlone,112513-00017-1,1,4380_7778208_4660901,4380_1510 -4380_78094,296,4380_93108,Athlone,112517-00021-1,1,4380_7778208_4660901,4380_1511 -4380_78094,295,4380_93109,Athlone,112519-00019-1,1,4380_7778208_4660901,4380_1510 -4380_78094,297,4380_93116,Athlone,112603-00008-1,1,4380_7778208_4661201,4380_1509 -4380_78094,285,4380_93117,Athlone,112606-00009-1,1,4380_7778208_4661201,4380_1510 -4380_78094,288,4380_93119,Athlone,112604-00011-1,1,4380_7778208_4661201,4380_1510 -4380_78094,286,4380_93120,Athlone,112612-00010-1,1,4380_7778208_4661201,4380_1510 -4380_78094,291,4380_93121,Athlone,112614-00013-1,1,4380_7778208_4661201,4380_1511 -4380_78094,289,4380_93122,Athlone,112608-00014-1,1,4380_7778208_4661201,4380_1510 -4380_78094,287,4380_93123,Athlone,112610-00012-1,1,4380_7778208_4661201,4380_1510 -4380_78094,292,4380_93124,Athlone,112613-00016-1,1,4380_7778208_4661201,4380_1510 -4380_78094,290,4380_93125,Athlone,112607-00015-1,1,4380_7778208_4661201,4380_1510 -4380_78094,294,4380_93126,Athlone,112611-00018-1,1,4380_7778208_4661201,4380_1510 -4380_78094,293,4380_93127,Athlone,112605-00017-1,1,4380_7778208_4661201,4380_1510 -4380_78094,296,4380_93128,Athlone,112615-00021-1,1,4380_7778208_4661201,4380_1511 -4380_78094,295,4380_93129,Athlone,112609-00019-1,1,4380_7778208_4661201,4380_1510 -4380_78094,297,4380_93136,Athlone,112538-00008-1,1,4380_7778208_4660901,4380_1509 -4380_78094,285,4380_93137,Athlone,112541-00009-1,1,4380_7778208_4660901,4380_1510 -4380_78094,288,4380_93139,Athlone,112539-00011-1,1,4380_7778208_4660901,4380_1510 -4380_78147,285,4380_9314,Cavan,6831-00009-1,0,4380_7778208_1090902,4380_164 -4380_78094,286,4380_93140,Athlone,112547-00010-1,1,4380_7778208_4660901,4380_1510 -4380_78094,291,4380_93141,Athlone,112545-00013-1,1,4380_7778208_4660901,4380_1511 -4380_78094,289,4380_93142,Athlone,112549-00014-1,1,4380_7778208_4660901,4380_1510 -4380_78094,287,4380_93143,Athlone,112543-00012-1,1,4380_7778208_4660901,4380_1510 -4380_78094,292,4380_93144,Athlone,112548-00016-1,1,4380_7778208_4660901,4380_1510 -4380_78094,290,4380_93145,Athlone,112542-00015-1,1,4380_7778208_4660901,4380_1510 -4380_78094,294,4380_93146,Athlone,112544-00018-1,1,4380_7778208_4660901,4380_1510 -4380_78094,293,4380_93147,Athlone,112540-00017-1,1,4380_7778208_4660901,4380_1510 -4380_78094,296,4380_93148,Athlone,112546-00021-1,1,4380_7778208_4660901,4380_1511 -4380_78094,295,4380_93149,Athlone,112550-00019-1,1,4380_7778208_4660901,4380_1510 -4380_78147,286,4380_9315,Cavan,6836-00010-1,0,4380_7778208_1090902,4380_164 -4380_78094,297,4380_93156,Athlone,112641-00008-1,1,4380_7778208_4661201,4380_1509 -4380_78094,285,4380_93157,Athlone,112637-00009-1,1,4380_7778208_4661201,4380_1510 -4380_78094,288,4380_93159,Athlone,112635-00011-1,1,4380_7778208_4661201,4380_1510 -4380_78147,297,4380_9316,Cavan,6864-00008-1,0,4380_7778208_1090902,4380_166 -4380_78094,286,4380_93160,Athlone,112633-00010-1,1,4380_7778208_4661201,4380_1510 -4380_78094,291,4380_93161,Athlone,112629-00013-1,1,4380_7778208_4661201,4380_1511 -4380_78094,289,4380_93162,Athlone,112631-00014-1,1,4380_7778208_4661201,4380_1510 -4380_78094,287,4380_93163,Athlone,112639-00012-1,1,4380_7778208_4661201,4380_1510 -4380_78094,292,4380_93164,Athlone,112634-00016-1,1,4380_7778208_4661201,4380_1510 -4380_78094,290,4380_93165,Athlone,112638-00015-1,1,4380_7778208_4661201,4380_1510 -4380_78094,294,4380_93166,Athlone,112640-00018-1,1,4380_7778208_4661201,4380_1510 -4380_78094,293,4380_93167,Athlone,112636-00017-1,1,4380_7778208_4661201,4380_1510 -4380_78094,296,4380_93168,Athlone,112630-00021-1,1,4380_7778208_4661201,4380_1511 -4380_78094,295,4380_93169,Athlone,112632-00019-1,1,4380_7778208_4661201,4380_1510 -4380_78147,288,4380_9317,Cavan,6841-00011-1,0,4380_7778208_1090902,4380_164 -4380_78095,286,4380_93171,Longford,112466-00010-1,0,4380_7778208_4630501,4380_1512 -4380_78095,292,4380_93172,Longford,112467-00016-1,0,4380_7778208_4630501,4380_1512 -4380_78095,286,4380_93174,Longford,112470-00010-1,0,4380_7778208_4630501,4380_1512 -4380_78095,292,4380_93175,Longford,112471-00016-1,0,4380_7778208_4630501,4380_1512 -4380_78095,286,4380_93177,Longford,112468-00010-1,1,4380_7778208_4630501,4380_1513 -4380_78095,292,4380_93178,Longford,112469-00016-1,1,4380_7778208_4630501,4380_1513 -4380_78147,287,4380_9318,Cavan,6846-00012-1,0,4380_7778208_1090902,4380_164 -4380_78095,286,4380_93180,Longford,112472-00010-1,1,4380_7778208_4630501,4380_1513 -4380_78095,292,4380_93181,Longford,112473-00016-1,1,4380_7778208_4630501,4380_1513 -4380_78096,286,4380_93185,Carrick-on-Shannon,114996-00010-1,0,4380_7778208_46888801,4380_1514 -4380_78096,291,4380_93186,Carrick-on-Shannon,115000-00013-1,0,4380_7778208_46888801,4380_1514 -4380_78096,289,4380_93187,Carrick-on-Shannon,114998-00014-1,0,4380_7778208_46888801,4380_1514 -4380_78096,292,4380_93188,Carrick-on-Shannon,114997-00016-1,0,4380_7778208_46888801,4380_1514 -4380_78096,296,4380_93189,Carrick-on-Shannon,115001-00021-1,0,4380_7778208_46888801,4380_1514 -4380_78147,289,4380_9319,Cavan,6826-00014-1,0,4380_7778208_1090902,4380_164 -4380_78096,295,4380_93190,Carrick-on-Shannon,114999-00019-1,0,4380_7778208_46888801,4380_1514 -4380_78096,286,4380_93194,Carrick-on-Shannon,115008-00010-1,0,4380_7778208_46888801,4380_1514 -4380_78096,291,4380_93195,Carrick-on-Shannon,115012-00013-1,0,4380_7778208_46888801,4380_1514 -4380_78096,289,4380_93196,Carrick-on-Shannon,115010-00014-1,0,4380_7778208_46888801,4380_1514 -4380_78096,292,4380_93197,Carrick-on-Shannon,115009-00016-1,0,4380_7778208_46888801,4380_1514 -4380_78096,296,4380_93198,Carrick-on-Shannon,115013-00021-1,0,4380_7778208_46888801,4380_1514 -4380_78096,295,4380_93199,Carrick-on-Shannon,115011-00019-1,0,4380_7778208_46888801,4380_1514 -4380_78113,293,4380_932,Dublin via Airport,50122-00017-1,1,4380_7778208_1000908,4380_18 -4380_78147,290,4380_9320,Cavan,55378-00015-1,0,4380_7778208_1090902,4380_164 -4380_78096,286,4380_93203,Longford,115004-00010-1,1,4380_7778208_46888801,4380_1515 -4380_78096,291,4380_93204,Longford,115002-00013-1,1,4380_7778208_46888801,4380_1515 -4380_78096,289,4380_93205,Longford,115006-00014-1,1,4380_7778208_46888801,4380_1515 -4380_78096,292,4380_93206,Longford,115005-00016-1,1,4380_7778208_46888801,4380_1515 -4380_78096,296,4380_93207,Longford,115003-00021-1,1,4380_7778208_46888801,4380_1515 -4380_78096,295,4380_93208,Longford,115007-00019-1,1,4380_7778208_46888801,4380_1515 -4380_78147,291,4380_9321,Cavan,5858-00013-1,0,4380_7778208_1090110,4380_168 -4380_78096,286,4380_93212,Longford,115014-00010-1,1,4380_7778208_46888801,4380_1515 -4380_78096,291,4380_93213,Longford,115018-00013-1,1,4380_7778208_46888801,4380_1515 -4380_78096,289,4380_93214,Longford,117971-00014-1,1,4380_7778208_46888801,4380_1515 -4380_78096,292,4380_93215,Longford,115015-00016-1,1,4380_7778208_46888801,4380_1515 -4380_78096,296,4380_93216,Longford,115019-00021-1,1,4380_7778208_46888801,4380_1515 -4380_78096,295,4380_93217,Longford,117960-00019-1,1,4380_7778208_46888801,4380_1515 -4380_78097,291,4380_93219,Longford,115020-00013-1,0,4380_7778208_46988801,4380_1516 -4380_78147,292,4380_9322,Cavan,55379-00016-1,0,4380_7778208_1090902,4380_164 -4380_78097,296,4380_93220,Longford,115021-00021-1,0,4380_7778208_46988801,4380_1516 -4380_78097,291,4380_93222,Sligo,117595-00013-1,1,4380_7778208_46988801,4380_1517 -4380_78097,296,4380_93223,Sligo,117608-00021-1,1,4380_7778208_46988801,4380_1517 -4380_78098,287,4380_93225,Dromahair,115024-00012-1,0,4380_7778208_47088801,4380_1518 -4380_78098,294,4380_93226,Dromahair,115025-00018-1,0,4380_7778208_47088801,4380_1518 -4380_78098,287,4380_93228,Manorhamilton,115026-00012-1,0,4380_7778208_47088801,4380_1519 -4380_78098,294,4380_93229,Manorhamilton,115027-00018-1,0,4380_7778208_47088801,4380_1519 -4380_78147,293,4380_9323,Cavan,55377-00017-1,0,4380_7778208_1090902,4380_164 -4380_78098,291,4380_93231,Sligo,112644-00013-1,0,4380_7778208_4700501,4380_1520 -4380_78098,296,4380_93232,Sligo,112645-00021-1,0,4380_7778208_4700501,4380_1520 -4380_78098,291,4380_93234,Sligo,112648-00013-1,0,4380_7778208_4700501,4380_1521 -4380_78098,296,4380_93235,Sligo,112649-00021-1,0,4380_7778208_4700501,4380_1521 -4380_78098,291,4380_93237,Glenfarne,112642-00013-1,1,4380_7778208_4700501,4380_1523 -4380_78098,296,4380_93238,Glenfarne,112643-00021-1,1,4380_7778208_4700501,4380_1523 -4380_78147,294,4380_9324,Cavan,55380-00018-1,0,4380_7778208_1090902,4380_164 -4380_78098,291,4380_93240,Glenfarne,112646-00013-1,1,4380_7778208_4700501,4380_1524 -4380_78098,296,4380_93241,Glenfarne,112647-00021-1,1,4380_7778208_4700501,4380_1524 -4380_78098,287,4380_93243,Manorhamilton,117997-00012-1,1,4380_7778208_47088801,4380_1522 -4380_78098,294,4380_93244,Manorhamilton,118010-00018-1,1,4380_7778208_47088801,4380_1522 -4380_78147,295,4380_9325,Cavan,55381-00019-1,0,4380_7778208_1090902,4380_164 -4380_78099,285,4380_93250,Ballymote,112658-00009-1,0,4380_7778208_4710501,4380_1525 -4380_78099,288,4380_93251,Castlebaldwin,112650-00011-1,0,4380_7778208_4710501,4380_1527 -4380_78099,286,4380_93252,Ballymote,112654-00010-1,0,4380_7778208_4710501,4380_1525 -4380_78099,289,4380_93253,Ballymote,112652-00014-1,0,4380_7778208_4710501,4380_1525 -4380_78099,287,4380_93254,Castlebaldwin,112656-00012-1,0,4380_7778208_4710501,4380_1527 -4380_78099,292,4380_93255,Ballymote,112655-00016-1,0,4380_7778208_4710501,4380_1525 -4380_78099,290,4380_93256,Ballymote,112659-00015-1,0,4380_7778208_4710501,4380_1525 -4380_78099,294,4380_93257,Castlebaldwin,112657-00018-1,0,4380_7778208_4710501,4380_1527 -4380_78099,293,4380_93258,Castlebaldwin,112651-00017-1,0,4380_7778208_4710501,4380_1527 -4380_78099,295,4380_93259,Ballymote,112653-00019-1,0,4380_7778208_4710501,4380_1525 -4380_78147,296,4380_9326,Cavan,55103-00021-1,0,4380_7778208_1090110,4380_168 -4380_78099,285,4380_93265,Ballymote,112672-00009-1,0,4380_7778208_4710501,4380_1526 -4380_78099,288,4380_93266,Castlebaldwin,112678-00011-1,0,4380_7778208_4710501,4380_1528 -4380_78099,286,4380_93267,Ballymote,112674-00010-1,0,4380_7778208_4710501,4380_1526 -4380_78099,289,4380_93268,Ballymote,112676-00014-1,0,4380_7778208_4710501,4380_1526 -4380_78099,287,4380_93269,Castlebaldwin,112670-00012-1,0,4380_7778208_4710501,4380_1528 -4380_78099,292,4380_93270,Ballymote,112675-00016-1,0,4380_7778208_4710501,4380_1526 -4380_78099,290,4380_93271,Ballymote,112673-00015-1,0,4380_7778208_4710501,4380_1526 -4380_78099,294,4380_93272,Castlebaldwin,112671-00018-1,0,4380_7778208_4710501,4380_1528 -4380_78099,293,4380_93273,Castlebaldwin,112679-00017-1,0,4380_7778208_4710501,4380_1528 -4380_78099,295,4380_93274,Ballymote,112677-00019-1,0,4380_7778208_4710501,4380_1526 -4380_78099,288,4380_93277,Sligo,112662-00011-1,1,4380_7778208_4710501,4380_1531 -4380_78099,287,4380_93278,Sligo,112660-00012-1,1,4380_7778208_4710501,4380_1531 -4380_78099,294,4380_93279,Sligo,112661-00018-1,1,4380_7778208_4710501,4380_1531 -4380_78099,293,4380_93280,Sligo,112663-00017-1,1,4380_7778208_4710501,4380_1531 -4380_78099,285,4380_93284,Sligo,112664-00009-1,1,4380_7778208_4710501,4380_1529 -4380_78099,286,4380_93285,Sligo,112668-00010-1,1,4380_7778208_4710501,4380_1529 -4380_78099,289,4380_93286,Sligo,112666-00014-1,1,4380_7778208_4710501,4380_1529 -4380_78099,292,4380_93287,Sligo,112669-00016-1,1,4380_7778208_4710501,4380_1529 -4380_78099,290,4380_93288,Sligo,112665-00015-1,1,4380_7778208_4710501,4380_1529 -4380_78099,295,4380_93289,Sligo,112667-00019-1,1,4380_7778208_4710501,4380_1529 -4380_78099,285,4380_93295,Sligo,112688-00009-1,1,4380_7778208_4710501,4380_1530 -4380_78099,288,4380_93296,Sligo,112682-00011-1,1,4380_7778208_4710501,4380_1532 -4380_78099,286,4380_93297,Sligo,112684-00010-1,1,4380_7778208_4710501,4380_1530 -4380_78099,289,4380_93298,Sligo,112680-00014-1,1,4380_7778208_4710501,4380_1530 -4380_78099,287,4380_93299,Sligo,112686-00012-1,1,4380_7778208_4710501,4380_1532 -4380_78113,294,4380_933,Dublin via Airport,50128-00018-1,1,4380_7778208_1000908,4380_18 -4380_78099,292,4380_93300,Sligo,112685-00016-1,1,4380_7778208_4710501,4380_1530 -4380_78099,290,4380_93301,Sligo,112689-00015-1,1,4380_7778208_4710501,4380_1530 -4380_78099,294,4380_93302,Sligo,112687-00018-1,1,4380_7778208_4710501,4380_1532 -4380_78099,293,4380_93303,Sligo,112683-00017-1,1,4380_7778208_4710501,4380_1532 -4380_78099,295,4380_93304,Sligo,112681-00019-1,1,4380_7778208_4710501,4380_1530 -4380_78101,286,4380_93306,Ballymote,115030-00010-1,0,4380_7778208_47688801,4380_1533 -4380_78101,292,4380_93307,Ballymote,115031-00016-1,0,4380_7778208_47688801,4380_1533 -4380_78101,286,4380_93309,Ballymote,115034-00010-1,0,4380_7778208_47688801,4380_1534 -4380_78101,292,4380_93310,Ballymote,115035-00016-1,0,4380_7778208_47688801,4380_1534 -4380_78101,286,4380_93312,Ballymote,115032-00010-1,1,4380_7778208_47688801,4380_1535 -4380_78101,292,4380_93313,Ballymote,115033-00016-1,1,4380_7778208_47688801,4380_1535 -4380_78101,286,4380_93315,Ballymote,115036-00010-1,1,4380_7778208_47688801,4380_1536 -4380_78101,292,4380_93316,Ballymote,115037-00016-1,1,4380_7778208_47688801,4380_1536 -4380_78101,286,4380_93318,Ballymote,117986-00010-1,1,4380_7778208_47688801,4380_1537 -4380_78101,292,4380_93319,Ballymote,117999-00016-1,1,4380_7778208_47688801,4380_1537 -4380_78103,287,4380_93321,Sligo,114058-00012-1,0,4380_7778208_4790501,4380_1538 -4380_78103,294,4380_93322,Sligo,114059-00018-1,0,4380_7778208_4790501,4380_1538 -4380_78103,287,4380_93324,Coolaney,114060-00012-1,1,4380_7778208_4790501,4380_1539 -4380_78103,294,4380_93325,Coolaney,114061-00018-1,1,4380_7778208_4790501,4380_1539 -4380_78104,285,4380_93331,Derry,114168-00009-1,0,4380_7778208_4800602,4380_1546 -4380_78104,288,4380_93333,Derry,114170-00011-1,0,4380_7778208_4800602,4380_1546 -4380_78104,286,4380_93334,Derry,114174-00010-1,0,4380_7778208_4800602,4380_1546 -4380_78104,291,4380_93335,Derry,114166-00013-1,0,4380_7778208_4800602,4380_1552 -4380_78104,289,4380_93336,Derry,114172-00014-1,0,4380_7778208_4800602,4380_1546 -4380_78104,287,4380_93337,Derry,114164-00012-1,0,4380_7778208_4800602,4380_1546 -4380_78104,290,4380_93338,Derry,114169-00015-1,0,4380_7778208_4800602,4380_1546 -4380_78104,292,4380_93339,Derry,114175-00016-1,0,4380_7778208_4800602,4380_1546 -4380_78147,285,4380_9334,Cavan,6879-00009-1,0,4380_7778208_1090903,4380_164 -4380_78104,294,4380_93340,Derry,114165-00018-1,0,4380_7778208_4800602,4380_1546 -4380_78104,293,4380_93341,Derry,114171-00017-1,0,4380_7778208_4800602,4380_1546 -4380_78104,296,4380_93342,Derry,114167-00021-1,0,4380_7778208_4800602,4380_1552 -4380_78104,295,4380_93343,Derry,114173-00019-1,0,4380_7778208_4800602,4380_1546 -4380_78104,285,4380_93349,Derry,114104-00009-1,0,4380_7778208_4800601,4380_1543 -4380_78147,286,4380_9335,Cavan,6884-00010-1,0,4380_7778208_1090903,4380_164 -4380_78104,288,4380_93351,Derry,114106-00011-1,0,4380_7778208_4800601,4380_1543 -4380_78104,286,4380_93352,Derry,114110-00010-1,0,4380_7778208_4800601,4380_1543 -4380_78104,291,4380_93353,Derry,114112-00013-1,0,4380_7778208_4800601,4380_1549 -4380_78104,289,4380_93354,Derry,114108-00014-1,0,4380_7778208_4800601,4380_1543 -4380_78104,287,4380_93355,Derry,114114-00012-1,0,4380_7778208_4800601,4380_1543 -4380_78104,290,4380_93356,Derry,114105-00015-1,0,4380_7778208_4800601,4380_1543 -4380_78104,292,4380_93357,Derry,114111-00016-1,0,4380_7778208_4800601,4380_1543 -4380_78104,294,4380_93358,Derry,114115-00018-1,0,4380_7778208_4800601,4380_1543 -4380_78104,293,4380_93359,Derry,114107-00017-1,0,4380_7778208_4800601,4380_1543 -4380_78147,297,4380_9336,Cavan,6060-00008-1,0,4380_7778208_1090115,4380_166 -4380_78104,296,4380_93360,Derry,114113-00021-1,0,4380_7778208_4800601,4380_1549 -4380_78104,295,4380_93361,Derry,114109-00019-1,0,4380_7778208_4800601,4380_1543 -4380_78104,285,4380_93367,Derry,114196-00009-1,0,4380_7778208_4800602,4380_1546 -4380_78104,288,4380_93369,Derry,114192-00011-1,0,4380_7778208_4800602,4380_1546 -4380_78147,288,4380_9337,Cavan,6889-00011-1,0,4380_7778208_1090903,4380_164 -4380_78104,286,4380_93370,Derry,114194-00010-1,0,4380_7778208_4800602,4380_1546 -4380_78104,291,4380_93371,Derry,114190-00013-1,0,4380_7778208_4800602,4380_1552 -4380_78104,289,4380_93372,Derry,114188-00014-1,0,4380_7778208_4800602,4380_1546 -4380_78104,287,4380_93373,Derry,114198-00012-1,0,4380_7778208_4800602,4380_1546 -4380_78104,290,4380_93374,Derry,114197-00015-1,0,4380_7778208_4800602,4380_1546 -4380_78104,292,4380_93375,Derry,114195-00016-1,0,4380_7778208_4800602,4380_1546 -4380_78104,294,4380_93376,Derry,114199-00018-1,0,4380_7778208_4800602,4380_1546 -4380_78104,293,4380_93377,Derry,114193-00017-1,0,4380_7778208_4800602,4380_1546 -4380_78104,296,4380_93378,Derry,114191-00021-1,0,4380_7778208_4800602,4380_1552 -4380_78104,295,4380_93379,Derry,114189-00019-1,0,4380_7778208_4800602,4380_1546 -4380_78147,287,4380_9338,Cavan,6894-00012-1,0,4380_7778208_1090903,4380_164 -4380_78104,297,4380_93386,Ballyshannon,114062-00008-1,0,4380_7778208_4800501,4380_1540 -4380_78104,285,4380_93387,Ballyshannon,114080-00009-1,0,4380_7778208_4800502,4380_1542 -4380_78104,288,4380_93389,Ballyshannon,114076-00011-1,0,4380_7778208_4800502,4380_1542 -4380_78147,289,4380_9339,Cavan,6874-00014-1,0,4380_7778208_1090903,4380_164 -4380_78104,286,4380_93390,Ballyshannon,114074-00010-1,0,4380_7778208_4800502,4380_1542 -4380_78104,291,4380_93391,Ballyshannon,113518-00013-1,0,4380_7778208_4740501,4380_1547 -4380_78104,289,4380_93392,Ballyshannon,114072-00014-1,0,4380_7778208_4800502,4380_1542 -4380_78104,287,4380_93393,Ballyshannon,114078-00012-1,0,4380_7778208_4800502,4380_1542 -4380_78104,290,4380_93394,Ballyshannon,114081-00015-1,0,4380_7778208_4800502,4380_1542 -4380_78104,292,4380_93395,Ballyshannon,114075-00016-1,0,4380_7778208_4800502,4380_1542 -4380_78104,294,4380_93396,Ballyshannon,114079-00018-1,0,4380_7778208_4800502,4380_1542 -4380_78104,293,4380_93397,Ballyshannon,114077-00017-1,0,4380_7778208_4800502,4380_1542 -4380_78104,296,4380_93398,Ballyshannon,113519-00021-1,0,4380_7778208_4740501,4380_1547 -4380_78104,295,4380_93399,Ballyshannon,114073-00019-1,0,4380_7778208_4800502,4380_1542 -4380_78113,295,4380_934,Dublin via Airport,50124-00019-1,1,4380_7778208_1000908,4380_18 -4380_78147,290,4380_9340,Cavan,55410-00015-1,0,4380_7778208_1090903,4380_164 -4380_78104,285,4380_93405,Derry,114130-00009-1,0,4380_7778208_4800601,4380_1544 -4380_78104,288,4380_93407,Derry,114132-00011-1,0,4380_7778208_4800601,4380_1544 -4380_78104,286,4380_93408,Derry,114134-00010-1,0,4380_7778208_4800601,4380_1544 -4380_78104,291,4380_93409,Derry,114136-00013-1,0,4380_7778208_4800601,4380_1550 -4380_78147,291,4380_9341,Cavan,6899-00013-1,0,4380_7778208_1090903,4380_168 -4380_78104,289,4380_93410,Derry,114128-00014-1,0,4380_7778208_4800601,4380_1544 -4380_78104,287,4380_93411,Derry,114138-00012-1,0,4380_7778208_4800601,4380_1544 -4380_78104,290,4380_93412,Derry,114131-00015-1,0,4380_7778208_4800601,4380_1544 -4380_78104,292,4380_93413,Derry,114135-00016-1,0,4380_7778208_4800601,4380_1544 -4380_78104,294,4380_93414,Derry,114139-00018-1,0,4380_7778208_4800601,4380_1544 -4380_78104,293,4380_93415,Derry,114133-00017-1,0,4380_7778208_4800601,4380_1544 -4380_78104,296,4380_93416,Derry,114137-00021-1,0,4380_7778208_4800601,4380_1550 -4380_78104,295,4380_93417,Derry,114129-00019-1,0,4380_7778208_4800601,4380_1544 -4380_78147,292,4380_9342,Cavan,55407-00016-1,0,4380_7778208_1090903,4380_164 -4380_78104,285,4380_93428,Bundoran,112696-00009-1,0,4380_7778208_4710501,4380_1541 -4380_78104,285,4380_93429,Derry,114526-00009-1,0,4380_7778208_4910601,4380_1546 -4380_78147,293,4380_9343,Cavan,55408-00017-1,0,4380_7778208_1090903,4380_164 -4380_78104,288,4380_93432,Bundoran,112694-00011-1,0,4380_7778208_4710501,4380_1541 -4380_78104,288,4380_93433,Derry,114522-00011-1,0,4380_7778208_4910601,4380_1546 -4380_78104,286,4380_93434,Bundoran,112690-00010-1,0,4380_7778208_4710501,4380_1541 -4380_78104,286,4380_93435,Derry,114520-00010-1,0,4380_7778208_4910601,4380_1546 -4380_78104,291,4380_93436,Bundoran,114064-00013-1,0,4380_7778208_4800501,4380_1548 -4380_78104,291,4380_93437,Derry,114524-00013-1,0,4380_7778208_4910601,4380_1552 -4380_78104,289,4380_93438,Bundoran,112698-00014-1,0,4380_7778208_4710501,4380_1541 -4380_78104,289,4380_93439,Derry,114516-00014-1,0,4380_7778208_4910601,4380_1546 -4380_78147,294,4380_9344,Cavan,55406-00018-1,0,4380_7778208_1090903,4380_164 -4380_78104,287,4380_93440,Bundoran,112692-00012-1,0,4380_7778208_4710501,4380_1541 -4380_78104,287,4380_93441,Derry,114518-00012-1,0,4380_7778208_4910601,4380_1546 -4380_78104,290,4380_93442,Derry,114527-00015-1,0,4380_7778208_4910601,4380_1546 -4380_78104,292,4380_93443,Bundoran,112691-00016-1,0,4380_7778208_4710501,4380_1541 -4380_78104,292,4380_93444,Derry,114521-00016-1,0,4380_7778208_4910601,4380_1546 -4380_78104,290,4380_93445,Bundoran,112697-00015-1,0,4380_7778208_4710501,4380_1541 -4380_78104,294,4380_93446,Bundoran,112693-00018-1,0,4380_7778208_4710501,4380_1541 -4380_78104,294,4380_93447,Derry,114519-00018-1,0,4380_7778208_4910601,4380_1546 -4380_78104,293,4380_93448,Bundoran,112695-00017-1,0,4380_7778208_4710501,4380_1541 -4380_78104,293,4380_93449,Derry,114523-00017-1,0,4380_7778208_4910601,4380_1546 -4380_78147,295,4380_9345,Cavan,55409-00019-1,0,4380_7778208_1090903,4380_164 -4380_78104,296,4380_93450,Bundoran,114065-00021-1,0,4380_7778208_4800501,4380_1548 -4380_78104,296,4380_93451,Derry,114525-00021-1,0,4380_7778208_4910601,4380_1552 -4380_78104,295,4380_93452,Bundoran,112699-00019-1,0,4380_7778208_4710501,4380_1541 -4380_78104,295,4380_93453,Derry,114517-00019-1,0,4380_7778208_4910601,4380_1546 -4380_78104,285,4380_93459,Donegal,114158-00009-1,0,4380_7778208_4800601,4380_1545 -4380_78147,296,4380_9346,Cavan,55411-00021-1,0,4380_7778208_1090903,4380_168 -4380_78104,288,4380_93461,Donegal,114160-00011-1,0,4380_7778208_4800601,4380_1545 -4380_78104,286,4380_93462,Donegal,114156-00010-1,0,4380_7778208_4800601,4380_1545 -4380_78104,291,4380_93463,Donegal,114152-00013-1,0,4380_7778208_4800601,4380_1551 -4380_78104,289,4380_93464,Donegal,114154-00014-1,0,4380_7778208_4800601,4380_1545 -4380_78104,287,4380_93465,Donegal,114162-00012-1,0,4380_7778208_4800601,4380_1545 -4380_78104,290,4380_93466,Donegal,114159-00015-1,0,4380_7778208_4800601,4380_1545 -4380_78104,292,4380_93467,Donegal,114157-00016-1,0,4380_7778208_4800601,4380_1545 -4380_78104,294,4380_93468,Donegal,114163-00018-1,0,4380_7778208_4800601,4380_1545 -4380_78104,293,4380_93469,Donegal,114161-00017-1,0,4380_7778208_4800601,4380_1545 -4380_78147,285,4380_9347,Cavan,5999-00009-1,0,4380_7778208_1090114,4380_159 -4380_78104,296,4380_93470,Donegal,114153-00021-1,0,4380_7778208_4800601,4380_1551 -4380_78104,295,4380_93471,Donegal,114155-00019-1,0,4380_7778208_4800601,4380_1545 -4380_78104,285,4380_93477,Ballyshannon,112710-00009-1,0,4380_7778208_4710501,4380_1540 -4380_78104,288,4380_93479,Ballyshannon,112712-00011-1,0,4380_7778208_4710501,4380_1540 -4380_78147,286,4380_9348,Cavan,6002-00010-1,0,4380_7778208_1090114,4380_159 -4380_78104,286,4380_93480,Ballyshannon,112716-00010-1,0,4380_7778208_4710501,4380_1540 -4380_78104,291,4380_93481,Ballyshannon,114068-00013-1,0,4380_7778208_4800501,4380_1542 -4380_78104,289,4380_93482,Ballyshannon,112714-00014-1,0,4380_7778208_4710501,4380_1540 -4380_78104,287,4380_93483,Ballyshannon,112718-00012-1,0,4380_7778208_4710501,4380_1540 -4380_78104,292,4380_93484,Ballyshannon,112717-00016-1,0,4380_7778208_4710501,4380_1540 -4380_78104,290,4380_93485,Ballyshannon,112711-00015-1,0,4380_7778208_4710501,4380_1540 -4380_78104,294,4380_93486,Ballyshannon,112719-00018-1,0,4380_7778208_4710501,4380_1540 -4380_78104,293,4380_93487,Ballyshannon,112713-00017-1,0,4380_7778208_4710501,4380_1540 -4380_78104,296,4380_93488,Ballyshannon,114069-00021-1,0,4380_7778208_4800501,4380_1542 -4380_78104,295,4380_93489,Ballyshannon,112715-00019-1,0,4380_7778208_4710501,4380_1540 -4380_78147,288,4380_9349,Cavan,6005-00011-1,0,4380_7778208_1090114,4380_159 -4380_78104,285,4380_93495,Sligo,114092-00009-1,1,4380_7778208_4800601,4380_1556 -4380_78104,288,4380_93497,Sligo,114096-00011-1,1,4380_7778208_4800601,4380_1556 -4380_78104,286,4380_93498,Sligo,114094-00010-1,1,4380_7778208_4800601,4380_1556 -4380_78104,291,4380_93499,Sligo,114102-00013-1,1,4380_7778208_4800601,4380_1564 -4380_78113,296,4380_935,Dublin via Airport,50132-00021-1,1,4380_7778208_1000908,4380_18 -4380_78147,287,4380_9350,Cavan,6008-00012-1,0,4380_7778208_1090114,4380_159 -4380_78104,289,4380_93500,Sligo,114098-00014-1,1,4380_7778208_4800601,4380_1556 -4380_78104,287,4380_93501,Sligo,114100-00012-1,1,4380_7778208_4800601,4380_1556 -4380_78104,290,4380_93502,Sligo,114093-00015-1,1,4380_7778208_4800601,4380_1556 -4380_78104,292,4380_93503,Sligo,114095-00016-1,1,4380_7778208_4800601,4380_1556 -4380_78104,294,4380_93504,Sligo,114101-00018-1,1,4380_7778208_4800601,4380_1556 -4380_78104,293,4380_93505,Sligo,114097-00017-1,1,4380_7778208_4800601,4380_1556 -4380_78104,296,4380_93506,Sligo,114103-00021-1,1,4380_7778208_4800601,4380_1564 -4380_78104,295,4380_93507,Sligo,114099-00019-1,1,4380_7778208_4800601,4380_1556 -4380_78147,289,4380_9351,Cavan,5996-00014-1,0,4380_7778208_1090114,4380_159 -4380_78104,285,4380_93513,Ballybofey,114178-00009-1,1,4380_7778208_4800602,4380_1559 -4380_78104,288,4380_93515,Ballybofey,114184-00011-1,1,4380_7778208_4800602,4380_1559 -4380_78104,286,4380_93516,Ballybofey,114180-00010-1,1,4380_7778208_4800602,4380_1559 -4380_78104,291,4380_93517,Ballybofey,114176-00013-1,1,4380_7778208_4800602,4380_1567 -4380_78104,289,4380_93518,Ballybofey,114182-00014-1,1,4380_7778208_4800602,4380_1559 -4380_78104,287,4380_93519,Ballybofey,114186-00012-1,1,4380_7778208_4800602,4380_1559 -4380_78147,290,4380_9352,Cavan,55228-00015-1,0,4380_7778208_1090114,4380_159 -4380_78104,290,4380_93520,Ballybofey,114179-00015-1,1,4380_7778208_4800602,4380_1559 -4380_78104,292,4380_93521,Ballybofey,114181-00016-1,1,4380_7778208_4800602,4380_1559 -4380_78104,294,4380_93522,Ballybofey,114187-00018-1,1,4380_7778208_4800602,4380_1559 -4380_78104,293,4380_93523,Ballybofey,114185-00017-1,1,4380_7778208_4800602,4380_1559 -4380_78104,296,4380_93524,Ballybofey,114177-00021-1,1,4380_7778208_4800602,4380_1567 -4380_78104,295,4380_93525,Ballybofey,114183-00019-1,1,4380_7778208_4800602,4380_1559 -4380_78147,292,4380_9353,Cavan,55227-00016-1,0,4380_7778208_1090114,4380_159 -4380_78104,285,4380_93531,Donegal,114200-00009-1,1,4380_7778208_4800602,4380_1560 -4380_78104,288,4380_93533,Donegal,114206-00011-1,1,4380_7778208_4800602,4380_1560 -4380_78104,286,4380_93534,Donegal,114204-00010-1,1,4380_7778208_4800602,4380_1560 -4380_78104,291,4380_93535,Donegal,114208-00013-1,1,4380_7778208_4800602,4380_1568 -4380_78104,289,4380_93536,Donegal,114210-00014-1,1,4380_7778208_4800602,4380_1560 -4380_78104,287,4380_93537,Donegal,114202-00012-1,1,4380_7778208_4800602,4380_1560 -4380_78104,290,4380_93538,Donegal,114201-00015-1,1,4380_7778208_4800602,4380_1560 -4380_78104,292,4380_93539,Donegal,114205-00016-1,1,4380_7778208_4800602,4380_1560 -4380_78147,293,4380_9354,Cavan,55226-00017-1,0,4380_7778208_1090114,4380_159 -4380_78104,294,4380_93540,Donegal,114203-00018-1,1,4380_7778208_4800602,4380_1560 -4380_78104,293,4380_93541,Donegal,114207-00017-1,1,4380_7778208_4800602,4380_1560 -4380_78104,296,4380_93542,Donegal,114209-00021-1,1,4380_7778208_4800602,4380_1568 -4380_78104,295,4380_93543,Donegal,114211-00019-1,1,4380_7778208_4800602,4380_1560 -4380_78104,285,4380_93549,Letterkenny,114118-00009-1,1,4380_7778208_4800601,4380_1557 -4380_78147,294,4380_9355,Cavan,55230-00018-1,0,4380_7778208_1090114,4380_159 -4380_78104,288,4380_93551,Letterkenny,114116-00011-1,1,4380_7778208_4800601,4380_1557 -4380_78104,286,4380_93552,Letterkenny,114122-00010-1,1,4380_7778208_4800601,4380_1557 -4380_78104,291,4380_93553,Letterkenny,114124-00013-1,1,4380_7778208_4800601,4380_1565 -4380_78104,289,4380_93554,Letterkenny,114126-00014-1,1,4380_7778208_4800601,4380_1557 -4380_78104,287,4380_93555,Letterkenny,114120-00012-1,1,4380_7778208_4800601,4380_1557 -4380_78104,290,4380_93556,Letterkenny,114119-00015-1,1,4380_7778208_4800601,4380_1557 -4380_78104,292,4380_93557,Letterkenny,114123-00016-1,1,4380_7778208_4800601,4380_1557 -4380_78104,294,4380_93558,Letterkenny,114121-00018-1,1,4380_7778208_4800601,4380_1557 -4380_78104,293,4380_93559,Letterkenny,114117-00017-1,1,4380_7778208_4800601,4380_1557 -4380_78147,295,4380_9356,Cavan,55229-00019-1,0,4380_7778208_1090114,4380_159 -4380_78104,296,4380_93560,Letterkenny,114125-00021-1,1,4380_7778208_4800601,4380_1565 -4380_78104,295,4380_93561,Letterkenny,114127-00019-1,1,4380_7778208_4800601,4380_1557 -4380_78104,285,4380_93567,Donegal,114150-00009-1,1,4380_7778208_4800601,4380_1558 -4380_78104,288,4380_93569,Donegal,114142-00011-1,1,4380_7778208_4800601,4380_1558 -4380_78104,286,4380_93570,Donegal,114146-00010-1,1,4380_7778208_4800601,4380_1558 -4380_78104,291,4380_93571,Donegal,114140-00013-1,1,4380_7778208_4800601,4380_1566 -4380_78104,289,4380_93572,Donegal,114148-00014-1,1,4380_7778208_4800601,4380_1558 -4380_78104,287,4380_93573,Donegal,114144-00012-1,1,4380_7778208_4800601,4380_1558 -4380_78104,290,4380_93574,Donegal,114151-00015-1,1,4380_7778208_4800601,4380_1558 -4380_78104,292,4380_93575,Donegal,114147-00016-1,1,4380_7778208_4800601,4380_1558 -4380_78104,294,4380_93576,Donegal,114145-00018-1,1,4380_7778208_4800601,4380_1558 -4380_78104,293,4380_93577,Donegal,114143-00017-1,1,4380_7778208_4800601,4380_1558 -4380_78104,296,4380_93578,Donegal,114141-00021-1,1,4380_7778208_4800601,4380_1566 -4380_78104,295,4380_93579,Donegal,114149-00019-1,1,4380_7778208_4800601,4380_1558 -4380_78104,297,4380_93586,Sligo,114063-00008-1,1,4380_7778208_4800501,4380_1553 -4380_78104,285,4380_93587,Sligo,114084-00009-1,1,4380_7778208_4800502,4380_1555 -4380_78104,288,4380_93589,Sligo,114082-00011-1,1,4380_7778208_4800502,4380_1555 -4380_78104,286,4380_93590,Sligo,114090-00010-1,1,4380_7778208_4800502,4380_1555 -4380_78104,291,4380_93591,Sligo,113520-00013-1,1,4380_7778208_4740501,4380_1562 -4380_78104,289,4380_93592,Sligo,114086-00014-1,1,4380_7778208_4800502,4380_1555 -4380_78104,287,4380_93593,Sligo,114088-00012-1,1,4380_7778208_4800502,4380_1555 -4380_78104,290,4380_93594,Sligo,114085-00015-1,1,4380_7778208_4800502,4380_1555 -4380_78104,292,4380_93595,Sligo,114091-00016-1,1,4380_7778208_4800502,4380_1555 -4380_78104,294,4380_93596,Sligo,114089-00018-1,1,4380_7778208_4800502,4380_1555 -4380_78104,293,4380_93597,Sligo,114083-00017-1,1,4380_7778208_4800502,4380_1555 -4380_78104,296,4380_93598,Sligo,113521-00021-1,1,4380_7778208_4740501,4380_1562 -4380_78104,295,4380_93599,Sligo,114087-00019-1,1,4380_7778208_4800502,4380_1555 -4380_78104,285,4380_93605,Sligo,112702-00009-1,1,4380_7778208_4710501,4380_1554 -4380_78104,288,4380_93607,Sligo,112708-00011-1,1,4380_7778208_4710501,4380_1554 -4380_78104,286,4380_93608,Sligo,112700-00010-1,1,4380_7778208_4710501,4380_1554 -4380_78104,291,4380_93609,Sligo,114066-00013-1,1,4380_7778208_4800501,4380_1563 -4380_78104,289,4380_93610,Sligo,112704-00014-1,1,4380_7778208_4710501,4380_1554 -4380_78104,287,4380_93611,Sligo,112706-00012-1,1,4380_7778208_4710501,4380_1554 -4380_78104,292,4380_93612,Sligo,112701-00016-1,1,4380_7778208_4710501,4380_1554 -4380_78104,290,4380_93613,Sligo,112703-00015-1,1,4380_7778208_4710501,4380_1554 -4380_78104,294,4380_93614,Sligo,112707-00018-1,1,4380_7778208_4710501,4380_1554 -4380_78104,293,4380_93615,Sligo,112709-00017-1,1,4380_7778208_4710501,4380_1554 -4380_78104,296,4380_93616,Sligo,114067-00021-1,1,4380_7778208_4800501,4380_1563 -4380_78104,295,4380_93617,Sligo,112705-00019-1,1,4380_7778208_4710501,4380_1554 -4380_78104,285,4380_93623,Ballybofey,114534-00009-1,1,4380_7778208_4910601,4380_1561 -4380_78104,288,4380_93625,Ballybofey,114528-00011-1,1,4380_7778208_4910601,4380_1561 -4380_78104,286,4380_93626,Ballybofey,114532-00010-1,1,4380_7778208_4910601,4380_1561 -4380_78104,291,4380_93627,Ballybofey,114536-00013-1,1,4380_7778208_4910601,4380_1569 -4380_78104,289,4380_93628,Ballybofey,114530-00014-1,1,4380_7778208_4910601,4380_1561 -4380_78104,287,4380_93629,Ballybofey,114538-00012-1,1,4380_7778208_4910601,4380_1561 -4380_78104,290,4380_93630,Ballybofey,114535-00015-1,1,4380_7778208_4910601,4380_1561 -4380_78104,292,4380_93631,Ballybofey,114533-00016-1,1,4380_7778208_4910601,4380_1561 -4380_78104,294,4380_93632,Ballybofey,114539-00018-1,1,4380_7778208_4910601,4380_1561 -4380_78104,293,4380_93633,Ballybofey,114529-00017-1,1,4380_7778208_4910601,4380_1561 -4380_78104,296,4380_93634,Ballybofey,114537-00021-1,1,4380_7778208_4910601,4380_1569 -4380_78104,295,4380_93635,Ballybofey,114531-00019-1,1,4380_7778208_4910601,4380_1561 -4380_78104,285,4380_93641,Sligo,112728-00009-1,1,4380_7778208_4710501,4380_1553 -4380_78104,288,4380_93643,Sligo,112722-00011-1,1,4380_7778208_4710501,4380_1553 -4380_78104,286,4380_93644,Sligo,112726-00010-1,1,4380_7778208_4710501,4380_1553 -4380_78104,291,4380_93645,Sligo,114070-00013-1,1,4380_7778208_4800501,4380_1555 -4380_78104,289,4380_93646,Sligo,112720-00014-1,1,4380_7778208_4710501,4380_1553 -4380_78104,287,4380_93647,Sligo,112724-00012-1,1,4380_7778208_4710501,4380_1553 -4380_78104,292,4380_93648,Sligo,112727-00016-1,1,4380_7778208_4710501,4380_1553 -4380_78104,290,4380_93649,Sligo,112729-00015-1,1,4380_7778208_4710501,4380_1553 -4380_78104,294,4380_93650,Sligo,112725-00018-1,1,4380_7778208_4710501,4380_1553 -4380_78104,293,4380_93651,Sligo,112723-00017-1,1,4380_7778208_4710501,4380_1553 -4380_78104,296,4380_93652,Sligo,114071-00021-1,1,4380_7778208_4800501,4380_1555 -4380_78104,295,4380_93653,Sligo,112721-00019-1,1,4380_7778208_4710501,4380_1553 -4380_78105,287,4380_93655,Ballyshannon,114264-00012-1,0,4380_7778208_4830601,4380_1570 -4380_78105,294,4380_93656,Ballyshannon,114265-00018-1,0,4380_7778208_4830601,4380_1570 -4380_78105,287,4380_93658,Sligo,114262-00012-1,1,4380_7778208_4830601,4380_1571 -4380_78105,294,4380_93659,Sligo,114263-00018-1,1,4380_7778208_4830601,4380_1571 -4380_78106,285,4380_93665,Letterkenny,114615-00009-1,0,4380_7778208_4940601,4380_1573 -4380_78106,288,4380_93667,Letterkenny,114619-00011-1,0,4380_7778208_4940601,4380_1573 -4380_78106,286,4380_93668,Letterkenny,114621-00010-1,0,4380_7778208_4940601,4380_1573 -4380_78106,291,4380_93669,Letterkenny,114617-00013-1,0,4380_7778208_4940601,4380_1573 -4380_78106,289,4380_93670,Letterkenny,114623-00014-1,0,4380_7778208_4940601,4380_1573 -4380_78106,287,4380_93671,Letterkenny,114625-00012-1,0,4380_7778208_4940601,4380_1573 -4380_78106,290,4380_93672,Letterkenny,114616-00015-1,0,4380_7778208_4940601,4380_1573 -4380_78106,292,4380_93673,Letterkenny,114622-00016-1,0,4380_7778208_4940601,4380_1573 -4380_78106,294,4380_93674,Letterkenny,114626-00018-1,0,4380_7778208_4940601,4380_1573 -4380_78106,293,4380_93675,Letterkenny,114620-00017-1,0,4380_7778208_4940601,4380_1573 -4380_78106,296,4380_93676,Letterkenny,114618-00021-1,0,4380_7778208_4940601,4380_1573 -4380_78106,295,4380_93677,Letterkenny,114624-00019-1,0,4380_7778208_4940601,4380_1573 -4380_78106,285,4380_93683,Letterkenny,114464-00009-1,0,4380_7778208_4910601,4380_1573 -4380_78106,288,4380_93685,Letterkenny,114456-00011-1,0,4380_7778208_4910601,4380_1573 -4380_78106,286,4380_93686,Letterkenny,114462-00010-1,0,4380_7778208_4910601,4380_1573 -4380_78106,291,4380_93687,Letterkenny,114458-00013-1,0,4380_7778208_4910601,4380_1573 -4380_78106,289,4380_93688,Letterkenny,114466-00014-1,0,4380_7778208_4910601,4380_1573 -4380_78106,287,4380_93689,Letterkenny,114460-00012-1,0,4380_7778208_4910601,4380_1573 -4380_78147,285,4380_9369,Cavan,6930-00009-1,0,4380_7778208_1090904,4380_164 -4380_78106,290,4380_93690,Letterkenny,114465-00015-1,0,4380_7778208_4910601,4380_1573 -4380_78106,292,4380_93691,Letterkenny,114463-00016-1,0,4380_7778208_4910601,4380_1573 -4380_78106,294,4380_93692,Letterkenny,114461-00018-1,0,4380_7778208_4910601,4380_1573 -4380_78106,293,4380_93693,Letterkenny,114457-00017-1,0,4380_7778208_4910601,4380_1573 -4380_78106,296,4380_93694,Letterkenny,114459-00021-1,0,4380_7778208_4910601,4380_1573 -4380_78106,295,4380_93695,Letterkenny,114467-00019-1,0,4380_7778208_4910601,4380_1573 -4380_78147,286,4380_9370,Cavan,6935-00010-1,0,4380_7778208_1090904,4380_164 -4380_78106,285,4380_93701,Letterkenny,114679-00009-1,0,4380_7778208_4940601,4380_1573 -4380_78106,288,4380_93703,Letterkenny,114681-00011-1,0,4380_7778208_4940601,4380_1573 -4380_78106,286,4380_93704,Letterkenny,114683-00010-1,0,4380_7778208_4940601,4380_1573 -4380_78106,291,4380_93705,Letterkenny,114675-00013-1,0,4380_7778208_4940601,4380_1573 -4380_78106,289,4380_93706,Letterkenny,114677-00014-1,0,4380_7778208_4940601,4380_1573 -4380_78106,287,4380_93707,Letterkenny,114685-00012-1,0,4380_7778208_4940601,4380_1573 -4380_78106,290,4380_93708,Letterkenny,114680-00015-1,0,4380_7778208_4940601,4380_1573 -4380_78106,292,4380_93709,Letterkenny,114684-00016-1,0,4380_7778208_4940601,4380_1573 -4380_78147,297,4380_9371,Cavan,5297-00008-1,0,4380_7778208_1090101,4380_166 -4380_78106,294,4380_93710,Letterkenny,114686-00018-1,0,4380_7778208_4940601,4380_1573 -4380_78106,293,4380_93711,Letterkenny,114682-00017-1,0,4380_7778208_4940601,4380_1573 -4380_78106,296,4380_93712,Letterkenny,114676-00021-1,0,4380_7778208_4940601,4380_1573 -4380_78106,295,4380_93713,Letterkenny,114678-00019-1,0,4380_7778208_4940601,4380_1573 -4380_78106,285,4380_93719,Letterkenny,114510-00009-1,0,4380_7778208_4910601,4380_1573 -4380_78147,288,4380_9372,Cavan,6940-00011-1,0,4380_7778208_1090904,4380_164 -4380_78106,288,4380_93721,Letterkenny,114508-00011-1,0,4380_7778208_4910601,4380_1573 -4380_78106,286,4380_93722,Letterkenny,114504-00010-1,0,4380_7778208_4910601,4380_1573 -4380_78106,291,4380_93723,Letterkenny,114506-00013-1,0,4380_7778208_4910601,4380_1573 -4380_78106,289,4380_93724,Letterkenny,114512-00014-1,0,4380_7778208_4910601,4380_1573 -4380_78106,287,4380_93725,Letterkenny,114514-00012-1,0,4380_7778208_4910601,4380_1573 -4380_78106,290,4380_93726,Letterkenny,114511-00015-1,0,4380_7778208_4910601,4380_1573 -4380_78106,292,4380_93727,Letterkenny,114505-00016-1,0,4380_7778208_4910601,4380_1573 -4380_78106,294,4380_93728,Letterkenny,114515-00018-1,0,4380_7778208_4910601,4380_1573 -4380_78106,293,4380_93729,Letterkenny,114509-00017-1,0,4380_7778208_4910601,4380_1573 -4380_78147,287,4380_9373,Cavan,6945-00012-1,0,4380_7778208_1090904,4380_164 -4380_78106,296,4380_93730,Letterkenny,114507-00021-1,0,4380_7778208_4910601,4380_1573 -4380_78106,295,4380_93731,Letterkenny,114513-00019-1,0,4380_7778208_4910601,4380_1573 -4380_78106,285,4380_93737,Letterkenny,114234-00009-1,0,4380_7778208_4800602,4380_1572 -4380_78106,288,4380_93739,Letterkenny,114226-00011-1,0,4380_7778208_4800602,4380_1572 -4380_78147,289,4380_9374,Cavan,6925-00014-1,0,4380_7778208_1090904,4380_164 -4380_78106,286,4380_93740,Letterkenny,114230-00010-1,0,4380_7778208_4800602,4380_1572 -4380_78106,291,4380_93741,Letterkenny,114232-00013-1,0,4380_7778208_4800602,4380_1572 -4380_78106,289,4380_93742,Letterkenny,114224-00014-1,0,4380_7778208_4800602,4380_1572 -4380_78106,287,4380_93743,Letterkenny,114228-00012-1,0,4380_7778208_4800602,4380_1572 -4380_78106,290,4380_93744,Letterkenny,114235-00015-1,0,4380_7778208_4800602,4380_1572 -4380_78106,292,4380_93745,Letterkenny,114231-00016-1,0,4380_7778208_4800602,4380_1572 -4380_78106,294,4380_93746,Letterkenny,114229-00018-1,0,4380_7778208_4800602,4380_1572 -4380_78106,293,4380_93747,Letterkenny,114227-00017-1,0,4380_7778208_4800602,4380_1572 -4380_78106,296,4380_93748,Letterkenny,114233-00021-1,0,4380_7778208_4800602,4380_1572 -4380_78106,295,4380_93749,Letterkenny,114225-00019-1,0,4380_7778208_4800602,4380_1572 -4380_78147,290,4380_9375,Cavan,55441-00015-1,0,4380_7778208_1090904,4380_164 -4380_78106,285,4380_93755,Letterkenny,114711-00009-1,0,4380_7778208_4940601,4380_1574 -4380_78106,288,4380_93757,Letterkenny,114719-00011-1,0,4380_7778208_4940601,4380_1574 -4380_78106,286,4380_93758,Letterkenny,114717-00010-1,0,4380_7778208_4940601,4380_1574 -4380_78106,291,4380_93759,Letterkenny,114713-00013-1,0,4380_7778208_4940601,4380_1574 -4380_78147,291,4380_9376,Cavan,6956-00013-1,0,4380_7778208_1090904,4380_168 -4380_78106,289,4380_93760,Letterkenny,114715-00014-1,0,4380_7778208_4940601,4380_1574 -4380_78106,287,4380_93761,Letterkenny,114721-00012-1,0,4380_7778208_4940601,4380_1574 -4380_78106,290,4380_93762,Letterkenny,114712-00015-1,0,4380_7778208_4940601,4380_1574 -4380_78106,292,4380_93763,Letterkenny,114718-00016-1,0,4380_7778208_4940601,4380_1574 -4380_78106,294,4380_93764,Letterkenny,114722-00018-1,0,4380_7778208_4940601,4380_1574 -4380_78106,293,4380_93765,Letterkenny,114720-00017-1,0,4380_7778208_4940601,4380_1574 -4380_78106,296,4380_93766,Letterkenny,114714-00021-1,0,4380_7778208_4940601,4380_1574 -4380_78106,295,4380_93767,Letterkenny,114716-00019-1,0,4380_7778208_4940601,4380_1574 -4380_78147,292,4380_9377,Cavan,55439-00016-1,0,4380_7778208_1090904,4380_164 -4380_78106,285,4380_93773,Strabane,114450-00009-1,1,4380_7778208_4910601,4380_1579 -4380_78106,288,4380_93775,Strabane,114448-00011-1,1,4380_7778208_4910601,4380_1579 -4380_78106,286,4380_93776,Strabane,114444-00010-1,1,4380_7778208_4910601,4380_1579 -4380_78106,291,4380_93777,Strabane,114452-00013-1,1,4380_7778208_4910601,4380_1579 -4380_78106,289,4380_93778,Strabane,114454-00014-1,1,4380_7778208_4910601,4380_1579 -4380_78106,287,4380_93779,Strabane,114446-00012-1,1,4380_7778208_4910601,4380_1579 -4380_78147,293,4380_9378,Cavan,55438-00017-1,0,4380_7778208_1090904,4380_164 -4380_78106,290,4380_93780,Strabane,114451-00015-1,1,4380_7778208_4910601,4380_1579 -4380_78106,292,4380_93781,Strabane,114445-00016-1,1,4380_7778208_4910601,4380_1579 -4380_78106,294,4380_93782,Strabane,114447-00018-1,1,4380_7778208_4910601,4380_1579 -4380_78106,293,4380_93783,Strabane,114449-00017-1,1,4380_7778208_4910601,4380_1579 -4380_78106,296,4380_93784,Strabane,114453-00021-1,1,4380_7778208_4910601,4380_1579 -4380_78106,295,4380_93785,Strabane,114455-00019-1,1,4380_7778208_4910601,4380_1579 -4380_78147,294,4380_9379,Cavan,55440-00018-1,0,4380_7778208_1090904,4380_164 -4380_78106,285,4380_93791,Strabane,114472-00009-1,1,4380_7778208_4910601,4380_1576 -4380_78106,288,4380_93793,Strabane,114468-00011-1,1,4380_7778208_4910601,4380_1576 -4380_78106,286,4380_93794,Strabane,114478-00010-1,1,4380_7778208_4910601,4380_1576 -4380_78106,291,4380_93795,Strabane,114474-00013-1,1,4380_7778208_4910601,4380_1576 -4380_78106,289,4380_93796,Strabane,114470-00014-1,1,4380_7778208_4910601,4380_1576 -4380_78106,287,4380_93797,Strabane,114476-00012-1,1,4380_7778208_4910601,4380_1576 -4380_78106,290,4380_93798,Strabane,114473-00015-1,1,4380_7778208_4910601,4380_1576 -4380_78106,292,4380_93799,Strabane,114479-00016-1,1,4380_7778208_4910601,4380_1576 -4380_78147,295,4380_9380,Cavan,55436-00019-1,0,4380_7778208_1090904,4380_164 -4380_78106,294,4380_93800,Strabane,114477-00018-1,1,4380_7778208_4910601,4380_1576 -4380_78106,293,4380_93801,Strabane,114469-00017-1,1,4380_7778208_4910601,4380_1576 -4380_78106,296,4380_93802,Strabane,114475-00021-1,1,4380_7778208_4910601,4380_1576 -4380_78106,295,4380_93803,Strabane,114471-00019-1,1,4380_7778208_4910601,4380_1576 -4380_78106,285,4380_93809,Strabane,114280-00009-1,1,4380_7778208_4870601,4380_1577 -4380_78147,296,4380_9381,Cavan,55437-00021-1,0,4380_7778208_1090904,4380_168 -4380_78106,288,4380_93811,Strabane,114276-00011-1,1,4380_7778208_4870601,4380_1577 -4380_78106,286,4380_93812,Strabane,114278-00010-1,1,4380_7778208_4870601,4380_1577 -4380_78106,291,4380_93813,Strabane,114272-00013-1,1,4380_7778208_4870601,4380_1577 -4380_78106,289,4380_93814,Strabane,114274-00014-1,1,4380_7778208_4870601,4380_1577 -4380_78106,287,4380_93815,Strabane,114270-00012-1,1,4380_7778208_4870601,4380_1577 -4380_78106,290,4380_93816,Strabane,114281-00015-1,1,4380_7778208_4870601,4380_1577 -4380_78106,292,4380_93817,Strabane,114279-00016-1,1,4380_7778208_4870601,4380_1577 -4380_78106,294,4380_93818,Strabane,114271-00018-1,1,4380_7778208_4870601,4380_1577 -4380_78106,293,4380_93819,Strabane,114277-00017-1,1,4380_7778208_4870601,4380_1577 -4380_78106,296,4380_93820,Strabane,114273-00021-1,1,4380_7778208_4870601,4380_1577 -4380_78106,295,4380_93821,Strabane,114275-00019-1,1,4380_7778208_4870601,4380_1577 -4380_78106,285,4380_93827,Strabane,114214-00009-1,1,4380_7778208_4800602,4380_1575 -4380_78106,288,4380_93829,Strabane,114212-00011-1,1,4380_7778208_4800602,4380_1575 -4380_78106,286,4380_93830,Strabane,114220-00010-1,1,4380_7778208_4800602,4380_1575 -4380_78106,291,4380_93831,Strabane,114218-00013-1,1,4380_7778208_4800602,4380_1575 -4380_78106,289,4380_93832,Strabane,114222-00014-1,1,4380_7778208_4800602,4380_1575 -4380_78106,287,4380_93833,Strabane,114216-00012-1,1,4380_7778208_4800602,4380_1575 -4380_78106,290,4380_93834,Strabane,114215-00015-1,1,4380_7778208_4800602,4380_1575 -4380_78106,292,4380_93835,Strabane,114221-00016-1,1,4380_7778208_4800602,4380_1575 -4380_78106,294,4380_93836,Strabane,114217-00018-1,1,4380_7778208_4800602,4380_1575 -4380_78106,293,4380_93837,Strabane,114213-00017-1,1,4380_7778208_4800602,4380_1575 -4380_78106,296,4380_93838,Strabane,114219-00021-1,1,4380_7778208_4800602,4380_1575 -4380_78106,295,4380_93839,Strabane,114223-00019-1,1,4380_7778208_4800602,4380_1575 -4380_78106,285,4380_93845,Strabane,114236-00009-1,1,4380_7778208_4800602,4380_1576 -4380_78106,288,4380_93847,Strabane,114238-00011-1,1,4380_7778208_4800602,4380_1576 -4380_78106,286,4380_93848,Strabane,114246-00010-1,1,4380_7778208_4800602,4380_1576 -4380_78106,291,4380_93849,Strabane,114240-00013-1,1,4380_7778208_4800602,4380_1576 -4380_78106,289,4380_93850,Strabane,114242-00014-1,1,4380_7778208_4800602,4380_1576 -4380_78106,287,4380_93851,Strabane,114244-00012-1,1,4380_7778208_4800602,4380_1576 -4380_78106,290,4380_93852,Strabane,114237-00015-1,1,4380_7778208_4800602,4380_1576 -4380_78106,292,4380_93853,Strabane,114247-00016-1,1,4380_7778208_4800602,4380_1576 -4380_78106,294,4380_93854,Strabane,114245-00018-1,1,4380_7778208_4800602,4380_1576 -4380_78106,293,4380_93855,Strabane,114239-00017-1,1,4380_7778208_4800602,4380_1576 -4380_78106,296,4380_93856,Strabane,114241-00021-1,1,4380_7778208_4800602,4380_1576 -4380_78106,295,4380_93857,Strabane,114243-00019-1,1,4380_7778208_4800602,4380_1576 -4380_78106,285,4380_93863,Strabane,114296-00009-1,1,4380_7778208_4870601,4380_1578 -4380_78106,288,4380_93865,Strabane,114304-00011-1,1,4380_7778208_4870601,4380_1578 -4380_78106,286,4380_93866,Strabane,114298-00010-1,1,4380_7778208_4870601,4380_1578 -4380_78106,291,4380_93867,Strabane,114294-00013-1,1,4380_7778208_4870601,4380_1578 -4380_78106,289,4380_93868,Strabane,114300-00014-1,1,4380_7778208_4870601,4380_1578 -4380_78106,287,4380_93869,Strabane,114302-00012-1,1,4380_7778208_4870601,4380_1578 -4380_78106,290,4380_93870,Strabane,114297-00015-1,1,4380_7778208_4870601,4380_1578 -4380_78106,292,4380_93871,Strabane,114299-00016-1,1,4380_7778208_4870601,4380_1578 -4380_78106,294,4380_93872,Strabane,114303-00018-1,1,4380_7778208_4870601,4380_1578 -4380_78106,293,4380_93873,Strabane,114305-00017-1,1,4380_7778208_4870601,4380_1578 -4380_78106,296,4380_93874,Strabane,114295-00021-1,1,4380_7778208_4870601,4380_1578 -4380_78106,295,4380_93875,Strabane,114301-00019-1,1,4380_7778208_4870601,4380_1578 -4380_78107,288,4380_93877,Strabane,114306-00011-1,0,4380_7778208_4890601,4380_1580 -4380_78107,293,4380_93878,Strabane,114307-00017-1,0,4380_7778208_4890601,4380_1580 -4380_78107,288,4380_93880,Strabane,114310-00011-1,0,4380_7778208_4890601,4380_1580 -4380_78107,293,4380_93881,Strabane,114311-00017-1,0,4380_7778208_4890601,4380_1580 -4380_78107,288,4380_93883,Letterkenny,114308-00011-1,1,4380_7778208_4890601,4380_1581 -4380_78107,293,4380_93884,Letterkenny,114309-00017-1,1,4380_7778208_4890601,4380_1581 -4380_78107,288,4380_93886,Letterkenny,114312-00011-1,1,4380_7778208_4890601,4380_1581 -4380_78107,293,4380_93887,Letterkenny,114313-00017-1,1,4380_7778208_4890601,4380_1581 -4380_78147,285,4380_9389,Cavan,6974-00009-1,0,4380_7778208_1090905,4380_165 -4380_78108,285,4380_93893,Killybegs,114342-00009-1,0,4380_7778208_4900602,4380_1583 -4380_78108,288,4380_93895,Killybegs,114340-00011-1,0,4380_7778208_4900602,4380_1583 -4380_78108,286,4380_93896,Killybegs,114344-00010-1,0,4380_7778208_4900602,4380_1583 -4380_78108,291,4380_93897,Killybegs,114346-00013-1,0,4380_7778208_4900602,4380_1586 -4380_78108,289,4380_93898,Killybegs,114338-00014-1,0,4380_7778208_4900602,4380_1583 -4380_78108,287,4380_93899,Killybegs,114336-00012-1,0,4380_7778208_4900602,4380_1583 -4380_78147,286,4380_9390,Cavan,6978-00010-1,0,4380_7778208_1090905,4380_165 -4380_78108,290,4380_93900,Killybegs,114343-00015-1,0,4380_7778208_4900602,4380_1583 -4380_78108,292,4380_93901,Killybegs,114345-00016-1,0,4380_7778208_4900602,4380_1583 -4380_78108,294,4380_93902,Killybegs,114337-00018-1,0,4380_7778208_4900602,4380_1583 -4380_78108,293,4380_93903,Killybegs,114341-00017-1,0,4380_7778208_4900602,4380_1583 -4380_78108,296,4380_93904,Killybegs,114347-00021-1,0,4380_7778208_4900602,4380_1586 -4380_78108,295,4380_93905,Killybegs,114339-00019-1,0,4380_7778208_4900602,4380_1583 -4380_78147,297,4380_9391,Cavan,6022-00008-1,0,4380_7778208_1090114,4380_167 -4380_78108,285,4380_93911,Glencolmkille,114366-00009-1,0,4380_7778208_4900602,4380_1584 -4380_78108,288,4380_93913,Glencolmkille,114364-00011-1,0,4380_7778208_4900602,4380_1584 -4380_78108,286,4380_93914,Glencolmkille,114360-00010-1,0,4380_7778208_4900602,4380_1584 -4380_78108,291,4380_93915,Glencolmkille,114370-00013-1,0,4380_7778208_4900602,4380_1587 -4380_78108,289,4380_93916,Glencolmkille,114368-00014-1,0,4380_7778208_4900602,4380_1584 -4380_78108,287,4380_93917,Glencolmkille,114362-00012-1,0,4380_7778208_4900602,4380_1584 -4380_78108,290,4380_93918,Glencolmkille,114367-00015-1,0,4380_7778208_4900602,4380_1584 -4380_78108,292,4380_93919,Glencolmkille,114361-00016-1,0,4380_7778208_4900602,4380_1584 -4380_78147,288,4380_9392,Cavan,6982-00011-1,0,4380_7778208_1090905,4380_165 -4380_78108,294,4380_93920,Glencolmkille,114363-00018-1,0,4380_7778208_4900602,4380_1584 -4380_78108,293,4380_93921,Glencolmkille,114365-00017-1,0,4380_7778208_4900602,4380_1584 -4380_78108,296,4380_93922,Glencolmkille,114371-00021-1,0,4380_7778208_4900602,4380_1587 -4380_78108,295,4380_93923,Glencolmkille,114369-00019-1,0,4380_7778208_4900602,4380_1584 -4380_78108,285,4380_93929,Killybegs,114386-00009-1,0,4380_7778208_4900602,4380_1585 -4380_78147,287,4380_9393,Cavan,6986-00012-1,0,4380_7778208_1090905,4380_165 -4380_78108,288,4380_93931,Killybegs,114390-00011-1,0,4380_7778208_4900602,4380_1585 -4380_78108,286,4380_93932,Killybegs,114392-00010-1,0,4380_7778208_4900602,4380_1585 -4380_78108,291,4380_93933,Killybegs,114394-00013-1,0,4380_7778208_4900602,4380_1588 -4380_78108,289,4380_93934,Killybegs,114384-00014-1,0,4380_7778208_4900602,4380_1585 -4380_78108,287,4380_93935,Killybegs,114388-00012-1,0,4380_7778208_4900602,4380_1585 -4380_78108,290,4380_93936,Killybegs,114387-00015-1,0,4380_7778208_4900602,4380_1585 -4380_78108,292,4380_93937,Killybegs,114393-00016-1,0,4380_7778208_4900602,4380_1585 -4380_78108,294,4380_93938,Killybegs,114389-00018-1,0,4380_7778208_4900602,4380_1585 -4380_78108,293,4380_93939,Killybegs,114391-00017-1,0,4380_7778208_4900602,4380_1585 -4380_78147,289,4380_9394,Cavan,6970-00014-1,0,4380_7778208_1090905,4380_165 -4380_78108,296,4380_93940,Killybegs,114395-00021-1,0,4380_7778208_4900602,4380_1588 -4380_78108,295,4380_93941,Killybegs,114385-00019-1,0,4380_7778208_4900602,4380_1585 -4380_78108,285,4380_93947,Killybegs,114414-00009-1,0,4380_7778208_4900602,4380_1585 -4380_78108,288,4380_93949,Killybegs,114410-00011-1,0,4380_7778208_4900602,4380_1585 -4380_78147,290,4380_9395,Cavan,55467-00015-1,0,4380_7778208_1090905,4380_165 -4380_78108,286,4380_93950,Killybegs,114408-00010-1,0,4380_7778208_4900602,4380_1585 -4380_78108,291,4380_93951,Killybegs,114412-00013-1,0,4380_7778208_4900602,4380_1588 -4380_78108,289,4380_93952,Killybegs,114416-00014-1,0,4380_7778208_4900602,4380_1585 -4380_78108,287,4380_93953,Killybegs,114418-00012-1,0,4380_7778208_4900602,4380_1585 -4380_78108,290,4380_93954,Killybegs,114415-00015-1,0,4380_7778208_4900602,4380_1585 -4380_78108,292,4380_93955,Killybegs,114409-00016-1,0,4380_7778208_4900602,4380_1585 -4380_78108,294,4380_93956,Killybegs,114419-00018-1,0,4380_7778208_4900602,4380_1585 -4380_78108,293,4380_93957,Killybegs,114411-00017-1,0,4380_7778208_4900602,4380_1585 -4380_78108,296,4380_93958,Killybegs,114413-00021-1,0,4380_7778208_4900602,4380_1588 -4380_78108,295,4380_93959,Killybegs,114417-00019-1,0,4380_7778208_4900602,4380_1585 -4380_78147,291,4380_9396,Cavan,5500-00013-1,0,4380_7778208_1090104,4380_169 -4380_78108,285,4380_93965,Glencolmkille,114330-00009-1,0,4380_7778208_4900601,4380_1582 -4380_78108,288,4380_93967,Glencolmkille,114326-00011-1,0,4380_7778208_4900601,4380_1582 -4380_78108,286,4380_93968,Glencolmkille,114328-00010-1,0,4380_7778208_4900601,4380_1582 -4380_78108,291,4380_93969,Glencolmkille,114332-00013-1,0,4380_7778208_4900601,4380_1582 -4380_78147,292,4380_9397,Cavan,55466-00016-1,0,4380_7778208_1090905,4380_165 -4380_78108,289,4380_93970,Glencolmkille,114324-00014-1,0,4380_7778208_4900601,4380_1582 -4380_78108,287,4380_93971,Glencolmkille,114266-00012-1,0,4380_7778208_4830601,4380_1582 -4380_78108,290,4380_93972,Glencolmkille,114331-00015-1,0,4380_7778208_4900601,4380_1582 -4380_78108,292,4380_93973,Glencolmkille,114329-00016-1,0,4380_7778208_4900601,4380_1582 -4380_78108,294,4380_93974,Glencolmkille,114267-00018-1,0,4380_7778208_4830601,4380_1582 -4380_78108,293,4380_93975,Glencolmkille,114327-00017-1,0,4380_7778208_4900601,4380_1582 -4380_78108,296,4380_93976,Glencolmkille,114333-00021-1,0,4380_7778208_4900601,4380_1582 -4380_78108,295,4380_93977,Glencolmkille,114325-00019-1,0,4380_7778208_4900601,4380_1582 -4380_78147,293,4380_9398,Cavan,55469-00017-1,0,4380_7778208_1090905,4380_165 -4380_78108,288,4380_93980,Glencolmkille,114334-00011-1,0,4380_7778208_4900601,4380_1582 -4380_78108,287,4380_93981,Glencolmkille,114268-00012-1,0,4380_7778208_4830601,4380_1582 -4380_78108,294,4380_93982,Glencolmkille,114269-00018-1,0,4380_7778208_4830601,4380_1582 -4380_78108,293,4380_93983,Glencolmkille,114335-00017-1,0,4380_7778208_4900601,4380_1582 -4380_78108,285,4380_93989,Killybegs,114318-00009-1,1,4380_7778208_4900601,4380_1590 -4380_78147,294,4380_9399,Cavan,55470-00018-1,0,4380_7778208_1090905,4380_165 -4380_78108,288,4380_93991,Killybegs,114316-00011-1,1,4380_7778208_4900601,4380_1590 -4380_78108,286,4380_93992,Killybegs,114320-00010-1,1,4380_7778208_4900601,4380_1590 -4380_78108,291,4380_93993,Killybegs,114322-00013-1,1,4380_7778208_4900601,4380_1590 -4380_78108,289,4380_93994,Killybegs,114314-00014-1,1,4380_7778208_4900601,4380_1590 -4380_78108,287,4380_93995,Killybegs,114260-00012-1,1,4380_7778208_4830601,4380_1590 -4380_78108,290,4380_93996,Killybegs,114319-00015-1,1,4380_7778208_4900601,4380_1590 -4380_78108,292,4380_93997,Killybegs,114321-00016-1,1,4380_7778208_4900601,4380_1590 -4380_78108,294,4380_93998,Killybegs,114261-00018-1,1,4380_7778208_4830601,4380_1590 -4380_78108,293,4380_93999,Killybegs,114317-00017-1,1,4380_7778208_4900601,4380_1590 -4380_77946,297,4380_94,Dundalk,50224-00008-1,0,4380_7778208_1000909,4380_2 -4380_78147,295,4380_9400,Cavan,55468-00019-1,0,4380_7778208_1090905,4380_165 -4380_78108,296,4380_94000,Killybegs,114323-00021-1,1,4380_7778208_4900601,4380_1590 -4380_78108,295,4380_94001,Killybegs,114315-00019-1,1,4380_7778208_4900601,4380_1590 -4380_78108,285,4380_94007,Donegal,114356-00009-1,1,4380_7778208_4900602,4380_1591 -4380_78108,288,4380_94009,Donegal,114354-00011-1,1,4380_7778208_4900602,4380_1591 -4380_78147,296,4380_9401,Cavan,54837-00021-1,0,4380_7778208_1090104,4380_169 -4380_78108,286,4380_94010,Donegal,114358-00010-1,1,4380_7778208_4900602,4380_1591 -4380_78108,291,4380_94011,Donegal,114350-00013-1,1,4380_7778208_4900602,4380_1595 -4380_78108,289,4380_94012,Donegal,114352-00014-1,1,4380_7778208_4900602,4380_1591 -4380_78108,287,4380_94013,Donegal,114348-00012-1,1,4380_7778208_4900602,4380_1591 -4380_78108,290,4380_94014,Donegal,114357-00015-1,1,4380_7778208_4900602,4380_1591 -4380_78108,292,4380_94015,Donegal,114359-00016-1,1,4380_7778208_4900602,4380_1591 -4380_78108,294,4380_94016,Donegal,114349-00018-1,1,4380_7778208_4900602,4380_1591 -4380_78108,293,4380_94017,Donegal,114355-00017-1,1,4380_7778208_4900602,4380_1591 -4380_78108,296,4380_94018,Donegal,114351-00021-1,1,4380_7778208_4900602,4380_1595 -4380_78108,295,4380_94019,Donegal,114353-00019-1,1,4380_7778208_4900602,4380_1591 -4380_78108,285,4380_94025,Donegal,114380-00009-1,1,4380_7778208_4900602,4380_1592 -4380_78108,288,4380_94027,Donegal,114374-00011-1,1,4380_7778208_4900602,4380_1592 -4380_78108,286,4380_94028,Donegal,114376-00010-1,1,4380_7778208_4900602,4380_1592 -4380_78108,291,4380_94029,Donegal,114372-00013-1,1,4380_7778208_4900602,4380_1596 -4380_78108,289,4380_94030,Donegal,114378-00014-1,1,4380_7778208_4900602,4380_1592 -4380_78108,287,4380_94031,Donegal,114382-00012-1,1,4380_7778208_4900602,4380_1592 -4380_78108,290,4380_94032,Donegal,114381-00015-1,1,4380_7778208_4900602,4380_1592 -4380_78108,292,4380_94033,Donegal,114377-00016-1,1,4380_7778208_4900602,4380_1592 -4380_78108,294,4380_94034,Donegal,114383-00018-1,1,4380_7778208_4900602,4380_1592 -4380_78108,293,4380_94035,Donegal,114375-00017-1,1,4380_7778208_4900602,4380_1592 -4380_78108,296,4380_94036,Donegal,114373-00021-1,1,4380_7778208_4900602,4380_1596 -4380_78108,295,4380_94037,Donegal,114379-00019-1,1,4380_7778208_4900602,4380_1592 -4380_78108,297,4380_94039,Donegal,116853-00008-1,1,4380_7778208_49088801,4380_1589 -4380_78108,285,4380_94045,Donegal,114402-00009-1,1,4380_7778208_4900602,4380_1593 -4380_78108,288,4380_94047,Donegal,114398-00011-1,1,4380_7778208_4900602,4380_1593 -4380_78108,286,4380_94048,Donegal,114406-00010-1,1,4380_7778208_4900602,4380_1593 -4380_78108,291,4380_94049,Donegal,114396-00013-1,1,4380_7778208_4900602,4380_1593 -4380_78108,289,4380_94050,Donegal,114400-00014-1,1,4380_7778208_4900602,4380_1593 -4380_78108,287,4380_94051,Donegal,114404-00012-1,1,4380_7778208_4900602,4380_1593 -4380_78108,290,4380_94052,Donegal,114403-00015-1,1,4380_7778208_4900602,4380_1593 -4380_78108,292,4380_94053,Donegal,114407-00016-1,1,4380_7778208_4900602,4380_1593 -4380_78108,294,4380_94054,Donegal,114405-00018-1,1,4380_7778208_4900602,4380_1593 -4380_78108,293,4380_94055,Donegal,114399-00017-1,1,4380_7778208_4900602,4380_1593 -4380_78108,296,4380_94056,Donegal,114397-00021-1,1,4380_7778208_4900602,4380_1593 -4380_78108,295,4380_94057,Donegal,114401-00019-1,1,4380_7778208_4900602,4380_1593 -4380_78108,285,4380_94063,Donegal,114426-00009-1,1,4380_7778208_4900602,4380_1594 -4380_78108,288,4380_94065,Donegal,114424-00011-1,1,4380_7778208_4900602,4380_1594 -4380_78108,286,4380_94066,Donegal,114422-00010-1,1,4380_7778208_4900602,4380_1594 -4380_78108,291,4380_94067,Donegal,114420-00013-1,1,4380_7778208_4900602,4380_1594 -4380_78108,289,4380_94068,Donegal,114428-00014-1,1,4380_7778208_4900602,4380_1594 -4380_78108,287,4380_94069,Donegal,114430-00012-1,1,4380_7778208_4900602,4380_1594 -4380_78108,290,4380_94070,Donegal,114427-00015-1,1,4380_7778208_4900602,4380_1594 -4380_78108,292,4380_94071,Donegal,114423-00016-1,1,4380_7778208_4900602,4380_1594 -4380_78108,294,4380_94072,Donegal,114431-00018-1,1,4380_7778208_4900602,4380_1594 -4380_78108,293,4380_94073,Donegal,114425-00017-1,1,4380_7778208_4900602,4380_1594 -4380_78108,296,4380_94074,Donegal,114421-00021-1,1,4380_7778208_4900602,4380_1594 -4380_78108,295,4380_94075,Donegal,114429-00019-1,1,4380_7778208_4900602,4380_1594 -4380_78109,285,4380_94081,Ballybofey,114689-00009-1,0,4380_7778208_4940601,4380_1597 -4380_78109,288,4380_94083,Ballybofey,114687-00011-1,0,4380_7778208_4940601,4380_1597 -4380_78109,286,4380_94084,Ballybofey,114691-00010-1,0,4380_7778208_4940601,4380_1597 -4380_78109,291,4380_94085,Ballybofey,114695-00013-1,0,4380_7778208_4940601,4380_1597 -4380_78109,289,4380_94086,Ballybofey,114697-00014-1,0,4380_7778208_4940601,4380_1597 -4380_78109,287,4380_94087,Ballybofey,114693-00012-1,0,4380_7778208_4940601,4380_1597 -4380_78109,290,4380_94088,Ballybofey,114690-00015-1,0,4380_7778208_4940601,4380_1597 -4380_78109,292,4380_94089,Ballybofey,114692-00016-1,0,4380_7778208_4940601,4380_1597 -4380_78147,285,4380_9409,Cavan,6033-00009-1,0,4380_7778208_1090115,4380_164 -4380_78109,294,4380_94090,Ballybofey,114694-00018-1,0,4380_7778208_4940601,4380_1597 -4380_78109,293,4380_94091,Ballybofey,114688-00017-1,0,4380_7778208_4940601,4380_1597 -4380_78109,296,4380_94092,Ballybofey,114696-00021-1,0,4380_7778208_4940601,4380_1597 -4380_78109,295,4380_94093,Ballybofey,114698-00019-1,0,4380_7778208_4940601,4380_1597 -4380_78109,285,4380_94099,Ballybofey,114725-00009-1,0,4380_7778208_4940601,4380_1598 -4380_78147,286,4380_9410,Cavan,6038-00010-1,0,4380_7778208_1090115,4380_164 -4380_78109,288,4380_94101,Ballybofey,114731-00011-1,0,4380_7778208_4940601,4380_1598 -4380_78109,286,4380_94102,Ballybofey,114723-00010-1,0,4380_7778208_4940601,4380_1598 -4380_78109,291,4380_94103,Ballybofey,114727-00013-1,0,4380_7778208_4940601,4380_1598 -4380_78109,289,4380_94104,Ballybofey,114729-00014-1,0,4380_7778208_4940601,4380_1598 -4380_78109,287,4380_94105,Ballybofey,114733-00012-1,0,4380_7778208_4940601,4380_1598 -4380_78109,290,4380_94106,Ballybofey,114726-00015-1,0,4380_7778208_4940601,4380_1598 -4380_78109,292,4380_94107,Ballybofey,114724-00016-1,0,4380_7778208_4940601,4380_1598 -4380_78109,294,4380_94108,Ballybofey,114734-00018-1,0,4380_7778208_4940601,4380_1598 -4380_78109,293,4380_94109,Ballybofey,114732-00017-1,0,4380_7778208_4940601,4380_1598 -4380_78147,297,4380_9411,Cavan,6960-00008-1,0,4380_7778208_1090904,4380_166 -4380_78109,296,4380_94110,Ballybofey,114728-00021-1,0,4380_7778208_4940601,4380_1598 -4380_78109,295,4380_94111,Ballybofey,114730-00019-1,0,4380_7778208_4940601,4380_1598 -4380_78109,285,4380_94117,Letterkenny,114432-00009-1,1,4380_7778208_4910601,4380_1599 -4380_78109,288,4380_94119,Letterkenny,114438-00011-1,1,4380_7778208_4910601,4380_1599 -4380_78147,288,4380_9412,Cavan,6043-00011-1,0,4380_7778208_1090115,4380_164 -4380_78109,286,4380_94120,Letterkenny,114442-00010-1,1,4380_7778208_4910601,4380_1599 -4380_78109,291,4380_94121,Letterkenny,114434-00013-1,1,4380_7778208_4910601,4380_1599 -4380_78109,289,4380_94122,Letterkenny,114436-00014-1,1,4380_7778208_4910601,4380_1599 -4380_78109,287,4380_94123,Letterkenny,114440-00012-1,1,4380_7778208_4910601,4380_1599 -4380_78109,290,4380_94124,Letterkenny,114433-00015-1,1,4380_7778208_4910601,4380_1599 -4380_78109,292,4380_94125,Letterkenny,114443-00016-1,1,4380_7778208_4910601,4380_1599 -4380_78109,294,4380_94126,Letterkenny,114441-00018-1,1,4380_7778208_4910601,4380_1599 -4380_78109,293,4380_94127,Letterkenny,114439-00017-1,1,4380_7778208_4910601,4380_1599 -4380_78109,296,4380_94128,Letterkenny,114435-00021-1,1,4380_7778208_4910601,4380_1599 -4380_78109,295,4380_94129,Letterkenny,114437-00019-1,1,4380_7778208_4910601,4380_1599 -4380_78147,287,4380_9413,Cavan,6048-00012-1,0,4380_7778208_1090115,4380_164 -4380_78110,285,4380_94135,Dungloe,114561-00009-1,0,4380_7778208_4920601,4380_1600 -4380_78110,288,4380_94137,Dungloe,114555-00011-1,0,4380_7778208_4920601,4380_1600 -4380_78110,286,4380_94138,Dungloe,114553-00010-1,0,4380_7778208_4920601,4380_1600 -4380_78110,291,4380_94139,Dungloe,114559-00013-1,0,4380_7778208_4920601,4380_1600 -4380_78147,289,4380_9414,Cavan,6028-00014-1,0,4380_7778208_1090115,4380_164 -4380_78110,289,4380_94140,Dungloe,114557-00014-1,0,4380_7778208_4920601,4380_1600 -4380_78110,287,4380_94141,Dungloe,114563-00012-1,0,4380_7778208_4920601,4380_1600 -4380_78110,290,4380_94142,Dungloe,114562-00015-1,0,4380_7778208_4920601,4380_1600 -4380_78110,292,4380_94143,Dungloe,114554-00016-1,0,4380_7778208_4920601,4380_1600 -4380_78110,294,4380_94144,Dungloe,114564-00018-1,0,4380_7778208_4920601,4380_1600 -4380_78110,293,4380_94145,Dungloe,114556-00017-1,0,4380_7778208_4920601,4380_1600 -4380_78110,296,4380_94146,Dungloe,114560-00021-1,0,4380_7778208_4920601,4380_1600 -4380_78110,295,4380_94147,Dungloe,114558-00019-1,0,4380_7778208_4920601,4380_1600 -4380_78147,290,4380_9415,Cavan,55263-00015-1,0,4380_7778208_1090115,4380_164 -4380_78110,285,4380_94153,Dungloe,114579-00009-1,0,4380_7778208_4920601,4380_1600 -4380_78110,288,4380_94155,Dungloe,114577-00011-1,0,4380_7778208_4920601,4380_1600 -4380_78110,286,4380_94156,Dungloe,114583-00010-1,0,4380_7778208_4920601,4380_1600 -4380_78110,291,4380_94157,Dungloe,114581-00013-1,0,4380_7778208_4920601,4380_1600 -4380_78110,289,4380_94158,Dungloe,114587-00014-1,0,4380_7778208_4920601,4380_1600 -4380_78110,287,4380_94159,Dungloe,114585-00012-1,0,4380_7778208_4920601,4380_1600 -4380_78147,291,4380_9416,Cavan,5637-00013-1,0,4380_7778208_1090106,4380_168 -4380_78110,290,4380_94160,Dungloe,114580-00015-1,0,4380_7778208_4920601,4380_1600 -4380_78110,292,4380_94161,Dungloe,114584-00016-1,0,4380_7778208_4920601,4380_1600 -4380_78110,294,4380_94162,Dungloe,114586-00018-1,0,4380_7778208_4920601,4380_1600 -4380_78110,293,4380_94163,Dungloe,114578-00017-1,0,4380_7778208_4920601,4380_1600 -4380_78110,296,4380_94164,Dungloe,114582-00021-1,0,4380_7778208_4920601,4380_1600 -4380_78110,295,4380_94165,Dungloe,114588-00019-1,0,4380_7778208_4920601,4380_1600 -4380_78147,292,4380_9417,Cavan,55261-00016-1,0,4380_7778208_1090115,4380_164 -4380_78110,297,4380_94172,Dungloe,114596-00008-1,0,4380_7778208_4920601,4380_1600 -4380_78110,285,4380_94173,Dungloe,114601-00009-1,0,4380_7778208_4920601,4380_1600 -4380_78110,288,4380_94175,Dungloe,114594-00011-1,0,4380_7778208_4920601,4380_1600 -4380_78110,286,4380_94176,Dungloe,114597-00010-1,0,4380_7778208_4920601,4380_1600 -4380_78110,291,4380_94177,Dungloe,114590-00013-1,0,4380_7778208_4920601,4380_1600 -4380_78110,289,4380_94178,Dungloe,114592-00014-1,0,4380_7778208_4920601,4380_1600 -4380_78110,287,4380_94179,Dungloe,114599-00012-1,0,4380_7778208_4920601,4380_1600 -4380_78147,293,4380_9418,Cavan,55264-00017-1,0,4380_7778208_1090115,4380_164 -4380_78110,290,4380_94180,Dungloe,114602-00015-1,0,4380_7778208_4920601,4380_1600 -4380_78110,292,4380_94181,Dungloe,114598-00016-1,0,4380_7778208_4920601,4380_1600 -4380_78110,294,4380_94182,Dungloe,114600-00018-1,0,4380_7778208_4920601,4380_1600 -4380_78110,293,4380_94183,Dungloe,114595-00017-1,0,4380_7778208_4920601,4380_1600 -4380_78110,296,4380_94184,Dungloe,114591-00021-1,0,4380_7778208_4920601,4380_1600 -4380_78110,295,4380_94185,Dungloe,114593-00019-1,0,4380_7778208_4920601,4380_1600 -4380_78147,294,4380_9419,Cavan,55265-00018-1,0,4380_7778208_1090115,4380_164 -4380_78110,285,4380_94191,Donegal,114546-00009-1,1,4380_7778208_4920601,4380_1601 -4380_78110,288,4380_94193,Donegal,114550-00011-1,1,4380_7778208_4920601,4380_1601 -4380_78110,286,4380_94194,Donegal,114544-00010-1,1,4380_7778208_4920601,4380_1601 -4380_78110,291,4380_94195,Donegal,114542-00013-1,1,4380_7778208_4920601,4380_1601 -4380_78110,289,4380_94196,Donegal,114540-00014-1,1,4380_7778208_4920601,4380_1601 -4380_78110,287,4380_94197,Donegal,114548-00012-1,1,4380_7778208_4920601,4380_1601 -4380_78110,290,4380_94198,Donegal,114547-00015-1,1,4380_7778208_4920601,4380_1601 -4380_78110,292,4380_94199,Donegal,114545-00016-1,1,4380_7778208_4920601,4380_1601 -4380_78147,295,4380_9420,Cavan,55262-00019-1,0,4380_7778208_1090115,4380_164 -4380_78110,294,4380_94200,Donegal,114549-00018-1,1,4380_7778208_4920601,4380_1601 -4380_78110,293,4380_94201,Donegal,114551-00017-1,1,4380_7778208_4920601,4380_1601 -4380_78110,296,4380_94202,Donegal,114543-00021-1,1,4380_7778208_4920601,4380_1601 -4380_78110,295,4380_94203,Donegal,114541-00019-1,1,4380_7778208_4920601,4380_1601 -4380_78110,297,4380_94205,Donegal,114552-00008-1,1,4380_7778208_4920601,4380_1601 -4380_78147,296,4380_9421,Cavan,54951-00021-1,0,4380_7778208_1090106,4380_168 -4380_78110,285,4380_94211,Donegal,114565-00009-1,1,4380_7778208_4920601,4380_1602 -4380_78110,288,4380_94213,Donegal,114569-00011-1,1,4380_7778208_4920601,4380_1602 -4380_78110,286,4380_94214,Donegal,114567-00010-1,1,4380_7778208_4920601,4380_1602 -4380_78110,291,4380_94215,Donegal,114575-00013-1,1,4380_7778208_4920601,4380_1602 -4380_78110,289,4380_94216,Donegal,114571-00014-1,1,4380_7778208_4920601,4380_1602 -4380_78110,287,4380_94217,Donegal,114573-00012-1,1,4380_7778208_4920601,4380_1602 -4380_78110,290,4380_94218,Donegal,114566-00015-1,1,4380_7778208_4920601,4380_1602 -4380_78110,292,4380_94219,Donegal,114568-00016-1,1,4380_7778208_4920601,4380_1602 -4380_78110,294,4380_94220,Donegal,114574-00018-1,1,4380_7778208_4920601,4380_1602 -4380_78110,293,4380_94221,Donegal,114570-00017-1,1,4380_7778208_4920601,4380_1602 -4380_78110,296,4380_94222,Donegal,114576-00021-1,1,4380_7778208_4920601,4380_1602 -4380_78110,295,4380_94223,Donegal,114572-00019-1,1,4380_7778208_4920601,4380_1602 -4380_78110,297,4380_94225,Donegal,114589-00008-1,1,4380_7778208_4920601,4380_1601 -4380_78111,285,4380_94231,Ballybofey,114629-00009-1,0,4380_7778208_4940601,4380_1604 -4380_78111,288,4380_94233,Ballybofey,114637-00011-1,0,4380_7778208_4940601,4380_1604 -4380_78111,286,4380_94234,Ballybofey,114633-00010-1,0,4380_7778208_4940601,4380_1604 -4380_78111,291,4380_94235,Ballybofey,114635-00013-1,0,4380_7778208_4940601,4380_1604 -4380_78111,289,4380_94236,Ballybofey,114627-00014-1,0,4380_7778208_4940601,4380_1604 -4380_78111,287,4380_94237,Ballybofey,114631-00012-1,0,4380_7778208_4940601,4380_1604 -4380_78111,290,4380_94238,Ballybofey,114630-00015-1,0,4380_7778208_4940601,4380_1604 -4380_78111,292,4380_94239,Ballybofey,114634-00016-1,0,4380_7778208_4940601,4380_1604 -4380_78111,294,4380_94240,Ballybofey,114632-00018-1,0,4380_7778208_4940601,4380_1604 -4380_78111,293,4380_94241,Ballybofey,114638-00017-1,0,4380_7778208_4940601,4380_1604 -4380_78111,296,4380_94242,Ballybofey,114636-00021-1,0,4380_7778208_4940601,4380_1604 -4380_78111,295,4380_94243,Ballybofey,114628-00019-1,0,4380_7778208_4940601,4380_1604 -4380_78111,285,4380_94249,Ballybofey,114661-00009-1,0,4380_7778208_4940601,4380_1603 -4380_78111,288,4380_94251,Ballybofey,114657-00011-1,0,4380_7778208_4940601,4380_1603 -4380_78111,286,4380_94252,Ballybofey,114653-00010-1,0,4380_7778208_4940601,4380_1603 -4380_78111,291,4380_94253,Ballybofey,114651-00013-1,0,4380_7778208_4940601,4380_1603 -4380_78111,289,4380_94254,Ballybofey,114655-00014-1,0,4380_7778208_4940601,4380_1603 -4380_78111,287,4380_94255,Ballybofey,114659-00012-1,0,4380_7778208_4940601,4380_1603 -4380_78111,290,4380_94256,Ballybofey,114662-00015-1,0,4380_7778208_4940601,4380_1603 -4380_78111,292,4380_94257,Ballybofey,114654-00016-1,0,4380_7778208_4940601,4380_1603 -4380_78111,294,4380_94258,Ballybofey,114660-00018-1,0,4380_7778208_4940601,4380_1603 -4380_78111,293,4380_94259,Ballybofey,114658-00017-1,0,4380_7778208_4940601,4380_1603 -4380_78111,296,4380_94260,Ballybofey,114652-00021-1,0,4380_7778208_4940601,4380_1603 -4380_78111,295,4380_94261,Ballybofey,114656-00019-1,0,4380_7778208_4940601,4380_1603 -4380_78111,285,4380_94267,Ballybofey,114480-00009-1,0,4380_7778208_4910601,4380_1603 -4380_78111,288,4380_94269,Ballybofey,114488-00011-1,0,4380_7778208_4910601,4380_1603 -4380_78111,286,4380_94270,Ballybofey,114482-00010-1,0,4380_7778208_4910601,4380_1603 -4380_78111,291,4380_94271,Ballybofey,114486-00013-1,0,4380_7778208_4910601,4380_1603 -4380_78111,289,4380_94272,Ballybofey,114490-00014-1,0,4380_7778208_4910601,4380_1603 -4380_78111,287,4380_94273,Ballybofey,114484-00012-1,0,4380_7778208_4910601,4380_1603 -4380_78111,290,4380_94274,Ballybofey,114481-00015-1,0,4380_7778208_4910601,4380_1603 -4380_78111,292,4380_94275,Ballybofey,114483-00016-1,0,4380_7778208_4910601,4380_1603 -4380_78111,294,4380_94276,Ballybofey,114485-00018-1,0,4380_7778208_4910601,4380_1603 -4380_78111,293,4380_94277,Ballybofey,114489-00017-1,0,4380_7778208_4910601,4380_1603 -4380_78111,296,4380_94278,Ballybofey,114487-00021-1,0,4380_7778208_4910601,4380_1603 -4380_78111,295,4380_94279,Ballybofey,114491-00019-1,0,4380_7778208_4910601,4380_1603 -4380_78111,285,4380_94285,Ballybofey,114250-00009-1,0,4380_7778208_4800602,4380_1603 -4380_78111,288,4380_94287,Ballybofey,114252-00011-1,0,4380_7778208_4800602,4380_1603 -4380_78111,286,4380_94288,Ballybofey,114258-00010-1,0,4380_7778208_4800602,4380_1603 -4380_78111,291,4380_94289,Ballybofey,114256-00013-1,0,4380_7778208_4800602,4380_1603 -4380_78147,285,4380_9429,Cavan,6083-00009-1,0,4380_7778208_1090117,4380_165 -4380_78111,289,4380_94290,Ballybofey,114254-00014-1,0,4380_7778208_4800602,4380_1603 -4380_78111,287,4380_94291,Ballybofey,114248-00012-1,0,4380_7778208_4800602,4380_1603 -4380_78111,290,4380_94292,Ballybofey,114251-00015-1,0,4380_7778208_4800602,4380_1603 -4380_78111,292,4380_94293,Ballybofey,114259-00016-1,0,4380_7778208_4800602,4380_1603 -4380_78111,294,4380_94294,Ballybofey,114249-00018-1,0,4380_7778208_4800602,4380_1603 -4380_78111,293,4380_94295,Ballybofey,114253-00017-1,0,4380_7778208_4800602,4380_1603 -4380_78111,296,4380_94296,Ballybofey,114257-00021-1,0,4380_7778208_4800602,4380_1603 -4380_78111,295,4380_94297,Ballybofey,114255-00019-1,0,4380_7778208_4800602,4380_1603 -4380_78113,285,4380_943,Dublin via Airport,49739-00009-1,1,4380_7778208_1000904,4380_18 -4380_78147,286,4380_9430,Cavan,6088-00010-1,0,4380_7778208_1090117,4380_165 -4380_78111,285,4380_94303,Ballybofey,114753-00009-1,0,4380_7778208_4940601,4380_1603 -4380_78111,288,4380_94305,Ballybofey,114747-00011-1,0,4380_7778208_4940601,4380_1603 -4380_78111,286,4380_94306,Ballybofey,114757-00010-1,0,4380_7778208_4940601,4380_1603 -4380_78111,291,4380_94307,Ballybofey,114749-00013-1,0,4380_7778208_4940601,4380_1603 -4380_78111,289,4380_94308,Ballybofey,114751-00014-1,0,4380_7778208_4940601,4380_1603 -4380_78111,287,4380_94309,Ballybofey,114755-00012-1,0,4380_7778208_4940601,4380_1603 -4380_78147,297,4380_9431,Cavan,7000-00008-1,0,4380_7778208_1090905,4380_167 -4380_78111,290,4380_94310,Ballybofey,114754-00015-1,0,4380_7778208_4940601,4380_1603 -4380_78111,292,4380_94311,Ballybofey,114758-00016-1,0,4380_7778208_4940601,4380_1603 -4380_78111,294,4380_94312,Ballybofey,114756-00018-1,0,4380_7778208_4940601,4380_1603 -4380_78111,293,4380_94313,Ballybofey,114748-00017-1,0,4380_7778208_4940601,4380_1603 -4380_78111,296,4380_94314,Ballybofey,114750-00021-1,0,4380_7778208_4940601,4380_1603 -4380_78111,295,4380_94315,Ballybofey,114752-00019-1,0,4380_7778208_4940601,4380_1603 -4380_78147,288,4380_9432,Cavan,6093-00011-1,0,4380_7778208_1090117,4380_165 -4380_78111,285,4380_94321,Strabane,114607-00009-1,1,4380_7778208_4940601,4380_1605 -4380_78111,288,4380_94323,Strabane,114603-00011-1,1,4380_7778208_4940601,4380_1605 -4380_78111,286,4380_94324,Strabane,114609-00010-1,1,4380_7778208_4940601,4380_1605 -4380_78111,291,4380_94325,Strabane,114611-00013-1,1,4380_7778208_4940601,4380_1605 -4380_78111,289,4380_94326,Strabane,114605-00014-1,1,4380_7778208_4940601,4380_1605 -4380_78111,287,4380_94327,Strabane,114613-00012-1,1,4380_7778208_4940601,4380_1605 -4380_78111,290,4380_94328,Strabane,114608-00015-1,1,4380_7778208_4940601,4380_1605 -4380_78111,292,4380_94329,Strabane,114610-00016-1,1,4380_7778208_4940601,4380_1605 -4380_78147,287,4380_9433,Cavan,6098-00012-1,0,4380_7778208_1090117,4380_165 -4380_78111,294,4380_94330,Strabane,114614-00018-1,1,4380_7778208_4940601,4380_1605 -4380_78111,293,4380_94331,Strabane,114604-00017-1,1,4380_7778208_4940601,4380_1605 -4380_78111,296,4380_94332,Strabane,114612-00021-1,1,4380_7778208_4940601,4380_1605 -4380_78111,295,4380_94333,Strabane,114606-00019-1,1,4380_7778208_4940601,4380_1605 -4380_78111,285,4380_94339,Strabane,114649-00009-1,1,4380_7778208_4940601,4380_1605 -4380_78147,289,4380_9434,Cavan,6078-00014-1,0,4380_7778208_1090117,4380_165 -4380_78111,288,4380_94341,Strabane,114643-00011-1,1,4380_7778208_4940601,4380_1605 -4380_78111,286,4380_94342,Strabane,114641-00010-1,1,4380_7778208_4940601,4380_1605 -4380_78111,291,4380_94343,Strabane,114645-00013-1,1,4380_7778208_4940601,4380_1605 -4380_78111,289,4380_94344,Strabane,114639-00014-1,1,4380_7778208_4940601,4380_1605 -4380_78111,287,4380_94345,Strabane,114647-00012-1,1,4380_7778208_4940601,4380_1605 -4380_78111,290,4380_94346,Strabane,114650-00015-1,1,4380_7778208_4940601,4380_1605 -4380_78111,292,4380_94347,Strabane,114642-00016-1,1,4380_7778208_4940601,4380_1605 -4380_78111,294,4380_94348,Strabane,114648-00018-1,1,4380_7778208_4940601,4380_1605 -4380_78111,293,4380_94349,Strabane,114644-00017-1,1,4380_7778208_4940601,4380_1605 -4380_78147,290,4380_9435,Cavan,55303-00015-1,0,4380_7778208_1090117,4380_165 -4380_78111,296,4380_94350,Strabane,114646-00021-1,1,4380_7778208_4940601,4380_1605 -4380_78111,295,4380_94351,Strabane,114640-00019-1,1,4380_7778208_4940601,4380_1605 -4380_78111,285,4380_94357,Strabane,114663-00009-1,1,4380_7778208_4940601,4380_1605 -4380_78111,288,4380_94359,Strabane,114671-00011-1,1,4380_7778208_4940601,4380_1605 -4380_78147,291,4380_9436,Cavan,5757-00013-1,0,4380_7778208_1090108,4380_169 -4380_78111,286,4380_94360,Strabane,114673-00010-1,1,4380_7778208_4940601,4380_1605 -4380_78111,291,4380_94361,Strabane,114665-00013-1,1,4380_7778208_4940601,4380_1605 -4380_78111,289,4380_94362,Strabane,114669-00014-1,1,4380_7778208_4940601,4380_1605 -4380_78111,287,4380_94363,Strabane,114667-00012-1,1,4380_7778208_4940601,4380_1605 -4380_78111,290,4380_94364,Strabane,114664-00015-1,1,4380_7778208_4940601,4380_1605 -4380_78111,292,4380_94365,Strabane,114674-00016-1,1,4380_7778208_4940601,4380_1605 -4380_78111,294,4380_94366,Strabane,114668-00018-1,1,4380_7778208_4940601,4380_1605 -4380_78111,293,4380_94367,Strabane,114672-00017-1,1,4380_7778208_4940601,4380_1605 -4380_78111,296,4380_94368,Strabane,114666-00021-1,1,4380_7778208_4940601,4380_1605 -4380_78111,295,4380_94369,Strabane,114670-00019-1,1,4380_7778208_4940601,4380_1605 -4380_78147,292,4380_9437,Cavan,55301-00016-1,0,4380_7778208_1090117,4380_165 -4380_78111,285,4380_94375,Strabane,114496-00009-1,1,4380_7778208_4910601,4380_1605 -4380_78111,288,4380_94377,Strabane,114498-00011-1,1,4380_7778208_4910601,4380_1605 -4380_78111,286,4380_94378,Strabane,114502-00010-1,1,4380_7778208_4910601,4380_1605 -4380_78111,291,4380_94379,Strabane,114500-00013-1,1,4380_7778208_4910601,4380_1605 -4380_78147,293,4380_9438,Cavan,55299-00017-1,0,4380_7778208_1090117,4380_165 -4380_78111,289,4380_94380,Strabane,114492-00014-1,1,4380_7778208_4910601,4380_1605 -4380_78111,287,4380_94381,Strabane,114494-00012-1,1,4380_7778208_4910601,4380_1605 -4380_78111,290,4380_94382,Strabane,114497-00015-1,1,4380_7778208_4910601,4380_1605 -4380_78111,292,4380_94383,Strabane,114503-00016-1,1,4380_7778208_4910601,4380_1605 -4380_78111,294,4380_94384,Strabane,114495-00018-1,1,4380_7778208_4910601,4380_1605 -4380_78111,293,4380_94385,Strabane,114499-00017-1,1,4380_7778208_4910601,4380_1605 -4380_78111,296,4380_94386,Strabane,114501-00021-1,1,4380_7778208_4910601,4380_1605 -4380_78111,295,4380_94387,Strabane,114493-00019-1,1,4380_7778208_4910601,4380_1605 -4380_78147,294,4380_9439,Cavan,55302-00018-1,0,4380_7778208_1090117,4380_165 -4380_78111,285,4380_94393,Strabane,114703-00009-1,1,4380_7778208_4940601,4380_1605 -4380_78111,288,4380_94395,Strabane,114699-00011-1,1,4380_7778208_4940601,4380_1605 -4380_78111,286,4380_94396,Strabane,114705-00010-1,1,4380_7778208_4940601,4380_1605 -4380_78111,291,4380_94397,Strabane,114707-00013-1,1,4380_7778208_4940601,4380_1605 -4380_78111,289,4380_94398,Strabane,114709-00014-1,1,4380_7778208_4940601,4380_1605 -4380_78111,287,4380_94399,Strabane,114701-00012-1,1,4380_7778208_4940601,4380_1605 -4380_78113,286,4380_944,Dublin via Airport,49735-00010-1,1,4380_7778208_1000904,4380_18 -4380_78147,295,4380_9440,Cavan,55300-00019-1,0,4380_7778208_1090117,4380_165 -4380_78111,290,4380_94400,Strabane,114704-00015-1,1,4380_7778208_4940601,4380_1605 -4380_78111,292,4380_94401,Strabane,114706-00016-1,1,4380_7778208_4940601,4380_1605 -4380_78111,294,4380_94402,Strabane,114702-00018-1,1,4380_7778208_4940601,4380_1605 -4380_78111,293,4380_94403,Strabane,114700-00017-1,1,4380_7778208_4940601,4380_1605 -4380_78111,296,4380_94404,Strabane,114708-00021-1,1,4380_7778208_4940601,4380_1605 -4380_78111,295,4380_94405,Strabane,114710-00019-1,1,4380_7778208_4940601,4380_1605 -4380_78147,296,4380_9441,Cavan,55039-00021-1,0,4380_7778208_1090108,4380_169 -4380_78111,285,4380_94411,Strabane,114745-00009-1,1,4380_7778208_4940601,4380_1605 -4380_78111,288,4380_94413,Strabane,114743-00011-1,1,4380_7778208_4940601,4380_1605 -4380_78111,286,4380_94414,Strabane,114741-00010-1,1,4380_7778208_4940601,4380_1605 -4380_78111,291,4380_94415,Strabane,114737-00013-1,1,4380_7778208_4940601,4380_1605 -4380_78111,289,4380_94416,Strabane,114739-00014-1,1,4380_7778208_4940601,4380_1605 -4380_78111,287,4380_94417,Strabane,114735-00012-1,1,4380_7778208_4940601,4380_1605 -4380_78111,290,4380_94418,Strabane,114746-00015-1,1,4380_7778208_4940601,4380_1605 -4380_78111,292,4380_94419,Strabane,114742-00016-1,1,4380_7778208_4940601,4380_1605 -4380_78111,294,4380_94420,Strabane,114736-00018-1,1,4380_7778208_4940601,4380_1605 -4380_78111,293,4380_94421,Strabane,114744-00017-1,1,4380_7778208_4940601,4380_1605 -4380_78111,296,4380_94422,Strabane,114738-00021-1,1,4380_7778208_4940601,4380_1605 -4380_78111,295,4380_94423,Strabane,114740-00019-1,1,4380_7778208_4940601,4380_1605 -4380_78112,287,4380_94425,Manorhamilton,114759-00012-1,0,4380_7778208_4950601,4380_1606 -4380_78112,294,4380_94426,Manorhamilton,114760-00018-1,0,4380_7778208_4950601,4380_1606 -4380_78112,287,4380_94428,Manorhamilton,114763-00012-1,0,4380_7778208_4950601,4380_1606 -4380_78112,294,4380_94429,Manorhamilton,114764-00018-1,0,4380_7778208_4950601,4380_1606 -4380_78112,287,4380_94431,Ballyshannon,114761-00012-1,1,4380_7778208_4950601,4380_1607 -4380_78112,294,4380_94432,Ballyshannon,114762-00018-1,1,4380_7778208_4950601,4380_1607 -4380_78112,287,4380_94434,Ballyshannon,114765-00012-1,1,4380_7778208_4950601,4380_1607 -4380_78112,294,4380_94435,Ballyshannon,114766-00018-1,1,4380_7778208_4950601,4380_1607 -4380_77938,285,4380_94450,Galway,48284-00009-1,0,4380_7778208_510204,4380_1608 -4380_77938,285,4380_94451,Galway,48456-00009-1,0,4380_7778208_510401,4380_1610 -4380_77938,286,4380_94452,Galway,48282-00010-1,0,4380_7778208_510204,4380_1608 -4380_77938,286,4380_94453,Galway,48458-00010-1,0,4380_7778208_510401,4380_1610 -4380_77938,297,4380_94454,Galway,48204-00008-1,0,4380_7778208_510201,4380_1608 -4380_77938,297,4380_94455,Galway,48455-00008-1,0,4380_7778208_510401,4380_1610 -4380_77938,287,4380_94456,Galway,48276-00012-1,0,4380_7778208_510204,4380_1608 -4380_77938,287,4380_94457,Galway,48460-00012-1,0,4380_7778208_510401,4380_1610 -4380_77938,288,4380_94458,Galway,48280-00011-1,0,4380_7778208_510204,4380_1608 -4380_77938,288,4380_94459,Galway,48449-00011-1,0,4380_7778208_510401,4380_1610 -4380_77938,289,4380_94460,Galway,48278-00014-1,0,4380_7778208_510204,4380_1608 -4380_77938,289,4380_94461,Galway,48451-00014-1,0,4380_7778208_510401,4380_1610 -4380_77938,290,4380_94462,Galway,48285-00015-1,0,4380_7778208_510204,4380_1608 -4380_77938,290,4380_94463,Galway,48457-00015-1,0,4380_7778208_510401,4380_1610 -4380_77938,291,4380_94464,Galway,48202-00013-1,0,4380_7778208_510201,4380_1608 -4380_77938,291,4380_94465,Galway,48453-00013-1,0,4380_7778208_510401,4380_1610 -4380_77938,292,4380_94466,Galway,48283-00016-1,0,4380_7778208_510204,4380_1608 -4380_77938,292,4380_94467,Galway,48459-00016-1,0,4380_7778208_510401,4380_1610 -4380_77938,293,4380_94468,Galway,48281-00017-1,0,4380_7778208_510204,4380_1608 -4380_77938,293,4380_94469,Galway,48450-00017-1,0,4380_7778208_510401,4380_1610 -4380_77938,294,4380_94470,Galway,48277-00018-1,0,4380_7778208_510204,4380_1608 -4380_77938,294,4380_94471,Galway,48461-00018-1,0,4380_7778208_510401,4380_1610 -4380_77938,295,4380_94472,Galway,48279-00019-1,0,4380_7778208_510204,4380_1608 -4380_77938,295,4380_94473,Galway,48452-00019-1,0,4380_7778208_510401,4380_1610 -4380_77938,296,4380_94474,Galway,48203-00021-1,0,4380_7778208_510201,4380_1608 -4380_77938,296,4380_94475,Galway,48454-00021-1,0,4380_7778208_510401,4380_1610 -4380_78147,285,4380_9449,Cavan,5831-00009-1,0,4380_7778208_1090110,4380_164 -4380_77938,285,4380_94490,Galway,48218-00009-1,0,4380_7778208_510202,4380_1608 -4380_77938,285,4380_94491,Galway,48547-00009-1,0,4380_7778208_510403,4380_1610 -4380_77938,286,4380_94492,Galway,48220-00010-1,0,4380_7778208_510202,4380_1608 -4380_77938,286,4380_94493,Galway,48549-00010-1,0,4380_7778208_510403,4380_1610 -4380_77938,297,4380_94494,Galway,48217-00008-1,0,4380_7778208_510202,4380_1608 -4380_77938,297,4380_94495,Galway,48546-00008-1,0,4380_7778208_510403,4380_1610 -4380_77938,287,4380_94496,Galway,48222-00012-1,0,4380_7778208_510202,4380_1608 -4380_77938,287,4380_94497,Galway,48551-00012-1,0,4380_7778208_510403,4380_1610 -4380_77938,288,4380_94498,Galway,48211-00011-1,0,4380_7778208_510202,4380_1608 -4380_77938,288,4380_94499,Galway,48540-00011-1,0,4380_7778208_510403,4380_1610 -4380_78113,297,4380_945,Dublin via Airport,49703-00008-1,1,4380_7778208_1000903,4380_20 -4380_78147,286,4380_9450,Cavan,5839-00010-1,0,4380_7778208_1090110,4380_164 -4380_77938,289,4380_94500,Galway,48213-00014-1,0,4380_7778208_510202,4380_1608 -4380_77938,289,4380_94501,Galway,48542-00014-1,0,4380_7778208_510403,4380_1610 -4380_77938,290,4380_94502,Galway,48219-00015-1,0,4380_7778208_510202,4380_1608 -4380_77938,290,4380_94503,Galway,48548-00015-1,0,4380_7778208_510403,4380_1610 -4380_77938,291,4380_94504,Galway,48215-00013-1,0,4380_7778208_510202,4380_1608 -4380_77938,291,4380_94505,Galway,48544-00013-1,0,4380_7778208_510403,4380_1610 -4380_77938,292,4380_94506,Galway,48221-00016-1,0,4380_7778208_510202,4380_1608 -4380_77938,292,4380_94507,Galway,48550-00016-1,0,4380_7778208_510403,4380_1610 -4380_77938,293,4380_94508,Galway,48212-00017-1,0,4380_7778208_510202,4380_1608 -4380_77938,293,4380_94509,Galway,48541-00017-1,0,4380_7778208_510403,4380_1610 -4380_78147,297,4380_9451,Cavan,6913-00008-1,0,4380_7778208_1090903,4380_166 -4380_77938,294,4380_94510,Galway,48223-00018-1,0,4380_7778208_510202,4380_1608 -4380_77938,294,4380_94511,Galway,48552-00018-1,0,4380_7778208_510403,4380_1610 -4380_77938,295,4380_94512,Galway,48214-00019-1,0,4380_7778208_510202,4380_1608 -4380_77938,295,4380_94513,Galway,48543-00019-1,0,4380_7778208_510403,4380_1610 -4380_77938,296,4380_94514,Galway,48216-00021-1,0,4380_7778208_510202,4380_1608 -4380_77938,296,4380_94515,Galway,48545-00021-1,0,4380_7778208_510403,4380_1610 -4380_78147,288,4380_9452,Cavan,5847-00011-1,0,4380_7778208_1090110,4380_164 -4380_77938,285,4380_94523,Galway,48255-00009-1,0,4380_7778208_510203,4380_1608 -4380_77938,286,4380_94524,Galway,48259-00010-1,0,4380_7778208_510203,4380_1608 -4380_77938,297,4380_94525,Galway,48250-00008-1,0,4380_7778208_510203,4380_1608 -4380_77938,287,4380_94526,Galway,48257-00012-1,0,4380_7778208_510203,4380_1608 -4380_77938,288,4380_94527,Galway,48261-00011-1,0,4380_7778208_510203,4380_1608 -4380_77938,289,4380_94528,Galway,48251-00014-1,0,4380_7778208_510203,4380_1608 -4380_77938,290,4380_94529,Galway,48256-00015-1,0,4380_7778208_510203,4380_1608 -4380_78147,287,4380_9453,Cavan,5855-00012-1,0,4380_7778208_1090110,4380_164 -4380_77938,291,4380_94530,Galway,48253-00013-1,0,4380_7778208_510203,4380_1608 -4380_77938,292,4380_94531,Galway,48260-00016-1,0,4380_7778208_510203,4380_1608 -4380_77938,293,4380_94532,Galway,48262-00017-1,0,4380_7778208_510203,4380_1608 -4380_77938,294,4380_94533,Galway,48258-00018-1,0,4380_7778208_510203,4380_1608 -4380_77938,295,4380_94534,Galway,48252-00019-1,0,4380_7778208_510203,4380_1608 -4380_77938,296,4380_94535,Galway,48254-00021-1,0,4380_7778208_510203,4380_1608 -4380_78147,289,4380_9454,Cavan,5823-00014-1,0,4380_7778208_1090110,4380_164 -4380_77938,285,4380_94543,Galway,48504-00009-1,0,4380_7778208_510402,4380_1608 -4380_77938,286,4380_94544,Galway,48506-00010-1,0,4380_7778208_510402,4380_1608 -4380_77938,297,4380_94545,Galway,48503-00008-1,0,4380_7778208_510402,4380_1608 -4380_77938,287,4380_94546,Galway,48512-00012-1,0,4380_7778208_510402,4380_1608 -4380_77938,288,4380_94547,Galway,48510-00011-1,0,4380_7778208_510402,4380_1608 -4380_77938,289,4380_94548,Galway,48508-00014-1,0,4380_7778208_510402,4380_1608 -4380_77938,290,4380_94549,Galway,48505-00015-1,0,4380_7778208_510402,4380_1608 -4380_78147,290,4380_9455,Cavan,55123-00015-1,0,4380_7778208_1090110,4380_164 -4380_77938,291,4380_94550,Galway,48501-00013-1,0,4380_7778208_510402,4380_1608 -4380_77938,292,4380_94551,Galway,48507-00016-1,0,4380_7778208_510402,4380_1608 -4380_77938,293,4380_94552,Galway,48511-00017-1,0,4380_7778208_510402,4380_1608 -4380_77938,294,4380_94553,Galway,48513-00018-1,0,4380_7778208_510402,4380_1608 -4380_77938,295,4380_94554,Galway,48509-00019-1,0,4380_7778208_510402,4380_1608 -4380_77938,296,4380_94555,Galway,48502-00021-1,0,4380_7778208_510402,4380_1608 -4380_78147,291,4380_9456,Cavan,6996-00013-1,0,4380_7778208_1090905,4380_168 -4380_77938,285,4380_94563,Galway,48598-00009-1,0,4380_7778208_510404,4380_1608 -4380_77938,286,4380_94564,Galway,48594-00010-1,0,4380_7778208_510404,4380_1608 -4380_77938,297,4380_94565,Galway,48604-00008-1,0,4380_7778208_510404,4380_1608 -4380_77938,287,4380_94566,Galway,48592-00012-1,0,4380_7778208_510404,4380_1608 -4380_77938,288,4380_94567,Galway,48600-00011-1,0,4380_7778208_510404,4380_1608 -4380_77938,289,4380_94568,Galway,48602-00014-1,0,4380_7778208_510404,4380_1608 -4380_77938,290,4380_94569,Galway,48599-00015-1,0,4380_7778208_510404,4380_1608 -4380_78147,292,4380_9457,Cavan,55120-00016-1,0,4380_7778208_1090110,4380_164 -4380_77938,291,4380_94570,Galway,48596-00013-1,0,4380_7778208_510404,4380_1608 -4380_77938,292,4380_94571,Galway,48595-00016-1,0,4380_7778208_510404,4380_1608 -4380_77938,293,4380_94572,Galway,48601-00017-1,0,4380_7778208_510404,4380_1608 -4380_77938,294,4380_94573,Galway,48593-00018-1,0,4380_7778208_510404,4380_1608 -4380_77938,295,4380_94574,Galway,48603-00019-1,0,4380_7778208_510404,4380_1608 -4380_77938,296,4380_94575,Galway,48597-00021-1,0,4380_7778208_510404,4380_1608 -4380_78147,293,4380_9458,Cavan,55124-00017-1,0,4380_7778208_1090110,4380_164 -4380_77938,285,4380_94583,Galway,48325-00009-1,0,4380_7778208_510301,4380_1608 -4380_77938,286,4380_94584,Galway,48321-00010-1,0,4380_7778208_510301,4380_1608 -4380_77938,297,4380_94585,Galway,48331-00008-1,0,4380_7778208_510301,4380_1608 -4380_77938,287,4380_94586,Galway,48319-00012-1,0,4380_7778208_510301,4380_1608 -4380_77938,288,4380_94587,Galway,48327-00011-1,0,4380_7778208_510301,4380_1608 -4380_77938,289,4380_94588,Galway,48329-00014-1,0,4380_7778208_510301,4380_1608 -4380_77938,290,4380_94589,Galway,48326-00015-1,0,4380_7778208_510301,4380_1608 -4380_78147,294,4380_9459,Cavan,55122-00018-1,0,4380_7778208_1090110,4380_164 -4380_77938,291,4380_94590,Galway,48323-00013-1,0,4380_7778208_510301,4380_1608 -4380_77938,292,4380_94591,Galway,48322-00016-1,0,4380_7778208_510301,4380_1608 -4380_77938,293,4380_94592,Galway,48328-00017-1,0,4380_7778208_510301,4380_1608 -4380_77938,294,4380_94593,Galway,48320-00018-1,0,4380_7778208_510301,4380_1608 -4380_77938,295,4380_94594,Galway,48330-00019-1,0,4380_7778208_510301,4380_1608 -4380_77938,296,4380_94595,Galway,48324-00021-1,0,4380_7778208_510301,4380_1608 -4380_78113,287,4380_946,Dublin via Airport,49737-00012-1,1,4380_7778208_1000904,4380_18 -4380_78147,295,4380_9460,Cavan,55121-00019-1,0,4380_7778208_1090110,4380_164 -4380_77938,285,4380_94603,Galway,48364-00009-1,0,4380_7778208_510302,4380_1608 -4380_77938,286,4380_94604,Galway,48360-00010-1,0,4380_7778208_510302,4380_1608 -4380_77938,297,4380_94605,Galway,48370-00008-1,0,4380_7778208_510302,4380_1608 -4380_77938,287,4380_94606,Galway,48358-00012-1,0,4380_7778208_510302,4380_1608 -4380_77938,288,4380_94607,Galway,48366-00011-1,0,4380_7778208_510302,4380_1608 -4380_77938,289,4380_94608,Galway,48368-00014-1,0,4380_7778208_510302,4380_1608 -4380_77938,290,4380_94609,Galway,48365-00015-1,0,4380_7778208_510302,4380_1608 -4380_78147,296,4380_9461,Cavan,55472-00021-1,0,4380_7778208_1090905,4380_168 -4380_77938,291,4380_94610,Galway,48362-00013-1,0,4380_7778208_510302,4380_1608 -4380_77938,292,4380_94611,Galway,48361-00016-1,0,4380_7778208_510302,4380_1608 -4380_77938,293,4380_94612,Galway,48367-00017-1,0,4380_7778208_510302,4380_1608 -4380_77938,294,4380_94613,Galway,48359-00018-1,0,4380_7778208_510302,4380_1608 -4380_77938,295,4380_94614,Galway,48369-00019-1,0,4380_7778208_510302,4380_1608 -4380_77938,296,4380_94615,Galway,48363-00021-1,0,4380_7778208_510302,4380_1608 -4380_77938,285,4380_94623,Galway,48399-00009-1,0,4380_7778208_510303,4380_1608 -4380_77938,286,4380_94624,Galway,48408-00010-1,0,4380_7778208_510303,4380_1608 -4380_77938,297,4380_94625,Galway,48407-00008-1,0,4380_7778208_510303,4380_1608 -4380_77938,287,4380_94626,Galway,48401-00012-1,0,4380_7778208_510303,4380_1608 -4380_77938,288,4380_94627,Galway,48397-00011-1,0,4380_7778208_510303,4380_1608 -4380_77938,289,4380_94628,Galway,48403-00014-1,0,4380_7778208_510303,4380_1608 -4380_77938,290,4380_94629,Galway,48400-00015-1,0,4380_7778208_510303,4380_1608 -4380_77938,291,4380_94630,Galway,48405-00013-1,0,4380_7778208_510303,4380_1608 -4380_77938,292,4380_94631,Galway,48409-00016-1,0,4380_7778208_510303,4380_1608 -4380_77938,293,4380_94632,Galway,48398-00017-1,0,4380_7778208_510303,4380_1608 -4380_77938,294,4380_94633,Galway,48402-00018-1,0,4380_7778208_510303,4380_1608 -4380_77938,295,4380_94634,Galway,48404-00019-1,0,4380_7778208_510303,4380_1608 -4380_77938,296,4380_94635,Galway,48406-00021-1,0,4380_7778208_510303,4380_1608 -4380_77938,285,4380_94643,Galway,48429-00009-1,0,4380_7778208_510304,4380_1608 -4380_77938,286,4380_94644,Galway,48425-00010-1,0,4380_7778208_510304,4380_1608 -4380_77938,297,4380_94645,Galway,48435-00008-1,0,4380_7778208_510304,4380_1608 -4380_77938,287,4380_94646,Galway,48423-00012-1,0,4380_7778208_510304,4380_1608 -4380_77938,288,4380_94647,Galway,48431-00011-1,0,4380_7778208_510304,4380_1608 -4380_77938,289,4380_94648,Galway,48433-00014-1,0,4380_7778208_510304,4380_1608 -4380_77938,290,4380_94649,Galway,48430-00015-1,0,4380_7778208_510304,4380_1608 -4380_77938,291,4380_94650,Galway,48427-00013-1,0,4380_7778208_510304,4380_1608 -4380_77938,292,4380_94651,Galway,48426-00016-1,0,4380_7778208_510304,4380_1608 -4380_77938,293,4380_94652,Galway,48432-00017-1,0,4380_7778208_510304,4380_1608 -4380_77938,294,4380_94653,Galway,48424-00018-1,0,4380_7778208_510304,4380_1608 -4380_77938,295,4380_94654,Galway,48434-00019-1,0,4380_7778208_510304,4380_1608 -4380_77938,296,4380_94655,Galway,48428-00021-1,0,4380_7778208_510304,4380_1608 -4380_77938,285,4380_94663,Galway,48479-00009-1,0,4380_7778208_510401,4380_1608 -4380_77938,286,4380_94664,Galway,48477-00010-1,0,4380_7778208_510401,4380_1608 -4380_77938,297,4380_94665,Galway,48485-00008-1,0,4380_7778208_510401,4380_1608 -4380_77938,287,4380_94666,Galway,48475-00012-1,0,4380_7778208_510401,4380_1608 -4380_77938,288,4380_94667,Galway,48486-00011-1,0,4380_7778208_510401,4380_1608 -4380_77938,289,4380_94668,Galway,48483-00014-1,0,4380_7778208_510401,4380_1608 -4380_77938,290,4380_94669,Galway,48480-00015-1,0,4380_7778208_510401,4380_1608 -4380_77938,291,4380_94670,Galway,48481-00013-1,0,4380_7778208_510401,4380_1608 -4380_77938,292,4380_94671,Galway,48478-00016-1,0,4380_7778208_510401,4380_1608 -4380_77938,293,4380_94672,Galway,48487-00017-1,0,4380_7778208_510401,4380_1608 -4380_77938,294,4380_94673,Galway,48476-00018-1,0,4380_7778208_510401,4380_1608 -4380_77938,295,4380_94674,Galway,48484-00019-1,0,4380_7778208_510401,4380_1608 -4380_77938,296,4380_94675,Galway,48482-00021-1,0,4380_7778208_510401,4380_1608 -4380_77938,285,4380_94683,Galway,48570-00009-1,0,4380_7778208_510403,4380_1608 -4380_77938,286,4380_94684,Galway,48568-00010-1,0,4380_7778208_510403,4380_1608 -4380_77938,297,4380_94685,Galway,48576-00008-1,0,4380_7778208_510403,4380_1608 -4380_77938,287,4380_94686,Galway,48566-00012-1,0,4380_7778208_510403,4380_1608 -4380_77938,288,4380_94687,Galway,48577-00011-1,0,4380_7778208_510403,4380_1608 -4380_77938,289,4380_94688,Galway,48574-00014-1,0,4380_7778208_510403,4380_1608 -4380_77938,290,4380_94689,Galway,48571-00015-1,0,4380_7778208_510403,4380_1608 -4380_78147,285,4380_9469,Cavan,6781-00009-1,0,4380_7778208_1090901,4380_164 -4380_77938,291,4380_94690,Galway,48572-00013-1,0,4380_7778208_510403,4380_1608 -4380_77938,292,4380_94691,Galway,48569-00016-1,0,4380_7778208_510403,4380_1608 -4380_77938,293,4380_94692,Galway,48578-00017-1,0,4380_7778208_510403,4380_1608 -4380_77938,294,4380_94693,Galway,48567-00018-1,0,4380_7778208_510403,4380_1608 -4380_77938,295,4380_94694,Galway,48575-00019-1,0,4380_7778208_510403,4380_1608 -4380_77938,296,4380_94695,Galway,48573-00021-1,0,4380_7778208_510403,4380_1608 -4380_78113,288,4380_947,Dublin via Airport,49733-00011-1,1,4380_7778208_1000904,4380_18 -4380_78147,286,4380_9470,Cavan,6787-00010-1,0,4380_7778208_1090901,4380_164 -4380_77938,285,4380_94703,Galway,48302-00009-1,0,4380_7778208_510204,4380_1608 -4380_77938,286,4380_94704,Galway,48304-00010-1,0,4380_7778208_510204,4380_1608 -4380_77938,297,4380_94705,Galway,48208-00008-1,0,4380_7778208_510201,4380_1608 -4380_77938,287,4380_94706,Galway,48300-00012-1,0,4380_7778208_510204,4380_1608 -4380_77938,288,4380_94707,Galway,48298-00011-1,0,4380_7778208_510204,4380_1608 -4380_77938,289,4380_94708,Galway,48296-00014-1,0,4380_7778208_510204,4380_1608 -4380_77938,290,4380_94709,Galway,48303-00015-1,0,4380_7778208_510204,4380_1608 -4380_78147,297,4380_9471,Cavan,6822-00008-1,0,4380_7778208_1090901,4380_166 -4380_77938,291,4380_94710,Galway,48209-00013-1,0,4380_7778208_510201,4380_1608 -4380_77938,292,4380_94711,Galway,48305-00016-1,0,4380_7778208_510204,4380_1608 -4380_77938,293,4380_94712,Galway,48299-00017-1,0,4380_7778208_510204,4380_1608 -4380_77938,294,4380_94713,Galway,48301-00018-1,0,4380_7778208_510204,4380_1608 -4380_77938,295,4380_94714,Galway,48297-00019-1,0,4380_7778208_510204,4380_1608 -4380_77938,296,4380_94715,Galway,48210-00021-1,0,4380_7778208_510201,4380_1608 -4380_78147,288,4380_9472,Cavan,6793-00011-1,0,4380_7778208_1090901,4380_164 -4380_77938,285,4380_94723,Limerick Bus Station,48241-00009-1,0,4380_7778208_510202,4380_1609 -4380_77938,286,4380_94724,Limerick Bus Station,48239-00010-1,0,4380_7778208_510202,4380_1609 -4380_77938,297,4380_94725,Limerick Bus Station,48247-00008-1,0,4380_7778208_510202,4380_1609 -4380_77938,287,4380_94726,Limerick Bus Station,48237-00012-1,0,4380_7778208_510202,4380_1609 -4380_77938,288,4380_94727,Limerick Bus Station,48248-00011-1,0,4380_7778208_510202,4380_1609 -4380_77938,289,4380_94728,Limerick Bus Station,48245-00014-1,0,4380_7778208_510202,4380_1609 -4380_77938,290,4380_94729,Limerick Bus Station,48242-00015-1,0,4380_7778208_510202,4380_1609 -4380_78147,287,4380_9473,Cavan,6799-00012-1,0,4380_7778208_1090901,4380_164 -4380_77938,291,4380_94730,Limerick Bus Station,48243-00013-1,0,4380_7778208_510202,4380_1609 -4380_77938,292,4380_94731,Limerick Bus Station,48240-00016-1,0,4380_7778208_510202,4380_1609 -4380_77938,293,4380_94732,Limerick Bus Station,48249-00017-1,0,4380_7778208_510202,4380_1609 -4380_77938,294,4380_94733,Limerick Bus Station,48238-00018-1,0,4380_7778208_510202,4380_1609 -4380_77938,295,4380_94734,Limerick Bus Station,48246-00019-1,0,4380_7778208_510202,4380_1609 -4380_77938,296,4380_94735,Limerick Bus Station,48244-00021-1,0,4380_7778208_510202,4380_1609 -4380_78147,289,4380_9474,Cavan,6775-00014-1,0,4380_7778208_1090901,4380_164 -4380_77938,285,4380_94743,Limerick Bus Station,48534-00009-1,0,4380_7778208_510402,4380_1609 -4380_77938,286,4380_94744,Limerick Bus Station,48529-00010-1,0,4380_7778208_510402,4380_1609 -4380_77938,297,4380_94745,Limerick Bus Station,48533-00008-1,0,4380_7778208_510402,4380_1609 -4380_77938,287,4380_94746,Limerick Bus Station,48538-00012-1,0,4380_7778208_510402,4380_1609 -4380_77938,288,4380_94747,Limerick Bus Station,48536-00011-1,0,4380_7778208_510402,4380_1609 -4380_77938,289,4380_94748,Limerick Bus Station,48527-00014-1,0,4380_7778208_510402,4380_1609 -4380_77938,290,4380_94749,Limerick Bus Station,48535-00015-1,0,4380_7778208_510402,4380_1609 -4380_78147,290,4380_9475,Cavan,55356-00015-1,0,4380_7778208_1090901,4380_164 -4380_77938,291,4380_94750,Limerick Bus Station,48531-00013-1,0,4380_7778208_510402,4380_1609 -4380_77938,292,4380_94751,Limerick Bus Station,48530-00016-1,0,4380_7778208_510402,4380_1609 -4380_77938,293,4380_94752,Limerick Bus Station,48537-00017-1,0,4380_7778208_510402,4380_1609 -4380_77938,294,4380_94753,Limerick Bus Station,48539-00018-1,0,4380_7778208_510402,4380_1609 -4380_77938,295,4380_94754,Limerick Bus Station,48528-00019-1,0,4380_7778208_510402,4380_1609 -4380_77938,296,4380_94755,Limerick Bus Station,48532-00021-1,0,4380_7778208_510402,4380_1609 -4380_78147,291,4380_9476,Cavan,5860-00013-1,0,4380_7778208_1090110,4380_168 -4380_77938,285,4380_94763,Cork,48313-00009-1,1,4380_7778208_510301,4380_1611 -4380_77938,286,4380_94764,Cork,48317-00010-1,1,4380_7778208_510301,4380_1611 -4380_77938,297,4380_94765,Cork,48306-00008-1,1,4380_7778208_510301,4380_1611 -4380_77938,287,4380_94766,Cork,48311-00012-1,1,4380_7778208_510301,4380_1611 -4380_77938,288,4380_94767,Cork,48315-00011-1,1,4380_7778208_510301,4380_1611 -4380_77938,289,4380_94768,Cork,48307-00014-1,1,4380_7778208_510301,4380_1611 -4380_77938,290,4380_94769,Cork,48314-00015-1,1,4380_7778208_510301,4380_1611 -4380_78147,292,4380_9477,Cavan,55353-00016-1,0,4380_7778208_1090901,4380_164 -4380_77938,291,4380_94770,Cork,48309-00013-1,1,4380_7778208_510301,4380_1611 -4380_77938,292,4380_94771,Cork,48318-00016-1,1,4380_7778208_510301,4380_1611 -4380_77938,293,4380_94772,Cork,48316-00017-1,1,4380_7778208_510301,4380_1611 -4380_77938,294,4380_94773,Cork,48312-00018-1,1,4380_7778208_510301,4380_1611 -4380_77938,295,4380_94774,Cork,48308-00019-1,1,4380_7778208_510301,4380_1611 -4380_77938,296,4380_94775,Cork,48310-00021-1,1,4380_7778208_510301,4380_1611 -4380_78147,293,4380_9478,Cavan,55357-00017-1,0,4380_7778208_1090901,4380_164 -4380_77938,285,4380_94783,Cork,48497-00009-1,1,4380_7778208_510402,4380_1613 -4380_77938,286,4380_94784,Cork,48499-00010-1,1,4380_7778208_510402,4380_1613 -4380_77938,297,4380_94785,Cork,48488-00008-1,1,4380_7778208_510402,4380_1613 -4380_77938,287,4380_94786,Cork,48493-00012-1,1,4380_7778208_510402,4380_1613 -4380_77938,288,4380_94787,Cork,48495-00011-1,1,4380_7778208_510402,4380_1613 -4380_77938,289,4380_94788,Cork,48489-00014-1,1,4380_7778208_510402,4380_1613 -4380_77938,290,4380_94789,Cork,48498-00015-1,1,4380_7778208_510402,4380_1613 -4380_78147,294,4380_9479,Cavan,55355-00018-1,0,4380_7778208_1090901,4380_164 -4380_77938,291,4380_94790,Cork,48491-00013-1,1,4380_7778208_510402,4380_1613 -4380_77938,292,4380_94791,Cork,48500-00016-1,1,4380_7778208_510402,4380_1613 -4380_77938,293,4380_94792,Cork,48496-00017-1,1,4380_7778208_510402,4380_1613 -4380_77938,294,4380_94793,Cork,48494-00018-1,1,4380_7778208_510402,4380_1613 -4380_77938,295,4380_94794,Cork,48490-00019-1,1,4380_7778208_510402,4380_1613 -4380_77938,296,4380_94795,Cork,48492-00021-1,1,4380_7778208_510402,4380_1613 -4380_78113,289,4380_948,Dublin via Airport,49731-00014-1,1,4380_7778208_1000904,4380_18 -4380_78147,295,4380_9480,Cavan,55354-00019-1,0,4380_7778208_1090901,4380_164 -4380_77938,285,4380_94803,Cork,48352-00009-1,1,4380_7778208_510302,4380_1611 -4380_77938,286,4380_94804,Cork,48356-00010-1,1,4380_7778208_510302,4380_1611 -4380_77938,297,4380_94805,Cork,48345-00008-1,1,4380_7778208_510302,4380_1611 -4380_77938,287,4380_94806,Cork,48350-00012-1,1,4380_7778208_510302,4380_1611 -4380_77938,288,4380_94807,Cork,48354-00011-1,1,4380_7778208_510302,4380_1611 -4380_77938,289,4380_94808,Cork,48346-00014-1,1,4380_7778208_510302,4380_1611 -4380_77938,290,4380_94809,Cork,48353-00015-1,1,4380_7778208_510302,4380_1611 -4380_78147,296,4380_9481,Cavan,55125-00021-1,0,4380_7778208_1090110,4380_168 -4380_77938,291,4380_94810,Cork,48348-00013-1,1,4380_7778208_510302,4380_1611 -4380_77938,292,4380_94811,Cork,48357-00016-1,1,4380_7778208_510302,4380_1611 -4380_77938,293,4380_94812,Cork,48355-00017-1,1,4380_7778208_510302,4380_1611 -4380_77938,294,4380_94813,Cork,48351-00018-1,1,4380_7778208_510302,4380_1611 -4380_77938,295,4380_94814,Cork,48347-00019-1,1,4380_7778208_510302,4380_1611 -4380_77938,296,4380_94815,Cork,48349-00021-1,1,4380_7778208_510302,4380_1611 -4380_77938,285,4380_94823,Cork,48586-00009-1,1,4380_7778208_510404,4380_1613 -4380_77938,286,4380_94824,Cork,48590-00010-1,1,4380_7778208_510404,4380_1613 -4380_77938,297,4380_94825,Cork,48579-00008-1,1,4380_7778208_510404,4380_1613 -4380_77938,287,4380_94826,Cork,48584-00012-1,1,4380_7778208_510404,4380_1613 -4380_77938,288,4380_94827,Cork,48588-00011-1,1,4380_7778208_510404,4380_1613 -4380_77938,289,4380_94828,Cork,48580-00014-1,1,4380_7778208_510404,4380_1613 -4380_77938,290,4380_94829,Cork,48587-00015-1,1,4380_7778208_510404,4380_1613 -4380_77938,291,4380_94830,Cork,48582-00013-1,1,4380_7778208_510404,4380_1613 -4380_77938,292,4380_94831,Cork,48591-00016-1,1,4380_7778208_510404,4380_1613 -4380_77938,293,4380_94832,Cork,48589-00017-1,1,4380_7778208_510404,4380_1613 -4380_77938,294,4380_94833,Cork,48585-00018-1,1,4380_7778208_510404,4380_1613 -4380_77938,295,4380_94834,Cork,48581-00019-1,1,4380_7778208_510404,4380_1613 -4380_77938,296,4380_94835,Cork,48583-00021-1,1,4380_7778208_510404,4380_1613 -4380_77938,285,4380_94843,Cork,48389-00009-1,1,4380_7778208_510303,4380_1611 -4380_77938,286,4380_94844,Cork,48393-00010-1,1,4380_7778208_510303,4380_1611 -4380_77938,297,4380_94845,Cork,48384-00008-1,1,4380_7778208_510303,4380_1611 -4380_77938,287,4380_94846,Cork,48391-00012-1,1,4380_7778208_510303,4380_1611 -4380_77938,288,4380_94847,Cork,48395-00011-1,1,4380_7778208_510303,4380_1611 -4380_77938,289,4380_94848,Cork,48385-00014-1,1,4380_7778208_510303,4380_1611 -4380_77938,290,4380_94849,Cork,48390-00015-1,1,4380_7778208_510303,4380_1611 -4380_77938,291,4380_94850,Cork,48387-00013-1,1,4380_7778208_510303,4380_1611 -4380_77938,292,4380_94851,Cork,48394-00016-1,1,4380_7778208_510303,4380_1611 -4380_77938,293,4380_94852,Cork,48396-00017-1,1,4380_7778208_510303,4380_1611 -4380_77938,294,4380_94853,Cork,48392-00018-1,1,4380_7778208_510303,4380_1611 -4380_77938,295,4380_94854,Cork,48386-00019-1,1,4380_7778208_510303,4380_1611 -4380_77938,296,4380_94855,Cork,48388-00021-1,1,4380_7778208_510303,4380_1611 -4380_77938,285,4380_94863,Cork,48417-00009-1,1,4380_7778208_510304,4380_1611 -4380_77938,286,4380_94864,Cork,48421-00010-1,1,4380_7778208_510304,4380_1611 -4380_77938,297,4380_94865,Cork,48410-00008-1,1,4380_7778208_510304,4380_1611 -4380_77938,287,4380_94866,Cork,48415-00012-1,1,4380_7778208_510304,4380_1611 -4380_77938,288,4380_94867,Cork,48419-00011-1,1,4380_7778208_510304,4380_1611 -4380_77938,289,4380_94868,Cork,48411-00014-1,1,4380_7778208_510304,4380_1611 -4380_77938,290,4380_94869,Cork,48418-00015-1,1,4380_7778208_510304,4380_1611 -4380_78147,285,4380_9487,Dublin,6776-00009-1,1,4380_7778208_1090901,4380_178 -4380_77938,291,4380_94870,Cork,48413-00013-1,1,4380_7778208_510304,4380_1611 -4380_77938,292,4380_94871,Cork,48422-00016-1,1,4380_7778208_510304,4380_1611 -4380_77938,293,4380_94872,Cork,48420-00017-1,1,4380_7778208_510304,4380_1611 -4380_77938,294,4380_94873,Cork,48416-00018-1,1,4380_7778208_510304,4380_1611 -4380_77938,295,4380_94874,Cork,48412-00019-1,1,4380_7778208_510304,4380_1611 -4380_77938,296,4380_94875,Cork,48414-00021-1,1,4380_7778208_510304,4380_1611 -4380_78147,286,4380_9488,Dublin,6782-00010-1,1,4380_7778208_1090901,4380_178 -4380_77938,285,4380_94883,Cork,48472-00009-1,1,4380_7778208_510401,4380_1611 -4380_77938,286,4380_94884,Cork,48462-00010-1,1,4380_7778208_510401,4380_1611 -4380_77938,297,4380_94885,Cork,48474-00008-1,1,4380_7778208_510401,4380_1611 -4380_77938,287,4380_94886,Cork,48468-00012-1,1,4380_7778208_510401,4380_1611 -4380_77938,288,4380_94887,Cork,48466-00011-1,1,4380_7778208_510401,4380_1611 -4380_77938,289,4380_94888,Cork,48464-00014-1,1,4380_7778208_510401,4380_1611 -4380_77938,290,4380_94889,Cork,48473-00015-1,1,4380_7778208_510401,4380_1611 -4380_78147,288,4380_9489,Dublin,6788-00011-1,1,4380_7778208_1090901,4380_178 -4380_77938,291,4380_94890,Cork,48470-00013-1,1,4380_7778208_510401,4380_1611 -4380_77938,292,4380_94891,Cork,48463-00016-1,1,4380_7778208_510401,4380_1611 -4380_77938,293,4380_94892,Cork,48467-00017-1,1,4380_7778208_510401,4380_1611 -4380_77938,294,4380_94893,Cork,48469-00018-1,1,4380_7778208_510401,4380_1611 -4380_77938,295,4380_94894,Cork,48465-00019-1,1,4380_7778208_510401,4380_1611 -4380_77938,296,4380_94895,Cork,48471-00021-1,1,4380_7778208_510401,4380_1611 -4380_78113,290,4380_949,Dublin via Airport,49740-00015-1,1,4380_7778208_1000904,4380_18 -4380_78147,287,4380_9490,Dublin,6794-00012-1,1,4380_7778208_1090901,4380_178 -4380_77938,285,4380_94903,Cork,48563-00009-1,1,4380_7778208_510403,4380_1611 -4380_77938,286,4380_94904,Cork,48553-00010-1,1,4380_7778208_510403,4380_1611 -4380_77938,297,4380_94905,Cork,48565-00008-1,1,4380_7778208_510403,4380_1611 -4380_77938,287,4380_94906,Cork,48559-00012-1,1,4380_7778208_510403,4380_1611 -4380_77938,288,4380_94907,Cork,48557-00011-1,1,4380_7778208_510403,4380_1611 -4380_77938,289,4380_94908,Cork,48555-00014-1,1,4380_7778208_510403,4380_1611 -4380_77938,290,4380_94909,Cork,48564-00015-1,1,4380_7778208_510403,4380_1611 -4380_78147,289,4380_9491,Dublin,6770-00014-1,1,4380_7778208_1090901,4380_178 -4380_77938,291,4380_94910,Cork,48561-00013-1,1,4380_7778208_510403,4380_1611 -4380_77938,292,4380_94911,Cork,48554-00016-1,1,4380_7778208_510403,4380_1611 -4380_77938,293,4380_94912,Cork,48558-00017-1,1,4380_7778208_510403,4380_1611 -4380_77938,294,4380_94913,Cork,48560-00018-1,1,4380_7778208_510403,4380_1611 -4380_77938,295,4380_94914,Cork,48556-00019-1,1,4380_7778208_510403,4380_1611 -4380_77938,296,4380_94915,Cork,48562-00021-1,1,4380_7778208_510403,4380_1611 -4380_78147,290,4380_9492,Dublin,55320-00015-1,1,4380_7778208_1090901,4380_178 -4380_77938,285,4380_94923,Cork,48286-00009-1,1,4380_7778208_510204,4380_1611 -4380_77938,286,4380_94924,Cork,48292-00010-1,1,4380_7778208_510204,4380_1611 -4380_77938,297,4380_94925,Cork,48207-00008-1,1,4380_7778208_510201,4380_1611 -4380_77938,287,4380_94926,Cork,48288-00012-1,1,4380_7778208_510204,4380_1611 -4380_77938,288,4380_94927,Cork,48290-00011-1,1,4380_7778208_510204,4380_1611 -4380_77938,289,4380_94928,Cork,48294-00014-1,1,4380_7778208_510204,4380_1611 -4380_77938,290,4380_94929,Cork,48287-00015-1,1,4380_7778208_510204,4380_1611 -4380_78147,292,4380_9493,Dublin,55319-00016-1,1,4380_7778208_1090901,4380_178 -4380_77938,291,4380_94930,Cork,48205-00013-1,1,4380_7778208_510201,4380_1611 -4380_77938,292,4380_94931,Cork,48293-00016-1,1,4380_7778208_510204,4380_1611 -4380_77938,293,4380_94932,Cork,48291-00017-1,1,4380_7778208_510204,4380_1611 -4380_77938,294,4380_94933,Cork,48289-00018-1,1,4380_7778208_510204,4380_1611 -4380_77938,295,4380_94934,Cork,48295-00019-1,1,4380_7778208_510204,4380_1611 -4380_77938,296,4380_94935,Cork,48206-00021-1,1,4380_7778208_510201,4380_1611 -4380_78147,293,4380_9494,Dublin,55322-00017-1,1,4380_7778208_1090901,4380_178 -4380_77938,285,4380_94943,Cork,48235-00009-1,1,4380_7778208_510202,4380_1611 -4380_77938,286,4380_94944,Cork,48224-00010-1,1,4380_7778208_510202,4380_1611 -4380_77938,297,4380_94945,Cork,48228-00008-1,1,4380_7778208_510202,4380_1611 -4380_77938,287,4380_94946,Cork,48231-00012-1,1,4380_7778208_510202,4380_1611 -4380_77938,288,4380_94947,Cork,48229-00011-1,1,4380_7778208_510202,4380_1611 -4380_77938,289,4380_94948,Cork,48226-00014-1,1,4380_7778208_510202,4380_1611 -4380_77938,290,4380_94949,Cork,48236-00015-1,1,4380_7778208_510202,4380_1611 -4380_78147,294,4380_9495,Dublin,55321-00018-1,1,4380_7778208_1090901,4380_178 -4380_77938,291,4380_94950,Cork,48233-00013-1,1,4380_7778208_510202,4380_1611 -4380_77938,292,4380_94951,Cork,48225-00016-1,1,4380_7778208_510202,4380_1611 -4380_77938,293,4380_94952,Cork,48230-00017-1,1,4380_7778208_510202,4380_1611 -4380_77938,294,4380_94953,Cork,48232-00018-1,1,4380_7778208_510202,4380_1611 -4380_77938,295,4380_94954,Cork,48227-00019-1,1,4380_7778208_510202,4380_1611 -4380_77938,296,4380_94955,Cork,48234-00021-1,1,4380_7778208_510202,4380_1611 -4380_78147,295,4380_9496,Dublin,55323-00019-1,1,4380_7778208_1090901,4380_178 -4380_77938,285,4380_94963,Cork,48265-00009-1,1,4380_7778208_510203,4380_1611 -4380_77938,286,4380_94964,Cork,48274-00010-1,1,4380_7778208_510203,4380_1611 -4380_77938,297,4380_94965,Cork,48273-00008-1,1,4380_7778208_510203,4380_1611 -4380_77938,287,4380_94966,Cork,48267-00012-1,1,4380_7778208_510203,4380_1611 -4380_77938,288,4380_94967,Cork,48263-00011-1,1,4380_7778208_510203,4380_1611 -4380_77938,289,4380_94968,Cork,48269-00014-1,1,4380_7778208_510203,4380_1611 -4380_77938,290,4380_94969,Cork,48266-00015-1,1,4380_7778208_510203,4380_1611 -4380_77938,291,4380_94970,Cork,48271-00013-1,1,4380_7778208_510203,4380_1611 -4380_77938,292,4380_94971,Cork,48275-00016-1,1,4380_7778208_510203,4380_1611 -4380_77938,293,4380_94972,Cork,48264-00017-1,1,4380_7778208_510203,4380_1611 -4380_77938,294,4380_94973,Cork,48268-00018-1,1,4380_7778208_510203,4380_1611 -4380_77938,295,4380_94974,Cork,48270-00019-1,1,4380_7778208_510203,4380_1611 -4380_77938,296,4380_94975,Cork,48272-00021-1,1,4380_7778208_510203,4380_1611 -4380_78147,291,4380_9498,Dublin,6808-00013-1,1,4380_7778208_1090901,4380_176 -4380_77938,285,4380_94983,Cork,48520-00009-1,1,4380_7778208_510402,4380_1611 -4380_77938,286,4380_94984,Cork,48516-00010-1,1,4380_7778208_510402,4380_1611 -4380_77938,297,4380_94985,Cork,48526-00008-1,1,4380_7778208_510402,4380_1611 -4380_77938,287,4380_94986,Cork,48524-00012-1,1,4380_7778208_510402,4380_1611 -4380_77938,288,4380_94987,Cork,48514-00011-1,1,4380_7778208_510402,4380_1611 -4380_77938,289,4380_94988,Cork,48518-00014-1,1,4380_7778208_510402,4380_1611 -4380_77938,290,4380_94989,Cork,48521-00015-1,1,4380_7778208_510402,4380_1611 -4380_78147,296,4380_9499,Dublin,55324-00021-1,1,4380_7778208_1090901,4380_176 -4380_77938,291,4380_94990,Cork,48522-00013-1,1,4380_7778208_510402,4380_1611 -4380_77938,292,4380_94991,Cork,48517-00016-1,1,4380_7778208_510402,4380_1611 -4380_77938,293,4380_94992,Cork,48515-00017-1,1,4380_7778208_510402,4380_1611 -4380_77938,294,4380_94993,Cork,48525-00018-1,1,4380_7778208_510402,4380_1611 -4380_77938,295,4380_94994,Cork,48519-00019-1,1,4380_7778208_510402,4380_1611 -4380_77938,296,4380_94995,Cork,48523-00021-1,1,4380_7778208_510402,4380_1611 -4380_77946,287,4380_95,Dundalk,50473-00012-1,0,4380_7778208_1000915,4380_1 -4380_78113,291,4380_950,Dublin via Airport,49741-00013-1,1,4380_7778208_1000904,4380_20 -4380_77938,285,4380_95003,Cork,48615-00009-1,1,4380_7778208_510404,4380_1611 -4380_77938,286,4380_95004,Cork,48609-00010-1,1,4380_7778208_510404,4380_1611 -4380_77938,297,4380_95005,Cork,48617-00008-1,1,4380_7778208_510404,4380_1611 -4380_77938,287,4380_95006,Cork,48605-00012-1,1,4380_7778208_510404,4380_1611 -4380_77938,288,4380_95007,Cork,48607-00011-1,1,4380_7778208_510404,4380_1611 -4380_77938,289,4380_95008,Cork,48613-00014-1,1,4380_7778208_510404,4380_1611 -4380_77938,290,4380_95009,Cork,48616-00015-1,1,4380_7778208_510404,4380_1611 -4380_77938,291,4380_95010,Cork,48611-00013-1,1,4380_7778208_510404,4380_1611 -4380_77938,292,4380_95011,Cork,48610-00016-1,1,4380_7778208_510404,4380_1611 -4380_77938,293,4380_95012,Cork,48608-00017-1,1,4380_7778208_510404,4380_1611 -4380_77938,294,4380_95013,Cork,48606-00018-1,1,4380_7778208_510404,4380_1611 -4380_77938,295,4380_95014,Cork,48614-00019-1,1,4380_7778208_510404,4380_1611 -4380_77938,296,4380_95015,Cork,48612-00021-1,1,4380_7778208_510404,4380_1611 -4380_77938,285,4380_95023,Cork,48342-00009-1,1,4380_7778208_510301,4380_1611 -4380_77938,286,4380_95024,Cork,48336-00010-1,1,4380_7778208_510301,4380_1611 -4380_77938,297,4380_95025,Cork,48344-00008-1,1,4380_7778208_510301,4380_1611 -4380_77938,287,4380_95026,Cork,48332-00012-1,1,4380_7778208_510301,4380_1611 -4380_77938,288,4380_95027,Cork,48334-00011-1,1,4380_7778208_510301,4380_1611 -4380_77938,289,4380_95028,Cork,48340-00014-1,1,4380_7778208_510301,4380_1611 -4380_77938,290,4380_95029,Cork,48343-00015-1,1,4380_7778208_510301,4380_1611 -4380_77938,291,4380_95030,Cork,48338-00013-1,1,4380_7778208_510301,4380_1611 -4380_77938,292,4380_95031,Cork,48337-00016-1,1,4380_7778208_510301,4380_1611 -4380_77938,293,4380_95032,Cork,48335-00017-1,1,4380_7778208_510301,4380_1611 -4380_77938,294,4380_95033,Cork,48333-00018-1,1,4380_7778208_510301,4380_1611 -4380_77938,295,4380_95034,Cork,48341-00019-1,1,4380_7778208_510301,4380_1611 -4380_77938,296,4380_95035,Cork,48339-00021-1,1,4380_7778208_510301,4380_1611 -4380_77938,285,4380_95043,Limerick Bus Station,48381-00009-1,1,4380_7778208_510302,4380_1612 -4380_77938,286,4380_95044,Limerick Bus Station,48375-00010-1,1,4380_7778208_510302,4380_1612 -4380_77938,297,4380_95045,Limerick Bus Station,48383-00008-1,1,4380_7778208_510302,4380_1612 -4380_77938,287,4380_95046,Limerick Bus Station,48371-00012-1,1,4380_7778208_510302,4380_1612 -4380_77938,288,4380_95047,Limerick Bus Station,48373-00011-1,1,4380_7778208_510302,4380_1612 -4380_77938,289,4380_95048,Limerick Bus Station,48379-00014-1,1,4380_7778208_510302,4380_1612 -4380_77938,290,4380_95049,Limerick Bus Station,48382-00015-1,1,4380_7778208_510302,4380_1612 -4380_78147,285,4380_9505,St. Stephen's Green,6828-00009-1,1,4380_7778208_1090902,4380_179 -4380_77938,291,4380_95050,Limerick Bus Station,48377-00013-1,1,4380_7778208_510302,4380_1612 -4380_77938,292,4380_95051,Limerick Bus Station,48376-00016-1,1,4380_7778208_510302,4380_1612 -4380_77938,293,4380_95052,Limerick Bus Station,48374-00017-1,1,4380_7778208_510302,4380_1612 -4380_77938,294,4380_95053,Limerick Bus Station,48372-00018-1,1,4380_7778208_510302,4380_1612 -4380_77938,295,4380_95054,Limerick Bus Station,48380-00019-1,1,4380_7778208_510302,4380_1612 -4380_77938,296,4380_95055,Limerick Bus Station,48378-00021-1,1,4380_7778208_510302,4380_1612 -4380_78147,286,4380_9506,St. Stephen's Green,6833-00010-1,1,4380_7778208_1090902,4380_179 -4380_77938,285,4380_95063,Limerick Bus Station,48445-00009-1,1,4380_7778208_510304,4380_1612 -4380_77938,286,4380_95064,Limerick Bus Station,48440-00010-1,1,4380_7778208_510304,4380_1612 -4380_77938,297,4380_95065,Limerick Bus Station,48444-00008-1,1,4380_7778208_510304,4380_1612 -4380_77938,287,4380_95066,Limerick Bus Station,48436-00012-1,1,4380_7778208_510304,4380_1612 -4380_77938,288,4380_95067,Limerick Bus Station,48438-00011-1,1,4380_7778208_510304,4380_1612 -4380_77938,289,4380_95068,Limerick Bus Station,48447-00014-1,1,4380_7778208_510304,4380_1612 -4380_77938,290,4380_95069,Limerick Bus Station,48446-00015-1,1,4380_7778208_510304,4380_1612 -4380_78147,288,4380_9507,St. Stephen's Green,6838-00011-1,1,4380_7778208_1090902,4380_179 -4380_77938,291,4380_95070,Limerick Bus Station,48442-00013-1,1,4380_7778208_510304,4380_1612 -4380_77938,292,4380_95071,Limerick Bus Station,48441-00016-1,1,4380_7778208_510304,4380_1612 -4380_77938,293,4380_95072,Limerick Bus Station,48439-00017-1,1,4380_7778208_510304,4380_1612 -4380_77938,294,4380_95073,Limerick Bus Station,48437-00018-1,1,4380_7778208_510304,4380_1612 -4380_77938,295,4380_95074,Limerick Bus Station,48448-00019-1,1,4380_7778208_510304,4380_1612 -4380_77938,296,4380_95075,Limerick Bus Station,48443-00021-1,1,4380_7778208_510304,4380_1612 -4380_78147,287,4380_9508,St. Stephen's Green,6843-00012-1,1,4380_7778208_1090902,4380_179 -4380_77939,285,4380_95083,Galway,48679-00009-1,0,4380_7778208_521001,4380_1614 -4380_77939,286,4380_95084,Galway,48681-00010-1,0,4380_7778208_521001,4380_1614 -4380_77939,297,4380_95085,Galway,48670-00008-1,0,4380_7778208_521001,4380_1614 -4380_77939,287,4380_95086,Galway,48675-00012-1,0,4380_7778208_521001,4380_1614 -4380_77939,288,4380_95087,Galway,48677-00011-1,0,4380_7778208_521001,4380_1614 -4380_77939,289,4380_95088,Galway,48671-00014-1,0,4380_7778208_521001,4380_1614 -4380_77939,290,4380_95089,Galway,48680-00015-1,0,4380_7778208_521001,4380_1614 -4380_78147,289,4380_9509,St. Stephen's Green,6823-00014-1,1,4380_7778208_1090902,4380_179 -4380_77939,291,4380_95090,Galway,48673-00013-1,0,4380_7778208_521001,4380_1614 -4380_77939,292,4380_95091,Galway,48682-00016-1,0,4380_7778208_521001,4380_1614 -4380_77939,293,4380_95092,Galway,48678-00017-1,0,4380_7778208_521001,4380_1614 -4380_77939,294,4380_95093,Galway,48676-00018-1,0,4380_7778208_521001,4380_1614 -4380_77939,295,4380_95094,Galway,48672-00019-1,0,4380_7778208_521001,4380_1614 -4380_77939,296,4380_95095,Galway,48674-00021-1,0,4380_7778208_521001,4380_1614 -4380_78113,292,4380_951,Dublin via Airport,49736-00016-1,1,4380_7778208_1000904,4380_18 -4380_78147,290,4380_9510,St. Stephen's Green,55361-00015-1,1,4380_7778208_1090902,4380_179 -4380_77939,285,4380_95103,Galway,48731-00009-1,0,4380_7778208_521002,4380_1614 -4380_77939,286,4380_95104,Galway,48733-00010-1,0,4380_7778208_521002,4380_1614 -4380_77939,297,4380_95105,Galway,48722-00008-1,0,4380_7778208_521002,4380_1614 -4380_77939,287,4380_95106,Galway,48727-00012-1,0,4380_7778208_521002,4380_1614 -4380_77939,288,4380_95107,Galway,48729-00011-1,0,4380_7778208_521002,4380_1614 -4380_77939,289,4380_95108,Galway,48723-00014-1,0,4380_7778208_521002,4380_1614 -4380_77939,290,4380_95109,Galway,48732-00015-1,0,4380_7778208_521002,4380_1614 -4380_78147,292,4380_9511,St. Stephen's Green,55362-00016-1,1,4380_7778208_1090902,4380_179 -4380_77939,291,4380_95110,Galway,48725-00013-1,0,4380_7778208_521002,4380_1614 -4380_77939,292,4380_95111,Galway,48734-00016-1,0,4380_7778208_521002,4380_1614 -4380_77939,293,4380_95112,Galway,48730-00017-1,0,4380_7778208_521002,4380_1614 -4380_77939,294,4380_95113,Galway,48728-00018-1,0,4380_7778208_521002,4380_1614 -4380_77939,295,4380_95114,Galway,48724-00019-1,0,4380_7778208_521002,4380_1614 -4380_77939,296,4380_95115,Galway,48726-00021-1,0,4380_7778208_521002,4380_1614 -4380_78147,293,4380_9512,St. Stephen's Green,55360-00017-1,1,4380_7778208_1090902,4380_179 -4380_77939,285,4380_95123,Galway,48633-00009-1,0,4380_7778208_520301,4380_1614 -4380_77939,286,4380_95124,Galway,48636-00010-1,0,4380_7778208_520301,4380_1614 -4380_77939,297,4380_95125,Galway,48635-00008-1,0,4380_7778208_520301,4380_1614 -4380_77939,287,4380_95126,Galway,48642-00012-1,0,4380_7778208_520301,4380_1614 -4380_77939,288,4380_95127,Galway,48631-00011-1,0,4380_7778208_520301,4380_1614 -4380_77939,289,4380_95128,Galway,48640-00014-1,0,4380_7778208_520301,4380_1614 -4380_77939,290,4380_95129,Galway,48634-00015-1,0,4380_7778208_520301,4380_1614 -4380_78147,294,4380_9513,St. Stephen's Green,55359-00018-1,1,4380_7778208_1090902,4380_179 -4380_77939,291,4380_95130,Galway,48638-00013-1,0,4380_7778208_520301,4380_1614 -4380_77939,292,4380_95131,Galway,48637-00016-1,0,4380_7778208_520301,4380_1614 -4380_77939,293,4380_95132,Galway,48632-00017-1,0,4380_7778208_520301,4380_1614 -4380_77939,294,4380_95133,Galway,48643-00018-1,0,4380_7778208_520301,4380_1614 -4380_77939,295,4380_95134,Galway,48641-00019-1,0,4380_7778208_520301,4380_1614 -4380_77939,296,4380_95135,Galway,48639-00021-1,0,4380_7778208_520301,4380_1614 -4380_78147,295,4380_9514,St. Stephen's Green,55358-00019-1,1,4380_7778208_1090902,4380_179 -4380_77939,285,4380_95143,Galway,48701-00009-1,0,4380_7778208_521001,4380_1614 -4380_77939,286,4380_95144,Galway,48705-00010-1,0,4380_7778208_521001,4380_1614 -4380_77939,297,4380_95145,Galway,48698-00008-1,0,4380_7778208_521001,4380_1614 -4380_77939,287,4380_95146,Galway,48703-00012-1,0,4380_7778208_521001,4380_1614 -4380_77939,288,4380_95147,Galway,48696-00011-1,0,4380_7778208_521001,4380_1614 -4380_77939,289,4380_95148,Galway,48699-00014-1,0,4380_7778208_521001,4380_1614 -4380_77939,290,4380_95149,Galway,48702-00015-1,0,4380_7778208_521001,4380_1614 -4380_77939,291,4380_95150,Galway,48707-00013-1,0,4380_7778208_521001,4380_1614 -4380_77939,292,4380_95151,Galway,48706-00016-1,0,4380_7778208_521001,4380_1614 -4380_77939,293,4380_95152,Galway,48697-00017-1,0,4380_7778208_521001,4380_1614 -4380_77939,294,4380_95153,Galway,48704-00018-1,0,4380_7778208_521001,4380_1614 -4380_77939,295,4380_95154,Galway,48700-00019-1,0,4380_7778208_521001,4380_1614 -4380_77939,296,4380_95155,Galway,48708-00021-1,0,4380_7778208_521001,4380_1614 -4380_78147,297,4380_9516,Dublin,6817-00008-1,1,4380_7778208_1090901,4380_176 -4380_77939,285,4380_95163,Galway,48757-00009-1,0,4380_7778208_521002,4380_1614 -4380_77939,286,4380_95164,Galway,48750-00010-1,0,4380_7778208_521002,4380_1614 -4380_77939,297,4380_95165,Galway,48754-00008-1,0,4380_7778208_521002,4380_1614 -4380_77939,287,4380_95166,Galway,48755-00012-1,0,4380_7778208_521002,4380_1614 -4380_77939,288,4380_95167,Galway,48748-00011-1,0,4380_7778208_521002,4380_1614 -4380_77939,289,4380_95168,Galway,48752-00014-1,0,4380_7778208_521002,4380_1614 -4380_77939,290,4380_95169,Galway,48758-00015-1,0,4380_7778208_521002,4380_1614 -4380_77939,291,4380_95170,Galway,48759-00013-1,0,4380_7778208_521002,4380_1614 -4380_77939,292,4380_95171,Galway,48751-00016-1,0,4380_7778208_521002,4380_1614 -4380_77939,293,4380_95172,Galway,48749-00017-1,0,4380_7778208_521002,4380_1614 -4380_77939,294,4380_95173,Galway,48756-00018-1,0,4380_7778208_521002,4380_1614 -4380_77939,295,4380_95174,Galway,48753-00019-1,0,4380_7778208_521002,4380_1614 -4380_77939,296,4380_95175,Galway,48760-00021-1,0,4380_7778208_521002,4380_1614 -4380_78147,291,4380_9518,Dublin,6848-00013-1,1,4380_7778208_1090902,4380_176 -4380_77939,285,4380_95183,Galway,48663-00009-1,0,4380_7778208_520301,4380_1614 -4380_77939,286,4380_95184,Galway,48659-00010-1,0,4380_7778208_520301,4380_1614 -4380_77939,297,4380_95185,Galway,48667-00008-1,0,4380_7778208_520301,4380_1614 -4380_77939,287,4380_95186,Galway,48668-00012-1,0,4380_7778208_520301,4380_1614 -4380_77939,288,4380_95187,Galway,48657-00011-1,0,4380_7778208_520301,4380_1614 -4380_77939,289,4380_95188,Galway,48665-00014-1,0,4380_7778208_520301,4380_1614 -4380_77939,290,4380_95189,Galway,48664-00015-1,0,4380_7778208_520301,4380_1614 -4380_78147,296,4380_9519,Dublin,55363-00021-1,1,4380_7778208_1090902,4380_176 -4380_77939,291,4380_95190,Galway,48661-00013-1,0,4380_7778208_520301,4380_1614 -4380_77939,292,4380_95191,Galway,48660-00016-1,0,4380_7778208_520301,4380_1614 -4380_77939,293,4380_95192,Galway,48658-00017-1,0,4380_7778208_520301,4380_1614 -4380_77939,294,4380_95193,Galway,48669-00018-1,0,4380_7778208_520301,4380_1614 -4380_77939,295,4380_95194,Galway,48666-00019-1,0,4380_7778208_520301,4380_1614 -4380_77939,296,4380_95195,Galway,48662-00021-1,0,4380_7778208_520301,4380_1614 -4380_78113,293,4380_952,Dublin via Airport,49734-00017-1,1,4380_7778208_1000904,4380_18 -4380_77939,285,4380_95203,Ballina,48628-00009-1,1,4380_7778208_520301,4380_1615 -4380_77939,286,4380_95204,Ballina,48626-00010-1,1,4380_7778208_520301,4380_1615 -4380_77939,297,4380_95205,Ballina,48630-00008-1,1,4380_7778208_520301,4380_1615 -4380_77939,287,4380_95206,Ballina,48618-00012-1,1,4380_7778208_520301,4380_1615 -4380_77939,288,4380_95207,Ballina,48622-00011-1,1,4380_7778208_520301,4380_1615 -4380_77939,289,4380_95208,Ballina,48620-00014-1,1,4380_7778208_520301,4380_1615 -4380_77939,290,4380_95209,Ballina,48629-00015-1,1,4380_7778208_520301,4380_1615 -4380_77939,291,4380_95210,Ballina,48624-00013-1,1,4380_7778208_520301,4380_1615 -4380_77939,292,4380_95211,Ballina,48627-00016-1,1,4380_7778208_520301,4380_1615 -4380_77939,293,4380_95212,Ballina,48623-00017-1,1,4380_7778208_520301,4380_1615 -4380_77939,294,4380_95213,Ballina,48619-00018-1,1,4380_7778208_520301,4380_1615 -4380_77939,295,4380_95214,Ballina,48621-00019-1,1,4380_7778208_520301,4380_1615 -4380_77939,296,4380_95215,Ballina,48625-00021-1,1,4380_7778208_520301,4380_1615 -4380_77939,285,4380_95223,Ballina,48687-00009-1,1,4380_7778208_521001,4380_1615 -4380_77939,286,4380_95224,Ballina,48689-00010-1,1,4380_7778208_521001,4380_1615 -4380_77939,297,4380_95225,Ballina,48693-00008-1,1,4380_7778208_521001,4380_1615 -4380_77939,287,4380_95226,Ballina,48683-00012-1,1,4380_7778208_521001,4380_1615 -4380_77939,288,4380_95227,Ballina,48691-00011-1,1,4380_7778208_521001,4380_1615 -4380_77939,289,4380_95228,Ballina,48694-00014-1,1,4380_7778208_521001,4380_1615 -4380_77939,290,4380_95229,Ballina,48688-00015-1,1,4380_7778208_521001,4380_1615 -4380_77939,291,4380_95230,Ballina,48685-00013-1,1,4380_7778208_521001,4380_1615 -4380_77939,292,4380_95231,Ballina,48690-00016-1,1,4380_7778208_521001,4380_1615 -4380_77939,293,4380_95232,Ballina,48692-00017-1,1,4380_7778208_521001,4380_1615 -4380_77939,294,4380_95233,Ballina,48684-00018-1,1,4380_7778208_521001,4380_1615 -4380_77939,295,4380_95234,Ballina,48695-00019-1,1,4380_7778208_521001,4380_1615 -4380_77939,296,4380_95235,Ballina,48686-00021-1,1,4380_7778208_521001,4380_1615 -4380_77939,285,4380_95243,Ballina,48739-00009-1,1,4380_7778208_521002,4380_1615 -4380_77939,286,4380_95244,Ballina,48741-00010-1,1,4380_7778208_521002,4380_1615 -4380_77939,297,4380_95245,Ballina,48745-00008-1,1,4380_7778208_521002,4380_1615 -4380_77939,287,4380_95246,Ballina,48737-00012-1,1,4380_7778208_521002,4380_1615 -4380_77939,288,4380_95247,Ballina,48735-00011-1,1,4380_7778208_521002,4380_1615 -4380_77939,289,4380_95248,Ballina,48746-00014-1,1,4380_7778208_521002,4380_1615 -4380_77939,290,4380_95249,Ballina,48740-00015-1,1,4380_7778208_521002,4380_1615 -4380_78147,285,4380_9525,Dublin,6876-00009-1,1,4380_7778208_1090903,4380_180 -4380_77939,291,4380_95250,Ballina,48743-00013-1,1,4380_7778208_521002,4380_1615 -4380_77939,292,4380_95251,Ballina,48742-00016-1,1,4380_7778208_521002,4380_1615 -4380_77939,293,4380_95252,Ballina,48736-00017-1,1,4380_7778208_521002,4380_1615 -4380_77939,294,4380_95253,Ballina,48738-00018-1,1,4380_7778208_521002,4380_1615 -4380_77939,295,4380_95254,Ballina,48747-00019-1,1,4380_7778208_521002,4380_1615 -4380_77939,296,4380_95255,Ballina,48744-00021-1,1,4380_7778208_521002,4380_1615 -4380_78147,286,4380_9526,Dublin,6881-00010-1,1,4380_7778208_1090903,4380_180 -4380_77939,285,4380_95263,Ballina,48649-00009-1,1,4380_7778208_520301,4380_1615 -4380_77939,286,4380_95264,Ballina,48646-00010-1,1,4380_7778208_520301,4380_1615 -4380_77939,297,4380_95265,Ballina,48648-00008-1,1,4380_7778208_520301,4380_1615 -4380_77939,287,4380_95266,Ballina,48653-00012-1,1,4380_7778208_520301,4380_1615 -4380_77939,288,4380_95267,Ballina,48644-00011-1,1,4380_7778208_520301,4380_1615 -4380_77939,289,4380_95268,Ballina,48655-00014-1,1,4380_7778208_520301,4380_1615 -4380_77939,290,4380_95269,Ballina,48650-00015-1,1,4380_7778208_520301,4380_1615 -4380_78147,288,4380_9527,Dublin,6886-00011-1,1,4380_7778208_1090903,4380_180 -4380_77939,291,4380_95270,Ballina,48651-00013-1,1,4380_7778208_520301,4380_1615 -4380_77939,292,4380_95271,Ballina,48647-00016-1,1,4380_7778208_520301,4380_1615 -4380_77939,293,4380_95272,Ballina,48645-00017-1,1,4380_7778208_520301,4380_1615 -4380_77939,294,4380_95273,Ballina,48654-00018-1,1,4380_7778208_520301,4380_1615 -4380_77939,295,4380_95274,Ballina,48656-00019-1,1,4380_7778208_520301,4380_1615 -4380_77939,296,4380_95275,Ballina,48652-00021-1,1,4380_7778208_520301,4380_1615 -4380_78147,287,4380_9528,Dublin,6891-00012-1,1,4380_7778208_1090903,4380_180 -4380_77939,285,4380_95283,Ballina,48718-00009-1,1,4380_7778208_521001,4380_1615 -4380_77939,286,4380_95284,Ballina,48716-00010-1,1,4380_7778208_521001,4380_1615 -4380_77939,297,4380_95285,Ballina,48715-00008-1,1,4380_7778208_521001,4380_1615 -4380_77939,287,4380_95286,Ballina,48720-00012-1,1,4380_7778208_521001,4380_1615 -4380_77939,288,4380_95287,Ballina,48709-00011-1,1,4380_7778208_521001,4380_1615 -4380_77939,289,4380_95288,Ballina,48711-00014-1,1,4380_7778208_521001,4380_1615 -4380_77939,290,4380_95289,Ballina,48719-00015-1,1,4380_7778208_521001,4380_1615 -4380_78147,289,4380_9529,Dublin,6871-00014-1,1,4380_7778208_1090903,4380_180 -4380_77939,291,4380_95290,Ballina,48713-00013-1,1,4380_7778208_521001,4380_1615 -4380_77939,292,4380_95291,Ballina,48717-00016-1,1,4380_7778208_521001,4380_1615 -4380_77939,293,4380_95292,Ballina,48710-00017-1,1,4380_7778208_521001,4380_1615 -4380_77939,294,4380_95293,Ballina,48721-00018-1,1,4380_7778208_521001,4380_1615 -4380_77939,295,4380_95294,Ballina,48712-00019-1,1,4380_7778208_521001,4380_1615 -4380_77939,296,4380_95295,Ballina,48714-00021-1,1,4380_7778208_521001,4380_1615 -4380_78113,294,4380_953,Dublin via Airport,49738-00018-1,1,4380_7778208_1000904,4380_18 -4380_78147,290,4380_9530,Dublin,55390-00015-1,1,4380_7778208_1090903,4380_180 -4380_77939,285,4380_95303,Ballina,48772-00009-1,1,4380_7778208_521002,4380_1615 -4380_77939,286,4380_95304,Ballina,48770-00010-1,1,4380_7778208_521002,4380_1615 -4380_77939,297,4380_95305,Ballina,48769-00008-1,1,4380_7778208_521002,4380_1615 -4380_77939,287,4380_95306,Ballina,48761-00012-1,1,4380_7778208_521002,4380_1615 -4380_77939,288,4380_95307,Ballina,48763-00011-1,1,4380_7778208_521002,4380_1615 -4380_77939,289,4380_95308,Ballina,48765-00014-1,1,4380_7778208_521002,4380_1615 -4380_77939,290,4380_95309,Ballina,48773-00015-1,1,4380_7778208_521002,4380_1615 -4380_78147,292,4380_9531,Dublin,55392-00016-1,1,4380_7778208_1090903,4380_180 -4380_77939,291,4380_95310,Ballina,48767-00013-1,1,4380_7778208_521002,4380_1615 -4380_77939,292,4380_95311,Ballina,48771-00016-1,1,4380_7778208_521002,4380_1615 -4380_77939,293,4380_95312,Ballina,48764-00017-1,1,4380_7778208_521002,4380_1615 -4380_77939,294,4380_95313,Ballina,48762-00018-1,1,4380_7778208_521002,4380_1615 -4380_77939,295,4380_95314,Ballina,48766-00019-1,1,4380_7778208_521002,4380_1615 -4380_77939,296,4380_95315,Ballina,48768-00021-1,1,4380_7778208_521002,4380_1615 -4380_78147,293,4380_9532,Dublin,55389-00017-1,1,4380_7778208_1090903,4380_180 -4380_77940,285,4380_95322,Waterford,48780-00009-1,0,4380_7778208_550401,4380_1616 -4380_77940,286,4380_95323,Waterford,48782-00010-1,0,4380_7778208_550401,4380_1616 -4380_77940,287,4380_95324,Waterford,48776-00012-1,0,4380_7778208_550401,4380_1616 -4380_77940,288,4380_95325,Waterford,48778-00011-1,0,4380_7778208_550401,4380_1616 -4380_77940,289,4380_95326,Waterford,48774-00014-1,0,4380_7778208_550401,4380_1616 -4380_77940,290,4380_95327,Waterford,48781-00015-1,0,4380_7778208_550401,4380_1616 -4380_77940,291,4380_95328,Waterford,48784-00013-1,0,4380_7778208_550401,4380_1616 -4380_77940,292,4380_95329,Waterford,48783-00016-1,0,4380_7778208_550401,4380_1616 -4380_78147,294,4380_9533,Dublin,55391-00018-1,1,4380_7778208_1090903,4380_180 -4380_77940,293,4380_95330,Waterford,48779-00017-1,0,4380_7778208_550401,4380_1616 -4380_77940,294,4380_95331,Waterford,48777-00018-1,0,4380_7778208_550401,4380_1616 -4380_77940,295,4380_95332,Waterford,48775-00019-1,0,4380_7778208_550401,4380_1616 -4380_77940,296,4380_95333,Waterford,48785-00021-1,0,4380_7778208_550401,4380_1616 -4380_78147,295,4380_9534,Dublin,55388-00019-1,1,4380_7778208_1090903,4380_180 -4380_77940,285,4380_95341,Waterford,48824-00009-1,0,4380_7778208_550402,4380_1616 -4380_77940,286,4380_95342,Waterford,48822-00010-1,0,4380_7778208_550402,4380_1616 -4380_77940,297,4380_95343,Waterford,48786-00008-1,0,4380_7778208_550401,4380_1616 -4380_77940,287,4380_95344,Waterford,48818-00012-1,0,4380_7778208_550402,4380_1616 -4380_77940,288,4380_95345,Waterford,48814-00011-1,0,4380_7778208_550402,4380_1616 -4380_77940,289,4380_95346,Waterford,48816-00014-1,0,4380_7778208_550402,4380_1616 -4380_77940,290,4380_95347,Waterford,48825-00015-1,0,4380_7778208_550402,4380_1616 -4380_77940,291,4380_95348,Waterford,48820-00013-1,0,4380_7778208_550402,4380_1616 -4380_77940,292,4380_95349,Waterford,48823-00016-1,0,4380_7778208_550402,4380_1616 -4380_77940,293,4380_95350,Waterford,48815-00017-1,0,4380_7778208_550402,4380_1616 -4380_77940,294,4380_95351,Waterford,48819-00018-1,0,4380_7778208_550402,4380_1616 -4380_77940,295,4380_95352,Waterford,48817-00019-1,0,4380_7778208_550402,4380_1616 -4380_77940,296,4380_95353,Waterford,48821-00021-1,0,4380_7778208_550402,4380_1616 -4380_77940,285,4380_95361,Waterford,48884-00009-1,0,4380_7778208_550801,4380_1616 -4380_77940,286,4380_95362,Waterford,48886-00010-1,0,4380_7778208_550801,4380_1616 -4380_77940,297,4380_95363,Waterford,48826-00008-1,0,4380_7778208_550402,4380_1616 -4380_77940,287,4380_95364,Waterford,48882-00012-1,0,4380_7778208_550801,4380_1616 -4380_77940,288,4380_95365,Waterford,48878-00011-1,0,4380_7778208_550801,4380_1616 -4380_77940,289,4380_95366,Waterford,48880-00014-1,0,4380_7778208_550801,4380_1616 -4380_77940,290,4380_95367,Waterford,48885-00015-1,0,4380_7778208_550801,4380_1616 -4380_77940,291,4380_95368,Waterford,48888-00013-1,0,4380_7778208_550801,4380_1616 -4380_77940,292,4380_95369,Waterford,48887-00016-1,0,4380_7778208_550801,4380_1616 -4380_77940,293,4380_95370,Waterford,48879-00017-1,0,4380_7778208_550801,4380_1616 -4380_77940,294,4380_95371,Waterford,48883-00018-1,0,4380_7778208_550801,4380_1616 -4380_77940,295,4380_95372,Waterford,48881-00019-1,0,4380_7778208_550801,4380_1616 -4380_77940,296,4380_95373,Waterford,48889-00021-1,0,4380_7778208_550801,4380_1616 -4380_77940,285,4380_95381,Waterford,48907-00009-1,0,4380_7778208_550802,4380_1616 -4380_77940,286,4380_95382,Waterford,48910-00010-1,0,4380_7778208_550802,4380_1616 -4380_77940,297,4380_95383,Waterford,48909-00008-1,0,4380_7778208_550802,4380_1616 -4380_77940,287,4380_95384,Waterford,48905-00012-1,0,4380_7778208_550802,4380_1616 -4380_77940,288,4380_95385,Waterford,48912-00011-1,0,4380_7778208_550802,4380_1616 -4380_77940,289,4380_95386,Waterford,48916-00014-1,0,4380_7778208_550802,4380_1616 -4380_77940,290,4380_95387,Waterford,48908-00015-1,0,4380_7778208_550802,4380_1616 -4380_77940,291,4380_95388,Waterford,48914-00013-1,0,4380_7778208_550802,4380_1616 -4380_77940,292,4380_95389,Waterford,48911-00016-1,0,4380_7778208_550802,4380_1616 -4380_77940,293,4380_95390,Waterford,48913-00017-1,0,4380_7778208_550802,4380_1616 -4380_77940,294,4380_95391,Waterford,48906-00018-1,0,4380_7778208_550802,4380_1616 -4380_77940,295,4380_95392,Waterford,48917-00019-1,0,4380_7778208_550802,4380_1616 -4380_77940,296,4380_95393,Waterford,48915-00021-1,0,4380_7778208_550802,4380_1616 -4380_78113,295,4380_954,Dublin via Airport,49732-00019-1,1,4380_7778208_1000904,4380_18 -4380_78147,285,4380_9540,U C D Belfield,7219-00009-1,1,4380_7778208_10988812,4380_182 -4380_77940,285,4380_95401,Waterford,48959-00009-1,0,4380_7778208_550803,4380_1616 -4380_77940,286,4380_95402,Waterford,48957-00010-1,0,4380_7778208_550803,4380_1616 -4380_77940,297,4380_95403,Waterford,48890-00008-1,0,4380_7778208_550801,4380_1616 -4380_77940,287,4380_95404,Waterford,48965-00012-1,0,4380_7778208_550803,4380_1616 -4380_77940,288,4380_95405,Waterford,48963-00011-1,0,4380_7778208_550803,4380_1616 -4380_77940,289,4380_95406,Waterford,48961-00014-1,0,4380_7778208_550803,4380_1616 -4380_77940,290,4380_95407,Waterford,48960-00015-1,0,4380_7778208_550803,4380_1616 -4380_77940,291,4380_95408,Waterford,48967-00013-1,0,4380_7778208_550803,4380_1616 -4380_77940,292,4380_95409,Waterford,48958-00016-1,0,4380_7778208_550803,4380_1616 -4380_78147,288,4380_9541,U C D Belfield,7221-00011-1,1,4380_7778208_10988812,4380_182 -4380_77940,293,4380_95410,Waterford,48964-00017-1,0,4380_7778208_550803,4380_1616 -4380_77940,294,4380_95411,Waterford,48966-00018-1,0,4380_7778208_550803,4380_1616 -4380_77940,295,4380_95412,Waterford,48962-00019-1,0,4380_7778208_550803,4380_1616 -4380_77940,296,4380_95413,Waterford,48968-00021-1,0,4380_7778208_550803,4380_1616 -4380_78147,286,4380_9542,U C D Belfield,7220-00010-1,1,4380_7778208_10988812,4380_182 -4380_77940,285,4380_95421,Waterford,48808-00009-1,0,4380_7778208_550401,4380_1616 -4380_77940,286,4380_95422,Waterford,48804-00010-1,0,4380_7778208_550401,4380_1616 -4380_77940,297,4380_95423,Waterford,48969-00008-1,0,4380_7778208_550803,4380_1616 -4380_77940,287,4380_95424,Waterford,48800-00012-1,0,4380_7778208_550401,4380_1616 -4380_77940,288,4380_95425,Waterford,48810-00011-1,0,4380_7778208_550401,4380_1616 -4380_77940,289,4380_95426,Waterford,48802-00014-1,0,4380_7778208_550401,4380_1616 -4380_77940,290,4380_95427,Waterford,48809-00015-1,0,4380_7778208_550401,4380_1616 -4380_77940,291,4380_95428,Waterford,48806-00013-1,0,4380_7778208_550401,4380_1616 -4380_77940,292,4380_95429,Waterford,48805-00016-1,0,4380_7778208_550401,4380_1616 -4380_78147,289,4380_9543,U C D Belfield,7218-00014-1,1,4380_7778208_10988812,4380_182 -4380_77940,293,4380_95430,Waterford,48811-00017-1,0,4380_7778208_550401,4380_1616 -4380_77940,294,4380_95431,Waterford,48801-00018-1,0,4380_7778208_550401,4380_1616 -4380_77940,295,4380_95432,Waterford,48803-00019-1,0,4380_7778208_550401,4380_1616 -4380_77940,296,4380_95433,Waterford,48807-00021-1,0,4380_7778208_550401,4380_1616 -4380_78147,287,4380_9544,U C D Belfield,7222-00012-1,1,4380_7778208_10988812,4380_182 -4380_77940,285,4380_95441,Waterford,48844-00009-1,0,4380_7778208_550402,4380_1616 -4380_77940,286,4380_95442,Waterford,48846-00010-1,0,4380_7778208_550402,4380_1616 -4380_77940,297,4380_95443,Waterford,48812-00008-1,0,4380_7778208_550401,4380_1616 -4380_77940,287,4380_95444,Waterford,48848-00012-1,0,4380_7778208_550402,4380_1616 -4380_77940,288,4380_95445,Waterford,48840-00011-1,0,4380_7778208_550402,4380_1616 -4380_77940,289,4380_95446,Waterford,48850-00014-1,0,4380_7778208_550402,4380_1616 -4380_77940,290,4380_95447,Waterford,48845-00015-1,0,4380_7778208_550402,4380_1616 -4380_77940,291,4380_95448,Waterford,48842-00013-1,0,4380_7778208_550402,4380_1616 -4380_77940,292,4380_95449,Waterford,48847-00016-1,0,4380_7778208_550402,4380_1616 -4380_78147,290,4380_9545,U C D Belfield,114790-00015-1,1,4380_7778208_10988812,4380_182 -4380_77940,293,4380_95450,Waterford,48841-00017-1,0,4380_7778208_550402,4380_1616 -4380_77940,294,4380_95451,Waterford,48849-00018-1,0,4380_7778208_550402,4380_1616 -4380_77940,295,4380_95452,Waterford,48851-00019-1,0,4380_7778208_550402,4380_1616 -4380_77940,296,4380_95453,Waterford,48843-00021-1,0,4380_7778208_550402,4380_1616 -4380_77940,297,4380_95456,Waterford,48852-00008-1,0,4380_7778208_550402,4380_1616 -4380_77940,287,4380_95457,Waterford,48984-00012-1,0,4380_7778208_550804,4380_1616 -4380_77940,294,4380_95458,Waterford,48985-00018-1,0,4380_7778208_550804,4380_1616 -4380_78147,292,4380_9546,U C D Belfield,114787-00016-1,1,4380_7778208_10988812,4380_182 -4380_77940,285,4380_95466,Waterford,48936-00009-1,0,4380_7778208_550802,4380_1616 -4380_77940,286,4380_95467,Waterford,48931-00010-1,0,4380_7778208_550802,4380_1616 -4380_77940,297,4380_95468,Waterford,48933-00008-1,0,4380_7778208_550802,4380_1616 -4380_77940,287,4380_95469,Waterford,48942-00012-1,0,4380_7778208_550802,4380_1616 -4380_78147,294,4380_9547,U C D Belfield,114789-00018-1,1,4380_7778208_10988812,4380_182 -4380_77940,288,4380_95470,Waterford,48940-00011-1,0,4380_7778208_550802,4380_1616 -4380_77940,289,4380_95471,Waterford,48938-00014-1,0,4380_7778208_550802,4380_1616 -4380_77940,290,4380_95472,Waterford,48937-00015-1,0,4380_7778208_550802,4380_1616 -4380_77940,291,4380_95473,Waterford,48934-00013-1,0,4380_7778208_550802,4380_1616 -4380_77940,292,4380_95474,Waterford,48932-00016-1,0,4380_7778208_550802,4380_1616 -4380_77940,293,4380_95475,Waterford,48941-00017-1,0,4380_7778208_550802,4380_1616 -4380_77940,294,4380_95476,Waterford,48943-00018-1,0,4380_7778208_550802,4380_1616 -4380_77940,295,4380_95477,Waterford,48939-00019-1,0,4380_7778208_550802,4380_1616 -4380_77940,296,4380_95478,Waterford,48935-00021-1,0,4380_7778208_550802,4380_1616 -4380_78147,293,4380_9548,U C D Belfield,114788-00017-1,1,4380_7778208_10988812,4380_182 -4380_77940,285,4380_95485,Limerick Bus Station,48871-00009-1,1,4380_7778208_550801,4380_1617 -4380_77940,286,4380_95486,Limerick Bus Station,48875-00010-1,1,4380_7778208_550801,4380_1617 -4380_77940,287,4380_95487,Limerick Bus Station,48869-00012-1,1,4380_7778208_550801,4380_1617 -4380_77940,288,4380_95488,Limerick Bus Station,48873-00011-1,1,4380_7778208_550801,4380_1617 -4380_77940,289,4380_95489,Limerick Bus Station,48867-00014-1,1,4380_7778208_550801,4380_1617 -4380_78147,295,4380_9549,U C D Belfield,114791-00019-1,1,4380_7778208_10988812,4380_182 -4380_77940,290,4380_95490,Limerick Bus Station,48872-00015-1,1,4380_7778208_550801,4380_1617 -4380_77940,291,4380_95491,Limerick Bus Station,48865-00013-1,1,4380_7778208_550801,4380_1617 -4380_77940,292,4380_95492,Limerick Bus Station,48876-00016-1,1,4380_7778208_550801,4380_1617 -4380_77940,293,4380_95493,Limerick Bus Station,48874-00017-1,1,4380_7778208_550801,4380_1617 -4380_77940,294,4380_95494,Limerick Bus Station,48870-00018-1,1,4380_7778208_550801,4380_1617 -4380_77940,295,4380_95495,Limerick Bus Station,48868-00019-1,1,4380_7778208_550801,4380_1617 -4380_77940,296,4380_95496,Limerick Bus Station,48866-00021-1,1,4380_7778208_550801,4380_1617 -4380_78113,296,4380_955,Dublin via Airport,49742-00021-1,1,4380_7778208_1000904,4380_20 -4380_77940,285,4380_95504,Limerick Bus Station,48902-00009-1,1,4380_7778208_550802,4380_1617 -4380_77940,286,4380_95505,Limerick Bus Station,48900-00010-1,1,4380_7778208_550802,4380_1617 -4380_77940,297,4380_95506,Limerick Bus Station,48904-00008-1,1,4380_7778208_550802,4380_1617 -4380_77940,287,4380_95507,Limerick Bus Station,48896-00012-1,1,4380_7778208_550802,4380_1617 -4380_77940,288,4380_95508,Limerick Bus Station,48892-00011-1,1,4380_7778208_550802,4380_1617 -4380_77940,289,4380_95509,Limerick Bus Station,48894-00014-1,1,4380_7778208_550802,4380_1617 -4380_77940,290,4380_95510,Limerick Bus Station,48903-00015-1,1,4380_7778208_550802,4380_1617 -4380_77940,291,4380_95511,Limerick Bus Station,48898-00013-1,1,4380_7778208_550802,4380_1617 -4380_77940,292,4380_95512,Limerick Bus Station,48901-00016-1,1,4380_7778208_550802,4380_1617 -4380_77940,293,4380_95513,Limerick Bus Station,48893-00017-1,1,4380_7778208_550802,4380_1617 -4380_77940,294,4380_95514,Limerick Bus Station,48897-00018-1,1,4380_7778208_550802,4380_1617 -4380_77940,295,4380_95515,Limerick Bus Station,48895-00019-1,1,4380_7778208_550802,4380_1617 -4380_77940,296,4380_95516,Limerick Bus Station,48899-00021-1,1,4380_7778208_550802,4380_1617 -4380_77940,285,4380_95524,Limerick Bus Station,48952-00009-1,1,4380_7778208_550803,4380_1617 -4380_77940,286,4380_95525,Limerick Bus Station,48944-00010-1,1,4380_7778208_550803,4380_1617 -4380_77940,297,4380_95526,Limerick Bus Station,48877-00008-1,1,4380_7778208_550801,4380_1617 -4380_77940,287,4380_95527,Limerick Bus Station,48954-00012-1,1,4380_7778208_550803,4380_1617 -4380_77940,288,4380_95528,Limerick Bus Station,48948-00011-1,1,4380_7778208_550803,4380_1617 -4380_77940,289,4380_95529,Limerick Bus Station,48946-00014-1,1,4380_7778208_550803,4380_1617 -4380_77940,290,4380_95530,Limerick Bus Station,48953-00015-1,1,4380_7778208_550803,4380_1617 -4380_77940,291,4380_95531,Limerick Bus Station,48950-00013-1,1,4380_7778208_550803,4380_1617 -4380_77940,292,4380_95532,Limerick Bus Station,48945-00016-1,1,4380_7778208_550803,4380_1617 -4380_77940,293,4380_95533,Limerick Bus Station,48949-00017-1,1,4380_7778208_550803,4380_1617 -4380_77940,294,4380_95534,Limerick Bus Station,48955-00018-1,1,4380_7778208_550803,4380_1617 -4380_77940,295,4380_95535,Limerick Bus Station,48947-00019-1,1,4380_7778208_550803,4380_1617 -4380_77940,296,4380_95536,Limerick Bus Station,48951-00021-1,1,4380_7778208_550803,4380_1617 -4380_77940,285,4380_95544,Limerick Bus Station,48787-00009-1,1,4380_7778208_550401,4380_1617 -4380_77940,286,4380_95545,Limerick Bus Station,48789-00010-1,1,4380_7778208_550401,4380_1617 -4380_77940,297,4380_95546,Limerick Bus Station,48956-00008-1,1,4380_7778208_550803,4380_1617 -4380_77940,287,4380_95547,Limerick Bus Station,48793-00012-1,1,4380_7778208_550401,4380_1617 -4380_77940,288,4380_95548,Limerick Bus Station,48795-00011-1,1,4380_7778208_550401,4380_1617 -4380_77940,289,4380_95549,Limerick Bus Station,48797-00014-1,1,4380_7778208_550401,4380_1617 -4380_78147,285,4380_9555,Dublin,6927-00009-1,1,4380_7778208_1090904,4380_176 -4380_77940,290,4380_95550,Limerick Bus Station,48788-00015-1,1,4380_7778208_550401,4380_1617 -4380_77940,291,4380_95551,Limerick Bus Station,48791-00013-1,1,4380_7778208_550401,4380_1617 -4380_77940,292,4380_95552,Limerick Bus Station,48790-00016-1,1,4380_7778208_550401,4380_1617 -4380_77940,293,4380_95553,Limerick Bus Station,48796-00017-1,1,4380_7778208_550401,4380_1617 -4380_77940,294,4380_95554,Limerick Bus Station,48794-00018-1,1,4380_7778208_550401,4380_1617 -4380_77940,295,4380_95555,Limerick Bus Station,48798-00019-1,1,4380_7778208_550401,4380_1617 -4380_77940,296,4380_95556,Limerick Bus Station,48792-00021-1,1,4380_7778208_550401,4380_1617 -4380_78147,286,4380_9556,Dublin,6932-00010-1,1,4380_7778208_1090904,4380_176 -4380_77940,285,4380_95565,Limerick Bus Station,48831-00009-1,1,4380_7778208_550402,4380_1617 -4380_77940,286,4380_95566,Limerick Bus Station,48833-00010-1,1,4380_7778208_550402,4380_1617 -4380_77940,297,4380_95567,Limerick Bus Station,48799-00008-1,1,4380_7778208_550401,4380_1617 -4380_77940,287,4380_95568,Limerick Bus Station,48837-00012-1,1,4380_7778208_550402,4380_1617 -4380_77940,287,4380_95569,Limerick Bus Station,48982-00012-1,1,4380_7778208_550804,4380_1617 -4380_78147,288,4380_9557,Dublin,6937-00011-1,1,4380_7778208_1090904,4380_176 -4380_77940,288,4380_95570,Limerick Bus Station,48835-00011-1,1,4380_7778208_550402,4380_1617 -4380_77940,289,4380_95571,Limerick Bus Station,48827-00014-1,1,4380_7778208_550402,4380_1617 -4380_77940,290,4380_95572,Limerick Bus Station,48832-00015-1,1,4380_7778208_550402,4380_1617 -4380_77940,291,4380_95573,Limerick Bus Station,48829-00013-1,1,4380_7778208_550402,4380_1617 -4380_77940,292,4380_95574,Limerick Bus Station,48834-00016-1,1,4380_7778208_550402,4380_1617 -4380_77940,293,4380_95575,Limerick Bus Station,48836-00017-1,1,4380_7778208_550402,4380_1617 -4380_77940,294,4380_95576,Limerick Bus Station,48838-00018-1,1,4380_7778208_550402,4380_1617 -4380_77940,294,4380_95577,Limerick Bus Station,48983-00018-1,1,4380_7778208_550804,4380_1617 -4380_77940,295,4380_95578,Limerick Bus Station,48828-00019-1,1,4380_7778208_550402,4380_1617 -4380_77940,296,4380_95579,Limerick Bus Station,48830-00021-1,1,4380_7778208_550402,4380_1617 -4380_78147,287,4380_9558,Dublin,6942-00012-1,1,4380_7778208_1090904,4380_176 -4380_77940,297,4380_95581,Limerick Bus Station,48839-00008-1,1,4380_7778208_550402,4380_1617 -4380_77940,285,4380_95589,Limerick Bus Station,48926-00009-1,1,4380_7778208_550802,4380_1617 -4380_78147,289,4380_9559,Dublin,6922-00014-1,1,4380_7778208_1090904,4380_176 -4380_77940,286,4380_95590,Limerick Bus Station,48922-00010-1,1,4380_7778208_550802,4380_1617 -4380_77940,297,4380_95591,Limerick Bus Station,48930-00008-1,1,4380_7778208_550802,4380_1618 -4380_77940,287,4380_95592,Limerick Bus Station,48928-00012-1,1,4380_7778208_550802,4380_1617 -4380_77940,288,4380_95593,Limerick Bus Station,48918-00011-1,1,4380_7778208_550802,4380_1617 -4380_77940,289,4380_95594,Limerick Bus Station,48920-00014-1,1,4380_7778208_550802,4380_1617 -4380_77940,290,4380_95595,Limerick Bus Station,48927-00015-1,1,4380_7778208_550802,4380_1617 -4380_77940,291,4380_95596,Limerick Bus Station,48924-00013-1,1,4380_7778208_550802,4380_1617 -4380_77940,292,4380_95597,Limerick Bus Station,48923-00016-1,1,4380_7778208_550802,4380_1617 -4380_77940,293,4380_95598,Limerick Bus Station,48919-00017-1,1,4380_7778208_550802,4380_1617 -4380_77940,294,4380_95599,Limerick Bus Station,48929-00018-1,1,4380_7778208_550802,4380_1617 -4380_78147,290,4380_9560,Dublin,55418-00015-1,1,4380_7778208_1090904,4380_176 -4380_77940,295,4380_95600,Limerick Bus Station,48921-00019-1,1,4380_7778208_550802,4380_1617 -4380_77940,296,4380_95601,Limerick Bus Station,48925-00021-1,1,4380_7778208_550802,4380_1617 -4380_77940,285,4380_95608,Limerick Bus Station,48974-00009-1,1,4380_7778208_550803,4380_1617 -4380_77940,286,4380_95609,Limerick Bus Station,48972-00010-1,1,4380_7778208_550803,4380_1617 -4380_78147,292,4380_9561,Dublin,55421-00016-1,1,4380_7778208_1090904,4380_176 -4380_77940,287,4380_95610,Limerick Bus Station,48970-00012-1,1,4380_7778208_550803,4380_1617 -4380_77940,288,4380_95611,Limerick Bus Station,48980-00011-1,1,4380_7778208_550803,4380_1617 -4380_77940,289,4380_95612,Limerick Bus Station,48978-00014-1,1,4380_7778208_550803,4380_1617 -4380_77940,290,4380_95613,Limerick Bus Station,48975-00015-1,1,4380_7778208_550803,4380_1617 -4380_77940,291,4380_95614,Limerick Bus Station,48976-00013-1,1,4380_7778208_550803,4380_1617 -4380_77940,292,4380_95615,Limerick Bus Station,48973-00016-1,1,4380_7778208_550803,4380_1617 -4380_77940,293,4380_95616,Limerick Bus Station,48981-00017-1,1,4380_7778208_550803,4380_1617 -4380_77940,294,4380_95617,Limerick Bus Station,48971-00018-1,1,4380_7778208_550803,4380_1617 -4380_77940,295,4380_95618,Limerick Bus Station,48979-00019-1,1,4380_7778208_550803,4380_1617 -4380_77940,296,4380_95619,Limerick Bus Station,48977-00021-1,1,4380_7778208_550803,4380_1617 -4380_78147,293,4380_9562,Dublin,55422-00017-1,1,4380_7778208_1090904,4380_176 -4380_77940,297,4380_95621,Limerick Bus Station,48891-00008-1,1,4380_7778208_550801,4380_1617 -4380_77940,285,4380_95629,Limerick Bus Station,48859-00009-1,1,4380_7778208_550402,4380_1617 -4380_78147,294,4380_9563,Dublin,55420-00018-1,1,4380_7778208_1090904,4380_176 -4380_77940,286,4380_95630,Limerick Bus Station,48863-00010-1,1,4380_7778208_550402,4380_1617 -4380_77940,297,4380_95631,Limerick Bus Station,48813-00008-1,1,4380_7778208_550401,4380_1618 -4380_77940,287,4380_95632,Limerick Bus Station,48861-00012-1,1,4380_7778208_550402,4380_1617 -4380_77940,288,4380_95633,Limerick Bus Station,48855-00011-1,1,4380_7778208_550402,4380_1617 -4380_77940,289,4380_95634,Limerick Bus Station,48853-00014-1,1,4380_7778208_550402,4380_1617 -4380_77940,290,4380_95635,Limerick Bus Station,48860-00015-1,1,4380_7778208_550402,4380_1617 -4380_77940,291,4380_95636,Limerick Bus Station,48857-00013-1,1,4380_7778208_550402,4380_1617 -4380_77940,292,4380_95637,Limerick Bus Station,48864-00016-1,1,4380_7778208_550402,4380_1617 -4380_77940,293,4380_95638,Limerick Bus Station,48856-00017-1,1,4380_7778208_550402,4380_1617 -4380_77940,294,4380_95639,Limerick Bus Station,48862-00018-1,1,4380_7778208_550402,4380_1617 -4380_78147,295,4380_9564,Dublin,55419-00019-1,1,4380_7778208_1090904,4380_176 -4380_77940,295,4380_95640,Limerick Bus Station,48854-00019-1,1,4380_7778208_550402,4380_1617 -4380_77940,296,4380_95641,Limerick Bus Station,48858-00021-1,1,4380_7778208_550402,4380_1617 -4380_77941,285,4380_95648,Newcastle,49046-00009-1,0,4380_7778208_640501,4380_1621 -4380_77941,286,4380_95649,Newcastle,49036-00010-1,0,4380_7778208_640501,4380_1621 -4380_77941,287,4380_95650,Newcastle,49042-00012-1,0,4380_7778208_640501,4380_1621 -4380_77941,288,4380_95651,Newcastle,49044-00011-1,0,4380_7778208_640501,4380_1621 -4380_77941,289,4380_95652,Newcastle,49038-00014-1,0,4380_7778208_640501,4380_1621 -4380_77941,290,4380_95653,Newcastle,49047-00015-1,0,4380_7778208_640501,4380_1621 -4380_77941,291,4380_95654,Newcastle,49040-00013-1,0,4380_7778208_640501,4380_1621 -4380_77941,292,4380_95655,Newcastle,49037-00016-1,0,4380_7778208_640501,4380_1621 -4380_77941,293,4380_95656,Newcastle,49045-00017-1,0,4380_7778208_640501,4380_1621 -4380_77941,294,4380_95657,Newcastle,49043-00018-1,0,4380_7778208_640501,4380_1621 -4380_77941,295,4380_95658,Newcastle,49039-00019-1,0,4380_7778208_640501,4380_1621 -4380_77941,296,4380_95659,Newcastle,49041-00021-1,0,4380_7778208_640501,4380_1621 -4380_78147,297,4380_9566,Dublin,6861-00008-1,1,4380_7778208_1090902,4380_176 -4380_77941,285,4380_95667,Sligo,49200-00009-1,0,4380_7778208_640602,4380_1628 -4380_77941,286,4380_95668,Sligo,49198-00010-1,0,4380_7778208_640602,4380_1628 -4380_77941,297,4380_95669,Sligo,49197-00008-1,0,4380_7778208_640602,4380_1628 -4380_77941,287,4380_95670,Sligo,49195-00012-1,0,4380_7778208_640602,4380_1628 -4380_77941,288,4380_95671,Sligo,49191-00011-1,0,4380_7778208_640602,4380_1628 -4380_77941,289,4380_95672,Sligo,49193-00014-1,0,4380_7778208_640602,4380_1628 -4380_77941,290,4380_95673,Sligo,49201-00015-1,0,4380_7778208_640602,4380_1628 -4380_77941,291,4380_95674,Sligo,49202-00013-1,0,4380_7778208_640602,4380_1628 -4380_77941,292,4380_95675,Sligo,49199-00016-1,0,4380_7778208_640602,4380_1628 -4380_77941,293,4380_95676,Sligo,49192-00017-1,0,4380_7778208_640602,4380_1628 -4380_77941,294,4380_95677,Sligo,49196-00018-1,0,4380_7778208_640602,4380_1628 -4380_77941,295,4380_95678,Sligo,49194-00019-1,0,4380_7778208_640602,4380_1628 -4380_77941,296,4380_95679,Sligo,49203-00021-1,0,4380_7778208_640602,4380_1628 -4380_78147,291,4380_9568,Dublin,6896-00013-1,1,4380_7778208_1090903,4380_176 -4380_77941,285,4380_95687,Galway,49156-00009-1,0,4380_7778208_640601,4380_1626 -4380_77941,286,4380_95688,Galway,49158-00010-1,0,4380_7778208_640601,4380_1626 -4380_77941,297,4380_95689,Galway,49162-00008-1,0,4380_7778208_640601,4380_1626 -4380_78147,296,4380_9569,Dublin,55393-00021-1,1,4380_7778208_1090903,4380_176 -4380_77941,287,4380_95690,Galway,49152-00012-1,0,4380_7778208_640601,4380_1626 -4380_77941,288,4380_95691,Galway,49154-00011-1,0,4380_7778208_640601,4380_1626 -4380_77941,289,4380_95692,Galway,49160-00014-1,0,4380_7778208_640601,4380_1626 -4380_77941,290,4380_95693,Galway,49157-00015-1,0,4380_7778208_640601,4380_1626 -4380_77941,291,4380_95694,Galway,49163-00013-1,0,4380_7778208_640601,4380_1626 -4380_77941,292,4380_95695,Galway,49159-00016-1,0,4380_7778208_640601,4380_1626 -4380_77941,293,4380_95696,Galway,49155-00017-1,0,4380_7778208_640601,4380_1626 -4380_77941,294,4380_95697,Galway,49153-00018-1,0,4380_7778208_640601,4380_1626 -4380_77941,295,4380_95698,Galway,49161-00019-1,0,4380_7778208_640601,4380_1626 -4380_77941,296,4380_95699,Galway,49164-00021-1,0,4380_7778208_640601,4380_1626 -4380_77941,285,4380_95707,Galway,49090-00009-1,0,4380_7778208_640502,4380_1624 -4380_77941,286,4380_95708,Galway,49094-00010-1,0,4380_7778208_640502,4380_1624 -4380_77941,297,4380_95709,Galway,49136-00008-1,0,4380_7778208_640504,4380_1624 -4380_77941,287,4380_95710,Galway,49088-00012-1,0,4380_7778208_640502,4380_1624 -4380_77941,288,4380_95711,Galway,49084-00011-1,0,4380_7778208_640502,4380_1624 -4380_77941,289,4380_95712,Galway,49086-00014-1,0,4380_7778208_640502,4380_1624 -4380_77941,290,4380_95713,Galway,49091-00015-1,0,4380_7778208_640502,4380_1624 -4380_77941,291,4380_95714,Galway,49092-00013-1,0,4380_7778208_640502,4380_1624 -4380_77941,292,4380_95715,Galway,49095-00016-1,0,4380_7778208_640502,4380_1624 -4380_77941,293,4380_95716,Galway,49085-00017-1,0,4380_7778208_640502,4380_1624 -4380_77941,294,4380_95717,Galway,49089-00018-1,0,4380_7778208_640502,4380_1624 -4380_77941,295,4380_95718,Galway,49087-00019-1,0,4380_7778208_640502,4380_1624 -4380_77941,296,4380_95719,Galway,49093-00021-1,0,4380_7778208_640502,4380_1624 -4380_77941,285,4380_95726,Galway,49048-00009-1,0,4380_7778208_640501,4380_1622 -4380_77941,286,4380_95727,Galway,49056-00010-1,0,4380_7778208_640501,4380_1622 -4380_77941,287,4380_95728,Galway,49050-00012-1,0,4380_7778208_640501,4380_1622 -4380_77941,288,4380_95729,Galway,49058-00011-1,0,4380_7778208_640501,4380_1622 -4380_77941,289,4380_95730,Galway,49054-00014-1,0,4380_7778208_640501,4380_1622 -4380_77941,290,4380_95731,Galway,49049-00015-1,0,4380_7778208_640501,4380_1622 -4380_77941,291,4380_95732,Galway,49052-00013-1,0,4380_7778208_640501,4380_1622 -4380_77941,292,4380_95733,Galway,49057-00016-1,0,4380_7778208_640501,4380_1622 -4380_77941,293,4380_95734,Galway,49059-00017-1,0,4380_7778208_640501,4380_1622 -4380_77941,294,4380_95735,Galway,49051-00018-1,0,4380_7778208_640501,4380_1622 -4380_77941,295,4380_95736,Galway,49055-00019-1,0,4380_7778208_640501,4380_1622 -4380_77941,296,4380_95737,Galway,49053-00021-1,0,4380_7778208_640501,4380_1622 -4380_77941,285,4380_95745,Galway,49267-00009-1,0,4380_7778208_640603,4380_1630 -4380_77941,286,4380_95746,Galway,49259-00010-1,0,4380_7778208_640603,4380_1630 -4380_77941,297,4380_95747,Galway,49258-00008-1,0,4380_7778208_640603,4380_1630 -4380_77941,287,4380_95748,Galway,49256-00012-1,0,4380_7778208_640603,4380_1630 -4380_77941,288,4380_95749,Galway,49263-00011-1,0,4380_7778208_640603,4380_1630 -4380_78147,285,4380_9575,Dublin,6971-00009-1,1,4380_7778208_1090905,4380_176 -4380_77941,289,4380_95750,Galway,49261-00014-1,0,4380_7778208_640603,4380_1630 -4380_77941,290,4380_95751,Galway,49268-00015-1,0,4380_7778208_640603,4380_1630 -4380_77941,291,4380_95752,Galway,49265-00013-1,0,4380_7778208_640603,4380_1630 -4380_77941,292,4380_95753,Galway,49260-00016-1,0,4380_7778208_640603,4380_1630 -4380_77941,293,4380_95754,Galway,49264-00017-1,0,4380_7778208_640603,4380_1630 -4380_77941,294,4380_95755,Galway,49257-00018-1,0,4380_7778208_640603,4380_1630 -4380_77941,295,4380_95756,Galway,49262-00019-1,0,4380_7778208_640603,4380_1630 -4380_77941,296,4380_95757,Galway,49266-00021-1,0,4380_7778208_640603,4380_1630 -4380_78147,286,4380_9576,Dublin,6975-00010-1,1,4380_7778208_1090905,4380_176 -4380_77941,285,4380_95765,Galway,49217-00009-1,0,4380_7778208_640602,4380_1629 -4380_77941,286,4380_95766,Galway,49223-00010-1,0,4380_7778208_640602,4380_1629 -4380_77941,297,4380_95767,Galway,49229-00008-1,0,4380_7778208_640602,4380_1629 -4380_77941,287,4380_95768,Galway,49227-00012-1,0,4380_7778208_640602,4380_1629 -4380_77941,288,4380_95769,Galway,49219-00011-1,0,4380_7778208_640602,4380_1629 -4380_78147,288,4380_9577,Dublin,6979-00011-1,1,4380_7778208_1090905,4380_176 -4380_77941,289,4380_95770,Galway,49221-00014-1,0,4380_7778208_640602,4380_1629 -4380_77941,290,4380_95771,Galway,49218-00015-1,0,4380_7778208_640602,4380_1629 -4380_77941,291,4380_95772,Galway,49225-00013-1,0,4380_7778208_640602,4380_1629 -4380_77941,292,4380_95773,Galway,49224-00016-1,0,4380_7778208_640602,4380_1629 -4380_77941,293,4380_95774,Galway,49220-00017-1,0,4380_7778208_640602,4380_1629 -4380_77941,294,4380_95775,Galway,49228-00018-1,0,4380_7778208_640602,4380_1629 -4380_77941,295,4380_95776,Galway,49222-00019-1,0,4380_7778208_640602,4380_1629 -4380_77941,296,4380_95777,Galway,49226-00021-1,0,4380_7778208_640602,4380_1629 -4380_78147,287,4380_9578,Dublin,6983-00012-1,1,4380_7778208_1090905,4380_176 -4380_77941,285,4380_95784,Galway,48998-00009-1,0,4380_7778208_640301,4380_1619 -4380_77941,286,4380_95785,Galway,49008-00010-1,0,4380_7778208_640301,4380_1619 -4380_77941,287,4380_95786,Galway,49004-00012-1,0,4380_7778208_640301,4380_1619 -4380_77941,288,4380_95787,Galway,49000-00011-1,0,4380_7778208_640301,4380_1619 -4380_77941,289,4380_95788,Galway,49002-00014-1,0,4380_7778208_640301,4380_1619 -4380_77941,290,4380_95789,Galway,48999-00015-1,0,4380_7778208_640301,4380_1619 -4380_78147,289,4380_9579,Dublin,6967-00014-1,1,4380_7778208_1090905,4380_176 -4380_77941,291,4380_95790,Galway,49006-00013-1,0,4380_7778208_640301,4380_1619 -4380_77941,292,4380_95791,Galway,49009-00016-1,0,4380_7778208_640301,4380_1619 -4380_77941,293,4380_95792,Galway,49001-00017-1,0,4380_7778208_640301,4380_1619 -4380_77941,294,4380_95793,Galway,49005-00018-1,0,4380_7778208_640301,4380_1619 -4380_77941,295,4380_95794,Galway,49003-00019-1,0,4380_7778208_640301,4380_1619 -4380_77941,296,4380_95795,Galway,49007-00021-1,0,4380_7778208_640301,4380_1619 -4380_78147,290,4380_9580,Dublin,55449-00015-1,1,4380_7778208_1090905,4380_176 -4380_77941,285,4380_95803,Donegal,49316-00009-1,0,4380_7778208_640604,4380_1631 -4380_77941,286,4380_95804,Donegal,49314-00010-1,0,4380_7778208_640604,4380_1631 -4380_77941,297,4380_95805,Donegal,49320-00008-1,0,4380_7778208_640604,4380_1631 -4380_77941,287,4380_95806,Donegal,49312-00012-1,0,4380_7778208_640604,4380_1631 -4380_77941,288,4380_95807,Donegal,49308-00011-1,0,4380_7778208_640604,4380_1631 -4380_77941,289,4380_95808,Donegal,49310-00014-1,0,4380_7778208_640604,4380_1631 -4380_77941,290,4380_95809,Donegal,49317-00015-1,0,4380_7778208_640604,4380_1631 -4380_78147,292,4380_9581,Dublin,55450-00016-1,1,4380_7778208_1090905,4380_176 -4380_77941,291,4380_95810,Donegal,49318-00013-1,0,4380_7778208_640604,4380_1631 -4380_77941,292,4380_95811,Donegal,49315-00016-1,0,4380_7778208_640604,4380_1631 -4380_77941,293,4380_95812,Donegal,49309-00017-1,0,4380_7778208_640604,4380_1631 -4380_77941,294,4380_95813,Donegal,49313-00018-1,0,4380_7778208_640604,4380_1631 -4380_77941,295,4380_95814,Donegal,49311-00019-1,0,4380_7778208_640604,4380_1631 -4380_77941,296,4380_95815,Donegal,49319-00021-1,0,4380_7778208_640604,4380_1631 -4380_78147,293,4380_9582,Dublin,55448-00017-1,1,4380_7778208_1090905,4380_176 -4380_77941,285,4380_95823,Galway,49021-00009-1,0,4380_7778208_640302,4380_1620 -4380_77941,286,4380_95824,Galway,49030-00010-1,0,4380_7778208_640302,4380_1620 -4380_77941,297,4380_95825,Galway,49029-00008-1,0,4380_7778208_640302,4380_1620 -4380_77941,287,4380_95826,Galway,49027-00012-1,0,4380_7778208_640302,4380_1620 -4380_77941,288,4380_95827,Galway,49023-00011-1,0,4380_7778208_640302,4380_1620 -4380_77941,289,4380_95828,Galway,49025-00014-1,0,4380_7778208_640302,4380_1620 -4380_77941,290,4380_95829,Galway,49022-00015-1,0,4380_7778208_640302,4380_1620 -4380_78147,294,4380_9583,Dublin,55447-00018-1,1,4380_7778208_1090905,4380_176 -4380_77941,291,4380_95830,Galway,49034-00013-1,0,4380_7778208_640303,4380_1620 -4380_77941,292,4380_95831,Galway,49031-00016-1,0,4380_7778208_640302,4380_1620 -4380_77941,293,4380_95832,Galway,49024-00017-1,0,4380_7778208_640302,4380_1620 -4380_77941,294,4380_95833,Galway,49028-00018-1,0,4380_7778208_640302,4380_1620 -4380_77941,295,4380_95834,Galway,49026-00019-1,0,4380_7778208_640302,4380_1620 -4380_77941,296,4380_95835,Galway,49035-00021-1,0,4380_7778208_640303,4380_1620 -4380_77941,297,4380_95837,Galway,49134-00008-1,0,4380_7778208_640503,4380_1632 -4380_78147,295,4380_9584,Dublin,55451-00019-1,1,4380_7778208_1090905,4380_176 -4380_77941,285,4380_95845,Letterkenny,49078-00009-1,0,4380_7778208_640501,4380_1623 -4380_77941,286,4380_95846,Letterkenny,49072-00010-1,0,4380_7778208_640501,4380_1623 -4380_77941,297,4380_95847,Letterkenny,49121-00008-1,0,4380_7778208_640502,4380_1623 -4380_77941,287,4380_95848,Letterkenny,49074-00012-1,0,4380_7778208_640501,4380_1623 -4380_77941,288,4380_95849,Letterkenny,49076-00011-1,0,4380_7778208_640501,4380_1623 -4380_77941,289,4380_95850,Letterkenny,49080-00014-1,0,4380_7778208_640501,4380_1623 -4380_77941,290,4380_95851,Letterkenny,49079-00015-1,0,4380_7778208_640501,4380_1623 -4380_77941,291,4380_95852,Letterkenny,49082-00013-1,0,4380_7778208_640501,4380_1623 -4380_77941,292,4380_95853,Letterkenny,49073-00016-1,0,4380_7778208_640501,4380_1623 -4380_77941,293,4380_95854,Letterkenny,49077-00017-1,0,4380_7778208_640501,4380_1623 -4380_77941,294,4380_95855,Letterkenny,49075-00018-1,0,4380_7778208_640501,4380_1623 -4380_77941,295,4380_95856,Letterkenny,49081-00019-1,0,4380_7778208_640501,4380_1623 -4380_77941,296,4380_95857,Letterkenny,49083-00021-1,0,4380_7778208_640501,4380_1623 -4380_78147,297,4380_9586,Dublin,6908-00008-1,1,4380_7778208_1090903,4380_176 -4380_77941,285,4380_95863,Letterkenny,114286-00009-1,0,4380_7778208_4870601,4380_1633 -4380_77941,288,4380_95865,Letterkenny,114288-00011-1,0,4380_7778208_4870601,4380_1633 -4380_77941,286,4380_95866,Letterkenny,114292-00010-1,0,4380_7778208_4870601,4380_1633 -4380_77941,291,4380_95867,Letterkenny,114284-00013-1,0,4380_7778208_4870601,4380_1633 -4380_77941,289,4380_95868,Letterkenny,114282-00014-1,0,4380_7778208_4870601,4380_1633 -4380_77941,287,4380_95869,Letterkenny,114290-00012-1,0,4380_7778208_4870601,4380_1633 -4380_77941,290,4380_95870,Letterkenny,114287-00015-1,0,4380_7778208_4870601,4380_1633 -4380_77941,292,4380_95871,Letterkenny,114293-00016-1,0,4380_7778208_4870601,4380_1633 -4380_77941,294,4380_95872,Letterkenny,114291-00018-1,0,4380_7778208_4870601,4380_1633 -4380_77941,293,4380_95873,Letterkenny,114289-00017-1,0,4380_7778208_4870601,4380_1633 -4380_77941,296,4380_95874,Letterkenny,114285-00021-1,0,4380_7778208_4870601,4380_1633 -4380_77941,295,4380_95875,Letterkenny,114283-00019-1,0,4380_7778208_4870601,4380_1633 -4380_78147,291,4380_9588,Dublin,6953-00013-1,1,4380_7778208_1090904,4380_176 -4380_77941,285,4380_95883,Sligo,49132-00009-1,0,4380_7778208_640502,4380_1625 -4380_77941,286,4380_95884,Sligo,49130-00010-1,0,4380_7778208_640502,4380_1625 -4380_77941,297,4380_95885,Sligo,49138-00008-1,0,4380_7778208_640504,4380_1625 -4380_77941,287,4380_95886,Sligo,49124-00012-1,0,4380_7778208_640502,4380_1625 -4380_77941,288,4380_95887,Sligo,49126-00011-1,0,4380_7778208_640502,4380_1625 -4380_77941,289,4380_95888,Sligo,49122-00014-1,0,4380_7778208_640502,4380_1625 -4380_77941,290,4380_95889,Sligo,49133-00015-1,0,4380_7778208_640502,4380_1625 -4380_78147,296,4380_9589,Dublin,55423-00021-1,1,4380_7778208_1090904,4380_176 -4380_77941,291,4380_95890,Sligo,49128-00013-1,0,4380_7778208_640502,4380_1625 -4380_77941,292,4380_95891,Sligo,49131-00016-1,0,4380_7778208_640502,4380_1625 -4380_77941,293,4380_95892,Sligo,49127-00017-1,0,4380_7778208_640502,4380_1625 -4380_77941,294,4380_95893,Sligo,49125-00018-1,0,4380_7778208_640502,4380_1625 -4380_77941,295,4380_95894,Sligo,49123-00019-1,0,4380_7778208_640502,4380_1625 -4380_77941,296,4380_95895,Sligo,49129-00021-1,0,4380_7778208_640502,4380_1625 -4380_77941,285,4380_95903,Donegal,49187-00009-1,0,4380_7778208_640601,4380_1627 -4380_77941,286,4380_95904,Donegal,49185-00010-1,0,4380_7778208_640601,4380_1627 -4380_77941,297,4380_95905,Donegal,49184-00008-1,0,4380_7778208_640601,4380_1627 -4380_77941,287,4380_95906,Donegal,49189-00012-1,0,4380_7778208_640601,4380_1627 -4380_77941,288,4380_95907,Donegal,49180-00011-1,0,4380_7778208_640601,4380_1627 -4380_77941,289,4380_95908,Donegal,49178-00014-1,0,4380_7778208_640601,4380_1627 -4380_77941,290,4380_95909,Donegal,49188-00015-1,0,4380_7778208_640601,4380_1627 -4380_77941,291,4380_95910,Donegal,49182-00013-1,0,4380_7778208_640601,4380_1627 -4380_77941,292,4380_95911,Donegal,49186-00016-1,0,4380_7778208_640601,4380_1627 -4380_77941,293,4380_95912,Donegal,49181-00017-1,0,4380_7778208_640601,4380_1627 -4380_77941,294,4380_95913,Donegal,49190-00018-1,0,4380_7778208_640601,4380_1627 -4380_77941,295,4380_95914,Donegal,49179-00019-1,0,4380_7778208_640601,4380_1627 -4380_77941,296,4380_95915,Donegal,49183-00021-1,0,4380_7778208_640601,4380_1627 -4380_77941,285,4380_95923,Letterkenny,49282-00009-1,0,4380_7778208_640603,4380_1623 -4380_77941,286,4380_95924,Letterkenny,49293-00010-1,0,4380_7778208_640603,4380_1623 -4380_77941,297,4380_95925,Letterkenny,49292-00008-1,0,4380_7778208_640603,4380_1623 -4380_77941,287,4380_95926,Letterkenny,49290-00012-1,0,4380_7778208_640603,4380_1623 -4380_77941,288,4380_95927,Letterkenny,49284-00011-1,0,4380_7778208_640603,4380_1623 -4380_77941,289,4380_95928,Letterkenny,49288-00014-1,0,4380_7778208_640603,4380_1623 -4380_77941,290,4380_95929,Letterkenny,49283-00015-1,0,4380_7778208_640603,4380_1623 -4380_77941,291,4380_95930,Letterkenny,49286-00013-1,0,4380_7778208_640603,4380_1623 -4380_77941,292,4380_95931,Letterkenny,49294-00016-1,0,4380_7778208_640603,4380_1623 -4380_77941,293,4380_95932,Letterkenny,49285-00017-1,0,4380_7778208_640603,4380_1623 -4380_77941,294,4380_95933,Letterkenny,49291-00018-1,0,4380_7778208_640603,4380_1623 -4380_77941,295,4380_95934,Letterkenny,49289-00019-1,0,4380_7778208_640603,4380_1623 -4380_77941,296,4380_95935,Letterkenny,49287-00021-1,0,4380_7778208_640603,4380_1623 -4380_77941,285,4380_95942,Derry,48992-00009-1,1,4380_7778208_640301,4380_1634 -4380_77941,286,4380_95943,Derry,48986-00010-1,1,4380_7778208_640301,4380_1634 -4380_77941,287,4380_95944,Derry,48990-00012-1,1,4380_7778208_640301,4380_1634 -4380_77941,288,4380_95945,Derry,48994-00011-1,1,4380_7778208_640301,4380_1634 -4380_77941,289,4380_95946,Derry,48988-00014-1,1,4380_7778208_640301,4380_1634 -4380_77941,290,4380_95947,Derry,48993-00015-1,1,4380_7778208_640301,4380_1634 -4380_77941,291,4380_95948,Derry,48996-00013-1,1,4380_7778208_640301,4380_1634 -4380_77941,292,4380_95949,Derry,48987-00016-1,1,4380_7778208_640301,4380_1634 -4380_78147,285,4380_9595,Dublin,7013-00009-1,1,4380_7778208_1090906,4380_177 -4380_77941,293,4380_95950,Derry,48995-00017-1,1,4380_7778208_640301,4380_1634 -4380_77941,294,4380_95951,Derry,48991-00018-1,1,4380_7778208_640301,4380_1634 -4380_77941,295,4380_95952,Derry,48989-00019-1,1,4380_7778208_640301,4380_1634 -4380_77941,296,4380_95953,Derry,48997-00021-1,1,4380_7778208_640301,4380_1634 -4380_78147,286,4380_9596,Dublin,7019-00010-1,1,4380_7778208_1090906,4380_177 -4380_77941,285,4380_95961,Derry,49139-00009-1,1,4380_7778208_640601,4380_1639 -4380_77941,286,4380_95962,Derry,49150-00010-1,1,4380_7778208_640601,4380_1639 -4380_77941,297,4380_95963,Derry,49143-00008-1,1,4380_7778208_640601,4380_1639 -4380_77941,287,4380_95964,Derry,49146-00012-1,1,4380_7778208_640601,4380_1639 -4380_77941,288,4380_95965,Derry,49148-00011-1,1,4380_7778208_640601,4380_1639 -4380_77941,289,4380_95966,Derry,49141-00014-1,1,4380_7778208_640601,4380_1639 -4380_77941,290,4380_95967,Derry,49140-00015-1,1,4380_7778208_640601,4380_1639 -4380_77941,291,4380_95968,Derry,49144-00013-1,1,4380_7778208_640601,4380_1639 -4380_77941,292,4380_95969,Derry,49151-00016-1,1,4380_7778208_640601,4380_1639 -4380_78147,288,4380_9597,Dublin,7025-00011-1,1,4380_7778208_1090906,4380_177 -4380_77941,293,4380_95970,Derry,49149-00017-1,1,4380_7778208_640601,4380_1639 -4380_77941,294,4380_95971,Derry,49147-00018-1,1,4380_7778208_640601,4380_1639 -4380_77941,295,4380_95972,Derry,49142-00019-1,1,4380_7778208_640601,4380_1639 -4380_77941,296,4380_95973,Derry,49145-00021-1,1,4380_7778208_640601,4380_1639 -4380_78147,287,4380_9598,Dublin,7031-00012-1,1,4380_7778208_1090906,4380_177 -4380_77941,285,4380_95981,Derry,49215-00009-1,1,4380_7778208_640602,4380_1640 -4380_77941,286,4380_95982,Derry,49208-00010-1,1,4380_7778208_640602,4380_1640 -4380_77941,297,4380_95983,Derry,49214-00008-1,1,4380_7778208_640602,4380_1640 -4380_77941,287,4380_95984,Derry,49204-00012-1,1,4380_7778208_640602,4380_1640 -4380_77941,288,4380_95985,Derry,49212-00011-1,1,4380_7778208_640602,4380_1640 -4380_77941,289,4380_95986,Derry,49210-00014-1,1,4380_7778208_640602,4380_1640 -4380_77941,290,4380_95987,Derry,49216-00015-1,1,4380_7778208_640602,4380_1640 -4380_77941,291,4380_95988,Derry,49206-00013-1,1,4380_7778208_640602,4380_1640 -4380_77941,292,4380_95989,Derry,49209-00016-1,1,4380_7778208_640602,4380_1640 -4380_78147,289,4380_9599,Dublin,7007-00014-1,1,4380_7778208_1090906,4380_177 -4380_77941,293,4380_95990,Derry,49213-00017-1,1,4380_7778208_640602,4380_1640 -4380_77941,294,4380_95991,Derry,49205-00018-1,1,4380_7778208_640602,4380_1640 -4380_77941,295,4380_95992,Derry,49211-00019-1,1,4380_7778208_640602,4380_1640 -4380_77941,296,4380_95993,Derry,49207-00021-1,1,4380_7778208_640602,4380_1640 -4380_77946,288,4380_96,Dundalk,50469-00011-1,0,4380_7778208_1000915,4380_1 -4380_78147,290,4380_9600,Dublin,55477-00015-1,1,4380_7778208_1090906,4380_177 -4380_77941,285,4380_96001,Derry,49252-00009-1,1,4380_7778208_640603,4380_1642 -4380_77941,286,4380_96002,Derry,49249-00010-1,1,4380_7778208_640603,4380_1642 -4380_77941,297,4380_96003,Derry,49251-00008-1,1,4380_7778208_640603,4380_1642 -4380_77941,287,4380_96004,Derry,49247-00012-1,1,4380_7778208_640603,4380_1642 -4380_77941,288,4380_96005,Derry,49254-00011-1,1,4380_7778208_640603,4380_1642 -4380_77941,289,4380_96006,Derry,49245-00014-1,1,4380_7778208_640603,4380_1642 -4380_77941,290,4380_96007,Derry,49253-00015-1,1,4380_7778208_640603,4380_1642 -4380_77941,291,4380_96008,Derry,49243-00013-1,1,4380_7778208_640603,4380_1642 -4380_77941,292,4380_96009,Derry,49250-00016-1,1,4380_7778208_640603,4380_1642 -4380_78147,292,4380_9601,Dublin,55473-00016-1,1,4380_7778208_1090906,4380_177 -4380_77941,293,4380_96010,Derry,49255-00017-1,1,4380_7778208_640603,4380_1642 -4380_77941,294,4380_96011,Derry,49248-00018-1,1,4380_7778208_640603,4380_1642 -4380_77941,295,4380_96012,Derry,49246-00019-1,1,4380_7778208_640603,4380_1642 -4380_77941,296,4380_96013,Derry,49244-00021-1,1,4380_7778208_640603,4380_1642 -4380_78147,293,4380_9602,Dublin,55476-00017-1,1,4380_7778208_1090906,4380_177 -4380_77941,285,4380_96021,Derry,49015-00009-1,1,4380_7778208_640302,4380_1635 -4380_77941,286,4380_96022,Derry,49019-00010-1,1,4380_7778208_640302,4380_1635 -4380_77941,297,4380_96023,Derry,49012-00008-1,1,4380_7778208_640302,4380_1635 -4380_77941,287,4380_96024,Derry,49013-00012-1,1,4380_7778208_640302,4380_1635 -4380_77941,288,4380_96025,Derry,49017-00011-1,1,4380_7778208_640302,4380_1635 -4380_77941,289,4380_96026,Derry,49010-00014-1,1,4380_7778208_640302,4380_1635 -4380_77941,290,4380_96027,Derry,49016-00015-1,1,4380_7778208_640302,4380_1635 -4380_77941,291,4380_96028,Derry,49032-00013-1,1,4380_7778208_640303,4380_1635 -4380_77941,292,4380_96029,Derry,49020-00016-1,1,4380_7778208_640302,4380_1635 -4380_78147,294,4380_9603,Dublin,55475-00018-1,1,4380_7778208_1090906,4380_177 -4380_77941,293,4380_96030,Derry,49018-00017-1,1,4380_7778208_640302,4380_1635 -4380_77941,294,4380_96031,Derry,49014-00018-1,1,4380_7778208_640302,4380_1635 -4380_77941,295,4380_96032,Derry,49011-00019-1,1,4380_7778208_640302,4380_1635 -4380_77941,296,4380_96033,Derry,49033-00021-1,1,4380_7778208_640303,4380_1635 -4380_78147,295,4380_9604,Dublin,55474-00019-1,1,4380_7778208_1090906,4380_177 -4380_77941,285,4380_96040,Derry,49060-00009-1,1,4380_7778208_640501,4380_1636 -4380_77941,286,4380_96041,Derry,49064-00010-1,1,4380_7778208_640501,4380_1636 -4380_77941,287,4380_96042,Derry,49062-00012-1,1,4380_7778208_640501,4380_1636 -4380_77941,288,4380_96043,Derry,49066-00011-1,1,4380_7778208_640501,4380_1636 -4380_77941,289,4380_96044,Derry,49068-00014-1,1,4380_7778208_640501,4380_1636 -4380_77941,290,4380_96045,Derry,49061-00015-1,1,4380_7778208_640501,4380_1636 -4380_77941,291,4380_96046,Derry,49070-00013-1,1,4380_7778208_640501,4380_1636 -4380_77941,292,4380_96047,Derry,49065-00016-1,1,4380_7778208_640501,4380_1636 -4380_77941,293,4380_96048,Derry,49067-00017-1,1,4380_7778208_640501,4380_1636 -4380_77941,294,4380_96049,Derry,49063-00018-1,1,4380_7778208_640501,4380_1636 -4380_77941,295,4380_96050,Derry,49069-00019-1,1,4380_7778208_640501,4380_1636 -4380_77941,296,4380_96051,Derry,49071-00021-1,1,4380_7778208_640501,4380_1636 -4380_77941,285,4380_96059,Sligo,49100-00009-1,1,4380_7778208_640502,4380_1637 -4380_78147,297,4380_9606,Dublin,5365-00008-1,1,4380_7778208_1090102,4380_177 -4380_77941,286,4380_96060,Sligo,49104-00010-1,1,4380_7778208_640502,4380_1637 -4380_77941,297,4380_96061,Derry,49137-00008-1,1,4380_7778208_640504,4380_1647 -4380_77941,287,4380_96062,Sligo,49096-00012-1,1,4380_7778208_640502,4380_1637 -4380_77941,288,4380_96063,Sligo,49106-00011-1,1,4380_7778208_640502,4380_1637 -4380_77941,289,4380_96064,Sligo,49098-00014-1,1,4380_7778208_640502,4380_1637 -4380_77941,290,4380_96065,Sligo,49101-00015-1,1,4380_7778208_640502,4380_1637 -4380_77941,291,4380_96066,Sligo,49102-00013-1,1,4380_7778208_640502,4380_1637 -4380_77941,292,4380_96067,Sligo,49105-00016-1,1,4380_7778208_640502,4380_1637 -4380_77941,293,4380_96068,Sligo,49107-00017-1,1,4380_7778208_640502,4380_1637 -4380_77941,294,4380_96069,Sligo,49097-00018-1,1,4380_7778208_640502,4380_1637 -4380_77941,295,4380_96070,Sligo,49099-00019-1,1,4380_7778208_640502,4380_1637 -4380_77941,296,4380_96071,Sligo,49103-00021-1,1,4380_7778208_640502,4380_1637 -4380_78147,291,4380_9608,Dublin,5497-00013-1,1,4380_7778208_1090104,4380_177 -4380_77941,285,4380_96080,Letterkenny,49300-00009-1,1,4380_7778208_640604,4380_1644 -4380_77941,286,4380_96081,Letterkenny,49304-00010-1,1,4380_7778208_640604,4380_1644 -4380_77941,297,4380_96082,Derry,49108-00008-1,1,4380_7778208_640502,4380_1645 -4380_77941,297,4380_96083,Letterkenny,49295-00008-1,1,4380_7778208_640604,4380_1644 -4380_77941,287,4380_96084,Letterkenny,49298-00012-1,1,4380_7778208_640604,4380_1644 -4380_77941,288,4380_96085,Letterkenny,49302-00011-1,1,4380_7778208_640604,4380_1644 -4380_77941,289,4380_96086,Letterkenny,49296-00014-1,1,4380_7778208_640604,4380_1644 -4380_77941,290,4380_96087,Letterkenny,49301-00015-1,1,4380_7778208_640604,4380_1644 -4380_77941,291,4380_96088,Letterkenny,49306-00013-1,1,4380_7778208_640604,4380_1644 -4380_77941,292,4380_96089,Letterkenny,49305-00016-1,1,4380_7778208_640604,4380_1644 -4380_78147,296,4380_9609,Dublin,54814-00021-1,1,4380_7778208_1090104,4380_177 -4380_77941,293,4380_96090,Letterkenny,49303-00017-1,1,4380_7778208_640604,4380_1644 -4380_77941,294,4380_96091,Letterkenny,49299-00018-1,1,4380_7778208_640604,4380_1644 -4380_77941,295,4380_96092,Letterkenny,49297-00019-1,1,4380_7778208_640604,4380_1644 -4380_77941,296,4380_96093,Letterkenny,49307-00021-1,1,4380_7778208_640604,4380_1644 -4380_77941,285,4380_96101,Derry,49172-00009-1,1,4380_7778208_640601,4380_1635 -4380_77941,286,4380_96102,Derry,49170-00010-1,1,4380_7778208_640601,4380_1635 -4380_77941,297,4380_96103,Derry,49169-00008-1,1,4380_7778208_640601,4380_1635 -4380_77941,287,4380_96104,Derry,49174-00012-1,1,4380_7778208_640601,4380_1635 -4380_77941,288,4380_96105,Derry,49165-00011-1,1,4380_7778208_640601,4380_1635 -4380_77941,289,4380_96106,Derry,49176-00014-1,1,4380_7778208_640601,4380_1635 -4380_77941,290,4380_96107,Derry,49173-00015-1,1,4380_7778208_640601,4380_1635 -4380_77941,291,4380_96108,Derry,49167-00013-1,1,4380_7778208_640601,4380_1635 -4380_77941,292,4380_96109,Derry,49171-00016-1,1,4380_7778208_640601,4380_1635 -4380_77941,293,4380_96110,Derry,49166-00017-1,1,4380_7778208_640601,4380_1635 -4380_77941,294,4380_96111,Derry,49175-00018-1,1,4380_7778208_640601,4380_1635 -4380_77941,295,4380_96112,Derry,49177-00019-1,1,4380_7778208_640601,4380_1635 -4380_77941,296,4380_96113,Derry,49168-00021-1,1,4380_7778208_640601,4380_1635 -4380_77941,285,4380_96120,Derry,49119-00009-1,1,4380_7778208_640502,4380_1638 -4380_77941,286,4380_96121,Derry,49111-00010-1,1,4380_7778208_640502,4380_1638 -4380_77941,287,4380_96122,Derry,49109-00012-1,1,4380_7778208_640502,4380_1638 -4380_77941,288,4380_96123,Derry,49117-00011-1,1,4380_7778208_640502,4380_1638 -4380_77941,289,4380_96124,Derry,49115-00014-1,1,4380_7778208_640502,4380_1638 -4380_77941,290,4380_96125,Derry,49120-00015-1,1,4380_7778208_640502,4380_1638 -4380_77941,291,4380_96126,Derry,49113-00013-1,1,4380_7778208_640502,4380_1638 -4380_77941,292,4380_96127,Derry,49112-00016-1,1,4380_7778208_640502,4380_1638 -4380_77941,293,4380_96128,Derry,49118-00017-1,1,4380_7778208_640502,4380_1638 -4380_77941,294,4380_96129,Derry,49110-00018-1,1,4380_7778208_640502,4380_1638 -4380_77941,295,4380_96130,Derry,49116-00019-1,1,4380_7778208_640502,4380_1638 -4380_77941,296,4380_96131,Derry,49114-00021-1,1,4380_7778208_640502,4380_1638 -4380_77941,285,4380_96139,Derry,49276-00009-1,1,4380_7778208_640603,4380_1643 -4380_77941,286,4380_96140,Derry,49274-00010-1,1,4380_7778208_640603,4380_1643 -4380_77941,297,4380_96141,Derry,49269-00008-1,1,4380_7778208_640603,4380_1643 -4380_77941,287,4380_96142,Derry,49278-00012-1,1,4380_7778208_640603,4380_1643 -4380_77941,288,4380_96143,Derry,49270-00011-1,1,4380_7778208_640603,4380_1643 -4380_77941,289,4380_96144,Derry,49280-00014-1,1,4380_7778208_640603,4380_1643 -4380_77941,290,4380_96145,Derry,49277-00015-1,1,4380_7778208_640603,4380_1643 -4380_77941,291,4380_96146,Derry,49272-00013-1,1,4380_7778208_640603,4380_1643 -4380_77941,292,4380_96147,Derry,49275-00016-1,1,4380_7778208_640603,4380_1643 -4380_77941,293,4380_96148,Derry,49271-00017-1,1,4380_7778208_640603,4380_1643 -4380_77941,294,4380_96149,Derry,49279-00018-1,1,4380_7778208_640603,4380_1643 -4380_78147,285,4380_9615,Dublin,5998-00009-1,1,4380_7778208_1090114,4380_176 -4380_77941,295,4380_96150,Derry,49281-00019-1,1,4380_7778208_640603,4380_1643 -4380_77941,296,4380_96151,Derry,49273-00021-1,1,4380_7778208_640603,4380_1643 -4380_77941,285,4380_96159,Sligo,49232-00009-1,1,4380_7778208_640602,4380_1641 -4380_78147,286,4380_9616,Dublin,6001-00010-1,1,4380_7778208_1090114,4380_176 -4380_77941,286,4380_96160,Sligo,49239-00010-1,1,4380_7778208_640602,4380_1641 -4380_77941,297,4380_96161,Sligo,49238-00008-1,1,4380_7778208_640602,4380_1641 -4380_77941,287,4380_96162,Sligo,49241-00012-1,1,4380_7778208_640602,4380_1641 -4380_77941,288,4380_96163,Sligo,49236-00011-1,1,4380_7778208_640602,4380_1641 -4380_77941,289,4380_96164,Sligo,49230-00014-1,1,4380_7778208_640602,4380_1641 -4380_77941,290,4380_96165,Sligo,49233-00015-1,1,4380_7778208_640602,4380_1641 -4380_77941,291,4380_96166,Sligo,49234-00013-1,1,4380_7778208_640602,4380_1641 -4380_77941,292,4380_96167,Sligo,49240-00016-1,1,4380_7778208_640602,4380_1641 -4380_77941,293,4380_96168,Sligo,49237-00017-1,1,4380_7778208_640602,4380_1641 -4380_77941,294,4380_96169,Sligo,49242-00018-1,1,4380_7778208_640602,4380_1641 -4380_78147,288,4380_9617,Dublin,6004-00011-1,1,4380_7778208_1090114,4380_176 -4380_77941,295,4380_96170,Sligo,49231-00019-1,1,4380_7778208_640602,4380_1641 -4380_77941,296,4380_96171,Sligo,49235-00021-1,1,4380_7778208_640602,4380_1641 -4380_77941,297,4380_96173,Sligo,49135-00008-1,1,4380_7778208_640503,4380_1646 -4380_77942,297,4380_96176,Cavan,49323-00008-1,0,4380_7778208_650301,4380_1649 -4380_77942,287,4380_96177,Cavan,49321-00012-1,0,4380_7778208_650301,4380_1650 -4380_77942,294,4380_96178,Cavan,49322-00018-1,0,4380_7778208_650301,4380_1650 -4380_78147,287,4380_9618,Dublin,6007-00012-1,1,4380_7778208_1090114,4380_176 -4380_77942,291,4380_96180,Monaghan,49327-00013-1,0,4380_7778208_650901,4380_1648 -4380_77942,296,4380_96181,Monaghan,49328-00021-1,0,4380_7778208_650901,4380_1648 -4380_77942,285,4380_96187,Monaghan,43500-00009-1,0,4380_7778208_650901,4380_1648 -4380_77942,286,4380_96188,Monaghan,43506-00010-1,0,4380_7778208_650901,4380_1648 -4380_77942,287,4380_96189,Monaghan,43512-00012-1,0,4380_7778208_650901,4380_1648 -4380_78147,289,4380_9619,Dublin,5995-00014-1,1,4380_7778208_1090114,4380_176 -4380_77942,288,4380_96190,Monaghan,43510-00011-1,0,4380_7778208_650901,4380_1648 -4380_77942,289,4380_96191,Monaghan,43498-00014-1,0,4380_7778208_650901,4380_1648 -4380_77942,290,4380_96192,Monaghan,49331-00015-1,0,4380_7778208_650901,4380_1648 -4380_77942,292,4380_96193,Monaghan,49333-00016-1,0,4380_7778208_650901,4380_1648 -4380_77942,293,4380_96194,Monaghan,49332-00017-1,0,4380_7778208_650901,4380_1648 -4380_77942,294,4380_96195,Monaghan,49330-00018-1,0,4380_7778208_650901,4380_1648 -4380_77942,295,4380_96196,Monaghan,49329-00019-1,0,4380_7778208_650901,4380_1648 -4380_77942,287,4380_96198,Cavan,43513-00012-1,1,4380_7778208_650901,4380_1651 -4380_77942,294,4380_96199,Cavan,49334-00018-1,1,4380_7778208_650901,4380_1651 -4380_78147,290,4380_9620,Dublin,55219-00015-1,1,4380_7778208_1090114,4380_176 -4380_77942,285,4380_96205,Cavan,43501-00009-1,1,4380_7778208_650901,4380_1651 -4380_77942,286,4380_96206,Cavan,43507-00010-1,1,4380_7778208_650901,4380_1651 -4380_77942,288,4380_96207,Cavan,43511-00011-1,1,4380_7778208_650901,4380_1651 -4380_77942,289,4380_96208,Cavan,43499-00014-1,1,4380_7778208_650901,4380_1651 -4380_77942,290,4380_96209,Cavan,49340-00015-1,1,4380_7778208_650901,4380_1651 -4380_78147,292,4380_9621,Dublin,55221-00016-1,1,4380_7778208_1090114,4380_176 -4380_77942,291,4380_96210,Cavan,49335-00013-1,1,4380_7778208_650901,4380_1654 -4380_77942,292,4380_96211,Cavan,49339-00016-1,1,4380_7778208_650901,4380_1651 -4380_77942,293,4380_96212,Cavan,49337-00017-1,1,4380_7778208_650901,4380_1651 -4380_77942,295,4380_96213,Cavan,49338-00019-1,1,4380_7778208_650901,4380_1651 -4380_77942,296,4380_96214,Cavan,49336-00021-1,1,4380_7778208_650901,4380_1654 -4380_77942,297,4380_96217,Galway,49324-00008-1,1,4380_7778208_650301,4380_1652 -4380_77942,287,4380_96218,Galway,49325-00012-1,1,4380_7778208_650301,4380_1653 -4380_77942,294,4380_96219,Galway,49326-00018-1,1,4380_7778208_650301,4380_1653 -4380_78147,293,4380_9622,Dublin,55220-00017-1,1,4380_7778208_1090114,4380_176 -4380_77943,285,4380_96226,Mullingar,49355-00009-1,0,4380_7778208_701201,4380_1655 -4380_77943,286,4380_96227,Mullingar,49359-00010-1,0,4380_7778208_701201,4380_1655 -4380_77943,287,4380_96228,Mullingar,49361-00012-1,0,4380_7778208_701201,4380_1655 -4380_77943,288,4380_96229,Mullingar,49363-00011-1,0,4380_7778208_701201,4380_1655 -4380_78147,294,4380_9623,Dublin,55222-00018-1,1,4380_7778208_1090114,4380_176 -4380_77943,289,4380_96230,Mullingar,49353-00014-1,0,4380_7778208_701201,4380_1655 -4380_77943,290,4380_96231,Mullingar,49356-00015-1,0,4380_7778208_701201,4380_1655 -4380_77943,291,4380_96232,Mullingar,49357-00013-1,0,4380_7778208_701201,4380_1658 -4380_77943,292,4380_96233,Mullingar,49360-00016-1,0,4380_7778208_701201,4380_1655 -4380_77943,293,4380_96234,Mullingar,49364-00017-1,0,4380_7778208_701201,4380_1655 -4380_77943,294,4380_96235,Mullingar,49362-00018-1,0,4380_7778208_701201,4380_1655 -4380_77943,295,4380_96236,Mullingar,49354-00019-1,0,4380_7778208_701201,4380_1655 -4380_77943,296,4380_96237,Mullingar,49358-00021-1,0,4380_7778208_701201,4380_1658 -4380_78147,295,4380_9624,Dublin,55218-00019-1,1,4380_7778208_1090114,4380_176 -4380_77943,285,4380_96244,Mullingar,49377-00009-1,0,4380_7778208_701201,4380_1656 -4380_77943,286,4380_96245,Mullingar,49381-00010-1,0,4380_7778208_701201,4380_1656 -4380_77943,287,4380_96246,Mullingar,49387-00012-1,0,4380_7778208_701201,4380_1656 -4380_77943,288,4380_96247,Mullingar,49385-00011-1,0,4380_7778208_701201,4380_1656 -4380_77943,289,4380_96248,Mullingar,49379-00014-1,0,4380_7778208_701201,4380_1656 -4380_77943,290,4380_96249,Mullingar,49378-00015-1,0,4380_7778208_701201,4380_1656 -4380_77943,291,4380_96250,Mullingar,49383-00013-1,0,4380_7778208_701201,4380_1659 -4380_77943,292,4380_96251,Mullingar,49382-00016-1,0,4380_7778208_701201,4380_1656 -4380_77943,293,4380_96252,Mullingar,49386-00017-1,0,4380_7778208_701201,4380_1656 -4380_77943,294,4380_96253,Mullingar,49388-00018-1,0,4380_7778208_701201,4380_1656 -4380_77943,295,4380_96254,Mullingar,49380-00019-1,0,4380_7778208_701201,4380_1656 -4380_77943,296,4380_96255,Mullingar,49384-00021-1,0,4380_7778208_701201,4380_1659 -4380_77943,285,4380_96262,Mullingar,49403-00009-1,0,4380_7778208_701201,4380_1657 -4380_77943,286,4380_96263,Mullingar,49409-00010-1,0,4380_7778208_701201,4380_1657 -4380_77943,287,4380_96264,Mullingar,49411-00012-1,0,4380_7778208_701201,4380_1657 -4380_77943,288,4380_96265,Mullingar,49407-00011-1,0,4380_7778208_701201,4380_1657 -4380_77943,289,4380_96266,Mullingar,49401-00014-1,0,4380_7778208_701201,4380_1657 -4380_77943,290,4380_96267,Mullingar,49404-00015-1,0,4380_7778208_701201,4380_1657 -4380_77943,291,4380_96268,Mullingar,49405-00013-1,0,4380_7778208_701201,4380_1660 -4380_77943,292,4380_96269,Mullingar,49410-00016-1,0,4380_7778208_701201,4380_1657 -4380_78147,297,4380_9627,Dublin,6957-00008-1,1,4380_7778208_1090904,4380_181 -4380_77943,293,4380_96270,Mullingar,49408-00017-1,0,4380_7778208_701201,4380_1657 -4380_77943,294,4380_96271,Mullingar,49412-00018-1,0,4380_7778208_701201,4380_1657 -4380_77943,295,4380_96272,Mullingar,49402-00019-1,0,4380_7778208_701201,4380_1657 -4380_77943,296,4380_96273,Mullingar,49406-00021-1,0,4380_7778208_701201,4380_1660 -4380_78147,291,4380_9628,Dublin,5634-00013-1,1,4380_7778208_1090106,4380_184 -4380_77943,285,4380_96280,Athlone,49345-00009-1,1,4380_7778208_701201,4380_1661 -4380_77943,286,4380_96281,Athlone,49349-00010-1,1,4380_7778208_701201,4380_1661 -4380_77943,287,4380_96282,Athlone,49351-00012-1,1,4380_7778208_701201,4380_1661 -4380_77943,288,4380_96283,Athlone,49341-00011-1,1,4380_7778208_701201,4380_1661 -4380_77943,289,4380_96284,Athlone,49343-00014-1,1,4380_7778208_701201,4380_1661 -4380_77943,290,4380_96285,Athlone,49346-00015-1,1,4380_7778208_701201,4380_1661 -4380_77943,291,4380_96286,Athlone,49347-00013-1,1,4380_7778208_701201,4380_1664 -4380_77943,292,4380_96287,Athlone,49350-00016-1,1,4380_7778208_701201,4380_1661 -4380_77943,293,4380_96288,Athlone,49342-00017-1,1,4380_7778208_701201,4380_1661 -4380_77943,294,4380_96289,Athlone,49352-00018-1,1,4380_7778208_701201,4380_1661 -4380_78147,296,4380_9629,Dublin,54923-00021-1,1,4380_7778208_1090106,4380_184 -4380_77943,295,4380_96290,Athlone,49344-00019-1,1,4380_7778208_701201,4380_1661 -4380_77943,296,4380_96291,Athlone,49348-00021-1,1,4380_7778208_701201,4380_1664 -4380_77943,285,4380_96298,Athlone,49371-00009-1,1,4380_7778208_701201,4380_1662 -4380_77943,286,4380_96299,Athlone,49375-00010-1,1,4380_7778208_701201,4380_1662 -4380_78113,285,4380_963,Dublin via Airport,49839-00009-1,1,4380_7778208_1000905,4380_18 -4380_77943,287,4380_96300,Athlone,49373-00012-1,1,4380_7778208_701201,4380_1662 -4380_77943,288,4380_96301,Athlone,49369-00011-1,1,4380_7778208_701201,4380_1662 -4380_77943,289,4380_96302,Athlone,49367-00014-1,1,4380_7778208_701201,4380_1662 -4380_77943,290,4380_96303,Athlone,49372-00015-1,1,4380_7778208_701201,4380_1662 -4380_77943,291,4380_96304,Athlone,49365-00013-1,1,4380_7778208_701201,4380_1665 -4380_77943,292,4380_96305,Athlone,49376-00016-1,1,4380_7778208_701201,4380_1662 -4380_77943,293,4380_96306,Athlone,49370-00017-1,1,4380_7778208_701201,4380_1662 -4380_77943,294,4380_96307,Athlone,49374-00018-1,1,4380_7778208_701201,4380_1662 -4380_77943,295,4380_96308,Athlone,49368-00019-1,1,4380_7778208_701201,4380_1662 -4380_77943,296,4380_96309,Athlone,49366-00021-1,1,4380_7778208_701201,4380_1665 -4380_77943,285,4380_96316,Athlone,49391-00009-1,1,4380_7778208_701201,4380_1663 -4380_77943,286,4380_96317,Athlone,49397-00010-1,1,4380_7778208_701201,4380_1663 -4380_77943,287,4380_96318,Athlone,49399-00012-1,1,4380_7778208_701201,4380_1663 -4380_77943,288,4380_96319,Athlone,49395-00011-1,1,4380_7778208_701201,4380_1663 -4380_77943,289,4380_96320,Athlone,49389-00014-1,1,4380_7778208_701201,4380_1663 -4380_77943,290,4380_96321,Athlone,49392-00015-1,1,4380_7778208_701201,4380_1663 -4380_77943,291,4380_96322,Athlone,49393-00013-1,1,4380_7778208_701201,4380_1666 -4380_77943,292,4380_96323,Athlone,49398-00016-1,1,4380_7778208_701201,4380_1663 -4380_77943,293,4380_96324,Athlone,49396-00017-1,1,4380_7778208_701201,4380_1663 -4380_77943,294,4380_96325,Athlone,49400-00018-1,1,4380_7778208_701201,4380_1663 -4380_77943,295,4380_96326,Athlone,49390-00019-1,1,4380_7778208_701201,4380_1663 -4380_77943,296,4380_96327,Athlone,49394-00021-1,1,4380_7778208_701201,4380_1666 -4380_77944,285,4380_96334,Athlone,49461-00009-1,0,4380_7778208_721201,4380_1667 -4380_77944,286,4380_96335,Athlone,49471-00010-1,0,4380_7778208_721201,4380_1667 -4380_77944,287,4380_96336,Athlone,49463-00012-1,0,4380_7778208_721201,4380_1667 -4380_77944,288,4380_96337,Athlone,49467-00011-1,0,4380_7778208_721201,4380_1667 -4380_77944,289,4380_96338,Athlone,49469-00014-1,0,4380_7778208_721201,4380_1667 -4380_77944,290,4380_96339,Athlone,49462-00015-1,0,4380_7778208_721201,4380_1667 -4380_77944,291,4380_96340,Athlone,49465-00013-1,0,4380_7778208_721201,4380_1668 -4380_77944,292,4380_96341,Athlone,49472-00016-1,0,4380_7778208_721201,4380_1667 -4380_77944,293,4380_96342,Athlone,49468-00017-1,0,4380_7778208_721201,4380_1667 -4380_77944,294,4380_96343,Athlone,49464-00018-1,0,4380_7778208_721201,4380_1667 -4380_77944,295,4380_96344,Athlone,49470-00019-1,0,4380_7778208_721201,4380_1667 -4380_77944,296,4380_96345,Athlone,49466-00021-1,0,4380_7778208_721201,4380_1668 -4380_78147,285,4380_9635,Dublin,6080-00009-1,1,4380_7778208_1090117,4380_177 -4380_77944,285,4380_96353,Athlone,49429-00009-1,0,4380_7778208_720401,4380_1667 -4380_77944,286,4380_96354,Athlone,49427-00010-1,0,4380_7778208_720401,4380_1667 -4380_77944,297,4380_96355,Athlone,49433-00008-1,0,4380_7778208_720401,4380_1668 -4380_77944,287,4380_96356,Athlone,49423-00012-1,0,4380_7778208_720401,4380_1667 -4380_77944,288,4380_96357,Athlone,49434-00011-1,0,4380_7778208_720401,4380_1667 -4380_77944,289,4380_96358,Athlone,49425-00014-1,0,4380_7778208_720401,4380_1667 -4380_77944,290,4380_96359,Athlone,49430-00015-1,0,4380_7778208_720401,4380_1667 -4380_78147,286,4380_9636,Dublin,6085-00010-1,1,4380_7778208_1090117,4380_177 -4380_77944,291,4380_96360,Athlone,49431-00013-1,0,4380_7778208_720401,4380_1669 -4380_77944,292,4380_96361,Athlone,49428-00016-1,0,4380_7778208_720401,4380_1667 -4380_77944,293,4380_96362,Athlone,49435-00017-1,0,4380_7778208_720401,4380_1667 -4380_77944,294,4380_96363,Athlone,49424-00018-1,0,4380_7778208_720401,4380_1667 -4380_77944,295,4380_96364,Athlone,49426-00019-1,0,4380_7778208_720401,4380_1667 -4380_77944,296,4380_96365,Athlone,49432-00021-1,0,4380_7778208_720401,4380_1669 -4380_78147,288,4380_9637,Dublin,6090-00011-1,1,4380_7778208_1090117,4380_177 -4380_77944,285,4380_96373,Athlone,49490-00009-1,0,4380_7778208_721201,4380_1667 -4380_77944,286,4380_96374,Athlone,49488-00010-1,0,4380_7778208_721201,4380_1667 -4380_77944,297,4380_96375,Athlone,49496-00008-1,0,4380_7778208_721201,4380_1668 -4380_77944,287,4380_96376,Athlone,49486-00012-1,0,4380_7778208_721201,4380_1667 -4380_77944,288,4380_96377,Athlone,49497-00011-1,0,4380_7778208_721201,4380_1667 -4380_77944,289,4380_96378,Athlone,49492-00014-1,0,4380_7778208_721201,4380_1667 -4380_77944,290,4380_96379,Athlone,49491-00015-1,0,4380_7778208_721201,4380_1667 -4380_78147,287,4380_9638,Dublin,6095-00012-1,1,4380_7778208_1090117,4380_177 -4380_77944,291,4380_96380,Athlone,49494-00013-1,0,4380_7778208_721201,4380_1669 -4380_77944,292,4380_96381,Athlone,49489-00016-1,0,4380_7778208_721201,4380_1667 -4380_77944,293,4380_96382,Athlone,49498-00017-1,0,4380_7778208_721201,4380_1667 -4380_77944,294,4380_96383,Athlone,49487-00018-1,0,4380_7778208_721201,4380_1667 -4380_77944,295,4380_96384,Athlone,49493-00019-1,0,4380_7778208_721201,4380_1667 -4380_77944,296,4380_96385,Athlone,49495-00021-1,0,4380_7778208_721201,4380_1669 -4380_78147,289,4380_9639,Dublin,6075-00014-1,1,4380_7778208_1090117,4380_177 -4380_77944,285,4380_96392,Limerick Bus Station,49459-00009-1,1,4380_7778208_721201,4380_1670 -4380_77944,286,4380_96393,Limerick Bus Station,49457-00010-1,1,4380_7778208_721201,4380_1670 -4380_77944,287,4380_96394,Limerick Bus Station,49449-00012-1,1,4380_7778208_721201,4380_1670 -4380_77944,288,4380_96395,Limerick Bus Station,49453-00011-1,1,4380_7778208_721201,4380_1670 -4380_77944,289,4380_96396,Limerick Bus Station,49451-00014-1,1,4380_7778208_721201,4380_1670 -4380_77944,290,4380_96397,Limerick Bus Station,49460-00015-1,1,4380_7778208_721201,4380_1670 -4380_77944,291,4380_96398,Limerick Bus Station,49455-00013-1,1,4380_7778208_721201,4380_1671 -4380_77944,292,4380_96399,Limerick Bus Station,49458-00016-1,1,4380_7778208_721201,4380_1670 -4380_78113,286,4380_964,Dublin via Airport,49835-00010-1,1,4380_7778208_1000905,4380_18 -4380_78147,290,4380_9640,Dublin,55286-00015-1,1,4380_7778208_1090117,4380_177 -4380_77944,293,4380_96400,Limerick Bus Station,49454-00017-1,1,4380_7778208_721201,4380_1670 -4380_77944,294,4380_96401,Limerick Bus Station,49450-00018-1,1,4380_7778208_721201,4380_1670 -4380_77944,295,4380_96402,Limerick Bus Station,49452-00019-1,1,4380_7778208_721201,4380_1670 -4380_77944,296,4380_96403,Limerick Bus Station,49456-00021-1,1,4380_7778208_721201,4380_1671 -4380_78147,292,4380_9641,Dublin,55285-00016-1,1,4380_7778208_1090117,4380_177 -4380_77944,285,4380_96411,Limerick Bus Station,49479-00009-1,1,4380_7778208_721201,4380_1670 -4380_77944,286,4380_96412,Limerick Bus Station,49483-00010-1,1,4380_7778208_721201,4380_1670 -4380_77944,297,4380_96413,Limerick Bus Station,49485-00008-1,1,4380_7778208_721201,4380_1671 -4380_77944,287,4380_96414,Limerick Bus Station,49481-00012-1,1,4380_7778208_721201,4380_1670 -4380_77944,288,4380_96415,Limerick Bus Station,49477-00011-1,1,4380_7778208_721201,4380_1670 -4380_77944,289,4380_96416,Limerick Bus Station,49473-00014-1,1,4380_7778208_721201,4380_1670 -4380_77944,290,4380_96417,Limerick Bus Station,49480-00015-1,1,4380_7778208_721201,4380_1670 -4380_77944,291,4380_96418,Limerick Bus Station,49475-00013-1,1,4380_7778208_721201,4380_1672 -4380_77944,292,4380_96419,Limerick Bus Station,49484-00016-1,1,4380_7778208_721201,4380_1670 -4380_78147,293,4380_9642,Dublin,55288-00017-1,1,4380_7778208_1090117,4380_177 -4380_77944,293,4380_96420,Limerick Bus Station,49478-00017-1,1,4380_7778208_721201,4380_1670 -4380_77944,294,4380_96421,Limerick Bus Station,49482-00018-1,1,4380_7778208_721201,4380_1670 -4380_77944,295,4380_96422,Limerick Bus Station,49474-00019-1,1,4380_7778208_721201,4380_1670 -4380_77944,296,4380_96423,Limerick Bus Station,49476-00021-1,1,4380_7778208_721201,4380_1672 -4380_78147,294,4380_9643,Dublin,55287-00018-1,1,4380_7778208_1090117,4380_177 -4380_77944,285,4380_96431,Limerick Bus Station,49438-00009-1,1,4380_7778208_720401,4380_1670 -4380_77944,286,4380_96432,Limerick Bus Station,49436-00010-1,1,4380_7778208_720401,4380_1670 -4380_77944,297,4380_96433,Limerick Bus Station,49446-00008-1,1,4380_7778208_720401,4380_1671 -4380_77944,287,4380_96434,Limerick Bus Station,49440-00012-1,1,4380_7778208_720401,4380_1670 -4380_77944,288,4380_96435,Limerick Bus Station,49447-00011-1,1,4380_7778208_720401,4380_1670 -4380_77944,289,4380_96436,Limerick Bus Station,49442-00014-1,1,4380_7778208_720401,4380_1670 -4380_77944,290,4380_96437,Limerick Bus Station,49439-00015-1,1,4380_7778208_720401,4380_1670 -4380_77944,291,4380_96438,Limerick Bus Station,49444-00013-1,1,4380_7778208_720401,4380_1672 -4380_77944,292,4380_96439,Limerick Bus Station,49437-00016-1,1,4380_7778208_720401,4380_1670 -4380_78147,295,4380_9644,Dublin,55284-00019-1,1,4380_7778208_1090117,4380_177 -4380_77944,293,4380_96440,Limerick Bus Station,49448-00017-1,1,4380_7778208_720401,4380_1670 -4380_77944,294,4380_96441,Limerick Bus Station,49441-00018-1,1,4380_7778208_720401,4380_1670 -4380_77944,295,4380_96442,Limerick Bus Station,49443-00019-1,1,4380_7778208_720401,4380_1670 -4380_77944,296,4380_96443,Limerick Bus Station,49445-00021-1,1,4380_7778208_720401,4380_1672 -4380_77945,285,4380_96450,Athlone,49505-00009-1,0,4380_7778208_730801,4380_1673 -4380_77945,286,4380_96451,Athlone,49507-00010-1,0,4380_7778208_730801,4380_1673 -4380_77945,287,4380_96452,Athlone,49499-00012-1,0,4380_7778208_730801,4380_1673 -4380_77945,288,4380_96453,Athlone,49503-00011-1,0,4380_7778208_730801,4380_1673 -4380_77945,289,4380_96454,Athlone,49501-00014-1,0,4380_7778208_730801,4380_1673 -4380_77945,290,4380_96455,Athlone,49506-00015-1,0,4380_7778208_730801,4380_1673 -4380_77945,291,4380_96456,Athlone,49509-00013-1,0,4380_7778208_730801,4380_1675 -4380_77945,292,4380_96457,Athlone,49508-00016-1,0,4380_7778208_730801,4380_1673 -4380_77945,293,4380_96458,Athlone,49504-00017-1,0,4380_7778208_730801,4380_1673 -4380_77945,294,4380_96459,Athlone,49500-00018-1,0,4380_7778208_730801,4380_1673 -4380_78147,297,4380_9646,Dublin,6997-00008-1,1,4380_7778208_1090905,4380_177 -4380_77945,295,4380_96460,Athlone,49502-00019-1,0,4380_7778208_730801,4380_1673 -4380_77945,296,4380_96461,Athlone,49510-00021-1,0,4380_7778208_730801,4380_1675 -4380_77945,297,4380_96463,Longford,49511-00008-1,0,4380_7778208_730801,4380_1674 -4380_77945,285,4380_96470,Athlone,49559-00009-1,0,4380_7778208_731201,4380_1673 -4380_77945,286,4380_96471,Athlone,49567-00010-1,0,4380_7778208_731201,4380_1673 -4380_77945,287,4380_96472,Athlone,49557-00012-1,0,4380_7778208_731201,4380_1673 -4380_77945,288,4380_96473,Athlone,49563-00011-1,0,4380_7778208_731201,4380_1673 -4380_77945,289,4380_96474,Athlone,49561-00014-1,0,4380_7778208_731201,4380_1673 -4380_77945,290,4380_96475,Athlone,49560-00015-1,0,4380_7778208_731201,4380_1673 -4380_77945,291,4380_96476,Athlone,49565-00013-1,0,4380_7778208_731201,4380_1675 -4380_77945,292,4380_96477,Athlone,49568-00016-1,0,4380_7778208_731201,4380_1673 -4380_77945,293,4380_96478,Athlone,49564-00017-1,0,4380_7778208_731201,4380_1673 -4380_77945,294,4380_96479,Athlone,49558-00018-1,0,4380_7778208_731201,4380_1673 -4380_78147,291,4380_9648,Dublin,6991-00013-1,1,4380_7778208_1090905,4380_177 -4380_77945,295,4380_96480,Athlone,49562-00019-1,0,4380_7778208_731201,4380_1673 -4380_77945,296,4380_96481,Athlone,49566-00021-1,0,4380_7778208_731201,4380_1675 -4380_77945,285,4380_96488,Waterford,49553-00009-1,1,4380_7778208_731201,4380_1676 -4380_77945,286,4380_96489,Waterford,49551-00010-1,1,4380_7778208_731201,4380_1676 -4380_78147,296,4380_9649,Dublin,55452-00021-1,1,4380_7778208_1090905,4380_177 -4380_77945,287,4380_96490,Waterford,49545-00012-1,1,4380_7778208_731201,4380_1676 -4380_77945,288,4380_96491,Waterford,49555-00011-1,1,4380_7778208_731201,4380_1676 -4380_77945,289,4380_96492,Waterford,49549-00014-1,1,4380_7778208_731201,4380_1676 -4380_77945,290,4380_96493,Waterford,49554-00015-1,1,4380_7778208_731201,4380_1676 -4380_77945,291,4380_96494,Waterford,49547-00013-1,1,4380_7778208_731201,4380_1678 -4380_77945,292,4380_96495,Waterford,49552-00016-1,1,4380_7778208_731201,4380_1676 -4380_77945,293,4380_96496,Waterford,49556-00017-1,1,4380_7778208_731201,4380_1676 -4380_77945,294,4380_96497,Waterford,49546-00018-1,1,4380_7778208_731201,4380_1676 -4380_77945,295,4380_96498,Waterford,49550-00019-1,1,4380_7778208_731201,4380_1676 -4380_77945,296,4380_96499,Waterford,49548-00021-1,1,4380_7778208_731201,4380_1678 -4380_78113,297,4380_965,Dublin via Airport,49743-00008-1,1,4380_7778208_1000904,4380_20 -4380_77945,285,4380_96506,Waterford,49522-00009-1,1,4380_7778208_730801,4380_1676 -4380_77945,286,4380_96507,Waterford,49518-00010-1,1,4380_7778208_730801,4380_1676 -4380_77945,287,4380_96508,Waterford,49520-00012-1,1,4380_7778208_730801,4380_1676 -4380_77945,288,4380_96509,Waterford,49514-00011-1,1,4380_7778208_730801,4380_1676 -4380_77945,289,4380_96510,Waterford,49512-00014-1,1,4380_7778208_730801,4380_1676 -4380_77945,290,4380_96511,Waterford,49523-00015-1,1,4380_7778208_730801,4380_1676 -4380_77945,291,4380_96512,Waterford,49516-00013-1,1,4380_7778208_730801,4380_1678 -4380_77945,292,4380_96513,Waterford,49519-00016-1,1,4380_7778208_730801,4380_1676 -4380_77945,293,4380_96514,Waterford,49515-00017-1,1,4380_7778208_730801,4380_1676 -4380_77945,294,4380_96515,Waterford,49521-00018-1,1,4380_7778208_730801,4380_1676 -4380_77945,295,4380_96516,Waterford,49513-00019-1,1,4380_7778208_730801,4380_1676 -4380_77945,296,4380_96517,Waterford,49517-00021-1,1,4380_7778208_730801,4380_1678 -4380_77945,297,4380_96519,Waterford,49524-00008-1,1,4380_7778208_730801,4380_1677 -4380_78153,285,4380_96525,Athlone,111270-00009-1,0,4380_7778208_4591202,4380_1679 -4380_78153,288,4380_96527,Athlone,111266-00011-1,0,4380_7778208_4591202,4380_1679 -4380_78153,286,4380_96528,Athlone,111262-00010-1,0,4380_7778208_4591202,4380_1679 -4380_78153,291,4380_96529,Athlone,111264-00013-1,0,4380_7778208_4591202,4380_1679 -4380_78153,289,4380_96530,Athlone,111260-00014-1,0,4380_7778208_4591202,4380_1679 -4380_78153,287,4380_96531,Athlone,111268-00012-1,0,4380_7778208_4591202,4380_1679 -4380_78153,292,4380_96532,Athlone,111263-00016-1,0,4380_7778208_4591202,4380_1679 -4380_78153,290,4380_96533,Athlone,111271-00015-1,0,4380_7778208_4591202,4380_1679 -4380_78153,294,4380_96534,Athlone,111269-00018-1,0,4380_7778208_4591202,4380_1679 -4380_78153,293,4380_96535,Athlone,111267-00017-1,0,4380_7778208_4591202,4380_1679 -4380_78153,296,4380_96536,Athlone,111265-00021-1,0,4380_7778208_4591202,4380_1679 -4380_78153,295,4380_96537,Athlone,111261-00019-1,0,4380_7778208_4591202,4380_1679 -4380_78153,285,4380_96543,Athlone,111457-00009-1,0,4380_7778208_4591203,4380_1679 -4380_78153,288,4380_96545,Athlone,111467-00011-1,0,4380_7778208_4591203,4380_1679 -4380_78153,286,4380_96546,Athlone,111461-00010-1,0,4380_7778208_4591203,4380_1679 -4380_78153,291,4380_96547,Athlone,111463-00013-1,0,4380_7778208_4591203,4380_1679 -4380_78153,289,4380_96548,Athlone,111459-00014-1,0,4380_7778208_4591203,4380_1679 -4380_78153,287,4380_96549,Athlone,111465-00012-1,0,4380_7778208_4591203,4380_1679 -4380_78147,285,4380_9655,Dublin,6778-00009-1,1,4380_7778208_1090901,4380_176 -4380_78153,292,4380_96550,Athlone,111462-00016-1,0,4380_7778208_4591203,4380_1679 -4380_78153,290,4380_96551,Athlone,111458-00015-1,0,4380_7778208_4591203,4380_1679 -4380_78153,294,4380_96552,Athlone,111466-00018-1,0,4380_7778208_4591203,4380_1679 -4380_78153,293,4380_96553,Athlone,111468-00017-1,0,4380_7778208_4591203,4380_1679 -4380_78153,296,4380_96554,Athlone,111464-00021-1,0,4380_7778208_4591203,4380_1679 -4380_78153,295,4380_96555,Athlone,111460-00019-1,0,4380_7778208_4591203,4380_1679 -4380_78147,286,4380_9656,Dublin,6784-00010-1,1,4380_7778208_1090901,4380_176 -4380_78153,285,4380_96561,Athlone,112386-00009-1,0,4380_7778208_4591261,4380_1679 -4380_78153,288,4380_96563,Athlone,112380-00011-1,0,4380_7778208_4591261,4380_1679 -4380_78153,286,4380_96564,Athlone,112384-00010-1,0,4380_7778208_4591261,4380_1679 -4380_78153,291,4380_96565,Athlone,112382-00013-1,0,4380_7778208_4591261,4380_1679 -4380_78153,289,4380_96566,Athlone,112378-00014-1,0,4380_7778208_4591261,4380_1679 -4380_78153,287,4380_96567,Athlone,112388-00012-1,0,4380_7778208_4591261,4380_1679 -4380_78153,292,4380_96568,Athlone,112385-00016-1,0,4380_7778208_4591261,4380_1679 -4380_78153,290,4380_96569,Athlone,112387-00015-1,0,4380_7778208_4591261,4380_1679 -4380_78147,288,4380_9657,Dublin,6790-00011-1,1,4380_7778208_1090901,4380_176 -4380_78153,294,4380_96570,Athlone,112389-00018-1,0,4380_7778208_4591261,4380_1679 -4380_78153,293,4380_96571,Athlone,112381-00017-1,0,4380_7778208_4591261,4380_1679 -4380_78153,296,4380_96572,Athlone,112383-00021-1,0,4380_7778208_4591261,4380_1679 -4380_78153,295,4380_96573,Athlone,112379-00019-1,0,4380_7778208_4591261,4380_1679 -4380_78147,287,4380_9658,Dublin,6796-00012-1,1,4380_7778208_1090901,4380_176 -4380_78153,297,4380_96580,Athlone,111119-00008-1,0,4380_7778208_4591201,4380_1679 -4380_78153,285,4380_96581,Athlone,111292-00009-1,0,4380_7778208_4591202,4380_1680 -4380_78153,288,4380_96583,Athlone,111288-00011-1,0,4380_7778208_4591202,4380_1680 -4380_78153,286,4380_96584,Athlone,111290-00010-1,0,4380_7778208_4591202,4380_1680 -4380_78153,291,4380_96585,Athlone,111286-00013-1,0,4380_7778208_4591202,4380_1680 -4380_78153,289,4380_96586,Athlone,111294-00014-1,0,4380_7778208_4591202,4380_1680 -4380_78153,287,4380_96587,Athlone,111284-00012-1,0,4380_7778208_4591202,4380_1680 -4380_78153,292,4380_96588,Athlone,111291-00016-1,0,4380_7778208_4591202,4380_1680 -4380_78153,290,4380_96589,Athlone,111293-00015-1,0,4380_7778208_4591202,4380_1680 -4380_78147,289,4380_9659,Dublin,6772-00014-1,1,4380_7778208_1090901,4380_176 -4380_78153,294,4380_96590,Athlone,111285-00018-1,0,4380_7778208_4591202,4380_1680 -4380_78153,293,4380_96591,Athlone,111289-00017-1,0,4380_7778208_4591202,4380_1680 -4380_78153,296,4380_96592,Athlone,111287-00021-1,0,4380_7778208_4591202,4380_1680 -4380_78153,295,4380_96593,Athlone,111295-00019-1,0,4380_7778208_4591202,4380_1680 -4380_78153,285,4380_96599,Athlone,112192-00009-1,0,4380_7778208_4591208,4380_1679 -4380_78113,287,4380_966,Dublin via Airport,49837-00012-1,1,4380_7778208_1000905,4380_18 -4380_78147,290,4380_9660,Dublin,55335-00015-1,1,4380_7778208_1090901,4380_176 -4380_78153,288,4380_96601,Athlone,112188-00011-1,0,4380_7778208_4591208,4380_1679 -4380_78153,286,4380_96602,Athlone,112196-00010-1,0,4380_7778208_4591208,4380_1679 -4380_78153,291,4380_96603,Athlone,112194-00013-1,0,4380_7778208_4591208,4380_1679 -4380_78153,289,4380_96604,Athlone,112190-00014-1,0,4380_7778208_4591208,4380_1679 -4380_78153,287,4380_96605,Athlone,112186-00012-1,0,4380_7778208_4591208,4380_1679 -4380_78153,292,4380_96606,Athlone,112197-00016-1,0,4380_7778208_4591208,4380_1679 -4380_78153,290,4380_96607,Athlone,112193-00015-1,0,4380_7778208_4591208,4380_1679 -4380_78153,294,4380_96608,Athlone,112187-00018-1,0,4380_7778208_4591208,4380_1679 -4380_78153,293,4380_96609,Athlone,112189-00017-1,0,4380_7778208_4591208,4380_1679 -4380_78147,292,4380_9661,Dublin,55332-00016-1,1,4380_7778208_1090901,4380_176 -4380_78153,296,4380_96610,Athlone,112195-00021-1,0,4380_7778208_4591208,4380_1679 -4380_78153,295,4380_96611,Athlone,112191-00019-1,0,4380_7778208_4591208,4380_1679 -4380_78153,297,4380_96618,Athlone,111493-00008-1,0,4380_7778208_4591203,4380_1679 -4380_78153,285,4380_96619,Athlone,111143-00009-1,0,4380_7778208_4591201,4380_1680 -4380_78147,293,4380_9662,Dublin,55333-00017-1,1,4380_7778208_1090901,4380_176 -4380_78153,288,4380_96621,Athlone,111135-00011-1,0,4380_7778208_4591201,4380_1680 -4380_78153,286,4380_96622,Athlone,111141-00010-1,0,4380_7778208_4591201,4380_1680 -4380_78153,291,4380_96623,Athlone,111137-00013-1,0,4380_7778208_4591201,4380_1680 -4380_78153,289,4380_96624,Athlone,111139-00014-1,0,4380_7778208_4591201,4380_1680 -4380_78153,287,4380_96625,Athlone,111133-00012-1,0,4380_7778208_4591201,4380_1680 -4380_78153,292,4380_96626,Athlone,111142-00016-1,0,4380_7778208_4591201,4380_1680 -4380_78153,290,4380_96627,Athlone,111144-00015-1,0,4380_7778208_4591201,4380_1680 -4380_78153,294,4380_96628,Athlone,111134-00018-1,0,4380_7778208_4591201,4380_1680 -4380_78153,293,4380_96629,Athlone,111136-00017-1,0,4380_7778208_4591201,4380_1680 -4380_78147,294,4380_9663,Dublin,55336-00018-1,1,4380_7778208_1090901,4380_176 -4380_78153,296,4380_96630,Athlone,111138-00021-1,0,4380_7778208_4591201,4380_1680 -4380_78153,295,4380_96631,Athlone,111140-00019-1,0,4380_7778208_4591201,4380_1680 -4380_78153,285,4380_96637,Athlone,111704-00009-1,0,4380_7778208_4591204,4380_1679 -4380_78153,288,4380_96639,Athlone,111696-00011-1,0,4380_7778208_4591204,4380_1679 -4380_78147,295,4380_9664,Dublin,55334-00019-1,1,4380_7778208_1090901,4380_176 -4380_78153,286,4380_96640,Athlone,111700-00010-1,0,4380_7778208_4591204,4380_1679 -4380_78153,291,4380_96641,Athlone,111698-00013-1,0,4380_7778208_4591204,4380_1679 -4380_78153,289,4380_96642,Athlone,111702-00014-1,0,4380_7778208_4591204,4380_1679 -4380_78153,287,4380_96643,Athlone,111694-00012-1,0,4380_7778208_4591204,4380_1679 -4380_78153,292,4380_96644,Athlone,111701-00016-1,0,4380_7778208_4591204,4380_1679 -4380_78153,290,4380_96645,Athlone,111705-00015-1,0,4380_7778208_4591204,4380_1679 -4380_78153,294,4380_96646,Athlone,111695-00018-1,0,4380_7778208_4591204,4380_1679 -4380_78153,293,4380_96647,Athlone,111697-00017-1,0,4380_7778208_4591204,4380_1679 -4380_78153,296,4380_96648,Athlone,111699-00021-1,0,4380_7778208_4591204,4380_1679 -4380_78153,295,4380_96649,Athlone,111703-00019-1,0,4380_7778208_4591204,4380_1679 -4380_78153,297,4380_96656,Athlone,111322-00008-1,0,4380_7778208_4591202,4380_1679 -4380_78153,285,4380_96657,Athlone,112168-00009-1,0,4380_7778208_4591207,4380_1680 -4380_78153,288,4380_96659,Athlone,112164-00011-1,0,4380_7778208_4591207,4380_1680 -4380_78147,297,4380_9666,Dublin,6819-00008-1,1,4380_7778208_1090901,4380_176 -4380_78153,286,4380_96660,Athlone,112166-00010-1,0,4380_7778208_4591207,4380_1680 -4380_78153,291,4380_96661,Athlone,112172-00013-1,0,4380_7778208_4591207,4380_1680 -4380_78153,289,4380_96662,Athlone,112162-00014-1,0,4380_7778208_4591207,4380_1680 -4380_78153,287,4380_96663,Athlone,112170-00012-1,0,4380_7778208_4591207,4380_1680 -4380_78153,292,4380_96664,Athlone,112167-00016-1,0,4380_7778208_4591207,4380_1680 -4380_78153,290,4380_96665,Athlone,112169-00015-1,0,4380_7778208_4591207,4380_1680 -4380_78153,294,4380_96666,Athlone,112171-00018-1,0,4380_7778208_4591207,4380_1680 -4380_78153,293,4380_96667,Athlone,112165-00017-1,0,4380_7778208_4591207,4380_1680 -4380_78153,296,4380_96668,Athlone,112173-00021-1,0,4380_7778208_4591207,4380_1680 -4380_78153,295,4380_96669,Athlone,112163-00019-1,0,4380_7778208_4591207,4380_1680 -4380_78153,285,4380_96675,Athlone,111507-00009-1,0,4380_7778208_4591203,4380_1679 -4380_78153,288,4380_96677,Athlone,111516-00011-1,0,4380_7778208_4591203,4380_1679 -4380_78153,286,4380_96678,Athlone,111514-00010-1,0,4380_7778208_4591203,4380_1679 -4380_78153,291,4380_96679,Athlone,111512-00013-1,0,4380_7778208_4591203,4380_1679 -4380_78147,291,4380_9668,Dublin,6850-00013-1,1,4380_7778208_1090902,4380_176 -4380_78153,289,4380_96680,Athlone,111509-00014-1,0,4380_7778208_4591203,4380_1679 -4380_78153,287,4380_96681,Athlone,111518-00012-1,0,4380_7778208_4591203,4380_1679 -4380_78153,292,4380_96682,Athlone,111515-00016-1,0,4380_7778208_4591203,4380_1679 -4380_78153,290,4380_96683,Athlone,111508-00015-1,0,4380_7778208_4591203,4380_1679 -4380_78153,294,4380_96684,Athlone,111519-00018-1,0,4380_7778208_4591203,4380_1679 -4380_78153,293,4380_96685,Athlone,111517-00017-1,0,4380_7778208_4591203,4380_1679 -4380_78153,296,4380_96686,Athlone,111513-00021-1,0,4380_7778208_4591203,4380_1679 -4380_78153,295,4380_96687,Athlone,111510-00019-1,0,4380_7778208_4591203,4380_1679 -4380_78147,296,4380_9669,Dublin,55370-00021-1,1,4380_7778208_1090902,4380_176 -4380_78153,297,4380_96694,Athlone,111171-00008-1,0,4380_7778208_4591201,4380_1679 -4380_78153,285,4380_96695,Athlone,111883-00009-1,0,4380_7778208_4591205,4380_1680 -4380_78153,288,4380_96697,Athlone,111877-00011-1,0,4380_7778208_4591205,4380_1680 -4380_78153,286,4380_96698,Athlone,111875-00010-1,0,4380_7778208_4591205,4380_1680 -4380_78153,291,4380_96699,Athlone,111873-00013-1,0,4380_7778208_4591205,4380_1680 -4380_78113,288,4380_967,Dublin via Airport,49841-00011-1,1,4380_7778208_1000905,4380_18 -4380_78153,289,4380_96700,Athlone,111881-00014-1,0,4380_7778208_4591205,4380_1680 -4380_78153,287,4380_96701,Athlone,111879-00012-1,0,4380_7778208_4591205,4380_1680 -4380_78153,292,4380_96702,Athlone,111876-00016-1,0,4380_7778208_4591205,4380_1680 -4380_78153,290,4380_96703,Athlone,111884-00015-1,0,4380_7778208_4591205,4380_1680 -4380_78153,294,4380_96704,Athlone,111880-00018-1,0,4380_7778208_4591205,4380_1680 -4380_78153,293,4380_96705,Athlone,111878-00017-1,0,4380_7778208_4591205,4380_1680 -4380_78153,296,4380_96706,Athlone,111874-00021-1,0,4380_7778208_4591205,4380_1680 -4380_78153,295,4380_96707,Athlone,111882-00019-1,0,4380_7778208_4591205,4380_1680 -4380_78153,285,4380_96713,Athlone,111338-00009-1,0,4380_7778208_4591202,4380_1679 -4380_78153,288,4380_96715,Athlone,111346-00011-1,0,4380_7778208_4591202,4380_1679 -4380_78153,286,4380_96716,Athlone,111340-00010-1,0,4380_7778208_4591202,4380_1679 -4380_78153,291,4380_96717,Athlone,111336-00013-1,0,4380_7778208_4591202,4380_1679 -4380_78153,289,4380_96718,Athlone,111344-00014-1,0,4380_7778208_4591202,4380_1679 -4380_78153,287,4380_96719,Athlone,111342-00012-1,0,4380_7778208_4591202,4380_1679 -4380_78153,292,4380_96720,Athlone,111341-00016-1,0,4380_7778208_4591202,4380_1679 -4380_78153,290,4380_96721,Athlone,111339-00015-1,0,4380_7778208_4591202,4380_1679 -4380_78153,294,4380_96722,Athlone,111343-00018-1,0,4380_7778208_4591202,4380_1679 -4380_78153,293,4380_96723,Athlone,111347-00017-1,0,4380_7778208_4591202,4380_1679 -4380_78153,296,4380_96724,Athlone,111337-00021-1,0,4380_7778208_4591202,4380_1679 -4380_78153,295,4380_96725,Athlone,111345-00019-1,0,4380_7778208_4591202,4380_1679 -4380_78153,297,4380_96732,Athlone,111543-00008-1,0,4380_7778208_4591203,4380_1679 -4380_78153,285,4380_96733,Athlone,111537-00009-1,0,4380_7778208_4591203,4380_1680 -4380_78153,288,4380_96735,Athlone,111535-00011-1,0,4380_7778208_4591203,4380_1680 -4380_78153,286,4380_96736,Athlone,111539-00010-1,0,4380_7778208_4591203,4380_1680 -4380_78153,291,4380_96737,Athlone,111541-00013-1,0,4380_7778208_4591203,4380_1680 -4380_78153,289,4380_96738,Athlone,111544-00014-1,0,4380_7778208_4591203,4380_1680 -4380_78153,287,4380_96739,Athlone,111533-00012-1,0,4380_7778208_4591203,4380_1680 -4380_78153,292,4380_96740,Athlone,111540-00016-1,0,4380_7778208_4591203,4380_1680 -4380_78153,290,4380_96741,Athlone,111538-00015-1,0,4380_7778208_4591203,4380_1680 -4380_78153,294,4380_96742,Athlone,111534-00018-1,0,4380_7778208_4591203,4380_1680 -4380_78153,293,4380_96743,Athlone,111536-00017-1,0,4380_7778208_4591203,4380_1680 -4380_78153,296,4380_96744,Athlone,111542-00021-1,0,4380_7778208_4591203,4380_1680 -4380_78153,295,4380_96745,Athlone,111545-00019-1,0,4380_7778208_4591203,4380_1680 -4380_78147,285,4380_9675,Dublin,6830-00009-1,1,4380_7778208_1090902,4380_177 -4380_78153,285,4380_96751,Athlone,111899-00009-1,0,4380_7778208_4591205,4380_1679 -4380_78153,288,4380_96753,Athlone,111897-00011-1,0,4380_7778208_4591205,4380_1679 -4380_78153,286,4380_96754,Athlone,111905-00010-1,0,4380_7778208_4591205,4380_1679 -4380_78153,291,4380_96755,Athlone,111903-00013-1,0,4380_7778208_4591205,4380_1679 -4380_78153,289,4380_96756,Athlone,111907-00014-1,0,4380_7778208_4591205,4380_1679 -4380_78153,287,4380_96757,Athlone,111901-00012-1,0,4380_7778208_4591205,4380_1679 -4380_78153,292,4380_96758,Athlone,111906-00016-1,0,4380_7778208_4591205,4380_1679 -4380_78153,290,4380_96759,Athlone,111900-00015-1,0,4380_7778208_4591205,4380_1679 -4380_78147,286,4380_9676,Dublin,6835-00010-1,1,4380_7778208_1090902,4380_177 -4380_78153,294,4380_96760,Athlone,111902-00018-1,0,4380_7778208_4591205,4380_1679 -4380_78153,293,4380_96761,Athlone,111898-00017-1,0,4380_7778208_4591205,4380_1679 -4380_78153,296,4380_96762,Athlone,111904-00021-1,0,4380_7778208_4591205,4380_1679 -4380_78153,295,4380_96763,Athlone,111908-00019-1,0,4380_7778208_4591205,4380_1679 -4380_78147,288,4380_9677,Dublin,6840-00011-1,1,4380_7778208_1090902,4380_177 -4380_78153,297,4380_96770,Athlone,111755-00008-1,0,4380_7778208_4591204,4380_1679 -4380_78153,285,4380_96771,Athlone,111371-00009-1,0,4380_7778208_4591202,4380_1680 -4380_78153,288,4380_96773,Athlone,111367-00011-1,0,4380_7778208_4591202,4380_1680 -4380_78153,286,4380_96774,Athlone,111365-00010-1,0,4380_7778208_4591202,4380_1680 -4380_78153,291,4380_96775,Athlone,111361-00013-1,0,4380_7778208_4591202,4380_1680 -4380_78153,289,4380_96776,Athlone,111369-00014-1,0,4380_7778208_4591202,4380_1680 -4380_78153,287,4380_96777,Athlone,111363-00012-1,0,4380_7778208_4591202,4380_1680 -4380_78153,292,4380_96778,Athlone,111366-00016-1,0,4380_7778208_4591202,4380_1680 -4380_78153,290,4380_96779,Athlone,111372-00015-1,0,4380_7778208_4591202,4380_1680 -4380_78147,287,4380_9678,Dublin,6845-00012-1,1,4380_7778208_1090902,4380_177 -4380_78153,294,4380_96780,Athlone,111364-00018-1,0,4380_7778208_4591202,4380_1680 -4380_78153,293,4380_96781,Athlone,111368-00017-1,0,4380_7778208_4591202,4380_1680 -4380_78153,296,4380_96782,Athlone,111362-00021-1,0,4380_7778208_4591202,4380_1680 -4380_78153,295,4380_96783,Athlone,111370-00019-1,0,4380_7778208_4591202,4380_1680 -4380_78153,285,4380_96789,Athlone,111570-00009-1,0,4380_7778208_4591203,4380_1679 -4380_78147,289,4380_9679,Dublin,6825-00014-1,1,4380_7778208_1090902,4380_177 -4380_78153,288,4380_96791,Athlone,111563-00011-1,0,4380_7778208_4591203,4380_1679 -4380_78153,286,4380_96792,Athlone,111559-00010-1,0,4380_7778208_4591203,4380_1679 -4380_78153,291,4380_96793,Athlone,111565-00013-1,0,4380_7778208_4591203,4380_1679 -4380_78153,289,4380_96794,Athlone,111561-00014-1,0,4380_7778208_4591203,4380_1679 -4380_78153,287,4380_96795,Athlone,111568-00012-1,0,4380_7778208_4591203,4380_1679 -4380_78153,292,4380_96796,Athlone,111560-00016-1,0,4380_7778208_4591203,4380_1679 -4380_78153,290,4380_96797,Athlone,111571-00015-1,0,4380_7778208_4591203,4380_1679 -4380_78153,294,4380_96798,Athlone,111569-00018-1,0,4380_7778208_4591203,4380_1679 -4380_78153,293,4380_96799,Athlone,111564-00017-1,0,4380_7778208_4591203,4380_1679 -4380_78113,289,4380_968,Dublin via Airport,49845-00014-1,1,4380_7778208_1000905,4380_18 -4380_78147,290,4380_9680,Dublin,55375-00015-1,1,4380_7778208_1090902,4380_177 -4380_78153,296,4380_96800,Athlone,111566-00021-1,0,4380_7778208_4591203,4380_1679 -4380_78153,295,4380_96801,Athlone,111562-00019-1,0,4380_7778208_4591203,4380_1679 -4380_78153,297,4380_96808,Athlone,111223-00008-1,0,4380_7778208_4591201,4380_1679 -4380_78153,285,4380_96809,Athlone,111925-00009-1,0,4380_7778208_4591205,4380_1680 -4380_78147,292,4380_9681,Dublin,55373-00016-1,1,4380_7778208_1090902,4380_177 -4380_78153,288,4380_96811,Athlone,111927-00011-1,0,4380_7778208_4591205,4380_1680 -4380_78153,286,4380_96812,Athlone,111929-00010-1,0,4380_7778208_4591205,4380_1680 -4380_78153,291,4380_96813,Athlone,111921-00013-1,0,4380_7778208_4591205,4380_1680 -4380_78153,289,4380_96814,Athlone,111931-00014-1,0,4380_7778208_4591205,4380_1680 -4380_78153,287,4380_96815,Athlone,111923-00012-1,0,4380_7778208_4591205,4380_1680 -4380_78153,292,4380_96816,Athlone,111930-00016-1,0,4380_7778208_4591205,4380_1680 -4380_78153,290,4380_96817,Athlone,111926-00015-1,0,4380_7778208_4591205,4380_1680 -4380_78153,294,4380_96818,Athlone,111924-00018-1,0,4380_7778208_4591205,4380_1680 -4380_78153,293,4380_96819,Athlone,111928-00017-1,0,4380_7778208_4591205,4380_1680 -4380_78147,293,4380_9682,Dublin,55374-00017-1,1,4380_7778208_1090902,4380_177 -4380_78153,296,4380_96820,Athlone,111922-00021-1,0,4380_7778208_4591205,4380_1680 -4380_78153,295,4380_96821,Athlone,111932-00019-1,0,4380_7778208_4591205,4380_1680 -4380_78153,285,4380_96827,Athlone,111770-00009-1,0,4380_7778208_4591204,4380_1679 -4380_78153,288,4380_96829,Athlone,111774-00011-1,0,4380_7778208_4591204,4380_1679 -4380_78147,294,4380_9683,Dublin,55372-00018-1,1,4380_7778208_1090902,4380_177 -4380_78153,286,4380_96830,Athlone,111776-00010-1,0,4380_7778208_4591204,4380_1679 -4380_78153,291,4380_96831,Athlone,111780-00013-1,0,4380_7778208_4591204,4380_1679 -4380_78153,289,4380_96832,Athlone,111778-00014-1,0,4380_7778208_4591204,4380_1679 -4380_78153,287,4380_96833,Athlone,111772-00012-1,0,4380_7778208_4591204,4380_1679 -4380_78153,292,4380_96834,Athlone,111777-00016-1,0,4380_7778208_4591204,4380_1679 -4380_78153,290,4380_96835,Athlone,111771-00015-1,0,4380_7778208_4591204,4380_1679 -4380_78153,294,4380_96836,Athlone,111773-00018-1,0,4380_7778208_4591204,4380_1679 -4380_78153,293,4380_96837,Athlone,111775-00017-1,0,4380_7778208_4591204,4380_1679 -4380_78153,296,4380_96838,Athlone,111781-00021-1,0,4380_7778208_4591204,4380_1679 -4380_78153,295,4380_96839,Athlone,111779-00019-1,0,4380_7778208_4591204,4380_1679 -4380_78147,295,4380_9684,Dublin,55371-00019-1,1,4380_7778208_1090902,4380_177 -4380_78153,297,4380_96846,Athlone,111585-00008-1,0,4380_7778208_4591203,4380_1679 -4380_78153,285,4380_96847,Athlone,111387-00009-1,0,4380_7778208_4591202,4380_1680 -4380_78153,288,4380_96849,Athlone,111391-00011-1,0,4380_7778208_4591202,4380_1680 -4380_78153,286,4380_96850,Athlone,111389-00010-1,0,4380_7778208_4591202,4380_1680 -4380_78153,291,4380_96851,Athlone,111393-00013-1,0,4380_7778208_4591202,4380_1680 -4380_78153,289,4380_96852,Athlone,111395-00014-1,0,4380_7778208_4591202,4380_1680 -4380_78153,287,4380_96853,Athlone,111385-00012-1,0,4380_7778208_4591202,4380_1680 -4380_78153,292,4380_96854,Athlone,111390-00016-1,0,4380_7778208_4591202,4380_1680 -4380_78153,290,4380_96855,Athlone,111388-00015-1,0,4380_7778208_4591202,4380_1680 -4380_78153,294,4380_96856,Athlone,111386-00018-1,0,4380_7778208_4591202,4380_1680 -4380_78153,293,4380_96857,Athlone,111392-00017-1,0,4380_7778208_4591202,4380_1680 -4380_78153,296,4380_96858,Athlone,111394-00021-1,0,4380_7778208_4591202,4380_1680 -4380_78153,295,4380_96859,Athlone,111396-00019-1,0,4380_7778208_4591202,4380_1680 -4380_78153,285,4380_96865,Athlone,111596-00009-1,0,4380_7778208_4591203,4380_1679 -4380_78153,288,4380_96867,Athlone,111594-00011-1,0,4380_7778208_4591203,4380_1679 -4380_78153,286,4380_96868,Athlone,111590-00010-1,0,4380_7778208_4591203,4380_1679 -4380_78153,291,4380_96869,Athlone,111588-00013-1,0,4380_7778208_4591203,4380_1679 -4380_78147,297,4380_9687,Dublin,6863-00008-1,1,4380_7778208_1090902,4380_183 -4380_78153,289,4380_96870,Athlone,111586-00014-1,0,4380_7778208_4591203,4380_1679 -4380_78153,287,4380_96871,Athlone,111592-00012-1,0,4380_7778208_4591203,4380_1679 -4380_78153,292,4380_96872,Athlone,111591-00016-1,0,4380_7778208_4591203,4380_1679 -4380_78153,290,4380_96873,Athlone,111597-00015-1,0,4380_7778208_4591203,4380_1679 -4380_78153,294,4380_96874,Athlone,111593-00018-1,0,4380_7778208_4591203,4380_1679 -4380_78153,293,4380_96875,Athlone,111595-00017-1,0,4380_7778208_4591203,4380_1679 -4380_78153,296,4380_96876,Athlone,111589-00021-1,0,4380_7778208_4591203,4380_1679 -4380_78153,295,4380_96877,Athlone,111587-00019-1,0,4380_7778208_4591203,4380_1679 -4380_78147,291,4380_9688,Dublin,5857-00013-1,1,4380_7778208_1090110,4380_185 -4380_78153,297,4380_96884,Athlone,111795-00008-1,0,4380_7778208_4591204,4380_1679 -4380_78153,285,4380_96885,Athlone,111955-00009-1,0,4380_7778208_4591205,4380_1680 -4380_78153,288,4380_96887,Athlone,111949-00011-1,0,4380_7778208_4591205,4380_1680 -4380_78153,286,4380_96888,Athlone,111947-00010-1,0,4380_7778208_4591205,4380_1680 -4380_78153,291,4380_96889,Athlone,111951-00013-1,0,4380_7778208_4591205,4380_1680 -4380_78147,296,4380_9689,Dublin,55097-00021-1,1,4380_7778208_1090110,4380_185 -4380_78153,289,4380_96890,Athlone,111957-00014-1,0,4380_7778208_4591205,4380_1680 -4380_78153,287,4380_96891,Athlone,111953-00012-1,0,4380_7778208_4591205,4380_1680 -4380_78153,292,4380_96892,Athlone,111948-00016-1,0,4380_7778208_4591205,4380_1680 -4380_78153,290,4380_96893,Athlone,111956-00015-1,0,4380_7778208_4591205,4380_1680 -4380_78153,294,4380_96894,Athlone,111954-00018-1,0,4380_7778208_4591205,4380_1680 -4380_78153,293,4380_96895,Athlone,111950-00017-1,0,4380_7778208_4591205,4380_1680 -4380_78153,296,4380_96896,Athlone,111952-00021-1,0,4380_7778208_4591205,4380_1680 -4380_78153,295,4380_96897,Athlone,111958-00019-1,0,4380_7778208_4591205,4380_1680 -4380_78113,290,4380_969,Dublin via Airport,49840-00015-1,1,4380_7778208_1000905,4380_18 -4380_78153,285,4380_96903,Athlone,111806-00009-1,0,4380_7778208_4591204,4380_1679 -4380_78153,288,4380_96905,Athlone,111796-00011-1,0,4380_7778208_4591204,4380_1679 -4380_78153,286,4380_96906,Athlone,111804-00010-1,0,4380_7778208_4591204,4380_1679 -4380_78153,291,4380_96907,Athlone,111802-00013-1,0,4380_7778208_4591204,4380_1679 -4380_78153,289,4380_96908,Athlone,111800-00014-1,0,4380_7778208_4591204,4380_1679 -4380_78153,287,4380_96909,Athlone,111798-00012-1,0,4380_7778208_4591204,4380_1679 -4380_78153,292,4380_96910,Athlone,111805-00016-1,0,4380_7778208_4591204,4380_1679 -4380_78153,290,4380_96911,Athlone,111807-00015-1,0,4380_7778208_4591204,4380_1679 -4380_78153,294,4380_96912,Athlone,111799-00018-1,0,4380_7778208_4591204,4380_1679 -4380_78153,293,4380_96913,Athlone,111797-00017-1,0,4380_7778208_4591204,4380_1679 -4380_78153,296,4380_96914,Athlone,111803-00021-1,0,4380_7778208_4591204,4380_1679 -4380_78153,295,4380_96915,Athlone,111801-00019-1,0,4380_7778208_4591204,4380_1679 -4380_78153,297,4380_96922,Athlone,111972-00008-1,0,4380_7778208_4591205,4380_1679 -4380_78153,285,4380_96923,Athlone,111610-00009-1,0,4380_7778208_4591203,4380_1680 -4380_78153,288,4380_96925,Athlone,111614-00011-1,0,4380_7778208_4591203,4380_1680 -4380_78153,286,4380_96926,Athlone,111612-00010-1,0,4380_7778208_4591203,4380_1680 -4380_78153,291,4380_96927,Athlone,111618-00013-1,0,4380_7778208_4591203,4380_1680 -4380_78153,289,4380_96928,Athlone,111620-00014-1,0,4380_7778208_4591203,4380_1680 -4380_78153,287,4380_96929,Athlone,111616-00012-1,0,4380_7778208_4591203,4380_1680 -4380_78153,292,4380_96930,Athlone,111613-00016-1,0,4380_7778208_4591203,4380_1680 -4380_78153,290,4380_96931,Athlone,111611-00015-1,0,4380_7778208_4591203,4380_1680 -4380_78153,294,4380_96932,Athlone,111617-00018-1,0,4380_7778208_4591203,4380_1680 -4380_78153,293,4380_96933,Athlone,111615-00017-1,0,4380_7778208_4591203,4380_1680 -4380_78153,296,4380_96934,Athlone,111619-00021-1,0,4380_7778208_4591203,4380_1680 -4380_78153,295,4380_96935,Athlone,111621-00019-1,0,4380_7778208_4591203,4380_1680 -4380_78153,285,4380_96941,Athlone,111973-00009-1,0,4380_7778208_4591205,4380_1679 -4380_78153,288,4380_96943,Athlone,111979-00011-1,0,4380_7778208_4591205,4380_1679 -4380_78153,286,4380_96944,Athlone,111977-00010-1,0,4380_7778208_4591205,4380_1679 -4380_78153,291,4380_96945,Athlone,111975-00013-1,0,4380_7778208_4591205,4380_1679 -4380_78153,289,4380_96946,Athlone,111981-00014-1,0,4380_7778208_4591205,4380_1679 -4380_78153,287,4380_96947,Athlone,111983-00012-1,0,4380_7778208_4591205,4380_1679 -4380_78153,292,4380_96948,Athlone,111978-00016-1,0,4380_7778208_4591205,4380_1679 -4380_78153,290,4380_96949,Athlone,111974-00015-1,0,4380_7778208_4591205,4380_1679 -4380_78147,285,4380_9695,Dublin,6878-00009-1,1,4380_7778208_1090903,4380_176 -4380_78153,294,4380_96950,Athlone,111984-00018-1,0,4380_7778208_4591205,4380_1679 -4380_78153,293,4380_96951,Athlone,111980-00017-1,0,4380_7778208_4591205,4380_1679 -4380_78153,296,4380_96952,Athlone,111976-00021-1,0,4380_7778208_4591205,4380_1679 -4380_78153,295,4380_96953,Athlone,111982-00019-1,0,4380_7778208_4591205,4380_1679 -4380_78147,286,4380_9696,Dublin,6883-00010-1,1,4380_7778208_1090903,4380_176 -4380_78153,297,4380_96960,Athlone,112077-00008-1,0,4380_7778208_4591206,4380_1679 -4380_78153,285,4380_96961,Athlone,111832-00009-1,0,4380_7778208_4591204,4380_1680 -4380_78153,288,4380_96963,Athlone,111822-00011-1,0,4380_7778208_4591204,4380_1680 -4380_78153,286,4380_96964,Athlone,111828-00010-1,0,4380_7778208_4591204,4380_1680 -4380_78153,291,4380_96965,Athlone,111830-00013-1,0,4380_7778208_4591204,4380_1680 -4380_78153,289,4380_96966,Athlone,111826-00014-1,0,4380_7778208_4591204,4380_1680 -4380_78153,287,4380_96967,Athlone,111824-00012-1,0,4380_7778208_4591204,4380_1680 -4380_78153,292,4380_96968,Athlone,111829-00016-1,0,4380_7778208_4591204,4380_1680 -4380_78153,290,4380_96969,Athlone,111833-00015-1,0,4380_7778208_4591204,4380_1680 -4380_78147,288,4380_9697,Dublin,6888-00011-1,1,4380_7778208_1090903,4380_176 -4380_78153,294,4380_96970,Athlone,111825-00018-1,0,4380_7778208_4591204,4380_1680 -4380_78153,293,4380_96971,Athlone,111823-00017-1,0,4380_7778208_4591204,4380_1680 -4380_78153,296,4380_96972,Athlone,111831-00021-1,0,4380_7778208_4591204,4380_1680 -4380_78153,295,4380_96973,Athlone,111827-00019-1,0,4380_7778208_4591204,4380_1680 -4380_78153,285,4380_96979,Athlone,111644-00009-1,0,4380_7778208_4591203,4380_1679 -4380_78147,287,4380_9698,Dublin,6893-00012-1,1,4380_7778208_1090903,4380_176 -4380_78153,288,4380_96981,Athlone,111640-00011-1,0,4380_7778208_4591203,4380_1679 -4380_78153,286,4380_96982,Athlone,111634-00010-1,0,4380_7778208_4591203,4380_1679 -4380_78153,291,4380_96983,Athlone,111636-00013-1,0,4380_7778208_4591203,4380_1679 -4380_78153,289,4380_96984,Athlone,111642-00014-1,0,4380_7778208_4591203,4380_1679 -4380_78153,287,4380_96985,Athlone,111638-00012-1,0,4380_7778208_4591203,4380_1679 -4380_78153,292,4380_96986,Athlone,111635-00016-1,0,4380_7778208_4591203,4380_1679 -4380_78153,290,4380_96987,Athlone,111645-00015-1,0,4380_7778208_4591203,4380_1679 -4380_78153,294,4380_96988,Athlone,111639-00018-1,0,4380_7778208_4591203,4380_1679 -4380_78153,293,4380_96989,Athlone,111641-00017-1,0,4380_7778208_4591203,4380_1679 -4380_78147,289,4380_9699,Dublin,6873-00014-1,1,4380_7778208_1090903,4380_176 -4380_78153,296,4380_96990,Athlone,111637-00021-1,0,4380_7778208_4591203,4380_1679 -4380_78153,295,4380_96991,Athlone,111643-00019-1,0,4380_7778208_4591203,4380_1679 -4380_78153,297,4380_96998,Athlone,111847-00008-1,0,4380_7778208_4591204,4380_1679 -4380_78153,285,4380_96999,Athlone,112007-00009-1,0,4380_7778208_4591205,4380_1680 -4380_77946,289,4380_97,Dundalk,50467-00014-1,0,4380_7778208_1000915,4380_1 -4380_78113,291,4380_970,Dublin via Airport,49843-00013-1,1,4380_7778208_1000905,4380_20 -4380_78147,290,4380_9700,Dublin,55401-00015-1,1,4380_7778208_1090903,4380_176 -4380_78153,288,4380_97001,Athlone,112003-00011-1,0,4380_7778208_4591205,4380_1680 -4380_78153,286,4380_97002,Athlone,111999-00010-1,0,4380_7778208_4591205,4380_1680 -4380_78153,291,4380_97003,Athlone,112005-00013-1,0,4380_7778208_4591205,4380_1680 -4380_78153,289,4380_97004,Athlone,112009-00014-1,0,4380_7778208_4591205,4380_1680 -4380_78153,287,4380_97005,Athlone,112001-00012-1,0,4380_7778208_4591205,4380_1680 -4380_78153,292,4380_97006,Athlone,112000-00016-1,0,4380_7778208_4591205,4380_1680 -4380_78153,290,4380_97007,Athlone,112008-00015-1,0,4380_7778208_4591205,4380_1680 -4380_78153,294,4380_97008,Athlone,112002-00018-1,0,4380_7778208_4591205,4380_1680 -4380_78153,293,4380_97009,Athlone,112004-00017-1,0,4380_7778208_4591205,4380_1680 -4380_78147,292,4380_9701,Dublin,55404-00016-1,1,4380_7778208_1090903,4380_176 -4380_78153,296,4380_97010,Athlone,112006-00021-1,0,4380_7778208_4591205,4380_1680 -4380_78153,295,4380_97011,Athlone,112010-00019-1,0,4380_7778208_4591205,4380_1680 -4380_78153,285,4380_97017,Athlone,111858-00009-1,0,4380_7778208_4591204,4380_1679 -4380_78153,288,4380_97019,Athlone,111856-00011-1,0,4380_7778208_4591204,4380_1679 -4380_78147,293,4380_9702,Dublin,55403-00017-1,1,4380_7778208_1090903,4380_176 -4380_78153,286,4380_97020,Athlone,111848-00010-1,0,4380_7778208_4591204,4380_1679 -4380_78153,291,4380_97021,Athlone,111852-00013-1,0,4380_7778208_4591204,4380_1679 -4380_78153,289,4380_97022,Athlone,111850-00014-1,0,4380_7778208_4591204,4380_1679 -4380_78153,287,4380_97023,Athlone,111854-00012-1,0,4380_7778208_4591204,4380_1679 -4380_78153,292,4380_97024,Athlone,111849-00016-1,0,4380_7778208_4591204,4380_1679 -4380_78153,290,4380_97025,Athlone,111859-00015-1,0,4380_7778208_4591204,4380_1679 -4380_78153,294,4380_97026,Athlone,111855-00018-1,0,4380_7778208_4591204,4380_1679 -4380_78153,293,4380_97027,Athlone,111857-00017-1,0,4380_7778208_4591204,4380_1679 -4380_78153,296,4380_97028,Athlone,111853-00021-1,0,4380_7778208_4591204,4380_1679 -4380_78153,295,4380_97029,Athlone,111851-00019-1,0,4380_7778208_4591204,4380_1679 -4380_78147,294,4380_9703,Dublin,55400-00018-1,1,4380_7778208_1090903,4380_176 -4380_78153,285,4380_97035,Bealnamulla,111103-00009-1,1,4380_7778208_4591201,4380_1681 -4380_78153,288,4380_97037,Bealnamulla,111105-00011-1,1,4380_7778208_4591201,4380_1681 -4380_78153,286,4380_97038,Bealnamulla,111099-00010-1,1,4380_7778208_4591201,4380_1681 -4380_78153,291,4380_97039,Bealnamulla,111101-00013-1,1,4380_7778208_4591201,4380_1681 -4380_78147,295,4380_9704,Dublin,55402-00019-1,1,4380_7778208_1090903,4380_176 -4380_78153,289,4380_97040,Bealnamulla,111095-00014-1,1,4380_7778208_4591201,4380_1681 -4380_78153,287,4380_97041,Bealnamulla,111097-00012-1,1,4380_7778208_4591201,4380_1681 -4380_78153,292,4380_97042,Bealnamulla,111100-00016-1,1,4380_7778208_4591201,4380_1681 -4380_78153,290,4380_97043,Bealnamulla,111104-00015-1,1,4380_7778208_4591201,4380_1681 -4380_78153,294,4380_97044,Bealnamulla,111098-00018-1,1,4380_7778208_4591201,4380_1681 -4380_78153,293,4380_97045,Bealnamulla,111106-00017-1,1,4380_7778208_4591201,4380_1681 -4380_78153,296,4380_97046,Bealnamulla,111102-00021-1,1,4380_7778208_4591201,4380_1681 -4380_78153,295,4380_97047,Bealnamulla,111096-00019-1,1,4380_7778208_4591201,4380_1681 -4380_78153,285,4380_97053,Bealnamulla,111666-00009-1,1,4380_7778208_4591204,4380_1681 -4380_78153,288,4380_97055,Bealnamulla,111668-00011-1,1,4380_7778208_4591204,4380_1681 -4380_78153,286,4380_97056,Bealnamulla,111664-00010-1,1,4380_7778208_4591204,4380_1681 -4380_78153,291,4380_97057,Bealnamulla,111658-00013-1,1,4380_7778208_4591204,4380_1681 -4380_78153,289,4380_97058,Bealnamulla,111662-00014-1,1,4380_7778208_4591204,4380_1681 -4380_78153,287,4380_97059,Bealnamulla,111660-00012-1,1,4380_7778208_4591204,4380_1681 -4380_78153,292,4380_97060,Bealnamulla,111665-00016-1,1,4380_7778208_4591204,4380_1681 -4380_78153,290,4380_97061,Bealnamulla,111667-00015-1,1,4380_7778208_4591204,4380_1681 -4380_78153,294,4380_97062,Bealnamulla,111661-00018-1,1,4380_7778208_4591204,4380_1681 -4380_78153,293,4380_97063,Bealnamulla,111669-00017-1,1,4380_7778208_4591204,4380_1681 -4380_78153,296,4380_97064,Bealnamulla,111659-00021-1,1,4380_7778208_4591204,4380_1681 -4380_78153,295,4380_97065,Bealnamulla,111663-00019-1,1,4380_7778208_4591204,4380_1681 -4380_78147,297,4380_9707,Dublin,6059-00008-1,1,4380_7778208_1090115,4380_181 -4380_78153,285,4380_97071,Bealnamulla,112132-00009-1,1,4380_7778208_4591207,4380_1681 -4380_78153,288,4380_97073,Bealnamulla,112134-00011-1,1,4380_7778208_4591207,4380_1681 -4380_78153,286,4380_97074,Bealnamulla,112126-00010-1,1,4380_7778208_4591207,4380_1681 -4380_78153,291,4380_97075,Bealnamulla,112128-00013-1,1,4380_7778208_4591207,4380_1681 -4380_78153,289,4380_97076,Bealnamulla,112130-00014-1,1,4380_7778208_4591207,4380_1681 -4380_78153,287,4380_97077,Bealnamulla,112136-00012-1,1,4380_7778208_4591207,4380_1681 -4380_78153,292,4380_97078,Bealnamulla,112127-00016-1,1,4380_7778208_4591207,4380_1681 -4380_78153,290,4380_97079,Bealnamulla,112133-00015-1,1,4380_7778208_4591207,4380_1681 -4380_78147,291,4380_9708,Dublin,6898-00013-1,1,4380_7778208_1090903,4380_184 -4380_78153,294,4380_97080,Bealnamulla,112137-00018-1,1,4380_7778208_4591207,4380_1681 -4380_78153,293,4380_97081,Bealnamulla,112135-00017-1,1,4380_7778208_4591207,4380_1681 -4380_78153,296,4380_97082,Bealnamulla,112129-00021-1,1,4380_7778208_4591207,4380_1681 -4380_78153,295,4380_97083,Bealnamulla,112131-00019-1,1,4380_7778208_4591207,4380_1681 -4380_78153,285,4380_97089,Bealnamulla,111471-00009-1,1,4380_7778208_4591203,4380_1681 -4380_78147,296,4380_9709,Dublin,55405-00021-1,1,4380_7778208_1090903,4380_184 -4380_78153,288,4380_97091,Bealnamulla,111469-00011-1,1,4380_7778208_4591203,4380_1681 -4380_78153,286,4380_97092,Bealnamulla,111477-00010-1,1,4380_7778208_4591203,4380_1681 -4380_78153,291,4380_97093,Bealnamulla,111475-00013-1,1,4380_7778208_4591203,4380_1681 -4380_78153,289,4380_97094,Bealnamulla,111473-00014-1,1,4380_7778208_4591203,4380_1681 -4380_78153,287,4380_97095,Bealnamulla,111479-00012-1,1,4380_7778208_4591203,4380_1681 -4380_78153,292,4380_97096,Bealnamulla,111478-00016-1,1,4380_7778208_4591203,4380_1681 -4380_78153,290,4380_97097,Bealnamulla,111472-00015-1,1,4380_7778208_4591203,4380_1681 -4380_78153,294,4380_97098,Bealnamulla,111480-00018-1,1,4380_7778208_4591203,4380_1681 -4380_78153,293,4380_97099,Bealnamulla,111470-00017-1,1,4380_7778208_4591203,4380_1681 -4380_78113,292,4380_971,Dublin via Airport,49836-00016-1,1,4380_7778208_1000905,4380_18 -4380_78153,296,4380_97100,Bealnamulla,111476-00021-1,1,4380_7778208_4591203,4380_1681 -4380_78153,295,4380_97101,Bealnamulla,111474-00019-1,1,4380_7778208_4591203,4380_1681 -4380_78153,285,4380_97107,Bealnamulla,112390-00009-1,1,4380_7778208_4591261,4380_1681 -4380_78153,288,4380_97109,Bealnamulla,112396-00011-1,1,4380_7778208_4591261,4380_1681 -4380_78153,286,4380_97110,Bealnamulla,112392-00010-1,1,4380_7778208_4591261,4380_1681 -4380_78153,291,4380_97111,Bealnamulla,112400-00013-1,1,4380_7778208_4591261,4380_1681 -4380_78153,289,4380_97112,Bealnamulla,112394-00014-1,1,4380_7778208_4591261,4380_1681 -4380_78153,287,4380_97113,Bealnamulla,112398-00012-1,1,4380_7778208_4591261,4380_1681 -4380_78153,292,4380_97114,Bealnamulla,112393-00016-1,1,4380_7778208_4591261,4380_1681 -4380_78153,290,4380_97115,Bealnamulla,112391-00015-1,1,4380_7778208_4591261,4380_1681 -4380_78153,294,4380_97116,Bealnamulla,112399-00018-1,1,4380_7778208_4591261,4380_1681 -4380_78153,293,4380_97117,Bealnamulla,112397-00017-1,1,4380_7778208_4591261,4380_1681 -4380_78153,296,4380_97118,Bealnamulla,112401-00021-1,1,4380_7778208_4591261,4380_1681 -4380_78153,295,4380_97119,Bealnamulla,112395-00019-1,1,4380_7778208_4591261,4380_1681 -4380_78153,297,4380_97121,Bealnamulla,111132-00008-1,1,4380_7778208_4591201,4380_1681 -4380_78153,285,4380_97127,Bealnamulla,111299-00009-1,1,4380_7778208_4591202,4380_1681 -4380_78153,288,4380_97129,Bealnamulla,111297-00011-1,1,4380_7778208_4591202,4380_1681 -4380_78153,286,4380_97130,Bealnamulla,111305-00010-1,1,4380_7778208_4591202,4380_1681 -4380_78153,291,4380_97131,Bealnamulla,111303-00013-1,1,4380_7778208_4591202,4380_1681 -4380_78153,289,4380_97132,Bealnamulla,111301-00014-1,1,4380_7778208_4591202,4380_1681 -4380_78153,287,4380_97133,Bealnamulla,111307-00012-1,1,4380_7778208_4591202,4380_1681 -4380_78153,292,4380_97134,Bealnamulla,111306-00016-1,1,4380_7778208_4591202,4380_1681 -4380_78153,290,4380_97135,Bealnamulla,111300-00015-1,1,4380_7778208_4591202,4380_1681 -4380_78153,294,4380_97136,Bealnamulla,111308-00018-1,1,4380_7778208_4591202,4380_1681 -4380_78153,293,4380_97137,Bealnamulla,111298-00017-1,1,4380_7778208_4591202,4380_1681 -4380_78153,296,4380_97138,Bealnamulla,111304-00021-1,1,4380_7778208_4591202,4380_1681 -4380_78153,295,4380_97139,Bealnamulla,111302-00019-1,1,4380_7778208_4591202,4380_1681 -4380_78153,285,4380_97145,Bealnamulla,112200-00009-1,1,4380_7778208_4591208,4380_1681 -4380_78153,288,4380_97147,Bealnamulla,112208-00011-1,1,4380_7778208_4591208,4380_1681 -4380_78153,286,4380_97148,Bealnamulla,112204-00010-1,1,4380_7778208_4591208,4380_1681 -4380_78153,291,4380_97149,Bealnamulla,112198-00013-1,1,4380_7778208_4591208,4380_1681 -4380_78147,285,4380_9715,Dublin,6929-00009-1,1,4380_7778208_1090904,4380_177 -4380_78153,289,4380_97150,Bealnamulla,112206-00014-1,1,4380_7778208_4591208,4380_1681 -4380_78153,287,4380_97151,Bealnamulla,112202-00012-1,1,4380_7778208_4591208,4380_1681 -4380_78153,292,4380_97152,Bealnamulla,112205-00016-1,1,4380_7778208_4591208,4380_1681 -4380_78153,290,4380_97153,Bealnamulla,112201-00015-1,1,4380_7778208_4591208,4380_1681 -4380_78153,294,4380_97154,Bealnamulla,112203-00018-1,1,4380_7778208_4591208,4380_1681 -4380_78153,293,4380_97155,Bealnamulla,112209-00017-1,1,4380_7778208_4591208,4380_1681 -4380_78153,296,4380_97156,Bealnamulla,112199-00021-1,1,4380_7778208_4591208,4380_1681 -4380_78153,295,4380_97157,Bealnamulla,112207-00019-1,1,4380_7778208_4591208,4380_1681 -4380_78153,297,4380_97159,Bealnamulla,111498-00008-1,1,4380_7778208_4591203,4380_1681 -4380_78147,286,4380_9716,Dublin,6934-00010-1,1,4380_7778208_1090904,4380_177 -4380_78153,285,4380_97165,Bealnamulla,111150-00009-1,1,4380_7778208_4591201,4380_1681 -4380_78153,288,4380_97167,Bealnamulla,111152-00011-1,1,4380_7778208_4591201,4380_1681 -4380_78153,286,4380_97168,Bealnamulla,111148-00010-1,1,4380_7778208_4591201,4380_1681 -4380_78153,291,4380_97169,Bealnamulla,111156-00013-1,1,4380_7778208_4591201,4380_1681 -4380_78147,288,4380_9717,Dublin,6939-00011-1,1,4380_7778208_1090904,4380_177 -4380_78153,289,4380_97170,Bealnamulla,111154-00014-1,1,4380_7778208_4591201,4380_1681 -4380_78153,287,4380_97171,Bealnamulla,111146-00012-1,1,4380_7778208_4591201,4380_1681 -4380_78153,292,4380_97172,Bealnamulla,111149-00016-1,1,4380_7778208_4591201,4380_1681 -4380_78153,290,4380_97173,Bealnamulla,111151-00015-1,1,4380_7778208_4591201,4380_1681 -4380_78153,294,4380_97174,Bealnamulla,111147-00018-1,1,4380_7778208_4591201,4380_1681 -4380_78153,293,4380_97175,Bealnamulla,111153-00017-1,1,4380_7778208_4591201,4380_1681 -4380_78153,296,4380_97176,Bealnamulla,111157-00021-1,1,4380_7778208_4591201,4380_1681 -4380_78153,295,4380_97177,Bealnamulla,111155-00019-1,1,4380_7778208_4591201,4380_1681 -4380_78147,287,4380_9718,Dublin,6944-00012-1,1,4380_7778208_1090904,4380_177 -4380_78153,285,4380_97183,Bealnamulla,111710-00009-1,1,4380_7778208_4591204,4380_1681 -4380_78153,288,4380_97185,Bealnamulla,111706-00011-1,1,4380_7778208_4591204,4380_1681 -4380_78153,286,4380_97186,Bealnamulla,111712-00010-1,1,4380_7778208_4591204,4380_1681 -4380_78153,291,4380_97187,Bealnamulla,111708-00013-1,1,4380_7778208_4591204,4380_1681 -4380_78153,289,4380_97188,Bealnamulla,111714-00014-1,1,4380_7778208_4591204,4380_1681 -4380_78153,287,4380_97189,Bealnamulla,111716-00012-1,1,4380_7778208_4591204,4380_1681 -4380_78147,289,4380_9719,Dublin,6924-00014-1,1,4380_7778208_1090904,4380_177 -4380_78153,292,4380_97190,Bealnamulla,111713-00016-1,1,4380_7778208_4591204,4380_1681 -4380_78153,290,4380_97191,Bealnamulla,111711-00015-1,1,4380_7778208_4591204,4380_1681 -4380_78153,294,4380_97192,Bealnamulla,111717-00018-1,1,4380_7778208_4591204,4380_1681 -4380_78153,293,4380_97193,Bealnamulla,111707-00017-1,1,4380_7778208_4591204,4380_1681 -4380_78153,296,4380_97194,Bealnamulla,111709-00021-1,1,4380_7778208_4591204,4380_1681 -4380_78153,295,4380_97195,Bealnamulla,111715-00019-1,1,4380_7778208_4591204,4380_1681 -4380_78153,297,4380_97197,Bealnamulla,111323-00008-1,1,4380_7778208_4591202,4380_1681 -4380_78113,293,4380_972,Dublin via Airport,49842-00017-1,1,4380_7778208_1000905,4380_18 -4380_78147,290,4380_9720,Dublin,55432-00015-1,1,4380_7778208_1090904,4380_177 -4380_78153,285,4380_97203,Bealnamulla,112232-00009-1,1,4380_7778208_4591208,4380_1681 -4380_78153,288,4380_97205,Bealnamulla,112226-00011-1,1,4380_7778208_4591208,4380_1681 -4380_78153,286,4380_97206,Bealnamulla,112230-00010-1,1,4380_7778208_4591208,4380_1681 -4380_78153,291,4380_97207,Bealnamulla,112224-00013-1,1,4380_7778208_4591208,4380_1681 -4380_78153,289,4380_97208,Bealnamulla,112228-00014-1,1,4380_7778208_4591208,4380_1681 -4380_78153,287,4380_97209,Bealnamulla,112222-00012-1,1,4380_7778208_4591208,4380_1681 -4380_78147,292,4380_9721,Dublin,55434-00016-1,1,4380_7778208_1090904,4380_177 -4380_78153,292,4380_97210,Bealnamulla,112231-00016-1,1,4380_7778208_4591208,4380_1681 -4380_78153,290,4380_97211,Bealnamulla,112233-00015-1,1,4380_7778208_4591208,4380_1681 -4380_78153,294,4380_97212,Bealnamulla,112223-00018-1,1,4380_7778208_4591208,4380_1681 -4380_78153,293,4380_97213,Bealnamulla,112227-00017-1,1,4380_7778208_4591208,4380_1681 -4380_78153,296,4380_97214,Bealnamulla,112225-00021-1,1,4380_7778208_4591208,4380_1681 -4380_78153,295,4380_97215,Bealnamulla,112229-00019-1,1,4380_7778208_4591208,4380_1681 -4380_78147,293,4380_9722,Dublin,55430-00017-1,1,4380_7778208_1090904,4380_177 -4380_78153,285,4380_97221,Bealnamulla,111176-00009-1,1,4380_7778208_4591201,4380_1681 -4380_78153,288,4380_97223,Bealnamulla,111172-00011-1,1,4380_7778208_4591201,4380_1681 -4380_78153,286,4380_97224,Bealnamulla,111178-00010-1,1,4380_7778208_4591201,4380_1681 -4380_78153,291,4380_97225,Bealnamulla,111174-00013-1,1,4380_7778208_4591201,4380_1681 -4380_78153,289,4380_97226,Bealnamulla,111180-00014-1,1,4380_7778208_4591201,4380_1681 -4380_78153,287,4380_97227,Bealnamulla,111182-00012-1,1,4380_7778208_4591201,4380_1681 -4380_78153,292,4380_97228,Bealnamulla,111179-00016-1,1,4380_7778208_4591201,4380_1681 -4380_78153,290,4380_97229,Bealnamulla,111177-00015-1,1,4380_7778208_4591201,4380_1681 -4380_78147,294,4380_9723,Dublin,55433-00018-1,1,4380_7778208_1090904,4380_177 -4380_78153,294,4380_97230,Bealnamulla,111183-00018-1,1,4380_7778208_4591201,4380_1681 -4380_78153,293,4380_97231,Bealnamulla,111173-00017-1,1,4380_7778208_4591201,4380_1681 -4380_78153,296,4380_97232,Bealnamulla,111175-00021-1,1,4380_7778208_4591201,4380_1681 -4380_78153,295,4380_97233,Bealnamulla,111181-00019-1,1,4380_7778208_4591201,4380_1681 -4380_78153,297,4380_97235,Bealnamulla,111184-00008-1,1,4380_7778208_4591201,4380_1681 -4380_78147,295,4380_9724,Dublin,55431-00019-1,1,4380_7778208_1090904,4380_177 -4380_78153,285,4380_97241,Bealnamulla,111732-00009-1,1,4380_7778208_4591204,4380_1681 -4380_78153,288,4380_97243,Bealnamulla,111730-00011-1,1,4380_7778208_4591204,4380_1681 -4380_78153,286,4380_97244,Bealnamulla,111738-00010-1,1,4380_7778208_4591204,4380_1681 -4380_78153,291,4380_97245,Bealnamulla,111734-00013-1,1,4380_7778208_4591204,4380_1681 -4380_78153,289,4380_97246,Bealnamulla,111740-00014-1,1,4380_7778208_4591204,4380_1681 -4380_78153,287,4380_97247,Bealnamulla,111736-00012-1,1,4380_7778208_4591204,4380_1681 -4380_78153,292,4380_97248,Bealnamulla,111739-00016-1,1,4380_7778208_4591204,4380_1681 -4380_78153,290,4380_97249,Bealnamulla,111733-00015-1,1,4380_7778208_4591204,4380_1681 -4380_78153,294,4380_97250,Bealnamulla,111737-00018-1,1,4380_7778208_4591204,4380_1681 -4380_78153,293,4380_97251,Bealnamulla,111731-00017-1,1,4380_7778208_4591204,4380_1681 -4380_78153,296,4380_97252,Bealnamulla,111735-00021-1,1,4380_7778208_4591204,4380_1681 -4380_78153,295,4380_97253,Bealnamulla,111741-00019-1,1,4380_7778208_4591204,4380_1681 -4380_78153,285,4380_97259,Bealnamulla,112246-00009-1,1,4380_7778208_4591208,4380_1681 -4380_78153,288,4380_97261,Bealnamulla,112252-00011-1,1,4380_7778208_4591208,4380_1681 -4380_78153,286,4380_97262,Bealnamulla,112256-00010-1,1,4380_7778208_4591208,4380_1681 -4380_78153,291,4380_97263,Bealnamulla,112254-00013-1,1,4380_7778208_4591208,4380_1681 -4380_78153,289,4380_97264,Bealnamulla,112248-00014-1,1,4380_7778208_4591208,4380_1681 -4380_78153,287,4380_97265,Bealnamulla,112250-00012-1,1,4380_7778208_4591208,4380_1681 -4380_78153,292,4380_97266,Bealnamulla,112257-00016-1,1,4380_7778208_4591208,4380_1681 -4380_78153,290,4380_97267,Bealnamulla,112247-00015-1,1,4380_7778208_4591208,4380_1681 -4380_78153,294,4380_97268,Bealnamulla,112251-00018-1,1,4380_7778208_4591208,4380_1681 -4380_78153,293,4380_97269,Bealnamulla,112253-00017-1,1,4380_7778208_4591208,4380_1681 -4380_78147,297,4380_9727,Dublin,6910-00008-1,1,4380_7778208_1090903,4380_183 -4380_78153,296,4380_97270,Bealnamulla,112255-00021-1,1,4380_7778208_4591208,4380_1681 -4380_78153,295,4380_97271,Bealnamulla,112249-00019-1,1,4380_7778208_4591208,4380_1681 -4380_78153,297,4380_97273,Bealnamulla,111548-00008-1,1,4380_7778208_4591203,4380_1681 -4380_78153,285,4380_97279,Bealnamulla,111200-00009-1,1,4380_7778208_4591201,4380_1681 -4380_78147,291,4380_9728,Dublin,6955-00013-1,1,4380_7778208_1090904,4380_185 -4380_78153,288,4380_97281,Bealnamulla,111202-00011-1,1,4380_7778208_4591201,4380_1681 -4380_78153,286,4380_97282,Bealnamulla,111204-00010-1,1,4380_7778208_4591201,4380_1681 -4380_78153,291,4380_97283,Bealnamulla,111206-00013-1,1,4380_7778208_4591201,4380_1681 -4380_78153,289,4380_97284,Bealnamulla,111198-00014-1,1,4380_7778208_4591201,4380_1681 -4380_78153,287,4380_97285,Bealnamulla,111208-00012-1,1,4380_7778208_4591201,4380_1681 -4380_78153,292,4380_97286,Bealnamulla,111205-00016-1,1,4380_7778208_4591201,4380_1681 -4380_78153,290,4380_97287,Bealnamulla,111201-00015-1,1,4380_7778208_4591201,4380_1681 -4380_78153,294,4380_97288,Bealnamulla,111209-00018-1,1,4380_7778208_4591201,4380_1681 -4380_78153,293,4380_97289,Bealnamulla,111203-00017-1,1,4380_7778208_4591201,4380_1681 -4380_78147,296,4380_9729,Dublin,55435-00021-1,1,4380_7778208_1090904,4380_185 -4380_78153,296,4380_97290,Bealnamulla,111207-00021-1,1,4380_7778208_4591201,4380_1681 -4380_78153,295,4380_97291,Bealnamulla,111199-00019-1,1,4380_7778208_4591201,4380_1681 -4380_78153,285,4380_97297,Bealnamulla,111764-00009-1,1,4380_7778208_4591204,4380_1681 -4380_78153,288,4380_97299,Bealnamulla,111762-00011-1,1,4380_7778208_4591204,4380_1681 -4380_78113,294,4380_973,Dublin via Airport,49838-00018-1,1,4380_7778208_1000905,4380_18 -4380_78153,286,4380_97300,Bealnamulla,111766-00010-1,1,4380_7778208_4591204,4380_1681 -4380_78153,291,4380_97301,Bealnamulla,111758-00013-1,1,4380_7778208_4591204,4380_1681 -4380_78153,289,4380_97302,Bealnamulla,111756-00014-1,1,4380_7778208_4591204,4380_1681 -4380_78153,287,4380_97303,Bealnamulla,111760-00012-1,1,4380_7778208_4591204,4380_1681 -4380_78153,292,4380_97304,Bealnamulla,111767-00016-1,1,4380_7778208_4591204,4380_1681 -4380_78153,290,4380_97305,Bealnamulla,111765-00015-1,1,4380_7778208_4591204,4380_1681 -4380_78153,294,4380_97306,Bealnamulla,111761-00018-1,1,4380_7778208_4591204,4380_1681 -4380_78153,293,4380_97307,Bealnamulla,111763-00017-1,1,4380_7778208_4591204,4380_1681 -4380_78153,296,4380_97308,Bealnamulla,111759-00021-1,1,4380_7778208_4591204,4380_1681 -4380_78153,295,4380_97309,Bealnamulla,111757-00019-1,1,4380_7778208_4591204,4380_1681 -4380_78153,297,4380_97311,Bealnamulla,111768-00008-1,1,4380_7778208_4591204,4380_1681 -4380_78153,285,4380_97317,Bealnamulla,112270-00009-1,1,4380_7778208_4591208,4380_1681 -4380_78153,288,4380_97319,Bealnamulla,112276-00011-1,1,4380_7778208_4591208,4380_1681 -4380_78153,286,4380_97320,Bealnamulla,112272-00010-1,1,4380_7778208_4591208,4380_1681 -4380_78153,291,4380_97321,Bealnamulla,112278-00013-1,1,4380_7778208_4591208,4380_1681 -4380_78153,289,4380_97322,Bealnamulla,112274-00014-1,1,4380_7778208_4591208,4380_1681 -4380_78153,287,4380_97323,Bealnamulla,112280-00012-1,1,4380_7778208_4591208,4380_1681 -4380_78153,292,4380_97324,Bealnamulla,112273-00016-1,1,4380_7778208_4591208,4380_1681 -4380_78153,290,4380_97325,Bealnamulla,112271-00015-1,1,4380_7778208_4591208,4380_1681 -4380_78153,294,4380_97326,Bealnamulla,112281-00018-1,1,4380_7778208_4591208,4380_1681 -4380_78153,293,4380_97327,Bealnamulla,112277-00017-1,1,4380_7778208_4591208,4380_1681 -4380_78153,296,4380_97328,Bealnamulla,112279-00021-1,1,4380_7778208_4591208,4380_1681 -4380_78153,295,4380_97329,Bealnamulla,112275-00019-1,1,4380_7778208_4591208,4380_1681 -4380_78153,285,4380_97335,Bealnamulla,111230-00009-1,1,4380_7778208_4591201,4380_1681 -4380_78153,288,4380_97337,Bealnamulla,111232-00011-1,1,4380_7778208_4591201,4380_1681 -4380_78153,286,4380_97338,Bealnamulla,111234-00010-1,1,4380_7778208_4591201,4380_1681 -4380_78153,291,4380_97339,Bealnamulla,111228-00013-1,1,4380_7778208_4591201,4380_1681 -4380_78153,289,4380_97340,Bealnamulla,111224-00014-1,1,4380_7778208_4591201,4380_1681 -4380_78153,287,4380_97341,Bealnamulla,111226-00012-1,1,4380_7778208_4591201,4380_1681 -4380_78153,292,4380_97342,Bealnamulla,111235-00016-1,1,4380_7778208_4591201,4380_1681 -4380_78153,290,4380_97343,Bealnamulla,111231-00015-1,1,4380_7778208_4591201,4380_1681 -4380_78153,294,4380_97344,Bealnamulla,111227-00018-1,1,4380_7778208_4591201,4380_1681 -4380_78153,293,4380_97345,Bealnamulla,111233-00017-1,1,4380_7778208_4591201,4380_1681 -4380_78153,296,4380_97346,Bealnamulla,111229-00021-1,1,4380_7778208_4591201,4380_1681 -4380_78153,295,4380_97347,Bealnamulla,111225-00019-1,1,4380_7778208_4591201,4380_1681 -4380_78153,297,4380_97349,Bealnamulla,111935-00008-1,1,4380_7778208_4591205,4380_1681 -4380_78147,285,4380_9735,Dublin,6973-00009-1,1,4380_7778208_1090905,4380_176 -4380_78153,285,4380_97355,Bealnamulla,112034-00009-1,1,4380_7778208_4591206,4380_1681 -4380_78153,288,4380_97357,Bealnamulla,112026-00011-1,1,4380_7778208_4591206,4380_1681 -4380_78153,286,4380_97358,Bealnamulla,112024-00010-1,1,4380_7778208_4591206,4380_1681 -4380_78153,291,4380_97359,Bealnamulla,112032-00013-1,1,4380_7778208_4591206,4380_1681 -4380_78147,286,4380_9736,Dublin,6977-00010-1,1,4380_7778208_1090905,4380_176 -4380_78153,289,4380_97360,Bealnamulla,112030-00014-1,1,4380_7778208_4591206,4380_1681 -4380_78153,287,4380_97361,Bealnamulla,112028-00012-1,1,4380_7778208_4591206,4380_1681 -4380_78153,292,4380_97362,Bealnamulla,112025-00016-1,1,4380_7778208_4591206,4380_1681 -4380_78153,290,4380_97363,Bealnamulla,112035-00015-1,1,4380_7778208_4591206,4380_1681 -4380_78153,294,4380_97364,Bealnamulla,112029-00018-1,1,4380_7778208_4591206,4380_1681 -4380_78153,293,4380_97365,Bealnamulla,112027-00017-1,1,4380_7778208_4591206,4380_1681 -4380_78153,296,4380_97366,Bealnamulla,112033-00021-1,1,4380_7778208_4591206,4380_1681 -4380_78153,295,4380_97367,Bealnamulla,112031-00019-1,1,4380_7778208_4591206,4380_1681 -4380_78147,288,4380_9737,Dublin,6981-00011-1,1,4380_7778208_1090905,4380_176 -4380_78153,285,4380_97373,Bealnamulla,112298-00009-1,1,4380_7778208_4591208,4380_1681 -4380_78153,288,4380_97375,Bealnamulla,112304-00011-1,1,4380_7778208_4591208,4380_1681 -4380_78153,286,4380_97376,Bealnamulla,112302-00010-1,1,4380_7778208_4591208,4380_1681 -4380_78153,291,4380_97377,Bealnamulla,112300-00013-1,1,4380_7778208_4591208,4380_1681 -4380_78153,289,4380_97378,Bealnamulla,112294-00014-1,1,4380_7778208_4591208,4380_1681 -4380_78153,287,4380_97379,Bealnamulla,112296-00012-1,1,4380_7778208_4591208,4380_1681 -4380_78147,287,4380_9738,Dublin,6985-00012-1,1,4380_7778208_1090905,4380_176 -4380_78153,292,4380_97380,Bealnamulla,112303-00016-1,1,4380_7778208_4591208,4380_1681 -4380_78153,290,4380_97381,Bealnamulla,112299-00015-1,1,4380_7778208_4591208,4380_1681 -4380_78153,294,4380_97382,Bealnamulla,112297-00018-1,1,4380_7778208_4591208,4380_1681 -4380_78153,293,4380_97383,Bealnamulla,112305-00017-1,1,4380_7778208_4591208,4380_1681 -4380_78153,296,4380_97384,Bealnamulla,112301-00021-1,1,4380_7778208_4591208,4380_1681 -4380_78153,295,4380_97385,Bealnamulla,112295-00019-1,1,4380_7778208_4591208,4380_1681 -4380_78153,297,4380_97387,Bealnamulla,112038-00008-1,1,4380_7778208_4591206,4380_1681 -4380_78147,289,4380_9739,Dublin,6969-00014-1,1,4380_7778208_1090905,4380_176 -4380_78153,285,4380_97393,Bealnamulla,111254-00009-1,1,4380_7778208_4591201,4380_1681 -4380_78153,288,4380_97395,Bealnamulla,111248-00011-1,1,4380_7778208_4591201,4380_1681 -4380_78153,286,4380_97396,Bealnamulla,111250-00010-1,1,4380_7778208_4591201,4380_1681 -4380_78153,291,4380_97397,Bealnamulla,111256-00013-1,1,4380_7778208_4591201,4380_1681 -4380_78153,289,4380_97398,Bealnamulla,111252-00014-1,1,4380_7778208_4591201,4380_1681 -4380_78153,287,4380_97399,Bealnamulla,111258-00012-1,1,4380_7778208_4591201,4380_1681 -4380_78113,295,4380_974,Dublin via Airport,49846-00019-1,1,4380_7778208_1000905,4380_18 -4380_78147,290,4380_9740,Dublin,55463-00015-1,1,4380_7778208_1090905,4380_176 -4380_78153,292,4380_97400,Bealnamulla,111251-00016-1,1,4380_7778208_4591201,4380_1681 -4380_78153,290,4380_97401,Bealnamulla,111255-00015-1,1,4380_7778208_4591201,4380_1681 -4380_78153,294,4380_97402,Bealnamulla,111259-00018-1,1,4380_7778208_4591201,4380_1681 -4380_78153,293,4380_97403,Bealnamulla,111249-00017-1,1,4380_7778208_4591201,4380_1681 -4380_78153,296,4380_97404,Bealnamulla,111257-00021-1,1,4380_7778208_4591201,4380_1681 -4380_78153,295,4380_97405,Bealnamulla,111253-00019-1,1,4380_7778208_4591201,4380_1681 -4380_78147,292,4380_9741,Dublin,55461-00016-1,1,4380_7778208_1090905,4380_176 -4380_78153,285,4380_97411,Bealnamulla,112055-00009-1,1,4380_7778208_4591206,4380_1681 -4380_78153,288,4380_97413,Bealnamulla,112057-00011-1,1,4380_7778208_4591206,4380_1681 -4380_78153,286,4380_97414,Bealnamulla,112049-00010-1,1,4380_7778208_4591206,4380_1681 -4380_78153,291,4380_97415,Bealnamulla,112051-00013-1,1,4380_7778208_4591206,4380_1681 -4380_78153,289,4380_97416,Bealnamulla,112059-00014-1,1,4380_7778208_4591206,4380_1681 -4380_78153,287,4380_97417,Bealnamulla,112053-00012-1,1,4380_7778208_4591206,4380_1681 -4380_78153,292,4380_97418,Bealnamulla,112050-00016-1,1,4380_7778208_4591206,4380_1681 -4380_78153,290,4380_97419,Bealnamulla,112056-00015-1,1,4380_7778208_4591206,4380_1681 -4380_78147,293,4380_9742,Dublin,55462-00017-1,1,4380_7778208_1090905,4380_176 -4380_78153,294,4380_97420,Bealnamulla,112054-00018-1,1,4380_7778208_4591206,4380_1681 -4380_78153,293,4380_97421,Bealnamulla,112058-00017-1,1,4380_7778208_4591206,4380_1681 -4380_78153,296,4380_97422,Bealnamulla,112052-00021-1,1,4380_7778208_4591206,4380_1681 -4380_78153,295,4380_97423,Bealnamulla,112060-00019-1,1,4380_7778208_4591206,4380_1681 -4380_78153,297,4380_97425,Bealnamulla,111808-00008-1,1,4380_7778208_4591204,4380_1681 -4380_78147,294,4380_9743,Dublin,55460-00018-1,1,4380_7778208_1090905,4380_176 -4380_78153,285,4380_97431,Bealnamulla,112318-00009-1,1,4380_7778208_4591208,4380_1681 -4380_78153,288,4380_97433,Bealnamulla,112322-00011-1,1,4380_7778208_4591208,4380_1681 -4380_78153,286,4380_97434,Bealnamulla,112328-00010-1,1,4380_7778208_4591208,4380_1681 -4380_78153,291,4380_97435,Bealnamulla,112326-00013-1,1,4380_7778208_4591208,4380_1681 -4380_78153,289,4380_97436,Bealnamulla,112324-00014-1,1,4380_7778208_4591208,4380_1681 -4380_78153,287,4380_97437,Bealnamulla,112320-00012-1,1,4380_7778208_4591208,4380_1681 -4380_78153,292,4380_97438,Bealnamulla,112329-00016-1,1,4380_7778208_4591208,4380_1681 -4380_78153,290,4380_97439,Bealnamulla,112319-00015-1,1,4380_7778208_4591208,4380_1681 -4380_78147,295,4380_9744,Dublin,55459-00019-1,1,4380_7778208_1090905,4380_176 -4380_78153,294,4380_97440,Bealnamulla,112321-00018-1,1,4380_7778208_4591208,4380_1681 -4380_78153,293,4380_97441,Bealnamulla,112323-00017-1,1,4380_7778208_4591208,4380_1681 -4380_78153,296,4380_97442,Bealnamulla,112327-00021-1,1,4380_7778208_4591208,4380_1681 -4380_78153,295,4380_97443,Bealnamulla,112325-00019-1,1,4380_7778208_4591208,4380_1681 -4380_78153,285,4380_97449,Bealnamulla,111423-00009-1,1,4380_7778208_4591202,4380_1681 -4380_78153,288,4380_97451,Bealnamulla,111431-00011-1,1,4380_7778208_4591202,4380_1681 -4380_78153,286,4380_97452,Bealnamulla,111429-00010-1,1,4380_7778208_4591202,4380_1681 -4380_78153,291,4380_97453,Bealnamulla,111427-00013-1,1,4380_7778208_4591202,4380_1681 -4380_78153,289,4380_97454,Bealnamulla,111421-00014-1,1,4380_7778208_4591202,4380_1681 -4380_78153,287,4380_97455,Bealnamulla,111425-00012-1,1,4380_7778208_4591202,4380_1681 -4380_78153,292,4380_97456,Bealnamulla,111430-00016-1,1,4380_7778208_4591202,4380_1681 -4380_78153,290,4380_97457,Bealnamulla,111424-00015-1,1,4380_7778208_4591202,4380_1681 -4380_78153,294,4380_97458,Bealnamulla,111426-00018-1,1,4380_7778208_4591202,4380_1681 -4380_78153,293,4380_97459,Bealnamulla,111432-00017-1,1,4380_7778208_4591202,4380_1681 -4380_78153,296,4380_97460,Bealnamulla,111428-00021-1,1,4380_7778208_4591202,4380_1681 -4380_78153,295,4380_97461,Bealnamulla,111422-00019-1,1,4380_7778208_4591202,4380_1681 -4380_78153,297,4380_97463,Bealnamulla,111985-00008-1,1,4380_7778208_4591205,4380_1681 -4380_78153,285,4380_97469,Bealnamulla,112082-00009-1,1,4380_7778208_4591206,4380_1681 -4380_78147,297,4380_9747,Dublin,6021-00008-1,1,4380_7778208_1090114,4380_181 -4380_78153,288,4380_97471,Bealnamulla,112075-00011-1,1,4380_7778208_4591206,4380_1681 -4380_78153,286,4380_97472,Bealnamulla,112078-00010-1,1,4380_7778208_4591206,4380_1681 -4380_78153,291,4380_97473,Bealnamulla,112086-00013-1,1,4380_7778208_4591206,4380_1681 -4380_78153,289,4380_97474,Bealnamulla,112080-00014-1,1,4380_7778208_4591206,4380_1681 -4380_78153,287,4380_97475,Bealnamulla,112084-00012-1,1,4380_7778208_4591206,4380_1681 -4380_78153,292,4380_97476,Bealnamulla,112079-00016-1,1,4380_7778208_4591206,4380_1681 -4380_78153,290,4380_97477,Bealnamulla,112083-00015-1,1,4380_7778208_4591206,4380_1681 -4380_78153,294,4380_97478,Bealnamulla,112085-00018-1,1,4380_7778208_4591206,4380_1681 -4380_78153,293,4380_97479,Bealnamulla,112076-00017-1,1,4380_7778208_4591206,4380_1681 -4380_78147,291,4380_9748,Dublin,5499-00013-1,1,4380_7778208_1090104,4380_184 -4380_78153,296,4380_97480,Bealnamulla,112087-00021-1,1,4380_7778208_4591206,4380_1681 -4380_78153,295,4380_97481,Bealnamulla,112081-00019-1,1,4380_7778208_4591206,4380_1681 -4380_78153,285,4380_97487,Bealnamulla,112352-00009-1,1,4380_7778208_4591208,4380_1681 -4380_78153,288,4380_97489,Bealnamulla,112342-00011-1,1,4380_7778208_4591208,4380_1681 -4380_78147,296,4380_9749,Dublin,54831-00021-1,1,4380_7778208_1090104,4380_184 -4380_78153,286,4380_97490,Bealnamulla,112348-00010-1,1,4380_7778208_4591208,4380_1681 -4380_78153,291,4380_97491,Bealnamulla,112346-00013-1,1,4380_7778208_4591208,4380_1681 -4380_78153,289,4380_97492,Bealnamulla,112350-00014-1,1,4380_7778208_4591208,4380_1681 -4380_78153,287,4380_97493,Bealnamulla,112344-00012-1,1,4380_7778208_4591208,4380_1681 -4380_78153,292,4380_97494,Bealnamulla,112349-00016-1,1,4380_7778208_4591208,4380_1681 -4380_78153,290,4380_97495,Bealnamulla,112353-00015-1,1,4380_7778208_4591208,4380_1681 -4380_78153,294,4380_97496,Bealnamulla,112345-00018-1,1,4380_7778208_4591208,4380_1681 -4380_78153,293,4380_97497,Bealnamulla,112343-00017-1,1,4380_7778208_4591208,4380_1681 -4380_78153,296,4380_97498,Bealnamulla,112347-00021-1,1,4380_7778208_4591208,4380_1681 -4380_78153,295,4380_97499,Bealnamulla,112351-00019-1,1,4380_7778208_4591208,4380_1681 -4380_78113,296,4380_975,Dublin via Airport,49844-00021-1,1,4380_7778208_1000905,4380_20 -4380_78153,297,4380_97501,Bealnamulla,112096-00008-1,1,4380_7778208_4591206,4380_1681 -4380_78153,285,4380_97507,Bealnamulla,111447-00009-1,1,4380_7778208_4591202,4380_1681 -4380_78153,288,4380_97509,Bealnamulla,111449-00011-1,1,4380_7778208_4591202,4380_1681 -4380_78153,286,4380_97510,Bealnamulla,111453-00010-1,1,4380_7778208_4591202,4380_1681 -4380_78153,291,4380_97511,Bealnamulla,111445-00013-1,1,4380_7778208_4591202,4380_1681 -4380_78153,289,4380_97512,Bealnamulla,111451-00014-1,1,4380_7778208_4591202,4380_1681 -4380_78153,287,4380_97513,Bealnamulla,111455-00012-1,1,4380_7778208_4591202,4380_1681 -4380_78153,292,4380_97514,Bealnamulla,111454-00016-1,1,4380_7778208_4591202,4380_1681 -4380_78153,290,4380_97515,Bealnamulla,111448-00015-1,1,4380_7778208_4591202,4380_1681 -4380_78153,294,4380_97516,Bealnamulla,111456-00018-1,1,4380_7778208_4591202,4380_1681 -4380_78153,293,4380_97517,Bealnamulla,111450-00017-1,1,4380_7778208_4591202,4380_1681 -4380_78153,296,4380_97518,Bealnamulla,111446-00021-1,1,4380_7778208_4591202,4380_1681 -4380_78153,295,4380_97519,Bealnamulla,111452-00019-1,1,4380_7778208_4591202,4380_1681 -4380_78153,285,4380_97525,Bealnamulla,112104-00009-1,1,4380_7778208_4591206,4380_1681 -4380_78153,288,4380_97527,Bealnamulla,112110-00011-1,1,4380_7778208_4591206,4380_1681 -4380_78153,286,4380_97528,Bealnamulla,112101-00010-1,1,4380_7778208_4591206,4380_1681 -4380_78153,291,4380_97529,Bealnamulla,112112-00013-1,1,4380_7778208_4591206,4380_1681 -4380_78153,289,4380_97530,Bealnamulla,112108-00014-1,1,4380_7778208_4591206,4380_1681 -4380_78153,287,4380_97531,Bealnamulla,112106-00012-1,1,4380_7778208_4591206,4380_1681 -4380_78153,292,4380_97532,Bealnamulla,112102-00016-1,1,4380_7778208_4591206,4380_1681 -4380_78153,290,4380_97533,Bealnamulla,112105-00015-1,1,4380_7778208_4591206,4380_1681 -4380_78153,294,4380_97534,Bealnamulla,112107-00018-1,1,4380_7778208_4591206,4380_1681 -4380_78153,293,4380_97535,Bealnamulla,112111-00017-1,1,4380_7778208_4591206,4380_1681 -4380_78153,296,4380_97536,Bealnamulla,112113-00021-1,1,4380_7778208_4591206,4380_1681 -4380_78153,295,4380_97537,Bealnamulla,112109-00019-1,1,4380_7778208_4591206,4380_1681 -4380_78153,297,4380_97539,Bealnamulla,111860-00008-1,1,4380_7778208_4591204,4380_1681 -4380_78154,285,4380_97545,Athlone,112120-00009-1,0,4380_7778208_4591207,4380_1682 -4380_78154,288,4380_97547,Athlone,112122-00011-1,0,4380_7778208_4591207,4380_1682 -4380_78154,286,4380_97548,Athlone,112124-00010-1,0,4380_7778208_4591207,4380_1682 -4380_78154,291,4380_97549,Athlone,112116-00013-1,0,4380_7778208_4591207,4380_1682 -4380_78147,285,4380_9755,Dublin,6032-00009-1,1,4380_7778208_1090115,4380_177 -4380_78154,289,4380_97550,Athlone,112114-00014-1,0,4380_7778208_4591207,4380_1682 -4380_78154,287,4380_97551,Athlone,112118-00012-1,0,4380_7778208_4591207,4380_1682 -4380_78154,292,4380_97552,Athlone,112125-00016-1,0,4380_7778208_4591207,4380_1682 -4380_78154,290,4380_97553,Athlone,112121-00015-1,0,4380_7778208_4591207,4380_1682 -4380_78154,294,4380_97554,Athlone,112119-00018-1,0,4380_7778208_4591207,4380_1682 -4380_78154,293,4380_97555,Athlone,112123-00017-1,0,4380_7778208_4591207,4380_1682 -4380_78154,296,4380_97556,Athlone,112117-00021-1,0,4380_7778208_4591207,4380_1682 -4380_78154,295,4380_97557,Athlone,112115-00019-1,0,4380_7778208_4591207,4380_1682 -4380_78147,286,4380_9756,Dublin,6037-00010-1,1,4380_7778208_1090115,4380_177 -4380_78154,285,4380_97563,Athlone,111109-00009-1,0,4380_7778208_4591201,4380_1682 -4380_78154,288,4380_97565,Athlone,111107-00011-1,0,4380_7778208_4591201,4380_1682 -4380_78154,286,4380_97566,Athlone,111113-00010-1,0,4380_7778208_4591201,4380_1682 -4380_78154,291,4380_97567,Athlone,111115-00013-1,0,4380_7778208_4591201,4380_1682 -4380_78154,289,4380_97568,Athlone,111111-00014-1,0,4380_7778208_4591201,4380_1682 -4380_78154,287,4380_97569,Athlone,111117-00012-1,0,4380_7778208_4591201,4380_1682 -4380_78147,288,4380_9757,Dublin,6042-00011-1,1,4380_7778208_1090115,4380_177 -4380_78154,292,4380_97570,Athlone,111114-00016-1,0,4380_7778208_4591201,4380_1682 -4380_78154,290,4380_97571,Athlone,111110-00015-1,0,4380_7778208_4591201,4380_1682 -4380_78154,294,4380_97572,Athlone,111118-00018-1,0,4380_7778208_4591201,4380_1682 -4380_78154,293,4380_97573,Athlone,111108-00017-1,0,4380_7778208_4591201,4380_1682 -4380_78154,296,4380_97574,Athlone,111116-00021-1,0,4380_7778208_4591201,4380_1682 -4380_78154,295,4380_97575,Athlone,111112-00019-1,0,4380_7778208_4591201,4380_1682 -4380_78147,287,4380_9758,Dublin,6047-00012-1,1,4380_7778208_1090115,4380_177 -4380_78154,285,4380_97581,Athlone,111670-00009-1,0,4380_7778208_4591204,4380_1682 -4380_78154,288,4380_97583,Athlone,111674-00011-1,0,4380_7778208_4591204,4380_1682 -4380_78154,286,4380_97584,Athlone,111676-00010-1,0,4380_7778208_4591204,4380_1682 -4380_78154,291,4380_97585,Athlone,111678-00013-1,0,4380_7778208_4591204,4380_1682 -4380_78154,289,4380_97586,Athlone,111672-00014-1,0,4380_7778208_4591204,4380_1682 -4380_78154,287,4380_97587,Athlone,111680-00012-1,0,4380_7778208_4591204,4380_1682 -4380_78154,292,4380_97588,Athlone,111677-00016-1,0,4380_7778208_4591204,4380_1682 -4380_78154,290,4380_97589,Athlone,111671-00015-1,0,4380_7778208_4591204,4380_1682 -4380_78147,289,4380_9759,Dublin,6027-00014-1,1,4380_7778208_1090115,4380_177 -4380_78154,294,4380_97590,Athlone,111681-00018-1,0,4380_7778208_4591204,4380_1682 -4380_78154,293,4380_97591,Athlone,111675-00017-1,0,4380_7778208_4591204,4380_1682 -4380_78154,296,4380_97592,Athlone,111679-00021-1,0,4380_7778208_4591204,4380_1682 -4380_78154,295,4380_97593,Athlone,111673-00019-1,0,4380_7778208_4591204,4380_1682 -4380_78154,285,4380_97599,Athlone,112146-00009-1,0,4380_7778208_4591207,4380_1682 -4380_78147,290,4380_9760,Dublin,55257-00015-1,1,4380_7778208_1090115,4380_177 -4380_78154,288,4380_97601,Athlone,112144-00011-1,0,4380_7778208_4591207,4380_1682 -4380_78154,286,4380_97602,Athlone,112142-00010-1,0,4380_7778208_4591207,4380_1682 -4380_78154,291,4380_97603,Athlone,112140-00013-1,0,4380_7778208_4591207,4380_1682 -4380_78154,289,4380_97604,Athlone,112138-00014-1,0,4380_7778208_4591207,4380_1682 -4380_78154,287,4380_97605,Athlone,112148-00012-1,0,4380_7778208_4591207,4380_1682 -4380_78154,292,4380_97606,Athlone,112143-00016-1,0,4380_7778208_4591207,4380_1682 -4380_78154,290,4380_97607,Athlone,112147-00015-1,0,4380_7778208_4591207,4380_1682 -4380_78154,294,4380_97608,Athlone,112149-00018-1,0,4380_7778208_4591207,4380_1682 -4380_78154,293,4380_97609,Athlone,112145-00017-1,0,4380_7778208_4591207,4380_1682 -4380_78147,292,4380_9761,Dublin,55255-00016-1,1,4380_7778208_1090115,4380_177 -4380_78154,296,4380_97610,Athlone,112141-00021-1,0,4380_7778208_4591207,4380_1682 -4380_78154,295,4380_97611,Athlone,112139-00019-1,0,4380_7778208_4591207,4380_1682 -4380_78154,297,4380_97613,Athlone,111296-00008-1,0,4380_7778208_4591202,4380_1682 -4380_78154,285,4380_97619,Athlone,111485-00009-1,0,4380_7778208_4591203,4380_1682 -4380_78147,293,4380_9762,Dublin,55258-00017-1,1,4380_7778208_1090115,4380_177 -4380_78154,288,4380_97621,Athlone,111487-00011-1,0,4380_7778208_4591203,4380_1682 -4380_78154,286,4380_97622,Athlone,111491-00010-1,0,4380_7778208_4591203,4380_1682 -4380_78154,291,4380_97623,Athlone,111489-00013-1,0,4380_7778208_4591203,4380_1682 -4380_78154,289,4380_97624,Athlone,111481-00014-1,0,4380_7778208_4591203,4380_1682 -4380_78154,287,4380_97625,Athlone,111483-00012-1,0,4380_7778208_4591203,4380_1682 -4380_78154,292,4380_97626,Athlone,111492-00016-1,0,4380_7778208_4591203,4380_1682 -4380_78154,290,4380_97627,Athlone,111486-00015-1,0,4380_7778208_4591203,4380_1682 -4380_78154,294,4380_97628,Athlone,111484-00018-1,0,4380_7778208_4591203,4380_1682 -4380_78154,293,4380_97629,Athlone,111488-00017-1,0,4380_7778208_4591203,4380_1682 -4380_78147,294,4380_9763,Dublin,55259-00018-1,1,4380_7778208_1090115,4380_177 -4380_78154,296,4380_97630,Athlone,111490-00021-1,0,4380_7778208_4591203,4380_1682 -4380_78154,295,4380_97631,Athlone,111482-00019-1,0,4380_7778208_4591203,4380_1682 -4380_78154,285,4380_97637,Athlone,112406-00009-1,0,4380_7778208_4591261,4380_1682 -4380_78154,288,4380_97639,Athlone,112402-00011-1,0,4380_7778208_4591261,4380_1682 -4380_78147,295,4380_9764,Dublin,55256-00019-1,1,4380_7778208_1090115,4380_177 -4380_78154,286,4380_97640,Athlone,112408-00010-1,0,4380_7778208_4591261,4380_1682 -4380_78154,291,4380_97641,Athlone,112412-00013-1,0,4380_7778208_4591261,4380_1682 -4380_78154,289,4380_97642,Athlone,112410-00014-1,0,4380_7778208_4591261,4380_1682 -4380_78154,287,4380_97643,Athlone,112404-00012-1,0,4380_7778208_4591261,4380_1682 -4380_78154,292,4380_97644,Athlone,112409-00016-1,0,4380_7778208_4591261,4380_1682 -4380_78154,290,4380_97645,Athlone,112407-00015-1,0,4380_7778208_4591261,4380_1682 -4380_78154,294,4380_97646,Athlone,112405-00018-1,0,4380_7778208_4591261,4380_1682 -4380_78154,293,4380_97647,Athlone,112403-00017-1,0,4380_7778208_4591261,4380_1682 -4380_78154,296,4380_97648,Athlone,112413-00021-1,0,4380_7778208_4591261,4380_1682 -4380_78154,295,4380_97649,Athlone,112411-00019-1,0,4380_7778208_4591261,4380_1682 -4380_78154,297,4380_97651,Athlone,111145-00008-1,0,4380_7778208_4591201,4380_1682 -4380_78154,285,4380_97657,Athlone,111316-00009-1,0,4380_7778208_4591202,4380_1682 -4380_78154,288,4380_97659,Athlone,111320-00011-1,0,4380_7778208_4591202,4380_1682 -4380_78147,291,4380_9766,Dublin,5636-00013-1,1,4380_7778208_1090106,4380_177 -4380_78154,286,4380_97660,Athlone,111310-00010-1,0,4380_7778208_4591202,4380_1682 -4380_78154,291,4380_97661,Athlone,111312-00013-1,0,4380_7778208_4591202,4380_1682 -4380_78154,289,4380_97662,Athlone,111318-00014-1,0,4380_7778208_4591202,4380_1682 -4380_78154,287,4380_97663,Athlone,111314-00012-1,0,4380_7778208_4591202,4380_1682 -4380_78154,292,4380_97664,Athlone,111311-00016-1,0,4380_7778208_4591202,4380_1682 -4380_78154,290,4380_97665,Athlone,111317-00015-1,0,4380_7778208_4591202,4380_1682 -4380_78154,294,4380_97666,Athlone,111315-00018-1,0,4380_7778208_4591202,4380_1682 -4380_78154,293,4380_97667,Athlone,111321-00017-1,0,4380_7778208_4591202,4380_1682 -4380_78154,296,4380_97668,Athlone,111313-00021-1,0,4380_7778208_4591202,4380_1682 -4380_78154,295,4380_97669,Athlone,111319-00019-1,0,4380_7778208_4591202,4380_1682 -4380_78147,296,4380_9767,Dublin,54940-00021-1,1,4380_7778208_1090106,4380_177 -4380_78154,285,4380_97675,Athlone,112220-00009-1,0,4380_7778208_4591208,4380_1682 -4380_78154,288,4380_97677,Athlone,112216-00011-1,0,4380_7778208_4591208,4380_1682 -4380_78154,286,4380_97678,Athlone,112212-00010-1,0,4380_7778208_4591208,4380_1682 -4380_78154,291,4380_97679,Athlone,112218-00013-1,0,4380_7778208_4591208,4380_1682 -4380_78154,289,4380_97680,Athlone,112210-00014-1,0,4380_7778208_4591208,4380_1682 -4380_78154,287,4380_97681,Athlone,112214-00012-1,0,4380_7778208_4591208,4380_1682 -4380_78154,292,4380_97682,Athlone,112213-00016-1,0,4380_7778208_4591208,4380_1682 -4380_78154,290,4380_97683,Athlone,112221-00015-1,0,4380_7778208_4591208,4380_1682 -4380_78154,294,4380_97684,Athlone,112215-00018-1,0,4380_7778208_4591208,4380_1682 -4380_78154,293,4380_97685,Athlone,112217-00017-1,0,4380_7778208_4591208,4380_1682 -4380_78154,296,4380_97686,Athlone,112219-00021-1,0,4380_7778208_4591208,4380_1682 -4380_78154,295,4380_97687,Athlone,112211-00019-1,0,4380_7778208_4591208,4380_1682 -4380_78154,297,4380_97689,Athlone,111511-00008-1,0,4380_7778208_4591203,4380_1682 -4380_78147,297,4380_9769,Dublin,6959-00008-1,1,4380_7778208_1090904,4380_177 -4380_78154,285,4380_97695,Athlone,111159-00009-1,0,4380_7778208_4591201,4380_1682 -4380_78154,288,4380_97697,Athlone,111161-00011-1,0,4380_7778208_4591201,4380_1682 -4380_78154,286,4380_97698,Athlone,111167-00010-1,0,4380_7778208_4591201,4380_1682 -4380_78154,291,4380_97699,Athlone,111169-00013-1,0,4380_7778208_4591201,4380_1682 -4380_78154,289,4380_97700,Athlone,111165-00014-1,0,4380_7778208_4591201,4380_1682 -4380_78154,287,4380_97701,Athlone,111163-00012-1,0,4380_7778208_4591201,4380_1682 -4380_78154,292,4380_97702,Athlone,111168-00016-1,0,4380_7778208_4591201,4380_1682 -4380_78154,290,4380_97703,Athlone,111160-00015-1,0,4380_7778208_4591201,4380_1682 -4380_78154,294,4380_97704,Athlone,111164-00018-1,0,4380_7778208_4591201,4380_1682 -4380_78154,293,4380_97705,Athlone,111162-00017-1,0,4380_7778208_4591201,4380_1682 -4380_78154,296,4380_97706,Athlone,111170-00021-1,0,4380_7778208_4591201,4380_1682 -4380_78154,295,4380_97707,Athlone,111166-00019-1,0,4380_7778208_4591201,4380_1682 -4380_78154,285,4380_97713,Athlone,111718-00009-1,0,4380_7778208_4591204,4380_1682 -4380_78154,288,4380_97715,Athlone,111720-00011-1,0,4380_7778208_4591204,4380_1682 -4380_78154,286,4380_97716,Athlone,111722-00010-1,0,4380_7778208_4591204,4380_1682 -4380_78154,291,4380_97717,Athlone,111728-00013-1,0,4380_7778208_4591204,4380_1682 -4380_78154,289,4380_97718,Athlone,111726-00014-1,0,4380_7778208_4591204,4380_1682 -4380_78154,287,4380_97719,Athlone,111724-00012-1,0,4380_7778208_4591204,4380_1682 -4380_78154,292,4380_97720,Athlone,111723-00016-1,0,4380_7778208_4591204,4380_1682 -4380_78154,290,4380_97721,Athlone,111719-00015-1,0,4380_7778208_4591204,4380_1682 -4380_78154,294,4380_97722,Athlone,111725-00018-1,0,4380_7778208_4591204,4380_1682 -4380_78154,293,4380_97723,Athlone,111721-00017-1,0,4380_7778208_4591204,4380_1682 -4380_78154,296,4380_97724,Athlone,111729-00021-1,0,4380_7778208_4591204,4380_1682 -4380_78154,295,4380_97725,Athlone,111727-00019-1,0,4380_7778208_4591204,4380_1682 -4380_78154,297,4380_97727,Athlone,111348-00008-1,0,4380_7778208_4591202,4380_1682 -4380_78154,285,4380_97733,Athlone,112236-00009-1,0,4380_7778208_4591208,4380_1682 -4380_78154,288,4380_97735,Athlone,112242-00011-1,0,4380_7778208_4591208,4380_1682 -4380_78154,286,4380_97736,Athlone,112234-00010-1,0,4380_7778208_4591208,4380_1682 -4380_78154,291,4380_97737,Athlone,112238-00013-1,0,4380_7778208_4591208,4380_1682 -4380_78154,289,4380_97738,Athlone,112244-00014-1,0,4380_7778208_4591208,4380_1682 -4380_78154,287,4380_97739,Athlone,112240-00012-1,0,4380_7778208_4591208,4380_1682 -4380_78154,292,4380_97740,Athlone,112235-00016-1,0,4380_7778208_4591208,4380_1682 -4380_78154,290,4380_97741,Athlone,112237-00015-1,0,4380_7778208_4591208,4380_1682 -4380_78154,294,4380_97742,Athlone,112241-00018-1,0,4380_7778208_4591208,4380_1682 -4380_78154,293,4380_97743,Athlone,112243-00017-1,0,4380_7778208_4591208,4380_1682 -4380_78154,296,4380_97744,Athlone,112239-00021-1,0,4380_7778208_4591208,4380_1682 -4380_78154,295,4380_97745,Athlone,112245-00019-1,0,4380_7778208_4591208,4380_1682 -4380_78147,285,4380_9775,Dublin,6082-00009-1,1,4380_7778208_1090117,4380_176 -4380_78154,285,4380_97751,Athlone,111191-00009-1,0,4380_7778208_4591201,4380_1682 -4380_78154,288,4380_97753,Athlone,111187-00011-1,0,4380_7778208_4591201,4380_1682 -4380_78154,286,4380_97754,Athlone,111193-00010-1,0,4380_7778208_4591201,4380_1682 -4380_78154,291,4380_97755,Athlone,111185-00013-1,0,4380_7778208_4591201,4380_1682 -4380_78154,289,4380_97756,Athlone,111189-00014-1,0,4380_7778208_4591201,4380_1682 -4380_78154,287,4380_97757,Athlone,111195-00012-1,0,4380_7778208_4591201,4380_1682 -4380_78154,292,4380_97758,Athlone,111194-00016-1,0,4380_7778208_4591201,4380_1682 -4380_78154,290,4380_97759,Athlone,111192-00015-1,0,4380_7778208_4591201,4380_1682 -4380_78147,286,4380_9776,Dublin,6087-00010-1,1,4380_7778208_1090117,4380_176 -4380_78154,294,4380_97760,Athlone,111196-00018-1,0,4380_7778208_4591201,4380_1682 -4380_78154,293,4380_97761,Athlone,111188-00017-1,0,4380_7778208_4591201,4380_1682 -4380_78154,296,4380_97762,Athlone,111186-00021-1,0,4380_7778208_4591201,4380_1682 -4380_78154,295,4380_97763,Athlone,111190-00019-1,0,4380_7778208_4591201,4380_1682 -4380_78154,297,4380_97765,Athlone,111197-00008-1,0,4380_7778208_4591201,4380_1682 -4380_78147,288,4380_9777,Dublin,6092-00011-1,1,4380_7778208_1090117,4380_176 -4380_78154,285,4380_97771,Athlone,111751-00009-1,0,4380_7778208_4591204,4380_1682 -4380_78154,288,4380_97773,Athlone,111749-00011-1,0,4380_7778208_4591204,4380_1682 -4380_78154,286,4380_97774,Athlone,111747-00010-1,0,4380_7778208_4591204,4380_1682 -4380_78154,291,4380_97775,Athlone,111743-00013-1,0,4380_7778208_4591204,4380_1682 -4380_78154,289,4380_97776,Athlone,111745-00014-1,0,4380_7778208_4591204,4380_1682 -4380_78154,287,4380_97777,Athlone,111753-00012-1,0,4380_7778208_4591204,4380_1682 -4380_78154,292,4380_97778,Athlone,111748-00016-1,0,4380_7778208_4591204,4380_1682 -4380_78154,290,4380_97779,Athlone,111752-00015-1,0,4380_7778208_4591204,4380_1682 -4380_78147,287,4380_9778,Dublin,6097-00012-1,1,4380_7778208_1090117,4380_176 -4380_78154,294,4380_97780,Athlone,111754-00018-1,0,4380_7778208_4591204,4380_1682 -4380_78154,293,4380_97781,Athlone,111750-00017-1,0,4380_7778208_4591204,4380_1682 -4380_78154,296,4380_97782,Athlone,111744-00021-1,0,4380_7778208_4591204,4380_1682 -4380_78154,295,4380_97783,Athlone,111746-00019-1,0,4380_7778208_4591204,4380_1682 -4380_78154,285,4380_97789,Athlone,112268-00009-1,0,4380_7778208_4591208,4380_1682 -4380_78147,289,4380_9779,Dublin,6077-00014-1,1,4380_7778208_1090117,4380_176 -4380_78154,288,4380_97791,Athlone,112266-00011-1,0,4380_7778208_4591208,4380_1682 -4380_78154,286,4380_97792,Athlone,112260-00010-1,0,4380_7778208_4591208,4380_1682 -4380_78154,291,4380_97793,Athlone,112262-00013-1,0,4380_7778208_4591208,4380_1682 -4380_78154,289,4380_97794,Athlone,112264-00014-1,0,4380_7778208_4591208,4380_1682 -4380_78154,287,4380_97795,Athlone,112258-00012-1,0,4380_7778208_4591208,4380_1682 -4380_78154,292,4380_97796,Athlone,112261-00016-1,0,4380_7778208_4591208,4380_1682 -4380_78154,290,4380_97797,Athlone,112269-00015-1,0,4380_7778208_4591208,4380_1682 -4380_78154,294,4380_97798,Athlone,112259-00018-1,0,4380_7778208_4591208,4380_1682 -4380_78154,293,4380_97799,Athlone,112267-00017-1,0,4380_7778208_4591208,4380_1682 -4380_78147,290,4380_9780,Dublin,55295-00015-1,1,4380_7778208_1090117,4380_176 -4380_78154,296,4380_97800,Athlone,112263-00021-1,0,4380_7778208_4591208,4380_1682 -4380_78154,295,4380_97801,Athlone,112265-00019-1,0,4380_7778208_4591208,4380_1682 -4380_78154,297,4380_97803,Athlone,111567-00008-1,0,4380_7778208_4591203,4380_1682 -4380_78154,285,4380_97809,Athlone,111211-00009-1,0,4380_7778208_4591201,4380_1682 -4380_78147,292,4380_9781,Dublin,55297-00016-1,1,4380_7778208_1090117,4380_176 -4380_78154,288,4380_97811,Athlone,111219-00011-1,0,4380_7778208_4591201,4380_1682 -4380_78154,286,4380_97812,Athlone,111221-00010-1,0,4380_7778208_4591201,4380_1682 -4380_78154,291,4380_97813,Athlone,111217-00013-1,0,4380_7778208_4591201,4380_1682 -4380_78154,289,4380_97814,Athlone,111213-00014-1,0,4380_7778208_4591201,4380_1682 -4380_78154,287,4380_97815,Athlone,111215-00012-1,0,4380_7778208_4591201,4380_1682 -4380_78154,292,4380_97816,Athlone,111222-00016-1,0,4380_7778208_4591201,4380_1682 -4380_78154,290,4380_97817,Athlone,111212-00015-1,0,4380_7778208_4591201,4380_1682 -4380_78154,294,4380_97818,Athlone,111216-00018-1,0,4380_7778208_4591201,4380_1682 -4380_78154,293,4380_97819,Athlone,111220-00017-1,0,4380_7778208_4591201,4380_1682 -4380_78147,293,4380_9782,Dublin,55296-00017-1,1,4380_7778208_1090117,4380_176 -4380_78154,296,4380_97820,Athlone,111218-00021-1,0,4380_7778208_4591201,4380_1682 -4380_78154,295,4380_97821,Athlone,111214-00019-1,0,4380_7778208_4591201,4380_1682 -4380_78154,285,4380_97827,Athlone,112012-00009-1,0,4380_7778208_4591206,4380_1682 -4380_78154,288,4380_97829,Athlone,112018-00011-1,0,4380_7778208_4591206,4380_1682 -4380_78147,294,4380_9783,Dublin,55294-00018-1,1,4380_7778208_1090117,4380_176 -4380_78154,286,4380_97830,Athlone,112014-00010-1,0,4380_7778208_4591206,4380_1682 -4380_78154,291,4380_97831,Athlone,112020-00013-1,0,4380_7778208_4591206,4380_1682 -4380_78154,289,4380_97832,Athlone,112016-00014-1,0,4380_7778208_4591206,4380_1682 -4380_78154,287,4380_97833,Athlone,112022-00012-1,0,4380_7778208_4591206,4380_1682 -4380_78154,292,4380_97834,Athlone,112015-00016-1,0,4380_7778208_4591206,4380_1682 -4380_78154,290,4380_97835,Athlone,112013-00015-1,0,4380_7778208_4591206,4380_1682 -4380_78154,294,4380_97836,Athlone,112023-00018-1,0,4380_7778208_4591206,4380_1682 -4380_78154,293,4380_97837,Athlone,112019-00017-1,0,4380_7778208_4591206,4380_1682 -4380_78154,296,4380_97838,Athlone,112021-00021-1,0,4380_7778208_4591206,4380_1682 -4380_78154,295,4380_97839,Athlone,112017-00019-1,0,4380_7778208_4591206,4380_1682 -4380_78147,295,4380_9784,Dublin,55298-00019-1,1,4380_7778208_1090117,4380_176 -4380_78154,297,4380_97841,Athlone,111769-00008-1,0,4380_7778208_4591204,4380_1682 -4380_78154,285,4380_97847,Athlone,112286-00009-1,0,4380_7778208_4591208,4380_1682 -4380_78154,288,4380_97849,Athlone,112292-00011-1,0,4380_7778208_4591208,4380_1682 -4380_78154,286,4380_97850,Athlone,112290-00010-1,0,4380_7778208_4591208,4380_1682 -4380_78154,291,4380_97851,Athlone,112284-00013-1,0,4380_7778208_4591208,4380_1682 -4380_78154,289,4380_97852,Athlone,112282-00014-1,0,4380_7778208_4591208,4380_1682 -4380_78154,287,4380_97853,Athlone,112288-00012-1,0,4380_7778208_4591208,4380_1682 -4380_78154,292,4380_97854,Athlone,112291-00016-1,0,4380_7778208_4591208,4380_1682 -4380_78154,290,4380_97855,Athlone,112287-00015-1,0,4380_7778208_4591208,4380_1682 -4380_78154,294,4380_97856,Athlone,112289-00018-1,0,4380_7778208_4591208,4380_1682 -4380_78154,293,4380_97857,Athlone,112293-00017-1,0,4380_7778208_4591208,4380_1682 -4380_78154,296,4380_97858,Athlone,112285-00021-1,0,4380_7778208_4591208,4380_1682 -4380_78154,295,4380_97859,Athlone,112283-00019-1,0,4380_7778208_4591208,4380_1682 -4380_78147,297,4380_9786,Dublin,6999-00008-1,1,4380_7778208_1090905,4380_176 -4380_78154,285,4380_97865,Athlone,111238-00009-1,0,4380_7778208_4591201,4380_1682 -4380_78154,288,4380_97867,Athlone,111240-00011-1,0,4380_7778208_4591201,4380_1682 -4380_78154,286,4380_97868,Athlone,111242-00010-1,0,4380_7778208_4591201,4380_1682 -4380_78154,291,4380_97869,Athlone,111246-00013-1,0,4380_7778208_4591201,4380_1682 -4380_78154,289,4380_97870,Athlone,111236-00014-1,0,4380_7778208_4591201,4380_1682 -4380_78154,287,4380_97871,Athlone,111244-00012-1,0,4380_7778208_4591201,4380_1682 -4380_78154,292,4380_97872,Athlone,111243-00016-1,0,4380_7778208_4591201,4380_1682 -4380_78154,290,4380_97873,Athlone,111239-00015-1,0,4380_7778208_4591201,4380_1682 -4380_78154,294,4380_97874,Athlone,111245-00018-1,0,4380_7778208_4591201,4380_1682 -4380_78154,293,4380_97875,Athlone,111241-00017-1,0,4380_7778208_4591201,4380_1682 -4380_78154,296,4380_97876,Athlone,111247-00021-1,0,4380_7778208_4591201,4380_1682 -4380_78154,295,4380_97877,Athlone,111237-00019-1,0,4380_7778208_4591201,4380_1682 -4380_78154,297,4380_97879,Athlone,111946-00008-1,0,4380_7778208_4591205,4380_1682 -4380_78147,291,4380_9788,Dublin,5756-00013-1,1,4380_7778208_1090108,4380_176 -4380_78154,285,4380_97885,Athlone,112043-00009-1,0,4380_7778208_4591206,4380_1682 -4380_78154,288,4380_97887,Athlone,112041-00011-1,0,4380_7778208_4591206,4380_1682 -4380_78154,286,4380_97888,Athlone,112036-00010-1,0,4380_7778208_4591206,4380_1682 -4380_78154,291,4380_97889,Athlone,112045-00013-1,0,4380_7778208_4591206,4380_1682 -4380_78147,296,4380_9789,Dublin,55033-00021-1,1,4380_7778208_1090108,4380_176 -4380_78154,289,4380_97890,Athlone,112039-00014-1,0,4380_7778208_4591206,4380_1682 -4380_78154,287,4380_97891,Athlone,112047-00012-1,0,4380_7778208_4591206,4380_1682 -4380_78154,292,4380_97892,Athlone,112037-00016-1,0,4380_7778208_4591206,4380_1682 -4380_78154,290,4380_97893,Athlone,112044-00015-1,0,4380_7778208_4591206,4380_1682 -4380_78154,294,4380_97894,Athlone,112048-00018-1,0,4380_7778208_4591206,4380_1682 -4380_78154,293,4380_97895,Athlone,112042-00017-1,0,4380_7778208_4591206,4380_1682 -4380_78154,296,4380_97896,Athlone,112046-00021-1,0,4380_7778208_4591206,4380_1682 -4380_78154,295,4380_97897,Athlone,112040-00019-1,0,4380_7778208_4591206,4380_1682 -4380_78154,285,4380_97903,Athlone,112316-00009-1,0,4380_7778208_4591208,4380_1682 -4380_78154,288,4380_97905,Athlone,112312-00011-1,0,4380_7778208_4591208,4380_1682 -4380_78154,286,4380_97906,Athlone,112314-00010-1,0,4380_7778208_4591208,4380_1682 -4380_78154,291,4380_97907,Athlone,112308-00013-1,0,4380_7778208_4591208,4380_1682 -4380_78154,289,4380_97908,Athlone,112306-00014-1,0,4380_7778208_4591208,4380_1682 -4380_78154,287,4380_97909,Athlone,112310-00012-1,0,4380_7778208_4591208,4380_1682 -4380_78154,292,4380_97910,Athlone,112315-00016-1,0,4380_7778208_4591208,4380_1682 -4380_78154,290,4380_97911,Athlone,112317-00015-1,0,4380_7778208_4591208,4380_1682 -4380_78154,294,4380_97912,Athlone,112311-00018-1,0,4380_7778208_4591208,4380_1682 -4380_78154,293,4380_97913,Athlone,112313-00017-1,0,4380_7778208_4591208,4380_1682 -4380_78154,296,4380_97914,Athlone,112309-00021-1,0,4380_7778208_4591208,4380_1682 -4380_78154,295,4380_97915,Athlone,112307-00019-1,0,4380_7778208_4591208,4380_1682 -4380_78154,297,4380_97917,Athlone,112061-00008-1,0,4380_7778208_4591206,4380_1682 -4380_78154,285,4380_97923,Athlone,111409-00009-1,0,4380_7778208_4591202,4380_1682 -4380_78154,288,4380_97925,Athlone,111413-00011-1,0,4380_7778208_4591202,4380_1682 -4380_78154,286,4380_97926,Athlone,111417-00010-1,0,4380_7778208_4591202,4380_1682 -4380_78154,291,4380_97927,Athlone,111411-00013-1,0,4380_7778208_4591202,4380_1682 -4380_78154,289,4380_97928,Athlone,111419-00014-1,0,4380_7778208_4591202,4380_1682 -4380_78154,287,4380_97929,Athlone,111415-00012-1,0,4380_7778208_4591202,4380_1682 -4380_78154,292,4380_97930,Athlone,111418-00016-1,0,4380_7778208_4591202,4380_1682 -4380_78154,290,4380_97931,Athlone,111410-00015-1,0,4380_7778208_4591202,4380_1682 -4380_78154,294,4380_97932,Athlone,111416-00018-1,0,4380_7778208_4591202,4380_1682 -4380_78154,293,4380_97933,Athlone,111414-00017-1,0,4380_7778208_4591202,4380_1682 -4380_78154,296,4380_97934,Athlone,111412-00021-1,0,4380_7778208_4591202,4380_1682 -4380_78154,295,4380_97935,Athlone,111420-00019-1,0,4380_7778208_4591202,4380_1682 -4380_78154,285,4380_97941,Athlone,112068-00009-1,0,4380_7778208_4591206,4380_1682 -4380_78154,288,4380_97943,Athlone,112066-00011-1,0,4380_7778208_4591206,4380_1682 -4380_78154,286,4380_97944,Athlone,112070-00010-1,0,4380_7778208_4591206,4380_1682 -4380_78154,291,4380_97945,Athlone,112072-00013-1,0,4380_7778208_4591206,4380_1682 -4380_78154,289,4380_97946,Athlone,112062-00014-1,0,4380_7778208_4591206,4380_1682 -4380_78154,287,4380_97947,Athlone,112064-00012-1,0,4380_7778208_4591206,4380_1682 -4380_78154,292,4380_97948,Athlone,112071-00016-1,0,4380_7778208_4591206,4380_1682 -4380_78154,290,4380_97949,Athlone,112069-00015-1,0,4380_7778208_4591206,4380_1682 -4380_78147,285,4380_9795,Dublin,6780-00009-1,1,4380_7778208_1090901,4380_177 -4380_78154,294,4380_97950,Athlone,112065-00018-1,0,4380_7778208_4591206,4380_1682 -4380_78154,293,4380_97951,Athlone,112067-00017-1,0,4380_7778208_4591206,4380_1682 -4380_78154,296,4380_97952,Athlone,112073-00021-1,0,4380_7778208_4591206,4380_1682 -4380_78154,295,4380_97953,Athlone,112063-00019-1,0,4380_7778208_4591206,4380_1682 -4380_78154,297,4380_97955,Athlone,111821-00008-1,0,4380_7778208_4591204,4380_1682 -4380_78147,286,4380_9796,Dublin,6786-00010-1,1,4380_7778208_1090901,4380_177 -4380_78154,285,4380_97961,Athlone,112334-00009-1,0,4380_7778208_4591208,4380_1682 -4380_78154,288,4380_97963,Athlone,112338-00011-1,0,4380_7778208_4591208,4380_1682 -4380_78154,286,4380_97964,Athlone,112330-00010-1,0,4380_7778208_4591208,4380_1682 -4380_78154,291,4380_97965,Athlone,112332-00013-1,0,4380_7778208_4591208,4380_1682 -4380_78154,289,4380_97966,Athlone,112336-00014-1,0,4380_7778208_4591208,4380_1682 -4380_78154,287,4380_97967,Athlone,112340-00012-1,0,4380_7778208_4591208,4380_1682 -4380_78154,292,4380_97968,Athlone,112331-00016-1,0,4380_7778208_4591208,4380_1682 -4380_78154,290,4380_97969,Athlone,112335-00015-1,0,4380_7778208_4591208,4380_1682 -4380_78147,288,4380_9797,Dublin,6792-00011-1,1,4380_7778208_1090901,4380_177 -4380_78154,294,4380_97970,Athlone,112341-00018-1,0,4380_7778208_4591208,4380_1682 -4380_78154,293,4380_97971,Athlone,112339-00017-1,0,4380_7778208_4591208,4380_1682 -4380_78154,296,4380_97972,Athlone,112333-00021-1,0,4380_7778208_4591208,4380_1682 -4380_78154,295,4380_97973,Athlone,112337-00019-1,0,4380_7778208_4591208,4380_1682 -4380_78154,285,4380_97979,Athlone,111441-00009-1,0,4380_7778208_4591202,4380_1682 -4380_78147,287,4380_9798,Dublin,6798-00012-1,1,4380_7778208_1090901,4380_177 -4380_78154,288,4380_97981,Athlone,111437-00011-1,0,4380_7778208_4591202,4380_1682 -4380_78154,286,4380_97982,Athlone,111435-00010-1,0,4380_7778208_4591202,4380_1682 -4380_78154,291,4380_97983,Athlone,111439-00013-1,0,4380_7778208_4591202,4380_1682 -4380_78154,289,4380_97984,Athlone,111433-00014-1,0,4380_7778208_4591202,4380_1682 -4380_78154,287,4380_97985,Athlone,111443-00012-1,0,4380_7778208_4591202,4380_1682 -4380_78154,292,4380_97986,Athlone,111436-00016-1,0,4380_7778208_4591202,4380_1682 -4380_78154,290,4380_97987,Athlone,111442-00015-1,0,4380_7778208_4591202,4380_1682 -4380_78154,294,4380_97988,Athlone,111444-00018-1,0,4380_7778208_4591202,4380_1682 -4380_78154,293,4380_97989,Athlone,111438-00017-1,0,4380_7778208_4591202,4380_1682 -4380_78147,289,4380_9799,Dublin,6774-00014-1,1,4380_7778208_1090901,4380_177 -4380_78154,296,4380_97990,Athlone,111440-00021-1,0,4380_7778208_4591202,4380_1682 -4380_78154,295,4380_97991,Athlone,111434-00019-1,0,4380_7778208_4591202,4380_1682 -4380_78154,297,4380_97993,Athlone,111998-00008-1,0,4380_7778208_4591205,4380_1682 -4380_78154,285,4380_97999,Athlone,112088-00009-1,0,4380_7778208_4591206,4380_1682 -4380_77946,290,4380_98,Dundalk,50472-00015-1,0,4380_7778208_1000915,4380_1 -4380_78147,290,4380_9800,Dublin,55347-00015-1,1,4380_7778208_1090901,4380_177 -4380_78154,288,4380_98001,Athlone,112092-00011-1,0,4380_7778208_4591206,4380_1682 -4380_78154,286,4380_98002,Athlone,112094-00010-1,0,4380_7778208_4591206,4380_1682 -4380_78154,291,4380_98003,Athlone,112099-00013-1,0,4380_7778208_4591206,4380_1682 -4380_78154,289,4380_98004,Athlone,112097-00014-1,0,4380_7778208_4591206,4380_1682 -4380_78154,287,4380_98005,Athlone,112090-00012-1,0,4380_7778208_4591206,4380_1682 -4380_78154,292,4380_98006,Athlone,112095-00016-1,0,4380_7778208_4591206,4380_1682 -4380_78154,290,4380_98007,Athlone,112089-00015-1,0,4380_7778208_4591206,4380_1682 -4380_78154,294,4380_98008,Athlone,112091-00018-1,0,4380_7778208_4591206,4380_1682 -4380_78154,293,4380_98009,Athlone,112093-00017-1,0,4380_7778208_4591206,4380_1682 -4380_78147,292,4380_9801,Dublin,55350-00016-1,1,4380_7778208_1090901,4380_177 -4380_78154,296,4380_98010,Athlone,112100-00021-1,0,4380_7778208_4591206,4380_1682 -4380_78154,295,4380_98011,Athlone,112098-00019-1,0,4380_7778208_4591206,4380_1682 -4380_78154,285,4380_98017,Athlone,112362-00009-1,0,4380_7778208_4591208,4380_1682 -4380_78154,288,4380_98019,Athlone,112364-00011-1,0,4380_7778208_4591208,4380_1682 -4380_78147,293,4380_9802,Dublin,55348-00017-1,1,4380_7778208_1090901,4380_177 -4380_78154,286,4380_98020,Athlone,112356-00010-1,0,4380_7778208_4591208,4380_1682 -4380_78154,291,4380_98021,Athlone,112358-00013-1,0,4380_7778208_4591208,4380_1682 -4380_78154,289,4380_98022,Athlone,112360-00014-1,0,4380_7778208_4591208,4380_1682 -4380_78154,287,4380_98023,Athlone,112354-00012-1,0,4380_7778208_4591208,4380_1682 -4380_78154,292,4380_98024,Athlone,112357-00016-1,0,4380_7778208_4591208,4380_1682 -4380_78154,290,4380_98025,Athlone,112363-00015-1,0,4380_7778208_4591208,4380_1682 -4380_78154,294,4380_98026,Athlone,112355-00018-1,0,4380_7778208_4591208,4380_1682 -4380_78154,293,4380_98027,Athlone,112365-00017-1,0,4380_7778208_4591208,4380_1682 -4380_78154,296,4380_98028,Athlone,112359-00021-1,0,4380_7778208_4591208,4380_1682 -4380_78154,295,4380_98029,Athlone,112361-00019-1,0,4380_7778208_4591208,4380_1682 -4380_78147,294,4380_9803,Dublin,55349-00018-1,1,4380_7778208_1090901,4380_177 -4380_78154,297,4380_98031,Athlone,112103-00008-1,0,4380_7778208_4591206,4380_1682 -4380_78154,285,4380_98037,Bealnamulla,112374-00009-1,1,4380_7778208_4591261,4380_1683 -4380_78154,288,4380_98039,Bealnamulla,112376-00011-1,1,4380_7778208_4591261,4380_1683 -4380_78147,295,4380_9804,Dublin,55346-00019-1,1,4380_7778208_1090901,4380_177 -4380_78154,286,4380_98040,Bealnamulla,112366-00010-1,1,4380_7778208_4591261,4380_1683 -4380_78154,291,4380_98041,Bealnamulla,112372-00013-1,1,4380_7778208_4591261,4380_1683 -4380_78154,289,4380_98042,Bealnamulla,112368-00014-1,1,4380_7778208_4591261,4380_1683 -4380_78154,287,4380_98043,Bealnamulla,112370-00012-1,1,4380_7778208_4591261,4380_1683 -4380_78154,292,4380_98044,Bealnamulla,112367-00016-1,1,4380_7778208_4591261,4380_1683 -4380_78154,290,4380_98045,Bealnamulla,112375-00015-1,1,4380_7778208_4591261,4380_1683 -4380_78154,294,4380_98046,Bealnamulla,112371-00018-1,1,4380_7778208_4591261,4380_1683 -4380_78154,293,4380_98047,Bealnamulla,112377-00017-1,1,4380_7778208_4591261,4380_1683 -4380_78154,296,4380_98048,Bealnamulla,112373-00021-1,1,4380_7778208_4591261,4380_1683 -4380_78154,295,4380_98049,Bealnamulla,112369-00019-1,1,4380_7778208_4591261,4380_1683 -4380_78154,285,4380_98055,Bealnamulla,111274-00009-1,1,4380_7778208_4591202,4380_1683 -4380_78154,288,4380_98057,Bealnamulla,111280-00011-1,1,4380_7778208_4591202,4380_1683 -4380_78154,286,4380_98058,Bealnamulla,111278-00010-1,1,4380_7778208_4591202,4380_1683 -4380_78154,291,4380_98059,Bealnamulla,111282-00013-1,1,4380_7778208_4591202,4380_1683 -4380_78147,297,4380_9806,Dublin,6821-00008-1,1,4380_7778208_1090901,4380_177 -4380_78154,289,4380_98060,Bealnamulla,111276-00014-1,1,4380_7778208_4591202,4380_1683 -4380_78154,287,4380_98061,Bealnamulla,111272-00012-1,1,4380_7778208_4591202,4380_1683 -4380_78154,292,4380_98062,Bealnamulla,111279-00016-1,1,4380_7778208_4591202,4380_1683 -4380_78154,290,4380_98063,Bealnamulla,111275-00015-1,1,4380_7778208_4591202,4380_1683 -4380_78154,294,4380_98064,Bealnamulla,111273-00018-1,1,4380_7778208_4591202,4380_1683 -4380_78154,293,4380_98065,Bealnamulla,111281-00017-1,1,4380_7778208_4591202,4380_1683 -4380_78154,296,4380_98066,Bealnamulla,111283-00021-1,1,4380_7778208_4591202,4380_1683 -4380_78154,295,4380_98067,Bealnamulla,111277-00019-1,1,4380_7778208_4591202,4380_1683 -4380_78154,285,4380_98073,Bealnamulla,112182-00009-1,1,4380_7778208_4591208,4380_1683 -4380_78154,288,4380_98075,Bealnamulla,112174-00011-1,1,4380_7778208_4591208,4380_1683 -4380_78154,286,4380_98076,Bealnamulla,112180-00010-1,1,4380_7778208_4591208,4380_1683 -4380_78154,291,4380_98077,Bealnamulla,112184-00013-1,1,4380_7778208_4591208,4380_1683 -4380_78154,289,4380_98078,Bealnamulla,112176-00014-1,1,4380_7778208_4591208,4380_1683 -4380_78154,287,4380_98079,Bealnamulla,112178-00012-1,1,4380_7778208_4591208,4380_1683 -4380_78147,291,4380_9808,Dublin,6852-00013-1,1,4380_7778208_1090902,4380_177 -4380_78154,292,4380_98080,Bealnamulla,112181-00016-1,1,4380_7778208_4591208,4380_1683 -4380_78154,290,4380_98081,Bealnamulla,112183-00015-1,1,4380_7778208_4591208,4380_1683 -4380_78154,294,4380_98082,Bealnamulla,112179-00018-1,1,4380_7778208_4591208,4380_1683 -4380_78154,293,4380_98083,Bealnamulla,112175-00017-1,1,4380_7778208_4591208,4380_1683 -4380_78154,296,4380_98084,Bealnamulla,112185-00021-1,1,4380_7778208_4591208,4380_1683 -4380_78154,295,4380_98085,Bealnamulla,112177-00019-1,1,4380_7778208_4591208,4380_1683 -4380_78147,296,4380_9809,Dublin,55382-00021-1,1,4380_7778208_1090902,4380_177 -4380_78154,285,4380_98091,Bealnamulla,111122-00009-1,1,4380_7778208_4591201,4380_1683 -4380_78154,288,4380_98093,Bealnamulla,111124-00011-1,1,4380_7778208_4591201,4380_1683 -4380_78154,286,4380_98094,Bealnamulla,111120-00010-1,1,4380_7778208_4591201,4380_1683 -4380_78154,291,4380_98095,Bealnamulla,111126-00013-1,1,4380_7778208_4591201,4380_1683 -4380_78154,289,4380_98096,Bealnamulla,111128-00014-1,1,4380_7778208_4591201,4380_1683 -4380_78154,287,4380_98097,Bealnamulla,111130-00012-1,1,4380_7778208_4591201,4380_1683 -4380_78154,292,4380_98098,Bealnamulla,111121-00016-1,1,4380_7778208_4591201,4380_1683 -4380_78154,290,4380_98099,Bealnamulla,111123-00015-1,1,4380_7778208_4591201,4380_1683 -4380_78154,294,4380_98100,Bealnamulla,111131-00018-1,1,4380_7778208_4591201,4380_1683 -4380_78154,293,4380_98101,Bealnamulla,111125-00017-1,1,4380_7778208_4591201,4380_1683 -4380_78154,296,4380_98102,Bealnamulla,111127-00021-1,1,4380_7778208_4591201,4380_1683 -4380_78154,295,4380_98103,Bealnamulla,111129-00019-1,1,4380_7778208_4591201,4380_1683 -4380_78154,285,4380_98109,Bealnamulla,111684-00009-1,1,4380_7778208_4591204,4380_1683 -4380_78147,297,4380_9811,Dublin,6061-00008-1,1,4380_7778208_1090115,4380_176 -4380_78154,288,4380_98111,Bealnamulla,111692-00011-1,1,4380_7778208_4591204,4380_1683 -4380_78154,286,4380_98112,Bealnamulla,111682-00010-1,1,4380_7778208_4591204,4380_1683 -4380_78154,291,4380_98113,Bealnamulla,111688-00013-1,1,4380_7778208_4591204,4380_1683 -4380_78154,289,4380_98114,Bealnamulla,111686-00014-1,1,4380_7778208_4591204,4380_1683 -4380_78154,287,4380_98115,Bealnamulla,111690-00012-1,1,4380_7778208_4591204,4380_1683 -4380_78154,292,4380_98116,Bealnamulla,111683-00016-1,1,4380_7778208_4591204,4380_1683 -4380_78154,290,4380_98117,Bealnamulla,111685-00015-1,1,4380_7778208_4591204,4380_1683 -4380_78154,294,4380_98118,Bealnamulla,111691-00018-1,1,4380_7778208_4591204,4380_1683 -4380_78154,293,4380_98119,Bealnamulla,111693-00017-1,1,4380_7778208_4591204,4380_1683 -4380_78154,296,4380_98120,Bealnamulla,111689-00021-1,1,4380_7778208_4591204,4380_1683 -4380_78154,295,4380_98121,Bealnamulla,111687-00019-1,1,4380_7778208_4591204,4380_1683 -4380_78154,297,4380_98128,Bealnamulla,111309-00008-1,1,4380_7778208_4591202,4380_1683 -4380_78154,285,4380_98129,Bealnamulla,112156-00009-1,1,4380_7778208_4591207,4380_1684 -4380_78154,288,4380_98131,Bealnamulla,112152-00011-1,1,4380_7778208_4591207,4380_1684 -4380_78154,286,4380_98132,Bealnamulla,112158-00010-1,1,4380_7778208_4591207,4380_1684 -4380_78154,291,4380_98133,Bealnamulla,112154-00013-1,1,4380_7778208_4591207,4380_1684 -4380_78154,289,4380_98134,Bealnamulla,112150-00014-1,1,4380_7778208_4591207,4380_1684 -4380_78154,287,4380_98135,Bealnamulla,112160-00012-1,1,4380_7778208_4591207,4380_1684 -4380_78154,292,4380_98136,Bealnamulla,112159-00016-1,1,4380_7778208_4591207,4380_1684 -4380_78154,290,4380_98137,Bealnamulla,112157-00015-1,1,4380_7778208_4591207,4380_1684 -4380_78154,294,4380_98138,Bealnamulla,112161-00018-1,1,4380_7778208_4591207,4380_1684 -4380_78154,293,4380_98139,Bealnamulla,112153-00017-1,1,4380_7778208_4591207,4380_1684 -4380_78154,296,4380_98140,Bealnamulla,112155-00021-1,1,4380_7778208_4591207,4380_1684 -4380_78154,295,4380_98141,Bealnamulla,112151-00019-1,1,4380_7778208_4591207,4380_1684 -4380_78154,285,4380_98147,Bealnamulla,111494-00009-1,1,4380_7778208_4591203,4380_1683 -4380_78154,288,4380_98149,Bealnamulla,111503-00011-1,1,4380_7778208_4591203,4380_1683 -4380_78154,286,4380_98150,Bealnamulla,111505-00010-1,1,4380_7778208_4591203,4380_1683 -4380_78154,291,4380_98151,Bealnamulla,111496-00013-1,1,4380_7778208_4591203,4380_1683 -4380_78154,289,4380_98152,Bealnamulla,111499-00014-1,1,4380_7778208_4591203,4380_1683 -4380_78154,287,4380_98153,Bealnamulla,111501-00012-1,1,4380_7778208_4591203,4380_1683 -4380_78154,292,4380_98154,Bealnamulla,111506-00016-1,1,4380_7778208_4591203,4380_1683 -4380_78154,290,4380_98155,Bealnamulla,111495-00015-1,1,4380_7778208_4591203,4380_1683 -4380_78154,294,4380_98156,Bealnamulla,111502-00018-1,1,4380_7778208_4591203,4380_1683 -4380_78154,293,4380_98157,Bealnamulla,111504-00017-1,1,4380_7778208_4591203,4380_1683 -4380_78154,296,4380_98158,Bealnamulla,111497-00021-1,1,4380_7778208_4591203,4380_1683 -4380_78154,295,4380_98159,Bealnamulla,111500-00019-1,1,4380_7778208_4591203,4380_1683 -4380_78154,297,4380_98166,Bealnamulla,111158-00008-1,1,4380_7778208_4591201,4380_1683 -4380_78154,285,4380_98167,Bealnamulla,111871-00009-1,1,4380_7778208_4591205,4380_1684 -4380_78154,288,4380_98169,Bealnamulla,111861-00011-1,1,4380_7778208_4591205,4380_1684 -4380_78147,285,4380_9817,Dublin,6832-00009-1,1,4380_7778208_1090902,4380_176 -4380_78154,286,4380_98170,Bealnamulla,111867-00010-1,1,4380_7778208_4591205,4380_1684 -4380_78154,291,4380_98171,Bealnamulla,111865-00013-1,1,4380_7778208_4591205,4380_1684 -4380_78154,289,4380_98172,Bealnamulla,111863-00014-1,1,4380_7778208_4591205,4380_1684 -4380_78154,287,4380_98173,Bealnamulla,111869-00012-1,1,4380_7778208_4591205,4380_1684 -4380_78154,292,4380_98174,Bealnamulla,111868-00016-1,1,4380_7778208_4591205,4380_1684 -4380_78154,290,4380_98175,Bealnamulla,111872-00015-1,1,4380_7778208_4591205,4380_1684 -4380_78154,294,4380_98176,Bealnamulla,111870-00018-1,1,4380_7778208_4591205,4380_1684 -4380_78154,293,4380_98177,Bealnamulla,111862-00017-1,1,4380_7778208_4591205,4380_1684 -4380_78154,296,4380_98178,Bealnamulla,111866-00021-1,1,4380_7778208_4591205,4380_1684 -4380_78154,295,4380_98179,Bealnamulla,111864-00019-1,1,4380_7778208_4591205,4380_1684 -4380_78147,286,4380_9818,Dublin,6837-00010-1,1,4380_7778208_1090902,4380_176 -4380_78154,285,4380_98185,Bealnamulla,111332-00009-1,1,4380_7778208_4591202,4380_1683 -4380_78154,288,4380_98187,Bealnamulla,111328-00011-1,1,4380_7778208_4591202,4380_1683 -4380_78154,286,4380_98188,Bealnamulla,111330-00010-1,1,4380_7778208_4591202,4380_1683 -4380_78154,291,4380_98189,Bealnamulla,111326-00013-1,1,4380_7778208_4591202,4380_1683 -4380_78147,288,4380_9819,Dublin,6842-00011-1,1,4380_7778208_1090902,4380_176 -4380_78154,289,4380_98190,Bealnamulla,111334-00014-1,1,4380_7778208_4591202,4380_1683 -4380_78154,287,4380_98191,Bealnamulla,111324-00012-1,1,4380_7778208_4591202,4380_1683 -4380_78154,292,4380_98192,Bealnamulla,111331-00016-1,1,4380_7778208_4591202,4380_1683 -4380_78154,290,4380_98193,Bealnamulla,111333-00015-1,1,4380_7778208_4591202,4380_1683 -4380_78154,294,4380_98194,Bealnamulla,111325-00018-1,1,4380_7778208_4591202,4380_1683 -4380_78154,293,4380_98195,Bealnamulla,111329-00017-1,1,4380_7778208_4591202,4380_1683 -4380_78154,296,4380_98196,Bealnamulla,111327-00021-1,1,4380_7778208_4591202,4380_1683 -4380_78154,295,4380_98197,Bealnamulla,111335-00019-1,1,4380_7778208_4591202,4380_1683 -4380_78147,287,4380_9820,Dublin,6847-00012-1,1,4380_7778208_1090902,4380_176 -4380_78154,297,4380_98204,Bealnamulla,111532-00008-1,1,4380_7778208_4591203,4380_1683 -4380_78154,285,4380_98205,Bealnamulla,111522-00009-1,1,4380_7778208_4591203,4380_1684 -4380_78154,288,4380_98207,Bealnamulla,111524-00011-1,1,4380_7778208_4591203,4380_1684 -4380_78154,286,4380_98208,Bealnamulla,111530-00010-1,1,4380_7778208_4591203,4380_1684 -4380_78154,291,4380_98209,Bealnamulla,111526-00013-1,1,4380_7778208_4591203,4380_1684 -4380_78147,289,4380_9821,Dublin,6827-00014-1,1,4380_7778208_1090902,4380_176 -4380_78154,289,4380_98210,Bealnamulla,111520-00014-1,1,4380_7778208_4591203,4380_1684 -4380_78154,287,4380_98211,Bealnamulla,111528-00012-1,1,4380_7778208_4591203,4380_1684 -4380_78154,292,4380_98212,Bealnamulla,111531-00016-1,1,4380_7778208_4591203,4380_1684 -4380_78154,290,4380_98213,Bealnamulla,111523-00015-1,1,4380_7778208_4591203,4380_1684 -4380_78154,294,4380_98214,Bealnamulla,111529-00018-1,1,4380_7778208_4591203,4380_1684 -4380_78154,293,4380_98215,Bealnamulla,111525-00017-1,1,4380_7778208_4591203,4380_1684 -4380_78154,296,4380_98216,Bealnamulla,111527-00021-1,1,4380_7778208_4591203,4380_1684 -4380_78154,295,4380_98217,Bealnamulla,111521-00019-1,1,4380_7778208_4591203,4380_1684 -4380_78147,290,4380_9822,Dublin,55383-00015-1,1,4380_7778208_1090902,4380_176 -4380_78154,285,4380_98223,Bealnamulla,111891-00009-1,1,4380_7778208_4591205,4380_1683 -4380_78154,288,4380_98225,Bealnamulla,111895-00011-1,1,4380_7778208_4591205,4380_1683 -4380_78154,286,4380_98226,Bealnamulla,111893-00010-1,1,4380_7778208_4591205,4380_1683 -4380_78154,291,4380_98227,Bealnamulla,111887-00013-1,1,4380_7778208_4591205,4380_1683 -4380_78154,289,4380_98228,Bealnamulla,111889-00014-1,1,4380_7778208_4591205,4380_1683 -4380_78154,287,4380_98229,Bealnamulla,111885-00012-1,1,4380_7778208_4591205,4380_1683 -4380_78147,292,4380_9823,Dublin,55387-00016-1,1,4380_7778208_1090902,4380_176 -4380_78154,292,4380_98230,Bealnamulla,111894-00016-1,1,4380_7778208_4591205,4380_1683 -4380_78154,290,4380_98231,Bealnamulla,111892-00015-1,1,4380_7778208_4591205,4380_1683 -4380_78154,294,4380_98232,Bealnamulla,111886-00018-1,1,4380_7778208_4591205,4380_1683 -4380_78154,293,4380_98233,Bealnamulla,111896-00017-1,1,4380_7778208_4591205,4380_1683 -4380_78154,296,4380_98234,Bealnamulla,111888-00021-1,1,4380_7778208_4591205,4380_1683 -4380_78154,295,4380_98235,Bealnamulla,111890-00019-1,1,4380_7778208_4591205,4380_1683 -4380_78147,293,4380_9824,Dublin,55386-00017-1,1,4380_7778208_1090902,4380_176 -4380_78154,297,4380_98242,Bealnamulla,111742-00008-1,1,4380_7778208_4591204,4380_1683 -4380_78154,285,4380_98243,Bealnamulla,111353-00009-1,1,4380_7778208_4591202,4380_1684 -4380_78154,288,4380_98245,Bealnamulla,111349-00011-1,1,4380_7778208_4591202,4380_1684 -4380_78154,286,4380_98246,Bealnamulla,111351-00010-1,1,4380_7778208_4591202,4380_1684 -4380_78154,291,4380_98247,Bealnamulla,111359-00013-1,1,4380_7778208_4591202,4380_1684 -4380_78154,289,4380_98248,Bealnamulla,111355-00014-1,1,4380_7778208_4591202,4380_1684 -4380_78154,287,4380_98249,Bealnamulla,111357-00012-1,1,4380_7778208_4591202,4380_1684 -4380_78147,294,4380_9825,Dublin,55385-00018-1,1,4380_7778208_1090902,4380_176 -4380_78154,292,4380_98250,Bealnamulla,111352-00016-1,1,4380_7778208_4591202,4380_1684 -4380_78154,290,4380_98251,Bealnamulla,111354-00015-1,1,4380_7778208_4591202,4380_1684 -4380_78154,294,4380_98252,Bealnamulla,111358-00018-1,1,4380_7778208_4591202,4380_1684 -4380_78154,293,4380_98253,Bealnamulla,111350-00017-1,1,4380_7778208_4591202,4380_1684 -4380_78154,296,4380_98254,Bealnamulla,111360-00021-1,1,4380_7778208_4591202,4380_1684 -4380_78154,295,4380_98255,Bealnamulla,111356-00019-1,1,4380_7778208_4591202,4380_1684 -4380_78147,295,4380_9826,Dublin,55384-00019-1,1,4380_7778208_1090902,4380_176 -4380_78154,285,4380_98261,Bealnamulla,111553-00009-1,1,4380_7778208_4591203,4380_1683 -4380_78154,288,4380_98263,Bealnamulla,111549-00011-1,1,4380_7778208_4591203,4380_1683 -4380_78154,286,4380_98264,Bealnamulla,111555-00010-1,1,4380_7778208_4591203,4380_1683 -4380_78154,291,4380_98265,Bealnamulla,111551-00013-1,1,4380_7778208_4591203,4380_1683 -4380_78154,289,4380_98266,Bealnamulla,111546-00014-1,1,4380_7778208_4591203,4380_1683 -4380_78154,287,4380_98267,Bealnamulla,111557-00012-1,1,4380_7778208_4591203,4380_1683 -4380_78154,292,4380_98268,Bealnamulla,111556-00016-1,1,4380_7778208_4591203,4380_1683 -4380_78154,290,4380_98269,Bealnamulla,111554-00015-1,1,4380_7778208_4591203,4380_1683 -4380_78154,294,4380_98270,Bealnamulla,111558-00018-1,1,4380_7778208_4591203,4380_1683 -4380_78154,293,4380_98271,Bealnamulla,111550-00017-1,1,4380_7778208_4591203,4380_1683 -4380_78154,296,4380_98272,Bealnamulla,111552-00021-1,1,4380_7778208_4591203,4380_1683 -4380_78154,295,4380_98273,Bealnamulla,111547-00019-1,1,4380_7778208_4591203,4380_1683 -4380_78147,291,4380_9828,Dublin,5859-00013-1,1,4380_7778208_1090110,4380_176 -4380_78154,297,4380_98280,Bealnamulla,111210-00008-1,1,4380_7778208_4591201,4380_1683 -4380_78154,285,4380_98281,Bealnamulla,111911-00009-1,1,4380_7778208_4591205,4380_1684 -4380_78154,288,4380_98283,Bealnamulla,111909-00011-1,1,4380_7778208_4591205,4380_1684 -4380_78154,286,4380_98284,Bealnamulla,111917-00010-1,1,4380_7778208_4591205,4380_1684 -4380_78154,291,4380_98285,Bealnamulla,111913-00013-1,1,4380_7778208_4591205,4380_1684 -4380_78154,289,4380_98286,Bealnamulla,111919-00014-1,1,4380_7778208_4591205,4380_1684 -4380_78154,287,4380_98287,Bealnamulla,111915-00012-1,1,4380_7778208_4591205,4380_1684 -4380_78154,292,4380_98288,Bealnamulla,111918-00016-1,1,4380_7778208_4591205,4380_1684 -4380_78154,290,4380_98289,Bealnamulla,111912-00015-1,1,4380_7778208_4591205,4380_1684 -4380_78147,296,4380_9829,Dublin,55114-00021-1,1,4380_7778208_1090110,4380_176 -4380_78154,294,4380_98290,Bealnamulla,111916-00018-1,1,4380_7778208_4591205,4380_1684 -4380_78154,293,4380_98291,Bealnamulla,111910-00017-1,1,4380_7778208_4591205,4380_1684 -4380_78154,296,4380_98292,Bealnamulla,111914-00021-1,1,4380_7778208_4591205,4380_1684 -4380_78154,295,4380_98293,Bealnamulla,111920-00019-1,1,4380_7778208_4591205,4380_1684 -4380_78154,285,4380_98299,Bealnamulla,111377-00009-1,1,4380_7778208_4591202,4380_1683 -4380_78113,285,4380_983,Dublin via Airport,49945-00009-1,1,4380_7778208_1000906,4380_18 -4380_78154,288,4380_98301,Bealnamulla,111379-00011-1,1,4380_7778208_4591202,4380_1683 -4380_78154,286,4380_98302,Bealnamulla,111383-00010-1,1,4380_7778208_4591202,4380_1683 -4380_78154,291,4380_98303,Bealnamulla,111373-00013-1,1,4380_7778208_4591202,4380_1683 -4380_78154,289,4380_98304,Bealnamulla,111375-00014-1,1,4380_7778208_4591202,4380_1683 -4380_78154,287,4380_98305,Bealnamulla,111381-00012-1,1,4380_7778208_4591202,4380_1683 -4380_78154,292,4380_98306,Bealnamulla,111384-00016-1,1,4380_7778208_4591202,4380_1683 -4380_78154,290,4380_98307,Bealnamulla,111378-00015-1,1,4380_7778208_4591202,4380_1683 -4380_78154,294,4380_98308,Bealnamulla,111382-00018-1,1,4380_7778208_4591202,4380_1683 -4380_78154,293,4380_98309,Bealnamulla,111380-00017-1,1,4380_7778208_4591202,4380_1683 -4380_78154,296,4380_98310,Bealnamulla,111374-00021-1,1,4380_7778208_4591202,4380_1683 -4380_78154,295,4380_98311,Bealnamulla,111376-00019-1,1,4380_7778208_4591202,4380_1683 -4380_78154,297,4380_98318,Bealnamulla,111580-00008-1,1,4380_7778208_4591203,4380_1683 -4380_78154,285,4380_98319,Bealnamulla,111572-00009-1,1,4380_7778208_4591203,4380_1684 -4380_78154,288,4380_98321,Bealnamulla,111583-00011-1,1,4380_7778208_4591203,4380_1684 -4380_78154,286,4380_98322,Bealnamulla,111581-00010-1,1,4380_7778208_4591203,4380_1684 -4380_78154,291,4380_98323,Bealnamulla,111574-00013-1,1,4380_7778208_4591203,4380_1684 -4380_78154,289,4380_98324,Bealnamulla,111576-00014-1,1,4380_7778208_4591203,4380_1684 -4380_78154,287,4380_98325,Bealnamulla,111578-00012-1,1,4380_7778208_4591203,4380_1684 -4380_78154,292,4380_98326,Bealnamulla,111582-00016-1,1,4380_7778208_4591203,4380_1684 -4380_78154,290,4380_98327,Bealnamulla,111573-00015-1,1,4380_7778208_4591203,4380_1684 -4380_78154,294,4380_98328,Bealnamulla,111579-00018-1,1,4380_7778208_4591203,4380_1684 -4380_78154,293,4380_98329,Bealnamulla,111584-00017-1,1,4380_7778208_4591203,4380_1684 -4380_78154,296,4380_98330,Bealnamulla,111575-00021-1,1,4380_7778208_4591203,4380_1684 -4380_78154,295,4380_98331,Bealnamulla,111577-00019-1,1,4380_7778208_4591203,4380_1684 -4380_78154,285,4380_98337,Bealnamulla,111936-00009-1,1,4380_7778208_4591205,4380_1683 -4380_78154,288,4380_98339,Bealnamulla,111933-00011-1,1,4380_7778208_4591205,4380_1683 -4380_78154,286,4380_98340,Bealnamulla,111944-00010-1,1,4380_7778208_4591205,4380_1683 -4380_78154,291,4380_98341,Bealnamulla,111942-00013-1,1,4380_7778208_4591205,4380_1683 -4380_78154,289,4380_98342,Bealnamulla,111938-00014-1,1,4380_7778208_4591205,4380_1683 -4380_78154,287,4380_98343,Bealnamulla,111940-00012-1,1,4380_7778208_4591205,4380_1683 -4380_78154,292,4380_98344,Bealnamulla,111945-00016-1,1,4380_7778208_4591205,4380_1683 -4380_78154,290,4380_98345,Bealnamulla,111937-00015-1,1,4380_7778208_4591205,4380_1683 -4380_78154,294,4380_98346,Bealnamulla,111941-00018-1,1,4380_7778208_4591205,4380_1683 -4380_78154,293,4380_98347,Bealnamulla,111934-00017-1,1,4380_7778208_4591205,4380_1683 -4380_78154,296,4380_98348,Bealnamulla,111943-00021-1,1,4380_7778208_4591205,4380_1683 -4380_78154,295,4380_98349,Bealnamulla,111939-00019-1,1,4380_7778208_4591205,4380_1683 -4380_78147,285,4380_9835,Dublin,6880-00009-1,1,4380_7778208_1090903,4380_177 -4380_78154,297,4380_98356,Bealnamulla,111786-00008-1,1,4380_7778208_4591204,4380_1683 -4380_78154,285,4380_98357,Bealnamulla,111782-00009-1,1,4380_7778208_4591204,4380_1684 -4380_78154,288,4380_98359,Bealnamulla,111787-00011-1,1,4380_7778208_4591204,4380_1684 -4380_78147,286,4380_9836,Dublin,6885-00010-1,1,4380_7778208_1090903,4380_177 -4380_78154,286,4380_98360,Bealnamulla,111793-00010-1,1,4380_7778208_4591204,4380_1684 -4380_78154,291,4380_98361,Bealnamulla,111791-00013-1,1,4380_7778208_4591204,4380_1684 -4380_78154,289,4380_98362,Bealnamulla,111784-00014-1,1,4380_7778208_4591204,4380_1684 -4380_78154,287,4380_98363,Bealnamulla,111789-00012-1,1,4380_7778208_4591204,4380_1684 -4380_78154,292,4380_98364,Bealnamulla,111794-00016-1,1,4380_7778208_4591204,4380_1684 -4380_78154,290,4380_98365,Bealnamulla,111783-00015-1,1,4380_7778208_4591204,4380_1684 -4380_78154,294,4380_98366,Bealnamulla,111790-00018-1,1,4380_7778208_4591204,4380_1684 -4380_78154,293,4380_98367,Bealnamulla,111788-00017-1,1,4380_7778208_4591204,4380_1684 -4380_78154,296,4380_98368,Bealnamulla,111792-00021-1,1,4380_7778208_4591204,4380_1684 -4380_78154,295,4380_98369,Bealnamulla,111785-00019-1,1,4380_7778208_4591204,4380_1684 -4380_78147,288,4380_9837,Dublin,6890-00011-1,1,4380_7778208_1090903,4380_177 -4380_78154,285,4380_98375,Bealnamulla,111401-00009-1,1,4380_7778208_4591202,4380_1683 -4380_78154,288,4380_98377,Bealnamulla,111407-00011-1,1,4380_7778208_4591202,4380_1683 -4380_78154,286,4380_98378,Bealnamulla,111403-00010-1,1,4380_7778208_4591202,4380_1683 -4380_78154,291,4380_98379,Bealnamulla,111397-00013-1,1,4380_7778208_4591202,4380_1683 -4380_78147,287,4380_9838,Dublin,6895-00012-1,1,4380_7778208_1090903,4380_177 -4380_78154,289,4380_98380,Bealnamulla,111399-00014-1,1,4380_7778208_4591202,4380_1683 -4380_78154,287,4380_98381,Bealnamulla,111405-00012-1,1,4380_7778208_4591202,4380_1683 -4380_78154,292,4380_98382,Bealnamulla,111404-00016-1,1,4380_7778208_4591202,4380_1683 -4380_78154,290,4380_98383,Bealnamulla,111402-00015-1,1,4380_7778208_4591202,4380_1683 -4380_78154,294,4380_98384,Bealnamulla,111406-00018-1,1,4380_7778208_4591202,4380_1683 -4380_78154,293,4380_98385,Bealnamulla,111408-00017-1,1,4380_7778208_4591202,4380_1683 -4380_78154,296,4380_98386,Bealnamulla,111398-00021-1,1,4380_7778208_4591202,4380_1683 -4380_78154,295,4380_98387,Bealnamulla,111400-00019-1,1,4380_7778208_4591202,4380_1683 -4380_78147,289,4380_9839,Dublin,6875-00014-1,1,4380_7778208_1090903,4380_177 -4380_78154,297,4380_98394,Bealnamulla,111959-00008-1,1,4380_7778208_4591205,4380_1683 -4380_78154,285,4380_98395,Bealnamulla,111604-00009-1,1,4380_7778208_4591203,4380_1684 -4380_78154,288,4380_98397,Bealnamulla,111598-00011-1,1,4380_7778208_4591203,4380_1684 -4380_78154,286,4380_98398,Bealnamulla,111602-00010-1,1,4380_7778208_4591203,4380_1684 -4380_78154,291,4380_98399,Bealnamulla,111606-00013-1,1,4380_7778208_4591203,4380_1684 -4380_78113,286,4380_984,Dublin via Airport,49947-00010-1,1,4380_7778208_1000906,4380_18 -4380_78147,290,4380_9840,Dublin,55416-00015-1,1,4380_7778208_1090903,4380_177 -4380_78154,289,4380_98400,Bealnamulla,111608-00014-1,1,4380_7778208_4591203,4380_1684 -4380_78154,287,4380_98401,Bealnamulla,111600-00012-1,1,4380_7778208_4591203,4380_1684 -4380_78154,292,4380_98402,Bealnamulla,111603-00016-1,1,4380_7778208_4591203,4380_1684 -4380_78154,290,4380_98403,Bealnamulla,111605-00015-1,1,4380_7778208_4591203,4380_1684 -4380_78154,294,4380_98404,Bealnamulla,111601-00018-1,1,4380_7778208_4591203,4380_1684 -4380_78154,293,4380_98405,Bealnamulla,111599-00017-1,1,4380_7778208_4591203,4380_1684 -4380_78154,296,4380_98406,Bealnamulla,111607-00021-1,1,4380_7778208_4591203,4380_1684 -4380_78154,295,4380_98407,Bealnamulla,111609-00019-1,1,4380_7778208_4591203,4380_1684 -4380_78147,292,4380_9841,Dublin,55412-00016-1,1,4380_7778208_1090903,4380_177 -4380_78154,285,4380_98413,Bealnamulla,111960-00009-1,1,4380_7778208_4591205,4380_1683 -4380_78154,288,4380_98415,Bealnamulla,111962-00011-1,1,4380_7778208_4591205,4380_1683 -4380_78154,286,4380_98416,Bealnamulla,111968-00010-1,1,4380_7778208_4591205,4380_1683 -4380_78154,291,4380_98417,Bealnamulla,111970-00013-1,1,4380_7778208_4591205,4380_1683 -4380_78154,289,4380_98418,Bealnamulla,111966-00014-1,1,4380_7778208_4591205,4380_1683 -4380_78154,287,4380_98419,Bealnamulla,111964-00012-1,1,4380_7778208_4591205,4380_1683 -4380_78147,293,4380_9842,Dublin,55415-00017-1,1,4380_7778208_1090903,4380_177 -4380_78154,292,4380_98420,Bealnamulla,111969-00016-1,1,4380_7778208_4591205,4380_1683 -4380_78154,290,4380_98421,Bealnamulla,111961-00015-1,1,4380_7778208_4591205,4380_1683 -4380_78154,294,4380_98422,Bealnamulla,111965-00018-1,1,4380_7778208_4591205,4380_1683 -4380_78154,293,4380_98423,Bealnamulla,111963-00017-1,1,4380_7778208_4591205,4380_1683 -4380_78154,296,4380_98424,Bealnamulla,111971-00021-1,1,4380_7778208_4591205,4380_1683 -4380_78154,295,4380_98425,Bealnamulla,111967-00019-1,1,4380_7778208_4591205,4380_1683 -4380_78147,294,4380_9843,Dublin,55413-00018-1,1,4380_7778208_1090903,4380_177 -4380_78154,297,4380_98432,Bealnamulla,112074-00008-1,1,4380_7778208_4591206,4380_1683 -4380_78154,285,4380_98433,Bealnamulla,111817-00009-1,1,4380_7778208_4591204,4380_1684 -4380_78154,288,4380_98435,Bealnamulla,111815-00011-1,1,4380_7778208_4591204,4380_1684 -4380_78154,286,4380_98436,Bealnamulla,111809-00010-1,1,4380_7778208_4591204,4380_1684 -4380_78154,291,4380_98437,Bealnamulla,111813-00013-1,1,4380_7778208_4591204,4380_1684 -4380_78154,289,4380_98438,Bealnamulla,111811-00014-1,1,4380_7778208_4591204,4380_1684 -4380_78154,287,4380_98439,Bealnamulla,111819-00012-1,1,4380_7778208_4591204,4380_1684 -4380_78147,295,4380_9844,Dublin,55414-00019-1,1,4380_7778208_1090903,4380_177 -4380_78154,292,4380_98440,Bealnamulla,111810-00016-1,1,4380_7778208_4591204,4380_1684 -4380_78154,290,4380_98441,Bealnamulla,111818-00015-1,1,4380_7778208_4591204,4380_1684 -4380_78154,294,4380_98442,Bealnamulla,111820-00018-1,1,4380_7778208_4591204,4380_1684 -4380_78154,293,4380_98443,Bealnamulla,111816-00017-1,1,4380_7778208_4591204,4380_1684 -4380_78154,296,4380_98444,Bealnamulla,111814-00021-1,1,4380_7778208_4591204,4380_1684 -4380_78154,295,4380_98445,Bealnamulla,111812-00019-1,1,4380_7778208_4591204,4380_1684 -4380_78154,285,4380_98451,Bealnamulla,111624-00009-1,1,4380_7778208_4591203,4380_1683 -4380_78154,288,4380_98453,Bealnamulla,111628-00011-1,1,4380_7778208_4591203,4380_1683 -4380_78154,286,4380_98454,Bealnamulla,111626-00010-1,1,4380_7778208_4591203,4380_1683 -4380_78154,291,4380_98455,Bealnamulla,111622-00013-1,1,4380_7778208_4591203,4380_1683 -4380_78154,289,4380_98456,Bealnamulla,111630-00014-1,1,4380_7778208_4591203,4380_1683 -4380_78154,287,4380_98457,Bealnamulla,111632-00012-1,1,4380_7778208_4591203,4380_1683 -4380_78154,292,4380_98458,Bealnamulla,111627-00016-1,1,4380_7778208_4591203,4380_1683 -4380_78154,290,4380_98459,Bealnamulla,111625-00015-1,1,4380_7778208_4591203,4380_1683 -4380_78154,294,4380_98460,Bealnamulla,111633-00018-1,1,4380_7778208_4591203,4380_1683 -4380_78154,293,4380_98461,Bealnamulla,111629-00017-1,1,4380_7778208_4591203,4380_1683 -4380_78154,296,4380_98462,Bealnamulla,111623-00021-1,1,4380_7778208_4591203,4380_1683 -4380_78154,295,4380_98463,Bealnamulla,111631-00019-1,1,4380_7778208_4591203,4380_1683 -4380_78147,297,4380_9847,Dublin,5298-00008-1,1,4380_7778208_1090101,4380_183 -4380_78154,297,4380_98470,Bealnamulla,111834-00008-1,1,4380_7778208_4591204,4380_1683 -4380_78154,285,4380_98471,Bealnamulla,111988-00009-1,1,4380_7778208_4591205,4380_1684 -4380_78154,288,4380_98473,Bealnamulla,111994-00011-1,1,4380_7778208_4591205,4380_1684 -4380_78154,286,4380_98474,Bealnamulla,111986-00010-1,1,4380_7778208_4591205,4380_1684 -4380_78154,291,4380_98475,Bealnamulla,111990-00013-1,1,4380_7778208_4591205,4380_1684 -4380_78154,289,4380_98476,Bealnamulla,111992-00014-1,1,4380_7778208_4591205,4380_1684 -4380_78154,287,4380_98477,Bealnamulla,111996-00012-1,1,4380_7778208_4591205,4380_1684 -4380_78154,292,4380_98478,Bealnamulla,111987-00016-1,1,4380_7778208_4591205,4380_1684 -4380_78154,290,4380_98479,Bealnamulla,111989-00015-1,1,4380_7778208_4591205,4380_1684 -4380_78147,291,4380_9848,Dublin,6900-00013-1,1,4380_7778208_1090903,4380_185 -4380_78154,294,4380_98480,Bealnamulla,111997-00018-1,1,4380_7778208_4591205,4380_1684 -4380_78154,293,4380_98481,Bealnamulla,111995-00017-1,1,4380_7778208_4591205,4380_1684 -4380_78154,296,4380_98482,Bealnamulla,111991-00021-1,1,4380_7778208_4591205,4380_1684 -4380_78154,295,4380_98483,Bealnamulla,111993-00019-1,1,4380_7778208_4591205,4380_1684 -4380_78154,285,4380_98489,Bealnamulla,111841-00009-1,1,4380_7778208_4591204,4380_1683 -4380_78147,296,4380_9849,Dublin,55417-00021-1,1,4380_7778208_1090903,4380_185 -4380_78154,288,4380_98491,Bealnamulla,111839-00011-1,1,4380_7778208_4591204,4380_1683 -4380_78154,286,4380_98492,Bealnamulla,111843-00010-1,1,4380_7778208_4591204,4380_1683 -4380_78154,291,4380_98493,Bealnamulla,111845-00013-1,1,4380_7778208_4591204,4380_1683 -4380_78154,289,4380_98494,Bealnamulla,111837-00014-1,1,4380_7778208_4591204,4380_1683 -4380_78154,287,4380_98495,Bealnamulla,111835-00012-1,1,4380_7778208_4591204,4380_1683 -4380_78154,292,4380_98496,Bealnamulla,111844-00016-1,1,4380_7778208_4591204,4380_1683 -4380_78154,290,4380_98497,Bealnamulla,111842-00015-1,1,4380_7778208_4591204,4380_1683 -4380_78154,294,4380_98498,Bealnamulla,111836-00018-1,1,4380_7778208_4591204,4380_1683 -4380_78154,293,4380_98499,Bealnamulla,111840-00017-1,1,4380_7778208_4591204,4380_1683 -4380_78113,297,4380_985,Dublin via Airport,49847-00008-1,1,4380_7778208_1000905,4380_18 -4380_78154,296,4380_98500,Bealnamulla,111846-00021-1,1,4380_7778208_4591204,4380_1683 -4380_78154,295,4380_98501,Bealnamulla,111838-00019-1,1,4380_7778208_4591204,4380_1683 -4380_78154,297,4380_98508,Bealnamulla,112011-00008-1,1,4380_7778208_4591205,4380_1683 -4380_78154,285,4380_98509,Bealnamulla,111654-00009-1,1,4380_7778208_4591203,4380_1684 -4380_78154,288,4380_98511,Bealnamulla,111652-00011-1,1,4380_7778208_4591203,4380_1684 -4380_78154,286,4380_98512,Bealnamulla,111648-00010-1,1,4380_7778208_4591203,4380_1684 -4380_78154,291,4380_98513,Bealnamulla,111646-00013-1,1,4380_7778208_4591203,4380_1684 -4380_78154,289,4380_98514,Bealnamulla,111650-00014-1,1,4380_7778208_4591203,4380_1684 -4380_78154,287,4380_98515,Bealnamulla,111656-00012-1,1,4380_7778208_4591203,4380_1684 -4380_78154,292,4380_98516,Bealnamulla,111649-00016-1,1,4380_7778208_4591203,4380_1684 -4380_78154,290,4380_98517,Bealnamulla,111655-00015-1,1,4380_7778208_4591203,4380_1684 -4380_78154,294,4380_98518,Bealnamulla,111657-00018-1,1,4380_7778208_4591203,4380_1684 -4380_78154,293,4380_98519,Bealnamulla,111653-00017-1,1,4380_7778208_4591203,4380_1684 -4380_78154,296,4380_98520,Bealnamulla,111647-00021-1,1,4380_7778208_4591203,4380_1684 -4380_78154,295,4380_98521,Bealnamulla,111651-00019-1,1,4380_7778208_4591203,4380_1684 -4380_77949,285,4380_98527,Balbriggan,53071-00009-1,0,4380_7778208_1041101,4380_1685 -4380_77949,286,4380_98528,Balbriggan,53073-00010-1,0,4380_7778208_1041101,4380_1685 -4380_77949,288,4380_98529,Balbriggan,53069-00011-1,0,4380_7778208_1041101,4380_1685 -4380_77949,287,4380_98530,Balbriggan,53065-00012-1,0,4380_7778208_1041101,4380_1685 -4380_77949,289,4380_98531,Balbriggan,53067-00014-1,0,4380_7778208_1041101,4380_1685 -4380_77949,290,4380_98532,Balbriggan,53072-00015-1,0,4380_7778208_1041101,4380_1685 -4380_77949,292,4380_98533,Balbriggan,53074-00016-1,0,4380_7778208_1041101,4380_1685 -4380_77949,293,4380_98534,Balbriggan,53070-00017-1,0,4380_7778208_1041101,4380_1685 -4380_77949,294,4380_98535,Balbriggan,53066-00018-1,0,4380_7778208_1041101,4380_1685 -4380_77949,295,4380_98536,Balbriggan,53068-00019-1,0,4380_7778208_1041101,4380_1685 -4380_77949,285,4380_98542,Balbriggan,53093-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98543,Balbriggan,53085-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98544,Balbriggan,53089-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98545,Balbriggan,53087-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98546,Balbriggan,53091-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98547,Balbriggan,53094-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98548,Balbriggan,53086-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98549,Balbriggan,53090-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98550,Balbriggan,53088-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98551,Balbriggan,53092-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,285,4380_98557,Balbriggan,53113-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98558,Balbriggan,53105-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98559,Balbriggan,53109-00011-1,0,4380_7778208_1041101,4380_1686 -4380_78147,285,4380_9856,Dublin,6931-00009-1,1,4380_7778208_1090904,4380_181 -4380_77949,287,4380_98560,Balbriggan,53111-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98561,Balbriggan,53107-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98562,Balbriggan,53114-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98563,Balbriggan,53106-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98564,Balbriggan,53110-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98565,Balbriggan,53112-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98566,Balbriggan,53108-00019-1,0,4380_7778208_1041101,4380_1686 -4380_78147,286,4380_9857,Dublin,6936-00010-1,1,4380_7778208_1090904,4380_181 -4380_77949,285,4380_98572,Balbriggan,53131-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_98573,Balbriggan,53125-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_98574,Balbriggan,53129-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_98575,Balbriggan,53133-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_98576,Balbriggan,53127-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_98577,Balbriggan,53132-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,292,4380_98578,Balbriggan,53126-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_98579,Balbriggan,53130-00017-1,0,4380_7778208_1041101,4380_1687 -4380_78147,297,4380_9858,Dublin,6023-00008-1,1,4380_7778208_1090114,4380_184 -4380_77949,294,4380_98580,Balbriggan,53134-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_98581,Balbriggan,53128-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77949,285,4380_98587,Balbriggan,53151-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98588,Balbriggan,53153-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98589,Balbriggan,53147-00011-1,0,4380_7778208_1041101,4380_1686 -4380_78147,288,4380_9859,Dublin,6941-00011-1,1,4380_7778208_1090904,4380_181 -4380_77949,287,4380_98590,Balbriggan,53149-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98591,Balbriggan,53145-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98592,Balbriggan,53152-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98593,Balbriggan,53154-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98594,Balbriggan,53148-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98595,Balbriggan,53150-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98596,Balbriggan,53146-00019-1,0,4380_7778208_1041101,4380_1686 -4380_78113,287,4380_986,Dublin via Airport,49949-00012-1,1,4380_7778208_1000906,4380_18 -4380_78147,287,4380_9860,Dublin,6946-00012-1,1,4380_7778208_1090904,4380_181 -4380_77949,285,4380_98602,Balbriggan,53171-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98603,Balbriggan,53165-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98604,Balbriggan,53169-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98605,Balbriggan,53167-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98606,Balbriggan,53173-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98607,Balbriggan,53172-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98608,Balbriggan,53166-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98609,Balbriggan,53170-00017-1,0,4380_7778208_1041101,4380_1686 -4380_78147,289,4380_9861,Dublin,6926-00014-1,1,4380_7778208_1090904,4380_181 -4380_77949,294,4380_98610,Balbriggan,53168-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98611,Balbriggan,53174-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,285,4380_98617,Balbriggan,53187-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_98618,Balbriggan,53191-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_98619,Balbriggan,53185-00011-1,0,4380_7778208_1041101,4380_1687 -4380_78147,290,4380_9862,Dublin,55443-00015-1,1,4380_7778208_1090904,4380_181 -4380_77949,287,4380_98620,Balbriggan,53189-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_98621,Balbriggan,53193-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_98622,Balbriggan,53188-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,292,4380_98623,Balbriggan,53192-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_98624,Balbriggan,53186-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_98625,Balbriggan,53190-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_98626,Balbriggan,53194-00019-1,0,4380_7778208_1041101,4380_1687 -4380_78147,292,4380_9863,Dublin,55446-00016-1,1,4380_7778208_1090904,4380_181 -4380_77949,285,4380_98632,Balbriggan,53209-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98633,Balbriggan,53213-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98634,Balbriggan,53207-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98635,Balbriggan,53205-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98636,Balbriggan,53211-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98637,Balbriggan,53210-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98638,Balbriggan,53214-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98639,Balbriggan,53208-00017-1,0,4380_7778208_1041101,4380_1686 -4380_78147,293,4380_9864,Dublin,55442-00017-1,1,4380_7778208_1090904,4380_181 -4380_77949,294,4380_98640,Balbriggan,53206-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98641,Balbriggan,53212-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,285,4380_98648,Balbriggan,53229-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98649,Balbriggan,53233-00010-1,0,4380_7778208_1041101,4380_1686 -4380_78147,294,4380_9865,Dublin,55445-00018-1,1,4380_7778208_1090904,4380_181 -4380_77949,288,4380_98650,Balbriggan,53227-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98651,Balbriggan,53225-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98652,Balbriggan,53235-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98653,Balbriggan,53230-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98654,Balbriggan,53231-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_98655,Balbriggan,53234-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98656,Balbriggan,53228-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98657,Balbriggan,53226-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98658,Balbriggan,53236-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98659,Balbriggan,53232-00021-1,0,4380_7778208_1041101,4380_1688 -4380_78147,295,4380_9866,Dublin,55444-00019-1,1,4380_7778208_1090904,4380_181 -4380_77949,285,4380_98666,Balbriggan,53255-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_98667,Balbriggan,53251-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_98668,Balbriggan,53249-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_98669,Balbriggan,53253-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_98670,Balbriggan,53259-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_98671,Balbriggan,53256-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,291,4380_98672,Balbriggan,53257-00013-1,0,4380_7778208_1041101,4380_1689 -4380_77949,292,4380_98673,Balbriggan,53252-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_98674,Balbriggan,53250-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_98675,Balbriggan,53254-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_98676,Balbriggan,53260-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77949,296,4380_98677,Balbriggan,53258-00021-1,0,4380_7778208_1041101,4380_1689 -4380_78147,291,4380_9868,Dublin,5501-00013-1,1,4380_7778208_1090104,4380_176 -4380_77949,285,4380_98684,Balbriggan,53273-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98685,Balbriggan,53283-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98686,Balbriggan,53277-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98687,Balbriggan,53275-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98688,Balbriggan,53279-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98689,Balbriggan,53274-00015-1,0,4380_7778208_1041101,4380_1686 -4380_78147,296,4380_9869,Dublin,54843-00021-1,1,4380_7778208_1090104,4380_176 -4380_77949,291,4380_98690,Balbriggan,53281-00013-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98691,Balbriggan,53284-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98692,Balbriggan,53278-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98693,Balbriggan,53276-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98694,Balbriggan,53280-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98695,Balbriggan,53282-00021-1,0,4380_7778208_1041101,4380_1686 -4380_78113,288,4380_987,Dublin via Airport,49941-00011-1,1,4380_7778208_1000906,4380_18 -4380_77949,285,4380_98702,Balbriggan,53297-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98703,Balbriggan,53301-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98704,Balbriggan,53299-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98705,Balbriggan,53307-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98706,Balbriggan,53305-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98707,Balbriggan,53298-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98708,Balbriggan,53303-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_98709,Balbriggan,53302-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98710,Balbriggan,53300-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98711,Balbriggan,53308-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98712,Balbriggan,53306-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98713,Balbriggan,53304-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77949,285,4380_98720,Balbriggan,53321-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_98721,Balbriggan,53327-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_98722,Balbriggan,53325-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_98723,Balbriggan,53323-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_98724,Balbriggan,53331-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_98725,Balbriggan,53322-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,291,4380_98726,Balbriggan,53329-00013-1,0,4380_7778208_1041101,4380_1689 -4380_77949,292,4380_98727,Balbriggan,53328-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_98728,Balbriggan,53326-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_98729,Balbriggan,53324-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_98730,Balbriggan,53332-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77949,296,4380_98731,Balbriggan,53330-00021-1,0,4380_7778208_1041101,4380_1689 -4380_77949,285,4380_98738,Balbriggan,53355-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98739,Balbriggan,53351-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98740,Balbriggan,53349-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98741,Balbriggan,53353-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98742,Balbriggan,53345-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98743,Balbriggan,53356-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98744,Balbriggan,53347-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_98745,Balbriggan,53352-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98746,Balbriggan,53350-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98747,Balbriggan,53354-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98748,Balbriggan,53346-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98749,Balbriggan,53348-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77949,285,4380_98756,Balbriggan,53369-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98757,Balbriggan,53379-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98758,Balbriggan,53375-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98759,Balbriggan,53377-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77954,285,4380_9876,Delvin,7461-00009-1,0,4380_7778208_1110103,4380_194 -4380_77949,289,4380_98760,Balbriggan,53371-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98761,Balbriggan,53370-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98762,Balbriggan,53373-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_98763,Balbriggan,53380-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98764,Balbriggan,53376-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98765,Balbriggan,53378-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98766,Balbriggan,53372-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98767,Balbriggan,53374-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77954,286,4380_9877,Delvin,7472-00010-1,0,4380_7778208_1110103,4380_194 -4380_77949,285,4380_98773,Balbriggan,53393-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_98774,Balbriggan,53397-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_98775,Balbriggan,53401-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_98776,Balbriggan,53395-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_98777,Balbriggan,53399-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_98778,Balbriggan,53394-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,292,4380_98779,Balbriggan,53398-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77954,288,4380_9878,Delvin,7475-00011-1,0,4380_7778208_1110103,4380_194 -4380_77949,293,4380_98780,Balbriggan,53402-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_98781,Balbriggan,53396-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_98782,Balbriggan,53400-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77949,285,4380_98788,Balbriggan,53415-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98789,Balbriggan,53419-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77954,287,4380_9879,Delvin,7482-00012-1,0,4380_7778208_1110103,4380_194 -4380_77949,288,4380_98790,Balbriggan,53413-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98791,Balbriggan,53421-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98792,Balbriggan,53417-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98793,Balbriggan,53416-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98794,Balbriggan,53420-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98795,Balbriggan,53414-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98796,Balbriggan,53422-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98797,Balbriggan,53418-00019-1,0,4380_7778208_1041101,4380_1686 -4380_78113,289,4380_988,Dublin via Airport,49939-00014-1,1,4380_7778208_1000906,4380_18 -4380_77954,289,4380_9880,Delvin,7458-00014-1,0,4380_7778208_1110103,4380_194 -4380_77949,285,4380_98803,Balbriggan,53435-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98804,Balbriggan,53433-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98805,Balbriggan,53437-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98806,Balbriggan,53441-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98807,Balbriggan,53439-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98808,Balbriggan,53436-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98809,Balbriggan,53434-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77954,290,4380_9881,Delvin,55585-00015-1,0,4380_7778208_1110103,4380_194 -4380_77949,293,4380_98810,Balbriggan,53438-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98811,Balbriggan,53442-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98812,Balbriggan,53440-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,285,4380_98819,Balbriggan,53463-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77954,291,4380_9882,Delvin,7646-00013-1,0,4380_7778208_1110105,4380_197 -4380_77949,286,4380_98820,Balbriggan,53461-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_98821,Balbriggan,53457-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_98822,Balbriggan,53455-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_98823,Balbriggan,53459-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_98824,Balbriggan,53464-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,291,4380_98825,Balbriggan,53453-00013-1,0,4380_7778208_1041101,4380_1689 -4380_77949,292,4380_98826,Balbriggan,53462-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_98827,Balbriggan,53458-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_98828,Balbriggan,53456-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_98829,Balbriggan,53460-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77954,292,4380_9883,Delvin,55587-00016-1,0,4380_7778208_1110103,4380_194 -4380_77949,296,4380_98830,Balbriggan,53454-00021-1,0,4380_7778208_1041101,4380_1689 -4380_77949,285,4380_98837,Balbriggan,53483-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98838,Balbriggan,53479-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98839,Balbriggan,53481-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77954,293,4380_9884,Delvin,55586-00017-1,0,4380_7778208_1110103,4380_194 -4380_77949,287,4380_98840,Balbriggan,53487-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98841,Balbriggan,53485-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98842,Balbriggan,53484-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98843,Balbriggan,53477-00013-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98844,Balbriggan,53480-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98845,Balbriggan,53482-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98846,Balbriggan,53488-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98847,Balbriggan,53486-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98848,Balbriggan,53478-00021-1,0,4380_7778208_1041101,4380_1686 -4380_77954,294,4380_9885,Delvin,55584-00018-1,0,4380_7778208_1110103,4380_194 -4380_77949,285,4380_98855,Balbriggan,53509-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98856,Balbriggan,53507-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98857,Balbriggan,53505-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98858,Balbriggan,53503-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98859,Balbriggan,53501-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77954,295,4380_9886,Delvin,55588-00019-1,0,4380_7778208_1110103,4380_194 -4380_77949,290,4380_98860,Balbriggan,53510-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98861,Balbriggan,53511-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_98862,Balbriggan,53508-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98863,Balbriggan,53506-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98864,Balbriggan,53504-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98865,Balbriggan,53502-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98866,Balbriggan,53512-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77954,296,4380_9887,Delvin,55640-00021-1,0,4380_7778208_1110105,4380_197 -4380_77949,285,4380_98873,Balbriggan,53527-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_98874,Balbriggan,53535-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_98875,Balbriggan,53529-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_98876,Balbriggan,53525-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_98877,Balbriggan,53531-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_98878,Balbriggan,53528-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,291,4380_98879,Balbriggan,53533-00013-1,0,4380_7778208_1041101,4380_1689 -4380_77949,292,4380_98880,Balbriggan,53536-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_98881,Balbriggan,53530-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_98882,Balbriggan,53526-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_98883,Balbriggan,53532-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77949,296,4380_98884,Balbriggan,53534-00021-1,0,4380_7778208_1041101,4380_1689 -4380_77949,285,4380_98891,Balbriggan,53555-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98892,Balbriggan,53549-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98893,Balbriggan,53553-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98894,Balbriggan,53551-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98895,Balbriggan,53557-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98896,Balbriggan,53556-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98897,Balbriggan,53559-00013-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_98898,Balbriggan,53550-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98899,Balbriggan,53554-00017-1,0,4380_7778208_1041101,4380_1686 -4380_78113,290,4380_989,Dublin via Airport,49946-00015-1,1,4380_7778208_1000906,4380_18 -4380_77949,294,4380_98900,Balbriggan,53552-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98901,Balbriggan,53558-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98902,Balbriggan,53560-00021-1,0,4380_7778208_1041101,4380_1686 -4380_77949,285,4380_98909,Balbriggan,53575-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98910,Balbriggan,53573-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98911,Balbriggan,53579-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98912,Balbriggan,53577-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98913,Balbriggan,53581-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98914,Balbriggan,53576-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98915,Balbriggan,53583-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_98916,Balbriggan,53574-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98917,Balbriggan,53580-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98918,Balbriggan,53578-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98919,Balbriggan,53582-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98920,Balbriggan,53584-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77949,285,4380_98926,Balbriggan,53597-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_98927,Balbriggan,53601-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_98928,Balbriggan,53599-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_98929,Balbriggan,53605-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_98930,Balbriggan,53603-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_98931,Balbriggan,53598-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,292,4380_98932,Balbriggan,53602-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_98933,Balbriggan,53600-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_98934,Balbriggan,53606-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_98935,Balbriggan,53604-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77949,291,4380_98937,Balbriggan,53607-00013-1,0,4380_7778208_1041101,4380_1687 -4380_77949,296,4380_98938,Balbriggan,53608-00021-1,0,4380_7778208_1041101,4380_1687 -4380_77949,285,4380_98945,Balbriggan,53621-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98946,Balbriggan,53627-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98947,Balbriggan,53631-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98948,Balbriggan,53623-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98949,Balbriggan,53625-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77954,285,4380_9895,Athboy,7280-00009-1,0,4380_7778208_1110101,4380_193 -4380_77949,290,4380_98950,Balbriggan,53622-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98951,Balbriggan,53629-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_98952,Balbriggan,53628-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98953,Balbriggan,53632-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98954,Balbriggan,53624-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98955,Balbriggan,53626-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98956,Balbriggan,53630-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77954,286,4380_9896,Athboy,7304-00010-1,0,4380_7778208_1110101,4380_193 -4380_77949,285,4380_98963,Balbriggan,53645-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98964,Balbriggan,53653-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98965,Balbriggan,53649-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98966,Balbriggan,53655-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98967,Balbriggan,53651-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_98968,Balbriggan,53646-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_98969,Balbriggan,53647-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77954,297,4380_9897,Athboy,7590-00008-1,0,4380_7778208_1110104,4380_195 -4380_77949,292,4380_98970,Balbriggan,53654-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_98971,Balbriggan,53650-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_98972,Balbriggan,53656-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_98973,Balbriggan,53652-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_98974,Balbriggan,53648-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77954,288,4380_9898,Athboy,7320-00011-1,0,4380_7778208_1110101,4380_193 -4380_77949,285,4380_98980,Balbriggan,53675-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_98981,Balbriggan,53677-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_98982,Balbriggan,53673-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_98983,Balbriggan,53669-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_98984,Balbriggan,53671-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_98985,Balbriggan,53676-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,292,4380_98986,Balbriggan,53678-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_98987,Balbriggan,53674-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_98988,Balbriggan,53670-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_98989,Balbriggan,53672-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77954,287,4380_9899,Athboy,7336-00012-1,0,4380_7778208_1110101,4380_193 -4380_77949,285,4380_98995,Balbriggan,53689-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_98996,Balbriggan,53691-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_98997,Balbriggan,53693-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_98998,Balbriggan,53697-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_98999,Balbriggan,53695-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77946,291,4380_99,Dundalk,50273-00013-1,0,4380_7778208_1000912,4380_5 -4380_78113,291,4380_990,Dublin via Airport,49943-00013-1,1,4380_7778208_1000906,4380_18 -4380_77954,289,4380_9900,Athboy,7264-00014-1,0,4380_7778208_1110101,4380_193 -4380_77949,290,4380_99000,Balbriggan,53690-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_99001,Balbriggan,53692-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_99002,Balbriggan,53694-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_99003,Balbriggan,53698-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_99004,Balbriggan,53696-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77954,290,4380_9901,Athboy,55513-00015-1,0,4380_7778208_1110101,4380_193 -4380_77949,285,4380_99010,Balbriggan,53715-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_99011,Balbriggan,53713-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_99012,Balbriggan,53709-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_99013,Balbriggan,53717-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_99014,Balbriggan,53711-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_99015,Balbriggan,53716-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_99016,Balbriggan,53714-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_99017,Balbriggan,53710-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_99018,Balbriggan,53718-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_99019,Balbriggan,53712-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77954,291,4380_9902,Athboy,7352-00013-1,0,4380_7778208_1110101,4380_196 -4380_77949,285,4380_99026,Balbriggan,53731-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_99027,Balbriggan,53739-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_99028,Balbriggan,53733-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_99029,Balbriggan,53737-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77954,292,4380_9903,Athboy,55511-00016-1,0,4380_7778208_1110101,4380_193 -4380_77949,289,4380_99030,Balbriggan,53729-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_99031,Balbriggan,53732-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,291,4380_99032,Balbriggan,53735-00013-1,0,4380_7778208_1041101,4380_1689 -4380_77949,292,4380_99033,Balbriggan,53740-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_99034,Balbriggan,53734-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_99035,Balbriggan,53738-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_99036,Balbriggan,53730-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77949,296,4380_99037,Balbriggan,53736-00021-1,0,4380_7778208_1041101,4380_1689 -4380_77954,293,4380_9904,Athboy,55514-00017-1,0,4380_7778208_1110101,4380_193 -4380_77949,285,4380_99044,Balbriggan,53763-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_99045,Balbriggan,53757-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_99046,Balbriggan,53759-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_99047,Balbriggan,53755-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_99048,Balbriggan,53761-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_99049,Balbriggan,53764-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77954,294,4380_9905,Athboy,55510-00018-1,0,4380_7778208_1110101,4380_193 -4380_77949,291,4380_99050,Balbriggan,53753-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_99051,Balbriggan,53758-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_99052,Balbriggan,53760-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_99053,Balbriggan,53756-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_99054,Balbriggan,53762-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_99055,Balbriggan,53754-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77954,295,4380_9906,Athboy,55509-00019-1,0,4380_7778208_1110101,4380_193 -4380_77949,285,4380_99062,Balbriggan,53781-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_99063,Balbriggan,53777-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_99064,Balbriggan,53785-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_99065,Balbriggan,53779-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_99066,Balbriggan,53787-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_99067,Balbriggan,53782-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_99068,Balbriggan,53783-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_99069,Balbriggan,53778-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77954,296,4380_9907,Athboy,55512-00021-1,0,4380_7778208_1110101,4380_196 -4380_77949,293,4380_99070,Balbriggan,53786-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_99071,Balbriggan,53780-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_99072,Balbriggan,53788-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_99073,Balbriggan,53784-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77949,285,4380_99080,Balbriggan,53801-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_99081,Balbriggan,53805-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_99082,Balbriggan,53811-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_99083,Balbriggan,53803-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_99084,Balbriggan,53809-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_99085,Balbriggan,53802-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77949,291,4380_99086,Balbriggan,53807-00013-1,0,4380_7778208_1041101,4380_1689 -4380_77949,292,4380_99087,Balbriggan,53806-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_99088,Balbriggan,53812-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_99089,Balbriggan,53804-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_99090,Balbriggan,53810-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77949,296,4380_99091,Balbriggan,53808-00021-1,0,4380_7778208_1041101,4380_1689 -4380_77949,291,4380_99093,Balbriggan,53825-00013-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_99094,Balbriggan,53826-00021-1,0,4380_7778208_1041101,4380_1686 -4380_78113,292,4380_991,Dublin via Airport,49948-00016-1,1,4380_7778208_1000906,4380_18 -4380_77949,285,4380_99100,Balbriggan,53831-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_99101,Balbriggan,53829-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_99102,Balbriggan,53835-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_99103,Balbriggan,53827-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_99104,Balbriggan,53833-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_99105,Balbriggan,53832-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_99106,Balbriggan,53830-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_99107,Balbriggan,53836-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_99108,Balbriggan,53828-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_99109,Balbriggan,53834-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,285,4380_99116,Balbriggan,53855-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_99117,Balbriggan,53853-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_99118,Balbriggan,53849-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_99119,Balbriggan,53857-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_99120,Balbriggan,53851-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_99121,Balbriggan,53856-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_99122,Balbriggan,53859-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_99123,Balbriggan,53854-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_99124,Balbriggan,53850-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_99125,Balbriggan,53858-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_99126,Balbriggan,53852-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_99127,Balbriggan,53860-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77949,285,4380_99134,Balbriggan,53875-00009-1,0,4380_7778208_1041101,4380_1687 -4380_77949,286,4380_99135,Balbriggan,53879-00010-1,0,4380_7778208_1041101,4380_1687 -4380_77949,288,4380_99136,Balbriggan,53883-00011-1,0,4380_7778208_1041101,4380_1687 -4380_77949,287,4380_99137,Balbriggan,53881-00012-1,0,4380_7778208_1041101,4380_1687 -4380_77949,289,4380_99138,Balbriggan,53873-00014-1,0,4380_7778208_1041101,4380_1687 -4380_77949,290,4380_99139,Balbriggan,53876-00015-1,0,4380_7778208_1041101,4380_1687 -4380_77954,285,4380_9914,Athboy,7532-00009-1,0,4380_7778208_1110104,4380_190 -4380_77949,291,4380_99140,Balbriggan,53877-00013-1,0,4380_7778208_1041101,4380_1689 -4380_77949,292,4380_99141,Balbriggan,53880-00016-1,0,4380_7778208_1041101,4380_1687 -4380_77949,293,4380_99142,Balbriggan,53884-00017-1,0,4380_7778208_1041101,4380_1687 -4380_77949,294,4380_99143,Balbriggan,53882-00018-1,0,4380_7778208_1041101,4380_1687 -4380_77949,295,4380_99144,Balbriggan,53874-00019-1,0,4380_7778208_1041101,4380_1687 -4380_77949,296,4380_99145,Balbriggan,53878-00021-1,0,4380_7778208_1041101,4380_1689 -4380_77954,286,4380_9915,Athboy,7544-00010-1,0,4380_7778208_1110104,4380_190 -4380_77949,285,4380_99152,Balbriggan,53905-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77949,286,4380_99153,Balbriggan,53897-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_99154,Balbriggan,53907-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_99155,Balbriggan,53901-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_99156,Balbriggan,53903-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_99157,Balbriggan,53906-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,291,4380_99158,Balbriggan,53899-00013-1,0,4380_7778208_1041101,4380_1688 -4380_77949,292,4380_99159,Balbriggan,53898-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77954,288,4380_9916,Athboy,7556-00011-1,0,4380_7778208_1110104,4380_190 -4380_77949,293,4380_99160,Balbriggan,53908-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_99161,Balbriggan,53902-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_99162,Balbriggan,53904-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77949,296,4380_99163,Balbriggan,53900-00021-1,0,4380_7778208_1041101,4380_1688 -4380_77949,285,4380_99169,Balbriggan,53925-00009-1,0,4380_7778208_1041101,4380_1686 -4380_77954,287,4380_9917,Athboy,7568-00012-1,0,4380_7778208_1110104,4380_190 -4380_77949,286,4380_99170,Balbriggan,53923-00010-1,0,4380_7778208_1041101,4380_1686 -4380_77949,288,4380_99171,Balbriggan,53927-00011-1,0,4380_7778208_1041101,4380_1686 -4380_77949,287,4380_99172,Balbriggan,53921-00012-1,0,4380_7778208_1041101,4380_1686 -4380_77949,289,4380_99173,Balbriggan,53929-00014-1,0,4380_7778208_1041101,4380_1686 -4380_77949,290,4380_99174,Balbriggan,53926-00015-1,0,4380_7778208_1041101,4380_1686 -4380_77949,292,4380_99175,Balbriggan,53924-00016-1,0,4380_7778208_1041101,4380_1686 -4380_77949,293,4380_99176,Balbriggan,53928-00017-1,0,4380_7778208_1041101,4380_1686 -4380_77949,294,4380_99177,Balbriggan,53922-00018-1,0,4380_7778208_1041101,4380_1686 -4380_77949,295,4380_99178,Balbriggan,53930-00019-1,0,4380_7778208_1041101,4380_1686 -4380_77954,289,4380_9918,Athboy,7520-00014-1,0,4380_7778208_1110104,4380_190 -4380_77949,285,4380_99184,Balbriggan,53083-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99185,Balbriggan,53077-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99186,Balbriggan,53079-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99187,Balbriggan,53075-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99188,Balbriggan,53081-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99189,Balbriggan,53084-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77954,290,4380_9919,Athboy,55612-00015-1,0,4380_7778208_1110104,4380_190 -4380_77949,292,4380_99190,Balbriggan,53078-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99191,Balbriggan,53080-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99192,Balbriggan,53076-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99193,Balbriggan,53082-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99199,Balbriggan,53095-00009-1,1,4380_7778208_1041101,4380_1690 -4380_78113,293,4380_992,Dublin via Airport,49942-00017-1,1,4380_7778208_1000906,4380_18 -4380_77954,291,4380_9920,Athboy,7435-00013-1,0,4380_7778208_1110102,4380_193 -4380_77949,286,4380_99200,Balbriggan,53097-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99201,Balbriggan,53103-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99202,Balbriggan,53099-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99203,Balbriggan,53101-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99204,Balbriggan,53096-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99205,Balbriggan,53098-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99206,Balbriggan,53104-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99207,Balbriggan,53100-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99208,Balbriggan,53102-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77954,292,4380_9921,Athboy,55615-00016-1,0,4380_7778208_1110104,4380_190 -4380_77949,285,4380_99214,Balbriggan,53121-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99215,Balbriggan,53123-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99216,Balbriggan,53119-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99217,Balbriggan,53117-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99218,Balbriggan,53115-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99219,Balbriggan,53122-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77954,293,4380_9922,Athboy,55614-00017-1,0,4380_7778208_1110104,4380_190 -4380_77949,292,4380_99220,Balbriggan,53124-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99221,Balbriggan,53120-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99222,Balbriggan,53118-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99223,Balbriggan,53116-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99229,Balbriggan,53143-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77954,294,4380_9923,Athboy,55611-00018-1,0,4380_7778208_1110104,4380_190 -4380_77949,286,4380_99230,Balbriggan,53137-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99231,Balbriggan,53135-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99232,Balbriggan,53141-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99233,Balbriggan,53139-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99234,Balbriggan,53144-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99235,Balbriggan,53138-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99236,Balbriggan,53136-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99237,Balbriggan,53142-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99238,Balbriggan,53140-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77954,295,4380_9924,Athboy,55613-00019-1,0,4380_7778208_1110104,4380_190 -4380_77949,285,4380_99244,Balbriggan,53157-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99245,Balbriggan,53159-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99246,Balbriggan,53155-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99247,Balbriggan,53163-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99248,Balbriggan,53161-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99249,Balbriggan,53158-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77954,296,4380_9925,Athboy,55557-00021-1,0,4380_7778208_1110102,4380_193 -4380_77949,292,4380_99250,Balbriggan,53160-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99251,Balbriggan,53156-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99252,Balbriggan,53164-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99253,Balbriggan,53162-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99259,Balbriggan,53183-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99260,Balbriggan,53175-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99261,Balbriggan,53181-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99262,Balbriggan,53177-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99263,Balbriggan,53179-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99264,Balbriggan,53184-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99265,Balbriggan,53176-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99266,Balbriggan,53182-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99267,Balbriggan,53178-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99268,Balbriggan,53180-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99274,Balbriggan,53197-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77949,286,4380_99275,Balbriggan,53195-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99276,Balbriggan,53201-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99277,Balbriggan,53203-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99278,Balbriggan,53199-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99279,Balbriggan,53198-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99280,Balbriggan,53196-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99281,Balbriggan,53202-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99282,Balbriggan,53204-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99283,Balbriggan,53200-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77949,285,4380_99289,Balbriggan,53215-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99290,Balbriggan,53221-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99291,Balbriggan,53217-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99292,Balbriggan,53219-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99293,Balbriggan,53223-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99294,Balbriggan,53216-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99295,Balbriggan,53222-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99296,Balbriggan,53218-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99297,Balbriggan,53220-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99298,Balbriggan,53224-00019-1,1,4380_7778208_1041101,4380_1690 -4380_78113,294,4380_993,Dublin via Airport,49950-00018-1,1,4380_7778208_1000906,4380_18 -4380_77949,285,4380_99305,Balbriggan,53243-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99306,Balbriggan,53241-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99307,Balbriggan,53239-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99308,Balbriggan,53237-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99309,Balbriggan,53247-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99310,Balbriggan,53244-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99311,Balbriggan,53245-00013-1,1,4380_7778208_1041101,4380_1692 -4380_77949,292,4380_99312,Balbriggan,53242-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99313,Balbriggan,53240-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99314,Balbriggan,53238-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99315,Balbriggan,53248-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99316,Balbriggan,53246-00021-1,1,4380_7778208_1041101,4380_1692 -4380_77949,291,4380_99318,Balbriggan,53261-00013-1,1,4380_7778208_1041101,4380_1691 -4380_77949,296,4380_99319,Balbriggan,53262-00021-1,1,4380_7778208_1041101,4380_1691 -4380_77949,285,4380_99325,Balbriggan,53271-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77949,286,4380_99326,Balbriggan,53263-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99327,Balbriggan,53265-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99328,Balbriggan,53267-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99329,Balbriggan,53269-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77954,285,4380_9933,Athboy,7678-00009-1,0,4380_7778208_1110106,4380_193 -4380_77949,290,4380_99330,Balbriggan,53272-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99331,Balbriggan,53264-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99332,Balbriggan,53266-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99333,Balbriggan,53268-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99334,Balbriggan,53270-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77954,286,4380_9934,Athboy,7692-00010-1,0,4380_7778208_1110106,4380_193 -4380_77949,285,4380_99341,Balbriggan,53289-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99342,Balbriggan,53291-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99343,Balbriggan,53295-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99344,Balbriggan,53287-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99345,Balbriggan,53293-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99346,Balbriggan,53290-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99347,Balbriggan,53285-00013-1,1,4380_7778208_1041101,4380_1692 -4380_77949,292,4380_99348,Balbriggan,53292-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99349,Balbriggan,53296-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77954,297,4380_9935,Athboy,7364-00008-1,0,4380_7778208_1110101,4380_195 -4380_77949,294,4380_99350,Balbriggan,53288-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99351,Balbriggan,53294-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99352,Balbriggan,53286-00021-1,1,4380_7778208_1041101,4380_1692 -4380_77949,285,4380_99359,Balbriggan,53309-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77954,288,4380_9936,Athboy,7702-00011-1,0,4380_7778208_1110106,4380_193 -4380_77949,286,4380_99360,Balbriggan,53319-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99361,Balbriggan,53317-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99362,Balbriggan,53311-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99363,Balbriggan,53315-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99364,Balbriggan,53310-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99365,Balbriggan,53313-00013-1,1,4380_7778208_1041101,4380_1692 -4380_77949,292,4380_99366,Balbriggan,53320-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99367,Balbriggan,53318-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99368,Balbriggan,53312-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99369,Balbriggan,53316-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77954,287,4380_9937,Athboy,7712-00012-1,0,4380_7778208_1110106,4380_193 -4380_77949,296,4380_99370,Balbriggan,53314-00021-1,1,4380_7778208_1041101,4380_1692 -4380_77949,291,4380_99372,Balbriggan,53333-00013-1,1,4380_7778208_1041101,4380_1691 -4380_77949,296,4380_99373,Balbriggan,53334-00021-1,1,4380_7778208_1041101,4380_1691 -4380_77949,285,4380_99379,Balbriggan,53339-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77954,289,4380_9938,Athboy,7668-00014-1,0,4380_7778208_1110106,4380_193 -4380_77949,286,4380_99380,Balbriggan,53335-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99381,Balbriggan,53341-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99382,Balbriggan,53343-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99383,Balbriggan,53337-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99384,Balbriggan,53340-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99385,Balbriggan,53336-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99386,Balbriggan,53342-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99387,Balbriggan,53344-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99388,Balbriggan,53338-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77954,290,4380_9939,Athboy,55683-00015-1,0,4380_7778208_1110106,4380_193 -4380_77949,285,4380_99395,Balbriggan,53367-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99396,Balbriggan,53359-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99397,Balbriggan,53361-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99398,Balbriggan,53365-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99399,Balbriggan,53357-00014-1,1,4380_7778208_1041101,4380_1690 -4380_78113,295,4380_994,Dublin via Airport,49940-00019-1,1,4380_7778208_1000906,4380_18 -4380_77954,291,4380_9940,Athboy,7496-00013-1,0,4380_7778208_1110103,4380_196 -4380_77949,290,4380_99400,Balbriggan,53368-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99401,Balbriggan,53363-00013-1,1,4380_7778208_1041101,4380_1692 -4380_77949,292,4380_99402,Balbriggan,53360-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99403,Balbriggan,53362-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99404,Balbriggan,53366-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99405,Balbriggan,53358-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99406,Balbriggan,53364-00021-1,1,4380_7778208_1041101,4380_1692 -4380_77954,292,4380_9941,Athboy,55684-00016-1,0,4380_7778208_1110106,4380_193 -4380_77949,285,4380_99413,Balbriggan,53381-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99414,Balbriggan,53387-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99415,Balbriggan,53385-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99416,Balbriggan,53389-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99417,Balbriggan,53391-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99418,Balbriggan,53382-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99419,Balbriggan,53383-00013-1,1,4380_7778208_1041101,4380_1692 -4380_77954,293,4380_9942,Athboy,55685-00017-1,0,4380_7778208_1110106,4380_193 -4380_77949,292,4380_99420,Balbriggan,53388-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99421,Balbriggan,53386-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99422,Balbriggan,53390-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99423,Balbriggan,53392-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99424,Balbriggan,53384-00021-1,1,4380_7778208_1041101,4380_1692 -4380_77954,294,4380_9943,Athboy,55686-00018-1,0,4380_7778208_1110106,4380_193 -4380_77949,285,4380_99430,Balbriggan,53405-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77949,286,4380_99431,Balbriggan,53403-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99432,Balbriggan,53411-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99433,Balbriggan,53409-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99434,Balbriggan,53407-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99435,Balbriggan,53406-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99436,Balbriggan,53404-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99437,Balbriggan,53412-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99438,Balbriggan,53410-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99439,Balbriggan,53408-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77954,295,4380_9944,Athboy,55687-00019-1,0,4380_7778208_1110106,4380_193 -4380_77949,285,4380_99445,Balbriggan,53425-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99446,Balbriggan,53427-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99447,Balbriggan,53423-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99448,Balbriggan,53431-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99449,Balbriggan,53429-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77954,296,4380_9945,Athboy,55595-00021-1,0,4380_7778208_1110103,4380_196 -4380_77949,290,4380_99450,Balbriggan,53426-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99451,Balbriggan,53428-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99452,Balbriggan,53424-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99453,Balbriggan,53432-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99454,Balbriggan,53430-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99460,Balbriggan,53447-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99461,Balbriggan,53445-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99462,Balbriggan,53443-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99463,Balbriggan,53451-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99464,Balbriggan,53449-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99465,Balbriggan,53448-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99466,Balbriggan,53446-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99467,Balbriggan,53444-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99468,Balbriggan,53452-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99469,Balbriggan,53450-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99471,Balbriggan,53465-00013-1,1,4380_7778208_1041101,4380_1691 -4380_77949,296,4380_99472,Balbriggan,53466-00021-1,1,4380_7778208_1041101,4380_1691 -4380_77949,285,4380_99478,Balbriggan,53471-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77949,286,4380_99479,Balbriggan,53473-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99480,Balbriggan,53475-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99481,Balbriggan,53467-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99482,Balbriggan,53469-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99483,Balbriggan,53472-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99484,Balbriggan,53474-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99485,Balbriggan,53476-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99486,Balbriggan,53468-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99487,Balbriggan,53470-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77949,285,4380_99494,Balbriggan,53499-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99495,Balbriggan,53493-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99496,Balbriggan,53489-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99497,Balbriggan,53497-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99498,Balbriggan,53491-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99499,Balbriggan,53500-00015-1,1,4380_7778208_1041101,4380_1690 -4380_78113,296,4380_995,Dublin via Airport,49944-00021-1,1,4380_7778208_1000906,4380_18 -4380_77949,291,4380_99500,Balbriggan,53495-00013-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99501,Balbriggan,53494-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99502,Balbriggan,53490-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99503,Balbriggan,53498-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99504,Balbriggan,53492-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99505,Balbriggan,53496-00021-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99512,Balbriggan,53513-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99513,Balbriggan,53519-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99514,Balbriggan,53523-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99515,Balbriggan,53521-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99516,Balbriggan,53515-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99517,Balbriggan,53514-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99518,Balbriggan,53517-00013-1,1,4380_7778208_1041101,4380_1692 -4380_77949,292,4380_99519,Balbriggan,53520-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99520,Balbriggan,53524-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99521,Balbriggan,53522-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99522,Balbriggan,53516-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99523,Balbriggan,53518-00021-1,1,4380_7778208_1041101,4380_1692 -4380_77949,291,4380_99525,Balbriggan,53537-00013-1,1,4380_7778208_1041101,4380_1691 -4380_77949,296,4380_99526,Balbriggan,53538-00021-1,1,4380_7778208_1041101,4380_1691 -4380_77954,285,4380_9953,Delvin,7607-00009-1,0,4380_7778208_1110105,4380_194 -4380_77949,285,4380_99532,Balbriggan,53543-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77949,286,4380_99533,Balbriggan,53541-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99534,Balbriggan,53547-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99535,Balbriggan,53545-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99536,Balbriggan,53539-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99537,Balbriggan,53544-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99538,Balbriggan,53542-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99539,Balbriggan,53548-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77954,286,4380_9954,Delvin,7621-00010-1,0,4380_7778208_1110105,4380_194 -4380_77949,294,4380_99540,Balbriggan,53546-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99541,Balbriggan,53540-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77949,285,4380_99548,Balbriggan,53571-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99549,Balbriggan,53561-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77954,297,4380_9955,Athboy,7502-00008-1,0,4380_7778208_1110103,4380_189 -4380_77949,288,4380_99550,Balbriggan,53567-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99551,Balbriggan,53565-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99552,Balbriggan,53569-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99553,Balbriggan,53572-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99554,Balbriggan,53563-00013-1,1,4380_7778208_1041101,4380_1692 -4380_77949,292,4380_99555,Balbriggan,53562-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99556,Balbriggan,53568-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99557,Balbriggan,53566-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99558,Balbriggan,53570-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99559,Balbriggan,53564-00021-1,1,4380_7778208_1041101,4380_1692 -4380_77954,288,4380_9956,Delvin,7631-00011-1,0,4380_7778208_1110105,4380_194 -4380_77949,285,4380_99565,Balbriggan,53591-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99566,Balbriggan,53589-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99567,Balbriggan,53593-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99568,Balbriggan,53585-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99569,Balbriggan,53587-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77954,287,4380_9957,Delvin,7641-00012-1,0,4380_7778208_1110105,4380_194 -4380_77949,290,4380_99570,Balbriggan,53592-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99571,Balbriggan,53590-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99572,Balbriggan,53594-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99573,Balbriggan,53586-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99574,Balbriggan,53588-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99576,Balbriggan,53595-00013-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99577,Balbriggan,53596-00021-1,1,4380_7778208_1041101,4380_1690 -4380_77954,289,4380_9958,Delvin,7601-00014-1,0,4380_7778208_1110105,4380_194 -4380_77949,285,4380_99584,Balbriggan,53613-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77949,286,4380_99585,Balbriggan,53611-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99586,Balbriggan,53609-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99587,Balbriggan,53615-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99588,Balbriggan,53619-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99589,Balbriggan,53614-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77954,290,4380_9959,Delvin,55650-00015-1,0,4380_7778208_1110105,4380_194 -4380_77949,291,4380_99590,Balbriggan,53617-00013-1,1,4380_7778208_1041101,4380_1693 -4380_77949,292,4380_99591,Balbriggan,53612-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99592,Balbriggan,53610-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99593,Balbriggan,53616-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99594,Balbriggan,53620-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77949,296,4380_99595,Balbriggan,53618-00021-1,1,4380_7778208_1041101,4380_1693 -4380_77954,291,4380_9960,Delvin,7580-00013-1,0,4380_7778208_1110104,4380_197 -4380_77949,285,4380_99601,Balbriggan,53641-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99602,Balbriggan,53635-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99603,Balbriggan,53633-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99604,Balbriggan,53639-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99605,Balbriggan,53637-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99606,Balbriggan,53642-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99607,Balbriggan,53636-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99608,Balbriggan,53634-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99609,Balbriggan,53640-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77954,292,4380_9961,Delvin,55651-00016-1,0,4380_7778208_1110105,4380_194 -4380_77949,295,4380_99610,Balbriggan,53638-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99612,Balbriggan,53643-00013-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99613,Balbriggan,53644-00021-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99619,Balbriggan,53657-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77954,293,4380_9962,Delvin,55647-00017-1,0,4380_7778208_1110105,4380_194 -4380_77949,286,4380_99620,Balbriggan,53659-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99621,Balbriggan,53663-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99622,Balbriggan,53665-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99623,Balbriggan,53661-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99624,Balbriggan,53658-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99625,Balbriggan,53660-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99626,Balbriggan,53664-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99627,Balbriggan,53666-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99628,Balbriggan,53662-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77954,294,4380_9963,Delvin,55648-00018-1,0,4380_7778208_1110105,4380_194 -4380_77949,291,4380_99630,Balbriggan,53667-00013-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99631,Balbriggan,53668-00021-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99637,Balbriggan,53687-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77949,286,4380_99638,Balbriggan,53683-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99639,Balbriggan,53681-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77954,295,4380_9964,Delvin,55649-00019-1,0,4380_7778208_1110105,4380_194 -4380_77949,287,4380_99640,Balbriggan,53679-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99641,Balbriggan,53685-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99642,Balbriggan,53688-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99643,Balbriggan,53684-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99644,Balbriggan,53682-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99645,Balbriggan,53680-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99646,Balbriggan,53686-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77954,296,4380_9965,Delvin,55616-00021-1,0,4380_7778208_1110104,4380_197 -4380_77949,285,4380_99652,Balbriggan,53699-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99653,Balbriggan,53705-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99654,Balbriggan,53701-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99655,Balbriggan,53707-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99656,Balbriggan,53703-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99657,Balbriggan,53700-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99658,Balbriggan,53706-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99659,Balbriggan,53702-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99660,Balbriggan,53708-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99661,Balbriggan,53704-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99667,Balbriggan,53723-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99668,Balbriggan,53721-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99669,Balbriggan,53725-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99670,Balbriggan,53727-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99671,Balbriggan,53719-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99672,Balbriggan,53724-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99673,Balbriggan,53722-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99674,Balbriggan,53726-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99675,Balbriggan,53728-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99676,Balbriggan,53720-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99678,Balbriggan,53741-00013-1,1,4380_7778208_1041101,4380_1691 -4380_77949,296,4380_99679,Balbriggan,53742-00021-1,1,4380_7778208_1041101,4380_1691 -4380_77949,285,4380_99685,Balbriggan,53743-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77949,286,4380_99686,Balbriggan,53747-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99687,Balbriggan,53749-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99688,Balbriggan,53745-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99689,Balbriggan,53751-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99690,Balbriggan,53744-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99691,Balbriggan,53748-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99692,Balbriggan,53750-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99693,Balbriggan,53746-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99694,Balbriggan,53752-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77949,291,4380_99696,Balbriggan,53765-00013-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99697,Balbriggan,53766-00021-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99703,Balbriggan,53769-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99704,Balbriggan,53775-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99705,Balbriggan,53771-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99706,Balbriggan,53773-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99707,Balbriggan,53767-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99708,Balbriggan,53770-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99709,Balbriggan,53776-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99710,Balbriggan,53772-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99711,Balbriggan,53774-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99712,Balbriggan,53768-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99714,Balbriggan,53789-00013-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99715,Balbriggan,53790-00021-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99721,Balbriggan,53793-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99722,Balbriggan,53797-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99723,Balbriggan,53791-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99724,Balbriggan,53795-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99725,Balbriggan,53799-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99726,Balbriggan,53794-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99727,Balbriggan,53798-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99728,Balbriggan,53792-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99729,Balbriggan,53796-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77954,285,4380_9973,Athboy,7389-00009-1,0,4380_7778208_1110102,4380_193 -4380_77949,295,4380_99730,Balbriggan,53800-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99732,Balbriggan,53813-00013-1,1,4380_7778208_1041101,4380_1691 -4380_77949,296,4380_99733,Balbriggan,53814-00021-1,1,4380_7778208_1041101,4380_1691 -4380_77949,285,4380_99739,Balbriggan,53823-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77954,286,4380_9974,Athboy,7402-00010-1,0,4380_7778208_1110102,4380_193 -4380_77949,286,4380_99740,Balbriggan,53815-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99741,Balbriggan,53821-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99742,Balbriggan,53817-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99743,Balbriggan,53819-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99744,Balbriggan,53824-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99745,Balbriggan,53816-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99746,Balbriggan,53822-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99747,Balbriggan,53818-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99748,Balbriggan,53820-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77954,297,4380_9975,Athboy,7592-00008-1,0,4380_7778208_1110104,4380_195 -4380_77949,291,4380_99750,Balbriggan,53837-00013-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99751,Balbriggan,53838-00021-1,1,4380_7778208_1041101,4380_1690 -4380_77949,285,4380_99757,Balbriggan,53839-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99758,Balbriggan,53847-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99759,Balbriggan,53845-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77954,288,4380_9976,Athboy,7407-00011-1,0,4380_7778208_1110102,4380_193 -4380_77949,287,4380_99760,Balbriggan,53843-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99761,Balbriggan,53841-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99762,Balbriggan,53840-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99763,Balbriggan,53848-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99764,Balbriggan,53846-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99765,Balbriggan,53844-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99766,Balbriggan,53842-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99768,Balbriggan,53861-00013-1,1,4380_7778208_1041101,4380_1690 -4380_77949,296,4380_99769,Balbriggan,53862-00021-1,1,4380_7778208_1041101,4380_1690 -4380_77954,287,4380_9977,Athboy,7420-00012-1,0,4380_7778208_1110102,4380_193 -4380_77949,285,4380_99775,Balbriggan,53863-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99776,Balbriggan,53871-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99777,Balbriggan,53869-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99778,Balbriggan,53865-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99779,Balbriggan,53867-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77954,289,4380_9978,Athboy,7368-00014-1,0,4380_7778208_1110102,4380_193 -4380_77949,290,4380_99780,Balbriggan,53864-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99781,Balbriggan,53872-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99782,Balbriggan,53870-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99783,Balbriggan,53866-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99784,Balbriggan,53868-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77954,290,4380_9979,Athboy,55559-00015-1,0,4380_7778208_1110102,4380_193 -4380_77949,285,4380_99790,Balbriggan,53893-00009-1,1,4380_7778208_1041101,4380_1691 -4380_77949,286,4380_99791,Balbriggan,53889-00010-1,1,4380_7778208_1041101,4380_1691 -4380_77949,288,4380_99792,Balbriggan,53887-00011-1,1,4380_7778208_1041101,4380_1691 -4380_77949,287,4380_99793,Balbriggan,53885-00012-1,1,4380_7778208_1041101,4380_1691 -4380_77949,289,4380_99794,Balbriggan,53891-00014-1,1,4380_7778208_1041101,4380_1691 -4380_77949,290,4380_99795,Balbriggan,53894-00015-1,1,4380_7778208_1041101,4380_1691 -4380_77949,292,4380_99796,Balbriggan,53890-00016-1,1,4380_7778208_1041101,4380_1691 -4380_77949,293,4380_99797,Balbriggan,53888-00017-1,1,4380_7778208_1041101,4380_1691 -4380_77949,294,4380_99798,Balbriggan,53886-00018-1,1,4380_7778208_1041101,4380_1691 -4380_77949,295,4380_99799,Balbriggan,53892-00019-1,1,4380_7778208_1041101,4380_1691 -4380_77954,291,4380_9980,Athboy,7648-00013-1,0,4380_7778208_1110105,4380_196 -4380_77949,291,4380_99801,Balbriggan,53895-00013-1,1,4380_7778208_1041101,4380_1691 -4380_77949,296,4380_99802,Balbriggan,53896-00021-1,1,4380_7778208_1041101,4380_1691 -4380_77949,285,4380_99809,Balbriggan,53915-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77954,292,4380_9981,Athboy,55560-00016-1,0,4380_7778208_1110102,4380_193 -4380_77949,286,4380_99810,Balbriggan,53913-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99811,Balbriggan,53919-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99812,Balbriggan,53917-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77949,289,4380_99813,Balbriggan,53911-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99814,Balbriggan,53916-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,291,4380_99815,Balbriggan,53909-00013-1,1,4380_7778208_1041101,4380_1692 -4380_77949,292,4380_99816,Balbriggan,53914-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99817,Balbriggan,53920-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99818,Balbriggan,53918-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99819,Balbriggan,53912-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77954,293,4380_9982,Athboy,55561-00017-1,0,4380_7778208_1110102,4380_193 -4380_77949,296,4380_99820,Balbriggan,53910-00021-1,1,4380_7778208_1041101,4380_1692 -4380_77949,285,4380_99826,Balbriggan,53933-00009-1,1,4380_7778208_1041101,4380_1690 -4380_77949,286,4380_99827,Balbriggan,53931-00010-1,1,4380_7778208_1041101,4380_1690 -4380_77949,288,4380_99828,Balbriggan,53935-00011-1,1,4380_7778208_1041101,4380_1690 -4380_77949,287,4380_99829,Balbriggan,53937-00012-1,1,4380_7778208_1041101,4380_1690 -4380_77954,294,4380_9983,Athboy,55562-00018-1,0,4380_7778208_1110102,4380_193 -4380_77949,289,4380_99830,Balbriggan,53939-00014-1,1,4380_7778208_1041101,4380_1690 -4380_77949,290,4380_99831,Balbriggan,53934-00015-1,1,4380_7778208_1041101,4380_1690 -4380_77949,292,4380_99832,Balbriggan,53932-00016-1,1,4380_7778208_1041101,4380_1690 -4380_77949,293,4380_99833,Balbriggan,53936-00017-1,1,4380_7778208_1041101,4380_1690 -4380_77949,294,4380_99834,Balbriggan,53938-00018-1,1,4380_7778208_1041101,4380_1690 -4380_77949,295,4380_99835,Balbriggan,53940-00019-1,1,4380_7778208_1041101,4380_1690 -4380_77954,295,4380_9984,Athboy,55563-00019-1,0,4380_7778208_1110102,4380_193 -4380_78127,285,4380_99842,Tyndall College,44554-00009-1,0,4380_7778208_180801,4380_1694 -4380_78127,286,4380_99843,Tyndall College,44560-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_99844,Tyndall College,44564-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_99845,Tyndall College,44556-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_99846,Tyndall College,44562-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_99847,Tyndall College,44555-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_99848,Tyndall College,44558-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_99849,Tyndall College,44561-00016-1,0,4380_7778208_180801,4380_1694 -4380_77954,296,4380_9985,Athboy,55652-00021-1,0,4380_7778208_1110105,4380_196 -4380_78127,293,4380_99850,Tyndall College,44557-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_99851,Tyndall College,44563-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_99852,Tyndall College,44565-00018-1,0,4380_7778208_180801,4380_1694 -4380_78127,296,4380_99853,Tyndall College,44559-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_99860,Tyndall College,44949-00009-1,0,4380_7778208_180802,4380_1694 -4380_78127,286,4380_99861,Tyndall College,44955-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_99862,Tyndall College,44951-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_99863,Tyndall College,44957-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_99864,Tyndall College,44953-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_99865,Tyndall College,44950-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_99866,Tyndall College,44947-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_99867,Tyndall College,44956-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_99868,Tyndall College,44958-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_99869,Tyndall College,44954-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_99870,Tyndall College,44952-00018-1,0,4380_7778208_180802,4380_1694 -4380_78127,296,4380_99871,Tyndall College,44948-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_99878,Tyndall College,44580-00009-1,0,4380_7778208_180801,4380_1694 -4380_78127,286,4380_99879,Tyndall College,44582-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_99880,Tyndall College,44584-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_99881,Tyndall College,44586-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_99882,Tyndall College,44578-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_99883,Tyndall College,44581-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_99884,Tyndall College,44588-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_99885,Tyndall College,44583-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_99886,Tyndall College,44587-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_99887,Tyndall College,44579-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_99888,Tyndall College,44585-00018-1,0,4380_7778208_180801,4380_1694 -4380_78127,296,4380_99889,Tyndall College,44589-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_99896,Tyndall College,44975-00009-1,0,4380_7778208_180802,4380_1694 -4380_78127,286,4380_99897,Tyndall College,44971-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_99898,Tyndall College,44981-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_99899,Tyndall College,44973-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_99900,Tyndall College,44977-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_99901,Tyndall College,44976-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_99902,Tyndall College,44979-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_99903,Tyndall College,44972-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_99904,Tyndall College,44974-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_99905,Tyndall College,44978-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_99906,Tyndall College,44982-00018-1,0,4380_7778208_180802,4380_1694 -4380_78127,296,4380_99907,Tyndall College,44980-00021-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_99914,Tyndall College,44610-00009-1,0,4380_7778208_180801,4380_1694 -4380_78127,286,4380_99915,Tyndall College,44606-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_99916,Tyndall College,44602-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_99917,Tyndall College,44604-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_99918,Tyndall College,44608-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_99919,Tyndall College,44611-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_99920,Tyndall College,44612-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_99921,Tyndall College,44607-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_99922,Tyndall College,44605-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_99923,Tyndall College,44609-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_99924,Tyndall College,44603-00018-1,0,4380_7778208_180801,4380_1694 -4380_78127,296,4380_99925,Tyndall College,44613-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_99927,Tyndall College,44614-00008-1,0,4380_7778208_180801,4380_1694 -4380_77954,285,4380_9993,Athboy,7282-00009-1,0,4380_7778208_1110101,4380_193 -4380_78127,285,4380_99934,Tyndall College,45000-00009-1,0,4380_7778208_180802,4380_1694 -4380_78127,286,4380_99935,Tyndall College,45002-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_99936,Tyndall College,45006-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_99937,Tyndall College,44996-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_99938,Tyndall College,44998-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_99939,Tyndall College,45001-00015-1,0,4380_7778208_180802,4380_1694 -4380_77954,286,4380_9994,Athboy,7306-00010-1,0,4380_7778208_1110101,4380_193 -4380_78127,291,4380_99940,Tyndall College,45004-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_99941,Tyndall College,45003-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_99942,Tyndall College,44997-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_99943,Tyndall College,44999-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_99944,Tyndall College,45007-00018-1,0,4380_7778208_180802,4380_1694 -4380_78127,296,4380_99945,Tyndall College,45005-00021-1,0,4380_7778208_180802,4380_1694 -4380_77954,297,4380_9995,Athboy,7450-00008-1,0,4380_7778208_1110102,4380_195 -4380_78127,285,4380_99951,Tyndall College,46278-00009-1,0,4380_7778208_180806,4380_1695 -4380_78127,286,4380_99952,Tyndall College,46280-00010-1,0,4380_7778208_180806,4380_1695 -4380_78127,287,4380_99953,Tyndall College,46286-00012-1,0,4380_7778208_180806,4380_1695 -4380_78127,288,4380_99954,Tyndall College,46284-00011-1,0,4380_7778208_180806,4380_1695 -4380_78127,289,4380_99955,Tyndall College,46282-00014-1,0,4380_7778208_180806,4380_1695 -4380_78127,290,4380_99956,Tyndall College,46279-00015-1,0,4380_7778208_180806,4380_1695 -4380_78127,292,4380_99957,Tyndall College,46281-00016-1,0,4380_7778208_180806,4380_1695 -4380_78127,293,4380_99958,Tyndall College,46285-00017-1,0,4380_7778208_180806,4380_1695 -4380_78127,295,4380_99959,Tyndall College,46283-00019-1,0,4380_7778208_180806,4380_1695 -4380_77954,288,4380_9996,Athboy,7322-00011-1,0,4380_7778208_1110101,4380_193 -4380_78127,294,4380_99960,Tyndall College,46287-00018-1,0,4380_7778208_180806,4380_1695 -4380_78127,297,4380_99962,Tyndall College,45008-00008-1,0,4380_7778208_180802,4380_1694 -4380_78127,285,4380_99969,Tyndall College,44636-00009-1,0,4380_7778208_180801,4380_1694 -4380_77954,287,4380_9997,Athboy,7338-00012-1,0,4380_7778208_1110101,4380_193 -4380_78127,286,4380_99970,Tyndall College,44634-00010-1,0,4380_7778208_180801,4380_1694 -4380_78127,287,4380_99971,Tyndall College,44628-00012-1,0,4380_7778208_180801,4380_1694 -4380_78127,288,4380_99972,Tyndall College,44630-00011-1,0,4380_7778208_180801,4380_1694 -4380_78127,289,4380_99973,Tyndall College,44632-00014-1,0,4380_7778208_180801,4380_1694 -4380_78127,290,4380_99974,Tyndall College,44637-00015-1,0,4380_7778208_180801,4380_1694 -4380_78127,291,4380_99975,Tyndall College,44638-00013-1,0,4380_7778208_180801,4380_1694 -4380_78127,292,4380_99976,Tyndall College,44635-00016-1,0,4380_7778208_180801,4380_1694 -4380_78127,293,4380_99977,Tyndall College,44631-00017-1,0,4380_7778208_180801,4380_1694 -4380_78127,295,4380_99978,Tyndall College,44633-00019-1,0,4380_7778208_180801,4380_1694 -4380_78127,294,4380_99979,Tyndall College,44629-00018-1,0,4380_7778208_180801,4380_1694 -4380_77954,289,4380_9998,Athboy,7266-00014-1,0,4380_7778208_1110101,4380_193 -4380_78127,296,4380_99980,Tyndall College,44639-00021-1,0,4380_7778208_180801,4380_1694 -4380_78127,297,4380_99982,Tyndall College,44640-00008-1,0,4380_7778208_180801,4380_1694 -4380_78127,285,4380_99989,Tyndall College,45010-00009-1,0,4380_7778208_180802,4380_1694 -4380_77954,290,4380_9999,Athboy,55521-00015-1,0,4380_7778208_1110101,4380_193 -4380_78127,286,4380_99990,Tyndall College,45014-00010-1,0,4380_7778208_180802,4380_1694 -4380_78127,287,4380_99991,Tyndall College,45012-00012-1,0,4380_7778208_180802,4380_1694 -4380_78127,288,4380_99992,Tyndall College,45016-00011-1,0,4380_7778208_180802,4380_1694 -4380_78127,289,4380_99993,Tyndall College,45018-00014-1,0,4380_7778208_180802,4380_1694 -4380_78127,290,4380_99994,Tyndall College,45011-00015-1,0,4380_7778208_180802,4380_1694 -4380_78127,291,4380_99995,Tyndall College,45020-00013-1,0,4380_7778208_180802,4380_1694 -4380_78127,292,4380_99996,Tyndall College,45015-00016-1,0,4380_7778208_180802,4380_1694 -4380_78127,293,4380_99997,Tyndall College,45017-00017-1,0,4380_7778208_180802,4380_1694 -4380_78127,295,4380_99998,Tyndall College,45019-00019-1,0,4380_7778208_180802,4380_1694 -4380_78127,294,4380_99999,Tyndall College,45013-00018-1,0,4380_7778208_180802,4380_1694 -4367_81485,315,4384_1000,Greystones,E125,1,4384_7778018_Txc6E0627AA-EDEB-4F64-8F7D-42DB33875C2B,4384_2 -4367_81485,278,4384_1003,Bray (Daly),E227,1,4384_7778018_Txc582AB7FC-C2A6-496F-B243-2F0683C264F8,4384_6 -4367_81485,319,4384_1006,Bray (Daly),E227,1,4384_7778018_Txc09847143-527A-4A57-B8BB-2FD8F97311AA,4384_6 -4367_81485,271,4384_1007,Bray (Daly),E227,1,4384_7778018_Txc521749FB-7E3D-4EEC-9495-5AA830A2AEE1,4384_6 -4367_81485,320,4384_1008,Bray (Daly),E227,1,4384_7778018_TxcEBC0ED83-0D57-4993-B10E-97086BBF91BD,4384_6 -4367_81485,23,4384_1009,Greystones,E111,1,4384_7778018_Txc07548974-B7F4-495B-B897-6AC3FCC49B7C,4384_1 -4367_81485,316,4384_1013,Greystones,E111,1,4384_7778018_Txc547D4E20-3AB3-4977-94BA-F7D38FCAB29F,4384_1 -4367_81485,138,4384_1014,Greystones,E111,1,4384_7778018_TxcEDA8D53E-62D9-4C3F-ACA9-7204AD1C2C7E,4384_1 -4367_81485,317,4384_1015,Greystones,E111,1,4384_7778018_Txc4122ADB7-2017-47A6-B4B8-3C02F8FC17E0,4384_1 -4367_81485,318,4384_1016,Greystones,E111,1,4384_7778018_TxcDF12D1BA-A364-4278-991F-65C278934A75,4384_1 -4367_81485,314,4384_1017,Bray (Daly),E250,1,4384_7778018_Txc7677B127-9BF6-48DB-AADE-688902B8AA8A,4384_7 -4367_81485,315,4384_1020,Bray (Daly),E250,1,4384_7778018_Txc50DDDF37-1B41-4824-99D1-4356F7059DC1,4384_7 -4367_81485,314,4384_1027,Bray (Daly),E251,1,4384_7778018_Txc426E9A84-D0F5-4F15-BE88-E3869B802898,4384_6 -4367_81485,315,4384_1031,Bray (Daly),E251,1,4384_7778018_TxcF5694543-4D9E-43FC-B386-DD1D49617075,4384_6 -4367_81485,23,4384_1032,Bray (Daly),E235,1,4384_7778018_Txc57E4CA98-6827-4187-B5C2-4300BBF062FD,4384_6 -4367_81485,327,4384_1036,Bray (Daly),E235,1,4384_7778018_Txc021A3890-8CD1-4E5A-B0D5-CF55119EFF09,4384_6 -4367_81485,138,4384_1037,Bray (Daly),E235,1,4384_7778018_Txc5265D586-90F5-4882-B7A1-3D9DB24B3834,4384_6 -4367_81485,317,4384_1038,Bray (Daly),E235,1,4384_7778018_Txc2727A117-0ADD-4D5B-9B42-095616352DBD,4384_6 -4367_81485,318,4384_1039,Bray (Daly),E235,1,4384_7778018_Txc58178C88-13D0-4479-BBD5-15138BC8C2D1,4384_6 -4367_81485,314,4384_104,Bray (Daly),E209,1,4384_7778018_TxcC26E0B40-A965-4A99-A105-F6974D47DB66,4384_6 -4367_81485,324,4384_1040,Bray (Daly),E235,1,4384_7778018_TxcF35FC157-6187-4058-BFA3-0F63153D6FF9,4384_32 -4367_81485,328,4384_1041,Bray (Daly),E235,1,4384_7778018_Txc0FF8FDEF-3E81-4FFA-B826-99F7C62C8810,4384_32 -4367_81485,325,4384_1042,Bray (Daly),E235,1,4384_7778018_TxcA8341F5B-0922-442D-A795-511D49AC0899,4384_45 -4367_81485,314,4384_1045,Greystones,E126,1,4384_7778018_TxcB452E16D-FC32-4345-A27D-0C32762F6DBA,4384_1 -4367_81485,315,4384_1046,Greystones,E126,1,4384_7778018_TxcC7FA8322-AA03-4E0D-9072-9CB3D191073F,4384_1 -4367_81485,278,4384_1047,Bray (Daly),E228,1,4384_7778018_TxcDA5C75DF-4ACE-4F05-822E-0F3BEFA2EC2E,4384_7 -4367_81485,23,4384_105,Bray (Daly),E204,1,4384_7778018_Txc886A84F4-81B6-4A42-BF38-E549ABB5E2E9,4384_7 -4367_81485,319,4384_1050,Bray (Daly),E228,1,4384_7778018_Txc0FDE0CE0-2D1E-4FCD-A581-D8F1D75F5903,4384_7 -4367_81485,271,4384_1051,Bray (Daly),E228,1,4384_7778018_Txc1D37BF9B-7645-49D2-92E0-78C7AB903305,4384_7 -4367_81485,320,4384_1052,Bray (Daly),E228,1,4384_7778018_Txc9B7EC910-72F8-4D00-9CA1-6C1BF1CA1015,4384_7 -4367_81485,23,4384_1056,Bray (Daly),E236,1,4384_7778018_Txc14439C5A-7A3B-4251-AFB4-1216431D49EA,4384_7 -4367_81485,327,4384_1060,Bray (Daly),E236,1,4384_7778018_Txc6CE59AD3-CC21-4B42-B030-73493B1E491B,4384_7 -4367_81485,138,4384_1061,Bray (Daly),E236,1,4384_7778018_Txc0A705472-7038-4947-8832-07DAA44A6A06,4384_7 -4367_81485,317,4384_1062,Bray (Daly),E236,1,4384_7778018_TxcB1507855-0082-4F6A-A30C-6367F16463FA,4384_7 -4367_81485,318,4384_1063,Bray (Daly),E236,1,4384_7778018_Txc89974535-1907-4293-92FE-5717AC7C67AB,4384_7 -4367_81485,324,4384_1064,Bray (Daly),E236,1,4384_7778018_TxcABE59605-24AD-4924-A698-C0B2C83FC829,4384_29 -4367_81485,328,4384_1065,Bray (Daly),E236,1,4384_7778018_TxcED0FACA6-7D36-4D33-A1BB-9369FBF45B5C,4384_29 -4367_81485,325,4384_1066,Bray (Daly),E236,1,4384_7778018_TxcEF0C08F8-0E5B-40C8-BBC8-781B4B6F0483,4384_35 -4367_81485,314,4384_1067,Bray (Daly),E252,1,4384_7778018_Txc66D5B49B-05AD-4A5F-8EE7-3D733C1CFE8F,4384_6 -4367_81485,315,4384_1071,Bray (Daly),E252,1,4384_7778018_Txc2200B631-0798-4B3E-9F55-2C76567887CB,4384_6 -4367_81485,278,4384_1077,Greystones,E129,1,4384_7778018_TxcD47D296D-019A-4362-8D5B-CF32925CD7F6,4384_2 -4367_81485,315,4384_108,Bray (Daly),E209,1,4384_7778018_Txc5629441E-FB9D-4678-9C8C-B1F83A63907E,4384_6 -4367_81485,319,4384_1080,Greystones,E129,1,4384_7778018_TxcD02E6F49-CEDA-4232-9378-E1B861B4F149,4384_2 -4367_81485,271,4384_1081,Greystones,E129,1,4384_7778018_Txc97D58857-3E77-47B8-9EAB-B92E5A325807,4384_2 -4367_81485,320,4384_1082,Greystones,E129,1,4384_7778018_Txc5C15C74F-A39B-4093-9560-B30F4A03DDCD,4384_2 -4367_81485,314,4384_1083,Bray (Daly),E253,1,4384_7778018_TxcCD34C325-3666-4ADE-BBBE-8DA26C6744D1,4384_7 -4367_81485,315,4384_1086,Bray (Daly),E253,1,4384_7778018_Txc746C9A2B-B69B-4B10-B048-3644AE501964,4384_7 -4367_81485,23,4384_1087,Greystones,E112,1,4384_7778018_TxcF0053AEA-E112-43C0-9D52-A5945984F94C,4384_2 -4367_81485,316,4384_109,Bray (Daly),E204,1,4384_7778018_Txc30947083-D4FC-420C-BA4E-45D44356537E,4384_7 -4367_81485,327,4384_1091,Greystones,E112,1,4384_7778018_Txc5F956D95-80DA-46BD-97A6-44AE45FDA532,4384_2 -4367_81485,138,4384_1092,Greystones,E112,1,4384_7778018_TxcBE99095D-1938-4D55-AE79-177415D3A007,4384_2 -4367_81485,317,4384_1093,Greystones,E112,1,4384_7778018_Txc7B077B9B-F15A-47A2-A324-33B7FF75A8A4,4384_2 -4367_81485,318,4384_1094,Greystones,E112,1,4384_7778018_Txc2431206A-527A-4EEA-9598-C8ACF44CDC82,4384_2 -4367_81485,324,4384_1095,Greystones,E112,1,4384_7778018_Txc3571088A-2EC7-457D-BAC4-4BDD43DACCCF,4384_26 -4367_81485,328,4384_1096,Greystones,E112,1,4384_7778018_TxcD815669A-9EE0-497A-95D7-10DED7FB92A8,4384_26 -4367_81485,325,4384_1097,Greystones,E112,1,4384_7778018_TxcEE52EE7F-EB23-4862-99CD-0B3257BE8BE4,4384_38 -4367_81485,138,4384_110,Bray (Daly),E204,1,4384_7778018_TxcDEF9A3DB-D98A-45E8-981E-E6B9422F9958,4384_7 -4367_81485,314,4384_1102,Greystones,E127,1,4384_7778018_TxcF2C2A86E-1C38-4C5A-9E43-956C329D8DB9,4384_2 -4367_81485,315,4384_1105,Greystones,E127,1,4384_7778018_TxcCD80A935-6519-4F30-A825-135A90B38DA4,4384_2 -4367_81485,317,4384_111,Bray (Daly),E204,1,4384_7778018_TxcE247F652-2E26-4156-97C6-BE29124E5FDB,4384_7 -4367_81485,314,4384_1110,Bray (Daly),E254,1,4384_7778018_Txc81EB1797-21EE-4742-96A7-B42F0496550C,4384_7 -4367_81485,23,4384_1111,Bray (Daly),E237,1,4384_7778018_TxcD6A11A47-BF88-40A5-91B3-04069ABC9B3A,4384_8 -4367_81485,315,4384_1118,Bray (Daly),E254,1,4384_7778018_Txc88251272-E3BC-405A-AE85-B88BA0097FCE,4384_7 -4367_81485,327,4384_1119,Bray (Daly),E237,1,4384_7778018_TxcE6106FDF-6F33-45E2-9F49-1B5EB2B2132A,4384_8 -4367_81485,318,4384_112,Bray (Daly),E204,1,4384_7778018_Txc5D7788E3-DF07-4FB9-9B4C-CD4CAB31BE7C,4384_7 -4367_81485,138,4384_1120,Bray (Daly),E237,1,4384_7778018_Txc701EB088-C775-40B5-A386-79011A6612FB,4384_8 -4367_81485,317,4384_1121,Bray (Daly),E237,1,4384_7778018_TxcDC8D90D9-A489-4B44-B65C-C248152B5774,4384_8 -4367_81485,318,4384_1122,Bray (Daly),E237,1,4384_7778018_TxcB513F996-03D0-4C8B-AD99-5C79EC1C75F6,4384_8 -4367_81485,324,4384_1123,Bray (Daly),E237,1,4384_7778018_TxcCD04634A-CD28-452C-B0AF-072EB1AA92A3,4384_35 -4367_81485,328,4384_1124,Bray (Daly),E237,1,4384_7778018_TxcE34FCEFA-7A3A-4F5A-9666-C3ED1AB3C3B0,4384_35 -4367_81485,325,4384_1125,Bray (Daly),E237,1,4384_7778018_Txc4195E60B-2FFD-42E5-AB51-935CA4910EE9,4384_35 -4367_81485,278,4384_1126,Bray (Daly),E230,1,4384_7778018_TxcC20BD63B-FE2B-42E9-A20D-3EF79781B213,4384_7 -4367_81485,319,4384_1129,Bray (Daly),E230,1,4384_7778018_Txc8044F17F-DD12-42AA-A141-C42EBE370265,4384_7 -4367_81485,271,4384_1130,Bray (Daly),E230,1,4384_7778018_Txc8B60BA8E-28E8-4C4D-8876-696D1F421930,4384_7 -4367_81485,320,4384_1131,Bray (Daly),E230,1,4384_7778018_Txc9E70D35C-5910-4318-A143-BD00D924E2BD,4384_7 -4367_81485,314,4384_1145,Bray (Daly),E255,1,4384_7778018_TxcCF007879-3DBE-45A3-9743-85A23D428BA5,4384_6 -4367_81485,23,4384_1146,Bray (Daly),E238,1,4384_7778018_Txc9880F183-B7EE-4C69-B63D-DD8ADCD8CA69,4384_9 -4367_81485,314,4384_115,Bray (Daly),E210,1,4384_7778018_TxcC49DBE28-6200-4917-A321-EFD1E53C1AD1,4384_7 -4367_81485,315,4384_1152,Bray (Daly),E255,1,4384_7778018_Txc04E81660-56F8-4ED7-8CD3-DB4B6156693F,4384_6 -4367_81485,327,4384_1153,Bray (Daly),E238,1,4384_7778018_Txc112977CD-63B3-4C6E-AAB9-A51813066FCE,4384_9 -4367_81485,138,4384_1154,Bray (Daly),E238,1,4384_7778018_TxcAC92115B-D9B7-4D06-A1BA-AE503931C564,4384_9 -4367_81485,317,4384_1155,Bray (Daly),E238,1,4384_7778018_TxcD27BA4C3-DD59-458A-BCBD-F19C9CCCA730,4384_9 -4367_81485,318,4384_1156,Bray (Daly),E238,1,4384_7778018_TxcD9E6F1E3-D27D-406F-8F0F-C614F8F96775,4384_9 -4367_81485,324,4384_1157,Bray (Daly),E238,1,4384_7778018_Txc004C6D15-5E2A-4394-95D8-B01E048193DB,4384_45 -4367_81485,328,4384_1158,Bray (Daly),E238,1,4384_7778018_Txc41454E1E-8F1C-47A6-977D-BB11FF3A7018,4384_45 -4367_81485,325,4384_1159,Bray (Daly),E238,1,4384_7778018_Txc4C9D4347-67B2-4E0B-B6EB-2D5D4C998D08,4384_45 -4367_81485,315,4384_116,Bray (Daly),E210,1,4384_7778018_TxcBA39F93C-5818-4B5F-BC0A-853FFEE7D7B8,4384_7 -4367_81485,278,4384_1160,Greystones,E131,1,4384_7778018_Txc2ABE0BBB-3C6F-4FC5-A2B1-070627B1C9D0,4384_2 -4367_81485,319,4384_1163,Greystones,E131,1,4384_7778018_TxcB0476E61-8859-45B5-9058-CC6CBB82E7C3,4384_2 -4367_81485,271,4384_1164,Greystones,E131,1,4384_7778018_TxcB510E14F-9A8A-4656-9DCE-B897D45B8430,4384_2 -4367_81485,320,4384_1165,Greystones,E131,1,4384_7778018_TxcDA313981-3768-4CAE-85CF-3521E61D7706,4384_2 -4367_81485,324,4384_1169,Bray (Daly),E270,1,4384_7778018_Txc2DF21A6A-FA0B-484A-BD80-8618E0ED18B4,4384_43 -4367_81485,325,4384_1170,Bray (Daly),E270,1,4384_7778018_TxcBA28D57A-B7F0-4873-A3F2-3D259067DEAF,4384_43 -4367_81485,23,4384_1173,Bray (Daly),E239,1,4384_7778018_Txc44FEE709-A6CC-4A45-898C-188A7020C08A,4384_7 -4367_81485,327,4384_1178,Bray (Daly),E239,1,4384_7778018_TxcD77BBF91-5826-4221-AD58-30C533F70AF4,4384_7 -4367_81485,138,4384_1179,Bray (Daly),E239,1,4384_7778018_Txc4D83C792-EA38-45FF-B7BD-26E2829CA9F1,4384_7 -4367_81485,317,4384_1180,Bray (Daly),E239,1,4384_7778018_Txc7A1DEA71-B5EC-4FF8-A9C6-4119B1A7AB4A,4384_7 -4367_81485,318,4384_1181,Bray (Daly),E239,1,4384_7778018_TxcF888DF89-0BCF-426A-B49E-FA8A71650276,4384_7 -4367_81485,324,4384_1182,Bray (Daly),E239,1,4384_7778018_TxcC73CBD32-3272-4791-9BE2-3A737F0E42C8,4384_29 -4367_81485,328,4384_1183,Bray (Daly),E239,1,4384_7778018_Txc6B7C75A0-EDE9-4C50-9DA3-8641BB86ACBC,4384_29 -4367_81485,325,4384_1184,Bray (Daly),E239,1,4384_7778018_Txc0535492C-1F6F-4838-9FD0-B30C01672899,4384_29 -4367_81485,314,4384_1185,Greystones,E128,1,4384_7778018_Txc71458C1B-EAA1-43BD-BD3E-BA14FD45246A,4384_1 -4367_81485,315,4384_1186,Greystones,E128,1,4384_7778018_Txc02608894-42A6-49E6-B04F-96DAB0D43DA8,4384_1 -4367_81485,278,4384_1188,Bray (Daly),E232,1,4384_7778018_Txc019B4F15-1A7E-47D0-8A2C-233F08B94FD6,4384_7 -4367_81485,319,4384_1191,Bray (Daly),E232,1,4384_7778018_Txc74BD94E2-5532-4167-B592-BF3BBDBEC72A,4384_7 -4367_81485,271,4384_1192,Bray (Daly),E232,1,4384_7778018_Txc8D554165-68C5-44DA-AC6A-B20DFE658231,4384_7 -4367_81485,320,4384_1193,Bray (Daly),E232,1,4384_7778018_Txc09AD5BD6-95F4-4A74-9262-1C4F5675974A,4384_7 -4367_81485,324,4384_1195,Bray (Daly),E272,1,4384_7778018_Txc53AB6F60-57EF-4CEB-9406-C5B0796D2242,4384_24 -4367_81485,325,4384_1196,Bray (Daly),E272,1,4384_7778018_Txc38D2D84B-6BA7-48AA-A17E-EF35E58E3DB4,4384_24 -4367_81485,23,4384_1197,Greystones,E113,1,4384_7778018_TxcF4E61CC6-CF16-433A-8392-9BD023FCF360,4384_2 -4367_81485,314,4384_1198,Bray (Daly),E256,1,4384_7778018_TxcC2A2CF9C-AA52-4B52-9F2A-50B28C666080,4384_6 -4367_81485,314,4384_12,Bray (Daly),E200,1,4384_7778018_Txc2F8C28C6-20DE-4F0F-9E05-C83088F93AB6,4384_5 -4367_81485,23,4384_120,Bray (Daly),E205,1,4384_7778018_Txc0A75D94D-80C2-453E-A89F-F57AB27C2197,4384_6 -4367_81485,327,4384_1204,Greystones,E113,1,4384_7778018_Txc79A1ED76-15C9-4708-8F8B-C5039EDD7FC9,4384_2 -4367_81485,315,4384_1205,Bray (Daly),E256,1,4384_7778018_Txc1BB45564-5470-4E66-9C81-FC18EF73D483,4384_6 -4367_81485,138,4384_1206,Greystones,E113,1,4384_7778018_TxcB640C5AF-69C7-44D7-A663-872D59582104,4384_2 -4367_81485,317,4384_1207,Greystones,E113,1,4384_7778018_Txc1B3FDE37-A93F-4F81-8866-D718C8B6B89F,4384_2 -4367_81485,318,4384_1208,Greystones,E113,1,4384_7778018_Txc6176E585-78D9-4457-9C3A-77D1F238EAE4,4384_2 -4367_81485,324,4384_1209,Greystones,E113,1,4384_7778018_TxcEBDFD1FF-98F3-45DA-9F0C-5373A2E29042,4384_26 -4367_81485,328,4384_1210,Greystones,E113,1,4384_7778018_TxcD5B8934D-C010-4803-91B6-010C436D86B9,4384_26 -4367_81485,325,4384_1211,Greystones,E113,1,4384_7778018_Txc38EEF45E-448E-4B8E-A63F-55092C65EB20,4384_38 -4367_81485,278,4384_1218,Greystones,E133,1,4384_7778018_TxcBCB0B32C-1380-4711-BBBF-F63EA8A9C8FE,4384_2 -4367_81485,319,4384_1221,Greystones,E133,1,4384_7778018_Txc20095E8D-4112-48B9-B275-F93EB021F133,4384_2 -4367_81485,271,4384_1222,Greystones,E133,1,4384_7778018_TxcE250089C-AAB9-4270-8749-387BC6CCF0DF,4384_2 -4367_81485,320,4384_1223,Greystones,E133,1,4384_7778018_TxcA41AAE53-7949-45DB-A139-902EE9090BD1,4384_2 -4367_81485,314,4384_1224,Bray (Daly),E257,1,4384_7778018_Txc0A77D240-2A75-4233-A5DE-CAA526C418D0,4384_7 -4367_81485,23,4384_1225,Bray (Daly),E240,1,4384_7778018_TxcAAA6DD3A-9A9C-4392-BD6E-AC9AEF63644F,4384_8 -4367_81485,316,4384_123,Bray (Daly),E205,1,4384_7778018_TxcD897CC67-AF5D-4D53-80A9-12E4C13C3C8E,4384_6 -4367_81485,315,4384_1230,Bray (Daly),E257,1,4384_7778018_TxcF304F8AB-F8AC-4E19-BFCA-44C27FBEEDAC,4384_7 -4367_81485,316,4384_1231,Bray (Daly),E240,1,4384_7778018_Txc83A21F2B-7765-421D-9125-935CFD20E94F,4384_8 -4367_81485,138,4384_1232,Bray (Daly),E240,1,4384_7778018_Txc3181299F-9144-4B53-9BFF-803C41801712,4384_8 -4367_81485,317,4384_1233,Bray (Daly),E240,1,4384_7778018_TxcDA5BB731-6077-4DD4-AF7E-4B7A8A77354E,4384_8 -4367_81485,318,4384_1234,Bray (Daly),E240,1,4384_7778018_TxcC45793C7-3760-4F0E-B572-BEBCEA0710EA,4384_8 -4367_81485,329,4384_1239,Greystones,E129,1,4384_7778018_TxcB67F1000-4EDF-4CCE-89D2-47F075C74AE8,4384_2 -4367_81485,138,4384_124,Bray (Daly),E205,1,4384_7778018_TxcD44C0C8E-C78F-4F23-9D78-D5E2389F4768,4384_6 -4367_81485,23,4384_1240,Bray (Daly),E241,1,4384_7778018_TxcD257F3F5-C715-4D1A-A39F-9AB0F090CA5D,4384_6 -4367_81485,330,4384_1245,Greystones,E129,1,4384_7778018_Txc51FB2C20-355E-4096-ADEF-0AFD139C3BCA,4384_26 -4367_81485,315,4384_1246,Greystones,E129,1,4384_7778018_Txc118AD583-9A1B-49B5-B298-03B190CD7A6C,4384_2 -4367_81485,316,4384_1247,Bray (Daly),E241,1,4384_7778018_TxcB78CDC47-E533-4178-BC3C-AA165A3D3734,4384_6 -4367_81485,138,4384_1248,Bray (Daly),E241,1,4384_7778018_Txc4D13E289-2EF8-4D9C-9E42-44EB3314A469,4384_6 -4367_81485,317,4384_1249,Bray (Daly),E241,1,4384_7778018_Txc14AA9A7B-3C05-4099-9FF6-AD1B21D60EA0,4384_6 -4367_81485,317,4384_125,Bray (Daly),E205,1,4384_7778018_Txc7E6F9C53-533B-432C-9B2B-F8A515508C20,4384_6 -4367_81485,318,4384_1250,Bray (Daly),E241,1,4384_7778018_Txc5719A084-3947-47B6-98C4-08DBEC2ADE1C,4384_6 -4367_81485,278,4384_1252,Bray (Daly),E234,1,4384_7778018_Txc266AC8EF-CEEA-4844-BDF0-30FCED875427,4384_7 -4367_81485,319,4384_1255,Bray (Daly),E234,1,4384_7778018_Txc926F911B-225D-46C9-A05E-4E0A474004F7,4384_7 -4367_81485,271,4384_1256,Bray (Daly),E234,1,4384_7778018_TxcA0C9667E-92B2-4C42-BDDC-0F44F8889536,4384_7 -4367_81485,320,4384_1257,Bray (Daly),E234,1,4384_7778018_Txc5E7453AB-11F5-4A79-A2A2-AB4C592AD7BE,4384_7 -4367_81485,318,4384_126,Bray (Daly),E205,1,4384_7778018_Txc3F58B3E7-9620-4C3E-978A-79C94F010003,4384_6 -4367_81485,329,4384_1261,Bray (Daly),E258,1,4384_7778018_Txc3E4A879F-BAFD-4708-BCCB-F461E2A6D9AC,4384_7 -4367_81485,23,4384_1262,Bray (Daly),E242,1,4384_7778018_TxcAB722F71-3865-48AE-962D-5B67FA4EDED6,4384_8 -4367_81485,330,4384_1267,Bray (Daly),E258,1,4384_7778018_Txc273F75B8-C7CC-4DA2-8B96-C0F490B5B8D0,4384_29 -4367_81485,315,4384_1268,Bray (Daly),E258,1,4384_7778018_TxcDF40130D-3EEC-4B77-912E-87574DEB426F,4384_7 -4367_81485,316,4384_1269,Bray (Daly),E242,1,4384_7778018_TxcD678AFB4-F99D-4F79-8D7E-B2AAD3A24F7D,4384_8 -4367_81485,314,4384_127,Bray (Daly),E211,1,4384_7778018_TxcDDF8CC50-4745-4F56-8D07-975888196A30,4384_6 -4367_81485,138,4384_1270,Bray (Daly),E242,1,4384_7778018_Txc5AE5A7FB-241F-4AA5-BC5B-21C271C936EA,4384_14 -4367_81485,317,4384_1271,Bray (Daly),E242,1,4384_7778018_Txc125C0DE2-92CA-4308-9928-E9FA682091A1,4384_8 -4367_81485,318,4384_1272,Bray (Daly),E242,1,4384_7778018_Txc54ECA2BA-99E3-42A3-B8A1-64B5A9E946F1,4384_8 -4367_81485,278,4384_1274,Greystones,E135,1,4384_7778018_TxcA8716E7C-5A5C-455C-AE87-46A3F8D9FEB3,4384_2 -4367_81485,319,4384_1277,Greystones,E135,1,4384_7778018_TxcD9AF938E-AD53-4DF4-A08B-B121A257D224,4384_2 -4367_81485,271,4384_1278,Greystones,E135,1,4384_7778018_Txc460EA447-C92B-433A-B08B-966BDCC44F09,4384_2 -4367_81485,320,4384_1279,Greystones,E135,1,4384_7778018_Txc6FD6F331-E406-484D-A3CF-AC0D67F8B923,4384_2 -4367_81485,315,4384_128,Bray (Daly),E211,1,4384_7778018_Txc169512BC-F47E-4141-AD3C-0A2FBE9D4317,4384_6 -4367_81485,329,4384_1280,Greystones,E130,1,4384_7778018_Txc71AF44F8-DBFC-44C2-AC0E-B6C07DB1C3D0,4384_2 -4367_81485,23,4384_1281,Greystones,E114,1,4384_7778018_TxcB598296C-3F86-4B81-B2A2-C7D46EFA75A1,4384_3 -4367_81485,330,4384_1290,Greystones,E130,1,4384_7778018_Txc0425FC9E-7D19-4B42-BA70-E3FBCDD7E536,4384_41 -4367_81485,315,4384_1291,Greystones,E130,1,4384_7778018_Txc7A129851-47B2-4AC8-B2C5-EB41DDC39C78,4384_2 -4367_81485,316,4384_1292,Greystones,E114,1,4384_7778018_TxcF21F5BF0-933C-4EF2-969D-0B38192B4ACF,4384_3 -4367_81485,138,4384_1293,Greystones,E114,1,4384_7778018_Txc232CF2A7-D2F7-47C3-A9E4-88EB0741A780,4384_3 -4367_81485,317,4384_1294,Greystones,E114,1,4384_7778018_TxcB6126E13-66E2-4F46-810C-AB743586BA61,4384_3 -4367_81485,318,4384_1295,Greystones,E114,1,4384_7778018_Txc85E8E933-3062-418B-99A9-ABE21AFC561A,4384_3 -4367_81485,315,4384_13,Bray (Daly),E200,1,4384_7778018_Txc0B138BB4-E642-4352-98E5-DA255645E755,4384_5 -4367_81485,329,4384_1303,Bray (Daly),E259,1,4384_7778018_TxcCED3B103-07C9-4DB8-B1C5-650E73987913,4384_7 -4367_81485,23,4384_1304,Bray (Daly),E243,1,4384_7778018_TxcA93A25B2-71F2-4969-AC51-573E1E713AC8,4384_8 -4367_81485,330,4384_1314,Bray (Daly),E259,1,4384_7778018_TxcA6EFE602-AE30-4C50-B148-B8B0414567D6,4384_39 -4367_81485,315,4384_1315,Bray (Daly),E259,1,4384_7778018_Txc651BAAC7-F343-439E-A356-A7C3E7E79012,4384_7 -4367_81485,316,4384_1316,Bray (Daly),E243,1,4384_7778018_Txc1436EB3E-EC6F-41C1-BA4C-7832DC927E63,4384_8 -4367_81485,138,4384_1317,Dublin Connolly,E243,1,4384_7778018_Txc625F9ACB-AA71-4A82-ABC7-429A022D8E6A,4384_11 -4367_81485,317,4384_1318,Bray (Daly),E243,1,4384_7778018_Txc6CE42CF4-2957-4582-85C2-30967DB2298C,4384_8 -4367_81485,331,4384_1319,Bray (Daly),E243,1,4384_7778018_Txc2B8E84C5-1D37-42D0-9EE1-C28A50EF531B,4384_8 -4367_81485,332,4384_1320,Dublin Connolly,E243,1,4384_7778018_Txc54B09AD1-AE2E-444B-AE41-A063A7A00255,4384_11 -4367_81485,278,4384_1321,Bray (Daly),E236,1,4384_7778018_TxcCBE2C5E2-BF17-49F1-89A2-00B405C5DC80,4384_7 -4367_81485,319,4384_1324,Bray (Daly),E236,1,4384_7778018_Txc3C2C8DC2-96DD-4549-A5FD-6AD77598001E,4384_7 -4367_81485,271,4384_1325,Bray (Daly),E236,1,4384_7778018_Txc280932A9-5308-49AF-B5EC-30FF9BD87CD7,4384_7 -4367_81485,320,4384_1326,Bray (Daly),E236,1,4384_7778018_Txc8938AB0E-F24F-4A74-BE11-86938D9BF20A,4384_7 -4367_81485,314,4384_133,Greystones,E106,1,4384_7778018_Txc57BBAE65-E298-485E-832C-DCF2811023FB,4384_1 -4367_81485,329,4384_1331,Greystones,E131,1,4384_7778018_TxcA8222EFE-A1F6-4162-B0BB-39494B71EA7D,4384_2 -4367_81485,23,4384_1332,Bray (Daly),E244,1,4384_7778018_TxcCEEF0CD2-0634-4064-B269-87DECCC2BC2C,4384_6 -4367_81485,315,4384_134,Greystones,E106,1,4384_7778018_TxcADA72227-B933-4CBF-AE33-B8A45D0A5ED4,4384_1 -4367_81485,330,4384_1342,Greystones,E131,1,4384_7778018_Txc2CCD4E09-1EE3-4192-9C1C-2980A7917B41,4384_41 -4367_81485,315,4384_1343,Greystones,E131,1,4384_7778018_TxcDCCC6318-A85E-4632-B71F-CEF081AD31A7,4384_2 -4367_81485,316,4384_1344,Bray (Daly),E244,1,4384_7778018_Txc28ED9534-6C01-4443-80FE-C589AAB798F6,4384_6 -4367_81485,317,4384_1345,Bray (Daly),E244,1,4384_7778018_TxcD1779566-1D8B-4CD5-B1B6-84B81CFECC10,4384_6 -4367_81485,331,4384_1346,Bray (Daly),E244,1,4384_7778018_Txc604EF3DB-177E-4396-9206-7F3C5C3E2746,4384_6 -4367_81485,278,4384_1347,Greystones,E137,1,4384_7778018_TxcC3F1E750-4138-49A2-8A78-07D8A027E87B,4384_2 -4367_81485,319,4384_1350,Greystones,E137,1,4384_7778018_TxcFB4CFEE5-6F35-4E5B-A533-868755502B87,4384_2 -4367_81485,271,4384_1351,Greystones,E137,1,4384_7778018_Txc08E758F5-9DAC-432C-8228-FB27EBC25C72,4384_2 -4367_81485,320,4384_1352,Greystones,E137,1,4384_7778018_Txc0DD1C7A7-2635-41DF-94B4-85341AB1BB38,4384_2 -4367_81485,329,4384_1356,Bray (Daly),E260,1,4384_7778018_Txc089FE092-4261-4760-8BA7-2503D2069455,4384_7 -4367_81485,23,4384_1357,Bray (Daly),E245,1,4384_7778018_TxcEC29E7D3-464F-4FF1-AB72-350339BA08E8,4384_8 -4367_81485,23,4384_136,Bray (Daly),E206,1,4384_7778018_TxcBC1B1064-80A4-45CA-BB83-B40310A27465,4384_7 -4367_81485,330,4384_1367,Bray (Daly),E260,1,4384_7778018_Txc7E698C87-8966-40BE-AD31-9D96457C857B,4384_42 -4367_81485,315,4384_1368,Bray (Daly),E260,1,4384_7778018_TxcF677314F-CC93-49C0-B697-970A28BC9FD1,4384_7 -4367_81485,316,4384_1369,Bray (Daly),E245,1,4384_7778018_Txc5920115B-08B7-4681-A2DF-19F89F16B225,4384_8 -4367_81485,317,4384_1370,Bray (Daly),E245,1,4384_7778018_TxcC7FB07A8-BC9B-4792-89D8-AA6A5F449D44,4384_8 -4367_81485,331,4384_1371,Bray (Daly),E245,1,4384_7778018_Txc9CC40294-0FA3-4007-9A9F-D78480092F65,4384_8 -4367_81485,278,4384_1373,Bray (Daly),E238,1,4384_7778018_TxcAB5C4EBD-C4DC-48AA-9AE6-4C76763302EA,4384_7 -4367_81485,319,4384_1376,Bray (Daly),E238,1,4384_7778018_TxcFA32A9C9-F16C-4FBF-976C-A5526042BC2E,4384_7 -4367_81485,271,4384_1377,Bray (Daly),E238,1,4384_7778018_Txc9E59CF51-9AEF-4C75-88D1-10FE7E1BA67B,4384_7 -4367_81485,320,4384_1378,Bray (Daly),E238,1,4384_7778018_Txc3B2E700C-E100-468F-8918-5C5FAC25C67E,4384_7 -4367_81485,23,4384_1379,Greystones,E115,1,4384_7778018_Txc5B0FE6BD-D48B-477D-B524-2D36728D4B78,4384_2 -4367_81485,316,4384_1383,Greystones,E115,1,4384_7778018_TxcB4F4BEF9-BF83-4728-8961-49F4D5E3E864,4384_2 -4367_81485,317,4384_1384,Greystones,E115,1,4384_7778018_TxcC7D8701D-E7A9-4374-A2B7-E4396DD0956A,4384_2 -4367_81485,331,4384_1385,Greystones,E115,1,4384_7778018_Txc058F1CE0-4A76-4C94-980A-7F01C20D3D06,4384_2 -4367_81485,314,4384_1386,Greystones,E132,1,4384_7778018_Txc9765C43E-1464-4029-827D-E7E3EDF02C6D,4384_2 -4367_81485,316,4384_139,Bray (Daly),E206,1,4384_7778018_Txc477E598F-FBC5-404C-8AB7-3A6DE921FBB1,4384_7 -4367_81485,330,4384_1394,Bray (Daly),E270,1,4384_7778018_Txc7FBADF6C-BBBF-42D6-B5E3-CE439EE9C003,4384_24 -4367_81485,315,4384_1395,Greystones,E132,1,4384_7778018_Txc0F187B0B-EF08-45E6-A8AA-B789CC476476,4384_2 -4367_81485,138,4384_140,Bray (Daly),E206,1,4384_7778018_Txc279DC267-BC41-463E-9E2D-BFC3947ACEFB,4384_7 -4367_81485,278,4384_1406,Greystones,E139,1,4384_7778018_TxcC2A29B67-6822-4E55-8E58-F618C93D3184,4384_2 -4367_81485,319,4384_1409,Greystones,E139,1,4384_7778018_Txc92D13351-10ED-44A2-943E-1B6F1C77C212,4384_2 -4367_81485,317,4384_141,Bray (Daly),E206,1,4384_7778018_Txc7EE1FDAF-8D66-4116-B88F-708CD9CCDFBE,4384_7 -4367_81485,271,4384_1410,Greystones,E139,1,4384_7778018_Txc7DD89C92-ADDD-481A-BD42-14DA88890724,4384_2 -4367_81485,320,4384_1411,Greystones,E139,1,4384_7778018_TxcC670A801-2E2E-45D9-BCF3-EF289A7839BE,4384_2 -4367_81485,314,4384_1412,Bray (Daly),E261,1,4384_7778018_Txc2EF7C0CE-847A-4FA2-BC4F-7325FEA72416,4384_7 -4367_81485,23,4384_1413,Bray (Daly),E246,1,4384_7778018_TxcCF624183-AA6E-4222-B66D-E3B9CE895D06,4384_8 -4367_81485,318,4384_142,Bray (Daly),E206,1,4384_7778018_Txc8CD66224-D3F9-40D7-ABAF-A456E229DA14,4384_7 -4367_81485,315,4384_1420,Bray (Daly),E261,1,4384_7778018_Txc3AC5D3B6-9B90-4AE7-BDC3-C93626F42FB1,4384_7 -4367_81485,316,4384_1421,Bray (Daly),E246,1,4384_7778018_Txc6F6FA3DD-ABB5-48CF-807A-903C261B6187,4384_8 -4367_81485,317,4384_1422,Bray (Daly),E246,1,4384_7778018_Txc8DDA7F28-748A-4CC9-879C-1EF94E8873A4,4384_8 -4367_81485,331,4384_1423,Bray (Daly),E246,1,4384_7778018_Txc773164BA-8A5A-4882-B0BB-89D120668A49,4384_8 -4367_81485,23,4384_1430,Greystones,E116,1,4384_7778018_TxcB39FBADD-EC99-4334-ACF9-D96A0F512DF3,4384_2 -4367_81485,314,4384_1431,Bray (Daly),E262,1,4384_7778018_Txc560EE4DC-70F7-43FE-A158-495DCC34779C,4384_6 -4367_81485,316,4384_1438,Greystones,E116,1,4384_7778018_Txc1775CFE4-BC3B-4095-B660-FAD598C8D618,4384_2 -4367_81485,315,4384_1439,Bray (Daly),E262,1,4384_7778018_Txc10898D2B-99E7-4AC8-B347-232D26B34809,4384_6 -4367_81485,317,4384_1440,Greystones,E116,1,4384_7778018_Txc9B7C12A0-A1AE-411D-A579-A674BC11598F,4384_2 -4367_81485,331,4384_1441,Greystones,E116,1,4384_7778018_Txc3C1768A1-A385-4195-8DB1-D691FD3C8FEC,4384_2 -4367_81485,278,4384_1442,Bray (Daly),E240,1,4384_7778018_Txc737F5849-237B-4B01-A2B2-357583AF4149,4384_7 -4367_81485,319,4384_1445,Bray (Daly),E240,1,4384_7778018_TxcD7B4144F-001F-4B05-9816-F8D9EFF8F085,4384_7 -4367_81485,271,4384_1446,Bray (Daly),E240,1,4384_7778018_Txc57EC4106-A32B-40D2-832B-8817EA30EBDA,4384_7 -4367_81485,320,4384_1447,Bray (Daly),E240,1,4384_7778018_Txc8198F564-87CA-4F25-A4CA-022401D0B797,4384_7 -4367_81485,314,4384_145,Bray (Daly),E212,1,4384_7778018_TxcAF6F15B3-B20C-48A9-9F5E-0F7099B095C0,4384_6 -4367_81485,23,4384_1453,Greystones,E117,1,4384_7778018_Txc54DB7DF7-54CD-492E-9500-EC2B8E6A2882,4384_1 -4367_81485,314,4384_1454,Greystones,E133,1,4384_7778018_TxcCF2B343E-6078-493A-A675-BDDE9A86AC59,4384_13 -4367_81485,315,4384_1459,Greystones,E133,1,4384_7778018_TxcFB2DFADA-1246-4F03-BC68-CCB837E59BED,4384_13 -4367_81485,315,4384_146,Bray (Daly),E212,1,4384_7778018_Txc5AD79019-258C-4F44-9F3A-D8ED5DDF341F,4384_6 -4367_81485,316,4384_1460,Greystones,E117,1,4384_7778018_TxcD965874F-71BF-4AD1-A387-5D6D49B0BCEE,4384_1 -4367_81485,317,4384_1461,Greystones,E117,1,4384_7778018_Txc065A1954-F9C9-4A76-810D-FCB2D3660F2E,4384_1 -4367_81485,331,4384_1462,Greystones,E117,1,4384_7778018_Txc355FC286-66AF-43BF-8EAD-9B4A348806F1,4384_1 -4367_81485,278,4384_1464,Greystones,E141,1,4384_7778018_Txc747F8D99-2F73-43B3-902D-2616B3831FBE,4384_2 -4367_81485,319,4384_1467,Greystones,E141,1,4384_7778018_Txc2CA15AB3-297F-46E2-A261-9C5E11B0AB3F,4384_2 -4367_81485,271,4384_1468,Greystones,E141,1,4384_7778018_Txc7AFE8199-B8A1-4449-B868-0ADC58E5BD23,4384_2 -4367_81485,320,4384_1469,Greystones,E141,1,4384_7778018_Txc064DDBDB-6D81-4216-B0BC-BC46C80A4FD2,4384_2 -4367_81485,23,4384_1470,Bray (Daly),E248,1,4384_7778018_Txc18E669F1-6468-44AE-8E77-ECE01BB36978,4384_6 -4367_81485,314,4384_1471,Bray (Daly),E263,1,4384_7778018_TxcD870719A-2B90-438E-A3AB-12AF4E374E9C,4384_9 -4367_81485,315,4384_1477,Bray (Daly),E263,1,4384_7778018_TxcF28C0605-6A17-473B-A956-D3310F97036F,4384_9 -4367_81485,316,4384_1478,Bray (Daly),E248,1,4384_7778018_Txc6AC37459-D8B1-4643-B8D8-69E16FB521FF,4384_6 -4367_81485,317,4384_1479,Bray (Daly),E248,1,4384_7778018_Txc854BF108-74FD-45EA-B0A0-3E869CF64788,4384_6 -4367_81485,331,4384_1480,Bray (Daly),E248,1,4384_7778018_Txc24471B52-9B81-44C7-951C-5E45763C5AEF,4384_6 -4367_81485,23,4384_1487,Greystones,E118,1,4384_7778018_TxcD3B19F21-2EE0-4684-AF61-FEFEE2A00550,4384_1 -4367_81485,23,4384_149,Greystones,E102,1,4384_7778018_Txc817B8248-C1BD-4ECC-B86B-69619ED88988,4384_2 -4367_81485,316,4384_1490,Greystones,E118,1,4384_7778018_Txc020A856D-26BC-45FA-A507-61ADAC0C6ACA,4384_1 -4367_81485,317,4384_1491,Greystones,E118,1,4384_7778018_Txc00EA20F3-2064-440B-B376-7048FF923BE7,4384_1 -4367_81485,331,4384_1492,Greystones,E118,1,4384_7778018_Txc9026C997-8ED1-4BF7-8E29-0C546A4EB372,4384_1 -4367_81485,314,4384_1493,Greystones,E134,1,4384_7778018_TxcC65E2EAB-9E9B-4744-8F38-30FDDDE02889,4384_1 -4367_81485,315,4384_1496,Greystones,E134,1,4384_7778018_TxcC4967D3F-D2B2-43B0-A05A-46B8D1BD0A08,4384_1 -4367_81485,278,4384_1500,Bray (Daly),E242,1,4384_7778018_Txc9A05899A-B018-4225-B28D-59CEC7A303C0,4384_6 -4367_81485,319,4384_1504,Bray (Daly),E242,1,4384_7778018_TxcE5471EC9-357A-49A5-956B-107C3E678D66,4384_6 -4367_81485,271,4384_1505,Bray (Daly),E242,1,4384_7778018_Txc367DC69A-5EEA-4FB9-A45A-81BFC6883F71,4384_6 -4367_81485,320,4384_1506,Bray (Daly),E242,1,4384_7778018_Txc8E8C4347-AB3B-4D83-8939-4C4E3857DC62,4384_6 -4367_81485,23,4384_1507,Dublin Connolly,E710,1,4384_7778018_Txc24165E9C-84EA-4DF4-91EB-4872E437D49C,4384_10 -4367_81485,316,4384_1510,Dublin Connolly,E710,1,4384_7778018_Txc83463E50-9762-4859-A658-B29A3F0231CB,4384_10 -4367_81485,317,4384_1511,Dublin Connolly,E710,1,4384_7778018_Txc87BE0FCC-ACCF-425A-81C6-1B1F62E713EA,4384_10 -4367_81485,331,4384_1512,Dublin Connolly,E710,1,4384_7778018_TxcE8D4F7FB-52CF-4575-BB1E-CC9D1F7BF5E4,4384_10 -4367_81485,314,4384_1513,Dublin Connolly,E702,1,4384_7778018_Txc60FA0C1F-C645-4750-854B-B22BF11AA2C0,4384_10 -4367_81485,315,4384_1515,Dublin Connolly,E702,1,4384_7778018_Txc7F794D34-9D48-4EA8-885C-543BB1ABAEF3,4384_10 -4367_81485,23,4384_1517,Dublin Connolly,E711,1,4384_7778018_Txc9C8798DB-7E14-4D6E-8971-75B5C0F23B87,4384_11 -4367_81485,278,4384_1518,Dublin Connolly,E721,1,4384_7778018_TxcB23F3F23-6D76-4515-8718-DA407F61E1FB,4384_12 -4367_81485,316,4384_1525,Dublin Connolly,E711,1,4384_7778018_TxcE1DB1BF8-7206-4134-BF8E-19866B6BAB7E,4384_11 -4367_81485,319,4384_1526,Dublin Connolly,E721,1,4384_7778018_Txc6D94EE7D-F54D-42A3-A983-5C922AD1BD69,4384_12 -4367_81485,317,4384_1527,Dublin Connolly,E711,1,4384_7778018_TxcBFF8E12A-D4F3-4227-8C9F-8B3FF0B7BCD4,4384_11 -4367_81485,331,4384_1528,Dublin Connolly,E711,1,4384_7778018_Txc8837A611-4133-4D62-B4AF-60B31FFD6F32,4384_11 -4367_81485,271,4384_1529,Dublin Connolly,E721,1,4384_7778018_Txc5B642642-A94A-4543-A20F-0133385594AD,4384_12 -4367_81485,316,4384_153,Greystones,E102,1,4384_7778018_Txc5CBEBCD7-67D5-4740-804D-AAB08F076B0C,4384_2 -4367_81485,320,4384_1530,Dublin Connolly,E721,1,4384_7778018_Txc731C7F56-C49C-492D-BB10-AC1D47117823,4384_12 -4367_81485,314,4384_1531,Dublin Connolly,E703,1,4384_7778018_TxcAC41A137-1FFE-42E3-8308-4EFC8045D287,4384_11 -4367_81485,315,4384_1533,Dublin Connolly,E703,1,4384_7778018_Txc13301640-077D-4BA4-AAAF-A044EFC66761,4384_11 -4367_81485,314,4384_1536,Dublin Connolly,E704,1,4384_7778018_TxcEEAA3624-2397-4A66-A630-8E554345D4F6,4384_10 -4367_81485,278,4384_1537,Dublin Connolly,E722,1,4384_7778018_Txc5DA915BB-3FF0-4756-B988-38283FCF6E5D,4384_10 -4367_81485,138,4384_154,Greystones,E102,1,4384_7778018_TxcBBE2D10D-18E2-4352-AAEE-6E500CF2B55E,4384_2 -4367_81485,315,4384_1542,Dublin Connolly,E704,1,4384_7778018_TxcE8A294CB-11E4-4461-A510-784B303B6C96,4384_10 -4367_81485,319,4384_1543,Dublin Connolly,E722,1,4384_7778018_Txc66810E5A-7050-47C7-B0C7-4FEA9DA00B7A,4384_10 -4367_81485,271,4384_1544,Dublin Connolly,E722,1,4384_7778018_Txc1DD531B0-483A-4E51-BAC8-4EED8C179975,4384_10 -4367_81485,320,4384_1545,Dublin Connolly,E722,1,4384_7778018_TxcE6B871C6-1BC1-49E8-9FA8-EAF6A87CE95B,4384_10 -4367_81485,23,4384_1546,Dublin Connolly,E713,1,4384_7778018_Txc7699F383-068D-47DE-AB1F-A455A22D39E9,4384_10 -4367_81485,316,4384_1549,Dublin Connolly,E713,1,4384_7778018_Txc054C9FB4-05A1-4A29-95DB-C632695AC4B4,4384_10 -4367_81485,317,4384_155,Greystones,E102,1,4384_7778018_Txc21DEF63C-034B-4778-8F41-7D0EB8D9F0B9,4384_2 -4367_81485,317,4384_1550,Dublin Connolly,E713,1,4384_7778018_TxcA339E67B-4748-4D2A-A899-4726FF828720,4384_10 -4367_81485,331,4384_1551,Dublin Connolly,E713,1,4384_7778018_TxcE19B7DE0-DA1D-4715-BDC3-BF584864864E,4384_10 -4367_81485,314,4384_1559,Malahide,E800,0,4384_7778018_Txc878B4ED1-FE42-4FB4-8DFB-27DE0B05AE1C,4384_49 -4367_81485,318,4384_156,Greystones,E102,1,4384_7778018_Txc912B28B4-85CB-4DAC-80D5-05F38AA1BA91,4384_2 -4367_81485,315,4384_1560,Malahide,E800,0,4384_7778018_Txc19FA9085-933E-4E62-A872-2DE0A7DE6D85,4384_49 -4367_81485,314,4384_1563,Howth,E901,0,4384_7778018_Txc598E077C-0769-47E9-8C33-CD665164710F,4384_50 -4367_81485,315,4384_1564,Howth,E901,0,4384_7778018_TxcB381D9D4-9C90-471C-A4B2-462899C013E4,4384_50 -4367_81485,23,4384_1565,Malahide,E800,0,4384_7778018_TxcA0785A3A-0201-46F1-AAFE-45763DF19186,4384_49 -4367_81485,316,4384_1569,Malahide,E800,0,4384_7778018_Txc4C1A6FBD-249F-4624-BFF2-47F2D4303E8D,4384_49 -4367_81485,314,4384_157,Bray (Daly),E213,1,4384_7778018_Txc7537C3A1-B102-4185-A231-6BA92A39C9D1,4384_7 -4367_81485,138,4384_1570,Malahide,E800,0,4384_7778018_Txc852DA75A-076D-48D2-AC40-3A176C2D936D,4384_49 -4367_81485,317,4384_1571,Malahide,E800,0,4384_7778018_TxcC21B68B1-7E43-4F68-8F6C-2AB1E1FCAFDD,4384_49 -4367_81485,318,4384_1572,Malahide,E800,0,4384_7778018_Txc39A76CEF-74DF-41D2-AC7D-B3071DF31604,4384_49 -4367_81485,314,4384_1573,Malahide,E802,0,4384_7778018_Txc0D2CA6EB-ED4B-465B-9669-AF028FD302FF,4384_49 -4367_81485,315,4384_1574,Malahide,E802,0,4384_7778018_Txc8B5D9B84-F923-41FE-81E0-7E4D428151FD,4384_49 -4367_81485,23,4384_1575,Malahide,E850,0,4384_7778018_Txc7970EEDA-69C0-42A5-8D71-D4EAB5ECF8AC,4384_54 -4367_81485,316,4384_1577,Malahide,E850,0,4384_7778018_Txc947FC0F0-D3E7-4B58-8629-CF735AC20DD5,4384_54 -4367_81485,317,4384_1578,Malahide,E850,0,4384_7778018_Txc779E2202-33C7-43E0-8B84-B26ED57ADEF1,4384_54 -4367_81485,318,4384_1579,Malahide,E850,0,4384_7778018_Txc19A27C41-081B-445A-8DEF-1E05BE920A97,4384_54 -4367_81485,315,4384_158,Bray (Daly),E213,1,4384_7778018_TxcFBAA27F0-7A4E-47B9-8CAA-EFBF0691A2DD,4384_7 -4367_81485,314,4384_1582,Howth,E903,0,4384_7778018_Txc6DF501F9-5EBD-4731-82B6-9AB1D634C633,4384_50 -4367_81485,315,4384_1583,Howth,E903,0,4384_7778018_Txc3F18594D-EA72-480F-8D17-73BB889606E5,4384_50 -4367_81485,23,4384_1584,Malahide,E801,0,4384_7778018_Txc2BBC98F4-49BD-4F5A-83C6-5977354C5AA3,4384_51 -4367_81485,316,4384_1586,Malahide,E801,0,4384_7778018_Txc94A3774D-3E06-4A6F-AA6F-820D52F7DAF2,4384_51 -4367_81485,138,4384_1587,Malahide,E801,0,4384_7778018_TxcE3FCBD69-8678-41AA-8F21-5E0C1198123B,4384_51 -4367_81485,317,4384_1588,Malahide,E801,0,4384_7778018_Txc2270FEEC-CEA4-4B72-B593-A481F644F22D,4384_51 -4367_81485,318,4384_1589,Malahide,E801,0,4384_7778018_Txc520DD5F9-CF47-4944-8D8D-337B987DB9B7,4384_51 -4367_81485,23,4384_1592,Howth,E900,0,4384_7778018_Txc7DFB3749-73C5-4455-9D44-CB1EF326B208,4384_56 -4367_81485,316,4384_1595,Howth,E900,0,4384_7778018_TxcCD9FCFD5-BCE3-4B41-848D-AABA0472FE27,4384_56 -4367_81485,138,4384_1596,Howth,E900,0,4384_7778018_Txc4A2C2324-5A84-4897-977C-F99725EAE44C,4384_56 -4367_81485,317,4384_1597,Howth,E900,0,4384_7778018_Txc0537E1D1-AEAC-4B72-88D8-0CD2F5CAE3D2,4384_56 -4367_81485,318,4384_1598,Howth,E900,0,4384_7778018_Txc9FC78CC9-805E-4498-A6FF-E86A78F09401,4384_56 -4367_81485,314,4384_16,Greystones,E102,1,4384_7778018_Txc677FED1D-7AE6-4133-B725-0F7054C7ACB3,4384_1 -4367_81485,314,4384_1601,Malahide,E801,0,4384_7778018_Txc225E4E10-DF3A-4F2E-A50F-DEEB0CD1DEC1,4384_59 -4367_81485,315,4384_1606,Malahide,E801,0,4384_7778018_Txc756E9070-3539-4331-A09B-48405BB63FBA,4384_59 -4367_81485,314,4384_1607,Malahide,E804,0,4384_7778018_Txc47AB0707-A53C-4A24-A302-0492DDC7B15F,4384_51 -4367_81485,315,4384_1608,Malahide,E804,0,4384_7778018_TxcD2A9F2D6-ABA7-4F75-BDB3-2F8A9A169AFB,4384_51 -4367_81485,314,4384_1609,Howth,E904,0,4384_7778018_TxcCA5388BC-6C7F-4F3C-BDC4-7718A6422E4C,4384_55 -4367_81485,315,4384_1610,Howth,E904,0,4384_7778018_Txc0CD94BA0-7B14-4D80-AE1A-01DBD2EBF125,4384_55 -4367_81485,23,4384_1611,Howth,E901,0,4384_7778018_Txc2F2D4C67-59D4-4D70-A32C-678B04FEC068,4384_55 -4367_81485,316,4384_1613,Howth,E901,0,4384_7778018_Txc99A297BB-9B41-4DEF-A665-EABA5ED849F6,4384_55 -4367_81485,138,4384_1614,Howth,E901,0,4384_7778018_Txc9B9CA9E7-2535-4447-A7B9-B5ACCEC329E2,4384_55 -4367_81485,317,4384_1615,Howth,E901,0,4384_7778018_TxcE90DC962-25A6-4F6C-BB14-C8B4E60958DE,4384_55 -4367_81485,318,4384_1616,Howth,E901,0,4384_7778018_Txc809F7C8B-A3CF-49D1-9BE0-FE458E7AD7A4,4384_55 -4367_81485,278,4384_162,Greystones,E100,1,4384_7778018_Txc98E3A761-4C5E-458C-A899-CC9BD606FCFE,4384_4 -4367_81485,23,4384_1620,Malahide,E802,0,4384_7778018_TxcEC0FCE30-615C-4AE7-9A10-C8136FBE4F8B,4384_49 -4367_81485,316,4384_1624,Malahide,E802,0,4384_7778018_Txc2E80534D-BB39-43D6-8110-B3DFA50BBA1F,4384_49 -4367_81485,138,4384_1625,Malahide,E802,0,4384_7778018_Txc4CBB6361-1C3A-4E39-8223-7F18D88FA6B3,4384_49 -4367_81485,317,4384_1626,Malahide,E802,0,4384_7778018_Txc09E735DD-9A07-4B54-8860-01A90A995982,4384_49 -4367_81485,318,4384_1627,Malahide,E802,0,4384_7778018_Txc451CAA81-5588-4BDF-B4BB-9071128B8D93,4384_49 -4367_81485,314,4384_1628,Howth,E905,0,4384_7778018_Txc45ED8DA7-A99A-414E-A1A7-5FA1EBBF8A4A,4384_55 -4367_81485,315,4384_1629,Howth,E905,0,4384_7778018_TxcAF1C7F18-8F31-40E2-B694-3E2DEDDF8C47,4384_55 -4367_81485,314,4384_1636,Howth,E906,0,4384_7778018_Txc3A5944BC-B771-45DB-A6BD-82CCD2F0B0C4,4384_50 -4367_81485,315,4384_1637,Howth,E906,0,4384_7778018_Txc53B73D6E-B7E8-4D66-8DA3-8991DF8F58A3,4384_50 -4367_81485,314,4384_1638,Malahide,E805,0,4384_7778018_TxcB9724E57-0E0C-4F02-B37A-62C9E5097970,4384_49 -4367_81485,315,4384_1639,Malahide,E805,0,4384_7778018_Txc47D519D8-DAFD-4B4C-AFD8-A48081D253EE,4384_49 -4367_81485,23,4384_1640,Howth,E902,0,4384_7778018_TxcA3458BB8-437F-4194-A161-94AB86F0EA43,4384_55 -4367_81485,316,4384_1642,Howth,E902,0,4384_7778018_Txc5A0153BF-219E-437A-ACE1-327AFA6807F7,4384_55 -4367_81485,138,4384_1643,Howth,E902,0,4384_7778018_TxcD02C1C19-AB8B-4314-A4AE-D832D373EE51,4384_55 -4367_81485,317,4384_1644,Howth,E902,0,4384_7778018_Txc5A339D4F-FDDD-4513-BC3A-9B1611A9647E,4384_55 -4367_81485,318,4384_1645,Howth,E902,0,4384_7778018_TxcF73DA833-0586-4596-A7CA-D919AC2BBCEC,4384_55 -4367_81485,23,4384_1646,Malahide,E803,0,4384_7778018_Txc8982DABA-1982-4FC5-AF7F-43D9FC50ED37,4384_51 -4367_81485,316,4384_1648,Malahide,E803,0,4384_7778018_Txc37B6EE5F-07E8-4FE0-BE62-616B4A8D5A30,4384_51 -4367_81485,138,4384_1649,Malahide,E803,0,4384_7778018_TxcB020FC43-0EB4-484F-A167-F38FD3329EBA,4384_51 -4367_81485,317,4384_1650,Malahide,E803,0,4384_7778018_Txc0851B37D-469E-431B-AA39-742C7BCE22ED,4384_51 -4367_81485,318,4384_1651,Malahide,E803,0,4384_7778018_Txc5CD6B7C7-8165-4E94-B393-83069D71E707,4384_51 -4367_81485,314,4384_1656,Howth,E907,0,4384_7778018_Txc95CF15A6-3B6A-4B54-B144-0F322DFD8B28,4384_55 -4367_81485,315,4384_1657,Howth,E907,0,4384_7778018_Txc73B75DD6-09D5-42AB-A86E-5BD9F42AFC08,4384_55 -4367_81485,314,4384_1664,Malahide,E807,0,4384_7778018_Txc3133B590-4DE5-48E5-8B4F-6CCEB60EF0E9,4384_51 -4367_81485,315,4384_1667,Malahide,E807,0,4384_7778018_TxcAC8EB040-8586-49B9-8830-91F61FC90D50,4384_51 -4367_81485,314,4384_1668,Howth,E908,0,4384_7778018_Txc37D5AF0C-7244-4D1A-ACCB-EAB33F7060B6,4384_55 -4367_81485,319,4384_167,Greystones,E100,1,4384_7778018_Txc943BB5C0-92A4-4D79-A799-88FDFEC8684B,4384_4 -4367_81485,315,4384_1671,Howth,E908,0,4384_7778018_Txc405DF83A-BA80-40E9-9CBA-9F7ACD3CAAA2,4384_55 -4367_81485,23,4384_1672,Howth,E903,0,4384_7778018_Txc3F948FC2-6DB7-442C-BD84-FC1273D0F600,4384_55 -4367_81485,316,4384_1674,Howth,E903,0,4384_7778018_TxcB0BDF678-D19E-4C93-99C0-6BB01816EACE,4384_55 -4367_81485,138,4384_1675,Howth,E903,0,4384_7778018_TxcA7537CE7-889E-4396-88E6-92D5A3F5E717,4384_55 -4367_81485,317,4384_1676,Howth,E903,0,4384_7778018_TxcD87BA560-08C5-4641-9FF9-73C90DD6E528,4384_55 -4367_81485,318,4384_1677,Howth,E903,0,4384_7778018_TxcFFE8E202-CE45-4988-B737-D21B099B6632,4384_55 -4367_81485,271,4384_168,Greystones,E100,1,4384_7778018_TxcB019C394-2F74-49E1-ADCE-5E34C817D3E9,4384_4 -4367_81485,23,4384_1680,Malahide,E804,0,4384_7778018_TxcD4380ED2-A7CF-4CE0-A11A-63F461BEB1E4,4384_49 -4367_81485,316,4384_1682,Malahide,E804,0,4384_7778018_TxcD588BACA-1366-432F-9FFB-DCAC9697496B,4384_49 -4367_81485,138,4384_1683,Malahide,E804,0,4384_7778018_Txc5D5736E6-1F76-469A-AEA8-391A209289F9,4384_49 -4367_81485,317,4384_1684,Malahide,E804,0,4384_7778018_Txc1C84BEA4-0193-4A9E-AD02-5F9A44070142,4384_49 -4367_81485,318,4384_1685,Malahide,E804,0,4384_7778018_Txc03A08A8D-4192-482D-BBCA-BB7D42CFFB95,4384_49 -4367_81485,314,4384_1686,Howth,E909,0,4384_7778018_Txc018EBCF1-39EA-4B15-91BA-E42EAB875277,4384_55 -4367_81485,315,4384_1689,Howth,E909,0,4384_7778018_Txc98CD7097-D0C3-43FF-B32C-108C4B9497C7,4384_55 -4367_81485,320,4384_169,Greystones,E100,1,4384_7778018_TxcB10C719D-6C47-49CF-8002-3FE17E11042E,4384_4 -4367_81485,314,4384_1694,Howth,E911,0,4384_7778018_Txc37A206FA-0CBE-4028-B4F5-7641A1E1778E,4384_50 -4367_81485,315,4384_1695,Howth,E911,0,4384_7778018_TxcBFE4D2D2-4751-4F39-A769-602E19325AEE,4384_50 -4367_81485,314,4384_1696,Howth,E910,0,4384_7778018_Txc14DA1D67-8CBF-4235-AF84-C357C250E720,4384_55 -4367_81485,315,4384_1699,Howth,E910,0,4384_7778018_Txc2AA0340E-8B79-4863-854D-FDD71E5BE86C,4384_55 -4367_81485,315,4384_17,Greystones,E102,1,4384_7778018_TxcB3AEB01F-FFC2-45D6-A7D4-0DF020343428,4384_1 -4367_81485,314,4384_170,Greystones,E107,1,4384_7778018_Txc2DF6592B-9CC1-4E2B-821C-2F59145B8970,4384_2 -4367_81485,23,4384_1700,Howth,E904,0,4384_7778018_Txc4D48335A-9DB0-40C5-8D2C-E1FED1D630E5,4384_55 -4367_81485,316,4384_1702,Howth,E904,0,4384_7778018_Txc9633E641-354B-46CF-8DD6-51145743F2B6,4384_55 -4367_81485,138,4384_1703,Howth,E904,0,4384_7778018_Txc169C6367-CF4B-4E4A-B275-B713192A8AA2,4384_55 -4367_81485,317,4384_1704,Howth,E904,0,4384_7778018_Txc91692BE6-205A-46B1-96E1-1F24A60E0B33,4384_55 -4367_81485,318,4384_1705,Howth,E904,0,4384_7778018_TxcF20B9DB4-02D8-42B0-9A30-F15952F3813A,4384_55 -4367_81485,23,4384_1706,Malahide,E805,0,4384_7778018_Txc8473368D-C8BE-4DAF-AAB7-0C39E86ADA28,4384_51 -4367_81485,316,4384_1708,Malahide,E805,0,4384_7778018_Txc31C39DAD-53D4-4C59-B606-5A51765EF4E3,4384_51 -4367_81485,138,4384_1709,Malahide,E805,0,4384_7778018_Txc11B01195-744F-4156-A916-84DE7BF57392,4384_51 -4367_81485,317,4384_1710,Malahide,E805,0,4384_7778018_Txc39E99C8C-F08F-469F-9246-456DDFA795D3,4384_51 -4367_81485,318,4384_1711,Malahide,E805,0,4384_7778018_TxcC0C47E48-4606-4DBA-AFB6-36376827F12A,4384_51 -4367_81485,314,4384_1714,Malahide,E809,0,4384_7778018_Txc472DD54F-FC68-40EE-9314-EC315952D20B,4384_49 -4367_81485,315,4384_1717,Malahide,E809,0,4384_7778018_Txc5E5FCA3E-D2F7-448C-9CEE-F243B3E4DB6D,4384_49 -4367_81485,278,4384_1720,Malahide,E802,0,4384_7778018_Txc0AAABD6E-93A4-488E-84F3-7421A31D5A24,4384_49 -4367_81485,319,4384_1725,Malahide,E802,0,4384_7778018_TxcCEA81EC3-F973-4CBF-8732-FBB28D5DFCCC,4384_49 -4367_81485,271,4384_1726,Malahide,E802,0,4384_7778018_TxcBBDE910D-D0B2-43F0-AAB7-E817FFAD1E1C,4384_49 -4367_81485,320,4384_1727,Malahide,E802,0,4384_7778018_Txc9704BE47-A91C-4D31-8F6F-1E530C0759FE,4384_49 -4367_81485,314,4384_1728,Howth,E952,0,4384_7778018_TxcACF4FC75-7423-4BD1-8BAD-0314E104734A,4384_50 -4367_81485,315,4384_1729,Howth,E952,0,4384_7778018_Txc475EF749-28AE-4422-9033-B5FA355F72D4,4384_50 -4367_81485,314,4384_1730,Howth,E912,0,4384_7778018_Txc0E4DA9E3-1941-47B9-B51A-2C2A0D6E3573,4384_55 -4367_81485,315,4384_1733,Howth,E912,0,4384_7778018_Txc4C02D1A3-EE58-479B-9CA2-F92AC3E66952,4384_55 -4367_81485,23,4384_1734,Howth,E905,0,4384_7778018_Txc9C1C7FC5-D3F1-4AFC-AF8E-D1262C6BD27E,4384_55 -4367_81485,316,4384_1736,Howth,E905,0,4384_7778018_Txc8FBCEB89-28C4-412F-A6F9-7D0BA5BEF774,4384_55 -4367_81485,138,4384_1737,Howth,E905,0,4384_7778018_Txc1DDBD00E-6C4E-4D2E-BABC-602EADC16E9F,4384_55 -4367_81485,317,4384_1738,Howth,E905,0,4384_7778018_TxcB8E723A0-4BBE-4044-BBBD-0132C381B4A5,4384_55 -4367_81485,318,4384_1739,Howth,E905,0,4384_7778018_Txc2C7705F1-F6EC-4311-853C-58C8702D26D3,4384_55 -4367_81485,315,4384_174,Greystones,E107,1,4384_7778018_Txc57747103-30FD-42D1-B317-6D24AE06ED0D,4384_2 -4367_81485,278,4384_1740,Howth,E902,0,4384_7778018_TxcC64B7908-1B53-4620-801E-59E0FAD6358D,4384_50 -4367_81485,319,4384_1744,Howth,E902,0,4384_7778018_TxcEDE9284D-CA81-4768-8EE3-1A08386AF91C,4384_50 -4367_81485,271,4384_1745,Howth,E902,0,4384_7778018_TxcC61B064B-022D-4F68-99FC-D8EDDEBEDC69,4384_50 -4367_81485,320,4384_1746,Howth,E902,0,4384_7778018_TxcDA9C3BEC-35B0-4D34-B331-4DB9BF08431C,4384_50 -4367_81485,23,4384_1749,Malahide,E806,0,4384_7778018_TxcE6418CAD-52E8-4E38-BEF4-AB7CF2306806,4384_49 -4367_81485,316,4384_1753,Malahide,E806,0,4384_7778018_TxcF4F1152E-B907-4CBF-A34A-B089220C795A,4384_49 -4367_81485,138,4384_1754,Malahide,E806,0,4384_7778018_TxcBE3C8C1C-FDC3-45B3-A417-51BD63C01553,4384_49 -4367_81485,317,4384_1755,Malahide,E806,0,4384_7778018_Txc4DE93C70-A1E4-4E26-9B77-576272C66029,4384_49 -4367_81485,318,4384_1756,Malahide,E806,0,4384_7778018_Txc378F94BD-23B8-49F9-8B01-8A520901C696,4384_49 -4367_81485,314,4384_1758,Howth,E913,0,4384_7778018_TxcD547F1A9-E71B-42AB-A4F3-45FA98468D27,4384_55 -4367_81485,278,4384_176,Bray (Daly),E201,1,4384_7778018_Txc87CF7F28-4690-4742-A6CC-8AE595FD31D3,4384_7 -4367_81485,315,4384_1761,Howth,E913,0,4384_7778018_TxcB80DC767-D1D6-499E-88FF-923541099653,4384_55 -4367_81485,314,4384_1769,Howth,E914,0,4384_7778018_Txc572DD92C-324C-46D8-A232-E78F1CBC8D57,4384_50 -4367_81485,315,4384_1770,Howth,E914,0,4384_7778018_TxcB312E40B-D169-4DFB-90DE-5ACF04BFA0DE,4384_50 -4367_81485,314,4384_1771,Malahide,E811,0,4384_7778018_TxcE205C63B-CA78-44E1-B62B-BF7A474343A7,4384_49 -4367_81485,315,4384_1774,Malahide,E811,0,4384_7778018_Txc33A79D91-A0B4-4C89-AB4B-B386C349DB20,4384_49 -4367_81485,23,4384_1775,Howth,E906,0,4384_7778018_TxcD36984D5-4BAF-4C2B-AE87-62320D3D1AF0,4384_55 -4367_81485,316,4384_1777,Howth,E906,0,4384_7778018_Txc7554779F-CDA7-4B84-9890-D62EA89DC022,4384_55 -4367_81485,138,4384_1778,Howth,E906,0,4384_7778018_Txc39054B3D-8F11-4F05-8C6D-AA0A51E5DCD8,4384_55 -4367_81485,317,4384_1779,Howth,E906,0,4384_7778018_Txc5B9159AC-1DFD-48C9-868B-D45DAC362D2E,4384_55 -4367_81485,318,4384_1780,Howth,E906,0,4384_7778018_Txc14D47C73-D9EB-4169-A93D-243281BF2C26,4384_55 -4367_81485,23,4384_1781,Malahide,E807,0,4384_7778018_Txc69AF82F4-16FA-4506-8CF7-242F488A22B3,4384_51 -4367_81485,316,4384_1785,Malahide,E807,0,4384_7778018_Txc4DD3FC63-5822-45EC-AF87-2DAAD0656515,4384_51 -4367_81485,138,4384_1786,Malahide,E807,0,4384_7778018_TxcC7A60847-01C3-473F-B30A-649C200EEEED,4384_51 -4367_81485,317,4384_1787,Malahide,E807,0,4384_7778018_Txc3A810913-38E9-4F07-BFAD-A62AFB24A102,4384_51 -4367_81485,318,4384_1788,Malahide,E807,0,4384_7778018_TxcFD16BD84-F042-4836-B76B-C2B7139DE98E,4384_51 -4367_81485,319,4384_179,Bray (Daly),E201,1,4384_7778018_Txc160EE10E-9584-470C-8462-6CB3A57B6DE7,4384_7 -4367_81485,278,4384_1793,Howth,E903,0,4384_7778018_Txc2A95CFD4-6363-4C5F-B6F0-6FD48A7FED6B,4384_50 -4367_81485,319,4384_1796,Howth,E903,0,4384_7778018_Txc0767E7AF-83AE-4B2C-BF26-EC545DA114F0,4384_50 -4367_81485,271,4384_1797,Howth,E903,0,4384_7778018_Txc962FC3AC-468E-45A8-88CF-7C5D65B32023,4384_50 -4367_81485,320,4384_1798,Howth,E903,0,4384_7778018_Txc087608B5-9A01-4FCC-A121-DDB4D691076C,4384_50 -4367_81485,271,4384_180,Bray (Daly),E201,1,4384_7778018_Txc559AB61A-06B0-4D3B-BC30-68E3F9811792,4384_7 -4367_81485,314,4384_1801,Malahide,E812,0,4384_7778018_TxcCECFFFFB-0CBB-416E-B556-54B44674E91D,4384_49 -4367_81485,315,4384_1805,Malahide,E812,0,4384_7778018_TxcCC6D2BB1-38AC-49CF-8C4F-4850B3D728CA,4384_49 -4367_81485,314,4384_1809,Howth,E915,0,4384_7778018_Txc8F391C84-BFA0-4F76-8D33-C5124E7F94CC,4384_55 -4367_81485,320,4384_181,Bray (Daly),E201,1,4384_7778018_Txc234CB08B-70C6-4653-A5A0-4131E21F9D13,4384_7 -4367_81485,315,4384_1812,Howth,E915,0,4384_7778018_Txc7BBE1306-0BF1-4E51-A5C9-C58FE065C0C2,4384_55 -4367_81485,23,4384_1813,Howth,E907,0,4384_7778018_TxcEB2EF7FE-1B09-4489-858F-0E81930BE65C,4384_55 -4367_81485,316,4384_1815,Howth,E907,0,4384_7778018_TxcAEE3A972-6F64-454F-8715-DF14D5309E3D,4384_55 -4367_81485,138,4384_1816,Howth,E907,0,4384_7778018_Txc36070C86-5DD3-4581-B1DC-F0AC1877CCF4,4384_55 -4367_81485,317,4384_1817,Howth,E907,0,4384_7778018_Txc81F53E16-D36B-4853-B565-F8A8D3E32EAA,4384_55 -4367_81485,318,4384_1818,Howth,E907,0,4384_7778018_TxcA850EE64-77A6-4174-BC5D-C02EB2DE9716,4384_55 -4367_81485,23,4384_182,Bray (Daly),E207,1,4384_7778018_Txc19CFEBA1-5419-4AE8-851C-3C850AC02268,4384_7 -4367_81485,314,4384_1821,Howth,E916,0,4384_7778018_TxcFD815023-A058-4C44-82EE-4387BB247EC9,4384_50 -4367_81485,315,4384_1824,Howth,E916,0,4384_7778018_Txc3AB719BB-0AA9-4B3F-A086-6A1D6349AE8C,4384_50 -4367_81485,314,4384_1825,Malahide,E813,0,4384_7778018_Txc3964B2CE-160A-4A94-B85E-52565E63D139,4384_49 -4367_81485,315,4384_1828,Malahide,E813,0,4384_7778018_Txc0BACD599-50C2-4ABE-8563-E441F50EF0C0,4384_49 -4367_81485,23,4384_1831,Malahide,E808,0,4384_7778018_TxcA2492321-F815-4744-8501-E409B737A0DA,4384_49 -4367_81485,316,4384_1833,Malahide,E808,0,4384_7778018_Txc43035196-A87B-433B-B377-6DA095FB613E,4384_49 -4367_81485,138,4384_1834,Malahide,E808,0,4384_7778018_TxcCC90B8BC-5603-493D-97F2-C41844236D96,4384_49 -4367_81485,317,4384_1835,Malahide,E808,0,4384_7778018_TxcDD821E41-E9B8-42B8-A0E5-D69CE01CE8BD,4384_49 -4367_81485,318,4384_1836,Malahide,E808,0,4384_7778018_Txc4A5AFBCE-A77B-4DD3-B711-565E03263BAC,4384_49 -4367_81485,278,4384_1843,Howth,E904,0,4384_7778018_TxcFE42D4A3-4B39-4AAB-8E71-7D6DF4B43E18,4384_50 -4367_81485,319,4384_1846,Howth,E904,0,4384_7778018_Txc42C1644A-949D-4A10-B432-204D6A223FAC,4384_50 -4367_81485,271,4384_1847,Howth,E904,0,4384_7778018_Txc1546CE1F-D702-4357-A47A-37028D466F1C,4384_50 -4367_81485,320,4384_1848,Howth,E904,0,4384_7778018_TxcC0161C96-890C-4FFA-BDA3-09861D22D6F3,4384_50 -4367_81485,314,4384_1849,Malahide,E814,0,4384_7778018_TxcBD01FC37-9703-4BB0-B264-F1375C6E3F01,4384_49 -4367_81485,316,4384_185,Bray (Daly),E207,1,4384_7778018_TxcC24A7749-526F-44EE-A117-DFB7C48DCBAF,4384_7 -4367_81485,315,4384_1853,Malahide,E814,0,4384_7778018_Txc83FFBEB6-F25D-43EC-80F2-A41102960F5D,4384_49 -4367_81485,23,4384_1854,Howth,E908,0,4384_7778018_Txc3598369C-7038-4113-8992-53B6BDF7D27D,4384_55 -4367_81485,316,4384_1856,Howth,E908,0,4384_7778018_Txc0DF8E260-5D47-4F3A-8E67-70E0BD470910,4384_55 -4367_81485,138,4384_1857,Howth,E908,0,4384_7778018_Txc79C29FCA-7241-443B-88D8-A73197583D2B,4384_55 -4367_81485,317,4384_1858,Howth,E908,0,4384_7778018_Txc4E6306A8-FAF0-43E8-972B-8E001196A50D,4384_55 -4367_81485,318,4384_1859,Howth,E908,0,4384_7778018_Txc9BF53E15-2E15-4987-9837-CCB0FC6A18E4,4384_55 -4367_81485,138,4384_186,Bray (Daly),E207,1,4384_7778018_Txc56DB3C73-C91A-4AE7-9799-3CBF235091C9,4384_7 -4367_81485,23,4384_1860,Malahide,E809,0,4384_7778018_TxcB70B1FA3-1418-4B72-9C55-887E599B16CF,4384_51 -4367_81485,316,4384_1862,Malahide,E809,0,4384_7778018_TxcEF5C2287-5E8C-420D-8DBB-0D8AA26D8C71,4384_51 -4367_81485,138,4384_1863,Malahide,E809,0,4384_7778018_TxcE96B0109-34D4-4418-8A2F-0A4B6A7F31BE,4384_51 -4367_81485,317,4384_1864,Malahide,E809,0,4384_7778018_Txc2D48B5ED-48CF-46AE-B534-25CF225C948C,4384_51 -4367_81485,318,4384_1865,Malahide,E809,0,4384_7778018_Txc012E911A-D1FA-4CF8-B37A-F096BD0141E1,4384_51 -4367_81485,317,4384_187,Bray (Daly),E207,1,4384_7778018_TxcFDAEF330-E420-4831-9036-482EA17F18E7,4384_7 -4367_81485,314,4384_1870,Malahide,E815,0,4384_7778018_Txc2D0C6304-18BE-48B5-AF4D-0B293B8F9049,4384_51 -4367_81485,315,4384_1871,Malahide,E815,0,4384_7778018_TxcEE712F4B-BA81-4172-94F8-9346A19F4CB0,4384_51 -4367_81485,314,4384_1872,Howth,E917,0,4384_7778018_Txc64795068-C428-4555-8AD7-A4B428881A3E,4384_55 -4367_81485,315,4384_1875,Howth,E917,0,4384_7778018_TxcF19706AC-FA4B-4BC3-A93C-059D6260C7D9,4384_55 -4367_81485,318,4384_188,Bray (Daly),E207,1,4384_7778018_Txc213DE007-99A6-41C5-8824-DAF84C1B9EAB,4384_7 -4367_81485,314,4384_1881,Howth,E918,0,4384_7778018_Txc1042B8EE-183E-4918-9056-E0EDA0D88741,4384_55 -4367_81485,315,4384_1884,Howth,E918,0,4384_7778018_Txc2AA7ED51-2641-40EA-8A1F-F3E78A05CA6A,4384_55 -4367_81485,23,4384_1885,Howth,E909,0,4384_7778018_Txc3D7715A1-EB61-450F-86CF-C771352D4739,4384_55 -4367_81485,316,4384_1887,Howth,E909,0,4384_7778018_Txc722107C7-9362-474A-A7DB-A98742673FDE,4384_55 -4367_81485,138,4384_1888,Howth,E909,0,4384_7778018_Txc92B1A392-2428-44EB-8152-5AF7320DD77F,4384_55 -4367_81485,317,4384_1889,Howth,E909,0,4384_7778018_Txc0CD7EFFA-D3EC-4E8C-B907-CAD5D06D55CE,4384_55 -4367_81485,318,4384_1890,Howth,E909,0,4384_7778018_Txc40537EC9-66E7-4488-BC0E-D7DDBDAB3EC5,4384_55 -4367_81485,278,4384_1891,Howth,E905,0,4384_7778018_TxcC389E3A8-100E-4113-A510-8FA9BB96A3E5,4384_50 -4367_81485,319,4384_1894,Howth,E905,0,4384_7778018_TxcB1D331D2-C5A9-4D4B-8E9A-3BB447D915B5,4384_50 -4367_81485,271,4384_1895,Howth,E905,0,4384_7778018_TxcC18BC9D0-8D7D-4756-99CB-8ED5E2EEEA0B,4384_50 -4367_81485,320,4384_1896,Howth,E905,0,4384_7778018_TxcC44BA572-C3CC-48FD-A381-6072DF2FA527,4384_50 -4367_81485,314,4384_1899,Howth,E919,0,4384_7778018_TxcAE151819-1BF4-4DD8-8026-3CC86F98371D,4384_50 -4367_81485,315,4384_1902,Howth,E919,0,4384_7778018_Txc1F3B044B-FE71-4CFC-9CFA-FE32B830224C,4384_50 -4367_81485,314,4384_1903,Malahide,E816,0,4384_7778018_Txc97302F68-CA04-44CB-8385-CDEC3EFBFE9E,4384_49 -4367_81485,315,4384_1906,Malahide,E816,0,4384_7778018_Txc65F930FC-63A4-4D14-BD60-D463892D0AD0,4384_49 -4367_81485,23,4384_1907,Malahide,E810,0,4384_7778018_Txc64DBABF7-FFAE-4B77-A650-C490AD6A4798,4384_49 -4367_81485,316,4384_1909,Malahide,E810,0,4384_7778018_Txc673A5A9F-0263-409B-B017-A160012C79F0,4384_49 -4367_81485,314,4384_191,Bray (Daly),E214,1,4384_7778018_Txc7E263975-C4E4-4BE5-8F2F-2C9505E144CF,4384_6 -4367_81485,138,4384_1910,Malahide,E810,0,4384_7778018_Txc19B19E1E-2DE2-472F-9A00-E679B67F8F28,4384_49 -4367_81485,317,4384_1911,Malahide,E810,0,4384_7778018_Txc8FADCB28-FD90-4ECE-96DC-4D8075236E45,4384_49 -4367_81485,318,4384_1912,Malahide,E810,0,4384_7778018_TxcEB8943D2-4835-4E7B-9D85-8EE5A39BFBF0,4384_49 -4367_81485,278,4384_1920,Malahide,E806,0,4384_7778018_Txc9E914313-4313-466B-ABD5-9E07E3A89A17,4384_51 -4367_81485,319,4384_1924,Malahide,E806,0,4384_7778018_TxcBAC3DA07-8449-420F-8380-1543D3E2392C,4384_51 -4367_81485,271,4384_1925,Malahide,E806,0,4384_7778018_Txc69C63747-ECE7-4B49-BEE0-B73864CF4E22,4384_51 -4367_81485,320,4384_1926,Malahide,E806,0,4384_7778018_TxcB1DF2C0F-3419-4957-9631-CFE03310CEF7,4384_51 -4367_81485,314,4384_1927,Malahide,E817,0,4384_7778018_Txc64F97EC5-AE47-43BB-A5AE-A20D5A3E40F8,4384_49 -4367_81485,315,4384_193,Bray (Daly),E214,1,4384_7778018_Txc7311E7D4-EB4D-4538-ACC0-A654EB8FF1A4,4384_6 -4367_81485,315,4384_1930,Malahide,E817,0,4384_7778018_Txc4FF603B7-29F1-4620-872D-9FC26EDB4D18,4384_49 -4367_81485,23,4384_1931,Howth,E910,0,4384_7778018_Txc626279C8-3057-4615-A853-CA6E63511468,4384_55 -4367_81485,316,4384_1933,Howth,E910,0,4384_7778018_Txc515AB2C2-208C-42F6-9AC3-2C759F16A141,4384_55 -4367_81485,138,4384_1934,Howth,E910,0,4384_7778018_Txc48A6C090-4360-4D46-AF68-199A0FE4E964,4384_55 -4367_81485,317,4384_1935,Howth,E910,0,4384_7778018_Txc3CA5C594-53A4-47FD-AD39-E3DB793D8579,4384_55 -4367_81485,318,4384_1936,Howth,E910,0,4384_7778018_Txc325E6D50-73C0-4FE0-9A6C-8E2922445A05,4384_55 -4367_81485,23,4384_1937,Malahide,E811,0,4384_7778018_Txc0F88901C-D8A2-4670-A1F4-2B67BC9375FF,4384_51 -4367_81485,316,4384_1941,Malahide,E811,0,4384_7778018_Txc9A0DC4F3-2987-475B-AF3C-1C0232F77ADF,4384_51 -4367_81485,138,4384_1942,Malahide,E811,0,4384_7778018_Txc609A9EF6-5293-44EE-BB86-D49E7FEF6033,4384_51 -4367_81485,317,4384_1943,Malahide,E811,0,4384_7778018_Txc1E2ED29A-23D3-462A-A6B7-41CB05E242E4,4384_51 -4367_81485,318,4384_1944,Malahide,E811,0,4384_7778018_Txc3DBCA7AB-367E-40BB-9917-6B49450A3B35,4384_51 -4367_81485,314,4384_1947,Malahide,E818,0,4384_7778018_TxcE7601B6C-7000-45EF-96A8-179F55BECB85,4384_51 -4367_81485,315,4384_1948,Malahide,E818,0,4384_7778018_Txc10584969-96BC-494C-8CE9-E1003FCE738A,4384_51 -4367_81485,314,4384_1949,Howth,E920,0,4384_7778018_Txc0194390B-F554-4EAF-BA5D-6555EFCC35DA,4384_55 -4367_81485,315,4384_1952,Howth,E920,0,4384_7778018_Txc3E3A6602-6304-4F44-8CDB-58C1A2AA3458,4384_55 -4367_81485,278,4384_1956,Howth,E906,0,4384_7778018_Txc783F1374-E869-4F7E-AA5B-8CF72D089547,4384_55 -4367_81485,319,4384_1960,Howth,E906,0,4384_7778018_TxcA717D1D7-550A-47ED-B43E-6E22B6C5775F,4384_55 -4367_81485,271,4384_1961,Howth,E906,0,4384_7778018_TxcE5C224A6-C434-4549-829F-858C0C615F53,4384_55 -4367_81485,320,4384_1962,Howth,E906,0,4384_7778018_TxcAD1002AC-6BBD-4234-A1FB-C3225FBF7257,4384_55 -4367_81485,314,4384_1965,Howth,E921,0,4384_7778018_TxcD43C8B6E-1A3D-4ABF-8826-B331BB339D84,4384_55 -4367_81485,315,4384_1968,Howth,E921,0,4384_7778018_TxcF6E1B8A6-559D-4CDE-8D2C-9659B87995A8,4384_55 -4367_81485,23,4384_1969,Howth,E911,0,4384_7778018_Txc377F39A8-07D2-4CBF-9DFE-27855C333DB6,4384_55 -4367_81485,23,4384_197,Bray (Daly),E208,1,4384_7778018_Txc001DDD8D-B5EB-4E91-8AC4-D144F913107E,4384_6 -4367_81485,316,4384_1971,Howth,E911,0,4384_7778018_Txc9B2D49B9-C211-4403-AA68-09ECFE380C34,4384_55 -4367_81485,138,4384_1972,Howth,E911,0,4384_7778018_TxcE7BB5E1C-B358-40E9-8B16-4C0716FF189A,4384_55 -4367_81485,317,4384_1973,Howth,E911,0,4384_7778018_Txc70FCA73D-C0B5-4526-995C-D0BAF9B7FC8E,4384_55 -4367_81485,318,4384_1974,Howth,E911,0,4384_7778018_Txc077D6581-2C11-44A9-8904-C9A81E1DD167,4384_55 -4367_81485,314,4384_1975,Howth,E922,0,4384_7778018_Txc2AEC54C7-2E3A-4233-AB29-5083D004361E,4384_50 -4367_81485,315,4384_1978,Howth,E922,0,4384_7778018_TxcEF00E245-E2D3-4A05-A57E-6ABD5B579EA9,4384_50 -4367_81485,314,4384_1983,Malahide,E819,0,4384_7778018_TxcDB6C0278-483B-43DD-A903-CDCE294879ED,4384_49 -4367_81485,315,4384_1987,Malahide,E819,0,4384_7778018_Txc1B845B55-6EED-4298-A6E2-5FEBCA2B1A6B,4384_49 -4367_81485,278,4384_1990,Malahide,E807,0,4384_7778018_TxcB2625048-B300-4754-ACCB-5E94D2264B59,4384_49 -4367_81485,319,4384_1993,Malahide,E807,0,4384_7778018_TxcC4A96071-E67E-4494-9204-5057B1DF3733,4384_49 -4367_81485,271,4384_1994,Malahide,E807,0,4384_7778018_TxcB2F6D7D7-4CB6-4D4E-A6DF-C9AD841C68BC,4384_49 -4367_81485,320,4384_1995,Malahide,E807,0,4384_7778018_Txc18D551C6-6B9E-4FA9-9937-72F0810C36F7,4384_49 -4367_81485,23,4384_1996,Malahide,E812,0,4384_7778018_TxcCEBD5773-49E9-43C1-BCA6-75268C7211DA,4384_49 -4367_81485,314,4384_20,Bray (Daly),E204,1,4384_7778018_Txc4899A613-C183-47B1-95DC-64A01B469A29,4384_6 -4367_81485,316,4384_200,Bray (Daly),E208,1,4384_7778018_TxcF0237C8B-3BCE-482C-9FA1-82E8ED168C5A,4384_6 -4367_81485,316,4384_2000,Malahide,E812,0,4384_7778018_Txc65C692D3-2736-44CF-B762-720A467584D6,4384_49 -4367_81485,138,4384_2001,Malahide,E812,0,4384_7778018_Txc72F48930-4A70-4ACC-BCA1-C34D8A68DB4C,4384_49 -4367_81485,317,4384_2002,Malahide,E812,0,4384_7778018_TxcD3CE2D0F-7CA9-495A-9591-551E8C26F30F,4384_49 -4367_81485,318,4384_2003,Malahide,E812,0,4384_7778018_Txc6C2C7326-C9AC-4E6F-AE20-F2E9A22BE031,4384_49 -4367_81485,138,4384_201,Bray (Daly),E208,1,4384_7778018_Txc41DF8460-31B4-43B5-85A3-2827D53BF368,4384_6 -4367_81485,278,4384_2010,Howth,E907,0,4384_7778018_TxcACC50899-64DE-4514-BE42-A588A959E7D5,4384_50 -4367_81485,319,4384_2013,Howth,E907,0,4384_7778018_TxcCCC3D95D-7CAF-4F3C-BCB9-2EBFE077F8A6,4384_50 -4367_81485,271,4384_2014,Howth,E907,0,4384_7778018_Txc286F1C6D-AB1D-4940-9567-72429CD114DF,4384_50 -4367_81485,320,4384_2015,Howth,E907,0,4384_7778018_Txc3100886B-E902-4C4D-952C-C95A8B9B19E3,4384_50 -4367_81485,314,4384_2017,Malahide,E820,0,4384_7778018_Txc6C7F9C36-3C79-4646-B7A8-1B1927ED0CE0,4384_49 -4367_81485,317,4384_202,Bray (Daly),E208,1,4384_7778018_Txc94AC5982-532C-4D4E-88F2-56D871653D62,4384_6 -4367_81485,315,4384_2020,Malahide,E820,0,4384_7778018_Txc52B41FE6-0865-451C-B93A-1929F933170A,4384_49 -4367_81485,23,4384_2021,Howth,E912,0,4384_7778018_Txc797EA6FF-0998-4233-A7E0-F5A3D470D625,4384_55 -4367_81485,316,4384_2024,Howth,E912,0,4384_7778018_Txc80B46E03-1847-4C63-BEBA-C0EC31509DC2,4384_55 -4367_81485,138,4384_2025,Howth,E912,0,4384_7778018_TxcAABB6D7D-11D1-48B8-9F1A-8DFA6DD616F1,4384_55 -4367_81485,317,4384_2026,Howth,E912,0,4384_7778018_Txc93AF4563-F212-4CC3-830C-CCC311795A89,4384_55 -4367_81485,318,4384_2027,Howth,E912,0,4384_7778018_TxcF7B482FA-FB8D-47BC-9B20-97FBE06BD7E0,4384_55 -4367_81485,23,4384_2028,Malahide,E813,0,4384_7778018_TxcCA3E846A-A9F6-4241-A1BE-DB00460A19DB,4384_51 -4367_81485,318,4384_203,Bray (Daly),E208,1,4384_7778018_Txc19E4ACCC-A15F-406D-AA08-50B98CEA7547,4384_6 -4367_81485,316,4384_2030,Malahide,E813,0,4384_7778018_Txc2A10ECEF-D16E-429F-80C9-C7FB3ACB740D,4384_51 -4367_81485,138,4384_2031,Malahide,E813,0,4384_7778018_Txc3450A458-2942-4930-AA8F-D6F8A0206F69,4384_51 -4367_81485,317,4384_2032,Malahide,E813,0,4384_7778018_TxcE1DF573E-6514-49AF-98F7-234155171E85,4384_51 -4367_81485,318,4384_2033,Malahide,E813,0,4384_7778018_TxcFE9C63E0-E426-499C-94DA-C50DCE6F4B81,4384_51 -4367_81485,314,4384_2034,Malahide,E821,0,4384_7778018_Txc3E84C6F8-992D-41C8-9A98-75C59844B4EB,4384_51 -4367_81485,315,4384_2037,Malahide,E821,0,4384_7778018_TxcC6556E51-EDDB-4751-8903-D09D9A90079B,4384_51 -4367_81485,314,4384_204,Bray (Daly),E215,1,4384_7778018_Txc18C0A645-20CA-4652-A822-F8B5FD17BF78,4384_6 -4367_81485,314,4384_2042,Howth,E923,0,4384_7778018_Txc5A5F9B71-0F7B-49EF-A138-CE8690684A39,4384_55 -4367_81485,315,4384_2045,Howth,E923,0,4384_7778018_Txc7BB681C0-364C-4C91-B6D4-BC483AA1FFF4,4384_55 -4367_81485,96,4384_2046,Dublin Connolly,E755,0,4384_7778018_Txc6AEFA917-7890-4B5D-A53F-556FAB8243E8,4384_47 -4367_81485,214,4384_2047,Dublin Connolly,E755,0,4384_7778018_Txc2528A323-4CCA-4E04-9647-80EFA49A68CC,4384_47 -4367_81485,315,4384_205,Bray (Daly),E215,1,4384_7778018_Txc946711B6-62F6-419D-B0DA-304F61C6D365,4384_6 -4367_81485,278,4384_2051,Malahide,E808,0,4384_7778018_TxcDB7A45CC-76ED-4899-BDF9-48C94F411865,4384_49 -4367_81485,319,4384_2054,Malahide,E808,0,4384_7778018_Txc2B69A0C1-F477-44B8-BC6C-8ADC805C8AD8,4384_49 -4367_81485,271,4384_2055,Malahide,E808,0,4384_7778018_TxcF092FD47-187F-4628-9483-76F5FCC8670C,4384_49 -4367_81485,320,4384_2056,Malahide,E808,0,4384_7778018_Txc79D13877-6D09-4177-BDD1-4110BC92C63E,4384_49 -4367_81485,314,4384_2059,Howth,E924,0,4384_7778018_TxcE14A4CF6-42E0-483D-868E-20B919E8A5E9,4384_55 -4367_81485,315,4384_2063,Howth,E924,0,4384_7778018_Txc0C6B31CD-935E-4AF5-A9A6-47E1D013747D,4384_55 -4367_81485,23,4384_2064,Howth,E913,0,4384_7778018_TxcEA494492-58EC-4DB8-870B-2985876E3F52,4384_55 -4367_81485,316,4384_2066,Howth,E913,0,4384_7778018_Txc4D066A92-1145-40A4-933D-31526F51E9D6,4384_55 -4367_81485,138,4384_2067,Howth,E913,0,4384_7778018_Txc7BB7E45F-4D38-4955-BFB0-C038ED2CCB1F,4384_55 -4367_81485,317,4384_2068,Howth,E913,0,4384_7778018_Txc1C18C58B-6880-4A13-AF03-762C3AA3AE00,4384_55 -4367_81485,318,4384_2069,Howth,E913,0,4384_7778018_Txc0ADD44F0-79DC-4FA0-9934-FF1CD85EF37E,4384_55 -4367_81485,333,4384_2070,Howth,E925,0,4384_7778018_Txc82D06985-AF58-4330-8C52-35D57ABE98AD,4384_50 -4367_81485,315,4384_2073,Howth,E925,0,4384_7778018_TxcCC539CB3-7B76-483D-92D5-C784E36D9DF8,4384_50 -4367_81485,92,4384_2075,Howth,E925,0,4384_7778018_Txc75FA4CC0-4088-45C9-8F2F-C8EF24C6B2AA,4384_50 -4367_81485,94,4384_2076,Howth,E925,0,4384_7778018_TxcA998B1C4-FEBB-4679-B35E-A6747E015614,4384_50 -4367_81485,314,4384_2079,Malahide,E822,0,4384_7778018_Txc47B379CB-A331-4BEC-9F6C-B371808C2EAA,4384_49 -4367_81485,278,4384_208,Greystones,E102,1,4384_7778018_Txc17FD69FA-283B-4C23-A568-A03C98582B26,4384_2 -4367_81485,96,4384_2083,Dublin Connolly,E756,0,4384_7778018_Txc36C297D8-F06B-487B-8E77-1B330F0DE7B5,4384_46 -4367_81485,214,4384_2084,Dublin Connolly,E756,0,4384_7778018_Txc339A1821-DF4E-4BD8-A18E-C785638A99F1,4384_46 -4367_81485,315,4384_2085,Malahide,E822,0,4384_7778018_Txc64387BAD-2192-4D8C-8BAB-B4B8F5A2B073,4384_49 -4367_81485,278,4384_2086,Howth,E908,0,4384_7778018_Txc4AC218F3-7112-4BDC-9793-3752F9065E4E,4384_55 -4367_81485,319,4384_2090,Howth,E908,0,4384_7778018_Txc2A933AC3-C139-4C70-A3CD-F72F978BFBF3,4384_55 -4367_81485,271,4384_2091,Howth,E908,0,4384_7778018_TxcCB204061-152B-487C-9676-CF05C62B0C09,4384_55 -4367_81485,320,4384_2092,Howth,E908,0,4384_7778018_TxcD1C70DCF-0418-4B20-8013-718A1F4E6554,4384_55 -4367_81485,23,4384_2093,Malahide,E814,0,4384_7778018_TxcD24CD047-5D45-48FD-AC37-94EF4D429951,4384_49 -4367_81485,316,4384_2097,Malahide,E814,0,4384_7778018_Txc93756CF8-8ABB-496C-B4BA-498F06642715,4384_49 -4367_81485,138,4384_2098,Malahide,E814,0,4384_7778018_Txc2533046C-1B24-4573-81AD-1E529CC159EB,4384_49 -4367_81485,317,4384_2099,Malahide,E814,0,4384_7778018_TxcFFC8D531-D944-4D3B-BEF8-6D692480A1DD,4384_49 -4367_81485,315,4384_21,Bray (Daly),E204,1,4384_7778018_Txc29A1FE5D-C0EB-4924-913D-7C9DAC4C2D99,4384_6 -4367_81485,318,4384_2100,Malahide,E814,0,4384_7778018_Txc289E1D63-471E-4904-A530-7FFD4585C852,4384_49 -4367_81485,278,4384_2107,Malahide,E809,0,4384_7778018_Txc82CD3612-9418-4CB0-9A9C-2BD198D3E5B5,4384_51 -4367_81485,319,4384_211,Greystones,E102,1,4384_7778018_Txc09B910CA-B1EA-4056-82AE-D86328E44D64,4384_2 -4367_81485,319,4384_2111,Malahide,E809,0,4384_7778018_Txc6ABDBD92-88EE-46BB-8243-6BDFE24E01C8,4384_51 -4367_81485,271,4384_2112,Malahide,E809,0,4384_7778018_Txc285A3086-73B2-46E8-985B-A136159A726E,4384_51 -4367_81485,320,4384_2113,Malahide,E809,0,4384_7778018_Txc9598A4C1-23C6-4F99-B50B-E035BD641242,4384_51 -4367_81485,314,4384_2114,Malahide,E823,0,4384_7778018_Txc89CF7FDF-C8E4-4E71-941F-A360B22BA9B9,4384_49 -4367_81485,315,4384_2117,Malahide,E823,0,4384_7778018_Txc3043B610-6A00-4D92-B93F-897F59CE2432,4384_49 -4367_81485,211,4384_2118,Howth,E914,0,4384_7778018_Txc670174B9-99B3-4821-8220-88D0A51A8864,4384_55 -4367_81485,271,4384_212,Greystones,E102,1,4384_7778018_Txc93948C57-DCFD-4132-B7A1-EE604434E450,4384_2 -4367_81485,96,4384_2121,Howth,E914,0,4384_7778018_Txc1E37635D-A397-4B3F-92DD-543AD21D0DF5,4384_57 -4367_81485,214,4384_2122,Howth,E914,0,4384_7778018_TxcE3A48054-6902-4F21-9E88-361F7DBA2148,4384_57 -4367_81485,316,4384_2123,Howth,E914,0,4384_7778018_Txc3A797D9B-0EFE-422E-9652-B6E63094B6B7,4384_55 -4367_81485,138,4384_2124,Howth,E914,0,4384_7778018_Txc2FA99B00-00BE-47E4-97E4-1F3971AC2530,4384_55 -4367_81485,317,4384_2125,Howth,E914,0,4384_7778018_Txc71E71A49-D597-40EA-8A42-471A6309333F,4384_55 -4367_81485,318,4384_2126,Howth,E914,0,4384_7778018_Txc75AF2419-7343-4973-BB81-164243806842,4384_55 -4367_81485,23,4384_2127,Malahide,E815,0,4384_7778018_Txc67E580B7-BEE8-4101-ACBE-78DFA4B53D72,4384_51 -4367_81485,320,4384_213,Greystones,E102,1,4384_7778018_Txc3A1DCFFC-B5FF-4A34-BD80-2EEC463CE1B0,4384_2 -4367_81485,316,4384_2130,Malahide,E815,0,4384_7778018_Txc6C7EA8AF-525D-42EF-A482-BE13DB1393C7,4384_51 -4367_81485,138,4384_2131,Malahide,E815,0,4384_7778018_Txc9C1F046E-E011-4A76-9B75-4630145C3079,4384_51 -4367_81485,317,4384_2132,Malahide,E815,0,4384_7778018_Txc3BD4A38F-AC33-4C53-B53D-98729D8892FC,4384_51 -4367_81485,318,4384_2133,Malahide,E815,0,4384_7778018_Txc44FD27C0-8526-4621-AD40-81FDC7FFBB4D,4384_51 -4367_81485,314,4384_2134,Malahide,E824,0,4384_7778018_TxcF85C7834-5ACB-434E-AFA2-11D5295A6EDB,4384_51 -4367_81485,315,4384_2137,Malahide,E824,0,4384_7778018_Txc3CC4114F-9A16-43A7-885B-87811054F24D,4384_51 -4367_81485,314,4384_2142,Howth,E926,0,4384_7778018_Txc0EE15DBD-9CCF-405A-BAB1-7A50CD375FFB,4384_55 -4367_81485,315,4384_2145,Howth,E926,0,4384_7778018_Txc2A82D723-B926-464D-9A87-4C697FD08313,4384_55 -4367_81485,278,4384_2147,Howth,E909,0,4384_7778018_TxcAA46F8E0-4C6D-4380-AFE5-674483FAECB9,4384_55 -4367_81485,319,4384_2150,Howth,E909,0,4384_7778018_Txc5C852513-7A87-42D3-829D-89C4C172C06F,4384_55 -4367_81485,271,4384_2151,Howth,E909,0,4384_7778018_TxcBCCE55AF-103D-49E6-9A11-A3BD754069FA,4384_55 -4367_81485,320,4384_2152,Howth,E909,0,4384_7778018_TxcAE790CDA-E9C5-4270-BA6D-A057B5AAF4AB,4384_55 -4367_81485,314,4384_2155,Howth,E927,0,4384_7778018_Txc19A29FD3-F25C-4FF1-9ABD-F017E0D2B77E,4384_55 -4367_81485,315,4384_2158,Howth,E927,0,4384_7778018_Txc477335A9-B12F-4904-A7CA-F878ED6A3982,4384_55 -4367_81485,23,4384_2159,Howth,E915,0,4384_7778018_TxcED001A89-889B-420C-A469-772A0BAAA584,4384_55 -4367_81485,314,4384_216,Greystones,E108,1,4384_7778018_Txc26C40BD4-6C2B-49DE-B9AB-5D7C54047759,4384_1 -4367_81485,316,4384_2161,Howth,E915,0,4384_7778018_TxcEE0B55A6-8FC3-4FF2-AE7A-17AD2BE61552,4384_55 -4367_81485,138,4384_2162,Howth,E915,0,4384_7778018_Txc911F6A2B-2E4B-4C26-BDFF-A2E88CD6BC27,4384_55 -4367_81485,317,4384_2163,Howth,E915,0,4384_7778018_TxcA14373E5-F37D-4750-B036-4E5E6E7DD151,4384_55 -4367_81485,318,4384_2164,Howth,E915,0,4384_7778018_TxcEE692BC2-8A96-4463-8225-1EA095B15D47,4384_55 -4367_81485,314,4384_2165,Howth,E928,0,4384_7778018_Txc488FB125-FFD5-4386-A01C-389A91B93990,4384_50 -4367_81485,315,4384_2168,Howth,E928,0,4384_7778018_Txc44EDB6BC-BAA6-487A-ABB7-A770C492F2A7,4384_50 -4367_81485,315,4384_217,Greystones,E108,1,4384_7778018_Txc8C9B9ACF-D93F-449B-B421-3EA3AF88CA36,4384_1 -4367_81485,314,4384_2171,Malahide,E825,0,4384_7778018_Txc8F8E0871-1791-4FA2-8B8B-7B4BBE0F6D1D,4384_49 -4367_81485,315,4384_2174,Malahide,E825,0,4384_7778018_Txc54E78E20-DECB-4CD7-8E99-8DCFBCCB8837,4384_49 -4367_81485,278,4384_2176,Malahide,E810,0,4384_7778018_Txc5B8008D0-8F5E-4224-87C1-62AC2B958765,4384_49 -4367_81485,319,4384_2180,Malahide,E810,0,4384_7778018_TxcD95A912F-9B7D-406E-8738-19C7136E3472,4384_49 -4367_81485,271,4384_2181,Malahide,E810,0,4384_7778018_TxcB3201794-B496-4286-A9C5-FC73AA3807C5,4384_49 -4367_81485,320,4384_2182,Malahide,E810,0,4384_7778018_Txc85850BA2-7D39-4183-95AE-9B2CAD801CF8,4384_49 -4367_81485,23,4384_2183,Malahide,E816,0,4384_7778018_Txc70826F89-1278-40C7-8058-889AF6E3217C,4384_49 -4367_81485,316,4384_2187,Malahide,E816,0,4384_7778018_Txc6FF0758F-0B59-4DC6-892B-08ADDC6829D8,4384_49 -4367_81485,138,4384_2188,Malahide,E816,0,4384_7778018_Txc535481DB-6382-49A3-B0BF-0D91085D8B80,4384_49 -4367_81485,317,4384_2189,Malahide,E816,0,4384_7778018_TxcD5950560-FD7E-4BB6-B74B-FAB4E3EE2776,4384_49 -4367_81485,23,4384_219,Bray (Daly),E209,1,4384_7778018_Txc3FAA1AE7-AC2A-42C8-A184-7F69F59F765E,4384_7 -4367_81485,318,4384_2190,Malahide,E816,0,4384_7778018_TxcFED0888C-F16E-4628-BA28-950840014D2A,4384_49 -4367_81485,278,4384_2196,Howth,E910,0,4384_7778018_Txc1FD5550B-7631-4957-9C7D-28A6FBA989CE,4384_50 -4367_81485,319,4384_2199,Howth,E910,0,4384_7778018_TxcA2CAB31E-BAE2-46D1-AB55-649FBD0C2CCD,4384_50 -4367_81485,271,4384_2200,Howth,E910,0,4384_7778018_TxcFF4356EB-8D58-49E6-A41C-A8ADE82A1163,4384_50 -4367_81485,320,4384_2201,Howth,E910,0,4384_7778018_Txc7C94D532-99A5-4AFF-82E7-7F3D4BC0E775,4384_50 -4367_81485,314,4384_2202,Malahide,E826,0,4384_7778018_TxcAD6FCB88-5642-48E9-81AF-5DE7E8C82002,4384_49 -4367_81485,315,4384_2205,Malahide,E826,0,4384_7778018_Txc8E7CCDAB-7B08-45C8-958E-D39B38AB0C21,4384_49 -4367_81485,23,4384_2206,Howth,E916,0,4384_7778018_TxcBB21861A-C3D0-4690-82B7-2EE6B4A56B65,4384_55 -4367_81485,316,4384_2208,Howth,E916,0,4384_7778018_Txc49ADDBD2-C0BE-4E66-840E-FE145BB0074B,4384_55 -4367_81485,138,4384_2209,Howth,E916,0,4384_7778018_TxcC851AE2D-37EC-4AB5-B0FE-26AC50D755C1,4384_55 -4367_81485,317,4384_2210,Howth,E916,0,4384_7778018_TxcAD8DEE5C-0632-4B5C-AFFA-B4C92824DA55,4384_55 -4367_81485,318,4384_2211,Howth,E916,0,4384_7778018_TxcB34EB015-BC82-4875-B378-2824957D6F0E,4384_55 -4367_81485,23,4384_2212,Malahide,E817,0,4384_7778018_TxcBD1E4C7B-A427-4074-9F6C-773F02FF8413,4384_51 -4367_81485,316,4384_2215,Malahide,E817,0,4384_7778018_TxcA6AA3893-8EC2-467A-86D3-45C4871A4DDC,4384_51 -4367_81485,138,4384_2216,Malahide,E817,0,4384_7778018_Txc5042FAC0-58DF-4625-BDDA-8635C4ABACC4,4384_51 -4367_81485,317,4384_2217,Malahide,E817,0,4384_7778018_Txc12154E4A-9AB6-43ED-B0AE-0F9BDDDB9BA3,4384_51 -4367_81485,318,4384_2218,Malahide,E817,0,4384_7778018_Txc495E097A-4ECE-476C-A45D-FD05C1230CEB,4384_51 -4367_81485,314,4384_2219,Malahide,E827,0,4384_7778018_Txc05A86404-BFF0-4C51-AA92-AA8A1D8EAB22,4384_51 -4367_81485,316,4384_222,Bray (Daly),E209,1,4384_7778018_Txc53F33595-FEEC-4582-A255-9798CFD83B78,4384_7 -4367_81485,315,4384_2222,Malahide,E827,0,4384_7778018_TxcED04FC69-5132-4E15-B5F2-F0C1D0CE8883,4384_51 -4367_81485,314,4384_2227,Howth,E929,0,4384_7778018_TxcD68B4E67-F2AA-44F8-8452-7065FA0D95E7,4384_55 -4367_81485,138,4384_223,Bray (Daly),E209,1,4384_7778018_Txc29EFC14F-1965-4817-AEDC-F21EA77EE1C7,4384_7 -4367_81485,315,4384_2230,Howth,E929,0,4384_7778018_Txc6919D530-FA29-4E67-8139-6BE8847F590A,4384_55 -4367_81485,278,4384_2235,Malahide,E811,0,4384_7778018_TxcD837A46E-9F3D-473C-ADD6-4BC858A5AB2C,4384_49 -4367_81485,319,4384_2238,Malahide,E811,0,4384_7778018_Txc28AC1CDD-45FE-4514-9C8C-5DFB439A90E6,4384_49 -4367_81485,324,4384_2239,Dublin Connolly,E754,0,4384_7778018_Txc9A26ED29-2A6C-4938-8E45-D978D03D5163,4384_47 -4367_81485,317,4384_224,Bray (Daly),E209,1,4384_7778018_Txc8A019EA5-F709-4408-8E2A-FFE9A15CE783,4384_7 -4367_81485,271,4384_2240,Malahide,E811,0,4384_7778018_Txc95A92949-E084-40F9-87DD-47DDC2705DA2,4384_49 -4367_81485,320,4384_2241,Malahide,E811,0,4384_7778018_Txc3935161A-863B-4DF0-90C5-C36BC43C17AF,4384_49 -4367_81485,325,4384_2242,Dublin Connolly,E754,0,4384_7778018_Txc3FD293CD-7F9D-4ABC-A8CC-DD4C2C12521F,4384_47 -4367_81485,314,4384_2247,Howth,E930,0,4384_7778018_TxcF1EEB816-CA11-49D4-82F8-5F0A04B6D27A,4384_55 -4367_81485,318,4384_225,Bray (Daly),E209,1,4384_7778018_Txc6014844C-C61F-4E79-B11B-470F731BF3C1,4384_7 -4367_81485,315,4384_2250,Howth,E930,0,4384_7778018_TxcCA2A8467-9E44-45C1-90D5-656FD2AFF1E7,4384_55 -4367_81485,23,4384_2251,Howth,E917,0,4384_7778018_TxcDAA2C3C8-32D6-413A-8D1F-B501F3547049,4384_55 -4367_81485,316,4384_2253,Howth,E917,0,4384_7778018_TxcB3DD22C2-A33F-489F-8C7F-94E131564BF8,4384_55 -4367_81485,138,4384_2254,Howth,E917,0,4384_7778018_TxcB8845813-64D4-41E1-9EA2-41A0A23B25C1,4384_55 -4367_81485,317,4384_2255,Howth,E917,0,4384_7778018_Txc853D1749-E889-4429-B8E5-9D4A7EF61A97,4384_55 -4367_81485,318,4384_2256,Howth,E917,0,4384_7778018_TxcA0215503-574C-4A85-8DC7-B9EE04345950,4384_55 -4367_81485,314,4384_2257,Howth,E931,0,4384_7778018_Txc69980831-9699-46C9-AD96-90E97EEEA327,4384_50 -4367_81485,315,4384_2262,Howth,E931,0,4384_7778018_Txc4ED2C867-3524-4EE4-B893-2B8788DEEF5C,4384_50 -4367_81485,314,4384_2263,Malahide,E828,0,4384_7778018_Txc38CA7FF0-F4D3-451D-A19C-D408B0077155,4384_49 -4367_81485,315,4384_2266,Malahide,E828,0,4384_7778018_TxcC39830D4-29D9-4894-B917-3832498FA01B,4384_49 -4367_81485,278,4384_2267,Howth,E911,0,4384_7778018_Txc488E447A-E45F-4213-BED0-7B79EB9892B2,4384_55 -4367_81485,319,4384_2270,Howth,E911,0,4384_7778018_Txc6B9AE680-0E35-49EC-8929-4B19835D0B97,4384_55 -4367_81485,271,4384_2271,Howth,E911,0,4384_7778018_TxcAE541E53-9DA4-49A5-B1FE-D9808371AE9B,4384_55 -4367_81485,320,4384_2272,Howth,E911,0,4384_7778018_TxcBD59BF2C-3C0D-43CD-A6B1-511567A9A185,4384_55 -4367_81485,23,4384_2273,Malahide,E818,0,4384_7778018_Txc33BEE6A5-3929-49BB-8CBC-A29EEA697F39,4384_49 -4367_81485,316,4384_2277,Malahide,E818,0,4384_7778018_TxcE1C33FD6-E44F-4BBC-B46F-4829780AF3BF,4384_49 -4367_81485,138,4384_2278,Malahide,E818,0,4384_7778018_TxcFA9DD73D-7B0E-4EC8-AA62-A647293A053F,4384_49 -4367_81485,317,4384_2279,Malahide,E818,0,4384_7778018_Txc03ED13A6-3226-4774-9794-D8A7083D8783,4384_49 -4367_81485,318,4384_2280,Malahide,E818,0,4384_7778018_TxcDECF9ED7-EFB0-464E-9961-276CB2C434F2,4384_49 -4367_81485,278,4384_2288,Malahide,E812,0,4384_7778018_Txc31971F50-8BFF-4C97-86A2-4C7DA588E9AC,4384_51 -4367_81485,314,4384_229,Bray (Daly),E216,1,4384_7778018_TxcA948F712-8300-4D55-980D-0C0258AAC7D1,4384_6 -4367_81485,319,4384_2292,Malahide,E812,0,4384_7778018_Txc23BFBFB4-8EFE-4DB9-9F34-20439CA4A996,4384_51 -4367_81485,324,4384_2293,Dublin Connolly,E755,0,4384_7778018_TxcCF99A699-C0CA-485D-9024-111D93CA312C,4384_78 -4367_81485,271,4384_2294,Malahide,E812,0,4384_7778018_TxcAF3E806B-45EE-4B77-B8BE-39AE70ABC796,4384_51 -4367_81485,320,4384_2295,Malahide,E812,0,4384_7778018_Txc78340E15-1842-44BB-A796-24A5FA0B1D02,4384_51 -4367_81485,325,4384_2296,Dublin Connolly,E755,0,4384_7778018_TxcBF33C8DB-2DC6-40AF-942B-1B26684EB6A3,4384_78 -4367_81485,314,4384_2297,Malahide,E829,0,4384_7778018_TxcA366770C-10AD-4191-B69E-2B5B2C7E29AA,4384_49 -4367_81485,315,4384_230,Bray (Daly),E216,1,4384_7778018_Txc04373BA0-9196-4ED8-B567-4DAB2029EF82,4384_6 -4367_81485,315,4384_2301,Malahide,E829,0,4384_7778018_Txc36802951-0B4E-429C-ACE0-C835CB832BAF,4384_49 -4367_81485,23,4384_2302,Howth,E918,0,4384_7778018_Txc8A506563-28B6-4932-8FB5-15DEAA69075E,4384_55 -4367_81485,316,4384_2303,Howth,E918,0,4384_7778018_TxcC5C8116C-8308-49E1-BDAC-8BA7D2D058D7,4384_55 -4367_81485,138,4384_2304,Howth,E918,0,4384_7778018_Txc48E8C911-C8EC-4D37-BF08-9D768ABBB57B,4384_55 -4367_81485,317,4384_2305,Howth,E918,0,4384_7778018_Txc54AB5365-FAF3-4A1A-9BA0-DCFEC481193D,4384_55 -4367_81485,318,4384_2306,Howth,E918,0,4384_7778018_Txc9A4E9D6E-696C-4216-92BD-D04C2AEC4ABE,4384_55 -4367_81485,211,4384_2308,Malahide,E819,0,4384_7778018_TxcD30610E0-38C3-4920-801F-711FC92F0D05,4384_51 -4367_81485,96,4384_2312,Malahide,E819,0,4384_7778018_Txc3B3974EC-87F0-40DC-9D1A-E2C13BC34B1A,4384_74 -4367_81485,214,4384_2313,Malahide,E819,0,4384_7778018_Txc4DC0CB93-3F16-45EC-810C-CF5871C5E3C7,4384_74 -4367_81485,316,4384_2314,Malahide,E819,0,4384_7778018_Txc1E416969-15A8-4876-AE42-79850220F895,4384_51 -4367_81485,138,4384_2315,Malahide,E819,0,4384_7778018_Txc8B3F6F68-ABCF-4CAB-B032-9A377AC144DB,4384_51 -4367_81485,317,4384_2316,Malahide,E819,0,4384_7778018_Txc6786438B-B046-4951-9261-4CEDC0E972BF,4384_51 -4367_81485,318,4384_2317,Malahide,E819,0,4384_7778018_TxcE46D6D34-9B25-41E1-8942-9086C35CB279,4384_51 -4367_81485,314,4384_2318,Malahide,E830,0,4384_7778018_Txc46E653BD-1A6E-4216-88C6-24045D93F97E,4384_51 -4367_81485,315,4384_2321,Malahide,E830,0,4384_7778018_Txc3680D673-4119-4900-BC46-0E6350C623A7,4384_51 -4367_81485,314,4384_2327,Howth,E932,0,4384_7778018_Txc6CC37E6D-EDD0-4567-A7D3-13936CE08E40,4384_55 -4367_81485,23,4384_233,Greystones,E103,1,4384_7778018_Txc2CC3B7AF-C888-4DBE-A4AE-560286F4A390,4384_2 -4367_81485,315,4384_2332,Howth,E932,0,4384_7778018_Txc5FACE106-7CC8-4720-B762-1E3160593AE0,4384_55 -4367_81485,278,4384_2338,Howth,E912,0,4384_7778018_Txc8CBCDAD1-EE11-4D19-AB74-8A1E55E3942B,4384_55 -4367_81485,319,4384_2341,Howth,E912,0,4384_7778018_Txc418FA974-D394-4DC8-B59A-5F756F4CAE67,4384_55 -4367_81485,271,4384_2342,Howth,E912,0,4384_7778018_TxcEA38DE0F-B03C-4A3E-B5B4-46F908119046,4384_55 -4367_81485,320,4384_2343,Howth,E912,0,4384_7778018_Txc4440D9C2-F1E2-4E42-A138-726597066FF9,4384_55 -4367_81485,314,4384_2348,Howth,E933,0,4384_7778018_Txc05861D2C-B901-4D86-B7DE-0B2C2FA2107D,4384_55 -4367_81485,315,4384_2351,Howth,E933,0,4384_7778018_TxcAF2683DF-A0A6-4E3D-8EB3-11B0FB412898,4384_55 -4367_81485,211,4384_2352,Howth,E919,0,4384_7778018_TxcF8F493EE-CFCE-4361-B628-E9BD3EA75A1F,4384_55 -4367_81485,96,4384_2354,Howth,E919,0,4384_7778018_TxcABAE9B92-782F-4F5D-9313-12AF0FC953E2,4384_72 -4367_81485,214,4384_2355,Howth,E919,0,4384_7778018_Txc92B66685-AC78-4015-A1D5-8839FA879425,4384_72 -4367_81485,316,4384_2356,Howth,E919,0,4384_7778018_TxcB883DB9C-5FFC-483B-8E40-3DDE517C2B15,4384_55 -4367_81485,138,4384_2357,Howth,E919,0,4384_7778018_TxcA42655E3-D1FA-4B16-9F45-16F138797BAA,4384_55 -4367_81485,317,4384_2358,Howth,E919,0,4384_7778018_Txc7342620E-0ACB-4998-B59B-62BF1B7AE05A,4384_55 -4367_81485,318,4384_2359,Howth,E919,0,4384_7778018_Txc810FA4E4-A775-4DCD-A5CC-4D9AD6AC9BB5,4384_55 -4367_81485,314,4384_2360,Howth,E934,0,4384_7778018_Txc8AC3DB9B-C893-4B1B-9710-C433A90C29C9,4384_50 -4367_81485,315,4384_2363,Howth,E934,0,4384_7778018_TxcEF848D5B-CDD1-4B1D-9470-F8C009E4CFE9,4384_50 -4367_81485,314,4384_2366,Malahide,E831,0,4384_7778018_TxcC7AD192D-A207-441E-91BA-94D1EC4A192E,4384_49 -4367_81485,315,4384_2369,Malahide,E831,0,4384_7778018_Txc86FAFE32-BD52-428A-81F1-51B52A357123,4384_49 -4367_81485,316,4384_237,Greystones,E103,1,4384_7778018_Txc807FC2BE-429D-4A5F-ADDF-34F6C056995D,4384_2 -4367_81485,278,4384_2370,Malahide,E813,0,4384_7778018_Txc69D87749-3D27-4945-8CEE-6200D205ADA5,4384_49 -4367_81485,319,4384_2373,Malahide,E813,0,4384_7778018_TxcFFAFE7BB-ACEE-4FDA-AE02-8EDD94E22004,4384_49 -4367_81485,271,4384_2374,Malahide,E813,0,4384_7778018_Txc07F40E82-7641-4900-9C2C-36CE5B616A49,4384_49 -4367_81485,320,4384_2375,Malahide,E813,0,4384_7778018_TxcA0A96278-F3A5-4978-B154-E67EB87C57E3,4384_49 -4367_81485,211,4384_2376,Malahide,E820,0,4384_7778018_Txc7D733A03-743C-4D44-A2B1-6B8E150978B1,4384_49 -4367_81485,138,4384_238,Greystones,E103,1,4384_7778018_Txc40AE51BA-EFEE-4AC3-A631-3F6B044DF6D1,4384_2 -4367_81485,316,4384_2381,Malahide,E820,0,4384_7778018_TxcFB6B3E4A-1E75-447E-A8D3-24CD09820DEB,4384_49 -4367_81485,138,4384_2382,Malahide,E820,0,4384_7778018_Txc111AF54F-DB03-4D41-B846-79440DEDF227,4384_49 -4367_81485,317,4384_2383,Malahide,E820,0,4384_7778018_Txc8760E9F5-1965-4211-878B-07606526D70A,4384_49 -4367_81485,318,4384_2384,Malahide,E820,0,4384_7778018_Txc35DEF379-EBB1-464B-8F16-73D1A4792759,4384_49 -4367_81485,96,4384_2385,Malahide,E820,0,4384_7778018_Txc2DA34BF0-7311-40E2-9156-F6A908ACD0BC,4384_73 -4367_81485,214,4384_2386,Malahide,E820,0,4384_7778018_TxcB0A7C3AE-DE4B-4026-94AA-D657F951CFE4,4384_73 -4367_81485,317,4384_239,Greystones,E103,1,4384_7778018_Txc9A4A1FE4-45FF-4CBF-ACC0-6300F62BE05E,4384_2 -4367_81485,278,4384_2393,Howth,E913,0,4384_7778018_Txc060560C8-59E9-4D67-9956-E5248AAC2808,4384_50 -4367_81485,319,4384_2397,Howth,E913,0,4384_7778018_Txc551B7D50-9EE7-41F7-82AA-58784D946942,4384_50 -4367_81485,271,4384_2398,Howth,E913,0,4384_7778018_TxcEFCE9A23-9964-4F4F-9464-CE05560DD338,4384_50 -4367_81485,320,4384_2399,Howth,E913,0,4384_7778018_TxcB4B38280-EE1F-400A-A9B7-CDB26554FA5E,4384_50 -4367_81485,23,4384_24,Greystones,E100,1,4384_7778018_Txc4695B30F-9093-41FC-87E3-738612C4AF15,4384_2 -4367_81485,318,4384_240,Greystones,E103,1,4384_7778018_Txc87D162C6-56F1-4E73-9F6C-70A4C58986BD,4384_2 -4367_81485,314,4384_2402,Malahide,E832,0,4384_7778018_Txc59231136-C13F-4B96-88B6-F410FC88E406,4384_49 -4367_81485,315,4384_2405,Malahide,E832,0,4384_7778018_Txc8CA4C75B-7673-4F9F-AA2A-5D3594A3285B,4384_49 -4367_81485,211,4384_2406,Howth,E920,0,4384_7778018_TxcD8A92103-3B5C-4F0F-9A8F-BC1FE6E235F1,4384_55 -4367_81485,316,4384_2408,Howth,E920,0,4384_7778018_TxcE8466E40-5237-484D-889F-91FF0F70E3DF,4384_55 -4367_81485,138,4384_2409,Howth,E920,0,4384_7778018_Txc38292A25-8EA0-4316-AF04-BBF4431DB5F7,4384_55 -4367_81485,314,4384_241,Bray (Daly),E217,1,4384_7778018_TxcE7E08799-0197-4589-9D82-EBAE7D1D2861,4384_6 -4367_81485,317,4384_2410,Howth,E920,0,4384_7778018_Txc9C424780-8871-44F7-B33B-4366DF1EE60A,4384_55 -4367_81485,318,4384_2411,Howth,E920,0,4384_7778018_TxcB1083238-8573-4AFF-A248-ED9D0EE99E73,4384_55 -4367_81485,96,4384_2412,Howth,E920,0,4384_7778018_TxcB9788E6C-75B3-46E3-B52F-F248674F2571,4384_72 -4367_81485,214,4384_2413,Howth,E920,0,4384_7778018_TxcAF5E154B-013D-49D5-8618-E0F08F0B4139,4384_72 -4367_81485,211,4384_2414,Malahide,E821,0,4384_7778018_Txc41BE1915-FC39-4DD0-8856-96A91DC0E361,4384_51 -4367_81485,96,4384_2418,Malahide,E821,0,4384_7778018_TxcD0A71864-FB22-45C7-BD3F-B3F1DB245C56,4384_74 -4367_81485,214,4384_2419,Malahide,E821,0,4384_7778018_Txc288BCB87-6430-486F-A327-7AA1A78A7F2E,4384_74 -4367_81485,316,4384_2420,Malahide,E821,0,4384_7778018_Txc29375B4A-E271-416F-814A-EE248E2F4ABA,4384_51 -4367_81485,138,4384_2421,Malahide,E821,0,4384_7778018_TxcD8F46A06-67B7-4DF5-A68C-2EF2B909977F,4384_51 -4367_81485,317,4384_2422,Malahide,E821,0,4384_7778018_Txc738030DF-DE6A-4A40-A531-9F4BE4B2FF85,4384_51 -4367_81485,318,4384_2423,Malahide,E821,0,4384_7778018_TxcF6FEAE7A-B670-490F-82F9-94AAD7FA9195,4384_51 -4367_81485,314,4384_2424,Malahide,E833,0,4384_7778018_Txc1B1E6FE2-5161-4DB3-9222-546C3850339E,4384_51 -4367_81485,315,4384_2427,Malahide,E833,0,4384_7778018_Txc1CCBBD89-F41D-438D-AD2D-FC79A86DC3EF,4384_51 -4367_81485,314,4384_2432,Howth,E935,0,4384_7778018_Txc7A08C042-4EE5-4747-87EE-D612544189F1,4384_55 -4367_81485,315,4384_2435,Howth,E935,0,4384_7778018_Txc6FA23DFB-B36D-484F-84ED-26B85F71F51F,4384_55 -4367_81485,278,4384_2439,Malahide,E814,0,4384_7778018_Txc0D875C66-8382-44B4-BE55-BD203E5A7939,4384_49 -4367_81485,315,4384_244,Bray (Daly),E217,1,4384_7778018_TxcA8AB7A0D-4B34-4BB7-86F6-17BE77A6EF00,4384_6 -4367_81485,319,4384_2442,Malahide,E814,0,4384_7778018_Txc8FF9DA48-3588-4CA5-AD43-6C762AD9A167,4384_49 -4367_81485,271,4384_2443,Malahide,E814,0,4384_7778018_Txc569167F6-10E6-42EE-B257-7893AC6BB932,4384_49 -4367_81485,320,4384_2444,Malahide,E814,0,4384_7778018_Txc96B544C6-FCD9-42F4-85C7-EA8E81A19C2C,4384_49 -4367_81485,314,4384_2448,Howth,E936,0,4384_7778018_TxcC8771A4F-8C30-4C35-8FAE-E2716151174C,4384_55 -4367_81485,315,4384_2451,Howth,E936,0,4384_7778018_Txc70164E85-7ED2-4817-8083-584B0159C1E0,4384_55 -4367_81485,211,4384_2452,Howth,E921,0,4384_7778018_TxcE20C37C4-3E3A-4B65-A839-46F3AF8FA485,4384_55 -4367_81485,316,4384_2454,Howth,E921,0,4384_7778018_TxcB6C1401E-99FD-41FF-BA8D-5DE857A5615C,4384_55 -4367_81485,138,4384_2455,Howth,E921,0,4384_7778018_TxcA1E2B48E-7F1A-4446-887C-E33B7D07F6F4,4384_55 -4367_81485,317,4384_2456,Howth,E921,0,4384_7778018_Txc0B220BDB-D804-4B27-B178-AEFCC543E05F,4384_55 -4367_81485,318,4384_2457,Howth,E921,0,4384_7778018_Txc9B7AAB7A-FC11-4AC1-9A43-A87A6541EBB7,4384_55 -4367_81485,96,4384_2458,Howth,E921,0,4384_7778018_TxcF9CA4215-7715-46BD-A544-1E08854B6BE5,4384_72 -4367_81485,214,4384_2459,Howth,E921,0,4384_7778018_Txc244677D7-1DA4-49E5-8249-A4C09C192E5A,4384_72 -4367_81485,314,4384_2460,Howth,E937,0,4384_7778018_Txc90640B4E-430D-42D8-A195-EA5DD7730CCE,4384_50 -4367_81485,315,4384_2463,Howth,E937,0,4384_7778018_Txc16072565-D553-4FAE-B5D6-1274DE3AAE6C,4384_50 -4367_81485,314,4384_2466,Malahide,E834,0,4384_7778018_Txc93471BEA-11BE-4754-A129-A7D9CA6A5575,4384_49 -4367_81485,314,4384_247,Greystones,E109,1,4384_7778018_TxcD589D5DD-EB41-4478-9C20-D4E405EE4D52,4384_2 -4367_81485,315,4384_2471,Malahide,E834,0,4384_7778018_TxcCB911FFC-3E42-4B48-910F-719D9ED86226,4384_49 -4367_81485,96,4384_2472,Malahide,E860,0,4384_7778018_TxcE41E58E5-DF8F-439C-9C91-9DA63C2B72C9,4384_66 -4367_81485,214,4384_2473,Malahide,E860,0,4384_7778018_TxcFD3A8BAC-ADBA-416C-BBCC-437C8709ADA1,4384_66 -4367_81485,278,4384_2474,Howth,E914,0,4384_7778018_Txc8AD3A748-052C-48CC-8221-63B53AEFEB37,4384_55 -4367_81485,319,4384_2477,Howth,E914,0,4384_7778018_Txc0E442A11-D29D-4C0E-950C-06AF2C5BE7CC,4384_55 -4367_81485,271,4384_2478,Howth,E914,0,4384_7778018_Txc9B214FF7-2F79-4BA4-B413-961594B16772,4384_55 -4367_81485,320,4384_2479,Howth,E914,0,4384_7778018_TxcCDCE4A63-8414-4F20-A550-83BDFE596264,4384_55 -4367_81485,211,4384_2480,Malahide,E822,0,4384_7778018_Txc2E4DA82D-BD88-4B54-8CB7-7C0A23B86D90,4384_49 -4367_81485,96,4384_2485,Malahide,E822,0,4384_7778018_TxcE370BD60-AD21-4DF0-9BFA-B29E648E08A3,4384_73 -4367_81485,214,4384_2486,Malahide,E822,0,4384_7778018_Txc53D9A03F-D2FC-4585-A990-003D69131520,4384_73 -4367_81485,316,4384_2487,Malahide,E822,0,4384_7778018_Txc615DDDA9-67EE-434C-9D56-F49C21F530A9,4384_49 -4367_81485,138,4384_2488,Malahide,E822,0,4384_7778018_Txc266988BB-636B-498D-AB69-84FE97AC1D0F,4384_49 -4367_81485,317,4384_2489,Malahide,E822,0,4384_7778018_Txc31474E77-F612-428D-96D4-6848C9E0563C,4384_49 -4367_81485,318,4384_2490,Malahide,E822,0,4384_7778018_Txc876900EB-0FAF-4466-87C1-9F30AA868E56,4384_49 -4367_81485,278,4384_2497,Malahide,E815,0,4384_7778018_Txc82966F4A-D641-4EE0-8CE4-B93401338644,4384_51 -4367_81485,319,4384_2500,Malahide,E815,0,4384_7778018_Txc5EDA0CE1-3BDA-4BA9-B5F5-3797369358FA,4384_51 -4367_81485,271,4384_2501,Malahide,E815,0,4384_7778018_TxcC3EEE29E-6636-4152-9CF7-50ED77024F16,4384_51 -4367_81485,320,4384_2502,Malahide,E815,0,4384_7778018_Txc089220F9-9A89-463A-9BCE-03362FEFB687,4384_51 -4367_81485,314,4384_2504,Malahide,E835,0,4384_7778018_Txc261E5D57-74C0-42A4-A376-A2D9869B4975,4384_49 -4367_81485,315,4384_2507,Malahide,E835,0,4384_7778018_TxcB855844C-C2DF-451B-8189-0C6403570E48,4384_49 -4367_81485,211,4384_2508,Howth,E922,0,4384_7778018_Txc0FF117DF-5869-456F-B991-4026ECC467D5,4384_55 -4367_81485,96,4384_2510,Howth,E922,0,4384_7778018_Txc2C9684FA-93A9-456E-8858-3830F22F5E11,4384_72 -4367_81485,214,4384_2511,Howth,E922,0,4384_7778018_TxcA7835914-8FE8-4E83-81E3-95714345C8F1,4384_72 -4367_81485,316,4384_2512,Howth,E922,0,4384_7778018_TxcDC8137FE-1B8D-46AC-BAD2-E9D039A5F638,4384_55 -4367_81485,138,4384_2513,Howth,E922,0,4384_7778018_TxcDACEABE9-B5B4-4D2B-A8AE-F5F7F3288077,4384_55 -4367_81485,317,4384_2514,Howth,E922,0,4384_7778018_TxcE23D10AF-2729-47A3-AABC-D5EDA3C8FEAB,4384_55 -4367_81485,318,4384_2515,Howth,E922,0,4384_7778018_Txc7B0C42B0-7C55-4044-8FBD-5D9A02993065,4384_55 -4367_81485,96,4384_2516,Howth,E960,0,4384_7778018_Txc259E86B0-36A0-400A-8F5B-7E77608ED86B,4384_67 -4367_81485,214,4384_2517,Howth,E960,0,4384_7778018_Txc770E6F94-E292-4D2C-9C7F-DECDE813BC55,4384_67 -4367_81485,23,4384_2518,Malahide,E823,0,4384_7778018_Txc7701515E-B7A6-4BEF-A883-D45A4094BDC7,4384_51 -4367_81485,315,4384_252,Greystones,E109,1,4384_7778018_Txc80625AA9-153F-4284-9454-DEDFCD2EC25A,4384_2 -4367_81485,316,4384_2520,Malahide,E823,0,4384_7778018_Txc494691AD-E276-4F77-B1CC-AB341110388F,4384_51 -4367_81485,138,4384_2521,Malahide,E823,0,4384_7778018_Txc4090366C-948B-43D2-9C27-7D0B59AB62F6,4384_51 -4367_81485,317,4384_2522,Malahide,E823,0,4384_7778018_Txc07ABBF4E-51F3-4155-BA93-4A18E7463ADB,4384_51 -4367_81485,318,4384_2523,Malahide,E823,0,4384_7778018_TxcF4EE632F-3528-45FD-96BA-60EBD3A34C30,4384_51 -4367_81485,314,4384_2524,Malahide,E836,0,4384_7778018_Txc6A300C86-EEAA-4A9F-88BD-0EE63135B4CB,4384_51 -4367_81485,315,4384_2527,Malahide,E836,0,4384_7778018_Txc9DA56D73-7D58-49EA-B6F8-C4B512F268D0,4384_51 -4367_81485,278,4384_253,Bray (Daly),E204,1,4384_7778018_TxcA978E7DD-AB05-44AE-A0A2-BB5310D97EF3,4384_6 -4367_81485,314,4384_2532,Howth,E938,0,4384_7778018_Txc47EE1B52-EBD9-48E9-A1F6-07D61533BFD7,4384_55 -4367_81485,315,4384_2535,Howth,E938,0,4384_7778018_Txc2A90A377-CD84-4DF7-80E7-8D94E5860A8F,4384_55 -4367_81485,278,4384_2539,Howth,E915,0,4384_7778018_Txc997E174F-DA08-49D5-AD2C-341FDE750769,4384_55 -4367_81485,319,4384_2542,Howth,E915,0,4384_7778018_Txc998DB90E-5C59-4D7E-815F-12D78DC2C40F,4384_55 -4367_81485,271,4384_2543,Howth,E915,0,4384_7778018_Txc3C9A4200-6328-4CE8-90C7-7760BA08C316,4384_55 -4367_81485,320,4384_2544,Howth,E915,0,4384_7778018_Txc5EE70AE5-A1D7-4948-97CE-09F136413636,4384_55 -4367_81485,314,4384_2547,Howth,E939,0,4384_7778018_Txc3139949B-39A6-4A35-B73A-D8C249949883,4384_55 -4367_81485,315,4384_2550,Howth,E939,0,4384_7778018_TxcABCB457E-9FE9-4B59-AB0A-F6495AA5953D,4384_55 -4367_81485,23,4384_2551,Howth,E923,0,4384_7778018_Txc42CE1720-758A-4D2A-969E-2F1475F7BDB1,4384_55 -4367_81485,316,4384_2554,Howth,E923,0,4384_7778018_TxcD3D4FA65-24A6-4523-90F0-556C43B7D4A9,4384_55 -4367_81485,138,4384_2555,Howth,E923,0,4384_7778018_TxcF5B53F5D-1068-4C1F-8557-FF8BF58806F1,4384_55 -4367_81485,317,4384_2556,Howth,E923,0,4384_7778018_TxcC059E8BC-0253-454E-9754-AB46B61054A6,4384_55 -4367_81485,318,4384_2557,Howth,E923,0,4384_7778018_Txc15A49AE4-E54E-4A5E-A7AF-FB3784E3DAA6,4384_55 -4367_81485,314,4384_2558,Howth,E940,0,4384_7778018_TxcAC28D7F9-D852-4EFF-AFA9-623BA4DA9DE0,4384_50 -4367_81485,319,4384_256,Bray (Daly),E204,1,4384_7778018_TxcF848218F-E49D-4DA7-B934-53EE743CBCC4,4384_6 -4367_81485,315,4384_2561,Howth,E940,0,4384_7778018_TxcEBA3DC25-5082-421B-8A5E-A4C282292774,4384_50 -4367_81485,314,4384_2564,Malahide,E837,0,4384_7778018_Txc2A1B2699-178E-4186-BCED-5789C544F610,4384_49 -4367_81485,315,4384_2568,Malahide,E837,0,4384_7778018_TxcC8A43F5D-ABA7-4370-AEEF-960223D17A54,4384_49 -4367_81485,278,4384_2569,Malahide,E816,0,4384_7778018_Txc3F0B22EE-0C84-4D62-9FB1-8EA47D4B52F0,4384_49 -4367_81485,271,4384_257,Bray (Daly),E204,1,4384_7778018_Txc3519E0FF-D285-48C2-983D-E75871F956B6,4384_6 -4367_81485,319,4384_2572,Malahide,E816,0,4384_7778018_Txc21CD2140-8959-45A1-9820-2A824B359621,4384_49 -4367_81485,271,4384_2573,Malahide,E816,0,4384_7778018_Txc2079576D-3A95-4898-AA7C-2F7D7A2AC373,4384_49 -4367_81485,320,4384_2574,Malahide,E816,0,4384_7778018_TxcA431C1C4-A8BE-448F-8C66-4D6ACE518F16,4384_49 -4367_81485,23,4384_2575,Malahide,E824,0,4384_7778018_Txc057B01C4-10DF-49FB-935C-FAF8A9235860,4384_49 -4367_81485,320,4384_258,Bray (Daly),E204,1,4384_7778018_TxcF9DAE92E-0627-4824-873D-8FB481BDE896,4384_6 -4367_81485,327,4384_2580,Malahide,E824,0,4384_7778018_Txc3953C2E9-A416-4D78-87AB-3295F8A5C97D,4384_49 -4367_81485,138,4384_2581,Malahide,E824,0,4384_7778018_Txc01AB4426-50A0-4903-9D96-DAE8390E1DDE,4384_49 -4367_81485,317,4384_2582,Malahide,E824,0,4384_7778018_Txc007A6751-9ADA-41ED-A406-DE3A0EB45F85,4384_49 -4367_81485,318,4384_2583,Malahide,E824,0,4384_7778018_Txc1F196262-0721-4F72-B300-CF1571176172,4384_49 -4367_81485,324,4384_2584,Malahide,E824,0,4384_7778018_Txc7B9FBE4C-DD28-4077-AE2F-24F4BAA412AC,4384_90 -4367_81485,328,4384_2585,Malahide,E824,0,4384_7778018_TxcACFC0B58-0D9F-4F05-9FE1-092F6C119EA6,4384_90 -4367_81485,325,4384_2586,Malahide,E824,0,4384_7778018_Txc0F9131BA-0F77-43CE-8030-13A482CACDFE,4384_90 -4367_81485,23,4384_259,Bray (Daly),E210,1,4384_7778018_TxcD4B5AC6D-FAA8-45AB-B2AF-FDB740AF24C3,4384_7 -4367_81485,278,4384_2592,Howth,E916,0,4384_7778018_Txc4F598195-A328-4F89-A228-48FF815486D0,4384_50 -4367_81485,319,4384_2595,Howth,E916,0,4384_7778018_Txc8AF38A66-CE6F-47E9-B7D7-8BC23DB1E2AA,4384_50 -4367_81485,271,4384_2596,Howth,E916,0,4384_7778018_TxcEAC78183-A64F-4F52-9E38-0D670B133677,4384_50 -4367_81485,320,4384_2597,Howth,E916,0,4384_7778018_TxcC12C9DBA-64BB-4514-AC46-53772AB0FD70,4384_50 -4367_81485,314,4384_2598,Malahide,E838,0,4384_7778018_Txc8C7C759E-5C6D-43E7-8C97-97D73B2BCC87,4384_49 -4367_81485,315,4384_2602,Malahide,E838,0,4384_7778018_TxcDA5CD10D-3EB8-4CCA-8AA2-BC7114B7D47D,4384_49 -4367_81485,23,4384_2603,Howth,E924,0,4384_7778018_Txc714FCD08-166E-4199-9A01-A949CE23CA9D,4384_55 -4367_81485,327,4384_2606,Howth,E924,0,4384_7778018_Txc26766B1D-2FFE-42C0-AC1A-5A4EC8B56762,4384_55 -4367_81485,138,4384_2607,Howth,E924,0,4384_7778018_Txc8FC6554F-7380-4165-A0FB-FC6A298D0C8C,4384_55 -4367_81485,317,4384_2608,Howth,E924,0,4384_7778018_Txc627CA03F-5509-4526-90B4-69A51A832CBC,4384_55 -4367_81485,318,4384_2609,Howth,E924,0,4384_7778018_Txc4138DF4A-7F85-4F25-A49E-D308FE4327BE,4384_55 -4367_81485,324,4384_2610,Howth,E924,0,4384_7778018_TxcC0DC7AEC-3E6D-489E-BDCF-5C0BA37254D2,4384_72 -4367_81485,328,4384_2611,Howth,E924,0,4384_7778018_TxcD5134E9E-1477-4228-A3FF-4864101B50C9,4384_72 -4367_81485,325,4384_2612,Howth,E924,0,4384_7778018_Txc0DF88CDC-E0DA-4C27-BC85-B216D7EFD251,4384_72 -4367_81485,23,4384_2613,Malahide,E825,0,4384_7778018_Txc737258E7-CA1D-4562-8760-77BF3AFDDB89,4384_51 -4367_81485,327,4384_2616,Malahide,E825,0,4384_7778018_Txc99C0A9C4-FA01-4E56-9D17-C31F35EA5B3E,4384_51 -4367_81485,138,4384_2617,Malahide,E825,0,4384_7778018_Txc8B925261-E174-4AC0-84B8-17EAC0B17A26,4384_51 -4367_81485,317,4384_2618,Malahide,E825,0,4384_7778018_Txc83D827EF-1A29-4962-920A-A73E2D629F3D,4384_51 -4367_81485,318,4384_2619,Malahide,E825,0,4384_7778018_Txc576BA012-24BB-4D5C-A4B4-7945E7673BA3,4384_51 -4367_81485,316,4384_262,Bray (Daly),E210,1,4384_7778018_Txc02B2E59F-3EFA-4B18-9643-42A7C6B0927D,4384_7 -4367_81485,324,4384_2620,Malahide,E825,0,4384_7778018_Txc82611107-5918-4C03-A30C-1F33C993FFC7,4384_92 -4367_81485,328,4384_2621,Malahide,E825,0,4384_7778018_TxcDC0D6B5F-0DE1-42C9-A84E-35C4EB21AA35,4384_92 -4367_81485,325,4384_2622,Malahide,E825,0,4384_7778018_Txc99878C46-653A-4103-A7CB-F4868A6A48BA,4384_92 -4367_81485,314,4384_2623,Malahide,E839,0,4384_7778018_Txc3EC5FEA9-B777-455B-88A4-C7C12D5B342B,4384_51 -4367_81485,315,4384_2626,Malahide,E839,0,4384_7778018_Txc01D03A9C-7417-4BB3-A862-0A77FD392545,4384_51 -4367_81485,138,4384_263,Bray (Daly),E210,1,4384_7778018_TxcF082CE68-D9C9-4E13-878A-C84B3DEADFAE,4384_7 -4367_81485,314,4384_2631,Howth,E941,0,4384_7778018_Txc5FB77B1E-D5C1-4761-B2E1-1D76319E2714,4384_55 -4367_81485,315,4384_2634,Howth,E941,0,4384_7778018_TxcC0C9F7AE-46D7-4FAE-B4F8-DE49662BDEEA,4384_55 -4367_81485,278,4384_2638,Malahide,E817,0,4384_7778018_Txc84AF0190-7393-45AB-A03F-DB894234D66B,4384_49 -4367_81485,317,4384_264,Bray (Daly),E210,1,4384_7778018_Txc0BA42F89-3C9D-4474-89E4-3D0CA3B795CA,4384_7 -4367_81485,319,4384_2641,Malahide,E817,0,4384_7778018_TxcEA4BB0AF-8EAE-427B-873F-D8FACB49E651,4384_49 -4367_81485,271,4384_2642,Malahide,E817,0,4384_7778018_TxcE5037FED-4EFE-405E-8FE8-CEAE310B4430,4384_49 -4367_81485,320,4384_2643,Malahide,E817,0,4384_7778018_TxcCBB79C5A-68CB-4913-9C83-3BBF284AC85F,4384_49 -4367_81485,314,4384_2646,Howth,E942,0,4384_7778018_Txc186C5045-9A6C-4181-8AF6-496FDAB8C1F3,4384_55 -4367_81485,318,4384_265,Bray (Daly),E210,1,4384_7778018_Txc068FA1EE-B416-4EA5-9F6C-4F682E8B50BF,4384_7 -4367_81485,315,4384_2650,Howth,E942,0,4384_7778018_Txc6C12F964-EA68-4FBA-8CBE-654DC8AC6DA0,4384_55 -4367_81485,23,4384_2651,Howth,E925,0,4384_7778018_TxcB6FFCE56-3F82-4F7F-ABA0-32E0B6090740,4384_55 -4367_81485,327,4384_2654,Howth,E925,0,4384_7778018_TxcEA2EB668-EDE3-48B2-9179-1982506AE46E,4384_55 -4367_81485,138,4384_2655,Howth,E925,0,4384_7778018_Txc8AB3B0FF-C567-4185-87B4-268B62C47A08,4384_55 -4367_81485,317,4384_2656,Howth,E925,0,4384_7778018_TxcD5F3D4FF-A837-4774-8A79-15DAA523BA10,4384_55 -4367_81485,318,4384_2657,Howth,E925,0,4384_7778018_TxcC0340AEB-67BC-427F-953C-A71467E5B3C5,4384_55 -4367_81485,324,4384_2658,Howth,E925,0,4384_7778018_TxcA8523D14-5B08-490A-915A-705D5FAE261D,4384_72 -4367_81485,328,4384_2659,Howth,E925,0,4384_7778018_TxcE26092BB-B017-443F-8F00-9F53D81BE530,4384_72 -4367_81485,325,4384_2660,Howth,E925,0,4384_7778018_Txc8E29933E-AA04-4929-B9F1-7C06DC1D2ED4,4384_72 -4367_81485,314,4384_2661,Howth,E943,0,4384_7778018_Txc128C4BD8-8A7A-4782-BB95-EAD9D79AE944,4384_50 -4367_81485,315,4384_2665,Howth,E943,0,4384_7778018_TxcD10AB749-D038-416D-8F66-5109F9D32A5C,4384_50 -4367_81485,314,4384_2668,Malahide,E840,0,4384_7778018_Txc0E31B03B-0196-4DC8-A9CD-684D450541BD,4384_49 -4367_81485,315,4384_2672,Malahide,E840,0,4384_7778018_Txc4D4CE174-6E63-4E7D-9592-DC14CB8A954E,4384_49 -4367_81485,278,4384_2674,Howth,E917,0,4384_7778018_Txc8D116E49-8A9B-48CB-BAB8-35DE28CEC98A,4384_55 -4367_81485,319,4384_2677,Howth,E917,0,4384_7778018_Txc171DB49A-DF9A-49AB-A219-37C7975D9602,4384_55 -4367_81485,271,4384_2678,Howth,E917,0,4384_7778018_Txc7E5AEDA2-87ED-44B0-A20A-C3B1E2FD9B42,4384_55 -4367_81485,320,4384_2679,Howth,E917,0,4384_7778018_Txc2CF35FBA-AE2D-4AA6-BC11-9BBB4D751FA3,4384_55 -4367_81485,314,4384_268,Bray (Daly),E218,1,4384_7778018_TxcACAB3834-402C-45A7-A427-FD0B1433C271,4384_7 -4367_81485,23,4384_2680,Malahide,E826,0,4384_7778018_Txc413716B1-72A5-43AA-A446-2AF77A30970A,4384_49 -4367_81485,327,4384_2683,Malahide,E826,0,4384_7778018_TxcA3F4FE18-E602-4217-AF69-359B61DC0C18,4384_49 -4367_81485,138,4384_2684,Malahide,E826,0,4384_7778018_Txc3E0633EB-54DD-4C51-8DB3-2EBF184403F6,4384_49 -4367_81485,317,4384_2685,Malahide,E826,0,4384_7778018_TxcDB864A40-266A-448E-8F47-9F368637B3E1,4384_49 -4367_81485,318,4384_2686,Malahide,E826,0,4384_7778018_Txc76D5D27A-1CBD-4DEB-8E18-E7AF65FC31CE,4384_49 -4367_81485,324,4384_2689,Malahide,E826,0,4384_7778018_Txc3384BC2E-16E1-48B8-8A2B-EF6A241922B1,4384_90 -4367_81485,315,4384_269,Bray (Daly),E218,1,4384_7778018_Txc54D8D8B6-1F64-40CE-B180-D40A3CA0D61F,4384_7 -4367_81485,328,4384_2690,Malahide,E826,0,4384_7778018_TxcE6A2E9FA-BAF0-4A8D-980C-C274AF5C1B1F,4384_90 -4367_81485,325,4384_2691,Malahide,E826,0,4384_7778018_Txc57E1D1E5-25B1-463B-8CEF-91A3C80E16F6,4384_90 -4367_81485,278,4384_2692,Malahide,E818,0,4384_7778018_TxcEDB93E87-9625-434C-B0D9-1A8BDEE22B7C,4384_51 -4367_81485,319,4384_2697,Malahide,E818,0,4384_7778018_TxcA94FB163-B9C6-4A76-A07B-FA8EFD894D0C,4384_51 -4367_81485,271,4384_2698,Malahide,E818,0,4384_7778018_Txc7664C3A7-7B14-4BCC-8F39-2D647C09F3B9,4384_51 -4367_81485,320,4384_2699,Malahide,E818,0,4384_7778018_TxcD0198CF7-2838-4E8B-AA8A-378031D14B25,4384_51 -4367_81485,316,4384_27,Greystones,E100,1,4384_7778018_Txc085F146F-B070-4DF4-9FCF-2AFFB572B972,4384_2 -4367_81485,314,4384_2703,Dublin Connolly,E700,0,4384_7778018_TxcCC36A90F-78EB-4DDD-B5AA-9A6832517E3B,4384_46 -4367_81485,315,4384_2707,Dublin Connolly,E700,0,4384_7778018_TxcBC645C3C-22CD-4AA7-B201-A5D6EC0EF480,4384_46 -4367_81485,23,4384_2708,Howth,E926,0,4384_7778018_Txc1AEC4F44-7A89-4946-9D93-BB4D2170C605,4384_55 -4367_81485,327,4384_2711,Howth,E926,0,4384_7778018_TxcC634D592-2BA8-4762-B383-319F46A13F4D,4384_55 -4367_81485,138,4384_2712,Howth,E926,0,4384_7778018_TxcFBF4267A-C225-4C38-8C2A-7A4E6AE6A8F1,4384_55 -4367_81485,317,4384_2713,Howth,E926,0,4384_7778018_Txc48933FCC-201D-4F1F-B3AF-5AAA9E2555FA,4384_55 -4367_81485,318,4384_2714,Howth,E926,0,4384_7778018_Txc0E11AC09-5DE1-43C4-95D0-1868E0E1E49B,4384_55 -4367_81485,324,4384_2715,Howth,E926,0,4384_7778018_Txc4F959C5A-58E8-4D91-8757-928E0334B42D,4384_72 -4367_81485,328,4384_2716,Howth,E926,0,4384_7778018_Txc8C530998-93F3-49B0-99E8-5133647CA12B,4384_72 -4367_81485,325,4384_2717,Howth,E926,0,4384_7778018_TxcB3F5061E-E8CC-45CB-BB53-0971E9EF8276,4384_72 -4367_81485,324,4384_2718,Howth,E960,0,4384_7778018_TxcFFB6F71C-3AC6-4397-8385-BAFC30212D62,4384_67 -4367_81485,325,4384_2719,Howth,E960,0,4384_7778018_Txc7C1C6559-083D-4051-8E90-26070D44105F,4384_67 -4367_81485,314,4384_2720,Malahide,E842,0,4384_7778018_Txc3A6ACBF3-4338-4F33-9D06-8F2B0703FE3B,4384_51 -4367_81485,315,4384_2724,Malahide,E842,0,4384_7778018_Txc19D6D409-26BD-4E19-8882-CE0D9F982C2A,4384_51 -4367_81485,314,4384_2729,Howth,E944,0,4384_7778018_TxcADBA0D47-A9BD-4C68-9949-4E5F5AF9CE2F,4384_55 -4367_81485,315,4384_2733,Howth,E944,0,4384_7778018_Txc8ADEA8C0-544C-4F1A-9948-AFC771C17CE1,4384_55 -4367_81485,324,4384_2734,Malahide,E860,0,4384_7778018_Txc37A15D42-E0D4-43C2-9888-A20CDD4B8A19,4384_66 -4367_81485,325,4384_2735,Malahide,E860,0,4384_7778018_Txc29B3EF07-54CC-4E74-A858-584607D92EFB,4384_66 -4367_81485,23,4384_2736,Malahide,E827,0,4384_7778018_Txc073EB175-AB6D-4226-9790-A62222DCEBA5,4384_49 -4367_81485,316,4384_2738,Malahide,E827,0,4384_7778018_Txc849DE3B0-0858-4288-B03D-50F832E2BF68,4384_49 -4367_81485,138,4384_2739,Malahide,E827,0,4384_7778018_Txc61FDDE6C-E974-48A8-8F35-652107BE8145,4384_49 -4367_81485,314,4384_274,Bray (Daly),E219,1,4384_7778018_Txc4765D291-FAB5-48AD-8A01-20E17364FC15,4384_6 -4367_81485,317,4384_2740,Malahide,E827,0,4384_7778018_Txc57E997DA-3EE1-40F9-BD64-3DAE145C1C38,4384_49 -4367_81485,318,4384_2741,Malahide,E827,0,4384_7778018_Txc5765F9EC-3129-44C0-B311-EE0933492425,4384_49 -4367_81485,23,4384_2743,Howth,E927,0,4384_7778018_Txc1DB18F3D-8BFA-4CAE-B2EA-76EA0AFED52B,4384_50 -4367_81485,316,4384_2745,Howth,E927,0,4384_7778018_Txc2B6EF096-2861-480F-8A00-1E2F4CCB51E2,4384_50 -4367_81485,138,4384_2746,Howth,E927,0,4384_7778018_Txc4E1CE757-E3CE-4AE2-B1EA-7DF4CF409975,4384_50 -4367_81485,317,4384_2747,Howth,E927,0,4384_7778018_Txc9B8FE261-5CED-4368-90BE-77B76D18758A,4384_50 -4367_81485,318,4384_2748,Howth,E927,0,4384_7778018_Txc97EC82F5-60C6-44A8-82A1-32481801042F,4384_50 -4367_81485,315,4384_275,Bray (Daly),E219,1,4384_7778018_TxcE88AF65A-7A24-44E4-BAC8-2C2CEBF82B8E,4384_6 -4367_81485,278,4384_2751,Howth,E918,0,4384_7778018_Txc29AB6D4D-30B4-438C-8A93-C30294661858,4384_55 -4367_81485,319,4384_2754,Howth,E918,0,4384_7778018_TxcAE993BBD-3730-46E3-8D00-4442F8D65FB0,4384_55 -4367_81485,271,4384_2755,Howth,E918,0,4384_7778018_TxcF886E208-3E83-408B-BCD8-3CAD7E84518B,4384_55 -4367_81485,320,4384_2756,Howth,E918,0,4384_7778018_Txc13ED4762-E334-4EB4-9CD3-A2E6E04B2608,4384_55 -4367_81485,314,4384_2759,Howth,E945,0,4384_7778018_Txc647FC98D-A859-46E7-9DC6-09B26727ADEC,4384_55 -4367_81485,23,4384_276,Bray (Daly),E211,1,4384_7778018_Txc03BC55B5-251A-4266-8F90-1DD80A63C252,4384_6 -4367_81485,315,4384_2762,Howth,E945,0,4384_7778018_Txc2A95832D-790B-4D12-9927-397A74912736,4384_55 -4367_81485,278,4384_2766,Malahide,E819,0,4384_7778018_Txc8CE98FF6-63DC-45BE-BE89-B30928BF9AA9,4384_49 -4367_81485,319,4384_2769,Malahide,E819,0,4384_7778018_Txc2CD73479-D6DB-4FCE-B390-61E304574C93,4384_49 -4367_81485,271,4384_2770,Malahide,E819,0,4384_7778018_TxcA009AFD8-44B6-45CE-9A2F-E76124F6B160,4384_49 -4367_81485,320,4384_2771,Malahide,E819,0,4384_7778018_TxcB0D1D4AC-F05D-4639-9B5E-6DB9C94418E6,4384_49 -4367_81485,23,4384_2772,Malahide,E828,0,4384_7778018_TxcA8CDFB48-4BF9-4B1B-B387-94318699E0A3,4384_49 -4367_81485,316,4384_2776,Malahide,E828,0,4384_7778018_Txc0738ECF9-5F51-4373-BA04-96E9605C130F,4384_49 -4367_81485,138,4384_2777,Malahide,E828,0,4384_7778018_Txc58AABD58-C100-4133-99F6-9B2B859367BB,4384_49 -4367_81485,317,4384_2778,Malahide,E828,0,4384_7778018_Txc3167807F-B4F9-4316-B0E1-9D7068C51175,4384_49 -4367_81485,318,4384_2779,Malahide,E828,0,4384_7778018_Txc25FD7B26-CAEE-465B-B984-F00470D53C5B,4384_49 -4367_81485,314,4384_2780,Malahide,E843,0,4384_7778018_TxcF551E9AB-BCB9-45E8-99DE-4EF5D117436D,4384_49 -4367_81485,315,4384_2783,Malahide,E843,0,4384_7778018_TxcD96B8299-F7DA-4982-A70F-FC975C3F6816,4384_49 -4367_81485,278,4384_2786,Howth,E919,0,4384_7778018_Txc15544FEB-E05C-4EBB-9A2E-397482A56214,4384_50 -4367_81485,319,4384_2789,Howth,E919,0,4384_7778018_Txc80BA779E-A3B3-4353-AE03-562E33908EDF,4384_50 -4367_81485,316,4384_279,Bray (Daly),E211,1,4384_7778018_TxcBD6B1898-704A-47A9-A6A9-F3DF7C3B54BE,4384_6 -4367_81485,271,4384_2790,Howth,E919,0,4384_7778018_TxcF0387DF4-45B4-4EFD-BD36-24AD3C715C49,4384_50 -4367_81485,320,4384_2791,Howth,E919,0,4384_7778018_Txc47F124C7-B357-4407-B323-1A5C9DB713E3,4384_50 -4367_81485,329,4384_2796,Howth,E946,0,4384_7778018_Txc6DCD7DCE-6AF9-43CB-82B5-F4E00CADA755,4384_55 -4367_81485,138,4384_28,Greystones,E100,1,4384_7778018_Txc7DBFE3A6-E6F0-4025-BC21-5AFDB5BB4E6F,4384_2 -4367_81485,138,4384_280,Bray (Daly),E211,1,4384_7778018_Txc487ECA82-37AA-461C-BDBF-1E7943B8EDE4,4384_6 -4367_81485,330,4384_2801,Howth,E946,0,4384_7778018_Txc8D372557-518D-40D3-9421-4693D6C8E024,4384_72 -4367_81485,315,4384_2802,Howth,E946,0,4384_7778018_TxcC2860058-269E-4642-85FF-3DA89E5A3F1D,4384_55 -4367_81485,23,4384_2803,Howth,E928,0,4384_7778018_Txc8058A59B-5A3E-452C-BEB1-CC0FC2AFA9C1,4384_55 -4367_81485,316,4384_2808,Howth,E928,0,4384_7778018_Txc5F52B6EB-90F1-4FBC-A686-04BFB153B7C2,4384_55 -4367_81485,138,4384_2809,Howth,E928,0,4384_7778018_Txc0DCD4D85-CF99-4020-A125-B68BFBC01672,4384_55 -4367_81485,317,4384_281,Bray (Daly),E211,1,4384_7778018_Txc2D892E9F-98CE-4AD1-A316-0991FA37EEE8,4384_6 -4367_81485,317,4384_2810,Howth,E928,0,4384_7778018_Txc2B60D718-3788-4735-8208-21FA3D57348F,4384_55 -4367_81485,318,4384_2811,Howth,E928,0,4384_7778018_TxcD7F9E417-3F26-4DDE-BB58-8F576E6EABEB,4384_55 -4367_81485,329,4384_2812,Malahide,E844,0,4384_7778018_TxcE94CA102-C9C3-4648-82AD-07022F09C390,4384_51 -4367_81485,23,4384_2813,Malahide,E829,0,4384_7778018_Txc9562902A-9F14-4C0D-9C41-6053B02BCEE1,4384_52 -4367_81485,330,4384_2818,Malahide,E844,0,4384_7778018_TxcD410A1FA-E913-4866-BB6D-C27E310C2520,4384_92 -4367_81485,315,4384_2819,Malahide,E844,0,4384_7778018_Txc5DBFFEA4-DDF5-4DC1-AA45-82C89F523D98,4384_51 -4367_81485,318,4384_282,Bray (Daly),E211,1,4384_7778018_Txc7B1206CA-4157-402D-A9DE-385A71D31258,4384_6 -4367_81485,316,4384_2820,Malahide,E829,0,4384_7778018_TxcA547F465-5CCF-432A-A286-FE2DB4AB45A9,4384_52 -4367_81485,138,4384_2821,Malahide,E829,0,4384_7778018_TxcC2A0127F-3E6C-4434-9D90-CD45312CB240,4384_95 -4367_81485,317,4384_2822,Malahide,E829,0,4384_7778018_Txc9014938C-DEDC-4E5B-8208-2C4DD48409CB,4384_52 -4367_81485,318,4384_2823,Malahide,E829,0,4384_7778018_Txc7A51EC3D-0011-4817-9807-7B5796CFD5FD,4384_52 -4367_81485,278,4384_283,Bray (Daly),E205,1,4384_7778018_TxcD50B3C8B-F1C0-4ABD-B1E0-EEF04675A4ED,4384_7 -4367_81485,278,4384_2837,Malahide,E820,0,4384_7778018_Txc24879438-1204-4000-9E85-EB74DD391874,4384_49 -4367_81485,319,4384_2840,Malahide,E820,0,4384_7778018_Txc7B462355-4C95-43E5-92D7-12FEFDAF405C,4384_49 -4367_81485,271,4384_2841,Malahide,E820,0,4384_7778018_TxcCCA4715C-6477-4188-9877-B21580756CA3,4384_49 -4367_81485,320,4384_2842,Malahide,E820,0,4384_7778018_Txc0B1EB585-3B1A-4C6A-B98A-71E339D197FE,4384_49 -4367_81485,329,4384_2845,Howth,E947,0,4384_7778018_Txc31D7B553-43EA-4938-8077-0D7ED88CA9E0,4384_55 -4367_81485,23,4384_2846,Howth,E929,0,4384_7778018_TxcE0652158-915A-40C3-A774-C283D4BD3B6B,4384_57 -4367_81485,330,4384_2854,Howth,E947,0,4384_7778018_Txc3BA8C9A9-5699-495B-B88C-03D0C36F599D,4384_93 -4367_81485,315,4384_2855,Howth,E947,0,4384_7778018_Txc8776305D-A983-42D6-B965-303AFFD62726,4384_55 -4367_81485,316,4384_2856,Howth,E929,0,4384_7778018_Txc64B8931B-14F8-45A7-8B51-971BD47A9E67,4384_57 -4367_81485,138,4384_2857,Dublin Connolly,E929,0,4384_7778018_TxcF8947C3A-7FBC-45BF-BE94-98790A10EC1F,4384_78 -4367_81485,317,4384_2858,Howth,E929,0,4384_7778018_Txc483221D0-9993-49BB-860B-68362D5B94BC,4384_57 -4367_81485,331,4384_2859,Howth,E929,0,4384_7778018_Txc9F1C7373-9C3B-4F15-A29E-4A81AD4A872D,4384_57 -4367_81485,332,4384_2860,Dublin Connolly,E929,0,4384_7778018_TxcDCEFE0EC-1E23-4629-B02F-C847B353BDB7,4384_96 -4367_81485,278,4384_2861,Howth,E920,0,4384_7778018_TxcF9EC8070-0E3C-478B-9BA4-87FC68B9B727,4384_50 -4367_81485,319,4384_2864,Howth,E920,0,4384_7778018_Txc5FE9D331-0FE7-430B-9511-7115891A5C55,4384_50 -4367_81485,271,4384_2865,Howth,E920,0,4384_7778018_TxcA4EF2610-1E7F-47E9-BB87-5547DDD394C9,4384_50 -4367_81485,320,4384_2866,Howth,E920,0,4384_7778018_Txc565A7E29-24E4-4CDF-9004-3A41ABC9243E,4384_50 -4367_81485,329,4384_2870,Malahide,E845,0,4384_7778018_Txc201EF543-5927-4B22-9142-541331B8E28E,4384_49 -4367_81485,23,4384_2871,Malahide,E830,0,4384_7778018_Txc5F10F743-6B9B-4C90-B174-F6DA4EE93BB6,4384_53 -4367_81485,319,4384_288,Bray (Daly),E205,1,4384_7778018_TxcA0F1938B-3CFD-4EAA-8AB5-1ECB4CF93360,4384_7 -4367_81485,330,4384_2881,Malahide,E845,0,4384_7778018_Txc326D8DED-90D5-4CD3-ABA2-BBDD9833BD8A,4384_91 -4367_81485,315,4384_2882,Malahide,E845,0,4384_7778018_Txc1C1ACE7A-E3F9-4C02-BEE4-82B68491B5DE,4384_49 -4367_81485,316,4384_2883,Malahide,E830,0,4384_7778018_TxcFC29255B-0E08-4DEA-A2E2-75EE2230C047,4384_53 -4367_81485,317,4384_2884,Malahide,E830,0,4384_7778018_Txc5A77821A-0BB6-49CC-BFC8-DB1B4E408463,4384_53 -4367_81485,331,4384_2885,Malahide,E830,0,4384_7778018_TxcF04AE0F3-F61D-4FD8-B0D6-DFAA73EA832E,4384_53 -4367_81485,329,4384_2886,Howth,E948,0,4384_7778018_Txc675A0A2E-07F4-4C18-A5C9-A9C483A958F4,4384_50 -4367_81485,271,4384_289,Bray (Daly),E205,1,4384_7778018_TxcE35CB53E-E9EA-4883-908D-B6FCBCA58F49,4384_7 -4367_81485,330,4384_2891,Howth,E948,0,4384_7778018_Txc6D42FB6E-2FC5-48CB-B506-8B6FE77146DB,4384_94 -4367_81485,315,4384_2892,Howth,E948,0,4384_7778018_TxcA9D3A5D3-49CA-4F64-9D41-B21E362A3F88,4384_50 -4367_81485,23,4384_2897,Howth,E930,0,4384_7778018_Txc4168BDE5-76C3-4ABA-84BE-A91477447D95,4384_55 -4367_81485,316,4384_2899,Howth,E930,0,4384_7778018_Txc22F714D0-1907-44D4-B8B6-408EE668B9E5,4384_55 -4367_81485,317,4384_29,Greystones,E100,1,4384_7778018_Txc678DFC50-3C19-421B-B3C0-288143482C84,4384_2 -4367_81485,320,4384_290,Bray (Daly),E205,1,4384_7778018_Txc4024DB7E-FAF6-4716-97FD-7F1BE27764CE,4384_7 -4367_81485,317,4384_2900,Howth,E930,0,4384_7778018_Txc7609F7A7-D58C-40FB-A87F-26D6ADAFE93A,4384_55 -4367_81485,331,4384_2901,Howth,E930,0,4384_7778018_TxcBDA76D2D-3C3A-4F3B-9D00-746BC2E808CB,4384_55 -4367_81485,23,4384_2902,Malahide,E831,0,4384_7778018_Txc5FB32FC7-8D47-4A23-A8CD-FE6FB476B494,4384_51 -4367_81485,316,4384_2905,Malahide,E831,0,4384_7778018_Txc8CA00EBC-7630-4723-BFA2-5208B17E5CAE,4384_51 -4367_81485,317,4384_2906,Malahide,E831,0,4384_7778018_TxcD740A17B-E1F6-43E7-A6A3-998FDF808D40,4384_51 -4367_81485,331,4384_2907,Malahide,E831,0,4384_7778018_Txc24402AA4-165F-46D9-9E3C-699B1B4186A3,4384_51 -4367_81485,278,4384_2912,Howth,E921,0,4384_7778018_Txc04317BD5-6803-41DF-A963-020B53206A7B,4384_50 -4367_81485,319,4384_2915,Howth,E921,0,4384_7778018_Txc6FB148F5-0F3C-49D4-9E7C-C63164C5AC8E,4384_50 -4367_81485,271,4384_2916,Howth,E921,0,4384_7778018_Txc6621B202-2AD3-486C-A604-45BAAB751F42,4384_50 -4367_81485,320,4384_2917,Howth,E921,0,4384_7778018_Txc5FF78545-407F-40F5-A3F1-2595C5D1D2A8,4384_50 -4367_81485,314,4384_2921,Malahide,E846,0,4384_7778018_TxcB9AA04A1-BB1B-4F73-A615-85F00CD4EC49,4384_49 -4367_81485,315,4384_2926,Malahide,E846,0,4384_7778018_TxcECCB4DC1-3426-4FE9-888C-BD7104B93A27,4384_49 -4367_81485,314,4384_293,Greystones,E110,1,4384_7778018_Txc41B9B985-B268-4D0A-A036-F6C1CE1E89D5,4384_2 -4367_81485,330,4384_2932,Malahide,E860,0,4384_7778018_Txc0EA8E53A-1276-45C8-A7E8-9C3A4ED56475,4384_66 -4367_81485,314,4384_2935,Howth,E949,0,4384_7778018_Txc1155D55F-ADD6-48F7-A89E-064CD9F0283D,4384_50 -4367_81485,315,4384_294,Greystones,E110,1,4384_7778018_TxcE69CA8F5-73BD-4492-8023-ED4F2A401139,4384_2 -4367_81485,315,4384_2940,Howth,E949,0,4384_7778018_Txc5324CF03-94D8-456C-9A1E-242051879418,4384_50 -4367_81485,23,4384_2942,Howth,E931,0,4384_7778018_Txc7A8A4CC2-C622-44D2-8AA7-E481102107ED,4384_55 -4367_81485,316,4384_2944,Howth,E931,0,4384_7778018_Txc0AF3E4CD-08F3-4B9D-9299-71A1746DD4AE,4384_55 -4367_81485,317,4384_2945,Howth,E931,0,4384_7778018_Txc8D3E97AA-8664-4D71-9CBB-C188A5BF68BC,4384_55 -4367_81485,331,4384_2946,Howth,E931,0,4384_7778018_Txc6B395F06-C737-4D43-85FC-FAC89419C949,4384_55 -4367_81485,278,4384_2952,Malahide,E822,0,4384_7778018_TxcD94E3AEB-6E46-4DDA-A76D-0C4ADD10A02A,4384_49 -4367_81485,319,4384_2955,Malahide,E822,0,4384_7778018_TxcD8511E1A-A327-4878-B593-1E1620BF2FD9,4384_49 -4367_81485,271,4384_2956,Malahide,E822,0,4384_7778018_Txc9C94E515-E4C1-44DA-9D80-E1565E0B854D,4384_49 -4367_81485,320,4384_2957,Malahide,E822,0,4384_7778018_TxcA2051CE0-1A02-4443-9B25-055D6FD36821,4384_49 -4367_81485,314,4384_2960,Malahide,E847,0,4384_7778018_Txc50914934-6B78-4470-9C1B-8F0C78DB9950,4384_49 -4367_81485,23,4384_2961,Malahide,E832,0,4384_7778018_Txc5EC71C7C-7347-43B2-81D3-DE945F60C2C1,4384_53 -4367_81485,315,4384_2967,Malahide,E847,0,4384_7778018_TxcD3B64EF8-4F5B-45E2-9E58-07B66EFFEF7F,4384_49 -4367_81485,316,4384_2968,Malahide,E832,0,4384_7778018_TxcBEB82DB9-4786-4039-B85A-A04D6B43E614,4384_53 -4367_81485,317,4384_2969,Malahide,E832,0,4384_7778018_Txc97F84320-21B1-42D1-A8A8-354BFF5254BE,4384_53 -4367_81485,331,4384_2970,Malahide,E832,0,4384_7778018_Txc9858351C-AC88-44D2-85B2-63F4A7E8AEE3,4384_53 -4367_81485,314,4384_2975,Howth,E950,0,4384_7778018_TxcBA0C47AA-C6C3-4265-95B0-4781403DA472,4384_50 -4367_81485,278,4384_2976,Howth,E922,0,4384_7778018_TxcF265210B-3BF4-4092-9C32-3179A7AF41F4,4384_58 -4367_81485,23,4384_298,Bray (Daly),E212,1,4384_7778018_TxcFD01338E-CBE2-44AC-BF76-4B9C026E4D96,4384_7 -4367_81485,315,4384_2982,Howth,E950,0,4384_7778018_Txc079FCD82-481F-4FCB-BBA7-372EE54615E1,4384_50 -4367_81485,319,4384_2983,Howth,E922,0,4384_7778018_TxcEA9E32CD-8D7C-44D0-BA2B-A356BD566A36,4384_58 -4367_81485,271,4384_2984,Howth,E922,0,4384_7778018_Txc9147FC96-684B-453F-A9EF-8CA7F7128E63,4384_58 -4367_81485,320,4384_2985,Howth,E922,0,4384_7778018_Txc35490B1E-5D22-4CA0-B608-9700232F39EF,4384_58 -4367_81485,23,4384_2990,Howth,E932,0,4384_7778018_TxcA4F09516-C6BF-4673-A049-E73C8DE9DAA4,4384_55 -4367_81485,316,4384_2992,Howth,E932,0,4384_7778018_Txc7D089B97-0E03-40E8-8D7A-0E17F8B3C499,4384_55 -4367_81485,317,4384_2993,Howth,E932,0,4384_7778018_Txc1B49DA7F-7913-453F-A26A-2F186B7AD49F,4384_55 -4367_81485,331,4384_2994,Howth,E932,0,4384_7778018_Txc8A612ABC-B57C-4728-8DBB-B6F8766DA149,4384_55 -4367_81485,23,4384_2995,Malahide,E833,0,4384_7778018_Txc15A96796-2F99-46DA-96E7-E23F380C0C76,4384_51 -4367_81485,316,4384_2997,Malahide,E833,0,4384_7778018_Txc5B51F9C6-CFF5-4035-9E16-E1CA28D456BA,4384_51 -4367_81485,317,4384_2998,Malahide,E833,0,4384_7778018_Txc21510493-866E-4079-A961-78886ADFE3F3,4384_51 -4367_81485,331,4384_2999,Malahide,E833,0,4384_7778018_TxcD50E6640-B7D1-4C2F-B8BF-CF90F29BC891,4384_51 -4367_81485,318,4384_30,Greystones,E100,1,4384_7778018_Txc3D7F2703-02B1-4AAF-AF89-CD362FEDC910,4384_2 -4367_81485,314,4384_3005,Malahide,E848,0,4384_7778018_Txc7AF5F507-69FF-454B-BB97-29D40B2138CB,4384_49 -4367_81485,315,4384_3008,Malahide,E848,0,4384_7778018_Txc68A8C25B-A76D-4262-8035-5EB841E72BDD,4384_49 -4367_81485,316,4384_301,Bray (Daly),E212,1,4384_7778018_Txc49AB11CF-7A1B-4DF7-9895-7938B74D7351,4384_7 -4367_81485,314,4384_3012,Howth,E951,0,4384_7778018_Txc755FA53D-FC8F-4599-87AF-A5D346FCB72D,4384_50 -4367_81485,315,4384_3017,Howth,E951,0,4384_7778018_Txc084F4EC1-C9EB-4B37-A19F-96FA9321C036,4384_50 -4367_81485,278,4384_3018,Howth,E923,0,4384_7778018_Txc0DD8CC00-C74E-4B8A-9D96-5B65CFA1466A,4384_50 -4367_81485,138,4384_302,Bray (Daly),E212,1,4384_7778018_TxcAE017B88-01F5-4093-A8AD-BC4E8CD506DF,4384_7 -4367_81485,319,4384_3021,Howth,E923,0,4384_7778018_Txc9A05C234-5E10-4D88-A1D4-994F0374B28F,4384_50 -4367_81485,271,4384_3022,Howth,E923,0,4384_7778018_TxcE864B110-A33D-4031-B4DF-FE178A9FC4D3,4384_50 -4367_81485,320,4384_3023,Howth,E923,0,4384_7778018_TxcC1B71ED1-A6FF-477E-B903-89D30CD55237,4384_50 -4367_81485,23,4384_3024,Howth,E933,0,4384_7778018_Txc274CA771-F7BC-4BC0-9AFF-E8579E013F0F,4384_55 -4367_81485,316,4384_3026,Howth,E933,0,4384_7778018_TxcAE7CE5C7-D800-437C-845C-17993DA4B6AE,4384_55 -4367_81485,317,4384_3027,Howth,E933,0,4384_7778018_TxcAB24D548-1A0D-465E-BC91-870A4FA1AF5B,4384_55 -4367_81485,331,4384_3028,Howth,E933,0,4384_7778018_Txc5E8F0F70-C6F3-4FFF-AFCD-D4E58B79502B,4384_55 -4367_81485,317,4384_303,Bray (Daly),E212,1,4384_7778018_TxcC561D1C0-EB7F-4917-82FD-C645E42B4BB4,4384_7 -4367_81485,23,4384_3031,Dublin Connolly,E714,0,4384_7778018_Txc3C484FD8-A322-4954-9DE3-214336A23BB3,4384_46 -4367_81485,316,4384_3033,Dublin Connolly,E714,0,4384_7778018_Txc5CCB526C-DB61-4262-9BD6-73C3EED43A11,4384_46 -4367_81485,317,4384_3034,Dublin Connolly,E714,0,4384_7778018_Txc70EECB5D-7E0A-4AE6-BE4F-8C0AF30B1ACD,4384_46 -4367_81485,331,4384_3035,Dublin Connolly,E714,0,4384_7778018_Txc4189B2F4-DDD0-47D7-907E-E02B45AEC712,4384_46 -4367_81485,314,4384_3038,Dublin Connolly,E701,0,4384_7778018_TxcB6ACA7AE-1514-4A99-B888-6563D74FD888,4384_47 -4367_81485,23,4384_3039,Dublin Connolly,E712,0,4384_7778018_Txc0BF8A057-E817-4499-83AD-C40AC5F2B405,4384_48 -4367_81485,318,4384_304,Bray (Daly),E212,1,4384_7778018_Txc339DA505-BD35-45A3-BCDB-57CCDD80190C,4384_7 -4367_81485,315,4384_3042,Dublin Connolly,E701,0,4384_7778018_Txc8163E044-5082-4680-8FDC-2B80F345A991,4384_47 -4367_81485,316,4384_3043,Dublin Connolly,E712,0,4384_7778018_TxcAC45D12C-BACB-467C-826B-01132CF6F579,4384_48 -4367_81485,317,4384_3044,Dublin Connolly,E712,0,4384_7778018_TxcA4768CB8-61C3-429C-9C32-957979DB4372,4384_48 -4367_81485,331,4384_3045,Dublin Connolly,E712,0,4384_7778018_TxcC3AB3EC1-B0AF-4BDE-B729-2DE7E3F1CE27,4384_48 -4367_81485,278,4384_3049,Dublin Connolly,E725,0,4384_7778018_Txc74AF44FB-2CFA-4DCD-B047-44DBB43C7CDC,4384_46 -4367_81485,314,4384_305,Bray (Daly),E220,1,4384_7778018_TxcF2D054B6-D584-4C65-AB3E-A6FF61F8A6AC,4384_6 -4367_81485,319,4384_3052,Dublin Connolly,E725,0,4384_7778018_Txc29F19A8D-552E-4403-B2A0-E66C538872AB,4384_46 -4367_81485,271,4384_3053,Dublin Connolly,E725,0,4384_7778018_Txc887EB82B-2454-4CA5-B5C3-3879DED5EA4F,4384_46 -4367_81485,320,4384_3054,Dublin Connolly,E725,0,4384_7778018_Txc9EFB4BB3-BC86-4294-959E-0866DC77A6E8,4384_46 -4367_81459,314,4384_3065,Dublin Connolly,A101,1,4384_7778018_Txc53A4ABFA-6C46-46BA-9894-B3271C726335,4384_97 -4367_81459,23,4384_3066,Dublin Connolly,A101,1,4384_7778018_TxcD62E838E-1A20-4BA7-9B71-24DE2F9F7B25,4384_98 -4367_81459,334,4384_3076,Dublin Connolly,A101,1,4384_7778018_Txc826391FA-9897-4F14-BD64-23A300F587A8,4384_97 -4367_81459,316,4384_3077,Dublin Connolly,A101,1,4384_7778018_Txc86BA7998-AEC7-418B-BCE6-F1034C31DB8D,4384_98 -4367_81459,335,4384_3078,Dublin Connolly,A101,1,4384_7778018_Txc44886CAF-5005-4F00-BF35-F8F52F80C4BF,4384_98 -4367_81459,318,4384_3079,Dublin Connolly,A101,1,4384_7778018_Txc517FA1DB-081D-4CF3-8BF2-DDA48BC2DB0D,4384_98 -4367_81485,315,4384_309,Bray (Daly),E220,1,4384_7778018_Txc1D0C1A64-6804-457F-9670-72BAE0E6D6BE,4384_6 -4367_81459,314,4384_3094,Dublin Connolly,A103,1,4384_7778018_TxcD1C3AB89-41D6-48B9-8E7F-2EBD692A077D,4384_97 -4367_81459,23,4384_3095,Dublin Connolly,A103,1,4384_7778018_TxcA01DC61F-1E49-4B84-A469-1C0361312F4B,4384_98 -4367_81459,334,4384_3096,Dublin Connolly,A103,1,4384_7778018_Txc47691C3D-4B7E-4B7F-9FD5-6C29E8CBF3BB,4384_97 -4367_81459,316,4384_3097,Dublin Connolly,A103,1,4384_7778018_Txc8C8F36D9-228C-4502-BB8F-349C3F39D785,4384_98 -4367_81459,335,4384_3098,Dublin Connolly,A103,1,4384_7778018_Txc625B7EA1-0191-43DC-8549-DD6E9D2A1BCB,4384_98 -4367_81459,318,4384_3099,Dublin Connolly,A103,1,4384_7778018_Txc499AE110-D11C-45E7-B61C-B12F5A6E1E22,4384_98 -4367_81485,314,4384_31,Greystones,E103,1,4384_7778018_TxcA029BAEB-CCA7-4A53-9B91-592418043105,4384_1 -4367_81485,278,4384_310,Greystones,E106,1,4384_7778018_Txc53E65F11-227B-4788-B0DF-6862AE68083C,4384_2 -4367_81459,314,4384_3109,Dublin Connolly,A105,1,4384_7778018_TxcC510A05B-FC15-47E5-84C6-77E0DEA6F72B,4384_97 -4367_81459,23,4384_3110,Dublin Connolly,A105,1,4384_7778018_Txc4C2A30D6-9B05-4E25-8C32-C978D89D2BC1,4384_98 -4367_81459,334,4384_3120,Dublin Connolly,A105,1,4384_7778018_TxcB8F62935-D441-44B2-9F46-65EE0F27426E,4384_97 -4367_81459,316,4384_3121,Dublin Connolly,A105,1,4384_7778018_TxcC637089B-C1BC-47EF-8D05-20B51FDF2799,4384_98 -4367_81459,335,4384_3122,Dublin Connolly,A105,1,4384_7778018_TxcD16CAE6C-AC5E-4ACA-A59B-2056419FF4C4,4384_98 -4367_81459,318,4384_3123,Dublin Connolly,A105,1,4384_7778018_TxcF627730A-D40B-4AC3-86E1-A196DE07FA3A,4384_98 -4367_81459,278,4384_3124,Dublin Connolly,A141,1,4384_7778018_Txc0366757D-EF20-41B5-BE1C-4E665EA2EED0,4384_99 -4367_81485,319,4384_313,Greystones,E106,1,4384_7778018_TxcEBBCF159-6FB7-40CE-91D3-2E57B547468B,4384_2 -4367_81459,319,4384_3132,Dublin Connolly,A141,1,4384_7778018_Txc1778BAEE-A23F-4AA2-A18D-65BC9F8BB86D,4384_99 -4367_81485,271,4384_314,Greystones,E106,1,4384_7778018_Txc235375E3-61C8-4FDD-A48D-46842A97F472,4384_2 -4367_81485,320,4384_315,Greystones,E106,1,4384_7778018_Txc137C853C-A15D-4F70-A8AB-3D92EE8176AC,4384_2 -4367_81485,314,4384_316,Bray (Daly),E221,1,4384_7778018_Txc8A786599-DD7E-434C-9BA9-CF33108062CE,4384_7 -4367_81459,314,4384_3160,Dublin Connolly,A107,1,4384_7778018_TxcC3CCABE9-C0A4-41C4-ABE2-B59F40C5B595,4384_97 -4367_81459,23,4384_3161,Dublin Connolly,A107,1,4384_7778018_TxcD8EF0ADD-6E17-421E-B9F1-3AAACCA45BCB,4384_98 -4367_81459,334,4384_3162,Dublin Connolly,A107,1,4384_7778018_Txc1C0E1439-788E-4CDA-9564-D95D2CBDB157,4384_97 -4367_81459,316,4384_3163,Dublin Connolly,A107,1,4384_7778018_Txc451698E2-ACDC-4E09-8197-2EC068599C0F,4384_98 -4367_81459,335,4384_3164,Dublin Connolly,A107,1,4384_7778018_Txc37C6F416-219C-4233-888C-699AD879CBD3,4384_98 -4367_81459,318,4384_3165,Dublin Connolly,A107,1,4384_7778018_Txc02777702-5F57-4590-8A13-53A1821C2A09,4384_98 -4367_81459,314,4384_3168,Dublin Connolly,A109,1,4384_7778018_Txc4A119A15-3673-493F-AC3A-4DE7F8F47C39,4384_97 -4367_81459,23,4384_3169,Dublin Connolly,A109,1,4384_7778018_TxcDD5EC230-7E21-419D-BB45-D0DC65257775,4384_98 -4367_81459,334,4384_3179,Dublin Connolly,A109,1,4384_7778018_Txc4C6B22A0-E790-41E2-BA5B-C2BEA24A6778,4384_97 -4367_81459,316,4384_3180,Dublin Connolly,A109,1,4384_7778018_Txc3BE518C2-279F-4CBC-A769-4C1DDD17C5AD,4384_98 -4367_81459,335,4384_3181,Dublin Connolly,A109,1,4384_7778018_Txc5E398B3C-2AF6-4DA4-A426-485BCB8FD200,4384_98 -4367_81459,318,4384_3182,Dublin Connolly,A109,1,4384_7778018_TxcD2897595-28E2-4D84-9A95-F02AE33C34FB,4384_98 -4367_81459,278,4384_3183,Dublin Connolly,A145,1,4384_7778018_TxcAF1308FF-D3D0-4900-A108-DB850313ABB3,4384_97 -4367_81485,315,4384_319,Bray (Daly),E221,1,4384_7778018_TxcF997F507-754C-4829-BCA2-CFA33B44A2FF,4384_7 -4367_81459,319,4384_3191,Dublin Connolly,A145,1,4384_7778018_Txc1F3AAD6D-D97C-4B35-9B6E-27E1D3FE07D3,4384_97 -4367_81459,271,4384_3192,Dublin Connolly,A145,1,4384_7778018_Txc6B7EFE6A-3A35-44FB-A7BB-4BF5BB4F6427,4384_97 -4367_81485,315,4384_32,Greystones,E103,1,4384_7778018_TxcF30F6ADD-4A60-45EA-A9EF-DB0D5ECBADC5,4384_1 -4367_81485,23,4384_320,Greystones,E104,1,4384_7778018_TxcAE76B338-C7E1-4170-B249-26BB26EEF54B,4384_2 -4367_81459,314,4384_3214,Dublin Connolly,A111,1,4384_7778018_Txc5986D2EA-E7C6-4D89-938F-71855CBFFE79,4384_97 -4367_81459,23,4384_3215,Dublin Connolly,A111,1,4384_7778018_TxcFD817CF5-36B1-4B54-A073-0982BA9A769E,4384_98 -4367_81459,334,4384_3216,Dublin Connolly,A111,1,4384_7778018_Txc4C9618C4-F414-4F49-8D6B-B50E7D7264DD,4384_97 -4367_81459,316,4384_3217,Dublin Connolly,A111,1,4384_7778018_TxcD49B1673-7943-4F51-A584-67A307D007AF,4384_98 -4367_81459,335,4384_3218,Dublin Connolly,A111,1,4384_7778018_TxcEDCB6A0B-A344-44BE-AE77-54CE3E7EDDCF,4384_98 -4367_81459,318,4384_3219,Dublin Connolly,A111,1,4384_7778018_TxcD69989C4-5195-48A7-9E18-CA50403CCA04,4384_98 -4367_81459,314,4384_3221,Dublin Connolly,A113,1,4384_7778018_Txc312CF484-0404-4A16-9060-32300A9871E0,4384_97 -4367_81459,23,4384_3222,Dublin Connolly,A113,1,4384_7778018_Txc50FE2EF3-9E0A-4D07-ACF8-599C1081DBA0,4384_98 -4367_81459,334,4384_3232,Dublin Connolly,A113,1,4384_7778018_TxcB4F5933A-9940-4B49-9C8D-FCDB1E4BF7D2,4384_97 -4367_81459,316,4384_3233,Dublin Connolly,A113,1,4384_7778018_Txc85C11C35-EFC0-496C-B781-98FB0CA36A8E,4384_98 -4367_81459,335,4384_3234,Dublin Connolly,A113,1,4384_7778018_Txc120CA65D-0C3E-42C0-8A04-3119C54E5DD3,4384_98 -4367_81459,318,4384_3235,Dublin Connolly,A113,1,4384_7778018_Txc883425C4-71F7-41F9-A7B5-67383ED81085,4384_98 -4367_81459,278,4384_3236,Dublin Connolly,A149,1,4384_7778018_Txc8DB25DE8-1CC6-40B6-AA4C-5108C894F1E7,4384_97 -4367_81485,316,4384_324,Greystones,E104,1,4384_7778018_Txc65169927-1E31-4939-9C7B-5C8E8ADE59FD,4384_2 -4367_81459,319,4384_3244,Dublin Connolly,A149,1,4384_7778018_TxcA937B9C5-048A-4A16-BD03-FC67C45F9AAF,4384_97 -4367_81459,271,4384_3245,Dublin Connolly,A149,1,4384_7778018_Txc86E4BC5F-20A4-4B4A-813B-521370AECA47,4384_97 -4367_81485,138,4384_325,Greystones,E104,1,4384_7778018_TxcDBEE4C1B-BB0A-4755-BA2E-9C68E6EE011A,4384_2 -4367_81485,317,4384_326,Greystones,E104,1,4384_7778018_Txc51A268F6-F509-4367-97A9-64C402CF1DF3,4384_2 -4367_81459,314,4384_3267,Dublin Connolly,A115,1,4384_7778018_TxcF38CC2B8-37E1-4EA4-A16C-7E8B02C51FA5,4384_97 -4367_81459,23,4384_3268,Dublin Connolly,A115,1,4384_7778018_TxcEDF47C24-9D3A-428C-9C2D-DBB2B1CF79C2,4384_98 -4367_81459,334,4384_3269,Dublin Connolly,A115,1,4384_7778018_TxcE4DE100B-F128-4E5D-B877-B5C502549DD0,4384_97 -4367_81485,318,4384_327,Greystones,E104,1,4384_7778018_TxcFB38F070-3859-45B5-9E56-D99374DD777C,4384_2 -4367_81459,316,4384_3270,Dublin Connolly,A115,1,4384_7778018_TxcDF7E8B15-2CC9-4F38-8C53-8DBCDC4FD12B,4384_98 -4367_81459,335,4384_3271,Dublin Connolly,A115,1,4384_7778018_Txc23441043-078E-44B5-B0E6-E0F8DADED6A3,4384_98 -4367_81459,318,4384_3272,Dublin Connolly,A115,1,4384_7778018_TxcF16D25B6-B8EA-4404-B644-06BFA27575FD,4384_98 -4367_81459,314,4384_3274,Dublin Connolly,A117,1,4384_7778018_TxcBA7F23E5-46BD-4F76-89E2-2ACE5D34FF8E,4384_97 -4367_81459,23,4384_3275,Dublin Connolly,A117,1,4384_7778018_TxcA6B3D45B-5217-44DC-9731-56D2969E2E0B,4384_98 -4367_81459,334,4384_3285,Dublin Connolly,A117,1,4384_7778018_Txc4136B80F-6444-4687-B110-20B8D49C89DF,4384_97 -4367_81459,316,4384_3286,Dublin Connolly,A117,1,4384_7778018_Txc29433DBF-3DB3-45E3-8048-BA0E39CF37C3,4384_98 -4367_81459,335,4384_3287,Dublin Connolly,A117,1,4384_7778018_Txc89A293A4-316B-463B-9311-33E0E2FB3E16,4384_98 -4367_81459,318,4384_3288,Dublin Connolly,A117,1,4384_7778018_Txc162F0427-3BFA-40C7-ABA3-A1DB680E604A,4384_98 -4367_81459,278,4384_3289,Dublin Connolly,A153,1,4384_7778018_Txc0E6005B8-131F-4928-8ACA-DAE630BD4E41,4384_97 -4367_81459,319,4384_3297,Dublin Connolly,A153,1,4384_7778018_Txc1FA609E4-150F-464D-8378-231D1E827A23,4384_97 -4367_81459,271,4384_3298,Dublin Connolly,A153,1,4384_7778018_Txc731E3EB4-22B4-4686-8788-D192EB54B46B,4384_97 -4367_81459,314,4384_3319,Dublin Connolly,A119,1,4384_7778018_TxcE19CB0FF-B03B-431A-867F-2BA5F9087E65,4384_97 -4367_81485,314,4384_332,Greystones,E111,1,4384_7778018_Txc0161302D-42C4-4DC3-923D-36FBAB2630B7,4384_2 -4367_81459,23,4384_3320,Dublin Connolly,A119,1,4384_7778018_Txc79DDB537-DD78-4614-B4C8-0A4AFFA64DA1,4384_98 -4367_81459,334,4384_3321,Dublin Connolly,A119,1,4384_7778018_Txc1EE7C12B-DCDE-4668-B5CA-95E32379115A,4384_97 -4367_81459,316,4384_3322,Dublin Connolly,A119,1,4384_7778018_Txc54808CB6-4C53-421F-B4F4-92A83A9A8FB0,4384_98 -4367_81459,335,4384_3323,Dublin Connolly,A119,1,4384_7778018_Txc1114D49F-E1F3-42D9-8E35-A5F7319ABB75,4384_98 -4367_81459,318,4384_3324,Dublin Connolly,A119,1,4384_7778018_TxcD6084A58-6AEE-48D0-8823-A3078562348E,4384_98 -4367_81459,314,4384_3326,Dublin Connolly,A121,1,4384_7778018_Txc2F4D5B4E-3A8E-46FE-A1EA-3CB13290546C,4384_97 -4367_81459,23,4384_3327,Dublin Connolly,A121,1,4384_7778018_Txc3F91A9F1-9CCD-461A-96BA-3B8A367B91A8,4384_98 -4367_81459,334,4384_3337,Dublin Connolly,A121,1,4384_7778018_Txc7BCC9FEB-EEC7-42E2-B778-DFE544766BB4,4384_97 -4367_81459,316,4384_3338,Dublin Connolly,A121,1,4384_7778018_Txc6FF6FED3-0E8F-4B55-8953-8F11FE0F2730,4384_98 -4367_81459,335,4384_3339,Dublin Connolly,A121,1,4384_7778018_TxcD69327DC-8BBF-4B6D-8ADE-0CBC9C5281BC,4384_98 -4367_81459,318,4384_3340,Dublin Connolly,A121,1,4384_7778018_Txc32C4D285-BC4A-4794-82DC-BDF286FFDB70,4384_98 -4367_81459,278,4384_3341,Dublin Connolly,A157,1,4384_7778018_Txc2F8CE039-38B4-4525-AD72-2CCA25566C91,4384_97 -4367_81459,319,4384_3349,Dublin Connolly,A157,1,4384_7778018_Txc380805CB-EE7A-456B-B1C2-FA731C788180,4384_97 -4367_81485,315,4384_335,Greystones,E111,1,4384_7778018_Txc2C745541-2625-4240-9B03-3AD5E9AB29C1,4384_2 -4367_81459,271,4384_3350,Dublin Connolly,A157,1,4384_7778018_TxcA8E362C4-6038-4FA8-95A4-9650C58E905C,4384_97 -4367_81459,314,4384_3372,Dublin Connolly,A123,1,4384_7778018_TxcDDB891DB-EF5F-48F8-9C2C-1A5BFD03A828,4384_97 -4367_81459,23,4384_3373,Dublin Connolly,A123,1,4384_7778018_Txc34255161-1CA1-41CF-AD82-4DE74C3E159D,4384_98 -4367_81459,334,4384_3374,Dublin Connolly,A123,1,4384_7778018_Txc4C18BCD0-DF62-4C97-B9A4-556A3260F121,4384_97 -4367_81459,316,4384_3375,Dublin Connolly,A123,1,4384_7778018_TxcFB5BACFA-6848-4963-9176-2CFE26979081,4384_98 -4367_81459,335,4384_3376,Dublin Connolly,A123,1,4384_7778018_TxcAA779CA4-C96A-4272-8FDF-6355C3676857,4384_98 -4367_81459,318,4384_3377,Dublin Connolly,A123,1,4384_7778018_Txc3B7E6DC1-C8B7-49B6-97F5-37CF20A3AC20,4384_98 -4367_81459,278,4384_3378,Dublin Connolly,A159,1,4384_7778018_Txc24EFC790-83FB-4B9B-AB18-0F27337CDF6E,4384_97 -4367_81459,319,4384_3379,Dublin Connolly,A159,1,4384_7778018_TxcC002E35A-7BCB-460B-ADD2-C77525B6315F,4384_97 -4367_81459,314,4384_3380,Dublin Connolly,A125,1,4384_7778018_Txc00F6A5CF-59A9-413D-BC75-8C7B8042842B,4384_97 -4367_81459,23,4384_3381,Dublin Connolly,A125,1,4384_7778018_Txc18C489DC-A754-4F96-9D30-8ACF9E36728A,4384_98 -4367_81459,334,4384_3391,Dublin Connolly,A125,1,4384_7778018_TxcC07F0A0D-36C3-412A-AB99-46FD5C1F69E3,4384_97 -4367_81459,316,4384_3392,Dublin Connolly,A125,1,4384_7778018_Txc1377E0E8-2366-45A8-BA68-BE1FA65C0D4D,4384_98 -4367_81459,335,4384_3393,Dublin Connolly,A125,1,4384_7778018_Txc7664CEBA-4918-4971-95EA-74CEA18D42FB,4384_98 -4367_81459,318,4384_3394,Dublin Connolly,A125,1,4384_7778018_Txc37B96B99-7C98-4607-BD24-175223622DDC,4384_98 -4367_81459,278,4384_3395,Dublin Connolly,A161,1,4384_7778018_TxcE1387BB4-1F79-40F7-950E-894E42F4649F,4384_97 -4367_81459,319,4384_3403,Dublin Connolly,A161,1,4384_7778018_TxcB0AB08E8-EAE0-4B31-8EB2-863D8DCFD489,4384_97 -4367_81459,271,4384_3404,Dublin Connolly,A161,1,4384_7778018_Txc1A574921-7BC9-4823-B431-A258D4E21EDC,4384_97 -4367_81485,278,4384_341,Bray (Daly),E207,1,4384_7778018_Txc5DE2F319-5B8F-41B6-A083-2A791FAA87A8,4384_7 -4367_81459,314,4384_3426,Dublin Connolly,A127,1,4384_7778018_Txc37362186-8B67-46DE-A38F-DD74FD06D250,4384_97 -4367_81459,23,4384_3427,Dublin Connolly,A127,1,4384_7778018_Txc52418A0E-6CBE-4BAB-BA03-485C42D58BEB,4384_98 -4367_81459,334,4384_3428,Dublin Connolly,A127,1,4384_7778018_TxcA317DE73-4842-4041-92F2-1273E55996A5,4384_97 -4367_81459,316,4384_3429,Dublin Connolly,A127,1,4384_7778018_TxcCE752211-82D4-46A4-A725-8D925F5ECB87,4384_98 -4367_81459,335,4384_3430,Dublin Connolly,A127,1,4384_7778018_Txc8789C163-8C8D-49A2-A7B8-56633679B679,4384_98 -4367_81459,318,4384_3431,Dublin Connolly,A127,1,4384_7778018_TxcAFD16D60-7085-437C-BA4B-B2078AAEF545,4384_98 -4367_81485,319,4384_344,Bray (Daly),E207,1,4384_7778018_Txc29A4ACCB-CD5E-4497-99C4-D39E37A43390,4384_7 -4367_81459,278,4384_3445,Dublin Connolly,A165,1,4384_7778018_Txc4CFAC651-443D-4012-B4D5-32518871E2A3,4384_97 -4367_81485,271,4384_345,Bray (Daly),E207,1,4384_7778018_TxcF04A0ACA-811F-4DDB-9B8A-DA8FBFDB6BCF,4384_7 -4367_81459,319,4384_3453,Dublin Connolly,A165,1,4384_7778018_Txc152746FA-5A0F-42C8-8E05-0762CF95B537,4384_97 -4367_81459,271,4384_3454,Dublin Connolly,A165,1,4384_7778018_Txc77F1102F-4C5D-4C5A-8A7E-8039B211F519,4384_97 -4367_81485,320,4384_346,Bray (Daly),E207,1,4384_7778018_Txc373E4868-925A-4CFC-AE0C-9A9ED071E5F4,4384_7 -4367_81485,23,4384_347,Bray (Daly),E213,1,4384_7778018_Txc391E5ACA-6184-4F33-AFE0-560AFE3EF4EB,4384_7 -4367_81459,314,4384_3475,Dublin Connolly,A131,1,4384_7778018_TxcFD3F3E81-62A8-4727-BFE5-3105E116E946,4384_97 -4367_81459,23,4384_3476,Dublin Connolly,A131,1,4384_7778018_Txc02923D19-7E02-48DA-867A-CF6C3CDB0F11,4384_98 -4367_81459,334,4384_3477,Dublin Connolly,A131,1,4384_7778018_Txc738B9248-7428-437D-B408-D534918DAA7E,4384_97 -4367_81459,316,4384_3478,Dublin Connolly,A131,1,4384_7778018_TxcFAA95C7C-DA6D-4B44-85E3-3623878B50C0,4384_98 -4367_81459,317,4384_3479,Dublin Connolly,A131,1,4384_7778018_TxcFD260707-22CD-460E-9AB1-101638C001E3,4384_98 -4367_81459,331,4384_3480,Dublin Connolly,A131,1,4384_7778018_Txc82CE16E0-1663-460D-B587-E0C3FF1B5A2C,4384_98 -4367_81458,314,4384_3481,Belfast,A100,0,4384_7778018_Txc89F7000F-55B0-4501-9215-56324901B557,4384_109 -4367_81458,23,4384_3482,Belfast,A100,0,4384_7778018_Txc65997D46-2AD6-4035-BF07-DD1292219F18,4384_110 -4367_81458,334,4384_3483,Belfast,A100,0,4384_7778018_Txc379D0650-0DF3-44C1-892E-55BDE9BE7DE1,4384_109 -4367_81458,316,4384_3484,Belfast,A100,0,4384_7778018_Txc34743ACF-E8D3-46EE-AE5C-C5CCA68A73FE,4384_110 -4367_81458,335,4384_3485,Belfast,A100,0,4384_7778018_TxcC63EDAF9-8250-4F79-A7B7-952CC243ABEA,4384_110 -4367_81458,318,4384_3486,Belfast,A100,0,4384_7778018_Txc1D2A3708-648C-49C0-9B71-74ECCE5EFC10,4384_110 -4367_81458,314,4384_3487,Belfast,A102,0,4384_7778018_Txc95875B41-D30E-4FA4-8914-A4DA902C21B1,4384_109 -4367_81458,23,4384_3488,Belfast,A102,0,4384_7778018_Txc1AC37F0D-7ACF-45EB-9AAC-4E39B9059873,4384_110 -4367_81485,23,4384_35,Bray (Daly),E200,1,4384_7778018_TxcE6ED5910-D5D0-432D-AF6B-910788EFD4A1,4384_5 -4367_81485,316,4384_350,Bray (Daly),E213,1,4384_7778018_Txc29E463BD-8413-449E-BACC-AD5ED696BC69,4384_7 -4367_81458,334,4384_3503,Belfast,A102,0,4384_7778018_TxcC1D9702B-5531-4378-BB42-1D6A07468682,4384_109 -4367_81458,316,4384_3504,Belfast,A102,0,4384_7778018_Txc8CB042DE-A375-4921-82FA-48814061620A,4384_110 -4367_81458,335,4384_3505,Belfast,A102,0,4384_7778018_TxcA0744779-D732-45F1-BF47-5D1162886115,4384_110 -4367_81458,318,4384_3506,Belfast,A102,0,4384_7778018_Txc60A45519-3EC6-4661-95F4-853942EA5536,4384_110 -4367_81458,314,4384_3509,Belfast,A104,0,4384_7778018_Txc739F3070-CA06-4B01-8491-33ACE45135FA,4384_109 -4367_81485,138,4384_351,Bray (Daly),E213,1,4384_7778018_Txc8274BE7C-0617-4BC4-B2C7-D96C5CD1C2D5,4384_7 -4367_81458,334,4384_3510,Belfast,A104,0,4384_7778018_TxcC04C2D63-612F-487D-A81B-81052508FD76,4384_109 -4367_81458,23,4384_3512,Belfast,A104,0,4384_7778018_Txc4FF263A5-19F5-4A5A-AF66-E0B78105A44E,4384_109 -4367_81458,316,4384_3514,Belfast,A104,0,4384_7778018_TxcD8CDDC26-88DE-4A6A-90D3-3726CF182B86,4384_109 -4367_81458,335,4384_3515,Belfast,A104,0,4384_7778018_Txc65E6167D-4DFD-4BB7-BD2D-EBAF53B08F73,4384_109 -4367_81458,318,4384_3516,Belfast,A104,0,4384_7778018_Txc84FDFA4D-8277-46DC-A440-D1C87B632097,4384_109 -4367_81485,317,4384_352,Bray (Daly),E213,1,4384_7778018_TxcBE28F4E8-4263-4518-9E99-3537CDD3E204,4384_7 -4367_81458,314,4384_3524,Belfast,A106,0,4384_7778018_Txc60F0EF96-31FB-422D-9E8D-718A28E2A6C5,4384_109 -4367_81458,23,4384_3525,Belfast,A106,0,4384_7778018_TxcB8EA6BC4-4659-4273-8C4C-5C7C246202D4,4384_110 -4367_81458,278,4384_3526,Belfast,A142,0,4384_7778018_Txc7CF4A3A0-F2ED-46F5-B9AE-4A24C7C992A3,4384_111 -4367_81485,318,4384_353,Bray (Daly),E213,1,4384_7778018_TxcC6C9223E-B134-4AFD-A50E-2BF89F37C7C6,4384_7 -4367_81485,321,4384_354,Bray (Daly),E222,1,4384_7778018_Txc3D6F0685-863E-40D5-A94C-371DF46DC549,4384_7 -4367_81458,334,4384_3547,Belfast,A106,0,4384_7778018_TxcA2076263-9B92-423B-A94D-3612D4A60BDF,4384_109 -4367_81458,316,4384_3548,Belfast,A106,0,4384_7778018_Txc4C27E785-66F0-4A64-9191-EC7F86D235C4,4384_110 -4367_81458,319,4384_3549,Belfast,A142,0,4384_7778018_Txc28D57415-117F-4BFC-912D-F728A379B361,4384_111 -4367_81458,335,4384_3550,Belfast,A106,0,4384_7778018_Txc6FC8E82A-B57B-4A3F-B5FC-88528075D6AF,4384_110 -4367_81458,318,4384_3551,Belfast,A106,0,4384_7778018_TxcDD41A0E6-0FAC-43C1-BD6D-F9B23895C4B4,4384_110 -4367_81458,314,4384_3555,Belfast,A108,0,4384_7778018_Txc53AAA13B-0058-4944-89CA-19E92209C5FE,4384_109 -4367_81458,23,4384_3556,Belfast,A108,0,4384_7778018_Txc2EE8C6D8-C08E-4B58-858E-88C57A9787BF,4384_110 -4367_81458,334,4384_3558,Belfast,A108,0,4384_7778018_TxcC957F34D-28B5-4CFC-B76E-641351F05F0B,4384_109 -4367_81458,316,4384_3559,Belfast,A108,0,4384_7778018_TxcBB67D715-DC76-4110-BE5F-F1E63C54709A,4384_110 -4367_81458,335,4384_3560,Belfast,A108,0,4384_7778018_TxcC6D9C276-5388-4367-ADFC-F4971C563252,4384_110 -4367_81458,318,4384_3561,Belfast,A108,0,4384_7778018_Txc7234AECC-F7FA-4E58-AC1D-660AF1CDF496,4384_110 -4367_81485,92,4384_357,Bray (Daly),E222,1,4384_7778018_Txc0F1A65D3-7AF8-47B1-8253-1E8F111B4F2B,4384_8 -4367_81485,315,4384_358,Bray (Daly),E222,1,4384_7778018_Txc5B1169E6-E714-4058-A81E-270F0AB1AFDF,4384_7 -4367_81458,314,4384_3587,Belfast,A110,0,4384_7778018_Txc879F23D4-7DA9-46B9-818B-8A677D037D47,4384_109 -4367_81458,23,4384_3588,Belfast,A110,0,4384_7778018_Txc110DAFF2-9281-4DF5-BF7B-78D431DB9010,4384_110 -4367_81458,278,4384_3589,Belfast,A146,0,4384_7778018_Txc8B9F5ADE-212C-4B0B-BB66-3E8B845B1D4C,4384_111 -4367_81458,334,4384_3610,Belfast,A110,0,4384_7778018_Txc6E2C421D-399B-4F1E-BCFB-4C4D7D096FC0,4384_109 -4367_81458,316,4384_3611,Belfast,A110,0,4384_7778018_Txc398ABBE1-32FF-4FD5-A2B9-E20B474F8783,4384_110 -4367_81458,319,4384_3612,Belfast,A146,0,4384_7778018_Txc0AE47DE3-5B5C-4FE6-9359-FB06A3874B7A,4384_111 -4367_81458,335,4384_3613,Belfast,A110,0,4384_7778018_Txc8C15F93A-2D02-46ED-ABC6-129226DBCAFD,4384_110 -4367_81458,318,4384_3614,Belfast,A110,0,4384_7778018_Txc0529C749-17D9-419C-B5F6-F9AC43EAA593,4384_110 -4367_81458,271,4384_3615,Belfast,A146,0,4384_7778018_Txc6DFC7F36-9895-4A6A-A978-852DBAB110A8,4384_111 -4367_81485,322,4384_362,Bray (Daly),E223,1,4384_7778018_TxcE8A4E7A8-C6C7-4FD1-B0E2-F32F710F66EC,4384_6 -4367_81458,314,4384_3620,Belfast,A112,0,4384_7778018_Txc15F778D0-D667-4CE0-8ACD-72BD5A35A0FB,4384_109 -4367_81458,23,4384_3621,Belfast,A112,0,4384_7778018_Txc6E8243CD-D349-4D47-A15E-0E212F747B09,4384_110 -4367_81458,334,4384_3623,Belfast,A112,0,4384_7778018_Txc73C58E10-52E8-45F8-AE17-45E0648486A5,4384_109 -4367_81458,316,4384_3624,Belfast,A112,0,4384_7778018_TxcB5E6D206-A281-4CD8-A429-0D542CE95AAE,4384_110 -4367_81458,335,4384_3625,Belfast,A112,0,4384_7778018_Txc173923DF-A87F-4246-839F-CD33A7278BD5,4384_110 -4367_81458,318,4384_3626,Belfast,A112,0,4384_7778018_Txc29C39C9C-19B9-4011-B7AA-01ED5C90739C,4384_110 -4367_81458,314,4384_3643,Belfast,A114,0,4384_7778018_Txc1995516A-E750-48FD-8B83-A261CC603F9C,4384_109 -4367_81458,23,4384_3644,Belfast,A114,0,4384_7778018_TxcAF2D4DCB-EDEA-4588-BFF4-B60C6B3D2472,4384_110 -4367_81458,278,4384_3645,Belfast,A150,0,4384_7778018_TxcA928046A-FF03-409D-9312-8CA1B5C43A06,4384_111 -4367_81458,334,4384_3666,Belfast,A114,0,4384_7778018_Txc4AAFD8A1-5D60-4B3A-9F15-0351852649C9,4384_109 -4367_81458,316,4384_3667,Belfast,A114,0,4384_7778018_Txc238DA0DD-8452-4C07-98C9-53DE0E3D5141,4384_110 -4367_81458,319,4384_3668,Belfast,A150,0,4384_7778018_TxcA511BE78-2D16-4635-A3EA-5B7B019AC039,4384_111 -4367_81458,335,4384_3669,Belfast,A114,0,4384_7778018_Txc520CBBD6-B592-4EB0-8713-7835E7652C8D,4384_110 -4367_81485,93,4384_367,Bray (Daly),E223,1,4384_7778018_Txc0E5F74DA-31C8-4502-A991-348578BB4860,4384_6 -4367_81458,318,4384_3670,Belfast,A114,0,4384_7778018_Txc3E47581B-E6BB-48F2-A069-9B041B178B07,4384_110 -4367_81458,271,4384_3671,Belfast,A150,0,4384_7778018_TxcD5EF2372-A631-46D5-B3E3-3512924A33F9,4384_111 -4367_81458,314,4384_3676,Belfast,A116,0,4384_7778018_TxcABEEFFBC-0801-47EF-BB25-F85EC63FD765,4384_109 -4367_81458,23,4384_3677,Belfast,A116,0,4384_7778018_TxcFEACC0D7-AD80-48A3-902F-C80AE359B606,4384_110 -4367_81458,278,4384_3678,Belfast,A152,0,4384_7778018_Txc9427ED49-F8DD-47F6-AB7A-809C8DEB785A,4384_111 -4367_81485,315,4384_368,Bray (Daly),E223,1,4384_7778018_TxcFF7B422A-CA88-423D-98CA-E458ED31A5F1,4384_6 -4367_81458,334,4384_3680,Belfast,A116,0,4384_7778018_Txc228CC5A3-752A-4E14-A9B1-7EDA16B9C096,4384_109 -4367_81458,316,4384_3681,Belfast,A116,0,4384_7778018_Txc7AE0CC7D-E521-4A23-9C74-7061AAD77F77,4384_110 -4367_81458,319,4384_3682,Belfast,A152,0,4384_7778018_TxcC001693E-2C85-4C03-9385-E9037ADAA406,4384_111 -4367_81458,335,4384_3683,Belfast,A116,0,4384_7778018_TxcA5CAE1E8-DA14-4CBF-9CD7-7FA42C17807B,4384_110 -4367_81458,318,4384_3684,Belfast,A116,0,4384_7778018_TxcADAD9A14-0FDB-4E31-8E51-799432F9C40C,4384_110 -4367_81485,23,4384_369,Bray (Daly),E214,1,4384_7778018_Txc1246FDE2-B71E-406D-BC77-E66F5FEBDDF5,4384_6 -4367_81458,314,4384_3701,Belfast,A118,0,4384_7778018_TxcA738B8F0-2527-403D-929B-5FFA5BA1A59F,4384_109 -4367_81458,23,4384_3702,Belfast,A118,0,4384_7778018_Txc4FED92DF-41DD-49A7-81EE-45A65E2DACAB,4384_110 -4367_81458,278,4384_3703,Belfast,A154,0,4384_7778018_Txc96CA2E5B-0A51-4A11-BC07-AB3D3ACA2B87,4384_111 -4367_81485,316,4384_372,Bray (Daly),E214,1,4384_7778018_Txc95F286E7-CDB7-4455-880B-7B43199C74CD,4384_6 -4367_81458,334,4384_3724,Belfast,A118,0,4384_7778018_Txc6649EA71-041C-45C3-8917-AA4B8FFB633E,4384_109 -4367_81458,316,4384_3725,Belfast,A118,0,4384_7778018_TxcCF5F7668-97AC-49D4-BA9B-65101EFE150F,4384_110 -4367_81458,319,4384_3726,Belfast,A154,0,4384_7778018_Txc55B3BB0E-5CF1-4A34-9105-C2575ED45AA7,4384_111 -4367_81458,335,4384_3727,Belfast,A118,0,4384_7778018_Txc1B94619E-E563-4445-B793-41446607DB98,4384_110 -4367_81458,318,4384_3728,Belfast,A118,0,4384_7778018_Txc69B43054-3672-485E-B733-6A36DED7D478,4384_110 -4367_81458,271,4384_3729,Belfast,A154,0,4384_7778018_Txc0A693CE5-30EF-4708-8298-7DD4F558A4D8,4384_111 -4367_81485,138,4384_373,Bray (Daly),E214,1,4384_7778018_TxcF271446A-B697-4DC2-9281-0710479EA9D6,4384_6 -4367_81458,314,4384_3734,Belfast,A120,0,4384_7778018_Txc265DA838-0FFA-4832-B9EB-647B9202D61C,4384_109 -4367_81458,23,4384_3735,Belfast,A120,0,4384_7778018_Txc0D37AB55-1A75-4633-89B5-604A71C1DE04,4384_110 -4367_81458,334,4384_3737,Belfast,A120,0,4384_7778018_TxcE7D59D74-1A0A-4AC8-8561-DE2B7799A0AD,4384_109 -4367_81458,316,4384_3738,Belfast,A120,0,4384_7778018_Txc6DD63DA0-C003-4557-8604-A8A042AE517B,4384_110 -4367_81458,335,4384_3739,Belfast,A120,0,4384_7778018_Txc23A6B708-F7E2-47AB-A285-D4A42B4EBB78,4384_110 -4367_81485,317,4384_374,Bray (Daly),E214,1,4384_7778018_Txc2F12FAEF-1BC7-4630-85D9-D669B4A335EB,4384_6 -4367_81458,318,4384_3740,Belfast,A120,0,4384_7778018_Txc75ED7B00-1702-4DAF-8C96-402E011475BB,4384_110 -4367_81485,318,4384_375,Bray (Daly),E214,1,4384_7778018_TxcD53813E5-A3A1-4D6F-B3D2-B3D455BEFBD6,4384_6 -4367_81458,314,4384_3757,Belfast,A122,0,4384_7778018_Txc84A3960C-9A3B-4FD6-87DB-20A1813E6036,4384_109 -4367_81458,23,4384_3758,Belfast,A122,0,4384_7778018_TxcC1E5A070-8955-4D27-B1EF-FA3A83E6B867,4384_110 -4367_81458,278,4384_3759,Belfast,A158,0,4384_7778018_Txc64CBCF2D-4BD9-4742-840F-437341B7AFC9,4384_111 -4367_81485,314,4384_376,Greystones,E112,1,4384_7778018_TxcF01C7E12-B612-42B3-A6FE-9E03CEC5B4E4,4384_1 -4367_81458,334,4384_3780,Belfast,A122,0,4384_7778018_Txc548395E8-C84D-45A4-A443-B76E2E8FFCD2,4384_109 -4367_81458,316,4384_3781,Belfast,A122,0,4384_7778018_Txc5022D890-4631-4168-97D2-752B904AAFD6,4384_110 -4367_81458,319,4384_3782,Belfast,A158,0,4384_7778018_Txc83B02B8B-4CCD-4A6E-84B8-A1A125E1FC99,4384_111 -4367_81458,335,4384_3783,Belfast,A122,0,4384_7778018_TxcB2D607AF-2FF9-480B-8342-DB89891F3CB5,4384_110 -4367_81458,318,4384_3784,Belfast,A122,0,4384_7778018_TxcED930DB3-0FC7-4FBE-A4A5-3AAC8DC76426,4384_110 -4367_81458,271,4384_3785,Belfast,A158,0,4384_7778018_Txc5F8FDB14-CFD3-4F12-A845-5FE87B6A600F,4384_111 -4367_81485,315,4384_379,Greystones,E112,1,4384_7778018_Txc398783C3-8D27-4920-9C4C-A207BE588567,4384_1 -4367_81458,314,4384_3790,Belfast,A124,0,4384_7778018_Txc0F8C9120-2664-45F3-AA4D-A2BB0ED01B03,4384_109 -4367_81458,23,4384_3791,Belfast,A124,0,4384_7778018_Txc00E77F8C-310D-453B-A009-2C531954F065,4384_110 -4367_81485,278,4384_380,Greystones,E108,1,4384_7778018_TxcDAD20238-E405-45FA-90C4-2CDE4D76E416,4384_2 -4367_81458,334,4384_3802,Belfast,A124,0,4384_7778018_Txc4F3879B9-6243-43CC-B890-2B3F29B4A5C3,4384_109 -4367_81458,316,4384_3803,Belfast,A124,0,4384_7778018_Txc7EF08F89-9AE4-4330-8173-51B574949DCC,4384_110 -4367_81458,335,4384_3804,Belfast,A124,0,4384_7778018_TxcDEAF7EC4-F707-45E2-882C-9458B6657C23,4384_110 -4367_81458,318,4384_3805,Belfast,A124,0,4384_7778018_Txc6CB94C83-3E1F-4A6B-86ED-E41D591818F7,4384_110 -4367_81485,319,4384_383,Greystones,E108,1,4384_7778018_Txc09937BC9-48B3-4E06-83D9-E5698336B95A,4384_2 -4367_81458,314,4384_3830,Belfast,A126,0,4384_7778018_Txc1F49F090-42F4-4C0D-85E4-D6B92756FE90,4384_109 -4367_81458,23,4384_3831,Belfast,A126,0,4384_7778018_Txc4F744E30-8B92-4FD2-887C-51E83FFD7446,4384_110 -4367_81458,278,4384_3832,Belfast,A162,0,4384_7778018_TxcC4E4D4EE-57E5-4AA0-901B-F3D71960A8B4,4384_111 -4367_81485,271,4384_384,Greystones,E108,1,4384_7778018_TxcB04E3466-C236-43CA-832A-E1C07DC315F9,4384_2 -4367_81485,320,4384_385,Greystones,E108,1,4384_7778018_Txc96A5C9FB-487C-4757-9C1F-013D67B8FAD7,4384_2 -4367_81458,334,4384_3853,Belfast,A126,0,4384_7778018_Txc1EECA9F5-D9F6-41FA-B43B-81DC757DD98D,4384_109 -4367_81458,316,4384_3854,Belfast,A126,0,4384_7778018_Txc5D0FC24E-5E87-49FB-9D80-17D35F0277BB,4384_110 -4367_81458,319,4384_3855,Belfast,A162,0,4384_7778018_Txc9C9E248D-7490-4268-BCF9-9FF248907AC1,4384_111 -4367_81458,335,4384_3856,Belfast,A126,0,4384_7778018_TxcE1DA5DC0-45BC-4886-8BFD-4339EE945779,4384_110 -4367_81458,318,4384_3857,Belfast,A126,0,4384_7778018_Txc6A4B0948-83BA-41B5-A7D6-3B86E0035A0B,4384_110 -4367_81458,271,4384_3858,Belfast,A162,0,4384_7778018_TxcB8BCA035-203C-4535-8C6E-6E039ED300D3,4384_111 -4367_81458,314,4384_3889,Belfast,A130,0,4384_7778018_TxcF5475C98-891E-4742-9AFF-F5B0D58FB94C,4384_109 -4367_81485,23,4384_389,Bray (Daly),E215,1,4384_7778018_Txc8A752369-D812-4132-9F6C-B4D29B07BC13,4384_7 -4367_81458,23,4384_3890,Belfast,A130,0,4384_7778018_TxcBBB275C2-361F-4617-9954-E2F6273AF902,4384_110 -4367_81458,278,4384_3891,Belfast,A166,0,4384_7778018_Txc18952B4A-551C-49F5-92B8-6F8F2851D06C,4384_112 -4367_81485,316,4384_39,Bray (Daly),E200,1,4384_7778018_TxcA391D428-3128-45CB-8504-1E6AA8F60AC8,4384_5 -4367_81458,334,4384_3912,Belfast,A130,0,4384_7778018_Txc5DFD7EB2-AA2F-4A96-A8D1-05441139854A,4384_109 -4367_81458,316,4384_3913,Belfast,A130,0,4384_7778018_Txc691C13FF-38C6-4B80-906F-0BAFCD9FA831,4384_110 -4367_81458,319,4384_3914,Belfast,A166,0,4384_7778018_Txc8A17E927-8B67-4A18-B139-2B36246B763A,4384_112 -4367_81458,317,4384_3915,Belfast,A130,0,4384_7778018_TxcAB88D2BC-8B48-4A8F-97B3-8ECF962B7601,4384_110 -4367_81458,331,4384_3916,Belfast,A130,0,4384_7778018_Txc8B5508D9-200B-44FE-A781-866CA16E7153,4384_110 -4367_81458,271,4384_3917,Belfast,A166,0,4384_7778018_TxcE6163309-C080-403B-957B-A5B40046C7F4,4384_112 -4367_81485,316,4384_392,Bray (Daly),E215,1,4384_7778018_Txc88FD09F7-871C-4D93-AAF5-68FC9C67BC15,4384_7 -4367_81485,138,4384_393,Bray (Daly),E215,1,4384_7778018_Txc4B97DB96-2197-44AD-A288-2066F60C1395,4384_7 -4367_81485,317,4384_394,Bray (Daly),E215,1,4384_7778018_TxcB983F1EB-3200-4910-9D35-C9B37887D3EB,4384_7 -4367_81460,314,4384_3949,Dublin Heuston,A203,1,4384_7778018_Txc9BEDE9EE-B727-4F97-BAB4-C182AF17F921,4384_128 -4367_81485,318,4384_395,Bray (Daly),E215,1,4384_7778018_Txc3BE7B21D-898C-4943-AE01-84038FFFC0C2,4384_7 -4367_81460,23,4384_3950,Dublin Heuston,A203,1,4384_7778018_Txc866BD303-476B-4F77-8E3F-47CA29641A52,4384_128 -4367_81460,336,4384_3952,Dublin Heuston,A203,1,4384_7778018_TxcC6CDE074-8176-4ABA-A5B5-02787A48BFA4,4384_128 -4367_81460,316,4384_3953,Dublin Heuston,A203,1,4384_7778018_Txc4DE724B0-C936-4D77-A1FD-8ECD8F960736,4384_128 -4367_81460,318,4384_3954,Dublin Heuston,A203,1,4384_7778018_Txc22DE3BED-6684-4575-9914-A20026D0AA96,4384_171 -4367_81460,314,4384_3957,Dublin Heuston,A201,1,4384_7778018_TxcA4A3026F-4EFB-4A68-92EC-75764F556C04,4384_127 -4367_81460,315,4384_3958,Dublin Heuston,A201,1,4384_7778018_Txc822754DD-4235-4BD0-919C-5C2E27D91AA7,4384_127 -4367_81460,337,4384_3959,Dublin Heuston,A205,1,4384_7778018_TxcA3B778E3-3761-4800-8165-01A950259BDA,4384_129 -4367_81485,314,4384_396,Bray (Daly),E224,1,4384_7778018_Txc560269AA-8AF5-40C1-BE6A-D55BB69D2CAD,4384_6 -4367_81460,338,4384_3963,Dublin Heuston,A205,1,4384_7778018_Txc04B7B55A-B0DD-4AD6-9164-43B6D14FD7A8,4384_129 -4367_81460,314,4384_3964,Mallow,P503,1,4384_7778018_Txc4C56B8FF-7832-4E8A-A7B8-7EFD26107F91,4384_139 -4367_81460,339,4384_3965,Mallow,P503,1,4384_7778018_Txc3F5DA560-CA52-4C88-A43E-3C66CC006512,4384_139 -4367_81460,340,4384_3966,Mallow,P506,1,4384_7778018_Txc8A12D73A-3E44-4025-A751-EB47F1FE530F,4384_139 -4367_81460,96,4384_3969,Dublin Heuston,A235,1,4384_7778018_Txc4DDC0606-7763-4D64-A4FB-2A468F567E11,4384_168 -4367_81460,341,4384_3970,Mallow,P506,1,4384_7778018_Txc472EBF59-AAE0-46CE-9B25-D7DBF6B7AC82,4384_139 -4367_81460,337,4384_3971,Mallow,P507,1,4384_7778018_Txc07163B5F-B7C1-43EA-A0A8-8F261B0FD8DF,4384_139 -4367_81460,341,4384_3972,Mallow,P507,1,4384_7778018_Txc0098063A-AE5B-4E3E-AE17-55FDCC76E02D,4384_139 -4367_81460,342,4384_3973,Dublin Heuston,A207,1,4384_7778018_Txc96033A17-400E-4A33-816F-508A770A6E4D,4384_136 -4367_81460,319,4384_3977,Dublin Heuston,A207,1,4384_7778018_Txc8214D574-2F9F-4B6D-9050-1E0C3D48D9E8,4384_136 -4367_81460,251,4384_3980,Dublin Heuston,A207,1,4384_7778018_TxcFF32438D-B239-4D57-9E21-7036ECF4EB69,4384_169 -4367_81460,337,4384_3981,Dublin Heuston,A209,1,4384_7778018_Txc13676644-F668-49FD-BB53-AC3E81E35B2A,4384_130 -4367_81460,338,4384_3984,Dublin Heuston,A209,1,4384_7778018_Txc51A99BAE-6E4F-4FD9-987A-E2A754A3D315,4384_130 -4367_81460,278,4384_3985,Mallow,P540,1,4384_7778018_Txc75F6E05E-063F-40D6-8D84-7686DAB1D509,4384_139 -4367_81460,319,4384_3987,Mallow,P540,1,4384_7778018_Txc243E8700-82FF-44D3-931F-29D62CA2190A,4384_139 -4367_81460,337,4384_3988,Dublin Heuston,A211,1,4384_7778018_Txc19516B2F-9C98-4BB3-90B0-6955C927DD88,4384_131 -4367_81460,278,4384_3989,Dublin Heuston,A211,1,4384_7778018_Txc28438272-E423-44E9-B594-8A68AE29A351,4384_135 -4367_81460,338,4384_3999,Dublin Heuston,A211,1,4384_7778018_TxcDAC67EE6-0454-42D9-92CD-FE9F01346627,4384_131 -4367_81485,138,4384_40,Bray (Daly),E200,1,4384_7778018_TxcB633C93E-E134-4DBF-B11B-E12E01F11E39,4384_5 -4367_81485,315,4384_400,Bray (Daly),E224,1,4384_7778018_TxcC17531F8-7FC5-4E98-B831-D3B0AFF02455,4384_6 -4367_81460,319,4384_4000,Dublin Heuston,A211,1,4384_7778018_TxcFD55151F-B979-47EA-B144-0C9AEE0E6CB0,4384_135 -4367_81460,337,4384_4003,Dublin Heuston,A213,1,4384_7778018_Txc14DA79E9-4EF6-432B-BD16-4A8757AAC178,4384_132 -4367_81460,338,4384_4006,Dublin Heuston,A213,1,4384_7778018_Txc10C4A542-22C9-451B-B5B8-81C49DC9C980,4384_132 -4367_81460,337,4384_4007,Dublin Heuston,A215,1,4384_7778018_Txc9B428604-FD0E-418D-9451-94E07BA38675,4384_133 -4367_81460,278,4384_4008,Dublin Heuston,A215,1,4384_7778018_Txc0BAE66DD-1867-4FBE-B002-AFF554C7BEB9,4384_135 -4367_81485,314,4384_401,Bray (Daly),E225,1,4384_7778018_TxcD5D40C59-1E4B-42A6-9C82-4BE2F06FF794,4384_7 -4367_81460,338,4384_4013,Dublin Heuston,A215,1,4384_7778018_Txc8794BC13-5438-4C89-8A69-0F0CC292364B,4384_133 -4367_81460,319,4384_4014,Dublin Heuston,A215,1,4384_7778018_Txc25A21B01-FD76-4EC9-98E1-4259E0F7E44A,4384_135 -4367_81460,278,4384_4016,Mallow,P541,1,4384_7778018_Txc291F9750-4EAB-4E75-B28E-77662246F849,4384_139 -4367_81460,319,4384_4018,Mallow,P541,1,4384_7778018_Txc773A633A-EBC5-47DA-9A1C-153D6E0D2F03,4384_139 -4367_81460,337,4384_4020,Dublin Heuston,A217,1,4384_7778018_Txc6175C18A-23B2-4EF5-AE29-2B5C6A728184,4384_130 -4367_81460,278,4384_4021,Dublin Heuston,A217,1,4384_7778018_TxcEF0A564A-4C82-4363-B7B6-4F6167084496,4384_129 -4367_81460,338,4384_4026,Dublin Heuston,A217,1,4384_7778018_Txc1AC059F2-ADC5-4E10-BD08-3A8F7EF1166B,4384_130 -4367_81460,319,4384_4027,Dublin Heuston,A217,1,4384_7778018_TxcF1A4462C-2DF4-495F-A29E-30AD493B7130,4384_129 -4367_81460,337,4384_4029,Dublin Heuston,A219,1,4384_7778018_Txc0CFC68C2-AB9B-47A7-AAE0-C7646120403F,4384_128 -4367_81460,278,4384_4030,Dublin Heuston,A219,1,4384_7778018_Txc785422A5-A651-417D-B4BC-D90EA7172497,4384_137 -4367_81460,338,4384_4035,Dublin Heuston,A219,1,4384_7778018_Txc6D8718D4-FCBF-4454-B3A8-28A3246DBFC1,4384_128 -4367_81460,319,4384_4036,Dublin Heuston,A219,1,4384_7778018_TxcDA65DF27-D780-48C4-88DC-BA5C5BA688ED,4384_137 -4367_81460,314,4384_4039,Dublin Heuston,A221,1,4384_7778018_TxcF00404D7-D056-448A-884E-7EB6E39F5788,4384_130 -4367_81485,315,4384_404,Bray (Daly),E225,1,4384_7778018_Txc7860A0DA-AD93-4D3A-AAAA-0AF403948BEA,4384_7 -4367_81460,23,4384_4040,Dublin Heuston,A221,1,4384_7778018_TxcF492396E-74DA-4351-89F3-94456D747E8A,4384_130 -4367_81460,278,4384_4041,Dublin Heuston,A221,1,4384_7778018_TxcF2A08C6E-C826-4261-9BA3-A941948B1572,4384_129 -4367_81460,343,4384_4048,Dublin Heuston,A221,1,4384_7778018_Txc57899807-869C-42EA-9206-F6D25077DCE4,4384_130 -4367_81460,316,4384_4049,Dublin Heuston,A221,1,4384_7778018_Txc3D72C5BF-E39D-4486-9A53-D34CAE3E270B,4384_130 -4367_81485,23,4384_405,Greystones,E105,1,4384_7778018_TxcE77DFB43-86BE-49AE-A216-60E296DCAAF6,4384_2 -4367_81460,319,4384_4050,Dublin Heuston,A221,1,4384_7778018_TxcAC81CE0A-AEFE-44C0-8CCB-A78DA8A22D88,4384_129 -4367_81460,337,4384_4052,Dublin Heuston,A223,1,4384_7778018_TxcF4F4CC1D-53D9-4CA2-9138-3A02CED94291,4384_134 -4367_81460,278,4384_4053,Dublin Heuston,A223,1,4384_7778018_Txc04312511-D05C-43CC-9B19-08C11F1E1313,4384_137 -4367_81460,344,4384_4058,Dublin Heuston,A223,1,4384_7778018_Txc68E4AAC8-BDF6-4598-9EA5-CACA3770BE89,4384_134 -4367_81460,319,4384_4059,Dublin Heuston,A223,1,4384_7778018_Txc6C21B3B6-7164-40E6-B3D0-9FCB1939756C,4384_137 -4367_81460,138,4384_4060,Dublin Heuston,A223,1,4384_7778018_Txc954EF38E-8A9C-480B-BDFC-654D2A816C78,4384_170 -4367_81460,332,4384_4061,Dublin Heuston,A223,1,4384_7778018_Txc260A3195-2AE2-4DA5-9BD2-EEA7C2B7E349,4384_170 -4367_81460,337,4384_4063,Mallow,P526,1,4384_7778018_TxcE780F28B-5BF1-4C2B-969A-B03A2BB8AB9B,4384_139 -4367_81460,338,4384_4064,Mallow,P526,1,4384_7778018_TxcD6C62424-5DF6-4D77-8CC2-23A4F8DC3CAF,4384_139 -4367_81460,345,4384_4066,Dublin Heuston,A225,1,4384_7778018_Txc2FF94EB5-0771-4127-A461-DDA3DBBA57F4,4384_132 -4367_81460,126,4384_4067,Dublin Heuston,A225,1,4384_7778018_Txc28320CF6-AA42-4F77-AF53-2B90087B4C8B,4384_132 -4367_81460,278,4384_4068,Dublin Heuston,A225,1,4384_7778018_Txc5BB27A18-2876-4B2C-9A4E-3053D739115C,4384_129 -4367_81460,346,4384_4073,Dublin Heuston,A225,1,4384_7778018_Txc280EB236-1F03-40F2-9E20-D71B85DADD74,4384_132 -4367_81460,347,4384_4074,Dublin Heuston,A225,1,4384_7778018_Txc7B632E9A-953C-4279-9FB8-1989AC7C9D90,4384_132 -4367_81460,319,4384_4075,Dublin Heuston,A225,1,4384_7778018_Txc8D81C5ED-3F3C-45FC-98D5-2D576592CA16,4384_129 -4367_81460,337,4384_4077,Mallow,P528,1,4384_7778018_TxcF14EF1A0-26F7-4E5E-B799-35E4E0A29B7E,4384_139 -4367_81460,341,4384_4078,Mallow,P528,1,4384_7778018_Txc54B74B6D-2532-4C0B-928B-061CD0613205,4384_139 -4367_81460,337,4384_4079,Dublin Heuston,A227,1,4384_7778018_Txc4B79E0EA-5C86-42BF-BE81-BFDE74A59971,4384_134 -4367_81460,278,4384_4080,Dublin Heuston,A227,1,4384_7778018_TxcF4271FE5-19AD-4DF1-9FFB-9A9FE9994657,4384_135 -4367_81460,338,4384_4084,Dublin Heuston,A227,1,4384_7778018_Txc58E87EB6-24A6-49E7-9E97-C5232F39AF0C,4384_134 -4367_81460,319,4384_4085,Dublin Heuston,A227,1,4384_7778018_Txc8E49C267-EF86-4B44-9F33-159603B14B14,4384_135 -4367_81460,337,4384_4087,Mallow,P531,1,4384_7778018_TxcEC76371A-F9A2-483D-9EFD-579EB51424CB,4384_139 -4367_81460,338,4384_4088,Mallow,P531,1,4384_7778018_Txc25805047-3B1A-423E-A4FC-A8E502566A6D,4384_139 -4367_81485,316,4384_409,Greystones,E105,1,4384_7778018_Txc56854B67-8AE9-426F-BA02-5C99F6E6E020,4384_2 -4367_81460,314,4384_4090,Dublin Heuston,A229,1,4384_7778018_Txc85D7C154-CA88-49F9-BA1C-C2EE2B8A9127,4384_130 -4367_81460,278,4384_4091,Dublin Heuston,A229,1,4384_7778018_TxcCE0AA1F9-5EBE-43B1-A7BC-F8CDC9B42554,4384_138 -4367_81460,343,4384_4093,Dublin Heuston,A229,1,4384_7778018_TxcEE48880A-BB5F-4F52-B066-BF9E6F4F932C,4384_130 -4367_81460,319,4384_4094,Dublin Heuston,A229,1,4384_7778018_Txc9A35CD49-0AB3-41DB-8FB2-C30DB3F4033A,4384_138 -4367_81460,337,4384_4096,Dublin Heuston,A231,1,4384_7778018_TxcDECDB20B-878E-4950-8906-82C7A38E44EA,4384_135 -4367_81460,344,4384_4097,Dublin Heuston,A231,1,4384_7778018_Txc91363DEA-FBB9-4292-BE24-3E3B06525B2A,4384_135 -4367_81460,278,4384_4099,Mallow,P542,1,4384_7778018_Txc48D256EC-E32A-4C9F-AF1A-166B8F445DC9,4384_139 -4367_81485,317,4384_41,Bray (Daly),E200,1,4384_7778018_TxcC9F1055F-A565-41EB-B87F-3A5EF528758D,4384_5 -4367_81485,138,4384_410,Greystones,E105,1,4384_7778018_TxcDC6A787C-230B-4C1C-AF50-BF8CE94C824F,4384_2 -4367_81460,319,4384_4101,Mallow,P542,1,4384_7778018_TxcA674A047-0141-4869-839C-2D6791F9FF84,4384_139 -4367_81460,348,4384_4104,Mallow,P538,1,4384_7778018_Txc35FD2D5E-9096-4A5F-A3D4-53878E058E19,4384_139 -4367_81460,344,4384_4105,Mallow,P538,1,4384_7778018_Txc485A00DE-A793-4B6B-AD40-B259566B040D,4384_139 -4367_81460,348,4384_4106,Mallow,P540,1,4384_7778018_TxcAB7152B0-4B43-473B-B921-CDEA43A6CCCD,4384_139 -4367_81460,344,4384_4107,Mallow,P540,1,4384_7778018_TxcAFE840D9-7CA8-4010-B9BB-D96718E06FFE,4384_139 -4367_81485,317,4384_411,Greystones,E105,1,4384_7778018_Txc303354A6-3FA7-427D-A7D6-0CAA1D67B176,4384_2 -4367_81460,314,4384_4118,Cork (Kent),A200,0,4384_7778018_TxcDA2232B5-1AC9-467B-8E3A-2A213D760F3D,4384_172 -4367_81460,336,4384_4119,Cork (Kent),A200,0,4384_7778018_Txc0D263809-68F7-4EA1-9B90-0F060D2204D1,4384_172 -4367_81485,318,4384_412,Greystones,E105,1,4384_7778018_TxcF266E173-8B34-41A9-A2F5-C1E623DFA11C,4384_2 -4367_81460,337,4384_4120,Cork (Kent),A202,0,4384_7778018_TxcD4022573-EB4B-477C-A9BA-1D1C62A454F6,4384_173 -4367_81460,338,4384_4122,Cork (Kent),A202,0,4384_7778018_TxcB1104296-0629-4656-8974-97E475AA09C0,4384_173 -4367_81460,23,4384_4123,Cork (Kent),D549,0,4384_7778018_Txc18BFD8D9-DEF3-435B-8065-D3F8FF1953A5,4384_186 -4367_81460,316,4384_4124,Cork (Kent),D549,0,4384_7778018_TxcD3FAA4AC-77C2-4749-8293-06E9C8F391A2,4384_186 -4367_81460,318,4384_4125,Cork (Kent),D549,0,4384_7778018_TxcD3DCB8C0-CF76-4736-8D92-D09D2874D022,4384_186 -4367_81460,337,4384_4129,Cork (Kent),A204,0,4384_7778018_Txc943A8AE5-0E6E-4569-BB8D-FBEFD86ADCBA,4384_174 -4367_81485,314,4384_413,Greystones,E113,1,4384_7778018_Txc0E1AE7BB-EBA2-4DDE-A8D6-E25FF20B1644,4384_2 -4367_81460,349,4384_4131,Cork (Kent),A204,0,4384_7778018_Txc0927699F-D560-49C2-8773-81E65E7D72C1,4384_174 -4367_81460,337,4384_4134,Cork (Kent),A206,0,4384_7778018_TxcB9C66963-4118-464E-8B68-4148BF4877D6,4384_175 -4367_81460,349,4384_4137,Cork (Kent),A206,0,4384_7778018_Txc49FE9B6C-2B1C-4BF0-9EAE-BFA7E0D38078,4384_175 -4367_81460,317,4384_4138,Cork (Kent),A206,0,4384_7778018_Txc5AA52696-574E-49B8-B797-B62DB6939E52,4384_224 -4367_81460,271,4384_4139,Cork (Kent),A206,0,4384_7778018_TxcA738C275-2AF9-4753-B202-81D3B838D730,4384_224 -4367_81460,320,4384_4140,Cork (Kent),A206,0,4384_7778018_Txc441EDDE5-30E6-46BC-AFCA-C0F4F28E7647,4384_224 -4367_81460,337,4384_4144,Cork (Kent),A208,0,4384_7778018_Txc5CE610F4-50D6-410D-A46D-41D45A406693,4384_173 -4367_81460,278,4384_4145,Cork (Kent),A208,0,4384_7778018_Txc4C7889A5-EAC6-437D-A65B-F39CAE224B7A,4384_182 -4367_81460,338,4384_4148,Cork (Kent),A208,0,4384_7778018_TxcD974789A-1C0C-4FBD-861E-6B961FDCCC74,4384_173 -4367_81460,319,4384_4149,Cork (Kent),A208,0,4384_7778018_Txc3E0C0D6A-9AD5-40E0-808B-DA7706409079,4384_182 -4367_81460,337,4384_4152,Cork (Kent),A210,0,4384_7778018_Txc8CF34910-80DF-4F4C-BF65-1EBD1D9715B7,4384_176 -4367_81460,338,4384_4154,Cork (Kent),A210,0,4384_7778018_Txc3DA28E67-83E6-4FBE-B9E9-E23EBA8DC1BE,4384_176 -4367_81460,314,4384_4157,Cork (Kent),A212,0,4384_7778018_Txc90AA93D9-1D56-4272-B2F3-C75AE0284FFE,4384_173 -4367_81460,23,4384_4158,Cork (Kent),A212,0,4384_7778018_Txc9E6B3285-5E42-426B-B819-5C2304BA2097,4384_173 -4367_81460,278,4384_4159,Cork (Kent),A212,0,4384_7778018_Txc87D5060A-2EAB-449B-80EF-87DC22737C22,4384_173 -4367_81485,315,4384_416,Greystones,E113,1,4384_7778018_Txc2FDD5B7D-E018-413E-8C0F-DB8DE450946E,4384_2 -4367_81460,339,4384_4164,Cork (Kent),A212,0,4384_7778018_Txc3943C993-9788-46D2-860A-9F2E8110A81F,4384_173 -4367_81460,316,4384_4165,Cork (Kent),A212,0,4384_7778018_Txc69EE211A-65A2-4973-B839-AE9FA9897DD2,4384_173 -4367_81460,319,4384_4166,Cork (Kent),A212,0,4384_7778018_Txc5BCD3291-08C9-439A-AA41-46C984325314,4384_173 -4367_81460,271,4384_4167,Cork (Kent),A212,0,4384_7778018_Txc57A8F620-6E23-4383-8FB0-32CE2BFA5C96,4384_188 -4367_81460,320,4384_4168,Cork (Kent),A212,0,4384_7778018_Txc37E8EAB2-E21C-4899-9750-804D342DB5F0,4384_188 -4367_81460,337,4384_4171,Cork (Kent),A214,0,4384_7778018_TxcC9EE35AF-55D0-444E-A57E-46A472EAF99D,4384_173 -4367_81460,278,4384_4172,Cork (Kent),A214,0,4384_7778018_TxcCE7C0967-D7D4-4B1B-955B-DA87C0A43E67,4384_183 -4367_81460,338,4384_4179,Cork (Kent),A214,0,4384_7778018_Txc23F50275-0E80-473D-911C-693CD67321A0,4384_173 -4367_81460,319,4384_4180,Cork (Kent),A214,0,4384_7778018_Txc7E9F7B00-8A98-40A6-A6A2-E03B561A4305,4384_183 -4367_81460,345,4384_4184,Cork (Kent),A216,0,4384_7778018_Txc48575AF6-3189-462B-BBE5-F302B82A6974,4384_177 -4367_81460,126,4384_4185,Cork (Kent),A216,0,4384_7778018_Txc6513ACDF-6E86-4A87-A60D-E4DCCA5D75C9,4384_177 -4367_81460,278,4384_4186,Cork (Kent),A216,0,4384_7778018_Txc85AA478E-CCA0-47F9-B856-996BA2C673D7,4384_173 -4367_81460,346,4384_4192,Cork (Kent),A216,0,4384_7778018_Txc10ABF453-D2A4-41EA-9D7F-F5B275B13ECD,4384_177 -4367_81460,347,4384_4193,Cork (Kent),A216,0,4384_7778018_TxcAC7FA5DA-11D5-4CB5-B41A-F6B02DAB897B,4384_177 -4367_81460,319,4384_4194,Cork (Kent),A216,0,4384_7778018_TxcA9C0151C-4036-4C81-9BAA-5796BBB9DB9F,4384_173 -4367_81460,337,4384_4197,Cork (Kent),A218,0,4384_7778018_Txc82AFC28B-2634-4E45-8DA4-FB0F659E04BC,4384_172 -4367_81460,278,4384_4198,Cork (Kent),A218,0,4384_7778018_Txc0F3D6008-2BAA-46E3-AAA9-0E02AB6B3B6B,4384_184 -4367_81485,318,4384_42,Bray (Daly),E200,1,4384_7778018_TxcC294391E-2059-4248-A827-B93413DD4018,4384_5 -4367_81460,338,4384_4206,Cork (Kent),A218,0,4384_7778018_Txc0DC64DB6-5930-487A-835F-45CD53D2016E,4384_172 -4367_81460,319,4384_4207,Cork (Kent),A218,0,4384_7778018_Txc621E64CA-B9C7-4E42-8311-2A35E13D6F47,4384_184 -4367_81460,337,4384_4213,Cork (Kent),A220,0,4384_7778018_TxcF4E010BA-78B5-4D49-9F70-6F30F756331A,4384_178 -4367_81460,278,4384_4214,Cork (Kent),A220,0,4384_7778018_Txc56AE1008-29DA-48EE-9379-181AEF4B1830,4384_185 -4367_81460,338,4384_4222,Cork (Kent),A220,0,4384_7778018_Txc9FBC4766-D6D7-44B5-91AE-6E382ED80E03,4384_178 -4367_81460,319,4384_4223,Cork (Kent),A220,0,4384_7778018_Txc7AC6082F-3286-4C56-92C2-7703E2279FFF,4384_185 -4367_81460,337,4384_4226,Cork (Kent),A222,0,4384_7778018_TxcEC1D9915-3A80-476F-BB2A-8A76690703FA,4384_179 -4367_81460,278,4384_4227,Cork (Kent),A222,0,4384_7778018_Txc8754B304-21F5-4BDF-A273-863560FCB6FA,4384_184 -4367_81485,278,4384_423,Bray (Daly),E209,1,4384_7778018_Txc097090E0-4D46-4C26-8582-5C9FD8503F99,4384_6 -4367_81460,338,4384_4234,Cork (Kent),A222,0,4384_7778018_Txc5626D416-CBA1-4F0C-A2DA-012B3A913EFC,4384_179 -4367_81460,319,4384_4235,Cork (Kent),A222,0,4384_7778018_Txc2933908B-B2BB-466D-9DA7-5A13A85E227F,4384_184 -4367_81460,337,4384_4244,Cork (Kent),A224,0,4384_7778018_Txc6A79406D-7ACB-419C-939F-861756958DE7,4384_180 -4367_81460,278,4384_4245,Cork (Kent),A224,0,4384_7778018_TxcBB191860-CC0A-422D-AAA2-11CFF45370E9,4384_173 -4367_81460,338,4384_4258,Cork (Kent),A224,0,4384_7778018_TxcD9A81D94-DC5E-49D8-AE98-0303C390931D,4384_180 -4367_81460,319,4384_4259,Cork (Kent),A224,0,4384_7778018_Txc924D80F8-A0E2-41E1-B11D-16F8988022C5,4384_173 -4367_81485,319,4384_426,Bray (Daly),E209,1,4384_7778018_Txc36FE6891-5332-49DF-B113-32A13886FB97,4384_6 -4367_81460,345,4384_4264,Cork (Kent),A226,0,4384_7778018_Txc407251AE-059A-437A-A6A0-7FC63D994CDE,4384_181 -4367_81460,126,4384_4265,Cork (Kent),A226,0,4384_7778018_Txc4814F599-EBD9-4C10-8557-7DFD48B8A135,4384_181 -4367_81460,278,4384_4266,Cork (Kent),A226,0,4384_7778018_TxcF048E50E-EA88-45C1-B80A-7E71DFA82BA1,4384_184 -4367_81485,271,4384_427,Bray (Daly),E209,1,4384_7778018_TxcB5C30BA5-05D5-42CD-ADE9-BD50A1499974,4384_6 -4367_81460,346,4384_4273,Cork (Kent),A226,0,4384_7778018_Txc8ED98E8F-42E9-4744-A5D2-9422B8DAEF85,4384_181 -4367_81460,347,4384_4274,Cork (Kent),A226,0,4384_7778018_Txc47430CE0-CB4C-4C38-8CEB-0E0899119277,4384_181 -4367_81460,319,4384_4275,Cork (Kent),A226,0,4384_7778018_TxcDDFCE59E-FEC3-4CD5-93D0-E701A9FD167F,4384_184 -4367_81485,320,4384_428,Bray (Daly),E209,1,4384_7778018_Txc50C24DB4-99A6-4864-AC9F-52F3F90F2F91,4384_6 -4367_81460,350,4384_4285,Cork (Kent),A230,0,4384_7778018_Txc30FA30B2-8CB9-4A55-ADFA-C6E3F29EB8E9,4384_177 -4367_81460,126,4384_4286,Cork (Kent),A230,0,4384_7778018_Txc58792279-DA5A-4822-A324-DE81F0DF9183,4384_177 -4367_81460,211,4384_4287,Cork (Kent),A230,0,4384_7778018_Txc52BEA29F-75FC-4509-9413-5AACFBF8A960,4384_173 -4367_81460,278,4384_4288,Cork (Kent),A230,0,4384_7778018_Txc65639C12-9C33-4788-A2BB-E62B988F1715,4384_182 -4367_81485,23,4384_429,Bray (Daly),E216,1,4384_7778018_TxcEA7A6BAD-D8D3-4E72-9DAB-B46FD66BC28A,4384_7 -4367_81460,96,4384_4294,Mallow,A230,0,4384_7778018_Txc52E636DC-3FBF-48D1-ACBD-D94CCC6DED10,4384_222 -4367_81460,214,4384_4295,Cork (Kent),A230,0,4384_7778018_TxcE87949E4-0B34-428E-8C14-D3A5926F1788,4384_227 -4367_81460,351,4384_4296,Cork (Kent),A230,0,4384_7778018_Txc99EF1468-9F7D-4FC8-982A-776308B43C50,4384_177 -4367_81460,347,4384_4297,Cork (Kent),A230,0,4384_7778018_TxcFB16F9A0-4BE5-4D38-9E9E-B46D11A44B3C,4384_177 -4367_81460,316,4384_4298,Cork (Kent),A230,0,4384_7778018_TxcB2987ABE-DD0F-4325-A2CF-F863ACB7F4C5,4384_173 -4367_81460,319,4384_4299,Cork (Kent),A230,0,4384_7778018_TxcDDA3F94D-6CAC-4856-A4F5-AA5BCA216FC7,4384_182 -4367_81485,314,4384_43,Bray (Daly),E203,1,4384_7778018_Txc0B7028C7-AFC8-487F-8091-F4E87A423EDB,4384_5 -4367_81484,314,4384_4306,Grand Canal Dock,P600,1,4384_7778018_TxcFBCE79B2-063A-44A9-A0D3-57907F80DE26,4384_228 -4367_81484,315,4384_4308,Grand Canal Dock,P600,1,4384_7778018_Txc8AE314D7-B73F-43EA-9E20-D36EC1951BF9,4384_228 -4367_81484,23,4384_4309,Dublin Connolly,P701,1,4384_7778018_Txc98DCD8E6-2281-40D4-94A1-8B202F5E304B,4384_237 -4367_81484,316,4384_4310,Dublin Connolly,P701,1,4384_7778018_TxcC7875D57-BDE1-4275-A173-FC809638AC2B,4384_237 -4367_81484,138,4384_4311,Dublin Connolly,P701,1,4384_7778018_Txc39440091-0214-420F-8D62-093145500E12,4384_237 -4367_81484,317,4384_4312,Dublin Connolly,P701,1,4384_7778018_Txc745F87EF-3619-4541-8493-3776BE21EAF2,4384_237 -4367_81484,318,4384_4313,Dublin Connolly,P701,1,4384_7778018_TxcC7D78184-D558-43F2-BEF9-3FCF829DB93D,4384_237 -4367_81484,314,4384_4316,Dublin Pearse,P601,1,4384_7778018_Txc83E62EF7-F4F6-4ABE-B63B-ECE968AD9521,4384_229 -4367_81484,315,4384_4318,Dublin Pearse,P601,1,4384_7778018_TxcADD9AC5A-4EB1-41B9-8A4C-4884D149FFE9,4384_229 -4367_81485,316,4384_432,Bray (Daly),E216,1,4384_7778018_TxcF29E518F-32C2-4B66-A61C-55753A5890A4,4384_7 -4367_81484,314,4384_4320,Bray (Daly),P603,1,4384_7778018_Txc0F4666F8-32DB-4D05-93BC-13DB7B933C0D,4384_231 -4367_81484,315,4384_4321,Bray (Daly),P603,1,4384_7778018_Txc31CA5C4B-C6E0-4A50-B1D0-C1F41B3E4626,4384_231 -4367_81484,23,4384_4323,Dublin Connolly,P703,1,4384_7778018_Txc4BEC4C5E-3FA0-4ED8-9BA5-990C7CC7B883,4384_239 -4367_81484,316,4384_4324,Dublin Connolly,P703,1,4384_7778018_TxcBF57EE22-57E4-400E-A4CC-80243E0ED950,4384_239 -4367_81484,138,4384_4325,Dublin Connolly,P703,1,4384_7778018_TxcCFBB2416-C47F-461C-9BFA-ED22AD266D56,4384_239 -4367_81484,317,4384_4326,Dublin Connolly,P703,1,4384_7778018_Txc99C0365B-A6A6-4C4C-BEE5-61239B375D83,4384_239 -4367_81484,318,4384_4327,Dublin Connolly,P703,1,4384_7778018_TxcE3274181-20E8-4C73-A671-DAA0006A91A7,4384_239 -4367_81484,314,4384_4328,Dublin Pearse,P602,1,4384_7778018_Txc1DE44030-6B9B-4CB6-9CD5-41A8ABB63B48,4384_230 -4367_81485,138,4384_433,Bray (Daly),E216,1,4384_7778018_Txc394182CD-C8B0-4120-8776-5307B1E2081D,4384_7 -4367_81484,315,4384_4330,Dublin Pearse,P602,1,4384_7778018_Txc3C86377B-407D-45D5-A0FF-5766D19A38A1,4384_230 -4367_81484,314,4384_4334,Dublin Connolly,P700,1,4384_7778018_Txc4AF8ABC8-9644-4585-BFAD-EDE3FC80E44E,4384_236 -4367_81484,315,4384_4336,Dublin Connolly,P700,1,4384_7778018_TxcF2529E7F-E074-4B34-ACAD-9186106D5458,4384_236 -4367_81484,314,4384_4337,Bray (Daly),P604,1,4384_7778018_Txc9B5D59B9-2D8D-4643-A7A2-6B17F176ED2A,4384_232 -4367_81484,315,4384_4338,Bray (Daly),P604,1,4384_7778018_TxcD03AA967-79B2-4744-B355-D1B433FB7450,4384_232 -4367_81485,317,4384_434,Bray (Daly),E216,1,4384_7778018_Txc61BA023A-0C60-4D59-87E8-2BF9A16648BB,4384_7 -4367_81484,314,4384_4341,Dublin Pearse,P605,1,4384_7778018_Txc1D765312-07B8-41FA-826E-EC6F4156B5A6,4384_240 -4367_81484,315,4384_4342,Dublin Pearse,P605,1,4384_7778018_Txc424066DB-45C5-4558-93E6-67A74D403FCC,4384_240 -4367_81484,278,4384_4343,Dublin Connolly,P700,1,4384_7778018_TxcEAA37998-9CD1-4D2A-94B1-889E1D31EFE5,4384_237 -4367_81484,319,4384_4344,Dublin Connolly,P700,1,4384_7778018_TxcA679518A-1CB3-445B-9C5C-FA9F9F0E01D8,4384_237 -4367_81484,271,4384_4345,Dublin Connolly,P700,1,4384_7778018_TxcEE8E3FD8-345F-4765-AC37-BC7EAD8A1FA4,4384_237 -4367_81484,320,4384_4346,Dublin Connolly,P700,1,4384_7778018_Txc4F728B0A-A608-4BAE-88DC-06E075198A55,4384_237 -4367_81484,23,4384_4349,Dublin Connolly,P704,1,4384_7778018_Txc14134020-A3CD-4487-8635-64178C558BF5,4384_237 -4367_81485,318,4384_435,Bray (Daly),E216,1,4384_7778018_TxcB1E8004E-6375-401B-AE42-BB0305128052,4384_7 -4367_81484,316,4384_4351,Dublin Connolly,P704,1,4384_7778018_Txc0339B3C6-36AA-4E26-8D4F-631BBC575FBA,4384_237 -4367_81484,138,4384_4352,Dublin Connolly,P704,1,4384_7778018_TxcB425A245-2906-4A76-AFAD-DE7938CF2EA8,4384_237 -4367_81484,317,4384_4353,Dublin Connolly,P704,1,4384_7778018_TxcE70A8E65-D9D9-4B8F-9221-50C6C8884235,4384_237 -4367_81484,318,4384_4354,Dublin Connolly,P704,1,4384_7778018_TxcBF1403FC-205B-47BC-A37C-2A05435C6536,4384_237 -4367_81484,314,4384_4358,Dun Laoghaire (Mallin),P606,1,4384_7778018_Txc6699021F-CAAD-4EAD-A3D5-15CC56AFDF75,4384_241 -4367_81484,315,4384_4359,Dun Laoghaire (Mallin),P606,1,4384_7778018_TxcBE893D38-31AF-4E7C-9B7D-2B758024C6D2,4384_241 -4367_81485,314,4384_436,Bray (Daly),E226,1,4384_7778018_TxcF89F1431-FCC8-4A58-B485-E0A2126CF12A,4384_7 -4367_81484,23,4384_4360,Dublin Connolly,P705,1,4384_7778018_TxcEBB55B55-9300-44F3-893D-218B9FC80C98,4384_237 -4367_81484,316,4384_4361,Dublin Connolly,P705,1,4384_7778018_TxcDA5C91AE-AD0F-4828-BE34-FAE82DCA857E,4384_237 -4367_81484,138,4384_4362,Dublin Connolly,P705,1,4384_7778018_TxcC55860AA-7E8B-48B4-AE06-9E57787AFA90,4384_237 -4367_81484,317,4384_4363,Dublin Connolly,P705,1,4384_7778018_TxcBCBCAC08-219C-4FA3-BC5A-735B09A7B27E,4384_237 -4367_81484,318,4384_4364,Dublin Connolly,P705,1,4384_7778018_Txc4E82B84D-D73F-47B4-A7F1-1B9D09DEE8BE,4384_237 -4367_81484,314,4384_4366,Dublin Pearse,P607,1,4384_7778018_TxcFFCFB903-FE4D-4C09-A349-B0904B9F0856,4384_242 -4367_81484,315,4384_4367,Dublin Pearse,P607,1,4384_7778018_TxcA04F8358-5E4B-4149-A617-798DEC76B337,4384_242 -4367_81484,278,4384_4372,Dublin Connolly,P702,1,4384_7778018_Txc0BD8EA68-1B65-45A2-993A-D0CF3F6BB37B,4384_237 -4367_81484,319,4384_4374,Dublin Connolly,P702,1,4384_7778018_TxcA48DB30C-E72C-4B58-BD04-20F98BEAF372,4384_237 -4367_81484,271,4384_4375,Dublin Connolly,P702,1,4384_7778018_Txc4DD8B243-3876-486C-BE8B-5CD51C3DE9FD,4384_237 -4367_81484,320,4384_4376,Dublin Connolly,P702,1,4384_7778018_TxcE98E1994-F6B7-493D-AC48-99B07CD5EF04,4384_237 -4367_81484,23,4384_4377,Dublin Connolly,P706,1,4384_7778018_TxcF65828ED-9235-4D4B-BC99-1969B3B14F3A,4384_237 -4367_81484,316,4384_4378,Dublin Connolly,P706,1,4384_7778018_Txc2E43419F-4EAB-4EC1-B23E-715E587917A3,4384_237 -4367_81484,138,4384_4379,Dublin Connolly,P706,1,4384_7778018_TxcD9849AFA-25BA-4441-ACB6-97235B251A67,4384_237 -4367_81484,317,4384_4380,Dublin Connolly,P706,1,4384_7778018_Txc23BDB450-59CB-49AB-8EBE-8C616A837057,4384_237 -4367_81484,318,4384_4381,Dublin Connolly,P706,1,4384_7778018_Txc8E85C9C6-5777-4840-9B7E-62A1E12397F7,4384_237 -4367_81484,314,4384_4384,Dublin Connolly,P701,1,4384_7778018_TxcB3E805A2-ACEF-4CB2-B1D3-46538E61E455,4384_237 -4367_81484,315,4384_4385,Dublin Connolly,P701,1,4384_7778018_TxcB89F2E5D-34D9-43AE-8852-F27C2741C118,4384_237 -4367_81485,315,4384_439,Bray (Daly),E226,1,4384_7778018_Txc904EF2EF-F969-46CF-81E2-B642B9A17CB5,4384_7 -4367_81484,314,4384_4392,Dublin Connolly,P705,1,4384_7778018_Txc510FC834-273F-4681-84B5-7C0999530FE8,4384_237 -4367_81484,315,4384_4394,Dublin Connolly,P705,1,4384_7778018_TxcB75F7BFF-DD81-45CE-842A-925746ECDDA4,4384_237 -4367_81484,23,4384_4395,Dublin Connolly,P708,1,4384_7778018_Txc2AD671DF-69CD-42E2-96D1-FCADB148B346,4384_237 -4367_81484,316,4384_4397,Dublin Connolly,P708,1,4384_7778018_TxcA8F90216-9084-4773-9AE1-041609ACA9D8,4384_237 -4367_81484,138,4384_4398,Dublin Connolly,P708,1,4384_7778018_TxcABB3563B-9531-4703-A7F7-68149116F7D3,4384_237 -4367_81484,317,4384_4399,Dublin Connolly,P708,1,4384_7778018_Txc6AA14CA0-4E50-4764-9CE7-4EB955C13210,4384_237 -4367_81485,315,4384_44,Bray (Daly),E203,1,4384_7778018_Txc9528A512-45F6-4B9A-8923-AE273BA02429,4384_5 -4367_81484,318,4384_4400,Dublin Connolly,P708,1,4384_7778018_TxcFEF405C6-F47B-4E30-91A1-61BFB3CD4E3C,4384_237 -4367_81484,278,4384_4402,Dublin Connolly,P704,1,4384_7778018_TxcC4E5CBF2-8A70-49C6-9B39-9B47DF2A47C9,4384_237 -4367_81484,319,4384_4404,Dublin Connolly,P704,1,4384_7778018_Txc932E0C41-864C-435F-A49E-1EE76F6F60CF,4384_237 -4367_81484,271,4384_4405,Dublin Connolly,P704,1,4384_7778018_TxcB3C11654-0DBD-4245-89A9-5F51A818C5A2,4384_237 -4367_81484,320,4384_4406,Dublin Connolly,P704,1,4384_7778018_Txc6564F6D8-42A8-49DA-A7E2-1BA386ED5C22,4384_237 -4367_81484,314,4384_4407,Grand Canal Dock,P608,1,4384_7778018_Txc2026F4FC-8491-4868-B297-0F5262FEDA0A,4384_233 -4367_81484,315,4384_4409,Grand Canal Dock,P608,1,4384_7778018_Txc385F919F-1D62-4AF7-A35C-68B40D0B57F0,4384_233 -4367_81485,314,4384_441,Bray (Daly),E227,1,4384_7778018_Txc7EFD6723-2EC0-43A9-B555-3197CA0043A0,4384_6 -4367_81484,314,4384_4415,Dublin Connolly,P706,1,4384_7778018_Txc6795D848-8A77-49E3-930E-490BA90DA95B,4384_238 -4367_81484,315,4384_4417,Dublin Connolly,P706,1,4384_7778018_Txc7C0BB9DE-02A8-45D8-9F17-2A9D7796C816,4384_238 -4367_81484,278,4384_4418,Dublin Connolly,P706,1,4384_7778018_Txc4C2111EC-0AB4-46E7-8B74-518DAD897CB3,4384_237 -4367_81484,319,4384_4421,Dublin Connolly,P706,1,4384_7778018_Txc6E32DA29-E8D6-4DB4-8341-8EA3BD2C5077,4384_237 -4367_81484,271,4384_4422,Dublin Connolly,P706,1,4384_7778018_Txc07E0D637-B2E4-4249-B98C-497FE9C56A33,4384_237 -4367_81484,320,4384_4423,Dublin Connolly,P706,1,4384_7778018_Txc7AF61128-6542-4B08-B8D1-9F49C89E4DB0,4384_237 -4367_81484,23,4384_4424,Dublin Connolly,P710,1,4384_7778018_TxcF41BCA85-ED38-4ADA-8161-6B33E2D6961C,4384_237 -4367_81484,316,4384_4426,Dublin Connolly,P710,1,4384_7778018_Txc1DA7FEE6-4E9E-4E83-877C-C1492D6A3024,4384_237 -4367_81484,138,4384_4427,Dublin Connolly,P710,1,4384_7778018_TxcE93C206B-3B7D-4674-AB06-E90A710788A5,4384_237 -4367_81484,317,4384_4428,Dublin Connolly,P710,1,4384_7778018_Txc563DB223-81F7-47E7-83E1-4075082F3E99,4384_237 -4367_81484,318,4384_4429,Dublin Connolly,P710,1,4384_7778018_TxcBA1421DC-9A3E-40B9-8022-E05788C0962D,4384_237 -4367_81484,314,4384_4432,Grand Canal Dock,P609,1,4384_7778018_Txc54262621-1BE9-4ADC-9834-857291397C20,4384_233 -4367_81484,315,4384_4433,Grand Canal Dock,P609,1,4384_7778018_Txc95B11026-C093-4732-A4B6-1AF11644C55A,4384_233 -4367_81484,314,4384_4438,Dublin Connolly,P707,1,4384_7778018_Txc3BB99518-0E35-4D55-A182-CAE85BB0173E,4384_238 -4367_81484,336,4384_4440,Dublin Connolly,P707,1,4384_7778018_Txc29208006-A8EE-4A20-BFF9-D02D30623CFF,4384_238 -4367_81484,278,4384_4441,Dublin Connolly,P708,1,4384_7778018_TxcF067311F-BC3B-4429-8140-3C1E8F748CC7,4384_237 -4367_81484,319,4384_4443,Dublin Connolly,P708,1,4384_7778018_TxcCC90BEED-1F24-4D63-8D5B-0FC98B2C78CE,4384_237 -4367_81484,271,4384_4444,Dublin Connolly,P708,1,4384_7778018_Txc6EE3C603-9310-4ABC-A15F-D47BB498A2BF,4384_237 -4367_81484,320,4384_4445,Dublin Connolly,P708,1,4384_7778018_Txc8D910008-D9DA-48B2-9057-A62B1A05EBE3,4384_237 -4367_81484,23,4384_4446,Dublin Connolly,P712,1,4384_7778018_Txc6F316F7E-ABFD-4797-A0E0-0366F6641F58,4384_237 -4367_81484,316,4384_4448,Dublin Connolly,P712,1,4384_7778018_TxcDD24EF8D-C3E0-4623-85DB-0D8E6CE9E50E,4384_237 -4367_81484,138,4384_4449,Dublin Connolly,P712,1,4384_7778018_Txc69F84450-BE6A-4A1A-9A3A-18373126EEC2,4384_237 -4367_81485,315,4384_445,Bray (Daly),E227,1,4384_7778018_Txc3B81767A-0E0C-4D3B-8557-E95547D171FA,4384_6 -4367_81484,317,4384_4450,Dublin Connolly,P712,1,4384_7778018_TxcAF0C113C-AB2A-43A7-81C3-1DF11E2DCB3F,4384_237 -4367_81484,318,4384_4451,Dublin Connolly,P712,1,4384_7778018_Txc968F73D3-B5A9-4B2B-9B0B-4EE7F09533FB,4384_237 -4367_81484,314,4384_4453,Grand Canal Dock,P610,1,4384_7778018_Txc78141B61-0237-4D1A-9CBC-C1EE05600983,4384_233 -4367_81484,315,4384_4455,Grand Canal Dock,P610,1,4384_7778018_Txc7D8FFC16-A43B-42BB-87AA-7BE64EA9E858,4384_233 -4367_81484,314,4384_4459,Grand Canal Dock,P611,1,4384_7778018_Txc936CF93C-D613-49EE-8500-C0873CFA1454,4384_234 -4367_81485,23,4384_446,Bray (Daly),E217,1,4384_7778018_Txc140E4438-0096-46F0-8C33-36956D7BB26E,4384_6 -4367_81484,315,4384_4461,Grand Canal Dock,P611,1,4384_7778018_Txc742CF2D4-CB5D-4070-B6D0-6FC7D5F41B4E,4384_234 -4367_81484,314,4384_4465,Dublin Connolly,P708,1,4384_7778018_Txc5151DD87-F712-4260-9371-043EF179E778,4384_238 -4367_81484,315,4384_4467,Dublin Connolly,P708,1,4384_7778018_TxcACACEF63-9699-42A8-A235-1F6F98BAA0EC,4384_238 -4367_81484,278,4384_4468,Dublin Connolly,P710,1,4384_7778018_TxcE084E7E6-80BA-4FEB-86DB-75DDDB1AF234,4384_237 -4367_81484,319,4384_4471,Dublin Connolly,P710,1,4384_7778018_Txc0334C903-0D39-4026-B420-8B87C49AA643,4384_237 -4367_81484,271,4384_4472,Dublin Connolly,P710,1,4384_7778018_Txc21D24056-7FCD-4643-A758-832D8360DDD9,4384_237 -4367_81484,320,4384_4473,Dublin Connolly,P710,1,4384_7778018_Txc8B0F1E8B-16CB-4709-BB67-B9E70015486D,4384_237 -4367_81484,23,4384_4474,Dublin Connolly,P714,1,4384_7778018_TxcDA361690-7C45-4091-BA47-34FA09EBADA2,4384_237 -4367_81484,316,4384_4476,Dublin Connolly,P714,1,4384_7778018_Txc9F64F802-13F4-4201-A5CE-AD92092ABB0B,4384_237 -4367_81484,138,4384_4477,Dublin Connolly,P714,1,4384_7778018_TxcFA8F22F4-5AA3-47DD-AC00-069B810B4B84,4384_237 -4367_81484,317,4384_4478,Dublin Connolly,P714,1,4384_7778018_Txc9681CC06-9E9E-4F94-9F30-AB63519CC6F1,4384_237 -4367_81484,318,4384_4479,Dublin Connolly,P714,1,4384_7778018_TxcDDB6B029-5FDF-4406-B850-5FD45378A164,4384_237 -4367_81484,314,4384_4486,Dublin Connolly,P709,1,4384_7778018_TxcCD28BE22-9656-4CC7-B7B9-58F814E19FF2,4384_238 -4367_81484,315,4384_4488,Dublin Connolly,P709,1,4384_7778018_Txc74501209-92CC-4FE0-8E86-6F4EF1589793,4384_238 -4367_81484,278,4384_4489,Dublin Connolly,P712,1,4384_7778018_Txc467A99FE-A2D0-4015-938E-FE4E46C8C770,4384_237 -4367_81485,316,4384_449,Bray (Daly),E217,1,4384_7778018_Txc0885D420-8A02-4DE1-8F06-F54CC1DD7266,4384_6 -4367_81484,319,4384_4491,Dublin Connolly,P712,1,4384_7778018_Txc5A1C613A-9B40-4393-B79C-3CA8BC957E05,4384_237 -4367_81484,271,4384_4492,Dublin Connolly,P712,1,4384_7778018_TxcF688617F-6C8B-4AED-A7DC-5A4FC07D947E,4384_237 -4367_81484,320,4384_4493,Dublin Connolly,P712,1,4384_7778018_Txc2D8EBD92-09C4-4DDC-B6AC-B32D18176886,4384_237 -4367_81484,23,4384_4494,Dublin Connolly,P716,1,4384_7778018_TxcC2687B5C-9742-4E44-9574-4B1D66A50F44,4384_237 -4367_81484,316,4384_4496,Dublin Connolly,P716,1,4384_7778018_TxcD62B2AB8-0C79-43AF-A7C5-0C8EF81267A0,4384_237 -4367_81484,138,4384_4497,Dublin Connolly,P716,1,4384_7778018_Txc01DC9004-462F-4FA6-BEF2-83164BB9ADE7,4384_237 -4367_81484,317,4384_4498,Dublin Connolly,P716,1,4384_7778018_TxcF396B34E-E215-48A8-B0A8-A97DE18251B6,4384_237 -4367_81484,318,4384_4499,Dublin Connolly,P716,1,4384_7778018_Txc75E9D096-95F0-4C9C-9800-098C49D8E26D,4384_237 -4367_81485,314,4384_45,Bray (Daly),E205,1,4384_7778018_Txc52CD7518-4512-489E-9301-FE6E43D59093,4384_6 -4367_81485,138,4384_450,Bray (Daly),E217,1,4384_7778018_Txc529774E5-9BD7-4716-9511-E692340A9DC3,4384_6 -4367_81484,314,4384_4501,Grand Canal Dock,P612,1,4384_7778018_TxcDB593FF0-441C-4647-BE58-4539AF2221DE,4384_233 -4367_81484,315,4384_4503,Grand Canal Dock,P612,1,4384_7778018_Txc638B7699-5244-4FD7-8A78-337DE23931FA,4384_233 -4367_81484,23,4384_4504,Dublin Connolly,P717,1,4384_7778018_Txc12A66A42-F9F2-47E1-9192-8F01A3F80B87,4384_237 -4367_81484,316,4384_4506,Dublin Connolly,P717,1,4384_7778018_TxcC488F955-EAF7-4164-AA48-A76A5429A1EE,4384_237 -4367_81484,138,4384_4507,Dublin Connolly,P717,1,4384_7778018_Txc24076818-58BC-4F36-B000-3EAF9A9B50D3,4384_237 -4367_81484,317,4384_4508,Dublin Connolly,P717,1,4384_7778018_Txc1C23EE32-4EE3-4AA6-BF86-EF2CA5154B18,4384_237 -4367_81484,318,4384_4509,Dublin Connolly,P717,1,4384_7778018_Txc667512E6-9955-4DD3-AA87-59E54483805F,4384_237 -4367_81485,317,4384_451,Bray (Daly),E217,1,4384_7778018_Txc4DE4977D-B217-4C12-AB7A-EDAEC4092750,4384_6 -4367_81484,314,4384_4514,Grand Canal Dock,P613,1,4384_7778018_TxcE870D65F-ED82-4343-BF91-9C9E5BC6DC7F,4384_233 -4367_81484,315,4384_4519,Grand Canal Dock,P613,1,4384_7778018_TxcF4FDE70B-3DB1-4D46-81A4-576764A07B18,4384_233 -4367_81485,318,4384_452,Bray (Daly),E217,1,4384_7778018_Txc4B941686-609C-4CEC-BD59-B9A33AEEACC4,4384_6 -4367_81484,278,4384_4520,Dublin Connolly,P714,1,4384_7778018_TxcEECC81AD-205F-40C3-89AB-8C114F1FEC52,4384_237 -4367_81484,319,4384_4522,Dublin Connolly,P714,1,4384_7778018_Txc50B0E655-67A0-4B53-B30A-475AF8916A79,4384_237 -4367_81484,271,4384_4523,Dublin Connolly,P714,1,4384_7778018_Txc36D0FF35-EFB3-4321-B049-CBC3B55CA6C4,4384_237 -4367_81484,320,4384_4524,Dublin Connolly,P714,1,4384_7778018_TxcD1C51120-05FB-4FC9-8484-21DA12EE2D2C,4384_237 -4367_81484,23,4384_4525,Dublin Connolly,P718,1,4384_7778018_TxcF7D8503E-E50B-43E4-B310-D4D5933DA47F,4384_237 -4367_81484,316,4384_4527,Dublin Connolly,P718,1,4384_7778018_Txc1E2161B3-B820-4B5F-BD04-335F0F64C681,4384_237 -4367_81484,138,4384_4528,Dublin Connolly,P718,1,4384_7778018_Txc259D905C-1A1C-456F-A040-05AAAC278166,4384_237 -4367_81484,317,4384_4529,Dublin Connolly,P718,1,4384_7778018_TxcEAB9E6A0-E475-46CD-9E94-EA8CB76FDE44,4384_237 -4367_81485,314,4384_453,Greystones,E114,1,4384_7778018_TxcBD3306BC-034B-4885-AD2D-1C57630D5B9E,4384_1 -4367_81484,318,4384_4530,Dublin Connolly,P718,1,4384_7778018_TxcAA82D638-B9B9-476F-BADB-917C6EC9A581,4384_237 -4367_81484,314,4384_4532,Grand Canal Dock,P614,1,4384_7778018_TxcEE9DED86-E6EC-424C-8EE3-3CF7FAA5B836,4384_233 -4367_81484,315,4384_4534,Grand Canal Dock,P614,1,4384_7778018_Txc6F21C074-8CE2-4B66-92B1-9129D099C4B1,4384_233 -4367_81484,23,4384_4535,Dublin Connolly,P719,1,4384_7778018_TxcEA5D8505-16D6-481A-9CE4-9A597709D6E9,4384_237 -4367_81484,316,4384_4537,Dublin Connolly,P719,1,4384_7778018_TxcECD7B2D8-A9B1-41D1-BAA7-5F6449BE4482,4384_237 -4367_81484,138,4384_4538,Dublin Connolly,P719,1,4384_7778018_TxcA0F833CF-D9C1-4133-AB53-AEBC63E25F1D,4384_237 -4367_81484,317,4384_4539,Dublin Connolly,P719,1,4384_7778018_Txc4B55C96A-329A-4D08-8C28-2CA2B07C5609,4384_237 -4367_81484,318,4384_4540,Dublin Connolly,P719,1,4384_7778018_TxcAEA54A8A-61E5-44C8-8983-B0A80F15097E,4384_237 -4367_81484,314,4384_4546,Grand Canal Dock,P615,1,4384_7778018_Txc6EB00CAC-FF91-405E-9DCE-CA64816F05F8,4384_233 -4367_81484,315,4384_4548,Grand Canal Dock,P615,1,4384_7778018_Txc11C90E1B-112C-4CC5-903C-34AA2868DCCF,4384_233 -4367_81484,278,4384_4549,Dublin Connolly,P716,1,4384_7778018_TxcD5EEAC59-0EC0-4D39-803B-941021B3DA1C,4384_237 -4367_81484,319,4384_4551,Dublin Connolly,P716,1,4384_7778018_Txc7EF60F90-21A3-4F18-AB2F-59A61A9C168D,4384_237 -4367_81484,271,4384_4552,Dublin Connolly,P716,1,4384_7778018_TxcD956299A-81DA-4C72-AB12-E6BCC278D714,4384_237 -4367_81484,320,4384_4553,Dublin Connolly,P716,1,4384_7778018_TxcF0AAEF11-3D41-4A69-966B-8FBE1CA7F742,4384_237 -4367_81484,23,4384_4554,Dublin Connolly,P720,1,4384_7778018_TxcD462CA1C-B0A9-45BB-B3A9-CF9CFEBE7826,4384_237 -4367_81484,316,4384_4556,Dublin Connolly,P720,1,4384_7778018_TxcD79EC7AE-76BB-41BA-A87F-D88643ABD4B0,4384_237 -4367_81484,138,4384_4557,Dublin Connolly,P720,1,4384_7778018_Txc30CEE764-778B-4F9B-B61C-E0817738D92C,4384_237 -4367_81484,317,4384_4558,Dublin Connolly,P720,1,4384_7778018_TxcC946BC71-7997-4918-90A5-3722DD6CA664,4384_237 -4367_81484,318,4384_4559,Dublin Connolly,P720,1,4384_7778018_Txc1BBDDC4E-2318-4F5C-ABD5-4A6C14622EDB,4384_237 -4367_81485,315,4384_456,Greystones,E114,1,4384_7778018_TxcB4757EF3-7F59-4D24-B7E4-C48D21083A9B,4384_1 -4367_81484,314,4384_4561,Dublin Connolly,P710,1,4384_7778018_Txc7744F666-C93B-43FE-B1B5-51BAF116E291,4384_238 -4367_81484,315,4384_4562,Dublin Connolly,P710,1,4384_7778018_TxcC77CB00D-86E2-4614-826B-BDD9E23F6F0A,4384_238 -4367_81484,23,4384_4564,Dublin Connolly,P721,1,4384_7778018_TxcC0D4E9E3-3DEA-4151-8125-F0D8C7D0264D,4384_237 -4367_81484,316,4384_4566,Dublin Connolly,P721,1,4384_7778018_Txc983E2687-303F-486E-BAD7-1DD16E5ECD93,4384_237 -4367_81484,138,4384_4567,Dublin Connolly,P721,1,4384_7778018_Txc688DA1EF-F224-424F-B202-36155972C6D6,4384_237 -4367_81484,317,4384_4568,Dublin Connolly,P721,1,4384_7778018_Txc3CB210D5-D876-43AD-B3CE-C5387DC35D04,4384_237 -4367_81484,318,4384_4569,Dublin Connolly,P721,1,4384_7778018_TxcCA5A9038-C71F-424D-8D86-D756AF989657,4384_237 -4367_81484,314,4384_4576,Grand Canal Dock,P617,1,4384_7778018_TxcE9F76FF5-DCBD-4F49-B504-DA39B29304E5,4384_233 -4367_81484,315,4384_4578,Grand Canal Dock,P617,1,4384_7778018_Txc8ADD77B3-7E31-421E-916F-652863933FE7,4384_233 -4367_81484,278,4384_4579,Dublin Connolly,P718,1,4384_7778018_TxcBDA21E99-3D8D-46FC-B1D1-66B97C7DB25C,4384_237 -4367_81484,319,4384_4581,Dublin Connolly,P718,1,4384_7778018_TxcBD0B9F97-0A68-4128-B77E-D59714CEE89F,4384_237 -4367_81484,271,4384_4582,Dublin Connolly,P718,1,4384_7778018_TxcE2900A86-4738-4FD8-B0FC-48AB67B29F10,4384_237 -4367_81484,320,4384_4583,Dublin Connolly,P718,1,4384_7778018_Txc0C9982EB-6BC0-4B4F-8AB9-EF4413C4083B,4384_237 -4367_81484,23,4384_4584,Dublin Connolly,P722,1,4384_7778018_Txc911D61AA-129F-45C7-9374-33BEF93ADE0D,4384_237 -4367_81484,316,4384_4586,Dublin Connolly,P722,1,4384_7778018_TxcF63799DC-C472-412B-84F3-207FEFF38F66,4384_237 -4367_81484,138,4384_4587,Dublin Connolly,P722,1,4384_7778018_TxcF7C6BC22-C710-4868-8534-164B86C857B8,4384_237 -4367_81484,317,4384_4588,Dublin Connolly,P722,1,4384_7778018_Txc9DE07630-D8D1-4A60-A9C1-476E5D3E527B,4384_237 -4367_81484,318,4384_4589,Dublin Connolly,P722,1,4384_7778018_TxcBE0761CB-9308-476C-90FE-CB5E14560192,4384_237 -4367_81484,314,4384_4591,Grand Canal Dock,P618,1,4384_7778018_TxcA094F434-B688-4FBF-8BF6-7D729FCF0556,4384_233 -4367_81484,315,4384_4593,Grand Canal Dock,P618,1,4384_7778018_Txc2C9F69EA-DD11-42E8-AEAA-FC801A3F5542,4384_233 -4367_81484,23,4384_4594,Dublin Connolly,P723,1,4384_7778018_TxcCAFA69F8-0997-46A7-A46A-19B55CF0FB7B,4384_237 -4367_81484,316,4384_4596,Dublin Connolly,P723,1,4384_7778018_Txc92CBDD01-98F6-4577-ADF1-344BEAC87FEA,4384_237 -4367_81484,138,4384_4597,Dublin Connolly,P723,1,4384_7778018_Txc2C69E5BF-1CE4-488A-B483-825B6A5822CF,4384_237 -4367_81484,317,4384_4598,Dublin Connolly,P723,1,4384_7778018_Txc08CE3FCA-872F-427D-98F0-DF10745A1BA5,4384_237 -4367_81484,318,4384_4599,Dublin Connolly,P723,1,4384_7778018_Txc375B5AE6-38B2-4A65-BFA9-97D6378E0554,4384_237 -4367_81485,315,4384_46,Bray (Daly),E205,1,4384_7778018_TxcF2633F8D-42B6-4F19-9897-7F54B1E5AB90,4384_6 -4367_81484,314,4384_4605,Grand Canal Dock,P619,1,4384_7778018_Txc79AE3B57-929D-4C6C-866D-2142ED00DB98,4384_233 -4367_81484,315,4384_4607,Grand Canal Dock,P619,1,4384_7778018_TxcC71BC30E-A2DE-4B8C-B922-17961F7C3BC3,4384_233 -4367_81484,278,4384_4608,Dublin Connolly,P720,1,4384_7778018_Txc6FF039D9-CB60-4874-B99B-D175BA3EB433,4384_237 -4367_81485,23,4384_461,Bray (Daly),E218,1,4384_7778018_Txc4CE63781-369D-47CE-BC1F-78780EE9C5E1,4384_7 -4367_81484,319,4384_4610,Dublin Connolly,P720,1,4384_7778018_Txc3BF917A8-7E82-4B9F-9F7F-4F733D4C52B9,4384_237 -4367_81484,271,4384_4611,Dublin Connolly,P720,1,4384_7778018_TxcE0EB8148-4350-4840-80C2-6FE7DAE00DD0,4384_237 -4367_81484,320,4384_4612,Dublin Connolly,P720,1,4384_7778018_TxcA83F347F-A957-4452-A9F9-66EDFDE42073,4384_237 -4367_81484,23,4384_4613,Dublin Connolly,P724,1,4384_7778018_TxcC481A6EB-BD51-4158-A39A-1E8D154E3A6D,4384_237 -4367_81484,316,4384_4615,Dublin Connolly,P724,1,4384_7778018_TxcA5B655CE-1AB2-4D91-9692-BEE1515C70B5,4384_237 -4367_81484,138,4384_4616,Dublin Connolly,P724,1,4384_7778018_Txc378988D9-443D-4E8D-9958-25252B9555C5,4384_237 -4367_81484,317,4384_4617,Dublin Connolly,P724,1,4384_7778018_TxcC812E0F8-D202-4B01-8A03-422BAA56DBB5,4384_237 -4367_81484,318,4384_4618,Dublin Connolly,P724,1,4384_7778018_TxcE556C6BC-099D-497D-B8A1-C441FFD81EF2,4384_237 -4367_81484,314,4384_4620,Dublin Connolly,P712,1,4384_7778018_Txc5BB41375-799B-4275-983A-F21AC7C5CEB3,4384_243 -4367_81484,315,4384_4621,Dublin Connolly,P712,1,4384_7778018_Txc625AC711-18E1-4C7C-A987-22AC0DDC63B6,4384_243 -4367_81484,314,4384_4622,Grand Canal Dock,P620,1,4384_7778018_TxcE8317CD1-FB4A-4843-A987-82550D33A778,4384_233 -4367_81484,315,4384_4624,Grand Canal Dock,P620,1,4384_7778018_TxcAB5B8F7C-A3DA-4C04-9243-F235E0BF88B7,4384_233 -4367_81484,278,4384_4630,Dublin Connolly,P722,1,4384_7778018_TxcDD7C842F-17F2-4C29-B702-0038D60989CD,4384_237 -4367_81484,319,4384_4632,Dublin Connolly,P722,1,4384_7778018_Txc20A1E3FE-A18D-46EB-AA90-24FCE80A5C1F,4384_237 -4367_81484,271,4384_4633,Dublin Connolly,P722,1,4384_7778018_Txc34D57530-3820-422B-94A4-58404B7EDDBA,4384_237 -4367_81484,320,4384_4634,Dublin Connolly,P722,1,4384_7778018_Txc5D36EE8A-FE45-4BCF-AC5D-9EC9929B00D4,4384_237 -4367_81484,23,4384_4635,Dublin Connolly,P726,1,4384_7778018_Txc60E03D81-C5DD-4958-94F3-77095FA64B7F,4384_237 -4367_81484,316,4384_4636,Dublin Connolly,P726,1,4384_7778018_TxcB6ADE7B1-CB2C-417D-A555-75684DED2532,4384_237 -4367_81484,138,4384_4637,Dublin Connolly,P726,1,4384_7778018_TxcCB519666-893B-462E-9BA4-845496491D85,4384_237 -4367_81484,317,4384_4638,Dublin Connolly,P726,1,4384_7778018_Txc27B206A9-E2C7-40BC-8183-4495C1EBC7CE,4384_237 -4367_81484,318,4384_4639,Dublin Connolly,P726,1,4384_7778018_Txc32E43BF8-C2ED-4BF8-BBC8-9DD7A58ACBAC,4384_237 -4367_81485,316,4384_464,Bray (Daly),E218,1,4384_7778018_TxcC08BDA7B-B0BE-4E16-B5FD-97B3324A1188,4384_7 -4367_81484,314,4384_4640,Grand Canal Dock,P621,1,4384_7778018_Txc5D4478BB-63A4-4C41-A1FC-E45EAA78EC62,4384_233 -4367_81484,315,4384_4644,Grand Canal Dock,P621,1,4384_7778018_Txc5E34E8F6-C56E-4E66-8036-61941D4C5028,4384_233 -4367_81484,278,4384_4649,Dublin Connolly,P724,1,4384_7778018_Txc47D0337E-C3C0-4F85-A551-F3D8481AC6B4,4384_237 -4367_81485,138,4384_465,Bray (Daly),E218,1,4384_7778018_Txc56DB5069-016C-4D48-9AE2-6D4E4987C931,4384_7 -4367_81484,319,4384_4651,Dublin Connolly,P724,1,4384_7778018_Txc8075FCBA-5CF5-43F5-B337-6D9679CB11FD,4384_237 -4367_81484,271,4384_4652,Dublin Connolly,P724,1,4384_7778018_Txc309A74DA-890F-44A1-8170-5778217C705B,4384_237 -4367_81484,320,4384_4653,Dublin Connolly,P724,1,4384_7778018_TxcC9ED0D04-4912-4E01-BF30-2DA8FE309E84,4384_237 -4367_81484,314,4384_4654,Grand Canal Dock,P622,1,4384_7778018_TxcBE4B4538-6349-4BF8-839A-2323C6C456B6,4384_235 -4367_81484,23,4384_4655,Dublin Connolly,P728,1,4384_7778018_Txc9671B6A7-63F9-4500-B1CC-E55BC86ED2C8,4384_237 -4367_81484,315,4384_4657,Grand Canal Dock,P622,1,4384_7778018_Txc2414B77E-FBCA-42A7-8DB1-517AA3A26F06,4384_235 -4367_81484,316,4384_4658,Dublin Connolly,P728,1,4384_7778018_Txc9B490D36-B884-4144-82F6-A2015E38810F,4384_237 -4367_81484,138,4384_4659,Dublin Connolly,P728,1,4384_7778018_TxcB8AF1F9A-1E69-435A-AB2B-7CE70949877C,4384_237 -4367_81485,317,4384_466,Bray (Daly),E218,1,4384_7778018_Txc9E384D3B-3A96-4868-9387-AB05E811143F,4384_7 -4367_81484,317,4384_4660,Dublin Connolly,P728,1,4384_7778018_TxcF1655E1A-501C-4017-982F-9D7160D8ADD6,4384_237 -4367_81484,318,4384_4661,Dublin Connolly,P728,1,4384_7778018_Txc7540AFC1-348A-46E5-B761-718D74106C16,4384_237 -4367_81484,278,4384_4668,Dublin Connolly,P726,1,4384_7778018_Txc71F3EC2B-3403-4B8B-AE24-84CCE35A3955,4384_237 -4367_81485,318,4384_467,Bray (Daly),E218,1,4384_7778018_Txc20481513-0BEC-4EDC-A464-11088D7986C2,4384_7 -4367_81484,319,4384_4670,Dublin Connolly,P726,1,4384_7778018_Txc0D9976AD-E000-42B0-B27C-0338E4E8AEB5,4384_237 -4367_81484,271,4384_4671,Dublin Connolly,P726,1,4384_7778018_TxcD321B97C-C89F-4F55-B6A3-19CFCB70CCA6,4384_237 -4367_81484,320,4384_4672,Dublin Connolly,P726,1,4384_7778018_Txc572B476D-1419-4B3D-BE4D-53B531F1E4AE,4384_237 -4367_81484,23,4384_4673,Dublin Connolly,P730,1,4384_7778018_Txc1289EAB4-B95E-4036-9562-35BBD86ECA03,4384_237 -4367_81484,316,4384_4674,Dublin Connolly,P730,1,4384_7778018_Txc53D3F85B-04EE-4B70-9075-D447BA817C61,4384_237 -4367_81484,317,4384_4675,Dublin Connolly,P730,1,4384_7778018_Txc221C3D6F-7B18-4728-91EB-755D2F0E5A55,4384_237 -4367_81484,314,4384_4678,Dublin Connolly,P713,1,4384_7778018_Txc86BBCA24-5891-4A88-9432-A0E0C6249CF9,4384_237 -4367_81485,314,4384_468,Bray (Daly),E228,1,4384_7778018_TxcB6332699-F47E-40CE-AE28-2BDDE9DD1646,4384_6 -4367_81484,315,4384_4680,Dublin Connolly,P713,1,4384_7778018_TxcFBAC1988-DE8B-4788-BE05-0A434FE35325,4384_237 -4367_81484,278,4384_4685,Grand Canal Dock,P600,1,4384_7778018_TxcE1BD3418-14AB-4625-895D-FDF26A070137,4384_235 -4367_81484,319,4384_4687,Grand Canal Dock,P600,1,4384_7778018_Txc53C1D978-A015-42C5-8C84-C5F3D43C3201,4384_235 -4367_81484,271,4384_4688,Grand Canal Dock,P600,1,4384_7778018_Txc1141542F-8E85-4E68-8A6C-57FA27BBCD8F,4384_235 -4367_81484,320,4384_4689,Grand Canal Dock,P600,1,4384_7778018_TxcA0D2F656-2678-4A7C-801E-ABC496867143,4384_235 -4367_81484,314,4384_4690,Dublin Connolly,P714,1,4384_7778018_Txc036C880A-F050-41C3-B2B3-CF304AB2633C,4384_237 -4367_81484,315,4384_4692,Dublin Connolly,P714,1,4384_7778018_Txc71229A89-42C3-4D1D-9244-4FF068F3015F,4384_237 -4367_81484,23,4384_4693,Grand Canal Dock,P600,1,4384_7778018_TxcD9E6ABE0-CA62-4128-BF08-169F63E84927,4384_235 -4367_81484,316,4384_4695,Grand Canal Dock,P600,1,4384_7778018_Txc2DAC0AE7-33F4-4AB3-B7E6-5EBC5959A1E7,4384_235 -4367_81484,317,4384_4696,Grand Canal Dock,P600,1,4384_7778018_TxcE9C16D6C-199E-42CF-99B2-6FC4A042F10B,4384_235 -4367_81484,331,4384_4697,Grand Canal Dock,P600,1,4384_7778018_TxcED81848C-E9A2-4713-803C-C95C53DDC456,4384_235 -4367_81485,23,4384_47,Bray (Daly),E201,1,4384_7778018_Txc98DFE0AA-F644-49C3-8F79-D46533FBBCD7,4384_7 -4367_81485,315,4384_471,Bray (Daly),E228,1,4384_7778018_TxcE9C7FFEF-9254-4F9B-878D-FD8881834E74,4384_6 -4367_81484,23,4384_4715,Drogheda (MacBride),D801,0,4384_7778018_Txc3D03F178-9134-4B7D-A9A4-9E5E8FE3764D,4384_259 -4367_81484,316,4384_4717,Drogheda (MacBride),D801,0,4384_7778018_Txc2E657EE6-C166-499A-B1ED-8075B9FEFA30,4384_259 -4367_81484,138,4384_4718,Drogheda (MacBride),D801,0,4384_7778018_Txc9D923024-5AB2-4BDB-BFE7-8AF6637EE7D7,4384_259 -4367_81484,317,4384_4719,Drogheda (MacBride),D801,0,4384_7778018_TxcB2BFF6AD-9413-46D2-8A96-2160F447CA5C,4384_259 -4367_81485,278,4384_472,Greystones,E111,1,4384_7778018_TxcAED7C56D-0DB8-4194-A6A9-8369B9C75C55,4384_2 -4367_81484,318,4384_4720,Drogheda (MacBride),D801,0,4384_7778018_TxcEA4B2970-89F2-4D57-908A-1DF6FEF63109,4384_259 -4367_81484,314,4384_4725,Drogheda (MacBride),D802,0,4384_7778018_TxcC83E3AC1-6ABA-43D9-8BA1-FCE76A8A5344,4384_256 -4367_81484,315,4384_4733,Drogheda (MacBride),D802,0,4384_7778018_TxcD151DDEB-6175-4860-9827-6E6A094CA5D7,4384_256 -4367_81484,314,4384_4734,Drogheda (MacBride),D803,0,4384_7778018_Txc49160619-7FE0-41C8-8A1E-993CEFA1D6DD,4384_257 -4367_81484,315,4384_4735,Drogheda (MacBride),D803,0,4384_7778018_Txc5F6F1DDB-E445-4C03-820C-2DD0C76652C7,4384_257 -4367_81484,23,4384_4736,Drogheda (MacBride),D802,0,4384_7778018_Txc3E7FAECA-6B6B-4055-A3BD-0CE9669A13BD,4384_259 -4367_81484,316,4384_4741,Drogheda (MacBride),D802,0,4384_7778018_Txc90415807-AEB5-4B06-BC96-C4A6DB346B60,4384_259 -4367_81484,138,4384_4742,Drogheda (MacBride),D802,0,4384_7778018_Txc66D5C071-5773-4315-A43D-3E9CC130E8F6,4384_259 -4367_81484,317,4384_4743,Drogheda (MacBride),D802,0,4384_7778018_Txc81F9FBB3-B1C1-4786-863C-91AEDB19A7D2,4384_259 -4367_81484,318,4384_4744,Drogheda (MacBride),D802,0,4384_7778018_Txc95D87A7F-923C-46A2-9FA7-6B030E6063E5,4384_259 -4367_81484,314,4384_4745,Drogheda (MacBride),D805,0,4384_7778018_TxcD9A66AE0-EE71-4D80-8EE6-827E8753B913,4384_258 -4367_81484,315,4384_4746,Drogheda (MacBride),D805,0,4384_7778018_Txc5EC6FECA-4EE4-4750-B458-223B7D2B0669,4384_258 -4367_81484,314,4384_4747,Drogheda (MacBride),D806,0,4384_7778018_TxcE3D4E50A-39CC-4625-BC37-626BE6BF41A9,4384_256 -4367_81485,319,4384_475,Greystones,E111,1,4384_7778018_TxcF7C2FF3E-C610-4C1E-802A-FE467330E031,4384_2 -4367_81484,315,4384_4750,Drogheda (MacBride),D806,0,4384_7778018_Txc1C62F28E-71E4-4FB3-BE0C-83776F7F6E6C,4384_256 -4367_81484,278,4384_4751,Drogheda (MacBride),D800,0,4384_7778018_Txc942D8181-A955-4EA9-A2A7-FDFC12CD09CE,4384_259 -4367_81484,319,4384_4753,Drogheda (MacBride),D800,0,4384_7778018_Txc8A56A90A-5B49-4BC0-AA07-2D3777001827,4384_259 -4367_81484,271,4384_4754,Drogheda (MacBride),D800,0,4384_7778018_Txc08052315-59EC-42A5-9D01-B9544DE6B3D2,4384_259 -4367_81484,320,4384_4755,Drogheda (MacBride),D800,0,4384_7778018_TxcF6F06CE1-C806-451B-BDA7-47E29838C8A6,4384_259 -4367_81484,23,4384_4756,Drogheda (MacBride),D804,0,4384_7778018_Txc0582FD46-2E44-4A79-862E-5D9A72C4B0BB,4384_259 -4367_81484,316,4384_4757,Drogheda (MacBride),D804,0,4384_7778018_Txc72B35640-6BEF-4CD5-8224-4FFFC68BB25D,4384_259 -4367_81484,138,4384_4758,Drogheda (MacBride),D804,0,4384_7778018_Txc97FAE3AF-071C-4BB3-B802-3E0085309C20,4384_259 -4367_81484,317,4384_4759,Drogheda (MacBride),D804,0,4384_7778018_Txc436AF56F-1DB0-42D3-B15C-BB6D29BF4FB6,4384_259 -4367_81485,271,4384_476,Greystones,E111,1,4384_7778018_Txc14096385-D23C-41E3-90AF-25A53799433B,4384_2 -4367_81484,318,4384_4760,Drogheda (MacBride),D804,0,4384_7778018_TxcC99C2475-4F90-4950-A83D-1EB09A28F832,4384_259 -4367_81484,314,4384_4766,Drogheda (MacBride),D808,0,4384_7778018_Txc1FC71C87-FA46-42B8-969C-E0AC99341338,4384_259 -4367_81484,315,4384_4769,Drogheda (MacBride),D808,0,4384_7778018_TxcE8E1B0DA-84B7-45A7-93F4-287898BBD181,4384_259 -4367_81485,320,4384_477,Greystones,E111,1,4384_7778018_Txc074F1B9A-C5F8-419E-8F11-4602E1D28786,4384_2 -4367_81484,314,4384_4770,Drogheda (MacBride),D809,0,4384_7778018_Txc59E1F10A-FCAA-448C-AE57-3B3621070D9D,4384_257 -4367_81484,315,4384_4771,Drogheda (MacBride),D809,0,4384_7778018_Txc946C67A0-ADFE-4277-8C60-3CDE51E850F1,4384_257 -4367_81484,278,4384_4774,Drogheda (MacBride),D802,0,4384_7778018_TxcCB5E510B-575D-44C8-87D2-C1E9DD0C5968,4384_259 -4367_81484,319,4384_4776,Drogheda (MacBride),D802,0,4384_7778018_Txc0E2EA9BC-FDAA-44C9-B773-7E11ECF1B62F,4384_259 -4367_81484,271,4384_4777,Drogheda (MacBride),D802,0,4384_7778018_Txc7BC9BE10-011F-4CA4-9887-F92F7D7AAB65,4384_259 -4367_81484,320,4384_4778,Drogheda (MacBride),D802,0,4384_7778018_Txc8102955A-67A1-44C5-B05C-7212B03E5425,4384_259 -4367_81485,314,4384_478,Bray (Daly),E229,1,4384_7778018_Txc5D139A17-4AFC-4910-859D-811061BE8997,4384_7 -4367_81484,23,4384_4782,Drogheda (MacBride),D806,0,4384_7778018_TxcD595EBE0-11BC-421A-A4E1-E18985CA1298,4384_259 -4367_81484,316,4384_4783,Drogheda (MacBride),D806,0,4384_7778018_Txc2766BC1D-70D1-4EEE-8E48-4C567FD68235,4384_259 -4367_81484,138,4384_4784,Drogheda (MacBride),D806,0,4384_7778018_Txc7FFAF64C-4A76-41B7-B38C-2C2E32741771,4384_259 -4367_81484,317,4384_4785,Drogheda (MacBride),D806,0,4384_7778018_TxcA9DEF523-3FB2-4324-81F0-9CE91FB9EB95,4384_259 -4367_81484,318,4384_4786,Drogheda (MacBride),D806,0,4384_7778018_Txc6A95EB38-1DB4-4508-8E7E-A5A48070277C,4384_259 -4367_81484,314,4384_4792,Drogheda (MacBride),D810,0,4384_7778018_TxcDEA14BCA-F480-452E-A0B0-ADB9E0D54ECB,4384_256 -4367_81484,315,4384_4793,Drogheda (MacBride),D810,0,4384_7778018_Txc7825BCED-5D1A-4D56-A4C0-C0B10FD9F2DF,4384_256 -4367_81484,314,4384_4794,Dundalk (Clarke),D812,0,4384_7778018_Txc29D73688-3C2B-4632-8CBD-70497498FF0F,4384_260 -4367_81484,315,4384_4796,Dundalk (Clarke),D812,0,4384_7778018_Txc413F80CE-9274-4E38-875C-5DF042290D6E,4384_260 -4367_81484,278,4384_4797,Drogheda (MacBride),D804,0,4384_7778018_TxcE29BDA18-7417-4A8E-8A70-2AD12B9C8328,4384_259 -4367_81484,319,4384_4799,Drogheda (MacBride),D804,0,4384_7778018_Txc2A07827B-AF85-4A08-9796-F85989345EC7,4384_259 -4367_81484,271,4384_4800,Drogheda (MacBride),D804,0,4384_7778018_TxcAC7F858A-7153-4B61-A2E5-2DA331D3B534,4384_259 -4367_81484,320,4384_4801,Drogheda (MacBride),D804,0,4384_7778018_Txc56A405CC-4BAC-4183-8DC5-A2BAA8698169,4384_259 -4367_81484,23,4384_4805,Drogheda (MacBride),D808,0,4384_7778018_Txc77A33B55-DB2C-49AB-BF81-32D8DD38D4C0,4384_259 -4367_81484,316,4384_4806,Drogheda (MacBride),D808,0,4384_7778018_Txc07D07147-BE62-4FD4-B029-8CD3125EE2B8,4384_259 -4367_81484,138,4384_4807,Drogheda (MacBride),D808,0,4384_7778018_TxcC1544A63-5D52-475E-AB9F-BCEABC79FC5F,4384_259 -4367_81484,317,4384_4808,Drogheda (MacBride),D808,0,4384_7778018_Txc3D163908-15D0-4DF6-BF35-821FD0AB4139,4384_259 -4367_81484,318,4384_4809,Drogheda (MacBride),D808,0,4384_7778018_Txc225DC928-C41A-41C5-8C0C-B4AF3F8E307A,4384_259 -4367_81485,315,4384_481,Bray (Daly),E229,1,4384_7778018_Txc9FD0AD54-DD4D-41A1-931E-FF428D8ED9D0,4384_7 -4367_81484,314,4384_4812,Drogheda (MacBride),D814,0,4384_7778018_Txc6D33B337-0E39-4E02-AD90-E9801B4D9157,4384_256 -4367_81484,315,4384_4814,Drogheda (MacBride),D814,0,4384_7778018_Txc2712D485-7B34-44B3-A8B6-99588F504820,4384_256 -4367_81484,278,4384_4815,Drogheda (MacBride),D806,0,4384_7778018_TxcCB32F828-1215-470F-85AB-FB44096D2137,4384_259 -4367_81484,319,4384_4817,Drogheda (MacBride),D806,0,4384_7778018_Txc3F91A2DD-F3C5-40BF-8E4B-A2C08265AF44,4384_259 -4367_81484,271,4384_4818,Drogheda (MacBride),D806,0,4384_7778018_Txc86F4F310-0EA0-4F77-BF50-6CA92F476A0B,4384_259 -4367_81484,320,4384_4819,Drogheda (MacBride),D806,0,4384_7778018_TxcA414AEC4-8806-4EC9-BE09-A0626B87F210,4384_259 -4367_81485,23,4384_482,Greystones,E106,1,4384_7778018_Txc57C359AE-6558-48FB-8252-A26CB200DCB7,4384_2 -4367_81484,23,4384_4823,Drogheda (MacBride),D810,0,4384_7778018_Txc91BB0111-4D64-4020-A764-CD5256BB9782,4384_259 -4367_81484,316,4384_4824,Drogheda (MacBride),D810,0,4384_7778018_Txc8D48EA4D-48DE-471E-9B51-962376C8C44F,4384_259 -4367_81484,138,4384_4825,Drogheda (MacBride),D810,0,4384_7778018_Txc5DCDFD72-4150-4DC0-8C45-4451DE948923,4384_259 -4367_81484,317,4384_4826,Drogheda (MacBride),D810,0,4384_7778018_Txc15E096AB-FF04-4523-9A3B-65FCFFEE85D5,4384_259 -4367_81484,318,4384_4827,Drogheda (MacBride),D810,0,4384_7778018_TxcDC033AC8-B771-4E86-AE7D-E07DA5A56A16,4384_259 -4367_81484,314,4384_4833,Drogheda (MacBride),D816,0,4384_7778018_Txc8DE15B04-F98E-47B5-B75C-28660975D2A9,4384_256 -4367_81484,315,4384_4835,Drogheda (MacBride),D816,0,4384_7778018_Txc6480F6BD-3616-42EF-BCD5-CA038D89E4C3,4384_256 -4367_81484,278,4384_4836,Drogheda (MacBride),D808,0,4384_7778018_TxcAE96F353-71E0-4573-807A-4F7EAD30B03C,4384_259 -4367_81484,319,4384_4838,Drogheda (MacBride),D808,0,4384_7778018_Txc061483FE-3BE8-4669-9648-E3D2A1CD01FA,4384_259 -4367_81484,271,4384_4839,Drogheda (MacBride),D808,0,4384_7778018_Txc50C9530A-56D1-491E-8B41-A1F6F353AE8E,4384_259 -4367_81484,320,4384_4840,Drogheda (MacBride),D808,0,4384_7778018_Txc4847D422-67E0-4D20-A3E3-37D169B4F452,4384_259 -4367_81484,23,4384_4844,Drogheda (MacBride),D812,0,4384_7778018_TxcDACD59F9-C424-4C31-A8A8-AFF23F6894FC,4384_259 -4367_81484,316,4384_4845,Drogheda (MacBride),D812,0,4384_7778018_Txc7136A4D8-F897-4F4D-AE3A-30EBFA8FFCF1,4384_259 -4367_81484,138,4384_4846,Drogheda (MacBride),D812,0,4384_7778018_Txc38EA727E-3EE1-43C0-AC3D-4254F7FB77C4,4384_259 -4367_81484,317,4384_4847,Drogheda (MacBride),D812,0,4384_7778018_Txc0B22C600-6086-4C67-9920-47A52F3E59B2,4384_259 -4367_81484,318,4384_4848,Drogheda (MacBride),D812,0,4384_7778018_Txc2C85A00B-4227-4EDC-948F-4CB708C393CF,4384_259 -4367_81484,314,4384_4851,Drogheda (MacBride),D818,0,4384_7778018_Txc6C2A2CF3-68BE-413D-AABD-FABC318B53E8,4384_256 -4367_81484,315,4384_4853,Drogheda (MacBride),D818,0,4384_7778018_Txc9E137C3C-0473-4AD1-AF3B-652BA088389F,4384_256 -4367_81484,278,4384_4854,Drogheda (MacBride),D810,0,4384_7778018_TxcA3CFF5D1-45C3-4926-B299-B29CD4BD9E85,4384_259 -4367_81484,319,4384_4856,Drogheda (MacBride),D810,0,4384_7778018_TxcAB561C8C-BE4B-47F2-89C1-431D26647DCF,4384_259 -4367_81484,271,4384_4857,Drogheda (MacBride),D810,0,4384_7778018_Txc4878FAFA-E910-402D-B77C-7F4B63A4CD30,4384_259 -4367_81484,320,4384_4858,Drogheda (MacBride),D810,0,4384_7778018_Txc118FC0C7-7EBE-44BE-8FF6-ABF81D94DEF2,4384_259 -4367_81485,316,4384_486,Greystones,E106,1,4384_7778018_TxcEA32DC8F-8051-4034-90E2-9B0F9A1FCF93,4384_2 -4367_81484,23,4384_4862,Drogheda (MacBride),D814,0,4384_7778018_Txc22712B16-C9E5-4657-8E5D-CBF8894DCF99,4384_259 -4367_81484,316,4384_4863,Drogheda (MacBride),D814,0,4384_7778018_TxcA9E305C2-1CFA-4AAD-983E-F10EE2B67682,4384_259 -4367_81484,138,4384_4864,Drogheda (MacBride),D814,0,4384_7778018_Txc7818310B-793D-4B83-88F4-3EC3683C6B94,4384_259 -4367_81484,317,4384_4865,Drogheda (MacBride),D814,0,4384_7778018_TxcA7FE99F8-671B-489C-83B9-61E5AB74C5B6,4384_259 -4367_81484,318,4384_4866,Drogheda (MacBride),D814,0,4384_7778018_Txc776686E5-ACC5-4922-BF3E-75C5DDA97D16,4384_259 -4367_81485,138,4384_487,Greystones,E106,1,4384_7778018_TxcC43E4C55-207E-44BD-BE97-E712CD72B800,4384_2 -4367_81484,314,4384_4872,Drogheda (MacBride),D820,0,4384_7778018_TxcE68B328C-FD92-49F8-8FD2-10F9CD22BFBE,4384_256 -4367_81484,315,4384_4874,Drogheda (MacBride),D820,0,4384_7778018_TxcC8CC7CD3-B294-4920-91EB-429BF0685202,4384_256 -4367_81484,278,4384_4875,Drogheda (MacBride),D812,0,4384_7778018_Txc37C9D776-4253-439E-AD9C-3FB98AB455F2,4384_259 -4367_81484,319,4384_4877,Drogheda (MacBride),D812,0,4384_7778018_Txc0C81D583-09B2-4741-AA4B-D312C7F31810,4384_259 -4367_81484,271,4384_4878,Drogheda (MacBride),D812,0,4384_7778018_Txc78FE3010-3757-4FC0-9ED4-13BA86E13B0B,4384_259 -4367_81484,320,4384_4879,Drogheda (MacBride),D812,0,4384_7778018_TxcE9DBCE39-92D6-41D9-B228-1A005017CEA8,4384_259 -4367_81485,317,4384_488,Greystones,E106,1,4384_7778018_Txc8F7EC604-4673-4E63-8833-F00DCEA76D29,4384_2 -4367_81484,23,4384_4884,Drogheda (MacBride),D816,0,4384_7778018_Txc07FDDAD6-CF00-4DE8-BCED-9DCC83BA560D,4384_259 -4367_81484,316,4384_4885,Drogheda (MacBride),D816,0,4384_7778018_Txc21D00704-B2E1-4EDC-A26B-E4ABFA42B60F,4384_259 -4367_81484,138,4384_4886,Drogheda (MacBride),D816,0,4384_7778018_TxcD246E4E4-3626-489C-92EB-D16C29D009ED,4384_259 -4367_81484,317,4384_4887,Drogheda (MacBride),D816,0,4384_7778018_Txc10F40949-7467-4ED6-B7CD-B64F011528CF,4384_259 -4367_81484,318,4384_4888,Drogheda (MacBride),D816,0,4384_7778018_Txc5FDB1D3E-BD21-45FA-89FC-24BDB21CBF50,4384_259 -4367_81485,318,4384_489,Greystones,E106,1,4384_7778018_Txc4941DF9C-43F3-458A-A84B-816F8F84360B,4384_2 -4367_81484,23,4384_4899,Drogheda (MacBride),D817,0,4384_7778018_Txc9DE997E7-3000-491E-B5B8-5EAA9CB6E454,4384_259 -4367_81485,314,4384_490,Greystones,E115,1,4384_7778018_TxcB980F2E2-FE6D-4C1B-9D80-4E3C0A38BEBE,4384_2 -4367_81484,316,4384_4901,Drogheda (MacBride),D817,0,4384_7778018_Txc761F7224-803A-4275-AE4B-0AABB7628D08,4384_259 -4367_81484,138,4384_4902,Drogheda (MacBride),D817,0,4384_7778018_Txc438C4099-0F5C-4360-A5A4-2C39837747F7,4384_259 -4367_81484,317,4384_4903,Drogheda (MacBride),D817,0,4384_7778018_TxcEE438B9B-03EB-4063-9C59-60F73A9DAB3D,4384_259 -4367_81484,318,4384_4904,Drogheda (MacBride),D817,0,4384_7778018_Txc29A2C139-84C1-41F7-A5AB-71B78556E7D6,4384_259 -4367_81484,278,4384_4905,Drogheda (MacBride),D814,0,4384_7778018_Txc156BDCF4-1933-4F6E-A5CF-BB15112BA4CC,4384_259 -4367_81484,319,4384_4907,Drogheda (MacBride),D814,0,4384_7778018_Txc85577FA7-993A-45AF-8F96-B58F554A981B,4384_259 -4367_81484,271,4384_4908,Drogheda (MacBride),D814,0,4384_7778018_TxcF951D665-DBC3-4580-B6E0-C6A54345507F,4384_259 -4367_81484,320,4384_4909,Drogheda (MacBride),D814,0,4384_7778018_TxcD2281978-123B-4E71-A618-8DCDB4857A77,4384_259 -4367_81484,23,4384_4913,Drogheda (MacBride),D818,0,4384_7778018_TxcB287E0AE-159E-4EE4-BC33-A3CB3FC39DFF,4384_259 -4367_81484,316,4384_4914,Drogheda (MacBride),D818,0,4384_7778018_Txc53FA26CA-099F-4D8A-BEDB-D13AAB2F4F09,4384_259 -4367_81484,138,4384_4915,Drogheda (MacBride),D818,0,4384_7778018_Txc18494D23-9BE3-4A14-A0E7-5A9C57F3C8BC,4384_259 -4367_81484,317,4384_4916,Drogheda (MacBride),D818,0,4384_7778018_TxcC5E3073B-ABEC-49B6-820A-6BDBAE1F3EC3,4384_259 -4367_81484,318,4384_4917,Drogheda (MacBride),D818,0,4384_7778018_TxcBCFEB112-6195-494A-BCBF-3E695B743D95,4384_259 -4367_81484,314,4384_4923,Drogheda (MacBride),D826,0,4384_7778018_Txc790CE2B0-5D5B-4AB2-A89E-FBF9AB59C6DB,4384_261 -4367_81484,315,4384_4924,Drogheda (MacBride),D826,0,4384_7778018_TxcA24290EA-774A-4581-AC09-564B02D84C1A,4384_261 -4367_81484,314,4384_4925,Drogheda (MacBride),D824,0,4384_7778018_TxcC70519F0-45CD-4279-A1D1-9A8901AC9B63,4384_256 -4367_81484,315,4384_4928,Drogheda (MacBride),D824,0,4384_7778018_Txc7DB80069-11BC-4A85-9015-389789BA3B34,4384_256 -4367_81484,23,4384_4929,Drogheda (MacBride),D819,0,4384_7778018_TxcBE37CF71-394B-4CC7-826F-DDE601742DD9,4384_259 -4367_81485,315,4384_493,Greystones,E115,1,4384_7778018_Txc8743AC24-A86C-4C7E-8845-6AD07F5DC4A9,4384_2 -4367_81484,316,4384_4931,Drogheda (MacBride),D819,0,4384_7778018_TxcFE5EBAF7-E0A4-4E90-8443-46594AECA9B6,4384_259 -4367_81484,138,4384_4932,Drogheda (MacBride),D819,0,4384_7778018_Txc23F79677-D517-48B4-B1CD-B447EC0B85EA,4384_259 -4367_81484,317,4384_4933,Drogheda (MacBride),D819,0,4384_7778018_Txc2BAC0E05-336C-4CA5-A2A6-1150B9276E17,4384_259 -4367_81484,318,4384_4934,Drogheda (MacBride),D819,0,4384_7778018_Txc8DC156CC-5AE3-44C1-8B54-E012E9C2B438,4384_259 -4367_81484,278,4384_4935,Drogheda (MacBride),D816,0,4384_7778018_TxcD1E24529-99B6-45B7-8C3D-9700A8E6A891,4384_259 -4367_81484,319,4384_4937,Drogheda (MacBride),D816,0,4384_7778018_Txc07951420-29ED-45CC-9732-FC810EC2C7DB,4384_259 -4367_81484,271,4384_4938,Drogheda (MacBride),D816,0,4384_7778018_Txc0324CFDE-AB1A-4804-A191-B3E4C2E89578,4384_259 -4367_81484,320,4384_4939,Drogheda (MacBride),D816,0,4384_7778018_Txc36ACE2C0-C084-484F-A77F-410FF06A4D8E,4384_259 -4367_81484,23,4384_4943,Drogheda (MacBride),D820,0,4384_7778018_Txc85DEA6B3-067F-40E8-8059-FC9A2468C29A,4384_259 -4367_81484,316,4384_4944,Drogheda (MacBride),D820,0,4384_7778018_TxcEE5FB2DE-2496-4E7E-B4A4-189E50334ED7,4384_259 -4367_81484,138,4384_4945,Drogheda (MacBride),D820,0,4384_7778018_Txc998E3491-6D10-444A-8369-C0AAFF9E21B4,4384_259 -4367_81484,317,4384_4946,Drogheda (MacBride),D820,0,4384_7778018_Txc6EDBB8A4-08AE-4F2E-9423-534CD3BF5731,4384_259 -4367_81484,318,4384_4947,Drogheda (MacBride),D820,0,4384_7778018_TxcFC248C9D-E047-406C-A6F9-6064AE1FC6F9,4384_259 -4367_81485,23,4384_495,Bray (Daly),E219,1,4384_7778018_TxcD38139C7-1F92-4287-B66A-3AF971317234,4384_7 -4367_81484,314,4384_4950,Drogheda (MacBride),D827,0,4384_7778018_TxcD0603F78-641F-4AB4-81BC-C874DDF510D7,4384_256 -4367_81484,315,4384_4952,Drogheda (MacBride),D827,0,4384_7778018_TxcA29DEB1C-6763-4B60-BB8C-061A85624664,4384_256 -4367_81484,23,4384_4953,Drogheda (MacBride),D821,0,4384_7778018_Txc78036638-B9AB-4101-9DF6-EE7BC2C03A78,4384_259 -4367_81484,316,4384_4955,Drogheda (MacBride),D821,0,4384_7778018_Txc24D1640A-B606-4D52-92E7-A135ED35C095,4384_259 -4367_81484,138,4384_4956,Drogheda (MacBride),D821,0,4384_7778018_TxcECE1CFA6-ADB6-400B-B83A-C066B003E673,4384_259 -4367_81484,317,4384_4957,Drogheda (MacBride),D821,0,4384_7778018_TxcB0A039CF-0FEB-4E50-BF19-F8B440F4D664,4384_259 -4367_81484,318,4384_4958,Drogheda (MacBride),D821,0,4384_7778018_Txc2D288D62-29CA-4675-A6A8-C7559D535220,4384_259 -4367_81484,278,4384_4960,Drogheda (MacBride),D818,0,4384_7778018_Txc9B528F0D-C0CF-4D5E-8428-F91B4FA92A1B,4384_259 -4367_81484,319,4384_4962,Drogheda (MacBride),D818,0,4384_7778018_Txc73DCD2F3-B92C-4ED6-97C3-96195859B165,4384_259 -4367_81484,271,4384_4963,Drogheda (MacBride),D818,0,4384_7778018_Txc3EB63293-531B-4F41-82D4-94EE14AC479E,4384_259 -4367_81484,320,4384_4964,Drogheda (MacBride),D818,0,4384_7778018_Txc0B8DF50C-860D-498E-A956-5BDD6E29E59B,4384_259 -4367_81484,23,4384_4968,Drogheda (MacBride),D822,0,4384_7778018_TxcF2086CD7-7CD0-4AB9-B600-C3F0E281F2C4,4384_259 -4367_81484,316,4384_4969,Drogheda (MacBride),D822,0,4384_7778018_TxcA722CE82-328D-4E92-8E18-C3266CA2739B,4384_259 -4367_81484,138,4384_4970,Drogheda (MacBride),D822,0,4384_7778018_TxcAA728AF2-310D-44C7-9BF9-87A68FD861CE,4384_259 -4367_81484,317,4384_4971,Drogheda (MacBride),D822,0,4384_7778018_Txc19ED7923-B76C-4883-9558-14B08CB21168,4384_259 -4367_81484,318,4384_4972,Drogheda (MacBride),D822,0,4384_7778018_Txc5D062792-C9A4-4E49-98D7-2EEC3EFD91FE,4384_259 -4367_81485,316,4384_498,Bray (Daly),E219,1,4384_7778018_TxcC968175E-1641-4FA3-B9D7-42CDCA6AF3CF,4384_7 -4367_81484,23,4384_4980,Drogheda (MacBride),D823,0,4384_7778018_TxcBB0EDDCA-FE29-4735-9A64-CCEDC2A75562,4384_259 -4367_81484,316,4384_4982,Drogheda (MacBride),D823,0,4384_7778018_Txc86D45B07-BB8B-4D75-A776-3720826DFBFB,4384_259 -4367_81484,138,4384_4983,Drogheda (MacBride),D823,0,4384_7778018_Txc736B7688-EA43-44D1-AD70-2BCA44FAFC37,4384_259 -4367_81484,317,4384_4984,Drogheda (MacBride),D823,0,4384_7778018_Txc60EBF36F-D70E-4916-AA73-AC0BDE4D1D75,4384_259 -4367_81484,318,4384_4985,Drogheda (MacBride),D823,0,4384_7778018_Txc9E3152A0-8694-43B9-9641-9D0F551B36B2,4384_259 -4367_81484,278,4384_4986,Drogheda (MacBride),D820,0,4384_7778018_Txc3E0396D1-CC0F-49E7-B279-2CF5D3FCEE04,4384_259 -4367_81484,319,4384_4988,Drogheda (MacBride),D820,0,4384_7778018_TxcB3529041-4DB4-4F2F-BB77-04C20C21526C,4384_259 -4367_81484,271,4384_4989,Drogheda (MacBride),D820,0,4384_7778018_TxcFEFB87AB-3471-413C-B89B-204E920A2F2B,4384_259 -4367_81485,138,4384_499,Bray (Daly),E219,1,4384_7778018_Txc1C1B3585-D4BD-4A11-9FD7-D998295C57CB,4384_7 -4367_81484,320,4384_4990,Drogheda (MacBride),D820,0,4384_7778018_Txc3137022D-C63E-46AF-A190-EACFBCD0D3A7,4384_259 -4367_81484,23,4384_4991,Drogheda (MacBride),D824,0,4384_7778018_TxcAF9A7EE6-78AD-4792-A77B-24412DD1011D,4384_259 -4367_81484,316,4384_4992,Drogheda (MacBride),D824,0,4384_7778018_Txc132B1559-B2E6-498E-B644-B243BC79D9A4,4384_259 -4367_81484,138,4384_4993,Drogheda (MacBride),D824,0,4384_7778018_Txc81D026CB-63BA-45D9-A06B-C72A6B895DA4,4384_259 -4367_81484,317,4384_4994,Drogheda (MacBride),D824,0,4384_7778018_Txc181011F0-3A09-479B-A4B6-AF12410922D3,4384_259 -4367_81484,318,4384_4995,Drogheda (MacBride),D824,0,4384_7778018_Txc71911E69-B8BC-49F5-A0F0-BD0A7A77F8FE,4384_259 -4367_81485,316,4384_50,Bray (Daly),E201,1,4384_7778018_Txc2C47181B-1FBD-4301-9F9C-2D62E2EEC0FC,4384_7 -4367_81485,317,4384_500,Bray (Daly),E219,1,4384_7778018_TxcDD2F3903-561F-4736-B272-AF49A332D57B,4384_7 -4367_81484,278,4384_5001,Drogheda (MacBride),D822,0,4384_7778018_Txc77ACBE01-AD00-4EC5-88B7-AB7C40CF7E6A,4384_259 -4367_81484,319,4384_5003,Drogheda (MacBride),D822,0,4384_7778018_Txc0FF81318-877F-4022-99C6-BF2E7693B9FB,4384_259 -4367_81484,271,4384_5004,Drogheda (MacBride),D822,0,4384_7778018_Txc43A9B6DF-1707-4409-952C-E161C0C5019D,4384_259 -4367_81484,320,4384_5005,Drogheda (MacBride),D822,0,4384_7778018_Txc3874E5AE-1B56-4AD0-B8BF-88D23070BA90,4384_259 -4367_81484,23,4384_5006,Drogheda (MacBride),D826,0,4384_7778018_Txc1991BAC7-6839-43A0-B722-B2B052919CF9,4384_259 -4367_81484,316,4384_5007,Drogheda (MacBride),D826,0,4384_7778018_Txc84EBBDBB-F3A0-46DC-B9CA-64D0F2BB0D16,4384_259 -4367_81484,138,4384_5008,Drogheda (MacBride),D826,0,4384_7778018_TxcB7997E4F-D903-49A9-99B3-46D30B3A2DE0,4384_259 -4367_81484,317,4384_5009,Drogheda (MacBride),D826,0,4384_7778018_Txc58E2D33A-0F8A-443A-8AFE-48E0A0025867,4384_259 -4367_81485,318,4384_501,Bray (Daly),E219,1,4384_7778018_Txc2586CDD9-382A-4E51-8DE7-2B55D3F82945,4384_7 -4367_81484,318,4384_5010,Drogheda (MacBride),D826,0,4384_7778018_TxcC031D7BA-6C18-476A-B034-1F2623E84B75,4384_259 -4367_81484,278,4384_5019,Dundalk (Clarke),D825,0,4384_7778018_Txc0E3521C3-3F41-4FD2-9E20-71C0F744C8F5,4384_262 -4367_81485,314,4384_502,Bray (Daly),E230,1,4384_7778018_TxcA2EA57A4-EEA4-46C5-9764-DFDAA4502D58,4384_7 -4367_81484,319,4384_5021,Dundalk (Clarke),D825,0,4384_7778018_Txc3AA19474-D3E1-4F1D-BF13-A209477229C5,4384_262 -4367_81484,271,4384_5022,Dundalk (Clarke),D825,0,4384_7778018_Txc29BB95A9-8707-4F62-98EA-DE88EDB1B894,4384_262 -4367_81484,320,4384_5023,Dundalk (Clarke),D825,0,4384_7778018_Txc3E3C97FC-A810-4C67-9422-BFED0857BA5E,4384_262 -4367_81485,278,4384_503,Bray (Daly),E212,1,4384_7778018_Txc7ACA5FF2-0058-4023-B88E-A4078D7EDB4A,4384_8 -4367_81484,23,4384_5033,Drogheda (MacBride),D829,0,4384_7778018_Txc5E0E3C3B-5D85-4B03-BFDD-AC8B16D5230F,4384_259 -4367_81484,316,4384_5035,Drogheda (MacBride),D829,0,4384_7778018_TxcCBE0BF10-BC52-4E58-8B43-63ADF85E694E,4384_259 -4367_81484,317,4384_5036,Drogheda (MacBride),D829,0,4384_7778018_Txc6AAFA7F0-F9DD-40EA-A6A6-7A7724B9F8F6,4384_259 -4367_81484,331,4384_5037,Drogheda (MacBride),D829,0,4384_7778018_Txc91B2B63A-25AA-4ED4-AB2A-9B268854C525,4384_259 -4367_81484,278,4384_5042,Drogheda (MacBride),D827,0,4384_7778018_TxcB5E4621D-261F-4A4B-836C-B43358745181,4384_259 -4367_81484,319,4384_5044,Drogheda (MacBride),D827,0,4384_7778018_TxcEAF52053-9657-467C-B586-19B2AEC346D2,4384_259 -4367_81484,271,4384_5045,Drogheda (MacBride),D827,0,4384_7778018_Txc87C6F8A6-6205-4557-B918-921281C25D77,4384_259 -4367_81484,320,4384_5046,Drogheda (MacBride),D827,0,4384_7778018_Txc690D3FEB-9FDF-4957-9810-F7D61BEDE3AC,4384_259 -4367_81484,23,4384_5049,Dundalk (Clarke),D831,0,4384_7778018_Txc0C15CF52-3911-4CFC-854B-0CBDDE2B2F2B,4384_262 -4367_81484,316,4384_5051,Dundalk (Clarke),D831,0,4384_7778018_Txc99D2092E-FC42-4CCB-9905-DDB884D0BAF8,4384_262 -4367_81484,317,4384_5052,Dundalk (Clarke),D831,0,4384_7778018_Txc434E061A-405F-4C98-9B14-8A7AA5FEF998,4384_262 -4367_81484,331,4384_5053,Dundalk (Clarke),D831,0,4384_7778018_Txc0C8B74E0-F910-46B1-949D-1F5C099F6CA5,4384_262 -4367_81473,314,4384_5063,Dublin Connolly,A605,1,4384_7778018_Txc95A48440-5B22-4BD2-B64D-86C90A185B54,4384_277 -4367_81473,315,4384_5066,Dublin Connolly,A605,1,4384_7778018_TxcCD0D74D7-5EB0-4E70-B01D-B0F9656AE85D,4384_277 -4367_81473,314,4384_5069,Dublin Connolly,A603,1,4384_7778018_Txc653489E9-6327-4F1A-80C5-EC6AC40A9565,4384_276 -4367_81473,315,4384_5070,Dublin Connolly,A603,1,4384_7778018_Txc62FD8A98-E8D7-41F0-B6D5-61678806D27F,4384_276 -4367_81473,23,4384_5073,Dublin Connolly,A603,1,4384_7778018_Txc65022115-2A24-4678-8033-AB5C22E68087,4384_276 -4367_81473,316,4384_5077,Dublin Connolly,A603,1,4384_7778018_TxcF114FA3C-1A93-4BB0-AB19-49675656C21F,4384_276 -4367_81473,138,4384_5078,Dublin Connolly,A603,1,4384_7778018_Txc999D009E-3776-4E63-9F57-31CB0D7156D7,4384_276 -4367_81473,317,4384_5079,Dublin Connolly,A603,1,4384_7778018_TxcEB0CCA2C-5338-464E-9B3D-7F4FA7F0091A,4384_276 -4367_81473,318,4384_5080,Dublin Connolly,A603,1,4384_7778018_Txc52F30C80-AC70-4A6F-82B5-8CC60521CC6F,4384_276 -4367_81473,314,4384_5081,Drogheda (MacBride),D801,1,4384_7778018_Txc8B204712-7E84-4CD1-95FE-BF8197EFF66B,4384_283 -4367_81473,315,4384_5082,Drogheda (MacBride),D801,1,4384_7778018_TxcA2A8FEBE-8011-4DEB-811E-5B9EEF5FC90E,4384_283 -4367_81473,314,4384_5083,Dublin Connolly,A607,1,4384_7778018_Txc51483BF2-EA1C-47B6-8897-E3868C44871F,4384_278 -4367_81473,315,4384_5086,Dublin Connolly,A607,1,4384_7778018_TxcBC136D07-9416-4232-B706-7A4342BF69DC,4384_278 -4367_81473,23,4384_5087,Dublin Connolly,A605,1,4384_7778018_TxcDB445180-69A6-4C3B-94A7-03FAD83367AB,4384_278 -4367_81485,315,4384_509,Bray (Daly),E230,1,4384_7778018_Txc9BCA2961-C5A4-4337-9777-A970FEDEC4A0,4384_7 -4367_81473,316,4384_5091,Dublin Connolly,A605,1,4384_7778018_Txc0684C071-8598-4478-80BA-9DF3A6854FF1,4384_278 -4367_81473,138,4384_5092,Dublin Connolly,A605,1,4384_7778018_TxcE15657DB-4DE9-4572-BB1C-D3E6BFB1E43A,4384_278 -4367_81473,317,4384_5093,Dublin Connolly,A605,1,4384_7778018_Txc02CE3F8F-8181-48E9-B2D7-F8CECFCC47A7,4384_278 -4367_81473,318,4384_5094,Dublin Connolly,A605,1,4384_7778018_TxcB165C3E6-5E2D-41A3-AC98-DDA4D4F8096B,4384_278 -4367_81485,138,4384_51,Bray (Daly),E201,1,4384_7778018_TxcCE6BEEE5-926B-4CAC-A517-03E5878BEF43,4384_7 -4367_81485,319,4384_510,Bray (Daly),E212,1,4384_7778018_Txc87BAFE38-3379-4610-91B7-8020D6AA97C3,4384_8 -4367_81473,314,4384_5101,Dublin Connolly,P775,1,4384_7778018_Txc32EB9369-A69A-466B-9757-2ECA642B89F5,4384_290 -4367_81473,315,4384_5102,Dublin Connolly,P775,1,4384_7778018_Txc812C1FC8-604C-4ECF-97E9-C2841F634E1F,4384_290 -4367_81473,278,4384_5104,Dublin Connolly,A603,1,4384_7778018_TxcC641A4A9-3055-4D46-8E85-0735C39CAE9A,4384_278 -4367_81473,319,4384_5109,Dublin Connolly,A603,1,4384_7778018_TxcFAC8B803-9BE9-496F-B2FD-906290892C1D,4384_278 -4367_81485,271,4384_511,Bray (Daly),E212,1,4384_7778018_Txc54618DA9-37F5-4EE5-9DC7-AB96A3E548C4,4384_8 -4367_81473,271,4384_5110,Dublin Connolly,A603,1,4384_7778018_Txc1A419CAC-DAAE-4A46-8743-0C15D5096ECC,4384_278 -4367_81473,320,4384_5111,Dublin Connolly,A603,1,4384_7778018_TxcF432E0F2-966F-4AAD-8C20-F37CFEE20743,4384_278 -4367_81473,314,4384_5114,Drogheda (MacBride),D813,1,4384_7778018_TxcA9D15CFD-CA9D-49FF-BF7C-A9B8919D3B69,4384_284 -4367_81473,315,4384_5116,Drogheda (MacBride),D813,1,4384_7778018_TxcA4D75A91-F8BD-4082-8E35-A6A898994CCB,4384_284 -4367_81473,314,4384_5117,Drogheda (MacBride),D815,1,4384_7778018_Txc827E7189-D117-45B3-AB65-96560B95EFA2,4384_284 -4367_81473,315,4384_5119,Drogheda (MacBride),D815,1,4384_7778018_Txc2A30AEE5-3551-495A-8664-3C30858A0674,4384_284 -4367_81485,320,4384_512,Bray (Daly),E212,1,4384_7778018_Txc37A8DD62-675F-4CD6-91EB-55665F2DFABF,4384_8 -4367_81473,314,4384_5120,Dublin Connolly,A613,1,4384_7778018_Txc73EF8E69-2346-417E-99CF-8B836C0A4082,4384_279 -4367_81473,315,4384_5122,Dublin Connolly,A613,1,4384_7778018_Txc0CA55E4B-826E-427D-A4F8-E39217D60D73,4384_279 -4367_81473,23,4384_5123,Dublin Connolly,A613,1,4384_7778018_TxcBD927E5E-93E2-411F-AF6C-5E6E7FC87E26,4384_278 -4367_81473,316,4384_5126,Dublin Connolly,A613,1,4384_7778018_Txc59606440-7F60-4BAF-BCF8-85658628C061,4384_278 -4367_81473,138,4384_5127,Dublin Connolly,A613,1,4384_7778018_Txc4A651C57-51D1-4167-B9E7-90934A61A3BA,4384_278 -4367_81473,317,4384_5128,Dublin Connolly,A613,1,4384_7778018_Txc553144D4-2861-4F01-AD9A-0AFE40A908A1,4384_278 -4367_81473,318,4384_5129,Dublin Connolly,A613,1,4384_7778018_TxcDA0BA9B1-8EFA-4959-9A4C-09768A2FDE1D,4384_278 -4367_81485,96,4384_513,Lansdowne Road,E550,1,4384_7778018_Txc7D1F16B6-657E-4D0D-823A-6228A40BCF4C,4384_23 -4367_81473,314,4384_5130,Drogheda (MacBride),D817,1,4384_7778018_Txc6F592E23-DFE6-494C-88A3-4FB73911BFCB,4384_284 -4367_81473,315,4384_5132,Drogheda (MacBride),D817,1,4384_7778018_Txc15B08489-6B94-4C93-95CE-FD02A77A8421,4384_284 -4367_81473,278,4384_5133,Dublin Connolly,A607,1,4384_7778018_Txc381DF865-60DB-49E9-B0EF-8F1CCE979259,4384_278 -4367_81473,319,4384_5137,Dublin Connolly,A607,1,4384_7778018_Txc933C4E6D-8E19-4A29-B888-9E7B253CDE27,4384_278 -4367_81473,271,4384_5138,Dublin Connolly,A607,1,4384_7778018_Txc32603979-3BD0-4C09-B03F-76206AC220C3,4384_278 -4367_81473,320,4384_5139,Dublin Connolly,A607,1,4384_7778018_Txc1A9084DC-8FD6-4FFE-A8D6-97E95CFA367B,4384_278 -4367_81485,214,4384_514,Lansdowne Road,E550,1,4384_7778018_TxcFDFFBDDA-982F-440D-B3BA-57683D0C1E4E,4384_23 -4367_81473,314,4384_5141,Drogheda (MacBride),D819,1,4384_7778018_TxcECA26914-EBDA-4A0E-889E-05737E91E608,4384_284 -4367_81473,315,4384_5143,Drogheda (MacBride),D819,1,4384_7778018_Txc5FD69502-C242-492A-8551-00BC37A128BE,4384_284 -4367_81473,314,4384_5144,Drogheda (MacBride),D821,1,4384_7778018_TxcEF4C80D0-0840-4E81-81BC-0C3F1DEEE88B,4384_284 -4367_81473,315,4384_5146,Drogheda (MacBride),D821,1,4384_7778018_TxcC51FF8A4-6EBB-4432-AF72-2F05CDA4DBB8,4384_284 -4367_81473,314,4384_5147,Drogheda (MacBride),D822,1,4384_7778018_Txc4533D2AF-BC00-4642-B24E-D56437B2CCB8,4384_284 -4367_81473,315,4384_5149,Drogheda (MacBride),D822,1,4384_7778018_Txc63639546-9DCF-415E-A14D-10DAC902FC4B,4384_284 -4367_81473,314,4384_5150,Drogheda (MacBride),D823,1,4384_7778018_TxcBB99CEAB-9F57-40AB-823C-155164017838,4384_284 -4367_81473,315,4384_5152,Drogheda (MacBride),D823,1,4384_7778018_Txc3F10D294-CBD8-4265-B7D2-ADB3C8301B8B,4384_284 -4367_81473,314,4384_5153,Dundalk (Clarke),D825,1,4384_7778018_Txc41D8B490-4F92-4196-B62F-47C72F537544,4384_285 -4367_81473,315,4384_5154,Dundalk (Clarke),D825,1,4384_7778018_Txc02E3350C-19CA-4D6E-884B-27C7021D6811,4384_285 -4367_81473,314,4384_5159,Dublin Connolly,A617,1,4384_7778018_TxcD8A26B9E-B880-462D-B3B7-A146E7BF74DF,4384_278 -4367_81473,315,4384_5161,Dublin Connolly,A617,1,4384_7778018_Txc90D6EE0F-FF93-46D7-A1F6-450B4A534B58,4384_278 -4367_81473,314,4384_5162,Dundalk (Clarke),D828,1,4384_7778018_Txc27521AC0-D621-41C0-ABAC-0B6B0CA94185,4384_286 -4367_81473,315,4384_5164,Dundalk (Clarke),D828,1,4384_7778018_Txc9B3A956B-0124-4EEE-9A61-1A974A7EB5C0,4384_286 -4367_81473,23,4384_5165,Dublin Connolly,A617,1,4384_7778018_TxcF27E88EF-2319-4991-B2BD-F3211BDDD142,4384_278 -4367_81473,278,4384_5166,Dublin Connolly,A611,1,4384_7778018_Txc3FDB55DA-E903-47A9-B07F-C591CE112F5B,4384_282 -4367_81473,316,4384_5173,Dublin Connolly,A617,1,4384_7778018_Txc432EA817-E08E-4F12-B901-D4B21822B6A0,4384_278 -4367_81473,319,4384_5174,Dublin Connolly,A611,1,4384_7778018_Txc48DE879B-7B13-4814-8705-C484EBCA062F,4384_282 -4367_81473,138,4384_5175,Dublin Connolly,A617,1,4384_7778018_Txc9732DE23-0C35-4B57-9AEC-3D1D4D2D6829,4384_278 -4367_81473,317,4384_5176,Dublin Connolly,A617,1,4384_7778018_TxcDA2F97DC-1E4A-43F0-9B31-4F25C7BECD29,4384_278 -4367_81473,318,4384_5177,Dublin Connolly,A617,1,4384_7778018_TxcC23D6D44-C434-40BF-AA59-0E338FCA726A,4384_278 -4367_81473,271,4384_5178,Dublin Connolly,A611,1,4384_7778018_Txc9D57F57F-5191-4FFD-829D-03F7549577E7,4384_282 -4367_81473,320,4384_5179,Dublin Connolly,A611,1,4384_7778018_Txc10492CFC-7529-445B-B95C-5777537478ED,4384_282 -4367_81485,314,4384_518,Bray (Daly),E231,1,4384_7778018_Txc8E21E02C-4546-48A5-B039-E6A8A7CA2064,4384_6 -4367_81473,314,4384_5180,Drogheda (MacBride),D829,1,4384_7778018_Txc977F77CB-6900-4674-98DE-D5DE23F173EC,4384_284 -4367_81473,315,4384_5182,Drogheda (MacBride),D829,1,4384_7778018_TxcF5E9D5B3-863C-4E2D-8331-4DFD57966751,4384_284 -4367_81473,314,4384_5183,Drogheda (MacBride),D830,1,4384_7778018_TxcB6C601DA-59E4-40E9-8398-F68E2A293DE8,4384_284 -4367_81473,315,4384_5186,Drogheda (MacBride),D830,1,4384_7778018_TxcF33C434F-AC9C-4067-8748-82ABF404D933,4384_284 -4367_81473,314,4384_5187,Drogheda (MacBride),D831,1,4384_7778018_TxcFF2437CC-383A-488E-A591-0BF9FD0E921C,4384_284 -4367_81473,315,4384_5189,Drogheda (MacBride),D831,1,4384_7778018_TxcC115A0F0-2CCC-49BF-808D-C61316A87C16,4384_284 -4367_81473,314,4384_5190,Drogheda (MacBride),D833,1,4384_7778018_Txc36653B22-8524-4827-8746-E4742E9C987B,4384_287 -4367_81473,315,4384_5192,Drogheda (MacBride),D833,1,4384_7778018_Txc3B88A56C-D066-4661-A5A3-DEA597750EB9,4384_287 -4367_81473,314,4384_5193,Drogheda (MacBride),D835,1,4384_7778018_Txc31E2A6A9-097D-486B-B125-50837FE596E2,4384_287 -4367_81473,315,4384_5194,Drogheda (MacBride),D835,1,4384_7778018_Txc32B4117A-3EF7-4249-9917-3D99A02AB76A,4384_287 -4367_81473,314,4384_5197,Gorey,A621,1,4384_7778018_Txc1EE6A9CE-260E-46CC-8BC5-6B0766702623,4384_280 -4367_81473,315,4384_5199,Gorey,A621,1,4384_7778018_Txc9D5D399A-FDD6-4156-B261-34689A7C0C25,4384_280 -4367_81485,317,4384_52,Bray (Daly),E201,1,4384_7778018_Txc233CDE8C-FA76-430A-AE78-51FA183C7AB6,4384_7 -4367_81473,314,4384_5200,Dundalk (Clarke),D837,1,4384_7778018_TxcA840B103-555D-4485-955B-EB6C843A602A,4384_288 -4367_81473,315,4384_5202,Dundalk (Clarke),D837,1,4384_7778018_TxcA7B99DE6-AC43-43B9-8BB1-ADEE5E4139CC,4384_288 -4367_81473,314,4384_5203,Dublin Connolly,A623,1,4384_7778018_Txc05CD22F5-3C45-4856-88C9-5114DBF1DFC5,4384_281 -4367_81473,352,4384_5205,Dublin Connolly,A623,1,4384_7778018_TxcAC65163B-B035-47B3-8FF6-39A0358BB9D6,4384_281 -4367_81473,314,4384_5206,Dundalk (Clarke),D839,1,4384_7778018_Txc49FF3754-CED2-4A6E-AA46-BFD980A3534C,4384_288 -4367_81473,315,4384_5208,Dundalk (Clarke),D839,1,4384_7778018_Txc8F416DEF-D6D3-4F66-8570-07397F6883DD,4384_288 -4367_81473,314,4384_5211,Dundalk (Clarke),D841,1,4384_7778018_TxcBEFD773E-38AB-48ED-A092-D31C4FE3CDE3,4384_288 -4367_81473,278,4384_5212,Dundalk (Clarke),D828,1,4384_7778018_TxcD89EB63C-1750-4731-865F-2B72C4CD6773,4384_289 -4367_81473,315,4384_5215,Dundalk (Clarke),D841,1,4384_7778018_Txc53E14F25-E4F4-4E3B-9D1E-2AB66FC29217,4384_288 -4367_81473,319,4384_5216,Dundalk (Clarke),D828,1,4384_7778018_TxcEA42FA79-AEB6-4B5E-996C-A5387C5490A8,4384_289 -4367_81473,271,4384_5217,Dundalk (Clarke),D828,1,4384_7778018_Txc0F9FDA0F-AC5F-4CCA-8232-129972D49B83,4384_289 -4367_81473,320,4384_5218,Dundalk (Clarke),D828,1,4384_7778018_Txc5FC4224C-1EA2-4F09-9A5E-E7F29FDFE238,4384_289 -4367_81473,23,4384_5219,Dundalk (Clarke),D833,1,4384_7778018_TxcDBB34CA1-9964-4D4B-96A9-A39D9B360C2F,4384_288 -4367_81473,316,4384_5221,Dundalk (Clarke),D833,1,4384_7778018_TxcF16B791D-B491-4FF0-BB1D-758A9BFE363E,4384_288 -4367_81473,317,4384_5222,Dundalk (Clarke),D833,1,4384_7778018_Txc29EEEEC8-BE67-4BC3-A624-5F2D33B11C44,4384_288 -4367_81473,331,4384_5223,Dundalk (Clarke),D833,1,4384_7778018_Txc460E495D-3758-474B-8C3F-ED529DEFC4B1,4384_288 -4367_81473,23,4384_5226,Rosslare Europort,A600,0,4384_7778018_TxcC336618F-4296-4A61-B03D-09352E4777F2,4384_307 -4367_81473,316,4384_5227,Rosslare Europort,A600,0,4384_7778018_Txc5DB92288-487A-462E-BA85-1020F41BE172,4384_307 -4367_81473,138,4384_5228,Rosslare Europort,A600,0,4384_7778018_TxcAC5B457D-D3F1-416C-B779-4659CF17FF09,4384_307 -4367_81473,317,4384_5229,Rosslare Europort,A600,0,4384_7778018_TxcAC063965-6244-4306-ABE6-9561B8E09CB5,4384_307 -4367_81473,318,4384_5230,Rosslare Europort,A600,0,4384_7778018_Txc11615CBC-F2FC-40A8-89A5-DBEA99A67FA9,4384_307 -4367_81473,314,4384_5235,Rosslare Europort,A602,0,4384_7778018_Txc41C5FE31-085F-4B5B-8AC0-7EDED60BF0B1,4384_307 -4367_81473,315,4384_5236,Rosslare Europort,A602,0,4384_7778018_Txc50F07997-B1A8-4D62-81BA-C1D6F178290D,4384_307 -4367_81473,278,4384_5237,Rosslare Europort,A602,0,4384_7778018_Txc269106CF-922C-4825-8893-C22C09F9EA16,4384_307 -4367_81473,319,4384_5240,Rosslare Europort,A602,0,4384_7778018_Txc2765786C-BC5B-4D29-BC1D-5825EFD17C6F,4384_307 -4367_81473,271,4384_5241,Rosslare Europort,A602,0,4384_7778018_Txc0DC924D1-8A55-42E0-9FF9-F62AB7D12D5F,4384_307 -4367_81473,320,4384_5242,Rosslare Europort,A602,0,4384_7778018_Txc8C805217-C6CC-449D-AD31-556E5284F19F,4384_307 -4367_81473,314,4384_5245,Rosslare Europort,A606,0,4384_7778018_TxcE6DF444E-8DC6-4350-AF49-4C4B691274C4,4384_307 -4367_81473,315,4384_5247,Rosslare Europort,A606,0,4384_7778018_Txc47CDAA68-7ADB-4DD7-B7EF-BF7990B247BF,4384_307 -4367_81473,278,4384_5249,Rosslare Europort,A606,0,4384_7778018_Txc9441B2DC-C791-4BC7-B1B4-AE04AE1CF1E2,4384_307 -4367_81485,315,4384_525,Bray (Daly),E231,1,4384_7778018_Txc93876C2B-8310-492A-8064-8D5F5D97BD22,4384_6 -4367_81473,319,4384_5251,Rosslare Europort,A606,0,4384_7778018_TxcB4447513-39EC-484E-B844-CF9B8D5F1B86,4384_307 -4367_81473,271,4384_5252,Rosslare Europort,A606,0,4384_7778018_TxcC88359DF-E9AF-41EB-8E71-D19493708477,4384_307 -4367_81473,320,4384_5253,Rosslare Europort,A606,0,4384_7778018_Txc7FBF878B-1A3E-4587-B74C-2B72907CA52F,4384_307 -4367_81473,23,4384_5254,Rosslare Europort,A606,0,4384_7778018_TxcE59112FE-0D59-4326-A0CD-FCD4B4FA255F,4384_307 -4367_81473,316,4384_5255,Rosslare Europort,A606,0,4384_7778018_TxcD85886EC-3FD9-40E3-A392-3B9AA0AEDB4B,4384_307 -4367_81473,138,4384_5256,Rosslare Europort,A606,0,4384_7778018_TxcF7A1C5EC-86A5-430C-AE74-C3522B86C08D,4384_307 -4367_81473,317,4384_5257,Rosslare Europort,A606,0,4384_7778018_Txc849FCED9-2DC7-4AF5-8168-186641608AA6,4384_307 -4367_81473,318,4384_5258,Rosslare Europort,A606,0,4384_7778018_Txc8DD869D8-2D85-49FE-9382-5A7ECDC7A334,4384_307 -4367_81485,211,4384_526,Bray (Daly),E220,1,4384_7778018_Txc302C9C7A-DCD0-4944-980E-09D52316E70C,4384_6 -4367_81473,314,4384_5263,Rosslare Europort,A610,0,4384_7778018_TxcDF504D21-A9B0-416C-9718-A08E08A534B1,4384_307 -4367_81473,315,4384_5266,Rosslare Europort,A610,0,4384_7778018_TxcDD8FD8F8-F03F-4B19-8B43-E409586C4EA6,4384_307 -4367_81473,314,4384_5267,Rosslare Europort,A612,0,4384_7778018_Txc20366E74-4982-4FC7-9F7B-5432E597ED10,4384_307 -4367_81473,315,4384_5269,Rosslare Europort,A612,0,4384_7778018_Txc0881F57C-6026-4A14-B11F-9B995F6EFDCC,4384_307 -4367_81473,314,4384_5270,Wexford (O Hanrahan),A614,0,4384_7778018_Txc20A17816-C094-4983-B705-623456A455E1,4384_308 -4367_81473,315,4384_5272,Wexford (O Hanrahan),A614,0,4384_7778018_Txc78F5892B-7A82-44AD-81F9-48262D3328F7,4384_308 -4367_81473,23,4384_5273,Rosslare Europort,A614,0,4384_7778018_TxcE5F9E98D-D7F7-44C2-9D1B-F1493F9C9270,4384_307 -4367_81473,316,4384_5274,Rosslare Europort,A614,0,4384_7778018_Txc46985AC8-671C-4CC7-8C65-F534A7166727,4384_307 -4367_81473,138,4384_5275,Rosslare Europort,A614,0,4384_7778018_TxcF1454626-99AE-45E9-84AA-F5570EFA4EDC,4384_307 -4367_81473,317,4384_5276,Rosslare Europort,A614,0,4384_7778018_TxcD6DB23CE-055B-40FF-84C8-3C029BDB936E,4384_307 -4367_81473,318,4384_5277,Rosslare Europort,A614,0,4384_7778018_Txc1E774F1A-695A-4A49-9FAA-B07EB1AD5326,4384_307 -4367_81473,278,4384_5278,Rosslare Europort,A610,0,4384_7778018_Txc12B02375-7DA8-468E-BE77-8DE9E336713C,4384_307 -4367_81473,319,4384_5280,Rosslare Europort,A610,0,4384_7778018_Txc0CFA9FE6-D8D7-47A3-81D0-FDC1A0B985E7,4384_307 -4367_81473,271,4384_5281,Rosslare Europort,A610,0,4384_7778018_Txc134BBBB4-9A42-46FF-A3A7-EB763667C7BE,4384_307 -4367_81473,320,4384_5282,Rosslare Europort,A610,0,4384_7778018_Txc67AAF97D-2AA3-4357-AB4A-DC5DEFAC6156,4384_307 -4367_81473,314,4384_5288,Gorey,A616,0,4384_7778018_TxcA51DBA68-CC88-4667-BDF0-51056ED365D6,4384_309 -4367_81485,96,4384_529,Bray (Daly),E220,1,4384_7778018_TxcF3614066-2350-4E27-99E4-B0B0C698FD44,4384_9 -4367_81473,353,4384_5290,Gorey,A616,0,4384_7778018_Txc21A48BD3-9A58-4DE9-8605-8D1C27BF9249,4384_309 -4367_81475,96,4384_5291,Athenry,A740,0,4384_7778018_Txc15B7332D-B750-4794-87DF-472165CF6D1A,4384_313 -4367_81475,354,4384_5292,Dublin Heuston,A703,1,4384_7778018_TxcEA65E067-AFB0-483D-A7F9-4E16E1D4F50C,4384_314 -4367_81475,355,4384_5293,Dublin Heuston,A703,1,4384_7778018_TxcF797E12B-729A-4667-96EC-D41458D2AF78,4384_314 -4367_81475,354,4384_5294,Dublin Heuston,A705,1,4384_7778018_Txc784F4348-57D9-4661-BB60-07A1206B7B4A,4384_315 -4367_81475,356,4384_5295,Dublin Heuston,A705,1,4384_7778018_Txc2F5DDB79-7201-40AF-899A-A137C33D8E3C,4384_315 -4367_81475,343,4384_5298,Dublin Heuston,A705,1,4384_7778018_Txc6B8C2FEE-ECC4-4967-8E8E-522FC074A648,4384_315 -4367_81475,316,4384_5299,Dublin Heuston,A705,1,4384_7778018_Txc1D858C6E-DC94-41F5-A3B9-C31266B9CDC8,4384_315 -4367_81485,318,4384_53,Bray (Daly),E201,1,4384_7778018_Txc70900A38-E3B3-471E-AB7E-DED80226B899,4384_7 -4367_81485,214,4384_530,Bray (Daly),E220,1,4384_7778018_Txc9EC6C094-FA78-4F49-BC1C-F2A1A2F17AD4,4384_9 -4367_81475,314,4384_5301,Dublin Heuston,A707,1,4384_7778018_Txc1EE2BD58-1B5A-475E-AFF4-EB93AB6DE2D7,4384_316 -4367_81475,356,4384_5302,Dublin Heuston,A707,1,4384_7778018_Txc21CE352E-42A5-41F9-8F64-6A54BCBE7641,4384_316 -4367_81475,343,4384_5304,Dublin Heuston,A707,1,4384_7778018_TxcB9AC7935-BB5C-4722-9003-AB9294BE16BB,4384_316 -4367_81475,316,4384_5305,Dublin Heuston,A707,1,4384_7778018_Txc933E06F7-57B3-4200-8E3C-9C25C7DF363A,4384_316 -4367_81475,342,4384_5306,Dublin Heuston,A701,1,4384_7778018_Txc8AD690C8-92B4-4722-8FB3-947ED132C737,4384_326 -4367_81475,319,4384_5308,Dublin Heuston,A701,1,4384_7778018_Txc4F57F276-B23E-40FC-8B07-F35E857D83DA,4384_326 -4367_81485,316,4384_531,Bray (Daly),E220,1,4384_7778018_Txc918DB735-6BE2-42CB-B947-ED13A02BDB6E,4384_6 -4367_81475,314,4384_5312,Dublin Heuston,A709,1,4384_7778018_TxcDC60FAAF-4314-4B0A-8CA9-39EBC5837D5C,4384_317 -4367_81475,355,4384_5313,Dublin Heuston,A709,1,4384_7778018_TxcCF9C8FF9-0216-42E3-B68C-7B82CB79FF7B,4384_317 -4367_81475,356,4384_5314,Dublin Heuston,A709,1,4384_7778018_TxcAC76F5E5-D3A5-4242-851E-81ADDBB63E7D,4384_318 -4367_81475,316,4384_5316,Dublin Heuston,A709,1,4384_7778018_Txc93025CF6-E844-4348-9D7B-2DA2379B352C,4384_318 -4367_81475,317,4384_5317,Dublin Heuston,A709,1,4384_7778018_Txc18922931-0B5C-4BA7-A04B-7B59831108FB,4384_318 -4367_81475,271,4384_5318,Dublin Heuston,A709,1,4384_7778018_TxcBD1741AA-7445-40AF-8E80-483B9036DC62,4384_318 -4367_81475,320,4384_5319,Dublin Heuston,A709,1,4384_7778018_Txc9424B08D-3A9C-470C-9BC2-460ABD29A044,4384_318 -4367_81485,138,4384_532,Bray (Daly),E220,1,4384_7778018_Txc254464EB-7CF0-4AA8-B011-97352E9E3317,4384_6 -4367_81475,314,4384_5320,Dublin Heuston,A711,1,4384_7778018_Txc071F8929-D4E0-4A55-B1C6-62CE7C659650,4384_319 -4367_81475,355,4384_5321,Dublin Heuston,A711,1,4384_7778018_Txc0A970381-DA93-4488-9D0B-2762261798B2,4384_319 -4367_81475,342,4384_5323,Dublin Heuston,A703,1,4384_7778018_Txc033B5D90-7995-4AD1-9CB5-B7BC376CA92A,4384_327 -4367_81475,319,4384_5326,Dublin Heuston,A703,1,4384_7778018_Txc670CF8B2-D907-4708-8F5D-F1639E09EE9D,4384_327 -4367_81475,357,4384_5327,Dublin Heuston,A713,1,4384_7778018_Txc654BC0DF-1E0C-4151-A49F-BF02D0E1B62E,4384_320 -4367_81475,126,4384_5328,Dublin Heuston,A713,1,4384_7778018_Txc64505023-D3AE-4317-A254-FA05FA41480C,4384_320 -4367_81485,317,4384_533,Bray (Daly),E220,1,4384_7778018_TxcE20E3C36-CA21-442F-B3B5-54F3F6F0F1C2,4384_6 -4367_81475,346,4384_5330,Dublin Heuston,A713,1,4384_7778018_Txc6261E90E-0738-43DA-973F-5EC418C70FA2,4384_320 -4367_81475,358,4384_5331,Dublin Heuston,A713,1,4384_7778018_Txc5069B76C-A192-498F-8229-7F7D70C4D540,4384_320 -4367_81475,317,4384_5332,Dublin Heuston,A713,1,4384_7778018_Txc5B0664E5-B626-4370-84B5-E5457F40448F,4384_320 -4367_81475,342,4384_5335,Dublin Heuston,A705,1,4384_7778018_Txc02AB4274-3B65-426D-A048-CFCAC6FF9601,4384_318 -4367_81475,319,4384_5337,Dublin Heuston,A705,1,4384_7778018_Txc7F0F17A3-4A23-4B6D-92C9-BF5DBE2E1E4C,4384_318 -4367_81475,348,4384_5339,Dublin Heuston,A717,1,4384_7778018_TxcBA976F81-AA83-43D4-8924-32C2218FD6D8,4384_321 -4367_81485,318,4384_534,Bray (Daly),E220,1,4384_7778018_TxcD67F4E26-43F1-4CEB-9A6A-40A5B0202C6E,4384_6 -4367_81475,338,4384_5341,Dublin Heuston,A717,1,4384_7778018_TxcD0830CEA-8476-4F84-A223-DD41577DC78F,4384_321 -4367_81475,342,4384_5343,Dublin Heuston,A707,1,4384_7778018_Txc34D8202A-F0DE-40D5-8339-605DEB155972,4384_319 -4367_81475,319,4384_5345,Dublin Heuston,A707,1,4384_7778018_TxcEBD53076-9AFE-4E1F-B9D5-DAAE0B602647,4384_319 -4367_81475,126,4384_5347,Dublin Heuston,B701,1,4384_7778018_TxcA11339BF-1326-48CF-9C12-D3C0996AC7C3,4384_328 -4367_81475,358,4384_5348,Dublin Heuston,B701,1,4384_7778018_Txc70C7719D-72E5-4242-91A6-33B1E3377D97,4384_328 -4367_81475,342,4384_5350,Dublin Heuston,A709,1,4384_7778018_TxcD4D936E4-11BA-4628-A82B-FFBF905B0165,4384_327 -4367_81475,319,4384_5353,Dublin Heuston,A709,1,4384_7778018_Txc455754C4-B6F2-4AC3-81F5-3AE9847DBEAD,4384_327 -4367_81475,348,4384_5354,Dublin Heuston,A721,1,4384_7778018_Txc2739AC41-6479-4665-BFF7-83549AE05B9D,4384_322 -4367_81475,338,4384_5356,Dublin Heuston,A721,1,4384_7778018_Txc4B295ED3-D5D6-40FC-A5A0-7DB4F4F41E3F,4384_322 -4367_81475,342,4384_5359,Dublin Heuston,A711,1,4384_7778018_Txc294CBEF3-389C-4DD2-93F1-69027595BBE1,4384_318 -4367_81485,314,4384_536,Greystones,E116,1,4384_7778018_Txc7FBE32B3-8F46-41EA-A0D3-83F44B0EEAF1,4384_1 -4367_81475,319,4384_5362,Dublin Heuston,A711,1,4384_7778018_TxcA7AA85FB-05D5-4499-94F3-AE1A59070598,4384_318 -4367_81475,348,4384_5363,Dublin Heuston,A725,1,4384_7778018_TxcD29DA3D5-637B-45D9-A420-D5EDC92E5A8D,4384_323 -4367_81475,338,4384_5365,Dublin Heuston,A725,1,4384_7778018_TxcBCB833F2-B64C-4B28-9681-B428992E001B,4384_323 -4367_81475,342,4384_5366,Dublin Heuston,A713,1,4384_7778018_Txc1A9C9049-9099-406A-BCA6-A1B3ED2A3A9E,4384_319 -4367_81475,319,4384_5369,Dublin Heuston,A713,1,4384_7778018_Txc1AD4F7B9-095B-4CC6-8F84-4786523A1D29,4384_319 -4367_81475,348,4384_5371,Athlone,A741,1,4384_7778018_Txc5ADA6B53-7BFB-4374-91E8-7CCAD50CC367,4384_325 -4367_81475,338,4384_5373,Athlone,A741,1,4384_7778018_TxcDAF7E146-A8A0-4735-84C5-F7517B1A5734,4384_325 -4367_81475,96,4384_5376,Athlone,A741,1,4384_7778018_Txc07978DEA-556E-4550-B62F-6943DEC97E37,4384_352 -4367_81475,348,4384_5379,Dublin Heuston,A729,1,4384_7778018_TxcE6BADB11-471A-4641-A9FE-CFE060E20E63,4384_319 -4367_81475,342,4384_5380,Athlone,A715,1,4384_7778018_Txc33CFDBCC-0DBA-4E97-B571-BB00F8DF33AF,4384_325 -4367_81475,359,4384_5383,Dublin Heuston,A729,1,4384_7778018_TxcACE54470-CEAC-4665-B85A-3CDD63345620,4384_319 -4367_81475,319,4384_5384,Athlone,A715,1,4384_7778018_TxcC4F3A051-F105-4267-9C49-3CB4C13B2615,4384_325 -4367_81475,360,4384_5385,Dublin Heuston,A729,1,4384_7778018_TxcA49187AE-8820-4192-B006-8B9DAD2F50AF,4384_353 -4367_81475,361,4384_5386,Dublin Heuston,A729,1,4384_7778018_Txc25DB59B7-4D8B-4CF7-8F18-01847FCDFD6C,4384_353 -4367_81475,251,4384_5388,Athlone,A715,1,4384_7778018_TxcFF759FD8-AA6D-4259-98C9-C210D2BC280A,4384_352 -4367_81485,315,4384_539,Greystones,E116,1,4384_7778018_TxcBDA55192-BB7A-4F1B-9E4A-0B8417E4BC2E,4384_1 -4367_81475,348,4384_5394,Dublin Heuston,A731,1,4384_7778018_TxcACB10EE9-7570-4822-AD4D-9CDD360246E7,4384_324 -4367_81475,344,4384_5396,Dublin Heuston,A731,1,4384_7778018_Txc8D315E32-DE5E-4FE6-8EA6-23CAF03405C4,4384_324 -4367_81475,314,4384_5399,Athlone,A743,1,4384_7778018_TxcE53C8DDC-DA46-434D-A39F-E50E1707280D,4384_325 -4367_81485,278,4384_540,Bray (Daly),E213,1,4384_7778018_Txc4429596E-4C3C-4E0A-9F97-4DB931239CD8,4384_6 -4367_81475,362,4384_5403,Athlone,A743,1,4384_7778018_TxcE2756282-2E2E-4E98-878C-81701F107D04,4384_325 -4367_81475,314,4384_5404,Galway (Ceannt),A700,0,4384_7778018_Txc944DC661-0457-4010-B5D0-E352F49BA5E3,4384_354 -4367_81475,355,4384_5405,Galway (Ceannt),A700,0,4384_7778018_TxcD399536E-312B-4AF8-85CF-6DA833E74587,4384_354 -4367_81475,314,4384_5406,Galway (Ceannt),A740,0,4384_7778018_Txc6F7C6ABB-5C56-4F8F-BFD7-4FB3FE4CEB62,4384_364 -4367_81475,355,4384_5407,Galway (Ceannt),A740,0,4384_7778018_Txc34BF7D1D-B154-438D-A488-E86DC40CD330,4384_364 -4367_81475,356,4384_5408,Galway (Ceannt),A740,0,4384_7778018_TxcD27B6B96-B41C-44E2-9EA0-20229B14D2F2,4384_365 -4367_81475,316,4384_5410,Galway (Ceannt),A740,0,4384_7778018_Txc05367AAD-AE5C-4BB4-BF88-8F6E3531E7AE,4384_365 -4367_81475,317,4384_5411,Galway (Ceannt),A740,0,4384_7778018_Txc1CD2CB86-5C76-4D4C-8867-2E3B97C09F99,4384_365 -4367_81475,271,4384_5412,Galway (Ceannt),A740,0,4384_7778018_Txc6A5B4207-1B56-4107-9312-9BA0CC782C9C,4384_365 -4367_81475,320,4384_5413,Galway (Ceannt),A740,0,4384_7778018_TxcE247BF7E-B3FD-42A7-9CAA-963ABFA07D12,4384_365 -4367_81475,350,4384_5414,Galway (Ceannt),A702,0,4384_7778018_Txc163001AD-9622-479D-8CAD-75399CE6F049,4384_355 -4367_81475,356,4384_5415,Galway (Ceannt),A702,0,4384_7778018_TxcC7F20B42-C2CA-47F2-B604-341136B9D68B,4384_355 -4367_81475,96,4384_5417,Athenry,A702,0,4384_7778018_TxcD5BB22F1-F189-498B-AE2E-6D75A17532FC,4384_393 -4367_81475,363,4384_5418,Galway (Ceannt),A702,0,4384_7778018_Txc1859ABB6-2AC0-4F1B-92ED-6AE1AC2304F2,4384_355 -4367_81475,316,4384_5419,Galway (Ceannt),A702,0,4384_7778018_TxcB75ABCAE-A50E-4695-B63D-92C1BC6ACC8E,4384_355 -4367_81475,96,4384_5420,Galway (Ceannt),BUS780,0,4384_7778018_Txc82F12131-F30D-412C-BAD7-ABC6C3FFB6BA,4384_403 -4367_81475,96,4384_5421,Galway (Ceannt),BUS180,0,4384_7778018_Txc911170F7-00D4-4245-A6B6-40A08337FD0F,4384_366 -4367_81475,342,4384_5422,Galway (Ceannt),A700,0,4384_7778018_Txc1033E422-406A-49D9-81B3-FC05FFD077E9,4384_355 -4367_81475,251,4384_5425,Athenry,A700,0,4384_7778018_Txc62EB4495-070E-469C-AD8B-6959C9A97143,4384_393 -4367_81475,319,4384_5426,Galway (Ceannt),A700,0,4384_7778018_Txc65CC36E3-04D6-4169-A87D-FD42086C62B4,4384_355 -4367_81475,96,4384_5427,Galway (Ceannt),BUS740,0,4384_7778018_Txc8176846F-71D4-4A45-981C-E0D23AD6CEF8,4384_403 -4367_81475,96,4384_5428,Galway (Ceannt),BUS742,0,4384_7778018_Txc9236FACC-A564-473E-BF71-394533DCEC42,4384_366 -4367_81475,356,4384_5429,Galway (Ceannt),A796,0,4384_7778018_Txc9FDED337-14BC-4956-83F3-64BF42488311,4384_366 -4367_81475,316,4384_5430,Galway (Ceannt),A796,0,4384_7778018_Txc11171A08-8C10-4878-9AEA-223866EFDDEA,4384_366 -4367_81475,317,4384_5431,Galway (Ceannt),A796,0,4384_7778018_TxcB216D4DC-89F0-4E50-BD4C-71E01539B90B,4384_404 -4367_81475,126,4384_5432,Galway (Ceannt),A742,0,4384_7778018_Txc00E0C47D-09E6-4F15-AAB9-60FED5FB0FF2,4384_365 -4367_81475,347,4384_5433,Galway (Ceannt),A742,0,4384_7778018_Txc904C3144-866B-4A62-A9B3-8677EBC2554D,4384_365 -4367_81475,138,4384_5434,Galway (Ceannt),A742,0,4384_7778018_Txc4DC4C8C8-AE04-4F62-A6C7-FE25EFB530D9,4384_365 -4367_81475,318,4384_5435,Galway (Ceannt),A742,0,4384_7778018_Txc1B3A3B46-7839-4B0D-BEF5-BA8C94DD8C39,4384_365 -4367_81475,314,4384_5437,Galway (Ceannt),A706,0,4384_7778018_Txc19F24AE1-4894-46FD-99CD-45147B1CEE31,4384_356 -4367_81475,356,4384_5438,Galway (Ceannt),A706,0,4384_7778018_Txc4B929F56-F878-4458-9D1F-B5956367DE9E,4384_357 -4367_81475,314,4384_5439,Galway (Ceannt),A796,0,4384_7778018_Txc71B50133-163C-4F27-8F05-E6A534A1DD3E,4384_366 -4367_81485,319,4384_544,Bray (Daly),E213,1,4384_7778018_Txc3B8CE877-7C62-4E40-96C6-CB1C2193B12B,4384_6 -4367_81475,96,4384_5440,Athenry,A706,0,4384_7778018_TxcA549E00C-F4B5-49FB-92D2-360A27738F0A,4384_394 -4367_81475,355,4384_5441,Galway (Ceannt),A706,0,4384_7778018_Txc523A6846-9FC8-41CC-BB2A-F47E70D4FF1E,4384_356 -4367_81475,364,4384_5442,Galway (Ceannt),A706,0,4384_7778018_Txc8C9ED3FA-1753-406D-8CE4-AE0EE30B6D0B,4384_357 -4367_81475,355,4384_5443,Galway (Ceannt),A796,0,4384_7778018_Txc00A7C40E-5327-404A-9B6B-DDC943D92BCC,4384_366 -4367_81475,317,4384_5444,Galway (Ceannt),A706,0,4384_7778018_Txc4566DBCD-2449-4584-88AA-A0A8C24F2136,4384_357 -4367_81475,271,4384_5445,Galway (Ceannt),A706,0,4384_7778018_Txc461B638F-ACE5-4B33-934A-0EBABE4A9294,4384_357 -4367_81475,320,4384_5446,Galway (Ceannt),A706,0,4384_7778018_Txc01C1566A-7E81-4C1F-B09E-F607E7F9961C,4384_357 -4367_81475,360,4384_5447,Galway (Ceannt),A706,0,4384_7778018_TxcBE002F34-D46A-4D7E-B950-D8ADBE465E29,4384_405 -4367_81475,361,4384_5448,Galway (Ceannt),A706,0,4384_7778018_Txc56183CD3-0544-4F11-AD65-3AEF194D0AB9,4384_405 -4367_81485,271,4384_545,Bray (Daly),E213,1,4384_7778018_Txc7519B817-7731-4CB6-A625-AF6E7D15EDF1,4384_6 -4367_81475,126,4384_5451,Galway (Ceannt),B700,0,4384_7778018_TxcAC4E03A9-F4B4-413B-A68D-73A7543B5DA8,4384_371 -4367_81475,358,4384_5452,Galway (Ceannt),B700,0,4384_7778018_Txc6FD6D248-A302-490D-966B-0ABEDF8E62FD,4384_371 -4367_81475,96,4384_5454,Galway (Ceannt),BUS702,0,4384_7778018_Txc8DE3811B-FD7D-4BA9-8E13-3DB05B6D7BF8,4384_403 -4367_81475,96,4384_5455,Galway (Ceannt),BUS752,0,4384_7778018_Txc8318AE0B-0C79-41C0-903B-24ADDA697C08,4384_366 -4367_81475,251,4384_5456,Galway (Ceannt),BUS700,0,4384_7778018_Txc5DAA4CFE-F40D-43BE-9E45-9DFAAE311C93,4384_403 -4367_81475,251,4384_5457,Galway (Ceannt),BUS740,0,4384_7778018_Txc06C9A010-7B02-42C7-A278-DAE705F6576F,4384_366 -4367_81475,342,4384_5458,Galway (Ceannt),A702,0,4384_7778018_Txc1A89DC2B-7C22-4CD2-BCDC-71821AA1E6E9,4384_367 -4367_81475,251,4384_5459,Athenry,A702,0,4384_7778018_TxcCE365222-EB7C-4811-BD2C-D170B9C07690,4384_399 -4367_81485,320,4384_546,Bray (Daly),E213,1,4384_7778018_TxcE11FDE5D-D23C-491C-913A-674B8D46CE6F,4384_6 -4367_81475,319,4384_5460,Galway (Ceannt),A702,0,4384_7778018_TxcD378B406-7B38-49D4-8CB5-7BA21B3679FF,4384_367 -4367_81475,251,4384_5461,Galway (Ceannt),BUS790,0,4384_7778018_TxcBBA3425B-00DA-41F5-AE98-3FC0C1B7EB93,4384_403 -4367_81475,251,4384_5462,Galway (Ceannt),BUS190,0,4384_7778018_Txc3C84416B-72C4-4749-AAA1-126D440D86D0,4384_366 -4367_81475,96,4384_5464,Galway (Ceannt),BUS782,0,4384_7778018_Txc9477D708-3E89-41B6-A205-576942A4F932,4384_403 -4367_81475,96,4384_5465,Galway (Ceannt),BUS182,0,4384_7778018_TxcD9FCE944-0529-4B93-92D1-510A7E660A19,4384_366 -4367_81475,348,4384_5467,Galway (Ceannt),A710,0,4384_7778018_Txc35AB4114-0A0C-4A02-B99D-8DB97BB923A8,4384_358 -4367_81475,96,4384_5468,Athenry,A710,0,4384_7778018_TxcEDF80CF4-FDEE-40CD-B708-591B9002BBE0,4384_392 -4367_81475,338,4384_5469,Galway (Ceannt),A710,0,4384_7778018_Txc9AD3EF55-3823-4161-A1F1-2971867CC4E9,4384_358 -4367_81475,342,4384_5470,Galway (Ceannt),A704,0,4384_7778018_TxcC67538DC-3EAE-4BDB-A3CC-D513C2E2434C,4384_368 -4367_81475,251,4384_5472,Athenry,A704,0,4384_7778018_Txc7C5083F5-6CA7-4311-91B7-299E711C4DB1,4384_400 -4367_81475,319,4384_5473,Galway (Ceannt),A704,0,4384_7778018_TxcCF4FB209-87D0-4A45-8DC8-3CAF3A3D8CBE,4384_368 -4367_81475,96,4384_5474,Galway (Ceannt),BUS706,0,4384_7778018_Txc6FD2F6C4-B843-4CDE-837D-90689AD85D74,4384_403 -4367_81475,96,4384_5475,Galway (Ceannt),BUS756,0,4384_7778018_TxcF5A650AB-9B97-474A-B37E-D80C2142CBFE,4384_366 -4367_81475,251,4384_5479,Galway (Ceannt),BUS702,0,4384_7778018_Txc1DCB3E76-06A5-4FB7-A6A3-622006A39670,4384_403 -4367_81475,251,4384_5480,Galway (Ceannt),BUS742,0,4384_7778018_TxcEC24DA0D-365B-44F7-9AB8-CB3EE7243D84,4384_366 -4367_81475,348,4384_5483,Galway (Ceannt),A714,0,4384_7778018_Txc6CD509EE-3F39-493E-A1F0-BA152D079E19,4384_358 -4367_81475,96,4384_5484,Athenry,A714,0,4384_7778018_Txc193C6A16-B1AB-4A40-B8E8-5F198F23864C,4384_392 -4367_81475,338,4384_5485,Galway (Ceannt),A714,0,4384_7778018_Txc092CED39-8F49-4BD7-AA90-28C95F5F9C0A,4384_358 -4367_81475,96,4384_5486,Galway (Ceannt),BUS710,0,4384_7778018_Txc9D0CBFE2-EBFB-4142-AB03-97BF0A627DD9,4384_403 -4367_81475,96,4384_5487,Galway (Ceannt),BUS760,0,4384_7778018_Txc15A1A060-91F9-4631-961B-DF6EAE45C69A,4384_366 -4367_81475,251,4384_5489,Galway (Ceannt),BUS704,0,4384_7778018_TxcBE4F7A25-504B-4A1F-9F67-241D3D7F15BD,4384_403 -4367_81475,251,4384_5490,Galway (Ceannt),BUS792,0,4384_7778018_TxcE7942AC2-3C64-496D-9A8F-8E0A77F05806,4384_403 -4367_81475,251,4384_5491,Galway (Ceannt),BUS192,0,4384_7778018_Txc626D845F-A9A2-4AB2-89B7-9758895DC6D2,4384_366 -4367_81475,342,4384_5492,Galway (Ceannt),A706,0,4384_7778018_Txc39A80BDF-58C7-4937-B361-BE70A9553759,4384_363 -4367_81475,251,4384_5494,Athenry,A706,0,4384_7778018_Txc12427D6E-AD88-4B1C-9056-CCA8CA56087E,4384_395 -4367_81475,319,4384_5495,Galway (Ceannt),A706,0,4384_7778018_TxcDF9C76C0-5AD3-4FF1-942D-F181B059F74F,4384_363 -4367_81475,348,4384_5498,Galway (Ceannt),A718,0,4384_7778018_Txc3B374AE7-AEFF-47E3-A87B-A7DEC91ADE94,4384_359 -4367_81475,96,4384_5499,Athenry,A718,0,4384_7778018_TxcBB933F4F-4609-458B-9AF9-9D82B70AA996,4384_395 -4367_81485,23,4384_550,Bray (Daly),E221,1,4384_7778018_TxcF9948A24-A50D-4917-A22D-D3E15B0612AD,4384_7 -4367_81475,338,4384_5500,Galway (Ceannt),A718,0,4384_7778018_Txc1E627D57-21F8-430D-89C1-BB6FDE300114,4384_359 -4367_81475,96,4384_5501,Galway (Ceannt),BUS714,0,4384_7778018_TxcF4D162EB-CA01-4E2B-AA1E-B099F503266A,4384_403 -4367_81475,96,4384_5502,Galway (Ceannt),BUS764,0,4384_7778018_Txc3CBFCE63-873D-4C81-9803-CFE694208E30,4384_366 -4367_81475,96,4384_5503,Galway (Ceannt),BUS786,0,4384_7778018_Txc51BE36F9-A4CB-40E3-AE57-311066610803,4384_403 -4367_81475,96,4384_5504,Galway (Ceannt),BUS186,0,4384_7778018_Txc80BBFAC4-1295-4659-992B-DD65D9EA5C51,4384_366 -4367_81475,348,4384_5506,Galway (Ceannt),A720,0,4384_7778018_Txc3C8856C3-088D-4776-A871-DA3A597DA8D8,4384_360 -4367_81475,96,4384_5508,Athenry,A720,0,4384_7778018_TxcE448EB5C-83C6-438D-BA3E-25BB7DB75013,4384_396 -4367_81475,338,4384_5509,Galway (Ceannt),A720,0,4384_7778018_Txc6373FC02-133A-485A-AD9A-300D0FF82073,4384_360 -4367_81475,342,4384_5511,Galway (Ceannt),A708,0,4384_7778018_Txc2E5C3D79-1EC4-4A7C-A053-0A489401FEE1,4384_369 -4367_81475,251,4384_5513,Athenry,A708,0,4384_7778018_TxcB2D7996A-F6B6-473A-9FED-FA438646E3A7,4384_401 -4367_81475,319,4384_5514,Galway (Ceannt),A708,0,4384_7778018_Txc5195A768-EF4A-4CBE-8C1D-33B192D026F8,4384_369 -4367_81475,251,4384_5515,Galway (Ceannt),BUS746,0,4384_7778018_TxcA8974F3C-94C8-4556-866C-0EA5D10AD0C7,4384_366 -4367_81475,251,4384_5516,Galway (Ceannt),BUS706,0,4384_7778018_TxcB6642E35-6385-4E61-BE11-6BB980FE72BA,4384_403 -4367_81475,348,4384_5517,Galway (Ceannt),A798,0,4384_7778018_Txc3A4E90BB-1536-47AC-AD31-4CF377395E4E,4384_366 -4367_81475,338,4384_5518,Galway (Ceannt),A798,0,4384_7778018_TxcC8D50499-AB9B-4BEE-80E3-D4BECAB68598,4384_366 -4367_81475,348,4384_5520,Galway (Ceannt),A724,0,4384_7778018_TxcDE0AC0D0-097C-4236-927B-F53C83D02FE9,4384_361 -4367_81475,96,4384_5521,Athenry,A724,0,4384_7778018_Txc6CF71BD2-1410-449C-9E7F-76E7A42A5D26,4384_397 -4367_81475,338,4384_5522,Galway (Ceannt),A724,0,4384_7778018_TxcF4C7563E-AA18-4FA3-A6B5-161E55A6CFC0,4384_361 -4367_81475,251,4384_5523,Galway (Ceannt),BUS794,0,4384_7778018_Txc550D4F45-4274-42C4-84C4-B3631993DB1F,4384_403 -4367_81475,251,4384_5524,Galway (Ceannt),BUS194,0,4384_7778018_Txc0AF3D3F6-25F0-4237-AC32-2DF70D9DC080,4384_366 -4367_81475,96,4384_5526,Galway (Ceannt),BUS718,0,4384_7778018_Txc5BE80910-68FC-4157-8DFB-1609D45EF069,4384_403 -4367_81485,316,4384_553,Bray (Daly),E221,1,4384_7778018_Txc47576A32-2036-4569-9B88-E888F4325B88,4384_7 -4367_81475,348,4384_5531,Galway (Ceannt),A726,0,4384_7778018_Txc24624B59-0825-4BB5-AFFD-9DFDA9FF9F1B,4384_362 -4367_81475,96,4384_5533,Athenry,A726,0,4384_7778018_TxcE3A1369E-647E-407C-B9EC-12EEDFCFBD7E,4384_398 -4367_81475,365,4384_5534,Galway (Ceannt),A726,0,4384_7778018_Txc1BA766FB-DD23-4E06-8AA0-F5266DBEFB24,4384_362 -4367_81475,96,4384_5535,Galway (Ceannt),BUS720,0,4384_7778018_Txc16302F2B-D2DD-47C1-8034-F5AFE4B5E576,4384_403 -4367_81475,342,4384_5536,Galway (Ceannt),A710,0,4384_7778018_Txc9A557EEA-82DE-4F6D-89D5-7E169CB3335C,4384_355 -4367_81475,251,4384_5538,Athenry,A710,0,4384_7778018_TxcCC2EC208-7115-4FA3-A07E-EF87AAD12491,4384_393 -4367_81475,319,4384_5539,Galway (Ceannt),A710,0,4384_7778018_Txc3A6E8688-072D-48E9-A846-0C004583A73A,4384_355 -4367_81485,138,4384_554,Bray (Daly),E221,1,4384_7778018_Txc91F4D9DB-54C8-4FB0-8B39-8D39BA3D1B17,4384_7 -4367_81475,251,4384_5541,Galway (Ceannt),BUS708,0,4384_7778018_Txc19998416-A0C5-4EE6-992A-0C7CB52C5C57,4384_403 -4367_81475,251,4384_5542,Galway (Ceannt),BUS748,0,4384_7778018_Txc82047EF4-B037-4BD2-9CB6-D90D53B55650,4384_366 -4367_81475,348,4384_5545,Galway (Ceannt),A728,0,4384_7778018_Txc1F9EFEBC-1357-4910-8658-7B463E07309C,4384_363 -4367_81475,96,4384_5546,Athenry,A728,0,4384_7778018_TxcA8711C7F-4A9F-4B6A-832A-C34D0098E6CF,4384_395 -4367_81475,338,4384_5547,Galway (Ceannt),A728,0,4384_7778018_Txc9C2BCBD2-2DE2-40D7-A9BB-3CA50E65ACE2,4384_363 -4367_81475,96,4384_5548,Galway (Ceannt),BUS724,0,4384_7778018_Txc9D75D6B6-F437-4982-95D0-BDACE28710F2,4384_403 -4367_81475,96,4384_5549,Galway (Ceannt),BUS754,0,4384_7778018_Txc6DC23C0F-60FF-46AE-BA0C-977766F96B72,4384_366 -4367_81485,317,4384_555,Bray (Daly),E221,1,4384_7778018_Txc97AEF415-4FE2-4521-BCEF-646BFA6E0B35,4384_7 -4367_81475,251,4384_5550,Galway (Ceannt),BUS796,0,4384_7778018_Txc7C8ACB13-EF48-4A07-A63F-99A10DBE81D4,4384_403 -4367_81475,251,4384_5551,Galway (Ceannt),BUS196,0,4384_7778018_TxcFA3BC06B-FE12-4773-82BA-8EDE124ECF77,4384_366 -4367_81475,96,4384_5555,Galway (Ceannt),BUS788,0,4384_7778018_Txc110A30B8-2B0E-4872-BE85-2F1E90AC3DD4,4384_403 -4367_81475,96,4384_5556,Galway (Ceannt),BUS188,0,4384_7778018_Txc2A18CBD6-FF48-4942-A657-64DB071DFB9A,4384_366 -4367_81475,366,4384_5558,Galway (Ceannt),A730,0,4384_7778018_Txc9DD5E989-D5AC-48EA-9041-F9CF3C57247B,4384_363 -4367_81475,342,4384_5559,Galway (Ceannt),A712,0,4384_7778018_Txc467CC132-8425-4F79-9408-C73C837BCB6C,4384_370 -4367_81485,318,4384_556,Bray (Daly),E221,1,4384_7778018_TxcED6C9421-FBF7-4429-9515-BDC59B355DDC,4384_7 -4367_81475,96,4384_5561,Athenry,A730,0,4384_7778018_TxcCEFFB35F-43BD-4798-BA1F-571A3C2FA22B,4384_395 -4367_81475,251,4384_5562,Athenry,A712,0,4384_7778018_Txc3AC33959-0899-4E41-A3C3-B43CBC5D840A,4384_402 -4367_81475,95,4384_5563,Athenry,A730,0,4384_7778018_Txc720F24AC-3C33-432F-AC97-26A6C6121626,4384_395 -4367_81475,344,4384_5564,Galway (Ceannt),A730,0,4384_7778018_Txc8B19E144-3A37-4E47-8804-E444D6FB6B53,4384_363 -4367_81475,319,4384_5565,Galway (Ceannt),A712,0,4384_7778018_TxcEC5A61A0-F351-4B6B-9079-D72B395D65F5,4384_370 -4367_81475,96,4384_5566,Galway (Ceannt),BUS766,0,4384_7778018_TxcE03E9C88-FA5F-4659-9F90-1BDDF3EF0E3C,4384_366 -4367_81475,96,4384_5567,Galway (Ceannt),BUS726,0,4384_7778018_Txc4F334726-A2B8-4E52-BB49-088F95137F12,4384_403 -4367_81485,314,4384_557,Bray (Daly),E232,1,4384_7778018_TxcAF3BBDDB-5379-4BB2-9847-ACEC66D97641,4384_6 -4367_81475,251,4384_5571,Galway (Ceannt),BUS710,0,4384_7778018_Txc1A172D2C-D044-401D-9558-8733B86B5733,4384_403 -4367_81475,251,4384_5572,Galway (Ceannt),BUS750,0,4384_7778018_Txc78D45374-C0A5-4A9F-8DFD-FB89DAF6FA50,4384_366 -4367_81475,96,4384_5573,Galway (Ceannt),BUS790,0,4384_7778018_Txc6AE26856-B5E4-4F2A-A89D-D00F522DFD13,4384_403 -4367_81475,96,4384_5574,Galway (Ceannt),BUS190,0,4384_7778018_Txc0F1F66F0-F0CF-43B7-A2D3-4F56DA00776C,4384_366 -4367_81475,96,4384_5576,Galway (Ceannt),BUS728,0,4384_7778018_Txc97A12370-6A6D-452E-B6DF-65D4BABDB24F,4384_403 -4367_81475,96,4384_5577,Galway (Ceannt),BUS768,0,4384_7778018_Txc3A44C224-0B6E-4664-B9D9-A13C1C57B1D8,4384_366 -4367_81475,251,4384_5580,Galway (Ceannt),BUS712,0,4384_7778018_Txc7DFB30ED-6D32-4F95-888E-D4E0309D9ECE,4384_403 -4367_81475,251,4384_5581,Galway (Ceannt),BUS752,0,4384_7778018_Txc187AEA8A-6579-4428-B4FF-804173DF152B,4384_366 -4367_81475,95,4384_5583,Galway (Ceannt),BUS730,0,4384_7778018_Txc682FB5E4-8228-4FB5-B736-DFC7370CA4E9,4384_403 -4367_81475,95,4384_5584,Galway (Ceannt),BUS732,0,4384_7778018_TxcA9546A9A-C0C7-4D8D-A6EE-A1778FEA89C1,4384_366 -4367_81475,96,4384_5585,Galway (Ceannt),BUS730,0,4384_7778018_TxcBD3235DB-8B83-4016-A198-CE005553F070,4384_403 -4367_81475,96,4384_5586,Galway (Ceannt),BUS732,0,4384_7778018_TxcD174726E-909E-4055-AC39-D67464BAA6FE,4384_366 -4367_81464,337,4384_5591,Dublin Heuston,A401,1,4384_7778018_Txc87C4CDBE-FEC9-4869-984D-DBD4D7CFA60D,4384_406 -4367_81464,367,4384_5592,Dublin Heuston,A401,1,4384_7778018_Txc6D21DF11-6838-41C2-9DCC-4B717090E311,4384_406 -4367_81464,368,4384_5593,Dublin Heuston,A703,1,4384_7778018_Txc43EB3434-AD6A-4084-8C3D-10412FF23AC4,4384_431 -4367_81464,337,4384_5594,Limerick Junction,A421,1,4384_7778018_Txc66D1D01D-11B8-4635-9824-F34EF620F136,4384_410 -4367_81464,349,4384_5595,Limerick Junction,A421,1,4384_7778018_TxcF6CC1C57-96DC-4C7C-9E20-5A4ED72769C8,4384_410 -4367_81464,96,4384_5597,Limerick (Colbert),A481,1,4384_7778018_TxcC9E9F3EF-323E-4B44-8266-89D9F76D623B,4384_427 -4367_81464,368,4384_5598,Limerick (Colbert),A481,1,4384_7778018_Txc941AB057-D3B5-4002-9C7F-D68067C13588,4384_427 -4367_81464,337,4384_5599,Dublin Heuston,A403,1,4384_7778018_TxcD471C694-4F3A-4A34-B351-6D62C76B91DA,4384_407 -4367_81485,314,4384_56,Bray (Daly),E206,1,4384_7778018_TxcB10C0481-4DD3-4C8D-B79F-AF2CEF0CB3DB,4384_7 -4367_81464,338,4384_5600,Dublin Heuston,A403,1,4384_7778018_Txc51B9C5B6-CE21-427D-AF78-E8D4A0CAE4D1,4384_407 -4367_81464,96,4384_5601,Dublin Heuston,A705,1,4384_7778018_Txc12D88D78-C89D-48B9-9F3A-5141F42ADC93,4384_426 -4367_81464,368,4384_5602,Dublin Heuston,A705,1,4384_7778018_TxcEDB760EF-2991-4692-80C3-CD35D2B19113,4384_426 -4367_81464,314,4384_5603,Limerick Junction,A423,1,4384_7778018_TxcC8C49905-5675-4D27-AEA2-74FC24098490,4384_410 -4367_81464,336,4384_5604,Limerick Junction,A423,1,4384_7778018_Txc19FFBE97-7FB3-42E6-8632-3AD2CDC29CBC,4384_410 -4367_81464,337,4384_5607,Limerick Junction,A425,1,4384_7778018_TxcF41C7E66-E25E-45C4-A852-2CC4BD149DA0,4384_410 -4367_81464,338,4384_5608,Limerick Junction,A425,1,4384_7778018_TxcCF72DA8F-97D1-49A8-A29E-AB447582A02C,4384_410 -4367_81485,315,4384_561,Bray (Daly),E232,1,4384_7778018_TxcE180374A-C830-416C-B3E1-A669FBDDBD4C,4384_6 -4367_81464,337,4384_5610,Dublin Heuston,A405,1,4384_7778018_Txc704CE41E-2F4C-4B1A-B0AE-9CA6F41AEAA2,4384_408 -4367_81464,338,4384_5611,Dublin Heuston,A405,1,4384_7778018_TxcABEA3175-EE75-4E8A-8BC2-D5179AFC7F26,4384_408 -4367_81464,96,4384_5612,Dublin Heuston,A707,1,4384_7778018_Txc7163518B-1EEB-4B0F-9498-58E989BA672E,4384_425 -4367_81464,251,4384_5613,Dublin Heuston,A701,1,4384_7778018_TxcBAD6AB5B-BB59-4CA8-AC1F-D0F4B101794D,4384_429 -4367_81464,278,4384_5616,Dublin Heuston,A401,1,4384_7778018_Txc4D0B7F48-53A7-44D2-BDF4-4FA023A98BA5,4384_411 -4367_81464,319,4384_5618,Dublin Heuston,A401,1,4384_7778018_TxcE7F9D4A8-1482-4B27-A171-1742328BE40F,4384_411 -4367_81485,96,4384_562,Lansdowne Road,E551,1,4384_7778018_TxcC577548F-1886-4AC2-BC4C-653198A9B7E0,4384_23 -4367_81464,251,4384_5621,Limerick (Colbert),A491,1,4384_7778018_Txc323F50C4-813E-48F0-9558-38FE3F8AB88E,4384_427 -4367_81464,337,4384_5623,Dublin Heuston,A407,1,4384_7778018_Txc61A8A66C-EB55-479B-BC10-00A8CE5A234B,4384_409 -4367_81464,338,4384_5625,Dublin Heuston,A407,1,4384_7778018_Txc9CCDD670-FB52-40B1-963D-8FE814C5E7B8,4384_409 -4367_81464,337,4384_5626,Limerick Junction,A427,1,4384_7778018_Txc38893B2B-7795-4FC5-967C-FD8EDC758364,4384_410 -4367_81464,349,4384_5627,Limerick Junction,A427,1,4384_7778018_TxcD968FDD5-7AB0-4208-9A88-B76CAB63DF46,4384_410 -4367_81464,278,4384_5628,Limerick Junction,A421,1,4384_7778018_Txc78106DC0-8928-4A73-ADD2-EDACB3DFA14D,4384_410 -4367_81485,214,4384_563,Lansdowne Road,E551,1,4384_7778018_Txc5D1A9D66-C757-4BB6-B10A-37B02CB7E4FA,4384_23 -4367_81464,319,4384_5631,Limerick Junction,A421,1,4384_7778018_TxcBB3AE815-CA08-4807-979B-F791527D0C29,4384_410 -4367_81464,96,4384_5633,Dublin Heuston,A709,1,4384_7778018_Txc3469B81E-A7AC-494C-BEF0-B8ED714AFD75,4384_424 -4367_81464,337,4384_5635,Limerick Junction,A429,1,4384_7778018_Txc1CE52AAD-40AA-46E3-A7E4-3A650221A85D,4384_410 -4367_81464,338,4384_5637,Limerick Junction,A429,1,4384_7778018_Txc145A7587-CBF8-4A6A-8DA0-FD28A8753FE9,4384_410 -4367_81464,278,4384_5638,Dublin Heuston,A403,1,4384_7778018_Txc22320D6D-427B-4BD5-8601-B1ED7326EA50,4384_412 -4367_81485,278,4384_564,Greystones,E114,1,4384_7778018_Txc6B0D4C4C-8A59-442E-8369-AC570563F425,4384_1 -4367_81464,319,4384_5640,Dublin Heuston,A403,1,4384_7778018_TxcC0EB3DBD-270A-4AF1-91E8-680898435B83,4384_412 -4367_81464,278,4384_5642,Limerick Junction,A423,1,4384_7778018_Txc43FFAE2D-AC56-4D48-99E5-9535F1210E36,4384_410 -4367_81464,319,4384_5646,Limerick Junction,A423,1,4384_7778018_TxcE46003AA-7F1C-4941-91FA-F901A989C485,4384_410 -4367_81464,96,4384_5647,Limerick (Colbert),A483,1,4384_7778018_TxcD0215DC6-9AD8-49E1-A094-7A2AD8164556,4384_427 -4367_81464,251,4384_5649,Dublin Heuston,A703,1,4384_7778018_Txc1D33B63D-489E-4D14-BE7D-8E4E1E0F26DE,4384_430 -4367_81464,96,4384_5651,Dublin Heuston,A713,1,4384_7778018_TxcB96F5464-6BC7-42C6-B3E0-FB2EC202CA21,4384_423 -4367_81464,337,4384_5653,Limerick Junction,A433,1,4384_7778018_TxcE7429431-1213-41F4-9333-8A04F9AFB430,4384_410 -4367_81464,338,4384_5655,Limerick Junction,A433,1,4384_7778018_Txc87842C89-B042-4DAC-BA5B-53796D741143,4384_410 -4367_81464,251,4384_5657,Limerick (Colbert),A493,1,4384_7778018_TxcE9045753-7734-456F-BACC-B7A07114A422,4384_427 -4367_81464,278,4384_5658,Dublin Heuston,A405,1,4384_7778018_TxcA0051599-BD94-4EFB-BA74-FAA363D5AEB4,4384_412 -4367_81464,319,4384_5660,Dublin Heuston,A405,1,4384_7778018_TxcF25CA466-A145-4E57-89A5-5F55AD409AF1,4384_412 -4367_81464,251,4384_5662,Dublin Heuston,A705,1,4384_7778018_TxcF0B3277E-99C4-4B0B-8909-1D0018E7A55D,4384_424 -4367_81464,278,4384_5663,Limerick Junction,A425,1,4384_7778018_Txc3A3EAED2-6965-4D11-A8C2-EBD30250C0DB,4384_410 -4367_81464,319,4384_5665,Limerick Junction,A425,1,4384_7778018_Txc19F6925C-6803-45E4-BA31-3B08B53CB128,4384_410 -4367_81464,337,4384_5668,Limerick Junction,A435,1,4384_7778018_Txc1BA8651D-D336-418D-9B03-5718D0A23C6D,4384_410 -4367_81464,338,4384_5669,Limerick Junction,A435,1,4384_7778018_Txc488CF1C5-9E78-4316-9D8E-240F8C534C1E,4384_410 -4367_81485,319,4384_567,Greystones,E114,1,4384_7778018_Txc037868B3-4614-4957-914D-BBBF4688AB5E,4384_1 -4367_81464,96,4384_5671,Dublin Heuston,A717,1,4384_7778018_TxcBEF11348-58F9-4D29-B870-53493E0FD001,4384_422 -4367_81464,337,4384_5675,Limerick Junction,A437,1,4384_7778018_Txc3EC71E3B-24B9-4361-A83A-335C301B08AC,4384_410 -4367_81464,338,4384_5677,Limerick Junction,A437,1,4384_7778018_TxcE88BEE03-1E52-43CC-9ED5-C514A5661170,4384_410 -4367_81464,278,4384_5678,Limerick Junction,A427,1,4384_7778018_TxcA2BA0678-F974-4215-8B45-C7EE87EB8C00,4384_410 -4367_81485,271,4384_568,Greystones,E114,1,4384_7778018_TxcEDFFC9F2-CC64-4A90-833E-F8EE5A92A4A8,4384_1 -4367_81464,319,4384_5680,Limerick Junction,A427,1,4384_7778018_Txc85E8CE0E-1B56-4C52-BA8E-EFA2FCE79F68,4384_410 -4367_81464,251,4384_5681,Dublin Heuston,A707,1,4384_7778018_TxcF7EDBD77-E7C5-4B47-840D-02C35B9BD97B,4384_420 -4367_81464,96,4384_5682,Limerick (Colbert),A485,1,4384_7778018_Txc57D8D1FB-7980-4CB0-9337-9C261CD12495,4384_427 -4367_81464,278,4384_5683,Dublin Heuston,A407,1,4384_7778018_Txc2C4F4814-46E7-433E-BAB9-63AA46EB9F1F,4384_412 -4367_81464,319,4384_5685,Dublin Heuston,A407,1,4384_7778018_Txc77CA8D50-90F5-475C-AE9F-CBD87706EBA8,4384_412 -4367_81464,278,4384_5689,Limerick Junction,A429,1,4384_7778018_Txc3F25EE80-E017-4999-A4BD-AF8331A15331,4384_410 -4367_81485,320,4384_569,Greystones,E114,1,4384_7778018_Txc27ED737B-E721-4B20-BDE3-0E301D675EA9,4384_1 -4367_81464,319,4384_5691,Limerick Junction,A429,1,4384_7778018_Txc0C31BEA9-D828-4E1E-B84F-5F3922CF86EE,4384_410 -4367_81464,337,4384_5694,Limerick Junction,A439,1,4384_7778018_TxcF0AEF26A-519A-4837-9312-C1D8AE92B3AC,4384_410 -4367_81464,338,4384_5695,Limerick Junction,A439,1,4384_7778018_Txc6B06CD7F-B509-41D7-BBCC-0C3ABC61262E,4384_410 -4367_81464,251,4384_5696,Dublin Heuston,A709,1,4384_7778018_TxcD7539DEB-2CFB-4E04-BFF9-28AA6249622E,4384_430 -4367_81464,96,4384_5698,Dublin Heuston,A721,1,4384_7778018_Txc87510712-9454-41B7-AE50-424F036336BE,4384_421 -4367_81485,315,4384_57,Bray (Daly),E206,1,4384_7778018_TxcA8A3D8B4-8A7F-4372-9680-50979AD792A0,4384_7 -4367_81485,314,4384_570,Bray (Daly),E233,1,4384_7778018_Txc8F69AFDF-9EA4-4B24-859E-3AFB345CA941,4384_7 -4367_81464,278,4384_5702,Limerick Junction,A431,1,4384_7778018_TxcA8514B3E-140A-4654-A2E9-F0C408E123A1,4384_410 -4367_81464,319,4384_5705,Limerick Junction,A431,1,4384_7778018_TxcC17A70A8-FD1A-419A-984C-417B95872F5B,4384_410 -4367_81464,337,4384_5706,Limerick Junction,A441,1,4384_7778018_Txc5FC5DE96-D202-4958-B6EC-5670578F70AF,4384_410 -4367_81464,338,4384_5707,Limerick Junction,A441,1,4384_7778018_TxcCD8371C7-FA47-41A8-9758-BF8AE5F4ACD7,4384_410 -4367_81464,278,4384_5708,Dublin Heuston,A409,1,4384_7778018_Txc8922994F-C406-4EAD-AB57-2C545D5C9349,4384_412 -4367_81464,319,4384_5710,Dublin Heuston,A409,1,4384_7778018_TxcA91E4BA3-28BE-4A6A-8B4C-E6F52EA0565F,4384_412 -4367_81464,251,4384_5711,Limerick (Colbert),A495,1,4384_7778018_Txc22ABB0F0-FB8E-4D92-8933-4C92192CB8A7,4384_427 -4367_81464,278,4384_5715,Limerick Junction,A433,1,4384_7778018_Txc8A6323CA-4CA9-452E-AB15-22E673C4FA43,4384_410 -4367_81464,319,4384_5717,Limerick Junction,A433,1,4384_7778018_Txc0EA0109B-63F1-4C6F-8495-252FCED84CCA,4384_410 -4367_81464,337,4384_5718,Limerick Junction,A443,1,4384_7778018_TxcF3BA0D99-AD4A-4DD2-8FA0-500BB79D52C8,4384_410 -4367_81464,338,4384_5720,Limerick Junction,A443,1,4384_7778018_Txc0979DA8C-333E-40F3-923B-0BCF293CD520,4384_410 -4367_81464,251,4384_5721,Dublin Heuston,A711,1,4384_7778018_TxcC6D2F17E-D6B4-4D19-8DB5-F8D3BA82F701,4384_424 -4367_81464,337,4384_5726,Limerick Junction,A445,1,4384_7778018_TxcD2C7B953-846B-4988-A3B3-09AC8F6A5931,4384_410 -4367_81464,96,4384_5727,Dublin Heuston,A725,1,4384_7778018_TxcC54DBB36-FDD0-4503-AEFA-9723619358C8,4384_418 -4367_81464,338,4384_5728,Limerick Junction,A445,1,4384_7778018_Txc1816F994-43F8-4473-B097-2C149BE321ED,4384_410 -4367_81464,278,4384_5729,Limerick Junction,A435,1,4384_7778018_TxcD6E5B608-8CD6-41CC-B9F9-601A9D4644EF,4384_410 -4367_81485,315,4384_573,Bray (Daly),E233,1,4384_7778018_TxcB14ABA29-478D-4446-A892-5B8E4111BB15,4384_7 -4367_81464,319,4384_5733,Limerick Junction,A435,1,4384_7778018_TxcBAE07994-F3D1-43C6-8089-42B4AE81B874,4384_410 -4367_81464,278,4384_5735,Dublin Heuston,A411,1,4384_7778018_Txc3F5CEAFF-0503-4A75-99B1-192CDD68A5AA,4384_412 -4367_81464,251,4384_5737,Dublin Heuston,A713,1,4384_7778018_Txc4555CFC3-F02E-47F6-B438-1539D6417153,4384_420 -4367_81464,319,4384_5738,Dublin Heuston,A411,1,4384_7778018_Txc0FEBFA0C-30FA-4142-8A70-3B6A813C458C,4384_412 -4367_81464,96,4384_5739,Limerick (Colbert),A489,1,4384_7778018_Txc6B517BC7-47EF-4E1E-B2D7-ACACDC66555F,4384_427 -4367_81464,278,4384_5743,Limerick Junction,A437,1,4384_7778018_Txc577C06CE-56D1-408C-89C5-35D957DABF4A,4384_410 -4367_81464,319,4384_5745,Limerick Junction,A437,1,4384_7778018_Txc76421856-489F-42F3-A5CF-C13B5DC2EC50,4384_410 -4367_81464,337,4384_5746,Limerick Junction,A447,1,4384_7778018_Txc32B124F8-5C67-4EAA-A590-CE5265FD41A9,4384_410 -4367_81464,338,4384_5749,Limerick Junction,A447,1,4384_7778018_TxcF09A2079-F7E3-4A26-8DC8-A3013FC4E04F,4384_410 -4367_81464,251,4384_5750,Limerick (Colbert),A497,1,4384_7778018_Txc61A7FCD9-0B24-43D2-B974-04DD199D8002,4384_427 -4367_81464,96,4384_5751,Ennis,A491,1,4384_7778018_TxcB27BC721-9A31-4540-B7B6-FF3CB478C244,4384_428 -4367_81464,96,4384_5753,Dublin Heuston,A729,1,4384_7778018_Txc98A3CB35-ABA8-4CA2-A05A-A056D8C622D0,4384_420 -4367_81464,369,4384_5756,Limerick Junction,A449,1,4384_7778018_Txc577398E8-ADFF-4A22-9E35-7B1F1D069C27,4384_410 -4367_81464,338,4384_5759,Limerick Junction,A449,1,4384_7778018_Txc0F11E8E1-27F6-4FD8-BEA0-84BC99EA3B15,4384_410 -4367_81485,211,4384_576,Greystones,E107,1,4384_7778018_Txc8DECF9DA-1C77-41D3-A5B0-314BFE3D0C88,4384_2 -4367_81464,211,4384_5764,Limerick Junction,A449,1,4384_7778018_TxcD399B1CC-2728-4DAC-866D-4FB6ACEE9C7A,4384_410 -4367_81464,337,4384_5767,Limerick Junction,A451,1,4384_7778018_Txc2BF821F2-C927-4C4E-A0D3-503B87188254,4384_410 -4367_81464,344,4384_5769,Limerick Junction,A451,1,4384_7778018_Txc641CE23C-FDFA-4113-B1C4-52A308A0AE36,4384_410 -4367_81464,96,4384_5770,Dublin Heuston,A731,1,4384_7778018_Txc5D8B0D9D-160D-435A-822C-E56E006442DF,4384_419 -4367_81464,214,4384_5773,Limerick Junction,B411,1,4384_7778018_Txc9E5AAA57-A4FA-4418-8B10-F2E4F38FEC30,4384_410 -4367_81464,96,4384_5781,Athenry,A780,0,4384_7778018_Txc0B95A094-79A1-4C46-B768-0CDF85636B69,4384_443 -4367_81464,314,4384_5782,Limerick (Colbert),A420,0,4384_7778018_Txc465B4EDE-FAA2-4E43-B4AD-EB3D970DEA0F,4384_434 -4367_81464,336,4384_5783,Limerick (Colbert),A420,0,4384_7778018_Txc6DCF9A23-A492-4D7D-B301-1C2E1E817F31,4384_434 -4367_81464,314,4384_5784,Limerick (Colbert),A422,0,4384_7778018_Txc68411376-5CAB-4F8F-91AD-202CAF7CFD4F,4384_435 -4367_81464,315,4384_5785,Limerick (Colbert),A422,0,4384_7778018_Txc4B39F1C8-FBE8-43EA-A5C7-5E2AAE656576,4384_435 -4367_81464,23,4384_5786,Limerick (Colbert),A422,0,4384_7778018_Txc64068759-D626-4454-9320-DB5BA12B527E,4384_434 -4367_81464,316,4384_5787,Limerick (Colbert),A422,0,4384_7778018_TxcD7074768-408A-46E0-BE5B-B6A2115AF325,4384_434 -4367_81464,318,4384_5788,Limerick (Colbert),A422,0,4384_7778018_Txc704F9024-D602-4B59-BE1A-FE380896EFDE,4384_434 -4367_81464,138,4384_5789,Limerick (Colbert),A422,0,4384_7778018_TxcEBD3499F-E258-4374-BF72-AA62CD6A2F21,4384_434 -4367_81464,337,4384_5790,Limerick (Colbert),A424,0,4384_7778018_Txc5EBE08CD-D1D4-42E5-B672-230B1817056D,4384_434 -4367_81464,338,4384_5792,Limerick (Colbert),A424,0,4384_7778018_Txc1D44B582-5E79-4451-AC7C-CF87F4107B99,4384_434 -4367_81464,251,4384_5793,Athenry,A790,0,4384_7778018_Txc72A33F40-E449-4B9D-B7A5-165D43CEB912,4384_443 -4367_81464,96,4384_5794,Athenry,A782,0,4384_7778018_Txc215D92B6-CB6E-45BE-A1E7-58983C27D035,4384_443 -4367_81464,337,4384_5798,Limerick (Colbert),A426,0,4384_7778018_Txc1272D276-7796-4A00-A629-F6C158BB412F,4384_434 -4367_81464,349,4384_5799,Limerick (Colbert),A426,0,4384_7778018_Txc4197E194-65DC-4D4D-A101-68EC43225BE2,4384_434 -4367_81485,96,4384_580,Greystones,E107,1,4384_7778018_TxcE43FB7C5-04BF-405B-947F-36BD2EE128D6,4384_3 -4367_81464,337,4384_5802,Limerick (Colbert),A428,0,4384_7778018_Txc0FE3BB18-FFA8-4E25-9CF4-726CEFB81901,4384_434 -4367_81464,338,4384_5803,Limerick (Colbert),A428,0,4384_7778018_Txc3DF6F773-DD87-4747-A4A7-7EEC66057EA6,4384_434 -4367_81464,278,4384_5805,Limerick (Colbert),A400,0,4384_7778018_Txc8725908E-20E8-4912-A532-683A5825D18C,4384_436 -4367_81464,319,4384_5807,Limerick (Colbert),A400,0,4384_7778018_Txc1F5AFF56-998A-4B9E-88EE-8BFDA73E7181,4384_436 -4367_81464,278,4384_5809,Limerick (Colbert),A422,0,4384_7778018_TxcFDDEDE00-A362-412E-809A-FC10E1237117,4384_434 -4367_81485,214,4384_581,Greystones,E107,1,4384_7778018_TxcEA45967A-6E90-485D-B9C6-E8E4F854C438,4384_40 -4367_81464,319,4384_5811,Limerick (Colbert),A422,0,4384_7778018_Txc93781F04-85BA-4FD2-854B-3E46C8AD8D10,4384_434 -4367_81464,251,4384_5815,Athenry,A792,0,4384_7778018_Txc7B6CB198-87C6-40AA-9589-8695C50FE400,4384_443 -4367_81464,337,4384_5816,Limerick (Colbert),A432,0,4384_7778018_TxcC889B830-906F-4FAF-8F9A-0DD8B6E15766,4384_434 -4367_81464,338,4384_5817,Limerick (Colbert),A432,0,4384_7778018_Txc519B136D-F418-4221-BED8-7E7EA6CE8D07,4384_434 -4367_81485,316,4384_582,Greystones,E107,1,4384_7778018_Txc548EF241-9A9D-4A8A-80A1-8F548049A477,4384_2 -4367_81464,278,4384_5820,Limerick (Colbert),A402,0,4384_7778018_TxcAA88D996-DEDE-4A11-8C3D-3E4594626B60,4384_436 -4367_81464,319,4384_5822,Limerick (Colbert),A402,0,4384_7778018_Txc0E9BA5D0-49A5-4FCD-A88F-BDC22A674013,4384_436 -4367_81464,337,4384_5823,Limerick (Colbert),A434,0,4384_7778018_Txc166F3B22-9BD1-4F1A-AACD-1BEA04A85EFA,4384_434 -4367_81464,278,4384_5824,Limerick (Colbert),A424,0,4384_7778018_TxcFF93944C-4D19-4767-9694-CF5BD4CBAC48,4384_434 -4367_81464,341,4384_5826,Limerick (Colbert),A434,0,4384_7778018_Txc3C6D6655-36F0-4A1F-A47D-0368D2E922E4,4384_434 -4367_81464,319,4384_5827,Limerick (Colbert),A424,0,4384_7778018_Txc7E1EEFAC-BF8E-4310-87A4-4C1050898861,4384_434 -4367_81464,271,4384_5829,Limerick (Colbert),A434,0,4384_7778018_TxcBFFC74FB-0B1E-423A-A7E3-29DD5AB20EA0,4384_434 -4367_81485,138,4384_583,Greystones,E107,1,4384_7778018_Txc654879C8-D919-4FF0-A00A-249CDA186EE3,4384_2 -4367_81464,320,4384_5830,Limerick (Colbert),A434,0,4384_7778018_TxcE13A232B-27FE-4A5A-A6C3-176291598D1D,4384_434 -4367_81464,96,4384_5833,Athenry,A786,0,4384_7778018_TxcB682A747-2CED-4754-95F6-00A27DA8D6AA,4384_443 -4367_81464,337,4384_5835,Limerick (Colbert),A436,0,4384_7778018_Txc8AB9C2B1-3E35-411E-8370-33396711F3CC,4384_434 -4367_81464,338,4384_5838,Limerick (Colbert),A436,0,4384_7778018_TxcC19378D4-3FEE-4DC0-AE9D-3E8FF134A5FE,4384_434 -4367_81464,278,4384_5839,Limerick (Colbert),A426,0,4384_7778018_Txc8A92BF88-711F-43A0-8D80-1A61816AB1D9,4384_434 -4367_81485,317,4384_584,Greystones,E107,1,4384_7778018_TxcBDF86ED3-A3CE-4B03-AA51-8FBB578F7140,4384_2 -4367_81464,319,4384_5841,Limerick (Colbert),A426,0,4384_7778018_Txc22D76E5E-6AF5-41FD-8ECD-9859D6B812A9,4384_434 -4367_81464,337,4384_5842,Limerick (Colbert),A408,0,4384_7778018_TxcDF862BF7-92D4-4819-82B5-0FB6940C680A,4384_432 -4367_81464,338,4384_5844,Limerick (Colbert),A408,0,4384_7778018_Txc428E947D-02FA-417F-9123-4F64F5C4FAE7,4384_432 -4367_81464,278,4384_5845,Limerick (Colbert),A404,0,4384_7778018_TxcC96821F6-911D-4015-8F95-58D0172AB226,4384_436 -4367_81464,319,4384_5847,Limerick (Colbert),A404,0,4384_7778018_Txc1F1D815D-DE27-4F10-ADE8-9DA0868FE251,4384_436 -4367_81464,278,4384_5848,Limerick (Colbert),A428,0,4384_7778018_Txc74AC2D75-21D2-4368-BE50-C4AFDD30BC08,4384_434 -4367_81485,318,4384_585,Greystones,E107,1,4384_7778018_Txc0394FDB7-E34F-4584-8178-7E5F50D3F781,4384_2 -4367_81464,319,4384_5850,Limerick (Colbert),A428,0,4384_7778018_Txc93F700D9-A241-4272-983C-6EAE01312679,4384_434 -4367_81464,251,4384_5855,Athenry,A794,0,4384_7778018_TxcF118EBAC-E475-4722-BC8A-D66E5BCBBE42,4384_443 -4367_81464,337,4384_5857,Limerick (Colbert),A410,0,4384_7778018_Txc0C2E370C-3713-4443-88DA-BF1F9ADE4757,4384_433 -4367_81464,370,4384_5860,Limerick (Colbert),A410,0,4384_7778018_Txc372D3BA8-A5A7-4B0F-8B61-675866863FBE,4384_433 -4367_81464,337,4384_5861,Limerick (Colbert),A440,0,4384_7778018_Txc7F21E09B-3664-4D7E-8FB0-8DC9B545CC4F,4384_434 -4367_81464,338,4384_5862,Limerick (Colbert),A440,0,4384_7778018_TxcF0DD2725-4970-4787-BD38-6F374473A7C5,4384_434 -4367_81464,278,4384_5866,Limerick (Colbert),A430,0,4384_7778018_TxcF4EC4248-BBCD-485E-B3FD-1437943624C2,4384_434 -4367_81464,319,4384_5868,Limerick (Colbert),A430,0,4384_7778018_TxcC39A1150-C694-402C-A174-A8045772A636,4384_434 -4367_81464,337,4384_5871,Limerick (Colbert),A412,0,4384_7778018_TxcD63C572D-C1E4-4E65-A0B8-6F4D9054BD22,4384_432 -4367_81464,338,4384_5872,Limerick (Colbert),A412,0,4384_7778018_TxcBDB60B65-7468-4317-8562-5CE52592D104,4384_432 -4367_81464,337,4384_5873,Limerick (Colbert),A442,0,4384_7778018_Txc381239BD-AE1C-4A0E-A95A-89C9E5CA204A,4384_434 -4367_81464,338,4384_5874,Limerick (Colbert),A442,0,4384_7778018_TxcF9D1411C-927E-4269-8A61-A5B91EACCB17,4384_434 -4367_81464,278,4384_5879,Limerick (Colbert),A432,0,4384_7778018_Txc0EF6FE41-863C-457B-86C0-459E7A3A0638,4384_434 -4367_81485,314,4384_588,Greystones,E117,1,4384_7778018_TxcC133A787-46F2-4D9A-8533-48A94E80A94C,4384_2 -4367_81464,319,4384_5881,Limerick (Colbert),A432,0,4384_7778018_Txc862374FD-6AFE-4BD5-9CC5-83644BB14C66,4384_434 -4367_81464,96,4384_5884,Athenry,A788,0,4384_7778018_Txc8123C1C1-37D3-43DD-935C-002D8784C932,4384_443 -4367_81464,251,4384_5886,Athenry,A796,0,4384_7778018_Txc1DC41484-FCA0-4225-82D6-B398777B7745,4384_443 -4367_81464,278,4384_5887,Limerick (Colbert),A406,0,4384_7778018_TxcA8352E44-C20E-47FF-B856-A6AA4341B9B8,4384_437 -4367_81464,319,4384_5889,Limerick (Colbert),A406,0,4384_7778018_Txc6639332F-6BA7-4482-A0B2-449AE8786B85,4384_437 -4367_81464,337,4384_5891,Limerick (Colbert),A444,0,4384_7778018_TxcD5289780-6709-4D00-85CF-45534C253A56,4384_434 -4367_81464,338,4384_5894,Limerick (Colbert),A444,0,4384_7778018_Txc7974E066-E09B-4A0D-A139-844225DE5DA4,4384_434 -4367_81464,278,4384_5896,Limerick (Colbert),A434,0,4384_7778018_TxcC0F398DE-0B0F-4313-9E27-A21CE14139F4,4384_434 -4367_81464,319,4384_5898,Limerick (Colbert),A434,0,4384_7778018_TxcD47AD56B-50B8-46E1-93AA-FB37C8C0E089,4384_434 -4367_81464,278,4384_5901,Limerick (Colbert),A408,0,4384_7778018_Txc6BA6A62C-A357-4133-8E6C-3028D3D9E793,4384_438 -4367_81464,319,4384_5903,Limerick (Colbert),A408,0,4384_7778018_Txc12D45250-FA44-40B8-970F-03FF0B48C677,4384_438 -4367_81464,278,4384_5906,Limerick (Colbert),A436,0,4384_7778018_Txc657E421C-0D43-4FE5-BF39-28FC43F63E79,4384_434 -4367_81464,319,4384_5908,Limerick (Colbert),A436,0,4384_7778018_TxcD9DA74C0-50CD-4D8A-81B6-95346572317E,4384_434 -4367_81464,138,4384_5913,Limerick (Colbert),A478,0,4384_7778018_TxcA9E16FB1-9A2E-42B4-A136-982604CB69E8,4384_434 -4367_81464,332,4384_5914,Limerick (Colbert),A478,0,4384_7778018_TxcD582CE2D-DBB7-410B-8014-0BC63861FFFB,4384_434 -4367_81464,96,4384_5915,Athenry,A790,0,4384_7778018_TxcCA193E1C-140C-4F7B-9EE7-3512DC067180,4384_443 -4367_81464,278,4384_5919,Limerick (Colbert),A438,0,4384_7778018_Txc42B06039-0D86-4244-938D-B918FAE0409A,4384_434 -4367_81464,319,4384_5921,Limerick (Colbert),A438,0,4384_7778018_Txc1BDFD8AC-7075-4C6A-80CC-B1AE18ED18F5,4384_434 -4367_81464,337,4384_5922,Limerick (Colbert),A448,0,4384_7778018_Txc8AFB5F1A-A09A-44F7-8522-4F967BB74B5A,4384_434 -4367_81464,338,4384_5925,Limerick (Colbert),A448,0,4384_7778018_Txc1CFCF369-1CAD-4DDB-90DD-F82BCA14ADD7,4384_434 -4367_81464,278,4384_5929,Limerick (Colbert),A410,0,4384_7778018_Txc85A373C7-D220-4213-9DB0-A5DE4B3D6F4D,4384_439 -4367_81464,319,4384_5931,Limerick (Colbert),A410,0,4384_7778018_Txc134DD0C3-0038-4EFC-AAFB-ABD644FB5EEE,4384_439 -4367_81464,214,4384_5933,Limerick (Colbert),B410,0,4384_7778018_TxcD126D6FC-B248-4A46-8FE8-C6D4FDD2FFBD,4384_434 -4367_81464,371,4384_5934,Limerick (Colbert),A450,0,4384_7778018_TxcB26E9DC2-4508-46B3-AE12-63EE1F736B4A,4384_434 -4367_81464,344,4384_5937,Limerick (Colbert),A450,0,4384_7778018_Txc2B192037-3EF2-432B-BD59-50B8C72C0AA9,4384_434 -4367_81485,315,4384_594,Greystones,E117,1,4384_7778018_Txc6C5CD44A-649F-460D-BD10-4D805FFC7A89,4384_2 -4367_81464,214,4384_5940,Limerick (Colbert),A450,0,4384_7778018_Txc88552DF5-32B2-4285-93A5-77B0FA496EBF,4384_434 -4367_81482,314,4384_5945,Dublin Pearse,P651,1,4384_7778018_TxcDA9D5DB6-A869-421C-A76B-0BC7C7372EC0,4384_447 -4367_81482,315,4384_5947,Dublin Pearse,P651,1,4384_7778018_TxcE8AEE0BC-E39B-4F6A-9F11-314D3E590703,4384_447 -4367_81482,314,4384_5949,Dublin Connolly,P740,1,4384_7778018_Txc25E77B4E-E095-466B-A703-F11C5C21BD9F,4384_452 -4367_81482,315,4384_5951,Dublin Connolly,P740,1,4384_7778018_TxcAEFAFDF5-F1CC-4CB5-86D5-E911B8AB3891,4384_452 -4367_81482,314,4384_5954,Dublin Pearse,P652,1,4384_7778018_Txc6A502403-6601-4DE9-8C3B-DC13DD9E77BE,4384_447 -4367_81482,315,4384_5955,Dublin Pearse,P652,1,4384_7778018_TxcAF8492A8-5A0B-49FE-A523-64B0A36C2AB7,4384_447 -4367_81482,138,4384_5956,Dublin Connolly,P652,1,4384_7778018_Txc13C36F4D-8731-49CD-9E4C-5D6F89CD9231,4384_459 -4367_81482,318,4384_5957,Dublin Connolly,P652,1,4384_7778018_Txc19B52D76-B66F-4D88-8EC6-26F9A8D6B688,4384_462 -4367_81482,314,4384_5962,Clonsilla,P300,1,4384_7778018_Txc1C6A01E2-DE22-463B-8B19-342A452EDEE4,4384_444 -4367_81482,314,4384_5963,Dublin Connolly,P741,1,4384_7778018_Txc563B785F-10B1-43E6-9EBE-75ADF4CF5A8C,4384_452 -4367_81482,315,4384_5964,Clonsilla,P300,1,4384_7778018_Txc2BD6A1F4-65D4-4662-8A44-638994AC0DA2,4384_444 -4367_81482,315,4384_5965,Dublin Connolly,P741,1,4384_7778018_Txc9868DC27-AA65-41E2-95E1-897C9B8BF703,4384_452 -4367_81482,314,4384_5968,Dublin Connolly,P742,1,4384_7778018_Txc8E0AD417-36D8-4AB6-B1B9-CF2A2DF88E52,4384_452 -4367_81482,315,4384_5969,Dublin Connolly,P742,1,4384_7778018_Txc25414B23-0DEE-4834-9506-7097863681A2,4384_452 -4367_81485,278,4384_597,Bray (Daly),E215,1,4384_7778018_Txc88D7BED1-912E-4B6D-A9B3-E1D87B623C94,4384_6 -4367_81482,314,4384_5972,Docklands,P301,1,4384_7778018_TxcC45B4445-B47F-4147-81CB-E4F957F0A455,4384_445 -4367_81482,23,4384_5973,Dublin Connolly,P740,1,4384_7778018_TxcFF88EDBA-577D-486A-9A53-4C31232377F4,4384_452 -4367_81482,315,4384_5974,Docklands,P301,1,4384_7778018_TxcB1473929-C372-447B-A944-914D4640EF49,4384_445 -4367_81482,316,4384_5975,Dublin Connolly,P740,1,4384_7778018_Txc1077300C-5644-4874-8F2A-E62C2B942B94,4384_452 -4367_81482,138,4384_5976,Dublin Connolly,P740,1,4384_7778018_TxcBF01926F-66FB-41FA-99AA-F57F4944B812,4384_452 -4367_81482,317,4384_5977,Dublin Connolly,P740,1,4384_7778018_Txc1BC1FA17-E9B8-4D65-BA47-A7D4624B87FE,4384_452 -4367_81482,318,4384_5978,Dublin Connolly,P740,1,4384_7778018_Txc7753E4A7-E9DA-45F9-A94F-BCBF94FECE24,4384_452 -4367_81482,314,4384_5980,Docklands,P302,1,4384_7778018_Txc92A2497D-4E34-4C81-AC74-78466878AE9B,4384_445 -4367_81482,315,4384_5982,Docklands,P302,1,4384_7778018_Txc946C5AE1-F940-4CF9-B990-EC68508DB500,4384_445 -4367_81482,314,4384_5985,Dublin Connolly,P743,1,4384_7778018_Txc71A45B32-F68F-4180-ADDC-40EC190B9709,4384_452 -4367_81482,315,4384_5986,Dublin Connolly,P743,1,4384_7778018_TxcDAA037B0-473A-4860-BD95-60AA7FA14294,4384_452 -4367_81482,314,4384_5990,Docklands,P303,1,4384_7778018_Txc447D99B6-914A-44B9-9CE2-555BE9CCC9D1,4384_445 -4367_81482,315,4384_5992,Docklands,P303,1,4384_7778018_TxcE7B3132A-1B77-4361-9041-2F694E5BABD7,4384_445 -4367_81482,314,4384_5993,Dublin Connolly,P744,1,4384_7778018_Txc0788F619-C21D-4795-8D2E-ADB25D3C5C53,4384_452 -4367_81482,315,4384_5995,Dublin Connolly,P744,1,4384_7778018_TxcFA26D403-7906-42F4-81E1-8397DB8A0052,4384_452 -4367_81482,23,4384_5996,Clonsilla,P330,1,4384_7778018_Txc8B8A9958-B333-472C-8E9B-018706F34FD8,4384_444 -4367_81482,23,4384_5997,Dublin Connolly,P742,1,4384_7778018_Txc0EFC7126-E3DF-423A-86F0-A9ED6B88ADF4,4384_452 -4367_81482,316,4384_5999,Clonsilla,P330,1,4384_7778018_Txc471F2110-521F-4D23-AEEB-CB4F1769EBEB,4384_444 -4367_81482,316,4384_6000,Dublin Connolly,P742,1,4384_7778018_Txc2434D629-5867-4716-8181-3F611201F989,4384_452 -4367_81482,138,4384_6001,Dublin Connolly,P742,1,4384_7778018_TxcCF50FBE4-6E16-4521-8D2C-8152E364C722,4384_452 -4367_81482,138,4384_6002,Clonsilla,P330,1,4384_7778018_TxcDBDD275C-826A-41D0-BA94-915817DFF65F,4384_444 -4367_81482,317,4384_6003,Dublin Connolly,P742,1,4384_7778018_TxcFD5F8C13-DA29-43E0-98B5-C0429A2350A5,4384_452 -4367_81482,317,4384_6004,Clonsilla,P330,1,4384_7778018_Txc2EBA2748-B448-4443-A9E4-DFF69BD56B8F,4384_444 -4367_81482,318,4384_6005,Dublin Connolly,P742,1,4384_7778018_Txc96375BA8-C6C4-4DFA-B6B5-D09C5AA01A68,4384_452 -4367_81482,318,4384_6006,Clonsilla,P330,1,4384_7778018_Txc09CB532B-641B-4327-A5E7-382BD567E7F9,4384_444 -4367_81482,314,4384_6007,Bray (Daly),P653,1,4384_7778018_Txc2050A5D4-57DE-4017-BA0C-7A240DB9CB51,4384_448 -4367_81482,315,4384_6009,Bray (Daly),P653,1,4384_7778018_TxcD714E618-E20A-4EE9-99FB-BCB0F56FE0EC,4384_448 -4367_81485,319,4384_601,Bray (Daly),E215,1,4384_7778018_TxcBDA7819A-CD16-4D86-AD0E-5AD420BE438A,4384_6 -4367_81482,278,4384_6011,Dublin Connolly,P730,1,4384_7778018_Txc9FAB2BFA-9DC9-4AAD-989C-67A7168F6940,4384_452 -4367_81482,319,4384_6014,Dublin Connolly,P730,1,4384_7778018_Txc19526C10-2D2E-4C20-9C69-65D17D27EDD4,4384_452 -4367_81482,271,4384_6015,Dublin Connolly,P730,1,4384_7778018_Txc498F5644-4A9D-4E6C-BD51-4545ED617A77,4384_452 -4367_81482,320,4384_6016,Dublin Connolly,P730,1,4384_7778018_Txc2FC851BD-3918-48E4-84F9-B69A3DBFA83E,4384_452 -4367_81482,314,4384_6019,Dublin Pearse,P654,1,4384_7778018_Txc9698B591-3DA5-44B6-BBD5-F820C7CAD5B4,4384_449 -4367_81485,271,4384_602,Bray (Daly),E215,1,4384_7778018_TxcA8A0C2F1-42B4-4858-A58E-74ADE861491B,4384_6 -4367_81482,315,4384_6020,Dublin Pearse,P654,1,4384_7778018_Txc12462B9A-FE60-49F7-8511-89D660F5EDE2,4384_449 -4367_81482,314,4384_6021,Docklands,P304,1,4384_7778018_TxcBBD0EF1D-8E34-4ED0-A807-E9ADDE7D6FD6,4384_445 -4367_81482,315,4384_6022,Docklands,P304,1,4384_7778018_Txc63EBC78A-F24F-4579-A37A-F9CF9D00E8A0,4384_445 -4367_81482,23,4384_6024,Dublin Connolly,P743,1,4384_7778018_Txc933BF7FE-35B9-4EC9-83ED-E98A72C8A235,4384_452 -4367_81482,316,4384_6025,Dublin Connolly,P743,1,4384_7778018_Txc704921C0-2886-49C5-AA2B-E1C84AD19D5F,4384_452 -4367_81482,138,4384_6026,Dublin Connolly,P743,1,4384_7778018_Txc8C0943B5-804C-493A-874D-0A7487595A49,4384_452 -4367_81482,317,4384_6027,Dublin Connolly,P743,1,4384_7778018_Txc72913884-C15E-4A09-B1C4-1CCA83B06881,4384_452 -4367_81482,318,4384_6028,Dublin Connolly,P743,1,4384_7778018_Txc644AB3B4-1A7A-440C-86DF-86DDC119E8C0,4384_452 -4367_81485,320,4384_603,Bray (Daly),E215,1,4384_7778018_Txc8446FEB1-9AA8-48A5-91B9-C71D5406F237,4384_6 -4367_81482,314,4384_6030,Docklands,P305,1,4384_7778018_Txc66ED53A6-A8DE-47D9-80F3-71A973298AAA,4384_445 -4367_81482,315,4384_6031,Docklands,P305,1,4384_7778018_Txc79119E35-A4C3-400F-ACF9-F7B5048F5C13,4384_445 -4367_81482,314,4384_6032,Dublin Connolly,P745,1,4384_7778018_TxcDEB803D6-C73E-43EB-AF23-9EAC3A4E37FD,4384_452 -4367_81482,315,4384_6036,Dublin Connolly,P745,1,4384_7778018_Txc69FBAB6C-BC41-4455-9019-5878A9762BBC,4384_452 -4367_81482,23,4384_6038,Clonsilla,P331,1,4384_7778018_Txc7C1699CB-EDEE-49D5-8CB6-F54CF74A138F,4384_444 -4367_81482,23,4384_6039,Dublin Connolly,P744,1,4384_7778018_Txc4ACF0A99-A6FF-4654-A1D0-9FAA3890ADD4,4384_452 -4367_81485,23,4384_604,Bray (Daly),E222,1,4384_7778018_TxcFC8FDE28-1961-4CA5-BD8E-B824F8975AAA,4384_7 -4367_81482,316,4384_6041,Clonsilla,P331,1,4384_7778018_TxcC4E12EF2-7145-4535-81D9-566E0F2A7B3F,4384_444 -4367_81482,316,4384_6042,Dublin Connolly,P744,1,4384_7778018_TxcA21B9E24-CA30-4D87-B737-40A10CD39BB5,4384_452 -4367_81482,138,4384_6043,Dublin Connolly,P744,1,4384_7778018_Txc0D6899FD-FF7D-4755-8812-DC987E37771C,4384_452 -4367_81482,138,4384_6044,Clonsilla,P331,1,4384_7778018_TxcE08C62D1-3E15-4F09-A146-D674A58CAD31,4384_444 -4367_81482,317,4384_6045,Dublin Connolly,P744,1,4384_7778018_TxcB68D8FD7-EC26-4ECF-9084-90788629199E,4384_452 -4367_81482,317,4384_6046,Clonsilla,P331,1,4384_7778018_Txc8C028903-1A78-4482-B487-6CE4F97E06A5,4384_444 -4367_81482,318,4384_6047,Dublin Connolly,P744,1,4384_7778018_Txc31D7C5EA-EDAA-4E3F-935C-0631AF55403A,4384_452 -4367_81482,318,4384_6048,Clonsilla,P331,1,4384_7778018_Txc39F111FB-1D0A-4DD0-9BF6-1778DBA1983E,4384_444 -4367_81482,314,4384_6049,Docklands,P306,1,4384_7778018_Txc88D40488-C23B-41D4-B1B7-5586458CCCFE,4384_445 -4367_81482,315,4384_6050,Docklands,P306,1,4384_7778018_Txc44C53C81-4553-4186-948B-8442D821DF0D,4384_445 -4367_81482,23,4384_6053,Dublin Connolly,P745,1,4384_7778018_TxcCDAAB15F-416F-4216-9079-7DFCA74E63BD,4384_452 -4367_81482,314,4384_6054,Dublin Connolly,P769,1,4384_7778018_Txc12A8CC0C-7BB2-4754-87D5-D60A764183F5,4384_455 -4367_81482,315,4384_6055,Dublin Connolly,P769,1,4384_7778018_TxcE63837E7-D942-4522-8D6C-16C91CD90EBE,4384_455 -4367_81482,316,4384_6056,Dublin Connolly,P745,1,4384_7778018_Txc485A3B96-3D45-4CC6-A0DB-20B750991A76,4384_452 -4367_81482,138,4384_6057,Dublin Connolly,P745,1,4384_7778018_Txc7B45A70F-0A54-41E2-82DA-7D59D0E3A855,4384_452 -4367_81482,317,4384_6058,Dublin Connolly,P745,1,4384_7778018_Txc87931AB4-C2D7-4066-A4AB-9E35D14B062A,4384_452 -4367_81482,318,4384_6059,Dublin Connolly,P745,1,4384_7778018_TxcAAB26936-5048-4633-83BF-5E3C7822BF7A,4384_452 -4367_81482,23,4384_6062,Clonsilla,P332,1,4384_7778018_Txc9313D9AA-1196-463F-ABB5-E537E88C2EA4,4384_444 -4367_81482,23,4384_6063,Dublin Connolly,P746,1,4384_7778018_Txc3C3DC6E2-856C-45E4-9BF7-65E43BC559EC,4384_452 -4367_81482,316,4384_6066,Clonsilla,P332,1,4384_7778018_TxcD517DAB9-E278-499A-990B-C38C22FAF003,4384_444 -4367_81482,316,4384_6067,Dublin Connolly,P746,1,4384_7778018_Txc8D2D2E8D-8072-48F6-88C5-53D4251A7837,4384_452 -4367_81482,138,4384_6068,Dublin Connolly,P746,1,4384_7778018_Txc72EF6198-D485-42AE-AF54-FA2D0BC61FEB,4384_452 -4367_81482,138,4384_6069,Clonsilla,P332,1,4384_7778018_TxcF87D3DDF-68C8-4B43-9C10-75C2FF84BB12,4384_444 -4367_81485,316,4384_607,Bray (Daly),E222,1,4384_7778018_Txc1D07BE22-EF65-4251-AE00-93E4830CD8A8,4384_7 -4367_81482,317,4384_6070,Dublin Connolly,P746,1,4384_7778018_Txc785C149A-60F4-404E-B079-15F270512F14,4384_452 -4367_81482,317,4384_6071,Clonsilla,P332,1,4384_7778018_Txc01F772C3-E000-439A-93A9-D5C398A7D84C,4384_444 -4367_81482,318,4384_6072,Dublin Connolly,P746,1,4384_7778018_TxcFC57FF5A-049D-4238-893C-619A77504869,4384_452 -4367_81482,318,4384_6073,Clonsilla,P332,1,4384_7778018_TxcF2A1282E-32FA-49A1-9ED8-8C779F122C93,4384_444 -4367_81482,278,4384_6074,Clonsilla,P370,1,4384_7778018_TxcB4D5A9FB-5D54-48D7-A595-DE11B61C4631,4384_444 -4367_81482,314,4384_6075,Dublin Connolly,P780,1,4384_7778018_TxcA9D0E970-5E9C-4987-B264-5BA454A64BE9,4384_453 -4367_81482,278,4384_6076,Dublin Connolly,P733,1,4384_7778018_TxcD66CAA90-8FFF-428E-B39B-D95C72D6F25A,4384_452 -4367_81485,138,4384_608,Bray (Daly),E222,1,4384_7778018_Txc6CC9A136-0A61-4DA7-9D9E-B03BFAC6BDEF,4384_7 -4367_81482,319,4384_6082,Clonsilla,P370,1,4384_7778018_Txc16F2F685-081A-455C-960C-093A6F7E4B61,4384_444 -4367_81482,315,4384_6083,Dublin Connolly,P780,1,4384_7778018_Txc008EE02A-6B2B-4F24-AC34-F2081FD10324,4384_453 -4367_81482,319,4384_6084,Dublin Connolly,P733,1,4384_7778018_Txc5F4BAE8A-13A6-498B-BC08-3151D4CE16BF,4384_452 -4367_81482,271,4384_6085,Clonsilla,P370,1,4384_7778018_Txc674EC122-1558-4884-BBA9-C9B05F13310F,4384_444 -4367_81482,271,4384_6086,Dublin Connolly,P733,1,4384_7778018_Txc0098F250-5B34-4744-9306-1146C42AD344,4384_452 -4367_81482,320,4384_6087,Clonsilla,P370,1,4384_7778018_Txc18BC4CAA-DCC7-434C-859B-0219B2B71CDB,4384_444 -4367_81482,320,4384_6088,Dublin Connolly,P733,1,4384_7778018_Txc89B46221-378E-4E0B-A948-09A2A1527C98,4384_452 -4367_81482,314,4384_6089,Grand Canal Dock,P656,1,4384_7778018_TxcF5FA19EF-282B-405A-A720-25FA7055E649,4384_450 -4367_81485,317,4384_609,Bray (Daly),E222,1,4384_7778018_Txc1F0CD5F7-0FCA-4D9D-9836-EB9EFF2C6EBF,4384_7 -4367_81482,315,4384_6090,Grand Canal Dock,P656,1,4384_7778018_Txc84D0D77C-9A00-4BA9-8674-0DB8CC41320D,4384_450 -4367_81482,23,4384_6092,Dublin Connolly,P747,1,4384_7778018_TxcCCA542D3-7E0F-4E89-85E2-DA06000D4651,4384_452 -4367_81482,316,4384_6093,Dublin Connolly,P747,1,4384_7778018_TxcD9317274-5F3E-41D6-A948-DA279328621A,4384_452 -4367_81482,138,4384_6094,Dublin Connolly,P747,1,4384_7778018_TxcC4336952-B532-4570-A678-01BC0CEC5FFE,4384_452 -4367_81482,317,4384_6095,Dublin Connolly,P747,1,4384_7778018_Txc5E5678F2-E017-413F-B278-505D4469788A,4384_452 -4367_81482,318,4384_6096,Dublin Connolly,P747,1,4384_7778018_TxcC5A192AC-343E-46A3-8208-67F7FDF8D4C9,4384_452 -4367_81482,314,4384_6097,Dublin Connolly,P746,1,4384_7778018_Txc46DAAD82-14CD-428E-A293-32A99CCEDE6F,4384_452 -4367_81482,315,4384_6099,Dublin Connolly,P746,1,4384_7778018_Txc01759CA8-D469-4CDF-94CE-998648F94423,4384_452 -4367_81485,23,4384_61,Bray (Daly),E202,1,4384_7778018_Txc6151B7DE-D600-420D-8864-C7BAE4AF8BEF,4384_6 -4367_81485,318,4384_610,Bray (Daly),E222,1,4384_7778018_Txc14159429-775D-4BFF-9FD6-14B74D48C178,4384_7 -4367_81482,23,4384_6103,Clonsilla,P333,1,4384_7778018_TxcF4074E49-D439-48E3-8716-72341787E85C,4384_444 -4367_81482,23,4384_6104,Dublin Connolly,P748,1,4384_7778018_Txc9C00B8E4-3897-4EE4-98B5-7A9EE4A06ADA,4384_452 -4367_81482,316,4384_6106,Clonsilla,P333,1,4384_7778018_Txc4E915D0F-740F-49F3-8E14-E05D6CD42D14,4384_444 -4367_81482,316,4384_6107,Dublin Connolly,P748,1,4384_7778018_Txc1FB50BE1-B312-49BA-99C5-E6A999001952,4384_452 -4367_81482,138,4384_6108,Dublin Connolly,P748,1,4384_7778018_TxcE00EBB6E-FCE4-4615-AD43-431BFE5EB8ED,4384_452 -4367_81482,138,4384_6109,Clonsilla,P333,1,4384_7778018_Txc2D65DBF5-521E-44D3-8941-8EA923660F6C,4384_444 -4367_81485,314,4384_611,Bray (Daly),E234,1,4384_7778018_Txc264F56AA-8E7C-4470-B618-3F24150853C8,4384_7 -4367_81482,317,4384_6110,Dublin Connolly,P748,1,4384_7778018_Txc214E76A7-52CE-4ECC-B2BE-25E42F83D9F3,4384_452 -4367_81482,317,4384_6111,Clonsilla,P333,1,4384_7778018_Txc39337944-9E77-4DE3-9EDF-3C96E8182B25,4384_444 -4367_81482,318,4384_6112,Dublin Connolly,P748,1,4384_7778018_TxcB18900FE-243A-4BF4-A67B-D4EAF9F0FBBA,4384_452 -4367_81482,318,4384_6113,Clonsilla,P333,1,4384_7778018_Txc07946797-1072-4EBE-AB42-9067ADC0A607,4384_444 -4367_81482,314,4384_6114,Dublin Connolly,P747,1,4384_7778018_Txc9C9E3590-5C32-47BE-BE93-3AB423D07F9D,4384_452 -4367_81482,315,4384_6116,Dublin Connolly,P747,1,4384_7778018_Txc19B55201-0987-45FD-BFA2-CE1B906B89ED,4384_452 -4367_81482,314,4384_6117,Clonsilla,P309,1,4384_7778018_Txc555DCB0B-EBA0-47F5-9FF9-326AA2EF5339,4384_444 -4367_81482,278,4384_6118,Clonsilla,P371,1,4384_7778018_TxcC0ABE5B8-1218-4371-B0FB-51982DB3DBA2,4384_446 -4367_81482,278,4384_6119,Dublin Connolly,P735,1,4384_7778018_Txc86D5E791-10ED-4F55-97AB-BE79AFCAB9A9,4384_452 -4367_81482,315,4384_6125,Clonsilla,P309,1,4384_7778018_Txc518A30C3-1101-4AD3-B349-9580469FC7FC,4384_444 -4367_81482,319,4384_6126,Clonsilla,P371,1,4384_7778018_Txc92A6BEEF-5A13-45CE-ACA4-E5D75ABB9E16,4384_446 -4367_81482,319,4384_6127,Dublin Connolly,P735,1,4384_7778018_Txc0624B92B-D9DC-4E13-9E67-2AE94B72E3D9,4384_452 -4367_81482,271,4384_6128,Clonsilla,P371,1,4384_7778018_Txc4D827C88-FBD8-44CC-8463-0C6B301B36BC,4384_446 -4367_81482,271,4384_6129,Dublin Connolly,P735,1,4384_7778018_Txc5C83B6A7-FB04-42F9-820C-4B9E17559118,4384_452 -4367_81482,320,4384_6130,Clonsilla,P371,1,4384_7778018_Txc0C7D5CC9-5A91-45A0-BC65-3AF7CFBC49E1,4384_446 -4367_81482,320,4384_6131,Dublin Connolly,P735,1,4384_7778018_Txc601FB784-96C5-45D0-9137-080CCEE274E4,4384_452 -4367_81482,23,4384_6133,Dublin Connolly,P749,1,4384_7778018_TxcCC87BF84-ACE6-4A92-842F-87C8AAA679BA,4384_452 -4367_81482,316,4384_6134,Dublin Connolly,P749,1,4384_7778018_Txc988CB34E-AAB8-47E5-A89B-96CF8AD7122E,4384_452 -4367_81482,138,4384_6135,Dublin Connolly,P749,1,4384_7778018_Txc3C3882CE-7F57-42D6-9978-BB35B5784BD5,4384_452 -4367_81482,317,4384_6136,Dublin Connolly,P749,1,4384_7778018_Txc2C964CE2-CCC4-4585-BA2C-0D37515B53E6,4384_452 -4367_81482,318,4384_6137,Dublin Connolly,P749,1,4384_7778018_Txc4AA135E0-8298-46C2-87F2-96A35A60F0B8,4384_452 -4367_81482,314,4384_6138,Dublin Connolly,P748,1,4384_7778018_Txc8DEA9FF4-39BD-42EA-9F5D-607CE7EA7EFD,4384_452 -4367_81485,315,4384_614,Bray (Daly),E234,1,4384_7778018_Txc32574F69-4C89-480D-8687-13145A0EE40B,4384_7 -4367_81482,315,4384_6140,Dublin Connolly,P748,1,4384_7778018_Txc3CDF1FCA-86E5-4F09-992D-D13078617E86,4384_452 -4367_81482,23,4384_6142,Clonsilla,P334,1,4384_7778018_Txc6B7C7192-7F72-4A7A-8785-F5E5B0971922,4384_444 -4367_81482,316,4384_6144,Clonsilla,P334,1,4384_7778018_Txc862FC1B0-C4EB-4132-8266-E90B9BA6127F,4384_444 -4367_81482,138,4384_6145,Clonsilla,P334,1,4384_7778018_TxcF004218B-9720-4F34-A65E-D0917FE9505A,4384_444 -4367_81482,317,4384_6146,Clonsilla,P334,1,4384_7778018_TxcA51A5251-81CA-43BB-B608-97E749C0313A,4384_444 -4367_81482,318,4384_6147,Clonsilla,P334,1,4384_7778018_Txc4A97D9FF-D2AF-4228-AF41-4B611B124690,4384_444 -4367_81482,314,4384_6148,Clonsilla,P311,1,4384_7778018_Txc8DD8746E-375C-4002-B5AE-9BB714102B55,4384_444 -4367_81482,278,4384_6149,Clonsilla,P372,1,4384_7778018_TxcF4772E74-2B10-40D3-971D-3D015F6C291A,4384_446 -4367_81485,96,4384_615,Lansdowne Road,E552,1,4384_7778018_Txc502A1E19-5BB2-4D58-B4B8-2B03481D29E3,4384_23 -4367_81482,315,4384_6153,Clonsilla,P311,1,4384_7778018_Txc8304FC68-B01F-48B6-B0DC-C98D2BAB69CF,4384_444 -4367_81482,319,4384_6154,Clonsilla,P372,1,4384_7778018_Txc66BAB1C3-9725-41FF-AFAB-8125E63E1BED,4384_446 -4367_81482,271,4384_6155,Clonsilla,P372,1,4384_7778018_Txc44132113-EA2E-49DC-9728-C3056AEA580C,4384_446 -4367_81482,320,4384_6156,Clonsilla,P372,1,4384_7778018_Txc413783AD-7288-4BC4-AE03-C0FCEEAFB5DF,4384_446 -4367_81482,278,4384_6157,Dublin Connolly,P737,1,4384_7778018_Txc7B9951BA-D87A-4206-870E-1BA67B029A85,4384_452 -4367_81485,214,4384_616,Lansdowne Road,E552,1,4384_7778018_Txc5A0BCC18-2A8A-4E3A-9F93-B115AE91B0FF,4384_23 -4367_81482,319,4384_6160,Dublin Connolly,P737,1,4384_7778018_Txc1A931EA0-5B02-4B48-8AB7-827B4142FA8A,4384_452 -4367_81482,271,4384_6161,Dublin Connolly,P737,1,4384_7778018_TxcE652BB29-FF4E-4A27-9BBB-D9E9F49846B1,4384_452 -4367_81482,320,4384_6162,Dublin Connolly,P737,1,4384_7778018_Txc8B4A468B-AF18-4422-AB27-3C7525473A72,4384_452 -4367_81482,23,4384_6163,Dublin Connolly,P750,1,4384_7778018_TxcD611DFFD-0518-481E-B621-209F34B31F7C,4384_452 -4367_81482,316,4384_6165,Dublin Connolly,P750,1,4384_7778018_Txc5B77C897-2122-4EEA-B6E2-7DFB05A6ED6D,4384_452 -4367_81482,138,4384_6166,Dublin Connolly,P750,1,4384_7778018_Txc7459B31C-4697-4EE0-A443-B98394157936,4384_452 -4367_81482,317,4384_6167,Dublin Connolly,P750,1,4384_7778018_TxcD85B6DDA-051E-4913-9744-0CF9196D5124,4384_452 -4367_81482,318,4384_6168,Dublin Connolly,P750,1,4384_7778018_Txc8F4025C6-5EEF-496F-904B-DE5ACBC51CB8,4384_452 -4367_81482,314,4384_6169,Dublin Connolly,P749,1,4384_7778018_TxcE4410709-C37E-4D63-A410-F291C56C9D75,4384_452 -4367_81482,315,4384_6171,Dublin Connolly,P749,1,4384_7778018_Txc43231A47-AC4A-4BD8-9D11-2197467D8EB2,4384_452 -4367_81482,23,4384_6172,Dublin Connolly,P751,1,4384_7778018_TxcAF6534D3-56B8-425F-BA18-E1C9E1673E07,4384_452 -4367_81482,278,4384_6173,Dublin Connolly,P738,1,4384_7778018_TxcF772D459-4FBB-4EF4-9030-9AAA84847F20,4384_452 -4367_81482,316,4384_6176,Dublin Connolly,P751,1,4384_7778018_TxcD3BB30B2-E45E-45C7-9371-5CDCCA33FBFA,4384_452 -4367_81482,319,4384_6177,Dublin Connolly,P738,1,4384_7778018_Txc2EFC03D8-6251-4941-98C4-3E86F78A0F26,4384_452 -4367_81482,138,4384_6178,Dublin Connolly,P751,1,4384_7778018_Txc3AEB2FE5-6FD9-4F60-8547-CCF9C417927F,4384_452 -4367_81482,317,4384_6179,Dublin Connolly,P751,1,4384_7778018_Txc7507330C-F1AA-4476-B12B-2E3F5FF82579,4384_452 -4367_81482,318,4384_6180,Dublin Connolly,P751,1,4384_7778018_Txc27EB54CE-6D9A-415F-BDC5-BD8D7B3A7846,4384_452 -4367_81482,271,4384_6181,Dublin Connolly,P738,1,4384_7778018_TxcFD6D112E-E3AA-41CE-BFBA-7D6094084991,4384_452 -4367_81482,320,4384_6182,Dublin Connolly,P738,1,4384_7778018_Txc0BF15A7F-89C1-49DB-A2C2-050B8EF1D219,4384_452 -4367_81482,314,4384_6183,Dublin Connolly,P750,1,4384_7778018_Txc4193D990-FB62-4DF4-8AD3-34F59D4CA13A,4384_452 -4367_81482,315,4384_6185,Dublin Connolly,P750,1,4384_7778018_Txc4BFCC076-F7FE-4FFA-BB26-09F645B72EB0,4384_452 -4367_81482,23,4384_6187,Clonsilla,P335,1,4384_7778018_TxcD03E8E07-3E06-4D61-99DF-F62505C2A0DB,4384_444 -4367_81482,23,4384_6188,Dublin Connolly,P752,1,4384_7778018_Txc3B6A9E38-80CF-4FCE-99E9-C43AAAAB7D37,4384_452 -4367_81482,316,4384_6190,Clonsilla,P335,1,4384_7778018_Txc35621B38-D80A-454C-B0C4-9DD243E60ACD,4384_444 -4367_81482,316,4384_6191,Dublin Connolly,P752,1,4384_7778018_Txc6AECDB0E-3718-46B2-9325-C6BD7BB330BB,4384_452 -4367_81482,138,4384_6192,Dublin Connolly,P752,1,4384_7778018_Txc5D344C98-9965-4795-8BBE-1BBB2C373CE8,4384_452 -4367_81482,138,4384_6193,Clonsilla,P335,1,4384_7778018_TxcE6E75602-9262-4588-8F84-5E91FA3F0BBD,4384_444 -4367_81482,317,4384_6194,Dublin Connolly,P752,1,4384_7778018_Txc8AA0CA96-8D39-48C3-A26A-ABA2697E2006,4384_452 -4367_81482,317,4384_6195,Clonsilla,P335,1,4384_7778018_TxcE571FCDF-25DB-4F5A-BF04-2BAA86EAEAA4,4384_444 -4367_81482,318,4384_6196,Dublin Connolly,P752,1,4384_7778018_Txc84048F2C-24E7-48E4-9CED-5639AB2484DF,4384_452 -4367_81482,318,4384_6197,Clonsilla,P335,1,4384_7778018_Txc762BF64E-D6A4-4C60-B99F-AD035BCAC30C,4384_444 -4367_81482,314,4384_6198,Dublin Connolly,P751,1,4384_7778018_TxcACEC1729-B87A-4157-A97A-ACB819F264CD,4384_452 -4367_81482,315,4384_6200,Dublin Connolly,P751,1,4384_7778018_Txc6A954637-F09E-4F2D-A8FD-36AF4516D126,4384_452 -4367_81482,314,4384_6201,Clonsilla,P313,1,4384_7778018_TxcC7A3EF78-2A43-49CB-BD45-49F004816AF8,4384_444 -4367_81482,278,4384_6202,Clonsilla,P373,1,4384_7778018_Txc9417E5EF-1FDC-4D6B-A688-4DAC02C5E5B7,4384_446 -4367_81482,278,4384_6203,Dublin Connolly,P739,1,4384_7778018_Txc4AF9ABAD-A2A2-46EF-9540-90EA4658A38D,4384_452 -4367_81482,315,4384_6209,Clonsilla,P313,1,4384_7778018_Txc891A7B2D-7E51-4DB0-A7EC-1894049E0B8A,4384_444 -4367_81482,319,4384_6210,Clonsilla,P373,1,4384_7778018_TxcE1030DF5-93C4-49D8-8EE0-58EE5D137A3A,4384_446 -4367_81482,319,4384_6211,Dublin Connolly,P739,1,4384_7778018_Txc03F958B0-38C6-4675-96AA-090B28968ED8,4384_452 -4367_81482,271,4384_6212,Clonsilla,P373,1,4384_7778018_Txc620710D5-AD55-4423-B947-27BF462EED80,4384_446 -4367_81482,271,4384_6213,Dublin Connolly,P739,1,4384_7778018_TxcB431937E-F199-4EB7-A54D-B173CC34DBA3,4384_452 -4367_81482,320,4384_6214,Clonsilla,P373,1,4384_7778018_TxcA97782BB-CDF8-4279-831D-E0E56C5C9BAE,4384_446 -4367_81482,320,4384_6215,Dublin Connolly,P739,1,4384_7778018_TxcFB224F90-C42F-4E86-9F1C-A10EA2AC65C1,4384_452 -4367_81482,23,4384_6218,Dublin Connolly,P753,1,4384_7778018_Txc9F9C9B48-E2FF-4F33-A1F6-03411A630C1E,4384_452 -4367_81482,316,4384_6219,Dublin Connolly,P753,1,4384_7778018_Txc538EE3CD-E145-4B07-A170-B75A37308D01,4384_452 -4367_81482,138,4384_6220,Dublin Connolly,P753,1,4384_7778018_Txc7B8F681C-9B69-4A68-B04F-490CA2A12DCF,4384_452 -4367_81482,317,4384_6221,Dublin Connolly,P753,1,4384_7778018_TxcAB049962-03DD-47E0-AE68-17091DEDF46A,4384_452 -4367_81482,318,4384_6222,Dublin Connolly,P753,1,4384_7778018_Txc110BDA08-7CB8-47C0-9C90-1F4DE31031F7,4384_452 -4367_81482,314,4384_6223,Dublin Connolly,P752,1,4384_7778018_Txc485C469B-6575-45A0-B00D-2CB29891569F,4384_452 -4367_81482,278,4384_6224,Dublin Connolly,P740,1,4384_7778018_Txc39960C78-401E-45EB-A5CB-2437F0041AB2,4384_455 -4367_81482,315,4384_6228,Dublin Connolly,P752,1,4384_7778018_Txc84ECAA71-9173-46DE-AE16-1947E2CB5D37,4384_452 -4367_81482,319,4384_6229,Dublin Connolly,P740,1,4384_7778018_Txc610A46BA-1387-4B00-AFF5-9F81B53EC72C,4384_455 -4367_81482,271,4384_6230,Dublin Connolly,P740,1,4384_7778018_Txc9B15E0DD-4201-4A75-ACD4-BCDE8058DE1A,4384_455 -4367_81482,320,4384_6231,Dublin Connolly,P740,1,4384_7778018_TxcDE1BB1A4-D5DD-412D-AED4-02396F4C8C0F,4384_455 -4367_81482,23,4384_6233,Clonsilla,P336,1,4384_7778018_Txc45BC0745-1C13-44FE-9C92-81D4B26A877F,4384_444 -4367_81482,316,4384_6235,Clonsilla,P336,1,4384_7778018_TxcD6F6C92E-14A1-469A-A33A-B37E77F800FF,4384_444 -4367_81482,138,4384_6236,Clonsilla,P336,1,4384_7778018_TxcCC2ABC92-47EB-489B-AD79-29FB267586B7,4384_444 -4367_81482,317,4384_6237,Clonsilla,P336,1,4384_7778018_Txc4B9CE6A2-D146-4EC1-99E5-CD74312E1FA9,4384_444 -4367_81482,318,4384_6238,Clonsilla,P336,1,4384_7778018_TxcA8E1D6E7-B669-48F7-B172-4700D7509847,4384_444 -4367_81482,314,4384_6239,Clonsilla,P315,1,4384_7778018_Txc492FF9E9-C253-4C76-A426-642D10EE39A7,4384_444 -4367_81482,278,4384_6240,Clonsilla,P374,1,4384_7778018_Txc6FBCBD9D-1161-401F-921B-21A4BD1258A5,4384_446 -4367_81482,278,4384_6241,Dublin Connolly,P741,1,4384_7778018_Txc40605796-9E31-4718-88D4-FD22F8CDACAF,4384_452 -4367_81482,315,4384_6247,Clonsilla,P315,1,4384_7778018_Txc27908FDB-CBB1-4592-A128-2BF6777919A2,4384_444 -4367_81482,319,4384_6248,Clonsilla,P374,1,4384_7778018_Txc96697A81-0D29-4F9D-A7F7-B986CF9337E9,4384_446 -4367_81482,319,4384_6249,Dublin Connolly,P741,1,4384_7778018_TxcB9BF8231-CA3D-41C9-B496-EA2BD15572FE,4384_452 -4367_81485,314,4384_625,Bray (Daly),E235,1,4384_7778018_Txc0B857338-03DD-4CD4-9BF2-FE6AB48CD0F6,4384_6 -4367_81482,271,4384_6250,Clonsilla,P374,1,4384_7778018_Txc094D37F3-AC20-4D7D-B8D4-2AEFD5F09DD2,4384_446 -4367_81482,271,4384_6251,Dublin Connolly,P741,1,4384_7778018_TxcF012DCEB-CD82-4C00-A70C-6A8E745082BD,4384_452 -4367_81482,320,4384_6252,Clonsilla,P374,1,4384_7778018_TxcA3052C98-F2BB-46EF-A9BE-8FD527998E9B,4384_446 -4367_81482,320,4384_6253,Dublin Connolly,P741,1,4384_7778018_TxcE508C0D9-11D9-48EB-AC05-8E7E5A999611,4384_452 -4367_81482,23,4384_6255,Dublin Connolly,P754,1,4384_7778018_Txc12F715F5-C8F0-4CE9-B3FD-2B0DFE86B133,4384_452 -4367_81482,316,4384_6256,Dublin Connolly,P754,1,4384_7778018_Txc6FE3CF19-AFC8-4F23-A363-49FBF2B6405E,4384_452 -4367_81482,138,4384_6257,Dublin Connolly,P754,1,4384_7778018_TxcA9AD333A-15A5-47D4-A1F9-D9F99C27BDDF,4384_452 -4367_81482,317,4384_6258,Dublin Connolly,P754,1,4384_7778018_Txc05D29D36-B763-4925-A297-F43DAEE0B46E,4384_452 -4367_81482,318,4384_6259,Dublin Connolly,P754,1,4384_7778018_Txc6CDC2CF5-2A63-4CD7-BA30-ED66FBAEA150,4384_452 -4367_81482,314,4384_6260,Dublin Connolly,P753,1,4384_7778018_Txc73D48414-4CC2-4281-AD67-A28B87C68FF4,4384_452 -4367_81482,315,4384_6262,Dublin Connolly,P753,1,4384_7778018_TxcD56B46E7-870A-4F85-866D-65CAC5DF827C,4384_452 -4367_81482,23,4384_6264,Dublin Connolly,P755,1,4384_7778018_Txc543F7112-13FF-4AE0-92D8-4DEE377825A2,4384_452 -4367_81482,316,4384_6265,Dublin Connolly,P755,1,4384_7778018_Txc2309AE76-FF61-472B-96FD-25B9E4F7393E,4384_452 -4367_81482,138,4384_6266,Dublin Connolly,P755,1,4384_7778018_TxcAF267340-C23E-45A8-85CE-D61D4CB08A14,4384_452 -4367_81482,317,4384_6267,Dublin Connolly,P755,1,4384_7778018_TxcC379E43C-5C7F-46EE-9B5E-1D78FE309485,4384_452 -4367_81482,318,4384_6268,Dublin Connolly,P755,1,4384_7778018_TxcFACD8CA9-B581-4963-9E0F-84C57204E5E2,4384_452 -4367_81482,314,4384_6269,Grand Canal Dock,P660,1,4384_7778018_Txc217D7795-DC88-46B3-94CE-631991674EC3,4384_450 -4367_81482,315,4384_6270,Grand Canal Dock,P660,1,4384_7778018_TxcB683374F-B500-4EE9-A899-F4A83848EF10,4384_450 -4367_81482,278,4384_6271,Dublin Connolly,P742,1,4384_7778018_TxcE72D4B33-B4F3-4063-8AEB-34D98C203801,4384_452 -4367_81482,319,4384_6274,Dublin Connolly,P742,1,4384_7778018_Txc091D0678-D70F-4395-97E3-238DFD17B08F,4384_452 -4367_81482,271,4384_6275,Dublin Connolly,P742,1,4384_7778018_Txc984B8927-EBD2-424F-A6FA-316F9F76B68C,4384_452 -4367_81482,320,4384_6276,Dublin Connolly,P742,1,4384_7778018_Txc74BB5401-6855-46BA-8159-DD83AA9B90AE,4384_452 -4367_81482,23,4384_6278,Clonsilla,P337,1,4384_7778018_Txc9C0F3456-633E-494D-B08A-FFC568DEB4C3,4384_444 -4367_81482,23,4384_6279,Dublin Connolly,P756,1,4384_7778018_Txc1FAEBBF7-30A3-416F-89A5-05D485057BE1,4384_452 -4367_81482,316,4384_6281,Clonsilla,P337,1,4384_7778018_Txc95850B5E-F778-4C0D-B905-EC19F71BD07A,4384_444 -4367_81482,316,4384_6282,Dublin Connolly,P756,1,4384_7778018_Txc7056507C-5948-4E48-A42F-A904FDF7DB52,4384_452 -4367_81482,138,4384_6283,Dublin Connolly,P756,1,4384_7778018_TxcF9D77649-9F02-4467-AC39-4A83D29F6541,4384_452 -4367_81482,138,4384_6284,Clonsilla,P337,1,4384_7778018_Txc187B7041-97FD-4DFE-AEE0-5EB45554792F,4384_444 -4367_81482,317,4384_6285,Dublin Connolly,P756,1,4384_7778018_Txc177C0AED-7AA5-4079-9062-FB32BDDB39A7,4384_452 -4367_81482,317,4384_6286,Clonsilla,P337,1,4384_7778018_Txc341CBAC7-2CA2-4061-BD4F-3AA1E97F2C57,4384_444 -4367_81482,318,4384_6287,Dublin Connolly,P756,1,4384_7778018_TxcFBDAE589-C179-442C-82A6-13F2D0C8CEAA,4384_452 -4367_81482,318,4384_6288,Clonsilla,P337,1,4384_7778018_Txc766BE787-E64F-4977-AF5E-36C80EF4EBAE,4384_444 -4367_81482,314,4384_6289,Grand Canal Dock,P661,1,4384_7778018_TxcF1249F67-03A9-425B-A80B-F888D2F09929,4384_450 -4367_81485,315,4384_629,Bray (Daly),E235,1,4384_7778018_TxcEEC9E34B-B4FE-4DD7-8EE6-E828CF0564A0,4384_6 -4367_81482,315,4384_6290,Grand Canal Dock,P661,1,4384_7778018_Txc3429B711-EAF1-47A8-9228-EF2D7B8FD1CE,4384_450 -4367_81482,314,4384_6291,Clonsilla,P317,1,4384_7778018_Txc92201908-714D-4B39-9D0F-766E5B5D527E,4384_444 -4367_81482,278,4384_6292,Clonsilla,P375,1,4384_7778018_TxcDEF7746C-A3D4-465E-A9C5-D8DE67E9B238,4384_446 -4367_81482,278,4384_6293,Dublin Connolly,P743,1,4384_7778018_Txc47F51B59-53CC-4606-8952-0B75F0B25440,4384_452 -4367_81482,315,4384_6299,Clonsilla,P317,1,4384_7778018_TxcA8721D8A-9DCC-4385-B555-C7E4E6BF927D,4384_444 -4367_81485,23,4384_630,Bray (Daly),E223,1,4384_7778018_Txc48C17810-6324-45DD-9DDC-62B094CFF1B4,4384_6 -4367_81482,319,4384_6300,Clonsilla,P375,1,4384_7778018_TxcD33F5C59-62FA-415D-A7A1-A3991572346C,4384_446 -4367_81482,319,4384_6301,Dublin Connolly,P743,1,4384_7778018_Txc4AE552AC-4BCC-4D8B-8766-52ECDD0DE480,4384_452 -4367_81482,271,4384_6302,Clonsilla,P375,1,4384_7778018_Txc42CD3608-696D-4D2F-9E64-FC26E579B5F6,4384_446 -4367_81482,271,4384_6303,Dublin Connolly,P743,1,4384_7778018_Txc972A0AD9-55C4-43CA-8943-0A3C66F687A1,4384_452 -4367_81482,320,4384_6304,Clonsilla,P375,1,4384_7778018_Txc9EC21794-1B38-4269-8AC6-21A7D099ACAA,4384_446 -4367_81482,320,4384_6305,Dublin Connolly,P743,1,4384_7778018_Txc29F39284-293E-40F5-B898-B2F6C7486CA3,4384_452 -4367_81482,23,4384_6310,Dublin Connolly,P757,1,4384_7778018_TxcAABA4048-8B89-427F-A5D8-724D1CF95874,4384_452 -4367_81482,316,4384_6311,Dublin Connolly,P757,1,4384_7778018_TxcB82682A9-D08E-4D6B-8038-01C976FEC8F3,4384_452 -4367_81482,138,4384_6312,Dublin Connolly,P757,1,4384_7778018_Txc63EBC2BF-A249-4D0A-8950-392C5BE5FD10,4384_452 -4367_81482,317,4384_6313,Dublin Connolly,P757,1,4384_7778018_TxcA377B095-9674-4B47-A9BB-F01B6C0AF0EA,4384_452 -4367_81482,318,4384_6314,Dublin Connolly,P757,1,4384_7778018_Txc783C9CA9-8BFE-48ED-A225-F94B869185C9,4384_452 -4367_81482,314,4384_6315,Dun Laoghaire (Mallin),P662,1,4384_7778018_Txc403D7104-135C-4B1E-AFA9-0A362C5BD707,4384_451 -4367_81482,315,4384_6317,Dun Laoghaire (Mallin),P662,1,4384_7778018_Txc00377212-6624-40AF-B4B3-01F6CC6F9579,4384_451 -4367_81482,278,4384_6318,Dublin Connolly,P744,1,4384_7778018_Txc5A3235FC-409C-4453-BB96-EA516384AD90,4384_452 -4367_81482,319,4384_6321,Dublin Connolly,P744,1,4384_7778018_Txc0D225244-3CEA-49B5-8FCE-40CE4AE65FB7,4384_452 -4367_81482,271,4384_6322,Dublin Connolly,P744,1,4384_7778018_TxcAC12656E-9EF9-4E22-AA10-5C6B0FAFBE35,4384_452 -4367_81482,320,4384_6323,Dublin Connolly,P744,1,4384_7778018_TxcF5BE1AA8-6778-4F9F-81BB-68419782123E,4384_452 -4367_81482,314,4384_6325,Dublin Pearse,P663,1,4384_7778018_TxcE79C4DA5-0294-4CAA-8668-4FB6D0D348D3,4384_449 -4367_81482,315,4384_6326,Dublin Pearse,P663,1,4384_7778018_Txc6D9BC748-2BA0-411B-AC27-024FC493DDF4,4384_449 -4367_81482,278,4384_6327,Clonsilla,P376,1,4384_7778018_Txc5C7CB2B9-5081-4189-9BBE-660139B647FE,4384_444 -4367_81485,316,4384_633,Bray (Daly),E223,1,4384_7778018_TxcFBA67ECB-CB44-450C-9999-6821C1D324BB,4384_6 -4367_81482,319,4384_6330,Clonsilla,P376,1,4384_7778018_Txc9FAC74F3-0FE2-4BA8-B4B0-13347F6FCC94,4384_444 -4367_81482,271,4384_6331,Clonsilla,P376,1,4384_7778018_TxcACE6BCD5-4075-4070-81BA-F4404BF49943,4384_444 -4367_81482,320,4384_6332,Clonsilla,P376,1,4384_7778018_Txc8B70EF36-5079-409A-A49A-60AD92BD8CD2,4384_444 -4367_81482,314,4384_6333,Docklands,P319,1,4384_7778018_TxcA6C6705B-E16D-4F1A-B266-5DC222EC14D1,4384_445 -4367_81482,315,4384_6335,Docklands,P319,1,4384_7778018_Txc5559F9BA-C56F-49D3-AC99-2FA6D614A51F,4384_445 -4367_81482,278,4384_6336,Dublin Connolly,P745,1,4384_7778018_TxcADC6D4DE-911B-40B4-8320-00A96FE370FB,4384_452 -4367_81485,138,4384_634,Bray (Daly),E223,1,4384_7778018_TxcEE577DAD-078C-4CC3-8CBA-7BDAB7E1E6A0,4384_6 -4367_81482,319,4384_6340,Dublin Connolly,P745,1,4384_7778018_Txc31C4D3AA-CF79-4AD2-99DC-ECA01A0E24E1,4384_452 -4367_81482,271,4384_6341,Dublin Connolly,P745,1,4384_7778018_Txc15FFAB3D-E0AE-403E-8F13-326FEEA30472,4384_452 -4367_81482,320,4384_6342,Dublin Connolly,P745,1,4384_7778018_TxcBCD22944-70BD-41E1-85E3-A8F898232D89,4384_452 -4367_81482,23,4384_6343,Clonsilla,P338,1,4384_7778018_TxcEEB8803B-F84D-470A-B8A3-A3E0E1069FEB,4384_444 -4367_81482,316,4384_6345,Clonsilla,P338,1,4384_7778018_Txc71422B34-66E3-4BB9-BE7E-C9AA9937B4B6,4384_444 -4367_81482,138,4384_6346,Clonsilla,P338,1,4384_7778018_Txc5C911410-BD60-42A2-AC67-6B80307992C0,4384_444 -4367_81482,317,4384_6347,Clonsilla,P338,1,4384_7778018_Txc3FB2CBE4-AF8C-4D76-B4D5-8ED26EEDB1A7,4384_444 -4367_81482,318,4384_6348,Clonsilla,P338,1,4384_7778018_TxcC53129BF-BB9A-405B-87B4-0C3C4E50244D,4384_444 -4367_81482,23,4384_6349,Dublin Connolly,P758,1,4384_7778018_Txc29945DC1-668D-4DC6-8B8D-16A7D821EB4E,4384_452 -4367_81485,317,4384_635,Bray (Daly),E223,1,4384_7778018_Txc5F82FDFC-4DCF-4B0E-AC3A-6FFD25987681,4384_6 -4367_81482,316,4384_6350,Dublin Connolly,P758,1,4384_7778018_Txc6924FA97-27BE-401A-B346-A83D1A9580F7,4384_452 -4367_81482,138,4384_6351,Dublin Connolly,P758,1,4384_7778018_Txc27EC4048-B8AA-4B29-9D68-FE1F8C557770,4384_452 -4367_81482,317,4384_6352,Dublin Connolly,P758,1,4384_7778018_Txc8A762369-EB32-4115-B6C6-CD96A49D6AC1,4384_452 -4367_81482,318,4384_6353,Dublin Connolly,P758,1,4384_7778018_Txc08158692-AE9E-42F8-A387-0D840430095F,4384_452 -4367_81482,314,4384_6354,Dublin Connolly,P759,1,4384_7778018_Txc0B099E56-8826-41F6-B0C1-EDDE7FB32FBE,4384_452 -4367_81482,315,4384_6356,Dublin Connolly,P759,1,4384_7778018_Txc57F513C4-47C4-4AD8-A552-E12012023F1D,4384_452 -4367_81482,278,4384_6357,Dublin Connolly,P746,1,4384_7778018_Txc3DD3DAED-E1C6-46CD-88AD-9FA773E2E356,4384_452 -4367_81485,318,4384_636,Bray (Daly),E223,1,4384_7778018_Txc81C34A0A-49B9-4A8F-968D-F7B8AA387346,4384_6 -4367_81482,319,4384_6360,Dublin Connolly,P746,1,4384_7778018_Txc4A921C47-EDD4-4A98-85C4-2BFACA8C9183,4384_452 -4367_81482,271,4384_6361,Dublin Connolly,P746,1,4384_7778018_TxcC9E9E8F4-BAC7-4F94-BA99-4D389CDD0AFE,4384_452 -4367_81482,320,4384_6362,Dublin Connolly,P746,1,4384_7778018_Txc8B75192B-EC6B-461E-A23F-87FC66E2CB1D,4384_452 -4367_81482,23,4384_6364,Dublin Connolly,P759,1,4384_7778018_Txc9838C86B-41A4-40BE-A7A2-DECD8E99F38F,4384_452 -4367_81482,316,4384_6365,Dublin Connolly,P759,1,4384_7778018_TxcAA80DDF5-EC13-4133-8810-CC9BDC7BA245,4384_452 -4367_81482,138,4384_6366,Dublin Connolly,P759,1,4384_7778018_Txc95F03EE6-08A9-41C7-A3C5-5C807C8BA5D5,4384_452 -4367_81482,317,4384_6367,Dublin Connolly,P759,1,4384_7778018_Txc17F97824-2CB1-4DBA-82D5-899089780C27,4384_452 -4367_81482,318,4384_6368,Dublin Connolly,P759,1,4384_7778018_Txc91B23207-83A6-48F9-BA2F-24273A0D00DA,4384_452 -4367_81482,314,4384_6369,Grand Canal Dock,P665,1,4384_7778018_Txc5E86E734-DE3F-4CD5-8A5F-DB98F27371F4,4384_450 -4367_81482,315,4384_6370,Grand Canal Dock,P665,1,4384_7778018_TxcB5B1FC90-DE7F-425D-98D5-58630502E8C2,4384_450 -4367_81482,314,4384_6371,Docklands,P321,1,4384_7778018_Txc96701F45-70A5-4D45-8589-0B6C42DABBF5,4384_445 -4367_81482,278,4384_6372,Clonsilla,P377,1,4384_7778018_TxcBA7598BA-38AB-425E-940C-030FC9B61253,4384_444 -4367_81482,278,4384_6373,Dublin Connolly,P747,1,4384_7778018_Txc640CDCE2-CB2A-47B1-B670-CEE9769FE78D,4384_452 -4367_81482,315,4384_6379,Docklands,P321,1,4384_7778018_Txc4F508D88-D06C-409A-ACAD-3C6AC4C77607,4384_445 -4367_81485,96,4384_638,Lansdowne Road,E553,1,4384_7778018_TxcCD25AB4A-3848-4756-A05F-F71BA1CBD9B0,4384_36 -4367_81482,319,4384_6380,Clonsilla,P377,1,4384_7778018_TxcB238E3E5-899A-4491-97C3-944CA6CB105F,4384_444 -4367_81482,319,4384_6381,Dublin Connolly,P747,1,4384_7778018_Txc201EC4C4-00BE-4349-A619-6AFF0C1CFBE2,4384_452 -4367_81482,271,4384_6382,Clonsilla,P377,1,4384_7778018_TxcB38ECF26-503D-4D25-ACFA-33BFBA29DEF3,4384_444 -4367_81482,271,4384_6383,Dublin Connolly,P747,1,4384_7778018_Txc109E4B42-E4C4-4844-9D51-6ACBA97F02FA,4384_452 -4367_81482,320,4384_6384,Clonsilla,P377,1,4384_7778018_Txc891800D0-6B55-4AA6-BB64-7DC80CAF12EF,4384_444 -4367_81482,320,4384_6385,Dublin Connolly,P747,1,4384_7778018_TxcEBDAE257-3584-4381-B768-EC2BD6ABAB1F,4384_452 -4367_81482,23,4384_6387,Clonsilla,P339,1,4384_7778018_Txc1BBD0BDB-8D6B-4457-9FCB-5169F50DB4AC,4384_444 -4367_81482,316,4384_6389,Clonsilla,P339,1,4384_7778018_TxcA84BF6FD-E741-40BB-B5DF-0CC577A5CE80,4384_444 -4367_81485,214,4384_639,Lansdowne Road,E553,1,4384_7778018_TxcDBD0DB65-ACC0-4DC7-9C0F-9EC5AFD5CAA6,4384_36 -4367_81482,138,4384_6390,Clonsilla,P339,1,4384_7778018_Txc67A4C0B4-6B59-4281-B995-3C9380F8C7B0,4384_444 -4367_81482,317,4384_6391,Clonsilla,P339,1,4384_7778018_Txc39D5A717-B01B-4D8C-A055-8C312B1F3EDE,4384_444 -4367_81482,318,4384_6392,Clonsilla,P339,1,4384_7778018_Txc239923C3-631D-410E-91D6-CA90AF277B6B,4384_444 -4367_81482,23,4384_6393,Dublin Connolly,P760,1,4384_7778018_Txc0634168D-A37B-48FF-BA17-8CC6CB731B38,4384_452 -4367_81482,316,4384_6394,Dublin Connolly,P760,1,4384_7778018_TxcDE3146A8-B08B-44E0-A82A-50401E8607CC,4384_452 -4367_81482,138,4384_6395,Dublin Connolly,P760,1,4384_7778018_Txc540E3672-E96B-4727-930E-F7C0FE859111,4384_452 -4367_81482,317,4384_6396,Dublin Connolly,P760,1,4384_7778018_Txc289B04AD-64BA-4B94-A883-8F0CDD4D3FF6,4384_452 -4367_81482,318,4384_6397,Dublin Connolly,P760,1,4384_7778018_Txc720C8791-8574-4E6F-8AE5-85F1C4719BC8,4384_452 -4367_81482,314,4384_6398,Dublin Connolly,P760,1,4384_7778018_Txc66C94410-BA75-4560-BDB2-C36C0E7A1E01,4384_452 -4367_81485,316,4384_64,Bray (Daly),E202,1,4384_7778018_TxcA53719FC-53C6-450C-B801-31F250FCE431,4384_6 -4367_81482,315,4384_6400,Dublin Connolly,P760,1,4384_7778018_Txc518C981D-1D2F-4136-AD48-ED4D44BF1E52,4384_452 -4367_81482,314,4384_6402,Docklands,P322,1,4384_7778018_Txc0D895FCB-367B-4752-9B27-CA13B4453BD2,4384_445 -4367_81482,278,4384_6403,Dublin Connolly,P748,1,4384_7778018_Txc4B28B609-8EC3-476D-8867-55E22C7DC9C9,4384_452 -4367_81482,315,4384_6407,Docklands,P322,1,4384_7778018_Txc62328A48-D673-46AB-93EF-18CD91BA6789,4384_445 -4367_81482,319,4384_6408,Dublin Connolly,P748,1,4384_7778018_TxcDB6EE0D4-D1C1-4A38-A8C3-EE3C97282BC8,4384_452 -4367_81482,271,4384_6409,Dublin Connolly,P748,1,4384_7778018_Txc18CB32FB-E194-47DA-9E92-5FC03D16FF2A,4384_452 -4367_81482,320,4384_6410,Dublin Connolly,P748,1,4384_7778018_TxcDE80393A-301B-4395-885A-19B296297EA0,4384_452 -4367_81482,314,4384_6411,Dublin Connolly,P761,1,4384_7778018_Txc47505638-82B4-46DD-AC75-3A95B3F503AA,4384_452 -4367_81482,315,4384_6413,Dublin Connolly,P761,1,4384_7778018_TxcA8F0879A-414F-42AB-BFAD-381E38E0DC85,4384_452 -4367_81482,23,4384_6414,Dublin Connolly,P761,1,4384_7778018_TxcD490B31D-B56E-433A-8874-4050ED30FD8B,4384_452 -4367_81482,316,4384_6415,Dublin Connolly,P761,1,4384_7778018_TxcA6D82F0B-2F2C-4174-B0B1-F3E59E639E90,4384_452 -4367_81482,138,4384_6416,Dublin Connolly,P761,1,4384_7778018_Txc26307C7C-CCC5-41D2-8119-6A1A061A5257,4384_452 -4367_81482,317,4384_6417,Dublin Connolly,P761,1,4384_7778018_Txc058FC482-AA8A-4FBB-AC81-040708807667,4384_452 -4367_81482,318,4384_6418,Dublin Connolly,P761,1,4384_7778018_Txc8B062C74-FABC-4D25-A39E-480514A16BAE,4384_452 -4367_81485,314,4384_642,Greystones,E118,1,4384_7778018_TxcFBCB515A-9D91-49FA-9D1D-6822653A7308,4384_1 -4367_81482,314,4384_6420,Docklands,P323,1,4384_7778018_TxcE55B1A3A-4BE9-4B8E-8A13-C1349A038548,4384_445 -4367_81482,315,4384_6421,Docklands,P323,1,4384_7778018_Txc4541112B-AEA5-4632-8200-D3E8B9A905C7,4384_445 -4367_81482,23,4384_6422,Clonsilla,P340,1,4384_7778018_Txc99A47B22-C0AC-4BCE-B080-DA65D2370504,4384_444 -4367_81482,316,4384_6424,Clonsilla,P340,1,4384_7778018_Txc9E34FB14-914C-46D3-B987-6023D7FD94ED,4384_444 -4367_81482,138,4384_6425,Clonsilla,P340,1,4384_7778018_Txc8D6067EA-267C-4C07-875B-07DDAF7D1C2A,4384_444 -4367_81482,317,4384_6426,Clonsilla,P340,1,4384_7778018_Txc30DBEB5F-67DF-4B41-840A-0CFF2D3CBF8F,4384_444 -4367_81482,318,4384_6427,Clonsilla,P340,1,4384_7778018_Txc2AD44476-048B-4840-B5DD-8E7DB9F39092,4384_444 -4367_81482,278,4384_6428,Clonsilla,P378,1,4384_7778018_TxcB7F54C69-109C-4968-9401-8894C0DA4A72,4384_444 -4367_81482,319,4384_6431,Clonsilla,P378,1,4384_7778018_Txc368D4B4F-4427-467B-A498-B2B13CE1EE64,4384_444 -4367_81482,271,4384_6432,Clonsilla,P378,1,4384_7778018_Txc690CB42C-965D-4645-85E7-080003DCA861,4384_444 -4367_81482,320,4384_6433,Clonsilla,P378,1,4384_7778018_Txc80093851-BE0D-4434-95E7-7321FAE1A539,4384_444 -4367_81482,314,4384_6434,Dublin Connolly,P762,1,4384_7778018_Txc9359D3CF-189B-476C-A213-652EE468B4AE,4384_452 -4367_81482,315,4384_6436,Dublin Connolly,P762,1,4384_7778018_TxcB9EA8F2A-B3A1-4BF5-92F4-893C235FE068,4384_452 -4367_81482,278,4384_6437,Dublin Connolly,P749,1,4384_7778018_TxcAE591A28-C984-44E8-A11B-1A3966E00A94,4384_452 -4367_81482,319,4384_6440,Dublin Connolly,P749,1,4384_7778018_TxcE64B7B62-D573-45AC-8AA5-B79B0147FA62,4384_452 -4367_81482,271,4384_6441,Dublin Connolly,P749,1,4384_7778018_TxcD035BA49-CFBB-42B9-935C-8313CB53E5FB,4384_452 -4367_81482,320,4384_6442,Dublin Connolly,P749,1,4384_7778018_Txc7EF99CAD-0464-48EA-9497-D0F65A34D671,4384_452 -4367_81482,23,4384_6443,Dublin Connolly,P762,1,4384_7778018_Txc84F54CC6-C4BF-40BE-A7D7-C980723F9DFA,4384_452 -4367_81482,316,4384_6444,Dublin Connolly,P762,1,4384_7778018_Txc79FF57B7-7E23-4AE7-8E37-1C3D304C284B,4384_452 -4367_81482,138,4384_6445,Dublin Connolly,P762,1,4384_7778018_Txc54A853F9-BA5A-43EF-8D2D-87E9844B36F4,4384_452 -4367_81482,317,4384_6446,Dublin Connolly,P762,1,4384_7778018_TxcC1D323A4-CB5D-4E0A-B5FC-1B712EB04444,4384_452 -4367_81482,318,4384_6447,Dublin Connolly,P762,1,4384_7778018_TxcAD893CE9-0607-4EAF-A740-BB39A85A6ECA,4384_452 -4367_81482,314,4384_6448,Docklands,P324,1,4384_7778018_Txc706E6D82-6F72-4A3F-952C-91B24556CBAB,4384_445 -4367_81482,278,4384_6449,Dublin Connolly,P750,1,4384_7778018_Txc6F10B446-E553-415E-B9E5-A15F16175A61,4384_452 -4367_81485,315,4384_645,Greystones,E118,1,4384_7778018_TxcAC47E4C7-0741-44C9-B7A7-CF7542AD857C,4384_1 -4367_81482,315,4384_6453,Docklands,P324,1,4384_7778018_Txc94452A0C-B45C-402A-B67F-3A2ECE68DF6F,4384_445 -4367_81482,319,4384_6454,Dublin Connolly,P750,1,4384_7778018_Txc4EE66F78-5C5C-4BF9-A4F6-460AFF560F22,4384_452 -4367_81482,271,4384_6455,Dublin Connolly,P750,1,4384_7778018_Txc4C43F7AD-24ED-485E-8C20-86A087D3A11F,4384_452 -4367_81482,320,4384_6456,Dublin Connolly,P750,1,4384_7778018_Txc9D30F5FA-ED2D-49E4-BE3A-7267E1B4D8BB,4384_452 -4367_81482,23,4384_6457,Dublin Connolly,P763,1,4384_7778018_Txc98B685A3-9134-49AE-97B1-6CC5001EC2F7,4384_452 -4367_81482,316,4384_6458,Dublin Connolly,P763,1,4384_7778018_Txc8DB92F48-C040-493C-97FE-7070BE13D510,4384_452 -4367_81482,138,4384_6459,Dublin Connolly,P763,1,4384_7778018_TxcE4030BB6-092C-4653-89F0-600F8A24B2B3,4384_452 -4367_81485,278,4384_646,Bray (Daly),E216,1,4384_7778018_Txc5AEE4406-F6BA-4208-911B-D0325905B6B3,4384_7 -4367_81482,317,4384_6460,Dublin Connolly,P763,1,4384_7778018_TxcF426A34C-3D06-4A76-B46C-A2FDA7C1A416,4384_452 -4367_81482,318,4384_6461,Dublin Connolly,P763,1,4384_7778018_TxcBDC6E5FC-4F65-4E41-AF2C-457408B0D9F7,4384_452 -4367_81482,314,4384_6462,Dublin Connolly,P763,1,4384_7778018_Txc52C756C0-264D-4559-982F-C0DD04B08180,4384_452 -4367_81482,315,4384_6464,Dublin Connolly,P763,1,4384_7778018_Txc655914AE-FE17-4C51-8E6A-5D368818E50E,4384_452 -4367_81482,314,4384_6465,Docklands,P325,1,4384_7778018_Txc7F3BD34C-2279-40B8-AF09-E7E55F119779,4384_445 -4367_81482,278,4384_6466,Clonsilla,P379,1,4384_7778018_Txc935D3B77-CF42-4C03-B5BF-EB045A8DF22A,4384_444 -4367_81482,278,4384_6467,Dublin Connolly,P751,1,4384_7778018_TxcF450334A-28BC-404A-8244-ED705493D663,4384_452 -4367_81482,315,4384_6473,Docklands,P325,1,4384_7778018_Txc96E16612-6337-4DD0-AFF0-D82A79B1EE86,4384_445 -4367_81482,319,4384_6474,Clonsilla,P379,1,4384_7778018_TxcC908233F-3EDB-4312-BAD9-65B6B9EDE2E3,4384_444 -4367_81482,319,4384_6475,Dublin Connolly,P751,1,4384_7778018_Txc11E3366B-A87B-4E4E-80AC-0D20224D3069,4384_452 -4367_81482,271,4384_6476,Clonsilla,P379,1,4384_7778018_Txc71042137-A58C-4640-BB01-127E0865B56C,4384_444 -4367_81482,271,4384_6477,Dublin Connolly,P751,1,4384_7778018_Txc62A921B1-82E2-4816-82DD-27006F047E2F,4384_452 -4367_81482,320,4384_6478,Clonsilla,P379,1,4384_7778018_Txc8983BEB6-C2C0-466F-AB85-E5640813248E,4384_444 -4367_81482,320,4384_6479,Dublin Connolly,P751,1,4384_7778018_Txc0241A281-DFB6-4892-B716-F6519BF2E29E,4384_452 -4367_81482,314,4384_6480,Dublin Connolly,P764,1,4384_7778018_Txc6B4D8740-AAAB-4DB3-9BF0-5246AEE7D287,4384_452 -4367_81482,315,4384_6482,Dublin Connolly,P764,1,4384_7778018_Txc9579CAC7-5179-45E9-B908-69B7FB814D0A,4384_452 -4367_81482,23,4384_6483,Clonsilla,P341,1,4384_7778018_Txc1A66035B-4AD4-4DF1-9C9C-D5B2CF92123B,4384_444 -4367_81482,316,4384_6485,Clonsilla,P341,1,4384_7778018_Txc95ECE0E0-7056-4EC2-A48F-D54AE76DDF18,4384_444 -4367_81482,138,4384_6486,Clonsilla,P341,1,4384_7778018_Txc587D7BA9-0632-404A-932C-AD139BB7236A,4384_444 -4367_81482,317,4384_6487,Clonsilla,P341,1,4384_7778018_Txc246BAC1D-8D81-4420-BC5D-3EE0A630901E,4384_444 -4367_81482,318,4384_6488,Clonsilla,P341,1,4384_7778018_TxcF7EF14CD-752A-496B-A814-37EFDBC9D18F,4384_444 -4367_81482,23,4384_6489,Dublin Connolly,P764,1,4384_7778018_Txc10E5DDAB-E8D3-4F88-B0FC-A8B014B5F6AF,4384_452 -4367_81485,319,4384_649,Bray (Daly),E216,1,4384_7778018_Txc194AF49E-18AF-4E33-985C-C6B64B9F0ACE,4384_7 -4367_81482,316,4384_6490,Dublin Connolly,P764,1,4384_7778018_Txc54C48962-90D7-494D-A826-F91DBF683624,4384_452 -4367_81482,138,4384_6491,Dublin Connolly,P764,1,4384_7778018_Txc8C1052AB-44C8-402D-8446-09A6DA7B4731,4384_452 -4367_81482,317,4384_6492,Dublin Connolly,P764,1,4384_7778018_Txc35CD6F24-1616-4E8F-B489-4EBF9AB39A19,4384_452 -4367_81482,318,4384_6493,Dublin Connolly,P764,1,4384_7778018_TxcACCF19B3-1BFC-488C-99BB-034C9364522E,4384_452 -4367_81482,314,4384_6495,Dublin Connolly,P765,1,4384_7778018_TxcBAEA1237-396B-47B8-8AB4-8FCC9CAA2487,4384_452 -4367_81482,315,4384_6497,Dublin Connolly,P765,1,4384_7778018_Txc6AE8994F-04A5-4FE8-823C-2287FB844328,4384_452 -4367_81482,314,4384_6498,Dublin Connolly,P782,1,4384_7778018_TxcFFA7DAF5-5E0E-4234-9AE2-2772B9BA98BF,4384_454 -4367_81485,138,4384_65,Bray (Daly),E202,1,4384_7778018_Txc9F76735B-A35A-4BE4-ACB4-5CF5FC300349,4384_6 -4367_81485,271,4384_650,Bray (Daly),E216,1,4384_7778018_TxcEA3B346D-4039-4ECD-834D-5108C45C54E5,4384_7 -4367_81482,315,4384_6501,Dublin Connolly,P782,1,4384_7778018_Txc4BDD287F-50A6-43D8-9FA4-E74328E4A765,4384_454 -4367_81482,278,4384_6502,Dublin Connolly,P752,1,4384_7778018_TxcEF893D80-FDE9-493D-B205-504F1A8BC49A,4384_452 -4367_81482,319,4384_6505,Dublin Connolly,P752,1,4384_7778018_Txc360A0D46-3288-4000-8637-152574A7E659,4384_452 -4367_81482,271,4384_6506,Dublin Connolly,P752,1,4384_7778018_Txc99F18753-C325-47BA-B719-C8A26DCF0058,4384_452 -4367_81482,320,4384_6507,Dublin Connolly,P752,1,4384_7778018_Txc59D17888-E0EF-4503-BAC8-31F6442DEDFD,4384_452 -4367_81482,23,4384_6508,Dublin Connolly,P765,1,4384_7778018_Txc9B89CA3A-B8DC-4831-BB2E-E3AC4A524DA8,4384_452 -4367_81482,316,4384_6509,Dublin Connolly,P765,1,4384_7778018_Txc1BD491EA-011C-4DDF-8109-9DD30B6FB5DE,4384_452 -4367_81485,320,4384_651,Bray (Daly),E216,1,4384_7778018_TxcA7B6B868-883D-4084-BC68-F6B19B5DA9C5,4384_7 -4367_81482,138,4384_6510,Dublin Connolly,P765,1,4384_7778018_Txc6959CC3C-520E-4547-82CD-0EB1530926D0,4384_452 -4367_81482,317,4384_6511,Dublin Connolly,P765,1,4384_7778018_Txc59C83F4F-DCE1-41A6-9825-22FAF1CB67EB,4384_452 -4367_81482,318,4384_6512,Dublin Connolly,P765,1,4384_7778018_Txc0DAFB9C5-8D4F-46DF-85D4-288EA1DEC94E,4384_452 -4367_81482,314,4384_6513,Dublin Connolly,P766,1,4384_7778018_TxcFB447E65-558F-459D-8C28-D0B9D5139075,4384_452 -4367_81482,315,4384_6515,Dublin Connolly,P766,1,4384_7778018_TxcEE2E8D7A-E53F-4FCE-8B65-A11D4BC17A13,4384_452 -4367_81482,278,4384_6516,Clonsilla,P380,1,4384_7778018_Txc198E0C05-8486-449F-B2A3-8B25537FEF4B,4384_444 -4367_81482,319,4384_6519,Clonsilla,P380,1,4384_7778018_TxcB4D063B0-BF59-4728-9373-FEF327FD654C,4384_444 -4367_81482,271,4384_6520,Clonsilla,P380,1,4384_7778018_Txc1342721F-A509-47B5-9713-D4FB091B1D6C,4384_444 -4367_81482,320,4384_6521,Clonsilla,P380,1,4384_7778018_Txc2A0A7DB2-CC09-47B6-81C7-1292A84563A8,4384_444 -4367_81482,314,4384_6523,Grand Canal Dock,P667,1,4384_7778018_Txc6AFCA924-9883-4510-BC33-14E8EE16B1CA,4384_450 -4367_81482,315,4384_6524,Grand Canal Dock,P667,1,4384_7778018_TxcE66AA889-9FC5-4997-9C02-7CBAC8E3CCEC,4384_450 -4367_81482,23,4384_6525,Clonsilla,P342,1,4384_7778018_TxcA4EDC9CA-53E5-41E8-9B97-E8DBB635D495,4384_444 -4367_81482,314,4384_6526,Dublin Connolly,P783,1,4384_7778018_TxcC549FFAC-546A-4126-A52D-70CA3315981B,4384_454 -4367_81482,316,4384_6531,Clonsilla,P342,1,4384_7778018_Txc6E1B283A-DB89-42E8-B161-705C49967683,4384_444 -4367_81482,315,4384_6532,Dublin Connolly,P783,1,4384_7778018_Txc8A9B0F93-32A7-4DC6-96A5-684E098B595A,4384_454 -4367_81482,138,4384_6533,Clonsilla,P342,1,4384_7778018_Txc6754F0DF-3F14-4417-B516-B5F383799E74,4384_444 -4367_81482,317,4384_6534,Clonsilla,P342,1,4384_7778018_Txc4C329CDD-01A0-4D80-9C27-BCE3BB07BAFB,4384_444 -4367_81482,318,4384_6535,Clonsilla,P342,1,4384_7778018_TxcD8D04CCC-F368-4296-A86D-FFF6922F8925,4384_444 -4367_81482,23,4384_6537,Dublin Connolly,P766,1,4384_7778018_Txc2CD1E1F9-8A84-43B1-8D97-A30A6243D029,4384_452 -4367_81482,278,4384_6538,Dublin Connolly,P753,1,4384_7778018_TxcBDE986DA-F851-410C-B30C-21FAC23D5A42,4384_455 -4367_81482,316,4384_6540,Dublin Connolly,P766,1,4384_7778018_Txc60F54A0E-1C5E-4C8C-AE0F-0FABC63F4D28,4384_452 -4367_81482,319,4384_6541,Dublin Connolly,P753,1,4384_7778018_Txc8CA65214-293D-41FB-B747-38BA4EE41F4D,4384_455 -4367_81482,138,4384_6542,Dublin Connolly,P766,1,4384_7778018_Txc73826750-B6CD-4F19-948C-260477572EC9,4384_452 -4367_81482,317,4384_6543,Dublin Connolly,P766,1,4384_7778018_Txc348E0B31-A414-4A61-94B9-C771C1898CC8,4384_452 -4367_81482,318,4384_6544,Dublin Connolly,P766,1,4384_7778018_Txc2903D57C-2489-46D9-80A7-42D18297FD82,4384_452 -4367_81482,271,4384_6545,Dublin Connolly,P753,1,4384_7778018_Txc1D402088-D36C-4005-B55F-040F6C0C69AE,4384_455 -4367_81482,320,4384_6546,Dublin Connolly,P753,1,4384_7778018_TxcF2AC8747-3B35-4691-AFBC-15660556CEC2,4384_455 -4367_81482,314,4384_6548,Clonsilla,P329,1,4384_7778018_Txc1D96BD74-D78F-4F0C-BF39-31DBAF8884EE,4384_444 -4367_81482,315,4384_6549,Clonsilla,P329,1,4384_7778018_Txc8881F3FF-C0F4-4DD6-97B1-BD5B28A1E430,4384_444 -4367_81485,23,4384_655,Bray (Daly),E224,1,4384_7778018_Txc6C420942-1376-4BEA-9715-3F8BA047DC06,4384_7 -4367_81482,314,4384_6550,Dublin Connolly,P767,1,4384_7778018_Txc5184EF79-4029-4A52-BD2B-C34CCEA9F7B2,4384_452 -4367_81482,315,4384_6551,Dublin Connolly,P767,1,4384_7778018_Txc278A925E-890F-490B-AE7A-D30CBC9A4863,4384_452 -4367_81482,23,4384_6553,Dublin Connolly,P767,1,4384_7778018_TxcCB135DD1-04F2-434C-A4E2-B6B9B2E0F239,4384_452 -4367_81482,316,4384_6554,Dublin Connolly,P767,1,4384_7778018_TxcFB5D4412-D8C1-47C2-BE63-BDD6B1AB1CAE,4384_452 -4367_81482,138,4384_6555,Dublin Connolly,P767,1,4384_7778018_TxcF023DE41-C16B-4F80-961B-8C73336D9AB0,4384_452 -4367_81482,317,4384_6556,Dublin Connolly,P767,1,4384_7778018_Txc9181C79A-998D-4C9D-9537-C6478520455E,4384_452 -4367_81482,318,4384_6557,Dublin Connolly,P767,1,4384_7778018_TxcF020FB25-8A48-4260-BC3F-730814BE85D4,4384_452 -4367_81482,278,4384_6558,Clonsilla,P381,1,4384_7778018_TxcD15FA601-6DAB-4F11-97F3-0D2B3D804EC4,4384_444 -4367_81482,278,4384_6559,Dublin Connolly,P754,1,4384_7778018_Txc5868F4C2-974A-4AFA-AE05-6B1480DCFB4D,4384_452 -4367_81482,319,4384_6564,Clonsilla,P381,1,4384_7778018_Txc8B9FB624-1856-44AB-AD85-99A813866440,4384_444 -4367_81482,319,4384_6565,Dublin Connolly,P754,1,4384_7778018_Txc06F40916-F2AE-48B7-8622-21DA874FE7B0,4384_452 -4367_81482,271,4384_6566,Clonsilla,P381,1,4384_7778018_Txc995B9383-2EFE-4C43-A4DE-8EE0FDB0AFC4,4384_444 -4367_81482,271,4384_6567,Dublin Connolly,P754,1,4384_7778018_Txc18D030F4-C673-4D1D-A5FF-F4136A3845A9,4384_452 -4367_81482,320,4384_6568,Clonsilla,P381,1,4384_7778018_Txc6D43E55E-4715-4FA6-99AA-DA21D38EC2EC,4384_444 -4367_81482,320,4384_6569,Dublin Connolly,P754,1,4384_7778018_TxcCBF9E534-1C49-4609-92A3-DD3A674EAF12,4384_452 -4367_81482,23,4384_6570,Clonsilla,P343,1,4384_7778018_Txc1D9334E4-B791-491C-AD3D-B6E3641C2F65,4384_444 -4367_81482,316,4384_6572,Clonsilla,P343,1,4384_7778018_TxcC662031F-914F-482A-9B4B-C21209E92EFE,4384_444 -4367_81482,138,4384_6573,Clonsilla,P343,1,4384_7778018_TxcF8A1F1B0-7308-4B9A-96A7-D7B868D84C63,4384_444 -4367_81482,317,4384_6574,Clonsilla,P343,1,4384_7778018_TxcCBBC7B0F-FAA2-4863-8D52-0D801394408B,4384_444 -4367_81482,318,4384_6575,Clonsilla,P343,1,4384_7778018_TxcC3B6195F-A3F3-4B5C-A977-196FEC4A03E0,4384_444 -4367_81482,314,4384_6576,Clonsilla,P330,1,4384_7778018_Txc98FD7048-32AC-487C-8798-45A6FB77BCEA,4384_444 -4367_81482,315,4384_6577,Clonsilla,P330,1,4384_7778018_Txc0D229A8B-5C40-4704-95A1-DA853C1785D4,4384_444 -4367_81482,23,4384_6578,Dublin Connolly,P768,1,4384_7778018_Txc070F9D63-4030-4650-A482-6579E4506599,4384_452 -4367_81485,316,4384_658,Bray (Daly),E224,1,4384_7778018_Txc4EF583D0-0077-4B00-980D-F1122AD89C2A,4384_7 -4367_81482,316,4384_6580,Dublin Connolly,P768,1,4384_7778018_Txc939FBCA6-B6C3-4E36-8D2B-158DD1DC6022,4384_452 -4367_81482,138,4384_6581,Dublin Connolly,P768,1,4384_7778018_Txc98D4676B-8630-4AA3-A731-7CCA3D6F9F7B,4384_452 -4367_81482,317,4384_6582,Dublin Connolly,P768,1,4384_7778018_TxcF0FD3C66-EC1F-4D03-BF7E-87FB5A37F3D6,4384_452 -4367_81482,318,4384_6583,Dublin Connolly,P768,1,4384_7778018_Txc8A77B26D-6971-4DDE-AD6A-A94B8C47E2A2,4384_452 -4367_81482,314,4384_6584,Grand Canal Dock,P668,1,4384_7778018_Txc5AD720D2-B6A0-49EB-8B09-F4C5D626B002,4384_450 -4367_81482,315,4384_6589,Grand Canal Dock,P668,1,4384_7778018_Txc80E8B9AB-CAAB-4EFE-9DDA-967AC38691A4,4384_450 -4367_81485,138,4384_659,Bray (Daly),E224,1,4384_7778018_TxcBA257B74-8DD4-4E72-BF6C-EC369952BCFA,4384_7 -4367_81482,23,4384_6593,Clonsilla,P344,1,4384_7778018_Txc8CB9684C-A0CB-40B4-B113-2D518553E321,4384_444 -4367_81482,23,4384_6594,Dublin Connolly,P769,1,4384_7778018_Txc0984EB74-0E24-4161-8E85-96FE26B40E04,4384_452 -4367_81482,316,4384_6596,Clonsilla,P344,1,4384_7778018_Txc21EE870F-FBA4-4FE9-B9C3-F9F7EAA33052,4384_444 -4367_81482,316,4384_6597,Dublin Connolly,P769,1,4384_7778018_Txc1F47FF49-2EBE-4452-AF7C-EBEED3258DB9,4384_452 -4367_81482,138,4384_6598,Dublin Connolly,P769,1,4384_7778018_Txc02EB0ABF-673C-42C4-9F1C-19868DBA3F82,4384_452 -4367_81482,138,4384_6599,Clonsilla,P344,1,4384_7778018_Txc7BFD5E68-8E7D-4EE9-96DD-7DECF4AEF18C,4384_444 -4367_81485,317,4384_66,Bray (Daly),E202,1,4384_7778018_Txc0E418DEC-9AED-40C5-9C44-DAA6751F07D0,4384_6 -4367_81485,317,4384_660,Bray (Daly),E224,1,4384_7778018_Txc06FB2D3C-FC57-4DF4-936D-478B58A64941,4384_7 -4367_81482,317,4384_6600,Dublin Connolly,P769,1,4384_7778018_TxcC5A630C3-F2FE-4112-8DB0-FEDDF6398E4A,4384_452 -4367_81482,317,4384_6601,Clonsilla,P344,1,4384_7778018_Txc62618B56-0D71-49D9-BCEA-2E7E92A48E67,4384_444 -4367_81482,318,4384_6602,Dublin Connolly,P769,1,4384_7778018_Txc6AE45AE8-E38E-4020-BAB8-EF79B8BEF091,4384_452 -4367_81482,318,4384_6603,Clonsilla,P344,1,4384_7778018_Txc7968C8D0-05D4-4B3B-AAAE-4E287EF97BF8,4384_444 -4367_81482,314,4384_6604,Grand Canal Dock,P669,1,4384_7778018_Txc84D3C845-CF1B-4A25-BF4C-38B8E1073CBC,4384_450 -4367_81482,315,4384_6609,Grand Canal Dock,P669,1,4384_7778018_TxcCE42BBEE-7FB8-47EE-9A8D-E2EDEDEBD5D4,4384_450 -4367_81485,318,4384_661,Bray (Daly),E224,1,4384_7778018_Txc371A1D43-D8D1-4A81-BF7A-745CF63176EB,4384_7 -4367_81482,278,4384_6610,Clonsilla,P382,1,4384_7778018_Txc710A322D-32D8-4182-A1D3-D7C86B71FC6A,4384_444 -4367_81482,278,4384_6611,Dublin Connolly,P755,1,4384_7778018_TxcEB3D8127-0AB1-4DDC-B7BA-6C255DC31C00,4384_452 -4367_81482,319,4384_6617,Clonsilla,P382,1,4384_7778018_Txc8487ECD8-2EE6-47CA-BCF3-E91F4AC86C55,4384_444 -4367_81482,319,4384_6618,Dublin Connolly,P755,1,4384_7778018_TxcF7610D28-01F8-417A-863B-583D3CA59ED8,4384_452 -4367_81482,271,4384_6619,Clonsilla,P382,1,4384_7778018_Txc81C769AF-4D05-4AAE-8B7D-67E05961E88E,4384_444 -4367_81485,314,4384_662,Bray (Daly),E236,1,4384_7778018_TxcBBF98101-E21F-4094-B3C5-5F49F3CD034C,4384_6 -4367_81482,271,4384_6620,Dublin Connolly,P755,1,4384_7778018_Txc8D311CDA-66C2-4B84-9356-81422CABA463,4384_452 -4367_81482,320,4384_6621,Clonsilla,P382,1,4384_7778018_Txc66580096-4030-4739-95AD-2ECCF96782D3,4384_444 -4367_81482,320,4384_6622,Dublin Connolly,P755,1,4384_7778018_Txc5B25A53D-CD20-44D9-9614-82CCFE2F9F75,4384_452 -4367_81482,314,4384_6623,Clonsilla,P331,1,4384_7778018_Txc3504D4FC-26D0-41FC-A9EA-3A36FFC0E18C,4384_444 -4367_81482,315,4384_6624,Clonsilla,P331,1,4384_7778018_Txc506D9113-3632-4ADE-8F6E-509237D16B14,4384_444 -4367_81482,23,4384_6629,Clonsilla,P345,1,4384_7778018_Txc58AA4844-B9FA-43D8-9A5E-8B3C85D4A674,4384_444 -4367_81482,23,4384_6630,Dublin Connolly,P771,1,4384_7778018_Txc2E40FCEA-4540-4D34-A853-8AE98AC44BD4,4384_452 -4367_81482,316,4384_6632,Clonsilla,P345,1,4384_7778018_Txc9A3BD8DB-FFE7-4C01-8099-2EA13B608875,4384_444 -4367_81482,316,4384_6633,Dublin Connolly,P771,1,4384_7778018_TxcFB27240E-3915-4E68-BE85-B21679A04BEE,4384_452 -4367_81482,317,4384_6634,Dublin Connolly,P771,1,4384_7778018_Txc39BC7D0D-2A81-4431-9439-8B4497E306CA,4384_452 -4367_81482,317,4384_6635,Clonsilla,P345,1,4384_7778018_TxcE84FFAA0-E5FC-4702-A066-975E4C8D2AFD,4384_444 -4367_81482,331,4384_6636,Dublin Connolly,P771,1,4384_7778018_TxcE76CBDA3-72D3-4F0E-8214-5D621265AA1E,4384_452 -4367_81482,331,4384_6637,Clonsilla,P345,1,4384_7778018_Txc4B183DB8-6300-4656-8023-8A85F414EA84,4384_444 -4367_81482,314,4384_6638,Clonsilla,P333,1,4384_7778018_Txc4F7A9038-BAEA-483D-BCA6-5A32636FA3BD,4384_444 -4367_81482,278,4384_6639,Clonsilla,P383,1,4384_7778018_Txc80F70B64-7F74-4E1C-894C-A7F83C1F4313,4384_446 -4367_81482,278,4384_6640,Dublin Connolly,P756,1,4384_7778018_TxcC15CE68A-553F-4C34-9D67-AD97F033E699,4384_452 -4367_81482,315,4384_6646,Clonsilla,P333,1,4384_7778018_TxcB945AD14-E271-48A5-B58B-F395769D6F52,4384_444 -4367_81482,319,4384_6647,Clonsilla,P383,1,4384_7778018_Txc1E14A892-84A2-484F-A062-8174CA64C95E,4384_446 -4367_81482,319,4384_6648,Dublin Connolly,P756,1,4384_7778018_TxcD764274D-BC4D-498C-A5AD-0F9CF37A0E9D,4384_452 -4367_81482,271,4384_6649,Clonsilla,P383,1,4384_7778018_Txc02A27078-94D8-49C6-BD9B-A239000CAAE6,4384_446 -4367_81482,271,4384_6650,Dublin Connolly,P756,1,4384_7778018_Txc84B59A1D-72B0-495C-906E-656A3711C048,4384_452 -4367_81482,320,4384_6651,Clonsilla,P383,1,4384_7778018_TxcFC7D9B0C-1204-4E4C-9FEE-D1F3CFE08384,4384_446 -4367_81482,320,4384_6652,Dublin Connolly,P756,1,4384_7778018_TxcEAA389BA-5A8B-4216-97C1-4DA361323753,4384_452 -4367_81482,314,4384_6654,Grand Canal Dock,P670,1,4384_7778018_TxcED530954-18B7-4821-A6A3-D3F7C28C249E,4384_450 -4367_81482,315,4384_6655,Grand Canal Dock,P670,1,4384_7778018_Txc342B460D-5086-4687-AB29-8C3DAC7E7316,4384_450 -4367_81482,314,4384_6658,Clonsilla,P335,1,4384_7778018_TxcFEC58501-7B6A-4A96-842C-77501D84D451,4384_444 -4367_81482,23,4384_6659,Clonsilla,P346,1,4384_7778018_Txc25382B19-B02E-405E-93FD-0397FE9D8471,4384_444 -4367_81485,315,4384_666,Bray (Daly),E236,1,4384_7778018_Txc99928816-6FF5-4CF7-A636-66A69A8F1B23,4384_6 -4367_81482,278,4384_6660,Clonsilla,P384,1,4384_7778018_Txc0C9180EB-E27B-4A89-8A3A-E4778CE00131,4384_446 -4367_81482,23,4384_6661,Dublin Connolly,P773,1,4384_7778018_Txc197267B2-EB8C-462C-B84C-026E68FA158E,4384_452 -4367_81482,278,4384_6662,Dublin Connolly,P757,1,4384_7778018_Txc4CA43626-7D60-4666-9168-CDE5620126EB,4384_452 -4367_81482,315,4384_6669,Clonsilla,P335,1,4384_7778018_Txc81374543-275B-40DC-AB24-907BE26077AA,4384_444 -4367_81482,316,4384_6670,Clonsilla,P346,1,4384_7778018_Txc5029C243-9A78-45B2-B7BE-06F85EECE28D,4384_444 -4367_81482,319,4384_6671,Clonsilla,P384,1,4384_7778018_Txc136B3A25-50C6-43C5-95DF-0FF90E3F856F,4384_446 -4367_81482,316,4384_6672,Dublin Connolly,P773,1,4384_7778018_Txc633B8058-9516-445A-989B-F419895A0FAA,4384_452 -4367_81482,319,4384_6673,Dublin Connolly,P757,1,4384_7778018_Txc3136CFD0-D806-4C18-8DF3-E4BFE700C257,4384_452 -4367_81482,317,4384_6674,Dublin Connolly,P773,1,4384_7778018_TxcDF0BC39E-8E80-4CAA-9196-ABC04D3608AC,4384_452 -4367_81482,317,4384_6675,Clonsilla,P346,1,4384_7778018_Txc26D55223-6167-4238-8456-26974EF18376,4384_444 -4367_81482,331,4384_6676,Dublin Connolly,P773,1,4384_7778018_Txc1B014C99-253A-4183-9202-B7C50500192D,4384_452 -4367_81482,331,4384_6677,Clonsilla,P346,1,4384_7778018_TxcAF86B612-B099-44F9-A8E2-5FFBFD175BB6,4384_444 -4367_81482,271,4384_6678,Clonsilla,P384,1,4384_7778018_Txc2641865B-1276-4FAF-842A-2D2D3E42F330,4384_446 -4367_81482,271,4384_6679,Dublin Connolly,P757,1,4384_7778018_Txc795F95EB-7BE1-4025-BDA0-F0F63782A8B7,4384_452 -4367_81485,278,4384_668,Greystones,E117,1,4384_7778018_Txc4235BBAF-2E0E-4779-87A0-1DBD092554C4,4384_2 -4367_81482,320,4384_6680,Clonsilla,P384,1,4384_7778018_TxcF9445ED3-2959-48D8-9875-344F9970AAA0,4384_446 -4367_81482,320,4384_6681,Dublin Connolly,P757,1,4384_7778018_Txc04BB20FD-BC16-4F86-BC63-088E8091C240,4384_452 -4367_81482,314,4384_6682,Dublin Connolly,P768,1,4384_7778018_TxcD4A9537A-AD3C-4E2F-8C51-CB2672F9B974,4384_452 -4367_81482,315,4384_6684,Dublin Connolly,P768,1,4384_7778018_Txc2A8F050C-3480-440E-973A-6E139B3A09B3,4384_452 -4367_81482,314,4384_6696,Maynooth,D900,0,4384_7778018_Txc556FBB35-FC66-4CFB-8F8A-AD752C2DD535,4384_467 -4367_81482,315,4384_6697,Maynooth,D900,0,4384_7778018_Txc856FAF3F-F13D-4300-AD12-888C57CECB9A,4384_467 -4367_81482,23,4384_6699,Maynooth,D900,0,4384_7778018_TxcF27C8D9B-26A1-4221-9FD4-CD013D5E4E76,4384_467 -4367_81485,318,4384_67,Bray (Daly),E202,1,4384_7778018_TxcF5710F47-E8C5-4D53-8E5F-8C688E024390,4384_6 -4367_81482,316,4384_6701,Maynooth,D900,0,4384_7778018_TxcFF47CC35-0F14-4673-B1D5-4CE1FFE1F6CC,4384_467 -4367_81482,138,4384_6702,Maynooth,D900,0,4384_7778018_Txc8083FA02-02AD-42E8-92B3-A70E43104C9D,4384_467 -4367_81482,318,4384_6703,Maynooth,D900,0,4384_7778018_TxcA9730676-436E-48FE-AEFC-EE7B29B54A6D,4384_467 -4367_81482,314,4384_6704,Maynooth,D901,0,4384_7778018_Txc57914D0D-DFB6-4662-ACC5-1ABD56D149F8,4384_467 -4367_81485,319,4384_671,Greystones,E117,1,4384_7778018_Txc83427CC8-BFDB-4EDE-902F-3B02A82EB1C7,4384_2 -4367_81482,315,4384_6710,Maynooth,D901,0,4384_7778018_Txc61CB75F3-F975-492E-8539-85D4D6ABD64F,4384_467 -4367_81482,314,4384_6713,M3 Parkway,D300,0,4384_7778018_Txc7FDA9D39-1FE5-4711-A46D-039DFBD8D6F7,4384_463 -4367_81482,315,4384_6714,M3 Parkway,D300,0,4384_7778018_Txc81AB4791-CD4B-42D1-9554-6B6D04C1FE25,4384_463 -4367_81482,314,4384_6716,Maynooth,D902,0,4384_7778018_TxcB753B496-CAE0-4286-916E-484FC2431DF8,4384_467 -4367_81482,315,4384_6717,Maynooth,D902,0,4384_7778018_Txc8C5743F4-F727-4028-A9BA-9880D8C24BB7,4384_467 -4367_81485,271,4384_672,Greystones,E117,1,4384_7778018_Txc9782CAB9-8DA3-4D7B-91E8-5526A03A3E91,4384_2 -4367_81482,23,4384_6720,Maynooth,D902,0,4384_7778018_Txc613AC0AD-C459-4EC9-A5F7-1C49C057F4E6,4384_467 -4367_81482,316,4384_6722,Maynooth,D902,0,4384_7778018_TxcA5EA81F9-990A-4315-BDB1-F6998489F5CE,4384_467 -4367_81482,138,4384_6723,Maynooth,D902,0,4384_7778018_TxcA0C9838A-01EB-4ECE-85EA-215222AE7658,4384_467 -4367_81482,317,4384_6724,Maynooth,D902,0,4384_7778018_Txc14E0D5D0-BC85-417A-BF0C-840E6F496E89,4384_467 -4367_81482,318,4384_6725,Maynooth,D902,0,4384_7778018_Txc2A3C306E-1011-4C62-9BE9-0EB63599C639,4384_467 -4367_81482,314,4384_6727,Maynooth,D903,0,4384_7778018_Txc2C440FDB-EAC1-4289-A53C-E383930E7DC7,4384_467 -4367_81482,315,4384_6728,Maynooth,D903,0,4384_7778018_Txc21DC4FB1-FF14-4F5A-95CF-2E251CE0EB88,4384_467 -4367_81482,23,4384_6729,Maynooth,D903,0,4384_7778018_TxcE7BD8047-D9DD-4F6C-9DD5-0E54E4C2548C,4384_467 -4367_81485,320,4384_673,Greystones,E117,1,4384_7778018_Txc731D3CD9-5FB3-48E9-B6FA-D5E5613FFF19,4384_2 -4367_81482,316,4384_6731,Maynooth,D903,0,4384_7778018_Txc7D6FDB57-3320-45E2-8A05-E84599F20D68,4384_467 -4367_81482,138,4384_6732,Maynooth,D903,0,4384_7778018_TxcAB38AEC2-DA2C-4C44-9ED4-48B6A017D311,4384_467 -4367_81482,317,4384_6733,Maynooth,D903,0,4384_7778018_TxcCEB4086C-27B0-4043-87AA-94A29466C8FC,4384_467 -4367_81482,318,4384_6734,Maynooth,D903,0,4384_7778018_TxcF87E14D3-1E4D-4BE5-B81A-4F1DDE3879A4,4384_467 -4367_81482,314,4384_6736,Maynooth,D904,0,4384_7778018_Txc4FEAE71D-9407-4B98-AC47-053B90F9A830,4384_467 -4367_81482,315,4384_6738,Maynooth,D904,0,4384_7778018_Txc68F039FF-ACEB-4C07-87A8-A3A28074DAA2,4384_467 -4367_81485,314,4384_674,Bray (Daly),E237,1,4384_7778018_TxcBBE51499-67DB-44EE-AB3C-20D014CAB4F1,4384_7 -4367_81482,23,4384_6740,M3 Parkway,D330,0,4384_7778018_Txc9018996C-9637-494D-ADB9-5C0CDECC11B7,4384_463 -4367_81482,316,4384_6742,M3 Parkway,D330,0,4384_7778018_Txc1DB26775-7BF5-44D5-8F66-E5DB2ACA23D1,4384_463 -4367_81482,138,4384_6743,M3 Parkway,D330,0,4384_7778018_Txc7712B090-331F-4936-8D43-BDAA4BF8C0B5,4384_463 -4367_81482,317,4384_6744,M3 Parkway,D330,0,4384_7778018_Txc599DE4BD-992A-47B7-A165-753796F360F1,4384_463 -4367_81482,318,4384_6745,M3 Parkway,D330,0,4384_7778018_Txc971B8BA8-E982-445E-84BE-B39FE25DBEBD,4384_463 -4367_81482,23,4384_6747,Maynooth,D904,0,4384_7778018_Txc99FD8CA1-2DD2-490B-8315-305B29606823,4384_467 -4367_81482,316,4384_6749,Maynooth,D904,0,4384_7778018_TxcBF8540B7-E17C-4BD1-A0A5-223F99DA5DDA,4384_467 -4367_81482,138,4384_6750,Maynooth,D904,0,4384_7778018_Txc07EED0E2-3DC1-44CA-B983-F886338F6DFC,4384_467 -4367_81482,317,4384_6751,Maynooth,D904,0,4384_7778018_Txc41BE2458-58A5-477D-B233-26C66BBA5C63,4384_467 -4367_81482,318,4384_6752,Maynooth,D904,0,4384_7778018_TxcBAA433B6-7642-4563-9538-4489172A10EF,4384_467 -4367_81482,314,4384_6753,M3 Parkway,D302,0,4384_7778018_Txc01D77416-6E7A-48CE-8FDB-88EEB52FDFF3,4384_464 -4367_81482,315,4384_6755,M3 Parkway,D302,0,4384_7778018_TxcBA226656-1F8D-4935-9C4F-57682F1439B2,4384_464 -4367_81482,314,4384_6758,Maynooth,D906,0,4384_7778018_TxcCE16A4ED-BE1C-428B-9B1B-0D018D10F52A,4384_469 -4367_81482,315,4384_6760,Maynooth,D906,0,4384_7778018_TxcDFD831F5-2FBA-4142-9EA1-D614E9B1073C,4384_469 -4367_81482,314,4384_6761,Maynooth,D905,0,4384_7778018_Txc360F4F34-AB09-452F-BE83-26B823583D55,4384_468 -4367_81482,315,4384_6762,Maynooth,D905,0,4384_7778018_Txc307E74F5-F2F8-4ECE-93FE-0172EF8DAD28,4384_468 -4367_81482,23,4384_6765,M3 Parkway,D331,0,4384_7778018_TxcA7D8CCEC-B725-490B-A7B1-2A1FBB1CED82,4384_463 -4367_81482,316,4384_6767,M3 Parkway,D331,0,4384_7778018_Txc2663CA5B-3240-4739-A044-DDC3AB9688B3,4384_463 -4367_81482,138,4384_6768,M3 Parkway,D331,0,4384_7778018_TxcAD97AF0E-C0BF-46A5-8EE6-12F77AB86A92,4384_463 -4367_81482,317,4384_6769,M3 Parkway,D331,0,4384_7778018_Txc02CC1DC3-1654-46FD-B13D-5EDC8672389B,4384_463 -4367_81485,315,4384_677,Bray (Daly),E237,1,4384_7778018_Txc1F2062C0-65F6-4D61-88EB-70AE24754224,4384_7 -4367_81482,318,4384_6770,M3 Parkway,D331,0,4384_7778018_Txc7681B2C8-5171-406E-8B43-BC72C479548F,4384_463 -4367_81482,23,4384_6771,Maynooth,D905,0,4384_7778018_Txc36127A46-81FB-41CF-8148-F554AD638AAD,4384_467 -4367_81482,316,4384_6773,Maynooth,D905,0,4384_7778018_Txc46F6829D-85FE-4D7E-BA17-CFE054E68CAD,4384_467 -4367_81482,138,4384_6774,Maynooth,D905,0,4384_7778018_Txc7087D22C-EA06-4629-84FC-253F805E3693,4384_467 -4367_81482,317,4384_6775,Maynooth,D905,0,4384_7778018_Txc5093DE14-35CB-4991-833D-C6602BC92516,4384_467 -4367_81482,318,4384_6776,Maynooth,D905,0,4384_7778018_TxcA27DE5A4-D930-4C33-A3D8-DB1DA82B6637,4384_467 -4367_81482,314,4384_6777,Maynooth,D907,0,4384_7778018_TxcEA91EB79-7764-4DFF-9C25-712AB123B162,4384_468 -4367_81482,315,4384_6778,Maynooth,D907,0,4384_7778018_TxcB4DCEB63-42EF-4454-93E9-7509F8C7C426,4384_468 -4367_81485,23,4384_678,Greystones,E108,1,4384_7778018_Txc1D6A474A-58C4-4258-80F0-545492B9A217,4384_2 -4367_81482,314,4384_6781,M3 Parkway,D303,0,4384_7778018_Txc679D4E40-A339-4ADD-8199-17FF1101ADEC,4384_464 -4367_81482,315,4384_6782,M3 Parkway,D303,0,4384_7778018_Txc14A8F27E-58BF-48DE-BF77-CB81D73094CE,4384_464 -4367_81482,278,4384_6785,Maynooth,D900,0,4384_7778018_Txc684479FB-BBC6-4365-9836-4D13C204078A,4384_467 -4367_81482,319,4384_6788,Maynooth,D900,0,4384_7778018_Txc76176F79-F3C4-45FB-92AA-910BA7C5D4EB,4384_467 -4367_81482,271,4384_6789,Maynooth,D900,0,4384_7778018_Txc4651F0AF-78D4-4019-951D-1380BB31CDF7,4384_467 -4367_81482,320,4384_6790,Maynooth,D900,0,4384_7778018_Txc36B04488-B084-4966-B884-8271E63585FD,4384_467 -4367_81482,23,4384_6791,Maynooth,D906,0,4384_7778018_Txc7B973233-46B5-447C-BEE3-581D6AE16CF4,4384_467 -4367_81482,316,4384_6793,Maynooth,D906,0,4384_7778018_Txc80D8CC8E-F6DD-4098-9781-A152EE46F526,4384_467 -4367_81482,138,4384_6794,Maynooth,D906,0,4384_7778018_TxcD6CCF2B3-58A1-4B2C-95CB-645628EC1383,4384_467 -4367_81482,317,4384_6795,Maynooth,D906,0,4384_7778018_Txc76E8E3F4-73F0-40AF-B074-887F7D8D7E05,4384_467 -4367_81482,318,4384_6796,Maynooth,D906,0,4384_7778018_TxcE7AE640F-9FC8-4320-B013-D569B5A0C72C,4384_467 -4367_81482,314,4384_6799,M3 Parkway,D304,0,4384_7778018_Txc903747DC-3D4F-4BB2-A188-0BA2A45EBD99,4384_465 -4367_81485,314,4384_68,Greystones,E104,1,4384_7778018_Txc8939AFF3-1FC1-4CE8-BD5B-2D8C5FBE371D,4384_2 -4367_81482,315,4384_6800,M3 Parkway,D304,0,4384_7778018_TxcBADE3F28-9879-4C4D-B9BF-EF64036BC689,4384_465 -4367_81482,314,4384_6802,Maynooth,D908,0,4384_7778018_Txc4529ED46-0199-4391-8D02-72B0890C589B,4384_468 -4367_81482,315,4384_6803,Maynooth,D908,0,4384_7778018_TxcA0A3A2E4-BE55-45FA-A8B2-31395CA10B4E,4384_468 -4367_81482,23,4384_6806,M3 Parkway,D332,0,4384_7778018_TxcABED01AF-BFEB-4700-94F7-69201135B8AA,4384_463 -4367_81482,316,4384_6808,M3 Parkway,D332,0,4384_7778018_Txc7EC28AD7-E368-4CC6-B8A3-38DF558A210D,4384_463 -4367_81482,138,4384_6809,M3 Parkway,D332,0,4384_7778018_TxcEC2BDB06-9B27-46D6-8418-7209B17A9F9E,4384_463 -4367_81482,317,4384_6810,M3 Parkway,D332,0,4384_7778018_Txc414F6677-1250-42C8-803F-C49ED3DE404E,4384_463 -4367_81482,318,4384_6811,M3 Parkway,D332,0,4384_7778018_TxcE5E40236-1C73-42EC-B236-FF18FB0FE8A6,4384_463 -4367_81482,23,4384_6812,Maynooth,D907,0,4384_7778018_Txc861F767B-DB23-42B9-BD6F-03A00CABE302,4384_467 -4367_81482,316,4384_6814,Maynooth,D907,0,4384_7778018_TxcC2A5A0E0-4977-4710-B9E2-19DF440A3D9E,4384_467 -4367_81482,138,4384_6815,Maynooth,D907,0,4384_7778018_Txc49F98A76-F6F5-4B8E-9AC2-8AD7CB919D45,4384_467 -4367_81482,317,4384_6816,Maynooth,D907,0,4384_7778018_Txc5D8DF4F3-B13D-4A15-9464-07159B5B6A86,4384_467 -4367_81482,318,4384_6817,Maynooth,D907,0,4384_7778018_Txc846C21E2-6B76-41AB-839B-E71A2AC9E94A,4384_467 -4367_81482,278,4384_6818,M3 Parkway,D370,0,4384_7778018_TxcDB2BC0FA-76A5-45C2-8E6E-D15607531B47,4384_463 -4367_81485,316,4384_682,Greystones,E108,1,4384_7778018_Txc651708CC-F912-42F2-9E16-C6683AEF6720,4384_2 -4367_81482,319,4384_6821,M3 Parkway,D370,0,4384_7778018_Txc57B68DB8-CD2A-483F-A0B0-EF27D988110D,4384_463 -4367_81482,271,4384_6822,M3 Parkway,D370,0,4384_7778018_Txc4E32731C-440B-4656-97F0-747CC321AAA2,4384_463 -4367_81482,320,4384_6823,M3 Parkway,D370,0,4384_7778018_Txc48A6F10C-C7AD-4B44-A6E0-F4B9127732A6,4384_463 -4367_81482,314,4384_6826,M3 Parkway,D305,0,4384_7778018_TxcD773FBE8-DCC5-430E-9926-D3721C8B2ECD,4384_464 -4367_81482,315,4384_6827,M3 Parkway,D305,0,4384_7778018_Txc42E824D5-34E6-4657-9371-A6B2B4E7C65C,4384_464 -4367_81485,138,4384_683,Greystones,E108,1,4384_7778018_TxcC90DD353-61A2-4FFC-A0F0-582E114D3A57,4384_2 -4367_81482,23,4384_6830,Maynooth,D908,0,4384_7778018_TxcAF660ACB-C59C-43EE-9EC2-DD38FA4F21C7,4384_467 -4367_81482,316,4384_6832,Maynooth,D908,0,4384_7778018_Txc3B877A83-4A23-40C1-80E5-0064D8C8746F,4384_467 -4367_81482,138,4384_6833,Maynooth,D908,0,4384_7778018_Txc3C3CCF19-4984-4C37-84CD-7E72E3AF2387,4384_467 -4367_81482,317,4384_6834,Maynooth,D908,0,4384_7778018_TxcC04462BA-EBF8-4132-B197-73E8E3810A4A,4384_467 -4367_81482,318,4384_6835,Maynooth,D908,0,4384_7778018_Txc10C4EEA5-5DFC-44AE-B6EF-3C3B88BE9BAC,4384_467 -4367_81482,278,4384_6836,Maynooth,D902,0,4384_7778018_Txc1AF0DC6B-9E19-4DB7-A84B-103B96D75EA6,4384_467 -4367_81482,319,4384_6839,Maynooth,D902,0,4384_7778018_Txc7CA03AEF-6BD6-4249-A9E8-AC5292CF3651,4384_467 -4367_81485,317,4384_684,Greystones,E108,1,4384_7778018_TxcB87DF0EC-A167-412F-BEEA-23C70D198211,4384_2 -4367_81482,271,4384_6840,Maynooth,D902,0,4384_7778018_TxcBD454FFC-78DC-4024-A9ED-9FA801E35898,4384_467 -4367_81482,320,4384_6841,Maynooth,D902,0,4384_7778018_Txc79E5D569-98C3-478C-9374-32879B08C023,4384_467 -4367_81482,314,4384_6842,Maynooth,D909,0,4384_7778018_Txc68B1405F-F0A4-40DF-80FC-E3FF8CE01CEA,4384_467 -4367_81482,315,4384_6843,Maynooth,D909,0,4384_7778018_TxcAB495F12-DC6F-445B-8942-C3DA907FF100,4384_467 -4367_81482,23,4384_6848,M3 Parkway,D333,0,4384_7778018_Txc00F7B854-C719-42B6-824B-AD08B1138B41,4384_463 -4367_81485,318,4384_685,Greystones,E108,1,4384_7778018_Txc2FA69DAD-100E-4E85-A920-8EF62B714AF1,4384_2 -4367_81482,316,4384_6850,M3 Parkway,D333,0,4384_7778018_Txc0B454E5D-2210-436C-BAA2-78A3E0F19E40,4384_463 -4367_81482,138,4384_6851,M3 Parkway,D333,0,4384_7778018_Txc4036F01C-9F82-4160-B66B-16719C8586C8,4384_463 -4367_81482,317,4384_6852,M3 Parkway,D333,0,4384_7778018_TxcF63F4B1F-B289-49E6-8F6E-388DBF93D26A,4384_463 -4367_81482,318,4384_6853,M3 Parkway,D333,0,4384_7778018_Txc6A4F8951-4376-4951-92B1-730A7C17A90E,4384_463 -4367_81482,314,4384_6854,Maynooth,D910,0,4384_7778018_Txc686D9539-CD10-4D3F-8192-4FF92E7A2CD4,4384_467 -4367_81482,23,4384_6855,Maynooth,D909,0,4384_7778018_Txc2033A124-BBE5-4C9C-9FA0-28D001B9432B,4384_474 -4367_81482,315,4384_6857,Maynooth,D910,0,4384_7778018_Txc600FEDC7-8C29-4726-A8B8-A42D21390137,4384_467 -4367_81482,316,4384_6858,Maynooth,D909,0,4384_7778018_Txc960C6328-34DD-49FA-8DAA-F5FA05664658,4384_474 -4367_81482,138,4384_6859,Maynooth,D909,0,4384_7778018_Txc2674384A-5584-47F2-B771-17E15E136D79,4384_474 -4367_81482,317,4384_6860,Maynooth,D909,0,4384_7778018_Txc78A66443-9B96-4AD1-AD2F-61F8D605BA2C,4384_474 -4367_81482,318,4384_6861,Maynooth,D909,0,4384_7778018_TxcE9C2800D-6873-48C4-84CE-A2FAA165720A,4384_474 -4367_81482,278,4384_6862,M3 Parkway,D371,0,4384_7778018_Txc0299CF45-A3EF-4608-9343-B925BCEFD001,4384_463 -4367_81482,319,4384_6865,M3 Parkway,D371,0,4384_7778018_TxcC4C41495-07A1-4413-B62C-03A463EF79F9,4384_463 -4367_81482,271,4384_6866,M3 Parkway,D371,0,4384_7778018_Txc41C8B2F2-3F94-4FB3-A942-E29E707665EA,4384_463 -4367_81482,320,4384_6867,M3 Parkway,D371,0,4384_7778018_Txc65506681-2031-4DA4-8ED2-6E6815281F7E,4384_463 -4367_81482,314,4384_6870,Maynooth,D911,0,4384_7778018_Txc46CDE32E-80F5-4F68-A374-298055D3A574,4384_467 -4367_81482,23,4384_6871,Maynooth,D910,0,4384_7778018_TxcBC005425-60CC-4EE7-8AC4-CF2FAFD16979,4384_474 -4367_81482,315,4384_6873,Maynooth,D911,0,4384_7778018_TxcE8019F2C-ACE4-483F-9F90-BEFE7C320052,4384_467 -4367_81482,316,4384_6874,Maynooth,D910,0,4384_7778018_TxcFAA0CEFE-28D0-411D-976F-A12F6BD7CEA7,4384_474 -4367_81482,138,4384_6875,Maynooth,D910,0,4384_7778018_TxcBC09FB34-3D08-4DA6-9826-3CB5CB5BA128,4384_474 -4367_81482,317,4384_6876,Maynooth,D910,0,4384_7778018_Txc5697F6CC-8D41-4A1F-8394-F42BCCC9E7F2,4384_474 -4367_81482,318,4384_6877,Maynooth,D910,0,4384_7778018_TxcBDA2D5B8-488A-49CB-AA01-35C7AFD28097,4384_474 -4367_81482,278,4384_6878,Maynooth,D904,0,4384_7778018_Txc5D57FAB3-2FF1-4C51-988C-186E18ADB0A4,4384_467 -4367_81482,319,4384_6881,Maynooth,D904,0,4384_7778018_TxcB48A0DD9-AE32-48CD-B4B0-9DE211087374,4384_467 -4367_81482,271,4384_6882,Maynooth,D904,0,4384_7778018_Txc102AC61D-00F9-42BA-A91A-BE1CDC45EBDE,4384_467 -4367_81482,320,4384_6883,Maynooth,D904,0,4384_7778018_Txc6EC43997-1140-429A-93B3-8A3815C428FF,4384_467 -4367_81482,23,4384_6885,M3 Parkway,D334,0,4384_7778018_TxcD63EC5EC-E5A3-41C7-B4A3-8723EC35FF37,4384_463 -4367_81482,316,4384_6887,M3 Parkway,D334,0,4384_7778018_Txc9683E9A8-AB59-4FF2-92B3-31E8F419AE08,4384_463 -4367_81482,138,4384_6888,M3 Parkway,D334,0,4384_7778018_TxcAF3AA96A-7554-49C3-803E-5A146C14387F,4384_463 -4367_81482,317,4384_6889,M3 Parkway,D334,0,4384_7778018_TxcE729CA73-7E0E-436E-8943-3C47C2051532,4384_463 -4367_81485,314,4384_689,Greystones,E119,1,4384_7778018_Txc177F7797-1665-420A-9A4B-74D5E874A41A,4384_2 -4367_81482,318,4384_6890,M3 Parkway,D334,0,4384_7778018_Txc443D04D9-F2A0-4809-8B75-D9E84FBA295F,4384_463 -4367_81482,314,4384_6891,Maynooth,D912,0,4384_7778018_TxcCDCD3A4A-7869-49E2-AD2C-07317E119872,4384_467 -4367_81482,23,4384_6892,Maynooth,D911,0,4384_7778018_Txc18A516A5-8156-4C47-B949-11BF1C51E2E7,4384_467 -4367_81482,278,4384_6893,Maynooth,D905,0,4384_7778018_Txc5D5FC457-C828-4A52-BE94-E650FF5F7E6D,4384_474 -4367_81482,315,4384_6898,Maynooth,D912,0,4384_7778018_Txc5A234DD4-D06B-4EC8-8723-840963CC9DA6,4384_467 -4367_81482,316,4384_6899,Maynooth,D911,0,4384_7778018_Txc7456E970-9829-4110-ADF2-768CCCE46364,4384_467 -4367_81485,315,4384_69,Greystones,E104,1,4384_7778018_TxcAD2C08A7-899B-47BD-81A5-9BC21D08007B,4384_2 -4367_81482,319,4384_6900,Maynooth,D905,0,4384_7778018_TxcA2FCAFB1-91E5-4F6A-A17D-2A54D1EFA275,4384_474 -4367_81482,138,4384_6901,Maynooth,D911,0,4384_7778018_TxcF71F1880-F998-4A4F-A67E-5AF9093B13D4,4384_467 -4367_81482,317,4384_6902,Maynooth,D911,0,4384_7778018_Txc376EB452-937F-45CE-894B-F718FDE2D88B,4384_467 -4367_81482,318,4384_6903,Maynooth,D911,0,4384_7778018_TxcB505F69A-9930-400B-8556-97187D71C5BC,4384_467 -4367_81482,271,4384_6904,Maynooth,D905,0,4384_7778018_Txc0180978D-FB76-4DE6-8F72-159B0D07EBFF,4384_474 -4367_81482,320,4384_6905,Maynooth,D905,0,4384_7778018_TxcCD94862F-92CC-4EC1-95BC-CD80B03E7D0A,4384_474 -4367_81482,314,4384_6906,M3 Parkway,D308,0,4384_7778018_Txc48705D82-46F1-4527-A1B6-ADA64641641A,4384_463 -4367_81482,315,4384_6908,M3 Parkway,D308,0,4384_7778018_Txc86D4DEC3-9BF4-4586-BCEB-615572A8AB35,4384_463 -4367_81482,278,4384_6909,M3 Parkway,D372,0,4384_7778018_Txc28347A0A-DC79-4A6E-A40E-A94C28D5DEF3,4384_463 -4367_81482,319,4384_6912,M3 Parkway,D372,0,4384_7778018_Txc0AE89D67-20D4-4FD5-BA0D-583762E96EEA,4384_463 -4367_81482,271,4384_6913,M3 Parkway,D372,0,4384_7778018_Txc035294A6-3D5D-4545-A42E-96985297C498,4384_463 -4367_81482,320,4384_6914,M3 Parkway,D372,0,4384_7778018_TxcCF563A1C-D4D2-444E-8DA6-E38376442F04,4384_463 -4367_81482,23,4384_6915,Maynooth,D912,0,4384_7778018_TxcB6C377E6-D9F4-4EBA-BC56-D265D778C4F7,4384_467 -4367_81482,278,4384_6916,Maynooth,D906,0,4384_7778018_TxcCB02006C-018B-40A6-A457-8955B86160B4,4384_474 -4367_81485,315,4384_692,Greystones,E119,1,4384_7778018_Txc491FA389-6F42-475F-AD13-4E905861F1C1,4384_2 -4367_81482,316,4384_6920,Maynooth,D912,0,4384_7778018_TxcB6F40756-7E2C-4ACA-A830-7FEBC4CF3610,4384_467 -4367_81482,319,4384_6921,Maynooth,D906,0,4384_7778018_TxcFCC62ADA-D62F-43E9-A155-FAF63AF14A0D,4384_474 -4367_81482,138,4384_6922,Maynooth,D912,0,4384_7778018_TxcB36EA056-73B2-4102-B18B-866EC659F504,4384_467 -4367_81482,317,4384_6923,Maynooth,D912,0,4384_7778018_TxcE979061F-E9C8-4A1C-A389-4572E010DD3B,4384_467 -4367_81482,318,4384_6924,Maynooth,D912,0,4384_7778018_TxcF1DF6DE3-2253-40E4-83AD-C56836B05A23,4384_467 -4367_81482,271,4384_6925,Maynooth,D906,0,4384_7778018_TxcE64E9EEA-0DD3-4BCD-8D6F-6BE4FB21A3D7,4384_474 -4367_81482,320,4384_6926,Maynooth,D906,0,4384_7778018_Txc6DA790B8-FC49-4202-85DE-C7985A6B9798,4384_474 -4367_81482,314,4384_6927,Maynooth,D913,0,4384_7778018_TxcEBF5B1E5-24DD-4B20-932A-2584CA96B8C7,4384_467 -4367_81482,315,4384_6929,Maynooth,D913,0,4384_7778018_TxcD0F69B28-9FE8-4CAA-B313-75A7044244A8,4384_467 -4367_81482,23,4384_6930,M3 Parkway,D335,0,4384_7778018_TxcC602EEE0-340A-49F5-BE37-7FDAA626412C,4384_463 -4367_81482,316,4384_6932,M3 Parkway,D335,0,4384_7778018_TxcED43CAA3-97C6-4A52-AD31-1311384305D0,4384_463 -4367_81482,138,4384_6933,M3 Parkway,D335,0,4384_7778018_Txc7BA6AECD-03D3-4401-AFF9-608359932221,4384_463 -4367_81482,317,4384_6934,M3 Parkway,D335,0,4384_7778018_TxcC79066FC-06BB-430B-A193-00CA8FBA8071,4384_463 -4367_81482,318,4384_6935,M3 Parkway,D335,0,4384_7778018_Txc95F2366D-19F3-4E80-8B6C-96DD5162D06D,4384_463 -4367_81482,314,4384_6936,Maynooth,D914,0,4384_7778018_Txc00483DAB-99CC-43F1-97C2-04B5D2F5D544,4384_467 -4367_81482,23,4384_6937,Maynooth,D913,0,4384_7778018_Txc5B94A3C7-D172-436E-848C-D5DC9A50B563,4384_474 -4367_81482,278,4384_6938,Maynooth,D907,0,4384_7778018_TxcF4F57E90-EDFE-426A-AD3B-7BACF9FBB11C,4384_475 -4367_81485,23,4384_694,Bray (Daly),E225,1,4384_7778018_Txc6E8D2C11-9899-40F9-8F06-3B48E992779A,4384_7 -4367_81482,315,4384_6943,Maynooth,D914,0,4384_7778018_TxcCC0DC7B4-2EB1-46B1-8AE9-216C96C24EB4,4384_467 -4367_81482,316,4384_6944,Maynooth,D913,0,4384_7778018_Txc67B03AEF-A808-44C6-B7C4-B2AA134BDCD8,4384_474 -4367_81482,319,4384_6945,Maynooth,D907,0,4384_7778018_Txc3910F4A0-232A-43D6-B410-BB3888E0B2B5,4384_475 -4367_81482,138,4384_6946,Maynooth,D913,0,4384_7778018_TxcAF04DC29-DFDF-4AB5-B4AA-341E2691EA13,4384_474 -4367_81482,317,4384_6947,Maynooth,D913,0,4384_7778018_Txc41894406-D487-45E5-8D87-6EBFAFFEF8E0,4384_474 -4367_81482,318,4384_6948,Maynooth,D913,0,4384_7778018_TxcD389E8C7-A79B-4235-A4FA-5CD6AAF88057,4384_474 -4367_81482,271,4384_6949,Maynooth,D907,0,4384_7778018_Txc7979944A-B917-4F37-B956-621DC682438E,4384_475 -4367_81482,320,4384_6950,Maynooth,D907,0,4384_7778018_Txc2D2BDE75-5E67-40F0-A6AD-1CFBF8E1656D,4384_475 -4367_81482,278,4384_6951,M3 Parkway,D373,0,4384_7778018_TxcDF036D63-E00D-47F7-9513-1B41E480D751,4384_463 -4367_81482,319,4384_6954,M3 Parkway,D373,0,4384_7778018_Txc21A13F60-E96C-432C-8603-26AEF1D6989A,4384_463 -4367_81482,271,4384_6955,M3 Parkway,D373,0,4384_7778018_TxcDEB2612E-65FC-49E9-82B7-F1340043615E,4384_463 -4367_81482,320,4384_6956,M3 Parkway,D373,0,4384_7778018_TxcE239B5B4-D5AE-4A13-BCCC-4E3641F75E08,4384_463 -4367_81482,314,4384_6957,M3 Parkway,D310,0,4384_7778018_TxcCC3DD3F7-C50C-4777-9AB7-324D3C9E19D9,4384_463 -4367_81482,315,4384_6959,M3 Parkway,D310,0,4384_7778018_Txc0EE1A70F-D7DC-4F0B-87ED-BFC1242188BF,4384_463 -4367_81482,314,4384_6960,Maynooth,D915,0,4384_7778018_TxcE0C32FCB-3B90-4181-9803-6E1E8B83CB4F,4384_467 -4367_81482,315,4384_6961,Maynooth,D915,0,4384_7778018_Txc922209E2-81B4-4D97-9095-B9D8A759DD82,4384_467 -4367_81482,23,4384_6962,Maynooth,D914,0,4384_7778018_Txc8A6E8BC1-FF66-4F69-8B2B-2D35BF439AA3,4384_467 -4367_81482,278,4384_6963,Maynooth,D908,0,4384_7778018_TxcD8E9D527-B6EE-4952-8C74-8881C29E4541,4384_474 -4367_81482,316,4384_6968,Maynooth,D914,0,4384_7778018_TxcE6A043F9-9BC6-4D1F-842E-68EBDD88318D,4384_467 -4367_81482,319,4384_6969,Maynooth,D908,0,4384_7778018_Txc0969FD95-7E0A-444B-877F-0DEC4F0B23F9,4384_474 -4367_81485,316,4384_697,Bray (Daly),E225,1,4384_7778018_TxcD4B418EC-4C33-4698-95FC-6B1772A5925C,4384_7 -4367_81482,138,4384_6970,Maynooth,D914,0,4384_7778018_TxcDEBD0C57-1E4F-4875-AEB7-4E5417A0CBEB,4384_467 -4367_81482,317,4384_6971,Maynooth,D914,0,4384_7778018_Txc4C521125-846C-4F83-BC03-B7CAD2EEF5BE,4384_467 -4367_81482,318,4384_6972,Maynooth,D914,0,4384_7778018_TxcDA8BF40E-5834-41C9-B4BE-1F13380D212C,4384_467 -4367_81482,271,4384_6973,Maynooth,D908,0,4384_7778018_Txc14BAF552-37B5-47E1-9505-8E48E426F9D1,4384_474 -4367_81482,320,4384_6974,Maynooth,D908,0,4384_7778018_TxcEAA406AE-2956-4BA3-A9F5-7CF31B518CBC,4384_474 -4367_81482,23,4384_6976,M3 Parkway,D336,0,4384_7778018_Txc0B5EEC4A-22F1-4019-AABF-397126673917,4384_463 -4367_81482,316,4384_6978,M3 Parkway,D336,0,4384_7778018_TxcA9CF5F9A-56A9-4794-8C73-EC8E610036B8,4384_463 -4367_81482,138,4384_6979,M3 Parkway,D336,0,4384_7778018_Txc27ACCADE-6131-4183-9118-A002A6626CD3,4384_463 -4367_81485,138,4384_698,Bray (Daly),E225,1,4384_7778018_TxcFF423005-DE88-4A01-8412-46BD935E2901,4384_7 -4367_81482,317,4384_6980,M3 Parkway,D336,0,4384_7778018_Txc35380D7F-4F85-4D7C-AD80-240FE9060099,4384_463 -4367_81482,318,4384_6981,M3 Parkway,D336,0,4384_7778018_Txc512A39E9-2604-4C0F-9D7E-68A191CD8EAA,4384_463 -4367_81482,314,4384_6982,Maynooth,D916,0,4384_7778018_Txc06F525A1-FF99-48D0-8754-06A0E7A16C1D,4384_467 -4367_81482,23,4384_6983,Maynooth,D915,0,4384_7778018_Txc95595831-73CF-4C2A-9567-BDEADEE40B44,4384_467 -4367_81482,278,4384_6984,Maynooth,D909,0,4384_7778018_TxcEEC406C4-0996-4EB8-9150-52553F2AD11D,4384_474 -4367_81482,315,4384_6989,Maynooth,D916,0,4384_7778018_Txc87887CC8-1109-4E48-885C-4D6FCA2A5729,4384_467 -4367_81485,317,4384_699,Bray (Daly),E225,1,4384_7778018_Txc0E96F869-3DD2-4359-A10E-EFC9E298853F,4384_7 -4367_81482,316,4384_6990,Maynooth,D915,0,4384_7778018_Txc16269470-9DA2-442A-A53C-D242E593C83D,4384_467 -4367_81482,319,4384_6991,Maynooth,D909,0,4384_7778018_Txc80C99D55-042F-4B40-9DD3-2F60C6B1DAA3,4384_474 -4367_81482,138,4384_6992,Maynooth,D915,0,4384_7778018_Txc509E352D-781A-4A5E-A4F2-2EBFE1FD93BD,4384_467 -4367_81482,317,4384_6993,Maynooth,D915,0,4384_7778018_Txc2656F546-1982-4594-9C2E-8B6117BAA940,4384_467 -4367_81482,318,4384_6994,Maynooth,D915,0,4384_7778018_Txc0A3690C3-449A-468A-B07C-DDB5C97002AF,4384_467 -4367_81482,271,4384_6995,Maynooth,D909,0,4384_7778018_Txc168C637A-9945-4FBA-A0ED-B12BB86AB94F,4384_474 -4367_81482,320,4384_6996,Maynooth,D909,0,4384_7778018_Txc5DEC445B-82B7-4288-AA2E-03D053A32607,4384_474 -4367_81482,278,4384_6997,M3 Parkway,D374,0,4384_7778018_TxcE36549B6-75D1-4A46-8770-4C3E5035D5C5,4384_463 -4367_81485,318,4384_700,Bray (Daly),E225,1,4384_7778018_TxcCCCE96B6-2223-48E9-A6A4-F46BFF8FA41C,4384_7 -4367_81482,319,4384_7000,M3 Parkway,D374,0,4384_7778018_Txc885E9063-D01F-4F7F-95D3-A5C7A62B566A,4384_463 -4367_81482,271,4384_7001,M3 Parkway,D374,0,4384_7778018_Txc9C20BDFF-C474-46EF-A8D9-C92B2F68F8DE,4384_463 -4367_81482,320,4384_7002,M3 Parkway,D374,0,4384_7778018_TxcD9A7403F-D9B3-4D00-9620-F5DE588EFE9C,4384_463 -4367_81482,314,4384_7003,M3 Parkway,D312,0,4384_7778018_TxcF1393662-6FAD-436B-83EF-A31D4D968307,4384_463 -4367_81482,315,4384_7005,M3 Parkway,D312,0,4384_7778018_TxcC07F7B15-230E-4374-9F48-6317345782AC,4384_463 -4367_81482,314,4384_7006,Maynooth,D917,0,4384_7778018_Txc72B435BA-BD1C-4155-8BC5-FC7609497BFC,4384_467 -4367_81482,23,4384_7007,Maynooth,D916,0,4384_7778018_TxcE68DD9DC-5858-4503-85E4-36CBD5CD0A51,4384_467 -4367_81482,278,4384_7008,Maynooth,D910,0,4384_7778018_Txc1C57BA79-F700-47FC-9283-8A3165FE271C,4384_474 -4367_81485,314,4384_701,Bray (Daly),E238,1,4384_7778018_Txc783B7200-8C3B-4D4B-8373-F237E63F22A3,4384_7 -4367_81482,315,4384_7013,Maynooth,D917,0,4384_7778018_TxcA894998D-B449-4BC4-A5B7-48447C0BA44F,4384_467 -4367_81482,316,4384_7014,Maynooth,D916,0,4384_7778018_Txc0AB2BCA8-B7B9-4343-9CAA-3F7208861BF4,4384_467 -4367_81482,319,4384_7015,Maynooth,D910,0,4384_7778018_TxcB4A20DF7-A6BB-4CBD-99B1-AE23701B137A,4384_474 -4367_81482,138,4384_7016,Maynooth,D916,0,4384_7778018_Txc1AC8EF4A-B076-45B2-9998-1956C0C58664,4384_467 -4367_81482,317,4384_7017,Maynooth,D916,0,4384_7778018_Txc98484348-7EB4-4F6B-87EA-656F3357A931,4384_467 -4367_81482,318,4384_7018,Maynooth,D916,0,4384_7778018_TxcD6909D6D-CE4D-42E3-BC48-CD7F71EC7363,4384_467 -4367_81482,271,4384_7019,Maynooth,D910,0,4384_7778018_Txc49DA1637-7450-4B18-B47B-47A4C944209D,4384_474 -4367_81485,278,4384_702,Bray (Daly),E218,1,4384_7778018_Txc3E308C90-E8B4-4295-B948-2639AB91DB25,4384_8 -4367_81482,320,4384_7020,Maynooth,D910,0,4384_7778018_Txc6B2FDDB6-F65E-4DA7-AEC0-AF44F084D7D4,4384_474 -4367_81482,23,4384_7021,M3 Parkway,D337,0,4384_7778018_TxcD36698CE-521F-448B-AAE5-06C9B00F166A,4384_463 -4367_81482,316,4384_7023,M3 Parkway,D337,0,4384_7778018_TxcC7A450B0-89F5-44BD-903D-34EE52C53C34,4384_463 -4367_81482,138,4384_7024,M3 Parkway,D337,0,4384_7778018_Txc76A5ED3D-C120-4A25-8370-6BEA5E689A6F,4384_463 -4367_81482,317,4384_7025,M3 Parkway,D337,0,4384_7778018_Txc28609502-C877-451A-B7AB-3D91BFC4517D,4384_463 -4367_81482,318,4384_7026,M3 Parkway,D337,0,4384_7778018_Txc53A3D036-71F7-4B2C-96B3-5C317FE48646,4384_463 -4367_81482,314,4384_7027,Maynooth,D918,0,4384_7778018_Txc4F4C66A5-A30A-4569-BB5F-C267D07F1985,4384_467 -4367_81482,211,4384_7028,Maynooth,D917,0,4384_7778018_Txc8E401406-B66E-4F8E-8A36-F182979881EE,4384_467 -4367_81482,278,4384_7029,Maynooth,D911,0,4384_7778018_Txc6FAFC913-2C3D-41C5-B7EF-9A8867D557F6,4384_474 -4367_81482,315,4384_7034,Maynooth,D918,0,4384_7778018_TxcBB93231A-A00A-4418-8D3A-637E7C5CC9D1,4384_467 -4367_81482,316,4384_7035,Maynooth,D917,0,4384_7778018_TxcCDBDC1A7-7E93-4C1E-997F-39A8BB0B8631,4384_467 -4367_81482,319,4384_7036,Maynooth,D911,0,4384_7778018_Txc60EB2B58-7458-4285-AEA4-A43A62E4BAF2,4384_474 -4367_81482,138,4384_7037,Maynooth,D917,0,4384_7778018_Txc08C0BEBC-6EEC-494E-B849-59D6068877A3,4384_467 -4367_81482,317,4384_7038,Maynooth,D917,0,4384_7778018_Txc19AB4AE6-AF36-4315-99B8-6873E34FB2E7,4384_467 -4367_81482,318,4384_7039,Maynooth,D917,0,4384_7778018_Txc89071F75-8F10-4026-B35F-59BD0FE9CA5B,4384_467 -4367_81482,271,4384_7040,Maynooth,D911,0,4384_7778018_Txc21C2559F-E567-44BF-BA2D-58F201F736C1,4384_474 -4367_81482,320,4384_7041,Maynooth,D911,0,4384_7778018_Txc8B01433A-21C6-4D35-8281-DD3661F73BEB,4384_474 -4367_81482,278,4384_7042,M3 Parkway,D375,0,4384_7778018_Txc5A670782-0976-4F73-BF3C-2A819171D79A,4384_463 -4367_81482,319,4384_7045,M3 Parkway,D375,0,4384_7778018_TxcEEA4C5CE-C359-4C1F-94FB-2191CD741242,4384_463 -4367_81482,271,4384_7046,M3 Parkway,D375,0,4384_7778018_Txc82395110-1FC4-42C4-9D9B-635F79072D7C,4384_463 -4367_81482,320,4384_7047,M3 Parkway,D375,0,4384_7778018_Txc9B7DED35-A274-4CE2-8A7A-9520C9FCBB07,4384_463 -4367_81482,314,4384_7048,M3 Parkway,D314,0,4384_7778018_Txc8F6E7F7A-1C07-4825-AF2D-A0695A47D948,4384_463 -4367_81482,315,4384_7050,M3 Parkway,D314,0,4384_7778018_Txc725DFFAF-C71E-4D6B-97A7-306D422B880B,4384_463 -4367_81482,96,4384_7051,Maynooth,D917,0,4384_7778018_Txc0A8E1547-BA2A-4ADD-8A09-CFC58060402E,4384_467 -4367_81482,214,4384_7052,Maynooth,D917,0,4384_7778018_Txc961BFC12-EE43-494A-AB3C-968EC7C82B68,4384_467 -4367_81482,314,4384_7053,Maynooth,D919,0,4384_7778018_TxcF1A1E13E-CF95-49C5-BACE-06234D0C4AB1,4384_467 -4367_81482,315,4384_7054,Maynooth,D919,0,4384_7778018_Txc2C3EE3CD-6E0C-47E6-959F-A2F6A660AE7C,4384_467 -4367_81482,23,4384_7055,Maynooth,D918,0,4384_7778018_Txc9A9228CA-6BA4-4760-9E06-1ABDD1E1BAF8,4384_467 -4367_81482,278,4384_7056,Maynooth,D912,0,4384_7778018_Txc7C3EBD17-9443-4C61-8678-14AF0907AA34,4384_474 -4367_81482,316,4384_7061,Maynooth,D918,0,4384_7778018_TxcACE51882-13D1-4E9E-B323-AD57A410A7AC,4384_467 -4367_81482,319,4384_7062,Maynooth,D912,0,4384_7778018_Txc9ADA0D24-481D-4EE1-AFA5-E97BE7E7ACB8,4384_474 -4367_81482,138,4384_7063,Maynooth,D918,0,4384_7778018_TxcC2CFDCD0-7541-4693-AE3A-C3316609ED4E,4384_467 -4367_81482,317,4384_7064,Maynooth,D918,0,4384_7778018_Txc7B9C1863-962D-4B9C-9975-675CBCF4DF28,4384_467 -4367_81482,318,4384_7065,Maynooth,D918,0,4384_7778018_Txc172850DA-31D5-4940-9D3F-F969455E739A,4384_467 -4367_81482,271,4384_7066,Maynooth,D912,0,4384_7778018_TxcA65B202C-5229-49A5-A4B3-F77524EB2648,4384_474 -4367_81482,320,4384_7067,Maynooth,D912,0,4384_7778018_TxcE29D221B-16F2-469A-9B8A-02B9EEC0D933,4384_474 -4367_81482,314,4384_7069,Maynooth,D920,0,4384_7778018_TxcB6D343DA-D439-4702-BBC8-0CCE08EA97C7,4384_470 -4367_81482,315,4384_7071,Maynooth,D920,0,4384_7778018_Txc86EAB7F7-E931-48E1-9850-05B8CD6173D3,4384_470 -4367_81482,23,4384_7072,M3 Parkway,D338,0,4384_7778018_Txc1FF2C514-F52A-49DB-8BDB-A365351CF525,4384_463 -4367_81482,316,4384_7074,M3 Parkway,D338,0,4384_7778018_TxcB4A65E12-D3B9-4A1D-B3AF-72A6038AB972,4384_463 -4367_81482,138,4384_7075,M3 Parkway,D338,0,4384_7778018_TxcAE750883-FD7F-4561-BCCE-DB0E7EBCB451,4384_463 -4367_81482,317,4384_7076,M3 Parkway,D338,0,4384_7778018_Txc8AFCDCD4-A749-4676-AA1E-3924DDC49B10,4384_463 -4367_81482,318,4384_7077,M3 Parkway,D338,0,4384_7778018_Txc0897837C-D284-4573-8E7E-E4430D88B76E,4384_463 -4367_81482,23,4384_7078,Maynooth,D919,0,4384_7778018_TxcD98ABDD5-F6B0-4C58-95EC-B2F3C78CAFAD,4384_467 -4367_81482,278,4384_7079,Maynooth,D913,0,4384_7778018_TxcF4BB630E-F09A-48F8-A363-6880831FE1BC,4384_474 -4367_81485,315,4384_708,Bray (Daly),E238,1,4384_7778018_TxcFD2BCA84-E081-41B3-8079-8E2CA952D644,4384_7 -4367_81482,316,4384_7083,Maynooth,D919,0,4384_7778018_Txc90CA0E30-D13A-4237-A5EA-793CC9F7C440,4384_467 -4367_81482,319,4384_7084,Maynooth,D913,0,4384_7778018_Txc59E282A0-D540-487B-B0C4-96A5719A4923,4384_474 -4367_81482,138,4384_7085,Maynooth,D919,0,4384_7778018_Txc9CDF4994-5051-43ED-8916-CC27ECB404DC,4384_467 -4367_81482,317,4384_7086,Maynooth,D919,0,4384_7778018_Txc9587DBB5-474F-4137-A8F9-7873F29E8E86,4384_467 -4367_81482,318,4384_7087,Maynooth,D919,0,4384_7778018_Txc0CB5907B-F73E-4BF5-82A5-F236B5C152F2,4384_467 -4367_81482,271,4384_7088,Maynooth,D913,0,4384_7778018_Txc6054B344-9525-48C5-82D2-279B80CF32A6,4384_474 -4367_81482,320,4384_7089,Maynooth,D913,0,4384_7778018_TxcD52D518E-3DD2-4F6F-9E10-E6BB80A7C2C8,4384_474 -4367_81485,319,4384_709,Bray (Daly),E218,1,4384_7778018_TxcCFEF569D-B336-445D-BB99-B21CD04ABB2E,4384_8 -4367_81482,278,4384_7090,M3 Parkway,D376,0,4384_7778018_TxcF1A8F5AE-B615-47C4-A925-C1BC16CB44EC,4384_463 -4367_81482,319,4384_7093,M3 Parkway,D376,0,4384_7778018_Txc0D19E6B7-3D11-40E0-A15A-FDE72AFFFEA4,4384_463 -4367_81482,271,4384_7094,M3 Parkway,D376,0,4384_7778018_Txc64096C6C-C2C6-44E7-83D8-4D8BD587281B,4384_463 -4367_81482,320,4384_7095,M3 Parkway,D376,0,4384_7778018_Txc2C42B051-9F17-44D2-88DC-1A15EEAC5EC2,4384_463 -4367_81482,314,4384_7096,M3 Parkway,D316,0,4384_7778018_Txc3E0A1DF5-47DA-470F-9352-032B83A92F9F,4384_463 -4367_81482,315,4384_7098,M3 Parkway,D316,0,4384_7778018_TxcC452DFAE-F1B6-4ED4-8FAA-3EDD28C79C71,4384_463 -4367_81482,314,4384_7099,Maynooth,D921,0,4384_7778018_TxcA605DEC1-557C-4243-B373-7CD1EEED663D,4384_470 -4367_81485,271,4384_710,Bray (Daly),E218,1,4384_7778018_Txc62131312-030F-4BD7-8BDD-3BA972920DD1,4384_8 -4367_81482,315,4384_7101,Maynooth,D921,0,4384_7778018_Txc334A5DAE-92A8-4AF4-B34C-AADD2803EAD1,4384_470 -4367_81482,23,4384_7102,Maynooth,D920,0,4384_7778018_Txc8669B750-7273-49B3-B6CF-616C01DAFA45,4384_467 -4367_81482,278,4384_7103,Maynooth,D914,0,4384_7778018_Txc46469C6C-3B69-4141-988A-CE618E8D447B,4384_474 -4367_81482,316,4384_7107,Maynooth,D920,0,4384_7778018_Txc2FC48ECE-BCB5-4639-9EE6-419058729C2F,4384_467 -4367_81482,319,4384_7108,Maynooth,D914,0,4384_7778018_TxcC1414792-8736-4AAA-ADAD-139AC3B44D0B,4384_474 -4367_81482,138,4384_7109,Maynooth,D920,0,4384_7778018_TxcF06E22A5-85D3-48AE-BFAB-454D98ADA294,4384_467 -4367_81485,320,4384_711,Bray (Daly),E218,1,4384_7778018_Txc0BC5B280-A41A-41BC-B948-2235A89563A4,4384_8 -4367_81482,317,4384_7110,Maynooth,D920,0,4384_7778018_Txc7C7ABCB5-392D-4638-8EB1-15742E5701BA,4384_467 -4367_81482,318,4384_7111,Maynooth,D920,0,4384_7778018_TxcFA3B97EA-5AAF-4393-8B80-B7C6E481AC17,4384_467 -4367_81482,271,4384_7112,Maynooth,D914,0,4384_7778018_TxcB25DA7DF-44F8-499D-BE46-075EA03CDA8A,4384_474 -4367_81482,320,4384_7113,Maynooth,D914,0,4384_7778018_Txc784BE621-0740-45C6-97CC-0DA28C0E0D38,4384_474 -4367_81482,314,4384_7114,M3 Parkway,D318,0,4384_7778018_Txc1584AEA6-3F9E-4F87-AD27-8B7FB71F9C70,4384_464 -4367_81482,315,4384_7116,M3 Parkway,D318,0,4384_7778018_Txc44703205-4770-4DEC-ADD7-22FF417468A6,4384_464 -4367_81482,314,4384_7118,Maynooth,D922,0,4384_7778018_Txc6E1D1ABE-130F-42CF-9F8D-8FB0249F4EE1,4384_468 -4367_81482,315,4384_7119,Maynooth,D922,0,4384_7778018_Txc77E8D751-38FF-48FC-8157-F1AE8A949B75,4384_468 -4367_81482,314,4384_7122,Maynooth,D923,0,4384_7778018_Txc167C2BAA-659A-4B3A-AB17-6F8A4EAABC53,4384_468 -4367_81482,315,4384_7123,Maynooth,D923,0,4384_7778018_Txc5514DD33-54D5-4E79-8896-2CD823C9C362,4384_468 -4367_81482,23,4384_7124,M3 Parkway,D339,0,4384_7778018_Txc7C8B0632-3179-444B-B26B-6E0106543D73,4384_463 -4367_81482,316,4384_7126,M3 Parkway,D339,0,4384_7778018_Txc33378D3F-EF59-4B49-81DF-D044BD573636,4384_463 -4367_81482,138,4384_7127,M3 Parkway,D339,0,4384_7778018_TxcD2CEBF3E-B4DD-4ABE-9389-D329CDCB18F1,4384_463 -4367_81482,317,4384_7128,M3 Parkway,D339,0,4384_7778018_TxcD2036447-5EA7-4679-AC99-71B10E96B4B5,4384_463 -4367_81482,318,4384_7129,M3 Parkway,D339,0,4384_7778018_Txc07EF42C0-303B-4491-B063-4E91B7FEB339,4384_463 -4367_81482,23,4384_7130,Maynooth,D921,0,4384_7778018_Txc77758FE4-449D-43D1-BB91-C0C83002F121,4384_467 -4367_81482,278,4384_7131,Maynooth,D915,0,4384_7778018_Txc465EE819-D52B-4F03-97BC-864C9BA745DF,4384_474 -4367_81482,316,4384_7135,Maynooth,D921,0,4384_7778018_TxcD5E4FD7B-B231-4B22-9E95-34F6EF97F7B3,4384_467 -4367_81482,319,4384_7136,Maynooth,D915,0,4384_7778018_TxcEFB1B013-9015-400F-A2AD-BF35C0DB19C0,4384_474 -4367_81482,138,4384_7137,Maynooth,D921,0,4384_7778018_Txc283E44C0-F8A9-421C-94EF-F566A5FE5251,4384_467 -4367_81482,317,4384_7138,Maynooth,D921,0,4384_7778018_TxcFB0F4513-4045-4C04-A90F-782589B21502,4384_467 -4367_81482,318,4384_7139,Maynooth,D921,0,4384_7778018_TxcEF1F6ED6-CF47-4DA7-9641-00E55510B22B,4384_467 -4367_81482,271,4384_7140,Maynooth,D915,0,4384_7778018_Txc3D72D01F-014F-447F-8805-8C971A03A138,4384_474 -4367_81482,320,4384_7141,Maynooth,D915,0,4384_7778018_Txc1482D829-99D4-4A34-93B4-9BE2B7C466DA,4384_474 -4367_81482,278,4384_7142,M3 Parkway,D377,0,4384_7778018_Txc44EB3056-D592-49B5-8AF7-C55620126CEA,4384_463 -4367_81482,319,4384_7145,M3 Parkway,D377,0,4384_7778018_Txc99338F01-6555-4268-BCBE-71C708E28077,4384_463 -4367_81482,271,4384_7146,M3 Parkway,D377,0,4384_7778018_TxcAFC20D09-8C49-4F4E-83F5-0476DCAFAC37,4384_463 -4367_81482,320,4384_7147,M3 Parkway,D377,0,4384_7778018_Txc84752583-4FD7-4361-B555-B127FF78E93D,4384_463 -4367_81482,314,4384_7149,M3 Parkway,D319,0,4384_7778018_Txc060B6877-5201-4676-AC35-8EF234F69613,4384_464 -4367_81482,315,4384_7150,M3 Parkway,D319,0,4384_7778018_Txc037C8A07-01AF-4E21-ABA7-3E02DFFA3C39,4384_464 -4367_81482,314,4384_7151,Maynooth,D924,0,4384_7778018_TxcE169DF90-075A-4674-952D-25AF9DBC41FF,4384_470 -4367_81482,315,4384_7153,Maynooth,D924,0,4384_7778018_TxcE7964A2B-834F-4EA0-A035-E1186C53A09C,4384_470 -4367_81482,23,4384_7154,Maynooth,D922,0,4384_7778018_Txc2CDD1992-BB5F-45D0-991C-EB5663072A78,4384_467 -4367_81482,278,4384_7155,Maynooth,D916,0,4384_7778018_Txc93E0180F-8F4D-40F2-9942-C011491BEF50,4384_474 -4367_81482,316,4384_7159,Maynooth,D922,0,4384_7778018_Txc88FBC664-32D3-4BE9-B7EF-40B48C390868,4384_467 -4367_81482,319,4384_7160,Maynooth,D916,0,4384_7778018_TxcD928694A-80A5-451F-8940-628243B73CD0,4384_474 -4367_81482,138,4384_7161,Maynooth,D922,0,4384_7778018_Txc9A9167B2-91A6-4EFC-B0FF-13B0F752CCCD,4384_467 -4367_81482,317,4384_7162,Maynooth,D922,0,4384_7778018_TxcBE3DCCEA-9B71-4939-A62C-40D33E1B67F7,4384_467 -4367_81482,318,4384_7163,Maynooth,D922,0,4384_7778018_TxcC19759BB-B304-4408-B018-CD4BB8D1D22F,4384_467 -4367_81482,271,4384_7164,Maynooth,D916,0,4384_7778018_Txc797D66B8-54F0-48A2-8AF2-3B492A193434,4384_474 -4367_81482,320,4384_7165,Maynooth,D916,0,4384_7778018_TxcCD42AE95-7A89-4793-B525-16627020527B,4384_474 -4367_81482,314,4384_7167,M3 Parkway,D320,0,4384_7778018_TxcCD3DB784-6BDF-4C8A-B3DF-21D2A1FCF091,4384_464 -4367_81482,315,4384_7168,M3 Parkway,D320,0,4384_7778018_Txc23D53658-6C3B-4B40-91D1-AC7A613C9AB5,4384_464 -4367_81482,314,4384_7170,Longford,D925,0,4384_7778018_TxcBBAB7A33-B7C3-4D09-9131-26BA7E325CB6,4384_471 -4367_81482,315,4384_7172,Longford,D925,0,4384_7778018_TxcD12707A9-2C38-4B60-8A7C-C5EF8FA30E76,4384_471 -4367_81482,23,4384_7173,M3 Parkway,D340,0,4384_7778018_Txc1EE09011-BE45-44DB-9BCA-6424B5C5952A,4384_463 -4367_81482,316,4384_7175,M3 Parkway,D340,0,4384_7778018_Txc88B981DC-1150-49E4-A0AD-FA79E30C5A05,4384_463 -4367_81482,138,4384_7176,M3 Parkway,D340,0,4384_7778018_TxcB296AF1E-A529-4468-BA9A-1BDFCC56EE78,4384_463 -4367_81482,317,4384_7177,M3 Parkway,D340,0,4384_7778018_Txc3B75E84F-AFA0-440D-84D9-219429E3A11F,4384_463 -4367_81482,318,4384_7178,M3 Parkway,D340,0,4384_7778018_Txc90250967-E51A-4116-AC52-74247420BB3C,4384_463 -4367_81482,23,4384_7179,Maynooth,D923,0,4384_7778018_TxcDB268708-A7E1-4A7B-8891-DBA91F7174A2,4384_467 -4367_81482,278,4384_7180,Maynooth,D917,0,4384_7778018_Txc56C52B1D-5171-4D0E-AE09-A806F5DB0858,4384_474 -4367_81482,316,4384_7184,Maynooth,D923,0,4384_7778018_Txc5F8B54DF-2972-414C-B971-FCEC973A6DC1,4384_467 -4367_81482,319,4384_7185,Maynooth,D917,0,4384_7778018_Txc599EB181-91DF-45DC-BCBF-472EF542C8BA,4384_474 -4367_81482,138,4384_7186,Maynooth,D923,0,4384_7778018_Txc41699885-4C99-4856-93E1-E079BAFAAC7A,4384_467 -4367_81482,317,4384_7187,Maynooth,D923,0,4384_7778018_Txc46132894-CE15-47CD-BC9E-5E8BE498A0EF,4384_467 -4367_81482,318,4384_7188,Maynooth,D923,0,4384_7778018_TxcC2584E56-3A99-44CA-8A50-98E349B23871,4384_467 -4367_81482,271,4384_7189,Maynooth,D917,0,4384_7778018_TxcE5D0DF90-0763-490D-AF58-D9E68A0B17B6,4384_474 -4367_81485,314,4384_719,Bray (Daly),E239,1,4384_7778018_TxcCCF709C6-7830-4C7C-8EA0-2BEE7F686B81,4384_6 -4367_81482,320,4384_7190,Maynooth,D917,0,4384_7778018_TxcD92DC8C4-DEE7-4D0A-85DA-D77800E93FEB,4384_474 -4367_81482,278,4384_7191,M3 Parkway,D378,0,4384_7778018_Txc0163A8DA-1107-4D8D-B23E-4B50DA2E9876,4384_463 -4367_81482,319,4384_7194,M3 Parkway,D378,0,4384_7778018_Txc59BDAD5C-526A-4262-8D1D-EDE755336706,4384_463 -4367_81482,271,4384_7195,M3 Parkway,D378,0,4384_7778018_Txc87A57776-D747-4F0E-A692-AE6E409D3818,4384_463 -4367_81482,320,4384_7196,M3 Parkway,D378,0,4384_7778018_TxcD7D8C28D-50AD-4BD1-8A14-CCF723C980C4,4384_463 -4367_81482,314,4384_7197,M3 Parkway,D321,0,4384_7778018_Txc0754F975-0C9C-4EF7-8D55-68F5973A7FBD,4384_464 -4367_81482,315,4384_7199,M3 Parkway,D321,0,4384_7778018_Txc56B86642-13A5-4920-9160-BC073C4DEE4F,4384_464 -4367_81485,314,4384_72,Bray (Daly),E207,1,4384_7778018_Txc920378B5-A4A4-43AD-85F7-F9A726D7DAAD,4384_7 -4367_81482,314,4384_7200,Maynooth,D926,0,4384_7778018_Txc8330979D-B43F-46E8-93E9-885395E554A6,4384_467 -4367_81482,314,4384_7201,Maynooth,D929,0,4384_7778018_Txc77C5EF6D-59C1-4AC5-BA99-917767DA9968,4384_472 -4367_81482,315,4384_7203,Maynooth,D926,0,4384_7778018_TxcE9DD0C87-0AEC-4471-96CF-28EDE22E6CDB,4384_467 -4367_81482,315,4384_7204,Maynooth,D929,0,4384_7778018_Txc4BEE15A4-F76C-462E-88AB-C96236F91BC8,4384_472 -4367_81482,314,4384_7205,Maynooth,D927,0,4384_7778018_TxcD6810BDE-2C5A-49ED-9386-9E91D14053DB,4384_470 -4367_81482,315,4384_7207,Maynooth,D927,0,4384_7778018_Txc76F48536-29BE-4EA3-8A5F-E2CD110812F6,4384_470 -4367_81482,23,4384_7208,Maynooth,D924,0,4384_7778018_Txc4980088C-E4A6-4937-8515-5B3954013508,4384_467 -4367_81482,278,4384_7209,Maynooth,D918,0,4384_7778018_TxcE199D774-A418-4F43-89DE-52E51AFA06E2,4384_474 -4367_81482,316,4384_7213,Maynooth,D924,0,4384_7778018_Txc7842BDBE-53AA-4D47-B25E-38DD5817CA2D,4384_467 -4367_81482,319,4384_7214,Maynooth,D918,0,4384_7778018_TxcD77A3CA7-5EA4-4B7B-B3E8-393264E228AF,4384_474 -4367_81482,138,4384_7215,Maynooth,D924,0,4384_7778018_TxcEDF80EA1-9CDE-446C-87A2-F56FFAD10F12,4384_467 -4367_81482,317,4384_7216,Maynooth,D924,0,4384_7778018_TxcB2436FFC-0E8E-43B4-819B-7A4E1E162500,4384_467 -4367_81482,318,4384_7217,Maynooth,D924,0,4384_7778018_Txc6A32EE16-D98D-4BB3-B1DD-1D50EE3B85D4,4384_467 -4367_81482,271,4384_7218,Maynooth,D918,0,4384_7778018_Txc4E92ADF4-DE1B-4673-ADE9-CC4F86597D84,4384_474 -4367_81482,320,4384_7219,Maynooth,D918,0,4384_7778018_TxcD349795C-E1FF-4414-9309-1FA0316B95A9,4384_474 -4367_81482,314,4384_7220,M3 Parkway,D322,0,4384_7778018_TxcE379F4B4-7128-4C3F-B591-8ED02D863A9D,4384_464 -4367_81482,315,4384_7222,M3 Parkway,D322,0,4384_7778018_Txc4006BC4F-D1E8-4E08-8626-7064B2DD7AFB,4384_464 -4367_81482,314,4384_7223,Maynooth,D928,0,4384_7778018_TxcA8852E23-8242-4972-A53A-BC2F2262C4E0,4384_467 -4367_81482,315,4384_7225,Maynooth,D928,0,4384_7778018_Txc47F02E3B-2FEA-4973-B27A-992096BAB5E1,4384_467 -4367_81482,23,4384_7228,M3 Parkway,D341,0,4384_7778018_Txc69E63E40-54A6-4CEE-A883-A93D199C520F,4384_463 -4367_81485,315,4384_723,Bray (Daly),E239,1,4384_7778018_Txc9FBFB547-9222-44AB-8317-9513FB2660B7,4384_6 -4367_81482,316,4384_7230,M3 Parkway,D341,0,4384_7778018_Txc9768E746-F1DE-4E0A-B4FF-107869471097,4384_463 -4367_81482,138,4384_7231,M3 Parkway,D341,0,4384_7778018_Txc59F4FB5B-0C4B-41AE-8EDD-EB3F97E7B56F,4384_463 -4367_81482,317,4384_7232,M3 Parkway,D341,0,4384_7778018_Txc4B4D12A3-A309-4EED-BF38-93C0252DC2AC,4384_463 -4367_81482,318,4384_7233,M3 Parkway,D341,0,4384_7778018_Txc294AE163-92C7-4121-85CC-5EEB2D4E222A,4384_463 -4367_81482,23,4384_7234,Maynooth,D925,0,4384_7778018_TxcC60AF8D9-E8A0-49BD-AF1A-64790E9BB143,4384_467 -4367_81482,278,4384_7235,Maynooth,D919,0,4384_7778018_Txc25E1AF5A-F4FF-423A-9D69-CBD786954458,4384_474 -4367_81482,316,4384_7239,Maynooth,D925,0,4384_7778018_TxcA37B35FA-1E85-416E-B0C1-5B5B1382072B,4384_467 -4367_81485,23,4384_724,Bray (Daly),E226,1,4384_7778018_TxcF2D64A54-83C5-4170-9186-D279E8A6C844,4384_6 -4367_81482,319,4384_7240,Maynooth,D919,0,4384_7778018_Txc2B99A22C-B234-4DB9-9597-43A4D94C8BAE,4384_474 -4367_81482,138,4384_7241,Maynooth,D925,0,4384_7778018_Txc87AE35A0-A5B7-45DE-8D82-0B29EC5D7590,4384_467 -4367_81482,317,4384_7242,Maynooth,D925,0,4384_7778018_Txc90B993DE-13D6-4DB8-8740-0694BD59E660,4384_467 -4367_81482,318,4384_7243,Maynooth,D925,0,4384_7778018_TxcAD6C3AA0-B5B0-4CAC-BD9A-2D954146407D,4384_467 -4367_81482,271,4384_7244,Maynooth,D919,0,4384_7778018_Txc13A31164-B30B-435D-8E9E-7E6C93390250,4384_474 -4367_81482,320,4384_7245,Maynooth,D919,0,4384_7778018_TxcAE29F4C9-3D38-430A-9118-4E54D5D7A71D,4384_474 -4367_81482,278,4384_7246,M3 Parkway,D379,0,4384_7778018_TxcCAC4AADE-AD27-48C9-B386-9CEA2BEBDAAE,4384_463 -4367_81482,319,4384_7249,M3 Parkway,D379,0,4384_7778018_Txc82FB638D-09BB-40EF-86D1-CD84339303CE,4384_463 -4367_81482,271,4384_7250,M3 Parkway,D379,0,4384_7778018_TxcF11B1639-CECE-48FC-85E8-68308E18BF79,4384_463 -4367_81482,320,4384_7251,M3 Parkway,D379,0,4384_7778018_TxcF6742AB2-4329-4061-A8C5-2CB1B35E5FA7,4384_463 -4367_81482,314,4384_7253,M3 Parkway,D323,0,4384_7778018_Txc6EC6A9DC-529D-4C6E-A1FF-7B3E100062F2,4384_464 -4367_81482,315,4384_7254,M3 Parkway,D323,0,4384_7778018_TxcC989E6BE-9DDB-4905-B2DE-A2778A04117D,4384_464 -4367_81482,314,4384_7257,Maynooth,D931,0,4384_7778018_Txc000AB8DC-429D-48B2-8974-6CC01A12F96E,4384_467 -4367_81482,315,4384_7258,Maynooth,D931,0,4384_7778018_Txc909382F9-681E-47F2-85DB-552F68F31502,4384_467 -4367_81482,23,4384_7259,Maynooth,D926,0,4384_7778018_Txc686C3514-51F3-4906-8AD2-6520B65C61B9,4384_467 -4367_81482,278,4384_7260,Maynooth,D920,0,4384_7778018_Txc06505D36-F1FD-4FDB-91BB-81A1781C79CE,4384_474 -4367_81482,316,4384_7264,Maynooth,D926,0,4384_7778018_Txc687F0A0D-16B9-43C0-BF66-E566F9A3BACA,4384_467 -4367_81482,319,4384_7265,Maynooth,D920,0,4384_7778018_Txc991ED5FC-D6B1-457C-89B0-67F2462B9A89,4384_474 -4367_81482,138,4384_7266,Maynooth,D926,0,4384_7778018_TxcC781A502-52B2-436B-A14D-4AA6F422A835,4384_467 -4367_81482,317,4384_7267,Maynooth,D926,0,4384_7778018_TxcF4213645-DA93-4426-9D2E-868C01C801A1,4384_467 -4367_81482,318,4384_7268,Maynooth,D926,0,4384_7778018_TxcA54C842D-7BB4-4B56-A897-46F147154E02,4384_467 -4367_81482,271,4384_7269,Maynooth,D920,0,4384_7778018_Txc1B3281A2-525B-4FD4-923C-BCEB225AFC42,4384_474 -4367_81482,320,4384_7270,Maynooth,D920,0,4384_7778018_TxcD7C5F1FC-4D8F-4C1D-BB72-D113A08BDA79,4384_474 -4367_81482,314,4384_7271,M3 Parkway,D324,0,4384_7778018_Txc52CA05F1-8A1C-4B64-B58F-7F3539299E98,4384_464 -4367_81482,315,4384_7273,M3 Parkway,D324,0,4384_7778018_Txc3CC4C164-F3C3-4DC8-9501-CEFF16B3716E,4384_464 -4367_81482,23,4384_7274,M3 Parkway,D342,0,4384_7778018_Txc6BC9869F-EEFB-4FE5-91C7-DA3A4C245A75,4384_463 -4367_81482,316,4384_7276,M3 Parkway,D342,0,4384_7778018_Txc328DBDC4-6F9D-4C58-A736-C8F265587EC0,4384_463 -4367_81482,138,4384_7277,M3 Parkway,D342,0,4384_7778018_Txc735D4B1F-C956-4C0E-93B5-231973CB6F4C,4384_463 -4367_81482,317,4384_7278,M3 Parkway,D342,0,4384_7778018_TxcCEA04CDF-35B6-4A96-86B5-89E43C53728B,4384_463 -4367_81482,318,4384_7279,M3 Parkway,D342,0,4384_7778018_Txc64A58775-CB5A-4E03-9545-F706109264C7,4384_463 -4367_81485,323,4384_728,Bray (Daly),E226,1,4384_7778018_TxcE3AF4E6A-91D2-42F7-BEC9-034930E26B3A,4384_6 -4367_81482,314,4384_7280,Maynooth,D932,0,4384_7778018_TxcE8178DD9-B49D-4DBF-A4BE-386A0D51A24C,4384_467 -4367_81482,23,4384_7281,Maynooth,D927,0,4384_7778018_Txc88D03870-245C-463B-A800-F12A7F5EF0B9,4384_467 -4367_81482,278,4384_7282,Maynooth,D921,0,4384_7778018_Txc5015B769-8C32-4903-87A2-199FDE8EFA3F,4384_474 -4367_81482,315,4384_7287,Maynooth,D932,0,4384_7778018_Txc9BEB0D16-2A41-4D2E-9311-9D7372904AC8,4384_467 -4367_81482,316,4384_7288,Maynooth,D927,0,4384_7778018_TxcA63A0D7C-A85E-47E5-BD10-941C4951F51B,4384_467 -4367_81482,319,4384_7289,Maynooth,D921,0,4384_7778018_TxcFA0BC26E-9B2B-4851-A690-FEE56F6926E8,4384_474 -4367_81485,324,4384_729,Bray (Daly),E226,1,4384_7778018_TxcD5B472DA-35BD-4628-AB97-275141D25D11,4384_44 -4367_81482,138,4384_7290,Maynooth,D927,0,4384_7778018_TxcB3C49C92-240E-4549-AE97-0A5E5F36533A,4384_467 -4367_81482,317,4384_7291,Maynooth,D927,0,4384_7778018_Txc7868751D-63CF-4C08-B231-748DC08D8DEE,4384_467 -4367_81482,318,4384_7292,Maynooth,D927,0,4384_7778018_TxcAB389EFA-9ECC-4209-9ED4-8EDAF01EE3C0,4384_467 -4367_81482,271,4384_7293,Maynooth,D921,0,4384_7778018_TxcC3381C4D-1004-4537-ADA2-93586F6C332A,4384_474 -4367_81482,320,4384_7294,Maynooth,D921,0,4384_7778018_Txc832761D0-2E47-46A0-BED4-472C535ADFE1,4384_474 -4367_81482,278,4384_7295,M3 Parkway,D380,0,4384_7778018_TxcFA8F4FDE-8B1C-41DA-B1CB-338A65B6BA5F,4384_463 -4367_81482,319,4384_7298,M3 Parkway,D380,0,4384_7778018_Txc22311B49-2D6F-49B2-828A-9CD31C503BCB,4384_463 -4367_81482,271,4384_7299,M3 Parkway,D380,0,4384_7778018_Txc2BBE0582-7788-4684-8D97-77946A5A9255,4384_463 -4367_81485,138,4384_730,Bray (Daly),E226,1,4384_7778018_Txc2F28C858-9AA3-4B70-AEA8-7EA6ED4ACB4E,4384_6 -4367_81482,320,4384_7300,M3 Parkway,D380,0,4384_7778018_TxcBFE4CAC9-41EA-488D-84AA-5BBBF41123DB,4384_463 -4367_81482,314,4384_7301,M3 Parkway,D325,0,4384_7778018_Txc170BF67D-F00C-4D05-9941-2B5DC5E48ABC,4384_464 -4367_81482,315,4384_7303,M3 Parkway,D325,0,4384_7778018_Txc58F1F056-EAEC-4496-8A45-9BFABCBED5D2,4384_464 -4367_81482,314,4384_7305,Maynooth,D933,0,4384_7778018_TxcA5C8DB6E-1B36-4891-B6C1-5197F8668733,4384_467 -4367_81482,23,4384_7306,Maynooth,D928,0,4384_7778018_TxcF1EED40A-96B1-4ADD-8C17-25D3895EE62C,4384_474 -4367_81482,315,4384_7309,Maynooth,D933,0,4384_7778018_Txc69847D72-FF67-4F2F-BEEA-77C683CFF8C5,4384_467 -4367_81485,317,4384_731,Bray (Daly),E226,1,4384_7778018_TxcB93557B3-E9E5-4975-892D-6BBB7D42F1FB,4384_6 -4367_81482,316,4384_7310,Maynooth,D928,0,4384_7778018_TxcA0D462F4-E272-4D4E-8E09-F06CB0BFB6C1,4384_474 -4367_81482,138,4384_7311,Maynooth,D928,0,4384_7778018_TxcCF6EE9E5-9BDB-40A2-B170-793035C08083,4384_474 -4367_81482,317,4384_7312,Maynooth,D928,0,4384_7778018_TxcEC35E22C-9215-41B4-9E90-BE4671DB5D9F,4384_474 -4367_81482,318,4384_7313,Maynooth,D928,0,4384_7778018_TxcF1A81583-3269-493E-9141-4EAC47289139,4384_474 -4367_81482,278,4384_7314,M3 Parkway,D381,0,4384_7778018_TxcB5D3E246-B675-4F26-9E2C-62CFB23334FE,4384_463 -4367_81482,319,4384_7317,M3 Parkway,D381,0,4384_7778018_Txc6BDA07A5-722A-4093-AF07-177C54DBE382,4384_463 -4367_81482,271,4384_7318,M3 Parkway,D381,0,4384_7778018_Txc3B2559DF-4180-4F71-A9C5-8FD492D8CD73,4384_463 -4367_81482,320,4384_7319,M3 Parkway,D381,0,4384_7778018_Txc2AEC79F0-E47A-4205-84C9-6D4282823BE2,4384_463 -4367_81485,318,4384_732,Bray (Daly),E226,1,4384_7778018_Txc15D0F98D-18F0-477C-8327-930F9AEE9F01,4384_6 -4367_81482,23,4384_7322,M3 Parkway,D343,0,4384_7778018_TxcC672CCC8-CF83-4F7C-A813-02A61A91ABE4,4384_463 -4367_81482,316,4384_7324,M3 Parkway,D343,0,4384_7778018_Txc1582D3FC-2367-4BBC-B9AE-49074B60AA2C,4384_463 -4367_81482,138,4384_7325,M3 Parkway,D343,0,4384_7778018_TxcFB0CE1A4-85E5-41D0-9D51-DA87C35FF968,4384_463 -4367_81482,317,4384_7326,M3 Parkway,D343,0,4384_7778018_Txc57505954-1E5B-4BBE-9F87-13F47EC2917A,4384_463 -4367_81482,318,4384_7327,M3 Parkway,D343,0,4384_7778018_TxcBC63F23B-61E7-4266-B269-1B3903A02F10,4384_463 -4367_81482,314,4384_7328,Maynooth,D934,0,4384_7778018_Txc7C366AA9-0232-4D49-91E0-1BCA659DA12D,4384_467 -4367_81482,23,4384_7329,Maynooth,D929,0,4384_7778018_TxcF8918BCA-F25A-4B74-9692-D6D7C9E4C95C,4384_474 -4367_81482,278,4384_7330,Maynooth,D923,0,4384_7778018_Txc32EF24D3-946B-46DB-B605-A9C0F11DC49E,4384_475 -4367_81482,315,4384_7335,Maynooth,D934,0,4384_7778018_Txc0F46D346-2EDA-4AA8-8198-8123E5C4F5EE,4384_467 -4367_81482,316,4384_7336,Maynooth,D929,0,4384_7778018_TxcCADDC7CB-5F46-4EDD-85D3-387FE2BBCABF,4384_474 -4367_81482,319,4384_7337,Maynooth,D923,0,4384_7778018_Txc2A1D367F-A2C6-4C94-BD44-D362892FC745,4384_475 -4367_81482,138,4384_7338,Maynooth,D929,0,4384_7778018_Txc50B1A899-E74A-42F1-ADDC-F410C932ADDA,4384_474 -4367_81482,317,4384_7339,Maynooth,D929,0,4384_7778018_TxcE8F7FBA5-AD23-494A-BC5C-C832EA37642E,4384_474 -4367_81485,314,4384_734,Greystones,E120,1,4384_7778018_Txc58DFDBC3-CFA8-4A34-A8A4-79DA151A9D09,4384_1 -4367_81482,318,4384_7340,Maynooth,D929,0,4384_7778018_Txc35B99307-C5C5-4363-A91B-0B4858B0BB90,4384_474 -4367_81482,271,4384_7341,Maynooth,D923,0,4384_7778018_Txc2DA3273B-2A36-4263-B933-26914CBDE02A,4384_475 -4367_81482,320,4384_7342,Maynooth,D923,0,4384_7778018_Txc2DAD4795-0919-47D4-81FF-04539DD8A09A,4384_475 -4367_81482,314,4384_7346,M3 Parkway,D327,0,4384_7778018_Txc685FBDE0-4BA3-421E-A7C3-EEE9498AE8ED,4384_463 -4367_81482,315,4384_7347,M3 Parkway,D327,0,4384_7778018_TxcC93DDC1A-6EB9-4A5B-8015-55BEE266FF27,4384_463 -4367_81482,278,4384_7349,M3 Parkway,D382,0,4384_7778018_TxcB67D8779-5BDA-4604-9DE6-F2FE23E874F5,4384_463 -4367_81482,319,4384_7352,M3 Parkway,D382,0,4384_7778018_Txc0575ED26-775E-405B-A976-A51C2E8B39C5,4384_463 -4367_81482,271,4384_7353,M3 Parkway,D382,0,4384_7778018_Txc92356D02-4366-4B97-8B08-074A175AB93A,4384_463 -4367_81482,320,4384_7354,M3 Parkway,D382,0,4384_7778018_Txc9EE3F86E-018F-4519-BE13-D14CB7E1B8B5,4384_463 -4367_81482,23,4384_7355,M3 Parkway,D344,0,4384_7778018_TxcA35423E2-C77C-4990-872F-8E4226853571,4384_463 -4367_81482,316,4384_7357,M3 Parkway,D344,0,4384_7778018_TxcE1F359B6-C123-48DA-B676-8AFB0D80F442,4384_463 -4367_81482,138,4384_7358,M3 Parkway,D344,0,4384_7778018_Txc72C2EB33-B914-4884-8656-A280349498C3,4384_463 -4367_81482,317,4384_7359,M3 Parkway,D344,0,4384_7778018_Txc16044D6F-3123-4377-8CA3-9C688F90AEAD,4384_463 -4367_81482,318,4384_7360,M3 Parkway,D344,0,4384_7778018_TxcBDFB19C0-8E90-4441-BAA3-1A7527F1DEB9,4384_463 -4367_81482,314,4384_7362,Mullingar,D935,0,4384_7778018_Txc6B7AB63F-A4A1-455F-9170-6023B22A29CF,4384_473 -4367_81482,315,4384_7365,Mullingar,D935,0,4384_7778018_TxcAB840DD4-B45A-469E-B61A-C6405EB6D91B,4384_473 -4367_81482,314,4384_7366,M3 Parkway,D328,0,4384_7778018_TxcD17430B7-2075-4611-977B-D355959C0A62,4384_463 -4367_81482,315,4384_7367,M3 Parkway,D328,0,4384_7778018_Txc16146B8C-95BB-4619-9EBF-FC94DCC291BB,4384_463 -4367_81482,314,4384_7368,Maynooth,D936,0,4384_7778018_TxcB16D12CE-7FAA-4E54-BE8E-FC7C5CC1F6D9,4384_470 -4367_81482,315,4384_7369,Maynooth,D936,0,4384_7778018_Txc381E222A-C6C2-47CE-95D7-1F788F822A46,4384_470 -4367_81485,315,4384_737,Greystones,E120,1,4384_7778018_Txc53106775-6091-460A-A48F-8C98F43843F8,4384_1 -4367_81482,278,4384_7371,Maynooth,D925,0,4384_7778018_Txc9F456D4F-0480-45DA-9856-0BA1601EE473,4384_467 -4367_81482,319,4384_7374,Maynooth,D925,0,4384_7778018_Txc42AB0928-4CFD-4DAB-9118-0AD27237465E,4384_467 -4367_81482,271,4384_7375,Maynooth,D925,0,4384_7778018_Txc0D286F5E-C14C-42A7-95BA-2F2CB488B667,4384_467 -4367_81482,320,4384_7376,Maynooth,D925,0,4384_7778018_Txc6DB94900-7F07-471B-9DF4-183B372AC669,4384_467 -4367_81482,23,4384_7377,Maynooth,D931,0,4384_7778018_Txc868B1B97-FBCD-402F-9627-06930E9ACC62,4384_467 -4367_81485,278,4384_738,Bray (Daly),E219,1,4384_7778018_Txc8D3A7E96-CEF2-41A0-BA63-CAD4F67252C5,4384_6 -4367_81482,316,4384_7381,Maynooth,D931,0,4384_7778018_TxcF4368BA6-E06B-4FB7-8F48-47AB0E79A1D5,4384_467 -4367_81482,317,4384_7382,Maynooth,D931,0,4384_7778018_Txc8A275012-8F1D-46C2-9111-E46E07C7BB4E,4384_467 -4367_81482,331,4384_7383,Maynooth,D931,0,4384_7778018_Txc5BECE47B-AA74-4E97-ABEB-3779975FA2DE,4384_467 -4367_81482,23,4384_7384,M3 Parkway,D345,0,4384_7778018_Txc9968CAC9-B753-4602-812E-77EBA63C19E1,4384_463 -4367_81482,278,4384_7385,M3 Parkway,D383,0,4384_7778018_Txc880D8587-51E0-435C-8F83-7838DEF573E4,4384_466 -4367_81482,316,4384_7389,M3 Parkway,D345,0,4384_7778018_Txc74CA22B8-6382-4B05-8460-57FD9AAFE0F0,4384_463 -4367_81482,319,4384_7390,M3 Parkway,D383,0,4384_7778018_Txc99841112-848D-4578-BC69-2BEE397345E8,4384_466 -4367_81482,317,4384_7391,M3 Parkway,D345,0,4384_7778018_Txc6DDFE09E-2E4B-4AE8-AA8E-61F2F65C969F,4384_463 -4367_81482,331,4384_7392,M3 Parkway,D345,0,4384_7778018_Txc891BC75D-B34F-40F0-B124-E5F76F6A8ABE,4384_463 -4367_81482,271,4384_7393,M3 Parkway,D383,0,4384_7778018_Txc29911714-A5E2-4E4B-8C8F-0342455B6825,4384_466 -4367_81482,320,4384_7394,M3 Parkway,D383,0,4384_7778018_Txc853B57F2-FA22-429B-8340-9546DD2F9815,4384_466 -4367_81482,314,4384_7395,M3 Parkway,D330,0,4384_7778018_Txc8ED6CA43-6838-43BC-B887-21D83CFCF1A0,4384_463 -4367_81482,315,4384_7397,M3 Parkway,D330,0,4384_7778018_TxcFB98CA9E-E5C8-467C-A6F3-4CFDD031DABA,4384_463 -4367_81482,314,4384_7398,Maynooth,D938,0,4384_7778018_TxcEB658341-B824-4E74-8393-E75F6508603B,4384_470 -4367_81485,315,4384_74,Bray (Daly),E207,1,4384_7778018_Txc93ACF136-E3BE-4ECD-91F3-EE4445CC713A,4384_7 -4367_81482,315,4384_7402,Maynooth,D938,0,4384_7778018_Txc4D068549-FD1C-46FA-8ACB-359575069640,4384_470 -4367_81482,23,4384_7408,Maynooth,D933,0,4384_7778018_TxcAE92A500-C8C0-4B16-8BF1-EB0FE7563CF2,4384_467 -4367_81482,278,4384_7409,Maynooth,D926,0,4384_7778018_Txc1C6C5CBD-4F53-420F-BF49-16A8997696BC,4384_474 -4367_81485,319,4384_741,Bray (Daly),E219,1,4384_7778018_Txc4F2D8C89-09B5-4CF6-A4C4-C72CD076D648,4384_6 -4367_81482,316,4384_7414,Maynooth,D933,0,4384_7778018_TxcC3D4FDF9-A31D-4147-AB35-F0326C15DF26,4384_467 -4367_81482,319,4384_7415,Maynooth,D926,0,4384_7778018_TxcCC8E2319-0F98-4D84-9BE1-408F8B0F7F89,4384_474 -4367_81482,317,4384_7416,Maynooth,D933,0,4384_7778018_TxcCF0CD87E-4B74-44E7-BCDF-4350CB748B47,4384_467 -4367_81482,331,4384_7417,Maynooth,D933,0,4384_7778018_TxcC91978A1-9C6E-4F24-8B95-C10F3A8183FB,4384_467 -4367_81482,271,4384_7418,Maynooth,D926,0,4384_7778018_TxcA0FA493F-A528-4A7A-B016-73575CD5E2D4,4384_474 -4367_81482,320,4384_7419,Maynooth,D926,0,4384_7778018_Txc1F593B84-B85B-44EC-A22E-0EB64F39A7BC,4384_474 -4367_81485,324,4384_742,Lansdowne Road,E550,1,4384_7778018_TxcF1B31736-740F-4EBC-9DE2-7DEFAC7ED9E3,4384_23 -4367_81482,23,4384_7420,M3 Parkway,D346,0,4384_7778018_Txc2DF9D898-B94D-4276-AE71-E7A5B5D08900,4384_463 -4367_81482,316,4384_7422,M3 Parkway,D346,0,4384_7778018_Txc81BC7B2F-DDAE-4945-AEBD-0A0C0DFB3C8D,4384_463 -4367_81482,317,4384_7423,M3 Parkway,D346,0,4384_7778018_TxcDE4A0161-AAD5-4F99-A303-21FB3D1622E8,4384_463 -4367_81482,331,4384_7424,M3 Parkway,D346,0,4384_7778018_Txc973B2F7B-2314-4553-BE67-7B6675446F18,4384_463 -4367_81482,278,4384_7425,M3 Parkway,D384,0,4384_7778018_TxcFF65A625-6F8E-47DC-8FA5-3C15B5B07C14,4384_463 -4367_81482,319,4384_7428,M3 Parkway,D384,0,4384_7778018_TxcCAB37D83-C60C-4563-B54E-F4D082CEBD21,4384_463 -4367_81482,271,4384_7429,M3 Parkway,D384,0,4384_7778018_Txc7D1D7BDF-AC26-49FE-82AB-244E5D89957C,4384_463 -4367_81485,271,4384_743,Bray (Daly),E219,1,4384_7778018_TxcBFBC79FB-CCD4-48E1-8333-4B6B5E25822D,4384_6 -4367_81482,320,4384_7430,M3 Parkway,D384,0,4384_7778018_Txc40178B9F-FC32-4153-99F6-3F5B42F10643,4384_463 -4367_81482,314,4384_7431,M3 Parkway,D332,0,4384_7778018_Txc87165B97-C498-4DC0-80DE-9627C3029A57,4384_463 -4367_81482,315,4384_7433,M3 Parkway,D332,0,4384_7778018_Txc5C52D169-78E7-4523-ACE3-A2A0125C8E18,4384_463 -4367_81485,320,4384_744,Bray (Daly),E219,1,4384_7778018_Txc188CFFC0-B069-4C66-98FD-A7EAC9565AD2,4384_6 -4367_81482,314,4384_7448,Maynooth,D940,0,4384_7778018_Txc41674BF0-DEE1-4DA5-AD1D-D6CD89F6517C,4384_470 -4367_81482,315,4384_7449,Maynooth,D940,0,4384_7778018_TxcA195448C-9FDC-4EA3-9204-76F2FD4D3168,4384_470 -4367_81485,325,4384_745,Lansdowne Road,E550,1,4384_7778018_Txc2286CC46-54F5-4C3D-AB4B-B0DCEB7A28FB,4384_23 -4367_81482,23,4384_7450,Maynooth,D935,0,4384_7778018_TxcB325C961-7C9B-4B06-9964-EF02FA73231B,4384_467 -4367_81482,278,4384_7451,Maynooth,D927,0,4384_7778018_Txc0B321914-9643-4638-803A-C721CB342685,4384_474 -4367_81482,316,4384_7456,Maynooth,D935,0,4384_7778018_Txc2DD51BD1-964A-4B2E-ACEE-D922FDDFBF02,4384_467 -4367_81482,319,4384_7457,Maynooth,D927,0,4384_7778018_Txc57A22098-929B-4147-A48F-216619ADBB5E,4384_474 -4367_81482,317,4384_7458,Maynooth,D935,0,4384_7778018_Txc2FFFAABD-7817-4135-97F8-9EE82906A81E,4384_467 -4367_81482,331,4384_7459,Maynooth,D935,0,4384_7778018_Txc6D11AD12-221B-45F7-BB10-C80DD9363BFA,4384_467 -4367_81482,271,4384_7460,Maynooth,D927,0,4384_7778018_TxcAB94C187-FAEA-4625-A686-003EAC97FCC9,4384_474 -4367_81482,320,4384_7461,Maynooth,D927,0,4384_7778018_Txc68EDD9C6-B6FA-4146-AE25-72A257372C1F,4384_474 -4367_81482,314,4384_7462,M3 Parkway,D334,0,4384_7778018_Txc3D226225-EE71-4B06-B1D3-0958CFCA864D,4384_463 -4367_81482,23,4384_7463,M3 Parkway,D347,0,4384_7778018_Txc0B3FA39B-489A-44C7-8ABD-5ED82F1FC25C,4384_466 -4367_81482,278,4384_7464,M3 Parkway,D385,0,4384_7778018_TxcC32C70E9-92BD-4DA8-B2AD-4EDD18B3742D,4384_463 -4367_81482,315,4384_7469,M3 Parkway,D334,0,4384_7778018_Txc1959F7E3-82F1-4EDA-A4D9-AF8121625061,4384_463 -4367_81482,316,4384_7470,M3 Parkway,D347,0,4384_7778018_Txc071721C3-A6B5-41A6-B87C-8A81CE7EDA60,4384_466 -4367_81482,319,4384_7471,M3 Parkway,D385,0,4384_7778018_TxcEE10E93B-6C4F-4195-997D-5C7FF28363DF,4384_463 -4367_81482,317,4384_7472,M3 Parkway,D347,0,4384_7778018_TxcA5298378-E1B5-4956-9F63-FF7AE9656565,4384_466 -4367_81482,331,4384_7473,M3 Parkway,D347,0,4384_7778018_Txc0C77E267-6A5C-4532-9DA8-8B6EBFC0240D,4384_466 -4367_81482,271,4384_7474,M3 Parkway,D385,0,4384_7778018_Txc75A7734E-0396-4D94-A0D2-FE219C585CE1,4384_463 -4367_81482,320,4384_7475,M3 Parkway,D385,0,4384_7778018_Txc7A146EF6-106D-4552-BB28-B6BF531EE76C,4384_463 -4367_81481,337,4384_7480,Dublin Heuston,P200,1,4384_7778018_Txc3FA7550B-F1D9-4332-8F6F-D53364635D91,4384_496 -4367_81481,338,4384_7481,Dublin Heuston,P200,1,4384_7778018_Txc23FCFDAA-269D-4A5D-B461-E07E92128530,4384_496 -4367_81481,314,4384_7482,Grand Canal Dock,P400,1,4384_7778018_Txc2EFB2E17-93E6-437E-8446-A8C3C22B6F60,4384_499 -4367_81481,339,4384_7485,Grand Canal Dock,P400,1,4384_7778018_Txc211B26CD-D634-4D26-A53B-3F4F8786AC72,4384_499 -4367_81481,337,4384_7486,Dublin Heuston,P202,1,4384_7778018_Txc643C0F96-9A06-4545-88B9-2ABB3FFF556B,4384_497 -4367_81481,341,4384_7487,Dublin Heuston,P202,1,4384_7778018_Txc48755DAD-FADB-49DE-8B4F-F9E4F4CD774E,4384_497 -4367_81481,314,4384_7488,Dublin Heuston,P203,1,4384_7778018_TxcB66B3C7F-882D-441C-9DAA-31E9FEFFF57B,4384_498 -4367_81481,315,4384_7489,Dublin Heuston,P203,1,4384_7778018_TxcF5E53153-75B8-4A84-8026-AFD43B155AAF,4384_498 -4367_81485,23,4384_749,Bray (Daly),E227,1,4384_7778018_Txc6A75BF3F-A5F9-4188-88CB-BD9022DDA759,4384_7 -4367_81481,314,4384_7490,Grand Canal Dock,P401,1,4384_7778018_Txc56B7F1EB-0D27-49BC-91D6-0819A8E7924B,4384_500 -4367_81481,315,4384_7491,Grand Canal Dock,P401,1,4384_7778018_TxcBE464081-51B5-40C6-B077-7A24346F84B2,4384_500 -4367_81481,314,4384_7496,Grand Canal Dock,P402,1,4384_7778018_Txc56A4811B-927B-4E2B-BB91-5D35BEB2005E,4384_499 -4367_81481,315,4384_7497,Grand Canal Dock,P402,1,4384_7778018_Txc6A9AC411-67C6-43F2-8491-D1D78FD1E691,4384_499 -4367_81481,335,4384_7498,Grand Canal Dock,P402,1,4384_7778018_Txc56F423FF-A66C-430E-A284-881A1A2FC883,4384_499 -4367_81481,318,4384_7499,Grand Canal Dock,P402,1,4384_7778018_Txc677FC535-B9B9-46B4-B9E2-AE381F8991D8,4384_499 -4367_81485,23,4384_75,Bray (Daly),E203,1,4384_7778018_Txc87325286-715B-4A76-84D8-B8EBB0773C37,4384_7 -4367_81481,337,4384_7500,Dublin Heuston,P205,1,4384_7778018_Txc42AE9353-9F50-42DE-844A-E675C1BAD5D8,4384_496 -4367_81481,338,4384_7501,Dublin Heuston,P205,1,4384_7778018_Txc2AFDF5F5-F9D4-4B94-A26F-2DCC2D0FEAB3,4384_496 -4367_81481,314,4384_7502,Grand Canal Dock,P403,1,4384_7778018_Txc144D19EE-1F09-4777-9587-2734CC5DD221,4384_499 -4367_81481,315,4384_7505,Grand Canal Dock,P403,1,4384_7778018_Txc5A9DB9D9-3502-4F69-93BE-AF105067DB21,4384_499 -4367_81481,278,4384_7506,Dublin Heuston,P200,1,4384_7778018_TxcEDABE7FA-89EE-4F95-A090-C74088960B69,4384_496 -4367_81481,319,4384_7508,Dublin Heuston,P200,1,4384_7778018_TxcF97A71CA-FC4B-4C30-9BB2-A70DD3366B40,4384_496 -4367_81481,337,4384_7509,Dublin Heuston,P207,1,4384_7778018_TxcEAB99836-F32C-4D3A-8650-F82E93C9EC38,4384_496 -4367_81481,341,4384_7510,Dublin Heuston,P207,1,4384_7778018_TxcABE45305-6882-4BF6-B20A-4CB2439EEFF7,4384_496 -4367_81481,314,4384_7512,Grand Canal Dock,P404,1,4384_7778018_Txc700AFE77-87CC-4160-97E7-A712DC4833EA,4384_500 -4367_81481,339,4384_7515,Grand Canal Dock,P404,1,4384_7778018_TxcC83A9F6B-295C-4F0B-9618-307EB88F3230,4384_500 -4367_81481,314,4384_7517,Grand Canal Dock,P405,1,4384_7778018_Txc4CB1BA58-A8FA-4EF3-861E-8E258648356C,4384_500 -4367_81485,316,4384_752,Bray (Daly),E227,1,4384_7778018_Txc174F1B94-C419-4BCC-B82C-158CA3688A9F,4384_7 -4367_81481,315,4384_7520,Grand Canal Dock,P405,1,4384_7778018_Txc279B9174-F064-4BB6-A991-4160310918AE,4384_500 -4367_81481,314,4384_7521,Grand Canal Dock,P406,1,4384_7778018_TxcF1BD7265-CE42-4AB6-9635-93D6C176B146,4384_499 -4367_81481,315,4384_7523,Grand Canal Dock,P406,1,4384_7778018_Txc358C0BC3-630B-4FF1-BF64-4ABE56FB5EE1,4384_499 -4367_81481,335,4384_7524,Grand Canal Dock,P406,1,4384_7778018_TxcEB37982B-343D-4A7A-BD8C-DC8264112440,4384_499 -4367_81481,318,4384_7525,Grand Canal Dock,P406,1,4384_7778018_Txc9C15A884-8072-4137-9650-973F2718DA2B,4384_499 -4367_81481,337,4384_7527,Dublin Heuston,P209,1,4384_7778018_Txc717D6B61-4BFC-40C6-8892-8C1513D33EA2,4384_496 -4367_81481,341,4384_7528,Dublin Heuston,P209,1,4384_7778018_TxcD9285B9A-A314-4001-A0ED-E0A49B941AF0,4384_496 -4367_81485,138,4384_753,Bray (Daly),E227,1,4384_7778018_TxcBE946BDC-1474-44F1-9125-18C8A3096EC6,4384_7 -4367_81481,337,4384_7530,Dublin Heuston,P211,1,4384_7778018_Txc5AB9BCC1-2FD8-40E1-BD3F-471A7DF59A7F,4384_496 -4367_81481,338,4384_7531,Dublin Heuston,P211,1,4384_7778018_Txc86FAC65F-B556-45F3-9873-3A546A359C0C,4384_496 -4367_81481,342,4384_7532,Dublin Heuston,P201,1,4384_7778018_Txc6FFE08F9-33E8-4E1A-954D-F5DB1453F099,4384_496 -4367_81481,319,4384_7534,Dublin Heuston,P201,1,4384_7778018_Txc34C8442E-997A-48EA-8575-9CA0750F4C5F,4384_496 -4367_81481,314,4384_7535,Grand Canal Dock,P407,1,4384_7778018_Txc73E1ABA3-4400-4134-9181-C808C5BDCC5C,4384_500 -4367_81481,315,4384_7538,Grand Canal Dock,P407,1,4384_7778018_Txc77113F9E-0C38-40D3-B3A3-1F8A77C84F7B,4384_500 -4367_81481,335,4384_7539,Grand Canal Dock,P407,1,4384_7778018_TxcE9BAC2F8-EBFB-486D-A027-D4B0733D2E51,4384_517 -4367_81485,317,4384_754,Bray (Daly),E227,1,4384_7778018_Txc595F039F-B873-4CB4-91B7-5BDE58AF59F0,4384_7 -4367_81481,318,4384_7540,Grand Canal Dock,P407,1,4384_7778018_TxcC5726628-9A60-4E14-8E29-B908B86E2075,4384_517 -4367_81481,251,4384_7541,Dublin Heuston,P201,1,4384_7778018_Txc98AF58E6-BB50-4AB4-AE8D-F3FE7B2CC565,4384_496 -4367_81481,337,4384_7544,Dublin Heuston,P213,1,4384_7778018_TxcFD769058-0536-495E-842A-DFC4D57BD583,4384_496 -4367_81481,278,4384_7545,Dublin Heuston,P202,1,4384_7778018_Txc61CF9D67-1C5F-47AB-9E65-D17560D780C9,4384_496 -4367_81481,338,4384_7547,Dublin Heuston,P213,1,4384_7778018_TxcFE737814-EF35-4FB1-A919-6609B242461B,4384_496 -4367_81481,319,4384_7548,Dublin Heuston,P202,1,4384_7778018_Txc8165212F-C107-49DB-9EFB-8F4DE5842CD6,4384_496 -4367_81481,314,4384_7549,Grand Canal Dock,P408,1,4384_7778018_TxcF7EBD721-2937-4BC3-A1A1-272BF23CC815,4384_500 -4367_81485,318,4384_755,Bray (Daly),E227,1,4384_7778018_Txc95C275A4-62EF-4C40-B4F9-D8A979F7D625,4384_7 -4367_81481,315,4384_7551,Grand Canal Dock,P408,1,4384_7778018_Txc55B52406-99C2-42FC-9187-816074EE66C3,4384_500 -4367_81481,335,4384_7552,Grand Canal Dock,P408,1,4384_7778018_Txc7531F62D-F479-41E1-BD61-D3046C120613,4384_517 -4367_81481,318,4384_7553,Grand Canal Dock,P408,1,4384_7778018_Txc87704102-93F1-4A89-AE42-D69EAE300E1C,4384_517 -4367_81481,278,4384_7555,Dublin Heuston,P203,1,4384_7778018_Txc37CDBC78-5059-4772-8493-2184A566D66A,4384_496 -4367_81481,319,4384_7557,Dublin Heuston,P203,1,4384_7778018_TxcD4FCDBE7-0356-4C28-B782-3908BC6EBE67,4384_496 -4367_81481,337,4384_7558,Dublin Heuston,P215,1,4384_7778018_Txc08E0AA43-6318-4ADD-832A-A3EC92D6866E,4384_496 -4367_81481,341,4384_7559,Dublin Heuston,P215,1,4384_7778018_Txc41F860AB-0029-4EB4-B778-F6311C13CFE8,4384_496 -4367_81485,314,4384_756,Bray (Daly),E240,1,4384_7778018_Txc0002DD8F-0A79-4670-8426-608DC2217D50,4384_6 -4367_81481,314,4384_7560,Grand Canal Dock,P409,1,4384_7778018_Txc74F6EA9C-E121-4283-AF1C-EA055828E94E,4384_500 -4367_81481,315,4384_7562,Grand Canal Dock,P409,1,4384_7778018_Txc6510D367-3866-4A48-8CFD-80052DD15EE0,4384_500 -4367_81481,335,4384_7563,Grand Canal Dock,P409,1,4384_7778018_Txc3F145C6D-4F19-49BB-8A22-750E756FAAA6,4384_517 -4367_81481,318,4384_7564,Grand Canal Dock,P409,1,4384_7778018_Txc87E8F99C-0376-46F6-BD0C-357400C7A9F9,4384_517 -4367_81481,337,4384_7567,Dublin Heuston,P217,1,4384_7778018_TxcFF310D94-A764-486C-A11A-5BCC0998DF56,4384_496 -4367_81481,338,4384_7568,Dublin Heuston,P217,1,4384_7778018_Txc050E218D-F453-462E-AD14-B71C8F5AE8FE,4384_496 -4367_81481,314,4384_7569,Grand Canal Dock,P410,1,4384_7778018_TxcCCF5749E-79BB-407D-89D4-A46A6F0C29F5,4384_500 -4367_81481,315,4384_7572,Grand Canal Dock,P410,1,4384_7778018_Txc6DD7C6FC-4DB6-4839-A714-D34681C40759,4384_500 -4367_81481,335,4384_7573,Grand Canal Dock,P410,1,4384_7778018_Txc02F5A451-45A2-4244-91CE-B089C6E0AAE4,4384_517 -4367_81481,318,4384_7574,Grand Canal Dock,P410,1,4384_7778018_Txc2331BCF8-4311-44EC-937A-124F102EC20C,4384_517 -4367_81481,278,4384_7576,Dublin Heuston,P204,1,4384_7778018_Txc3183D0D2-42B1-4CDC-91A0-8EAADD528C98,4384_496 -4367_81481,319,4384_7578,Dublin Heuston,P204,1,4384_7778018_Txc1B73E822-13C7-4813-9FEA-30C488D7DA0E,4384_496 -4367_81481,337,4384_7579,Dublin Heuston,P219,1,4384_7778018_Txc327B30EF-2FE0-4FFC-AAF2-EDEDD75B62C7,4384_496 -4367_81481,338,4384_7580,Dublin Heuston,P219,1,4384_7778018_TxcA9E874B5-6656-48E6-B36C-CEFEBC12404B,4384_496 -4367_81481,314,4384_7581,Grand Canal Dock,P411,1,4384_7778018_TxcBC6BB783-C785-4DFB-8E39-BE32028C699D,4384_500 -4367_81481,315,4384_7584,Grand Canal Dock,P411,1,4384_7778018_Txc28E7FC32-F644-494D-871B-F3CA6D183FCA,4384_500 -4367_81481,335,4384_7585,Grand Canal Dock,P411,1,4384_7778018_Txc1F9DA8C4-26D5-4D96-97FB-C2184D1BA508,4384_517 -4367_81481,318,4384_7586,Grand Canal Dock,P411,1,4384_7778018_Txc246543F7-9314-49E3-93FF-1930E70703AC,4384_517 -4367_81481,314,4384_7588,Grand Canal Dock,P412,1,4384_7778018_TxcC033CB16-9DD0-4AB7-AAA2-C7A25CC3E42F,4384_499 -4367_81481,315,4384_7590,Grand Canal Dock,P412,1,4384_7778018_Txc4416F6BE-FABD-4298-AFD6-BB84FECAF55A,4384_499 -4367_81481,335,4384_7591,Grand Canal Dock,P412,1,4384_7778018_Txc06C256CB-E30B-4351-9398-63D6AAB4FD5A,4384_516 -4367_81481,318,4384_7592,Grand Canal Dock,P412,1,4384_7778018_Txc3F7B0DF8-8B93-4066-AA40-31186EB0E9DB,4384_516 -4367_81481,337,4384_7593,Dublin Heuston,P221,1,4384_7778018_TxcE149D8DD-02AC-410A-BB31-877A79667A22,4384_496 -4367_81481,341,4384_7594,Dublin Heuston,P221,1,4384_7778018_Txc5D6DE37F-D680-4DB6-BEC4-77D45B307C83,4384_496 -4367_81481,314,4384_7595,Dublin Connolly,P813,1,4384_7778018_Txc028E7DFF-A6BC-4A64-9AE5-F6907E27F28C,4384_501 -4367_81481,339,4384_7599,Dublin Connolly,P813,1,4384_7778018_Txc6E65F320-D170-4481-864C-D89E5113EB56,4384_501 -4367_81485,315,4384_760,Bray (Daly),E240,1,4384_7778018_Txc4D72B356-DA2D-4FD9-B05C-9867A64A0EC7,4384_6 -4367_81481,337,4384_7601,Dublin Heuston,P222,1,4384_7778018_TxcAF56AE75-3D12-4C74-9F22-6867649B967E,4384_496 -4367_81481,338,4384_7602,Dublin Heuston,P222,1,4384_7778018_Txc67708644-83C1-46AF-BB3C-51203DAE80AA,4384_496 -4367_81481,278,4384_7603,Dublin Heuston,P205,1,4384_7778018_Txc7E5A489B-3818-4CCF-80DC-62DBDC26148C,4384_496 -4367_81481,319,4384_7605,Dublin Heuston,P205,1,4384_7778018_TxcE40CC7C2-3920-48AB-B8D5-BA5D2BCEEAF9,4384_496 -4367_81481,314,4384_7606,Grand Canal Dock,P414,1,4384_7778018_Txc6A2EC506-1D07-46F6-8573-AB152A38C9FB,4384_502 -4367_81481,315,4384_7610,Grand Canal Dock,P414,1,4384_7778018_TxcD4CBF57E-2AF1-4380-B517-AB12746A4342,4384_502 -4367_81481,335,4384_7611,Grand Canal Dock,P414,1,4384_7778018_Txc876FE4F2-137B-47FA-8899-60EB416135B7,4384_518 -4367_81481,318,4384_7612,Grand Canal Dock,P414,1,4384_7778018_Txc35624A04-6EA2-4686-9DEA-FF43630CCBDD,4384_518 -4367_81481,314,4384_7614,Dublin Connolly,P815,1,4384_7778018_Txc39658F3B-987E-445C-88EA-4326BCAE35D9,4384_501 -4367_81481,315,4384_7618,Dublin Connolly,P815,1,4384_7778018_TxcE55D854E-75F3-4DAA-BF9E-113F762B6F5C,4384_501 -4367_81485,278,4384_762,Greystones,E120,1,4384_7778018_Txc57B3EA00-70DA-4E82-ACCA-F2EA4764BCB6,4384_1 -4367_81481,337,4384_7620,Dublin Heuston,P223,1,4384_7778018_TxcFE13F13F-DF89-4326-93E5-4154B9C25855,4384_496 -4367_81481,338,4384_7621,Dublin Heuston,P223,1,4384_7778018_Txc9F86D947-E268-40A8-AACD-EB60BB78EE76,4384_496 -4367_81481,314,4384_7622,Dublin Connolly,P816,1,4384_7778018_Txc3A35F952-3A8F-485A-BB4D-19DDF2ACA241,4384_503 -4367_81481,339,4384_7626,Dublin Connolly,P816,1,4384_7778018_TxcCB104AE4-8E4B-4F3D-A216-94F92419E9AB,4384_503 -4367_81481,314,4384_7630,Grand Canal Dock,P417,1,4384_7778018_Txc237EC0B7-C2B3-4372-AA8A-176D99C8E32C,4384_502 -4367_81481,315,4384_7634,Grand Canal Dock,P417,1,4384_7778018_Txc854514FA-0674-4F7C-A8DC-7210BB4E13BC,4384_502 -4367_81481,314,4384_7636,Grand Canal Dock,P418,1,4384_7778018_Txc82322F37-288E-495B-9C16-1C0FB5767C6C,4384_504 -4367_81481,339,4384_7640,Grand Canal Dock,P418,1,4384_7778018_TxcABD0B4BE-DBDD-454D-9211-94C98B50DEAF,4384_504 -4367_81481,337,4384_7641,Dublin Heuston,P224,1,4384_7778018_Txc641D1493-84E6-4D3D-9AE0-C91DC5AB712E,4384_496 -4367_81481,365,4384_7642,Dublin Heuston,P224,1,4384_7778018_Txc2F4E9026-6169-4151-A2E7-9E179BB4C05C,4384_496 -4367_81481,138,4384_7643,Dublin Heuston,P224,1,4384_7778018_Txc70126AA8-2BA7-4BA1-ABF8-CC0DA38366AE,4384_496 -4367_81481,332,4384_7644,Dublin Heuston,P224,1,4384_7778018_Txc1436BC40-7E6B-4BB9-A874-E5BE85ADF14B,4384_496 -4367_81481,278,4384_7645,Dublin Heuston,P206,1,4384_7778018_Txc72E682CE-9B4C-4DEB-9B43-3C64FB6E9D0C,4384_496 -4367_81481,319,4384_7647,Dublin Heuston,P206,1,4384_7778018_TxcA486BA03-0714-46EB-86FC-094628814563,4384_496 -4367_81481,314,4384_7648,Grand Canal Dock,P419,1,4384_7778018_Txc2AF431D2-9F1A-4AF5-B5B9-8F14B1E73E63,4384_500 -4367_81485,319,4384_765,Greystones,E120,1,4384_7778018_Txc0567CF54-5F92-4B9C-9EB2-EC81F85C888E,4384_1 -4367_81481,315,4384_7652,Grand Canal Dock,P419,1,4384_7778018_Txc16A81C64-5AE2-4BF8-B094-C61F24D132A6,4384_500 -4367_81481,337,4384_7654,Dublin Heuston,P225,1,4384_7778018_Txc57DDD742-0259-42AE-9AF5-D8EB82864CE5,4384_496 -4367_81481,338,4384_7655,Dublin Heuston,P225,1,4384_7778018_Txc25E13BC6-A0AA-4470-886D-872785EEA6F9,4384_496 -4367_81481,314,4384_7656,Grand Canal Dock,P420,1,4384_7778018_Txc4C1523E2-DE40-44D7-BE72-C094018DAB08,4384_500 -4367_81485,271,4384_766,Greystones,E120,1,4384_7778018_Txc8AB0B29D-01C9-444D-A6C1-FC85ED4803FC,4384_1 -4367_81481,362,4384_7660,Grand Canal Dock,P420,1,4384_7778018_TxcCFCD50FD-2140-451F-85DC-D46960856917,4384_500 -4367_81481,278,4384_7663,Dublin Heuston,P207,1,4384_7778018_TxcB1C14302-92E7-499B-A8D4-F6EB2244F590,4384_496 -4367_81481,319,4384_7665,Dublin Heuston,P207,1,4384_7778018_Txc5AA2932F-A7AE-4DED-9602-C3E47B1D0C2B,4384_496 -4367_81481,314,4384_7666,Dublin Heuston,P226,1,4384_7778018_Txc58BA9201-48E9-4144-94A5-3832F239D73F,4384_496 -4367_81481,315,4384_7667,Dublin Heuston,P226,1,4384_7778018_Txc8E4E7CFE-B871-4739-B6EB-13C9F7B17279,4384_496 -4367_81481,314,4384_7668,Grand Canal Dock,P421,1,4384_7778018_Txc4B70D207-0BEF-4D67-AB0F-EB9E3BCBB472,4384_500 -4367_81485,320,4384_767,Greystones,E120,1,4384_7778018_TxcBDF746CF-337A-4AD2-8CB2-A4B2163C8766,4384_1 -4367_81481,362,4384_7676,Grand Canal Dock,P421,1,4384_7778018_Txc062BDD39-EF5E-4944-9D49-792894A8A189,4384_500 -4367_81481,337,4384_7678,Dublin Heuston,P227,1,4384_7778018_TxcDE857453-66CB-4E71-9514-3DA96A31C207,4384_496 -4367_81485,314,4384_768,Bray (Daly),E241,1,4384_7778018_TxcC2A071A9-F190-43E9-A013-302950BC4D6D,4384_7 -4367_81481,372,4384_7680,Dublin Heuston,P227,1,4384_7778018_Txc27E982F4-C812-43F6-9573-D3417EA0BCAB,4384_496 -4367_81481,314,4384_7681,Grand Canal Dock,P422,1,4384_7778018_Txc3C921B6C-180B-4E4D-8B98-059AF3BD035A,4384_500 -4367_81481,362,4384_7690,Grand Canal Dock,P422,1,4384_7778018_Txc27BC369F-524C-4D82-9A9C-67601257A3DA,4384_500 -4367_81481,337,4384_7693,Dublin Heuston,P229,1,4384_7778018_Txc919CC3AA-8C89-40B9-BA9B-89BE53C94464,4384_496 -4367_81481,365,4384_7694,Dublin Heuston,P229,1,4384_7778018_TxcE538AA86-BD53-48CC-9DFB-E3FB917F2D55,4384_496 -4367_81481,314,4384_7695,Grand Canal Dock,P423,1,4384_7778018_TxcDFD4BA62-A835-405A-81E3-C05CEE1A2952,4384_500 -4367_81481,362,4384_7699,Grand Canal Dock,P423,1,4384_7778018_Txc98734EAD-C67E-46F6-85EF-2A3F3BC0E830,4384_500 -4367_81481,337,4384_7704,Portlaoise,D200,0,4384_7778018_TxcDACDC8DB-0D5B-4BB3-87B0-534C9C1651C2,4384_519 -4367_81481,341,4384_7705,Portlaoise,D200,0,4384_7778018_TxcF9D5A3E9-89D5-4094-BED4-25D8D2D57276,4384_519 -4367_81481,337,4384_7707,Portlaoise,D202,0,4384_7778018_TxcA47650C2-6315-473F-A6E8-902FEDD41872,4384_520 -4367_81481,341,4384_7708,Portlaoise,D202,0,4384_7778018_TxcFA48DA7B-7D6A-420E-A41A-D1E1A6BD6371,4384_520 -4367_81481,314,4384_7709,Hazelhatch and Celbridge,D401,0,4384_7778018_Txc99ED481F-A332-4B80-8215-5A2402B28405,4384_522 -4367_81485,315,4384_771,Bray (Daly),E241,1,4384_7778018_Txc2CD6CBAB-A207-434B-9A2F-021CEC7BB6E6,4384_7 -4367_81481,339,4384_7710,Hazelhatch and Celbridge,D401,0,4384_7778018_Txc8CB1CE5F-B267-4BCB-84D8-D04D1A25F08C,4384_522 -4367_81481,314,4384_7713,Hazelhatch and Celbridge,D402,0,4384_7778018_TxcEE3721DC-4D7C-4BEE-B928-5B1B7976A688,4384_522 -4367_81481,315,4384_7716,Hazelhatch and Celbridge,D402,0,4384_7778018_Txc2940625B-0C3E-431C-8B73-2FC818912F60,4384_522 -4367_81481,314,4384_7718,Newbridge,D403,0,4384_7778018_Txc7139839B-1FC6-4D07-A357-E93C305E0E9B,4384_523 -4367_81481,315,4384_7719,Newbridge,D403,0,4384_7778018_TxcDEBF9AEA-9E9E-4DB7-AB23-FDCF28057B4F,4384_523 -4367_81485,211,4384_772,Greystones,E109,1,4384_7778018_Txc633AAAAE-89C8-4650-A7A2-F0955A6AF984,4384_2 -4367_81481,335,4384_7720,Newbridge,D403,0,4384_7778018_Txc1AF1ACDA-463A-4703-9294-D6628FC334F4,4384_523 -4367_81481,318,4384_7721,Newbridge,D403,0,4384_7778018_TxcC18A6370-A3C3-4BB1-94AC-F50148184D88,4384_523 -4367_81481,337,4384_7724,Portlaoise,D203,0,4384_7778018_Txc6E3D857D-764C-48FD-A0E3-793F63705886,4384_520 -4367_81481,338,4384_7725,Portlaoise,D203,0,4384_7778018_Txc6496EAC6-C646-4678-9BC3-03B1372B070E,4384_520 -4367_81481,314,4384_7728,Hazelhatch and Celbridge,D404,0,4384_7778018_Txc21AFF455-BFCA-444E-AC6E-9EC76CFB5EDC,4384_524 -4367_81481,315,4384_7729,Hazelhatch and Celbridge,D404,0,4384_7778018_Txc029422BC-B8A1-4FA6-9E2E-9BBDEBE7F812,4384_524 -4367_81481,278,4384_7731,Portlaoise,D200,0,4384_7778018_TxcF8F3C09E-7DBC-4773-AF95-7AD50BD649B6,4384_520 -4367_81481,319,4384_7733,Portlaoise,D200,0,4384_7778018_Txc1F0372CB-3DAA-4A90-98C4-124A0B71819D,4384_520 -4367_81481,314,4384_7736,Hazelhatch and Celbridge,D405,0,4384_7778018_Txc872187E2-ABA5-4EEA-B2BD-E7D470766095,4384_524 -4367_81481,339,4384_7737,Hazelhatch and Celbridge,D405,0,4384_7778018_TxcF2B9D456-2705-46D2-9DFF-62DBB595ECAE,4384_524 -4367_81481,337,4384_7738,Portlaoise,D204,0,4384_7778018_Txc58152270-20C7-4CA6-80DC-676006B5F0CB,4384_520 -4367_81481,341,4384_7739,Portlaoise,D204,0,4384_7778018_Txc383BF94E-99C3-4EE7-8FA4-5AD6FEBDF746,4384_520 -4367_81481,314,4384_7742,Hazelhatch and Celbridge,D406,0,4384_7778018_TxcDBB9D505-9B49-4721-948B-36024BF8D07A,4384_524 -4367_81481,315,4384_7743,Hazelhatch and Celbridge,D406,0,4384_7778018_Txc18F22268-71AA-4115-A4CA-344FF0CBD34D,4384_524 -4367_81481,337,4384_7745,Portlaoise,D206,0,4384_7778018_TxcB6A828C8-219D-4584-AC5F-C6F421554F6B,4384_520 -4367_81481,341,4384_7746,Portlaoise,D206,0,4384_7778018_Txc2C455A3D-A482-44CE-B8FA-D714088C845E,4384_520 -4367_81481,314,4384_7747,Hazelhatch and Celbridge,D407,0,4384_7778018_Txc49E324A3-C525-45D5-84EB-E56F6848495F,4384_524 -4367_81481,339,4384_7748,Hazelhatch and Celbridge,D407,0,4384_7778018_TxcAC14D665-FBF1-4147-BBBD-5EDEA948D72C,4384_524 -4367_81481,278,4384_7751,Portlaoise,D201,0,4384_7778018_Txc6D571274-8D09-43D8-9A96-5958347EB0A6,4384_520 -4367_81481,319,4384_7753,Portlaoise,D201,0,4384_7778018_TxcA136C53A-102E-4C07-939A-36A54F23AD36,4384_520 -4367_81481,337,4384_7755,Portlaoise,D208,0,4384_7778018_Txc7FFFE2B6-E9F4-43C7-B2E6-EBE2ACA3DCCA,4384_520 -4367_81481,338,4384_7756,Portlaoise,D208,0,4384_7778018_TxcF79E3B8C-D458-46B9-89EC-92CCDDCEC972,4384_520 -4367_81481,314,4384_7757,Hazelhatch and Celbridge,D408,0,4384_7778018_TxcBB4581C2-AD7A-480B-B907-42CA5931E624,4384_524 -4367_81481,339,4384_7759,Hazelhatch and Celbridge,D408,0,4384_7778018_Txc645556A1-6424-4AB2-AE59-55966BDA741E,4384_524 -4367_81481,337,4384_7761,Portlaoise,D210,0,4384_7778018_Txc3F1943AF-91C3-4863-95D2-B29BA0D0FF4C,4384_520 -4367_81481,338,4384_7762,Portlaoise,D210,0,4384_7778018_Txc25E83DF5-A8B6-40E3-87D5-A03B7177E5A1,4384_520 -4367_81481,314,4384_7763,Hazelhatch and Celbridge,D409,0,4384_7778018_Txc4B6D989E-FEE4-4504-99C8-04FC06C5188B,4384_524 -4367_81481,339,4384_7765,Hazelhatch and Celbridge,D409,0,4384_7778018_Txc894B18D9-CC93-4BD6-8D0D-6AC0D7A103F3,4384_524 -4367_81481,278,4384_7766,Portlaoise,D202,0,4384_7778018_TxcB3B937B4-B892-47C6-800D-23C7751AD180,4384_520 -4367_81481,319,4384_7768,Portlaoise,D202,0,4384_7778018_Txc652DC004-A8EA-4413-816D-C2B6D00FD6D8,4384_520 -4367_81485,96,4384_777,Greystones,E109,1,4384_7778018_Txc3D0F7B4C-770F-49D9-A7FD-059CB61BB6EE,4384_26 -4367_81481,337,4384_7770,Portlaoise,D212,0,4384_7778018_Txc6A4C7210-9433-44E4-A23C-1B3B4DD3DC11,4384_520 -4367_81481,338,4384_7771,Portlaoise,D212,0,4384_7778018_Txc7CB38B72-8807-4975-A4BC-B8ECEAD8CAA0,4384_520 -4367_81481,314,4384_7772,Newbridge,D410,0,4384_7778018_TxcB7410071-BEE3-462F-936F-4C458196F00D,4384_525 -4367_81481,339,4384_7774,Newbridge,D410,0,4384_7778018_Txc28FA847B-6F13-42C0-9FF3-779CADED9D46,4384_525 -4367_81481,337,4384_7776,Portlaoise,D214,0,4384_7778018_TxcF6B3E6E6-1599-489C-BD3F-EF69F6E07C87,4384_520 -4367_81481,341,4384_7777,Portlaoise,D214,0,4384_7778018_Txc08EDD97C-4A9D-468E-90BE-167109F25A9B,4384_520 -4367_81481,314,4384_7778,Hazelhatch and Celbridge,D411,0,4384_7778018_Txc7A33F350-5DF6-4886-BA2F-84308C90DA66,4384_524 -4367_81485,214,4384_778,Greystones,E109,1,4384_7778018_Txc8CDFC0A4-6618-4656-B493-BB1FAF34ED7D,4384_26 -4367_81481,339,4384_7780,Hazelhatch and Celbridge,D411,0,4384_7778018_TxcEF91519F-5509-4823-91A9-D3847917908B,4384_524 -4367_81481,278,4384_7781,Portlaoise,D203,0,4384_7778018_TxcC630E303-757D-4A41-8019-E415EC0BF96E,4384_520 -4367_81481,319,4384_7783,Portlaoise,D203,0,4384_7778018_TxcBD6EF7BA-208E-4660-8CC8-6BA44294780C,4384_520 -4367_81481,337,4384_7785,Portlaoise,D216,0,4384_7778018_Txc63C8EAF9-67EE-4564-92A7-D47A44EC421C,4384_520 -4367_81481,338,4384_7786,Portlaoise,D216,0,4384_7778018_Txc83E9BEFE-52DA-406C-868C-6434A38189D1,4384_520 -4367_81481,314,4384_7787,Hazelhatch and Celbridge,D412,0,4384_7778018_Txc431E0ABB-B74C-4A2B-90B3-8E45A15721CE,4384_524 -4367_81481,339,4384_7789,Hazelhatch and Celbridge,D412,0,4384_7778018_Txc4F6DFF42-9CEF-4DC7-9718-9CF182AB6439,4384_524 -4367_81485,316,4384_779,Greystones,E109,1,4384_7778018_Txc421F7D12-2A3B-4F96-AF0D-2E65094381F3,4384_2 -4367_81481,314,4384_7791,Hazelhatch and Celbridge,D413,0,4384_7778018_Txc72A82921-E526-4225-A13B-9571485ACCE1,4384_526 -4367_81481,315,4384_7793,Hazelhatch and Celbridge,D413,0,4384_7778018_Txc1A70829D-A2AA-4CFF-96D8-A59894998EA6,4384_526 -4367_81481,337,4384_7794,Portlaoise,D217,0,4384_7778018_Txc28212595-5AD4-46EA-942D-461AE49E287E,4384_520 -4367_81481,341,4384_7795,Portlaoise,D217,0,4384_7778018_Txc132467D3-B038-45DC-B4A5-A29487AD8DB6,4384_520 -4367_81481,314,4384_7796,Hazelhatch and Celbridge,D414,0,4384_7778018_Txc1233168D-C287-4759-88CA-5B62D65CD76C,4384_524 -4367_81481,339,4384_7798,Hazelhatch and Celbridge,D414,0,4384_7778018_Txc3FC8CA4A-247A-45D9-A160-FAFBC33636BB,4384_524 -4367_81481,278,4384_7799,Portlaoise,D204,0,4384_7778018_Txc778801F5-0C74-427B-B721-887F07E3F9D7,4384_520 -4367_81485,316,4384_78,Bray (Daly),E203,1,4384_7778018_Txc564F1D79-50AF-49FB-A9C7-D687FCB7AA07,4384_7 -4367_81485,138,4384_780,Greystones,E109,1,4384_7778018_TxcBB880A48-16B5-4A07-B184-FFA9CAE3F359,4384_2 -4367_81481,319,4384_7801,Portlaoise,D204,0,4384_7778018_Txc86246956-0796-4C11-BC04-E0EB0BB9663E,4384_520 -4367_81481,314,4384_7803,Newbridge,D415,0,4384_7778018_TxcC0884EA9-BBD9-4428-8F1F-4F5732E87467,4384_527 -4367_81481,339,4384_7804,Newbridge,D415,0,4384_7778018_Txc05BD5F42-2392-49A7-8A07-CD5B32B3FBD8,4384_527 -4367_81481,314,4384_7806,Hazelhatch and Celbridge,D416,0,4384_7778018_Txc83DE2B7C-BE13-4E40-9B8B-9067108C1276,4384_526 -4367_81481,315,4384_7808,Hazelhatch and Celbridge,D416,0,4384_7778018_TxcCE1F04CB-EAE3-4D07-87CA-1CFE74CF2CBC,4384_526 -4367_81481,337,4384_7809,Portlaoise,D218,0,4384_7778018_TxcFC7D2D5D-A3CE-452B-94DE-24509267F589,4384_520 -4367_81485,317,4384_781,Greystones,E109,1,4384_7778018_TxcF218578F-21DA-4578-BE06-E83A850A40FA,4384_2 -4367_81481,338,4384_7810,Portlaoise,D218,0,4384_7778018_Txc0EB32AE9-0097-4334-B1D5-563EB179A65B,4384_520 -4367_81481,314,4384_7811,Newbridge,D417,0,4384_7778018_TxcE7BD8657-0A05-43F2-890F-DBD5BA23DFAA,4384_525 -4367_81481,339,4384_7813,Newbridge,D417,0,4384_7778018_TxcB2302C89-3FFB-4DE7-9AE7-96095FF978A2,4384_525 -4367_81481,314,4384_7815,Portlaoise,D219,0,4384_7778018_TxcF5330980-BEC8-4CC6-94AE-D730FCE389E8,4384_521 -4367_81481,315,4384_7816,Portlaoise,D219,0,4384_7778018_Txc59C25148-4E21-4474-84FE-6F66879626EC,4384_521 -4367_81481,314,4384_7817,Hazelhatch and Celbridge,D418,0,4384_7778018_TxcFED5DA4F-B054-4D27-9D33-70122CC4229C,4384_526 -4367_81481,315,4384_7819,Hazelhatch and Celbridge,D418,0,4384_7778018_Txc26E62FA7-F275-4932-BF98-6C1367DD4F4D,4384_526 -4367_81485,318,4384_782,Greystones,E109,1,4384_7778018_Txc910A87E8-264F-4145-B3C9-98D55C6E13F1,4384_2 -4367_81481,337,4384_7820,Portlaoise,D220,0,4384_7778018_TxcC36DEE4D-0501-4649-B6CE-D6E5D529DDD3,4384_520 -4367_81481,338,4384_7821,Portlaoise,D220,0,4384_7778018_Txc9D018A4A-1AF9-4644-A48A-53BF072D0EFD,4384_520 -4367_81481,314,4384_7822,Newbridge,D419,0,4384_7778018_TxcA3A6CC8E-D702-485E-BB82-3E37EC0205F4,4384_527 -4367_81481,315,4384_7826,Newbridge,D419,0,4384_7778018_Txc41D0BFA6-3E8A-4361-8A02-8031741BBA8C,4384_527 -4367_81481,335,4384_7827,Newbridge,D419,0,4384_7778018_TxcD43CD399-B09A-4897-9EA1-2129BA88418A,4384_527 -4367_81481,318,4384_7828,Newbridge,D419,0,4384_7778018_Txc5DD99D40-4180-4FA7-9459-9DC3C6B35098,4384_527 -4367_81481,314,4384_7829,Hazelhatch and Celbridge,D420,0,4384_7778018_TxcBF8F3317-8CCE-4B16-B431-DDCEFBDD70CB,4384_524 -4367_81481,315,4384_7833,Hazelhatch and Celbridge,D420,0,4384_7778018_Txc79091C89-4427-448D-B3FF-B38C7AA7A53E,4384_524 -4367_81481,278,4384_7835,Portlaoise,D205,0,4384_7778018_Txc9396C800-738E-49A5-8754-5FB31DCBD6F7,4384_520 -4367_81481,319,4384_7836,Portlaoise,D205,0,4384_7778018_Txc50C8D444-37FD-4A93-B4D4-52A1815BED8F,4384_520 -4367_81481,314,4384_7838,Portlaoise,D221,0,4384_7778018_Txc8C83FF4D-FEF1-4B07-94BD-7C8A8C3A1245,4384_520 -4367_81481,315,4384_7839,Portlaoise,D221,0,4384_7778018_TxcE7D1A9C5-E40E-455F-9D59-959B9C91819E,4384_520 -4367_81481,314,4384_7840,Hazelhatch and Celbridge,D421,0,4384_7778018_TxcFD5CDB52-9AE3-4007-9BB7-E4AFBA791898,4384_524 -4367_81481,339,4384_7844,Hazelhatch and Celbridge,D421,0,4384_7778018_Txc61BB9EC9-BDEB-453A-8BCF-E45F873C9D3A,4384_524 -4367_81481,337,4384_7845,Portlaoise,D222,0,4384_7778018_Txc462BA558-1255-4C29-AE88-02FA62F70D8C,4384_520 -4367_81481,314,4384_7846,Hazelhatch and Celbridge,D422,0,4384_7778018_TxcD5085FFD-91C4-461C-B71E-01374EC2E59D,4384_524 -4367_81481,338,4384_7850,Portlaoise,D222,0,4384_7778018_Txc56B45D92-6AC7-40BC-BA4F-05E6640095EB,4384_520 -4367_81481,315,4384_7851,Hazelhatch and Celbridge,D422,0,4384_7778018_TxcA1001F49-2650-4091-9862-8FF015E22953,4384_524 -4367_81481,278,4384_7852,Portlaoise,D206,0,4384_7778018_Txc78CAB8A2-650D-41AD-8FCC-1268AAEBBC30,4384_520 -4367_81481,319,4384_7854,Portlaoise,D206,0,4384_7778018_TxcDE13B908-C909-4FF9-97C3-1D3A5AC300FC,4384_520 -4367_81481,314,4384_7855,Hazelhatch and Celbridge,D423,0,4384_7778018_TxcDF8E8DE6-E661-4E8B-AB37-63428E1FBFB5,4384_524 -4367_81481,362,4384_7859,Hazelhatch and Celbridge,D423,0,4384_7778018_Txc735CEC3E-3515-43C8-AE22-EDEB23EDAEA9,4384_524 -4367_81485,314,4384_786,Greystones,E121,1,4384_7778018_Txc6E6A7767-888B-4423-8ADA-95DEDAAB2AE6,4384_2 -4367_81481,337,4384_7861,Portlaoise,D224,0,4384_7778018_Txc250BD34C-A6E0-4CEF-AF47-AEEC13664F58,4384_520 -4367_81481,365,4384_7862,Portlaoise,D224,0,4384_7778018_TxcD4562B22-448C-4283-956D-3224422508AC,4384_520 -4367_81481,314,4384_7863,Hazelhatch and Celbridge,D424,0,4384_7778018_TxcADCA54D7-4D20-4E58-BB68-C9B1BFB7FFE3,4384_524 -4367_81481,362,4384_7867,Hazelhatch and Celbridge,D424,0,4384_7778018_Txc51E27115-FD43-4EC1-9AFE-ED809B4DB257,4384_524 -4367_81481,337,4384_7871,Portlaoise,D225,0,4384_7778018_Txc64B40140-C601-4EE9-A8B5-806F256511F2,4384_520 -4367_81481,365,4384_7872,Portlaoise,D225,0,4384_7778018_TxcC428C3DD-99B0-42F3-9B9B-2FEFBE2F2D6F,4384_520 -4367_81481,314,4384_7873,Hazelhatch and Celbridge,D425,0,4384_7778018_TxcAD3DEA70-8E19-45C9-9C65-DE7C91214A23,4384_524 -4367_81481,362,4384_7877,Hazelhatch and Celbridge,D425,0,4384_7778018_Txc71F524C4-F7A5-489F-901D-48EF3D85639B,4384_524 -4367_81481,314,4384_7883,Hazelhatch and Celbridge,D426,0,4384_7778018_TxcEB4A307C-076D-474F-9BC0-BC97DBCB44CB,4384_524 -4367_81481,362,4384_7887,Hazelhatch and Celbridge,D426,0,4384_7778018_Txc52F57210-B6F4-426C-8967-5BA6BE225F0B,4384_524 -4367_81479,314,4384_7888,Dublin Connolly,A901,1,4384_7778018_Txc317713F2-41BF-4D54-AE37-1CDF4005DEE7,4384_535 -4367_81479,315,4384_7891,Dublin Connolly,A901,1,4384_7778018_TxcE1DDC4F0-D2ED-4924-A964-8EB2798122C2,4384_535 -4367_81479,314,4384_7892,Dublin Connolly,A903,1,4384_7778018_TxcDDA94B17-5F22-4F46-9D29-442230E2C453,4384_535 -4367_81479,23,4384_7893,Dublin Connolly,A903,1,4384_7778018_Txc7BA2302C-78F3-48CD-A941-B04F2223BB70,4384_536 -4367_81479,315,4384_7898,Dublin Connolly,A903,1,4384_7778018_TxcBD774C5F-70E3-4A2F-8E67-908133F7AF30,4384_535 -4367_81479,316,4384_7899,Dublin Connolly,A903,1,4384_7778018_Txc4C48E827-62E9-450C-9F6E-BCCA44C53CD6,4384_536 -4367_81485,138,4384_79,Bray (Daly),E203,1,4384_7778018_Txc01D46F18-37B0-4326-BC58-06C6A153099F,4384_7 -4367_81485,315,4384_790,Greystones,E121,1,4384_7778018_Txc4AECD2C8-4D8D-46B4-B175-71097148AC93,4384_2 -4367_81479,138,4384_7900,Dublin Connolly,A903,1,4384_7778018_Txc3ABFBCAC-2A80-490A-B4FB-0D66903BA151,4384_536 -4367_81479,317,4384_7901,Dublin Connolly,A903,1,4384_7778018_Txc67A356E6-3BC3-4ABD-B8FE-770930C1112E,4384_536 -4367_81479,318,4384_7902,Dublin Connolly,A903,1,4384_7778018_TxcFFAD8709-E606-4939-9B84-6F1A0447B940,4384_536 -4367_81479,314,4384_7903,Dublin Connolly,A905,1,4384_7778018_Txc87FA12BB-906B-4F73-8015-C7FF3C6E646F,4384_535 -4367_81479,23,4384_7904,Dublin Connolly,A905,1,4384_7778018_TxcD7E03886-EC1D-4DF5-BE68-AD8B93614FA7,4384_536 -4367_81479,278,4384_7905,Dublin Connolly,A905,1,4384_7778018_Txc3FA53306-96CD-4248-9A52-0E0D2BC9BDB4,4384_537 -4367_81485,324,4384_791,Lansdowne Road,E551,1,4384_7778018_Txc9890C5A3-312B-436C-A52F-C0C3D4769064,4384_23 -4367_81479,315,4384_7912,Dublin Connolly,A905,1,4384_7778018_Txc8598E551-EDDC-4069-AD92-12C16268C357,4384_535 -4367_81479,316,4384_7913,Dublin Connolly,A905,1,4384_7778018_Txc86DB9FEB-37BA-45A2-87A6-1833A9128098,4384_536 -4367_81479,319,4384_7914,Dublin Connolly,A905,1,4384_7778018_Txc7F2DEECA-41E5-4ADD-B9FA-050FE1C5DCD2,4384_537 -4367_81479,138,4384_7915,Dublin Connolly,A905,1,4384_7778018_Txc0A1BBAFF-4256-4FE3-A8AC-1DAF5DC8D9B2,4384_536 -4367_81479,317,4384_7916,Dublin Connolly,A905,1,4384_7778018_TxcF83759BA-C81C-4E8D-A11B-CF098C69AA4D,4384_536 -4367_81479,318,4384_7917,Dublin Connolly,A905,1,4384_7778018_TxcC271E579-9E50-4BED-941C-66D3ED2ED862,4384_536 -4367_81479,271,4384_7918,Dublin Connolly,A905,1,4384_7778018_Txc192AA3B3-2DB9-4115-9B58-39909418A71E,4384_537 -4367_81479,320,4384_7919,Dublin Connolly,A905,1,4384_7778018_Txc9FE2F683-57D5-462E-A2C6-E196E6C34EAE,4384_537 -4367_81485,325,4384_792,Lansdowne Road,E551,1,4384_7778018_TxcEEA35E57-6255-41E3-BEFA-E40F7C1D6356,4384_23 -4367_81479,314,4384_7921,Dublin Connolly,A907,1,4384_7778018_Txc8920C123-8360-4809-8256-7DBEC9F43879,4384_535 -4367_81479,23,4384_7922,Dublin Connolly,A907,1,4384_7778018_TxcDB0DF622-599E-4B98-B05C-7133F38FDFBA,4384_536 -4367_81479,278,4384_7923,Dublin Connolly,A907,1,4384_7778018_Txc03FDCC5B-3867-4B61-91A5-E95D0388C233,4384_537 -4367_81479,315,4384_7930,Dublin Connolly,A907,1,4384_7778018_TxcFF6EB983-3B84-4E01-9EC0-49CA4182B77E,4384_535 -4367_81479,316,4384_7931,Dublin Connolly,A907,1,4384_7778018_Txc5AFBD79C-819A-4D54-9A46-A36DB7734646,4384_536 -4367_81479,319,4384_7932,Dublin Connolly,A907,1,4384_7778018_Txc8086DF19-DC49-41E8-9953-B6D662139DAD,4384_537 -4367_81479,138,4384_7933,Dublin Connolly,A907,1,4384_7778018_TxcD9F94F21-A4FA-4429-B41B-D5F8E409A44D,4384_536 -4367_81479,317,4384_7934,Dublin Connolly,A907,1,4384_7778018_TxcD969712D-CE35-4DA9-98DE-2B6A0AC63C12,4384_536 -4367_81479,318,4384_7935,Dublin Connolly,A907,1,4384_7778018_Txc3597A683-DD8B-420C-9755-F4B70F8C536B,4384_536 -4367_81479,271,4384_7936,Dublin Connolly,A907,1,4384_7778018_TxcBE4092AE-7E7A-40EC-BC21-8C5691C01FAF,4384_537 -4367_81479,320,4384_7937,Dublin Connolly,A907,1,4384_7778018_Txc287DE4FF-E29D-4BFB-8141-3521C36E5258,4384_537 -4367_81479,314,4384_7939,Dublin Connolly,A909,1,4384_7778018_Txc8F14A9FE-AD9A-4E3F-B5BD-D643BED26E87,4384_535 -4367_81485,278,4384_794,Bray (Daly),E221,1,4384_7778018_Txc09F95BBD-06E9-42CD-995A-D9F699684402,4384_6 -4367_81479,23,4384_7940,Dublin Connolly,A909,1,4384_7778018_Txc4076049C-CCC7-4889-A037-354D986EADA1,4384_536 -4367_81479,278,4384_7941,Dublin Connolly,A909,1,4384_7778018_Txc054B6134-388B-4964-A437-628205A19C5C,4384_537 -4367_81479,315,4384_7949,Dublin Connolly,A909,1,4384_7778018_TxcB148B17C-EC2F-4A60-B489-A830E6E29D46,4384_535 -4367_81479,316,4384_7950,Dublin Connolly,A909,1,4384_7778018_Txc6123A8FA-1CD6-461F-85D3-60426F88E44B,4384_536 -4367_81479,319,4384_7951,Dublin Connolly,A909,1,4384_7778018_Txc2C5D5A09-AD08-4B90-AE54-EEC81EA0C7CC,4384_537 -4367_81479,138,4384_7952,Dublin Connolly,A909,1,4384_7778018_TxcE33DB1B5-F7F1-43D7-9294-41D498EB9088,4384_536 -4367_81479,317,4384_7953,Dublin Connolly,A909,1,4384_7778018_TxcD0130DCD-C81B-4941-9C17-D733EF4EC2FD,4384_536 -4367_81479,318,4384_7954,Dublin Connolly,A909,1,4384_7778018_Txc8AE32275-2611-40A8-AF65-470CA5751E96,4384_536 -4367_81479,271,4384_7955,Dublin Connolly,A909,1,4384_7778018_TxcF2A898BC-CFA4-45B2-B9CF-6BF2279209E8,4384_537 -4367_81479,320,4384_7956,Dublin Connolly,A909,1,4384_7778018_Txc746D13A0-43C1-435A-B245-E4A58767C4D9,4384_537 -4367_81479,314,4384_7958,Dublin Connolly,A911,1,4384_7778018_Txc701AAD0D-C689-4D7D-90C9-7B5420A8C897,4384_535 -4367_81479,23,4384_7959,Dublin Connolly,A911,1,4384_7778018_Txc443227EB-246A-410E-8982-9DDC31C77443,4384_536 -4367_81479,278,4384_7960,Dublin Connolly,A911,1,4384_7778018_TxcB550760B-5FC6-42D6-AEA0-AEA94ED03CCA,4384_537 -4367_81479,315,4384_7968,Dublin Connolly,A911,1,4384_7778018_TxcDED87F3F-288A-4A40-8B4F-07FBEC79CE29,4384_535 -4367_81479,316,4384_7969,Dublin Connolly,A911,1,4384_7778018_Txc78E60637-F5B2-4E79-9938-62CACCBD62CB,4384_536 -4367_81479,319,4384_7970,Dublin Connolly,A911,1,4384_7778018_TxcF540CADF-F71F-449E-836B-94327FCCE8CE,4384_537 -4367_81479,138,4384_7971,Dublin Connolly,A911,1,4384_7778018_Txc26B8DB83-A7AA-4389-827F-AC6D673B593C,4384_536 -4367_81479,317,4384_7972,Dublin Connolly,A911,1,4384_7778018_Txc51505586-AE41-49D1-926B-A41D4CCC3EC9,4384_536 -4367_81479,318,4384_7973,Dublin Connolly,A911,1,4384_7778018_Txc28074F34-4B5A-4CEE-B096-E0AFAECC07F3,4384_536 -4367_81479,271,4384_7974,Dublin Connolly,A911,1,4384_7778018_Txc97CFF1F0-D88B-4F5D-BDBC-BB58F0A19309,4384_537 -4367_81479,320,4384_7975,Dublin Connolly,A911,1,4384_7778018_Txc7795CC03-7165-4D90-9F4F-C794ED39C1FA,4384_537 -4367_81479,314,4384_7979,Dublin Connolly,A913,1,4384_7778018_TxcFDFBE59F-AD11-41EB-8116-5F03A018E2E8,4384_535 -4367_81485,319,4384_798,Bray (Daly),E221,1,4384_7778018_TxcD132D7D4-BB65-4A8B-86E8-796139C6E262,4384_6 -4367_81479,23,4384_7980,Dublin Connolly,A913,1,4384_7778018_TxcE848BBFF-DB2E-4252-8941-69D1008AAC8F,4384_536 -4367_81479,278,4384_7981,Dublin Connolly,A913,1,4384_7778018_TxcC95D4A56-2FCC-4B22-AA34-B0D8D8C8CEC2,4384_536 -4367_81479,315,4384_7987,Dublin Connolly,A913,1,4384_7778018_Txc8827B6C0-4B2B-4E7C-B7C8-BDAE3A18AA26,4384_535 -4367_81479,316,4384_7988,Dublin Connolly,A913,1,4384_7778018_TxcC15685DC-4E2B-4E67-8AE7-422A2EF55059,4384_536 -4367_81479,319,4384_7989,Dublin Connolly,A913,1,4384_7778018_Txc704ABE97-C54F-4C87-9B9F-60E47800CE5A,4384_536 -4367_81485,271,4384_799,Bray (Daly),E221,1,4384_7778018_Txc8E9866D0-1AD4-44ED-9730-71FF309E62B0,4384_6 -4367_81479,314,4384_7993,Dublin Connolly,A915,1,4384_7778018_TxcD958C66D-DF0F-4C8C-BBCE-9FEC3913271F,4384_535 -4367_81479,23,4384_7994,Dublin Connolly,A915,1,4384_7778018_Txc06F86132-C81D-4680-A0B9-D04B5BA7AD43,4384_536 -4367_81479,278,4384_7995,Dublin Connolly,A915,1,4384_7778018_TxcA42D9D36-6CC5-4036-B475-0D78123E5C6E,4384_537 -4367_81485,314,4384_8,Bray (Daly),E201,1,4384_7778018_Txc0C1E2E06-61B7-4312-B1D7-A87A7E40A124,4384_6 -4367_81485,317,4384_80,Bray (Daly),E203,1,4384_7778018_TxcA4C65EB1-B7BC-4751-8333-DAC33704BF17,4384_7 -4367_81485,320,4384_800,Bray (Daly),E221,1,4384_7778018_TxcC55766F0-3856-4101-9197-42E9331FFB7F,4384_6 -4367_81479,315,4384_8003,Dublin Connolly,A915,1,4384_7778018_TxcDF6E95E5-3803-41AB-9347-61E0B21E4A9C,4384_535 -4367_81479,316,4384_8004,Dublin Connolly,A915,1,4384_7778018_TxcD95BCD70-20C4-4302-900F-DC3912E27B0B,4384_536 -4367_81479,319,4384_8005,Dublin Connolly,A915,1,4384_7778018_TxcA4BAB08B-8231-4013-B6A0-AB0F13C64093,4384_537 -4367_81479,138,4384_8006,Dublin Connolly,A915,1,4384_7778018_Txc5F2BD699-A603-4084-A72D-7792548A129A,4384_536 -4367_81479,317,4384_8007,Dublin Connolly,A915,1,4384_7778018_TxcFD4AF87C-FE7B-43C6-8BBD-78D5C252F05C,4384_536 -4367_81479,318,4384_8008,Dublin Connolly,A915,1,4384_7778018_Txc9E6CAAF6-E10F-46C8-B041-830BE4EFDF28,4384_536 -4367_81479,271,4384_8009,Dublin Connolly,A915,1,4384_7778018_TxcFEB7CB5D-4E07-41B3-896C-55AE065B448D,4384_541 -4367_81485,211,4384_801,Bray (Daly),E228,1,4384_7778018_Txc398DF9D8-4C32-44A8-AEC4-7DE8CB7728C4,4384_7 -4367_81479,320,4384_8010,Dublin Connolly,A915,1,4384_7778018_Txc9D528896-F4FE-4DA1-A409-BC0F4BEA65C3,4384_541 -4367_81479,314,4384_8013,Sligo (MacDiarmada),A900,0,4384_7778018_Txc29475D09-7C9D-4158-B855-1415CAAFF99C,4384_549 -4367_81479,315,4384_8016,Sligo (MacDiarmada),A900,0,4384_7778018_TxcA6B57761-DBD4-4A14-AC50-AA296CDF382D,4384_549 -4367_81479,314,4384_8017,Sligo (MacDiarmada),A902,0,4384_7778018_Txc56EAE217-3584-4A64-956B-34C71E03EFD3,4384_550 -4367_81479,23,4384_8018,Sligo (MacDiarmada),A902,0,4384_7778018_TxcDBC2C68D-194C-499C-AE9B-B5781922C37C,4384_551 -4367_81479,278,4384_8019,Sligo (MacDiarmada),A902,0,4384_7778018_TxcFBE06E0C-B399-49DB-87EF-DFDA1A65084F,4384_554 -4367_81479,315,4384_8026,Sligo (MacDiarmada),A902,0,4384_7778018_TxcE73A89C1-9FC7-4764-B687-B6A84574AABD,4384_550 -4367_81479,316,4384_8027,Sligo (MacDiarmada),A902,0,4384_7778018_Txc61A1F752-9C5A-4E02-8CB1-2CC0E554DF57,4384_551 -4367_81479,319,4384_8028,Sligo (MacDiarmada),A902,0,4384_7778018_Txc44DED6F8-A76E-4D63-B8AF-BEB6AFAE73FF,4384_554 -4367_81479,138,4384_8029,Sligo (MacDiarmada),A902,0,4384_7778018_TxcB7BD0A87-6136-42D7-8667-3EB676308361,4384_551 -4367_81479,317,4384_8030,Sligo (MacDiarmada),A902,0,4384_7778018_Txc4BFA75EC-1F9B-4CFC-94BA-1CFAF05A18EB,4384_551 -4367_81479,318,4384_8031,Sligo (MacDiarmada),A902,0,4384_7778018_TxcBA86A901-9069-4EDD-817B-4821F7C09E4E,4384_551 -4367_81479,271,4384_8032,Sligo (MacDiarmada),A902,0,4384_7778018_TxcF8BC6B75-5F73-4D2D-87D6-3FAD74C6CC8F,4384_561 -4367_81479,320,4384_8033,Sligo (MacDiarmada),A902,0,4384_7778018_Txc2453E163-4163-4041-9B18-3AEA032D984B,4384_561 -4367_81479,314,4384_8035,Sligo (MacDiarmada),A904,0,4384_7778018_Txc15951131-5011-4708-ACB0-2819038CE177,4384_550 -4367_81479,23,4384_8036,Sligo (MacDiarmada),A904,0,4384_7778018_TxcBA7385EB-02A8-40E4-8D09-03512E49F80B,4384_551 -4367_81479,315,4384_8039,Sligo (MacDiarmada),A904,0,4384_7778018_TxcB0DBB7FD-39DD-4FB9-9DCE-76505AC5910E,4384_550 -4367_81485,96,4384_804,Bray (Daly),E228,1,4384_7778018_TxcB193374D-31FB-4B08-AFDC-FD6EF5660D48,4384_29 -4367_81479,316,4384_8040,Sligo (MacDiarmada),A904,0,4384_7778018_Txc5240ED4F-8855-4E76-BB48-E6320DCCF083,4384_551 -4367_81479,138,4384_8041,Sligo (MacDiarmada),A904,0,4384_7778018_Txc566F0DB6-267F-473D-A35B-A2E9A2EC965A,4384_551 -4367_81479,317,4384_8042,Sligo (MacDiarmada),A904,0,4384_7778018_TxcD5877F00-8A90-4542-81B1-DAB8A9CFDB9F,4384_551 -4367_81479,318,4384_8043,Sligo (MacDiarmada),A904,0,4384_7778018_Txc7A0878A8-A61F-4BAD-9B76-F2CD3711DA0A,4384_551 -4367_81479,314,4384_8046,Sligo (MacDiarmada),A906,0,4384_7778018_Txc739F85B2-EE28-4DEF-9FE6-A5092B36F142,4384_550 -4367_81479,23,4384_8047,Sligo (MacDiarmada),A906,0,4384_7778018_Txc7D16C6ED-3AED-4308-A691-8A9BEE725D84,4384_551 -4367_81479,278,4384_8048,Sligo (MacDiarmada),A906,0,4384_7778018_Txc7F659391-166E-42F4-BDD1-3C23CB4C09E4,4384_554 -4367_81485,214,4384_805,Bray (Daly),E228,1,4384_7778018_Txc41925693-8FC1-4526-BC5F-0C3979AA03D0,4384_29 -4367_81479,315,4384_8053,Sligo (MacDiarmada),A906,0,4384_7778018_Txc96CBDCF3-07C3-44A5-8195-8C5AFFF0876B,4384_550 -4367_81479,316,4384_8054,Sligo (MacDiarmada),A906,0,4384_7778018_TxcC9A8065B-9F54-4F1B-872B-37EAEF07DF9C,4384_551 -4367_81479,319,4384_8055,Sligo (MacDiarmada),A906,0,4384_7778018_Txc79DE3324-48C1-473C-A059-89D0644A251E,4384_554 -4367_81479,138,4384_8056,Sligo (MacDiarmada),A906,0,4384_7778018_Txc9E377A4A-7B4B-4B57-9BDA-E138C957113C,4384_551 -4367_81479,317,4384_8057,Sligo (MacDiarmada),A906,0,4384_7778018_Txc4C139341-3825-4208-8157-03ECAF71206F,4384_551 -4367_81479,318,4384_8058,Sligo (MacDiarmada),A906,0,4384_7778018_Txc37F84AD7-A184-4A2D-B89B-2E4FF0D3B922,4384_551 -4367_81479,271,4384_8059,Sligo (MacDiarmada),A906,0,4384_7778018_TxcBB652E45-DE52-4A47-AA72-5F8EC26BB00B,4384_554 -4367_81485,316,4384_806,Bray (Daly),E228,1,4384_7778018_Txc5BE6EF68-43E3-4D95-93BD-9A40FC92B0FE,4384_7 -4367_81479,320,4384_8060,Sligo (MacDiarmada),A906,0,4384_7778018_TxcB391C91A-3EBC-4DE7-BFB5-BD4D3800FAAF,4384_554 -4367_81479,314,4384_8063,Sligo (MacDiarmada),A908,0,4384_7778018_TxcC9BAF77B-C67F-48C4-B37F-5013FAB1711C,4384_550 -4367_81479,23,4384_8064,Sligo (MacDiarmada),A908,0,4384_7778018_Txc8A22D2F6-EAF4-42F3-9B58-0AF0FE196775,4384_551 -4367_81479,278,4384_8065,Sligo (MacDiarmada),A908,0,4384_7778018_Txc9AEF48CD-D23A-4C59-AC28-4F82E300C291,4384_554 -4367_81485,138,4384_807,Bray (Daly),E228,1,4384_7778018_Txc9CE7F245-1331-470B-84EB-8534900F5E56,4384_7 -4367_81479,315,4384_8070,Sligo (MacDiarmada),A908,0,4384_7778018_Txc3C542B18-8CBD-40D8-B381-C0EF77E2EF94,4384_550 -4367_81479,316,4384_8071,Sligo (MacDiarmada),A908,0,4384_7778018_Txc33A67E92-5207-41F2-B4F4-ECE0856424F7,4384_551 -4367_81479,319,4384_8072,Sligo (MacDiarmada),A908,0,4384_7778018_Txc85A2728C-7CE8-45AC-9E1C-3253C269CAB2,4384_554 -4367_81479,138,4384_8073,Sligo (MacDiarmada),A908,0,4384_7778018_Txc0AAEE4A9-476D-43F8-9CEE-3CD61E103946,4384_551 -4367_81479,317,4384_8074,Sligo (MacDiarmada),A908,0,4384_7778018_TxcDA962ED5-AFAD-48A3-824D-0FE4474365D0,4384_551 -4367_81479,318,4384_8075,Sligo (MacDiarmada),A908,0,4384_7778018_Txc5DE47645-D19F-4697-B683-7A304891E02F,4384_551 -4367_81479,271,4384_8076,Sligo (MacDiarmada),A908,0,4384_7778018_TxcA7FFE5C1-815C-4917-81F9-A441E279CC62,4384_554 -4367_81479,320,4384_8077,Sligo (MacDiarmada),A908,0,4384_7778018_Txc2B50E3BA-C85A-4A54-939B-28926B9DF7BF,4384_554 -4367_81479,314,4384_8078,Sligo (MacDiarmada),A910,0,4384_7778018_Txc4BC2379A-5C64-4236-A36C-3CEAD3A404D9,4384_550 -4367_81485,317,4384_808,Bray (Daly),E228,1,4384_7778018_Txc98B6FE48-8E56-4D72-853D-AE1E52D93A13,4384_7 -4367_81479,315,4384_8081,Sligo (MacDiarmada),A910,0,4384_7778018_Txc378C79DD-4251-484A-A6E5-13026B211BF2,4384_550 -4367_81479,23,4384_8082,Sligo (MacDiarmada),A910,0,4384_7778018_TxcA1D7057D-A841-4C02-8D2B-3D9AC52622AC,4384_550 -4367_81479,278,4384_8083,Sligo (MacDiarmada),A910,0,4384_7778018_TxcADA64459-6411-4734-B34E-7E0763B5903A,4384_551 -4367_81479,316,4384_8089,Sligo (MacDiarmada),A910,0,4384_7778018_TxcE5DD8CD8-FE24-4C16-A27A-C2477629FF28,4384_550 -4367_81485,318,4384_809,Bray (Daly),E228,1,4384_7778018_Txc4416C373-F0DD-4251-84A0-DD00F784FDC2,4384_7 -4367_81479,319,4384_8090,Sligo (MacDiarmada),A910,0,4384_7778018_Txc01F15448-9F52-4D65-8DAD-F7DFAA85DFBE,4384_551 -4367_81479,314,4384_8092,Sligo (MacDiarmada),A912,0,4384_7778018_Txc68527819-F731-46FF-86E6-35DE1F92358D,4384_552 -4367_81479,23,4384_8093,Sligo (MacDiarmada),A912,0,4384_7778018_Txc4F68AFBF-9472-42B1-BD87-0F44B6C05D0E,4384_553 -4367_81479,278,4384_8094,Sligo (MacDiarmada),A912,0,4384_7778018_Txc95C733D4-43A6-4F23-B00A-00DC61D58A29,4384_555 -4367_81485,318,4384_81,Bray (Daly),E203,1,4384_7778018_TxcB67BECBA-A45F-49A9-8CBD-4E0E2DB67190,4384_7 -4367_81485,314,4384_810,Bray (Daly),E242,1,4384_7778018_TxcDE1391CE-B677-49FE-A51B-163EEB927125,4384_7 -4367_81479,315,4384_8100,Sligo (MacDiarmada),A912,0,4384_7778018_TxcE3970F28-F150-4693-ACDF-B148A88F7693,4384_552 -4367_81479,316,4384_8101,Sligo (MacDiarmada),A912,0,4384_7778018_Txc1B25FD92-7A6C-4967-8F7E-0B6744193FF9,4384_553 -4367_81479,319,4384_8102,Sligo (MacDiarmada),A912,0,4384_7778018_TxcC2F94ABA-D63F-4E2F-BB6C-EA6E809EF033,4384_555 -4367_81479,138,4384_8103,Sligo (MacDiarmada),A912,0,4384_7778018_TxcAB4FE1C7-1E8A-4CA4-BC0B-9BFD84794A52,4384_553 -4367_81479,317,4384_8104,Sligo (MacDiarmada),A912,0,4384_7778018_Txc719F2C4C-4997-4B35-B36C-A8B04A573A4F,4384_553 -4367_81479,318,4384_8105,Sligo (MacDiarmada),A912,0,4384_7778018_Txc3063C5AF-0FE9-4F1F-B7C7-892BE5F91290,4384_553 -4367_81479,271,4384_8106,Sligo (MacDiarmada),A912,0,4384_7778018_Txc45C3663B-9045-4CCF-B77D-D4522F337EBD,4384_555 -4367_81479,320,4384_8107,Sligo (MacDiarmada),A912,0,4384_7778018_Txc2461F7AE-7038-4DEA-BA06-45BFE48DCFCB,4384_555 -4367_81479,314,4384_8109,Longford,D930,0,4384_7778018_Txc1CB3C298-CCDD-455A-B05B-A8DE8C5F96B8,4384_556 -4367_81479,315,4384_8111,Longford,D930,0,4384_7778018_Txc182A65FA-3716-47D7-8B6F-8E9C708A4D7D,4384_556 -4367_81479,314,4384_8116,Sligo (MacDiarmada),A914,0,4384_7778018_Txc592CFABB-C8F0-4B87-A2DF-6B37B3A44DB6,4384_550 -4367_81479,315,4384_8118,Sligo (MacDiarmada),A914,0,4384_7778018_Txc7D73425C-AD53-4850-9033-85477F880EFC,4384_550 -4367_81479,23,4384_8119,Sligo (MacDiarmada),A914,0,4384_7778018_Txc573F5055-6802-4469-AF6E-E20B4EFB25FB,4384_550 -4367_81479,278,4384_8120,Sligo (MacDiarmada),A914,0,4384_7778018_Txc56EA0817-3F62-459C-9737-04D7BF02D886,4384_551 -4367_81479,316,4384_8126,Sligo (MacDiarmada),A914,0,4384_7778018_Txc25D0C2C5-CA30-4B5E-BD31-67240BF914B4,4384_550 -4367_81479,319,4384_8127,Sligo (MacDiarmada),A914,0,4384_7778018_Txc30C49F99-1AE7-4938-8818-CB23AB76BAC7,4384_551 -4367_81479,138,4384_8128,Sligo (MacDiarmada),A914,0,4384_7778018_TxcAEAD9F9F-3F99-4D8D-880B-B94C5D99624C,4384_550 -4367_81479,317,4384_8129,Sligo (MacDiarmada),A914,0,4384_7778018_Txc703BDAF0-B582-4F7C-9EA3-E0E8C9F01548,4384_550 -4367_81485,315,4384_813,Bray (Daly),E242,1,4384_7778018_Txc6C1EB507-FC6C-4792-801A-EA0970A889BE,4384_7 -4367_81479,318,4384_8130,Sligo (MacDiarmada),A914,0,4384_7778018_Txc29D969BC-871C-4E89-9DFA-DD7C78B5A245,4384_550 -4367_81479,271,4384_8131,Sligo (MacDiarmada),A914,0,4384_7778018_Txc4E785FA7-5728-46D3-8ABF-B9FEA38200FE,4384_551 -4367_81479,320,4384_8132,Sligo (MacDiarmada),A914,0,4384_7778018_Txc6F5E2D7A-F264-4F92-AE0E-2352621DB1ED,4384_551 -4367_81462,373,4384_8135,Mallow,A301,1,4384_7778018_Txc7DE2FDC9-214A-405C-8B18-40B192B243A6,4384_568 -4367_81462,374,4384_8136,Mallow,A301,1,4384_7778018_Txc1B268787-F723-4E81-956F-4A1048229D5C,4384_568 -4367_81462,375,4384_8137,Cork (Kent),A301,1,4384_7778018_Txc9621BD9C-3460-444B-87F0-1EE27FC809C9,4384_569 -4367_81462,376,4384_8138,Cork (Kent),A301,1,4384_7778018_TxcA2C35A7C-EF70-48DE-B3EB-890DC0FD9B5F,4384_569 -4367_81462,337,4384_8139,Dublin Heuston,A303,1,4384_7778018_Txc47C2A9A5-11F6-41E6-A63C-85DECBF6051D,4384_570 -4367_81462,341,4384_8144,Dublin Heuston,A303,1,4384_7778018_Txc4B7322C3-B0C8-4A6D-8D54-668A7FE6A2B8,4384_570 -4367_81462,342,4384_8145,Cork (Kent),A301,1,4384_7778018_Txc91AC42DB-27D6-4E51-B91A-C4A954755298,4384_569 -4367_81462,251,4384_8148,Mallow,A301,1,4384_7778018_TxcD92CF897-637A-4455-B3F7-9D3D3E1F807A,4384_571 -4367_81462,319,4384_8149,Cork (Kent),A301,1,4384_7778018_Txc0BDC49C8-1190-456A-BFBD-59D61589BDBF,4384_569 -4367_81462,271,4384_8151,Cork (Kent),B301,1,4384_7778018_Txc14A12600-7236-4828-88C7-8C6F57E214F7,4384_577 -4367_81462,320,4384_8152,Cork (Kent),B301,1,4384_7778018_Txc26ED78F6-B7C1-4116-8884-46E04643FE59,4384_577 -4367_81462,337,4384_8153,Mallow,A305,1,4384_7778018_Txc058A02EA-C31A-4FE4-BA59-A831F89C0BA0,4384_571 -4367_81462,338,4384_8156,Mallow,A305,1,4384_7778018_Txc8AF1C5E2-5A4B-49B8-8455-5EEC84645FD0,4384_571 -4367_81462,337,4384_8157,Mallow,A307,1,4384_7778018_Txc43C1E9A0-48F5-4C0D-99CD-7A046DE54F99,4384_571 -4367_81462,338,4384_8159,Mallow,A307,1,4384_7778018_Txc33515A59-39A2-4CA8-9560-F40EC3CFCAA8,4384_571 -4367_81462,278,4384_8161,Dublin Heuston,A303,1,4384_7778018_Txc92C0DB74-1B8F-47A0-A70A-E8139497C607,4384_572 -4367_81462,319,4384_8164,Dublin Heuston,A303,1,4384_7778018_TxcC2E98CB8-721E-4ECC-B908-F8F8D1C3E608,4384_572 -4367_81462,337,4384_8165,Mallow,A309,1,4384_7778018_TxcE00AA057-411E-4299-9609-AB5591ACDB82,4384_571 -4367_81462,338,4384_8167,Mallow,A309,1,4384_7778018_Txc6AE0B995-6498-43DB-A394-0538D7AEC800,4384_571 -4367_81462,271,4384_8168,Dublin Heuston,A331,1,4384_7778018_Txc763173C6-D3A0-4E34-AB3A-C8A9BBD87BC7,4384_582 -4367_81462,320,4384_8169,Dublin Heuston,A331,1,4384_7778018_TxcC63C7600-926C-4770-B9C8-D1B05D5967A2,4384_582 -4367_81462,278,4384_8172,Dublin Heuston,A305,1,4384_7778018_TxcA13B96CF-6F49-4C39-914B-8AD31B885A4C,4384_573 -4367_81462,319,4384_8174,Dublin Heuston,A305,1,4384_7778018_Txc655A2461-91F7-477B-A038-A89713431450,4384_573 -4367_81462,337,4384_8175,Mallow,A311,1,4384_7778018_TxcD756D5C8-7B8E-4427-AC77-5ABDB90C9DD8,4384_571 -4367_81462,338,4384_8176,Mallow,A311,1,4384_7778018_TxcD4379E2D-D098-439C-AD9C-9F7E1FC576E7,4384_571 -4367_81462,278,4384_8177,Mallow,A307,1,4384_7778018_Txc236CE24E-9116-4D13-91A1-DB10D229AF92,4384_571 -4367_81462,319,4384_8180,Mallow,A307,1,4384_7778018_Txc22A483D3-4E32-4FC3-89DD-C94D49F83695,4384_571 -4367_81462,337,4384_8182,Cork (Kent),A313,1,4384_7778018_Txc37898206-ECF3-4A7D-8ED4-0E68E29717D5,4384_569 -4367_81462,338,4384_8183,Cork (Kent),A313,1,4384_7778018_TxcA1436B9C-5B44-4B1F-A3FF-07672FEAA203,4384_569 -4367_81462,278,4384_8184,Cork (Kent),A309,1,4384_7778018_Txc09E1FAA0-4B90-497B-8423-AC74CD7F9D2A,4384_569 -4367_81462,319,4384_8188,Cork (Kent),A309,1,4384_7778018_Txc20305834-FC2A-43B0-B003-CF02D60C83B7,4384_569 -4367_81462,278,4384_8190,Dublin Heuston,A311,1,4384_7778018_TxcEAF6D821-6851-43A1-8F4E-0D2A8749F965,4384_574 -4367_81462,319,4384_8193,Dublin Heuston,A311,1,4384_7778018_TxcD04115C3-F08E-469E-AD02-89CA44FA4798,4384_574 -4367_81462,337,4384_8194,Cork (Kent),A315,1,4384_7778018_TxcBCFDE7BE-EC92-447F-AF88-0B4D03C907D6,4384_569 -4367_81462,344,4384_8197,Cork (Kent),A315,1,4384_7778018_TxcDF97043D-2DED-441A-A4F1-3ADE4598E095,4384_569 -4367_81462,138,4384_8198,Cork (Kent),A315,1,4384_7778018_TxcBA47C5D9-E039-44C5-A7D7-BF07DF304CFF,4384_569 -4367_81462,332,4384_8199,Cork (Kent),A315,1,4384_7778018_TxcCB0EEEFD-BF2C-48F1-B611-7B804CA13836,4384_569 -4367_81462,278,4384_8200,Cork (Kent),A313,1,4384_7778018_TxcBA15638D-12B6-4831-8D5A-24C7715148BC,4384_569 -4367_81462,319,4384_8203,Cork (Kent),A313,1,4384_7778018_Txc9D2BDD7E-27EF-4356-8F21-0B0C915474E6,4384_569 -4367_81462,337,4384_8206,Tralee Casement Station,A300,0,4384_7778018_Txc5C44185D-3BA3-4190-B17E-2AF431F8DF9E,4384_583 -4367_81462,349,4384_8207,Tralee Casement Station,A300,0,4384_7778018_Txc14A3F4B6-421C-4CAF-B152-F34C0FBF016B,4384_583 -4367_81462,278,4384_8209,Tralee Casement Station,A302,0,4384_7778018_Txc95C1F421-D936-4B2A-920C-E59BEB2D08AF,4384_586 -4367_81485,314,4384_821,Bray (Daly),E243,1,4384_7778018_Txc305565DB-BAF4-4166-AF75-35A96C9CBA8D,4384_6 -4367_81462,319,4384_8211,Tralee Casement Station,A302,0,4384_7778018_Txc7D9F81C9-974A-4A22-B5F4-F667AE1C6712,4384_586 -4367_81462,342,4384_8212,Tralee Casement Station,A300,0,4384_7778018_Txc682EC013-DB33-48C9-AD28-BDD9EA2A1355,4384_583 -4367_81462,319,4384_8214,Tralee Casement Station,A300,0,4384_7778018_Txc66F804AE-9978-41EC-8F57-3242FE10C70F,4384_583 -4367_81462,337,4384_8215,Tralee Casement Station,A302,0,4384_7778018_Txc70811610-F741-41FB-A7B5-250DB0326E84,4384_583 -4367_81462,338,4384_8217,Tralee Casement Station,A302,0,4384_7778018_Txc87503E10-D829-4D21-A094-F640260B20A1,4384_583 -4367_81462,251,4384_8220,Tralee Casement Station,A300,0,4384_7778018_Txc262331D0-F959-43E4-A8AB-27E48EE575D4,4384_587 -4367_81462,337,4384_8221,Tralee Casement Station,A304,0,4384_7778018_Txc95062395-EE3E-4820-8D5F-E3929ABA3980,4384_584 -4367_81462,338,4384_8222,Tralee Casement Station,A304,0,4384_7778018_TxcACEC6BE3-2DF9-40B7-AEA3-56D4CAA74349,4384_584 -4367_81462,278,4384_8225,Tralee Casement Station,A304,0,4384_7778018_Txc23D5D399-2447-4157-80A1-7E246AFB64CB,4384_583 -4367_81462,319,4384_8227,Tralee Casement Station,A304,0,4384_7778018_Txc5C338253-F089-4617-8539-3A6BC21932A8,4384_583 -4367_81462,337,4384_8229,Tralee Casement Station,A306,0,4384_7778018_TxcC3A32FED-E0EA-4BDF-80A7-F31E5B0CCD71,4384_584 -4367_81462,338,4384_8230,Tralee Casement Station,A306,0,4384_7778018_TxcF2E64E44-B3A8-4B34-9968-94E3AA18B65C,4384_584 -4367_81462,278,4384_8233,Tralee Casement Station,A306,0,4384_7778018_Txc4D6F5827-7D07-4D4C-9DAB-2255AC17A754,4384_583 -4367_81462,319,4384_8235,Tralee Casement Station,A306,0,4384_7778018_Txc3AC9E4E7-DE6C-4F09-8DBF-8F9AD6CC6441,4384_583 -4367_81462,337,4384_8236,Tralee Casement Station,A308,0,4384_7778018_Txc76B2EDF4-32E4-487C-B260-161F9697F30C,4384_584 -4367_81462,338,4384_8237,Tralee Casement Station,A308,0,4384_7778018_TxcDAE55BD8-DB87-4689-9795-60E260FC8EDB,4384_584 -4367_81462,337,4384_8241,Tralee Casement Station,A312,0,4384_7778018_Txc23E12E7E-F7C5-4B48-82F8-488457FFC51D,4384_585 -4367_81462,344,4384_8243,Tralee Casement Station,A312,0,4384_7778018_Txc1EC3247A-08C6-4CB5-B5A9-23B8CF301B07,4384_585 -4367_81462,138,4384_8244,Tralee Casement Station,A312,0,4384_7778018_TxcEAA44C86-88DA-42C1-9C07-B5B97AE7C308,4384_592 -4367_81462,332,4384_8245,Tralee Casement Station,A312,0,4384_7778018_Txc4BC2BB46-ED05-431E-B7CE-5A254641A8E2,4384_592 -4367_81462,337,4384_8246,Tralee Casement Station,A310,0,4384_7778018_Txc8C728F1B-F409-4BB1-B1DA-4066BE3F4DB1,4384_584 -4367_81462,278,4384_8247,Tralee Casement Station,A308,0,4384_7778018_Txc144A9222-FA8A-487D-ACB6-636420883D03,4384_587 -4367_81462,338,4384_8249,Tralee Casement Station,A310,0,4384_7778018_Txc306DCD7F-3168-455A-9739-6535F03B3D3A,4384_584 -4367_81485,315,4384_825,Bray (Daly),E243,1,4384_7778018_Txc33AACE88-D654-49BE-B291-709AF7793ED9,4384_6 -4367_81462,319,4384_8250,Tralee Casement Station,A308,0,4384_7778018_TxcBCB7F152-6102-4424-B1A6-016A9991ACB8,4384_587 -4367_81462,278,4384_8253,Tralee Casement Station,A310,0,4384_7778018_TxcF060B824-B3A4-4543-82AD-AC4BD4BDE1F2,4384_583 -4367_81462,319,4384_8255,Tralee Casement Station,A310,0,4384_7778018_Txc2C4C61EE-D27B-4FEA-8890-A033421EDBBF,4384_583 -4367_81462,278,4384_8256,Tralee Casement Station,A312,0,4384_7778018_TxcF8005192-A9E2-4A23-9139-5C706553476F,4384_588 -4367_81462,319,4384_8258,Tralee Casement Station,A312,0,4384_7778018_Txc5EEE3593-B25A-4F84-9644-50CC19DAC3F0,4384_588 -4367_81485,211,4384_826,Bray (Daly),E229,1,4384_7778018_Txc2DEA4795-4438-4719-BB1F-E37A14F547CC,4384_6 -4367_81462,337,4384_8263,Tralee Casement Station,A314,0,4384_7778018_Txc3614E275-2E91-46E8-B04D-5A0E189B9ED1,4384_583 -4367_81462,344,4384_8267,Tralee Casement Station,A314,0,4384_7778018_Txc52BEA647-1E21-456E-A9FF-AEAB34B33C33,4384_583 -4367_81471,337,4384_8272,Dublin Heuston,A503,1,4384_7778018_Txc61810039-8E4D-4657-85A3-848BA8517F8E,4384_594 -4367_81471,349,4384_8274,Dublin Heuston,A503,1,4384_7778018_Txc6E471E2C-BD2F-4D66-A912-A80E67A5878F,4384_594 -4367_81471,314,4384_8275,Dublin Heuston,A501,1,4384_7778018_Txc9B2D78D5-402F-4156-B7AB-6E3C0AD742A5,4384_593 -4367_81471,337,4384_8276,Dublin Heuston,P201,1,4384_7778018_TxcDDB57AD2-3D3B-4526-980F-C1856DD3C94E,4384_600 -4367_81471,315,4384_8277,Dublin Heuston,A501,1,4384_7778018_Txc220B0095-38AF-42B9-892F-E2E6A106EB9D,4384_593 -4367_81471,341,4384_8278,Dublin Heuston,P201,1,4384_7778018_TxcAF60DF7C-4FB2-4B47-B3FD-799A94B48254,4384_600 -4367_81471,337,4384_8279,Dublin Heuston,A505,1,4384_7778018_Txc6A68D173-AAB8-4F35-A9D5-B94749BF7034,4384_595 -4367_81471,338,4384_8281,Dublin Heuston,A505,1,4384_7778018_TxcFD528A9A-07A6-4F34-8DBA-2E4F624201A8,4384_595 -4367_81471,314,4384_8285,Dublin Heuston,P204,1,4384_7778018_Txc7C9540B5-90FB-42C9-A127-F38C8D6383B9,4384_601 -4367_81471,315,4384_8286,Dublin Heuston,P204,1,4384_7778018_TxcFEC10B7A-18A7-4079-92A2-00A5A2FB1E4B,4384_601 -4367_81471,337,4384_8287,Dublin Heuston,A507,1,4384_7778018_Txc99242718-145F-4C0D-9715-490663EF05AD,4384_596 -4367_81471,338,4384_8289,Dublin Heuston,A507,1,4384_7778018_TxcE8BBCC9B-2DA7-43B2-9F2A-09ADCBF5B123,4384_596 -4367_81485,96,4384_829,Bray (Daly),E229,1,4384_7778018_TxcD5BCFC8F-B77F-4EB8-B369-D304C5C635E0,4384_32 -4367_81471,314,4384_8290,Dublin Heuston,P206,1,4384_7778018_TxcB9BD006B-A3A9-47E3-8C57-85A44E60985F,4384_601 -4367_81471,315,4384_8291,Dublin Heuston,P206,1,4384_7778018_Txc87A2C12D-2BC6-49F7-A076-1FF2D9A84FFE,4384_601 -4367_81471,278,4384_8294,Dublin Heuston,A501,1,4384_7778018_TxcADA353C4-8AD2-42CD-B007-806366B63CB6,4384_596 -4367_81471,319,4384_8297,Dublin Heuston,A501,1,4384_7778018_Txc8CA5D134-CBC4-4E03-8C3D-6D1CA96A8E46,4384_596 -4367_81485,214,4384_830,Bray (Daly),E229,1,4384_7778018_TxcD00E691A-7535-49B8-8264-B2E42AF23F82,4384_32 -4367_81471,314,4384_8300,Dublin Heuston,P208,1,4384_7778018_Txc13214641-703C-46B3-BC14-9E7E313FDDEA,4384_602 -4367_81471,315,4384_8301,Dublin Heuston,P208,1,4384_7778018_TxcD084375B-723F-4C57-A0B5-1E602B1165C7,4384_602 -4367_81471,314,4384_8302,Dublin Heuston,A509,1,4384_7778018_Txc01B2D30B-37F0-41E8-A611-2B67987ADD55,4384_597 -4367_81471,336,4384_8303,Dublin Heuston,A509,1,4384_7778018_Txc1B6E6D6B-7AF4-4BA1-9175-4BE83A961BD4,4384_597 -4367_81471,314,4384_8304,Dublin Heuston,P210,1,4384_7778018_Txc46C6160D-A7BC-4CD8-9A73-8EEE59F12044,4384_601 -4367_81471,315,4384_8305,Dublin Heuston,P210,1,4384_7778018_TxcAB8885AC-AB96-405E-BE67-1FD6878AF150,4384_601 -4367_81471,337,4384_8309,Dublin Heuston,A513,1,4384_7778018_Txc68E67521-8121-42C1-A125-7B1B53F5FD45,4384_594 -4367_81485,316,4384_831,Bray (Daly),E229,1,4384_7778018_Txc48430929-9204-464E-9AD8-CAE726AC6A8B,4384_6 -4367_81471,338,4384_8311,Dublin Heuston,A513,1,4384_7778018_Txc19755808-0031-45F0-B8E3-B10ABC4C5B25,4384_594 -4367_81471,314,4384_8312,Dublin Heuston,P212,1,4384_7778018_Txc7ABC20DD-7C4B-4A5D-A7FF-C0364A4FA8B0,4384_601 -4367_81471,315,4384_8313,Dublin Heuston,P212,1,4384_7778018_Txc5DDB57D6-E1A3-4BDB-9E2F-AF55B3DA7BE5,4384_601 -4367_81471,278,4384_8314,Dublin Heuston,A503,1,4384_7778018_Txc2B45FDAB-7887-4999-B4CE-D12DB4719024,4384_594 -4367_81471,319,4384_8315,Dublin Heuston,A503,1,4384_7778018_TxcA689A19B-0062-4CA0-BA95-4EAEB93995F7,4384_594 -4367_81471,314,4384_8317,Dublin Heuston,P214,1,4384_7778018_Txc89D5A825-1A94-49C7-80E5-EC136B00B0A4,4384_601 -4367_81471,315,4384_8318,Dublin Heuston,P214,1,4384_7778018_Txc33FE102C-20C7-43B5-883D-06AB9A75AAA6,4384_601 -4367_81485,138,4384_832,Bray (Daly),E229,1,4384_7778018_Txc43A2F64F-3898-4144-8992-FE2B5C9070DA,4384_6 -4367_81471,337,4384_8323,Dublin Heuston,A517,1,4384_7778018_TxcAED9EC3C-A889-4789-A868-5D4745812A7F,4384_594 -4367_81471,338,4384_8326,Dublin Heuston,A517,1,4384_7778018_Txc8D41F404-C3E2-4E63-95D9-1E48A8D566AC,4384_594 -4367_81471,314,4384_8327,Dublin Heuston,P216,1,4384_7778018_Txc3B668F85-680A-4463-BBC6-8B7535A8C79D,4384_601 -4367_81471,315,4384_8328,Dublin Heuston,P216,1,4384_7778018_TxcA9B8446F-C34F-49FE-A24D-3176CC773CAA,4384_601 -4367_81485,317,4384_833,Bray (Daly),E229,1,4384_7778018_Txc7BFF63CD-47A0-466B-BACD-BEC1AF2B43AC,4384_6 -4367_81471,278,4384_8332,Dublin Heuston,A505,1,4384_7778018_Txc8F24B024-2B15-4B1E-9472-A2988E1A9B42,4384_594 -4367_81471,319,4384_8334,Dublin Heuston,A505,1,4384_7778018_Txc49F35C5E-5681-4880-8D1D-B92F830149FB,4384_594 -4367_81471,314,4384_8335,Dublin Heuston,P218,1,4384_7778018_TxcDDCB19D0-FD2E-4F30-A86F-F426ED6D31C1,4384_601 -4367_81471,315,4384_8336,Dublin Heuston,P218,1,4384_7778018_Txc5371219A-112F-47DF-932E-C0086DD401CE,4384_601 -4367_81485,318,4384_834,Bray (Daly),E229,1,4384_7778018_Txc2D51D105-FF9F-4222-B2BB-AD808ECDEB2E,4384_6 -4367_81471,337,4384_8340,Dublin Heuston,A521,1,4384_7778018_TxcEA5EE93C-5AE0-4CF7-97A5-C51B0E2870F7,4384_596 -4367_81471,338,4384_8342,Dublin Heuston,A521,1,4384_7778018_Txc7D054C04-912B-4057-B3BC-B30D9A173479,4384_596 -4367_81471,314,4384_8344,Dublin Heuston,A519,1,4384_7778018_TxcD10F35D4-52CC-41DC-B8D9-D1627A42C0B9,4384_597 -4367_81471,336,4384_8345,Dublin Heuston,A519,1,4384_7778018_Txc2FFF493C-27CB-4F2E-A6D4-5FC5F29686F1,4384_597 -4367_81471,314,4384_8346,Dublin Heuston,P220,1,4384_7778018_Txc51838DDB-F755-478F-8396-A41EA3727992,4384_601 -4367_81471,315,4384_8347,Dublin Heuston,P220,1,4384_7778018_TxcA443BA2E-F0F5-4E82-B1E4-E59E10E4C260,4384_601 -4367_81471,278,4384_8351,Dublin Heuston,A507,1,4384_7778018_Txc23C8EFF0-C07D-4AD7-A01F-73797A2D8138,4384_594 -4367_81471,319,4384_8352,Dublin Heuston,A507,1,4384_7778018_Txc4841CA2B-FD43-43EC-B59B-89063FFE6BA6,4384_594 -4367_81471,377,4384_8353,Dublin Heuston,A523,1,4384_7778018_Txc7B71D935-3287-4D10-B48C-34368A1ACD9C,4384_598 -4367_81471,378,4384_8354,Dublin Heuston,A523,1,4384_7778018_TxcE1717779-FC88-4843-86CA-D10CAA143EC9,4384_598 -4367_81471,337,4384_8365,Dublin Heuston,A527,1,4384_7778018_Txc73885C40-34A7-4831-AF45-5B4234A2B1CA,4384_596 -4367_81471,278,4384_8366,Dublin Heuston,A509,1,4384_7778018_Txc032B497F-E3AA-48DE-9E6B-B4481E736AB0,4384_594 -4367_81471,338,4384_8369,Dublin Heuston,A527,1,4384_7778018_Txc24A81913-F8E1-471A-A6F1-9445A3C8ED6D,4384_596 -4367_81485,324,4384_837,Lansdowne Road,E552,1,4384_7778018_Txc7E77FB74-E9EA-4ED9-BB7C-92183BB05AB9,4384_23 -4367_81471,319,4384_8370,Dublin Heuston,A509,1,4384_7778018_TxcDF69ED3C-024B-4B9A-AA1E-02B70FF144CA,4384_594 -4367_81471,337,4384_8376,Dublin Heuston,A531,1,4384_7778018_TxcDAFE0466-D122-4CAF-B480-4DE45D64FFBB,4384_599 -4367_81471,379,4384_8377,Dublin Heuston,A531,1,4384_7778018_Txc61A6269A-9AD0-4512-8258-B0F2CBAAD530,4384_599 -4367_81485,325,4384_838,Lansdowne Road,E552,1,4384_7778018_Txc0338CB35-4524-4508-B5F2-912000111164,4384_23 -4367_81471,314,4384_8382,Newbridge,D201,0,4384_7778018_Txc11DF034D-F736-4D60-AF03-FCFF4AB1733D,4384_620 -4367_81471,315,4384_8383,Newbridge,D201,0,4384_7778018_Txc47CCC606-8305-43DC-B127-24D80D3E509D,4384_620 -4367_81471,337,4384_8384,Waterford (Plunkett),A502,0,4384_7778018_Txc8D9BB7C0-62A9-47D7-8DEA-FD2F729FD0CC,4384_612 -4367_81471,338,4384_8386,Waterford (Plunkett),A502,0,4384_7778018_Txc7B5342D1-FDC3-432F-A083-30205534C5E7,4384_612 -4367_81471,314,4384_8389,Carlow,A504,0,4384_7778018_TxcFD383F59-82A2-4721-82B9-7C548FBF7574,4384_613 -4367_81485,314,4384_839,Greystones,E122,1,4384_7778018_Txc2509DC5B-29A5-4CBA-A890-B2994307B9B5,4384_1 -4367_81471,336,4384_8390,Carlow,A504,0,4384_7778018_Txc4D9C6002-0422-470F-A7A4-231CE941A010,4384_613 -4367_81471,278,4384_8392,Waterford (Plunkett),A500,0,4384_7778018_Txc008042D9-4E12-4CB3-8FBC-AABD4B1D4AE3,4384_612 -4367_81471,319,4384_8395,Waterford (Plunkett),A500,0,4384_7778018_Txc0127B424-E875-4413-86CE-442DBD2DE830,4384_612 -4367_81471,314,4384_8398,Newbridge,D205,0,4384_7778018_Txc74659798-205C-4693-AF84-15823294DD52,4384_621 -4367_81471,315,4384_8399,Newbridge,D205,0,4384_7778018_Txc1BDF5C5D-8B62-4745-B52D-4821DF23B440,4384_621 -4367_81471,337,4384_8400,Waterford (Plunkett),A508,0,4384_7778018_TxcF17D3B9C-C825-48F4-8E5C-FD1B5E61C9E1,4384_614 -4367_81471,338,4384_8402,Waterford (Plunkett),A508,0,4384_7778018_TxcFDB137C9-225D-4D0E-8E77-7FB78DDE775E,4384_614 -4367_81471,314,4384_8404,Newbridge,D207,0,4384_7778018_TxcF2FD11DF-3F64-4948-87F6-7FC3462269AD,4384_620 -4367_81471,315,4384_8405,Newbridge,D207,0,4384_7778018_Txc1F102B8E-2FD6-4415-B0E0-F594F68A1049,4384_620 -4367_81471,314,4384_8408,Newbridge,D209,0,4384_7778018_Txc290A88DE-7A2C-4014-B1EC-489A22130C8E,4384_620 -4367_81471,315,4384_8409,Newbridge,D209,0,4384_7778018_Txc5F4CBFD9-3302-4606-AA64-3693976E2D47,4384_620 -4367_81471,314,4384_8410,Carlow,A512,0,4384_7778018_Txc8F348430-765E-4CE3-9117-B53C7AE16DB2,4384_613 -4367_81471,336,4384_8411,Carlow,A512,0,4384_7778018_TxcDAD3C3AC-A6AC-4D17-964E-E04509F21449,4384_613 -4367_81471,314,4384_8412,Newbridge,D211,0,4384_7778018_Txc54C02CB6-465A-48F6-8CD3-DD8C94021EAD,4384_620 -4367_81471,315,4384_8413,Newbridge,D211,0,4384_7778018_Txc96231DF5-21CC-49C0-B807-C1E702F76DD0,4384_620 -4367_81471,337,4384_8414,Waterford (Plunkett),A514,0,4384_7778018_TxcE94806BF-FC9D-497B-814B-A365EE75D4A0,4384_615 -4367_81471,278,4384_8415,Waterford (Plunkett),A502,0,4384_7778018_Txc7A9C8372-5758-4D13-A92D-6324BE6AC1C1,4384_614 -4367_81471,338,4384_8418,Waterford (Plunkett),A514,0,4384_7778018_Txc9E0A438C-21D6-4101-BC5B-2B0BE0E91F85,4384_615 -4367_81471,319,4384_8419,Waterford (Plunkett),A502,0,4384_7778018_Txc76220E2A-0128-4458-9F4F-873322A130A9,4384_614 -4367_81485,315,4384_842,Greystones,E122,1,4384_7778018_TxcA7A61C76-AD4D-4ED1-80DF-6AA9CE905F09,4384_1 -4367_81471,314,4384_8420,Newbridge,D213,0,4384_7778018_TxcA24A1782-6FC2-4802-A426-728E3886EB3E,4384_620 -4367_81471,315,4384_8421,Newbridge,D213,0,4384_7778018_TxcF3BF8703-6136-4A5D-907D-C13DFF7B8C2B,4384_620 -4367_81471,314,4384_8425,Newbridge,D215,0,4384_7778018_TxcD85EC985-0F0F-4888-A68C-A827C1196029,4384_620 -4367_81471,315,4384_8426,Newbridge,D215,0,4384_7778018_Txc0C962F46-CEBB-43D1-A2F1-E4706D32D155,4384_620 -4367_81471,337,4384_8428,Waterford (Plunkett),A518,0,4384_7778018_TxcB7906E2D-03E9-478B-8B9B-EAD2078D2344,4384_612 -4367_81485,278,4384_843,Bray (Daly),E222,1,4384_7778018_Txc0261473F-EFED-4963-93E5-6FCFA5BB9B14,4384_7 -4367_81471,338,4384_8430,Waterford (Plunkett),A518,0,4384_7778018_Txc3CFB2F00-C8ED-4179-A02B-BBF2DFA6A78F,4384_612 -4367_81471,278,4384_8431,Waterford (Plunkett),A504,0,4384_7778018_Txc97B2EBCD-E6B6-4155-A6C0-6919EF341973,4384_614 -4367_81471,319,4384_8433,Waterford (Plunkett),A504,0,4384_7778018_Txc1D041CED-D0BD-4A18-AAE8-344D0552D2F7,4384_614 -4367_81471,126,4384_8437,Waterford (Plunkett),A520,0,4384_7778018_Txc286AD565-2524-4084-BE2C-78FD82EB6CB9,4384_616 -4367_81471,358,4384_8438,Waterford (Plunkett),A520,0,4384_7778018_Txc62B590E4-FCCF-4ED0-87FB-F1D284617AF4,4384_616 -4367_81471,337,4384_8439,Waterford (Plunkett),A522,0,4384_7778018_TxcA3DF2C11-55C3-43DA-95F3-B9136C3E5E7E,4384_617 -4367_81471,349,4384_8443,Waterford (Plunkett),A522,0,4384_7778018_Txc3EA2EA47-29D8-4C35-A0A3-0646A10B471D,4384_617 -4367_81471,337,4384_8446,Waterford (Plunkett),A524,0,4384_7778018_Txc2D3265D4-4866-4209-B4E7-82C9DF3DF8FB,4384_618 -4367_81471,278,4384_8447,Waterford (Plunkett),A506,0,4384_7778018_TxcD9DD0440-5E50-46CC-A612-72EB598E4EF5,4384_614 -4367_81471,338,4384_8450,Waterford (Plunkett),A524,0,4384_7778018_TxcFA9F74EB-1DE6-4B59-88A3-1A219D5CF06F,4384_618 -4367_81471,319,4384_8451,Waterford (Plunkett),A506,0,4384_7778018_Txc265B3DCF-9E51-48C6-81F1-3C174889B20B,4384_614 -4367_81471,337,4384_8456,Waterford (Plunkett),A526,0,4384_7778018_TxcF82C4665-7BD3-46C0-9CE5-B3C50C2788CF,4384_612 -4367_81471,338,4384_8458,Waterford (Plunkett),A526,0,4384_7778018_Txc5418663D-DFB1-401D-9BB8-2702DE9AFAFB,4384_612 -4367_81471,278,4384_8460,Waterford (Plunkett),A508,0,4384_7778018_Txc74CF6293-DC99-44B4-BF1C-B6F718A276B2,4384_614 -4367_81471,319,4384_8462,Waterford (Plunkett),A508,0,4384_7778018_TxcA041FF05-FCC3-467B-B6C4-CEBA9FB9D1FF,4384_614 -4367_81485,319,4384_847,Bray (Daly),E222,1,4384_7778018_Txc52A8CD15-3F03-4F30-9059-AE1E95D9F99C,4384_7 -4367_81471,337,4384_8470,Waterford (Plunkett),A528,0,4384_7778018_TxcCBCF38CA-6D27-4046-89C7-F2FB9B950A20,4384_619 -4367_81471,379,4384_8472,Waterford (Plunkett),A528,0,4384_7778018_TxcAA05FE49-7BC7-42DD-8CB9-819A5E58B8E7,4384_619 -4367_81471,337,4384_8476,Kildare,D226,0,4384_7778018_Txc6EBF014B-032A-4942-9F40-9CEABF790EE0,4384_622 -4367_81471,365,4384_8477,Kildare,D226,0,4384_7778018_Txc0BE6BB73-6928-4077-9A13-02E5FA9DC7BC,4384_622 -4367_81485,271,4384_848,Bray (Daly),E222,1,4384_7778018_Txc4A9878D9-44B3-49DD-8164-C080AA7F99EB,4384_7 -4367_81476,314,4384_8484,Manulla Junction,A861,1,4384_7778018_TxcD2A9AB1D-81EB-4A9C-A496-98A8B630C0C2,4384_638 -4367_81476,355,4384_8485,Manulla Junction,A861,1,4384_7778018_Txc5401D15A-DDAB-4986-8C49-1BD0BBFE3757,4384_638 -4367_81476,314,4384_8486,Dublin Heuston,A801,1,4384_7778018_TxcE77DA2F9-746A-4A67-A4E7-79E675209063,4384_633 -4367_81476,355,4384_8487,Dublin Heuston,A801,1,4384_7778018_TxcAA55179E-CF39-480C-AFA8-2B19F86CB805,4384_633 -4367_81476,314,4384_8488,Dublin Heuston,A701,1,4384_7778018_Txc7110A65A-5FD2-4F43-83C9-FDE0B62FA454,4384_632 -4367_81476,355,4384_8489,Dublin Heuston,A701,1,4384_7778018_TxcB7E6E215-4C24-4406-AF8F-E0D9008B5C5C,4384_632 -4367_81485,320,4384_849,Bray (Daly),E222,1,4384_7778018_Txc1FF39C4E-73F0-421A-80DF-7F3F9E1F4BED,4384_7 -4367_81476,23,4384_8490,Dublin Heuston,A801,1,4384_7778018_TxcD29B8976-B7BB-436C-A638-98771852B513,4384_634 -4367_81476,316,4384_8491,Dublin Heuston,A801,1,4384_7778018_Txc31D1DE48-A0AF-4274-9995-2B95BABC573B,4384_634 -4367_81476,337,4384_8492,Manulla Junction,A863,1,4384_7778018_Txc8EECC2A2-3E88-4F57-8054-6DA36E171A50,4384_638 -4367_81476,338,4384_8494,Manulla Junction,A863,1,4384_7778018_TxcCFE46749-0A41-4682-8DE6-FC656EA9C8FD,4384_638 -4367_81476,337,4384_8495,Dublin Heuston,A803,1,4384_7778018_TxcDDDC5293-4B60-4334-BA86-56D01C5DF78A,4384_635 -4367_81476,338,4384_8497,Dublin Heuston,A803,1,4384_7778018_TxcA7C62038-F8E9-4D4C-A601-EDFD2CD7B458,4384_635 -4367_81476,278,4384_8498,Manulla Junction,A861,1,4384_7778018_Txc597E155C-748F-4DB5-A09A-A6FD611C058C,4384_638 -4367_81485,314,4384_85,Bray (Daly),E208,1,4384_7778018_Txc33EDB604-1F32-4931-930A-6AEC8695A327,4384_6 -4367_81476,319,4384_8501,Manulla Junction,A861,1,4384_7778018_TxcE2BD85D7-9E1A-4542-A058-B89086555269,4384_638 -4367_81476,278,4384_8502,Dublin Heuston,A801,1,4384_7778018_TxcD3FB135D-88F1-4FE1-A4F3-61FD14D3C158,4384_635 -4367_81476,319,4384_8506,Dublin Heuston,A801,1,4384_7778018_Txc05036D11-D5BD-48BD-B43F-11ED3DEDE15A,4384_635 -4367_81476,337,4384_8508,Manulla Junction,A865,1,4384_7778018_Txc864099DC-2343-452F-A9A7-C1F3CFBADAD1,4384_638 -4367_81476,338,4384_8510,Manulla Junction,A865,1,4384_7778018_Txc7D2845C9-C876-4DFA-B523-02C86605DE4D,4384_638 -4367_81476,337,4384_8511,Dublin Heuston,A805,1,4384_7778018_Txc9D1B2513-CA1E-46C5-A909-FC8CDE46F20E,4384_635 -4367_81476,338,4384_8513,Dublin Heuston,A805,1,4384_7778018_Txc0F1AD6A3-C46E-4208-B44A-6211348D6091,4384_635 -4367_81476,278,4384_8515,Manulla Junction,A863,1,4384_7778018_TxcE1DE0BCE-A4FC-4CC8-88F5-B35774B3EC97,4384_638 -4367_81476,319,4384_8517,Manulla Junction,A863,1,4384_7778018_Txc9B16E0D4-7C9D-457B-A6CC-4BD49AD0EF23,4384_638 -4367_81476,337,4384_8521,Manulla Junction,A867,1,4384_7778018_Txc5CC5E214-9E3D-41E5-8614-6E7B4FAF837F,4384_638 -4367_81476,338,4384_8523,Manulla Junction,A867,1,4384_7778018_Txc49BC2CA0-D61D-4A98-BA16-DBBF490C8B8F,4384_638 -4367_81476,337,4384_8524,Dublin Heuston,A807,1,4384_7778018_TxcE7A4C33E-9D4E-4E14-808D-7C14198182AA,4384_635 -4367_81476,278,4384_8525,Manulla Junction,A865,1,4384_7778018_Txc306B3C04-5300-4DA4-95E7-C7E8A017DB58,4384_638 -4367_81476,338,4384_8529,Dublin Heuston,A807,1,4384_7778018_Txc2B60E35D-38E0-4C32-A054-3D7F056D722A,4384_635 -4367_81485,211,4384_853,Bray (Daly),E230,1,4384_7778018_Txc8CD910B5-5645-4192-886C-9BBF839E1E5A,4384_7 -4367_81476,319,4384_8530,Manulla Junction,A865,1,4384_7778018_TxcE4FF1918-6DCE-453F-A7B7-12BA508DF220,4384_638 -4367_81476,278,4384_8531,Dublin Heuston,A803,1,4384_7778018_Txc571A9CE7-31C8-47B7-A9E8-0EE2831D7A8C,4384_635 -4367_81476,319,4384_8533,Dublin Heuston,A803,1,4384_7778018_Txc87E83CEE-FE0A-44A4-8D07-9CA0258A900B,4384_635 -4367_81476,271,4384_8536,Manulla Junction,A869,1,4384_7778018_TxcDD55D632-6D6B-4A28-B012-201EEEF1D220,4384_638 -4367_81476,320,4384_8537,Manulla Junction,A869,1,4384_7778018_Txc4E7D18BF-02D7-4F8E-B570-A17FF4601C3D,4384_638 -4367_81476,271,4384_8539,Dublin Heuston,B801,1,4384_7778018_Txc37EC2755-CA93-407C-920F-3F8CA95DC6E5,4384_642 -4367_81476,320,4384_8540,Dublin Heuston,B801,1,4384_7778018_Txc221A3CE2-7CC9-43A6-B686-8241120F5F22,4384_642 -4367_81476,337,4384_8541,Manulla Junction,A869,1,4384_7778018_TxcC10BE159-0CED-4AD7-8B7B-868EC2A437AA,4384_638 -4367_81476,341,4384_8542,Manulla Junction,A869,1,4384_7778018_TxcDBE2A156-E255-4CBF-9127-E82D8A9C41DD,4384_638 -4367_81476,278,4384_8545,Manulla Junction,A867,1,4384_7778018_Txc4AC8BEF5-C853-4B4E-9D78-7AC96578E7AA,4384_638 -4367_81476,319,4384_8547,Manulla Junction,A867,1,4384_7778018_Txc2B61F7E1-7881-4573-A666-A1E5AC71CBEE,4384_638 -4367_81476,278,4384_8548,Dublin Heuston,A805,1,4384_7778018_TxcC0505216-D795-4215-87A2-1EF53409BEF5,4384_639 -4367_81476,319,4384_8550,Dublin Heuston,A805,1,4384_7778018_Txc03E46AE3-F538-41D9-9405-E0552EECAC69,4384_639 -4367_81476,337,4384_8551,Athlone,A809,1,4384_7778018_TxcA63A1BF8-E42E-46F1-8DEA-CBFCFB306606,4384_636 -4367_81476,338,4384_8552,Athlone,A809,1,4384_7778018_Txc14FFCAB6-2974-406B-9FFF-5626F50B0E84,4384_636 -4367_81476,337,4384_8554,Manulla Junction,A871,1,4384_7778018_TxcA0DD4E76-E557-4D2D-9C7A-61713092351A,4384_638 -4367_81476,338,4384_8556,Manulla Junction,A871,1,4384_7778018_Txc20CD1184-0C89-43E1-962B-851B8886E9B0,4384_638 -4367_81476,278,4384_8557,Manulla Junction,A869,1,4384_7778018_Txc113BEC32-1E2B-4B6B-944E-9DD3D5D096DC,4384_638 -4367_81476,319,4384_8559,Manulla Junction,A869,1,4384_7778018_Txc183342BE-4FE0-4D1C-88A2-6B0B143C05DF,4384_638 -4367_81485,96,4384_856,Bray (Daly),E230,1,4384_7778018_Txc52398B8D-115D-4E57-9523-58110C9C145A,4384_29 -4367_81476,278,4384_8560,Dublin Heuston,A807,1,4384_7778018_TxcD13A91F3-EC36-4311-96B7-CD43EF2E35B1,4384_637 -4367_81476,319,4384_8562,Dublin Heuston,A807,1,4384_7778018_Txc7B8BE402-38BB-4C07-BE02-82246CBD6924,4384_637 -4367_81476,337,4384_8563,Manulla Junction,A873,1,4384_7778018_Txc26B3F4B0-B687-4A93-903E-DE21FF905133,4384_638 -4367_81476,338,4384_8566,Manulla Junction,A873,1,4384_7778018_Txc06000144-1252-45B5-8B96-1D7F943F1806,4384_638 -4367_81476,337,4384_8567,Dublin Heuston,A811,1,4384_7778018_Txc7BFE0F7F-A17A-41B2-8149-3CB61367378B,4384_637 -4367_81485,214,4384_857,Bray (Daly),E230,1,4384_7778018_Txc8849AA26-A94E-4C09-BD2F-94578CC4A4B6,4384_29 -4367_81476,338,4384_8571,Dublin Heuston,A811,1,4384_7778018_Txc54B957FE-09E2-48C9-A7D7-469933013598,4384_637 -4367_81476,337,4384_8575,Manulla Junction,A875,1,4384_7778018_TxcB15A18D5-14EE-4ABB-8D72-C553F8C38FA0,4384_638 -4367_81476,338,4384_8576,Manulla Junction,A875,1,4384_7778018_Txc315D3D4F-125D-4D66-8D2A-34E1F568F401,4384_638 -4367_81476,278,4384_8577,Manulla Junction,A871,1,4384_7778018_TxcB2B3364D-5B80-4B27-A123-0DA83E0F8117,4384_638 -4367_81476,319,4384_8579,Manulla Junction,A871,1,4384_7778018_Txc87FD0B2A-C198-4806-A488-B2F29F0AC78C,4384_638 -4367_81485,316,4384_858,Bray (Daly),E230,1,4384_7778018_Txc479CBB1B-C24D-41A8-A907-94DF60671253,4384_7 -4367_81476,314,4384_8581,Manulla Junction,A877,1,4384_7778018_Txc29F63D2C-89F6-40FA-B5F2-8B5662D0F61A,4384_638 -4367_81476,343,4384_8582,Manulla Junction,A877,1,4384_7778018_Txc91D46A41-9A58-4B4B-AECC-65F62E4461C2,4384_638 -4367_81476,314,4384_8583,Ballina,A860,0,4384_7778018_TxcE7EFD390-E4A5-447B-BB94-8912E981B9C2,4384_661 -4367_81476,355,4384_8584,Ballina,A860,0,4384_7778018_Txc9092FC88-D17B-4660-8565-BCCF95B1578A,4384_661 -4367_81476,314,4384_8585,Westport,A800,0,4384_7778018_Txc99641F3F-88C8-4BC9-AF7B-12BB5E3F9BB0,4384_656 -4367_81476,355,4384_8586,Westport,A800,0,4384_7778018_Txc55C80968-9A12-4392-BAE5-58CB3F39572E,4384_656 -4367_81476,126,4384_8587,Westport,A812,0,4384_7778018_TxcF8C32692-69B2-402D-B103-329CFAB81CDC,4384_659 -4367_81476,347,4384_8589,Westport,A812,0,4384_7778018_Txc0097DF5A-2A59-402D-9E78-F51B8BA09133,4384_659 -4367_81485,138,4384_859,Bray (Daly),E230,1,4384_7778018_Txc94C4AA1E-BA18-40C4-9A2F-06651608032A,4384_7 -4367_81476,138,4384_8590,Westport,A812,0,4384_7778018_Txc84679A0C-073A-481A-BA51-C1B86D15F920,4384_659 -4367_81476,318,4384_8591,Westport,A812,0,4384_7778018_TxcB7D9EBBF-A3A0-4949-B5A2-622A6B2E0076,4384_659 -4367_81476,23,4384_8592,Ballina,A862,0,4384_7778018_Txc37A035C7-55B1-4515-BF16-A694F44A24F9,4384_661 -4367_81476,316,4384_8594,Ballina,A862,0,4384_7778018_TxcABA709CD-78CA-415A-9FFC-622A36FB4EE1,4384_661 -4367_81476,317,4384_8595,Ballina,A862,0,4384_7778018_TxcE9F5B57C-ABD7-4F3B-AFC6-D272FE00E033,4384_661 -4367_81476,271,4384_8596,Ballina,A862,0,4384_7778018_Txc9A566185-3E6A-4EEA-A17F-665A87748D03,4384_661 -4367_81476,320,4384_8597,Ballina,A862,0,4384_7778018_Txc268C5CBC-DA5B-45DB-8622-6C677424AD65,4384_661 -4367_81476,278,4384_8599,Ballina,A860,0,4384_7778018_Txc879AFA59-EFC9-473F-A164-F6531D8D0CEB,4384_661 -4367_81485,315,4384_86,Bray (Daly),E208,1,4384_7778018_TxcEF2B8273-B695-4904-8364-0E7D3DC07C5D,4384_6 -4367_81485,317,4384_860,Bray (Daly),E230,1,4384_7778018_TxcFA673550-2A6C-40AF-9E31-7821B3446FF6,4384_7 -4367_81476,319,4384_8601,Ballina,A860,0,4384_7778018_TxcF44DF339-4E55-48DA-9FA3-391DEB2613C9,4384_661 -4367_81476,314,4384_8602,Ballina,A862,0,4384_7778018_Txc2D2389F8-8FE4-4705-A8A9-40A5F0255BB9,4384_661 -4367_81476,355,4384_8603,Ballina,A862,0,4384_7778018_Txc3D8C15B2-B037-4D19-8368-120FC8E057A5,4384_661 -4367_81476,345,4384_8604,Westport,A802,0,4384_7778018_Txc467E10BC-F0FE-494E-846D-3856CCA4CAB9,4384_656 -4367_81476,380,4384_8605,Westport,A802,0,4384_7778018_TxcCECDC626-4E7F-477F-A783-E2C39C5F5A14,4384_656 -4367_81476,278,4384_8607,Westport,A800,0,4384_7778018_Txc4CE7295F-ECEF-458A-AF39-39E6C7077C38,4384_656 -4367_81476,319,4384_8609,Westport,A800,0,4384_7778018_TxcE8F49CD1-A43D-46E4-8662-32750C37D11B,4384_656 -4367_81485,318,4384_861,Bray (Daly),E230,1,4384_7778018_TxcDDF72D3D-E1CA-4E57-9843-19604E09FCA5,4384_7 -4367_81476,337,4384_8613,Ballina,A864,0,4384_7778018_TxcBE50AC42-0E70-4063-B2FC-AFC7007F9E3F,4384_661 -4367_81476,338,4384_8614,Ballina,A864,0,4384_7778018_TxcE10236CC-F15A-4C12-852A-5B8A20015575,4384_661 -4367_81476,278,4384_8616,Ballina,A862,0,4384_7778018_Txc34FD5B39-D973-4A8F-939F-9C3B9C858F56,4384_661 -4367_81476,319,4384_8618,Ballina,A862,0,4384_7778018_TxcEEB1A850-CB19-428F-A7BA-AF144ECE7FB9,4384_661 -4367_81485,314,4384_862,Bray (Daly),E244,1,4384_7778018_Txc99E2D6E5-B613-4EA4-B9D7-D7AB53CF8862,4384_6 -4367_81476,337,4384_8621,Westport,A804,0,4384_7778018_TxcD946199A-24DF-4F01-BCE5-63EAB1F65DED,4384_657 -4367_81476,338,4384_8622,Westport,A804,0,4384_7778018_Txc2649F449-344B-40A0-A9CC-D0A3C4F45252,4384_657 -4367_81476,337,4384_8624,Ballina,A866,0,4384_7778018_Txc1E82348C-A28D-4079-82DA-F743CF3256F9,4384_661 -4367_81476,338,4384_8625,Ballina,A866,0,4384_7778018_Txc251C5C0E-554B-4015-9CF8-E8F0621C3299,4384_661 -4367_81476,278,4384_8626,Westport,A802,0,4384_7778018_Txc355DB640-487D-44EE-A12F-12E11AEA89CB,4384_662 -4367_81476,319,4384_8628,Westport,A802,0,4384_7778018_TxcC0FDD750-DA47-4985-BD51-EBB5DE77EC53,4384_662 -4367_81476,278,4384_8629,Ballina,A864,0,4384_7778018_Txc4783BD9B-F296-4E63-BDA8-79AF2999BA73,4384_661 -4367_81476,319,4384_8631,Ballina,A864,0,4384_7778018_TxcAD688DDB-BE69-44EC-A444-795ABEF44469,4384_661 -4367_81476,337,4384_8633,Westport,A806,0,4384_7778018_TxcAAA86007-D6CC-4C8E-B32E-7597831971E0,4384_657 -4367_81476,338,4384_8635,Westport,A806,0,4384_7778018_Txc087706F2-8F1C-4574-B0AA-A10305578841,4384_657 -4367_81476,337,4384_8639,Ballina,A868,0,4384_7778018_Txc03D2D7EF-C47D-4CAA-BFAF-D5740EF68141,4384_661 -4367_81476,338,4384_8640,Ballina,A868,0,4384_7778018_Txc7E8070C5-0B75-41F9-933E-3F840A8B6714,4384_661 -4367_81476,278,4384_8641,Westport,A804,0,4384_7778018_TxcC469CC58-7F75-4F62-9B4E-9A0C2D79733B,4384_663 -4367_81476,319,4384_8644,Westport,A804,0,4384_7778018_Txc04AA02BF-BB0B-4C0E-B2D4-155D95D5712A,4384_663 -4367_81476,278,4384_8648,Ballina,A866,0,4384_7778018_Txc7FDF66F7-D5A7-4168-A5FD-1BA70B2CA7A1,4384_661 -4367_81476,319,4384_8649,Ballina,A866,0,4384_7778018_Txc16D0AA39-91BE-462E-8EBA-AD1755F3E9E7,4384_661 -4367_81476,345,4384_8650,Athlone,A722,0,4384_7778018_Txc38598D85-B863-45B5-B97E-C6C0FF85B467,4384_655 -4367_81476,126,4384_8651,Westport,A814,0,4384_7778018_TxcB38C24CB-B93D-45FE-9B1B-41DED35980BD,4384_660 -4367_81476,381,4384_8655,Athlone,A722,0,4384_7778018_Txc945E2707-3988-44C0-AEE9-CDFD41AE1066,4384_655 -4367_81476,358,4384_8656,Westport,A814,0,4384_7778018_TxcC20103C0-9A4B-419B-82C1-7576D3410F8C,4384_660 -4367_81476,317,4384_8657,Athlone,A722,0,4384_7778018_Txc6F4132A0-4DAD-4F39-B1DC-77352A711041,4384_655 -4367_81476,337,4384_8659,Ballina,A870,0,4384_7778018_Txc8B80477C-9641-42DB-BF65-E7775897BA2C,4384_661 -4367_81485,315,4384_866,Bray (Daly),E244,1,4384_7778018_Txc8AA37498-238E-4688-BD4D-072C8E605FD1,4384_6 -4367_81476,338,4384_8660,Ballina,A870,0,4384_7778018_Txc26F9D531-6E74-4FD9-ACFF-EC8801428AD4,4384_661 -4367_81476,337,4384_8661,Westport,A808,0,4384_7778018_Txc949ED12D-703A-4BFE-81E8-730F85CF4E4B,4384_658 -4367_81476,338,4384_8664,Westport,A808,0,4384_7778018_Txc03E9F6D5-569A-45A7-8C3F-2B2DEB0534E6,4384_658 -4367_81476,278,4384_8665,Westport,A806,0,4384_7778018_Txc79517ED2-3309-4ED5-AD0F-35F45ABD1E6C,4384_664 -4367_81476,319,4384_8667,Westport,A806,0,4384_7778018_TxcF81B3F5D-FD0C-4EA4-8569-48AED203C5B5,4384_664 -4367_81476,278,4384_8668,Ballina,A868,0,4384_7778018_TxcB71CFEFE-DB0B-4811-8C4B-B2F4F2A5A8C0,4384_661 -4367_81476,319,4384_8670,Ballina,A868,0,4384_7778018_TxcB1467285-6CE6-4A3F-8762-DEE23A22CC75,4384_661 -4367_81476,337,4384_8672,Ballina,A872,0,4384_7778018_Txc82327268-5211-48B8-89B8-175B412E6B7B,4384_661 -4367_81476,338,4384_8673,Ballina,A872,0,4384_7778018_TxcC51566AE-8571-4BA4-B053-FD0F642B4FC5,4384_661 -4367_81485,324,4384_868,Lansdowne Road,E553,1,4384_7778018_TxcEE047E08-8E38-4657-9231-3B2FEDC360FF,4384_36 -4367_81476,337,4384_8680,Westport,A810,0,4384_7778018_Txc23C3CDA1-97EE-48CF-AD96-9146EECAC3A1,4384_656 -4367_81476,338,4384_8683,Westport,A810,0,4384_7778018_Txc2BE38211-1847-4C0E-A0A1-A5BFC0E4E4A8,4384_656 -4367_81476,337,4384_8686,Ballina,A874,0,4384_7778018_Txc67761A1C-CB59-4CA9-96BE-2BC1C97128BB,4384_661 -4367_81476,338,4384_8687,Ballina,A874,0,4384_7778018_Txc2236B209-E293-4F14-93B2-7A5CDD988754,4384_661 -4367_81476,278,4384_8689,Ballina,A870,0,4384_7778018_Txc9ED176D5-996E-468F-9675-64E6FDB36A69,4384_661 -4367_81485,325,4384_869,Lansdowne Road,E553,1,4384_7778018_TxcDAB3FCB0-2019-48C9-A1AA-FBE1A96FC32B,4384_36 -4367_81476,319,4384_8691,Ballina,A870,0,4384_7778018_Txc86B19DED-55C9-432E-B351-A5577DF9E4C9,4384_661 -4367_81476,314,4384_8695,Ballina,A876,0,4384_7778018_Txc6955ADF8-6F8F-49E3-8F1F-51202842461D,4384_661 -4367_81476,343,4384_8696,Ballina,A876,0,4384_7778018_Txc6BFDDFB4-C7EE-471D-8045-B1950995D504,4384_661 -4367_81466,368,4384_8698,Athenry,BUS703,1,4384_7778018_Txc5F455677-7971-4AD9-9F6C-C2558FAAF89D,4384_697 -4367_81466,368,4384_8699,Athenry,BUS733,1,4384_7778018_Txc53A3D41F-C345-41C9-8870-1A6A3EA05AEC,4384_688 -4367_81485,278,4384_870,Greystones,E123,1,4384_7778018_Txc53AB808C-9467-484A-A5D3-2CEE39A57611,4384_2 -4367_81466,96,4384_8700,Athenry,BUS481,1,4384_7778018_TxcCD7ACDED-E4BC-419F-9261-37A648846E68,4384_697 -4367_81466,96,4384_8701,Athenry,BUS181,1,4384_7778018_TxcBB066FDF-128C-45D2-A582-1680477E60E7,4384_688 -4367_81466,368,4384_8702,Athenry,BUS481,1,4384_7778018_TxcE1562AE3-6576-4F96-9113-15C2AC5D3D6B,4384_697 -4367_81466,368,4384_8703,Athenry,BUS181,1,4384_7778018_Txc30D32EFB-7A27-4348-9F27-1A40BAD4859A,4384_688 -4367_81466,96,4384_8704,Athenry,BUS705,1,4384_7778018_Txc2695AEDE-0942-42CA-B91B-A8532C373ED9,4384_697 -4367_81466,368,4384_8705,Athenry,BUS705,1,4384_7778018_TxcFF445061-2BC4-4F3B-878F-50E376F2FF92,4384_697 -4367_81466,382,4384_8706,Limerick (Colbert),A481,1,4384_7778018_Txc89C9A027-3F8C-43A7-9514-E7081A8F2B9E,4384_686 -4367_81466,349,4384_8708,Limerick (Colbert),A481,1,4384_7778018_Txc496501D8-9AF1-4C30-88F7-5560A6D48EA5,4384_686 -4367_81466,337,4384_8709,Limerick (Colbert),A471,1,4384_7778018_TxcCAD25FAA-3111-482E-A0A2-507837021CE7,4384_685 -4367_81466,349,4384_8712,Limerick (Colbert),A471,1,4384_7778018_TxcC48B6450-FE26-4930-8906-48BF055F3FEE,4384_685 -4367_81466,96,4384_8713,Athenry,BUS737,1,4384_7778018_Txc51683628-1615-4B30-83BC-37ED5B5619A3,4384_688 -4367_81466,96,4384_8714,Athenry,BUS707,1,4384_7778018_Txc1FD8DCD3-514F-4D0F-B371-FEF5BA7881D0,4384_697 -4367_81466,251,4384_8715,Athenry,BUS701,1,4384_7778018_Txc91D8C80A-CA49-4D0A-8DA8-AF1E0D50503E,4384_697 -4367_81466,251,4384_8716,Athenry,BUS741,1,4384_7778018_Txc6EF5402B-54C0-4B44-ABD8-6A934A0088D8,4384_688 -4367_81466,278,4384_8717,Limerick (Colbert),A471,1,4384_7778018_Txc7FACB47A-C591-4D66-A660-C255977249EB,4384_685 -4367_81466,319,4384_8721,Limerick (Colbert),A471,1,4384_7778018_TxcBB21C0C7-104F-4B64-8D4A-747434822695,4384_685 -4367_81466,317,4384_8723,Limerick (Colbert),B421,1,4384_7778018_Txc5D440F42-EE45-41D2-B935-C851DE97728F,4384_685 -4367_81466,271,4384_8724,Limerick (Colbert),B421,1,4384_7778018_Txc46F2ACE1-E64F-47C8-858C-58F78EDB771F,4384_685 -4367_81466,320,4384_8725,Limerick (Colbert),B421,1,4384_7778018_Txc0BD64287-79F3-46C9-8EF9-D9BDA0106DED,4384_685 -4367_81466,251,4384_8726,Athenry,BUS491,1,4384_7778018_TxcD1219F9C-F25F-4DE6-A640-49D69EE81CE7,4384_697 -4367_81466,251,4384_8727,Athenry,BUS191,1,4384_7778018_Txc2EED164A-FAFF-47CB-903F-8650AFF2EE08,4384_688 -4367_81466,342,4384_8728,Limerick (Colbert),A491,1,4384_7778018_Txc7CAE624E-F095-4BA9-9D27-834DE0A0605D,4384_686 -4367_81466,319,4384_8730,Limerick (Colbert),A491,1,4384_7778018_TxcE32EA97E-9472-415D-85A3-A90F2B1980D3,4384_686 -4367_81466,356,4384_8731,Athenry,A797,1,4384_7778018_Txc907F2C2A-2FF7-441D-A763-B27EE6495102,4384_688 -4367_81466,316,4384_8732,Athenry,A797,1,4384_7778018_Txc8989D61C-325D-4335-8654-B858C39CA191,4384_688 -4367_81466,317,4384_8733,Athenry,A797,1,4384_7778018_TxcE277D42A-52C5-4037-84A3-5A6E2AF00BBD,4384_688 -4367_81466,314,4384_8734,Athenry,A797,1,4384_7778018_Txc5EED8D35-66BF-444A-864D-E16A636C3631,4384_688 -4367_81466,355,4384_8735,Athenry,A797,1,4384_7778018_TxcF45210F9-7E8F-4EFC-A8C0-3A849CDC622E,4384_688 -4367_81466,96,4384_8736,Athenry,BUS709,1,4384_7778018_Txc2D90841C-4073-47C1-97F7-564F5E348010,4384_697 -4367_81466,96,4384_8737,Athenry,BUS739,1,4384_7778018_Txc3BB4D044-CEF9-4BD5-9972-BD865F5A0B73,4384_688 -4367_81466,96,4384_8738,Athenry,BUS483,1,4384_7778018_Txc6C800494-28A0-4A8F-8344-7DB5208FB57D,4384_697 -4367_81466,96,4384_8739,Athenry,BUS183,1,4384_7778018_Txc4EECD7CF-A39F-4AF2-9E6C-A3437217253B,4384_688 -4367_81485,319,4384_874,Greystones,E123,1,4384_7778018_Txc619CDCAC-0564-46C3-9E92-23A89BA37F5A,4384_2 -4367_81466,337,4384_8740,Limerick Junction,A431,1,4384_7778018_Txc1D755B69-5D00-4AFA-902B-E69BF0D10EDA,4384_684 -4367_81466,338,4384_8745,Limerick Junction,A431,1,4384_7778018_Txc93651406-1D0C-45BE-8970-EEC1B5999F83,4384_684 -4367_81466,348,4384_8746,Limerick (Colbert),A483,1,4384_7778018_Txc5A2E3470-E360-4393-9C85-E6283C7372A9,4384_686 -4367_81466,338,4384_8749,Limerick (Colbert),A483,1,4384_7778018_TxcD72E5F8E-9FEE-43BC-BADA-B4A47F3804DF,4384_686 -4367_81485,271,4384_875,Greystones,E123,1,4384_7778018_TxcE05B6A30-CC74-42EE-9EE5-AED92615B51C,4384_2 -4367_81466,251,4384_8750,Athenry,BUS703,1,4384_7778018_TxcE0E1A23B-A658-4EEF-BAE4-14432A0E6D47,4384_697 -4367_81466,251,4384_8751,Athenry,BUS743,1,4384_7778018_TxcE191CCD2-1F56-4E7D-8318-007C659DD08A,4384_688 -4367_81466,96,4384_8752,Athenry,BUS713,1,4384_7778018_Txc40B561CC-9E67-4417-A46D-F9AC2CA350B1,4384_697 -4367_81466,96,4384_8753,Athenry,BUS743,1,4384_7778018_Txc0D03D415-9E4D-447F-86DD-49546E7F074A,4384_688 -4367_81466,251,4384_8754,Athenry,BUS493,1,4384_7778018_Txc5F5508F4-5F79-4E94-A0C0-A9DC6CFB21B6,4384_697 -4367_81466,251,4384_8755,Athenry,BUS193,1,4384_7778018_Txc977DE3DA-3A8D-4A69-BB8C-712B3EE26689,4384_688 -4367_81466,278,4384_8756,Limerick (Colbert),A473,1,4384_7778018_Txc04A330D2-DBCF-49CC-A6B4-B7EDE6DFAE97,4384_685 -4367_81466,319,4384_8758,Limerick (Colbert),A473,1,4384_7778018_TxcFB006C2C-FBEA-48DF-A3F6-AC9C1BB57B5F,4384_685 -4367_81485,320,4384_876,Greystones,E123,1,4384_7778018_Txc16901728-CBB8-4207-A790-D9A7D98F5BD3,4384_2 -4367_81466,251,4384_8761,Athenry,BUS705,1,4384_7778018_TxcC1CE07B0-297F-4C8B-975F-986C168CC92C,4384_697 -4367_81466,251,4384_8762,Athenry,BUS745,1,4384_7778018_TxcEB85F00A-DB00-4949-8E3C-DBF16CE09DD3,4384_688 -4367_81466,342,4384_8763,Limerick (Colbert),A493,1,4384_7778018_TxcF3B4B077-FEFA-4EFE-987E-5A7D08F543F2,4384_686 -4367_81466,319,4384_8765,Limerick (Colbert),A493,1,4384_7778018_Txc4366732E-4BA9-45B9-BA6A-08B260C166B2,4384_686 -4367_81466,96,4384_8766,Athenry,BUS717,1,4384_7778018_TxcF8A32705-8F95-46DF-A465-0AB86FDF6969,4384_697 -4367_81466,96,4384_8767,Athenry,BUS745,1,4384_7778018_TxcB753C447-89FE-45E8-A474-37A11723B5EE,4384_688 -4367_81466,251,4384_8768,Athenry,BUS707,1,4384_7778018_Txc46335359-9319-4CB9-9B89-C119774C245A,4384_697 -4367_81466,251,4384_8769,Athenry,BUS747,1,4384_7778018_TxcDFAFAC37-BF43-4F13-924A-E6BA6FF26EF4,4384_688 -4367_81485,314,4384_877,Bray (Daly),E245,1,4384_7778018_Txc99B11AF1-04F6-4BA9-81B2-E4F77CA6E07D,4384_7 -4367_81466,96,4384_8770,Athenry,BUS485,1,4384_7778018_TxcD0DC65B2-D305-474B-A8CD-55074C22F98B,4384_697 -4367_81466,96,4384_8771,Athenry,BUS185,1,4384_7778018_Txc3E56A66A-B96D-4F70-9C0E-E8A0766F7AB4,4384_688 -4367_81466,337,4384_8772,Limerick (Colbert),A475,1,4384_7778018_TxcF570DEF7-FBF9-4238-9510-64058ADB229B,4384_685 -4367_81466,338,4384_8775,Limerick (Colbert),A475,1,4384_7778018_Txc26083B39-EE4E-4363-AA50-D7DDAD10F666,4384_685 -4367_81466,348,4384_8776,Limerick (Colbert),A485,1,4384_7778018_Txc9CA3CFBF-8A13-415F-BA0B-E29361C66513,4384_686 -4367_81466,338,4384_8784,Limerick (Colbert),A485,1,4384_7778018_Txc22B55576-42A9-42F4-BE5E-B98B629E789E,4384_686 -4367_81466,251,4384_8785,Athenry,BUS709,1,4384_7778018_Txc36322135-4088-4013-AB29-69583C3E2DD3,4384_697 -4367_81466,251,4384_8786,Athenry,BUS749,1,4384_7778018_TxcBD010340-785E-4535-AFD0-5C6160733BAB,4384_688 -4367_81466,96,4384_8787,Athenry,BUS721,1,4384_7778018_TxcEC77B8C8-B1D9-43E5-9CB1-4695946953D6,4384_697 -4367_81466,96,4384_8788,Athenry,BUS747,1,4384_7778018_TxcC3285CAE-EF6E-42B2-93FB-DF90230E1D10,4384_688 -4367_81466,278,4384_8793,Limerick (Colbert),A475,1,4384_7778018_TxcCD71157B-7E16-4C89-A6E6-A72AA5EED6F3,4384_685 -4367_81466,319,4384_8795,Limerick (Colbert),A475,1,4384_7778018_TxcBFD89A78-0718-481A-BEF9-5EE43AB3DD8B,4384_685 -4367_81466,251,4384_8796,Athenry,BUS495,1,4384_7778018_Txc31C1CCBB-AB13-4945-BABD-83883CBFDF82,4384_697 -4367_81466,251,4384_8797,Athenry,BUS195,1,4384_7778018_Txc33AE9545-DB4A-4C77-99B7-6C7E618A295F,4384_688 -4367_81466,342,4384_8798,Limerick (Colbert),A495,1,4384_7778018_Txc58E9773C-FB7D-4F09-96A9-6D289042298A,4384_686 -4367_81485,315,4384_880,Bray (Daly),E245,1,4384_7778018_Txc3620A461-3342-4254-949D-C786AB89BC44,4384_7 -4367_81466,319,4384_8800,Limerick (Colbert),A495,1,4384_7778018_TxcFB939C72-6DA4-4E21-B93C-263A04AF0CF3,4384_686 -4367_81466,348,4384_8801,Athenry,A799,1,4384_7778018_Txc16607FB0-DB22-4C30-9666-3F100BC00D4F,4384_688 -4367_81466,251,4384_8802,Athenry,BUS711,1,4384_7778018_Txc7FD92E57-F941-41D1-83EF-3021F926CE9F,4384_697 -4367_81466,251,4384_8803,Athenry,BUS751,1,4384_7778018_Txc79474A8C-15BE-4F0C-A909-EFE71FC5F15E,4384_698 -4367_81466,338,4384_8804,Athenry,A799,1,4384_7778018_Txc69AB111F-F49A-4AF8-B39E-735D2D1FEBCD,4384_688 -4367_81466,96,4384_8805,Athenry,BUS725,1,4384_7778018_TxcA879162C-0E2C-48D7-AF13-1A016215B99D,4384_697 -4367_81466,96,4384_8806,Athenry,BUS749,1,4384_7778018_TxcD094419C-145F-49D4-A148-9A561F97B229,4384_688 -4367_81466,96,4384_8807,Athenry,BUS489,1,4384_7778018_TxcB833EECE-E7FC-4909-B933-A71B7FC48B76,4384_697 -4367_81466,96,4384_8808,Athenry,BUS189,1,4384_7778018_TxcE38EDF96-4B50-44C2-932D-E00E2E96A079,4384_688 -4367_81466,337,4384_8809,Limerick (Colbert),A477,1,4384_7778018_Txc00C281B1-EA64-4E8A-A1CD-93DE4A0BB8EF,4384_685 -4367_81485,211,4384_881,Greystones,E110,1,4384_7778018_TxcE04FEC67-F191-4357-8559-EB468676DF58,4384_2 -4367_81466,338,4384_8812,Limerick (Colbert),A477,1,4384_7778018_TxcAC276D1E-75EE-4321-9352-83A774F3E08C,4384_685 -4367_81466,251,4384_8813,Athenry,BUS713,1,4384_7778018_TxcDF96BDB3-3354-418A-9C14-907B68FC0FAF,4384_697 -4367_81466,251,4384_8814,Athenry,BUS753,1,4384_7778018_TxcD17FBFBE-980E-46A4-B8D7-774FA42B70AD,4384_688 -4367_81466,96,4384_8815,Athenry,BUS741,1,4384_7778018_TxcB5DB2813-6EC6-4A7C-8129-B2B9DC668B17,4384_697 -4367_81466,96,4384_8816,Athenry,BUS751,1,4384_7778018_Txc88D57DFE-F9FC-4784-9A5B-C21FDA4B0553,4384_688 -4367_81466,348,4384_8817,Limerick (Colbert),A489,1,4384_7778018_Txc611F5B86-65F8-4C1C-A8F5-C456C6941EA5,4384_686 -4367_81466,338,4384_8819,Limerick (Colbert),A489,1,4384_7778018_Txc862E8621-EA25-42BF-8CEA-4480F07E306A,4384_686 -4367_81466,251,4384_8820,Athenry,BUS497,1,4384_7778018_TxcB2A52BF0-9355-445C-A15C-7EAB1C6B52A3,4384_697 -4367_81466,251,4384_8821,Athenry,BUS197,1,4384_7778018_Txc3350F4D6-56F5-467F-A9AB-106D1A9FC4EF,4384_688 -4367_81466,96,4384_8822,Athenry,BUS491,1,4384_7778018_TxcAD6590D5-AA09-4F64-BF8A-F4E6407B730E,4384_697 -4367_81466,96,4384_8823,Athenry,BUS191,1,4384_7778018_Txc87E5461D-7D7C-409E-BECA-E619BB870912,4384_688 -4367_81466,342,4384_8824,Limerick (Colbert),A497,1,4384_7778018_Txc8814C9D9-0F1D-4156-BEE0-10DECF4F5110,4384_686 -4367_81466,319,4384_8826,Limerick (Colbert),A497,1,4384_7778018_TxcD3433150-7D9F-4116-B155-1FDD26C624AB,4384_686 -4367_81466,348,4384_8827,Ennis,A491,1,4384_7778018_TxcDF000470-02EC-49B4-BCB5-99F0B50B9D3D,4384_687 -4367_81466,344,4384_8828,Ennis,A491,1,4384_7778018_Txc477F5814-2E27-4A68-B656-D4D733CA014C,4384_687 -4367_81466,96,4384_8829,Athenry,BUS729,1,4384_7778018_Txc606A4A8E-2550-4282-9B4F-51FC485E3A8F,4384_697 -4367_81466,96,4384_8830,Athenry,BUS753,1,4384_7778018_Txc7B22C184-7836-443E-A5DE-FCD0ECEB1DCD,4384_688 -4367_81466,251,4384_8831,Athenry,BUS715,1,4384_7778018_Txc57C12C8A-AE27-44B6-8202-3C760FC72840,4384_697 -4367_81466,251,4384_8832,Athenry,BUS755,1,4384_7778018_Txc47D47116-11AE-4070-834F-8355C9B8D42F,4384_688 -4367_81466,278,4384_8833,Limerick Junction,A439,1,4384_7778018_Txc575837AE-C62C-4CE5-A487-CB511EA3D402,4384_684 -4367_81466,319,4384_8836,Limerick Junction,A439,1,4384_7778018_Txc7D8F648F-BF13-489B-8E99-43950FDCE423,4384_684 -4367_81466,96,4384_8839,Athenry,BUS731,1,4384_7778018_TxcC54BD531-27EB-426F-8FC3-AD4BE2192FCA,4384_697 -4367_81466,96,4384_8840,Athenry,BUS755,1,4384_7778018_TxcEBC44A15-7869-4C8E-8A86-923C433FBA29,4384_688 -4367_81466,138,4384_8841,Limerick (Colbert),A479,1,4384_7778018_TxcA4D937F2-E2A3-41F6-A863-D29B9465E1DD,4384_685 -4367_81466,332,4384_8842,Limerick (Colbert),A479,1,4384_7778018_TxcB6ED075B-30FC-4C09-AE76-C0379101178C,4384_685 -4367_81466,337,4384_8843,Limerick (Colbert),A479,1,4384_7778018_Txc8F615046-A8B7-4044-9C87-A3C5C2CCA379,4384_685 -4367_81466,344,4384_8846,Limerick (Colbert),A479,1,4384_7778018_TxcA487627B-91E5-4031-9E78-75BFDDD7EA2E,4384_685 -4367_81466,278,4384_8847,Limerick (Colbert),A479,1,4384_7778018_TxcB729ADC3-879C-453F-9D3B-86058F3BF7D0,4384_685 -4367_81466,319,4384_8849,Limerick (Colbert),A479,1,4384_7778018_Txc2986F71C-3456-49F2-86F0-64AF4BDF3481,4384_685 -4367_81485,96,4384_885,Greystones,E110,1,4384_7778018_Txc6BC34B54-9D40-4D9D-A3C4-B3768673266D,4384_26 -4367_81466,348,4384_8850,Galway (Ceannt),A780,0,4384_7778018_Txc15E665BE-A36B-4E33-B337-0A62E350B0FE,4384_701 -4367_81466,349,4384_8853,Galway (Ceannt),A780,0,4384_7778018_Txc42B16DAB-DC1A-43BB-8156-C3DA83520965,4384_701 -4367_81466,278,4384_8855,Ennis,A470,0,4384_7778018_Txc7EBAF038-9947-41B4-8B77-B4C1A1B22F56,4384_699 -4367_81466,319,4384_8858,Ennis,A470,0,4384_7778018_Txc486E057C-77E0-4AB9-88A7-792253A93E0B,4384_699 -4367_81466,271,4384_8859,Ennis,B420,0,4384_7778018_Txc81FD4811-AAF1-4F16-96D9-6570EDF897B5,4384_699 -4367_81485,214,4384_886,Greystones,E110,1,4384_7778018_Txc4F8ECF33-249B-402F-82CF-10B24C54A412,4384_26 -4367_81466,320,4384_8860,Ennis,B420,0,4384_7778018_Txc74C74854-9278-4D30-9D3B-F34F0AE22C0B,4384_699 -4367_81466,337,4384_8861,Ennis,A470,0,4384_7778018_Txc88EE0FB4-AD1F-4DC6-90D5-E047A37F98DC,4384_699 -4367_81466,338,4384_8865,Ennis,A470,0,4384_7778018_Txc4B95C646-072B-498D-9406-1A4B49095EB4,4384_699 -4367_81466,342,4384_8866,Galway (Ceannt),A790,0,4384_7778018_TxcA4BE47A2-59DD-469E-8864-EDD21D29B7EC,4384_701 -4367_81466,319,4384_8868,Galway (Ceannt),A790,0,4384_7778018_Txc780F9CB0-D1AE-4F5F-8F68-ACD931C35493,4384_701 -4367_81485,316,4384_887,Greystones,E110,1,4384_7778018_Txc6A609016-AF8C-41BA-BB95-5867D3C5C14F,4384_2 -4367_81466,348,4384_8870,Galway (Ceannt),A782,0,4384_7778018_Txc7807C986-BBFE-48DE-A9EC-DE791F77592E,4384_701 -4367_81466,338,4384_8872,Galway (Ceannt),A782,0,4384_7778018_Txc0A2CA92C-2C24-4A55-A81B-3F64FD78730B,4384_701 -4367_81466,278,4384_8875,Ennis,A472,0,4384_7778018_Txc09D08D13-53BE-44E7-BA22-6100C375B6EA,4384_700 -4367_81466,319,4384_8877,Ennis,A472,0,4384_7778018_Txc3A0E1B15-54E8-4025-8F8D-4CCF64E3C5F2,4384_700 -4367_81466,337,4384_8878,Ennis,A472,0,4384_7778018_Txc8071ECEE-CCDF-4E98-BE76-69B8B428C669,4384_700 -4367_81466,338,4384_8879,Ennis,A472,0,4384_7778018_Txc68C1EB9D-6FCA-4FFC-9AB2-341B21A16C17,4384_700 -4367_81485,138,4384_888,Greystones,E110,1,4384_7778018_TxcE0B809EB-1D83-4EC4-A5B8-4973C5927512,4384_2 -4367_81466,342,4384_8880,Galway (Ceannt),A792,0,4384_7778018_Txc20467E38-B639-4DA3-908A-8538E4EF4869,4384_701 -4367_81466,319,4384_8882,Galway (Ceannt),A792,0,4384_7778018_Txc4680D122-D5CC-4E9F-B8E9-B6B030129CC3,4384_701 -4367_81466,278,4384_8887,Ennis,A474,0,4384_7778018_TxcFA3E9DB0-F713-417F-B0F9-B2462E542A41,4384_699 -4367_81485,317,4384_889,Greystones,E110,1,4384_7778018_Txc4667932A-6F9C-4F98-B472-879A200F9BC9,4384_2 -4367_81466,319,4384_8890,Ennis,A474,0,4384_7778018_Txc6DCE2B01-7BDA-4A02-917D-EA28C387F7E0,4384_699 -4367_81466,348,4384_8891,Galway (Ceannt),A786,0,4384_7778018_Txc90303BDC-8329-4DAD-AAD2-C2061D46B28F,4384_701 -4367_81466,338,4384_8893,Galway (Ceannt),A786,0,4384_7778018_Txc4B894BBD-597E-4613-8010-BC39E264F3CB,4384_701 -4367_81466,337,4384_8895,Ennis,A474,0,4384_7778018_Txc0FE098B6-4E80-4590-ADEC-D19115168D38,4384_700 -4367_81466,338,4384_8896,Ennis,A474,0,4384_7778018_TxcA129E47C-4B81-4F57-9081-78470BFAB0F0,4384_700 -4367_81466,342,4384_8897,Galway (Ceannt),A794,0,4384_7778018_Txc653A2FCE-C985-44A5-8EA2-08D225F600AB,4384_701 -4367_81485,318,4384_890,Greystones,E110,1,4384_7778018_TxcFB8E10AF-0834-4431-B84F-E1758B58F0FE,4384_2 -4367_81466,319,4384_8900,Galway (Ceannt),A794,0,4384_7778018_Txc8275E338-BED1-4147-8683-C04A83F236CF,4384_701 -4367_81466,348,4384_8907,Galway (Ceannt),A788,0,4384_7778018_Txc6123AF9D-9CA7-4DB8-8619-C640711DF473,4384_701 -4367_81466,338,4384_8910,Galway (Ceannt),A788,0,4384_7778018_Txc00F7B010-0E99-47D0-B4DC-88CC9DC5696B,4384_701 -4367_81466,342,4384_8912,Galway (Ceannt),A796,0,4384_7778018_Txc8BCAF05B-31A4-42D5-AE90-039B12D080FA,4384_701 -4367_81466,319,4384_8915,Galway (Ceannt),A796,0,4384_7778018_TxcF96BF3BC-F42C-4E74-B7C1-023F49AE7144,4384_701 -4367_81466,337,4384_8929,Ennis,A478,0,4384_7778018_Txc3A722893-82F5-4ADC-BB36-0D4186DF0F95,4384_700 -4367_81485,314,4384_893,Greystones,E123,1,4384_7778018_Txc5038EFDA-683B-4373-AD3A-3BB672944248,4384_2 -4367_81466,344,4384_8930,Ennis,A478,0,4384_7778018_TxcC93B7B61-D8E4-413C-9E1F-EBE37A6DDC8F,4384_700 -4367_81466,348,4384_8931,Galway (Ceannt),A790,0,4384_7778018_Txc6577B0F3-F4BE-47D3-B547-7D71757769E5,4384_701 -4367_81466,344,4384_8935,Galway (Ceannt),A790,0,4384_7778018_TxcBF95BE2D-45D4-430A-8897-9077451D0E35,4384_701 -4367_81466,138,4384_8936,Ennis,B420,0,4384_7778018_Txc4DA40538-4E5B-4E99-83C9-0CCD2E2BC21B,4384_705 -4367_81466,332,4384_8937,Ennis,B420,0,4384_7778018_TxcAB3A7E4F-26A6-4614-8C28-89429C3680CB,4384_705 -4367_81466,278,4384_8945,Ennis,A476,0,4384_7778018_TxcC8A22FDF-A0B0-4553-8E18-A5EAC9C2C049,4384_699 -4367_81466,319,4384_8947,Ennis,A476,0,4384_7778018_Txc367A508A-BDA3-4478-99B3-228FCD0AC5D1,4384_699 -4367_81468,314,4384_8948,Limerick (Colbert),A460,1,4384_7778018_TxcFF92616E-DCEF-4290-8AE2-D9697B0B778B,4384_710 -4367_81468,336,4384_8949,Limerick (Colbert),A460,1,4384_7778018_TxcB0AC3620-86AA-4D08-A608-8416F541B073,4384_710 -4367_81468,337,4384_8950,Limerick (Colbert),A462,1,4384_7778018_Txc38D27577-9F49-4665-9B2E-CEEE9FB5ECE0,4384_711 -4367_81468,349,4384_8951,Limerick (Colbert),A462,1,4384_7778018_Txc1AFB8F63-FB2C-46E5-A178-7D26F47FBFF8,4384_711 -4367_81468,337,4384_8954,Limerick (Colbert),A464,1,4384_7778018_TxcE94A8806-DED2-4707-9FCB-5F5664C6AAC3,4384_711 -4367_81468,383,4384_8955,Limerick (Colbert),A464,1,4384_7778018_TxcF6033822-E05A-431E-AF00-3BB12240E9A9,4384_711 -4367_81468,278,4384_8957,Limerick (Colbert),A460,1,4384_7778018_Txc37F36335-540E-448C-86E0-D8AC68B7C9C5,4384_711 -4367_81468,319,4384_8959,Limerick (Colbert),A460,1,4384_7778018_Txc3CF064B8-0F15-4EA8-BB5A-DC3323A7900E,4384_711 -4367_81468,314,4384_8961,Ballybrophy,A461,0,4384_7778018_Txc90FF2F42-D529-4641-A7B2-31671AC11CE6,4384_712 -4367_81468,336,4384_8962,Ballybrophy,A461,0,4384_7778018_Txc794495DE-413E-4FD9-814A-0C8E667DFED3,4384_712 -4367_81468,23,4384_8964,Ballybrophy,A461,0,4384_7778018_TxcEFF651AB-634E-45F5-8F20-1DEF8067B04C,4384_712 -4367_81468,316,4384_8965,Ballybrophy,A461,0,4384_7778018_TxcA50F3A94-937F-42CA-87CC-856DA60DBF16,4384_712 -4367_81468,318,4384_8966,Ballybrophy,A461,0,4384_7778018_Txc4FDC41F4-279B-4523-B155-B56C3766D9FA,4384_712 -4367_81468,337,4384_8968,Ballybrophy,A463,0,4384_7778018_TxcDC995926-C7C4-4D1A-A4CA-459F05048E25,4384_712 -4367_81468,383,4384_8969,Ballybrophy,A463,0,4384_7778018_Txc6EF7A28E-A074-439D-926E-2A46902163DE,4384_712 -4367_81485,315,4384_897,Greystones,E123,1,4384_7778018_TxcF1173527-2ACE-4014-8614-A2498E416BC1,4384_2 -4367_81468,278,4384_8970,Ballybrophy,A461,0,4384_7778018_Txc953AF4BD-FB18-4129-9741-4B44752FA419,4384_712 -4367_81468,319,4384_8972,Ballybrophy,A461,0,4384_7778018_TxcFBDDA535-23A2-4398-9D0C-47E0CBCC95A8,4384_712 -4367_81467,337,4384_8974,Waterford (Plunkett),A572,1,4384_7778018_Txc261C6A47-4D1F-4251-ACBB-E6C09CD0C3A3,4384_713 -4367_81467,349,4384_8976,Waterford (Plunkett),A572,1,4384_7778018_Txc15BC9C87-39F5-405C-BA5F-D741F171B39B,4384_713 -4367_81467,337,4384_8978,Waterford (Plunkett),A576,1,4384_7778018_TxcD6D46540-1E6A-461D-8478-191FCD136045,4384_713 -4367_81467,349,4384_8979,Waterford (Plunkett),A576,1,4384_7778018_Txc9D97C608-86E6-404E-A7F8-8D28F1DD1580,4384_713 -4367_81467,337,4384_8985,Limerick Junction,A453,0,4384_7778018_TxcD553DF3C-64CE-4EBC-8A58-1E67F8ED76CC,4384_715 -4367_81467,349,4384_8987,Limerick Junction,A453,0,4384_7778018_TxcFEB1B741-515A-4950-B9BA-2B7C83784178,4384_715 -4367_81467,337,4384_8988,Limerick Junction,A457,0,4384_7778018_Txc9767050B-7129-4EDE-9EDF-98E6454E3BA5,4384_715 -4367_81467,349,4384_8989,Limerick Junction,A457,0,4384_7778018_Txc61AFA964-4E8C-4FF6-AF61-3B134BBCC930,4384_715 -4367_81485,211,4384_899,Bray (Daly),E231,1,4384_7778018_TxcC3174660-18C9-4A89-B3C4-735F2D7886F7,4384_7 -4367_81485,315,4384_9,Bray (Daly),E201,1,4384_7778018_TxcC1A403EB-A4CB-4D3E-98B7-2F12A7187C25,4384_6 -4367_81485,23,4384_90,Greystones,E101,1,4384_7778018_Txc186A10BA-EEC1-4206-997D-F4654AFA5BFE,4384_2 -4367_81483,314,4384_9005,Cork (Kent),P501,1,4384_7778018_Txc6BC551F4-95D4-4AA2-AEE7-F9299FAB811A,4384_716 -4367_81483,315,4384_9007,Cork (Kent),P501,1,4384_7778018_Txc5AA97484-26CB-42B1-AD4E-F978FC9A315D,4384_716 -4367_81483,337,4384_9008,Cork (Kent),P550,1,4384_7778018_Txc17E64F66-2315-49B9-A98F-419579600ECA,4384_717 -4367_81483,341,4384_9009,Cork (Kent),P550,1,4384_7778018_TxcD8F86A91-96F1-490B-83B9-F004C3439207,4384_717 -4367_81483,23,4384_9010,Cork (Kent),P502,1,4384_7778018_TxcA8A7838F-0629-4192-A6FA-6E16BC6A423A,4384_716 -4367_81483,316,4384_9011,Cork (Kent),P502,1,4384_7778018_TxcBD709173-C3E0-4441-B6B1-C1AB3D733276,4384_716 -4367_81483,138,4384_9012,Cork (Kent),P502,1,4384_7778018_TxcE467EBC0-44E2-47AB-92BB-79A7FFC2D8EA,4384_716 -4367_81483,318,4384_9013,Cork (Kent),P502,1,4384_7778018_TxcF552C87B-3C39-44A6-B221-554DC9F424A0,4384_716 -4367_81483,337,4384_9014,Cork (Kent),P551,1,4384_7778018_TxcFD0788B9-A74A-40DB-B581-1AEF9F5A9446,4384_717 -4367_81483,341,4384_9015,Cork (Kent),P551,1,4384_7778018_TxcCDB021C6-3079-400F-A635-9577C0376ED1,4384_717 -4367_81483,314,4384_9016,Cork (Kent),P504,1,4384_7778018_Txc716997A7-B08D-41BF-8D83-42C70EC02333,4384_716 -4367_81483,315,4384_9017,Cork (Kent),P504,1,4384_7778018_TxcE2225489-79DE-453A-BE69-D06B40FEC433,4384_716 -4367_81483,314,4384_9018,Cork (Kent),P552,1,4384_7778018_Txc2B0F4186-CC8C-4E4D-937D-B68FB80A52E2,4384_717 -4367_81483,315,4384_9019,Cork (Kent),P552,1,4384_7778018_TxcAD78858C-C527-4613-B5B5-D4690483B4D9,4384_717 -4367_81485,96,4384_902,Bray (Daly),E231,1,4384_7778018_Txc545134A4-C3AE-4D52-8FD2-12FB852FE2A0,4384_29 -4367_81483,337,4384_9020,Cork (Kent),P505,1,4384_7778018_Txc66304636-C7A6-4921-BF12-D1C32020FA37,4384_716 -4367_81483,341,4384_9021,Cork (Kent),P505,1,4384_7778018_Txc0D6DD8A3-002B-4005-9590-05EAAB0CF816,4384_716 -4367_81483,337,4384_9022,Cork (Kent),P553,1,4384_7778018_TxcBD5EE943-0272-4F03-A9B8-8966D3B65A9A,4384_717 -4367_81483,341,4384_9023,Cork (Kent),P553,1,4384_7778018_TxcA0B13073-04CB-4E26-AF7E-4F0CBD6B8D24,4384_717 -4367_81483,337,4384_9024,Cork (Kent),P508,1,4384_7778018_Txc65D26856-2A1F-4078-B404-191F527997F4,4384_716 -4367_81483,341,4384_9025,Cork (Kent),P508,1,4384_7778018_Txc60FA4BB7-642F-4DDA-8EC2-2FABB9DFED40,4384_716 -4367_81483,314,4384_9026,Cork (Kent),P554,1,4384_7778018_Txc0241DCDF-8509-480A-BD2C-A7E3BA91EBA5,4384_717 -4367_81483,315,4384_9028,Cork (Kent),P554,1,4384_7778018_Txc0351BDAE-F81F-4632-8F92-2F0B991232A2,4384_717 -4367_81485,214,4384_903,Bray (Daly),E231,1,4384_7778018_TxcCD0530ED-1F16-4D41-BAC9-188F0D22B525,4384_29 -4367_81483,251,4384_9030,Mallow,BUS207,1,4384_7778018_Txc411DB67A-E743-4C61-981C-FA10AF3016F3,4384_719 -4367_81483,337,4384_9031,Cork (Kent),P509,1,4384_7778018_Txc4C641026-B5C5-48F9-84AF-93673A982001,4384_716 -4367_81483,278,4384_9032,Cork (Kent),P501,1,4384_7778018_Txc38DC6E2B-D0B4-48F0-8F23-77EB1F487F8D,4384_716 -4367_81483,338,4384_9034,Cork (Kent),P509,1,4384_7778018_Txc4F5AE464-C0B8-4970-833C-C3B0A1BB2B20,4384_716 -4367_81483,319,4384_9035,Cork (Kent),P501,1,4384_7778018_TxcA5EC53DD-C84A-4DC0-9A68-86518AD4CBCA,4384_716 -4367_81483,337,4384_9037,Cork (Kent),P555,1,4384_7778018_Txc8EE02F2D-E5FC-4CA1-82A2-BCD83C72A734,4384_717 -4367_81483,278,4384_9038,Cork (Kent),P551,1,4384_7778018_TxcCDE90F0D-4890-46E5-A8A5-9C9781AFF90F,4384_717 -4367_81485,316,4384_904,Bray (Daly),E231,1,4384_7778018_Txc678B7A89-8F86-4AC0-AF11-A3E7868CD16B,4384_7 -4367_81483,338,4384_9040,Cork (Kent),P555,1,4384_7778018_Txc13B8CAC5-59C6-47D7-A6D1-E8D55686CF39,4384_717 -4367_81483,319,4384_9041,Cork (Kent),P551,1,4384_7778018_Txc25A4921E-0DB3-4D85-96C5-BA87D14F0C3C,4384_717 -4367_81483,251,4384_9043,Mallow,BUS300,1,4384_7778018_Txc8B51FF9B-AE57-46AA-9C5D-2AFDFDF7A3D7,4384_719 -4367_81483,337,4384_9044,Cork (Kent),P510,1,4384_7778018_Txc724743CD-1868-4D45-BCF7-E4A0C55762E4,4384_716 -4367_81483,341,4384_9045,Cork (Kent),P510,1,4384_7778018_Txc435EBB5D-7865-4549-8A5C-B2090A24B3F5,4384_716 -4367_81483,314,4384_9046,Cork (Kent),P556,1,4384_7778018_TxcD6567BE0-4CD9-461B-862C-E3C6548687ED,4384_717 -4367_81483,315,4384_9047,Cork (Kent),P556,1,4384_7778018_Txc6CD9B567-2AE4-4D50-A777-4FF13C5F5674,4384_717 -4367_81483,337,4384_9048,Cork (Kent),P511,1,4384_7778018_Txc150782F9-10FD-4A60-8907-B659664D5547,4384_716 -4367_81483,278,4384_9049,Cork (Kent),P502,1,4384_7778018_TxcEFC26FFC-82D0-49EB-B701-8F8EB4F2992A,4384_716 -4367_81485,138,4384_905,Bray (Daly),E231,1,4384_7778018_TxcDD4194F7-5B90-4D31-9A2C-EDA1ECD6B338,4384_7 -4367_81483,338,4384_9051,Cork (Kent),P511,1,4384_7778018_Txc6216821E-F4AB-4100-9DC5-088A26B18D59,4384_716 -4367_81483,319,4384_9052,Cork (Kent),P502,1,4384_7778018_Txc36894434-EAA2-47EA-B21D-07F8C8767EAC,4384_716 -4367_81483,337,4384_9053,Cork (Kent),P557,1,4384_7778018_TxcD1552535-BE27-4201-AF16-37C783162D2F,4384_717 -4367_81483,278,4384_9054,Cork (Kent),P552,1,4384_7778018_Txc02239C32-C51F-497F-8889-AD176AED1B08,4384_717 -4367_81483,338,4384_9056,Cork (Kent),P557,1,4384_7778018_Txc6781C8E9-B9D7-485F-B02E-E9B943699F56,4384_717 -4367_81483,319,4384_9057,Cork (Kent),P552,1,4384_7778018_Txc9A26B2F1-E816-4A9F-B5AA-BD3DE344EC93,4384_717 -4367_81483,337,4384_9058,Cork (Kent),P512,1,4384_7778018_Txc772E23FF-5B2E-4948-8D6F-17A401930619,4384_716 -4367_81485,317,4384_906,Bray (Daly),E231,1,4384_7778018_Txc38DC8BDC-9125-44F2-AC2F-928937C96584,4384_7 -4367_81483,341,4384_9060,Cork (Kent),P512,1,4384_7778018_TxcC42F871F-CC43-42E5-B386-4080E63C71EE,4384_716 -4367_81483,314,4384_9061,Cork (Kent),P558,1,4384_7778018_Txc29737BA9-8702-4A1F-BEFF-0F93F0247999,4384_717 -4367_81483,315,4384_9062,Cork (Kent),P558,1,4384_7778018_Txc891C70A0-2F63-4D82-AD58-3125BB0DC3E7,4384_717 -4367_81483,337,4384_9064,Cork (Kent),P513,1,4384_7778018_TxcD71D53F4-EB6B-4F34-8EB8-508691FB245D,4384_716 -4367_81483,278,4384_9065,Cork (Kent),P503,1,4384_7778018_Txc1B08991C-CD0F-40C3-AF0E-7061836537BA,4384_716 -4367_81483,338,4384_9066,Cork (Kent),P513,1,4384_7778018_TxcF72F87E1-969C-465F-8377-ED6F1DCE3414,4384_716 -4367_81483,319,4384_9067,Cork (Kent),P503,1,4384_7778018_TxcC1372E2D-FB60-4BBF-B69F-BF770A41C3C9,4384_716 -4367_81483,337,4384_9068,Cork (Kent),P559,1,4384_7778018_Txc7145C555-E096-4A12-8CD3-90C3A3489BF1,4384_717 -4367_81483,278,4384_9069,Cork (Kent),P553,1,4384_7778018_Txc240699AB-735F-42BC-AB41-86290755E9A7,4384_717 -4367_81485,318,4384_907,Bray (Daly),E231,1,4384_7778018_TxcA3036A1F-7EC3-42DD-9481-AE5AC141517D,4384_7 -4367_81483,338,4384_9070,Cork (Kent),P559,1,4384_7778018_TxcE1FC885B-B4A3-4795-A0E3-84106E2C0CD1,4384_717 -4367_81483,319,4384_9071,Cork (Kent),P553,1,4384_7778018_TxcD124D643-F815-432C-9B31-CE405BA15E5A,4384_717 -4367_81483,337,4384_9072,Cork (Kent),P514,1,4384_7778018_Txc304F7893-D625-4823-89FA-FC554AE4CE2B,4384_716 -4367_81483,341,4384_9073,Cork (Kent),P514,1,4384_7778018_Txc4C388E53-EEF6-4FE1-9D14-D9ABB568D071,4384_716 -4367_81483,314,4384_9074,Cork (Kent),P560,1,4384_7778018_TxcB058A712-F2A1-4ABD-923B-E3F97F148743,4384_717 -4367_81483,315,4384_9075,Cork (Kent),P560,1,4384_7778018_TxcD635B01C-92AE-44C5-A66B-74EC48D84238,4384_717 -4367_81483,337,4384_9076,Cork (Kent),P515,1,4384_7778018_TxcD20460FD-FA93-47B8-BB0D-281BDC5C412D,4384_716 -4367_81483,278,4384_9077,Cork (Kent),P505,1,4384_7778018_Txc76430493-7529-4AC1-A6CB-726211CA7CBD,4384_716 -4367_81483,338,4384_9079,Cork (Kent),P515,1,4384_7778018_Txc375DBD9B-9F64-4CB5-A1FD-BAE4826F34A4,4384_716 -4367_81485,314,4384_908,Bray (Daly),E246,1,4384_7778018_TxcE295C4B9-4B1C-41A4-A93C-BEA3244C077F,4384_7 -4367_81483,319,4384_9080,Cork (Kent),P505,1,4384_7778018_Txc7D321211-BEC7-4040-A5FF-53C5CA408D82,4384_716 -4367_81483,337,4384_9081,Cork (Kent),P561,1,4384_7778018_Txc2189488B-296E-4747-80DB-644942CA1F95,4384_717 -4367_81483,278,4384_9082,Cork (Kent),P555,1,4384_7778018_TxcEE93B0D1-F4A8-467E-BDD3-7B9909906F55,4384_717 -4367_81483,338,4384_9084,Cork (Kent),P561,1,4384_7778018_Txc94354E8F-8D21-4706-9147-BED97DA9F56F,4384_717 -4367_81483,319,4384_9085,Cork (Kent),P555,1,4384_7778018_Txc7DC8BDB9-FAE1-44F1-984B-8A507D407905,4384_717 -4367_81483,337,4384_9086,Cork (Kent),P516,1,4384_7778018_TxcD53791A3-2F75-4029-9FFB-1F30311F091E,4384_716 -4367_81483,341,4384_9088,Cork (Kent),P516,1,4384_7778018_TxcF3617CF5-205A-4F50-8608-48E7FA28CDDE,4384_716 -4367_81483,314,4384_9089,Cork (Kent),P562,1,4384_7778018_TxcA662ECF9-90B6-4753-86F9-25910E54ACC5,4384_717 -4367_81485,278,4384_909,Bray (Daly),E224,1,4384_7778018_Txc67C418A8-7338-4350-8A04-65D85E2987F8,4384_8 -4367_81483,315,4384_9090,Cork (Kent),P562,1,4384_7778018_TxcB2CAF65C-2EFB-48AB-94C6-9910FF9D35B7,4384_717 -4367_81483,337,4384_9092,Cork (Kent),P517,1,4384_7778018_Txc6FDAA00D-3C2F-486E-BA56-F1C5C6502776,4384_716 -4367_81483,278,4384_9093,Cork (Kent),P507,1,4384_7778018_Txc7241864D-310D-4978-906C-E8600E6CBDDE,4384_716 -4367_81483,338,4384_9095,Cork (Kent),P517,1,4384_7778018_Txc24A66575-2C1C-41A0-9490-1A223EAF3E1C,4384_716 -4367_81483,319,4384_9096,Cork (Kent),P507,1,4384_7778018_Txc8F58FC53-A362-4B42-8DB8-465AF58D1F4F,4384_716 -4367_81483,337,4384_9097,Cork (Kent),P563,1,4384_7778018_Txc3AC61F58-40B1-48BF-851E-6A5BAD6FA540,4384_717 -4367_81483,278,4384_9098,Cork (Kent),P557,1,4384_7778018_TxcAEE748D5-B4BF-4517-A0E8-D386ADD532A6,4384_717 -4367_81483,338,4384_9100,Cork (Kent),P563,1,4384_7778018_Txc000A72DE-6BC6-406B-9FBB-388BB7071D0F,4384_717 -4367_81483,319,4384_9101,Cork (Kent),P557,1,4384_7778018_Txc73FA960A-3E34-45FC-97A4-3BBD94AF5B02,4384_717 -4367_81483,337,4384_9102,Cork (Kent),P518,1,4384_7778018_TxcFADF54F9-D6A5-4D5E-8878-AA7DAEBCECF0,4384_716 -4367_81483,341,4384_9104,Cork (Kent),P518,1,4384_7778018_TxcBAEEA252-B01E-440E-B9F6-AEC49F5E8F77,4384_716 -4367_81483,314,4384_9105,Cork (Kent),P564,1,4384_7778018_TxcD493767E-8DED-4023-8E77-5DD315A9D7D3,4384_717 -4367_81483,315,4384_9106,Cork (Kent),P564,1,4384_7778018_TxcDC33B640-7F01-422A-B13B-65BEFACEA0EC,4384_717 -4367_81483,337,4384_9107,Cork (Kent),P519,1,4384_7778018_Txc5FDCA65E-A3FF-499B-9AFF-A75ACA1C0455,4384_716 -4367_81483,278,4384_9108,Cork (Kent),P509,1,4384_7778018_Txc026C9CF6-AD4F-45CB-AEEB-36AC9D424D97,4384_716 -4367_81483,338,4384_9110,Cork (Kent),P519,1,4384_7778018_Txc139CEC7B-4B1F-48E5-8392-74A2F1D4AF5E,4384_716 -4367_81483,319,4384_9111,Cork (Kent),P509,1,4384_7778018_Txc402F3328-3D50-4379-AB3A-0FB5205E4CF4,4384_716 -4367_81483,337,4384_9112,Cork (Kent),P565,1,4384_7778018_Txc63EF7330-4396-437D-8A90-F2541F2E0A58,4384_717 -4367_81483,278,4384_9113,Cork (Kent),P559,1,4384_7778018_TxcC433AEBB-99C7-4E6D-831E-F5DEEE392C74,4384_717 -4367_81483,338,4384_9114,Cork (Kent),P565,1,4384_7778018_Txc3A115D93-74E3-4864-AE09-DD91A5BDFDDB,4384_717 -4367_81483,319,4384_9115,Cork (Kent),P559,1,4384_7778018_Txc3E206F13-CB74-4D33-B5CA-36673F4A3722,4384_717 -4367_81483,337,4384_9116,Cork (Kent),P520,1,4384_7778018_Txc6AB23678-D07E-4BF5-B25D-DF029424CE30,4384_716 -4367_81483,341,4384_9118,Cork (Kent),P520,1,4384_7778018_Txc8E9B46CF-9FEB-437C-AB32-212F249CF204,4384_716 -4367_81483,314,4384_9119,Cork (Kent),P566,1,4384_7778018_Txc2F4146E9-09A1-490E-BB5E-4B9574250C6E,4384_717 -4367_81483,315,4384_9120,Cork (Kent),P566,1,4384_7778018_TxcBFE7D438-9EFA-46B2-A303-BAEBA771D7F5,4384_717 -4367_81483,337,4384_9122,Cork (Kent),P521,1,4384_7778018_Txc53164470-F89B-4CCB-BB2C-6917547F24CE,4384_716 -4367_81483,278,4384_9123,Cork (Kent),P511,1,4384_7778018_TxcFC8A5E68-58CC-47EC-A495-B60601A6C166,4384_716 -4367_81483,338,4384_9124,Cork (Kent),P521,1,4384_7778018_Txc3E2FE7AA-D139-451C-AAF2-EFDF8112CA88,4384_716 -4367_81483,319,4384_9125,Cork (Kent),P511,1,4384_7778018_TxcED404E47-0339-4259-9055-E5073F0B279A,4384_716 -4367_81483,337,4384_9126,Cork (Kent),P567,1,4384_7778018_Txc7CFA2914-3922-4BBB-BCE6-998CFE131F39,4384_717 -4367_81483,278,4384_9127,Cork (Kent),P561,1,4384_7778018_Txc509EF813-2222-4BAF-873C-DE2014D0FEF8,4384_717 -4367_81483,338,4384_9129,Cork (Kent),P567,1,4384_7778018_Txc5F398FA6-FA11-4A77-91C2-BC992F737CF1,4384_717 -4367_81483,319,4384_9130,Cork (Kent),P561,1,4384_7778018_TxcB3BF7F2C-A1AD-444F-9787-4B0351F6D1E4,4384_717 -4367_81483,337,4384_9131,Cork (Kent),P522,1,4384_7778018_Txc574E1466-998B-4F20-A175-3332CE9D94E7,4384_716 -4367_81483,341,4384_9134,Cork (Kent),P522,1,4384_7778018_Txc27B7DD20-A5FC-49A2-9E03-B6ACF093795E,4384_716 -4367_81483,314,4384_9135,Cork (Kent),P568,1,4384_7778018_TxcD2723906-B262-40E5-B100-4E700B83F7F5,4384_717 -4367_81483,315,4384_9136,Cork (Kent),P568,1,4384_7778018_TxcAA99F6D6-B1CB-41DD-B78C-F6AD8CDA7554,4384_717 -4367_81483,337,4384_9137,Cork (Kent),P523,1,4384_7778018_Txc7898E16B-C055-4538-820E-A22F0372F626,4384_716 -4367_81483,278,4384_9138,Cork (Kent),P513,1,4384_7778018_Txc57A59921-0024-4072-BD41-DCE62FD942A9,4384_716 -4367_81483,338,4384_9139,Cork (Kent),P523,1,4384_7778018_Txc3D614B06-9EB1-43CC-A2B4-6EB9247BD20C,4384_716 -4367_81483,319,4384_9140,Cork (Kent),P513,1,4384_7778018_Txc62C76705-D1B7-4F49-AB68-BE272A31A0C7,4384_716 -4367_81483,337,4384_9141,Cork (Kent),P569,1,4384_7778018_Txc0BFDEE3D-A32C-4AF9-A106-B2CDBC954ADF,4384_717 -4367_81483,278,4384_9142,Cork (Kent),P563,1,4384_7778018_Txc18860E4B-E397-4C3B-A56C-2A8567D28D9A,4384_717 -4367_81483,338,4384_9143,Cork (Kent),P569,1,4384_7778018_Txc4987BDBF-98AE-46C3-8A35-8F1499C56F46,4384_717 -4367_81483,319,4384_9144,Cork (Kent),P563,1,4384_7778018_Txc1E21FFA4-323B-41B0-A721-8AE90BD6AA50,4384_717 -4367_81483,337,4384_9145,Cork (Kent),P524,1,4384_7778018_Txc25591693-F855-45D0-ACBE-2D17770A26F0,4384_716 -4367_81483,341,4384_9147,Cork (Kent),P524,1,4384_7778018_Txc49DAD909-60B4-4D16-ADDF-DD92C9249EC5,4384_716 -4367_81483,314,4384_9148,Cork (Kent),P570,1,4384_7778018_TxcF157CC55-5F20-4243-9130-40DCE999E182,4384_717 -4367_81483,315,4384_9149,Cork (Kent),P570,1,4384_7778018_Txc8F025A85-1779-482B-9EAA-15020FCFD82B,4384_717 -4367_81485,315,4384_915,Bray (Daly),E246,1,4384_7778018_TxcD7ACAD81-DF75-4E74-A0A3-C1D8A42A3FF5,4384_7 -4367_81483,337,4384_9151,Cork (Kent),P525,1,4384_7778018_Txc44488993-9B1E-4A0C-A674-A5A8BACEA3F6,4384_716 -4367_81483,278,4384_9152,Cork (Kent),P515,1,4384_7778018_Txc7A7639F7-199B-46F1-84ED-4324720A562B,4384_716 -4367_81483,338,4384_9154,Cork (Kent),P525,1,4384_7778018_TxcC7CA5FBB-BE8A-43D9-A6DE-D0D93C2503FB,4384_716 -4367_81483,319,4384_9155,Cork (Kent),P515,1,4384_7778018_TxcE9A4F388-37B3-4F8C-83D0-06A77B57E95F,4384_716 -4367_81483,337,4384_9156,Cork (Kent),P571,1,4384_7778018_Txc542F0088-8F5C-48AA-AF22-68D52FECD2CE,4384_717 -4367_81483,278,4384_9157,Cork (Kent),P565,1,4384_7778018_Txc4FE35A73-9D29-411B-A617-CF09B7AAF0D7,4384_717 -4367_81483,338,4384_9159,Cork (Kent),P571,1,4384_7778018_TxcA44D6A24-69DD-43A8-82C9-3FD69CD4AD49,4384_717 -4367_81485,319,4384_916,Bray (Daly),E224,1,4384_7778018_TxcF59EF492-41A5-46AD-BD47-C9AC60133D88,4384_8 -4367_81483,319,4384_9160,Cork (Kent),P565,1,4384_7778018_Txc9992B74E-0496-4CC6-9ECF-005263F90FDF,4384_717 -4367_81483,337,4384_9162,Cork (Kent),P527,1,4384_7778018_Txc3FAE017F-33B4-4797-A8BE-CA9D77BD1E39,4384_716 -4367_81483,341,4384_9164,Cork (Kent),P527,1,4384_7778018_TxcEBC1C1CA-B49C-46F1-9F44-C6A26F59B56D,4384_716 -4367_81483,314,4384_9165,Cork (Kent),P572,1,4384_7778018_Txc83EF562D-CDB7-4424-AF54-1915796829C7,4384_717 -4367_81483,315,4384_9166,Cork (Kent),P572,1,4384_7778018_Txc00AE90C5-A986-4B56-8A84-C6BDCA474605,4384_717 -4367_81483,337,4384_9167,Cork (Kent),P529,1,4384_7778018_TxcBFC88CF0-5624-40C0-A3B7-1BA2644AD130,4384_716 -4367_81483,278,4384_9168,Cork (Kent),P517,1,4384_7778018_Txc9FD0699F-ED3E-4226-87EA-0FC60198982F,4384_716 -4367_81485,271,4384_917,Bray (Daly),E224,1,4384_7778018_TxcCFAB4491-9B1A-403C-9892-8C10711AB694,4384_8 -4367_81483,338,4384_9170,Cork (Kent),P529,1,4384_7778018_Txc6E132B0C-86DE-4B26-86CD-E716C1EA5A5E,4384_716 -4367_81483,319,4384_9171,Cork (Kent),P517,1,4384_7778018_TxcF506441F-EBCF-4773-894F-F538CB2AB8F7,4384_716 -4367_81483,337,4384_9172,Cork (Kent),P573,1,4384_7778018_Txc4921FE4F-1047-4012-B882-532CAB02E8B8,4384_717 -4367_81483,278,4384_9173,Cork (Kent),P567,1,4384_7778018_Txc0580D18F-E668-4394-A3D5-2CC452555D2B,4384_717 -4367_81483,338,4384_9175,Cork (Kent),P573,1,4384_7778018_Txc63A33BAF-AD1C-4C45-A3AC-BC668064FB69,4384_717 -4367_81483,319,4384_9176,Cork (Kent),P567,1,4384_7778018_TxcEF48BCAD-BE4A-4170-BA06-55FA073AC27A,4384_717 -4367_81483,337,4384_9177,Cork (Kent),P530,1,4384_7778018_Txc8B690634-DEE1-4C91-878B-C4F5E4D50951,4384_716 -4367_81483,341,4384_9179,Cork (Kent),P530,1,4384_7778018_TxcC7C6D7A9-C73E-48DD-9B8A-85E83BEEC6C1,4384_716 -4367_81485,320,4384_918,Bray (Daly),E224,1,4384_7778018_Txc5EDC6A89-8D99-4A88-8A21-15384BEB2B34,4384_8 -4367_81483,314,4384_9180,Cork (Kent),P574,1,4384_7778018_Txc6CC90EDF-0C29-48BB-8B5D-31B9F4BD64FF,4384_717 -4367_81483,315,4384_9181,Cork (Kent),P574,1,4384_7778018_TxcE06945CE-99A8-4460-A9F4-0029A3D15D49,4384_717 -4367_81483,337,4384_9182,Cork (Kent),P532,1,4384_7778018_Txc2AE2C711-0BFD-4207-8B9B-96EB65438D18,4384_716 -4367_81483,278,4384_9183,Cork (Kent),P519,1,4384_7778018_TxcBCE2E57B-51D8-4D02-A65E-013F410AA17F,4384_716 -4367_81483,338,4384_9185,Cork (Kent),P532,1,4384_7778018_Txc4AA65A45-90DC-4F9E-9F7C-A9DA48F65E93,4384_716 -4367_81483,319,4384_9186,Cork (Kent),P519,1,4384_7778018_Txc0C35BBF3-7A33-43B2-BB80-D8A87BA09D64,4384_716 -4367_81483,337,4384_9188,Cork (Kent),P575,1,4384_7778018_Txc1E1FBCD8-7680-4A1B-8695-DD589DE51B28,4384_717 -4367_81483,278,4384_9189,Cork (Kent),P569,1,4384_7778018_TxcDB0AAAE6-15C0-4B0A-B6B1-B49D95874085,4384_717 -4367_81483,338,4384_9191,Cork (Kent),P575,1,4384_7778018_Txc6E64E9A1-8513-44B6-922B-54FAE7B5D57D,4384_717 -4367_81483,319,4384_9192,Cork (Kent),P569,1,4384_7778018_Txc139BF2F5-4237-4CF9-945D-A4E7BBFFCBFC,4384_717 -4367_81483,337,4384_9195,Cork (Kent),P533,1,4384_7778018_TxcA5291CC7-F432-40E5-A238-F803EC40DC0A,4384_716 -4367_81483,341,4384_9196,Cork (Kent),P533,1,4384_7778018_TxcEB6F6179-0BA4-43D3-A6B3-B05ABCCDF645,4384_716 -4367_81483,314,4384_9197,Cork (Kent),P576,1,4384_7778018_Txc459D4AC7-5B97-4F5C-B9DA-B3E078EB04C4,4384_717 -4367_81483,315,4384_9198,Cork (Kent),P576,1,4384_7778018_TxcF2900ECD-F6F6-40A2-95DA-2D0E710AF6EB,4384_717 -4367_81483,337,4384_9200,Cork (Kent),P534,1,4384_7778018_Txc1404A579-C21F-47A5-96A0-29BCA51E658D,4384_716 -4367_81483,278,4384_9201,Cork (Kent),P521,1,4384_7778018_TxcBDFDACAF-1B4F-4D6F-B894-B54A2C2EAED0,4384_716 -4367_81483,338,4384_9202,Cork (Kent),P534,1,4384_7778018_TxcC204F9CA-5BF1-4E23-9B27-5738B9BF9070,4384_716 -4367_81483,319,4384_9203,Cork (Kent),P521,1,4384_7778018_TxcB3D6BE7B-0557-4C71-A703-C01B96781CB8,4384_716 -4367_81483,337,4384_9204,Cork (Kent),P577,1,4384_7778018_TxcDD70EC49-6C0A-4CDF-98C2-DCBDF5ABE568,4384_717 -4367_81483,278,4384_9205,Cork (Kent),P571,1,4384_7778018_Txc4B9ED3EC-532C-460D-9793-49B49D85F407,4384_717 -4367_81483,338,4384_9206,Cork (Kent),P577,1,4384_7778018_TxcD79B16C6-6BEE-4FCF-8094-47D10083B0C6,4384_717 -4367_81483,319,4384_9207,Cork (Kent),P571,1,4384_7778018_Txc8A26FD9D-CF96-4569-87EA-B836FB4AFFDE,4384_717 -4367_81483,337,4384_9208,Cork (Kent),P535,1,4384_7778018_TxcDBD9882E-32A8-4966-88D7-4762FBE39F2F,4384_716 -4367_81483,341,4384_9209,Cork (Kent),P535,1,4384_7778018_Txc97E67797-EC96-431A-90EF-89A3DB1355D8,4384_716 -4367_81483,337,4384_9212,Cork (Kent),P536,1,4384_7778018_TxcC0B39348-ACAA-4907-A7C1-C04C93FE9105,4384_716 -4367_81483,278,4384_9213,Cork (Kent),P523,1,4384_7778018_TxcBB89C768-EBA7-498F-8567-A49A7EE66955,4384_716 -4367_81483,338,4384_9215,Cork (Kent),P536,1,4384_7778018_Txc65412FB4-A43B-43E0-8317-BF4AB393C9EA,4384_716 -4367_81483,319,4384_9216,Cork (Kent),P523,1,4384_7778018_Txc74D37F74-88E9-4720-9782-19FC99254133,4384_716 -4367_81483,384,4384_9218,Cork (Kent),P578,1,4384_7778018_Txc0AFF541D-2B36-4D50-A1B1-45BD05124087,4384_717 -4367_81483,278,4384_9219,Cork (Kent),P573,1,4384_7778018_TxcC06A6AAD-E8C4-4CE9-8730-097A0D676CA2,4384_717 -4367_81483,385,4384_9230,Cork (Kent),BUS588,1,4384_7778018_TxcA522FD90-4950-49B1-975F-BC467D76EE5D,4384_718 -4367_81483,386,4384_9231,Cork (Kent),BUS588,1,4384_7778018_Txc44733E53-3428-4DFD-AB5A-E3F21596153D,4384_718 -4367_81483,387,4384_9232,Cork (Kent),BUS588,1,4384_7778018_Txc862D5ACA-2C20-490D-96B7-3B3986622C2C,4384_718 -4367_81483,385,4384_9240,Cork (Kent),BUS188,1,4384_7778018_Txc592502F3-A832-4111-A342-0B99255CE167,4384_717 -4367_81483,386,4384_9241,Cork (Kent),BUS188,1,4384_7778018_TxcD70D9389-AC41-49FB-A502-BBD7FF7EAC3B,4384_717 -4367_81483,387,4384_9242,Cork (Kent),BUS188,1,4384_7778018_Txc86183F50-EE64-4525-B96D-888840C93404,4384_717 -4367_81483,388,4384_9243,Cork (Kent),P578,1,4384_7778018_Txc906453FD-AC4F-46BC-B437-589D44B5B804,4384_717 -4367_81483,319,4384_9244,Cork (Kent),P573,1,4384_7778018_TxcE395DC81-0E08-42E2-8C38-621A71C72164,4384_717 -4367_81483,389,4384_9245,Cork (Kent),BUS588,1,4384_7778018_Txc350A7071-3538-4728-A193-BA4738944A31,4384_718 -4367_81483,389,4384_9246,Cork (Kent),BUS188,1,4384_7778018_TxcD44F6B8A-45E1-4969-B927-D58A62002A5D,4384_717 -4367_81483,390,4384_9247,Cork (Kent),BUS588,1,4384_7778018_TxcC88B74CA-4A39-4699-B2A6-64878306FB1A,4384_718 -4367_81483,391,4384_9248,Cork (Kent),BUS588,1,4384_7778018_TxcAB430C6D-B3E6-4A12-AD8D-1100A09CABA1,4384_718 -4367_81483,392,4384_9249,Cork (Kent),BUS588,1,4384_7778018_Txc98F5F82D-6C19-4E7F-B0CD-A42814D5A029,4384_718 -4367_81483,393,4384_9250,Cork (Kent),BUS588,1,4384_7778018_TxcA0B5FF7B-D400-4852-8607-E7330F0664B8,4384_718 -4367_81483,394,4384_9251,Cork (Kent),BUS588,1,4384_7778018_Txc81574021-EA22-47E6-AB72-835D0D794E75,4384_718 -4367_81483,395,4384_9252,Cork (Kent),BUS588,1,4384_7778018_Txc93E61B41-9A42-4665-80F4-D2EDD18E58AD,4384_718 -4367_81483,396,4384_9253,Cork (Kent),BUS588,1,4384_7778018_Txc82140228-4C0C-442D-9483-9F789542D68C,4384_718 -4367_81483,397,4384_9254,Cork (Kent),BUS588,1,4384_7778018_Txc7333F38E-71E1-4E69-B11B-66F40E24F747,4384_718 -4367_81483,398,4384_9255,Cork (Kent),BUS588,1,4384_7778018_TxcEC536FC6-03E5-4CE6-AA1D-D5144441C752,4384_718 -4367_81483,399,4384_9256,Cork (Kent),BUS588,1,4384_7778018_Txc1E258A6F-026A-4B6D-B1F3-1C730CE12C61,4384_718 -4367_81483,400,4384_9257,Cork (Kent),BUS588,1,4384_7778018_Txc59904339-AF55-49A4-863B-FA55CA2E6566,4384_718 -4367_81483,401,4384_9258,Cork (Kent),BUS588,1,4384_7778018_Txc87FBF468-F3B2-4174-AEC6-3918C994D457,4384_718 -4367_81483,402,4384_9259,Cork (Kent),BUS588,1,4384_7778018_Txc3D4BBEB6-8C0B-4330-A493-21BB723B7B13,4384_718 -4367_81485,314,4384_926,Bray (Daly),E247,1,4384_7778018_TxcE4CC2587-F673-45DD-AFCA-2A6F96A96D64,4384_6 -4367_81483,403,4384_9260,Cork (Kent),BUS588,1,4384_7778018_TxcEDBD35C2-EB63-4DE4-91B6-A7EEE9137656,4384_718 -4367_81483,404,4384_9261,Cork (Kent),BUS588,1,4384_7778018_Txc17D994F1-EC40-49D7-98BB-A1E5122AA76B,4384_718 -4367_81483,390,4384_9262,Cork (Kent),BUS188,1,4384_7778018_Txc0CF5F38B-FAED-4401-BBDC-4908400C58EE,4384_717 -4367_81483,391,4384_9263,Cork (Kent),BUS188,1,4384_7778018_Txc3D030393-8168-4CA9-96BF-E5CE5E68C348,4384_717 -4367_81483,392,4384_9264,Cork (Kent),BUS188,1,4384_7778018_TxcE77778A1-9B6A-4CBE-B3A9-634D37247C48,4384_717 -4367_81483,393,4384_9265,Cork (Kent),BUS188,1,4384_7778018_Txc9B3EE2FE-AB1C-46F2-9D98-4796EE28FF45,4384_717 -4367_81483,394,4384_9266,Cork (Kent),BUS188,1,4384_7778018_Txc1072AEBC-0C93-45CE-9501-44412A9DAF6A,4384_717 -4367_81483,395,4384_9267,Cork (Kent),BUS188,1,4384_7778018_TxcEE1B16E9-F269-4CE8-89E1-243194816066,4384_717 -4367_81483,396,4384_9268,Cork (Kent),BUS188,1,4384_7778018_TxcB2912760-209B-410C-A745-EA402D62701F,4384_717 -4367_81483,397,4384_9269,Cork (Kent),BUS188,1,4384_7778018_TxcA587409C-A0AA-44FA-91BA-AAC3B8608267,4384_717 -4367_81483,398,4384_9270,Cork (Kent),BUS188,1,4384_7778018_Txc103E521D-0304-4C56-8C5A-B61E0D426794,4384_717 -4367_81483,399,4384_9271,Cork (Kent),BUS188,1,4384_7778018_TxcB44059A7-F56F-40DB-B6F1-3DCEA95EF581,4384_717 -4367_81483,400,4384_9272,Cork (Kent),BUS188,1,4384_7778018_TxcF18A24C6-186A-4610-912E-28A688F14A4C,4384_717 -4367_81483,401,4384_9273,Cork (Kent),BUS188,1,4384_7778018_TxcD180B9FF-1297-474A-BF09-9DE65DAB8ADF,4384_717 -4367_81483,402,4384_9274,Cork (Kent),BUS188,1,4384_7778018_TxcCAA295F1-79F0-448D-8DB4-BB72AB9108DC,4384_717 -4367_81483,403,4384_9275,Cork (Kent),BUS188,1,4384_7778018_Txc081ABE6A-9F6F-4866-BF37-09C888985F2B,4384_717 -4367_81483,404,4384_9276,Cork (Kent),BUS188,1,4384_7778018_Txc53275BD0-8DCD-4407-B3B5-5AF907CA8839,4384_717 -4367_81483,405,4384_9277,Cork (Kent),BUS588,1,4384_7778018_Txc7F12C94E-5CE5-446C-AD71-33249ECDAAFF,4384_718 -4367_81483,405,4384_9278,Cork (Kent),BUS188,1,4384_7778018_Txc89FFC6FF-D35B-42B7-8803-BEB54536F22B,4384_717 -4367_81483,337,4384_9281,Cork (Kent),P537,1,4384_7778018_Txc3DC2C694-C182-4118-A6E0-925C691ED544,4384_716 -4367_81483,278,4384_9282,Cork (Kent),P524,1,4384_7778018_TxcEED85770-3299-4928-97D9-DCFD7515D49F,4384_716 -4367_81483,344,4384_9284,Cork (Kent),P537,1,4384_7778018_TxcB44C08E8-302C-4ECC-A3A6-E62BA124C5E6,4384_716 -4367_81483,319,4384_9285,Cork (Kent),P524,1,4384_7778018_Txc5DBC9C1D-94AE-4F4C-9F01-188485E9861A,4384_716 -4367_81483,384,4384_9286,Cork (Kent),P579,1,4384_7778018_Txc908464B2-2884-4B85-BBE5-C0F190E21B6E,4384_717 -4367_81483,278,4384_9287,Cork (Kent),P574,1,4384_7778018_Txc2980760B-F54E-49F3-AD3C-79E25858424A,4384_717 -4367_81483,385,4384_9297,Cork (Kent),BUS589,1,4384_7778018_Txc56B414B0-1BC5-47FC-931A-DFE38481B79C,4384_718 -4367_81483,386,4384_9298,Cork (Kent),BUS589,1,4384_7778018_TxcFB93D88D-1960-407E-88D5-A87640985B17,4384_718 -4367_81483,387,4384_9299,Cork (Kent),BUS589,1,4384_7778018_TxcAB03819E-E214-4BDF-8262-6E91A9AD1C58,4384_718 -4367_81485,316,4384_93,Greystones,E101,1,4384_7778018_Txc6035D181-3130-4C60-ADD2-F59460807CF5,4384_2 -4367_81485,96,4384_930,Bray (Daly),E270,1,4384_7778018_Txc259F1A99-06DB-4BC7-BE52-D0FA303B3C1C,4384_24 -4367_81483,385,4384_9307,Cork (Kent),BUS189,1,4384_7778018_Txc388E0030-193A-428F-A779-0956C5A4DCAE,4384_717 -4367_81483,386,4384_9308,Cork (Kent),BUS189,1,4384_7778018_Txc07A22BEB-CC48-483E-98CF-6222167CE2EB,4384_717 -4367_81483,387,4384_9309,Cork (Kent),BUS189,1,4384_7778018_TxcF19E4CD8-991B-4945-A9EA-52A9F8FFCB98,4384_717 -4367_81485,214,4384_931,Bray (Daly),E270,1,4384_7778018_Txc618EF36F-BD45-4B4D-94FB-CC613A151AF8,4384_24 -4367_81483,406,4384_9310,Cork (Kent),P579,1,4384_7778018_Txc168B0A12-B562-4F8A-91E1-372D41F7088F,4384_717 -4367_81483,319,4384_9311,Cork (Kent),P574,1,4384_7778018_Txc169A486D-F5D6-490D-9B3D-E01543F7C2D1,4384_717 -4367_81483,389,4384_9312,Cork (Kent),BUS589,1,4384_7778018_Txc03461AC9-C40B-4005-B037-16629974DD91,4384_718 -4367_81483,389,4384_9313,Cork (Kent),BUS189,1,4384_7778018_Txc1944F80A-CE62-4BDF-8558-019A1F5861DD,4384_717 -4367_81483,390,4384_9314,Cork (Kent),BUS589,1,4384_7778018_TxcC156474B-C459-42AD-B82D-3BD7A8BCD7B9,4384_718 -4367_81483,391,4384_9315,Cork (Kent),BUS589,1,4384_7778018_TxcFEC54DC0-9DF0-4182-8496-8A6EC738B692,4384_718 -4367_81483,392,4384_9316,Cork (Kent),BUS589,1,4384_7778018_Txc5DEDB6C1-E454-48C3-9810-AAF63224346F,4384_718 -4367_81483,393,4384_9317,Cork (Kent),BUS589,1,4384_7778018_TxcA13599EE-8A89-4035-B756-A5E0716148D4,4384_718 -4367_81483,394,4384_9318,Cork (Kent),BUS589,1,4384_7778018_TxcADD61990-01D5-43E4-8BD5-BFB8CB9CD90A,4384_718 -4367_81483,395,4384_9319,Cork (Kent),BUS589,1,4384_7778018_TxcB00719D0-5E68-49A3-9EDB-6EF0AAF8FBC3,4384_718 -4367_81485,326,4384_932,Bray (Daly),E247,1,4384_7778018_Txc173D8B56-1B77-4443-AA17-42FEBEF62EAA,4384_6 -4367_81483,396,4384_9320,Cork (Kent),BUS589,1,4384_7778018_Txc67BA1F43-1521-4B7A-A25C-FE265CBA092D,4384_718 -4367_81483,397,4384_9321,Cork (Kent),BUS589,1,4384_7778018_Txc947AFE23-DE99-41C3-81BC-C6F9C41C6394,4384_718 -4367_81483,398,4384_9322,Cork (Kent),BUS589,1,4384_7778018_Txc20823BA8-6A67-4F30-A24E-7730608FCC71,4384_718 -4367_81483,399,4384_9323,Cork (Kent),BUS589,1,4384_7778018_Txc5F731DB6-951E-41E5-BAAB-CAE7FCED158B,4384_718 -4367_81483,400,4384_9324,Cork (Kent),BUS589,1,4384_7778018_Txc70009898-21F0-4FE2-BD1F-65C441461EDB,4384_718 -4367_81483,401,4384_9325,Cork (Kent),BUS589,1,4384_7778018_Txc0D991906-F256-4786-9D0E-E18982D53B33,4384_718 -4367_81483,402,4384_9326,Cork (Kent),BUS589,1,4384_7778018_Txc11862586-B1E3-4E42-9D32-F24BF75C2C37,4384_718 -4367_81483,403,4384_9327,Cork (Kent),BUS589,1,4384_7778018_Txc82E1DC2B-B825-4038-BAF7-206D367D4B21,4384_718 -4367_81483,404,4384_9328,Cork (Kent),BUS589,1,4384_7778018_TxcB53418E8-3C32-47E4-94A5-A3CF490F1A90,4384_718 -4367_81483,390,4384_9329,Cork (Kent),BUS189,1,4384_7778018_Txc30CA9E12-8A6F-4540-B010-EC8784E3A9A3,4384_717 -4367_81485,211,4384_933,Bray (Daly),E232,1,4384_7778018_Txc310A1C89-F7E1-4003-AB74-E9F0B914ED36,4384_6 -4367_81483,391,4384_9330,Cork (Kent),BUS189,1,4384_7778018_Txc71CB9C6F-5ADB-4CC6-9F9E-D009A3E0D878,4384_717 -4367_81483,392,4384_9331,Cork (Kent),BUS189,1,4384_7778018_Txc05AD4587-BD32-4114-8110-DC32D145C983,4384_717 -4367_81483,393,4384_9332,Cork (Kent),BUS189,1,4384_7778018_Txc35FDB08B-6713-4923-AED1-DCB4A724FEA6,4384_717 -4367_81483,394,4384_9333,Cork (Kent),BUS189,1,4384_7778018_TxcCAAE27E5-2613-45F7-8945-6148DCD79F7B,4384_717 -4367_81483,395,4384_9334,Cork (Kent),BUS189,1,4384_7778018_Txc75363A64-B76E-4A95-88D2-107F56CBB18C,4384_717 -4367_81483,396,4384_9335,Cork (Kent),BUS189,1,4384_7778018_Txc2EF79171-8558-4C10-8817-E24C473E3381,4384_717 -4367_81483,397,4384_9336,Cork (Kent),BUS189,1,4384_7778018_Txc0A5A512D-C697-493D-8030-EC908FD5BA1C,4384_717 -4367_81483,398,4384_9337,Cork (Kent),BUS189,1,4384_7778018_TxcCA443556-B748-49E4-97E9-F0BE173C9E86,4384_717 -4367_81483,399,4384_9338,Cork (Kent),BUS189,1,4384_7778018_Txc2B165BFB-892C-40E5-85BE-984D88C4416D,4384_717 -4367_81483,400,4384_9339,Cork (Kent),BUS189,1,4384_7778018_TxcA96C4E75-D722-471A-ACC0-109BB956CBB6,4384_717 -4367_81483,401,4384_9340,Cork (Kent),BUS189,1,4384_7778018_TxcB76EDD0D-8F88-45F6-8F0D-4CE31B4A449A,4384_717 -4367_81483,402,4384_9341,Cork (Kent),BUS189,1,4384_7778018_Txc525C2A55-CC5F-40F7-808C-7C9B50B42995,4384_717 -4367_81483,403,4384_9342,Cork (Kent),BUS189,1,4384_7778018_TxcEE277822-46F9-4E88-9573-E9C20F4DDD27,4384_717 -4367_81483,404,4384_9343,Cork (Kent),BUS189,1,4384_7778018_Txc9BBD4D7A-C464-48D1-91DB-FA89C787E5EB,4384_717 -4367_81483,405,4384_9344,Cork (Kent),BUS589,1,4384_7778018_Txc1FE1C332-5ADA-4035-8779-08C7EE238819,4384_718 -4367_81483,405,4384_9345,Cork (Kent),BUS189,1,4384_7778018_Txc3EFB8855-6934-4060-8ECE-CE5ED2A8396F,4384_717 -4367_81483,96,4384_9348,Mallow,BUS538,1,4384_7778018_Txc8DFF086A-2CC7-4C5F-8989-E7D40852F751,4384_719 -4367_81483,337,4384_9349,Cork (Kent),P539,1,4384_7778018_Txc0133F8D5-EDB0-4440-9A61-CAB08E7AB200,4384_716 -4367_81483,278,4384_9350,Cork (Kent),P525,1,4384_7778018_TxcC9E65EE5-F591-4DCE-86A1-A168D93F2997,4384_716 -4367_81483,344,4384_9352,Cork (Kent),P539,1,4384_7778018_Txc62BDA24A-B432-42BC-8E2B-627EF84D2307,4384_716 -4367_81483,319,4384_9353,Cork (Kent),P525,1,4384_7778018_Txc01B7B447-8D54-4F82-B975-CAF806E34F97,4384_716 -4367_81483,96,4384_9356,Mallow,BUS540,1,4384_7778018_TxcB9AFC26A-61E9-4FE5-94CF-006D8B499381,4384_720 -4367_81483,384,4384_9357,Cork (Kent),P580,1,4384_7778018_Txc138074EC-8CB0-4928-B3F5-EDEDB4202A26,4384_717 -4367_81483,278,4384_9358,Cork (Kent),P575,1,4384_7778018_TxcD2BDB61F-EA86-49F7-B8D8-04DB877207CD,4384_717 -4367_81485,96,4384_936,Bray (Daly),E232,1,4384_7778018_Txc129424DE-0628-4DF7-A163-863A17F43024,4384_32 -4367_81483,385,4384_9368,Cork (Kent),BUS590,1,4384_7778018_Txc15309E72-2DDB-4F78-9235-F17BB7D573C8,4384_718 -4367_81483,386,4384_9369,Cork (Kent),BUS590,1,4384_7778018_TxcCBBCD920-E56E-45CF-B427-A8D3D8AA7EA4,4384_718 -4367_81485,214,4384_937,Bray (Daly),E232,1,4384_7778018_Txc35961DBE-8DB1-465C-B11B-CFD19BED5A70,4384_32 -4367_81483,387,4384_9370,Cork (Kent),BUS590,1,4384_7778018_TxcA72CA3F1-48E1-4A26-94AB-532F81A33FE0,4384_718 -4367_81483,385,4384_9378,Cork (Kent),BUS190,1,4384_7778018_TxcB8E2D670-B112-462C-A1A9-3556D3FAD20F,4384_717 -4367_81483,386,4384_9379,Cork (Kent),BUS190,1,4384_7778018_Txc29916F4A-83A7-4690-AC9F-D820E258916E,4384_717 -4367_81485,316,4384_938,Bray (Daly),E232,1,4384_7778018_Txc919E43B6-4532-4084-AD83-9B83DC52EAA9,4384_6 -4367_81483,387,4384_9380,Cork (Kent),BUS190,1,4384_7778018_TxcC323197C-ADF6-462F-A3B4-31393EDBAB22,4384_717 -4367_81483,406,4384_9381,Cork (Kent),P580,1,4384_7778018_TxcBDF984FC-F27A-4888-9378-617B280E135B,4384_717 -4367_81483,319,4384_9382,Cork (Kent),P575,1,4384_7778018_Txc045C5A3C-0270-4BB9-A6B2-53E5D7DB8FD1,4384_717 -4367_81483,389,4384_9383,Cork (Kent),BUS590,1,4384_7778018_Txc9D25B053-EF83-4DA5-B8C7-F74722D858A3,4384_718 -4367_81483,389,4384_9384,Cork (Kent),BUS190,1,4384_7778018_Txc357D5DF0-807E-48C5-A4E5-E7D97907DFF3,4384_717 -4367_81483,390,4384_9385,Cork (Kent),BUS590,1,4384_7778018_TxcD64853CC-39A7-4A71-9FDA-E9C4CF599E71,4384_718 -4367_81483,391,4384_9386,Cork (Kent),BUS590,1,4384_7778018_TxcCB9AEB0D-363A-4CEE-81E0-C72E9A0FAC18,4384_718 -4367_81483,392,4384_9387,Cork (Kent),BUS590,1,4384_7778018_Txc39A70BEB-D614-4DB1-B845-D6590B2E5DB3,4384_718 -4367_81483,393,4384_9388,Cork (Kent),BUS590,1,4384_7778018_Txc2C8310C0-E674-4589-B619-8F9A250EB1A6,4384_718 -4367_81483,394,4384_9389,Cork (Kent),BUS590,1,4384_7778018_Txc53F04C97-96FC-4C51-BFA2-D0D458C4F3C1,4384_718 -4367_81485,138,4384_939,Bray (Daly),E232,1,4384_7778018_Txc037EC195-153B-4809-AAFF-74F58A744AD2,4384_6 -4367_81483,395,4384_9390,Cork (Kent),BUS590,1,4384_7778018_TxcDD5BD57E-8A20-4617-8E0A-13C6A583A62D,4384_718 -4367_81483,396,4384_9391,Cork (Kent),BUS590,1,4384_7778018_TxcC7D85012-2BDB-43F5-8D9E-4862AFDDFB18,4384_718 -4367_81483,397,4384_9392,Cork (Kent),BUS590,1,4384_7778018_Txc31E349D4-F4DB-45A9-94D8-D34CB8A1E4DC,4384_718 -4367_81483,398,4384_9393,Cork (Kent),BUS590,1,4384_7778018_Txc1EB60D57-B6DD-434D-8351-55AB4E02ED70,4384_718 -4367_81483,399,4384_9394,Cork (Kent),BUS590,1,4384_7778018_TxcF223A270-3D40-470B-A22C-D0C63DB13808,4384_718 -4367_81483,400,4384_9395,Cork (Kent),BUS590,1,4384_7778018_TxcA3FBA497-B961-4A29-99FC-43E45C1FA992,4384_718 -4367_81483,401,4384_9396,Cork (Kent),BUS590,1,4384_7778018_Txc1B79C439-778C-47A2-98F3-6DB130E918ED,4384_718 -4367_81483,402,4384_9397,Cork (Kent),BUS590,1,4384_7778018_TxcB49EE693-D076-4468-82F0-7079A0457559,4384_718 -4367_81483,403,4384_9398,Cork (Kent),BUS590,1,4384_7778018_Txc856B7ADB-B081-4F6B-890F-9490CA5EC080,4384_718 -4367_81483,404,4384_9399,Cork (Kent),BUS590,1,4384_7778018_Txc11E8E8FB-ADAF-405E-9C65-3B3AE7B644A2,4384_718 -4367_81485,138,4384_94,Greystones,E101,1,4384_7778018_TxcDE21469A-99F7-4292-A3BB-C02E01E1D88C,4384_2 -4367_81485,317,4384_940,Bray (Daly),E232,1,4384_7778018_Txc6FB1A1D4-A311-482A-BDF9-5EC3BB651499,4384_6 -4367_81483,390,4384_9400,Cork (Kent),BUS190,1,4384_7778018_Txc07BCD2CF-8014-4721-9990-1119F3AF1F17,4384_717 -4367_81483,391,4384_9401,Cork (Kent),BUS190,1,4384_7778018_Txc61CED637-32D8-4AD5-96C8-53CE43BACAAA,4384_717 -4367_81483,392,4384_9402,Cork (Kent),BUS190,1,4384_7778018_Txc3FDCCC9A-EF41-4DE4-8930-187CD909E65F,4384_717 -4367_81483,393,4384_9403,Cork (Kent),BUS190,1,4384_7778018_TxcAB8814D7-6BF3-43BE-A510-1623AB8B65E6,4384_717 -4367_81483,394,4384_9404,Cork (Kent),BUS190,1,4384_7778018_TxcBE83D66B-085C-4DB0-8DE9-8DDFF8591C29,4384_717 -4367_81483,395,4384_9405,Cork (Kent),BUS190,1,4384_7778018_Txc6973B523-B28B-434D-A6D5-B58EEA2EDF6C,4384_717 -4367_81483,396,4384_9406,Cork (Kent),BUS190,1,4384_7778018_TxcB1E96A74-24B2-4661-A3BD-414193F107A4,4384_717 -4367_81483,397,4384_9407,Cork (Kent),BUS190,1,4384_7778018_Txc09D92723-6BEE-4C3A-A3B2-96C92F031CF6,4384_717 -4367_81483,398,4384_9408,Cork (Kent),BUS190,1,4384_7778018_Txc1180BE87-AEC1-4F03-83D6-3B4D4F4922A7,4384_717 -4367_81483,399,4384_9409,Cork (Kent),BUS190,1,4384_7778018_Txc5F28B3D9-19EC-46E5-AE86-51FC4E3385E3,4384_717 -4367_81485,318,4384_941,Bray (Daly),E232,1,4384_7778018_Txc85F714BB-0D9B-41FD-AA35-E49EACCFB676,4384_6 -4367_81483,400,4384_9410,Cork (Kent),BUS190,1,4384_7778018_Txc3B630E5F-B99B-4984-B41C-9C5369AC3034,4384_717 -4367_81483,401,4384_9411,Cork (Kent),BUS190,1,4384_7778018_Txc3F4A59B8-DC84-4360-9CBA-2A01F13DCBA1,4384_717 -4367_81483,402,4384_9412,Cork (Kent),BUS190,1,4384_7778018_TxcF026EAD0-7A48-4DD4-A3CB-80FDDD559013,4384_717 -4367_81483,403,4384_9413,Cork (Kent),BUS190,1,4384_7778018_TxcAAA23EB5-3844-4397-8427-14EA5C3C7743,4384_717 -4367_81483,404,4384_9414,Cork (Kent),BUS190,1,4384_7778018_TxcB521B3C5-D657-42C6-8134-61990CEF6A83,4384_717 -4367_81483,405,4384_9415,Cork (Kent),BUS590,1,4384_7778018_Txc0191D19D-AD20-441E-8B6C-3F08B4C62619,4384_718 -4367_81483,405,4384_9416,Cork (Kent),BUS190,1,4384_7778018_Txc0CF6FC3F-C888-4886-B23C-48F7DAAE8D31,4384_717 -4367_81483,337,4384_9417,Cork (Kent),P541,1,4384_7778018_TxcA3FF0644-369C-4C8E-ACBB-88CA4E98C9F4,4384_716 -4367_81483,278,4384_9418,Cork (Kent),P526,1,4384_7778018_TxcB19716EB-0BD0-485C-BBF4-A1863FCD34C2,4384_716 -4367_81483,344,4384_9419,Cork (Kent),P541,1,4384_7778018_TxcDF2CDD41-A1A3-4A40-9A45-B8716192731D,4384_716 -4367_81485,314,4384_942,Greystones,E124,1,4384_7778018_Txc1F2302A9-4AD9-4051-9B07-EB1F046553FE,4384_1 -4367_81483,319,4384_9420,Cork (Kent),P526,1,4384_7778018_Txc98BE8ACA-419F-4705-8F1F-6C30C6BFF874,4384_716 -4367_81483,314,4384_9433,Cobh,D501,0,4384_7778018_TxcB9872AEA-0E8A-4FE7-BB60-3D1EA6A4FD04,4384_721 -4367_81483,315,4384_9434,Cobh,D501,0,4384_7778018_TxcA15D18F0-9EDC-4C70-B38E-F1D101378595,4384_721 -4367_81483,337,4384_9435,Midleton,D550,0,4384_7778018_Txc587E2058-9C21-4D02-BA6A-3C378D9CF4D4,4384_723 -4367_81483,349,4384_9436,Midleton,D550,0,4384_7778018_TxcDF455CCA-3200-43B9-802F-63CB31A2C296,4384_723 -4367_81483,23,4384_9437,Cobh,D502,0,4384_7778018_Txc6976A9D6-416F-4729-B4F0-0F153D9290E6,4384_721 -4367_81483,316,4384_9438,Cobh,D502,0,4384_7778018_Txc247D0095-1BAB-4CAF-9E0B-948B3DE27B28,4384_721 -4367_81483,138,4384_9439,Cobh,D502,0,4384_7778018_Txc52976B1A-8450-4E37-8BFD-6D9D880B4A31,4384_721 -4367_81483,318,4384_9440,Cobh,D502,0,4384_7778018_TxcAFC5ED2C-3ED4-4515-AFD6-61499F239B26,4384_721 -4367_81483,337,4384_9441,Midleton,D551,0,4384_7778018_Txc203F08F6-0D74-479A-9975-FE8C142F892B,4384_723 -4367_81483,349,4384_9442,Midleton,D551,0,4384_7778018_TxcC13A803C-E1F6-4C36-9C3F-F72F738E6C52,4384_723 -4367_81483,314,4384_9443,Cobh,D503,0,4384_7778018_Txc017BA3C0-9BA9-4039-AA08-C9AB9F42A8AE,4384_721 -4367_81483,315,4384_9444,Cobh,D503,0,4384_7778018_TxcB81EB695-8973-4AEB-9145-C3123D06F8A9,4384_721 -4367_81483,314,4384_9445,Midleton,D552,0,4384_7778018_TxcACE812DA-FFD6-4824-A027-1E8A5527ABD0,4384_723 -4367_81483,315,4384_9446,Midleton,D552,0,4384_7778018_Txc16F6F224-9D19-4FD3-B56F-41CCF7B2F05D,4384_723 -4367_81483,337,4384_9447,Cork (Kent),D505,0,4384_7778018_TxcCF48458B-85A3-404E-A182-C7F818FA1E56,4384_722 -4367_81483,341,4384_9449,Cork (Kent),D505,0,4384_7778018_Txc61EF7838-A32A-48C4-9343-99CB20D0AE3F,4384_722 -4367_81485,315,4384_945,Greystones,E124,1,4384_7778018_Txc0362CEEE-C353-4181-96B6-36BD4F578193,4384_1 -4367_81483,337,4384_9450,Cobh,D504,0,4384_7778018_Txc24564640-D57C-407F-B802-E93FA333FF87,4384_721 -4367_81483,341,4384_9451,Cobh,D504,0,4384_7778018_TxcE54EF618-C9A7-4162-8E62-C0A9DE98CBCD,4384_721 -4367_81483,337,4384_9452,Midleton,D553,0,4384_7778018_TxcF64507C1-56BB-4C39-A272-2A0D01E34A66,4384_723 -4367_81483,341,4384_9453,Midleton,D553,0,4384_7778018_TxcE2F12EE3-7441-4927-90C2-5F73E78927FF,4384_723 -4367_81483,373,4384_9454,Cork (Kent),D548,0,4384_7778018_Txc285B26F5-B412-43C6-9E67-3C370C244728,4384_722 -4367_81483,23,4384_9455,Cork (Kent),D548,0,4384_7778018_Txc62A4AF21-645B-4719-A867-BBE4D1D89CFD,4384_722 -4367_81483,407,4384_9457,Cork (Kent),D548,0,4384_7778018_TxcF96FC0FF-3698-449F-B531-A74CA7ECC527,4384_722 -4367_81483,316,4384_9458,Cork (Kent),D548,0,4384_7778018_TxcDC4D6A64-2D0A-491D-856C-1E24CD754D5C,4384_722 -4367_81483,337,4384_9459,Cobh,D506,0,4384_7778018_TxcD55F7E25-4939-4B58-AB20-69A8A98AE3FF,4384_721 -4367_81485,278,4384_946,Bray (Daly),E225,1,4384_7778018_Txc5D064E7D-00B6-4ACB-84A9-A794D7F8CEF9,4384_6 -4367_81483,341,4384_9460,Cobh,D506,0,4384_7778018_Txc964EC99D-7E0F-4C5E-A9DE-8998A4153FD9,4384_721 -4367_81483,314,4384_9461,Midleton,D554,0,4384_7778018_Txc6A3D0DB5-0C30-4B37-8874-6F91FABFE8CF,4384_723 -4367_81483,315,4384_9462,Midleton,D554,0,4384_7778018_Txc7DBD5F57-5C62-4299-8921-14006A2DFDFB,4384_723 -4367_81483,314,4384_9463,Cork (Kent),D508,0,4384_7778018_Txc2C17D6F4-362A-4861-8484-86107F98DCFF,4384_722 -4367_81483,339,4384_9464,Cork (Kent),D508,0,4384_7778018_TxcFD02E6EC-2852-4D01-8915-060B56CC7F18,4384_722 -4367_81483,337,4384_9465,Cobh,D507,0,4384_7778018_Txc167B4A24-6698-4FD4-B471-A9B0D9AF5EA3,4384_721 -4367_81483,278,4384_9466,Cobh,D501,0,4384_7778018_Txc0FA092FE-824B-4B0D-A538-415F1F5320B7,4384_721 -4367_81483,338,4384_9468,Cobh,D507,0,4384_7778018_Txc0EE73E65-5C99-445E-BB31-2797F152F7AC,4384_721 -4367_81483,319,4384_9469,Cobh,D501,0,4384_7778018_Txc9F2252D1-02EB-473A-8376-392A2DF56D48,4384_721 -4367_81483,337,4384_9470,Midleton,D555,0,4384_7778018_Txc6DBAA65F-62F2-4A42-A681-00270C8105AF,4384_723 -4367_81483,278,4384_9471,Midleton,D551,0,4384_7778018_Txc9EF083AC-2608-49BB-8ACC-C29D4C555027,4384_723 -4367_81483,338,4384_9473,Midleton,D555,0,4384_7778018_Txc53A42904-5338-4F28-9DC3-09631C101860,4384_723 -4367_81483,319,4384_9474,Midleton,D551,0,4384_7778018_Txc0B04E0D6-CBA7-4765-A41C-D998C6129D6F,4384_723 -4367_81483,337,4384_9475,Cobh,D509,0,4384_7778018_TxcECF8C97A-592B-4615-8E2B-F1C5DE5C42FE,4384_721 -4367_81483,337,4384_9476,Cork (Kent),D510,0,4384_7778018_TxcF55E8F50-5AA5-45B2-AC8A-D7C79528FAC6,4384_722 -4367_81483,341,4384_9478,Cobh,D509,0,4384_7778018_Txc9EF9935C-03E9-4D90-8B1A-4731DEABBA42,4384_721 -4367_81483,341,4384_9479,Cork (Kent),D510,0,4384_7778018_Txc7AC82FF9-93A2-4430-BE03-674A8889ADF0,4384_722 -4367_81483,314,4384_9480,Midleton,D556,0,4384_7778018_Txc173F4F71-8695-487E-99E3-292CEDE66A03,4384_723 -4367_81483,315,4384_9481,Midleton,D556,0,4384_7778018_TxcECB405C5-1E7A-439D-A5BD-B37F802F105E,4384_723 -4367_81483,337,4384_9483,Cork (Kent),D512,0,4384_7778018_Txc904D589E-FA92-46E8-BCCA-ABDF16CAC4ED,4384_722 -4367_81483,251,4384_9485,Cork (Kent),BUS301,0,4384_7778018_Txc88DA6C09-F6FE-4546-A34E-7271647EE45F,4384_727 -4367_81483,341,4384_9486,Cork (Kent),D512,0,4384_7778018_Txc60E7B80D-297F-4164-860C-0EB97A4B9314,4384_722 -4367_81483,337,4384_9487,Cobh,D511,0,4384_7778018_Txc9DF1E3CF-20E4-45EE-B56F-125A165AEC0A,4384_721 -4367_81483,278,4384_9488,Cobh,D502,0,4384_7778018_TxcE76D8C93-CC86-454A-B24B-DD71DC9E4723,4384_721 -4367_81483,338,4384_9490,Cobh,D511,0,4384_7778018_Txc890187F3-2AD5-423E-824A-AACAF5A4D8F2,4384_721 -4367_81483,319,4384_9491,Cobh,D502,0,4384_7778018_TxcA2F74024-BBF5-4E65-BEDF-BD791DA1AA23,4384_721 -4367_81483,337,4384_9492,Midleton,D557,0,4384_7778018_Txc2E0FF2DB-BB0B-45BD-A3E7-2DC34177B22C,4384_723 -4367_81483,278,4384_9493,Midleton,D552,0,4384_7778018_TxcC8A6E1BB-B8B8-4342-AA28-CC8CE6C8007D,4384_723 -4367_81483,338,4384_9495,Midleton,D557,0,4384_7778018_Txc515F24FE-F068-4933-BACF-B5D5D38D7BB7,4384_723 -4367_81483,319,4384_9496,Midleton,D552,0,4384_7778018_Txc2C8F767A-8DA6-483E-ACDB-9DA83246AC40,4384_723 -4367_81483,337,4384_9497,Cobh,D513,0,4384_7778018_Txc3F909BEF-7799-4639-B6F0-31681EEFDF1F,4384_721 -4367_81483,341,4384_9498,Cobh,D513,0,4384_7778018_Txc8B76BCDF-D2F6-45A1-ACA5-7F07094F55A3,4384_721 -4367_81485,317,4384_95,Greystones,E101,1,4384_7778018_Txc5924304C-2057-49DB-97AE-E1200F345870,4384_2 -4367_81483,314,4384_9500,Midleton,D558,0,4384_7778018_TxcBFE48760-2439-4911-9634-D2EEE4C13B89,4384_723 -4367_81483,315,4384_9501,Midleton,D558,0,4384_7778018_TxcD95ABEE3-DFF8-4115-8EE3-D0030E0B59D3,4384_723 -4367_81483,337,4384_9502,Cobh,D514,0,4384_7778018_Txc831E6220-ABD6-483F-B19B-A43DE26298A5,4384_721 -4367_81483,278,4384_9503,Cobh,D503,0,4384_7778018_TxcAAAA7DA5-9165-4CB7-9D96-2AB1809EA17E,4384_721 -4367_81483,338,4384_9504,Cobh,D514,0,4384_7778018_Txc7FA56D90-DCB7-4CE6-B381-58D181772FF6,4384_721 -4367_81483,319,4384_9505,Cobh,D503,0,4384_7778018_Txc88B6A292-9893-4D56-A0C4-CB3BC2C130F9,4384_721 -4367_81483,337,4384_9506,Midleton,D559,0,4384_7778018_Txc1BAB9F61-261A-4476-821A-B7731D280AE7,4384_723 -4367_81483,278,4384_9507,Midleton,D553,0,4384_7778018_TxcE1BD1ECF-5B07-477F-A0C0-3CBDBC57D380,4384_723 -4367_81483,338,4384_9508,Midleton,D559,0,4384_7778018_TxcE8C8E5CC-32BB-4F41-A3C8-F8710C214644,4384_723 -4367_81483,319,4384_9509,Midleton,D553,0,4384_7778018_TxcD9C49699-92A3-4075-A372-762D9E19BC85,4384_723 -4367_81485,319,4384_951,Bray (Daly),E225,1,4384_7778018_Txc2D2747EA-1A9B-49BA-BDD3-5372AE5366B0,4384_6 -4367_81483,337,4384_9510,Cobh,D515,0,4384_7778018_Txc6F1A3BD9-D6D0-4788-8479-CD101DD414D1,4384_721 -4367_81483,341,4384_9511,Cobh,D515,0,4384_7778018_Txc976670CD-971B-487A-9E8E-D2B4438A796C,4384_721 -4367_81483,314,4384_9512,Midleton,D560,0,4384_7778018_TxcB0271FB1-95AC-4EAA-BDFE-587E61E66AB5,4384_723 -4367_81483,315,4384_9513,Midleton,D560,0,4384_7778018_Txc0D4CB8C1-E532-46B8-9D72-61A2C7D600A4,4384_723 -4367_81483,278,4384_9514,Cork (Kent),D540,0,4384_7778018_Txc534B1E20-FABC-4BB9-AA71-B14948856273,4384_722 -4367_81483,319,4384_9517,Cork (Kent),D540,0,4384_7778018_Txc2EBE8C17-612C-4185-BA6B-2BB7560FF47F,4384_722 -4367_81483,337,4384_9518,Cobh,D516,0,4384_7778018_Txc3E6D4AA9-F23E-470B-98B8-AC30566C0365,4384_721 -4367_81483,278,4384_9519,Cobh,D505,0,4384_7778018_TxcC6E17B98-4FBA-4C0D-A7EA-F9F1B1B9F165,4384_721 -4367_81485,271,4384_952,Bray (Daly),E225,1,4384_7778018_Txc5832C7F7-F4B2-4E31-B86F-DE6F8A3CD118,4384_6 -4367_81483,338,4384_9521,Cobh,D516,0,4384_7778018_Txc6E4C9682-6C66-4E2A-B84C-5168D7A7FB71,4384_721 -4367_81483,319,4384_9522,Cobh,D505,0,4384_7778018_TxcEFC0BC72-310A-4930-B49E-817E32612846,4384_721 -4367_81483,337,4384_9523,Midleton,D561,0,4384_7778018_Txc6B6B54A6-CCE8-42A6-9355-6E90CED369B5,4384_723 -4367_81483,278,4384_9524,Midleton,D555,0,4384_7778018_TxcCBEE9D9A-40DF-4C73-983E-2B58837B79BD,4384_723 -4367_81483,338,4384_9526,Midleton,D561,0,4384_7778018_TxcA059A9D7-EB60-493C-865D-CDA9BD26136B,4384_723 -4367_81483,319,4384_9527,Midleton,D555,0,4384_7778018_Txc84D92CE4-998F-4E43-A5AC-39F9D544A0E7,4384_723 -4367_81483,337,4384_9528,Cobh,D517,0,4384_7778018_Txc84C4811C-EF3D-4E1A-9293-B7FD990B20EC,4384_721 -4367_81483,341,4384_9529,Cobh,D517,0,4384_7778018_TxcA54E6754-0B0B-4A58-AEAF-098F4FBC8A06,4384_721 -4367_81485,320,4384_953,Bray (Daly),E225,1,4384_7778018_Txc35755644-5670-4556-AA97-4425D68BC785,4384_6 -4367_81483,314,4384_9530,Midleton,D562,0,4384_7778018_Txc20ECD5ED-F204-4DFF-90AB-3651360BD350,4384_723 -4367_81483,315,4384_9532,Midleton,D562,0,4384_7778018_TxcF8E847DC-2347-42EF-9C96-E097984F844F,4384_723 -4367_81483,337,4384_9533,Cobh,D518,0,4384_7778018_TxcB097C68A-52AF-40B0-B77D-C551C318BB43,4384_721 -4367_81483,278,4384_9534,Cobh,D507,0,4384_7778018_TxcE4BC3AED-9CD3-4BAE-BA81-E3657B3DE488,4384_721 -4367_81483,338,4384_9536,Cobh,D518,0,4384_7778018_TxcE1E4BD81-02A5-4C6E-8379-87DE6C3DBE98,4384_721 -4367_81483,319,4384_9537,Cobh,D507,0,4384_7778018_Txc62CFA33D-BC7F-44EC-A7EB-A99953356382,4384_721 -4367_81483,337,4384_9539,Midleton,D563,0,4384_7778018_TxcC01754EE-8FC4-4989-A551-DCBB57D52718,4384_723 -4367_81483,278,4384_9540,Midleton,D557,0,4384_7778018_Txc242C72E8-C5CA-4B30-A9E2-E36EB05CC045,4384_723 -4367_81483,338,4384_9542,Midleton,D563,0,4384_7778018_TxcAC5E0F91-89AF-474E-A3E5-77B385391FD9,4384_723 -4367_81483,319,4384_9543,Midleton,D557,0,4384_7778018_Txc8F5142A6-44E9-4BE3-A19E-EBEC9B50CD8F,4384_723 -4367_81483,337,4384_9544,Cobh,D519,0,4384_7778018_Txc7D73B8C1-7C97-4075-A80B-0E112B02FF77,4384_721 -4367_81483,341,4384_9545,Cobh,D519,0,4384_7778018_Txc58E769B8-5D11-45CE-9356-D46D17C016E9,4384_721 -4367_81483,314,4384_9546,Midleton,D564,0,4384_7778018_Txc04DDEC39-8EA0-449C-A407-E41FD93300D6,4384_723 -4367_81483,315,4384_9547,Midleton,D564,0,4384_7778018_Txc5A5BE1F5-5F11-4CBF-B5A5-FAF090B75270,4384_723 -4367_81483,337,4384_9548,Cobh,D520,0,4384_7778018_Txc589296A2-0FB4-4BE5-AAA4-2518467B97E3,4384_721 -4367_81483,278,4384_9549,Cobh,D509,0,4384_7778018_TxcE5FF789E-DD95-4B58-9AEF-0A1CD57CA2D2,4384_721 -4367_81485,96,4384_955,Greystones,E160,1,4384_7778018_Txc8BB19494-6AAA-4B7D-B28B-65F77BD8A814,4384_25 -4367_81483,338,4384_9551,Cobh,D520,0,4384_7778018_Txc8437AC84-C8F6-4F1F-BFE9-B76D985E7ED2,4384_721 -4367_81483,319,4384_9552,Cobh,D509,0,4384_7778018_TxcF19C1AE1-DC81-4D22-889B-A578224DDCB0,4384_721 -4367_81483,337,4384_9553,Midleton,D565,0,4384_7778018_Txc254709E6-F56D-4378-9948-478C07FE2881,4384_723 -4367_81483,278,4384_9554,Midleton,D559,0,4384_7778018_Txc4CBE4A2C-D7F1-43A5-9D0F-C8D2F4F0D1C3,4384_723 -4367_81483,338,4384_9555,Midleton,D565,0,4384_7778018_Txc00F0619F-6970-44D7-9AFC-B4FFD77AEB00,4384_723 -4367_81483,319,4384_9556,Midleton,D559,0,4384_7778018_TxcE870BDF7-B209-4E8B-8F3F-125356E98B7B,4384_723 -4367_81483,278,4384_9557,Cork (Kent),D541,0,4384_7778018_TxcE5FAEBAA-F45B-4A1D-8C7B-3D065B671A8B,4384_722 -4367_81485,214,4384_956,Greystones,E160,1,4384_7778018_TxcCE292E1B-BA1D-41E3-81E2-A0486F5D1013,4384_25 -4367_81483,319,4384_9560,Cork (Kent),D541,0,4384_7778018_TxcAF8BEAF8-99A2-4971-A15E-579E91C3711C,4384_722 -4367_81483,337,4384_9561,Cobh,D521,0,4384_7778018_Txc78FA3B58-5983-4D1D-8910-3035C376286A,4384_721 -4367_81483,341,4384_9562,Cobh,D521,0,4384_7778018_Txc6CB1D006-E60A-407E-A345-5B646347E46B,4384_721 -4367_81483,314,4384_9563,Midleton,D566,0,4384_7778018_Txc0CF7992A-5FF4-40C3-95CA-4B1100FFA048,4384_723 -4367_81483,315,4384_9565,Midleton,D566,0,4384_7778018_Txc69B28140-C532-4A68-908A-4F8029E369F2,4384_723 -4367_81483,337,4384_9566,Cobh,D522,0,4384_7778018_Txc6AEB885F-6587-4C58-B858-3EFA5C8B2AB4,4384_721 -4367_81483,278,4384_9567,Cobh,D511,0,4384_7778018_TxcBBC30C3A-A56D-487D-AD40-307549152A71,4384_721 -4367_81483,338,4384_9568,Cobh,D522,0,4384_7778018_TxcC9703E8A-B6F1-4C4A-A137-EF5049D4372B,4384_721 -4367_81483,319,4384_9569,Cobh,D511,0,4384_7778018_TxcCCDE9E54-4308-452B-9398-F981D112756C,4384_721 -4367_81483,337,4384_9571,Midleton,D567,0,4384_7778018_Txc9F4774E2-8CDF-4B01-9171-53C387A2B1BA,4384_723 -4367_81483,278,4384_9572,Midleton,D561,0,4384_7778018_Txc2FBCFA45-5024-4F93-8C77-0E9A4FFB6319,4384_723 -4367_81483,338,4384_9574,Midleton,D567,0,4384_7778018_TxcFF5EF671-C746-4CF7-86BA-E6376906F0DF,4384_723 -4367_81483,319,4384_9575,Midleton,D561,0,4384_7778018_Txc5F99F9E4-30AE-450D-9A9D-9FE55464E3D7,4384_723 -4367_81483,337,4384_9576,Cobh,D523,0,4384_7778018_Txc4B5F03DE-0105-47EA-9EB1-C0DEC36AEB26,4384_721 -4367_81483,341,4384_9578,Cobh,D523,0,4384_7778018_Txc9D064921-D4B2-4D45-8902-11C2AF13A2A3,4384_721 -4367_81483,314,4384_9579,Midleton,D568,0,4384_7778018_Txc7557D049-FB4C-43F4-A343-C01E085D7BEF,4384_723 -4367_81483,315,4384_9580,Midleton,D568,0,4384_7778018_TxcE9A35F1C-02E8-4793-BF12-67C9F54E2153,4384_723 -4367_81483,337,4384_9581,Cobh,D524,0,4384_7778018_Txc4ED48714-BEBD-4CFA-851B-39BA14B2C68D,4384_721 -4367_81483,278,4384_9582,Cobh,D513,0,4384_7778018_Txc052B6881-CD2E-4CBD-9602-C751EF3854AF,4384_721 -4367_81483,338,4384_9583,Cobh,D524,0,4384_7778018_TxcBB063C15-B44B-4604-B8CF-9CA9D9E3E327,4384_721 -4367_81483,319,4384_9584,Cobh,D513,0,4384_7778018_TxcBFB2C40D-86DD-4A59-9773-708DABE220F6,4384_721 -4367_81483,337,4384_9586,Midleton,D569,0,4384_7778018_Txc8864F08C-6AEC-4B7F-8D2A-81580D26EAFF,4384_723 -4367_81483,278,4384_9587,Midleton,D563,0,4384_7778018_Txc4EE04292-E4BE-45AF-B9AC-F7F55E81FD16,4384_723 -4367_81483,338,4384_9588,Midleton,D569,0,4384_7778018_Txc79016B32-0922-4ADE-9996-088E6730D119,4384_723 -4367_81483,319,4384_9589,Midleton,D563,0,4384_7778018_TxcB130FE7A-D19E-4841-A24E-DD838C14A171,4384_723 -4367_81485,211,4384_959,Bray (Daly),E233,1,4384_7778018_TxcE61CC383-B972-4260-8A8A-AA77AE8753B4,4384_7 -4367_81483,337,4384_9590,Cobh,D525,0,4384_7778018_Txc51601637-A9CD-4B48-A820-A3EAEDA3A903,4384_721 -4367_81483,341,4384_9591,Cobh,D525,0,4384_7778018_TxcC2EF897A-9153-4B0C-8B3B-A6C57B86CDDA,4384_721 -4367_81483,314,4384_9593,Midleton,D570,0,4384_7778018_Txc0A8F4A68-625B-4771-A3F0-5E70BF617530,4384_723 -4367_81483,315,4384_9594,Midleton,D570,0,4384_7778018_TxcD97E3BA0-5E40-42D0-A2C1-38D52D7BCA05,4384_723 -4367_81483,337,4384_9595,Cobh,D526,0,4384_7778018_TxcFEFE5B56-2C83-43F4-BD77-19457D5F5058,4384_721 -4367_81483,278,4384_9596,Cobh,D515,0,4384_7778018_Txc27190F54-59A1-475E-A587-CB6A07DF2913,4384_721 -4367_81483,338,4384_9598,Cobh,D526,0,4384_7778018_TxcF7CED4EE-A2D2-4027-9D05-E1F017DE850E,4384_721 -4367_81483,319,4384_9599,Cobh,D515,0,4384_7778018_Txc5C809ED2-CF0E-4D95-8BA9-D1EC84E5D0CC,4384_721 -4367_81485,318,4384_96,Greystones,E101,1,4384_7778018_TxcACF2262B-71F6-48CF-A541-70EFEA4D2B88,4384_2 -4367_81483,337,4384_9601,Midleton,D571,0,4384_7778018_TxcEAC2F1BF-BA4F-406E-B82B-9D37C54585D4,4384_723 -4367_81483,278,4384_9602,Midleton,D565,0,4384_7778018_Txc93F778D7-7511-437F-9093-59C89DFE4740,4384_723 -4367_81483,338,4384_9604,Midleton,D571,0,4384_7778018_Txc3E108B9B-6E65-4D06-947B-216C8891993F,4384_723 -4367_81483,319,4384_9605,Midleton,D565,0,4384_7778018_TxcD42DD0FF-D2FF-4874-A7DA-22C6CCCA8B7F,4384_723 -4367_81483,337,4384_9606,Cobh,D527,0,4384_7778018_TxcD3BD806B-22AF-45CF-8E71-25E023A26FDA,4384_721 -4367_81483,341,4384_9607,Cobh,D527,0,4384_7778018_Txc05E8EDC0-31D3-4D3A-84F2-634CD9DF39CB,4384_721 -4367_81483,314,4384_9608,Midleton,D572,0,4384_7778018_Txc427D3A55-4D4F-48D4-9E84-7D926D94DB8A,4384_723 -4367_81483,315,4384_9609,Midleton,D572,0,4384_7778018_TxcE06B2A9C-5635-4326-AADD-0849EC6F36F4,4384_723 -4367_81483,337,4384_9610,Cobh,D528,0,4384_7778018_Txc630852C6-0429-430E-A656-049A78EC8569,4384_721 -4367_81483,278,4384_9611,Cobh,D517,0,4384_7778018_Txc61405E0A-A24B-4775-A679-763A4EE91A27,4384_721 -4367_81483,338,4384_9614,Cobh,D528,0,4384_7778018_Txc180C8022-D230-408D-B5BB-2AFEAAB91F60,4384_721 -4367_81483,319,4384_9615,Cobh,D517,0,4384_7778018_TxcB3C5C631-5287-403D-8A22-7D3EA70CD504,4384_721 -4367_81483,337,4384_9616,Midleton,D573,0,4384_7778018_Txc8960C726-D2A3-4AAF-933A-A4F22E510836,4384_723 -4367_81483,278,4384_9617,Midleton,D567,0,4384_7778018_Txc3B82E4E7-3A0E-4442-8817-CB6FE36C4A15,4384_723 -4367_81483,338,4384_9619,Midleton,D573,0,4384_7778018_Txc183A63EF-9B62-43DC-BD24-216A558206CB,4384_723 -4367_81485,96,4384_962,Bray (Daly),E233,1,4384_7778018_TxcEC9FAD9C-BC82-4005-9A50-95A30377C8B7,4384_29 -4367_81483,319,4384_9620,Midleton,D567,0,4384_7778018_TxcA3FAEF13-2796-43CF-B6A9-C43FA090211D,4384_723 -4367_81483,337,4384_9621,Cork (Kent),D530,0,4384_7778018_Txc1198DAC8-A13A-45EA-BBAC-3AAC0387DE7E,4384_722 -4367_81483,338,4384_9623,Cork (Kent),D530,0,4384_7778018_TxcBA6FF20F-7B34-4524-84CC-2E4340AAAF8F,4384_722 -4367_81483,337,4384_9624,Cobh,D529,0,4384_7778018_Txc06BAF08E-FEA9-42A3-891E-9A2DD2631B98,4384_721 -4367_81483,341,4384_9625,Cobh,D529,0,4384_7778018_Txc883952A5-5A13-4301-AF44-0E6776CB0F6F,4384_721 -4367_81483,314,4384_9627,Midleton,D574,0,4384_7778018_TxcA06BD0DE-06F4-4026-A9A6-8A18D3823BBF,4384_723 -4367_81483,315,4384_9628,Midleton,D574,0,4384_7778018_Txc6808DE03-E381-42D1-A880-6E36D9B413BA,4384_723 -4367_81483,337,4384_9629,Cobh,D531,0,4384_7778018_Txc66BE3A1D-3533-435F-B0EC-BF0403EC07D8,4384_721 -4367_81485,214,4384_963,Bray (Daly),E233,1,4384_7778018_TxcFEE7195B-8EDE-4AA3-B251-7BF9826BB263,4384_29 -4367_81483,278,4384_9630,Cobh,D519,0,4384_7778018_Txc2D9B2701-E8E9-4A4A-A245-40D137467F52,4384_721 -4367_81483,338,4384_9632,Cobh,D531,0,4384_7778018_Txc6A0A1C56-52AA-4D43-B97E-60E47CBC1013,4384_721 -4367_81483,319,4384_9633,Cobh,D519,0,4384_7778018_Txc66B76680-BDCE-49C7-BEE7-2372E35ACC5B,4384_721 -4367_81483,337,4384_9634,Midleton,D575,0,4384_7778018_Txc4B71A96C-C159-4565-AAE5-06E620EC7ABE,4384_723 -4367_81483,278,4384_9635,Midleton,D569,0,4384_7778018_TxcDAB9D9DF-4ECA-4F74-8581-71D407ECAE11,4384_723 -4367_81483,338,4384_9638,Midleton,D575,0,4384_7778018_Txc72AA49D1-F3F6-440C-9F76-176FC8B6181E,4384_723 -4367_81483,319,4384_9639,Midleton,D569,0,4384_7778018_TxcC3A2A4DD-43ED-47CA-9624-8451F91ACF1B,4384_723 -4367_81485,316,4384_964,Bray (Daly),E233,1,4384_7778018_Txc6E6B0472-B147-482C-B270-36EC1441BAA0,4384_7 -4367_81483,337,4384_9640,Cork (Kent),D533,0,4384_7778018_TxcAE5A5975-3C45-4C28-8D8C-871D65A1C309,4384_722 -4367_81483,341,4384_9641,Cork (Kent),D533,0,4384_7778018_TxcFF1D3938-6539-48AD-8160-6098846C0C78,4384_722 -4367_81483,337,4384_9642,Cobh,D532,0,4384_7778018_Txc3012BE6F-78C5-48CB-ADB0-FC5E617BE908,4384_721 -4367_81483,341,4384_9643,Cobh,D532,0,4384_7778018_Txc03C94DF6-3D12-4085-921E-6789EC7AEB2D,4384_721 -4367_81483,314,4384_9644,Midleton,D576,0,4384_7778018_Txc2DE28DCF-EC67-4BDF-A8DE-0A99E8F9004C,4384_723 -4367_81483,315,4384_9645,Midleton,D576,0,4384_7778018_Txc127F06DA-9E55-4DC9-98C2-A8D8B729126B,4384_723 -4367_81483,337,4384_9646,Cobh,D534,0,4384_7778018_Txc7447CB43-E9AC-46DB-B870-459A08AC7CDB,4384_721 -4367_81483,278,4384_9647,Cobh,D521,0,4384_7778018_Txc11E0587C-AFF9-4B79-8D81-C45E3B49675E,4384_721 -4367_81483,338,4384_9649,Cobh,D534,0,4384_7778018_Txc8F0F5B46-E5EF-4491-8A1E-4A93F04A31B9,4384_721 -4367_81485,138,4384_965,Bray (Daly),E233,1,4384_7778018_Txc429F88E4-7792-428E-AA34-D6725F2FC117,4384_7 -4367_81483,319,4384_9650,Cobh,D521,0,4384_7778018_TxcB9F65020-88A1-446A-8F83-D1DAF42E3D85,4384_721 -4367_81483,337,4384_9652,Midleton,D577,0,4384_7778018_TxcD63CD62F-DA4E-4B61-8DCE-65AA63906995,4384_723 -4367_81483,278,4384_9653,Midleton,D571,0,4384_7778018_Txc1DF56142-C961-4346-8D02-7282B950DBE8,4384_723 -4367_81483,338,4384_9654,Midleton,D577,0,4384_7778018_TxcDFCAFFBA-D038-4AC8-8162-2E0C9F10EBD5,4384_723 -4367_81483,319,4384_9655,Midleton,D571,0,4384_7778018_Txc16551A06-D80B-453A-8D04-F9D05FB42AA1,4384_723 -4367_81483,337,4384_9656,Cork (Kent),D536,0,4384_7778018_Txc17C22CC4-1544-4847-9CB8-FDB8107CAC2F,4384_722 -4367_81483,344,4384_9658,Cork (Kent),D536,0,4384_7778018_TxcBE731882-FC6F-4427-9C7A-2762D0567000,4384_722 -4367_81483,337,4384_9659,Cobh,D535,0,4384_7778018_Txc5558FA82-DB2A-43D7-A042-FD1F7C339D94,4384_721 -4367_81485,317,4384_966,Bray (Daly),E233,1,4384_7778018_TxcA8BCFDE9-4DE1-44D5-9A24-C53BE571BCC8,4384_7 -4367_81483,341,4384_9661,Cobh,D535,0,4384_7778018_Txc34718B01-5136-429E-94FD-AAB044220E33,4384_721 -4367_81483,138,4384_9662,Cork (Kent),D536,0,4384_7778018_TxcA0CE9472-9943-488B-976E-00B3077F4062,4384_722 -4367_81483,332,4384_9663,Cork (Kent),D536,0,4384_7778018_TxcF8922016-FB7E-4395-8C50-D453FEF14B4C,4384_722 -4367_81483,337,4384_9667,Cobh,D537,0,4384_7778018_Txc0F4DF462-3066-48AD-B74F-2985A99889A4,4384_721 -4367_81483,278,4384_9668,Cobh,D523,0,4384_7778018_TxcCEC14C01-5BBD-42C7-8844-389389618AFE,4384_721 -4367_81483,338,4384_9669,Cobh,D537,0,4384_7778018_Txc51A01E5C-80F1-45E8-8564-950C61E541BA,4384_721 -4367_81485,318,4384_967,Bray (Daly),E233,1,4384_7778018_Txc7E6F954C-457D-4266-9338-E7CE159A8416,4384_7 -4367_81483,319,4384_9670,Cobh,D523,0,4384_7778018_Txc0553A3C4-0068-461C-A70D-CFFEBAA87F93,4384_721 -4367_81483,384,4384_9672,Midleton,D578,0,4384_7778018_TxcA123E882-CB7D-438A-9750-014FDD4269FE,4384_723 -4367_81483,278,4384_9673,Midleton,D573,0,4384_7778018_Txc6C040D99-355C-4F22-85F6-FAB3423F2FF5,4384_723 -4367_81485,314,4384_968,Bray (Daly),E248,1,4384_7778018_TxcACA3E602-410B-40AE-A1DE-B9DE89398CA3,4384_6 -4367_81483,385,4384_9684,Midleton,BUS578,0,4384_7778018_Txc46E5C34B-B776-4EA3-86B1-F7C414814EC9,4384_725 -4367_81483,386,4384_9685,Midleton,BUS578,0,4384_7778018_Txc495B693B-4A8F-4D93-B19B-AFF68C141AD3,4384_725 -4367_81483,387,4384_9686,Midleton,BUS578,0,4384_7778018_Txc0BE250E3-08C5-4FD4-ABC5-CF1B5B72E23D,4384_725 -4367_81483,385,4384_9694,Midleton,BUS178,0,4384_7778018_TxcD86B85EE-182A-47C0-977E-A4AD0A9E9DE0,4384_723 -4367_81483,386,4384_9695,Midleton,BUS178,0,4384_7778018_Txc286641C8-A7D8-467D-B562-E4ED8D37735D,4384_723 -4367_81483,387,4384_9696,Midleton,BUS178,0,4384_7778018_Txc221B9769-8709-445E-B456-E3016263A3D1,4384_723 -4367_81483,388,4384_9698,Midleton,D578,0,4384_7778018_TxcDB5A3563-EA32-40B9-B3E7-8F73E5F1458F,4384_723 -4367_81483,319,4384_9699,Midleton,D573,0,4384_7778018_Txc62A46A6D-9CC7-434F-90FC-0F862D60E004,4384_723 -4367_81485,314,4384_97,Greystones,E105,1,4384_7778018_Txc7511B509-9D7E-4890-87CE-05C00B75143A,4384_1 -4367_81483,389,4384_9700,Midleton,BUS578,0,4384_7778018_TxcE908AC06-CA55-45FA-8307-5DE20C3F4CA9,4384_725 -4367_81483,389,4384_9701,Midleton,BUS178,0,4384_7778018_TxcC3B0087D-38C4-421D-A857-B5398665E0FF,4384_723 -4367_81483,390,4384_9702,Midleton,BUS578,0,4384_7778018_TxcBAEDA417-0166-44F1-8811-40525B4FF677,4384_725 -4367_81483,391,4384_9703,Midleton,BUS578,0,4384_7778018_TxcA2B4B097-F793-4745-8AD3-82E5850815EA,4384_725 -4367_81483,392,4384_9704,Midleton,BUS578,0,4384_7778018_Txc7E8D31FE-B4E2-4BE0-86F2-6786B48DD2FD,4384_725 -4367_81483,393,4384_9705,Midleton,BUS578,0,4384_7778018_TxcE3BAA90B-098F-43DB-9D83-DA85D0A6116E,4384_725 -4367_81483,394,4384_9706,Midleton,BUS578,0,4384_7778018_TxcF1378764-CB48-4530-A4D7-6CC5C0419A89,4384_725 -4367_81483,395,4384_9707,Midleton,BUS578,0,4384_7778018_TxcE25425B9-C508-4C0E-A5DB-9394A996B34C,4384_725 -4367_81483,396,4384_9708,Midleton,BUS578,0,4384_7778018_Txc20689990-0410-4E5D-949F-CD016A6DC184,4384_725 -4367_81483,397,4384_9709,Midleton,BUS578,0,4384_7778018_Txc0E0A36A9-D8B6-4D0F-9BD2-B3997A47067A,4384_725 -4367_81483,398,4384_9710,Midleton,BUS578,0,4384_7778018_Txc1D4605F8-6E9D-4513-84BA-7CB7969AECD0,4384_725 -4367_81483,399,4384_9711,Midleton,BUS578,0,4384_7778018_TxcCE509BBC-8AAC-450D-9B2F-59AC74F4743A,4384_725 -4367_81483,400,4384_9712,Midleton,BUS578,0,4384_7778018_Txc8CFE7366-972B-4B88-9E31-5913A1D9AA61,4384_725 -4367_81483,401,4384_9713,Midleton,BUS578,0,4384_7778018_Txc2A01F79C-000A-481B-BBBA-24F3C5DFBEA9,4384_725 -4367_81483,402,4384_9714,Midleton,BUS578,0,4384_7778018_TxcD3853485-4AF8-48F5-928E-FAB37FC27F0A,4384_725 -4367_81483,403,4384_9715,Midleton,BUS578,0,4384_7778018_Txc9FF1D584-F08B-48AA-946B-8817FDB405C0,4384_725 -4367_81483,404,4384_9716,Midleton,BUS578,0,4384_7778018_TxcBA718AC1-7F5A-4502-BDE6-76742071E3DF,4384_725 -4367_81483,390,4384_9717,Midleton,BUS178,0,4384_7778018_Txc11CF9AA3-5E08-4C08-9CA3-CAA58092A4AA,4384_723 -4367_81483,391,4384_9718,Midleton,BUS178,0,4384_7778018_TxcFB1087F9-EEA1-49E2-B493-3F880ADD52A4,4384_723 -4367_81483,392,4384_9719,Midleton,BUS178,0,4384_7778018_Txc3554C3BD-316B-474F-A124-22AC7B8D196C,4384_723 -4367_81483,393,4384_9720,Midleton,BUS178,0,4384_7778018_TxcA4BA3FCB-80BA-4A40-98E9-91089C654184,4384_723 -4367_81483,394,4384_9721,Midleton,BUS178,0,4384_7778018_TxcA9E2F067-E62D-4008-B37A-38B765B56E8A,4384_723 -4367_81483,395,4384_9722,Midleton,BUS178,0,4384_7778018_TxcC9387A0B-578E-4A25-801D-6973B3208282,4384_723 -4367_81483,396,4384_9723,Midleton,BUS178,0,4384_7778018_Txc3D536107-3530-4D38-82C9-9573B7A29CEA,4384_723 -4367_81483,397,4384_9724,Midleton,BUS178,0,4384_7778018_Txc7A401321-D9DC-4E20-9053-D964C2EB0E69,4384_723 -4367_81483,398,4384_9725,Midleton,BUS178,0,4384_7778018_Txc19CB028C-7998-4003-9970-0E6771C5D7A0,4384_723 -4367_81483,399,4384_9726,Midleton,BUS178,0,4384_7778018_Txc7A86D459-AEFA-479F-9BF7-6E88AC4C52A1,4384_723 -4367_81483,400,4384_9727,Midleton,BUS178,0,4384_7778018_Txc8FAEEA33-3C55-4C64-BFBB-0FB93C2D747F,4384_723 -4367_81483,401,4384_9728,Midleton,BUS178,0,4384_7778018_TxcA79FB842-D309-40EA-83C2-5B2995D63F5D,4384_723 -4367_81483,402,4384_9729,Midleton,BUS178,0,4384_7778018_Txc6B7A6185-B544-4CC5-8A81-3AD7C6066B79,4384_723 -4367_81485,315,4384_973,Bray (Daly),E248,1,4384_7778018_Txc2A889436-15AA-4C22-8681-710409EDB98B,4384_6 -4367_81483,403,4384_9730,Midleton,BUS178,0,4384_7778018_TxcD8CC4F0F-A4A8-4478-A367-5C6407BB5C73,4384_723 -4367_81483,404,4384_9731,Midleton,BUS178,0,4384_7778018_Txc320C6C80-431E-4758-84FE-8C1CC27F3682,4384_723 -4367_81483,405,4384_9732,Midleton,BUS578,0,4384_7778018_Txc4420B687-4D27-4890-A43C-386AB53BC347,4384_725 -4367_81483,405,4384_9733,Midleton,BUS178,0,4384_7778018_TxcDC57A47E-3A03-4610-84F0-C75E0391ED77,4384_723 -4367_81483,337,4384_9735,Cobh,D538,0,4384_7778018_TxcCFB81F60-6056-4414-96B8-54ACE0E4449E,4384_721 -4367_81483,278,4384_9736,Cobh,D524,0,4384_7778018_Txc37B29FA3-7DC1-4838-BDAA-CCF3CAA56F63,4384_721 -4367_81483,344,4384_9739,Cobh,D538,0,4384_7778018_Txc15A94BA1-0664-47B7-B28F-88067ADB9192,4384_721 -4367_81485,278,4384_974,Greystones,E126,1,4384_7778018_TxcC86CE924-3843-4568-9861-107C8DC6D598,4384_1 -4367_81483,319,4384_9740,Cobh,D524,0,4384_7778018_Txc5D0FC8D8-C65E-4734-A531-7C780FEDBCB2,4384_721 -4367_81483,384,4384_9741,Midleton,D579,0,4384_7778018_Txc67E12B37-54B0-45D7-8C05-A94C4F189877,4384_723 -4367_81483,278,4384_9742,Midleton,D574,0,4384_7778018_TxcDD859691-4A76-4A66-9CFF-4D9387773D4C,4384_723 -4367_81483,385,4384_9752,Midleton,BUS579,0,4384_7778018_Txc818DE4DD-82F9-4D59-AA0F-A422E19D4753,4384_725 -4367_81483,386,4384_9753,Midleton,BUS579,0,4384_7778018_Txc709E8F5D-2E9E-496F-92EB-BF017A453B92,4384_725 -4367_81483,387,4384_9754,Midleton,BUS579,0,4384_7778018_Txc1C1F89BE-7BB5-42E7-ABB4-F39F90248B31,4384_725 -4367_81483,385,4384_9762,Midleton,BUS179,0,4384_7778018_Txc8363F7D7-5F28-4D51-8394-78CC45E69280,4384_723 -4367_81483,386,4384_9763,Midleton,BUS179,0,4384_7778018_Txc4BD10A5F-FA36-4977-8551-0C0893DB1B67,4384_723 -4367_81483,387,4384_9764,Midleton,BUS179,0,4384_7778018_TxcB5FB4153-521E-4E56-95B5-86933FFB9AD4,4384_723 -4367_81483,406,4384_9766,Midleton,D579,0,4384_7778018_TxcB654324F-959D-4BCD-8B26-6731F3021446,4384_723 -4367_81483,319,4384_9767,Midleton,D574,0,4384_7778018_Txc2A6C0F57-7CF1-4E4C-A5E1-4D2D50BBB879,4384_723 -4367_81483,389,4384_9768,Midleton,BUS579,0,4384_7778018_Txc0E6E7A24-E14C-462E-BAA7-15EBFBFBB5D7,4384_725 -4367_81483,389,4384_9769,Midleton,BUS179,0,4384_7778018_TxcD9FA5A8F-16C2-4885-B4E0-B1C2965855CC,4384_723 -4367_81483,390,4384_9770,Midleton,BUS579,0,4384_7778018_TxcB5A1F461-84D2-4BBF-8471-282FE6AC7FF8,4384_725 -4367_81483,391,4384_9771,Midleton,BUS579,0,4384_7778018_Txc2F0568EE-327D-410F-9F11-A479D963D5AE,4384_725 -4367_81483,392,4384_9772,Midleton,BUS579,0,4384_7778018_Txc9B72F99F-21BF-4ACA-BB58-8E4FF23C1DF7,4384_725 -4367_81483,393,4384_9773,Midleton,BUS579,0,4384_7778018_Txc9016AE3D-AE45-4072-A5D1-7F74BCF71977,4384_725 -4367_81483,394,4384_9774,Midleton,BUS579,0,4384_7778018_TxcBDC7602B-A964-46E8-942C-6DCC3DA98E65,4384_725 -4367_81483,395,4384_9775,Midleton,BUS579,0,4384_7778018_Txc28397FE8-9D38-4E78-B181-DC68ACBDDB0C,4384_725 -4367_81483,396,4384_9776,Midleton,BUS579,0,4384_7778018_TxcB6B14903-F605-4C01-AD7C-480F4C09E665,4384_725 -4367_81483,397,4384_9777,Midleton,BUS579,0,4384_7778018_TxcBF176934-E950-4E53-8701-F62C71A76434,4384_725 -4367_81483,398,4384_9778,Midleton,BUS579,0,4384_7778018_TxcD70EDD74-FF6D-4A37-972D-4222ED7BBD18,4384_725 -4367_81483,399,4384_9779,Midleton,BUS579,0,4384_7778018_Txc0146EDA4-E5B8-4093-B0ED-F4E45AE57709,4384_725 -4367_81485,319,4384_978,Greystones,E126,1,4384_7778018_Txc1E57008A-7786-4782-9F39-79150B8447AC,4384_1 -4367_81483,400,4384_9780,Midleton,BUS579,0,4384_7778018_TxcB8F26E28-9D1D-4BD6-BF65-D50058553991,4384_725 -4367_81483,401,4384_9781,Midleton,BUS579,0,4384_7778018_Txc2B857A0E-A268-49FA-9114-64B03ADBFF17,4384_725 -4367_81483,402,4384_9782,Midleton,BUS579,0,4384_7778018_Txc4B6C91B3-4094-497C-B086-6CDAA26A4ACC,4384_725 -4367_81483,403,4384_9783,Midleton,BUS579,0,4384_7778018_TxcB187787D-9E6A-4B37-B4A0-2341971EB689,4384_725 -4367_81483,404,4384_9784,Midleton,BUS579,0,4384_7778018_TxcA2587738-9644-4224-AEA3-0595F1BBBDDE,4384_725 -4367_81483,390,4384_9785,Midleton,BUS179,0,4384_7778018_Txc3F154FEF-955D-4DE4-86BC-5CFDE1F5AE66,4384_723 -4367_81483,391,4384_9786,Midleton,BUS179,0,4384_7778018_TxcDCDB0AC1-5CE5-4BCD-9E93-120A11176A84,4384_723 -4367_81483,392,4384_9787,Midleton,BUS179,0,4384_7778018_TxcE29F0B4E-5377-4537-BB33-6988FDC1B87F,4384_723 -4367_81483,393,4384_9788,Midleton,BUS179,0,4384_7778018_Txc67831CF0-4337-4754-9DFD-D3EA63FB59A4,4384_723 -4367_81483,394,4384_9789,Midleton,BUS179,0,4384_7778018_Txc49E09674-6AF2-418F-9580-F90B13161773,4384_723 -4367_81485,271,4384_979,Greystones,E126,1,4384_7778018_TxcE3930562-7877-4AAA-AD6B-B36109F03F0D,4384_1 -4367_81483,395,4384_9790,Midleton,BUS179,0,4384_7778018_Txc0F4B5274-2053-4207-82D3-AEA6A26D6A0F,4384_723 -4367_81483,396,4384_9791,Midleton,BUS179,0,4384_7778018_TxcFB297F60-BC75-4334-8EF4-ABDA8C06FAED,4384_723 -4367_81483,397,4384_9792,Midleton,BUS179,0,4384_7778018_TxcB9029B0B-000E-478C-9757-49CA83FD0976,4384_723 -4367_81483,398,4384_9793,Midleton,BUS179,0,4384_7778018_Txc8192F770-9D47-411D-AD87-9362673ADC1A,4384_723 -4367_81483,399,4384_9794,Midleton,BUS179,0,4384_7778018_Txc62245E8D-D932-4EBF-A599-14D019AED016,4384_723 -4367_81483,400,4384_9795,Midleton,BUS179,0,4384_7778018_Txc08CFA36C-3BB3-43AD-B3D4-524FD8967543,4384_723 -4367_81483,401,4384_9796,Midleton,BUS179,0,4384_7778018_TxcEF38B34E-413C-4D9D-86AE-9D71B559FD16,4384_723 -4367_81483,402,4384_9797,Midleton,BUS179,0,4384_7778018_Txc6C11A0B9-68D9-4037-8CBE-BB8765529CD4,4384_723 -4367_81483,403,4384_9798,Midleton,BUS179,0,4384_7778018_Txc68F183B1-BE92-4428-8895-5BE49CB3F480,4384_723 -4367_81483,404,4384_9799,Midleton,BUS179,0,4384_7778018_Txc33AEA25A-7880-4828-9EA9-C646DCACA30A,4384_723 -4367_81485,315,4384_98,Greystones,E105,1,4384_7778018_Txc2D8D0150-0C70-4A89-BAA8-E82DDCEA53C9,4384_1 -4367_81485,320,4384_980,Greystones,E126,1,4384_7778018_Txc5EB3119E-15C7-4D12-8999-0B6998862890,4384_1 -4367_81483,405,4384_9800,Midleton,BUS579,0,4384_7778018_Txc4ABD58B3-2685-4053-847C-0B1A24354B1F,4384_725 -4367_81483,405,4384_9801,Midleton,BUS179,0,4384_7778018_TxcF8BA5D66-8618-482C-ADF1-2E27E74E286D,4384_723 -4367_81483,278,4384_9803,Cork (Kent),D542,0,4384_7778018_Txc0BD764D6-B8C5-4F63-8C9C-2AFB81CC8950,4384_722 -4367_81483,319,4384_9805,Cork (Kent),D542,0,4384_7778018_TxcC31B9B48-AD8C-45BA-981D-4118C4AFAE2C,4384_722 -4367_81483,337,4384_9808,Cobh,D539,0,4384_7778018_Txc0602407F-23A1-4D2D-B4ED-0C75AF57C4AC,4384_721 -4367_81483,278,4384_9809,Cobh,D525,0,4384_7778018_Txc3659058B-A088-46FC-A10A-D43F8849FE59,4384_721 -4367_81485,314,4384_981,Bray (Daly),E249,1,4384_7778018_TxcECA49882-1D6F-4C23-A298-C66952F5B75D,4384_7 -4367_81483,344,4384_9811,Cobh,D539,0,4384_7778018_Txc0CCDE1EB-D376-49D8-B986-7DA495E617AF,4384_721 -4367_81483,319,4384_9812,Cobh,D525,0,4384_7778018_Txc524F384A-29F8-4989-828E-4A4B408A6575,4384_721 -4367_81483,348,4384_9813,Cork (Kent),D540,0,4384_7778018_Txc85C0787B-8105-4544-A70E-CD3795246C75,4384_722 -4367_81483,96,4384_9816,Cork (Kent),BUS542,0,4384_7778018_TxcC2C7BC42-EEA6-44DE-9B58-A013D32DED12,4384_727 -4367_81483,344,4384_9817,Cork (Kent),D540,0,4384_7778018_Txc3D21975A-BFB6-4B68-ADCB-F163542CF77A,4384_722 -4367_81483,384,4384_9818,Midleton,D580,0,4384_7778018_Txc9339FBC8-18C7-494D-A1B6-3E2C2274486C,4384_723 -4367_81483,278,4384_9819,Midleton,D575,0,4384_7778018_TxcC20487C5-657E-47BF-BC7E-1EB49F50675A,4384_724 -4367_81483,385,4384_9828,Midleton,BUS580,0,4384_7778018_Txc8EA3E43D-C00C-42A3-85F2-5B9D59F38D5E,4384_726 -4367_81483,386,4384_9829,Midleton,BUS580,0,4384_7778018_TxcD7BED761-ED70-41BF-B5FA-2713E17BA989,4384_726 -4367_81483,387,4384_9830,Midleton,BUS580,0,4384_7778018_TxcD871601F-9092-4198-9687-3A1CF7C52C2D,4384_726 -4367_81483,406,4384_9831,Midleton,D580,0,4384_7778018_Txc5E860109-2BC0-4CC9-BF91-94DA3C176500,4384_723 -4367_81483,319,4384_9832,Midleton,D575,0,4384_7778018_Txc6AABF823-8513-481E-931C-163811C04DDD,4384_724 -4367_81483,389,4384_9833,Midleton,BUS580,0,4384_7778018_Txc5E05883F-FF92-4442-A2F5-2DCCA1F02251,4384_726 -4367_81483,390,4384_9834,Midleton,BUS580,0,4384_7778018_TxcBA7466F1-9F71-4A25-921B-5E843FB4C564,4384_726 -4367_81483,391,4384_9835,Midleton,BUS580,0,4384_7778018_Txc40D06691-0900-410A-98BF-19EC28741AC2,4384_726 -4367_81483,392,4384_9836,Midleton,BUS580,0,4384_7778018_TxcB2C32E9B-2416-4EE3-91E1-C9D710476B81,4384_726 -4367_81483,393,4384_9837,Midleton,BUS580,0,4384_7778018_TxcDEABE444-CC3A-409F-AA06-2E30827B18C2,4384_726 -4367_81483,394,4384_9838,Midleton,BUS580,0,4384_7778018_TxcDD838797-00CA-4D8C-BE92-16056EAC9EBD,4384_726 -4367_81483,395,4384_9839,Midleton,BUS580,0,4384_7778018_TxcBF631AFF-C686-4584-BC01-D57C0602A0E0,4384_726 -4367_81485,315,4384_984,Bray (Daly),E249,1,4384_7778018_Txc878033BD-0DEC-4BBD-950B-7E0552E55D2A,4384_7 -4367_81483,396,4384_9840,Midleton,BUS580,0,4384_7778018_Txc4007370A-8C4D-4553-9A15-3D78FB61630B,4384_726 -4367_81483,397,4384_9841,Midleton,BUS580,0,4384_7778018_Txc3C0CBE2D-3F4B-4D48-B876-2EE7693E8419,4384_726 -4367_81483,398,4384_9842,Midleton,BUS580,0,4384_7778018_Txc59CF8B53-1583-4B14-B904-74111E03CACA,4384_726 -4367_81483,399,4384_9843,Midleton,BUS580,0,4384_7778018_TxcA95EB184-77E8-4DED-950F-5F7E5B9FD0E6,4384_726 -4367_81483,400,4384_9844,Midleton,BUS580,0,4384_7778018_Txc9938025D-C670-4F70-BF1F-6E3140451975,4384_726 -4367_81483,401,4384_9845,Midleton,BUS580,0,4384_7778018_Txc098E2F94-2B9E-430C-BDAD-C0DDC75B236A,4384_726 -4367_81483,402,4384_9846,Midleton,BUS580,0,4384_7778018_Txc1817E881-E2B3-4377-B4B4-B062BCF40543,4384_726 -4367_81483,403,4384_9847,Midleton,BUS580,0,4384_7778018_Txc65C99155-525E-4DA7-A2A3-D800F9BB8A5B,4384_726 -4367_81483,404,4384_9848,Midleton,BUS580,0,4384_7778018_Txc3D1F8193-5C62-4995-BC85-2BA08ED31AEA,4384_726 -4367_81483,405,4384_9849,Midleton,BUS580,0,4384_7778018_Txc5B554EB6-5FFD-4773-A0A3-A8B0952EE954,4384_726 -4367_81485,23,4384_985,Bray (Daly),E234,1,4384_7778018_Txc3822A78B-0887-4565-A251-253B42DC99E4,4384_6 -4367_81483,337,4384_9850,Cobh,D541,0,4384_7778018_TxcAAA12FD2-8CF8-4882-9E14-D423B6080F3E,4384_721 -4367_81483,278,4384_9851,Cobh,D526,0,4384_7778018_Txc69B4CEAF-B89C-42CD-98C5-F365E0A9E7C6,4384_721 -4367_81483,344,4384_9852,Cobh,D541,0,4384_7778018_Txc4996375A-AD1A-4341-83C9-FB79D316748D,4384_721 -4367_81483,319,4384_9853,Cobh,D526,0,4384_7778018_Txc3555839D-B78B-4C37-98B7-BA3118ED0129,4384_721 -4367_81483,96,4384_9860,Cork (Kent),BUS230,0,4384_7778018_Txc3B3DBC6B-086C-4821-95EA-04B2490C6CC0,4384_722 -4367_81485,316,4384_989,Bray (Daly),E234,1,4384_7778018_TxcFB3306AA-71C9-4EE4-8478-A565DD994936,4384_6 -4367_81485,138,4384_990,Bray (Daly),E234,1,4384_7778018_TxcC8BB68A2-7BE3-4DB1-BB1C-A49E9B680401,4384_6 -4367_81485,317,4384_991,Bray (Daly),E234,1,4384_7778018_TxcDA085767-41B6-4E10-8F01-5E7CCDD845DF,4384_6 -4367_81485,318,4384_992,Bray (Daly),E234,1,4384_7778018_Txc4884092E-8EFE-4979-92B3-1A9A27A4A81A,4384_6 -4367_81485,314,4384_996,Greystones,E125,1,4384_7778018_Txc76BAFBBC-AD5B-4889-85D9-457F1380C74A,4384_2 diff --git a/tests/__init__.py b/server/tests/__init__.py similarity index 100% rename from tests/__init__.py rename to server/tests/__init__.py diff --git a/tests/test_database_connection.py b/server/tests/test_database_connection.py similarity index 100% rename from tests/test_database_connection.py rename to server/tests/test_database_connection.py diff --git a/tests/Database_class.py b/tests/Database_class.py deleted file mode 100644 index e0bb0b5..0000000 --- a/tests/Database_class.py +++ /dev/null @@ -1,195 +0,0 @@ -# connect_to_db.py - -import pg8000 -from dotenv import load_dotenv -import os - -# Load environment variables from .env file -load_dotenv() - -class DataBase(): - def __init__(self): - # Database connection details - self.DB_HOST = os.getenv("DB_HOST") - self.DB_NAME = os.getenv("DB_NAME") - self.DB_USER = os.getenv("DB_USER") - self.DB_PASSWORD = os.getenv("DB_PASSWORD") - self.DB_PORT = int(os.getenv("DB_PORT")) - self.connection = None - - def connect_db(self) -> None: - """Initialise database connection - """ - try: - # Connect to the database - self.connection = pg8000.connect( - host=self.DB_HOST, - database=self.DB_NAME, - user=self.DB_USER, - password=self.DB_PASSWORD, - port=self.DB_PORT - ) - print("Connection successful!") - - except Exception as e: - print("An error occurred:", e) - - def create_table(self, table_name: str, table_info: dict[str, str]) -> None: - """ Creates table in database - - Args: - table name (str): name of table to be queried - table info (dict[str, str]): dict containing columns as keys and data type as column type - """ - try: - cursor = self.connection.cursor() - query = f"""CREATE TABLE {table_name} (""" - - for key in table_info.keys(): - query += f"{key} {table_info[key]}," - query = query[0:-1] - query += ");" - cursor.execute(query) - cursor.close() - - except Exception as e: - print("An error occurred:", e) - - def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: - """Add row to database with new entry - - Args: - table name (str): name of table to be queried - table data (str, str): keys are columns, values are user data - """ - cursor = self.connection.cursor() - - query = f"""INSERT INTO {table_name} (""" - - # Insert column names - for key in table_data.keys(): - query += f"""{key},""" - - query = query[0:-1] - query += ") VALUES (" - - # Insert entry values for each column - for value in table_data.values(): - query += f"""'{value}',""" - query = query[0:-1] - query += ");" - - - cursor.execute(query) - cursor.close() - - def remove_entry(self, table_name: str, username: str) -> None: - """Remove entry (entire row) from table - - Args: - table_name (str): name of table to be queried - username (str): username given as identifier in table - """ - cursor = self.connection.cursor() - query = f"DELETE FROM {table_name} WHERE username = '{username}';" - cursor.execute(query) - cursor.close() - - def update_entry(self, table_name: str, user: str, column: str, data: str) -> None: - """Update entry of specific column - - Args: - table_name (str): name of table to be queried - user (str): username given as identifier in table - column (str): column to be edited in table - data (str): data to be inserted in new column entry - """ - cursor = self.connection.cursor() - - query = f"""UPDATE {table_name} - SET {column} = '{data}' - WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic - - cursor.execute(query) - cursor.close() - - def print_table(self, tablename: str): - """Prints current selected table - - Args: - tablename (str): Name of table to be printed - """ - try: - cursor = self.connection.cursor() - query = f"SELECT * FROM {tablename};" - cursor.execute(query) - records = cursor.fetchall() - - # Print the results - print("Contacts:") - for record in records: - print(record) - - # Close the cursor - cursor.close() - - except Exception as e: - print("An error occurred:", e) - - def close_con(self): - """Close the connection - """ - self.connection.close() - - def search_user(self, table_name: str, user: str) -> bool: - """Search for user in database - - Args: - table_name (str): Name of table to be queried - user (str): Name of user to search - - Returns: - bool: True if user found, False if user not found in table - """ - try: - cursor = self.connection.cursor() - - query = f"SELECT username FROM {table_name} WHERE username = '{user}';" - cursor.execute(query) - record = list(cursor.fetchall()) - cursor.close() - - if record: - return True - return False - except Exception as e: - print("An error occurred: ", e) - -def main(): - # Initiliase database class - db = DataBase() - table_info = { - "id": "SERIAL PRIMARY KEY", - "username": "VARCHAR(50)", - "password": "VARCHAR(50)", - - } - table_data = { - "username": "Conor", - "password": "abc123" - } - table_name = "testTable" - - # Connect to db - db.connect_db() - db.create_table(table_name, table_info) - db.add_entry(table_name, table_data) - db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) - # db.remove_entry(table_name, 'Conor') - db.update_entry(table_name, 'Keith', 'password', 'Roots123') - db.print_table(table_name) - print(db.search_user(table_name, 'Conor')) - db.close_con() - -if __name__ == "__main__": - main() \ No newline at end of file From 477e4d881de5ed15ac545ec5324722239e84e605 Mon Sep 17 00:00:00 2001 From: JasonBoutlas Date: Mon, 10 Feb 2025 16:11:16 +0000 Subject: [PATCH 016/100] Co-authored-by: feguare --- client/Map.js | 32 +---------------------- server/requirements.txt | 1 + server/wayfinding/test_wayfinding.py | 38 ++++++++++++++++++++++++++++ server/wayfinding/wayfinding.py | 18 +++++++++++++ 4 files changed, 58 insertions(+), 31 deletions(-) create mode 100644 server/wayfinding/test_wayfinding.py create mode 100644 server/wayfinding/wayfinding.py diff --git a/client/Map.js b/client/Map.js index 253852c..6ebe960 100644 --- a/client/Map.js +++ b/client/Map.js @@ -8,7 +8,7 @@ export default function MapScreen({ navigation }) { const [location, setLocation] = useState(null); // No hardcoded initial location const [errorMessage, setErrorMessage] = useState(''); const mapRef = useRef(null); // Reference to the MapView - + // WebSocket Setup useEffect(() => { const wsUrl = `${process.env.EXPO_PUBLIC_API_URL.replace(/^http/, 'ws')}/ws/location`; @@ -148,36 +148,6 @@ export default function MapScreen({ navigation }) { ); } - - -// const MapScreen = () => { -// const origin = {latitude: 53.3400, longitude: -6.2550 }; -// const destination = { latitude: 53.3400, longitude: -6.2550}; - -// return ( -// -// -// -// -// ); -// }; - - - - - - - - const styles = StyleSheet.create({ container: { flex: 1, diff --git a/server/requirements.txt b/server/requirements.txt index 8da9bed..5b6a463 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -9,3 +9,4 @@ python-dotenv passlib websockets bcrypt +pytest diff --git a/server/wayfinding/test_wayfinding.py b/server/wayfinding/test_wayfinding.py new file mode 100644 index 0000000..b018177 --- /dev/null +++ b/server/wayfinding/test_wayfinding.py @@ -0,0 +1,38 @@ +import pytest +import os +from wayfinding import get_routes +from dotenv import load_dotenv + +load_dotenv() + +def test_calculate_route(): + + origin = "Tara Street" + Destination = "Ashbourne Meath" + mode = "Walking" + alternatives = "true" + key = os.getenv("GOOGLE_MAPS_API_KEY") + + response = get_routes(origin, Destination, mode, alternatives, key) + + assert response.get("status") == 'OK' + +def test_calculate_route_missing_params(): + # missing parameters test + + response = get_routes('', '', '', '', '') + + assert response.get("status") == 'INVALID_REQUEST' + + +def test_calculate_route_api_key(): + # wrong API key + + origin = "Tara Street" + Destination = "Ashbourne" + mode = "Walking" + + response = get_routes(origin, Destination, mode, alternatives = 'TRUE', key = 'Ahdlkjhfdadsf1234sxf') + + assert response.get("status") == "REQUEST_DENIED" + diff --git a/server/wayfinding/wayfinding.py b/server/wayfinding/wayfinding.py new file mode 100644 index 0000000..90ffe5e --- /dev/null +++ b/server/wayfinding/wayfinding.py @@ -0,0 +1,18 @@ +import requests +import json + + +def get_routes(origin, destination, mode, alternatives, key): + url = "https://maps.googleapis.com/maps/api/directions/json" + + parameters = { + "origin": origin, + "destination": destination, + "mode": mode, + "alternatives": alternatives, + "key": key + } + + response = requests.get(url, params=parameters) + + return response.json() From 7b1f4d3bff5838895920aae1d6931f59b50fbe9c Mon Sep 17 00:00:00 2001 From: JasonBoutlas Date: Mon, 10 Feb 2025 16:20:40 +0000 Subject: [PATCH 017/100] Quick fix for application by removing "provider = Google " --- client/Map.js | 1 - 1 file changed, 1 deletion(-) diff --git a/client/Map.js b/client/Map.js index 6ebe960..5fe977b 100644 --- a/client/Map.js +++ b/client/Map.js @@ -107,7 +107,6 @@ export default function MapScreen({ navigation }) { Date: Wed, 12 Feb 2025 10:13:59 +0000 Subject: [PATCH 018/100] Making directory changes in the back-end (server) --- server/{ => src}/Database_class.py | 0 server/{ => src}/Dockerfile | 0 server/{apis => src}/__init__.py | 0 server/{apis => src}/base_api.py | 0 server/{apis => src}/bus_api.py | 0 server/{apis => src}/dublin_bike_api.py | 0 server/{ => src}/login.py | 0 server/{apis => src}/luas_api.py | 0 server/{ => src}/main.py | 2 +- server/{apis => src}/sample_luas_api.py | 0 server/{wayfinding => src}/wayfinding.py | 0 server/{apis => src}/weatherApi.py | 0 server/{wayfinding => tests}/test_wayfinding.py | 0 13 files changed, 1 insertion(+), 1 deletion(-) rename server/{ => src}/Database_class.py (100%) rename server/{ => src}/Dockerfile (100%) rename server/{apis => src}/__init__.py (100%) rename server/{apis => src}/base_api.py (100%) rename server/{apis => src}/bus_api.py (100%) rename server/{apis => src}/dublin_bike_api.py (100%) rename server/{ => src}/login.py (100%) rename server/{apis => src}/luas_api.py (100%) rename server/{ => src}/main.py (99%) rename server/{apis => src}/sample_luas_api.py (100%) rename server/{wayfinding => src}/wayfinding.py (100%) rename server/{apis => src}/weatherApi.py (100%) rename server/{wayfinding => tests}/test_wayfinding.py (100%) diff --git a/server/Database_class.py b/server/src/Database_class.py similarity index 100% rename from server/Database_class.py rename to server/src/Database_class.py diff --git a/server/Dockerfile b/server/src/Dockerfile similarity index 100% rename from server/Dockerfile rename to server/src/Dockerfile diff --git a/server/apis/__init__.py b/server/src/__init__.py similarity index 100% rename from server/apis/__init__.py rename to server/src/__init__.py diff --git a/server/apis/base_api.py b/server/src/base_api.py similarity index 100% rename from server/apis/base_api.py rename to server/src/base_api.py diff --git a/server/apis/bus_api.py b/server/src/bus_api.py similarity index 100% rename from server/apis/bus_api.py rename to server/src/bus_api.py diff --git a/server/apis/dublin_bike_api.py b/server/src/dublin_bike_api.py similarity index 100% rename from server/apis/dublin_bike_api.py rename to server/src/dublin_bike_api.py diff --git a/server/login.py b/server/src/login.py similarity index 100% rename from server/login.py rename to server/src/login.py diff --git a/server/apis/luas_api.py b/server/src/luas_api.py similarity index 100% rename from server/apis/luas_api.py rename to server/src/luas_api.py diff --git a/server/main.py b/server/src/main.py similarity index 99% rename from server/main.py rename to server/src/main.py index cce0e45..19fd8b4 100644 --- a/server/main.py +++ b/server/src/main.py @@ -5,7 +5,7 @@ import uvicorn import sys from login import Login -from apis.weatherApi import weatherAPI +from weatherApi import weatherAPI from dotenv import load_dotenv class Server: diff --git a/server/apis/sample_luas_api.py b/server/src/sample_luas_api.py similarity index 100% rename from server/apis/sample_luas_api.py rename to server/src/sample_luas_api.py diff --git a/server/wayfinding/wayfinding.py b/server/src/wayfinding.py similarity index 100% rename from server/wayfinding/wayfinding.py rename to server/src/wayfinding.py diff --git a/server/apis/weatherApi.py b/server/src/weatherApi.py similarity index 100% rename from server/apis/weatherApi.py rename to server/src/weatherApi.py diff --git a/server/wayfinding/test_wayfinding.py b/server/tests/test_wayfinding.py similarity index 100% rename from server/wayfinding/test_wayfinding.py rename to server/tests/test_wayfinding.py From aecfdd9858ebf40ab565b1af1cf36b20675ca96b Mon Sep 17 00:00:00 2001 From: JasonBoutlas Date: Wed, 12 Feb 2025 10:31:54 +0000 Subject: [PATCH 019/100] Fixed docker with the directory changes --- server/{src => }/Dockerfile | 6 +++--- server/src/main.py | 4 ++-- server/{ => src}/requirements.txt | 0 3 files changed, 5 insertions(+), 5 deletions(-) rename server/{src => }/Dockerfile (73%) rename server/{ => src}/requirements.txt (100%) diff --git a/server/src/Dockerfile b/server/Dockerfile similarity index 73% rename from server/src/Dockerfile rename to server/Dockerfile index 03c4c01..9b742a2 100644 --- a/server/src/Dockerfile +++ b/server/Dockerfile @@ -2,10 +2,10 @@ FROM python:3.10-slim # Set the working directory inside the container -WORKDIR /app +WORKDIR /app/src # Copy requirements and install dependencies -COPY requirements.txt . +COPY src/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the application code @@ -15,4 +15,4 @@ COPY . . EXPOSE 8000 # Command to run the FastAPI app -CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] +CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000"] diff --git a/server/src/main.py b/server/src/main.py index 19fd8b4..ff4f9c6 100644 --- a/server/src/main.py +++ b/server/src/main.py @@ -4,8 +4,8 @@ import logging import uvicorn import sys -from login import Login -from weatherApi import weatherAPI +from src.login import Login +from src.weatherApi import weatherAPI from dotenv import load_dotenv class Server: diff --git a/server/requirements.txt b/server/src/requirements.txt similarity index 100% rename from server/requirements.txt rename to server/src/requirements.txt From 6a27511114046d38db3efcefa069e15aa1b0261f Mon Sep 17 00:00:00 2001 From: kahern7 Date: Wed, 12 Feb 2025 10:32:12 +0000 Subject: [PATCH 020/100] Added test for Database_class and started TTD for netoworking --- .vscode/settings.json | 3 + server/Database_class.py | 3 - server/__init__.py | 0 server/networking.py | 6 +- tests/Database_class.py | 195 ------------------------------ tests/test_database_connection.py | 171 ++++++++++++++++++++------ tests/test_networking.py | 56 +++++++++ 7 files changed, 196 insertions(+), 238 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 server/__init__.py delete mode 100644 tests/Database_class.py create mode 100644 tests/test_networking.py diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..642ff51 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.REPL.enableREPLSmartSend": false +} \ No newline at end of file diff --git a/server/Database_class.py b/server/Database_class.py index 3d469fa..b687d89 100644 --- a/server/Database_class.py +++ b/server/Database_class.py @@ -1,5 +1,3 @@ -# connect_to_db.py - import pg8000 from dotenv import load_dotenv import os @@ -7,7 +5,6 @@ # Load environment variables from .env file load_dotenv() - class DataBase(): def __init__(self): # Database connection details diff --git a/server/__init__.py b/server/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/server/networking.py b/server/networking.py index 3fa2485..b0ad613 100644 --- a/server/networking.py +++ b/server/networking.py @@ -1,4 +1,8 @@ from Database_class import DataBase class Networking(): - \ No newline at end of file + def __init__(self): + pass + +if __name__ == "__main__": + pass \ No newline at end of file diff --git a/tests/Database_class.py b/tests/Database_class.py deleted file mode 100644 index e0bb0b5..0000000 --- a/tests/Database_class.py +++ /dev/null @@ -1,195 +0,0 @@ -# connect_to_db.py - -import pg8000 -from dotenv import load_dotenv -import os - -# Load environment variables from .env file -load_dotenv() - -class DataBase(): - def __init__(self): - # Database connection details - self.DB_HOST = os.getenv("DB_HOST") - self.DB_NAME = os.getenv("DB_NAME") - self.DB_USER = os.getenv("DB_USER") - self.DB_PASSWORD = os.getenv("DB_PASSWORD") - self.DB_PORT = int(os.getenv("DB_PORT")) - self.connection = None - - def connect_db(self) -> None: - """Initialise database connection - """ - try: - # Connect to the database - self.connection = pg8000.connect( - host=self.DB_HOST, - database=self.DB_NAME, - user=self.DB_USER, - password=self.DB_PASSWORD, - port=self.DB_PORT - ) - print("Connection successful!") - - except Exception as e: - print("An error occurred:", e) - - def create_table(self, table_name: str, table_info: dict[str, str]) -> None: - """ Creates table in database - - Args: - table name (str): name of table to be queried - table info (dict[str, str]): dict containing columns as keys and data type as column type - """ - try: - cursor = self.connection.cursor() - query = f"""CREATE TABLE {table_name} (""" - - for key in table_info.keys(): - query += f"{key} {table_info[key]}," - query = query[0:-1] - query += ");" - cursor.execute(query) - cursor.close() - - except Exception as e: - print("An error occurred:", e) - - def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: - """Add row to database with new entry - - Args: - table name (str): name of table to be queried - table data (str, str): keys are columns, values are user data - """ - cursor = self.connection.cursor() - - query = f"""INSERT INTO {table_name} (""" - - # Insert column names - for key in table_data.keys(): - query += f"""{key},""" - - query = query[0:-1] - query += ") VALUES (" - - # Insert entry values for each column - for value in table_data.values(): - query += f"""'{value}',""" - query = query[0:-1] - query += ");" - - - cursor.execute(query) - cursor.close() - - def remove_entry(self, table_name: str, username: str) -> None: - """Remove entry (entire row) from table - - Args: - table_name (str): name of table to be queried - username (str): username given as identifier in table - """ - cursor = self.connection.cursor() - query = f"DELETE FROM {table_name} WHERE username = '{username}';" - cursor.execute(query) - cursor.close() - - def update_entry(self, table_name: str, user: str, column: str, data: str) -> None: - """Update entry of specific column - - Args: - table_name (str): name of table to be queried - user (str): username given as identifier in table - column (str): column to be edited in table - data (str): data to be inserted in new column entry - """ - cursor = self.connection.cursor() - - query = f"""UPDATE {table_name} - SET {column} = '{data}' - WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic - - cursor.execute(query) - cursor.close() - - def print_table(self, tablename: str): - """Prints current selected table - - Args: - tablename (str): Name of table to be printed - """ - try: - cursor = self.connection.cursor() - query = f"SELECT * FROM {tablename};" - cursor.execute(query) - records = cursor.fetchall() - - # Print the results - print("Contacts:") - for record in records: - print(record) - - # Close the cursor - cursor.close() - - except Exception as e: - print("An error occurred:", e) - - def close_con(self): - """Close the connection - """ - self.connection.close() - - def search_user(self, table_name: str, user: str) -> bool: - """Search for user in database - - Args: - table_name (str): Name of table to be queried - user (str): Name of user to search - - Returns: - bool: True if user found, False if user not found in table - """ - try: - cursor = self.connection.cursor() - - query = f"SELECT username FROM {table_name} WHERE username = '{user}';" - cursor.execute(query) - record = list(cursor.fetchall()) - cursor.close() - - if record: - return True - return False - except Exception as e: - print("An error occurred: ", e) - -def main(): - # Initiliase database class - db = DataBase() - table_info = { - "id": "SERIAL PRIMARY KEY", - "username": "VARCHAR(50)", - "password": "VARCHAR(50)", - - } - table_data = { - "username": "Conor", - "password": "abc123" - } - table_name = "testTable" - - # Connect to db - db.connect_db() - db.create_table(table_name, table_info) - db.add_entry(table_name, table_data) - db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) - # db.remove_entry(table_name, 'Conor') - db.update_entry(table_name, 'Keith', 'password', 'Roots123') - db.print_table(table_name) - print(db.search_user(table_name, 'Conor')) - db.close_con() - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/tests/test_database_connection.py b/tests/test_database_connection.py index daa3833..4b230dc 100644 --- a/tests/test_database_connection.py +++ b/tests/test_database_connection.py @@ -1,42 +1,135 @@ import pytest -import pg8000 -from dotenv import load_dotenv -import os - -# Load environment variables from .env file -load_dotenv() +from unittest.mock import patch, MagicMock +from server.Database_class import DataBase @pytest.fixture -def db_credentials(monkeypatch): - """Mock database environment variables.""" - monkeypatch.setenv("DB_HOST", "localhost") # Change to your actual test DB host - monkeypatch.setenv("DB_NAME", "test_db") - monkeypatch.setenv("DB_USER", "test_user") - monkeypatch.setenv("DB_PASSWORD", "test_password") - monkeypatch.setenv("DB_PORT", "5432") - -def test_db_connection(db_credentials): - """Test database connection.""" - DB_HOST = os.getenv("DB_HOST") - DB_NAME = os.getenv("DB_NAME") - DB_USER = os.getenv("DB_USER") - DB_PASSWORD = os.getenv("DB_PASSWORD") - DB_PORT = int(os.getenv("DB_PORT")) - - connection = None - try: - connection = pg8000.connect( - host=DB_HOST, - database=DB_NAME, - user=DB_USER, - password=DB_PASSWORD, - port=DB_PORT - ) - assert connection is not None, "Connection failed" - assert connection.client_encoding is not None, "Invalid connection encoding" - except Exception as e: - pytest.fail(f"Database connection failed with error: {e}") - finally: - if connection: - connection.close() - assert connection is not None, "Connection should not be None" +def db(): + """Fixture to initialise and return the DataBase object""" + return DataBase() + +@patch("server.Database_class.pg8000.connect") +def test_connect_db(mock_connect, db): + """Test database connection""" + mock_connect.return_value = MagicMock() + db.connect_db() + mock_connect.assert_called_once_with( + host=db.DB_HOST, + database=db.DB_NAME, + user=db.DB_USER, + password=db.DB_PASSWORD, + port=db.DB_PORT + ) + assert db.connection is not None + +def test_create_table(db): + """Test create_table method""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + table_name = "test_table" + table_info = { + "id": "SERIAL PRIMARY KEY", + "name": "VARCHAR(50)" + } + + db.create_table(table_name, table_info) + cursor_mock.execute.assert_called_once_with( + "CREATE TABLE test_table (id SERIAL PRIMARY KEY,name VARCHAR(50));" + ) + cursor_mock.close.assert_called_once() + +def test_add_entry(db): + """Test add_entry method""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + table_name = "test_table" + table_data = { + "username": "john_doe", + "password": "password123" + } + + db.add_entry(table_name, table_data) + cursor_mock.execute.assert_called_once_with( + "INSERT INTO test_table (username,password) VALUES ('john_doe','password123');" + ) + cursor_mock.close.assert_called_once() + +def test_remove_entry(db): + """Test remove_entry method""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + table_name = "test_table" + username = "john_doe" + + db.remove_entry(table_name, username) + cursor_mock.execute.assert_called_once_with( + "DELETE FROM test_table WHERE username = 'john_doe';" + ) + cursor_mock.close.assert_called_once() + +def test_update_entry(db): + """Test update_entry method""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + table_name = "test_table" + user = "john_doe" + column = "password" + data = "new_password123" + + db.update_entry(table_name, user, column, data) + cursor_mock.execute.assert_called_once_with( + "UPDATE test_table\n SET password = 'new_password123'\n WHERE username = 'john_doe';" + ) + cursor_mock.close.assert_called_once() + +def test_print_table(db, capsys): + """Test print_table method""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + cursor_mock.fetchall.return_value = [("row1",), ("row2",)] + table_name = "test_table" + + db.print_table(table_name) + cursor_mock.execute.assert_called_once_with("SELECT * FROM test_table;") + cursor_mock.close.assert_called_once() + + captured = capsys.readouterr() + assert "test_table:" in captured.out + assert "row1" in captured.out + assert "row2" in captured.out + +def test_search_user_found(db): + """Test search_user method when user is found""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + cursor_mock.fetchall.return_value = [("john_doe",)] + table_name = "test_table" + user = "john_doe" + + result = db.search_user(table_name, user) + cursor_mock.execute.assert_called_once_with( + "SELECT username FROM test_table WHERE username = 'john_doe';" + ) + cursor_mock.close.assert_called_once() + assert result is True + +def test_search_user_not_found(db): + """Test search_user method when user is not found""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + cursor_mock.fetchall.return_value = [] + table_name = "test_table" + user = "unknown_user" + + result = db.search_user(table_name, user) + cursor_mock.execute.assert_called_once_with( + "SELECT username FROM test_table WHERE username = 'unknown_user';" + ) + cursor_mock.close.assert_called_once() + assert result is False + +def test_close_con(db): + """Test close_con method""" + db.connection = MagicMock() + + db.close_con() + db.connection.close.assert_called_once() diff --git a/tests/test_networking.py b/tests/test_networking.py new file mode 100644 index 0000000..9187a64 --- /dev/null +++ b/tests/test_networking.py @@ -0,0 +1,56 @@ +import pytest +from unittest.mock import patch, MagicMock +from server.Database_class import DataBase + +@pytest.fixture +def db(): + """Fixture to initialise and return the DataBase object""" + return DataBase() + +@patch("server.Database_class.pg8000.connect") +def test_connect_db(mock_connect, db): + """Test database connection""" + mock_connect.return_value = MagicMock() + db.connect_db() + mock_connect.assert_called_once_with( + host=db.DB_HOST, + database=db.DB_NAME, + user=db.DB_USER, + password=db.DB_PASSWORD, + port=db.DB_PORT + ) + assert db.connection is not None + +def test_create_table(db): + """Test create_table method""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + table_name = "test_table" + table_info = { + "id": "SERIAL PRIMARY KEY", + "username": "VARCHAR(50)", + "friends": "VARCHAR(50)", + "pending friends": "VARCHAR(50)" + } + + db.create_table(table_name, table_info) + cursor_mock.execute.assert_called_once_with( + "CREATE TABLE test_table (id SERIAL PRIMARY KEY,name VARCHAR(50));" + ) + cursor_mock.close.assert_called_once() + +def test_add_entry(db): + """Test add_entry method""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + table_name = "test_table" + table_data = { + "username": "john_doe", + "password": "password123" + } + + db.add_entry(table_name, table_data) + cursor_mock.execute.assert_called_once_with( + "INSERT INTO test_table (username,password) VALUES ('john_doe','password123');" + ) + cursor_mock.close.assert_called_once() \ No newline at end of file From a6d3b5907bdf7493337699271cc8d30b3a5ec3b7 Mon Sep 17 00:00:00 2001 From: Mark Golden Date: Thu, 13 Feb 2025 15:26:24 +0000 Subject: [PATCH 021/100] Removing Pycache before gitignore update --- server/__pycache__/login.cpython-312.pyc | Bin 4625 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 server/__pycache__/login.cpython-312.pyc diff --git a/server/__pycache__/login.cpython-312.pyc b/server/__pycache__/login.cpython-312.pyc deleted file mode 100644 index 8ea046fb5e096604375118588783a03a271dadf9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4625 zcmbVQZ)_CD6`%cc|L=ST+wA%OI#9zIVnRrpVv&TyHkd#z)CLL{r`zRrY|iZcVRjF5 zr!z$fRUwTEsH&h!tGa5W5|OI(Q%Mu4hNvo4KjbcUb*BxHQZ*miZ%&*li1tI@?0WBP z5Mr|KCilBE|7Pq?xZK?S>$Wa! z6!#6*S~V6hc^=?-F>`}k zqZp&07^^Utn{Y1`wAy2=!k*`24uw09Vors}F5ozT<5ry5rMTed#-1^!;sKsl@q&~u z=L`D{$AR>CB4s$$^!PX?@x{%Wlkz}me_;zlRVXk8Bw4EgEwIo7zEyPFU|^_mMq%IN z?85}9>YTdAmcOysV36*!c@y9SD~rP4SX=|mS7H`ren&_tcxuGPS; zul4NKl3ke2O8Fou*yFXjwxb*hJEMm4c%0ha;N`5I1|M;0@e??SHN&gm48d{m7sc?8 z96lJ?9T^#v4i6tN)>M0u=<`u&|KKsO4<~0bgq{(h9%1-0lZq6#9E#8bG1#kG3^wPbEwj=?gIa+yRxngD&NPg8*hegdS_10 zwMH-SbMDZ`?uJ(b_u4vsw(rOLrc<+RU!~mUMMklE$81}l$@$EQx_YlG<=$sXz0b@v zmLtQZ$ndN<0+R+la{J5f=90VlFYeX_SQN#pehi(e*T)R z?Rg5T(|OD?#$G^U3;@$_`^XdnKEg-y&aLLr7!I>qrUfukUJWFB+ zYwwlLY_}Qo5?o7D>{)h_nM7x}V`!536*tL*z0rJV7{_tqG*(2@$fB(4IGNG=#0QL+ zxD3Y4H}6ZGmeqtJW&tlLIf=JsWKEk)69vMCPt#>Rs{!N{Y&aFH%L&y8o{+T@SdnZw z!v%pwlgDws)x?#kW#e(+jAd1EEKSUb`^0=`kPzqrg6SaO)KaNW40}z?8+;-)mNwkB z9)`QRKqCYgiSni6IkTpE5*l2MAV54Zma8e_sa|M?1Je}^PSZ)4CtXyWr?VIgCauuZ zsEb0BIY-**nAbcaNs)Cq-)-)scWIRB-KnPIvZ_7ZTa)Xcv%Cl7{@>C4bLb;~{iXdE z_m}-`C4XD7^T}I|-`BlWSA25s%&EIg?{)mCqd0W5*nVuzADd_E1M5B#TFb&?CE>A~ zO~38oWgWq4i$N#+&`cT`$bFj20V5=bb3jRu(pwgw59ne;s`zdTXEv;biB? zoN(wN$>v9jU)eR&^v90d9mQP-i|fBp6o!lS!}mXKX!{hgfpwMo#;d+7zH)t6slKbY zVdpy|Gi%;Ha%-sg$lzT4o=Sbwzvdkv_HQi=dwTh6{VmMzBHg>Y&>fM1_MI+Izrfw; z+0?(5dv~n^+V2V+@WULT*PFp-(wc7g&7&JIeMJki=1G&s=|Ry1=i8!r*rWy8`Lz$9 zGPQ)cIvi)k6Sx$*7`oJcvHkLyS&ul+uJx>Y{lI4kss#>tyFQ@|(g~jss&ITUgMubP zG=!PyLlnIHDufh(s5!8ld~qP1s3sP*uaqkACaNjHl2NX}*g<2p5LOMsY=NDqUh1{) zr#QVDqzar3afLrQ0Go6aAf(Z-G=g#~gUYrk9(K4&5;0LtJ!-2c4!z0l6{>-Ec~Ch< zg9?9^&n?!q;6f7&zX?YxB4`HFV;X=^1LT`6pr6WOlA|ym06@{K0Fdq@RC~iQM$$>i zaKfbzm$|{>Q-%wl!SSq)4W8o9;8dIUw@q{Wu>(!|%Q)Qv2B=lT=dRFKw3z3o# znOQ$8>?sTTO2WRoJ;fv6niZt7FkTYIXNAOtp-MyR)u*mJbz$IMaP8$MzMs3c?UgB* z>00E<Y4~{6{xY1n23b%lG8bHZ2l+fkvgv|o?7U1NYtW#eRpLbDV3UWAbC#r8O2Rlo_ z&T_E36zrZpd-FT9!M#QIUK7*HwnFV{!g&T7@FZiVIE4k52e_Tw1WNQ4_yTLTm>l=z zH(Gl+z=k1E&;nTszw~y^IsUKts@WLK=UhHt*cCM#5hY1qKJxMSw#T<0%5N4EnwU!K zqAbSK1X6TewC_LfK@|gjM4jYBc^pi?C%@%kY5U%MNV*rSWv1|}qKNdsmW=>Kot3)N z3$oUwI;;SdQCAfN<*mP_FwW{^jSIcPe!Iguf2Hf`QqlI#g=1p?pP(* zXgW(29xIUG)5JiM46h_5(@GW|7?R=-cybbYg`2mL8D9tu z7zTelomL6;Vlo8e4P@Oh)NKik*(RY!s_g-C9zsXJ(KfyJm(ia`7Z5Z*6&oGv=C}A9 zq3a_H2&(xO&N0MXkIy4o&-7dM-GK$Ozu@&cnye-0>~Z*23-x(g79Igodx#%Kn8Uon z(75zGqn%gvI zp=20-8hsmo7gg%ky!;%H^Uqm=bT}M@JT0flDLoM3^=2dRnUz4o(_ zX8(lVK9EqF|3sJ%NpgU4Tw^k1obU*wxt(>?rXtIgd*I$_S@&sj1mq}ewXXx2=NN|h w5OsX+M9gNWKSY~8Kptp(fa*R(U7xc94Ab-pqV%&U%Q9;(@AxNz%G}L=01F!h1poj5 From a468d7130991e4d795e601c74e63f07f38931a0b Mon Sep 17 00:00:00 2001 From: Mark Golden Date: Thu, 13 Feb 2025 15:27:41 +0000 Subject: [PATCH 022/100] Added gitignore --- server/.gitignore | 68 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 server/.gitignore diff --git a/server/.gitignore b/server/.gitignore new file mode 100644 index 0000000..9da1b1e --- /dev/null +++ b/server/.gitignore @@ -0,0 +1,68 @@ +# Server Code .gitignore + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +.coverage +.coverage.* +.cache +pytest_cache/ +nosetests.xml +coverage.xml +*.cover +*.py,cover +htmlcov/ + +# Virtual environment folders +venv/ +.venv/ +ENV/ +env/ +.envrc + +# IDE / editor settings +.vscode/ +.idea/ +*.swp + +# macOS / Windows +.DS_Store +Thumbs.db + +# Environment variables +.env +.env.* + +# Logs +*.log +logs/ + +# Docker-related (optional) +docker-compose.override.yml \ No newline at end of file From 2a376df44214c1855627c4bf03b56919e332d62b Mon Sep 17 00:00:00 2001 From: Mark Golden Date: Thu, 13 Feb 2025 16:26:47 +0000 Subject: [PATCH 023/100] Structure changes for CI/CD --- .gitignore | 1 + server/Dockerfile | 10 +++++++--- server/{src => }/requirements.txt | 0 server/tests/test_wayfinding.py | 31 ++++++++++++++++++------------- 4 files changed, 26 insertions(+), 16 deletions(-) rename server/{src => }/requirements.txt (100%) diff --git a/.gitignore b/.gitignore index 7513bcb..980efc3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ ./assets/stops.txt ./assets/stop_times.txt +.vscode/ *.pyc *.env diff --git a/server/Dockerfile b/server/Dockerfile index 9b742a2..2b6fc4b 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -2,14 +2,18 @@ FROM python:3.10-slim # Set the working directory inside the container -WORKDIR /app/src +WORKDIR /app # Copy requirements and install dependencies -COPY src/requirements.txt . +COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the application code -COPY . . +COPY src/ src/ +COPY tests/ tests/ + +# Copy environment vars +COPY .env .env # Expose the FastAPI port EXPOSE 8000 diff --git a/server/src/requirements.txt b/server/requirements.txt similarity index 100% rename from server/src/requirements.txt rename to server/requirements.txt diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index b018177..0a66f61 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -1,38 +1,43 @@ -import pytest import os -from wayfinding import get_routes +from src.wayfinding import get_routes from dotenv import load_dotenv load_dotenv() + def test_calculate_route(): - + origin = "Tara Street" Destination = "Ashbourne Meath" mode = "Walking" alternatives = "true" key = os.getenv("GOOGLE_MAPS_API_KEY") - + response = get_routes(origin, Destination, mode, alternatives, key) - + assert response.get("status") == 'OK' - + + def test_calculate_route_missing_params(): # missing parameters test - + response = get_routes('', '', '', '', '') - + assert response.get("status") == 'INVALID_REQUEST' - - + + def test_calculate_route_api_key(): # wrong API key - + origin = "Tara Street" Destination = "Ashbourne" mode = "Walking" - response = get_routes(origin, Destination, mode, alternatives = 'TRUE', key = 'Ahdlkjhfdadsf1234sxf') + response = get_routes( + origin, + Destination, + mode, + alternatives='TRUE', + key='Ahdlkjhfdadsf1234sxf') assert response.get("status") == "REQUEST_DENIED" - From d4bd8bdca1f7056d0c8a335c3911bd10d567d725 Mon Sep 17 00:00:00 2001 From: FEguare <123463013+FEguare@users.noreply.github.com> Date: Thu, 13 Feb 2025 16:31:56 +0000 Subject: [PATCH 024/100] initial caching setup --- client/caching.jsx | 117 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 client/caching.jsx diff --git a/client/caching.jsx b/client/caching.jsx new file mode 100644 index 0000000..d27b680 --- /dev/null +++ b/client/caching.jsx @@ -0,0 +1,117 @@ +import {AsyncStorage} from 'react-native'; + +_storeData = async (key, data) => { + try { + await AsyncStorage.setItem( + JSON.stringify(key), + JSON.stringify(data), + ); + } catch (error) { + console.error('Error storing data in cache') + } +}; + +_retrieveData = async (key) => { + try { + const value = await AsyncStorage.getItem(JSON.stringify(key)); + if (value !== null) { + console.log(value); + return value; + } + } catch (error) { + console.error('Error retrieving data from cache') + } +}; + +_removeData = async (key) => { + try { + await AsyncStorage.removeItem(JSON.stringify(key)); + console.log('Removed successfully'); + } catch { + console.error('Error removing data from cache') + } +}; + +_updateData = async (key, changedData) => { + try { + AsyncStorage.mergeItem( + JSON.stringify(key), + JSON.stringify(changedData), + // () => { + _retrieveData(key) + // }, + ); + } catch (error) { + console.error('Error updating data in cache') + } +}; + +// let UID123_object = { +// name: 'Chris', +// age: 30, +/* +weekly emisions + +{ + "sustScore": 0, + "distanceTravelledPerVehicle": { // running total + "bus": 0, + "car": 0, + "luas": 0, + "train": 0, + "bike": 0, + "walking": 0 + }, + "last7daysEmmisions": { // at midnight, each day gets replaced by the day value before it. today replaced with 0 + "today": 0, + "t-1": 0, + "t-2": 0, + "t-3": 0, + "t-4": 0, + "t-5": 0, + "t-6": 0 + }, + "lastYear": { // at mifnight each days total added to it's month, at new month reset to 0 + "jan": 0, + "feb": 0, + "mar": 0, + "apr": 0, + "may": 0, + "jun": 0, + "jul": 0, + "aug": 0, + "sep": 0, + "oct": 0, + "nov": 0, + "dec": 0 + } +} + + */ +// traits: {hair: 'brown', eyes: 'brown'}, +// }; +// // You only need to define what will be added or updated +// let UID123_delta = { +// age: 31, +// traits: {eyes: 'blue', shoe_size: 10}, +// }; + +AsyncStorage.setItem( + 'UID123', + JSON.stringify(UID123_object), + () => { + AsyncStorage.mergeItem( + 'UID123', + JSON.stringify(UID123_delta), + () => { + AsyncStorage.getItem('UID123', (err, result) => { + console.log(result); + }); + }, + ); + }, +); + + // Console log result: + // => {'name':'Chris','age':31,'traits': + // {'shoe_size':10,'hair':'brown','eyes':'blue'}} \ No newline at end of file From ee197e02615fdb68d8b20aa61146d6f202d7d7fa Mon Sep 17 00:00:00 2001 From: Mark Golden Date: Thu, 13 Feb 2025 17:30:01 +0000 Subject: [PATCH 025/100] auto linted server code --- server/src/Database_class.py | 53 +++++++++++------------- server/src/bus_api.py | 19 +++++---- server/src/dublin_bike_api.py | 17 +++++--- server/src/login.py | 50 +++++++++++++--------- server/src/luas_api.py | 41 ++++++++++-------- server/src/main.py | 13 ++++-- server/src/sample_luas_api.py | 2 +- server/src/wayfinding.py | 4 +- server/src/weatherApi.py | 31 ++++++++++---- server/tests/test_database_connection.py | 4 +- server/tests/test_wayfinding.py | 13 +++--- 11 files changed, 143 insertions(+), 104 deletions(-) diff --git a/server/src/Database_class.py b/server/src/Database_class.py index e0bb0b5..8216191 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -7,7 +7,8 @@ # Load environment variables from .env file load_dotenv() -class DataBase(): + +class DataBase: def __init__(self): # Database connection details self.DB_HOST = os.getenv("DB_HOST") @@ -18,8 +19,7 @@ def __init__(self): self.connection = None def connect_db(self) -> None: - """Initialise database connection - """ + """Initialise database connection""" try: # Connect to the database self.connection = pg8000.connect( @@ -27,7 +27,7 @@ def connect_db(self) -> None: database=self.DB_NAME, user=self.DB_USER, password=self.DB_PASSWORD, - port=self.DB_PORT + port=self.DB_PORT, ) print("Connection successful!") @@ -35,15 +35,16 @@ def connect_db(self) -> None: print("An error occurred:", e) def create_table(self, table_name: str, table_info: dict[str, str]) -> None: - """ Creates table in database + """Creates table in database - Args: + Args: table name (str): name of table to be queried - table info (dict[str, str]): dict containing columns as keys and data type as column type + table info (dict[str, str]): dict containing columns + as keys and data type as column type """ try: cursor = self.connection.cursor() - query = f"""CREATE TABLE {table_name} (""" + query = f"""CREATE TABLE {table_name} (""" for key in table_info.keys(): query += f"{key} {table_info[key]}," @@ -53,23 +54,23 @@ def create_table(self, table_name: str, table_info: dict[str, str]) -> None: cursor.close() except Exception as e: - print("An error occurred:", e) + print("An error occurred:", e) def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: """Add row to database with new entry - + Args: - table name (str): name of table to be queried + table name (str): name of table to be queried table data (str, str): keys are columns, values are user data """ cursor = self.connection.cursor() - query = f"""INSERT INTO {table_name} (""" + query = f"""INSERT INTO {table_name} (""" # Insert column names for key in table_data.keys(): query += f"""{key},""" - + query = query[0:-1] query += ") VALUES (" @@ -79,9 +80,8 @@ def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: query = query[0:-1] query += ");" - cursor.execute(query) - cursor.close() + cursor.close() def remove_entry(self, table_name: str, username: str) -> None: """Remove entry (entire row) from table @@ -108,7 +108,7 @@ def update_entry(self, table_name: str, user: str, column: str, data: str) -> No query = f"""UPDATE {table_name} SET {column} = '{data}' - WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic + WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic cursor.execute(query) cursor.close() @@ -129,16 +129,15 @@ def print_table(self, tablename: str): print("Contacts:") for record in records: print(record) - + # Close the cursor cursor.close() except Exception as e: - print("An error occurred:", e) + print("An error occurred:", e) def close_con(self): - """Close the connection - """ + """Close the connection""" self.connection.close() def search_user(self, table_name: str, user: str) -> bool: @@ -165,6 +164,7 @@ def search_user(self, table_name: str, user: str) -> bool: except Exception as e: print("An error occurred: ", e) + def main(): # Initiliase database class db = DataBase() @@ -172,12 +172,8 @@ def main(): "id": "SERIAL PRIMARY KEY", "username": "VARCHAR(50)", "password": "VARCHAR(50)", - - } - table_data = { - "username": "Conor", - "password": "abc123" } + table_data = {"username": "Conor", "password": "abc123"} table_name = "testTable" # Connect to db @@ -186,10 +182,11 @@ def main(): db.add_entry(table_name, table_data) db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) # db.remove_entry(table_name, 'Conor') - db.update_entry(table_name, 'Keith', 'password', 'Roots123') + db.update_entry(table_name, "Keith", "password", "Roots123") db.print_table(table_name) - print(db.search_user(table_name, 'Conor')) + print(db.search_user(table_name, "Conor")) db.close_con() + if __name__ == "__main__": - main() \ No newline at end of file + main() diff --git a/server/src/bus_api.py b/server/src/bus_api.py index ca60a70..db71b39 100644 --- a/server/src/bus_api.py +++ b/server/src/bus_api.py @@ -1,24 +1,25 @@ -########### Python 3.2 ############# -import urllib.request, json +""" Python 3.2 """ +import urllib.request +import json try: url = "https://api.nationaltransport.ie/gtfsr/v2/gtfsr?format=json" - hdr ={ - # Request headers - 'Cache-Control': 'no-cache', - 'x-api-key': '704561a2a3964364bf1955be3e3ab53f', + hdr = { + # Request headers + "Cache-Control": "no-cache", + "x-api-key": "704561a2a3964364bf1955be3e3ab53f", } req = urllib.request.Request(url, headers=hdr) - req.get_method = lambda: 'GET' + req.get_method = lambda: "GET" response = urllib.request.urlopen(req) print(response.getcode()) - #print(json.loads(response.read().decode())) + # print(json.loads(response.read().decode())) with open("data.json", "w") as f: json.dump(json.loads(response.read().decode()), f) - #filetest.close() + # filetest.close() except Exception as e: print(e) #################################### diff --git a/server/src/dublin_bike_api.py b/server/src/dublin_bike_api.py index 9305cc1..724dd7a 100644 --- a/server/src/dublin_bike_api.py +++ b/server/src/dublin_bike_api.py @@ -5,7 +5,8 @@ import datetime # URL of Open Data -APIKEY = '3386ce10aca77dde762ab5c2de0177f7405cb6b3' +APIKEY = "3386ce10aca77dde762ab5c2de0177f7405cb6b3" + class bikeAPI(BaseAPI): @@ -15,19 +16,25 @@ def __init__(self): def get(self, apiKey): # URL of Open Data self.apiKey = apiKey - self.url = 'https://api.jcdecaux.com/vls/v1/stations?contract=dublin&apiKey=' + APIKEY + self.url = ( + "https://api.jcdecaux.com/vls/v1/stations?contract=dublin&apiKey=" + APIKEY + ) self.response = requests.get(self.url) # Check if the request was successful if self.response.status_code == 200: for item in self.response.json(): - print(item['name'], ' ', item['available_bikes'], (int(item['last_update']))) + print( + item["name"], + " ", + item["available_bikes"], + (int(item["last_update"])), + ) else: print("Failed to retrieve data:", self.response.status_code) - bike = bikeAPI() -bike.get(APIKEY) \ No newline at end of file +bike.get(APIKEY) diff --git a/server/src/login.py b/server/src/login.py index b26ac09..b7a9c80 100644 --- a/server/src/login.py +++ b/server/src/login.py @@ -9,7 +9,8 @@ import logging from fastapi import HTTPException -class Login(): + +class Login: def __init__(self, api, logger: logging.Logger): self.app = api @@ -26,11 +27,12 @@ def __init__(self, api, logger: logging.Logger): # register login route self.handle_login() - def handle_login(self): @self.app.post("/login") async def login_data(login: LoginDetails): - self.logger.info(f"Received login attempt: {login.username} {login.password}") + self.logger.info( + f"Received login attempt: {login.username} {login.password}" + ) try: # Fetch user from DB user = self.get_user_by_username(login.username) @@ -39,41 +41,45 @@ async def login_data(login: LoginDetails): self.logger.warning(f"User not fond: {login.username}") # raise HTTPException(status_code=400, detail="Invalid username/password") return {"message": f"Invalid username"} - - self.logger.info(f"User data found for {login.username}") + self.logger.info(f"User data found for {login.username}") # Verify password using bcrypt - if not self.verify_password(login.password, user['hashed_password']): + if not self.verify_password(login.password, user["hashed_password"]): return {"message": f"Invalid password"} # raise HTTPException(status_code=400, detail="Invalid username/password") - + # return success message return {"message": f"Login successful for user: {login.username}"} - + except Exception as e: self.logger.error(f"Error processing login: {str(e)}") raise HTTPException(status_code=500, detail="Internal server error") - + def get_user_by_username(self, username: str): # Querty sb to find user by username try: - response = self.supabase.table("user_details").select("*").eq("username", username).execute() + response = ( + self.supabase.table("user_details") + .select("*") + .eq("username", username) + .execute() + ) - #print(f"Supabase response: {response}") + # print(f"Supabase response: {response}") data = response.data - #print(f"DATA AFTER DATA=... {data}") + # print(f"DATA AFTER DATA=... {data}") if len(data) > 0: return data[0] - else: + else: return None except Exception as e: self.logger.error(f"Error querying Database: {str(e)}") return None - + def verify_password(self, plain_password: str, hashed_password: str) -> bool: # Verifies a plain password against hashed version @@ -81,21 +87,25 @@ def verify_password(self, plain_password: str, hashed_password: str) -> bool: return self.pwd_context.verify(plain_password, hashed_password) except ValueError as e: self.logger.error(f"Password verification failed: {str(e)}") - return False + return False def database_query(self, username, password): # query database - database_user = 'Admin' - database_pass = 'abc123' + database_user = "Admin" + database_pass = "abc123" if database_user == username: if database_pass == password: return True - self.logger.error(f'{str(password)} is not a correct password\nPlease try again') + self.logger.error( + f"{str(password)} is not a correct password\nPlease try again" + ) return False - self.logger.error(f'{str(username)} is not a correct username\nPlease try again.') + self.logger.error( + f"{str(username)} is not a correct username\nPlease try again." + ) return False class LoginDetails(BaseModel): username: str - password: str \ No newline at end of file + password: str diff --git a/server/src/luas_api.py b/server/src/luas_api.py index c39226a..3c7498f 100644 --- a/server/src/luas_api.py +++ b/server/src/luas_api.py @@ -4,6 +4,7 @@ import datetime import xml.etree.ElementTree as ET + class luasAPI: def __init__(self): @@ -12,8 +13,7 @@ def __init__(self): def get(self, stop): # URL of Open Data self.stop = stop - self.url = f'http://luasforecasts.rpa.ie/xml/get.ashx?action=forecast&stop={self.stop}&encrypt=false' - + self.url = f"http://luasforecasts.rpa.ie/xml/get.ashx?action=forecast&stop={self.stop}&encrypt=false" # while True: # # Fetch the geoJSON data from the URL @@ -39,29 +39,36 @@ def get(self, stop): root = ET.fromstring(self.response.content) # initialise dictionaries to store tram info by direction - tram_info = {'Inbound': [], 'Outbound': []} + tram_info = {"Inbound": [], "Outbound": []} # iterate through each direction - for direction in root.findall('direction'): - direction_name = direction.get('name') - for tram in direction.findall('tram'): - due_mins = tram.get('dueMins') - destination = tram.get('destination') - tram_info[direction_name].append({'dueMins': due_mins, 'destination': destination}) + for direction in root.findall("direction"): + direction_name = direction.get("name") + for tram in direction.findall("tram"): + due_mins = tram.get("dueMins") + destination = tram.get("destination") + tram_info[direction_name].append( + {"dueMins": due_mins, "destination": destination} + ) # print the extracted tram information - print('Inbound Trams:', tram_info['Inbound']) - print('Outbound Trams:', tram_info['Outbound'], '\n') + print("Inbound Trams:", tram_info["Inbound"]) + print("Outbound Trams:", tram_info["Outbound"], "\n") else: - print('Failed to retrieve data:', self.response.status_code) - + print("Failed to retrieve data:", self.response.status_code) + # time.sleep(self.poll_interval) -if __name__ == '__main__': + +if __name__ == "__main__": luas = luasAPI() while True: - stop = str(input('Enter stop code to see live arrivals and departures, or \"exit\" to leave: ')) - if stop == 'exit': + stop = str( + input( + 'Enter stop code to see live arrivals and departures, or "exit" to leave: ' + ) + ) + if stop == "exit": break - luas.get(stop) \ No newline at end of file + luas.get(stop) diff --git a/server/src/main.py b/server/src/main.py index ff4f9c6..a9eeb8c 100644 --- a/server/src/main.py +++ b/server/src/main.py @@ -8,6 +8,7 @@ from src.weatherApi import weatherAPI from dotenv import load_dotenv + class Server: def __init__(self): # Configure logging @@ -31,8 +32,7 @@ def __init__(self): self.register_routes() # Login function - #self.login_logic.handle_login() - + # self.login_logic.handle_login() def configure_logging(self): """configure logging in server @@ -62,7 +62,9 @@ def add_middlewares(self): async def log_requests(request: Request, call_next): self.logger.info(f"Incoming {request.method} request to {request.url}") response = await call_next(request) - self.logger.info(f"Returning response with status code: {response.status_code}") + self.logger.info( + f"Returning response with status code: {response.status_code}" + ) return response def register_routes(self): @@ -97,7 +99,9 @@ async def websocket_endpoint(websocket: WebSocket): while True: data = await websocket.receive_text() self.logger.info(f"Received data: {data}") - await self.connection_manager.broadcast(f"Received location: {data}") + await self.connection_manager.broadcast( + f"Received location: {data}" + ) except WebSocketDisconnect: self.connection_manager.disconnect(websocket) self.logger.info("WebSocket disconnected") @@ -132,6 +136,7 @@ async def broadcast(self, message: str): for connection in self.active_connections: await connection.send_text(message) + # Instantiate server server = Server() app = server.app diff --git a/server/src/sample_luas_api.py b/server/src/sample_luas_api.py index f1f7339..3cef997 100644 --- a/server/src/sample_luas_api.py +++ b/server/src/sample_luas_api.py @@ -14,5 +14,5 @@ def main(): x.get() -if __name__ == '__main__': +if __name__ == "__main__": main() diff --git a/server/src/wayfinding.py b/server/src/wayfinding.py index 90ffe5e..9b3eefb 100644 --- a/server/src/wayfinding.py +++ b/server/src/wayfinding.py @@ -10,9 +10,9 @@ def get_routes(origin, destination, mode, alternatives, key): "destination": destination, "mode": mode, "alternatives": alternatives, - "key": key + "key": key, } response = requests.get(url, params=parameters) - + return response.json() diff --git a/server/src/weatherApi.py b/server/src/weatherApi.py index 91d54e0..a779b6c 100644 --- a/server/src/weatherApi.py +++ b/server/src/weatherApi.py @@ -1,31 +1,44 @@ import requests import numpy as np + + # from base_api import BaseAPI - # Dublin loc - # long = '-6.266155' - # lat = '53.350140' -class weatherAPI():# (BaseAPI): +# Dublin loc +# long = '-6.266155' +# lat = '53.350140' +class weatherAPI: # (BaseAPI): def __init__(self): super().__init__() def get(self, lat, lng): self.lat = lat self.lng = lng - self.url = f'https://api.open-meteo.com/v1/forecast?latitude={self.lat}&longitude={self.lng}&hourly=temperature_2m,apparent_temperature,precipitation,rain,snowfall,cloud_cover,wind_speed_10m&forecast_days=1&models=ecmwf_ifs025' + self.url = f"https://api.open-meteo.com/v1/forecast?latitude={self.lat}&longitude={self.lng}&hourly=temperature_2m,apparent_temperature,precipitation,rain,snowfall,cloud_cover,wind_speed_10m&forecast_days=1&models=ecmwf_ifs025" # Fetch the geoJSON data from the URL response = requests.get(self.url) # Check if the request was successful if response.status_code == 200: - data = response.json()['hourly'] - weather = np.column_stack((data['time'], data['temperature_2m'], data['apparent_temperature'], data['precipitation'], data['rain'], data['snowfall'], data['cloud_cover'], data['wind_speed_10m'] )) + data = response.json()["hourly"] + weather = np.column_stack( + ( + data["time"], + data["temperature_2m"], + data["apparent_temperature"], + data["precipitation"], + data["rain"], + data["snowfall"], + data["cloud_cover"], + data["wind_speed_10m"], + ) + ) print(weather) else: print("Failed to retrieve data:", response.status_code) - + # To test # w = weatherAPI() -# w.get('53.350140', '-6.266155') \ No newline at end of file +# w.get('53.350140', '-6.266155') diff --git a/server/tests/test_database_connection.py b/server/tests/test_database_connection.py index daa3833..74125fd 100644 --- a/server/tests/test_database_connection.py +++ b/server/tests/test_database_connection.py @@ -6,6 +6,7 @@ # Load environment variables from .env file load_dotenv() + @pytest.fixture def db_credentials(monkeypatch): """Mock database environment variables.""" @@ -15,6 +16,7 @@ def db_credentials(monkeypatch): monkeypatch.setenv("DB_PASSWORD", "test_password") monkeypatch.setenv("DB_PORT", "5432") + def test_db_connection(db_credentials): """Test database connection.""" DB_HOST = os.getenv("DB_HOST") @@ -30,7 +32,7 @@ def test_db_connection(db_credentials): database=DB_NAME, user=DB_USER, password=DB_PASSWORD, - port=DB_PORT + port=DB_PORT, ) assert connection is not None, "Connection failed" assert connection.client_encoding is not None, "Invalid connection encoding" diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index 0a66f61..4f73c2e 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -15,15 +15,15 @@ def test_calculate_route(): response = get_routes(origin, Destination, mode, alternatives, key) - assert response.get("status") == 'OK' + assert response.get("status") == "OK" def test_calculate_route_missing_params(): # missing parameters test - response = get_routes('', '', '', '', '') + response = get_routes("", "", "", "", "") - assert response.get("status") == 'INVALID_REQUEST' + assert response.get("status") == "INVALID_REQUEST" def test_calculate_route_api_key(): @@ -34,10 +34,7 @@ def test_calculate_route_api_key(): mode = "Walking" response = get_routes( - origin, - Destination, - mode, - alternatives='TRUE', - key='Ahdlkjhfdadsf1234sxf') + origin, Destination, mode, alternatives="TRUE", key="Ahdlkjhfdadsf1234sxf" + ) assert response.get("status") == "REQUEST_DENIED" From 98ebccb062369c43212c915483819d462d3dde80 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Thu, 13 Feb 2025 17:51:02 +0000 Subject: [PATCH 026/100] Working on developing networking file --- server/Database_class.py | 28 +++++- server/networking.py | 43 ++++++++- tests/test_database_connection.py | 24 ++++- tests/test_networking.py | 140 ++++++++++++++++++------------ 4 files changed, 176 insertions(+), 59 deletions(-) diff --git a/server/Database_class.py b/server/Database_class.py index b687d89..477f47b 100644 --- a/server/Database_class.py +++ b/server/Database_class.py @@ -6,7 +6,7 @@ load_dotenv() class DataBase(): - def __init__(self): + def __init__(self, host=os.getenv("DB_HOST"), name=os.getenv("DB_NAME"), user=os.getenv("DB_USER"), password=os.getenv("DB_PASSWORD"), port=int(os.getenv("DB_PORT"))): # Database connection details self.DB_HOST = os.getenv("DB_HOST") self.DB_NAME = os.getenv("DB_NAME") @@ -113,6 +113,28 @@ def update_entry(self, table_name: str, user: str, column: str, data: str) -> No cursor.execute(query) cursor.close() + def search_entry(self, table_name: str, user: str, column: str): + """Search for entry in Table Cell + + Args: + table_name (str): Name of table to be queried + user (str): selected user + column (str): column needed + """ + cursor = self.connection.cursor() + + query = f"""SELECT {column} FROM {table_name} WHERE username = '{user}';""" + + cursor.execute(query) + records = cursor.fetchall() + + if type(records) is tuple: + records = records[0][0] + + cursor.close() + + return records + def print_table(self, tablename: str): """Prints current selected table @@ -193,10 +215,12 @@ def main(): db.connect_db() db.create_table(table_name, table_info) db.add_entry(table_name, table_data) + + result = db.search_entry(table_name, "Conor", "pending_friends") # db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) # db.remove_entry(table_name, 'Conor') # db.update_entry(table_name, 'Keith', 'password', 'Roots123') - db.print_table(table_name) + # db.print_table(table_name) # print(db.search_user(table_name, 'Conor')) db.close_con() diff --git a/server/networking.py b/server/networking.py index b0ad613..38a28c2 100644 --- a/server/networking.py +++ b/server/networking.py @@ -1,8 +1,47 @@ +from pydantic import BaseModel +import os +from dotenv import load_dotenv +import logging +from fastapi import HTTPException + from Database_class import DataBase class Networking(): - def __init__(self): - pass + def __init__(self, api, logger: logging.Logger): + self.app = api + self.logger = logger + self.pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") + + # Load environment vars + load_dotenv() + self.supabase_url = os.getenv("SUPABASE_URL") + self.supabase_key = os.getenv("SUPABASE_SERVICE_KEY") + + # register login route + self.handle_login() + + # client sends request to server + def handle_friend_request_sent(self): + @self.app.post("/send_request") + async def request_data(request: RequestData): + self.logger.info(f"Received friend request from {request.sender} to {request.receiver}") + + if (self.update_pending_friends(request.sender, request.receiver)): + self.logger.info(f"Friend request successfully sent to {request.receiver}") + + return {"message": f"Friend request successfully sent to {request.receiver}"} + + return {"message": f"Friend request to {request.receiver} unsuccessful"} + + def update_pending_friends(sender, receiver): + + + + + +class RequestData(BaseModel): + sender: str + receiver: str if __name__ == "__main__": pass \ No newline at end of file diff --git a/tests/test_database_connection.py b/tests/test_database_connection.py index 4b230dc..d487aad 100644 --- a/tests/test_database_connection.py +++ b/tests/test_database_connection.py @@ -2,10 +2,16 @@ from unittest.mock import patch, MagicMock from server.Database_class import DataBase +DB_NAME = "test_db" +DB_USER = "your_user" +DB_PASSWORD = "your_password" +DB_HOST = "localhost" +DB_PORT = "5432" + @pytest.fixture def db(): """Fixture to initialise and return the DataBase object""" - return DataBase() + return DataBase(DB_HOST, DB_NAME, DB_USER, DB_PASSWORD, DB_PORT) @patch("server.Database_class.pg8000.connect") def test_connect_db(mock_connect, db): @@ -81,6 +87,22 @@ def test_update_entry(db): ) cursor_mock.close.assert_called_once() +def test_search_entry(db): + """Test search_entry method when entry is found""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + cursor_mock.fetchall.return_value = ['jason', 'keith', 'cormac'] + table_name = "test_table" + user = "john_doe" + column = "pending_friends" + + result = db.search_entry(table_name, user, column) + cursor_mock.execute.assert_called_once_with( + "SELECT pending_friends FROM test_table WHERE username = 'john_doe';" + ) + cursor_mock.close.assert_called_once() + assert result == ['jason', 'keith', 'cormac'] + def test_print_table(db, capsys): """Test print_table method""" db.connection = MagicMock() diff --git a/tests/test_networking.py b/tests/test_networking.py index 9187a64..221031b 100644 --- a/tests/test_networking.py +++ b/tests/test_networking.py @@ -1,56 +1,88 @@ -import pytest -from unittest.mock import patch, MagicMock -from server.Database_class import DataBase - -@pytest.fixture -def db(): - """Fixture to initialise and return the DataBase object""" - return DataBase() - -@patch("server.Database_class.pg8000.connect") -def test_connect_db(mock_connect, db): - """Test database connection""" - mock_connect.return_value = MagicMock() - db.connect_db() - mock_connect.assert_called_once_with( - host=db.DB_HOST, - database=db.DB_NAME, - user=db.DB_USER, - password=db.DB_PASSWORD, - port=db.DB_PORT - ) - assert db.connection is not None - -def test_create_table(db): - """Test create_table method""" - db.connection = MagicMock() - cursor_mock = db.connection.cursor.return_value - table_name = "test_table" - table_info = { - "id": "SERIAL PRIMARY KEY", - "username": "VARCHAR(50)", - "friends": "VARCHAR(50)", - "pending friends": "VARCHAR(50)" - } +# import pytest +# from unittest.mock import patch, MagicMock +# from server.Database_class import DataBase + +# # Processing a friend request - sent request +# # Processing a friend request - friend acceptance +# # Handling a message request between two clients +# # Source username to IP lookup in db, sending to destination username using IP lookup in db + +# import pytest +# import psycopg2 + +# DB_NAME = "test_db" +# DB_USER = "your_user" +# DB_PASSWORD = "your_password" +# DB_HOST = "localhost" +# DB_PORT = "5432" + +# @pytest.fixture(scope="session") +# def setup_db(): +# """Fixture to create and destroy a temporary PostgreSQL test database.""" +# # Connect to the default database +# conn = psycopg2.connect( +# dbname="postgres", +# user=DB_USER, +# password=DB_PASSWORD, +# host=DB_HOST, +# port=DB_PORT +# ) +# conn.autocommit = True +# cursor = conn.cursor() - db.create_table(table_name, table_info) - cursor_mock.execute.assert_called_once_with( - "CREATE TABLE test_table (id SERIAL PRIMARY KEY,name VARCHAR(50));" - ) - cursor_mock.close.assert_called_once() - -def test_add_entry(db): - """Test add_entry method""" - db.connection = MagicMock() - cursor_mock = db.connection.cursor.return_value - table_name = "test_table" - table_data = { - "username": "john_doe", - "password": "password123" - } +# # Create test database +# cursor.execute(f"CREATE DATABASE {DB_NAME};") +# yield # Tests run here - db.add_entry(table_name, table_data) - cursor_mock.execute.assert_called_once_with( - "INSERT INTO test_table (username,password) VALUES ('john_doe','password123');" - ) - cursor_mock.close.assert_called_once() \ No newline at end of file +# # Drop test database after tests +# cursor.execute(f"DROP DATABASE {DB_NAME};") +# cursor.close() +# conn.close() + +# @pytest.fixture +# def db_conn(setup_db): +# """Fixture to connect to the test database.""" +# conn = psycopg2.connect( +# dbname=DB_NAME, +# user=DB_USER, +# password=DB_PASSWORD, +# host=DB_HOST, +# port=DB_PORT +# ) +# yield conn +# conn.close() + +# def test_insert_and_query(db_conn): +# """Example test that inserts and queries data.""" +# cursor = db_conn.cursor() +# cursor.execute(""" +# CREATE TABLE users ( +# id SERIAL PRIMARY KEY, +# username VARCHAR(50) NOT NULL +# ); +# """) +# cursor.execute("INSERT INTO users (username) VALUES ('john_doe');") +# cursor.execute("SELECT username FROM users WHERE username = 'john_doe';") +# result = cursor.fetchone() +# assert result[0] == 'john_doe' +# cursor.close() + + + +# def test_sent_friend_request_db(db_conn): +# # Sender User, Receiver User +# friend_request = ReceiveFriendRequest() + +# sender = friend_request[0] +# receiver = friend_request[1] + +# cursor = db_conn.cursor() +# cursor.execute(f"SELECT pending FROM users WHERE username = '{receiver}'") + +# cursor.execute(f"""UPDATE {table_name} +# SET {column} = '{data}' +# WHERE username = '{user}';INSERT INTO users (pending_requests) VALUES ('{sender}') WHERE username = {receiver};""") + +# cursor.close() + + From 5d51f8192ec082f176283754e42374123d212c9e Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Fri, 14 Feb 2025 09:45:50 +0000 Subject: [PATCH 027/100] adding append_entry method to database class --- server/Database_class.py | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/server/Database_class.py b/server/Database_class.py index 477f47b..bf4c499 100644 --- a/server/Database_class.py +++ b/server/Database_class.py @@ -134,6 +134,22 @@ def search_entry(self, table_name: str, user: str, column: str): cursor.close() return records + + def append_entry(self, table_name: str, sender: str, receiver: str, column: str) -> None: + """Append value to entry in Table Cell + + Args: + table_name (str): Name of table to be queried + sender (str): user sending request + receiver (str): user receiving request + column (str): column needed + """ + cursor = self.connection.cursor() + + query = f"""UPDATE {table_name} SET {column} = array_append({column},'{sender}') WHERE username = '{receiver}'""" + + cursor.execute(query) + cursor.close() def print_table(self, tablename: str): """Prints current selected table @@ -207,7 +223,7 @@ def main(): "username": "Conor", "password": "abc123", "friends_list": "ARRAY['mark', 'gunjan', 'fiona']", - "pending_friends": "ARRAY['jason', 'keith', 'cormac']", + "pending_friends": "ARRAY['cormac', 'jason']", "sus_score": "100" } @@ -217,6 +233,11 @@ def main(): db.add_entry(table_name, table_data) result = db.search_entry(table_name, "Conor", "pending_friends") + print(result) + db.append_entry(table_name, "keith", "Conor", "pending_friends") + result = db.search_entry(table_name, "Conor", "pending_friends") + print(result) + # db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) # db.remove_entry(table_name, 'Conor') # db.update_entry(table_name, 'Keith', 'password', 'Roots123') From f79ceb3ceda5510e1e7d1665249f57d5b7c1ef93 Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Fri, 14 Feb 2025 09:54:28 +0000 Subject: [PATCH 028/100] adding new test for append_entry and formatting files --- server/Database_class.py | 23 +++++++++++------------ tests/test_database_connection.py | 17 ++++++++++++++++- 2 files changed, 27 insertions(+), 13 deletions(-) diff --git a/server/Database_class.py b/server/Database_class.py index bf4c499..75bae7f 100644 --- a/server/Database_class.py +++ b/server/Database_class.py @@ -5,6 +5,7 @@ # Load environment variables from .env file load_dotenv() + class DataBase(): def __init__(self, host=os.getenv("DB_HOST"), name=os.getenv("DB_NAME"), user=os.getenv("DB_USER"), password=os.getenv("DB_PASSWORD"), port=int(os.getenv("DB_PORT"))): # Database connection details @@ -106,16 +107,14 @@ def update_entry(self, table_name: str, user: str, column: str, data: str) -> No """ cursor = self.connection.cursor() - query = f"""UPDATE {table_name} - SET {column} = '{data}' - WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic + query = f"""UPDATE {table_name} SET {column} = '{data}' WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic cursor.execute(query) cursor.close() - def search_entry(self, table_name: str, user: str, column: str): + def search_entry(self, table_name: str, user: str, column: str): """Search for entry in Table Cell - + Args: table_name (str): Name of table to be queried user (str): selected user @@ -124,7 +123,7 @@ def search_entry(self, table_name: str, user: str, column: str): cursor = self.connection.cursor() query = f"""SELECT {column} FROM {table_name} WHERE username = '{user}';""" - + cursor.execute(query) records = cursor.fetchall() @@ -134,20 +133,20 @@ def search_entry(self, table_name: str, user: str, column: str): cursor.close() return records - + def append_entry(self, table_name: str, sender: str, receiver: str, column: str) -> None: - """Append value to entry in Table Cell - + """Append value to an array entry in Table Cell + Args: table_name (str): Name of table to be queried sender (str): user sending request receiver (str): user receiving request - column (str): column needed + column (str): column needed - must be an array column """ cursor = self.connection.cursor() - query = f"""UPDATE {table_name} SET {column} = array_append({column},'{sender}') WHERE username = '{receiver}'""" - + query = f"""UPDATE {table_name} SET {column} = array_append({column},'{sender}') WHERE username = '{receiver}';""" + cursor.execute(query) cursor.close() diff --git a/tests/test_database_connection.py b/tests/test_database_connection.py index d487aad..d526681 100644 --- a/tests/test_database_connection.py +++ b/tests/test_database_connection.py @@ -83,7 +83,7 @@ def test_update_entry(db): db.update_entry(table_name, user, column, data) cursor_mock.execute.assert_called_once_with( - "UPDATE test_table\n SET password = 'new_password123'\n WHERE username = 'john_doe';" + "UPDATE test_table SET password = 'new_password123' WHERE username = 'john_doe';" ) cursor_mock.close.assert_called_once() @@ -103,6 +103,21 @@ def test_search_entry(db): cursor_mock.close.assert_called_once() assert result == ['jason', 'keith', 'cormac'] +def test_append_entry(db): + """Test search_entry method when entry is found""" + db.connection = MagicMock() + cursor_mock = db.connection.cursor.return_value + table_name = "test_table" + sender = "cormac" + receiver = "john_doe" + column = "pending_friends" + + db.append_entry(table_name, sender, receiver, column) + cursor_mock.execute.assert_called_once_with( + "UPDATE test_table SET pending_friends = array_append(pending_friends,'cormac') WHERE username = 'john_doe';" + ) + cursor_mock.close.assert_called_once() + def test_print_table(db, capsys): """Test print_table method""" db.connection = MagicMock() From 7e019646f7653558dc9f4c6847421779209c6b1b Mon Sep 17 00:00:00 2001 From: Mark Golden Date: Fri, 14 Feb 2025 09:59:08 +0000 Subject: [PATCH 029/100] configured blakck auto formatting, reformatted in line with pep8 --- server/pyproject.toml | 2 ++ server/src/Database_class.py | 19 ++++++++++++----- server/src/bus_api.py | 3 ++- server/src/dublin_bike_api.py | 6 ++---- server/src/login.py | 27 +++++++++++++++--------- server/src/luas_api.py | 17 +++++++++------ server/src/main.py | 13 +++++++----- server/src/wayfinding.py | 1 - server/src/weatherApi.py | 2 +- server/tests/test_database_connection.py | 8 +++++-- server/tests/test_wayfinding.py | 6 +++++- 11 files changed, 67 insertions(+), 37 deletions(-) create mode 100644 server/pyproject.toml diff --git a/server/pyproject.toml b/server/pyproject.toml new file mode 100644 index 0000000..9216134 --- /dev/null +++ b/server/pyproject.toml @@ -0,0 +1,2 @@ +[tool.black] +line-length = 79 \ No newline at end of file diff --git a/server/src/Database_class.py b/server/src/Database_class.py index 8216191..1b604c5 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -34,7 +34,9 @@ def connect_db(self) -> None: except Exception as e: print("An error occurred:", e) - def create_table(self, table_name: str, table_info: dict[str, str]) -> None: + def create_table( + self, table_name: str, table_info: dict[str, str] + ) -> None: """Creates table in database Args: @@ -95,7 +97,9 @@ def remove_entry(self, table_name: str, username: str) -> None: cursor.execute(query) cursor.close() - def update_entry(self, table_name: str, user: str, column: str, data: str) -> None: + def update_entry( + self, table_name: str, user: str, column: str, data: str + ) -> None: """Update entry of specific column Args: @@ -106,9 +110,10 @@ def update_entry(self, table_name: str, user: str, column: str, data: str) -> No """ cursor = self.connection.cursor() + # TODO: check if username needs to be made dynamic query = f"""UPDATE {table_name} SET {column} = '{data}' - WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic + WHERE username = '{user}';""" cursor.execute(query) cursor.close() @@ -153,7 +158,9 @@ def search_user(self, table_name: str, user: str) -> bool: try: cursor = self.connection.cursor() - query = f"SELECT username FROM {table_name} WHERE username = '{user}';" + query = ( + f"SELECT username FROM {table_name} WHERE username = '{user}';" + ) cursor.execute(query) record = list(cursor.fetchall()) cursor.close() @@ -180,7 +187,9 @@ def main(): db.connect_db() db.create_table(table_name, table_info) db.add_entry(table_name, table_data) - db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) + db.add_entry( + table_name, {"username": "Keith", "password": "strong password"} + ) # db.remove_entry(table_name, 'Conor') db.update_entry(table_name, "Keith", "password", "Roots123") db.print_table(table_name) diff --git a/server/src/bus_api.py b/server/src/bus_api.py index db71b39..fea2abe 100644 --- a/server/src/bus_api.py +++ b/server/src/bus_api.py @@ -1,4 +1,5 @@ -""" Python 3.2 """ +"""Python 3.2""" + import urllib.request import json diff --git a/server/src/dublin_bike_api.py b/server/src/dublin_bike_api.py index 724dd7a..c32232f 100644 --- a/server/src/dublin_bike_api.py +++ b/server/src/dublin_bike_api.py @@ -1,8 +1,5 @@ from base_api import BaseAPI import requests -import json -import time -import datetime # URL of Open Data APIKEY = "3386ce10aca77dde762ab5c2de0177f7405cb6b3" @@ -17,7 +14,8 @@ def get(self, apiKey): # URL of Open Data self.apiKey = apiKey self.url = ( - "https://api.jcdecaux.com/vls/v1/stations?contract=dublin&apiKey=" + APIKEY + "https://api.jcdecaux.com/vls/v1/stations?contract=dublin&apiKey=" + + APIKEY ) self.response = requests.get(self.url) diff --git a/server/src/login.py b/server/src/login.py index b7a9c80..2318fe8 100644 --- a/server/src/login.py +++ b/server/src/login.py @@ -2,7 +2,6 @@ # May need to be chagned in future with restructure of DB connection from supabase import create_client, Client -from pydantic import BaseModel from passlib.context import CryptContext import os from dotenv import load_dotenv @@ -23,7 +22,9 @@ def __init__(self, api, logger: logging.Logger): self.supabase_key = os.getenv("SUPABASE_SERVICE_KEY") # Init Supabase Client - self.supabase: Client = create_client(self.supabase_url, self.supabase_key) + self.supabase: Client = create_client( + self.supabase_url, self.supabase_key + ) # register login route self.handle_login() @@ -39,22 +40,26 @@ async def login_data(login: LoginDetails): if not user: self.logger.warning(f"User not fond: {login.username}") - # raise HTTPException(status_code=400, detail="Invalid username/password") - return {"message": f"Invalid username"} + return {"message": f'{"Invalid username"}'} self.logger.info(f"User data found for {login.username}") # Verify password using bcrypt - if not self.verify_password(login.password, user["hashed_password"]): - return {"message": f"Invalid password"} - # raise HTTPException(status_code=400, detail="Invalid username/password") + if not self.verify_password( + login.password, user["hashed_password"] + ): + return {"message": f'{"Invalid password"}'} # return success message - return {"message": f"Login successful for user: {login.username}"} + return { + "message": f"Login successful for user: {login.username}" + } except Exception as e: self.logger.error(f"Error processing login: {str(e)}") - raise HTTPException(status_code=500, detail="Internal server error") + raise HTTPException( + status_code=500, detail="Internal server error" + ) def get_user_by_username(self, username: str): # Querty sb to find user by username @@ -80,7 +85,9 @@ def get_user_by_username(self, username: str): self.logger.error(f"Error querying Database: {str(e)}") return None - def verify_password(self, plain_password: str, hashed_password: str) -> bool: + def verify_password( + self, plain_password: str, hashed_password: str + ) -> bool: # Verifies a plain password against hashed version try: diff --git a/server/src/luas_api.py b/server/src/luas_api.py index 3c7498f..9ccd52a 100644 --- a/server/src/luas_api.py +++ b/server/src/luas_api.py @@ -1,7 +1,4 @@ import requests -from xml.dom.minidom import parseString -import time -import datetime import xml.etree.ElementTree as ET @@ -13,7 +10,7 @@ def __init__(self): def get(self, stop): # URL of Open Data self.stop = stop - self.url = f"http://luasforecasts.rpa.ie/xml/get.ashx?action=forecast&stop={self.stop}&encrypt=false" + self.url = f"http://luasforecasts.rpa.ie/xml/get.ashx?action=forecast&stop={self.stop}&encrypt=false" # noqa: E501 # while True: # # Fetch the geoJSON data from the URL @@ -22,10 +19,15 @@ def get(self, stop): # # Check if the request was successful # if response.status_code == 200: # for item in response.json(): - # print(item['name'], ' ', item['available_bikes'], (int(item['last_update']))) + # print( + # item["name"], + # " ", + # item["available_bikes"], + # (int(item["last_update"])), + # ) # else: - # print('Failed to retrieve data:', response.status_code) + # print("Failed to retrieve data:", response.status_code) # time.sleep(self.poll_interval) @@ -66,7 +68,8 @@ def get(self, stop): while True: stop = str( input( - 'Enter stop code to see live arrivals and departures, or "exit" to leave: ' + 'Enter stop code to see live arrivals and departures,' + 'or "exit" to leave: ' ) ) if stop == "exit": diff --git a/server/src/main.py b/server/src/main.py index a9eeb8c..27ef7b2 100644 --- a/server/src/main.py +++ b/server/src/main.py @@ -6,7 +6,6 @@ import sys from src.login import Login from src.weatherApi import weatherAPI -from dotenv import load_dotenv class Server: @@ -60,7 +59,9 @@ def configure_cors(self): def add_middlewares(self): @self.app.middleware("http") async def log_requests(request: Request, call_next): - self.logger.info(f"Incoming {request.method} request to {request.url}") + self.logger.info( + f"Incoming {request.method} request to {request.url}" + ) response = await call_next(request) self.logger.info( f"Returning response with status code: {response.status_code}" @@ -75,7 +76,9 @@ async def root(): @self.app.post("/echo") async def echo_message(message: Message): - self.logger.info(f"Received message in echo endpoint: {message.text}") + self.logger.info( + f"Received message in echo endpoint: {message.text}" + ) try: return {"message": f"'{message.text}' sent from server"} except Exception as e: @@ -84,12 +87,12 @@ async def echo_message(message: Message): @self.app.get("/weather") async def get_weather(): - self.logger.info(f"Received weather API request") + self.logger.info(f'{"Received weather API request"}') try: # Example coordinates for Dublin return self.weather_api.get(lat="-6.266155", lng="53.350140") except Exception as e: - self.logger.error("Error hitting weather endpoint") + self.logger.error(f"Error hitting weather endpoint: {e}") raise @self.app.websocket("/ws/location") diff --git a/server/src/wayfinding.py b/server/src/wayfinding.py index 9b3eefb..6ba23cc 100644 --- a/server/src/wayfinding.py +++ b/server/src/wayfinding.py @@ -1,5 +1,4 @@ import requests -import json def get_routes(origin, destination, mode, alternatives, key): diff --git a/server/src/weatherApi.py b/server/src/weatherApi.py index a779b6c..dd05869 100644 --- a/server/src/weatherApi.py +++ b/server/src/weatherApi.py @@ -13,7 +13,7 @@ def __init__(self): def get(self, lat, lng): self.lat = lat self.lng = lng - self.url = f"https://api.open-meteo.com/v1/forecast?latitude={self.lat}&longitude={self.lng}&hourly=temperature_2m,apparent_temperature,precipitation,rain,snowfall,cloud_cover,wind_speed_10m&forecast_days=1&models=ecmwf_ifs025" + self.url = f"https://api.open-meteo.com/v1/forecast?latitude={self.lat}&longitude={self.lng}&hourly=temperature_2m,apparent_temperature,precipitation,rain,snowfall,cloud_cover,wind_speed_10m&forecast_days=1&models=ecmwf_ifs025" # noqa: E501 # Fetch the geoJSON data from the URL response = requests.get(self.url) diff --git a/server/tests/test_database_connection.py b/server/tests/test_database_connection.py index 74125fd..cb41e4e 100644 --- a/server/tests/test_database_connection.py +++ b/server/tests/test_database_connection.py @@ -10,7 +10,9 @@ @pytest.fixture def db_credentials(monkeypatch): """Mock database environment variables.""" - monkeypatch.setenv("DB_HOST", "localhost") # Change to your actual test DB host + monkeypatch.setenv( + "DB_HOST", "localhost" + ) # Change to your actual test DB host monkeypatch.setenv("DB_NAME", "test_db") monkeypatch.setenv("DB_USER", "test_user") monkeypatch.setenv("DB_PASSWORD", "test_password") @@ -35,7 +37,9 @@ def test_db_connection(db_credentials): port=DB_PORT, ) assert connection is not None, "Connection failed" - assert connection.client_encoding is not None, "Invalid connection encoding" + assert ( + connection.client_encoding is not None + ), "Invalid connection encoding" except Exception as e: pytest.fail(f"Database connection failed with error: {e}") finally: diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index 4f73c2e..40a091b 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -34,7 +34,11 @@ def test_calculate_route_api_key(): mode = "Walking" response = get_routes( - origin, Destination, mode, alternatives="TRUE", key="Ahdlkjhfdadsf1234sxf" + origin, + Destination, + mode, + alternatives="TRUE", + key="Ahdlkjhfdadsf1234sxf", ) assert response.get("status") == "REQUEST_DENIED" From 3cc68969e8a8c06e4f8c07f852eba89f6fe10e27 Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Fri, 14 Feb 2025 10:30:25 +0000 Subject: [PATCH 030/100] Create backend-ci.yml --- .github/workflows/backend-ci.yml | 60 ++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 .github/workflows/backend-ci.yml diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml new file mode 100644 index 0000000..6b4ae5b --- /dev/null +++ b/.github/workflows/backend-ci.yml @@ -0,0 +1,60 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Backend CI + +on: + push: + branches: [ "develop", "main" ] + pull_request: + branches: [ "develop" ] + +permissions: + contents: read + +jobs: + lint: + name: Lint Python Code (PEP8) + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + cd server + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install flake8 black + - name: Run flake8 (Linting) + run: | + cd server + flake8 src/ tests/ + - name: Run Black (Formatting Check) + run: | + cd server + black --check src/ tests/ + test: + name: Run Backend Tests + runs-on: ubuntu-latest + needs: lint # Ensures linting passes before running tests + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Create .env file in CI + run: | + cd server + echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }} >> .env" + echo "SUPABASE_URL=${{ secrets.SUPABASE_KEY }} >> .env" + - name: Run Tests + run: | + cd server + pytest tests/ --ignore=tests/test_database_connection.py From 8922b7e64a30d73e80630081dae44228dd2e43fe Mon Sep 17 00:00:00 2001 From: Cormac Sharkey <101349412+CormacSharkey@users.noreply.github.com> Date: Fri, 14 Feb 2025 10:40:43 +0000 Subject: [PATCH 031/100] Update backend-ci.yml --- .github/workflows/backend-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 6b4ae5b..262eb3d 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -39,7 +39,7 @@ jobs: - name: Run Black (Formatting Check) run: | cd server - black --check src/ tests/ + black --check --diff src/ tests/ test: name: Run Backend Tests runs-on: ubuntu-latest From 673470154a54ebb5391510363b1057e214adef04 Mon Sep 17 00:00:00 2001 From: Mark Golden Date: Fri, 14 Feb 2025 12:11:06 +0000 Subject: [PATCH 032/100] fina check --- server/src/luas_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/luas_api.py b/server/src/luas_api.py index 9ccd52a..01bf48f 100644 --- a/server/src/luas_api.py +++ b/server/src/luas_api.py @@ -68,8 +68,8 @@ def get(self, stop): while True: stop = str( input( - 'Enter stop code to see live arrivals and departures,' - 'or "exit" to leave: ' + "Enter stop code to see live arrivals and departures," + ' or "exit" to leave: ' ) ) if stop == "exit": From 625eff8ef72a78391ed80e2f32f52eabe1392827 Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Fri, 14 Feb 2025 12:20:40 +0000 Subject: [PATCH 033/100] Update backend-ci.yml --- .github/workflows/backend-ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 262eb3d..f8294d4 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -30,7 +30,6 @@ jobs: run: | cd server python -m pip install --upgrade pip - pip install -r requirements.txt pip install flake8 black - name: Run flake8 (Linting) run: | @@ -48,12 +47,24 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + cd server + python -m pip install --upgrade pip + pip install -r requirements.txt - name: Create .env file in CI run: | cd server echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }} >> .env" echo "SUPABASE_URL=${{ secrets.SUPABASE_KEY }} >> .env" + - name: Run Tests run: | cd server From a9141c45aef14f5e90f4a77a33652f21274e1bd0 Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Fri, 14 Feb 2025 12:28:09 +0000 Subject: [PATCH 034/100] Update backend-ci.yml --- .github/workflows/backend-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index f8294d4..214bdae 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -62,8 +62,10 @@ jobs: - name: Create .env file in CI run: | cd server + touch .env echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }} >> .env" echo "SUPABASE_URL=${{ secrets.SUPABASE_KEY }} >> .env" + echo "GOOGLE_MAPS_API_KEY=${{ secrets.GOOGLE_MAPS_API_KEY }} >> .env" - name: Run Tests run: | From 46f44ac2ee8e720b25940835405f68430f91bdcb Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Fri, 14 Feb 2025 12:36:47 +0000 Subject: [PATCH 035/100] editing append_entry and test --- server/Database_class.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/server/Database_class.py b/server/Database_class.py index 75bae7f..bf002db 100644 --- a/server/Database_class.py +++ b/server/Database_class.py @@ -146,8 +146,11 @@ def append_entry(self, table_name: str, sender: str, receiver: str, column: str) cursor = self.connection.cursor() query = f"""UPDATE {table_name} SET {column} = array_append({column},'{sender}') WHERE username = '{receiver}';""" - - cursor.execute(query) + try: + cursor.execute(query) + except Exception as e: + print("An error occurred: Cannot append to non-array column in database") + cursor.close() def print_table(self, tablename: str): @@ -233,8 +236,8 @@ def main(): result = db.search_entry(table_name, "Conor", "pending_friends") print(result) - db.append_entry(table_name, "keith", "Conor", "pending_friends") - result = db.search_entry(table_name, "Conor", "pending_friends") + db.append_entry(table_name, "keith", "Conor", "sus_score") + result = db.search_entry(table_name, "Conor", "sus_score") print(result) # db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) From b1e425181d603be796f64a8138aa930ab9fd36e2 Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Fri, 14 Feb 2025 12:40:05 +0000 Subject: [PATCH 036/100] Update backend-ci.yml --- .github/workflows/backend-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 214bdae..e11bb12 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -63,9 +63,9 @@ jobs: run: | cd server touch .env - echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }} >> .env" - echo "SUPABASE_URL=${{ secrets.SUPABASE_KEY }} >> .env" - echo "GOOGLE_MAPS_API_KEY=${{ secrets.GOOGLE_MAPS_API_KEY }} >> .env" + echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }}" >> .env + echo "SUPABASE_URL=${{ secrets.SUPABASE_KEY }}" >> .env + echo "GOOGLE_MAPS_API_KEY=${{ secrets.GOOGLE_MAPS_API_KEY }}" >> .env - name: Run Tests run: | From 409691ba6ef3762ef8f0cb71b2f044b4b5482913 Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Fri, 14 Feb 2025 13:03:34 +0000 Subject: [PATCH 037/100] adding rollback to some database methods --- server/Database_class.py | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/server/Database_class.py b/server/Database_class.py index bf002db..4544ccc 100644 --- a/server/Database_class.py +++ b/server/Database_class.py @@ -122,17 +122,23 @@ def search_entry(self, table_name: str, user: str, column: str): """ cursor = self.connection.cursor() - query = f"""SELECT {column} FROM {table_name} WHERE username = '{user}';""" + records = None - cursor.execute(query) - records = cursor.fetchall() + try: + query = f"""SELECT {column} FROM {table_name} WHERE username = '{user}';""" - if type(records) is tuple: - records = records[0][0] + cursor.execute(query) + records = cursor.fetchall() - cursor.close() + if type(records) is tuple: + records = records[0][0] + except Exception as e: + print("An error occurred: ", e) + self.connection.rollback() - return records + finally: + cursor.close() + return records def append_entry(self, table_name: str, sender: str, receiver: str, column: str) -> None: """Append value to an array entry in Table Cell @@ -145,13 +151,15 @@ def append_entry(self, table_name: str, sender: str, receiver: str, column: str) """ cursor = self.connection.cursor() - query = f"""UPDATE {table_name} SET {column} = array_append({column},'{sender}') WHERE username = '{receiver}';""" try: + query = f"""UPDATE {table_name} SET {column} = array_append({column},'{sender}') WHERE username = '{receiver}';""" cursor.execute(query) except Exception as e: print("An error occurred: Cannot append to non-array column in database") + self.connection.rollback() - cursor.close() + finally: + cursor.close() def print_table(self, tablename: str): """Prints current selected table @@ -170,8 +178,6 @@ def print_table(self, tablename: str): for record in records: print(record) - # Close the cursor - cursor.close() except Exception as e: print("An error occurred:", e) @@ -197,7 +203,6 @@ def search_user(self, table_name: str, user: str) -> bool: query = f"SELECT username FROM {table_name} WHERE username = '{user}';" cursor.execute(query) record = list(cursor.fetchall()) - cursor.close() if record: return True From beab982d5d557e41ae0bfe8ec28e76ee40a04e83 Mon Sep 17 00:00:00 2001 From: FEguare <123463013+FEguare@users.noreply.github.com> Date: Fri, 14 Feb 2025 13:16:02 +0000 Subject: [PATCH 038/100] caching functions & tests --- .../async-storage.js | 2 + client/caching.jsx | 53 +++--------- client/caching.test.js | 84 +++++++++++++++++++ 3 files changed, 96 insertions(+), 43 deletions(-) create mode 100644 client/__mocks__/@react-native-async-storage/async-storage.js create mode 100644 client/caching.test.js diff --git a/client/__mocks__/@react-native-async-storage/async-storage.js b/client/__mocks__/@react-native-async-storage/async-storage.js new file mode 100644 index 0000000..ed40cd6 --- /dev/null +++ b/client/__mocks__/@react-native-async-storage/async-storage.js @@ -0,0 +1,2 @@ +export * from '@react-native-async-storage/async-storage/jest/async-storage-mock'; + diff --git a/client/caching.jsx b/client/caching.jsx index d27b680..56d11eb 100644 --- a/client/caching.jsx +++ b/client/caching.jsx @@ -1,29 +1,29 @@ -import {AsyncStorage} from 'react-native'; +import AsyncStorage from '@react-native-async-storage/async-storage'; -_storeData = async (key, data) => { +export const storeData = async (key, data) => { try { await AsyncStorage.setItem( JSON.stringify(key), JSON.stringify(data), ); } catch (error) { - console.error('Error storing data in cache') + console.error('Error storing data in cache'); } }; -_retrieveData = async (key) => { +export const retrieveData = async (key) => { try { const value = await AsyncStorage.getItem(JSON.stringify(key)); if (value !== null) { console.log(value); - return value; + return value != null ? JSON.parse(value) : null; } } catch (error) { console.error('Error retrieving data from cache') } }; -_removeData = async (key) => { +export const removeData = async (key) => { try { await AsyncStorage.removeItem(JSON.stringify(key)); console.log('Removed successfully'); @@ -32,23 +32,17 @@ _removeData = async (key) => { } }; -_updateData = async (key, changedData) => { +export const updateData = async (key, changedData) => { try { AsyncStorage.mergeItem( JSON.stringify(key), - JSON.stringify(changedData), - // () => { - _retrieveData(key) - // }, + JSON.stringify(changedData) ); } catch (error) { - console.error('Error updating data in cache') + console.error('Error updating data in cache'); } }; -// let UID123_object = { -// name: 'Chris', -// age: 30, /* weekly emisions @@ -87,31 +81,4 @@ weekly emisions } } - */ -// traits: {hair: 'brown', eyes: 'brown'}, -// }; -// // You only need to define what will be added or updated -// let UID123_delta = { -// age: 31, -// traits: {eyes: 'blue', shoe_size: 10}, -// }; - -AsyncStorage.setItem( - 'UID123', - JSON.stringify(UID123_object), - () => { - AsyncStorage.mergeItem( - 'UID123', - JSON.stringify(UID123_delta), - () => { - AsyncStorage.getItem('UID123', (err, result) => { - console.log(result); - }); - }, - ); - }, -); - - // Console log result: - // => {'name':'Chris','age':31,'traits': - // {'shoe_size':10,'hair':'brown','eyes':'blue'}} \ No newline at end of file +*/ \ No newline at end of file diff --git a/client/caching.test.js b/client/caching.test.js new file mode 100644 index 0000000..f735ab8 --- /dev/null +++ b/client/caching.test.js @@ -0,0 +1,84 @@ +import { storeData, retrieveData, removeData, updateData } from "./caching"; +import AsyncStorage from '@react-native-async-storage/async-storage'; + + +jest.mock('@react-native-async-storage/async-storage', () => + require('@react-native-async-storage/async-storage/jest/async-storage-mock') +); + +const testData = { + "one": 1, + "two": '2' +} + +const changedData = { "one": 11 }; + +test('stores data to cache', async () => { +// expect(await storeData("tester", testData)).toBe(0); + + await storeData("tester", testData); + + expect(AsyncStorage.setItem).toHaveBeenCalledWith(JSON.stringify("tester"), JSON.stringify(testData)); +}); + + +test('retrieves data from cache', async () => { + const result = await retrieveData("tester", testData); + + expect(AsyncStorage.getItem).toHaveBeenCalledWith(JSON.stringify("tester")); + expect(result).toEqual(testData); +}); + +test('updates data in cache', async () => { + await updateData("tester", changedData); + + expect(AsyncStorage.mergeItem).toHaveBeenCalledWith(JSON.stringify("tester"), JSON.stringify(changedData)); +}); + + +test('remove data from cache', async () => { + await removeData("tester"); + expect(AsyncStorage.removeItem).toHaveBeenCalledWith(JSON.stringify("tester")); +}); + +test('handles errors when storing data to cache', async () => { + AsyncStorage.setItem.mockRejectedValueOnce(new Error('Error storing data in cache')); + + console.error = jest.fn(); + + await storeData("tester", testData); + + expect(console.error).toHaveBeenCalledWith('Error storing data in cache'); +}); + +test('handles errors when retrieveing data from cache', async () => { + AsyncStorage.getItem.mockRejectedValueOnce(new Error('Error retrieving data from cache')); + + console.error = jest.fn(); + + await retrieveData("tester"); + + expect(console.error).toHaveBeenCalledWith('Error retrieving data from cache'); +}); + +// // TODO: finish +// test('handles errors when updating data in cache', async () => { +// AsyncStorage.mergeItem.mockRejectedValueOnce(new Error('Error updating data in cache')); + +// console.error = jest.fn(); + +// await updateData("tester", changedData); + +// expect(console.error).toHaveBeenCalledWith('Error updating data in cache'); +// }); + +// TODO: write remove function +// test('handles errors when updating data in cache', async () => { +// // AsyncStorage.getItem.mockRejectedValueOnce(new Error('Error retrieving data from cache')); + +// console.error = jest.fn(); + +// await retrieveData("test"); + +// expect(console.error).toHaveBeenCalledWith('Error retrieving data from cache'); +// }); From ad6a7416d18a907da8282f54246ae972a789e851 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Mon, 17 Feb 2025 10:07:51 +0000 Subject: [PATCH 039/100] Added rollback to more functions --- server/Database_class.py | 87 ++++++++++++++++++++++++---------------- server/networking.py | 5 +-- 2 files changed, 53 insertions(+), 39 deletions(-) diff --git a/server/Database_class.py b/server/Database_class.py index 4544ccc..27ffdd2 100644 --- a/server/Database_class.py +++ b/server/Database_class.py @@ -52,6 +52,7 @@ def create_table(self, table_name: str, table_info: dict[str, str]) -> None: cursor.close() except Exception as e: + self.connection.rollback() print("An error occurred:", e) def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: @@ -61,28 +62,32 @@ def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: table name (str): name of table to be queried table data (str, str): keys are columns, values are user data """ - cursor = self.connection.cursor() - - query = f"""INSERT INTO {table_name} (""" + try: + cursor = self.connection.cursor() - # Insert column names - for key in table_data.keys(): - query += f"""{key},""" + query = f"""INSERT INTO {table_name} (""" - query = query[0:-1] - query += ") VALUES (" + # Insert column names + for key in table_data.keys(): + query += f"""{key},""" - # Insert entry values for each column - for value in table_data.values(): - if "ARRAY" in value: - query += f"""{value},""" - else: - query += f"""'{value}',""" - query = query[0:-1] - query += ");" + query = query[0:-1] + query += ") VALUES (" + + # Insert entry values for each column + for value in table_data.values(): + if "ARRAY" in value: + query += f"""{value},""" + else: + query += f"""'{value}',""" + query = query[0:-1] + query += ");" - cursor.execute(query) - cursor.close() + cursor.execute(query) + except: + self.connection.rollback() + finally: + cursor.close() def remove_entry(self, table_name: str, username: str) -> None: """Remove entry (entire row) from table @@ -91,10 +96,14 @@ def remove_entry(self, table_name: str, username: str) -> None: table_name (str): name of table to be queried username (str): username given as identifier in table """ - cursor = self.connection.cursor() - query = f"DELETE FROM {table_name} WHERE username = '{username}';" - cursor.execute(query) - cursor.close() + try: + cursor = self.connection.cursor() + query = f"DELETE FROM {table_name} WHERE username = '{username}';" + cursor.execute(query) + except: + self.connection.rollback() + finally: + cursor.close() def update_entry(self, table_name: str, user: str, column: str, data: str) -> None: """Update entry of specific column @@ -105,12 +114,16 @@ def update_entry(self, table_name: str, user: str, column: str, data: str) -> No column (str): column to be edited in table data (str): data to be inserted in new column entry """ - cursor = self.connection.cursor() + try: + cursor = self.connection.cursor() - query = f"""UPDATE {table_name} SET {column} = '{data}' WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic + query = f"""UPDATE {table_name} SET {column} = '{data}' WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic - cursor.execute(query) - cursor.close() + cursor.execute(query) + except: + self.connection.rollback() + finally: + cursor.close() def search_entry(self, table_name: str, user: str, column: str): """Search for entry in Table Cell @@ -120,11 +133,10 @@ def search_entry(self, table_name: str, user: str, column: str): user (str): selected user column (str): column needed """ - cursor = self.connection.cursor() - - records = None - try: + records = None + cursor = self.connection.cursor() + query = f"""SELECT {column} FROM {table_name} WHERE username = '{user}';""" cursor.execute(query) @@ -132,10 +144,11 @@ def search_entry(self, table_name: str, user: str, column: str): if type(records) is tuple: records = records[0][0] + + self.connection.commit() # commit needed to cement transaction in database except Exception as e: print("An error occurred: ", e) self.connection.rollback() - finally: cursor.close() return records @@ -149,15 +162,14 @@ def append_entry(self, table_name: str, sender: str, receiver: str, column: str) receiver (str): user receiving request column (str): column needed - must be an array column """ - cursor = self.connection.cursor() - try: + cursor = self.connection.cursor() query = f"""UPDATE {table_name} SET {column} = array_append({column},'{sender}') WHERE username = '{receiver}';""" cursor.execute(query) + self.connection.commit() except Exception as e: print("An error occurred: Cannot append to non-array column in database") self.connection.rollback() - finally: cursor.close() @@ -178,9 +190,11 @@ def print_table(self, tablename: str): for record in records: print(record) - except Exception as e: print("An error occurred:", e) + self.connection.rollback() + finally: + cursor.close() def close_con(self): """Close the connection @@ -209,6 +223,9 @@ def search_user(self, table_name: str, user: str) -> bool: return False except Exception as e: print("An error occurred: ", e) + self.connection.rollback() + finally: + cursor.close() def main(): diff --git a/server/networking.py b/server/networking.py index 38a28c2..d811265 100644 --- a/server/networking.py +++ b/server/networking.py @@ -34,10 +34,7 @@ async def request_data(request: RequestData): return {"message": f"Friend request to {request.receiver} unsuccessful"} def update_pending_friends(sender, receiver): - - - - + pass #TODO: class RequestData(BaseModel): sender: str From 6f3808b78e7cec9c98f1df4ff8a7961ac6beccc0 Mon Sep 17 00:00:00 2001 From: "@shahapug" Date: Mon, 17 Feb 2025 10:45:17 +0000 Subject: [PATCH 040/100] Created find route screen and returned routes for start and destination --- .vscode/settings.json | 7 + client/App.js | 2 + client/FindRoute.js | 105 +++++++ client/Map.js | 21 ++ client/package-lock.json | 524 +++++++++++++++++++++++++++++++- client/package.json | 6 +- server/src/main.py | 10 +- server/src/wayfinding.py | 24 +- server/tests/test_wayfinding.py | 29 +- 9 files changed, 716 insertions(+), 12 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 client/FindRoute.js diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..5506611 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.testing.pytestArgs": [ + "server" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +} \ No newline at end of file diff --git a/client/App.js b/client/App.js index 4ec7f71..0d99ad0 100644 --- a/client/App.js +++ b/client/App.js @@ -4,6 +4,7 @@ import { NavigationContainer } from '@react-navigation/native'; import LoginScreen from './LogIn'; import MapScreen from './Map'; import WeatherScreen from './Weather'; +import FindRouteScreen from './FindRoute'; const Stack = createNativeStackNavigator(); @@ -14,6 +15,7 @@ export default function App() { + ); diff --git a/client/FindRoute.js b/client/FindRoute.js new file mode 100644 index 0000000..ad70351 --- /dev/null +++ b/client/FindRoute.js @@ -0,0 +1,105 @@ +import * as React from 'react'; +import { useState, useRef } from 'react'; +import { StyleSheet, View, SafeAreaView, TextInput, Button, TouchableOpacity, Text, KeyboardAvoidingView, Platform } from 'react-native'; +import RNPickerSelect from 'react-native-picker-select'; + +export default function FindRouteScreen({ navigation }){ + + const [start, setStartPoint] = useState(""); + const [destination, setDestinationPoint] = useState(""); + const ref2 = React.useRef(null); + + const[selectedMode, setSelectedMode] = useState(null); + + const [serverResponse, setServerResponse] = useState(''); + + const isFormValid = start.trim() !== '' && destination.trim() !== ''; + + const fetchRoutes = async () => { + try { + const payload = { + origin: start, + destination: destination, + mode: selectedMode, + alternatives: true, + }; + + const baseUrl = Platform.OS === 'web' + ? 'http://localhost:8000' + : process.env.EXPO_PUBLIC_API_URL; + console.log(`Sending request to ${baseUrl}/wayfinding/get_routes`); + + const response = await fetch(`${baseUrl}/wayfinding/get_routes`, { + method: 'POST', + headers: { + "Content-Type": "application/json" + }, + body: JSON.stringify(payload) + }); + + if (!response.ok) { + throw new Error(`HTTP error! status: ${response.status}`); + } + + const data = await response.json(); + console.log('Server response:', data); + setServerResponse("Data has been queried successfully!") + await new Promise(resolve => setTimeout(resolve, 3000)); + setServerResponse("") + } catch (error) { + console.error('Error details:', error); + } + }; + + const modeDropdownData = [ + {label: 'Walking', value: 'walking'}, + {label: 'Driving', value: 'driving'}, + {label: 'Transit', value: 'transit'} + ]; + + return ( + + setStartPoint(text)} + onSubmitEditing={() => ref2.current.focus()} + /> + setDestinationPoint(text)} + onSubmitEditing={() => alert(`Route Entered`)} + /> + + Select an option: + setSelectedMode(value)} + items={modeDropdownData} + placeholder={{ label: "Choose an option...", value: null }} + /> + {selectedMode && Selected: {selectedMode}} + + + + {/* activeOpacity={isFormValid ? 0.7 : 1} */} + Search + + + + ); +}; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: "#fff", + alignItems: "center", + justifyContent: "center", + }, + + +}); \ No newline at end of file diff --git a/client/Map.js b/client/Map.js index 5fe977b..863f545 100644 --- a/client/Map.js +++ b/client/Map.js @@ -134,6 +134,12 @@ export default function MapScreen({ navigation }) { > Log In + navigation.navigate('FindRouteScreen')} + > + Find Route + navigation.navigate('WeatherScreen')} @@ -201,6 +207,21 @@ const styles = StyleSheet.create({ shadowRadius: 5, elevation: 5, }, + findRouteButton: { + position: 'absolute', + alignItems: 'center', + left: '34%', + top: '0%', + backgroundColor: '#007bff', + paddingVertical: 10, + paddingHorizontal: 35, + borderRadius: 10, + shadowColor: '#000', + shadowOpacity: 0.2, + shadowOffset: { width: 0, height: 2 }, + shadowRadius: 5, + elevation: 5, + }, error: { flex: 1, textAlign: 'center', diff --git a/client/package-lock.json b/client/package-lock.json index 177e122..69723bb 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -11,13 +11,16 @@ "@react-navigation/native": "^7.0.2", "@react-navigation/native-stack": "^7.0.2", "crypto": "^1.0.1", + "d3": "^7.9.0", "expo": "^52.0.7", "expo-location": "^18.0.2", "expo-status-bar": "~2.0.0", "react": "18.3.1", "react-native": "0.76.2", + "react-native-element-dropdown": "^2.12.4", "react-native-gesture-handler": "~2.20.2", "react-native-maps": "1.18.0", + "react-native-picker-select": "^9.3.1", "react-native-reanimated": "~3.16.1", "react-native-safe-area-context": "4.12.0", "react-native-screens": "~4.0.0", @@ -25,7 +28,8 @@ "react-native-websocket": "^1.0.2" }, "devDependencies": { - "@babel/core": "^7.24.0" + "@babel/core": "^7.24.0", + "react-native-dotenv": "^3.4.11" } }, "node_modules/@0no-co/graphql.web": { @@ -3225,6 +3229,20 @@ "node": ">=14" } }, + "node_modules/@react-native-picker/picker": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/@react-native-picker/picker/-/picker-2.11.0.tgz", + "integrity": "sha512-QuZU6gbxmOID5zZgd/H90NgBnbJ3VV6qVzp6c7/dDrmWdX8S0X5YFYgDcQFjE3dRen9wB9FWnj2VVdPU64adSg==", + "license": "MIT", + "peer": true, + "workspaces": [ + "example" + ], + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, "node_modules/@react-native/assets-registry": { "version": "0.76.2", "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.76.2.tgz", @@ -5089,6 +5107,407 @@ "url": "https://github.com/sponsors/fb55" } }, + "node_modules/d3": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "license": "ISC", + "dependencies": { + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-brush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-chord": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "license": "ISC", + "dependencies": { + "d3-path": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", + "license": "ISC", + "dependencies": { + "d3-array": "^3.2.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", + "license": "ISC", + "dependencies": { + "delaunator": "5" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-selection": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", + "license": "ISC", + "dependencies": { + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json.js", + "csv2tsv": "bin/dsv2dsv.js", + "dsv2dsv": "bin/dsv2dsv.js", + "dsv2json": "bin/dsv2json.js", + "json2csv": "bin/json2dsv.js", + "json2dsv": "bin/json2dsv.js", + "json2tsv": "bin/json2dsv.js", + "tsv2csv": "bin/dsv2dsv.js", + "tsv2json": "bin/dsv2json.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-fetch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", + "license": "ISC", + "dependencies": { + "d3-dsv": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-force": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", + "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-quadtree": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2.5.0 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-polygon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-quadtree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", + "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" + } + }, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/debug": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", @@ -5189,6 +5608,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/delaunator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", + "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", + "license": "ISC", + "dependencies": { + "robust-predicates": "^3.0.2" + } + }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -6325,6 +6753,18 @@ "node": ">=10.17.0" } }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", @@ -6445,6 +6885,15 @@ "node": ">=6" } }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, "node_modules/invariant": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", @@ -7284,6 +7733,19 @@ "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "license": "MIT" }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", + "license": "MIT" + }, + "node_modules/lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", + "license": "MIT" + }, "node_modules/lodash.throttle": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", @@ -9149,6 +9611,35 @@ } } }, + "node_modules/react-native-dotenv": { + "version": "3.4.11", + "resolved": "https://registry.npmjs.org/react-native-dotenv/-/react-native-dotenv-3.4.11.tgz", + "integrity": "sha512-6vnIE+WHABSeHCaYP6l3O1BOEhWxKH6nHAdV7n/wKn/sciZ64zPPp2NUdEUf1m7g4uuzlLbjgr+6uDt89q2DOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "dotenv": "^16.4.5" + }, + "peerDependencies": { + "@babel/runtime": "^7.20.6" + } + }, + "node_modules/react-native-element-dropdown": { + "version": "2.12.4", + "resolved": "https://registry.npmjs.org/react-native-element-dropdown/-/react-native-element-dropdown-2.12.4.tgz", + "integrity": "sha512-abZc5SVji9FIt7fjojRYrbuvp03CoeZJrgvezQoDoSOrpiTqkX69ix5m+j06W2AVncA0VWvbT+vCMam8SoVadw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21" + }, + "engines": { + "node": ">= 16.0.0" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, "node_modules/react-native-gesture-handler": { "version": "2.20.2", "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.20.2.tgz", @@ -9187,6 +9678,19 @@ } } }, + "node_modules/react-native-picker-select": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/react-native-picker-select/-/react-native-picker-select-9.3.1.tgz", + "integrity": "sha512-o621HcsKJfJkpYeP/PZQiZTKbf8W7FT08niLFL0v1pGkIQyak5IfzfinV2t+/l1vktGwAH2Tt29LrP/Hc5fk3A==", + "license": "MIT", + "dependencies": { + "lodash.isequal": "^4.5.0", + "lodash.isobject": "^3.0.2" + }, + "peerDependencies": { + "@react-native-picker/picker": "^2.4.0" + } + }, "node_modules/react-native-reanimated": { "version": "3.16.1", "resolved": "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-3.16.1.tgz", @@ -9615,6 +10119,12 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/robust-predicates": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", + "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==", + "license": "Unlicense" + }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -9638,6 +10148,12 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", + "license": "BSD-3-Clause" + }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -9658,6 +10174,12 @@ ], "license": "MIT" }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, "node_modules/sax": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", diff --git a/client/package.json b/client/package.json index 62a0017..7ea2f02 100644 --- a/client/package.json +++ b/client/package.json @@ -12,13 +12,16 @@ "@react-navigation/native": "^7.0.2", "@react-navigation/native-stack": "^7.0.2", "crypto": "^1.0.1", + "d3": "^7.9.0", "expo": "^52.0.7", "expo-location": "^18.0.2", "expo-status-bar": "~2.0.0", "react": "18.3.1", "react-native": "0.76.2", + "react-native-element-dropdown": "^2.12.4", "react-native-gesture-handler": "~2.20.2", "react-native-maps": "1.18.0", + "react-native-picker-select": "^9.3.1", "react-native-reanimated": "~3.16.1", "react-native-safe-area-context": "4.12.0", "react-native-screens": "~4.0.0", @@ -26,7 +29,8 @@ "react-native-websocket": "^1.0.2" }, "devDependencies": { - "@babel/core": "^7.24.0" + "@babel/core": "^7.24.0", + "react-native-dotenv": "^3.4.11" }, "private": true } diff --git a/server/src/main.py b/server/src/main.py index ff4f9c6..9a11dcc 100644 --- a/server/src/main.py +++ b/server/src/main.py @@ -1,11 +1,15 @@ from fastapi import FastAPI, Request, WebSocket, WebSocketDisconnect +# from src.wayfinding import router # Import the API routes +from wayfinding import router # Import the API routes from fastapi.middleware.cors import CORSMiddleware from pydantic import BaseModel import logging import uvicorn import sys -from src.login import Login -from src.weatherApi import weatherAPI +# from src.login import Login +# from src.weatherApi import weatherAPI +from weatherApi import weatherAPI +from login import Login from dotenv import load_dotenv class Server: @@ -15,6 +19,8 @@ def __init__(self): # Initialize FastAPI app self.app = FastAPI() + # Include the API routes from the my_routes.py file + self.app.include_router(router) # Instantiate components self.login_logic = Login(self.app, self.logger) diff --git a/server/src/wayfinding.py b/server/src/wayfinding.py index 90ffe5e..1336fe7 100644 --- a/server/src/wayfinding.py +++ b/server/src/wayfinding.py @@ -1,18 +1,36 @@ import requests +import os import json +from fastapi import FastAPI +from fastapi import APIRouter, Query, Body +from dotenv import load_dotenv +load_dotenv() -def get_routes(origin, destination, mode, alternatives, key): +GOOGLE_MAPS_API_KEY = os.getenv("GOOGLE_MAPS_API_KEY") + +router = APIRouter() + +@router.post("/wayfinding/get_routes") +def get_routes(origin: str = Body(...), + destination: str = Body(...), + mode: str = Body(...), + alternatives: bool = Body(...), + key: str = Body(GOOGLE_MAPS_API_KEY) + ): url = "https://maps.googleapis.com/maps/api/directions/json" + parameters = { "origin": origin, "destination": destination, - "mode": mode, - "alternatives": alternatives, + "mode": mode.lower(), + "alternatives": str(alternatives).lower(), "key": key } + print("parameters are ok!") + response = requests.get(url, params=parameters) return response.json() diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index b018177..ed40593 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -1,6 +1,6 @@ import pytest import os -from wayfinding import get_routes +from src.wayfinding import get_routes from dotenv import load_dotenv load_dotenv() @@ -8,19 +8,19 @@ def test_calculate_route(): origin = "Tara Street" - Destination = "Ashbourne Meath" + destination = "Ashbourne Meath" mode = "Walking" alternatives = "true" key = os.getenv("GOOGLE_MAPS_API_KEY") - response = get_routes(origin, Destination, mode, alternatives, key) + response = get_routes(origin, destination, mode, alternatives, key) assert response.get("status") == 'OK' def test_calculate_route_missing_params(): # missing parameters test - response = get_routes('', '', '', '', '') + response = get_routes('', '', '', '') assert response.get("status") == 'INVALID_REQUEST' @@ -31,8 +31,27 @@ def test_calculate_route_api_key(): origin = "Tara Street" Destination = "Ashbourne" mode = "Walking" + key = "SAjhdgfsjkg67345834" - response = get_routes(origin, Destination, mode, alternatives = 'TRUE', key = 'Ahdlkjhfdadsf1234sxf') + response = get_routes(origin, Destination, mode, alternatives = 'TRUE', key = key) assert response.get("status") == "REQUEST_DENIED" + + +def test_check_transport_modes(): + + + origin = "Tara Street" + destination = "Ashbourne Meath" + mode = "Walking" + alternatives = "true" + key = os.getenv("GOOGLE_MAPS_API_KEY") + modes = ["driving", "walking", "transit", "bicycling"] + + response = "" + + for mode in modes: + response = get_routes(origin, destination, mode, alternatives, key=key) + + assert response.get("status") == "OK" From d0ed387f8ae75adcccb6226d038121f55d93abe8 Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Mon, 17 Feb 2025 10:48:35 +0000 Subject: [PATCH 041/100] adding comments on networking --- server/Database_class.py | 2 ++ server/networking.py | 11 +++++++---- server/requirements.txt | 1 + 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/server/Database_class.py b/server/Database_class.py index 27ffdd2..89be900 100644 --- a/server/Database_class.py +++ b/server/Database_class.py @@ -262,6 +262,8 @@ def main(): result = db.search_entry(table_name, "Conor", "sus_score") print(result) + db.search_user(table_name, "Fiona") + # db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) # db.remove_entry(table_name, 'Conor') # db.update_entry(table_name, 'Keith', 'password', 'Roots123') diff --git a/server/networking.py b/server/networking.py index d811265..dce07f2 100644 --- a/server/networking.py +++ b/server/networking.py @@ -10,12 +10,12 @@ class Networking(): def __init__(self, api, logger: logging.Logger): self.app = api self.logger = logger - self.pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") + # self.pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") # Load environment vars load_dotenv() - self.supabase_url = os.getenv("SUPABASE_URL") - self.supabase_key = os.getenv("SUPABASE_SERVICE_KEY") + # self.supabase_url = os.getenv("SUPABASE_URL") + # self.supabase_key = os.getenv("SUPABASE_SERVICE_KEY") # register login route self.handle_login() @@ -34,7 +34,10 @@ async def request_data(request: RequestData): return {"message": f"Friend request to {request.receiver} unsuccessful"} def update_pending_friends(sender, receiver): - pass #TODO: + # Search for receiver + # If they exist, add the sender to pending friends list + # Send back positive message + # Else send back negative message class RequestData(BaseModel): sender: str diff --git a/server/requirements.txt b/server/requirements.txt index 8da9bed..96d1b59 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -9,3 +9,4 @@ python-dotenv passlib websockets bcrypt +pg8000 From b398e6c98f6c0cc46a9217e60a8e8f52c0c64391 Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Mon, 17 Feb 2025 10:52:10 +0000 Subject: [PATCH 042/100] removing networking for pull request --- server/networking.py | 47 --------------------- tests/test_networking.py | 88 ---------------------------------------- 2 files changed, 135 deletions(-) delete mode 100644 server/networking.py delete mode 100644 tests/test_networking.py diff --git a/server/networking.py b/server/networking.py deleted file mode 100644 index dce07f2..0000000 --- a/server/networking.py +++ /dev/null @@ -1,47 +0,0 @@ -from pydantic import BaseModel -import os -from dotenv import load_dotenv -import logging -from fastapi import HTTPException - -from Database_class import DataBase - -class Networking(): - def __init__(self, api, logger: logging.Logger): - self.app = api - self.logger = logger - # self.pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") - - # Load environment vars - load_dotenv() - # self.supabase_url = os.getenv("SUPABASE_URL") - # self.supabase_key = os.getenv("SUPABASE_SERVICE_KEY") - - # register login route - self.handle_login() - - # client sends request to server - def handle_friend_request_sent(self): - @self.app.post("/send_request") - async def request_data(request: RequestData): - self.logger.info(f"Received friend request from {request.sender} to {request.receiver}") - - if (self.update_pending_friends(request.sender, request.receiver)): - self.logger.info(f"Friend request successfully sent to {request.receiver}") - - return {"message": f"Friend request successfully sent to {request.receiver}"} - - return {"message": f"Friend request to {request.receiver} unsuccessful"} - - def update_pending_friends(sender, receiver): - # Search for receiver - # If they exist, add the sender to pending friends list - # Send back positive message - # Else send back negative message - -class RequestData(BaseModel): - sender: str - receiver: str - -if __name__ == "__main__": - pass \ No newline at end of file diff --git a/tests/test_networking.py b/tests/test_networking.py deleted file mode 100644 index 221031b..0000000 --- a/tests/test_networking.py +++ /dev/null @@ -1,88 +0,0 @@ -# import pytest -# from unittest.mock import patch, MagicMock -# from server.Database_class import DataBase - -# # Processing a friend request - sent request -# # Processing a friend request - friend acceptance -# # Handling a message request between two clients -# # Source username to IP lookup in db, sending to destination username using IP lookup in db - -# import pytest -# import psycopg2 - -# DB_NAME = "test_db" -# DB_USER = "your_user" -# DB_PASSWORD = "your_password" -# DB_HOST = "localhost" -# DB_PORT = "5432" - -# @pytest.fixture(scope="session") -# def setup_db(): -# """Fixture to create and destroy a temporary PostgreSQL test database.""" -# # Connect to the default database -# conn = psycopg2.connect( -# dbname="postgres", -# user=DB_USER, -# password=DB_PASSWORD, -# host=DB_HOST, -# port=DB_PORT -# ) -# conn.autocommit = True -# cursor = conn.cursor() - -# # Create test database -# cursor.execute(f"CREATE DATABASE {DB_NAME};") -# yield # Tests run here - -# # Drop test database after tests -# cursor.execute(f"DROP DATABASE {DB_NAME};") -# cursor.close() -# conn.close() - -# @pytest.fixture -# def db_conn(setup_db): -# """Fixture to connect to the test database.""" -# conn = psycopg2.connect( -# dbname=DB_NAME, -# user=DB_USER, -# password=DB_PASSWORD, -# host=DB_HOST, -# port=DB_PORT -# ) -# yield conn -# conn.close() - -# def test_insert_and_query(db_conn): -# """Example test that inserts and queries data.""" -# cursor = db_conn.cursor() -# cursor.execute(""" -# CREATE TABLE users ( -# id SERIAL PRIMARY KEY, -# username VARCHAR(50) NOT NULL -# ); -# """) -# cursor.execute("INSERT INTO users (username) VALUES ('john_doe');") -# cursor.execute("SELECT username FROM users WHERE username = 'john_doe';") -# result = cursor.fetchone() -# assert result[0] == 'john_doe' -# cursor.close() - - - -# def test_sent_friend_request_db(db_conn): -# # Sender User, Receiver User -# friend_request = ReceiveFriendRequest() - -# sender = friend_request[0] -# receiver = friend_request[1] - -# cursor = db_conn.cursor() -# cursor.execute(f"SELECT pending FROM users WHERE username = '{receiver}'") - -# cursor.execute(f"""UPDATE {table_name} -# SET {column} = '{data}' -# WHERE username = '{user}';INSERT INTO users (pending_requests) VALUES ('{sender}') WHERE username = {receiver};""") - -# cursor.close() - - From d73b99cfe3fdb54f2a06ae352c4af22b80175116 Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Mon, 17 Feb 2025 11:06:20 +0000 Subject: [PATCH 043/100] fixing file structure --- server/{ => src}/(legacy) main.py | 0 server/{ => src}/Database_class.py | 0 server/{ => src}/__init__.py | 0 server/{ => src}/login.py | 0 server/{ => src}/main.py | 2 +- {tests => server/tests}/__init__.py | 0 {tests => server/tests}/test_database_connection.py | 2 +- 7 files changed, 2 insertions(+), 2 deletions(-) rename server/{ => src}/(legacy) main.py (100%) rename server/{ => src}/Database_class.py (100%) rename server/{ => src}/__init__.py (100%) rename server/{ => src}/login.py (100%) rename server/{ => src}/main.py (99%) rename {tests => server/tests}/__init__.py (100%) rename {tests => server/tests}/test_database_connection.py (99%) diff --git a/server/(legacy) main.py b/server/src/(legacy) main.py similarity index 100% rename from server/(legacy) main.py rename to server/src/(legacy) main.py diff --git a/server/Database_class.py b/server/src/Database_class.py similarity index 100% rename from server/Database_class.py rename to server/src/Database_class.py diff --git a/server/__init__.py b/server/src/__init__.py similarity index 100% rename from server/__init__.py rename to server/src/__init__.py diff --git a/server/login.py b/server/src/login.py similarity index 100% rename from server/login.py rename to server/src/login.py diff --git a/server/main.py b/server/src/main.py similarity index 99% rename from server/main.py rename to server/src/main.py index cce0e45..ae19f5b 100644 --- a/server/main.py +++ b/server/src/main.py @@ -4,7 +4,7 @@ import logging import uvicorn import sys -from login import Login +from server.src.login import Login from apis.weatherApi import weatherAPI from dotenv import load_dotenv diff --git a/tests/__init__.py b/server/tests/__init__.py similarity index 100% rename from tests/__init__.py rename to server/tests/__init__.py diff --git a/tests/test_database_connection.py b/server/tests/test_database_connection.py similarity index 99% rename from tests/test_database_connection.py rename to server/tests/test_database_connection.py index d526681..949dbb1 100644 --- a/tests/test_database_connection.py +++ b/server/tests/test_database_connection.py @@ -1,6 +1,6 @@ import pytest from unittest.mock import patch, MagicMock -from server.Database_class import DataBase +from server.src.Database_class import DataBase DB_NAME = "test_db" DB_USER = "your_user" From bd2e72738b887106d87e44ff4de7daa47cec2709 Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Mon, 17 Feb 2025 11:27:46 +0000 Subject: [PATCH 044/100] reformatting --- server/src/(legacy) main.py | 26 +++++++++--- server/src/Database_class.py | 39 ++++++++++++------ server/tests/test_database_connection.py | 50 +++++++++++++----------- 3 files changed, 74 insertions(+), 41 deletions(-) diff --git a/server/src/(legacy) main.py b/server/src/(legacy) main.py index 4035b06..dad114e 100644 --- a/server/src/(legacy) main.py +++ b/server/src/(legacy) main.py @@ -8,18 +8,21 @@ # Configure logging logging.basicConfig( level=logging.INFO, - format='%(asctime)s - %(levelname)s - %(message)s', - handlers=[logging.StreamHandler(sys.stdout)] + format="%(asctime)s - %(levelname)s - %(message)s", + handlers=[logging.StreamHandler(sys.stdout)], ) logger = logging.getLogger(__name__) + class Message(BaseModel): text: str + class Login(BaseModel): username: str password: str - + + app = FastAPI() # Configure CORS with logging @@ -32,6 +35,7 @@ class Login(BaseModel): allow_headers=["*"], ) + @app.middleware("http") async def log_requests(request: Request, call_next): logger.info(f"Incoming {request.method} request to {request.url}") @@ -39,11 +43,13 @@ async def log_requests(request: Request, call_next): logger.info(f"Returning response with status code: {response.status_code}") return response + @app.get("/") async def root(): logger.info("Root endpoint accessed") return {"message": "Hello World"} + @app.post("/echo") async def echo_message(message: Message): logger.info(f"Received message in echo endpoint: {message.text}") @@ -53,15 +59,23 @@ async def echo_message(message: Message): logger.error(f"Error processing message: {str(e)}") raise + @app.post("/login") async def login_data(login: Login): - logger.info(f"Received message in login endpoint: {login.username} {login.password}") + logger.info( + f"Received message in login endpoint: {login.username} {login.password}" + ) try: - return {"login details": f"'username={login.username}' 'password={login.password}'sent from server"} + return { + "login details": f"'username={login.username}' 'password={login.password}'sent from server" + } except Exception as e: logger.error(f"Error processing message: {str(e)}") raise + if __name__ == "__main__": logger.info("Starting FastAPI server...") - uvicorn.run(app, host="10.6.124.10", port=8000, log_level="debug") # changing host to Keith ipv4 address \ No newline at end of file + uvicorn.run( + app, host="10.6.124.10", port=8000, log_level="debug" + ) # changing host to Keith ipv4 address diff --git a/server/src/Database_class.py b/server/src/Database_class.py index 427ab35..2891730 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -6,8 +6,15 @@ load_dotenv() -class DataBase(): - def __init__(self, host=os.getenv("DB_HOST"), name=os.getenv("DB_NAME"), user=os.getenv("DB_USER"), password=os.getenv("DB_PASSWORD"), port=int(os.getenv("DB_PORT"))): +class DataBase: + def __init__( + self, + host=os.getenv("DB_HOST"), + name=os.getenv("DB_NAME"), + user=os.getenv("DB_USER"), + password=os.getenv("DB_PASSWORD"), + port=int(os.getenv("DB_PORT")), + ): # Database connection details self.DB_HOST = os.getenv("DB_HOST") self.DB_NAME = os.getenv("DB_NAME") @@ -88,8 +95,9 @@ def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: query += ");" cursor.execute(query) - except: + except Exception as e: self.connection.rollback() + print("An error occurred:", e) finally: cursor.close() @@ -104,8 +112,9 @@ def remove_entry(self, table_name: str, username: str) -> None: cursor = self.connection.cursor() query = f"DELETE FROM {table_name} WHERE username = '{username}';" cursor.execute(query) - except: + except Exception as e: self.connection.rollback() + print("An error occurred:", e) finally: cursor.close() @@ -126,8 +135,9 @@ def update_entry( query = f"""UPDATE {table_name} SET {column} = '{data}' WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic cursor.execute(query) - except: + except Exception as e: self.connection.rollback() + print("An error occurred:", e) finally: cursor.close() @@ -151,15 +161,17 @@ def search_entry(self, table_name: str, user: str, column: str): if type(records) is tuple: records = records[0][0] - self.connection.commit() # commit needed to cement transaction in database + self.connection.commit() # commit needed to cement transaction in database except Exception as e: - print("An error occurred: ", e) + print("An error occurred:", e) self.connection.rollback() finally: cursor.close() return records - def append_entry(self, table_name: str, sender: str, receiver: str, column: str) -> None: + def append_entry( + self, table_name: str, sender: str, receiver: str, column: str + ) -> None: """Append value to an array entry in Table Cell Args: @@ -174,7 +186,10 @@ def append_entry(self, table_name: str, sender: str, receiver: str, column: str) cursor.execute(query) self.connection.commit() except Exception as e: - print("An error occurred: Cannot append to non-array column in database") + print( + "An error occurred: Cannot append to non-array column in database" + ) + print("An error occurred:", e) self.connection.rollback() finally: cursor.close() @@ -229,7 +244,7 @@ def search_user(self, table_name: str, user: str) -> bool: return True return False except Exception as e: - print("An error occurred: ", e) + print("An error occurred:", e) self.connection.rollback() finally: cursor.close() @@ -255,7 +270,7 @@ def main(): "password": "abc123", "friends_list": "ARRAY['mark', 'gunjan', 'fiona']", "pending_friends": "ARRAY['cormac', 'jason']", - "sus_score": "100" + "sus_score": "100", } # Connect to db @@ -279,7 +294,5 @@ def main(): db.close_con() - if __name__ == "__main__": main() - diff --git a/server/tests/test_database_connection.py b/server/tests/test_database_connection.py index 949dbb1..f3add51 100644 --- a/server/tests/test_database_connection.py +++ b/server/tests/test_database_connection.py @@ -8,11 +8,13 @@ DB_HOST = "localhost" DB_PORT = "5432" + @pytest.fixture def db(): """Fixture to initialise and return the DataBase object""" return DataBase(DB_HOST, DB_NAME, DB_USER, DB_PASSWORD, DB_PORT) + @patch("server.Database_class.pg8000.connect") def test_connect_db(mock_connect, db): """Test database connection""" @@ -23,55 +25,53 @@ def test_connect_db(mock_connect, db): database=db.DB_NAME, user=db.DB_USER, password=db.DB_PASSWORD, - port=db.DB_PORT + port=db.DB_PORT, ) assert db.connection is not None + def test_create_table(db): """Test create_table method""" db.connection = MagicMock() cursor_mock = db.connection.cursor.return_value table_name = "test_table" - table_info = { - "id": "SERIAL PRIMARY KEY", - "name": "VARCHAR(50)" - } - + table_info = {"id": "SERIAL PRIMARY KEY", "name": "VARCHAR(50)"} + db.create_table(table_name, table_info) cursor_mock.execute.assert_called_once_with( "CREATE TABLE test_table (id SERIAL PRIMARY KEY,name VARCHAR(50));" ) cursor_mock.close.assert_called_once() + def test_add_entry(db): """Test add_entry method""" db.connection = MagicMock() cursor_mock = db.connection.cursor.return_value table_name = "test_table" - table_data = { - "username": "john_doe", - "password": "password123" - } - + table_data = {"username": "john_doe", "password": "password123"} + db.add_entry(table_name, table_data) cursor_mock.execute.assert_called_once_with( "INSERT INTO test_table (username,password) VALUES ('john_doe','password123');" ) cursor_mock.close.assert_called_once() + def test_remove_entry(db): """Test remove_entry method""" db.connection = MagicMock() cursor_mock = db.connection.cursor.return_value table_name = "test_table" username = "john_doe" - + db.remove_entry(table_name, username) cursor_mock.execute.assert_called_once_with( "DELETE FROM test_table WHERE username = 'john_doe';" ) cursor_mock.close.assert_called_once() + def test_update_entry(db): """Test update_entry method""" db.connection = MagicMock() @@ -80,28 +80,30 @@ def test_update_entry(db): user = "john_doe" column = "password" data = "new_password123" - + db.update_entry(table_name, user, column, data) cursor_mock.execute.assert_called_once_with( "UPDATE test_table SET password = 'new_password123' WHERE username = 'john_doe';" ) cursor_mock.close.assert_called_once() + def test_search_entry(db): """Test search_entry method when entry is found""" db.connection = MagicMock() cursor_mock = db.connection.cursor.return_value - cursor_mock.fetchall.return_value = ['jason', 'keith', 'cormac'] + cursor_mock.fetchall.return_value = ["jason", "keith", "cormac"] table_name = "test_table" user = "john_doe" column = "pending_friends" - + result = db.search_entry(table_name, user, column) cursor_mock.execute.assert_called_once_with( "SELECT pending_friends FROM test_table WHERE username = 'john_doe';" ) cursor_mock.close.assert_called_once() - assert result == ['jason', 'keith', 'cormac'] + assert result == ["jason", "keith", "cormac"] + def test_append_entry(db): """Test search_entry method when entry is found""" @@ -111,29 +113,31 @@ def test_append_entry(db): sender = "cormac" receiver = "john_doe" column = "pending_friends" - + db.append_entry(table_name, sender, receiver, column) cursor_mock.execute.assert_called_once_with( "UPDATE test_table SET pending_friends = array_append(pending_friends,'cormac') WHERE username = 'john_doe';" ) cursor_mock.close.assert_called_once() + def test_print_table(db, capsys): """Test print_table method""" db.connection = MagicMock() cursor_mock = db.connection.cursor.return_value cursor_mock.fetchall.return_value = [("row1",), ("row2",)] table_name = "test_table" - + db.print_table(table_name) cursor_mock.execute.assert_called_once_with("SELECT * FROM test_table;") cursor_mock.close.assert_called_once() - + captured = capsys.readouterr() assert "test_table:" in captured.out assert "row1" in captured.out assert "row2" in captured.out + def test_search_user_found(db): """Test search_user method when user is found""" db.connection = MagicMock() @@ -141,7 +145,7 @@ def test_search_user_found(db): cursor_mock.fetchall.return_value = [("john_doe",)] table_name = "test_table" user = "john_doe" - + result = db.search_user(table_name, user) cursor_mock.execute.assert_called_once_with( "SELECT username FROM test_table WHERE username = 'john_doe';" @@ -149,6 +153,7 @@ def test_search_user_found(db): cursor_mock.close.assert_called_once() assert result is True + def test_search_user_not_found(db): """Test search_user method when user is not found""" db.connection = MagicMock() @@ -156,7 +161,7 @@ def test_search_user_not_found(db): cursor_mock.fetchall.return_value = [] table_name = "test_table" user = "unknown_user" - + result = db.search_user(table_name, user) cursor_mock.execute.assert_called_once_with( "SELECT username FROM test_table WHERE username = 'unknown_user';" @@ -164,9 +169,10 @@ def test_search_user_not_found(db): cursor_mock.close.assert_called_once() assert result is False + def test_close_con(db): """Test close_con method""" db.connection = MagicMock() - + db.close_con() db.connection.close.assert_called_once() From d5a485bc665a1fa13950bedfa70408b5a50fe0db Mon Sep 17 00:00:00 2001 From: Cormac Sharkey <101349412+CormacSharkey@users.noreply.github.com> Date: Mon, 17 Feb 2025 11:30:15 +0000 Subject: [PATCH 045/100] Update backend-ci.yml --- .github/workflows/backend-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index e11bb12..161e902 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -31,14 +31,14 @@ jobs: cd server python -m pip install --upgrade pip pip install flake8 black - - name: Run flake8 (Linting) - run: | - cd server - flake8 src/ tests/ - name: Run Black (Formatting Check) run: | cd server black --check --diff src/ tests/ + - name: Run flake8 (Linting) + run: | + cd server + flake8 src/ tests/ test: name: Run Backend Tests runs-on: ubuntu-latest From cfbe0e8d38cf7f1f719bdd0e39c47c0c4f572a28 Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Mon, 17 Feb 2025 11:38:33 +0000 Subject: [PATCH 046/100] reformatting --- server/src/(legacy) main.py | 6 ++++-- server/src/Database_class.py | 25 +++++++++++++++++------- server/tests/test_database_connection.py | 13 ++++++++---- 3 files changed, 31 insertions(+), 13 deletions(-) diff --git a/server/src/(legacy) main.py b/server/src/(legacy) main.py index dad114e..a6a4ff2 100644 --- a/server/src/(legacy) main.py +++ b/server/src/(legacy) main.py @@ -63,11 +63,13 @@ async def echo_message(message: Message): @app.post("/login") async def login_data(login: Login): logger.info( - f"Received message in login endpoint: {login.username} {login.password}" + f"Received message in login endpoint: " + f"{login.username} {login.password}" ) try: return { - "login details": f"'username={login.username}' 'password={login.password}'sent from server" + "login details": f"'username={login.username}' " + f"'password={login.password}'sent from server" } except Exception as e: logger.error(f"Error processing message: {str(e)}") diff --git a/server/src/Database_class.py b/server/src/Database_class.py index 2891730..bab613c 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -132,7 +132,10 @@ def update_entry( try: cursor = self.connection.cursor() - query = f"""UPDATE {table_name} SET {column} = '{data}' WHERE username = '{user}';""" # TODO: check if username needs to be made dynamic + # TODO: check if username needs to be made dynamic + query = f"UPDATE {table_name} " + f"SET {column} = '{data}' " + f"WHERE username = '{user}';" cursor.execute(query) except Exception as e: @@ -153,7 +156,9 @@ def search_entry(self, table_name: str, user: str, column: str): records = None cursor = self.connection.cursor() - query = f"""SELECT {column} FROM {table_name} WHERE username = '{user}';""" + query = f"SELECT {column} " + f"FROM {table_name} " + f"WHERE username = '{user}';" cursor.execute(query) records = cursor.fetchall() @@ -161,7 +166,8 @@ def search_entry(self, table_name: str, user: str, column: str): if type(records) is tuple: records = records[0][0] - self.connection.commit() # commit needed to cement transaction in database + # commit needed to cement transaction in database + self.connection.commit() except Exception as e: print("An error occurred:", e) self.connection.rollback() @@ -182,12 +188,15 @@ def append_entry( """ try: cursor = self.connection.cursor() - query = f"""UPDATE {table_name} SET {column} = array_append({column},'{sender}') WHERE username = '{receiver}';""" + query = f"UPDATE {table_name} " + f"SET {column} = array_append({column},'{sender}') " + f"WHERE username = '{receiver}';" cursor.execute(query) self.connection.commit() except Exception as e: print( - "An error occurred: Cannot append to non-array column in database" + "An error occurred: " + "Cannot append to non-array column in database" ) print("An error occurred:", e) self.connection.rollback() @@ -235,7 +244,8 @@ def search_user(self, table_name: str, user: str) -> bool: cursor = self.connection.cursor() query = ( - f"SELECT username FROM {table_name} WHERE username = '{user}';" + f"SELECT username FROM {table_name} " + f"WHERE username = '{user}';" ) cursor.execute(query) record = list(cursor.fetchall()) @@ -286,7 +296,8 @@ def main(): db.search_user(table_name, "Fiona") - # db.add_entry(table_name, {"username": "Keith", "password": "strong password"}) + # db.add_entry(table_name, {"username": "Keith", + # "password": "strong password"}) # db.remove_entry(table_name, 'Conor') # db.update_entry(table_name, 'Keith', 'password', 'Roots123') # db.print_table(table_name) diff --git a/server/tests/test_database_connection.py b/server/tests/test_database_connection.py index f3add51..6cac3b6 100644 --- a/server/tests/test_database_connection.py +++ b/server/tests/test_database_connection.py @@ -53,7 +53,8 @@ def test_add_entry(db): db.add_entry(table_name, table_data) cursor_mock.execute.assert_called_once_with( - "INSERT INTO test_table (username,password) VALUES ('john_doe','password123');" + "INSERT INTO test_table (username,password) " + "VALUES ('john_doe','password123');" ) cursor_mock.close.assert_called_once() @@ -83,7 +84,8 @@ def test_update_entry(db): db.update_entry(table_name, user, column, data) cursor_mock.execute.assert_called_once_with( - "UPDATE test_table SET password = 'new_password123' WHERE username = 'john_doe';" + "UPDATE test_table SET password = 'new_password123' " + "WHERE username = 'john_doe';" ) cursor_mock.close.assert_called_once() @@ -99,7 +101,8 @@ def test_search_entry(db): result = db.search_entry(table_name, user, column) cursor_mock.execute.assert_called_once_with( - "SELECT pending_friends FROM test_table WHERE username = 'john_doe';" + "SELECT pending_friends FROM test_table " + "WHERE username = 'john_doe';" ) cursor_mock.close.assert_called_once() assert result == ["jason", "keith", "cormac"] @@ -116,7 +119,9 @@ def test_append_entry(db): db.append_entry(table_name, sender, receiver, column) cursor_mock.execute.assert_called_once_with( - "UPDATE test_table SET pending_friends = array_append(pending_friends,'cormac') WHERE username = 'john_doe';" + "UPDATE test_table " + "SET pending_friends = array_append(pending_friends,'cormac') " + "WHERE username = 'john_doe';" ) cursor_mock.close.assert_called_once() From c55c4828570de2fdb0145357964a49958f6043f3 Mon Sep 17 00:00:00 2001 From: FEguare <123463013+FEguare@users.noreply.github.com> Date: Mon, 17 Feb 2025 12:04:07 +0000 Subject: [PATCH 047/100] initial update_pending_friends --- server/src/Database_class.py | 1 + server/src/networking.py | 57 +++++++++++++++++++++ server/tests/test_networking.py | 89 +++++++++++++++++++++++++++++++++ 3 files changed, 147 insertions(+) create mode 100644 server/src/networking.py create mode 100644 server/tests/test_networking.py diff --git a/server/src/Database_class.py b/server/src/Database_class.py index bab613c..415908c 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -175,6 +175,7 @@ def search_entry(self, table_name: str, user: str, column: str): cursor.close() return records + # maybe update "sender" to be more general data to append def append_entry( self, table_name: str, sender: str, receiver: str, column: str ) -> None: diff --git a/server/src/networking.py b/server/src/networking.py new file mode 100644 index 0000000..203bdb6 --- /dev/null +++ b/server/src/networking.py @@ -0,0 +1,57 @@ +from pydantic import BaseModel +import os +from dotenv import load_dotenv +import logging +from fastapi import HTTPException + +from Database_class import DataBase + +class Networking(): + def __init__(self, api, logger: logging.Logger): + self.app = api + self.logger = logger + # self.pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") + + # Load environment vars + load_dotenv() + # self.supabase_url = os.getenv("SUPABASE_URL") + # self.supabase_key = os.getenv("SUPABASE_SERVICE_KEY") + + # register login route + self.handle_login() + + # client sends request to server + def handle_friend_request_sent(self): + @self.app.post("/send_request") + async def request_data(request: RequestData): + self.logger.info(f"Received friend request from {request.sender} to {request.receiver}") + + if (self.update_pending_friends(request.sender, request.receiver)): + self.logger.info(f"Friend request successfully sent to {request.receiver}") + + return {"message": f"Friend request successfully sent to {request.receiver}"} + + return {"message": f"Friend request to {request.receiver} unsuccessful"} + + def update_pending_friends(sender, receiver): + table_name = "user_table" + # Search for receiver + if search_user(table_name, receiver): + # If they exist, add the sender to pending friends list + try: + append_entry(table_name, sender, receiver, "pending_friends") + # Send back positive message + self.logger.info(f"Friend request sent successfully") + # Else send back negative message + except Exception as e: + self.logger(e) + print(e) + else: + self.logger.info(f"User {receiver} not found") + +class RequestData(BaseModel): + sender: str + receiver: str + +if __name__ == "__main__": + pass \ No newline at end of file diff --git a/server/tests/test_networking.py b/server/tests/test_networking.py new file mode 100644 index 0000000..946f5d1 --- /dev/null +++ b/server/tests/test_networking.py @@ -0,0 +1,89 @@ +import pytest +from unittest.mock import patch, MagicMock +from server.Database_class import DataBase + +# # Processing a friend request - sent + +# # Processing a friend request - friend acceptance +# # Handling a message request between two clients +# # Source username to IP lookup in db, sending to destination username using IP lookup in db + +# import pytest +# import psycopg2 + +# DB_NAME = "test_db" +# DB_USER = "your_user" +# DB_PASSWORD = "your_password" +# DB_HOST = "localhost" +# DB_PORT = "5432" + +# @pytest.fixture(scope="session") +# def setup_db(): +# """Fixture to create and destroy a temporary PostgreSQL test database.""" +# # Connect to the default database +# conn = psycopg2.connect( +# dbname="postgres", +# user=DB_USER, +# password=DB_PASSWORD, +# host=DB_HOST, +# port=DB_PORT +# ) +# conn.autocommit = True +# cursor = conn.cursor() + +# # Create test database +# cursor.execute(f"CREATE DATABASE {DB_NAME};") +# yield # Tests run here + +# # Drop test database after tests +# cursor.execute(f"DROP DATABASE {DB_NAME};") +# cursor.close() +# conn.close() + +# @pytest.fixture +# def db_conn(setup_db): +# """Fixture to connect to the test database.""" +# conn = psycopg2.connect( +# dbname=DB_NAME, +# user=DB_USER, +# password=DB_PASSWORD, +# host=DB_HOST, +# port=DB_PORT +# ) +# yield conn +# conn.close() + +# def test_insert_and_query(db_conn): +# """Example test that inserts and queries data.""" +# cursor = db_conn.cursor() +# cursor.execute(""" +# CREATE TABLE users ( +# id SERIAL PRIMARY KEY, +# username VARCHAR(50) NOT NULL +# ); +# """) +# cursor.execute("INSERT INTO users (username) VALUES ('john_doe');") +# cursor.execute("SELECT username FROM users WHERE username = 'john_doe';") +# result = cursor.fetchone() +# assert result[0] == 'john_doe' +# cursor.close() + + + +# def test_sent_friend_request_db(db_conn): +# # Sender User, Receiver User +# friend_request = ReceiveFriendRequest() + +# sender = friend_request[0] +# receiver = friend_request[1] + +# cursor = db_conn.cursor() +# cursor.execute(f"SELECT pending FROM users WHERE username = '{receiver}'") + +# cursor.execute(f"""UPDATE {table_name} +# SET {column} = '{data}' +# WHERE username = '{user}';INSERT INTO users (pending_requests) VALUES ('{sender}') WHERE username = {receiver};""") + +# cursor.close() + + From a9de54eed9b3be5bce69a232ffd070d0cfaa3fad Mon Sep 17 00:00:00 2001 From: "@shahapug" Date: Wed, 19 Feb 2025 09:22:25 +0000 Subject: [PATCH 048/100] Test for transport modes --- server/tests/test_wayfinding.py | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index ed40593..c33a3e8 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -52,6 +52,21 @@ def test_check_transport_modes(): for mode in modes: response = get_routes(origin, destination, mode, alternatives, key=key) - - assert response.get("status") == "OK" + + if response["routes"]: + first_route = response["routes"][0] + if first_route["legs"]: + first_leg = first_route["legs"][0] + if first_leg["steps"]: + first_step = first_leg["steps"][mode=="transit"] # true == 1 --> check second leg for transit , false == 0 --> otherwise check the first leg + travel_mode = first_step["travel_mode"] + print(f"Travel mode for the route: {travel_mode}") + else: + print("No steps found in the leg.") + else: + print("No legs found in the route.") + else: + print("No routes found in the response.") + + assert travel_mode.lower() == mode From 5defe913417457f45d58b7893c84517f8f1be568 Mon Sep 17 00:00:00 2001 From: Conor Powderly Date: Wed, 19 Feb 2025 09:44:50 +0000 Subject: [PATCH 049/100] sustainability tests and main file --- server/{ => src}/sustainability.py | 0 server/{ => tests}/test_sustainability.py | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename server/{ => src}/sustainability.py (100%) rename server/{ => tests}/test_sustainability.py (100%) diff --git a/server/sustainability.py b/server/src/sustainability.py similarity index 100% rename from server/sustainability.py rename to server/src/sustainability.py diff --git a/server/test_sustainability.py b/server/tests/test_sustainability.py similarity index 100% rename from server/test_sustainability.py rename to server/tests/test_sustainability.py From 508a992857fdba28757af69650b00a2b693ca59d Mon Sep 17 00:00:00 2001 From: kahern7 Date: Wed, 19 Feb 2025 09:51:22 +0000 Subject: [PATCH 050/100] Updated npm packages --- client/package-lock.json | 156 +++++++++++++++++++++++++++++++-------- client/package.json | 5 +- 2 files changed, 131 insertions(+), 30 deletions(-) diff --git a/client/package-lock.json b/client/package-lock.json index 69723bb..7d0ce08 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -8,6 +8,8 @@ "name": "client", "version": "1.0.0", "dependencies": { + "@googlemaps/polyline-codec": "^1.0.28", + "@react-google-maps/api": "^2.20.6", "@react-navigation/native": "^7.0.2", "@react-navigation/native-stack": "^7.0.2", "crypto": "^1.0.1", @@ -15,7 +17,8 @@ "expo": "^52.0.7", "expo-location": "^18.0.2", "expo-status-bar": "~2.0.0", - "react": "18.3.1", + "react": "^18.3.1", + "react-dom": "^18.3.1", "react-native": "0.76.2", "react-native-element-dropdown": "^2.12.4", "react-native-gesture-handler": "~2.20.2", @@ -2852,6 +2855,28 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/@googlemaps/js-api-loader": { + "version": "1.16.8", + "resolved": "https://registry.npmjs.org/@googlemaps/js-api-loader/-/js-api-loader-1.16.8.tgz", + "integrity": "sha512-CROqqwfKotdO6EBjZO/gQGVTbeDps5V7Mt9+8+5Q+jTg5CRMi3Ii/L9PmV3USROrt2uWxtGzJHORmByxyo9pSQ==", + "license": "Apache-2.0" + }, + "node_modules/@googlemaps/markerclusterer": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@googlemaps/markerclusterer/-/markerclusterer-2.5.3.tgz", + "integrity": "sha512-x7lX0R5yYOoiNectr10wLgCBasNcXFHiADIBdmn7jQllF2B5ENQw5XtZK+hIw4xnV0Df0xhN4LN98XqA5jaiOw==", + "license": "Apache-2.0", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "supercluster": "^8.0.1" + } + }, + "node_modules/@googlemaps/polyline-codec": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/@googlemaps/polyline-codec/-/polyline-codec-1.0.28.tgz", + "integrity": "sha512-m7rh8sbxlrHvebXEweBHX8r1uPtToPRYxWDD6p6k2YG8hyhBe0Wi6xRUVFpxpEseMNgF+OBotFQC5senj8K7TQ==", + "license": "Apache-2.0" + }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", @@ -3229,6 +3254,36 @@ "node": ">=14" } }, + "node_modules/@react-google-maps/api": { + "version": "2.20.6", + "resolved": "https://registry.npmjs.org/@react-google-maps/api/-/api-2.20.6.tgz", + "integrity": "sha512-frxkSHWbd36ayyxrEVopSCDSgJUT1tVKXvQld2IyzU3UnDuqqNA3AZE4/fCdqQb2/zBQx3nrWnZB1wBXDcrjcw==", + "license": "MIT", + "dependencies": { + "@googlemaps/js-api-loader": "1.16.8", + "@googlemaps/markerclusterer": "2.5.3", + "@react-google-maps/infobox": "2.20.0", + "@react-google-maps/marker-clusterer": "2.20.0", + "@types/google.maps": "3.58.1", + "invariant": "2.2.4" + }, + "peerDependencies": { + "react": "^16.8 || ^17 || ^18 || ^19", + "react-dom": "^16.8 || ^17 || ^18 || ^19" + } + }, + "node_modules/@react-google-maps/infobox": { + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/@react-google-maps/infobox/-/infobox-2.20.0.tgz", + "integrity": "sha512-03PJHjohhaVLkX6+NHhlr8CIlvUxWaXhryqDjyaZ8iIqqix/nV8GFdz9O3m5OsjtxtNho09F/15j14yV0nuyLQ==", + "license": "MIT" + }, + "node_modules/@react-google-maps/marker-clusterer": { + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/@react-google-maps/marker-clusterer/-/marker-clusterer-2.20.0.tgz", + "integrity": "sha512-tieX9Va5w1yP88vMgfH1pHTacDQ9TgDTjox3tLlisKDXRQWdjw+QeVVghhf5XqqIxXHgPdcGwBvKY6UP+SIvLw==", + "license": "MIT" + }, "node_modules/@react-native-picker/picker": { "version": "2.11.0", "resolved": "https://registry.npmjs.org/@react-native-picker/picker/-/picker-2.11.0.tgz", @@ -3618,21 +3673,21 @@ } }, "node_modules/@react-navigation/core": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-7.0.2.tgz", - "integrity": "sha512-LbDVHSxX870QVnlndqDFFP6Kulc0atpCiswiM7f6GDIHJEniz3XaX7Wg9rliZ9L35/Uy81/F7UlF/USSU7LM1w==", + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-7.3.1.tgz", + "integrity": "sha512-S3KCGvNsoqVk8ErAtQI2EAhg9185lahF5OY01ofrrD4Ij/uk3QEHHjoGQhR5l5DXSCSKr1JbMQA7MEKMsBiWZA==", "license": "MIT", "dependencies": { - "@react-navigation/routers": "^7.0.0", + "@react-navigation/routers": "^7.1.2", "escape-string-regexp": "^4.0.0", - "nanoid": "3.3.7", + "nanoid": "3.3.8", "query-string": "^7.1.3", "react-is": "^18.2.0", "use-latest-callback": "^0.2.1", "use-sync-external-store": "^1.2.2" }, "peerDependencies": { - "react": "*" + "react": ">= 18.2.0" } }, "node_modules/@react-navigation/elements": { @@ -3657,15 +3712,15 @@ } }, "node_modules/@react-navigation/native": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-7.0.2.tgz", - "integrity": "sha512-r/q7HR953H/VDIL/C1krQh9c11KgDhiRlvbkf0kGVN2WXQuiCVCqeDMoQzkgER/NbICPFLPgoqVRM8nnUbSCRA==", + "version": "7.0.14", + "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-7.0.14.tgz", + "integrity": "sha512-Gi6lLw4VOGSWAhmUdJOMauOKGK51/YA1CprjXm91sNfgERWvznqEMw8QmUQx9SEqYfi0LfZhbzpMst09SJ00lw==", "license": "MIT", "dependencies": { - "@react-navigation/core": "^7.0.2", + "@react-navigation/core": "^7.3.1", "escape-string-regexp": "^4.0.0", "fast-deep-equal": "^3.1.3", - "nanoid": "3.3.7", + "nanoid": "3.3.8", "use-latest-callback": "^0.2.1" }, "peerDependencies": { @@ -3691,12 +3746,12 @@ } }, "node_modules/@react-navigation/routers": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-7.0.0.tgz", - "integrity": "sha512-b2ehNmgAfDziTd0EERm0C9JI9JH1kdRS4SNBWbKQOVPv23WG+5ExovwWet26sGtMabLJ5lxSE8Z2/fByfggjNQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-7.1.2.tgz", + "integrity": "sha512-emdEjpVDK8zbiu2GChC8oYIAub9i/OpNuQJekVsbyFCBz4/TzaBzms38Q53YaNhdIFNmiYLfHv/Y1Ub7KYfm3w==", "license": "MIT", "dependencies": { - "nanoid": "3.3.7" + "nanoid": "3.3.8" } }, "node_modules/@segment/loosely-validate-event": { @@ -3779,6 +3834,12 @@ "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==", "license": "MIT" }, + "node_modules/@types/google.maps": { + "version": "3.58.1", + "resolved": "https://registry.npmjs.org/@types/google.maps/-/google.maps-3.58.1.tgz", + "integrity": "sha512-X9QTSvGJ0nCfMzYOnaVs/k6/4L+7F5uCS+4iUmkLEls6J9S/Phv+m/i3mDeyc49ZBgwab3EFO1HEoBY7k98EGQ==", + "license": "MIT" + }, "node_modules/@types/graceful-fs": { "version": "4.1.9", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", @@ -5937,9 +5998,9 @@ } }, "node_modules/execa/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "license": "MIT", "dependencies": { "nice-try": "^1.0.4", @@ -7420,6 +7481,12 @@ "graceful-fs": "^4.1.6" } }, + "node_modules/kdbush": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-4.0.2.tgz", + "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==", + "license": "ISC" + }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -8560,9 +8627,9 @@ } }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "funding": [ { "type": "github", @@ -9532,6 +9599,28 @@ } } }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-dom/node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, "node_modules/react-freeze": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz", @@ -10851,6 +10940,15 @@ "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==", "license": "MIT" }, + "node_modules/supercluster": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-8.0.1.tgz", + "integrity": "sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==", + "license": "ISC", + "dependencies": { + "kdbush": "^4.0.2" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -11277,9 +11375,9 @@ } }, "node_modules/undici": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.0.tgz", - "integrity": "sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==", + "version": "6.21.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.1.tgz", + "integrity": "sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ==", "license": "MIT", "engines": { "node": ">=18.17" @@ -11425,12 +11523,12 @@ } }, "node_modules/use-sync-external-store": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", - "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz", + "integrity": "sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==", "license": "MIT", "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "node_modules/util-deprecate": { diff --git a/client/package.json b/client/package.json index 7ea2f02..e76b762 100644 --- a/client/package.json +++ b/client/package.json @@ -9,6 +9,8 @@ "web": "expo start --web" }, "dependencies": { + "@googlemaps/polyline-codec": "^1.0.28", + "@react-google-maps/api": "^2.20.6", "@react-navigation/native": "^7.0.2", "@react-navigation/native-stack": "^7.0.2", "crypto": "^1.0.1", @@ -16,7 +18,8 @@ "expo": "^52.0.7", "expo-location": "^18.0.2", "expo-status-bar": "~2.0.0", - "react": "18.3.1", + "react": "^18.3.1", + "react-dom": "^18.3.1", "react-native": "0.76.2", "react-native-element-dropdown": "^2.12.4", "react-native-gesture-handler": "~2.20.2", From f17acc7256eddd2a2850872a891c596aa57806c8 Mon Sep 17 00:00:00 2001 From: Conor Powderly Date: Wed, 19 Feb 2025 09:52:59 +0000 Subject: [PATCH 051/100] Pep8 formatting --- server/src/sustainability.py | 16 ++++++++-------- server/tests/test_sustainability.py | 13 +++++++------ 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/server/src/sustainability.py b/server/src/sustainability.py index 8d53c73..9f6493c 100644 --- a/server/src/sustainability.py +++ b/server/src/sustainability.py @@ -2,10 +2,10 @@ class VehicleEnum(Enum): - Bus = 'b' - Car = 'c' - Luas = 'l' - Train = 't' + Bus = "b" + Car = "c" + Luas = "l" + Train = "t" def calc_emissions(distance: float, vehicle_type: VehicleEnum) -> float: @@ -24,13 +24,13 @@ def calc_emissions(distance: float, vehicle_type: VehicleEnum) -> float: if distance < 0: return -1 - elif vehicle_type == 'b': + elif vehicle_type == "b": emission_factor = 25 - elif vehicle_type == 'c': + elif vehicle_type == "c": emission_factor = 102 - elif vehicle_type == 'l': + elif vehicle_type == "l": emission_factor = 5 - elif vehicle_type == 't': + elif vehicle_type == "t": emission_factor = 28 else: return -1 diff --git a/server/tests/test_sustainability.py b/server/tests/test_sustainability.py index 73b1ca3..b248085 100644 --- a/server/tests/test_sustainability.py +++ b/server/tests/test_sustainability.py @@ -4,28 +4,29 @@ # Test Emissions calculating function + def test_car_calc_emissions(): - assert calc_emissions(7, 'c') == 714 + assert calc_emissions(7, "c") == 714 def test_bus_calc_emissions(): - assert calc_emissions(7, 'b') == 175 + assert calc_emissions(7, "b") == 175 def test_train_calc_emissions(): - assert calc_emissions(7, 't') == 196 + assert calc_emissions(7, "t") == 196 def test_luas_calc_emissions(): - assert calc_emissions(7, 'l') == 35 + assert calc_emissions(7, "l") == 35 def test_invalidDistance_calc_emissions(): - assert calc_emissions(-7, 'c') == -1 + assert calc_emissions(-7, "c") == -1 def test_invalid_Vehichle_calc_emissions(): - assert calc_emissions(7, 'x') == -1 + assert calc_emissions(7, "x") == -1 # Test score calculating function From c638f8f3ad353c456aa58ddda660c01d1342163a Mon Sep 17 00:00:00 2001 From: Conor Powderly Date: Wed, 19 Feb 2025 09:55:27 +0000 Subject: [PATCH 052/100] pep8 changes --- server/tests/test_sustainability.py | 1 - 1 file changed, 1 deletion(-) diff --git a/server/tests/test_sustainability.py b/server/tests/test_sustainability.py index b248085..7098bbd 100644 --- a/server/tests/test_sustainability.py +++ b/server/tests/test_sustainability.py @@ -1,5 +1,4 @@ from sustainability import calc_emissions, calc_scores -import pytest # Test Emissions calculating function From 198b346d13a087c47d4e4e63d364b4410e460f5e Mon Sep 17 00:00:00 2001 From: Conor Powderly Date: Wed, 19 Feb 2025 09:57:15 +0000 Subject: [PATCH 053/100] formatting changes --- server/tests/test_sustainability.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/tests/test_sustainability.py b/server/tests/test_sustainability.py index 7098bbd..342110e 100644 --- a/server/tests/test_sustainability.py +++ b/server/tests/test_sustainability.py @@ -1,4 +1,4 @@ -from sustainability import calc_emissions, calc_scores +from src.sustainability import calc_emissions, calc_scores # Test Emissions calculating function From 044344fd8426f36416dd7b054b0a252ebdc0d924 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Wed, 19 Feb 2025 10:26:54 +0000 Subject: [PATCH 054/100] Fixed relative file location bug in main.py --- server/src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main.py b/server/src/main.py index 2dad0db..f303152 100644 --- a/server/src/main.py +++ b/server/src/main.py @@ -1,6 +1,6 @@ from fastapi import FastAPI, Request, WebSocket, WebSocketDisconnect # from src.wayfinding import router # Import the API routes -from wayfinding import router # Import the API routes +from src.wayfinding import router # Import the API routes from fastapi.middleware.cors import CORSMiddleware from pydantic import BaseModel import logging From 5ae7957b22f1e8ad8b1199a7ab8a5ff9cec350d5 Mon Sep 17 00:00:00 2001 From: FEguare <123463013+FEguare@users.noreply.github.com> Date: Thu, 20 Feb 2025 15:24:12 +0000 Subject: [PATCH 055/100] only allow one request from user a to b at a time --- server/src/networking.py | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/server/src/networking.py b/server/src/networking.py index 203bdb6..98a2ae5 100644 --- a/server/src/networking.py +++ b/server/src/networking.py @@ -35,20 +35,33 @@ async def request_data(request: RequestData): def update_pending_friends(sender, receiver): table_name = "user_table" - # Search for receiver if search_user(table_name, receiver): - # If they exist, add the sender to pending friends list try: - append_entry(table_name, sender, receiver, "pending_friends") - # Send back positive message - self.logger.info(f"Friend request sent successfully") - # Else send back negative message + request_list = search_entry(table_name, receiver, "pending_friends") + if sender not in request_list: + append_entry(table_name, sender, receiver, "pending_friends") + self.logger.info(f"Friend request sent successfully") + else: + self.logger.info(f"Friend request already sent") except Exception as e: self.logger(e) print(e) else: self.logger.info(f"User {receiver} not found") + # client requests pending friend requests + def handle_pending_friend_request(self): + @self.app.post("/check_requests") + async def check_friends_list(user: str): + self.logger.info(f"Received request for pending friends from {user}") + # TODO: switch out "update_pending_friends" + if (self.update_pending_friends(request.sender, request.receiver)): + self.logger.info(f"Friend request successfully sent to {request.receiver}") + + return {"message": f"Friend request successfully sent to {request.receiver}"} + + return {"message": f"Friend request to {request.receiver} unsuccessful"} + class RequestData(BaseModel): sender: str receiver: str From 51cebb25d30c150eebce5f84a44d0990416e5b6f Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Fri, 21 Feb 2025 09:41:44 +0000 Subject: [PATCH 056/100] friend request handling functions --- server/src/Database_class.py | 29 +++++++++++ server/src/networking.py | 99 +++++++++++++++++++++++++++++------- 2 files changed, 111 insertions(+), 17 deletions(-) diff --git a/server/src/Database_class.py b/server/src/Database_class.py index 415908c..2accdd8 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -204,6 +204,35 @@ def append_entry( finally: cursor.close() + def remove_from_array( + self, table_name: str, user: str, column: str, value_to_remove: str + ) -> None: + """Remove a specific value from an array column in a user's row. + + Args: + table_name (str): Name of the table to be queried + user (str): The username used to identify the record in the table + column (str): The array column to remove the value from + value_to_remove (str): The value to remove from the array + """ + try: + cursor = self.connection.cursor() + query = ( + f"UPDATE {table_name} " + f"SET {column} = ARRAY_REMOVE({column}, '{value_to_remove}')" + f"WHERE username = '{user}';" + ) + cursor.execute(query) + self.connection.commit() + + except Exception as e: + self.connection.rollback() + print("An error occurred while removing value from array column:", e) + + finally: + cursor.close() + + def print_table(self, tablename: str): """Prints current selected table diff --git a/server/src/networking.py b/server/src/networking.py index 98a2ae5..0fa24bf 100644 --- a/server/src/networking.py +++ b/server/src/networking.py @@ -21,50 +21,115 @@ def __init__(self, api, logger: logging.Logger): self.handle_login() # client sends request to server - def handle_friend_request_sent(self): + def api_send_friend_request(self): @self.app.post("/send_request") async def request_data(request: RequestData): self.logger.info(f"Received friend request from {request.sender} to {request.receiver}") - if (self.update_pending_friends(request.sender, request.receiver)): - self.logger.info(f"Friend request successfully sent to {request.receiver}") + if request.sender == request.receiver: + return{ + "message": "Cannot send request to self" + } + else: + response = self.db_handle_friend_request(self, request.sender, request.receiver) + return{ + "message": response + } - return {"message": f"Friend request successfully sent to {request.receiver}"} - - return {"message": f"Friend request to {request.receiver} unsuccessful"} - - def update_pending_friends(sender, receiver): + def db_handle_friend_request(self, sender, receiver): + db = DataBase() + db.connect_db() table_name = "user_table" - if search_user(table_name, receiver): + + if db.search_user(table_name, receiver): try: - request_list = search_entry(table_name, receiver, "pending_friends") + request_list = db.search_entry(table_name, receiver, "pending_friends") if sender not in request_list: - append_entry(table_name, sender, receiver, "pending_friends") + db.append_entry(table_name, sender, receiver, "pending_friends") self.logger.info(f"Friend request sent successfully") + db.close_con() + return f"Friend request to {receiver} sent successfully" else: self.logger.info(f"Friend request already sent") + db.close_con() + return "Friend request already sent" except Exception as e: self.logger(e) print(e) + db.close_con() + return "Error during friend request" else: self.logger.info(f"User {receiver} not found") + db.close_con() + return f"User \"{receiver}\" not found" # client requests pending friend requests - def handle_pending_friend_request(self): + def api_fetch_all_friends(self): @self.app.post("/check_requests") async def check_friends_list(user: str): self.logger.info(f"Received request for pending friends from {user}") - # TODO: switch out "update_pending_friends" - if (self.update_pending_friends(request.sender, request.receiver)): - self.logger.info(f"Friend request successfully sent to {request.receiver}") + friends, pending_friends = self.fetch_all_friends(user) + self.logger.info("Friends & Pending friends retrieved") + return { + "friends": friends, + "pending_friends": pending_friends + } + + def db_fetch_all_friends(user): + table_name = "user_table" + db = DataBase() + db.connect_db() + friends_list = db.search_entry(table_name, user, "friends_list") + pending_friends = db.search_entry(table_name, user, "pending_friends") + db.close_con() + return friends_list, pending_friends + + + def api_friend_request_response(self): + @self.app.post("/request_response") + async def answer_friend_request(user: str, requester: str, answer: bool): + self.logger.info(f"Processing friend request from {requester} to {user}") + return_msg = self.db_friend_request_response(self, user, requester, answer) - return {"message": f"Friend request successfully sent to {request.receiver}"} + return { + "message": return_msg + } - return {"message": f"Friend request to {request.receiver} unsuccessful"} + def db_friend_request_response(self, user: str, requester: str, answer: bool): + db = DataBase() + db.connect_db() + table_name = "user_table" + friend_column = "friends_list" + pending_friends_column = "pending_friends" + + # remove from pending friends + db.remove_from_array(table_name, user, pending_friends_column, requester) + + if db.search_user("user_table", requester): + # if answer is yes (true) + if answer: + # add to friends + db.append_entry(table_name, requester, user, friend_column) + db.append_entry(table_name, user, requester, friend_column) + db.close_con() + self.logger.info(f"{user} and {requester} are now friends") + return f"New friend {requester} added" + else: + db.close_con() + self.logger.info(f"Friend request denied") + return f"Friend request declined" + + else: + db.close_con() + self.logger.info(f"Requester '{requester}' not found in user_table") + return "user not found" class RequestData(BaseModel): sender: str receiver: str +class CurrentUser(BaseModel): + user: str + if __name__ == "__main__": pass \ No newline at end of file From ca6838c6012a42ca46d6101bcada6ee076727355 Mon Sep 17 00:00:00 2001 From: CormacSharkey Date: Fri, 21 Feb 2025 09:43:37 +0000 Subject: [PATCH 057/100] fixing database queries --- server/src/Database_class.py | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/server/src/Database_class.py b/server/src/Database_class.py index 415908c..3afb19e 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -49,15 +49,17 @@ def create_table( table info (dict[str, str]): dict containing columns as keys and data type as column type """ + try: cursor = self.connection.cursor() query = f"""CREATE TABLE {table_name} (""" - query = f"""CREATE TABLE {table_name} (""" for key in table_info.keys(): query += f"{key} {table_info[key]}," query = query[0:-1] query += ");" + + print(query) cursor.execute(query) cursor.close() @@ -65,6 +67,12 @@ def create_table( self.connection.rollback() print("An error occurred:", e) + + # cursor = self.connection.cursor() + # data = cursor.execute("SELECT * FROM information_schema.tables") + # data = cursor.fetchall() + # print(data) + def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: """Add row to database with new entry @@ -156,9 +164,9 @@ def search_entry(self, table_name: str, user: str, column: str): records = None cursor = self.connection.cursor() - query = f"SELECT {column} " - f"FROM {table_name} " - f"WHERE username = '{user}';" + query = f"""SELECT {column} + FROM {table_name} + WHERE username = '{user}';""" cursor.execute(query) records = cursor.fetchall() @@ -265,7 +273,7 @@ def main(): # Initialise database class db = DataBase() - table_name = "user_table" + table_name = "testing_table" table_info = { "id": "SERIAL PRIMARY KEY", "username": "VARCHAR(50)", @@ -291,11 +299,12 @@ def main(): result = db.search_entry(table_name, "Conor", "pending_friends") print(result) - db.append_entry(table_name, "keith", "Conor", "sus_score") - result = db.search_entry(table_name, "Conor", "sus_score") - print(result) - db.search_user(table_name, "Fiona") + db.append_entry(table_name, "keith", "Conor", "pending_friends") + db.append_entry(table_name, "siobhan", "Conor", "pending_friends") + + result = db.search_entry(table_name, "Conor", "pending_friends") + print(result) # db.add_entry(table_name, {"username": "Keith", # "password": "strong password"}) From 6d6f3a8c1da5209198e2640f930a6512b9f11c43 Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Fri, 21 Feb 2025 09:49:58 +0000 Subject: [PATCH 058/100] Formatting --- server/src/Database_class.py | 4 +- server/src/networking.py | 101 +++++++++++++++++++---------------- 2 files changed, 57 insertions(+), 48 deletions(-) diff --git a/server/src/Database_class.py b/server/src/Database_class.py index 2accdd8..64619e1 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -227,12 +227,12 @@ def remove_from_array( except Exception as e: self.connection.rollback() - print("An error occurred while removing value from array column:", e) + print("An error occurred while removing" + + "value from array column:", e) finally: cursor.close() - def print_table(self, tablename: str): """Prints current selected table diff --git a/server/src/networking.py b/server/src/networking.py index 0fa24bf..3e6b5b2 100644 --- a/server/src/networking.py +++ b/server/src/networking.py @@ -1,40 +1,34 @@ from pydantic import BaseModel -import os from dotenv import load_dotenv import logging -from fastapi import HTTPException - from Database_class import DataBase -class Networking(): + +class Networking: def __init__(self, api, logger: logging.Logger): self.app = api self.logger = logger - # self.pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") # Load environment vars load_dotenv() - # self.supabase_url = os.getenv("SUPABASE_URL") - # self.supabase_key = os.getenv("SUPABASE_SERVICE_KEY") - - # register login route self.handle_login() # client sends request to server def api_send_friend_request(self): @self.app.post("/send_request") async def request_data(request: RequestData): - self.logger.info(f"Received friend request from {request.sender} to {request.receiver}") - + self.logger.info( + "Received friend request from " + + f"{request.sender} to {request.receiver}" + ) + if request.sender == request.receiver: - return{ - "message": "Cannot send request to self" - } + return {"message": "Cannot send request to self"} else: - response = self.db_handle_friend_request(self, request.sender, request.receiver) - return{ - "message": response - } + response = self.db_handle_friend_request( + self, request.sender, request.receiver + ) + return {"message": response} def db_handle_friend_request(self, sender, receiver): db = DataBase() @@ -43,14 +37,18 @@ def db_handle_friend_request(self, sender, receiver): if db.search_user(table_name, receiver): try: - request_list = db.search_entry(table_name, receiver, "pending_friends") + request_list = db.search_entry( + table_name, receiver, "pending_friends" + ) if sender not in request_list: - db.append_entry(table_name, sender, receiver, "pending_friends") - self.logger.info(f"Friend request sent successfully") + db.append_entry( + table_name, sender, receiver, "pending_friends" + ) + self.logger.info("Friend request sent successfully") db.close_con() return f"Friend request to {receiver} sent successfully" else: - self.logger.info(f"Friend request already sent") + self.logger.info("Friend request already sent") db.close_con() return "Friend request already sent" except Exception as e: @@ -61,20 +59,19 @@ def db_handle_friend_request(self, sender, receiver): else: self.logger.info(f"User {receiver} not found") db.close_con() - return f"User \"{receiver}\" not found" + return f'User "{receiver}" not found' # client requests pending friend requests def api_fetch_all_friends(self): @self.app.post("/check_requests") async def check_friends_list(user: str): - self.logger.info(f"Received request for pending friends from {user}") + self.logger.info( + f"Received request for pending friends from {user}" + ) friends, pending_friends = self.fetch_all_friends(user) self.logger.info("Friends & Pending friends retrieved") - return { - "friends": friends, - "pending_friends": pending_friends - } - + return {"friends": friends, "pending_friends": pending_friends} + def db_fetch_all_friends(user): table_name = "user_table" db = DataBase() @@ -83,19 +80,24 @@ def db_fetch_all_friends(user): pending_friends = db.search_entry(table_name, user, "pending_friends") db.close_con() return friends_list, pending_friends - def api_friend_request_response(self): @self.app.post("/request_response") - async def answer_friend_request(user: str, requester: str, answer: bool): - self.logger.info(f"Processing friend request from {requester} to {user}") - return_msg = self.db_friend_request_response(self, user, requester, answer) - - return { - "message": return_msg - } - - def db_friend_request_response(self, user: str, requester: str, answer: bool): + async def answer_friend_request( + user: str, requester: str, answer: bool + ): + self.logger.info( + f"Processing friend request from {requester} to {user}" + ) + return_msg = self.db_friend_request_response( + self, user, requester, answer + ) + + return {"message": return_msg} + + def db_friend_request_response( + self, user: str, requester: str, answer: bool + ): db = DataBase() db.connect_db() table_name = "user_table" @@ -103,33 +105,40 @@ def db_friend_request_response(self, user: str, requester: str, answer: bool): pending_friends_column = "pending_friends" # remove from pending friends - db.remove_from_array(table_name, user, pending_friends_column, requester) + db.remove_from_array( + table_name, user, pending_friends_column, requester + ) if db.search_user("user_table", requester): # if answer is yes (true) if answer: # add to friends - db.append_entry(table_name, requester, user, friend_column) + db.append_entry(table_name, requester, user, friend_column) db.append_entry(table_name, user, requester, friend_column) db.close_con() self.logger.info(f"{user} and {requester} are now friends") return f"New friend {requester} added" else: db.close_con() - self.logger.info(f"Friend request denied") - return f"Friend request declined" - + self.logger.info("Friend request denied") + return "Friend request declined" + else: db.close_con() - self.logger.info(f"Requester '{requester}' not found in user_table") + self.logger.info( + f"Requester '{requester}' not found in user_table" + ) return "user not found" + class RequestData(BaseModel): sender: str receiver: str + class CurrentUser(BaseModel): user: str + if __name__ == "__main__": - pass \ No newline at end of file + pass From 803cfd601ce565b4bb97be21b0ab61e76d38a6e4 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Fri, 21 Feb 2025 13:35:58 +0000 Subject: [PATCH 059/100] Added polyline generation and display route screen --- client/App.js | 2 + client/DisplayRoute.js | 78 + client/FindRoute.js | 9 +- client/Map.js | 142 +- client/babel.config.js | 1 + client/jest.config.js | 9 + client/map(temp).js | 278 ++ client/mapUtils.js | 70 + client/package-lock.json | 3766 +++++++++++++-- client/package.json | 11 +- client/tests/mapUtils.test.js | 112 + client/tests/response.json | 8301 +++++++++++++++++++++++++++++++++ server/requirements.txt | 1 + server/src/wayfinding.py | 20 +- 14 files changed, 12433 insertions(+), 367 deletions(-) create mode 100644 client/DisplayRoute.js create mode 100644 client/jest.config.js create mode 100644 client/map(temp).js create mode 100644 client/mapUtils.js create mode 100644 client/tests/mapUtils.test.js create mode 100644 client/tests/response.json diff --git a/client/App.js b/client/App.js index 0d99ad0..13c624a 100644 --- a/client/App.js +++ b/client/App.js @@ -5,6 +5,7 @@ import LoginScreen from './LogIn'; import MapScreen from './Map'; import WeatherScreen from './Weather'; import FindRouteScreen from './FindRoute'; +import DisplayRouteScreen from './DisplayRoute'; const Stack = createNativeStackNavigator(); @@ -16,6 +17,7 @@ export default function App() { + ); diff --git a/client/DisplayRoute.js b/client/DisplayRoute.js new file mode 100644 index 0000000..7e155bc --- /dev/null +++ b/client/DisplayRoute.js @@ -0,0 +1,78 @@ +import React, { useEffect, useState } from 'react'; +import { View, StyleSheet, Text } from 'react-native'; +import MapView, { Polyline, Marker } from 'react-native-maps'; +import { decodeRoute, getCurrentLocation, startLocationTracking } from './mapUtils'; + +export default function DisplayRouteScreen({ route }) { + const { origin, destination, routeData } = route.params; + const [routes, setRoutes] = useState([]); + const [location, setLocation] = useState(null); + const [errorMessage, setErrorMessage] = useState(''); + const [polylineCoordinates, setPolylineCoordinates] = useState([]); + + // Get current location + useEffect(() => { + (async () => { + try { + const initialLocation = await getCurrentLocation(); + setLocation(initialLocation); + + const locationSubscription = await startLocationTracking(setLocation); + + return () => locationSubscription.remove(); + } catch (error) { + setErrorMessage(error.message); + } + })(); + }, []); + + // Generate polyline + // Decode and set polyline coordinates + useEffect(() => { + if (routeData && routeData.routes && routeData.routes.length > 0) { + const encodedPolyline = routeData.routes[0].overview_polyline.points; + const decodedPath = decodeRoute(encodedPolyline); // Decode into lat/lng pairs + setPolylineCoordinates(decodedPath); + } + }, [routeData]); + + return ( + + {errorMessage ? ( + {errorMessage} + ) : location ? ( + <> + 0 ? routes[0][0].latitude : location.latitude, + longitude: routes.length > 0 ? routes[0][0].longitude : location.longitude, + latitudeDelta: 0.01, + longitudeDelta: 0.01, + }} + > + + {polylineCoordinates.length > 0 && ( + + )} + + + ) : ( + Fetching your location... + )} + + ); +} + +const styles = StyleSheet.create({ + container: { flex: 1 }, + map: { flex: 1 }, +}); diff --git a/client/FindRoute.js b/client/FindRoute.js index ad70351..9f4662a 100644 --- a/client/FindRoute.js +++ b/client/FindRoute.js @@ -43,9 +43,14 @@ export default function FindRouteScreen({ navigation }){ const data = await response.json(); console.log('Server response:', data); + setServerResponse("Data has been queried successfully!") - await new Promise(resolve => setTimeout(resolve, 3000)); - setServerResponse("") + // await new Promise(resolve => setTimeout(resolve, 3000)); + // setServerResponse("") + + // Navigate to DisplayRouteScreen with the response data + navigation.navigate('DisplayRouteScreen', { routeData: data }); + } catch (error) { console.error('Error details:', error); } diff --git a/client/Map.js b/client/Map.js index 863f545..972c563 100644 --- a/client/Map.js +++ b/client/Map.js @@ -2,13 +2,14 @@ import React, { useState, useEffect, useRef } from 'react'; import { StyleSheet, View, Text, TouchableOpacity, Alert, Platform } from 'react-native'; import MapView, { Marker } from 'react-native-maps'; import * as Location from 'expo-location'; +import { getCurrentLocation, startLocationTracking } from './mapUtils'; export default function MapScreen({ navigation }) { const [webSocket, setWebSocket] = useState(null); - const [location, setLocation] = useState(null); // No hardcoded initial location + const [location, setLocation] = useState(null); const [errorMessage, setErrorMessage] = useState(''); - const mapRef = useRef(null); // Reference to the MapView - + const mapRef = useRef(null); + // WebSocket Setup useEffect(() => { const wsUrl = `${process.env.EXPO_PUBLIC_API_URL.replace(/^http/, 'ws')}/ws/location`; @@ -20,81 +21,77 @@ export default function MapScreen({ navigation }) { console.log('WebSocket connection opened'); setWebSocket(socket); }; + + socket.onmessage = (event) => console.log('Message from server:', event.data); // check if required + socket.onerror = (error) => console.error('WebSocket error:', error); + socket.onclose = () => console.log('WebSocket connection closed'); - socket.onmessage = (event) => { - console.log('Message from server:', event.data); - }; + return () => socket.close(); + }, []); - socket.onerror = (error) => { - console.error('WebSocket error:', error); - }; + // Location Setup + // useEffect(() => { + // (async () => { + // const { status } = await Location.requestForegroundPermissionsAsync(); + // if (status !== 'granted') { + // setErrorMessage('Permission to access location was denied.'); + // return; + // } - socket.onclose = () => { - console.log('WebSocket connection closed'); - }; + // const currentLocation = await Location.getCurrentPositionAsync({ + // accuracy: Location.Accuracy.BestForNavigation, + // }); + // setLocation(currentLocation.coords); - return () => { - socket.close(); - }; - }, []); + // // Track location updates + // const locationSubscription = await Location.watchPositionAsync( + // { + // accuracy: Location.Accuracy.BestForNavigation, + // timeInterval: 5000, + // distanceInterval: 5, + // }, + // (newLocation) => { + // setLocation(newLocation.coords); + // if (mapRef.current) { + // mapRef.current.animateToRegion({ + // latitude: newLocation.coords.latitude, + // longitude: newLocation.coords.longitude, + // latitudeDelta: 0.01, + // longitudeDelta: 0.01, + // }, 1000); + // } + // } + // ); + + // return () => locationSubscription.remove(); + // })(); + // }, []); - // Location Setup useEffect(() => { (async () => { - const { status } = await Location.requestForegroundPermissionsAsync(); - if (status !== 'granted') { - setErrorMessage('Permission to access location was denied.'); - return; - } + try { + const initialLocation = await getCurrentLocation(); + setLocation(initialLocation); - // Fetch initial location - const currentLocation = await Location.getCurrentPositionAsync({ - accuracy: Location.Accuracy.BestForNavigation, - }); - const { latitude, longitude } = currentLocation.coords; - setLocation({ latitude, longitude }); - - // Set up continuous location tracking - const locationSubscription = await Location.watchPositionAsync( - { - accuracy: Location.Accuracy.BestForNavigation, - timeInterval: 5000, // Update every 5 seconds - distanceInterval: 5, // Update if device moves 5 meters - }, - (newLocation) => { - const { latitude, longitude } = newLocation.coords; - console.log('Updated Location:', { latitude, longitude }); - setLocation({ latitude, longitude }); - - // Animate the map to the new region - if (mapRef.current) { - mapRef.current.animateToRegion( - { - latitude, - longitude, - latitudeDelta: 0.01, - longitudeDelta: 0.01, - }, - 1000 // Animation duration in milliseconds - ); - } - } - ); + const locationSubscription = await startLocationTracking(setLocation); - return () => locationSubscription.remove(); + return () => locationSubscription.remove(); + } catch (error) { + setErrorMessage(error.message); + } })(); }, []); - // Function to Send Location to WebSocket + // Send Location to WebSocket const sendLocation = () => { if (webSocket && location) { - const locationData = JSON.stringify(location); - webSocket.send(locationData); - console.log('Sent location:', locationData); - } else if (!location) { - Alert.alert('Location not available', 'Please wait for the GPS to fetch your location.'); + webSocket.send(JSON.stringify(location)); + console.log('Sent location:', location); } else { - Alert.alert('WebSocket not connected', 'Please wait for the WebSocket connection to establish.'); + Alert.alert( + 'Location/WebSocket Issue', + !location ? 'Fetching GPS location...' : 'WebSocket not connected.' + ); } }; @@ -153,6 +150,23 @@ export default function MapScreen({ navigation }) { ); } + +// const styles = StyleSheet.create({ +// container: { flex: 1, ...(Platform.OS === 'web' ? { height: '100vh' } : {}) }, +// map: { flex: 1, minHeight: 300 }, +// sendButton: { +// position: 'absolute', bottom: 20, left: '50%', transform: [{ translateX: -50 }], +// backgroundColor: '#007bff', paddingVertical: 10, paddingHorizontal: 20, borderRadius: 10, +// }, +// button: { +// position: 'absolute', bottom: 60, left: '50%', transform: [{ translateX: -50 }], +// backgroundColor: '#007bff', paddingVertical: 10, paddingHorizontal: 20, borderRadius: 10, +// }, +// buttonText: { color: '#fff', fontWeight: 'bold', textAlign: 'center' }, +// error: { flex: 1, textAlign: 'center', fontSize: 18, color: 'red' }, +// loadingText: { flex: 1, textAlign: 'center', fontSize: 18 }, +// }); + const styles = StyleSheet.create({ container: { flex: 1, @@ -235,4 +249,4 @@ const styles = StyleSheet.create({ textAlignVertical: 'center', fontSize: 18, }, -}); +}); \ No newline at end of file diff --git a/client/babel.config.js b/client/babel.config.js index 2900afe..034436e 100644 --- a/client/babel.config.js +++ b/client/babel.config.js @@ -2,5 +2,6 @@ module.exports = function(api) { api.cache(true); return { presets: ['babel-preset-expo'], + plugins: ['module:react-native-dotenv'] }; }; diff --git a/client/jest.config.js b/client/jest.config.js new file mode 100644 index 0000000..dfb1d4b --- /dev/null +++ b/client/jest.config.js @@ -0,0 +1,9 @@ +module.exports = { + transform: { + "^.+\\.jsx?$": "babel-jest" + }, + transformIgnorePatterns: [ + "node_modules/(?!(expo-location|expo-modules-core)/)" // Add expo-location & expo-modules-core here + ] + }; + \ No newline at end of file diff --git a/client/map(temp).js b/client/map(temp).js new file mode 100644 index 0000000..468a339 --- /dev/null +++ b/client/map(temp).js @@ -0,0 +1,278 @@ +import React, { useState, useEffect, useRef } from 'react'; +import { StyleSheet, View, Text, TouchableOpacity, Alert, Platform } from 'react-native'; +import MapView, { Marker, Polyline } from 'react-native-maps'; +import * as Location from 'expo-location'; +import { decode } from '@googlemaps/polyline-codec'; // For decoding the polyline + +export default function MapScreen({ navigation }) { + const [webSocket, setWebSocket] = useState(null); + const [location, setLocation] = useState(null); // No hardcoded initial location + const [errorMessage, setErrorMessage] = useState(''); + const [polylineCoordinates, setPolylineCoordinates] = useState([]); // State for polyline coordinates + const mapRef = useRef(null); // Reference to the MapView + + // WebSocket Setup + useEffect(() => { + const wsUrl = `${process.env.EXPO_PUBLIC_API_URL.replace(/^http/, 'ws')}/ws/location`; + console.log('Connecting to WebSocket:', wsUrl); + + const socket = new WebSocket(wsUrl); + + socket.onopen = () => { + console.log('WebSocket connection opened'); + setWebSocket(socket); + }; + + socket.onmessage = (event) => { + console.log('Message from server:', event.data); + }; + + socket.onerror = (error) => { + console.error('WebSocket error:', error); + }; + + socket.onclose = () => { + console.log('WebSocket connection closed'); + }; + + return () => { + socket.close(); + }; + }, []); + + // Location Setup + useEffect(() => { + (async () => { + const { status } = await Location.requestForegroundPermissionsAsync(); + if (status !== 'granted') { + setErrorMessage('Permission to access location was denied.'); + return; + } + + // Fetch initial location + const currentLocation = await Location.getCurrentPositionAsync({ + accuracy: Location.Accuracy.BestForNavigation, + }); + const { latitude, longitude } = currentLocation.coords; + setLocation({ latitude, longitude }); + + // Set up continuous location tracking + const locationSubscription = await Location.watchPositionAsync( + { + accuracy: Location.Accuracy.BestForNavigation, + timeInterval: 5000, // Update every 5 seconds + distanceInterval: 5, // Update if device moves 5 meters + }, + (newLocation) => { + const { latitude, longitude } = newLocation.coords; + console.log('Updated Location:', { latitude, longitude }); + setLocation({ latitude, longitude }); + + // Animate the map to the new region + if (mapRef.current) { + mapRef.current.animateToRegion( + { + latitude, + longitude, + latitudeDelta: 0.01, + longitudeDelta: 0.01, + }, + 1000 // Animation duration in milliseconds + ); + } + } + ); + + return () => locationSubscription.remove(); + })(); + }, []); + + // Function to Fetch and Decode Polyline + const fetchPolyline = async () => { + try { + const response = await fetch(`${process.env.EXPO_PUBLIC_API_URL}/wayfinding/get_routes`, { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ + origin: "Tara Street, Dublin", + destination: "Ashbourne, Ireland", + mode: "walking", + alternatives: false + }) + }); + + const data = await response.json(); + + if (data.route) { + setPolylineCoordinates(data.route); // The response is already a list of { latitude, longitude } + } + } catch (error) { + console.error("Error fetching polyline:", error); + } + }; + + // Function to Send Location to WebSocket + const sendLocation = () => { + if (webSocket && location) { + const locationData = JSON.stringify(location); + webSocket.send(locationData); + console.log('Sent location:', locationData); + } else if (!location) { + Alert.alert('Location not available', 'Please wait for the GPS to fetch your location.'); + } else { + Alert.alert('WebSocket not connected', 'Please wait for the WebSocket connection to establish.'); + } + }; + + // Fetch polyline when the component mounts + useEffect(() => { + fetchPolyline(); + }, []); + + return ( + + {errorMessage ? ( + {errorMessage} + ) : location ? ( + <> + + + + {/* Render the polyline */} + {polylineCoordinates.length > 0 && ( + + )} + + + Send Location + + navigation.navigate('LoginScreen')} + > + Log In + + navigation.navigate('FindRouteScreen')} + > + Find Route + + navigation.navigate('WeatherScreen')} + > + Weather + + + ) : ( + Fetching your location... + )} + + ); +} + +const styles = StyleSheet.create({ + container: { + flex: 1, + ...(Platform.OS === 'web' ? { height: '100vh' } : {}), + }, + map: { + flex: 1, + minHeight: 300, + }, + sendButton: { + position: 'absolute', + bottom: 20, + left: '50%', + transform: [{ translateX: -50 }], + backgroundColor: '#007bff', + paddingVertical: 10, + paddingHorizontal: 20, + borderRadius: 10, + }, + buttonText: { + color: '#fff', + fontWeight: 'bold', + textAlign: 'center', + }, + TouchableOpacity: { + position: 'absolute', + alignItems: 'center', + left: '70%', + top: '0%', + backgroundColor: '#007bff', + paddingVertical: 10, + paddingHorizontal: 40, + borderRadius: 10, + shadowColor: '#000', + shadowOpacity: 0.2, + shadowOffset: { width: 0, height: 2 }, + shadowRadius: 5, + elevation: 5, + }, + TouchableOpacity1: { + position: 'absolute', + alignItems: 'center', + left: '0%', + top: '0%', + backgroundColor: '#007bff', + paddingVertical: 10, + paddingHorizontal: 40, + borderRadius: 10, + shadowColor: '#000', + shadowOpacity: 0.2, + shadowOffset: { width: 0, height: 2 }, + shadowRadius: 5, + elevation: 5, + }, + findRouteButton: { + position: 'absolute', + alignItems: 'center', + left: '34%', + top: '0%', + backgroundColor: '#007bff', + paddingVertical: 10, + paddingHorizontal: 35, + borderRadius: 10, + shadowColor: '#000', + shadowOpacity: 0.2, + shadowOffset: { width: 0, height: 2 }, + shadowRadius: 5, + elevation: 5, + }, + error: { + flex: 1, + textAlign: 'center', + textAlignVertical: 'center', + fontSize: 18, + color: 'red', + }, + loadingText: { + flex: 1, + textAlign: 'center', + textAlignVertical: 'center', + fontSize: 18, + }, +}); \ No newline at end of file diff --git a/client/mapUtils.js b/client/mapUtils.js new file mode 100644 index 0000000..341b141 --- /dev/null +++ b/client/mapUtils.js @@ -0,0 +1,70 @@ +import { decode } from '@googlemaps/polyline-codec'; +import * as Location from 'expo-location'; + +// Extract routes func +export const extractRoutes = async (route, origin = "", destination = "", mode = 'walking') => { + try { + // const response = await fetch(`${process.env.EXPO_PUBLIC_API_URL}/wayfinding/get_routes`, { + // method: "POST", + // headers: { "Content-Type": "application/json" }, + // body: JSON.stringify({ origin, destination, mode, alternatives: false }) + // }); + + // const data = await response.json(); + data = route + + return data && data.routes ? data.routes.map(route => decode(route.overview_polyline.points)) : []; + } catch (error) { + console.error("Error fetching routes:", error); + return []; + } +}; + +// Locations funcs +export const requestLocationPermission = async () => { + const { status } = await Location.requestForegroundPermissionsAsync(); + return status === 'granted'; +}; + +export const getCurrentLocation = async () => { + const hasPermission = await requestLocationPermission(); + if (!hasPermission) { + throw new Error('Permission to access location was denied.'); + } + + const location = await Location.getCurrentPositionAsync({ + accuracy: Location.Accuracy.BestForNavigation, + }); + + return { + latitude: location.coords.latitude, + longitude: location.coords.longitude, + }; +}; + +export const startLocationTracking = async (callback) => { + const hasPermission = await requestLocationPermission(); + if (!hasPermission) { + throw new Error('Permission to access location was denied.'); + } + + return await Location.watchPositionAsync( + { + accuracy: Location.Accuracy.BestForNavigation, + timeInterval: 5000, // Update every 5 seconds + distanceInterval: 5, // Update if device moves 5 meters + }, + (newLocation) => { + callback({ + latitude: newLocation.coords.latitude, + longitude: newLocation.coords.longitude, + }); + } + ); +}; + +// Decode polyline from API response +export const decodeRoute = (encodedPolyline) => { + const decodedPath = decode(encodedPolyline); // Returns array of [lat, lng] pairs + return decodedPath.map(([lat, lng]) => ({ latitude: lat, longitude: lng })); +}; \ No newline at end of file diff --git a/client/package-lock.json b/client/package-lock.json index 7d0ce08..693e33b 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -31,7 +31,13 @@ "react-native-websocket": "^1.0.2" }, "devDependencies": { - "@babel/core": "^7.24.0", + "@babel/core": "^7.26.9", + "@babel/preset-env": "^7.26.9", + "babel-jest": "^29.7.0", + "babel-preset-expo": "^12.0.9", + "jest": "^29.7.0", + "jest-expo": "^52.0.4", + "metro-react-native-babel-preset": "^0.77.0", "react-native-dotenv": "^3.4.11" } }, @@ -77,30 +83,30 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz", - "integrity": "sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==", + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", + "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", - "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz", + "integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==", "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.26.0", - "@babel/generator": "^7.26.0", - "@babel/helper-compilation-targets": "^7.25.9", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/helper-compilation-targets": "^7.26.5", "@babel/helper-module-transforms": "^7.26.0", - "@babel/helpers": "^7.26.0", - "@babel/parser": "^7.26.0", - "@babel/template": "^7.25.9", - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.26.0", + "@babel/helpers": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/traverse": "^7.26.9", + "@babel/types": "^7.26.9", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -116,13 +122,13 @@ } }, "node_modules/@babel/generator": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz", - "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz", + "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==", "license": "MIT", "dependencies": { - "@babel/parser": "^7.26.2", - "@babel/types": "^7.26.0", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" @@ -143,27 +149,13 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.9.tgz", - "integrity": "sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", - "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", + "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.25.9", + "@babel/compat-data": "^7.26.5", "@babel/helper-validator-option": "^7.25.9", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", @@ -227,6 +219,19 @@ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", @@ -283,9 +288,9 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", - "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", + "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -325,19 +330,6 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-simple-access": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz", - "integrity": "sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==", - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", @@ -393,13 +385,13 @@ } }, "node_modules/@babel/helpers": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", - "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz", + "integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==", "license": "MIT", "dependencies": { - "@babel/template": "^7.25.9", - "@babel/types": "^7.26.0" + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9" }, "engines": { "node": ">=6.9.0" @@ -492,12 +484,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", - "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz", + "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==", "license": "MIT", "dependencies": { - "@babel/types": "^7.26.0" + "@babel/types": "^7.26.9" }, "bin": { "parser": "bin/babel-parser.js" @@ -511,7 +503,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" @@ -528,7 +519,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -544,7 +534,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -560,7 +549,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", @@ -578,7 +566,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" @@ -590,6 +577,26 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", @@ -656,6 +663,63 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-proposal-optional-chaining": { "version": "7.21.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", @@ -679,7 +743,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "license": "MIT", - "peer": true, "engines": { "node": ">=6.9.0" }, @@ -800,7 +863,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -987,7 +1049,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1015,14 +1076,14 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", - "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.26.8.tgz", + "integrity": "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-remap-async-to-generator": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/traverse": "^7.26.8" }, "engines": { "node": ">=6.9.0" @@ -1049,13 +1110,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", - "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz", + "integrity": "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==", "license": "MIT", - "peer": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { "node": ">=6.9.0" @@ -1100,7 +1160,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" @@ -1168,7 +1227,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" @@ -1185,7 +1243,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -1201,7 +1258,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" @@ -1218,7 +1274,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -1230,13 +1285,11 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.9.tgz", - "integrity": "sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", "license": "MIT", - "peer": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { @@ -1278,12 +1331,12 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", - "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz", + "integrity": "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { @@ -1315,7 +1368,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -1361,7 +1413,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -1377,7 +1428,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" @@ -1390,14 +1440,13 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz", - "integrity": "sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-simple-access": "^7.25.9" + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1411,7 +1460,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", @@ -1430,7 +1478,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" @@ -1463,7 +1510,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -1475,12 +1521,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", - "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", + "version": "7.26.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.6.tgz", + "integrity": "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { "node": ">=6.9.0" @@ -1526,7 +1572,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9" @@ -1622,7 +1667,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -1749,7 +1793,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" @@ -1766,7 +1809,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -1844,12 +1886,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", - "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz", + "integrity": "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==", "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { "node": ">=6.9.0" @@ -1859,13 +1901,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", - "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.26.7.tgz", + "integrity": "sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==", "license": "MIT", - "peer": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { "node": ">=6.9.0" @@ -1898,7 +1939,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, @@ -1914,7 +1954,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" @@ -1947,7 +1986,6 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" @@ -1960,15 +1998,14 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz", - "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.9.tgz", + "integrity": "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==", "license": "MIT", - "peer": true, "dependencies": { - "@babel/compat-data": "^7.26.0", - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", + "@babel/compat-data": "^7.26.8", + "@babel/helper-compilation-targets": "^7.26.5", + "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-validator-option": "^7.25.9", "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", @@ -1980,9 +2017,9 @@ "@babel/plugin-syntax-import-attributes": "^7.26.0", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.25.9", - "@babel/plugin-transform-async-generator-functions": "^7.25.9", + "@babel/plugin-transform-async-generator-functions": "^7.26.8", "@babel/plugin-transform-async-to-generator": "^7.25.9", - "@babel/plugin-transform-block-scoped-functions": "^7.25.9", + "@babel/plugin-transform-block-scoped-functions": "^7.26.5", "@babel/plugin-transform-block-scoping": "^7.25.9", "@babel/plugin-transform-class-properties": "^7.25.9", "@babel/plugin-transform-class-static-block": "^7.26.0", @@ -1993,21 +2030,21 @@ "@babel/plugin-transform-duplicate-keys": "^7.25.9", "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-dynamic-import": "^7.25.9", - "@babel/plugin-transform-exponentiation-operator": "^7.25.9", + "@babel/plugin-transform-exponentiation-operator": "^7.26.3", "@babel/plugin-transform-export-namespace-from": "^7.25.9", - "@babel/plugin-transform-for-of": "^7.25.9", + "@babel/plugin-transform-for-of": "^7.26.9", "@babel/plugin-transform-function-name": "^7.25.9", "@babel/plugin-transform-json-strings": "^7.25.9", "@babel/plugin-transform-literals": "^7.25.9", "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", "@babel/plugin-transform-member-expression-literals": "^7.25.9", "@babel/plugin-transform-modules-amd": "^7.25.9", - "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.26.3", "@babel/plugin-transform-modules-systemjs": "^7.25.9", "@babel/plugin-transform-modules-umd": "^7.25.9", "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-new-target": "^7.25.9", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6", "@babel/plugin-transform-numeric-separator": "^7.25.9", "@babel/plugin-transform-object-rest-spread": "^7.25.9", "@babel/plugin-transform-object-super": "^7.25.9", @@ -2023,17 +2060,17 @@ "@babel/plugin-transform-shorthand-properties": "^7.25.9", "@babel/plugin-transform-spread": "^7.25.9", "@babel/plugin-transform-sticky-regex": "^7.25.9", - "@babel/plugin-transform-template-literals": "^7.25.9", - "@babel/plugin-transform-typeof-symbol": "^7.25.9", + "@babel/plugin-transform-template-literals": "^7.26.8", + "@babel/plugin-transform-typeof-symbol": "^7.26.7", "@babel/plugin-transform-unicode-escapes": "^7.25.9", "@babel/plugin-transform-unicode-property-regex": "^7.25.9", "@babel/plugin-transform-unicode-regex": "^7.25.9", "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-corejs3": "^0.11.0", "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.38.1", + "core-js-compat": "^3.40.0", "semver": "^6.3.1" }, "engines": { @@ -2043,6 +2080,19 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz", + "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.3", + "core-js-compat": "^3.40.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, "node_modules/@babel/preset-flow": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.25.9.tgz", @@ -2065,7 +2115,6 @@ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "license": "MIT", - "peer": true, "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", @@ -2146,30 +2195,30 @@ } }, "node_modules/@babel/template": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", - "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", + "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.25.9", - "@babel/parser": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", - "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz", + "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.25.9", - "@babel/generator": "^7.25.9", - "@babel/parser": "^7.25.9", - "@babel/template": "^7.25.9", - "@babel/types": "^7.25.9", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -2197,9 +2246,9 @@ } }, "node_modules/@babel/types": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", - "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.25.9", @@ -2209,6 +2258,13 @@ "node": ">=6.9.0" } }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true, + "license": "MIT" + }, "node_modules/@egjs/hammerjs": { "version": "2.0.17", "resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz", @@ -2338,15 +2394,15 @@ } }, "node_modules/@expo/config": { - "version": "10.0.4", - "resolved": "https://registry.npmjs.org/@expo/config/-/config-10.0.4.tgz", - "integrity": "sha512-pkvdPqKTaP6+Qvc8aTmDLQ9Dfwp98P1GO37MFKwsF5XormfN/9/eN8HfIRoM6d3uSIVKCcWW3X2yAEbNmOyfXw==", + "version": "10.0.10", + "resolved": "https://registry.npmjs.org/@expo/config/-/config-10.0.10.tgz", + "integrity": "sha512-wI9/iam3Irk99ADGM/FyD7YrrEibIZXR4huSZiU5zt9o3dASOKhqepiNJex4YPiktLfKhYrpSEJtwno1g0SrgA==", "license": "MIT", "dependencies": { "@babel/code-frame": "~7.10.4", - "@expo/config-plugins": "~9.0.0", - "@expo/config-types": "^52.0.0", - "@expo/json-file": "^9.0.0", + "@expo/config-plugins": "~9.0.15", + "@expo/config-types": "^52.0.4", + "@expo/json-file": "^9.0.2", "deepmerge": "^4.3.1", "getenv": "^1.0.0", "glob": "^10.4.2", @@ -2393,9 +2449,9 @@ } }, "node_modules/@expo/config-types": { - "version": "52.0.1", - "resolved": "https://registry.npmjs.org/@expo/config-types/-/config-types-52.0.1.tgz", - "integrity": "sha512-vD8ZetyKV7U29lR6+NJohYeoLYTH+eNYXJeNiSOrWCz0witJYY11meMmEnpEaVbN89EfC6uauSUOa6wihtbyPQ==", + "version": "52.0.4", + "resolved": "https://registry.npmjs.org/@expo/config-types/-/config-types-52.0.4.tgz", + "integrity": "sha512-oMGrb2o3niVCIfjnIHFrOoiDA9jGb0lc3G4RI1UiO//KjULBaQr3QTBoKDzZQwMqDV1AgYgSr9mgEcnX3LqhIg==", "license": "MIT" }, "node_modules/@expo/config/node_modules/@babel/code-frame": { @@ -2407,6 +2463,28 @@ "@babel/highlight": "^7.10.4" } }, + "node_modules/@expo/config/node_modules/@expo/config-plugins": { + "version": "9.0.15", + "resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-9.0.15.tgz", + "integrity": "sha512-elKY/zIpAJ40RH26iwfyp+hwgeyPgIXX0SrCSOcjeJLsMsCmMac9ewvb+AN8y4k+N7m5lD/dMZupsaateKTFwA==", + "license": "MIT", + "dependencies": { + "@expo/config-types": "^52.0.4", + "@expo/json-file": "~9.0.1", + "@expo/plist": "^0.2.1", + "@expo/sdk-runtime-versions": "^1.0.0", + "chalk": "^4.1.2", + "debug": "^4.3.5", + "getenv": "^1.0.0", + "glob": "^10.4.2", + "resolve-from": "^5.0.0", + "semver": "^7.5.4", + "slash": "^3.0.0", + "slugify": "^1.6.6", + "xcode": "^3.0.1", + "xml2js": "0.6.0" + } + }, "node_modules/@expo/config/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", @@ -2570,9 +2648,9 @@ } }, "node_modules/@expo/json-file": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-9.0.0.tgz", - "integrity": "sha512-M+55xFVrFzDcgMDf+52lPDLjKB5xwRfStWlv/b/Vu2OLgxGZLWpxoPYjlRoHqxjPbCQIi2ZCbobK+0KuNhsELg==", + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-9.0.2.tgz", + "integrity": "sha512-yAznIUrybOIWp3Uax7yRflB0xsEpvIwIEqIjao9SGi2Gaa+N0OamWfe0fnXBSWF+2zzF4VvqwT4W5zwelchfgw==", "license": "MIT", "dependencies": { "@babel/code-frame": "~7.10.4", @@ -2691,9 +2769,9 @@ "license": "MIT" }, "node_modules/@expo/plist": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.2.0.tgz", - "integrity": "sha512-F/IZJQaf8OIVnVA6XWUeMPC3OH6MV00Wxf0WC0JhTQht2QgjyHUa3U5Gs3vRtDq8tXNsZneOQRDVwpaOnd4zTQ==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.2.2.tgz", + "integrity": "sha512-ZZGvTO6vEWq02UAPs3LIdja+HRO18+LRI5QuDl6Hs3Ps7KX7xU6Y6kjahWKY37Rx2YjNpX07dGpBFzzC+vKa2g==", "license": "MIT", "dependencies": { "@xmldom/xmldom": "~0.7.7", @@ -3009,57 +3087,345 @@ "node": ">=8" } }, - "node_modules/@jest/create-cache-key-function": { + "node_modules/@jest/console": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", - "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "^29.6.3" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/environment": { + "node_modules/@jest/core": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", - "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, "license": "MIT", "dependencies": { - "@jest/fake-timers": "^29.7.0", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.7.0" + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/@jest/fake-timers": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", - "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "node_modules/@jest/core/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "^29.6.3", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.7.0", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/@jest/schemas": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", - "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "node_modules/@jest/create-cache-key-function": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", + "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", "license": "MIT", "dependencies": { - "@sinclair/typebox": "^0.27.8" + "@jest/types": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map/node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3787,6 +4153,16 @@ "@sinonjs/commons": "^3.0.0" } }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", @@ -3828,6 +4204,38 @@ "@babel/types": "^7.20.7" } }, + "node_modules/@types/eslint": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT", + "peer": true + }, "node_modules/@types/geojson": { "version": "7946.0.14", "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", @@ -3879,6 +4287,26 @@ "@types/istanbul-lib-report": "*" } }, + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT", + "peer": true + }, "node_modules/@types/node": { "version": "22.9.0", "resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.0.tgz", @@ -3903,6 +4331,13 @@ "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "license": "MIT" }, + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/yargs": { "version": "17.0.33", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", @@ -3941,26 +4376,226 @@ "@urql/core": "^5.0.0" } }, - "node_modules/@xmldom/xmldom": { - "version": "0.7.13", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.13.tgz", - "integrity": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==", - "deprecated": "this version is no longer supported, please update to at least 0.8.*", + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dev": true, "license": "MIT", - "engines": { - "node": ">=10.0.0" + "peer": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "dev": true, "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "dev": true, + "license": "MIT", + "peer": true, "dependencies": { - "event-target-shim": "^5.0.0" - }, - "engines": { - "node": ">=6.5" + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.7.13", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.13.tgz", + "integrity": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==", + "deprecated": "this version is no longer supported, please update to at least 0.8.*", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true, + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "license": "Apache-2.0", + "peer": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" } }, "node_modules/accepts": { @@ -3988,6 +4623,56 @@ "node": ">=0.4.0" } }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-loose": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/acorn-loose/-/acorn-loose-8.4.0.tgz", + "integrity": "sha512-M0EUka6rb+QC4l9Z3T0nJEzNOO7JcoJlYMrBlyBCiFSXRyxjLKayd4TbQs2FDRWQU1h9FR7QVNHt+PEaoNL5rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, "node_modules/aggregate-error": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", @@ -4001,6 +4686,57 @@ "node": ">=8" } }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, "node_modules/anser": { "version": "1.4.10", "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz", @@ -4312,9 +5048,9 @@ } }, "node_modules/babel-preset-expo": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-12.0.1.tgz", - "integrity": "sha512-9T2o+aeKnHOtQhk/undQbibJv02bdCgfs68ZwgAdueljDBcs2oVfq41qG9XThYwa6Dn7CdfnoEUsIyFqBwjcVw==", + "version": "12.0.9", + "resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-12.0.9.tgz", + "integrity": "sha512-1c+ysrTavT49WgVAj0OX/TEzt1kU2mfPhDaDajstshNHXFKPenMPWSViA/DHrJKVIMwaqr+z3GbUOD9GtKgpdg==", "license": "MIT", "dependencies": { "@babel/plugin-proposal-decorators": "^7.12.9", @@ -4323,7 +5059,7 @@ "@babel/plugin-transform-parameters": "^7.22.15", "@babel/preset-react": "^7.22.15", "@babel/preset-typescript": "^7.23.0", - "@react-native/babel-preset": "0.76.2", + "@react-native/babel-preset": "0.76.7", "babel-plugin-react-native-web": "~0.19.13", "react-refresh": "^0.14.2" }, @@ -4340,6 +5076,120 @@ } } }, + "node_modules/babel-preset-expo/node_modules/@react-native/babel-plugin-codegen": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.76.7.tgz", + "integrity": "sha512-+8H4DXJREM4l/pwLF/wSVMRzVhzhGDix5jLezNrMD9J1U1AMfV2aSkWA1XuqR7pjPs/Vqf6TaPL7vJMZ4LU05Q==", + "license": "MIT", + "dependencies": { + "@react-native/codegen": "0.76.7" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/babel-preset-expo/node_modules/@react-native/babel-preset": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.76.7.tgz", + "integrity": "sha512-/c5DYZ6y8tyg+g8tgXKndDT7mWnGmkZ9F+T3qNDfoE3Qh7ucrNeC2XWvU9h5pk8eRtj9l4SzF4aO1phzwoibyg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.2", + "@babel/plugin-proposal-export-default-from": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-default-from": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.4", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.25.4", + "@babel/plugin-transform-classes": "^7.25.4", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-flow-strip-types": "^7.25.2", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", + "@babel/plugin-transform-literals": "^7.25.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.25.2", + "@babel/plugin-transform-react-jsx-self": "^7.24.7", + "@babel/plugin-transform-react-jsx-source": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-runtime": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.25.2", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/template": "^7.25.0", + "@react-native/babel-plugin-codegen": "0.76.7", + "babel-plugin-syntax-hermes-parser": "^0.25.1", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/babel-preset-expo/node_modules/@react-native/codegen": { + "version": "0.76.7", + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.76.7.tgz", + "integrity": "sha512-FAn585Ll65YvkSrKDyAcsdjHhhAGiMlSTUpHh0x7J5ntudUns+voYms0xMP+pEPt0XuLdjhD7zLIIlAWP407+g==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.25.3", + "glob": "^7.1.1", + "hermes-parser": "0.23.1", + "invariant": "^2.2.4", + "jscodeshift": "^0.14.0", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1", + "yargs": "^17.6.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/babel-preset-expo/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/babel-preset-jest": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", @@ -4470,9 +5320,9 @@ } }, "node_modules/browserslist": { - "version": "4.24.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", - "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "version": "4.24.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", + "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", "funding": [ { "type": "opencollective", @@ -4489,9 +5339,9 @@ ], "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001669", - "electron-to-chromium": "^1.5.41", - "node-releases": "^2.0.18", + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.1" }, "bin": { @@ -4600,16 +5450,30 @@ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "license": "ISC" }, - "node_modules/caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, "license": "MIT", "dependencies": { - "callsites": "^2.0.0" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" }, "engines": { - "node": ">=4" + "node": ">= 0.4" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "license": "MIT", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, "node_modules/caller-path": { @@ -4643,9 +5507,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001680", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz", - "integrity": "sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==", + "version": "1.0.30001700", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz", + "integrity": "sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==", "funding": [ { "type": "opencollective", @@ -4678,6 +5542,16 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, "node_modules/charenc": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", @@ -4714,6 +5588,17 @@ "node": ">=12.13.0" } }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.0" + } + }, "node_modules/chromium-edge-launcher": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/chromium-edge-launcher/-/chromium-edge-launcher-0.2.0.tgz", @@ -4755,6 +5640,13 @@ "node": ">=8" } }, + "node_modules/cjs-module-lexer": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", + "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", + "dev": true, + "license": "MIT" + }, "node_modules/clean-stack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", @@ -4857,6 +5749,24 @@ "node": ">=6" } }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true, + "license": "MIT" + }, "node_modules/color": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", @@ -5037,12 +5947,12 @@ "license": "MIT" }, "node_modules/core-js-compat": { - "version": "3.39.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", - "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.40.0.tgz", + "integrity": "sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==", "license": "MIT", "dependencies": { - "browserslist": "^4.24.2" + "browserslist": "^4.24.3" }, "funding": { "type": "opencollective", @@ -5070,6 +5980,28 @@ "node": ">=4" } }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/cross-fetch": { "version": "3.1.8", "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", @@ -5168,6 +6100,33 @@ "url": "https://github.com/sponsors/fb55" } }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true, + "license": "MIT" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true, + "license": "MIT" + }, "node_modules/d3": { "version": "7.9.0", "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", @@ -5569,6 +6528,58 @@ "node": ">=12" } }, + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/data-urls/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/debug": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", @@ -5586,6 +6597,13 @@ } } }, + "node_modules/decimal.js": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.5.0.tgz", + "integrity": "sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==", + "dev": true, + "license": "MIT" + }, "node_modules/decode-uri-component": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", @@ -5595,6 +6613,21 @@ "node": ">=0.10" } }, + "node_modules/dedent": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, "node_modules/deep-extend": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", @@ -5724,6 +6757,26 @@ "node": ">=0.10" } }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -5762,6 +6815,30 @@ ], "license": "BSD-2-Clause" }, + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "deprecated": "Use your platform's native DOMException instead", + "dev": true, + "license": "MIT", + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, "node_modules/domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", @@ -5818,6 +6895,21 @@ "url": "https://dotenvx.com" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", @@ -5831,11 +6923,24 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.60", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.60.tgz", - "integrity": "sha512-HcraRUkTKJ+8yA3b10i9qvhUlPBRDlKjn1XGek1zDGVfAKcvi8TsUnImGqLiEm9j6ZulxXIWWIo9BmbkbCTGgA==", + "version": "1.5.102", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.102.tgz", + "integrity": "sha512-eHhqaja8tE/FNpIiBrvBjFV/SSKpyWHLvxuR9dPTdo+3V9ppdLmFB7ZZQ98qNovcngPLYIz0oOBF9P0FfZef5Q==", "license": "ISC" }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, "node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", @@ -5860,6 +6965,21 @@ "once": "^1.4.0" } }, + "node_modules/enhanced-resolve": { + "version": "5.18.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz", + "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", @@ -5905,6 +7025,63 @@ "stackframe": "^1.3.4" } }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", + "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/escalade": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", @@ -5932,6 +7109,65 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true, + "engines": { + "node": ">=4.0" + } + }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", @@ -5945,12 +7181,35 @@ "node": ">=4" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, "license": "BSD-2-Clause", "peer": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } @@ -5973,6 +7232,17 @@ "node": ">=6" } }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.8.x" + } + }, "node_modules/exec-async": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz", @@ -6070,6 +7340,32 @@ "which": "bin/which" } }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/expo": { "version": "52.0.7", "resolved": "https://registry.npmjs.org/expo/-/expo-52.0.7.tgz", @@ -6301,6 +7597,24 @@ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "license": "MIT" }, + "node_modules/fast-uri": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", + "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause", + "peer": true + }, "node_modules/fastq": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", @@ -6581,6 +7895,31 @@ "node": "6.* || 8.* || >= 10.*" } }, + "node_modules/get-intrinsic": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz", + "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "function-bind": "^1.1.2", + "get-proto": "^1.0.0", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", @@ -6599,6 +7938,20 @@ "node": ">=4" } }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -6652,6 +8005,14 @@ "node": ">= 6" } }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true + }, "node_modules/glob/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -6705,6 +8066,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -6720,6 +8094,35 @@ "node": ">=8" } }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/hasown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", @@ -6780,6 +8183,26 @@ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "license": "ISC" }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", @@ -6805,6 +8228,35 @@ "node": ">= 0.8" } }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -6892,6 +8344,95 @@ "node": ">=4" } }, + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -7051,6 +8592,16 @@ "node": ">=8" } }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -7102,6 +8653,13 @@ "node": ">=0.10.0" } }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true, + "license": "MIT" + }, "node_modules/is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", @@ -7169,38 +8727,623 @@ "node": ">=8" } }, - "node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", - "license": "BlueOak-1.0.0", + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "engines": { + "node": ">=10" } }, - "node_modules/jest-environment-node": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", - "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, "license": "MIT", "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" + "semver": "^7.5.3" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/jest-changed-files/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-changed-files/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/jest-config/node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-config/node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", + "jsdom": "^20.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-expo": { + "version": "52.0.4", + "resolved": "https://registry.npmjs.org/jest-expo/-/jest-expo-52.0.4.tgz", + "integrity": "sha512-6+MDQnpwWi3Cka+GvzncCEw8y8LTLiulf9RMII9MZMmML68dRp+njYvZQQutRkF+WwVZLM2id59puYAsKBL1Qg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@expo/config": "~10.0.9", + "@expo/json-file": "^9.0.1", + "@jest/create-cache-key-function": "^29.2.1", + "@jest/globals": "^29.2.1", + "babel-jest": "^29.2.1", + "fbemitter": "^3.0.0", + "find-up": "^5.0.0", + "jest-environment-jsdom": "^29.2.1", + "jest-snapshot": "^29.2.1", + "jest-watch-select-projects": "^2.0.0", + "jest-watch-typeahead": "2.2.1", + "json5": "^2.2.3", + "lodash": "^4.17.19", + "react-server-dom-webpack": "19.0.0-rc-6230622a1a-20240610", + "react-test-renderer": "18.3.1", + "server-only": "^0.0.1", + "stacktrace-js": "^2.0.2" + }, + "bin": { + "jest": "bin/jest.js" + }, + "peerDependencies": { + "expo": "*", + "react-native": "*" + } + }, + "node_modules/jest-expo/node_modules/react": { + "version": "19.0.0-rc-6230622a1a-20240610", + "resolved": "https://registry.npmjs.org/react/-/react-19.0.0-rc-6230622a1a-20240610.tgz", + "integrity": "sha512-SMgWGY//7nO7F3HMuBfmC15Cr4vTe2tlpSCATfnz/wymSftDOKUqc+0smjRhcUeCFCc1zhOAWJ+N//U5CrmOzQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-expo/node_modules/react-dom": { + "version": "19.0.0-rc-6230622a1a-20240610", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0-rc-6230622a1a-20240610.tgz", + "integrity": "sha512-56G4Pum5E7FeGL1rwHX5IxidSJxQnXP4yORRo0pVeOJuu5DQJvNKpUwmJoftMP/ez0AiglYTY77L2Gs8iyt1Hg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "scheduler": "0.25.0-rc-6230622a1a-20240610" + }, + "peerDependencies": { + "react": "19.0.0-rc-6230622a1a-20240610" + } + }, + "node_modules/jest-expo/node_modules/react-server-dom-webpack": { + "version": "19.0.0-rc-6230622a1a-20240610", + "resolved": "https://registry.npmjs.org/react-server-dom-webpack/-/react-server-dom-webpack-19.0.0-rc-6230622a1a-20240610.tgz", + "integrity": "sha512-nr+IsOVD07QdeCr4BLvR5TALfLaZLi9AIaoa6vXymBc051iDPWedJujYYrjRJy5+9jp9oCx3G8Tt/Bs//TckJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn-loose": "^8.3.0", + "neo-async": "^2.6.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "react": "19.0.0-rc-6230622a1a-20240610", + "react-dom": "19.0.0-rc-6230622a1a-20240610", + "webpack": "^5.59.0" + } + }, + "node_modules/jest-expo/node_modules/react-test-renderer": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-18.3.1.tgz", + "integrity": "sha512-KkAgygexHUkQqtvvx/otwxtuFu5cVjfzTCtjXLH9boS19/Nbtg84zS7wIQn39G8IlrhThBpQsMKkq5ZHZIYFXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "react-is": "^18.3.1", + "react-shallow-renderer": "^16.15.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/jest-expo/node_modules/react-test-renderer/node_modules/react-shallow-renderer": { + "version": "16.15.0", + "resolved": "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz", + "integrity": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1", + "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/jest-expo/node_modules/react-test-renderer/node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" } }, + "node_modules/jest-expo/node_modules/scheduler": { + "version": "0.25.0-rc-6230622a1a-20240610", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0-rc-6230622a1a-20240610.tgz", + "integrity": "sha512-GTIQdJXthps5mgkIFo7yAq03M0QQYTfN8z+GrnMC/SCKFSuyFP5tk2BMaaWUsVy4u4r+dTLdiXH8JEivVls0Bw==", + "dev": true, + "license": "MIT", + "peer": true + }, "node_modules/jest-get-type": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", @@ -7235,6 +9378,36 @@ "fsevents": "^2.3.2" } }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/jest-message-util": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", @@ -7252,30 +9425,238 @@ "stack-utils": "^2.0.3" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/jest-mock": { + "node_modules/jest-snapshot": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, "license": "MIT", "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.7.0" + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-regex-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", - "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", - "license": "MIT", + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" } }, "node_modules/jest-util": { @@ -7336,6 +9717,127 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/jest-watch-select-projects": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jest-watch-select-projects/-/jest-watch-select-projects-2.0.0.tgz", + "integrity": "sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.0", + "chalk": "^3.0.0", + "prompts": "^2.2.1" + } + }, + "node_modules/jest-watch-select-projects/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-2.2.1.tgz", + "integrity": "sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^6.0.0", + "chalk": "^4.0.0", + "jest-regex-util": "^29.0.0", + "jest-watcher": "^29.0.0", + "slash": "^5.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0 || ^29.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-escapes": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.1.tgz", + "integrity": "sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/char-regex": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.2.tgz", + "integrity": "sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/jest-worker": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", @@ -7442,6 +9944,105 @@ "@babel/preset-env": "^7.1.6" } }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", + "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/jsesc": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", @@ -7460,6 +10061,21 @@ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "license": "MIT" }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT", + "peer": true + }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", @@ -7773,6 +10389,17 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "license": "MIT" }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.11.5" + } + }, "node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", @@ -7960,6 +10587,16 @@ "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", "license": "Apache-2.0" }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/md5": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", @@ -8211,6 +10848,70 @@ "node": ">=18.18" } }, + "node_modules/metro-react-native-babel-preset": { + "version": "0.77.0", + "resolved": "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.77.0.tgz", + "integrity": "sha512-HPPD+bTxADtoE4y/4t1txgTQ1LVR6imOBy7RMHUsqMVTbekoi8Ph5YI9vKX2VMPtVWeFt0w9YnCSLPa76GcXsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/plugin-proposal-async-generator-functions": "^7.0.0", + "@babel/plugin-proposal-class-properties": "^7.18.0", + "@babel/plugin-proposal-export-default-from": "^7.0.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.0", + "@babel/plugin-proposal-numeric-separator": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.20.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-default-from": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.18.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", + "@babel/plugin-syntax-optional-chaining": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-async-to-generator": "^7.20.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.20.0", + "@babel/plugin-transform-flow-strip-types": "^7.20.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-react-jsx-self": "^7.0.0", + "@babel/plugin-transform-react-jsx-source": "^7.0.0", + "@babel/plugin-transform-runtime": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-sticky-regex": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.5.0", + "@babel/plugin-transform-unicode-regex": "^7.0.0", + "@babel/template": "^7.0.0", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.4.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/metro-react-native-babel-preset/node_modules/react-refresh": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz", + "integrity": "sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/metro-resolver": { "version": "0.81.0", "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.81.0.tgz", @@ -8644,6 +11345,13 @@ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", @@ -8725,9 +11433,9 @@ "license": "MIT" }, "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "license": "MIT" }, "node_modules/normalize-path": { @@ -8805,6 +11513,13 @@ "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", "license": "MIT" }, + "node_modules/nwsapi": { + "version": "2.2.16", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz", + "integrity": "sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==", + "dev": true, + "license": "MIT" + }, "node_modules/ob1": { "version": "0.81.0", "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.81.0.tgz", @@ -9096,6 +11811,19 @@ "node": ">=10" } }, + "node_modules/parse5": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz", + "integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^4.5.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -9458,6 +12186,19 @@ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "license": "MIT" }, + "node_modules/psl": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" + } + }, "node_modules/pump": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", @@ -9477,6 +12218,23 @@ "node": ">=6" } }, + "node_modules/pure-rand": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ], + "license": "MIT" + }, "node_modules/qrcode-terminal": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz", @@ -9503,6 +12261,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true, + "license": "MIT" + }, "node_modules/queue": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", @@ -9532,6 +12297,17 @@ ], "license": "MIT" }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", @@ -10101,6 +12877,13 @@ "path-parse": "^1.0.5" } }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "license": "MIT" + }, "node_modules/resolve": { "version": "1.22.8", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", @@ -10114,8 +12897,21 @@ "bin": { "resolve": "bin/resolve" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/resolve-from": { @@ -10275,6 +13071,19 @@ "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", "license": "ISC" }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, "node_modules/scheduler": { "version": "0.24.0-canary-efb381bbf-20230505", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz", @@ -10284,6 +13093,27 @@ "loose-envify": "^1.1.0" } }, + "node_modules/schema-utils": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", + "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/selfsigned": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", @@ -10384,6 +13214,17 @@ "node": ">=0.10.0" } }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, "node_modules/serve-static": { "version": "1.16.2", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", @@ -10477,6 +13318,13 @@ "node": ">= 0.8" } }, + "node_modules/server-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/server-only/-/server-only-0.0.1.tgz", + "integrity": "sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==", + "dev": true, + "license": "MIT" + }, "node_modules/setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", @@ -10690,6 +13538,16 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, + "node_modules/stack-generator": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz", + "integrity": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, "node_modules/stack-utils": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", @@ -10717,6 +13575,39 @@ "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", "license": "MIT" }, + "node_modules/stacktrace-gps": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz", + "integrity": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "source-map": "0.5.6", + "stackframe": "^1.3.4" + } + }, + "node_modules/stacktrace-gps/node_modules/source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stacktrace-js": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stacktrace-js/-/stacktrace-js-2.0.2.tgz", + "integrity": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "error-stack-parser": "^2.0.6", + "stack-generator": "^2.0.5", + "stacktrace-gps": "^3.0.4" + } + }, "node_modules/stacktrace-parser": { "version": "0.1.10", "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", @@ -10780,6 +13671,33 @@ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-length/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", @@ -10870,6 +13788,16 @@ "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", @@ -10986,6 +13914,24 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, "node_modules/tar": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", @@ -11186,6 +14132,75 @@ "node": ">=10" } }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.11", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz", + "integrity": "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.25", + "jest-worker": "^27.4.5", + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -11309,6 +14324,32 @@ "node": ">=0.6" } }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", @@ -11513,6 +14554,17 @@ "browserslist": ">= 4.21.0" } }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "node_modules/use-latest-callback": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.2.3.tgz", @@ -11555,6 +14607,21 @@ "uuid": "dist/bin/uuid" } }, + "node_modules/v8-to-istanbul": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", + "dev": true, + "license": "ISC", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, "node_modules/validate-npm-package-name": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", @@ -11579,6 +14646,19 @@ "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", "license": "MIT" }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -11594,6 +14674,21 @@ "integrity": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==", "license": "MIT" }, + "node_modules/watchpack": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", @@ -11618,12 +14713,94 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", "license": "BSD-2-Clause" }, + "node_modules/webpack": { + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^4.3.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/whatwg-fetch": { "version": "3.6.20", "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", "license": "MIT" }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", @@ -11843,6 +15020,16 @@ "uuid": "dist/bin/uuid" } }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12" + } + }, "node_modules/xml2js": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz", @@ -11874,6 +15061,13 @@ "node": ">=8.0" } }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true, + "license": "MIT" + }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", diff --git a/client/package.json b/client/package.json index e76b762..e9d363f 100644 --- a/client/package.json +++ b/client/package.json @@ -6,7 +6,8 @@ "start": "expo start", "android": "expo start --android", "ios": "expo start --ios", - "web": "expo start --web" + "web": "expo start --web", + "test": "jest" }, "dependencies": { "@googlemaps/polyline-codec": "^1.0.28", @@ -32,7 +33,13 @@ "react-native-websocket": "^1.0.2" }, "devDependencies": { - "@babel/core": "^7.24.0", + "@babel/core": "^7.26.9", + "@babel/preset-env": "^7.26.9", + "babel-jest": "^29.7.0", + "babel-preset-expo": "^12.0.9", + "jest": "^29.7.0", + "jest-expo": "^52.0.4", + "metro-react-native-babel-preset": "^0.77.0", "react-native-dotenv": "^3.4.11" }, "private": true diff --git a/client/tests/mapUtils.test.js b/client/tests/mapUtils.test.js new file mode 100644 index 0000000..e204643 --- /dev/null +++ b/client/tests/mapUtils.test.js @@ -0,0 +1,112 @@ +import { extractRoutes, requestLocationPermission, getCurrentLocation, startLocationTracking, decodeRoute } from '../mapUtils.js'; // Update with the correct path +import response from './response.json'; // Update with the correct path +import { decode } from '@googlemaps/polyline-codec'; +import * as Location from 'expo-location'; + +// Mock polyline decoder +jest.mock('@googlemaps/polyline-codec', () => ({ + decode: jest.fn((polyline) => [[0, 0], [1, 1]]) // Mock polyline decoding +})); + +// Mock expo-location module +jest.mock('expo-location', () => ({ + requestForegroundPermissionsAsync: jest.fn(), + getCurrentPositionAsync: jest.fn(), + watchPositionAsync: jest.fn(), + Accuracy: { BestForNavigation: 'best' }, +})); + + + +describe('extractRoutes', () => { + it('should return decoded routes when valid data is provided', async () => { + const result = await extractRoutes(response); + + expect(decode).toHaveBeenCalledTimes(response.routes.length); + expect(result).toEqual(response.routes.map(() => [[0, 0], [1, 1]])); + }); + + it('should return an empty array if no routes exist', async () => { + const result = await extractRoutes({}); + expect(result).toEqual([]); + }); + +}); + + + +describe('Location Utilities', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + test('requestLocationPermission should return true if permission is granted', async () => { + Location.requestForegroundPermissionsAsync.mockResolvedValueOnce({ status: 'granted' }); + + const result = await requestLocationPermission(); + expect(result).toBe(true); + }); + + test('requestLocationPermission should return false if permission is denied', async () => { + Location.requestForegroundPermissionsAsync.mockResolvedValueOnce({ status: 'denied' }); + + const result = await requestLocationPermission(); + expect(result).toBe(false); + }); + + + + test('getCurrentLocation should return latitude and longitude if permission is granted', async () => { + Location.requestForegroundPermissionsAsync.mockResolvedValueOnce({ status: 'granted' }); + Location.getCurrentPositionAsync.mockResolvedValueOnce({ + coords: { latitude: 40.7128, longitude: -74.0060 }, + }); + + const result = await getCurrentLocation(); + expect(result).toEqual({ latitude: 40.7128, longitude: -74.0060 }); + }); + + test('getCurrentLocation should throw an error if permission is denied', async () => { + Location.requestForegroundPermissionsAsync.mockResolvedValueOnce({ status: 'denied' }); + + await expect(getCurrentLocation()).rejects.toThrow('Permission to access location was denied.'); + }); + + + test('startLocationTracking should call watchPositionAsync if permission is granted', async () => { + const callback = jest.fn(); + Location.requestForegroundPermissionsAsync.mockResolvedValueOnce({ status: 'granted' }); + + const mockWatch = jest.fn(); + Location.watchPositionAsync.mockImplementationOnce((_, onUpdate) => { + onUpdate({ coords: { latitude: 51.5074, longitude: -0.1278 } }); // Simulate location update + return Promise.resolve(mockWatch); + }); + + await startLocationTracking(callback); + expect(callback).toHaveBeenCalledWith({ latitude: 51.5074, longitude: -0.1278 }); + }); + + test('startLocationTracking should throw an error if permission is denied', async () => { + Location.requestForegroundPermissionsAsync.mockResolvedValueOnce({ status: 'denied' }); + + await expect(startLocationTracking(jest.fn())).rejects.toThrow('Permission to access location was denied.'); + }); + + + + test('decodeRoute should correctly decode a polyline string', () => { + const encodedPolyline = 'encodedString'; + const mockDecodedPath = [ + [40.7128, -74.0060], + [34.0522, -118.2437], + ]; + decode.mockReturnValueOnce(mockDecodedPath); + + const result = decodeRoute(encodedPolyline); + expect(result).toEqual([ + { latitude: 40.7128, longitude: -74.0060 }, + { latitude: 34.0522, longitude: -118.2437 }, + ]); + }); +}); \ No newline at end of file diff --git a/client/tests/response.json b/client/tests/response.json new file mode 100644 index 0000000..c34d1e2 --- /dev/null +++ b/client/tests/response.json @@ -0,0 +1,8301 @@ +{ + "geocoded_waypoints" : + [ + { + "geocoder_status" : "OK", + "place_id" : "ChIJr7-TUIUOZ0gRWoYFOwf8B9Y", + "types" : + [ + "route" + ] + }, + { + "geocoder_status" : "OK", + "partial_match" : true, + "place_id" : "ChIJZcqxdpuKeUgRBJ5xx5PnKHc", + "types" : + [ + "locality", + "political" + ] + } + ], + "routes" : + [ + { + "bounds" : + { + "northeast" : + { + "lat" : 53.3662876, + "lng" : -1.7323355 + }, + "southwest" : + { + "lat" : 53.00871249999999, + "lng" : -6.2550534 + } + }, + "copyrights" : "Map data ©2025 Google", + "legs" : + [ + { + "distance" : + { + "text" : "338 km", + "value" : 338003 + }, + "duration" : + { + "text" : "2 days 7 hours", + "value" : 197520 + }, + "end_address" : "Ashbourne DE6, UK", + "end_location" : + { + "lat" : 53.0166812, + "lng" : -1.7323355 + }, + "start_address" : "Tara St, Dublin, Ireland", + "start_location" : + { + "lat" : 53.3463498, + "lng" : -6.2550534 + }, + "steps" : + [ + { + "distance" : + { + "text" : "2.1 km", + "value" : 2061 + }, + "duration" : + { + "text" : "29 mins", + "value" : 1717 + }, + "end_location" : + { + "lat" : 53.3419384, + "lng" : -6.226715 + }, + "html_instructions" : "Walk \u003cb\u003esouth\u003c/b\u003e on \u003cb\u003eTara St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eR138\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eR802\u003c/b\u003e towards \u003cb\u003eTownsend St\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow R802\u003c/div\u003e", + "polyline" : + { + "points" : "uerdI`ude@jA@?MD?L@?FB@L?|@@N@J?Fk@L}@@E@U@WLiAJgALgABI\\cDA??CBWB?Dc@Ba@@SJc@B]BQFk@Jy@L_A@IFg@Hi@Ju@BSHe@@EDOEC@EFc@@?@OHq@D]DKBUDy@Da@Jo@@MBM@e@DIHm@Fm@He@FYAKAc@AILG?IFg@f@}DFq@He@CAFe@@@Hw@Ds@@o@Dg@F]@S?Y@WBYBUDS@k@@IB_@?CB[B_@@S@]B[B[@SA?Dq@@?@E@]HiADa@Ds@Bc@@KD{@Be@@IFa@?QBWDc@Du@Ds@FaAFw@Dq@?MFy@?MFa@@M@e@JuA@Y@GFy@Dk@Dk@@Q@IJcB@K@c@D]@[BYDm@@YJcBD[HqA@[Dk@@]FgA@KAABi@@@FB?IAc@Ag@EiAAo@EcAAm@Cc@B_@IuBEq@EoAC]Co@Ck@IoAEQCU?IAS" + }, + "start_location" : + { + "lat" : 53.3463498, + "lng" : -6.2550534 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 109 + }, + "duration" : + { + "text" : "1 min", + "value" : 87 + }, + "end_location" : + { + "lat" : 53.3422875, + "lng" : -6.225350499999999 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "cjqdI~c_e@COGc@DM_@kCAICGCEKOI[" + }, + "start_location" : + { + "lat" : 53.3419384, + "lng" : -6.226715 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 446 + }, + "duration" : + { + "text" : "6 mins", + "value" : 360 + }, + "end_location" : + { + "lat" : 53.3422001, + "lng" : -6.2186894 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "ilqdIl{~d@BI?Q@k@E{CCq@Ae@AeAEqBAsA?SDmAHuDFkC?_@BqAAeE@KDC" + }, + "start_location" : + { + "lat" : 53.3422875, + "lng" : -6.225350499999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 107 + }, + "duration" : + { + "text" : "2 mins", + "value" : 90 + }, + "end_location" : + { + "lat" : 53.34146670000001, + "lng" : -6.217802000000001 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e towards \u003cb\u003ePine Rd\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "wkqdIxq}d@\\Qb@WHGDCFIZy@N[LWAC" + }, + "start_location" : + { + "lat" : 53.3422001, + "lng" : -6.2186894 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 245 + }, + "duration" : + { + "text" : "3 mins", + "value" : 200 + }, + "end_location" : + { + "lat" : 53.34028259999999, + "lng" : -6.2149025 + }, + "html_instructions" : "Continue onto \u003cb\u003ePine Rd\u003c/b\u003e", + "polyline" : + { + "points" : "egqdIfl}d@DGLO`AmBLODKFON_@H_@D]BYD[@[?IDY@M@S@SDQHi@?EFKHMT[FIBE" + }, + "start_location" : + { + "lat" : 53.34146670000001, + "lng" : -6.217802000000001 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "17 m", + "value" : 17 + }, + "duration" : + { + "text" : "1 min", + "value" : 16 + }, + "end_location" : + { + "lat" : 53.34041029999999, + "lng" : -6.214657 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eSean Moore Road\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eR131\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "w_qdIbz|d@KWMW" + }, + "start_location" : + { + "lat" : 53.34028259999999, + "lng" : -6.2149025 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 128 + }, + "duration" : + { + "text" : "2 mins", + "value" : 120 + }, + "end_location" : + { + "lat" : 53.3409567, + "lng" : -6.2131468 + }, + "html_instructions" : "Take the zebra crossing", + "polyline" : + { + "points" : "q`qdIrx|d@FK?A?A?ACE?A?A?A@?HOYk@Wi@KUIOUg@GOGMEWE[CI" + }, + "start_location" : + { + "lat" : 53.34041029999999, + "lng" : -6.214657 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 245 + }, + "duration" : + { + "text" : "3 mins", + "value" : 195 + }, + "end_location" : + { + "lat" : 53.3396771, + "lng" : -6.2104497 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eS Bank Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "_dqdIdo|d@@KAK?EAGAIACBGDOFQBKDUC[vB}Dl@kAb@y@HQXi@" + }, + "start_location" : + { + "lat" : 53.3409567, + "lng" : -6.2131468 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 580 + }, + "duration" : + { + "text" : "8 mins", + "value" : 466 + }, + "end_location" : + { + "lat" : 53.3411811, + "lng" : -6.203636299999999 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "_|pdIh~{d@]{@CGUa@]y@cA_Co@eAe@i@OIOKKQCAy@WCA]OAAEACCACCCACACEOAOAI?K?MJkADe@@G?KJoAR_C@YFm@@KFo@HkAR{BBWDaA?U" + }, + "start_location" : + { + "lat" : 53.3396771, + "lng" : -6.2104497 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.8 km", + "value" : 785 + }, + "duration" : + { + "text" : "11 mins", + "value" : 637 + }, + "end_location" : + { + "lat" : 53.3390668, + "lng" : -6.1925399 + }, + "html_instructions" : "Continue onto \u003cb\u003ePigeon House Rd\u003c/b\u003e", + "polyline" : + { + "points" : "keqdIvszd@xAkQBS@Wh@{GND@SOETuCDo@DY@GTyCDk@DUHaANaBLuANoAFk@F]JYPc@Xc@N_@FQDO@GDUJ}@NiADMDc@Do@" + }, + "start_location" : + { + "lat" : 53.3411811, + "lng" : -6.203636299999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 406 + }, + "duration" : + { + "text" : "5 mins", + "value" : 315 + }, + "end_location" : + { + "lat" : 53.3421225, + "lng" : -6.1936712 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "expdIjnxd@ECMME?E?C@EDEFELK^GVI`@GXM|@G`@GLEHGDQA_@?s@AgAE_@@[FKDMDSAqCo@QGM?IFEH" + }, + "start_location" : + { + "lat" : 53.3390668, + "lng" : -6.1925399 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 357 + }, + "duration" : + { + "text" : "3 mins", + "value" : 171 + }, + "end_location" : + { + "lat" : 53.3449245, + "lng" : -6.1961828 + }, + "html_instructions" : "Take the ferry", + "maneuver" : "ferry", + "polyline" : + { + "points" : "gkqdIluxd@yFxEkCvBiD~C?B" + }, + "start_location" : + { + "lat" : 53.3421225, + "lng" : -6.1936712 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "110 km", + "value" : 109735 + }, + "duration" : + { + "text" : "2 hours 24 mins", + "value" : 8650 + }, + "end_location" : + { + "lat" : 53.31061529999999, + "lng" : -4.6285134 + }, + "html_instructions" : "Take the \u003cb\u003eHolyhead, UK - Dublin, IE\u003c/b\u003e ferry\u003cdiv style=\"font-size:0.9em\"\u003eToll road\u003c/div\u003e\u003cdiv style=\"font-size:0.9em\"\u003eEntering the United Kingdom\u003c/div\u003e", + "maneuver" : "ferry", + "polyline" : + { + "points" : "w|qdIbeyd@v@Eb@S^a@Xg@FQLm@FkA~Awa@^eJAkhFp@klB@yBBoFFyQ@yB@sD@wB^i`A?sC@}ADsAL{AXkBjf@auCrCaThAgLd@{JKkMs@_n@eBcj@sLaaB_O}cBiCe\\oAaQWaJO{IIoyDaLuvP_\\sb\\a\\ub\\_\\ub\\a\\wb\\wHwwHgBggBmBso@iEwp@Cm@AI?K?K?O?KvH{|JtWyk\\|Xsk\\|Y_e\\?uA?wBo@oaC@_k@Hc_@P_b@b@iaAb@eWh@oMd@sJpCiYtDgVvByIfDqMjc@m|AzIyZtAsDfCgFxBgDrEqGx[qf@fDkDlC_Ct@g@xDaCxBeAzBm@fA?j@DfCr@`HlDH@|_@nTfZxPfLtGpCzA\\Rx@j@`@b@JRHT^dA^xAHl@Dp@HvAFnD?XZlZAfADvAJp@FR?@Pn@bAlAxGlI|A|D" + }, + "start_location" : + { + "lat" : 53.3449245, + "lng" : -6.1961828 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 173 + }, + "duration" : + { + "text" : "2 mins", + "value" : 138 + }, + "end_location" : + { + "lat" : 53.3105883, + "lng" : -4.627684299999999 + }, + "html_instructions" : "Continue straight", + "maneuver" : "straight", + "polyline" : + { + "points" : "kfkdId_g[x@`ANJB?@@BADCBAHIBE@EDQ?C@[?C?EACCKACKYg@u@s@w@" + }, + "start_location" : + { + "lat" : 53.31061529999999, + "lng" : -4.6285134 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "93 m", + "value" : 93 + }, + "duration" : + { + "text" : "1 min", + "value" : 78 + }, + "end_location" : + { + "lat" : 53.3098585, + "lng" : -4.628318399999999 + }, + "html_instructions" : "Sharp \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-sharp-right", + "polyline" : + { + "points" : "efkdI~yf[XHJF^Rb@^f@x@" + }, + "start_location" : + { + "lat" : 53.3105883, + "lng" : -4.627684299999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "51 m", + "value" : 51 + }, + "duration" : + { + "text" : "1 min", + "value" : 52 + }, + "end_location" : + { + "lat" : 53.3096453, + "lng" : -4.6277006 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "sakdI~}f[FGV[Do@Bg@" + }, + "start_location" : + { + "lat" : 53.3098585, + "lng" : -4.628318399999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 282 + }, + "duration" : + { + "text" : "4 mins", + "value" : 232 + }, + "end_location" : + { + "lat" : 53.3075878, + "lng" : -4.6299754 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "i`kdIbzf[TEF?D@FDHDp@p@HJTTx@~@\\^xA`B^`@JLHJDF@@FLBJFRNt@" + }, + "start_location" : + { + "lat" : 53.3096453, + "lng" : -4.6277006 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.1 km", + "value" : 1058 + }, + "duration" : + { + "text" : "15 mins", + "value" : 904 + }, + "end_location" : + { + "lat" : 53.3030863, + "lng" : -4.6170239 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e2nd\u003c/b\u003e exit onto \u003cb\u003eLlanfawr Rd\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eGo through 1 roundabout\u003c/div\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "msjdIjhg[BC?A@?@A@?B?D?@?@?@@@@@??@BBNIBG@E@E?KBUBu@@O@K@O?AA??A?AA??A?A?AA??A?A?A@??A?A?A?A@??A@??A@??A@?AMAQ?Q?G?IA_@@Q?A?O@UBSD[H[FWJ[JYt@cCFSPq@DOH[@G@GD[XgCJy@BYBUD]DYH_@Ty@Ju@fAoDHWDMDQ@]@Q?UBiA?SAUEu@A[@K?I@C?EFc@BO?A@KDKDOBGZq@Tc@Zg@BGJUDK@CDGFMDGFIDIHMFOd@{@R_@LQLUTYNQJOHQNc@DMPo@@ADKFSFO@CN[FINWNUFKHK" + }, + "start_location" : + { + "lat" : 53.3075878, + "lng" : -4.6299754 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.0 km", + "value" : 999 + }, + "duration" : + { + "text" : "14 mins", + "value" : 813 + }, + "end_location" : + { + "lat" : 53.3019344, + "lng" : -4.602475 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003ePenrhos Beach Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "iwidIjwd[Gu@AGCg@G}@M}AE_@ASAS?O?M?S?M@_@@YBe@De@?KFi@?EH}@Dg@@W@UFw@B]?CFg@BKDO?CHa@Lk@DYBMJg@H[DWPu@Nu@F[Z}AFc@D_@DW@W@a@?c@@c@?sA?C?[?_@?]?W?cA?iB?iA?[?kAAO?[?e@A]As@?]?]@M?K@a@FwBBiABm@@{@DyABo@Bg@P_@" + }, + "start_location" : + { + "lat" : 53.3030863, + "lng" : -4.6170239 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "44 m", + "value" : 44 + }, + "duration" : + { + "text" : "1 min", + "value" : 36 + }, + "end_location" : + { + "lat" : 53.3015466, + "lng" : -4.6026313 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003ePenrhos Beach Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "apidIn|a[jA\\" + }, + "start_location" : + { + "lat" : 53.3019344, + "lng" : -4.602475 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "6.9 km", + "value" : 6901 + }, + "duration" : + { + "text" : "1 hour 35 mins", + "value" : 5680 + }, + "end_location" : + { + "lat" : 53.2748159, + "lng" : -4.515505 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eLondon Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "umidIl}a[LeAHm@DYFg@Jk@TeAPu@H_@La@FORq@BE^cAb@{@FQ\\m@LSPYFMT]Zc@V[h@o@@Al@s@jAmAvB{B|@_A\\_@FGTU|@}@|@}@\\]nCsCvAwA~A_B~B_CrCyCbAcA`@i@Zc@FIh@}@\\q@Ve@@CfAyCT{@^aBJe@z@yDn@aD^gBHa@f@cCLs@h@gCXyAF[TcA\\_BBKNu@`@iBPy@n@{CNu@Ns@Jc@TgA\\}AhBwI\\_B^iBp@_DR_Al@uCXqAVmALm@BG@EBKNs@TcAvA_H@EBKJc@n@{CR}@b@qBF_@~AsHdA}ERy@Nq@l@qCHc@d@}BPw@h@gCb@uBBIJg@f@cC`@mB\\yAXsAf@aCXsAJk@@GLm@ZuAZyAJc@Jc@Ja@\\aBb@sBFYBKBMPw@l@qCFUJg@RaATgAH]VmA^gBXsAFWDOReAFUF[FYF_@FUNs@H[FWNi@V{@L_@\\y@Xk@LQNSLOJYBEDODOAM?K?I@G@G@KFMDIFEBCDABAD?D?B@FBDDf@UV[^g@DUF]CKAM?G?I?G@G@MDOBE@CBC@CBCFCBk@BMD[By@@_@@[@M@M@OFy@@Q@AHu@BORuABGBOJe@@GBGPs@La@JYBGDMx@sBBGRe@DOBEJYHUJ[Pq@DSFg@BWBc@F_ABs@@Q@QFuBD_ABi@FqA@UBcA@YB_@Bu@HcCLyCDm@Hk@RcA?CXw@Pe@HSp@eBXu@F[Jk@Ha@@Ib@cCd@eDFk@@QDe@B[@i@?{@GyBA_@AYWoGAYEqAE{@AS?MC_@K_CEqAA[G{AA[AEAWIwBA[AQQkEEo@OqDE{@Cy@E{@GyAMsCEgAGgB?_@AcC@m@?i@?Q?K?C@k@B{@?[@_@@i@@c@BeB@W@s@Be@@OBS@O@KBKBO@MDSBOBILm@Rg@DKP_@LWPUJMHIHILKBCRQHIFEDI@EBE@IBG?GBKAW" + }, + "start_location" : + { + "lat" : 53.3015466, + "lng" : -4.6026313 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "23.6 km", + "value" : 23599 + }, + "duration" : + { + "text" : "5 hours 22 mins", + "value" : 19326 + }, + "end_location" : + { + "lat" : 53.22046030000001, + "lng" : -4.191386899999999 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eHolyhead Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "sfddIz|pZWaACAAAA?AAAACAEEGGAECECEAGAGAM?QYiAQ[GIS]EIO[GMCU?QAIAIAICICGCGEIKGCAA?AAA?C?MUCGI]A]Ba@@a@Dc@Fi@Fe@@CLk@Ng@J]Ne@BKH]Ja@PcABMDUDa@BM?CB]Fk@BW@QDg@@QDg@BSBg@L_BDe@Fg@\\cEFw@Dg@Hy@De@NsBf@}Fj@cHj@cHv@}Jr@{IFy@Hy@F{@Fy@XmDPiB@KPiBHcAF{@d@cG\\mEFs@NqBNwBFm@?KHy@Fy@Dg@@SHy@ZkEFo@Dg@Fs@@E@QLoADg@Fu@Fy@?CFc@Fo@@IHw@DQDWDQBSFY@CDO@EFYLc@DOHSJYFON]FQPg@Ng@Fa@F_@@IBSNy@D[NiAFa@@IHg@?ELw@BWHi@Ho@N_ARwAN_A@INgAl@uDJw@x@_GFg@XqBJu@LaAF_@De@Hq@FqABU@a@Dg@LmCBaA@w@Bm@@]@SD{@DgA@S@[FmADkADu@By@FyAFaA@W@]@E@U@S?QBUDeABo@Be@?G@MD{@?ADa@?G@M@KFo@Hg@Ly@Hc@V}@^qARq@La@Pi@BEZcABKTq@d@}AX}@^sAVsALm@PsAV{BTwBDYXiCLy@L}@Pw@\\iBDMBUDQf@oCRiABIf@mCBKNu@Hc@RcANy@h@sCNq@DQHc@DQDWLi@`@iB\\_BPaALs@?A^kBReAJg@XwABSN{@Lu@BUD]Fe@Fm@D_@Fi@@M?APkBJuADe@PsB@MDi@H{@JiAPiBFs@Hy@PuBFk@PwB`@oEL{A@KDk@@AFy@B]DY?AFw@?ABWDa@H}@?I@KPgBNgB@K@GDe@BWD_@Fy@XyCBOXeD@KFq@?A?EDe@BM?EPeB?G@EDe@@MNeB@I@C?EDe@H_ALiABm@F_A?C?AFaB?O@C@g@@S@g@?A@M?CBuAB}A@k@FsB@S@O@[?M@G?MDi@Dc@DWJaA@Ib@kC@G@GZgBJw@DUN{A@MNwAJgA@KDc@P_BBa@Jy@HaAJw@Dc@BUDi@@G?G@M@[?WAg@AM?QAQCYGm@AI?IEo@KuAI_BGuACkAEyA?eA@}@?]@a@@]HmB?GBWJyABa@Dw@?MDo@HkAH{AF}@D}@JwANcC?AFw@@QBi@?CHqABc@JmB?G?EDs@F{@Be@@SHkAHcA@QJmBBg@DqA@e@Au@?ACiAEm@Ey@AQCi@GqAI_BCe@KaCE{@?ICg@?S?E?a@@S@KDm@He@Fa@Rq@f@cBJ]Ne@^sA|@eDd@gBV_A@CVy@FYHYRo@Rs@HWH]HSHY@AFUHYRq@?CFUHWv@kCd@_BBGT{@Jg@BO@EJq@?C@GFm@@KFq@FoABe@?KBc@BSFq@@GDYLaAN{@BODYDa@L_A\\}BHo@VgBHo@F]Lw@?EPkAD]TyAT_BFe@PsAd@}C@ILw@f@kDT_Bn@qEPqAZ_CT_BDYF]RuAPqALw@TaBNeAJy@DQ\\eCdAgHXqBJu@@Gz@_GVoB\\cCLu@D[PkARsAx@gFF]bAsHF_@@OBYBc@@o@?a@A_A?i@IoFGuBAe@?U?Y?k@@g@@O@MB_@BODWTuAJo@Lw@r@_EF[t@qEj@oDLu@Ny@TmAViA@GDUL_@Rk@h@gARc@bCqE~@gBf@cAb@y@R]L[Zy@f@wAT{@FUZuA^{BBKVyADSFWF[FYRaADOFWNk@xAgF\\mAJYRs@z@wCPm@HWRq@Rq@HYTw@DSBGBOH_@Hi@Da@Da@BS@Y@_@@g@?}@?IAiAEcCAqBCcACaAAiAA{@A{@IoFA{@A{@C{@?AGeD?]Cc@C_@Eu@Ee@WyBEa@Ie@G]?CMm@ACGWIUo@eBYy@[}ASmBGw@Am@AkB@_@@{@?KDo@Fy@@OV_CX}BPcBZ}B@QHy@De@DSJw@?EHs@RaB^sCFe@?CBOBUJu@TuAPu@Li@DK@EDMDM?CLY\\{@Xm@b@u@z@}AjBeDPYd@s@l@_Ab@k@LMBEHILKJIFEFCFCHCFAFAF?F@H@TDn@LH@XBBLBJ@BHLJDD?JADCJMNV@@X`@@BDFJLHLJPT\\JSDCDCD?HBNNFV@L@Lj@FHAHAFCDCDCDCFGBEDELOJWHYDWFu@LqAN{AH{@?CJs@Fg@@MXkB?C@CJs@@ALu@^iB?CNq@?Ah@gCfByI?ANu@Nq@?CNq@Nu@?ANu@Ns@Nu@@CLo@@CNs@Ji@b@sBdFgVrByJ?CNq@@ALs@p@_DNu@Nu@Ps@pAmGJk@Lk@Ns@dA}E@G\\cB@ALs@Nu@Jg@BMNq@@AHa@BOJ_@DWNo@@ENu@^iBn@}CPy@DUd@sBd@}BPu@XwADSJe@@IBMBKH_@DSH[DU@EVqANo@\\cB\\}ADW@CDUH[Je@VmAHa@XmAPm@b@iAXs@BGTg@Zq@@CDKl@sANc@JUJUFMLWp@{A~AoDZo@N]Zk@Vg@FMP[FKNY@AXa@T_@PQFIV]NQh@i@h@o@Xa@Rg@Ty@Jc@nAiGl@}CLm@XyANs@BMn@gDHc@DWLm@@ENiAFkBFyBBsDDwFB{D@iAB_A?UDmBBwA?WDqCBgBBcB?G@w@@kD@_A@y@BgD@eC@{A@e@@q@@eA@WDyE@gABgBDaD@eA?UBoAB_A@_A@w@@c@?G?OBgB@eABqC?Y?M?K@I@qA?wALg@TaAFGFKBIBIBI@I?K?K?K?C?EAKCICICGCGKKCOEKAMEUCUDmDFuF?K?o@@w@A_A?SAg@?WCc@AOEu@I{@Gw@Q_BS{AOiAS_AQs@CMMe@CMSy@Qu@Km@Ii@ACIs@AEEu@IeAEcAAe@E{@C{@E{@KeCMaEAQC{@OqDSgGMyCGiB?e@Aq@?GA}@Ao@@}A@oABiBFaBHoBBy@B{@Bq@@IB{@D{@By@By@?AD{@B{@?IZoI?IB{@T{GDiAB{@TwFNaFR_GFeBB{@Be@@UBy@B{@B{@D{@B{@HiCBg@LsDBy@B{@B{@D{@By@B{@B{@B{@@M?OFyADy@D{@@Y@a@Dy@?MBm@B]FwABYBa@@YDq@?M@M@MD{@Bq@Dw@Bo@Bu@@O?M@I?O@S?KBm@?E?GFkB@e@BoD@a@?[@O@YFuCFiAB}@DeA@O@_@Bk@FcBBoAD{@?AFqAHaC@SH}B?EDyAFgBDmABk@D_A?E?KPiDNmDLmDFoA@a@@WViHD{@HwBDeB?K@QBm@@c@FiAFq@N}BFy@HiADq@@M@O@SHgAFm@Hc@BM@M@GReAHm@BW@K@C@Q@W?A?O@[?UAYGqC?KAU?QAcABwA@k@@E?MBW?O@I@ULcA@Q@]BS?O?QC{AGe@Ge@G[CGESIWAEAEEQCQE[E]AIASCYE{@AUAoA" + }, + "start_location" : + { + "lat" : 53.2748159, + "lng" : -4.515505 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.7 km", + "value" : 1678 + }, + "duration" : + { + "text" : "21 mins", + "value" : 1289 + }, + "end_location" : + { + "lat" : 53.22614549999999, + "lng" : -4.1686872 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eHolyhead Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "{rycIdsqXGUEeACc@Eq@Gy@KcAMo@Oo@c@uBG[CQMiACUGe@AMQiAEs@OgACKUmAUiAW_AKa@Sq@So@]eAQg@EKIUuA}Du@yBGWKYY{@wCoIEIKYGUKYIUaAoCu@iCq@oCGWOm@?GQ{@EWSwAGg@Ec@MmBK_BOiCKiBa@eHQwCAGCgA?ICo@GkBA_B?iA?iC@U?I?M@M" + }, + "start_location" : + { + "lat" : 53.22046030000001, + "lng" : -4.191386899999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.1 km", + "value" : 1078 + }, + "duration" : + { + "text" : "16 mins", + "value" : 974 + }, + "end_location" : + { + "lat" : 53.2185002, + "lng" : -4.1605459 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003eHolyhead Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eGo through 2 roundabouts\u003c/div\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "mvzcIhemXDSF[DUBK@GD?@?BA@?BA@A@C@A@A@C@C@C@C@C?C@C?E?C@E?CAC?E?GCG^u@FQNWNYJOJM@AZa@FGV]RUFGHIFEPMZU\\QRINIFANCVAP@Z@B?`@?V@R?NAPAVIRGRKHAJABAHCHC@BB@@?@@@@B?@?@?B?BADC@A@A@A@C@A@C@C@C?C@C?C@IHOHSJ[DKDE^k@`@]v@s@XYLMJKHKbAcA^]\\]^_@zA{AzByB^]@AZ[@AHGTUDEBEDGBEDI@KBK?M?KESH[DYHy@BQTe@" + }, + "start_location" : + { + "lat" : 53.22614549999999, + "lng" : -4.1686872 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 319 + }, + "duration" : + { + "text" : "5 mins", + "value" : 307 + }, + "end_location" : + { + "lat" : 53.215852, + "lng" : -4.162103399999999 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eTreborth Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA487\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "sfycIlrkXBHJZHLFJNHFBTHL@B?j@HZBND`AT\\Jd@Ph@Tl@ZHF`@Vf@`@d@^" + }, + "start_location" : + { + "lat" : 53.2185002, + "lng" : -4.1605459 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.5 km", + "value" : 544 + }, + "duration" : + { + "text" : "9 mins", + "value" : 562 + }, + "end_location" : + { + "lat" : 53.2130203, + "lng" : -4.1563306 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "avxcIb|kXFQPs@Rq@Ty@He@@IJm@?IDy@@{@?c@KgA?IAi@Je@@AZa@x@eAZa@^_@BC\\Kb@KJETKNGLUj@cADEFEFCDGJQp@mA@CDGBIBGDUFUBIDMJU" + }, + "start_location" : + { + "lat" : 53.215852, + "lng" : -4.162103399999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.0 km", + "value" : 1035 + }, + "duration" : + { + "text" : "13 mins", + "value" : 809 + }, + "end_location" : + { + "lat" : 53.2188198, + "lng" : -4.144558 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003ePenrhos Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "kdxcI`xjXQe@e@kA{@{A[o@Yi@IWKWIQgAsCM]Qk@W_AOy@K}@G_AGy@Kw@G_@EWIg@Os@M]Q_@QYOUQQMMMKk@a@][[YYa@CGQ[GOM[s@qBc@kAM_@CEu@eBGQOY}AuDIOe@iAGQOYGQM[a@}@MYIOGSKk@" + }, + "start_location" : + { + "lat" : 53.2130203, + "lng" : -4.1563306 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "92 m", + "value" : 92 + }, + "duration" : + { + "text" : "1 min", + "value" : 80 + }, + "end_location" : + { + "lat" : 53.2190131, + "lng" : -4.1433534 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003ePenchwintan Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "shycInnhXDEBG?MAICECAE?SsBKoA" + }, + "start_location" : + { + "lat" : 53.2188198, + "lng" : -4.144558 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 247 + }, + "duration" : + { + "text" : "4 mins", + "value" : 217 + }, + "end_location" : + { + "lat" : 53.2184043, + "lng" : -4.1399876 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eAinon Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "yiycI|fhX\\gABIVkA@[?SKiBGw@A]@[B]F_@HWRs@Rq@DQLg@" + }, + "start_location" : + { + "lat" : 53.2190131, + "lng" : -4.1433534 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.7 km", + "value" : 651 + }, + "duration" : + { + "text" : "12 mins", + "value" : 702 + }, + "end_location" : + { + "lat" : 53.2165723, + "lng" : -4.1315788 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e2nd\u003c/b\u003e exit onto \u003cb\u003eHendrewen Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "_fycI|qgX@??@@?@??A@?@??A@??A@A?A@A?A?A?A?A?A?A?A?AA??A?AAA?AHw@D[He@@Y?i@?i@CkBCsBE{@Ew@AQIeBAo@@]?_@BYBe@ZaBf@yBPw@Jc@Nu@BKBMXqAVmAF]DSJ_@@ARg@FKHGn@WBAXKLIFKJY" + }, + "start_location" : + { + "lat" : 53.2184043, + "lng" : -4.1399876 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.5 km", + "value" : 484 + }, + "duration" : + { + "text" : "6 mins", + "value" : 370 + }, + "end_location" : + { + "lat" : 53.2172992, + "lng" : -4.1247583 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "qzxcIj}eXBMBSB]RkC@S?g@?AAe@EQCOMc@?AUm@K[GUSq@Sq@W}@Ki@QgACi@Cm@?KE{@QmF?AAy@@u@@EJaB" + }, + "start_location" : + { + "lat" : 53.2165723, + "lng" : -4.1315788 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 202 + }, + "duration" : + { + "text" : "2 mins", + "value" : 144 + }, + "end_location" : + { + "lat" : 53.2156055, + "lng" : -4.123731 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "c_ycIvrdXNGd@[LM^[TUHGJIRI`@M@?b@MJETIbAa@" + }, + "start_location" : + { + "lat" : 53.2172992, + "lng" : -4.1247583 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.6 km", + "value" : 1600 + }, + "duration" : + { + "text" : "22 mins", + "value" : 1321 + }, + "end_location" : + { + "lat" : 53.2162963, + "lng" : -4.101588899999999 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eLon Cefn Ty\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "qtxcIhldXCw@AG?I@WBO@E@?LUHIJMp@m@XW^k@\\e@@ER[@GPc@@KDc@Fk@Fc@Lu@F[B[Fk@@MDu@B}B@E?A@k@@G?G@KBe@?GDi@?I?]?[?A?GA]CSKw@Kq@CU?AESe@eFAOOsBGk@WaD?KEcAEs@C[A]EiBCeA?C?{@?A?y@?aABqB?{@@k@@kA@g@?S?{@?{@?wB@{@?yAAwAAwA?MAm@CsBCs@AK?EGq@?AGc@?CCOIa@ESI_@U_AMg@CKAIOq@AAy@iCOc@EKWy@Uq@?AQm@A?K]EOAIAEAEIe@" + }, + "start_location" : + { + "lat" : 53.2156055, + "lng" : -4.123731 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "57 m", + "value" : 57 + }, + "duration" : + { + "text" : "1 min", + "value" : 43 + }, + "end_location" : + { + "lat" : 53.2167939, + "lng" : -4.1017936 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eA5\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "{xxcI|a`Xm@Rs@R" + }, + "start_location" : + { + "lat" : 53.2162963, + "lng" : -4.101588899999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.4 km", + "value" : 2431 + }, + "duration" : + { + "text" : "32 mins", + "value" : 1937 + }, + "end_location" : + { + "lat" : 53.2196461, + "lng" : -4.0677923 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eLlandegai Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "}{xcIdc`XAC?AAA?A?AA??A?AA??AA??AA??AA??AA?A?A?A?A?AQ@SBM@GBCLWHQl@kAFOhAcCVm@Pc@TcAHu@@G@q@Ba@?cAAQAg@M}@Ie@CO]sAk@uA[q@Sm@EQIk@G_AG{@AOAk@?w@?IHq@Hy@D]D[Fy@Fc@A{@A_@GoAQ{@Mi@U}@Qs@Ka@Qm@Y_Ae@eBQm@k@yBc@eCKw@AAAMGi@UqB?AAMO}C?MEcCEcA?aE?k@@_EAyACcEQcM?IAW?c@WgVAc@?WAc@CoBCqCEcB?AKwBGoAAOAMAKM{BUmC[cDGc@Ke@Wu@Sm@CG]cASm@AIIUEWAKCk@" + }, + "start_location" : + { + "lat" : 53.2167939, + "lng" : -4.1017936 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "33 m", + "value" : 33 + }, + "duration" : + { + "text" : "1 min", + "value" : 33 + }, + "end_location" : + { + "lat" : 53.2199038, + "lng" : -4.0675588 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ymycItnyWOMQOECIK" + }, + "start_location" : + { + "lat" : 53.2196461, + "lng" : -4.0677923 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.6 km", + "value" : 1597 + }, + "duration" : + { + "text" : "21 mins", + "value" : 1272 + }, + "end_location" : + { + "lat" : 53.2269446, + "lng" : -4.0474255 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "koycIfmyWALEFCBEBIBKCEMIWS_AIc@Ke@ISEQC]?ECoBAYCa@E{@?OGi@C_@Iy@Oc@Q_@O_@qAmCSc@CGUg@AEq@wAWk@Wk@g@cBu@aC_AcDyGaTs@{Bi@_Ce@_CGUG_@Mu@sC}O}EiXAI" + }, + "start_location" : + { + "lat" : 53.2199038, + "lng" : -4.0675588 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.0 km", + "value" : 2044 + }, + "duration" : + { + "text" : "27 mins", + "value" : 1641 + }, + "end_location" : + { + "lat" : 53.2348577, + "lng" : -4.0201443 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "k{zcIlouW?YIg@{@}Eu@gEQ_Ac@}Bk@aDEWG]G[e@cCUiAQ_ACQUoACKO}@UmAEWSkAUuAOy@Ie@[_BUkAAEUoAY}AY}AO{@Ie@EQQeAY{AWuA[gBUuACIa@cCEUOu@Kk@_@mBSmAY{A?AY{AUsAUkASeAYcB]qB[iBAAMs@Q{@[cB[}A]qB]eB[gBGWMu@Kk@o@_DCKMu@Ou@ACMq@Mu@YuAi@_CCK]}AIc@EOEOGUEKEEICMBKJOD" + }, + "start_location" : + { + "lat" : 53.2269446, + "lng" : -4.0474255 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "39 m", + "value" : 39 + }, + "duration" : + { + "text" : "1 min", + "value" : 28 + }, + "end_location" : + { + "lat" : 53.23513029999999, + "lng" : -4.0205188 + }, + "html_instructions" : "Continue onto \u003cb\u003eStation Rd\u003c/b\u003e", + "polyline" : + { + "points" : "{l|cIzdpWu@jA" + }, + "start_location" : + { + "lat" : 53.2348577, + "lng" : -4.0201443 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 197 + }, + "duration" : + { + "text" : "3 mins", + "value" : 156 + }, + "end_location" : + { + "lat" : 53.2344902, + "lng" : -4.0181927 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "qn|cIfgpWMu@Cc@AW?a@?Y?YBk@Fg@@EPs@P_@DKFKJM@ADG@?DE@AXUZM" + }, + "start_location" : + { + "lat" : 53.23513029999999, + "lng" : -4.0205188 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 439 + }, + "duration" : + { + "text" : "6 mins", + "value" : 376 + }, + "end_location" : + { + "lat" : 53.2363985, + "lng" : -4.0125964 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "qj|cItxoWEiAIoBKy@Q{AIYIi@Ik@Qo@Ss@ISg@qAcAkCKWa@cAUm@Uo@A?Um@GMIQEMEKEQAE?E@G" + }, + "start_location" : + { + "lat" : 53.2344902, + "lng" : -4.0181927 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.3 km", + "value" : 1346 + }, + "duration" : + { + "text" : "18 mins", + "value" : 1068 + }, + "end_location" : + { + "lat" : 53.2442617, + "lng" : -3.997438399999999 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eGwyllt Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ov|cIvunWa@a@EKM_@Qq@Sm@?CWm@Um@Uo@Uo@g@yAWw@Uo@Uo@c@qA[{@Uo@kAcDqBcGCIUo@Um@aAoCUo@EKIUEMUo@Si@ACUo@Wm@Um@KWYsAIe@CC[m@eAyBCGUa@Wi@c@{@k@}@Yg@[g@KQMUSYc@q@KOOWYe@?AOUUe@Qe@Oa@GQcAqCYk@GOQWOUMKIGYI" + }, + "start_location" : + { + "lat" : 53.2363985, + "lng" : -4.0125964 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "71 m", + "value" : 71 + }, + "duration" : + { + "text" : "1 min", + "value" : 57 + }, + "end_location" : + { + "lat" : 53.2445335, + "lng" : -3.9964998 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e towards \u003cb\u003eAber Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "sg~cI~vkWAY?MCQKq@Me@Ui@" + }, + "start_location" : + { + "lat" : 53.2442617, + "lng" : -3.997438399999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.7 km", + "value" : 1674 + }, + "duration" : + { + "text" : "23 mins", + "value" : 1372 + }, + "end_location" : + { + "lat" : 53.25388659999999, + "lng" : -3.9783875 + }, + "html_instructions" : "Continue onto \u003cb\u003eAber Rd\u003c/b\u003e", + "polyline" : + { + "points" : "ii~cIbqkW{@wBa@iAw@uBo@gBi@uA[w@cBeEe@}@aByDSg@IQ?AMYISYs@yAoDUm@[}@a@oAKc@GUEQIa@?AI]GWCQCKKw@CSGe@CWEU?IEYIy@CYE]G{@Gy@Iy@C_@CYE_@CYEa@a@iDKw@WuBOy@EUGU?AI]s@iCCGIUACISGOO[OWQ_@EIUa@W_@IKAEOOi@g@CC[SGEIGuAi@}Ag@GAeDeAWQqAkA_Ay@" + }, + "start_location" : + { + "lat" : 53.2445335, + "lng" : -3.9964998 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.8 km", + "value" : 790 + }, + "duration" : + { + "text" : "10 mins", + "value" : 607 + }, + "end_location" : + { + "lat" : 53.2597288, + "lng" : -3.9717651 + }, + "html_instructions" : "Continue onto \u003cb\u003ePenmaenmawr Rd\u003c/b\u003e", + "polyline" : + { + "points" : "yc`dI|_hWq@m@KK}AoAa@]_Au@YUEE[[_@]}@gAGIYa@S_@A?[_@g@q@_@e@k@w@IMo@cAo@cAs@w@EGu@{@CCy@eAW[_@k@Wg@Ye@S_@a@u@OUU]CGGGCEEEECAAGEEAGCGAIEKA" + }, + "start_location" : + { + "lat" : 53.25388659999999, + "lng" : -3.9783875 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 401 + }, + "duration" : + { + "text" : "6 mins", + "value" : 352 + }, + "end_location" : + { + "lat" : 53.26208, + "lng" : -3.9676429 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003ePenmaenmawr Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "ihadIpvfW@_@AUCSIUGM]a@QMOKQKMQQUUe@yAkCGEIKU_@[m@QW_@w@CGg@gACI_@o@Wc@IOACAE?AAC?A?A@A?E@?@EHY" + }, + "start_location" : + { + "lat" : 53.2597288, + "lng" : -3.9717651 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 349 + }, + "duration" : + { + "text" : "5 mins", + "value" : 314 + }, + "end_location" : + { + "lat" : 53.2636069, + "lng" : -3.9632165 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003ePenmaenmawr Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "_wadIv|eWQYW]KUKUKWAAWo@Uo@IUEICEAGCEEMEMI_@EUKy@Ie@Ko@Mq@G]AIKk@Ko@AGG]GWEOMa@?ACKCSCO?E?GBM@K" + }, + "start_location" : + { + "lat" : 53.26208, + "lng" : -3.9676429 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.5 km", + "value" : 1535 + }, + "duration" : + { + "text" : "22 mins", + "value" : 1343 + }, + "end_location" : + { + "lat" : 53.2666845, + "lng" : -3.9419633 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003ePenmaenmawr Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "q`bdIbaeWIUGKAKAEAGAE?MAOEa@AQ?EAOAQAKEe@MMI{@ACLYEc@Mg@Os@G[GYa@iBEWK]KFEBGBKw@Kw@EYEUAGEYCQCKKi@?AAIGWEQAKKi@CKEQ?GCQAKEYCSAI?ACYCSAKSwBCi@AKC[C_@Cm@AKC[?GCWGk@AMCYC_@CSCWAMEW?ACQCKKi@?ACIGUI]i@wBAEEQCKGUEQCKGWEOCKAGEOEOCKGWEOCKEMOuAAKEYAGAWCYCSAKAYCSAKC[?EAKCKGc@G]CMAQ?_@@IBQ@K?ABWBS@G?_@@iACiB?G?KAKA[AS?CAc@?SAK?C?W@S?K?o@@{@?K@q@?I@[BeCFmABk@Bs@@q@?I@G?i@?I?q@?I@q@HEBAJEBsA?c@?i@GOSk@" + }, + "start_location" : + { + "lat" : 53.2636069, + "lng" : -3.9632165 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.5 km", + "value" : 494 + }, + "duration" : + { + "text" : "7 mins", + "value" : 400 + }, + "end_location" : + { + "lat" : 53.2671459, + "lng" : -3.9345946 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eHigh St\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "wsbdIf|`W@k@@O@{@@W?k@?_@AKCiAGuBI}BC}A?EASA_@C{@Cg@ASCa@AYI}AMmCKwB?YA[ACCy@?EIqB" + }, + "start_location" : + { + "lat" : 53.2666845, + "lng" : -3.9419633 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 860 + }, + "duration" : + { + "text" : "12 mins", + "value" : 719 + }, + "end_location" : + { + "lat" : 53.26824209999999, + "lng" : -3.9218098 + }, + "html_instructions" : "Continue onto \u003cb\u003eBangor Rd\u003c/b\u003e", + "polyline" : + { + "points" : "uvbdIdn_WEwAA]C{@Ci@CmA_@wII}AG_AQ}CYkFSuEC_@MmCG_BKyBOkEMaDCa@Cc@CYA[?w@AqE" + }, + "start_location" : + { + "lat" : 53.2671459, + "lng" : -3.9345946 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 97 + }, + "duration" : + { + "text" : "1 min", + "value" : 77 + }, + "end_location" : + { + "lat" : 53.26841779999999, + "lng" : -3.9203993 + }, + "html_instructions" : "Continue onto \u003cb\u003ePant-Yr-Afon\u003c/b\u003e", + "polyline" : + { + "points" : "o}bdIh~|VAcACk@?GCe@Ca@Ec@E]AEGQ" + }, + "start_location" : + { + "lat" : 53.26824209999999, + "lng" : -3.9218098 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.6 km", + "value" : 2589 + }, + "duration" : + { + "text" : "37 mins", + "value" : 2235 + }, + "end_location" : + { + "lat" : 53.2713063, + "lng" : -3.8852938 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eConwy Old Rd\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "s~bdInu|VBW@Q?I?IAIACAIEUEQEQKYGOIQGQ_@m@GMSW]a@YUECu@m@MOMSGMO]U}@]_BYsAc@aC]kBMk@YqAGYOu@mAmGCKOu@]mB[wAOu@aBaIOs@?Ak@}Ci@iBGWQ[[[KKEESUCC]]AAYe@IOSc@Og@AGOk@CIOw@Gg@CY?S?M?w@Ba@NgCBi@DgABg@@EBg@PkCDw@Di@PeC@WDe@JqBBYJgBBUBc@D{@D{@Dy@Do@Dw@HiADi@@OFu@L{@BKJg@@E\\{@Fa@D_@BYRsB@MLoARiA@AJu@@GXcBF}@JuBDw@FuB@m@JcCNqDD{@D{@By@J_CVcFD{@JuBBa@@WRoDHkB" + }, + "start_location" : + { + "lat" : 53.26841779999999, + "lng" : -3.9203993 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "4.0 km", + "value" : 3982 + }, + "duration" : + { + "text" : "58 mins", + "value" : 3499 + }, + "end_location" : + { + "lat" : 53.2799641, + "lng" : -3.8333127 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eSychnant Pass Rd\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "upcdI`zuVCQAOEQK[MYWk@Yi@Yi@Sa@CIq@uAc@{@ISU_@QQEE_@YUQKKUO[UCAECOMk@a@WUc@k@GKQ[AC]_AKi@Oy@Ke@AEGUIOIGMKICIAKCOEKIGICIAGCGCWAWCg@CoACy@C{@C{@?OCk@C{@C{@Ac@?W?MC]CWASS}A?AKw@AMC[AS?M?QBMBE?ABGDKLQ@A?AZe@?AXe@BEXWTUFK@A@CPe@?CPs@H]^sB@OJcA@c@@Q?EF}@LsA@WB]@c@?c@?OAEA[CY?GG]EQG_@ACEOCKOe@Y]CEMOIQCEIUESGWc@eCAE_@kBMm@AGKg@AMCSEe@I{@E{@AOAMC[Ey@Gy@?AASGm@Io@?AAICWAU?A?C?S?O@O@QBOBIDKDKR[BCX[?A\\_@\\_@@ABEJMJOBEJUJWJ]BKBKBc@@I?K@S?WACAUAMCOG]KYGSMYIUSe@Wk@Wm@Wk@Wk@Wm@O[GQGQI_@ACKo@My@YaCOoAE_@I}@AM?GMiAEi@Gk@AMIu@?CIi@AMIk@AK?AKeAGk@C]CQCICII[CIAAOc@CKQc@CKOc@EKUo@k@_Be@sAAEAEi@{Aa@kAq@sBMi@Im@Kq@EYE_@AACUIe@EQG]EWG_@EWCOCMCMCIG]CQIq@AMC_@AO?K?IAIBmA@_@@WBc@@W@a@@YBa@DuA@]@{BAoAB}B?iA@aA?]?W?a@?AAWA_@AOGs@Kq@Io@UkAKg@Mu@CIM{@Iy@OiBGu@ImAEa@Em@ACGu@?CIu@AMC[EoAGu@AOEm@I{AAwBCqCCkAAqDBu@@m@@w@" + }, + "start_location" : + { + "lat" : 53.2713063, + "lng" : -3.8852938 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "62 m", + "value" : 62 + }, + "duration" : + { + "text" : "1 min", + "value" : 47 + }, + "end_location" : + { + "lat" : 53.2802537, + "lng" : -3.8325691 + }, + "html_instructions" : "Continue onto \u003cb\u003eUpper Gate St\u003c/b\u003e", + "polyline" : + { + "points" : "wfedIdukVEq@AOCKEMg@w@" + }, + "start_location" : + { + "lat" : 53.2799641, + "lng" : -3.8333127 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 164 + }, + "duration" : + { + "text" : "2 mins", + "value" : 127 + }, + "end_location" : + { + "lat" : 53.2804735, + "lng" : -3.8304222 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eRosemary Ln\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "qhedIppkVRk@To@@CBK?GAKCQOu@Ou@Ki@Ig@_@}A" + }, + "start_location" : + { + "lat" : 53.2802537, + "lng" : -3.8325691 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 266 + }, + "duration" : + { + "text" : "3 mins", + "value" : 204 + }, + "end_location" : + { + "lat" : 53.28063969999999, + "lng" : -3.8269108 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eRose Hill St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA547\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}iedIbckVr@oABEJWDOBOBQ?O@I?I?G?G?KAGAMQyBU_BE[WaB[mACKKU" + }, + "start_location" : + { + "lat" : 53.2804735, + "lng" : -3.8304222 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.0 km", + "value" : 1045 + }, + "duration" : + { + "text" : "14 mins", + "value" : 845 + }, + "end_location" : + { + "lat" : 53.28477940000001, + "lng" : -3.8135429 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eCastle Square\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA547\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eGo through 1 roundabout\u003c/div\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "_kedIdmjVVkAAA?A?AA??A?A?A?A?A?A?A?A?A?A@??A?A@??A@A?A@?@??A@?@?@gB@{@?WAM?EAECYIk@UqBIw@E[E]Mw@WgBE[AAG_@?COeAKg@Ke@Qs@GSSu@CMKYGWGQCGGUEMOc@KY}@mC_BcEGQIWIWKWISOc@Si@Oc@a@mASm@Oc@GMCIOe@ACUk@k@}AIWKS]_Ag@oAQg@ISGQSi@Gq@Ce@?e@" + }, + "start_location" : + { + "lat" : 53.28063969999999, + "lng" : -3.8269108 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "56 m", + "value" : 56 + }, + "duration" : + { + "text" : "1 min", + "value" : 55 + }, + "end_location" : + { + "lat" : 53.2847362, + "lng" : -3.8127252 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eFfordd 6G Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA546\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "{dfdIrygV?I?SCOACB_AHo@" + }, + "start_location" : + { + "lat" : 53.28477940000001, + "lng" : -3.8135429 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "9 m", + "value" : 9 + }, + "duration" : + { + "text" : "1 min", + "value" : 11 + }, + "end_location" : + { + "lat" : 53.2848079, + "lng" : -3.812799 + }, + "html_instructions" : "Sharp \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eFfordd 6G Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA546\u003c/b\u003e", + "maneuver" : "turn-sharp-left", + "polyline" : + { + "points" : "sdfdIptgVML" + }, + "start_location" : + { + "lat" : 53.2847362, + "lng" : -3.8127252 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "42 m", + "value" : 42 + }, + "duration" : + { + "text" : "1 min", + "value" : 36 + }, + "end_location" : + { + "lat" : 53.2846145, + "lng" : -3.812313 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e towards \u003cb\u003eConway Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "aefdI~tgVB]@MBQ?A@GDGBCFEHG" + }, + "start_location" : + { + "lat" : 53.2848079, + "lng" : -3.812799 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.8 km", + "value" : 1790 + }, + "duration" : + { + "text" : "25 mins", + "value" : 1515 + }, + "end_location" : + { + "lat" : 53.2790471, + "lng" : -3.7908397 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eConway Rd\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eGo through 3 roundabouts\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ycfdI|qgVSsBUeCEk@AK?A?A@??A?A@??A?A?A?A?A?A?A?A?A?A?A?AA??A?AA??AA??AA??AJg@Ls@FSZuAF_@Da@@]Fu@@i@?s@?GE}@I{@@{@?EDg@@UBWFg@BUDUDW@IPy@^gBPaAJw@D[Da@D_@HoALeAJiALgANmAFk@BSLeAPsAZyBBQXeBJs@Fi@@C?ANgBHeB@[Dk@Bi@Dy@HqB@CHs@@?@?@?@?@A@?@A@A@??A@A@A?A@A?A@A?C@A?A?C@A?G?G?A?C?AAA?C?AAA?AAC?AAA?AAAAA?AA?AA?AEAFq@@MPoC@QHaAHuA@_@@_@@qA?u@@k@Bc@@OLg@Nc@PWNM^Y?A`@[l@c@j@c@b@OL@HBD@D@HDVPR\\FHHHDDHBJBH@JAJCVMLKPYL_@Ba@@E@W?OASLk@BIBMBGFOHIPGn@ONC" + }, + "start_location" : + { + "lat" : 53.2846145, + "lng" : -3.812313 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.7 km", + "value" : 1743 + }, + "duration" : + { + "text" : "24 mins", + "value" : 1449 + }, + "end_location" : + { + "lat" : 53.2868578, + "lng" : -3.768702899999999 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e2nd\u003c/b\u003e exit onto \u003cb\u003eConway Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA547\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "aaedIvkcVAE?AAA?CAA?A?A?C?A?A?G?G@C?A?A@A@E@_@@M?O@_@B]Ac@Ck@Ci@C_@IWQ}AEYO{@_@{AMa@Uo@So@Uo@u@qBUo@AEg@{AUo@So@Uq@M]iAwDw@}CK_@Os@YsAGWQs@Qs@Uo@GQa@cAAGUi@Wo@Wo@Um@Ma@EOSy@Mq@Q_AKk@?CIu@E_@KsAG{@CSCQKkAIy@EYCMCOKy@CKIi@EWCMEQEYI[YsAOk@CKEMSs@Ma@EOEOYu@_@kAaAaC]y@Yk@yB{Eo@yAa@iAm@kBSk@m@_B" + }, + "start_location" : + { + "lat" : 53.2790471, + "lng" : -3.7908397 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 554 + }, + "duration" : + { + "text" : "8 mins", + "value" : 458 + }, + "end_location" : + { + "lat" : 53.2900297, + "lng" : -3.762537499999999 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eOld Conway Rd\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "{qfdIja_VBO?GEIQa@IOCIUc@Wy@So@Qs@CIGQIYIWESAAQg@IOM[CGIMEGIMAAEEIGOIEAIGSSCCECc@u@KSYi@EIq@oAc@q@[s@GSSq@ACQm@Me@QcAAGQw@Ia@SS" + }, + "start_location" : + { + "lat" : 53.2868578, + "lng" : -3.768702899999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 120 + }, + "duration" : + { + "text" : "2 mins", + "value" : 127 + }, + "end_location" : + { + "lat" : 53.290252, + "lng" : -3.7608471 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eTanrallt St\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "uegdIzz}UHc@BM?USaBASGe@?ECMIc@CQIc@" + }, + "start_location" : + { + "lat" : 53.2900297, + "lng" : -3.762537499999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.2 km", + "value" : 1183 + }, + "duration" : + { + "text" : "22 mins", + "value" : 1335 + }, + "end_location" : + { + "lat" : 53.29306099999999, + "lng" : -3.7448618 + }, + "html_instructions" : "Continue onto \u003cb\u003eOld Hwy\u003c/b\u003e", + "polyline" : + { + "points" : "aggdIhp}UGc@COKa@Uk@KSi@eAIOYi@Yo@Wc@i@_AKO{@uASa@i@cAGQOc@Ky@Am@?]Bk@HuB@W@YAo@AEEu@?EOqBGw@Cm@Eg@CgA?ECo@AKGk@AMKeAMsAASIw@?AIy@Gy@Em@KeAKkAEg@Iy@KgAEm@GwACeAAaA?UA_@AWACCc@AUOeB?OAKCo@?E?EAo@AK?KCo@?g@?GBm@@EH[JQHKTM" + }, + "start_location" : + { + "lat" : 53.290252, + "lng" : -3.7608471 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.9 km", + "value" : 1853 + }, + "duration" : + { + "text" : "25 mins", + "value" : 1518 + }, + "end_location" : + { + "lat" : 53.28938369999999, + "lng" : -3.7191629 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eOld Hwy\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "sxgdIjlzU?{@?KAYBU?CHc@Jg@F[?GFQDM@I?G@K?K@W@c@?I@Y@U?I?Y?g@@g@@a@@_@?I@q@?C@]?UA_@?IDq@?MB]DK?ABQ?Y?MAMAm@?CC]?U?C@OBQH[HSJQXg@FIBI@M?M?AE[CU?GAMBQBS?EBKF]@O@ONg@R_ADWH[VaAJg@Ns@BKLi@Lo@@ENu@FY\\yANe@To@f@qAV_A@ENm@DKHi@Ds@?y@D{@@SL{AJuALcBFk@@MFy@Dw@@CHw@Hy@LiADQT}A?ATqBHw@Fo@@ILqABs@D{@D{@By@D{@@W@c@JuB@SBc@?AF{@Ds@Dm@@S@Q@g@?s@?I@iAAm@AYASBMD[@MBMFWDMDK?AP_@DKFMHS@EBEDMFU?A?K?C?KAKAICEAGAEAGAQCOAMGSOYAASWAAOQKOEIACS_@" + }, + "start_location" : + { + "lat" : 53.29306099999999, + "lng" : -3.7448618 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "5.0 km", + "value" : 5032 + }, + "duration" : + { + "text" : "1 hour 9 mins", + "value" : 4148 + }, + "end_location" : + { + "lat" : 53.2905873, + "lng" : -3.6475649 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eAbergele Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA547\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "sagdIvkuUZy@`@wAJa@Nc@X_AACAA?A?A?C?A@EDA@?DyA@{@A]?QA}@Ao@C_AAQAa@C_AC}A?iAAgA?Q?_@?[@aA@wA?]AYAUASIw@KmAI{@E[AIGYEUc@eBKm@EYIe@WeBScAIg@CSGk@E[CWGkACi@AOAi@AIAg@?IAe@?oAE?AAAAAA?AGK?M@KBG@ECm@AWAe@EeBE}CAe@A_BC_C?SA}@@o@?q@?WBg@@MBUDY@IBK@KLi@DSJc@FWb@mB?CH_@Ha@Lg@P}@Lq@JcATeCLgAX{CLqAPmBJmAZkDX{CHcA@i@B]@[?YAa@CMCU[sBIk@QkAY{ASgASgAE[Gg@E[E]Eq@Go@?ICcAC}@?QCq@G}@Iu@WgAYuAW_AEOg@cB]oA]iAe@cBIYKWQk@EQEKOc@Wi@Wa@W_@gAoAS[Q_@KUEKCKCQCKCOC[A[A]?G@]B_AFy@@MDg@JeAL}A@MPsBFw@@O@GRiCHy@Fm@PmAH]BK@EJYXaAPg@@IJ[H_@Fa@@MD[@IBWBc@@S@S?g@?UAe@?q@A}@Aw@?K?UBe@?GDi@?GD[D]D[Ju@DWLm@Fc@BGJm@@KFe@@SBMBk@B_AAqA?c@CcBC_B?cB?AA}C?_A@m@BgAHcA@G@M@KB]B_@Bw@@m@DaB?{@@cADmA@GNmDLyBPuD@MBk@D{@?ABa@@WDy@Du@?EBw@@e@?Y?[?i@?]Ae@AWA]?EE}@M_DGwAGiAA[GkAEi@GmAEgAAUK_BWgEQiCAOGaAGo@KeAQiBCUEc@KgASgCEe@Aa@Ck@?_@@e@?m@?c@?q@BwA@e@" + }, + "start_location" : + { + "lat" : 53.28938369999999, + "lng" : -3.7191629 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 260 + }, + "duration" : + { + "text" : "3 mins", + "value" : 197 + }, + "end_location" : + { + "lat" : 53.29005, + "lng" : -3.6437904 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eErw Wen\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "eigdIflgUN_@@K?O@]Ba@B[NkCX_EFk@VaD?GB]@M?K" + }, + "start_location" : + { + "lat" : 53.2905873, + "lng" : -3.6475649 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "91 m", + "value" : 91 + }, + "duration" : + { + "text" : "1 min", + "value" : 66 + }, + "end_location" : + { + "lat" : 53.28986690000001, + "lng" : -3.6424693 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e towards \u003cb\u003eAbergele Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA547\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "yegdIttfUBI@IFs@P{B?G@W@c@" + }, + "start_location" : + { + "lat" : 53.29005, + "lng" : -3.6437904 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "4.9 km", + "value" : 4941 + }, + "duration" : + { + "text" : "1 hour 7 mins", + "value" : 4005 + }, + "end_location" : + { + "lat" : 53.2840368, + "lng" : -3.5709092 + }, + "html_instructions" : "Continue onto \u003cb\u003eAbergele Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA547\u003c/b\u003e", + "polyline" : + { + "points" : "udgdIllfUXmCJy@Hk@Ho@PaAR_ANm@Le@Nc@Vu@BMDO@I@KBK@o@?WAa@Aq@E{DCeAAiB?O?KAsA@mABs@?M@K?W@c@B{@@m@@C?IB{@@m@@M@m@?M@O@]?KBo@@KNoFBm@?MJeD?KBo@?A@MFsBJsDHuBF{BD}@BeA@gB?K?gA?SA[?KAq@?IAyAEqEGoFA{@Ak@?OCwBA{@?{@A{@A}@K_NAm@Am@?OE_EAwBA{@CqBA{@?cAEsD?GC}CEyD?G?W?[AGCeDA_CAi@CoCCiB?cA@WD{ANcD@QJaBBg@BSBe@HoA@M@CDg@Be@h@oG?E@MBSBc@\\iDFg@Fe@J}@^_CF]PgABMLy@BQ^sABC@A@C?A@A@C?C@A?C?C@C?A?C?C?C?EAGT}@FIZa@Vk@d@iAFQJWt@sBL[DK|CeIlAgD@G`@aBDQTiAJw@LmAHeAFsA?{AEkBIaAMyBEw@E{@OgDCi@AWCsCAu@Aq@?K?M?KAQAQ@E?A?A?A@A?A?A?A?A?A?AA??A?A?A?AACDY@K@Q@M?E@MBiAFyANiBTuAHq@Fi@VqC@OHoB?_DFqC@oABqB?_A@Q?eB@I@_A@a@@Q?]B[@MHy@?EHu@HyA@SBwA?YMmBMuBOqCCaA?O?gA?QBwARaE@]DWBMJwBCc@" + }, + "start_location" : + { + "lat" : 53.28986690000001, + "lng" : -3.6424693 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 220 + }, + "duration" : + { + "text" : "3 mins", + "value" : 198 + }, + "end_location" : + { + "lat" : 53.28462270000001, + "lng" : -3.5682523 + }, + "html_instructions" : "At \u003cb\u003eFaenol Interchange\u003c/b\u003e, take the \u003cb\u003e2nd\u003c/b\u003e exit", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "g`fdIdmxTN_A?Q?W?KKu@ACI]?CGO?AEIEOKSKOQSKIc@GDWD[?Q?SEq@CSAM?K?G@I" + }, + "start_location" : + { + "lat" : 53.2840368, + "lng" : -3.5709092 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "19 m", + "value" : 19 + }, + "duration" : + { + "text" : "1 min", + "value" : 18 + }, + "end_location" : + { + "lat" : 53.2844752, + "lng" : -3.5680931 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e towards \u003cb\u003eRhuddlan Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA547\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "{cfdIp|wTZ_@" + }, + "start_location" : + { + "lat" : 53.28462270000001, + "lng" : -3.5682523 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "19 m", + "value" : 19 + }, + "duration" : + { + "text" : "1 min", + "value" : 18 + }, + "end_location" : + { + "lat" : 53.2845461, + "lng" : -3.5678338 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e towards \u003cb\u003eRhuddlan Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA547\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "_cfdIp{wTAMKe@" + }, + "start_location" : + { + "lat" : 53.2844752, + "lng" : -3.5680931 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "6.5 km", + "value" : 6484 + }, + "duration" : + { + "text" : "1 hour 27 mins", + "value" : 5238 + }, + "end_location" : + { + "lat" : 53.2875118, + "lng" : -3.473758 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eRhuddlan Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA547\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "mcfdI|ywT\\U`@Wr@e@d@]`@YHIDGHMHKFMDIJWPi@FQJYFUPm@@CN_@DQBGH]BM@IJk@?ALu@@GH_ANwABKDc@BU@MDk@@GBc@@O@[Bq@BeABu@@c@@KBo@?M@SBa@BYDu@D[BWBa@Fk@@MH}@D_@BUBQDe@Do@BSBa@@[BY@]@Y@a@@_@?U@_@?Y?a@Am@AYAk@?UAg@EyACo@?U?W@[@QBUHi@L{@D_@BS?c@EuBCe@CYC_@OoBS{BEw@K{AOoCM}BGsAEy@MiCIkCKyEIaDEyAMmGC{@GeDC{A?c@@}A?A@mBB_AB}@DqARgFRkEJiCD{@By@@SNsF@iAAmBGeBCa@K{@AYa@kC[aBc@yBMi@AKOu@c@{BIe@e@kCEYMu@Ik@CKKw@Mw@Iq@i@mDm@kEQsA[mBg@uDIk@c@yC[_COkA_@uDQ_CKiBCq@GuAM{DGkDAa@A{@EcBAc@_@yRCoAEaAA{@AcA?}@@e@?W?qAC?AAA?AAA?AAAAAA?AAA?AA??AAA?A?CAE?G?A?A?C?A?A?A@A?A?A@A?A@A?A@A?A@??A@A@??ABAGoAGeBGwAAi@GkC?AMqFGeDAKEyCAYC{@Au@AUEgB?KAo@GoCAWC}@IqEEcBI}EEiBGkCGaCGmCI}DIsDG}CMcFAe@GmDMkFG{BK}ESkJA{@IuDIeDGuCEmBEiBEcCGcCG{CCiAAQ?SAg@AK?MA_@CoAE_BAw@EkB?WCw@Ac@?SEmAA[Am@Ae@?U?UAw@?KAiA?Q?E?KBcA?a@@a@?ODq@B]B_@@MBa@@QBQ@MBQBQAS?KAOA[Gy@" + }, + "start_location" : + { + "lat" : 53.2845461, + "lng" : -3.5678338 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 594 + }, + "duration" : + { + "text" : "9 mins", + "value" : 530 + }, + "end_location" : + { + "lat" : 53.2906758, + "lng" : -3.4675568 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e3rd\u003c/b\u003e exit onto \u003cb\u003eStation Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "}ufdI~meTGEEGEIEKEICKCMAKAM?K?M?MBQ@E@G@GDIDGBEDEAmA@q@G]Ie@EOG]Me@Qe@Se@Q[OWOO?AGGACMIa@_@{@y@]a@[]m@s@OQoA{AGIAAKKAAOOMOMSOUg@kAm@{A" + }, + "start_location" : + { + "lat" : 53.2875118, + "lng" : -3.473758 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 388 + }, + "duration" : + { + "text" : "6 mins", + "value" : 330 + }, + "end_location" : + { + "lat" : 53.290668, + "lng" : -3.4625107 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eCastle St\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "wigdIfgdTd@kA\\aAPk@@EPm@Jk@BYBa@BgA@_@@_@De@Fm@Fy@?SCa@CMGg@AMAG?CAEACAGCEAECEEM]{@[s@Wm@AEEKCEAEAACEII" + }, + "start_location" : + { + "lat" : 53.2906758, + "lng" : -3.4675568 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 169 + }, + "duration" : + { + "text" : "2 mins", + "value" : 139 + }, + "end_location" : + { + "lat" : 53.2900844, + "lng" : -3.4601966 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003ePrinces Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "uigdItgcTDo@?EXiCTiBBI@GBKBIDQJ[JWBKNi@" + }, + "start_location" : + { + "lat" : 53.290668, + "lng" : -3.4625107 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 355 + }, + "duration" : + { + "text" : "5 mins", + "value" : 294 + }, + "end_location" : + { + "lat" : 53.2903945, + "lng" : -3.4550401 + }, + "html_instructions" : "Continue onto \u003cb\u003eDyserth Rd\u003c/b\u003e", + "polyline" : + { + "points" : "_fgdIfybTDS@I@G@I?I@I@I?K?G@S@e@C{AAIIiDA[E_DAy@AwB?}@?O?GAG?C?EAG?EAA?AAGAGAGCKEOWk@GS" + }, + "start_location" : + { + "lat" : 53.2900844, + "lng" : -3.4601966 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 564 + }, + "duration" : + { + "text" : "8 mins", + "value" : 469 + }, + "end_location" : + { + "lat" : 53.2901818, + "lng" : -3.4470049 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eNew Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5151\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A5151\u003c/div\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}ggdI~xaTJYJ[X_AH[FUJe@FYDUBSJk@Fi@DUFk@BW@UBWBk@@o@@W@kAEwEEsBAi@AUAe@Aa@Ek@GmAEe@AGEo@EUEa@E[EYAEAICM]_B" + }, + "start_location" : + { + "lat" : 53.2903945, + "lng" : -3.4550401 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.8 km", + "value" : 2782 + }, + "duration" : + { + "text" : "42 mins", + "value" : 2506 + }, + "end_location" : + { + "lat" : 53.2852689, + "lng" : -3.4070177 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "sfgdIvf`TLG@A@A?A@A?ADSBM@G?G@I?G?G?ICw@EmACa@C{@?AAg@AK?MAe@?q@?W?q@?e@?W?I@g@?S?E@K?K@Y?A@S@KBW?CBQJeABK@K@M@K?KBWF_ADg@@YDs@?M@W?O@_@?K?I@E?E?I?IAK?UAS?K?K?M?K@Y@W@{@DiBDwCBi@?Q@O?MB]B[?MBM@MBY?ALkAD[@KBMFi@@K@KBM@KBMBKHc@BKJg@Ps@DOP_Ah@uCZ_BHg@BOBILy@Lw@Ls@`@yBF]Dc@BW@YD{@Ba@@U@UVaBPqAJw@Jw@L}@Hs@\\oCZkCJy@@KT{ADWBQBG@I@AFUJYBIRg@^{@r@yAN[JSLWBI@EBG@E?C@C?C@C?C?G@G@i@?M@a@@IRaEFy@D{@Be@@UDy@LsDB{@Be@BoAB{@HsDD{@@YBa@B]Dw@?KBS?EHs@Fk@RiCFq@De@@O@C?I@M?M@O?E?A?S@q@?c@?Y?m@?U@]?G?S@g@?E@U?W?G?u@?E?M@m@@_@?[?A@K?M?OAO?SAaACy@?Q?Q?E?{@?G?KAK?K?OAUAW?MAKCa@Ce@Ca@G{@C_@CYAYCa@CYAU@I?]@]Bk@@OB{@@MBm@@S?EAIAE" + }, + "start_location" : + { + "lat" : 53.2901818, + "lng" : -3.4470049 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "11 m", + "value" : 11 + }, + "duration" : + { + "text" : "1 min", + "value" : 9 + }, + "end_location" : + { + "lat" : 53.2851783, + "lng" : -3.406958 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}gfdIzlxSPK" + }, + "start_location" : + { + "lat" : 53.2852689, + "lng" : -3.4070177 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 943 + }, + "duration" : + { + "text" : "16 mins", + "value" : 941 + }, + "end_location" : + { + "lat" : 53.28347540000001, + "lng" : -3.3945762 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "kgfdInlxS?OAMAGAKGc@G[COGg@AGAIC[AI?AIq@Go@Ie@GSCKAAGSEOCKEMEOGSI]EUEQI[ESCIEOCMAEAI?CAIAM?A?K?C?Q@WBOBUJ[BM@GFQBK@ABIDGJSLWJUP[@CDIBG@CLUBGFMJYFU@EH_@@GN{@Jo@L{@Nu@BEL_@?AN_@@EHWBGL_@JYDQFK?AHUBKBIJ]DOBODU@K@E@IB_@Bc@@S?K?E?K?W?SAI?_@?CAO?M?KA_@?C?YA]?A?U?U@W@U@S?EBQ?A@SDQ?EBMHQBMFMN]@ABIHOHODKJQFIZm@" + }, + "start_location" : + { + "lat" : 53.2851783, + "lng" : -3.406958 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 363 + }, + "duration" : + { + "text" : "7 mins", + "value" : 418 + }, + "end_location" : + { + "lat" : 53.2855862, + "lng" : -3.3919492 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "w|edIb_vSEEECEAEAE?C?A@E@E@SH_@VA?OPMJCBMJOFA@O@MAMGEIEQAE?IAM?s@AKCICKKYOa@ACIQGSKc@EWCQGe@AGKk@ACEWI[CIM_@CGCEMWS]EIGI" + }, + "start_location" : + { + "lat" : 53.28347540000001, + "lng" : -3.3945762 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.6 km", + "value" : 1559 + }, + "duration" : + { + "text" : "20 mins", + "value" : 1225 + }, + "end_location" : + { + "lat" : 53.2866773, + "lng" : -3.3693865 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}ifdItnuSHUHOFODSBQBS@[?E@a@A{@@YIw@Iw@I_AKkAIq@?IKy@AGGq@AEEi@?IC[A_@AAAo@?I?_@Aq@Ae@AEA[AW?A?KAIAIAGCECECEEEAECGAGAI?M?M@c@?M@i@?C@e@?U?OCc@AYAg@?ICm@A{@Ai@CU?IEq@?ACi@AMAWAc@?ACc@?U?EAk@Ak@?Y?IAi@AG?c@AWAMCm@?GCk@Cg@CYASAg@A]?]B[Be@De@@M@O?Y@Q?QA_@?IAK?W?]Bu@?A@o@?I?UAe@Em@AKEe@Iq@E[?ECY?U?C?S@SDQ@IJ_@BIBKFSBO@C@KD]@OBYD_@@MDe@@ED]BYBMB]@M@KDa@@K@U@Q?S?IA[CS?GGWEWG]I[Sq@AGMc@Ie@GYIe@EMKg@CMMm@AGC[Ey@CgAAm@Ca@@Q?SAQ@O@K@O" + }, + "start_location" : + { + "lat" : 53.2855862, + "lng" : -3.3919492 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "78 m", + "value" : 78 + }, + "duration" : + { + "text" : "1 min", + "value" : 63 + }, + "end_location" : + { + "lat" : 53.2861562, + "lng" : -3.3685926 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eHiraddug Rd\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "wpfdItaqSr@mAVe@Zk@" + }, + "start_location" : + { + "lat" : 53.2866773, + "lng" : -3.3693865 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.3 km", + "value" : 2317 + }, + "duration" : + { + "text" : "31 mins", + "value" : 1854 + }, + "end_location" : + { + "lat" : 53.2896562, + "lng" : -3.3362809 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "omfdIt|pSIsDAIAsA@Q@UBMDS?G@K?O?QAK?ACKAOIYEQM_@GWK_@Oo@?CGYGUCMQe@Ue@AAWg@KWGQG_@Ku@Ee@AIIm@UkB?EEg@ASAM?a@?K@{@@{@@{@@{@@{@FsD@{@?E@e@@OBUJo@Jg@?CNq@Jk@?KBS@_@AG?KAk@?CAg@?w@@WBe@@SD{@?O@_@?c@Ac@Ai@Ee@Ce@CYEa@Gy@Ea@CWEq@AGIgAG}@E_@OkAMi@?AQq@CGKe@CEc@aBCQ?M?QDKLULM\\_@\\a@\\_@DE@GBG?G?IAGAC?CGIQ[Yg@a@o@OWCGAGAEAEAE?K?]?s@Ay@?EAeAC_@?EIs@E_@EWMw@Ge@Ic@Gg@Gy@ASEe@Eo@Ei@C[M}@Is@Kw@?EIs@Gq@AGW{BQaBK_AGi@AOE]Im@Ge@G]CYCKEm@Cc@AW?k@Am@C[?CEo@Cc@Gk@OqAEQKw@?CKu@G_@CWESOsAAICOCSCS?KAM?M@k@D}B@M?O" + }, + "start_location" : + { + "lat" : 53.2861562, + "lng" : -3.3685926 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.8 km", + "value" : 808 + }, + "duration" : + { + "text" : "11 mins", + "value" : 677 + }, + "end_location" : + { + "lat" : 53.28846919999999, + "lng" : -3.3258999 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "kcgdIvrjSHKd@[\\ODEBC@E?C@E?IAICUCQCUMgAEc@CYCu@?W?EAqA?}@?s@@[?IBo@Dm@BUBMFOZm@FMXi@HOd@aABCTa@BEV[TU\\a@Z_@NYJWFQBU?A?SGy@Eg@OmB]qFMwBGy@Ca@KsAAKCY?IQ_A" + }, + "start_location" : + { + "lat" : 53.2896562, + "lng" : -3.3362809 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.7 km", + "value" : 1719 + }, + "duration" : + { + "text" : "24 mins", + "value" : 1410 + }, + "end_location" : + { + "lat" : 53.2842336, + "lng" : -3.301411 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eA5151\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}{fdIzqhSh@{AXy@d@}ARo@HYDURs@Nm@d@wBLq@P_ATkAN{@N{@BKDYF[Ha@DSJi@\\cBDUHg@Ly@F]Fe@NoAL{@B_@Hw@?AJmADe@HqADmC@k@FeF?IB{@@{@@[B{A@{@@]@]BwBDiCDeBBkADaABq@Fm@Fy@Bc@R}BV_CLoA\\uC@?Hw@P_BR_BVqBV}BBWDg@Fm@Fs@De@@QBg@?CDq@HiAF{@FqAJsA?[?O?U?K?K" + }, + "start_location" : + { + "lat" : 53.28846919999999, + "lng" : -3.3258999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.2 km", + "value" : 1247 + }, + "duration" : + { + "text" : "18 mins", + "value" : 1108 + }, + "end_location" : + { + "lat" : 53.2795541, + "lng" : -3.2846258 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e3rd\u003c/b\u003e exit onto \u003cb\u003eA5026\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "mafdIxxcSCE?CAA?G?I?A?C?A?C@C?C@A@C?ABEBEBC`@}@BMBKF]J_@b@cBPo@?ADQ^uANs@Hc@RgAVqA@GF[\\mB?AJu@Hw@@AHw@Fk@PcCNmBLyAf@gFHy@XmDBWDa@DWHg@H_@^mAHOJYXi@Re@Tg@Jc@Pk@FULi@H_@Rw@Z{AHi@@C@GToADWDWZyALo@BOLy@Hk@RaAHc@Li@Pu@BG@CBMBKFUVaA" + }, + "start_location" : + { + "lat" : 53.2842336, + "lng" : -3.301411 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "4.1 km", + "value" : 4077 + }, + "duration" : + { + "text" : "52 mins", + "value" : 3102 + }, + "end_location" : + { + "lat" : 53.2760026, + "lng" : -3.2292713 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eA5026\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ededI|o`SQYEGYk@Q]c@cAQa@s@sBq@gBg@qAIQCIWm@ISGOO[GQCIWs@Ou@ESG[Ig@e@aCKg@CMQcAAMSwAM}ACc@GiAA]Ak@Ac@?G?{@?kA@}@@_@@OBcAJgBL{AJ{A^aFNuBPsBBiB@iAFaD@iC@{@?Y@c@?MBsD?{C?ICeCG{@Iy@Gy@KsACMAM?KOqAKiAAIIw@?AG]Mm@Ka@Sk@S_@]g@EGqAkBAC{@qAg@cACKCG]gA_@cBOeAAOCWC]?CGkAAkBBoBF}AFeABONaBj@wDj@gDd@qCJi@Lw@X_Bb@yBr@iEf@{CR_BHe@j@sDr@{Df@gCp@_DJc@`AcFpByKLm@@Gf@eCDS^gB@IJm@@I?ATqA@Eb@_C`@}BXkAh@}BBI?Eb@oB^sBJq@Ju@Hs@XmBJw@n@yEX}BNq@`@yB@KBKDQd@wB^iBd@gBj@qBPi@\\mA\\mAXo@R]NW" + }, + "start_location" : + { + "lat" : 53.2795541, + "lng" : -3.2846258 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.8 km", + "value" : 839 + }, + "duration" : + { + "text" : "11 mins", + "value" : 682 + }, + "end_location" : + { + "lat" : 53.272679, + "lng" : -3.2196697 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eWhitford St.\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5026\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A5026\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "_nddI|uuRAm@?K@KBIHYDMFODKPe@`@m@`@k@bAy@LKLKLOJQDGDMBQ@QBs@Bw@?C@{@@{@Hs@@KLkAB[BY@]?[?UGu@Ea@E[E[Ge@Cm@AM?U?g@@w@Fs@Jo@Lk@@INk@Ng@`@eA\\}@Re@FOJYL[BGLUHQPY^e@FGJGTKHCBAHANB^HNF" + }, + "start_location" : + { + "lat" : 53.2760026, + "lng" : -3.2292713 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.8 km", + "value" : 2822 + }, + "duration" : + { + "text" : "34 mins", + "value" : 2063 + }, + "end_location" : + { + "lat" : 53.2759918, + "lng" : -3.183128 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eColeshill St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5026\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A5026\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "gycdI|ysRXuAH[VkA?A^gB@AJg@BKNu@j@oC@QFy@AoAUqDE}@E}@Au@?qB?I?O?a@@y@E}@OqAK[IY]cAYgACMIg@GkACSGkAEm@?KUsDCk@AEEq@?CUkDAMMgBGy@C[CICSS{AES_@yCAQAMAOAMEs@C]C]AUGw@?CCg@AOAWC_@E}@AQGk@?IKm@AIIa@Ke@ACGOEKKYMYEGGKAAACQUGK]i@GMUi@M_@ACEIKc@ACa@cBAEg@wAUy@Wc@ACOWEICGiA}BKSM[Wk@EO_@s@c@w@[k@EKS]Yg@Ua@EIIMGOWm@Wk@uCcHe@iAUm@GMCI?CCGCIAGCKWeAQ_AGYE[E[?ACYC_@C[?QAQ?a@?K?I@S?Q@SBYBU@SDWBQD[PeANgAPcA@EDUF_@Hc@@EF]FWF[DWFWJ_@H]FUFODMFSFOFMBGFML[FCFCBCFGBGFK@GBGBMDOFc@NWHODKLU\\u@Te@\\s@LWz@eBTg@NWTg@NYFODIFQ@I?E@K?K?O?MAKAKCWE]" + }, + "start_location" : + { + "lat" : 53.272679, + "lng" : -3.2196697 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "6.2 km", + "value" : 6197 + }, + "duration" : + { + "text" : "1 hour 24 mins", + "value" : 5066 + }, + "end_location" : + { + "lat" : 53.2392573, + "lng" : -3.114339 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eA548\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}mddIpulRXSFGNKLMDEHGHIPQFGHKHKJMHKHKFKHMLSJQHQHMFOHODMN[Pa@Nq@\\aALc@HWH]`@oBl@qCBMTcAXwAJi@BG?EDKF]Nk@Li@Po@Rm@Ng@Z_AN_@Rg@DIJUPc@DI^w@l@gAdAgBhAkB`C}Dx@yATc@Xk@Vm@Pe@Xs@BIJWLa@Ty@Pm@@Cj@_CbAqEFWDSbAgEZmALe@Nc@Nc@Ri@Ri@Xm@N[BGZi@Ve@Xc@T]TYX]z@}@`C_CXSDGl@k@|A_BhAkAX[X[\\e@PUn@}@d@s@d@u@d@}@d@_AhAiCx@uBdBwEtAwDnCmHf@uAb@iAPg@zBaGhA}CN]bAiCpAeD`AcCBIf@kAXu@nA}CtAqDpHgT|CsI^_AzDaKjAqCfAeC`AuBb@aAt@aBLYTi@x@iBRc@DId@aAbAyBBGN]\\q@P]Ve@`@y@JQZk@Ze@FOr@gAhA{ATSFKZi@r@oAFQNYb@aAb@aA^}@Pc@d@iAx@sBn@kBPg@FU`@uAhAoDZiARu@h@oBXcAb@eBb@cBNe@DOHWLg@BGf@wAN_@FUn@iBNa@N[d@aAnAiCb@{@t@mATc@BEp@sATe@t@}Ab@o@Va@Tg@LYZy@L]Ts@@ET_AXcATu@Rs@Ti@Ta@FETWx@w@p@m@LKJKNMRUXYNUDGVa@Va@Tc@LSj@cAVe@N[J]P_@BE" + }, + "start_location" : + { + "lat" : 53.2759918, + "lng" : -3.183128 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 149 + }, + "duration" : + { + "text" : "2 mins", + "value" : 128 + }, + "end_location" : + { + "lat" : 53.2386199, + "lng" : -3.112405 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e towards \u003cb\u003eChester Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA548\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "kh}cIrg_R?MBKPq@VkADYH[TeANaAHYDGBCFG" + }, + "start_location" : + { + "lat" : 53.2392573, + "lng" : -3.114339 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.7 km", + "value" : 668 + }, + "duration" : + { + "text" : "9 mins", + "value" : 547 + }, + "end_location" : + { + "lat" : 53.23598399999999, + "lng" : -3.1033981 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eChester Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA548\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "kd}cIn{~QXoBTqAx@{DN{@BKPaA@MJi@XeBf@qCBQHa@p@uDF]r@oDF[ZeBd@aCDUZsAFSNa@X}@DMNg@" + }, + "start_location" : + { + "lat" : 53.2386199, + "lng" : -3.112405 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 591 + }, + "duration" : + { + "text" : "8 mins", + "value" : 491 + }, + "end_location" : + { + "lat" : 53.2335395, + "lng" : -3.0958748 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eChester Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA548\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "{s|cIfc}QDYBKDOFMTe@FMXi@nBmDFKT_@Zm@HQRa@Tk@JYL_@J]Ty@H[BMF[He@PeANsAB_@Da@PcDD}AJ_CL{B" + }, + "start_location" : + { + "lat" : 53.23598399999999, + "lng" : -3.1033981 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 169 + }, + "duration" : + { + "text" : "3 mins", + "value" : 150 + }, + "end_location" : + { + "lat" : 53.2334648, + "lng" : -3.0934009 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e towards \u003cb\u003eKelsterton Rd\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "sd|cIdt{QIMCW@g@JuCFwADm@@kA?w@" + }, + "start_location" : + { + "lat" : 53.2335395, + "lng" : -3.0958748 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 558 + }, + "duration" : + { + "text" : "7 mins", + "value" : 431 + }, + "end_location" : + { + "lat" : 53.2310554, + "lng" : -3.0867349 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eKelsterton Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "cd|cIvd{QJEFGHWHc@TeBRwAD[Lw@BILw@Nu@@K@EHc@@?Lq@@CPs@DOLa@@EFOJWPa@DIVe@@AVa@v@uA^m@Rk@D[BUBc@Ac@A_@EYIa@?CAM?A?A?UBIDQ@AHMNGD?HAVC" + }, + "start_location" : + { + "lat" : 53.2334648, + "lng" : -3.0934009 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 96 + }, + "duration" : + { + "text" : "1 min", + "value" : 89 + }, + "end_location" : + { + "lat" : 53.2303678, + "lng" : -3.0870328 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit and stay on \u003cb\u003eKelsterton Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "cu{cI`{yQ?E@G?C?A@CBIHEHAD@BBBBBB@D@F@Jf@ZPLZR" + }, + "start_location" : + { + "lat" : 53.2310554, + "lng" : -3.0867349 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.1 km", + "value" : 2128 + }, + "duration" : + { + "text" : "29 mins", + "value" : 1766 + }, + "end_location" : + { + "lat" : 53.2205475, + "lng" : -3.0606911 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eKelsterton Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5129\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow B5129\u003c/div\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "yp{cI||yQFIDABAD?DDDBFF@JZBFGHIT_@HU@E?A@GBS@E?O?E@cC@{@DaD?Q?CBk@@I?AHoABQLuAJ{@DS?EF]Fa@DUDULa@Rk@b@}@LU|@iBN[PYR_@Ve@Rc@L[DKTm@Xy@DO`@wADKd@aBz@yCdAwDHWHYx@uCl@sBLc@Ry@^uAt@mC\\yAt@{CRy@Pq@BIJ_@b@yALY|@yC^yALm@BORiAf@oCXoADONe@@IDI`AgCPm@J[Z_ABKf@}Ah@yA^iABGJWr@yBJg@h@aBRs@BKXaAJc@^cB^aBBMZyA^uA" + }, + "start_location" : + { + "lat" : 53.2303678, + "lng" : -3.0870328 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "4 m", + "value" : 4 + }, + "duration" : + { + "text" : "1 min", + "value" : 8 + }, + "end_location" : + { + "lat" : 53.2205823, + "lng" : -3.0606809 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eLeighton Ct\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "msycIhxtQEA" + }, + "start_location" : + { + "lat" : 53.2205475, + "lng" : -3.0606911 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 120 + }, + "duration" : + { + "text" : "1 min", + "value" : 88 + }, + "end_location" : + { + "lat" : 53.2213621, + "lng" : -3.0594925 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eQuay Lane\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "ssycIfxtQAG?C?CACACIQ_@k@a@k@CI_@_@AIc@w@" + }, + "start_location" : + { + "lat" : 53.2205823, + "lng" : -3.0606809 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "41 m", + "value" : 41 + }, + "duration" : + { + "text" : "1 min", + "value" : 33 + }, + "end_location" : + { + "lat" : 53.221041, + "lng" : -3.0591995 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003eQuay Lane\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "oxycIxptQVOVQHIDM" + }, + "start_location" : + { + "lat" : 53.2213621, + "lng" : -3.0594925 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 573 + }, + "duration" : + { + "text" : "8 mins", + "value" : 462 + }, + "end_location" : + { + "lat" : 53.2207638, + "lng" : -3.051572 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eDock Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ovycI~ntQG]AM?M?E@CDOZg@t@wAFO@IBE@G?E@I?E?GAI?GAGAICGCGGMi@w@S[c@s@CGCGAGCKAIAIAO?I?_@Bo@FgBLyDRyHBiA@c@BS@IBQ@K`@iB" + }, + "start_location" : + { + "lat" : 53.221041, + "lng" : -3.0591995 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.7 km", + "value" : 1666 + }, + "duration" : + { + "text" : "22 mins", + "value" : 1334 + }, + "end_location" : + { + "lat" : 53.2144854, + "lng" : -3.030967 + }, + "html_instructions" : "Continue onto \u003cb\u003eWales Coast Path\u003c/b\u003e", + "polyline" : + { + "points" : "wtycIh_sQBU@S@I@I`@cBLq@@CHu@JiAJi@H_@VaAb@y@RYDG`@_@VKFCx@Or@QTSZU`@Y\\i@JO`@aAXe@DE`@m@n@oARUBe@@o@LkC@c@D{@PmFZgHXiHHuBPgEHs@PyAJm@LeA@SBMBOL}@PkB?ABy@HwBB{@@SDaBBo@@OHWBIFYBCDENIVWT]Nc@Nw@DYH[Ns@d@{Bn@mCBMLc@Ni@N[JKJCLFDF?J" + }, + "start_location" : + { + "lat" : 53.2207638, + "lng" : -3.051572 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.0 km", + "value" : 1021 + }, + "duration" : + { + "text" : "14 mins", + "value" : 820 + }, + "end_location" : + { + "lat" : 53.20988990000001, + "lng" : -3.0179385 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eWales Coast Path\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "qmxcIp~nQRy@VeAt@{C^_Bt@gDLg@b@_C^}ARw@b@gBBIb@}BXmAp@{CVw@vAqC`@uANwABkALi@P]JMPQLM\\]DEFUBOl@iDH_@Lw@Hc@DQDUj@cD@CHWTo@To@" + }, + "start_location" : + { + "lat" : 53.2144854, + "lng" : -3.030967 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "9 m", + "value" : 9 + }, + "duration" : + { + "text" : "1 min", + "value" : 7 + }, + "end_location" : + { + "lat" : 53.2098102, + "lng" : -3.0179512 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eBridge Villas\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eWales Coast Path\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eWelsh Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "ypwcIbmlQB?J@" + }, + "start_location" : + { + "lat" : 53.20988990000001, + "lng" : -3.0179385 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 234 + }, + "duration" : + { + "text" : "3 mins", + "value" : 196 + }, + "end_location" : + { + "lat" : 53.2113585, + "lng" : -3.0155867 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eWales Coast Path\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eWelsh Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5441\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ipwcIdmlQOa@M]e@_Ae@y@EGwA{BMUKQsAqB" + }, + "start_location" : + { + "lat" : 53.2098102, + "lng" : -3.0179512 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 264 + }, + "duration" : + { + "text" : "4 mins", + "value" : 214 + }, + "end_location" : + { + "lat" : 53.2101129, + "lng" : -3.0122817 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eWales Coast Path\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "_zwcIl~kQJIDCBC@EBIFKFUNs@?ADMLa@Rs@Ps@BELm@Le@@IBGBCHIBEFODSH]@ALi@XoBHe@" + }, + "start_location" : + { + "lat" : 53.2113585, + "lng" : -3.0155867 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 403 + }, + "duration" : + { + "text" : "5 mins", + "value" : 315 + }, + "end_location" : + { + "lat" : 53.2118333, + "lng" : -3.0071426 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "erwcIvikQk@q@Y{@Ok@YiAc@iBOs@A?Qu@G[c@}BAEOu@EWWsAOu@?AGY?_@Au@?C?A?SAOGSQQAAGGCG" + }, + "start_location" : + { + "lat" : 53.2101129, + "lng" : -3.0122817 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 319 + }, + "duration" : + { + "text" : "4 mins", + "value" : 262 + }, + "end_location" : + { + "lat" : 53.21036549999999, + "lng" : -3.003026 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eFoxes Ln\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}|wcIrijQt@yCPq@hAoEpCyK" + }, + "start_location" : + { + "lat" : 53.2118333, + "lng" : -3.0071426 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.8 km", + "value" : 821 + }, + "duration" : + { + "text" : "11 mins", + "value" : 661 + }, + "end_location" : + { + "lat" : 53.2149246, + "lng" : -2.9939432 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eManor Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "yswcI|oiQe@eBQu@Oi@U}@Oi@{AgGMc@g@sBc@mBc@gBU{@YeAI]k@wBg@kBm@yBUy@K]CICIAAISKUAAISKOKIQKGCYO_Ag@IEo@[}@c@a@SIEKG" + }, + "start_location" : + { + "lat" : 53.21036549999999, + "lng" : -3.003026 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "6.0 km", + "value" : 6036 + }, + "duration" : + { + "text" : "1 hour 22 mins", + "value" : 4899 + }, + "end_location" : + { + "lat" : 53.19553759999999, + "lng" : -2.9129415 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eSealand Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA548\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "gpxcIbwgQNiBLcCHiBFeA@Sf@mK`@cIF{ADoAFcA^eIl@aMJkBVsDFkAb@yLXkFD{@@QJcBJuBXuDh@aFJ{@D_@Hy@b@_DZuBTuALo@XwAVyA\\_B^_Bp@sCVeALg@BKJ_@j@yBf@_BTw@p@mB\\eAv@wBrAkDTm@n@yA~AsDDIjAmC|@qBXm@BGhAgCbA}BN]lAmCh@kAxAiDd@gAb@cAn@eBBIh@aB`AeDnAoELg@hAyE`AoEbBwHBGvAqGrA}FLm@Lg@@Ex@kDtAeGF[tAaGbAmER{@XsAJe@DOj@iCrA_Gz@yDBIhAaFHYRu@DOBEFMd@w@bA{A^k@Zc@~@uAXc@FKXc@N[N[L_@DI`@gA`@}@DIBGJOn@iAb@q@^q@N]L[D[DW@Y?Y@w@?o@AeD@m@?}A?i@@kB?iF@uE?wE?}D@kL@uF@wD?wKHoFEoACu@?w@?{B?_B@a@@{E?sC@cA" + }, + "start_location" : + { + "lat" : 53.2149246, + "lng" : -2.9939432 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.8 km", + "value" : 791 + }, + "duration" : + { + "text" : "11 mins", + "value" : 675 + }, + "end_location" : + { + "lat" : 53.1930359, + "lng" : -2.9023741 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eSealand Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA548\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "cwtcIz|wPEc@?iA?G?uA@{F@wC@_BDwARi@Fa@Jq@Je@Pm@^uAr@yCHYDQP}@Hm@Hi@Dm@@O@IB_@Dc@DWH[Nm@Ha@Ts@Tk@t@_BXm@v@_B\\o@LW" + }, + "start_location" : + { + "lat" : 53.19553759999999, + "lng" : -2.9129415 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 242 + }, + "duration" : + { + "text" : "4 mins", + "value" : 223 + }, + "end_location" : + { + "lat" : 53.1930851, + "lng" : -2.8989754 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eS View Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ogtcIxzuPQk@SaAU{AGk@CWAw@@]@MBa@Fg@D[Hm@PaBL}@" + }, + "start_location" : + { + "lat" : 53.1930359, + "lng" : -2.9023741 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "32 m", + "value" : 32 + }, + "duration" : + { + "text" : "1 min", + "value" : 32 + }, + "end_location" : + { + "lat" : 53.1928786, + "lng" : -2.8986153 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "ygtcIreuP`@s@DI@I" + }, + "start_location" : + { + "lat" : 53.1930851, + "lng" : -2.8989754 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 154 + }, + "duration" : + { + "text" : "3 mins", + "value" : 157 + }, + "end_location" : + { + "lat" : 53.19336759999999, + "lng" : -2.8965738 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eTake the stairs\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "oftcIjcuP?M?GAIAICKECEEIGEGCC?AAA?AA?Go@AIGi@COCOAMAK?AAOCa@AE?QCg@AKCIEW" + }, + "start_location" : + { + "lat" : 53.1928786, + "lng" : -2.8986153 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "25 m", + "value" : 25 + }, + "duration" : + { + "text" : "1 min", + "value" : 25 + }, + "end_location" : + { + "lat" : 53.19342589999999, + "lng" : -2.8962092 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "qitcIpvtPGy@CM" + }, + "start_location" : + { + "lat" : 53.19336759999999, + "lng" : -2.8965738 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 648 + }, + "duration" : + { + "text" : "9 mins", + "value" : 524 + }, + "end_location" : + { + "lat" : 53.19338550000001, + "lng" : -2.8873327 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "}itcIhttPEO?EAICQAQAK?CEc@AQ?CC]AYCa@CWGq@AGGy@?AGy@?CGu@?CIu@?AAa@?Q?E?MCSCWKw@Iy@Kw@Iy@Ky@UqBAG?UB[?CF_@FQJ]BKVc@Xg@HOTSBANMLSJQBEBO?ED{@Dm@?M?[@_@?K?G?I?OAYA{@?UAK?I?E" + }, + "start_location" : + { + "lat" : 53.19342589999999, + "lng" : -2.8962092 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 226 + }, + "duration" : + { + "text" : "3 mins", + "value" : 184 + }, + "end_location" : + { + "lat" : 53.1934617, + "lng" : -2.8839559 + }, + "html_instructions" : "Continue onto \u003cb\u003eCanal Side\u003c/b\u003e", + "polyline" : + { + "points" : "uitcIx|rP@I@KAw@AwAAw@?CA{BAiA?G?C?a@AU?{@CS?M?[A{@" + }, + "start_location" : + { + "lat" : 53.19338550000001, + "lng" : -2.8873327 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 145 + }, + "duration" : + { + "text" : "2 mins", + "value" : 124 + }, + "end_location" : + { + "lat" : 53.1935102, + "lng" : -2.8818179 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eCanal Side\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "cjtcIvgrPCE?E?CAKAOCa@@UB_@BCCy@?g@?cBAU?KA{@" + }, + "start_location" : + { + "lat" : 53.1934617, + "lng" : -2.8839559 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.5 km", + "value" : 494 + }, + "duration" : + { + "text" : "7 mins", + "value" : 395 + }, + "end_location" : + { + "lat" : 53.1937035, + "lng" : -2.874461 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003eCanal Side\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "mjtcIjzqP?KAc@?e@?Q?KAa@Am@AwA?QC_B?I?OBEBCCG?IA_AA{@?KAS?{@Au@?K?QA]?C?YA]?C?YAa@Aw@?AC{@Aw@?_@?_@AgA?OCyA?]?k@?OA{@" + }, + "start_location" : + { + "lat" : 53.1935102, + "lng" : -2.8818179 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 889 + }, + "duration" : + { + "text" : "13 mins", + "value" : 758 + }, + "end_location" : + { + "lat" : 53.1926162, + "lng" : -2.8617863 + }, + "html_instructions" : "Continue straight", + "maneuver" : "straight", + "polyline" : + { + "points" : "sktcIjlpPA_A?OAC?g@BC@K?I?KAO?MAY?S?KA]AQ?QAi@AUCe@?ACk@Cc@?IGw@c@iDEw@E{@Eu@ACCuABiA?a@@UNiBN{AJw@Hy@^uDJ]H_@Ha@Jc@JULYHQN_@Pa@DIZuABI?EBWFo@Dq@BO?A@Q@YDgA@IHoB@G?MFoA@YD_@" + }, + "start_location" : + { + "lat" : 53.1937035, + "lng" : -2.874461 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "8 m", + "value" : 8 + }, + "duration" : + { + "text" : "1 min", + "value" : 10 + }, + "end_location" : + { + "lat" : 53.1925444, + "lng" : -2.8617692 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e towards \u003cb\u003eTarvin Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA51\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eTake the stairs\u003c/div\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "{dtcId}mPNC" + }, + "start_location" : + { + "lat" : 53.1926162, + "lng" : -2.8617863 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 879 + }, + "duration" : + { + "text" : "12 mins", + "value" : 729 + }, + "end_location" : + { + "lat" : 53.1944065, + "lng" : -2.8489813 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eTarvin Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA51\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A51\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "kdtcI`}mPAIAIGc@Ec@[yBMs@Ky@AGKo@OmAG_@Gg@AUC]A_@?SEcBG}BEmAA_@A_@AQIkAMoBIkAAUAMCWKwAw@oJC[Gw@Gk@WoDMwAMwAQwBMeBEg@AO" + }, + "start_location" : + { + "lat" : 53.1925444, + "lng" : -2.8617692 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "3.4 km", + "value" : 3441 + }, + "duration" : + { + "text" : "47 mins", + "value" : 2826 + }, + "end_location" : + { + "lat" : 53.2001299, + "lng" : -2.7985665 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eVicars Cross Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA51\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "aptcIbmkP@SC[?EEi@Eo@Ek@CSC[QgCIcAASASAa@Ca@Aa@ASAU@K?K@GB[BWDE@GBE@E@G@I@Q?M?K?MAKIo@M_AUaBIIECGEGCGUEQGQESCQAI?GA[C_@GWEeBE{ACk@Co@K}BE}@G{@AYCa@Co@Cm@GgAI{AMcCI{AWgFE_AGy@WcFCa@McCGeAKyAIcBc@eIEu@Cc@I_BGoAAMGuAE}@IgBEkAAWQwCMsBOoB?EU}CEi@C[YkDGaAYuDG}@Ca@CWKcBUcEAKGaBYoFOwCAYAMIoBKiBSqEOeDY_GIuAMmC_@}GGo@]_FGy@_@eEMgBI_AAQG}@KyA?GWuEc@qGI{@q@eMAKKwCE{A?CGiBCoACy@?q@" + }, + "start_location" : + { + "lat" : 53.1944065, + "lng" : -2.8489813 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 129 + }, + "duration" : + { + "text" : "2 mins", + "value" : 110 + }, + "end_location" : + { + "lat" : 53.2012813, + "lng" : -2.7983436 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eBarrow Ln\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5132\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ysucI`raPY?g@Ag@Ek@KIACAaAU" + }, + "start_location" : + { + "lat" : 53.2001299, + "lng" : -2.7985665 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 281 + }, + "duration" : + { + "text" : "4 mins", + "value" : 233 + }, + "end_location" : + { + "lat" : 53.2004904, + "lng" : -2.7943988 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eLansdowne Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "_{ucIrpaPBg@?M?GD{@B{@@E@]@WDm@@e@D_@Fk@@MDYLw@FWHq@Hi@N_ARo@\\}@" + }, + "start_location" : + { + "lat" : 53.2012813, + "lng" : -2.7983436 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.2 km", + "value" : 1190 + }, + "duration" : + { + "text" : "16 mins", + "value" : 972 + }, + "end_location" : + { + "lat" : 53.2028741, + "lng" : -2.7771056 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eTarvin FP1\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "avucI~w`PMc@MsAASC{@C{@?GGq@OqA@uE@{@?{@?KIg@Io@IgACc@AWC{ACYKw@AIOiBm@cHAEQkBIy@QsBYqCQqCGy@Gu@?Ca@iEQsCG{@SqBGw@AAMu@Mo@Ck@Bg@W}CAMGk@Gy@Iw@SsB" + }, + "start_location" : + { + "lat" : 53.2004904, + "lng" : -2.7943988 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.2 km", + "value" : 1232 + }, + "duration" : + { + "text" : "17 mins", + "value" : 992 + }, + "end_location" : + { + "lat" : 53.2009931, + "lng" : -2.7610838 + }, + "html_instructions" : "Continue onto \u003cb\u003eTarvin FP2\u003c/b\u003e", + "polyline" : + { + "points" : "}dvcI|k}O]mDSsBIy@WiCx@aGd@gD\\aCgA{DQq@o@_Co@aBa@o@CEOYGY?a@B[BMJ]p@cBz@kC`AkCTm@BEx@gC^cAn@}AXk@LWBMNYHg@@IFa@?A@ILg@fAaHJw@d@uC?CBM" + }, + "start_location" : + { + "lat" : 53.2028741, + "lng" : -2.7771056 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.0 km", + "value" : 1982 + }, + "duration" : + { + "text" : "28 mins", + "value" : 1662 + }, + "end_location" : + { + "lat" : 53.2091242, + "lng" : -2.7354436 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eKelsall Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eTarvin Bridge\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA54\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A54\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "eyucIvgzOk@gAUg@_AiBkA_C[o@aAmBEK}@gBq@uAk@mAs@uAcAuBe@gACEM[O]g@uAQe@Ww@[}@k@gBs@{Bo@uBEMm@yBkAkEGWi@wBU}@S}@_A}DEOa@uBGUG_@O{@ScAEUIi@Mw@EWG[OeAQmAWiBOoAUgBAMW{BMsAKiAM_BYwDSqDCa@[mGIiBCa@OyDMmCAMKwC" + }, + "start_location" : + { + "lat" : 53.2009931, + "lng" : -2.7610838 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "3.7 km", + "value" : 3740 + }, + "duration" : + { + "text" : "54 mins", + "value" : 3229 + }, + "end_location" : + { + "lat" : 53.21207279999999, + "lng" : -2.6830938 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eA54\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "_lwcInguOOg@ScDMkBKyAAKMkAe@mDIo@O}@a@uBYoASu@a@{AQk@Oe@Uq@Qi@Ys@?AWk@KYISi@qA[u@c@cAKWo@aBUm@Qe@Sm@AGUo@YeA]uA[}AQ}@M{@CMIo@Is@QeBKeA?GKgBEaAAKAo@Aa@Cs@?s@AoA@U?w@?C@eB?QHyD@eA@eAFeDJmFBeB@sA@m@?{@@s@AkAAy@Cu@AUCu@Ce@Ei@AYEo@KoAGi@AIIq@Iq@O{@CMEWCOOu@Qs@Mk@AI]sAWaAACQs@Sq@[oAI[AAMm@Qq@?AOu@?AMq@Mq@Is@Io@Gw@Gm@Ae@AQCg@?KAo@?EAu@?C?s@@Y@e@@Q@i@@KFcADc@Fs@NiALo@Nu@Pq@Nk@HW`@mAl@_Br@mBLa@Le@Lo@Nq@Jo@NmAHo@B_@Dk@B{@B}@C_A?cBAe@AQ?CA}@GwC?SAu@Ag@?k@?{@?S@sA@U?Q?K@m@@k@?a@Fk@@{AHwCDo@@[Dm@Bm@@K@OHcBB[D_A@SFu@F}@B[HgAHmAH{@Fm@BQBO@QNgAL_A@E@IHg@Fe@Jw@PcABOJu@BORuAJ}@D]" + }, + "start_location" : + { + "lat" : 53.2091242, + "lng" : -2.7354436 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "8.4 km", + "value" : 8374 + }, + "duration" : + { + "text" : "1 hour 51 mins", + "value" : 6664 + }, + "end_location" : + { + "lat" : 53.1972765, + "lng" : -2.5631061 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eMiddlewich Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA54\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A54\u003c/div\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "m~wcIh`kOHOBI@GF]Jk@PcAFa@RiAHg@Lu@F]f@uCTsABIHe@N}@V_BToAFe@DQF_@TwA@Cf@_DZoBBGHm@XcB@KDYBMNgA@GPmANsA@G@K@G@ENmA@I@A?IBMBULeAXwBToBFe@@ILcABMDa@TmBb@kDj@uE@KD]D[Jw@NeAFk@D[BM@MHi@h@eE?E@IDYBS@IVqBBI@OD]D[Jw@BS@A?GDYJy@BSBMBMJ_AHo@@I\\oCDYJw@RcBJy@f@uD?AHu@DY@Md@mDNeAJw@`@uCFi@PeAZeBLo@v@qEP_A@EJm@?A@G~@qFH_@^qBt@wEBOXcBF_@@IBMDUPkA\\{BBUDS@MRoAJu@h@{DBOBU^qCN_AVoBNcA\\eCJy@@M^{CDU\\aDD]D]Hu@VuB@MP_B?CjAmKj@eFBM@Mj@eFXmCJw@D]h@cFD[?ATkBFm@\\kDX_CZcDNmABWBYFq@b@kFHeAVcDHeAFy@Fy@Fy@PuBLaBHkAb@sFBYp@iKL}ARyCNsBVuDLsBPcCDs@Fw@Fq@@YD_@?CXuCBYHu@@MT_CXeCf@qFRsBHq@R{BTyBTeCPyAL}@BSViBDa@BY@Y@Y?AB[?S@]@m@@]?W?U?e@Ak@CkAEgBE{AOkECa@Ag@EoAEs@Aa@?KQaE?ECe@AM?EIwBEqACc@Ag@?MAMCmBC}A?G?K?G?eA?k@?M?O@oB@gB?{@@eB@m@?Y@e@B}@HoEFgC@sAFcC@s@@u@D}@?sA?s@?s@C}@Ag@ASIwC?GC{@AKCq@Cs@Cc@Ea@Gq@Gy@CSAOAWAQAWAO?U?MAK@S@W@M@SDa@Js@BQ@IPwAt@kGV}BP}A@GFc@DSDYJg@Lg@ZiAj@wBXqAXoA@KBKH]DUH_@Ns@Je@VcABMBOD[D[@W@A?M@S@W?{A@mE?iBAaCCyD?O?MA?AwBCmBAg@Cc@AWC]Gm@Ei@KkA]aDi@cFQwAk@cEcB}LAKIa@Ga@_@{CCMGk@C]Ee@Eu@K{A?GKyA" + }, + "start_location" : + { + "lat" : 53.21207279999999, + "lng" : -2.6830938 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "62 m", + "value" : 62 + }, + "duration" : + { + "text" : "1 min", + "value" : 57 + }, + "end_location" : + { + "lat" : 53.197551, + "lng" : -2.5622927 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eChester Ln\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA54\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "_bucIlrsNQeAOm@So@" + }, + "start_location" : + { + "lat" : 53.1972765, + "lng" : -2.5631061 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 932 + }, + "duration" : + { + "text" : "13 mins", + "value" : 800 + }, + "end_location" : + { + "lat" : 53.19484449999999, + "lng" : -2.5516646 + }, + "html_instructions" : "At \u003cb\u003eSalterswall Roundabout\u003c/b\u003e, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eChester Ln\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5074\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow B5074\u003c/div\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "ucucIhmsNCCACAAACACACAC?CAC?C?E?C?C?C?E?C@C?E@ECQAMCGEISOAACCES[QMG[c@KOM[Uy@Ou@ScAGq@Ca@?Q?K?g@De@F]BUDOFQf@gAJYLUb@gAFSh@_Bb@eBp@{CDSDQRcAH]Nm@To@Tg@DIf@aA^q@v@uAFKr@gAr@gADGX_@j@s@jA{A" + }, + "start_location" : + { + "lat" : 53.197551, + "lng" : -2.5622927 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.0 km", + "value" : 983 + }, + "duration" : + { + "text" : "13 mins", + "value" : 800 + }, + "end_location" : + { + "lat" : 53.18958, + "lng" : -2.5399529 + }, + "html_instructions" : "Continue onto \u003cb\u003eDelamere St\u003c/b\u003e", + "polyline" : + { + "points" : "wrtcIzjqNRe@Zi@Vs@Ri@BIVu@Ri@~@eCjAiC`AsB|@wBr@eCFQ@EXeAn@cCF[F[TgAZkBFa@PgAF[Rw@Pk@DQDULa@Rk@Pq@FUj@}AJYDKZ_Az@qBHSFMv@qAHMLUf@u@HQ" + }, + "start_location" : + { + "lat" : 53.19484449999999, + "lng" : -2.5516646 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "29 m", + "value" : 29 + }, + "duration" : + { + "text" : "1 min", + "value" : 28 + }, + "end_location" : + { + "lat" : 53.1895767, + "lng" : -2.5395105 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eDelamere St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5074\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "{qscItaoN?wA" + }, + "start_location" : + { + "lat" : 53.18958, + "lng" : -2.5399529 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.9 km", + "value" : 1858 + }, + "duration" : + { + "text" : "24 mins", + "value" : 1429 + }, + "end_location" : + { + "lat" : 53.1904399, + "lng" : -2.515713 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e2nd\u003c/b\u003e exit onto \u003cb\u003eHigh St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA54\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eGo through 1 roundabout\u003c/div\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "{qscI|~nNAICKAQAQ?O?_@BSBODKHIJC[YIKEIEMEMCEKa@]mAKYUw@Qq@Mg@Q_AQ}@QiAKc@Qw@]qA[qAi@mBMc@K[ISAEM[IQSg@Uo@Wo@Ws@M]CG]cAWo@EIM]M_@Om@I]E[Ks@AGGa@Ec@AeBBUB}@By@B[@[Dw@@MFw@Fy@Do@JiAFo@Hw@D_@L{AFaABk@Ba@FaBDiABm@?S@gAAs@Cw@AoAI}BGeASaFGoAEk@E}@G{AC_@?U?K@SBYNg@N_@PSPSNQFQH[D]Bi@@g@ASFm@BSDQDMDGDGFGHCLGNGp@YJEPIn@[RK`@Y`@]" + }, + "start_location" : + { + "lat" : 53.1895767, + "lng" : -2.5395105 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "48 m", + "value" : 48 + }, + "duration" : + { + "text" : "1 min", + "value" : 60 + }, + "end_location" : + { + "lat" : 53.1906584, + "lng" : -2.5150996 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e towards \u003cb\u003eStation Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "gwscIdjjNOg@Qs@I]" + }, + "start_location" : + { + "lat" : 53.1904399, + "lng" : -2.515713 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.3 km", + "value" : 1290 + }, + "duration" : + { + "text" : "19 mins", + "value" : 1114 + }, + "end_location" : + { + "lat" : 53.19096010000001, + "lng" : -2.4963201 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eStation Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "sxscIjfjN^kAbAcE@GX_BL_B?u@AI?q@AI?m@E_AIuBAIEaACk@Cy@E{@MiCCg@C{@AQGcBAMCy@MkDGyAYeFGy@KaB_@wEYiDI_AKiAEi@CWOaCE_AAYAYCg@@c@BkAH_DDqADi@@OFiCB{@@i@Dm@H_@DK" + }, + "start_location" : + { + "lat" : 53.1906584, + "lng" : -2.5150996 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "20 m", + "value" : 20 + }, + "duration" : + { + "text" : "1 min", + "value" : 22 + }, + "end_location" : + { + "lat" : 53.1908801, + "lng" : -2.4960617 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eStation Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5355\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "ozscI~pfN@ODSFO" + }, + "start_location" : + { + "lat" : 53.19096010000001, + "lng" : -2.4963201 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "9.1 km", + "value" : 9121 + }, + "duration" : + { + "text" : "2 hours 6 mins", + "value" : 7571 + }, + "end_location" : + { + "lat" : 53.20177349999999, + "lng" : -2.3691555 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eMiddlewich Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA54\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "_zscIjofNAE?C?A?C?C?A?C?C?C?A@C?C@E?W?MBW?M@I?SBWB]Da@Ly@?AJw@Ho@JaABSB[Dc@B]B]Ba@@Q@_@@W@g@@a@?c@?i@?i@?iCAoEAwD?kB?}@?gA?g@?}@?cA@Q?E?K@Y@c@@W@UBg@Ba@@S@KBSDUB[DWDWBQBU@Q?K?M?S?OASCYCWCSE]Ig@IWKc@Ma@Mc@GOK]KUa@}@Ue@Q_@IS]w@]u@a@_AK[Ww@Mg@YiAYkASeAOy@Mu@CSOs@COQaAMw@ScAKc@ACKa@EOAECGEIEKKOIKIIWU_@[cAy@GGECUSGEsAmAu@q@GGII]YACw@y@WYKKGIQUACIMQUSc@IUKYG[Ig@w@gFK{@Ig@WkBMy@Oy@[kBOaAIs@K}@Go@Es@AQAUCk@Es@Ag@?]Ak@?E?e@?q@@_@B{@?I?Y@W@S@g@@_@@m@?O@Y?M?c@?I?c@?eAAwAAk@?]?m@?E?I?q@?GBaA?KBaABw@@S@c@Dk@Dq@NgBJkADc@BUBQBODY@IDSNq@Py@Nm@Le@^_B|@uDLi@b@_B\\iA^gAVu@dAoC\\cAH[BIBG@Q@?@A@??A@A?A?A@A?A?A?A?AA??A?AA??A?AA?AAHIDGDIBEBGDKBI@IBMHq@P}ALiBTyA`@yB@_@?GAC?CACAGIWKSKUISIWGOESEQCUEWAUAUAM?M@GB[@W@M@SB[BSNaAReAPw@Ls@Nk@\\oAX{@?S@EDQFQRq@J_@F]F_@HoA@aADSFkD?e@?W?{@?m@?U?SEi@?CCYEa@C[EWEYGUCOOk@I_@Sm@Wo@Oe@?A]cAK[K]K_@cAiDQs@EQMe@U{@Qs@Ia@EUAIUyAS}AOyAOqAEs@Eo@Ew@EmAASEe@Ei@E]CUEWOy@QiAIm@ESKy@E]E]CKEYAKAKCKCIEOEWAAAA?ACGCIAE?GAI?M@E?A@EEs@CSEMOg@Ws@CMIk@AIG[Ga@M}@E[QoAKq@Is@?AOkAGe@CQGg@CYCMO{AYyCWgCIw@Gg@Gy@QcBAMC_@MoAIu@CYCYE_@KcAMiAE]Gg@CUEa@Ky@Go@OuAIw@KcASiBEe@Gw@Gq@?IC_@Em@?EAM?OCW?GC_@?SAACq@Cq@AYAa@CgA?[Aa@?A?S?Y?G?E?I?C?I?S@e@?c@@U?S@W?S@U@M?S@I@S?I@QBi@?S?U?S?WA[AWA[EgACi@Cm@A]C{@AOCk@C_AMwCASKoCKcBM_CAe@Aa@?W?]?S@Q@U@S@SJkA@MLyAFq@LqAN}AFy@@I@W@U@O?Q?[?[?OAiACcCCqBCaAAy@EwAGkB?OGyACaAEkAG}CCkAAg@IgBKeBQwCKsAE{@IuAIiAUsDAMEs@QqCUiDMcBGy@Ec@AOGk@WaBS{AYqBG[ACIi@CIIe@Mm@GCGGCCCEEGGIQa@EQGUESCQE_@COE[C_@AQAY?Q@Q@c@BMBIBG@EDKDGJaABq@Aa@A[CYIk@C]A]EUE_@COGe@MoAAEGy@AKG}@SqCEk@GgAGgBGqBA_@Ew@G}AEw@A[IoAA]A]A]A_@?E?o@@gABq@@g@FcABmA?O@q@@]?{@?{@?gAAq@?o@AeAAiA?MA[GmBAUE}A?IIkC?O?KCsA?_AA_@?aA@q@Aa@A_@C]Cs@Gy@Ak@" + }, + "start_location" : + { + "lat" : 53.1908801, + "lng" : -2.4960617 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "8.5 km", + "value" : 8461 + }, + "duration" : + { + "text" : "1 hour 56 mins", + "value" : 6950 + }, + "end_location" : + { + "lat" : 53.1709676, + "lng" : -2.2602492 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eChester Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA54\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "a~ucIfvmMj@q@VWJMHGr@u@\\_@RSPQb@c@\\WFGb@_@XU`@]BCHI\\[HIBGHQDIDO@KBW@U@g@CkBAyAA]GaE@o@?]@U@_@Fs@PoAPeA@IHi@JcABS@WBa@@_@@[?Y@aA?_C@_B@Y@WD{AF{BBgA@u@?aA?qAAQA[AQAUIy@OeAEg@AKAK?O?K?a@?c@?I?I?I?U@Q?S@Y@g@B_E@k@B_ADu@DaAD{@Bc@BWB_@B_@B_@J{@PwAJw@DU?AHc@Ji@r@aCPk@JYRm@Ts@Xa@B?@??A@?@??A@??A@??A@??A@A?A@A?A?A@A?A?A?A?A?A?A?A?E?C?AAA?A?AACDU@ODOFMBKv@sBL_@Nc@DMBK@MLa@@C`@qAFYNm@Le@Pk@TaAF[DSPeAb@wCZyAr@aCJ]v@}BX}@To@FQV_ANk@PcAPeAJw@DWF_@Ho@NmANyAX{CLwAVeC\\aDR_BNyALkAHgA@WDc@B[Bm@Fk@Di@H{@Hq@V}AVuAPw@Nu@@ANq@He@DONu@Py@^eBJe@BMH_@Nq@FYPcAPaARgAPaABKNw@Jg@Ng@BIHWVm@Ri@L[f@oARi@Nc@J_@FSFUF[Jk@Js@L{@Fm@@YBe@Bm@Dq@Bo@Du@Fy@Fy@F_ADm@JiBVoFNeCBUNuB^qEHgADm@NmBDaAFy@NiCFy@Fs@Fk@@KPsAHs@@WBSBk@@{@?eB@q@@g@Ds@F{@Fm@BWPoBHeADaADmADo@B_@JaAFa@\\sBNs@PeAVmBJeA`@sDHu@Fe@Nu@FWBGPo@JYVs@j@yAz@wBbAcCl@uA`@{@tA{CJSf@iADIRa@HSFOzBoEfAiCP]BGFM`AwBLYHQPY?A@CBEBEVg@BIN[BEL]BILa@@EDM@GH]@EF]@IBILu@BOJe@He@TeADUH]?APu@BK`@kBNg@Le@j@oBZeAV}@To@\\{@@Cn@gBRk@JWLa@f@mAZy@FQb@{@P_@NWPYZe@NUPUTYTWPUHK^q@f@{@HODIZi@`@m@^m@JMDIBE`@k@d@q@FGDIHIVYTUFIPOHIFCJIn@[r@]j@YdAm@h@[x@g@t@e@VQHITQPOFGRU@APSBEFGBENUP[P_@N]Vo@@GN_@Rs@ZiAVcA?ABK@E@CTeAFYNs@BKF]@?@K@EBITyANy@Hk@F]L}@BS@MBM@MHk@D[PeBD_@?ABSBOLqARmBDg@@Q?ABS@Q@CPcC@MDm@NwBDaADo@@g@HeBDqA?M@g@@S?c@@i@?aA?u@Ak@?KAa@Cu@Eu@AOEi@?AAMIcAGs@G}@Ea@?A?EGu@Co@A[Aa@Ac@?g@@q@@i@Bw@@]FoAB]BYLqAD[DWDY?ENq@?CPs@To@FUBIFOFON_@Tm@`@aAZy@JWHU@GH]Nq@Jk@Ho@" + }, + "start_location" : + { + "lat" : 53.20177349999999, + "lng" : -2.3691555 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.1 km", + "value" : 2090 + }, + "duration" : + { + "text" : "30 mins", + "value" : 1785 + }, + "end_location" : + { + "lat" : 53.1648285, + "lng" : -2.2313808 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eHolmes Chapel Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA54\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "q}ocIpmxL?U?a@?YAACCAAACEIAIAC?EAE?E?I@K@I@C@E@C@C@CBE@AH_@Dc@BS?I?[Bk@@UHg@@MDe@\\gA^mAR]DIXi@Xi@d@{@h@eAXq@FMb@eAb@oAX_AZcA\\kABOR}@P_AJk@TwAJi@\\{BL}@He@nAoIJo@bBmLZmBBQPaA@IPiABO@ILgANkALiBNaC@MPyDBm@HuB?OJcCNqE?A@]BYFeBLgCJeB@MLcCJsBB_@HeBBa@Fy@BWNiB@UNqALmAVqB@Kn@uFVcC" + }, + "start_location" : + { + "lat" : 53.1709676, + "lng" : -2.2602492 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 96 + }, + "duration" : + { + "text" : "1 min", + "value" : 86 + }, + "end_location" : + { + "lat" : 53.1646592, + "lng" : -2.2299683 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e towards \u003cb\u003eHolmes Chapel Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA34\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "ewncIbyrL?K?M@IFcADYFoABYDm@" + }, + "start_location" : + { + "lat" : 53.1648285, + "lng" : -2.2313808 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "6 m", + "value" : 6 + }, + "duration" : + { + "text" : "1 min", + "value" : 5 + }, + "end_location" : + { + "lat" : 53.1646064, + "lng" : -2.2299876 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e towards \u003cb\u003eHolmes Chapel Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA34\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "cvncIhprLHB" + }, + "start_location" : + { + "lat" : 53.1646592, + "lng" : -2.2299683 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.5 km", + "value" : 532 + }, + "duration" : + { + "text" : "7 mins", + "value" : 421 + }, + "end_location" : + { + "lat" : 53.16470150000001, + "lng" : -2.2221078 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eHolmes Chapel Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA34\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A34\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "yuncIlprL@QB[@q@@k@?_B?{@W}DIuA?[@O?SBi@Bg@FeA@e@@I@_@FqABe@@c@Bu@@a@?a@@k@CoA?CAm@EuAEw@C_@CWCYCKES" + }, + "start_location" : + { + "lat" : 53.1646064, + "lng" : -2.2299876 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.5 km", + "value" : 536 + }, + "duration" : + { + "text" : "8 mins", + "value" : 455 + }, + "end_location" : + { + "lat" : 53.1632025, + "lng" : -2.2146824 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e2nd\u003c/b\u003e exit onto \u003cb\u003eWest St\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "kvncId_qLBC?C@A@A@C?A@C?A@C?E@M?EAC?A?CAC?AAC?CAAAACG?A\\qDJgBZ_FF{@De@J{@N}@b@sBn@yBV}@HYDQNu@DYDYDa@@IDq@Dg@@W?m@BGFE" + }, + "start_location" : + { + "lat" : 53.16470150000001, + "lng" : -2.2221078 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "60 m", + "value" : 60 + }, + "duration" : + { + "text" : "1 min", + "value" : 51 + }, + "end_location" : + { + "lat" : 53.1635502, + "lng" : -2.2139968 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eLittle St\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "_mncIvpoLSm@GSa@w@GM" + }, + "start_location" : + { + "lat" : 53.1632025, + "lng" : -2.2146824 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 130 + }, + "duration" : + { + "text" : "2 mins", + "value" : 111 + }, + "end_location" : + { + "lat" : 53.1629551, + "lng" : -2.2123399 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eBridge St\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "eoncInloLb@_ARi@?APo@@ALq@Z{B" + }, + "start_location" : + { + "lat" : 53.1635502, + "lng" : -2.2139968 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 113 + }, + "duration" : + { + "text" : "2 mins", + "value" : 99 + }, + "end_location" : + { + "lat" : 53.16281919999999, + "lng" : -2.210671 + }, + "html_instructions" : "Continue onto \u003cb\u003eHigh St\u003c/b\u003e", + "polyline" : + { + "points" : "okncIbboLH{@@O@M@c@@iADiAB{@" + }, + "start_location" : + { + "lat" : 53.1629551, + "lng" : -2.2123399 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 299 + }, + "duration" : + { + "text" : "4 mins", + "value" : 255 + }, + "end_location" : + { + "lat" : 53.1627435, + "lng" : -2.2062364 + }, + "html_instructions" : "Continue onto \u003cb\u003eLawton St\u003c/b\u003e", + "polyline" : + { + "points" : "sjncItwnLJ}BBi@B{@D{@BaA@a@DkA?S@W?O?W@Y?WAW?]Aq@?G?KAU?YCYASAKCSGe@" + }, + "start_location" : + { + "lat" : 53.16281919999999, + "lng" : -2.210671 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.8 km", + "value" : 1843 + }, + "duration" : + { + "text" : "27 mins", + "value" : 1635 + }, + "end_location" : + { + "lat" : 53.1535968, + "lng" : -2.1843461 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003ePark Ln\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA527\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A527\u003c/div\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "cjncI~{mLNYFKFOFWBODO@EH_@BKLw@VuALe@DQFQFMFODGJMb@g@^]n@q@PWNYL]H]P{Ab@sDD_@VkCFm@b@wEViCLiBHy@XuDJw@Js@PcADWFYHUFQHOFMPWDGzAuArA{ALQRYFILQT_@RYXc@FG`@m@FKT_@R]JQDKTe@Re@r@aBVy@HW^aAb@wAJ_@ZeA^oA^wANi@HYr@qCpA_FJ_@`@_BRq@J_@`@_BTu@`@qANc@@CVw@DGHEh@U^G" + }, + "start_location" : + { + "lat" : 53.1627435, + "lng" : -2.2062364 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.5 km", + "value" : 1519 + }, + "duration" : + { + "text" : "25 mins", + "value" : 1481 + }, + "end_location" : + { + "lat" : 53.1533441, + "lng" : -2.1633853 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eReade's Ln\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "_qlcIdsiLJoCJ_CD{@LiB?KTsFNsBDk@BMXoB@?Ns@BENi@Tq@Rq@Ro@X}@T}@D_@@K@o@@MAk@CwALcB@KBY@S@M@W?{@?U?K@o@?KBi@@E?IBY@UFy@Dc@@UF{@?I@I?g@?I?KCc@AOIi@AIGe@K{@Co@?O?KBm@?A?KDe@@G@KBQHWBINg@Rq@Rq@La@Fi@@IFqABoB?q@@UGc@CQCUEOMm@Wu@Yi@Yi@e@gAa@uAi@aBSq@GQSq@Sq@EQCKQy@Ou@Mo@Qy@" + }, + "start_location" : + { + "lat" : 53.1535968, + "lng" : -2.1843461 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 329 + }, + "duration" : + { + "text" : "5 mins", + "value" : 288 + }, + "end_location" : + { + "lat" : 53.1515709, + "lng" : -2.1599868 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eCherry Ln\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "kolcIdpeLAcB?]@c@Bc@Ns@^i@LSh@s@\\c@\\a@DGTKBAFAPAHCNCNQBCVc@@EPk@FSL[DMHe@" + }, + "start_location" : + { + "lat" : 53.1533441, + "lng" : -2.1633853 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 585 + }, + "duration" : + { + "text" : "10 mins", + "value" : 579 + }, + "end_location" : + { + "lat" : 53.1494636, + "lng" : -2.152339 + }, + "html_instructions" : "Continue onto \u003cb\u003eOverton Rd\u003c/b\u003e", + "polyline" : + { + "points" : "idlcI|zdLd@uABKPq@d@gB@ELo@H_@BUJw@Jy@@IDo@Fy@Hy@Fy@F{@Fy@Fy@HmAFw@FiAFk@Fy@Hy@Dg@BQJgAHWDKXi@FKRWBCZUb@I" + }, + "start_location" : + { + "lat" : 53.1515709, + "lng" : -2.1599868 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 906 + }, + "duration" : + { + "text" : "15 mins", + "value" : 896 + }, + "end_location" : + { + "lat" : 53.1437156, + "lng" : -2.1430329 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eBiddulph Common Rd\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "cwkcIbkcLBQJM@A^[^[RQJK\\_@\\]JKPU\\a@RWFK\\c@Zc@\\c@DGTYx@gAFGTY\\c@Za@TYDI^w@`@wABILi@Ns@Pu@H]No@Nu@?ATk@DKl@_A^c@TWFIPUHQFMLa@Nc@BKTm@To@Tk@@AVm@Vk@n@yATk@N]FORq@" + }, + "start_location" : + { + "lat" : 53.1494636, + "lng" : -2.152339 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.2 km", + "value" : 1230 + }, + "duration" : + { + "text" : "18 mins", + "value" : 1093 + }, + "end_location" : + { + "lat" : 53.13872629999999, + "lng" : -2.1270117 + }, + "html_instructions" : "Continue onto \u003cb\u003eNewtown Rd\u003c/b\u003e", + "polyline" : + { + "points" : "gsjcI|paLX_ATo@Rq@Rq@Ro@Ps@\\kBNu@l@aDVcBd@eDx@wDF]TkAP{ABUTsAPy@@EPi@Tq@Ne@BITo@To@FUDQ?M@G?QK[AGI[?QBU`@kAXm@Zu@R]NOXYFKFI@E@A@Ib@yBnAmHNw@Lq@?CNu@Lu@Nw@Lu@Nu@Lu@\\mBH]BOBEBGDK" + }, + "start_location" : + { + "lat" : 53.1437156, + "lng" : -2.1430329 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "63 m", + "value" : 63 + }, + "duration" : + { + "text" : "1 min", + "value" : 60 + }, + "end_location" : + { + "lat" : 53.13818870000001, + "lng" : -2.1267314 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003eNewtown Rd\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "aticIxl~KHGFGr@]HCFCFAJ?" + }, + "start_location" : + { + "lat" : 53.13872629999999, + "lng" : -2.1270117 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "63 m", + "value" : 63 + }, + "duration" : + { + "text" : "1 min", + "value" : 58 + }, + "end_location" : + { + "lat" : 53.1376269, + "lng" : -2.1268647 + }, + "html_instructions" : "Continue onto \u003cb\u003eTop Rd\u003c/b\u003e", + "polyline" : + { + "points" : "upicI`k~KF?H@n@NPBZB" + }, + "start_location" : + { + "lat" : 53.13818870000001, + "lng" : -2.1267314 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.6 km", + "value" : 2592 + }, + "duration" : + { + "text" : "33 mins", + "value" : 1959 + }, + "end_location" : + { + "lat" : 53.1265108, + "lng" : -2.0961831 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "emicIzk~KHm@DMDIDGDEZa@BCBIDGBM?M?M?OC]Ey@G{@AIEo@MaBAQKy@Kw@E_@C_@AW?Q@M@QDWBKBEn@}ARa@^s@d@}@PO\\[^[n@k@NMRS^a@FIJMNWP_@V_ARs@BIFg@BI@S@UGeAE{@Ey@Ac@?K?G@C?EDIN[NYHQP]DMf@cBNi@BG^iBLm@@GPu@FYHWPm@Xo@JSLSJONW@CNYFKR_@N]H[TeAb@qATo@Pg@BEXk@hA_CR_@DIRc@BGTo@BEJ]BKJc@p@{CtB_Gp@qAjAuBd@y@NUv@qANULYf@sA`@cApCaFXg@NYHOjA_CXi@Te@Tm@N_@FMZw@Vw@\\sA\\mAh@_BTo@FSNWj@_AXa@JQBEDKFS@K@Q@_@Cc@Gq@Ge@Ky@E[C]QsBIcAIoACYCUEUG[" + }, + "start_location" : + { + "lat" : 53.1376269, + "lng" : -2.1268647 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.7 km", + "value" : 689 + }, + "duration" : + { + "text" : "11 mins", + "value" : 670 + }, + "end_location" : + { + "lat" : 53.1268656, + "lng" : -2.0863379 + }, + "html_instructions" : "Continue onto \u003cb\u003eReacliffe Rd\u003c/b\u003e", + "polyline" : + { + "points" : "uggcIblxKGSISAESq@M_@EOAEEOCMCQAK?O?O@}@By@BwB@{@B{@Fy@@YD_@@IJm@J]FSRo@DMBQBW@C@O@e@@e@AU?_@?[AU?e@?{@Ak@CkAASCg@Ac@IqAEy@OwAAMMw@UcBGa@E]?EAM?O@Q?I" + }, + "start_location" : + { + "lat" : 53.1265108, + "lng" : -2.0961831 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.5 km", + "value" : 1497 + }, + "duration" : + { + "text" : "19 mins", + "value" : 1160 + }, + "end_location" : + { + "lat" : 53.1173999, + "lng" : -2.0717204 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eCamrose Hill\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}igcIrnvKFIH?HDLPFFBBPVDFDBJJFBB?L@FAFAFC@?JELI@ABCJILMDEZ_@t@aADGfCmDXg@Vi@Vo@HOb@kARe@DKDMRm@j@_BRo@Ri@v@wBbAwCj@_BL_@Ts@Rm@?AFQL_@HUBKDIFQPi@?CJUFUHUFMBKJYDI@E@CPe@BIHQBGBIBG@ALUDIDIR]DIDINSDINWBEDGNUJQ@AR[Zc@`@k@NUDGDG\\c@?ATWDGLMHKFEHKJODGDGFOJSP_@DIbBkDf@cAHQLWHS^u@DO^eAHSn@wAZq@Xi@JSPU" + }, + "start_location" : + { + "lat" : 53.1268656, + "lng" : -2.0863379 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 247 + }, + "duration" : + { + "text" : "3 mins", + "value" : 201 + }, + "end_location" : + { + "lat" : 53.11856110000001, + "lng" : -2.0687094 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eRudyard Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5331\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "wnecIfssKAG?E?E@GBAWm@IQCEWg@u@_BQ[KSO]EKACGUEW?AESGc@UcBOcA" + }, + "start_location" : + { + "lat" : 53.1173999, + "lng" : -2.0717204 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.3 km", + "value" : 2262 + }, + "duration" : + { + "text" : "31 mins", + "value" : 1847 + }, + "end_location" : + { + "lat" : 53.1067973, + "lng" : -2.0416033 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "_vecIl`sKTS@C@?BGRU@CNWHO@EBQ@E@G@OHKPUHMNWDEBENa@Tm@l@{A@Gj@uA@ERg@BEh@_BRi@To@@CRk@To@Pg@BIRq@?Cd@aBRq@Rq@?AvAaFF[Ps@Nu@`@iBbAqEPu@r@}C`@gB`@iBNs@r@}CPu@Ns@r@}CPu@p@}CPs@bAqE`@iBPs@BKLg@`B{FRq@J[lA}Cl@}ATm@l@{AbAkCTm@FM`BuCXg@t@oAr@qAnAwBZg@Xi@BETa@Xg@Xi@Xg@Zi@LUHSHOTg@Eu@@EXi@\\w@T{A" + }, + "start_location" : + { + "lat" : 53.11856110000001, + "lng" : -2.0687094 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 276 + }, + "duration" : + { + "text" : "4 mins", + "value" : 256 + }, + "end_location" : + { + "lat" : 53.10628329999999, + "lng" : -2.0377243 + }, + "html_instructions" : "Continue onto \u003cb\u003eWestview Cl\u003c/b\u003e", + "polyline" : + { + "points" : "olccI~vmKBKBMF[BYBe@@e@By@@k@?O@w@@aDD{@B{@Bo@JcA@Mf@a@" + }, + "start_location" : + { + "lat" : 53.1067973, + "lng" : -2.0416033 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 203 + }, + "duration" : + { + "text" : "3 mins", + "value" : 183 + }, + "end_location" : + { + "lat" : 53.105577, + "lng" : -2.0350097 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eNorth St\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "giccIv~lKCW?q@Da@JqA^cBP]Rc@Lg@RaADWNw@" + }, + "start_location" : + { + "lat" : 53.10628329999999, + "lng" : -2.0377243 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 196 + }, + "duration" : + { + "text" : "3 mins", + "value" : 177 + }, + "end_location" : + { + "lat" : 53.1063139, + "lng" : -2.0323698 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eWestwood Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "{dccIxmlKI[c@iEm@yCc@iAQeA" + }, + "start_location" : + { + "lat" : 53.105577, + "lng" : -2.0350097 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 235 + }, + "duration" : + { + "text" : "4 mins", + "value" : 210 + }, + "end_location" : + { + "lat" : 53.1065305, + "lng" : -2.0289168 + }, + "html_instructions" : "Continue onto \u003cb\u003eWest St\u003c/b\u003e", + "polyline" : + { + "points" : "miccIh}kKKm@Gg@AOE]E_@C[EuACyBCiBAQAk@@c@?KDm@B[" + }, + "start_location" : + { + "lat" : 53.1063139, + "lng" : -2.0323698 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "63 m", + "value" : 63 + }, + "duration" : + { + "text" : "1 min", + "value" : 49 + }, + "end_location" : + { + "lat" : 53.10660590000001, + "lng" : -2.0280945 + }, + "html_instructions" : "Continue onto \u003cb\u003eChurch St\u003c/b\u003e", + "polyline" : + { + "points" : "yjccIvgkK@IBS@O@K@C?Q@O?MAG?AAICICGEEKK" + }, + "start_location" : + { + "lat" : 53.1065305, + "lng" : -2.0289168 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 191 + }, + "duration" : + { + "text" : "3 mins", + "value" : 197 + }, + "end_location" : + { + "lat" : 53.1066679, + "lng" : -2.0252418 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eChurch St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA523\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A523\u003c/div\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "ikccIpbkK@o@?WAYAOAa@?g@?mA?u@AYA[AGAWAc@AK@I?y@@o@" + }, + "start_location" : + { + "lat" : 53.10660590000001, + "lng" : -2.0280945 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "51 m", + "value" : 51 + }, + "duration" : + { + "text" : "1 min", + "value" : 42 + }, + "end_location" : + { + "lat" : 53.1062091, + "lng" : -2.0253122 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eMarket Pl\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "ukccIvpjKnAJH?@@" + }, + "start_location" : + { + "lat" : 53.1066679, + "lng" : -2.0252418 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "40 m", + "value" : 40 + }, + "duration" : + { + "text" : "1 min", + "value" : 29 + }, + "end_location" : + { + "lat" : 53.10584840000001, + "lng" : -2.0253593 + }, + "html_instructions" : "Continue straight to stay on \u003cb\u003eMarket Pl\u003c/b\u003e", + "maneuver" : "straight", + "polyline" : + { + "points" : "yhccIdqjKl@HX?" + }, + "start_location" : + { + "lat" : 53.1062091, + "lng" : -2.0253122 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 291 + }, + "duration" : + { + "text" : "4 mins", + "value" : 232 + }, + "end_location" : + { + "lat" : 53.1055838, + "lng" : -2.0210994 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eDerby St\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "qfccInqjKDs@@G@]@U@o@@i@B{ADcC?wAAO?cBAmABaA@K?KBUDGNW" + }, + "start_location" : + { + "lat" : 53.10584840000001, + "lng" : -2.0253593 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "16.0 km", + "value" : 16043 + }, + "duration" : + { + "text" : "3 hours 43 mins", + "value" : 13390 + }, + "end_location" : + { + "lat" : 53.0357125, + "lng" : -1.8279044 + }, + "html_instructions" : "Continue onto \u003cb\u003eAshbourne Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA523\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A523\u003c/div\u003e", + "polyline" : + { + "points" : "{dccIzviKJUl@}AJq@@CHe@Lq@DWF[Ha@Fq@Fq@Be@?a@DyB?q@?g@CcAAwB?aA?i@@Y@w@HgBH}ALwA?AF_ADg@Fe@F]@CBKRw@Tk@N[NYh@_A\\e@FKJMh@q@nAaBr@y@DEb@g@l@s@jB}BzAgB`@g@\\a@JMXYXWTMPK^Qb@Sl@YRMJGLGDE`@ULGJGRMLGRMDCDCFCdCwA`@UBAFELGRMLIDCLILIDE^YPSJMFINSLUHQHSDQDW@EBOBS@MBY@M?Q@S?G?U?I?I?MAQAMACCWG]I[Ma@Oa@Sa@GKGKq@cA}@qAOUs@kAa@aA[w@Ws@IWK]EQAGCMCOAI?G?C?S?Y@I@K?EBQFQDM@CN[FMN]DI@AP[@EDGb@u@DI@CFKPY^y@l@sAbAyBp@{AVg@rAwC\\w@Ts@FWFSDQ^wAPs@ZgABKTy@Lc@@E@GBGFY@C@EDQXeA@I@EDM\\qA@EBOJ]^wAZeA@ELa@Tk@BCN[@CHM@APUDI`@m@LSFG@EZa@@CXc@PWDE@CBCfAaBl@y@l@_ABC?Ad@s@DIDIDIVc@R_@HQTc@b@}@Vi@N[NYHQBGRc@LYHQTe@^y@`@}@HQJSn@{An@uA`@cAL_@FQ@C@CHSDMLa@Vw@Ng@HYBKNi@HWHSFSJ]T{@f@kBVaABKDMT}@`AaEVeA`@eBJc@J]ZmALk@\\oAX}@BIFQHUJWLUHSLW^q@j@gAfAkBTa@t@sAb@s@FIv@qAFKXe@Zg@b@s@l@aAXe@d@u@l@eAVc@BEXe@b@y@d@aA@EFMLUBEJUHMJQLWBCNWFIFKHKDIDEZ_@p@y@d@k@RY@A?AR[BGFKNY@C?CDIBEJY@ADMDQFMBIJc@@E@ABMJa@@?Ps@BOLc@?CBKJ]@E?CBKJc@Jc@FSBMd@uBFUFY@CFUNu@H]@Cd@sBH_@@ENs@b@oB\\gBZeBN}@P{@z@yEr@{Db@_Ct@aEBMBKP}@l@_DJc@BQJc@BQp@eDR_AZyATiANs@TeAl@uC\\cB`BiHDSh@{B`@aBXkAPw@V_AT{@Ts@Ne@\\eAbAeCfBqEjCyGrBgFVq@Zy@Vy@DKJ]J]FSZmANm@VkARaAPy@\\iBf@mCDSNu@@IJk@Nu@@In@aDj@wCnAoGVuA\\mBFc@\\_CTiBXqBHi@BUFa@Hi@Hc@XwAPq@`@gBb@cBPu@Ru@J_@\\kAFUBMDK|AwFNi@BI`@yAb@wAZgAFQJ_@Vw@b@}Aj@gBXw@FMXy@LYpA{CJYVm@Ri@p@iBZ{@Ne@DKDKLc@HUJY@EHQFQFOJWBCVg@LUDIDE@CXe@Ve@v@mAHOHMDIJOBEJOHODGR]p@gAT_@R[Va@BEDIHM@ABE^m@r@kAFMJOR]Vi@HQJUHQBEHQPa@Pc@FQL[To@r@sBl@kBpAsDDMVs@b@qABIL]JQLUJSPS\\c@`@e@j@s@\\c@NSHMNWXe@LSv@sAT]PWd@i@VWb@e@FGvC}CRUhAiA~AeBHK@CPQv@_A@CV]V_@Ra@BC?AR_@BIJUJWBGNc@Pm@J_@F[H[RqAHu@P_B@O?CTyBFm@Fa@B[Js@@IHm@Ju@XqBPoAJ_AHm@Hy@Fm@Do@@GBg@?KDy@DmABwA?IDwBB}ADuADmBLoD@I@a@BWB[?IBUB_@Dg@@KD_@LkAJ_ABU@GHo@Fi@Fe@BKD]@ELo@DY@IDQTqA|@wEx@oEPiAHi@F]D_@Ho@Fq@Da@Di@B_@Bk@HcBBY?G@YDeA@WHoDJkDH}BHaADa@DYFa@Ji@DU@EDWH]FYFQDOHWX{@Pc@FSL[DMLYNWb@u@T_@\\i@P]R_@DKDMBMDMFWDWFa@B]BSF}@JeBHy@@MB[JiANcBJsAFeADm@Bo@Bm@Bk@?O@K?O@]?g@?o@A[Am@AG?G?MEgBAo@A[?E?Q?c@AeB?sB?wA?Q?k@@k@@YBg@Fm@@SBSD]BWF[BQBKF[FWR}@b@}ANs@Ha@RqBB]Fa@Jw@BM@MD[NeAJ_AH_AFw@BSHc@Vm@Tm@H[DODWDa@?GDe@@SFy@@MDk@?CBk@?S?Y?QAUEs@Ee@QmBCYMcBKgA?IAO@c@Bc@DWDWFWHYFQJWHQDIDGHOJM@Aj@i@JKBCFIHMHM@ALUHQDIDKHWFQFUXgALe@@ALe@DKHULa@HODMPYFIDITWBCBCVUFGd@a@dAaAPOHKJKFGBElAqAFITWFI`@c@v@}@\\a@f@m@JKDGd@g@TY@AZ_@@Az@_Ad@k@LOPWHOHQBEFMJWXs@l@{ARg@BETm@Vm@Pe@Xs@b@gAZu@Pe@L]FQRk@Vq@To@FSL[FQj@_BJWRk@BEDIFMFKDGJMPQROJI`@Wl@c@TOXQb@[b@[XSBALKPO@ALMLM?ALMHMFK?AHMNa@Le@Fe@BWBk@NuF@K?OD}A@m@?KDcB@O@e@PsHFyBBgA@g@@MB{@?CBg@?SHaB@O?MBq@D_A\\cI@E?I?I@QFoA?I@I@QBm@F{A@I?I@SBg@@KHiB@Q@S?K@GD{@J}BHcB@IBc@FgAP}CDm@D}@" + }, + "start_location" : + { + "lat" : 53.1055838, + "lng" : -2.0210994 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "6.6 km", + "value" : 6611 + }, + "duration" : + { + "text" : "1 hour 24 mins", + "value" : 5067 + }, + "end_location" : + { + "lat" : 53.0103703, + "lng" : -1.7488434 + }, + "html_instructions" : "Continue onto \u003cb\u003eA52\u003c/b\u003e", + "polyline" : + { + "points" : "epubIj_dJJyBDeADy@DeA@O?M\\yHHgB@MD{@HeBJeC@]LsCFgA?OB]J{BJ_CBk@JaCNcDBg@@S?OHeBD}@FgA?MH{A@OLyBF}AX_HZyGLsCBw@@MBo@Bc@@]PaDDa@B[J{@Fc@Hi@Li@Pq@Pe@@GFOHWBGLa@BEZ{@^cADOHWDMVw@Ni@BILa@?ADOFWH[FYRgATgB@?BQTuALu@BELk@Pm@HUNa@DI@CFMDIDITc@Xa@JONOPSJKDEPQb@c@VWZ]HKXa@Tc@R_@Xq@Tk@Z{@p@eBVq@DKVm@BGVm@JW\\{@BGTk@DGHUHSLWBGBGPe@BGt@iBDKHSRe@HUJWZu@Tk@FMJYRc@FOBGP_@@CVi@Xk@Xg@h@{@T_@T]h@{@\\m@b@eA\\{@@EDKNa@V{@Jc@Nu@PiA@AN_AD]DSN{@Jg@H_@T}@ZgARo@@ABIDO\\y@^_AL[b@cARg@`@}@Xk@NWVc@\\g@Zc@d@g@`A{@`BcArA{@ZQn@a@fAs@d@YDCPKjEoCd@Yt@g@x@k@FGFE@ADCXW\\[nAkAn@q@V[\\c@p@y@@CFIBEV_@Va@^m@`@o@P]P[Zq@r@_BFMDKjAqCZ{@Rk@Zw@@Ef@cBZiAHYRq@HWJ_@Pi@@CTi@Vo@\\k@FMn@iAXk@JWRe@DOL_@DOPq@BONw@BOFg@Fc@BS@ILiAFm@Fg@BWBa@@KBe@Bm@@m@?i@A{AA}AAi@?A?O?U@S@YBc@F_@Fa@Hg@La@La@L]HSVe@Xe@Ze@P[JMr@gARWLS^g@NQJKTQFGb@UTILCZEVCXAVGJCFCBA\\ONILKJKHKX[Xi@BEP_@L_@R_ABGD[Jy@JaBDaAHkBDwAFqA?OHgBHaC@]HgBBo@JaD@S@cAAk@?i@C]AQEc@Iu@M_AKm@e@cDW}Ae@gDOy@Gg@cAwGOaAc@qCAIWkBMaAAMCQAICUC[AMAIAUEi@ASEy@Aa@A]?g@EQC}@" + }, + "start_location" : + { + "lat" : 53.0357125, + "lng" : -1.8279044 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 945 + }, + "duration" : + { + "text" : "13 mins", + "value" : 797 + }, + "end_location" : + { + "lat" : 53.01558170000001, + "lng" : -1.7379415 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eMayfield Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "yqpbIfqtICAA??AA??AAAAAACKE_@k@EQYs@U_AAEKq@CMIc@G_@[cBKi@AGm@cDQw@CQEKEQOc@Qg@MWKUIQEICEEGmCcFWe@Se@q@wAi@gACCIQ_@s@cAeB{@{Aq@oAWk@O]a@eA[{@K]Qi@Mc@GQI]G_@EYE_@" + }, + "start_location" : + { + "lat" : 53.0103703, + "lng" : -1.7488434 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 328 + }, + "duration" : + { + "text" : "4 mins", + "value" : 263 + }, + "end_location" : + { + "lat" : 53.0169599, + "lng" : -1.7336188 + }, + "html_instructions" : "Continue onto \u003cb\u003eChurch St\u003c/b\u003e", + "polyline" : + { + "points" : "krqbIbmrI]oB[aBQ_AG]EOOy@Os@o@qCa@_BSu@]kAK]I_@" + }, + "start_location" : + { + "lat" : 53.01558170000001, + "lng" : -1.7379415 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "90 m", + "value" : 90 + }, + "duration" : + { + "text" : "1 min", + "value" : 70 + }, + "end_location" : + { + "lat" : 53.0165608, + "lng" : -1.7324527 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eDig St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA515\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "_{qbIbrqIVgAv@aD" + }, + "start_location" : + { + "lat" : 53.0169599, + "lng" : -1.7336188 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "16 m", + "value" : 16 + }, + "duration" : + { + "text" : "1 min", + "value" : 19 + }, + "end_location" : + { + "lat" : 53.0166812, + "lng" : -1.7323355 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "oxqbIxjqIWU" + }, + "start_location" : + { + "lat" : 53.0165608, + "lng" : -1.7324527 + }, + "travel_mode" : "WALKING" + } + ], + "traffic_speed_entry" : [], + "via_waypoint" : [] + } + ], + "overview_polyline" : + { + "points" : "uerdI`ude@tOqu@|HwcAg@ixAlG}o@vEiNwI_PhF{v@jFoh@y`@bV~HivLf@ojAfl@kpDn@ouAcd@inGegBedoB_s@ghl@hyAs~mBjeAmtEt{@ijAzx@dXpp@x`@dObaArErD`B}ChJvJbBkACS|ScaAvIyw@p@gj@pYqe@zl@_nAx[w{A~d@crBbMud@~IglBxAgpBnj@a`Grn@mpEhMgvDdt@_mFzh@urBeEk|@bEy{@dSeWvIfFvf@wbC|`@qzAvSio@fBwaBmBqqAbAsgDjOubEiXq|AgGqpAvUwMxReVpSuAzLcX{Nch@iR}b@rAcZJU|G_q@aBsf@tOoTOmxAaLie@rAmb@_Huq@iOmhCsz@{yDk^mjB}Fgd@_Voq@yq@{_BcHah@i[k[km@}x@uLme@iRa~AeAqsAqUcwB}Rkv@xE{u@xHsiA_Rg[Rsq@gGgt@mEmv@_MshAmImiB}Yw`BdNouAb@}RvNwIuLo_Aiz@mnCcKksAfEui@|Tk`CoFihAvCcmBsO_i@`Gwg@~Ew}AgAelBbHmhBrCa_DdPosAfDk{A}AcWdLiXnB{hAu@coBwRyvA_CqgAqIecEuI_n@kCmy@p@yuBvZixCiBmvAtIkd@fB}KwGsGaEwl@y@st@gCyuBwOa`Cx[s}DfOwkApMas@{God@CghA_Kap@nSmmBlQwbAvTuiAlJgc@{Fys@}Vo|@eCcy@niAgqCp~C_iHld@s`BtPirAvL{[jq@qzBj@q_AvQo_@rJynAze@mfBcKoaAsA{y@cGoQuCgh@pHiuAz`@_uAhm@_zBtYut@Ro~BdNmvAqAcmBsB_`AbC_zAm^qhGgP_{A~Aum@sJekA_Fcx@dJi\\`CyXeSob@oVijAs^imCmJocBhLqaB`k@ieE|b@sdD`SseDsA{fB|K}p@aIutA_Amx@ho@ieBoQyiApAky@xLm`@wDqiBhC{iAya@y}@eDyvAjLub@nEqm@sMiwAmQg}BqPijE[wn@dLo^nB}|Api@quCnT_uBld@u~Apl@wdAnRo~@lG{jAvYezArRedEtNadAdk@irBtJcrAkDah@tG_\\r_@sgA|_@gzAxT__ArXw{@|^y{@jKim@uA{_Al_@wo@pXgl@y@{UdSwp@vq@mfCe@_mAvQstAdi@_l@kKoZjRee@x[as@jl@syAxlA_mEvi@utB~g@eaAfUcb@lFix@lTg{AjTqiC`d@mt@rQsXbEun@hKq~BtU{yA|c@odAd}@cnAvWufAlNi[eHgfAq_@sjAaGif@" + }, + "summary" : "Holyhead, UK - Dublin, IE", + "warnings" : + [ + "Walking directions are in beta. Use caution – This route may be missing pavements or pedestrian paths." + ], + "waypoint_order" : [] + }, + { + "bounds" : + { + "northeast" : + { + "lat" : 53.3662876, + "lng" : -1.7323355 + }, + "southwest" : + { + "lat" : 52.9612712, + "lng" : -6.2550534 + } + }, + "copyrights" : "Map data ©2025 Google", + "legs" : + [ + { + "distance" : + { + "text" : "347 km", + "value" : 346805 + }, + "duration" : + { + "text" : "2 days 8 hours", + "value" : 203301 + }, + "end_address" : "Ashbourne DE6, UK", + "end_location" : + { + "lat" : 53.0166812, + "lng" : -1.7323355 + }, + "start_address" : "Tara St, Dublin, Ireland", + "start_location" : + { + "lat" : 53.3463498, + "lng" : -6.2550534 + }, + "steps" : + [ + { + "distance" : + { + "text" : "2.1 km", + "value" : 2061 + }, + "duration" : + { + "text" : "29 mins", + "value" : 1717 + }, + "end_location" : + { + "lat" : 53.3419384, + "lng" : -6.226715 + }, + "html_instructions" : "Walk \u003cb\u003esouth\u003c/b\u003e on \u003cb\u003eTara St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eR138\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eR802\u003c/b\u003e towards \u003cb\u003eTownsend St\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow R802\u003c/div\u003e", + "polyline" : + { + "points" : "uerdI`ude@jA@?MD?L@?FB@L?|@@N@J?Fk@L}@@E@U@WLiAJgALgABI\\cDA??CBWB?Dc@Ba@@SJc@B]BQFk@Jy@L_A@IFg@Hi@Ju@BSHe@@EDOEC@EFc@@?@OHq@D]DKBUDy@Da@Jo@@MBM@e@DIHm@Fm@He@FYAKAc@AILG?IFg@f@}DFq@He@CAFe@@@Hw@Ds@@o@Dg@F]@S?Y@WBYBUDS@k@@IB_@?CB[B_@@S@]B[B[@SA?Dq@@?@E@]HiADa@Ds@Bc@@KD{@Be@@IFa@?QBWDc@Du@Ds@FaAFw@Dq@?MFy@?MFa@@M@e@JuA@Y@GFy@Dk@Dk@@Q@IJcB@K@c@D]@[BYDm@@YJcBD[HqA@[Dk@@]FgA@KAABi@@@FB?IAc@Ag@EiAAo@EcAAm@Cc@B_@IuBEq@EoAC]Co@Ck@IoAEQCU?IAS" + }, + "start_location" : + { + "lat" : 53.3463498, + "lng" : -6.2550534 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 109 + }, + "duration" : + { + "text" : "1 min", + "value" : 87 + }, + "end_location" : + { + "lat" : 53.3422875, + "lng" : -6.225350499999999 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "cjqdI~c_e@COGc@DM_@kCAICGCEKOI[" + }, + "start_location" : + { + "lat" : 53.3419384, + "lng" : -6.226715 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 446 + }, + "duration" : + { + "text" : "6 mins", + "value" : 360 + }, + "end_location" : + { + "lat" : 53.3422001, + "lng" : -6.2186894 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "ilqdIl{~d@BI?Q@k@E{CCq@Ae@AeAEqBAsA?SDmAHuDFkC?_@BqAAeE@KDC" + }, + "start_location" : + { + "lat" : 53.3422875, + "lng" : -6.225350499999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 107 + }, + "duration" : + { + "text" : "2 mins", + "value" : 90 + }, + "end_location" : + { + "lat" : 53.34146670000001, + "lng" : -6.217802000000001 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e towards \u003cb\u003ePine Rd\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "wkqdIxq}d@\\Qb@WHGDCFIZy@N[LWAC" + }, + "start_location" : + { + "lat" : 53.3422001, + "lng" : -6.2186894 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 245 + }, + "duration" : + { + "text" : "3 mins", + "value" : 200 + }, + "end_location" : + { + "lat" : 53.34028259999999, + "lng" : -6.2149025 + }, + "html_instructions" : "Continue onto \u003cb\u003ePine Rd\u003c/b\u003e", + "polyline" : + { + "points" : "egqdIfl}d@DGLO`AmBLODKFON_@H_@D]BYD[@[?IDY@M@S@SDQHi@?EFKHMT[FIBE" + }, + "start_location" : + { + "lat" : 53.34146670000001, + "lng" : -6.217802000000001 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "17 m", + "value" : 17 + }, + "duration" : + { + "text" : "1 min", + "value" : 16 + }, + "end_location" : + { + "lat" : 53.34041029999999, + "lng" : -6.214657 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eSean Moore Road\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eR131\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "w_qdIbz|d@KWMW" + }, + "start_location" : + { + "lat" : 53.34028259999999, + "lng" : -6.2149025 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 128 + }, + "duration" : + { + "text" : "2 mins", + "value" : 120 + }, + "end_location" : + { + "lat" : 53.3409567, + "lng" : -6.2131468 + }, + "html_instructions" : "Take the zebra crossing", + "polyline" : + { + "points" : "q`qdIrx|d@FK?A?A?ACE?A?A?A@?HOYk@Wi@KUIOUg@GOGMEWE[CI" + }, + "start_location" : + { + "lat" : 53.34041029999999, + "lng" : -6.214657 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 245 + }, + "duration" : + { + "text" : "3 mins", + "value" : 195 + }, + "end_location" : + { + "lat" : 53.3396771, + "lng" : -6.2104497 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eS Bank Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "_dqdIdo|d@@KAK?EAGAIACBGDOFQBKDUC[vB}Dl@kAb@y@HQXi@" + }, + "start_location" : + { + "lat" : 53.3409567, + "lng" : -6.2131468 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 580 + }, + "duration" : + { + "text" : "8 mins", + "value" : 466 + }, + "end_location" : + { + "lat" : 53.3411811, + "lng" : -6.203636299999999 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "_|pdIh~{d@]{@CGUa@]y@cA_Co@eAe@i@OIOKKQCAy@WCA]OAAEACCACCCACACEOAOAI?K?MJkADe@@G?KJoAR_C@YFm@@KFo@HkAR{BBWDaA?U" + }, + "start_location" : + { + "lat" : 53.3396771, + "lng" : -6.2104497 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.8 km", + "value" : 785 + }, + "duration" : + { + "text" : "11 mins", + "value" : 637 + }, + "end_location" : + { + "lat" : 53.3390668, + "lng" : -6.1925399 + }, + "html_instructions" : "Continue onto \u003cb\u003ePigeon House Rd\u003c/b\u003e", + "polyline" : + { + "points" : "keqdIvszd@xAkQBS@Wh@{GND@SOETuCDo@DY@GTyCDk@DUHaANaBLuANoAFk@F]JYPc@Xc@N_@FQDO@GDUJ}@NiADMDc@Do@" + }, + "start_location" : + { + "lat" : 53.3411811, + "lng" : -6.203636299999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 406 + }, + "duration" : + { + "text" : "5 mins", + "value" : 315 + }, + "end_location" : + { + "lat" : 53.3421225, + "lng" : -6.1936712 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "expdIjnxd@ECMME?E?C@EDEFELK^GVI`@GXM|@G`@GLEHGDQA_@?s@AgAE_@@[FKDMDSAqCo@QGM?IFEH" + }, + "start_location" : + { + "lat" : 53.3390668, + "lng" : -6.1925399 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 357 + }, + "duration" : + { + "text" : "3 mins", + "value" : 171 + }, + "end_location" : + { + "lat" : 53.3449245, + "lng" : -6.1961828 + }, + "html_instructions" : "Take the ferry", + "maneuver" : "ferry", + "polyline" : + { + "points" : "gkqdIluxd@yFxEkCvBiD~C?B" + }, + "start_location" : + { + "lat" : 53.3421225, + "lng" : -6.1936712 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "110 km", + "value" : 109735 + }, + "duration" : + { + "text" : "2 hours 24 mins", + "value" : 8650 + }, + "end_location" : + { + "lat" : 53.31061529999999, + "lng" : -4.6285134 + }, + "html_instructions" : "Take the \u003cb\u003eHolyhead, UK - Dublin, IE\u003c/b\u003e ferry\u003cdiv style=\"font-size:0.9em\"\u003eToll road\u003c/div\u003e\u003cdiv style=\"font-size:0.9em\"\u003eEntering the United Kingdom\u003c/div\u003e", + "maneuver" : "ferry", + "polyline" : + { + "points" : "w|qdIbeyd@v@Eb@S^a@Xg@FQLm@FkA~Awa@^eJAkhFp@klB@yBBoFFyQ@yB@sD@wB^i`A?sC@}ADsAL{AXkBjf@auCrCaThAgLd@{JKkMs@_n@eBcj@sLaaB_O}cBiCe\\oAaQWaJO{IIoyDaLuvP_\\sb\\a\\ub\\_\\ub\\a\\wb\\wHwwHgBggBmBso@iEwp@Cm@AI?K?K?O?KvH{|JtWyk\\|Xsk\\|Y_e\\?uA?wBo@oaC@_k@Hc_@P_b@b@iaAb@eWh@oMd@sJpCiYtDgVvByIfDqMjc@m|AzIyZtAsDfCgFxBgDrEqGx[qf@fDkDlC_Ct@g@xDaCxBeAzBm@fA?j@DfCr@`HlDH@|_@nTfZxPfLtGpCzA\\Rx@j@`@b@JRHT^dA^xAHl@Dp@HvAFnD?XZlZAfADvAJp@FR?@Pn@bAlAxGlI|A|D" + }, + "start_location" : + { + "lat" : 53.3449245, + "lng" : -6.1961828 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 173 + }, + "duration" : + { + "text" : "2 mins", + "value" : 138 + }, + "end_location" : + { + "lat" : 53.3105883, + "lng" : -4.627684299999999 + }, + "html_instructions" : "Continue straight", + "maneuver" : "straight", + "polyline" : + { + "points" : "kfkdId_g[x@`ANJB?@@BADCBAHIBE@EDQ?C@[?C?EACCKACKYg@u@s@w@" + }, + "start_location" : + { + "lat" : 53.31061529999999, + "lng" : -4.6285134 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "93 m", + "value" : 93 + }, + "duration" : + { + "text" : "1 min", + "value" : 78 + }, + "end_location" : + { + "lat" : 53.3098585, + "lng" : -4.628318399999999 + }, + "html_instructions" : "Sharp \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-sharp-right", + "polyline" : + { + "points" : "efkdI~yf[XHJF^Rb@^f@x@" + }, + "start_location" : + { + "lat" : 53.3105883, + "lng" : -4.627684299999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "51 m", + "value" : 51 + }, + "duration" : + { + "text" : "1 min", + "value" : 52 + }, + "end_location" : + { + "lat" : 53.3096453, + "lng" : -4.6277006 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "sakdI~}f[FGV[Do@Bg@" + }, + "start_location" : + { + "lat" : 53.3098585, + "lng" : -4.628318399999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 282 + }, + "duration" : + { + "text" : "4 mins", + "value" : 232 + }, + "end_location" : + { + "lat" : 53.3075878, + "lng" : -4.6299754 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "i`kdIbzf[TEF?D@FDHDp@p@HJTTx@~@\\^xA`B^`@JLHJDF@@FLBJFRNt@" + }, + "start_location" : + { + "lat" : 53.3096453, + "lng" : -4.6277006 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.1 km", + "value" : 1058 + }, + "duration" : + { + "text" : "15 mins", + "value" : 904 + }, + "end_location" : + { + "lat" : 53.3030863, + "lng" : -4.6170239 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e2nd\u003c/b\u003e exit onto \u003cb\u003eLlanfawr Rd\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eGo through 1 roundabout\u003c/div\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "msjdIjhg[BC?A@?@A@?B?D?@?@?@@@@@??@BBNIBG@E@E?KBUBu@@O@K@O?AA??A?AA??A?A?AA??A?A?A@??A?A?A?A@??A@??A@??A@?AMAQ?Q?G?IA_@@Q?A?O@UBSD[H[FWJ[JYt@cCFSPq@DOH[@G@GD[XgCJy@BYBUD]DYH_@Ty@Ju@fAoDHWDMDQ@]@Q?UBiA?SAUEu@A[@K?I@C?EFc@BO?A@KDKDOBGZq@Tc@Zg@BGJUDK@CDGFMDGFIDIHMFOd@{@R_@LQLUTYNQJOHQNc@DMPo@@ADKFSFO@CN[FINWNUFKHK" + }, + "start_location" : + { + "lat" : 53.3075878, + "lng" : -4.6299754 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.0 km", + "value" : 999 + }, + "duration" : + { + "text" : "14 mins", + "value" : 813 + }, + "end_location" : + { + "lat" : 53.3019344, + "lng" : -4.602475 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003ePenrhos Beach Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "iwidIjwd[Gu@AGCg@G}@M}AE_@ASAS?O?M?S?M@_@@YBe@De@?KFi@?EH}@Dg@@W@UFw@B]?CFg@BKDO?CHa@Lk@DYBMJg@H[DWPu@Nu@F[Z}AFc@D_@DW@W@a@?c@@c@?sA?C?[?_@?]?W?cA?iB?iA?[?kAAO?[?e@A]As@?]?]@M?K@a@FwBBiABm@@{@DyABo@Bg@P_@" + }, + "start_location" : + { + "lat" : 53.3030863, + "lng" : -4.6170239 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "44 m", + "value" : 44 + }, + "duration" : + { + "text" : "1 min", + "value" : 36 + }, + "end_location" : + { + "lat" : 53.3015466, + "lng" : -4.6026313 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003ePenrhos Beach Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "apidIn|a[jA\\" + }, + "start_location" : + { + "lat" : 53.3019344, + "lng" : -4.602475 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "6.9 km", + "value" : 6901 + }, + "duration" : + { + "text" : "1 hour 35 mins", + "value" : 5680 + }, + "end_location" : + { + "lat" : 53.2748159, + "lng" : -4.515505 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eLondon Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "umidIl}a[LeAHm@DYFg@Jk@TeAPu@H_@La@FORq@BE^cAb@{@FQ\\m@LSPYFMT]Zc@V[h@o@@Al@s@jAmAvB{B|@_A\\_@FGTU|@}@|@}@\\]nCsCvAwA~A_B~B_CrCyCbAcA`@i@Zc@FIh@}@\\q@Ve@@CfAyCT{@^aBJe@z@yDn@aD^gBHa@f@cCLs@h@gCXyAF[TcA\\_BBKNu@`@iBPy@n@{CNu@Ns@Jc@TgA\\}AhBwI\\_B^iBp@_DR_Al@uCXqAVmALm@BG@EBKNs@TcAvA_H@EBKJc@n@{CR}@b@qBF_@~AsHdA}ERy@Nq@l@qCHc@d@}BPw@h@gCb@uBBIJg@f@cC`@mB\\yAXsAf@aCXsAJk@@GLm@ZuAZyAJc@Jc@Ja@\\aBb@sBFYBKBMPw@l@qCFUJg@RaATgAH]VmA^gBXsAFWDOReAFUF[FYF_@FUNs@H[FWNi@V{@L_@\\y@Xk@LQNSLOJYBEDODOAM?K?I@G@G@KFMDIFEBCDABAD?D?B@FBDDf@UV[^g@DUF]CKAM?G?I?G@G@MDOBE@CBC@CBCFCBk@BMD[By@@_@@[@M@M@OFy@@Q@AHu@BORuABGBOJe@@GBGPs@La@JYBGDMx@sBBGRe@DOBEJYHUJ[Pq@DSFg@BWBc@F_ABs@@Q@QFuBD_ABi@FqA@UBcA@YB_@Bu@HcCLyCDm@Hk@RcA?CXw@Pe@HSp@eBXu@F[Jk@Ha@@Ib@cCd@eDFk@@QDe@B[@i@?{@GyBA_@AYWoGAYEqAE{@AS?MC_@K_CEqAA[G{AA[AEAWIwBA[AQQkEEo@OqDE{@Cy@E{@GyAMsCEgAGgB?_@AcC@m@?i@?Q?K?C@k@B{@?[@_@@i@@c@BeB@W@s@Be@@OBS@O@KBKBO@MDSBOBILm@Rg@DKP_@LWPUJMHIHILKBCRQHIFEDI@EBE@IBG?GBKAW" + }, + "start_location" : + { + "lat" : 53.3015466, + "lng" : -4.6026313 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "23.6 km", + "value" : 23599 + }, + "duration" : + { + "text" : "5 hours 22 mins", + "value" : 19326 + }, + "end_location" : + { + "lat" : 53.22046030000001, + "lng" : -4.191386899999999 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eHolyhead Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "sfddIz|pZWaACAAAA?AAAACAEEGGAECECEAGAGAM?QYiAQ[GIS]EIO[GMCU?QAIAIAICICGCGEIKGCAA?AAA?C?MUCGI]A]Ba@@a@Dc@Fi@Fe@@CLk@Ng@J]Ne@BKH]Ja@PcABMDUDa@BM?CB]Fk@BW@QDg@@QDg@BSBg@L_BDe@Fg@\\cEFw@Dg@Hy@De@NsBf@}Fj@cHj@cHv@}Jr@{IFy@Hy@F{@Fy@XmDPiB@KPiBHcAF{@d@cG\\mEFs@NqBNwBFm@?KHy@Fy@Dg@@SHy@ZkEFo@Dg@Fs@@E@QLoADg@Fu@Fy@?CFc@Fo@@IHw@DQDWDQBSFY@CDO@EFYLc@DOHSJYFON]FQPg@Ng@Fa@F_@@IBSNy@D[NiAFa@@IHg@?ELw@BWHi@Ho@N_ARwAN_A@INgAl@uDJw@x@_GFg@XqBJu@LaAF_@De@Hq@FqABU@a@Dg@LmCBaA@w@Bm@@]@SD{@DgA@S@[FmADkADu@By@FyAFaA@W@]@E@U@S?QBUDeABo@Be@?G@MD{@?ADa@?G@M@KFo@Hg@Ly@Hc@V}@^qARq@La@Pi@BEZcABKTq@d@}AX}@^sAVsALm@PsAV{BTwBDYXiCLy@L}@Pw@\\iBDMBUDQf@oCRiABIf@mCBKNu@Hc@RcANy@h@sCNq@DQHc@DQDWLi@`@iB\\_BPaALs@?A^kBReAJg@XwABSN{@Lu@BUD]Fe@Fm@D_@Fi@@M?APkBJuADe@PsB@MDi@H{@JiAPiBFs@Hy@PuBFk@PwB`@oEL{A@KDk@@AFy@B]DY?AFw@?ABWDa@H}@?I@KPgBNgB@K@GDe@BWD_@Fy@XyCBOXeD@KFq@?A?EDe@BM?EPeB?G@EDe@@MNeB@I@C?EDe@H_ALiABm@F_A?C?AFaB?O@C@g@@S@g@?A@M?CBuAB}A@k@FsB@S@O@[?M@G?MDi@Dc@DWJaA@Ib@kC@G@GZgBJw@DUN{A@MNwAJgA@KDc@P_BBa@Jy@HaAJw@Dc@BUDi@@G?G@M@[?WAg@AM?QAQCYGm@AI?IEo@KuAI_BGuACkAEyA?eA@}@?]@a@@]HmB?GBWJyABa@Dw@?MDo@HkAH{AF}@D}@JwANcC?AFw@@QBi@?CHqABc@JmB?G?EDs@F{@Be@@SHkAHcA@QJmBBg@DqA@e@Au@?ACiAEm@Ey@AQCi@GqAI_BCe@KaCE{@?ICg@?S?E?a@@S@KDm@He@Fa@Rq@f@cBJ]Ne@^sA|@eDd@gBV_A@CVy@FYHYRo@Rs@HWH]HSHY@AFUHYRq@?CFUHWv@kCd@_BBGT{@Jg@BO@EJq@?C@GFm@@KFq@FoABe@?KBc@BSFq@@GDYLaAN{@BODYDa@L_A\\}BHo@VgBHo@F]Lw@?EPkAD]TyAT_BFe@PsAd@}C@ILw@f@kDT_Bn@qEPqAZ_CT_BDYF]RuAPqALw@TaBNeAJy@DQ\\eCdAgHXqBJu@@Gz@_GVoB\\cCLu@D[PkARsAx@gFF]bAsHF_@@OBYBc@@o@?a@A_A?i@IoFGuBAe@?U?Y?k@@g@@O@MB_@BODWTuAJo@Lw@r@_EF[t@qEj@oDLu@Ny@TmAViA@GDUL_@Rk@h@gARc@bCqE~@gBf@cAb@y@R]L[Zy@f@wAT{@FUZuA^{BBKVyADSFWF[FYRaADOFWNk@xAgF\\mAJYRs@z@wCPm@HWRq@Rq@HYTw@DSBGBOH_@Hi@Da@Da@BS@Y@_@@g@?}@?IAiAEcCAqBCcACaAAiAA{@A{@IoFA{@A{@C{@?AGeD?]Cc@C_@Eu@Ee@WyBEa@Ie@G]?CMm@ACGWIUo@eBYy@[}ASmBGw@Am@AkB@_@@{@?KDo@Fy@@OV_CX}BPcBZ}B@QHy@De@DSJw@?EHs@RaB^sCFe@?CBOBUJu@TuAPu@Li@DK@EDMDM?CLY\\{@Xm@b@u@z@}AjBeDPYd@s@l@_Ab@k@LMBEHILKJIFEFCFCHCFAFAF?F@H@TDn@LH@XBBLBJ@BHLJDD?JADCJMNV@@X`@@BDFJLHLJPT\\JSDCDCD?HBNNFV@L@Lj@FHAHAFCDCDCDCFGBEDELOJWHYDWFu@LqAN{AH{@?CJs@Fg@@MXkB?C@CJs@@ALu@^iB?CNq@?Ah@gCfByI?ANu@Nq@?CNq@Nu@?ANu@Ns@Nu@@CLo@@CNs@Ji@b@sBdFgVrByJ?CNq@@ALs@p@_DNu@Nu@Ps@pAmGJk@Lk@Ns@dA}E@G\\cB@ALs@Nu@Jg@BMNq@@AHa@BOJ_@DWNo@@ENu@^iBn@}CPy@DUd@sBd@}BPu@XwADSJe@@IBMBKH_@DSH[DU@EVqANo@\\cB\\}ADW@CDUH[Je@VmAHa@XmAPm@b@iAXs@BGTg@Zq@@CDKl@sANc@JUJUFMLWp@{A~AoDZo@N]Zk@Vg@FMP[FKNY@AXa@T_@PQFIV]NQh@i@h@o@Xa@Rg@Ty@Jc@nAiGl@}CLm@XyANs@BMn@gDHc@DWLm@@ENiAFkBFyBBsDDwFB{D@iAB_A?UDmBBwA?WDqCBgBBcB?G@w@@kD@_A@y@BgD@eC@{A@e@@q@@eA@WDyE@gABgBDaD@eA?UBoAB_A@_A@w@@c@?G?OBgB@eABqC?Y?M?K@I@qA?wALg@TaAFGFKBIBIBI@I?K?K?K?C?EAKCICICGCGKKCOEKAMEUCUDmDFuF?K?o@@w@A_A?SAg@?WCc@AOEu@I{@Gw@Q_BS{AOiAS_AQs@CMMe@CMSy@Qu@Km@Ii@ACIs@AEEu@IeAEcAAe@E{@C{@E{@KeCMaEAQC{@OqDSgGMyCGiB?e@Aq@?GA}@Ao@@}A@oABiBFaBHoBBy@B{@Bq@@IB{@D{@By@By@?AD{@B{@?IZoI?IB{@T{GDiAB{@TwFNaFR_GFeBB{@Be@@UBy@B{@B{@D{@B{@HiCBg@LsDBy@B{@B{@D{@By@B{@B{@B{@@M?OFyADy@D{@@Y@a@Dy@?MBm@B]FwABYBa@@YDq@?M@M@MD{@Bq@Dw@Bo@Bu@@O?M@I?O@S?KBm@?E?GFkB@e@BoD@a@?[@O@YFuCFiAB}@DeA@O@_@Bk@FcBBoAD{@?AFqAHaC@SH}B?EDyAFgBDmABk@D_A?E?KPiDNmDLmDFoA@a@@WViHD{@HwBDeB?K@QBm@@c@FiAFq@N}BFy@HiADq@@M@O@SHgAFm@Hc@BM@M@GReAHm@BW@K@C@Q@W?A?O@[?UAYGqC?KAU?QAcABwA@k@@E?MBW?O@I@ULcA@Q@]BS?O?QC{AGe@Ge@G[CGESIWAEAEEQCQE[E]AIASCYE{@AUAoA" + }, + "start_location" : + { + "lat" : 53.2748159, + "lng" : -4.515505 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.7 km", + "value" : 1678 + }, + "duration" : + { + "text" : "21 mins", + "value" : 1289 + }, + "end_location" : + { + "lat" : 53.22614549999999, + "lng" : -4.1686872 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eHolyhead Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "{rycIdsqXGUEeACc@Eq@Gy@KcAMo@Oo@c@uBG[CQMiACUGe@AMQiAEs@OgACKUmAUiAW_AKa@Sq@So@]eAQg@EKIUuA}Du@yBGWKYY{@wCoIEIKYGUKYIUaAoCu@iCq@oCGWOm@?GQ{@EWSwAGg@Ec@MmBK_BOiCKiBa@eHQwCAGCgA?ICo@GkBA_B?iA?iC@U?I?M@M" + }, + "start_location" : + { + "lat" : 53.22046030000001, + "lng" : -4.191386899999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.1 km", + "value" : 1078 + }, + "duration" : + { + "text" : "16 mins", + "value" : 974 + }, + "end_location" : + { + "lat" : 53.2185002, + "lng" : -4.1605459 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003eHolyhead Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eGo through 2 roundabouts\u003c/div\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "mvzcIhemXDSF[DUBK@GD?@?BA@?BA@A@C@A@A@C@C@C@C@C?C@C?E?C@E?CAC?E?GCG^u@FQNWNYJOJM@AZa@FGV]RUFGHIFEPMZU\\QRINIFANCVAP@Z@B?`@?V@R?NAPAVIRGRKHAJABAHCHC@BB@@?@@@@B?@?@?B?BADC@A@A@A@C@A@C@C@C?C@C?C@IHOHSJ[DKDE^k@`@]v@s@XYLMJKHKbAcA^]\\]^_@zA{AzByB^]@AZ[@AHGTUDEBEDGBEDI@KBK?M?KESH[DYHy@BQTe@" + }, + "start_location" : + { + "lat" : 53.22614549999999, + "lng" : -4.1686872 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 319 + }, + "duration" : + { + "text" : "5 mins", + "value" : 307 + }, + "end_location" : + { + "lat" : 53.215852, + "lng" : -4.162103399999999 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eTreborth Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA487\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "sfycIlrkXBHJZHLFJNHFBTHL@B?j@HZBND`AT\\Jd@Ph@Tl@ZHF`@Vf@`@d@^" + }, + "start_location" : + { + "lat" : 53.2185002, + "lng" : -4.1605459 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.5 km", + "value" : 544 + }, + "duration" : + { + "text" : "9 mins", + "value" : 562 + }, + "end_location" : + { + "lat" : 53.2130203, + "lng" : -4.1563306 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "avxcIb|kXFQPs@Rq@Ty@He@@IJm@?IDy@@{@?c@KgA?IAi@Je@@AZa@x@eAZa@^_@BC\\Kb@KJETKNGLUj@cADEFEFCDGJQp@mA@CDGBIBGDUFUBIDMJU" + }, + "start_location" : + { + "lat" : 53.215852, + "lng" : -4.162103399999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.0 km", + "value" : 1035 + }, + "duration" : + { + "text" : "13 mins", + "value" : 809 + }, + "end_location" : + { + "lat" : 53.2188198, + "lng" : -4.144558 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003ePenrhos Rd\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "kdxcI`xjXQe@e@kA{@{A[o@Yi@IWKWIQgAsCM]Qk@W_AOy@K}@G_AGy@Kw@G_@EWIg@Os@M]Q_@QYOUQQMMMKk@a@][[YYa@CGQ[GOM[s@qBc@kAM_@CEu@eBGQOY}AuDIOe@iAGQOYGQM[a@}@MYIOGSKk@" + }, + "start_location" : + { + "lat" : 53.2130203, + "lng" : -4.1563306 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "92 m", + "value" : 92 + }, + "duration" : + { + "text" : "1 min", + "value" : 80 + }, + "end_location" : + { + "lat" : 53.2190131, + "lng" : -4.1433534 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003ePenchwintan Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "shycInnhXDEBG?MAICECAE?SsBKoA" + }, + "start_location" : + { + "lat" : 53.2188198, + "lng" : -4.144558 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 247 + }, + "duration" : + { + "text" : "4 mins", + "value" : 217 + }, + "end_location" : + { + "lat" : 53.2184043, + "lng" : -4.1399876 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eAinon Rd\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "yiycI|fhX\\gABIVkA@[?SKiBGw@A]@[B]F_@HWRs@Rq@DQLg@" + }, + "start_location" : + { + "lat" : 53.2190131, + "lng" : -4.1433534 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.7 km", + "value" : 651 + }, + "duration" : + { + "text" : "12 mins", + "value" : 702 + }, + "end_location" : + { + "lat" : 53.2165723, + "lng" : -4.1315788 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e2nd\u003c/b\u003e exit onto \u003cb\u003eHendrewen Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "_fycI|qgX@??@@?@??A@?@??A@??A@A?A@A?A?A?A?A?A?A?A?AA??A?AAA?AHw@D[He@@Y?i@?i@CkBCsBE{@Ew@AQIeBAo@@]?_@BYBe@ZaBf@yBPw@Jc@Nu@BKBMXqAVmAF]DSJ_@@ARg@FKHGn@WBAXKLIFKJY" + }, + "start_location" : + { + "lat" : 53.2184043, + "lng" : -4.1399876 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.5 km", + "value" : 484 + }, + "duration" : + { + "text" : "6 mins", + "value" : 370 + }, + "end_location" : + { + "lat" : 53.2172992, + "lng" : -4.1247583 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "qzxcIj}eXBMBSB]RkC@S?g@?AAe@EQCOMc@?AUm@K[GUSq@Sq@W}@Ki@QgACi@Cm@?KE{@QmF?AAy@@u@@EJaB" + }, + "start_location" : + { + "lat" : 53.2165723, + "lng" : -4.1315788 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.0 km", + "value" : 2050 + }, + "duration" : + { + "text" : "27 mins", + "value" : 1612 + }, + "end_location" : + { + "lat" : 53.2001787, + "lng" : -4.117237 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "c_ycIvrdXNGd@[LM^[TUHGJIRI`@M@?b@MJETIbAa@DA\\Gb@GPCPAJAV@f@B~@K@?b@?V?bAYZGl@O`AOVCBAd@?x@HD@z@Tl@Nb@LfBd@PFJ@D?D@NIJI\\]t@s@HEJIVIbAMPAPG^M@AzDcBPGXAH@t@FPCVCHGl@a@d@iA@ERg@DKTW\\a@LOPM^WNKt@Gr@GZAdAETGLKHGTSBAXa@l@{@JIPOn@]NGPGdA]`@Qb@On@Wh@_@DAV]?AXi@@CVYBAVOh@S@?^GB?b@@`@PZJP?PKBAZYDCT_@NWHQPa@DKRg@LUNMBCVKFABALCF@N@HD" + }, + "start_location" : + { + "lat" : 53.2172992, + "lng" : -4.1247583 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 942 + }, + "duration" : + { + "text" : "14 mins", + "value" : 823 + }, + "end_location" : + { + "lat" : 53.1933707, + "lng" : -4.1120342 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ctucIvccXDk@?MEMEQDOTSVYl@_ADGRa@Vk@?AVk@Tm@JSF[b@iBj@_BRm@@ATm@@Cf@cAFKHMRUf@q@tByAf@]p@MtAGfAEn@CT?b@?jBAb@Db@BTBV?\\EXQBCDKPY@AHELAHH`AhABBFDDAFI" + }, + "start_location" : + { + "lat" : 53.2001787, + "lng" : -4.117237 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.8 km", + "value" : 819 + }, + "duration" : + { + "text" : "13 mins", + "value" : 778 + }, + "end_location" : + { + "lat" : 53.1896266, + "lng" : -4.1031661 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "qitcIdcbXLc@Ne@HQJKNEFCXINGRG`@Q^UjAs@VS^YPMd@c@b@a@\\k@Vk@Tm@Vm@BIL[HENBXNHm@LcABMFc@Ho@@GNu@Nu@?CH]DSJo@@EJw@BQDg@@QDi@?ABc@@S?GD[?WBe@?S?q@?I@mA?k@?{@?CAs@EyB" + }, + "start_location" : + { + "lat" : 53.1933707, + "lng" : -4.1120342 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.5 km", + "value" : 483 + }, + "duration" : + { + "text" : "7 mins", + "value" : 395 + }, + "end_location" : + { + "lat" : 53.19054509999999, + "lng" : -4.096136899999999 + }, + "html_instructions" : "Keep \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "keep-right", + "polyline" : + { + "points" : "erscIxk`XIaCOmD?COaDAOAWEa@?CGm@AGKy@AIGe@?GCUCa@Cu@O}BEy@G{@Gy@?OEi@G{@MaB?SAMAMQM" + }, + "start_location" : + { + "lat" : 53.1896266, + "lng" : -4.1031661 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "3.8 km", + "value" : 3813 + }, + "duration" : + { + "text" : "54 mins", + "value" : 3264 + }, + "end_location" : + { + "lat" : 53.1731977, + "lng" : -4.0561967 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eB4409\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}wscIz__XHu@Fi@BO?GFq@@OBg@@a@?C?M?UAUCo@Ai@?W@WBi@He@BQBQDO@IDKDKHQJ[DK@IBGDKH_@D[Lw@Lw@Fe@VoBBc@?GAE?C?GAGAIESEYESAMAGCUAGAIAOAMAI?MAO?ACc@AA?KCQ?CCU?EGi@O_BKqAIy@GeAAMAg@EmAIwAAOGkAEu@AI?G?I?_@?S?K@O?K@M@K@M@MBK@MBMTaBDeADe@BIBIBGBGFIDGFI@?FIHKJKHIRSVSNOJK@ARMLILKNKHGTO@ARMLILENGLEl@QJC@ANCRGNEHEBABA@A\\WRKJKr@k@FEl@i@FGx@s@DEJIHIHGJGLIHEXKd@OJEPIHENINMHIBCLOBCRSDGJMb@g@JOJOFIDI@AHQP_@DIDIFIBEBCDEFGJKHIBARSPONMLKZWBEPKTOXOLIPGLEPG@ARGn@SLE\\MXMRKRMx@g@`@Wh@]n@]LGn@_@TMd@[l@a@LGf@[ZQ`@U^W^U@AzAcADC~@k@^WFCXQDC^U~@a@b@QfAk@LGDCBCDEFGFIFMDKHUDMBQBMFc@@G@IHe@@GBSD[Da@F_@DUDWPwADe@Dc@t@oBTm@HULWVk@j@{ATq@HQHSJ[n@_BBIPa@@EBERg@@EDIL_@@CJY@G@I?A?E@A?KAOCW?EE]AU?G?M?G@I@I@IBGBIDKDKPYJOJQLUR]P[P]Rg@Vi@BGL]Vm@BITo@BEN_@BGZ_AHUDMNe@HWF]@K@EBU@WBo@@M?A?K?K?m@?U?GAG?K?WCc@?KGg@Gk@Iu@Gu@AMAM?CA[?E?U?M?Q?M?O?M?q@?uBBo@?G?G?M@M@U?GBU@Q@SBK@MBKBKJs@]aACuACgA?OA]" + }, + "start_location" : + { + "lat" : 53.19054509999999, + "lng" : -4.096136899999999 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "19.8 km", + "value" : 19823 + }, + "duration" : + { + "text" : "4 hours 26 mins", + "value" : 15943 + }, + "end_location" : + { + "lat" : 53.10211839999999, + "lng" : -3.8468074 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eHigh St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A5\u003c/div\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "okpcIffwWb@Md@MFCf@KHAHAD?D?D?D@JBFDJHTTPPDFNNNNNPLLj@l@LNRRJJLH@@FDJFLDJBNBT@HAHA@ALELGTMd@_@NMX]T[`@k@HKHGHIJGJGLEVKXMFCZODALI@ANI?APMJK@ALMLONQHMBIHMFMFQFYFYBUBU@U@M@OBWBYD_@Hg@Jk@DQJc@HUFOLUFKh@eAZo@FMDI@G@CBK@I@IBK@OBO?KDg@B]@UB_@Dg@@M@MBOBQBO@KBI?ABMH]FQFSDK^_AVk@Xq@d@eAFMNYXi@^k@^e@b@i@^e@JM`@g@XW?Aj@i@p@k@ZWJITQJKPMPINEDARCp@KHANERIVQPKLMZe@P[FKLYHQ@CNWFMBELOPONKLIXKVKXK\\KZIXIn@Qt@QLCFARAF?N?R@F?RFD@JBVFD?RDH?RBN@b@@XBH?L@T@^?L@HATAFAh@G`@IJCb@Iz@QHAb@Kb@K`@ITG~A[z@Sf@Kx@YDCb@SnAs@bAo@LKNO^a@X_@XW^]n@i@NM\\Y^[JI`@]p@k@NMh@c@f@c@xAmABA^[BCVS\\[DC^Yx@q@HGfByAVS^[dA{@LMFEPMl@]TO^W^]LM`A_AbAeADG^]NQLMVYd@c@NQLMRUfAiA\\]^c@T[BEHKZe@Zk@Ze@Xa@NSZa@DC^_@RSHGHIVSXQBCRKLIRING`@QFCFELERKTMHGFEDGFGHM`@o@PUFIDEBCHIPOLMPONOLODEDGFIDGDGTc@p@yADIPa@BEHQHOJMHKDEHINMFCFEJCVGNAJANANAJAJAZIHAHCJEPIDAr@c@RKDCTIn@QJCFCFEFEPMHG@?\\[d@_@DEFE@ABABABATOFC@ADCFEDGNO`@i@@CBCBAFGBA@ADA@ADABABA@?FAJ?L?^?P?LAh@Gb@CNANAB?FAB?PCDADAPEn@ONEJCNC@?VA@?l@?X?j@CXCHARCD?HCFABAJE`@O@?z@Ud@KPARANCDADAFCBALGRKHETG@AHAHA\\AJ?J?N@`@DD?D?J?FAFAFAFC@?FCFCNIXMl@_@d@YNIh@U^O@AJCPIDAXI^KJCDAHEHGDEDCLOFEBAFE@AJIJEHE`@Ub@SFEFEDEFG@AHMDIV_@Xa@^g@l@u@NSHIFIHK@AZWp@i@p@k@@Ad@c@LODG@?@CDIFKHOFMN[DGP]@C@AJMDIJKNOHEPKXOf@Yb@[l@c@\\Wl@]XQJG^UXSTOFEHGRO@AXUZYHGFGHGJGHEDAJE\\K`@MDADCFCROFEf@c@f@a@DGJKPS@AX]X_@PWPYFKTe@BKTm@Rs@Lu@PmANkAHq@Fo@BYD_@B[B[Fy@D_AF{BFmC@[?AHwBFqB@a@@]Bm@J{CH{BBg@@SBiADwAFsADs@Dq@B[JsAn@_HH_A?G@I@U@S@e@@U?O?_@?WA]A]Eo@AWCWCUIk@Gi@ESIg@CMMo@AEEOEUKk@SyAKu@CUC_@G{@?CC]A]AYAiA?}AA_@AiB?c@AWAQCu@C]?C?ACWEYKw@?AACCUG[AECKEQGWISISAEISIQKQ]m@MUWe@CA]o@[k@Sa@Sa@IUGOGQO_@IYK[Uy@Mi@CMESIa@EQGe@AGEUCYEUEa@AGEc@AMAWEa@A[C_@AUAe@AQAi@?O?i@AaACqBA{@G}DA{@C{CIgGIiG?e@A{@GqD?WAc@CwBA}ACsA?e@Ao@?W@Q?K@S@UB[DY?EF_@BQ@AFa@DQ^mBViAFa@FYBM@MDY@K@Q@?@[@O?M@O?Y?UAWAW?GCe@AUIiBEcAAa@?k@?q@BwC@{@?YBY?GBe@LmBDk@B]?K@UBe@@QF}ABi@@U?A@OBOBUFk@D[N}@Fc@Fc@Fg@Di@B_@BWD{@@SDe@Dy@@ENcCHwAFcAF{@@CDu@N_Cb@yGHsABa@R{CFmAF{@@S?M@Q?i@A_BAsE?u@AqA?}A@I?SBw@By@Bk@@Q@O@YB[RsC?IDo@V{DF_ARuCJ{A@MB]DY?AF_@h@oDPeAJu@Lw@Lw@Jy@h@cD?CJs@ZoBLu@BSFc@Lw@Lw@@GJo@Ju@ZoBBQHe@Ju@He@BQVcBNaAFa@DUXiB^eCHe@f@eD?AXaBD_@Dc@Dc@@O?U?c@?I?a@EeC?I?Q?[?M@[@_@@I@WBo@BUB]D[Fq@He@BWBMF[FYNu@@GNk@FUH]J_@Ry@J_@Lm@Jg@?ALo@@CLw@@GHo@F[Fi@^oCl@uE\\eCDUFa@LcAJk@Jw@BQD[F]TiAR}@@CRq@DQL_@DKL]h@uApAgDTo@L]J]ZoAP_AHa@PiAJu@JaADg@B[De@HoAFy@B[@_@NqBNiCNyBBc@Fy@JyAHsAF{@Hk@Fc@FYFUPo@FUHQDMDINYLQDKJOPSBENS`@e@JOLODGFMFKFOFQL[@CDQJ[?CFSNy@PeALiATqBDi@?O@U@]@G?A?i@AO?m@?MAc@?W?A@]@S@EBUDWBKJa@DMDKL[BEHQNW@AJOLSLOLQHKTSFITQ@A\\YTQHIZUBELMRUR[BEPYP_@L[@CJ[FQFYDS@EBIHc@@G@CHc@BMJo@@E@EHWDM@EHSJQBE@CX_@@?TWBABCLMLIBABE\\S^Q\\MDA`@K`@K@?`@KTGLCb@I`ASDAJCt@Ob@K@?b@KJCLEFA^GBAj@K\\Ah@AF?H?F?f@?`@@R?J@B?H?L@J@@?LFNNBBV^BFZf@PVLPPNLFLDHBF?J?JCFAh@UVMXQn@c@b@_@V]Zi@DIFKJUJYPg@Ts@Pu@Lc@@KRaALs@DUJu@JgAFk@@I@CDm@@EFw@H}A?Q@M?g@?GA_@Ac@C}@CsA?_A?c@@U?G@e@Be@Bc@De@BS?GBQHq@Lq@He@BIBMBKFUX_ARm@r@kBL]v@yBbBuEp@iBFOBGDKNa@DSHa@DWD[?C?a@?Y?OAOCk@AUGkBA_@AOCy@Aw@?U@a@@G?IDQBK@GHSHQFIFGVQ\\M\\KHCXIHERGn@]PMFEDCf@i@`@k@`@k@FI@ARWFERQb@]z@g@`@WZSLQ@EDIHO@EDKF[@A@GFYRaAPy@Hc@DQPq@Nm@@EH[Vy@FMDKFK^{@Vm@Pi@Jg@BM@IF]V{ANeALw@?CPoADa@BK?MBW?a@?]Ce@EWE_@Oy@Ou@Sw@Qw@Ko@Kq@Gk@KsAMy@YkBAGKo@QcAWaBMu@q@gEa@cCUwAEUYgBIc@Ig@I[IWUo@[o@M[Wk@[w@mAsCKUSe@AGK[WaAAGKg@Ia@WcBYcBMu@EUMw@I_@a@cCIa@CSIa@AIQaAGa@Mw@ESKm@QcAE]ES?AEc@AG?MCc@?A?mABo@Du@JoA@[?YCy@CaACa@CWCc@Aq@Aw@?i@AmAOgEIcBEw@I}AGaBAk@C_@CcC?OA{@?QEg@E{@Eg@?k@A{@Bg@Dw@Fu@@KBo@B_@A[Ao@A_@@c@@WBSDUP_@f@[p@Ob@MRIPIBAJILKJQFOBGBILg@Fi@BYBc@@Y?CAk@Ci@Gg@Mo@Mo@Ki@CI?Ac@oBMm@Qu@AEi@gCu@oD_@aBOu@A?Os@WkA[uAa@_BKk@Mo@Eo@Gu@Gc@G_@I_@Mi@Mk@Y{@Ke@CKEQGa@AACc@Ee@Ck@?KGoAIgBIw@" + }, + "start_location" : + { + "lat" : 53.1731977, + "lng" : -4.0561967 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "52.4 km", + "value" : 52408 + }, + "duration" : + { + "text" : "11 hours 48 mins", + "value" : 42450 + }, + "end_location" : + { + "lat" : 52.9804821, + "lng" : -3.1930005 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003eA5\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "gobcIpinVCi@C]Eq@Em@M_BE_@GiAGy@AY?M?m@Ae@DcAB[D]He@Hg@T}@Tm@Xm@`@s@NUDMDUHMVg@L]FUH[Jg@Hk@HqABk@?S@U?e@@g@?S?sBAqBAgB?Y?_@Bs@DsAFeADy@J}BD{@@IJkBDy@@KDg@B]H_@Ji@T}@Pk@X_ANk@DMHe@@E\\kCPoAJw@DURyABQRiAH_@Ng@Tm@Pc@Tc@FKVa@BC\\a@Za@BAp@iAt@sABEr@mAx@yARYJONSPOt@q@hA}@bAu@HGRId@Sr@UVIf@OVITMHEVSNQNODER]NYHOTc@Zs@@ARm@@?H]J[Lk@F[BYBWBc@@sB?sA?QBeA@m@Bi@BYHo@@GBSR_Bf@mDb@aDj@gETcBDg@Bk@@YCcAIkBCc@O}BEaAS_DIw@IoAAEG{@GgAK_BAEG}@Gu@Iq@Iw@O_AAGGe@Q}@?AIi@E]E]AQAM?S?Q?A?Q@SD]JwAFq@BY@QBY@M@MDy@BUBUBS@ABOFWBKLc@VaA?AJ_@FSL]DMBEJUHQVi@JUb@aA^q@DIPa@HOb@iAFQLYr@eBb@gAXs@Tk@Zs@N_@LSRSJKJGJGNILEHCLCFC@?h@Kt@Ml@KJCVG\\EZE`@ILCNEHCHCHITWT]V[PWfAwA`AsAd@q@FKf@y@^g@RURULMPOPKNMPMRKLGNGPEZIVId@QHGJGJIFIFEFMFKDKBKDSBK@KBM@S?S@K?M?M[cCAK?I?QDOFKDCHGJEVKFCPGl@WNELCRETCRAR@R@pACv@G^C`@CF?zABd@@rBLT@bAAp@CfAE|@IzAUv@ORDHBb@NTJLDPFV@T@|@It@Qz@Wj@Uh@Qr@YZSRQZ_@\\g@p@iAb@{@Rc@Zg@b@i@LMVYDG@AFGFIZa@LWVg@T_@j@cAZc@b@q@R[b@cA`@_AZ{@Zy@Zs@\\q@LWFMDENU\\c@NOFGj@e@|@m@d@[b@SVKNC^Gn@I\\I`@OVMHKTSZc@^q@Tq@@CJa@J[JWFUP_@HQHILOHINOXWJGRODC@ADCNKHGXQXQh@UDA@?DATGVGRGFGDGFI@GBKBK@O@M?E@I@e@@[DyA?K@I@SBMBIL]Te@P_@`@kARq@@E@C@GDKV}@Rq@FONYVg@Rc@L[@CNg@Je@BQ@SBk@?kABgB?g@@g@?QBMDUL[HST_@R]PWJM@A^g@V_@DGDKHOVeAJa@Le@VcALe@j@qBFYHW@CNo@F[He@Fm@?IHo@D[BKJc@FWP_@P[RY@?LOJM@CZc@LQNQBEV]LQFIDGFIR[LSDMFYNsAPyABWBM@M@E@U@O@I?C@Y@Q?[?Q@]?]@M?m@?M?A@K@e@Bo@BWFq@Hs@Jo@F[FYLe@H[JYHSBIDIDMBCBEP_@R_@JSFIDIJQ`AaBTa@NYVm@Re@Tg@FQBKFOFONg@f@{AZgAZsALu@DQFa@@AHk@Fo@Dc@?EDaA@[?C@YBu@@UBoADu@BYB[Hm@BK?ADSFSBKHWHWFQBKLWN[Vc@RY@CLQ@?HMXa@RYz@mALQd@w@@ALS`@q@DIRg@Rm@BGPe@@ERg@DGVi@Xg@@AZe@DGBEp@eAPc@FSJ_@BIBSBW@GBW@[?A?I@Q?c@Ae@Cm@Ey@IkBCe@?}@@y@DcABa@Be@Ba@@CBWD]@ALm@Ry@BILi@b@gBb@eB@CNo@h@uBh@oBRq@HYb@aAXk@R[NQDEJMROPMNIZMZI^IZEf@CP?d@?`@@@?N?R@@?VAFCNCRGRKLKJKJOHQJ[FYB_@@I@[@c@?g@Ae@K}@EY?CIu@AAAIEo@AGAa@?Y@YBWFUDQHKFKLM@A@AJGTMbCsA@ADCrAw@jAs@B?ZU@?BCVOBCROJMDGL[BIBGNo@Ls@VuATeA?ANs@?ALi@L{@RuB@CHu@?CFg@Fi@?]@A?E@o@BSLc@FUFOXi@Vc@BEVi@FKLc@FSFa@BMLc@BEHQJM@AFGLGNGDIFKFMF]Fi@Dc@HqCDeBDyBDmB?A?kAA]AKAECOGOGOKS[g@MUO_@CGGYC]CSCSAM?AAc@A_@?q@?A@[B_@Dy@F{@RoD@YB_@Bc@D_@Lm@Pg@Xu@b@s@L[Tk@Ri@Ni@XeAR}@Ji@P}@Js@Hq@Dk@@QBm@DeA?AB{@B{@By@HsDHyD@SHqDFuBDeCDiBBy@ReJF{BDqBJuEDuBBw@?CBiADgB@O?[?QAWC]?AK_AE_@ASSeECe@Ey@Ca@KsAUgCWyCGw@MsAs@{Io@qHm@gHYmDGy@Iy@Gy@Iy@Gq@Q{BIy@Gy@c@gFGs@I_AAMMsAEo@Gs@Ey@GyAIuCEuBKqDCqAEaBAOAi@EoAEaBEsB?KAGAg@?CCu@A{@C{@AMCsAAY?I?EAKC{@EwBCy@Co@EyACy@?g@A]?W?wD?O?M?O?M?kB?}AB{C?{@?{@?k@?O?S@_D?kD@O@kH?y@?gABwKBaL@}B@aJ?aA?s@?o@AK?MA[A[A]Ca@Ea@IcAQkBQuBEc@Ei@Ae@?ECm@?M?W?o@@g@@m@Dg@Fs@Hq@Fa@BOBQHc@BMJe@?ANo@J[HYHWJWFOTo@LYRe@DGJWfAmBR]z@{A|@_BdBwCrBmDnA}BP]BIHQLa@Ng@@EH]FUHc@^wBf@}Cd@wC^aCv@uELw@j@oDb@qC\\oB~BuNLw@x@iFX_BLw@He@BOXgBLu@h@cDh@eDFe@bBmK^}BJo@Ju@@KNiAB[LaADa@B]B]BaAFqADiBDsB@_@DmABmA@E?U@aA?Y?e@AQCo@Ae@?CCo@?K?I?[@Y@SBa@Du@LcAFq@H}@De@@WDs@?OBi@?k@@eA?e@Aa@A}@AoBAW?c@?y@?gA@mB?ABy@?Y@_@@SDiAFqBDcADu@Bk@B]@UFo@Dk@Fg@PuALaAXqBVoBJq@^cCTaBJy@\\gCHy@BSDe@Ba@HsA@U@e@DcAFkC@_@@_@LqHFkF@a@FmEFuCHgGDwBBqABo@?CBk@@M?MBYFs@BW?GFq@Fm@H{@@IDc@Lw@Js@p@{Dj@cDZaBj@cDLw@Lu@Nu@Lw@DQbA}FNu@ZeBpBkLReALw@bBqJfBiKZeB@GLu@Nu@hAqGLu@Nu@BOHe@\\mBjBiKn@mD\\mBn@wDBMdA_GBONu@Lw@fB{JNu@N{@rC{Oh@wCvAeINw@Jq@jAsGPgAdA_GNu@Ny@`@wBj@qCHc@n@aDTeALm@Rw@Nk@BI\\iAb@mANa@`@aAn@mANYPY\\i@LQXc@Z_@d@i@l@m@JINQl@g@f@_@v@o@DCXWTQd@_@LO`@g@T[JULU?CJWHU?AFOH_@@ANo@T{@Le@BGFQNe@LYLWFMVc@LQBGV]RUJMJKTS^WTONI^QpCkA`CaAdJsDpAi@nIiDpCiAdBs@b@QrD}AzAu@h@YhDeB`@U|@e@d@UbAi@tAs@hAm@f@Wz@e@`@STKl@]@A\\U`@Y@Ap@i@f@_@BCTMJCVKn@M`AM`CWNEFANEHC@ADCDEJIDI@ADKHSJa@Jc@DUDW?CL{@LaBJaBLwBB]HeAFu@Fg@Fg@Lo@Nk@Pk@La@HQJUJQ@ALOPQLKPKPINEPCP?BA\\A@?RAVERGRIRMXOx@i@NMXUBEJKLQNSLSRa@DKJWLYPi@F_@P}@\\_CXoBJq@v@cFDUF_@zAeKZqB`@kC^eCBKNgAN_ANy@Hc@FYDWDMDQFSLc@Ni@Pg@N_@BK\\_AZcAJ_@Pk@FYDOLc@DUDSD]Fa@J{@@IPiBLgAFg@F_@DQFULe@Pa@Vi@P]DIr@oABEf@_A`@y@N_@X}@ZaAJa@BIH_@Ha@BS@KBQLiAPyAh@wEV{BLcADa@BO?GFc@\\{BDYXqA`@iB@E\\aB@ADUH]FSJ_@FWRk@Vq@`@gAj@oAd@aAFMl@mAr@yA@CBEVi@d@cA`@y@@C`@{@LU@EXi@Te@@ENYhAaC`@}@jA_CVi@j@iAn@cBh@{ANe@Vu@BINg@FURw@Hi@L{@Ly@BUDe@PgCL{BDs@RkD?CRqCT}BNiA@KPeANw@Ni@Ha@V}@Pk@Pk@Pc@FQTg@Vk@b@{@f@aApBsDJQR]^s@Xi@jA{BLSXs@FQJUJWPg@@GRq@La@DORu@Nq@BIZgBNiAP_BJkAFoAF}A@s@@_B?qAA{@Cy@GkAGcAI_AAOGq@AEKy@Ge@]iBESOs@AGKm@Os@_@mBEUI_@Mu@YuAEUOu@G]]cBG]Ou@Ou@G[GYKm@AGOu@Ou@ACMq@Ou@Os@CMKg@SgAYyAMo@O{@e@eCe@eCUiASgAYaBg@iCaAaFOs@Mm@g@cCg@cCa@uBKe@AICKE_@EYC_@KgAC_@Ei@A[Eo@AW?EAy@Ak@Ak@@]@m@Bu@HiAFm@@KHu@@ABW@Y@G@Q@Y@u@@S?iA?iA?s@?G?a@?Y?I?U@O?O@MBSDQ?CDUHa@Lc@H]FQDMFQFMFOLU^w@Xq@L]DOHUDODO@IH_@He@F]Jq@Fm@V{DD[Ju@Ny@`@qBJ_@Lg@HYJ[LQFGLGTOl@[\\QJIV[Ve@LYJ]FUFW^mBJu@l@wDLs@H[@GBIPm@N_@DGHQVg@PUDGTWPSNKzAgAjFsDJG`@WBAPKJIRORQHKHKDGFIVg@Re@~@{BRq@HSH]Nu@H[Fa@Fo@RoDLyBR_DVsEZuFBWBWB_@@GBWBO@I@GFQDQDQTq@|@aCTm@FQfBuEVo@Tm@nBiFl@{ATm@L]\\_AL_@Nk@DSDYFc@@[@_@@G@{A?mA?y@?A?S?[AK?A?]AYC[KcAMkAI{@CUCc@CQGaAEaACgAAqAEeFAq@?I?{@?{@?y@?k@?O@{@@sI?mA?QAo@Ek@Ec@C]AGCg@?K?Q@mAT{J@e@JuDB{@DaBFiBBkA@y@@E@uA@qA?aA?{BCsGCqCAcEAaC?iBC}DCaEAwDAg@C{AA{@IgBAa@C[IaAEa@Gm@OeAAGIm@AII_@Ms@EYAGMk@EQSgAe@cCa@{BOy@Io@OcAOmAUwBCYIy@WqCYiEC]Gy@Gy@MoBO}BGoAK_BE_AAUAa@Ca@?cAAW@U@u@By@DeARsEDy@@WBc@By@JqB?CJkCHaBBy@Bu@DgAFkAV{CXeDZsCFs@H}@Be@?MFmAJ_BDc@De@@SBc@@U?W@gA@i@J{@Fc@?CLq@\\mBF]DYLu@\\mBTwARkANu@Ls@?AZmBNu@Lu@x@{EHi@BKBMLk@Pm@Rs@r@mCFSF[F]BQBK?A@W@Y?G@O?O?YA]C]?EE_@CSE_@Kc@Qi@Wm@Sg@MYAAKUMUMWIUEIGSKm@EUG_@EUMm@Y}ACMAICMCOm@aDk@aDCQGe@E]Gi@Eu@A[CgA?m@?I?Q@Q@MBQD_@R}@Lk@F]DW@I?G@[@[?[@Y?]A}@EiBA[Ay@?EAm@AQ@YDk@Fc@BQBI@G@I@M?O?Q?g@Ae@?UAO?[Fy@BODMFKLUT_@VYHQBIBKBIBIBOD[D[BWPyBBYB_@Dm@?W@[?i@Cm@C{@E_BCaA?A?y@AgACiBA{@AW?OASE{BCsAGqDGyDEoBAy@C_E?uB?cB@kA?wA?_@?]BaFDeBFaB@SHgBNcCDiABk@@{@?G@wAAyAAs@Ac@Ai@Ag@?KCo@?WAIAQAOAQASGk@CY?CGk@Ca@Cc@Cq@CaA?I?q@?a@?qC?QCkBGaBAMC_AQqFCcBAG?uB?}@?o@?K?}@AiB?K?]A[?CAe@AQ?UByA?GD{AFgA@KFy@JmB@GDy@JsAHcAPyA@KBSDSHWLa@FUHUHUXcAL{@N{AJ}@Hy@@MHi@BQFe@Jw@BQFe@BKJk@Jo@@EPaAJi@Nu@Ns@Lk@ZaBd@yBP_ALq@Fc@DUBS?CFa@BSBUDa@@OH_A@e@Bw@DwBByA?{A?uB?OA]KgDKeBEe@C[Gm@I{@KaAw@}FAEUwBKuAEi@Cg@S_DEy@AIEo@Gy@Gy@Gq@U}BQuAOqAAKSeBIy@SqBAKGk@Gy@AGGq@CQEg@Is@?CE_@CYCSEe@AQKiAIs@QiBIaAI_ACMWmC?]?]@M@m@@o@?K@W@i@@e@BiA@k@?A@YD_@@U@OFc@@M@MDa@BSN_AHs@F_@NkA@ILuA?AFw@?KBWNcC?GBU@M@K@IFg@Fi@RmARy@FYPg@N]Zc@NQLQDGR]T_@HO`@cARw@H[BIBODYF]@MNuAFiADo@@IFqAHqAHeA@UDc@V}DDk@Dy@Fs@L{BTiDDy@B[XgEF_ALsBF{@F_ARiD@C@M@g@?A?g@?i@?o@Ae@G_BA_@?CAg@?O?IBeA@w@DiA@[@k@?OAs@?GCk@?MA[Aa@A}@?a@?U?e@@Q@UBg@N_CXyG@KD{@FyAB[NaD@YDi@J}@?GZyCJcAFi@B]?Q@U?O?o@Aw@C{B?c@CqBEeC?g@Bm@Hm@Hg@He@FU\\oBD[FgANcBLsBD}@LuBBa@@WD{@Dy@Dy@?KDo@JuBDo@FoAF{@HeAJgALqADe@NoA?GNsAD[B[@MHm@LqBA{@?g@Ao@?ICg@ASAQE{@?O?Y?Q@aA@cBDeDDcBBs@?EHwBJyC@YD{@HgAJu@JcABONgAJ{@Ds@Dq@Ds@@SD{@?MDaADoADqA?y@@qA?O@M?W@GBc@De@Fg@@GJo@Jw@h@wCBM\\kB\\qBN}@ZcBNw@ToAZiBLu@DSRsA@EJw@BSHs@De@B_@Ba@Be@@Q@O@q@@u@BwC@g@?_@@MBeADw@Fy@JmBBi@JgBTeEJiBJwABi@B{@@_@D}G?Y?}ABuF@{A?Q@i@?o@@sA@sA?oA@}@?Q@mA@WBeABo@@WD{@Ba@Dy@@IJyAHs@H{@Dy@Bi@@]?W?k@A}@Cy@KeBQ}BIw@SgCGu@Ce@AEA_@AY?GAs@?o@@cB?_@@y@?K@o@?q@BmD?O?y@?I?q@?]A]?]Cm@Aa@AIC]CYCUGc@AMGi@Gg@OiA[kCSeBe@wCMu@G[EYa@cCSgA_@{BMw@Ig@COOaA[uAK_@K_@O[EKEKS[CEUYCASQKIGEYMCA[MA?]GE?]Ei@EG?{@IA?a@GAA]IYM]U]Yo@e@AA_BkAaAq@[OECYKIAMC[C]?K?WDYDGBc@NOFk@VGBa@Ra@Ry@`@IBa@RA@_@PCB[RUP}ApAk@f@MJc@Xc@Ta@PKBOBK@GAA?GCGAEEEECCGGKOEQCIGWASAC?_@BW?CJw@h@_DVcBXcBTgAPo@Je@DMjA_E^qARs@Pq@Rq@Ps@b@gBLg@BKPs@Ns@Lg@BKXmAd@}BNkADm@NoBBy@DaA@SLmANgAHaAB[?c@Am@MaAYkBYiBMu@Kw@OaAKk@Mw@k@aDAGWgBMw@Kw@Mu@Mw@Kw@Mw@QmAEa@Iq@?GC]Ae@Ae@?K?I@g@?IDy@BcADq@DqAHiADy@F{@LsBF}@@Q?a@AQCSCUEUGc@ESUaASy@I_@GWG[GWI[Og@CKMe@Oe@M_@" + }, + "start_location" : + { + "lat" : 53.10211839999999, + "lng" : -3.8468074 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.7 km", + "value" : 747 + }, + "duration" : + { + "text" : "10 mins", + "value" : 612 + }, + "end_location" : + { + "lat" : 52.9797424, + "lng" : -3.1838002 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "_wjbIfsnRAU?ACIEUI_@Ia@WgAQq@Sq@]mA[iAQs@?ASo@K]ESQcAKq@Io@CSEc@?AA_@?Y?A?SFe@RqBPeBFmBNu@TkALa@Rq@Ro@HULULQNOVYDC^[@A\\]DCV[Zc@VYDGXi@" + }, + "start_location" : + { + "lat" : 52.9804821, + "lng" : -3.1930005 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.3 km", + "value" : 1332 + }, + "duration" : + { + "text" : "18 mins", + "value" : 1051 + }, + "end_location" : + { + "lat" : 52.96945299999999, + "lng" : -3.1749393 + }, + "html_instructions" : "Continue onto \u003cb\u003eBerwyn St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5\u003c/b\u003e", + "polyline" : + { + "points" : "krjbIvylR`@Y`@Yn@g@d@_@FEPM~BgB~@s@`Aw@`@[BCBAfAw@@?JI@AVQjCyAtAg@RI@A`@O^On@Wf@QDAd@SlAWVIhBU\\ELCRCTG\\MPGd@Wh@[FE^Sd@[l@c@HGDCROVW\\_@n@q@X_@`@k@@Cr@cAXc@@CZo@Rc@Ri@Vu@^cAJa@Ni@Ha@H_@@IJu@Fg@" + }, + "start_location" : + { + "lat" : 52.9797424, + "lng" : -3.1838002 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 319 + }, + "duration" : + { + "text" : "4 mins", + "value" : 258 + }, + "end_location" : + { + "lat" : 52.9696495, + "lng" : -3.1703898 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eMarket St\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "arhbIjbkRYi@KWIU?AIWGWGi@A[Aa@@oAFqCF_C@q@DqAB_ABy@B{@" + }, + "start_location" : + { + "lat" : 52.96945299999999, + "lng" : -3.1749393 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 198 + }, + "duration" : + { + "text" : "3 mins", + "value" : 157 + }, + "end_location" : + { + "lat" : 52.9714256, + "lng" : -3.1701362 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eCastle St\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ishbI|ejRiCQ_@Em@CgBQc@C" + }, + "start_location" : + { + "lat" : 52.9696495, + "lng" : -3.1703898 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "10.0 km", + "value" : 10008 + }, + "duration" : + { + "text" : "2 hours 19 mins", + "value" : 8318 + }, + "end_location" : + { + "lat" : 52.9846785, + "lng" : -3.033995 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eMill St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA539\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "m~hbIjdjRRiBXqAP{@Li@TyBNsBFqAFaA?IB{@HwBFoAHuB@E?U@G?UHgC?aD@q@HaCDm@LgD@UDsA?YDgA?U@O@i@@q@@IDkAJuB?GDq@Di@@QBg@@GBs@Dq@?Y?u@Ag@M{BOgBCWIw@Ky@Iw@Gk@CKMw@Mu@EWG]I[GYQs@Qq@Qs@Qs@Qs@Mi@KYM]Uo@Uo@Uo@gA{Cc@qAUo@So@Uo@Uo@So@Yy@Qe@So@k@_BUo@So@Uo@w@}Bq@sBe@qBO{@Io@I{@CY?EAMIcAE}AEu@?EOiEA]?EAy@C{@A{@EqB?MEmB?M?OAWA]?QCcA?[@cABq@B_@?GJ_AFi@BOHe@@EJq@TcBN_AF[Hg@^{BBMBQn@yC^eBJe@@I`@qBFYBMFa@b@yCDSHy@@EHq@Jw@VuBTkBDc@BUD]@M@MHw@Fk@BML}@Ji@@ELu@@?@K@CfAgF@CBKZoATsA@MBMLw@DUJi@@Md@sC?Cl@mD?ALs@?ADSFa@?ADSF_@DUBO@K@ELu@bB_KFc@BM@EF[~@}GBM?Ef@mD\\qCFi@B]HuAB_BCaA?CKwBEy@Ew@EuB?y@?C@y@Fw@@M@SDc@?g@?q@GcGA{@AM?i@?C?ICmBAy@?a@AYCcAIgBSeBg@}CEQEMKa@CGSm@CGQg@CGQg@AAUk@CE?ASc@Um@Wm@Se@Yu@i@uAAEa@mAEUOo@Ow@My@AKMgBG{@G{@ASAMCUGeAEWCU?AGWAEAE]w@O]i@}@g@q@KMu@_AACgAqAsBcC[_@CC]a@CCW_@AAMSEKEa@WyAO{@QaAGWWsAKg@Kq@CSC[IwAGoAEaBCgA?o@AsA?a@Am@?MAe@ASEe@CYOy@Sk@Oa@Ym@EGk@aAIKaAwAMOCGAE_@o@Wm@Qa@Wk@M[GQUq@K_@[aAEMMc@Mg@U_AEMIe@CKI]E[Qy@Mu@Ou@Kk@E[Y_BCK[}AMm@CMEOQs@Qo@]oASw@Ki@GYOu@]kBAI_@kBKk@Ie@]eB}@kEUcAc@uBIYI_@I_@{AcG?EOm@e@kBc@{AM_@M_@c@oACEEKCKaAgCQk@Ki@I[GWMu@Oq@QgAAGI_@G[Q}@m@aDWqAUmAKc@}AsGQw@_@yB]gBAEMo@G]c@{BQ{@CMCKOq@_@iB[{ACOe@kCUiBE]?AKgAIeBGy@?AAWCa@QuEEgACy@A_AAiAAaADiABe@By@BUVyC@SVwCBUDc@@UDc@XeD@G?EHi@?G@EFi@@I@CFk@@G?C?AH_BDaA@MBu@By@?ABy@Bm@?KBa@?K@o@BqDBwB?o@?M@S?_@DQPs@@A@??ABABE?C@C@A?C@C?C@C?G?K?GAC?CAECGD{@Dy@D{@Fq@?GDg@Ba@R}EBo@F{D?A?A@y@@S?sG?IEsD?g@BC?A@A?ABE@G@A?C?A?C@C?C?A?CAC?A?C?CAA?CAA?CAAAAACAAACGmA@mA?e@@eAC?AAAAAAAA?AAAAA?A?AAA?A?AAA?A?A?A?A?A?A?A?A?A?A?A@A?A@E@C?A@A?A@A@A@?@ABACm@AKC{@Am@AMOoCC_@Ey@Cg@MwAAM?GEWMYGM" + }, + "start_location" : + { + "lat" : 52.9714256, + "lng" : -3.1701362 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "4.9 km", + "value" : 4886 + }, + "duration" : + { + "text" : "1 hour 3 mins", + "value" : 3779 + }, + "end_location" : + { + "lat" : 52.9822985, + "lng" : -2.9634883 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e to stay on \u003cb\u003eA539\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "gqkbInqoQd@eBPs@d@eBRq@Li@BI@CNm@Ni@BIDOD[@MHi@?E@C?CLqBFo@?IDo@@I?CBY@Q@ID{@Do@?I@CBa@?IXyDFy@@SPaC^iFFy@Fy@Fy@FcA@MZqEBWBa@Fy@PaC@WDk@F{@NsBPuC@IFiARwDDgB?KBy@@aACkBMcB?UCq@B{D?M@M?_@DqC@{@?a@?Y?_@A{@GqCAa@AY?_@CYG{@?MAMCWK}@Ky@?AMuAIuA?c@LwC@YDy@RmF?MLmEHuB@u@@EVoJBo@FcCFwB@A?EDmBFuBDoAJ}CDy@?CBw@D{@?AFaBHgC@A?O@MJqC@e@@SB{@DyABgCHoAFo@VcDBeA?QDaHBy@FuBB{@B}@Dw@@q@@IFuBB{@?ADy@By@B{@B{@FaBDoAJsD?GFyA@Q@w@Bi@Bu@Bu@?M@w@?WAUAKASGe@AMGi@E_@SaBKg@Os@GWG[Mg@G[EUE_@Gc@Ew@AIE{@Iw@CQEWG[GUEOKa@Qi@Qk@Mg@Ka@AGG_@AICKAOAEGa@ESKc@Ma@EKAEM]EKAESo@Sw@Mi@CMAEI_@?AEUCSAMEUAUAMG}@GeAAS?I?MC_@C{@AYA]AOAK?AAc@CUCi@KqAM}AAGAEGy@Ee@ASCm@AK?A?ACw@AWAa@?ACm@?K?AC{@AG?q@A]@]?k@Dy@Fs@DSJc@@GRo@X{@V{@Ts@Rk@FWDOPs@DSHc@DYB_@HmAFmA@o@?wAAuB?WAaA" + }, + "start_location" : + { + "lat" : 52.9846785, + "lng" : -3.033995 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.0 km", + "value" : 1983 + }, + "duration" : + { + "text" : "28 mins", + "value" : 1694 + }, + "end_location" : + { + "lat" : 52.9737295, + "lng" : -2.9428882 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eA528\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "kbkbIxxaQn@S|Ao@l@YTG@AJALCXAv@?H@v@BJ?B?b@BX@H@^@B@T@LBb@F@@\\DB@NBn@NDB^R@?d@XRFH?N?NEDALKJMDEPg@NYJQDIJ]BGDSF[BOHg@BODSBQFk@Hw@?OB]@[?O?A?i@?g@EkAE}@Ck@Cq@A]AOG{@?KE_A?o@Bm@Bm@Dg@D_@Jk@BMBKHY@CFSHYTw@f@iBPq@Lo@DWFa@BYBWB]@[@S@I?S@{@?I?eA?wA@_A?w@?W@_@@WFi@@O@GRuANy@FYHc@N{@Ny@Jg@Lm@Jo@TkAHe@FWF]DUBMRgA@CJq@@ELo@BODSLo@DYF[Nw@@EBQHe@BOJe@BOHg@DMHg@Ls@DODUH_@@IHYDO@GNi@BIHWDQBGTw@DQFODOT{@Pc@HWDI" + }, + "start_location" : + { + "lat" : 52.9822985, + "lng" : -2.9634883 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.3 km", + "value" : 1284 + }, + "duration" : + { + "text" : "17 mins", + "value" : 1016 + }, + "end_location" : + { + "lat" : 52.9760743, + "lng" : -2.9246202 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eArgoed Ln\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ylibI`x}PGUAEAGUaA[sACOCGG]EMIe@a@iBEU_@cBESSgA_@gBOkAKcAAEQqBIkB?EEy@Ci@?QIaBASGy@E{@?EGq@?AKw@AQS_BIu@AAUqBGq@WwBKy@AKGk@WqB?CKs@Iw@CMC[AO?A?c@?y@?iA@I@cB@S?oA?k@A[CYImACk@Aa@Ey@?W?_@AmA?E?I?q@?I@EDqAHoAJaAJcA@GDOHK" + }, + "start_location" : + { + "lat" : 52.9737295, + "lng" : -2.9428882 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 309 + }, + "duration" : + { + "text" : "4 mins", + "value" : 240 + }, + "end_location" : + { + "lat" : 52.9779059, + "lng" : -2.9212155 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eBangor Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5069\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "m{ibIzezPEOAGCKG[CKI]GQIYM[IUKWCGYu@e@kAa@_AAEKSKY[u@KSMQMO[]w@_A" + }, + "start_location" : + { + "lat" : 52.9760743, + "lng" : -2.9246202 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.1 km", + "value" : 2061 + }, + "duration" : + { + "text" : "27 mins", + "value" : 1627 + }, + "end_location" : + { + "lat" : 52.9813504, + "lng" : -2.894803500000001 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eCloy Ln\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "}fjbIrpyPDM@W?]AwAAsA?G@aACcACc@Ac@EgAAIIoACq@Co@Cy@Cc@CkA?GAGCYEUKw@Ou@Ic@UcACGCOCCGSk@gAa@y@K]GSEUKc@COC[AWBa@@M@OHi@D_@BWDc@Fi@BW?M@MBY?Q?Y?a@?CAu@Ey@Ey@ACEs@?EGy@?EEs@C_@A[Ey@GmACg@Ck@CMCYE[Ke@SgAACMe@Qg@GQEMKc@AGMk@CMMg@EQOs@AIMk@GYO}@G]Q{@SiAAEAIYmAEQSq@M_@Qq@Ss@Mg@U}@GSI_@Mm@AGI]EWGWE]Mu@?AGa@CUAAEMIWCEIQQSIKSSMKQQQOIKACEIEKCIAK?E?G@I@MHSPUJI^]TUPWNW@ALYHOBGLYBM@C@M?K?MAMCMAIGKAA[q@O[IMYi@IOOWYi@IUCQ?K@UDQL]N[HONYLWJOLQNSPUHKHIRWFIRi@" + }, + "start_location" : + { + "lat" : 52.9779059, + "lng" : -2.9212155 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.2 km", + "value" : 1184 + }, + "duration" : + { + "text" : "16 mins", + "value" : 946 + }, + "end_location" : + { + "lat" : 52.98806709999999, + "lng" : -2.8825132 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "m|jbInktPKWk@cA_@s@EIg@cA]q@IOk@sAk@kAa@y@KSq@oAo@oAS[Wg@AAYi@O]GKc@u@o@aAi@eAk@cAcAgB}@{AsAwBEGU]AAm@k@WUKIc@a@CEaAoAS][c@a@m@U][e@[e@AAWe@_A}AQUS[EKAACKCIAI?M?K@O`@}BDSPmABY@O?s@" + }, + "start_location" : + { + "lat" : 52.9813504, + "lng" : -2.894803500000001 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 354 + }, + "duration" : + { + "text" : "5 mins", + "value" : 281 + }, + "end_location" : + { + "lat" : 52.9907865, + "lng" : -2.8804842 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eHollybush Ln\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "mflbIt~qPo@EgACaBB_@CSAKESIOKIIMSs@yAe@aAKW{@aBKQ[g@" + }, + "start_location" : + { + "lat" : 52.98806709999999, + "lng" : -2.8825132 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "12.8 km", + "value" : 12784 + }, + "duration" : + { + "text" : "2 hours 55 mins", + "value" : 10520 + }, + "end_location" : + { + "lat" : 52.9675717, + "lng" : -2.7081578 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eA525\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "mwlbI~qqPx@yDHa@p@iCn@iCDSPq@`A{Dj@}Bn@cCDQJa@FSz@uB?AFOxAyDb@mATm@Vm@To@FOL]Tm@\\_AN]HULUHMHQDG\\]?AJIl@g@FC^YXUXULK`@YBCXWBCT[@CNYFSFOL_@Rq@d@cBl@sBh@iBl@mB^qATq@d@aBFWVs@T_APy@VqARcA@ILw@Hy@BOBi@@W?UC{AAg@Cu@CaACs@Ac@EmBAq@Aq@?IA{@?O?_ABsAB}@D}@@GFi@@OF]DYFYR_A^iA`@oAx@wC@ERq@FSL[Rq@BGPg@To@`@sAh@gBZu@Pg@`@eA^_ADKVm@^_A`@kA@C\\cAb@kA^_AJUP]FKVg@@Ab@u@PWPWd@q@HMPWT]DEZg@@AVe@HOVq@\\}@BITo@DGTq@Vq@Xy@JUN_@Xs@Vi@BGRa@R]JSDKP]BEXk@^u@Pe@Ti@Pg@@ELc@BGNo@?CH_@DUH_@DUDULm@Le@@GNk@@CLc@Tm@Pe@Pa@@AXi@Tc@n@eA^o@`@q@Ta@LQ`@o@d@o@Xc@BCXc@Ve@Pa@Ri@Pm@Lm@BWD[H_AFs@@AFq@\\qBn@{CPw@Ns@HYFYRs@Ps@Pq@VcAz@}BDMxA}Et@wBj@_BJ[rBsGNs@Hk@?ABu@?C@g@C_B?yA?MBcABq@Fy@JmAFe@RqBTqBx@yGnAkKTqBJw@l@cFHw@Jw@Jy@l@aF?Gp@wF`@iD^cDTcB@MHw@Jw@Jy@Hw@Jw@Jy@Hw@Jy@Jw@Hw@Jy@@KHk@n@aFJw@d@sDh@uFFc@TiCHw@LwAHk@Dg@^kDHy@JiAX{CHy@Hy@j@mGVqCLsB@IFo@RyBHq@BWF_@Hk@BKLu@FYF[h@oCd@}BfAeFDSNy@DSLu@@CJs@Hy@Fi@F_A?IBm@By@?m@?m@EeBGgAASEy@AYC_@E{@KuBC{@EuBC{AEuCIwDE_A?SAc@AUAe@?o@@}A?e@@E?O@g@Bg@Be@@CRmEBWH_BBqA?I@i@@kC@iB?M@m@@{@?W@c@@_@@Y@Y@a@B]Do@B[NcBLsAFm@PsBLuAJsBBi@DqBBmA@qA@W@w@?C?M@m@@IBs@Bm@Bs@DaA@IFy@Bk@B[HgB@MJqBDo@B_@FiAFgA?EDs@Du@?CF{@Bg@F_ADo@D{@BUDo@FcA@K@OB]@QHy@Ju@F_@Hc@FYBK@G@E@AH_@Li@z@aEFSDUF_@H]@IBMTcAJe@DU@IFUDS?ANu@Ny@D[BO@EF_@?AFe@H{@HaBBs@?S?YA[?QAs@E]CO?IGYCQAEIYO_@ISKQ?AIMKOACUYIM]_@]a@{AeB[_@Y[MOSUACMQCGCCAA?CKSIQ?CAAEK?CEKCMGYGWKo@Gc@CUCYAUASAOAY?GAg@?IAU?EAk@Ac@?KAg@?SA_@CkBAo@EsCEeCCe@AU?GAMEm@E_@EWUoBKw@Ca@a@_DCSAKEWEa@E[C[Kw@OqAE_@CQQ_BCWCSMeAK{@SoB?ACUCQSuAK{@I}@AEGo@SyAUqBCOGg@E[C[c@iDAMGk@Ge@E_@WoBKy@Kw@Iw@Ky@_@iDi@cFGc@AUUkECqAEcA?u@EgCCy@?]Ai@A[CeAEq@EaACc@?KKcBEm@AGK{AKiAGcAGgAAGAO?KC_@Ca@IwAAWA]GqAAc@Ag@?AAe@AQAc@?S?GA[?_@?A?{@?i@?_@?i@?y@@gB@iA?C?i@?M@q@@UBoB@g@?MDkA@YB{@Bm@?M@O?GDq@DsBDo@@{@DoA?qA@u@Ay@C}@Cm@A]A]Gm@IiAK}@EWK{@CQKi@CUScAI]Mi@W{@CKMg@ACSk@Sq@EOc@qA?A[cAMe@Ki@Ms@?EEQKaAE{@Cq@Aw@?c@@aA@mABeAF_CDqAHyB@_@" + }, + "start_location" : + { + "lat" : 52.9907865, + "lng" : -2.8804842 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "92 m", + "value" : 92 + }, + "duration" : + { + "text" : "1 min", + "value" : 82 + }, + "end_location" : + { + "lat" : 52.9675243, + "lng" : -2.7067977 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eWrexham Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA525\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "ifhbI~|oOCi@@_@F}@@m@@I?k@?c@" + }, + "start_location" : + { + "lat" : 52.9675717, + "lng" : -2.7081578 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.5 km", + "value" : 1525 + }, + "duration" : + { + "text" : "21 mins", + "value" : 1277 + }, + "end_location" : + { + "lat" : 52.9668003, + "lng" : -2.6852537 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e3rd\u003c/b\u003e exit onto \u003cb\u003eWrexham Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5398\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow B5398\u003c/div\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "_fhbIntoOECCAAAACCCCEEMAMAIAG?I@I?MDQ@E@C@C@CBCDc@DY@IBGFQBc@BmAD{B?IAYCq@McAG[QiACQC]Ec@?KEw@AK?OAMCu@Eo@?K?s@?EDcAHo@Fc@BSXgBDQn@aD\\iB`@oAh@{AJYJYJ]FWDWF]Dk@Da@@w@?e@?e@?]EgAY_DAWIgBK_E?KAoA?o@?gA@{@?YHgD@g@@mAB_B?S@uA@_D?SBeB?QBsADkD?g@@[EQKMGIc@k@G[" + }, + "start_location" : + { + "lat" : 52.9675243, + "lng" : -2.7067977 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 287 + }, + "duration" : + { + "text" : "4 mins", + "value" : 240 + }, + "end_location" : + { + "lat" : 52.9689497, + "lng" : -2.6832075 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eMill St\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "oahbIxmkOUIi@WgAi@_@S_Ai@a@sAESA?Ki@GKQIcBaAGGI[" + }, + "start_location" : + { + "lat" : 52.9668003, + "lng" : -2.6852537 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 323 + }, + "duration" : + { + "text" : "5 mins", + "value" : 278 + }, + "end_location" : + { + "lat" : 52.9691597, + "lng" : -2.678522 + }, + "html_instructions" : "\u003cb\u003eMill St\u003c/b\u003e turns slightly \u003cb\u003eright\u003c/b\u003e and becomes \u003cb\u003eGreen End\u003c/b\u003e", + "polyline" : + { + "points" : "}nhbI`akO?K?ICOC[WgBCYGo@AEK{@E]Ec@Gq@Ai@?GAK?g@?y@?WH_AFk@BW@GDwAB[?G@OBU?Y" + }, + "start_location" : + { + "lat" : 52.9689497, + "lng" : -2.6832075 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "16 m", + "value" : 16 + }, + "duration" : + { + "text" : "1 min", + "value" : 15 + }, + "end_location" : + { + "lat" : 52.969017, + "lng" : -2.6784625 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eBridgewater St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5395\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "gphbIvcjOZK" + }, + "start_location" : + { + "lat" : 52.9691597, + "lng" : -2.678522 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.3 km", + "value" : 1297 + }, + "duration" : + { + "text" : "18 mins", + "value" : 1080 + }, + "end_location" : + { + "lat" : 52.9666519, + "lng" : -2.6599876 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eStation Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5398\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow B5398\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "kohbIjcjO?Md@aCLy@?C\\kBJs@Hc@BMTwARkA@CPeAZmB@Md@eBx@yCF[PeADWBY@SH_A@o@B{@@ODi@Fo@Fs@NoCBw@CsC?MBgBBwB?ODaCJyA@EFs@PqB@QLaA@G\\wBRuABONuB@iBAIAk@CcAO{BCm@Ci@A]Ce@K{CAKG{@" + }, + "start_location" : + { + "lat" : 52.969017, + "lng" : -2.6784625 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "4.9 km", + "value" : 4898 + }, + "duration" : + { + "text" : "1 hour 5 mins", + "value" : 3914 + }, + "end_location" : + { + "lat" : 52.9847646, + "lng" : -2.5976017 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eNantwich Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA525\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A525\u003c/div\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "q`hbI|ofOC?A@A?A?AAA?A?AAA?AAAAAAAAAA?CAAAA?CAA?C?AAC?A?C?A?C?C?A?C?A@C?A?C@A@C@C_@gACGACKc@s@sDUwAMcA?AAGCYQeBGmAAOCu@Ae@?iA@KBq@@QD}@NgB@M@MB]JiAJwA@i@LyABYDu@@O?K?I?E?G?I?M?G?C?E?C?GAG?G?ECWAWKgAAEIgAEa@CMS_BEWO}@]wAUq@GUM_@Ok@Mk@[eBCOMu@AGIi@c@sCc@mCKo@AKCKOeAa@gCa@cCM_AEWEYAIAKAGAMC[KgBAm@AK?M?S?m@@eB@U?a@?]@]@c@@e@@c@Bk@Ba@@U@M?K?E?OAk@E[Ei@Ga@Ig@G_@COIg@KgACOM_AEYESKc@c@{Aa@mAK[GSi@kBOm@IYIWOc@GMGKGKW]e@g@CEY[MQMQY_@OUMSQYS_@]o@IQ[k@Se@ACMWQg@[gAAISo@Oq@Ii@E_@Gw@MqBQmCASOkCEc@Eo@?I?KAS@U?O@WBWJoANuB@S@_@@e@?[?]C[Aa@Es@Gu@CWEa@Gk@AKK_AU{AMy@CI[kBY_BMm@K]IUMc@mAuDu@{B}@oCUq@m@mBI_@Kg@Ge@Iq@Ei@UeCO_BIy@YyCMeACWACOo@Uq@q@gBUo@EKOa@Uo@Yu@aAaCM]IUQe@AEOc@Mc@Me@Mg@Qs@EQ]sASw@K]Qi@Wu@IUEIOa@?CIQEQMc@GWEUEWG_@Ee@AKAGKiAKaAAKKw@?AAIE[COCOG[GU?AEMIWAICGYw@Y{@[_AQk@CGKYEMOe@EICGOe@A?Wk@CIAA[o@Yk@o@gAq@iAm@cAEGEG_@o@qBkDaAaBW_@CGAC]g@[e@UYQSIIEEEEa@[UQUMiAs@m@][S_@O" + }, + "start_location" : + { + "lat" : 52.9666519, + "lng" : -2.6599876 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "14.5 km", + "value" : 14496 + }, + "duration" : + { + "text" : "3 hours 19 mins", + "value" : 11942 + }, + "end_location" : + { + "lat" : 52.97765279999999, + "lng" : -2.4029284 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eWhitchurch Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA525\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A525\u003c/div\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "wqkbI~izN@qABw@Bs@B_@Bk@D]BWDg@FWDQNi@LSPURSlAgAJIFGz@w@LMLMFG@ADGd@i@R]LQ^s@^s@p@mAfAwBFI@EFKZo@Ve@^q@DKJYTe@LWb@}@`@w@Re@DML]Ru@DOBMFUNk@FURy@DKJ_@DKBIX{@DMDMFSPg@N_@Xw@FKDKNa@P_@Zw@P_@FODODOBG@KBI@O@QBa@@SBc@BgABg@@k@Ba@?O?I?K@Q?[?I?_A?g@?s@?M?{B@uA@u@@[Bi@?M@I@KD]@M@KFa@Fc@N}@P}@P{@Hk@BO?O?QAMAQESGUGOCKMg@Ka@SiAIc@QgACMc@eCSeAACMk@Mi@Sq@Ss@Wu@Ug@[k@CG[i@_@m@]m@Q_@MWEKEOCKEYEWGc@QcAGi@ESG]ACAGEQCICGAECEAEGMGKCEMSMQSUe@k@]a@GGQUIKEIGMGYK]EUG]EUCYAEAYCa@CSAe@Ca@Cw@EmACcACu@AEEoAEsAI}AIqAAMa@cFScCK{@Iq@Km@COO{@WwAKi@Ic@Ik@Ec@C]C_@AW?U?W?I@O@YDg@Do@B_@Do@Bi@@i@@{@DyADuDFyC?[?_@?Y?]AOAQAQ?AC[E[AME_@CIGc@Mw@G_@CUC_@AOAa@A_@AY?CA[C[?AIm@Io@Io@AQCQ?MAMAQAu@?GAs@AqACgB?c@AWAy@?A?c@A_A@cA@eA@w@@_@@Y@SBSBSDWBO@KFUFUFSJYFMFKHOFM\\m@^q@N_@FSNe@Nk@No@Ps@@GNk@Jg@BKFUHc@Ha@@OD[BWFs@N_CB_@B[HyAHuA@UH}ADsA@c@@a@@k@?YAUA]CU?AEg@Ee@Gg@QyACQE_@CYKkAU_CMsA?GQsBSuCAOGs@?EKsACa@E]Gm@M_AG[CKGYI]K[GOM_@ISi@gAuAkCMYGMGMCIM[?AGSGUAIEOEWCWCSASAQAI?OAW?M?O?]@]@WBW@Q@O@C?G@IDWBQDSDQHUDMN_@BIDIBKBOBOBMBMBQ@M@K@M@M@S@U@Q?K@]Am@@k@?_B?u@?Q?OAc@?e@?GAY?KAU?UAS?U?K?e@?Q?c@?I?M@W?G?M?M@cAB_C@[?M@W?G?M@i@?aA?]?}@?s@?o@AK?g@?S@m@?M?G?s@@y@?g@@qA?G?q@@S?g@?m@?S?U?IAOAQAWCSAMGa@EQMi@Oc@Sk@_AoC[}@Qa@EIEKKOAAGKSYAAMOy@aAs@iAOWYg@ACCCUa@MUS[QUq@q@ACOQEEEEGKEGEGEMEMGUOs@WwASeAMo@YgAACMi@EYAECKKu@Ku@AIEUAIAICECKM_@?AKWKWEIKYCIGMCIUi@s@cBMU[m@S[MMOQSSGIEIIOEMIWI_@GUGQKUCGCACCCCGAOAIAICGCGEKKIKEKCIAGAEAMAG?G?O@SHwB@M@U@M@I@QBILe@BODSFYFg@He@Jw@b@qCXeBP}@F[DOHYVu@J[FMBIFMHQ\\o@BGBE@C@C@I@K@I?G?I?MA[AYASAU?_@@O?M@O?I@MBS@M@G@EBOFUFUDOFUDKFMFMBCDKDGLQ\\_@RURSRSPQTQLK`@Yh@a@JIRQ@AFIHMHMJSHQL[Ng@HUBGLe@V_ABYF]BIBKDWBQ@I?GBK?G@K?E?G@K?U?SCiA?e@CmB?U?O?O?O@S@Q@KB[@GDe@BI?GDYZaCD[BW@M@M?M?C@K?K?G?[AMI_F?K?M?CAa@Aa@AaAAa@?s@?]@o@@k@FyBBs@?K?A@e@DaBFwC@cAB_B?a@?uG?C?{@AsD?WAsDCa@@_@AOIkACUEo@AWAOAYAW?I?E?S?U@I@UB]Hy@D[Dc@@S@]@S?S?[?m@?a@AqA?k@@m@?E?Y@c@?_@FqABi@Bi@Bc@Be@?O@Q?O?KAO?MCQCWCKCIAC?AGKEKKQKMIIMKMIKI_BaAMKEEGGGGACEGEMGOKW[gAW}@CMEIGW]kAe@_BEOCI?GCICSAS?K?I?O?S?U@k@B}@DmABm@FgBBi@D}@DgAJwBJkCF{A@aADaA?QDaAB_@@SBY@YD_@Bc@BU@KBYJ}@Hc@L{@D]RkAHk@@SBQD]?GD[?GJoA@OVgDBY@W@Q@Y@W?QAS?Q?MAIAa@?AIkAEk@A]AW?O?M@M@YBSBOJg@Ps@Z_BFe@DUFa@@Ir@yFRaBNyAL}@Jg@Ng@h@qAd@iATo@FWDUF]Hi@BQBc@Fo@@[@O?G@c@@eA?_A@u@@k@Bg@@Y?CD_@@UBSHy@L}AHy@@EX{CTuB`@cD@KB_@DY?E@O@O@S?M@m@?M?m@?G?yA?uAAqB?iA@{@?W@k@@}@Ba@?KH}BFqA@Q?MF}@BY@M@GDQBOBKH[JYFOFOVi@DI`@s@j@gALUJSBEHSFOFQBKFQDUJc@@EDSBK@KDWBOBYBQDo@Bq@@[@c@BqB@UBqD?AFaD@kA@c@?_@?g@?IAa@Ak@CaAAc@AGAq@G_BCy@A{@?ACgAAiBAw@As@@I?]@a@FoADoA@MDy@@g@JaCBY@SBS?ADWDW@EDYHYNu@@Ej@qCHe@Jy@De@Di@?ABi@@Q?q@@eA@K@}C?G?cB@S?_@@e@?c@FoB@SDy@HuB@M@m@FoB?M@O@q@Bk@?O?Y?_@?QAa@?QAIAg@?G?ECc@AGA]AS?IAO?CCe@I}BAk@AG?Q?M?M?MAk@@E?I?O?C?g@?U?gA?k@?IBi@@IB[@G@O?ABOBM?CFUJc@@G@G@?F[@GNk@FWH[DODSFUBI@GBIDODMLc@BK@CBGHWVm@\\c@p@}@FGZc@BEPYDMBI@MBK@O@U?c@?AAq@?I@Q?[B_@Fw@RgCD_@B]Fq@Fc@?CD[FYBQFWFULc@Ja@HSl@iBj@kARi@FS?CDMBOBS?C@K@O@]?WC[Ca@Ko@" + }, + "start_location" : + { + "lat" : 52.9847646, + "lng" : -2.5976017 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "43 m", + "value" : 43 + }, + "duration" : + { + "text" : "1 min", + "value" : 37 + }, + "end_location" : + { + "lat" : 52.9772961, + "lng" : -2.4026617 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eLondon Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eNantwich Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA51\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA525\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "iejbIhitMdAu@" + }, + "start_location" : + { + "lat" : 52.97765279999999, + "lng" : -2.4029284 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "5.0 km", + "value" : 5025 + }, + "duration" : + { + "text" : "1 hour 8 mins", + "value" : 4056 + }, + "end_location" : + { + "lat" : 52.9957438, + "lng" : -2.3401312 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eNewcastle Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA525\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A525\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "ccjbIrgtMGy@Ec@CUAQCYCk@?e@Ag@@q@BuB?QBsBAm@?q@?IAy@A[KuA?CIy@?IEe@Ec@A]A[?IA_@?[?KA}@Aa@?IAW?ICUEi@Gk@AGCWE[?COqAG_@MkAGq@AME[?CAKEm@A[A_@?I?O?M?Q?[@e@@_A?}@EwC?YA}@CyC?uAAi@A_@AQAMC_@UqBCKIw@AIQ_BESCOI[YaASq@Mc@Mi@Ea@EWCk@Ca@AUAc@AGA[EWE[ESMo@Kc@IWOg@G[I_@Im@M}@M}@Ee@Kw@Kg@G_@Kk@Ic@GWOi@Me@Ma@IWQg@Yy@EK}@cCQg@K_@W{@G_@Mw@Kw@Iw@KmAK}AI{AIsAG_AEu@?EE]CSEYIYM[KOEIS]CG]a@w@w@UWg@c@eA}@WSICGCUAq@AK?M?IAAAICOGOKMKMOe@uAOc@a@q@}BgEWi@Ue@GQWm@EKCMEQCMi@cESwACW?[@W?YB_B@aA@U?c@@kA?k@Ac@?WCi@AQ?OAYAOC]Ei@G{@Gm@Gi@Ig@G[Mi@AGe@cBu@uBGMUm@Wq@M]GMG_@CIAKAI?I?K@Y?EPeDD}@B{@Bi@?Q@{@?y@?iA?a@Cc@CYAGE[GUUu@CIOe@e@kAUm@i@iAGMGQOc@Kg@Ga@C]?a@?_@@k@Bk@@O@_@?[ASAUEYESCICOQm@Qi@KWIOACIOe@q@a@i@]_@[We@]IGm@_@IEYQGC_@Wg@]e@_@SS]]IIs@s@]_@QQKMUSi@c@_@Y[Ws@i@QUIMKOQY}@mBs@{Ao@qAISGMGUEUGUC[CSAKGkAAMGiAEo@Go@SkBY{B?AKw@]uCOkAIm@KcAEk@?MCq@Am@CQEWCKMm@My@Iy@Kk@GWGWEMCIEMGMGMUOUMUESCQA" + }, + "start_location" : + { + "lat" : 52.9772961, + "lng" : -2.4026617 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 149 + }, + "duration" : + { + "text" : "2 mins", + "value" : 124 + }, + "end_location" : + { + "lat" : 52.9960445, + "lng" : -2.3379982 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eVicarage Ln\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "kvmbIx`hMKq@Im@AQAW?oBAa@E_@Gm@CIKe@AO" + }, + "start_location" : + { + "lat" : 52.9957438, + "lng" : -2.3401312 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 201 + }, + "duration" : + { + "text" : "3 mins", + "value" : 169 + }, + "end_location" : + { + "lat" : 52.99649669999999, + "lng" : -2.3351003 + }, + "html_instructions" : "Continue onto \u003cb\u003eCastle Ln\u003c/b\u003e", + "polyline" : + { + "points" : "gxmbInsgMGqAE_@OuB[kDCYAs@EUUkA" + }, + "start_location" : + { + "lat" : 52.9960445, + "lng" : -2.3379982 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.3 km", + "value" : 2325 + }, + "duration" : + { + "text" : "34 mins", + "value" : 2057 + }, + "end_location" : + { + "lat" : 53.0012072, + "lng" : -2.3044315 + }, + "html_instructions" : "Continue onto \u003cb\u003eHungerford Ln\u003c/b\u003e", + "polyline" : + { + "points" : "c{mbIjagMGk@Km@Ig@Ge@AGCm@?C?e@CSCMEWMMISGY?KAMAO?]?g@@aA@y@?a@@Y@]?E?G?UCUIa@Sg@i@qAEGWk@e@}@Sq@?ACKCMCSAGC]C[C]ACAq@@sA@g@?[B{A@M@[@O?U?sAA}@Ck@Ck@?GCe@AQ?I@MA}@AkAEcBAu@?]@yA@eAB{@Bm@Di@Ba@B[BYB_@?OLsBJuB@KBo@By@@KBo@@QB]@QBQJk@Nq@@G@G@E@I@K?M@S@U@C@OJe@DWH]FYD[F[BO@I?C@E?G?IAGAECIACACGIOQ]a@OSMM]a@a@i@KI[i@m@w@EEMSEMSe@CGS_@EI[m@Wc@EGMQa@a@e@a@MSIUUo@Um@Uk@?CUo@Uo@So@Uo@EKOc@Um@Uo@EIMUEIIOOSAAM[IQKYISAGSg@AEI]EOACAO?e@?ADy@BUFgA@Y?YA[?AAo@G}DAkAEyBA{@?g@?E@]Bc@?_@D_D" + }, + "start_location" : + { + "lat" : 52.99649669999999, + "lng" : -2.3351003 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.2 km", + "value" : 1178 + }, + "duration" : + { + "text" : "17 mins", + "value" : 990 + }, + "end_location" : + { + "lat" : 53.0054381, + "lng" : -2.2896708 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eHighway Ln\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "qxnbItaaMMBYBc@@E?A?CACCGECCCGCG?OA}@?g@A{@CsBA_A?{@Ay@Ae@?UA{@?UAe@?Y?a@?O?c@?G@]BY@c@?U?KAI?EAGCECKYq@AEM]CKEKGUCOCIG[COG]GYMq@?CMk@Ka@IW?AISK[CKQc@IU]aAAEQg@}@kC[iA?CGSG]?AQ}@e@}C]yACOMm@AE?AOu@O{@OmAEu@E{AI}@CWCa@AMG_@CGGOUU[_@{@}@AA]]GM" + }, + "start_location" : + { + "lat" : 53.0012072, + "lng" : -2.3044315 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 267 + }, + "duration" : + { + "text" : "4 mins", + "value" : 229 + }, + "end_location" : + { + "lat" : 53.0037025, + "lng" : -2.2869541 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eThe Village\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "_sobIle~LfBiCrAmB@AXa@@CLUHQDG`A{BJ[Tw@" + }, + "start_location" : + { + "lat" : 53.0054381, + "lng" : -2.2896708 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 855 + }, + "duration" : + { + "text" : "12 mins", + "value" : 724 + }, + "end_location" : + { + "lat" : 53.00742589999999, + "lng" : -2.2771462 + }, + "html_instructions" : "Continue onto \u003cb\u003eKeele Rd\u003c/b\u003e", + "polyline" : + { + "points" : "chobIlt}LL}@@CXcBFi@Fk@Ba@@i@BiA@aB@IAU?[ASKcA]gBWaAQa@KUEIEKWm@IO_@k@[e@KQk@y@KQk@y@cCiE_AeBq@sAMUKQmA}BMUKSKSaAoBMK_@[" + }, + "start_location" : + { + "lat" : 53.0037025, + "lng" : -2.2869541 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "3.1 km", + "value" : 3140 + }, + "duration" : + { + "text" : "41 mins", + "value" : 2477 + }, + "end_location" : + { + "lat" : 53.0085759, + "lng" : -2.231214 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eKeele Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA525\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "m_pbIdw{LDkAB}@?o@?e@?c@@UAm@Aq@Ag@IcCEwACy@GiB?G?CAo@?m@?{@BmABmABiB@YDyADaBBsABy@PkM?c@@]@WB_@BY@I@I@IJy@@E?C@E@C?C@E?q@A}@CC?AA??AAA?A?AA??A?A?AAA?A?A?A?A?C?A?A?A?A?A?A@A?A?A?ABCC]A[C[?K?K?G@QAg@C_A?EEmAAuAA]Am@?kA@k@?M?C@_AF_B@OHuANeBNqABUFo@@GJy@@WFo@B[@YDy@@KHwAHmBDu@@]?W@U?K?A?I?o@@IAe@?SAq@?MEsAASCaAEm@AOE{@Bq@?K?K?EASAk@?G@A?C?A?G?G?A?C?C?GCG?CACACAECC?AAAAAIc@G_@Ku@Aw@IeAAQCYKcAGk@IcACME_@UkBG]McAGm@E_@?CKuAGs@KoAGeAAOCi@Ei@GqAAC?IAKI_BEeACu@Ae@AU?IAw@@u@@k@Bs@FqAJaBHeAFs@F_ADa@Bi@Bo@Bw@@s@@u@@mB?}A?Q@_@?Y@_@@q@BeADiC?O@i@@q@A{@Aa@C]?IEo@AKGgAMsAAUCMM}@AICQCME]Kg@Q_AKm@QoAG_@AMGg@E[Gc@Gu@Gm@CMCWC[CMCKGUEG" + }, + "start_location" : + { + "lat" : 53.00742589999999, + "lng" : -2.2771462 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 123 + }, + "duration" : + { + "text" : "2 mins", + "value" : 93 + }, + "end_location" : + { + "lat" : 53.00836049999999, + "lng" : -2.2294546 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eBlackfriars Rd\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "sfpbI`xrLHgEBk@@SB_@DSDOJS" + }, + "start_location" : + { + "lat" : 53.0085759, + "lng" : -2.231214 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 149 + }, + "duration" : + { + "text" : "2 mins", + "value" : 133 + }, + "end_location" : + { + "lat" : 53.0092516, + "lng" : -2.2278154 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eBlackfriars Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA53\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "gepbI`mrLO]Ws@AAO_@EKAEWg@Q[GK_@k@O]EOGU" + }, + "start_location" : + { + "lat" : 53.00836049999999, + "lng" : -2.2294546 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 161 + }, + "duration" : + { + "text" : "3 mins", + "value" : 184 + }, + "end_location" : + { + "lat" : 53.0103228, + "lng" : -2.2264706 + }, + "html_instructions" : "At \u003cb\u003eBlackfriars Roundabout\u003c/b\u003e, take the \u003cb\u003e3rd\u003c/b\u003e exit onto \u003cb\u003eFriars' St\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "yjpbIzbrL?G?C?C?C?C?ICIAEAA?CAAAAACA?AAAAAAC?AAC?C?C@C?A@C@EBY]EEEGMSQOS[IMYc@GKOWGM" + }, + "start_location" : + { + "lat" : 53.0092516, + "lng" : -2.2278154 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 191 + }, + "duration" : + { + "text" : "3 mins", + "value" : 176 + }, + "end_location" : + { + "lat" : 53.01081, + "lng" : -2.2238928 + }, + "html_instructions" : "Continue onto \u003cb\u003eHassell St\u003c/b\u003e", + "polyline" : + { + "points" : "oqpbIlzqLGQAOAGACGc@CIEMIY]q@Uo@Dg@F[Ce@Ca@G}@AS?]?a@" + }, + "start_location" : + { + "lat" : 53.0103228, + "lng" : -2.2264706 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "16 m", + "value" : 16 + }, + "duration" : + { + "text" : "1 min", + "value" : 14 + }, + "end_location" : + { + "lat" : 53.01095729999999, + "lng" : -2.2238669 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eBarracks Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA527\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "qtpbIhjqLMAOA" + }, + "start_location" : + { + "lat" : 53.01081, + "lng" : -2.2238928 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 398 + }, + "duration" : + { + "text" : "6 mins", + "value" : 376 + }, + "end_location" : + { + "lat" : 53.01223599999999, + "lng" : -2.2183706 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eHassell St\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "oupbIdjqLG]CQAWKcBASEm@?MCYGo@EYIe@EUIe@Mw@a@mCs@_Da@kBMw@S}@CQEWAO@G" + }, + "start_location" : + { + "lat" : 53.01095729999999, + "lng" : -2.2238669 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "14 m", + "value" : 14 + }, + "duration" : + { + "text" : "1 min", + "value" : 13 + }, + "end_location" : + { + "lat" : 53.0123525, + "lng" : -2.2183013 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003ePrincess St\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "o}pbIxgpLUM" + }, + "start_location" : + { + "lat" : 53.01223599999999, + "lng" : -2.2183706 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 199 + }, + "duration" : + { + "text" : "3 mins", + "value" : 188 + }, + "end_location" : + { + "lat" : 53.01221719999999, + "lng" : -2.2153435 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eGeorge St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA52\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "e~pbIjgpL@k@?u@DcBByB?EBeAFmC?Y@[" + }, + "start_location" : + { + "lat" : 53.0123525, + "lng" : -2.2183013 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 118 + }, + "duration" : + { + "text" : "2 mins", + "value" : 101 + }, + "end_location" : + { + "lat" : 53.0122424, + "lng" : -2.2136556 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e towards \u003cb\u003eShelton New Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5045\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "k}pbIztoLKSAI?aA?{B?qA?K@KFI" + }, + "start_location" : + { + "lat" : 53.01221719999999, + "lng" : -2.2153435 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.8 km", + "value" : 1814 + }, + "duration" : + { + "text" : "24 mins", + "value" : 1462 + }, + "end_location" : + { + "lat" : 53.0165164, + "lng" : -2.1879779 + }, + "html_instructions" : "Continue onto \u003cb\u003eShelton New Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5045\u003c/b\u003e", + "polyline" : + { + "points" : "o}pbIjjoL?[?oA?e@?k@C_BAu@CsAIsA_@}EYyBsAeKM{@CUIaAGs@I_AC_@Eu@E}@EoA?[AiD?I@yAGo@B}B@qA@w@@e@FgD@U?]?iA?c@EeAGcAIs@AKG_@Ii@ESMm@GWI[_@aB]kAIa@CQGm@Km@Ms@?EY}ACOKq@OaACQSeAESO{@Ii@u@wDI_@IYGSM_@I[Ic@CGEUIg@YaBMo@M}@G_@SmAO_AG_@c@cDEYMcAQcAOq@" + }, + "start_location" : + { + "lat" : 53.0122424, + "lng" : -2.2136556 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 165 + }, + "duration" : + { + "text" : "3 mins", + "value" : 153 + }, + "end_location" : + { + "lat" : 53.01725589999999, + "lng" : -2.1858743 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eShearer St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eB5045\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "gxqbIzijLIGAEGc@AIAGQcAAGCEKg@EQe@eBCKg@cB" + }, + "start_location" : + { + "lat" : 53.0165164, + "lng" : -2.1879779 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 216 + }, + "duration" : + { + "text" : "3 mins", + "value" : 207 + }, + "end_location" : + { + "lat" : 53.0183592, + "lng" : -2.1832346 + }, + "html_instructions" : "Continue onto \u003cb\u003eHavelock Pl\u003c/b\u003e", + "polyline" : + { + "points" : "{|qbIt|iLAYUo@So@o@kB{@sBIWIW[cASaA" + }, + "start_location" : + { + "lat" : 53.01725589999999, + "lng" : -2.1858743 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.4 km", + "value" : 424 + }, + "duration" : + { + "text" : "6 mins", + "value" : 342 + }, + "end_location" : + { + "lat" : 53.0216343, + "lng" : -2.1811144 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eSnow Hill\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5006\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A5006\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "wcrbIdliLW?SAQCWGOMGEGGUk@KUk@}AGQa@gAKYk@u@EEMQKKMIWGk@H[DI@m@FQ@aABQCGAYEIEOK" + }, + "start_location" : + { + "lat" : 53.0183592, + "lng" : -2.1832346 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 310 + }, + "duration" : + { + "text" : "5 mins", + "value" : 318 + }, + "end_location" : + { + "lat" : 53.0237135, + "lng" : -2.1780842 + }, + "html_instructions" : "Slight \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eBroad St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5006\u003c/b\u003e", + "maneuver" : "turn-slight-right", + "polyline" : + { + "points" : "exrbI|~hLO[q@w@SYc@g@GCGMIOQ]MWs@yAWg@k@aAi@iAMWS_@OSOQGC" + }, + "start_location" : + { + "lat" : 53.0216343, + "lng" : -2.1811144 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "38 m", + "value" : 38 + }, + "duration" : + { + "text" : "1 min", + "value" : 40 + }, + "end_location" : + { + "lat" : 53.0235056, + "lng" : -2.1776384 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eBethesda St\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "eesbI~khLf@wA" + }, + "start_location" : + { + "lat" : 53.0237135, + "lng" : -2.1780842 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 120 + }, + "duration" : + { + "text" : "2 mins", + "value" : 119 + }, + "end_location" : + { + "lat" : 53.0237517, + "lng" : -2.1758988 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eAlbion St\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "}csbIfihLQkBKeAKcCEe@" + }, + "start_location" : + { + "lat" : 53.0235056, + "lng" : -2.1776384 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 99 + }, + "duration" : + { + "text" : "2 mins", + "value" : 97 + }, + "end_location" : + { + "lat" : 53.0241357, + "lng" : -2.1747893 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eAlbion St\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "mesbIj~gLMBMMCECEEICM?YDeACIKYUk@" + }, + "start_location" : + { + "lat" : 53.0237517, + "lng" : -2.1758988 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "5 m", + "value" : 5 + }, + "duration" : + { + "text" : "1 min", + "value" : 5 + }, + "end_location" : + { + "lat" : 53.0241246, + "lng" : -2.1747121 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eAlbion Sq\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eOld Hall St\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "{gsbIlwgLBO" + }, + "start_location" : + { + "lat" : 53.0241357, + "lng" : -2.1747893 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 275 + }, + "duration" : + { + "text" : "4 mins", + "value" : 243 + }, + "end_location" : + { + "lat" : 53.0256358, + "lng" : -2.1715526 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e to stay on \u003cb\u003eAlbion Sq\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eOld Hall St\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow Old Hall St\u003c/div\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "wgsbI|vgLw@mAKKEKUa@m@cAEKe@w@AGq@aCOm@I[EU[yAEc@" + }, + "start_location" : + { + "lat" : 53.0241246, + "lng" : -2.1747121 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.1 km", + "value" : 1089 + }, + "duration" : + { + "text" : "14 mins", + "value" : 868 + }, + "end_location" : + { + "lat" : 53.0236009, + "lng" : -2.1559845 + }, + "html_instructions" : "Continue onto \u003cb\u003eBucknall New Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA5008\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A5008\u003c/div\u003e", + "polyline" : + { + "points" : "gqsbIdcgLCc@@u@@m@D}BD}BB}A@c@@i@DkBDyA@_@DkC?S?C@URiJH{D?S@OHmDDsAHkFAW@y@Dc@Be@BWFc@DYTiAR{@DSdAkDj@iBRq@DOTgAVgANy@DWJw@BMFU" + }, + "start_location" : + { + "lat" : 53.0256358, + "lng" : -2.1715526 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "9.9 km", + "value" : 9943 + }, + "duration" : + { + "text" : "2 hours 22 mins", + "value" : 8517 + }, + "end_location" : + { + "lat" : 53.0151116, + "lng" : -2.0171128 + }, + "html_instructions" : "Continue onto \u003cb\u003eBucknall Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA52\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A52\u003c/div\u003e", + "polyline" : + { + "points" : "odsbIzadLJw@Fa@LiAFk@Hu@N}AFaAFs@BYDq@Ba@?I@[@]@e@?O?iA?GAk@AUAUAYAMC]AKAMCO?G?OOiAOkAIg@s@}Ek@wDKu@GWOgAW}AOaAU}A_@eCO_AKo@Ks@QmAU_BCS[{BOs@G]EWEYEYK{@AYAO?K?MCm@?i@?w@?m@@o@?q@?w@?m@@S?K?U?U@y@@kA?uA?[BoAFcBVuHJ_DBi@@[?M@[BWD]Fk@DWHe@@KH_@Je@BGBMHUV{@FURy@H[HYXgAViAv@cD`@_BJc@f@uBn@kCDSRy@Nk@Py@ZqAVcADSDUF_@D[@OJmAJsADg@D[DWD[Lo@Tw@La@Ro@J[@EZ_AJYDM@GJ]DUDSHm@Do@HsAFmA@KB{@DwA?]?_A@i@?S?IBmE@qA?G?s@@]?]?O?c@@}B?{@?Y@aD@I?a@?G?Q?i@?G?I@a@?G?Q?a@?E@mA?o@?{@@iC@y@@iA?M?c@?WA_ACs@Ey@OcECi@AOEoAQeEACGqAAUScDK{AAWAo@MoBA_@Cg@Ay@?g@@e@Bm@BYDq@@SNyAR{B@OB[Hy@Dc@H{@Dq@FoABs@Am@?E?AAu@?C?KEsAAGAO?KEe@?GGy@MiBIcACQCc@Iy@E_@Iy@AKOcAMs@EYAGKc@EOG]IUGQIYe@qAm@cB[}@Um@Qk@Si@m@kBACEIGScAaDSo@ACMa@CIMa@EOEQCIQu@Kc@Ia@EWKk@AKCWIo@IeAGeAEy@WwDQsB?GUuBCQE_@AEIu@I}@AGCOOwAAIAIQ{ACKKs@Ii@GY]yAa@aBg@kBGWg@mBm@cCe@mBYgAYwAIm@Gg@Eo@AQIcB?]?]?K?a@?S@[@WD_AFu@Bi@HkA@IDo@FcALkBLuBj@{H@GHwAF_ADw@B[?I@S@KBc@BsA@q@B_ADmABk@Bk@Bq@FkAF_A@Ub@sH@UL{BXmEVoBHi@FWF]J_@H[FO@GBIDKHQN]HSRe@FKBGJWHUBI@EDMDMDOPo@Ru@Nk@Ru@Le@H_@R}@DUD[N{@@KHk@`@eCHi@Fm@Fi@BOBW?ID_@@O@ODg@Du@@M@UFw@Bk@@QBg@@Q?ABi@@OBa@BW@SBUB]B]@M@KBSBWHq@Fc@D_@LaAHg@R_BTsATsAPgADSFc@@E@EDWN{@Jk@Hi@Jk@@MHa@@G?AHg@F]BQBKF_@He@BM@IBO?ALu@Jk@@IHe@BQDYBMFc@D]?EDYBS@M@O?IB[@Y?C@Y@_@@K?K?Q@_@?W?K?[A]?]?]AS?A?Y?EAWAa@AW?[Ce@?MEeAEkAEiAGoAGqACq@Cm@AICq@AOCi@Ak@AW?_@Aq@@q@?E?W@U@M?KDo@@WB]BWD[Fe@F_@Jo@N_ARaATeADWVqADQTiANaADYJq@PiANgADY@C@OBUD_@HcALsAHq@DWDYBKBKBOHW?C?AFSFOFWDKDINc@HWBGFUFSJ[Tu@FMH[HWLa@Le@Ji@F[Ha@Fa@BQD]BQ@QDg@B[Be@@Y@W@_@?[@[B_B@E@k@@{@?G@c@?O?E@W@c@B[Ba@@UD_@BO@S@?BU@CDUBODQFUHSL[FMFMJUJQLUJSZc@T[TYBCFIRWJOJMFKHKBEDGFKDIHQHSFMJWL]L]d@wABKDK?A^iAHWJYLc@FUDM@GDQDSJg@Jm@Fe@Hq@Do@@K@M@SD{@TeERuDFeADo@Fk@Dm@F_@D]Fa@" + }, + "start_location" : + { + "lat" : 53.0236009, + "lng" : -2.1559845 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "21 m", + "value" : 21 + }, + "duration" : + { + "text" : "1 min", + "value" : 16 + }, + "end_location" : + { + "lat" : 53.0150198, + "lng" : -2.0168442 + }, + "html_instructions" : "Continue onto \u003cb\u003eLeek Rd\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA522\u003c/b\u003e", + "polyline" : + { + "points" : "moqbI|}hKF[HY" + }, + "start_location" : + { + "lat" : 53.0151116, + "lng" : -2.0171128 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "13.4 km", + "value" : 13446 + }, + "duration" : + { + "text" : "3 hours 10 mins", + "value" : 11417 + }, + "end_location" : + { + "lat" : 53.0264581, + "lng" : -1.8389336 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eA52\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "{nqbIf|hKG[CYGg@AKGo@CMK_AK}@Kw@Ku@QcAS_AMm@Mg@Oi@M_@GUAECCOa@KYSc@e@aAIOa@u@We@EIUa@m@gAq@kAWc@_@m@mAiBCEo@}@Q]OWSg@Oa@M]Ka@Mc@Kc@G[G[AGIc@CSAKGe@Gw@IcAEi@AOMcBa@wFC[C_@KwAEo@E[CWE_@Kw@AKGe@Gq@CYCSEk@Ew@KsAKoAIaAASEe@CUGs@Cc@Ck@Ey@E}ACm@GgAGuAAI?K?Q?O?M?A@YFcBLeD?A?O@Y@U@W?c@?W@Y?CAw@AmAAoAAY?MAIAa@Ay@AKCcAEeCAW?C?]?]@SBS@OHi@Jo@PkA@GF_@DWBW@W@W?Q?c@?_@?m@?s@ASCsACiBA_@CoAAy@Cg@CyACoA?c@?WBYBSFUHUTo@^}@HUHQLYVg@V_@PSPO@AVWX[NQ@ANUBEJMLW@?BGHMHO@CBGBKBKDOBM@O@M@MAKAKCIGOCEIOEKKYIUI]WkACIOg@CIa@oAYu@Uo@Qe@CGAAO]EKO[CGCGACGOMYMa@EOGUI]Ms@Ow@CSKg@AMGYKk@Ms@?COu@AI?AKk@Mu@Kq@COc@kCQeAKo@O}@AEAEG]EWKi@AA?CAEMo@Gi@AG?GAMCc@Cg@E}@A_@AOA[?GAGASAW?EAQ?Q?Q?A?U@SB_@Di@?EBe@@M?G?G?E?MAS?CAE?GCQE_@?GGi@K}@K{@AKIu@CSAW?C?GAK@U@UDi@LmA@GNaBNaC@Y@a@@]AO?WCc@Iw@CUCQEQIWCGEKMOMO]_@_@c@e@k@]c@AAYa@ACUYWc@a@w@Wk@EMQ_@Sc@CGMYKOUe@S[GKAAOYACQYEKGKAACGIU?AI[GUCSACE_@?AEg@AQAO?CCYAKGy@ASC[I[KWMYMUACCGACOWAAWc@KQUa@GMCIEK?AAIAE?CE[?IAOAC?EC_@?MAECe@Eq@AI?EAI@I?C@KBKBIDE@ADEDCBAB?@?H?JDNFHBLFB@JDD@H@H@F?@AB?JEDCJILIFEHIDCFEFEJG@AJEFEHGBARIHENIFCHEPIDAn@[HGHCHEBCVKLIRK@ANMJMNQHK^g@HMRUFGTW@CPOHKDEDGBEBK@KAUAIAGCGGWUcAI]Ki@Km@Gi@Ge@Eg@Eg@Co@AS?S?S@]D[@QFe@Jy@Fk@@O@IFk@BO?EFa@D_@PiBDa@Fm@@IH{@@S@A@WHeA@G@O@U@KFs@B_@Bg@BQ@WBa@?AB_@@I@M?O?EAGAI?ECGAGCIEKIMKQACGKEGAAEKAAGSIQEMCOEOCOEWIc@CQMw@?EIk@Is@Ky@AIEk@IaA?ECUCYIw@Ea@E]ACCU?IIu@E_@Ge@CMCQACCKEKIWKUKYCEAEMYM[Sg@[u@Y{@Si@Ws@O_@GMQa@Uc@m@}@a@i@a@i@CGU_@CEc@u@Wg@cAqB{@cBKUSc@a@}@_@}@]{@ISe@mAKUKW?AISw@mBg@oAk@sA_@aAm@}AWm@q@cBi@qA{AwDMWc@eASe@a@cAQe@GOYeAK_@U_AMe@]{AUaAMi@G_@EW?MIa@Ii@G_@AAAKEIKSOWGKEIIQCECGAEAACKAICIAKAG?EAIAMAM?M?A?_@@Y@m@@y@BgA@_A@M?m@@a@?W@{@@cBBoA?M?m@@E?u@@k@AO?I?[C[C_@E]Ge@Gg@EUEYG]CIKg@?CQs@IYGYo@iCMg@YkAS{@WiAKg@I]EWAIGa@CWCWEe@Ei@E}@?UAWA]?a@?a@?_@@g@?_@Be@Bg@@[Fy@?GRsCBSBg@@QDs@?GBq@DcA?C@w@Ag@Ca@AOCUGo@AOEe@CUASAS?S?Q?O?Q@S@UBS?EHs@?AHw@@MFk@Di@?ODk@Dg@Fe@Fa@H_@\\uAPs@Rq@TmALo@DUF_@Hg@D]r@eHJ{@XsCBWH}@Hs@BYNwABURmBFg@Hy@Fm@@KBQBYDa@FcAB[?_@?Y?A?AAa@K{DCsAAo@CcAAs@?EEoAAg@IyAI}@OmAWiCEc@Iy@O{AOmAMkAEk@Eq@?C?g@AS?O?k@?qA?e@?{@A{@?Y?a@AsD?y@?_@@[@{@?EHiADc@@GHq@?CNgALeANq@v@yE\\mBF_@DUdB}J^qB^uBHi@\\mBb@qDDa@VgCFe@Fe@Je@H_@FSRo@Ti@Zm@Xe@Xg@DIh@eANe@Tu@He@LcABSB_@Bg@?c@?A?u@?CAu@C_AAq@AIA{@C{@Ai@GkDEsAGoBMyDEy@SkFC{@C_@KsAIy@CMEi@Gi@AOE{@Ey@E{@Ey@?KEo@A]?[Ag@@S@k@FiAB{@B]@[F{@Bm@FgAHqABa@D{@Dy@F{@HeBFiADy@B_@@[LuBHuABi@@?Fw@R}ABUJw@BWXuBNsAJw@TgB@IJw@@EXgBBIf@yCz@}ELq@P_ALk@Lu@Nu@?ALu@TuABWFy@Hy@Fu@b@mDBQP_BHaADq@HqA@c@?q@CeACg@AQGy@QsB?IGo@[kDKy@Iw@?AKw@Ge@SgAAGYmAESSq@IWIYSq@Qq@Sq@IWo@kB" + }, + "start_location" : + { + "lat" : 53.0150198, + "lng" : -2.0168442 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.1 km", + "value" : 2059 + }, + "duration" : + { + "text" : "26 mins", + "value" : 1571 + }, + "end_location" : + { + "lat" : 53.0146556, + "lng" : -1.8158722 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eDale Ln\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "kvsbIhdfJFWBODWXmBLw@RqA`@kCXoB^eCJw@D]x@wDDW^mAd@cBRq@Rq@Rq@?ATm@\\eA`@kAFON[Vi@z@cBPYXi@lAyBZe@Xe@@Ad@aAHURo@DIPc@Na@FIt@oAJQLS\\c@v@gANSZ_@@CZc@\\e@Xe@LUJQf@}@b@aATi@h@eBRq@@?n@{B^gAz@uCLc@DMf@aBjA{ARY\\c@DGV[Zc@Zc@p@cADEx@gAZc@RYFKZg@Xg@dAiB`@{@Vk@lAyBr@sA@AVg@Vk@LYHQNYJQHO" + }, + "start_location" : + { + "lat" : 53.0264581, + "lng" : -1.8389336 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 348 + }, + "duration" : + { + "text" : "5 mins", + "value" : 274 + }, + "end_location" : + { + "lat" : 53.011931, + "lng" : -1.8134143 + }, + "html_instructions" : "Continue onto \u003cb\u003eTown Head\u003c/b\u003e", + "polyline" : + { + "points" : "slqbIdtaJPKFCZQDA^M\\QDCPMLMVUROVSNILG^WZSBE^[FE\\c@n@cADIT[LQ`@e@\\a@" + }, + "start_location" : + { + "lat" : 53.0146556, + "lng" : -1.8158722 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.2 km", + "value" : 157 + }, + "duration" : + { + "text" : "2 mins", + "value" : 126 + }, + "end_location" : + { + "lat" : 53.0116284, + "lng" : -1.8112512 + }, + "html_instructions" : "Slight \u003cb\u003eleft\u003c/b\u003e onto \u003cb\u003eMain St\u003c/b\u003e", + "maneuver" : "turn-slight-left", + "polyline" : + { + "points" : "q{pbIxdaJDSDSDUHa@BSASAKEQEQ?M?W?[@S@Q@[Jq@BMBM@MBIJM" + }, + "start_location" : + { + "lat" : 53.011931, + "lng" : -1.8134143 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.1 km", + "value" : 129 + }, + "duration" : + { + "text" : "2 mins", + "value" : 107 + }, + "end_location" : + { + "lat" : 53.0117619, + "lng" : -1.8093312 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e towards \u003cb\u003eSallyfield Ln\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "uypbIhw`JC}@CWASCa@As@CgAAi@Ag@Ae@" + }, + "start_location" : + { + "lat" : 53.0116284, + "lng" : -1.8112512 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.7 km", + "value" : 656 + }, + "duration" : + { + "text" : "8 mins", + "value" : 491 + }, + "end_location" : + { + "lat" : 53.0112162, + "lng" : -1.7998788 + }, + "html_instructions" : "Continue onto \u003cb\u003eSallyfield Ln\u003c/b\u003e", + "polyline" : + { + "points" : "ozpbIhk`JCc@?q@@c@Du@Be@@WHaAFu@Dg@BUDc@@KFm@@UJqA@KBi@@O@e@?u@?oA?y@@IBu@@CB{@BY@a@@a@@U?ABUDMDI@CHKPQHMBGBS@W?_@Ae@Ck@Ew@G}@AUG_B?OEk@Cy@AOGm@Gq@" + }, + "start_location" : + { + "lat" : 53.0117619, + "lng" : -1.8093312 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.6 km", + "value" : 558 + }, + "duration" : + { + "text" : "7 mins", + "value" : 429 + }, + "end_location" : + { + "lat" : 53.0131978, + "lng" : -1.7960372 + }, + "html_instructions" : "Continue onto \u003cb\u003eOrdley Ln\u003c/b\u003e", + "polyline" : + { + "points" : "cwpbIfp~I@YBQ@E?ABOHWZy@Ro@@CTi@Vi@?APa@DIJUFQ@G?C?GAMCMEKAAEGECCAC?IDA@A@IJQN?@a@NC@]NWHSDK?KEAAYQGC[KEC[IG?IAO?g@DEAA?IGKUAGOs@CKIk@Gm@AKCSKa@?AKWGKCCEEYY_@W" + }, + "start_location" : + { + "lat" : 53.0112162, + "lng" : -1.7998788 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "1.3 km", + "value" : 1266 + }, + "duration" : + { + "text" : "19 mins", + "value" : 1122 + }, + "end_location" : + { + "lat" : 53.0159753, + "lng" : -1.7798195 + }, + "html_instructions" : "Continue onto \u003cb\u003eStanton Ln\u003c/b\u003e", + "polyline" : + { + "points" : "ocqbIfx}IEEYUIQCS?M?EAi@AKAQE_@AEI]EYCUE]?CEe@?S?IAc@AUCOEa@AIIm@Kw@UqBKw@Gi@AOIm@?IIy@CUAWAGA[A_@?AAo@?I?i@@a@A]AK?GAUE[AAIYGUUo@Oi@KYGSMYKSMUEIGMKO[e@OUMM[a@EGQQEG]_@WYEG[e@EGEGMWIWESAG?IAS?S@QHSHQDE?ATa@Xg@JSLUXg@P[DODG@GH]DW@Y?u@@a@B[@M@O@[?OAE?EAUGYOy@WkAKg@O]CIAGCW?S@Y@_@A[A[?AC[A[?eAAe@CIE[Ke@CMI[" + }, + "start_location" : + { + "lat" : 53.0131978, + "lng" : -1.7960372 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "2.5 km", + "value" : 2466 + }, + "duration" : + { + "text" : "32 mins", + "value" : 1902 + }, + "end_location" : + { + "lat" : 53.0103703, + "lng" : -1.7488434 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eSwinscoe Hill\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA52\u003c/b\u003e\u003cdiv style=\"font-size:0.9em\"\u003eContinue to follow A52\u003c/div\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "{tqbIzrzIFMDKjAqCZ{@Rk@Zw@@Ef@cBZiAHYRq@HWJ_@Pi@@CTi@Vo@\\k@FMn@iAXk@JWRe@DOL_@DOPq@BONw@BOFg@Fc@BS@ILiAFm@Fg@BWBa@@KBe@Bm@@m@?i@A{AA}AAi@?A?O?U@S@YBc@F_@Fa@Hg@La@La@L]HSVe@Xe@Ze@P[JMr@gARWLS^g@NQJKTQFGb@UTILCZEVCXAVGJCFCBA\\ONILKJKHKX[Xi@BEP_@L_@R_ABGD[Jy@JaBDaAHkBDwAFqA?OHgBHaC@]HgBBo@JaD@S@cAAk@?i@C]AQEc@Iu@M_AKm@e@cDW}Ae@gDOy@Gg@cAwGOaAc@qCAIWkBMaAAMCQAICUC[AMAIAUEi@ASEy@Aa@A]?g@EQC}@" + }, + "start_location" : + { + "lat" : 53.0159753, + "lng" : -1.7798195 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.9 km", + "value" : 945 + }, + "duration" : + { + "text" : "13 mins", + "value" : 797 + }, + "end_location" : + { + "lat" : 53.01558170000001, + "lng" : -1.7379415 + }, + "html_instructions" : "At the roundabout, take the \u003cb\u003e1st\u003c/b\u003e exit onto \u003cb\u003eMayfield Rd\u003c/b\u003e", + "maneuver" : "roundabout-left", + "polyline" : + { + "points" : "yqpbIfqtICAA??AA??AAAAAACKE_@k@EQYs@U_AAEKq@CMIc@G_@[cBKi@AGm@cDQw@CQEKEQOc@Qg@MWKUIQEICEEGmCcFWe@Se@q@wAi@gACCIQ_@s@cAeB{@{Aq@oAWk@O]a@eA[{@K]Qi@Mc@GQI]G_@EYE_@" + }, + "start_location" : + { + "lat" : 53.0103703, + "lng" : -1.7488434 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "0.3 km", + "value" : 328 + }, + "duration" : + { + "text" : "4 mins", + "value" : 263 + }, + "end_location" : + { + "lat" : 53.0169599, + "lng" : -1.7336188 + }, + "html_instructions" : "Continue onto \u003cb\u003eChurch St\u003c/b\u003e", + "polyline" : + { + "points" : "krqbIbmrI]oB[aBQ_AG]EOOy@Os@o@qCa@_BSu@]kAK]I_@" + }, + "start_location" : + { + "lat" : 53.01558170000001, + "lng" : -1.7379415 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "90 m", + "value" : 90 + }, + "duration" : + { + "text" : "1 min", + "value" : 70 + }, + "end_location" : + { + "lat" : 53.0165608, + "lng" : -1.7324527 + }, + "html_instructions" : "Turn \u003cb\u003eright\u003c/b\u003e onto \u003cb\u003eDig St\u003c/b\u003e/\u003cwbr/\u003e\u003cb\u003eA515\u003c/b\u003e", + "maneuver" : "turn-right", + "polyline" : + { + "points" : "_{qbIbrqIVgAv@aD" + }, + "start_location" : + { + "lat" : 53.0169599, + "lng" : -1.7336188 + }, + "travel_mode" : "WALKING" + }, + { + "distance" : + { + "text" : "16 m", + "value" : 16 + }, + "duration" : + { + "text" : "1 min", + "value" : 19 + }, + "end_location" : + { + "lat" : 53.0166812, + "lng" : -1.7323355 + }, + "html_instructions" : "Turn \u003cb\u003eleft\u003c/b\u003e", + "maneuver" : "turn-left", + "polyline" : + { + "points" : "oxqbIxjqIWU" + }, + "start_location" : + { + "lat" : 53.0165608, + "lng" : -1.7324527 + }, + "travel_mode" : "WALKING" + } + ], + "traffic_speed_entry" : [], + "via_waypoint" : [] + } + ], + "overview_polyline" : + { + "points" : "uerdI`ude@tOqu@|HwcAg@ixAlG}o@_Ci_@hF{v@jFoh@y`@bV~HivLnm@{{Fsb@ydJegBedoB_s@ghl@hyAs~mBjeAmtEt{@ijAzx@dXpp@x`@dObaArErDjMxEbBkACS|ScaAvIyw@p@gj@pYqe@zl@_nAx[w{A~d@crBbMud@~IglBxAgpBnj@a`Grn@mpEhMgvDdt@_mFzh@urBAeyBdSeWvIfFvf@wbC|`@qzAvSio@fBwaBmBqqAbAsgDjOubEiXq|AgGqpAvUwMxReVpSuAzLcX{Nch@uOa~@hHuq@aBsf@dX}Ln{@aW`a@ag@p^iHlRkV{@epAf@uo@`Ny`@h\\gXpk@{n@`Qwi@pCmk@lOpAnIqKvXkq@rc@iLrbAwq@v_@ub@px@{St\\yYzRwL~Kci@WazAuN{oA|PibEjm@ugEdOyj@b[oZxOzBrNoXhMeiAv\\qm@iZmeBlBksAwPizA~R}~A~Ze[vJgr@n@klApk@sk@pFiNjk@uBnm@gx@ph@caB`f@krBzZus@nVcq@xH}dAaEwwDgC}bDByd@l\\q`AtWqoChMofC`fAmxFpxAedAv^ePdJm`@la@uxAhnAcnEo[i|BhFa{@th@ojAjTefA}@co@wGmaDhHodCoB{lA`Fw|@yAweCvNgyAaMwvBhOchAnSolFnQueFiL{o@sWaKyVfLnK_o@oDmiBeJ}a@xP{a@ff@cUnQ}^wDo{@pBks@g]enBhU{_BpFwsBg_@eqAi`AswExTsxGlGctCeJ{gA\\oz@zFkUnILnLuG|H}jApDcaAcFmxAsRscAqQggBmC}\\u]ej@yPs[hWk|@dXsvAng@inAhg@w_B|`@i~DjRooE}C{v@wJglAwVahELyaAxEw~@yM}k@~J__BHwt@iY}_D{r@yoD}Suc@qD{[v]}w@cH{hA{P{fAiBggAhIwhAkIy{@f@w{@kWqv@{Gun@dPoa@fDa|@\\uqAyGibAj[y`DlGizCpMum@^qfAqLeoAgd@kmAsLanAsa@wz@cWuyC}WqmB_NibAlBwg@sOuo@oDcvApBa|@eKitCuWwcCgSqtBkOyp@oU{NsL{c@cF}bAzEojBjB_jBxNs{Ai@qbB}VcxAcH{x@jHcfAzM}z@|QcaCbYcvBy[quABenAjBgr@aKsu@cWcvAvSmKpBus@wy@}dCaHqcA~IeqAJkdBtSifAaD}{@dRcwBuBkz@vW{o@ds@_lApJs~@rByi@{Rm`@kIgm@hLw_AxV{u@nEeu@aJ{s@gg@a|A`@}H" + }, + "summary" : "Holyhead, UK - Dublin, IE and A5", + "warnings" : + [ + "Walking directions are in beta. Use caution – This route may be missing pavements or pedestrian paths." + ], + "waypoint_order" : [] + } + ], + "status" : "OK" + } \ No newline at end of file diff --git a/server/requirements.txt b/server/requirements.txt index 939b5c7..ffd0f18 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -11,3 +11,4 @@ websockets bcrypt pytest pg8000 +polyline \ No newline at end of file diff --git a/server/src/wayfinding.py b/server/src/wayfinding.py index 3be79bd..2e99d64 100644 --- a/server/src/wayfinding.py +++ b/server/src/wayfinding.py @@ -1,8 +1,6 @@ import requests import os -import json -from fastapi import FastAPI -from fastapi import APIRouter, Query, Body +from fastapi import APIRouter, Body from dotenv import load_dotenv load_dotenv() @@ -12,25 +10,21 @@ router = APIRouter() @router.post("/wayfinding/get_routes") -def get_routes(origin: str = Body(...), +def get_routes( + origin: str = Body(...), destination: str = Body(...), mode: str = Body(...), - alternatives: bool = Body(...), - key: str = Body(GOOGLE_MAPS_API_KEY) - ): + alternatives: bool = Body(...) +): url = "https://maps.googleapis.com/maps/api/directions/json" - parameters = { "origin": origin, "destination": destination, "mode": mode.lower(), "alternatives": str(alternatives).lower(), - "key": key + "key": GOOGLE_MAPS_API_KEY, } - print("parameters are ok!") - response = requests.get(url, params=parameters) - - return response.json() + return response.json() # Forward full response to the client From 574542590cf68376fa1ff2590e351191f225a91e Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Fri, 21 Feb 2025 13:38:49 +0000 Subject: [PATCH 060/100] Functions & tests for friend requests added --- server/src/Database_class.py | 18 +- server/src/networking.py | 37 +++-- server/tests/test_networking.py | 282 ++++++++++++++++++++++---------- 3 files changed, 226 insertions(+), 111 deletions(-) diff --git a/server/src/Database_class.py b/server/src/Database_class.py index fed979e..e759384 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -67,16 +67,9 @@ def create_table( self.connection.rollback() print("An error occurred:", e) - - # cursor = self.connection.cursor() - # data = cursor.execute("SELECT * FROM information_schema.tables") - # data = cursor.fetchall() - # print(data) - def add_entry(self, table_name: str, table_data: dict[str, str]) -> None: """Add row to database with new entry - Args: table name (str): name of table to be queried table data (str, str): keys are columns, values are user data @@ -213,7 +206,7 @@ def append_entry( cursor.close() def remove_from_array( - self, table_name: str, user: str, column: str, value_to_remove: str + self, table_name: str, user: str, column: str, value_to_remove: str ) -> None: """Remove a specific value from an array column in a user's row. @@ -235,8 +228,11 @@ def remove_from_array( except Exception as e: self.connection.rollback() - print("An error occurred while removing" - + "value from array column:", e) + print( + "An error occurred while removing" + + "value from array column:", + e, + ) finally: cursor.close() @@ -331,7 +327,7 @@ def main(): db.append_entry(table_name, "keith", "Conor", "pending_friends") db.append_entry(table_name, "siobhan", "Conor", "pending_friends") - + result = db.search_entry(table_name, "Conor", "pending_friends") print(result) diff --git a/server/src/networking.py b/server/src/networking.py index 3e6b5b2..957bb6b 100644 --- a/server/src/networking.py +++ b/server/src/networking.py @@ -1,7 +1,7 @@ from pydantic import BaseModel from dotenv import load_dotenv import logging -from Database_class import DataBase +from .Database_class import DataBase class Networking: @@ -11,14 +11,17 @@ def __init__(self, api, logger: logging.Logger): # Load environment vars load_dotenv() - self.handle_login() + + self.api_fetch_all_friends() + self.api_friend_request_response() + self.api_send_friend_request() # client sends request to server def api_send_friend_request(self): @self.app.post("/send_request") async def request_data(request: RequestData): self.logger.info( - "Received friend request from " + + f"Received friend request from " f"{request.sender} to {request.receiver}" ) @@ -26,11 +29,11 @@ async def request_data(request: RequestData): return {"message": "Cannot send request to self"} else: response = self.db_handle_friend_request( - self, request.sender, request.receiver + request.sender, request.receiver ) return {"message": response} - def db_handle_friend_request(self, sender, receiver): + def db_handle_friend_request(self, sender: str, receiver: str): db = DataBase() db.connect_db() table_name = "user_table" @@ -52,7 +55,7 @@ def db_handle_friend_request(self, sender, receiver): db.close_con() return "Friend request already sent" except Exception as e: - self.logger(e) + self.logger.error(e) print(e) db.close_con() return "Error during friend request" @@ -64,15 +67,15 @@ def db_handle_friend_request(self, sender, receiver): # client requests pending friend requests def api_fetch_all_friends(self): @self.app.post("/check_requests") - async def check_friends_list(user: str): + async def check_friends_list(user: CurrentUser): self.logger.info( f"Received request for pending friends from {user}" ) - friends, pending_friends = self.fetch_all_friends(user) + friends, pending_friends = self.db_fetch_all_friends(user) self.logger.info("Friends & Pending friends retrieved") return {"friends": friends, "pending_friends": pending_friends} - def db_fetch_all_friends(user): + def db_fetch_all_friends(self, user): table_name = "user_table" db = DataBase() db.connect_db() @@ -83,14 +86,14 @@ def db_fetch_all_friends(user): def api_friend_request_response(self): @self.app.post("/request_response") - async def answer_friend_request( - user: str, requester: str, answer: bool - ): + @self.app.post("/request_response") + async def answer_friend_request(request: FriendRequestResponse): self.logger.info( - f"Processing friend request from {requester} to {user}" + f"Processing friend request from " + f"{request.requester} to {request.user}" ) return_msg = self.db_friend_request_response( - self, user, requester, answer + request.user, request.requester, request.answer ) return {"message": return_msg} @@ -140,5 +143,11 @@ class CurrentUser(BaseModel): user: str +class FriendRequestResponse(BaseModel): + user: str + requester: str + answer: bool + + if __name__ == "__main__": pass diff --git a/server/tests/test_networking.py b/server/tests/test_networking.py index 946f5d1..e6524d6 100644 --- a/server/tests/test_networking.py +++ b/server/tests/test_networking.py @@ -1,89 +1,199 @@ import pytest +from fastapi.testclient import TestClient from unittest.mock import patch, MagicMock -from server.Database_class import DataBase - -# # Processing a friend request - sent - -# # Processing a friend request - friend acceptance -# # Handling a message request between two clients -# # Source username to IP lookup in db, sending to destination username using IP lookup in db - -# import pytest -# import psycopg2 - -# DB_NAME = "test_db" -# DB_USER = "your_user" -# DB_PASSWORD = "your_password" -# DB_HOST = "localhost" -# DB_PORT = "5432" - -# @pytest.fixture(scope="session") -# def setup_db(): -# """Fixture to create and destroy a temporary PostgreSQL test database.""" -# # Connect to the default database -# conn = psycopg2.connect( -# dbname="postgres", -# user=DB_USER, -# password=DB_PASSWORD, -# host=DB_HOST, -# port=DB_PORT -# ) -# conn.autocommit = True -# cursor = conn.cursor() - -# # Create test database -# cursor.execute(f"CREATE DATABASE {DB_NAME};") -# yield # Tests run here - -# # Drop test database after tests -# cursor.execute(f"DROP DATABASE {DB_NAME};") -# cursor.close() -# conn.close() - -# @pytest.fixture -# def db_conn(setup_db): -# """Fixture to connect to the test database.""" -# conn = psycopg2.connect( -# dbname=DB_NAME, -# user=DB_USER, -# password=DB_PASSWORD, -# host=DB_HOST, -# port=DB_PORT -# ) -# yield conn -# conn.close() - -# def test_insert_and_query(db_conn): -# """Example test that inserts and queries data.""" -# cursor = db_conn.cursor() -# cursor.execute(""" -# CREATE TABLE users ( -# id SERIAL PRIMARY KEY, -# username VARCHAR(50) NOT NULL -# ); -# """) -# cursor.execute("INSERT INTO users (username) VALUES ('john_doe');") -# cursor.execute("SELECT username FROM users WHERE username = 'john_doe';") -# result = cursor.fetchone() -# assert result[0] == 'john_doe' -# cursor.close() - - - -# def test_sent_friend_request_db(db_conn): -# # Sender User, Receiver User -# friend_request = ReceiveFriendRequest() - -# sender = friend_request[0] -# receiver = friend_request[1] - -# cursor = db_conn.cursor() -# cursor.execute(f"SELECT pending FROM users WHERE username = '{receiver}'") - -# cursor.execute(f"""UPDATE {table_name} -# SET {column} = '{data}' -# WHERE username = '{user}';INSERT INTO users (pending_requests) VALUES ('{sender}') WHERE username = {receiver};""") - -# cursor.close() - +from fastapi import FastAPI +import logging +from src.networking import Networking +# from src.Database_class import DataBase + + +@pytest.fixture +def test_app(): + """ + Create a FastAPI instance and attach the Networking routes + for testing. + """ + app = FastAPI() + logger = logging.getLogger("test_logger") + net = Networking(api=app, logger=logger) + + net.api_send_friend_request() + net.api_fetch_all_friends() + net.api_friend_request_response() + + return TestClient(app) + + +def test_send_friend_request_success(test_app): + """ + Test for /send_request endpoint where user is valid + and has not already sent a request + """ + + # Patch DB class to avoid interacting with real DB + with patch("src.networking.DataBase") as mock_db_class: + # Mock DB instance + mock_db = MagicMock() + + # Receiver exists + mock_db.search_user.return_value = True + + # 'sender' not in 'pending_friends' array + mock_db.search_entry.return_value = [] + + mock_db_class.return_value = mock_db + + # Send test request + response = test_app.post( + "/send_request", + json={"sender": "Alice", "receiver": "Bob"}, + ) + + # TODO: Maybe add in response codes + + # Verify correct JSON returned + data = response.json() + + print(f"Data response {data}") + + assert data["message"] == "Friend request to Bob sent successfully" + # assert data.message == "Friend request to Bob sent successfully" + + mock_db.search_user.assert_called_once_with("user_table", "Bob") + mock_db.search_entry.assert_called_once_with( + "user_table", "Bob", "pending_friends" + ) + + +def test_send_request_self(test_app): + """ + Test user cannot send request to themself + """ + response = test_app.post( + "/send_request", + json={"sender": "Alice", "receiver": "Alice"}, + ) + print(f"Response {response.json()}") + + assert response.json()["message"] == "Cannot send request to self" + + +def test_send_friend_request_duplicate(test_app): + """ + Test when duplicate request is sent + """ + with patch("src.networking.DataBase") as mock_db_class: + mock_db = MagicMock() + mock_db.search_user.return_value = True + + # List contains sender => already pending request + mock_db.search_entry.return_value = ["Alice"] + mock_db_class.return_value = mock_db + + response = test_app.post( + "/send_request", + json={"sender": "Alice", "receiver": "Bob"}, + ) + + assert response.json()["message"] == "Friend request already sent" + + +def test_send_friend_request_user_not_found(test_app): + """ + Test when seding a friend request to user that does + not exist + """ + with patch("src.networking.DataBase") as mock_db_class: + mock_db = MagicMock() + # search_user returns False => user not found + mock_db.search_user.return_value = False + mock_db_class.return_value = mock_db + + response = test_app.post( + "/send_request", + json={"sender": "Alice", "receiver": "GhostUser"}, + ) + + assert response.json()["message"] == 'User "GhostUser" not found' + + +def test_check_requests(test_app): + """ + Test the /check_requests endpoint which fetches current friends + and pending friends for a given user. + """ + with patch("src.networking.DataBase") as mock_db_class: + mock_db = MagicMock() + + mock_db.search_entry.side_effect = [["Bob", "Charlie"], ["Dave"]] + mock_db_class.return_value = mock_db + + # The endpoint is a POST expecting just the username in the payload + response = test_app.post("/check_requests", json={"user": "Alice"}) + data = response.json() + + print(f"Response: {data}") + assert data["friends"] == ["Bob", "Charlie"] + assert data["pending_friends"] == ["Dave"] + + +def test_request_response_accepted(test_app): + """ + Test when friend request is accepted, remove requester from pending_friends + + add each user to the other's friend_list + """ + with patch("src.networking.DataBase") as mock_db_class: + mock_db = MagicMock() + + # search_user returns True => user exists + mock_db.search_user.return_value = True + mock_db_class.return_value = mock_db + + response = test_app.post( + "/request_response", + json={"user": "Alice", "requester": "Bob", "answer": True}, + ) + + # TODO: status codes + print(f"{response.json()}") + assert response.json()["message"] == "New friend Bob added" + + # Check DB calls + mock_db.remove_from_array.assert_called_once_with( + "user_table", "Alice", "pending_friends", "Bob" + ) + mock_db.append_entry.assert_any_call( + "user_table", "Bob", "Alice", "friends_list" + ) + mock_db.append_entry.assert_any_call( + "user_table", "Alice", "Bob", "friends_list" + ) + + +def test_request_response_rejected(test_app): + """ + Test when friend request is rejected, should: + remove the requester from pending_friends, but: + not add them to friends_list + """ + with patch("src.networking.DataBase") as mock_db_class: + mock_db = MagicMock() + mock_db.search_user.return_value = True + mock_db_class.return_value = mock_db + + response = test_app.post( + "/request_response", + json={"user": "Alice", "requester": "Bob", "answer": False}, + ) + + # TODO: Responce codes + assert response.json()["message"] == "Friend request declined" + + # Check DB calls + mock_db.remove_from_array.assert_called_once_with( + "user_table", "Alice", "pending_friends", "Bob" + ) + + # Make sure no calls were made to append entries for either user + mock_db.append_entry.assert_not_called() From 41e7c345559acc09968e731e3dfb6756781f2f81 Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Mon, 24 Feb 2025 10:13:52 +0000 Subject: [PATCH 061/100] Add db .env vars --- .github/workflows/backend-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 161e902..2be8251 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -66,6 +66,11 @@ jobs: echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }}" >> .env echo "SUPABASE_URL=${{ secrets.SUPABASE_KEY }}" >> .env echo "GOOGLE_MAPS_API_KEY=${{ secrets.GOOGLE_MAPS_API_KEY }}" >> .env + echo "DB_HOST=${{ secrets.DB_HOST }}" >> .env + echo "DB_NAME=${{ secrets.DB_NAME }}" >> .env + echo "DB_USER=${{ secrets.DB_PASSWORD }}" >> .env + echo "DB_PASSWORD=${{ secrets.DB_PASSWORD }}" >> .env + echo "DB_PORT=${{ secrets.DB_PORT }}" >> .env - name: Run Tests run: | From 0c364ca2bfaa4ec6e73fe1fdce76e6f5d7506dd0 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Mon, 24 Feb 2025 11:45:54 +0000 Subject: [PATCH 062/100] Corrected formatting --- server/src/wayfinding.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/wayfinding.py b/server/src/wayfinding.py index 2e99d64..fe6099f 100644 --- a/server/src/wayfinding.py +++ b/server/src/wayfinding.py @@ -9,6 +9,7 @@ router = APIRouter() + @router.post("/wayfinding/get_routes") def get_routes( origin: str = Body(...), From a6dcb666ac0da0853624feef52abc327a91379c1 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Mon, 24 Feb 2025 11:55:55 +0000 Subject: [PATCH 063/100] FIxed more formatting issues --- server/src/main.py | 1 - server/src/wayfinding.py | 2 +- server/tests/test_wayfinding.py | 24 ++++++++++++------------ 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/server/src/main.py b/server/src/main.py index f303152..1a0f304 100644 --- a/server/src/main.py +++ b/server/src/main.py @@ -1,5 +1,4 @@ from fastapi import FastAPI, Request, WebSocket, WebSocketDisconnect -# from src.wayfinding import router # Import the API routes from src.wayfinding import router # Import the API routes from fastapi.middleware.cors import CORSMiddleware from pydantic import BaseModel diff --git a/server/src/wayfinding.py b/server/src/wayfinding.py index fe6099f..84956b1 100644 --- a/server/src/wayfinding.py +++ b/server/src/wayfinding.py @@ -15,7 +15,7 @@ def get_routes( origin: str = Body(...), destination: str = Body(...), mode: str = Body(...), - alternatives: bool = Body(...) + alternatives: bool = Body(...), ): url = "https://maps.googleapis.com/maps/api/directions/json" diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index 2e1e5df..2eaad98 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -12,19 +12,18 @@ def test_calculate_route(): mode = "Walking" alternatives = "true" key = os.getenv("GOOGLE_MAPS_API_KEY") - + response = get_routes(origin, destination, mode, alternatives, key) - assert response.get("status") == 'OK' - + + def test_calculate_route_missing_params(): # missing parameters test - + response = get_routes('', '', '', '') - assert response.get("status") == 'INVALID_REQUEST' - - + + def test_calculate_route_api_key(): # wrong API key @@ -33,14 +32,14 @@ def test_calculate_route_api_key(): mode = "Walking" key = "SAjhdgfsjkg67345834" - response = get_routes(origin, Destination, mode, alternatives = 'TRUE', key = key) + response = get_routes(origin, Destination, mode, + alternatives='TRUE', key=key) assert response.get("status") == "REQUEST_DENIED" def test_check_transport_modes(): - origin = "Tara Street" destination = "Ashbourne Meath" mode = "Walking" @@ -56,9 +55,11 @@ def test_check_transport_modes(): if response["routes"]: first_route = response["routes"][0] if first_route["legs"]: - first_leg = first_route["legs"][0] + first_leg = first_route["legs"][0] if first_leg["steps"]: - first_step = first_leg["steps"][mode=="transit"] # true == 1 --> check second leg for transit , false == 0 --> otherwise check the first leg + # true == 1 --> check second leg for transit, + # false == 0 --> otherwise check the first leg + first_step = first_leg["steps"][mode == "transit"] travel_mode = first_step["travel_mode"] print(f"Travel mode for the route: {travel_mode}") else: @@ -69,4 +70,3 @@ def test_check_transport_modes(): print("No routes found in the response.") assert travel_mode.lower() == mode - From d3e50a68661ebe915833aa823bd3b18ca0f9c57e Mon Sep 17 00:00:00 2001 From: kahern7 Date: Mon, 24 Feb 2025 11:57:57 +0000 Subject: [PATCH 064/100] Formatted to align with black --- server/tests/test_wayfinding.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index 2eaad98..a96f099 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -14,14 +14,14 @@ def test_calculate_route(): key = os.getenv("GOOGLE_MAPS_API_KEY") response = get_routes(origin, destination, mode, alternatives, key) - assert response.get("status") == 'OK' + assert response.get("status") == "OK" def test_calculate_route_missing_params(): # missing parameters test - response = get_routes('', '', '', '') - assert response.get("status") == 'INVALID_REQUEST' + response = get_routes("", "", "", "") + assert response.get("status") == "INVALID_REQUEST" def test_calculate_route_api_key(): @@ -32,8 +32,9 @@ def test_calculate_route_api_key(): mode = "Walking" key = "SAjhdgfsjkg67345834" - response = get_routes(origin, Destination, mode, - alternatives='TRUE', key=key) + response = get_routes( + origin, Destination, mode, alternatives="TRUE", key=key + ) assert response.get("status") == "REQUEST_DENIED" From 02637b6b8a501536e0e9f45cb2396bd2093af3a0 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Mon, 24 Feb 2025 12:02:25 +0000 Subject: [PATCH 065/100] Formatting --- server/tests/test_wayfinding.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index a96f099..925a21a 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -13,7 +13,7 @@ def test_calculate_route(): alternatives = "true" key = os.getenv("GOOGLE_MAPS_API_KEY") - response = get_routes(origin, destination, mode, alternatives, key) + response = get_routes(origin, destination, mode, alternatives) assert response.get("status") == "OK" @@ -33,7 +33,7 @@ def test_calculate_route_api_key(): key = "SAjhdgfsjkg67345834" response = get_routes( - origin, Destination, mode, alternatives="TRUE", key=key + origin, Destination, mode, alternatives="TRUE" ) assert response.get("status") == "REQUEST_DENIED" @@ -51,7 +51,7 @@ def test_check_transport_modes(): response = "" for mode in modes: - response = get_routes(origin, destination, mode, alternatives, key=key) + response = get_routes(origin, destination, mode, alternatives) if response["routes"]: first_route = response["routes"][0] From 1dcccb4fea03e9cbaa853bf51781cd6f2faed42b Mon Sep 17 00:00:00 2001 From: kahern7 Date: Mon, 24 Feb 2025 12:04:01 +0000 Subject: [PATCH 066/100] formatting --- server/tests/test_wayfinding.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index 925a21a..da03b0e 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -1,4 +1,3 @@ -import os from src.wayfinding import get_routes from dotenv import load_dotenv @@ -11,7 +10,6 @@ def test_calculate_route(): destination = "Ashbourne Meath" mode = "Walking" alternatives = "true" - key = os.getenv("GOOGLE_MAPS_API_KEY") response = get_routes(origin, destination, mode, alternatives) assert response.get("status") == "OK" @@ -30,7 +28,6 @@ def test_calculate_route_api_key(): origin = "Tara Street" Destination = "Ashbourne" mode = "Walking" - key = "SAjhdgfsjkg67345834" response = get_routes( origin, Destination, mode, alternatives="TRUE" @@ -45,7 +42,6 @@ def test_check_transport_modes(): destination = "Ashbourne Meath" mode = "Walking" alternatives = "true" - key = os.getenv("GOOGLE_MAPS_API_KEY") modes = ["driving", "walking", "transit", "bicycling"] response = "" From 445c15ff994ac0fbcf16ba79f170ec0199806baa Mon Sep 17 00:00:00 2001 From: kahern7 Date: Mon, 24 Feb 2025 12:04:56 +0000 Subject: [PATCH 067/100] formatting --- server/tests/test_wayfinding.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index da03b0e..fb3f2b1 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -29,9 +29,7 @@ def test_calculate_route_api_key(): Destination = "Ashbourne" mode = "Walking" - response = get_routes( - origin, Destination, mode, alternatives="TRUE" - ) + response = get_routes(origin, Destination, mode, alternatives="TRUE") assert response.get("status") == "REQUEST_DENIED" From 5f732e948899225aaa36c0607a4153a8611ed40f Mon Sep 17 00:00:00 2001 From: kahern7 Date: Mon, 24 Feb 2025 12:07:29 +0000 Subject: [PATCH 068/100] REmoved test api key func --- server/tests/test_wayfinding.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index fb3f2b1..0c77d4d 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -22,18 +22,6 @@ def test_calculate_route_missing_params(): assert response.get("status") == "INVALID_REQUEST" -def test_calculate_route_api_key(): - # wrong API key - - origin = "Tara Street" - Destination = "Ashbourne" - mode = "Walking" - - response = get_routes(origin, Destination, mode, alternatives="TRUE") - - assert response.get("status") == "REQUEST_DENIED" - - def test_check_transport_modes(): origin = "Tara Street" From d1e1f2f362b0d1c68ebe6de9cea40b3ceb644294 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Wed, 26 Feb 2025 10:26:04 +0000 Subject: [PATCH 069/100] Started work on destination marker --- client/DisplayRoute.js | 12 +++++++++++- client/package-lock.json | 32 ++++++++++++++++++++++++++++++++ client/package.json | 1 + 3 files changed, 44 insertions(+), 1 deletion(-) diff --git a/client/DisplayRoute.js b/client/DisplayRoute.js index 7e155bc..a384161 100644 --- a/client/DisplayRoute.js +++ b/client/DisplayRoute.js @@ -9,6 +9,8 @@ export default function DisplayRouteScreen({ route }) { const [location, setLocation] = useState(null); const [errorMessage, setErrorMessage] = useState(''); const [polylineCoordinates, setPolylineCoordinates] = useState([]); + // declare decodedPath as a global varibale so it can be used for destination marker + let decodedPath = []; // Get current location useEffect(() => { @@ -31,7 +33,9 @@ export default function DisplayRouteScreen({ route }) { useEffect(() => { if (routeData && routeData.routes && routeData.routes.length > 0) { const encodedPolyline = routeData.routes[0].overview_polyline.points; - const decodedPath = decodeRoute(encodedPolyline); // Decode into lat/lng pairs + decodedPath = decodeRoute(encodedPolyline); // Decode into lat/lng pairs + // TODO: find out what decoded path looks like + console.log(decodedPath[-1]); setPolylineCoordinates(decodedPath); } }, [routeData]); @@ -56,6 +60,12 @@ export default function DisplayRouteScreen({ route }) { title="Your Location" description="Real-time location" /> + {/* TODO: add destination marker */} + {/* */} {polylineCoordinates.length > 0 && ( =8" } }, + "node_modules/paths-js": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/paths-js/-/paths-js-0.4.11.tgz", + "integrity": "sha512-3mqcLomDBXOo7Fo+UlaenG6f71bk1ZezPQy2JCmYHy2W2k5VKpP+Jbin9H0bjXynelTbglCqdFhSEkeIkKTYUA==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.11.0" + } + }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", @@ -12057,6 +12067,12 @@ "node": ">=4.0.0" } }, + "node_modules/point-in-polygon": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.1.0.tgz", + "integrity": "sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==", + "license": "MIT" + }, "node_modules/postcss": { "version": "8.4.49", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", @@ -12476,6 +12492,22 @@ } } }, + "node_modules/react-native-chart-kit": { + "version": "6.12.0", + "resolved": "https://registry.npmjs.org/react-native-chart-kit/-/react-native-chart-kit-6.12.0.tgz", + "integrity": "sha512-nZLGyCFzZ7zmX0KjYeeSV1HKuPhl1wOMlTAqa0JhlyW62qV/1ZPXHgT8o9s8mkFaGxdqbspOeuaa6I9jUQDgnA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.13", + "paths-js": "^0.4.10", + "point-in-polygon": "^1.0.1" + }, + "peerDependencies": { + "react": "> 16.7.0", + "react-native": ">= 0.50.0", + "react-native-svg": "> 6.4.1" + } + }, "node_modules/react-native-dotenv": { "version": "3.4.11", "resolved": "https://registry.npmjs.org/react-native-dotenv/-/react-native-dotenv-3.4.11.tgz", diff --git a/client/package.json b/client/package.json index e9d363f..dc964bb 100644 --- a/client/package.json +++ b/client/package.json @@ -22,6 +22,7 @@ "react": "^18.3.1", "react-dom": "^18.3.1", "react-native": "0.76.2", + "react-native-chart-kit": "^6.12.0", "react-native-element-dropdown": "^2.12.4", "react-native-gesture-handler": "~2.20.2", "react-native-maps": "1.18.0", From 9514f33a711a30ed7148a51225e388812aba53d1 Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Thu, 27 Feb 2025 16:26:01 +0000 Subject: [PATCH 070/100] fixed string concatenating for SQL queries, removed ignore db tests --- .github/workflows/backend-ci.yml | 2 +- server/src/Database_class.py | 35 ++++++++++++++---------- server/tests/test_database_connection.py | 4 +-- 3 files changed, 24 insertions(+), 17 deletions(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 2be8251..4af39af 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -75,4 +75,4 @@ jobs: - name: Run Tests run: | cd server - pytest tests/ --ignore=tests/test_database_connection.py + pytest tests/ diff --git a/server/src/Database_class.py b/server/src/Database_class.py index e759384..b887ed2 100644 --- a/server/src/Database_class.py +++ b/server/src/Database_class.py @@ -132,12 +132,11 @@ def update_entry( """ try: cursor = self.connection.cursor() - - # TODO: check if username needs to be made dynamic - query = f"UPDATE {table_name} " - f"SET {column} = '{data}' " - f"WHERE username = '{user}';" - + query = ( + f"UPDATE {table_name} " + f"SET {column} = '{data}' " + f"WHERE username = '{user}';" + ) cursor.execute(query) except Exception as e: self.connection.rollback() @@ -156,11 +155,10 @@ def search_entry(self, table_name: str, user: str, column: str): try: records = None cursor = self.connection.cursor() - - query = f"""SELECT {column} - FROM {table_name} - WHERE username = '{user}';""" - + query = ( + f"SELECT {column} FROM {table_name} " + f"WHERE username = '{user}';" + ) cursor.execute(query) records = cursor.fetchall() @@ -190,9 +188,13 @@ def append_entry( """ try: cursor = self.connection.cursor() - query = f"UPDATE {table_name} " - f"SET {column} = array_append({column},'{sender}') " - f"WHERE username = '{receiver}';" + + query = ( + f"UPDATE {table_name} " + f"SET {column} = array_append({column},'{sender}') " + f"WHERE username = '{receiver}';" + ) + cursor.execute(query) self.connection.commit() except Exception as e: @@ -218,11 +220,13 @@ def remove_from_array( """ try: cursor = self.connection.cursor() + query = ( f"UPDATE {table_name} " f"SET {column} = ARRAY_REMOVE({column}, '{value_to_remove}')" f"WHERE username = '{user}';" ) + cursor.execute(query) self.connection.commit() @@ -245,7 +249,9 @@ def print_table(self, tablename: str): """ try: cursor = self.connection.cursor() + query = f"SELECT * FROM {tablename};" + cursor.execute(query) records = cursor.fetchall() @@ -281,6 +287,7 @@ def search_user(self, table_name: str, user: str) -> bool: f"SELECT username FROM {table_name} " f"WHERE username = '{user}';" ) + cursor.execute(query) record = list(cursor.fetchall()) diff --git a/server/tests/test_database_connection.py b/server/tests/test_database_connection.py index 6cac3b6..93ecd5a 100644 --- a/server/tests/test_database_connection.py +++ b/server/tests/test_database_connection.py @@ -1,6 +1,6 @@ import pytest from unittest.mock import patch, MagicMock -from server.src.Database_class import DataBase +from src.Database_class import DataBase DB_NAME = "test_db" DB_USER = "your_user" @@ -15,7 +15,7 @@ def db(): return DataBase(DB_HOST, DB_NAME, DB_USER, DB_PASSWORD, DB_PORT) -@patch("server.Database_class.pg8000.connect") +@patch("src.Database_class.pg8000.connect") def test_connect_db(mock_connect, db): """Test database connection""" mock_connect.return_value = MagicMock() From c57b7435edc558bceb5a6ce0e32ff68b20b89864 Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Thu, 27 Feb 2025 17:38:05 +0000 Subject: [PATCH 071/100] added async module for tests, added client github workflow --- .github/workflows/frontend-ci.yml | 36 +++++++++++++++++++++++++++++++ client/package-lock.json | 34 +++++++++++++++++++++++++++++ client/package.json | 1 + 3 files changed, 71 insertions(+) create mode 100644 .github/workflows/frontend-ci.yml diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml new file mode 100644 index 0000000..8437d68 --- /dev/null +++ b/.github/workflows/frontend-ci.yml @@ -0,0 +1,36 @@ +name: Frontend CI + +on: + push: + branches: [ "develop", "main" ] + pull_request: + branches: [ "develop", "main" ] + +permissions: + contents: read + +jobs: + test: + name: Run Frontend Tests (Jest) + runs-on: ubuntu-latest + + defaults: + run: + working-directory: ./client # Removes need for cd client when running tests + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Install dependencies # Install dependencies + run: | + npm install + + - name: Run tests # Run Jest tests + run: | + npm test \ No newline at end of file diff --git a/client/package-lock.json b/client/package-lock.json index 693e33b..a9c2500 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -10,6 +10,7 @@ "dependencies": { "@googlemaps/polyline-codec": "^1.0.28", "@react-google-maps/api": "^2.20.6", + "@react-native-async-storage/async-storage": "^2.1.1", "@react-navigation/native": "^7.0.2", "@react-navigation/native-stack": "^7.0.2", "crypto": "^1.0.1", @@ -3650,6 +3651,18 @@ "integrity": "sha512-tieX9Va5w1yP88vMgfH1pHTacDQ9TgDTjox3tLlisKDXRQWdjw+QeVVghhf5XqqIxXHgPdcGwBvKY6UP+SIvLw==", "license": "MIT" }, + "node_modules/@react-native-async-storage/async-storage": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-2.1.1.tgz", + "integrity": "sha512-UqlnxddwM3rlCHvteFz+HpIXjqhQM7GkBgVQ9sMvMdl8QVOJQDjG7BODCUvabysMDw+9QfMFlLiOI8U6c0VzzQ==", + "license": "MIT", + "dependencies": { + "merge-options": "^3.0.4" + }, + "peerDependencies": { + "react-native": "^0.0.0-0 || >=0.65 <1.0" + } + }, "node_modules/@react-native-picker/picker": { "version": "2.11.0", "resolved": "https://registry.npmjs.org/@react-native-picker/picker/-/picker-2.11.0.tgz", @@ -8641,6 +8654,15 @@ "node": ">=8" } }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/is-plain-object": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", @@ -10635,6 +10657,18 @@ "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", "license": "MIT" }, + "node_modules/merge-options": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", + "integrity": "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", diff --git a/client/package.json b/client/package.json index e9d363f..3556932 100644 --- a/client/package.json +++ b/client/package.json @@ -12,6 +12,7 @@ "dependencies": { "@googlemaps/polyline-codec": "^1.0.28", "@react-google-maps/api": "^2.20.6", + "@react-native-async-storage/async-storage": "^2.1.1", "@react-navigation/native": "^7.0.2", "@react-navigation/native-stack": "^7.0.2", "crypto": "^1.0.1", From 35eeb7dcc539f0eb6921d49c1b090e4dad7f71d5 Mon Sep 17 00:00:00 2001 From: Ma-Golden <125670894+Ma-Golden@users.noreply.github.com> Date: Thu, 27 Feb 2025 17:46:00 +0000 Subject: [PATCH 072/100] package update --- client/package-lock.json | 32 ++++++++++++++++++++++++++++++++ client/package.json | 1 + 2 files changed, 33 insertions(+) diff --git a/client/package-lock.json b/client/package-lock.json index a9c2500..aa8aee6 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -21,6 +21,7 @@ "react": "^18.3.1", "react-dom": "^18.3.1", "react-native": "0.76.2", + "react-native-chart-kit": "^6.12.0", "react-native-element-dropdown": "^2.12.4", "react-native-gesture-handler": "~2.20.2", "react-native-maps": "1.18.0", @@ -11941,6 +11942,15 @@ "node": ">=8" } }, + "node_modules/paths-js": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/paths-js/-/paths-js-0.4.11.tgz", + "integrity": "sha512-3mqcLomDBXOo7Fo+UlaenG6f71bk1ZezPQy2JCmYHy2W2k5VKpP+Jbin9H0bjXynelTbglCqdFhSEkeIkKTYUA==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.11.0" + } + }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", @@ -12091,6 +12101,12 @@ "node": ">=4.0.0" } }, + "node_modules/point-in-polygon": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.1.0.tgz", + "integrity": "sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==", + "license": "MIT" + }, "node_modules/postcss": { "version": "8.4.49", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", @@ -12510,6 +12526,22 @@ } } }, + "node_modules/react-native-chart-kit": { + "version": "6.12.0", + "resolved": "https://registry.npmjs.org/react-native-chart-kit/-/react-native-chart-kit-6.12.0.tgz", + "integrity": "sha512-nZLGyCFzZ7zmX0KjYeeSV1HKuPhl1wOMlTAqa0JhlyW62qV/1ZPXHgT8o9s8mkFaGxdqbspOeuaa6I9jUQDgnA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.13", + "paths-js": "^0.4.10", + "point-in-polygon": "^1.0.1" + }, + "peerDependencies": { + "react": "> 16.7.0", + "react-native": ">= 0.50.0", + "react-native-svg": "> 6.4.1" + } + }, "node_modules/react-native-dotenv": { "version": "3.4.11", "resolved": "https://registry.npmjs.org/react-native-dotenv/-/react-native-dotenv-3.4.11.tgz", diff --git a/client/package.json b/client/package.json index 3556932..f75c515 100644 --- a/client/package.json +++ b/client/package.json @@ -23,6 +23,7 @@ "react": "^18.3.1", "react-dom": "^18.3.1", "react-native": "0.76.2", + "react-native-chart-kit": "^6.12.0", "react-native-element-dropdown": "^2.12.4", "react-native-gesture-handler": "~2.20.2", "react-native-maps": "1.18.0", From 5b1dd79fd99d065784e6006ec97b2ef5f73a4686 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Thu, 27 Feb 2025 18:05:47 +0000 Subject: [PATCH 073/100] Fixed initial region bug --- client/DisplayRoute.js | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/client/DisplayRoute.js b/client/DisplayRoute.js index a384161..46ec262 100644 --- a/client/DisplayRoute.js +++ b/client/DisplayRoute.js @@ -18,6 +18,7 @@ export default function DisplayRouteScreen({ route }) { try { const initialLocation = await getCurrentLocation(); setLocation(initialLocation); + console.log(location); const locationSubscription = await startLocationTracking(setLocation); @@ -35,8 +36,9 @@ export default function DisplayRouteScreen({ route }) { const encodedPolyline = routeData.routes[0].overview_polyline.points; decodedPath = decodeRoute(encodedPolyline); // Decode into lat/lng pairs // TODO: find out what decoded path looks like - console.log(decodedPath[-1]); + console.log(decodedPath[decodedPath.length - 1]); setPolylineCoordinates(decodedPath); + setRoutes(routeData.routes); // Set the routes state } }, [routeData]); @@ -49,8 +51,8 @@ export default function DisplayRouteScreen({ route }) { 0 ? routes[0][0].latitude : location.latitude, - longitude: routes.length > 0 ? routes[0][0].longitude : location.longitude, + latitude: routes.length > 0 ? routes[0].legs[0].start_location.lat : location.latitude, + longitude: routes.length > 0 ? routes[0].legs[0].start_location.lng : location.longitude, latitudeDelta: 0.01, longitudeDelta: 0.01, }} @@ -61,11 +63,13 @@ export default function DisplayRouteScreen({ route }) { description="Real-time location" /> {/* TODO: add destination marker */} - {/* 0 && ( + */} + description="Destination of the route" + /> + )} {polylineCoordinates.length > 0 && ( Date: Fri, 28 Feb 2025 12:27:39 +0000 Subject: [PATCH 074/100] Added destination marker and select route functionality --- client/DisplayRoute.js | 34 +++++++++++++++++------ client/Map.js | 44 +----------------------------- client/assets/location-circle.png | Bin 0 -> 1307 bytes server/tests/test_wayfinding.py | 2 +- 4 files changed, 27 insertions(+), 53 deletions(-) create mode 100644 client/assets/location-circle.png diff --git a/client/DisplayRoute.js b/client/DisplayRoute.js index 46ec262..e7e86cb 100644 --- a/client/DisplayRoute.js +++ b/client/DisplayRoute.js @@ -1,5 +1,5 @@ import React, { useEffect, useState } from 'react'; -import { View, StyleSheet, Text } from 'react-native'; +import { View, StyleSheet, Text, TouchableOpacity } from 'react-native'; import MapView, { Polyline, Marker } from 'react-native-maps'; import { decodeRoute, getCurrentLocation, startLocationTracking } from './mapUtils'; @@ -9,8 +9,7 @@ export default function DisplayRouteScreen({ route }) { const [location, setLocation] = useState(null); const [errorMessage, setErrorMessage] = useState(''); const [polylineCoordinates, setPolylineCoordinates] = useState([]); - // declare decodedPath as a global varibale so it can be used for destination marker - let decodedPath = []; + const [currentRoute, setCurrentRoute] = useState(routeData.routes[0]); // Get current location useEffect(() => { @@ -33,15 +32,22 @@ export default function DisplayRouteScreen({ route }) { // Decode and set polyline coordinates useEffect(() => { if (routeData && routeData.routes && routeData.routes.length > 0) { - const encodedPolyline = routeData.routes[0].overview_polyline.points; + const encodedPolyline = currentRoute.overview_polyline.points; decodedPath = decodeRoute(encodedPolyline); // Decode into lat/lng pairs - // TODO: find out what decoded path looks like - console.log(decodedPath[decodedPath.length - 1]); setPolylineCoordinates(decodedPath); setRoutes(routeData.routes); // Set the routes state } }, [routeData]); + // Display all route options + const displaySelectedRoute = (index) => { + const selectedRoute = routeData.routes[index]; + setCurrentRoute(selectedRoute); + const encodedPolyline = selectedRoute.overview_polyline.points; + const decodedPath = decodeRoute(encodedPolyline); // Decode into lat/lng pairs + setPolylineCoordinates(decodedPath); + }; + return ( {errorMessage ? ( @@ -61,11 +67,11 @@ export default function DisplayRouteScreen({ route }) { coordinate={location} title="Your Location" description="Real-time location" + icon={require('./assets/location-circle.png')} /> - {/* TODO: add destination marker */} - {decodedPath.length > 0 && ( + {polylineCoordinates.length > 0 && ( @@ -78,6 +84,16 @@ export default function DisplayRouteScreen({ route }) { /> )} + + {routes.map((route, index) => { + return ( + displaySelectedRoute(index)}> + Route {index + 1} + Distance: {route.legs[0].distance.text} + Duration: {route.legs[0].duration.text} + + )})} + ) : ( Fetching your location... diff --git a/client/Map.js b/client/Map.js index 0425382..c423c4e 100644 --- a/client/Map.js +++ b/client/Map.js @@ -30,44 +30,6 @@ export default function MapScreen({ navigation }) { return () => socket.close(); }, []); - // Location Setup - // useEffect(() => { - // (async () => { - // const { status } = await Location.requestForegroundPermissionsAsync(); - // if (status !== 'granted') { - // setErrorMessage('Permission to access location was denied.'); - // return; - // } - - // const currentLocation = await Location.getCurrentPositionAsync({ - // accuracy: Location.Accuracy.BestForNavigation, - // }); - // setLocation(currentLocation.coords); - - // // Track location updates - // const locationSubscription = await Location.watchPositionAsync( - // { - // accuracy: Location.Accuracy.BestForNavigation, - // timeInterval: 5000, - // distanceInterval: 5, - // }, - // (newLocation) => { - // setLocation(newLocation.coords); - // if (mapRef.current) { - // mapRef.current.animateToRegion({ - // latitude: newLocation.coords.latitude, - // longitude: newLocation.coords.longitude, - // latitudeDelta: 0.01, - // longitudeDelta: 0.01, - // }, 1000); - // } - // } - // ); - - // return () => locationSubscription.remove(); - // })(); - // }, []); - useEffect(() => { (async () => { try { @@ -116,11 +78,7 @@ export default function MapScreen({ navigation }) { coordinate={location} title="Your Location" description="Real-time location" - /> - diff --git a/client/assets/location-circle.png b/client/assets/location-circle.png new file mode 100644 index 0000000000000000000000000000000000000000..9b159bd9d4d27e5ea75322e02e3d9715e7bc1ee2 GIT binary patch literal 1307 zcmV+$1?2jPP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!~g&e!~vBn4jTXf1h7d&K~#8N<(prK zR8<_uKfkluYFW7zx%JX!L2lSzB@!c33B}FGn%yzQz%T=!mZ%;q7cwGx2oZwR$4uIp zog%F*khUcRGdIXESs^MzNOutxOI_EU`|IJ(xU)a+tUEiiyEFHGUS{s^dl=??Ip^H- z=XZoLM+K5~pbvqo2dx8Yff|r0zD^&=S@3$n{RLh($gj}!2Z-8VEG1$Cr6D;Dv;k-U z7K7YrON@{n&`zKoE_@AZ&)NdTQep#A^CA5z@B+y7RxJ*_1hN}+J2Z8cs%4bI0D;63 zpao=}6~_ks1$Y;lzAV;=A`NJJ5WFoQi>xv}=#M}%#1C3!q>R#lt<`Wx3-AUo*{b7< zrh$)O>PC3>f>p1@C=5v43z7gHwaUbz-9Q}ThpjRk&IX1ju@vYkzsdthJ+L1VF{=zm z0R|*q2H68L-74jSO!Hf3ve_#6sIq}zk{dui1}0gh3=v={#0DU>&x)227|^;FWLsga zr5un&5IYB{16Il98iQcsX^{4bAL&Pp2O5WX$_iPAF(5S)(p@08Sf#Si^T51(Z-+e1 zdi!KZe^&XG2ap?pR@f6bHP2(f%^N`;v(d^$?uU!-*(kwXATWQrT!4bRMki z%8drJ0Pn-_RUSa9z-`IwKU~2WkXQgL8yX80^C7uBH((5qO+%lp=nr#V{i4uYB`AwpK&!36PqcQXxh!!i}}C>|CY=%vcQ`bE(3uX>4@9%_06gr#tGChUAhR5} zIvb7-TIWD#*l>iH;XuoHmv^j@=?)0t(s#sEyJ8O)D;)=1vcc$}eGWKn!x7?)1MRWV z2yxQ+IXO{9j=9XSazydE9i0CylVlJz6siw7Kl4hCST+3UaaeIYy9(?uY6Nf{3@(GE z-KY`3uXDzL+kOD;H6=of{s-56%b)=Z2S9e2Qeh^Q%_z&+335C9gn}sGwq5x)7>peS zjlx*44;p{UKA62gw;43#t3!Dw_sJO0_%le`&{&wzz0f%1l^?Jh?B2}e)r1V~hxBVU z8el-|Z;-cbGz7d4tFD^y<~a>k2g$u4AvrP9gK*CiF!!=m0$Kooc+kHF^dGBK9(o!E zUJR-{`3(SAa{}D+parL(mk)Xws^YNvPpf1Z#sKi&mu?jh=w6xQfvkhrcUH*d8U_F~ z?gn0}FcUmr12lbN1xubmFo@RY!0iG8GcL;q?FZIDe5X}{D8K-K*2lqp4vh91+*ore zlN|lM74k8HE|AO01Adkj!}hC*LHC23TS(<8+yH>4lW=4SXtTero^bj=--6p0_>;K8 zD6k7yKD`Sje*iR1K#HA$eg##pL+p1ej+7Gp>Es;HO~7)HQM9T;PzBiwvKbopTeVP1 zWI&e0ec)aJZ#77*Rg2^lXe+QI-{ptVP+|kJB&)!C5+rkZn%N))UbxaUNH=H)xNqR@ z&V19^Vi+R>EIV(4NwfXy^JK2iOO2nKpprSEJ_FJNdJMdyFy%0;DEV!1%m3}79}D8Q R!}9cMgIT* literal 0 HcmV?d00001 diff --git a/server/tests/test_wayfinding.py b/server/tests/test_wayfinding.py index 0c77d4d..bc5527e 100644 --- a/server/tests/test_wayfinding.py +++ b/server/tests/test_wayfinding.py @@ -25,7 +25,7 @@ def test_calculate_route_missing_params(): def test_check_transport_modes(): origin = "Tara Street" - destination = "Ashbourne Meath" + destination = "Leopardstown Valley" mode = "Walking" alternatives = "true" modes = ["driving", "walking", "transit", "bicycling"] From 8c3f8f38fbabfe2e48808e4e3b31c6bc23528218 Mon Sep 17 00:00:00 2001 From: FEguare <123463013+FEguare@users.noreply.github.com> Date: Thu, 6 Mar 2025 16:28:51 +0000 Subject: [PATCH 075/100] rename display route to select route Co-authored-by: Keith Ahern --- client/App.js | 4 ++-- client/FindRoute.js | 4 ++-- client/{DisplayRoute.js => SelectRoute.js} | 3 ++- server/src/wayfinding.py | 7 ++++++- 4 files changed, 12 insertions(+), 6 deletions(-) rename client/{DisplayRoute.js => SelectRoute.js} (96%) diff --git a/client/App.js b/client/App.js index a0b1fad..e7aa3d6 100644 --- a/client/App.js +++ b/client/App.js @@ -5,7 +5,7 @@ import LoginScreen from './LogIn'; import MapScreen from './Map'; import WeatherScreen from './Weather'; import FindRouteScreen from './FindRoute'; -import DisplayRouteScreen from './DisplayRoute'; +import SelectRouteScreen from './SelectRoute'; import Dashboard from './SustainabilityDashboard' const Stack = createNativeStackNavigator(); @@ -18,7 +18,7 @@ export default function App() { - + diff --git a/client/FindRoute.js b/client/FindRoute.js index 9f4662a..6c38b32 100644 --- a/client/FindRoute.js +++ b/client/FindRoute.js @@ -48,8 +48,8 @@ export default function FindRouteScreen({ navigation }){ // await new Promise(resolve => setTimeout(resolve, 3000)); // setServerResponse("") - // Navigate to DisplayRouteScreen with the response data - navigation.navigate('DisplayRouteScreen', { routeData: data }); + // Navigate to SelectRouteScreen with the response data + navigation.navigate('SelectRouteScreen', { routeData: data }); } catch (error) { console.error('Error details:', error); diff --git a/client/DisplayRoute.js b/client/SelectRoute.js similarity index 96% rename from client/DisplayRoute.js rename to client/SelectRoute.js index e7e86cb..fbf8da1 100644 --- a/client/DisplayRoute.js +++ b/client/SelectRoute.js @@ -3,7 +3,7 @@ import { View, StyleSheet, Text, TouchableOpacity } from 'react-native'; import MapView, { Polyline, Marker } from 'react-native-maps'; import { decodeRoute, getCurrentLocation, startLocationTracking } from './mapUtils'; -export default function DisplayRouteScreen({ route }) { +export default function SelectRouteScreen({ route }) { const { origin, destination, routeData } = route.params; const [routes, setRoutes] = useState([]); const [location, setLocation] = useState(null); @@ -34,6 +34,7 @@ export default function DisplayRouteScreen({ route }) { if (routeData && routeData.routes && routeData.routes.length > 0) { const encodedPolyline = currentRoute.overview_polyline.points; decodedPath = decodeRoute(encodedPolyline); // Decode into lat/lng pairs + // if this mode is driving, call the speedlimit api, passing decodedPath setPolylineCoordinates(decodedPath); setRoutes(routeData.routes); // Set the routes state } diff --git a/server/src/wayfinding.py b/server/src/wayfinding.py index 84956b1..eb671d5 100644 --- a/server/src/wayfinding.py +++ b/server/src/wayfinding.py @@ -17,7 +17,8 @@ def get_routes( mode: str = Body(...), alternatives: bool = Body(...), ): - url = "https://maps.googleapis.com/maps/api/directions/json" + # url = "https://maps.googleapis.com/maps/api/directions/json" + url = "https://maps.googleapis.com/maps/directions/v2:computeRoutes" parameters = { "origin": origin, @@ -26,6 +27,10 @@ def get_routes( "alternatives": str(alternatives).lower(), "key": GOOGLE_MAPS_API_KEY, } + # if mode == driving + # parse response ... routes + # get speed limit for each step of leg + # retrurn list of limits for each step of each leg response = requests.get(url, params=parameters) return response.json() # Forward full response to the client From 8f6f48af865fa9547f9607cb86bc96aca3d9a0d7 Mon Sep 17 00:00:00 2001 From: FEguare <123463013+FEguare@users.noreply.github.com> Date: Thu, 6 Mar 2025 18:39:30 +0000 Subject: [PATCH 076/100] link comment undone - stable after rename --- server/src/wayfinding.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/wayfinding.py b/server/src/wayfinding.py index eb671d5..103f580 100644 --- a/server/src/wayfinding.py +++ b/server/src/wayfinding.py @@ -17,8 +17,8 @@ def get_routes( mode: str = Body(...), alternatives: bool = Body(...), ): - # url = "https://maps.googleapis.com/maps/api/directions/json" - url = "https://maps.googleapis.com/maps/directions/v2:computeRoutes" + url = "https://maps.googleapis.com/maps/api/directions/json" + # url = "https://maps.googleapis.com/maps/directions/v2:computeRoutes" parameters = { "origin": origin, From 8cd2333221491f5bf739adee20c65ec0830d3841 Mon Sep 17 00:00:00 2001 From: kahern7 Date: Mon, 10 Mar 2025 11:51:43 +0000 Subject: [PATCH 077/100] Created DisplayRoute Screen Co-authored-by: feguare --- client/App.js | 2 + client/DisplayRoute.js | 87 ++++++++++++++++++++++++++++++++++++++++++ client/FindRoute.js | 2 +- client/SelectRoute.js | 42 ++++++++++++++++---- 4 files changed, 125 insertions(+), 8 deletions(-) create mode 100644 client/DisplayRoute.js diff --git a/client/App.js b/client/App.js index e7aa3d6..fda6610 100644 --- a/client/App.js +++ b/client/App.js @@ -7,6 +7,7 @@ import WeatherScreen from './Weather'; import FindRouteScreen from './FindRoute'; import SelectRouteScreen from './SelectRoute'; import Dashboard from './SustainabilityDashboard' +import DisplayRouteScreen from './DisplayRoute'; const Stack = createNativeStackNavigator(); @@ -19,6 +20,7 @@ export default function App() { + diff --git a/client/DisplayRoute.js b/client/DisplayRoute.js new file mode 100644 index 0000000..535ca55 --- /dev/null +++ b/client/DisplayRoute.js @@ -0,0 +1,87 @@ +import React, { useEffect, useState } from 'react'; +import { View, StyleSheet, Text } from 'react-native'; +import MapView, { Polyline, Marker } from 'react-native-maps'; +import { decodeRoute, getCurrentLocation, startLocationTracking } from './mapUtils'; + +export default function DisplayRouteScreen({ navigation, route }) { + const { origin, destination, routeData, polylineCoordinates } = route.params; + const [location, setLocation] = useState(null); + const [errorMessage, setErrorMessage] = useState(''); + const [currentRoute, setCurrentRoute] = useState(routeData.routes[0]); + + // Get current location + useEffect(() => { + (async () => { + try { + const initialLocation = await getCurrentLocation(); + setLocation(initialLocation); + console.log(location); + + const locationSubscription = await startLocationTracking(setLocation); + + return () => locationSubscription.remove(); + } catch (error) { + setErrorMessage(error.message); + } + })(); + }, []); +console.log("origin: " + origin) + return ( + + {errorMessage ? ( + {errorMessage} + ) : location && currentRoute ? ( + <> + + + Route from {origin} to {destination} + + + Distance: {currentRoute.legs[0].distance.text} + + + Duration: {currentRoute.legs[0].duration.text} + + + + + {polylineCoordinates.length > 0 && ( + + )} + {polylineCoordinates.length > 0 && ( + + )} + + + ) : ( + Fetching your location... + )} + + ); +} + +const styles = StyleSheet.create({ + container: { flex: 1 }, + map: { flex: 1 }, +}); \ No newline at end of file diff --git a/client/FindRoute.js b/client/FindRoute.js index 6c38b32..6fc3a0b 100644 --- a/client/FindRoute.js +++ b/client/FindRoute.js @@ -49,7 +49,7 @@ export default function FindRouteScreen({ navigation }){ // setServerResponse("") // Navigate to SelectRouteScreen with the response data - navigation.navigate('SelectRouteScreen', { routeData: data }); + navigation.navigate('SelectRouteScreen', { origin: start, destination, routeData: data }); } catch (error) { console.error('Error details:', error); diff --git a/client/SelectRoute.js b/client/SelectRoute.js index fbf8da1..5698cac 100644 --- a/client/SelectRoute.js +++ b/client/SelectRoute.js @@ -3,7 +3,7 @@ import { View, StyleSheet, Text, TouchableOpacity } from 'react-native'; import MapView, { Polyline, Marker } from 'react-native-maps'; import { decodeRoute, getCurrentLocation, startLocationTracking } from './mapUtils'; -export default function SelectRouteScreen({ route }) { +export default function SelectRouteScreen({ navigation, route }) { const { origin, destination, routeData } = route.params; const [routes, setRoutes] = useState([]); const [location, setLocation] = useState(null); @@ -47,6 +47,7 @@ export default function SelectRouteScreen({ route }) { const encodedPolyline = selectedRoute.overview_polyline.points; const decodedPath = decodeRoute(encodedPolyline); // Decode into lat/lng pairs setPolylineCoordinates(decodedPath); + console.log("origin: " + origin + "destination: " + destination) }; return ( @@ -88,12 +89,17 @@ export default function SelectRouteScreen({ route }) { {routes.map((route, index) => { return ( - displaySelectedRoute(index)}> - Route {index + 1} - Distance: {route.legs[0].distance.text} - Duration: {route.legs[0].duration.text} - - )})} + + displaySelectedRoute(index)} style={styles.routeButton}> + Route {index + 1} + Distance: {route.legs[0].distance.text} + Duration: {route.legs[0].duration.text} + + navigation.navigate('DisplayRouteScreen', { origin, destination, routeData, polylineCoordinates })} style={styles.startButton}> + Start Journey + + + )})} ) : ( @@ -106,4 +112,26 @@ export default function SelectRouteScreen({ route }) { const styles = StyleSheet.create({ container: { flex: 1 }, map: { flex: 1 }, + routeContainer: { + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + padding: 10, + borderBottomWidth: 1, + borderBottomColor: '#ccc', + }, + routeButton: { + flex: 1, + marginRight: 10, + padding: 10, + backgroundColor: 'white', + borderRadius: 5, + }, + startButton: { + padding: 10, + backgroundColor: '#ADD8E6', + borderRadius: 5, + }, + error: { color: 'red', textAlign: 'center', margin: 10 }, + loadingText: { textAlign: 'center', margin: 10 }, }); From 75cfbfe6997cace692fdd3bd6d8de8d90eafea1b Mon Sep 17 00:00:00 2001 From: FEguare <123463013+FEguare@users.noreply.github.com> Date: Wed, 12 Mar 2025 10:48:41 +0000 Subject: [PATCH 078/100] realtime location updates Co-authored-by: Keith Ahern --- client/App.js | 2 -- client/DisplayRoute.js | 37 ++++++++++++++++++++----------------- client/mapUtils.js | 2 +- 3 files changed, 21 insertions(+), 20 deletions(-) diff --git a/client/App.js b/client/App.js index fda6610..27bffcd 100644 --- a/client/App.js +++ b/client/App.js @@ -26,5 +26,3 @@ export default function App() { ); } - - diff --git a/client/DisplayRoute.js b/client/DisplayRoute.js index 535ca55..807b2ab 100644 --- a/client/DisplayRoute.js +++ b/client/DisplayRoute.js @@ -1,31 +1,34 @@ import React, { useEffect, useState } from 'react'; import { View, StyleSheet, Text } from 'react-native'; import MapView, { Polyline, Marker } from 'react-native-maps'; -import { decodeRoute, getCurrentLocation, startLocationTracking } from './mapUtils'; +import { decodeRoute, startLocationTracking } from './mapUtils'; export default function DisplayRouteScreen({ navigation, route }) { const { origin, destination, routeData, polylineCoordinates } = route.params; const [location, setLocation] = useState(null); const [errorMessage, setErrorMessage] = useState(''); - const [currentRoute, setCurrentRoute] = useState(routeData.routes[0]); - // Get current location useEffect(() => { - (async () => { + const startTracking = async () => { try { - const initialLocation = await getCurrentLocation(); - setLocation(initialLocation); - console.log(location); - - const locationSubscription = await startLocationTracking(setLocation); - - return () => locationSubscription.remove(); + await startLocationTracking((currentLocation) => { + setLocation(currentLocation); + }); } catch (error) { - setErrorMessage(error.message); + console.error('Error starting location tracking:', error); } - })(); + }; + + startTracking(); }, []); -console.log("origin: " + origin) + + // update users location dynamically - DONE + // check proximity to polyline coords, " are you here yet" + // generate travelled polyline + // display next direction + // recentre user location on map + // exit functionality when destination reached + return ( {errorMessage ? ( @@ -48,8 +51,8 @@ console.log("origin: " + origin) initialRegion={{ latitude: currentRoute.legs[0].start_location.lat, longitude: currentRoute.legs[0].start_location.lng, - latitudeDelta: 0.01, - longitudeDelta: 0.01, + latitudeDelta: 1, + longitudeDelta: 1, }} > { return await Location.watchPositionAsync( { accuracy: Location.Accuracy.BestForNavigation, - timeInterval: 5000, // Update every 5 seconds + timeInterval: 5000, // Update every 5 seconds // apparently android only distanceInterval: 5, // Update if device moves 5 meters }, (newLocation) => { From 6f2cf5cb023da2893dbe929e11bc83ab0cd630ee Mon Sep 17 00:00:00 2001 From: kahern7 Date: Thu, 13 Mar 2025 16:31:55 +0000 Subject: [PATCH 079/100] Add Haversine formula for distance calculation and corresponding tests --- client/mapUtils.js | 15 +++++++++++++++ client/package-lock.json | 7 +++++++ client/package.json | 1 + client/tests/mapUtils.test.js | 12 +++++++++++- 4 files changed, 34 insertions(+), 1 deletion(-) diff --git a/client/mapUtils.js b/client/mapUtils.js index bc84356..96c4021 100644 --- a/client/mapUtils.js +++ b/client/mapUtils.js @@ -1,6 +1,21 @@ import { decode } from '@googlemaps/polyline-codec'; import * as Location from 'expo-location'; +// Convert degrees to radians +const deg2rad = (deg) => deg * (Math.PI / 180); + +// Haversine Formula to calculate distance between two points +export const haversine = (start, end) => { + const R = 6371; // Radius of the Earth in km + const dLat = deg2rad(end.latitude - start.latitude); + const dLon = deg2rad(end.longitude - start.longitude); + const a = Math.sin(dLat / 2) * Math.sin(dLat / 2) + + Math.cos(deg2rad(start.latitude)) * Math.cos(deg2rad(end.latitude)) * + Math.sin(dLon / 2) * Math.sin(dLon / 2); + const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)); + return R * c * 1000; // Distance in meters +} + // Extract routes func export const extractRoutes = async (route, origin = "", destination = "", mode = 'walking') => { try { diff --git a/client/package-lock.json b/client/package-lock.json index cef4f7c..4cc6337 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -14,6 +14,7 @@ "@react-navigation/native-stack": "^7.0.2", "crypto": "^1.0.1", "d3": "^7.9.0", + "deg2rad": "^1.0.0", "expo": "^52.0.7", "expo-location": "^18.0.2", "expo-status-bar": "~2.0.0", @@ -6681,6 +6682,12 @@ "node": ">=8" } }, + "node_modules/deg2rad": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/deg2rad/-/deg2rad-1.0.0.tgz", + "integrity": "sha512-youBPW8GV5ZA8SiR6YdMho8Qxf7oQCB2Xy6zVqW5myxADv4XtFcV7DCJN9k8BRaH7X8TA1QO7dfDtmoy2lZTnw==", + "license": "MIT" + }, "node_modules/del": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", diff --git a/client/package.json b/client/package.json index dc964bb..e8960db 100644 --- a/client/package.json +++ b/client/package.json @@ -16,6 +16,7 @@ "@react-navigation/native-stack": "^7.0.2", "crypto": "^1.0.1", "d3": "^7.9.0", + "deg2rad": "^1.0.0", "expo": "^52.0.7", "expo-location": "^18.0.2", "expo-status-bar": "~2.0.0", diff --git a/client/tests/mapUtils.test.js b/client/tests/mapUtils.test.js index e204643..941d1a1 100644 --- a/client/tests/mapUtils.test.js +++ b/client/tests/mapUtils.test.js @@ -1,8 +1,18 @@ -import { extractRoutes, requestLocationPermission, getCurrentLocation, startLocationTracking, decodeRoute } from '../mapUtils.js'; // Update with the correct path +import { extractRoutes, requestLocationPermission, getCurrentLocation, startLocationTracking, decodeRoute, haversine } from '../mapUtils.js'; // Update with the correct path import response from './response.json'; // Update with the correct path import { decode } from '@googlemaps/polyline-codec'; import * as Location from 'expo-location'; +// Test that Haversine function returns the correct distance between two points +describe('Haversine Formula', () => { + it('should return the correct distance between two points', () => { + const start = { latitude: 40.7128, longitude: -74.0060 }; + const end = { latitude: 34.0522, longitude: -118.2437 }; + const distance = haversine(start, end); + expect(distance).toBeCloseTo(3935746.254609722, 0); + }); +}); + // Mock polyline decoder jest.mock('@googlemaps/polyline-codec', () => ({ decode: jest.fn((polyline) => [[0, 0], [1, 1]]) // Mock polyline decoding From 1cb00976ba176af7f10566e19dd0c32e953f435f Mon Sep 17 00:00:00 2001 From: Gunjan-Shahapurkar <103252055+Gunjan-Shahapurkar@users.noreply.github.com> Date: Thu, 13 Mar 2025 18:20:35 +0000 Subject: [PATCH 080/100] Friends UI (#30) * FriendsUI Button * Created pending and current friend list screen * end-to-end in progress * Front End sever connection error * Send friend request * PendingFriends list * Friend list major functionality completed * Cancel Friend Request * Friends networking vs.1 complete * Conforms to PEP8 * tests added * Added unit tests for new functions in networking * PEP8 approved * nit * fix tests * removed comment for linting --------- Co-authored-by: Conor Powderly Co-authored-by: @shahapug --- client/App.js | 2 + client/FriendsScreen.js | 391 ++++++ client/Map.js | 25 + client/package-lock.json | 1402 +++++++++++++--------- client/package.json | 3 +- server/src/Database_class.py | 5 +- server/src/main.py | 10 +- server/src/networking.py | 146 ++- server/tests/test_database_connection.py | 2 +- server/tests/test_networking.py | 110 +- 10 files changed, 1472 insertions(+), 624 deletions(-) create mode 100644 client/FriendsScreen.js diff --git a/client/App.js b/client/App.js index a0b1fad..6a497f9 100644 --- a/client/App.js +++ b/client/App.js @@ -7,6 +7,7 @@ import WeatherScreen from './Weather'; import FindRouteScreen from './FindRoute'; import DisplayRouteScreen from './DisplayRoute'; import Dashboard from './SustainabilityDashboard' +import FriendsScreen from './FriendsScreen' const Stack = createNativeStackNavigator(); @@ -20,6 +21,7 @@ export default function App() { + ); diff --git a/client/FriendsScreen.js b/client/FriendsScreen.js new file mode 100644 index 0000000..a651d02 --- /dev/null +++ b/client/FriendsScreen.js @@ -0,0 +1,391 @@ +import React, { useState, useEffect } from 'react'; +import { View, Text, TextInput, Button, FlatList, TouchableOpacity, StyleSheet, Platform } from 'react-native'; +import { GestureHandlerRootView } from 'react-native-gesture-handler'; + +export default function FriendsScreen() { + const [senderName, setSenderName] = useState('') + const [friendRequestName, setFriendName] = useState(''); + const [pendingFriends, setPendingFriends] = useState([]); + const [currentFriends, setCurrentFriends] = useState([]); + const [sentFriends, setSentFriends] = useState([]); + + let sender_name = "Conor"; //Username of the person sending the request + + // friend_list + // pending_friends + + // Function to send a friend request + const sendFriendRequest = async () => { + try{ + // send friend request name & username of the person sending friend request + const payload = { + receiver: friendRequestName, + sender: sender_name, // username of the person sending friend request + }; + + const baseUrl = Platform.OS === 'web' + ? 'http://localhost:8000' + : process.env.EXPO_PUBLIC_API_URL; + console.log(`Sending request to ${baseUrl}/send_request`); + + const response = await fetch(`${baseUrl}/send_request`,{ + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(payload), + }); + + // Check if the response is ok + if (response.ok) { + // Parse the response as JSON + const server_message = await response.json(); + console.log("Response from Server: ", server_message.message); + + alert(server_message.message); + setSentFriends([...sentFriends, friendRequestName.trim()]); + setFriendName(''); + } else { + // Log the raw response text for debugging + const responseText = await response.text(); + console.error('Failed to send friend request:', responseText); + alert('Server Error: ', responseText); + } + } catch (error) { + console.error('Error sending friend request:', error); + } + }; + + const Poll = async () => { + try{ + // send friend request name & username of the person sending friend request + //const payload = { + // sender: "Conor", // username of the person sending friend request + //}; + + const baseUrl = Platform.OS === 'web' + ? 'http://localhost:8000' + : process.env.EXPO_PUBLIC_API_URL; + console.log(`Sending request to ${baseUrl}/check_requests?sender=${sender_name}`); + + const response = await fetch(`${baseUrl}/check_requests?sender=${sender_name}`,{ + method: 'GET', + headers: { + 'Content-Type': 'application/json', + }, + }); + + // Check if the response is ok + if (response.ok) { + // Parse the response as JSON + const server_message = await response.json(); + console.log("Response from Server: ", server_message.message); + + // alert(server_message.message); + setPendingFriends(server_message.pending_friends); + setCurrentFriends(server_message.friends); + setSentFriends(server_message.sent_friends); + } else { + // Log the raw response text for debugging + const responseText = await response.text(); + console.error('Failed to get friend requests:', responseText); + alert('Server Error: ', responseText); + } + } catch (error) { + console.error('Error getting pending friend requests:', error); + } + }; + + // Poll for friend requests every 5 seconds + useEffect(() => { + const intervalId = setInterval(() => { + Poll(); + }, 5000); // Poll every 5 seconds + + // Cleanup function to clear the interval when the component unmounts + return () => clearInterval(intervalId); +}, []); + + + // Function to accept a friend request + const processFriendRequest = async (friend, answer) => { + // setCurrentFriends([...currentFriends, friend]); + + try{ + // send friend request name & username of the person sending friend request + const payload = { + requester: friend, + user: sender_name, + answer: answer + }; + + const baseUrl = Platform.OS === 'web' + ? 'http://localhost:8000' + : process.env.EXPO_PUBLIC_API_URL; + console.log(`Sending request to ${baseUrl}/request_response`); + + const response = await fetch(`${baseUrl}/request_response`,{ + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(payload), + }); + + // Check if the response is ok + if (response.ok) { + // Parse the response as JSON + const server_message = await response.json(); + console.log("Response from Server: ", server_message.message); + + alert(server_message.message); + setPendingFriends(pendingFriends.filter((name) => name !== friend)); + setCurrentFriends(currentFriends.filter((name) => name !== friend)); + } else { + // Log the raw response text for debugging + const responseText = await response.text(); + console.error('Failed to accept friend request:', responseText); + alert('Server Error: ', responseText); + } + } catch (error) { + console.error('Error accepting friend request:', error); + } + }; + + + // Function to cancel a sent friend request + const cancelFriendRequest = async (friend) => { + + try{ + // send friend request name & username of the person sending friend request + const payload = { + user: sender_name, // username of the person removing friend + friend: friend // friend to be removed + }; + + const baseUrl = Platform.OS === 'web' + ? 'http://localhost:8000' + : process.env.EXPO_PUBLIC_API_URL; + console.log(`Sending request to ${baseUrl}/cancel_friend_request`); + + const response = await fetch(`${baseUrl}/cancel_friend_request`,{ + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(payload), + }); + + // Check if the response is ok + if (response.ok) { + // Parse the response as JSON + const server_message = await response.json(); + console.log("Response from Server: ", server_message.message); + + alert(server_message.message); + setSentFriends(sentFriends.filter((name) => name !== friend)); + } else { + // Log the raw response text for debugging + const responseText = await response.text(); + console.error('Failed to send friend request:', responseText); + alert('Server Error: ', responseText); + } + } catch (error) { + console.error('Error sending friend request:', error); + } + + }; + + // Function to remove an existing friend + const removeFriend = async (friend) => { + try{ + // send friend request name & username of the person sending friend request + const payload = { + user: sender_name, // username of the person removing friend + friend: friend // friend to be removed + }; + + const baseUrl = Platform.OS === 'web' + ? 'http://localhost:8000' + : process.env.EXPO_PUBLIC_API_URL; + console.log(`Sending request to ${baseUrl}/remove_friend`); + + const response = await fetch(`${baseUrl}/remove_friend`,{ + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(payload), + }); + + // Check if the response is ok + if (response.ok) { + // Parse the response as JSON + const server_message = await response.json(); + console.log("Response from Server: ", server_message.message); + + alert(server_message.message); + setCurrentFriends(currentFriends.filter((name) => name !== friend)); + } else { + // Log the raw response text for debugging + const responseText = await response.text(); + console.error('Failed to send friend request:', responseText); + alert('Server Error: ', responseText); + } + } catch (error) { + console.error('Error sending friend request:', error); + } + + }; + + return ( + + + {/* Top Section: Input & Button */} + + +